From fe6c88b9bced532660bcfd80876509014efad345 Mon Sep 17 00:00:00 2001 From: Fahrettin Kuran Date: Thu, 5 Mar 2026 16:26:58 +0100 Subject: [PATCH 1/3] docs: add auxiliary example notebooks and revise structure --- .gitignore | 3 +- doc/conf.py | 18 +- doc/contents/auxiliary.rst | 62 +- doc/contents/case.rst | 19 - doc/contents/gmc.rst | 5 +- doc/contents/installation.rst | 85 + doc/contents/ses_processing.nblink | 3 + doc/contents/site.rst | 6 +- doc/contents/ssc.rst | 6 +- doc/contents/tutorials.rst | 13 - doc/contents/tutorials/test.ipynb | 99 - doc/contents/tutorials/tutorial_aux.rst | 10 - doc/contents/tutorials/tutorial_gmm.rst | 13 - doc/contents/tutorials/tutorial_sit.rst | 13 - doc/contents/tutorials/tutorial_src.rst | 13 - doc/index.rst | 16 +- .../quaket/auxiliary/ses_processing.ipynb | 240 + .../data/aux/ses/output-241-events_62.csv | 59503 ++++++++++++++++ .../data/aux/ses/output-244-ruptures_62.csv | 46835 ++++++++++++ .../quaket/output/hmtk_sample_catalogue.csv | 59502 +++++++++++++++ openquake/quaket/utils.py | 4 - 21 files changed, 166223 insertions(+), 245 deletions(-) delete mode 100644 doc/contents/case.rst create mode 100644 doc/contents/installation.rst create mode 100644 doc/contents/ses_processing.nblink delete mode 100644 doc/contents/tutorials.rst delete mode 100644 doc/contents/tutorials/test.ipynb delete mode 100644 doc/contents/tutorials/tutorial_aux.rst delete mode 100644 doc/contents/tutorials/tutorial_gmm.rst delete mode 100644 doc/contents/tutorials/tutorial_sit.rst delete mode 100644 doc/contents/tutorials/tutorial_src.rst create mode 100644 openquake/quaket/auxiliary/ses_processing.ipynb create mode 100644 openquake/quaket/data/aux/ses/output-241-events_62.csv create mode 100644 openquake/quaket/data/aux/ses/output-244-ruptures_62.csv create mode 100644 openquake/quaket/output/hmtk_sample_catalogue.csv delete mode 100644 openquake/quaket/utils.py diff --git a/.gitignore b/.gitignore index 56d94dc..3861dcb 100644 --- a/.gitignore +++ b/.gitignore @@ -69,7 +69,7 @@ instance/ .scrapy # Sphinx documentation -docs/_build/ +doc/_build/ # PyBuilder .pybuilder/ @@ -135,6 +135,7 @@ venv/ ENV/ env.bak/ venv.bak/ +quaket_env/ # Spyder project settings .spyderproject diff --git a/doc/conf.py b/doc/conf.py index 93e672d..3c1fcff 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -11,26 +11,34 @@ author = 'GEM Foundation and Électricité de France' release = '0.1' - # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration +import os +import sys +import shutil + extensions = [ 'sphinx.ext.todo', 'sphinx.ext.coverage', 'sphinx.ext.mathjax', 'sphinx.ext.viewcode', 'sphinx.ext.githubpages', - 'recommonmark', - 'nbsphinx' + 'sphinx_rtd_theme', + 'myst_parser', + 'nbsphinx', + 'nbsphinx_link', ] +nbsphinx_allow_errors = True +nbsphinx_execute = 'never' + templates_path = ['_templates'] -exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] +exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', '**.ipynb_checkpoints'] # -- Options for HTML output ------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output -html_theme = 'sphinx_rtd_theme' +html_theme = "sphinx_rtd_theme" #html_static_path = ['_static'] diff --git a/doc/contents/auxiliary.rst b/doc/contents/auxiliary.rst index 82539e7..f6a81c8 100644 --- a/doc/contents/auxiliary.rst +++ b/doc/contents/auxiliary.rst @@ -1,51 +1,27 @@ -Auxiliary module +Auxiliary Module ################################ -The :index:`auxiliary` module contains functionalities for preparing input and processing outputs of various simulations. +The :index:`auxiliary` module contains corollary functions that support the capabilities of the +platform's core modules (e.g., the source, ground-motion, and site-response modules). +This module, therefore, acts as a bridge between raw data and the functions available in the simulation platform +by supporting I/O tools, statistical analysis, visualisation, and data management. -In particular, it provides: +Currently, the Auxiliary Module includes functions underpinning the Seismic Source Module +and its associated case study. -- Tools for preparing the input to MCQsim and post-processing the output. +However, as the project will progress to ground motion and site modules, new functionalities +will be integrated into this framework. Consequently, this task will remain active throughout +the project, enabling continuous updates and refinements in response to the platform's evolving +requirements. -Pre-simulation -********************************************* +To ensure a structured development process, the module is, for time being, subdivided into +three primary sub-sections: catalogue processing, statistical tools - plotting, and spatial +distributions. -The pre-simulation tool focuses on preparing and managing input information. -Its core functionalities include: +Tutorial Contents +----------------- -- **Fault information management**: - Import and modify fault segment data stored in GeoJSON format, including geometrical and attribute handling; - -- **Geometry validation**: - Check and validate the geometric consistency of fault segments to ensure accurate meshing and simulation; - -- **Triangular meshing**: - Generate triangular meshes based on the fault geometry, enabling detailed structural representation; - -- **STL file creation**: - Convert the meshed fault segments into STL (Stereolithography or Standard Triangle Language) file format, - suitable for 3D visualization and numerical simulations; - - -Post simulation -********************************************* - -The post-simulation tool focuses on processing output results. -Its core functionalities include: - -- **Catalog processing**: - Load catalogue as a `.mat` file and save it as a `.csv` file; - -- **Statistical evaluation**: - Compute statistics for magnitude, rupture area, mean slip, and mean stress drop; - -- **3D spatial visualization**: - Visualize spatial distribution of events; - -- **Magnitude-frequency distribution (MFD)**: - Generate MFDs of the simulated earthquake catalogue; - - -PSHA -********************************************* +.. toctree:: + :maxdepth: 1 + ses_processing diff --git a/doc/contents/case.rst b/doc/contents/case.rst deleted file mode 100644 index d413be4..0000000 --- a/doc/contents/case.rst +++ /dev/null @@ -1,19 +0,0 @@ -Case study -################################ - -In this part, we will showcase the use of the tools developed within each module in a real case application. - - -ssc -********************************************* -In this part, we will showcase the use of the tools developed within seismic source module in a real case application. - - -gmc -********************************************* -In this part, we will showcase the use of the tools developed within ground motion module in a real case application. - - -site -********************************************* -In this part, we will showcase the use of the tools developed within site and site-effects module in a real case application. \ No newline at end of file diff --git a/doc/contents/gmc.rst b/doc/contents/gmc.rst index 167957d..cf2e655 100644 --- a/doc/contents/gmc.rst +++ b/doc/contents/gmc.rst @@ -1,9 +1,12 @@ -Ground motion module +Ground Motion Module ################################ The *ground motion module* will contain functionalities for computing ground motion parameters using ground-motion models (GMMs) implemented into the OQ Engine. +In progress.. + + diff --git a/doc/contents/installation.rst b/doc/contents/installation.rst new file mode 100644 index 0000000..5d566af --- /dev/null +++ b/doc/contents/installation.rst @@ -0,0 +1,85 @@ +Installation +################################ + +This guide covers the necessary steps to set up your environment for the **Simulation Platform**. You will need to install Python dependencies and system-level tools like the Generic Mapping Tools (GMT). +Also, the tutorials rely on the **OpenQuake Model Building Toolkit (oq-mbtk)** for seismic catalogue processing and statistical analysis. Before proceeding, you must have ``oq-mbtk`` installed. + +Here we demonstrate the installation of the QuakeT and its necessary dependencies, respectively. + +Get the QuakeT Source Code +========================== + +Open a terminal and move to the folder where you intend to install the tools; + +Clone the repository using the `web URL of QuakeT repository: `_ + +.. code-block:: bash + + git clone https://github.com/GEMScienceTools/quakeT.git + +Go to the folder where you cloned the QuakeT repository and make it in “editable” mod running the following command: + +.. code-block:: bash + + pip install -e . + +OpenQuake MBTK Setup +======================== +Please follow the official installation instructions of **oq-mbtk** here: +`OpenQuake MBTK Installation Guide. `_ + +Python Environment Setup +======================== + +It is highly recommended to use a virtual environment (conda or venv) to avoid dependency conflicts. + +.. code-block:: bash + + # Create and activate a virtual environment (optional) + python -m venv quaket_env + source quaket_env/bin/activate # On Windows: quaket_env\Scripts\activate + + # Install Python libraries + pip install pandas geopandas shapely matplotlib ipython + +System Requirements +=================== + +The spatial distribution tutorials require **GMT** to be installed on your operating system. + +macOS +----- + +The easiest way to install these tools on macOS is using `Homebrew `_: + +.. code-block:: bash + + brew install gmt + +Windows +------- + +1. **GMT:** Download and run the executable installer (.exe) from the `GMT Official Releases `_. During installation, ensure you check the box **"Add GMT to the system PATH"**. +2. **Ghostscript:** (Required by GMT for PNG output) Download and install from the `Ghostscript site `_. + +Linux +------- + +Use the package manager to install the required tools: + +.. code-block:: bash + + sudo apt update + sudo apt install gmt gmt-dcw gmt-gshhg + +Verification +============ + +After installation, verify that the tools are correctly set up by running these commands in your terminal or command prompt: + +.. code-block:: bash + + gmt --version + +.. note:: + If you receive a "command not found" error, you may need to restart your terminal or manually add the installation folders to your system's Environment Variables (PATH). \ No newline at end of file diff --git a/doc/contents/ses_processing.nblink b/doc/contents/ses_processing.nblink new file mode 100644 index 0000000..e793942 --- /dev/null +++ b/doc/contents/ses_processing.nblink @@ -0,0 +1,3 @@ +{ + "path": "../../openquake/quaket/auxiliary/ses_processing.ipynb" +} \ No newline at end of file diff --git a/doc/contents/site.rst b/doc/contents/site.rst index 44f010a..755c0c8 100644 --- a/doc/contents/site.rst +++ b/doc/contents/site.rst @@ -1,7 +1,11 @@ -Site and site-effects module +Site and Site-Effects Module ################################ Within the *site and site-effects module*, functionalities will be developed for modelling the site response. +In progress.. + + + diff --git a/doc/contents/ssc.rst b/doc/contents/ssc.rst index 3176e42..373b6ad 100644 --- a/doc/contents/ssc.rst +++ b/doc/contents/ssc.rst @@ -1,7 +1,11 @@ -Seismic source module +Seismic Source Module ################################ The *seismic source module* will contain codes for evaluating models related to seismic sources. +In progress.. + + + diff --git a/doc/contents/tutorials.rst b/doc/contents/tutorials.rst deleted file mode 100644 index 931a126..0000000 --- a/doc/contents/tutorials.rst +++ /dev/null @@ -1,13 +0,0 @@ -Tutorials -######### - -Several tutorials are available for preparing data and performing calculations. - -.. toctree:: - :maxdepth: 1 - :caption: Tutorials: - - tutorials/tutorial_aux - tutorials/tutorial_src - tutorials/tutorial_gmm - tutorials/tutorial_sit diff --git a/doc/contents/tutorials/test.ipynb b/doc/contents/tutorials/test.ipynb deleted file mode 100644 index 643cdcd..0000000 --- a/doc/contents/tutorials/test.ipynb +++ /dev/null @@ -1,99 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "id": "d2e1fde5-b3f4-49f7-8683-2c858535f1de", - "metadata": {}, - "source": [ - "# Test tutorial Aux" - ] - }, - { - "cell_type": "markdown", - "id": "c535f307-2fbe-493b-beb7-d53a860b54b6", - "metadata": {}, - "source": [ - "This is an example of notebook" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "id": "4d36f4e0-8d17-4e6d-84f5-cba0ebf789d0", - "metadata": {}, - "outputs": [], - "source": [ - "import numpy as np\n", - "import matplotlib.pyplot as plt" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "id": "3624e1bc-11e9-4794-8fb6-9e2ce219f6f8", - "metadata": {}, - "outputs": [], - "source": [ - "xx = np.random.rand(100)" - ] - }, - { - "cell_type": "markdown", - "id": "972aab2e-a4ee-4299-a140-fb2dde26be61", - "metadata": {}, - "source": [ - "## Plot" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "id": "51aa025f-bdc8-466a-8060-c99530214335", - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAiMAAAGdCAYAAADAAnMpAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjEsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvc2/+5QAAAAlwSFlzAAAPYQAAD2EBqD+naQAAy41JREFUeJzt/Xm4ZUd5HYyvfeY79ty31VJrFhoQSEJCopEJ9kfbAhPZOHEiYwyKjPGHLSWAfo6NwEghDojEQcZOZOuHsEwSQ8A4mDiAReQ2wpYREpoAAZqnVkv39tx3PuP+/jinar+7dtXetffZ4zm1nqef7j733HNqT1VvrXe967Vs27ZhYGBgYGBgYJARSlkPwMDAwMDAwGC8YYIRAwMDAwMDg0xhghEDAwMDAwODTGGCEQMDAwMDA4NMYYIRAwMDAwMDg0xhghEDAwMDAwODTGGCEQMDAwMDA4NMYYIRAwMDAwMDg0xRyXoAOuj1enjppZcwMzMDy7KyHo6BgYGBgYGBBmzbxtLSEnbu3IlSSc1/FCIYeemll7Br166sh2FgYGBgYGAQAfv27cNJJ52k/HkhgpGZmRkA/YOZnZ3NeDQGBgYGBgYGOlhcXMSuXbv4Oq5CIYIRlpqZnZ01wYiBgYGBgUHBECSxMAJWAwMDAwMDg0xhghEDAwMDAwODTGGCEQMDAwMDA4NMYYIRAwMDAwMDg0xhghEDAwMDAwODTGGCEQMDAwMDA4NMYYIRAwMDAwMDg0xhghEDAwMDAwODTGGCEQMDAwMDA4NMEToY+fu//3tceeWV2LlzJyzLwle+8pXA37n77rvxmte8BvV6HWeeeSY++9nPRhiqgYGBgYGBwSgidDCysrKCCy64ALfeeqvW+5999lm89a1vxU/91E/hkUcewfvf/3782q/9Gr7xjW+EHqyBgYGBgYHB6CF0b5q3vOUteMtb3qL9/ttuuw2nnXYaPvnJTwIAzj33XNxzzz34gz/4A1xxxRVhv97AwMDAwMBgxJC4ZuTee+/Fnj17XK9dccUVuPfee5W/02w2sbi46PqTBP70nmdx4/9+FI/PLyXy+QYGBgYGBgbBSDwYmZ+fx9zcnOu1ubk5LC4uYm1tTfo7N998MzZs2MD/7Nq1K5GxffX7L+G/3/s8nju8ksjnGxgYGBgYGAQjl9U0N9xwA44fP87/7Nu3L5HvaVTKAID1djeRzzcwMDAwMDAIRmjNSFjs2LEDCwsLrtcWFhYwOzuLiYkJ6e/U63XU6/Wkh4ZGtR+LNdu9xL/LwMDAwMDAQI7EmZHdu3dj7969rtfuuusu7N69O+mvDkSjOmBGOoYZMTAwMDAwyAqhg5Hl5WU88sgjeOSRRwD0S3cfeeQRvPDCCwD6KZZ3vetd/P3vfe978cwzz+C3f/u38dhjj+GP//iP8Rd/8Rf4wAc+EM8RDAEejBQsTWPbdtZDMDAwMDAwiA2hg5EHHngAF110ES666CIAwPXXX4+LLroIN954IwDg5Zdf5oEJAJx22mn42te+hrvuugsXXHABPvnJT+Izn/lMLsp6WZpmvUBpmmOrLfyT3/8mPvp/fpj1UAzGAIeXm2MT/N72radx56PzWQ/DwGAsEVoz8pM/+ZO+k5PMXfUnf/In8fDDD4f9qsRRL6CA9f5nj2DfkTXc9aMF3HTlK7MejsEI46EXjuKf/8m38auXn4aP/NPzsh5Oonju0Ao+8TePYdtMHW8+f0fWwzEwGDvkspomLThpmuIwI88e6pchtzrFGbNBMfHUwjJsG2Phw7O43u7/vdbOeCQGBuOJMQ9GBmmaAglYeTDSNcGIQbLo9PoM6Djca2ut/hzQ7PTQ641HWsrAIE8Y82CkeGmaZwbBiClHNkga3V7/HmuPQTCyTpjGpmEdDQxSx3gHI5Xi+Yw8c9AwIwbpgDEjYxGMkA3JWoE2JwYGo4LxDkYKxowsrrdxaLkJAOj2bHTGYJEwyA5dFox0Rj9tYYIRA4NsYYIRFEcz8twhdw8dw44YJImxZUZaxZgPDAxGCWMejBTLZ+RZMRgxuW2DBNEdIwErnQOKwpQaGIwSxjwYKVaahulFGIzQziBJdLrjw4ysmTSNgUGmMMEIihOMGGYkn/ijvU/iP3/j8ayHETucaprx0owUZT4wMBglJN61N88omumZGIw0C6J1GWU0O13cctcTAID/942nY6ZRzXhE8YFrRsYg6KVzgNGMGBikjzFnRgalvQVY1G3blgQjo79I5B10ERs1pqo7aPvQHIM0jammSReP7j+Ox+YXsx6GQY4w3sFIpTjMyMHlJpabHZQsYG62DsAEI3kADWQ7I+bc2SWakVFvlmfSNOlhvd3Fv7jtXlz1//+Ocbs14BjvYKRAmpFnB+LVkzZNYrrez66lsRP/H995Hv/2S98zk4YC1DCvSELPH7+8iLfd+o/4x6cOKd/DgivbdiprRhWmtDc9rDQ7WGt3cXytPRaVWgZ6GPNgpH/4nQIYiLEUzenbplAbMDppMCP/9e+exJcefBGPjUGztCig16BTIKHn3/5oAY/sO4a/fuQl5XtoADLqIlZXaa9hHBMFva9MMGLAMObBSJn/O+8TEAtGTts6hfrAxj4NZoQttqutTuLfVUTQa9Dp5fseomAsjl9qqTNGi8aaYUZSA72vihTAGySLsQ5G2KIO5D9Vwxrknb51CrUUgxE2WRRBV5MFqGakSOxBe7AgdH0CKPqzIqWgosBoRtKDm3Eb7fvKQB9jHYxYlsUDkrxPQM8cXAYAnLZ1mo85jSogttvP+/nJCkVN07AFQZcZGfVFgzKjppomWbgYt5wz0gbpYayDEaAYXiOdbg8vHFkFAJy2Ld00DWdGClD+nAVoMNIuYprGJ4By7WBHvFle06RpUsM4MW4G+jDBSDX/zMj+Y2tod23UKyWcMNvgaZqkBay2bfNdjJmg5WiNCTMyVpqRnMwFn7vvebz5U3+PfYONyKigM0bCaAN9mGCkyipT8jEByfAMEa+WShbqg2qapJkROmnkXeCbFVw+IwVasNki4KsZ6Y5RmsalGcnHsX7675/BY/NLuO/ZI1kPJVZ0xui+MtCHCUYKYHzGPEZO2zoFAKiV09GMUJq+mZPdYt7g8hkpkBdHJ2Q1zagvGnnr2vvi0VU8f7jPiIyarsKU9hrIYIKRAqRpaFkvANSr6WhG6AKU5/OTJdwC1uJMrF1eTeOnGRldq3sReUvTfPupw/zfrRyztiK6PRvXf/ER3HHPs8r3mNJeAxnGPhipF0DAKgYjnBlJePGjE0UeJug8olXw0l6jGQF6PdsVbOVBH/WPTzvOuEU694/PL+HLD+/Hn3zraeV7TGmvgQxjH4wUwRKeuq8CcASsCQdQtDokz8FalmgW1PSMsR7+zMh4CA1FIXjWc4Ft2/j205QZKc59tdzsmyP6BRn0OSlSoGWQLEwwwnxGckqFrre72H9sDUDfYwSAI2BN+EGmi1HWE3ReUVSfERZcaGtGCrQghoXI+mV9rz91YBkHl5r8/0UKRlYGTs1d7ZLx4hybQbIwwciAGckDNSvDc4f7rMjGySo2T9UApMeM0MXVMCNyuB1Yi3OOmL7F34F1POh0MfjIOiUpNi9MOh0bJ9g8qi+MLk4Ab5AsTDBSTcezIyrEShrAsbFPmhkxAtZg0IDQbwLOG9hYdU3PRplOz10wMkjRNFISqseJlUGaxjf9Z0p7DSQwwUjONSPPHPIGIw4zkuyYOyZNEwi6SBepmqajkaYZF80IY/3KJYv/v5dRYNnt2fjOM/1g5PVnbAVQrGBklTMjfpqR8QhyDcLBBCM5D0aeJQ3yGNJiRlxpmpxqarKGy2ekQAu2TmnvuPiMMCZk40SVv5YVU/ro/uNYWu9gplHBa07eCKCYwUjPhjKg65rSXgMJTDDCG+Xl84F/fqAZOWWLlxlJ3oHVVNMEweXAWqBqGlYp5TfmcekhwhjGjZNOMJJVqoaV9L7u9C18o1Qk9mB1IGAF1KxbZ0zuK4NwGPtgpJ5zZmRpvf9w04mynlJvGrrTz6vAN2u4GuUVaJfHdqR+VQ/j0l2VsX5T9QoP9LOaD5jZ2eVnbEm1IWZcWGk6503Fuo2LMNogHMY+GOFpmpw+8GwiYuW89N+JMyNUwGrSNFIUtVEeF7AazQjWWv1r2KiUOVOaBTOy3u7iu8/1+9BcfuZW/pznVVwvg5sZkY97XITRBuFggpGc28GzcbFxAkTAmmpvGjNpyFBU0zOntNeHGemOCTMyeMbq1RImatmV+j/8wjE0Oz1sm6njzO3TqaVj48RqKyQz0hndINcgHEwwUsl3moYxNozBAZAafds21TSBaBbUDr4bmhkp0oLYwb4jq9rvZ6zfRLWMiQzTtt8e6EVef8YWWJZV0GBERzNSzPvKIFmYYGQw+eR158/EdSwAASgzkl6aJmvvhbyiqI3yuIDV17a7mIvGb37uIfyT3/8mr0QLAhNnN6plxwQxg/udmZ1dPijpTasHVZwwmpFssdbq4s5H511BYVFgghGWpsmpJkLOjKSjGWl33cyIbRdn558WXJqRIpmeafmMFK+HSKfbw71PH4ZtQ5sdoalQlqZJu3psab2N7714HADw+jO3AEivai5OrLZpdZkOM1KcZ6YI+O/3Pof3/vmD+LN/fC7roYSGCUZyXE3T7vb4LqJBBKxZlPb2bP2Jw7ZtfO6+5/H9F48lNLL8wF1NU5xFgy0Io+Yz8tzhVX5NdDU8TjDipGnSZkZ+sP84uj0bJ22awEmbJgHQ5zx/c5MKq01nR66q1BqXkvEs8PLxdQBw9TYqCkwwUs2vzwgNkOpEwJpWaa+4UOmyR4/uX8SH/+pR3PDlHyQxrFyBuuAWqpqmyxZsW8l4FVFo+OOXF/m/dYNn9pxNkDTNesoCViaY3TLoPwWQYKRACzYVsLYVwWARg9yigN1HRTyvYx+M1HMsYKXBhkwz0ur2Ek2diJO57gR9cLkfnR9bbcc+przBxYwUqZqGLAgqcqSIiwYNRnSDwzVeTZMdM8KetUqZPOflAqZpiFZBqRmhVVoFua+KApYmK9LGiGHsg5E8p2nWiXjVsiz+eo0EJkmyI6K4UZc9YkZtRfJHiIrC+oyQsY6SH8Rj80v837oBlCNgLWUmYGXXgPXHAdKrmosTK61gptBoRpLD2iAYLNLGiMEEI1zAmr+LR1X+FJQlSXKRaEdM0zBFfZFy3VFRWJ8RMlbZDta27UJWPbjTNOE0IxPVMiZqA9OzlNM0bOGulr2bjqIEI+1uzzVWPZ+RYhxbUcCCaD8tWF5hgpGqU5mSVadOFZiHBQ0+AIe+BZItSe56mBG9CXq52U/PjDoz0uvZrmCwSLs8ujuVVT2ILxXh2I6ttriAD9CvbpIJWNOurmNjrZTk6dgiYFUI4FTBeRHTf0UB75pcgOdVhAlGCOuQt8VTxYy4DJESfJjFyVx3t7jMmJGENS1ZQzz3RfEZ6fZs0Msim7jEhaQIi8aPX15y/X+YNE3aAlZ277iYkcGmo921c7dRkkGcH9TMCNVZ5f+4igQjYC0wGoR1yJtupCmxgmeopyBu8whYNb9reaAZsUOUAxcRYvBaFJ8RMdCQ7WDFhSRvgboMNEUDDFdNM4xm5OhKK5QDLOAsylQzUkspHRsXVgSjLS2fkQLcV0UCu2+LMhdRjH0wUimXUBlMAHkzPmtKDM8YWKlvkv1pvAJWXc2IMykVYRKNCvHcF2U3IjIhsh2sOJkV4dgem3cHI7pMFXvu3dU00Y/3qk/fiz23fAvH1/SryVhK1FVNU7BgZLUppGmUPiMmTZMUVg0zUmw4FTX5uoDrEit4hjTK/sQFSV8z4gQjzZyxTXFC1OsUJU8rjlM2btGwqgiTG0vTbJysAtDfHTJqu1EpD90oz7ZtPH1wBc1OD4eW9Y2n2FirJW+aBiiGiFW0IDeakfTB7lsjYC0o8tq5l+3YZMxIGv1pxMlEVyy7NDbMiKCrKMgEIF5XLWYk56ZnnW4Pjy/0g5FXnbgBgP4CTjUjwzbKW287rslhFgSWUioTAatlWYXyGhEFrHo+I/m+r4oE27adNE0Bz6sJRpBf4zM2SdYrkjRNCv1pxBtaN4++4mJG8j+JRoV47osiYBUDDRmDIC4ked/BPnd4Ba1OD5O1Ms7YNg1Av9SapdsmauWhfYeWmk5qJsw5kwlYgWKV90bSjOT8vioSWqR9iPEZKSjyagnPO/ZKBKwOM5JcAOURsOqmadbHhRnRy5HnDeIiIWdG3Nct79fxR4MUzdk7Zvizoe3AStI0bC6IKmDV6VorAy/tVQUjOT//QAhmxPSmSQRrGoZzeYYJRkA0IzkTsPKOvVJmJPkdU1dYkHSDteUxYUa8aZpiHKvI4OhU0+R90WCVNOeeMMsF6drVNEQoPqwdPA3Ew1SSsWtAfUaAYlnC0yZ5gB4zUsRFM6+g92zen1cZTDACJxjJm9hy3ae0Nw3NSFQH1mWXZiRf5zROeEp7CzKxiouk3GdEDEbyfWyP0WCE+3MEPxu0M3bfgXU4nxF674diRlhvmpKcGUmSAY0LKx5mZHTaDBQBlJkyAtaCIrdpmo6fZiQFAetgomBtcXQqDGzbHjvNCFtAiqIZEScqLc1IznfmrJLm3B0zqA1SHTqaEbEz9tDMCLn3w9wPskZ5QHoduuOAp5pGqzdN/o+rKHClaUwwUkw0citgDWZG0hCwTtcqAPR2Z81Oz/UgNEd4smHnY6rePz9FqaYRFwCpZkRYSPK8gz260sL8Yt8G/hwXMxJ8PVjQYVn9hX/YMn8aiIdZEBiLUGQBq9cO3vSmSRMmTTMCyGvnXpUdPADUBgFUsqW9g2CkUXGNxw9L6+7d0SgzI+zYpgbUfnGZEbVmpMz1F/k9th8PzM5O3jyJ6XqFaEaCx8yuYaNShmVZLgfWKK0MliKmaVgg69GMFCkYEU3PtKppihHAFwGrRsBafNRz2rnX1w4+DWZksEjN8GAkOFhbEURsed5RDwsWCDJmpCgTgJ7PSP89LG3Rs/MbbPEUzQkzAIBqWb+aRmQfmWYEiBbo0/s/Smmvp5qmnEw1zV9/7yXc9q2nY/1MsbRXbLTJXyf336j3r0oTay3KyuXzWfWDCUaQX2bETzOSZmkvW2x18ujLTZEZydc5jRPeNE0xJgCPgNVHM0JZubzuYlklzTk7ZgE4wYhOMLDGg5H+cdJeVVFcWGk1TZwC1rg3HR/5yqP4xN88hpeOrcX2meL5UjIjGvefQXi40zTFO6cmGAHVjORrMfHTjKTCjAwm8+m6PjMiBiOjzIywcz9dMGZEXCRF63fAWSAmCVOQ12vJetKce0I/GKlwAasOM+JOhVbKJc5GRBGx0vs/jIbI8RmRC1jjfs7ZOEUmcxgwZoSNWe0zElzNZRAepppmBGDs4OVgE+RMCM3I8jhpRgbnni3YnZ5dCMpZZAxki3aPMyPOFJFH3Uin28MTC8sAgPNOYMyIvmZkve19xoYxPnOX9oZI0wQJWGM8992ezRerOOcPthjONPx7A4mv5zXILRooM5XHZzUIkYKRW2+9FaeeeioajQYuu+wy3H///b7v/9SnPoWzzz4bExMT2LVrFz7wgQ9gfX090oCTAPcZyVktf5PbwcuYkfTs4Gfq/cnFMCNusPuFMSNAMShnHQFrhwgqwyzuaeOZQ30b+KlaGSdtmgDgiEDDpWmcZ4x7jUQIRtyakSi9aRSakRifc3pe4rymLBiZneg/D7rMSB7vqyJi7Ep7v/jFL+L666/HTTfdhIceeggXXHABrrjiChw4cED6/s9//vP44Ac/iJtuugk//vGP8ad/+qf44he/iA996ENDDz4u5NVnhLY2F5GmgHVqiDTNSDMjbff5AYpBOYuLpGzR6PK0geVoMHLYLO/xeccGvjRYyCMJWCuUGYkejEQ1PWPvrSqqaeJkMOhnxTl/MAfW2ZDMiAlG+tf/4JJ+l2cZVtvuNE0RWFqK0MHILbfcgve85z245pprcN555+G2227D5OQk7rjjDun7v/3tb+Pyyy/HL//yL+PUU0/Fz/zMz+Dtb397IJuSJvIqYF0nZYci2I4pDQFrmNJeLzOSr3MaJxjrQ4ORIohYRSbEz4G1XHKCkTyyXOx+2zxV569xJkcjGGABJa2i4cZnrfDHuxzRZ6StqqZJYNNBPyvOa7rC0zRMQxVcTQPkM8hNGx/534/i0o//LR7dfzzyZ4gC4qKJWEMFI61WCw8++CD27NnjfECphD179uDee++V/s7rX/96PPjggzz4eOaZZ/D1r38dP/uzP6v8nmazicXFRdefJFFE0zNWjpzkAsF2azOMGdEIfERB3FgwI2QhKwIz4hGwSpkRx102THVK2nDSSc4izk3PNBZwR5flPGONIVxYqWYqTCl0R5mmGaRjYzz39LPiDHLWeJqmz4yomCGjGfHi8fkl2Dbww5fiC0aKJmKtBL/FwaFDh9DtdjE3N+d6fW5uDo899pj0d375l38Zhw4dwk/8xE/Atm10Oh28973v9U3T3HzzzfjoRz8aZmhDoZ7TNI1vaS9jRhIcM1t8wviMiKZnozzR0NbzJSvfXhwUOqW9lBmp5VgzIvPnqJb07eBpx16GYSzhV6L2puEC1uRNz1oJpGlanR5/1oPSNEYz4gWbS46ttiN/xqpwv7Z7PUzAu3bkFYlX09x99934+Mc/jj/+4z/GQw89hC9/+cv42te+ht/7vd9T/s4NN9yA48eP8z/79u1LdIy57dqbMTMic2ANykOyyZiJOkeaGeHBYsnZjRdgNyLS5LKqjy4VsFbyy4x0JcwIG6+eZmRwDYkuaxgB61JEAauM4QGKk6ahu/IgAavHZ6QAbGLSYPPk0SGCEY/PS8HOayhmZOvWrSiXy1hYWHC9vrCwgB07dkh/5yMf+Qje+c534td+7dcAAK961auwsrKCX//1X8eHP/xhlEqShbZeR71e97yeFIbtR5EUmn528OWy6z1JoCPRRDQ7Pel4GJwcfg3Lzc5IMyNsUq9VSqiWLLQwQswISRtwzUgOc/sOg+PMI9wOXqdRHmO3JKW9YYMRsUlkqNLewfkWmZEkhOo0qIxLGMs8Rqpli59LFTMlBimjPEfogl2HY6utyJ+x1hYbFRbrvIZiRmq1Gi6++GLs3buXv9br9bB3717s3r1b+jurq6uegKM8WEjzovZlrot5cgvt9Wz+kMpLewdjToEZmSHBSNAETYMRoBg9NaKCptHCNGfLGuIk5VtNk3MBKzsW6s8RpvqHp2lkmpGQDqxr7S7oqQxX2ts/DmVpb4znngYgcbFdrKx3sub0BtLVjOSRcUsbLE1zdIhgRGxUWASWliIUMwIA119/Pa6++mpccskluPTSS/GpT30KKysruOaaawAA73rXu3DiiSfi5ptvBgBceeWVuOWWW3DRRRfhsssuw1NPPYWPfOQjuPLKK3lQkjXyWE1DJww/07M0fEYa1TIqJQudnh3IHrFgZMsgGMmbd0ucYMdWrzheHEXoCSEuBn6akVLJ4vdaHjusUm0LAy/t1bgWTYmxYFTNiFhJFk4z4pRSUxRFM7I6YEamamXOUqnSBLRDcbtrm2AElBmJL00jc1bOM0IHI1dddRUOHjyIG2+8EfPz87jwwgtx5513clHrCy+84GJCfvd3fxeWZeF3f/d3sX//fmzbtg1XXnklPvaxj8V3FEPC0Yzk56GggZEvM5LgYs8m80q53810udkJnKBZNcFmHozk55zGDc6MVEvcaKsIeVpPMCJZDGg1TZ4FrDLNSIWPV18zMhFHMCKIt8OU9nKfEYWANc7nKIlqmpWmI+bWZUYa1TLa3U4u76u0wdLtQwUjEgFrkRA6GAGA6667Dtddd530Z3fffbf7CyoV3HTTTbjpppuifFUqmMgxM1IpWZ5+FUA6zAibzCulEhrVEpabweeI5cw3T49+MMI1I+UyWQDzf7xeB9bi+ozwe5Q8I9UQDqwykTgXsIZM04jMSJicPfcZSSFNkwQzwvQKU/UKZ6lUaQJ2/01Uy1ha7+RSi5Q2kkjTFGFjRGF608AtWMuLjkXWM4Mijd40dNepm8paEtI0Y6EZqZZIaiAf948fxEVaVzOSRz0MZXAYeKM8jfGy3WTdJWCNJmj3BCORuvYqmJEYN0pJVNMwZmSy5gTmKgGv2BG6CAF8kuh0e1xrdGy1HXkNEoPnop1XE4zAmYh6dn4mXJkZE0UavWmoK6TOBE2rCZgj5igzI2yBqFdKTgVHASYAnRbutEqlCKZnMs2IVjVNW1ZNE1eaJkQ1DUmJUiTRKI+6IsetGZmsOcyIWjPiMCNAMXRWSaIpBIdR/G1s2+Y+I9UQXavzBBOMwL3g58VrhPsfSAzP+q+noRlx8tg65Y60msBhRvJxPpOArJqmCNSoOEkFMSO1Sn4DLaeHDknTDCZj2w4Wka5LyuejakZYeas4Nh04z5o7GEmktJekReIKcpxqmjJPk8mO37ZtRzMySIeNux28uGGL4jXS6vYcx+wGc8DN3/PqBxOMoJ+XtQZzQF50I3zXrWRGktWM2LbtTtNoWOaznWHJciyhR5kZcfmMFKmaRliAZAEUu/blMvUZyd+xObomrx18/+f+Y5ZrRqL5jHiYkTCmZwFpmjjPfTMBASsLRqYoMyIJRuhLEykYNxYB4oby6Ep43cg66aPEDCfzwvLrwgQjACzLWWzz4hjKKntkTfIAZ5JKyoKcTiSVUskR9fkwHSxnPlWv8Mk9jwtYXHA5sJb0KziyhpcZ8V6jTsE0IzRNQwMT/WBE1igvrIBVEBBGaJQn+ozUk0jTJCBgZenZCZdmRJb+c75vwmhGAHjXnCgVNattielcDp9XP5hgZICorotJwc8KHnCnb5JgH+iNXClb/Pv8NCPLxAq+noLANkuIpnTFStP0x83YQNmiSRf5ImhGZKZnQPD1kJX2Rm0PsdzsLyJ+51UFZWlvOX5tWBICVs6M1MuEGZGVjDvnhG1w8nhfpQlxjjy2Fp4ZYed/okoq+wrA0lKYYGSAvFnC+zXJAxxmBEiGfaA3cl/A2v8+v92iOxhJXmCbJegkXq+WC5am6S8IdZ8eLpQZydJnpBewoDu29c7zUC5ZYARD0IS8Jgn6ozqwsooS3ihO83xRHUXRTc+CHFhpgOZU0+Q/gE8SnjRNBGaE3at9Zqo4GyMKE4wMkLdmeUHMSLlk8R1I0sxItVTSOj8sZz7dqJDS43ycz7hBz3mt7JieFWFipaZT9P8UXbLIZ6UZuefJQ3j1R/8vvvLwfuV7ZKZnALTt+dd5RZQ3TRN2Y8I6Vm+c9O9aK8KdEk0hGEmgmmaFa0YcB1bZuaeuoOz+G9UNiy48zEgEzQgLqidrFd612ghYCwq2S8xLmqYZ4DMCJCtipVR+qWRpTdCsmoCmaZLStGQNFmRZVj9FwJmRAhwrGyPTIwVpRpIoL9XB/c8dwXKzg/uePax8j6oktloKvh62bfOFgKUM6L9DV9MMmMGNE+GYEXdKVOEzEuO5p0FCbGmaZjhmxLIIM1ewRTNuiJqRKMyINE1TgI0RhQlGBshbmkZWcigiSfaBdxEd7HIYQ+NnvsSZkXrFlUYaRd1Ik5del2BZlsOMFKC232FG1EZtvJomQ80I+z6/SbUjqaYBgGolmBlR9X+KLmDt3/+skkyfGSEpUZUDa6cXmyFjMmmawc7cpRkJKBnPsTA6TYjzdxTNiCtNUypmkGeCkQHyJmClTdhUSFIkyif5QZSt48C6RKppamSHN4o0rKjpqRSKGWGaEcaMBGhGeKO8dBcN1pjP75xSczYKnQmZBhsN8pxR07MwAQALRjZO9j12dH1GXClRBTMCxLdoiyZbcYCW9lZ80gQdiTB6FOeHMPCkaaJoRtqMmTLMSOER1XUxKYRhRpKgz9uCzbbO+VkhAtZKuZSopiVrUI8RgHSKLcAEwBYEf2ZksGiQFFRWzIgfw9CVVNPQ//sFUEz/VC27+z/RlE2Ye3fZk6bRuxeoyFYgRlybkbie80RKe1u0tDeYcavk3Nk3TXgFrENW0xSoaSeFCUYGcHxG8hKM+JueAc7ONglvFIcZKQ2+izFHPqW9JE1Df2cUdz4ic8V9RgpAjbJFQocZKVvZNcprDe5Bv0lV5c+hU97IA36hYo2yJGGYUq4Z4QLWcJqRatmCZcnTNEB8z1ESXXvXJKZnvvdVyUI1x86+aYLN37ON/rwZiRkhaZpqQG+gvMIEIwM4aZp8XMCg0l4gmY6eDB2BGeGmZ36akUFp4/TgoRrlihpqeAagUOV0PE2Tc80IWyh1mBGPZkTjerAJvC6wj5Wy46gbhildXnenaXQ1I5QtEFEqWfzYYgtGyPMYX6O8QZqgXubj9XX2NZoRDjaX7NjQAAAci8CMrBE7ft1KsrzBBCMD6HalTQtBpb1AMh09GZzd2kDAykzPfCZEZvokMiOjmKYRg8VCVdPwNA1zagyopslocnPSNMGaEXEhr5aCAyi/ZpRhvUZs28byIFWxIWyahjSklCHu8l5XNU3cAtZa2Z8Z6TrBCA+yCvDMJAm2WZub7Qcjx9fagf46IlZJ9SUPBg0zUkzkzmckwA4eSMYqmkEsmeTnx2dyZqZPLBipjXAwwiZxxi4UqpqmG8JnpFzKjE7nwYhfNQ3RtlBUNHQuso69DGGb5a22umBaV64Z0U3TKNgdBkcbFs/cRAOQOK5pq9PjxzBZqzhibh8H1krJ4hVPRQjgkwS7Httn+sFIzwYW18OlalzMSIFaU1CYYGSAes7SNDqaEYcZSUDASnYwAElj+QRrS01RMzK6pkZsN8NYgyIxIyxgYtqIoGqarKoetJgRRWmvTtqs6SMSd9KSesfM0hQlC5gZpCl10zQOMyJ/1tk9FldQT69jHJ+5SroV08VQdvyyapqiLZpxg12DmUYFU4P7LqzXiBOMVAqVMqYwwcgAOl1p00RTixkZLPYJLIC8SmGw45/QSGMtD6L5KcaM8Ek0H+c0TnCfkaq7tDfMxHpgaT1Um/m4wIRt/poRSQlmDgWsKr1FTcOeX2YFzxB2PqBl7Wwx0L22zrMWT5rmGz+cx94fLyh/HnfXXua+2u9eXeJl1l0fzYg7/Zf/AD5JUP0Z0xuF1Y3QNE2RWlNQmGBkgPyZnmXrwCrmses6DqyDNA3bGdZHuHOvR8Aa0mjooReO4rKP78W/++sfJjNAH/A0TUgH1tTTNBoCVlVPF3Y9Wj6BjN8z1qiF04zQSjKHJdNlRtyVayLCBCNrrS6u+/xD+M3PPaS8XmKjvGHN1Bz31UFg7suMeIXRozg/hEGTtyQoYdNUP8UXtqLGnaZRbzLyDBOMDKCThkgTTQ0Baz3BahWxtJc3yvOtpnF2h0D89HKeIJb26vhaUDx1YBm2DTzw/NFkBugDT28ayaLZsyVVD2mbnmkJWP1Le/3SZn5ePhMa9zsF9djx61orAxujUjMS4jlaaXXQ7vZt7lWsDq2mse3hFy1qeAY4517GDLl9RkxpL0A2NtUyNk70mZGwXiMy07MipIwpTDAyAJuQ8uIzolXam0JvGtH0TDXB9Xq2qzcN4LApo7jzEU3PeDldSG+JF4+sxmbzrQs2SdX9NCNdumhkVNqrIWDtKjQjNZ3SXh9mJKyAlaZpwhrgqdgdhjAMKH2PisUUU4nDPp8rLTcz4heMuX1GjGYEENM0fWYkrGaEBYS0mqZo59UEIwPkzWckVGlvIsGIe5Kf4MGa/LtW2041AUvTjDYz4g4W/bwVZGAL+1Kzg8W1TsC740VbqKbx28H26fRsSjB1fEbaCs2InukZq6bxPmM6vjoUjBmZaVR8e7PIoCpPZgjjtEwDRhVjKgYfwwYjq00nRQA4x9Gz4SlR7ZIqPZ3y63EAZVk3DTQjx8MyIxKfEaMZKSjyJmDVsYNPtGuv6DNSdcSyssWLTcblksXH5WhG8nFO44Q3TRNuAqAT8L6jqzGPzh9dnqZRszmyaprsSnvV39tVaUZ4akn9u36dscP6DvEUJenNot+1t/8+0dKeIUxVGr1Gqo2VGNQMe12ZeHJykKahKbOuwPpRnxGTpunDabpZxqaIzMha2wlGqiE3RnmBCUYGyJvPiE6jvCSZEVHAShka2QS9RAR8zNK6nlEVRhpwqmlYmiYcNUp3zS+mHIx0eDXNgBnxc8osUwFr2poRO/B72UIuakaqGuyEX5rGMT3Tu3dZMDLdqPj2ZpFBLKMXESYdS+cCXWZk2Pljlaeo3Cwh4F0QZT4jRUsnxA1HM1LChslomhFXmibk/ZcXmGBkgPz5jOgwI4PUSQppGlpiLAtGlgWPEcA5p0n4oGQNFmCxgKvKm1OF2w0DwL4jazGPLuC7RQGrps+IH8uQBFhA7Fciy8ZZFR1YNTwsnN40kjRNSM0IraZxutaGtIMP8hnRStM436lkRsQ0zZCbhRXeF8XLjIhMIdWMmNLePtxpmmjVNOvUZyQkM5cXVILfMh7Ikx28bducodExPUtGwOrOY5cGJZ6tTk9qCb8iCUaS7J2TNVQ+I2F3w0AGzAjrTeMjYHX7jGSjGQljB+91YNWwg2fMSE0tYA2rGaHBSKdnw7ZtT/M7Eez4VGmaMM95kGbEtm1+HS2rX00z7Pyx1mIpKi8zIt5bpmuvF1R/xjaYx9b0mRHbtkmqrEz0UoYZKSQczUj2D0a/9r//bx3NSDKlve40DeDsIP3SNIyqBZyFejQFrELX3pATK11g9x1NlxlhY9RjRkqZ7WCHa5SnUdrrYyw4EdJnZImmaQhLo8OOOGma4X1GgtxVaUDJNg7DV9OoNSPitXP7jMTbALCocDQjpJpmRZ8ZoTo+V5qmYEGeCUYGaPCUQvbMCJ1EdDQjaQhYAf/mYXxn2Kg64xthUyPR9CysaKyTITPCJi5/ZsRrTtWz9VMPcSCotNe2bWUwotMraK2loRkJyYz0HVjVi7EMXMAag2aEBhuyuYwycjMsGBlWwCpoRizLUqaqusQywNjB99EkLHgUB9Z1omsyAtYRQJ4ErIx5sCxnQZchSc1IW2Imxb1YJOfI0YwQZiRB5iZrqH1Gwqdp9h1ZS81rxLZtiWZEUk1Dqx5IQJxmYOkIWOXfSRd6T9feSjAzwu7LiZrEDr6qZgFlYPf/DDE9E8eoQpDPiJPuDB5LIDNCXpscBCPDaoEczYjz7KvKm2UOrCZNM5hLyk41zUqrq/2srQ4Mz6rl/jk1AtaCg03M7a6d6u5PBt7Aq1L2zTcnyYx0OTPifL+TR/d+n0zAOspdez0+IyFdD2kAsNbu4shKOPV8VNB7my24/k6ZlisgTks30u05z6HqeaSvi5oRx8PCT8A6YEZkaZqwAtaB18YU0YwA8kolEU5KVD4dhynhd5f2esfOPqNcshw2eMhruiY4sAIOUyUePy3Frpbd2ppxBa2mmW1UwW4fXd3IqsDwmd40BUdQ6WqaaGqIV4FkG9HJzKT8dotOMOKkaeojHYwIPiO8miY8MwIAL6akG6G7JRZItbvexUCW2++/N51rSb9HtVjR93i79gZ7WOg4sGozI4MmkdMCM6LjyCtWromILmBVMyO1cim2NKrowAqoXVg7RB9DGbdxTtXQ3jSlkoUNE+EqaqjhGeCc+6KdUxOMDBBUupom1gkz4gduKpbAAiETsNZ9dotOaaMz5loIs6aige5mAD3HTwpxkUzL+Ix+Lw3ARfKB5vYtK32DKvF75J2FaZpGFLAGB4frglcMBW+Up60Z6b+P+eyEKe/ljfJUAtYQVWluO3gJM9J1OuzGxaw6DqyEGVGkClSM2zinarhNwGC+ZLqRo5ps6ZpgOlcJaTOQF5hgZIASeThkpatpQscKHnA8LpLw8ZDt1vw6G6+QagI+vhFmRlokzwsgdKdWcaJIixlxpWlIsOvnBwEQ346UmuWJuzpp/xyaplFU0+jZwfukaXS79gr3vw4zw9DVLO3VeY5ol2LZvNAkWqe4NgtMszBZlzAjXT/GzQQj3Z7N73U2X4btT6NO0xhmpLCohxStJYX1tjtSViFZZsRrxDThc36WhI69AKWXR0/A6mFGQu5GWBqMVTTsO5IWM+JMUDVCk/v5QQBOMJKWZkRcnGSLFd1li9qqShjNiG+aJvh4aZNIx4VUrccRwZmROHxGAgSs7LtcaZqhq2l8NCM+1TTlksX1EaPoRaQDek3ZXML702hqRsQ0TUWDFcwjTDBCkBfjM6ZHCGJG2K5cZ5LqdHt4+IWjoQWWVSkz4lPaWx8PZoTmeQGENhpi1+HUrVMA0mdGqmXLtwSV2sH3359u5YN4T8sWdTYWmY26ls+Ij8txmLnA1SRyoJkKk7d3OmTH4DOiKWCtV0qx9bYKpRkRGLfKmJf3Ur0fCw7DMiNrA2aKBdBVxbnPO0wwQpCXzr3rgrunCtxuXWMy+cw9z+IX/vjb+B/feV5rDG0JM+LXTNCvmmakNSMVRo2GtYPvn9/TBsFI2pqRcslym3P59BABgFrKmhFvMzf/ih8ROoucVppGIxhhgXjJcuYQFgzpMCOchVQJWEMwGEHMCHsWq+VSbDqgVWFnzj4f8GPc2H3F0n+jN0fogF2jSsni9+zGiXD9aVaF0mpViizvMMEIAVtsszY+86OPKcKo4V8YpAHue+aI1hhkDcj8gjVpb5oEfVCyhsdnJOQEwBgUxozsP5qO1wjt5ULXPsqMUC8SrhmppMuMeAWsEi8Un54uQV2U290e8VuRCVj7r621u4HXRdYkUsUMyOB3HED0ahpdAeswz6dt23wxpCnaYJ8Rd9BWtF18XKDuqwy8P42mC6sqTaMrps8LTDBCkBfjM9HdUwVnMgkeL7vpf/TyotYYKJ3PwCoMpMzIulfAOgrMiGoh8jiwhpwAWLB3yuZJlKz+5x1cag473EDwnjNlS1n1QdePiiBgbaUlYBW+Rxbk+TEKQbt+eg/7aUZsO3ixlqUoKyFKvbkDq0IzEibdST1DfEt7Y6qmaXYcK3LKjKg1I259TNr3Vd7g2Dg4527j1MCFNaRmZEIUsBpmpLjIT5pGjxmp892qjV4AHcxu+heOrGJxPTjilvqMVNTBmpwZKbYD6xMLS/jJ/3w3/t//8YDr9V7PJuV4bs1IWDv4iVoZJ2yYAJBOjxqxjFS2g6f/9lTTZJSmkffPUWtGggSs9BmXBf302QvSjYiVNEC4xoltgYUSEU7A6nyfbNyO22fJ0ZwNcU1XSbURLe1VMSNdkXEbcxdW2cZzU9hqmrY7TcMDYVNNU1zkRcDKFntZa3MKWg0RNKHQyfexl5cCxyDbralKe7s9h6qVBSNFZEZ++NJx/NKnv4PnD6/irh8tuHZ49Fzzrr1kAtBJt7RJVcGJm/rBSBo9akTGS5Zecvt39I+LaUbSupbi4tSVME7OscjSNP4CVlo+L3M5rpZL/NwEbU5omoYhTBt3x+1Y5TOiL1SnlvG+1TQxMSOrA/FqvVJyBVOq4/doRlJO/+UNonki4GhGdPvTiGkaHfF2HmGCEYJ6Tjr3+pkxUdDS3yAKl7ITP3rpeOAYpALWqpNHp2BqekBe2ls0zcj39h3DL99+H7do79luMRk9HqbbqfpUpshAGxHu2jQJIJ2KGrECRWZOJfPvSHvR8Jb2yqpp1IxCUBM2HfZRV8S6IilrD1XaSwJTGXjQoCVg9WdG4k7TyPQigJ9mxH3/8c69BVs440JTYuMQuppGSNMYAesIIGxzrKTAS3sDfEboAhg0oVADJB3dSNevUZ4YjDSdRk00wq8X0IH1weeP4Fc+cx+Or7XxmpM3YmZAvR9epsGI08iQMwwkaNOZBNhiWylbOGnAjKThNdIR2ARZbp9W1ng0IxmV9srOqX81TZBmZFDW6/OMcRfWAOMz3iSv4U1T6JR6d3yCKiBuO3giYI2hmoY9+2JFkioYE6+Zjh/MKEP0KwKATVMOM6LDsjppmv79F1a/lheYYIQgNwJWH/8DCsuytHUZ9Oc/1knTSASsKiMoJl6dItUEgDOJdnrZNx/UwUMvHMU7//R+LDU7uOy0zfjv774MO2YbAIBDy464lCrg2fHSBVFnEuDBSKmEXZvTY0bEhU+uGem/x7L6zsRAMNMQN/SqaZyATkRQ3ny9486zy6DLjLBghJp+OaW9OtU0TrmtDLEKWLtEMxIDM8Kb5NXd51HJjJDeNACp0irQhiVOyNI0TDPS7touTY4K3moaw4wUHvkTsAZfHt0JhR7T4wtLgbshulgyqJgjmXgVcD9gRWBH/vibT2O11cXlZ27BZ6+5FNP1CrZM93cprmBE8BgB3AuJVgUFCfY4M5KCZqQjpASkzAgTGZLAMn0Bq7wk1PWasLBR1Cp6mhG/ijXdZnkyAWsYqtxxOw5iRoIXJpfPiF+ahjiwDtO1d4UvhO5nv6IIxlT+NWNb2itYBAD9+45dGx2vEdH0LKx+LS8wwQhBXnxGZIudCrq7JsqMtDo9PHNwxff9jqYhuFGeKhihD1gRKmqYgPQ9bzid75i3TtcBAIdImkb0GAH6iw9bu3WEY9RunzEjLx1bS5xBEtM0ZUnVh6xKhS3uqWlGhPs5yA5eRBD9v9YK1oz4lbJTSEt7FY3iZKDeLzKEMj0LVdo7fBp1VeK+Cqh9d1Q9j8Tgc1wg04xYlsV1Izqde0XTMzpnF4GRZjDBCEFuqmlCMCO6ugzGjLAJ80cv+4tYRXMiQO3AuiypJgD6ExLvPVEAZuTl4+sAgJ0bJ/hrTjBCmRH5rpotJjo6AYd5srBjtoFKyUK7a+PA0voQRxAMMU0jy+3LFnnHDyKrahpZaa+aUQjUjAyOQ+a+ysCq2QLTNH7VNCHuBZVmJExVWqAdfOzVNHJmpBykGRHbDGQ8P6y1uvj204dSr0BRzSWsP40WMyKkaeh9VKTyXhOMEOQtTRNkBw/oV6ywm/6CXRsAAD96yV/EKsvHT9QUmhEJTQ30I/yiVNSstjo4vtbfhezY0OCvbx2kaQ5L0zTux6cSoqSOMhTlksUDoH1HktWNiCXbsnSCuHtl4wQy1IxITc/UVSjVAGZCJ+CfCClglTqQhmLJ/NM0PTv482g1TRqmZ04lkYIZCaymyUdp7x/87RP45dvvw5cf2p/q96rmkjDMCAuWHdMz57OyPq9hYIIRgrwIWNclFsEq6O6a2GdetGsTgOCKGp6mkWhGxJSLbDJ2xlcMS3jGikzXK5htVPnrsjSNKo3GJmCdBbstBAUnpeQ14mlUJhGwOrtX59rnUjPiYxYWNN4wpb26mhFaTRMUDFH4+aUA4fyEgpmRQTVNTF17lcyIIjD3+oykm/5TYf+x/ibggeePpPq9qrnECUaCmRExTUOD8yKJWE0wQlDPSZrG6dqrz4xQsyMRtm3zz7zo5I0A+syIn7iJlp4ysDSNuFNku6MZSTASxrI+S7x8rB+MUFYEALYMghEXM9J2yiMpgvqhUFCfEQDcayRxZkSo3JA5hcpKTVNvlOcp7VVrRmSLuBMY+gcjfmma0D4jMgdSncA0yGeEHF/QpoP+vNOzPefNzYwMf01lTfIAP2bEnf5lacKsNSNMu/HYfHClYazfKyntBWiaJpgZWRcCQvrcFqm81wQjBCxHnH2aRq+0FyACVp8xt7s27zfyqpM2oFyycHS1jYVFdS8UmW7AYY7c37Xky4wUw4X15eP9IOAEIRjZyqtpiIBVsIJnCFNSJ6bBUmNGhH4uPLcvcWCVakayMj2TMAx+Wguni7K/HbxfKpQLtlv+x7wkSVOGKu0NSNNUyiVt7ZV43sTr5a6miU/AOiUEI+yaBPmM5CVNwzZLj88vpSr6VGlGNmpqRmzbdnxGBverZVmhukbnBSYYIciNgFVxg8qg485IWYnZRhVnbpsG4C9ilTmwspu927Ndk4dKwOoaX+6DkT4z4g1GHAErY5KaioXMqeDwP1bbtj09Yk7anE55r3dn6t3Bdm0JM5LydQxjB+9neqYqb1zT0IzoevjIqmnKIfqDyMroRehqr8R5QNxYcZ+R2DQjg125RLwO+PmMuNM0WVuXszm/2enhucP+lYZxQlZNAzheI8cDmJFW12lUOOFqVOgfjOcRJhghUO3804au6RngULh+zAidwOqVEs7bOQvAX8Qq+lEAbiqRBmwrkpy5833F0oywpnUMLBhpdnpcG6ASnVUlKQ8Z6M/Z76RlCa8SsLqrabzXPutGeTIdDq+mkSziLt8XyfXQ0Yxwx+GAe1cWjFdDpGnEChMZdPUdYlWKGEjJBKzDPJvK0t5yQDVNzkp76TnQ6d0V9/eqBKxBzMg6Ye1kXZOzZpzCwAQjBFygmRvNiH5pr59xETV4siwL550wCEZ8RKyipsH5/f6/aR7dT8BaHGZEnqaZqJU5Bc1SNc2OXDNS0Vyw6QLFfuekQTDy8vH1RHeJOgJWqWaEO2WmVE3Tke+o3a8N0jSSRZx6LciuB2MM/DQjOsxIr2dz4y+p6VkYnxGFgBWAtieIuKh7mZFBaW/MAlavHXyxqmno5uqxeX9xf5zgaZqqGIzoaUZWB4ZnlZLlun/CdI3OC0wwQjDJF51mpg+HTt8MBr678QmgWPTNdnp6zIh3QXLZz5NJTmV6BoSzsk4S7W4PC4tqD495xoxsnPD8TBSxthS7GZXRk2csZOFnv7N9po5auYRuz+YsTRIQg0w5M+JlHKopC1h10jQdvzQNGbuMVWlqpGlUXaopaJNIt+mZfvohyGcE0NdeiS6tXmaE9KaJww6+rfIZCXBgzZnPCJ2fdNplxP293jSNXudesZKGQXdjlCeYYITg3BNmsXW6hkPLLfzP+1/IbByqaFmGuoZmRLS+PnfAjDx3eJUHEiJEOp9BLHe0bZtXgLAHSD6+bNmmD3zxEey+eS+eXJBPNC8dkzMjABWx9oMR1QSiW01DgxX2O6WShRNTaJinZkb0fEYyE7D6NsqTpWloeaN3zGsaaRqdQJppJiold5PIoN44FLwqSEMzEpimCWJGaJomhgVL6bmjWU2TdpWWCpkxIwobBzYP7T+25ntuxI69DFXJJiPvMMEIwWStgve96SwAwB/+7ZPKhTpJ9MWh/RsoDDPit7sRmZHNUzV+sz+mSNW0+Q7GfYuIu8VnDq1g/7E11MolvOaUjZ7P0an2SQNPHVhGzwa++9xRz89Wmh0sDvL+smBki+A1olLAO66fAZqRweRiWe4F//StU/2xHlwOPqCI8GpGvEI3mYYhdc1IR76jpvBjRizL8vV94ZoRv669GoL25WafRhebRKqqSWRoB1TTAEQzollNw1gakTGNu1Fesy3fOMnuK0DStTeHmpEXj65hcT24pDae75Wfv5M2TWCmXkG7a/u27nCYKRUzYoKRwuKXLj0Zp22dwuGVFj79radT/3468emV9gaL7GRNwRg78mNFMMIXLWGibwjeC3c/fhAAcOlpmz1ULaC/o0sa7Pufliz01PBshhieMYiW8E41jSBg1VSwtxU74bPmZgAATy4kF4y0BTZBVoIqY0ZqKU9uHgGrLE3DtC3Kklj1rpunQn269uowI8sDZkRMUfK0VoiuvSqfEUDPr6fXs/m1Y2JycewyAWunZ6MXcQctbnQYZA0Y2XcB+dWMsHE/kZLfiIpltSwL55zQnw9UczRA0zSKaqZRT9PceuutOPXUU9FoNHDZZZfh/vvv933/sWPHcO211+KEE05AvV7HK17xCnz961+PNOCkUS2X8NtXnA0AuP0fnsUBH51BEqDBSKjS3hDMCABfEWuv5/iSiHlsNqZ1HowcAAD85NnbpN/Ng6WMmRF2fp6RBCPzirJehm1Cmob7jJTlzEhwmkaeAjtre7/k+glFKikOdAUBoUxoKa2mSbtRnoYdPBunGDAzVH1SJTrl81rMiKKsXebfogJtmqiCznNOAzg2HnHssmBE/N0waEo2OgC9rxSaER6MZL9o9k0h+9/PA4DUgxHvtT9nx2DD6JM2ctI0qrlohJmRL37xi7j++utx00034aGHHsIFF1yAK664AgcOHJC+v9Vq4ad/+qfx3HPP4S//8i/x+OOP4/bbb8eJJ5449OCTwpvP34GLTt6ItXYXf/C3T6b63byldLmEks9OiUFnxySbMPxErPQGFifICdLJdK3VxX3PHgEAvPEV8mAkDsV+HGCT8NMSyvOlQSWN6L7K4AhYB2kalc+IJnsg83ABgFcwZuRAkmkaJmB1a0a6Es1IiaQd0m+UN0hVVtUBRVvQH4jwE5HqGAvqMSN9Ol/sy6Rb5t1/jwYzUg4eCw3gVMxIW1JNE/S5fghqjeBlRvrvZ3Mbr9LKMJ3Q6vbArGgu3LURgDp9HTdUbs4AZa/VgdFam5VWi8xIPhinMAgdjNxyyy14z3veg2uuuQbnnXcebrvtNkxOTuKOO+6Qvv+OO+7AkSNH8JWvfAWXX345Tj31VLzxjW/EBRdcMPTgk4JlWfjQz54LAPiLB/bhqQPpqavXFTlYFXRU9n7MyGPzS57Jmu5mxN0779zb6eE7zxxGq9PDiRsncOZgV+8ZX07KpVkw9OLRVc9ukTEjOzd4K2kASZpG2bVXb5fnWLK7z+2Z26dhWcCRlZarS3CcEAWEMnOuPGhG2PewSdbPDl6ltfAT3fJqGh9mROfeZWkasaxdxQzIICujF6HFjJCfTQ/SjeK93iTMCL3/ogaZ6qaRCs1IV2RGst+s0EDsgpM2AkjPFr6lCOYAh6XxC4xU1TQj78DaarXw4IMPYs+ePc4HlErYs2cP7r33Xunv/PVf/zV2796Na6+9FnNzczj//PPx8Y9/HF2f6opms4nFxUXXn7Tx2lM346fPm0O3Z+M/3vl4at8bxgoe0Nu9yTQjJ2+ehGX1f0+sZae7FLFSgXc2bnV5iuaNZ29zifco+I4u4widlQ72bOD5w+5qlZcDmRHWuZcJWFUTMNMJBAlY5VUgE7UyNz9LSjcipoikzEjXyzikrhkZnGNWJSBtlCfxQ6Hws4SPy/RseSB0FPsy6ZZ527Yt1eiI0NFetclCP1GVzwu0tJd21Y4aDKjOYxyakYdfOIq9P16INK4wYMdgWcCrB8HI4/NLkXU0YeCXpjl7bgaWBRxYarp6Y1GoqmlGXsB66NAhdLtdzM3NuV6fm5vD/Py89HeeeeYZ/OVf/iW63S6+/vWv4yMf+Qg++clP4j/8h/+g/J6bb74ZGzZs4H927doVZpix4XfefA7KJQt3/WgBD7/grcJIAqpdtwphmBHKtpRIKaK4e6K7UJE6pp2Nv/VEX7yqStHQ78xcM0KOSdSNMAHrzo3yYIQxIwcFnxGV6VkQM8LGItvRM93IkwmxcaKA1emuKvMZyd4Onu34omhG/DQ8KuElhVMJpt44McOzqbp8MYjixitDGGakVikp9S60mob+HcXno9Pt8fGrNSOqahq3gFoWjLznvz+I9/z3BxJjCRloee3p26ZQK5ew3OzwTr6JfrePjcNUvYJTNvc3JyqmZk3RqDAMM5cXJF5N0+v1sH37dnz605/GxRdfjKuuugof/vCHcdtttyl/54YbbsDx48f5n3379iU9TCnO3D6Nnzp7OwDg4ReOpfKdYZkRnUlKVcbo7PzcE1aXawbg0a2wCPyx+SU8d3gV1bKFy8/cqh4fa8YlmWzuuOdZfO37Lyt/Ny70SLk04K2ocTr2qtI0fWZkab2D9XZX7TOiuRv2o+VZRU1SIlZOk3uYEf9qmqzs4NkkK5tUgzQjVZ/dobOj1xCw+jxbjh26nBkJosnpz/0ErHUNzU6Ls14lJWMqBtLDMCP0d8TFtKJIEyiZEcFxt93t4dByEz0byQcjpEt6tVziKWe/KpbYvlvRm4aBi1gVY+FN8hRpmpHtTbN161aUy2UsLLips4WFBezYsUP6OyeccAJe8YpXoFx2Tta5556L+fl5tFpyd7l6vY7Z2VnXn6zAegSk5SC6HsIKHtAr7VWVonL9h8BaqDxG+p/R/53/+8P+PXDJKZulzqvO++XMyP5ja/j3X/0Rbvjy95W/GxfEiVas22dpmp2KNM2GiSp/uI+stHx8RgYTq2Y1jUyw+Iq5ATOSUJpGbFfPFoW2SzMiqaYZHH9qpmeDxckvTSMGViL8+nOsx8SMsI6+qjRFUPDW9mEhXWOpBgcjbRKMyFJMnW6PV8mJzEgUxovOG+JiWlYcv7o3jft9rEpJ/HcSWBeMx7hWIwXdCEtfq5jwIBGrMk0z6gLWWq2Giy++GHv37uWv9Xo97N27F7t375b+zuWXX46nnnoKPTJBP/HEEzjhhBNQq3kdO/MGVSojKTiVLzEyIx35Z3L9hyJNI6O/2e+w3cobFSW9fHyKyYaVTDOaO0mIDyRlRqjhmUozYlkWtkw5IlZZ2gvQ3434BXtJV9R0FTtTWTVNlsyIN03j/V4/0zNArRlpk06nWqZnGs+WuHkoKxrFiXD1KdKopvELBmmbAlkgRRkikRmJstliQXm1bHn0LkHVNM79J08nUMPJpYTNJykzAgDn7mDi/mSZEdu2la0lGJzASD4WVZpm5AWsAHD99dfj9ttvx3/7b/8NP/7xj/Ebv/EbWFlZwTXXXAMAeNe73oUbbriBv/83fuM3cOTIEbzvfe/DE088ga997Wv4+Mc/jmuvvTa+o0gQOiK2H750HL/23x7A4zFE0k4uO5xmxL+0V8GMKHpvtH2EgeIOUOUvwsenqEg4NhDNdnt24g+MGKg9c3CFt5VnepEZheEZAxWxcqq7LN+NBFbTKHxGAOCMbclW1Kh60+hqRtI2PZv00YyIC5sIlemZy8vH5zljz1a3ZyuvKfssVaO4wDJvsghrCVi1mBFLypjS3/WkaaIEIz4pBlmVFuCtgKop0jTUAXVYZuTwchPPH1a7mIqW7E4VS7LMiKubuoKhY1WPTy4sSzcCTppGUdpboGBEza8rcNVVV+HgwYO48cYbMT8/jwsvvBB33nknF7W+8MILKJEc7q5du/CNb3wDH/jAB/DqV78aJ554It73vvfhd37nd+I7igShYg8o/teD+/G3P17AyZsnceOV5w31fTo21RQ6Oxse4AifWVeI3HivDMnOnU66O2YbOHuwk1eOT7GjO7LipOja3R7KJb3jjQL23WyuX2p2cHC5ie0zjcBKGgYqYlUxI7rVNO2uekfPKmpeOLKKJxaW+PfGBTah+WlGuhItRtoNzTgzUh2U9oa0gwfUmhF3eiFYMwL02ZFpyfPQVGi8ZOdVBudZs5QVaYDec95ypWm881az61SNsPEN4wPkVwmiXU3Dg1yfNE0EZuS5Qyu460cL+L8/mseDzx9Fzwb++rrLebUMxbrAjDCdxrOHV7DW6nr0GHHBFYwo7sMTN05gul7BcrODZw+tcOaUQZWmcYTpxUnThA5GAOC6667DddddJ/3Z3Xff7Xlt9+7d+M53vhPlqzKHs8PwyRsPjGfmF4dXX68rWAwVdHK+Ku8S5rGwLhybuGC5fod8xhtfoS7pZWABj6gZOUq6UTY7PW3BbhSwXVejWsa2mTqeP7yKpw+sDIIRdbdeCsqMqFwnnbRAADPScxYNGV4xN40XjqziqQPLeP0ZanFwFIish6zqQbbIp64ZGQQQfgJWRzOiErDKUwC01N03AKCmYO2uVBu1phDC6jpgqsq8vWNRC8EZqDjVjxmplp3j5sFAJM2IujxaVsnU69ncXMypppEHQ0sRNSNHVlq4+o778YP9xz0/e2JhWR6MCMzItpk6b5j6xMISLtjl/Z04wNaUkqUOqEslC+fsmMEDzx/Fj19e9AYj3PQsmpg+T0i8mqboaGiUprKbeT6G1u88f6nJjNQ10kgqZkSVpnEWI+/tQSeeoBQNoN55HSPeJknrEFjH4FqlhDO29QWizxzqazJYJc0Js/7MyLZpiWZE4ToZ3CjP3+QqyYoasbRXtoPlzAgJRuPo8BpqnB39NI1qIndEfO7f1SnrBfoLATtulW5E7bMh16uI4IF/gNuyXprGua9kzAjXJ5D7rp4iM0IDM1EzIt5XS02SpgnBjNzz1CH8YP9xVEoWLj9zC/7dledh9+lbADiBo/c4vNfwnBR0IzTN5RcUOz1qvPOByvRMV0yfJ5hgJADUV0MF9sAvLA6f419XWI2roEOzKpmRAAGrlBkZLMDlkoXX+5T0MnDNiHD+KDOStHcFtdhnnXGfPtDPITM26wSFxwjDFtKfJtBnJGAC8GOeANqjJn4RK6+UEbv2BjIj/ff17HREcazKoOFTTRNkFqbqe6JT1ssQ5MIa1vRLRJCLLEMYzUitrGBGut77dijNCDFQE+Hn7At4q2nEgDFqmmbfkb6h4c9duBOf+7XX4V9dfhrvObWuEMuvS7Qv5+xQBwBxQZXuFeHX1FSVpuECVsOMjA6caprgxX5hcX1o174wEyWgZ1kdzIwIwYhPLn7rTH9Rvuy0zdgwoRZ88vEp0kiUGUk6GKHBwxnbBWYkoEkew1bSn0a1I9T2GfFhngBSUbOwxIW2caHd1WFGvMLQKjnWpNkR27aJHXxZ+Z1+2ib6uvi7sp2wCkGl82sqzYjmzlTVp0hEWNMz2SaApStjC0Z8Nk4yB9qORKyr0iItRkzTvHi0H4wwJ2PA6cysZEYkm7VzeLsMf2bkyw+9iNsidnfXNbj0Y2nYMYlpmrEQsI4bVMZgFCxQ6fRsHF5pYdtMdNGhLEr3w1DMiGKi9Usj/JOztuEPf+lCXHzKJr3xKYR3lBlJenGjzcE4M3JQSNMoDM8YWDByYGnd6dqr8hnRpOZVjpusouboahuHV1qxilhF1kvmB+GnGQH691qSGp8u0RawSVbGMLAxq6tp/AWsOqnQIAG7qseNLjPSCXCRZdBJp7TIfVWXeAjRdCXDMO0auPBTyox4NTNyZoSJvgUBazMqM9JnOndtdoIRxhqogpF1yWaNMSOPzfc3BKo0yu9+5VGstrr4hYtOxFxAqleEKt0r4uzBWBYWmziy0sLmKccSQ52mKZ6A1TAjAZA91CJoCmdhcTjdSDOs6RnpQaHaRauZEflE2xaofIpKuYSfv/BEnER2Hr7jG3ynuPOi/XCSNpSTMSMvHl3DervLq2mCmBGWpmHBC+DdEaoEkyKCdsMTtTJOHkymcetGVC3cXcyIT28aIHkmiwYPPE0jtYMPqKZRWGKHStMEVLHw0l6FHbduB+dyDGmaIGaEpivDfK4KOsyIzNkXcM6PqufREintDeMzso8zI87mggcjijSNzPrg5C395+/Yalt57VudHg8GliKUH7PvlaW5KKbrFZwyGI/YNG9daXqmJ6DOE0wwEoC6RmkvDVSGFbGGbpQ3UNnbtvrGU2tGFGkayWIUFSpm5FiKzAjdEW6ZqmG2UYFtAz98aTHQ8IyBCVjpxFgry3fDwXbwwbth3qMmZt2IGAjpakYsy/LtIxIn6O6f2azL0h18nIqgzvEZkTMjOuyj6hlhWFNpRsrexVgGnmoKqqYJ5TNSkrory7ROVUUaVQd+AlY/ZqRccsqYqekeDYjdDqzuRp4qdHs2Xhr0kzmJMiM1/2u4LikamCTXUxXE0NejmGKG6UPGNSzEy8q2be4z4mlHkLLgPA6YYCQAqlQGBdVrzA/JjKyHuEEB98TiF8ED3gmzrqimCWpAFgaqRn7UZyQtzQgraWTsyLefOgQg2PAMADZNud2CLcubZtGdADoaosWkKmpENsGvmkbsS6TqIxI36PmbqDmLlQinLDbIZ0TOjOiUzwczI3LWUbeaxk8sTqGTTnEJWCXMCH0O+OcqfD50oFPaG+jsq9AiLUUQsM4vrqPdtVEtW9hBUiaNgDSNjBmpkP4+Ky3599PX/dL4KvgFcyJkItYWcRL2CFg104R5gglGAqBjekZ/NnSaJmKjPEC9qFNfBQplmiag50cYOMyI8x1rra5U5Z8UWkQzAgCnb+0HI/cMgpEgVgToT+CbJp2AReZRUdX0lnCqadSPH+9RE7MtvKo3TRAzAqg9IeIGXVRV5bmATjWNPCAQTa784MeM2LbtfFZN1A9p3gsBzf4Y+HPkMw+5uvZKNSNeZkSn67cK/qW93nPflQSP9N+uYIQEICtNvYWeVdLs3DjhuieC0jQyZgRw9Eqrit9bdTEjw5y/4PtQJmK975kj/N/K0t4CVdMYAWsA9DQj8aVpwmpGyiULlZKFTs9WRueqm55PWKKANcCUKwzqFeeh6PVslEqWS7za/1l6mhEAOGN7X8T60AtHAQQbnjFsma5zrYtsAtFtTsUFwr5pGndFTZC5nC46QppGlk6QVdMA6fWncXbwlm+6QyxTFsF9X4TfDRPw+zEjrW6PC22jlvb6tQag0Omu2yLCc1mVnawPyjBde/3SDGUZ42ZLmBEyx9CFkzIjS5ppmhePDsSrgp6NsWthmBGgn/o4utr2CUacMUZK04Rg6Jgt/BMLy1hab+OT//cJfPbbzwEALj1ts8RmoHgCVhOMBKCh8MmgWI8zTRPSDh7oTwadVjeQGREDHNWuz683TVi4mJtuD41S2ROMpFnaCzjMCDvOIMMzhq3TNTx1AK7PonAmgKDdcHCwRytqDi0PV6FFoXRg7QYzI7WUNCNc+1Ap+aY7gtxLK0HMiAY9zkt7JYvNess5D+LzqupaKyLI0p4htGZE0uSPMk78c2PRjPg5sHpLxumxlkv9Jnvdnu06V8uC6ZlOQM6YkV2b3ZuLiQDdj+p+mKoPmBFFmig+ZiT4Pjxp0wSmamWstLrYc8u3uKfVL192Mj70s+d63m8ErCMIlZ05Bd01DV9NI4/S/RA0USmZEUWaxlmw4mBGnO9k46AeI4Czo0sKLWbONJh4zxwwIwxBhmcMtMRWNoHwtECAaFFkJ2SgFTVPHohPN6LuTSMXGlKo+ojEjVbH2eFXFKWfQHCaRhU8hRGJN0i1mgi2iJVLlofZkHVDlkHnXgD0gga3HbzzflZlJxOwDtO1168qyVkMvdU0YkpKJoymzEjPVrMaFKySRqz009eMiGma/l5d1VmcMiM64xPRCpGmKZUs7n2ysNjE3Gwdn73mtfj4L7xK2qZAl6XNE0wwEoAGoTFVXgf09eGraaIwI2qRbafb45OAihkRAy1d6lgHLn+KwfjSZka4z8jgWp68ecq1gAWV9TIEBSP6dvB659dJ1cSnGxEDTd1qGoBWXqQjYK2VS7zKROYkSZvMyaDKmzd9FlERTppWwowQjxFx167PjHjZAvk4gtMpznmzXPcnmxeaPsFI3MxIWXLdVIJj0YXVtm2P0ZmO8dmLEo8RQKO0V5EadzQjCgFrkzIjyQpYgb7HEwD8wkUn4v++/434ybO3K99b1WRp8wSTpgkA3T21Oj2PUEi8CRfXO0N1egxrBw/4727cnSEVzIinUZ7ebk0HltWfGJudHn/ojwrMSFqlomx3WauUcPLmSTx7qG8JH2R4xrB12qmokU3AusyI2B9GhbPmpvG3P16ItaLGw4xIvFG4z0hZ3MGms9vii2ql5CzqkUzP/O3g9Up71c+WqqwXcEp1g5iROB1Y6XmjY2q2+yZ1tKsvH+cQ11SltQDkaQIV4yb2PVpv91wBcadnY6nZgXrp7UPmMQLQ0l4Fc6wo9WbMiEozEltpryYL/m/edCbe8bqTtUwQndYUxQlGDDMSABq1yndHzg3OIulhdCOqyhc/yCpWGPzaVDcUuz7d3VrY8bGJ9NhKusyIbEfInFgBfWZkC5kEhtKMdPyFlwy8oiZGZoRNTlXBDt5V9WBnqxmhTqKq/jJAcDpR1dzPSdNoMCM+jSj90j1lzWoa3TJ6nWCEjbFaLqFSssA+ks0LfmmaYXrT+Dmwykp7xfte9DphTfIsC1wrtRJQ3tvsdPm8K6Zpgh1Y5cwI04yovttd2ptsNQ3Q39jpujHL0mR5hwlGAlAZPNiAakJyggdW2z5Mqka3oyiFX3keG1+tXPL4Rqh8RnRFdfrjc0/oRzISsNId4enbSDCiWU0TnKbRrKYJSC8w7BwwNoeWh2/AKH43WyylVQ+qHWxKmhHafVZWeswQ5NdSUbAqoUp7eW8qnzSNJKip+oybQreMvkZ2uqr+V/S8WZbl6crNg5GYuvb6sbiyxVB1X1WEIJfpRabrFcw0+uxEUJrmpWPrsO1+4EEZTIBoRoIcWIcq7Y1STRMuTRMGuhujPMEEIxrw8xqgTbdYb4JhRKxhG+UBemkaGRWo7tobX5oG8AZLXgFrerQ/wxnb+qzDTL0iFYDJsIWmaWTUfFifkYA0TcNnVx4VovtrRZJOCNKMpGXfXy2XlF4h/df8GTynmsY9Xj8bcxF+Ana/NA0N8vyaHXY07wU6VtXzwoXag/u8LjCm7L6TlvYOwYxIA3PS5ZkFTyrGVbSEZ8HIbKPKn80gS/gXuXh1wqPfmSCN8mTXQsWMBKVphi7t5ecv/j5PRsA6ouCdeyVpEEr5MvOsqGka27ZDU3d0fH7MiOzz1Hbw8QlY6fjYsTEB6zATYRjI6OnzT9wAADhzkArRwbYgZsRn4aRwGhEGiBY1ysrDoNezwWIOtljKbbvlWgxVu/e44TI9kzh5MgSbnsl3h+FKe9XPftMnGKHBhV9wquPGC7jZDFUwSBtC0nF5mJFUBKzO8bC0n8OM+GuRlgkzMj1wRg5iRmQN8hioO6l0w6ZgRqZCCViHOH8hNp660N0Y5QlGwKoBVdUJ4LZEnhsyTUMflHDMiLwZHf1M2efJvAgAfYGl/vjcEx4TsG6fqePFo2upmWjVhWDkf7z7Upy2dUr1ax5QZkSqGQlbQRHAPDkeF/GcHzoxcdMzWW5f4d+RtoC1WrGIgFWtGVH5tagcY/1szEX4MSNsARKtuAF3cNHt2VB9VUfzWZNVpYmg5w3wMiOikJv+O0rXXr+qJMp+sONXMm4VMU3Tnx9mGhVMD3QbQZbwKvFqf3zuPjPidVcyIwNWRuUAOzwzkmCaRlIll3cYZkQDfs3yaG+KHbP9nXPUNA2d8KJoRoI0LSIaJEjouXbGeru18OPrj4U1yWPBW+LMiILpecNZ27S7DwN92pblkf19RjR1AprlnLJdeRTQ/H21LDIjwbn9WkUv2BoWrjTNYFK1bXfAZNt2IDOiND2L4MAqZ0XVizEdk9/50mUhLcsKdEt1uvKye9Sd5pMJuaspMCPs+J1u0P6MG0vJTDecFGpgMMINz7zPc7nknDuZiFXFHgeV9ro0I5G6HieYpimgA6sJRjTAvQZ8Fvs40jRuEyX9S8N2ZrKHxk8Q21DQl+2AXHxYeJiRFRaM9IO35HvTeHeEUcFErH6uk7rMSFDrcGqlH0fDK1kLd7+GZmqfkXQErLVyiQtt++PyBkyAT6M8RUVBGF2WHyvKFja5fsj5bL9rF8btuB5w/ttCYCNqwqSN8oYp7fVJM4jMCBB8X4kC1plGFdP1qus1FfYNrOBVmwtVRY0rNR5aMxKPz0jQPBAFuo0a8wQTjGiAew3IouqOMyFxAWvENE2Usl6gv4MA5HSiLzNCJlH6MMUvYHV2aJ1uD4uDiWX7TP98pdebZvgdCEvVSJkRzQmgrUiDiBA9boYFHZdY2kt1IJwZUZRgpqUZqVYcZgSQW9YD6vtUaXoWQpeloxeTpWnoeuvHlAWlmiiC9B2iUFtkRmLXjPjMLTS4Ysev6zPi1oywuS1AwKqwgmdQGZ/R/kJhNSPxCViTq6aRpTfzChOMaEDVUA5wN91izMiBpaay/M4PUcp6ARAq09tQKohKZbsoOtl2NL0PdEEnvONrzhiZh0Ba1Rlx7EAcZkQmYNWr7ddtG+920Rw+VcPGZVngZd5+1TRlT1fidDUjVMAK+AQjAQJWr89IPMyI3+dYlqUU0FKIXZT9EBQ4iKW7YnpZVlU2TNfedZ/5yrIsT9l4R9HYkP2f+4wMNCOzjQpmNNI0K80ODg/YViUzwo3P3M+Rn06P/Y5aM+K8HkXXlaRmpIgOrCYY0YCvZoQo87dN11Gy+hPloZXw3hDUXjoMnGAkXF67/11erxF2A4s746igmhFWSTPbqPDdStI7bdoFdlgwLxlpP4iywzL4lnNq+oxUiM9GHAGb0y3YuRfkmhFVCWY6mpEmuV4V1w6bjJHcM+pqGpVmJISA1cdQMKh1g+zcigjzrDmaEfniyH1GVMyIX2nvEAJW1WIqVmoFV9P0f84CD8qM+KVp9h/rp2hmGxVsmKhK36PqT8OuoWV507hTg2dcZZZG2Zoouq4wJeZhIdtk5B2mmkYDDeGhpqBiuEq5hK3TdRxYamLheJOnIXQRxQoecB4a2e4hiJKuV8tYanbcaZqed9EaBtQHhVXSbJqqEfFcPAJNFWT+ClHxqz9xGiplC794yUmen9Hz1e3ZSuaDBUc61Ur1SgmrrW4sFTVO+s0Zl59mRCU0TMsXhpl3sa6u7v45zhiUPiOKShzOQGrZwautxNkzo2r90L++Pd/dqeP7opGmCfB5EZkRlWYkja69QJ9ZbcEJHNXdoFWakYov68vgJ15lYOdCTNNQ4zHRn2SSMyPyQCg2O/gk0zRGwDpaqPtpRoTdAUvVvHx8LfT3RL05Z+rqvGpQUzCZ8ZnYv2RY0GofJl7dOFnjgrzEmREJPR0Vp22dwk1XvlLaz8aVUojBWwKIt6KmI/EPkfuMKGy7maA2pUZ5LPgJ6nOiai0vq6axbTtUmsa/Us0/reqk7eK5FwLTNMJ509GMRK2m8WvAySAyQ8pu0KIDa5MKWIPTNDwY8amMUwlYmz5uvFMBAtYVVzCStzSNXmVfnmCCEQ2oergAXuOjYVxYw5QcUnBmREJlBu1eZDu/uAWsdBJl7qubJqupm56FqVCKAvr5euWcw2kWwqIjEUtWSOksd8rsyun0YSovwkDssuz0zyEVXwFlvYB8vO2uY/ym5cDKghHJs78WkKbQ6Q/iGODFKWAd+IzwTVT/9abkOagRtssvtSjCrwEnA5s/9KtpmANrf46YbjhpGj/TM1ZJoxKvAk4wIs7h6z6W7JwZaXWk5yY+n5H40zS6XaPzBBOMaMCvc6cj4howI7PRy3ujMiP8gR2GGel40zRJ9KZhmpHNk7XUSkVl9HQScOkb/ESLmj4jgL9mISycIMPLjADe3L6HTk/bMZcxIxIGrcv1L+pzSDU8DPQ+DyVg9Snr90/T6AlYdUp79dM0/fE4wnvB9EyiGQHCMZR0DCrG0VkQB/eVossyZ9yEahp3mkZ9/2ulaZglvJim8WFGmOmZbXvPeavTc99XEYIRbsaYhAOrKe0dTdQVUTV9jd3M3GvkeHgBa1RBk59L4XrH/zO5HsalGdFX+OuALmJMM7JxsjaUeC4M4kzT+MFl9OS3G+55d6gqiFT7MJBVSfn5QQTR6UlBlabpSjQjfot4VVLd5CdYlKFO7lFRDMg3IgECVj8RYSdEYKrLjFQVzIhfNQ0Q7jlki3i1bCmvgXjdQmtG6lU9zQhjRrTSNIJ+yIcZoSXbYgpcDGoimZ6loBkpkoDVBCMaaPjmjeNL00TNIU7paEYUn+mXpokrrUF398x9ddNklS8WWfSmSQK65ZwyIakKcfanaUvSb7IASlVNk5aAlafVKm5jNhoEOVoL9TXlzcLI/eUnWJTBz+slqCpHp9Q7jM9I3Sd4t23b1bUXkDAjPgJW+nMdUOdpFdSaEfexsvusxYMRxw6ede1db/ekQbBt29xj5CSJFTyDSjPi18G5XLI4eybqRlbb7rlWdLEOQtQ+ZLowPiMjCn9mxB1ADJOmaUVN0/h0tgyq0ElDwOpmRgYC1imHGUnc9CxGB9YgaFHzITQjXMAag2ZEln5xOYV23WkatW13OswIT9PIvFA0nEs5/d/z0um6uiz6LHr1Bv4pUEfrEnwvDCtgpQEKNz0TmBFZj6ZSySmfDhOM8F29T4pBlxmhwuhuz+bC0OlGhW+0APlma3Gtw+c9v9YOSp8RH2YEUItYmfcIPZYw7GW//L//7yTTNGIbhTzDBCMa8FsQvGmaQX+aCC6sUe2BWTDS6vQ8E0oQFSgLtFSagahwaUZWHAGr304vTqTFjAB6O5IwpdOOZiEOzYh34ZM5hTrXXyVgTbqaxr3DlzEMnFHwC0YkwledHT1FpVziz4G42HDNiIoZ0WhWFkaf5VeGS68JL+0VKrFUz0EULZCq0y2F0mdE6ezbc6WaZxoVVMslPk/IvEZYg7yt03WldgcgPiOe9Ip/cDpZd0SsFEy8umnKaZ4ZRjdCn+ck0jT0HBdFxGqCEQ34LQiiCyFL0yw1O4EWxiKi0nZ+u4dAZkTiLptk196jPE3jCFjbCadpZLnypKAy2qIIlaapuHe3w6Ajockty1LuYD2LhmajvFanhycXliKPUyxRlVnWc+GnzzlkKZwe2R06gkX9e0ElIg56tkKV9ur4jPgE7/QZ4qW9QiWWSjvlpN/CLKbBKWX2ucGaESfYZMFIrVzi8+CMj0B/X4ANPIOytFeXGREEtIwp2TBR5UFXmPJ7lwA4AcbW1UbBMCOjAz/jI7FaZaZR5T0NwqZqZDSqDujuQXxgm8QhVgZZmkbXrlwXbgdWJmCtpiJg7fWcXHo6aRr/Bdu2bccCXCsYSUDAKnyvKrcftVHetZ9/CD/9B3+Pbz99KNI4xYZvsjSNir2hqEh2h1HK51XP/5p2msaHJYuQppHdC+wZKpccQSl97uhzIKYHnc2C/qLF/ZV8zqOXGVFU05Sd76d6EQY/rxHGjPiJVwFggpmeKVJtquOYqPkzI5O1ssNAhdgw0GBOR7sUFvR+6hakosYEIxpw0jQ+zAhhM1hFTdhUzTDqatXuIVgzkqaAtccFrJunHGYkyd40NNCppsmMKHYj3Z6TK9ZJ08RZ2qsqKabMiG3bPtU0wZqRbz1xEHf9aAEA8Mi+YxHH6d7BSwWsGlUoNPhkx6SziIpQMyMBaRoN46lQPiODkl2pZkTS8oB61Mg0Jc7nht8U6DAjzn3Vf69O117eJI8GI77MSLDHCEA0I57SXj1mREzvMM3IZK1M5tAQzEjEpqi6oOe4KCJWE4xowM9rQDQ9A0h5b0hmZBhHPlVFTRRmJIz3gQ7Y8RxZafEJadNkLRUTLdcknAYzUvbfDbu7zepX08QrYHWfB7qDpeumugRTvrh2uj187Gs/4v9/+Vi07tXM4VX0GXE3ygu+R92+LwNmJOB5kKGuYEaaASyLTmlvKJ8RDQErvcdpENX2eQ6iNMvT2Th5fUbk1TTUZ4RawTNM+5g66jIj6t40/tdwUsGMsOBkslaJFozE2ElcBpp+LYrXiAlGNCBbsBlkivq5iBU1wwgtVRU1upoRuutzyg3jraY5sNT3XmlUS2hUy6mYaLUTzs2KkOkbXOOhTE0on5E4mBF5SoA6ZVKRaFhm5C8eeBFPLCzz/0dpiQAATQ07eB0bdVfZcpcxI+HTNDJmpNuzeQCgLO3VcMEM86w5gm/vvSDTRVHWs+XzHAwjYPU7j2J6zWHc3O+rkvO0RJrkMUzX+83vZMzIiwOPEb9KGiC4tFcVVLFgRNSMrJA0TZQNQ5JW8AxFc2E1wYgG/PL26xJVOSvvDZ+miSZgBYKZEdVN72sHH5OAlR3PkRVHvAo4kyIVGMaNFtEflGJievzgpGkUzAgJUrQcWIXyzGGgKtmlkxa9Dp5qGh+Nz3Kzg1vuehwA8IaztgIAXorMjAyumWgHL+na63ePWpblYd/EXlI6kDEjdGMSlKbxZUZCPGt+QQNjk6oKZsTvOQjqBixD0CIOhO/a2+pSzYjTfXfGxxJ+fjDH7tzo35R0QuXAGsSM1OWlvez/U7WKx89FBzxNk0BZL0PR+tOYYEQD3A5eqhnxMiNR0zTDMCMzCiozaCeYps8Iw0YWjFD3x4TYkbT60jA4aRoFM+LDPMgQq4BVoU+oknQCnbjE9dHPpO5P7n4Kh5ZbOG3rFH77inMARGdGRAGrWJUB6LsEi9cjrM8IQE0P5V1aA3vTaHTtDdMaQJ6m6Y8niBmRsYNR2jLouEU7LqABmhHuM+JoRmYIMzI1KK8VWd+l9TZnS9icq4KyN01AUMWKEVYVAtaJWtl3fVAhScMzBvH85x0mGNFAXVL+yiCb3Jw0TThL+GEErFMKxXkQHSjzGQlTbqgDcQLcNNnf9dBFMelgJI2yXoC4fqo0I12HltdR0cfam0axGJRJCWq3q2ZGVGma/cfW8Jl/eBYAcMNbzsHJgx4hR1fbnp2oDkTTM1F7QI8lKKDjqZLBhMyeh1ClvTJmhNxXKsZNll4SoeMky+DHTLWCmBGBbXJ9LmEmdKGTZigLwZiqmoaW9so1I4M0jbDRYqzIbKOCyVoFflBpRoKYkYnB54qaESZgnaqXpexyENJI0zhzkWFGRgYqzUi/HTnbIRBmZNg0TQTqTqU492sERV93p2liLu2tisFInxmhefKkynvTdF8FaD8UlcgzXKVSnA6sHUVJMc3tu5gR4fI7jrnuY/v9Ox9Ds9PDZadtxk+fN4fZiQrfUUZhR8SuvVWJKFjXRl0MoGSC8yDImBEWZPkJYXV2pqprIoO/6ZlMwOqwak0fZiSKZiTIfRZQa0bUbQZsPn/J0jRiCpoxzyds8K+kAdRpGm1mRNCMDC9gTbaaBqDPjQlGRgaqahr6f1k1zcHlZigthDNhhKfuplWakQBTH9GlEQjnEKoDcQLcOGBGaE4/sWAkZ8xIWzO9wBCnA6tKn0B3sNRjRGRuZCZ1j80v4iuPvATLAj7yT8+DZfV/74SN/QUiim5END0TtQf0WIKYEdGETjQp1IFoHgYEd+ztjy14Z8qD0xCaEanPiIT5oJsov2aRkQSsGmkGkRkKbDPQ6WFxoBmZ1vAZeXmw2QtK0QA0TROuIkqlGaECVr8CBxWiNkUNg7LACuYdJhjRAFvIuz3btcjQyYn6jGydrqNk9d9/eFk/VTMMdSd7YHsain9fAWtszIj7uzcTC+VaxbvAxQm/XHkSCNKMRGVG4tCMqBrgVVyaEXWpKdeMkGfgrx7eDwD4mfPmcP6JG/jrJwwWiJciMSNCNQ0PKCgzEk4zIgpYw5T2ygL2IMYRcGtxVNANqoAAAStnRpzPYYFCz3Z28v7BSLw7+3LZffxhfEZkpb2iZoSlaU4IEYy0uj3XfRR0HFNK0zOZgDVfaRodN+g8wQQjGqATDo1+2eRUstwph3LJ4gvuoeWW9ve0hkjTOJoROmE6D0dQNU1T4jMSV28aLzPiDUaSYkZEyj9pBFXThBUHy3blUdFWBJnUgdWvL5FYmWLbNr76vZcBAG+78ETXe3cOqPMoXiNiAFmVMCM6pb2At6IgkumZpKJprTUI8jV6s/j3KXKLdf3gxyLKmA86j7AqFVlQXh/K9CyYGWH3C/cZEQXUJGBkmhFXaS+vpmm7fo8xI0yj5wfKYNGgIZAZ4QJWsZpmwIzUy76NVFWI2hQ1DHQcgPMEE4xogN4wdIGn4lWR0t4y1W+Yd3glDDMy2L1E2MU71TTOA6vTjEmkGHvEIVRHVKcDr2bEyQf7VWjEAVmVQZLQ9RnRFQfHKWDtKsSSbmZEvVNnCzsrxX543zHsP7aGqVoZP3XOdtd7TxiUWkbTjLCUgzUYizugAPTLz/n16DBmJEKaRlK6yZ99nzQNL+312ZnyEuUwAlZfB1avgBXod7cVX2OIUk2joxkRTd+CmREbS83+/DVLNCOqNM3Coj4zQo+b6kZk1ZAUk4quvatcM0LTNPEGc8NCxwE4TzDBiAYsy+ITAY1+mz75560zjBkJEYwMkUd0fEbohOkwHKrJTlSZ011cbKW9nmqa9JiRtEt7q5KUAgXX4+gyI3EKWBVlpLRapedT3UH1CO1uD//ney8BAH76vDnPM8CYkZdCirht29tDRSZg1a2m4QudyIyESdNImBEdJ1enkifYgVWra69vmsab/rMsix8n02LErxkJPn7t3jQqO3iFbUEYzYhlWdLy3qDuw6ys2FvaG48Da7I+I15/njzDBCOacBT1EmZE8kByZiRMmmaIyg9ZNY1OXpvnOwcPJc0vxiVgFSesjS5mJPxEGAZ+VQRJIKhTq5Om0RtPrAJWRcm224HVjxlxXltvd/G17/dTNFdesNPz3p0bWZomHDNCGSVHM+I9p13NKhQxkIkkYJW44PJqmhA+GzJE6uAsZUbkDKATjPTnBVlQ7mwIQojtNTZOZc1qmlrFuUbS0t6GSjPSv7d0ghGAVNRIUu0qZmSi6t3kAcBqkzbKC/+MplFNE8TS5g0mGNGELPr1o3y3TIfXjAzjyjc9iOBpMLIeUEkDkDRNp9tvkkZu3Lh609CqGUBgRhLuT5O2ZiSotl+nwRtFvAJW+cJXCakZAYBvP30YB5aamG1U8Iaztnney9I0Lx1bg23rT4b0PmDHzs4pvTdVTf9EVMru6yF22daBnBnp/1vlvkrHpgpMaVNCLQdWn0Z5qs7ULFhgrEJ8zIhOaa/7+Ht2QDVN15bawc+QSkF2L623nQ7gJ8wGl/YCxBK+NTwzsuJiRiKkaQK+Nw7InhsVnjm4jOOr7cD3JQkTjGhC1n/ATwy3dZoxI/ppGsaMRKum6bMNKyGZETZ22x4ozckuLq7eNID7mKRpmhExPZOlFCgcwaKuZiQ+B9Z2QJomiBmxLIsf3/968EUAwJvP3yE9tyxNs9Lq8l15mDEC3t40NIWoshYXIYooZV22gyDTjOgENeWAxYBW2Wj1pmFBkWQHrmJV2fj8BKyOMDZCaaqfgFV0YFXofNh1Xm11+PNKfUYYM9KzHVaD6UUmqmXMTvgbnjGwcxGGGWGakbV2l6cwASegcZueRXFgTZAZCZGmueHLP8DuT+zlHbezgAlGNCGj4vzyz1unw2lGbNsmnRzDXxaZZXIYZoS9ny5GOg6humDHVC5ZLgo2aWakNYQoOAp4KakyTROubNqp5EhewNrp2YEls2zhuPuJgwDkKRqgT4mzdFwYEStbVEuWExDxElGJA2vQIs7uOzYhRzI9kzEjGp9TFUpbRbg7OAffnzJdGIPjM+I+HyxYiF8zEpxm0PUZYc8CPU2UGZmolrkBH2N4qF5Ed56SpWl0mRHbdgKXVqfH79PJasVTBKADfv4S1IzIul3L8P0Xj+G+Z4+g1enh/BNnExtPEEwwoomGpMTSyT/7aEZW9NI07a5TxRKFupsZMCOtjtOHoqnII1PUyiWwZ7nZ7ip3z8OCTVobJ6ou+2w/I6c44Gf2lAQcalTBjER1YI2FGVHYwVMH1gDfC9onZstUDbtP36L8vhMilPfKBMdVaTWN2g+FQsyb61SBiJCxU2sawUhQ11T6us7zNj3Ypbe6PQ87InqzMDjMiDpN49fzRgWdahB+X3UDNCPCmKdqZdd1tSzL4zXCPEZ2aJT1MnAB64DVsG3bcWBV3A+UQWNBIE3z9HvTRLeDT3KTVC3pMSO3D1o5/NwFO7XcbJOCCUY04VQ1SMr7fDQjugLWliRXHgYsggecVI1OGaNlWS4Ra1hNgy7YJEjFq0DyAlZVLj0pBNrBh/CVAJxr1+r0QmkvpN+t8DhxMyP+Gga62L3lVTt8d/Q7Ixifya6XjG7207ZQiLvDKKW9sp2vzufIGvxRuDskB98P7mdcHox4BaxuZsS3tDcEO6lnB69gRoT7TwygaCUNf02oqJkPUdbLwIOGQQCiswEslSziNdL/7tX2ILArl1CrlKRpvCCk4cDqGP6p540Xj67i6z/oC9F/7Q2nJzYWHZhgRBMyS3hO+UpuZKYZObTc1FpEKA0fZeGslEt8omEiVl3FNhWxhmncFQbsgaV6EUDd7yQuDJP6ioJKQNopTMt4QO1xEwWqBdxJg/QCS2apw+eVr5anaBicihp9ZsTxGCHBiKT7re59Sg21gGCNgAwyZiSMz4bacyacWLxSLvHdvdj2QeU0LDIjvtU0nRDVNFrMiDuIDPIZYaB6EQaxWpAxI3MhghFHwOq+FwD/6yh6jbBAkKV9ovmMpFFN48/SAsCf/eNz6PZsXH7mFpy3M7sUDWCCEW3ImRGfNM2AGWl2eh6zHhmoAE3VBTQIM8IDq7sLpAKssDt3XTjMiBCMcGZkeE2EDKn7jAS0je90w51fOtkPG4woS3slzIgyTTO4jnOzdbz21M2+38crasJoRjre8yNWxABqzxTPeIXg0NF5hRGwep99nTSNYyYXJGbW12cx3ciSIApuKdJ/7Dh5msZXwBohTaPBjHQ5M6LyGXH/f8aPGWkyzUj/ngrDjIiaEXY9Lct/A+hhRgZ/T/FgxOtiHYR0BazyuWhxvY0vfncfgOxZEcAEI9qQl/aqJ6TJWoXfxDqpGkbbDbODnxKa5ekzI7I0TdzMSP/zNglpmqSZkdQb5enawWue3/5C1f/3sF4jXUWgWSGajCBmhC12b33VzsCgOYolvCzdIFvUdU3P6LFRkXgY4WBdyooOX9obpM+RgXewFUpN1WkaoZomrt40GuZx5bI7MFeVMdMqLcAtXuWvDdgSnqYZRjMyGDttIuoXDLJ5nDEijCGZEIKRaNU0KZT2Ku6/L9z/ApabHZy1fRo/+QpveX7aMMGIJpyyOipg9d8dcd2IhiV8HJGyKPIK6rvAQHd+bU1hYFiwCW/TlIIZScxnJO1gRI+a162moS6aw/ancZqyyZmRrkY1zbknzKJRLeFfvvakwO+L0ixP5iQqczJlu+0gxounaQYVECxjGs70zE8v5rcY+1czROmOzXQjohupigFkx+nntxOlmkbHPM7LjAS3GgDcVvAMMwIz4mhG9AWX3G16EEw4mzX/e2FK6NzLmZHB606aO0KaJg0HVsnc2u728Gf/+BwA4D1vOD3Wysmo0CvQNnBESm3v7kh1Q22drmPfkTUcXApmRuLYwYvMyHpoZqTLdwFxp2kcZsQdjLBSxKR9RpKkQymqQdU0IX1GgP71WW97KyjCQiVgpTvYIMbhk//iAiyun8c1UX7gmpHj67BtW2vCa5N0JYOsa28UO3j67IbxGZHpxXTSNLIGfxSq6+EHVZ8WWddewHvf+wYjmhuCTtcxx/Mv7XXvzP3E8fQ1KTNCjrvd7eHAUn+DN7ch+D5k8KZp1Gl2Cm+aput63SkAiOLTknyaRrYx+tr3X8bLx9exdbqOn7/IX/uVFgwzogkq8mRw+lMomJEQzfLiEDTNCIpzXWaERvbOzj3eW2PHYAdz6pZJ1+vcVTIpn5GQGo1hoe0zEoJ5iqs/jUpASNMgKpdWhlqlpBWIAP1uqpbVDwh1S9xlO3xxhw3oa0YqZHfIUgtil+0ghK2kYxAFnCJUTJUfVMGIajMjjs9XM6K5IXB3A9cxPQtmRui4pZqRhqOVObjUhG33r/3WqRDBiNCHS5cZ4Wkaxow0HfdVwL2Z0614SzdN476utm3j9n94BgBw9e5TEh1DGERacW699VaceuqpaDQauOyyy3D//fdr/d4XvvAFWJaFt73tbVG+NlNIfUYCFvutIcp747g5p4SJKgoz0gnRuCsMPviWc/DffvVS/Mwrd7heT4sZSc/0LIAZiRDsxeXCqvruMtnBdyIskCrUKiVsGwQuuroRWfAoFbBqlvbyxoWEGZF12fYDZUYcO/LhS3ujiMWnBfaTwTlvcs2I6v+AOk1zZKWFH7503PN+dzASXE3kqaaRHC8dt6y015nb2tzwbG62EUrsL/qMNDWZkSlWTTM450yvMylU0/Rsfe1bGoytrAoNAO5/9gh++NIiGtUSfuV1pyT2/WER+kx88YtfxPXXX4+bbroJDz30EC644AJcccUVOHDggO/vPffcc/it3/otvOENb4g82CzhmE/p540dr5FgZiSONI1Y/qbNjLDFrt0N1bgrDDZMVPHGV2zz7IrqSTuwcs1IOtF/YDVNhAXI6U8zrICVaRRUzIit7d+hixM2su69eroRmXmXzMnU8azwf17YcbQ6vUCNlwo0DcvuJ52uvUGmZ36LswqqapogASuDtLRXEuwBwHv//EG89Y/uwdMHl12vs3kvqPJPXAz99Eh0XLLSXsr6Mit43QZ5DA0xTaPLjPD+NG4B65TAjNDPDIJOb59hUSGBOMUP9vcDzP/nnO0eDV+WCH0mbrnlFrznPe/BNddcg/POOw+33XYbJicncccddyh/p9vt4h3veAc++tGP4vTTsy8hioJozAjzGtFhRoZP04i7ptA+I8QOPu5qGhWSNj3LqpomKE0TRjMiE09HQVtRWlkOUU0TFsz4TLd7r2xRlS3quukuhxnp+XbZ9gN9ftgzvy5UVMggSy9RcDfeMGmahoIZUQhYRVMtP80Ivb96PRvf23cMAPDswRXX+3XF9mVRM+LTT4gG5zPSahq20eq6rODDwJOm0daMMAGru7SXXXv3/aEbjCSfplEJWFkguzlHgQgQMhhptVp48MEHsWfPHucDSiXs2bMH9957r/L3/v2///fYvn073v3ud2t9T7PZxOLioutP1mhImJGg6HYLMT4LQpSSQxFiPllfM0LSNClrLMKK52RYbXVwYFGeBpD5ViSJwEZ5EUSLlLkaBiorehczYsfMjGxwRKw6aHckDqySEsWgqh+GKhHnrkd0vXS1TOiwXbVGNYliZ8qga2lPwSzhvQJWudNwKAErmdv2H1vjc9LxNXc3V91KEFU1TTAz4idgbWOeeYyEKOsFvF17tZkRQTPCSnxZZVOUirdUfEZYB3Hh/lvmnZG9DFSWCHUmDh06hG63i7m5Odfrc3NzmJ+fl/7OPffcgz/90z/F7bffrv09N998MzZs2MD/7Nq1K8wwEwH3GpCI2FQ389YpVtqrrxkZRtvg5FWFhy1g0qA2ySpjrKQQR9feX/nMffiJ//RNHJGc52E6IUdBUNvuKOWccTEjKtbDUd330I25tHvnwPhsvyYzItM+yPw6dFMcVG8SlX2ULTYOy6LhMxJwL4TRD3Ehp6qaZhgBKwmgnznksCFiMOI04PRfxFWakSABq9QOnqSg5xf7m7vQzEjNLUQOqxlhQcwar6ZxxhnGa8RdjZS8Hby4MWIFDrKgL0skOkMvLS3hne98J26//XZs3bpV+/duuOEGHD9+nP/Zt29fgqPUQ0PmMxJwMzNmREczEgdt5+RV+5MHf9gCPrNO0zQRdu7DQHTIjIInDyyj1elh35FVz88y8xkJMj0LpRnxpgijIKg3TZekaTJjRmR28JJJVVdoWyEpnih9aRgcEWu/YoKX9tZ8Sltj7lMEeMv3GZRpGg1mRNYo7xmiEzkmMiPt+JkR+lqQZoQxI6E1I0KaRteNl2lGVhQC1v5n61e8uQTASWpGFMGww4zkKxgJNZqtW7eiXC5jYWHB9frCwgJ27Njhef/TTz+N5557DldeeSV/rcfo1UoFjz/+OM444wzP79XrddTr+iVbaUBWSx60O2LVNEdX22h3e746gXh9RkIyI+TY4l6MghAHM8Kug+hKST+XlRAnDZoWkEHVXdUPsQtYPdU0Tjqh65PXjwLGjOhqRmRpNa776NI0jVyMK4LdXy7NSIQFgJZX65qncWYgsE9RCAdWoXyfQVXC7mFGfBrl9ez+WCvlEp4hOpFFT5pGb+NE01S27d9qwFVNI1kkaaUgm6PCWMEDstJevdS44zPiZkamZMyIxjNKg5Ekq/xUacKlnAYjoc5ErVbDxRdfjL179/LXer0e9u7di927d3vef8455+AHP/gBHnnkEf7n537u5/BTP/VTeOSRR3KRftFFXRL5Oou9/KHcOFkDe+6OBqRqYhGwChSurrGO1A4+pVLYYR1YO13HG2W16Z0I0taM8DxtUGlvBJ+RpASsSTIjzPhsYampFHK6xigxPZP5dXQUxyLCuR62ljeICpQZ0TVPCyztjdB6QSzfZ9CtppGmach72LP0zCGHGfFqRvTmFVmVVv91/zHM+mhGFl3VNOHa3XPTM9YoTzPdxNIxbLOzIghYgXDGZ2yur5atyH3IdOB0EBfTNP3rKUuHZYnQo7n++utx9dVX45JLLsGll16KT33qU1hZWcE111wDAHjXu96FE088ETfffDMajQbOP/981+9v3LgRADyv5x1cROgq7fVP05RLFjZP1XBouYVDyy1s9xFctWIRsLrpxKBgicHdtTcbAWs7RMdQCmrBLGNG0u/a60/NtyPoBKL0vpBBVb1BfUZUbd6jYut0HZWShU7PxoGl9UD7blnDt6rknOprRhx2gotOI6RCKTPCrkOQeVpZonWh4J4+YXxGGvJgROWnE6aahn3ORK3sYkaOrbo3UroMU5mkCeg5kN1bQT4jTN/AjtOygO0z4dhzT28azfJaUTPCS3vrEdM0mkHQsKCBOAW7d2RVS1ki9GiuuuoqHDx4EDfeeCPm5+dx4YUX4s477+Si1hdeeAGllMSPaULKjGjstLZM1QfBiL9upBlDOoGpo8VqGl1mpNnuhm5xPyzY5NmMyIywCQJwJgmKtDUjTkrBv5omms9IsgLWbq8XOzNSLlmYm21g/7E1vHQsOBiRl/Z60zS6mhHem6Zrc61DlDSNmxkZlPUGmKdVAtI0UVhIlemZqveMWMYsew4qpX4zRtsGmt0uVluWS+OjZkYC0jSE0XIzI7JgpP9auWRJmw9OCQvn1ul66E7cNE1j27a2hmiCV9OIdvDOmOohNgxpVNIAwQLWwjMjAHDdddfhuuuuk/7s7rvv9v3dz372s1G+MnPUJTQcu6n8buatMzU8vhBsCR/U50YHvIkW9xnRLe11Ai3dksm4UOXMSLSFll4PcYIGiOlZWg6sJWfxkyFKsCfrGhsFqkCI7mDZ9S/F2Dhr58Z+MNJv+77J971tiRCzIknT6GpGqEBaV7Aog5sZ0XuugrqmchYyTGlvgB18oM+I5DmwLAu1cgnNTg+tTg/PLrl9RZSlvYE+I8TZlzIjPpqRmUZFGuBVyyU0qiV+7sPqRQDH9Kzbs0NVV7F5laWBmRMrFbCKrIsf4kjJ60DVNXokNCPjDLFZVq9n8wnAz0SJ96cJMD5rdR1Xw6iYGTAjrcGk4ky++gLWsF1lh8WwmhH68MuYkbRNz6jJlgxRqHmnrHTINI0iRZSkZgRwKmpe0hCxyhq+yQSsKv2LCBoQOMF5FAGrlxkJDEaCUnZdOVPlB7abpYupbdtKO3jxWFXPARWSsxQNW6w8wYhuMEaccykzUpYEG2we8FsgqS/GXEiPEQAuxmWt3dUOKrkdPPMZkZb2slS3fjVNWL+bsKhInhvbtp1qmpwxIyYY0YTYLIvuUn3TNIOKmiAX1jiZEaDPEugzI44SPHUB65C9adYoM+JXTZO2ZkTlLaEwp/JDbGkahXiWmiN12QIZYzDKRKwvafSnkWlGZNqLoIZ+DE6apjekgJUFhD3SsVdPwKlK06iqm/xAKzgY3U7Pi1fAGqwZAdybAhaMXLhrI4B+MEIbwOn2vKLptQ5n3CAVbbLrKCvrZaC+GFGYkWq5xK/JerurfRyTxEa+27OJzwjVjOgbE6bRsRegXaOd+2+11eWVYDNFNj0bZ4jNsuiO3DdNo+nC6phzRY+WKwMqE+jTuLrMiMtnJAJ1PAyYRiaqzwjVjKwJzEiP7PTTS9P4V9NE8RmJTcCqYGWS1IwApLxXoz8NTzeQe1bmaqtbiUJNz6I6sALuNK02MxKQpolyL5RLluMIOkgb0EBevM89zIjiOXAxI4NKmtecvHEwTtsV9OtunOQ9j+S/w9M0PswI3WyF9RhhoC6sugwPZUCW1tt8rnaV9kaopkl6gyRrMMlYkXLJSrQvThTkazQ5Br1wTdJ0q1q2fGnWrZrN8tiDMewNOk0aaYVmRojPSFw+E0EYtmuvixkRSntp6qeaWpomqIIigmYkYQGrWzMS//UPY3wm82GR9fvRLe2lgcxQPiPE9FCX3i9r3gth3W55s7xmP31CA19RD6TNjFScIJoxI688cQMPKI6tOqkaXQGrvBu0/FipZkQFmsLZESFNA7ib5YXp3cUyS3RTORHR9GyNCKCThJMmdMbE+tJM1+XanCxhghFN0AevSUVsAQ8k14yk4DMCOA/sUVKOp68Z6UWq9hgGw2tGKAUpN4Ki35M0ZHlaimjVNMMLWLs9m9OzYmlv8pqR/sIRVTMiazinn6Zx2InhSnudZ2RdczGpSsZNwe+FkIHfjGBuyO7zkuVNr+r4jNDXm50ed189Y9sUNk72qXyqG9EN6qqEcQvqBs2CIT8dA9WMDM2MtPWZEcuyOAtycKk/r1bLliuwC8Nermk0WYwDMgfWvLqvAiYY0Ua1bHEDs3UiYguiKrdwZiRIwBpPHpHtmmgEr1tN08xCwDqkA6urmkZI0/jR10mBLUAqO/hWBE2OsyuPnqahuyPx2rodWPUYhzA4ZcskgL5uanG97fteWWkvDUaYdkGXYWK/SwXdQ2lGXAJWvWoSOm4KXa8UEVOkaRygrqQB3POJLFhhYOf7xaNrWGl1UbKAXZsnMTvRDwCiMSPOfcVZIMWxsnHOamtGwhmeMfCql5a+ZgRwAoeDg3mVpm4AUtqr8YwyZmQy8WDEmzLOa18awAQj2rAsi4iU9MsEmWbk4HJTOiExxCVqYhMVC35KVvAu1yVg5aW9KQlYh+xNQ9M0qwpXyqSdDinYgmDb8h2xsxuOUk0TnRmhuyPx2ibNjMw0qpib7T8HTx9Y9n2vTMBKx8vb0Ws62dLqpuHs4L3MSJD2hC78slSNqotyEGgqFlB7jLAxsHPklwJmP3vs5SUA/UCkXiljw4SXGdFlcSuS9J/qev38hTvx0+fN4arXql25Y0/ThOhVNDX4vUNLTdf/+eeGSdO0ogfFYVAte5k5FsAaZqTg4BU1HVoWpseMtDo9jzcARRwCVsChcJmvSSPAmIm9B+hPamyXlXZvGtYXIyyoaFXFjISd7IcB3eXKAqwonVrD7LpUcAUjKp+Rno1eRB1DEM7YNg0AePrgiu/7pD4jZLzsOPQ1I07abBjnS8qMrA0+JyhNQ58hWdpOtzxZhNiDSmahT8Gebz92kJ2nxxcWAQCnb50CAGwcBCOLazJmRJ8ZCrpeZ26fwe3vugTnn7hB+XkshbNhoho5xTExuI5rIappAIcJYYyz+P1hBKyrkmqcJCATsC7l1PAMMMFIKLiYkY5edDtZq/Cbzi9VE5eAVWRGdB40GlCxCS6t0l666ETRjdAF2qMZSbmsF3Afj2w3HK1rbzhm5PH5JfzWl76HF486XYxdaRplb5pkqmkA4MztLBjxZ0bkAlYS4A2OQ7cstkJKe3Xtv2WQMSOBpb00iJKk7ToRU6IzDf00DeDcPzWfIKwuMCOnD4JHxowcW3PmrqZ2NZHXgXUYxpXt5qOU9TJEqaYBnEqeg4wZEZgF2t8rCLqao2EhMws0mpERAU1n6D6QAPUaUVfUxCZgbbAIngUjweOjgj7mzpd2bxogWn+adcqMCNU0jsV+isyIazesXoDCiBbDClj//DvP4y8ffBF/8cCLzvcSxkNkyqTVNDGfM86MBKZpWABJBazOWLrdvv5C1zCsSvpz6FbByEA7J/ONSKAdOglMJcyI4yIb7lw7TstuAasq6HaYEfW5Ys8IE9qfvm3AjEz2567jMmZEUzPTs50gcxjGjTXQiypeBRxGI4zPSP/3BGZEuIcaIXRdq1zAmmxAIPM8MpqREQE1Pgvj5uh4jaiZkZamKCwI0540TfD4SiWLT0aso2NaaRrWFwPo98UIC6oZWWvJNSNpMiN0spVZwg/lwKqZplkaXMODS04prR/jQVuNJ8WMOGmagGBEsssvk3uk3euBEk6BmpGKsztcH4IZoT5DujtqOrS4WDKA9KAaLCxBnakdZiRYM8Jw+tb+9ZqVaUY00100GGvGkP79mVfuwJtfuQPvecPpkT+jEaGaBiCakcEcrmZG9AWsyTMjEgFrjpmR/I0ox6hLBKw6ZYJOea8fMxKvz8jhEMwI0N/ltLqOriXunbEKlmWhWi6h1ekp+7n4wSVgbXfR69lcrKrqZJok+sdjoU1cJynaEUSLDeJxoQOmnaHBL2NppMGIxJwqds3I9v5O+/nDq2h3e8rjl6Vp2BjbA+bGrzJIRMXFjMTRm6arXZpJ7wW5mDla4Cd251adM4ZahGDkjAEzskFaTaNZTUSuDbt3hxGSz802cNs7L478+4ATAKyGrKYRNSOi3iOKgDVpzYhMwOr0pcmX+ypgmJFQkAtYg2+orRrlvS1NUVgQHM2IPjPSf9+A+h3sttJyYAWAOvMaiVDeu9Zyfse23RqSIPo6KVQkXWYZhvEZ0XVgXePBiBP8tn1Kisskt5wUM7JjtoHJWhmdno3nD68q36eqDKHn1K8ySAQ9zyyNF62012FGwixi7NzGJWYGvM3y2gG2ADxN4xeMkDFM1yvYNtPfQG2UMCPr2swICUba6QrjVWDByNJ6h/vu6DjyTnJmRBGMhHhG0zM9GwTiPW+axghYCw4qUtL1GQF0NSPxLJzcEKkVbhdIbeSB9ASsgOOOGiUYEStMqG4kizQN4BZNimhHqqZxmBG/8nAGJuSlwa9faaW7oVn8PiNAnyXQSdWoKkPoOQ3qAOv+Pedz2L0dTcDKRMT6dvCAoweRMiMRO2RPCcGItoDV556jz8hpW6e4rmiDtJomXGkv/Z2476uwYGxWGFNIAJisOxWHwHA+I+z5TNr0jPemkaRp/Gz3s4IJRkKgQUVsoZgR/869vZ4du+kZg27jPRbZL6csYAWG8xpZF8p5aUVNFmkawO36KSKaz0j/2ti2XIciggnkDruYEbU+gbYa1+35EgWM+tcJRmRpGsDbATbYZ8T782GZEd3SXoBawvuImUPen041zSAYCfgcHWaE/i4TrwLAhklWTRPdDh7IDzPCzsVxknbSmXOnhOCD9snpf26INE2I+2cYUAExK9k3zMiIoE6ZEU1FPQBsCWiWR0tah20rLd5k+sxI/31snk9zB1OrODv/sFhrq5mRZgY+I4Az4YrBVbdn8/Mbihkhk6WOiJWdk5WWo2/wK61kTpldV28a7eFpg5f3HlB7jajEmNQzgQV0qg6wFLJKlSgBv9NMMhwz4tcsL2qFieMzMkjTBLCq7Hj9ngN6Tph4FVClafQ0I5bl9O3KDTNSdTMj9UpJq0eLmJYRmZFwdvAd6WfGDTrHsJL4pRwLWE0wEgKNimxC0qimmfJP09BFeNhd/LQiYg+C+L60HFgBd5v3sBCDESkzknKahhptUdDji1JNA+gFbKuELWL3nF8Vj4sZSbBRok6apqVgRqpSXYtepZi4/kViRkh5dTPEsy/rD8LgeKWEFbC6HVhV54yBHa9fEEafERczQtI0bHety4wAIMFIus7OKrDUCGN6dO8FMfjwClid4oYgsDmrkZKAFXDuNe7AapiRYsMlYgvh5siYEVWzPLZrsKzh0yOiSjosM8KQappmMMZImhHh4acurH422UlC1i2z/39nQQrjLWFZVqjOvdSVlt1zbZ/KDSpgDbLtHgZnEOMzlfZFdc1oB1zdJnkMdIdYLlmRmDLKjIQRIFJ3WxHtEEEVBUvTrLT0BKxapb2KNA0r7e3Zzq5a12cEcO4j9jt5YUZYdZAuSyamZbwC1oHurduT6oMo0qqmofcVe664z4hhRooNKmILszti1TTHVtvS3T/VNgzb1lmVywyCGLSkKWCtDcGMMIaKzXFrLmakO/j8rNI07kmpE5EZAdylpX6wbdvFDrFeGn5pmkpZxozEv2icsmUSJau/oz8oYQmpHsTLjJBqmpBjpNe/ETEwpcEg34joCFhJ51oRHR8djx+4gHW9A9u2g31GquEFrAyNapnPIYtrbXTIYhummogzIylucmRo8GCk5fp/ELzMiDxNAwSnUnlpeEq9aYD+vWbbtuMzYpiRYoPmBXXt4IG+iyGbN49K2BHdXg86mInMjMgFg2lgmM697MHeNHCKpJqRrEp71WkafeGliLomDdzsuE3BmLeNv4C1P16bOGUmcf3rlTJO3tzv4PuUxImVBqMeZoSmaUKOkR5z1OZkblZUfyNSVgSmACKLhVmaptOz0ez0gtM0FY3S3sHPdm5oeBZa6jWyTp5RPc1MzjQjNbc2TnezJrIY3k2f838/Eatt21hlzFrCzAjV7LB7hd2HRjNScFDzKd1GeUD/Adw80I3IdoTcYySGSDkqMyJOLGkGI2wSjdKbhlHmrHw6D9U0vAzVk6ZxFtGwDJiuC+uqUF3EjM+c1IZMwJpeCaZfwzwajKgErJQZ0WXv6GIfNRhh57/bc3aXOjtbdm/7lvaGZUZIsLDc7PA2CkF28H4bE3YsrCcNxcYJxxK+SZg5neeKXaO8VNOI10x3syYGIxNV92LeT//1j82PveyX58vHkgSozw1t1CpWB+UBJhgJAWo+FUZRDxAXVkl5b5w9VCrlkisAicyMpJmmGcZnhAUjg/NLNSOtrDQjCtOzqKWcALQ1I2KzQCZg9dOMSM2pEqLTuW5EyoyoNTVVosMJq2uhgY1uqbsI+pyvhmgBr2N6FlafVSpZ3J58eb2D1qCNguq+esurduC1p27Cz124U/mZbzp3Dj93wU785k+d4fnZBlJRQ+cqHTfV3DEjip4yQRAtE8RNH6BnfEb1XGkEI0z43e3ZTsfeemUoJ9ykkL/wKMegzEgYRTkAbJ2p4fEFuSV8M4SBmg6m6xWst1lOVO8zxQcjC5+RsMxIb0A9AsBmxow0vcxI2qW9fOEUjidqLxLAnSbww5rAjLDg189gy82MMKFhMufsTJ+KGpoiEidL2swvbEls1aUZibYAyDYKYdIUMmbEafYX/lxP1StYaXX7zEhA0P3KnRvwpfe+3vfzts3U8Udvv0j6M8drpBVKvAoQzQhnRrKupnF/f1RmRExlAX1me6nZ8U3TMCa3Vi6lsuHrf0cX7a7N54Y8pmgAw4yEQr0qY0b0TqEfM8K1DTHdnPRm09WhiBNrmjsY5sDaDsmMULfDLYM0mIsZyai0l/dDERagjkKcqQNdAas3TSMIWH1KewHnnCVFp7MeNc9I0jR+wWOV+HWoRK4qVGJgRkoly3MfaZX2xmyAxzBNjM+STkdSZiRsf5+8VdOI85y+ZsS/tJd+lp8L66pmX6O4QBnFpRyX9QImGAkFZ0HohU/TTKs1I80Q6nwdUEpR9zO9pb3p3Rr1iMwIZQGYJselGRnQ15mV9qqYkQgTcr2ix4yIwQgLfts+Ykm6QKwnTKczQ639x9Y8KSVHiKm2rKd28NrMCNWMDNEVWwzsdT6LMjoi/HQ8QZgmxmdBAtZhIUvT6G5yRNOzUdGMyDQXOsZn6yHKwuMATRkvr+fX8AwwwUgoOFR5ODt4wN8SPi4reAZ6s+mX9mZXTcMm0bBde9fJxOhMzsRnpKNfghgngqpphvG5aAYwI2vt/oTDAjCWFmSlpbKFnqrumbguqeu/aarGWSyRHfHrJVQm6Y6w3W7d1TTR7wX6rNcqepqJqsJzBnAEzlHSdrRZXpAD67DgLqyr7dApZbYY5oUZERkJ3eOoV0quscuYDZ7G90nTrKbkMcIgE7DOGGak+KDMiG4bbQZmHrS03vb8TLfxlC7caZr8MyNR7eBpK3fGBq26BKz+/gtJgfuMiNU0Q2hG9AWs/eM/aeMEAODISgvdnk30CfLvFhf2JBcNlRMrrwqRpWlc1TThzqNLMzLEjpQ+n7p+JWXfDs7RDeZos7x2wvc504wcX3NKe3UZJo9mJGufkUo0ZsSyLEwO7p1q2Zuyo5/tK2ANyagPC8fnhniMGGak+OA0HGVGNG9mZtNOy6sYeJomrmCkEZ4ZyVIzErWahqfKKmW+08hDaW8QMxJl8dEVsLJg5MRN/WCkZ/f7cDiBkPxciGNKUmjIdCNiRQ0PHn2YEaoZ0RV+VmPwGQHcz6duzp9WM4gIY2svYoYYnyXtp+NK04RlRsr5qqYplSx3UBmCKWOde2Xi1f5nOeuDCmn1pWGgPZ2WTJpmdED7D4TVjDCb9uWm90aNezKZisSMiKW9WaRpQjIjxDyI5XCpgJWXIQ6hE4gCqm+g6PBUSYIC1kGwOztRxabBjvbwcossfPLrKi4S5QSvv8prRNWxt/+ak+4IG9S5fUbiSdPoPvdlBUsGEAFrhHNNm+W1fBilOEBNz8JqRkQBa9bVNIA7kNSdHwFHJ6IKJHQ696YtYHX6TvVy7b4KmGAkFNgDuNLq8Mldv06d+QJI0jQh+tzoIIpmRGR4wvROGRZRmZE14vfAdi20tNdPg5AkVJ1aOS0fKU2jyYwMgpXJatnVLTpoFy4yJklqhmiPGgq/YIRXKJHOwto+I+T6D/OMudM0mtUkZR9mpDuEgHWwoCxlJmDVraZxB9FZMyOAWzwaJjhlAYQqGKlrCFjD9DWKA5SlzXNfGsAEI6HAdkOLpJ227kPJbNpXfJiRPGlG0mRGovamcZTpJb5rWZWU9qatGQn0GYkQ6Ok6sNImXKwn0qHlZmCHWHGRKA3ZI8kPzGvkmUMrrkXaSaupy4+7vV54zUgpnjSNixnR3NmqDPAAImCNUtpLmBEmYJWlt+LAxkGrhUVS2qu7iHu79uYrGInCjIgGaAyOZsTHZyRlZkQmYDXMyAiAPYB0kxO266NcMxJvCepUFGbE05umAMwISZWx3cqKq7Q33iBPF06aRu4zEoVOr2so9QFKA1ecbtHLrUCjMK9mJLlFY+fGCdQrJbQ6Pew/usZf92VGyDnthDQLc/mMDHEvRBGwUppcRNjuwxTTEgFr0mmapWaHa7K0mZGyOxjJAzPSiMiMMPZVxWo4aZpgB9a0NCNOepNqRqp+v5IZTDASAuIDqFveBzjR6Eqrg55A2cbZKA9w03BFYEbY4tOMzIyUMcmqaZpeZiS7NE2MDqwhfUYma2VsnXKYkSAr+jQ1I+WSxTvD0lSNn30/rUrhLI92aW881TRRNCO0IzKFbdu+3i9BcKppukRzlsw1myU76YODLtChfUba+fAZAYbXjCiZEQ0B62rK1TQ0ZbxsTM9GB2IUHaYdOUvT2LZzQzKEzcMGwW16FpUZSb+aJqwDK9eM1Mq8V0er2+OLvrNjTFfA6qRpVJqRBH1GiFqfetsEGYWlyYwAjm6Edu9t+zmwcu1FeNOzmisYiYkZ0U5TyNM0ND0VJY3ImZH1NklvJXOfV8olvsFZWOwHI9rBmMeBNfslZ1jNiCrFouMzkjYzQg0Yuc+I0YwUH2KwECa6bVRLYHPnipCqaca8g6eRr26AQ98XpavsMIjam4Z5HkxUy65yO8YOZKUZqShM3Hg1TQoOrBM1R8B6eKUZ6HEiBkhJ0+lMN+IKRnQErL3wPiOVmDQj9BnRFSA6aRp5yg6Idq5laZok73Pmk3RgaR1AeGakM0RKKm40ImtGyq6/PZ8bolFelgJWw4yMAGibaCDcxGZZFp9AWO6OoRVzmma6Hj7yp8eSdl6XMyMR7eAb1RJqlRK/NiyvHXeQp4uqQifQGqqaRlPA2nZ2Xk4LAocZUVVJpekzAgBnzfWDkScPLPHX2j7pBlqVEl4zEldpb/h0j6o1QMfFjESvplkhaZqkBKyAoxs5MGBGwjqwMuRBM0KZjTD3AxPysr9F6NjBO3YE6QQEtLQ876Zn+RxVjtGolNHu9i9q2Iltul7B4nrHI2JlC0xszAgRKOmK2uixpN3lljMjEU3P2C5jslbB8bU2r1hK2gxKBSUzEmA85geepgk4R4x1m6xVSJqmyQMj1WLgraYJPcRQOGv7DADgyQPLsG0blmXxYE3OjDhVAWE1I64NxDClvVE0IwrTMxqcDFNNs7Te5qxgkuZ+GweeNQuLjBkJF4zx/+chGCFzXRhm5O2Xnoxmp4dfed3J0p+H8hlJ2YG1Q0zPjB38iCDKhMTg7GbkaZq4NCNbp2soWf2/ddMt9FjSplKrPE0TrjeNWLM/JbiwJl1loEJNwWJwEWkUB1aWptGsphFLex0Ba7BmJI003albJ1Gy+iwhE0X6de2tELq5HRBYiYjLDr5RicKMyD1naKA6TJpmpdVNJehmzMgKYSN14BFG5yAYiVpNs2NDAx98yzk4adOk9Od1DQHrejtlzciAmVprd/k6M5PTapp8hkg5RhTjI4aplNI0W6br+MzVlyjpRBmq5X4jqG7PTt0lcWg7eGZGJDTLy6qahu08xOvsNEaLzoz4TXSAmKbpMyPr7R4WB2Z7qtQGXSTSWDDqlTJO3TKFZw6t4MkDy9g+2wjQjBA7+JDpLldp7zAC1giLGB+3wo03auDHNjbdns37XSXJaDJmhEHf9CyPzEg0zUgQdNI0bKOUWjXN4N4/tup4Y03V0/nusDDMSEjQSSjsxEaNiijiTtMAwP9zzhxec/KmUL/Ddn5pCz6dYMR/oRWxJvQHEpmRrIKR2Ya8KWIQO+GHekhmZKJawVStzO/X+ePrvt9NA9C0FowzBxU1Ty70dSNtH18Yqr0I29OF6mRic2DVTtPImZFh3HgB8KZtgMOyJHmfMwErg76AVdSMZL/kRGVGAj+XNFJVgc1ZqfmMDM73sdV+t/iJajnSZigN5HNUOQadzEKnaYgCniJun5GoYMeTNpVaVWgsgiC6GU6S/jS9nj2UydgwYMzI4pr7OndSdmC1LAtbpvrsCCvJ1OlNk9b1d0Ss/Yoavy7LVHsRpH/x/K5LdB4PM6JdTaMq8w4QFAehVLI8QsQkNxEbxGAkJDOk+n8WcAtY02VGWOl9ar1pBvfE0UEwktdKGsAEI6ERRVHPoApGstrBi2DHk7aAtT5kmsYRsDr9aWiZcJJVBjKwXeSiwIy0e2qBZhB0Sntt2+asEDsXTDfCSjLLqq69ZCFLa+fEmZFBMNLu+AlYaWlvyN40iWhGopW2MrDAdBhzOZFuT1TAOuFO+eqmqPOoGXGnaWJkRjQ6a6fdm4Y9I0cHaZq8eowAJhgJjcYQNzKLStXMSLa5PLbbSXv3ErVrr9g5mbuwElEfkD4z4qRp5MxIlB1sQ6Oaptnp8VYFEzwY6TMj7QDxbCULZmRQUfM0C0Z0uvZ2e0QzopmmiViOL2KYahqxzDtsqkkGkRlJQ8DKEJkZyYHPiCsYiZUZYWkaP81Iyl17B8/I8dV8u68CJhgJjSgujAwqzQgXsMaYv4wCtttJO6c4fG+a/u9TzQj9rNSDkQmn7JJa/7eH8hnRN1QCnJQV8xphUJf2pq8ZOWPbNCwLOLzSwuHlpm+X5TLRXoRlRuiCH8Y1WUQ0zYiKGYmuH2LwpmlSDEZ0mZFy/piRRi1ZZsTvGU29mkZM0xhmZHTgEj+FZDIcC2eFgDVjYVEjM2ZkYBkd1vRM4jMCDModifuqbv+guMCYkZ7tbtznVFAk4zPC2gzUKyU+6bOKGgbVgpUFMzJRK+OkTRMA+k6sfo65bgFr2NLeeJiRaL1p+ue7K2hG2iFdZGWgu1zLSva5FatpdDdioiYmF5qRpNI0AV17290e35Ck5jPCBawDZsQEI6ODKBMSAy/tVaRp4lR2RwE7nrSpVOrAatv6ItZ1gfJkOfRVl0V2+ue0XinxwHKRBJ6OJiK6A2vfgVQ+2a023XoRwEnTMKiuLd3Bprl7ZbbwTx5YJgLWgNLeXrjzGJdmJM6uvZ0hmuQxTBEXz2q5lKg3TGRmxKMZyX7JYYFAvRLvOWuQ8nvZPLZGGJO0Bazs2TJpmhHCMGmaGYXpWdKNrnTBBawpTxj1wXHbtpfO9oMOM5KFKNiyLFeqhmEonxEy+avYEcfwzJlwtgppGtXONAtmBADOmuvrRp46sOybpqGmZ1Ht4Ktla6hjG4YZ8famcXxGooIuLEmzqhs8PiNFrqbpjz1urw+mP7FteZ8tlkYtWemx4OL5NgLWEcJQzEgtQMCaOTMySNOk7cBKepGEEbEyOpRdB86MtDpOX5qMUl8sVUPLe53dcHRmBAgORuiui5X2Mqh24nSRTnPBOJN072372MHTfj/hq2n67xtWIE6vge7O1jE9i6+DMwOl3JMOuqdrFVeLgCJrRtgzsWVK3xRSB3RzKkvVrJHNQlqNSMX7K8/MSH5HllPUXaZn0ezgaTDSIb02MvcZqWTjM0IDhlanBx3jWNu2iYBVYEaa6Vhk+8HxGnGYEd61N8ICVCpZqJVLaHV7Sq+RtbYkTTMjCFg17ODTpNLP4uW9S3jFgCWRBZC0RDZsB1gWgA2bBo2iFyur0jQ9tT5GFzQYSdqosFSyMDtR5dqDsA60qv9ngVO3TuEPf+lCnLplKtbPrZVLsKw+M9JsdwEhtbXacs9XaUA839M5tYIHTDASGi7Ts7ClvRIBq6sENeNghAVXaessyiWLP8QyelMGyg5MCK29V1sdtLNmRiReI8NU0wD9YLXV7SkFcrImXCIzokrBZVFNAwBnDIKRhcUmH6u8tNdJ03RDpjiSYEa0BZyk2zBFm6eahvEZcWtGksZGEozoa0ZKwv+zD0YA4OcvPDH2z7QsC41KGWvtrpwZSbmSBvDeF3lmRkyaJiTiMD2jmhFq7z2u1TSWZYXu3EvLWFlQKPMZySrAk3mNcJ+RiMyDU1EjZ0ZokzyGzVM1UEZYFQhVMxKwzjaq2DHbANBnR8SxMLBx04oEXQaHTcixMiOaCwobo+gu3B3SgRVwd19N4z6nItYi+4wkCSpiFbGWcsdewHu+jWZkhDCUHXzDEVgy/4lW19nlZd0zICsHViC81wh72Ktl57xxB9aMBayA4zXiTtMMFqBKVGbEvz/NmkTAWi5Z2EzyXjp28GkHo8wWnmtGpD4jDsPQDZmmYeXDpwxJy0/XK9g4WcWWqZqrksUPFSUzMnxpLx1DGhsZ2p9G9/vyWE2TJPy8RrjgPkVmxJumyW8wkt+R5RRuZiRamgbo+0/MNKp8Yck6RQNkpxkBnMlNtz/NmiT/yoKRlWaHVChlpRmRpWmi+4wAwV4jKnfHLdM1HF7pmx6pAt6sqmmAvoj1H548xP8vu2ZVUpUSVsB61twMvvH+f4KdGxtDjbNWKeGr//onULL0q3LYGEVhdieGNM10yswI6wJeq5S0vXtElisPmpEk4QQj3meUtWpIlRkR5hqTphkhNIZgRuqVEn8YmYi11XWMqrLG5kEZqOgpkAbCMiOyHg9sp0jTNFmwPAAwK2mWN6zrptOfRpWm6X/XlBCMUK8RNTNCNCMpU+msooZB7sDqLOq8r0uIhe3sHTM8QBwGJ22axM6NE9rvp4wOxTBiZoaZlDUjGwZsX5i5Kq+akaTAzo2MGUnbfRXwPsuGGRkhuKppQgYQlmVhql7B8bV2X8S6wYmg88CM/MJFJ6LT7eHN5+9I/bvZZKorYF2XUJ6Tg9LeFVram1maZqAZaVKfkeGMrpyJLogZcT/W1IVVFWhkVU0DOD1qGOSlvcT0bYiGg2mDMjoUYdkdGaZSrKYBnGZ5YYTAeaymSRJ+aRpeTZOhgHUmx8xIfkeWUwzDjAD9yPT4WpszI3lpkgf0x3bN5adl8t2hNSPMY6TiZUZs29FqZC1gpcwIq/AZppoGCCdgBdx+CnnzGQGc8l4GfwGroxkpwi5bWdrr46miC3eaJvn5gzGmYdLTeezamyQcAatPNU2mpb35XfLzv7XIGYbpTQOQ8l6WpuHByHhfChkzYts23v3Z7+Ltn/6Oq+EcQDQjZOGlKZvjGQcj3GdkPR6fEcApvVYLWL0+IwCwbSY4TZOlZmTTVM3lFCvTjFR4usNJ0xRhl80ZHbE3TYRUkwiX6VkKzAgLRsLMVeI1Gv1gxEfAmnLHXkCSpskxMxJpVrz11ltx6qmnotFo4LLLLsP999+vfO/tt9+ON7zhDdi0aRM2bdqEPXv2+L4/76gPIWAFSEUNZ0YGTfLGPBjh/WnIjmJxrYO9jx3Avc8cxoGlpuv9jmbEOW+lksUXYuaHkLnPCK2mGcKBFXBKmEMLWCkzotGbJotF/oxtDjsi7U1D7eB7w7uXpgWudenJS3uHapSXtmZkkgUj+ovp2DEjvOItJ8EIYUJr5VIuGHgVQt/BX/ziF3H99dfjpptuwkMPPYQLLrgAV1xxBQ4cOCB9/9133423v/3t+OY3v4l7770Xu3btws/8zM9g//79Qw8+C1A2JKwDK+BMIMx/wjAjfdQlzMiBpXX+78MrqmDEfQ1YWStrmZ21HTz1GRmmNw1AmBGlA6siTeMSsMq/m/pdZLFgsPJeQF7ay6tSeo5jcSGYEUVpbycGn5HJWpl7yKSxmXndaVtw0ckb8S8vOUn7d8Rga5jGgEUAT9PIqmkUc1aSoOc/z6wIECEYueWWW/Ce97wH11xzDc477zzcdtttmJycxB133CF9/+c+9zn85m/+Ji688EKcc845+MxnPoNer4e9e/cOPfgsMExpL+A1PstaaJkXMO8NWgJ5kLAhR1farvc3297SXsDpT8OZkax9RtbbvIPn8NU0mgLWqnvSoSkQJTOSoWYEcItYpWkasqjHkeJIC7QKiCIOnxHLsjA9CL7TYkb+6jcvx78KoSsbt2oavzTNukLTlSTofZFnvQgQMhhptVp48MEHsWfPHucDSiXs2bMH9957r9ZnrK6uot1uY/PmzeFGmhMwmsuK2HlR1IzkScCaJdi5pCkImprRZUbY/4+t9ZmRrCouWBlpu2vz4KE9ZNv4qAJWWtqr2olXXA6s6Z8zKmKVa0YcHxqnmib/C1uFVAFRDJuyY2AVNXndzFTHtZpG8ozK2jUkDXq+8x6MhBrdoUOH0O12MTc353p9bm4Ojz32mNZn/M7v/A527tzpCmhENJtNNJvO4rO4uBhmmIlix4YGTt86hRM2NiJ1XpziwUj/xjRpmj5Y0KBiRo4MTLsY1lqDapqayIwM0jQr2TIjU7UyShbQs/vsyEStzAWstWEdWBWaESZgZewQw9bpOl/gVTbeZZeANdLwhsKZJE0ju2Z0UmW6oiK4ebIgz9O1Nybdy3SjAixm30pCBY9mpAAB5DCo+6RpHAfW9IICFzOS8zRNqqP7xCc+gS984Qu4++670Wio3RBvvvlmfPSjH01xZPqoVUq46/o3ImqA73Tu7S+WRsDah6y0l2pGjorBiFIzwtI0Ldfnpg3LcrqcLq23MTfbILvhaGNiaUFVNc2KIk0zUSvjT37lNejZ6nL0LH1GAGD7TAPX/dSZsGFLBX6UuWFlk0XYZbMxekt7h0/TAE7wnVeWyKsZyec44wLTFPpW06TIjNBgMM99aYCQwcjWrVtRLpexsLDgen1hYQE7dvgbZf3n//yf8YlPfAJ/+7d/i1e/+tW+773hhhtw/fXX8/8vLi5i165dYYaaKIYrx+vfiKxzr0nT9CELRg660jTuYGSda0bcCyfzGmELc5aM02yjH4wcH3iNDKsTCHJgXfPJSb/p3DnPaxRZde2l+K0rzlb+jO7w2HEWoekaYz56NtDr2dxGPQ4BK+AsMHndzIyvZiQvXXtHVMBaq9Vw8cUXu8SnTIy6e/du5e/9p//0n/B7v/d7uPPOO3HJJZcEfk+9Xsfs7Kzrz6hgut7XEohpmrxOJmmhJknTHPBJ06yrmBEhRZHljlH0GhnWOdSPArZtm9vBR5nssvQZ0QEdE8vHF2GXTcdNXVjjEuGylFxe3Wi9Dqz5HGdc8Ovay3vTZFTaO1KaEQC4/vrrcfXVV+OSSy7BpZdeik996lNYWVnBNddcAwB417vehRNPPBE333wzAOA//sf/iBtvvBGf//znceqpp2J+fh4AMD09jenpaeX3jCrY5CGmacZdMxKWGVlTVdMI+dgsc+mOC2sbPdptNuIC5CdgbXZ6YGtdlMku62qaINAxDYqTiqEZIeOmItZuTCLcTYPmdbpdhNOGGGzl8NaKFcwY7vhq2/Mztokwpb1yhB7dVVddhYMHD+LGG2/E/Pw8LrzwQtx5551c1PrCCy+gRCaJP/mTP0Gr1cIv/uIvuj7npptuwr/7d/9uuNEXEDPc9EwQsEYoEx4lOA6szoR9wFXaKwpY5QZCIjOShk22Cqy8d2m9wz1GgCF8RnwErOx8AI7XShi4mJEcpj+sQadcuqDnMWgSQReDdq+HCfSvIa+sGjJY/rU3nIaJWhk/f9HOoT4nKVSEIDeK6L9IYG7HBwWTRgBDMZdRQRmzkdKMMFx33XW47rrrpD+7++67Xf9/7rnnonzFyMJJ0wiakZzSrGlBZEbW211u6Q5IqmkYM1IJYEYy1owA/TQNraaIuhvmAlZJMMIMlWqVUiTqny6KeV3kK2IwksOgSQSlyaklPBO0Dnuuz9w+g5uufOVQn5EkyjlP/8UNHowse4MRFZubJOg5z3uaZrxXwAzgpGkGwUibMSNjLmAVNCOHhIf56GrL1Z+GnTcPM1LLk2bEaZZHg5HoPiN+VtPD7bqyrqbRgaiLKMLiVi5Z3CWVsmNx+YzkHdUCBLlxYtvA0+fISsulf+v1HL+hVJkRqhkZzEd5RT5nnRHGDGNGmB181/iMAF5mhKVotg92Gj0bLqZEVdo7JUT/mVbT8DRN27UQDe3AKmNGWCVNxKA275oRwBt8DFuJkhacJn8SZmTEGdFxY0Y2Tdb4cR5edthcKmjNqlGeYUYMXGDMyFq7i27PNj4jA9SE3jQs57pz4wRmBzobKmJVUZ7iriMfaRqHGSkPkTevc58RLzPCNEiTESecvFfTAN4gLo/aFhkYE0bZsWFbAxQFLs3IiAdeQL9ZJ2tMSXUjq0TTFaXbe1TQYGQm5wLW0b87cgaqaF5udowD6wBsUmbBCGNGts3UsXnwcFPdCBNsij4jonizVs5SwOpU0zDKdpjFh6VpWjIBa3u4NE0RmBExvZXXcYpwjM9IaW+PBaej/dyPGzMCUN2IY9pI56tSiuehWqDS3tF+EnKIeqXMF6TlZsc0yhugJiy0B0maxglGnJ0GY5REynMqV5oRx2ckDpMrXwHrkO6O7t40+Vw0itqOnjE4XZKqY/8efWZkvDQjgBOMHFryMrlRKt2GQYlolvJe2jveK2BGoJ17uYB1zB1Y2aTc5mma/q5i+0wDm6eYKIxoRhSLr5imyEOaZmm9E4v9t58Dq6pJni7y4MAaBHHhLo5mxGnyxzBs08SioFyAIDduMBErrajJwgqe4eTNk5iqlTE3q27BkgfkO1QaUUzVKzi62sbSegdNI2AF4BWwHiRpmi0CM2LbtlrAmifNyEDA2k/TDO8rwQWsMqvp1nA7L7fPSD7vRbqYWRZSpbuHgVTAGlNvmrxD9BkZB8i8RlYVvkhp4H/9xuux1urmPk2T79GNKNzMiBGwAs5CK6um2TQIRpiAtdV13EbFkmiRGcm6Nw3QT9NwzcgQEzIXsPq1J49a2lvO/6JR1DJR3rnXVU0zHqW9Y60ZIcGIqn1FGtg6YGryjvFeATPCDO/c2yGlveOepnH7jMiZkX4wQpmBIGYky54dLBhZb/d4sDAcM+K4d9JdNhCzz0hOXTLdAVNxpi4uYO1KfEZyykLFBTczMtrHypA3ZqQoGI+7I2dgXhjLRDMy7sxIreKIM3s92xGwznqradguo1yyPDoCTzVNhueVCsaOrvbHPgwtTyuHxIqaYSc7qhnJ6w62CLoWGVjA0ZH4jAzDlBUBzMYfyO99FTekmpEMmZGiYLxXwIzA0jTL6041zbhrRigzcnS1xSfuLVPeYISKwUTPjlql5ApQsmyUVy5ZvB8ESzENI7qkxyKmapgdfNSGaW4/iHwuGlWXriWfY5TBYUb697Rt23jpWF+gvaUgFPowYEFIXu+ruCFjRoZlLscB470CZgSqGWmZrr0AiIC12+M7is1TNdQqJW8w0pZ7jDBQdqSa8XllKbkjy8MzI5VyiS9sYnnvajM+n5G87mDLBaX82bgZG/Li0TUsNzuoli2cvm0qy6GlgsqYMSNbB8HIcrPDN06GGQlGcZ7oEcI0TdMYnxEApDdNx8aBxYFeZLBrpMEIraRRNZyiC3KWzAjgGJ85aZrhxuNU1AjMyLAC1gJUPRRXwOp2YH1sfglAv8ldlpqmtMCZkQJds2EwU6/w55T12DKakWCM/pOQQzDNyJIRsHK4mBGiFwGALdP9YKTZ6QtBg5TpuQpGBiJWlqapDUlVs+ohkRlxTJXiYEbyOS0UwZhNBtGB9bGXFwEA5+6YyWxMaWLcmBHLsniqhlUFGmYkGPmcdUYcjLo/ttqCPdC0GWbEKe3lVvADZmSiWuY7jSMrLScYUSy8LNirlq3MvSiY1wjzSBk2vdBgQt+2QsBajaoZyT/rQMdVJOdS0WeEMSNnj0kwwoLbIqXWhoWoG1kb0pRwHDA+d0eOwNI0tKvjuGtGqhJmZNuAGbEsp/nU4ZUW1lr9hVjVcIo98HmgwGcYMxKDZgSgzIg8TRO5tLcArEOlABU/Mjg+I/379rH5PjNyzgmzmY0pTYwbMwJ4K2p4bxoTjCiR/Ww9hmA7d9r4bdyDETcz0q802EYqDTYPUjVHV1qOZkTFjAwErHlgm1jHYXathw2Q6qQEmmJYtX4hGuUV1GekTLr2rre7ePbQCoAxStOUx0szAniZEVbtNmnSNEoU54keIUwLC1StXIrcVn5UQLUdLx8f9KUhvRQ2TTrMiKMZUVTTDIK9rPUigETAOuSEnIaANa872CKUH8tQJdU0Ty4so2f3RdlswRp1jCUzokjTGAGrGsYOPgOwNA1boMadFQHcLMb+o2sA3MwI7U9TGgRuKjEYc2HNBzPSD0ZYb5rhmRGFgHXI3jTlAiz0lYJW05SJgPXHgxTN2XMzY7MBGTefEcAvGDFLrgrZz9ZjCBaMOP1VzGWggcMC69g7S9I0pHMvz78qq2nyw4zMCG27h9eMePvT2LaNlUGaRrTD14XbKTP78yZDEdgbGaqktPfxgXj1nBPGI0UDOCm1vN5XSUDUjKyaappAjM/dkSOI3RPzsGhmjXLJAltfWIURpbFZee+RlWagz8hUPUfMyCBNwzCs1oEFN1T83Ow4jQOHoYHz7gfh0owU6JmhzAgTr567YzzEq0D+76skwIzPDg2YkXVTTROI4jzRIwQxGBE7z44raPDQqJa4lTrgaEb6pb39FIVq4Z3IYZqGYdiS1DO393fUTyws8dcYUwRET9MA+c/tF6H8WAYWRHV7PTz28hgyI+V831dJgDIjtm1jtd1nLlUbKAMTjGSCKcOMSEH1FNtnGq6c+mZa2htAeU7lKE3DfEYYhk3TnDOowGB0P+BQwLVKaagJP+8NzYqapmHjfvn4Og6vtGBZwFnbxycYGUdmhLG6rU4Pi+sdbkdgmBE1sp+txxC1Ssm1azeakT6okFesNNhCSnvXA3vT5M9nhGHYMTGjrCcWltEb5GbiasL1M+ftwNlzMzhly+RQn5MUaGomD9dWF0wr8cP9/RTNaVumxqqqIu+MWxJoVMs8pXpwqcmfUaMZUcNIezPCTL2Cwx1TTUNRczEj7mDExYy0/JmRy8/cinNPmMXbLtqZ0Ej1MSsIWIddRE/ZPIlapYS1dhcvHFnFqVunHMOzISe6T/7LC2Dbdm6rPIrKjLDU3A9fOg5gvFI0gJNeGydmBOhvqJbWOziwtD50u4ZxgFkFMwJN1eRB25AHVH2Ykc0DzcjSegdLzTYAdf5158YJ/M373oCrXntyQiPVh8iMDDshV8olnLV9GoBjKx5nE668BiKAaHqW33GKYIHTyuA6nTNG4lWAakbGa55jupH9R9e4wNw4sKoxXndHjkBFrOPeJI/BjxnZMFHlk/pLx/qlv0WgumuVkovBiaMK5GxBNzKsx0hR4OraW6A0jciGjUtPGoZx9BkBnA3VviOr/DWTplGjOE/0iIEGI3kQWuYBdNIWmZFSycKmyT7LsP9Y3xRN1Zsmb6BeI9UYdvRcxLrQ1yAM25emKCiCZb0MYkppnMp6gfHUjADOHPbCIBiplq1CaZ3ShjkzGWGaLFBGwNoHTVdtn2l4fs7Ke1sd/9LevIF6jcTDjPQXM5amWYlJwJp3FFUzQsc9VSvjpE0TGY4mfYxjNQ3gDUYMK+IPswpmhClXmsZcBsDNEMn6djARK0NRavapiHVYnxHAYUaeO7SC9XZ3LNM0cZzHtED9Uc7eMYPSmC3KjgPreB331mkhGBnxzcKwMKtgRpg2AlYP3MyINxhh5b0MRdlpuJiRGCbk7TN1bJysomcDTx1YjlXAmmeUi8qMkMDp7DFL0QCGGTk0cEse9c3CsDCrYEaYrjsLhxGw9sGCEcvysiCAjBkpxu1LK2riSNNYloWz5/rsyGPzS7H5jOQdVVc1TTGuPeBehM8ds7JewDn+cWOEaKNPoDhMblYozhM9YpiuOwuUYUb6YIvNlqm6dNFm5b0MRWEC4k7TANSJdXGMmJFi2sFTFmfcynoB4J+8Yhu2TNVw2Wmbsx5KqhDZ3VHfLAwLwxtlBJeA1QQjAIDagCGS6UUALzNSxDRNXGp6KmLdtbnvmDpZHe3HmQZy5QJpRug1H7eyXgB420Un4ucv3JlrD5sksHmqBstyGn8WZb7KCmYVzAgmTeMFW2xkehEA2FxQ2nM25jQN4PYaWRuT0t6iNspjzMjODQ1sELo4jwvGLRAB+s/6FrKBGnXmcliYYCQjmDSNF4whUjIjJE1jWcVhlOL2GQGcYOTAUpP7roz6ZOf2GSnGtQeAjQN/nFeftDHbgRikjq1kA2WYEX8U54keMUy5mBFzGQBH6Llzo9yHgaZpGpVyYXZbcfuMAP1qLOZX8f0XjwFw31OjiGpB7eB/+rw5/Kd//mp85Mrzsh6KQcqgG6tRZy6HxWgnmXOMGaMZ8eBdu09BrVzCr7xO3lOGlvYWiQWgAtY4LbHP2TGDF4+uYb09MIEbcc2Iq7S3QJqReqWMf/naXVkPwyAD0GCkKGnlrGBWwYxgGuV5cdKmSfzWFWdL3VcBx4EVKBbl6RKwxpheEMWQo77zcpmeFShNYzC+oOW9o/58DgvzRGcE0ygvPGqVEmYG561IFvpJMSOigdaoT3ZFtYM3GF9QZqRIG6gsUJwZfcQwbezgI2HzIFVTpAebVtPEaWN+jsCMFCl1FQU0kBu3DrAGxYQrGBnx53NYmFUwI5jeNNHARKyFCkZcdvDxXevTtk65gptRt5um584wIwZFAE3TmGDEH2YVzAjVconbmRcp5ZA1WHlvkR7seqXEmwDGuaOvlks4Y9s0///Ip2nIuTOaEYMiwFTT6MM80RmClbIazYg+GDNSpHNmWRZO2jQBy3L7DsQBmqopUoAWBYYZMSgajGZEH6PN6+Yc/+ZNZ+GRF47h3BPGr19FVHDNSMEW3tuvvgQLi+uYm5VXCkVFX8T6EgBgcsQnO6MZMSgaNkxUUS1baHdtTIx4GnVYmLOTId75ulPwztedkvUwCoWztveZAGb4VRScsW3alVKJC4wZqVVKsRmq5RWVgjqwGowvLMvC9pkG9h9bc7UAMfDCBCMGhcLbLtyJkzdP4tUnbch6KLnAq0/agIlqGadsmcx6KImDBlsmTWNQFHzgp1+B7zxz2LQDCIAJRgwKhUq5hEvHrBW5H7ZM17H3//dGV3XWqKJaKqYdvMF44xcvPgm/ePFJWQ8j9xj9GczAYMSh6uUzanA1yjOaEQODkYJJvBoYGBQCNE1jNCMGBqMF80QbGBgUAtTgzWhGDAxGCyYYMTAwKARoABKnrb6BgUH2MMGIgYFBIVA1pmcGBiMLE4wYGBgUAqWSBWsQgxjNiIHBaME80QYGBoUBY0dMNY2BwWjBBCMGBgaFAQtCjM+IgcFowQQjBgYGhcHGiX5zydnB3wYGBqMBY3pmYGBQGPzR2y/CfAINBw0MDLJFJGbk1ltvxamnnopGo4HLLrsM999/v+/7v/SlL+Gcc85Bo9HAq171Knz961+PNFgDA4PxxiWnbsY/ffXOrIdhYGAQM0IHI1/84hdx/fXX46abbsJDDz2ECy64AFdccQUOHDggff+3v/1tvP3tb8e73/1uPPzww3jb296Gt73tbXj00UeHHryBgYGBgYFB8WHZtm2H+YXLLrsMr33ta/Ff/+t/BQD0ej3s2rUL//pf/2t88IMf9Lz/qquuwsrKCr761a/y1173utfhwgsvxG233ab1nYuLi9iwYQOOHz+O2dnZMMM1MDAwMDAwyAi663coZqTVauHBBx/Enj17nA8olbBnzx7ce++90t+59957Xe8HgCuuuEL5fgBoNptYXFx0/TEwMDAwMDAYTYQKRg4dOoRut4u5uTnX63Nzc5ifn5f+zvz8fKj3A8DNN9+MDRs28D+7du0KM0wDAwMDAwODAiGXpb033HADjh8/zv/s27cv6yEZGBgYGBgYJIRQpb1bt25FuVzGwsKC6/WFhQXs2LFD+js7duwI9X4AqNfrqNfrYYZmYGBgYGBgUFCEYkZqtRouvvhi7N27l7/W6/Wwd+9e7N69W/o7u3fvdr0fAO666y7l+w0MDAwMDAzGC6FNz66//npcffXVuOSSS3DppZfiU5/6FFZWVnDNNdcAAN71rnfhxBNPxM033wwAeN/73oc3vvGN+OQnP4m3vvWt+MIXvoAHHngAn/70p+M9EgMDAwMDA4NCInQwctVVV+HgwYO48cYbMT8/jwsvvBB33nknF6m+8MILKJGOmq9//evx+c9/Hr/7u7+LD33oQzjrrLPwla98Beeff358R2FgYGBgYGBQWIT2GckCxmfEwMDAwMCgeEjEZ8TAwMDAwMDAIG6YYMTAwMDAwMAgU5hgxMDAwMDAwCBThBawZgEmazG28AYGBgYGBsUBW7eD5KmFCEaWlpYAwNjCGxgYGBgYFBBLS0vYsGGD8ueFqKbp9Xp46aWXMDMzA8uyYvvcxcVF7Nq1C/v27TNVOgnDnOv0YM51ujDnOz2Yc50e4jrXtm1jaWkJO3fudNl+iCgEM1IqlXDSSScl9vmzs7Pmxk4J5lynB3Ou04U53+nBnOv0EMe59mNEGIyA1cDAwMDAwCBTmGDEwMDAwMDAIFOMdTBSr9dx0003mQ7BKcCc6/RgznW6MOc7PZhznR7SPteFELAaGBgYGBgYjC7GmhkxMDAwMDAwyB4mGDEwMDAwMDDIFCYYMTAwMDAwMMgUJhgxMDAwMDAwyBRjHYzceuutOPXUU9FoNHDZZZfh/vvvz3pIhcfNN9+M1772tZiZmcH27dvxtre9DY8//rjrPevr67j22muxZcsWTE9P45//83+OhYWFjEY8GvjEJz4By7Lw/ve/n79mznO82L9/P37lV34FW7ZswcTEBF71qlfhgQce4D+3bRs33ngjTjjhBExMTGDPnj148sknMxxxMdHtdvGRj3wEp512GiYmJnDGGWfg937v91y9Tcy5joa///u/x5VXXomdO3fCsix85Stfcf1c57weOXIE73jHOzA7O4uNGzfi3e9+N5aXl4cfnD2m+MIXvmDXajX7jjvusH/4wx/a73nPe+yNGzfaCwsLWQ+t0LjiiivsP/uzP7MfffRR+5FHHrF/9md/1j755JPt5eVl/p73vve99q5du+y9e/faDzzwgP26173Ofv3rX5/hqIuN+++/3z711FPtV7/61fb73vc+/ro5z/HhyJEj9imnnGL/q3/1r+z77rvPfuaZZ+xvfOMb9lNPPcXf84lPfMLesGGD/ZWvfMX+3ve+Z//cz/2cfdppp9lra2sZjrx4+NjHPmZv2bLF/upXv2o/++yz9pe+9CV7enra/sM//EP+HnOuo+HrX/+6/eEPf9j+8pe/bAOw/+qv/sr1c53z+uY3v9m+4IIL7O985zv2P/zDP9hnnnmm/fa3v33osY1tMHLppZfa1157Lf9/t9u1d+7cad98880Zjmr0cODAARuA/a1vfcu2bds+duyYXa1W7S996Uv8PT/+8Y9tAPa9996b1TALi6WlJfuss86y77rrLvuNb3wjD0bMeY4Xv/M7v2P/xE/8hPLnvV7P3rFjh/37v//7/LVjx47Z9Xrd/p//83+mMcSRwVvf+lb7V3/1V12v/bN/9s/sd7zjHbZtm3MdF8RgROe8/uhHP7IB2N/97nf5e/7mb/7GtizL3r9//1DjGcs0TavVwoMPPog9e/bw10qlEvbs2YN77703w5GNHo4fPw4A2Lx5MwDgwQcfRLvddp37c845ByeffLI59xFw7bXX4q1vfavrfALmPMeNv/7rv8Yll1yCf/Ev/gW2b9+Oiy66CLfffjv/+bPPPov5+XnX+d6wYQMuu+wyc75D4vWvfz327t2LJ554AgDwve99D/fccw/e8pa3ADDnOinonNd7770XGzduxCWXXMLfs2fPHpRKJdx3331DfX8hGuXFjUOHDqHb7WJubs71+tzcHB577LGMRjV66PV6eP/734/LL78c559/PgBgfn4etVoNGzdudL13bm4O8/PzGYyyuPjCF76Ahx56CN/97nc9PzPnOV4888wz+JM/+RNcf/31+NCHPoTvfve7+Df/5t+gVqvh6quv5udUNqeY8x0OH/zgB7G4uIhzzjkH5XIZ3W4XH/vYx/COd7wDAMy5Tgg653V+fh7bt293/bxSqWDz5s1Dn/uxDEYM0sG1116LRx99FPfcc0/WQxk57Nu3D+973/tw1113odFoZD2ckUev18Mll1yCj3/84wCAiy66CI8++ihuu+02XH311RmPbrTwF3/xF/jc5z6Hz3/+83jlK1+JRx55BO9///uxc+dOc65HGGOZptm6dSvK5bKnsmBhYQE7duzIaFSjheuuuw5f/epX8c1vfhMnnXQSf33Hjh1otVo4duyY6/3m3IfDgw8+iAMHDuA1r3kNKpUKKpUKvvWtb+GP/uiPUKlUMDc3Z85zjDjhhBNw3nnnuV4799xz8cILLwAAP6dmThke//bf/lt88IMfxC/90i/hVa96Fd75znfiAx/4AG6++WYA5lwnBZ3zumPHDhw4cMD1806ngyNHjgx97scyGKnVarj44ouxd+9e/lqv18PevXuxe/fuDEdWfNi2jeuuuw5/9Vd/hb/7u7/Daaed5vr5xRdfjGq16jr3jz/+OF544QVz7kPgTW96E37wgx/gkUce4X8uueQSvOMd7+D/Nuc5Plx++eWeEvUnnngCp5xyCgDgtNNOw44dO1zne3FxEffdd5853yGxurqKUsm9NJXLZfR6PQDmXCcFnfO6e/duHDt2DA8++CB/z9/93d+h1+vhsssuG24AQ8lfC4wvfOELdr1etz/72c/aP/rRj+xf//Vftzdu3GjPz89nPbRC4zd+4zfsDRs22Hfffbf98ssv8z+rq6v8Pe9973vtk08+2f67v/s7+4EHHrB3795t7969O8NRjwZoNY1tm/McJ+6//367UqnYH/vYx+wnn3zS/tznPmdPTk7af/7nf87f84lPfMLeuHGj/b//9/+2v//979s///M/b8pNI+Dqq6+2TzzxRF7a++Uvf9neunWr/du//dv8PeZcR8PS0pL98MMP2w8//LANwL7lllvshx9+2H7++edt29Y7r29+85vtiy66yL7vvvvse+65xz7rrLNMae+w+C//5b/YJ598sl2r1exLL73U/s53vpP1kAoPANI/f/Znf8bfs7a2Zv/mb/6mvWnTJntyctL+hV/4Bfvll1/ObtAjAjEYMec5Xvyf//N/7PPPP9+u1+v2OeecY3/60592/bzX69kf+chH7Lm5Obter9tvetOb7Mcffzyj0RYXi4uL9vve9z775JNPthuNhn366afbH/7wh+1ms8nfY851NHzzm9+Uzs9XX321bdt65/Xw4cP229/+dnt6etqenZ21r7nmGntpaWnosVm2TWztDAwMDAwMDAxSxlhqRgwMDAwMDAzyAxOMGBgYGBgYGGQKE4wYGBgYGBgYZAoTjBgYGBgYGBhkChOMGBgYGBgYGGQKE4wYGBgYGBgYZAoTjBgYGBgYGBhkChOMGBgYGBgYGGQKE4wYGBgYGBgYZAoTjBgYGBgYGBhkChOMGBgYGBgYGGQKE4wYGBgYGBgYZIr/D/sjWBknlQ4bAAAAAElFTkSuQmCC", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "_ = plt.plot(range(len(xx)), xx)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "97517e96-f625-4f72-b708-bb6607b9712a", - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.12.12" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/doc/contents/tutorials/tutorial_aux.rst b/doc/contents/tutorials/tutorial_aux.rst deleted file mode 100644 index 699cfe2..0000000 --- a/doc/contents/tutorials/tutorial_aux.rst +++ /dev/null @@ -1,10 +0,0 @@ -Tutorials for the Auxiliary Module -################################## - -Several tutorials are available for preparing data and performing calculations. - -.. toctree:: - :maxdepth: 1 - :caption: Contents: - - test diff --git a/doc/contents/tutorials/tutorial_gmm.rst b/doc/contents/tutorials/tutorial_gmm.rst deleted file mode 100644 index a94bc47..0000000 --- a/doc/contents/tutorials/tutorial_gmm.rst +++ /dev/null @@ -1,13 +0,0 @@ -Tutorials for the Ground-Motion Module -###################################### - -Several tutorials are available for preparing data and performing calculations. - -.. toctree:: - :maxdepth: 2 - :caption: Contents: - - tutorials_aux - tutorials_src - tutorials_gmm - tutorials_sit diff --git a/doc/contents/tutorials/tutorial_sit.rst b/doc/contents/tutorials/tutorial_sit.rst deleted file mode 100644 index abb3b8d..0000000 --- a/doc/contents/tutorials/tutorial_sit.rst +++ /dev/null @@ -1,13 +0,0 @@ -Tutorials for the Site Response Module -###################################### - -Several tutorials are available for preparing data and performing calculations. - -.. toctree:: - :maxdepth: 2 - :caption: Contents: - - tutorials_aux - tutorials_src - tutorials_gmm - tutorials_sit diff --git a/doc/contents/tutorials/tutorial_src.rst b/doc/contents/tutorials/tutorial_src.rst deleted file mode 100644 index 2bf410d..0000000 --- a/doc/contents/tutorials/tutorial_src.rst +++ /dev/null @@ -1,13 +0,0 @@ -Tutorials for the Seismic Source Module -####################################### - -Several tutorials are available for preparing data and performing calculations. - -.. toctree:: - :maxdepth: 2 - :caption: Contents: - - tutorials_aux - tutorials_src - tutorials_gmm - tutorials_sit diff --git a/doc/index.rst b/doc/index.rst index 75e521b..ba96c5e 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -1,9 +1,10 @@ Welcome to the QuakeT documentation! ==================================== -**QuakeT** is an initiative of the SIGMA3 project, jointly conducted by the *Électricité de France (EDF)* and the *GEM Foundation*. -Its goal is to collect a set of tools for building components of a probabilistic seismic hazard model, -generating synthetic datasets, and checking the compatibility between observations and models. +**QuakeT** is an initiative of the SIGMA3 project, jointly conducted by the *Électricité de +France (EDF)* and the *GEM Foundation*. Its goal is to collect a set of tools for building +components of a probabilistic seismic hazard model, generating synthetic datasets, +and checking the compatibility between observations and models. QuakeT code is hosted on github at the following link: https://github.com/GEMScienceTools/quakeT. @@ -13,8 +14,7 @@ the open-source hazard and risk calculation engine developed primarily by the GE Currently the QuakeT includes five sub-modules: -* **Auxiliary module** contains tools preparing the input to MCQsim and post-processing the output; - contents/tutorial/test.ipynb +* **Auxiliary module** contains corollary functions that support the capabilities of the platform’s core modules; * **Seismic source module** will contain codes for evaluating models related to seismic sources; @@ -22,19 +22,17 @@ Currently the QuakeT includes five sub-modules: * **Site and site-effects module** will be developed for modelling the site response; -* **Case study module** will showcase the use of the tools developed within each module in a real case application; +* **Tutorials** will showcase the use of the tools developed within each module in sample applications; .. toctree:: :maxdepth: 2 :caption: Contents: + contents/installation contents/auxiliary contents/ssc contents/gmc contents/site - contents/case - contents/tutorials - Indices and tables ================== diff --git a/openquake/quaket/auxiliary/ses_processing.ipynb b/openquake/quaket/auxiliary/ses_processing.ipynb new file mode 100644 index 0000000..b47c8c4 --- /dev/null +++ b/openquake/quaket/auxiliary/ses_processing.ipynb @@ -0,0 +1,240 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "d2e1fde5-b3f4-49f7-8683-2c858535f1de", + "metadata": {}, + "source": [ + "# Catalogue processing" + ] + }, + { + "cell_type": "markdown", + "id": "ebdeea70-8eb9-47dc-99a3-e1200df4aee9", + "metadata": {}, + "source": [ + "For a more general introduction to the QuakeT tool please refer to the online documentation available at https://gemsciencetools.github.io/quakeT/ " + ] + }, + { + "cell_type": "markdown", + "id": "c535f307-2fbe-493b-beb7-d53a860b54b6", + "metadata": {}, + "source": [ + "This notebook demonstrates how to convert a **Stochastic Event Set (SES)**, that is a set of ruptures describing the potential seismicity occurring within a certain period of time according to a PSHA input model, generated by the OpenQuake (OQ) Engine event-based PSHA calculation workflow, into a catalogue format compatible with the **Hazard Modeller's Toolkit (HMTK)** (for a general description of the HMTK please refer to the [QuakeT Documentation](https://gemsciencetools.github.io/quakeT/)). \n", + "\n", + "The main steps of th workflow described in this notebook are summarized below:\n", + "- Load raw `SES event` and `SES rupture` files,\n", + "- Merge event and rupture data using the `build_hmtk_ses_catalogue` utility,\n", + "- Assign random datetimes to events (`Months`, `Days`, `Hours`, `Minutes`, `Seconds`),\n", + "- Transform the current catalogue format into HMTK format." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "3693fddd-ff49-4792-a438-6e7cb709d883", + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "import pandas as pd\n", + "\n", + "from openquake.man.ses_cat import build_hmtk_ses_catalogue" + ] + }, + { + "cell_type": "markdown", + "id": "93f37203-4ab3-402b-a043-5adb5edf284b", + "metadata": {}, + "source": [ + "### Merging rupture and event sets" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "4d36f4e0-8d17-4e6d-84f5-cba0ebf789d0", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Done!\n", + "\n", + "Output file: ../output/hmtk_sample_catalogue.csv\n" + ] + } + ], + "source": [ + "# Paths to the files produced by the OQ Engine - Usually use the following command:\n", + "# `oq engine --eos `\n", + "events = '../data/aux/ses/output-241-events_62.csv'\n", + "ruptures = '../data/aux/ses/output-244-ruptures_62.csv'\n", + "\n", + "output_folder = os.path.join(\"..\", \"output\")\n", + "output = os.path.join(output_folder, \"hmtk_sample_catalogue.csv\")\n", + "\n", + "# Run build_hmtk_ses_catalogue function\n", + "result = build_hmtk_ses_catalogue(events, ruptures, output)\n", + "print(f\"Done!\\n\\nOutput file: {result}\")" + ] + }, + { + "cell_type": "markdown", + "id": "1b6edded-e37f-4f25-8503-30f49fb2bb27", + "metadata": {}, + "source": [ + "### Statistical summary" + ] + }, + { + "cell_type": "markdown", + "id": "4c816967-2c1a-4cc9-9ba2-c16cb875841a", + "metadata": {}, + "source": [ + "This block loads the catalogue and generates a descriptive statistics table to provide an overview of the catalogue's range and distribution." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "647926e0-b846-490b-8ebb-9b7efb590de1", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Statistical Summary of the catalogue: \n" + ] + }, + { + "data": { + "text/html": [ + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
 CountMeanStd DevMin25%50% (Median)75%MaxRange
magnitude59501.003.990.483.553.653.854.157.453.90
depth59501.009.567.065.005.005.0015.0027.5022.50
year59501.005009.782891.541.002518.005003.007529.0010000.009999.00
\n" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Total Number of Events: 59501\n", + "Time Span: 1 to 10000 (9999 years)\n" + ] + } + ], + "source": [ + "# Load the generated HMTK catalogue into a `pandas.DataFrame` instance\n", + "df = pd.read_csv(result)\n", + " \n", + "# Columns for the summary\n", + "summary_cols = [\"magnitude\", \"depth\", \"year\"]\n", + " \n", + "# Generate descriptive statistics\n", + "stats_summary = df[summary_cols].describe().T\n", + "stats_summary['range'] = stats_summary['max'] - stats_summary['min']\n", + "stats_summary.columns = [\n", + " 'Count', 'Mean', 'Std Dev', 'Min', '25%', '50% (Median)', '75%', 'Max', 'Range'\n", + "]\n", + " \n", + "print(\"Statistical Summary of the catalogue: \")\n", + "display(stats_summary.style.format(\"{:.2f}\"))\n", + "print(f\"\\nTotal Number of Events: {len(df)}\")\n", + "print(f\"Time Span: {df['year'].min():.0f} to {df['year'].max():.0f} ({df['year'].max() - df['year'].min():.0f} years)\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "bdd4cdb8-99ce-4b8d-881a-d65e8433e41a", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.8" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/openquake/quaket/data/aux/ses/output-241-events_62.csv b/openquake/quaket/data/aux/ses/output-241-events_62.csv new file mode 100644 index 0000000..d11e859 --- /dev/null +++ b/openquake/quaket/data/aux/ses/output-241-events_62.csv @@ -0,0 +1,59503 @@ +#,,,,"generated_by='OpenQuake engine 3.24.0-git5f693ddbce', start_date='2025-09-01T17:23:42', checksum=72497888" +event_id,rup_id,rlz_id,year,ses_id +0,0,118,5948,1 +1,12,65,3266,1 +2,18,91,4567,1 +3,24,136,6815,1 +4,121,11,554,1 +5,123,195,9763,1 +6,214,142,7128,1 +7,349,177,8881,1 +8,504,150,7515,1 +9,504,88,4425,1 +10,554,128,6424,1 +11,960,67,3396,1 +12,1111,62,3117,1 +13,1116,47,2365,1 +14,1440,100,5038,1 +15,1443,115,5761,1 +16,1443,163,8171,1 +17,1443,79,3970,1 +18,1452,193,9680,1 +19,1452,62,3115,1 +20,1453,11,553,1 +21,1464,97,4889,1 +22,1466,75,3779,1 +23,1473,73,3684,1 +24,1476,17,868,1 +25,1488,113,5668,1 +26,1524,63,3190,1 +27,1527,182,9122,1 +28,1548,114,5732,1 +29,1551,2,126,1 +30,1567,60,3009,1 +31,1608,57,2889,1 +32,1669,165,8270,1 +33,1923,165,8276,1 +34,1923,40,2007,1 +35,1929,55,2781,1 +36,1932,32,1645,1 +37,1935,141,7098,1 +38,1938,52,2650,1 +39,1956,98,4944,1 +40,1957,128,6407,1 +41,1959,71,3581,1 +42,1970,40,2001,1 +43,1972,73,3694,1 +44,1977,144,7248,1 +45,1981,62,3108,1 +46,1983,82,4130,1 +47,1998,85,4285,1 +48,2017,198,9904,1 +49,2040,35,1767,1 +50,2040,138,6929,1 +51,2058,153,7659,1 +52,2100,141,7085,1 +53,2124,123,6191,1 +54,2125,31,1555,1 +55,2175,90,4502,1 +56,2400,194,9722,1 +57,2400,181,9077,1 +58,2400,142,7126,1 +59,2406,124,6218,1 +60,2412,140,7014,1 +61,2412,34,1724,1 +62,2413,7,383,1 +63,2413,71,3555,1 +64,2414,66,3338,1 +65,2417,122,6110,1 +66,2421,38,1904,1 +67,2425,34,1711,1 +68,2426,189,9480,1 +69,2427,18,939,1 +70,2430,196,9809,1 +71,2436,162,8101,1 +72,2436,143,7195,1 +73,2438,16,834,1 +74,2448,119,5953,1 +75,2448,33,1669,1 +76,2449,176,8812,1 +77,2449,11,568,1 +78,2449,132,6614,1 +79,2461,87,4377,1 +80,2463,49,2457,1 +81,2472,94,4708,1 +82,2472,81,4069,1 +83,2482,89,4500,1 +84,2492,36,1846,1 +85,2499,190,9501,1 +86,2508,62,3121,1 +87,2510,8,412,1 +88,2535,85,4285,1 +89,2536,64,3211,1 +90,2550,3,165,1 +91,2571,129,6454,1 +92,2653,128,6417,1 +93,2784,77,3861,1 +94,3372,38,1940,1 +95,3375,137,6854,1 +96,3384,135,6765,1 +97,3412,101,5088,1 +98,3445,65,3255,1 +99,3569,74,3716,1 +100,3840,184,9233,1 +101,3852,112,5645,1 +102,3852,16,804,1 +103,3852,128,6402,1 +104,3852,54,2736,1 +105,3853,58,2918,1 +106,3853,81,4062,1 +107,3853,80,4003,1 +108,3855,177,8881,1 +109,3864,179,8970,1 +110,3866,38,1921,1 +111,3873,143,7185,1 +112,3873,107,5371,1 +113,3877,123,6187,1 +114,3891,123,6187,1 +115,3895,119,5963,1 +116,3900,18,932,1 +117,3900,88,4427,1 +118,3901,138,6902,1 +119,3914,21,1062,1 +120,3918,25,1251,1 +121,3937,185,9260,1 +122,3941,121,6081,1 +123,3948,36,1817,1 +124,4032,10,508,1 +125,4321,2,114,1 +126,4322,65,3295,1 +127,4332,82,4119,1 +128,4345,148,7402,1 +129,4350,32,1603,1 +130,4350,113,5682,1 +131,4372,36,1808,1 +132,4380,47,2354,1 +133,4408,62,3119,1 +134,4465,152,7642,1 +135,4466,30,1546,1 +136,4800,22,1109,1 +137,4800,18,917,1 +138,4800,7,387,1 +139,4801,2,133,1 +140,4801,87,4357,1 +141,4804,34,1728,1 +142,4808,158,7905,1 +143,4809,0,20,1 +144,4813,125,6275,1 +145,4816,100,5019,1 +146,4816,94,4719,1 +147,4824,34,1720,1 +148,4824,102,5126,1 +149,4826,114,5705,1 +150,4826,186,9331,1 +151,4831,158,7941,1 +152,4836,141,7066,1 +153,4836,84,4249,1 +154,4836,138,6947,1 +155,4840,167,8386,1 +156,4848,3,188,1 +157,4848,117,5852,1 +158,4857,184,9239,1 +159,4860,36,1849,1 +160,4864,134,6743,1 +161,4875,94,4750,1 +162,4890,42,2107,1 +163,4920,19,958,1 +164,4921,97,4885,1 +165,5045,14,707,1 +166,5281,175,8795,1 +167,5295,166,8350,1 +168,5355,196,9845,1 +169,5365,184,9219,1 +170,5808,39,1997,1 +171,6241,107,5376,1 +172,6241,183,9158,1 +173,6252,10,533,1 +174,6255,9,481,1 +175,6265,15,794,1 +176,6266,116,5826,1 +177,6276,75,3778,1 +178,6276,83,4198,1 +179,6276,27,1386,1 +180,6277,146,7302,1 +181,6277,192,9626,1 +182,6300,125,6267,1 +183,6300,78,3937,1 +184,6300,57,2873,1 +185,6301,63,3160,1 +186,6315,122,6115,1 +187,6316,57,2869,1 +188,6324,0,17,1 +189,6324,4,223,1 +190,6336,15,770,1 +191,6360,63,3174,1 +192,6360,104,5234,1 +193,6361,90,4503,1 +194,6389,91,4587,1 +195,6564,89,4493,1 +196,6722,68,3431,1 +197,6723,185,9300,1 +198,6729,94,4726,1 +199,6732,34,1704,1 +200,6751,166,8348,1 +201,6756,16,812,1 +202,6757,180,9035,1 +203,6792,125,6298,1 +204,6793,83,4190,1 +205,7200,124,6232,1 +206,7206,91,4589,1 +207,7212,167,8368,1 +208,7224,64,3224,1 +209,7225,57,2881,1 +210,7232,119,5958,1 +211,7238,136,6824,1 +212,7239,1,70,1 +213,7253,130,6539,1 +214,7336,35,1799,1 +215,7380,145,7260,1 +216,7440,134,6726,1 +217,7512,53,2695,1 +218,7692,75,3767,1 +219,7695,183,9184,1 +220,7737,41,2067,1 +221,9138,147,7380,1 +222,9156,178,8908,1 +223,9615,132,6611,1 +224,9684,70,3520,1 +225,10083,36,1839,1 +226,10096,128,6435,1 +227,10116,110,5548,1 +228,10560,20,1001,1 +229,10560,89,4497,1 +230,10560,10,517,1 +231,10560,114,5749,1 +232,10560,118,5914,1 +233,10561,194,9705,1 +234,10563,154,7735,1 +235,10564,67,3389,1 +236,10572,22,1103,1 +237,10573,145,7272,1 +238,10575,62,3132,1 +239,10575,84,4228,1 +240,10579,16,814,1 +241,10584,92,4624,1 +242,10584,189,9466,1 +243,10584,52,2607,1 +244,10586,180,9041,1 +245,10597,42,2148,1 +246,10599,111,5557,1 +247,10608,89,4490,1 +248,10608,100,5010,1 +249,10608,157,7852,1 +250,10609,1,58,1 +251,10610,104,5213,1 +252,10611,125,6279,1 +253,10620,110,5508,1 +254,10632,43,2182,1 +255,10641,140,7027,1 +256,10644,182,9121,1 +257,10644,23,1178,1 +258,10656,162,8150,1 +259,10657,141,7067,1 +260,10664,15,775,1 +261,10666,30,1518,1 +262,10680,165,8261,1 +263,10716,39,1987,1 +264,10726,40,2036,1 +265,10737,148,7429,1 +266,10764,4,239,1 +267,11522,162,8148,1 +268,11556,19,993,1 +269,11628,159,7969,1 +270,11654,127,6360,1 +271,11664,100,5026,1 +272,11677,98,4904,1 +273,12001,162,8118,1 +274,12024,145,7253,1 +275,12056,178,8941,1 +276,12496,179,8962,1 +277,12504,139,6990,1 +278,12507,175,8789,1 +279,12576,147,7357,1 +280,12961,40,2039,1 +281,12984,46,2315,1 +282,12987,60,3015,1 +283,12993,110,5528,1 +284,12996,162,8149,1 +285,13001,15,774,1 +286,13020,38,1935,1 +287,13027,31,1568,1 +288,13051,90,4504,1 +289,13056,153,7679,1 +290,13056,175,8772,1 +291,13065,85,4270,1 +292,13068,146,7336,1 +293,13081,58,2902,1 +294,13165,44,2212,1 +295,13453,198,9940,1 +296,13458,139,6963,1 +297,13460,118,5940,1 +298,13477,148,7429,1 +299,13921,178,8913,1 +300,13939,197,9868,1 +301,13980,75,3770,1 +302,14000,76,3849,1 +303,14025,27,1361,1 +304,14263,149,7468,1 +305,14880,132,6648,1 +306,14886,54,2741,1 +307,14895,58,2923,1 +308,14904,80,4002,1 +309,14904,51,2567,1 +310,14910,139,6980,1 +311,14917,51,2597,1 +312,14928,70,3536,1 +313,14937,98,4910,1 +314,14941,37,1854,1 +315,14965,180,9028,1 +316,14968,12,622,1 +317,14976,84,4248,1 +318,14979,97,4881,1 +319,14984,57,2863,1 +320,14987,10,503,1 +321,14989,23,1177,1 +322,15048,190,9514,1 +323,15063,169,8490,1 +324,15390,79,3964,1 +325,15846,37,1868,1 +326,15853,100,5019,1 +327,15888,133,6658,1 +328,15889,57,2882,1 +329,16021,85,4282,1 +330,16032,17,872,1 +331,16324,152,7612,1 +332,16332,14,748,1 +333,16353,100,5033,1 +334,16364,41,2068,1 +335,16380,61,3055,1 +336,16394,68,3440,1 +337,16405,186,9331,1 +338,16410,189,9500,1 +339,16570,38,1925,1 +340,16814,26,1337,1 +341,16851,65,3295,1 +342,17280,55,2777,1 +343,17281,36,1841,1 +344,17289,183,9174,1 +345,17292,35,1796,1 +346,17307,40,2046,1 +347,17307,178,8937,1 +348,17310,115,5792,1 +349,17316,80,4029,1 +350,17319,78,3930,1 +351,17319,145,7292,1 +352,17330,92,4625,1 +353,17344,178,8941,1 +354,17346,188,9426,1 +355,17364,129,6463,1 +356,17364,123,6188,1 +357,17395,121,6056,1 +358,17400,45,2265,1 +359,17487,177,8876,1 +360,17623,144,7247,1 +361,17771,196,9826,1 +362,17772,86,4309,1 +363,17772,16,841,1 +364,17781,161,8052,1 +365,17844,90,4518,1 +366,17964,172,8627,1 +367,18241,29,1476,1 +368,18253,152,7605,1 +369,18277,88,4427,1 +370,18456,185,9300,1 +371,18720,78,3916,1 +372,18720,157,7874,1 +373,18720,121,6058,1 +374,18721,67,3380,1 +375,18721,108,5410,1 +376,18721,117,5875,1 +377,18726,40,2002,1 +378,18732,162,8130,1 +379,18732,31,1590,1 +380,18732,54,2728,1 +381,18732,124,6204,1 +382,18732,70,3518,1 +383,18733,107,5393,1 +384,18738,193,9651,1 +385,18738,195,9777,1 +386,18741,199,9982,1 +387,18744,48,2420,1 +388,18745,2,134,1 +389,18745,133,6699,1 +390,18745,9,500,1 +391,18746,183,9157,1 +392,18746,52,2626,1 +393,18747,130,6504,1 +394,18756,78,3910,1 +395,18756,45,2292,1 +396,18765,185,9274,1 +397,18768,6,306,1 +398,18769,27,1380,1 +399,18772,28,1418,1 +400,18780,121,6054,1 +401,18780,196,9808,1 +402,18781,157,7864,1 +403,18786,14,704,1 +404,18816,57,2852,1 +405,18818,100,5026,1 +406,18843,165,8295,1 +407,18856,162,8137,1 +408,18875,25,1256,1 +409,18879,181,9096,1 +410,18915,142,7102,1 +411,18916,3,156,1 +412,18946,191,9582,1 +413,18952,182,9124,1 +414,19116,44,2222,1 +415,19201,79,3992,1 +416,19203,115,5791,1 +417,19221,180,9011,1 +418,19221,146,7338,1 +419,19236,67,3377,1 +420,19238,47,2364,1 +421,19254,81,4098,1 +422,19261,6,310,1 +423,19273,112,5619,1 +424,19344,125,6262,1 +425,19681,72,3642,1 +426,19683,96,4806,1 +427,19698,156,7829,1 +428,19701,51,2582,1 +429,19704,154,7708,1 +430,19707,35,1775,1 +431,19707,31,1593,1 +432,19731,0,38,1 +433,19731,31,1594,1 +434,19766,33,1664,1 +435,19826,54,2706,1 +436,20145,183,9166,1 +437,20170,178,8903,1 +438,20185,55,2752,1 +439,20352,110,5540,1 +440,20649,173,8700,1 +441,21426,62,3109,1 +442,21609,14,717,1 +443,21624,177,8869,1 +444,22080,3,175,1 +445,22094,96,4841,1 +446,22109,158,7933,1 +447,22116,130,6546,1 +448,22119,67,3384,1 +449,22152,57,2866,1 +450,22156,76,3815,1 +451,22167,54,2733,1 +452,22584,76,3835,1 +453,22608,111,5600,1 +454,22614,56,2810,1 +455,23082,56,2818,1 +456,23524,136,6820,1 +457,23553,16,838,1 +458,24005,95,4788,1 +459,24012,153,7679,1 +460,24036,185,9289,1 +461,24960,54,2714,1 +462,24973,174,8741,1 +463,24986,93,4664,1 +464,24987,0,21,1 +465,24997,16,844,1 +466,25008,3,188,1 +467,25020,111,5568,1 +468,25092,34,1746,1 +469,25446,135,6784,1 +470,25466,46,2317,1 +471,25945,34,1719,1 +472,26040,58,2945,1 +473,26400,96,4845,1 +474,26436,32,1634,1 +475,26437,3,183,1 +476,26880,103,5169,1 +477,26880,197,9896,1 +478,26881,103,5186,1 +479,26881,176,8837,1 +480,26881,97,4877,1 +481,26881,97,4864,1 +482,26882,160,8019,1 +483,26883,142,7127,1 +484,26886,128,6414,1 +485,26889,51,2568,1 +486,26892,158,7934,1 +487,26892,151,7585,1 +488,26892,86,4314,1 +489,26892,156,7841,1 +490,26892,113,5686,1 +491,26898,124,6247,1 +492,26899,132,6647,1 +493,26899,118,5950,1 +494,26901,89,4494,1 +495,26901,168,8431,1 +496,26904,119,5996,1 +497,26904,127,6380,1 +498,26904,81,4061,1 +499,26904,92,4628,1 +500,26904,151,7571,1 +501,26905,85,4255,1 +502,26908,55,2755,1 +503,26916,138,6929,1 +504,26916,9,498,1 +505,26918,189,9498,1 +506,26919,139,6957,1 +507,26923,150,7505,1 +508,26931,195,9774,1 +509,26934,86,4327,1 +510,26938,100,5010,1 +511,26940,73,3663,1 +512,26940,192,9649,1 +513,26940,10,534,1 +514,26941,159,7981,1 +515,26942,20,1019,1 +516,26943,58,2930,1 +517,26947,158,7922,1 +518,26952,25,1280,1 +519,26952,177,8866,1 +520,26954,93,4677,1 +521,26976,189,9482,1 +522,26977,21,1057,1 +523,26977,185,9257,1 +524,26978,45,2285,1 +525,27000,85,4271,1 +526,27013,128,6436,1 +527,27020,133,6666,1 +528,27024,161,8097,1 +529,27024,75,3774,1 +530,27039,58,2926,1 +531,27042,168,8422,1 +532,27043,198,9903,1 +533,27073,163,8172,1 +534,27078,174,8742,1 +535,27159,95,4783,1 +536,27360,60,3023,1 +537,27361,157,7894,1 +538,27363,45,2264,1 +539,27372,117,5852,1 +540,27372,15,770,1 +541,27373,48,2436,1 +542,27381,20,1043,1 +543,27381,179,8994,1 +544,27385,145,7300,1 +545,27390,70,3543,1 +546,27396,64,3223,1 +547,27420,105,5258,1 +548,27428,130,6542,1 +549,27456,92,4630,1 +550,27468,77,3892,1 +551,28353,192,9648,1 +552,28374,123,6173,1 +553,28392,106,5334,1 +554,28885,182,9127,1 +555,28886,181,9056,1 +556,29293,122,6122,1 +557,29304,65,3277,1 +558,29328,127,6358,1 +559,29367,136,6840,1 +560,29760,10,549,1 +561,29784,125,6288,1 +562,29796,138,6938,1 +563,29797,62,3122,1 +564,29832,40,2003,1 +565,30252,88,4416,1 +566,30253,91,4563,1 +567,30276,193,9691,1 +568,30300,70,3503,1 +569,30325,9,497,1 +570,30768,185,9269,1 +571,30948,141,7060,1 +572,31200,118,5933,1 +573,31202,17,856,1 +574,31213,91,4595,1 +575,31215,171,8600,1 +576,31216,97,4862,1 +577,31219,165,8281,1 +578,31221,71,3581,1 +579,31224,147,7379,1 +580,31233,6,311,1 +581,31236,192,9635,1 +582,31237,109,5485,1 +583,31237,101,5085,1 +584,31237,187,9398,1 +585,31237,128,6425,1 +586,31248,8,413,1 +587,31248,25,1267,1 +588,31249,80,4018,1 +589,31273,16,818,1 +590,31281,68,3411,1 +591,31299,156,7810,1 +592,31323,141,7097,1 +593,31338,98,4933,1 +594,31354,20,1025,1 +595,31406,90,4531,1 +596,31417,152,7640,1 +597,32232,105,5262,1 +598,32640,59,2980,1 +599,32676,123,6192,1 +600,32692,113,5694,1 +601,33120,40,2037,1 +602,33122,2,147,1 +603,33129,32,1645,1 +604,33132,52,2602,1 +605,33138,116,5837,1 +606,33144,179,8967,1 +607,33144,147,7395,1 +608,33157,167,8396,1 +609,33160,80,4004,1 +610,33161,87,4382,1 +611,33207,183,9154,1 +612,33207,104,5221,1 +613,33228,36,1811,1 +614,33291,156,7825,1 +615,33388,145,7267,1 +616,33612,19,964,1 +617,33624,10,503,1 +618,33628,55,2764,1 +619,33661,168,8443,1 +620,34080,105,5300,1 +621,34560,29,1467,1 +622,34560,165,8282,1 +623,34564,113,5687,1 +624,34570,173,8695,1 +625,34573,165,8262,1 +626,34584,164,8204,1 +627,34584,40,2019,1 +628,34587,176,8819,1 +629,34601,128,6447,1 +630,34632,19,985,1 +631,34647,39,1973,1 +632,34653,72,3601,1 +633,35040,149,7491,1 +634,35040,3,196,1 +635,35040,177,8898,1 +636,35040,182,9138,1 +637,35042,46,2335,1 +638,35043,146,7331,1 +639,35049,62,3118,1 +640,35050,119,5962,1 +641,35052,11,600,1 +642,35052,165,8300,1 +643,35052,157,7863,1 +644,35052,121,6053,1 +645,35052,156,7817,1 +646,35052,4,237,1 +647,35053,1,70,1 +648,35058,177,8856,1 +649,35058,123,6167,1 +650,35060,46,2335,1 +651,35064,173,8664,1 +652,35064,85,4270,1 +653,35064,48,2422,1 +654,35064,121,6080,1 +655,35065,180,9002,1 +656,35065,50,2548,1 +657,35065,138,6905,1 +658,35068,123,6168,1 +659,35070,82,4123,1 +660,35073,73,3690,1 +661,35079,54,2736,1 +662,35088,189,9466,1 +663,35089,147,7376,1 +664,35090,117,5859,1 +665,35091,69,3474,1 +666,35097,4,241,1 +667,35098,64,3239,1 +668,35100,168,8407,1 +669,35100,183,9169,1 +670,35100,35,1756,1 +671,35102,112,5636,1 +672,35104,118,5949,1 +673,35104,37,1875,1 +674,35104,199,9979,1 +675,35113,160,8025,1 +676,35114,191,9554,1 +677,35124,62,3103,1 +678,35125,18,923,1 +679,35137,57,2859,1 +680,35148,129,6458,1 +681,35166,76,3831,1 +682,35187,134,6735,1 +683,35197,41,2058,1 +684,35232,148,7417,1 +685,35246,166,8341,1 +686,35529,99,4952,1 +687,35534,101,5074,1 +688,35535,62,3148,1 +689,35604,23,1174,1 +690,35607,147,7369,1 +691,35617,60,3005,1 +692,36012,25,1298,1 +693,36109,115,5774,1 +694,36192,9,459,1 +695,36480,58,2940,1 +696,36546,175,8772,1 +697,36548,165,8269,1 +698,36576,111,5563,1 +699,36960,143,7178,1 +700,36963,58,2932,1 +701,36963,6,340,1 +702,36963,32,1636,1 +703,36972,127,6392,1 +704,36973,143,7169,1 +705,36974,26,1318,1 +706,36983,28,1446,1 +707,36997,26,1335,1 +708,37006,1,93,1 +709,37008,128,6427,1 +710,37011,34,1736,1 +711,37020,197,9885,1 +712,37020,50,2520,1 +713,37023,166,8306,1 +714,37032,50,2517,1 +715,37032,18,937,1 +716,37062,38,1928,1 +717,37081,199,9991,1 +718,37440,165,8252,1 +719,37451,158,7914,1 +720,37464,192,9639,1 +721,37476,71,3570,1 +722,37476,129,6497,1 +723,37513,37,1881,1 +724,37513,40,2044,1 +725,37514,116,5821,1 +726,37524,156,7822,1 +727,37526,69,3470,1 +728,37537,156,7830,1 +729,37584,119,5973,1 +730,37681,95,4796,1 +731,37920,183,9153,1 +732,37920,17,883,1 +733,37921,66,3332,1 +734,37921,155,7774,1 +735,37923,193,9660,1 +736,37923,54,2729,1 +737,37925,169,8488,1 +738,37925,88,4417,1 +739,37926,164,8214,1 +740,37929,127,6381,1 +741,37930,69,3491,1 +742,37930,18,919,1 +743,37932,6,343,1 +744,37932,161,8053,1 +745,37932,85,4292,1 +746,37933,101,5069,1 +747,37935,83,4176,1 +748,37936,115,5752,1 +749,37944,153,7680,1 +750,37944,89,4464,1 +751,37947,55,2778,1 +752,37947,11,600,1 +753,37956,105,5286,1 +754,37968,55,2794,1 +755,37971,14,745,1 +756,37971,2,125,1 +757,37971,69,3474,1 +758,37992,41,2061,1 +759,37993,57,2861,1 +760,37998,177,8869,1 +761,38006,170,8540,1 +762,38010,102,5145,1 +763,38020,137,6899,1 +764,38037,20,1035,1 +765,38112,143,7175,1 +766,38127,46,2311,1 +767,38150,148,7420,1 +768,38409,116,5846,1 +769,38413,84,4246,1 +770,38418,183,9152,1 +771,38471,59,2971,1 +772,38496,51,2556,1 +773,38535,47,2400,1 +774,38556,126,6311,1 +775,38880,186,9320,1 +776,38881,34,1743,1 +777,38883,169,8487,1 +778,38892,9,474,1 +779,38892,135,6769,1 +780,38892,75,3770,1 +781,38892,78,3915,1 +782,38892,4,243,1 +783,38892,33,1677,1 +784,38893,189,9490,1 +785,38893,184,9244,1 +786,38893,78,3947,1 +787,38894,152,7640,1 +788,38895,141,7056,1 +789,38895,123,6166,1 +790,38904,9,472,1 +791,38905,44,2226,1 +792,38906,9,470,1 +793,38907,197,9858,1 +794,38913,40,2041,1 +795,38916,39,1966,1 +796,38916,107,5381,1 +797,38916,181,9086,1 +798,38916,135,6760,1 +799,38917,157,7887,1 +800,38917,101,5087,1 +801,38919,185,9257,1 +802,38920,50,2521,1 +803,38925,141,7054,1 +804,38928,32,1623,1 +805,38928,189,9479,1 +806,38931,96,4813,1 +807,38935,191,9597,1 +808,38940,84,4215,1 +809,38940,40,2014,1 +810,38940,86,4311,1 +811,38943,127,6385,1 +812,38946,100,5049,1 +813,38952,12,641,1 +814,38958,138,6927,1 +815,38958,68,3402,1 +816,38959,88,4404,1 +817,38964,167,8358,1 +818,38964,72,3648,1 +819,38965,194,9718,1 +820,38970,6,312,1 +821,38977,7,352,1 +822,38979,78,3912,1 +823,38997,163,8187,1 +824,39000,21,1054,1 +825,39000,144,7233,1 +826,39003,27,1388,1 +827,39035,189,9491,1 +828,39117,155,7776,1 +829,39144,159,7986,1 +830,39150,8,441,1 +831,39159,170,8519,1 +832,39384,121,6073,1 +833,39447,72,3641,1 +834,39481,73,3672,1 +835,39841,21,1056,1 +836,39852,58,2921,1 +837,39876,188,9433,1 +838,39888,137,6875,1 +839,39889,32,1601,1 +840,39891,77,3861,1 +841,39924,68,3413,1 +842,39975,174,8711,1 +843,40042,135,6773,1 +844,40341,76,3811,1 +845,40346,9,479,1 +846,40801,65,3293,1 +847,40849,136,6823,1 +848,41280,78,3905,1 +849,41280,109,5475,1 +850,41316,53,2677,1 +851,41323,163,8154,1 +852,41340,130,6540,1 +853,41400,147,7359,1 +854,41469,23,1184,1 +855,41791,63,3167,1 +856,42240,129,6481,1 +857,42240,108,5414,1 +858,42241,76,3838,1 +859,42241,16,817,1 +860,42242,72,3609,1 +861,42252,11,593,1 +862,42270,27,1361,1 +863,42276,143,7196,1 +864,42276,102,5147,1 +865,42310,194,9713,1 +866,42351,120,6003,1 +867,42720,38,1929,1 +868,42720,189,9496,1 +869,42733,75,3795,1 +870,42734,74,3716,1 +871,42736,37,1891,1 +872,42744,0,40,1 +873,42744,70,3511,1 +874,42747,25,1278,1 +875,42747,137,6880,1 +876,42757,48,2440,1 +877,42757,63,3168,1 +878,42757,180,9040,1 +879,42768,23,1167,1 +880,42771,41,2083,1 +881,42784,46,2317,1 +882,42793,125,6276,1 +883,42851,153,7696,1 +884,42864,113,5684,1 +885,43243,94,4704,1 +886,43680,8,447,1 +887,43696,108,5433,1 +888,43699,170,8548,1 +889,43752,166,8312,1 +890,43765,61,3070,1 +891,43790,170,8518,1 +892,44184,160,8001,1 +893,44198,166,8303,1 +894,44208,91,4598,1 +895,44221,167,8377,1 +896,44535,180,9018,1 +897,44640,137,6900,1 +898,44640,42,2149,1 +899,44642,86,4349,1 +900,44643,58,2913,1 +901,44652,7,358,1 +902,44653,49,2486,1 +903,44655,139,6979,1 +904,44664,147,7372,1 +905,44664,14,719,1 +906,44664,38,1931,1 +907,44664,166,8326,1 +908,44667,162,8122,1 +909,44700,112,5601,1 +910,44712,72,3608,1 +911,44726,42,2148,1 +912,44730,64,3216,1 +913,44736,46,2348,1 +914,44772,165,8266,1 +915,44796,60,3026,1 +916,44847,129,6460,1 +917,45138,51,2583,1 +918,45192,10,542,1 +919,45202,117,5871,1 +920,45624,17,872,1 +921,45624,126,6330,1 +922,45684,119,5974,1 +923,45684,3,195,1 +924,45721,168,8405,1 +925,46080,154,7742,1 +926,46082,1,89,1 +927,46085,147,7372,1 +928,46092,39,1979,1 +929,46092,161,8088,1 +930,46092,80,4038,1 +931,46092,61,3073,1 +932,46101,173,8686,1 +933,46104,30,1541,1 +934,46104,152,7641,1 +935,46117,127,6383,1 +936,46128,105,5288,1 +937,46130,161,8073,1 +938,46141,104,5225,1 +939,46152,135,6758,1 +940,46212,162,8130,1 +941,46236,118,5940,1 +942,46287,72,3616,1 +943,46309,59,2973,1 +944,46584,20,1017,1 +945,46602,107,5397,1 +946,47040,189,9465,1 +947,47058,174,8715,1 +948,47064,86,4344,1 +949,47088,68,3429,1 +950,47124,64,3232,1 +951,47137,125,6287,1 +952,47148,90,4510,1 +953,47208,101,5091,1 +954,47244,12,601,1 +955,47520,55,2771,1 +956,47521,7,377,1 +957,47525,93,4673,1 +958,47534,150,7532,1 +959,47535,45,2294,1 +960,47542,28,1448,1 +961,47544,12,627,1 +962,47547,68,3435,1 +963,47557,85,4257,1 +964,47568,76,3838,1 +965,47569,109,5470,1 +966,47577,43,2155,1 +967,47598,97,4851,1 +968,47617,133,6695,1 +969,48000,73,3686,1 +970,48000,125,6300,1 +971,48001,114,5743,1 +972,48002,77,3876,1 +973,48004,21,1100,1 +974,48006,185,9288,1 +975,48012,99,4985,1 +976,48013,151,7564,1 +977,48024,125,6273,1 +978,48025,43,2163,1 +979,48025,164,8213,1 +980,48025,12,628,1 +981,48027,32,1636,1 +982,48037,16,823,1 +983,48048,194,9739,1 +984,48048,141,7086,1 +985,48061,18,932,1 +986,48076,187,9392,1 +987,48171,24,1235,1 +988,48192,166,8343,1 +989,48480,101,5062,1 +990,48480,153,7696,1 +991,48487,52,2611,1 +992,48489,97,4860,1 +993,48492,79,3972,1 +994,48497,46,2345,1 +995,48499,14,745,1 +996,48507,20,1005,1 +997,48528,38,1934,1 +998,48648,192,9619,1 +999,48694,49,2485,1 +1000,48972,64,3236,1 +1001,48981,37,1899,1 +1002,49020,197,9852,1 +1003,49023,65,3278,1 +1004,49068,99,4996,1 +1005,49945,112,5638,1 +1006,49959,128,6449,1 +1007,49981,35,1777,1 +1008,49990,140,7016,1 +1009,50005,130,6533,1 +1010,50427,31,1551,1 +1011,50517,104,5237,1 +1012,50881,113,5694,1 +1013,50892,189,9492,1 +1014,50892,30,1529,1 +1015,50910,147,7392,1 +1016,50916,163,8198,1 +1017,50926,47,2367,1 +1018,50934,155,7758,1 +1019,50964,29,1482,1 +1020,50989,159,7969,1 +1021,51000,84,4240,1 +1022,51150,159,7985,1 +1023,51360,115,5780,1 +1024,51365,91,4553,1 +1025,51372,15,795,1 +1026,51372,131,6582,1 +1027,51390,198,9916,1 +1028,51423,25,1262,1 +1029,51486,17,893,1 +1030,51552,74,3737,1 +1031,51624,12,629,1 +1032,51648,132,6641,1 +1033,51840,176,8826,1 +1034,51852,29,1452,1 +1035,51877,69,3462,1 +1036,52323,78,3904,1 +1037,52332,185,9288,1 +1038,52335,138,6946,1 +1039,52336,124,6222,1 +1040,52413,2,122,1 +1041,52416,54,2704,1 +1042,52428,86,4335,1 +1043,52494,88,4434,1 +1044,52800,68,3423,1 +1045,52806,41,2081,1 +1046,53280,35,1794,1 +1047,53281,35,1782,1 +1048,53281,17,864,1 +1049,53286,190,9536,1 +1050,53292,29,1470,1 +1051,53292,88,4442,1 +1052,53292,22,1110,1 +1053,53298,128,6436,1 +1054,53298,156,7810,1 +1055,53298,166,8327,1 +1056,53304,170,8528,1 +1057,53308,6,343,1 +1058,53313,118,5940,1 +1059,53325,2,145,1 +1060,53331,79,3971,1 +1061,53334,193,9653,1 +1062,53343,29,1455,1 +1063,53358,83,4189,1 +1064,53375,152,7610,1 +1065,53376,14,745,1 +1066,53376,143,7151,1 +1067,53382,83,4178,1 +1068,53395,121,6057,1 +1069,53401,99,4981,1 +1070,53422,0,29,1 +1071,53533,20,1010,1 +1072,53760,37,1857,1 +1073,53760,60,3002,1 +1074,53764,158,7936,1 +1075,53772,24,1213,1 +1076,53796,195,9755,1 +1077,53820,52,2636,1 +1078,53823,127,6368,1 +1079,53857,31,1593,1 +1080,54240,178,8921,1 +1081,54252,176,8829,1 +1082,54253,49,2492,1 +1083,54254,21,1070,1 +1084,54265,163,8192,1 +1085,54266,193,9694,1 +1086,54276,85,4252,1 +1087,54284,13,678,1 +1088,54307,78,3943,1 +1089,54311,98,4944,1 +1090,54312,52,2618,1 +1091,54336,199,9963,1 +1092,54343,18,918,1 +1093,54344,147,7392,1 +1094,54441,142,7104,1 +1095,54502,27,1389,1 +1096,54720,74,3747,1 +1097,54720,125,6264,1 +1098,54723,57,2853,1 +1099,54723,98,4940,1 +1100,54735,55,2770,1 +1101,54739,44,2229,1 +1102,54830,129,6500,1 +1103,55200,65,3267,1 +1104,55200,144,7237,1 +1105,55210,33,1686,1 +1106,55224,94,4729,1 +1107,55680,136,6841,1 +1108,55680,132,6645,1 +1109,55704,62,3114,1 +1110,55813,111,5598,1 +1111,55884,56,2808,1 +1112,56640,98,4920,1 +1113,56649,59,2983,1 +1114,56652,168,8445,1 +1115,56653,14,733,1 +1116,56654,17,879,1 +1117,56667,120,6043,1 +1118,56676,147,7373,1 +1119,56679,98,4904,1 +1120,56691,37,1892,1 +1121,56692,131,6569,1 +1122,56701,76,3829,1 +1123,56736,176,8818,1 +1124,56760,68,3413,1 +1125,56772,101,5064,1 +1126,56773,144,7250,1 +1127,57126,60,3002,1 +1128,57144,119,5999,1 +1129,57157,39,1975,1 +1130,57180,67,3365,1 +1131,57218,49,2484,1 +1132,57266,108,5413,1 +1133,57647,111,5554,1 +1134,57658,11,557,1 +1135,57660,114,5720,1 +1136,58080,98,4917,1 +1137,58080,116,5823,1 +1138,58081,101,5063,1 +1139,58102,155,7769,1 +1140,58104,129,6456,1 +1141,58164,5,282,1 +1142,58209,4,240,1 +1143,58345,26,1316,1 +1144,58560,115,5751,1 +1145,58560,95,4751,1 +1146,58560,187,9379,1 +1147,58561,111,5579,1 +1148,58561,126,6320,1 +1149,58561,68,3409,1 +1150,58562,168,8447,1 +1151,58563,123,6166,1 +1152,58563,176,8825,1 +1153,58566,94,4710,1 +1154,58567,123,6175,1 +1155,58569,79,3973,1 +1156,58569,58,2920,1 +1157,58572,147,7379,1 +1158,58572,115,5800,1 +1159,58572,47,2392,1 +1160,58572,35,1797,1 +1161,58572,89,4469,1 +1162,58573,66,3343,1 +1163,58573,73,3678,1 +1164,58573,18,903,1 +1165,58573,191,9552,1 +1166,58573,178,8927,1 +1167,58576,154,7745,1 +1168,58577,2,120,1 +1169,58580,189,9481,1 +1170,58580,155,7756,1 +1171,58581,184,9207,1 +1172,58584,105,5271,1 +1173,58584,166,8303,1 +1174,58584,37,1875,1 +1175,58584,126,6348,1 +1176,58584,63,3178,1 +1177,58584,38,1937,1 +1178,58584,162,8116,1 +1179,58584,110,5542,1 +1180,58585,23,1200,1 +1181,58585,177,8885,1 +1182,58586,174,8744,1 +1183,58586,14,735,1 +1184,58587,132,6618,1 +1185,58587,41,2086,1 +1186,58587,33,1693,1 +1187,58587,127,6351,1 +1188,58587,180,9006,1 +1189,58588,60,3036,1 +1190,58588,165,8288,1 +1191,58590,19,958,1 +1192,58591,9,479,1 +1193,58594,78,3921,1 +1194,58596,74,3722,1 +1195,58596,100,5027,1 +1196,58596,73,3684,1 +1197,58596,67,3365,1 +1198,58597,164,8203,1 +1199,58600,17,854,1 +1200,58604,15,753,1 +1201,58605,168,8446,1 +1202,58605,127,6362,1 +1203,58605,70,3511,1 +1204,58608,30,1508,1 +1205,58608,60,3041,1 +1206,58608,65,3280,1 +1207,58608,91,4552,1 +1208,58608,147,7373,1 +1209,58608,113,5674,1 +1210,58608,49,2487,1 +1211,58609,13,663,1 +1212,58611,195,9788,1 +1213,58614,80,4050,1 +1214,58615,55,2781,1 +1215,58615,108,5420,1 +1216,58617,3,153,1 +1217,58620,2,127,1 +1218,58620,185,9286,1 +1219,58620,114,5735,1 +1220,58622,175,8765,1 +1221,58623,166,8343,1 +1222,58626,3,173,1 +1223,58627,69,3453,1 +1224,58628,13,692,1 +1225,58629,117,5881,1 +1226,58632,110,5511,1 +1227,58632,181,9072,1 +1228,58632,132,6611,1 +1229,58633,143,7195,1 +1230,58635,145,7264,1 +1231,58635,24,1224,1 +1232,58637,67,3364,1 +1233,58641,154,7735,1 +1234,58644,89,4464,1 +1235,58644,55,2755,1 +1236,58644,167,8389,1 +1237,58645,149,7456,1 +1238,58647,89,4454,1 +1239,58647,196,9829,1 +1240,58653,196,9849,1 +1241,58657,176,8811,1 +1242,58668,179,8964,1 +1243,58671,30,1521,1 +1244,58680,185,9265,1 +1245,58680,42,2128,1 +1246,58680,163,8152,1 +1247,58683,197,9857,1 +1248,58692,103,5155,1 +1249,58692,169,8462,1 +1250,58698,94,4733,1 +1251,58716,182,9105,1 +1252,58728,122,6139,1 +1253,58740,18,907,1 +1254,58740,63,3184,1 +1255,58776,30,1511,1 +1256,58788,145,7285,1 +1257,58815,48,2440,1 +1258,58897,164,8212,1 +1259,59040,141,7079,1 +1260,59041,18,942,1 +1261,59041,53,2688,1 +1262,59052,187,9367,1 +1263,59052,49,2499,1 +1264,59053,33,1694,1 +1265,59055,24,1230,1 +1266,59064,112,5623,1 +1267,59064,32,1621,1 +1268,59064,118,5949,1 +1269,59065,196,9850,1 +1270,59077,22,1104,1 +1271,59088,40,2044,1 +1272,59097,168,8420,1 +1273,59139,90,4510,1 +1274,59148,46,2337,1 +1275,59150,76,3838,1 +1276,59151,37,1866,1 +1277,59269,125,6298,1 +1278,59520,147,7372,1 +1279,59520,14,729,1 +1280,59522,104,5231,1 +1281,59523,65,3271,1 +1282,59532,13,687,1 +1283,59532,193,9675,1 +1284,59533,129,6486,1 +1285,59535,13,684,1 +1286,59535,65,3256,1 +1287,59536,103,5187,1 +1288,59536,133,6657,1 +1289,59544,185,9289,1 +1290,59544,96,4819,1 +1291,59544,184,9220,1 +1292,59544,87,4364,1 +1293,59544,127,6353,1 +1294,59556,198,9933,1 +1295,59556,151,7572,1 +1296,59557,12,635,1 +1297,59557,156,7848,1 +1298,59557,163,8153,1 +1299,59559,150,7533,1 +1300,59568,154,7730,1 +1301,59568,16,843,1 +1302,59571,183,9172,1 +1303,59572,67,3360,1 +1304,59580,16,813,1 +1305,59580,32,1619,1 +1306,59604,35,1756,1 +1307,59605,99,4970,1 +1308,59613,89,4499,1 +1309,59628,123,6195,1 +1310,59628,175,8791,1 +1311,59632,58,2948,1 +1312,59637,166,8340,1 +1313,59641,172,8607,1 +1314,59683,58,2925,1 +1315,59688,158,7934,1 +1316,59690,22,1136,1 +1317,59700,134,6714,1 +1318,59722,103,5158,1 +1319,60010,2,138,1 +1320,60012,17,856,1 +1321,60018,145,7271,1 +1322,60024,100,5017,1 +1323,60028,40,2023,1 +1324,60037,106,5338,1 +1325,60048,171,8574,1 +1326,60048,192,9641,1 +1327,60060,179,8979,1 +1328,60061,155,7757,1 +1329,60072,112,5636,1 +1330,60084,150,7536,1 +1331,60093,90,4519,1 +1332,60159,26,1349,1 +1333,60256,149,7489,1 +1334,60504,56,2846,1 +1335,60978,78,3936,1 +1336,60982,41,2093,1 +1337,61005,167,8396,1 +1338,61012,5,297,1 +1339,61020,72,3634,1 +1340,61041,177,8861,1 +1341,61093,52,2631,1 +1342,61921,48,2442,1 +1343,61922,92,4612,1 +1344,61926,178,8947,1 +1345,61932,97,4858,1 +1346,61932,13,687,1 +1347,61932,183,9166,1 +1348,61933,101,5076,1 +1349,61968,51,2582,1 +1350,61974,87,4387,1 +1351,61992,35,1798,1 +1352,62002,93,4670,1 +1353,62013,90,4517,1 +1354,62016,151,7559,1 +1355,62076,2,106,1 +1356,62160,67,3395,1 +1357,62408,147,7370,1 +1358,62424,122,6149,1 +1359,62426,166,8326,1 +1360,62484,196,9807,1 +1361,62919,173,8659,1 +1362,62940,100,5026,1 +1363,63360,194,9750,1 +1364,63369,145,7284,1 +1365,63372,112,5641,1 +1366,63372,104,5204,1 +1367,63372,69,3480,1 +1368,63378,149,7467,1 +1369,63383,121,6087,1 +1370,63384,77,3862,1 +1371,63385,126,6318,1 +1372,63396,165,8283,1 +1373,63408,131,6568,1 +1374,63408,145,7284,1 +1375,63408,61,3058,1 +1376,63421,101,5066,1 +1377,63427,99,4951,1 +1378,63435,145,7290,1 +1379,63444,143,7178,1 +1380,63459,129,6486,1 +1381,63480,183,9161,1 +1382,63481,42,2115,1 +1383,63516,59,2981,1 +1384,63576,198,9923,1 +1385,63877,6,346,1 +1386,63882,145,7256,1 +1387,63921,117,5870,1 +1388,64465,4,228,1 +1389,64813,91,4587,1 +1390,64887,21,1080,1 +1391,65280,38,1901,1 +1392,65283,61,3082,1 +1393,65283,8,448,1 +1394,65284,136,6821,1 +1395,65300,176,8810,1 +1396,65304,31,1577,1 +1397,65310,165,8276,1 +1398,65313,3,159,1 +1399,65313,110,5511,1 +1400,65316,57,2862,1 +1401,65331,51,2554,1 +1402,65340,37,1852,1 +1403,65348,136,6832,1 +1404,65358,79,3964,1 +1405,65604,171,8584,1 +1406,66253,7,375,1 +1407,66338,162,8140,1 +1408,66720,114,5728,1 +1409,66720,75,3770,1 +1410,66720,66,3318,1 +1411,66720,148,7429,1 +1412,66720,198,9924,1 +1413,66720,11,569,1 +1414,66720,96,4814,1 +1415,66720,46,2344,1 +1416,66720,69,3452,1 +1417,66721,62,3125,1 +1418,66721,121,6091,1 +1419,66721,119,5994,1 +1420,66722,158,7915,1 +1421,66722,190,9547,1 +1422,66722,169,8479,1 +1423,66723,197,9852,1 +1424,66723,13,685,1 +1425,66723,72,3612,1 +1426,66724,105,5254,1 +1427,66724,63,3187,1 +1428,66726,176,8836,1 +1429,66726,22,1113,1 +1430,66728,180,9027,1 +1431,66729,4,223,1 +1432,66731,29,1453,1 +1433,66732,37,1896,1 +1434,66732,65,3297,1 +1435,66732,32,1613,1 +1436,66732,91,4559,1 +1437,66732,152,7637,1 +1438,66732,93,4688,1 +1439,66732,131,6568,1 +1440,66732,15,777,1 +1441,66732,139,6957,1 +1442,66732,75,3785,1 +1443,66732,15,798,1 +1444,66732,57,2883,1 +1445,66732,53,2663,1 +1446,66733,17,872,1 +1447,66733,162,8127,1 +1448,66734,99,4975,1 +1449,66734,168,8404,1 +1450,66735,144,7224,1 +1451,66735,20,1009,1 +1452,66735,151,7578,1 +1453,66735,148,7445,1 +1454,66738,1,89,1 +1455,66738,136,6817,1 +1456,66741,36,1845,1 +1457,66741,155,7797,1 +1458,66741,184,9208,1 +1459,66742,20,1006,1 +1460,66742,107,5367,1 +1461,66742,149,7461,1 +1462,66744,192,9610,1 +1463,66744,118,5928,1 +1464,66744,77,3875,1 +1465,66744,83,4185,1 +1466,66744,110,5538,1 +1467,66745,138,6920,1 +1468,66745,38,1937,1 +1469,66745,63,3153,1 +1470,66745,186,9338,1 +1471,66746,150,7535,1 +1472,66747,15,781,1 +1473,66747,76,3826,1 +1474,66750,2,111,1 +1475,66751,133,6692,1 +1476,66752,183,9177,1 +1477,66753,94,4734,1 +1478,66756,120,6018,1 +1479,66756,65,3292,1 +1480,66756,77,3859,1 +1481,66756,39,1964,1 +1482,66756,90,4502,1 +1483,66756,179,8961,1 +1484,66756,107,5361,1 +1485,66757,167,8374,1 +1486,66757,192,9621,1 +1487,66757,99,4984,1 +1488,66757,91,4556,1 +1489,66758,68,3448,1 +1490,66758,105,5262,1 +1491,66763,139,6957,1 +1492,66765,144,7218,1 +1493,66768,27,1390,1 +1494,66768,56,2834,1 +1495,66768,24,1212,1 +1496,66768,177,8885,1 +1497,66768,33,1674,1 +1498,66768,91,4553,1 +1499,66768,41,2068,1 +1500,66770,170,8536,1 +1501,66771,24,1218,1 +1502,66774,56,2801,1 +1503,66774,184,9205,1 +1504,66778,82,4138,1 +1505,66780,93,4653,1 +1506,66780,156,7822,1 +1507,66780,102,5129,1 +1508,66783,192,9615,1 +1509,66783,149,7486,1 +1510,66783,189,9469,1 +1511,66784,194,9727,1 +1512,66786,107,5375,1 +1513,66789,31,1573,1 +1514,66792,66,3333,1 +1515,66793,23,1191,1 +1516,66793,39,1974,1 +1517,66793,156,7804,1 +1518,66795,125,6252,1 +1519,66802,90,4534,1 +1520,66804,13,699,1 +1521,66804,164,8214,1 +1522,66804,5,275,1 +1523,66804,23,1190,1 +1524,66805,161,8080,1 +1525,66805,49,2472,1 +1526,66805,135,6788,1 +1527,66805,36,1824,1 +1528,66805,7,357,1 +1529,66810,141,7067,1 +1530,66816,151,7599,1 +1531,66816,33,1688,1 +1532,66816,187,9379,1 +1533,66816,155,7761,1 +1534,66816,93,4688,1 +1535,66817,139,6958,1 +1536,66817,141,7071,1 +1537,66828,97,4875,1 +1538,66828,3,166,1 +1539,66829,90,4507,1 +1540,66829,36,1830,1 +1541,66838,62,3126,1 +1542,66840,62,3112,1 +1543,66842,40,2025,1 +1544,66849,49,2488,1 +1545,66855,159,7975,1 +1546,66864,170,8545,1 +1547,66864,67,3394,1 +1548,66864,25,1276,1 +1549,66865,117,5900,1 +1550,66876,174,8746,1 +1551,66876,150,7510,1 +1552,66882,87,4361,1 +1553,66888,120,6019,1 +1554,66892,32,1605,1 +1555,66898,192,9644,1 +1556,66898,72,3625,1 +1557,66900,137,6859,1 +1558,66901,156,7817,1 +1559,66908,104,5243,1 +1560,66911,36,1833,1 +1561,66924,113,5661,1 +1562,66972,53,2671,1 +1563,66987,194,9719,1 +1564,67008,157,7890,1 +1565,67026,112,5645,1 +1566,67060,127,6382,1 +1567,67200,136,6803,1 +1568,67201,45,2257,1 +1569,67202,176,8849,1 +1570,67209,165,8267,1 +1571,67212,45,2265,1 +1572,67212,73,3686,1 +1573,67212,84,4228,1 +1574,67213,40,2012,1 +1575,67214,67,3399,1 +1576,67215,33,1683,1 +1577,67224,104,5230,1 +1578,67225,110,5514,1 +1579,67236,188,9402,1 +1580,67239,33,1677,1 +1581,67260,186,9342,1 +1582,67275,174,8715,1 +1583,67285,29,1476,1 +1584,67285,19,998,1 +1585,67287,106,5342,1 +1586,67288,160,8003,1 +1587,67288,111,5585,1 +1588,67316,18,934,1 +1589,67332,171,8570,1 +1590,67356,15,776,1 +1591,67383,155,7770,1 +1592,67392,184,9233,1 +1593,67434,20,1049,1 +1594,67437,117,5880,1 +1595,67444,56,2809,1 +1596,67464,42,2144,1 +1597,67476,109,5467,1 +1598,67507,83,4156,1 +1599,67704,159,7980,1 +1600,67704,126,6347,1 +1601,67722,83,4184,1 +1602,67753,114,5732,1 +1603,67838,59,2985,1 +1604,67861,127,6379,1 +1605,68196,51,2595,1 +1606,68220,178,8940,1 +1607,68226,58,2904,1 +1608,68256,33,1656,1 +1609,68640,155,7796,1 +1610,68641,55,2777,1 +1611,68644,150,7533,1 +1612,68645,154,7709,1 +1613,68646,177,8861,1 +1614,68649,12,604,1 +1615,68652,167,8376,1 +1616,68652,68,3404,1 +1617,68653,15,758,1 +1618,68653,0,7,1 +1619,68665,90,4544,1 +1620,68676,112,5621,1 +1621,68676,67,3388,1 +1622,68688,156,7812,1 +1623,68691,101,5067,1 +1624,68703,88,4426,1 +1625,68712,192,9633,1 +1626,68712,73,3699,1 +1627,68721,10,530,1 +1628,68724,57,2869,1 +1629,68725,189,9463,1 +1630,68734,85,4260,1 +1631,68736,160,8001,1 +1632,68736,42,2136,1 +1633,68743,186,9311,1 +1634,68760,22,1109,1 +1635,68772,138,6912,1 +1636,68773,188,9424,1 +1637,69601,128,6443,1 +1638,69608,114,5742,1 +1639,69805,28,1406,1 +1640,70561,1,86,1 +1641,70587,151,7570,1 +1642,70609,108,5433,1 +1643,70609,67,3396,1 +1644,70611,121,6063,1 +1645,71521,81,4074,1 +1646,71532,82,4101,1 +1647,71565,88,4446,1 +1648,71568,44,2201,1 +1649,71592,168,8413,1 +1650,72000,91,4599,1 +1651,72013,31,1564,1 +1652,72021,136,6819,1 +1653,72025,69,3498,1 +1654,72038,168,8428,1 +1655,72040,142,7110,1 +1656,72060,69,3465,1 +1657,72090,56,2845,1 +1658,72096,154,7733,1 +1659,72108,160,8031,1 +1660,72117,134,6708,1 +1661,72144,126,6324,1 +1662,72220,42,2115,1 +1663,72498,184,9212,1 +1664,73441,155,7792,1 +1665,73452,16,801,1 +1666,73464,17,852,1 +1667,73466,129,6485,1 +1668,73477,97,4884,1 +1669,73502,87,4397,1 +1670,73536,191,9565,1 +1671,73549,192,9605,1 +1672,73716,10,519,1 +1673,73920,70,3544,1 +1674,73980,194,9732,1 +1675,74028,79,3964,1 +1676,74067,128,6421,1 +1677,74401,63,3169,1 +1678,74424,1,82,1 +1679,74436,71,3585,1 +1680,74449,90,4529,1 +1681,74463,183,9174,1 +1682,74520,25,1270,1 +1683,74520,185,9289,1 +1684,74581,51,2567,1 +1685,74880,104,5210,1 +1686,74880,151,7587,1 +1687,74893,45,2266,1 +1688,74896,77,3872,1 +1689,74898,121,6087,1 +1690,74916,197,9897,1 +1691,75045,147,7390,1 +1692,75046,13,654,1 +1693,75053,197,9886,1 +1694,75360,164,8203,1 +1695,75360,1,78,1 +1696,75396,134,6728,1 +1697,75411,190,9508,1 +1698,75417,174,8730,1 +1699,75427,123,6167,1 +1700,75433,118,5907,1 +1701,75480,18,950,1 +1702,75625,187,9362,1 +1703,75840,15,792,1 +1704,75840,118,5940,1 +1705,75841,47,2385,1 +1706,75843,31,1577,1 +1707,75852,23,1179,1 +1708,75852,36,1812,1 +1709,75858,40,2018,1 +1710,75867,175,8799,1 +1711,75876,197,9899,1 +1712,75876,46,2344,1 +1713,75887,47,2390,1 +1714,75888,119,5970,1 +1715,75888,93,4667,1 +1716,75892,188,9449,1 +1717,75900,165,8279,1 +1718,75903,180,9014,1 +1719,75924,144,7226,1 +1720,75925,45,2264,1 +1721,75937,43,2178,1 +1722,75945,117,5852,1 +1723,75948,157,7900,1 +1724,75952,84,4226,1 +1725,75972,82,4114,1 +1726,76327,2,126,1 +1727,76501,42,2126,1 +1728,76896,63,3194,1 +1729,77287,27,1363,1 +1730,77466,82,4123,1 +1731,77485,130,6549,1 +1732,77773,151,7562,1 +1733,77774,138,6926,1 +1734,77796,84,4213,1 +1735,77796,141,7059,1 +1736,77798,18,904,1 +1737,77821,177,8878,1 +1738,77835,34,1738,1 +1739,77853,127,6351,1 +1740,77868,25,1258,1 +1741,77880,23,1167,1 +1742,77931,115,5765,1 +1743,78252,192,9625,1 +1744,78254,165,8257,1 +1745,78255,162,8148,1 +1746,78269,135,6788,1 +1747,78285,6,337,1 +1748,78291,145,7252,1 +1749,78308,115,5794,1 +1750,78320,56,2815,1 +1751,78360,35,1784,1 +1752,78375,114,5736,1 +1753,78768,98,4903,1 +1754,78771,101,5069,1 +1755,78840,118,5922,1 +1756,78885,113,5686,1 +1757,79200,183,9151,1 +1758,79296,63,3196,1 +1759,79680,52,2633,1 +1760,79756,191,9562,1 +1761,79765,112,5649,1 +1762,79773,39,1967,1 +1763,79826,146,7328,1 +1764,80160,25,1273,1 +1765,80184,164,8216,1 +1766,80197,173,8659,1 +1767,80232,23,1169,1 +1768,80280,6,342,1 +1769,80436,128,6412,1 +1770,80656,83,4165,1 +1771,80661,82,4149,1 +1772,80664,151,7561,1 +1773,80664,41,2086,1 +1774,80689,82,4134,1 +1775,80704,114,5715,1 +1776,80772,172,8617,1 +1777,80784,128,6401,1 +1778,81139,93,4659,1 +1779,81195,35,1771,1 +1780,81279,196,9804,1 +1781,81600,195,9773,1 +1782,81617,162,8126,1 +1783,81624,185,9274,1 +1784,81660,97,4892,1 +1785,81661,18,925,1 +1786,81661,89,4460,1 +1787,81672,27,1398,1 +1788,81684,84,4226,1 +1789,81738,183,9156,1 +1790,81744,163,8169,1 +1791,82560,64,3227,1 +1792,82565,143,7151,1 +1793,82569,193,9665,1 +1794,82569,190,9501,1 +1795,82572,125,6266,1 +1796,82572,134,6729,1 +1797,82572,190,9548,1 +1798,82579,176,8846,1 +1799,82584,109,5458,1 +1800,82584,143,7160,1 +1801,82585,154,7746,1 +1802,82629,92,4623,1 +1803,82656,147,7385,1 +1804,82668,81,4093,1 +1805,82694,180,9005,1 +1806,82717,31,1565,1 +1807,82765,80,4050,1 +1808,83040,9,479,1 +1809,83041,187,9372,1 +1810,83052,80,4036,1 +1811,83055,128,6431,1 +1812,83064,106,5337,1 +1813,83064,107,5356,1 +1814,83067,40,2004,1 +1815,83070,68,3402,1 +1816,83076,120,6017,1 +1817,83090,195,9788,1 +1818,83097,140,7039,1 +1819,83101,30,1519,1 +1820,83106,47,2383,1 +1821,83130,101,5087,1 +1822,83245,172,8643,1 +1823,83256,198,9937,1 +1824,83316,131,6584,1 +1825,83520,95,4753,1 +1826,83521,86,4344,1 +1827,83526,127,6369,1 +1828,83532,56,2837,1 +1829,83532,124,6241,1 +1830,83532,133,6656,1 +1831,83539,127,6381,1 +1832,83539,45,2272,1 +1833,83541,141,7097,1 +1834,83544,181,9088,1 +1835,83545,86,4328,1 +1836,83554,178,8940,1 +1837,83556,186,9314,1 +1838,83556,125,6269,1 +1839,83557,63,3192,1 +1840,83558,62,3120,1 +1841,83559,33,1657,1 +1842,83562,180,9033,1 +1843,83568,144,7234,1 +1844,83568,43,2160,1 +1845,83569,4,209,1 +1846,83580,82,4106,1 +1847,83580,172,8627,1 +1848,83586,2,106,1 +1849,83625,129,6495,1 +1850,83640,77,3900,1 +1851,83642,8,431,1 +1852,83654,138,6908,1 +1853,83664,30,1523,1 +1854,84000,164,8245,1 +1855,84012,145,7253,1 +1856,84015,127,6396,1 +1857,84019,91,4596,1 +1858,84024,25,1252,1 +1859,84036,83,4198,1 +1860,84038,183,9195,1 +1861,84051,133,6688,1 +1862,84111,119,5991,1 +1863,84181,88,4443,1 +1864,84234,102,5144,1 +1865,84507,23,1192,1 +1866,84516,178,8928,1 +1867,84960,16,833,1 +1868,84960,2,142,1 +1869,84960,56,2845,1 +1870,84960,22,1133,1 +1871,84960,96,4845,1 +1872,84960,194,9734,1 +1873,84960,36,1831,1 +1874,84961,21,1064,1 +1875,84961,24,1218,1 +1876,84961,165,8261,1 +1877,84962,12,638,1 +1878,84963,142,7137,1 +1879,84964,47,2374,1 +1880,84966,137,6878,1 +1881,84966,136,6808,1 +1882,84969,87,4371,1 +1883,84972,76,3802,1 +1884,84972,162,8102,1 +1885,84972,195,9781,1 +1886,84972,75,3799,1 +1887,84972,110,5543,1 +1888,84973,74,3748,1 +1889,84973,143,7151,1 +1890,84973,96,4825,1 +1891,84975,118,5905,1 +1892,84975,28,1447,1 +1893,84978,156,7806,1 +1894,84978,79,3969,1 +1895,84981,37,1894,1 +1896,84984,144,7221,1 +1897,84984,80,4039,1 +1898,84984,191,9582,1 +1899,84984,34,1744,1 +1900,84985,4,206,1 +1901,84990,60,3027,1 +1902,84990,28,1448,1 +1903,84993,9,472,1 +1904,84996,98,4948,1 +1905,84996,70,3528,1 +1906,85001,82,4132,1 +1907,85002,57,2875,1 +1908,85006,50,2550,1 +1909,85008,78,3935,1 +1910,85008,177,8853,1 +1911,85008,57,2880,1 +1912,85009,169,8480,1 +1913,85011,47,2356,1 +1914,85021,53,2673,1 +1915,85021,163,8178,1 +1916,85023,12,636,1 +1917,85026,135,6776,1 +1918,85029,82,4116,1 +1919,85032,151,7576,1 +1920,85033,145,7253,1 +1921,85034,42,2121,1 +1922,85036,47,2370,1 +1923,85038,104,5221,1 +1924,85041,74,3725,1 +1925,85044,9,461,1 +1926,85047,73,3659,1 +1927,85048,151,7557,1 +1928,85053,140,7038,1 +1929,85054,175,8754,1 +1930,85056,36,1836,1 +1931,85057,185,9265,1 +1932,85059,160,8028,1 +1933,85068,135,6770,1 +1934,85069,28,1449,1 +1935,85080,43,2191,1 +1936,85081,142,7135,1 +1937,85092,58,2918,1 +1938,85104,45,2264,1 +1939,85113,9,457,1 +1940,85113,28,1408,1 +1941,85128,106,5343,1 +1942,85129,106,5345,1 +1943,85131,71,3563,1 +1944,85189,102,5119,1 +1945,85290,74,3736,1 +1946,85440,195,9782,1 +1947,85441,147,7365,1 +1948,85449,78,3902,1 +1949,85450,57,2865,1 +1950,85464,59,2993,1 +1951,85467,168,8431,1 +1952,85470,175,8797,1 +1953,85470,185,9281,1 +1954,85490,41,2071,1 +1955,85490,153,7671,1 +1956,85495,121,6056,1 +1957,85500,105,5288,1 +1958,85514,51,2561,1 +1959,85524,84,4231,1 +1960,85554,196,9834,1 +1961,85921,15,752,1 +1962,85929,31,1576,1 +1963,85933,28,1445,1 +1964,85934,117,5898,1 +1965,85956,79,3986,1 +1966,85957,117,5879,1 +1967,85968,148,7430,1 +1968,85968,78,3930,1 +1969,85982,50,2545,1 +1970,86029,194,9720,1 +1971,86400,69,3486,1 +1972,86402,41,2097,1 +1973,86403,55,2758,1 +1974,86409,186,9309,1 +1975,86412,83,4167,1 +1976,86421,120,6023,1 +1977,86425,60,3018,1 +1978,86426,161,8083,1 +1979,86427,100,5029,1 +1980,86429,98,4909,1 +1981,86432,188,9444,1 +1982,86438,193,9685,1 +1983,86439,148,7427,1 +1984,86448,175,8800,1 +1985,86448,74,3702,1 +1986,86452,175,8765,1 +1987,86497,71,3592,1 +1988,86512,99,4959,1 +1989,86520,102,5140,1 +1990,86580,154,7725,1 +1991,86880,142,7115,1 +1992,86880,43,2184,1 +1993,86880,10,511,1 +1994,86880,177,8889,1 +1995,86881,153,7658,1 +1996,86881,100,5026,1 +1997,86881,55,2798,1 +1998,86883,197,9889,1 +1999,86883,86,4314,1 +2000,86884,104,5208,1 +2001,86886,188,9436,1 +2002,86892,10,538,1 +2003,86892,197,9865,1 +2004,86892,0,26,1 +2005,86893,70,3505,1 +2006,86895,111,5564,1 +2007,86895,114,5705,1 +2008,86896,134,6726,1 +2009,86904,180,9044,1 +2010,86904,8,442,1 +2011,86904,83,4183,1 +2012,86905,31,1579,1 +2013,86905,10,529,1 +2014,86907,4,250,1 +2015,86917,21,1076,1 +2016,86919,122,6119,1 +2017,86919,20,1014,1 +2018,86920,162,8136,1 +2019,86928,37,1891,1 +2020,86938,156,7823,1 +2021,86952,45,2267,1 +2022,86953,10,521,1 +2023,86953,56,2825,1 +2024,86958,7,351,1 +2025,86958,112,5611,1 +2026,86961,90,4549,1 +2027,86964,124,6244,1 +2028,86988,25,1270,1 +2029,87003,138,6935,1 +2030,87024,91,4595,1 +2031,87037,199,9967,1 +2032,87078,149,7488,1 +2033,87115,30,1520,1 +2034,87122,37,1870,1 +2035,87361,171,8573,1 +2036,87363,10,510,1 +2037,87363,75,3792,1 +2038,87363,15,786,1 +2039,87363,72,3631,1 +2040,87373,196,9823,1 +2041,87384,124,6225,1 +2042,87384,116,5832,1 +2043,87390,71,3565,1 +2044,87393,159,7968,1 +2045,87399,10,505,1 +2046,87400,27,1372,1 +2047,87414,135,6786,1 +2048,87420,12,636,1 +2049,87420,156,7845,1 +2050,87432,109,5451,1 +2051,87433,62,3148,1 +2052,87456,147,7365,1 +2053,87565,198,9919,1 +2054,87840,174,8732,1 +2055,87852,191,9591,1 +2056,87877,69,3487,1 +2057,87888,6,346,1 +2058,87901,26,1320,1 +2059,87915,172,8626,1 +2060,87924,0,21,1 +2061,87977,128,6427,1 +2062,88326,139,6975,1 +2063,88406,163,8174,1 +2064,88800,5,279,1 +2065,88800,9,495,1 +2066,88800,179,8967,1 +2067,88800,193,9658,1 +2068,88800,52,2636,1 +2069,88800,106,5319,1 +2070,88800,14,737,1 +2071,88800,111,5588,1 +2072,88800,137,6895,1 +2073,88801,21,1093,1 +2074,88802,79,3998,1 +2075,88802,172,8631,1 +2076,88802,182,9147,1 +2077,88802,103,5158,1 +2078,88803,176,8830,1 +2079,88803,158,7908,1 +2080,88804,161,8056,1 +2081,88807,28,1407,1 +2082,88807,164,8250,1 +2083,88810,89,4493,1 +2084,88810,178,8919,1 +2085,88811,174,8706,1 +2086,88812,186,9312,1 +2087,88812,193,9654,1 +2088,88812,30,1519,1 +2089,88812,189,9468,1 +2090,88812,154,7748,1 +2091,88812,70,3502,1 +2092,88812,74,3721,1 +2093,88812,63,3162,1 +2094,88813,180,9022,1 +2095,88813,190,9548,1 +2096,88814,78,3909,1 +2097,88818,92,4634,1 +2098,88819,1,86,1 +2099,88821,114,5730,1 +2100,88821,20,1032,1 +2101,88824,102,5123,1 +2102,88824,31,1560,1 +2103,88824,153,7654,1 +2104,88824,121,6080,1 +2105,88824,32,1628,1 +2106,88824,40,2014,1 +2107,88825,189,9492,1 +2108,88825,158,7947,1 +2109,88826,172,8627,1 +2110,88827,98,4925,1 +2111,88828,147,7387,1 +2112,88831,198,9917,1 +2113,88833,4,242,1 +2114,88834,136,6848,1 +2115,88836,26,1318,1 +2116,88836,186,9348,1 +2117,88836,110,5537,1 +2118,88836,65,3261,1 +2119,88837,79,3992,1 +2120,88837,131,6574,1 +2121,88837,39,1992,1 +2122,88839,132,6603,1 +2123,88843,4,215,1 +2124,88848,58,2912,1 +2125,88848,37,1854,1 +2126,88848,51,2556,1 +2127,88848,76,3811,1 +2128,88848,12,645,1 +2129,88848,95,4774,1 +2130,88848,53,2698,1 +2131,88848,17,876,1 +2132,88848,36,1838,1 +2133,88849,83,4153,1 +2134,88852,147,7374,1 +2135,88860,90,4517,1 +2136,88860,156,7812,1 +2137,88860,163,8189,1 +2138,88860,189,9488,1 +2139,88861,18,909,1 +2140,88863,152,7639,1 +2141,88866,165,8267,1 +2142,88866,13,691,1 +2143,88869,15,769,1 +2144,88872,38,1916,1 +2145,88872,170,8511,1 +2146,88872,180,9001,1 +2147,88873,95,4751,1 +2148,88874,77,3897,1 +2149,88878,145,7265,1 +2150,88884,10,519,1 +2151,88884,25,1292,1 +2152,88884,148,7449,1 +2153,88884,122,6145,1 +2154,88884,187,9360,1 +2155,88885,50,2524,1 +2156,88889,90,4534,1 +2157,88893,16,810,1 +2158,88902,138,6938,1 +2159,88902,165,8262,1 +2160,88903,125,6289,1 +2161,88908,48,2437,1 +2162,88908,129,6478,1 +2163,88911,132,6637,1 +2164,88911,12,615,1 +2165,88914,177,8900,1 +2166,88917,60,3005,1 +2167,88920,83,4166,1 +2168,88920,107,5377,1 +2169,88933,4,243,1 +2170,88944,109,5465,1 +2171,88948,61,3100,1 +2172,88948,22,1120,1 +2173,88956,195,9792,1 +2174,89004,26,1307,1 +2175,89044,61,3069,1 +2176,89112,141,7058,1 +2177,89187,82,4125,1 +2178,89190,61,3078,1 +2179,89208,168,8413,1 +2180,89268,160,8035,1 +2181,89284,180,9013,1 +2182,89833,157,7881,1 +2183,90241,153,7669,1 +2184,90253,31,1584,1 +2185,90270,27,1353,1 +2186,90288,78,3913,1 +2187,90313,12,606,1 +2188,90744,124,6208,1 +2189,90804,61,3060,1 +2190,90840,58,2910,1 +2191,91200,147,7352,1 +2192,91203,122,6131,1 +2193,91203,100,5029,1 +2194,91209,104,5228,1 +2195,91224,82,4149,1 +2196,91236,104,5222,1 +2197,91237,55,2800,1 +2198,91260,42,2124,1 +2199,91269,195,9797,1 +2200,91284,100,5048,1 +2201,91311,36,1827,1 +2202,91314,78,3906,1 +2203,91329,69,3473,1 +2204,91687,178,8904,1 +2205,91692,119,5986,1 +2206,91693,55,2777,1 +2207,91704,115,5786,1 +2208,91704,46,2324,1 +2209,91717,16,821,1 +2210,91722,3,152,1 +2211,91725,75,3791,1 +2212,91728,35,1776,1 +2213,91729,13,658,1 +2214,91731,25,1299,1 +2215,91738,76,3807,1 +2216,91740,94,4710,1 +2217,91753,149,7481,1 +2218,91761,14,739,1 +2219,91770,37,1898,1 +2220,91770,174,8712,1 +2221,91776,62,3123,1 +2222,91778,30,1527,1 +2223,91872,16,846,1 +2224,92160,50,2547,1 +2225,92160,46,2313,1 +2226,92161,140,7044,1 +2227,92163,149,7473,1 +2228,92172,71,3563,1 +2229,92172,183,9167,1 +2230,92172,89,4451,1 +2231,92184,11,561,1 +2232,92184,86,4304,1 +2233,92196,191,9557,1 +2234,92208,190,9505,1 +2235,92208,39,1963,1 +2236,92211,144,7223,1 +2237,92219,12,648,1 +2238,92221,32,1604,1 +2239,92221,98,4915,1 +2240,92228,48,2441,1 +2241,92232,194,9739,1 +2242,92232,187,9361,1 +2243,92234,193,9666,1 +2244,92256,31,1590,1 +2245,92281,155,7800,1 +2246,92282,86,4317,1 +2247,92319,105,5258,1 +2248,92328,11,557,1 +2249,92651,36,1838,1 +2250,92652,54,2723,1 +2251,92697,110,5521,1 +2252,92730,101,5069,1 +2253,93680,18,905,1 +2254,94080,120,6025,1 +2255,94081,96,4807,1 +2256,94092,70,3520,1 +2257,94099,189,9464,1 +2258,94116,0,29,1 +2259,94119,184,9237,1 +2260,94128,87,4356,1 +2261,94130,116,5824,1 +2262,94140,62,3123,1 +2263,94141,3,187,1 +2264,94146,170,8502,1 +2265,94156,55,2769,1 +2266,94164,105,5278,1 +2267,94165,143,7152,1 +2268,94272,181,9055,1 +2269,94561,168,8405,1 +2270,94566,196,9820,1 +2271,94573,48,2440,1 +2272,94584,87,4364,1 +2273,94614,76,3814,1 +2274,94627,1,69,1 +2275,94632,149,7492,1 +2276,94668,178,8911,1 +2277,94673,27,1397,1 +2278,94692,61,3076,1 +2279,95145,57,2900,1 +2280,95520,34,1720,1 +2281,95538,29,1478,1 +2282,95538,32,1641,1 +2283,95589,95,4779,1 +2284,95599,177,8869,1 +2285,96024,150,7537,1 +2286,96030,8,419,1 +2287,96060,199,9967,1 +2288,96102,123,6164,1 +2289,96252,53,2668,1 +2290,96480,8,430,1 +2291,96481,105,5260,1 +2292,96492,91,4559,1 +2293,96648,106,5331,1 +2294,96960,171,8579,1 +2295,96962,146,7306,1 +2296,96987,196,9806,1 +2297,96997,30,1533,1 +2298,97068,163,8191,1 +2299,97440,13,663,1 +2300,97453,93,4651,1 +2301,97464,86,4310,1 +2302,97479,20,1006,1 +2303,97488,143,7187,1 +2304,97538,155,7795,1 +2305,97620,10,505,1 +2306,97920,199,9988,1 +2307,97932,29,1490,1 +2308,97934,87,4396,1 +2309,97934,117,5858,1 +2310,97959,110,5518,1 +2311,97963,107,5352,1 +2312,97965,132,6646,1 +2313,98078,53,2698,1 +2314,98080,143,7160,1 +2315,98649,45,2300,1 +2316,98905,7,379,1 +2317,98940,80,4021,1 +2318,98952,196,9836,1 +2319,98989,163,8181,1 +2320,99360,5,291,1 +2321,99361,32,1631,1 +2322,99364,58,2926,1 +2323,99444,188,9428,1 +2324,99444,25,1288,1 +2325,99474,82,4124,1 +2326,99493,21,1061,1 +2327,99841,35,1778,1 +2328,99861,59,2959,1 +2329,99865,26,1340,1 +2330,99867,17,881,1 +2331,99900,196,9809,1 +2332,99906,68,3442,1 +2333,99907,199,9979,1 +2334,100005,28,1419,1 +2335,100323,48,2412,1 +2336,100335,52,2619,1 +2337,100341,46,2337,1 +2338,100344,29,1483,1 +2339,100466,181,9055,1 +2340,100800,132,6641,1 +2341,100803,125,6291,1 +2342,100809,174,8738,1 +2343,100811,89,4455,1 +2344,100848,135,6782,1 +2345,100896,170,8545,1 +2346,101292,49,2457,1 +2347,101293,184,9235,1 +2348,101328,118,5931,1 +2349,101376,176,8808,1 +2350,101413,148,7436,1 +2351,102240,29,1468,1 +2352,102240,64,3241,1 +2353,102240,121,6088,1 +2354,102240,7,397,1 +2355,102241,186,9312,1 +2356,102252,40,2008,1 +2357,102252,7,377,1 +2358,102252,70,3537,1 +2359,102253,43,2167,1 +2360,102258,94,4732,1 +2361,102264,46,2350,1 +2362,102276,30,1542,1 +2363,102276,65,3262,1 +2364,102285,75,3751,1 +2365,102295,15,765,1 +2366,102312,132,6642,1 +2367,102357,35,1799,1 +2368,102720,66,3329,1 +2369,102796,172,8611,1 +2370,102852,75,3778,1 +2371,103200,57,2867,1 +2372,103203,152,7603,1 +2373,103204,23,1168,1 +2374,103207,12,601,1 +2375,103210,46,2324,1 +2376,103212,182,9150,1 +2377,103224,37,1858,1 +2378,103248,49,2492,1 +2379,103249,7,364,1 +2380,103272,11,584,1 +2381,103273,145,7279,1 +2382,103274,122,6117,1 +2383,103276,158,7908,1 +2384,103309,113,5688,1 +2385,104640,57,2869,1 +2386,104640,154,7722,1 +2387,104640,110,5523,1 +2388,104642,187,9398,1 +2389,104642,89,4459,1 +2390,104661,63,3178,1 +2391,104672,57,2879,1 +2392,104677,146,7334,1 +2393,104689,54,2705,1 +2394,104703,190,9520,1 +2395,104736,31,1596,1 +2396,104748,16,843,1 +2397,104757,63,3172,1 +2398,104772,18,943,1 +2399,104773,79,3999,1 +2400,104796,146,7303,1 +2401,104798,37,1863,1 +2402,104850,85,4292,1 +2403,104912,178,8938,1 +2404,104954,115,5796,1 +2405,105120,5,272,1 +2406,105129,113,5675,1 +2407,105133,181,9060,1 +2408,105601,136,6824,1 +2409,105612,14,714,1 +2410,105624,113,5685,1 +2411,105648,134,6724,1 +2412,105710,130,6532,1 +2413,105817,185,9254,1 +2414,106117,133,6697,1 +2415,106560,189,9485,1 +2416,106572,170,8520,1 +2417,106593,111,5595,1 +2418,107040,51,2594,1 +2419,107040,141,7086,1 +2420,107043,80,4004,1 +2421,107050,30,1517,1 +2422,107056,22,1125,1 +2423,107056,49,2469,1 +2424,107059,194,9704,1 +2425,107062,57,2894,1 +2426,107064,153,7678,1 +2427,107064,133,6685,1 +2428,107065,143,7172,1 +2429,107080,84,4201,1 +2430,107087,137,6855,1 +2431,107092,117,5877,1 +2432,107100,9,455,1 +2433,107100,87,4361,1 +2434,107101,177,8870,1 +2435,107116,48,2423,1 +2436,107124,198,9943,1 +2437,107137,175,8770,1 +2438,107169,120,6016,1 +2439,107184,70,3539,1 +2440,107199,2,114,1 +2441,107221,98,4901,1 +2442,107233,158,7936,1 +2443,107532,26,1333,1 +2444,107545,113,5673,1 +2445,107582,77,3853,1 +2446,108482,192,9612,1 +2447,108487,127,6360,1 +2448,108489,135,6787,1 +2449,108492,151,7552,1 +2450,108492,54,2750,1 +2451,108504,134,6737,1 +2452,108504,189,9465,1 +2453,108516,140,7016,1 +2454,108518,94,4745,1 +2455,108528,26,1343,1 +2456,108528,173,8691,1 +2457,108564,78,3912,1 +2458,108961,67,3365,1 +2459,108972,132,6650,1 +2460,108972,178,8918,1 +2461,108972,96,4845,1 +2462,108985,142,7116,1 +2463,109021,70,3546,1 +2464,109022,51,2580,1 +2465,109044,138,6927,1 +2466,109045,108,5417,1 +2467,109071,9,451,1 +2468,109440,96,4837,1 +2469,109440,55,2772,1 +2470,109440,160,8011,1 +2471,109440,70,3524,1 +2472,109440,146,7311,1 +2473,109441,131,6587,1 +2474,109441,196,9834,1 +2475,109442,160,8029,1 +2476,109442,65,3260,1 +2477,109443,83,4175,1 +2478,109443,121,6064,1 +2479,109447,61,3073,1 +2480,109447,11,583,1 +2481,109449,143,7173,1 +2482,109450,25,1273,1 +2483,109452,31,1597,1 +2484,109452,124,6229,1 +2485,109452,153,7656,1 +2486,109452,38,1926,1 +2487,109452,99,4997,1 +2488,109452,167,8398,1 +2489,109453,175,8797,1 +2490,109453,100,5015,1 +2491,109453,24,1231,1 +2492,109453,101,5098,1 +2493,109455,39,1983,1 +2494,109455,50,2550,1 +2495,109464,23,1162,1 +2496,109464,128,6406,1 +2497,109464,117,5891,1 +2498,109464,121,6060,1 +2499,109467,71,3584,1 +2500,109468,157,7879,1 +2501,109472,183,9162,1 +2502,109474,156,7839,1 +2503,109476,193,9672,1 +2504,109479,16,826,1 +2505,109488,192,9618,1 +2506,109488,2,103,1 +2507,109488,46,2339,1 +2508,109488,175,8796,1 +2509,109489,59,2954,1 +2510,109490,148,7419,1 +2511,109492,35,1794,1 +2512,109500,24,1228,1 +2513,109500,10,512,1 +2514,109500,32,1642,1 +2515,109502,100,5009,1 +2516,109503,161,8069,1 +2517,109506,64,3218,1 +2518,109506,143,7198,1 +2519,109518,172,8619,1 +2520,109521,3,188,1 +2521,109523,185,9258,1 +2522,109537,87,4376,1 +2523,109537,10,512,1 +2524,109548,73,3669,1 +2525,109548,81,4057,1 +2526,109548,94,4713,1 +2527,109551,151,7587,1 +2528,109560,131,6589,1 +2529,109561,193,9672,1 +2530,109567,50,2546,1 +2531,109572,117,5880,1 +2532,109572,66,3315,1 +2533,109590,7,368,1 +2534,109597,158,7905,1 +2535,109602,50,2529,1 +2536,109608,37,1857,1 +2537,109609,173,8685,1 +2538,109648,125,6254,1 +2539,109735,51,2600,1 +2540,109920,16,822,1 +2541,109938,67,3391,1 +2542,109945,91,4584,1 +2543,109953,44,2241,1 +2544,109972,127,6388,1 +2545,109992,108,5450,1 +2546,110006,33,1696,1 +2547,110052,126,6338,1 +2548,110056,191,9563,1 +2549,110400,41,2083,1 +2550,110402,59,2971,1 +2551,110406,189,9451,1 +2552,110455,37,1885,1 +2553,110484,128,6442,1 +2554,110499,186,9315,1 +2555,110502,178,8901,1 +2556,110514,127,6356,1 +2557,110546,104,5239,1 +2558,110601,166,8327,1 +2559,110881,0,29,1 +2560,110881,101,5093,1 +2561,110881,36,1817,1 +2562,110884,75,3758,1 +2563,110892,181,9076,1 +2564,110892,185,9264,1 +2565,110893,156,7818,1 +2566,110897,92,4603,1 +2567,110916,181,9086,1 +2568,110916,137,6897,1 +2569,110917,93,4667,1 +2570,110922,196,9829,1 +2571,110928,91,4579,1 +2572,110929,101,5082,1 +2573,110937,117,5886,1 +2574,110940,86,4342,1 +2575,110943,172,8622,1 +2576,110952,51,2587,1 +2577,110956,78,3949,1 +2578,110962,46,2332,1 +2579,110972,2,116,1 +2580,111002,108,5426,1 +2581,111003,91,4593,1 +2582,111004,134,6736,1 +2583,111009,121,6081,1 +2584,111223,183,9181,1 +2585,111360,137,6873,1 +2586,111360,174,8730,1 +2587,111361,56,2847,1 +2588,111361,23,1185,1 +2589,111365,181,9098,1 +2590,111372,28,1414,1 +2591,111372,30,1517,1 +2592,111373,18,942,1 +2593,111374,133,6699,1 +2594,111378,112,5605,1 +2595,111381,121,6084,1 +2596,111384,78,3916,1 +2597,111385,114,5728,1 +2598,111391,68,3412,1 +2599,111396,150,7523,1 +2600,111406,1,76,1 +2601,111408,57,2897,1 +2602,111409,77,3894,1 +2603,111444,23,1151,1 +2604,111445,119,5971,1 +2605,111447,85,4295,1 +2606,111450,194,9712,1 +2607,111456,88,4404,1 +2608,111456,74,3737,1 +2609,111469,31,1595,1 +2610,111471,46,2344,1 +2611,111506,55,2758,1 +2612,111589,30,1535,1 +2613,111600,81,4062,1 +2614,111607,123,6195,1 +2615,111614,136,6829,1 +2616,111840,82,4109,1 +2617,111841,177,8870,1 +2618,111856,161,8083,1 +2619,111858,74,3737,1 +2620,111864,78,3924,1 +2621,111906,153,7689,1 +2622,111961,112,5606,1 +2623,111965,65,3259,1 +2624,112104,0,29,1 +2625,112323,84,4208,1 +2626,112332,72,3649,1 +2627,112333,168,8450,1 +2628,112344,149,7453,1 +2629,112369,36,1825,1 +2630,112800,142,7129,1 +2631,112800,45,2275,1 +2632,112802,21,1096,1 +2633,112812,162,8126,1 +2634,112812,38,1920,1 +2635,112824,157,7873,1 +2636,112824,186,9339,1 +2637,112826,22,1128,1 +2638,112827,158,7923,1 +2639,112828,57,2876,1 +2640,112837,138,6923,1 +2641,112857,174,8731,1 +2642,113304,103,5189,1 +2643,113760,49,2451,1 +2644,113784,16,808,1 +2645,113830,139,6962,1 +2646,113910,170,8546,1 +2647,114240,117,5852,1 +2648,114240,143,7184,1 +2649,114241,67,3357,1 +2650,114247,4,221,1 +2651,114252,141,7062,1 +2652,114252,20,1031,1 +2653,114264,188,9406,1 +2654,114279,140,7009,1 +2655,114300,56,2840,1 +2656,114300,164,8207,1 +2657,114300,110,5516,1 +2658,114322,128,6412,1 +2659,114324,36,1811,1 +2660,114342,36,1846,1 +2661,114349,140,7044,1 +2662,114421,12,638,1 +2663,114436,196,9813,1 +2664,114868,20,1044,1 +2665,115225,132,6635,1 +2666,115227,199,9978,1 +2667,115245,75,3753,1 +2668,115281,67,3381,1 +2669,115365,52,2644,1 +2670,115680,69,3483,1 +2671,115680,111,5581,1 +2672,115693,171,8589,1 +2673,115694,122,6104,1 +2674,115728,48,2427,1 +2675,115752,162,8131,1 +2676,115765,27,1400,1 +2677,115776,53,2697,1 +2678,116640,107,5376,1 +2679,116641,170,8537,1 +2680,117121,136,6827,1 +2681,117127,95,4766,1 +2682,117138,187,9371,1 +2683,117175,69,3483,1 +2684,117207,110,5544,1 +2685,117216,98,4929,1 +2686,118129,68,3414,1 +2687,118146,180,9020,1 +2688,118272,53,2682,1 +2689,119040,157,7876,1 +2690,119050,111,5552,1 +2691,119050,198,9921,1 +2692,119058,94,4728,1 +2693,119064,8,407,1 +2694,119088,52,2643,1 +2695,119089,162,8122,1 +2696,119098,146,7340,1 +2697,119185,177,8855,1 +2698,119196,53,2667,1 +2699,119208,103,5171,1 +2700,119309,164,8212,1 +2701,119568,32,1646,1 +2702,120000,173,8687,1 +2703,120029,21,1052,1 +2704,120960,120,6006,1 +2705,120960,41,2085,1 +2706,120966,17,886,1 +2707,120972,44,2203,1 +2708,120975,66,3323,1 +2709,120976,134,6717,1 +2710,120977,160,8024,1 +2711,120979,96,4839,1 +2712,120996,106,5339,1 +2713,121018,190,9506,1 +2714,121020,64,3245,1 +2715,121044,146,7301,1 +2716,121077,55,2789,1 +2717,121143,99,4976,1 +2718,121285,119,5985,1 +2719,121470,27,1358,1 +2720,121473,107,5351,1 +2721,121488,182,9132,1 +2722,121550,142,7137,1 +2723,121588,175,8753,1 +2724,121944,63,3168,1 +2725,121944,63,3177,1 +2726,121956,192,9607,1 +2727,121974,158,7919,1 +2728,121980,11,587,1 +2729,121981,28,1421,1 +2730,121993,162,8150,1 +2731,122004,117,5867,1 +2732,122400,180,9035,1 +2733,122460,73,3698,1 +2734,122499,195,9783,1 +2735,122608,182,9142,1 +2736,122882,160,8009,1 +2737,122905,99,4981,1 +2738,122907,114,5708,1 +2739,122928,188,9402,1 +2740,122952,183,9169,1 +2741,122964,39,1971,1 +2742,123209,113,5688,1 +2743,123361,57,2865,1 +2744,123372,140,7047,1 +2745,123385,126,6308,1 +2746,123388,54,2711,1 +2747,123396,150,7545,1 +2748,123400,124,6203,1 +2749,123410,168,8407,1 +2750,123412,50,2519,1 +2751,123420,29,1492,1 +2752,123426,108,5440,1 +2753,123438,37,1891,1 +2754,123480,20,1006,1 +2755,123528,74,3704,1 +2756,123543,24,1219,1 +2757,123865,165,8297,1 +2758,123866,182,9124,1 +2759,123888,85,4282,1 +2760,124320,185,9256,1 +2761,124323,92,4630,1 +2762,124332,113,5663,1 +2763,124332,98,4907,1 +2764,124365,108,5441,1 +2765,124380,50,2541,1 +2766,124392,121,6074,1 +2767,124405,157,7894,1 +2768,124406,27,1359,1 +2769,124536,78,3926,1 +2770,124800,55,2773,1 +2771,124800,62,3113,1 +2772,124800,197,9853,1 +2773,124800,195,9796,1 +2774,124801,117,5873,1 +2775,124806,146,7349,1 +2776,124813,94,4734,1 +2777,124814,61,3052,1 +2778,124815,100,5045,1 +2779,124848,128,6422,1 +2780,124857,197,9899,1 +2781,124884,112,5612,1 +2782,124886,5,261,1 +2783,124897,35,1789,1 +2784,124924,131,6558,1 +2785,125103,119,5968,1 +2786,125280,50,2515,1 +2787,125281,95,4755,1 +2788,125281,186,9338,1 +2789,125282,0,29,1 +2790,125292,157,7895,1 +2791,125295,123,6155,1 +2792,125295,195,9788,1 +2793,125298,153,7652,1 +2794,125316,82,4136,1 +2795,125333,25,1279,1 +2796,125335,30,1525,1 +2797,125337,130,6546,1 +2798,125344,35,1753,1 +2799,125345,169,8465,1 +2800,125356,148,7411,1 +2801,125364,129,6470,1 +2802,125425,92,4646,1 +2803,125775,35,1768,1 +2804,125776,96,4831,1 +2805,125880,20,1024,1 +2806,125918,38,1935,1 +2807,126294,91,4582,1 +2808,126372,78,3930,1 +2809,126724,154,7706,1 +2810,126741,76,3824,1 +2811,126747,160,8046,1 +2812,126748,163,8153,1 +2813,126831,173,8689,1 +2814,128161,58,2905,1 +2815,128161,74,3739,1 +2816,128169,188,9427,1 +2817,128172,137,6890,1 +2818,128173,52,2624,1 +2819,128196,111,5600,1 +2820,128220,141,7075,1 +2821,128226,21,1079,1 +2822,128238,124,6230,1 +2823,128245,109,5464,1 +2824,128245,164,8228,1 +2825,128259,63,3151,1 +2826,128269,69,3496,1 +2827,128305,51,2581,1 +2828,128463,102,5140,1 +2829,128640,44,2233,1 +2830,128658,42,2132,1 +2831,128715,39,1961,1 +2832,128727,36,1825,1 +2833,128748,196,9815,1 +2834,129162,77,3879,1 +2835,129180,157,7893,1 +2836,129600,13,697,1 +2837,129600,68,3401,1 +2838,129600,131,6557,1 +2839,129600,123,6184,1 +2840,129600,39,1990,1 +2841,129600,150,7541,1 +2842,129600,177,8877,1 +2843,129600,67,3380,1 +2844,129601,126,6322,1 +2845,129601,186,9340,1 +2846,129601,119,5965,1 +2847,129601,6,332,1 +2848,129603,74,3750,1 +2849,129603,43,2174,1 +2850,129604,32,1640,1 +2851,129606,56,2807,1 +2852,129607,136,6809,1 +2853,129610,199,9990,1 +2854,129612,126,6323,1 +2855,129612,135,6789,1 +2856,129612,48,2448,1 +2857,129612,16,813,1 +2858,129612,48,2441,1 +2859,129612,17,866,1 +2860,129612,9,490,1 +2861,129613,144,7245,1 +2862,129614,67,3389,1 +2863,129618,163,8187,1 +2864,129622,160,8004,1 +2865,129624,145,7285,1 +2866,129624,156,7819,1 +2867,129624,169,8488,1 +2868,129624,178,8948,1 +2869,129624,16,819,1 +2870,129627,90,4533,1 +2871,129627,76,3848,1 +2872,129628,122,6113,1 +2873,129628,114,5711,1 +2874,129631,103,5183,1 +2875,129633,114,5719,1 +2876,129636,152,7632,1 +2877,129636,127,6383,1 +2878,129636,63,3194,1 +2879,129636,20,1028,1 +2880,129636,195,9778,1 +2881,129636,115,5774,1 +2882,129636,196,9805,1 +2883,129637,55,2777,1 +2884,129637,19,959,1 +2885,129637,26,1329,1 +2886,129642,165,8260,1 +2887,129642,26,1342,1 +2888,129643,90,4511,1 +2889,129643,158,7926,1 +2890,129645,157,7877,1 +2891,129648,178,8948,1 +2892,129648,85,4292,1 +2893,129648,73,3673,1 +2894,129648,167,8389,1 +2895,129648,119,5970,1 +2896,129648,40,2025,1 +2897,129649,194,9731,1 +2898,129650,156,7828,1 +2899,129650,161,8071,1 +2900,129651,37,1862,1 +2901,129652,67,3362,1 +2902,129652,188,9437,1 +2903,129656,134,6707,1 +2904,129660,44,2202,1 +2905,129660,127,6379,1 +2906,129660,178,8930,1 +2907,129666,98,4918,1 +2908,129668,68,3406,1 +2909,129672,36,1843,1 +2910,129672,143,7196,1 +2911,129672,181,9081,1 +2912,129673,108,5425,1 +2913,129684,1,83,1 +2914,129684,8,443,1 +2915,129685,32,1618,1 +2916,129693,93,4666,1 +2917,129696,126,6303,1 +2918,129697,115,5784,1 +2919,129698,148,7417,1 +2920,129702,29,1475,1 +2921,129704,6,307,1 +2922,129705,48,2426,1 +2923,129705,141,7071,1 +2924,129711,74,3744,1 +2925,129715,172,8639,1 +2926,129718,35,1767,1 +2927,129720,108,5412,1 +2928,129732,38,1915,1 +2929,129735,76,3804,1 +2930,129744,181,9093,1 +2931,129746,153,7688,1 +2932,129747,131,6576,1 +2933,129792,45,2262,1 +2934,129795,140,7045,1 +2935,129805,181,9098,1 +2936,129840,83,4174,1 +2937,130080,78,3945,1 +2938,130086,65,3265,1 +2939,130088,164,8214,1 +2940,130092,52,2642,1 +2941,130104,21,1055,1 +2942,130116,182,9143,1 +2943,130116,192,9641,1 +2944,130204,11,599,1 +2945,130392,2,134,1 +2946,130572,62,3145,1 +2947,130588,21,1081,1 +2948,130590,74,3708,1 +2949,130623,160,8037,1 +2950,131040,129,6489,1 +2951,131046,139,6996,1 +2952,131055,92,4646,1 +2953,131064,58,2945,1 +2954,131064,149,7481,1 +2955,131076,4,209,1 +2956,131076,68,3428,1 +2957,131078,33,1699,1 +2958,131085,62,3125,1 +2959,131088,89,4477,1 +2960,131119,128,6449,1 +2961,131124,171,8555,1 +2962,131125,121,6099,1 +2963,131133,36,1825,1 +2964,131137,194,9715,1 +2965,131148,56,2827,1 +2966,131148,139,6954,1 +2967,131187,150,7548,1 +2968,131208,171,8553,1 +2969,132000,134,6710,1 +2970,132000,140,7023,1 +2971,132000,144,7239,1 +2972,132002,148,7446,1 +2973,132005,46,2305,1 +2974,132007,24,1205,1 +2975,132012,138,6907,1 +2976,132012,133,6699,1 +2977,132013,40,2038,1 +2978,132021,98,4917,1 +2979,132024,66,3315,1 +2980,132036,199,9973,1 +2981,132037,165,8271,1 +2982,132048,157,7868,1 +2983,132048,109,5473,1 +2984,132050,21,1067,1 +2985,132068,126,6348,1 +2986,132084,75,3754,1 +2987,132087,21,1072,1 +2988,132097,39,1965,1 +2989,132102,67,3381,1 +2990,132291,19,968,1 +2991,132480,7,393,1 +2992,132493,66,3333,1 +2993,132516,18,924,1 +2994,132520,54,2711,1 +2995,132624,193,9681,1 +2996,132642,77,3885,1 +2997,132651,149,7477,1 +2998,132960,147,7397,1 +2999,132972,29,1482,1 +3000,132984,195,9796,1 +3001,132985,117,5875,1 +3002,133005,60,3023,1 +3003,133021,11,594,1 +3004,133452,141,7056,1 +3005,133452,162,8147,1 +3006,133465,40,2041,1 +3007,133545,138,6920,1 +3008,133926,14,731,1 +3009,133929,144,7217,1 +3010,133932,19,974,1 +3011,133932,69,3454,1 +3012,133932,57,2861,1 +3013,133933,64,3213,1 +3014,133945,14,713,1 +3015,133952,27,1381,1 +3016,133956,130,6507,1 +3017,133968,39,1968,1 +3018,133983,20,1015,1 +3019,134022,118,5911,1 +3020,134041,100,5037,1 +3021,134068,10,526,1 +3022,134400,157,7881,1 +3023,134436,65,3277,1 +3024,134439,158,7910,1 +3025,134441,13,672,1 +3026,134880,155,7757,1 +3027,134883,34,1749,1 +3028,134894,14,747,1 +3029,134952,104,5208,1 +3030,134953,56,2813,1 +3031,135036,77,3879,1 +3032,135384,106,5327,1 +3033,135388,52,2623,1 +3034,135396,13,655,1 +3035,135409,88,4439,1 +3036,135432,135,6787,1 +3037,135444,17,883,1 +3038,135745,124,6231,1 +3039,135840,198,9918,1 +3040,135841,66,3316,1 +3041,135841,28,1437,1 +3042,135843,53,2683,1 +3043,135846,83,4187,1 +3044,135855,25,1251,1 +3045,135864,129,6457,1 +3046,135865,138,6911,1 +3047,135865,79,3986,1 +3048,135866,95,4795,1 +3049,135873,83,4159,1 +3050,135876,125,6286,1 +3051,135877,75,3752,1 +3052,135888,168,8420,1 +3053,135889,144,7245,1 +3054,135928,159,7982,1 +3055,135936,87,4374,1 +3056,135960,127,6382,1 +3057,135984,87,4386,1 +3058,136032,146,7345,1 +3059,136053,41,2060,1 +3060,136320,141,7056,1 +3061,136320,138,6917,1 +3062,136320,100,5040,1 +3063,136321,190,9526,1 +3064,136321,132,6626,1 +3065,136322,18,904,1 +3066,136323,88,4427,1 +3067,136323,9,495,1 +3068,136326,18,931,1 +3069,136328,42,2118,1 +3070,136332,129,6472,1 +3071,136333,45,2286,1 +3072,136334,167,8369,1 +3073,136335,58,2933,1 +3074,136341,19,965,1 +3075,136345,87,4377,1 +3076,136345,96,4840,1 +3077,136357,189,9487,1 +3078,136362,44,2222,1 +3079,136369,159,7981,1 +3080,136369,11,555,1 +3081,136381,39,1956,1 +3082,136404,63,3197,1 +3083,136410,100,5017,1 +3084,136410,115,5756,1 +3085,136416,88,4441,1 +3086,136416,138,6934,1 +3087,136416,6,338,1 +3088,136416,124,6230,1 +3089,136440,141,7055,1 +3090,136441,60,3046,1 +3091,136442,86,4336,1 +3092,136452,186,9320,1 +3093,136452,12,616,1 +3094,136457,124,6226,1 +3095,136465,17,876,1 +3096,136494,148,7428,1 +3097,136500,190,9504,1 +3098,136549,139,6964,1 +3099,136920,128,6438,1 +3100,137316,126,6344,1 +3101,137376,98,4910,1 +3102,137850,82,4119,1 +3103,138242,77,3888,1 +3104,138246,8,403,1 +3105,138252,64,3203,1 +3106,138265,148,7420,1 +3107,138265,45,2265,1 +3108,138277,150,7545,1 +3109,138289,148,7408,1 +3110,138295,63,3200,1 +3111,138348,50,2516,1 +3112,138432,190,9511,1 +3113,138720,43,2191,1 +3114,138720,187,9353,1 +3115,138729,167,8351,1 +3116,138733,198,9941,1 +3117,138736,56,2845,1 +3118,138768,128,6442,1 +3119,138775,138,6906,1 +3120,138780,72,3639,1 +3121,138805,197,9855,1 +3122,138810,166,8307,1 +3123,139681,188,9411,1 +3124,139683,186,9321,1 +3125,139692,46,2304,1 +3126,139718,37,1874,1 +3127,139729,179,8961,1 +3128,139752,151,7582,1 +3129,139801,21,1083,1 +3130,139935,48,2419,1 +3131,140160,110,5534,1 +3132,140160,132,6650,1 +3133,140160,75,3777,1 +3134,140160,46,2324,1 +3135,140160,30,1514,1 +3136,140160,124,6233,1 +3137,140161,68,3407,1 +3138,140162,128,6404,1 +3139,140163,17,882,1 +3140,140163,132,6617,1 +3141,140163,34,1739,1 +3142,140164,21,1078,1 +3143,140166,99,4979,1 +3144,140168,78,3917,1 +3145,140170,95,4761,1 +3146,140171,128,6433,1 +3147,140172,39,1984,1 +3148,140172,22,1125,1 +3149,140172,38,1906,1 +3150,140173,1,84,1 +3151,140175,23,1185,1 +3152,140179,162,8103,1 +3153,140179,21,1098,1 +3154,140184,119,5991,1 +3155,140184,99,4996,1 +3156,140184,115,5778,1 +3157,140184,113,5666,1 +3158,140184,87,4395,1 +3159,140185,157,7895,1 +3160,140191,61,3076,1 +3161,140191,174,8718,1 +3162,140199,37,1881,1 +3163,140199,7,360,1 +3164,140199,65,3277,1 +3165,140202,37,1879,1 +3166,140208,71,3555,1 +3167,140208,194,9730,1 +3168,140209,106,5328,1 +3169,140211,96,4813,1 +3170,140220,68,3438,1 +3171,140220,148,7402,1 +3172,140220,99,4981,1 +3173,140221,82,4117,1 +3174,140224,48,2433,1 +3175,140230,98,4910,1 +3176,140232,63,3176,1 +3177,140233,57,2899,1 +3178,140238,64,3213,1 +3179,140241,126,6327,1 +3180,140244,6,344,1 +3181,140244,30,1502,1 +3182,140245,57,2866,1 +3183,140250,70,3549,1 +3184,140251,97,4855,1 +3185,140256,158,7912,1 +3186,140256,116,5826,1 +3187,140262,138,6944,1 +3188,140263,172,8639,1 +3189,140264,37,1888,1 +3190,140277,126,6337,1 +3191,140283,105,5300,1 +3192,140292,136,6848,1 +3193,140293,138,6906,1 +3194,140304,127,6386,1 +3195,140412,97,4874,1 +3196,140640,96,4838,1 +3197,140646,111,5567,1 +3198,140652,192,9636,1 +3199,140652,180,9006,1 +3200,140668,6,306,1 +3201,140676,62,3147,1 +3202,140676,112,5620,1 +3203,140679,115,5762,1 +3204,140682,187,9372,1 +3205,140701,62,3105,1 +3206,140712,154,7721,1 +3207,140736,45,2259,1 +3208,140761,67,3361,1 +3209,140871,175,8781,1 +3210,141157,29,1451,1 +3211,141273,142,7135,1 +3212,141600,115,5789,1 +3213,141601,24,1243,1 +3214,141610,61,3089,1 +3215,141614,2,143,1 +3216,141625,147,7376,1 +3217,141692,100,5033,1 +3218,142082,112,5602,1 +3219,142084,5,269,1 +3220,142098,44,2239,1 +3221,142104,182,9133,1 +3222,142143,41,2082,1 +3223,142201,94,4723,1 +3224,142564,170,8545,1 +3225,142570,178,8945,1 +3226,142596,147,7355,1 +3227,142692,19,992,1 +3228,143040,86,4317,1 +3229,143124,185,9274,1 +3230,143148,6,301,1 +3231,143148,168,8442,1 +3232,143520,3,191,1 +3233,143521,92,4617,1 +3234,143521,82,4135,1 +3235,143523,113,5668,1 +3236,143530,132,6647,1 +3237,143545,179,8988,1 +3238,143568,134,6720,1 +3239,143592,30,1550,1 +3240,144489,140,7016,1 +3241,144492,93,4699,1 +3242,144507,109,5463,1 +3243,144961,181,9065,1 +3244,144973,169,8485,1 +3245,144973,190,9501,1 +3246,144984,195,9797,1 +3247,145025,168,8404,1 +3248,145039,148,7413,1 +3249,145451,186,9320,1 +3250,145458,149,7458,1 +3251,145461,88,4435,1 +3252,145502,56,2840,1 +3253,145548,24,1224,1 +3254,145549,56,2811,1 +3255,145590,72,3643,1 +3256,145944,28,1426,1 +3257,145956,80,4013,1 +3258,145993,9,479,1 +3259,146005,108,5442,1 +3260,146013,133,6667,1 +3261,146030,147,7369,1 +3262,146034,187,9399,1 +3263,146035,127,6380,1 +3264,146065,119,5979,1 +3265,146108,34,1720,1 +3266,146400,1,64,1 +3267,146412,63,3181,1 +3268,146436,199,9972,1 +3269,146493,131,6587,1 +3270,146509,62,3102,1 +3271,146554,46,2316,1 +3272,146605,127,6391,1 +3273,146880,177,8897,1 +3274,146880,114,5704,1 +3275,146881,119,5970,1 +3276,146881,138,6901,1 +3277,146892,131,6581,1 +3278,146893,37,1864,1 +3279,146901,83,4190,1 +3280,146901,34,1721,1 +3281,146904,1,80,1 +3282,146904,69,3476,1 +3283,146913,98,4925,1 +3284,146916,23,1186,1 +3285,146917,171,8558,1 +3286,146919,5,295,1 +3287,146919,81,4078,1 +3288,146928,75,3778,1 +3289,146929,84,4209,1 +3290,146935,117,5898,1 +3291,146940,104,5205,1 +3292,146958,6,318,1 +3293,146964,189,9491,1 +3294,147002,177,8897,1 +3295,147061,107,5381,1 +3296,147144,117,5867,1 +3297,147589,96,4850,1 +3298,147841,184,9201,1 +3299,147843,56,2823,1 +3300,147843,98,4924,1 +3301,147843,92,4622,1 +3302,147844,175,8774,1 +3303,147849,53,2658,1 +3304,147864,79,3969,1 +3305,147867,18,917,1 +3306,147913,84,4239,1 +3307,147924,194,9730,1 +3308,147936,177,8854,1 +3309,147948,183,9197,1 +3310,147979,53,2681,1 +3311,148056,172,8648,1 +3312,148320,74,3712,1 +3313,148320,124,6244,1 +3314,148322,67,3364,1 +3315,148332,7,394,1 +3316,148333,160,8045,1 +3317,148356,23,1173,1 +3318,148359,109,5491,1 +3319,148466,163,8182,1 +3320,148512,15,799,1 +3321,148800,4,234,1 +3322,148802,83,4160,1 +3323,148815,80,4042,1 +3324,148825,111,5559,1 +3325,148848,60,3017,1 +3326,148861,78,3925,1 +3327,148884,52,2643,1 +3328,148884,167,8360,1 +3329,148893,94,4734,1 +3330,148896,38,1935,1 +3331,148899,89,4452,1 +3332,148914,76,3828,1 +3333,148944,165,8279,1 +3334,149280,12,626,1 +3335,149280,92,4611,1 +3336,149282,182,9126,1 +3337,149292,164,8225,1 +3338,149293,117,5889,1 +3339,149304,19,995,1 +3340,149305,109,5480,1 +3341,149317,184,9208,1 +3342,149317,130,6531,1 +3343,149321,0,44,1 +3344,149325,85,4252,1 +3345,149352,90,4526,1 +3346,149359,45,2294,1 +3347,149379,82,4146,1 +3348,149773,188,9409,1 +3349,149775,193,9669,1 +3350,149799,89,4475,1 +3351,149832,174,8723,1 +3352,149844,169,8463,1 +3353,149846,117,5864,1 +3354,149870,58,2945,1 +3355,150240,197,9863,1 +3356,150252,73,3665,1 +3357,150291,23,1184,1 +3358,150337,60,3043,1 +3359,151236,150,7545,1 +3360,151680,165,8273,1 +3361,151680,179,8962,1 +3362,151728,157,7859,1 +3363,151848,45,2266,1 +3364,152176,65,3251,1 +3365,152176,148,7433,1 +3366,152187,123,6153,1 +3367,152269,6,343,1 +3368,152317,47,2371,1 +3369,152640,55,2781,1 +3370,152640,58,2933,1 +3371,152641,81,4096,1 +3372,152643,194,9709,1 +3373,152645,3,177,1 +3374,152649,6,327,1 +3375,152649,106,5308,1 +3376,152652,179,8961,1 +3377,152652,5,257,1 +3378,152652,53,2699,1 +3379,152652,196,9838,1 +3380,152652,126,6335,1 +3381,152652,162,8121,1 +3382,152652,198,9933,1 +3383,152655,183,9167,1 +3384,152664,76,3849,1 +3385,152664,77,3885,1 +3386,152664,4,215,1 +3387,152666,75,3785,1 +3388,152673,19,978,1 +3389,152674,87,4374,1 +3390,152676,114,5742,1 +3391,152677,96,4838,1 +3392,152677,15,765,1 +3393,152677,178,8913,1 +3394,152679,140,7004,1 +3395,152685,104,5224,1 +3396,152688,68,3423,1 +3397,152688,119,5985,1 +3398,152688,162,8128,1 +3399,152689,5,272,1 +3400,152689,69,3484,1 +3401,152691,121,6060,1 +3402,152695,160,8037,1 +3403,152697,65,3251,1 +3404,152697,42,2132,1 +3405,152700,108,5444,1 +3406,152700,18,922,1 +3407,152700,69,3463,1 +3408,152706,122,6145,1 +3409,152709,181,9090,1 +3410,152709,149,7477,1 +3411,152712,83,4176,1 +3412,152715,47,2384,1 +3413,152724,26,1347,1 +3414,152733,84,4227,1 +3415,152736,188,9403,1 +3416,152737,122,6137,1 +3417,152740,41,2058,1 +3418,152748,13,671,1 +3419,152748,94,4703,1 +3420,152763,43,2176,1 +3421,152928,154,7727,1 +3422,153120,145,7288,1 +3423,153121,194,9749,1 +3424,153122,134,6708,1 +3425,153125,53,2690,1 +3426,153132,52,2642,1 +3427,153133,66,3310,1 +3428,153134,197,9888,1 +3429,153134,125,6292,1 +3430,153144,159,7955,1 +3431,153144,158,7933,1 +3432,153150,136,6809,1 +3433,153156,130,6538,1 +3434,153156,151,7595,1 +3435,153168,41,2096,1 +3436,153181,90,4544,1 +3437,153185,82,4138,1 +3438,153213,164,8241,1 +3439,153241,170,8513,1 +3440,153245,87,4353,1 +3441,153601,44,2230,1 +3442,153601,128,6439,1 +3443,153638,78,3918,1 +3444,153678,85,4276,1 +3445,153687,186,9346,1 +3446,153691,1,59,1 +3447,154081,115,5755,1 +3448,154104,72,3648,1 +3449,154122,192,9615,1 +3450,154128,113,5658,1 +3451,154188,124,6215,1 +3452,154256,114,5737,1 +3453,154560,19,961,1 +3454,154561,149,7476,1 +3455,154561,190,9550,1 +3456,154562,156,7847,1 +3457,154562,56,2817,1 +3458,154568,10,518,1 +3459,154572,118,5932,1 +3460,154575,165,8291,1 +3461,154578,136,6815,1 +3462,154584,194,9750,1 +3463,154608,52,2617,1 +3464,154608,157,7865,1 +3465,154608,17,873,1 +3466,154656,104,5241,1 +3467,154669,121,6092,1 +3468,154680,63,3190,1 +3469,154730,172,8613,1 +3470,154752,6,303,1 +3471,155040,192,9626,1 +3472,155640,90,4542,1 +3473,156000,47,2358,1 +3474,156000,111,5584,1 +3475,156016,19,982,1 +3476,156018,179,8971,1 +3477,156024,81,4062,1 +3478,156030,103,5195,1 +3479,156036,173,8698,1 +3480,156036,161,8064,1 +3481,156180,0,17,1 +3482,156480,110,5508,1 +3483,156483,112,5609,1 +3484,156492,21,1051,1 +3485,156496,138,6950,1 +3486,156505,148,7421,1 +3487,156506,129,6472,1 +3488,156517,20,1035,1 +3489,156528,142,7125,1 +3490,156541,144,7204,1 +3491,156544,84,4226,1 +3492,156617,91,4572,1 +3493,156672,161,8096,1 +3494,156960,130,6533,1 +3495,156960,23,1173,1 +3496,156989,197,9853,1 +3497,157003,87,4366,1 +3498,157008,90,4520,1 +3499,157008,156,7810,1 +3500,157044,169,8479,1 +3501,157095,104,5213,1 +3502,157170,75,3780,1 +3503,157920,157,7865,1 +3504,157920,87,4384,1 +3505,157921,193,9692,1 +3506,157923,68,3442,1 +3507,157932,197,9894,1 +3508,157932,48,2443,1 +3509,157932,167,8396,1 +3510,157933,32,1630,1 +3511,157942,182,9146,1 +3512,157944,51,2570,1 +3513,157944,196,9821,1 +3514,157947,168,8417,1 +3515,157968,178,8923,1 +3516,157968,119,5959,1 +3517,157968,32,1604,1 +3518,157989,168,8422,1 +3519,157989,132,6619,1 +3520,157992,14,726,1 +3521,158002,18,930,1 +3522,158004,86,4342,1 +3523,158004,86,4301,1 +3524,158049,26,1321,1 +3525,158073,81,4100,1 +3526,158424,31,1568,1 +3527,158454,110,5505,1 +3528,158520,114,5740,1 +3529,158520,161,8076,1 +3530,158785,2,140,1 +3531,158880,56,2841,1 +3532,158880,5,268,1 +3533,158880,96,4841,1 +3534,158881,116,5840,1 +3535,158883,4,210,1 +3536,158892,24,1204,1 +3537,158893,169,8461,1 +3538,158904,81,4052,1 +3539,158905,163,8192,1 +3540,158905,196,9805,1 +3541,158906,118,5901,1 +3542,158917,73,3695,1 +3543,158928,4,232,1 +3544,158940,186,9309,1 +3545,158988,109,5477,1 +3546,159013,77,3879,1 +3547,159024,95,4792,1 +3548,159049,135,6765,1 +3549,159360,186,9304,1 +3550,159360,95,4774,1 +3551,159360,148,7436,1 +3552,159361,65,3253,1 +3553,159361,153,7670,1 +3554,159364,19,993,1 +3555,159366,136,6817,1 +3556,159374,59,2962,1 +3557,159374,129,6498,1 +3558,159381,0,5,1 +3559,159384,50,2519,1 +3560,159396,83,4184,1 +3561,159405,25,1263,1 +3562,159408,176,8808,1 +3563,159410,161,8100,1 +3564,159456,113,5655,1 +3565,159840,90,4541,1 +3566,159840,96,4805,1 +3567,159843,23,1163,1 +3568,159849,48,2412,1 +3569,159852,95,4766,1 +3570,159852,165,8268,1 +3571,159852,169,8474,1 +3572,159853,98,4927,1 +3573,159854,189,9490,1 +3574,159855,189,9456,1 +3575,159861,14,727,1 +3576,159864,53,2676,1 +3577,159876,172,8643,1 +3578,159876,0,35,1 +3579,159878,25,1296,1 +3580,159879,47,2374,1 +3581,159888,99,4973,1 +3582,159900,166,8345,1 +3583,159900,170,8541,1 +3584,159901,46,2305,1 +3585,159948,164,8209,1 +3586,159970,11,551,1 +3587,159972,80,4043,1 +3588,159985,40,2020,1 +3589,160012,76,3813,1 +3590,160039,106,5350,1 +3591,160333,171,8573,1 +3592,160338,3,163,1 +3593,160356,168,8439,1 +3594,160357,192,9626,1 +3595,160365,30,1533,1 +3596,160382,62,3128,1 +3597,160383,131,6563,1 +3598,160397,19,982,1 +3599,160404,118,5937,1 +3600,160404,49,2483,1 +3601,160416,188,9446,1 +3602,160800,8,408,1 +3603,160800,75,3792,1 +3604,160803,81,4100,1 +3605,160812,109,5477,1 +3606,160812,120,6042,1 +3607,160812,22,1108,1 +3608,160815,59,2994,1 +3609,160821,89,4500,1 +3610,160824,59,2951,1 +3611,160825,138,6911,1 +3612,160826,190,9509,1 +3613,160836,198,9935,1 +3614,160836,117,5887,1 +3615,160845,2,134,1 +3616,160848,106,5334,1 +3617,160849,127,6388,1 +3618,160849,28,1411,1 +3619,160853,113,5684,1 +3620,160861,15,777,1 +3621,160884,129,6464,1 +3622,160895,132,6643,1 +3623,160896,36,1818,1 +3624,160930,14,728,1 +3625,161280,174,8713,1 +3626,161292,53,2670,1 +3627,161293,158,7950,1 +3628,161301,160,8010,1 +3629,161304,109,5498,1 +3630,161352,109,5456,1 +3631,161365,185,9275,1 +3632,161367,179,8957,1 +3633,161368,27,1398,1 +3634,161382,77,3895,1 +3635,161448,70,3502,1 +3636,161581,173,8692,1 +3637,161760,128,6429,1 +3638,161761,29,1462,1 +3639,161763,181,9071,1 +3640,161784,1,81,1 +3641,162240,175,8795,1 +3642,162240,143,7185,1 +3643,162243,54,2729,1 +3644,162252,38,1931,1 +3645,162253,88,4446,1 +3646,162264,133,6669,1 +3647,162264,112,5617,1 +3648,162276,156,7806,1 +3649,162297,99,4968,1 +3650,162301,191,9575,1 +3651,162312,102,5150,1 +3652,162324,118,5942,1 +3653,162327,57,2886,1 +3654,162348,176,8849,1 +3655,162386,114,5725,1 +3656,162433,40,2035,1 +3657,162720,190,9542,1 +3658,162720,118,5937,1 +3659,162721,80,4006,1 +3660,162724,133,6656,1 +3661,162724,165,8270,1 +3662,162729,14,728,1 +3663,162732,111,5596,1 +3664,162739,178,8906,1 +3665,162744,14,720,1 +3666,162746,51,2568,1 +3667,162769,66,3311,1 +3668,162774,88,4418,1 +3669,162777,24,1206,1 +3670,162792,7,373,1 +3671,162912,106,5317,1 +3672,163200,7,357,1 +3673,163200,147,7380,1 +3674,163203,118,5906,1 +3675,163207,137,6872,1 +3676,163212,20,1036,1 +3677,163212,20,1026,1 +3678,163214,181,9100,1 +3679,163217,162,8116,1 +3680,163217,50,2524,1 +3681,163225,66,3311,1 +3682,163230,64,3224,1 +3683,163236,145,7257,1 +3684,163237,143,7167,1 +3685,163245,171,8577,1 +3686,163246,57,2892,1 +3687,163248,126,6340,1 +3688,163249,172,8628,1 +3689,163263,69,3477,1 +3690,163272,89,4490,1 +3691,163284,154,7707,1 +3692,163296,94,4715,1 +3693,163296,106,5314,1 +3694,163296,184,9227,1 +3695,163299,5,266,1 +3696,163308,133,6666,1 +3697,163320,124,6239,1 +3698,163357,12,635,1 +3699,163360,86,4333,1 +3700,163382,14,722,1 +3701,163682,67,3394,1 +3702,163692,16,805,1 +3703,163728,60,3015,1 +3704,163776,20,1020,1 +3705,164173,99,4997,1 +3706,164229,152,7628,1 +3707,164786,195,9791,1 +3708,165132,66,3339,1 +3709,165648,149,7477,1 +3710,165660,83,4200,1 +3711,165690,50,2518,1 +3712,166081,184,9205,1 +3713,166092,174,8702,1 +3714,166117,137,6852,1 +3715,166117,35,1782,1 +3716,166128,79,3952,1 +3717,166129,155,7779,1 +3718,166164,9,470,1 +3719,166560,35,1796,1 +3720,166568,88,4430,1 +3721,166584,22,1149,1 +3722,166628,157,7858,1 +3723,166632,112,5643,1 +3724,166680,90,4504,1 +3725,166716,59,2981,1 +3726,167040,111,5584,1 +3727,167040,23,1175,1 +3728,167040,181,9083,1 +3729,167041,20,1017,1 +3730,167043,38,1905,1 +3731,167049,95,4767,1 +3732,167052,3,178,1 +3733,167052,30,1538,1 +3734,167052,123,6152,1 +3735,167055,190,9543,1 +3736,167064,69,3488,1 +3737,167065,69,3465,1 +3738,167077,35,1752,1 +3739,167089,147,7361,1 +3740,167101,49,2498,1 +3741,167136,167,8384,1 +3742,167521,144,7226,1 +3743,167522,154,7742,1 +3744,167527,125,6296,1 +3745,167532,166,8309,1 +3746,167541,97,4898,1 +3747,167544,137,6885,1 +3748,167544,123,6190,1 +3749,167546,42,2135,1 +3750,167556,2,130,1 +3751,167580,68,3439,1 +3752,167580,64,3222,1 +3753,167586,162,8106,1 +3754,167589,45,2276,1 +3755,167592,39,1991,1 +3756,167655,37,1900,1 +3757,167724,70,3506,1 +3758,168024,196,9847,1 +3759,168027,105,5282,1 +3760,168480,127,6378,1 +3761,168493,4,205,1 +3762,168528,87,4370,1 +3763,168582,195,9756,1 +3764,169440,109,5485,1 +3765,169452,60,3002,1 +3766,169920,109,5487,1 +3767,169926,107,5354,1 +3768,169932,79,3970,1 +3769,169933,128,6442,1 +3770,169944,46,2342,1 +3771,169956,103,5194,1 +3772,169956,78,3939,1 +3773,169960,22,1143,1 +3774,169965,176,8840,1 +3775,169968,90,4528,1 +3776,169968,10,547,1 +3777,169977,46,2339,1 +3778,169984,161,8063,1 +3779,169992,196,9840,1 +3780,169994,152,7614,1 +3781,170142,165,8257,1 +3782,170400,8,441,1 +3783,170424,143,7200,1 +3784,170544,147,7383,1 +3785,170893,140,7050,1 +3786,170904,82,4124,1 +3787,170932,123,6196,1 +3788,170937,120,6050,1 +3789,170939,153,7660,1 +3790,170940,32,1605,1 +3791,170979,41,2071,1 +3792,171012,76,3821,1 +3793,171025,23,1158,1 +3794,171048,93,4696,1 +3795,171206,96,4828,1 +3796,171360,43,2173,1 +3797,171361,163,8187,1 +3798,171372,72,3603,1 +3799,171375,0,38,1 +3800,171376,160,8031,1 +3801,171381,140,7041,1 +3802,171381,57,2862,1 +3803,171384,168,8426,1 +3804,171390,132,6601,1 +3805,171396,103,5177,1 +3806,171397,184,9222,1 +3807,171402,156,7833,1 +3808,171408,22,1142,1 +3809,171408,116,5841,1 +3810,171409,61,3089,1 +3811,171409,71,3597,1 +3812,171421,129,6477,1 +3813,171444,125,6254,1 +3814,171444,38,1933,1 +3815,171447,37,1885,1 +3816,171452,78,3942,1 +3817,171465,135,6793,1 +3818,171478,41,2057,1 +3819,171510,183,9153,1 +3820,171519,66,3336,1 +3821,171528,184,9218,1 +3822,171537,133,6698,1 +3823,171856,148,7425,1 +3824,172320,188,9444,1 +3825,172320,88,4406,1 +3826,172333,153,7689,1 +3827,172338,79,3976,1 +3828,172344,149,7487,1 +3829,172346,46,2302,1 +3830,172369,10,525,1 +3831,172404,3,187,1 +3832,172415,166,8313,1 +3833,172801,30,1545,1 +3834,172802,12,616,1 +3835,172806,21,1051,1 +3836,172809,13,697,1 +3837,172812,81,4069,1 +3838,172812,100,5024,1 +3839,172812,183,9163,1 +3840,172818,30,1528,1 +3841,172821,88,4418,1 +3842,172821,171,8589,1 +3843,172824,146,7323,1 +3844,172836,75,3792,1 +3845,172842,44,2224,1 +3846,172844,53,2652,1 +3847,172849,161,8067,1 +3848,172857,187,9369,1 +3849,172860,26,1322,1 +3850,172875,114,5746,1 +3851,172896,49,2485,1 +3852,172909,31,1583,1 +3853,172916,126,6345,1 +3854,172933,0,23,1 +3855,172954,115,5754,1 +3856,172968,82,4103,1 +3857,173280,128,6432,1 +3858,173280,130,6541,1 +3859,173280,82,4140,1 +3860,173281,185,9256,1 +3861,173281,52,2619,1 +3862,173282,82,4102,1 +3863,173283,34,1734,1 +3864,173302,129,6467,1 +3865,173304,15,762,1 +3866,173304,103,5163,1 +3867,173307,116,5803,1 +3868,173308,164,8228,1 +3869,173310,193,9699,1 +3870,173328,14,738,1 +3871,173357,93,4668,1 +3872,173361,55,2800,1 +3873,173380,82,4112,1 +3874,173422,103,5175,1 +3875,173436,37,1867,1 +3876,173763,150,7522,1 +3877,173769,183,9171,1 +3878,173772,171,8574,1 +3879,173772,10,546,1 +3880,173772,76,3810,1 +3881,173784,186,9349,1 +3882,173784,50,2547,1 +3883,173800,79,3960,1 +3884,173808,145,7284,1 +3885,173821,144,7229,1 +3886,173961,55,2778,1 +3887,174240,34,1733,1 +3888,174264,130,6514,1 +3889,174267,99,4982,1 +3890,174278,83,4170,1 +3891,174279,7,389,1 +3892,174282,144,7221,1 +3893,174294,51,2565,1 +3894,174313,128,6415,1 +3895,174333,8,414,1 +3896,174336,149,7499,1 +3897,174357,128,6434,1 +3898,174360,172,8628,1 +3899,174410,116,5827,1 +3900,174720,9,499,1 +3901,174720,3,192,1 +3902,174720,27,1386,1 +3903,174732,160,8023,1 +3904,174732,119,5987,1 +3905,174734,124,6221,1 +3906,174792,129,6477,1 +3907,174804,154,7730,1 +3908,174840,193,9685,1 +3909,174852,155,7761,1 +3910,174889,92,4627,1 +3911,175200,168,8404,1 +3912,175200,7,386,1 +3913,175200,0,42,1 +3914,175200,129,6490,1 +3915,175201,172,8647,1 +3916,175202,53,2670,1 +3917,175202,152,7624,1 +3918,175203,95,4779,1 +3919,175203,7,365,1 +3920,175204,46,2335,1 +3921,175206,99,4955,1 +3922,175212,4,230,1 +3923,175212,169,8479,1 +3924,175212,85,4276,1 +3925,175212,176,8827,1 +3926,175212,33,1664,1 +3927,175213,90,4502,1 +3928,175214,62,3131,1 +3929,175214,23,1186,1 +3930,175215,6,327,1 +3931,175218,175,8757,1 +3932,175224,33,1682,1 +3933,175224,119,5983,1 +3934,175224,69,3489,1 +3935,175224,131,6581,1 +3936,175224,14,722,1 +3937,175225,127,6384,1 +3938,175225,80,4025,1 +3939,175227,15,763,1 +3940,175228,157,7893,1 +3941,175230,131,6578,1 +3942,175236,106,5302,1 +3943,175237,157,7878,1 +3944,175237,148,7401,1 +3945,175237,113,5669,1 +3946,175242,198,9944,1 +3947,175242,99,4957,1 +3948,175246,127,6394,1 +3949,175248,30,1532,1 +3950,175248,127,6380,1 +3951,175248,19,961,1 +3952,175250,48,2449,1 +3953,175254,133,6694,1 +3954,175254,75,3770,1 +3955,175257,5,299,1 +3956,175257,35,1781,1 +3957,175260,147,7373,1 +3958,175263,111,5579,1 +3959,175266,40,2026,1 +3960,175272,75,3785,1 +3961,175273,36,1832,1 +3962,175273,179,8992,1 +3963,175284,72,3642,1 +3964,175285,61,3079,1 +3965,175285,18,935,1 +3966,175287,134,6714,1 +3967,175293,75,3794,1 +3968,175294,57,2858,1 +3969,175296,174,8702,1 +3970,175296,36,1843,1 +3971,175296,69,3486,1 +3972,175297,126,6346,1 +3973,175297,59,2958,1 +3974,175308,192,9645,1 +3975,175313,156,7825,1 +3976,175315,119,5991,1 +3977,175333,121,6075,1 +3978,175392,166,8349,1 +3979,175681,121,6071,1 +3980,175693,103,5199,1 +3981,175764,187,9364,1 +3982,175802,154,7721,1 +3983,175860,78,3918,1 +3984,176185,11,589,1 +3985,176211,14,706,1 +3986,176216,43,2187,1 +3987,176223,31,1577,1 +3988,176233,172,8606,1 +3989,176251,196,9815,1 +3990,176307,85,4274,1 +3991,176646,111,5559,1 +3992,176700,70,3520,1 +3993,176702,127,6366,1 +3994,176803,186,9302,1 +3995,176820,73,3683,1 +3996,177120,186,9350,1 +3997,177120,123,6186,1 +3998,177123,155,7789,1 +3999,177126,132,6636,1 +4000,177132,76,3835,1 +4001,177144,51,2587,1 +4002,177144,87,4354,1 +4003,177148,185,9255,1 +4004,177154,191,9563,1 +4005,177156,169,8482,1 +4006,177159,193,9673,1 +4007,177170,81,4073,1 +4008,177180,136,6828,1 +4009,177183,12,649,1 +4010,177192,29,1486,1 +4011,177196,88,4411,1 +4012,177205,177,8892,1 +4013,177207,58,2920,1 +4014,177240,126,6349,1 +4015,177432,23,1192,1 +4016,177601,39,1976,1 +4017,177606,40,2025,1 +4018,177607,41,2081,1 +4019,177612,147,7356,1 +4020,177612,142,7124,1 +4021,177613,1,82,1 +4022,177619,157,7894,1 +4023,177624,36,1822,1 +4024,177636,92,4610,1 +4025,177654,191,9595,1 +4026,177675,51,2563,1 +4027,177721,14,744,1 +4028,177780,22,1141,1 +4029,178080,129,6456,1 +4030,178080,115,5771,1 +4031,178080,36,1813,1 +4032,178080,3,192,1 +4033,178080,31,1597,1 +4034,178080,38,1906,1 +4035,178086,87,4372,1 +4036,178090,125,6278,1 +4037,178092,92,4606,1 +4038,178092,72,3602,1 +4039,178092,0,15,1 +4040,178092,155,7770,1 +4041,178093,49,2482,1 +4042,178093,99,4965,1 +4043,178098,186,9307,1 +4044,178100,110,5527,1 +4045,178101,35,1777,1 +4046,178104,2,134,1 +4047,178104,169,8467,1 +4048,178108,66,3304,1 +4049,178109,168,8440,1 +4050,178110,175,8781,1 +4051,178114,114,5715,1 +4052,178121,138,6939,1 +4053,178128,123,6165,1 +4054,178133,164,8210,1 +4055,178140,65,3299,1 +4056,178152,33,1682,1 +4057,178152,113,5657,1 +4058,178153,34,1735,1 +4059,178158,85,4256,1 +4060,178183,168,8406,1 +4061,178188,127,6381,1 +4062,178188,176,8824,1 +4063,178191,23,1161,1 +4064,178201,127,6383,1 +4065,178212,62,3146,1 +4066,178224,157,7880,1 +4067,178224,31,1572,1 +4068,178381,105,5299,1 +4069,178560,195,9791,1 +4070,178563,19,991,1 +4071,178566,149,7453,1 +4072,178566,161,8065,1 +4073,178572,32,1612,1 +4074,178596,125,6267,1 +4075,178596,189,9453,1 +4076,178611,176,8830,1 +4077,178621,121,6059,1 +4078,178621,26,1322,1 +4079,179040,24,1248,1 +4080,179100,105,5296,1 +4081,179112,59,2955,1 +4082,179112,39,1986,1 +4083,179112,82,4149,1 +4084,179115,77,3896,1 +4085,179520,64,3216,1 +4086,179520,0,36,1 +4087,179533,144,7226,1 +4088,179538,116,5825,1 +4089,179556,73,3671,1 +4090,179698,57,2854,1 +4091,180480,54,2743,1 +4092,180480,68,3444,1 +4093,180487,37,1861,1 +4094,180492,168,8445,1 +4095,180492,76,3819,1 +4096,180493,167,8356,1 +4097,180528,82,4133,1 +4098,180567,139,6984,1 +4099,180648,147,7392,1 +4100,180675,101,5085,1 +4101,180720,163,8196,1 +4102,180960,13,675,1 +4103,180977,108,5411,1 +4104,180985,129,6497,1 +4105,180996,148,7428,1 +4106,180999,178,8939,1 +4107,181024,128,6413,1 +4108,181116,163,8169,1 +4109,181442,158,7917,1 +4110,181454,82,4146,1 +4111,181458,91,4559,1 +4112,181476,59,2979,1 +4113,181511,23,1159,1 +4114,181512,162,8141,1 +4115,181648,130,6544,1 +4116,181945,183,9159,1 +4117,181947,72,3634,1 +4118,181980,53,2679,1 +4119,181986,60,3011,1 +4120,182400,27,1381,1 +4121,182400,68,3405,1 +4122,182401,149,7497,1 +4123,182406,65,3290,1 +4124,182412,15,779,1 +4125,182412,199,9952,1 +4126,182412,145,7278,1 +4127,182412,168,8404,1 +4128,182414,59,2975,1 +4129,182415,184,9250,1 +4130,182436,71,3565,1 +4131,182436,83,4162,1 +4132,182437,81,4084,1 +4133,182448,22,1103,1 +4134,182449,34,1744,1 +4135,182457,133,6663,1 +4136,182458,109,5472,1 +4137,182460,84,4213,1 +4138,182461,135,6787,1 +4139,182463,9,478,1 +4140,182473,18,916,1 +4141,182475,35,1784,1 +4142,182485,191,9576,1 +4143,182496,123,6177,1 +4144,182496,139,6991,1 +4145,182497,68,3413,1 +4146,182532,101,5079,1 +4147,182538,196,9810,1 +4148,182544,74,3704,1 +4149,182544,21,1059,1 +4150,182676,178,8947,1 +4151,182880,138,6912,1 +4152,182880,190,9510,1 +4153,182880,190,9508,1 +4154,182881,105,5296,1 +4155,182893,43,2194,1 +4156,182904,146,7313,1 +4157,182905,10,515,1 +4158,182916,120,6028,1 +4159,182919,60,3010,1 +4160,182928,180,9034,1 +4161,182932,13,671,1 +4162,182934,198,9923,1 +4163,182937,49,2463,1 +4164,182937,54,2749,1 +4165,182952,197,9865,1 +4166,182976,34,1738,1 +4167,182988,161,8072,1 +4168,183024,179,8982,1 +4169,183048,179,8987,1 +4170,183096,158,7938,1 +4171,183096,99,4979,1 +4172,183360,103,5164,1 +4173,183373,53,2697,1 +4174,183456,32,1620,1 +4175,184321,140,7043,1 +4176,184321,190,9513,1 +4177,184322,155,7785,1 +4178,184322,140,7013,1 +4179,184323,59,2963,1 +4180,184339,41,2087,1 +4181,184351,99,4970,1 +4182,184356,25,1299,1 +4183,184392,32,1611,1 +4184,184416,25,1283,1 +4185,184429,157,7889,1 +4186,185280,66,3347,1 +4187,185281,89,4465,1 +4188,185286,102,5138,1 +4189,185287,46,2336,1 +4190,185292,119,5992,1 +4191,185292,96,4801,1 +4192,185293,148,7436,1 +4193,185302,42,2120,1 +4194,185304,188,9428,1 +4195,185304,45,2265,1 +4196,185312,82,4112,1 +4197,185316,22,1105,1 +4198,185328,172,8634,1 +4199,185337,137,6851,1 +4200,185340,167,8378,1 +4201,185340,50,2546,1 +4202,185340,129,6490,1 +4203,185346,10,537,1 +4204,185352,126,6341,1 +4205,185370,159,7986,1 +4206,185388,156,7819,1 +4207,185394,189,9453,1 +4208,185400,46,2328,1 +4209,185511,65,3276,1 +4210,185760,109,5474,1 +4211,185761,175,8758,1 +4212,185761,34,1732,1 +4213,185763,156,7821,1 +4214,185772,10,501,1 +4215,185772,116,5841,1 +4216,185773,34,1727,1 +4217,185778,87,4358,1 +4218,185778,118,5941,1 +4219,185790,68,3426,1 +4220,185800,156,7831,1 +4221,185808,88,4434,1 +4222,185809,120,6043,1 +4223,185814,135,6772,1 +4224,185832,193,9696,1 +4225,185853,45,2298,1 +4226,185977,32,1625,1 +4227,186240,131,6559,1 +4228,186276,60,3018,1 +4229,186307,32,1630,1 +4230,186337,5,253,1 +4231,186745,120,6015,1 +4232,186760,139,6978,1 +4233,186768,186,9343,1 +4234,187224,62,3110,1 +4235,187227,122,6149,1 +4236,187261,140,7024,1 +4237,187276,112,5607,1 +4238,187297,176,8838,1 +4239,187704,144,7211,1 +4240,187740,163,8154,1 +4241,188160,170,8515,1 +4242,188172,44,2211,1 +4243,188172,131,6591,1 +4244,188172,196,9818,1 +4245,188196,7,383,1 +4246,188208,147,7377,1 +4247,188209,142,7116,1 +4248,188257,167,8373,1 +4249,188257,118,5946,1 +4250,188258,75,3751,1 +4251,188310,24,1239,1 +4252,188312,198,9906,1 +4253,188640,52,2622,1 +4254,188640,179,9000,1 +4255,188641,180,9004,1 +4256,188641,192,9633,1 +4257,188643,187,9356,1 +4258,188652,165,8269,1 +4259,188652,187,9397,1 +4260,188652,135,6754,1 +4261,188652,133,6700,1 +4262,188653,2,114,1 +4263,188653,73,3700,1 +4264,188655,79,3959,1 +4265,188658,163,8183,1 +4266,188664,23,1194,1 +4267,188676,194,9714,1 +4268,188676,38,1923,1 +4269,188680,0,33,1 +4270,188688,76,3806,1 +4271,188691,140,7010,1 +4272,188701,25,1289,1 +4273,188712,161,8075,1 +4274,188724,73,3679,1 +4275,188736,187,9367,1 +4276,188772,155,7790,1 +4277,189158,18,927,1 +4278,189204,130,6517,1 +4279,189216,154,7746,1 +4280,189229,33,1670,1 +4281,189601,5,298,1 +4282,189601,54,2717,1 +4283,189660,121,6065,1 +4284,190080,153,7685,1 +4285,190081,72,3637,1 +4286,190082,133,6670,1 +4287,190089,37,1883,1 +4288,190090,14,732,1 +4289,190090,103,5192,1 +4290,190104,23,1166,1 +4291,190104,78,3909,1 +4292,190107,134,6742,1 +4293,190108,89,4454,1 +4294,190116,76,3803,1 +4295,190119,97,4898,1 +4296,190152,121,6058,1 +4297,190174,165,8288,1 +4298,190188,189,9476,1 +4299,190212,95,4799,1 +4300,190560,146,7317,1 +4301,190560,162,8129,1 +4302,190561,55,2790,1 +4303,190572,188,9439,1 +4304,190572,48,2412,1 +4305,190578,59,2963,1 +4306,190596,103,5166,1 +4307,190618,6,303,1 +4308,190632,173,8667,1 +4309,190658,60,3045,1 +4310,190699,123,6164,1 +4311,190742,116,5803,1 +4312,191052,120,6043,1 +4313,191316,28,1443,1 +4314,191520,92,4616,1 +4315,191520,86,4337,1 +4316,191522,69,3499,1 +4317,191525,168,8416,1 +4318,191526,43,2200,1 +4319,191529,196,9814,1 +4320,191532,27,1371,1 +4321,191532,142,7113,1 +4322,191532,1,88,1 +4323,191532,53,2675,1 +4324,191533,167,8388,1 +4325,191535,146,7319,1 +4326,191541,92,4647,1 +4327,191545,73,3683,1 +4328,191546,91,4559,1 +4329,191546,155,7751,1 +4330,191556,105,5256,1 +4331,191556,30,1530,1 +4332,191557,38,1937,1 +4333,191560,72,3629,1 +4334,191571,199,9971,1 +4335,191575,134,6736,1 +4336,191580,56,2849,1 +4337,191580,78,3934,1 +4338,191584,156,7848,1 +4339,191604,183,9178,1 +4340,191605,158,7944,1 +4341,191607,70,3505,1 +4342,191655,61,3061,1 +4343,191688,33,1695,1 +4344,191689,125,6263,1 +4345,191704,182,9116,1 +4346,191748,165,8300,1 +4347,192018,180,9039,1 +4348,192024,10,534,1 +4349,192024,51,2586,1 +4350,192064,47,2400,1 +4351,192102,145,7279,1 +4352,192120,37,1883,1 +4353,192156,174,8736,1 +4354,192376,97,4891,1 +4355,192493,92,4619,1 +4356,192516,138,6907,1 +4357,192561,68,3425,1 +4358,192600,152,7643,1 +4359,193440,197,9893,1 +4360,193441,171,8572,1 +4361,193452,105,5268,1 +4362,193453,97,4887,1 +4363,193464,99,4999,1 +4364,193536,132,6603,1 +4365,193920,25,1257,1 +4366,193920,26,1302,1 +4367,193921,91,4563,1 +4368,193921,199,9969,1 +4369,193921,199,9990,1 +4370,193923,155,7755,1 +4371,193930,55,2794,1 +4372,193932,3,197,1 +4373,193932,11,585,1 +4374,193934,133,6679,1 +4375,193942,96,4815,1 +4376,193944,12,624,1 +4377,193944,21,1063,1 +4378,193944,182,9116,1 +4379,193945,195,9758,1 +4380,193945,62,3114,1 +4381,193953,4,213,1 +4382,193956,155,7764,1 +4383,193956,55,2758,1 +4384,193956,55,2762,1 +4385,193958,109,5466,1 +4386,193968,17,878,1 +4387,193968,196,9847,1 +4388,193971,126,6334,1 +4389,193971,159,7954,1 +4390,193980,122,6147,1 +4391,193980,166,8339,1 +4392,193992,148,7438,1 +4393,193992,183,9184,1 +4394,194004,170,8519,1 +4395,194004,77,3897,1 +4396,194005,164,8244,1 +4397,194017,133,6652,1 +4398,194052,151,7590,1 +4399,194077,140,7035,1 +4400,194089,93,4681,1 +4401,194400,16,820,1 +4402,194400,94,4716,1 +4403,194408,125,6255,1 +4404,194412,175,8756,1 +4405,194424,177,8854,1 +4406,194430,185,9258,1 +4407,194433,5,268,1 +4408,194436,184,9234,1 +4409,194438,89,4470,1 +4410,194448,171,8593,1 +4411,194449,130,6542,1 +4412,194454,188,9431,1 +4413,194455,5,287,1 +4414,194463,99,4982,1 +4415,194464,68,3433,1 +4416,194466,55,2765,1 +4417,194880,105,5259,1 +4418,194888,93,4678,1 +4419,194925,19,988,1 +4420,194940,132,6637,1 +4421,195025,140,7002,1 +4422,195360,170,8534,1 +4423,195361,49,2490,1 +4424,195372,125,6294,1 +4425,195373,139,6998,1 +4426,195378,161,8069,1 +4427,195378,176,8805,1 +4428,195379,160,8036,1 +4429,195388,43,2165,1 +4430,195396,74,3701,1 +4431,195397,104,5205,1 +4432,195405,62,3124,1 +4433,195409,125,6283,1 +4434,195414,96,4835,1 +4435,195415,69,3490,1 +4436,195444,159,7955,1 +4437,195456,147,7395,1 +4438,195469,41,2058,1 +4439,195471,164,8217,1 +4440,195480,62,3123,1 +4441,195492,195,9762,1 +4442,195495,132,6621,1 +4443,195504,26,1350,1 +4444,195517,110,5533,1 +4445,195517,169,8470,1 +4446,195861,165,8262,1 +4447,195903,17,876,1 +4448,195934,184,9221,1 +4449,196344,139,6955,1 +4450,196357,140,7048,1 +4451,196359,107,5397,1 +4452,196417,101,5098,1 +4453,196477,15,779,1 +4454,197280,70,3530,1 +4455,197281,90,4547,1 +4456,197365,183,9157,1 +4457,197436,29,1472,1 +4458,197773,82,4102,1 +4459,197785,92,4607,1 +4460,197832,92,4601,1 +4461,197871,37,1880,1 +4462,198244,62,3125,1 +4463,198249,155,7769,1 +4464,198249,39,1970,1 +4465,198252,153,7685,1 +4466,198253,135,6770,1 +4467,198262,43,2174,1 +4468,198265,141,7089,1 +4469,198268,185,9276,1 +4470,198271,107,5363,1 +4471,198277,150,7549,1 +4472,198284,132,6620,1 +4473,198288,84,4228,1 +4474,198290,62,3114,1 +4475,198291,15,761,1 +4476,198301,186,9334,1 +4477,198305,94,4715,1 +4478,198324,107,5399,1 +4479,198330,84,4211,1 +4480,198346,110,5550,1 +4481,198348,188,9420,1 +4482,198364,96,4837,1 +4483,198372,12,617,1 +4484,198372,103,5185,1 +4485,198384,198,9947,1 +4486,198410,134,6748,1 +4487,198733,7,364,1 +4488,198810,60,3049,1 +4489,199689,116,5813,1 +4490,199704,146,7320,1 +4491,199719,114,5748,1 +4492,199780,90,4510,1 +4493,199788,85,4270,1 +4494,199945,29,1466,1 +4495,200160,148,7427,1 +4496,200160,18,935,1 +4497,200160,46,2310,1 +4498,200166,150,7534,1 +4499,200206,77,3856,1 +4500,200218,198,9906,1 +4501,200220,196,9840,1 +4502,200247,137,6852,1 +4503,200247,130,6514,1 +4504,200700,173,8665,1 +4505,201622,181,9062,1 +4506,201633,64,3204,1 +4507,201696,8,412,1 +4508,202080,12,603,1 +4509,202080,98,4930,1 +4510,202080,9,462,1 +4511,202081,32,1626,1 +4512,202085,139,6951,1 +4513,202086,76,3805,1 +4514,202089,117,5869,1 +4515,202092,185,9286,1 +4516,202092,17,870,1 +4517,202092,133,6673,1 +4518,202092,53,2658,1 +4519,202093,191,9563,1 +4520,202093,119,5988,1 +4521,202095,85,4299,1 +4522,202096,22,1102,1 +4523,202101,81,4061,1 +4524,202113,14,713,1 +4525,202128,197,9860,1 +4526,202128,21,1084,1 +4527,202128,157,7881,1 +4528,202134,150,7534,1 +4529,202137,56,2849,1 +4530,202141,155,7791,1 +4531,202153,41,2097,1 +4532,202164,177,8856,1 +4533,202165,152,7614,1 +4534,202176,120,6044,1 +4535,202177,53,2662,1 +4536,202177,68,3446,1 +4537,202178,127,6393,1 +4538,202207,178,8924,1 +4539,202209,88,4435,1 +4540,202224,136,6831,1 +4541,202236,45,2290,1 +4542,202248,162,8105,1 +4543,202276,81,4086,1 +4544,202297,14,735,1 +4545,202560,87,4353,1 +4546,202560,193,9697,1 +4547,202560,95,4788,1 +4548,202560,93,4689,1 +4549,202562,16,823,1 +4550,202566,152,7610,1 +4551,202569,193,9666,1 +4552,202569,132,6625,1 +4553,202569,145,7295,1 +4554,202572,169,8475,1 +4555,202573,116,5824,1 +4556,202574,121,6091,1 +4557,202575,128,6419,1 +4558,202584,98,4909,1 +4559,202584,196,9802,1 +4560,202587,164,8219,1 +4561,202590,61,3079,1 +4562,202597,103,5181,1 +4563,202598,140,7049,1 +4564,202599,130,6542,1 +4565,202602,64,3239,1 +4566,202605,10,525,1 +4567,202608,103,5161,1 +4568,202608,171,8577,1 +4569,202608,139,6997,1 +4570,202610,161,8062,1 +4571,202612,199,9966,1 +4572,202615,127,6379,1 +4573,202620,111,5564,1 +4574,202620,92,4640,1 +4575,202621,14,718,1 +4576,202644,152,7642,1 +4577,202653,197,9900,1 +4578,202680,147,7383,1 +4579,202704,57,2900,1 +4580,202725,138,6913,1 +4581,202739,161,8068,1 +4582,203064,12,638,1 +4583,203073,41,2086,1 +4584,203140,99,4984,1 +4585,203197,45,2277,1 +4586,203520,108,5410,1 +4587,203520,124,6240,1 +4588,203520,55,2798,1 +4589,203520,136,6849,1 +4590,203520,131,6594,1 +4591,203520,189,9457,1 +4592,203520,106,5344,1 +4593,203521,18,911,1 +4594,203522,91,4558,1 +4595,203523,156,7849,1 +4596,203526,70,3540,1 +4597,203526,155,7790,1 +4598,203527,3,164,1 +4599,203529,193,9691,1 +4600,203532,186,9328,1 +4601,203532,171,8587,1 +4602,203532,62,3104,1 +4603,203532,68,3407,1 +4604,203533,193,9657,1 +4605,203533,24,1207,1 +4606,203534,72,3612,1 +4607,203538,97,4851,1 +4608,203544,52,2607,1 +4609,203544,27,1372,1 +4610,203546,169,8487,1 +4611,203546,26,1302,1 +4612,203547,29,1475,1 +4613,203556,32,1607,1 +4614,203556,1,69,1 +4615,203556,177,8869,1 +4616,203556,4,218,1 +4617,203557,198,9925,1 +4618,203557,155,7759,1 +4619,203558,28,1419,1 +4620,203559,39,1999,1 +4621,203559,127,6388,1 +4622,203565,48,2425,1 +4623,203568,138,6930,1 +4624,203569,137,6864,1 +4625,203570,82,4105,1 +4626,203571,122,6110,1 +4627,203574,176,8842,1 +4628,203574,173,8700,1 +4629,203580,40,2008,1 +4630,203580,149,7463,1 +4631,203594,37,1877,1 +4632,203604,172,8626,1 +4633,203604,169,8457,1 +4634,203616,134,6734,1 +4635,203626,159,7981,1 +4636,203641,76,3833,1 +4637,203642,70,3531,1 +4638,203688,170,8504,1 +4639,203694,31,1570,1 +4640,203724,14,703,1 +4641,203784,140,7002,1 +4642,204001,116,5849,1 +4643,204003,86,4317,1 +4644,204006,1,83,1 +4645,204012,42,2148,1 +4646,204013,79,3966,1 +4647,204018,87,4387,1 +4648,204024,125,6265,1 +4649,204027,2,105,1 +4650,204033,164,8202,1 +4651,204034,19,1000,1 +4652,204036,185,9279,1 +4653,204037,50,2540,1 +4654,204054,96,4849,1 +4655,204061,6,310,1 +4656,204061,110,5541,1 +4657,204063,117,5858,1 +4658,204073,42,2133,1 +4659,204084,163,8199,1 +4660,204094,149,7475,1 +4661,204122,179,8957,1 +4662,204124,172,8606,1 +4663,204960,10,531,1 +4664,204960,182,9136,1 +4665,204961,139,6956,1 +4666,204966,11,570,1 +4667,204973,48,2441,1 +4668,204976,192,9618,1 +4669,204984,125,6280,1 +4670,204986,130,6502,1 +4671,204990,73,3656,1 +4672,205011,119,5994,1 +4673,205011,132,6629,1 +4674,205015,85,4288,1 +4675,205020,128,6414,1 +4676,205045,194,9709,1 +4677,205057,159,7954,1 +4678,205094,75,3753,1 +4679,205131,103,5174,1 +4680,205466,24,1237,1 +4681,205478,128,6410,1 +4682,205479,171,8566,1 +4683,205920,147,7355,1 +4684,205921,137,6857,1 +4685,205932,105,5299,1 +4686,205934,76,3840,1 +4687,205957,197,9895,1 +4688,205981,180,9035,1 +4689,206010,142,7143,1 +4690,206148,138,6942,1 +4691,206400,187,9370,1 +4692,206401,141,7058,1 +4693,206412,77,3888,1 +4694,206424,82,4107,1 +4695,206448,198,9934,1 +4696,206448,71,3592,1 +4697,206448,183,9174,1 +4698,206449,101,5085,1 +4699,206466,158,7904,1 +4700,206470,66,3350,1 +4701,206472,89,4492,1 +4702,206472,144,7245,1 +4703,206476,36,1839,1 +4704,206476,68,3444,1 +4705,206485,174,8737,1 +4706,206497,10,505,1 +4707,206499,106,5308,1 +4708,206508,108,5410,1 +4709,206508,42,2141,1 +4710,206522,37,1880,1 +4711,206544,36,1831,1 +4712,206883,193,9684,1 +4713,206925,160,8027,1 +4714,206932,155,7776,1 +4715,206940,73,3685,1 +4716,206949,170,8525,1 +4717,206991,175,8758,1 +4718,207420,86,4307,1 +4719,207841,129,6475,1 +4720,207844,122,6141,1 +4721,207848,61,3080,1 +4722,207849,37,1889,1 +4723,207852,142,7108,1 +4724,207854,102,5147,1 +4725,207856,17,885,1 +4726,207859,149,7479,1 +4727,207864,160,8014,1 +4728,207864,6,319,1 +4729,207867,119,5953,1 +4730,207867,162,8106,1 +4731,207869,123,6165,1 +4732,207876,191,9586,1 +4733,207885,78,3935,1 +4734,207900,187,9399,1 +4735,207900,69,3491,1 +4736,207903,64,3234,1 +4737,207946,78,3948,1 +4738,208056,4,235,1 +4739,208320,146,7331,1 +4740,208324,66,3326,1 +4741,208332,181,9085,1 +4742,208344,188,9412,1 +4743,208350,114,5741,1 +4744,208360,162,8102,1 +4745,208385,133,6672,1 +4746,208398,103,5175,1 +4747,208404,159,7962,1 +4748,208404,178,8909,1 +4749,208440,64,3246,1 +4750,208489,125,6254,1 +4751,208500,3,167,1 +4752,208561,100,5042,1 +4753,208800,86,4320,1 +4754,208800,115,5790,1 +4755,208803,124,6241,1 +4756,208807,149,7496,1 +4757,208812,113,5682,1 +4758,208812,44,2208,1 +4759,208824,26,1312,1 +4760,208836,30,1512,1 +4761,208896,130,6505,1 +4762,208908,81,4068,1 +4763,209350,51,2553,1 +4764,209376,48,2403,1 +4765,209766,100,5039,1 +4766,209772,57,2874,1 +4767,209772,198,9943,1 +4768,209790,67,3392,1 +4769,209813,66,3318,1 +4770,209822,86,4331,1 +4771,210240,197,9857,1 +4772,210240,166,8319,1 +4773,210252,142,7108,1 +4774,210255,176,8805,1 +4775,210261,167,8371,1 +4776,210265,170,8522,1 +4777,210265,35,1756,1 +4778,210301,142,7138,1 +4779,210312,164,8205,1 +4780,210348,162,8113,1 +4781,210348,114,5748,1 +4782,210378,101,5083,1 +4783,210721,98,4918,1 +4784,210733,58,2919,1 +4785,210795,67,3393,1 +4786,210807,2,112,1 +4787,211200,89,4458,1 +4788,211200,31,1577,1 +4789,211200,106,5339,1 +4790,211200,156,7820,1 +4791,211200,181,9097,1 +4792,211200,138,6938,1 +4793,211201,179,8953,1 +4794,211203,18,948,1 +4795,211203,109,5467,1 +4796,211204,122,6115,1 +4797,211206,129,6451,1 +4798,211209,51,2590,1 +4799,211209,157,7865,1 +4800,211209,177,8871,1 +4801,211210,186,9333,1 +4802,211212,70,3507,1 +4803,211212,157,7872,1 +4804,211213,73,3688,1 +4805,211213,26,1328,1 +4806,211213,117,5885,1 +4807,211213,93,4669,1 +4808,211214,56,2850,1 +4809,211218,70,3527,1 +4810,211221,177,8898,1 +4811,211224,14,716,1 +4812,211224,180,9015,1 +4813,211224,172,8649,1 +4814,211224,170,8529,1 +4815,211230,164,8227,1 +4816,211234,121,6075,1 +4817,211235,117,5861,1 +4818,211235,158,7939,1 +4819,211236,168,8446,1 +4820,211236,49,2470,1 +4821,211236,130,6535,1 +4822,211236,48,2448,1 +4823,211237,169,8496,1 +4824,211237,197,9898,1 +4825,211237,2,113,1 +4826,211239,132,6612,1 +4827,211245,141,7097,1 +4828,211248,193,9669,1 +4829,211249,17,862,1 +4830,211251,107,5394,1 +4831,211257,71,3575,1 +4832,211260,62,3140,1 +4833,211260,20,1033,1 +4834,211260,169,8486,1 +4835,211261,139,6988,1 +4836,211265,162,8113,1 +4837,211269,168,8447,1 +4838,211272,93,4655,1 +4839,211272,149,7498,1 +4840,211272,105,5280,1 +4841,211273,142,7146,1 +4842,211284,73,3680,1 +4843,211286,79,3967,1 +4844,211302,4,240,1 +4845,211305,44,2212,1 +4846,211308,97,4885,1 +4847,211309,188,9445,1 +4848,211323,33,1697,1 +4849,211329,19,968,1 +4850,211352,5,265,1 +4851,211363,63,3195,1 +4852,211393,95,4757,1 +4853,211453,26,1306,1 +4854,211500,87,4374,1 +4855,211728,138,6943,1 +4856,212170,119,5983,1 +4857,212172,194,9728,1 +4858,212186,165,8266,1 +4859,212216,120,6016,1 +4860,212691,132,6644,1 +4861,213060,156,7839,1 +4862,213120,131,6582,1 +4863,213120,25,1286,1 +4864,213121,19,952,1 +4865,213122,57,2869,1 +4866,213122,27,1370,1 +4867,213122,142,7145,1 +4868,213123,166,8341,1 +4869,213132,18,941,1 +4870,213132,48,2444,1 +4871,213133,80,4034,1 +4872,213141,168,8432,1 +4873,213144,44,2233,1 +4874,213146,199,9970,1 +4875,213156,99,4982,1 +4876,213162,121,6053,1 +4877,213165,166,8312,1 +4878,213168,106,5311,1 +4879,213170,117,5869,1 +4880,213171,24,1229,1 +4881,213180,60,3038,1 +4882,213182,15,799,1 +4883,213192,188,9419,1 +4884,213197,124,6219,1 +4885,213204,85,4258,1 +4886,213240,136,6827,1 +4887,213267,164,8228,1 +4888,213270,41,2083,1 +4889,213276,121,6065,1 +4890,213291,47,2355,1 +4891,213339,110,5541,1 +4892,213420,43,2188,1 +4893,213602,6,317,1 +4894,213657,114,5748,1 +4895,213745,117,5884,1 +4896,213828,72,3615,1 +4897,214092,32,1602,1 +4898,214092,65,3263,1 +4899,214092,31,1570,1 +4900,214104,43,2189,1 +4901,214105,17,858,1 +4902,214152,30,1512,1 +4903,214209,12,637,1 +4904,215042,76,3832,1 +4905,215052,147,7383,1 +4906,215055,87,4369,1 +4907,215076,147,7372,1 +4908,215097,81,4082,1 +4909,215592,60,3001,1 +4910,215604,33,1659,1 +4911,215750,99,4983,1 +4912,216001,140,7031,1 +4913,216006,31,1565,1 +4914,216010,122,6103,1 +4915,216024,116,5806,1 +4916,216034,64,3213,1 +4917,216048,57,2858,1 +4918,216060,36,1821,1 +4919,216480,74,3716,1 +4920,216480,138,6917,1 +4921,216481,21,1093,1 +4922,216483,189,9469,1 +4923,216486,108,5435,1 +4924,216486,58,2902,1 +4925,216489,133,6671,1 +4926,216492,149,7468,1 +4927,216493,127,6386,1 +4928,216493,172,8623,1 +4929,216504,7,358,1 +4930,216504,99,4989,1 +4931,216507,56,2815,1 +4932,216508,80,4036,1 +4933,216513,164,8233,1 +4934,216518,41,2084,1 +4935,216523,15,757,1 +4936,216528,167,8351,1 +4937,216528,191,9573,1 +4938,216534,43,2193,1 +4939,216545,41,2074,1 +4940,216554,95,4752,1 +4941,216576,157,7856,1 +4942,216578,19,973,1 +4943,216591,17,878,1 +4944,216613,122,6107,1 +4945,216684,112,5626,1 +4946,216826,116,5850,1 +4947,216960,36,1806,1 +4948,216961,5,294,1 +4949,216961,108,5410,1 +4950,216966,176,8824,1 +4951,216967,81,4098,1 +4952,216972,80,4017,1 +4953,216975,170,8509,1 +4954,216977,123,6175,1 +4955,216984,109,5475,1 +4956,216997,123,6195,1 +4957,217005,5,276,1 +4958,217020,151,7589,1 +4959,217021,126,6321,1 +4960,217044,192,9603,1 +4961,217050,168,8408,1 +4962,217068,173,8656,1 +4963,217281,182,9127,1 +4964,217440,95,4779,1 +4965,217572,198,9930,1 +4966,218412,88,4412,1 +4967,218437,54,2733,1 +4968,218451,165,8282,1 +4969,218460,118,5903,1 +4970,218521,80,4048,1 +4971,218895,6,306,1 +4972,218917,191,9572,1 +4973,219366,142,7114,1 +4974,219840,17,893,1 +4975,219840,90,4535,1 +4976,219840,175,8765,1 +4977,219840,74,3749,1 +4978,219841,194,9732,1 +4979,219852,162,8122,1 +4980,219855,172,8607,1 +4981,219862,48,2444,1 +4982,219864,50,2533,1 +4983,219865,169,8482,1 +4984,219866,12,632,1 +4985,219868,8,437,1 +4986,219870,177,8865,1 +4987,219874,68,3439,1 +4988,219876,122,6136,1 +4989,219876,78,3939,1 +4990,219876,161,8080,1 +4991,219876,180,9031,1 +4992,219876,104,5233,1 +4993,219880,82,4139,1 +4994,219895,107,5386,1 +4995,219897,65,3276,1 +4996,219913,59,3000,1 +4997,219924,125,6260,1 +4998,219931,54,2735,1 +4999,219945,111,5568,1 +5000,219949,116,5824,1 +5001,219954,116,5843,1 +5002,219956,170,8534,1 +5003,219960,113,5674,1 +5004,219960,39,1974,1 +5005,219972,173,8690,1 +5006,219972,196,9825,1 +5007,219981,80,4008,1 +5008,220053,126,6339,1 +5009,220080,180,9012,1 +5010,220112,132,6632,1 +5011,220322,56,2831,1 +5012,220327,138,6943,1 +5013,220338,46,2329,1 +5014,220353,7,380,1 +5015,220356,1,67,1 +5016,220356,159,7956,1 +5017,220365,23,1196,1 +5018,220369,118,5906,1 +5019,220371,25,1278,1 +5020,220371,16,844,1 +5021,220374,195,9786,1 +5022,220381,0,21,1 +5023,220381,48,2404,1 +5024,220381,0,40,1 +5025,220395,136,6805,1 +5026,220416,56,2820,1 +5027,220418,11,560,1 +5028,220437,116,5807,1 +5029,220440,119,5959,1 +5030,220452,2,139,1 +5031,220517,7,376,1 +5032,220524,105,5278,1 +5033,220560,148,7404,1 +5034,220812,42,2146,1 +5035,220968,84,4201,1 +5036,221280,18,933,1 +5037,221280,25,1257,1 +5038,221280,173,8686,1 +5039,221280,121,6052,1 +5040,221280,38,1924,1 +5041,221284,1,61,1 +5042,221286,58,2921,1 +5043,221287,139,6974,1 +5044,221292,140,7018,1 +5045,221293,107,5356,1 +5046,221293,150,7532,1 +5047,221293,144,7212,1 +5048,221301,167,8393,1 +5049,221302,88,4410,1 +5050,221304,37,1877,1 +5051,221304,144,7248,1 +5052,221307,93,4670,1 +5053,221317,155,7765,1 +5054,221322,108,5435,1 +5055,221328,182,9130,1 +5056,221328,124,6202,1 +5057,221338,11,572,1 +5058,221340,104,5247,1 +5059,221349,110,5532,1 +5060,221364,178,8908,1 +5061,221378,133,6673,1 +5062,221382,16,805,1 +5063,221385,97,4888,1 +5064,221388,163,8167,1 +5065,221401,13,664,1 +5066,221405,94,4709,1 +5067,221406,106,5328,1 +5068,221409,0,48,1 +5069,221413,102,5122,1 +5070,221416,139,6979,1 +5071,221424,117,5875,1 +5072,221427,157,7868,1 +5073,221438,77,3891,1 +5074,221678,132,6613,1 +5075,221790,107,5387,1 +5076,221796,136,6834,1 +5077,222240,192,9643,1 +5078,222242,61,3053,1 +5079,222252,195,9774,1 +5080,222252,119,5954,1 +5081,222258,121,6097,1 +5082,222261,190,9514,1 +5083,222276,162,8136,1 +5084,222279,189,9472,1 +5085,222285,49,2468,1 +5086,222288,41,2100,1 +5087,222303,192,9649,1 +5088,222312,100,5046,1 +5089,222402,7,396,1 +5090,222427,149,7489,1 +5091,222502,94,4726,1 +5092,222720,38,1913,1 +5093,222722,145,7264,1 +5094,222727,85,4290,1 +5095,222728,5,294,1 +5096,222729,52,2646,1 +5097,222732,158,7926,1 +5098,222732,46,2323,1 +5099,222736,7,351,1 +5100,222736,67,3395,1 +5101,222742,127,6365,1 +5102,222744,132,6646,1 +5103,222744,52,2605,1 +5104,222744,174,8741,1 +5105,222744,91,4551,1 +5106,222748,16,818,1 +5107,222750,184,9201,1 +5108,222756,106,5320,1 +5109,222756,149,7487,1 +5110,222760,185,9259,1 +5111,222763,44,2246,1 +5112,222766,13,697,1 +5113,222777,165,8268,1 +5114,222777,15,800,1 +5115,222780,138,6934,1 +5116,222780,51,2556,1 +5117,222789,120,6036,1 +5118,222792,18,915,1 +5119,222792,148,7450,1 +5120,222806,108,5447,1 +5121,222807,122,6136,1 +5122,222822,30,1508,1 +5123,222828,169,8451,1 +5124,222840,92,4606,1 +5125,222864,168,8417,1 +5126,222889,159,7981,1 +5127,222937,33,1658,1 +5128,223215,144,7238,1 +5129,223259,114,5722,1 +5130,223296,124,6247,1 +5131,223320,165,8268,1 +5132,223339,19,990,1 +5133,223680,60,3036,1 +5134,223693,33,1692,1 +5135,223725,193,9682,1 +5136,224160,91,4559,1 +5137,224196,128,6431,1 +5138,224206,143,7184,1 +5139,224208,119,5991,1 +5140,224208,127,6385,1 +5141,224208,123,6167,1 +5142,224229,68,3419,1 +5143,224233,155,7784,1 +5144,224244,114,5702,1 +5145,224293,165,8267,1 +5146,224433,128,6416,1 +5147,224640,38,1923,1 +5148,224640,2,115,1 +5149,224640,16,837,1 +5150,224640,158,7922,1 +5151,224643,34,1721,1 +5152,224664,2,140,1 +5153,224665,114,5743,1 +5154,224671,126,6326,1 +5155,224677,42,2139,1 +5156,224688,132,6609,1 +5157,224697,20,1037,1 +5158,224697,31,1579,1 +5159,224707,110,5543,1 +5160,224712,139,6969,1 +5161,224712,157,7851,1 +5162,224748,8,423,1 +5163,224766,10,545,1 +5164,224810,149,7465,1 +5165,224859,175,8774,1 +5166,225147,51,2598,1 +5167,225192,141,7067,1 +5168,225203,63,3168,1 +5169,225421,120,6041,1 +5170,225672,106,5321,1 +5171,225675,64,3231,1 +5172,226080,132,6611,1 +5173,226095,183,9151,1 +5174,226113,47,2354,1 +5175,226164,180,9009,1 +5176,226176,6,318,1 +5177,226560,137,6885,1 +5178,226560,180,9004,1 +5179,226560,67,3376,1 +5180,226560,7,353,1 +5181,226560,22,1130,1 +5182,226560,48,2401,1 +5183,226560,21,1085,1 +5184,226560,95,4789,1 +5185,226560,199,9979,1 +5186,226560,195,9786,1 +5187,226561,56,2838,1 +5188,226561,192,9601,1 +5189,226561,79,3956,1 +5190,226561,60,3045,1 +5191,226561,88,4431,1 +5192,226562,92,4648,1 +5193,226562,120,6031,1 +5194,226562,177,8867,1 +5195,226562,169,8459,1 +5196,226563,9,461,1 +5197,226564,151,7553,1 +5198,226564,27,1382,1 +5199,226565,74,3745,1 +5200,226569,132,6623,1 +5201,226569,103,5171,1 +5202,226569,189,9496,1 +5203,226570,23,1167,1 +5204,226570,17,866,1 +5205,226572,81,4086,1 +5206,226572,49,2466,1 +5207,226572,97,4894,1 +5208,226572,160,8014,1 +5209,226572,7,372,1 +5210,226572,25,1259,1 +5211,226572,129,6453,1 +5212,226572,91,4596,1 +5213,226572,157,7867,1 +5214,226572,135,6782,1 +5215,226572,104,5244,1 +5216,226573,149,7459,1 +5217,226573,156,7846,1 +5218,226573,158,7913,1 +5219,226573,84,4245,1 +5220,226573,194,9731,1 +5221,226575,72,3644,1 +5222,226575,158,7932,1 +5223,226575,19,970,1 +5224,226576,89,4459,1 +5225,226577,183,9172,1 +5226,226579,169,8493,1 +5227,226579,47,2398,1 +5228,226584,178,8931,1 +5229,226584,79,3981,1 +5230,226584,147,7381,1 +5231,226584,102,5123,1 +5232,226584,167,8390,1 +5233,226584,145,7263,1 +5234,226585,76,3812,1 +5235,226585,42,2146,1 +5236,226587,181,9084,1 +5237,226590,119,5971,1 +5238,226591,55,2776,1 +5239,226594,188,9430,1 +5240,226596,36,1842,1 +5241,226596,182,9108,1 +5242,226596,175,8787,1 +5243,226596,93,4683,1 +5244,226596,27,1365,1 +5245,226596,154,7733,1 +5246,226596,197,9861,1 +5247,226596,50,2516,1 +5248,226596,51,2559,1 +5249,226597,120,6040,1 +5250,226598,107,5362,1 +5251,226602,94,4715,1 +5252,226602,69,3482,1 +5253,226603,84,4224,1 +5254,226606,150,7517,1 +5255,226608,122,6110,1 +5256,226608,183,9153,1 +5257,226608,62,3114,1 +5258,226608,190,9514,1 +5259,226608,121,6070,1 +5260,226608,123,6180,1 +5261,226609,142,7117,1 +5262,226610,179,8976,1 +5263,226611,25,1264,1 +5264,226614,113,5672,1 +5265,226614,79,3994,1 +5266,226615,47,2378,1 +5267,226617,37,1876,1 +5268,226620,96,4828,1 +5269,226620,100,5022,1 +5270,226620,9,494,1 +5271,226621,110,5546,1 +5272,226621,181,9099,1 +5273,226621,110,5547,1 +5274,226621,156,7849,1 +5275,226621,89,4454,1 +5276,226621,175,8751,1 +5277,226629,171,8554,1 +5278,226630,143,7196,1 +5279,226636,73,3676,1 +5280,226636,169,8488,1 +5281,226636,129,6455,1 +5282,226639,55,2795,1 +5283,226639,116,5806,1 +5284,226644,89,4483,1 +5285,226647,144,7237,1 +5286,226653,156,7817,1 +5287,226656,88,4439,1 +5288,226656,9,484,1 +5289,226656,146,7328,1 +5290,226659,198,9944,1 +5291,226668,147,7375,1 +5292,226668,72,3618,1 +5293,226668,93,4657,1 +5294,226669,192,9606,1 +5295,226680,147,7392,1 +5296,226680,175,8756,1 +5297,226682,137,6855,1 +5298,226683,18,950,1 +5299,226684,20,1001,1 +5300,226684,93,4657,1 +5301,226693,148,7422,1 +5302,226716,123,6190,1 +5303,226716,136,6833,1 +5304,226716,127,6375,1 +5305,226716,47,2352,1 +5306,226728,59,3000,1 +5307,226728,8,430,1 +5308,226740,62,3103,1 +5309,226764,106,5334,1 +5310,226800,169,8464,1 +5311,226801,145,7276,1 +5312,227041,46,2310,1 +5313,227065,61,3099,1 +5314,227139,91,4588,1 +5315,227151,152,7638,1 +5316,227520,199,10000,1 +5317,227520,179,8985,1 +5318,227523,62,3149,1 +5319,227526,156,7817,1 +5320,227532,168,8419,1 +5321,227544,166,8329,1 +5322,227545,50,2528,1 +5323,227545,192,9620,1 +5324,227563,84,4244,1 +5325,227569,172,8616,1 +5326,227593,16,821,1 +5327,227607,172,8619,1 +5328,227629,124,6246,1 +5329,228000,125,6273,1 +5330,228001,189,9484,1 +5331,228010,128,6446,1 +5332,228012,20,1018,1 +5333,228015,94,4711,1 +5334,228030,197,9873,1 +5335,228064,126,6335,1 +5336,228072,137,6853,1 +5337,228972,25,1296,1 +5338,228972,17,853,1 +5339,228996,135,6799,1 +5340,229005,52,2626,1 +5341,229018,133,6670,1 +5342,229021,169,8468,1 +5343,229039,1,95,1 +5344,229041,102,5117,1 +5345,229057,38,1917,1 +5346,229071,66,3331,1 +5347,229073,170,8526,1 +5348,229164,45,2295,1 +5349,229440,70,3550,1 +5350,229441,137,6863,1 +5351,229442,164,8231,1 +5352,229443,148,7417,1 +5353,229452,131,6593,1 +5354,229453,15,773,1 +5355,229453,37,1899,1 +5356,229464,166,8347,1 +5357,229465,104,5239,1 +5358,229465,61,3061,1 +5359,229479,159,7988,1 +5360,229488,13,685,1 +5361,229488,97,4889,1 +5362,229489,166,8335,1 +5363,229494,17,860,1 +5364,229501,27,1386,1 +5365,229503,175,8765,1 +5366,229506,128,6426,1 +5367,229512,127,6374,1 +5368,229513,145,7265,1 +5369,229516,96,4844,1 +5370,229519,46,2342,1 +5371,229524,193,9660,1 +5372,229525,71,3556,1 +5373,229533,3,191,1 +5374,229560,151,7579,1 +5375,229572,34,1711,1 +5376,229620,23,1157,1 +5377,229920,134,6706,1 +5378,229920,44,2234,1 +5379,229920,118,5938,1 +5380,229921,122,6115,1 +5381,229923,77,3862,1 +5382,229936,79,3984,1 +5383,229948,45,2272,1 +5384,229956,93,4655,1 +5385,230011,122,6124,1 +5386,230197,3,182,1 +5387,230460,144,7225,1 +5388,230533,2,105,1 +5389,230880,127,6367,1 +5390,230880,24,1239,1 +5391,230889,55,2800,1 +5392,230910,169,8463,1 +5393,230920,67,3391,1 +5394,230922,46,2307,1 +5395,230928,163,8191,1 +5396,230940,199,9973,1 +5397,230952,47,2381,1 +5398,231019,124,6235,1 +5399,231027,0,14,1 +5400,231049,152,7612,1 +5401,231360,118,5937,1 +5402,231372,56,2803,1 +5403,231374,158,7937,1 +5404,231396,35,1782,1 +5405,231397,155,7778,1 +5406,231399,100,5012,1 +5407,231412,24,1219,1 +5408,231432,178,8912,1 +5409,231447,126,6350,1 +5410,231864,162,8113,1 +5411,231915,95,4776,1 +5412,231957,95,4753,1 +5413,232323,55,2755,1 +5414,232801,125,6263,1 +5415,232824,37,1868,1 +5416,232836,171,8598,1 +5417,232838,48,2401,1 +5418,232845,182,9145,1 +5419,232848,46,2341,1 +5420,232864,103,5154,1 +5421,232884,14,719,1 +5422,232908,147,7372,1 +5423,232908,29,1469,1 +5424,232932,83,4200,1 +5425,232992,194,9701,1 +5426,233280,161,8058,1 +5427,233280,21,1080,1 +5428,233286,149,7499,1 +5429,233353,95,4795,1 +5430,233449,84,4210,1 +5431,233787,77,3877,1 +5432,233797,23,1161,1 +5433,233856,15,759,1 +5434,234242,146,7337,1 +5435,234267,57,2894,1 +5436,234277,141,7064,1 +5437,234288,178,8902,1 +5438,234324,192,9621,1 +5439,234720,38,1943,1 +5440,234743,77,3862,1 +5441,234751,48,2415,1 +5442,234753,122,6150,1 +5443,234756,23,1197,1 +5444,234768,184,9244,1 +5445,234774,48,2402,1 +5446,234792,124,6243,1 +5447,234793,198,9937,1 +5448,234798,87,4380,1 +5449,235681,168,8419,1 +5450,235689,181,9091,1 +5451,235692,83,4189,1 +5452,235693,30,1524,1 +5453,235694,68,3428,1 +5454,235737,152,7603,1 +5455,235740,94,4729,1 +5456,235946,81,4089,1 +5457,236162,171,8583,1 +5458,236166,2,148,1 +5459,236268,149,7470,1 +5460,236640,80,4043,1 +5461,236641,65,3255,1 +5462,236646,43,2161,1 +5463,236649,54,2734,1 +5464,236664,161,8069,1 +5465,236664,142,7137,1 +5466,236687,64,3226,1 +5467,236742,7,391,1 +5468,236763,176,8844,1 +5469,236784,187,9399,1 +5470,236844,188,9432,1 +5471,236953,182,9138,1 +5472,237120,20,1037,1 +5473,237126,19,984,1 +5474,237132,151,7554,1 +5475,237133,35,1786,1 +5476,237138,178,8920,1 +5477,237145,146,7308,1 +5478,237145,190,9521,1 +5479,237168,193,9664,1 +5480,237169,191,9556,1 +5481,237169,161,8068,1 +5482,237171,165,8267,1 +5483,237252,105,5279,1 +5484,237625,17,862,1 +5485,237657,92,4620,1 +5486,237660,85,4251,1 +5487,237663,193,9691,1 +5488,238105,114,5728,1 +5489,238128,195,9786,1 +5490,238180,38,1937,1 +5491,238200,30,1550,1 +5492,238224,55,2763,1 +5493,238560,58,2917,1 +5494,238560,52,2642,1 +5495,238561,173,8655,1 +5496,238569,52,2612,1 +5497,238570,21,1084,1 +5498,238584,58,2934,1 +5499,238587,164,8215,1 +5500,238597,108,5407,1 +5501,238597,54,2742,1 +5502,238603,170,8527,1 +5503,238644,92,4623,1 +5504,238656,152,7607,1 +5505,238692,171,8585,1 +5506,239040,196,9805,1 +5507,239040,30,1502,1 +5508,239040,58,2909,1 +5509,239041,40,2037,1 +5510,239041,7,362,1 +5511,239041,81,4084,1 +5512,239042,118,5933,1 +5513,239049,73,3665,1 +5514,239049,196,9828,1 +5515,239052,49,2463,1 +5516,239058,132,6635,1 +5517,239064,116,5811,1 +5518,239065,28,1448,1 +5519,239068,167,8396,1 +5520,239078,170,8523,1 +5521,239079,13,681,1 +5522,239088,187,9365,1 +5523,239091,83,4170,1 +5524,239099,150,7505,1 +5525,239100,20,1016,1 +5526,239112,98,4935,1 +5527,239121,125,6285,1 +5528,239136,63,3159,1 +5529,239140,68,3448,1 +5530,239145,104,5205,1 +5531,239160,53,2690,1 +5532,239196,17,876,1 +5533,239220,154,7732,1 +5534,239520,95,4764,1 +5535,239520,63,3193,1 +5536,239521,174,8740,1 +5537,239522,66,3338,1 +5538,239529,79,3979,1 +5539,239532,199,9964,1 +5540,239545,41,2075,1 +5541,239553,15,780,1 +5542,239559,98,4925,1 +5543,239581,126,6342,1 +5544,239586,44,2214,1 +5545,239597,54,2701,1 +5546,239628,29,1462,1 +5547,239664,175,8767,1 +5548,239666,5,285,1 +5549,239721,159,7992,1 +5550,239797,150,7505,1 +5551,239808,25,1263,1 +5552,240024,81,4059,1 +5553,240030,157,7895,1 +5554,240056,27,1381,1 +5555,240061,117,5875,1 +5556,240068,133,6689,1 +5557,240480,167,8351,1 +5558,240510,128,6413,1 +5559,240513,39,1985,1 +5560,240516,150,7546,1 +5561,240516,68,3448,1 +5562,240528,101,5093,1 +5563,240540,83,4160,1 +5564,240549,106,5318,1 +5565,240561,49,2486,1 +5566,240562,135,6763,1 +5567,240564,110,5514,1 +5568,240588,146,7338,1 +5569,240600,80,4006,1 +5570,240603,96,4837,1 +5571,240660,179,8961,1 +5572,240960,93,4666,1 +5573,240964,136,6814,1 +5574,240972,92,4618,1 +5575,240973,71,3595,1 +5576,240975,85,4293,1 +5577,240984,90,4524,1 +5578,240984,66,3323,1 +5579,240990,92,4606,1 +5580,240997,189,9464,1 +5581,240997,145,7255,1 +5582,241020,13,675,1 +5583,241086,155,7794,1 +5584,241440,152,7613,1 +5585,241440,160,8017,1 +5586,241443,196,9850,1 +5587,241452,171,8575,1 +5588,241455,145,7275,1 +5589,241466,104,5244,1 +5590,241512,77,3894,1 +5591,241533,75,3751,1 +5592,241608,23,1158,1 +5593,241920,97,4859,1 +5594,241920,88,4401,1 +5595,241923,165,8267,1 +5596,241926,21,1065,1 +5597,241932,134,6722,1 +5598,241932,57,2889,1 +5599,241944,54,2708,1 +5600,241944,120,6043,1 +5601,241944,169,8491,1 +5602,241945,166,8350,1 +5603,241950,168,8448,1 +5604,241956,16,820,1 +5605,241957,98,4944,1 +5606,241969,116,5805,1 +5607,241974,100,5048,1 +5608,241980,23,1175,1 +5609,241980,153,7664,1 +5610,241980,176,8814,1 +5611,241982,144,7244,1 +5612,241992,3,186,1 +5613,241992,115,5794,1 +5614,242007,97,4864,1 +5615,242136,16,808,1 +5616,242415,17,860,1 +5617,242416,44,2218,1 +5618,242439,108,5416,1 +5619,242497,11,593,1 +5620,242556,164,8233,1 +5621,242904,81,4077,1 +5622,242905,85,4259,1 +5623,242952,69,3462,1 +5624,242953,44,2213,1 +5625,243037,68,3446,1 +5626,243394,168,8419,1 +5627,243396,107,5366,1 +5628,243397,167,8375,1 +5629,243432,86,4323,1 +5630,243462,197,9864,1 +5631,243684,142,7141,1 +5632,243840,78,3936,1 +5633,243852,83,4198,1 +5634,243853,193,9671,1 +5635,243853,188,9415,1 +5636,243853,193,9698,1 +5637,243864,125,6291,1 +5638,243864,187,9359,1 +5639,243865,187,9363,1 +5640,243867,100,5011,1 +5641,243877,81,4100,1 +5642,243877,57,2891,1 +5643,243877,182,9146,1 +5644,243888,3,177,1 +5645,243888,78,3917,1 +5646,243889,12,608,1 +5647,243897,167,8351,1 +5648,243900,103,5184,1 +5649,243901,26,1317,1 +5650,243912,53,2700,1 +5651,243924,96,4833,1 +5652,243936,88,4450,1 +5653,243941,113,5671,1 +5654,243969,184,9231,1 +5655,243973,170,8510,1 +5656,244008,64,3221,1 +5657,244021,28,1426,1 +5658,244033,111,5587,1 +5659,244323,161,8087,1 +5660,244327,100,5007,1 +5661,244333,106,5330,1 +5662,244380,61,3087,1 +5663,244389,197,9873,1 +5664,244800,97,4891,1 +5665,244848,47,2378,1 +5666,244849,24,1242,1 +5667,244860,177,8896,1 +5668,244873,26,1338,1 +5669,244875,141,7079,1 +5670,244899,120,6033,1 +5671,245280,189,9488,1 +5672,245281,123,6162,1 +5673,245283,23,1197,1 +5674,245287,162,8122,1 +5675,245289,9,498,1 +5676,245297,65,3295,1 +5677,245307,157,7878,1 +5678,245307,189,9478,1 +5679,245308,92,4607,1 +5680,245316,101,5073,1 +5681,245316,19,956,1 +5682,245321,179,8972,1 +5683,245324,181,9071,1 +5684,245328,29,1491,1 +5685,245372,6,322,1 +5686,245388,15,763,1 +5687,245400,68,3407,1 +5688,245415,89,4478,1 +5689,245425,59,2977,1 +5690,245472,112,5637,1 +5691,245769,191,9572,1 +5692,245772,29,1491,1 +5693,245773,79,3954,1 +5694,245782,83,4191,1 +5695,245784,134,6744,1 +5696,245785,110,5506,1 +5697,245787,196,9839,1 +5698,245832,171,8590,1 +5699,245844,29,1481,1 +5700,246240,68,3440,1 +5701,246240,161,8060,1 +5702,246243,122,6121,1 +5703,246325,142,7150,1 +5704,246374,182,9142,1 +5705,246387,47,2390,1 +5706,246723,6,349,1 +5707,246744,134,6717,1 +5708,246747,1,71,1 +5709,246756,110,5534,1 +5710,246768,124,6234,1 +5711,246837,173,8669,1 +5712,246852,172,8633,1 +5713,246853,125,6271,1 +5714,247200,8,405,1 +5715,247200,167,8388,1 +5716,247200,9,472,1 +5717,247200,10,517,1 +5718,247200,92,4641,1 +5719,247200,162,8129,1 +5720,247200,53,2681,1 +5721,247200,99,4998,1 +5722,247201,138,6911,1 +5723,247201,6,335,1 +5724,247201,193,9671,1 +5725,247203,131,6576,1 +5726,247203,79,3984,1 +5727,247206,33,1675,1 +5728,247212,68,3413,1 +5729,247212,70,3501,1 +5730,247212,91,4567,1 +5731,247212,160,8023,1 +5732,247212,131,6599,1 +5733,247213,150,7501,1 +5734,247213,131,6587,1 +5735,247215,68,3450,1 +5736,247215,180,9032,1 +5737,247216,173,8683,1 +5738,247221,2,102,1 +5739,247224,97,4860,1 +5740,247225,142,7128,1 +5741,247226,50,2518,1 +5742,247228,196,9819,1 +5743,247234,34,1741,1 +5744,247236,62,3108,1 +5745,247236,74,3732,1 +5746,247236,119,5968,1 +5747,247236,150,7520,1 +5748,247248,3,169,1 +5749,247249,74,3713,1 +5750,247253,1,79,1 +5751,247260,165,8263,1 +5752,247261,140,7002,1 +5753,247284,43,2171,1 +5754,247284,158,7947,1 +5755,247284,131,6557,1 +5756,247285,34,1718,1 +5757,247288,112,5612,1 +5758,247290,8,445,1 +5759,247297,1,89,1 +5760,247301,102,5115,1 +5761,247312,63,3163,1 +5762,247320,125,6258,1 +5763,247321,78,3914,1 +5764,247333,133,6658,1 +5765,247344,84,4233,1 +5766,247383,11,575,1 +5767,247404,96,4813,1 +5768,247422,118,5928,1 +5769,247427,9,485,1 +5770,247693,2,140,1 +5771,247693,125,6292,1 +5772,247695,78,3918,1 +5773,247708,106,5310,1 +5774,247761,83,4153,1 +5775,248160,123,6198,1 +5776,248184,150,7507,1 +5777,248196,181,9091,1 +5778,248196,93,4663,1 +5779,248199,124,6243,1 +5780,248364,101,5070,1 +5781,248640,185,9291,1 +5782,248640,48,2437,1 +5783,248640,86,4305,1 +5784,248640,49,2498,1 +5785,248640,140,7045,1 +5786,248640,189,9478,1 +5787,248641,79,3995,1 +5788,248641,120,6033,1 +5789,248643,157,7862,1 +5790,248643,187,9387,1 +5791,248644,189,9453,1 +5792,248646,2,149,1 +5793,248649,42,2129,1 +5794,248650,112,5621,1 +5795,248650,180,9043,1 +5796,248650,57,2879,1 +5797,248652,52,2622,1 +5798,248652,130,6530,1 +5799,248652,11,576,1 +5800,248652,75,3780,1 +5801,248652,64,3232,1 +5802,248652,136,6803,1 +5803,248652,11,566,1 +5804,248652,104,5228,1 +5805,248652,20,1002,1 +5806,248653,28,1415,1 +5807,248653,88,4436,1 +5808,248653,102,5111,1 +5809,248654,137,6854,1 +5810,248658,103,5175,1 +5811,248661,82,4111,1 +5812,248662,173,8696,1 +5813,248664,138,6916,1 +5814,248664,180,9016,1 +5815,248664,196,9829,1 +5816,248664,51,2569,1 +5817,248664,193,9684,1 +5818,248664,112,5619,1 +5819,248665,86,4347,1 +5820,248665,46,2302,1 +5821,248665,40,2013,1 +5822,248666,13,697,1 +5823,248666,30,1503,1 +5824,248668,173,8659,1 +5825,248670,138,6927,1 +5826,248673,68,3426,1 +5827,248673,21,1095,1 +5828,248674,162,8107,1 +5829,248676,7,387,1 +5830,248676,114,5745,1 +5831,248677,91,4580,1 +5832,248677,31,1565,1 +5833,248679,87,4365,1 +5834,248679,15,760,1 +5835,248679,72,3609,1 +5836,248679,73,3684,1 +5837,248682,182,9122,1 +5838,248688,63,3175,1 +5839,248691,40,2005,1 +5840,248691,79,3981,1 +5841,248695,175,8768,1 +5842,248698,173,8693,1 +5843,248700,182,9131,1 +5844,248700,184,9250,1 +5845,248703,0,2,1 +5846,248703,139,7000,1 +5847,248709,91,4584,1 +5848,248712,25,1270,1 +5849,248712,177,8890,1 +5850,248712,162,8147,1 +5851,248713,39,1958,1 +5852,248713,11,559,1 +5853,248715,191,9590,1 +5854,248716,111,5577,1 +5855,248718,170,8501,1 +5856,248724,34,1732,1 +5857,248724,103,5163,1 +5858,248724,153,7685,1 +5859,248724,177,8873,1 +5860,248724,48,2420,1 +5861,248725,170,8532,1 +5862,248727,0,31,1 +5863,248727,11,561,1 +5864,248730,49,2481,1 +5865,248730,30,1549,1 +5866,248733,155,7783,1 +5867,248736,159,7961,1 +5868,248736,33,1698,1 +5869,248739,111,5599,1 +5870,248745,179,8992,1 +5871,248748,149,7475,1 +5872,248760,198,9941,1 +5873,248778,159,7963,1 +5874,248784,92,4614,1 +5875,248796,141,7057,1 +5876,248811,148,7402,1 +5877,248841,176,8833,1 +5878,248880,113,5656,1 +5879,248930,15,795,1 +5880,249122,8,412,1 +5881,249122,130,6548,1 +5882,249133,26,1347,1 +5883,249134,178,8921,1 +5884,249144,37,1871,1 +5885,249147,55,2778,1 +5886,249156,115,5757,1 +5887,249156,112,5615,1 +5888,249168,190,9505,1 +5889,249168,151,7584,1 +5890,249174,177,8889,1 +5891,249180,108,5419,1 +5892,249187,194,9735,1 +5893,249192,8,409,1 +5894,249195,150,7532,1 +5895,249246,42,2105,1 +5896,249258,81,4059,1 +5897,249600,151,7580,1 +5898,249600,152,7604,1 +5899,249600,27,1372,1 +5900,249601,105,5289,1 +5901,249601,105,5289,1 +5902,249601,140,7024,1 +5903,249603,115,5757,1 +5904,249604,129,6490,1 +5905,249606,134,6707,1 +5906,249609,166,8310,1 +5907,249612,172,8620,1 +5908,249613,95,4757,1 +5909,249614,22,1118,1 +5910,249615,94,4731,1 +5911,249618,99,4953,1 +5912,249621,193,9670,1 +5913,249621,54,2738,1 +5914,249625,70,3512,1 +5915,249636,198,9934,1 +5916,249636,142,7138,1 +5917,249637,106,5303,1 +5918,249637,176,8829,1 +5919,249642,41,2052,1 +5920,249648,44,2240,1 +5921,249649,42,2105,1 +5922,249657,47,2368,1 +5923,249673,1,78,1 +5924,249697,23,1174,1 +5925,249709,88,4433,1 +5926,249832,24,1205,1 +5927,249855,63,3194,1 +5928,250080,173,8681,1 +5929,250082,180,9023,1 +5930,250084,183,9176,1 +5931,250084,115,5788,1 +5932,250092,124,6238,1 +5933,250092,82,4108,1 +5934,250092,46,2348,1 +5935,250095,152,7617,1 +5936,250098,168,8402,1 +5937,250099,195,9759,1 +5938,250101,29,1461,1 +5939,250104,153,7671,1 +5940,250107,96,4816,1 +5941,250109,50,2514,1 +5942,250113,81,4058,1 +5943,250116,36,1813,1 +5944,250116,69,3484,1 +5945,250116,192,9643,1 +5946,250128,131,6564,1 +5947,250147,97,4894,1 +5948,250149,0,41,1 +5949,250152,93,4698,1 +5950,250152,34,1739,1 +5951,250153,86,4301,1 +5952,250155,169,8498,1 +5953,250167,136,6818,1 +5954,250168,8,408,1 +5955,250172,192,9615,1 +5956,250177,28,1441,1 +5957,250178,26,1348,1 +5958,250178,53,2665,1 +5959,250182,45,2298,1 +5960,250185,177,8862,1 +5961,250224,4,247,1 +5962,250236,78,3907,1 +5963,250257,15,793,1 +5964,250260,39,1962,1 +5965,250275,151,7584,1 +5966,250561,119,5998,1 +5967,250562,196,9819,1 +5968,250562,36,1811,1 +5969,250632,146,7328,1 +5970,251088,7,393,1 +5971,251520,41,2071,1 +5972,251569,133,6691,1 +5973,252000,11,558,1 +5974,252000,143,7180,1 +5975,252000,27,1368,1 +5976,252003,93,4693,1 +5977,252003,112,5612,1 +5978,252009,128,6403,1 +5979,252009,166,8338,1 +5980,252009,131,6572,1 +5981,252010,122,6105,1 +5982,252012,146,7314,1 +5983,252022,103,5190,1 +5984,252030,157,7864,1 +5985,252033,110,5529,1 +5986,252036,157,7889,1 +5987,252039,166,8304,1 +5988,252042,194,9717,1 +5989,252042,128,6444,1 +5990,252045,175,8763,1 +5991,252045,69,3471,1 +5992,252046,47,2352,1 +5993,252057,132,6641,1 +5994,252061,85,4286,1 +5995,252072,75,3782,1 +5996,252074,81,4071,1 +5997,252099,151,7600,1 +5998,252099,119,5952,1 +5999,252102,29,1463,1 +6000,252156,63,3154,1 +6001,252540,67,3373,1 +6002,252588,175,8759,1 +6003,252616,69,3472,1 +6004,252649,96,4818,1 +6005,252969,92,4644,1 +6006,252972,190,9516,1 +6007,252978,87,4377,1 +6008,252984,173,8667,1 +6009,252985,168,8423,1 +6010,253029,80,4025,1 +6011,253032,89,4484,1 +6012,253048,64,3208,1 +6013,253053,107,5364,1 +6014,253093,168,8423,1 +6015,253452,165,8281,1 +6016,253470,85,4259,1 +6017,253485,33,1691,1 +6018,253933,197,9865,1 +6019,253946,129,6500,1 +6020,253956,50,2513,1 +6021,254400,8,431,1 +6022,254400,18,941,1 +6023,254402,43,2189,1 +6024,254403,55,2759,1 +6025,254412,154,7749,1 +6026,254412,134,6703,1 +6027,254415,161,8097,1 +6028,254415,90,4508,1 +6029,254415,104,5213,1 +6030,254415,38,1936,1 +6031,254436,185,9297,1 +6032,254436,64,3213,1 +6033,254437,163,8195,1 +6034,254439,24,1227,1 +6035,254441,76,3827,1 +6036,254452,169,8474,1 +6037,254460,44,2234,1 +6038,254508,183,9164,1 +6039,254521,133,6687,1 +6040,254544,169,8500,1 +6041,254629,138,6920,1 +6042,254880,158,7931,1 +6043,254886,39,1984,1 +6044,254893,37,1851,1 +6045,255036,70,3501,1 +6046,255360,35,1755,1 +6047,255360,155,7796,1 +6048,255360,128,6434,1 +6049,255361,43,2198,1 +6050,255362,132,6644,1 +6051,255363,135,6763,1 +6052,255384,144,7238,1 +6053,255384,82,4128,1 +6054,255384,150,7520,1 +6055,255385,156,7820,1 +6056,255397,155,7785,1 +6057,255397,169,8451,1 +6058,255398,15,776,1 +6059,255408,112,5622,1 +6060,255410,184,9250,1 +6061,255411,177,8869,1 +6062,255432,15,798,1 +6063,255444,11,582,1 +6064,255445,68,3436,1 +6065,255450,128,6435,1 +6066,255458,99,4975,1 +6067,255480,28,1419,1 +6068,255480,44,2245,1 +6069,255481,155,7767,1 +6070,255549,0,6,1 +6071,255840,2,110,1 +6072,255886,163,8197,1 +6073,255900,101,5055,1 +6074,255901,135,6774,1 +6075,255924,127,6357,1 +6076,255949,55,2796,1 +6077,255960,8,443,1 +6078,256320,142,7139,1 +6079,256320,199,9990,1 +6080,256320,83,4165,1 +6081,256320,4,201,1 +6082,256321,61,3092,1 +6083,256323,139,6959,1 +6084,256323,114,5741,1 +6085,256324,179,8951,1 +6086,256327,125,6269,1 +6087,256329,73,3681,1 +6088,256332,62,3132,1 +6089,256333,180,9029,1 +6090,256341,56,2820,1 +6091,256344,35,1797,1 +6092,256344,10,532,1 +6093,256344,159,7970,1 +6094,256344,5,275,1 +6095,256344,119,5994,1 +6096,256347,0,31,1 +6097,256348,20,1001,1 +6098,256356,60,3026,1 +6099,256356,74,3703,1 +6100,256356,156,7840,1 +6101,256356,2,122,1 +6102,256356,115,5768,1 +6103,256357,85,4281,1 +6104,256357,23,1169,1 +6105,256362,72,3618,1 +6106,256368,156,7837,1 +6107,256368,14,715,1 +6108,256368,79,3951,1 +6109,256368,55,2794,1 +6110,256369,64,3231,1 +6111,256380,153,7678,1 +6112,256380,152,7642,1 +6113,256392,119,5967,1 +6114,256392,123,6154,1 +6115,256406,17,852,1 +6116,256408,187,9380,1 +6117,256416,152,7649,1 +6118,256418,115,5752,1 +6119,256419,195,9762,1 +6120,256437,32,1617,1 +6121,256452,106,5312,1 +6122,256470,193,9696,1 +6123,256476,52,2635,1 +6124,256533,60,3041,1 +6125,256728,66,3315,1 +6126,256821,60,3003,1 +6127,256824,140,7019,1 +6128,256980,128,6419,1 +6129,257298,129,6474,1 +6130,257328,81,4082,1 +6131,257353,41,2063,1 +6132,257796,150,7510,1 +6133,257844,37,1900,1 +6134,258348,76,3803,1 +6135,258720,111,5571,1 +6136,258721,26,1314,1 +6137,258739,175,8791,1 +6138,258755,179,8966,1 +6139,258758,190,9506,1 +6140,258768,7,352,1 +6141,258768,109,5455,1 +6142,258810,68,3419,1 +6143,258810,70,3538,1 +6144,258852,105,5251,1 +6145,258978,135,6770,1 +6146,259212,138,6928,1 +6147,259405,138,6922,1 +6148,259680,54,2710,1 +6149,259680,133,6690,1 +6150,259680,37,1900,1 +6151,259680,84,4201,1 +6152,259680,45,2288,1 +6153,259681,66,3320,1 +6154,259681,133,6687,1 +6155,259684,147,7356,1 +6156,259686,63,3177,1 +6157,259689,7,366,1 +6158,259692,58,2913,1 +6159,259694,62,3125,1 +6160,259708,72,3647,1 +6161,259709,70,3506,1 +6162,259716,161,8059,1 +6163,259717,104,5224,1 +6164,259717,71,3557,1 +6165,259725,107,5362,1 +6166,259725,151,7570,1 +6167,259728,4,204,1 +6168,259730,82,4116,1 +6169,259735,137,6859,1 +6170,259741,155,7770,1 +6171,259741,59,2984,1 +6172,259743,164,8205,1 +6173,259744,57,2867,1 +6174,259919,53,2667,1 +6175,259933,110,5531,1 +6176,260160,55,2795,1 +6177,260175,157,7856,1 +6178,260181,11,575,1 +6179,260184,92,4616,1 +6180,260187,111,5551,1 +6181,260188,73,3669,1 +6182,260198,84,4231,1 +6183,260208,24,1208,1 +6184,260220,120,6048,1 +6185,260232,62,3148,1 +6186,260640,128,6430,1 +6187,260641,150,7533,1 +6188,260642,112,5641,1 +6189,260653,4,208,1 +6190,260673,54,2726,1 +6191,260676,81,4090,1 +6192,260678,82,4130,1 +6193,260689,155,7769,1 +6194,260697,199,9961,1 +6195,260700,191,9586,1 +6196,260706,197,9883,1 +6197,260724,18,948,1 +6198,260724,161,8064,1 +6199,260726,36,1840,1 +6200,260748,65,3269,1 +6201,260749,33,1668,1 +6202,260749,159,7954,1 +6203,260760,163,8195,1 +6204,260772,174,8741,1 +6205,260809,18,924,1 +6206,261120,54,2742,1 +6207,261120,3,168,1 +6208,261120,160,8014,1 +6209,261120,175,8790,1 +6210,261121,4,216,1 +6211,261121,28,1420,1 +6212,261121,112,5639,1 +6213,261123,157,7851,1 +6214,261132,92,4646,1 +6215,261132,42,2141,1 +6216,261132,29,1464,1 +6217,261133,115,5787,1 +6218,261135,119,5977,1 +6219,261144,199,9998,1 +6220,261150,126,6342,1 +6221,261156,142,7111,1 +6222,261158,147,7351,1 +6223,261159,163,8162,1 +6224,261165,185,9280,1 +6225,261168,0,36,1 +6226,261168,84,4225,1 +6227,261180,61,3100,1 +6228,261180,21,1081,1 +6229,261180,26,1342,1 +6230,261180,58,2937,1 +6231,261181,84,4228,1 +6232,261213,98,4945,1 +6233,261213,192,9630,1 +6234,261225,72,3643,1 +6235,261228,165,8265,1 +6236,261229,175,8791,1 +6237,261229,80,4050,1 +6238,261240,35,1795,1 +6239,261292,86,4328,1 +6240,261342,51,2573,1 +6241,261600,31,1578,1 +6242,261600,9,471,1 +6243,261609,43,2175,1 +6244,261612,173,8674,1 +6245,261612,68,3423,1 +6246,261612,64,3218,1 +6247,261615,164,8229,1 +6248,261616,146,7310,1 +6249,261636,134,6712,1 +6250,261636,74,3715,1 +6251,261636,176,8842,1 +6252,261639,102,5120,1 +6253,261647,175,8756,1 +6254,261648,168,8426,1 +6255,261654,21,1066,1 +6256,261660,39,2000,1 +6257,261660,100,5014,1 +6258,261672,7,390,1 +6259,261673,135,6776,1 +6260,261693,157,7890,1 +6261,261708,98,4917,1 +6262,261745,113,5692,1 +6263,261756,177,8899,1 +6264,262092,91,4575,1 +6265,262159,164,8217,1 +6266,263040,171,8556,1 +6267,263040,110,5527,1 +6268,263041,14,724,1 +6269,263041,100,5037,1 +6270,263044,160,8042,1 +6271,263046,130,6518,1 +6272,263047,40,2043,1 +6273,263048,29,1493,1 +6274,263049,131,6560,1 +6275,263052,42,2131,1 +6276,263052,7,379,1 +6277,263052,51,2595,1 +6278,263053,11,587,1 +6279,263056,134,6719,1 +6280,263058,120,6027,1 +6281,263059,44,2243,1 +6282,263064,57,2888,1 +6283,263064,143,7171,1 +6284,263064,99,4995,1 +6285,263064,100,5009,1 +6286,263064,192,9608,1 +6287,263065,123,6170,1 +6288,263076,198,9902,1 +6289,263076,132,6601,1 +6290,263079,112,5633,1 +6291,263082,63,3198,1 +6292,263083,99,4982,1 +6293,263088,78,3917,1 +6294,263095,22,1101,1 +6295,263100,159,7970,1 +6296,263100,142,7120,1 +6297,263103,92,4603,1 +6298,263106,48,2435,1 +6299,263107,153,7660,1 +6300,263111,95,4768,1 +6301,263112,145,7297,1 +6302,263113,63,3152,1 +6303,263121,83,4196,1 +6304,263124,127,6357,1 +6305,263124,74,3740,1 +6306,263124,113,5682,1 +6307,263124,9,453,1 +6308,263125,93,4683,1 +6309,263132,166,8319,1 +6310,263136,45,2282,1 +6311,263136,185,9253,1 +6312,263142,93,4658,1 +6313,263145,59,2987,1 +6314,263148,150,7526,1 +6315,263154,79,3981,1 +6316,263155,11,558,1 +6317,263161,135,6756,1 +6318,263166,26,1336,1 +6319,263177,85,4263,1 +6320,263198,76,3845,1 +6321,263203,37,1869,1 +6322,263208,85,4295,1 +6323,263208,88,4439,1 +6324,263209,153,7665,1 +6325,263244,68,3420,1 +6326,263268,165,8261,1 +6327,263373,161,8064,1 +6328,263520,38,1903,1 +6329,263520,130,6504,1 +6330,263559,12,616,1 +6331,263568,89,4456,1 +6332,263607,29,1497,1 +6333,263664,194,9723,1 +6334,263676,5,274,1 +6335,264012,174,8728,1 +6336,264024,44,2237,1 +6337,264121,107,5377,1 +6338,264480,10,542,1 +6339,264480,80,4034,1 +6340,264481,33,1689,1 +6341,264489,167,8379,1 +6342,264492,120,6018,1 +6343,264492,192,9648,1 +6344,264492,28,1401,1 +6345,264502,11,574,1 +6346,264504,161,8061,1 +6347,264504,80,4045,1 +6348,264504,139,6989,1 +6349,264510,135,6769,1 +6350,264516,158,7936,1 +6351,264519,153,7675,1 +6352,264520,112,5631,1 +6353,264528,32,1632,1 +6354,264528,166,8308,1 +6355,264540,81,4085,1 +6356,264541,144,7242,1 +6357,264541,136,6804,1 +6358,264542,13,700,1 +6359,264543,87,4367,1 +6360,264552,106,5344,1 +6361,264553,36,1804,1 +6362,264568,46,2310,1 +6363,264612,148,7440,1 +6364,264711,175,8758,1 +6365,264984,41,2059,1 +6366,265440,44,2207,1 +6367,265441,44,2240,1 +6368,265444,132,6612,1 +6369,265452,53,2653,1 +6370,265464,197,9875,1 +6371,265464,66,3321,1 +6372,265466,51,2599,1 +6373,265485,159,7989,1 +6374,265489,191,9577,1 +6375,265494,91,4577,1 +6376,265503,52,2603,1 +6377,265548,106,5324,1 +6378,265560,113,5684,1 +6379,265566,159,7989,1 +6380,265629,41,2091,1 +6381,265695,113,5666,1 +6382,266440,5,280,1 +6383,266882,55,2762,1 +6384,266916,105,5294,1 +6385,266919,143,7175,1 +6386,266940,124,6207,1 +6387,266952,37,1860,1 +6388,266964,72,3645,1 +6389,267129,101,5063,1 +6390,267360,109,5474,1 +6391,267361,191,9574,1 +6392,267373,87,4391,1 +6393,267438,116,5814,1 +6394,267458,137,6879,1 +6395,267504,121,6097,1 +6396,267853,91,4554,1 +6397,267874,135,6794,1 +6398,267933,141,7072,1 +6399,267948,113,5698,1 +6400,268008,198,9917,1 +6401,268008,199,9969,1 +6402,268320,136,6804,1 +6403,268321,73,3678,1 +6404,268332,64,3218,1 +6405,268332,102,5126,1 +6406,268344,131,6556,1 +6407,268354,127,6388,1 +6408,268356,88,4426,1 +6409,268362,189,9473,1 +6410,268365,48,2425,1 +6411,268369,62,3118,1 +6412,268386,192,9637,1 +6413,268404,49,2492,1 +6414,268483,112,5626,1 +6415,268524,194,9733,1 +6416,268534,17,891,1 +6417,268825,15,760,1 +6418,269263,135,6764,1 +6419,269294,144,7219,1 +6420,269760,99,4980,1 +6421,269760,74,3733,1 +6422,269763,143,7173,1 +6423,269772,175,8772,1 +6424,269772,88,4437,1 +6425,269772,85,4280,1 +6426,269844,54,2720,1 +6427,269889,15,791,1 +6428,270243,15,769,1 +6429,270243,150,7526,1 +6430,270254,179,8977,1 +6431,270289,84,4204,1 +6432,270337,199,9980,1 +6433,270720,74,3701,1 +6434,270720,65,3295,1 +6435,270720,93,4682,1 +6436,270738,158,7920,1 +6437,270738,183,9186,1 +6438,270763,47,2399,1 +6439,270795,116,5849,1 +6440,270804,60,3009,1 +6441,270816,18,931,1 +6442,270816,71,3575,1 +6443,271212,103,5188,1 +6444,271223,33,1667,1 +6445,271223,54,2743,1 +6446,271299,9,485,1 +6447,271309,63,3175,1 +6448,271825,183,9164,1 +6449,272185,75,3786,1 +6450,272197,78,3931,1 +6451,272208,94,4738,1 +6452,272214,194,9735,1 +6453,273121,26,1345,1 +6454,273129,125,6266,1 +6455,273133,143,7184,1 +6456,273138,145,7272,1 +6457,273146,45,2300,1 +6458,273160,99,4989,1 +6459,273168,44,2205,1 +6460,273204,9,469,1 +6461,273211,49,2461,1 +6462,273217,131,6553,1 +6463,273228,171,8561,1 +6464,273264,150,7507,1 +6465,273265,62,3145,1 +6466,273289,134,6749,1 +6467,273300,57,2892,1 +6468,273624,196,9819,1 +6469,273662,102,5142,1 +6470,273674,197,9877,1 +6471,273684,13,678,1 +6472,273696,84,4245,1 +6473,273742,105,5295,1 +6474,273768,108,5448,1 +6475,273840,170,8528,1 +6476,274081,42,2145,1 +6477,274086,49,2497,1 +6478,274088,99,4952,1 +6479,274089,41,2075,1 +6480,274092,52,2641,1 +6481,274114,181,9096,1 +6482,274124,193,9680,1 +6483,274132,172,8623,1 +6484,274140,9,491,1 +6485,274144,12,628,1 +6486,274153,197,9877,1 +6487,274156,88,4444,1 +6488,274185,85,4252,1 +6489,274560,52,2650,1 +6490,274560,168,8415,1 +6491,274560,121,6081,1 +6492,274561,178,8929,1 +6493,274572,154,7734,1 +6494,274573,54,2722,1 +6495,274582,133,6675,1 +6496,274584,35,1777,1 +6497,274597,19,982,1 +6498,274597,8,446,1 +6499,274599,181,9056,1 +6500,274623,152,7615,1 +6501,274632,93,4691,1 +6502,274634,47,2355,1 +6503,274645,71,3551,1 +6504,274646,85,4252,1 +6505,274753,190,9545,1 +6506,274782,81,4061,1 +6507,275041,90,4513,1 +6508,275041,109,5453,1 +6509,275065,55,2779,1 +6510,275088,160,8002,1 +6511,275090,149,7490,1 +6512,275106,48,2438,1 +6513,275107,189,9486,1 +6514,275130,197,9870,1 +6515,275196,198,9947,1 +6516,275520,78,3922,1 +6517,275520,110,5510,1 +6518,275529,141,7074,1 +6519,275532,23,1186,1 +6520,275533,2,120,1 +6521,275534,195,9767,1 +6522,275544,16,833,1 +6523,275547,9,463,1 +6524,275556,35,1794,1 +6525,275556,1,67,1 +6526,275556,46,2312,1 +6527,275559,49,2484,1 +6528,275559,66,3341,1 +6529,275569,69,3453,1 +6530,275570,103,5194,1 +6531,275575,184,9232,1 +6532,275592,183,9174,1 +6533,275593,24,1203,1 +6534,275604,4,218,1 +6535,275628,119,5964,1 +6536,275658,14,705,1 +6537,275704,21,1085,1 +6538,276519,154,7707,1 +6539,276543,162,8134,1 +6540,276696,128,6434,1 +6541,277440,114,5710,1 +6542,277447,66,3305,1 +6543,277452,187,9351,1 +6544,277460,173,8672,1 +6545,277464,1,84,1 +6546,277476,80,4003,1 +6547,277486,9,476,1 +6548,277495,189,9480,1 +6549,277536,50,2504,1 +6550,277920,97,4880,1 +6551,277932,191,9570,1 +6552,277938,154,7737,1 +6553,277947,150,7510,1 +6554,277950,94,4740,1 +6555,277956,97,4865,1 +6556,277956,69,3467,1 +6557,277957,56,2833,1 +6558,277963,94,4704,1 +6559,277968,102,5107,1 +6560,278015,23,1177,1 +6561,278016,172,8638,1 +6562,278040,89,4478,1 +6563,278065,44,2203,1 +6564,278400,48,2448,1 +6565,278409,133,6659,1 +6566,278568,197,9880,1 +6567,278892,185,9291,1 +6568,278892,187,9382,1 +6569,278892,80,4026,1 +6570,278895,45,2299,1 +6571,278896,124,6216,1 +6572,278900,117,5870,1 +6573,278904,9,484,1 +6574,278907,197,9898,1 +6575,278911,91,4595,1 +6576,278916,57,2869,1 +6577,278916,25,1254,1 +6578,278916,158,7929,1 +6579,278916,45,2258,1 +6580,278917,97,4884,1 +6581,278926,52,2625,1 +6582,278928,82,4140,1 +6583,278929,91,4564,1 +6584,278961,20,1042,1 +6585,278964,7,397,1 +6586,278964,132,6616,1 +6587,278976,71,3572,1 +6588,278981,84,4212,1 +6589,278989,1,70,1 +6590,278989,175,8771,1 +6591,279036,7,370,1 +6592,279039,105,5280,1 +6593,279300,123,6158,1 +6594,279360,83,4164,1 +6595,279360,136,6822,1 +6596,279360,167,8366,1 +6597,279360,82,4113,1 +6598,279363,106,5347,1 +6599,279363,34,1711,1 +6600,279372,117,5854,1 +6601,279374,58,2927,1 +6602,279384,113,5684,1 +6603,279384,164,8214,1 +6604,279384,93,4675,1 +6605,279386,70,3522,1 +6606,279390,172,8648,1 +6607,279393,40,2002,1 +6608,279396,157,7860,1 +6609,279396,71,3571,1 +6610,279408,165,8274,1 +6611,279409,109,5471,1 +6612,279427,140,7028,1 +6613,279432,32,1601,1 +6614,279432,54,2729,1 +6615,279450,39,1967,1 +6616,279468,21,1070,1 +6617,279600,147,7373,1 +6618,279858,191,9577,1 +6619,280080,147,7354,1 +6620,280320,107,5355,1 +6621,280320,123,6158,1 +6622,280321,24,1237,1 +6623,280395,49,2456,1 +6624,280404,148,7409,1 +6625,280536,130,6539,1 +6626,281299,111,5584,1 +6627,281308,164,8219,1 +6628,281316,22,1145,1 +6629,281316,84,4218,1 +6630,281328,18,917,1 +6631,281332,120,6019,1 +6632,281333,21,1063,1 +6633,281367,78,3931,1 +6634,281389,22,1133,1 +6635,281394,116,5820,1 +6636,281400,160,8017,1 +6637,281412,35,1758,1 +6638,281460,153,7690,1 +6639,281629,4,201,1 +6640,281760,29,1475,1 +6641,281760,58,2948,1 +6642,281760,126,6319,1 +6643,281760,102,5114,1 +6644,281760,124,6248,1 +6645,281760,138,6928,1 +6646,281760,31,1570,1 +6647,281760,124,6209,1 +6648,281760,141,7084,1 +6649,281760,9,462,1 +6650,281760,163,8196,1 +6651,281760,154,7744,1 +6652,281760,126,6324,1 +6653,281760,101,5058,1 +6654,281760,14,704,1 +6655,281760,138,6924,1 +6656,281760,190,9527,1 +6657,281760,91,4565,1 +6658,281760,70,3549,1 +6659,281761,64,3205,1 +6660,281761,14,726,1 +6661,281761,26,1337,1 +6662,281761,158,7917,1 +6663,281761,119,5996,1 +6664,281761,79,3968,1 +6665,281763,14,740,1 +6666,281763,71,3572,1 +6667,281763,129,6477,1 +6668,281765,95,4765,1 +6669,281766,179,8976,1 +6670,281767,69,3456,1 +6671,281767,171,8597,1 +6672,281768,64,3212,1 +6673,281768,64,3239,1 +6674,281769,124,6243,1 +6675,281769,57,2869,1 +6676,281770,152,7628,1 +6677,281772,107,5373,1 +6678,281772,126,6310,1 +6679,281772,140,7047,1 +6680,281772,59,2973,1 +6681,281772,95,4755,1 +6682,281772,156,7809,1 +6683,281772,52,2629,1 +6684,281772,59,2977,1 +6685,281772,147,7382,1 +6686,281772,177,8872,1 +6687,281772,74,3731,1 +6688,281772,125,6273,1 +6689,281772,177,8895,1 +6690,281772,187,9363,1 +6691,281773,181,9060,1 +6692,281773,106,5341,1 +6693,281773,133,6655,1 +6694,281774,102,5114,1 +6695,281774,90,4516,1 +6696,281775,143,7186,1 +6697,281775,188,9412,1 +6698,281775,183,9193,1 +6699,281775,125,6268,1 +6700,281775,12,605,1 +6701,281775,155,7786,1 +6702,281775,159,7985,1 +6703,281779,65,3271,1 +6704,281780,155,7779,1 +6705,281781,5,268,1 +6706,281781,13,691,1 +6707,281784,107,5365,1 +6708,281784,120,6032,1 +6709,281784,12,607,1 +6710,281784,171,8562,1 +6711,281784,109,5471,1 +6712,281784,64,3227,1 +6713,281784,102,5105,1 +6714,281784,148,7408,1 +6715,281784,181,9063,1 +6716,281784,122,6126,1 +6717,281784,13,674,1 +6718,281784,156,7827,1 +6719,281785,108,5450,1 +6720,281785,43,2177,1 +6721,281785,25,1266,1 +6722,281785,33,1654,1 +6723,281785,20,1009,1 +6724,281785,199,9970,1 +6725,281786,113,5686,1 +6726,281786,147,7388,1 +6727,281788,67,3370,1 +6728,281790,60,3005,1 +6729,281796,123,6175,1 +6730,281796,101,5074,1 +6731,281796,132,6633,1 +6732,281796,59,2989,1 +6733,281796,186,9315,1 +6734,281797,6,305,1 +6735,281797,134,6738,1 +6736,281797,174,8730,1 +6737,281798,144,7233,1 +6738,281799,191,9576,1 +6739,281800,109,5461,1 +6740,281805,62,3108,1 +6741,281808,35,1764,1 +6742,281808,191,9563,1 +6743,281808,74,3746,1 +6744,281808,74,3719,1 +6745,281808,125,6278,1 +6746,281808,162,8141,1 +6747,281808,178,8922,1 +6748,281809,156,7812,1 +6749,281809,12,610,1 +6750,281809,141,7094,1 +6751,281810,139,6985,1 +6752,281811,132,6617,1 +6753,281811,197,9864,1 +6754,281811,107,5383,1 +6755,281814,159,7964,1 +6756,281817,111,5576,1 +6757,281817,103,5174,1 +6758,281818,61,3089,1 +6759,281820,72,3618,1 +6760,281820,113,5686,1 +6761,281820,199,9988,1 +6762,281820,147,7378,1 +6763,281820,142,7117,1 +6764,281820,199,9998,1 +6765,281820,145,7284,1 +6766,281820,130,6544,1 +6767,281820,187,9351,1 +6768,281820,120,6049,1 +6769,281820,35,1784,1 +6770,281820,79,3985,1 +6771,281821,60,3018,1 +6772,281822,124,6202,1 +6773,281829,47,2370,1 +6774,281832,168,8435,1 +6775,281832,136,6820,1 +6776,281833,108,5447,1 +6777,281833,113,5660,1 +6778,281833,83,4153,1 +6779,281836,150,7536,1 +6780,281838,148,7402,1 +6781,281841,81,4095,1 +6782,281842,45,2266,1 +6783,281844,86,4316,1 +6784,281844,185,9251,1 +6785,281844,185,9275,1 +6786,281844,59,2977,1 +6787,281847,75,3786,1 +6788,281848,128,6416,1 +6789,281850,189,9485,1 +6790,281851,64,3247,1 +6791,281855,6,332,1 +6792,281855,84,4221,1 +6793,281856,64,3240,1 +6794,281856,196,9802,1 +6795,281856,135,6798,1 +6796,281857,100,5023,1 +6797,281868,13,675,1 +6798,281868,178,8938,1 +6799,281868,70,3524,1 +6800,281871,84,4228,1 +6801,281877,19,966,1 +6802,281880,68,3406,1 +6803,281892,108,5430,1 +6804,281892,98,4950,1 +6805,281892,6,302,1 +6806,281892,23,1184,1 +6807,281893,196,9848,1 +6808,281894,166,8321,1 +6809,281904,21,1070,1 +6810,281904,8,412,1 +6811,281905,160,8046,1 +6812,281907,58,2919,1 +6813,281912,29,1490,1 +6814,281916,56,2821,1 +6815,281925,87,4400,1 +6816,281928,63,3160,1 +6817,281928,118,5941,1 +6818,281929,129,6458,1 +6819,281929,47,2351,1 +6820,281931,63,3155,1 +6821,281932,6,350,1 +6822,281937,183,9189,1 +6823,281952,32,1635,1 +6824,281954,103,5159,1 +6825,281982,80,4005,1 +6826,282000,56,2833,1 +6827,282003,122,6112,1 +6828,282025,76,3818,1 +6829,282048,112,5633,1 +6830,282129,61,3056,1 +6831,282240,105,5276,1 +6832,282240,78,3909,1 +6833,282240,192,9622,1 +6834,282240,139,6996,1 +6835,282240,127,6356,1 +6836,282240,82,4124,1 +6837,282240,151,7572,1 +6838,282240,185,9278,1 +6839,282240,138,6921,1 +6840,282240,150,7510,1 +6841,282240,154,7745,1 +6842,282240,166,8346,1 +6843,282240,94,4740,1 +6844,282240,35,1788,1 +6845,282241,76,3838,1 +6846,282241,191,9551,1 +6847,282241,159,7985,1 +6848,282241,186,9318,1 +6849,282241,105,5292,1 +6850,282241,123,6176,1 +6851,282241,57,2880,1 +6852,282241,50,2532,1 +6853,282241,88,4442,1 +6854,282241,108,5406,1 +6855,282241,101,5064,1 +6856,282242,60,3001,1 +6857,282242,159,7976,1 +6858,282242,94,4746,1 +6859,282242,48,2446,1 +6860,282243,134,6747,1 +6861,282243,123,6159,1 +6862,282244,36,1818,1 +6863,282245,162,8133,1 +6864,282249,88,4429,1 +6865,282252,87,4378,1 +6866,282252,42,2123,1 +6867,282252,143,7170,1 +6868,282252,130,6532,1 +6869,282252,145,7262,1 +6870,282252,177,8856,1 +6871,282252,148,7450,1 +6872,282252,66,3342,1 +6873,282252,63,3160,1 +6874,282252,108,5437,1 +6875,282252,86,4342,1 +6876,282252,122,6104,1 +6877,282252,147,7358,1 +6878,282252,93,4665,1 +6879,282252,24,1242,1 +6880,282253,178,8908,1 +6881,282253,89,4480,1 +6882,282253,43,2190,1 +6883,282253,63,3192,1 +6884,282253,192,9638,1 +6885,282253,12,608,1 +6886,282255,192,9605,1 +6887,282258,174,8741,1 +6888,282258,195,9782,1 +6889,282261,10,506,1 +6890,282261,25,1283,1 +6891,282261,192,9605,1 +6892,282262,2,144,1 +6893,282262,61,3074,1 +6894,282264,68,3440,1 +6895,282264,88,4429,1 +6896,282264,59,2961,1 +6897,282264,94,4741,1 +6898,282264,15,795,1 +6899,282264,125,6280,1 +6900,282264,58,2938,1 +6901,282264,121,6082,1 +6902,282264,48,2413,1 +6903,282264,115,5752,1 +6904,282265,102,5113,1 +6905,282265,168,8430,1 +6906,282265,93,4691,1 +6907,282266,188,9439,1 +6908,282267,92,4607,1 +6909,282267,92,4631,1 +6910,282267,0,3,1 +6911,282267,162,8111,1 +6912,282268,30,1536,1 +6913,282270,7,365,1 +6914,282273,150,7511,1 +6915,282276,67,3381,1 +6916,282276,53,2680,1 +6917,282276,2,137,1 +6918,282276,156,7806,1 +6919,282276,133,6658,1 +6920,282276,55,2761,1 +6921,282276,57,2889,1 +6922,282276,4,201,1 +6923,282277,114,5744,1 +6924,282277,147,7377,1 +6925,282277,56,2811,1 +6926,282277,19,992,1 +6927,282277,45,2276,1 +6928,282277,33,1665,1 +6929,282278,1,57,1 +6930,282278,170,8508,1 +6931,282278,148,7417,1 +6932,282278,63,3180,1 +6933,282279,37,1852,1 +6934,282281,131,6593,1 +6935,282282,33,1673,1 +6936,282285,45,2282,1 +6937,282288,87,4399,1 +6938,282288,57,2899,1 +6939,282288,128,6427,1 +6940,282288,65,3253,1 +6941,282288,161,8091,1 +6942,282288,50,2529,1 +6943,282289,106,5306,1 +6944,282289,178,8910,1 +6945,282289,92,4638,1 +6946,282289,191,9600,1 +6947,282290,50,2527,1 +6948,282291,49,2475,1 +6949,282291,168,8431,1 +6950,282291,17,880,1 +6951,282291,197,9868,1 +6952,282291,130,6523,1 +6953,282291,34,1706,1 +6954,282292,177,8894,1 +6955,282293,193,9696,1 +6956,282294,30,1535,1 +6957,282294,78,3902,1 +6958,282296,100,5037,1 +6959,282300,115,5772,1 +6960,282300,149,7479,1 +6961,282300,95,4757,1 +6962,282300,186,9317,1 +6963,282300,134,6740,1 +6964,282300,23,1163,1 +6965,282300,189,9470,1 +6966,282301,99,4979,1 +6967,282302,126,6329,1 +6968,282303,94,4716,1 +6969,282303,65,3290,1 +6970,282306,120,6002,1 +6971,282309,55,2764,1 +6972,282309,0,32,1 +6973,282309,5,294,1 +6974,282312,69,3468,1 +6975,282312,81,4063,1 +6976,282312,59,2984,1 +6977,282312,47,2379,1 +6978,282312,70,3529,1 +6979,282312,149,7495,1 +6980,282312,48,2431,1 +6981,282313,34,1705,1 +6982,282313,25,1263,1 +6983,282313,154,7737,1 +6984,282313,94,4721,1 +6985,282315,121,6098,1 +6986,282316,170,8536,1 +6987,282320,28,1444,1 +6988,282321,125,6261,1 +6989,282321,100,5039,1 +6990,282324,171,8581,1 +6991,282324,154,7709,1 +6992,282324,187,9382,1 +6993,282324,103,5152,1 +6994,282324,159,7983,1 +6995,282324,26,1310,1 +6996,282326,168,8428,1 +6997,282326,18,912,1 +6998,282327,157,7857,1 +6999,282331,3,170,1 +7000,282333,143,7192,1 +7001,282333,181,9082,1 +7002,282334,49,2481,1 +7003,282336,85,4262,1 +7004,282336,18,946,1 +7005,282336,62,3145,1 +7006,282336,155,7757,1 +7007,282338,85,4271,1 +7008,282339,61,3063,1 +7009,282343,170,8513,1 +7010,282345,96,4840,1 +7011,282345,32,1641,1 +7012,282348,181,9058,1 +7013,282348,153,7692,1 +7014,282348,72,3643,1 +7015,282348,74,3737,1 +7016,282348,106,5324,1 +7017,282350,107,5373,1 +7018,282351,6,336,1 +7019,282358,26,1340,1 +7020,282360,163,8180,1 +7021,282360,65,3280,1 +7022,282360,121,6091,1 +7023,282360,98,4928,1 +7024,282361,8,407,1 +7025,282361,170,8516,1 +7026,282367,97,4898,1 +7027,282370,130,6508,1 +7028,282371,152,7614,1 +7029,282373,43,2183,1 +7030,282373,50,2519,1 +7031,282379,124,6214,1 +7032,282384,0,17,1 +7033,282387,116,5834,1 +7034,282396,160,8023,1 +7035,282396,115,5776,1 +7036,282396,176,8827,1 +7037,282396,131,6563,1 +7038,282407,34,1714,1 +7039,282408,114,5745,1 +7040,282432,75,3754,1 +7041,282445,163,8197,1 +7042,282469,94,4709,1 +7043,282471,85,4257,1 +7044,282516,26,1331,1 +7045,282555,74,3750,1 +7046,282672,4,230,1 +7047,282771,102,5148,1 +7048,283704,186,9346,1 +7049,283825,150,7539,1 +7050,284160,18,948,1 +7051,284162,65,3258,1 +7052,284162,110,5520,1 +7053,284163,139,7000,1 +7054,284169,173,8677,1 +7055,284178,115,5792,1 +7056,284185,196,9842,1 +7057,284190,19,998,1 +7058,284194,50,2541,1 +7059,284196,137,6884,1 +7060,284197,170,8542,1 +7061,284197,134,6722,1 +7062,284244,26,1308,1 +7063,284329,113,5680,1 +7064,284340,89,4499,1 +7065,284352,33,1692,1 +7066,284388,122,6129,1 +7067,284640,177,8887,1 +7068,284640,177,8861,1 +7069,284640,50,2503,1 +7070,284640,196,9807,1 +7071,284640,97,4868,1 +7072,284643,58,2914,1 +7073,284674,161,8061,1 +7074,284676,166,8330,1 +7075,284676,49,2459,1 +7076,284688,127,6359,1 +7077,284688,170,8541,1 +7078,284772,136,6821,1 +7079,285122,87,4363,1 +7080,285141,0,7,1 +7081,285145,157,7893,1 +7082,285156,162,8113,1 +7083,285158,104,5245,1 +7084,285162,94,4729,1 +7085,285168,190,9544,1 +7086,285189,149,7461,1 +7087,285246,177,8856,1 +7088,285603,47,2360,1 +7089,285612,84,4220,1 +7090,285612,94,4740,1 +7091,285655,169,8467,1 +7092,285693,123,6179,1 +7093,285732,182,9144,1 +7094,285746,58,2911,1 +7095,285762,36,1826,1 +7096,286011,175,8773,1 +7097,286085,89,4497,1 +7098,286090,171,8596,1 +7099,286091,158,7908,1 +7100,286093,124,6225,1 +7101,286141,79,3967,1 +7102,286206,64,3238,1 +7103,286560,153,7684,1 +7104,286596,9,455,1 +7105,286606,37,1882,1 +7106,286642,104,5220,1 +7107,286668,93,4680,1 +7108,286740,159,7984,1 +7109,286788,172,8634,1 +7110,286801,183,9167,1 +7111,287050,52,2620,1 +7112,287054,121,6094,1 +7113,287085,195,9792,1 +7114,287113,17,853,1 +7115,287127,13,682,1 +7116,287148,53,2654,1 +7117,287172,178,8912,1 +7118,287326,76,3806,1 +7119,287763,24,1250,1 +7120,288000,32,1623,1 +7121,288000,0,19,1 +7122,288018,23,1163,1 +7123,288072,187,9382,1 +7124,288132,42,2109,1 +7125,288240,44,2234,1 +7126,288480,109,5465,1 +7127,288492,189,9467,1 +7128,288540,62,3149,1 +7129,288552,16,833,1 +7130,288577,45,2300,1 +7131,288685,145,7291,1 +7132,288960,65,3298,1 +7133,288961,7,373,1 +7134,289016,98,4938,1 +7135,289093,7,376,1 +7136,289131,142,7105,1 +7137,289139,150,7527,1 +7138,289464,65,3299,1 +7139,289477,39,1961,1 +7140,289500,118,5919,1 +7141,290880,152,7636,1 +7142,290889,34,1731,1 +7143,290908,137,6879,1 +7144,290922,75,3767,1 +7145,290928,182,9113,1 +7146,290937,199,9987,1 +7147,290978,180,9013,1 +7148,291024,106,5346,1 +7149,291036,77,3886,1 +7150,291361,116,5830,1 +7151,291362,175,8759,1 +7152,291363,113,5658,1 +7153,291366,162,8144,1 +7154,291372,125,6293,1 +7155,291372,164,8222,1 +7156,291372,140,7044,1 +7157,291372,67,3380,1 +7158,291375,93,4667,1 +7159,291376,199,9987,1 +7160,291381,162,8136,1 +7161,291385,103,5177,1 +7162,291395,113,5660,1 +7163,291396,90,4516,1 +7164,291396,75,3765,1 +7165,291397,1,70,1 +7166,291399,55,2790,1 +7167,291417,135,6766,1 +7168,291423,152,7644,1 +7169,291423,193,9694,1 +7170,291434,0,28,1 +7171,291444,4,246,1 +7172,291456,165,8280,1 +7173,291457,103,5168,1 +7174,291469,84,4215,1 +7175,291530,41,2098,1 +7176,291546,184,9224,1 +7177,291562,11,559,1 +7178,291565,180,9038,1 +7179,291867,125,6282,1 +7180,291868,105,5284,1 +7181,291888,101,5059,1 +7182,291909,74,3725,1 +7183,292036,167,8368,1 +7184,292320,177,8900,1 +7185,292320,141,7081,1 +7186,292320,74,3705,1 +7187,292321,67,3370,1 +7188,292326,13,687,1 +7189,292332,76,3821,1 +7190,292332,126,6312,1 +7191,292332,72,3605,1 +7192,292332,8,419,1 +7193,292335,42,2128,1 +7194,292336,0,9,1 +7195,292344,181,9090,1 +7196,292344,192,9638,1 +7197,292345,65,3285,1 +7198,292346,5,254,1 +7199,292347,62,3124,1 +7200,292347,87,4385,1 +7201,292350,153,7691,1 +7202,292356,197,9858,1 +7203,292356,49,2500,1 +7204,292362,96,4807,1 +7205,292368,131,6568,1 +7206,292368,138,6934,1 +7207,292380,131,6562,1 +7208,292381,6,335,1 +7209,292387,71,3576,1 +7210,292404,96,4840,1 +7211,292408,181,9076,1 +7212,292417,86,4335,1 +7213,292419,183,9155,1 +7214,292428,57,2885,1 +7215,292452,122,6120,1 +7216,292461,34,1744,1 +7217,292464,92,4628,1 +7218,292842,114,5702,1 +7219,292884,52,2637,1 +7220,293760,129,6461,1 +7221,293760,126,6324,1 +7222,293761,27,1365,1 +7223,293766,49,2493,1 +7224,293772,72,3617,1 +7225,293772,80,4038,1 +7226,293773,59,2958,1 +7227,293773,198,9929,1 +7228,293774,141,7088,1 +7229,293776,129,6480,1 +7230,293781,104,5208,1 +7231,293784,137,6870,1 +7232,293784,85,4260,1 +7233,293784,30,1539,1 +7234,293785,101,5100,1 +7235,293787,12,646,1 +7236,293787,24,1245,1 +7237,293790,146,7332,1 +7238,293790,175,8791,1 +7239,293796,130,6511,1 +7240,293796,110,5532,1 +7241,293796,183,9178,1 +7242,293797,153,7655,1 +7243,293798,86,4327,1 +7244,293808,170,8508,1 +7245,293808,173,8694,1 +7246,293811,93,4660,1 +7247,293814,183,9189,1 +7248,293823,54,2746,1 +7249,293832,134,6709,1 +7250,293832,137,6864,1 +7251,293839,182,9101,1 +7252,293844,149,7498,1 +7253,293844,188,9442,1 +7254,293845,190,9503,1 +7255,293845,150,7518,1 +7256,293856,20,1007,1 +7257,293868,105,5274,1 +7258,293869,192,9623,1 +7259,293871,35,1768,1 +7260,293883,79,3957,1 +7261,293892,79,3970,1 +7262,293904,122,6125,1 +7263,293928,74,3750,1 +7264,293949,26,1314,1 +7265,293989,90,4521,1 +7266,294024,168,8435,1 +7267,294240,68,3441,1 +7268,294246,8,407,1 +7269,294264,109,5476,1 +7270,294331,183,9180,1 +7271,294336,196,9824,1 +7272,294358,60,3047,1 +7273,294441,28,1426,1 +7274,294744,91,4575,1 +7275,294753,188,9403,1 +7276,295210,122,6123,1 +7277,295464,183,9172,1 +7278,295680,153,7680,1 +7279,295681,93,4669,1 +7280,295684,19,965,1 +7281,295695,147,7374,1 +7282,295695,132,6628,1 +7283,295704,3,170,1 +7284,295716,67,3368,1 +7285,295717,186,9341,1 +7286,295729,99,4966,1 +7287,295754,171,8576,1 +7288,295764,165,8268,1 +7289,295803,195,9778,1 +7290,295836,145,7299,1 +7291,297120,88,4422,1 +7292,297122,100,5025,1 +7293,297123,40,2038,1 +7294,297156,172,8636,1 +7295,297160,192,9644,1 +7296,297294,54,2748,1 +7297,297612,139,6998,1 +7298,297648,96,4802,1 +7299,297685,77,3898,1 +7300,297720,91,4567,1 +7301,298093,64,3246,1 +7302,298173,107,5374,1 +7303,298345,43,2179,1 +7304,298588,68,3420,1 +7305,298596,70,3535,1 +7306,298620,96,4848,1 +7307,298776,71,3580,1 +7308,299040,97,4858,1 +7309,299040,5,291,1 +7310,299046,184,9205,1 +7311,299052,43,2172,1 +7312,299053,81,4052,1 +7313,299054,188,9424,1 +7314,299055,184,9211,1 +7315,299057,63,3166,1 +7316,299060,181,9056,1 +7317,299064,41,2068,1 +7318,299064,69,3494,1 +7319,299064,8,406,1 +7320,299065,35,1768,1 +7321,299065,51,2562,1 +7322,299065,155,7781,1 +7323,299067,29,1496,1 +7324,299076,52,2611,1 +7325,299079,126,6317,1 +7326,299088,122,6108,1 +7327,299097,87,4387,1 +7328,299100,71,3571,1 +7329,299102,82,4103,1 +7330,299124,171,8591,1 +7331,299124,136,6831,1 +7332,299124,72,3642,1 +7333,299148,116,5830,1 +7334,299148,28,1413,1 +7335,299151,13,663,1 +7336,299164,152,7627,1 +7337,299178,16,843,1 +7338,299184,196,9812,1 +7339,299535,31,1583,1 +7340,299616,157,7898,1 +7341,299644,94,4740,1 +7342,300054,157,7869,1 +7343,300112,38,1932,1 +7344,300493,139,6959,1 +7345,300493,105,5256,1 +7346,300504,63,3162,1 +7347,300516,96,4836,1 +7348,300516,184,9248,1 +7349,300526,172,8631,1 +7350,300993,13,687,1 +7351,301009,179,8994,1 +7352,301027,182,9117,1 +7353,301034,36,1838,1 +7354,301044,104,5219,1 +7355,301455,146,7350,1 +7356,301489,181,9096,1 +7357,301500,99,4993,1 +7358,301920,169,8464,1 +7359,301922,11,578,1 +7360,301932,71,3593,1 +7361,301935,113,5689,1 +7362,301945,53,2688,1 +7363,301971,148,7415,1 +7364,301981,42,2112,1 +7365,301981,156,7850,1 +7366,302014,63,3165,1 +7367,302403,0,16,1 +7368,302403,142,7103,1 +7369,302412,103,5175,1 +7370,302413,39,1972,1 +7371,302424,165,8270,1 +7372,302424,80,4013,1 +7373,302433,14,728,1 +7374,302437,159,7979,1 +7375,302439,53,2691,1 +7376,302448,52,2629,1 +7377,302449,197,9875,1 +7378,302460,159,7973,1 +7379,302462,178,8948,1 +7380,302541,163,8193,1 +7381,302557,172,8615,1 +7382,302880,82,4139,1 +7383,302880,76,3807,1 +7384,302880,13,678,1 +7385,302882,66,3326,1 +7386,302883,18,947,1 +7387,302884,187,9399,1 +7388,302885,145,7277,1 +7389,302888,196,9843,1 +7390,302894,101,5089,1 +7391,302897,0,33,1 +7392,302907,179,8980,1 +7393,302912,197,9866,1 +7394,302922,46,2326,1 +7395,302922,145,7290,1 +7396,302922,112,5645,1 +7397,302931,56,2805,1 +7398,302954,4,212,1 +7399,302978,109,5470,1 +7400,303360,149,7491,1 +7401,303360,155,7782,1 +7402,303366,138,6945,1 +7403,303367,81,4072,1 +7404,303373,151,7565,1 +7405,303375,178,8935,1 +7406,303396,116,5833,1 +7407,303405,57,2891,1 +7408,303406,120,6032,1 +7409,303424,137,6865,1 +7410,303445,29,1454,1 +7411,303495,20,1048,1 +7412,303516,32,1621,1 +7413,303576,158,7911,1 +7414,303840,180,9044,1 +7415,303853,129,6466,1 +7416,303863,6,318,1 +7417,303864,89,4485,1 +7418,303900,45,2260,1 +7419,303936,149,7488,1 +7420,303972,22,1107,1 +7421,304056,84,4230,1 +7422,304320,101,5067,1 +7423,304320,186,9327,1 +7424,304332,104,5213,1 +7425,304344,85,4266,1 +7426,304345,98,4927,1 +7427,304365,195,9797,1 +7428,304368,84,4238,1 +7429,304369,2,131,1 +7430,304800,157,7891,1 +7431,304885,27,1379,1 +7432,304890,49,2462,1 +7433,304893,170,8512,1 +7434,304938,48,2443,1 +7435,304963,159,7974,1 +7436,305280,180,9010,1 +7437,305280,56,2822,1 +7438,305292,147,7367,1 +7439,305322,157,7883,1 +7440,305328,172,8641,1 +7441,305364,157,7851,1 +7442,305367,104,5246,1 +7443,305367,181,9052,1 +7444,305390,129,6481,1 +7445,305445,124,6207,1 +7446,305760,147,7399,1 +7447,305764,89,4457,1 +7448,305766,144,7227,1 +7449,305769,198,9942,1 +7450,305769,170,8504,1 +7451,305772,147,7369,1 +7452,305772,181,9060,1 +7453,305773,48,2432,1 +7454,305778,102,5117,1 +7455,305784,118,5903,1 +7456,305784,15,759,1 +7457,305784,134,6716,1 +7458,305788,65,3256,1 +7459,305796,144,7201,1 +7460,305809,46,2333,1 +7461,305809,41,2097,1 +7462,305813,123,6163,1 +7463,305820,71,3555,1 +7464,305821,153,7663,1 +7465,305833,65,3252,1 +7466,305847,195,9788,1 +7467,305847,10,534,1 +7468,305865,23,1190,1 +7469,305868,174,8724,1 +7470,305880,72,3604,1 +7471,306240,181,9058,1 +7472,306253,47,2387,1 +7473,306300,26,1333,1 +7474,306360,82,4120,1 +7475,306732,107,5382,1 +7476,306734,187,9367,1 +7477,306745,83,4155,1 +7478,306756,49,2465,1 +7479,306774,15,759,1 +7480,306805,163,8153,1 +7481,306840,1,53,1 +7482,306852,45,2260,1 +7483,307206,20,1025,1 +7484,307224,16,841,1 +7485,307269,120,6016,1 +7486,307320,56,2820,1 +7487,307680,116,5832,1 +7488,307692,175,8794,1 +7489,307692,104,5213,1 +7490,307693,93,4671,1 +7491,307705,148,7418,1 +7492,307705,21,1098,1 +7493,307716,63,3196,1 +7494,307716,17,878,1 +7495,307716,128,6426,1 +7496,307718,137,6859,1 +7497,307728,6,346,1 +7498,307728,181,9085,1 +7499,307740,107,5362,1 +7500,307752,176,8841,1 +7501,307752,164,8230,1 +7502,307792,94,4704,1 +7503,307995,26,1332,1 +7504,308161,124,6242,1 +7505,308166,160,8020,1 +7506,308172,122,6134,1 +7507,308173,127,6393,1 +7508,308191,20,1025,1 +7509,308326,14,718,1 +7510,308643,184,9210,1 +7511,308652,145,7271,1 +7512,308656,185,9282,1 +7513,309121,173,8681,1 +7514,309132,54,2722,1 +7515,309138,180,9030,1 +7516,309151,170,8547,1 +7517,309161,9,495,1 +7518,309168,97,4883,1 +7519,309170,93,4685,1 +7520,309181,53,2682,1 +7521,309207,124,6225,1 +7522,309600,178,8925,1 +7523,309603,144,7240,1 +7524,309609,17,884,1 +7525,309612,46,2314,1 +7526,309612,174,8747,1 +7527,309613,60,3027,1 +7528,309623,5,273,1 +7529,309624,66,3328,1 +7530,309625,61,3075,1 +7531,309627,52,2629,1 +7532,309637,75,3781,1 +7533,309651,44,2206,1 +7534,309660,177,8852,1 +7535,309661,10,504,1 +7536,309666,196,9835,1 +7537,309676,122,6109,1 +7538,309684,104,5219,1 +7539,309685,94,4708,1 +7540,309708,137,6895,1 +7541,309723,19,952,1 +7542,309726,105,5274,1 +7543,309735,140,7023,1 +7544,309804,42,2120,1 +7545,309829,25,1275,1 +7546,310080,83,4180,1 +7547,310080,118,5904,1 +7548,310080,166,8330,1 +7549,310080,60,3031,1 +7550,310080,12,643,1 +7551,310081,75,3787,1 +7552,310081,99,4979,1 +7553,310081,114,5701,1 +7554,310083,199,9978,1 +7555,310084,141,7084,1 +7556,310086,199,9958,1 +7557,310087,124,6236,1 +7558,310092,68,3413,1 +7559,310092,157,7851,1 +7560,310092,140,7044,1 +7561,310092,97,4852,1 +7562,310092,47,2399,1 +7563,310092,74,3738,1 +7564,310093,158,7929,1 +7565,310093,38,1928,1 +7566,310095,85,4278,1 +7567,310095,62,3135,1 +7568,310098,149,7467,1 +7569,310104,183,9165,1 +7570,310104,31,1597,1 +7571,310116,168,8423,1 +7572,310128,48,2444,1 +7573,310128,64,3234,1 +7574,310132,175,8783,1 +7575,310134,126,6313,1 +7576,310137,170,8515,1 +7577,310140,134,6750,1 +7578,310164,153,7677,1 +7579,310173,13,673,1 +7580,310176,73,3684,1 +7581,310185,97,4851,1 +7582,310212,102,5108,1 +7583,310272,196,9801,1 +7584,310272,193,9655,1 +7585,310284,159,7998,1 +7586,310297,151,7571,1 +7587,310572,178,8936,1 +7588,310592,194,9707,1 +7589,310596,188,9433,1 +7590,310608,69,3483,1 +7591,310647,147,7363,1 +7592,310656,28,1426,1 +7593,310656,97,4892,1 +7594,310659,78,3950,1 +7595,310664,33,1680,1 +7596,310692,168,8420,1 +7597,310732,20,1039,1 +7598,311040,157,7856,1 +7599,311045,87,4360,1 +7600,311046,190,9530,1 +7601,311049,25,1258,1 +7602,311052,62,3120,1 +7603,311055,69,3475,1 +7604,311064,38,1942,1 +7605,311064,83,4187,1 +7606,311065,154,7709,1 +7607,311100,187,9365,1 +7608,311100,64,3234,1 +7609,311108,179,8993,1 +7610,311124,124,6231,1 +7611,311157,130,6505,1 +7612,311523,12,635,1 +7613,311553,144,7232,1 +7614,311559,164,8238,1 +7615,311589,67,3368,1 +7616,311592,157,7873,1 +7617,311595,24,1224,1 +7618,311628,85,4257,1 +7619,311662,5,290,1 +7620,311737,169,8500,1 +7621,312125,129,6460,1 +7622,312480,126,6325,1 +7623,312480,134,6707,1 +7624,312492,162,8112,1 +7625,312493,17,886,1 +7626,312494,75,3763,1 +7627,312498,71,3598,1 +7628,312503,73,3670,1 +7629,312504,163,8187,1 +7630,312514,198,9906,1 +7631,312516,55,2789,1 +7632,312538,113,5655,1 +7633,312552,143,7188,1 +7634,312552,28,1411,1 +7635,312600,193,9694,1 +7636,312602,124,6208,1 +7637,312963,154,7719,1 +7638,312972,97,4875,1 +7639,312972,33,1667,1 +7640,313440,179,8977,1 +7641,313440,71,3580,1 +7642,313452,79,3989,1 +7643,313459,67,3396,1 +7644,313464,171,8593,1 +7645,313473,114,5745,1 +7646,313486,128,6419,1 +7647,313488,167,8379,1 +7648,313492,30,1511,1 +7649,313500,186,9313,1 +7650,313502,77,3891,1 +7651,313512,199,9988,1 +7652,313515,182,9148,1 +7653,313548,152,7634,1 +7654,313551,0,3,1 +7655,313920,150,7525,1 +7656,313920,9,457,1 +7657,313921,47,2351,1 +7658,313922,116,5848,1 +7659,313924,4,219,1 +7660,313932,17,853,1 +7661,313932,174,8734,1 +7662,313933,81,4063,1 +7663,313935,51,2554,1 +7664,313941,108,5430,1 +7665,313944,73,3683,1 +7666,313944,36,1812,1 +7667,313950,120,6006,1 +7668,313956,23,1160,1 +7669,313957,6,332,1 +7670,313975,119,5978,1 +7671,313977,106,5330,1 +7672,313981,183,9181,1 +7673,314016,78,3929,1 +7674,314028,112,5608,1 +7675,314040,111,5588,1 +7676,314052,198,9903,1 +7677,314402,21,1056,1 +7678,314424,108,5410,1 +7679,314424,59,2982,1 +7680,314433,69,3487,1 +7681,314434,104,5239,1 +7682,314460,182,9115,1 +7683,314472,49,2484,1 +7684,314484,150,7542,1 +7685,314485,125,6258,1 +7686,315360,134,6738,1 +7687,315360,44,2245,1 +7688,315360,43,2199,1 +7689,315361,17,878,1 +7690,315361,138,6935,1 +7691,315361,4,235,1 +7692,315364,5,268,1 +7693,315369,57,2873,1 +7694,315372,14,748,1 +7695,315372,72,3625,1 +7696,315373,75,3792,1 +7697,315384,46,2301,1 +7698,315384,120,6047,1 +7699,315384,123,6173,1 +7700,315386,125,6254,1 +7701,315386,19,982,1 +7702,315396,182,9108,1 +7703,315397,72,3635,1 +7704,315406,97,4858,1 +7705,315408,90,4528,1 +7706,315412,178,8944,1 +7707,315420,139,6961,1 +7708,315421,88,4419,1 +7709,315441,180,9015,1 +7710,315444,72,3648,1 +7711,315455,140,7002,1 +7712,315522,16,831,1 +7713,315889,83,4166,1 +7714,316332,139,6959,1 +7715,316801,156,7821,1 +7716,316801,35,1773,1 +7717,316801,45,2251,1 +7718,316803,99,4996,1 +7719,316812,69,3464,1 +7720,316815,117,5878,1 +7721,316825,160,8012,1 +7722,316826,113,5688,1 +7723,316860,138,6937,1 +7724,316860,68,3439,1 +7725,316860,190,9505,1 +7726,316872,58,2902,1 +7727,316992,185,9264,1 +7728,317281,59,2999,1 +7729,317316,51,2555,1 +7730,317317,27,1369,1 +7731,317364,22,1139,1 +7732,317380,178,8949,1 +7733,317424,2,112,1 +7734,318241,102,5123,1 +7735,318241,182,9119,1 +7736,318253,82,4138,1 +7737,318262,134,6746,1 +7738,318264,68,3432,1 +7739,318264,35,1798,1 +7740,318265,92,4601,1 +7741,318732,163,8191,1 +7742,318739,42,2133,1 +7743,318747,176,8819,1 +7744,318819,184,9215,1 +7745,318840,157,7868,1 +7746,319200,42,2111,1 +7747,319213,126,6333,1 +7748,319215,96,4806,1 +7749,319224,183,9169,1 +7750,319227,156,7822,1 +7751,319250,46,2303,1 +7752,319272,46,2330,1 +7753,319308,107,5365,1 +7754,319392,157,7887,1 +7755,319395,127,6398,1 +7756,319695,149,7483,1 +7757,319698,194,9736,1 +7758,319704,9,467,1 +7759,319722,120,6028,1 +7760,320160,132,6630,1 +7761,320160,53,2675,1 +7762,320161,110,5526,1 +7763,320169,46,2347,1 +7764,320170,198,9928,1 +7765,320171,45,2285,1 +7766,320172,61,3084,1 +7767,320181,9,464,1 +7768,320182,31,1554,1 +7769,320184,27,1365,1 +7770,320184,104,5225,1 +7771,320196,153,7684,1 +7772,320208,96,4835,1 +7773,320208,176,8840,1 +7774,320220,135,6753,1 +7775,320235,183,9199,1 +7776,320241,69,3494,1 +7777,320244,110,5515,1 +7778,320268,165,8256,1 +7779,320292,165,8274,1 +7780,320295,84,4210,1 +7781,320298,115,5754,1 +7782,320329,4,204,1 +7783,320640,125,6287,1 +7784,320641,100,5027,1 +7785,320644,112,5647,1 +7786,320649,174,8740,1 +7787,320649,139,6968,1 +7788,320652,165,8284,1 +7789,320653,67,3383,1 +7790,320653,130,6524,1 +7791,320658,19,978,1 +7792,320664,176,8845,1 +7793,320664,115,5791,1 +7794,320665,155,7774,1 +7795,320676,174,8739,1 +7796,320676,111,5579,1 +7797,320676,167,8357,1 +7798,320676,105,5278,1 +7799,320676,133,6686,1 +7800,320679,11,590,1 +7801,320679,136,6801,1 +7802,320680,48,2416,1 +7803,320680,133,6675,1 +7804,320688,76,3804,1 +7805,320692,168,8443,1 +7806,320693,19,982,1 +7807,320701,130,6526,1 +7808,320703,85,4296,1 +7809,320703,181,9081,1 +7810,320710,180,9037,1 +7811,320712,7,397,1 +7812,320712,77,3851,1 +7813,320725,190,9548,1 +7814,320757,78,3913,1 +7815,320772,17,880,1 +7816,320808,82,4145,1 +7817,320895,160,8029,1 +7818,321121,39,1964,1 +7819,321180,14,704,1 +7820,321609,151,7594,1 +7821,322080,166,8322,1 +7822,322083,197,9884,1 +7823,322094,124,6201,1 +7824,322094,99,4989,1 +7825,322107,23,1200,1 +7826,322125,110,5539,1 +7827,322137,110,5523,1 +7828,322141,26,1341,1 +7829,323522,197,9859,1 +7830,323522,63,3172,1 +7831,323544,168,8436,1 +7832,323550,173,8653,1 +7833,323604,130,6513,1 +7834,323643,38,1939,1 +7835,323727,173,8674,1 +7836,323773,13,658,1 +7837,324000,67,3355,1 +7838,324000,170,8538,1 +7839,324000,36,1848,1 +7840,324013,173,8699,1 +7841,324024,130,6530,1 +7842,324105,195,9791,1 +7843,324141,5,270,1 +7844,324480,36,1826,1 +7845,324480,173,8658,1 +7846,324480,62,3118,1 +7847,324492,134,6734,1 +7848,324492,37,1867,1 +7849,324495,192,9620,1 +7850,324504,128,6406,1 +7851,324505,84,4244,1 +7852,324510,160,8037,1 +7853,324516,171,8579,1 +7854,324517,120,6031,1 +7855,324537,59,2982,1 +7856,324555,194,9713,1 +7857,324585,139,7000,1 +7858,324600,65,3254,1 +7859,324637,102,5118,1 +7860,324684,128,6410,1 +7861,324817,160,8003,1 +7862,324974,158,7906,1 +7863,325025,141,7065,1 +7864,325056,97,4872,1 +7865,325068,36,1814,1 +7866,325135,5,262,1 +7867,325440,86,4320,1 +7868,325442,191,9590,1 +7869,325500,55,2783,1 +7870,325514,2,124,1 +7871,325536,21,1074,1 +7872,325584,199,9995,1 +7873,325596,116,5843,1 +7874,325920,173,8671,1 +7875,325920,117,5899,1 +7876,325920,71,3597,1 +7877,325920,8,419,1 +7878,325922,24,1237,1 +7879,325923,99,4961,1 +7880,325923,49,2497,1 +7881,325928,196,9846,1 +7882,325932,106,5340,1 +7883,325932,27,1367,1 +7884,325932,103,5165,1 +7885,325932,79,3957,1 +7886,325932,87,4393,1 +7887,325933,54,2741,1 +7888,325936,155,7766,1 +7889,325936,44,2249,1 +7890,325936,186,9333,1 +7891,325936,103,5186,1 +7892,325939,6,324,1 +7893,325944,185,9254,1 +7894,325944,31,1594,1 +7895,325944,151,7551,1 +7896,325947,163,8185,1 +7897,325953,80,4019,1 +7898,325956,30,1548,1 +7899,325956,129,6499,1 +7900,325956,80,4027,1 +7901,325956,96,4842,1 +7902,325959,17,853,1 +7903,325962,144,7208,1 +7904,325965,5,297,1 +7905,325972,14,723,1 +7906,325974,1,53,1 +7907,325975,108,5403,1 +7908,325977,55,2795,1 +7909,325992,157,7892,1 +7910,326002,68,3421,1 +7911,326011,77,3862,1 +7912,326026,18,911,1 +7913,326028,123,6153,1 +7914,326041,153,7692,1 +7915,326405,95,4790,1 +7916,326904,19,971,1 +7917,327369,154,7742,1 +7918,327381,7,374,1 +7919,327408,93,4678,1 +7920,327412,182,9110,1 +7921,327417,36,1835,1 +7922,327430,145,7286,1 +7923,327456,182,9121,1 +7924,327460,144,7221,1 +7925,327553,51,2585,1 +7926,327850,97,4852,1 +7927,327864,105,5260,1 +7928,327924,164,8223,1 +7929,328320,56,2808,1 +7930,328320,146,7318,1 +7931,328320,115,5800,1 +7932,328320,96,4830,1 +7933,328320,4,225,1 +7934,328321,82,4117,1 +7935,328322,151,7596,1 +7936,328323,44,2246,1 +7937,328324,36,1849,1 +7938,328329,70,3546,1 +7939,328330,20,1004,1 +7940,328330,112,5634,1 +7941,328332,140,7026,1 +7942,328332,107,5396,1 +7943,328333,47,2369,1 +7944,328333,52,2648,1 +7945,328333,67,3399,1 +7946,328335,134,6739,1 +7947,328336,27,1366,1 +7948,328339,171,8587,1 +7949,328342,147,7398,1 +7950,328344,68,3433,1 +7951,328344,66,3338,1 +7952,328344,35,1758,1 +7953,328345,41,2076,1 +7954,328345,25,1255,1 +7955,328345,81,4075,1 +7956,328346,87,4377,1 +7957,328348,79,3969,1 +7958,328349,23,1162,1 +7959,328352,1,93,1 +7960,328356,19,992,1 +7961,328357,0,22,1 +7962,328359,84,4230,1 +7963,328361,23,1175,1 +7964,328365,39,1962,1 +7965,328369,32,1622,1 +7966,328369,192,9639,1 +7967,328369,181,9051,1 +7968,328369,132,6613,1 +7969,328371,147,7392,1 +7970,328371,61,3059,1 +7971,328375,15,780,1 +7972,328375,161,8069,1 +7973,328377,155,7800,1 +7974,328380,89,4475,1 +7975,328380,22,1131,1 +7976,328381,151,7591,1 +7977,328392,84,4221,1 +7978,328392,16,845,1 +7979,328392,195,9772,1 +7980,328392,151,7556,1 +7981,328395,0,43,1 +7982,328398,58,2929,1 +7983,328414,88,4428,1 +7984,328416,195,9775,1 +7985,328416,154,7713,1 +7986,328423,27,1387,1 +7987,328426,83,4159,1 +7988,328449,181,9078,1 +7989,328452,64,3214,1 +7990,328452,3,183,1 +7991,328453,20,1015,1 +7992,328465,87,4388,1 +7993,328476,194,9744,1 +7994,328500,135,6766,1 +7995,328500,16,840,1 +7996,328524,52,2632,1 +7997,328836,18,917,1 +7998,328862,182,9145,1 +7999,329280,122,6141,1 +8000,329280,178,8923,1 +8001,329292,53,2665,1 +8002,329337,167,8388,1 +8003,329352,47,2385,1 +8004,329373,149,7485,1 +8005,329389,132,6642,1 +8006,329581,136,6829,1 +8007,329821,138,6932,1 +8008,329991,101,5084,1 +8009,330240,20,1036,1 +8010,330240,106,5320,1 +8011,330240,38,1936,1 +8012,330240,29,1479,1 +8013,330241,8,415,1 +8014,330241,162,8124,1 +8015,330242,77,3866,1 +8016,330245,38,1902,1 +8017,330252,47,2355,1 +8018,330253,61,3082,1 +8019,330257,50,2533,1 +8020,330264,38,1921,1 +8021,330264,29,1497,1 +8022,330277,35,1800,1 +8023,330277,3,177,1 +8024,330286,49,2470,1 +8025,330288,75,3788,1 +8026,330288,187,9383,1 +8027,330290,39,1968,1 +8028,330291,150,7531,1 +8029,330294,155,7786,1 +8030,330308,119,5963,1 +8031,330324,108,5424,1 +8032,330337,157,7878,1 +8033,330348,154,7711,1 +8034,330351,87,4378,1 +8035,330372,21,1051,1 +8036,330407,113,5689,1 +8037,330469,48,2404,1 +8038,330720,106,5346,1 +8039,330745,92,4644,1 +8040,330807,85,4283,1 +8041,330828,65,3255,1 +8042,331200,165,8266,1 +8043,331200,179,8961,1 +8044,331201,163,8180,1 +8045,331201,147,7357,1 +8046,331207,147,7389,1 +8047,331248,8,412,1 +8048,331260,121,6078,1 +8049,331313,128,6436,1 +8050,331326,167,8389,1 +8051,331344,100,5036,1 +8052,331344,31,1558,1 +8053,331680,95,4772,1 +8054,331682,49,2490,1 +8055,331686,32,1613,1 +8056,331692,168,8448,1 +8057,331692,102,5101,1 +8058,331695,133,6692,1 +8059,331696,118,5915,1 +8060,331704,188,9448,1 +8061,331704,121,6062,1 +8062,331704,15,784,1 +8063,331710,127,6358,1 +8064,331729,76,3849,1 +8065,331730,146,7344,1 +8066,331740,126,6311,1 +8067,331741,47,2396,1 +8068,331752,53,2684,1 +8069,331752,132,6621,1 +8070,331790,34,1747,1 +8071,331798,30,1539,1 +8072,331812,188,9437,1 +8073,331821,167,8389,1 +8074,331872,105,5257,1 +8075,332197,9,466,1 +8076,332221,192,9616,1 +8077,332226,31,1591,1 +8078,332227,140,7048,1 +8079,332485,10,532,1 +8080,332641,146,7322,1 +8081,332652,199,9995,1 +8082,332653,31,1588,1 +8083,332654,112,5647,1 +8084,332664,191,9589,1 +8085,332670,60,3040,1 +8086,332670,165,8280,1 +8087,332702,127,6354,1 +8088,332709,132,6603,1 +8089,332746,63,3196,1 +8090,332762,163,8184,1 +8091,333120,162,8140,1 +8092,333120,124,6248,1 +8093,333121,150,7521,1 +8094,333121,0,36,1 +8095,333123,137,6894,1 +8096,333132,104,5205,1 +8097,333135,61,3052,1 +8098,333168,168,8418,1 +8099,333182,63,3189,1 +8100,333216,42,2146,1 +8101,333219,189,9461,1 +8102,333228,135,6792,1 +8103,333241,43,2168,1 +8104,333332,193,9694,1 +8105,333600,99,4959,1 +8106,333600,72,3618,1 +8107,333600,144,7208,1 +8108,333601,132,6613,1 +8109,333607,73,3685,1 +8110,333610,139,6984,1 +8111,333612,99,4990,1 +8112,333612,6,307,1 +8113,333612,185,9278,1 +8114,333612,64,3210,1 +8115,333612,65,3258,1 +8116,333613,121,6077,1 +8117,333616,167,8353,1 +8118,333616,159,7982,1 +8119,333621,17,851,1 +8120,333624,107,5370,1 +8121,333624,59,2951,1 +8122,333624,156,7815,1 +8123,333625,89,4478,1 +8124,333633,127,6378,1 +8125,333636,56,2812,1 +8126,333636,195,9754,1 +8127,333639,141,7078,1 +8128,333642,189,9466,1 +8129,333645,108,5450,1 +8130,333645,153,7658,1 +8131,333648,129,6460,1 +8132,333649,16,809,1 +8133,333657,14,727,1 +8134,333660,164,8206,1 +8135,333660,175,8771,1 +8136,333663,36,1845,1 +8137,333666,136,6828,1 +8138,333672,160,8007,1 +8139,333672,11,591,1 +8140,333674,122,6121,1 +8141,333684,80,4003,1 +8142,333730,143,7189,1 +8143,333762,83,4163,1 +8144,333924,164,8224,1 +8145,334080,32,1612,1 +8146,334104,157,7899,1 +8147,334161,161,8070,1 +8148,334162,63,3175,1 +8149,334164,129,6470,1 +8150,334165,28,1443,1 +8151,334170,101,5070,1 +8152,334188,66,3314,1 +8153,334191,86,4339,1 +8154,334560,198,9942,1 +8155,334572,96,4819,1 +8156,334572,158,7946,1 +8157,334573,160,8049,1 +8158,334581,137,6862,1 +8159,334581,80,4009,1 +8160,334596,4,214,1 +8161,334601,148,7447,1 +8162,334608,110,5546,1 +8163,334621,121,6054,1 +8164,334632,171,8594,1 +8165,334656,144,7221,1 +8166,334680,108,5401,1 +8167,334728,144,7210,1 +8168,335040,31,1587,1 +8169,335052,143,7193,1 +8170,335052,49,2480,1 +8171,335064,44,2249,1 +8172,335064,168,8449,1 +8173,335064,1,74,1 +8174,335064,189,9496,1 +8175,335070,3,161,1 +8176,335076,146,7310,1 +8177,335076,109,5474,1 +8178,335077,154,7710,1 +8179,335077,67,3370,1 +8180,335082,120,6047,1 +8181,335085,1,85,1 +8182,335085,69,3494,1 +8183,335085,140,7006,1 +8184,335100,141,7095,1 +8185,335124,50,2541,1 +8186,335124,190,9545,1 +8187,335166,54,2732,1 +8188,335184,18,936,1 +8189,335184,84,4248,1 +8190,335196,155,7780,1 +8191,335532,31,1594,1 +8192,335535,11,576,1 +8193,335545,132,6644,1 +8194,335545,37,1858,1 +8195,335565,39,1959,1 +8196,336000,31,1598,1 +8197,336000,168,8421,1 +8198,336000,17,890,1 +8199,336006,187,9384,1 +8200,336012,168,8435,1 +8201,336013,75,3760,1 +8202,336024,155,7769,1 +8203,336028,81,4076,1 +8204,336036,13,665,1 +8205,336036,123,6166,1 +8206,336036,11,592,1 +8207,336037,159,7994,1 +8208,336048,182,9132,1 +8209,336054,61,3087,1 +8210,336054,195,9762,1 +8211,336060,112,5601,1 +8212,336060,111,5577,1 +8213,336062,145,7283,1 +8214,336095,36,1823,1 +8215,336109,96,4803,1 +8216,336132,78,3917,1 +8217,336165,66,3317,1 +8218,336198,36,1845,1 +8219,336504,96,4848,1 +8220,336960,62,3105,1 +8221,336975,138,6934,1 +8222,336985,116,5838,1 +8223,336996,93,4671,1 +8224,337008,87,4360,1 +8225,337020,110,5518,1 +8226,337035,18,917,1 +8227,337063,11,579,1 +8228,337092,12,608,1 +8229,337113,82,4142,1 +8230,337117,164,8209,1 +8231,337440,19,998,1 +8232,337440,64,3207,1 +8233,337440,84,4222,1 +8234,337440,70,3523,1 +8235,337440,33,1677,1 +8236,337446,29,1497,1 +8237,337452,96,4816,1 +8238,337452,66,3321,1 +8239,337452,8,405,1 +8240,337453,173,8672,1 +8241,337458,26,1333,1 +8242,337458,7,378,1 +8243,337464,80,4005,1 +8244,337464,92,4634,1 +8245,337464,114,5724,1 +8246,337473,85,4298,1 +8247,337476,59,2978,1 +8248,337479,83,4166,1 +8249,337490,51,2568,1 +8250,337491,37,1851,1 +8251,337492,181,9053,1 +8252,337502,8,423,1 +8253,337510,99,4992,1 +8254,337512,81,4089,1 +8255,337519,105,5297,1 +8256,337524,111,5593,1 +8257,337528,7,376,1 +8258,337536,15,769,1 +8259,337540,139,6964,1 +8260,337545,7,390,1 +8261,337572,27,1351,1 +8262,337584,80,4026,1 +8263,337669,20,1013,1 +8264,337920,51,2584,1 +8265,337968,142,7105,1 +8266,337974,46,2317,1 +8267,337992,79,3970,1 +8268,338401,12,603,1 +8269,338433,191,9553,1 +8270,338905,8,431,1 +8271,338916,47,2353,1 +8272,338932,2,144,1 +8273,338952,56,2821,1 +8274,338997,117,5885,1 +8275,339072,75,3786,1 +8276,339360,150,7534,1 +8277,339412,126,6309,1 +8278,339840,185,9288,1 +8279,339841,143,7159,1 +8280,339841,32,1648,1 +8281,339841,46,2304,1 +8282,339847,182,9119,1 +8283,339864,26,1306,1 +8284,339909,51,2577,1 +8285,339910,116,5834,1 +8286,340012,83,4180,1 +8287,340333,184,9225,1 +8288,340341,71,3552,1 +8289,340351,180,9015,1 +8290,340393,43,2197,1 +8291,340819,40,2027,1 +8292,340849,20,1034,1 +8293,340850,37,1852,1 +8294,340857,154,7723,1 +8295,341282,134,6735,1 +8296,341293,182,9140,1 +8297,341294,190,9535,1 +8298,341294,146,7343,1 +8299,341317,197,9881,1 +8300,341328,19,956,1 +8301,341328,151,7598,1 +8302,341337,109,5476,1 +8303,341342,64,3240,1 +8304,341364,11,559,1 +8305,341365,66,3341,1 +8306,341376,141,7073,1 +8307,341376,31,1574,1 +8308,341390,156,7821,1 +8309,341447,24,1247,1 +8310,341448,172,8639,1 +8311,341760,191,9584,1 +8312,341772,20,1024,1 +8313,342240,38,1918,1 +8314,342241,90,4504,1 +8315,342252,102,5141,1 +8316,342256,13,680,1 +8317,342264,44,2217,1 +8318,342268,165,8264,1 +8319,342268,38,1920,1 +8320,342274,14,719,1 +8321,342279,161,8054,1 +8322,342285,195,9781,1 +8323,342288,48,2413,1 +8324,342289,164,8226,1 +8325,342300,5,271,1 +8326,342301,132,6604,1 +8327,342325,140,7015,1 +8328,342333,48,2408,1 +8329,342720,84,4216,1 +8330,342780,20,1031,1 +8331,342830,174,8742,1 +8332,342916,21,1057,1 +8333,343250,16,813,1 +8334,343680,98,4913,1 +8335,343680,29,1455,1 +8336,343680,131,6554,1 +8337,343681,103,5177,1 +8338,343684,166,8315,1 +8339,343687,21,1098,1 +8340,343692,42,2112,1 +8341,343692,21,1082,1 +8342,343694,117,5880,1 +8343,343701,183,9194,1 +8344,343704,182,9142,1 +8345,343704,81,4065,1 +8346,343708,124,6232,1 +8347,343728,10,543,1 +8348,343740,64,3210,1 +8349,343743,42,2146,1 +8350,343764,69,3492,1 +8351,343791,95,4794,1 +8352,343872,119,5983,1 +8353,344184,130,6536,1 +8354,344214,5,272,1 +8355,344856,192,9635,1 +8356,345120,137,6858,1 +8357,345120,151,7560,1 +8358,345120,71,3572,1 +8359,345120,42,2121,1 +8360,345121,58,2911,1 +8361,345123,185,9288,1 +8362,345132,70,3536,1 +8363,345132,138,6901,1 +8364,345144,116,5812,1 +8365,345144,144,7205,1 +8366,345144,158,7913,1 +8367,345153,163,8182,1 +8368,345153,188,9426,1 +8369,345156,193,9683,1 +8370,345156,48,2409,1 +8371,345169,45,2294,1 +8372,345180,48,2408,1 +8373,345192,124,6238,1 +8374,345241,68,3433,1 +8375,345288,72,3638,1 +8376,345601,136,6815,1 +8377,345624,137,6887,1 +8378,345648,174,8736,1 +8379,345684,52,2611,1 +8380,345696,26,1316,1 +8381,345882,149,7460,1 +8382,346089,2,141,1 +8383,346092,70,3503,1 +8384,346095,116,5823,1 +8385,346098,66,3315,1 +8386,346104,42,2135,1 +8387,346152,113,5660,1 +8388,346176,174,8731,1 +8389,346177,134,6707,1 +8390,346183,91,4568,1 +8391,346248,156,7804,1 +8392,346560,37,1875,1 +8393,346560,95,4764,1 +8394,346560,133,6666,1 +8395,346560,122,6123,1 +8396,346560,45,2272,1 +8397,346561,154,7728,1 +8398,346561,58,2926,1 +8399,346561,148,7442,1 +8400,346561,41,2078,1 +8401,346562,96,4802,1 +8402,346563,72,3631,1 +8403,346572,104,5241,1 +8404,346572,111,5594,1 +8405,346575,95,4779,1 +8406,346577,5,257,1 +8407,346577,102,5106,1 +8408,346581,112,5630,1 +8409,346584,189,9455,1 +8410,346584,75,3752,1 +8411,346584,125,6267,1 +8412,346585,120,6018,1 +8413,346586,84,4227,1 +8414,346588,159,7964,1 +8415,346593,4,232,1 +8416,346596,182,9134,1 +8417,346596,67,3370,1 +8418,346596,56,2821,1 +8419,346597,88,4447,1 +8420,346603,76,3843,1 +8421,346607,9,455,1 +8422,346608,1,94,1 +8423,346620,42,2136,1 +8424,346620,107,5393,1 +8425,346620,65,3261,1 +8426,346628,127,6378,1 +8427,346633,189,9493,1 +8428,346645,35,1798,1 +8429,346645,170,8507,1 +8430,346656,72,3607,1 +8431,346669,9,470,1 +8432,346681,110,5530,1 +8433,346692,179,8964,1 +8434,346740,191,9591,1 +8435,346765,92,4602,1 +8436,346813,194,9727,1 +8437,346848,51,2585,1 +8438,347056,22,1124,1 +8439,347074,149,7472,1 +8440,347080,198,9947,1 +8441,347103,39,1986,1 +8442,347250,107,5365,1 +8443,347520,127,6386,1 +8444,347520,79,3972,1 +8445,347533,79,3958,1 +8446,347545,141,7064,1 +8447,347689,145,7290,1 +8448,348000,161,8082,1 +8449,348004,158,7908,1 +8450,348013,31,1566,1 +8451,348018,83,4181,1 +8452,348036,169,8466,1 +8453,348036,187,9399,1 +8454,348061,100,5023,1 +8455,348085,59,2957,1 +8456,348110,148,7432,1 +8457,348120,172,8612,1 +8458,348480,172,8627,1 +8459,348492,13,679,1 +8460,348493,137,6862,1 +8461,348555,162,8134,1 +8462,348579,12,621,1 +8463,348588,26,1333,1 +8464,348612,55,2788,1 +8465,348960,113,5689,1 +8466,348961,11,574,1 +8467,348997,168,8403,1 +8468,348997,83,4166,1 +8469,349020,188,9445,1 +8470,349032,57,2893,1 +8471,349033,166,8335,1 +8472,349045,22,1145,1 +8473,349056,151,7594,1 +8474,349488,79,3981,1 +8475,349512,52,2644,1 +8476,349920,123,6172,1 +8477,349932,158,7950,1 +8478,349945,86,4301,1 +8479,349968,42,2132,1 +8480,349984,117,5882,1 +8481,350413,176,8837,1 +8482,350430,51,2593,1 +8483,350437,145,7284,1 +8484,350448,39,1963,1 +8485,350449,153,7671,1 +8486,350496,111,5578,1 +8487,350521,199,9976,1 +8488,350566,88,4428,1 +8489,351360,0,45,1 +8490,351360,109,5460,1 +8491,351360,176,8828,1 +8492,351360,165,8255,1 +8493,351361,84,4216,1 +8494,351361,126,6313,1 +8495,351372,56,2843,1 +8496,351376,0,19,1 +8497,351384,15,768,1 +8498,351386,147,7397,1 +8499,351388,118,5932,1 +8500,351419,135,6751,1 +8501,351420,173,8674,1 +8502,351421,193,9654,1 +8503,351432,110,5512,1 +8504,351438,155,7771,1 +8505,351447,42,2120,1 +8506,351456,158,7949,1 +8507,351514,188,9423,1 +8508,351864,194,9708,1 +8509,351865,43,2160,1 +8510,352344,6,310,1 +8511,352344,91,4598,1 +8512,352371,27,1390,1 +8513,352393,90,4517,1 +8514,352404,109,5478,1 +8515,352404,157,7855,1 +8516,352413,96,4844,1 +8517,352416,101,5088,1 +8518,352440,157,7878,1 +8519,352490,33,1667,1 +8520,352812,62,3104,1 +8521,352842,106,5339,1 +8522,352851,103,5159,1 +8523,352951,97,4882,1 +8524,353293,132,6618,1 +8525,353293,135,6770,1 +8526,353304,158,7935,1 +8527,353316,131,6555,1 +8528,353330,108,5443,1 +8529,353335,140,7010,1 +8530,353350,178,8929,1 +8531,353381,198,9929,1 +8532,353413,80,4032,1 +8533,353442,57,2877,1 +8534,353580,173,8651,1 +8535,353793,117,5855,1 +8536,354264,145,7296,1 +8537,354501,93,4676,1 +8538,354720,6,350,1 +8539,354720,172,8612,1 +8540,354720,130,6504,1 +8541,354720,74,3736,1 +8542,354726,197,9852,1 +8543,354732,88,4440,1 +8544,354744,8,407,1 +8545,354744,128,6443,1 +8546,354746,72,3606,1 +8547,354756,12,636,1 +8548,354756,32,1626,1 +8549,354756,113,5690,1 +8550,354757,145,7297,1 +8551,354768,106,5309,1 +8552,354777,106,5332,1 +8553,354780,155,7759,1 +8554,354781,163,8197,1 +8555,354903,136,6803,1 +8556,355200,145,7265,1 +8557,355214,199,9997,1 +8558,355215,77,3868,1 +8559,355224,156,7847,1 +8560,355225,174,8735,1 +8561,355248,49,2466,1 +8562,355263,99,4990,1 +8563,355272,18,924,1 +8564,355296,153,7671,1 +8565,355297,60,3018,1 +8566,355311,109,5457,1 +8567,355348,146,7327,1 +8568,355367,187,9372,1 +8569,355380,104,5247,1 +8570,355680,35,1771,1 +8571,355680,109,5492,1 +8572,355680,127,6375,1 +8573,355685,63,3192,1 +8574,355687,131,6585,1 +8575,355689,196,9818,1 +8576,355689,89,4474,1 +8577,355692,108,5406,1 +8578,355692,134,6701,1 +8579,355692,168,8447,1 +8580,355692,116,5849,1 +8581,355692,108,5441,1 +8582,355698,190,9505,1 +8583,355704,32,1640,1 +8584,355704,14,749,1 +8585,355705,88,4443,1 +8586,355710,127,6394,1 +8587,355716,169,8458,1 +8588,355716,177,8856,1 +8589,355716,199,9968,1 +8590,355717,53,2680,1 +8591,355717,84,4203,1 +8592,355718,66,3343,1 +8593,355718,80,4046,1 +8594,355722,86,4340,1 +8595,355728,67,3392,1 +8596,355728,135,6768,1 +8597,355729,15,791,1 +8598,355729,183,9194,1 +8599,355740,101,5100,1 +8600,355744,164,8229,1 +8601,355754,18,945,1 +8602,355755,9,469,1 +8603,355762,28,1443,1 +8604,355765,186,9335,1 +8605,355765,137,6863,1 +8606,355766,23,1170,1 +8607,355770,43,2177,1 +8608,355777,55,2798,1 +8609,355784,127,6386,1 +8610,355800,168,8420,1 +8611,355824,174,8702,1 +8612,355839,106,5301,1 +8613,355842,190,9530,1 +8614,355858,148,7426,1 +8615,355861,181,9057,1 +8616,355909,103,5153,1 +8617,355945,128,6416,1 +8618,356041,127,6380,1 +8619,356196,51,2553,1 +8620,356642,149,7452,1 +8621,356644,125,6255,1 +8622,356676,135,6753,1 +8623,356688,52,2619,1 +8624,356739,184,9206,1 +8625,357291,77,3865,1 +8626,357651,106,5319,1 +8627,358080,34,1744,1 +8628,358080,61,3069,1 +8629,358092,123,6198,1 +8630,358093,17,876,1 +8631,358095,157,7883,1 +8632,358110,36,1817,1 +8633,358116,30,1527,1 +8634,358116,51,2557,1 +8635,358131,182,9139,1 +8636,358144,95,4797,1 +8637,358152,58,2929,1 +8638,358164,181,9093,1 +8639,358176,179,8978,1 +8640,358200,80,4026,1 +8641,358230,182,9148,1 +8642,358248,160,8021,1 +8643,358573,160,8045,1 +8644,358609,147,7353,1 +8645,359040,181,9066,1 +8646,359054,51,2580,1 +8647,359078,75,3761,1 +8648,359121,143,7197,1 +8649,360960,164,8248,1 +8650,360984,183,9189,1 +8651,360984,28,1404,1 +8652,360985,141,7071,1 +8653,360988,186,9318,1 +8654,361008,6,338,1 +8655,361008,50,2525,1 +8656,361021,191,9599,1 +8657,361081,14,727,1 +8658,361506,22,1139,1 +8659,361524,137,6873,1 +8660,361525,187,9385,1 +8661,361560,113,5681,1 +8662,362400,93,4657,1 +8663,362401,101,5082,1 +8664,362403,88,4415,1 +8665,362407,117,5896,1 +8666,362412,102,5128,1 +8667,362413,1,87,1 +8668,362417,129,6465,1 +8669,362418,143,7168,1 +8670,362421,139,6972,1 +8671,362422,134,6750,1 +8672,362424,23,1194,1 +8673,362425,86,4312,1 +8674,362425,189,9473,1 +8675,362431,187,9356,1 +8676,362436,72,3644,1 +8677,362436,23,1171,1 +8678,362438,79,3978,1 +8679,362440,193,9691,1 +8680,362448,75,3757,1 +8681,362448,42,2135,1 +8682,362460,70,3520,1 +8683,362472,145,7292,1 +8684,362503,195,9764,1 +8685,362505,102,5114,1 +8686,362520,175,8766,1 +8687,362533,164,8224,1 +8688,362544,45,2252,1 +8689,362557,118,5949,1 +8690,362718,40,2046,1 +8691,362880,168,8412,1 +8692,362881,48,2425,1 +8693,362883,173,8666,1 +8694,362905,188,9402,1 +8695,362931,109,5465,1 +8696,363009,46,2328,1 +8697,363360,53,2654,1 +8698,363366,48,2415,1 +8699,363372,33,1695,1 +8700,363372,57,2884,1 +8701,363373,90,4533,1 +8702,363390,90,4515,1 +8703,363396,31,1558,1 +8704,363399,31,1573,1 +8705,363402,57,2851,1 +8706,363492,18,909,1 +8707,363840,184,9222,1 +8708,363840,114,5710,1 +8709,363841,146,7312,1 +8710,363841,21,1085,1 +8711,363852,198,9950,1 +8712,363853,84,4217,1 +8713,363855,47,2356,1 +8714,363855,57,2888,1 +8715,363859,159,7998,1 +8716,363859,83,4174,1 +8717,363859,197,9851,1 +8718,363861,174,8716,1 +8719,363861,196,9849,1 +8720,363863,178,8948,1 +8721,363864,120,6012,1 +8722,363868,100,5030,1 +8723,363876,30,1506,1 +8724,363882,196,9822,1 +8725,363882,28,1415,1 +8726,363888,44,2237,1 +8727,363898,171,8564,1 +8728,363903,187,9391,1 +8729,363903,33,1689,1 +8730,363925,145,7276,1 +8731,363936,34,1712,1 +8732,363936,183,9156,1 +8733,363939,60,3016,1 +8734,363949,93,4661,1 +8735,363954,148,7422,1 +8736,363956,82,4144,1 +8737,363975,199,9995,1 +8738,364009,105,5290,1 +8739,364070,188,9417,1 +8740,364091,105,5299,1 +8741,364806,89,4487,1 +8742,364900,110,5522,1 +8743,364920,153,7694,1 +8744,365280,15,761,1 +8745,365280,31,1593,1 +8746,365281,185,9258,1 +8747,365282,75,3790,1 +8748,365283,199,9966,1 +8749,365286,73,3669,1 +8750,365289,76,3844,1 +8751,365290,130,6517,1 +8752,365292,129,6498,1 +8753,365292,52,2618,1 +8754,365292,63,3154,1 +8755,365292,74,3737,1 +8756,365292,184,9241,1 +8757,365292,98,4933,1 +8758,365293,9,492,1 +8759,365298,133,6681,1 +8760,365304,91,4567,1 +8761,365304,40,2049,1 +8762,365305,124,6224,1 +8763,365307,90,4514,1 +8764,365313,107,5376,1 +8765,365314,120,6045,1 +8766,365316,194,9732,1 +8767,365316,0,50,1 +8768,365319,4,239,1 +8769,365328,130,6549,1 +8770,365328,98,4904,1 +8771,365329,67,3362,1 +8772,365329,188,9442,1 +8773,365340,38,1911,1 +8774,365340,38,1915,1 +8775,365340,134,6745,1 +8776,365341,122,6112,1 +8777,365342,121,6098,1 +8778,365345,71,3574,1 +8779,365350,142,7149,1 +8780,365350,177,8893,1 +8781,365352,188,9430,1 +8782,365358,144,7239,1 +8783,365365,148,7417,1 +8784,365365,148,7444,1 +8785,365388,171,8558,1 +8786,365388,57,2878,1 +8787,365400,157,7887,1 +8788,365412,133,6659,1 +8789,365421,104,5231,1 +8790,365426,157,7889,1 +8791,365442,184,9248,1 +8792,365472,190,9517,1 +8793,365496,8,418,1 +8794,365760,167,8363,1 +8795,365763,168,8415,1 +8796,365763,131,6553,1 +8797,365763,36,1815,1 +8798,365766,44,2213,1 +8799,365769,33,1690,1 +8800,365772,44,2228,1 +8801,365772,163,8187,1 +8802,365772,108,5412,1 +8803,365773,195,9766,1 +8804,365773,26,1310,1 +8805,365781,123,6171,1 +8806,365781,128,6409,1 +8807,365784,60,3013,1 +8808,365784,34,1713,1 +8809,365795,165,8290,1 +8810,365795,140,7013,1 +8811,365796,29,1465,1 +8812,365796,73,3661,1 +8813,365799,21,1100,1 +8814,365809,135,6758,1 +8815,365811,79,3981,1 +8816,365814,5,260,1 +8817,365817,115,5778,1 +8818,365818,50,2539,1 +8819,365820,45,2298,1 +8820,365820,48,2423,1 +8821,365821,6,316,1 +8822,365830,141,7100,1 +8823,365832,147,7397,1 +8824,365845,181,9089,1 +8825,365847,36,1802,1 +8826,365856,85,4262,1 +8827,365856,59,2989,1 +8828,365858,16,828,1 +8829,365860,177,8857,1 +8830,365865,41,2088,1 +8831,365876,2,122,1 +8832,365880,57,2896,1 +8833,365884,66,3342,1 +8834,365906,43,2177,1 +8835,365931,30,1544,1 +8836,365962,75,3772,1 +8837,366003,94,4725,1 +8838,366240,24,1240,1 +8839,366240,173,8654,1 +8840,366240,158,7908,1 +8841,366240,85,4266,1 +8842,366241,133,6693,1 +8843,366241,97,4884,1 +8844,366252,178,8927,1 +8845,366252,90,4512,1 +8846,366252,136,6837,1 +8847,366253,156,7820,1 +8848,366253,183,9153,1 +8849,366255,100,5014,1 +8850,366262,31,1565,1 +8851,366263,78,3947,1 +8852,366264,121,6091,1 +8853,366274,194,9737,1 +8854,366276,123,6173,1 +8855,366276,174,8706,1 +8856,366277,85,4256,1 +8857,366278,0,3,1 +8858,366284,0,21,1 +8859,366286,181,9053,1 +8860,366292,44,2205,1 +8861,366325,158,7938,1 +8862,366326,155,7770,1 +8863,366370,157,7873,1 +8864,366393,81,4080,1 +8865,366902,44,2201,1 +8866,367213,153,7661,1 +8867,367680,24,1235,1 +8868,367680,54,2735,1 +8869,367688,171,8558,1 +8870,367692,56,2842,1 +8871,367692,15,794,1 +8872,367693,98,4942,1 +8873,367694,147,7361,1 +8874,367694,63,3170,1 +8875,367695,90,4505,1 +8876,367695,29,1499,1 +8877,367696,24,1243,1 +8878,367701,93,4667,1 +8879,367706,128,6436,1 +8880,367707,50,2506,1 +8881,367707,90,4533,1 +8882,367716,68,3445,1 +8883,367719,76,3811,1 +8884,367721,61,3072,1 +8885,367722,69,3498,1 +8886,367726,50,2514,1 +8887,367728,142,7146,1 +8888,367734,48,2440,1 +8889,367737,17,896,1 +8890,367750,69,3468,1 +8891,367752,17,856,1 +8892,367767,64,3203,1 +8893,367779,87,4368,1 +8894,367812,133,6699,1 +8895,367815,106,5311,1 +8896,367860,146,7345,1 +8897,368269,79,3976,1 +8898,368641,74,3709,1 +8899,368678,103,5196,1 +8900,368699,187,9360,1 +8901,368820,139,6956,1 +8902,369125,167,8377,1 +8903,369153,120,6013,1 +8904,369165,61,3095,1 +8905,369168,63,3175,1 +8906,369168,78,3927,1 +8907,369192,100,5008,1 +8908,369234,15,781,1 +8909,369601,162,8135,1 +8910,370092,91,4580,1 +8911,370092,106,5310,1 +8912,370113,13,697,1 +8913,370128,43,2167,1 +8914,370141,141,7087,1 +8915,370149,98,4933,1 +8916,370152,111,5577,1 +8917,370193,125,6300,1 +8918,370428,15,760,1 +8919,370461,124,6238,1 +8920,370560,187,9354,1 +8921,370560,37,1880,1 +8922,370561,55,2767,1 +8923,370563,4,235,1 +8924,370572,199,9983,1 +8925,370573,159,7969,1 +8926,370574,37,1888,1 +8927,370585,29,1462,1 +8928,370591,157,7891,1 +8929,370596,187,9357,1 +8930,370608,38,1918,1 +8931,370608,15,772,1 +8932,370608,90,4511,1 +8933,370608,37,1893,1 +8934,370611,182,9143,1 +8935,370614,155,7786,1 +8936,370618,70,3502,1 +8937,370620,120,6004,1 +8938,370620,168,8409,1 +8939,370623,67,3361,1 +8940,370629,117,5880,1 +8941,370636,196,9829,1 +8942,370656,62,3141,1 +8943,370666,45,2269,1 +8944,370671,126,6332,1 +8945,370674,37,1882,1 +8946,370683,174,8740,1 +8947,370692,189,9453,1 +8948,370713,27,1366,1 +8949,370716,44,2226,1 +8950,370909,155,7790,1 +8951,371064,21,1074,1 +8952,371064,50,2509,1 +8953,371130,106,5338,1 +8954,371832,45,2298,1 +8955,372000,41,2065,1 +8956,372012,123,6171,1 +8957,372048,21,1070,1 +8958,372072,91,4571,1 +8959,372085,117,5880,1 +8960,372183,113,5692,1 +8961,372480,162,8102,1 +8962,372480,59,2968,1 +8963,372481,104,5201,1 +8964,372482,119,5951,1 +8965,372505,111,5579,1 +8966,372516,45,2299,1 +8967,372519,184,9210,1 +8968,372528,134,6702,1 +8969,372555,66,3310,1 +8970,372622,43,2186,1 +8971,372960,15,756,1 +8972,372960,144,7219,1 +8973,372972,189,9498,1 +8974,372975,131,6585,1 +8975,372993,181,9070,1 +8976,372993,109,5458,1 +8977,373008,84,4226,1 +8978,373038,178,8912,1 +8979,373054,146,7323,1 +8980,373057,114,5721,1 +8981,373093,116,5837,1 +8982,373104,9,476,1 +8983,373105,115,5760,1 +8984,373452,117,5878,1 +8985,373459,39,1962,1 +8986,373464,26,1311,1 +8987,373470,155,7781,1 +8988,373476,182,9103,1 +8989,373477,29,1468,1 +8990,373478,27,1376,1 +8991,373488,14,702,1 +8992,373495,167,8376,1 +8993,373501,116,5827,1 +8994,373506,182,9128,1 +8995,373512,12,619,1 +8996,373512,141,7059,1 +8997,373518,9,454,1 +8998,373524,91,4598,1 +8999,373525,161,8085,1 +9000,373536,182,9130,1 +9001,373549,117,5884,1 +9002,373559,74,3725,1 +9003,373572,38,1949,1 +9004,373920,192,9610,1 +9005,373921,53,2656,1 +9006,373921,113,5691,1 +9007,373921,142,7107,1 +9008,373933,161,8054,1 +9009,373934,155,7798,1 +9010,373935,166,8344,1 +9011,373936,181,9062,1 +9012,373938,190,9545,1 +9013,373944,84,4243,1 +9014,373944,165,8262,1 +9015,373944,153,7654,1 +9016,373944,170,8536,1 +9017,373944,10,511,1 +9018,373945,104,5243,1 +9019,373947,125,6296,1 +9020,373957,150,7539,1 +9021,373968,84,4250,1 +9022,373971,198,9920,1 +9023,373976,196,9808,1 +9024,374028,149,7470,1 +9025,374076,121,6084,1 +9026,374112,151,7569,1 +9027,374136,132,6613,1 +9028,374400,135,6751,1 +9029,374403,55,2769,1 +9030,374413,66,3320,1 +9031,374415,67,3370,1 +9032,374466,40,2018,1 +9033,374472,112,5636,1 +9034,374546,113,5684,1 +9035,375360,44,2233,1 +9036,375361,162,8137,1 +9037,375372,2,119,1 +9038,375378,11,576,1 +9039,375384,16,833,1 +9040,375408,54,2750,1 +9041,375420,125,6295,1 +9042,375420,30,1520,1 +9043,375421,192,9605,1 +9044,375468,79,3985,1 +9045,375492,25,1278,1 +9046,375840,83,4167,1 +9047,375840,167,8351,1 +9048,375849,144,7220,1 +9049,375868,48,2409,1 +9050,375900,194,9703,1 +9051,375912,47,2394,1 +9052,375938,59,2994,1 +9053,375963,145,7280,1 +9054,376321,80,4050,1 +9055,376322,135,6767,1 +9056,376323,189,9452,1 +9057,376337,3,175,1 +9058,376344,191,9584,1 +9059,376356,128,6416,1 +9060,376370,131,6555,1 +9061,376800,16,823,1 +9062,376801,5,291,1 +9063,376824,143,7169,1 +9064,376824,32,1617,1 +9065,376848,89,4454,1 +9066,376860,139,6972,1 +9067,376872,82,4126,1 +9068,376896,61,3072,1 +9069,376923,38,1928,1 +9070,377280,138,6921,1 +9071,377301,23,1183,1 +9072,377305,81,4092,1 +9073,377316,117,5879,1 +9074,377353,58,2946,1 +9075,377772,132,6635,1 +9076,377796,165,8263,1 +9077,378084,63,3194,1 +9078,378240,172,8640,1 +9079,378249,140,7005,1 +9080,378252,186,9342,1 +9081,378264,57,2862,1 +9082,378285,196,9801,1 +9083,378289,20,1041,1 +9084,378300,12,603,1 +9085,378384,98,4902,1 +9086,378720,149,7480,1 +9087,378720,188,9442,1 +9088,378721,148,7415,1 +9089,378721,184,9245,1 +9090,378721,85,4285,1 +9091,378736,108,5435,1 +9092,378736,84,4236,1 +9093,378741,27,1359,1 +9094,378741,80,4013,1 +9095,378744,96,4850,1 +9096,378744,42,2117,1 +9097,378744,104,5235,1 +9098,378744,160,8045,1 +9099,378745,158,7908,1 +9100,378760,72,3607,1 +9101,378769,148,7424,1 +9102,378793,110,5532,1 +9103,378841,99,4961,1 +9104,378842,185,9280,1 +9105,378856,163,8160,1 +9106,378864,13,651,1 +9107,378888,156,7846,1 +9108,378900,189,9462,1 +9109,378960,198,9927,1 +9110,379212,38,1910,1 +9111,379224,32,1613,1 +9112,379225,132,6601,1 +9113,379225,15,777,1 +9114,379237,0,36,1 +9115,379257,66,3316,1 +9116,379260,5,263,1 +9117,379261,66,3306,1 +9118,379296,49,2483,1 +9119,379560,129,6467,1 +9120,379717,88,4410,1 +9121,380181,127,6376,1 +9122,380186,21,1063,1 +9123,380189,181,9091,1 +9124,380196,177,8870,1 +9125,380205,90,4538,1 +9126,380256,177,8869,1 +9127,380295,31,1558,1 +9128,380640,73,3692,1 +9129,380640,13,674,1 +9130,380640,185,9265,1 +9131,380640,5,267,1 +9132,380640,199,9962,1 +9133,380640,27,1397,1 +9134,380640,35,1789,1 +9135,380641,3,154,1 +9136,380641,35,1767,1 +9137,380642,169,8495,1 +9138,380642,191,9563,1 +9139,380646,137,6868,1 +9140,380649,68,3446,1 +9141,380649,165,8286,1 +9142,380650,182,9127,1 +9143,380652,195,9786,1 +9144,380652,52,2645,1 +9145,380652,96,4837,1 +9146,380653,78,3920,1 +9147,380653,26,1331,1 +9148,380653,140,7047,1 +9149,380655,71,3565,1 +9150,380657,49,2479,1 +9151,380658,55,2755,1 +9152,380658,102,5145,1 +9153,380661,178,8906,1 +9154,380664,186,9304,1 +9155,380664,91,4585,1 +9156,380664,48,2434,1 +9157,380665,141,7070,1 +9158,380665,29,1497,1 +9159,380673,120,6036,1 +9160,380676,180,9017,1 +9161,380676,31,1576,1 +9162,380678,146,7342,1 +9163,380678,75,3790,1 +9164,380679,10,532,1 +9165,380688,182,9134,1 +9166,380688,77,3875,1 +9167,380688,1,64,1 +9168,380695,22,1124,1 +9169,380697,97,4881,1 +9170,380697,66,3332,1 +9171,380700,184,9211,1 +9172,380700,78,3905,1 +9173,380701,95,4765,1 +9174,380702,131,6568,1 +9175,380704,29,1499,1 +9176,380710,143,7152,1 +9177,380712,40,2025,1 +9178,380712,94,4735,1 +9179,380715,187,9387,1 +9180,380715,26,1318,1 +9181,380715,54,2741,1 +9182,380718,60,3037,1 +9183,380718,31,1592,1 +9184,380722,167,8373,1 +9185,380722,93,4678,1 +9186,380724,136,6810,1 +9187,380728,19,971,1 +9188,380730,148,7445,1 +9189,380736,131,6572,1 +9190,380751,193,9689,1 +9191,380760,113,5678,1 +9192,380762,127,6383,1 +9193,380772,12,634,1 +9194,380773,185,9285,1 +9195,380796,32,1648,1 +9196,380847,71,3567,1 +9197,380880,161,8100,1 +9198,381120,19,955,1 +9199,381603,68,3404,1 +9200,381612,82,4111,1 +9201,381612,93,4668,1 +9202,381616,32,1624,1 +9203,381627,179,8968,1 +9204,381660,161,8076,1 +9205,381696,189,9481,1 +9206,381709,14,737,1 +9207,381749,6,325,1 +9208,381750,129,6489,1 +9209,381756,13,683,1 +9210,382082,96,4815,1 +9211,382089,116,5805,1 +9212,382104,69,3480,1 +9213,382117,78,3933,1 +9214,382140,124,6201,1 +9215,382152,95,4769,1 +9216,382220,141,7094,1 +9217,382225,194,9733,1 +9218,382284,129,6470,1 +9219,382308,12,635,1 +9220,382572,157,7884,1 +9221,382575,113,5688,1 +9222,382579,56,2834,1 +9223,382584,0,42,1 +9224,382585,136,6848,1 +9225,382592,195,9755,1 +9226,382632,154,7742,1 +9227,382632,182,9130,1 +9228,382648,158,7917,1 +9229,382674,132,6622,1 +9230,383040,75,3764,1 +9231,383040,66,3312,1 +9232,383040,169,8465,1 +9233,383040,177,8877,1 +9234,383040,165,8290,1 +9235,383041,137,6875,1 +9236,383041,26,1340,1 +9237,383047,0,37,1 +9238,383050,70,3510,1 +9239,383051,50,2511,1 +9240,383052,182,9106,1 +9241,383053,174,8750,1 +9242,383054,24,1227,1 +9243,383062,11,562,1 +9244,383065,108,5448,1 +9245,383065,47,2375,1 +9246,383070,143,7159,1 +9247,383077,122,6103,1 +9248,383077,64,3248,1 +9249,383079,158,7914,1 +9250,383088,190,9529,1 +9251,383091,141,7066,1 +9252,383103,18,919,1 +9253,383112,104,5233,1 +9254,383115,107,5369,1 +9255,383119,84,4224,1 +9256,383121,122,6146,1 +9257,383148,73,3678,1 +9258,383148,50,2550,1 +9259,383163,87,4376,1 +9260,383172,17,894,1 +9261,383196,181,9084,1 +9262,383196,155,7788,1 +9263,383198,174,8744,1 +9264,383253,141,7096,1 +9265,383520,169,8454,1 +9266,383520,183,9157,1 +9267,383521,41,2062,1 +9268,383533,29,1481,1 +9269,383544,16,801,1 +9270,383548,100,5023,1 +9271,383605,158,7943,1 +9272,383809,189,9488,1 +9273,383820,26,1347,1 +9274,384024,108,5446,1 +9275,384025,39,1985,1 +9276,384026,168,8414,1 +9277,384030,31,1596,1 +9278,384036,13,672,1 +9279,384049,24,1205,1 +9280,384060,38,1930,1 +9281,384061,104,5210,1 +9282,384067,110,5549,1 +9283,384072,194,9723,1 +9284,384097,120,6009,1 +9285,384133,68,3401,1 +9286,384153,129,6469,1 +9287,384192,169,8455,1 +9288,384481,195,9781,1 +9289,384492,84,4238,1 +9290,384493,83,4198,1 +9291,384504,70,3540,1 +9292,384504,24,1208,1 +9293,384517,192,9634,1 +9294,384517,157,7896,1 +9295,384577,36,1815,1 +9296,384589,186,9334,1 +9297,384660,72,3637,1 +9298,384960,176,8803,1 +9299,384960,158,7919,1 +9300,384961,179,8975,1 +9301,384966,159,7997,1 +9302,384972,153,7689,1 +9303,384973,76,3802,1 +9304,384975,44,2231,1 +9305,384993,92,4630,1 +9306,385009,184,9221,1 +9307,385010,52,2650,1 +9308,385011,194,9704,1 +9309,385149,154,7723,1 +9310,385440,182,9148,1 +9311,385449,40,2012,1 +9312,385454,74,3727,1 +9313,385458,123,6195,1 +9314,385488,32,1630,1 +9315,385490,154,7731,1 +9316,385501,101,5071,1 +9317,385573,199,9962,1 +9318,385584,96,4843,1 +9319,385920,126,6314,1 +9320,385920,97,4869,1 +9321,385921,187,9383,1 +9322,385923,158,7903,1 +9323,385930,4,234,1 +9324,385932,45,2275,1 +9325,385938,176,8807,1 +9326,385948,26,1307,1 +9327,385958,121,6051,1 +9328,385981,153,7670,1 +9329,386004,178,8927,1 +9330,386004,168,8429,1 +9331,386017,2,122,1 +9332,386046,132,6632,1 +9333,386052,20,1044,1 +9334,386412,155,7751,1 +9335,386883,172,8644,1 +9336,386893,127,6377,1 +9337,386913,183,9182,1 +9338,386916,156,7822,1 +9339,386916,78,3909,1 +9340,386928,136,6810,1 +9341,387007,145,7251,1 +9342,387043,161,8087,1 +9343,387152,43,2155,1 +9344,387207,21,1088,1 +9345,387396,27,1391,1 +9346,387396,41,2062,1 +9347,387397,56,2837,1 +9348,387489,162,8131,1 +9349,387564,77,3863,1 +9350,387847,168,8437,1 +9351,387865,67,3358,1 +9352,387876,112,5602,1 +9353,387910,157,7860,1 +9354,387931,188,9434,1 +9355,387936,91,4570,1 +9356,388021,95,4763,1 +9357,388806,199,9963,1 +9358,388812,52,2626,1 +9359,388813,81,4088,1 +9360,388826,12,601,1 +9361,388836,59,2961,1 +9362,388838,155,7762,1 +9363,388887,183,9164,1 +9364,388923,155,7766,1 +9365,388959,105,5276,1 +9366,389280,2,126,1 +9367,389280,171,8573,1 +9368,389307,175,8778,1 +9369,389309,170,8519,1 +9370,389311,199,9974,1 +9371,389313,13,670,1 +9372,389334,112,5623,1 +9373,389337,167,8370,1 +9374,389340,30,1544,1 +9375,389342,1,51,1 +9376,389346,199,9983,1 +9377,389424,36,1847,1 +9378,389436,120,6001,1 +9379,389760,149,7478,1 +9380,389760,85,4272,1 +9381,389760,96,4820,1 +9382,389763,121,6079,1 +9383,389763,164,8238,1 +9384,389764,115,5760,1 +9385,389775,43,2161,1 +9386,389784,196,9801,1 +9387,389796,25,1281,1 +9388,389797,27,1387,1 +9389,389808,95,4783,1 +9390,389809,29,1475,1 +9391,389810,144,7211,1 +9392,389830,122,6133,1 +9393,389832,116,5828,1 +9394,389832,10,526,1 +9395,389857,69,3488,1 +9396,389870,5,258,1 +9397,389899,173,8666,1 +9398,389905,38,1918,1 +9399,390264,139,6963,1 +9400,390265,66,3338,1 +9401,390279,53,2700,1 +9402,390327,34,1708,1 +9403,390327,31,1569,1 +9404,390348,130,6501,1 +9405,390727,169,8475,1 +9406,390735,153,7665,1 +9407,390735,76,3826,1 +9408,390744,92,4601,1 +9409,390768,101,5082,1 +9410,390805,88,4421,1 +9411,390806,71,3565,1 +9412,390828,4,250,1 +9413,390840,105,5253,1 +9414,390866,51,2587,1 +9415,390912,143,7167,1 +9416,391105,132,6637,1 +9417,391202,129,6480,1 +9418,391206,127,6389,1 +9419,391212,16,812,1 +9420,391212,103,5171,1 +9421,391221,137,6854,1 +9422,391236,81,4084,1 +9423,391284,46,2346,1 +9424,391311,144,7250,1 +9425,391341,137,6863,1 +9426,391344,65,3284,1 +9427,391477,45,2293,1 +9428,391682,139,6961,1 +9429,391693,99,4998,1 +9430,391704,103,5199,1 +9431,391705,171,8583,1 +9432,391722,66,3345,1 +9433,391755,25,1285,1 +9434,392172,186,9308,1 +9435,392210,60,3041,1 +9436,394560,122,6121,1 +9437,394560,199,9978,1 +9438,394560,71,3576,1 +9439,394572,33,1654,1 +9440,394572,143,7197,1 +9441,394572,93,4684,1 +9442,394572,160,8042,1 +9443,394573,138,6942,1 +9444,394573,118,5919,1 +9445,394578,27,1359,1 +9446,394578,184,9242,1 +9447,394583,33,1665,1 +9448,394584,139,6991,1 +9449,394584,89,4459,1 +9450,394585,38,1931,1 +9451,394585,107,5370,1 +9452,394593,179,8997,1 +9453,394596,152,7649,1 +9454,394608,22,1137,1 +9455,394608,7,381,1 +9456,394608,161,8081,1 +9457,394609,73,3661,1 +9458,394614,108,5444,1 +9459,394620,26,1334,1 +9460,394620,155,7788,1 +9461,394630,103,5170,1 +9462,394634,119,5955,1 +9463,394650,10,545,1 +9464,394656,42,2129,1 +9465,394658,165,8296,1 +9466,394665,195,9793,1 +9467,394668,44,2214,1 +9468,394670,125,6280,1 +9469,394677,38,1919,1 +9470,394698,57,2870,1 +9471,394716,113,5699,1 +9472,394717,6,322,1 +9473,394729,186,9308,1 +9474,394752,136,6822,1 +9475,395050,191,9573,1 +9476,395113,194,9710,1 +9477,395115,82,4112,1 +9478,395556,182,9106,1 +9479,395644,149,7459,1 +9480,395652,24,1239,1 +9481,396024,177,8862,1 +9482,396144,44,2214,1 +9483,396480,181,9082,1 +9484,396480,142,7116,1 +9485,396480,126,6337,1 +9486,396495,59,2965,1 +9487,396496,91,4590,1 +9488,396507,67,3398,1 +9489,396574,62,3143,1 +9490,396585,68,3426,1 +9491,396960,136,6824,1 +9492,396960,23,1175,1 +9493,396961,163,8200,1 +9494,396961,193,9700,1 +9495,396972,26,1327,1 +9496,396973,68,3433,1 +9497,396973,54,2745,1 +9498,396977,58,2940,1 +9499,396978,121,6055,1 +9500,396978,94,4724,1 +9501,396979,125,6255,1 +9502,396981,107,5398,1 +9503,396984,199,9979,1 +9504,396988,45,2266,1 +9505,396993,178,8938,1 +9506,396993,173,8688,1 +9507,396996,171,8579,1 +9508,396998,78,3938,1 +9509,397010,21,1099,1 +9510,397011,152,7604,1 +9511,397020,195,9760,1 +9512,397020,67,3391,1 +9513,397021,87,4368,1 +9514,397056,130,6524,1 +9515,397057,119,5990,1 +9516,397068,18,903,1 +9517,397073,176,8849,1 +9518,397080,160,8008,1 +9519,397106,66,3330,1 +9520,397129,97,4898,1 +9521,397140,172,8633,1 +9522,397938,169,8500,1 +9523,397944,16,837,1 +9524,397966,99,4993,1 +9525,397989,59,2998,1 +9526,398004,62,3120,1 +9527,398400,131,6553,1 +9528,398415,23,1152,1 +9529,398436,132,6619,1 +9530,398472,134,6727,1 +9531,398502,30,1540,1 +9532,398520,63,3154,1 +9533,398604,160,8046,1 +9534,398619,38,1922,1 +9535,398880,46,2322,1 +9536,398881,168,8439,1 +9537,398883,88,4437,1 +9538,398892,1,97,1 +9539,398905,65,3272,1 +9540,398916,126,6308,1 +9541,398928,126,6340,1 +9542,398944,40,2034,1 +9543,398952,72,3620,1 +9544,398973,19,975,1 +9545,398973,112,5638,1 +9546,399048,64,3201,1 +9547,399363,28,1436,1 +9548,399374,52,2614,1 +9549,399379,30,1544,1 +9550,399566,98,4903,1 +9551,399840,146,7337,1 +9552,399841,30,1506,1 +9553,399852,184,9249,1 +9554,399852,64,3223,1 +9555,399852,156,7841,1 +9556,399863,174,8710,1 +9557,399864,19,954,1 +9558,399865,2,143,1 +9559,399865,49,2467,1 +9560,399866,86,4304,1 +9561,399889,65,3255,1 +9562,399914,68,3427,1 +9563,400002,136,6846,1 +9564,400032,88,4425,1 +9565,400332,103,5169,1 +9566,400344,179,8954,1 +9567,400357,3,157,1 +9568,400368,157,7900,1 +9569,400800,77,3868,1 +9570,400800,29,1488,1 +9571,400800,158,7948,1 +9572,400803,117,5855,1 +9573,400803,156,7845,1 +9574,400810,85,4280,1 +9575,400812,162,8102,1 +9576,400812,22,1113,1 +9577,400813,61,3082,1 +9578,400813,0,37,1 +9579,400813,157,7885,1 +9580,400824,142,7118,1 +9581,400824,60,3004,1 +9582,400824,76,3832,1 +9583,400836,180,9034,1 +9584,400836,49,2455,1 +9585,400836,52,2601,1 +9586,400836,8,414,1 +9587,400843,133,6695,1 +9588,400849,118,5909,1 +9589,400857,49,2498,1 +9590,400866,158,7937,1 +9591,400873,196,9839,1 +9592,400899,132,6634,1 +9593,400908,144,7243,1 +9594,400932,78,3950,1 +9595,400958,194,9750,1 +9596,401317,150,7537,1 +9597,401760,189,9483,1 +9598,401775,66,3329,1 +9599,401784,114,5702,1 +9600,401808,0,5,1 +9601,401833,146,7308,1 +9602,401859,40,2035,1 +9603,401904,135,6783,1 +9604,402252,171,8564,1 +9605,402396,32,1639,1 +9606,402721,85,4251,1 +9607,402816,48,2428,1 +9608,403200,182,9113,1 +9609,403248,103,5183,1 +9610,403251,85,4258,1 +9611,403314,125,6286,1 +9612,403680,157,7878,1 +9613,403705,132,6617,1 +9614,403716,167,8396,1 +9615,404163,23,1186,1 +9616,404172,72,3649,1 +9617,404190,124,6234,1 +9618,404208,65,3266,1 +9619,404208,5,277,1 +9620,404215,113,5669,1 +9621,404653,42,2123,1 +9622,404664,160,8048,1 +9623,404665,127,6367,1 +9624,404675,158,7932,1 +9625,405149,71,3594,1 +9626,405192,169,8461,1 +9627,405213,187,9387,1 +9628,405600,177,8899,1 +9629,405600,99,4958,1 +9630,405600,70,3513,1 +9631,405602,23,1159,1 +9632,405602,140,7009,1 +9633,405602,135,6798,1 +9634,405603,182,9119,1 +9635,405609,98,4944,1 +9636,405610,43,2151,1 +9637,405612,22,1135,1 +9638,405612,55,2799,1 +9639,405613,90,4546,1 +9640,405613,26,1309,1 +9641,405613,120,6020,1 +9642,405614,67,3363,1 +9643,405621,183,9159,1 +9644,405624,155,7769,1 +9645,405626,199,9953,1 +9646,405636,145,7275,1 +9647,405636,131,6561,1 +9648,405648,85,4263,1 +9649,405649,134,6748,1 +9650,405652,83,4161,1 +9651,405655,147,7380,1 +9652,405663,30,1505,1 +9653,405672,154,7749,1 +9654,405672,130,6532,1 +9655,405681,84,4249,1 +9656,405684,37,1883,1 +9657,405687,117,5882,1 +9658,405696,22,1123,1 +9659,405708,45,2272,1 +9660,405708,189,9491,1 +9661,405726,42,2102,1 +9662,405742,195,9780,1 +9663,405750,181,9090,1 +9664,405753,19,980,1 +9665,405819,158,7928,1 +9666,406080,15,785,1 +9667,406083,60,3003,1 +9668,406085,124,6244,1 +9669,406086,168,8430,1 +9670,406092,184,9239,1 +9671,406092,120,6020,1 +9672,406113,75,3793,1 +9673,406117,154,7706,1 +9674,406122,137,6887,1 +9675,406128,15,767,1 +9676,406140,118,5915,1 +9677,406140,80,4002,1 +9678,406140,79,3967,1 +9679,406140,89,4469,1 +9680,406156,72,3610,1 +9681,406159,174,8730,1 +9682,406161,142,7137,1 +9683,406170,8,420,1 +9684,406171,61,3059,1 +9685,406188,63,3190,1 +9686,406196,196,9850,1 +9687,406200,129,6451,1 +9688,406200,78,3916,1 +9689,406203,54,2738,1 +9690,406260,21,1070,1 +9691,406262,42,2145,1 +9692,406560,146,7343,1 +9693,406560,166,8320,1 +9694,406561,7,371,1 +9695,406567,58,2940,1 +9696,406572,1,79,1 +9697,406574,117,5883,1 +9698,406584,27,1389,1 +9699,406584,174,8739,1 +9700,406585,193,9677,1 +9701,406596,64,3222,1 +9702,406596,13,651,1 +9703,406608,187,9383,1 +9704,406617,112,5622,1 +9705,406620,196,9825,1 +9706,406620,74,3737,1 +9707,406645,182,9128,1 +9708,406704,137,6892,1 +9709,406933,115,5800,1 +9710,407040,22,1144,1 +9711,407077,99,4984,1 +9712,407097,112,5637,1 +9713,407100,34,1726,1 +9714,407118,129,6459,1 +9715,407529,23,1193,1 +9716,407562,63,3179,1 +9717,407604,110,5520,1 +9718,408000,81,4086,1 +9719,408012,20,1003,1 +9720,408012,20,1025,1 +9721,408013,172,8624,1 +9722,408015,80,4023,1 +9723,408016,50,2543,1 +9724,408022,44,2229,1 +9725,408034,129,6463,1 +9726,408036,81,4081,1 +9727,408037,81,4081,1 +9728,408048,166,8340,1 +9729,408049,189,9487,1 +9730,408061,125,6276,1 +9731,408070,11,575,1 +9732,408096,2,139,1 +9733,408102,97,4851,1 +9734,408109,138,6909,1 +9735,408121,189,9473,1 +9736,408157,50,2539,1 +9737,408660,190,9522,1 +9738,408985,114,5734,1 +9739,408997,66,3347,1 +9740,409454,44,2219,1 +9741,409464,180,9036,1 +9742,409469,167,8368,1 +9743,409477,147,7381,1 +9744,409920,31,1554,1 +9745,409920,94,4742,1 +9746,409920,5,256,1 +9747,409921,65,3280,1 +9748,409935,120,6005,1 +9749,409935,75,3790,1 +9750,409935,43,2166,1 +9751,409936,174,8724,1 +9752,409941,190,9525,1 +9753,409944,48,2436,1 +9754,409944,13,699,1 +9755,409944,146,7328,1 +9756,409951,84,4225,1 +9757,409956,62,3149,1 +9758,409956,61,3080,1 +9759,409968,118,5924,1 +9760,409980,155,7794,1 +9761,409992,166,8347,1 +9762,410034,101,5057,1 +9763,410042,26,1331,1 +9764,410065,44,2214,1 +9765,410100,111,5599,1 +9766,410112,84,4234,1 +9767,410121,85,4273,1 +9768,410124,127,6382,1 +9769,410436,51,2578,1 +9770,410448,196,9818,1 +9771,410880,2,116,1 +9772,410880,176,8810,1 +9773,410881,43,2198,1 +9774,410884,86,4311,1 +9775,410886,10,503,1 +9776,410892,98,4921,1 +9777,410892,101,5062,1 +9778,410892,55,2764,1 +9779,410895,70,3514,1 +9780,410897,184,9221,1 +9781,410904,32,1649,1 +9782,410910,93,4678,1 +9783,410910,9,456,1 +9784,410911,57,2878,1 +9785,410916,58,2927,1 +9786,410917,7,371,1 +9787,410928,156,7815,1 +9788,410928,69,3486,1 +9789,410938,51,2584,1 +9790,410949,70,3544,1 +9791,410964,186,9311,1 +9792,410965,28,1430,1 +9793,410977,12,646,1 +9794,411001,54,2725,1 +9795,411362,78,3932,1 +9796,411369,144,7219,1 +9797,411379,185,9259,1 +9798,411427,63,3194,1 +9799,411444,10,509,1 +9800,411446,7,390,1 +9801,411456,0,21,1 +9802,411480,19,987,1 +9803,411840,117,5871,1 +9804,411840,186,9310,1 +9805,411841,2,103,1 +9806,411841,60,3049,1 +9807,411843,179,8963,1 +9808,411846,178,8935,1 +9809,411852,32,1628,1 +9810,411852,58,2906,1 +9811,411852,50,2534,1 +9812,411852,56,2820,1 +9813,411853,35,1762,1 +9814,411854,134,6722,1 +9815,411855,102,5119,1 +9816,411862,97,4884,1 +9817,411864,173,8668,1 +9818,411867,12,645,1 +9819,411871,70,3502,1 +9820,411876,6,332,1 +9821,411877,52,2633,1 +9822,411881,123,6162,1 +9823,411888,42,2138,1 +9824,411889,138,6911,1 +9825,411913,3,151,1 +9826,411916,22,1133,1 +9827,411924,76,3802,1 +9828,411936,154,7718,1 +9829,411956,149,7479,1 +9830,411958,39,1970,1 +9831,411993,57,2858,1 +9832,411993,13,680,1 +9833,412027,132,6647,1 +9834,412800,78,3917,1 +9835,412816,136,6823,1 +9836,412824,119,5961,1 +9837,412826,21,1077,1 +9838,412849,168,8444,1 +9839,412890,72,3618,1 +9840,412944,152,7629,1 +9841,412988,129,6452,1 +9842,413763,109,5473,1 +9843,413766,157,7874,1 +9844,413784,163,8194,1 +9845,413784,5,287,1 +9846,413784,173,8691,1 +9847,413799,32,1602,1 +9848,413806,195,9794,1 +9849,414242,103,5187,1 +9850,414252,19,986,1 +9851,414262,44,2240,1 +9852,414277,166,8348,1 +9853,414312,129,6483,1 +9854,414312,172,8616,1 +9855,414748,22,1138,1 +9856,415200,173,8693,1 +9857,415201,102,5124,1 +9858,415201,167,8363,1 +9859,415209,149,7462,1 +9860,415218,3,151,1 +9861,415224,63,3193,1 +9862,415224,95,4771,1 +9863,415227,196,9812,1 +9864,415227,72,3603,1 +9865,415234,155,7766,1 +9866,415244,156,7812,1 +9867,415248,22,1142,1 +9868,415253,147,7353,1 +9869,415260,151,7577,1 +9870,415284,78,3923,1 +9871,415680,59,2967,1 +9872,415684,135,6788,1 +9873,415707,109,5454,1 +9874,415710,46,2350,1 +9875,415729,65,3300,1 +9876,415776,48,2416,1 +9877,415798,81,4066,1 +9878,415842,136,6833,1 +9879,415933,115,5789,1 +9880,416184,5,253,1 +9881,416640,48,2437,1 +9882,416640,105,5256,1 +9883,416643,122,6148,1 +9884,416648,147,7385,1 +9885,416664,31,1569,1 +9886,416676,99,4984,1 +9887,416676,18,908,1 +9888,416700,51,2561,1 +9889,416704,63,3161,1 +9890,416712,27,1358,1 +9891,416724,56,2808,1 +9892,416745,45,2284,1 +9893,416775,29,1484,1 +9894,416892,69,3466,1 +9895,416894,159,7952,1 +9896,417120,178,8938,1 +9897,417120,155,7784,1 +9898,417120,51,2597,1 +9899,417121,111,5561,1 +9900,417121,145,7281,1 +9901,417123,15,757,1 +9902,417126,163,8196,1 +9903,417127,73,3653,1 +9904,417130,195,9763,1 +9905,417132,158,7922,1 +9906,417132,7,385,1 +9907,417132,23,1196,1 +9908,417132,153,7676,1 +9909,417133,156,7822,1 +9910,417141,194,9732,1 +9911,417145,188,9440,1 +9912,417145,186,9315,1 +9913,417146,149,7468,1 +9914,417147,57,2897,1 +9915,417147,44,2213,1 +9916,417147,27,1363,1 +9917,417150,11,564,1 +9918,417156,129,6462,1 +9919,417156,60,3014,1 +9920,417156,88,4433,1 +9921,417160,185,9277,1 +9922,417169,88,4410,1 +9923,417192,141,7079,1 +9924,417192,10,538,1 +9925,417204,67,3387,1 +9926,417207,44,2225,1 +9927,417210,104,5226,1 +9928,417213,36,1817,1 +9929,417214,105,5277,1 +9930,417216,39,1967,1 +9931,417228,78,3927,1 +9932,417240,166,8331,1 +9933,417253,135,6752,1 +9934,417266,163,8158,1 +9935,417300,154,7731,1 +9936,417312,19,969,1 +9937,417432,104,5206,1 +9938,417612,60,3029,1 +9939,417624,67,3386,1 +9940,417660,176,8804,1 +9941,417780,33,1669,1 +9942,417852,189,9485,1 +9943,418080,85,4269,1 +9944,418080,13,659,1 +9945,418080,76,3850,1 +9946,418081,73,3662,1 +9947,418082,34,1750,1 +9948,418086,76,3802,1 +9949,418087,130,6550,1 +9950,418089,61,3065,1 +9951,418090,35,1752,1 +9952,418092,193,9687,1 +9953,418092,52,2646,1 +9954,418092,111,5579,1 +9955,418092,105,5273,1 +9956,418093,165,8266,1 +9957,418095,17,876,1 +9958,418098,38,1937,1 +9959,418104,108,5413,1 +9960,418104,27,1368,1 +9961,418104,137,6868,1 +9962,418105,43,2191,1 +9963,418113,27,1381,1 +9964,418113,27,1375,1 +9965,418116,128,6410,1 +9966,418117,103,5175,1 +9967,418118,100,5028,1 +9968,418118,155,7795,1 +9969,418119,36,1815,1 +9970,418119,16,801,1 +9971,418128,119,5979,1 +9972,418128,161,8095,1 +9973,418129,191,9593,1 +9974,418129,13,657,1 +9975,418131,136,6832,1 +9976,418134,91,4578,1 +9977,418135,96,4817,1 +9978,418141,10,538,1 +9979,418141,64,3245,1 +9980,418143,69,3458,1 +9981,418149,185,9293,1 +9982,418152,102,5134,1 +9983,418152,140,7009,1 +9984,418164,78,3909,1 +9985,418165,37,1893,1 +9986,418172,194,9727,1 +9987,418173,172,8632,1 +9988,418191,38,1934,1 +9989,418194,66,3336,1 +9990,418221,55,2768,1 +9991,418221,94,4724,1 +9992,418260,47,2388,1 +9993,418368,38,1929,1 +9994,419040,10,530,1 +9995,419052,93,4662,1 +9996,419053,196,9815,1 +9997,419055,98,4950,1 +9998,419088,87,4385,1 +9999,419124,34,1725,1 +10000,419125,58,2939,1 +10001,419520,89,4463,1 +10002,419532,102,5119,1 +10003,419545,73,3660,1 +10004,419568,62,3133,1 +10005,419604,14,707,1 +10006,419613,84,4201,1 +10007,420012,118,5937,1 +10008,420132,7,386,1 +10009,420496,173,8671,1 +10010,420501,89,4477,1 +10011,420531,161,8092,1 +10012,420549,162,8112,1 +10013,420960,165,8299,1 +10014,420960,22,1118,1 +10015,420962,161,8091,1 +10016,420963,168,8416,1 +10017,420969,116,5833,1 +10018,420972,20,1008,1 +10019,420987,121,6089,1 +10020,420997,185,9281,1 +10021,421009,100,5049,1 +10022,421011,189,9496,1 +10023,421021,114,5713,1 +10024,421032,196,9845,1 +10025,421045,184,9214,1 +10026,421056,115,5757,1 +10027,421069,130,6542,1 +10028,421215,81,4093,1 +10029,421442,5,300,1 +10030,421453,184,9250,1 +10031,421457,128,6442,1 +10032,421465,34,1734,1 +10033,421476,102,5104,1 +10034,421489,184,9230,1 +10035,421515,25,1291,1 +10036,421579,190,9540,1 +10037,421923,108,5403,1 +10038,421946,174,8744,1 +10039,421956,48,2425,1 +10040,421958,143,7191,1 +10041,421962,29,1456,1 +10042,422005,5,281,1 +10043,422401,77,3890,1 +10044,422448,8,421,1 +10045,422457,31,1578,1 +10046,422496,71,3557,1 +10047,422497,193,9698,1 +10048,422916,7,394,1 +10049,424321,50,2518,1 +10050,424377,62,3150,1 +10051,424800,199,9973,1 +10052,425314,55,2762,1 +10053,425352,2,103,1 +10054,425760,21,1083,1 +10055,425760,182,9145,1 +10056,425762,88,4428,1 +10057,425772,175,8796,1 +10058,425784,104,5201,1 +10059,425784,160,8025,1 +10060,425785,60,3007,1 +10061,425793,196,9803,1 +10062,425794,130,6515,1 +10063,425796,95,4790,1 +10064,425796,71,3588,1 +10065,425796,62,3122,1 +10066,425797,148,7422,1 +10067,425799,75,3780,1 +10068,425803,22,1111,1 +10069,425805,133,6669,1 +10070,425806,193,9664,1 +10071,425808,149,7465,1 +10072,425813,187,9353,1 +10073,425815,138,6936,1 +10074,425817,186,9336,1 +10075,425820,27,1358,1 +10076,425826,37,1882,1 +10077,425829,22,1147,1 +10078,425836,5,268,1 +10079,425838,170,8547,1 +10080,425865,39,1982,1 +10081,425880,127,6369,1 +10082,425892,153,7664,1 +10083,425892,149,7476,1 +10084,425898,61,3068,1 +10085,425907,136,6833,1 +10086,425913,45,2292,1 +10087,426240,137,6852,1 +10088,426240,4,210,1 +10089,426241,181,9055,1 +10090,426252,134,6721,1 +10091,426259,78,3939,1 +10092,426264,35,1793,1 +10093,426264,177,8891,1 +10094,426267,73,3689,1 +10095,426270,68,3449,1 +10096,426272,186,9301,1 +10097,426295,86,4332,1 +10098,426309,38,1942,1 +10099,426346,14,720,1 +10100,426397,158,7903,1 +10101,426420,35,1766,1 +10102,426624,150,7522,1 +10103,426732,179,8952,1 +10104,426733,0,24,1 +10105,426744,136,6842,1 +10106,426753,55,2793,1 +10107,426756,100,5024,1 +10108,426770,50,2502,1 +10109,426771,97,4878,1 +10110,426792,173,8668,1 +10111,426792,82,4114,1 +10112,426804,32,1634,1 +10113,426914,64,3234,1 +10114,427260,177,8889,1 +10115,427401,146,7302,1 +10116,427680,20,1007,1 +10117,427694,125,6274,1 +10118,428169,43,2151,1 +10119,428173,70,3524,1 +10120,428184,102,5105,1 +10121,428186,181,9073,1 +10122,428189,123,6195,1 +10123,428197,168,8406,1 +10124,428209,78,3923,1 +10125,428214,106,5331,1 +10126,428232,81,4066,1 +10127,428244,174,8703,1 +10128,428245,140,7013,1 +10129,428305,0,38,1 +10130,428383,101,5084,1 +10131,428641,106,5303,1 +10132,428643,173,8671,1 +10133,428650,99,4956,1 +10134,428661,133,6668,1 +10135,428679,110,5546,1 +10136,428766,56,2816,1 +10137,429134,146,7339,1 +10138,430081,186,9310,1 +10139,430105,195,9755,1 +10140,430141,19,990,1 +10141,430251,148,7410,1 +10142,430560,75,3798,1 +10143,430560,25,1289,1 +10144,430561,156,7820,1 +10145,430562,33,1676,1 +10146,430564,86,4331,1 +10147,430566,43,2169,1 +10148,430572,141,7097,1 +10149,430584,120,6039,1 +10150,430591,20,1047,1 +10151,430596,144,7205,1 +10152,430599,97,4882,1 +10153,430599,133,6690,1 +10154,430608,31,1553,1 +10155,430623,20,1039,1 +10156,430665,199,9976,1 +10157,430692,53,2680,1 +10158,430729,32,1641,1 +10159,430740,58,2914,1 +10160,431545,145,7258,1 +10161,431572,128,6449,1 +10162,431640,100,5030,1 +10163,431677,111,5587,1 +10164,431688,146,7329,1 +10165,432024,121,6067,1 +10166,432024,19,965,1 +10167,432480,41,2078,1 +10168,432492,101,5087,1 +10169,432493,36,1823,1 +10170,432505,21,1085,1 +10171,432506,29,1483,1 +10172,432516,172,8627,1 +10173,432528,147,7366,1 +10174,432529,95,4789,1 +10175,432534,45,2279,1 +10176,432573,14,729,1 +10177,432589,175,8797,1 +10178,432652,12,634,1 +10179,432960,182,9146,1 +10180,432972,161,8057,1 +10181,432973,110,5515,1 +10182,432984,32,1647,1 +10183,432996,47,2370,1 +10184,432998,64,3236,1 +10185,433000,67,3356,1 +10186,433002,103,5166,1 +10187,433008,75,3793,1 +10188,433044,143,7183,1 +10189,433062,36,1829,1 +10190,433080,165,8280,1 +10191,433092,187,9399,1 +10192,433097,39,1970,1 +10193,433128,49,2462,1 +10194,433238,40,2046,1 +10195,433458,81,4077,1 +10196,433476,93,4656,1 +10197,433482,0,23,1 +10198,433525,83,4194,1 +10199,433585,28,1420,1 +10200,434893,18,939,1 +10201,434906,94,4715,1 +10202,434928,166,8316,1 +10203,435362,72,3641,1 +10204,435363,121,6080,1 +10205,435364,49,2452,1 +10206,435367,143,7167,1 +10207,435370,59,2979,1 +10208,435372,144,7230,1 +10209,435384,83,4188,1 +10210,435385,73,3699,1 +10211,435387,148,7424,1 +10212,435396,157,7893,1 +10213,435397,188,9419,1 +10214,435418,11,563,1 +10215,435424,60,3003,1 +10216,435436,62,3140,1 +10217,435436,58,2914,1 +10218,435445,197,9888,1 +10219,435468,4,239,1 +10220,435492,57,2886,1 +10221,435534,143,7200,1 +10222,435876,22,1124,1 +10223,435915,125,6263,1 +10224,435930,31,1587,1 +10225,435957,117,5855,1 +10226,436320,140,7008,1 +10227,436320,68,3446,1 +10228,436321,21,1093,1 +10229,436323,18,939,1 +10230,436328,46,2317,1 +10231,436404,83,4156,1 +10232,436434,104,5241,1 +10233,436455,174,8722,1 +10234,436656,13,665,1 +10235,436812,123,6174,1 +10236,436816,33,1695,1 +10237,436836,151,7587,1 +10238,436875,25,1254,1 +10239,436884,57,2893,1 +10240,436885,69,3473,1 +10241,436910,103,5189,1 +10242,436914,79,3980,1 +10243,436920,172,8604,1 +10244,437292,58,2935,1 +10245,437307,96,4840,1 +10246,437760,99,4982,1 +10247,437767,50,2510,1 +10248,437785,47,2362,1 +10249,437820,61,3084,1 +10250,438264,11,563,1 +10251,438312,139,6991,1 +10252,438336,148,7408,1 +10253,438373,102,5118,1 +10254,438726,95,4780,1 +10255,438760,37,1896,1 +10256,438763,28,1414,1 +10257,438771,158,7922,1 +10258,438774,199,9985,1 +10259,438795,109,5456,1 +10260,438849,197,9877,1 +10261,438868,26,1311,1 +10262,439200,166,8312,1 +10263,439203,112,5647,1 +10264,439212,65,3260,1 +10265,439236,161,8097,1 +10266,439249,181,9076,1 +10267,439260,42,2107,1 +10268,439266,182,9141,1 +10269,439284,118,5906,1 +10270,439311,79,3995,1 +10271,439344,67,3353,1 +10272,439356,168,8421,1 +10273,440161,54,2724,1 +10274,440171,68,3431,1 +10275,440172,131,6592,1 +10276,440185,198,9933,1 +10277,440208,45,2253,1 +10278,440242,119,5994,1 +10279,440646,152,7629,1 +10280,440677,186,9346,1 +10281,440748,182,9134,1 +10282,441120,139,6985,1 +10283,441132,38,1906,1 +10284,441144,46,2303,1 +10285,441147,141,7062,1 +10286,441150,24,1220,1 +10287,441168,39,1993,1 +10288,441180,83,4189,1 +10289,441182,58,2932,1 +10290,441240,164,8246,1 +10291,441600,37,1870,1 +10292,441600,14,725,1 +10293,441600,190,9538,1 +10294,441601,76,3850,1 +10295,441602,185,9298,1 +10296,441604,176,8808,1 +10297,441624,23,1153,1 +10298,441636,144,7244,1 +10299,441638,63,3173,1 +10300,441645,97,4874,1 +10301,441648,138,6901,1 +10302,441649,100,5043,1 +10303,441660,142,7130,1 +10304,441669,59,2982,1 +10305,441672,16,830,1 +10306,441673,33,1669,1 +10307,441674,99,4980,1 +10308,441684,108,5433,1 +10309,441685,94,4748,1 +10310,441690,137,6890,1 +10311,441697,117,5861,1 +10312,441709,58,2940,1 +10313,441712,122,6114,1 +10314,441713,36,1830,1 +10315,441736,35,1787,1 +10316,441793,188,9442,1 +10317,441797,94,4744,1 +10318,442568,99,4999,1 +10319,442572,74,3701,1 +10320,442572,108,5402,1 +10321,442573,160,8031,1 +10322,442586,21,1086,1 +10323,442633,77,3895,1 +10324,442804,84,4232,1 +10325,443040,76,3830,1 +10326,443041,120,6023,1 +10327,443044,148,7417,1 +10328,443058,143,7187,1 +10329,443074,115,5798,1 +10330,443077,123,6184,1 +10331,443088,52,2650,1 +10332,443112,54,2720,1 +10333,443124,49,2481,1 +10334,443169,8,450,1 +10335,443172,13,652,1 +10336,443184,164,8206,1 +10337,443199,190,9502,1 +10338,443221,70,3531,1 +10339,443292,42,2129,1 +10340,443472,113,5690,1 +10341,443553,178,8949,1 +10342,443568,172,8647,1 +10343,444000,175,8796,1 +10344,444048,112,5616,1 +10345,444049,49,2473,1 +10346,444085,162,8108,1 +10347,444133,56,2809,1 +10348,444159,171,8570,1 +10349,444576,24,1209,1 +10350,444969,50,2507,1 +10351,445008,171,8578,1 +10352,445021,141,7065,1 +10353,445440,152,7621,1 +10354,445440,121,6098,1 +10355,445440,91,4595,1 +10356,445440,50,2516,1 +10357,445441,125,6296,1 +10358,445441,78,3942,1 +10359,445442,31,1572,1 +10360,445452,56,2801,1 +10361,445452,21,1093,1 +10362,445452,161,8074,1 +10363,445453,17,852,1 +10364,445458,141,7074,1 +10365,445464,133,6690,1 +10366,445468,93,4676,1 +10367,445474,137,6853,1 +10368,445476,62,3134,1 +10369,445501,33,1689,1 +10370,445502,185,9297,1 +10371,445512,137,6898,1 +10372,445513,146,7325,1 +10373,445515,121,6072,1 +10374,445530,72,3603,1 +10375,445531,136,6809,1 +10376,445548,149,7458,1 +10377,445560,9,478,1 +10378,445560,150,7534,1 +10379,445569,197,9857,1 +10380,445933,93,4665,1 +10381,445935,71,3563,1 +10382,445944,125,6300,1 +10383,445944,85,4291,1 +10384,445945,177,8873,1 +10385,445956,55,2789,1 +10386,445956,48,2405,1 +10387,445968,123,6193,1 +10388,445980,186,9310,1 +10389,445980,6,326,1 +10390,446004,143,7167,1 +10391,446014,29,1469,1 +10392,446088,55,2756,1 +10393,446094,153,7690,1 +10394,446400,112,5650,1 +10395,446400,8,435,1 +10396,446400,72,3601,1 +10397,446400,197,9858,1 +10398,446400,196,9825,1 +10399,446400,175,8752,1 +10400,446400,133,6672,1 +10401,446400,84,4209,1 +10402,446400,168,8433,1 +10403,446400,105,5276,1 +10404,446400,198,9925,1 +10405,446401,99,4979,1 +10406,446402,77,3873,1 +10407,446404,55,2782,1 +10408,446406,175,8752,1 +10409,446409,121,6057,1 +10410,446411,150,7542,1 +10411,446412,93,4665,1 +10412,446412,75,3775,1 +10413,446412,60,3048,1 +10414,446412,84,4204,1 +10415,446412,110,5523,1 +10416,446412,147,7364,1 +10417,446412,152,7613,1 +10418,446413,94,4724,1 +10419,446414,170,8545,1 +10420,446415,5,266,1 +10421,446415,23,1169,1 +10422,446416,96,4827,1 +10423,446416,60,3018,1 +10424,446417,62,3129,1 +10425,446418,74,3728,1 +10426,446418,156,7809,1 +10427,446421,77,3853,1 +10428,446424,131,6559,1 +10429,446424,26,1304,1 +10430,446424,195,9758,1 +10431,446424,0,34,1 +10432,446425,20,1036,1 +10433,446427,183,9153,1 +10434,446430,47,2379,1 +10435,446431,47,2364,1 +10436,446433,89,4470,1 +10437,446434,128,6445,1 +10438,446436,149,7467,1 +10439,446436,16,819,1 +10440,446436,58,2946,1 +10441,446436,160,8038,1 +10442,446436,51,2585,1 +10443,446437,155,7774,1 +10444,446437,60,3029,1 +10445,446439,90,4550,1 +10446,446440,196,9836,1 +10447,446442,19,991,1 +10448,446442,56,2836,1 +10449,446445,31,1593,1 +10450,446448,25,1292,1 +10451,446448,111,5560,1 +10452,446448,23,1163,1 +10453,446448,87,4369,1 +10454,446448,44,2227,1 +10455,446448,106,5341,1 +10456,446448,33,1677,1 +10457,446448,76,3837,1 +10458,446450,169,8461,1 +10459,446458,53,2694,1 +10460,446460,143,7187,1 +10461,446460,16,836,1 +10462,446460,180,9033,1 +10463,446460,60,3029,1 +10464,446462,50,2518,1 +10465,446463,177,8895,1 +10466,446464,151,7566,1 +10467,446465,155,7760,1 +10468,446472,28,1422,1 +10469,446472,163,8175,1 +10470,446472,103,5187,1 +10471,446473,188,9419,1 +10472,446474,56,2839,1 +10473,446484,162,8138,1 +10474,446484,49,2483,1 +10475,446487,93,4662,1 +10476,446496,84,4225,1 +10477,446497,23,1188,1 +10478,446498,68,3422,1 +10479,446498,137,6884,1 +10480,446503,146,7328,1 +10481,446508,59,2980,1 +10482,446509,126,6328,1 +10483,446520,120,6033,1 +10484,446520,104,5245,1 +10485,446521,25,1260,1 +10486,446523,152,7639,1 +10487,446533,191,9588,1 +10488,446542,148,7404,1 +10489,446545,126,6335,1 +10490,446556,45,2267,1 +10491,446569,6,327,1 +10492,446580,190,9506,1 +10493,446589,36,1804,1 +10494,446727,46,2346,1 +10495,446890,179,8969,1 +10496,446907,129,6493,1 +10497,446922,134,6747,1 +10498,447068,25,1286,1 +10499,447360,121,6065,1 +10500,447372,169,8495,1 +10501,447373,115,5773,1 +10502,447432,47,2377,1 +10503,447468,73,3670,1 +10504,447468,177,8886,1 +10505,447470,169,8486,1 +10506,447840,159,7961,1 +10507,447840,49,2468,1 +10508,447840,193,9659,1 +10509,447840,158,7915,1 +10510,447841,173,8652,1 +10511,447852,109,5483,1 +10512,447853,174,8736,1 +10513,447859,92,4645,1 +10514,447864,141,7098,1 +10515,447888,8,434,1 +10516,447898,43,2168,1 +10517,447901,94,4725,1 +10518,447904,168,8432,1 +10519,447924,53,2683,1 +10520,447935,13,671,1 +10521,447938,47,2352,1 +10522,447954,125,6295,1 +10523,447954,121,6057,1 +10524,448164,81,4091,1 +10525,448332,147,7364,1 +10526,448335,8,441,1 +10527,448335,83,4160,1 +10528,448347,23,1161,1 +10529,448353,61,3088,1 +10530,448380,39,1988,1 +10531,448406,114,5731,1 +10532,448416,93,4689,1 +10533,448417,198,9933,1 +10534,448467,144,7202,1 +10535,448814,48,2429,1 +10536,448836,110,5506,1 +10537,448908,39,1952,1 +10538,449282,33,1661,1 +10539,449285,3,151,1 +10540,449289,185,9266,1 +10541,449289,25,1291,1 +10542,449293,153,7696,1 +10543,449317,128,6438,1 +10544,449322,42,2107,1 +10545,449329,154,7728,1 +10546,449335,88,4445,1 +10547,449346,117,5896,1 +10548,449352,41,2090,1 +10549,449467,165,8282,1 +10550,449785,154,7710,1 +10551,449850,67,3378,1 +10552,450243,68,3435,1 +10553,450245,101,5069,1 +10554,450252,95,4767,1 +10555,450254,80,4043,1 +10556,450264,83,4156,1 +10557,450264,7,370,1 +10558,450264,193,9656,1 +10559,450267,101,5081,1 +10560,450276,84,4240,1 +10561,450300,136,6820,1 +10562,450315,7,379,1 +10563,450324,117,5883,1 +10564,450348,175,8757,1 +10565,450720,43,2151,1 +10566,450720,130,6549,1 +10567,450720,9,462,1 +10568,450720,49,2452,1 +10569,450721,126,6317,1 +10570,450735,121,6053,1 +10571,450741,67,3380,1 +10572,450750,65,3285,1 +10573,450754,53,2695,1 +10574,450768,146,7310,1 +10575,450780,193,9698,1 +10576,450811,194,9707,1 +10577,450816,165,8285,1 +10578,450817,147,7396,1 +10579,450888,43,2167,1 +10580,451200,91,4559,1 +10581,451200,121,6076,1 +10582,451200,85,4298,1 +10583,451201,156,7812,1 +10584,451202,50,2533,1 +10585,451209,40,2031,1 +10586,451210,145,7288,1 +10587,451212,84,4246,1 +10588,451212,25,1282,1 +10589,451212,43,2161,1 +10590,451212,68,3409,1 +10591,451212,175,8782,1 +10592,451212,116,5828,1 +10593,451213,24,1201,1 +10594,451224,152,7649,1 +10595,451224,188,9406,1 +10596,451224,191,9553,1 +10597,451227,83,4186,1 +10598,451227,110,5516,1 +10599,451227,130,6521,1 +10600,451228,64,3217,1 +10601,451230,21,1081,1 +10602,451236,56,2839,1 +10603,451239,114,5737,1 +10604,451239,92,4625,1 +10605,451242,165,8298,1 +10606,451248,154,7729,1 +10607,451254,70,3511,1 +10608,451273,13,675,1 +10609,451275,14,745,1 +10610,451284,162,8102,1 +10611,451290,20,1005,1 +10612,451296,140,7029,1 +10613,451323,14,724,1 +10614,451332,125,6277,1 +10615,451356,99,4960,1 +10616,451680,12,637,1 +10617,451680,131,6589,1 +10618,451680,146,7308,1 +10619,451680,172,8619,1 +10620,451681,187,9358,1 +10621,451694,149,7460,1 +10622,451704,132,6625,1 +10623,451720,57,2881,1 +10624,451740,66,3349,1 +10625,451741,184,9216,1 +10626,451753,39,1985,1 +10627,452163,73,3654,1 +10628,452170,22,1137,1 +10629,452174,107,5379,1 +10630,452640,178,8949,1 +10631,452640,161,8084,1 +10632,452653,25,1300,1 +10633,452676,62,3142,1 +10634,452691,180,9025,1 +10635,452700,38,1918,1 +10636,452700,102,5136,1 +10637,452700,112,5644,1 +10638,452715,73,3693,1 +10639,452718,43,2151,1 +10640,452731,40,2024,1 +10641,452737,126,6350,1 +10642,452746,60,3011,1 +10643,452762,167,8351,1 +10644,452775,98,4912,1 +10645,453120,117,5870,1 +10646,453204,132,6650,1 +10647,453613,36,1824,1 +10648,453615,114,5723,1 +10649,453624,48,2404,1 +10650,453631,43,2170,1 +10651,453681,196,9819,1 +10652,453684,155,7766,1 +10653,453696,20,1032,1 +10654,453702,64,3215,1 +10655,454080,2,137,1 +10656,454092,103,5184,1 +10657,454116,113,5664,1 +10658,454129,84,4238,1 +10659,454152,195,9765,1 +10660,454200,77,3858,1 +10661,454200,192,9631,1 +10662,454284,76,3835,1 +10663,454590,96,4829,1 +10664,454617,14,737,1 +10665,455082,173,8700,1 +10666,455528,57,2860,1 +10667,455532,17,858,1 +10668,455557,178,8906,1 +10669,455568,140,7020,1 +10670,455568,9,459,1 +10671,455601,121,6054,1 +10672,455630,187,9378,1 +10673,455631,3,200,1 +10674,456000,173,8697,1 +10675,456000,190,9518,1 +10676,456000,88,4404,1 +10677,456000,94,4723,1 +10678,456001,73,3681,1 +10679,456009,84,4229,1 +10680,456012,57,2881,1 +10681,456012,96,4822,1 +10682,456012,26,1329,1 +10683,456013,8,431,1 +10684,456015,49,2452,1 +10685,456022,1,68,1 +10686,456024,14,739,1 +10687,456025,1,66,1 +10688,456030,113,5699,1 +10689,456030,181,9082,1 +10690,456030,162,8112,1 +10691,456036,128,6407,1 +10692,456036,64,3210,1 +10693,456036,117,5880,1 +10694,456039,184,9234,1 +10695,456060,184,9212,1 +10696,456072,62,3129,1 +10697,456073,95,4759,1 +10698,456085,161,8052,1 +10699,456085,134,6715,1 +10700,456096,192,9607,1 +10701,456109,92,4602,1 +10702,456120,16,831,1 +10703,456132,126,6309,1 +10704,456144,101,5055,1 +10705,456252,193,9669,1 +10706,456493,181,9074,1 +10707,456516,57,2896,1 +10708,456552,86,4320,1 +10709,457440,82,4125,1 +10710,457440,51,2568,1 +10711,457441,138,6949,1 +10712,457452,31,1557,1 +10713,457452,151,7583,1 +10714,457452,91,4576,1 +10715,457452,154,7730,1 +10716,457464,74,3744,1 +10717,457502,175,8782,1 +10718,457524,99,4954,1 +10719,457524,125,6273,1 +10720,457563,58,2911,1 +10721,457920,34,1710,1 +10722,457920,112,5636,1 +10723,457932,122,6117,1 +10724,457932,86,4337,1 +10725,457932,27,1390,1 +10726,457956,144,7233,1 +10727,457967,111,5577,1 +10728,457980,141,7097,1 +10729,457992,141,7074,1 +10730,457992,121,6058,1 +10731,457993,123,6180,1 +10732,458011,15,778,1 +10733,458040,165,8290,1 +10734,458402,198,9931,1 +10735,458412,127,6399,1 +10736,458444,114,5733,1 +10737,458473,63,3156,1 +10738,458496,128,6429,1 +10739,458544,99,4989,1 +10740,458545,23,1194,1 +10741,458884,56,2850,1 +10742,458885,126,6316,1 +10743,458892,97,4896,1 +10744,458916,113,5699,1 +10745,458925,31,1554,1 +10746,458940,79,3995,1 +10747,458943,68,3435,1 +10748,458976,79,3964,1 +10749,458976,54,2701,1 +10750,458988,176,8811,1 +10751,459361,140,7037,1 +10752,459372,170,8542,1 +10753,459372,58,2923,1 +10754,459379,49,2460,1 +10755,459389,65,3257,1 +10756,459393,119,6000,1 +10757,459396,178,8929,1 +10758,459399,152,7626,1 +10759,459401,76,3813,1 +10760,459405,183,9195,1 +10761,459408,106,5333,1 +10762,459426,34,1706,1 +10763,459444,56,2804,1 +10764,459456,161,8080,1 +10765,459468,83,4158,1 +10766,459483,32,1621,1 +10767,459558,152,7629,1 +10768,459840,134,6733,1 +10769,459840,6,334,1 +10770,459844,180,9002,1 +10771,459848,117,5899,1 +10772,459850,172,8631,1 +10773,459852,121,6072,1 +10774,459852,63,3182,1 +10775,459864,74,3717,1 +10776,459864,131,6584,1 +10777,459864,25,1292,1 +10778,459865,164,8212,1 +10779,459870,186,9302,1 +10780,459871,175,8797,1 +10781,459873,193,9683,1 +10782,459877,58,2940,1 +10783,459877,80,4027,1 +10784,459885,6,321,1 +10785,459888,41,2054,1 +10786,459890,139,6999,1 +10787,459892,112,5625,1 +10788,459894,117,5892,1 +10789,459902,78,3913,1 +10790,459907,84,4247,1 +10791,459913,84,4215,1 +10792,459914,36,1813,1 +10793,459925,25,1268,1 +10794,459928,128,6417,1 +10795,459950,95,4768,1 +10796,459991,89,4482,1 +10797,459994,192,9617,1 +10798,460008,160,8019,1 +10799,460336,146,7333,1 +10800,460368,46,2319,1 +10801,460381,16,846,1 +10802,460806,185,9293,1 +10803,461401,41,2089,1 +10804,461786,96,4827,1 +10805,461798,82,4121,1 +10806,461799,194,9720,1 +10807,461808,89,4497,1 +10808,461904,148,7436,1 +10809,462720,158,7935,1 +10810,462720,123,6174,1 +10811,462721,24,1242,1 +10812,462723,17,855,1 +10813,462726,58,2907,1 +10814,462733,101,5099,1 +10815,462735,40,2040,1 +10816,462735,43,2155,1 +10817,462742,58,2932,1 +10818,462744,110,5508,1 +10819,462744,168,8440,1 +10820,462756,21,1092,1 +10821,462757,81,4075,1 +10822,462770,16,802,1 +10823,462771,39,1978,1 +10824,462780,113,5695,1 +10825,462781,102,5129,1 +10826,462786,111,5598,1 +10827,462840,106,5347,1 +10828,462901,113,5659,1 +10829,463200,49,2454,1 +10830,463200,181,9086,1 +10831,463200,85,4300,1 +10832,463212,42,2139,1 +10833,463212,185,9295,1 +10834,463224,150,7522,1 +10835,463224,198,9929,1 +10836,463231,33,1667,1 +10837,463240,32,1636,1 +10838,463248,76,3825,1 +10839,463258,125,6253,1 +10840,463260,172,8648,1 +10841,463266,134,6712,1 +10842,463269,109,5479,1 +10843,463272,122,6107,1 +10844,463293,169,8487,1 +10845,463299,151,7585,1 +10846,463368,31,1587,1 +10847,463426,126,6342,1 +10848,463680,105,5276,1 +10849,463693,129,6459,1 +10850,463872,14,738,1 +10851,463891,65,3274,1 +10852,464643,175,8769,1 +10853,464669,13,678,1 +10854,464670,162,8146,1 +10855,464673,68,3450,1 +10856,464703,66,3312,1 +10857,465120,51,2573,1 +10858,465132,2,149,1 +10859,465201,21,1089,1 +10860,465204,133,6700,1 +10861,465264,98,4906,1 +10862,465288,160,8021,1 +10863,465600,7,386,1 +10864,465612,14,718,1 +10865,465636,65,3277,1 +10866,465672,9,451,1 +10867,465684,105,5292,1 +10868,465733,185,9288,1 +10869,465756,93,4659,1 +10870,466080,178,8923,1 +10871,466092,176,8844,1 +10872,466093,51,2569,1 +10873,466098,196,9811,1 +10874,466113,118,5948,1 +10875,466128,65,3292,1 +10876,466560,149,7480,1 +10877,466591,70,3505,1 +10878,466608,91,4552,1 +10879,466608,119,5952,1 +10880,467041,31,1588,1 +10881,467042,131,6559,1 +10882,467043,152,7603,1 +10883,467047,177,8889,1 +10884,467053,41,2078,1 +10885,467054,33,1677,1 +10886,467055,76,3813,1 +10887,467058,197,9869,1 +10888,467064,75,3799,1 +10889,467065,184,9230,1 +10890,467076,96,4811,1 +10891,467088,55,2759,1 +10892,467088,98,4907,1 +10893,467100,127,6393,1 +10894,467100,137,6862,1 +10895,467105,46,2326,1 +10896,467546,194,9728,1 +10897,467568,42,2115,1 +10898,467568,56,2823,1 +10899,467582,133,6664,1 +10900,468000,193,9659,1 +10901,468000,22,1143,1 +10902,468003,99,4988,1 +10903,468003,61,3088,1 +10904,468009,28,1401,1 +10905,468012,15,783,1 +10906,468012,127,6377,1 +10907,468012,155,7784,1 +10908,468013,102,5150,1 +10909,468014,126,6349,1 +10910,468024,155,7770,1 +10911,468024,182,9148,1 +10912,468030,117,5875,1 +10913,468036,106,5324,1 +10914,468037,137,6867,1 +10915,468039,165,8285,1 +10916,468051,123,6173,1 +10917,468057,92,4605,1 +10918,468060,186,9314,1 +10919,468060,22,1142,1 +10920,468060,134,6717,1 +10921,468084,120,6021,1 +10922,468085,128,6411,1 +10923,468108,23,1171,1 +10924,468145,68,3414,1 +10925,468153,61,3100,1 +10926,468480,69,3472,1 +10927,468480,109,5496,1 +10928,468480,7,388,1 +10929,468492,160,8006,1 +10930,468492,197,9889,1 +10931,468493,30,1530,1 +10932,468496,56,2850,1 +10933,468505,176,8805,1 +10934,468518,184,9213,1 +10935,468523,12,620,1 +10936,468528,128,6431,1 +10937,468544,165,8292,1 +10938,468545,189,9500,1 +10939,468552,11,584,1 +10940,468557,107,5387,1 +10941,468612,144,7231,1 +10942,468612,103,5186,1 +10943,468636,177,8876,1 +10944,468960,88,4446,1 +10945,468963,95,4780,1 +10946,468965,65,3266,1 +10947,468966,1,67,1 +10948,468967,104,5209,1 +10949,468972,74,3716,1 +10950,468984,158,7919,1 +10951,468984,71,3574,1 +10952,468990,107,5358,1 +10953,468997,65,3272,1 +10954,468997,13,671,1 +10955,469009,13,690,1 +10956,469020,119,5956,1 +10957,469069,185,9266,1 +10958,469104,80,4010,1 +10959,469129,29,1468,1 +10960,469453,122,6141,1 +10961,469545,79,3990,1 +10962,469920,170,8537,1 +10963,469921,112,5641,1 +10964,469922,19,959,1 +10965,469942,141,7074,1 +10966,469945,166,8339,1 +10967,469956,184,9224,1 +10968,470005,10,519,1 +10969,470019,21,1062,1 +10970,470019,117,5881,1 +10971,470400,37,1896,1 +10972,470916,22,1140,1 +10973,470942,114,5705,1 +10974,471000,150,7513,1 +10975,471433,179,8981,1 +10976,471457,189,9478,1 +10977,472320,196,9839,1 +10978,472320,193,9689,1 +10979,472320,7,375,1 +10980,472320,111,5571,1 +10981,472320,199,9981,1 +10982,472321,4,231,1 +10983,472326,194,9712,1 +10984,472332,161,8074,1 +10985,472333,143,7171,1 +10986,472335,164,8228,1 +10987,472350,178,8912,1 +10988,472353,72,3650,1 +10989,472356,139,6954,1 +10990,472356,167,8362,1 +10991,472369,81,4074,1 +10992,472377,117,5873,1 +10993,472380,130,6545,1 +10994,472380,86,4316,1 +10995,472382,40,2016,1 +10996,472383,158,7948,1 +10997,472392,31,1557,1 +10998,472393,100,5017,1 +10999,472395,167,8374,1 +11000,472416,151,7562,1 +11001,472434,27,1384,1 +11002,472440,24,1221,1 +11003,472536,89,4494,1 +11004,472800,132,6604,1 +11005,472800,48,2442,1 +11006,472800,177,8885,1 +11007,472800,131,6588,1 +11008,472800,130,6508,1 +11009,472800,152,7625,1 +11010,472801,21,1053,1 +11011,472801,33,1660,1 +11012,472801,12,608,1 +11013,472801,130,6538,1 +11014,472801,114,5704,1 +11015,472802,108,5417,1 +11016,472803,136,6826,1 +11017,472806,70,3542,1 +11018,472809,32,1650,1 +11019,472809,104,5224,1 +11020,472809,187,9390,1 +11021,472812,14,710,1 +11022,472812,73,3661,1 +11023,472812,28,1437,1 +11024,472812,110,5516,1 +11025,472812,4,220,1 +11026,472812,105,5257,1 +11027,472812,105,5274,1 +11028,472812,7,361,1 +11029,472813,118,5904,1 +11030,472813,158,7933,1 +11031,472814,168,8410,1 +11032,472815,20,1050,1 +11033,472816,163,8151,1 +11034,472821,87,4377,1 +11035,472824,92,4646,1 +11036,472824,106,5335,1 +11037,472824,23,1163,1 +11038,472825,119,5983,1 +11039,472825,53,2654,1 +11040,472825,42,2148,1 +11041,472826,157,7854,1 +11042,472826,194,9705,1 +11043,472827,177,8887,1 +11044,472828,193,9687,1 +11045,472828,161,8082,1 +11046,472833,16,834,1 +11047,472836,13,683,1 +11048,472836,23,1195,1 +11049,472836,130,6527,1 +11050,472836,138,6946,1 +11051,472837,111,5559,1 +11052,472839,37,1899,1 +11053,472839,15,788,1 +11054,472843,105,5293,1 +11055,472846,182,9111,1 +11056,472848,128,6403,1 +11057,472848,166,8313,1 +11058,472848,120,6036,1 +11059,472849,81,4091,1 +11060,472851,142,7113,1 +11061,472852,67,3375,1 +11062,472857,148,7426,1 +11063,472860,88,4405,1 +11064,472861,72,3643,1 +11065,472863,85,4292,1 +11066,472866,69,3479,1 +11067,472872,161,8053,1 +11068,472873,128,6402,1 +11069,472873,75,3773,1 +11070,472879,158,7921,1 +11071,472881,124,6249,1 +11072,472884,18,922,1 +11073,472884,53,2690,1 +11074,472884,113,5695,1 +11075,472885,53,2655,1 +11076,472885,109,5498,1 +11077,472886,98,4948,1 +11078,472887,76,3826,1 +11079,472887,157,7900,1 +11080,472890,179,8999,1 +11081,472899,190,9514,1 +11082,472908,93,4695,1 +11083,472910,112,5647,1 +11084,472914,97,4899,1 +11085,472926,16,840,1 +11086,472933,165,8275,1 +11087,472944,35,1762,1 +11088,472962,168,8438,1 +11089,472969,88,4428,1 +11090,472980,62,3138,1 +11091,472983,90,4518,1 +11092,472994,99,4984,1 +11093,472998,90,4510,1 +11094,473121,148,7428,1 +11095,473280,65,3254,1 +11096,473280,109,5500,1 +11097,473280,147,7354,1 +11098,473280,182,9145,1 +11099,473283,115,5768,1 +11100,473296,179,8961,1 +11101,473304,34,1724,1 +11102,473306,88,4417,1 +11103,473310,86,4331,1 +11104,473325,77,3887,1 +11105,473340,190,9550,1 +11106,473343,53,2654,1 +11107,473353,50,2545,1 +11108,473356,116,5803,1 +11109,473377,192,9647,1 +11110,473412,141,7056,1 +11111,473426,123,6193,1 +11112,473760,109,5492,1 +11113,473760,136,6849,1 +11114,473762,189,9492,1 +11115,473769,155,7789,1 +11116,473775,166,8342,1 +11117,473775,112,5603,1 +11118,473779,199,9965,1 +11119,473785,190,9502,1 +11120,473788,131,6568,1 +11121,473796,137,6899,1 +11122,473797,43,2166,1 +11123,473810,147,7391,1 +11124,473832,50,2501,1 +11125,473851,151,7596,1 +11126,473862,151,7558,1 +11127,473865,29,1485,1 +11128,473869,107,5375,1 +11129,473919,178,8919,1 +11130,474240,81,4065,1 +11131,474243,1,60,1 +11132,474245,29,1472,1 +11133,474246,126,6305,1 +11134,474250,104,5247,1 +11135,474252,112,5632,1 +11136,474263,94,4715,1 +11137,474264,66,3302,1 +11138,474264,168,8443,1 +11139,474312,1,56,1 +11140,474330,117,5884,1 +11141,474396,18,935,1 +11142,474744,46,2302,1 +11143,474778,145,7277,1 +11144,474803,100,5043,1 +11145,474806,89,4457,1 +11146,474861,119,5976,1 +11147,474865,152,7604,1 +11148,475200,10,550,1 +11149,475208,102,5150,1 +11150,475212,98,4931,1 +11151,475260,29,1489,1 +11152,475296,197,9861,1 +11153,475680,98,4937,1 +11154,475681,115,5782,1 +11155,475704,63,3195,1 +11156,475706,196,9824,1 +11157,475716,105,5251,1 +11158,475716,41,2087,1 +11159,475723,106,5328,1 +11160,475737,164,8242,1 +11161,475743,144,7220,1 +11162,475765,193,9675,1 +11163,475812,123,6180,1 +11164,475825,53,2684,1 +11165,475851,198,9949,1 +11166,475882,25,1287,1 +11167,476160,74,3701,1 +11168,476161,54,2739,1 +11169,476172,23,1183,1 +11170,476194,139,6994,1 +11171,476196,94,4748,1 +11172,476196,55,2755,1 +11173,476199,162,8111,1 +11174,476208,190,9518,1 +11175,476221,153,7685,1 +11176,476244,85,4259,1 +11177,476262,192,9615,1 +11178,476328,57,2883,1 +11179,476653,181,9069,1 +11180,477120,35,1779,1 +11181,477122,98,4918,1 +11182,477135,107,5390,1 +11183,477213,178,8925,1 +11184,477222,154,7707,1 +11185,477290,116,5844,1 +11186,477600,58,2937,1 +11187,477600,174,8718,1 +11188,477601,102,5136,1 +11189,477601,7,377,1 +11190,477603,125,6295,1 +11191,477606,76,3839,1 +11192,477612,92,4649,1 +11193,477615,119,5983,1 +11194,477624,85,4274,1 +11195,477625,11,553,1 +11196,477630,104,5207,1 +11197,477648,182,9120,1 +11198,477649,75,3797,1 +11199,477651,60,3036,1 +11200,477660,155,7774,1 +11201,477660,50,2527,1 +11202,477661,0,46,1 +11203,477661,97,4887,1 +11204,477672,90,4538,1 +11205,477672,17,889,1 +11206,477675,80,4027,1 +11207,477679,185,9264,1 +11208,477681,177,8896,1 +11209,477685,188,9445,1 +11210,477687,5,278,1 +11211,477697,2,143,1 +11212,477708,96,4836,1 +11213,477709,116,5838,1 +11214,477720,75,3760,1 +11215,477721,133,6663,1 +11216,477732,96,4811,1 +11217,477762,45,2271,1 +11218,477786,95,4753,1 +11219,478080,192,9603,1 +11220,478094,61,3083,1 +11221,478104,134,6727,1 +11222,478117,168,8439,1 +11223,478125,76,3837,1 +11224,478128,106,5301,1 +11225,478128,129,6486,1 +11226,478131,74,3748,1 +11227,478140,37,1895,1 +11228,478140,121,6100,1 +11229,478141,182,9146,1 +11230,478152,54,2726,1 +11231,478177,194,9723,1 +11232,478188,101,5061,1 +11233,478189,8,441,1 +11234,478560,64,3221,1 +11235,478562,105,5258,1 +11236,478563,90,4532,1 +11237,478572,50,2515,1 +11238,478579,140,7048,1 +11239,478581,185,9290,1 +11240,478601,176,8830,1 +11241,479040,147,7366,1 +11242,479184,2,145,1 +11243,479520,93,4652,1 +11244,479589,26,1337,1 +11245,480033,119,5991,1 +11246,480093,3,183,1 +11247,480186,157,7880,1 +11248,480264,118,5947,1 +11249,480480,103,5168,1 +11250,480481,55,2798,1 +11251,480504,148,7413,1 +11252,480528,98,4912,1 +11253,480540,127,6369,1 +11254,480598,66,3330,1 +11255,480670,127,6383,1 +11256,480960,116,5817,1 +11257,480984,162,8133,1 +11258,480984,153,7698,1 +11259,481009,78,3940,1 +11260,481032,84,4245,1 +11261,481071,73,3679,1 +11262,481116,21,1066,1 +11263,481440,86,4310,1 +11264,481452,87,4352,1 +11265,481453,148,7450,1 +11266,481453,88,4437,1 +11267,481453,1,56,1 +11268,481461,55,2754,1 +11269,481470,16,827,1 +11270,481475,183,9154,1 +11271,481476,189,9495,1 +11272,481487,44,2207,1 +11273,481503,96,4814,1 +11274,481513,71,3557,1 +11275,481515,100,5036,1 +11276,481523,80,4030,1 +11277,481532,65,3293,1 +11278,481549,95,4774,1 +11279,481572,8,409,1 +11280,481573,199,9988,1 +11281,481575,59,2997,1 +11282,481600,90,4525,1 +11283,481668,127,6392,1 +11284,481959,133,6677,1 +11285,481992,91,4568,1 +11286,482464,181,9069,1 +11287,482905,74,3737,1 +11288,483843,122,6132,1 +11289,483843,50,2534,1 +11290,483843,84,4246,1 +11291,483852,76,3847,1 +11292,483864,4,231,1 +11293,483873,10,527,1 +11294,483875,72,3635,1 +11295,483877,4,228,1 +11296,483885,139,6970,1 +11297,483888,32,1605,1 +11298,483888,122,6102,1 +11299,483900,94,4710,1 +11300,483937,167,8381,1 +11301,484334,67,3390,1 +11302,484460,148,7430,1 +11303,484812,7,388,1 +11304,484908,100,5044,1 +11305,484910,191,9552,1 +11306,485832,136,6806,1 +11307,485898,168,8422,1 +11308,486240,163,8157,1 +11309,486243,116,5806,1 +11310,486289,82,4133,1 +11311,486392,159,7974,1 +11312,486720,130,6539,1 +11313,486720,106,5324,1 +11314,486720,175,8758,1 +11315,486720,28,1443,1 +11316,486720,52,2605,1 +11317,486720,22,1119,1 +11318,486720,156,7822,1 +11319,486720,56,2801,1 +11320,486720,8,414,1 +11321,486720,56,2828,1 +11322,486720,38,1919,1 +11323,486720,185,9254,1 +11324,486720,59,2954,1 +11325,486720,198,9920,1 +11326,486720,96,4839,1 +11327,486720,1,58,1 +11328,486720,110,5548,1 +11329,486720,149,7491,1 +11330,486720,177,8868,1 +11331,486720,194,9740,1 +11332,486721,171,8562,1 +11333,486721,57,2873,1 +11334,486721,180,9032,1 +11335,486722,82,4149,1 +11336,486722,174,8706,1 +11337,486722,89,4499,1 +11338,486723,187,9367,1 +11339,486723,186,9319,1 +11340,486724,135,6780,1 +11341,486728,24,1209,1 +11342,486729,153,7676,1 +11343,486730,48,2412,1 +11344,486732,5,262,1 +11345,486732,89,4483,1 +11346,486732,87,4354,1 +11347,486732,159,7958,1 +11348,486732,103,5163,1 +11349,486732,145,7256,1 +11350,486732,105,5260,1 +11351,486732,58,2946,1 +11352,486732,151,7581,1 +11353,486732,78,3928,1 +11354,486732,95,4778,1 +11355,486733,117,5863,1 +11356,486733,54,2719,1 +11357,486733,128,6428,1 +11358,486733,5,269,1 +11359,486733,186,9345,1 +11360,486733,68,3439,1 +11361,486733,156,7825,1 +11362,486733,84,4225,1 +11363,486734,72,3618,1 +11364,486735,162,8116,1 +11365,486736,46,2321,1 +11366,486738,74,3704,1 +11367,486742,7,379,1 +11368,486742,9,482,1 +11369,486742,176,8816,1 +11370,486744,125,6277,1 +11371,486744,87,4368,1 +11372,486744,97,4895,1 +11373,486744,59,2960,1 +11374,486744,74,3737,1 +11375,486744,108,5414,1 +11376,486744,162,8127,1 +11377,486744,136,6834,1 +11378,486744,75,3767,1 +11379,486744,184,9222,1 +11380,486745,175,8785,1 +11381,486745,15,757,1 +11382,486745,111,5576,1 +11383,486745,105,5277,1 +11384,486746,14,736,1 +11385,486750,48,2436,1 +11386,486756,197,9899,1 +11387,486756,178,8941,1 +11388,486756,180,9040,1 +11389,486756,75,3774,1 +11390,486756,74,3704,1 +11391,486757,68,3445,1 +11392,486759,26,1344,1 +11393,486762,119,5999,1 +11394,486765,196,9836,1 +11395,486765,61,3072,1 +11396,486766,106,5309,1 +11397,486768,53,2667,1 +11398,486768,138,6910,1 +11399,486768,79,3963,1 +11400,486768,83,4178,1 +11401,486768,186,9312,1 +11402,486768,33,1679,1 +11403,486769,125,6298,1 +11404,486769,99,4999,1 +11405,486770,122,6116,1 +11406,486770,159,7962,1 +11407,486771,191,9580,1 +11408,486777,53,2698,1 +11409,486777,185,9290,1 +11410,486778,121,6060,1 +11411,486780,127,6385,1 +11412,486780,30,1517,1 +11413,486780,67,3360,1 +11414,486780,74,3720,1 +11415,486780,149,7452,1 +11416,486780,60,3015,1 +11417,486780,86,4317,1 +11418,486781,46,2324,1 +11419,486782,84,4236,1 +11420,486782,48,2445,1 +11421,486783,134,6713,1 +11422,486783,14,733,1 +11423,486786,40,2038,1 +11424,486790,65,3275,1 +11425,486792,101,5096,1 +11426,486792,18,948,1 +11427,486792,19,998,1 +11428,486792,120,6036,1 +11429,486792,177,8855,1 +11430,486792,156,7833,1 +11431,486792,28,1444,1 +11432,486792,56,2810,1 +11433,486793,119,5970,1 +11434,486793,130,6529,1 +11435,486794,40,2043,1 +11436,486795,25,1285,1 +11437,486798,195,9751,1 +11438,486801,162,8130,1 +11439,486801,114,5703,1 +11440,486804,88,4422,1 +11441,486804,17,891,1 +11442,486804,4,209,1 +11443,486804,63,3165,1 +11444,486805,87,4369,1 +11445,486805,136,6833,1 +11446,486807,158,7914,1 +11447,486811,28,1402,1 +11448,486816,160,8034,1 +11449,486817,125,6279,1 +11450,486817,173,8664,1 +11451,486817,31,1561,1 +11452,486820,185,9267,1 +11453,486828,153,7658,1 +11454,486828,35,1762,1 +11455,486828,5,298,1 +11456,486828,131,6593,1 +11457,486828,127,6383,1 +11458,486829,123,6151,1 +11459,486829,108,5432,1 +11460,486832,60,3049,1 +11461,486832,36,1805,1 +11462,486834,115,5787,1 +11463,486835,70,3508,1 +11464,486837,33,1662,1 +11465,486840,92,4607,1 +11466,486840,102,5144,1 +11467,486842,183,9168,1 +11468,486845,27,1385,1 +11469,486846,189,9475,1 +11470,486852,12,616,1 +11471,486852,58,2910,1 +11472,486852,62,3103,1 +11473,486852,42,2134,1 +11474,486854,117,5852,1 +11475,486864,115,5794,1 +11476,486865,190,9522,1 +11477,486866,18,931,1 +11478,486876,117,5878,1 +11479,486878,102,5150,1 +11480,486882,161,8067,1 +11481,486886,193,9688,1 +11482,486897,22,1141,1 +11483,486900,46,2344,1 +11484,486900,28,1411,1 +11485,486904,31,1580,1 +11486,486905,135,6783,1 +11487,486912,129,6471,1 +11488,486931,106,5317,1 +11489,487032,123,6176,1 +11490,487035,41,2051,1 +11491,487200,95,4755,1 +11492,487202,135,6784,1 +11493,487206,92,4621,1 +11494,487209,114,5710,1 +11495,487212,56,2824,1 +11496,487213,78,3909,1 +11497,487214,179,8973,1 +11498,487218,65,3273,1 +11499,487225,69,3490,1 +11500,487236,132,6601,1 +11501,487240,102,5139,1 +11502,487249,107,5367,1 +11503,487260,166,8335,1 +11504,487265,39,1968,1 +11505,487271,23,1163,1 +11506,487282,14,703,1 +11507,487284,36,1810,1 +11508,487303,102,5147,1 +11509,487404,138,6940,1 +11510,487680,24,1238,1 +11511,487681,142,7110,1 +11512,487692,182,9142,1 +11513,487698,7,400,1 +11514,487728,122,6128,1 +11515,487735,113,5695,1 +11516,488160,104,5203,1 +11517,488173,43,2159,1 +11518,488184,92,4607,1 +11519,488185,2,130,1 +11520,488185,141,7089,1 +11521,488197,166,8312,1 +11522,488220,25,1276,1 +11523,488221,15,767,1 +11524,488232,145,7291,1 +11525,488282,77,3884,1 +11526,488364,128,6425,1 +11527,488640,58,2934,1 +11528,488640,108,5421,1 +11529,488641,125,6270,1 +11530,488643,64,3234,1 +11531,488646,115,5792,1 +11532,488647,143,7174,1 +11533,488647,186,9343,1 +11534,488666,152,7608,1 +11535,488668,118,5901,1 +11536,488692,171,8553,1 +11537,488694,9,469,1 +11538,488700,98,4943,1 +11539,488701,123,6174,1 +11540,488701,46,2349,1 +11541,488712,38,1940,1 +11542,488724,104,5246,1 +11543,488724,1,79,1 +11544,488736,130,6547,1 +11545,488748,59,2994,1 +11546,488764,122,6108,1 +11547,488770,48,2405,1 +11548,488808,159,7988,1 +11549,488808,130,6534,1 +11550,488809,76,3816,1 +11551,488856,132,6649,1 +11552,489120,160,8042,1 +11553,489120,151,7556,1 +11554,489154,137,6858,1 +11555,489162,14,739,1 +11556,489207,28,1437,1 +11557,489369,192,9618,1 +11558,489409,196,9836,1 +11559,489600,150,7503,1 +11560,489600,107,5383,1 +11561,489600,5,297,1 +11562,489602,190,9508,1 +11563,489603,172,8641,1 +11564,489604,126,6311,1 +11565,489604,142,7101,1 +11566,489607,39,1989,1 +11567,489609,13,664,1 +11568,489611,81,4060,1 +11569,489612,47,2364,1 +11570,489612,76,3809,1 +11571,489612,192,9629,1 +11572,489612,76,3809,1 +11573,489612,102,5140,1 +11574,489612,117,5874,1 +11575,489612,84,4205,1 +11576,489613,94,4728,1 +11577,489614,159,7981,1 +11578,489614,6,344,1 +11579,489614,107,5381,1 +11580,489615,107,5396,1 +11581,489615,50,2547,1 +11582,489615,163,8195,1 +11583,489615,23,1180,1 +11584,489618,106,5342,1 +11585,489618,36,1801,1 +11586,489621,54,2722,1 +11587,489624,196,9810,1 +11588,489624,53,2688,1 +11589,489624,141,7069,1 +11590,489624,74,3712,1 +11591,489624,109,5452,1 +11592,489625,73,3670,1 +11593,489626,65,3288,1 +11594,489627,104,5227,1 +11595,489634,188,9414,1 +11596,489636,172,8645,1 +11597,489636,61,3063,1 +11598,489636,142,7107,1 +11599,489636,161,8082,1 +11600,489641,104,5238,1 +11601,489642,75,3775,1 +11602,489643,67,3355,1 +11603,489643,73,3682,1 +11604,489648,5,269,1 +11605,489648,155,7764,1 +11606,489648,55,2787,1 +11607,489649,91,4599,1 +11608,489658,85,4296,1 +11609,489660,176,8837,1 +11610,489660,175,8791,1 +11611,489660,149,7498,1 +11612,489660,27,1363,1 +11613,489660,165,8300,1 +11614,489660,199,9954,1 +11615,489660,114,5733,1 +11616,489660,97,4890,1 +11617,489661,100,5036,1 +11618,489661,41,2088,1 +11619,489663,134,6719,1 +11620,489666,184,9210,1 +11621,489666,193,9687,1 +11622,489669,31,1559,1 +11623,489672,116,5827,1 +11624,489672,42,2135,1 +11625,489672,74,3710,1 +11626,489673,61,3095,1 +11627,489674,193,9670,1 +11628,489675,60,3025,1 +11629,489675,48,2414,1 +11630,489678,103,5177,1 +11631,489678,17,895,1 +11632,489684,185,9296,1 +11633,489685,66,3349,1 +11634,489688,189,9486,1 +11635,489696,76,3804,1 +11636,489696,136,6815,1 +11637,489697,185,9262,1 +11638,489699,3,198,1 +11639,489705,177,8867,1 +11640,489709,30,1521,1 +11641,489711,51,2559,1 +11642,489714,196,9805,1 +11643,489717,24,1218,1 +11644,489723,165,8297,1 +11645,489723,33,1686,1 +11646,489733,51,2568,1 +11647,489738,141,7056,1 +11648,489744,11,592,1 +11649,489746,41,2100,1 +11650,489747,178,8917,1 +11651,489765,18,927,1 +11652,489768,115,5798,1 +11653,489771,167,8370,1 +11654,489781,189,9493,1 +11655,489792,19,967,1 +11656,489804,52,2603,1 +11657,489815,138,6915,1 +11658,489924,108,5416,1 +11659,489948,121,6073,1 +11660,490560,130,6508,1 +11661,490560,176,8828,1 +11662,490560,152,7636,1 +11663,490569,86,4345,1 +11664,490572,94,4708,1 +11665,490572,42,2121,1 +11666,490572,175,8784,1 +11667,490572,24,1243,1 +11668,490573,83,4153,1 +11669,490584,127,6351,1 +11670,490588,26,1319,1 +11671,490593,47,2385,1 +11672,490596,144,7213,1 +11673,490608,63,3151,1 +11674,490609,173,8700,1 +11675,490627,50,2528,1 +11676,490632,87,4360,1 +11677,490633,138,6945,1 +11678,490656,107,5395,1 +11679,490717,63,3167,1 +11680,490767,78,3940,1 +11681,490776,36,1815,1 +11682,491040,23,1176,1 +11683,491056,78,3949,1 +11684,491064,19,984,1 +11685,491341,77,3881,1 +11686,491520,86,4335,1 +11687,491524,135,6752,1 +11688,491526,78,3947,1 +11689,491532,60,3022,1 +11690,491533,16,803,1 +11691,491537,86,4349,1 +11692,491538,87,4362,1 +11693,491568,32,1618,1 +11694,491569,18,907,1 +11695,491580,112,5650,1 +11696,491580,35,1771,1 +11697,491580,161,8056,1 +11698,491628,101,5095,1 +11699,491628,142,7142,1 +11700,491628,190,9526,1 +11701,491634,138,6944,1 +11702,491652,156,7812,1 +11703,491688,152,7641,1 +11704,491736,172,8617,1 +11705,491736,158,7920,1 +11706,492000,68,3446,1 +11707,492000,183,9158,1 +11708,492000,151,7560,1 +11709,492002,32,1621,1 +11710,492004,34,1708,1 +11711,492006,109,5480,1 +11712,492016,173,8692,1 +11713,492024,28,1406,1 +11714,492025,145,7274,1 +11715,492039,99,4998,1 +11716,492072,174,8713,1 +11717,492097,107,5396,1 +11718,492120,198,9945,1 +11719,492169,117,5878,1 +11720,492528,125,6288,1 +11721,492531,50,2519,1 +11722,492624,82,4144,1 +11723,492972,26,1327,1 +11724,492984,3,183,1 +11725,492993,173,8677,1 +11726,493057,176,8831,1 +11727,493110,71,3594,1 +11728,493449,44,2243,1 +11729,493452,104,5239,1 +11730,493477,176,8847,1 +11731,493530,7,396,1 +11732,493585,77,3861,1 +11733,493920,129,6478,1 +11734,493921,187,9389,1 +11735,493921,140,7009,1 +11736,493932,66,3350,1 +11737,493941,190,9538,1 +11738,493944,28,1434,1 +11739,493945,5,294,1 +11740,493947,174,8749,1 +11741,493957,167,8378,1 +11742,493957,169,8497,1 +11743,493968,82,4139,1 +11744,493980,127,6383,1 +11745,493983,108,5450,1 +11746,494001,22,1140,1 +11747,494004,13,664,1 +11748,494019,189,9473,1 +11749,494046,126,6312,1 +11750,494121,60,3025,1 +11751,494124,32,1610,1 +11752,494401,7,400,1 +11753,494424,168,8408,1 +11754,494425,52,2641,1 +11755,494436,5,278,1 +11756,494449,17,887,1 +11757,494496,170,8523,1 +11758,494496,85,4299,1 +11759,494542,33,1663,1 +11760,494880,1,57,1 +11761,494892,102,5128,1 +11762,494904,150,7547,1 +11763,494906,179,8975,1 +11764,494906,118,5950,1 +11765,494907,115,5773,1 +11766,494916,64,3225,1 +11767,494937,182,9148,1 +11768,494940,40,2025,1 +11769,494952,33,1672,1 +11770,494964,68,3425,1 +11771,494964,121,6075,1 +11772,494965,164,8221,1 +11773,494988,123,6161,1 +11774,494988,80,4002,1 +11775,495000,63,3165,1 +11776,495000,67,3355,1 +11777,495012,185,9260,1 +11778,495110,2,125,1 +11779,495384,123,6151,1 +11780,495864,105,5285,1 +11781,495865,4,213,1 +11782,495888,130,6515,1 +11783,495905,101,5051,1 +11784,495969,141,7057,1 +11785,495972,65,3284,1 +11786,496488,98,4945,1 +11787,496800,72,3636,1 +11788,496800,166,8339,1 +11789,496803,169,8490,1 +11790,496803,146,7311,1 +11791,496812,117,5888,1 +11792,496812,47,2375,1 +11793,496812,153,7679,1 +11794,496821,191,9596,1 +11795,496825,195,9774,1 +11796,496828,20,1026,1 +11797,496849,103,5163,1 +11798,496851,8,449,1 +11799,496857,123,6180,1 +11800,496860,170,8522,1 +11801,496860,174,8714,1 +11802,496866,87,4354,1 +11803,496873,176,8804,1 +11804,496878,23,1199,1 +11805,496882,191,9572,1 +11806,496884,184,9216,1 +11807,496908,185,9253,1 +11808,496911,35,1751,1 +11809,496924,132,6628,1 +11810,497292,176,8844,1 +11811,497314,108,5405,1 +11812,497760,84,4227,1 +11813,497762,16,832,1 +11814,497768,94,4741,1 +11815,497772,153,7686,1 +11816,497775,124,6213,1 +11817,497775,177,8887,1 +11818,497784,168,8407,1 +11819,497796,73,3664,1 +11820,497796,142,7123,1 +11821,497805,160,8028,1 +11822,497808,2,135,1 +11823,497953,107,5361,1 +11824,498240,111,5567,1 +11825,498253,5,281,1 +11826,498288,13,684,1 +11827,498300,3,193,1 +11828,498311,174,8706,1 +11829,498312,15,800,1 +11830,498325,184,9232,1 +11831,498348,13,679,1 +11832,498432,90,4516,1 +11833,498720,70,3505,1 +11834,498731,23,1190,1 +11835,498733,20,1036,1 +11836,498738,114,5708,1 +11837,498744,62,3133,1 +11838,498748,96,4818,1 +11839,498753,139,7000,1 +11840,498767,20,1019,1 +11841,498768,76,3846,1 +11842,499204,87,4365,1 +11843,499272,37,1877,1 +11844,499284,146,7318,1 +11845,499694,74,3746,1 +11846,499697,166,8305,1 +11847,499716,83,4187,1 +11848,499791,199,9997,1 +11849,500700,186,9314,1 +11850,501132,2,103,1 +11851,501163,3,171,1 +11852,501170,42,2144,1 +11853,501600,122,6104,1 +11854,501600,76,3826,1 +11855,501601,161,8089,1 +11856,501612,3,151,1 +11857,501618,174,8741,1 +11858,501650,6,305,1 +11859,501663,170,8507,1 +11860,501666,38,1935,1 +11861,501672,71,3583,1 +11862,501720,27,1376,1 +11863,502081,31,1592,1 +11864,502092,48,2444,1 +11865,502104,178,8912,1 +11866,502105,148,7401,1 +11867,502231,13,669,1 +11868,502284,196,9849,1 +11869,502560,67,3391,1 +11870,502561,181,9099,1 +11871,502566,166,8321,1 +11872,502586,47,2381,1 +11873,502609,143,7170,1 +11874,502621,51,2572,1 +11875,502644,13,684,1 +11876,502656,166,8319,1 +11877,502657,7,386,1 +11878,502669,196,9809,1 +11879,502669,163,8181,1 +11880,502722,12,642,1 +11881,502725,61,3055,1 +11882,502789,52,2645,1 +11883,503043,34,1738,1 +11884,503088,149,7452,1 +11885,503556,195,9788,1 +11886,503606,190,9503,1 +11887,504000,93,4658,1 +11888,504002,55,2794,1 +11889,504003,3,163,1 +11890,504003,197,9882,1 +11891,504012,7,355,1 +11892,504012,75,3762,1 +11893,504022,167,8394,1 +11894,504024,82,4149,1 +11895,504024,96,4808,1 +11896,504034,80,4018,1 +11897,504036,98,4945,1 +11898,504037,193,9685,1 +11899,504075,79,3983,1 +11900,504079,119,5972,1 +11901,504120,29,1471,1 +11902,504217,157,7864,1 +11903,504480,53,2682,1 +11904,504481,99,4984,1 +11905,504486,54,2736,1 +11906,504492,35,1796,1 +11907,504499,1,83,1 +11908,504505,22,1141,1 +11909,504516,145,7274,1 +11910,504518,187,9353,1 +11911,504528,153,7680,1 +11912,504529,73,3683,1 +11913,504559,138,6934,1 +11914,504567,39,1992,1 +11915,504582,17,889,1 +11916,504650,113,5684,1 +11917,504962,38,1902,1 +11918,504978,33,1652,1 +11919,505068,58,2913,1 +11920,505501,136,6812,1 +11921,505548,183,9192,1 +11922,505946,7,390,1 +11923,506004,179,8955,1 +11924,506400,20,1003,1 +11925,506400,111,5597,1 +11926,506400,9,488,1 +11927,506400,57,2887,1 +11928,506401,105,5276,1 +11929,506406,46,2348,1 +11930,506409,121,6074,1 +11931,506411,8,421,1 +11932,506412,38,1937,1 +11933,506416,126,6323,1 +11934,506424,179,8985,1 +11935,506425,183,9198,1 +11936,506425,183,9186,1 +11937,506430,181,9082,1 +11938,506437,147,7363,1 +11939,506445,161,8079,1 +11940,506457,46,2341,1 +11941,506460,40,2022,1 +11942,506460,32,1650,1 +11943,506461,189,9487,1 +11944,506472,58,2914,1 +11945,506496,96,4804,1 +11946,506511,137,6863,1 +11947,506532,100,5042,1 +11948,506537,110,5507,1 +11949,506604,188,9431,1 +11950,506698,139,6994,1 +11951,506881,128,6421,1 +11952,506883,128,6441,1 +11953,506889,186,9344,1 +11954,506892,130,6515,1 +11955,506913,89,4467,1 +11956,506929,106,5318,1 +11957,507360,4,246,1 +11958,507361,68,3425,1 +11959,507362,179,8969,1 +11960,507370,108,5421,1 +11961,507372,54,2733,1 +11962,507372,178,8918,1 +11963,507372,58,2917,1 +11964,507373,79,3991,1 +11965,507373,175,8789,1 +11966,507373,1,68,1 +11967,507382,32,1650,1 +11968,507384,188,9412,1 +11969,507385,180,9048,1 +11970,507396,150,7502,1 +11971,507396,91,4560,1 +11972,507408,25,1252,1 +11973,507421,96,4805,1 +11974,507456,43,2196,1 +11975,507456,89,4492,1 +11976,507457,131,6551,1 +11977,507458,37,1890,1 +11978,507477,91,4586,1 +11979,507564,39,1974,1 +11980,507840,199,9993,1 +11981,507840,187,9390,1 +11982,507843,131,6584,1 +11983,507843,109,5492,1 +11984,507850,47,2361,1 +11985,507852,150,7504,1 +11986,507853,136,6845,1 +11987,507853,75,3772,1 +11988,507864,37,1855,1 +11989,507869,191,9551,1 +11990,507876,175,8792,1 +11991,507876,127,6383,1 +11992,507877,155,7763,1 +11993,507878,119,5960,1 +11994,507879,96,4830,1 +11995,507884,89,4493,1 +11996,507888,176,8843,1 +11997,507889,42,2127,1 +11998,507890,196,9822,1 +11999,507894,108,5449,1 +12000,507899,126,6320,1 +12001,507900,89,4488,1 +12002,507901,64,3241,1 +12003,507902,160,8030,1 +12004,507940,93,4660,1 +12005,507957,6,321,1 +12006,508332,121,6074,1 +12007,508335,50,2534,1 +12008,508407,95,4776,1 +12009,508408,2,135,1 +12010,508800,110,5549,1 +12011,508812,103,5192,1 +12012,508827,86,4347,1 +12013,508860,162,8144,1 +12014,508863,141,7096,1 +12015,509280,128,6437,1 +12016,509292,115,5776,1 +12017,509292,168,8444,1 +12018,509296,41,2061,1 +12019,509296,90,4536,1 +12020,509304,88,4427,1 +12021,509304,76,3832,1 +12022,509316,156,7821,1 +12023,509352,126,6302,1 +12024,509362,162,8103,1 +12025,509364,48,2424,1 +12026,509377,69,3466,1 +12027,509389,82,4123,1 +12028,509412,147,7362,1 +12029,509425,152,7628,1 +12030,509433,196,9842,1 +12031,509508,179,8992,1 +12032,509580,138,6906,1 +12033,509772,18,915,1 +12034,509820,60,3019,1 +12035,510240,126,6310,1 +12036,510240,170,8503,1 +12037,510241,120,6037,1 +12038,510249,191,9553,1 +12039,510252,163,8153,1 +12040,510253,62,3107,1 +12041,510264,5,273,1 +12042,510264,194,9722,1 +12043,510267,123,6153,1 +12044,510267,28,1432,1 +12045,510279,130,6531,1 +12046,510289,176,8811,1 +12047,510726,152,7649,1 +12048,510728,144,7222,1 +12049,510735,180,9023,1 +12050,510738,155,7767,1 +12051,510754,53,2683,1 +12052,510808,133,6692,1 +12053,510852,123,6196,1 +12054,511765,27,1355,1 +12055,512161,167,8400,1 +12056,512172,154,7712,1 +12057,512184,28,1426,1 +12058,512187,173,8681,1 +12059,512188,44,2236,1 +12060,512198,139,6990,1 +12061,512208,125,6298,1 +12062,512238,157,7882,1 +12063,512244,199,9952,1 +12064,512265,185,9290,1 +12065,512642,194,9710,1 +12066,512652,183,9158,1 +12067,512652,171,8570,1 +12068,512652,20,1023,1 +12069,512666,133,6656,1 +12070,512685,53,2670,1 +12071,512705,69,3495,1 +12072,512796,163,8167,1 +12073,513132,179,8953,1 +12074,513144,122,6113,1 +12075,513144,26,1349,1 +12076,513168,36,1831,1 +12077,513180,148,7447,1 +12078,513237,188,9440,1 +12079,513297,48,2435,1 +12080,513306,125,6291,1 +12081,513336,161,8099,1 +12082,513607,64,3201,1 +12083,513674,106,5317,1 +12084,513675,163,8164,1 +12085,513692,147,7359,1 +12086,513697,47,2367,1 +12087,514080,52,2609,1 +12088,514080,35,1782,1 +12089,514089,47,2384,1 +12090,514104,173,8651,1 +12091,514105,163,8194,1 +12092,514106,109,5462,1 +12093,514116,76,3824,1 +12094,514116,195,9756,1 +12095,514118,3,153,1 +12096,514123,88,4433,1 +12097,514128,9,497,1 +12098,514168,113,5659,1 +12099,514333,1,78,1 +12100,514560,148,7420,1 +12101,515053,121,6077,1 +12102,515080,33,1688,1 +12103,515145,130,6504,1 +12104,515520,66,3330,1 +12105,515520,61,3076,1 +12106,515520,147,7384,1 +12107,515520,162,8122,1 +12108,515520,133,6689,1 +12109,515520,65,3268,1 +12110,515521,42,2150,1 +12111,515523,40,2043,1 +12112,515523,81,4083,1 +12113,515523,85,4251,1 +12114,515523,32,1610,1 +12115,515524,178,8927,1 +12116,515528,140,7039,1 +12117,515529,46,2338,1 +12118,515531,126,6306,1 +12119,515532,176,8816,1 +12120,515532,34,1711,1 +12121,515532,80,4003,1 +12122,515532,68,3424,1 +12123,515532,118,5944,1 +12124,515533,137,6855,1 +12125,515535,45,2269,1 +12126,515536,163,8170,1 +12127,515539,8,429,1 +12128,515541,189,9482,1 +12129,515544,27,1364,1 +12130,515544,50,2527,1 +12131,515544,21,1082,1 +12132,515544,151,7566,1 +12133,515544,184,9230,1 +12134,515544,108,5447,1 +12135,515545,44,2218,1 +12136,515550,4,217,1 +12137,515553,191,9553,1 +12138,515554,88,4404,1 +12139,515556,58,2911,1 +12140,515556,85,4252,1 +12141,515556,166,8306,1 +12142,515557,171,8597,1 +12143,515557,95,4751,1 +12144,515563,99,4961,1 +12145,515564,182,9122,1 +12146,515568,105,5262,1 +12147,515568,176,8832,1 +12148,515568,130,6506,1 +12149,515569,67,3353,1 +12150,515569,56,2810,1 +12151,515570,113,5676,1 +12152,515570,197,9895,1 +12153,515574,128,6428,1 +12154,515574,3,183,1 +12155,515577,54,2731,1 +12156,515580,2,102,1 +12157,515580,108,5444,1 +12158,515580,38,1912,1 +12159,515580,155,7777,1 +12160,515581,179,8976,1 +12161,515583,147,7370,1 +12162,515584,104,5228,1 +12163,515592,97,4857,1 +12164,515592,184,9244,1 +12165,515592,141,7081,1 +12166,515598,33,1667,1 +12167,515604,1,85,1 +12168,515604,191,9558,1 +12169,515605,98,4915,1 +12170,515606,40,2016,1 +12171,515606,105,5279,1 +12172,515607,134,6706,1 +12173,515613,25,1272,1 +12174,515622,134,6701,1 +12175,515631,168,8425,1 +12176,515633,12,636,1 +12177,515637,137,6882,1 +12178,515640,78,3913,1 +12179,515652,115,5779,1 +12180,515656,59,2966,1 +12181,515688,144,7235,1 +12182,515688,56,2829,1 +12183,515700,28,1415,1 +12184,515703,127,6399,1 +12185,515706,115,5760,1 +12186,515748,103,5192,1 +12187,515882,66,3313,1 +12188,516000,155,7781,1 +12189,516002,19,978,1 +12190,516012,131,6576,1 +12191,516024,58,2941,1 +12192,516030,187,9374,1 +12193,516033,107,5367,1 +12194,516040,188,9441,1 +12195,516048,16,824,1 +12196,516048,19,998,1 +12197,516052,34,1703,1 +12198,516088,32,1621,1 +12199,516183,24,1243,1 +12200,516489,85,4284,1 +12201,516576,125,6274,1 +12202,516984,6,308,1 +12203,516984,167,8354,1 +12204,516999,29,1454,1 +12205,517453,193,9662,1 +12206,517920,113,5666,1 +12207,517920,113,5663,1 +12208,517920,135,6794,1 +12209,517920,69,3491,1 +12210,517920,136,6843,1 +12211,517920,68,3424,1 +12212,517921,26,1342,1 +12213,517921,28,1405,1 +12214,517921,71,3551,1 +12215,517923,167,8356,1 +12216,517926,64,3227,1 +12217,517926,149,7482,1 +12218,517930,73,3664,1 +12219,517932,104,5204,1 +12220,517932,98,4937,1 +12221,517932,90,4517,1 +12222,517932,167,8386,1 +12223,517936,138,6905,1 +12224,517936,175,8782,1 +12225,517938,69,3451,1 +12226,517944,127,6370,1 +12227,517944,61,3068,1 +12228,517944,104,5216,1 +12229,517944,144,7239,1 +12230,517944,16,842,1 +12231,517945,186,9315,1 +12232,517946,133,6688,1 +12233,517950,3,199,1 +12234,517957,151,7558,1 +12235,517966,53,2678,1 +12236,517968,27,1360,1 +12237,517977,47,2379,1 +12238,517977,142,7121,1 +12239,517978,3,177,1 +12240,517980,169,8471,1 +12241,517983,21,1069,1 +12242,517984,160,8048,1 +12243,517987,61,3090,1 +12244,517992,140,7032,1 +12245,518004,47,2364,1 +12246,518032,70,3505,1 +12247,518046,181,9090,1 +12248,518079,115,5796,1 +12249,518400,129,6462,1 +12250,518400,172,8640,1 +12251,518400,106,5336,1 +12252,518400,40,2008,1 +12253,518401,180,9007,1 +12254,518409,98,4912,1 +12255,518412,70,3538,1 +12256,518412,193,9686,1 +12257,518418,154,7731,1 +12258,518424,110,5526,1 +12259,518425,28,1407,1 +12260,518431,5,282,1 +12261,518432,164,8248,1 +12262,518434,129,6470,1 +12263,518438,38,1932,1 +12264,518441,139,6978,1 +12265,518449,68,3409,1 +12266,518456,45,2270,1 +12267,518472,121,6072,1 +12268,518472,179,8958,1 +12269,518479,31,1562,1 +12270,518485,67,3395,1 +12271,518503,96,4819,1 +12272,518509,40,2004,1 +12273,518513,22,1118,1 +12274,518548,128,6444,1 +12275,518556,71,3573,1 +12276,518572,139,6957,1 +12277,518605,2,105,1 +12278,518880,162,8129,1 +12279,518889,140,7044,1 +12280,519396,177,8876,1 +12281,519840,172,8647,1 +12282,519856,24,1202,1 +12283,519865,2,145,1 +12284,519877,99,4967,1 +12285,519888,43,2170,1 +12286,519900,176,8833,1 +12287,519900,110,5511,1 +12288,520332,121,6056,1 +12289,520341,23,1180,1 +12290,520342,70,3542,1 +12291,520381,69,3482,1 +12292,520419,32,1643,1 +12293,520455,85,4256,1 +12294,520512,3,180,1 +12295,520816,107,5382,1 +12296,521289,2,114,1 +12297,521292,64,3213,1 +12298,521296,17,895,1 +12299,521331,33,1684,1 +12300,521364,5,288,1 +12301,521772,193,9670,1 +12302,521796,99,4975,1 +12303,521796,79,3985,1 +12304,522252,96,4830,1 +12305,522276,3,155,1 +12306,522327,193,9692,1 +12307,522720,176,8836,1 +12308,522720,190,9514,1 +12309,522720,140,7035,1 +12310,522720,137,6883,1 +12311,522720,132,6622,1 +12312,522726,91,4600,1 +12313,522727,17,856,1 +12314,522732,188,9431,1 +12315,522732,31,1573,1 +12316,522732,60,3032,1 +12317,522732,7,371,1 +12318,522734,163,8184,1 +12319,522744,121,6071,1 +12320,522745,19,975,1 +12321,522756,117,5872,1 +12322,522759,75,3778,1 +12323,522761,162,8124,1 +12324,522772,33,1663,1 +12325,522793,75,3792,1 +12326,522805,48,2446,1 +12327,522816,115,5753,1 +12328,522817,116,5818,1 +12329,522840,63,3187,1 +12330,522840,132,6644,1 +12331,522840,155,7759,1 +12332,522842,19,966,1 +12333,522944,87,4367,1 +12334,522973,143,7162,1 +12335,523692,1,94,1 +12336,523692,127,6373,1 +12337,523713,75,3761,1 +12338,523716,115,5779,1 +12339,523717,190,9512,1 +12340,523740,22,1144,1 +12341,523752,33,1687,1 +12342,523767,179,8961,1 +12343,523800,103,5167,1 +12344,523826,65,3291,1 +12345,524160,176,8806,1 +12346,524170,183,9165,1 +12347,524245,115,5798,1 +12348,524271,145,7273,1 +12349,524318,179,8996,1 +12350,524664,20,1010,1 +12351,524678,156,7846,1 +12352,524682,0,27,1 +12353,524688,54,2740,1 +12354,524712,107,5398,1 +12355,524730,31,1577,1 +12356,524737,95,4764,1 +12357,524762,0,30,1 +12358,525613,88,4443,1 +12359,525647,78,3919,1 +12360,526080,130,6508,1 +12361,526080,98,4926,1 +12362,526084,134,6748,1 +12363,526105,75,3780,1 +12364,526122,166,8340,1 +12365,526584,194,9703,1 +12366,527052,55,2786,1 +12367,527052,34,1701,1 +12368,527058,151,7593,1 +12369,527068,189,9480,1 +12370,527127,15,771,1 +12371,527152,163,8191,1 +12372,527166,46,2338,1 +12373,527196,77,3899,1 +12374,527529,127,6396,1 +12375,527532,64,3225,1 +12376,527532,35,1761,1 +12377,527569,111,5564,1 +12378,528484,36,1841,1 +12379,528505,124,6228,1 +12380,528531,111,5593,1 +12381,528600,159,7951,1 +12382,528732,43,2185,1 +12383,528963,20,1030,1 +12384,528984,18,925,1 +12385,528996,67,3379,1 +12386,528998,55,2795,1 +12387,529011,87,4399,1 +12388,529057,180,9024,1 +12389,529089,54,2737,1 +12390,529440,173,8677,1 +12391,529441,2,106,1 +12392,529452,166,8343,1 +12393,529500,95,4769,1 +12394,529536,183,9157,1 +12395,529656,72,3643,1 +12396,529926,75,3789,1 +12397,529931,174,8707,1 +12398,529936,51,2562,1 +12399,529947,167,8376,1 +12400,529956,1,63,1 +12401,529956,191,9564,1 +12402,529956,46,2304,1 +12403,529968,3,180,1 +12404,530019,3,160,1 +12405,530031,75,3785,1 +12406,530407,19,987,1 +12407,530556,108,5446,1 +12408,530556,122,6104,1 +12409,530880,85,4251,1 +12410,530881,172,8650,1 +12411,530883,150,7548,1 +12412,530889,168,8417,1 +12413,530892,1,83,1 +12414,530896,77,3896,1 +12415,530898,89,4488,1 +12416,530916,85,4253,1 +12417,530923,138,6939,1 +12418,530943,26,1308,1 +12419,530954,190,9543,1 +12420,530956,153,7687,1 +12421,530967,167,8391,1 +12422,530976,55,2760,1 +12423,530976,148,7407,1 +12424,530978,110,5522,1 +12425,530982,145,7253,1 +12426,530991,88,4416,1 +12427,530997,15,763,1 +12428,531000,164,8242,1 +12429,531000,97,4857,1 +12430,531000,22,1135,1 +12431,531014,174,8706,1 +12432,531363,163,8199,1 +12433,531364,96,4821,1 +12434,531372,75,3755,1 +12435,531372,56,2808,1 +12436,531388,108,5427,1 +12437,531388,71,3598,1 +12438,531429,1,65,1 +12439,531437,6,336,1 +12440,531486,23,1154,1 +12441,531486,55,2767,1 +12442,531672,187,9388,1 +12443,531846,44,2210,1 +12444,531864,95,4761,1 +12445,531885,107,5384,1 +12446,531912,120,6010,1 +12447,532801,122,6130,1 +12448,532801,47,2386,1 +12449,532803,174,8731,1 +12450,532804,189,9481,1 +12451,532811,144,7212,1 +12452,532812,114,5704,1 +12453,532812,155,7757,1 +12454,532813,156,7850,1 +12455,532813,154,7734,1 +12456,532819,126,6311,1 +12457,532821,151,7587,1 +12458,532824,165,8288,1 +12459,532837,8,405,1 +12460,532840,73,3676,1 +12461,532846,81,4064,1 +12462,532860,35,1756,1 +12463,532860,135,6798,1 +12464,532863,126,6343,1 +12465,532866,44,2234,1 +12466,532875,141,7094,1 +12467,532885,182,9127,1 +12468,532895,198,9924,1 +12469,532896,196,9811,1 +12470,532898,91,4572,1 +12471,532932,49,2499,1 +12472,532933,54,2739,1 +12473,532956,177,8877,1 +12474,532969,93,4687,1 +12475,533161,102,5134,1 +12476,533280,28,1444,1 +12477,533280,67,3390,1 +12478,533281,160,8048,1 +12479,533281,62,3140,1 +12480,533285,172,8625,1 +12481,533286,167,8400,1 +12482,533292,116,5850,1 +12483,533292,198,9938,1 +12484,533296,169,8461,1 +12485,533304,95,4755,1 +12486,533304,36,1831,1 +12487,533310,145,7251,1 +12488,533316,72,3610,1 +12489,533319,148,7422,1 +12490,533328,95,4753,1 +12491,533328,134,6733,1 +12492,533331,81,4078,1 +12493,533340,85,4291,1 +12494,533342,87,4365,1 +12495,533345,79,3952,1 +12496,533349,44,2237,1 +12497,533352,82,4136,1 +12498,533388,74,3706,1 +12499,533397,116,5845,1 +12500,533439,83,4171,1 +12501,533760,42,2131,1 +12502,533766,31,1571,1 +12503,533772,29,1473,1 +12504,533772,9,486,1 +12505,533772,70,3523,1 +12506,533772,83,4168,1 +12507,533774,192,9614,1 +12508,533793,163,8183,1 +12509,533820,169,8469,1 +12510,533846,41,2060,1 +12511,533856,119,5966,1 +12512,533902,194,9705,1 +12513,533917,56,2836,1 +12514,533917,124,6237,1 +12515,534033,31,1554,1 +12516,534240,88,4421,1 +12517,534240,77,3858,1 +12518,534240,151,7595,1 +12519,534240,72,3647,1 +12520,534240,1,95,1 +12521,534240,76,3807,1 +12522,534241,178,8909,1 +12523,534241,184,9209,1 +12524,534241,99,4952,1 +12525,534241,65,3259,1 +12526,534249,129,6495,1 +12527,534249,79,3968,1 +12528,534252,157,7895,1 +12529,534252,124,6206,1 +12530,534252,112,5641,1 +12531,534252,92,4637,1 +12532,534252,137,6865,1 +12533,534252,181,9062,1 +12534,534253,177,8856,1 +12535,534253,93,4685,1 +12536,534255,80,4046,1 +12537,534257,166,8319,1 +12538,534258,91,4552,1 +12539,534261,192,9638,1 +12540,534261,30,1534,1 +12541,534261,5,287,1 +12542,534261,48,2425,1 +12543,534262,137,6892,1 +12544,534264,54,2745,1 +12545,534264,18,922,1 +12546,534264,64,3212,1 +12547,534264,77,3865,1 +12548,534264,164,8225,1 +12549,534264,64,3225,1 +12550,534265,184,9212,1 +12551,534265,14,701,1 +12552,534265,69,3483,1 +12553,534265,182,9116,1 +12554,534270,104,5205,1 +12555,534273,51,2557,1 +12556,534276,174,8715,1 +12557,534276,44,2245,1 +12558,534276,72,3620,1 +12559,534279,114,5720,1 +12560,534279,71,3582,1 +12561,534282,132,6642,1 +12562,534285,122,6135,1 +12563,534288,39,1957,1 +12564,534288,64,3222,1 +12565,534288,151,7565,1 +12566,534288,57,2874,1 +12567,534288,25,1298,1 +12568,534288,17,869,1 +12569,534289,68,3409,1 +12570,534289,170,8526,1 +12571,534298,48,2437,1 +12572,534300,71,3600,1 +12573,534301,126,6301,1 +12574,534301,105,5291,1 +12575,534303,146,7310,1 +12576,534306,194,9718,1 +12577,534312,59,2984,1 +12578,534313,123,6168,1 +12579,534313,27,1377,1 +12580,534313,112,5615,1 +12581,534314,67,3399,1 +12582,534324,102,5114,1 +12583,534324,131,6569,1 +12584,534325,81,4051,1 +12585,534326,1,52,1 +12586,534333,15,763,1 +12587,534336,11,599,1 +12588,534339,73,3689,1 +12589,534342,186,9310,1 +12590,534343,34,1740,1 +12591,534348,62,3115,1 +12592,534354,75,3770,1 +12593,534360,119,5956,1 +12594,534360,134,6735,1 +12595,534373,39,1964,1 +12596,534373,127,6393,1 +12597,534384,84,4206,1 +12598,534400,180,9030,1 +12599,534410,86,4348,1 +12600,534423,146,7312,1 +12601,534444,193,9680,1 +12602,534468,22,1140,1 +12603,534505,103,5174,1 +12604,534532,116,5844,1 +12605,534732,114,5740,1 +12606,534756,93,4668,1 +12607,534780,155,7788,1 +12608,534781,182,9113,1 +12609,534793,1,86,1 +12610,534816,3,171,1 +12611,534830,13,700,1 +12612,534840,34,1747,1 +12613,534853,187,9385,1 +12614,534888,199,9959,1 +12615,534916,92,4641,1 +12616,535201,98,4930,1 +12617,535206,89,4494,1 +12618,535237,89,4464,1 +12619,535248,175,8762,1 +12620,535263,119,5988,1 +12621,535278,148,7427,1 +12622,535680,141,7066,1 +12623,535698,173,8684,1 +12624,535710,64,3246,1 +12625,535742,16,836,1 +12626,535742,135,6752,1 +12627,536160,197,9888,1 +12628,536173,54,2748,1 +12629,536184,11,572,1 +12630,536184,40,2040,1 +12631,536184,132,6601,1 +12632,536200,3,162,1 +12633,536497,155,7800,1 +12634,536728,188,9401,1 +12635,536784,69,3482,1 +12636,537121,63,3162,1 +12637,537123,98,4935,1 +12638,537132,197,9898,1 +12639,537132,57,2871,1 +12640,537147,108,5430,1 +12641,537147,147,7399,1 +12642,537171,153,7653,1 +12643,537190,72,3619,1 +12644,537192,163,8166,1 +12645,537193,72,3602,1 +12646,537625,79,3990,1 +12647,537768,65,3278,1 +12648,538080,3,190,1 +12649,538083,187,9372,1 +12650,538560,94,4740,1 +12651,538568,193,9653,1 +12652,538581,76,3814,1 +12653,538584,52,2635,1 +12654,538586,176,8819,1 +12655,538605,180,9009,1 +12656,538620,163,8156,1 +12657,538660,85,4254,1 +12658,538728,177,8858,1 +12659,538860,146,7332,1 +12660,539069,184,9246,1 +12661,539110,64,3241,1 +12662,539172,167,8378,1 +12663,539520,4,222,1 +12664,539520,44,2237,1 +12665,539523,49,2497,1 +12666,539533,198,9914,1 +12667,539556,176,8840,1 +12668,539566,195,9758,1 +12669,539586,181,9082,1 +12670,539589,101,5091,1 +12671,539610,134,6722,1 +12672,540013,31,1585,1 +12673,540493,164,8232,1 +12674,540599,136,6848,1 +12675,540624,86,4333,1 +12676,540963,126,6334,1 +12677,540973,191,9597,1 +12678,540991,190,9544,1 +12679,541017,146,7319,1 +12680,541023,69,3471,1 +12681,541087,66,3320,1 +12682,541116,102,5138,1 +12683,541464,84,4213,1 +12684,541469,69,3461,1 +12685,541510,145,7273,1 +12686,541920,76,3839,1 +12687,541935,38,1940,1 +12688,541951,109,5461,1 +12689,541975,98,4936,1 +12690,542004,7,362,1 +12691,542035,64,3223,1 +12692,542400,102,5122,1 +12693,542412,177,8883,1 +12694,542436,42,2147,1 +12695,542449,72,3632,1 +12696,542484,109,5452,1 +12697,542484,56,2838,1 +12698,542496,115,5761,1 +12699,542556,95,4769,1 +12700,542580,56,2846,1 +12701,543360,146,7311,1 +12702,543360,47,2400,1 +12703,543363,155,7782,1 +12704,543371,8,419,1 +12705,543372,199,9973,1 +12706,543375,155,7793,1 +12707,543378,94,4705,1 +12708,543409,25,1285,1 +12709,543432,97,4867,1 +12710,543466,158,7912,1 +12711,543840,51,2573,1 +12712,543840,166,8301,1 +12713,543890,74,3737,1 +12714,543912,123,6198,1 +12715,544321,103,5188,1 +12716,544392,32,1646,1 +12717,544393,103,5156,1 +12718,544405,2,122,1 +12719,544408,30,1506,1 +12720,544440,33,1688,1 +12721,544521,185,9270,1 +12722,544848,42,2132,1 +12723,544869,153,7657,1 +12724,545028,168,8430,1 +12725,545280,181,9088,1 +12726,545280,125,6300,1 +12727,545281,0,26,1 +12728,545281,72,3626,1 +12729,545286,154,7724,1 +12730,545289,40,2041,1 +12731,545294,185,9265,1 +12732,545303,104,5227,1 +12733,545304,17,874,1 +12734,545305,64,3220,1 +12735,545306,117,5865,1 +12736,545316,128,6410,1 +12737,545316,126,6319,1 +12738,545316,72,3610,1 +12739,545316,88,4425,1 +12740,545328,83,4169,1 +12741,545343,5,266,1 +12742,545352,193,9689,1 +12743,545376,11,586,1 +12744,545388,163,8158,1 +12745,545424,7,398,1 +12746,545426,67,3395,1 +12747,546373,178,8934,1 +12748,546720,132,6648,1 +12749,546723,47,2400,1 +12750,546756,124,6239,1 +12751,546792,161,8055,1 +12752,546804,127,6376,1 +12753,546805,39,1967,1 +12754,547200,79,3961,1 +12755,547200,122,6119,1 +12756,547200,66,3315,1 +12757,547202,126,6347,1 +12758,547206,168,8433,1 +12759,547207,55,2775,1 +12760,547212,35,1763,1 +12761,547212,132,6603,1 +12762,547212,188,9443,1 +12763,547212,171,8551,1 +12764,547213,134,6747,1 +12765,547213,186,9328,1 +12766,547216,128,6448,1 +12767,547217,154,7704,1 +12768,547218,83,4194,1 +12769,547224,141,7059,1 +12770,547224,183,9164,1 +12771,547226,22,1123,1 +12772,547228,78,3942,1 +12773,547230,88,4413,1 +12774,547233,95,4766,1 +12775,547239,114,5717,1 +12776,547248,161,8076,1 +12777,547251,21,1071,1 +12778,547254,63,3199,1 +12779,547260,51,2555,1 +12780,547260,47,2374,1 +12781,547261,53,2675,1 +12782,547274,155,7765,1 +12783,547277,37,1857,1 +12784,547284,148,7411,1 +12785,547286,177,8866,1 +12786,547290,146,7332,1 +12787,547296,164,8219,1 +12788,547296,156,7805,1 +12789,547309,32,1619,1 +12790,547320,197,9868,1 +12791,547344,125,6257,1 +12792,547344,23,1192,1 +12793,547368,68,3440,1 +12794,547374,63,3161,1 +12795,547382,100,5029,1 +12796,547680,99,4998,1 +12797,547686,46,2334,1 +12798,547693,178,8923,1 +12799,547693,165,8282,1 +12800,547703,97,4893,1 +12801,547713,164,8239,1 +12802,547720,163,8152,1 +12803,547728,31,1599,1 +12804,547741,4,226,1 +12805,547746,179,8965,1 +12806,547753,122,6102,1 +12807,547764,92,4616,1 +12808,547767,98,4908,1 +12809,547777,93,4698,1 +12810,547794,127,6372,1 +12811,547825,51,2564,1 +12812,547831,97,4875,1 +12813,547944,101,5071,1 +12814,548160,94,4735,1 +12815,548160,97,4893,1 +12816,548160,83,4171,1 +12817,548160,4,204,1 +12818,548160,57,2872,1 +12819,548160,118,5930,1 +12820,548160,10,511,1 +12821,548160,35,1770,1 +12822,548160,22,1117,1 +12823,548160,169,8469,1 +12824,548160,93,4698,1 +12825,548161,198,9937,1 +12826,548161,38,1903,1 +12827,548163,68,3418,1 +12828,548163,54,2723,1 +12829,548165,185,9270,1 +12830,548166,132,6629,1 +12831,548166,67,3380,1 +12832,548168,46,2302,1 +12833,548168,15,753,1 +12834,548169,28,1447,1 +12835,548172,195,9776,1 +12836,548172,191,9597,1 +12837,548172,48,2425,1 +12838,548172,28,1410,1 +12839,548172,72,3637,1 +12840,548172,150,7507,1 +12841,548172,34,1748,1 +12842,548172,73,3698,1 +12843,548172,161,8066,1 +12844,548173,69,3473,1 +12845,548173,129,6471,1 +12846,548173,74,3701,1 +12847,548173,47,2394,1 +12848,548174,151,7555,1 +12849,548175,79,3983,1 +12850,548175,160,8028,1 +12851,548175,152,7641,1 +12852,548175,132,6605,1 +12853,548178,53,2674,1 +12854,548178,70,3543,1 +12855,548178,40,2012,1 +12856,548184,113,5698,1 +12857,548184,9,457,1 +12858,548184,126,6307,1 +12859,548184,88,4431,1 +12860,548184,119,5971,1 +12861,548184,45,2295,1 +12862,548184,60,3028,1 +12863,548185,183,9171,1 +12864,548185,82,4106,1 +12865,548185,142,7109,1 +12866,548185,63,3177,1 +12867,548194,149,7454,1 +12868,548196,167,8377,1 +12869,548196,20,1017,1 +12870,548196,180,9011,1 +12871,548197,191,9597,1 +12872,548197,35,1762,1 +12873,548197,184,9216,1 +12874,548197,49,2493,1 +12875,548197,101,5098,1 +12876,548197,74,3733,1 +12877,548197,118,5907,1 +12878,548197,11,564,1 +12879,548197,73,3666,1 +12880,548199,107,5362,1 +12881,548200,30,1526,1 +12882,548205,1,73,1 +12883,548208,29,1462,1 +12884,548208,26,1322,1 +12885,548208,197,9894,1 +12886,548209,102,5134,1 +12887,548214,30,1550,1 +12888,548214,38,1919,1 +12889,548218,130,6512,1 +12890,548219,75,3778,1 +12891,548220,14,728,1 +12892,548220,102,5144,1 +12893,548220,44,2208,1 +12894,548221,198,9935,1 +12895,548221,12,623,1 +12896,548229,139,6973,1 +12897,548232,68,3427,1 +12898,548232,15,785,1 +12899,548233,39,1995,1 +12900,548244,188,9446,1 +12901,548245,53,2695,1 +12902,548246,14,735,1 +12903,548247,79,3956,1 +12904,548254,157,7865,1 +12905,548256,188,9411,1 +12906,548267,96,4838,1 +12907,548268,124,6239,1 +12908,548280,2,146,1 +12909,548280,194,9736,1 +12910,548292,24,1215,1 +12911,548292,94,4712,1 +12912,548292,35,1771,1 +12913,548304,168,8410,1 +12914,548305,89,4452,1 +12915,548316,199,9961,1 +12916,548316,68,3422,1 +12917,548337,55,2785,1 +12918,548340,124,6208,1 +12919,548345,123,6157,1 +12920,548352,199,9987,1 +12921,548376,88,4449,1 +12922,548377,47,2382,1 +12923,548385,110,5509,1 +12924,548404,89,4487,1 +12925,548412,155,7762,1 +12926,548487,119,5963,1 +12927,548640,101,5096,1 +12928,548640,142,7107,1 +12929,548640,144,7239,1 +12930,548640,130,6543,1 +12931,548640,193,9663,1 +12932,548640,62,3126,1 +12933,548641,69,3480,1 +12934,548643,44,2232,1 +12935,548643,194,9750,1 +12936,548644,126,6344,1 +12937,548645,158,7918,1 +12938,548646,131,6583,1 +12939,548649,40,2035,1 +12940,548652,157,7890,1 +12941,548652,190,9528,1 +12942,548653,115,5786,1 +12943,548655,49,2489,1 +12944,548656,173,8672,1 +12945,548658,42,2126,1 +12946,548663,13,666,1 +12947,548664,14,735,1 +12948,548664,97,4879,1 +12949,548665,123,6186,1 +12950,548665,153,7697,1 +12951,548665,66,3305,1 +12952,548676,30,1510,1 +12953,548677,35,1796,1 +12954,548682,112,5642,1 +12955,548688,87,4359,1 +12956,548689,150,7541,1 +12957,548691,186,9342,1 +12958,548694,125,6256,1 +12959,548701,165,8271,1 +12960,548724,109,5453,1 +12961,548734,82,4117,1 +12962,548749,191,9561,1 +12963,548772,195,9763,1 +12964,548784,191,9577,1 +12965,548786,169,8453,1 +12966,548808,74,3740,1 +12967,548874,126,6332,1 +12968,550584,56,2817,1 +12969,550597,185,9280,1 +12970,551124,199,9991,1 +12971,551125,86,4313,1 +12972,551520,103,5199,1 +12973,551522,170,8532,1 +12974,551525,135,6767,1 +12975,551526,170,8507,1 +12976,551532,99,4981,1 +12977,551532,63,3185,1 +12978,551532,131,6573,1 +12979,551556,20,1013,1 +12980,551557,153,7653,1 +12981,551568,116,5850,1 +12982,551605,154,7702,1 +12983,551694,74,3749,1 +12984,552003,100,5025,1 +12985,552004,196,9847,1 +12986,552012,183,9153,1 +12987,552050,191,9554,1 +12988,552093,98,4918,1 +12989,552216,109,5452,1 +12990,552960,149,7483,1 +12991,552963,69,3484,1 +12992,552963,171,8583,1 +12993,552972,106,5315,1 +12994,552978,133,6684,1 +12995,552980,43,2186,1 +12996,552984,48,2433,1 +12997,552985,167,8352,1 +12998,552986,112,5602,1 +12999,553002,56,2833,1 +13000,553014,135,6782,1 +13001,553020,6,347,1 +13002,553032,145,7297,1 +13003,553044,54,2721,1 +13004,553069,146,7320,1 +13005,553101,183,9187,1 +13006,553440,81,4073,1 +13007,553440,7,360,1 +13008,553440,6,317,1 +13009,553441,13,681,1 +13010,553452,27,1382,1 +13011,553452,8,420,1 +13012,553453,15,781,1 +13013,553455,113,5693,1 +13014,553456,26,1336,1 +13015,553464,37,1876,1 +13016,553489,163,8154,1 +13017,553500,152,7601,1 +13018,553521,14,748,1 +13019,553525,106,5342,1 +13020,553536,128,6410,1 +13021,553608,57,2853,1 +13022,553632,70,3506,1 +13023,553956,12,606,1 +13024,554400,94,4746,1 +13025,554406,122,6113,1 +13026,554407,199,9984,1 +13027,554430,141,7059,1 +13028,554449,129,6500,1 +13029,554468,143,7168,1 +13030,554484,191,9556,1 +13031,554485,27,1381,1 +13032,554532,101,5085,1 +13033,554880,51,2580,1 +13034,554881,137,6879,1 +13035,554892,58,2922,1 +13036,554896,137,6886,1 +13037,554905,74,3750,1 +13038,554905,115,5791,1 +13039,554913,38,1945,1 +13040,554918,53,2674,1 +13041,554956,105,5257,1 +13042,555058,175,8797,1 +13043,555384,147,7375,1 +13044,555387,169,8461,1 +13045,555410,40,2044,1 +13046,555426,199,9966,1 +13047,555441,23,1180,1 +13048,555450,139,6961,1 +13049,555518,65,3296,1 +13050,555840,29,1454,1 +13051,555840,0,16,1 +13052,555840,99,4999,1 +13053,555842,191,9572,1 +13054,555850,9,463,1 +13055,555852,1,71,1 +13056,555852,173,8689,1 +13057,555854,75,3758,1 +13058,555855,177,8874,1 +13059,555864,160,8048,1 +13060,555864,0,14,1 +13061,555865,186,9342,1 +13062,555869,0,45,1 +13063,555879,196,9802,1 +13064,555883,189,9467,1 +13065,555888,197,9853,1 +13066,555888,27,1384,1 +13067,555889,14,726,1 +13068,555889,56,2829,1 +13069,555915,0,19,1 +13070,555915,130,6550,1 +13071,555973,52,2650,1 +13072,556011,65,3299,1 +13073,556021,190,9533,1 +13074,556332,159,7954,1 +13075,556341,121,6077,1 +13076,556357,51,2565,1 +13077,556392,175,8766,1 +13078,556464,109,5479,1 +13079,556800,177,8882,1 +13080,556824,36,1827,1 +13081,556824,102,5140,1 +13082,556828,125,6255,1 +13083,556833,40,2008,1 +13084,556836,95,4777,1 +13085,556836,72,3644,1 +13086,556845,122,6129,1 +13087,556860,39,1981,1 +13088,556872,26,1303,1 +13089,556920,147,7367,1 +13090,557761,160,8014,1 +13091,557769,33,1674,1 +13092,557784,4,206,1 +13093,557784,190,9520,1 +13094,557785,29,1483,1 +13095,557796,128,6411,1 +13096,557796,114,5720,1 +13097,557809,122,6144,1 +13098,557833,72,3632,1 +13099,557841,104,5215,1 +13100,557898,185,9274,1 +13101,557913,44,2247,1 +13102,557958,51,2574,1 +13103,558257,123,6170,1 +13104,558336,5,260,1 +13105,558507,162,8140,1 +13106,558721,132,6608,1 +13107,558725,44,2244,1 +13108,558725,32,1608,1 +13109,558731,128,6410,1 +13110,558732,18,947,1 +13111,558735,61,3057,1 +13112,558746,52,2602,1 +13113,558762,165,8262,1 +13114,558763,92,4620,1 +13115,558781,125,6283,1 +13116,558792,67,3400,1 +13117,558804,94,4732,1 +13118,559200,80,4045,1 +13119,559231,113,5691,1 +13120,559236,24,1205,1 +13121,559299,141,7088,1 +13122,559680,85,4299,1 +13123,559680,96,4831,1 +13124,559680,132,6626,1 +13125,559680,86,4308,1 +13126,559680,43,2168,1 +13127,559680,179,8977,1 +13128,559680,148,7434,1 +13129,559680,131,6595,1 +13130,559680,170,8528,1 +13131,559680,153,7678,1 +13132,559680,151,7577,1 +13133,559680,4,208,1 +13134,559681,90,4521,1 +13135,559682,34,1709,1 +13136,559683,123,6184,1 +13137,559683,101,5091,1 +13138,559683,144,7216,1 +13139,559684,17,896,1 +13140,559684,116,5847,1 +13141,559686,167,8372,1 +13142,559687,75,3788,1 +13143,559689,195,9777,1 +13144,559689,184,9228,1 +13145,559689,174,8731,1 +13146,559690,68,3429,1 +13147,559690,38,1924,1 +13148,559692,18,935,1 +13149,559692,61,3097,1 +13150,559692,124,6217,1 +13151,559692,127,6373,1 +13152,559692,89,4453,1 +13153,559692,149,7479,1 +13154,559692,93,4691,1 +13155,559692,161,8059,1 +13156,559692,155,7751,1 +13157,559692,167,8360,1 +13158,559692,185,9257,1 +13159,559692,26,1329,1 +13160,559692,86,4337,1 +13161,559692,57,2883,1 +13162,559692,26,1348,1 +13163,559692,176,8821,1 +13164,559693,56,2824,1 +13165,559693,97,4880,1 +13166,559693,163,8174,1 +13167,559694,177,8861,1 +13168,559694,184,9213,1 +13169,559694,152,7642,1 +13170,559696,73,3674,1 +13171,559696,117,5871,1 +13172,559698,143,7178,1 +13173,559701,1,51,1 +13174,559701,192,9610,1 +13175,559702,147,7362,1 +13176,559703,179,8958,1 +13177,559704,167,8396,1 +13178,559704,118,5929,1 +13179,559704,37,1889,1 +13180,559704,97,4871,1 +13181,559704,23,1182,1 +13182,559704,103,5188,1 +13183,559705,16,820,1 +13184,559705,27,1358,1 +13185,559705,191,9564,1 +13186,559705,74,3749,1 +13187,559706,14,726,1 +13188,559707,113,5667,1 +13189,559707,155,7800,1 +13190,559708,61,3075,1 +13191,559711,84,4207,1 +13192,559713,19,964,1 +13193,559716,195,9760,1 +13194,559716,17,867,1 +13195,559716,188,9432,1 +13196,559718,125,6285,1 +13197,559720,183,9151,1 +13198,559721,103,5197,1 +13199,559722,140,7004,1 +13200,559722,30,1535,1 +13201,559724,55,2799,1 +13202,559725,196,9843,1 +13203,559728,126,6328,1 +13204,559728,144,7233,1 +13205,559728,195,9790,1 +13206,559730,180,9040,1 +13207,559731,48,2443,1 +13208,559732,185,9289,1 +13209,559732,99,4993,1 +13210,559734,48,2433,1 +13211,559734,33,1653,1 +13212,559735,116,5822,1 +13213,559735,8,411,1 +13214,559739,31,1554,1 +13215,559740,30,1518,1 +13216,559740,181,9071,1 +13217,559740,22,1145,1 +13218,559740,168,8411,1 +13219,559741,55,2795,1 +13220,559742,100,5033,1 +13221,559743,118,5925,1 +13222,559743,58,2947,1 +13223,559743,31,1582,1 +13224,559750,92,4626,1 +13225,559752,193,9695,1 +13226,559752,63,3153,1 +13227,559752,1,97,1 +13228,559753,109,5471,1 +13229,559753,146,7331,1 +13230,559753,120,6028,1 +13231,559753,9,493,1 +13232,559753,54,2727,1 +13233,559755,181,9094,1 +13234,559758,179,8982,1 +13235,559761,138,6941,1 +13236,559764,160,8050,1 +13237,559764,113,5666,1 +13238,559772,152,7648,1 +13239,559773,28,1406,1 +13240,559773,176,8829,1 +13241,559776,155,7762,1 +13242,559776,66,3327,1 +13243,559777,87,4376,1 +13244,559777,18,939,1 +13245,559778,75,3767,1 +13246,559780,123,6192,1 +13247,559782,58,2934,1 +13248,559784,141,7100,1 +13249,559785,157,7863,1 +13250,559788,78,3922,1 +13251,559791,190,9501,1 +13252,559794,0,17,1 +13253,559798,111,5562,1 +13254,559800,189,9456,1 +13255,559824,141,7064,1 +13256,559833,140,7041,1 +13257,559833,116,5816,1 +13258,559836,49,2451,1 +13259,559839,24,1227,1 +13260,559848,158,7923,1 +13261,559848,115,5772,1 +13262,559849,46,2318,1 +13263,559896,160,8046,1 +13264,559921,175,8789,1 +13265,560161,173,8686,1 +13266,560166,166,8350,1 +13267,560169,56,2826,1 +13268,560181,191,9573,1 +13269,560190,11,593,1 +13270,560202,197,9900,1 +13271,560289,156,7816,1 +13272,560640,75,3799,1 +13273,560652,134,6712,1 +13274,560652,1,51,1 +13275,560652,23,1164,1 +13276,560653,139,6952,1 +13277,560664,151,7573,1 +13278,560664,162,8144,1 +13279,560664,98,4912,1 +13280,560664,34,1741,1 +13281,560673,8,411,1 +13282,560676,177,8870,1 +13283,560676,149,7475,1 +13284,560677,127,6388,1 +13285,560685,175,8764,1 +13286,560688,17,877,1 +13287,560694,76,3810,1 +13288,560711,184,9250,1 +13289,560750,41,2077,1 +13290,560752,132,6618,1 +13291,560760,55,2786,1 +13292,561132,124,6218,1 +13293,561133,198,9915,1 +13294,561156,13,653,1 +13295,561178,40,2048,1 +13296,561246,52,2646,1 +13297,561264,106,5344,1 +13298,561300,47,2353,1 +13299,561600,42,2116,1 +13300,561612,69,3475,1 +13301,561614,64,3221,1 +13302,561621,116,5849,1 +13303,561624,62,3133,1 +13304,561635,44,2237,1 +13305,561648,196,9838,1 +13306,561651,56,2803,1 +13307,561660,73,3674,1 +13308,561666,92,4642,1 +13309,561674,148,7431,1 +13310,561684,112,5628,1 +13311,561685,28,1443,1 +13312,561708,97,4885,1 +13313,562080,31,1554,1 +13314,562081,186,9349,1 +13315,562083,198,9929,1 +13316,562084,135,6777,1 +13317,562086,8,436,1 +13318,562092,9,470,1 +13319,562098,91,4558,1 +13320,562104,14,736,1 +13321,562116,111,5561,1 +13322,562131,133,6658,1 +13323,562152,65,3269,1 +13324,562161,65,3271,1 +13325,563040,12,601,1 +13326,563043,198,9923,1 +13327,563043,165,8273,1 +13328,563055,9,459,1 +13329,563064,17,900,1 +13330,563064,60,3022,1 +13331,563124,59,2972,1 +13332,563196,58,2915,1 +13333,563301,17,858,1 +13334,564000,180,9049,1 +13335,564000,129,6479,1 +13336,564013,154,7705,1 +13337,564024,163,8200,1 +13338,564024,2,132,1 +13339,564024,191,9558,1 +13340,564049,109,5486,1 +13341,564060,165,8260,1 +13342,564067,184,9201,1 +13343,564069,191,9575,1 +13344,564127,28,1447,1 +13345,564480,99,4990,1 +13346,564481,15,795,1 +13347,564492,107,5399,1 +13348,564493,46,2320,1 +13349,564528,30,1539,1 +13350,564541,72,3639,1 +13351,564652,32,1644,1 +13352,564969,2,125,1 +13353,565440,162,8135,1 +13354,565440,54,2744,1 +13355,565441,172,8613,1 +13356,565444,176,8829,1 +13357,565452,100,5033,1 +13358,565464,17,898,1 +13359,565500,14,704,1 +13360,565501,162,8104,1 +13361,565506,6,335,1 +13362,565512,141,7062,1 +13363,565536,85,4259,1 +13364,565537,157,7877,1 +13365,565561,36,1806,1 +13366,565930,45,2266,1 +13367,565932,120,6002,1 +13368,565935,98,4942,1 +13369,565944,21,1066,1 +13370,565953,43,2200,1 +13371,565957,92,4613,1 +13372,565959,14,708,1 +13373,565976,168,8409,1 +13374,566023,193,9657,1 +13375,566065,59,2970,1 +13376,566400,81,4095,1 +13377,566400,112,5638,1 +13378,566400,187,9400,1 +13379,566403,97,4894,1 +13380,566412,115,5774,1 +13381,566424,177,8861,1 +13382,566436,191,9574,1 +13383,566437,100,5022,1 +13384,566473,47,2372,1 +13385,566880,13,686,1 +13386,566883,168,8406,1 +13387,566889,118,5918,1 +13388,566893,26,1303,1 +13389,566895,86,4348,1 +13390,566905,35,1776,1 +13391,566906,150,7549,1 +13392,566933,164,8215,1 +13393,566952,154,7721,1 +13394,566953,76,3843,1 +13395,566979,145,7274,1 +13396,566992,66,3319,1 +13397,567000,94,4716,1 +13398,567043,111,5576,1 +13399,567360,120,6036,1 +13400,567360,37,1869,1 +13401,567362,81,4059,1 +13402,567363,25,1252,1 +13403,567366,49,2462,1 +13404,567372,56,2849,1 +13405,567372,85,4286,1 +13406,567375,88,4404,1 +13407,567384,96,4844,1 +13408,567386,110,5512,1 +13409,567396,168,8402,1 +13410,567396,22,1121,1 +13411,567408,114,5703,1 +13412,567412,1,87,1 +13413,567426,173,8660,1 +13414,567567,3,177,1 +13415,567898,66,3305,1 +13416,568848,97,4879,1 +13417,569362,59,2955,1 +13418,569412,21,1081,1 +13419,569760,89,4487,1 +13420,569760,48,2413,1 +13421,569763,108,5419,1 +13422,569775,6,308,1 +13423,569802,103,5195,1 +13424,569808,44,2235,1 +13425,569823,120,6004,1 +13426,569834,91,4594,1 +13427,569856,43,2159,1 +13428,569880,149,7499,1 +13429,569913,151,7597,1 +13430,570721,146,7325,1 +13431,570723,177,8879,1 +13432,570732,81,4067,1 +13433,570742,54,2745,1 +13434,570747,36,1849,1 +13435,570756,93,4666,1 +13436,570757,150,7544,1 +13437,570759,35,1755,1 +13438,570769,89,4471,1 +13439,570777,164,8217,1 +13440,570787,24,1238,1 +13441,570793,106,5327,1 +13442,570805,121,6094,1 +13443,570888,117,5889,1 +13444,570900,149,7482,1 +13445,570912,11,586,1 +13446,571200,157,7898,1 +13447,571203,162,8129,1 +13448,571212,67,3376,1 +13449,571212,108,5432,1 +13450,571212,45,2271,1 +13451,571236,172,8630,1 +13452,571243,25,1286,1 +13453,571248,43,2193,1 +13454,571249,138,6940,1 +13455,571272,119,5975,1 +13456,571309,93,4666,1 +13457,571332,29,1480,1 +13458,571680,106,5347,1 +13459,571689,125,6255,1 +13460,571719,27,1354,1 +13461,571753,102,5134,1 +13462,571785,129,6492,1 +13463,572163,153,7691,1 +13464,572175,182,9106,1 +13465,572205,178,8944,1 +13466,572208,36,1811,1 +13467,572307,62,3126,1 +13468,572640,32,1625,1 +13469,572640,109,5484,1 +13470,572640,23,1155,1 +13471,572640,133,6656,1 +13472,572647,90,4506,1 +13473,572648,75,3777,1 +13474,572652,33,1662,1 +13475,572652,10,535,1 +13476,572652,82,4107,1 +13477,572652,158,7927,1 +13478,572657,48,2441,1 +13479,572659,148,7443,1 +13480,572661,37,1874,1 +13481,572664,10,539,1 +13482,572664,33,1672,1 +13483,572664,145,7295,1 +13484,572666,199,9990,1 +13485,572671,184,9229,1 +13486,572673,24,1218,1 +13487,572673,113,5655,1 +13488,572676,87,4375,1 +13489,572679,162,8117,1 +13490,572682,63,3160,1 +13491,572694,26,1310,1 +13492,572701,155,7797,1 +13493,572703,129,6488,1 +13494,572712,145,7280,1 +13495,572724,186,9345,1 +13496,572724,95,4781,1 +13497,572739,169,8466,1 +13498,572772,170,8512,1 +13499,572773,3,161,1 +13500,572797,160,8005,1 +13501,572808,148,7401,1 +13502,572868,92,4611,1 +13503,573120,4,235,1 +13504,573120,81,4093,1 +13505,573120,177,8872,1 +13506,573120,57,2892,1 +13507,573123,39,1996,1 +13508,573124,104,5239,1 +13509,573126,77,3877,1 +13510,573129,15,788,1 +13511,573129,73,3661,1 +13512,573130,180,9038,1 +13513,573132,118,5949,1 +13514,573132,183,9185,1 +13515,573135,86,4345,1 +13516,573143,18,936,1 +13517,573144,36,1821,1 +13518,573145,74,3733,1 +13519,573145,8,417,1 +13520,573146,165,8295,1 +13521,573153,28,1414,1 +13522,573156,30,1541,1 +13523,573156,90,4512,1 +13524,573157,159,7975,1 +13525,573160,142,7109,1 +13526,573164,99,4960,1 +13527,573168,53,2664,1 +13528,573171,49,2454,1 +13529,573192,10,531,1 +13530,573204,197,9869,1 +13531,573205,51,2575,1 +13532,573205,77,3891,1 +13533,573206,79,3976,1 +13534,573214,38,1948,1 +13535,573217,157,7854,1 +13536,573238,193,9669,1 +13537,573254,159,7954,1 +13538,573411,109,5468,1 +13539,573607,114,5723,1 +13540,573624,184,9228,1 +13541,573630,14,718,1 +13542,573636,11,584,1 +13543,573678,98,4949,1 +13544,573687,176,8836,1 +13545,573693,112,5615,1 +13546,574081,197,9868,1 +13547,574107,160,8033,1 +13548,574572,136,6817,1 +13549,574692,76,3849,1 +13550,575040,159,7969,1 +13551,575052,10,507,1 +13552,575055,121,6087,1 +13553,575064,66,3335,1 +13554,575064,167,8383,1 +13555,575076,89,4484,1 +13556,575076,125,6296,1 +13557,575088,106,5327,1 +13558,575113,124,6236,1 +13559,575115,110,5541,1 +13560,575158,104,5227,1 +13561,575234,172,8620,1 +13562,575542,58,2943,1 +13563,575556,33,1694,1 +13564,576114,197,9853,1 +13565,576481,75,3792,1 +13566,576481,53,2683,1 +13567,576504,32,1648,1 +13568,576510,143,7166,1 +13569,576516,42,2125,1 +13570,576518,159,7970,1 +13571,576543,118,5910,1 +13572,576553,16,829,1 +13573,576684,131,6585,1 +13574,576980,113,5694,1 +13575,576985,53,2654,1 +13576,576986,19,988,1 +13577,577012,131,6555,1 +13578,577032,179,8973,1 +13579,577032,143,7161,1 +13580,577036,94,4728,1 +13581,577041,119,5993,1 +13582,577049,179,8993,1 +13583,577098,191,9556,1 +13584,577440,120,6010,1 +13585,577440,92,4609,1 +13586,577452,86,4340,1 +13587,577453,33,1672,1 +13588,577464,55,2768,1 +13589,577464,188,9435,1 +13590,577476,122,6102,1 +13591,577488,30,1528,1 +13592,577512,171,8585,1 +13593,577527,93,4661,1 +13594,577536,65,3273,1 +13595,577581,194,9749,1 +13596,577920,185,9257,1 +13597,577920,132,6621,1 +13598,577944,28,1436,1 +13599,577947,152,7601,1 +13600,577956,96,4837,1 +13601,577956,127,6360,1 +13602,577956,23,1180,1 +13603,578424,146,7326,1 +13604,578437,96,4830,1 +13605,578439,29,1488,1 +13606,578445,72,3637,1 +13607,578463,65,3276,1 +13608,578484,132,6606,1 +13609,578488,135,6775,1 +13610,578499,183,9188,1 +13611,578676,171,8597,1 +13612,578880,53,2662,1 +13613,578880,193,9652,1 +13614,578880,178,8913,1 +13615,578881,93,4685,1 +13616,578904,80,4024,1 +13617,578905,6,348,1 +13618,578910,126,6322,1 +13619,578917,78,3934,1 +13620,578920,109,5465,1 +13621,578928,110,5515,1 +13622,578928,152,7601,1 +13623,578931,130,6527,1 +13624,578934,117,5897,1 +13625,578940,164,8211,1 +13626,578940,43,2179,1 +13627,578952,20,1039,1 +13628,578985,85,4264,1 +13629,578988,95,4778,1 +13630,579001,92,4650,1 +13631,579012,112,5606,1 +13632,579360,123,6192,1 +13633,579363,3,168,1 +13634,579372,122,6101,1 +13635,579372,4,213,1 +13636,579372,29,1470,1 +13637,579377,31,1593,1 +13638,579418,96,4823,1 +13639,579419,146,7334,1 +13640,579422,10,550,1 +13641,579426,65,3287,1 +13642,579438,98,4941,1 +13643,579504,172,8601,1 +13644,579554,155,7782,1 +13645,579853,127,6376,1 +13646,579864,131,6572,1 +13647,579876,67,3386,1 +13648,579877,7,352,1 +13649,579900,106,5316,1 +13650,579912,99,4969,1 +13651,579927,67,3374,1 +13652,579990,101,5065,1 +13653,580017,91,4592,1 +13654,580320,122,6119,1 +13655,580320,25,1285,1 +13656,580329,53,2685,1 +13657,580335,156,7835,1 +13658,580346,111,5593,1 +13659,580347,134,6713,1 +13660,580356,71,3551,1 +13661,580382,142,7137,1 +13662,580801,80,4018,1 +13663,580815,119,5960,1 +13664,580824,113,5685,1 +13665,580847,60,3007,1 +13666,580849,72,3644,1 +13667,580850,73,3654,1 +13668,581302,154,7745,1 +13669,581304,38,1933,1 +13670,581350,68,3423,1 +13671,581352,190,9533,1 +13672,581760,94,4750,1 +13673,581772,103,5160,1 +13674,581776,84,4207,1 +13675,581787,130,6548,1 +13676,581820,144,7244,1 +13677,581877,199,9985,1 +13678,581935,157,7900,1 +13679,582241,186,9343,1 +13680,582720,187,9376,1 +13681,582720,194,9723,1 +13682,582720,161,8095,1 +13683,582721,60,3027,1 +13684,582732,134,6702,1 +13685,582732,174,8728,1 +13686,582732,120,6045,1 +13687,582756,63,3158,1 +13688,582762,77,3889,1 +13689,582780,146,7334,1 +13690,582781,75,3792,1 +13691,582781,31,1597,1 +13692,582795,87,4393,1 +13693,582816,16,801,1 +13694,582828,89,4477,1 +13695,582852,61,3098,1 +13696,582864,147,7392,1 +13697,582864,80,4004,1 +13698,582936,11,554,1 +13699,583681,129,6497,1 +13700,583699,21,1100,1 +13701,583714,164,8204,1 +13702,583728,114,5717,1 +13703,583741,185,9255,1 +13704,583767,110,5504,1 +13705,583797,105,5264,1 +13706,583806,184,9203,1 +13707,584173,99,4984,1 +13708,584184,170,8506,1 +13709,584245,4,213,1 +13710,584272,6,326,1 +13711,584641,33,1662,1 +13712,584664,71,3568,1 +13713,584676,44,2238,1 +13714,584680,199,9957,1 +13715,584736,97,4890,1 +13716,584832,188,9442,1 +13717,585120,77,3853,1 +13718,585121,171,8566,1 +13719,585130,48,2402,1 +13720,585132,111,5569,1 +13721,585132,151,7579,1 +13722,585132,186,9325,1 +13723,585138,128,6448,1 +13724,585138,93,4677,1 +13725,585144,107,5362,1 +13726,585144,154,7714,1 +13727,585156,7,351,1 +13728,585163,7,356,1 +13729,585169,91,4563,1 +13730,585172,198,9914,1 +13731,585172,117,5858,1 +13732,585180,110,5548,1 +13733,585192,38,1944,1 +13734,585196,60,3023,1 +13735,585204,54,2719,1 +13736,585204,129,6485,1 +13737,585208,196,9843,1 +13738,585267,173,8692,1 +13739,585614,121,6076,1 +13740,585636,181,9052,1 +13741,585636,31,1598,1 +13742,586092,144,7243,1 +13743,586104,199,9968,1 +13744,586105,97,4878,1 +13745,586105,184,9214,1 +13746,586107,134,6715,1 +13747,586117,58,2913,1 +13748,586122,181,9067,1 +13749,586125,188,9448,1 +13750,586131,145,7258,1 +13751,586176,186,9323,1 +13752,586578,120,6043,1 +13753,586608,133,6676,1 +13754,586680,57,2890,1 +13755,587042,157,7886,1 +13756,587052,55,2755,1 +13757,587053,52,2634,1 +13758,587058,183,9176,1 +13759,587068,153,7668,1 +13760,587106,6,316,1 +13761,587127,6,329,1 +13762,587187,198,9903,1 +13763,587520,75,3768,1 +13764,587520,25,1260,1 +13765,587521,4,241,1 +13766,587523,190,9531,1 +13767,587524,91,4585,1 +13768,587532,58,2908,1 +13769,587533,6,322,1 +13770,587541,45,2252,1 +13771,587545,127,6383,1 +13772,587547,168,8449,1 +13773,587551,55,2774,1 +13774,587565,184,9223,1 +13775,587567,2,104,1 +13776,587569,123,6151,1 +13777,587580,143,7190,1 +13778,587595,82,4113,1 +13779,587598,193,9657,1 +13780,587598,179,8971,1 +13781,587604,88,4428,1 +13782,587604,9,499,1 +13783,587616,89,4467,1 +13784,587629,167,8378,1 +13785,587652,3,172,1 +13786,588002,10,550,1 +13787,588002,89,4492,1 +13788,588228,155,7783,1 +13789,588483,156,7821,1 +13790,588486,43,2170,1 +13791,588517,69,3496,1 +13792,588963,51,2581,1 +13793,588963,92,4645,1 +13794,588966,65,3280,1 +13795,588975,183,9162,1 +13796,588975,57,2861,1 +13797,588977,135,6785,1 +13798,588981,157,7880,1 +13799,588981,30,1501,1 +13800,588981,182,9136,1 +13801,588984,130,6528,1 +13802,588985,62,3125,1 +13803,588990,93,4691,1 +13804,588996,143,7156,1 +13805,588997,34,1750,1 +13806,589008,145,7266,1 +13807,589015,99,4965,1 +13808,589044,23,1154,1 +13809,589044,114,5706,1 +13810,589047,18,907,1 +13811,589065,122,6118,1 +13812,589070,63,3187,1 +13813,589072,115,5786,1 +13814,589084,29,1461,1 +13815,589440,196,9820,1 +13816,589440,95,4764,1 +13817,589440,114,5705,1 +13818,589441,0,21,1 +13819,589443,30,1529,1 +13820,589451,80,4009,1 +13821,589452,130,6538,1 +13822,589452,100,5034,1 +13823,589452,199,9970,1 +13824,589453,184,9207,1 +13825,589453,118,5949,1 +13826,589461,74,3704,1 +13827,589461,103,5162,1 +13828,589464,117,5887,1 +13829,589464,19,974,1 +13830,589465,11,594,1 +13831,589473,19,975,1 +13832,589476,103,5164,1 +13833,589476,12,614,1 +13834,589476,196,9840,1 +13835,589476,53,2684,1 +13836,589476,145,7279,1 +13837,589477,119,6000,1 +13838,589477,113,5651,1 +13839,589483,2,127,1 +13840,589487,14,704,1 +13841,589491,178,8921,1 +13842,589494,31,1579,1 +13843,589500,182,9115,1 +13844,589512,33,1699,1 +13845,589514,87,4369,1 +13846,589536,124,6208,1 +13847,589548,120,6040,1 +13848,589561,119,5959,1 +13849,589627,49,2455,1 +13850,589633,90,4507,1 +13851,589639,120,6036,1 +13852,589920,19,970,1 +13853,589920,47,2400,1 +13854,589920,88,4439,1 +13855,589924,117,5869,1 +13856,589941,15,785,1 +13857,589946,69,3484,1 +13858,589956,119,5990,1 +13859,589962,180,9025,1 +13860,589982,153,7676,1 +13861,589987,152,7646,1 +13862,589993,63,3154,1 +13863,590016,92,4631,1 +13864,590028,150,7522,1 +13865,590034,46,2309,1 +13866,590415,33,1652,1 +13867,590457,195,9791,1 +13868,590487,39,1971,1 +13869,590520,162,8139,1 +13870,590547,14,734,1 +13871,590598,2,122,1 +13872,590919,40,2027,1 +13873,590920,28,1432,1 +13874,590989,176,8816,1 +13875,591024,152,7643,1 +13876,591072,53,2661,1 +13877,591360,17,855,1 +13878,591360,186,9312,1 +13879,591361,195,9792,1 +13880,591364,21,1095,1 +13881,591372,5,272,1 +13882,591372,167,8397,1 +13883,591372,163,8172,1 +13884,591372,63,3174,1 +13885,591372,128,6410,1 +13886,591373,154,7748,1 +13887,591376,140,7013,1 +13888,591381,129,6455,1 +13889,591385,170,8505,1 +13890,591389,174,8720,1 +13891,591396,39,1974,1 +13892,591397,153,7674,1 +13893,591408,129,6467,1 +13894,591419,75,3757,1 +13895,591420,66,3315,1 +13896,591432,151,7591,1 +13897,591438,61,3090,1 +13898,591439,126,6344,1 +13899,591456,2,134,1 +13900,591456,77,3897,1 +13901,591468,84,4236,1 +13902,591504,155,7799,1 +13903,591540,137,6900,1 +13904,591558,90,4540,1 +13905,591840,14,745,1 +13906,591842,150,7549,1 +13907,591872,9,468,1 +13908,591912,184,9218,1 +13909,591936,122,6109,1 +13910,592324,27,1371,1 +13911,592332,79,3972,1 +13912,592332,145,7298,1 +13913,592344,115,5759,1 +13914,592345,22,1136,1 +13915,592356,74,3728,1 +13916,592357,195,9772,1 +13917,592360,63,3171,1 +13918,592368,83,4181,1 +13919,592380,144,7249,1 +13920,592392,54,2741,1 +13921,592393,113,5684,1 +13922,592464,21,1061,1 +13923,592816,84,4235,1 +13924,592822,166,8312,1 +13925,592849,17,873,1 +13926,592849,169,8484,1 +13927,592851,46,2336,1 +13928,592884,11,560,1 +13929,592884,37,1882,1 +13930,593283,13,654,1 +13931,593298,182,9133,1 +13932,593302,146,7344,1 +13933,593304,129,6468,1 +13934,593316,78,3905,1 +13935,593322,47,2363,1 +13936,593340,141,7082,1 +13937,593349,158,7938,1 +13938,593350,45,2274,1 +13939,593448,152,7608,1 +13940,593760,74,3716,1 +13941,593770,133,6661,1 +13942,593772,121,6087,1 +13943,593772,137,6869,1 +13944,593783,17,878,1 +13945,593784,182,9108,1 +13946,593784,191,9578,1 +13947,593805,39,1969,1 +13948,593863,35,1796,1 +13949,593869,185,9280,1 +13950,593880,148,7410,1 +13951,593914,129,6495,1 +13952,593985,163,8170,1 +13953,594240,63,3198,1 +13954,594240,72,3631,1 +13955,594240,1,89,1 +13956,594240,173,8695,1 +13957,594240,170,8508,1 +13958,594240,149,7485,1 +13959,594240,153,7697,1 +13960,594240,149,7485,1 +13961,594240,124,6207,1 +13962,594240,87,4357,1 +13963,594240,148,7423,1 +13964,594241,61,3073,1 +13965,594242,11,552,1 +13966,594244,26,1328,1 +13967,594244,149,7464,1 +13968,594246,26,1349,1 +13969,594247,60,3010,1 +13970,594249,93,4671,1 +13971,594251,91,4572,1 +13972,594252,138,6936,1 +13973,594252,68,3420,1 +13974,594252,70,3504,1 +13975,594252,151,7597,1 +13976,594252,97,4879,1 +13977,594253,167,8398,1 +13978,594253,41,2060,1 +13979,594253,67,3400,1 +13980,594254,141,7097,1 +13981,594255,152,7611,1 +13982,594255,138,6944,1 +13983,594255,97,4879,1 +13984,594256,54,2709,1 +13985,594256,20,1021,1 +13986,594258,80,4045,1 +13987,594258,153,7652,1 +13988,594264,1,88,1 +13989,594264,191,9569,1 +13990,594264,8,449,1 +13991,594264,177,8893,1 +13992,594264,170,8515,1 +13993,594264,52,2612,1 +13994,594264,122,6102,1 +13995,594265,92,4628,1 +13996,594265,130,6513,1 +13997,594265,98,4946,1 +13998,594265,110,5502,1 +13999,594270,191,9586,1 +14000,594271,174,8710,1 +14001,594274,24,1205,1 +14002,594276,180,9046,1 +14003,594277,36,1807,1 +14004,594279,11,561,1 +14005,594279,176,8806,1 +14006,594279,37,1863,1 +14007,594279,6,346,1 +14008,594288,108,5447,1 +14009,594289,137,6877,1 +14010,594290,184,9232,1 +14011,594301,98,4925,1 +14012,594303,4,234,1 +14013,594304,91,4594,1 +14014,594309,94,4748,1 +14015,594312,20,1044,1 +14016,594312,36,1848,1 +14017,594315,43,2182,1 +14018,594329,83,4158,1 +14019,594333,132,6649,1 +14020,594336,141,7094,1 +14021,594336,94,4703,1 +14022,594336,102,5119,1 +14023,594336,132,6640,1 +14024,594336,161,8075,1 +14025,594339,62,3117,1 +14026,594340,2,147,1 +14027,594348,12,614,1 +14028,594354,17,861,1 +14029,594360,93,4680,1 +14030,594361,39,1971,1 +14031,594361,126,6321,1 +14032,594363,33,1693,1 +14033,594367,182,9137,1 +14034,594375,4,224,1 +14035,594376,91,4592,1 +14036,594378,181,9052,1 +14037,594409,181,9078,1 +14038,594456,56,2817,1 +14039,594459,138,6916,1 +14040,594483,61,3099,1 +14041,594573,135,6783,1 +14042,594588,189,9483,1 +14043,594590,126,6304,1 +14044,594745,92,4618,1 +14045,594853,191,9586,1 +14046,595200,157,7855,1 +14047,595213,25,1264,1 +14048,595215,48,2444,1 +14049,595224,127,6354,1 +14050,595233,44,2201,1 +14051,595236,74,3749,1 +14052,595237,174,8720,1 +14053,595248,18,940,1 +14054,595273,126,6322,1 +14055,595290,171,8563,1 +14056,595309,30,1530,1 +14057,595320,196,9807,1 +14058,595393,87,4385,1 +14059,595680,167,8370,1 +14060,595680,186,9324,1 +14061,595681,12,607,1 +14062,595684,28,1443,1 +14063,595690,162,8104,1 +14064,595694,123,6164,1 +14065,595694,135,6789,1 +14066,595698,64,3238,1 +14067,595704,88,4431,1 +14068,595704,29,1464,1 +14069,595705,2,119,1 +14070,595711,76,3816,1 +14071,595728,50,2549,1 +14072,595729,95,4774,1 +14073,595734,125,6286,1 +14074,595740,136,6814,1 +14075,595746,33,1660,1 +14076,595748,7,390,1 +14077,595752,168,8449,1 +14078,595753,23,1151,1 +14079,595861,40,2010,1 +14080,596641,151,7581,1 +14081,596649,62,3112,1 +14082,596652,125,6264,1 +14083,596652,187,9382,1 +14084,596665,126,6341,1 +14085,596666,95,4782,1 +14086,596736,168,8436,1 +14087,596778,168,8448,1 +14088,597124,40,2019,1 +14089,597126,24,1243,1 +14090,597132,98,4917,1 +14091,597132,84,4215,1 +14092,597132,60,3041,1 +14093,597136,170,8520,1 +14094,597144,170,8514,1 +14095,597147,185,9300,1 +14096,597147,32,1649,1 +14097,597156,41,2056,1 +14098,597157,40,2023,1 +14099,597206,54,2703,1 +14100,597216,137,6886,1 +14101,597288,45,2270,1 +14102,597327,118,5937,1 +14103,597600,174,8702,1 +14104,597612,93,4656,1 +14105,597618,34,1744,1 +14106,597675,74,3745,1 +14107,597682,22,1116,1 +14108,597688,139,6982,1 +14109,598080,29,1485,1 +14110,598081,84,4206,1 +14111,598083,68,3435,1 +14112,598092,131,6591,1 +14113,598093,181,9068,1 +14114,598095,14,711,1 +14115,598099,118,5950,1 +14116,598104,43,2178,1 +14117,598104,0,37,1 +14118,598105,179,8952,1 +14119,598108,145,7291,1 +14120,598128,144,7242,1 +14121,598132,123,6180,1 +14122,598140,178,8945,1 +14123,598146,63,3186,1 +14124,598161,68,3448,1 +14125,598161,138,6940,1 +14126,598167,37,1897,1 +14127,598177,58,2923,1 +14128,598188,22,1120,1 +14129,598272,187,9394,1 +14130,598296,183,9151,1 +14131,598565,196,9814,1 +14132,598572,94,4740,1 +14133,598629,177,8855,1 +14134,599040,64,3233,1 +14135,599065,128,6419,1 +14136,599085,153,7665,1 +14137,599111,170,8513,1 +14138,599124,146,7350,1 +14139,599132,99,5000,1 +14140,599136,16,801,1 +14141,599160,193,9667,1 +14142,599186,170,8506,1 +14143,599574,14,748,1 +14144,599604,47,2389,1 +14145,599700,114,5721,1 +14146,600000,191,9594,1 +14147,600001,196,9802,1 +14148,600009,72,3637,1 +14149,600013,122,6114,1 +14150,600038,109,5480,1 +14151,600096,32,1646,1 +14152,600126,163,8162,1 +14153,600591,99,4968,1 +14154,601464,151,7586,1 +14155,601502,68,3418,1 +14156,601944,150,7517,1 +14157,601994,116,5807,1 +14158,602031,175,8800,1 +14159,602077,176,8808,1 +14160,602400,114,5709,1 +14161,602400,154,7742,1 +14162,602402,138,6916,1 +14163,602403,142,7117,1 +14164,602413,104,5222,1 +14165,602415,15,759,1 +14166,602424,109,5466,1 +14167,602424,81,4060,1 +14168,602461,177,8881,1 +14169,602509,23,1154,1 +14170,602536,174,8738,1 +14171,602545,186,9317,1 +14172,602553,159,7953,1 +14173,602568,100,5037,1 +14174,602880,168,8435,1 +14175,602880,94,4723,1 +14176,602880,166,8342,1 +14177,602880,134,6707,1 +14178,602881,179,8958,1 +14179,602883,18,950,1 +14180,602887,124,6208,1 +14181,602889,85,4260,1 +14182,602892,194,9750,1 +14183,602892,163,8153,1 +14184,602892,121,6091,1 +14185,602898,131,6575,1 +14186,602904,50,2545,1 +14187,602907,24,1228,1 +14188,602907,127,6367,1 +14189,602928,161,8058,1 +14190,602928,12,637,1 +14191,602929,116,5810,1 +14192,602934,115,5766,1 +14193,602962,95,4788,1 +14194,602967,33,1666,1 +14195,602983,166,8317,1 +14196,603012,153,7677,1 +14197,603048,99,4951,1 +14198,603360,112,5630,1 +14199,603363,116,5805,1 +14200,603369,64,3226,1 +14201,603373,95,4779,1 +14202,603373,119,5966,1 +14203,603388,186,9344,1 +14204,603396,122,6114,1 +14205,603414,117,5871,1 +14206,603429,168,8447,1 +14207,603432,27,1393,1 +14208,603480,88,4436,1 +14209,604320,126,6314,1 +14210,604332,136,6811,1 +14211,604332,182,9126,1 +14212,604350,5,256,1 +14213,604350,91,4572,1 +14214,604363,41,2079,1 +14215,604368,142,7147,1 +14216,604392,61,3053,1 +14217,604548,180,9038,1 +14218,604800,180,9009,1 +14219,604831,51,2588,1 +14220,604843,115,5765,1 +14221,604856,150,7545,1 +14222,604875,118,5949,1 +14223,604890,34,1720,1 +14224,604920,158,7934,1 +14225,605292,10,513,1 +14226,605307,35,1766,1 +14227,605316,161,8087,1 +14228,605572,58,2905,1 +14229,605761,110,5509,1 +14230,605766,130,6527,1 +14231,605775,135,6767,1 +14232,605796,178,8915,1 +14233,605820,114,5746,1 +14234,606252,4,219,1 +14235,606252,14,707,1 +14236,606270,15,777,1 +14237,606313,172,8621,1 +14238,606507,116,5832,1 +14239,606720,36,1844,1 +14240,606721,145,7287,1 +14241,606723,185,9252,1 +14242,606753,23,1167,1 +14243,606769,133,6660,1 +14244,606775,51,2582,1 +14245,606870,42,2131,1 +14246,607204,161,8054,1 +14247,607681,113,5665,1 +14248,607689,185,9300,1 +14249,607692,145,7259,1 +14250,607692,186,9310,1 +14251,607693,168,8404,1 +14252,607694,64,3201,1 +14253,607695,48,2441,1 +14254,607705,181,9065,1 +14255,607710,158,7916,1 +14256,607716,163,8177,1 +14257,607722,183,9165,1 +14258,607722,192,9649,1 +14259,607725,166,8341,1 +14260,607728,192,9617,1 +14261,607740,28,1435,1 +14262,607740,27,1398,1 +14263,607752,143,7157,1 +14264,607824,3,171,1 +14265,608712,194,9730,1 +14266,609132,177,8867,1 +14267,609153,47,2364,1 +14268,609168,183,9182,1 +14269,609171,123,6154,1 +14270,609324,34,1726,1 +14271,609601,81,4098,1 +14272,609601,158,7948,1 +14273,609603,187,9377,1 +14274,609606,72,3624,1 +14275,609612,175,8762,1 +14276,609612,80,4041,1 +14277,609612,92,4606,1 +14278,609612,62,3124,1 +14279,609612,41,2076,1 +14280,609612,187,9389,1 +14281,609612,114,5744,1 +14282,609612,133,6659,1 +14283,609615,71,3571,1 +14284,609621,123,6171,1 +14285,609624,51,2587,1 +14286,609624,114,5739,1 +14287,609625,171,8581,1 +14288,609625,91,4577,1 +14289,609627,148,7417,1 +14290,609631,76,3823,1 +14291,609636,42,2101,1 +14292,609636,98,4949,1 +14293,609637,34,1710,1 +14294,609637,26,1305,1 +14295,609647,36,1831,1 +14296,609648,104,5234,1 +14297,609648,137,6877,1 +14298,609648,105,5289,1 +14299,609648,161,8073,1 +14300,609649,30,1531,1 +14301,609654,163,8152,1 +14302,609660,163,8175,1 +14303,609660,194,9718,1 +14304,609672,149,7466,1 +14305,609673,6,316,1 +14306,609674,195,9798,1 +14307,609682,129,6452,1 +14308,609684,67,3351,1 +14309,609685,154,7750,1 +14310,609697,106,5333,1 +14311,609702,124,6218,1 +14312,609708,91,4560,1 +14313,609708,101,5091,1 +14314,609720,21,1077,1 +14315,609721,73,3672,1 +14316,609723,179,8966,1 +14317,609852,137,6890,1 +14318,609876,139,6983,1 +14319,610080,149,7464,1 +14320,610080,69,3498,1 +14321,610080,34,1708,1 +14322,610080,26,1311,1 +14323,610080,76,3805,1 +14324,610080,77,3898,1 +14325,610082,100,5020,1 +14326,610092,178,8920,1 +14327,610092,73,3674,1 +14328,610092,180,9028,1 +14329,610094,199,9986,1 +14330,610101,14,703,1 +14331,610105,174,8716,1 +14332,610105,18,914,1 +14333,610117,175,8775,1 +14334,610129,63,3183,1 +14335,610140,151,7584,1 +14336,610140,117,5891,1 +14337,610141,154,7717,1 +14338,610143,32,1637,1 +14339,610153,161,8099,1 +14340,610164,159,7995,1 +14341,610165,0,36,1 +14342,610188,35,1793,1 +14343,610191,146,7324,1 +14344,610212,196,9845,1 +14345,610213,196,9809,1 +14346,610560,8,401,1 +14347,610560,168,8421,1 +14348,610560,64,3207,1 +14349,610561,189,9483,1 +14350,610563,30,1526,1 +14351,610564,65,3260,1 +14352,610567,72,3614,1 +14353,610572,152,7602,1 +14354,610573,103,5189,1 +14355,610575,156,7845,1 +14356,610584,169,8482,1 +14357,610584,138,6940,1 +14358,610586,21,1100,1 +14359,610587,104,5203,1 +14360,610594,57,2873,1 +14361,610597,82,4150,1 +14362,610608,128,6429,1 +14363,610615,142,7123,1 +14364,610620,94,4715,1 +14365,610621,183,9193,1 +14366,610624,149,7456,1 +14367,610632,191,9589,1 +14368,610649,48,2442,1 +14369,610668,122,6134,1 +14370,610716,98,4924,1 +14371,611040,145,7276,1 +14372,611040,180,9038,1 +14373,611040,136,6842,1 +14374,611041,84,4230,1 +14375,611041,156,7823,1 +14376,611041,180,9008,1 +14377,611049,76,3828,1 +14378,611052,62,3117,1 +14379,611052,5,267,1 +14380,611058,18,929,1 +14381,611061,107,5352,1 +14382,611064,124,6236,1 +14383,611070,14,718,1 +14384,611076,122,6105,1 +14385,611079,7,399,1 +14386,611079,173,8662,1 +14387,611091,148,7428,1 +14388,611100,177,8894,1 +14389,611112,67,3384,1 +14390,611121,1,92,1 +14391,611124,127,6385,1 +14392,611124,103,5157,1 +14393,611125,163,8166,1 +14394,611125,112,5634,1 +14395,611125,169,8474,1 +14396,611149,70,3527,1 +14397,611245,77,3893,1 +14398,611520,136,6822,1 +14399,611520,66,3348,1 +14400,611520,156,7808,1 +14401,611532,91,4560,1 +14402,611532,19,988,1 +14403,611536,161,8088,1 +14404,611542,41,2083,1 +14405,611544,123,6160,1 +14406,611547,84,4240,1 +14407,611556,159,7974,1 +14408,611556,135,6778,1 +14409,611558,58,2905,1 +14410,611568,172,8608,1 +14411,611604,92,4614,1 +14412,611604,79,3954,1 +14413,611616,189,9493,1 +14414,611654,46,2314,1 +14415,612001,99,4958,1 +14416,612012,119,5991,1 +14417,612013,199,9981,1 +14418,612024,85,4276,1 +14419,612144,199,9971,1 +14420,612480,185,9279,1 +14421,612480,174,8736,1 +14422,612480,144,7241,1 +14423,612481,30,1526,1 +14424,612494,68,3428,1 +14425,612504,103,5159,1 +14426,612540,156,7849,1 +14427,612564,28,1447,1 +14428,612576,35,1798,1 +14429,612732,95,4761,1 +14430,612960,18,941,1 +14431,612963,26,1314,1 +14432,612975,79,3997,1 +14433,612976,182,9104,1 +14434,613458,94,4746,1 +14435,613464,144,7238,1 +14436,613476,165,8285,1 +14437,613488,119,5986,1 +14438,613920,189,9476,1 +14439,613921,66,3342,1 +14440,613929,43,2165,1 +14441,613932,79,3970,1 +14442,613934,117,5882,1 +14443,613934,63,3155,1 +14444,613944,179,8989,1 +14445,613944,97,4854,1 +14446,613945,140,7039,1 +14447,613952,43,2190,1 +14448,613967,5,283,1 +14449,613968,42,2145,1 +14450,613981,126,6313,1 +14451,613994,178,8938,1 +14452,614005,47,2398,1 +14453,614007,79,3976,1 +14454,614077,135,6766,1 +14455,614136,148,7432,1 +14456,614400,52,2637,1 +14457,614400,23,1187,1 +14458,614413,121,6068,1 +14459,614418,96,4814,1 +14460,614424,123,6186,1 +14461,614429,1,84,1 +14462,614436,69,3487,1 +14463,614436,39,1960,1 +14464,614436,18,934,1 +14465,614436,97,4866,1 +14466,614445,70,3530,1 +14467,614487,99,4972,1 +14468,614522,14,707,1 +14469,614559,48,2437,1 +14470,614653,174,8719,1 +14471,615360,119,5979,1 +14472,615360,115,5765,1 +14473,615361,180,9029,1 +14474,615361,77,3864,1 +14475,615361,76,3802,1 +14476,615365,97,4872,1 +14477,615372,192,9640,1 +14478,615372,157,7893,1 +14479,615372,125,6274,1 +14480,615374,88,4427,1 +14481,615375,150,7528,1 +14482,615384,36,1847,1 +14483,615384,182,9138,1 +14484,615385,97,4863,1 +14485,615399,197,9870,1 +14486,615402,21,1054,1 +14487,615406,14,744,1 +14488,615408,146,7304,1 +14489,615409,184,9204,1 +14490,615421,91,4597,1 +14491,615432,16,804,1 +14492,615441,80,4035,1 +14493,615444,70,3544,1 +14494,615450,150,7511,1 +14495,615465,20,1031,1 +14496,615468,21,1090,1 +14497,615477,149,7460,1 +14498,615480,89,4488,1 +14499,615504,185,9280,1 +14500,615528,4,250,1 +14501,615840,144,7205,1 +14502,615842,84,4238,1 +14503,615847,91,4565,1 +14504,615858,165,8294,1 +14505,615864,129,6500,1 +14506,615897,140,7026,1 +14507,615900,143,7186,1 +14508,615918,35,1793,1 +14509,615922,143,7198,1 +14510,615924,169,8462,1 +14511,615926,96,4826,1 +14512,615948,133,6679,1 +14513,616333,43,2169,1 +14514,616344,164,8216,1 +14515,616345,119,6000,1 +14516,616347,95,4776,1 +14517,616356,100,5035,1 +14518,616356,123,6199,1 +14519,616357,116,5826,1 +14520,616368,34,1705,1 +14521,616400,185,9272,1 +14522,616404,16,812,1 +14523,616404,91,4571,1 +14524,616405,85,4278,1 +14525,616421,199,9984,1 +14526,616488,45,2293,1 +14527,616491,136,6838,1 +14528,616800,24,1234,1 +14529,616824,96,4803,1 +14530,616836,140,7023,1 +14531,616838,172,8641,1 +14532,616859,40,2008,1 +14533,616866,3,170,1 +14534,616920,114,5744,1 +14535,617006,199,9952,1 +14536,617292,100,5050,1 +14537,617293,146,7340,1 +14538,617760,104,5205,1 +14539,617760,176,8834,1 +14540,617761,178,8935,1 +14541,617761,124,6204,1 +14542,617770,39,1991,1 +14543,617777,44,2201,1 +14544,617784,74,3738,1 +14545,617796,91,4587,1 +14546,617815,92,4614,1 +14547,617832,105,5294,1 +14548,617917,27,1391,1 +14549,617976,112,5638,1 +14550,618265,55,2772,1 +14551,618285,20,1038,1 +14552,618334,28,1406,1 +14553,618364,67,3393,1 +14554,618367,90,4515,1 +14555,618732,5,286,1 +14556,618732,145,7257,1 +14557,618733,129,6481,1 +14558,618747,35,1791,1 +14559,618756,149,7487,1 +14560,618756,183,9194,1 +14561,618768,116,5810,1 +14562,618768,104,5248,1 +14563,618831,158,7904,1 +14564,619200,50,2524,1 +14565,619201,78,3927,1 +14566,619202,1,66,1 +14567,619203,7,354,1 +14568,619203,144,7225,1 +14569,619204,28,1437,1 +14570,619211,176,8843,1 +14571,619212,147,7387,1 +14572,619212,74,3739,1 +14573,619212,184,9248,1 +14574,619212,47,2365,1 +14575,619215,100,5045,1 +14576,619224,133,6691,1 +14577,619224,88,4443,1 +14578,619224,132,6622,1 +14579,619234,143,7185,1 +14580,619236,141,7070,1 +14581,619240,182,9150,1 +14582,619242,192,9649,1 +14583,619245,106,5311,1 +14584,619248,150,7501,1 +14585,619249,77,3871,1 +14586,619260,106,5326,1 +14587,619261,173,8689,1 +14588,619263,192,9619,1 +14589,619263,85,4252,1 +14590,619264,85,4259,1 +14591,619272,161,8052,1 +14592,619273,102,5150,1 +14593,619309,132,6602,1 +14594,619320,172,8612,1 +14595,619385,142,7146,1 +14596,619418,58,2950,1 +14597,620161,174,8725,1 +14598,620172,105,5296,1 +14599,620173,122,6110,1 +14600,620173,156,7834,1 +14601,620174,4,204,1 +14602,620174,56,2839,1 +14603,620184,106,5350,1 +14604,620184,192,9639,1 +14605,620188,8,430,1 +14606,620676,132,6626,1 +14607,620688,139,6968,1 +14608,620700,166,8343,1 +14609,621120,100,5028,1 +14610,621120,72,3645,1 +14611,621124,143,7187,1 +14612,621132,90,4506,1 +14613,621132,15,779,1 +14614,621153,85,4256,1 +14615,621156,172,8650,1 +14616,621168,161,8054,1 +14617,621181,81,4051,1 +14618,621193,198,9941,1 +14619,621240,63,3181,1 +14620,621264,96,4840,1 +14621,621277,42,2123,1 +14622,621660,163,8186,1 +14623,622082,47,2352,1 +14624,622089,41,2080,1 +14625,622092,121,6055,1 +14626,622094,60,3027,1 +14627,622097,29,1461,1 +14628,622102,130,6518,1 +14629,622104,107,5382,1 +14630,622107,181,9079,1 +14631,622113,167,8375,1 +14632,622116,40,2031,1 +14633,622130,48,2423,1 +14634,622144,129,6491,1 +14635,622164,78,3941,1 +14636,622167,65,3274,1 +14637,622176,154,7712,1 +14638,622192,15,795,1 +14639,622210,150,7530,1 +14640,622219,40,2048,1 +14641,622317,125,6253,1 +14642,622585,122,6131,1 +14643,622598,109,5453,1 +14644,622621,144,7220,1 +14645,622701,117,5900,1 +14646,623048,10,543,1 +14647,623058,195,9756,1 +14648,623065,170,8508,1 +14649,623088,171,8572,1 +14650,623100,168,8415,1 +14651,623524,162,8118,1 +14652,624000,52,2639,1 +14653,624000,134,6707,1 +14654,624001,45,2275,1 +14655,624001,146,7343,1 +14656,624036,90,4537,1 +14657,624597,72,3646,1 +14658,625440,171,8559,1 +14659,625443,180,9045,1 +14660,625546,113,5683,1 +14661,625572,131,6552,1 +14662,625920,37,1892,1 +14663,625921,192,9620,1 +14664,625923,153,7684,1 +14665,625932,118,5905,1 +14666,625933,103,5176,1 +14667,625945,174,8724,1 +14668,625948,113,5654,1 +14669,625950,96,4807,1 +14670,625957,15,755,1 +14671,625971,26,1310,1 +14672,625996,164,8222,1 +14673,626005,0,10,1 +14674,626007,95,4771,1 +14675,626016,49,2465,1 +14676,626437,166,8335,1 +14677,626550,5,280,1 +14678,626880,47,2393,1 +14679,626923,172,8643,1 +14680,626931,181,9100,1 +14681,627006,96,4819,1 +14682,627013,85,4275,1 +14683,627138,130,6525,1 +14684,627360,134,6722,1 +14685,627360,187,9366,1 +14686,627366,196,9804,1 +14687,627366,107,5391,1 +14688,627370,13,674,1 +14689,627372,156,7833,1 +14690,627373,120,6032,1 +14691,627373,46,2344,1 +14692,627375,104,5206,1 +14693,627384,48,2429,1 +14694,627384,193,9691,1 +14695,627385,96,4834,1 +14696,627385,181,9065,1 +14697,627390,134,6722,1 +14698,627397,133,6666,1 +14699,627408,76,3843,1 +14700,627410,117,5851,1 +14701,627420,107,5352,1 +14702,627423,166,8340,1 +14703,627432,141,7088,1 +14704,627457,58,2917,1 +14705,627457,19,954,1 +14706,627489,82,4144,1 +14707,627554,114,5712,1 +14708,627840,6,310,1 +14709,627840,167,8384,1 +14710,627840,6,330,1 +14711,627849,13,672,1 +14712,627852,95,4782,1 +14713,627855,39,1968,1 +14714,627876,170,8524,1 +14715,627913,89,4482,1 +14716,627937,89,4462,1 +14717,627954,0,3,1 +14718,627996,99,4975,1 +14719,628057,143,7184,1 +14720,628320,57,2894,1 +14721,628321,47,2357,1 +14722,628322,174,8729,1 +14723,628323,51,2587,1 +14724,628323,29,1499,1 +14725,628325,135,6786,1 +14726,628332,122,6118,1 +14727,628344,163,8173,1 +14728,628344,196,9839,1 +14729,628345,0,11,1 +14730,628353,66,3314,1 +14731,628356,10,515,1 +14732,628358,165,8295,1 +14733,628368,79,3952,1 +14734,628368,113,5680,1 +14735,628368,30,1501,1 +14736,628369,38,1939,1 +14737,628372,91,4561,1 +14738,628381,108,5424,1 +14739,628393,168,8402,1 +14740,628400,163,8177,1 +14741,628416,88,4440,1 +14742,628458,28,1429,1 +14743,628473,2,118,1 +14744,628803,10,534,1 +14745,628804,92,4617,1 +14746,628812,145,7288,1 +14747,628836,2,126,1 +14748,628836,12,624,1 +14749,628848,84,4223,1 +14750,628879,93,4678,1 +14751,628896,66,3304,1 +14752,628932,198,9911,1 +14753,628975,81,4062,1 +14754,628986,64,3203,1 +14755,629280,190,9527,1 +14756,629292,151,7584,1 +14757,629316,192,9623,1 +14758,629772,51,2553,1 +14759,629808,73,3676,1 +14760,629808,143,7156,1 +14761,629835,194,9728,1 +14762,629886,192,9649,1 +14763,629893,100,5042,1 +14764,630273,153,7699,1 +14765,630288,67,3394,1 +14766,630720,69,3464,1 +14767,630762,193,9669,1 +14768,630853,117,5868,1 +14769,630864,172,8610,1 +14770,631203,71,3580,1 +14771,631212,64,3211,1 +14772,631260,128,6444,1 +14773,631680,127,6399,1 +14774,631680,181,9056,1 +14775,631683,73,3688,1 +14776,631683,102,5104,1 +14777,631683,83,4182,1 +14778,631692,173,8695,1 +14779,631695,89,4455,1 +14780,631695,155,7791,1 +14781,631703,3,162,1 +14782,631704,101,5067,1 +14783,631704,181,9056,1 +14784,631719,75,3794,1 +14785,631741,30,1526,1 +14786,631755,178,8901,1 +14787,631767,163,8175,1 +14788,631801,97,4871,1 +14789,631848,180,9010,1 +14790,631884,76,3822,1 +14791,632160,142,7149,1 +14792,632160,77,3887,1 +14793,632160,148,7444,1 +14794,632184,40,2047,1 +14795,632190,165,8255,1 +14796,632233,53,2693,1 +14797,632460,57,2857,1 +14798,632640,107,5397,1 +14799,632652,69,3458,1 +14800,632664,133,6658,1 +14801,632808,13,682,1 +14802,633121,160,8045,1 +14803,633126,50,2542,1 +14804,633132,54,2704,1 +14805,633135,177,8886,1 +14806,633163,153,7653,1 +14807,633411,94,4727,1 +14808,634560,166,8309,1 +14809,634560,35,1762,1 +14810,634560,167,8399,1 +14811,634560,37,1855,1 +14812,634561,102,5146,1 +14813,634561,114,5744,1 +14814,634563,91,4568,1 +14815,634563,132,6604,1 +14816,634563,83,4173,1 +14817,634563,46,2313,1 +14818,634563,6,308,1 +14819,634563,70,3523,1 +14820,634572,35,1788,1 +14821,634572,48,2445,1 +14822,634572,45,2284,1 +14823,634572,0,3,1 +14824,634572,86,4304,1 +14825,634573,58,2912,1 +14826,634575,68,3442,1 +14827,634576,51,2551,1 +14828,634579,157,7874,1 +14829,634579,25,1277,1 +14830,634584,137,6885,1 +14831,634584,134,6723,1 +14832,634584,155,7760,1 +14833,634596,60,3005,1 +14834,634596,0,8,1 +14835,634596,38,1932,1 +14836,634596,61,3089,1 +14837,634597,164,8239,1 +14838,634597,199,9993,1 +14839,634608,17,883,1 +14840,634614,53,2673,1 +14841,634617,82,4111,1 +14842,634617,123,6171,1 +14843,634620,20,1015,1 +14844,634633,187,9358,1 +14845,634645,137,6876,1 +14846,634647,82,4150,1 +14847,634656,70,3545,1 +14848,634656,11,600,1 +14849,634657,136,6832,1 +14850,634659,178,8930,1 +14851,634668,32,1628,1 +14852,634668,107,5399,1 +14853,634669,81,4081,1 +14854,634725,42,2135,1 +14855,634743,149,7471,1 +14856,634774,38,1935,1 +14857,634782,77,3882,1 +14858,634836,112,5624,1 +14859,635040,114,5726,1 +14860,635049,115,5767,1 +14861,635052,180,9033,1 +14862,635064,99,4962,1 +14863,635068,174,8739,1 +14864,635160,12,631,1 +14865,635178,102,5137,1 +14866,635520,16,837,1 +14867,635529,23,1155,1 +14868,635547,81,4080,1 +14869,635568,115,5777,1 +14870,635620,90,4515,1 +14871,636000,79,3966,1 +14872,636013,72,3609,1 +14873,636016,75,3787,1 +14874,636027,53,2674,1 +14875,636027,45,2283,1 +14876,636036,156,7839,1 +14877,636480,193,9698,1 +14878,636480,155,7773,1 +14879,636480,159,7966,1 +14880,636480,113,5662,1 +14881,636480,150,7528,1 +14882,636480,198,9948,1 +14883,636480,143,7184,1 +14884,636481,160,8004,1 +14885,636482,62,3109,1 +14886,636483,187,9365,1 +14887,636485,62,3127,1 +14888,636486,51,2596,1 +14889,636490,16,812,1 +14890,636492,182,9103,1 +14891,636492,141,7090,1 +14892,636492,36,1829,1 +14893,636492,110,5523,1 +14894,636493,160,8003,1 +14895,636495,21,1071,1 +14896,636504,180,9041,1 +14897,636504,158,7934,1 +14898,636504,191,9589,1 +14899,636504,73,3695,1 +14900,636516,99,5000,1 +14901,636516,193,9698,1 +14902,636516,68,3432,1 +14903,636516,37,1872,1 +14904,636516,139,6986,1 +14905,636516,144,7225,1 +14906,636522,22,1143,1 +14907,636526,73,3685,1 +14908,636528,42,2101,1 +14909,636529,54,2750,1 +14910,636531,63,3193,1 +14911,636541,15,774,1 +14912,636543,96,4812,1 +14913,636552,148,7436,1 +14914,636554,57,2884,1 +14915,636555,163,8196,1 +14916,636562,133,6700,1 +14917,636579,65,3252,1 +14918,636579,149,7483,1 +14919,636582,29,1468,1 +14920,636588,148,7432,1 +14921,636600,110,5548,1 +14922,636600,170,8530,1 +14923,636614,3,192,1 +14924,636615,77,3879,1 +14925,636648,192,9619,1 +14926,636708,92,4623,1 +14927,637011,122,6106,1 +14928,637017,111,5598,1 +14929,637021,58,2932,1 +14930,637116,107,5397,1 +14931,637524,72,3609,1 +14932,637560,41,2060,1 +14933,637920,79,3958,1 +14934,637932,135,6788,1 +14935,637932,108,5427,1 +14936,637956,68,3406,1 +14937,637968,186,9330,1 +14938,637974,65,3298,1 +14939,637982,76,3812,1 +14940,638004,66,3332,1 +14941,638005,95,4773,1 +14942,638017,45,2270,1 +14943,638886,92,4645,1 +14944,638892,99,4995,1 +14945,638913,59,2989,1 +14946,639384,183,9165,1 +14947,639393,189,9474,1 +14948,639396,191,9599,1 +14949,639418,26,1326,1 +14950,639421,118,5933,1 +14951,639436,53,2667,1 +14952,639456,158,7921,1 +14953,639554,120,6015,1 +14954,639840,119,5988,1 +14955,639852,140,7043,1 +14956,639865,68,3410,1 +14957,639873,3,153,1 +14958,639901,128,6406,1 +14959,640320,105,5254,1 +14960,640324,98,4934,1 +14961,640332,51,2587,1 +14962,640344,37,1859,1 +14963,640345,187,9358,1 +14964,640347,125,6294,1 +14965,640356,141,7099,1 +14966,640357,143,7151,1 +14967,640389,162,8113,1 +14968,640398,197,9887,1 +14969,640405,111,5571,1 +14970,640801,152,7647,1 +14971,640803,3,179,1 +14972,640818,1,67,1 +14973,640860,67,3390,1 +14974,640881,133,6656,1 +14975,640957,148,7440,1 +14976,641280,9,459,1 +14977,641306,154,7711,1 +14978,641316,127,6384,1 +14979,641328,74,3705,1 +14980,641772,190,9520,1 +14981,641796,2,138,1 +14982,641856,48,2431,1 +14983,642241,115,5756,1 +14984,642264,72,3635,1 +14985,642720,170,8506,1 +14986,642723,77,3895,1 +14987,642725,41,2090,1 +14988,642732,78,3901,1 +14989,642737,58,2910,1 +14990,642750,70,3524,1 +14991,642757,31,1561,1 +14992,642864,196,9807,1 +14993,643200,88,4427,1 +14994,643200,56,2822,1 +14995,643200,54,2712,1 +14996,643200,75,3761,1 +14997,643201,180,9019,1 +14998,643205,177,8864,1 +14999,643206,15,759,1 +15000,643211,166,8330,1 +15001,643212,121,6073,1 +15002,643212,63,3170,1 +15003,643212,131,6557,1 +15004,643213,179,8994,1 +15005,643221,12,641,1 +15006,643224,161,8068,1 +15007,643224,86,4341,1 +15008,643227,102,5128,1 +15009,643233,18,934,1 +15010,643236,110,5513,1 +15011,643236,77,3887,1 +15012,643239,23,1159,1 +15013,643242,158,7912,1 +15014,643248,171,8551,1 +15015,643248,94,4748,1 +15016,643257,32,1646,1 +15017,643258,170,8529,1 +15018,643261,2,131,1 +15019,643262,136,6834,1 +15020,643263,152,7613,1 +15021,643263,25,1293,1 +15022,643265,175,8799,1 +15023,643272,8,444,1 +15024,643297,171,8597,1 +15025,643306,90,4549,1 +15026,643320,105,5299,1 +15027,643321,163,8196,1 +15028,643321,152,7619,1 +15029,643324,124,6207,1 +15030,643341,161,8072,1 +15031,643369,65,3279,1 +15032,643422,0,24,1 +15033,643461,191,9551,1 +15034,643512,132,6644,1 +15035,643804,65,3282,1 +15036,643884,117,5887,1 +15037,644160,190,9516,1 +15038,644161,133,6663,1 +15039,644172,161,8068,1 +15040,644176,128,6434,1 +15041,644197,59,2983,1 +15042,644197,62,3106,1 +15043,644214,38,1918,1 +15044,644220,105,5296,1 +15045,644311,45,2253,1 +15046,644328,12,610,1 +15047,644641,186,9345,1 +15048,644643,41,2063,1 +15049,644664,180,9021,1 +15050,644673,62,3115,1 +15051,644676,195,9764,1 +15052,644700,146,7339,1 +15053,644700,153,7698,1 +15054,644724,131,6586,1 +15055,645120,84,4246,1 +15056,645148,25,1268,1 +15057,645151,42,2118,1 +15058,645252,90,4530,1 +15059,645600,103,5173,1 +15060,645600,102,5140,1 +15061,645600,57,2899,1 +15062,645600,160,8023,1 +15063,645601,58,2938,1 +15064,645612,78,3927,1 +15065,645612,5,297,1 +15066,645624,150,7513,1 +15067,645625,184,9212,1 +15068,645627,165,8252,1 +15069,645672,132,6624,1 +15070,645708,145,7256,1 +15071,645750,169,8451,1 +15072,645852,133,6681,1 +15073,646113,84,4231,1 +15074,646116,43,2152,1 +15075,646239,168,8418,1 +15076,646560,26,1331,1 +15077,646560,198,9909,1 +15078,646560,111,5592,1 +15079,646566,56,2803,1 +15080,646570,169,8463,1 +15081,646584,63,3193,1 +15082,646588,49,2455,1 +15083,646596,48,2435,1 +15084,646602,64,3218,1 +15085,646620,94,4703,1 +15086,646662,134,6737,1 +15087,646704,133,6690,1 +15088,647052,40,2048,1 +15089,647527,75,3761,1 +15090,647532,180,9036,1 +15091,647544,142,7149,1 +15092,647556,112,5648,1 +15093,647557,99,4992,1 +15094,647559,170,8550,1 +15095,647562,162,8109,1 +15096,647577,19,989,1 +15097,647596,25,1289,1 +15098,647604,105,5271,1 +15099,647616,20,1040,1 +15100,647625,98,4940,1 +15101,647943,111,5555,1 +15102,648001,156,7812,1 +15103,648012,26,1315,1 +15104,648014,102,5150,1 +15105,648024,167,8368,1 +15106,648042,130,6524,1 +15107,648060,157,7893,1 +15108,648075,169,8474,1 +15109,648085,41,2084,1 +15110,648112,36,1808,1 +15111,648504,139,6981,1 +15112,648974,0,42,1 +15113,648987,65,3266,1 +15114,649041,165,8277,1 +15115,649094,117,5880,1 +15116,649443,16,850,1 +15117,649470,161,8075,1 +15118,649566,48,2435,1 +15119,649586,61,3054,1 +15120,649920,159,7967,1 +15121,649920,185,9268,1 +15122,649927,182,9108,1 +15123,649933,88,4444,1 +15124,649938,159,7975,1 +15125,649953,55,2790,1 +15126,649956,174,8745,1 +15127,649957,179,8963,1 +15128,649965,85,4281,1 +15129,649968,108,5447,1 +15130,649980,44,2204,1 +15131,649993,161,8087,1 +15132,650013,52,2644,1 +15133,650016,8,437,1 +15134,650018,157,7867,1 +15135,650029,41,2055,1 +15136,650046,13,657,1 +15137,650059,36,1803,1 +15138,650079,26,1337,1 +15139,650136,149,7457,1 +15140,650304,31,1556,1 +15141,650304,26,1307,1 +15142,650400,94,4737,1 +15143,650400,80,4027,1 +15144,650422,140,7005,1 +15145,651444,123,6184,1 +15146,651480,189,9471,1 +15147,651588,168,8420,1 +15148,651852,153,7674,1 +15149,651900,186,9309,1 +15150,651901,134,6732,1 +15151,651912,8,431,1 +15152,652370,23,1177,1 +15153,652380,198,9934,1 +15154,652800,156,7850,1 +15155,652800,15,779,1 +15156,652802,12,621,1 +15157,652802,162,8150,1 +15158,652805,95,4786,1 +15159,652806,110,5526,1 +15160,652811,0,37,1 +15161,652812,177,8878,1 +15162,652812,9,452,1 +15163,652812,85,4289,1 +15164,652813,168,8410,1 +15165,652816,35,1784,1 +15166,652818,142,7134,1 +15167,652821,185,9297,1 +15168,652824,48,2408,1 +15169,652824,183,9172,1 +15170,652830,16,807,1 +15171,652836,27,1369,1 +15172,652836,181,9094,1 +15173,652836,141,7063,1 +15174,652836,156,7838,1 +15175,652839,196,9820,1 +15176,652839,99,4974,1 +15177,652844,55,2777,1 +15178,652848,119,5967,1 +15179,652848,101,5092,1 +15180,652851,32,1636,1 +15181,652857,191,9571,1 +15182,652858,98,4946,1 +15183,652872,146,7343,1 +15184,652872,182,9118,1 +15185,652872,147,7388,1 +15186,652881,82,4147,1 +15187,652897,191,9557,1 +15188,652909,70,3524,1 +15189,652910,169,8456,1 +15190,653091,49,2464,1 +15191,653298,140,7029,1 +15192,653323,110,5525,1 +15193,653376,133,6654,1 +15194,653388,104,5211,1 +15195,653520,179,8954,1 +15196,653802,53,2700,1 +15197,653808,171,8594,1 +15198,653869,146,7336,1 +15199,653883,123,6164,1 +15200,654240,78,3929,1 +15201,654243,94,4737,1 +15202,654261,73,3677,1 +15203,654265,173,8681,1 +15204,654288,169,8482,1 +15205,654321,6,314,1 +15206,654360,67,3378,1 +15207,654720,125,6251,1 +15208,654720,165,8269,1 +15209,654720,139,6971,1 +15210,654720,30,1510,1 +15211,654720,105,5284,1 +15212,654720,121,6099,1 +15213,654726,146,7310,1 +15214,654726,194,9739,1 +15215,654726,130,6545,1 +15216,654726,177,8859,1 +15217,654727,53,2670,1 +15218,654732,123,6186,1 +15219,654732,68,3416,1 +15220,654732,131,6567,1 +15221,654733,64,3215,1 +15222,654733,56,2837,1 +15223,654733,80,4005,1 +15224,654733,81,4062,1 +15225,654735,102,5150,1 +15226,654744,87,4353,1 +15227,654744,29,1471,1 +15228,654745,60,3030,1 +15229,654756,4,217,1 +15230,654756,24,1227,1 +15231,654762,174,8722,1 +15232,654777,159,7969,1 +15233,654780,160,8046,1 +15234,654781,24,1236,1 +15235,654781,49,2482,1 +15236,654822,160,8021,1 +15237,654831,174,8711,1 +15238,654840,69,3492,1 +15239,654856,174,8742,1 +15240,654889,184,9213,1 +15241,654937,16,807,1 +15242,654954,31,1588,1 +15243,655203,55,2757,1 +15244,655224,103,5195,1 +15245,655270,4,246,1 +15246,655680,157,7860,1 +15247,655692,195,9755,1 +15248,655702,127,6384,1 +15249,655716,31,1566,1 +15250,655728,35,1790,1 +15251,655740,93,4698,1 +15252,655745,14,740,1 +15253,655752,84,4229,1 +15254,655752,109,5488,1 +15255,655757,178,8932,1 +15256,655760,37,1891,1 +15257,655764,100,5016,1 +15258,655803,168,8410,1 +15259,655857,156,7808,1 +15260,655875,43,2155,1 +15261,656685,114,5721,1 +15262,657120,20,1031,1 +15263,657136,173,8694,1 +15264,657600,186,9318,1 +15265,657600,10,549,1 +15266,657600,118,5942,1 +15267,657600,131,6578,1 +15268,657601,30,1545,1 +15269,657601,165,8297,1 +15270,657601,177,8868,1 +15271,657603,54,2714,1 +15272,657603,81,4096,1 +15273,657606,44,2236,1 +15274,657606,112,5648,1 +15275,657612,182,9141,1 +15276,657612,121,6100,1 +15277,657612,119,5997,1 +15278,657612,32,1604,1 +15279,657612,31,1589,1 +15280,657612,26,1317,1 +15281,657614,129,6469,1 +15282,657614,149,7456,1 +15283,657615,40,2008,1 +15284,657615,147,7393,1 +15285,657619,105,5279,1 +15286,657622,45,2297,1 +15287,657624,10,506,1 +15288,657624,147,7357,1 +15289,657624,127,6363,1 +15290,657624,59,2997,1 +15291,657625,0,10,1 +15292,657630,75,3784,1 +15293,657633,92,4615,1 +15294,657636,151,7553,1 +15295,657636,152,7619,1 +15296,657637,195,9792,1 +15297,657642,127,6367,1 +15298,657645,91,4597,1 +15299,657648,119,5963,1 +15300,657648,91,4557,1 +15301,657648,165,8300,1 +15302,657649,146,7315,1 +15303,657649,196,9810,1 +15304,657651,185,9265,1 +15305,657660,36,1831,1 +15306,657660,64,3240,1 +15307,657660,24,1241,1 +15308,657661,122,6138,1 +15309,657669,135,6800,1 +15310,657672,172,8604,1 +15311,657672,10,547,1 +15312,657672,93,4683,1 +15313,657684,1,79,1 +15314,657684,13,651,1 +15315,657685,54,2716,1 +15316,657685,115,5753,1 +15317,657696,61,3099,1 +15318,657708,156,7818,1 +15319,657709,110,5534,1 +15320,657720,143,7183,1 +15321,657726,94,4717,1 +15322,657732,101,5069,1 +15323,657732,14,749,1 +15324,657732,189,9483,1 +15325,657734,92,4603,1 +15326,657737,79,3992,1 +15327,657744,178,8906,1 +15328,657768,7,374,1 +15329,657780,38,1943,1 +15330,657804,59,2996,1 +15331,658560,121,6097,1 +15332,658561,115,5775,1 +15333,658596,164,8243,1 +15334,658609,47,2361,1 +15335,658647,188,9428,1 +15336,659040,156,7803,1 +15337,659209,57,2865,1 +15338,659532,81,4069,1 +15339,659532,140,7037,1 +15340,659532,174,8748,1 +15341,659538,64,3228,1 +15342,659544,190,9511,1 +15343,659544,175,8779,1 +15344,659550,108,5433,1 +15345,659556,20,1013,1 +15346,659557,148,7408,1 +15347,659557,105,5283,1 +15348,659616,152,7638,1 +15349,659617,7,386,1 +15350,659631,178,8949,1 +15351,659638,89,4455,1 +15352,660009,140,7043,1 +15353,660012,56,2834,1 +15354,660960,178,8918,1 +15355,660961,149,7481,1 +15356,660972,74,3718,1 +15357,660975,132,6628,1 +15358,660984,159,7995,1 +15359,661015,59,2998,1 +15360,661039,169,8464,1 +15361,661041,57,2874,1 +15362,661164,19,966,1 +15363,661440,47,2355,1 +15364,661440,128,6443,1 +15365,661440,59,2996,1 +15366,661440,157,7865,1 +15367,661440,46,2334,1 +15368,661441,29,1494,1 +15369,661446,93,4663,1 +15370,661448,58,2915,1 +15371,661452,14,739,1 +15372,661452,165,8276,1 +15373,661452,43,2155,1 +15374,661452,58,2901,1 +15375,661453,91,4572,1 +15376,661453,128,6425,1 +15377,661454,161,8069,1 +15378,661455,135,6773,1 +15379,661455,89,4490,1 +15380,661466,45,2298,1 +15381,661471,130,6529,1 +15382,661476,113,5652,1 +15383,661476,2,147,1 +15384,661477,2,120,1 +15385,661482,182,9146,1 +15386,661484,127,6382,1 +15387,661488,108,5436,1 +15388,661488,136,6815,1 +15389,661489,9,460,1 +15390,661490,96,4801,1 +15391,661500,142,7117,1 +15392,661500,65,3264,1 +15393,661501,37,1864,1 +15394,661501,53,2658,1 +15395,661507,177,8892,1 +15396,661509,63,3185,1 +15397,661512,186,9331,1 +15398,661524,179,8989,1 +15399,661525,144,7202,1 +15400,661530,166,8333,1 +15401,661533,140,7026,1 +15402,661537,52,2619,1 +15403,661560,35,1800,1 +15404,661563,11,584,1 +15405,661573,18,919,1 +15406,661656,16,803,1 +15407,661813,15,786,1 +15408,661920,84,4213,1 +15409,661929,56,2822,1 +15410,661932,197,9883,1 +15411,661932,179,8989,1 +15412,661932,38,1906,1 +15413,661932,108,5429,1 +15414,661951,165,8294,1 +15415,661956,19,997,1 +15416,661956,91,4582,1 +15417,661962,25,1262,1 +15418,661980,118,5935,1 +15419,661980,66,3312,1 +15420,661981,190,9525,1 +15421,661997,144,7250,1 +15422,662044,83,4170,1 +15423,662068,29,1488,1 +15424,662403,132,6627,1 +15425,663462,73,3654,1 +15426,663842,3,177,1 +15427,664320,9,496,1 +15428,664321,144,7229,1 +15429,664324,179,8968,1 +15430,664428,119,5953,1 +15431,664440,142,7101,1 +15432,664678,106,5330,1 +15433,664821,19,993,1 +15434,664824,99,4983,1 +15435,664853,164,8233,1 +15436,664993,105,5269,1 +15437,665280,37,1868,1 +15438,665280,117,5885,1 +15439,665280,186,9341,1 +15440,665280,97,4856,1 +15441,665280,68,3419,1 +15442,665281,64,3216,1 +15443,665281,159,7998,1 +15444,665281,77,3865,1 +15445,665283,14,734,1 +15446,665289,138,6925,1 +15447,665289,47,2394,1 +15448,665292,21,1096,1 +15449,665292,194,9722,1 +15450,665292,117,5894,1 +15451,665292,96,4811,1 +15452,665293,106,5336,1 +15453,665295,45,2268,1 +15454,665296,99,4997,1 +15455,665304,93,4672,1 +15456,665304,192,9630,1 +15457,665304,69,3477,1 +15458,665304,47,2374,1 +15459,665305,108,5448,1 +15460,665305,140,7035,1 +15461,665305,190,9504,1 +15462,665307,136,6804,1 +15463,665307,153,7698,1 +15464,665308,147,7361,1 +15465,665310,117,5864,1 +15466,665311,117,5900,1 +15467,665313,188,9446,1 +15468,665314,84,4230,1 +15469,665316,81,4094,1 +15470,665316,140,7024,1 +15471,665316,164,8224,1 +15472,665317,109,5476,1 +15473,665323,95,4783,1 +15474,665328,192,9612,1 +15475,665343,139,6992,1 +15476,665362,70,3507,1 +15477,665364,134,6711,1 +15478,665369,129,6465,1 +15479,665371,34,1729,1 +15480,665376,127,6371,1 +15481,665376,24,1212,1 +15482,665390,172,8642,1 +15483,665395,72,3648,1 +15484,665396,21,1079,1 +15485,665400,86,4328,1 +15486,665412,43,2165,1 +15487,665412,149,7463,1 +15488,665413,144,7241,1 +15489,665421,151,7587,1 +15490,665460,32,1645,1 +15491,665461,153,7689,1 +15492,665485,1,99,1 +15493,665496,193,9696,1 +15494,665508,103,5178,1 +15495,665760,75,3766,1 +15496,665761,16,808,1 +15497,665769,70,3514,1 +15498,665770,36,1850,1 +15499,665809,135,6797,1 +15500,665826,150,7519,1 +15501,665845,148,7439,1 +15502,665850,159,7988,1 +15503,665934,32,1641,1 +15504,665968,98,4925,1 +15505,666061,47,2363,1 +15506,666240,182,9136,1 +15507,666504,47,2389,1 +15508,666720,98,4904,1 +15509,666720,65,3283,1 +15510,666726,126,6321,1 +15511,666733,94,4707,1 +15512,666735,30,1526,1 +15513,666756,60,3042,1 +15514,666771,111,5600,1 +15515,666780,160,8020,1 +15516,666781,50,2513,1 +15517,666792,163,8168,1 +15518,666793,86,4302,1 +15519,666804,153,7675,1 +15520,666816,68,3423,1 +15521,666816,140,7037,1 +15522,666819,19,1000,1 +15523,666841,78,3904,1 +15524,666960,29,1488,1 +15525,667200,197,9871,1 +15526,667201,188,9450,1 +15527,667212,43,2180,1 +15528,667216,116,5824,1 +15529,667224,3,180,1 +15530,667224,52,2601,1 +15531,667224,186,9336,1 +15532,667236,161,8098,1 +15533,667239,165,8299,1 +15534,667245,100,5005,1 +15535,667260,16,824,1 +15536,667284,1,58,1 +15537,667286,138,6945,1 +15538,667296,85,4274,1 +15539,667298,32,1647,1 +15540,667299,12,639,1 +15541,667314,103,5177,1 +15542,667413,93,4685,1 +15543,667680,52,2635,1 +15544,667680,98,4943,1 +15545,667680,138,6906,1 +15546,667681,197,9896,1 +15547,667681,84,4243,1 +15548,667681,55,2758,1 +15549,667687,193,9657,1 +15550,667689,190,9525,1 +15551,667692,170,8533,1 +15552,667693,83,4168,1 +15553,667694,30,1514,1 +15554,667710,89,4492,1 +15555,667717,83,4197,1 +15556,667717,128,6414,1 +15557,667718,115,5789,1 +15558,667722,10,534,1 +15559,667722,138,6913,1 +15560,667728,132,6614,1 +15561,667729,193,9656,1 +15562,667730,158,7904,1 +15563,667733,32,1647,1 +15564,667741,120,6019,1 +15565,667752,47,2390,1 +15566,667752,22,1141,1 +15567,667761,166,8350,1 +15568,667767,197,9888,1 +15569,667799,98,4919,1 +15570,667800,112,5644,1 +15571,667803,123,6171,1 +15572,667873,140,7014,1 +15573,667878,187,9352,1 +15574,667910,50,2525,1 +15575,668163,158,7924,1 +15576,668185,134,6710,1 +15577,668208,48,2414,1 +15578,668212,98,4931,1 +15579,668640,130,6507,1 +15580,668640,89,4458,1 +15581,668644,63,3187,1 +15582,668646,127,6365,1 +15583,668689,122,6117,1 +15584,668695,158,7907,1 +15585,668706,149,7469,1 +15586,668760,157,7897,1 +15587,668764,131,6571,1 +15588,668823,167,8397,1 +15589,669600,190,9542,1 +15590,669601,76,3830,1 +15591,669603,27,1391,1 +15592,669605,70,3509,1 +15593,669609,179,8960,1 +15594,669611,4,215,1 +15595,669630,89,4490,1 +15596,669636,38,1907,1 +15597,669637,122,6131,1 +15598,669648,117,5863,1 +15599,669672,159,7986,1 +15600,669684,93,4659,1 +15601,669697,132,6615,1 +15602,669705,54,2739,1 +15603,669708,83,4188,1 +15604,669807,54,2728,1 +15605,670080,73,3680,1 +15606,670080,106,5338,1 +15607,670080,46,2330,1 +15608,670080,77,3897,1 +15609,670080,132,6632,1 +15610,670082,10,536,1 +15611,670083,108,5421,1 +15612,670090,168,8430,1 +15613,670101,30,1528,1 +15614,670104,59,2976,1 +15615,670104,20,1017,1 +15616,670104,90,4527,1 +15617,670116,168,8436,1 +15618,670119,98,4944,1 +15619,670129,72,3614,1 +15620,670130,155,7793,1 +15621,670134,140,7006,1 +15622,670140,88,4418,1 +15623,670140,120,6008,1 +15624,670142,174,8742,1 +15625,670164,23,1179,1 +15626,670177,191,9585,1 +15627,670212,48,2401,1 +15628,670212,182,9149,1 +15629,670219,162,8106,1 +15630,670239,67,3390,1 +15631,670260,5,278,1 +15632,670284,16,811,1 +15633,670287,166,8327,1 +15634,670320,65,3273,1 +15635,670332,113,5697,1 +15636,670560,66,3309,1 +15637,670560,48,2417,1 +15638,670560,123,6188,1 +15639,670560,163,8199,1 +15640,670560,9,475,1 +15641,670561,123,6155,1 +15642,670562,143,7161,1 +15643,670563,39,1974,1 +15644,670569,58,2940,1 +15645,670572,120,6038,1 +15646,670572,190,9550,1 +15647,670572,149,7455,1 +15648,670572,144,7242,1 +15649,670576,139,6956,1 +15650,670584,80,4020,1 +15651,670585,78,3928,1 +15652,670596,160,8044,1 +15653,670596,40,2031,1 +15654,670596,92,4614,1 +15655,670599,38,1929,1 +15656,670602,67,3357,1 +15657,670608,54,2725,1 +15658,670611,185,9289,1 +15659,670612,73,3672,1 +15660,670621,162,8135,1 +15661,670621,70,3528,1 +15662,670633,107,5356,1 +15663,670634,51,2552,1 +15664,670670,45,2255,1 +15665,670692,82,4136,1 +15666,670719,53,2696,1 +15667,670752,199,9996,1 +15668,670765,23,1188,1 +15669,670776,71,3551,1 +15670,670791,48,2411,1 +15671,671040,143,7183,1 +15672,671040,178,8950,1 +15673,671065,139,6969,1 +15674,671076,117,5868,1 +15675,671089,37,1866,1 +15676,671093,103,5158,1 +15677,671148,20,1001,1 +15678,671161,114,5742,1 +15679,671161,164,8232,1 +15680,671184,151,7589,1 +15681,671520,160,8037,1 +15682,671520,80,4004,1 +15683,671520,70,3512,1 +15684,671525,32,1615,1 +15685,671526,66,3310,1 +15686,671526,149,7470,1 +15687,671529,31,1599,1 +15688,671533,66,3342,1 +15689,671535,114,5742,1 +15690,671535,156,7846,1 +15691,671538,189,9451,1 +15692,671542,105,5276,1 +15693,671544,76,3812,1 +15694,671544,104,5248,1 +15695,671545,196,9841,1 +15696,671547,111,5568,1 +15697,671557,128,6411,1 +15698,671562,12,624,1 +15699,671569,138,6949,1 +15700,671570,41,2065,1 +15701,671598,48,2434,1 +15702,671604,109,5475,1 +15703,671605,114,5733,1 +15704,671607,73,3671,1 +15705,671607,110,5507,1 +15706,671619,183,9164,1 +15707,671628,129,6459,1 +15708,671629,100,5027,1 +15709,671644,20,1009,1 +15710,671700,53,2683,1 +15711,672000,105,5274,1 +15712,672001,109,5457,1 +15713,672004,114,5718,1 +15714,672012,30,1501,1 +15715,672015,96,4836,1 +15716,672018,17,892,1 +15717,672022,24,1210,1 +15718,672027,116,5830,1 +15719,672036,179,8995,1 +15720,672036,123,6189,1 +15721,672036,157,7875,1 +15722,672063,103,5170,1 +15723,672097,62,3128,1 +15724,672115,11,587,1 +15725,672150,151,7588,1 +15726,672190,168,8413,1 +15727,672483,90,4510,1 +15728,672490,183,9196,1 +15729,672494,40,2012,1 +15730,672552,37,1900,1 +15731,672614,73,3664,1 +15732,673104,79,3982,1 +15733,673449,178,8929,1 +15734,673476,75,3783,1 +15735,673476,90,4544,1 +15736,673539,82,4107,1 +15737,673552,179,8996,1 +15738,673924,61,3064,1 +15739,673926,85,4294,1 +15740,673933,125,6284,1 +15741,674103,72,3626,1 +15742,674124,117,5885,1 +15743,674400,174,8748,1 +15744,674450,195,9752,1 +15745,674471,127,6381,1 +15746,674532,96,4822,1 +15747,674883,47,2382,1 +15748,674889,62,3128,1 +15749,674893,20,1029,1 +15750,674896,8,441,1 +15751,674904,103,5166,1 +15752,674913,123,6162,1 +15753,674914,105,5296,1 +15754,674916,149,7492,1 +15755,674917,3,181,1 +15756,674920,123,6155,1 +15757,674922,176,8802,1 +15758,674928,132,6614,1 +15759,674930,92,4634,1 +15760,674937,34,1715,1 +15761,674946,10,536,1 +15762,674946,42,2118,1 +15763,674977,12,632,1 +15764,674980,34,1750,1 +15765,675372,167,8395,1 +15766,675376,22,1122,1 +15767,675432,34,1734,1 +15768,675468,68,3419,1 +15769,675601,54,2737,1 +15770,675852,119,5982,1 +15771,675853,114,5716,1 +15772,675853,90,4512,1 +15773,675853,4,232,1 +15774,675864,45,2292,1 +15775,675873,189,9472,1 +15776,675883,137,6859,1 +15777,675903,124,6250,1 +15778,675943,58,2929,1 +15779,676332,0,36,1 +15780,676392,94,4717,1 +15781,676800,54,2713,1 +15782,676800,131,6552,1 +15783,676800,29,1471,1 +15784,676801,155,7799,1 +15785,676833,60,3031,1 +15786,676836,94,4736,1 +15787,676836,180,9037,1 +15788,676838,58,2915,1 +15789,676848,82,4147,1 +15790,676862,40,2007,1 +15791,676878,7,387,1 +15792,676920,158,7916,1 +15793,677292,83,4198,1 +15794,677316,23,1176,1 +15795,677448,87,4400,1 +15796,677760,197,9893,1 +15797,677760,61,3072,1 +15798,677761,116,5827,1 +15799,677761,59,2986,1 +15800,677764,180,9045,1 +15801,677766,33,1681,1 +15802,677772,92,4602,1 +15803,677772,151,7578,1 +15804,677772,164,8212,1 +15805,677772,149,7470,1 +15806,677772,81,4068,1 +15807,677772,0,14,1 +15808,677775,160,8047,1 +15809,677782,179,8955,1 +15810,677784,171,8585,1 +15811,677784,144,7213,1 +15812,677785,172,8624,1 +15813,677785,18,938,1 +15814,677790,186,9338,1 +15815,677796,163,8181,1 +15816,677796,107,5367,1 +15817,677817,138,6901,1 +15818,677820,179,8960,1 +15819,677822,27,1385,1 +15820,677823,197,9865,1 +15821,677832,134,6739,1 +15822,677835,143,7180,1 +15823,677844,122,6112,1 +15824,677844,120,6033,1 +15825,677846,140,7006,1 +15826,677847,71,3578,1 +15827,677868,107,5368,1 +15828,677869,25,1262,1 +15829,677895,129,6488,1 +15830,677928,174,8748,1 +15831,677928,18,929,1 +15832,677932,31,1573,1 +15833,677977,152,7606,1 +15834,678303,90,4524,1 +15835,678720,27,1354,1 +15836,678720,97,4866,1 +15837,678729,135,6771,1 +15838,678732,181,9080,1 +15839,678733,135,6782,1 +15840,678735,135,6752,1 +15841,678744,51,2586,1 +15842,678746,117,5874,1 +15843,678746,97,4877,1 +15844,678747,115,5795,1 +15845,678748,143,7184,1 +15846,678756,197,9875,1 +15847,678756,24,1207,1 +15848,678762,151,7571,1 +15849,678780,101,5070,1 +15850,678781,114,5728,1 +15851,678786,138,6937,1 +15852,678826,105,5275,1 +15853,678876,68,3404,1 +15854,679201,166,8335,1 +15855,679201,132,6602,1 +15856,679209,30,1517,1 +15857,679212,8,423,1 +15858,679213,23,1152,1 +15859,679217,45,2259,1 +15860,679224,175,8778,1 +15861,679224,186,9310,1 +15862,679236,72,3633,1 +15863,679248,23,1192,1 +15864,679248,88,4442,1 +15865,679248,11,582,1 +15866,679249,154,7744,1 +15867,679272,161,8062,1 +15868,679273,82,4144,1 +15869,679273,114,5718,1 +15870,679308,10,514,1 +15871,679308,144,7214,1 +15872,679332,166,8327,1 +15873,679341,82,4125,1 +15874,679359,143,7163,1 +15875,679368,2,139,1 +15876,679693,9,469,1 +15877,680160,98,4913,1 +15878,680160,183,9183,1 +15879,680160,87,4389,1 +15880,680160,7,398,1 +15881,680161,7,389,1 +15882,680161,9,499,1 +15883,680172,129,6463,1 +15884,680173,111,5579,1 +15885,680174,47,2393,1 +15886,680184,193,9675,1 +15887,680187,172,8645,1 +15888,680188,62,3127,1 +15889,680191,165,8271,1 +15890,680193,37,1898,1 +15891,680196,75,3769,1 +15892,680196,138,6945,1 +15893,680196,131,6575,1 +15894,680196,75,3770,1 +15895,680199,44,2204,1 +15896,680202,194,9741,1 +15897,680202,157,7861,1 +15898,680205,176,8829,1 +15899,680208,89,4455,1 +15900,680208,24,1201,1 +15901,680220,20,1012,1 +15902,680220,112,5609,1 +15903,680220,144,7212,1 +15904,680221,199,10000,1 +15905,680221,21,1055,1 +15906,680256,169,8484,1 +15907,680256,134,6725,1 +15908,680258,55,2785,1 +15909,680268,47,2369,1 +15910,680268,8,445,1 +15911,680273,199,9957,1 +15912,680281,101,5078,1 +15913,680317,123,6162,1 +15914,680328,68,3438,1 +15915,680334,154,7750,1 +15916,680652,68,3448,1 +15917,680697,47,2393,1 +15918,680700,142,7133,1 +15919,681120,5,289,1 +15920,681132,149,7473,1 +15921,681132,23,1177,1 +15922,681145,72,3628,1 +15923,681163,199,9996,1 +15924,681240,34,1720,1 +15925,681357,19,975,1 +15926,681651,152,7646,1 +15927,681759,35,1771,1 +15928,682080,25,1298,1 +15929,682080,156,7821,1 +15930,682080,188,9410,1 +15931,682081,144,7223,1 +15932,682092,147,7354,1 +15933,682092,121,6093,1 +15934,682092,173,8686,1 +15935,682093,142,7148,1 +15936,682104,0,23,1 +15937,682104,6,304,1 +15938,682104,82,4106,1 +15939,682108,176,8806,1 +15940,682116,134,6721,1 +15941,682120,105,5286,1 +15942,682129,185,9266,1 +15943,682161,107,5390,1 +15944,682164,60,3020,1 +15945,682164,98,4911,1 +15946,682213,135,6794,1 +15947,682560,33,1686,1 +15948,682572,35,1777,1 +15949,682573,82,4130,1 +15950,682575,79,3982,1 +15951,682611,165,8289,1 +15952,682646,74,3747,1 +15953,682668,28,1412,1 +15954,683562,21,1093,1 +15955,684003,39,1989,1 +15956,684003,82,4120,1 +15957,684018,159,7995,1 +15958,684023,171,8570,1 +15959,684024,184,9245,1 +15960,684024,113,5685,1 +15961,684039,194,9714,1 +15962,684066,134,6745,1 +15963,684213,20,1006,1 +15964,684480,179,8971,1 +15965,684481,19,982,1 +15966,684490,172,8632,1 +15967,684493,41,2077,1 +15968,684493,35,1771,1 +15969,684554,174,8728,1 +15970,684564,66,3341,1 +15971,684570,15,753,1 +15972,684571,64,3230,1 +15973,684573,89,4494,1 +15974,684576,74,3709,1 +15975,684600,59,2978,1 +15976,684612,55,2764,1 +15977,684684,109,5500,1 +15978,684961,44,2219,1 +15979,684972,53,2675,1 +15980,684972,103,5172,1 +15981,684985,180,9032,1 +15982,684992,161,8066,1 +15983,685029,126,6307,1 +15984,685034,86,4329,1 +15985,685269,116,5803,1 +15986,685474,12,604,1 +15987,685480,56,2829,1 +15988,685490,28,1429,1 +15989,685501,5,262,1 +15990,685602,34,1743,1 +15991,685944,0,11,1 +15992,685947,164,8244,1 +15993,686040,9,470,1 +15994,686140,101,5060,1 +15995,686173,160,8027,1 +15996,686401,64,3223,1 +15997,686401,97,4861,1 +15998,686413,17,900,1 +15999,686425,168,8426,1 +16000,686477,165,8293,1 +16001,686508,98,4926,1 +16002,686895,23,1187,1 +16003,686898,176,8839,1 +16004,686900,13,669,1 +16005,686916,157,7886,1 +16006,686962,23,1187,1 +16007,686966,172,8629,1 +16008,687000,191,9598,1 +16009,687031,188,9434,1 +16010,687074,166,8336,1 +16011,687372,123,6162,1 +16012,687378,34,1701,1 +16013,687378,21,1100,1 +16014,687384,103,5188,1 +16015,687465,94,4744,1 +16016,687841,115,5764,1 +16017,687854,150,7537,1 +16018,688320,74,3709,1 +16019,688320,163,8158,1 +16020,688320,96,4825,1 +16021,688321,4,215,1 +16022,688323,64,3242,1 +16023,688333,122,6112,1 +16024,688333,191,9569,1 +16025,688344,21,1078,1 +16026,688345,4,223,1 +16027,688350,169,8451,1 +16028,688355,8,433,1 +16029,688356,40,2042,1 +16030,688356,9,458,1 +16031,688359,72,3622,1 +16032,688371,160,8035,1 +16033,688380,138,6945,1 +16034,688381,48,2414,1 +16035,688395,165,8262,1 +16036,688431,24,1236,1 +16037,688477,118,5915,1 +16038,688800,133,6658,1 +16039,688812,76,3838,1 +16040,688827,60,3020,1 +16041,688837,92,4628,1 +16042,688848,62,3123,1 +16043,688866,168,8432,1 +16044,688900,123,6192,1 +16045,688932,38,1946,1 +16046,689318,73,3687,1 +16047,689320,120,6029,1 +16048,689335,37,1875,1 +16049,689343,194,9717,1 +16050,689426,55,2761,1 +16051,689772,171,8594,1 +16052,689773,76,3849,1 +16053,689789,33,1693,1 +16054,689814,173,8677,1 +16055,689850,123,6169,1 +16056,689871,24,1219,1 +16057,689941,24,1247,1 +16058,690247,86,4343,1 +16059,690288,104,5205,1 +16060,690288,113,5695,1 +16061,690385,33,1678,1 +16062,690732,122,6145,1 +16063,690741,96,4801,1 +16064,690746,168,8446,1 +16065,690753,80,4034,1 +16066,690755,102,5133,1 +16067,690756,65,3263,1 +16068,690756,126,6315,1 +16069,690828,54,2717,1 +16070,691201,28,1432,1 +16071,691203,128,6440,1 +16072,691208,142,7122,1 +16073,691212,62,3148,1 +16074,691215,43,2171,1 +16075,691215,197,9891,1 +16076,691222,135,6795,1 +16077,691235,163,8183,1 +16078,691236,108,5408,1 +16079,691242,36,1828,1 +16080,691248,108,5414,1 +16081,691248,21,1089,1 +16082,691248,109,5482,1 +16083,691249,151,7563,1 +16084,691249,54,2733,1 +16085,691269,44,2236,1 +16086,691276,1,89,1 +16087,691296,101,5068,1 +16088,691345,16,841,1 +16089,691428,151,7573,1 +16090,691680,165,8253,1 +16091,691693,138,6936,1 +16092,691710,176,8823,1 +16093,691713,144,7235,1 +16094,691721,199,9988,1 +16095,691754,167,8379,1 +16096,691764,119,5972,1 +16097,691803,8,447,1 +16098,691858,99,4959,1 +16099,692246,195,9765,1 +16100,692640,63,3172,1 +16101,692640,9,492,1 +16102,692652,40,2040,1 +16103,692666,31,1552,1 +16104,692686,168,8431,1 +16105,693120,65,3262,1 +16106,693120,23,1190,1 +16107,693124,199,9971,1 +16108,693132,59,2990,1 +16109,693132,191,9578,1 +16110,693133,152,7614,1 +16111,693134,189,9466,1 +16112,693135,45,2258,1 +16113,693138,141,7058,1 +16114,693138,134,6740,1 +16115,693144,145,7298,1 +16116,693144,103,5187,1 +16117,693144,89,4464,1 +16118,693145,102,5105,1 +16119,693146,124,6245,1 +16120,693147,35,1771,1 +16121,693147,92,4603,1 +16122,693156,57,2859,1 +16123,693157,89,4475,1 +16124,693158,126,6324,1 +16125,693160,192,9625,1 +16126,693162,42,2123,1 +16127,693162,134,6708,1 +16128,693163,157,7888,1 +16129,693166,192,9650,1 +16130,693171,96,4812,1 +16131,693171,53,2654,1 +16132,693180,30,1545,1 +16133,693180,61,3068,1 +16134,693181,49,2493,1 +16135,693192,41,2100,1 +16136,693204,97,4851,1 +16137,693209,92,4644,1 +16138,693228,133,6697,1 +16139,693232,169,8456,1 +16140,693252,169,8472,1 +16141,693252,70,3536,1 +16142,693268,120,6026,1 +16143,693270,197,9873,1 +16144,693600,100,5029,1 +16145,693661,89,4481,1 +16146,693732,40,2049,1 +16147,694081,184,9223,1 +16148,694125,83,4170,1 +16149,694197,136,6801,1 +16150,694560,15,782,1 +16151,694593,124,6216,1 +16152,694669,179,8956,1 +16153,695040,89,4479,1 +16154,695040,163,8181,1 +16155,695040,150,7505,1 +16156,695040,190,9546,1 +16157,695040,125,6271,1 +16158,695040,79,3992,1 +16159,695040,162,8115,1 +16160,695041,188,9416,1 +16161,695041,111,5583,1 +16162,695042,28,1449,1 +16163,695042,199,9994,1 +16164,695043,133,6672,1 +16165,695044,7,385,1 +16166,695045,184,9227,1 +16167,695047,61,3094,1 +16168,695047,116,5811,1 +16169,695048,113,5661,1 +16170,695049,136,6802,1 +16171,695050,85,4268,1 +16172,695052,18,930,1 +16173,695052,109,5484,1 +16174,695052,147,7396,1 +16175,695052,151,7569,1 +16176,695053,30,1536,1 +16177,695053,25,1296,1 +16178,695056,139,6971,1 +16179,695058,91,4556,1 +16180,695058,89,4491,1 +16181,695061,41,2063,1 +16182,695064,28,1447,1 +16183,695064,153,7687,1 +16184,695064,93,4699,1 +16185,695064,37,1882,1 +16186,695064,176,8841,1 +16187,695064,71,3592,1 +16188,695064,142,7116,1 +16189,695064,113,5661,1 +16190,695064,109,5458,1 +16191,695064,69,3500,1 +16192,695065,57,2900,1 +16193,695065,117,5887,1 +16194,695065,166,8348,1 +16195,695067,64,3217,1 +16196,695068,81,4093,1 +16197,695068,145,7264,1 +16198,695070,19,993,1 +16199,695073,198,9939,1 +16200,695073,127,6365,1 +16201,695073,18,941,1 +16202,695076,20,1017,1 +16203,695076,0,40,1 +16204,695076,124,6217,1 +16205,695076,164,8205,1 +16206,695076,103,5196,1 +16207,695076,28,1418,1 +16208,695076,116,5816,1 +16209,695077,72,3614,1 +16210,695079,143,7174,1 +16211,695085,173,8673,1 +16212,695085,33,1655,1 +16213,695088,90,4511,1 +16214,695088,12,622,1 +16215,695089,130,6506,1 +16216,695089,133,6653,1 +16217,695089,69,3463,1 +16218,695091,99,4954,1 +16219,695092,13,660,1 +16220,695103,115,5754,1 +16221,695105,72,3640,1 +16222,695108,51,2558,1 +16223,695109,49,2464,1 +16224,695109,114,5739,1 +16225,695109,98,4929,1 +16226,695110,11,557,1 +16227,695112,55,2799,1 +16228,695114,132,6610,1 +16229,695124,153,7693,1 +16230,695124,164,8243,1 +16231,695125,129,6500,1 +16232,695134,152,7649,1 +16233,695136,65,3265,1 +16234,695137,1,94,1 +16235,695145,158,7946,1 +16236,695148,43,2151,1 +16237,695149,181,9091,1 +16238,695154,20,1049,1 +16239,695160,20,1046,1 +16240,695161,162,8142,1 +16241,695161,170,8509,1 +16242,695166,143,7175,1 +16243,695181,52,2628,1 +16244,695190,121,6074,1 +16245,695196,35,1792,1 +16246,695198,122,6122,1 +16247,695208,111,5596,1 +16248,695210,169,8492,1 +16249,695235,53,2675,1 +16250,695268,108,5406,1 +16251,695328,34,1722,1 +16252,695376,5,260,1 +16253,695556,96,4802,1 +16254,695556,192,9647,1 +16255,695569,27,1374,1 +16256,695613,172,8629,1 +16257,696012,0,41,1 +16258,696063,61,3094,1 +16259,696084,173,8663,1 +16260,696123,39,1955,1 +16261,696130,103,5177,1 +16262,696163,100,5001,1 +16263,696480,49,2492,1 +16264,696484,91,4573,1 +16265,696492,192,9628,1 +16266,696498,41,2075,1 +16267,696504,176,8844,1 +16268,696505,96,4802,1 +16269,696505,38,1932,1 +16270,696516,9,459,1 +16271,696516,60,3005,1 +16272,696540,26,1303,1 +16273,696985,194,9717,1 +16274,697947,165,8261,1 +16275,697966,54,2710,1 +16276,697968,166,8312,1 +16277,697983,189,9457,1 +16278,697992,153,7659,1 +16279,697992,141,7066,1 +16280,698016,112,5643,1 +16281,698052,197,9870,1 +16282,698064,11,597,1 +16283,698400,15,783,1 +16284,698402,117,5854,1 +16285,698421,162,8136,1 +16286,698436,65,3291,1 +16287,698460,111,5595,1 +16288,698522,150,7507,1 +16289,698916,146,7326,1 +16290,699012,183,9200,1 +16291,699030,46,2318,1 +16292,699169,86,4304,1 +16293,699375,93,4691,1 +16294,699396,126,6302,1 +16295,699840,168,8444,1 +16296,699840,95,4784,1 +16297,700320,162,8105,1 +16298,700321,165,8271,1 +16299,700344,94,4729,1 +16300,700368,8,404,1 +16301,700383,149,7467,1 +16302,700800,107,5382,1 +16303,700800,26,1307,1 +16304,700800,134,6721,1 +16305,700800,62,3130,1 +16306,700801,88,4447,1 +16307,700803,23,1156,1 +16308,700804,183,9179,1 +16309,700810,12,643,1 +16310,700812,98,4907,1 +16311,700812,172,8623,1 +16312,700812,193,9673,1 +16313,700812,151,7558,1 +16314,700812,171,8573,1 +16315,700814,109,5475,1 +16316,700825,131,6599,1 +16317,700825,131,6581,1 +16318,700826,99,4996,1 +16319,700836,162,8118,1 +16320,700836,79,3986,1 +16321,700837,164,8212,1 +16322,700848,160,8016,1 +16323,700848,99,4980,1 +16324,700848,41,2051,1 +16325,700848,120,6041,1 +16326,700872,86,4308,1 +16327,700872,35,1782,1 +16328,700872,62,3128,1 +16329,700875,91,4556,1 +16330,700884,13,687,1 +16331,700885,27,1375,1 +16332,700920,10,536,1 +16333,700956,143,7169,1 +16334,700956,0,38,1 +16335,700970,136,6820,1 +16336,700971,48,2435,1 +16337,701282,13,685,1 +16338,701297,136,6818,1 +16339,701763,79,3999,1 +16340,701808,154,7733,1 +16341,702750,184,9219,1 +16342,702757,63,3179,1 +16343,702792,4,220,1 +16344,703389,187,9361,1 +16345,703800,18,911,1 +16346,704161,68,3443,1 +16347,704169,4,206,1 +16348,704173,122,6149,1 +16349,704173,67,3377,1 +16350,704181,3,170,1 +16351,704196,125,6278,1 +16352,704232,50,2503,1 +16353,704246,10,526,1 +16354,704269,148,7424,1 +16355,704640,140,7029,1 +16356,704640,117,5869,1 +16357,704640,123,6175,1 +16358,704640,183,9193,1 +16359,704640,18,948,1 +16360,704640,64,3222,1 +16361,704640,176,8805,1 +16362,704640,59,2982,1 +16363,704640,149,7489,1 +16364,704640,0,26,1 +16365,704640,131,6571,1 +16366,704641,145,7268,1 +16367,704641,7,376,1 +16368,704641,74,3711,1 +16369,704641,36,1808,1 +16370,704642,67,3373,1 +16371,704642,100,5012,1 +16372,704643,27,1384,1 +16373,704644,32,1647,1 +16374,704649,98,4931,1 +16375,704649,21,1098,1 +16376,704651,184,9212,1 +16377,704652,54,2740,1 +16378,704652,92,4614,1 +16379,704652,10,505,1 +16380,704652,87,4388,1 +16381,704652,92,4608,1 +16382,704652,135,6777,1 +16383,704653,27,1354,1 +16384,704653,56,2823,1 +16385,704653,100,5015,1 +16386,704653,141,7096,1 +16387,704653,80,4050,1 +16388,704653,107,5372,1 +16389,704654,160,8014,1 +16390,704654,46,2329,1 +16391,704655,136,6825,1 +16392,704658,44,2234,1 +16393,704660,121,6088,1 +16394,704660,193,9688,1 +16395,704661,135,6758,1 +16396,704661,121,6100,1 +16397,704662,198,9908,1 +16398,704664,37,1874,1 +16399,704664,54,2721,1 +16400,704664,123,6173,1 +16401,704664,17,859,1 +16402,704664,70,3523,1 +16403,704664,7,372,1 +16404,704664,180,9035,1 +16405,704664,28,1433,1 +16406,704664,162,8127,1 +16407,704664,154,7748,1 +16408,704664,65,3290,1 +16409,704664,128,6424,1 +16410,704665,49,2455,1 +16411,704665,58,2936,1 +16412,704667,135,6769,1 +16413,704667,132,6625,1 +16414,704668,43,2160,1 +16415,704669,2,144,1 +16416,704670,119,5953,1 +16417,704670,91,4578,1 +16418,704673,1,86,1 +16419,704676,71,3580,1 +16420,704676,125,6280,1 +16421,704676,130,6550,1 +16422,704676,166,8346,1 +16423,704676,162,8119,1 +16424,704677,128,6429,1 +16425,704682,32,1629,1 +16426,704682,125,6278,1 +16427,704685,86,4348,1 +16428,704685,182,9140,1 +16429,704688,74,3750,1 +16430,704688,4,221,1 +16431,704688,64,3223,1 +16432,704688,6,306,1 +16433,704688,130,6534,1 +16434,704688,54,2710,1 +16435,704688,198,9936,1 +16436,704689,93,4653,1 +16437,704689,195,9766,1 +16438,704689,30,1520,1 +16439,704698,171,8561,1 +16440,704700,185,9298,1 +16441,704700,83,4183,1 +16442,704703,43,2151,1 +16443,704708,172,8638,1 +16444,704709,89,4483,1 +16445,704712,120,6017,1 +16446,704712,106,5342,1 +16447,704712,167,8389,1 +16448,704713,4,233,1 +16449,704715,118,5902,1 +16450,704716,41,2069,1 +16451,704722,135,6775,1 +16452,704724,7,366,1 +16453,704724,45,2277,1 +16454,704725,51,2552,1 +16455,704725,18,942,1 +16456,704731,49,2499,1 +16457,704733,199,9997,1 +16458,704736,196,9815,1 +16459,704736,46,2326,1 +16460,704736,145,7266,1 +16461,704748,92,4650,1 +16462,704759,164,8235,1 +16463,704760,101,5079,1 +16464,704765,73,3688,1 +16465,704772,78,3925,1 +16466,704778,126,6315,1 +16467,704787,1,93,1 +16468,704794,79,3954,1 +16469,704798,15,781,1 +16470,704801,32,1633,1 +16471,704802,120,6049,1 +16472,704805,43,2179,1 +16473,704811,111,5590,1 +16474,704834,126,6339,1 +16475,704880,51,2582,1 +16476,704892,156,7815,1 +16477,704902,152,7614,1 +16478,704940,180,9014,1 +16479,705120,186,9340,1 +16480,705120,90,4524,1 +16481,705120,82,4111,1 +16482,705120,176,8821,1 +16483,705124,186,9308,1 +16484,705126,25,1299,1 +16485,705132,177,8878,1 +16486,705133,175,8780,1 +16487,705135,134,6716,1 +16488,705144,28,1422,1 +16489,705147,36,1818,1 +16490,705153,5,264,1 +16491,705159,105,5299,1 +16492,705168,76,3808,1 +16493,705168,131,6599,1 +16494,705174,197,9885,1 +16495,705181,124,6219,1 +16496,705189,96,4839,1 +16497,705196,126,6350,1 +16498,705213,36,1849,1 +16499,705228,93,4669,1 +16500,705245,140,7040,1 +16501,705257,112,5617,1 +16502,705285,53,2686,1 +16503,705615,132,6622,1 +16504,706089,146,7304,1 +16505,706092,96,4803,1 +16506,706116,166,8312,1 +16507,706117,71,3563,1 +16508,706119,158,7914,1 +16509,706152,180,9035,1 +16510,706158,161,8096,1 +16511,706159,163,8191,1 +16512,706560,83,4151,1 +16513,706560,190,9546,1 +16514,706585,153,7692,1 +16515,707058,146,7312,1 +16516,707077,142,7124,1 +16517,707103,123,6155,1 +16518,707138,89,4457,1 +16519,707520,113,5690,1 +16520,707539,175,8773,1 +16521,707562,29,1475,1 +16522,707580,136,6806,1 +16523,707585,138,6944,1 +16524,708000,79,3970,1 +16525,708001,134,6742,1 +16526,708006,163,8200,1 +16527,708007,65,3267,1 +16528,708015,164,8216,1 +16529,708021,79,3969,1 +16530,708024,4,250,1 +16531,708027,99,4994,1 +16532,708060,172,8630,1 +16533,708072,59,2954,1 +16534,708145,27,1383,1 +16535,708960,129,6465,1 +16536,708962,111,5554,1 +16537,708963,50,2511,1 +16538,708964,141,7059,1 +16539,708966,6,315,1 +16540,708966,4,250,1 +16541,708972,170,8513,1 +16542,708984,165,8297,1 +16543,708984,55,2788,1 +16544,708996,111,5592,1 +16545,708996,195,9780,1 +16546,708996,155,7778,1 +16547,708996,190,9503,1 +16548,709011,84,4231,1 +16549,709013,70,3550,1 +16550,709015,164,8234,1 +16551,709065,145,7257,1 +16552,709103,4,236,1 +16553,709104,77,3886,1 +16554,709111,24,1214,1 +16555,709122,49,2457,1 +16556,709140,186,9319,1 +16557,709177,177,8854,1 +16558,709440,135,6766,1 +16559,709452,102,5143,1 +16560,709465,53,2678,1 +16561,709515,99,4977,1 +16562,710425,153,7700,1 +16563,710881,55,2788,1 +16564,710904,122,6141,1 +16565,710907,86,4333,1 +16566,711375,134,6720,1 +16567,711396,182,9114,1 +16568,711421,51,2558,1 +16569,711852,158,7934,1 +16570,711853,164,8237,1 +16571,711864,140,7024,1 +16572,711864,61,3080,1 +16573,711865,3,164,1 +16574,711881,134,6725,1 +16575,711900,137,6887,1 +16576,712333,100,5034,1 +16577,712368,97,4868,1 +16578,712368,42,2109,1 +16579,712380,31,1585,1 +16580,712386,62,3148,1 +16581,712462,139,6992,1 +16582,712488,12,623,1 +16583,712824,33,1662,1 +16584,712827,81,4098,1 +16585,712857,122,6149,1 +16586,713280,112,5615,1 +16587,713304,138,6937,1 +16588,713319,31,1589,1 +16589,713346,101,5059,1 +16590,713364,91,4558,1 +16591,713760,68,3435,1 +16592,713760,192,9623,1 +16593,713760,185,9282,1 +16594,713760,193,9677,1 +16595,713761,83,4166,1 +16596,713761,137,6895,1 +16597,713764,65,3276,1 +16598,713773,105,5283,1 +16599,713774,87,4400,1 +16600,713784,43,2186,1 +16601,713784,191,9566,1 +16602,713796,161,8091,1 +16603,713796,182,9122,1 +16604,713797,135,6760,1 +16605,713805,174,8704,1 +16606,713816,8,447,1 +16607,713818,6,344,1 +16608,713820,167,8385,1 +16609,714240,34,1735,1 +16610,714240,120,6004,1 +16611,714264,66,3334,1 +16612,714265,120,6034,1 +16613,714276,73,3658,1 +16614,714279,9,474,1 +16615,714288,77,3853,1 +16616,714312,58,2910,1 +16617,714313,117,5878,1 +16618,714324,139,6955,1 +16619,714348,1,95,1 +16620,714373,184,9211,1 +16621,714736,40,2027,1 +16622,714737,187,9400,1 +16623,714738,7,362,1 +16624,714765,85,4255,1 +16625,714939,40,2048,1 +16626,715200,93,4687,1 +16627,715200,137,6880,1 +16628,715210,131,6559,1 +16629,715224,137,6858,1 +16630,715224,171,8563,1 +16631,715225,6,329,1 +16632,715265,111,5593,1 +16633,715680,114,5727,1 +16634,715692,187,9382,1 +16635,715698,154,7740,1 +16636,715705,63,3157,1 +16637,715755,77,3857,1 +16638,715767,12,609,1 +16639,715773,191,9587,1 +16640,715813,0,41,1 +16641,715920,120,6007,1 +16642,716160,164,8225,1 +16643,716164,178,8933,1 +16644,716169,126,6330,1 +16645,716181,36,1821,1 +16646,716197,16,843,1 +16647,716202,147,7387,1 +16648,716218,98,4948,1 +16649,716232,57,2869,1 +16650,716238,55,2788,1 +16651,716261,71,3576,1 +16652,716273,167,8390,1 +16653,716293,134,6743,1 +16654,716316,26,1329,1 +16655,716403,123,6167,1 +16656,716666,131,6595,1 +16657,717142,86,4305,1 +16658,717145,84,4204,1 +16659,717156,4,234,1 +16660,717157,103,5187,1 +16661,717159,36,1829,1 +16662,717168,87,4376,1 +16663,717178,48,2444,1 +16664,717180,187,9392,1 +16665,717193,138,6933,1 +16666,717205,145,7271,1 +16667,717206,177,8861,1 +16668,717282,194,9704,1 +16669,717285,68,3402,1 +16670,717600,40,2039,1 +16671,717615,190,9518,1 +16672,717630,161,8053,1 +16673,717633,71,3552,1 +16674,718082,62,3137,1 +16675,718141,75,3795,1 +16676,718165,193,9676,1 +16677,718177,9,486,1 +16678,718560,104,5222,1 +16679,718561,131,6584,1 +16680,718563,112,5650,1 +16681,718578,73,3664,1 +16682,718632,195,9773,1 +16683,718658,115,5798,1 +16684,719079,135,6795,1 +16685,719610,22,1110,1 +16686,719618,162,8138,1 +16687,720482,83,4153,1 +16688,720487,17,884,1 +16689,720487,59,2978,1 +16690,720501,62,3128,1 +16691,720522,161,8063,1 +16692,720548,127,6363,1 +16693,720565,17,866,1 +16694,720588,110,5526,1 +16695,720966,13,662,1 +16696,720984,131,6585,1 +16697,720996,41,2075,1 +16698,721009,25,1253,1 +16699,721032,62,3107,1 +16700,721033,41,2063,1 +16701,721068,30,1546,1 +16702,721082,127,6364,1 +16703,721092,83,4194,1 +16704,721092,113,5655,1 +16705,721440,40,2037,1 +16706,721530,64,3247,1 +16707,721669,148,7434,1 +16708,722400,46,2319,1 +16709,722409,175,8765,1 +16710,722412,8,444,1 +16711,722413,162,8128,1 +16712,722414,88,4424,1 +16713,722425,85,4286,1 +16714,722428,62,3118,1 +16715,722430,57,2891,1 +16716,722439,16,808,1 +16717,722449,142,7121,1 +16718,722449,54,2734,1 +16719,722525,185,9293,1 +16720,722690,33,1678,1 +16721,723373,163,8184,1 +16722,723374,69,3458,1 +16723,723382,98,4926,1 +16724,723399,77,3884,1 +16725,723418,54,2719,1 +16726,723434,118,5910,1 +16727,723468,108,5446,1 +16728,723505,17,876,1 +16729,723505,68,3419,1 +16730,723843,84,4214,1 +16731,723906,74,3709,1 +16732,723922,50,2506,1 +16733,723948,44,2209,1 +16734,724320,180,9030,1 +16735,724320,70,3547,1 +16736,724320,164,8230,1 +16737,724320,27,1395,1 +16738,724320,91,4569,1 +16739,724320,185,9261,1 +16740,724321,199,9992,1 +16741,724321,34,1737,1 +16742,724323,61,3075,1 +16743,724323,73,3656,1 +16744,724324,54,2730,1 +16745,724324,124,6235,1 +16746,724327,4,223,1 +16747,724327,94,4726,1 +16748,724329,33,1658,1 +16749,724329,157,7897,1 +16750,724331,41,2091,1 +16751,724333,139,6990,1 +16752,724333,36,1847,1 +16753,724336,122,6140,1 +16754,724337,9,496,1 +16755,724337,146,7316,1 +16756,724338,165,8264,1 +16757,724342,10,511,1 +16758,724344,145,7291,1 +16759,724344,25,1288,1 +16760,724344,39,1973,1 +16761,724344,195,9771,1 +16762,724345,131,6575,1 +16763,724346,120,6005,1 +16764,724350,53,2653,1 +16765,724356,140,7043,1 +16766,724356,29,1464,1 +16767,724356,141,7070,1 +16768,724356,113,5668,1 +16769,724356,154,7734,1 +16770,724357,27,1386,1 +16771,724357,41,2080,1 +16772,724358,125,6281,1 +16773,724359,57,2884,1 +16774,724364,38,1905,1 +16775,724368,148,7448,1 +16776,724368,114,5712,1 +16777,724370,52,2639,1 +16778,724371,111,5596,1 +16779,724371,10,513,1 +16780,724372,165,8292,1 +16781,724374,183,9176,1 +16782,724377,0,11,1 +16783,724380,116,5840,1 +16784,724390,156,7829,1 +16785,724395,193,9696,1 +16786,724404,111,5564,1 +16787,724404,30,1527,1 +16788,724406,42,2142,1 +16789,724410,79,3991,1 +16790,724417,52,2603,1 +16791,724418,11,560,1 +16792,724428,144,7234,1 +16793,724432,14,718,1 +16794,724440,182,9133,1 +16795,724440,180,9037,1 +16796,724464,195,9795,1 +16797,724489,185,9293,1 +16798,724489,118,5911,1 +16799,724503,196,9843,1 +16800,724800,184,9222,1 +16801,724800,98,4934,1 +16802,724801,70,3508,1 +16803,724801,39,1999,1 +16804,724801,5,275,1 +16805,724801,119,5985,1 +16806,724803,133,6652,1 +16807,724805,106,5311,1 +16808,724806,113,5686,1 +16809,724809,140,7050,1 +16810,724809,9,479,1 +16811,724811,94,4714,1 +16812,724811,188,9436,1 +16813,724812,84,4203,1 +16814,724812,96,4821,1 +16815,724812,180,9029,1 +16816,724813,125,6289,1 +16817,724813,89,4466,1 +16818,724813,48,2447,1 +16819,724813,79,3978,1 +16820,724815,122,6105,1 +16821,724816,63,3185,1 +16822,724817,12,645,1 +16823,724818,172,8623,1 +16824,724822,92,4607,1 +16825,724824,101,5085,1 +16826,724824,186,9350,1 +16827,724824,55,2766,1 +16828,724824,12,649,1 +16829,724824,34,1702,1 +16830,724825,168,8422,1 +16831,724826,8,433,1 +16832,724828,174,8734,1 +16833,724836,182,9130,1 +16834,724836,26,1330,1 +16835,724836,36,1802,1 +16836,724843,23,1172,1 +16837,724845,110,5513,1 +16838,724848,2,122,1 +16839,724848,66,3305,1 +16840,724848,98,4922,1 +16841,724849,108,5417,1 +16842,724851,142,7110,1 +16843,724857,57,2895,1 +16844,724860,111,5575,1 +16845,724862,66,3320,1 +16846,724862,27,1371,1 +16847,724867,185,9252,1 +16848,724887,56,2829,1 +16849,724896,82,4113,1 +16850,724896,118,5903,1 +16851,724902,72,3643,1 +16852,724920,16,809,1 +16853,724925,16,842,1 +16854,724980,33,1651,1 +16855,724998,35,1798,1 +16856,724999,13,657,1 +16857,725241,8,438,1 +16858,725280,34,1706,1 +16859,725280,129,6465,1 +16860,725281,107,5377,1 +16861,725281,12,601,1 +16862,725286,179,8981,1 +16863,725287,87,4365,1 +16864,725292,46,2323,1 +16865,725292,108,5402,1 +16866,725292,151,7557,1 +16867,725292,106,5331,1 +16868,725301,30,1534,1 +16869,725304,4,238,1 +16870,725316,36,1835,1 +16871,725316,109,5473,1 +16872,725322,155,7782,1 +16873,725328,188,9405,1 +16874,725364,66,3320,1 +16875,725379,23,1199,1 +16876,725390,142,7129,1 +16877,725392,173,8658,1 +16878,725400,120,6026,1 +16879,725412,70,3507,1 +16880,725436,76,3831,1 +16881,725443,189,9468,1 +16882,726303,84,4210,1 +16883,726720,53,2684,1 +16884,726720,78,3925,1 +16885,726720,174,8704,1 +16886,726722,25,1253,1 +16887,726726,161,8096,1 +16888,726733,189,9452,1 +16889,726745,67,3352,1 +16890,726756,186,9342,1 +16891,726757,155,7790,1 +16892,726780,39,1986,1 +16893,726783,190,9511,1 +16894,726787,118,5907,1 +16895,726789,108,5427,1 +16896,726795,190,9501,1 +16897,726838,176,8804,1 +16898,727045,95,4756,1 +16899,727200,83,4160,1 +16900,727202,129,6462,1 +16901,727202,8,417,1 +16902,727208,69,3467,1 +16903,727212,37,1866,1 +16904,727212,170,8520,1 +16905,727212,199,9978,1 +16906,727223,149,7484,1 +16907,727224,31,1588,1 +16908,727224,143,7161,1 +16909,727225,48,2401,1 +16910,727225,143,7183,1 +16911,727225,10,526,1 +16912,727227,36,1822,1 +16913,727228,132,6615,1 +16914,727228,96,4840,1 +16915,727236,7,387,1 +16916,727236,186,9309,1 +16917,727236,5,263,1 +16918,727236,175,8799,1 +16919,727237,75,3769,1 +16920,727246,56,2846,1 +16921,727250,21,1068,1 +16922,727251,122,6140,1 +16923,727260,78,3943,1 +16924,727261,25,1265,1 +16925,727267,77,3872,1 +16926,727272,197,9864,1 +16927,727296,184,9244,1 +16928,727299,150,7509,1 +16929,727317,74,3727,1 +16930,727326,20,1034,1 +16931,727341,159,7985,1 +16932,727342,174,8714,1 +16933,727347,8,414,1 +16934,727348,20,1026,1 +16935,727368,137,6874,1 +16936,727416,3,200,1 +16937,727428,195,9796,1 +16938,728160,189,9472,1 +16939,728160,2,112,1 +16940,728160,191,9582,1 +16941,728160,123,6188,1 +16942,728161,98,4945,1 +16943,728163,142,7108,1 +16944,728163,99,4988,1 +16945,728172,25,1267,1 +16946,728175,8,424,1 +16947,728178,86,4341,1 +16948,728179,103,5155,1 +16949,728181,61,3080,1 +16950,728181,7,386,1 +16951,728184,182,9135,1 +16952,728184,81,4091,1 +16953,728185,96,4806,1 +16954,728186,6,350,1 +16955,728186,68,3414,1 +16956,728187,18,947,1 +16957,728188,76,3832,1 +16958,728190,190,9543,1 +16959,728197,12,647,1 +16960,728199,7,390,1 +16961,728200,103,5168,1 +16962,728209,132,6617,1 +16963,728220,27,1366,1 +16964,728221,177,8894,1 +16965,728238,22,1110,1 +16966,728244,5,251,1 +16967,728256,29,1493,1 +16968,728313,50,2543,1 +16969,728317,53,2674,1 +16970,728355,92,4603,1 +16971,728640,164,8243,1 +16972,728640,155,7788,1 +16973,728641,38,1907,1 +16974,728641,134,6705,1 +16975,728644,99,4989,1 +16976,728644,119,5971,1 +16977,728644,174,8715,1 +16978,728646,157,7893,1 +16979,728652,112,5633,1 +16980,728652,23,1189,1 +16981,728652,21,1060,1 +16982,728652,37,1871,1 +16983,728653,52,2631,1 +16984,728653,133,6677,1 +16985,728653,137,6891,1 +16986,728654,72,3621,1 +16987,728655,190,9535,1 +16988,728656,88,4425,1 +16989,728659,3,173,1 +16990,728661,97,4862,1 +16991,728663,21,1086,1 +16992,728664,167,8358,1 +16993,728664,123,6185,1 +16994,728664,147,7375,1 +16995,728664,74,3713,1 +16996,728667,35,1782,1 +16997,728667,47,2380,1 +16998,728667,123,6166,1 +16999,728670,146,7325,1 +17000,728673,196,9832,1 +17001,728673,193,9663,1 +17002,728673,170,8518,1 +17003,728674,18,950,1 +17004,728676,20,1050,1 +17005,728676,92,4606,1 +17006,728676,184,9201,1 +17007,728676,78,3928,1 +17008,728677,123,6196,1 +17009,728677,7,385,1 +17010,728681,152,7643,1 +17011,728683,156,7818,1 +17012,728685,10,521,1 +17013,728688,59,3000,1 +17014,728688,39,1953,1 +17015,728688,20,1047,1 +17016,728690,188,9442,1 +17017,728692,117,5877,1 +17018,728697,170,8534,1 +17019,728698,58,2950,1 +17020,728700,166,8342,1 +17021,728700,11,558,1 +17022,728700,114,5714,1 +17023,728700,191,9552,1 +17024,728700,86,4314,1 +17025,728700,149,7485,1 +17026,728702,185,9260,1 +17027,728702,44,2210,1 +17028,728706,21,1066,1 +17029,728709,48,2441,1 +17030,728712,8,420,1 +17031,728719,104,5249,1 +17032,728724,91,4588,1 +17033,728733,1,86,1 +17034,728734,30,1546,1 +17035,728736,55,2774,1 +17036,728736,150,7519,1 +17037,728737,196,9830,1 +17038,728737,8,437,1 +17039,728737,187,9373,1 +17040,728752,123,6168,1 +17041,728760,87,4381,1 +17042,728766,28,1411,1 +17043,728772,116,5846,1 +17044,728773,195,9776,1 +17045,728778,102,5125,1 +17046,728786,40,2040,1 +17047,728793,57,2856,1 +17048,728793,97,4884,1 +17049,728811,114,5709,1 +17050,728835,131,6582,1 +17051,728838,64,3225,1 +17052,728877,125,6272,1 +17053,729120,102,5110,1 +17054,729120,38,1934,1 +17055,729121,1,100,1 +17056,729122,165,8283,1 +17057,729128,113,5681,1 +17058,729132,154,7736,1 +17059,729144,18,933,1 +17060,729154,14,731,1 +17061,729157,131,6571,1 +17062,729172,32,1601,1 +17063,729192,192,9612,1 +17064,729258,168,8416,1 +17065,729279,107,5368,1 +17066,729600,130,6534,1 +17067,729624,177,8896,1 +17068,729636,157,7887,1 +17069,729649,139,6975,1 +17070,729659,3,197,1 +17071,729664,119,5952,1 +17072,729686,54,2734,1 +17073,729687,152,7612,1 +17074,729747,135,6786,1 +17075,730080,100,5015,1 +17076,730080,10,513,1 +17077,730080,115,5758,1 +17078,730083,179,9000,1 +17079,730083,189,9472,1 +17080,730092,100,5013,1 +17081,730092,137,6872,1 +17082,730092,113,5694,1 +17083,730092,52,2635,1 +17084,730095,160,8031,1 +17085,730095,40,2044,1 +17086,730098,158,7945,1 +17087,730100,191,9580,1 +17088,730101,176,8827,1 +17089,730104,77,3881,1 +17090,730105,159,7966,1 +17091,730106,56,2845,1 +17092,730107,37,1856,1 +17093,730110,102,5132,1 +17094,730113,95,4763,1 +17095,730116,76,3850,1 +17096,730116,2,137,1 +17097,730116,183,9165,1 +17098,730117,148,7447,1 +17099,730128,25,1294,1 +17100,730128,156,7805,1 +17101,730128,187,9352,1 +17102,730134,2,102,1 +17103,730140,199,9957,1 +17104,730140,56,2819,1 +17105,730143,85,4272,1 +17106,730146,37,1854,1 +17107,730149,89,4480,1 +17108,730152,144,7220,1 +17109,730153,34,1706,1 +17110,730164,162,8149,1 +17111,730166,147,7383,1 +17112,730166,31,1592,1 +17113,730176,109,5474,1 +17114,730177,106,5314,1 +17115,730188,27,1397,1 +17116,730193,59,2983,1 +17117,730200,76,3806,1 +17118,730225,45,2263,1 +17119,730234,152,7625,1 +17120,730236,132,6624,1 +17121,730260,178,8941,1 +17122,730261,105,5255,1 +17123,730266,198,9911,1 +17124,730561,171,8557,1 +17125,730563,72,3625,1 +17126,730569,182,9129,1 +17127,730587,187,9396,1 +17128,730608,66,3322,1 +17129,730609,112,5613,1 +17130,730611,165,8287,1 +17131,730617,1,66,1 +17132,730632,60,3020,1 +17133,730656,54,2703,1 +17134,730658,121,6075,1 +17135,730764,22,1101,1 +17136,731040,30,1503,1 +17137,731040,8,407,1 +17138,731040,145,7291,1 +17139,731040,66,3336,1 +17140,731041,117,5864,1 +17141,731041,153,7655,1 +17142,731041,75,3797,1 +17143,731042,116,5808,1 +17144,731046,63,3157,1 +17145,731049,162,8110,1 +17146,731052,72,3608,1 +17147,731052,83,4166,1 +17148,731052,188,9435,1 +17149,731052,35,1762,1 +17150,731064,167,8351,1 +17151,731064,53,2695,1 +17152,731064,165,8291,1 +17153,731065,143,7173,1 +17154,731067,142,7101,1 +17155,731067,167,8356,1 +17156,731076,5,257,1 +17157,731076,69,3477,1 +17158,731088,59,2988,1 +17159,731089,121,6060,1 +17160,731089,92,4615,1 +17161,731097,43,2156,1 +17162,731100,26,1303,1 +17163,731100,63,3185,1 +17164,731100,150,7529,1 +17165,731101,28,1426,1 +17166,731103,51,2580,1 +17167,731106,151,7571,1 +17168,731125,55,2770,1 +17169,731125,22,1144,1 +17170,731136,134,6744,1 +17171,731136,46,2350,1 +17172,731145,125,6295,1 +17173,731148,9,491,1 +17174,731151,121,6052,1 +17175,731154,62,3117,1 +17176,731155,162,8123,1 +17177,731158,8,435,1 +17178,731196,185,9291,1 +17179,731197,84,4208,1 +17180,731215,76,3836,1 +17181,731533,62,3132,1 +17182,731568,124,6228,1 +17183,732000,149,7473,1 +17184,732000,64,3204,1 +17185,732000,197,9890,1 +17186,732000,61,3057,1 +17187,732000,45,2261,1 +17188,732001,59,2983,1 +17189,732007,178,8939,1 +17190,732012,110,5548,1 +17191,732012,83,4176,1 +17192,732013,36,1840,1 +17193,732015,86,4312,1 +17194,732022,185,9260,1 +17195,732024,105,5260,1 +17196,732024,114,5743,1 +17197,732024,43,2164,1 +17198,732024,59,2988,1 +17199,732024,50,2543,1 +17200,732027,199,9985,1 +17201,732038,188,9448,1 +17202,732060,73,3692,1 +17203,732061,70,3538,1 +17204,732065,32,1629,1 +17205,732084,172,8649,1 +17206,732087,195,9781,1 +17207,732096,113,5665,1 +17208,732109,189,9489,1 +17209,732113,159,7984,1 +17210,732117,29,1495,1 +17211,732132,6,314,1 +17212,732135,188,9445,1 +17213,732144,8,409,1 +17214,732153,143,7182,1 +17215,732180,193,9664,1 +17216,732204,68,3422,1 +17217,732481,142,7112,1 +17218,732487,138,6912,1 +17219,732494,103,5192,1 +17220,732495,58,2909,1 +17221,732504,100,5035,1 +17222,732518,168,8427,1 +17223,732579,73,3676,1 +17224,733452,166,8302,1 +17225,733458,113,5674,1 +17226,733474,169,8483,1 +17227,733488,84,4237,1 +17228,733512,133,6674,1 +17229,733920,39,1982,1 +17230,733920,34,1718,1 +17231,733920,53,2675,1 +17232,733920,160,8002,1 +17233,733921,136,6847,1 +17234,733921,168,8429,1 +17235,733923,113,5660,1 +17236,733923,12,628,1 +17237,733924,192,9629,1 +17238,733926,165,8287,1 +17239,733926,181,9083,1 +17240,733932,153,7687,1 +17241,733932,185,9293,1 +17242,733932,81,4093,1 +17243,733932,134,6717,1 +17244,733933,26,1326,1 +17245,733933,100,5041,1 +17246,733933,131,6552,1 +17247,733933,27,1356,1 +17248,733934,62,3142,1 +17249,733936,40,2030,1 +17250,733938,123,6185,1 +17251,733938,198,9908,1 +17252,733938,16,822,1 +17253,733941,165,8254,1 +17254,733944,185,9268,1 +17255,733944,82,4114,1 +17256,733945,27,1354,1 +17257,733947,146,7302,1 +17258,733947,154,7741,1 +17259,733953,117,5885,1 +17260,733956,189,9460,1 +17261,733956,60,3015,1 +17262,733957,185,9267,1 +17263,733957,134,6736,1 +17264,733957,60,3001,1 +17265,733957,151,7584,1 +17266,733958,64,3244,1 +17267,733959,40,2017,1 +17268,733959,42,2105,1 +17269,733965,69,3461,1 +17270,733968,157,7854,1 +17271,733968,4,211,1 +17272,733968,81,4092,1 +17273,733968,61,3066,1 +17274,733969,189,9463,1 +17275,733969,69,3473,1 +17276,733972,153,7651,1 +17277,733975,23,1157,1 +17278,733980,164,8212,1 +17279,733981,177,8859,1 +17280,733982,83,4199,1 +17281,733991,39,1990,1 +17282,733992,122,6107,1 +17283,733992,74,3749,1 +17284,733998,181,9053,1 +17285,734001,66,3344,1 +17286,734001,43,2182,1 +17287,734004,11,586,1 +17288,734008,173,8696,1 +17289,734019,196,9822,1 +17290,734019,154,7701,1 +17291,734028,154,7720,1 +17292,734029,186,9349,1 +17293,734040,33,1689,1 +17294,734040,171,8551,1 +17295,734051,187,9374,1 +17296,734052,172,8625,1 +17297,734073,23,1181,1 +17298,734076,71,3584,1 +17299,734076,172,8637,1 +17300,734090,86,4333,1 +17301,734094,56,2816,1 +17302,734097,122,6113,1 +17303,734112,49,2482,1 +17304,734113,25,1279,1 +17305,734402,186,9325,1 +17306,734412,76,3813,1 +17307,734424,133,6692,1 +17308,734425,18,914,1 +17309,734426,144,7231,1 +17310,734429,175,8778,1 +17311,734432,169,8490,1 +17312,734439,6,304,1 +17313,734479,85,4272,1 +17314,734484,41,2057,1 +17315,734484,65,3300,1 +17316,734500,136,6817,1 +17317,734508,57,2890,1 +17318,734593,188,9434,1 +17319,734880,196,9824,1 +17320,734880,25,1262,1 +17321,734880,141,7087,1 +17322,734880,108,5433,1 +17323,734880,81,4085,1 +17324,734880,155,7752,1 +17325,734881,147,7400,1 +17326,734883,61,3078,1 +17327,734886,140,7015,1 +17328,734886,186,9341,1 +17329,734886,35,1751,1 +17330,734891,86,4311,1 +17331,734892,165,8258,1 +17332,734893,35,1760,1 +17333,734901,13,656,1 +17334,734904,7,373,1 +17335,734905,154,7727,1 +17336,734905,10,519,1 +17337,734907,64,3207,1 +17338,734907,125,6286,1 +17339,734913,39,2000,1 +17340,734913,71,3596,1 +17341,734916,163,8191,1 +17342,734928,145,7253,1 +17343,734928,24,1238,1 +17344,734938,191,9551,1 +17345,734940,56,2813,1 +17346,734943,123,6190,1 +17347,734952,71,3576,1 +17348,734978,180,9016,1 +17349,734979,72,3630,1 +17350,734988,50,2520,1 +17351,734988,138,6917,1 +17352,734990,114,5749,1 +17353,734993,172,8616,1 +17354,735000,139,6956,1 +17355,735009,162,8125,1 +17356,735036,68,3441,1 +17357,735040,32,1610,1 +17358,735062,149,7483,1 +17359,735072,161,8094,1 +17360,735074,106,5340,1 +17361,735084,132,6621,1 +17362,735121,107,5388,1 +17363,735157,179,8970,1 +17364,735361,163,8156,1 +17365,735384,115,5785,1 +17366,735396,98,4918,1 +17367,735840,97,4863,1 +17368,735840,94,4733,1 +17369,735840,179,8962,1 +17370,735840,9,498,1 +17371,735840,55,2763,1 +17372,735840,11,558,1 +17373,735841,44,2248,1 +17374,735841,48,2427,1 +17375,735841,22,1138,1 +17376,735841,111,5599,1 +17377,735841,91,4577,1 +17378,735843,59,2994,1 +17379,735843,88,4447,1 +17380,735843,34,1711,1 +17381,735844,189,9481,1 +17382,735845,43,2152,1 +17383,735848,26,1316,1 +17384,735848,134,6725,1 +17385,735849,97,4852,1 +17386,735852,71,3567,1 +17387,735852,55,2760,1 +17388,735852,53,2667,1 +17389,735852,132,6617,1 +17390,735852,23,1164,1 +17391,735852,114,5713,1 +17392,735852,55,2776,1 +17393,735852,165,8294,1 +17394,735852,143,7199,1 +17395,735852,91,4582,1 +17396,735853,4,243,1 +17397,735853,119,5971,1 +17398,735853,73,3683,1 +17399,735853,57,2887,1 +17400,735854,44,2241,1 +17401,735855,130,6547,1 +17402,735856,59,2964,1 +17403,735858,80,4002,1 +17404,735862,121,6073,1 +17405,735864,186,9324,1 +17406,735864,34,1715,1 +17407,735864,17,861,1 +17408,735865,108,5448,1 +17409,735865,60,3015,1 +17410,735865,63,3184,1 +17411,735866,115,5763,1 +17412,735867,163,8187,1 +17413,735867,32,1627,1 +17414,735867,189,9451,1 +17415,735870,73,3674,1 +17416,735870,39,1963,1 +17417,735876,10,502,1 +17418,735876,74,3725,1 +17419,735877,129,6467,1 +17420,735878,62,3145,1 +17421,735879,61,3064,1 +17422,735880,170,8503,1 +17423,735882,115,5791,1 +17424,735885,160,8040,1 +17425,735886,78,3940,1 +17426,735887,17,891,1 +17427,735888,81,4079,1 +17428,735888,37,1863,1 +17429,735888,9,458,1 +17430,735888,147,7400,1 +17431,735888,31,1587,1 +17432,735889,69,3481,1 +17433,735890,3,193,1 +17434,735890,24,1223,1 +17435,735891,133,6668,1 +17436,735891,55,2791,1 +17437,735891,140,7030,1 +17438,735893,115,5785,1 +17439,735894,47,2366,1 +17440,735900,68,3404,1 +17441,735900,10,528,1 +17442,735901,93,4693,1 +17443,735906,151,7592,1 +17444,735909,152,7622,1 +17445,735909,144,7229,1 +17446,735910,116,5850,1 +17447,735910,120,6010,1 +17448,735912,13,666,1 +17449,735912,33,1697,1 +17450,735912,137,6884,1 +17451,735913,63,3194,1 +17452,735913,108,5415,1 +17453,735913,43,2194,1 +17454,735913,169,8478,1 +17455,735915,134,6723,1 +17456,735915,166,8348,1 +17457,735917,100,5003,1 +17458,735925,197,9869,1 +17459,735927,130,6533,1 +17460,735930,163,8171,1 +17461,735936,63,3169,1 +17462,735936,109,5465,1 +17463,735943,13,694,1 +17464,735947,9,467,1 +17465,735948,81,4092,1 +17466,735948,101,5092,1 +17467,735949,101,5087,1 +17468,735951,156,7831,1 +17469,735954,4,239,1 +17470,735957,136,6836,1 +17471,735960,52,2624,1 +17472,735960,197,9851,1 +17473,735961,99,4960,1 +17474,735963,65,3284,1 +17475,735963,82,4139,1 +17476,735966,150,7532,1 +17477,735975,134,6750,1 +17478,735984,71,3593,1 +17479,735984,79,3971,1 +17480,735993,85,4286,1 +17481,735996,42,2126,1 +17482,736002,129,6479,1 +17483,736014,120,6037,1 +17484,736022,159,7989,1 +17485,736093,85,4256,1 +17486,736166,189,9483,1 +17487,736320,166,8326,1 +17488,736321,27,1365,1 +17489,736322,57,2861,1 +17490,736326,70,3548,1 +17491,736332,89,4468,1 +17492,736332,182,9142,1 +17493,736332,9,492,1 +17494,736333,174,8707,1 +17495,736333,126,6348,1 +17496,736333,76,3830,1 +17497,736356,190,9511,1 +17498,736368,70,3501,1 +17499,736381,110,5532,1 +17500,736392,71,3590,1 +17501,736416,37,1884,1 +17502,736416,8,436,1 +17503,736417,171,8593,1 +17504,736429,73,3682,1 +17505,736432,109,5460,1 +17506,736800,88,4438,1 +17507,736831,166,8305,1 +17508,736860,74,3746,1 +17509,736877,21,1079,1 +17510,736881,37,1866,1 +17511,737016,33,1696,1 +17512,737281,95,4769,1 +17513,737283,115,5758,1 +17514,737289,41,2069,1 +17515,737293,183,9167,1 +17516,737302,33,1690,1 +17517,737307,62,3134,1 +17518,737307,135,6769,1 +17519,737316,28,1449,1 +17520,737322,33,1653,1 +17521,737334,18,912,1 +17522,737340,95,4781,1 +17523,737349,122,6131,1 +17524,737352,40,2040,1 +17525,737352,194,9706,1 +17526,737365,191,9574,1 +17527,737424,121,6096,1 +17528,737436,160,8049,1 +17529,737760,107,5386,1 +17530,737760,95,4754,1 +17531,737761,1,92,1 +17532,737761,136,6804,1 +17533,737763,35,1756,1 +17534,737763,80,4018,1 +17535,737772,60,3041,1 +17536,737772,91,4589,1 +17537,737772,19,977,1 +17538,737776,108,5414,1 +17539,737777,8,434,1 +17540,737779,184,9211,1 +17541,737788,48,2430,1 +17542,737790,44,2243,1 +17543,737793,190,9545,1 +17544,737796,77,3897,1 +17545,737796,44,2218,1 +17546,737798,23,1158,1 +17547,737799,195,9785,1 +17548,737810,144,7218,1 +17549,737814,145,7287,1 +17550,737850,3,171,1 +17551,737928,165,8299,1 +17552,738014,33,1663,1 +17553,738241,148,7420,1 +17554,738252,171,8599,1 +17555,738276,15,769,1 +17556,738280,74,3726,1 +17557,738285,87,4370,1 +17558,738288,123,6174,1 +17559,738296,10,548,1 +17560,738336,27,1390,1 +17561,738339,117,5889,1 +17562,739200,137,6859,1 +17563,739200,71,3556,1 +17564,739201,1,79,1 +17565,739201,42,2135,1 +17566,739212,96,4845,1 +17567,739212,141,7057,1 +17568,739236,101,5064,1 +17569,739260,91,4564,1 +17570,739262,1,54,1 +17571,739264,42,2135,1 +17572,739272,53,2687,1 +17573,739284,152,7605,1 +17574,739302,151,7555,1 +17575,739369,138,6902,1 +17576,739680,173,8683,1 +17577,739681,129,6491,1 +17578,739683,194,9703,1 +17579,739689,80,4041,1 +17580,739692,155,7770,1 +17581,739692,77,3888,1 +17582,739695,190,9506,1 +17583,739698,23,1189,1 +17584,739722,147,7362,1 +17585,739753,59,2976,1 +17586,739815,30,1536,1 +17587,739821,35,1775,1 +17588,740172,24,1217,1 +17589,740196,145,7288,1 +17590,740221,160,8027,1 +17591,740245,59,2967,1 +17592,740280,63,3161,1 +17593,740649,94,4750,1 +17594,741120,25,1293,1 +17595,741120,171,8570,1 +17596,741121,143,7198,1 +17597,741123,85,4263,1 +17598,741123,25,1295,1 +17599,741129,185,9275,1 +17600,741129,69,3488,1 +17601,741144,63,3196,1 +17602,741144,172,8646,1 +17603,741145,125,6269,1 +17604,741145,84,4244,1 +17605,741147,166,8325,1 +17606,741150,174,8718,1 +17607,741154,9,490,1 +17608,741156,54,2738,1 +17609,741157,2,139,1 +17610,741157,35,1773,1 +17611,741165,72,3636,1 +17612,741170,191,9571,1 +17613,741174,135,6777,1 +17614,741180,25,1283,1 +17615,741180,191,9555,1 +17616,741186,99,4958,1 +17617,741192,186,9303,1 +17618,741213,112,5608,1 +17619,741216,152,7623,1 +17620,741223,151,7592,1 +17621,741258,180,9022,1 +17622,741258,84,4227,1 +17623,741265,192,9608,1 +17624,741294,42,2105,1 +17625,741300,2,142,1 +17626,741312,7,373,1 +17627,741600,145,7266,1 +17628,741601,161,8083,1 +17629,741609,8,433,1 +17630,741615,72,3649,1 +17631,741624,171,8584,1 +17632,741624,190,9528,1 +17633,741625,118,5903,1 +17634,741636,190,9521,1 +17635,741637,22,1131,1 +17636,741650,114,5717,1 +17637,741654,46,2341,1 +17638,741661,37,1875,1 +17639,741662,158,7939,1 +17640,741663,115,5794,1 +17641,741664,134,6742,1 +17642,741707,52,2614,1 +17643,741708,68,3401,1 +17644,741769,39,1990,1 +17645,742113,182,9149,1 +17646,742129,17,856,1 +17647,742140,30,1547,1 +17648,742560,50,2537,1 +17649,742572,27,1397,1 +17650,742575,132,6639,1 +17651,742577,16,846,1 +17652,742584,94,4743,1 +17653,742591,117,5892,1 +17654,742596,56,2830,1 +17655,742597,178,8902,1 +17656,742620,3,196,1 +17657,742621,32,1632,1 +17658,742632,48,2417,1 +17659,742638,139,6973,1 +17660,742677,96,4810,1 +17661,743052,129,6482,1 +17662,743127,3,169,1 +17663,744005,144,7201,1 +17664,744016,80,4031,1 +17665,744480,83,4169,1 +17666,744480,37,1886,1 +17667,744480,148,7447,1 +17668,744481,31,1566,1 +17669,744493,20,1004,1 +17670,744499,153,7688,1 +17671,744505,45,2287,1 +17672,744507,36,1840,1 +17673,744516,8,428,1 +17674,744517,199,9960,1 +17675,744519,15,761,1 +17676,744543,144,7210,1 +17677,744546,168,8409,1 +17678,744551,98,4918,1 +17679,744648,47,2377,1 +17680,744650,77,3887,1 +17681,744732,43,2199,1 +17682,744972,154,7747,1 +17683,744984,40,2050,1 +17684,744996,5,266,1 +17685,745021,92,4646,1 +17686,745524,64,3227,1 +17687,745921,148,7433,1 +17688,745932,130,6530,1 +17689,745944,40,2005,1 +17690,745956,86,4328,1 +17691,745956,41,2084,1 +17692,746004,137,6877,1 +17693,746400,71,3599,1 +17694,746400,6,330,1 +17695,746400,138,6913,1 +17696,746401,175,8767,1 +17697,746401,145,7285,1 +17698,746406,160,8026,1 +17699,746424,88,4402,1 +17700,746437,105,5257,1 +17701,746449,195,9760,1 +17702,746460,41,2096,1 +17703,746472,128,6426,1 +17704,746604,24,1222,1 +17705,746880,120,6044,1 +17706,746880,192,9633,1 +17707,746880,183,9192,1 +17708,746882,112,5607,1 +17709,746892,44,2214,1 +17710,746892,93,4678,1 +17711,746904,142,7143,1 +17712,746904,105,5264,1 +17713,746907,78,3931,1 +17714,746908,168,8433,1 +17715,746910,43,2160,1 +17716,746928,178,8950,1 +17717,746932,26,1346,1 +17718,746940,96,4840,1 +17719,746941,58,2901,1 +17720,746944,185,9266,1 +17721,746946,40,2046,1 +17722,746955,85,4268,1 +17723,746955,66,3332,1 +17724,747061,168,8402,1 +17725,747363,145,7261,1 +17726,747372,121,6085,1 +17727,747372,132,6610,1 +17728,747374,154,7706,1 +17729,747384,34,1731,1 +17730,747387,101,5055,1 +17731,747398,190,9510,1 +17732,747403,31,1583,1 +17733,747433,188,9413,1 +17734,747433,171,8579,1 +17735,747555,5,267,1 +17736,747840,41,2051,1 +17737,747841,147,7374,1 +17738,747852,148,7433,1 +17739,747852,83,4194,1 +17740,747853,91,4567,1 +17741,747858,28,1429,1 +17742,747864,16,827,1 +17743,747864,3,194,1 +17744,747867,160,8030,1 +17745,747873,19,959,1 +17746,747912,2,110,1 +17747,747915,134,6716,1 +17748,747918,147,7359,1 +17749,747924,83,4175,1 +17750,747960,149,7485,1 +17751,748320,153,7664,1 +17752,748320,70,3549,1 +17753,748320,111,5595,1 +17754,748322,87,4359,1 +17755,748323,75,3796,1 +17756,748323,71,3586,1 +17757,748325,161,8079,1 +17758,748332,169,8477,1 +17759,748332,101,5078,1 +17760,748332,71,3569,1 +17761,748335,199,9997,1 +17762,748336,41,2085,1 +17763,748341,162,8150,1 +17764,748344,100,5047,1 +17765,748345,25,1253,1 +17766,748350,90,4526,1 +17767,748353,101,5081,1 +17768,748356,31,1571,1 +17769,748356,118,5934,1 +17770,748356,190,9531,1 +17771,748356,72,3647,1 +17772,748367,183,9177,1 +17773,748367,118,5934,1 +17774,748368,69,3495,1 +17775,748370,193,9652,1 +17776,748377,2,113,1 +17777,748380,153,7690,1 +17778,748416,14,737,1 +17779,748536,9,477,1 +17780,748802,55,2764,1 +17781,748848,124,6224,1 +17782,749280,72,3628,1 +17783,749295,100,5014,1 +17784,749307,183,9159,1 +17785,749313,179,8965,1 +17786,749321,80,4018,1 +17787,749329,125,6255,1 +17788,749437,199,9983,1 +17789,749773,12,617,1 +17790,749774,102,5120,1 +17791,749796,94,4748,1 +17792,749808,1,83,1 +17793,749821,155,7787,1 +17794,749825,169,8485,1 +17795,749858,33,1697,1 +17796,749866,31,1569,1 +17797,749880,107,5365,1 +17798,749916,185,9283,1 +17799,750255,19,989,1 +17800,750288,118,5904,1 +17801,750345,64,3225,1 +17802,750360,46,2347,1 +17803,750472,18,936,1 +17804,750784,114,5719,1 +17805,750843,105,5277,1 +17806,750900,171,8569,1 +17807,751200,107,5355,1 +17808,751208,186,9341,1 +17809,751209,141,7057,1 +17810,751224,87,4368,1 +17811,751233,119,5988,1 +17812,751238,167,8400,1 +17813,751245,119,5970,1 +17814,751285,30,1508,1 +17815,751320,139,6972,1 +17816,751686,19,980,1 +17817,751758,92,4616,1 +17818,751765,112,5601,1 +17819,751802,43,2188,1 +17820,752172,152,7609,1 +17821,752182,35,1762,1 +17822,752187,38,1926,1 +17823,752202,120,6019,1 +17824,752224,162,8111,1 +17825,752341,174,8731,1 +17826,752640,33,1659,1 +17827,752641,129,6453,1 +17828,752641,62,3115,1 +17829,752642,112,5622,1 +17830,752643,109,5462,1 +17831,752644,125,6297,1 +17832,752647,144,7242,1 +17833,752655,49,2477,1 +17834,752663,126,6321,1 +17835,752664,72,3627,1 +17836,752664,18,913,1 +17837,752665,60,3018,1 +17838,752666,143,7166,1 +17839,752678,132,6616,1 +17840,752701,131,6599,1 +17841,752709,133,6663,1 +17842,752713,63,3155,1 +17843,752737,178,8905,1 +17844,752737,33,1697,1 +17845,752748,134,6731,1 +17846,752760,48,2448,1 +17847,752764,194,9750,1 +17848,752812,66,3345,1 +17849,753120,114,5741,1 +17850,753121,6,329,1 +17851,753132,101,5083,1 +17852,753135,105,5255,1 +17853,753144,125,6285,1 +17854,753168,191,9580,1 +17855,753168,36,1846,1 +17856,753201,31,1578,1 +17857,753202,40,2020,1 +17858,753612,141,7051,1 +17859,753612,20,1050,1 +17860,753636,190,9520,1 +17861,753648,166,8337,1 +17862,753649,179,8961,1 +17863,753660,15,752,1 +17864,753664,131,6568,1 +17865,753709,81,4099,1 +17866,753720,46,2325,1 +17867,753729,183,9196,1 +17868,753770,20,1018,1 +17869,753858,9,486,1 +17870,754080,32,1609,1 +17871,754081,5,255,1 +17872,754082,193,9679,1 +17873,754098,87,4371,1 +17874,754102,48,2436,1 +17875,754104,176,8839,1 +17876,754106,132,6647,1 +17877,754119,60,3041,1 +17878,754140,65,3278,1 +17879,754143,65,3295,1 +17880,754171,166,8334,1 +17881,754200,134,6745,1 +17882,754236,15,753,1 +17883,754580,96,4822,1 +17884,754608,86,4331,1 +17885,755040,101,5075,1 +17886,755040,36,1810,1 +17887,755040,45,2297,1 +17888,755040,195,9775,1 +17889,755040,145,7255,1 +17890,755040,3,190,1 +17891,755040,83,4194,1 +17892,755041,168,8405,1 +17893,755041,188,9431,1 +17894,755042,30,1522,1 +17895,755042,106,5327,1 +17896,755049,61,3090,1 +17897,755050,153,7681,1 +17898,755052,172,8621,1 +17899,755052,103,5173,1 +17900,755052,194,9750,1 +17901,755052,136,6845,1 +17902,755053,14,745,1 +17903,755053,108,5417,1 +17904,755056,48,2405,1 +17905,755064,28,1437,1 +17906,755066,148,7406,1 +17907,755070,84,4246,1 +17908,755073,36,1808,1 +17909,755076,47,2382,1 +17910,755076,23,1170,1 +17911,755077,25,1283,1 +17912,755082,32,1614,1 +17913,755083,18,945,1 +17914,755088,43,2183,1 +17915,755088,160,8018,1 +17916,755089,89,4478,1 +17917,755092,1,66,1 +17918,755101,145,7295,1 +17919,755114,151,7597,1 +17920,755117,84,4210,1 +17921,755124,52,2631,1 +17922,755124,84,4220,1 +17923,755136,164,8219,1 +17924,755137,71,3585,1 +17925,755139,55,2761,1 +17926,755161,101,5088,1 +17927,755164,139,6953,1 +17928,755169,97,4860,1 +17929,755177,7,377,1 +17930,755181,109,5497,1 +17931,755208,46,2349,1 +17932,755220,69,3455,1 +17933,755245,94,4712,1 +17934,755311,174,8729,1 +17935,756016,21,1088,1 +17936,756030,22,1150,1 +17937,756132,173,8663,1 +17938,756480,67,3385,1 +17939,756480,1,98,1 +17940,756480,153,7684,1 +17941,756480,40,2011,1 +17942,756480,133,6663,1 +17943,756480,192,9636,1 +17944,756481,133,6660,1 +17945,756492,139,6958,1 +17946,756492,110,5504,1 +17947,756492,120,6013,1 +17948,756492,102,5109,1 +17949,756493,133,6672,1 +17950,756493,148,7426,1 +17951,756497,130,6526,1 +17952,756507,172,8647,1 +17953,756516,23,1182,1 +17954,756517,81,4056,1 +17955,756519,194,9723,1 +17956,756529,129,6463,1 +17957,756541,15,755,1 +17958,756541,23,1194,1 +17959,756553,78,3941,1 +17960,756555,83,4157,1 +17961,756565,82,4114,1 +17962,756582,30,1540,1 +17963,756589,144,7240,1 +17964,756591,136,6825,1 +17965,756591,89,4468,1 +17966,756603,110,5549,1 +17967,756608,67,3399,1 +17968,756610,35,1775,1 +17969,756624,99,4997,1 +17970,756633,61,3065,1 +17971,756675,183,9189,1 +17972,756697,193,9683,1 +17973,756960,172,8638,1 +17974,756963,22,1137,1 +17975,756972,161,8058,1 +17976,756972,32,1642,1 +17977,756972,189,9480,1 +17978,756975,113,5658,1 +17979,756998,97,4881,1 +17980,757008,164,8249,1 +17981,757032,92,4611,1 +17982,757080,20,1013,1 +17983,757080,48,2432,1 +17984,757176,115,5766,1 +17985,757506,105,5272,1 +17986,757944,129,6487,1 +17987,759361,62,3106,1 +17988,759387,99,4975,1 +17989,759840,184,9235,1 +17990,759858,82,4112,1 +17991,759864,84,4228,1 +17992,759864,152,7631,1 +17993,760392,71,3594,1 +17994,760800,113,5658,1 +17995,760800,111,5576,1 +17996,760800,168,8435,1 +17997,760800,180,9002,1 +17998,760800,121,6062,1 +17999,760800,162,8139,1 +18000,760800,6,323,1 +18001,760800,121,6062,1 +18002,760801,21,1080,1 +18003,760801,50,2546,1 +18004,760801,129,6456,1 +18005,760802,183,9178,1 +18006,760802,172,8648,1 +18007,760802,1,99,1 +18008,760802,8,408,1 +18009,760803,2,136,1 +18010,760806,9,481,1 +18011,760811,22,1123,1 +18012,760812,158,7928,1 +18013,760812,107,5397,1 +18014,760812,157,7864,1 +18015,760812,0,45,1 +18016,760812,115,5793,1 +18017,760812,26,1331,1 +18018,760813,67,3397,1 +18019,760813,50,2523,1 +18020,760813,125,6294,1 +18021,760813,112,5623,1 +18022,760814,112,5640,1 +18023,760818,47,2361,1 +18024,760824,153,7689,1 +18025,760824,62,3141,1 +18026,760824,106,5332,1 +18027,760824,175,8788,1 +18028,760824,140,7032,1 +18029,760825,29,1465,1 +18030,760825,111,5575,1 +18031,760826,156,7838,1 +18032,760827,5,286,1 +18033,760827,49,2482,1 +18034,760830,176,8848,1 +18035,760831,42,2141,1 +18036,760833,110,5504,1 +18037,760835,57,2865,1 +18038,760836,174,8709,1 +18039,760836,3,158,1 +18040,760837,18,931,1 +18041,760837,150,7506,1 +18042,760842,72,3648,1 +18043,760848,11,558,1 +18044,760849,116,5814,1 +18045,760851,120,6047,1 +18046,760852,49,2491,1 +18047,760854,146,7306,1 +18048,760860,188,9403,1 +18049,760861,145,7282,1 +18050,760864,24,1222,1 +18051,760872,29,1457,1 +18052,760872,53,2680,1 +18053,760873,166,8317,1 +18054,760879,166,8321,1 +18055,760884,134,6729,1 +18056,760884,83,4157,1 +18057,760884,120,6007,1 +18058,760885,188,9442,1 +18059,760896,107,5354,1 +18060,760896,161,8080,1 +18061,760899,19,980,1 +18062,760920,113,5674,1 +18063,760922,98,4934,1 +18064,760932,68,3448,1 +18065,760932,73,3687,1 +18066,760941,94,4714,1 +18067,760944,143,7196,1 +18068,760956,60,3020,1 +18069,760962,33,1675,1 +18070,760963,21,1090,1 +18071,760973,60,3037,1 +18072,760980,73,3674,1 +18073,760994,194,9709,1 +18074,761002,174,8719,1 +18075,761019,66,3323,1 +18076,761034,131,6554,1 +18077,761050,82,4147,1 +18078,761070,140,7003,1 +18079,761090,34,1713,1 +18080,761295,117,5864,1 +18081,761302,14,704,1 +18082,761304,150,7507,1 +18083,761340,9,475,1 +18084,761760,68,3416,1 +18085,761760,13,689,1 +18086,761760,83,4170,1 +18087,761760,35,1755,1 +18088,761761,165,8283,1 +18089,761763,34,1734,1 +18090,761764,139,6961,1 +18091,761766,47,2367,1 +18092,761769,182,9148,1 +18093,761769,20,1036,1 +18094,761772,145,7260,1 +18095,761772,5,299,1 +18096,761772,128,6441,1 +18097,761772,137,6865,1 +18098,761772,102,5110,1 +18099,761772,139,6980,1 +18100,761773,3,151,1 +18101,761774,175,8778,1 +18102,761775,151,7593,1 +18103,761776,163,8154,1 +18104,761776,83,4160,1 +18105,761781,63,3162,1 +18106,761784,80,4022,1 +18107,761784,112,5604,1 +18108,761784,31,1572,1 +18109,761784,189,9479,1 +18110,761784,92,4647,1 +18111,761786,104,5240,1 +18112,761788,13,657,1 +18113,761790,120,6003,1 +18114,761793,16,824,1 +18115,761796,69,3486,1 +18116,761797,122,6139,1 +18117,761805,1,56,1 +18118,761808,23,1168,1 +18119,761808,112,5609,1 +18120,761809,130,6524,1 +18121,761809,132,6640,1 +18122,761814,124,6230,1 +18123,761820,11,558,1 +18124,761820,30,1529,1 +18125,761820,51,2588,1 +18126,761823,167,8381,1 +18127,761823,75,3769,1 +18128,761823,152,7605,1 +18129,761824,102,5149,1 +18130,761832,54,2737,1 +18131,761833,104,5233,1 +18132,761833,64,3205,1 +18133,761838,146,7329,1 +18134,761841,126,6331,1 +18135,761847,191,9593,1 +18136,761854,43,2166,1 +18137,761857,188,9406,1 +18138,761880,5,299,1 +18139,761881,126,6316,1 +18140,761905,197,9891,1 +18141,761929,148,7435,1 +18142,761953,109,5459,1 +18143,761953,149,7492,1 +18144,761964,117,5884,1 +18145,761976,14,715,1 +18146,762043,81,4064,1 +18147,762048,5,264,1 +18148,762241,149,7497,1 +18149,762258,14,705,1 +18150,762301,157,7860,1 +18151,762313,104,5229,1 +18152,762336,173,8698,1 +18153,762769,70,3532,1 +18154,763200,141,7072,1 +18155,763203,115,5776,1 +18156,763212,178,8922,1 +18157,763212,179,8994,1 +18158,763214,126,6322,1 +18159,763218,102,5106,1 +18160,763221,27,1382,1 +18161,763224,181,9080,1 +18162,763225,157,7877,1 +18163,763236,157,7889,1 +18164,763236,138,6944,1 +18165,763240,33,1691,1 +18166,763248,24,1243,1 +18167,763272,187,9385,1 +18168,763276,54,2721,1 +18169,763286,187,9363,1 +18170,763302,117,5891,1 +18171,763680,81,4099,1 +18172,763680,110,5507,1 +18173,763680,42,2112,1 +18174,763680,18,906,1 +18175,763680,109,5485,1 +18176,763680,103,5167,1 +18177,763680,128,6419,1 +18178,763680,129,6496,1 +18179,763680,131,6589,1 +18180,763680,100,5001,1 +18181,763680,118,5931,1 +18182,763681,190,9502,1 +18183,763681,197,9890,1 +18184,763683,163,8158,1 +18185,763683,60,3034,1 +18186,763683,119,5978,1 +18187,763684,58,2947,1 +18188,763686,70,3541,1 +18189,763688,50,2508,1 +18190,763689,51,2597,1 +18191,763692,195,9790,1 +18192,763692,181,9082,1 +18193,763692,98,4904,1 +18194,763692,169,8464,1 +18195,763692,98,4935,1 +18196,763692,21,1078,1 +18197,763692,70,3522,1 +18198,763692,154,7750,1 +18199,763692,145,7294,1 +18200,763693,122,6150,1 +18201,763693,115,5767,1 +18202,763693,123,6189,1 +18203,763695,11,582,1 +18204,763695,54,2729,1 +18205,763696,122,6118,1 +18206,763697,159,7989,1 +18207,763702,107,5384,1 +18208,763704,85,4270,1 +18209,763704,108,5446,1 +18210,763704,1,56,1 +18211,763704,91,4561,1 +18212,763705,153,7657,1 +18213,763705,195,9785,1 +18214,763707,12,635,1 +18215,763707,124,6206,1 +18216,763708,174,8708,1 +18217,763712,118,5933,1 +18218,763713,7,399,1 +18219,763713,38,1950,1 +18220,763713,178,8920,1 +18221,763716,154,7735,1 +18222,763716,69,3485,1 +18223,763716,91,4556,1 +18224,763716,7,357,1 +18225,763716,123,6177,1 +18226,763717,138,6914,1 +18227,763717,100,5019,1 +18228,763717,6,315,1 +18229,763719,100,5025,1 +18230,763722,145,7254,1 +18231,763728,133,6682,1 +18232,763728,199,9988,1 +18233,763728,195,9769,1 +18234,763728,131,6572,1 +18235,763728,21,1089,1 +18236,763729,159,7952,1 +18237,763729,42,2123,1 +18238,763729,85,4289,1 +18239,763729,178,8933,1 +18240,763730,24,1233,1 +18241,763731,47,2379,1 +18242,763731,56,2843,1 +18243,763734,187,9368,1 +18244,763737,26,1319,1 +18245,763737,184,9224,1 +18246,763740,33,1669,1 +18247,763740,81,4089,1 +18248,763740,20,1015,1 +18249,763740,69,3472,1 +18250,763740,70,3531,1 +18251,763741,64,3239,1 +18252,763742,81,4064,1 +18253,763750,163,8162,1 +18254,763752,158,7948,1 +18255,763752,83,4186,1 +18256,763752,114,5723,1 +18257,763752,64,3233,1 +18258,763753,137,6867,1 +18259,763764,31,1555,1 +18260,763764,176,8823,1 +18261,763764,60,3002,1 +18262,763764,7,369,1 +18263,763773,43,2183,1 +18264,763776,93,4694,1 +18265,763776,7,393,1 +18266,763779,98,4905,1 +18267,763781,192,9603,1 +18268,763783,61,3073,1 +18269,763783,117,5881,1 +18270,763789,8,434,1 +18271,763798,63,3157,1 +18272,763803,169,8472,1 +18273,763803,50,2510,1 +18274,763812,87,4375,1 +18275,763812,118,5906,1 +18276,763812,4,245,1 +18277,763812,7,367,1 +18278,763813,53,2666,1 +18279,763813,153,7681,1 +18280,763815,4,229,1 +18281,763820,159,7976,1 +18282,763825,53,2677,1 +18283,763828,175,8787,1 +18284,763830,149,7451,1 +18285,763855,191,9577,1 +18286,763860,111,5576,1 +18287,763884,30,1527,1 +18288,763896,188,9409,1 +18289,763901,151,7584,1 +18290,763908,159,7996,1 +18291,764160,175,8786,1 +18292,764161,192,9632,1 +18293,764161,199,9986,1 +18294,764162,28,1432,1 +18295,764163,14,710,1 +18296,764166,176,8816,1 +18297,764170,128,6413,1 +18298,764172,80,4036,1 +18299,764172,46,2308,1 +18300,764173,98,4933,1 +18301,764175,198,9930,1 +18302,764178,34,1747,1 +18303,764184,81,4100,1 +18304,764184,168,8441,1 +18305,764185,75,3774,1 +18306,764185,196,9821,1 +18307,764187,59,2996,1 +18308,764187,119,5987,1 +18309,764193,123,6168,1 +18310,764196,8,429,1 +18311,764208,157,7859,1 +18312,764208,196,9833,1 +18313,764220,155,7776,1 +18314,764220,36,1836,1 +18315,764221,116,5805,1 +18316,764226,55,2785,1 +18317,764233,162,8150,1 +18318,764238,196,9830,1 +18319,764246,194,9707,1 +18320,764247,103,5177,1 +18321,764256,180,9022,1 +18322,764257,175,8777,1 +18323,764271,162,8138,1 +18324,764283,82,4109,1 +18325,764314,141,7068,1 +18326,764337,115,5793,1 +18327,764383,155,7767,1 +18328,764565,23,1169,1 +18329,764640,127,6360,1 +18330,764652,50,2518,1 +18331,764652,104,5204,1 +18332,764677,103,5193,1 +18333,764678,89,4472,1 +18334,764700,101,5098,1 +18335,764701,179,8983,1 +18336,764707,77,3854,1 +18337,764748,46,2323,1 +18338,765120,74,3711,1 +18339,765120,151,7559,1 +18340,765120,125,6262,1 +18341,765120,165,8273,1 +18342,765129,105,5300,1 +18343,765132,160,8048,1 +18344,765132,134,6724,1 +18345,765133,157,7853,1 +18346,765136,57,2875,1 +18347,765139,7,382,1 +18348,765144,7,395,1 +18349,765145,141,7087,1 +18350,765148,161,8099,1 +18351,765149,160,8011,1 +18352,765156,132,6646,1 +18353,765157,101,5072,1 +18354,765168,2,139,1 +18355,765168,14,735,1 +18356,765192,172,8626,1 +18357,765193,33,1691,1 +18358,765193,115,5775,1 +18359,765213,132,6622,1 +18360,765216,148,7431,1 +18361,765243,68,3433,1 +18362,765253,152,7602,1 +18363,765288,139,6980,1 +18364,765320,6,311,1 +18365,765324,0,46,1 +18366,765324,3,172,1 +18367,765333,124,6229,1 +18368,765372,38,1944,1 +18369,766080,120,6035,1 +18370,766081,79,3979,1 +18371,766084,183,9195,1 +18372,766089,1,97,1 +18373,766092,46,2340,1 +18374,766092,97,4886,1 +18375,766092,49,2478,1 +18376,766092,54,2748,1 +18377,766092,130,6518,1 +18378,766095,37,1869,1 +18379,766100,100,5047,1 +18380,766104,181,9066,1 +18381,766116,150,7525,1 +18382,766125,51,2578,1 +18383,766125,36,1839,1 +18384,766126,27,1384,1 +18385,766128,41,2055,1 +18386,766128,63,3191,1 +18387,766137,142,7129,1 +18388,766137,54,2731,1 +18389,766140,18,918,1 +18390,766142,171,8552,1 +18391,766144,95,4794,1 +18392,766153,84,4212,1 +18393,766174,163,8165,1 +18394,766182,115,5765,1 +18395,766185,46,2325,1 +18396,766200,31,1573,1 +18397,766345,126,6333,1 +18398,766560,57,2868,1 +18399,766560,165,8284,1 +18400,766562,41,2076,1 +18401,766563,163,8172,1 +18402,766570,128,6410,1 +18403,766572,187,9384,1 +18404,766572,113,5670,1 +18405,766573,172,8628,1 +18406,766575,45,2270,1 +18407,766576,50,2549,1 +18408,766578,1,55,1 +18409,766584,189,9457,1 +18410,766584,148,7441,1 +18411,766585,136,6820,1 +18412,766585,192,9628,1 +18413,766589,118,5909,1 +18414,766596,83,4171,1 +18415,766596,148,7405,1 +18416,766596,145,7281,1 +18417,766608,168,8437,1 +18418,766608,48,2415,1 +18419,766611,174,8730,1 +18420,766620,31,1552,1 +18421,766620,194,9744,1 +18422,766632,164,8249,1 +18423,766638,176,8836,1 +18424,766641,164,8246,1 +18425,766644,29,1461,1 +18426,766645,82,4117,1 +18427,766656,24,1225,1 +18428,766658,31,1567,1 +18429,766665,183,9183,1 +18430,766672,186,9305,1 +18431,766681,175,8793,1 +18432,766703,96,4803,1 +18433,766728,116,5821,1 +18434,767040,70,3550,1 +18435,767040,117,5891,1 +18436,767041,119,5983,1 +18437,767041,90,4540,1 +18438,767052,185,9293,1 +18439,767055,43,2179,1 +18440,767064,99,4954,1 +18441,767076,128,6438,1 +18442,767077,155,7799,1 +18443,767077,147,7365,1 +18444,767104,87,4395,1 +18445,767110,74,3705,1 +18446,767112,94,4729,1 +18447,767124,70,3544,1 +18448,767137,123,6182,1 +18449,767522,193,9670,1 +18450,767529,37,1880,1 +18451,767531,83,4153,1 +18452,767533,72,3602,1 +18453,767533,68,3417,1 +18454,767541,37,1869,1 +18455,767544,46,2350,1 +18456,767545,84,4215,1 +18457,767546,162,8109,1 +18458,767552,25,1266,1 +18459,767595,33,1684,1 +18460,767628,121,6083,1 +18461,767640,87,4398,1 +18462,767652,167,8355,1 +18463,768000,108,5416,1 +18464,768000,27,1380,1 +18465,768000,153,7676,1 +18466,768012,173,8684,1 +18467,768014,37,1871,1 +18468,768015,158,7943,1 +18469,768017,80,4029,1 +18470,768024,120,6027,1 +18471,768024,117,5867,1 +18472,768024,51,2582,1 +18473,768027,191,9595,1 +18474,768030,160,8026,1 +18475,768034,97,4858,1 +18476,768060,66,3346,1 +18477,768062,177,8890,1 +18478,768065,166,8333,1 +18479,768081,72,3642,1 +18480,768114,52,2614,1 +18481,768960,10,517,1 +18482,768963,100,5037,1 +18483,768978,128,6413,1 +18484,768999,77,3853,1 +18485,769008,65,3282,1 +18486,769011,186,9338,1 +18487,769920,43,2188,1 +18488,769932,154,7743,1 +18489,769933,48,2403,1 +18490,769944,35,1775,1 +18491,769950,52,2634,1 +18492,769951,41,2075,1 +18493,769956,42,2118,1 +18494,769956,185,9260,1 +18495,769958,85,4291,1 +18496,769993,69,3492,1 +18497,770016,14,728,1 +18498,770943,57,2896,1 +18499,770949,110,5550,1 +18500,770955,13,659,1 +18501,771363,169,8463,1 +18502,771363,167,8390,1 +18503,771372,76,3819,1 +18504,771373,195,9787,1 +18505,771380,103,5194,1 +18506,771382,113,5667,1 +18507,771406,10,543,1 +18508,771408,50,2528,1 +18509,771432,79,3952,1 +18510,771432,56,2826,1 +18511,771433,86,4330,1 +18512,771433,36,1814,1 +18513,771433,179,8984,1 +18514,771444,113,5673,1 +18515,771480,59,2966,1 +18516,771483,124,6201,1 +18517,771567,16,829,1 +18518,771602,43,2199,1 +18519,771852,15,775,1 +18520,771900,58,2926,1 +18521,771901,34,1732,1 +18522,771920,130,6504,1 +18523,772320,42,2102,1 +18524,772321,163,8157,1 +18525,772332,141,7072,1 +18526,772341,141,7089,1 +18527,772350,59,2957,1 +18528,772353,141,7083,1 +18529,772362,147,7376,1 +18530,772367,103,5193,1 +18531,772368,166,8335,1 +18532,772384,80,4050,1 +18533,772391,139,6959,1 +18534,772392,170,8534,1 +18535,772393,25,1296,1 +18536,772417,171,8576,1 +18537,772420,88,4447,1 +18538,772440,135,6790,1 +18539,772500,197,9873,1 +18540,772564,150,7528,1 +18541,772804,125,6274,1 +18542,772812,80,4041,1 +18543,772813,92,4642,1 +18544,772824,12,609,1 +18545,772842,163,8195,1 +18546,772848,139,6969,1 +18547,772860,182,9125,1 +18548,772861,29,1453,1 +18549,773281,37,1891,1 +18550,773281,197,9860,1 +18551,773283,151,7594,1 +18552,773292,53,2685,1 +18553,773304,172,8632,1 +18554,773316,154,7708,1 +18555,773317,168,8443,1 +18556,773318,0,50,1 +18557,773318,1,70,1 +18558,773328,52,2630,1 +18559,773329,144,7230,1 +18560,773361,68,3435,1 +18561,773388,193,9700,1 +18562,773490,23,1184,1 +18563,773760,97,4894,1 +18564,773760,138,6936,1 +18565,773760,60,3030,1 +18566,773764,195,9754,1 +18567,773764,64,3235,1 +18568,773772,97,4898,1 +18569,773772,2,146,1 +18570,773778,196,9828,1 +18571,773784,62,3149,1 +18572,773797,144,7221,1 +18573,773802,60,3029,1 +18574,773811,122,6137,1 +18575,773814,75,3763,1 +18576,773818,170,8515,1 +18577,773880,109,5496,1 +18578,773994,71,3554,1 +18579,774243,152,7620,1 +18580,774246,188,9401,1 +18581,774256,69,3486,1 +18582,774262,16,825,1 +18583,774264,175,8774,1 +18584,774265,115,5752,1 +18585,774276,107,5375,1 +18586,774277,60,3020,1 +18587,774288,100,5003,1 +18588,774290,188,9427,1 +18589,774302,57,2857,1 +18590,774325,133,6673,1 +18591,774363,133,6665,1 +18592,774375,21,1082,1 +18593,774384,103,5162,1 +18594,774480,154,7735,1 +18595,774513,69,3473,1 +18596,774720,165,8289,1 +18597,774738,165,8287,1 +18598,774741,144,7215,1 +18599,774744,39,1979,1 +18600,774780,26,1349,1 +18601,775203,118,5922,1 +18602,775215,119,5978,1 +18603,775218,159,7987,1 +18604,775226,115,5800,1 +18605,775228,30,1543,1 +18606,775232,46,2327,1 +18607,775248,81,4091,1 +18608,775260,37,1877,1 +18609,775297,83,4191,1 +18610,775317,119,6000,1 +18611,775344,23,1183,1 +18612,775358,178,8950,1 +18613,775441,62,3150,1 +18614,776169,107,5372,1 +18615,776172,71,3563,1 +18616,776174,22,1108,1 +18617,776175,196,9829,1 +18618,776184,80,4014,1 +18619,776186,51,2551,1 +18620,776208,55,2787,1 +18621,776210,54,2736,1 +18622,776295,129,6452,1 +18623,776326,95,4756,1 +18624,776640,97,4859,1 +18625,776640,99,4958,1 +18626,776640,153,7653,1 +18627,776640,159,7963,1 +18628,776661,98,4904,1 +18629,776666,51,2599,1 +18630,776676,14,744,1 +18631,776723,1,71,1 +18632,776737,178,8934,1 +18633,777120,136,6814,1 +18634,777122,49,2453,1 +18635,777126,110,5547,1 +18636,777135,113,5691,1 +18637,777135,164,8213,1 +18638,777138,20,1025,1 +18639,777144,188,9420,1 +18640,777145,12,644,1 +18641,777162,175,8770,1 +18642,777168,172,8640,1 +18643,777168,43,2184,1 +18644,777168,112,5609,1 +18645,777169,92,4640,1 +18646,777169,144,7215,1 +18647,777171,156,7844,1 +18648,777181,44,2232,1 +18649,777189,57,2865,1 +18650,777192,120,6035,1 +18651,777192,27,1367,1 +18652,777207,47,2359,1 +18653,777216,167,8380,1 +18654,777219,86,4305,1 +18655,777243,98,4949,1 +18656,777253,22,1105,1 +18657,777270,190,9529,1 +18658,777363,114,5749,1 +18659,777600,191,9557,1 +18660,777607,165,8298,1 +18661,777609,101,5081,1 +18662,777609,29,1477,1 +18663,777664,44,2206,1 +18664,777724,73,3685,1 +18665,778080,192,9601,1 +18666,778080,44,2207,1 +18667,778080,53,2658,1 +18668,778093,193,9691,1 +18669,778093,174,8710,1 +18670,778093,140,7019,1 +18671,778094,64,3235,1 +18672,778104,38,1910,1 +18673,778105,157,7869,1 +18674,778106,182,9109,1 +18675,778108,118,5921,1 +18676,778113,47,2366,1 +18677,778118,142,7104,1 +18678,778119,40,2021,1 +18679,778119,137,6854,1 +18680,778128,126,6317,1 +18681,778131,136,6812,1 +18682,778134,42,2127,1 +18683,778140,90,4537,1 +18684,778141,85,4274,1 +18685,778145,179,8951,1 +18686,778158,2,145,1 +18687,778176,11,554,1 +18688,778176,114,5724,1 +18689,778176,163,8193,1 +18690,778185,158,7917,1 +18691,778206,0,41,1 +18692,778248,173,8668,1 +18693,778572,67,3356,1 +18694,778591,139,6968,1 +18695,778608,0,26,1 +18696,778625,25,1300,1 +18697,778644,122,6147,1 +18698,779052,123,6152,1 +18699,779070,0,16,1 +18700,779078,89,4493,1 +18701,779091,10,535,1 +18702,779115,48,2430,1 +18703,779185,92,4630,1 +18704,779520,127,6396,1 +18705,779544,101,5084,1 +18706,779556,24,1215,1 +18707,779568,153,7656,1 +18708,779592,109,5479,1 +18709,779614,109,5455,1 +18710,780003,14,722,1 +18711,780504,16,834,1 +18712,780516,32,1605,1 +18713,780538,99,4976,1 +18714,780960,104,5228,1 +18715,780965,129,6456,1 +18716,780969,88,4449,1 +18717,780972,121,6059,1 +18718,780972,67,3395,1 +18719,780973,28,1409,1 +18720,780984,175,8791,1 +18721,780996,175,8752,1 +18722,781020,76,3814,1 +18723,781023,148,7437,1 +18724,781032,193,9676,1 +18725,781033,20,1011,1 +18726,781038,174,8721,1 +18727,781054,24,1238,1 +18728,781056,161,8058,1 +18729,781452,195,9792,1 +18730,781452,134,6750,1 +18731,781453,191,9600,1 +18732,781486,42,2145,1 +18733,781642,190,9532,1 +18734,781921,149,7479,1 +18735,781926,192,9609,1 +18736,781927,132,6638,1 +18737,781932,1,85,1 +18738,781933,134,6711,1 +18739,781942,48,2401,1 +18740,781945,42,2117,1 +18741,781956,152,7617,1 +18742,781959,27,1395,1 +18743,781959,33,1673,1 +18744,781968,106,5305,1 +18745,781968,151,7588,1 +18746,781969,192,9631,1 +18747,781980,165,8290,1 +18748,781980,112,5640,1 +18749,782004,57,2889,1 +18750,782004,152,7602,1 +18751,782018,57,2898,1 +18752,782078,47,2352,1 +18753,782137,28,1413,1 +18754,782401,112,5633,1 +18755,782452,165,8252,1 +18756,782625,34,1712,1 +18757,782892,132,6636,1 +18758,782892,189,9489,1 +18759,782892,74,3708,1 +18760,782904,129,6477,1 +18761,782916,137,6866,1 +18762,782918,86,4348,1 +18763,782952,119,5989,1 +18764,783457,130,6527,1 +18765,783840,107,5398,1 +18766,783840,164,8246,1 +18767,783840,154,7746,1 +18768,783841,118,5929,1 +18769,783843,117,5885,1 +18770,783849,111,5588,1 +18771,783852,42,2134,1 +18772,783854,47,2362,1 +18773,783863,34,1735,1 +18774,783864,46,2313,1 +18775,783867,68,3407,1 +18776,783874,103,5193,1 +18777,783876,23,1167,1 +18778,783876,15,773,1 +18779,783876,169,8483,1 +18780,783877,54,2709,1 +18781,783878,43,2177,1 +18782,783888,71,3599,1 +18783,783889,135,6780,1 +18784,783890,25,1285,1 +18785,783911,188,9431,1 +18786,783916,100,5018,1 +18787,783930,1,76,1 +18788,783939,56,2818,1 +18789,783940,42,2129,1 +18790,783960,91,4594,1 +18791,783985,121,6069,1 +18792,784800,91,4568,1 +18793,784800,184,9225,1 +18794,784801,172,8610,1 +18795,784812,26,1349,1 +18796,784813,187,9394,1 +18797,784824,37,1864,1 +18798,784839,103,5167,1 +18799,784872,142,7150,1 +18800,784872,160,8028,1 +18801,784974,121,6058,1 +18802,785172,34,1749,1 +18803,785761,10,520,1 +18804,785772,152,7636,1 +18805,785785,186,9329,1 +18806,785787,57,2883,1 +18807,785787,14,728,1 +18808,785789,155,7787,1 +18809,785850,185,9266,1 +18810,786247,104,5205,1 +18811,786720,154,7714,1 +18812,786744,172,8617,1 +18813,786756,21,1054,1 +18814,786757,150,7528,1 +18815,786758,50,2514,1 +18816,786768,117,5855,1 +18817,786780,168,8401,1 +18818,786792,78,3947,1 +18819,787200,194,9750,1 +18820,787202,181,9087,1 +18821,787209,7,374,1 +18822,787212,57,2877,1 +18823,787213,26,1327,1 +18824,787224,40,2030,1 +18825,787263,142,7106,1 +18826,787392,180,9040,1 +18827,787692,30,1535,1 +18828,787692,197,9853,1 +18829,787692,163,8172,1 +18830,787698,133,6697,1 +18831,787704,75,3771,1 +18832,787704,65,3272,1 +18833,787707,135,6776,1 +18834,787708,175,8791,1 +18835,787708,59,2997,1 +18836,787713,164,8247,1 +18837,787717,183,9192,1 +18838,787728,182,9124,1 +18839,787753,29,1462,1 +18840,787764,191,9566,1 +18841,787779,103,5186,1 +18842,787788,105,5263,1 +18843,787797,40,2009,1 +18844,787813,31,1557,1 +18845,787830,145,7270,1 +18846,787848,141,7075,1 +18847,787884,154,7725,1 +18848,788160,45,2265,1 +18849,788160,198,9930,1 +18850,788161,115,5798,1 +18851,788162,50,2536,1 +18852,788163,91,4551,1 +18853,788164,97,4861,1 +18854,788169,33,1683,1 +18855,788172,96,4823,1 +18856,788172,27,1380,1 +18857,788172,137,6874,1 +18858,788172,96,4806,1 +18859,788178,80,4012,1 +18860,788178,35,1784,1 +18861,788181,109,5483,1 +18862,788183,87,4397,1 +18863,788186,47,2396,1 +18864,788196,18,929,1 +18865,788199,128,6404,1 +18866,788202,185,9289,1 +18867,788232,186,9333,1 +18868,788244,12,602,1 +18869,788280,118,5902,1 +18870,788280,190,9520,1 +18871,788364,188,9442,1 +18872,788401,160,8047,1 +18873,788676,105,5298,1 +18874,788736,0,15,1 +18875,788751,170,8525,1 +18876,788809,63,3195,1 +18877,789120,71,3591,1 +18878,789121,148,7404,1 +18879,789121,54,2726,1 +18880,789122,106,5326,1 +18881,789132,128,6408,1 +18882,789132,174,8709,1 +18883,789133,45,2297,1 +18884,789133,86,4329,1 +18885,789141,53,2667,1 +18886,789144,157,7900,1 +18887,789144,175,8792,1 +18888,789145,194,9741,1 +18889,789156,90,4541,1 +18890,789156,187,9361,1 +18891,789157,184,9220,1 +18892,789170,101,5100,1 +18893,789179,105,5257,1 +18894,789180,21,1064,1 +18895,789195,136,6819,1 +18896,789216,61,3072,1 +18897,789217,143,7163,1 +18898,789219,22,1137,1 +18899,789240,88,4437,1 +18900,789240,33,1670,1 +18901,789252,50,2510,1 +18902,789600,135,6751,1 +18903,789601,31,1562,1 +18904,789601,51,2569,1 +18905,789669,12,607,1 +18906,789813,178,8920,1 +18907,790080,12,607,1 +18908,790089,111,5560,1 +18909,790092,185,9263,1 +18910,790101,148,7424,1 +18911,790104,23,1167,1 +18912,790105,100,5020,1 +18913,790105,77,3891,1 +18914,790116,174,8719,1 +18915,790142,57,2888,1 +18916,790189,172,8637,1 +18917,790197,190,9550,1 +18918,790572,195,9795,1 +18919,790575,118,5915,1 +18920,790620,197,9869,1 +18921,790620,41,2073,1 +18922,791532,67,3362,1 +18923,791535,38,1944,1 +18924,791544,56,2815,1 +18925,791547,91,4581,1 +18926,791556,84,4211,1 +18927,791619,23,1152,1 +18928,791622,94,4729,1 +18929,791647,102,5137,1 +18930,791656,40,2010,1 +18931,792004,181,9076,1 +18932,792006,97,4853,1 +18933,792007,159,7964,1 +18934,792012,64,3238,1 +18935,792039,12,612,1 +18936,792063,40,2003,1 +18937,792084,180,9005,1 +18938,792096,37,1896,1 +18939,792492,6,347,1 +18940,792501,68,3405,1 +18941,792540,191,9574,1 +18942,792550,196,9825,1 +18943,792961,106,5338,1 +18944,792961,98,4933,1 +18945,792966,9,465,1 +18946,792972,37,1867,1 +18947,792972,184,9203,1 +18948,792975,170,8508,1 +18949,792984,184,9210,1 +18950,792984,13,661,1 +18951,793026,118,5945,1 +18952,793045,182,9117,1 +18953,793440,78,3942,1 +18954,793440,67,3393,1 +18955,793441,117,5881,1 +18956,793443,60,3035,1 +18957,793456,187,9369,1 +18958,793456,183,9199,1 +18959,793459,184,9205,1 +18960,793465,65,3256,1 +18961,793468,12,622,1 +18962,793475,76,3829,1 +18963,793498,159,7990,1 +18964,793500,63,3156,1 +18965,793500,186,9318,1 +18966,793502,145,7261,1 +18967,793548,96,4813,1 +18968,793576,182,9108,1 +18969,793731,196,9846,1 +18970,794101,117,5868,1 +18971,794112,136,6808,1 +18972,794413,131,6565,1 +18973,794532,196,9825,1 +18974,794917,127,6374,1 +18975,794925,74,3719,1 +18976,794952,171,8577,1 +18977,795360,85,4277,1 +18978,795361,154,7711,1 +18979,795361,149,7474,1 +18980,795362,137,6899,1 +18981,795363,98,4936,1 +18982,795367,146,7307,1 +18983,795367,77,3871,1 +18984,795367,59,2993,1 +18985,795372,23,1173,1 +18986,795372,141,7087,1 +18987,795373,39,1961,1 +18988,795390,7,358,1 +18989,795391,50,2544,1 +18990,795396,18,935,1 +18991,795396,14,744,1 +18992,795396,19,953,1 +18993,795411,27,1393,1 +18994,795420,24,1203,1 +18995,795433,133,6689,1 +18996,795453,153,7696,1 +18997,795481,54,2703,1 +18998,795504,184,9245,1 +18999,795539,42,2109,1 +19000,795565,49,2486,1 +19001,795602,117,5853,1 +19002,795840,16,804,1 +19003,795850,189,9473,1 +19004,796321,40,2035,1 +19005,796370,188,9423,1 +19006,796380,196,9836,1 +19007,796428,130,6520,1 +19008,796452,121,6081,1 +19009,796800,52,2610,1 +19010,796801,83,4183,1 +19011,796803,147,7373,1 +19012,796805,1,56,1 +19013,796806,86,4317,1 +19014,796806,134,6732,1 +19015,796812,174,8720,1 +19016,796812,32,1650,1 +19017,796814,69,3491,1 +19018,796818,139,6975,1 +19019,796824,83,4155,1 +19020,796824,66,3311,1 +19021,796824,184,9236,1 +19022,796824,27,1382,1 +19023,796825,2,111,1 +19024,796833,73,3693,1 +19025,796836,180,9044,1 +19026,796837,85,4286,1 +19027,796846,32,1636,1 +19028,796848,33,1682,1 +19029,796848,38,1931,1 +19030,796848,185,9293,1 +19031,796848,183,9156,1 +19032,796849,198,9917,1 +19033,796851,120,6003,1 +19034,796860,100,5039,1 +19035,796860,100,5022,1 +19036,796861,105,5300,1 +19037,796861,91,4556,1 +19038,796872,188,9443,1 +19039,796875,0,17,1 +19040,796884,130,6534,1 +19041,796896,80,4046,1 +19042,796896,79,3953,1 +19043,796896,178,8939,1 +19044,796921,108,5413,1 +19045,797280,76,3811,1 +19046,797293,160,8023,1 +19047,797313,114,5732,1 +19048,797341,197,9894,1 +19049,797365,92,4608,1 +19050,797760,125,6259,1 +19051,797760,43,2169,1 +19052,797762,141,7064,1 +19053,797763,136,6823,1 +19054,797766,196,9829,1 +19055,797769,164,8218,1 +19056,797769,174,8709,1 +19057,797772,41,2064,1 +19058,797773,22,1134,1 +19059,797773,169,8498,1 +19060,797784,148,7411,1 +19061,797784,152,7604,1 +19062,797784,0,19,1 +19063,797785,70,3523,1 +19064,797796,104,5244,1 +19065,797796,11,551,1 +19066,797798,109,5465,1 +19067,797805,23,1152,1 +19068,797808,190,9531,1 +19069,797811,1,55,1 +19070,797820,178,8930,1 +19071,797832,151,7584,1 +19072,797835,134,6721,1 +19073,797845,31,1597,1 +19074,797859,114,5722,1 +19075,797907,37,1896,1 +19076,797952,14,706,1 +19077,798096,120,6046,1 +19078,798240,96,4805,1 +19079,798246,174,8730,1 +19080,798252,44,2239,1 +19081,798252,86,4331,1 +19082,798255,114,5703,1 +19083,798264,108,5440,1 +19084,798274,62,3107,1 +19085,798276,38,1947,1 +19086,798289,41,2079,1 +19087,798291,52,2636,1 +19088,798300,29,1498,1 +19089,798324,172,8639,1 +19090,798338,80,4002,1 +19091,798387,97,4893,1 +19092,798396,179,8959,1 +19093,798410,47,2371,1 +19094,798492,100,5001,1 +19095,798576,149,7458,1 +19096,798720,159,7966,1 +19097,798721,52,2603,1 +19098,798723,44,2222,1 +19099,798724,128,6419,1 +19100,798726,172,8605,1 +19101,798732,91,4580,1 +19102,798732,104,5241,1 +19103,798732,43,2185,1 +19104,798733,137,6875,1 +19105,798738,117,5873,1 +19106,798741,14,735,1 +19107,798745,51,2599,1 +19108,798756,111,5559,1 +19109,798756,116,5809,1 +19110,798762,174,8740,1 +19111,798770,190,9512,1 +19112,798780,96,4830,1 +19113,798780,172,8636,1 +19114,798781,93,4653,1 +19115,798810,3,175,1 +19116,798828,116,5817,1 +19117,798840,112,5611,1 +19118,798849,106,5307,1 +19119,798892,146,7348,1 +19120,799056,25,1295,1 +19121,799200,135,6794,1 +19122,799201,129,6496,1 +19123,799224,138,6950,1 +19124,799224,44,2250,1 +19125,799224,167,8382,1 +19126,799229,92,4635,1 +19127,799233,142,7109,1 +19128,799237,19,967,1 +19129,799239,20,1016,1 +19130,799239,82,4101,1 +19131,799243,163,8194,1 +19132,799248,186,9342,1 +19133,799248,102,5150,1 +19134,799269,175,8788,1 +19135,799326,138,6909,1 +19136,799333,186,9322,1 +19137,799362,62,3127,1 +19138,799398,98,4917,1 +19139,799680,83,4190,1 +19140,799763,35,1785,1 +19141,800160,55,2777,1 +19142,800160,63,3190,1 +19143,800161,95,4753,1 +19144,800161,44,2218,1 +19145,800163,159,7986,1 +19146,800164,56,2806,1 +19147,800168,152,7630,1 +19148,800172,84,4222,1 +19149,800173,165,8258,1 +19150,800178,106,5327,1 +19151,800184,182,9112,1 +19152,800184,185,9279,1 +19153,800190,154,7745,1 +19154,800198,154,7745,1 +19155,800199,161,8052,1 +19156,800205,96,4830,1 +19157,800205,59,2976,1 +19158,800205,191,9560,1 +19159,800208,43,2177,1 +19160,800208,35,1771,1 +19161,800214,126,6325,1 +19162,800220,122,6150,1 +19163,800220,172,8614,1 +19164,800221,41,2095,1 +19165,800226,144,7248,1 +19166,800232,155,7798,1 +19167,800235,109,5477,1 +19168,800244,8,420,1 +19169,800269,167,8373,1 +19170,800301,144,7224,1 +19171,800413,171,8569,1 +19172,800653,123,6197,1 +19173,800661,154,7738,1 +19174,800666,168,8428,1 +19175,800667,107,5364,1 +19176,800677,154,7737,1 +19177,800679,21,1079,1 +19178,800688,51,2569,1 +19179,800697,157,7889,1 +19180,800702,93,4675,1 +19181,800704,1,71,1 +19182,800709,153,7670,1 +19183,800712,144,7236,1 +19184,800772,165,8251,1 +19185,801151,3,192,1 +19186,801165,175,8775,1 +19187,801600,178,8905,1 +19188,801619,100,5023,1 +19189,801624,145,7284,1 +19190,801627,26,1333,1 +19191,801684,196,9814,1 +19192,801696,18,915,1 +19193,801717,148,7408,1 +19194,802140,171,8592,1 +19195,802161,150,7538,1 +19196,802179,59,2987,1 +19197,802572,17,854,1 +19198,802572,189,9491,1 +19199,802609,56,2809,1 +19200,802746,44,2237,1 +19201,803040,58,2906,1 +19202,803060,104,5226,1 +19203,803106,3,200,1 +19204,803115,169,8491,1 +19205,803234,197,9866,1 +19206,803532,30,1530,1 +19207,803535,67,3351,1 +19208,803535,15,774,1 +19209,803544,160,8020,1 +19210,803553,139,6983,1 +19211,803556,180,9044,1 +19212,803557,102,5147,1 +19213,803563,48,2422,1 +19214,803582,15,760,1 +19215,803592,197,9884,1 +19216,803596,52,2631,1 +19217,803596,56,2805,1 +19218,803606,70,3543,1 +19219,803613,87,4359,1 +19220,803628,42,2146,1 +19221,803630,98,4917,1 +19222,803664,189,9498,1 +19223,803712,172,8646,1 +19224,804012,20,1018,1 +19225,804013,48,2422,1 +19226,804024,170,8525,1 +19227,804085,184,9212,1 +19228,804133,51,2562,1 +19229,804229,104,5208,1 +19230,804481,198,9913,1 +19231,804492,79,4000,1 +19232,804493,112,5646,1 +19233,804516,145,7269,1 +19234,804537,165,8281,1 +19235,804552,14,715,1 +19236,804966,37,1892,1 +19237,804970,122,6148,1 +19238,804972,183,9169,1 +19239,804972,162,8133,1 +19240,804972,160,8001,1 +19241,804975,13,687,1 +19242,804984,102,5147,1 +19243,804988,109,5456,1 +19244,804996,114,5747,1 +19245,804997,114,5749,1 +19246,805003,0,6,1 +19247,805009,19,997,1 +19248,805018,9,490,1 +19249,805032,151,7591,1 +19250,805033,10,544,1 +19251,805046,79,3974,1 +19252,805046,15,770,1 +19253,805046,6,336,1 +19254,805047,72,3607,1 +19255,805056,128,6448,1 +19256,805059,143,7151,1 +19257,805108,183,9161,1 +19258,805149,75,3798,1 +19259,805210,14,719,1 +19260,805478,87,4392,1 +19261,805530,24,1238,1 +19262,805536,183,9166,1 +19263,805597,78,3908,1 +19264,805968,93,4698,1 +19265,805968,173,8700,1 +19266,806475,45,2291,1 +19267,807361,176,8836,1 +19268,807361,169,8483,1 +19269,807363,79,3995,1 +19270,807365,149,7452,1 +19271,807369,176,8841,1 +19272,807372,132,6604,1 +19273,807373,72,3605,1 +19274,807374,70,3521,1 +19275,807378,16,841,1 +19276,807378,80,4026,1 +19277,807381,177,8868,1 +19278,807384,140,7021,1 +19279,807386,5,284,1 +19280,807387,101,5060,1 +19281,807387,85,4283,1 +19282,807390,95,4777,1 +19283,807398,150,7512,1 +19284,807408,73,3681,1 +19285,807417,156,7806,1 +19286,807433,99,4982,1 +19287,807507,107,5358,1 +19288,807624,68,3434,1 +19289,807840,68,3436,1 +19290,807840,72,3604,1 +19291,807840,13,657,1 +19292,807843,70,3525,1 +19293,807852,48,2450,1 +19294,807852,6,303,1 +19295,807852,114,5727,1 +19296,807852,5,279,1 +19297,807852,191,9586,1 +19298,807852,135,6766,1 +19299,807852,187,9396,1 +19300,807858,63,3160,1 +19301,807876,95,4769,1 +19302,807876,85,4280,1 +19303,807894,158,7916,1 +19304,807900,147,7373,1 +19305,807936,189,9474,1 +19306,807945,20,1042,1 +19307,808057,128,6418,1 +19308,808320,59,2995,1 +19309,808320,114,5743,1 +19310,808329,40,2009,1 +19311,808332,168,8412,1 +19312,808338,189,9451,1 +19313,808346,43,2160,1 +19314,808348,116,5839,1 +19315,808356,169,8461,1 +19316,808359,14,719,1 +19317,808375,151,7556,1 +19318,808383,162,8132,1 +19319,808414,79,3976,1 +19320,808440,2,111,1 +19321,808801,196,9832,1 +19322,808803,62,3111,1 +19323,808810,81,4085,1 +19324,808812,93,4661,1 +19325,808813,60,3020,1 +19326,808815,100,5021,1 +19327,808824,41,2080,1 +19328,808827,76,3808,1 +19329,808852,50,2549,1 +19330,808906,81,4098,1 +19331,808934,0,32,1 +19332,809282,172,8602,1 +19333,809285,177,8872,1 +19334,809308,92,4616,1 +19335,809361,56,2827,1 +19336,809382,88,4422,1 +19337,809388,144,7239,1 +19338,809476,106,5336,1 +19339,809760,170,8512,1 +19340,809772,145,7264,1 +19341,809773,95,4761,1 +19342,809773,54,2734,1 +19343,809777,33,1659,1 +19344,809782,89,4486,1 +19345,809796,66,3301,1 +19346,809797,139,6987,1 +19347,809802,190,9548,1 +19348,809904,145,7290,1 +19349,809989,7,385,1 +19350,810240,130,6510,1 +19351,810252,111,5599,1 +19352,810253,156,7806,1 +19353,810258,156,7830,1 +19354,810267,144,7203,1 +19355,810276,189,9473,1 +19356,810276,161,8069,1 +19357,810276,68,3436,1 +19358,810304,145,7262,1 +19359,810362,116,5835,1 +19360,810384,30,1536,1 +19361,810774,75,3769,1 +19362,810834,63,3168,1 +19363,810912,195,9757,1 +19364,811063,159,7971,1 +19365,811218,192,9614,1 +19366,811224,0,5,1 +19367,811251,166,8304,1 +19368,811273,94,4716,1 +19369,811274,22,1149,1 +19370,811296,193,9686,1 +19371,811324,189,9487,1 +19372,811381,2,132,1 +19373,811681,184,9212,1 +19374,811687,1,51,1 +19375,811692,89,4457,1 +19376,811692,55,2759,1 +19377,811699,54,2735,1 +19378,811704,100,5021,1 +19379,811704,182,9140,1 +19380,811707,3,161,1 +19381,811710,177,8900,1 +19382,811714,126,6313,1 +19383,811734,54,2722,1 +19384,811764,0,39,1 +19385,811902,8,415,1 +19386,812184,69,3480,1 +19387,812640,82,4129,1 +19388,813133,144,7227,1 +19389,813171,6,320,1 +19390,813600,92,4649,1 +19391,813624,192,9617,1 +19392,813624,106,5319,1 +19393,813625,108,5431,1 +19394,813630,197,9864,1 +19395,813648,189,9471,1 +19396,813651,199,9960,1 +19397,813715,93,4671,1 +19398,813720,107,5396,1 +19399,813757,16,819,1 +19400,813913,65,3271,1 +19401,814083,197,9866,1 +19402,814093,4,209,1 +19403,814093,106,5311,1 +19404,814104,42,2117,1 +19405,814116,172,8607,1 +19406,814128,4,226,1 +19407,814128,13,657,1 +19408,814164,94,4720,1 +19409,814202,170,8523,1 +19410,814294,28,1407,1 +19411,814334,177,8865,1 +19412,814560,131,6585,1 +19413,814570,182,9113,1 +19414,814572,45,2276,1 +19415,814595,41,2070,1 +19416,814620,68,3431,1 +19417,814620,117,5871,1 +19418,815040,68,3402,1 +19419,815040,31,1562,1 +19420,815041,172,8606,1 +19421,815041,147,7397,1 +19422,815044,9,452,1 +19423,815044,196,9802,1 +19424,815050,70,3549,1 +19425,815052,157,7877,1 +19426,815052,19,966,1 +19427,815053,89,4464,1 +19428,815055,183,9160,1 +19429,815057,104,5218,1 +19430,815058,121,6066,1 +19431,815061,8,418,1 +19432,815064,13,657,1 +19433,815077,58,2918,1 +19434,815088,120,6044,1 +19435,815094,4,212,1 +19436,815112,39,1977,1 +19437,815127,181,9090,1 +19438,815148,5,268,1 +19439,815172,152,7633,1 +19440,815173,178,8920,1 +19441,815184,146,7319,1 +19442,815185,102,5107,1 +19443,815190,20,1047,1 +19444,815520,139,6970,1 +19445,815520,15,760,1 +19446,815520,29,1461,1 +19447,815520,35,1786,1 +19448,815520,167,8388,1 +19449,815523,138,6915,1 +19450,815523,68,3413,1 +19451,815524,14,725,1 +19452,815526,58,2911,1 +19453,815526,72,3603,1 +19454,815526,52,2644,1 +19455,815526,134,6733,1 +19456,815532,67,3372,1 +19457,815532,89,4451,1 +19458,815533,127,6374,1 +19459,815533,163,8182,1 +19460,815538,94,4725,1 +19461,815539,160,8023,1 +19462,815541,20,1042,1 +19463,815544,32,1637,1 +19464,815544,86,4314,1 +19465,815544,163,8152,1 +19466,815544,180,9001,1 +19467,815544,60,3005,1 +19468,815544,113,5693,1 +19469,815545,143,7154,1 +19470,815545,146,7345,1 +19471,815549,117,5862,1 +19472,815551,176,8835,1 +19473,815552,166,8313,1 +19474,815553,29,1457,1 +19475,815562,127,6352,1 +19476,815562,187,9370,1 +19477,815565,127,6367,1 +19478,815568,129,6490,1 +19479,815568,32,1650,1 +19480,815569,28,1422,1 +19481,815572,30,1521,1 +19482,815596,22,1140,1 +19483,815598,57,2890,1 +19484,815601,187,9392,1 +19485,815610,144,7213,1 +19486,815616,173,8656,1 +19487,815622,92,4650,1 +19488,815628,95,4781,1 +19489,815652,65,3286,1 +19490,815664,72,3631,1 +19491,815664,59,2983,1 +19492,815665,107,5362,1 +19493,815689,51,2577,1 +19494,815691,184,9236,1 +19495,815907,5,279,1 +19496,816000,67,3364,1 +19497,816002,80,4049,1 +19498,816019,90,4507,1 +19499,816024,142,7133,1 +19500,816024,121,6077,1 +19501,816024,65,3277,1 +19502,816026,78,3920,1 +19503,816033,107,5354,1 +19504,816033,154,7701,1 +19505,816033,189,9482,1 +19506,816036,0,36,1 +19507,816048,45,2296,1 +19508,816048,148,7433,1 +19509,816048,97,4889,1 +19510,816048,28,1429,1 +19511,816049,81,4054,1 +19512,816049,152,7633,1 +19513,816108,12,601,1 +19514,816108,65,3253,1 +19515,816120,175,8799,1 +19516,816140,12,618,1 +19517,816156,10,505,1 +19518,816169,182,9137,1 +19519,816481,96,4850,1 +19520,816492,27,1391,1 +19521,816513,86,4308,1 +19522,816516,8,428,1 +19523,816516,50,2529,1 +19524,816517,81,4064,1 +19525,816546,59,2958,1 +19526,816555,117,5879,1 +19527,816588,48,2402,1 +19528,816606,169,8493,1 +19529,816609,100,5014,1 +19530,816672,18,939,1 +19531,816972,164,8214,1 +19532,816974,37,1857,1 +19533,816975,11,575,1 +19534,817033,15,777,1 +19535,817056,192,9603,1 +19536,817068,10,506,1 +19537,817443,10,505,1 +19538,817443,78,3901,1 +19539,817446,36,1850,1 +19540,817452,69,3470,1 +19541,817455,27,1366,1 +19542,817458,14,748,1 +19543,817464,173,8666,1 +19544,817464,159,7982,1 +19545,817469,79,3984,1 +19546,817473,198,9926,1 +19547,817477,57,2892,1 +19548,817488,117,5899,1 +19549,817489,194,9729,1 +19550,817489,96,4841,1 +19551,817489,107,5357,1 +19552,817494,85,4291,1 +19553,817501,124,6240,1 +19554,817524,132,6604,1 +19555,817525,22,1129,1 +19556,817526,133,6666,1 +19557,817563,188,9419,1 +19558,817657,195,9751,1 +19559,817928,55,2784,1 +19560,818044,73,3651,1 +19561,818500,83,4184,1 +19562,818886,14,746,1 +19563,818894,149,7500,1 +19564,818925,184,9224,1 +19565,818940,144,7236,1 +19566,819004,196,9839,1 +19567,819373,58,2943,1 +19568,819384,179,8990,1 +19569,819384,114,5736,1 +19570,819432,78,3940,1 +19571,819433,45,2273,1 +19572,819438,105,5299,1 +19573,819474,141,7065,1 +19574,819516,155,7760,1 +19575,819517,153,7658,1 +19576,819854,79,3987,1 +19577,819877,8,404,1 +19578,819901,110,5502,1 +19579,819924,109,5474,1 +19580,819948,84,4249,1 +19581,820345,20,1019,1 +19582,820356,126,6330,1 +19583,820356,59,2998,1 +19584,820356,91,4590,1 +19585,820356,144,7241,1 +19586,820386,18,914,1 +19587,820392,86,4311,1 +19588,820476,185,9289,1 +19589,820801,9,498,1 +19590,820812,112,5622,1 +19591,820814,128,6428,1 +19592,820825,148,7433,1 +19593,820848,186,9321,1 +19594,820849,124,6212,1 +19595,820851,102,5106,1 +19596,820861,198,9915,1 +19597,820920,59,2955,1 +19598,820962,27,1376,1 +19599,821292,181,9093,1 +19600,821313,52,2613,1 +19601,821328,26,1328,1 +19602,821352,32,1644,1 +19603,822240,30,1549,1 +19604,822245,131,6575,1 +19605,822297,175,8764,1 +19606,822324,105,5267,1 +19607,822330,104,5202,1 +19608,822336,39,1987,1 +19609,822723,170,8542,1 +19610,822732,127,6371,1 +19611,822741,28,1411,1 +19612,823200,139,6984,1 +19613,823200,99,4961,1 +19614,823200,140,7028,1 +19615,823200,139,6978,1 +19616,823200,164,8229,1 +19617,823201,197,9871,1 +19618,823202,92,4628,1 +19619,823206,54,2708,1 +19620,823212,151,7555,1 +19621,823213,105,5276,1 +19622,823214,131,6574,1 +19623,823222,59,2957,1 +19624,823224,91,4599,1 +19625,823224,103,5184,1 +19626,823224,4,228,1 +19627,823224,47,2393,1 +19628,823224,155,7753,1 +19629,823225,49,2490,1 +19630,823226,152,7620,1 +19631,823236,26,1317,1 +19632,823236,169,8470,1 +19633,823236,35,1777,1 +19634,823237,4,235,1 +19635,823239,198,9928,1 +19636,823240,62,3144,1 +19637,823251,52,2604,1 +19638,823251,137,6883,1 +19639,823254,138,6903,1 +19640,823257,196,9846,1 +19641,823260,160,8023,1 +19642,823269,80,4038,1 +19643,823272,178,8936,1 +19644,823273,107,5399,1 +19645,823275,69,3467,1 +19646,823285,44,2219,1 +19647,823287,87,4376,1 +19648,823302,52,2604,1 +19649,823302,96,4805,1 +19650,823344,1,69,1 +19651,823404,84,4248,1 +19652,823765,185,9268,1 +19653,823770,41,2055,1 +19654,824163,99,4998,1 +19655,824640,186,9348,1 +19656,824640,107,5357,1 +19657,824641,155,7790,1 +19658,824645,23,1169,1 +19659,824650,43,2162,1 +19660,824652,112,5633,1 +19661,824655,110,5502,1 +19662,824658,196,9830,1 +19663,824665,154,7726,1 +19664,824667,35,1774,1 +19665,824676,111,5559,1 +19666,824679,29,1456,1 +19667,824682,126,6311,1 +19668,824683,135,6794,1 +19669,824688,30,1507,1 +19670,824748,157,7876,1 +19671,824784,178,8916,1 +19672,824796,175,8756,1 +19673,824808,117,5875,1 +19674,824880,56,2834,1 +19675,825780,142,7122,1 +19676,826108,104,5209,1 +19677,826561,123,6180,1 +19678,826565,171,8556,1 +19679,826570,84,4212,1 +19680,826752,110,5516,1 +19681,827040,26,1339,1 +19682,827041,24,1223,1 +19683,827041,174,8740,1 +19684,827042,196,9813,1 +19685,827049,178,8902,1 +19686,827062,146,7337,1 +19687,827088,30,1510,1 +19688,827100,117,5858,1 +19689,827113,144,7228,1 +19690,827124,32,1613,1 +19691,827140,41,2090,1 +19692,827172,55,2767,1 +19693,827181,194,9714,1 +19694,827220,98,4911,1 +19695,827520,83,4190,1 +19696,827532,188,9412,1 +19697,827544,154,7740,1 +19698,827580,151,7553,1 +19699,827613,30,1504,1 +19700,828000,95,4759,1 +19701,828013,42,2144,1 +19702,828018,167,8357,1 +19703,828019,92,4613,1 +19704,828024,87,4377,1 +19705,828120,63,3186,1 +19706,828144,187,9361,1 +19707,828496,53,2680,1 +19708,828525,47,2393,1 +19709,828529,8,425,1 +19710,828568,29,1458,1 +19711,828672,58,2901,1 +19712,828960,193,9671,1 +19713,828984,134,6701,1 +19714,828997,148,7434,1 +19715,829020,84,4238,1 +19716,829172,163,8189,1 +19717,829440,90,4520,1 +19718,829441,73,3687,1 +19719,829443,19,976,1 +19720,829443,51,2589,1 +19721,829452,63,3154,1 +19722,829452,65,3294,1 +19723,829464,97,4873,1 +19724,829466,137,6859,1 +19725,829489,26,1315,1 +19726,829503,184,9215,1 +19727,829512,126,6320,1 +19728,829512,166,8339,1 +19729,829600,194,9745,1 +19730,829956,167,8397,1 +19731,830447,80,4043,1 +19732,830474,89,4495,1 +19733,830892,85,4281,1 +19734,830904,186,9339,1 +19735,830905,137,6897,1 +19736,830941,179,8990,1 +19737,830955,106,5343,1 +19738,830976,16,819,1 +19739,831468,77,3872,1 +19740,831555,142,7129,1 +19741,831840,167,8387,1 +19742,831840,66,3338,1 +19743,831840,91,4587,1 +19744,831843,173,8686,1 +19745,831852,31,1553,1 +19746,831858,120,6011,1 +19747,831870,90,4516,1 +19748,831912,147,7372,1 +19749,831924,54,2749,1 +19750,831943,84,4214,1 +19751,831954,170,8509,1 +19752,832320,180,9033,1 +19753,832322,7,386,1 +19754,832329,1,61,1 +19755,832332,32,1615,1 +19756,832332,24,1210,1 +19757,832337,11,553,1 +19758,832340,6,304,1 +19759,832344,49,2457,1 +19760,832344,102,5127,1 +19761,832346,90,4525,1 +19762,832353,156,7827,1 +19763,832354,120,6003,1 +19764,832359,105,5300,1 +19765,832362,68,3421,1 +19766,832368,7,384,1 +19767,832375,174,8711,1 +19768,832393,144,7238,1 +19769,832400,89,4471,1 +19770,832466,103,5187,1 +19771,832488,54,2715,1 +19772,832526,39,1991,1 +19773,833281,104,5249,1 +19774,833292,166,8325,1 +19775,833316,146,7333,1 +19776,833329,182,9101,1 +19777,833331,82,4131,1 +19778,833376,171,8589,1 +19779,833772,89,4471,1 +19780,833785,72,3648,1 +19781,833806,3,172,1 +19782,833811,38,1934,1 +19783,833844,188,9429,1 +19784,833844,114,5744,1 +19785,833930,153,7685,1 +19786,833961,183,9200,1 +19787,833961,144,7248,1 +19788,833964,176,8813,1 +19789,834240,182,9142,1 +19790,834252,186,9309,1 +19791,834261,143,7171,1 +19792,834276,16,821,1 +19793,834288,7,354,1 +19794,834432,165,8279,1 +19795,834720,69,3475,1 +19796,834735,88,4415,1 +19797,834741,15,752,1 +19798,834756,183,9169,1 +19799,834756,38,1901,1 +19800,834769,184,9229,1 +19801,834777,138,6941,1 +19802,834806,91,4590,1 +19803,834818,126,6302,1 +19804,834831,42,2140,1 +19805,834845,191,9563,1 +19806,834865,179,8980,1 +19807,835200,112,5635,1 +19808,835201,179,8984,1 +19809,835201,150,7506,1 +19810,835201,8,424,1 +19811,835201,19,961,1 +19812,835203,90,4516,1 +19813,835204,111,5586,1 +19814,835204,137,6898,1 +19815,835212,51,2599,1 +19816,835212,64,3216,1 +19817,835214,37,1886,1 +19818,835216,97,4900,1 +19819,835224,38,1903,1 +19820,835224,147,7364,1 +19821,835224,56,2821,1 +19822,835224,125,6273,1 +19823,835233,85,4297,1 +19824,835236,18,918,1 +19825,835246,159,7975,1 +19826,835246,12,643,1 +19827,835248,55,2791,1 +19828,835249,67,3374,1 +19829,835249,148,7439,1 +19830,835254,193,9686,1 +19831,835254,74,3718,1 +19832,835260,156,7838,1 +19833,835272,90,4539,1 +19834,835273,27,1372,1 +19835,835285,118,5937,1 +19836,835296,10,504,1 +19837,835326,170,8542,1 +19838,835339,53,2669,1 +19839,835356,184,9202,1 +19840,835417,99,4963,1 +19841,835680,105,5267,1 +19842,835680,125,6274,1 +19843,835680,70,3524,1 +19844,835682,96,4825,1 +19845,835683,148,7411,1 +19846,835686,158,7945,1 +19847,835686,93,4662,1 +19848,835689,179,8970,1 +19849,835689,144,7249,1 +19850,835692,124,6211,1 +19851,835692,94,4742,1 +19852,835692,174,8739,1 +19853,835694,159,7994,1 +19854,835698,153,7684,1 +19855,835698,60,3030,1 +19856,835700,37,1872,1 +19857,835704,22,1115,1 +19858,835704,182,9134,1 +19859,835704,110,5508,1 +19860,835704,12,604,1 +19861,835707,151,7599,1 +19862,835713,195,9761,1 +19863,835716,22,1101,1 +19864,835718,60,3027,1 +19865,835722,185,9252,1 +19866,835728,3,198,1 +19867,835730,70,3507,1 +19868,835741,167,8374,1 +19869,835742,171,8578,1 +19870,835753,185,9287,1 +19871,835753,128,6445,1 +19872,835755,37,1861,1 +19873,835755,29,1487,1 +19874,835791,104,5237,1 +19875,835803,102,5134,1 +19876,835825,100,5043,1 +19877,835882,27,1393,1 +19878,835920,85,4285,1 +19879,835924,189,9498,1 +19880,836172,145,7274,1 +19881,836188,65,3256,1 +19882,836208,8,411,1 +19883,836640,13,654,1 +19884,836680,18,949,1 +19885,836724,115,5783,1 +19886,837132,149,7451,1 +19887,837204,28,1437,1 +19888,837600,112,5611,1 +19889,837606,171,8552,1 +19890,837612,186,9325,1 +19891,837624,151,7559,1 +19892,837636,36,1802,1 +19893,837648,126,6316,1 +19894,837649,19,954,1 +19895,837721,86,4308,1 +19896,837737,95,4798,1 +19897,837757,132,6611,1 +19898,837762,192,9631,1 +19899,838080,41,2091,1 +19900,838107,99,4995,1 +19901,838570,61,3072,1 +19902,838596,35,1775,1 +19903,839040,137,6883,1 +19904,839040,184,9204,1 +19905,839052,167,8391,1 +19906,839054,167,8364,1 +19907,839064,85,4269,1 +19908,839064,122,6110,1 +19909,839065,80,4033,1 +19910,839076,26,1343,1 +19911,839079,22,1115,1 +19912,839080,182,9109,1 +19913,839088,83,4188,1 +19914,839097,64,3207,1 +19915,839098,51,2586,1 +19916,839100,61,3051,1 +19917,839101,24,1213,1 +19918,839112,112,5612,1 +19919,839112,35,1763,1 +19920,839124,130,6507,1 +19921,839136,112,5618,1 +19922,839137,134,6742,1 +19923,839162,84,4238,1 +19924,839523,141,7069,1 +19925,839532,192,9641,1 +19926,839534,137,6872,1 +19927,839537,118,5907,1 +19928,839553,127,6383,1 +19929,839556,111,5564,1 +19930,839557,70,3520,1 +19931,839607,94,4740,1 +19932,839640,13,676,1 +19933,839892,135,6756,1 +19934,840000,42,2121,1 +19935,840000,52,2618,1 +19936,840000,83,4190,1 +19937,840001,138,6938,1 +19938,840003,161,8083,1 +19939,840004,21,1060,1 +19940,840006,4,223,1 +19941,840009,43,2176,1 +19942,840011,123,6155,1 +19943,840012,20,1004,1 +19944,840012,184,9220,1 +19945,840013,185,9276,1 +19946,840013,154,7748,1 +19947,840013,43,2198,1 +19948,840013,94,4736,1 +19949,840015,50,2547,1 +19950,840017,0,39,1 +19951,840036,1,100,1 +19952,840036,187,9353,1 +19953,840045,120,6002,1 +19954,840048,119,5964,1 +19955,840049,103,5186,1 +19956,840061,50,2549,1 +19957,840061,17,893,1 +19958,840063,87,4375,1 +19959,840072,44,2205,1 +19960,840096,112,5640,1 +19961,840109,169,8464,1 +19962,840114,121,6100,1 +19963,840180,90,4538,1 +19964,840480,126,6337,1 +19965,840480,71,3592,1 +19966,840480,161,8091,1 +19967,840480,84,4220,1 +19968,840481,33,1671,1 +19969,840481,178,8920,1 +19970,840481,156,7850,1 +19971,840481,188,9440,1 +19972,840484,152,7621,1 +19973,840492,139,6970,1 +19974,840493,45,2275,1 +19975,840493,91,4561,1 +19976,840501,195,9763,1 +19977,840501,72,3609,1 +19978,840504,91,4591,1 +19979,840505,66,3334,1 +19980,840506,164,8223,1 +19981,840509,191,9565,1 +19982,840510,3,172,1 +19983,840516,177,8851,1 +19984,840528,151,7578,1 +19985,840528,80,4018,1 +19986,840543,188,9413,1 +19987,840552,146,7346,1 +19988,840564,81,4059,1 +19989,840564,194,9713,1 +19990,840576,162,8133,1 +19991,840577,160,8037,1 +19992,840588,77,3858,1 +19993,840613,112,5644,1 +19994,840624,189,9481,1 +19995,840649,135,6792,1 +19996,840674,38,1901,1 +19997,840712,57,2883,1 +19998,840960,120,6038,1 +19999,840961,31,1559,1 +20000,840974,107,5399,1 +20001,840981,176,8823,1 +20002,840984,15,765,1 +20003,840996,130,6519,1 +20004,840997,134,6718,1 +20005,841008,9,496,1 +20006,841020,170,8539,1 +20007,841020,89,4494,1 +20008,841029,18,949,1 +20009,841057,43,2156,1 +20010,841104,46,2302,1 +20011,841152,148,7436,1 +20012,841179,154,7708,1 +20013,841440,187,9367,1 +20014,841446,82,4130,1 +20015,841450,130,6545,1 +20016,841452,77,3899,1 +20017,841453,122,6103,1 +20018,841464,173,8668,1 +20019,841489,165,8263,1 +20020,841500,167,8366,1 +20021,841536,33,1696,1 +20022,841920,55,2783,1 +20023,841920,28,1440,1 +20024,841920,166,8349,1 +20025,841921,176,8832,1 +20026,841923,190,9546,1 +20027,841923,90,4549,1 +20028,841924,16,848,1 +20029,841929,7,388,1 +20030,841929,102,5133,1 +20031,841932,54,2717,1 +20032,841933,54,2747,1 +20033,841933,97,4871,1 +20034,841936,128,6442,1 +20035,841938,192,9604,1 +20036,841944,32,1640,1 +20037,841944,98,4946,1 +20038,841946,86,4349,1 +20039,841947,114,5735,1 +20040,841957,82,4113,1 +20041,841959,199,9992,1 +20042,841966,12,636,1 +20043,841966,16,831,1 +20044,841972,134,6740,1 +20045,841973,87,4383,1 +20046,841976,15,793,1 +20047,841992,147,7386,1 +20048,841992,25,1272,1 +20049,841992,90,4505,1 +20050,841997,190,9529,1 +20051,841998,73,3672,1 +20052,842004,94,4742,1 +20053,842004,98,4948,1 +20054,842006,162,8106,1 +20055,842019,162,8139,1 +20056,842027,164,8243,1 +20057,842035,120,6003,1 +20058,842036,75,3784,1 +20059,842040,152,7639,1 +20060,842054,146,7345,1 +20061,842400,72,3650,1 +20062,842400,23,1172,1 +20063,842400,51,2597,1 +20064,842402,37,1889,1 +20065,842413,192,9615,1 +20066,842416,159,7955,1 +20067,842421,185,9297,1 +20068,842424,189,9471,1 +20069,842424,157,7851,1 +20070,842424,77,3863,1 +20071,842424,56,2820,1 +20072,842426,48,2419,1 +20073,842438,161,8098,1 +20074,842447,97,4887,1 +20075,842473,31,1567,1 +20076,842475,155,7783,1 +20077,842476,164,8225,1 +20078,842498,57,2897,1 +20079,842508,117,5899,1 +20080,842548,24,1240,1 +20081,842787,94,4714,1 +20082,842893,22,1146,1 +20083,842904,47,2395,1 +20084,843360,93,4680,1 +20085,843372,165,8268,1 +20086,843374,103,5186,1 +20087,843375,158,7944,1 +20088,843387,111,5557,1 +20089,843397,34,1733,1 +20090,843399,148,7414,1 +20091,843399,60,3034,1 +20092,843420,116,5831,1 +20093,843423,51,2597,1 +20094,843432,84,4202,1 +20095,843465,179,8960,1 +20096,843469,81,4080,1 +20097,843472,54,2734,1 +20098,843483,106,5304,1 +20099,843492,56,2803,1 +20100,843579,15,799,1 +20101,843840,122,6116,1 +20102,843841,85,4296,1 +20103,843864,35,1769,1 +20104,843876,8,446,1 +20105,843895,99,4961,1 +20106,843953,132,6602,1 +20107,843972,86,4308,1 +20108,844359,156,7805,1 +20109,844800,140,7037,1 +20110,844805,67,3357,1 +20111,844806,86,4307,1 +20112,844809,121,6068,1 +20113,844809,113,5680,1 +20114,844812,184,9211,1 +20115,844812,167,8388,1 +20116,844816,89,4492,1 +20117,844818,114,5718,1 +20118,844821,177,8898,1 +20119,844824,147,7367,1 +20120,844824,72,3633,1 +20121,844824,134,6706,1 +20122,844824,43,2185,1 +20123,844836,65,3253,1 +20124,844837,194,9724,1 +20125,844848,198,9907,1 +20126,844848,136,6833,1 +20127,844849,138,6929,1 +20128,844860,100,5045,1 +20129,844872,5,292,1 +20130,844872,166,8316,1 +20131,844879,84,4240,1 +20132,844884,113,5692,1 +20133,844884,152,7628,1 +20134,844885,196,9831,1 +20135,844900,69,3459,1 +20136,844905,46,2340,1 +20137,844909,26,1303,1 +20138,844947,187,9398,1 +20139,844968,178,8916,1 +20140,845280,89,4492,1 +20141,845285,175,8778,1 +20142,845298,150,7533,1 +20143,845328,89,4497,1 +20144,845355,48,2412,1 +20145,845772,188,9438,1 +20146,846252,97,4860,1 +20147,846264,181,9054,1 +20148,846301,185,9291,1 +20149,847213,107,5374,1 +20150,847236,197,9891,1 +20151,847284,6,341,1 +20152,847296,64,3227,1 +20153,847683,129,6471,1 +20154,847728,63,3165,1 +20155,848160,2,149,1 +20156,848184,42,2121,1 +20157,848184,190,9538,1 +20158,848221,37,1867,1 +20159,848642,122,6116,1 +20160,848652,199,9972,1 +20161,848653,39,1983,1 +20162,848665,44,2226,1 +20163,848680,165,8296,1 +20164,848688,34,1725,1 +20165,848692,104,5207,1 +20166,848694,9,458,1 +20167,848701,64,3223,1 +20168,848703,192,9630,1 +20169,848709,55,2763,1 +20170,848715,46,2311,1 +20171,848754,55,2760,1 +20172,848760,34,1724,1 +20173,848763,23,1195,1 +20174,848769,39,1957,1 +20175,848784,103,5179,1 +20176,848820,104,5208,1 +20177,849156,153,7698,1 +20178,849192,186,9341,1 +20179,849600,32,1626,1 +20180,849601,20,1047,1 +20181,849605,135,6774,1 +20182,849606,124,6229,1 +20183,849609,173,8700,1 +20184,849613,167,8389,1 +20185,849615,127,6362,1 +20186,849619,136,6831,1 +20187,849621,36,1802,1 +20188,849624,61,3065,1 +20189,849626,67,3363,1 +20190,849634,9,484,1 +20191,849636,114,5711,1 +20192,849661,126,6312,1 +20193,849672,116,5819,1 +20194,849709,151,7564,1 +20195,849741,26,1307,1 +20196,849756,162,8118,1 +20197,849816,130,6520,1 +20198,850094,86,4319,1 +20199,850587,140,7019,1 +20200,850621,84,4234,1 +20201,851040,170,8517,1 +20202,851043,63,3154,1 +20203,851044,188,9418,1 +20204,851052,85,4258,1 +20205,851052,116,5823,1 +20206,851052,171,8555,1 +20207,851062,7,368,1 +20208,851064,59,2970,1 +20209,851064,5,265,1 +20210,851088,92,4625,1 +20211,851100,69,3471,1 +20212,851112,44,2209,1 +20213,851126,162,8145,1 +20214,851133,22,1103,1 +20215,851139,159,7992,1 +20216,851524,70,3507,1 +20217,851527,76,3818,1 +20218,851532,64,3211,1 +20219,851536,89,4467,1 +20220,851545,137,6860,1 +20221,851568,97,4882,1 +20222,852960,17,865,1 +20223,852984,151,7551,1 +20224,852996,173,8680,1 +20225,853137,136,6834,1 +20226,853476,86,4327,1 +20227,853488,161,8096,1 +20228,853545,187,9369,1 +20229,853564,66,3320,1 +20230,853920,151,7582,1 +20231,853921,82,4136,1 +20232,853923,170,8543,1 +20233,853923,60,3047,1 +20234,853926,14,745,1 +20235,853929,180,9009,1 +20236,853929,41,2070,1 +20237,853944,54,2703,1 +20238,853948,88,4431,1 +20239,853956,0,42,1 +20240,853968,158,7919,1 +20241,853980,178,8919,1 +20242,854007,122,6108,1 +20243,854029,47,2376,1 +20244,854071,129,6494,1 +20245,854112,132,6622,1 +20246,854145,38,1918,1 +20247,854190,103,5198,1 +20248,854417,99,4990,1 +20249,854451,142,7106,1 +20250,854511,101,5084,1 +20251,854616,100,5006,1 +20252,854926,132,6614,1 +20253,855361,184,9203,1 +20254,855369,70,3502,1 +20255,855373,127,6393,1 +20256,855384,29,1496,1 +20257,855468,7,351,1 +20258,855841,97,4857,1 +20259,855864,109,5456,1 +20260,855981,107,5371,1 +20261,856332,31,1597,1 +20262,856336,83,4191,1 +20263,857304,146,7307,1 +20264,857328,99,4992,1 +20265,857448,157,7861,1 +20266,857760,111,5577,1 +20267,857761,172,8606,1 +20268,857762,27,1352,1 +20269,857768,196,9844,1 +20270,857769,119,5986,1 +20271,857772,107,5389,1 +20272,857772,189,9484,1 +20273,857774,163,8186,1 +20274,857793,76,3822,1 +20275,857796,173,8700,1 +20276,857796,100,5048,1 +20277,857796,154,7705,1 +20278,857808,140,7017,1 +20279,857808,110,5522,1 +20280,857814,113,5669,1 +20281,857817,191,9568,1 +20282,857820,39,1951,1 +20283,857820,6,349,1 +20284,857827,123,6155,1 +20285,857832,190,9525,1 +20286,857846,118,5938,1 +20287,857858,89,4453,1 +20288,857880,59,2996,1 +20289,857880,19,996,1 +20290,857883,172,8616,1 +20291,857905,119,5965,1 +20292,858003,153,7672,1 +20293,858036,4,229,1 +20294,858240,30,1520,1 +20295,858240,81,4079,1 +20296,858240,21,1072,1 +20297,858240,51,2552,1 +20298,858246,164,8215,1 +20299,858247,111,5591,1 +20300,858253,21,1075,1 +20301,858264,99,4964,1 +20302,858264,132,6611,1 +20303,858264,65,3257,1 +20304,858265,192,9616,1 +20305,858276,86,4315,1 +20306,858288,137,6899,1 +20307,858300,136,6843,1 +20308,858300,152,7603,1 +20309,858300,51,2575,1 +20310,858302,66,3343,1 +20311,858303,0,39,1 +20312,858327,27,1386,1 +20313,858329,8,419,1 +20314,858336,83,4196,1 +20315,858372,156,7829,1 +20316,858372,161,8090,1 +20317,858385,122,6144,1 +20318,858723,121,6065,1 +20319,859200,73,3659,1 +20320,859207,66,3332,1 +20321,859230,161,8070,1 +20322,859284,150,7542,1 +20323,859680,137,6873,1 +20324,859680,84,4209,1 +20325,859680,25,1262,1 +20326,859680,57,2857,1 +20327,859680,149,7480,1 +20328,859680,2,137,1 +20329,859680,114,5704,1 +20330,859680,51,2574,1 +20331,859680,142,7135,1 +20332,859680,95,4785,1 +20333,859680,8,406,1 +20334,859680,83,4178,1 +20335,859680,79,3964,1 +20336,859680,29,1496,1 +20337,859680,79,3952,1 +20338,859680,44,2206,1 +20339,859681,8,446,1 +20340,859681,172,8628,1 +20341,859681,23,1171,1 +20342,859682,28,1438,1 +20343,859682,51,2569,1 +20344,859682,152,7601,1 +20345,859683,108,5426,1 +20346,859683,120,6047,1 +20347,859683,64,3210,1 +20348,859684,8,429,1 +20349,859684,129,6497,1 +20350,859689,50,2547,1 +20351,859691,186,9318,1 +20352,859692,39,1958,1 +20353,859692,40,2017,1 +20354,859692,169,8474,1 +20355,859692,173,8677,1 +20356,859692,106,5335,1 +20357,859692,178,8915,1 +20358,859692,137,6875,1 +20359,859692,134,6712,1 +20360,859692,159,7988,1 +20361,859692,86,4312,1 +20362,859692,93,4691,1 +20363,859692,22,1118,1 +20364,859692,132,6631,1 +20365,859692,120,6043,1 +20366,859693,92,4617,1 +20367,859693,166,8328,1 +20368,859693,87,4363,1 +20369,859693,30,1532,1 +20370,859693,88,4435,1 +20371,859695,19,997,1 +20372,859695,150,7504,1 +20373,859695,64,3203,1 +20374,859696,165,8292,1 +20375,859698,59,2984,1 +20376,859699,101,5073,1 +20377,859700,153,7677,1 +20378,859701,171,8578,1 +20379,859702,25,1263,1 +20380,859702,188,9436,1 +20381,859702,61,3064,1 +20382,859704,161,8070,1 +20383,859704,179,8970,1 +20384,859704,157,7894,1 +20385,859704,166,8335,1 +20386,859704,38,1933,1 +20387,859704,78,3917,1 +20388,859705,10,541,1 +20389,859706,59,2961,1 +20390,859706,190,9547,1 +20391,859707,11,558,1 +20392,859707,26,1329,1 +20393,859710,2,138,1 +20394,859710,106,5302,1 +20395,859713,32,1634,1 +20396,859713,172,8603,1 +20397,859716,198,9903,1 +20398,859716,56,2809,1 +20399,859716,3,186,1 +20400,859717,67,3381,1 +20401,859718,58,2937,1 +20402,859719,156,7826,1 +20403,859719,69,3463,1 +20404,859725,74,3732,1 +20405,859726,124,6229,1 +20406,859728,197,9867,1 +20407,859728,10,513,1 +20408,859728,60,3011,1 +20409,859729,61,3054,1 +20410,859729,132,6611,1 +20411,859740,144,7218,1 +20412,859740,0,35,1 +20413,859740,60,3003,1 +20414,859740,66,3311,1 +20415,859741,119,5994,1 +20416,859741,18,946,1 +20417,859741,8,444,1 +20418,859743,72,3601,1 +20419,859744,30,1505,1 +20420,859744,199,9978,1 +20421,859749,147,7365,1 +20422,859750,57,2885,1 +20423,859752,134,6707,1 +20424,859752,123,6190,1 +20425,859752,42,2116,1 +20426,859752,23,1178,1 +20427,859752,127,6369,1 +20428,859753,57,2873,1 +20429,859753,73,3693,1 +20430,859754,77,3851,1 +20431,859758,53,2661,1 +20432,859762,110,5519,1 +20433,859764,142,7127,1 +20434,859765,188,9445,1 +20435,859765,33,1663,1 +20436,859766,161,8082,1 +20437,859767,142,7115,1 +20438,859767,174,8719,1 +20439,859767,54,2707,1 +20440,859776,72,3627,1 +20441,859776,69,3493,1 +20442,859776,182,9121,1 +20443,859780,153,7651,1 +20444,859781,51,2582,1 +20445,859788,31,1596,1 +20446,859788,94,4722,1 +20447,859789,91,4593,1 +20448,859789,180,9044,1 +20449,859791,100,5027,1 +20450,859799,169,8489,1 +20451,859800,149,7486,1 +20452,859800,129,6499,1 +20453,859800,73,3670,1 +20454,859801,171,8551,1 +20455,859803,175,8780,1 +20456,859812,127,6370,1 +20457,859812,143,7192,1 +20458,859813,175,8778,1 +20459,859818,24,1242,1 +20460,859820,144,7240,1 +20461,859824,62,3101,1 +20462,859830,122,6112,1 +20463,859836,86,4304,1 +20464,859836,2,105,1 +20465,859840,63,3154,1 +20466,859849,191,9551,1 +20467,859854,36,1823,1 +20468,859862,76,3836,1 +20469,859908,187,9381,1 +20470,859910,28,1438,1 +20471,859932,27,1369,1 +20472,859959,171,8551,1 +20473,860041,99,4993,1 +20474,860160,148,7405,1 +20475,860184,190,9508,1 +20476,860640,138,6933,1 +20477,860640,34,1706,1 +20478,860640,152,7611,1 +20479,860640,51,2587,1 +20480,860640,13,665,1 +20481,860640,9,482,1 +20482,860640,111,5565,1 +20483,860641,126,6337,1 +20484,860641,187,9353,1 +20485,860642,71,3591,1 +20486,860642,128,6406,1 +20487,860649,90,4516,1 +20488,860652,104,5210,1 +20489,860653,11,565,1 +20490,860653,163,8171,1 +20491,860654,99,4986,1 +20492,860655,115,5792,1 +20493,860664,125,6295,1 +20494,860664,55,2774,1 +20495,860664,170,8521,1 +20496,860666,149,7460,1 +20497,860666,91,4552,1 +20498,860676,148,7402,1 +20499,860677,80,4029,1 +20500,860688,54,2713,1 +20501,860700,181,9079,1 +20502,860703,25,1265,1 +20503,860712,20,1041,1 +20504,860712,103,5189,1 +20505,860713,167,8353,1 +20506,860724,33,1699,1 +20507,860724,184,9201,1 +20508,860727,2,141,1 +20509,860736,5,295,1 +20510,860736,57,2854,1 +20511,860737,42,2103,1 +20512,860747,11,596,1 +20513,860748,102,5149,1 +20514,860750,3,181,1 +20515,860784,8,429,1 +20516,860793,90,4513,1 +20517,860803,143,7158,1 +20518,861120,4,239,1 +20519,861144,66,3320,1 +20520,861195,77,3878,1 +20521,861204,145,7251,1 +20522,861600,118,5910,1 +20523,861601,38,1929,1 +20524,861673,49,2478,1 +20525,861775,23,1159,1 +20526,862080,38,1926,1 +20527,862080,138,6927,1 +20528,862083,6,312,1 +20529,862093,116,5838,1 +20530,862093,188,9438,1 +20531,862093,2,117,1 +20532,862093,52,2639,1 +20533,862094,186,9342,1 +20534,862101,154,7705,1 +20535,862104,109,5478,1 +20536,862116,107,5380,1 +20537,862116,156,7814,1 +20538,862117,163,8171,1 +20539,862125,70,3544,1 +20540,862131,74,3742,1 +20541,862132,46,2322,1 +20542,862141,46,2318,1 +20543,862152,55,2773,1 +20544,862152,41,2054,1 +20545,862162,192,9610,1 +20546,862176,167,8372,1 +20547,862177,94,4716,1 +20548,862177,130,6510,1 +20549,862211,136,6814,1 +20550,862223,62,3139,1 +20551,862250,153,7652,1 +20552,862320,186,9313,1 +20553,862581,154,7731,1 +20554,863040,73,3660,1 +20555,863040,166,8318,1 +20556,863040,48,2428,1 +20557,863041,148,7424,1 +20558,863041,12,647,1 +20559,863045,189,9463,1 +20560,863050,100,5001,1 +20561,863052,6,339,1 +20562,863052,167,8365,1 +20563,863055,106,5326,1 +20564,863056,28,1419,1 +20565,863058,74,3706,1 +20566,863061,80,4030,1 +20567,863064,194,9725,1 +20568,863065,5,264,1 +20569,863076,132,6606,1 +20570,863079,87,4370,1 +20571,863101,45,2286,1 +20572,863101,62,3142,1 +20573,863112,150,7547,1 +20574,863112,169,8456,1 +20575,863130,199,9951,1 +20576,863136,115,5774,1 +20577,863137,159,7991,1 +20578,863151,99,4997,1 +20579,863157,167,8389,1 +20580,863160,173,8657,1 +20581,863184,189,9451,1 +20582,863198,128,6404,1 +20583,863305,149,7475,1 +20584,863539,2,120,1 +20585,863574,187,9377,1 +20586,863745,26,1311,1 +20587,864012,55,2793,1 +20588,864074,193,9689,1 +20589,864481,83,4167,1 +20590,864492,17,898,1 +20591,864492,164,8217,1 +20592,864505,82,4140,1 +20593,864511,12,623,1 +20594,864517,138,6944,1 +20595,864531,76,3849,1 +20596,864542,20,1010,1 +20597,864543,92,4610,1 +20598,864546,183,9193,1 +20599,864612,1,65,1 +20600,864960,181,9073,1 +20601,864960,5,284,1 +20602,864961,173,8654,1 +20603,864984,1,53,1 +20604,865008,176,8829,1 +20605,865009,98,4936,1 +20606,865020,144,7232,1 +20607,865029,39,1977,1 +20608,865045,132,6643,1 +20609,865176,118,5929,1 +20610,865188,120,6023,1 +20611,865440,21,1064,1 +20612,865441,192,9647,1 +20613,865446,182,9148,1 +20614,865452,155,7767,1 +20615,865452,85,4263,1 +20616,865452,156,7830,1 +20617,865455,12,622,1 +20618,865473,98,4920,1 +20619,865474,57,2863,1 +20620,865500,39,1957,1 +20621,865540,44,2235,1 +20622,865608,126,6344,1 +20623,865644,55,2793,1 +20624,865658,67,3354,1 +20625,865935,80,4018,1 +20626,865980,158,7927,1 +20627,866001,113,5695,1 +20628,866028,21,1097,1 +20629,866403,141,7051,1 +20630,866403,54,2727,1 +20631,866412,54,2701,1 +20632,866413,143,7160,1 +20633,866436,118,5917,1 +20634,866448,195,9795,1 +20635,866448,29,1454,1 +20636,866454,137,6871,1 +20637,866510,83,4163,1 +20638,867366,178,8950,1 +20639,867366,70,3502,1 +20640,867373,69,3471,1 +20641,867375,112,5603,1 +20642,867410,152,7624,1 +20643,867468,187,9357,1 +20644,867480,53,2695,1 +20645,867481,31,1569,1 +20646,867840,167,8392,1 +20647,867841,158,7904,1 +20648,867841,77,3853,1 +20649,867843,5,254,1 +20650,867854,166,8305,1 +20651,867945,125,6284,1 +20652,867948,139,6985,1 +20653,867974,1,58,1 +20654,867987,16,815,1 +20655,868320,51,2583,1 +20656,868320,119,5952,1 +20657,868326,74,3742,1 +20658,868327,70,3504,1 +20659,868335,28,1428,1 +20660,868344,97,4886,1 +20661,868344,175,8788,1 +20662,868353,141,7052,1 +20663,868356,92,4604,1 +20664,868356,50,2544,1 +20665,868369,66,3339,1 +20666,868370,45,2258,1 +20667,868389,19,992,1 +20668,868418,28,1410,1 +20669,868452,62,3132,1 +20670,868462,139,6954,1 +20671,868512,17,876,1 +20672,868525,3,162,1 +20673,868800,81,4078,1 +20674,868800,149,7454,1 +20675,868800,115,5755,1 +20676,868800,81,4077,1 +20677,868800,76,3826,1 +20678,868800,76,3842,1 +20679,868802,33,1696,1 +20680,868803,39,1980,1 +20681,868806,145,7263,1 +20682,868806,120,6050,1 +20683,868812,59,2961,1 +20684,868812,62,3135,1 +20685,868812,74,3730,1 +20686,868812,133,6666,1 +20687,868812,170,8534,1 +20688,868812,91,4580,1 +20689,868812,29,1493,1 +20690,868812,46,2346,1 +20691,868812,112,5625,1 +20692,868813,38,1928,1 +20693,868813,109,5452,1 +20694,868816,130,6502,1 +20695,868816,174,8709,1 +20696,868816,101,5092,1 +20697,868824,103,5181,1 +20698,868824,0,14,1 +20699,868824,128,6438,1 +20700,868824,136,6847,1 +20701,868827,80,4037,1 +20702,868832,128,6412,1 +20703,868833,170,8528,1 +20704,868836,137,6895,1 +20705,868836,198,9935,1 +20706,868836,135,6784,1 +20707,868837,147,7352,1 +20708,868837,121,6099,1 +20709,868839,54,2748,1 +20710,868839,152,7618,1 +20711,868839,127,6375,1 +20712,868839,179,8976,1 +20713,868840,133,6660,1 +20714,868845,84,4213,1 +20715,868845,183,9200,1 +20716,868845,186,9318,1 +20717,868848,165,8289,1 +20718,868848,194,9719,1 +20719,868849,60,3027,1 +20720,868849,99,4996,1 +20721,868849,82,4119,1 +20722,868860,173,8677,1 +20723,868860,128,6404,1 +20724,868860,159,7999,1 +20725,868860,67,3371,1 +20726,868860,148,7421,1 +20727,868864,184,9207,1 +20728,868864,39,1965,1 +20729,868869,32,1635,1 +20730,868872,147,7391,1 +20731,868872,113,5664,1 +20732,868885,156,7805,1 +20733,868890,78,3918,1 +20734,868909,114,5716,1 +20735,868917,188,9406,1 +20736,868921,112,5636,1 +20737,868921,163,8166,1 +20738,868921,162,8109,1 +20739,868921,76,3849,1 +20740,868932,160,8012,1 +20741,868945,87,4397,1 +20742,868956,107,5386,1 +20743,869040,24,1213,1 +20744,869281,141,7055,1 +20745,869297,139,6994,1 +20746,869304,95,4769,1 +20747,869305,128,6432,1 +20748,869316,197,9857,1 +20749,869328,40,2007,1 +20750,869412,171,8563,1 +20751,869760,15,770,1 +20752,869760,92,4642,1 +20753,869761,95,4783,1 +20754,869762,195,9760,1 +20755,869766,96,4811,1 +20756,869772,80,4017,1 +20757,869772,1,62,1 +20758,869772,68,3419,1 +20759,869772,32,1625,1 +20760,869775,177,8871,1 +20761,869781,50,2536,1 +20762,869781,180,9029,1 +20763,869784,184,9244,1 +20764,869784,103,5188,1 +20765,869784,190,9522,1 +20766,869785,153,7657,1 +20767,869785,7,351,1 +20768,869785,149,7498,1 +20769,869786,114,5740,1 +20770,869795,150,7521,1 +20771,869796,38,1924,1 +20772,869797,10,501,1 +20773,869808,192,9629,1 +20774,869808,68,3401,1 +20775,869808,118,5925,1 +20776,869808,87,4389,1 +20777,869809,49,2470,1 +20778,869818,125,6284,1 +20779,869820,122,6145,1 +20780,869820,97,4886,1 +20781,869822,158,7942,1 +20782,869832,55,2769,1 +20783,869832,192,9615,1 +20784,869833,98,4905,1 +20785,869834,113,5669,1 +20786,869835,148,7420,1 +20787,869838,65,3291,1 +20788,869844,93,4653,1 +20789,869847,191,9563,1 +20790,869856,122,6147,1 +20791,869857,110,5503,1 +20792,869857,160,8017,1 +20793,869858,143,7191,1 +20794,869871,9,479,1 +20795,869884,17,860,1 +20796,869886,80,4008,1 +20797,869901,62,3150,1 +20798,869916,112,5619,1 +20799,869917,98,4943,1 +20800,869928,99,4953,1 +20801,869985,194,9724,1 +20802,870013,58,2918,1 +20803,870024,127,6376,1 +20804,870084,77,3897,1 +20805,870240,153,7682,1 +20806,870240,182,9139,1 +20807,870242,36,1832,1 +20808,870243,54,2729,1 +20809,870249,150,7546,1 +20810,870252,81,4065,1 +20811,870255,24,1213,1 +20812,870256,109,5466,1 +20813,870256,117,5898,1 +20814,870264,49,2472,1 +20815,870274,83,4165,1 +20816,870274,140,7003,1 +20817,870276,80,4032,1 +20818,870312,17,868,1 +20819,870317,20,1009,1 +20820,870324,88,4416,1 +20821,870345,89,4478,1 +20822,870348,163,8191,1 +20823,870348,103,5179,1 +20824,870350,63,3194,1 +20825,870360,81,4089,1 +20826,870375,6,318,1 +20827,870384,94,4706,1 +20828,870783,67,3378,1 +20829,870783,123,6198,1 +20830,871215,187,9386,1 +20831,871224,30,1547,1 +20832,871455,133,6699,1 +20833,871680,148,7417,1 +20834,871680,58,2923,1 +20835,871681,129,6481,1 +20836,871681,61,3068,1 +20837,871692,99,4952,1 +20838,871693,79,3960,1 +20839,871694,39,1983,1 +20840,871704,196,9849,1 +20841,871704,163,8178,1 +20842,871710,83,4194,1 +20843,871716,24,1226,1 +20844,871716,159,7985,1 +20845,871716,11,571,1 +20846,871728,94,4740,1 +20847,871728,71,3571,1 +20848,871738,162,8109,1 +20849,871740,125,6256,1 +20850,871742,22,1118,1 +20851,871752,80,4034,1 +20852,871788,32,1607,1 +20853,871791,148,7449,1 +20854,871824,183,9173,1 +20855,871860,58,2918,1 +20856,872748,160,8004,1 +20857,873123,7,371,1 +20858,873243,51,2569,1 +20859,873600,196,9835,1 +20860,873612,172,8610,1 +20861,873673,99,4997,1 +20862,873690,26,1313,1 +20863,873697,164,8211,1 +20864,874080,175,8782,1 +20865,874080,48,2447,1 +20866,874080,82,4108,1 +20867,874080,152,7628,1 +20868,874081,22,1134,1 +20869,874082,44,2227,1 +20870,874083,108,5426,1 +20871,874086,95,4757,1 +20872,874089,40,2013,1 +20873,874089,101,5065,1 +20874,874089,34,1729,1 +20875,874092,174,8742,1 +20876,874092,80,4030,1 +20877,874092,21,1080,1 +20878,874092,102,5126,1 +20879,874092,185,9251,1 +20880,874093,181,9052,1 +20881,874095,197,9870,1 +20882,874097,10,521,1 +20883,874101,185,9252,1 +20884,874104,111,5585,1 +20885,874104,36,1812,1 +20886,874104,176,8829,1 +20887,874104,173,8658,1 +20888,874106,166,8316,1 +20889,874110,45,2262,1 +20890,874116,15,780,1 +20891,874116,66,3345,1 +20892,874118,4,208,1 +20893,874122,78,3902,1 +20894,874125,112,5641,1 +20895,874125,86,4341,1 +20896,874128,181,9091,1 +20897,874128,46,2340,1 +20898,874128,121,6061,1 +20899,874129,85,4265,1 +20900,874131,54,2705,1 +20901,874137,132,6608,1 +20902,874152,146,7334,1 +20903,874153,183,9153,1 +20904,874164,184,9243,1 +20905,874164,7,380,1 +20906,874167,181,9082,1 +20907,874177,171,8577,1 +20908,874177,17,890,1 +20909,874178,128,6411,1 +20910,874189,76,3850,1 +20911,874200,20,1036,1 +20912,874201,85,4287,1 +20913,874212,0,13,1 +20914,874212,172,8616,1 +20915,874213,153,7666,1 +20916,874236,82,4132,1 +20917,874251,195,9753,1 +20918,874260,84,4215,1 +20919,874308,93,4695,1 +20920,874560,14,708,1 +20921,874560,128,6447,1 +20922,874585,50,2540,1 +20923,874601,34,1708,1 +20924,874681,132,6601,1 +20925,874718,65,3290,1 +20926,875089,106,5350,1 +20927,875102,74,3725,1 +20928,875125,180,9033,1 +20929,875127,186,9331,1 +20930,875145,135,6789,1 +20931,875172,144,7227,1 +20932,875544,24,1241,1 +20933,875664,133,6656,1 +20934,875688,53,2677,1 +20935,875724,60,3011,1 +20936,876003,179,8982,1 +20937,876055,115,5761,1 +20938,876072,179,8972,1 +20939,876156,42,2133,1 +20940,876493,71,3586,1 +20941,876498,27,1372,1 +20942,876505,137,6874,1 +20943,876511,29,1468,1 +20944,876525,172,8650,1 +20945,876528,146,7348,1 +20946,876549,192,9606,1 +20947,876553,104,5232,1 +20948,876564,18,934,1 +20949,876696,38,1933,1 +20950,876984,126,6325,1 +20951,877452,110,5542,1 +20952,877452,107,5373,1 +20953,877464,87,4385,1 +20954,877560,165,8257,1 +20955,877921,80,4006,1 +20956,877922,95,4760,1 +20957,877951,151,7583,1 +20958,877959,186,9314,1 +20959,877965,35,1792,1 +20960,878400,174,8737,1 +20961,878490,71,3579,1 +20962,878882,66,3335,1 +20963,878889,138,6913,1 +20964,878892,33,1697,1 +20965,878905,3,170,1 +20966,878907,50,2518,1 +20967,878907,0,7,1 +20968,878914,77,3870,1 +20969,878916,29,1468,1 +20970,878916,122,6103,1 +20971,878916,131,6597,1 +20972,878928,30,1548,1 +20973,878928,182,9108,1 +20974,878928,105,5264,1 +20975,878935,144,7235,1 +20976,878940,14,741,1 +20977,878968,139,6967,1 +20978,879360,144,7210,1 +20979,879360,182,9128,1 +20980,879361,45,2259,1 +20981,879370,134,6719,1 +20982,879374,116,5813,1 +20983,879384,143,7187,1 +20984,879384,170,8512,1 +20985,879387,102,5109,1 +20986,879393,83,4188,1 +20987,879399,87,4397,1 +20988,879399,183,9164,1 +20989,879403,95,4790,1 +20990,879432,140,7040,1 +20991,879444,111,5563,1 +20992,879456,179,8962,1 +20993,879459,9,454,1 +20994,879498,159,7951,1 +20995,879513,37,1899,1 +20996,879588,36,1803,1 +20997,879840,40,2032,1 +20998,879841,98,4932,1 +20999,879849,88,4450,1 +21000,879850,121,6053,1 +21001,879853,100,5050,1 +21002,879855,70,3533,1 +21003,879859,155,7771,1 +21004,879864,124,6217,1 +21005,879865,160,8032,1 +21006,879873,110,5550,1 +21007,879876,142,7128,1 +21008,879879,102,5140,1 +21009,879900,150,7534,1 +21010,879924,27,1357,1 +21011,879958,52,2645,1 +21012,880329,122,6149,1 +21013,880813,90,4523,1 +21014,881280,155,7783,1 +21015,881280,70,3546,1 +21016,881280,153,7655,1 +21017,881280,179,8962,1 +21018,881280,56,2820,1 +21019,881280,158,7950,1 +21020,881281,99,4971,1 +21021,881281,100,5032,1 +21022,881307,33,1697,1 +21023,881341,86,4330,1 +21024,881352,85,4253,1 +21025,881376,1,57,1 +21026,881388,142,7136,1 +21027,881436,101,5080,1 +21028,881592,13,682,1 +21029,882288,191,9585,1 +21030,882732,106,5301,1 +21031,882738,73,3677,1 +21032,882744,192,9614,1 +21033,882747,60,3012,1 +21034,882756,24,1221,1 +21035,882756,55,2792,1 +21036,882756,99,4981,1 +21037,882792,186,9303,1 +21038,882798,80,4036,1 +21039,882816,196,9844,1 +21040,882816,117,5868,1 +21041,883201,85,4254,1 +21042,883202,14,732,1 +21043,883203,199,9957,1 +21044,883213,98,4941,1 +21045,883214,33,1691,1 +21046,883214,184,9224,1 +21047,883216,160,8017,1 +21048,883224,125,6255,1 +21049,883224,92,4647,1 +21050,883224,58,2909,1 +21051,883225,16,829,1 +21052,883228,94,4738,1 +21053,883230,122,6106,1 +21054,883233,28,1450,1 +21055,883236,22,1137,1 +21056,883236,85,4269,1 +21057,883239,111,5562,1 +21058,883245,40,2007,1 +21059,883247,191,9589,1 +21060,883248,132,6626,1 +21061,883248,183,9167,1 +21062,883251,120,6019,1 +21063,883252,80,4027,1 +21064,883255,19,993,1 +21065,883261,114,5713,1 +21066,883264,24,1214,1 +21067,883269,190,9547,1 +21068,883272,78,3929,1 +21069,883272,166,8347,1 +21070,883273,108,5410,1 +21071,883274,196,9811,1 +21072,883284,190,9524,1 +21073,883286,125,6280,1 +21074,883287,168,8419,1 +21075,883296,184,9224,1 +21076,883309,16,804,1 +21077,883317,191,9557,1 +21078,883326,98,4904,1 +21079,883381,46,2327,1 +21080,883387,82,4105,1 +21081,883410,129,6456,1 +21082,883465,37,1895,1 +21083,883680,117,5897,1 +21084,883680,108,5435,1 +21085,883681,182,9127,1 +21086,883683,131,6567,1 +21087,883689,27,1396,1 +21088,883691,46,2309,1 +21089,883692,128,6450,1 +21090,883693,47,2388,1 +21091,883705,121,6097,1 +21092,883716,118,5924,1 +21093,883716,131,6560,1 +21094,883731,60,3039,1 +21095,883733,180,9017,1 +21096,883749,75,3782,1 +21097,883752,94,4713,1 +21098,883752,13,666,1 +21099,883767,39,1968,1 +21100,883865,64,3201,1 +21101,884160,133,6660,1 +21102,884163,75,3796,1 +21103,884163,150,7502,1 +21104,884184,111,5589,1 +21105,884197,183,9157,1 +21106,884199,178,8946,1 +21107,884202,60,3003,1 +21108,884241,103,5180,1 +21109,884283,92,4620,1 +21110,884640,195,9753,1 +21111,884640,171,8599,1 +21112,884640,86,4313,1 +21113,884640,80,4016,1 +21114,884641,189,9460,1 +21115,884646,77,3882,1 +21116,884652,123,6177,1 +21117,884652,122,6144,1 +21118,884658,143,7172,1 +21119,884665,199,9954,1 +21120,884665,66,3314,1 +21121,884667,178,8909,1 +21122,884670,190,9527,1 +21123,884675,45,2296,1 +21124,884677,143,7162,1 +21125,884677,115,5798,1 +21126,884680,91,4587,1 +21127,884688,102,5101,1 +21128,884688,11,580,1 +21129,884696,14,715,1 +21130,884700,89,4485,1 +21131,884700,188,9437,1 +21132,884743,57,2868,1 +21133,884796,194,9713,1 +21134,885144,93,4691,1 +21135,885167,196,9801,1 +21136,885207,183,9164,1 +21137,885216,51,2578,1 +21138,885300,97,4878,1 +21139,885613,153,7669,1 +21140,885708,187,9389,1 +21141,886092,13,672,1 +21142,886096,13,664,1 +21143,886116,129,6477,1 +21144,886117,117,5884,1 +21145,886122,188,9430,1 +21146,886128,68,3412,1 +21147,886133,88,4404,1 +21148,886141,28,1413,1 +21149,886188,5,252,1 +21150,886218,77,3888,1 +21151,886225,137,6864,1 +21152,886272,105,5300,1 +21153,886284,37,1853,1 +21154,886560,66,3342,1 +21155,886560,146,7317,1 +21156,886566,4,209,1 +21157,886572,160,8009,1 +21158,886572,160,8027,1 +21159,886573,76,3833,1 +21160,886573,118,5949,1 +21161,886583,77,3855,1 +21162,886584,198,9903,1 +21163,886596,147,7362,1 +21164,886597,12,614,1 +21165,886598,70,3550,1 +21166,886621,82,4143,1 +21167,886621,164,8209,1 +21168,886623,24,1241,1 +21169,886632,98,4901,1 +21170,886633,185,9277,1 +21171,886647,40,2023,1 +21172,886788,9,471,1 +21173,887061,139,6987,1 +21174,887551,37,1857,1 +21175,887553,176,8835,1 +21176,888000,87,4352,1 +21177,888006,57,2875,1 +21178,888013,166,8344,1 +21179,888013,53,2653,1 +21180,888027,102,5132,1 +21181,888048,147,7399,1 +21182,888072,29,1465,1 +21183,888082,174,8736,1 +21184,888090,21,1055,1 +21185,888600,125,6287,1 +21186,889008,15,788,1 +21187,889452,38,1902,1 +21188,889455,67,3370,1 +21189,889455,81,4090,1 +21190,889464,110,5527,1 +21191,889466,144,7225,1 +21192,889470,60,3007,1 +21193,889473,5,282,1 +21194,889476,65,3291,1 +21195,889479,81,4062,1 +21196,889488,47,2359,1 +21197,889500,73,3687,1 +21198,889512,195,9752,1 +21199,889537,11,557,1 +21200,889548,98,4935,1 +21201,889549,156,7820,1 +21202,889920,56,2838,1 +21203,889946,192,9606,1 +21204,889957,58,2941,1 +21205,889968,157,7857,1 +21206,889995,58,2935,1 +21207,890109,190,9539,1 +21208,890400,62,3127,1 +21209,890401,64,3233,1 +21210,890412,18,934,1 +21211,890413,188,9409,1 +21212,890413,93,4662,1 +21213,890448,198,9923,1 +21214,890460,198,9928,1 +21215,890469,26,1311,1 +21216,890508,13,690,1 +21217,890536,74,3703,1 +21218,890610,134,6706,1 +21219,890880,106,5322,1 +21220,890880,62,3104,1 +21221,890880,130,6549,1 +21222,890880,41,2085,1 +21223,890880,6,301,1 +21224,890880,164,8234,1 +21225,890881,180,9032,1 +21226,890881,39,1957,1 +21227,890886,197,9887,1 +21228,890892,135,6756,1 +21229,890892,39,1991,1 +21230,890892,124,6245,1 +21231,890892,123,6182,1 +21232,890892,42,2120,1 +21233,890892,151,7562,1 +21234,890893,20,1040,1 +21235,890893,86,4345,1 +21236,890893,120,6045,1 +21237,890901,180,9033,1 +21238,890901,166,8332,1 +21239,890901,65,3252,1 +21240,890904,30,1540,1 +21241,890908,66,3330,1 +21242,890908,185,9256,1 +21243,890913,144,7220,1 +21244,890918,12,643,1 +21245,890919,70,3509,1 +21246,890920,121,6064,1 +21247,890928,197,9872,1 +21248,890928,164,8235,1 +21249,890928,92,4648,1 +21250,890931,126,6333,1 +21251,890931,129,6452,1 +21252,890937,58,2948,1 +21253,890940,2,103,1 +21254,890940,94,4748,1 +21255,890940,196,9845,1 +21256,890943,70,3518,1 +21257,890952,140,7033,1 +21258,890952,148,7407,1 +21259,890952,105,5278,1 +21260,890953,85,4285,1 +21261,890953,48,2430,1 +21262,890954,159,7970,1 +21263,890956,95,4755,1 +21264,890961,81,4086,1 +21265,890976,55,2788,1 +21266,890976,88,4441,1 +21267,890988,3,155,1 +21268,891006,167,8370,1 +21269,891049,128,6448,1 +21270,891072,10,545,1 +21271,891360,9,480,1 +21272,891360,101,5057,1 +21273,891360,172,8607,1 +21274,891384,80,4026,1 +21275,891384,191,9588,1 +21276,891387,178,8933,1 +21277,891397,41,2077,1 +21278,891454,9,496,1 +21279,891469,136,6843,1 +21280,891471,29,1486,1 +21281,891529,68,3439,1 +21282,891841,43,2185,1 +21283,891852,132,6648,1 +21284,891880,27,1371,1 +21285,892320,62,3123,1 +21286,892320,199,9962,1 +21287,892321,104,5235,1 +21288,892326,111,5600,1 +21289,892333,192,9603,1 +21290,892335,97,4857,1 +21291,892335,57,2886,1 +21292,892339,191,9559,1 +21293,892345,9,491,1 +21294,892347,0,43,1 +21295,892351,98,4904,1 +21296,892356,169,8461,1 +21297,892356,159,8000,1 +21298,892357,68,3420,1 +21299,892358,196,9850,1 +21300,892365,117,5853,1 +21301,892368,46,2301,1 +21302,892375,3,187,1 +21303,892380,12,633,1 +21304,892390,74,3734,1 +21305,892392,39,2000,1 +21306,892417,175,8793,1 +21307,892429,153,7660,1 +21308,892431,8,420,1 +21309,892476,81,4057,1 +21310,892494,94,4719,1 +21311,892574,89,4476,1 +21312,892729,164,8232,1 +21313,892801,125,6279,1 +21314,892812,97,4874,1 +21315,892812,147,7400,1 +21316,892813,119,5980,1 +21317,892814,13,679,1 +21318,892822,65,3266,1 +21319,892824,87,4399,1 +21320,892838,8,431,1 +21321,892840,46,2303,1 +21322,892854,183,9161,1 +21323,892858,67,3373,1 +21324,892864,43,2161,1 +21325,892873,49,2462,1 +21326,892922,170,8535,1 +21327,892934,49,2474,1 +21328,893004,133,6688,1 +21329,893023,79,3988,1 +21330,893760,86,4310,1 +21331,893760,106,5310,1 +21332,893761,194,9734,1 +21333,893764,131,6594,1 +21334,893766,91,4583,1 +21335,893769,91,4571,1 +21336,893772,120,6037,1 +21337,893772,151,7554,1 +21338,893772,96,4831,1 +21339,893772,102,5132,1 +21340,893773,4,205,1 +21341,893773,34,1732,1 +21342,893774,164,8207,1 +21343,893774,95,4778,1 +21344,893775,152,7626,1 +21345,893776,137,6892,1 +21346,893782,133,6681,1 +21347,893784,91,4600,1 +21348,893784,2,146,1 +21349,893786,159,7985,1 +21350,893791,124,6230,1 +21351,893793,106,5326,1 +21352,893793,129,6493,1 +21353,893793,34,1747,1 +21354,893794,92,4624,1 +21355,893796,173,8690,1 +21356,893796,14,740,1 +21357,893797,51,2587,1 +21358,893803,165,8278,1 +21359,893805,141,7054,1 +21360,893808,198,9905,1 +21361,893808,49,2470,1 +21362,893809,199,9991,1 +21363,893817,130,6515,1 +21364,893817,121,6060,1 +21365,893820,55,2772,1 +21366,893820,92,4635,1 +21367,893821,35,1794,1 +21368,893821,101,5088,1 +21369,893830,110,5504,1 +21370,893832,142,7127,1 +21371,893835,96,4821,1 +21372,893844,141,7084,1 +21373,893844,42,2132,1 +21374,893847,122,6109,1 +21375,893847,101,5100,1 +21376,893871,66,3314,1 +21377,893877,44,2227,1 +21378,893877,144,7207,1 +21379,893880,86,4306,1 +21380,893882,164,8204,1 +21381,893928,34,1723,1 +21382,893941,166,8302,1 +21383,893960,131,6594,1 +21384,893964,2,138,1 +21385,893982,195,9777,1 +21386,893991,19,974,1 +21387,894030,22,1133,1 +21388,894052,98,4922,1 +21389,894470,188,9412,1 +21390,894492,2,118,1 +21391,894720,27,1394,1 +21392,894730,191,9558,1 +21393,894732,95,4766,1 +21394,894732,64,3241,1 +21395,894734,97,4880,1 +21396,894735,93,4678,1 +21397,894738,38,1944,1 +21398,894744,55,2775,1 +21399,894745,107,5390,1 +21400,894745,50,2510,1 +21401,894745,108,5424,1 +21402,894757,181,9056,1 +21403,894758,42,2107,1 +21404,894793,198,9941,1 +21405,894821,99,4980,1 +21406,894822,163,8186,1 +21407,894831,17,867,1 +21408,894855,53,2654,1 +21409,894861,107,5392,1 +21410,894876,116,5819,1 +21411,894923,13,684,1 +21412,894925,168,8416,1 +21413,895200,63,3155,1 +21414,895200,122,6150,1 +21415,895200,80,4022,1 +21416,895200,2,110,1 +21417,895201,40,2031,1 +21418,895202,156,7830,1 +21419,895206,41,2060,1 +21420,895210,17,899,1 +21421,895212,71,3561,1 +21422,895213,79,3951,1 +21423,895219,173,8675,1 +21424,895225,150,7505,1 +21425,895230,11,587,1 +21426,895232,155,7763,1 +21427,895236,28,1444,1 +21428,895245,70,3510,1 +21429,895250,78,3913,1 +21430,895255,168,8434,1 +21431,895260,84,4211,1 +21432,895260,26,1345,1 +21433,895269,37,1892,1 +21434,895285,67,3393,1 +21435,895291,13,687,1 +21436,895308,30,1504,1 +21437,895308,115,5786,1 +21438,895320,137,6885,1 +21439,895333,104,5209,1 +21440,895372,0,50,1 +21441,895393,48,2420,1 +21442,895395,7,388,1 +21443,895402,1,98,1 +21444,895441,164,8241,1 +21445,895680,79,3999,1 +21446,895681,195,9770,1 +21447,895693,69,3456,1 +21448,895704,111,5588,1 +21449,895707,53,2692,1 +21450,895729,143,7154,1 +21451,895752,163,8189,1 +21452,896161,114,5717,1 +21453,896172,8,450,1 +21454,896177,78,3927,1 +21455,896184,21,1082,1 +21456,896186,50,2516,1 +21457,896211,14,719,1 +21458,896244,61,3075,1 +21459,896262,159,8000,1 +21460,896295,164,8225,1 +21461,896358,0,13,1 +21462,896394,163,8191,1 +21463,896652,113,5690,1 +21464,896664,178,8906,1 +21465,896689,79,3999,1 +21466,897120,120,6005,1 +21467,897120,58,2947,1 +21468,897123,69,3463,1 +21469,897123,77,3858,1 +21470,897132,0,15,1 +21471,897133,62,3145,1 +21472,897144,190,9544,1 +21473,897145,89,4474,1 +21474,897157,143,7181,1 +21475,897165,129,6463,1 +21476,897165,164,8235,1 +21477,897166,107,5390,1 +21478,897168,174,8726,1 +21479,897171,152,7644,1 +21480,897172,112,5642,1 +21481,897184,75,3777,1 +21482,897216,70,3510,1 +21483,897228,157,7851,1 +21484,897242,107,5375,1 +21485,897265,100,5004,1 +21486,897266,123,6189,1 +21487,897312,86,4309,1 +21488,897372,129,6470,1 +21489,897396,12,616,1 +21490,897606,169,8477,1 +21491,897609,39,1996,1 +21492,897613,72,3628,1 +21493,898108,173,8656,1 +21494,898560,57,2885,1 +21495,898562,84,4244,1 +21496,898564,113,5656,1 +21497,898566,122,6132,1 +21498,898569,81,4076,1 +21499,898572,20,1040,1 +21500,898574,147,7382,1 +21501,898602,174,8745,1 +21502,898622,175,8799,1 +21503,898644,179,8991,1 +21504,898648,141,7070,1 +21505,898650,84,4206,1 +21506,898656,81,4053,1 +21507,898663,60,3046,1 +21508,898680,93,4667,1 +21509,898690,67,3394,1 +21510,898716,14,721,1 +21511,899076,191,9567,1 +21512,900000,3,200,1 +21513,900000,190,9530,1 +21514,900012,116,5830,1 +21515,900014,127,6387,1 +21516,900037,84,4250,1 +21517,900040,178,8934,1 +21518,900061,159,7960,1 +21519,900061,132,6625,1 +21520,900081,176,8817,1 +21521,900082,22,1102,1 +21522,900126,149,7465,1 +21523,900154,97,4852,1 +21524,900481,166,8312,1 +21525,900504,109,5460,1 +21526,900570,34,1743,1 +21527,900672,147,7363,1 +21528,900960,101,5062,1 +21529,900960,163,8199,1 +21530,900960,107,5391,1 +21531,900960,185,9291,1 +21532,900960,185,9270,1 +21533,900960,35,1775,1 +21534,900960,70,3517,1 +21535,900961,196,9818,1 +21536,900961,117,5875,1 +21537,900961,147,7400,1 +21538,900961,33,1682,1 +21539,900963,146,7310,1 +21540,900964,67,3371,1 +21541,900964,140,7035,1 +21542,900965,155,7766,1 +21543,900966,29,1490,1 +21544,900969,84,4218,1 +21545,900971,25,1252,1 +21546,900971,145,7292,1 +21547,900972,59,2983,1 +21548,900972,107,5377,1 +21549,900972,194,9711,1 +21550,900972,121,6061,1 +21551,900972,193,9667,1 +21552,900972,45,2265,1 +21553,900972,168,8404,1 +21554,900972,19,969,1 +21555,900972,173,8677,1 +21556,900973,139,6972,1 +21557,900973,6,325,1 +21558,900974,181,9093,1 +21559,900974,159,7980,1 +21560,900974,110,5549,1 +21561,900975,146,7301,1 +21562,900977,140,7021,1 +21563,900978,182,9115,1 +21564,900978,199,9990,1 +21565,900978,85,4296,1 +21566,900981,146,7348,1 +21567,900982,10,528,1 +21568,900983,194,9728,1 +21569,900984,193,9674,1 +21570,900984,112,5617,1 +21571,900984,161,8059,1 +21572,900984,156,7833,1 +21573,900984,94,4716,1 +21574,900985,42,2125,1 +21575,900985,114,5734,1 +21576,900986,40,2015,1 +21577,900986,196,9837,1 +21578,900987,164,8216,1 +21579,900987,36,1838,1 +21580,900987,175,8799,1 +21581,900988,13,688,1 +21582,900990,31,1569,1 +21583,900994,30,1535,1 +21584,900996,124,6222,1 +21585,900996,103,5200,1 +21586,900996,48,2449,1 +21587,900997,169,8489,1 +21588,900998,184,9209,1 +21589,900999,185,9296,1 +21590,901002,12,614,1 +21591,901002,96,4840,1 +21592,901002,176,8825,1 +21593,901003,40,2035,1 +21594,901004,62,3118,1 +21595,901005,65,3257,1 +21596,901008,197,9866,1 +21597,901008,5,272,1 +21598,901008,52,2626,1 +21599,901008,124,6243,1 +21600,901009,168,8449,1 +21601,901010,25,1277,1 +21602,901010,74,3720,1 +21603,901015,40,2046,1 +21604,901017,136,6825,1 +21605,901020,102,5113,1 +21606,901020,43,2185,1 +21607,901021,126,6303,1 +21608,901023,93,4654,1 +21609,901023,138,6927,1 +21610,901032,159,7961,1 +21611,901038,42,2126,1 +21612,901044,14,725,1 +21613,901053,194,9726,1 +21614,901056,85,4253,1 +21615,901056,148,7421,1 +21616,901056,157,7856,1 +21617,901065,180,9042,1 +21618,901065,160,8038,1 +21619,901092,124,6241,1 +21620,901104,9,463,1 +21621,901113,31,1575,1 +21622,901128,157,7851,1 +21623,901129,35,1795,1 +21624,901129,114,5704,1 +21625,901152,178,8928,1 +21626,901164,29,1478,1 +21627,901164,11,561,1 +21628,901165,107,5377,1 +21629,901176,188,9442,1 +21630,901200,154,7721,1 +21631,901464,76,3833,1 +21632,901476,61,3087,1 +21633,901476,169,8474,1 +21634,901478,147,7393,1 +21635,901541,193,9700,1 +21636,901945,97,4897,1 +21637,902052,168,8411,1 +21638,902919,19,998,1 +21639,902932,25,1293,1 +21640,903384,2,133,1 +21641,903438,88,4425,1 +21642,903576,95,4787,1 +21643,903840,35,1772,1 +21644,903840,73,3684,1 +21645,903858,191,9578,1 +21646,904362,159,7958,1 +21647,904452,157,7889,1 +21648,904800,26,1304,1 +21649,904804,59,2985,1 +21650,904804,96,4821,1 +21651,904812,84,4224,1 +21652,904812,0,13,1 +21653,904842,133,6672,1 +21654,904848,161,8053,1 +21655,904848,15,799,1 +21656,904849,31,1594,1 +21657,904869,108,5409,1 +21658,904908,52,2617,1 +21659,904912,66,3346,1 +21660,904917,167,8378,1 +21661,904950,4,202,1 +21662,905004,154,7725,1 +21663,905161,21,1069,1 +21664,905280,1,77,1 +21665,905283,6,339,1 +21666,905299,189,9474,1 +21667,905301,180,9042,1 +21668,905304,73,3699,1 +21669,905313,84,4243,1 +21670,905316,105,5279,1 +21671,905322,106,5320,1 +21672,905328,88,4413,1 +21673,905377,11,596,1 +21674,905422,137,6863,1 +21675,905439,154,7710,1 +21676,905616,139,6982,1 +21677,905809,146,7337,1 +21678,905820,0,47,1 +21679,907680,64,3223,1 +21680,907680,8,408,1 +21681,907680,87,4387,1 +21682,907680,181,9074,1 +21683,907680,191,9558,1 +21684,907683,18,931,1 +21685,907684,135,6778,1 +21686,907686,33,1657,1 +21687,907686,53,2670,1 +21688,907688,102,5124,1 +21689,907689,179,8978,1 +21690,907692,170,8526,1 +21691,907695,195,9776,1 +21692,907696,169,8489,1 +21693,907699,124,6231,1 +21694,907701,121,6054,1 +21695,907705,99,4996,1 +21696,907716,19,969,1 +21697,907722,166,8306,1 +21698,907728,142,7150,1 +21699,907729,100,5036,1 +21700,907740,14,714,1 +21701,907740,73,3652,1 +21702,907741,114,5706,1 +21703,907746,75,3789,1 +21704,907749,102,5120,1 +21705,907761,192,9601,1 +21706,907772,189,9456,1 +21707,907782,18,902,1 +21708,907790,189,9453,1 +21709,907809,7,358,1 +21710,908064,189,9492,1 +21711,908160,89,4486,1 +21712,908163,54,2718,1 +21713,908169,91,4553,1 +21714,908172,69,3461,1 +21715,908179,88,4434,1 +21716,908196,108,5404,1 +21717,908211,67,3386,1 +21718,908216,83,4200,1 +21719,908220,150,7507,1 +21720,908226,14,717,1 +21721,908646,175,8754,1 +21722,908652,155,7796,1 +21723,908652,89,4490,1 +21724,908655,54,2729,1 +21725,908677,63,3171,1 +21726,908679,13,696,1 +21727,908686,91,4577,1 +21728,908689,186,9346,1 +21729,908700,151,7567,1 +21730,908730,130,6518,1 +21731,908764,55,2754,1 +21732,909120,64,3235,1 +21733,909126,87,4395,1 +21734,909132,115,5774,1 +21735,909132,192,9650,1 +21736,909132,163,8184,1 +21737,909132,176,8821,1 +21738,909146,3,163,1 +21739,909156,107,5366,1 +21740,909156,182,9115,1 +21741,909157,171,8587,1 +21742,909157,41,2097,1 +21743,909169,150,7519,1 +21744,909169,96,4836,1 +21745,909180,181,9088,1 +21746,909180,169,8494,1 +21747,909181,14,709,1 +21748,909191,192,9639,1 +21749,909193,172,8629,1 +21750,909193,145,7298,1 +21751,909205,152,7621,1 +21752,909218,194,9710,1 +21753,909224,76,3846,1 +21754,909241,28,1423,1 +21755,909279,168,8441,1 +21756,909312,59,2983,1 +21757,909457,123,6167,1 +21758,909606,33,1680,1 +21759,909612,165,8263,1 +21760,909624,1,94,1 +21761,909625,94,4705,1 +21762,909635,24,1214,1 +21763,909661,119,5960,1 +21764,909663,108,5402,1 +21765,909709,48,2418,1 +21766,910102,35,1770,1 +21767,910105,107,5390,1 +21768,910117,87,4351,1 +21769,910128,167,8370,1 +21770,910129,39,1979,1 +21771,910158,12,633,1 +21772,910176,96,4822,1 +21773,910201,78,3941,1 +21774,910232,68,3435,1 +21775,910561,127,6369,1 +21776,910576,28,1412,1 +21777,910578,92,4636,1 +21778,910584,62,3136,1 +21779,910584,114,5743,1 +21780,910593,18,932,1 +21781,910597,172,8618,1 +21782,910599,56,2831,1 +21783,910608,91,4590,1 +21784,910644,162,8134,1 +21785,911520,72,3614,1 +21786,911520,77,3891,1 +21787,911520,20,1021,1 +21788,911520,134,6727,1 +21789,911520,76,3824,1 +21790,911520,62,3110,1 +21791,911520,152,7617,1 +21792,911520,11,556,1 +21793,911520,120,6049,1 +21794,911520,106,5341,1 +21795,911521,42,2145,1 +21796,911521,54,2720,1 +21797,911521,109,5481,1 +21798,911521,169,8469,1 +21799,911521,136,6841,1 +21800,911521,44,2237,1 +21801,911522,30,1534,1 +21802,911522,60,3002,1 +21803,911522,188,9449,1 +21804,911522,80,4034,1 +21805,911522,58,2925,1 +21806,911523,27,1394,1 +21807,911523,142,7109,1 +21808,911523,157,7860,1 +21809,911526,186,9323,1 +21810,911526,70,3537,1 +21811,911527,72,3634,1 +21812,911529,52,2613,1 +21813,911530,171,8577,1 +21814,911532,183,9192,1 +21815,911532,196,9846,1 +21816,911532,68,3405,1 +21817,911532,69,3495,1 +21818,911532,164,8206,1 +21819,911532,14,749,1 +21820,911532,178,8911,1 +21821,911532,91,4556,1 +21822,911532,0,34,1 +21823,911532,154,7748,1 +21824,911532,161,8085,1 +21825,911532,126,6340,1 +21826,911532,42,2135,1 +21827,911533,86,4303,1 +21828,911533,99,4977,1 +21829,911533,110,5508,1 +21830,911533,196,9811,1 +21831,911533,12,618,1 +21832,911533,40,2031,1 +21833,911534,71,3557,1 +21834,911535,88,4403,1 +21835,911536,96,4836,1 +21836,911536,198,9912,1 +21837,911538,95,4764,1 +21838,911538,3,193,1 +21839,911538,172,8611,1 +21840,911538,146,7335,1 +21841,911541,150,7504,1 +21842,911542,24,1207,1 +21843,911543,183,9200,1 +21844,911544,112,5637,1 +21845,911544,102,5108,1 +21846,911544,43,2195,1 +21847,911544,162,8128,1 +21848,911544,77,3855,1 +21849,911544,8,441,1 +21850,911544,145,7276,1 +21851,911544,129,6463,1 +21852,911545,113,5686,1 +21853,911545,135,6763,1 +21854,911545,5,261,1 +21855,911545,153,7686,1 +21856,911545,29,1461,1 +21857,911546,106,5327,1 +21858,911547,83,4169,1 +21859,911547,167,8355,1 +21860,911547,99,4974,1 +21861,911547,97,4862,1 +21862,911547,152,7621,1 +21863,911549,110,5501,1 +21864,911549,35,1758,1 +21865,911549,123,6198,1 +21866,911550,152,7601,1 +21867,911553,54,2745,1 +21868,911553,176,8822,1 +21869,911554,66,3308,1 +21870,911556,29,1465,1 +21871,911556,145,7290,1 +21872,911556,146,7336,1 +21873,911556,107,5365,1 +21874,911556,73,3699,1 +21875,911556,126,6322,1 +21876,911556,0,22,1 +21877,911556,6,318,1 +21878,911557,92,4618,1 +21879,911557,124,6220,1 +21880,911557,26,1330,1 +21881,911558,134,6717,1 +21882,911558,158,7913,1 +21883,911559,190,9538,1 +21884,911560,88,4431,1 +21885,911560,153,7669,1 +21886,911568,160,8006,1 +21887,911568,172,8650,1 +21888,911569,193,9659,1 +21889,911569,87,4394,1 +21890,911571,190,9531,1 +21891,911571,109,5465,1 +21892,911580,102,5110,1 +21893,911580,175,8781,1 +21894,911580,98,4938,1 +21895,911580,50,2529,1 +21896,911580,83,4177,1 +21897,911580,20,1007,1 +21898,911581,4,241,1 +21899,911582,131,6574,1 +21900,911583,61,3066,1 +21901,911584,5,294,1 +21902,911586,7,378,1 +21903,911589,167,8366,1 +21904,911592,188,9431,1 +21905,911595,88,4413,1 +21906,911601,70,3524,1 +21907,911604,32,1639,1 +21908,911604,52,2606,1 +21909,911604,144,7212,1 +21910,911604,87,4379,1 +21911,911604,100,5021,1 +21912,911605,129,6473,1 +21913,911605,143,7189,1 +21914,911605,83,4154,1 +21915,911607,112,5605,1 +21916,911609,25,1271,1 +21917,911610,191,9571,1 +21918,911610,79,3966,1 +21919,911613,144,7204,1 +21920,911613,136,6835,1 +21921,911616,136,6819,1 +21922,911616,22,1123,1 +21923,911616,137,6890,1 +21924,911616,110,5521,1 +21925,911616,122,6131,1 +21926,911617,93,4685,1 +21927,911617,32,1634,1 +21928,911617,101,5062,1 +21929,911628,27,1400,1 +21930,911628,133,6662,1 +21931,911628,158,7931,1 +21932,911628,87,4396,1 +21933,911640,187,9398,1 +21934,911640,5,290,1 +21935,911641,171,8590,1 +21936,911652,108,5405,1 +21937,911659,37,1871,1 +21938,911664,112,5633,1 +21939,911665,157,7899,1 +21940,911676,112,5645,1 +21941,911679,5,263,1 +21942,911685,67,3387,1 +21943,911688,154,7712,1 +21944,911688,135,6771,1 +21945,911690,2,115,1 +21946,911725,120,6043,1 +21947,911734,144,7212,1 +21948,911760,132,6622,1 +21949,911777,126,6336,1 +21950,911806,119,5999,1 +21951,911841,22,1114,1 +21952,912122,111,5588,1 +21953,912289,56,2837,1 +21954,912480,80,4022,1 +21955,912480,149,7474,1 +21956,912480,135,6754,1 +21957,912481,192,9634,1 +21958,912486,0,13,1 +21959,912492,64,3202,1 +21960,912492,32,1610,1 +21961,912495,135,6774,1 +21962,912495,168,8417,1 +21963,912504,180,9030,1 +21964,912510,87,4389,1 +21965,912516,119,5995,1 +21966,912516,152,7637,1 +21967,912517,189,9467,1 +21968,912519,91,4555,1 +21969,912528,104,5229,1 +21970,912541,24,1216,1 +21971,912552,124,6201,1 +21972,912555,39,1966,1 +21973,912562,160,8034,1 +21974,912564,33,1655,1 +21975,912571,173,8651,1 +21976,912577,192,9612,1 +21977,912673,53,2680,1 +21978,912961,161,8080,1 +21979,912961,80,4017,1 +21980,912967,155,7785,1 +21981,912972,154,7745,1 +21982,912972,184,9218,1 +21983,912973,123,6181,1 +21984,912975,112,5640,1 +21985,912984,54,2712,1 +21986,912985,116,5815,1 +21987,912994,88,4446,1 +21988,912996,36,1805,1 +21989,912997,63,3159,1 +21990,913008,106,5311,1 +21991,913032,95,4790,1 +21992,913038,73,3656,1 +21993,913044,186,9302,1 +21994,913059,70,3522,1 +21995,913117,60,3011,1 +21996,913119,134,6746,1 +21997,913138,88,4422,1 +21998,913452,80,4026,1 +21999,913453,64,3248,1 +22000,913524,77,3859,1 +22001,913562,118,5940,1 +22002,913584,118,5938,1 +22003,913920,179,8998,1 +22004,913920,181,9073,1 +22005,913920,173,8654,1 +22006,913920,105,5281,1 +22007,913920,75,3758,1 +22008,913920,113,5655,1 +22009,913921,126,6318,1 +22010,913921,3,154,1 +22011,913921,107,5379,1 +22012,913921,31,1564,1 +22013,913921,127,6374,1 +22014,913922,113,5667,1 +22015,913922,185,9297,1 +22016,913922,116,5834,1 +22017,913923,173,8651,1 +22018,913923,175,8764,1 +22019,913923,20,1020,1 +22020,913923,120,6027,1 +22021,913923,31,1565,1 +22022,913928,120,6002,1 +22023,913929,13,698,1 +22024,913932,78,3942,1 +22025,913932,6,305,1 +22026,913932,89,4477,1 +22027,913932,99,4997,1 +22028,913933,95,4797,1 +22029,913933,31,1589,1 +22030,913935,143,7196,1 +22031,913935,15,794,1 +22032,913935,13,656,1 +22033,913936,65,3295,1 +22034,913938,127,6380,1 +22035,913938,133,6683,1 +22036,913939,196,9830,1 +22037,913941,60,3049,1 +22038,913944,111,5591,1 +22039,913944,177,8883,1 +22040,913944,59,2979,1 +22041,913944,190,9523,1 +22042,913944,72,3647,1 +22043,913944,102,5121,1 +22044,913945,112,5603,1 +22045,913945,83,4168,1 +22046,913950,77,3860,1 +22047,913953,44,2250,1 +22048,913953,154,7740,1 +22049,913953,22,1141,1 +22050,913955,172,8627,1 +22051,913955,154,7709,1 +22052,913956,143,7179,1 +22053,913956,84,4218,1 +22054,913956,154,7739,1 +22055,913957,102,5106,1 +22056,913957,112,5612,1 +22057,913958,15,764,1 +22058,913959,122,6129,1 +22059,913963,161,8091,1 +22060,913964,84,4212,1 +22061,913966,109,5453,1 +22062,913968,196,9831,1 +22063,913968,121,6070,1 +22064,913969,59,2966,1 +22065,913971,41,2084,1 +22066,913980,125,6282,1 +22067,913980,96,4815,1 +22068,913986,46,2333,1 +22069,913989,15,752,1 +22070,913992,144,7211,1 +22071,913992,167,8399,1 +22072,913993,40,2009,1 +22073,913994,63,3151,1 +22074,914000,67,3365,1 +22075,914001,92,4636,1 +22076,914004,87,4365,1 +22077,914004,69,3468,1 +22078,914004,23,1197,1 +22079,914008,177,8874,1 +22080,914013,61,3086,1 +22081,914019,135,6787,1 +22082,914025,126,6335,1 +22083,914038,46,2311,1 +22084,914038,197,9876,1 +22085,914040,106,5309,1 +22086,914047,105,5254,1 +22087,914064,26,1320,1 +22088,914066,195,9795,1 +22089,914078,76,3822,1 +22090,914124,66,3328,1 +22091,914197,102,5150,1 +22092,914400,38,1940,1 +22093,914400,121,6081,1 +22094,914401,147,7386,1 +22095,914404,89,4499,1 +22096,914412,24,1237,1 +22097,914412,33,1671,1 +22098,914415,166,8307,1 +22099,914418,161,8058,1 +22100,914425,182,9120,1 +22101,914475,190,9536,1 +22102,914478,8,417,1 +22103,914481,195,9761,1 +22104,914496,2,109,1 +22105,914506,39,1981,1 +22106,914640,36,1831,1 +22107,914880,135,6777,1 +22108,914881,110,5538,1 +22109,914884,180,9039,1 +22110,914886,52,2602,1 +22111,914887,89,4477,1 +22112,914892,52,2646,1 +22113,914892,78,3912,1 +22114,914897,178,8907,1 +22115,914904,176,8843,1 +22116,914916,92,4623,1 +22117,914916,175,8770,1 +22118,914940,98,4943,1 +22119,915375,160,8025,1 +22120,915840,9,459,1 +22121,915841,121,6080,1 +22122,915861,74,3726,1 +22123,915871,64,3221,1 +22124,915886,25,1259,1 +22125,915889,29,1452,1 +22126,915900,27,1391,1 +22127,915901,70,3510,1 +22128,915901,7,381,1 +22129,915925,115,5765,1 +22130,915966,40,2003,1 +22131,915984,158,7935,1 +22132,916035,8,450,1 +22133,916386,142,7115,1 +22134,916392,186,9325,1 +22135,916800,5,284,1 +22136,916800,0,22,1 +22137,916800,195,9799,1 +22138,916800,149,7468,1 +22139,916800,6,310,1 +22140,916800,37,1896,1 +22141,916801,5,264,1 +22142,916801,133,6663,1 +22143,916801,18,922,1 +22144,916802,187,9369,1 +22145,916807,178,8916,1 +22146,916809,27,1398,1 +22147,916812,129,6478,1 +22148,916812,119,5990,1 +22149,916812,171,8584,1 +22150,916812,102,5127,1 +22151,916812,148,7407,1 +22152,916812,105,5293,1 +22153,916813,107,5360,1 +22154,916813,8,406,1 +22155,916813,1,86,1 +22156,916813,163,8157,1 +22157,916814,122,6119,1 +22158,916815,61,3070,1 +22159,916816,150,7534,1 +22160,916817,86,4340,1 +22161,916818,12,634,1 +22162,916818,48,2435,1 +22163,916820,168,8418,1 +22164,916827,23,1172,1 +22165,916831,33,1667,1 +22166,916833,152,7616,1 +22167,916836,75,3777,1 +22168,916836,134,6702,1 +22169,916836,25,1291,1 +22170,916838,16,831,1 +22171,916851,189,9456,1 +22172,916853,176,8813,1 +22173,916860,60,3016,1 +22174,916860,37,1888,1 +22175,916862,20,1047,1 +22176,916872,95,4786,1 +22177,916875,52,2620,1 +22178,916875,88,4430,1 +22179,916884,17,889,1 +22180,916887,188,9417,1 +22181,916894,124,6227,1 +22182,916896,9,499,1 +22183,916897,78,3948,1 +22184,916899,51,2576,1 +22185,916908,133,6664,1 +22186,916909,97,4872,1 +22187,916920,58,2941,1 +22188,916924,53,2692,1 +22189,916938,119,5962,1 +22190,916992,29,1463,1 +22191,917016,155,7765,1 +22192,917283,11,586,1 +22193,917340,77,3862,1 +22194,917364,175,8766,1 +22195,917390,5,268,1 +22196,917451,54,2742,1 +22197,917850,183,9182,1 +22198,918240,92,4640,1 +22199,918254,128,6449,1 +22200,918349,41,2055,1 +22201,918729,172,8627,1 +22202,918734,138,6945,1 +22203,918744,110,5520,1 +22204,918747,53,2670,1 +22205,918750,33,1677,1 +22206,918756,3,194,1 +22207,918756,74,3709,1 +22208,918757,144,7228,1 +22209,918773,54,2730,1 +22210,918782,188,9421,1 +22211,918810,183,9161,1 +22212,918816,32,1624,1 +22213,918816,64,3202,1 +22214,918877,192,9617,1 +22215,919224,143,7164,1 +22216,919237,52,2641,1 +22217,919251,170,8541,1 +22218,919260,2,121,1 +22219,919261,65,3268,1 +22220,919269,192,9623,1 +22221,919272,63,3179,1 +22222,919296,168,8433,1 +22223,919296,1,58,1 +22224,919681,64,3221,1 +22225,919683,111,5592,1 +22226,919705,50,2530,1 +22227,919729,71,3590,1 +22228,919862,21,1067,1 +22229,920199,18,940,1 +22230,920256,196,9813,1 +22231,920653,161,8094,1 +22232,920664,102,5103,1 +22233,920729,111,5551,1 +22234,920734,173,8683,1 +22235,921120,27,1354,1 +22236,921121,39,1996,1 +22237,921122,41,2068,1 +22238,921123,45,2263,1 +22239,921124,149,7482,1 +22240,921129,176,8803,1 +22241,921129,137,6900,1 +22242,921132,39,1951,1 +22243,921132,48,2405,1 +22244,921132,6,323,1 +22245,921135,160,8039,1 +22246,921138,164,8220,1 +22247,921168,123,6165,1 +22248,921168,175,8783,1 +22249,921174,137,6894,1 +22250,921180,199,9995,1 +22251,921186,40,2027,1 +22252,921193,21,1087,1 +22253,921205,58,2946,1 +22254,921331,128,6410,1 +22255,921600,194,9725,1 +22256,921618,111,5585,1 +22257,921648,193,9666,1 +22258,922080,56,2806,1 +22259,922080,65,3264,1 +22260,922091,28,1440,1 +22261,922116,139,6981,1 +22262,922129,6,310,1 +22263,922269,116,5846,1 +22264,922581,42,2133,1 +22265,922585,198,9904,1 +22266,922704,84,4235,1 +22267,923040,194,9702,1 +22268,923041,48,2417,1 +22269,923042,172,8626,1 +22270,923052,87,4356,1 +22271,923055,130,6543,1 +22272,923055,59,2974,1 +22273,923064,93,4698,1 +22274,923064,86,4307,1 +22275,923064,92,4626,1 +22276,923067,95,4785,1 +22277,923076,167,8389,1 +22278,923076,93,4651,1 +22279,923079,143,7191,1 +22280,923079,50,2538,1 +22281,923089,158,7913,1 +22282,923102,188,9407,1 +22283,923124,176,8806,1 +22284,923148,71,3591,1 +22285,923161,8,428,1 +22286,923178,193,9686,1 +22287,923259,152,7624,1 +22288,923421,194,9733,1 +22289,924000,0,40,1 +22290,924002,24,1234,1 +22291,924006,60,3033,1 +22292,924006,163,8159,1 +22293,924012,56,2818,1 +22294,924012,109,5500,1 +22295,924012,149,7453,1 +22296,924014,100,5018,1 +22297,924019,99,4972,1 +22298,924027,24,1231,1 +22299,924032,34,1706,1 +22300,924036,88,4425,1 +22301,924036,71,3576,1 +22302,924048,100,5016,1 +22303,924049,4,230,1 +22304,924049,163,8151,1 +22305,924057,52,2626,1 +22306,924060,41,2083,1 +22307,924069,183,9178,1 +22308,924108,15,772,1 +22309,924109,140,7036,1 +22310,924132,190,9537,1 +22311,924204,111,5600,1 +22312,924204,61,3065,1 +22313,924210,5,293,1 +22314,924960,88,4444,1 +22315,924960,169,8467,1 +22316,924961,109,5457,1 +22317,924961,100,5035,1 +22318,924966,84,4217,1 +22319,924966,96,4813,1 +22320,924972,185,9258,1 +22321,924972,183,9194,1 +22322,924972,191,9556,1 +22323,924972,106,5312,1 +22324,924978,173,8662,1 +22325,924979,20,1047,1 +22326,924984,7,357,1 +22327,924984,43,2164,1 +22328,924988,171,8596,1 +22329,925008,11,581,1 +22330,925021,128,6432,1 +22331,925027,25,1292,1 +22332,925059,15,762,1 +22333,925081,53,2666,1 +22334,925110,41,2077,1 +22335,925128,145,7286,1 +22336,925296,100,5037,1 +22337,925378,89,4466,1 +22338,925440,91,4587,1 +22339,925440,170,8517,1 +22340,925440,39,1977,1 +22341,925458,87,4389,1 +22342,925459,56,2813,1 +22343,925464,4,225,1 +22344,925464,10,546,1 +22345,925464,41,2097,1 +22346,925465,7,354,1 +22347,925470,106,5329,1 +22348,925476,116,5810,1 +22349,925478,121,6097,1 +22350,925489,23,1173,1 +22351,925490,144,7220,1 +22352,925503,46,2319,1 +22353,925525,121,6076,1 +22354,925596,49,2457,1 +22355,925656,12,627,1 +22356,925727,14,737,1 +22357,925920,185,9259,1 +22358,925921,109,5500,1 +22359,925921,106,5315,1 +22360,925931,115,5770,1 +22361,925948,13,674,1 +22362,925950,43,2166,1 +22363,925956,79,3995,1 +22364,925968,144,7242,1 +22365,925971,177,8887,1 +22366,925980,96,4807,1 +22367,925980,1,80,1 +22368,925980,185,9297,1 +22369,925991,139,6954,1 +22370,926004,169,8462,1 +22371,926012,50,2512,1 +22372,926016,73,3672,1 +22373,926019,64,3235,1 +22374,926022,165,8286,1 +22375,926037,129,6476,1 +22376,926077,74,3721,1 +22377,926443,185,9265,1 +22378,926448,168,8447,1 +22379,926906,74,3737,1 +22380,926966,132,6627,1 +22381,927840,140,7029,1 +22382,927840,13,661,1 +22383,927840,191,9565,1 +22384,927840,177,8854,1 +22385,927840,130,6519,1 +22386,927841,5,300,1 +22387,927841,163,8158,1 +22388,927842,138,6936,1 +22389,927846,41,2093,1 +22390,927852,139,6968,1 +22391,927852,85,4255,1 +22392,927852,10,524,1 +22393,927852,42,2147,1 +22394,927853,199,9983,1 +22395,927859,185,9280,1 +22396,927864,75,3758,1 +22397,927864,150,7540,1 +22398,927864,61,3063,1 +22399,927864,10,501,1 +22400,927865,19,952,1 +22401,927867,29,1452,1 +22402,927876,97,4857,1 +22403,927877,76,3831,1 +22404,927879,185,9260,1 +22405,927888,15,781,1 +22406,927888,150,7513,1 +22407,927888,14,720,1 +22408,927888,160,8012,1 +22409,927889,5,255,1 +22410,927890,67,3359,1 +22411,927901,41,2098,1 +22412,927903,106,5336,1 +22413,927906,26,1343,1 +22414,927910,43,2154,1 +22415,927912,161,8059,1 +22416,927912,91,4585,1 +22417,927924,154,7718,1 +22418,927936,99,4994,1 +22419,927973,36,1820,1 +22420,927975,119,5987,1 +22421,927996,130,6524,1 +22422,928050,7,385,1 +22423,928188,111,5566,1 +22424,928212,13,659,1 +22425,928329,17,885,1 +22426,928344,121,6064,1 +22427,928356,184,9229,1 +22428,928357,159,7953,1 +22429,928810,110,5532,1 +22430,928824,126,6329,1 +22431,928824,67,3374,1 +22432,928825,73,3696,1 +22433,928825,168,8442,1 +22434,928828,145,7256,1 +22435,928842,132,6647,1 +22436,928848,175,8754,1 +22437,928849,76,3825,1 +22438,928851,84,4211,1 +22439,928851,171,8588,1 +22440,928912,151,7569,1 +22441,929280,3,185,1 +22442,929304,63,3184,1 +22443,929388,82,4120,1 +22444,929772,16,802,1 +22445,929773,88,4444,1 +22446,929773,145,7296,1 +22447,929787,159,7975,1 +22448,929787,140,7047,1 +22449,929789,10,535,1 +22450,929790,108,5437,1 +22451,929820,2,120,1 +22452,929820,10,527,1 +22453,929835,79,3987,1 +22454,929844,91,4578,1 +22455,929917,21,1088,1 +22456,929940,130,6508,1 +22457,930264,192,9631,1 +22458,930288,52,2605,1 +22459,930406,194,9726,1 +22460,930720,85,4287,1 +22461,930720,169,8462,1 +22462,930720,185,9278,1 +22463,930721,117,5890,1 +22464,930732,182,9102,1 +22465,930732,20,1001,1 +22466,930735,108,5404,1 +22467,930745,5,294,1 +22468,930745,198,9930,1 +22469,930748,150,7515,1 +22470,930754,23,1179,1 +22471,930758,180,9014,1 +22472,930768,178,8935,1 +22473,930768,154,7706,1 +22474,930775,91,4556,1 +22475,930780,107,5372,1 +22476,930837,85,4260,1 +22477,931200,179,8977,1 +22478,931200,3,188,1 +22479,931200,51,2570,1 +22480,931200,72,3642,1 +22481,931202,130,6514,1 +22482,931203,158,7919,1 +22483,931210,58,2926,1 +22484,931212,46,2349,1 +22485,931215,10,546,1 +22486,931217,133,6656,1 +22487,931218,53,2671,1 +22488,931225,95,4754,1 +22489,931225,40,2047,1 +22490,931236,173,8658,1 +22491,931236,120,6023,1 +22492,931245,179,8993,1 +22493,931246,181,9059,1 +22494,931248,27,1400,1 +22495,931260,2,131,1 +22496,931263,35,1759,1 +22497,931281,4,241,1 +22498,931284,84,4215,1 +22499,931288,144,7212,1 +22500,931344,102,5149,1 +22501,931408,32,1650,1 +22502,931566,47,2363,1 +22503,931680,55,2766,1 +22504,931680,39,1970,1 +22505,931680,95,4776,1 +22506,931680,75,3769,1 +22507,931680,33,1675,1 +22508,931680,120,6048,1 +22509,931680,51,2559,1 +22510,931680,39,1969,1 +22511,931680,141,7069,1 +22512,931680,86,4332,1 +22513,931680,55,2787,1 +22514,931680,137,6885,1 +22515,931680,119,5963,1 +22516,931680,195,9768,1 +22517,931680,67,3392,1 +22518,931680,198,9903,1 +22519,931680,7,356,1 +22520,931680,70,3547,1 +22521,931680,121,6100,1 +22522,931681,124,6249,1 +22523,931681,6,349,1 +22524,931681,178,8947,1 +22525,931681,176,8828,1 +22526,931681,65,3264,1 +22527,931681,72,3650,1 +22528,931681,186,9311,1 +22529,931681,12,610,1 +22530,931682,71,3597,1 +22531,931682,42,2106,1 +22532,931683,103,5179,1 +22533,931683,38,1916,1 +22534,931683,91,4593,1 +22535,931683,10,528,1 +22536,931686,72,3608,1 +22537,931686,31,1567,1 +22538,931686,85,4299,1 +22539,931686,94,4743,1 +22540,931686,143,7199,1 +22541,931686,37,1895,1 +22542,931687,115,5796,1 +22543,931688,60,3039,1 +22544,931689,85,4299,1 +22545,931690,153,7671,1 +22546,931692,8,428,1 +22547,931692,53,2678,1 +22548,931692,69,3470,1 +22549,931692,77,3862,1 +22550,931692,152,7648,1 +22551,931692,15,752,1 +22552,931692,154,7715,1 +22553,931692,12,621,1 +22554,931692,143,7165,1 +22555,931692,184,9220,1 +22556,931692,28,1417,1 +22557,931692,33,1685,1 +22558,931692,163,8169,1 +22559,931692,198,9901,1 +22560,931692,123,6177,1 +22561,931692,53,2657,1 +22562,931692,100,5042,1 +22563,931693,160,8045,1 +22564,931693,11,581,1 +22565,931693,20,1039,1 +22566,931694,2,138,1 +22567,931696,51,2554,1 +22568,931698,199,9969,1 +22569,931698,132,6619,1 +22570,931701,70,3509,1 +22571,931701,192,9605,1 +22572,931701,48,2447,1 +22573,931702,191,9552,1 +22574,931704,126,6338,1 +22575,931704,56,2814,1 +22576,931704,51,2569,1 +22577,931704,175,8798,1 +22578,931704,191,9582,1 +22579,931704,89,4466,1 +22580,931704,8,442,1 +22581,931704,127,6368,1 +22582,931704,39,1973,1 +22583,931704,59,2955,1 +22584,931704,1,98,1 +22585,931704,51,2582,1 +22586,931704,68,3415,1 +22587,931705,169,8489,1 +22588,931705,36,1802,1 +22589,931706,159,7968,1 +22590,931707,185,9253,1 +22591,931707,116,5804,1 +22592,931710,170,8538,1 +22593,931711,13,662,1 +22594,931713,116,5839,1 +22595,931713,32,1621,1 +22596,931716,12,639,1 +22597,931716,139,6997,1 +22598,931716,165,8257,1 +22599,931716,192,9632,1 +22600,931716,65,3274,1 +22601,931716,84,4216,1 +22602,931716,113,5652,1 +22603,931716,57,2852,1 +22604,931716,123,6192,1 +22605,931716,96,4826,1 +22606,931717,97,4890,1 +22607,931717,106,5335,1 +22608,931717,77,3895,1 +22609,931717,181,9070,1 +22610,931718,99,4991,1 +22611,931719,129,6493,1 +22612,931719,116,5831,1 +22613,931720,90,4535,1 +22614,931722,3,168,1 +22615,931722,136,6830,1 +22616,931722,192,9601,1 +22617,931728,80,4025,1 +22618,931728,194,9703,1 +22619,931728,14,742,1 +22620,931728,74,3737,1 +22621,931728,45,2269,1 +22622,931728,109,5472,1 +22623,931729,70,3539,1 +22624,931729,144,7228,1 +22625,931729,64,3211,1 +22626,931730,74,3708,1 +22627,931730,55,2795,1 +22628,931731,147,7378,1 +22629,931732,75,3771,1 +22630,931734,128,6428,1 +22631,931735,2,136,1 +22632,931736,96,4838,1 +22633,931737,67,3379,1 +22634,931740,86,4315,1 +22635,931740,119,5982,1 +22636,931740,144,7244,1 +22637,931741,54,2716,1 +22638,931743,147,7388,1 +22639,931748,143,7152,1 +22640,931752,103,5163,1 +22641,931752,176,8820,1 +22642,931752,15,777,1 +22643,931753,158,7940,1 +22644,931753,90,4540,1 +22645,931753,198,9908,1 +22646,931753,136,6846,1 +22647,931753,24,1241,1 +22648,931754,112,5631,1 +22649,931755,2,112,1 +22650,931764,158,7907,1 +22651,931764,154,7737,1 +22652,931764,168,8428,1 +22653,931765,192,9646,1 +22654,931765,36,1835,1 +22655,931766,199,9973,1 +22656,931767,15,758,1 +22657,931768,56,2820,1 +22658,931772,167,8389,1 +22659,931776,156,7804,1 +22660,931776,48,2432,1 +22661,931776,118,5939,1 +22662,931777,6,337,1 +22663,931777,155,7755,1 +22664,931779,76,3831,1 +22665,931781,137,6881,1 +22666,931782,58,2938,1 +22667,931788,89,4473,1 +22668,931788,94,4750,1 +22669,931788,166,8338,1 +22670,931795,196,9824,1 +22671,931795,37,1870,1 +22672,931800,16,807,1 +22673,931812,57,2881,1 +22674,931812,33,1697,1 +22675,931824,105,5292,1 +22676,931827,145,7274,1 +22677,931827,154,7721,1 +22678,931828,73,3688,1 +22679,931839,120,6047,1 +22680,931848,97,4872,1 +22681,931857,53,2672,1 +22682,931860,186,9347,1 +22683,931874,79,3953,1 +22684,931875,78,3946,1 +22685,931884,191,9568,1 +22686,931892,117,5874,1 +22687,931908,163,8182,1 +22688,931913,20,1037,1 +22689,931914,87,4385,1 +22690,931921,175,8793,1 +22691,931969,148,7410,1 +22692,931970,180,9008,1 +22693,931992,0,20,1 +22694,932164,169,8491,1 +22695,932184,150,7513,1 +22696,932200,118,5943,1 +22697,932221,85,4258,1 +22698,932670,119,5997,1 +22699,932728,30,1523,1 +22700,932772,167,8354,1 +22701,933132,1,69,1 +22702,933132,17,887,1 +22703,933154,114,5735,1 +22704,933180,148,7436,1 +22705,933180,178,8904,1 +22706,933195,81,4054,1 +22707,933240,44,2204,1 +22708,933253,71,3579,1 +22709,933255,12,649,1 +22710,933603,141,7080,1 +22711,933674,10,535,1 +22712,933864,67,3390,1 +22713,934080,121,6065,1 +22714,934083,121,6067,1 +22715,934129,139,6999,1 +22716,934131,22,1144,1 +22717,934140,114,5704,1 +22718,934182,179,8963,1 +22719,934614,119,5956,1 +22720,934638,70,3539,1 +22721,935187,53,2672,1 +22722,935520,172,8643,1 +22723,935522,132,6649,1 +22724,935532,184,9206,1 +22725,935533,64,3221,1 +22726,935535,184,9206,1 +22727,935538,79,3999,1 +22728,935544,72,3624,1 +22729,935544,144,7208,1 +22730,935544,85,4294,1 +22731,935544,20,1028,1 +22732,935544,184,9238,1 +22733,935545,184,9221,1 +22734,935546,131,6567,1 +22735,935547,21,1058,1 +22736,935552,38,1915,1 +22737,935554,84,4234,1 +22738,935565,192,9646,1 +22739,935569,49,2466,1 +22740,935578,130,6528,1 +22741,935580,157,7883,1 +22742,935589,122,6105,1 +22743,935593,113,5674,1 +22744,935629,57,2869,1 +22745,935647,66,3340,1 +22746,935664,134,6734,1 +22747,935667,174,8746,1 +22748,935688,67,3366,1 +22749,935700,181,9064,1 +22750,936000,50,2513,1 +22751,936000,92,4631,1 +22752,936001,151,7577,1 +22753,936003,161,8089,1 +22754,936004,70,3512,1 +22755,936009,63,3153,1 +22756,936010,48,2423,1 +22757,936012,109,5480,1 +22758,936012,28,1439,1 +22759,936012,147,7398,1 +22760,936021,3,159,1 +22761,936024,77,3853,1 +22762,936025,31,1599,1 +22763,936028,138,6929,1 +22764,936032,95,4767,1 +22765,936033,102,5138,1 +22766,936036,112,5644,1 +22767,936036,196,9837,1 +22768,936036,54,2743,1 +22769,936036,72,3637,1 +22770,936036,27,1398,1 +22771,936042,168,8430,1 +22772,936048,72,3608,1 +22773,936055,186,9321,1 +22774,936060,34,1728,1 +22775,936060,148,7408,1 +22776,936061,87,4370,1 +22777,936061,104,5245,1 +22778,936071,42,2103,1 +22779,936072,141,7076,1 +22780,936079,99,4970,1 +22781,936086,47,2369,1 +22782,936095,27,1394,1 +22783,936102,57,2863,1 +22784,936109,40,2020,1 +22785,936120,18,917,1 +22786,936120,102,5122,1 +22787,936120,182,9118,1 +22788,936123,183,9174,1 +22789,936133,194,9740,1 +22790,936144,82,4139,1 +22791,936156,170,8535,1 +22792,936165,114,5711,1 +22793,936265,102,5124,1 +22794,936279,32,1638,1 +22795,936285,52,2626,1 +22796,936489,167,8359,1 +22797,936499,158,7949,1 +22798,936506,1,80,1 +22799,936529,183,9177,1 +22800,936588,68,3441,1 +22801,936603,9,499,1 +22802,936627,92,4642,1 +22803,936967,196,9812,1 +22804,936973,97,4891,1 +22805,937045,53,2688,1 +22806,937297,0,17,1 +22807,937452,114,5703,1 +22808,937452,111,5597,1 +22809,937452,146,7346,1 +22810,937464,85,4275,1 +22811,937485,179,8951,1 +22812,937488,175,8783,1 +22813,937491,94,4712,1 +22814,937500,161,8078,1 +22815,937501,133,6695,1 +22816,937503,69,3468,1 +22817,937545,60,3041,1 +22818,937545,56,2807,1 +22819,937546,138,6937,1 +22820,937621,188,9409,1 +22821,937636,127,6392,1 +22822,937668,177,8861,1 +22823,937672,43,2175,1 +22824,937932,177,8887,1 +22825,937956,37,1897,1 +22826,938088,160,8028,1 +22827,938400,175,8776,1 +22828,938407,15,772,1 +22829,938418,16,843,1 +22830,938436,89,4459,1 +22831,938443,127,6399,1 +22832,938508,159,7977,1 +22833,938529,143,7153,1 +22834,938892,85,4278,1 +22835,938904,111,5589,1 +22836,938904,152,7626,1 +22837,938977,18,923,1 +22838,939435,136,6804,1 +22839,939844,156,7843,1 +22840,939849,198,9906,1 +22841,940320,199,9962,1 +22842,940320,146,7326,1 +22843,940320,12,624,1 +22844,940320,184,9234,1 +22845,940320,76,3808,1 +22846,940321,114,5709,1 +22847,940321,122,6111,1 +22848,940321,134,6713,1 +22849,940321,121,6092,1 +22850,940321,95,4765,1 +22851,940322,131,6556,1 +22852,940323,55,2773,1 +22853,940323,142,7132,1 +22854,940324,154,7750,1 +22855,940331,26,1319,1 +22856,940332,160,8034,1 +22857,940334,109,5461,1 +22858,940344,78,3937,1 +22859,940344,14,735,1 +22860,940344,61,3093,1 +22861,940344,50,2549,1 +22862,940348,10,528,1 +22863,940356,52,2643,1 +22864,940356,23,1179,1 +22865,940356,33,1689,1 +22866,940357,96,4828,1 +22867,940363,69,3456,1 +22868,940368,5,257,1 +22869,940368,31,1564,1 +22870,940368,84,4248,1 +22871,940371,106,5333,1 +22872,940375,36,1844,1 +22873,940380,61,3060,1 +22874,940380,144,7247,1 +22875,940392,120,6020,1 +22876,940392,182,9111,1 +22877,940393,171,8578,1 +22878,940394,46,2346,1 +22879,940395,86,4322,1 +22880,940398,47,2386,1 +22881,940398,162,8116,1 +22882,940401,25,1287,1 +22883,940404,172,8645,1 +22884,940404,101,5078,1 +22885,940408,86,4301,1 +22886,940416,16,801,1 +22887,940429,124,6206,1 +22888,940440,80,4013,1 +22889,940443,188,9420,1 +22890,940446,74,3746,1 +22891,940452,87,4364,1 +22892,940452,84,4242,1 +22893,940453,9,464,1 +22894,940459,0,11,1 +22895,940464,98,4930,1 +22896,940467,33,1665,1 +22897,940468,147,7386,1 +22898,940513,107,5391,1 +22899,940585,13,682,1 +22900,940840,63,3198,1 +22901,940849,136,6824,1 +22902,941304,185,9270,1 +22903,941307,124,6233,1 +22904,941319,9,483,1 +22905,941319,46,2346,1 +22906,941760,114,5736,1 +22907,941760,143,7177,1 +22908,941760,141,7093,1 +22909,941760,61,3064,1 +22910,941760,5,256,1 +22911,941760,129,6499,1 +22912,941760,187,9353,1 +22913,941760,57,2868,1 +22914,941760,127,6374,1 +22915,941760,75,3787,1 +22916,941760,104,5211,1 +22917,941760,80,4041,1 +22918,941760,108,5421,1 +22919,941760,106,5312,1 +22920,941761,169,8499,1 +22921,941761,161,8097,1 +22922,941762,48,2420,1 +22923,941763,173,8663,1 +22924,941769,165,8300,1 +22925,941771,97,4897,1 +22926,941772,115,5782,1 +22927,941772,103,5172,1 +22928,941774,43,2185,1 +22929,941779,123,6170,1 +22930,941784,102,5147,1 +22931,941784,143,7177,1 +22932,941785,86,4321,1 +22933,941797,4,242,1 +22934,941799,128,6428,1 +22935,941801,136,6842,1 +22936,941808,152,7620,1 +22937,941809,178,8909,1 +22938,941810,37,1887,1 +22939,941811,90,4533,1 +22940,941818,100,5014,1 +22941,941820,58,2944,1 +22942,941822,179,8971,1 +22943,941827,189,9490,1 +22944,941828,47,2395,1 +22945,941829,37,1888,1 +22946,941829,163,8161,1 +22947,941856,139,6997,1 +22948,941858,121,6091,1 +22949,941862,89,4460,1 +22950,941869,49,2461,1 +22951,941881,16,823,1 +22952,941916,70,3548,1 +22953,941937,31,1573,1 +22954,941966,75,3757,1 +22955,941976,38,1906,1 +22956,942240,13,689,1 +22957,942240,53,2674,1 +22958,942240,122,6120,1 +22959,942241,24,1241,1 +22960,942241,143,7194,1 +22961,942241,129,6462,1 +22962,942242,67,3367,1 +22963,942243,166,8342,1 +22964,942246,153,7686,1 +22965,942246,35,1768,1 +22966,942247,149,7477,1 +22967,942252,23,1176,1 +22968,942252,115,5766,1 +22969,942252,192,9623,1 +22970,942252,108,5401,1 +22971,942253,188,9418,1 +22972,942253,61,3097,1 +22973,942254,185,9285,1 +22974,942261,69,3469,1 +22975,942264,116,5843,1 +22976,942270,69,3498,1 +22977,942271,82,4118,1 +22978,942271,32,1615,1 +22979,942276,41,2063,1 +22980,942286,0,43,1 +22981,942288,162,8120,1 +22982,942288,46,2340,1 +22983,942289,70,3549,1 +22984,942300,150,7504,1 +22985,942300,167,8393,1 +22986,942300,95,4782,1 +22987,942300,86,4305,1 +22988,942312,123,6154,1 +22989,942312,69,3492,1 +22990,942335,18,950,1 +22991,942342,45,2275,1 +22992,942350,176,8805,1 +22993,942370,26,1337,1 +22994,942370,34,1724,1 +22995,942393,79,3990,1 +22996,942432,143,7174,1 +22997,942605,2,105,1 +22998,942721,132,6622,1 +22999,942723,49,2456,1 +23000,942738,144,7231,1 +23001,942744,8,420,1 +23002,942750,116,5820,1 +23003,942780,103,5195,1 +23004,942853,187,9373,1 +23005,943200,121,6071,1 +23006,943201,180,9036,1 +23007,943234,123,6152,1 +23008,943248,138,6939,1 +23009,943345,129,6460,1 +23010,943362,181,9083,1 +23011,943680,43,2197,1 +23012,943683,6,326,1 +23013,943695,64,3236,1 +23014,943696,42,2122,1 +23015,943704,137,6856,1 +23016,943704,193,9670,1 +23017,943716,180,9029,1 +23018,943718,143,7157,1 +23019,943725,149,7490,1 +23020,943740,159,7962,1 +23021,944042,181,9085,1 +23022,944164,62,3144,1 +23023,944166,6,322,1 +23024,944198,139,6977,1 +23025,944222,31,1591,1 +23026,945135,22,1150,1 +23027,945135,197,9891,1 +23028,945611,164,8230,1 +23029,945612,181,9060,1 +23030,945615,149,7454,1 +23031,945648,120,6029,1 +23032,945652,19,982,1 +23033,945684,24,1213,1 +23034,945702,156,7804,1 +23035,945708,138,6920,1 +23036,945793,158,7908,1 +23037,946080,126,6328,1 +23038,946081,4,230,1 +23039,946081,135,6752,1 +23040,946082,184,9217,1 +23041,946082,10,543,1 +23042,946083,93,4690,1 +23043,946086,142,7134,1 +23044,946092,126,6324,1 +23045,946097,110,5503,1 +23046,946104,147,7400,1 +23047,946104,70,3531,1 +23048,946116,61,3084,1 +23049,946128,67,3381,1 +23050,946130,148,7431,1 +23051,946152,108,5435,1 +23052,946153,24,1210,1 +23053,946200,22,1128,1 +23054,946212,99,4972,1 +23055,946215,67,3369,1 +23056,946419,78,3922,1 +23057,946584,22,1132,1 +23058,946596,176,8842,1 +23059,946629,160,8014,1 +23060,946764,65,3281,1 +23061,946776,83,4192,1 +23062,947040,141,7055,1 +23063,947052,123,6177,1 +23064,947054,133,6676,1 +23065,947064,6,303,1 +23066,947065,130,6508,1 +23067,947076,94,4709,1 +23068,947079,121,6090,1 +23069,947086,68,3450,1 +23070,947100,176,8817,1 +23071,947109,117,5880,1 +23072,947125,163,8173,1 +23073,947136,41,2074,1 +23074,947163,163,8188,1 +23075,947172,44,2231,1 +23076,947208,169,8463,1 +23077,947523,175,8779,1 +23078,947532,190,9541,1 +23079,947544,104,5246,1 +23080,947556,59,2971,1 +23081,947559,46,2342,1 +23082,948000,11,573,1 +23083,948000,83,4164,1 +23084,948000,33,1700,1 +23085,948006,77,3898,1 +23086,948012,140,7032,1 +23087,948012,176,8848,1 +23088,948012,174,8719,1 +23089,948024,16,811,1 +23090,948024,50,2529,1 +23091,948027,21,1060,1 +23092,948028,108,5439,1 +23093,948033,16,813,1 +23094,948034,98,4917,1 +23095,948035,191,9565,1 +23096,948036,121,6089,1 +23097,948045,137,6856,1 +23098,948048,97,4878,1 +23099,948055,185,9276,1 +23100,948072,145,7293,1 +23101,948230,123,6167,1 +23102,948480,170,8508,1 +23103,948480,91,4594,1 +23104,948482,51,2583,1 +23105,948483,69,3462,1 +23106,948489,102,5105,1 +23107,948492,13,661,1 +23108,948492,162,8119,1 +23109,948494,96,4831,1 +23110,948494,84,4217,1 +23111,948495,71,3564,1 +23112,948504,130,6509,1 +23113,948505,88,4445,1 +23114,948508,115,5760,1 +23115,948519,197,9851,1 +23116,948525,151,7576,1 +23117,948528,62,3143,1 +23118,948528,9,496,1 +23119,948528,39,1963,1 +23120,948528,180,9021,1 +23121,948540,65,3267,1 +23122,948564,193,9663,1 +23123,948612,168,8423,1 +23124,948624,26,1344,1 +23125,948793,136,6820,1 +23126,948963,101,5094,1 +23127,948984,65,3275,1 +23128,948985,191,9584,1 +23129,948991,90,4517,1 +23130,948997,191,9583,1 +23131,949023,164,8244,1 +23132,949033,177,8879,1 +23133,949068,105,5275,1 +23134,949152,136,6819,1 +23135,949920,81,4064,1 +23136,949920,22,1138,1 +23137,949946,85,4264,1 +23138,950403,102,5108,1 +23139,950460,97,4873,1 +23140,950461,52,2606,1 +23141,950463,14,747,1 +23142,950487,72,3614,1 +23143,950506,66,3350,1 +23144,950640,120,6043,1 +23145,950880,161,8055,1 +23146,950880,198,9921,1 +23147,950882,166,8333,1 +23148,950890,89,4452,1 +23149,950892,172,8626,1 +23150,950892,77,3869,1 +23151,950892,11,565,1 +23152,950892,158,7939,1 +23153,950892,108,5448,1 +23154,950896,156,7816,1 +23155,950896,106,5310,1 +23156,950898,145,7284,1 +23157,950904,58,2924,1 +23158,950911,130,6521,1 +23159,950916,85,4264,1 +23160,950916,128,6426,1 +23161,950918,152,7617,1 +23162,950920,85,4300,1 +23163,950928,36,1829,1 +23164,950928,94,4732,1 +23165,950930,109,5458,1 +23166,950931,83,4171,1 +23167,950934,118,5917,1 +23168,950939,12,615,1 +23169,950940,192,9650,1 +23170,950940,134,6734,1 +23171,950940,106,5305,1 +23172,950940,148,7431,1 +23173,950941,65,3290,1 +23174,950952,157,7899,1 +23175,951360,95,4773,1 +23176,951372,92,4611,1 +23177,951444,136,6846,1 +23178,951840,58,2907,1 +23179,951843,127,6351,1 +23180,951867,176,8806,1 +23181,951867,183,9164,1 +23182,951876,50,2503,1 +23183,951900,35,1768,1 +23184,951904,173,8675,1 +23185,951906,83,4172,1 +23186,951962,145,7275,1 +23187,951984,23,1190,1 +23188,952020,79,3961,1 +23189,952392,118,5925,1 +23190,952804,7,395,1 +23191,952815,47,2384,1 +23192,952837,194,9721,1 +23193,952908,174,8740,1 +23194,953292,94,4729,1 +23195,953292,183,9195,1 +23196,953296,176,8811,1 +23197,953304,186,9330,1 +23198,953306,79,3951,1 +23199,953319,120,6044,1 +23200,953340,152,7620,1 +23201,953368,80,4024,1 +23202,953460,128,6445,1 +23203,953490,195,9782,1 +23204,953844,128,6411,1 +23205,954242,0,29,1 +23206,954252,141,7059,1 +23207,954254,17,894,1 +23208,954258,117,5880,1 +23209,954265,29,1465,1 +23210,954270,158,7946,1 +23211,954270,31,1595,1 +23212,954276,177,8856,1 +23213,954276,103,5196,1 +23214,954276,2,137,1 +23215,954279,7,394,1 +23216,954288,176,8839,1 +23217,954291,127,6396,1 +23218,954303,64,3224,1 +23219,954309,3,183,1 +23220,954310,191,9591,1 +23221,954312,130,6509,1 +23222,954313,158,7916,1 +23223,954324,124,6225,1 +23224,954337,85,4255,1 +23225,954351,190,9547,1 +23226,954375,173,8689,1 +23227,954420,37,1884,1 +23228,954492,24,1232,1 +23229,954745,60,3010,1 +23230,954762,144,7203,1 +23231,954769,108,5408,1 +23232,954798,140,7028,1 +23233,955159,117,5860,1 +23234,955212,72,3621,1 +23235,955231,10,538,1 +23236,955236,13,656,1 +23237,955252,180,9014,1 +23238,955468,142,7127,1 +23239,955680,54,2726,1 +23240,955686,86,4333,1 +23241,955689,70,3520,1 +23242,955692,11,567,1 +23243,955693,160,8039,1 +23244,955711,49,2478,1 +23245,955714,61,3094,1 +23246,955716,19,992,1 +23247,955728,169,8469,1 +23248,955728,187,9369,1 +23249,955740,187,9358,1 +23250,955754,4,245,1 +23251,955767,42,2134,1 +23252,955770,34,1740,1 +23253,955785,13,696,1 +23254,955824,109,5471,1 +23255,955840,75,3785,1 +23256,955860,57,2853,1 +23257,955875,104,5245,1 +23258,955923,64,3247,1 +23259,955932,83,4182,1 +23260,956160,97,4869,1 +23261,956160,129,6463,1 +23262,956160,176,8831,1 +23263,956169,98,4914,1 +23264,956172,181,9075,1 +23265,956178,175,8773,1 +23266,956178,40,2026,1 +23267,956209,56,2843,1 +23268,956221,32,1631,1 +23269,956232,31,1570,1 +23270,956247,32,1625,1 +23271,956294,134,6747,1 +23272,956376,47,2355,1 +23273,956464,165,8298,1 +23274,956676,118,5934,1 +23275,956679,135,6774,1 +23276,956712,128,6418,1 +23277,956715,33,1676,1 +23278,956716,172,8628,1 +23279,956833,86,4317,1 +23280,957123,38,1942,1 +23281,957144,41,2080,1 +23282,957150,180,9026,1 +23283,957160,97,4880,1 +23284,957171,147,7386,1 +23285,957300,32,1644,1 +23286,957600,17,859,1 +23287,957600,12,632,1 +23288,957600,166,8327,1 +23289,957600,37,1856,1 +23290,957600,21,1080,1 +23291,957600,18,919,1 +23292,957600,158,7909,1 +23293,957600,118,5901,1 +23294,957600,159,7961,1 +23295,957600,180,9001,1 +23296,957601,76,3839,1 +23297,957601,182,9131,1 +23298,957601,48,2403,1 +23299,957601,101,5075,1 +23300,957601,198,9938,1 +23301,957601,84,4238,1 +23302,957602,123,6164,1 +23303,957603,10,508,1 +23304,957603,172,8611,1 +23305,957606,18,930,1 +23306,957611,196,9828,1 +23307,957612,138,6927,1 +23308,957612,66,3350,1 +23309,957612,58,2907,1 +23310,957612,90,4511,1 +23311,957612,176,8842,1 +23312,957612,166,8319,1 +23313,957612,60,3024,1 +23314,957612,135,6771,1 +23315,957613,25,1289,1 +23316,957616,52,2604,1 +23317,957624,87,4363,1 +23318,957624,48,2413,1 +23319,957624,59,2968,1 +23320,957625,110,5525,1 +23321,957626,172,8650,1 +23322,957627,76,3820,1 +23323,957627,18,905,1 +23324,957630,53,2675,1 +23325,957636,26,1321,1 +23326,957636,182,9127,1 +23327,957636,37,1874,1 +23328,957636,71,3577,1 +23329,957645,2,133,1 +23330,957648,159,7968,1 +23331,957648,82,4105,1 +23332,957650,65,3270,1 +23333,957650,72,3624,1 +23334,957657,167,8355,1 +23335,957660,134,6721,1 +23336,957660,89,4473,1 +23337,957669,159,7957,1 +23338,957672,34,1744,1 +23339,957675,101,5096,1 +23340,957684,12,601,1 +23341,957689,163,8163,1 +23342,957690,159,7952,1 +23343,957696,82,4101,1 +23344,957704,43,2153,1 +23345,957720,25,1281,1 +23346,957732,35,1755,1 +23347,957738,36,1814,1 +23348,957753,181,9083,1 +23349,957757,192,9632,1 +23350,957768,197,9878,1 +23351,957769,199,9971,1 +23352,957799,44,2215,1 +23353,957820,94,4721,1 +23354,957858,135,6771,1 +23355,957864,145,7289,1 +23356,957864,134,6748,1 +23357,957908,25,1264,1 +23358,957951,32,1602,1 +23359,958080,137,6898,1 +23360,958081,53,2667,1 +23361,958083,119,5978,1 +23362,958083,127,6391,1 +23363,958086,129,6460,1 +23364,958089,154,7710,1 +23365,958092,44,2219,1 +23366,958094,11,558,1 +23367,958101,77,3871,1 +23368,958101,170,8522,1 +23369,958104,12,626,1 +23370,958105,119,5971,1 +23371,958105,147,7364,1 +23372,958105,3,167,1 +23373,958113,47,2363,1 +23374,958128,130,6507,1 +23375,958128,178,8926,1 +23376,958131,35,1771,1 +23377,958133,68,3443,1 +23378,958137,109,5462,1 +23379,958143,166,8343,1 +23380,958143,27,1395,1 +23381,958149,56,2806,1 +23382,958153,129,6479,1 +23383,958164,36,1845,1 +23384,958176,134,6743,1 +23385,958178,13,696,1 +23386,958200,161,8053,1 +23387,958572,136,6820,1 +23388,958573,0,43,1 +23389,958620,95,4787,1 +23390,958644,24,1224,1 +23391,959040,102,5141,1 +23392,959041,95,4763,1 +23393,959056,181,9070,1 +23394,959066,194,9727,1 +23395,959100,182,9128,1 +23396,959160,96,4834,1 +23397,959533,60,3050,1 +23398,959544,194,9715,1 +23399,959581,186,9313,1 +23400,959664,77,3881,1 +23401,960000,17,857,1 +23402,960001,44,2239,1 +23403,960003,44,2229,1 +23404,960024,88,4445,1 +23405,960048,85,4289,1 +23406,960058,26,1308,1 +23407,960081,25,1284,1 +23408,960108,144,7233,1 +23409,960120,1,81,1 +23410,960122,188,9434,1 +23411,960192,186,9349,1 +23412,960502,58,2930,1 +23413,960505,169,8499,1 +23414,960540,143,7178,1 +23415,960552,70,3504,1 +23416,960579,88,4435,1 +23417,960636,144,7229,1 +23418,960964,29,1474,1 +23419,961068,192,9622,1 +23420,961440,22,1105,1 +23421,961440,116,5805,1 +23422,961443,73,3681,1 +23423,961447,51,2567,1 +23424,961452,31,1565,1 +23425,961452,49,2461,1 +23426,961452,80,4038,1 +23427,961453,176,8838,1 +23428,961464,52,2615,1 +23429,961470,1,94,1 +23430,961471,180,9050,1 +23431,961477,4,227,1 +23432,961488,54,2720,1 +23433,961489,69,3456,1 +23434,961489,109,5479,1 +23435,961500,29,1499,1 +23436,961524,134,6708,1 +23437,961533,121,6083,1 +23438,961537,187,9392,1 +23439,961554,7,367,1 +23440,961569,67,3357,1 +23441,961572,168,8432,1 +23442,961575,50,2516,1 +23443,961596,184,9243,1 +23444,961645,111,5573,1 +23445,961674,106,5348,1 +23446,961923,82,4145,1 +23447,961923,166,8350,1 +23448,961926,95,4763,1 +23449,961935,119,5980,1 +23450,961944,53,2668,1 +23451,961944,51,2551,1 +23452,961946,37,1899,1 +23453,961956,55,2777,1 +23454,961956,185,9285,1 +23455,961957,88,4404,1 +23456,961957,165,8257,1 +23457,961963,118,5925,1 +23458,961968,12,622,1 +23459,961969,96,4805,1 +23460,961981,113,5689,1 +23461,961993,180,9028,1 +23462,962001,119,5981,1 +23463,962009,112,5633,1 +23464,962034,74,3706,1 +23465,962041,186,9334,1 +23466,962172,161,8073,1 +23467,962894,49,2483,1 +23468,962898,51,2569,1 +23469,962904,4,214,1 +23470,962917,5,278,1 +23471,962917,84,4216,1 +23472,962919,152,7627,1 +23473,962922,141,7055,1 +23474,962926,112,5603,1 +23475,962940,13,656,1 +23476,962947,84,4245,1 +23477,962979,75,3788,1 +23478,962988,196,9838,1 +23479,963001,79,3956,1 +23480,963001,66,3312,1 +23481,963052,11,564,1 +23482,963183,35,1760,1 +23483,963360,36,1834,1 +23484,963370,160,8039,1 +23485,963372,76,3843,1 +23486,963372,175,8752,1 +23487,963384,29,1452,1 +23488,963420,3,161,1 +23489,963516,136,6807,1 +23490,963841,150,7516,1 +23491,963852,169,8472,1 +23492,963853,97,4869,1 +23493,963864,162,8128,1 +23494,963864,134,6742,1 +23495,963864,143,7186,1 +23496,963885,164,8243,1 +23497,963886,182,9139,1 +23498,963887,116,5810,1 +23499,963901,41,2093,1 +23500,963912,102,5126,1 +23501,963936,121,6072,1 +23502,963938,61,3060,1 +23503,963943,172,8634,1 +23504,963948,18,902,1 +23505,964351,140,7004,1 +23506,964392,44,2206,1 +23507,964826,117,5875,1 +23508,965280,151,7556,1 +23509,965286,106,5320,1 +23510,965289,189,9469,1 +23511,965293,8,447,1 +23512,965304,52,2636,1 +23513,965328,122,6120,1 +23514,965329,124,6214,1 +23515,965331,134,6742,1 +23516,965353,139,6996,1 +23517,965424,188,9440,1 +23518,965760,148,7438,1 +23519,965761,20,1016,1 +23520,965769,126,6346,1 +23521,965772,132,6610,1 +23522,965777,113,5689,1 +23523,965783,50,2504,1 +23524,965790,88,4431,1 +23525,965800,70,3537,1 +23526,965808,137,6871,1 +23527,965808,66,3329,1 +23528,965820,56,2820,1 +23529,965821,174,8723,1 +23530,965844,185,9292,1 +23531,965848,53,2693,1 +23532,965856,173,8694,1 +23533,965865,112,5622,1 +23534,965977,151,7552,1 +23535,965981,167,8370,1 +23536,966135,142,7142,1 +23537,966300,97,4876,1 +23538,966422,82,4118,1 +23539,966780,169,8454,1 +23540,967201,196,9842,1 +23541,967203,40,2021,1 +23542,967224,196,9841,1 +23543,967224,151,7574,1 +23544,967224,124,6235,1 +23545,967260,68,3412,1 +23546,967275,10,511,1 +23547,967305,89,4473,1 +23548,967314,193,9665,1 +23549,967687,26,1304,1 +23550,967694,197,9885,1 +23551,967704,147,7387,1 +23552,967704,75,3787,1 +23553,967705,66,3320,1 +23554,967719,177,8873,1 +23555,967741,23,1170,1 +23556,967741,119,5979,1 +23557,967749,116,5828,1 +23558,967752,161,8080,1 +23559,967753,93,4657,1 +23560,967764,193,9683,1 +23561,967800,83,4192,1 +23562,967809,113,5692,1 +23563,967812,111,5591,1 +23564,967837,190,9508,1 +23565,967860,129,6455,1 +23566,968196,177,8869,1 +23567,968223,93,4677,1 +23568,968652,106,5341,1 +23569,968688,126,6349,1 +23570,968722,56,2840,1 +23571,969121,83,4200,1 +23572,969129,191,9558,1 +23573,969133,65,3276,1 +23574,969186,140,7039,1 +23575,969279,143,7189,1 +23576,969624,184,9241,1 +23577,970094,194,9720,1 +23578,970094,66,3336,1 +23579,970105,132,6637,1 +23580,970110,65,3281,1 +23581,970170,84,4218,1 +23582,970599,170,8531,1 +23583,970620,37,1882,1 +23584,970668,37,1871,1 +23585,970705,13,677,1 +23586,971040,192,9606,1 +23587,971040,165,8297,1 +23588,971040,148,7425,1 +23589,971040,72,3627,1 +23590,971040,118,5941,1 +23591,971040,128,6415,1 +23592,971041,143,7159,1 +23593,971041,195,9784,1 +23594,971041,25,1252,1 +23595,971042,142,7148,1 +23596,971042,127,6357,1 +23597,971043,176,8812,1 +23598,971043,70,3502,1 +23599,971046,129,6471,1 +23600,971046,103,5181,1 +23601,971047,100,5011,1 +23602,971049,135,6797,1 +23603,971052,160,8044,1 +23604,971052,41,2066,1 +23605,971052,126,6318,1 +23606,971052,187,9369,1 +23607,971052,68,3419,1 +23608,971052,193,9659,1 +23609,971052,45,2300,1 +23610,971052,156,7819,1 +23611,971056,72,3613,1 +23612,971056,128,6449,1 +23613,971061,186,9310,1 +23614,971064,181,9090,1 +23615,971064,66,3331,1 +23616,971064,56,2825,1 +23617,971064,1,60,1 +23618,971065,74,3704,1 +23619,971065,150,7546,1 +23620,971065,161,8059,1 +23621,971068,199,9960,1 +23622,971073,63,3184,1 +23623,971076,32,1620,1 +23624,971076,90,4550,1 +23625,971076,81,4063,1 +23626,971078,198,9927,1 +23627,971088,5,256,1 +23628,971089,49,2452,1 +23629,971089,8,405,1 +23630,971091,60,3012,1 +23631,971094,175,8773,1 +23632,971097,34,1738,1 +23633,971100,168,8416,1 +23634,971100,91,4562,1 +23635,971100,64,3225,1 +23636,971100,21,1052,1 +23637,971101,180,9030,1 +23638,971109,186,9330,1 +23639,971112,134,6710,1 +23640,971113,196,9831,1 +23641,971115,6,332,1 +23642,971115,63,3167,1 +23643,971116,95,4760,1 +23644,971124,70,3514,1 +23645,971124,4,245,1 +23646,971125,164,8242,1 +23647,971128,167,8364,1 +23648,971136,22,1149,1 +23649,971136,101,5072,1 +23650,971138,126,6337,1 +23651,971138,119,5981,1 +23652,971148,175,8781,1 +23653,971158,157,7887,1 +23654,971184,160,8026,1 +23655,971188,41,2067,1 +23656,971194,164,8212,1 +23657,971221,158,7912,1 +23658,971221,88,4417,1 +23659,971222,182,9107,1 +23660,971229,176,8816,1 +23661,971251,35,1788,1 +23662,971262,134,6740,1 +23663,971520,9,477,1 +23664,971580,103,5158,1 +23665,972012,125,6300,1 +23666,972480,140,7037,1 +23667,972504,162,8106,1 +23668,972504,76,3849,1 +23669,972516,102,5112,1 +23670,972960,195,9787,1 +23671,972960,132,6617,1 +23672,972960,147,7395,1 +23673,972961,112,5627,1 +23674,972984,85,4274,1 +23675,972996,57,2897,1 +23676,972997,100,5022,1 +23677,972997,179,8996,1 +23678,973009,20,1035,1 +23679,973020,16,810,1 +23680,973104,10,527,1 +23681,973440,163,8183,1 +23682,973440,84,4230,1 +23683,973442,176,8850,1 +23684,973443,72,3638,1 +23685,973454,36,1802,1 +23686,973458,125,6259,1 +23687,973471,9,487,1 +23688,973471,77,3853,1 +23689,973474,3,200,1 +23690,973479,115,5781,1 +23691,973490,14,737,1 +23692,973503,175,8772,1 +23693,973512,25,1280,1 +23694,973521,78,3941,1 +23695,973524,112,5641,1 +23696,973526,12,634,1 +23697,973526,102,5117,1 +23698,973536,82,4129,1 +23699,973537,137,6890,1 +23700,973545,12,627,1 +23701,973548,38,1917,1 +23702,973561,152,7620,1 +23703,973685,198,9949,1 +23704,973944,49,2455,1 +23705,973972,72,3633,1 +23706,974040,93,4693,1 +23707,974076,38,1905,1 +23708,974400,19,995,1 +23709,974401,74,3740,1 +23710,974421,177,8900,1 +23711,974424,25,1295,1 +23712,974475,10,505,1 +23713,974484,56,2818,1 +23714,974500,179,8988,1 +23715,974526,7,389,1 +23716,974583,71,3554,1 +23717,974880,161,8084,1 +23718,974894,12,632,1 +23719,974928,195,9793,1 +23720,974959,126,6346,1 +23721,974964,107,5365,1 +23722,975024,148,7411,1 +23723,975039,186,9329,1 +23724,975360,136,6846,1 +23725,975360,29,1468,1 +23726,975372,2,134,1 +23727,975384,75,3763,1 +23728,975384,26,1322,1 +23729,975384,12,619,1 +23730,975396,68,3412,1 +23731,975408,86,4349,1 +23732,975408,1,96,1 +23733,975419,12,604,1 +23734,975444,79,3999,1 +23735,975457,100,5003,1 +23736,975468,105,5255,1 +23737,975469,181,9051,1 +23738,975518,72,3643,1 +23739,975542,176,8807,1 +23740,975564,131,6573,1 +23741,975840,20,1050,1 +23742,975840,68,3431,1 +23743,975840,165,8255,1 +23744,975840,49,2467,1 +23745,975841,107,5390,1 +23746,975850,66,3344,1 +23747,975852,126,6337,1 +23748,975853,184,9237,1 +23749,975856,23,1161,1 +23750,975858,84,4218,1 +23751,975864,127,6384,1 +23752,975865,2,127,1 +23753,975873,81,4059,1 +23754,975876,68,3402,1 +23755,975876,94,4717,1 +23756,975882,77,3897,1 +23757,975896,10,505,1 +23758,975912,31,1581,1 +23759,975913,97,4869,1 +23760,975914,173,8700,1 +23761,975915,139,6970,1 +23762,975960,65,3289,1 +23763,975960,20,1050,1 +23764,976072,32,1614,1 +23765,976122,9,475,1 +23766,976326,179,8999,1 +23767,976332,11,594,1 +23768,976338,185,9259,1 +23769,976344,147,7399,1 +23770,976344,10,534,1 +23771,976350,22,1135,1 +23772,976350,71,3588,1 +23773,976356,22,1107,1 +23774,976363,190,9524,1 +23775,976368,48,2416,1 +23776,976368,185,9256,1 +23777,976609,152,7629,1 +23778,976800,69,3476,1 +23779,976800,115,5789,1 +23780,976804,87,4354,1 +23781,976806,22,1126,1 +23782,976812,26,1345,1 +23783,976824,64,3212,1 +23784,976887,34,1729,1 +23785,976956,198,9912,1 +23786,977333,149,7493,1 +23787,977787,103,5169,1 +23788,978240,192,9614,1 +23789,978240,79,3977,1 +23790,978240,65,3265,1 +23791,978240,155,7754,1 +23792,978240,18,939,1 +23793,978241,30,1502,1 +23794,978249,173,8693,1 +23795,978252,98,4904,1 +23796,978252,109,5455,1 +23797,978258,6,333,1 +23798,978264,103,5185,1 +23799,978266,5,258,1 +23800,978271,133,6677,1 +23801,978271,35,1758,1 +23802,978273,30,1534,1 +23803,978288,196,9850,1 +23804,978288,54,2740,1 +23805,978288,171,8565,1 +23806,978288,190,9535,1 +23807,978297,68,3405,1 +23808,978297,161,8063,1 +23809,978298,52,2641,1 +23810,978300,69,3470,1 +23811,978301,195,9751,1 +23812,978309,21,1058,1 +23813,978317,55,2769,1 +23814,978318,151,7598,1 +23815,978330,5,280,1 +23816,978336,167,8363,1 +23817,978360,148,7442,1 +23818,978366,30,1502,1 +23819,978375,125,6280,1 +23820,978413,133,6666,1 +23821,978472,42,2129,1 +23822,978720,148,7420,1 +23823,978720,85,4272,1 +23824,978729,155,7785,1 +23825,978736,60,3010,1 +23826,978744,121,6085,1 +23827,978750,77,3889,1 +23828,978763,21,1066,1 +23829,978769,0,31,1 +23830,978774,68,3424,1 +23831,978780,21,1080,1 +23832,978795,7,358,1 +23833,978927,98,4930,1 +23834,979200,131,6572,1 +23835,979200,97,4857,1 +23836,979201,157,7870,1 +23837,979209,175,8761,1 +23838,979211,21,1076,1 +23839,979214,59,2999,1 +23840,979219,148,7436,1 +23841,979224,167,8385,1 +23842,979224,109,5485,1 +23843,979227,162,8140,1 +23844,979233,172,8649,1 +23845,979236,142,7113,1 +23846,979236,157,7856,1 +23847,979248,113,5700,1 +23848,979248,81,4082,1 +23849,979249,168,8447,1 +23850,979252,66,3308,1 +23851,979261,121,6080,1 +23852,979263,71,3580,1 +23853,979270,30,1519,1 +23854,979272,147,7371,1 +23855,979332,10,505,1 +23856,979447,28,1417,1 +23857,979681,117,5852,1 +23858,979681,16,830,1 +23859,979681,49,2500,1 +23860,979684,7,363,1 +23861,979686,86,4328,1 +23862,979692,185,9254,1 +23863,979692,34,1733,1 +23864,979692,140,7042,1 +23865,979698,105,5286,1 +23866,979704,180,9003,1 +23867,979704,33,1653,1 +23868,979704,136,6801,1 +23869,979714,103,5164,1 +23870,979716,114,5741,1 +23871,979717,10,531,1 +23872,979718,6,310,1 +23873,979755,180,9017,1 +23874,979805,97,4871,1 +23875,980206,62,3147,1 +23876,980280,175,8774,1 +23877,980640,25,1266,1 +23878,980646,165,8297,1 +23879,980649,143,7174,1 +23880,980652,198,9942,1 +23881,980653,87,4365,1 +23882,980656,122,6109,1 +23883,980662,151,7558,1 +23884,980664,90,4508,1 +23885,980671,85,4272,1 +23886,980676,28,1409,1 +23887,980688,16,816,1 +23888,980688,86,4334,1 +23889,980700,133,6670,1 +23890,980702,81,4069,1 +23891,980703,95,4770,1 +23892,980769,125,6260,1 +23893,980811,179,8997,1 +23894,980868,46,2312,1 +23895,981120,164,8221,1 +23896,981120,179,8971,1 +23897,981121,9,464,1 +23898,981126,180,9033,1 +23899,981129,197,9899,1 +23900,981130,176,8849,1 +23901,981132,37,1874,1 +23902,981132,142,7138,1 +23903,981132,64,3240,1 +23904,981132,24,1250,1 +23905,981132,19,958,1 +23906,981133,107,5352,1 +23907,981135,63,3195,1 +23908,981138,179,8997,1 +23909,981144,42,2115,1 +23910,981156,78,3918,1 +23911,981156,53,2667,1 +23912,981156,133,6670,1 +23913,981157,69,3495,1 +23914,981168,38,1916,1 +23915,981168,100,5013,1 +23916,981168,158,7950,1 +23917,981168,66,3301,1 +23918,981177,179,8978,1 +23919,981180,123,6168,1 +23920,981180,74,3721,1 +23921,981181,192,9602,1 +23922,981182,39,1967,1 +23923,981193,194,9728,1 +23924,981195,15,796,1 +23925,981195,80,4031,1 +23926,981195,35,1753,1 +23927,981222,169,8466,1 +23928,981242,181,9077,1 +23929,981246,190,9501,1 +23930,981270,110,5529,1 +23931,981612,13,692,1 +23932,981612,169,8491,1 +23933,981613,66,3349,1 +23934,981636,47,2383,1 +23935,981677,10,550,1 +23936,981768,106,5307,1 +23937,982080,124,6212,1 +23938,982080,52,2628,1 +23939,982092,139,6961,1 +23940,982093,0,30,1 +23941,982100,95,4754,1 +23942,982104,15,794,1 +23943,982107,129,6479,1 +23944,982116,88,4419,1 +23945,982116,147,7384,1 +23946,982119,95,4790,1 +23947,982119,24,1206,1 +23948,982128,184,9212,1 +23949,982135,104,5218,1 +23950,982137,25,1273,1 +23951,982152,197,9861,1 +23952,982158,157,7878,1 +23953,982212,2,128,1 +23954,982212,49,2487,1 +23955,982215,150,7550,1 +23956,982272,155,7781,1 +23957,982575,93,4685,1 +23958,982620,61,3059,1 +23959,982621,138,6901,1 +23960,983052,109,5470,1 +23961,983532,0,16,1 +23962,983552,115,5794,1 +23963,983558,131,6585,1 +23964,984000,24,1250,1 +23965,984000,193,9654,1 +23966,984012,195,9755,1 +23967,984012,65,3286,1 +23968,984015,156,7808,1 +23969,984016,136,6847,1 +23970,984024,106,5313,1 +23971,984024,105,5271,1 +23972,984045,35,1790,1 +23973,984050,20,1013,1 +23974,984060,29,1483,1 +23975,984061,157,7878,1 +23976,984072,144,7237,1 +23977,984099,124,6210,1 +23978,984108,190,9506,1 +23979,984482,23,1182,1 +23980,984482,51,2578,1 +23981,984510,127,6357,1 +23982,984750,34,1701,1 +23983,984960,152,7602,1 +23984,984960,146,7324,1 +23985,984972,142,7124,1 +23986,984996,197,9879,1 +23987,985000,3,171,1 +23988,985050,172,8613,1 +23989,985482,184,9209,1 +23990,985548,189,9474,1 +23991,985920,17,872,1 +23992,985920,97,4884,1 +23993,985920,46,2309,1 +23994,985922,83,4161,1 +23995,985923,104,5230,1 +23996,985923,54,2738,1 +23997,985932,46,2315,1 +23998,985933,87,4353,1 +23999,985935,127,6398,1 +24000,985935,134,6714,1 +24001,985941,130,6544,1 +24002,985944,164,8212,1 +24003,985944,144,7218,1 +24004,985944,95,4783,1 +24005,985944,131,6564,1 +24006,985945,166,8305,1 +24007,985947,77,3898,1 +24008,985950,48,2424,1 +24009,985956,30,1523,1 +24010,985956,51,2574,1 +24011,985956,25,1274,1 +24012,985956,148,7440,1 +24013,985968,168,8444,1 +24014,985970,40,2001,1 +24015,985971,140,7001,1 +24016,985972,165,8290,1 +24017,985981,45,2285,1 +24018,985981,114,5740,1 +24019,985992,105,5268,1 +24020,985992,171,8599,1 +24021,985992,161,8062,1 +24022,985992,184,9205,1 +24023,985993,109,5473,1 +24024,986002,106,5347,1 +24025,986004,107,5374,1 +24026,986008,81,4076,1 +24027,986010,73,3665,1 +24028,986019,190,9508,1 +24029,986029,146,7308,1 +24030,986065,57,2877,1 +24031,986400,189,9458,1 +24032,986400,72,3625,1 +24033,986400,180,9021,1 +24034,986400,95,4751,1 +24035,986406,174,8739,1 +24036,986409,159,7953,1 +24037,986412,5,279,1 +24038,986421,89,4472,1 +24039,986425,174,8705,1 +24040,986425,104,5223,1 +24041,986436,182,9108,1 +24042,986439,151,7554,1 +24043,986449,4,234,1 +24044,986451,121,6084,1 +24045,986451,53,2656,1 +24046,986459,146,7341,1 +24047,986459,47,2375,1 +24048,986461,116,5844,1 +24049,986497,57,2880,1 +24050,986508,152,7645,1 +24051,986592,33,1652,1 +24052,986617,179,8989,1 +24053,986676,70,3510,1 +24054,986724,101,5053,1 +24055,986880,151,7558,1 +24056,986883,22,1113,1 +24057,986883,72,3608,1 +24058,986889,0,44,1 +24059,986895,79,3980,1 +24060,986896,94,4739,1 +24061,986898,180,9033,1 +24062,986901,36,1838,1 +24063,986902,15,756,1 +24064,986904,124,6221,1 +24065,986904,139,6980,1 +24066,986915,39,2000,1 +24067,986916,4,211,1 +24068,986917,147,7380,1 +24069,986918,176,8803,1 +24070,986926,103,5195,1 +24071,986928,139,6953,1 +24072,986928,54,2739,1 +24073,986942,55,2772,1 +24074,986952,34,1750,1 +24075,986952,126,6320,1 +24076,986962,112,5611,1 +24077,986985,59,2978,1 +24078,986991,199,9961,1 +24079,986995,118,5942,1 +24080,987002,121,6078,1 +24081,987007,169,8469,1 +24082,987013,172,8645,1 +24083,987015,60,3016,1 +24084,987019,85,4295,1 +24085,987073,63,3192,1 +24086,987084,170,8518,1 +24087,987408,125,6286,1 +24088,987470,11,598,1 +24089,987504,84,4231,1 +24090,987840,47,2380,1 +24091,987846,78,3917,1 +24092,987849,154,7715,1 +24093,987993,187,9393,1 +24094,988320,142,7142,1 +24095,988320,194,9717,1 +24096,988320,22,1105,1 +24097,988321,150,7510,1 +24098,988323,112,5645,1 +24099,988339,185,9279,1 +24100,988353,76,3832,1 +24101,988368,9,495,1 +24102,988368,132,6604,1 +24103,988370,12,611,1 +24104,988381,124,6243,1 +24105,988383,39,1985,1 +24106,988383,166,8317,1 +24107,988386,30,1503,1 +24108,988404,120,6014,1 +24109,988404,88,4410,1 +24110,988405,146,7342,1 +24111,988428,75,3800,1 +24112,988432,36,1828,1 +24113,988434,57,2869,1 +24114,988446,51,2561,1 +24115,988453,176,8824,1 +24116,988480,190,9527,1 +24117,988572,175,8793,1 +24118,988800,15,793,1 +24119,988800,172,8637,1 +24120,988812,16,847,1 +24121,988812,172,8619,1 +24122,988812,187,9397,1 +24123,988813,176,8802,1 +24124,988825,143,7166,1 +24125,988827,113,5673,1 +24126,988831,108,5437,1 +24127,988836,55,2782,1 +24128,988863,137,6890,1 +24129,988909,112,5638,1 +24130,988932,172,8612,1 +24131,988944,64,3214,1 +24132,989760,141,7051,1 +24133,989760,150,7520,1 +24134,989760,80,4034,1 +24135,989760,94,4743,1 +24136,989760,29,1459,1 +24137,989760,98,4944,1 +24138,989760,73,3692,1 +24139,989760,146,7329,1 +24140,989760,154,7740,1 +24141,989761,69,3452,1 +24142,989761,145,7297,1 +24143,989762,140,7025,1 +24144,989763,116,5817,1 +24145,989764,4,206,1 +24146,989766,112,5601,1 +24147,989766,37,1872,1 +24148,989767,106,5328,1 +24149,989768,37,1881,1 +24150,989769,109,5484,1 +24151,989770,5,275,1 +24152,989772,143,7157,1 +24153,989772,88,4426,1 +24154,989772,18,943,1 +24155,989772,22,1133,1 +24156,989773,139,6979,1 +24157,989773,22,1146,1 +24158,989773,100,5050,1 +24159,989773,140,7050,1 +24160,989778,62,3134,1 +24161,989781,180,9044,1 +24162,989781,115,5773,1 +24163,989781,155,7795,1 +24164,989784,185,9294,1 +24165,989784,154,7725,1 +24166,989784,97,4891,1 +24167,989785,81,4065,1 +24168,989790,186,9342,1 +24169,989791,28,1412,1 +24170,989796,74,3724,1 +24171,989796,35,1782,1 +24172,989796,66,3320,1 +24173,989796,12,636,1 +24174,989796,13,675,1 +24175,989796,42,2113,1 +24176,989797,185,9289,1 +24177,989800,9,473,1 +24178,989802,93,4675,1 +24179,989802,62,3121,1 +24180,989802,38,1942,1 +24181,989803,37,1892,1 +24182,989805,62,3132,1 +24183,989807,69,3487,1 +24184,989807,20,1039,1 +24185,989808,17,872,1 +24186,989808,72,3642,1 +24187,989808,129,6487,1 +24188,989809,150,7529,1 +24189,989809,96,4808,1 +24190,989810,100,5035,1 +24191,989811,35,1768,1 +24192,989816,138,6950,1 +24193,989821,32,1632,1 +24194,989821,110,5544,1 +24195,989829,92,4626,1 +24196,989829,84,4249,1 +24197,989830,110,5504,1 +24198,989832,40,2002,1 +24199,989832,72,3629,1 +24200,989841,81,4066,1 +24201,989843,139,6977,1 +24202,989844,120,6008,1 +24203,989845,132,6634,1 +24204,989845,97,4871,1 +24205,989856,132,6619,1 +24206,989856,90,4535,1 +24207,989860,85,4268,1 +24208,989865,187,9364,1 +24209,989868,78,3916,1 +24210,989871,31,1588,1 +24211,989871,198,9929,1 +24212,989874,42,2140,1 +24213,989892,159,7988,1 +24214,990000,122,6135,1 +24215,990012,164,8225,1 +24216,990241,44,2235,1 +24217,990242,171,8594,1 +24218,990247,81,4071,1 +24219,990252,58,2913,1 +24220,990253,70,3505,1 +24221,990264,159,7996,1 +24222,990264,23,1190,1 +24223,990267,45,2290,1 +24224,990268,187,9398,1 +24225,990276,35,1781,1 +24226,990324,95,4772,1 +24227,990372,21,1073,1 +24228,991300,146,7339,1 +24229,991687,138,6912,1 +24230,991716,182,9116,1 +24231,991769,31,1551,1 +24232,992160,154,7703,1 +24233,992161,91,4569,1 +24234,992164,33,1685,1 +24235,992167,89,4459,1 +24236,992172,181,9084,1 +24237,992172,133,6681,1 +24238,992180,80,4023,1 +24239,992183,89,4491,1 +24240,992185,0,7,1 +24241,992191,118,5927,1 +24242,992202,30,1504,1 +24243,992205,187,9388,1 +24244,992220,115,5781,1 +24245,992221,61,3061,1 +24246,992232,166,8337,1 +24247,992244,26,1325,1 +24248,992257,174,8716,1 +24249,992258,110,5505,1 +24250,992259,11,568,1 +24251,992283,77,3894,1 +24252,992306,180,9039,1 +24253,992652,134,6734,1 +24254,992653,143,7193,1 +24255,992653,185,9253,1 +24256,992680,111,5569,1 +24257,992724,184,9234,1 +24258,992811,188,9403,1 +24259,992851,91,4566,1 +24260,993145,66,3321,1 +24261,993600,119,5982,1 +24262,993601,7,352,1 +24263,993604,69,3477,1 +24264,993612,155,7780,1 +24265,993613,108,5449,1 +24266,993621,111,5599,1 +24267,993625,153,7700,1 +24268,993627,185,9275,1 +24269,993627,154,7701,1 +24270,993673,118,5925,1 +24271,993673,8,406,1 +24272,993768,51,2556,1 +24273,994080,151,7561,1 +24274,994092,39,1996,1 +24275,994093,190,9522,1 +24276,994095,32,1637,1 +24277,994095,25,1279,1 +24278,994105,22,1115,1 +24279,994117,38,1907,1 +24280,994119,27,1356,1 +24281,994142,122,6140,1 +24282,994164,179,8959,1 +24283,994176,47,2388,1 +24284,994195,58,2945,1 +24285,994238,183,9158,1 +24286,995052,73,3695,1 +24287,995054,1,68,1 +24288,995056,199,9973,1 +24289,995118,153,7697,1 +24290,995250,185,9286,1 +24291,995520,53,2677,1 +24292,995527,178,8936,1 +24293,995530,175,8794,1 +24294,995540,159,7978,1 +24295,995544,132,6607,1 +24296,995545,14,730,1 +24297,995545,69,3481,1 +24298,995568,70,3520,1 +24299,995580,86,4331,1 +24300,995604,4,240,1 +24301,995616,187,9357,1 +24302,995629,5,293,1 +24303,995652,179,8984,1 +24304,996013,146,7331,1 +24305,996018,39,1963,1 +24306,996044,138,6943,1 +24307,996052,180,9032,1 +24308,996060,181,9080,1 +24309,996084,15,772,1 +24310,996096,88,4413,1 +24311,996207,191,9555,1 +24312,996492,120,6021,1 +24313,996961,150,7507,1 +24314,996970,104,5240,1 +24315,996973,52,2638,1 +24316,996984,70,3542,1 +24317,996984,108,5434,1 +24318,996984,181,9062,1 +24319,996986,65,3289,1 +24320,996987,30,1519,1 +24321,997008,112,5628,1 +24322,997014,127,6379,1 +24323,997032,102,5128,1 +24324,997032,82,4149,1 +24325,997044,133,6673,1 +24326,997054,40,2010,1 +24327,997065,67,3364,1 +24328,997116,89,4494,1 +24329,997173,180,9014,1 +24330,997440,77,3865,1 +24331,997440,116,5832,1 +24332,997441,153,7656,1 +24333,997452,70,3535,1 +24334,997476,87,4380,1 +24335,997478,90,4523,1 +24336,997512,29,1469,1 +24337,997526,101,5053,1 +24338,997920,163,8199,1 +24339,997921,88,4440,1 +24340,997922,20,1041,1 +24341,997923,158,7935,1 +24342,997924,67,3360,1 +24343,997925,61,3074,1 +24344,997927,166,8315,1 +24345,997929,125,6295,1 +24346,997932,185,9268,1 +24347,997932,62,3111,1 +24348,997933,91,4582,1 +24349,997933,113,5696,1 +24350,997944,61,3093,1 +24351,997945,179,8992,1 +24352,997946,190,9508,1 +24353,997946,96,4834,1 +24354,997947,60,3003,1 +24355,997953,48,2447,1 +24356,997956,3,196,1 +24357,997956,27,1383,1 +24358,997956,11,585,1 +24359,997957,106,5318,1 +24360,997957,98,4915,1 +24361,997958,7,351,1 +24362,997968,45,2288,1 +24363,997968,153,7658,1 +24364,997968,175,8775,1 +24365,997969,37,1888,1 +24366,997971,133,6666,1 +24367,997974,82,4103,1 +24368,997980,38,1907,1 +24369,997980,79,3972,1 +24370,997983,77,3885,1 +24371,997992,85,4254,1 +24372,998019,38,1904,1 +24373,998026,84,4225,1 +24374,998028,136,6839,1 +24375,998031,124,6245,1 +24376,998040,185,9284,1 +24377,998077,197,9884,1 +24378,998082,65,3264,1 +24379,998088,131,6579,1 +24380,998157,102,5128,1 +24381,998400,24,1241,1 +24382,998406,57,2869,1 +24383,998412,28,1449,1 +24384,998425,174,8730,1 +24385,998436,65,3282,1 +24386,998451,181,9092,1 +24387,998472,196,9828,1 +24388,998497,61,3082,1 +24389,998499,74,3734,1 +24390,998526,15,762,1 +24391,998568,140,7029,1 +24392,999374,192,9623,1 +24393,999423,165,8275,1 +24394,999444,131,6567,1 +24395,999517,66,3337,1 +24396,999537,171,8591,1 +24397,999636,118,5942,1 +24398,999841,155,7786,1 +24399,999841,113,5656,1 +24400,999853,15,777,1 +24401,999858,173,8695,1 +24402,999878,32,1624,1 +24403,999900,81,4080,1 +24404,999912,131,6591,1 +24405,999993,88,4412,1 +24406,999996,119,5993,1 +24407,1000347,176,8826,1 +24408,1000368,78,3930,1 +24409,1000380,173,8666,1 +24410,1000429,11,585,1 +24411,1000805,189,9488,1 +24412,1000812,97,4891,1 +24413,1000822,97,4863,1 +24414,1001304,37,1855,1 +24415,1001328,11,589,1 +24416,1001355,138,6924,1 +24417,1001376,122,6128,1 +24418,1001472,136,6844,1 +24419,1001487,128,6443,1 +24420,1001760,178,8926,1 +24421,1001760,15,752,1 +24422,1001763,122,6148,1 +24423,1001763,51,2597,1 +24424,1001772,147,7369,1 +24425,1001775,65,3252,1 +24426,1001778,6,316,1 +24427,1001784,5,281,1 +24428,1001784,30,1528,1 +24429,1001785,153,7667,1 +24430,1001785,177,8900,1 +24431,1001786,29,1460,1 +24432,1001796,37,1876,1 +24433,1001808,4,238,1 +24434,1001832,13,674,1 +24435,1001856,101,5069,1 +24436,1001868,189,9485,1 +24437,1001952,92,4612,1 +24438,1002025,128,6415,1 +24439,1002241,116,5847,1 +24440,1002250,60,3022,1 +24441,1002252,17,862,1 +24442,1002253,124,6248,1 +24443,1002253,182,9140,1 +24444,1002255,15,757,1 +24445,1002261,167,8392,1 +24446,1002264,154,7703,1 +24447,1002264,11,574,1 +24448,1002266,136,6805,1 +24449,1002268,41,2077,1 +24450,1002276,43,2156,1 +24451,1002282,149,7458,1 +24452,1002282,89,4496,1 +24453,1002289,180,9028,1 +24454,1002294,174,8731,1 +24455,1002300,171,8598,1 +24456,1002302,124,6238,1 +24457,1002303,42,2144,1 +24458,1002312,68,3437,1 +24459,1002313,180,9026,1 +24460,1002324,58,2931,1 +24461,1002351,3,171,1 +24462,1002360,69,3492,1 +24463,1002360,151,7559,1 +24464,1002433,146,7314,1 +24465,1002444,99,4980,1 +24466,1002720,24,1228,1 +24467,1002744,92,4640,1 +24468,1002768,155,7785,1 +24469,1002840,37,1881,1 +24470,1003285,63,3168,1 +24471,1003312,165,8273,1 +24472,1003368,134,6702,1 +24473,1003680,118,5907,1 +24474,1003680,84,4229,1 +24475,1003680,96,4832,1 +24476,1003683,47,2397,1 +24477,1003689,70,3535,1 +24478,1003692,145,7294,1 +24479,1003692,16,842,1 +24480,1003695,131,6568,1 +24481,1003695,106,5340,1 +24482,1003696,68,3439,1 +24483,1003704,44,2240,1 +24484,1003704,164,8234,1 +24485,1003711,145,7261,1 +24486,1003716,52,2649,1 +24487,1003716,46,2336,1 +24488,1003716,97,4860,1 +24489,1003717,77,3891,1 +24490,1003717,149,7495,1 +24491,1003717,150,7538,1 +24492,1003728,159,7967,1 +24493,1003741,5,283,1 +24494,1003764,77,3866,1 +24495,1003764,96,4842,1 +24496,1003765,175,8781,1 +24497,1003774,55,2781,1 +24498,1003777,0,33,1 +24499,1003788,60,3001,1 +24500,1003801,91,4568,1 +24501,1003836,50,2527,1 +24502,1003884,1,92,1 +24503,1004160,109,5464,1 +24504,1004160,198,9918,1 +24505,1004164,103,5153,1 +24506,1004172,62,3120,1 +24507,1004173,174,8724,1 +24508,1004184,163,8193,1 +24509,1004197,195,9754,1 +24510,1004220,148,7432,1 +24511,1004220,97,4865,1 +24512,1004249,110,5531,1 +24513,1004284,152,7622,1 +24514,1004676,83,4184,1 +24515,1004704,196,9814,1 +24516,1005600,74,3737,1 +24517,1005601,182,9143,1 +24518,1005612,35,1756,1 +24519,1005613,83,4151,1 +24520,1005614,53,2678,1 +24521,1005615,98,4947,1 +24522,1005619,95,4754,1 +24523,1005624,44,2249,1 +24524,1005627,117,5860,1 +24525,1005628,95,4780,1 +24526,1005630,169,8470,1 +24527,1005636,193,9687,1 +24528,1005637,124,6223,1 +24529,1005648,183,9172,1 +24530,1005651,28,1428,1 +24531,1005654,75,3773,1 +24532,1005661,4,217,1 +24533,1005673,47,2355,1 +24534,1005684,52,2625,1 +24535,1005708,126,6323,1 +24536,1005711,176,8823,1 +24537,1005735,71,3556,1 +24538,1005770,96,4826,1 +24539,1006083,116,5837,1 +24540,1006093,44,2249,1 +24541,1006146,79,3985,1 +24542,1006198,182,9132,1 +24543,1006254,38,1917,1 +24544,1006593,68,3425,1 +24545,1006654,137,6894,1 +24546,1006692,134,6735,1 +24547,1007532,8,413,1 +24548,1007532,170,8527,1 +24549,1007544,124,6242,1 +24550,1007557,48,2441,1 +24551,1007568,10,513,1 +24552,1007581,131,6590,1 +24553,1007604,57,2867,1 +24554,1007628,156,7827,1 +24555,1008001,85,4280,1 +24556,1008039,26,1347,1 +24557,1008072,61,3059,1 +24558,1008480,46,2313,1 +24559,1008481,95,4781,1 +24560,1008493,107,5387,1 +24561,1008493,147,7371,1 +24562,1008517,157,7895,1 +24563,1008535,181,9083,1 +24564,1008537,136,6821,1 +24565,1008540,138,6944,1 +24566,1008549,198,9915,1 +24567,1008576,47,2353,1 +24568,1008961,67,3363,1 +24569,1008969,21,1090,1 +24570,1008972,123,6198,1 +24571,1008972,51,2586,1 +24572,1008978,48,2405,1 +24573,1008997,194,9724,1 +24574,1009041,181,9081,1 +24575,1009099,61,3071,1 +24576,1009180,62,3119,1 +24577,1009441,100,5032,1 +24578,1009464,81,4096,1 +24579,1009498,55,2791,1 +24580,1009524,5,285,1 +24581,1009572,91,4596,1 +24582,1009929,143,7187,1 +24583,1009956,22,1128,1 +24584,1010400,192,9613,1 +24585,1010400,27,1361,1 +24586,1010401,166,8303,1 +24587,1010404,143,7199,1 +24588,1010409,94,4723,1 +24589,1010412,181,9083,1 +24590,1010413,25,1299,1 +24591,1010420,108,5415,1 +24592,1010443,192,9616,1 +24593,1010445,63,3155,1 +24594,1010460,16,848,1 +24595,1010460,160,8023,1 +24596,1010526,57,2857,1 +24597,1010535,181,9063,1 +24598,1010547,44,2228,1 +24599,1010886,38,1905,1 +24600,1010892,159,7952,1 +24601,1010898,26,1308,1 +24602,1010902,5,288,1 +24603,1010904,150,7549,1 +24604,1010904,150,7531,1 +24605,1010943,132,6601,1 +24606,1010947,15,770,1 +24607,1010952,178,8901,1 +24608,1011373,65,3293,1 +24609,1011374,28,1410,1 +24610,1011378,173,8692,1 +24611,1011381,6,304,1 +24612,1011401,166,8330,1 +24613,1011432,85,4283,1 +24614,1011456,68,3419,1 +24615,1011459,142,7137,1 +24616,1011549,42,2140,1 +24617,1011843,161,8072,1 +24618,1011852,68,3417,1 +24619,1011855,26,1315,1 +24620,1011878,103,5174,1 +24621,1011897,172,8610,1 +24622,1011912,99,4973,1 +24623,1011924,36,1830,1 +24624,1011936,137,6890,1 +24625,1011939,117,5877,1 +24626,1012323,58,2907,1 +24627,1012332,109,5482,1 +24628,1012332,184,9240,1 +24629,1012334,174,8713,1 +24630,1012344,162,8104,1 +24631,1012356,3,183,1 +24632,1012380,103,5183,1 +24633,1012380,115,5782,1 +24634,1012380,55,2792,1 +24635,1012399,51,2596,1 +24636,1012413,117,5878,1 +24637,1012418,0,39,1 +24638,1012453,48,2432,1 +24639,1012499,132,6623,1 +24640,1012500,180,9042,1 +24641,1012500,160,8048,1 +24642,1012539,84,4225,1 +24643,1012540,55,2796,1 +24644,1012800,51,2597,1 +24645,1012800,68,3445,1 +24646,1012801,74,3714,1 +24647,1012802,19,964,1 +24648,1012812,68,3429,1 +24649,1012825,178,8905,1 +24650,1012826,169,8480,1 +24651,1012830,84,4221,1 +24652,1012836,147,7368,1 +24653,1012842,45,2262,1 +24654,1012845,113,5666,1 +24655,1012853,165,8288,1 +24656,1012854,119,5996,1 +24657,1012869,138,6949,1 +24658,1012886,143,7180,1 +24659,1012899,138,6911,1 +24660,1013027,105,5267,1 +24661,1013760,73,3665,1 +24662,1013761,4,227,1 +24663,1013762,189,9451,1 +24664,1013766,162,8110,1 +24665,1013772,122,6104,1 +24666,1013784,105,5287,1 +24667,1013784,184,9222,1 +24668,1013786,105,5289,1 +24669,1013786,141,7051,1 +24670,1013799,76,3834,1 +24671,1013839,132,6618,1 +24672,1013847,67,3382,1 +24673,1013937,16,808,1 +24674,1014240,44,2202,1 +24675,1014243,134,6712,1 +24676,1014246,74,3701,1 +24677,1014336,183,9158,1 +24678,1014348,56,2816,1 +24679,1014358,134,6716,1 +24680,1014415,190,9503,1 +24681,1014721,125,6264,1 +24682,1014729,2,108,1 +24683,1014744,53,2689,1 +24684,1014744,195,9779,1 +24685,1014745,158,7920,1 +24686,1014762,67,3371,1 +24687,1014781,14,750,1 +24688,1014792,12,635,1 +24689,1014876,196,9817,1 +24690,1015213,85,4294,1 +24691,1015680,128,6410,1 +24692,1015680,50,2532,1 +24693,1015694,182,9133,1 +24694,1015695,196,9847,1 +24695,1015697,81,4054,1 +24696,1015704,195,9799,1 +24697,1015705,184,9201,1 +24698,1015738,176,8824,1 +24699,1015747,20,1050,1 +24700,1015752,51,2571,1 +24701,1015755,78,3923,1 +24702,1015768,127,6366,1 +24703,1015800,0,18,1 +24704,1015824,78,3919,1 +24705,1015860,134,6739,1 +24706,1016160,59,2974,1 +24707,1016163,132,6631,1 +24708,1016167,33,1696,1 +24709,1016169,85,4300,1 +24710,1016173,46,2331,1 +24711,1016184,169,8482,1 +24712,1016184,3,178,1 +24713,1016211,137,6884,1 +24714,1016218,122,6127,1 +24715,1016220,130,6536,1 +24716,1016222,98,4911,1 +24717,1016244,47,2366,1 +24718,1016292,195,9773,1 +24719,1016301,70,3538,1 +24720,1016640,35,1796,1 +24721,1016641,26,1309,1 +24722,1016646,172,8618,1 +24723,1016649,54,2729,1 +24724,1016658,193,9680,1 +24725,1016681,135,6773,1 +24726,1016688,93,4673,1 +24727,1016689,125,6278,1 +24728,1016703,199,9966,1 +24729,1016810,17,860,1 +24730,1017600,164,8237,1 +24731,1017603,79,3958,1 +24732,1017612,48,2408,1 +24733,1017612,31,1569,1 +24734,1017624,178,8931,1 +24735,1017626,31,1597,1 +24736,1017634,5,297,1 +24737,1017636,118,5936,1 +24738,1017637,107,5381,1 +24739,1017638,182,9109,1 +24740,1017649,12,601,1 +24741,1017660,139,6979,1 +24742,1017664,44,2230,1 +24743,1017673,47,2392,1 +24744,1017678,11,573,1 +24745,1017678,96,4813,1 +24746,1017684,47,2389,1 +24747,1017696,50,2510,1 +24748,1017699,35,1756,1 +24749,1017744,30,1516,1 +24750,1017821,37,1893,1 +24751,1018080,70,3536,1 +24752,1018080,78,3917,1 +24753,1018081,34,1708,1 +24754,1018082,34,1743,1 +24755,1018086,174,8747,1 +24756,1018089,67,3376,1 +24757,1018092,173,8658,1 +24758,1018097,170,8524,1 +24759,1018116,2,144,1 +24760,1018128,90,4538,1 +24761,1018140,78,3932,1 +24762,1018150,172,8632,1 +24763,1018153,96,4816,1 +24764,1018182,58,2915,1 +24765,1018185,142,7149,1 +24766,1018212,193,9681,1 +24767,1018560,127,6383,1 +24768,1018560,174,8721,1 +24769,1018572,27,1371,1 +24770,1018578,61,3056,1 +24771,1018584,101,5099,1 +24772,1018584,14,747,1 +24773,1018588,121,6053,1 +24774,1018603,149,7471,1 +24775,1018608,153,7689,1 +24776,1018608,189,9491,1 +24777,1018615,74,3713,1 +24778,1018812,71,3558,1 +24779,1019076,185,9293,1 +24780,1019103,11,552,1 +24781,1020000,65,3256,1 +24782,1020000,183,9181,1 +24783,1020000,161,8067,1 +24784,1020000,127,6394,1 +24785,1020000,88,4429,1 +24786,1020000,128,6440,1 +24787,1020003,145,7290,1 +24788,1020008,98,4920,1 +24789,1020012,1,54,1 +24790,1020012,154,7710,1 +24791,1020012,171,8553,1 +24792,1020013,111,5593,1 +24793,1020014,51,2567,1 +24794,1020016,184,9222,1 +24795,1020020,155,7760,1 +24796,1020024,123,6186,1 +24797,1020027,154,7702,1 +24798,1020032,64,3250,1 +24799,1020041,33,1689,1 +24800,1020048,188,9401,1 +24801,1020048,192,9634,1 +24802,1020049,196,9813,1 +24803,1020051,112,5625,1 +24804,1020072,107,5380,1 +24805,1020109,43,2155,1 +24806,1020168,0,21,1 +24807,1020192,192,9633,1 +24808,1020480,110,5502,1 +24809,1020480,25,1259,1 +24810,1020492,34,1706,1 +24811,1020495,68,3422,1 +24812,1020498,40,2004,1 +24813,1020508,63,3185,1 +24814,1020510,52,2602,1 +24815,1020517,69,3482,1 +24816,1020528,126,6321,1 +24817,1020552,57,2875,1 +24818,1020577,20,1006,1 +24819,1020603,142,7136,1 +24820,1020663,150,7546,1 +24821,1021035,193,9672,1 +24822,1021477,54,2721,1 +24823,1021920,78,3906,1 +24824,1021921,99,4964,1 +24825,1021921,166,8321,1 +24826,1021929,95,4788,1 +24827,1021932,73,3670,1 +24828,1021932,188,9424,1 +24829,1021933,109,5464,1 +24830,1021935,5,253,1 +24831,1021945,18,913,1 +24832,1021956,87,4391,1 +24833,1021956,148,7435,1 +24834,1021958,46,2301,1 +24835,1021962,24,1204,1 +24836,1021968,91,4587,1 +24837,1021968,60,3037,1 +24838,1021969,85,4299,1 +24839,1021995,195,9787,1 +24840,1022004,113,5685,1 +24841,1022007,90,4546,1 +24842,1022017,167,8393,1 +24843,1022019,117,5863,1 +24844,1022019,184,9230,1 +24845,1022030,115,5763,1 +24846,1022109,38,1917,1 +24847,1022138,19,985,1 +24848,1022186,145,7263,1 +24849,1022400,129,6464,1 +24850,1022400,58,2905,1 +24851,1022409,113,5660,1 +24852,1022412,113,5664,1 +24853,1022412,178,8945,1 +24854,1022412,194,9710,1 +24855,1022412,25,1252,1 +24856,1022413,101,5076,1 +24857,1022417,47,2379,1 +24858,1022421,58,2911,1 +24859,1022421,60,3009,1 +24860,1022421,38,1926,1 +24861,1022424,9,461,1 +24862,1022430,123,6151,1 +24863,1022436,168,8415,1 +24864,1022436,175,8796,1 +24865,1022444,196,9838,1 +24866,1022466,147,7356,1 +24867,1022469,92,4628,1 +24868,1022472,108,5430,1 +24869,1022472,18,912,1 +24870,1022473,13,669,1 +24871,1022475,8,436,1 +24872,1022510,181,9073,1 +24873,1022518,64,3244,1 +24874,1022532,45,2270,1 +24875,1022544,137,6890,1 +24876,1022544,54,2733,1 +24877,1022880,0,15,1 +24878,1022881,199,9966,1 +24879,1022881,46,2348,1 +24880,1022898,179,8992,1 +24881,1022901,5,287,1 +24882,1022904,192,9620,1 +24883,1022904,117,5900,1 +24884,1022910,149,7462,1 +24885,1022911,86,4310,1 +24886,1022911,89,4499,1 +24887,1022919,94,4705,1 +24888,1022928,74,3750,1 +24889,1022938,111,5573,1 +24890,1022940,81,4062,1 +24891,1022949,93,4660,1 +24892,1022956,86,4321,1 +24893,1022988,199,9990,1 +24894,1022989,42,2114,1 +24895,1023027,51,2554,1 +24896,1023038,157,7881,1 +24897,1023387,69,3471,1 +24898,1023429,23,1158,1 +24899,1023840,137,6888,1 +24900,1023846,71,3583,1 +24901,1023852,16,845,1 +24902,1023870,87,4358,1 +24903,1023876,99,4989,1 +24904,1023876,96,4832,1 +24905,1023876,121,6064,1 +24906,1023877,81,4057,1 +24907,1023890,133,6691,1 +24908,1024008,77,3895,1 +24909,1025280,129,6475,1 +24910,1025280,110,5531,1 +24911,1025281,105,5272,1 +24912,1025292,107,5395,1 +24913,1025293,165,8296,1 +24914,1025296,115,5767,1 +24915,1025299,8,406,1 +24916,1025301,129,6471,1 +24917,1025323,142,7123,1 +24918,1025390,86,4328,1 +24919,1025406,198,9948,1 +24920,1025796,156,7844,1 +24921,1026252,134,6710,1 +24922,1026300,12,602,1 +24923,1026720,159,7982,1 +24924,1026729,36,1801,1 +24925,1026732,159,7986,1 +24926,1026750,129,6485,1 +24927,1026758,136,6811,1 +24928,1026759,197,9890,1 +24929,1026774,135,6785,1 +24930,1026780,92,4647,1 +24931,1026780,145,7295,1 +24932,1026781,193,9698,1 +24933,1026829,167,8358,1 +24934,1026830,179,8973,1 +24935,1026881,2,131,1 +24936,1026894,124,6215,1 +24937,1026901,35,1777,1 +24938,1026915,128,6423,1 +24939,1027056,137,6874,1 +24940,1027200,165,8280,1 +24941,1027200,173,8692,1 +24942,1027201,98,4910,1 +24943,1027202,73,3692,1 +24944,1027206,178,8923,1 +24945,1027209,61,3064,1 +24946,1027214,85,4300,1 +24947,1027215,149,7464,1 +24948,1027218,84,4205,1 +24949,1027236,183,9184,1 +24950,1027236,102,5112,1 +24951,1027249,27,1376,1 +24952,1027272,47,2363,1 +24953,1027272,67,3386,1 +24954,1027284,89,4454,1 +24955,1027287,102,5142,1 +24956,1027356,44,2215,1 +24957,1027452,73,3692,1 +24958,1027501,180,9049,1 +24959,1027680,40,2041,1 +24960,1027680,163,8184,1 +24961,1027680,112,5626,1 +24962,1027680,84,4210,1 +24963,1027680,93,4698,1 +24964,1027680,166,8318,1 +24965,1027681,56,2821,1 +24966,1027681,187,9365,1 +24967,1027681,181,9066,1 +24968,1027682,47,2381,1 +24969,1027682,12,604,1 +24970,1027684,80,4011,1 +24971,1027687,117,5861,1 +24972,1027689,25,1285,1 +24973,1027689,121,6097,1 +24974,1027689,160,8024,1 +24975,1027690,1,76,1 +24976,1027692,79,3997,1 +24977,1027692,165,8266,1 +24978,1027692,136,6835,1 +24979,1027692,87,4397,1 +24980,1027692,151,7557,1 +24981,1027693,15,760,1 +24982,1027693,132,6631,1 +24983,1027695,99,4984,1 +24984,1027701,179,8958,1 +24985,1027704,113,5668,1 +24986,1027704,128,6443,1 +24987,1027704,123,6182,1 +24988,1027705,91,4556,1 +24989,1027705,68,3406,1 +24990,1027705,187,9399,1 +24991,1027705,67,3378,1 +24992,1027706,136,6826,1 +24993,1027708,97,4860,1 +24994,1027713,144,7246,1 +24995,1027714,128,6406,1 +24996,1027714,177,8873,1 +24997,1027716,19,995,1 +24998,1027716,111,5581,1 +24999,1027717,97,4870,1 +25000,1027724,125,6278,1 +25001,1027725,103,5164,1 +25002,1027728,184,9205,1 +25003,1027728,58,2915,1 +25004,1027728,115,5792,1 +25005,1027728,193,9684,1 +25006,1027729,161,8077,1 +25007,1027731,34,1715,1 +25008,1027737,48,2413,1 +25009,1027737,103,5193,1 +25010,1027740,96,4827,1 +25011,1027740,83,4157,1 +25012,1027740,177,8900,1 +25013,1027740,133,6685,1 +25014,1027741,3,172,1 +25015,1027746,91,4557,1 +25016,1027749,107,5390,1 +25017,1027749,151,7569,1 +25018,1027752,168,8419,1 +25019,1027752,124,6210,1 +25020,1027753,91,4592,1 +25021,1027756,34,1730,1 +25022,1027758,101,5054,1 +25023,1027758,174,8715,1 +25024,1027764,60,3043,1 +25025,1027764,155,7795,1 +25026,1027789,73,3655,1 +25027,1027789,80,4014,1 +25028,1027801,169,8453,1 +25029,1027805,17,895,1 +25030,1027806,170,8532,1 +25031,1027824,18,941,1 +25032,1027826,37,1877,1 +25033,1027851,124,6240,1 +25034,1027860,36,1817,1 +25035,1027861,175,8784,1 +25036,1027872,79,3999,1 +25037,1027884,152,7643,1 +25038,1027885,31,1584,1 +25039,1027898,150,7524,1 +25040,1027932,86,4310,1 +25041,1028160,83,4153,1 +25042,1028184,54,2711,1 +25043,1028643,168,8405,1 +25044,1029192,99,4958,1 +25045,1029615,151,7588,1 +25046,1029618,119,5958,1 +25047,1029664,41,2053,1 +25048,1029792,65,3266,1 +25049,1029867,157,7894,1 +25050,1030080,169,8456,1 +25051,1030089,36,1820,1 +25052,1030089,151,7581,1 +25053,1030092,87,4389,1 +25054,1030092,181,9098,1 +25055,1030093,42,2109,1 +25056,1030095,125,6288,1 +25057,1030101,109,5473,1 +25058,1030104,152,7633,1 +25059,1030104,190,9532,1 +25060,1030107,104,5210,1 +25061,1030116,189,9490,1 +25062,1030116,114,5708,1 +25063,1030116,52,2630,1 +25064,1030117,69,3461,1 +25065,1030137,46,2327,1 +25066,1030140,34,1728,1 +25067,1030140,112,5625,1 +25068,1030140,76,3805,1 +25069,1030560,34,1724,1 +25070,1030561,11,580,1 +25071,1030561,156,7830,1 +25072,1030563,158,7918,1 +25073,1030575,38,1902,1 +25074,1030590,49,2490,1 +25075,1030591,109,5463,1 +25076,1030596,52,2620,1 +25077,1030597,18,949,1 +25078,1030602,0,40,1 +25079,1030605,29,1487,1 +25080,1030622,110,5531,1 +25081,1030644,183,9190,1 +25082,1030644,112,5644,1 +25083,1030644,151,7596,1 +25084,1030645,142,7145,1 +25085,1030653,49,2473,1 +25086,1030657,94,4748,1 +25087,1030657,63,3179,1 +25088,1030687,39,1964,1 +25089,1030932,176,8831,1 +25090,1031172,81,4081,1 +25091,1031199,166,8330,1 +25092,1031233,12,606,1 +25093,1031526,76,3850,1 +25094,1031546,17,851,1 +25095,1031556,69,3480,1 +25096,1031583,18,920,1 +25097,1031685,32,1605,1 +25098,1031883,3,169,1 +25099,1032002,127,6377,1 +25100,1032002,10,550,1 +25101,1032012,93,4682,1 +25102,1032018,150,7506,1 +25103,1032026,34,1745,1 +25104,1032036,35,1800,1 +25105,1032048,143,7171,1 +25106,1032072,196,9809,1 +25107,1032101,123,6168,1 +25108,1032513,168,8409,1 +25109,1032960,135,6798,1 +25110,1032961,17,882,1 +25111,1032964,70,3512,1 +25112,1032978,72,3635,1 +25113,1032979,99,4977,1 +25114,1032981,76,3823,1 +25115,1032984,146,7342,1 +25116,1032984,45,2274,1 +25117,1032984,124,6207,1 +25118,1032985,99,4972,1 +25119,1033006,158,7948,1 +25120,1033008,3,153,1 +25121,1033011,170,8531,1 +25122,1033021,28,1401,1 +25123,1033044,5,272,1 +25124,1033045,74,3721,1 +25125,1033056,70,3547,1 +25126,1033068,192,9627,1 +25127,1033080,141,7097,1 +25128,1033440,53,2684,1 +25129,1033440,128,6408,1 +25130,1033447,62,3139,1 +25131,1033452,63,3184,1 +25132,1033452,50,2518,1 +25133,1033452,153,7692,1 +25134,1033453,80,4045,1 +25135,1033453,118,5941,1 +25136,1033458,102,5110,1 +25137,1033488,9,483,1 +25138,1033513,165,8277,1 +25139,1033539,160,8043,1 +25140,1033540,171,8582,1 +25141,1033543,144,7249,1 +25142,1033545,141,7053,1 +25143,1033560,75,3784,1 +25144,1033572,16,836,1 +25145,1033623,159,7984,1 +25146,1033921,43,2156,1 +25147,1033933,138,6904,1 +25148,1033944,63,3189,1 +25149,1033944,88,4430,1 +25150,1033948,121,6063,1 +25151,1033969,24,1242,1 +25152,1033971,50,2518,1 +25153,1033974,112,5638,1 +25154,1033975,37,1898,1 +25155,1034016,59,2960,1 +25156,1034124,150,7508,1 +25157,1034403,80,4020,1 +25158,1034410,118,5949,1 +25159,1034412,39,1993,1 +25160,1034413,46,2338,1 +25161,1034436,136,6822,1 +25162,1034448,114,5749,1 +25163,1034448,38,1917,1 +25164,1034453,28,1410,1 +25165,1034461,192,9630,1 +25166,1034475,166,8313,1 +25167,1034484,54,2701,1 +25168,1034493,1,99,1 +25169,1034500,160,8002,1 +25170,1034503,158,7915,1 +25171,1034508,38,1905,1 +25172,1034880,164,8208,1 +25173,1034883,26,1303,1 +25174,1034892,81,4099,1 +25175,1034937,116,5825,1 +25176,1034989,111,5556,1 +25177,1035004,101,5096,1 +25178,1035108,190,9535,1 +25179,1035360,85,4261,1 +25180,1035360,166,8349,1 +25181,1035361,156,7810,1 +25182,1035362,105,5299,1 +25183,1035363,1,55,1 +25184,1035372,96,4810,1 +25185,1035372,53,2668,1 +25186,1035372,176,8842,1 +25187,1035378,133,6691,1 +25188,1035384,28,1421,1 +25189,1035420,86,4347,1 +25190,1035444,163,8156,1 +25191,1035445,20,1048,1 +25192,1035450,136,6822,1 +25193,1035453,16,842,1 +25194,1035456,130,6508,1 +25195,1035468,13,696,1 +25196,1035498,94,4722,1 +25197,1035520,4,228,1 +25198,1036011,120,6033,1 +25199,1036332,74,3737,1 +25200,1036332,41,2097,1 +25201,1036333,50,2531,1 +25202,1036347,57,2887,1 +25203,1036381,87,4369,1 +25204,1036800,129,6475,1 +25205,1036800,140,7024,1 +25206,1036800,16,846,1 +25207,1036800,180,9018,1 +25208,1036800,20,1038,1 +25209,1036800,84,4221,1 +25210,1036800,19,991,1 +25211,1036800,151,7566,1 +25212,1036801,3,198,1 +25213,1036801,36,1809,1 +25214,1036801,82,4130,1 +25215,1036802,150,7529,1 +25216,1036803,72,3622,1 +25217,1036803,29,1471,1 +25218,1036803,38,1937,1 +25219,1036803,115,5767,1 +25220,1036806,86,4302,1 +25221,1036807,11,580,1 +25222,1036809,161,8085,1 +25223,1036809,117,5889,1 +25224,1036810,198,9910,1 +25225,1036810,165,8277,1 +25226,1036812,170,8517,1 +25227,1036812,154,7704,1 +25228,1036812,117,5894,1 +25229,1036812,6,334,1 +25230,1036812,54,2719,1 +25231,1036813,121,6056,1 +25232,1036813,154,7723,1 +25233,1036813,126,6347,1 +25234,1036814,60,3031,1 +25235,1036815,116,5832,1 +25236,1036815,74,3730,1 +25237,1036815,113,5659,1 +25238,1036816,70,3532,1 +25239,1036818,85,4278,1 +25240,1036822,179,8960,1 +25241,1036822,113,5697,1 +25242,1036824,186,9342,1 +25243,1036824,67,3396,1 +25244,1036824,55,2793,1 +25245,1036824,99,4994,1 +25246,1036824,130,6502,1 +25247,1036824,3,151,1 +25248,1036825,166,8349,1 +25249,1036825,59,2965,1 +25250,1036826,92,4606,1 +25251,1036827,12,610,1 +25252,1036827,48,2440,1 +25253,1036830,89,4461,1 +25254,1036830,97,4870,1 +25255,1036833,60,3012,1 +25256,1036833,63,3171,1 +25257,1036836,186,9310,1 +25258,1036836,118,5921,1 +25259,1036836,52,2609,1 +25260,1036836,121,6096,1 +25261,1036836,183,9167,1 +25262,1036836,102,5104,1 +25263,1036836,181,9099,1 +25264,1036838,0,40,1 +25265,1036839,38,1938,1 +25266,1036839,36,1850,1 +25267,1036842,196,9836,1 +25268,1036843,178,8923,1 +25269,1036845,7,364,1 +25270,1036848,78,3928,1 +25271,1036848,143,7199,1 +25272,1036848,73,3670,1 +25273,1036853,75,3799,1 +25274,1036859,133,6677,1 +25275,1036860,70,3512,1 +25276,1036867,151,7590,1 +25277,1036872,196,9813,1 +25278,1036875,55,2789,1 +25279,1036884,133,6685,1 +25280,1036884,84,4237,1 +25281,1036884,184,9241,1 +25282,1036885,129,6476,1 +25283,1036887,149,7454,1 +25284,1036897,199,9955,1 +25285,1036899,65,3289,1 +25286,1036911,61,3055,1 +25287,1036915,113,5666,1 +25288,1036916,65,3271,1 +25289,1036920,127,6396,1 +25290,1036921,111,5565,1 +25291,1036921,78,3929,1 +25292,1036924,105,5260,1 +25293,1036932,67,3364,1 +25294,1036939,39,1978,1 +25295,1036944,178,8925,1 +25296,1036948,75,3756,1 +25297,1036956,142,7148,1 +25298,1036968,119,5972,1 +25299,1036968,104,5222,1 +25300,1036975,27,1358,1 +25301,1036980,26,1309,1 +25302,1036995,157,7871,1 +25303,1037029,106,5333,1 +25304,1037029,22,1123,1 +25305,1037065,117,5872,1 +25306,1037067,80,4004,1 +25307,1037293,89,4489,1 +25308,1037808,0,43,1 +25309,1037902,171,8556,1 +25310,1038244,50,2536,1 +25311,1038252,28,1417,1 +25312,1038252,77,3900,1 +25313,1038253,116,5813,1 +25314,1038255,141,7094,1 +25315,1038258,30,1544,1 +25316,1038264,5,263,1 +25317,1038312,102,5146,1 +25318,1038314,65,3259,1 +25319,1038326,23,1185,1 +25320,1038370,196,9840,1 +25321,1038373,3,185,1 +25322,1038445,190,9513,1 +25323,1038770,7,383,1 +25324,1039200,13,662,1 +25325,1039200,6,323,1 +25326,1039212,151,7559,1 +25327,1039212,164,8243,1 +25328,1039248,16,809,1 +25329,1039260,171,8554,1 +25330,1039260,57,2882,1 +25331,1039273,189,9467,1 +25332,1039321,22,1113,1 +25333,1039681,17,878,1 +25334,1039682,75,3764,1 +25335,1039690,175,8791,1 +25336,1039692,75,3778,1 +25337,1039692,100,5034,1 +25338,1039692,15,785,1 +25339,1039695,66,3313,1 +25340,1039704,44,2208,1 +25341,1039704,153,7695,1 +25342,1039716,188,9408,1 +25343,1039716,143,7190,1 +25344,1039719,129,6467,1 +25345,1039729,59,2997,1 +25346,1039741,155,7785,1 +25347,1039752,36,1805,1 +25348,1039777,34,1743,1 +25349,1039789,47,2367,1 +25350,1039792,136,6839,1 +25351,1039807,2,127,1 +25352,1039820,54,2723,1 +25353,1039861,49,2465,1 +25354,1039944,68,3432,1 +25355,1040160,99,4999,1 +25356,1040160,22,1111,1 +25357,1040161,42,2110,1 +25358,1040168,152,7616,1 +25359,1040169,14,737,1 +25360,1040172,76,3850,1 +25361,1040172,116,5803,1 +25362,1040173,185,9291,1 +25363,1040173,125,6277,1 +25364,1040175,177,8855,1 +25365,1040178,158,7932,1 +25366,1040178,149,7473,1 +25367,1040184,7,355,1 +25368,1040184,48,2441,1 +25369,1040184,124,6242,1 +25370,1040184,39,1986,1 +25371,1040184,42,2133,1 +25372,1040184,98,4918,1 +25373,1040186,9,492,1 +25374,1040188,2,115,1 +25375,1040196,63,3151,1 +25376,1040197,89,4496,1 +25377,1040199,16,807,1 +25378,1040199,29,1484,1 +25379,1040205,170,8544,1 +25380,1040205,120,6049,1 +25381,1040208,50,2541,1 +25382,1040208,141,7074,1 +25383,1040208,10,533,1 +25384,1040208,67,3392,1 +25385,1040208,133,6697,1 +25386,1040208,105,5287,1 +25387,1040209,80,4035,1 +25388,1040218,175,8769,1 +25389,1040220,184,9237,1 +25390,1040220,165,8274,1 +25391,1040221,118,5903,1 +25392,1040221,66,3348,1 +25393,1040232,27,1399,1 +25394,1040233,25,1293,1 +25395,1040234,17,895,1 +25396,1040236,190,9537,1 +25397,1040280,185,9280,1 +25398,1040304,2,142,1 +25399,1040307,160,8012,1 +25400,1040331,153,7655,1 +25401,1040341,73,3700,1 +25402,1040346,115,5769,1 +25403,1040436,137,6885,1 +25404,1040652,28,1418,1 +25405,1040676,46,2336,1 +25406,1040677,50,2527,1 +25407,1040736,5,267,1 +25408,1041121,3,192,1 +25409,1041121,142,7102,1 +25410,1041126,171,8580,1 +25411,1041132,146,7329,1 +25412,1041132,26,1318,1 +25413,1041132,104,5243,1 +25414,1041133,103,5196,1 +25415,1041144,64,3246,1 +25416,1041144,22,1107,1 +25417,1041147,88,4413,1 +25418,1041147,134,6711,1 +25419,1041150,39,1998,1 +25420,1041157,79,3989,1 +25421,1041157,48,2428,1 +25422,1041168,28,1411,1 +25423,1041180,96,4819,1 +25424,1041216,78,3947,1 +25425,1041218,99,4962,1 +25426,1041219,21,1076,1 +25427,1041237,85,4287,1 +25428,1041240,145,7262,1 +25429,1041264,135,6789,1 +25430,1041327,191,9579,1 +25431,1041346,117,5863,1 +25432,1041600,35,1760,1 +25433,1041600,92,4629,1 +25434,1041607,61,3071,1 +25435,1041612,152,7629,1 +25436,1041624,95,4772,1 +25437,1041675,84,4205,1 +25438,1041726,125,6299,1 +25439,1041768,17,891,1 +25440,1042080,8,434,1 +25441,1042080,88,4418,1 +25442,1042080,91,4578,1 +25443,1042084,123,6180,1 +25444,1042086,85,4258,1 +25445,1042090,115,5755,1 +25446,1042092,139,6961,1 +25447,1042092,106,5336,1 +25448,1042098,126,6322,1 +25449,1042099,100,5048,1 +25450,1042104,178,8939,1 +25451,1042107,83,4193,1 +25452,1042113,73,3656,1 +25453,1042116,159,7976,1 +25454,1042119,122,6106,1 +25455,1042119,23,1186,1 +25456,1042120,121,6067,1 +25457,1042128,81,4097,1 +25458,1042128,35,1763,1 +25459,1042137,36,1847,1 +25460,1042140,39,1967,1 +25461,1042140,12,624,1 +25462,1042154,169,8469,1 +25463,1042158,178,8902,1 +25464,1042165,7,396,1 +25465,1042168,108,5428,1 +25466,1042176,60,3011,1 +25467,1042212,175,8753,1 +25468,1042285,51,2591,1 +25469,1042608,39,1979,1 +25470,1042641,85,4282,1 +25471,1043066,196,9820,1 +25472,1043100,35,1767,1 +25473,1043136,178,8931,1 +25474,1043521,55,2791,1 +25475,1043532,125,6289,1 +25476,1043544,179,8983,1 +25477,1043554,40,2036,1 +25478,1043556,50,2516,1 +25479,1043557,58,2911,1 +25480,1043592,133,6681,1 +25481,1043604,15,760,1 +25482,1044055,105,5264,1 +25483,1044134,77,3877,1 +25484,1044145,74,3702,1 +25485,1044168,15,772,1 +25486,1044492,168,8415,1 +25487,1044498,10,516,1 +25488,1044519,45,2299,1 +25489,1044528,16,848,1 +25490,1044528,89,4452,1 +25491,1044542,105,5260,1 +25492,1044565,51,2553,1 +25493,1044968,61,3071,1 +25494,1044972,154,7730,1 +25495,1044972,180,9042,1 +25496,1044972,88,4436,1 +25497,1044996,152,7622,1 +25498,1045008,181,9076,1 +25499,1045008,137,6867,1 +25500,1045044,100,5049,1 +25501,1045104,180,9001,1 +25502,1045920,87,4366,1 +25503,1045923,34,1744,1 +25504,1045950,106,5340,1 +25505,1045956,88,4410,1 +25506,1045977,96,4835,1 +25507,1045982,59,2987,1 +25508,1046074,67,3371,1 +25509,1046088,37,1881,1 +25510,1046460,157,7898,1 +25511,1046880,163,8157,1 +25512,1046880,129,6454,1 +25513,1046880,134,6713,1 +25514,1046880,74,3702,1 +25515,1046880,12,615,1 +25516,1046880,113,5654,1 +25517,1046880,176,8819,1 +25518,1046881,177,8887,1 +25519,1046881,87,4373,1 +25520,1046881,77,3876,1 +25521,1046883,51,2578,1 +25522,1046884,28,1402,1 +25523,1046886,184,9233,1 +25524,1046886,23,1167,1 +25525,1046886,185,9285,1 +25526,1046888,18,943,1 +25527,1046889,169,8478,1 +25528,1046889,44,2211,1 +25529,1046889,182,9103,1 +25530,1046892,152,7637,1 +25531,1046892,193,9671,1 +25532,1046892,43,2186,1 +25533,1046893,56,2829,1 +25534,1046893,55,2776,1 +25535,1046904,39,1983,1 +25536,1046904,39,1978,1 +25537,1046904,10,510,1 +25538,1046904,197,9885,1 +25539,1046904,124,6212,1 +25540,1046905,137,6864,1 +25541,1046906,193,9683,1 +25542,1046910,98,4922,1 +25543,1046910,166,8310,1 +25544,1046910,109,5464,1 +25545,1046911,55,2762,1 +25546,1046912,135,6765,1 +25547,1046916,152,7634,1 +25548,1046920,194,9703,1 +25549,1046922,23,1151,1 +25550,1046928,50,2521,1 +25551,1046928,168,8429,1 +25552,1046929,16,841,1 +25553,1046933,97,4861,1 +25554,1046934,175,8767,1 +25555,1046935,132,6647,1 +25556,1046938,3,193,1 +25557,1046940,11,555,1 +25558,1046940,115,5775,1 +25559,1046942,112,5614,1 +25560,1046944,149,7457,1 +25561,1046952,20,1042,1 +25562,1046962,42,2143,1 +25563,1046965,79,3969,1 +25564,1046977,67,3397,1 +25565,1046982,30,1543,1 +25566,1046988,53,2696,1 +25567,1046991,141,7100,1 +25568,1047008,32,1639,1 +25569,1047013,19,964,1 +25570,1047018,75,3796,1 +25571,1047024,156,7848,1 +25572,1047030,6,323,1 +25573,1047032,3,170,1 +25574,1047036,186,9326,1 +25575,1047036,153,7682,1 +25576,1047037,114,5707,1 +25577,1047085,104,5206,1 +25578,1047111,48,2438,1 +25579,1047114,131,6588,1 +25580,1047132,145,7258,1 +25581,1047189,170,8539,1 +25582,1047372,100,5022,1 +25583,1047840,81,4078,1 +25584,1047846,40,2031,1 +25585,1047856,81,4070,1 +25586,1047864,159,7978,1 +25587,1047867,95,4751,1 +25588,1047867,78,3920,1 +25589,1047873,77,3898,1 +25590,1047889,16,812,1 +25591,1047939,92,4646,1 +25592,1047966,124,6202,1 +25593,1047966,177,8874,1 +25594,1048032,85,4285,1 +25595,1048320,55,2778,1 +25596,1048320,174,8737,1 +25597,1048320,88,4403,1 +25598,1048326,6,328,1 +25599,1048326,25,1266,1 +25600,1048333,54,2729,1 +25601,1048344,136,6806,1 +25602,1048344,136,6812,1 +25603,1048359,96,4830,1 +25604,1048359,182,9135,1 +25605,1048359,133,6653,1 +25606,1048361,107,5352,1 +25607,1048365,86,4332,1 +25608,1048368,37,1858,1 +25609,1048370,71,3578,1 +25610,1048371,156,7827,1 +25611,1048382,92,4639,1 +25612,1048386,170,8529,1 +25613,1048393,101,5097,1 +25614,1048416,119,5989,1 +25615,1048470,85,4262,1 +25616,1048837,78,3941,1 +25617,1048845,180,9039,1 +25618,1048854,107,5377,1 +25619,1049319,96,4841,1 +25620,1049364,140,7044,1 +25621,1049366,58,2922,1 +25622,1049400,112,5604,1 +25623,1049474,21,1091,1 +25624,1050240,116,5828,1 +25625,1050243,72,3615,1 +25626,1050253,37,1884,1 +25627,1050264,132,6624,1 +25628,1050288,48,2408,1 +25629,1050288,168,8401,1 +25630,1050300,143,7182,1 +25631,1050300,68,3426,1 +25632,1050757,122,6135,1 +25633,1051241,26,1319,1 +25634,1051251,144,7201,1 +25635,1051680,147,7368,1 +25636,1051705,117,5896,1 +25637,1051747,117,5893,1 +25638,1052232,182,9131,1 +25639,1052233,80,4018,1 +25640,1052646,160,8031,1 +25641,1052649,199,9980,1 +25642,1052652,17,886,1 +25643,1052652,89,4487,1 +25644,1052664,98,4940,1 +25645,1052664,150,7520,1 +25646,1052666,33,1667,1 +25647,1052666,66,3319,1 +25648,1052700,87,4379,1 +25649,1052734,99,4999,1 +25650,1052772,57,2855,1 +25651,1053144,4,248,1 +25652,1053601,174,8730,1 +25653,1053606,138,6950,1 +25654,1053613,143,7172,1 +25655,1053618,15,778,1 +25656,1053622,71,3575,1 +25657,1053633,81,4069,1 +25658,1053660,139,6956,1 +25659,1053661,159,7967,1 +25660,1053674,24,1242,1 +25661,1053696,153,7657,1 +25662,1053737,66,3312,1 +25663,1054090,108,5446,1 +25664,1054215,103,5168,1 +25665,1054560,13,667,1 +25666,1054560,95,4761,1 +25667,1054561,33,1683,1 +25668,1054561,170,8531,1 +25669,1054562,87,4364,1 +25670,1054566,109,5485,1 +25671,1054572,10,512,1 +25672,1054572,134,6739,1 +25673,1054578,24,1214,1 +25674,1054584,68,3441,1 +25675,1054584,20,1037,1 +25676,1054585,71,3555,1 +25677,1054597,40,2034,1 +25678,1054598,117,5859,1 +25679,1054608,4,217,1 +25680,1054608,52,2624,1 +25681,1054643,66,3308,1 +25682,1054644,105,5252,1 +25683,1054651,84,4216,1 +25684,1054656,186,9328,1 +25685,1055040,141,7063,1 +25686,1055053,162,8148,1 +25687,1055064,107,5387,1 +25688,1055160,31,1560,1 +25689,1055520,125,6295,1 +25690,1055575,144,7218,1 +25691,1055608,112,5617,1 +25692,1056000,155,7800,1 +25693,1056003,23,1159,1 +25694,1056024,55,2758,1 +25695,1056025,1,52,1 +25696,1056036,192,9639,1 +25697,1056040,146,7308,1 +25698,1056105,66,3344,1 +25699,1056180,191,9588,1 +25700,1056967,25,1252,1 +25701,1056984,19,965,1 +25702,1057008,14,706,1 +25703,1057440,195,9763,1 +25704,1057512,105,5282,1 +25705,1057932,59,2964,1 +25706,1057969,71,3589,1 +25707,1058400,1,54,1 +25708,1058400,92,4607,1 +25709,1058424,49,2486,1 +25710,1058425,30,1543,1 +25711,1058430,115,5762,1 +25712,1058436,176,8809,1 +25713,1058449,182,9139,1 +25714,1058449,64,3244,1 +25715,1058460,55,2751,1 +25716,1058460,187,9377,1 +25717,1058486,164,8238,1 +25718,1058496,9,453,1 +25719,1058544,152,7601,1 +25720,1058587,123,6195,1 +25721,1059375,194,9741,1 +25722,1059483,185,9278,1 +25723,1059492,65,3290,1 +25724,1059840,152,7616,1 +25725,1059840,46,2328,1 +25726,1059840,163,8174,1 +25727,1059841,27,1364,1 +25728,1059842,39,1981,1 +25729,1059846,29,1479,1 +25730,1059853,143,7158,1 +25731,1059876,109,5462,1 +25732,1059879,103,5183,1 +25733,1059879,82,4113,1 +25734,1059889,2,128,1 +25735,1059889,15,767,1 +25736,1059894,97,4858,1 +25737,1059900,167,8369,1 +25738,1059924,103,5158,1 +25739,1059948,113,5676,1 +25740,1059998,99,4990,1 +25741,1060803,96,4845,1 +25742,1060851,31,1559,1 +25743,1060885,76,3838,1 +25744,1060920,128,6449,1 +25745,1061175,54,2728,1 +25746,1061289,99,4958,1 +25747,1061292,197,9882,1 +25748,1061305,180,9021,1 +25749,1061376,167,8396,1 +25750,1061403,1,61,1 +25751,1061425,178,8942,1 +25752,1061773,89,4483,1 +25753,1061778,94,4724,1 +25754,1061785,189,9496,1 +25755,1061791,152,7610,1 +25756,1061833,71,3561,1 +25757,1061870,151,7591,1 +25758,1062242,122,6139,1 +25759,1062246,166,8303,1 +25760,1062249,81,4067,1 +25761,1062252,39,1973,1 +25762,1062255,95,4760,1 +25763,1062285,160,8017,1 +25764,1062360,81,4071,1 +25765,1062720,82,4112,1 +25766,1062721,98,4919,1 +25767,1062725,62,3145,1 +25768,1062732,120,6007,1 +25769,1062732,195,9779,1 +25770,1062735,150,7513,1 +25771,1062737,0,8,1 +25772,1062744,33,1652,1 +25773,1062744,59,3000,1 +25774,1062744,122,6121,1 +25775,1062748,110,5527,1 +25776,1062748,126,6316,1 +25777,1062750,146,7310,1 +25778,1062753,53,2679,1 +25779,1062753,7,385,1 +25780,1062759,22,1138,1 +25781,1062759,91,4596,1 +25782,1062761,150,7512,1 +25783,1062768,138,6913,1 +25784,1062769,40,2024,1 +25785,1062771,145,7284,1 +25786,1062772,102,5105,1 +25787,1062974,54,2712,1 +25788,1063207,157,7865,1 +25789,1063221,142,7131,1 +25790,1063224,58,2916,1 +25791,1063321,135,6792,1 +25792,1063680,102,5121,1 +25793,1063680,139,6963,1 +25794,1063680,175,8780,1 +25795,1063680,144,7239,1 +25796,1063684,87,4381,1 +25797,1063688,104,5230,1 +25798,1063692,3,177,1 +25799,1063692,14,719,1 +25800,1063694,117,5862,1 +25801,1063704,65,3257,1 +25802,1063705,130,6525,1 +25803,1063709,50,2542,1 +25804,1063719,177,8874,1 +25805,1063719,181,9088,1 +25806,1063728,77,3878,1 +25807,1063737,22,1142,1 +25808,1063746,156,7813,1 +25809,1063750,68,3438,1 +25810,1063776,58,2902,1 +25811,1063776,88,4441,1 +25812,1063788,141,7081,1 +25813,1063803,57,2876,1 +25814,1063825,173,8657,1 +25815,1064172,135,6776,1 +25816,1064208,51,2555,1 +25817,1064211,99,4979,1 +25818,1064268,157,7873,1 +25819,1064712,159,7989,1 +25820,1065123,136,6839,1 +25821,1065132,37,1859,1 +25822,1065138,55,2760,1 +25823,1065150,108,5449,1 +25824,1065168,95,4752,1 +25825,1065169,85,4266,1 +25826,1065193,57,2877,1 +25827,1065204,168,8414,1 +25828,1065288,118,5948,1 +25829,1065323,94,4744,1 +25830,1065600,31,1567,1 +25831,1065612,165,8278,1 +25832,1065613,173,8698,1 +25833,1065636,0,2,1 +25834,1065640,195,9800,1 +25835,1065690,28,1417,1 +25836,1066082,64,3244,1 +25837,1066092,153,7683,1 +25838,1066113,123,6178,1 +25839,1066169,87,4386,1 +25840,1066194,167,8399,1 +25841,1066569,111,5589,1 +25842,1066569,15,780,1 +25843,1066586,38,1942,1 +25844,1066596,117,5888,1 +25845,1066609,47,2373,1 +25846,1066613,65,3269,1 +25847,1066618,152,7619,1 +25848,1066644,83,4151,1 +25849,1066668,102,5130,1 +25850,1066706,195,9753,1 +25851,1067040,172,8607,1 +25852,1067040,19,966,1 +25853,1067069,113,5659,1 +25854,1067119,175,8757,1 +25855,1067119,124,6218,1 +25856,1067124,182,9101,1 +25857,1067148,22,1142,1 +25858,1067163,31,1596,1 +25859,1067199,47,2355,1 +25860,1067202,185,9253,1 +25861,1067536,146,7312,1 +25862,1067583,86,4315,1 +25863,1067592,120,6041,1 +25864,1067604,37,1888,1 +25865,1067662,30,1546,1 +25866,1068000,111,5584,1 +25867,1068006,19,970,1 +25868,1068012,165,8255,1 +25869,1068012,26,1321,1 +25870,1068021,86,4341,1 +25871,1068060,137,6897,1 +25872,1068060,65,3292,1 +25873,1068084,169,8468,1 +25874,1068096,5,251,1 +25875,1068109,122,6150,1 +25876,1068121,110,5522,1 +25877,1068124,162,8139,1 +25878,1068267,139,6952,1 +25879,1068481,86,4310,1 +25880,1068484,166,8306,1 +25881,1068493,33,1679,1 +25882,1068504,56,2827,1 +25883,1068516,158,7950,1 +25884,1068529,150,7535,1 +25885,1068537,10,531,1 +25886,1068540,79,3951,1 +25887,1068541,83,4196,1 +25888,1068542,41,2080,1 +25889,1068543,166,8330,1 +25890,1068579,11,567,1 +25891,1068662,0,37,1 +25892,1068960,44,2233,1 +25893,1068960,119,5965,1 +25894,1068960,2,101,1 +25895,1068960,12,650,1 +25896,1068966,40,2033,1 +25897,1068972,167,8396,1 +25898,1068972,90,4510,1 +25899,1068972,47,2358,1 +25900,1068972,32,1613,1 +25901,1068972,47,2366,1 +25902,1068975,184,9247,1 +25903,1068981,43,2193,1 +25904,1068984,191,9575,1 +25905,1068985,85,4298,1 +25906,1068985,24,1238,1 +25907,1068996,131,6595,1 +25908,1069008,103,5197,1 +25909,1069008,119,5986,1 +25910,1069008,28,1434,1 +25911,1069014,196,9801,1 +25912,1069014,51,2569,1 +25913,1069020,154,7738,1 +25914,1069030,69,3485,1 +25915,1069032,65,3293,1 +25916,1069035,9,451,1 +25917,1069044,34,1709,1 +25918,1069107,27,1358,1 +25919,1069123,175,8775,1 +25920,1069143,168,8440,1 +25921,1069443,96,4817,1 +25922,1069449,58,2946,1 +25923,1069452,117,5852,1 +25924,1069458,132,6614,1 +25925,1069465,181,9088,1 +25926,1069479,47,2379,1 +25927,1069482,12,647,1 +25928,1069512,166,8342,1 +25929,1069549,39,1980,1 +25930,1069920,189,9496,1 +25931,1069924,122,6131,1 +25932,1069932,113,5680,1 +25933,1069933,141,7075,1 +25934,1069934,164,8232,1 +25935,1069935,49,2464,1 +25936,1069935,16,823,1 +25937,1069938,162,8102,1 +25938,1069947,115,5784,1 +25939,1069948,46,2341,1 +25940,1069956,3,196,1 +25941,1069960,66,3318,1 +25942,1069993,85,4280,1 +25943,1070004,28,1424,1 +25944,1070065,25,1259,1 +25945,1070400,91,4587,1 +25946,1070403,37,1853,1 +25947,1070409,120,6050,1 +25948,1070412,35,1798,1 +25949,1070412,81,4051,1 +25950,1070412,196,9817,1 +25951,1070418,64,3205,1 +25952,1070427,11,560,1 +25953,1070433,91,4596,1 +25954,1070436,183,9152,1 +25955,1070436,26,1344,1 +25956,1070449,83,4161,1 +25957,1070469,141,7073,1 +25958,1070472,123,6157,1 +25959,1070472,93,4694,1 +25960,1070484,77,3880,1 +25961,1070496,159,7968,1 +25962,1070513,14,712,1 +25963,1070543,94,4705,1 +25964,1070544,101,5080,1 +25965,1070653,152,7606,1 +25966,1070787,71,3596,1 +25967,1070880,89,4479,1 +25968,1070884,152,7637,1 +25969,1070892,29,1459,1 +25970,1070898,187,9355,1 +25971,1071360,22,1133,1 +25972,1071361,197,9865,1 +25973,1071361,91,4561,1 +25974,1071363,54,2736,1 +25975,1071366,108,5411,1 +25976,1071369,140,7023,1 +25977,1071369,155,7786,1 +25978,1071372,25,1272,1 +25979,1071373,18,923,1 +25980,1071378,22,1101,1 +25981,1071384,15,785,1 +25982,1071385,186,9334,1 +25983,1071387,66,3305,1 +25984,1071390,104,5216,1 +25985,1071393,90,4529,1 +25986,1071396,132,6612,1 +25987,1071408,167,8361,1 +25988,1071415,179,8986,1 +25989,1071565,172,8629,1 +25990,1071660,26,1312,1 +25991,1071877,73,3695,1 +25992,1072333,100,5025,1 +25993,1072333,19,997,1 +25994,1072489,70,3516,1 +25995,1072800,39,1984,1 +25996,1072803,17,852,1 +25997,1072804,188,9434,1 +25998,1072825,188,9408,1 +25999,1072826,46,2321,1 +26000,1072830,38,1924,1 +26001,1072830,179,8999,1 +26002,1072831,189,9499,1 +26003,1072833,19,959,1 +26004,1072833,160,8045,1 +26005,1072836,118,5917,1 +26006,1072836,48,2405,1 +26007,1072837,133,6682,1 +26008,1072839,6,308,1 +26009,1072845,139,6980,1 +26010,1072848,19,965,1 +26011,1072857,5,251,1 +26012,1072860,93,4657,1 +26013,1072860,141,7052,1 +26014,1072884,34,1720,1 +26015,1072884,127,6371,1 +26016,1072887,159,7988,1 +26017,1072908,39,1968,1 +26018,1072945,104,5238,1 +26019,1072989,75,3792,1 +26020,1073004,127,6379,1 +26021,1073304,16,806,1 +26022,1073325,185,9281,1 +26023,1073330,76,3831,1 +26024,1073341,60,3026,1 +26025,1073355,149,7489,1 +26026,1073382,189,9477,1 +26027,1073616,88,4419,1 +26028,1073760,12,639,1 +26029,1073760,13,699,1 +26030,1073760,86,4317,1 +26031,1073763,18,902,1 +26032,1073767,114,5737,1 +26033,1073769,188,9433,1 +26034,1073770,52,2602,1 +26035,1073772,168,8446,1 +26036,1073772,138,6922,1 +26037,1073772,2,125,1 +26038,1073772,60,3026,1 +26039,1073773,190,9537,1 +26040,1073775,32,1624,1 +26041,1073778,111,5575,1 +26042,1073780,114,5733,1 +26043,1073784,96,4822,1 +26044,1073784,77,3886,1 +26045,1073784,105,5257,1 +26046,1073786,106,5329,1 +26047,1073788,112,5629,1 +26048,1073796,65,3274,1 +26049,1073799,100,5024,1 +26050,1073808,157,7873,1 +26051,1073818,79,3961,1 +26052,1073844,40,2030,1 +26053,1073854,124,6225,1 +26054,1073868,145,7292,1 +26055,1073880,5,294,1 +26056,1073880,177,8882,1 +26057,1073892,199,9969,1 +26058,1073895,80,4016,1 +26059,1073900,142,7109,1 +26060,1073917,176,8843,1 +26061,1073947,11,551,1 +26062,1074003,76,3827,1 +26063,1074013,192,9642,1 +26064,1074241,25,1251,1 +26065,1074264,186,9307,1 +26066,1074264,115,5780,1 +26067,1074265,180,9018,1 +26068,1074279,42,2118,1 +26069,1074279,19,958,1 +26070,1074285,116,5826,1 +26071,1074288,92,4612,1 +26072,1074289,14,712,1 +26073,1074315,54,2704,1 +26074,1074325,141,7096,1 +26075,1074326,141,7075,1 +26076,1074349,121,6097,1 +26077,1074721,80,4026,1 +26078,1074723,127,6381,1 +26079,1074723,29,1487,1 +26080,1074726,175,8787,1 +26081,1074732,51,2595,1 +26082,1074732,140,7006,1 +26083,1074747,124,6212,1 +26084,1074756,119,5973,1 +26085,1074771,101,5058,1 +26086,1074799,59,2953,1 +26087,1074804,196,9832,1 +26088,1074822,83,4159,1 +26089,1074829,166,8350,1 +26090,1074955,186,9310,1 +26091,1076184,196,9803,1 +26092,1076196,4,201,1 +26093,1076643,126,6330,1 +26094,1076652,118,5902,1 +26095,1076664,110,5529,1 +26096,1076667,41,2080,1 +26097,1076676,146,7343,1 +26098,1076688,21,1073,1 +26099,1076690,152,7608,1 +26100,1076700,113,5683,1 +26101,1076711,0,8,1 +26102,1076714,196,9808,1 +26103,1076778,41,2068,1 +26104,1076919,99,4983,1 +26105,1076919,76,3808,1 +26106,1077177,199,9967,1 +26107,1077252,35,1761,1 +26108,1077600,109,5488,1 +26109,1077600,119,5968,1 +26110,1077601,75,3778,1 +26111,1077605,178,8935,1 +26112,1077609,22,1142,1 +26113,1077630,121,6099,1 +26114,1077639,83,4182,1 +26115,1077649,18,923,1 +26116,1077684,37,1874,1 +26117,1077716,46,2326,1 +26118,1077742,182,9133,1 +26119,1078092,54,2714,1 +26120,1078146,173,8676,1 +26121,1078560,50,2517,1 +26122,1078578,187,9361,1 +26123,1078620,20,1028,1 +26124,1078752,161,8065,1 +26125,1079072,163,8192,1 +26126,1079078,179,8955,1 +26127,1079088,81,4080,1 +26128,1079151,107,5357,1 +26129,1079520,180,9009,1 +26130,1079529,115,5797,1 +26131,1079568,120,6032,1 +26132,1079599,137,6873,1 +26133,1079604,73,3653,1 +26134,1079610,43,2190,1 +26135,1080025,160,8048,1 +26136,1080038,127,6355,1 +26137,1080103,199,9980,1 +26138,1080483,133,6655,1 +26139,1081441,35,1755,1 +26140,1081443,163,8167,1 +26141,1081452,99,4985,1 +26142,1081456,172,8606,1 +26143,1081476,63,3190,1 +26144,1081551,29,1472,1 +26145,1081710,196,9815,1 +26146,1081930,155,7774,1 +26147,1081944,24,1242,1 +26148,1081946,51,2569,1 +26149,1081974,8,401,1 +26150,1081978,59,2953,1 +26151,1081992,65,3259,1 +26152,1082030,164,8230,1 +26153,1082401,44,2248,1 +26154,1082407,65,3288,1 +26155,1082412,64,3245,1 +26156,1082418,119,5980,1 +26157,1082430,19,989,1 +26158,1082461,61,3084,1 +26159,1082484,87,4353,1 +26160,1082889,162,8124,1 +26161,1082892,29,1461,1 +26162,1082904,78,3935,1 +26163,1082922,15,752,1 +26164,1082931,151,7592,1 +26165,1082940,116,5807,1 +26166,1083649,26,1307,1 +26167,1083840,55,2800,1 +26168,1083840,30,1541,1 +26169,1083840,130,6509,1 +26170,1083841,125,6281,1 +26171,1083842,168,8408,1 +26172,1083847,80,4038,1 +26173,1083848,97,4860,1 +26174,1083852,26,1305,1 +26175,1083852,187,9363,1 +26176,1083855,93,4652,1 +26177,1083855,26,1334,1 +26178,1083862,106,5318,1 +26179,1083864,80,4031,1 +26180,1083865,87,4394,1 +26181,1083876,20,1041,1 +26182,1083876,119,5992,1 +26183,1083878,133,6653,1 +26184,1083888,104,5248,1 +26185,1083888,124,6229,1 +26186,1083889,43,2167,1 +26187,1083889,66,3329,1 +26188,1083889,195,9791,1 +26189,1083890,61,3070,1 +26190,1083890,32,1606,1 +26191,1083894,71,3590,1 +26192,1083895,182,9127,1 +26193,1083901,101,5065,1 +26194,1083903,50,2539,1 +26195,1083912,182,9122,1 +26196,1083912,54,2742,1 +26197,1083913,54,2705,1 +26198,1083914,153,7666,1 +26199,1083924,6,347,1 +26200,1083924,10,538,1 +26201,1083927,178,8921,1 +26202,1083928,93,4685,1 +26203,1083934,32,1638,1 +26204,1083939,171,8552,1 +26205,1083977,111,5589,1 +26206,1084011,144,7210,1 +26207,1084026,78,3929,1 +26208,1084320,0,28,1 +26209,1084320,89,4490,1 +26210,1084320,75,3757,1 +26211,1084321,132,6613,1 +26212,1084331,133,6658,1 +26213,1084335,13,661,1 +26214,1084341,191,9576,1 +26215,1084344,54,2739,1 +26216,1084350,14,723,1 +26217,1084356,84,4241,1 +26218,1084364,100,5042,1 +26219,1084404,180,9045,1 +26220,1084404,146,7335,1 +26221,1084406,158,7928,1 +26222,1084428,1,84,1 +26223,1084431,115,5786,1 +26224,1084512,17,869,1 +26225,1084802,68,3443,1 +26226,1084812,157,7865,1 +26227,1084813,135,6780,1 +26228,1084815,161,8065,1 +26229,1084824,3,178,1 +26230,1084825,189,9478,1 +26231,1084826,85,4274,1 +26232,1084836,122,6122,1 +26233,1084850,154,7731,1 +26234,1084871,151,7579,1 +26235,1084874,178,8946,1 +26236,1084888,80,4039,1 +26237,1084945,124,6218,1 +26238,1084983,4,216,1 +26239,1085281,125,6298,1 +26240,1085295,133,6652,1 +26241,1085322,91,4569,1 +26242,1085322,185,9268,1 +26243,1085324,125,6277,1 +26244,1085338,170,8540,1 +26245,1085424,178,8931,1 +26246,1085532,57,2889,1 +26247,1085760,9,484,1 +26248,1085764,142,7114,1 +26249,1085772,14,735,1 +26250,1085772,56,2844,1 +26251,1085778,93,4655,1 +26252,1085786,113,5666,1 +26253,1085808,151,7559,1 +26254,1085832,42,2109,1 +26255,1085863,193,9652,1 +26256,1085955,80,4020,1 +26257,1086240,96,4841,1 +26258,1086243,55,2751,1 +26259,1086252,180,9038,1 +26260,1086261,133,6677,1 +26261,1086262,180,9006,1 +26262,1086276,78,3926,1 +26263,1086278,42,2139,1 +26264,1086300,52,2633,1 +26265,1086301,2,122,1 +26266,1086301,189,9479,1 +26267,1086312,145,7285,1 +26268,1086313,16,837,1 +26269,1086315,63,3159,1 +26270,1086325,55,2765,1 +26271,1086498,174,8703,1 +26272,1086667,155,7753,1 +26273,1086741,160,8020,1 +26274,1087680,2,112,1 +26275,1087680,3,171,1 +26276,1087680,87,4387,1 +26277,1087680,197,9896,1 +26278,1087686,196,9832,1 +26279,1087693,16,833,1 +26280,1087705,27,1376,1 +26281,1087716,166,8334,1 +26282,1087716,63,3181,1 +26283,1087720,91,4570,1 +26284,1087740,144,7210,1 +26285,1087744,42,2150,1 +26286,1087764,86,4327,1 +26287,1087776,134,6708,1 +26288,1087871,78,3921,1 +26289,1088173,24,1203,1 +26290,1088190,134,6708,1 +26291,1088205,124,6222,1 +26292,1088218,116,5822,1 +26293,1088641,20,1001,1 +26294,1088643,4,245,1 +26295,1088652,89,4467,1 +26296,1088652,126,6322,1 +26297,1088655,54,2737,1 +26298,1088667,106,5310,1 +26299,1088676,192,9617,1 +26300,1088677,123,6172,1 +26301,1088688,110,5502,1 +26302,1089156,183,9184,1 +26303,1089157,80,4016,1 +26304,1089180,46,2325,1 +26305,1090080,85,4300,1 +26306,1090092,50,2518,1 +26307,1090095,118,5930,1 +26308,1090101,78,3942,1 +26309,1090128,23,1189,1 +26310,1090597,136,6841,1 +26311,1090600,46,2341,1 +26312,1090737,45,2268,1 +26313,1092000,28,1428,1 +26314,1092003,83,4181,1 +26315,1092031,101,5084,1 +26316,1092075,27,1353,1 +26317,1092084,9,483,1 +26318,1092108,80,4018,1 +26319,1092240,114,5727,1 +26320,1092486,189,9475,1 +26321,1092492,82,4101,1 +26322,1092495,17,864,1 +26323,1092498,75,3780,1 +26324,1092528,15,757,1 +26325,1092535,120,6050,1 +26326,1092554,59,2986,1 +26327,1092576,120,6014,1 +26328,1092876,72,3648,1 +26329,1092973,64,3204,1 +26330,1092978,136,6840,1 +26331,1093002,75,3757,1 +26332,1093047,117,5855,1 +26333,1093056,55,2756,1 +26334,1093320,99,4984,1 +26335,1093441,30,1514,1 +26336,1093443,32,1632,1 +26337,1093445,130,6525,1 +26338,1093452,193,9661,1 +26339,1093465,175,8781,1 +26340,1093476,65,3293,1 +26341,1093499,101,5087,1 +26342,1093500,195,9790,1 +26343,1093536,28,1418,1 +26344,1094437,130,6531,1 +26345,1094880,168,8421,1 +26346,1094881,47,2356,1 +26347,1094887,47,2371,1 +26348,1094889,145,7276,1 +26349,1094905,134,6701,1 +26350,1094914,162,8131,1 +26351,1094916,98,4934,1 +26352,1094928,115,5755,1 +26353,1094928,1,78,1 +26354,1094928,127,6398,1 +26355,1094934,174,8742,1 +26356,1094940,62,3134,1 +26357,1094949,181,9057,1 +26358,1094952,104,5248,1 +26359,1094952,49,2471,1 +26360,1094953,91,4558,1 +26361,1094977,59,2991,1 +26362,1094977,131,6599,1 +26363,1094977,143,7168,1 +26364,1094979,153,7656,1 +26365,1094988,184,9204,1 +26366,1094992,20,1006,1 +26367,1095000,28,1437,1 +26368,1095073,176,8822,1 +26369,1095360,183,9178,1 +26370,1095360,98,4946,1 +26371,1095360,161,8097,1 +26372,1095360,26,1348,1 +26373,1095360,119,5985,1 +26374,1095360,168,8447,1 +26375,1095361,72,3639,1 +26376,1095361,63,3189,1 +26377,1095361,68,3436,1 +26378,1095363,117,5878,1 +26379,1095363,26,1302,1 +26380,1095363,79,3952,1 +26381,1095364,85,4274,1 +26382,1095369,180,9049,1 +26383,1095369,127,6384,1 +26384,1095369,160,8018,1 +26385,1095370,11,559,1 +26386,1095370,111,5560,1 +26387,1095372,161,8067,1 +26388,1095372,102,5110,1 +26389,1095372,27,1396,1 +26390,1095372,150,7519,1 +26391,1095372,138,6913,1 +26392,1095372,97,4860,1 +26393,1095372,68,3416,1 +26394,1095375,102,5118,1 +26395,1095375,64,3247,1 +26396,1095376,18,918,1 +26397,1095376,59,2958,1 +26398,1095384,34,1741,1 +26399,1095384,142,7119,1 +26400,1095384,60,3011,1 +26401,1095384,193,9694,1 +26402,1095384,173,8659,1 +26403,1095384,112,5620,1 +26404,1095384,160,8033,1 +26405,1095385,189,9480,1 +26406,1095385,47,2364,1 +26407,1095385,4,206,1 +26408,1095385,13,668,1 +26409,1095386,71,3594,1 +26410,1095386,152,7634,1 +26411,1095387,148,7428,1 +26412,1095387,99,4993,1 +26413,1095387,136,6822,1 +26414,1095390,107,5359,1 +26415,1095392,24,1237,1 +26416,1095396,86,4311,1 +26417,1095396,169,8464,1 +26418,1095396,42,2139,1 +26419,1095396,58,2941,1 +26420,1095397,189,9492,1 +26421,1095397,163,8152,1 +26422,1095399,72,3613,1 +26423,1095402,113,5695,1 +26424,1095405,143,7174,1 +26425,1095410,189,9473,1 +26426,1095411,74,3745,1 +26427,1095420,66,3333,1 +26428,1095420,175,8792,1 +26429,1095421,12,644,1 +26430,1095421,109,5486,1 +26431,1095421,92,4625,1 +26432,1095424,15,795,1 +26433,1095426,65,3292,1 +26434,1095432,42,2119,1 +26435,1095432,78,3928,1 +26436,1095432,196,9809,1 +26437,1095432,125,6290,1 +26438,1095442,118,5941,1 +26439,1095444,94,4723,1 +26440,1095444,106,5332,1 +26441,1095456,13,651,1 +26442,1095457,154,7705,1 +26443,1095465,38,1938,1 +26444,1095469,161,8066,1 +26445,1095471,61,3083,1 +26446,1095480,26,1306,1 +26447,1095492,118,5921,1 +26448,1095501,6,347,1 +26449,1095531,20,1004,1 +26450,1095639,10,545,1 +26451,1095648,24,1239,1 +26452,1095840,17,860,1 +26453,1095843,24,1209,1 +26454,1095846,108,5413,1 +26455,1095852,115,5767,1 +26456,1095853,106,5343,1 +26457,1095865,5,292,1 +26458,1095879,142,7107,1 +26459,1095889,15,789,1 +26460,1095897,121,6072,1 +26461,1095900,111,5589,1 +26462,1095900,7,397,1 +26463,1095909,89,4471,1 +26464,1095928,42,2139,1 +26465,1095978,40,2005,1 +26466,1096069,149,7468,1 +26467,1096344,116,5840,1 +26468,1096371,152,7624,1 +26469,1096437,132,6641,1 +26470,1096488,158,7924,1 +26471,1096800,170,8526,1 +26472,1096803,194,9701,1 +26473,1096806,184,9232,1 +26474,1096813,83,4200,1 +26475,1096815,18,930,1 +26476,1096818,0,8,1 +26477,1096825,109,5489,1 +26478,1096825,189,9483,1 +26479,1096833,29,1482,1 +26480,1096836,97,4853,1 +26481,1096884,42,2134,1 +26482,1096899,35,1780,1 +26483,1096909,64,3225,1 +26484,1096920,85,4251,1 +26485,1097281,46,2314,1 +26486,1097295,21,1074,1 +26487,1097297,53,2655,1 +26488,1097317,3,153,1 +26489,1097760,22,1145,1 +26490,1097760,83,4151,1 +26491,1097769,161,8062,1 +26492,1097772,9,464,1 +26493,1097781,96,4805,1 +26494,1097781,71,3563,1 +26495,1097784,177,8896,1 +26496,1097802,136,6833,1 +26497,1097820,75,3782,1 +26498,1097824,166,8324,1 +26499,1097832,108,5428,1 +26500,1097832,68,3435,1 +26501,1097833,22,1122,1 +26502,1097835,43,2169,1 +26503,1097862,182,9134,1 +26504,1097883,103,5191,1 +26505,1097892,41,2082,1 +26506,1098244,21,1067,1 +26507,1098265,96,4809,1 +26508,1098267,15,793,1 +26509,1098294,147,7358,1 +26510,1098315,164,8226,1 +26511,1098324,149,7460,1 +26512,1098330,169,8493,1 +26513,1098336,5,280,1 +26514,1098737,20,1033,1 +26515,1098741,137,6884,1 +26516,1098772,52,2621,1 +26517,1098804,45,2256,1 +26518,1098840,71,3552,1 +26519,1098846,16,813,1 +26520,1099200,26,1318,1 +26521,1099200,78,3911,1 +26522,1099200,112,5629,1 +26523,1099200,160,8027,1 +26524,1099200,83,4152,1 +26525,1099200,91,4563,1 +26526,1099200,145,7289,1 +26527,1099200,86,4339,1 +26528,1099201,174,8704,1 +26529,1099201,35,1788,1 +26530,1099203,187,9388,1 +26531,1099203,98,4906,1 +26532,1099203,25,1284,1 +26533,1099203,175,8800,1 +26534,1099206,77,3866,1 +26535,1099206,68,3423,1 +26536,1099207,127,6378,1 +26537,1099209,26,1322,1 +26538,1099209,156,7837,1 +26539,1099210,178,8903,1 +26540,1099212,165,8266,1 +26541,1099212,122,6106,1 +26542,1099212,87,4371,1 +26543,1099212,109,5479,1 +26544,1099212,55,2787,1 +26545,1099212,156,7843,1 +26546,1099212,29,1451,1 +26547,1099212,113,5692,1 +26548,1099212,26,1321,1 +26549,1099212,0,2,1 +26550,1099213,185,9258,1 +26551,1099213,65,3272,1 +26552,1099214,121,6067,1 +26553,1099214,198,9931,1 +26554,1099215,173,8672,1 +26555,1099215,41,2078,1 +26556,1099221,118,5927,1 +26557,1099224,170,8523,1 +26558,1099224,146,7314,1 +26559,1099225,76,3823,1 +26560,1099225,113,5699,1 +26561,1099227,42,2147,1 +26562,1099227,59,2977,1 +26563,1099230,176,8838,1 +26564,1099236,165,8299,1 +26565,1099236,95,4756,1 +26566,1099236,185,9292,1 +26567,1099237,51,2556,1 +26568,1099237,64,3208,1 +26569,1099237,2,146,1 +26570,1099244,36,1817,1 +26571,1099248,199,9995,1 +26572,1099248,3,186,1 +26573,1099248,74,3736,1 +26574,1099248,167,8383,1 +26575,1099250,153,7691,1 +26576,1099257,29,1483,1 +26577,1099260,92,4642,1 +26578,1099266,158,7935,1 +26579,1099270,130,6545,1 +26580,1099272,195,9779,1 +26581,1099272,2,140,1 +26582,1099272,91,4562,1 +26583,1099274,148,7431,1 +26584,1099276,181,9053,1 +26585,1099281,99,4981,1 +26586,1099284,133,6689,1 +26587,1099284,58,2911,1 +26588,1099284,75,3759,1 +26589,1099285,151,7583,1 +26590,1099293,87,4386,1 +26591,1099293,146,7348,1 +26592,1099302,121,6079,1 +26593,1099302,98,4937,1 +26594,1099308,178,8919,1 +26595,1099308,9,493,1 +26596,1099308,40,2026,1 +26597,1099308,11,567,1 +26598,1099310,68,3421,1 +26599,1099311,160,8041,1 +26600,1099320,156,7802,1 +26601,1099324,172,8644,1 +26602,1099326,6,309,1 +26603,1099326,30,1532,1 +26604,1099332,139,6970,1 +26605,1099333,141,7077,1 +26606,1099338,85,4266,1 +26607,1099344,0,33,1 +26608,1099350,52,2629,1 +26609,1099356,122,6134,1 +26610,1099369,155,7766,1 +26611,1099389,158,7926,1 +26612,1099458,173,8685,1 +26613,1099681,178,8914,1 +26614,1099686,57,2865,1 +26615,1099704,124,6248,1 +26616,1099716,158,7938,1 +26617,1099728,148,7444,1 +26618,1099803,78,3927,1 +26619,1099812,24,1202,1 +26620,1099815,115,5789,1 +26621,1100160,172,8647,1 +26622,1100174,196,9819,1 +26623,1100208,16,834,1 +26624,1100282,82,4129,1 +26625,1100380,170,8509,1 +26626,1100640,139,6969,1 +26627,1100653,152,7609,1 +26628,1100664,105,5276,1 +26629,1100676,168,8439,1 +26630,1100689,7,355,1 +26631,1100700,89,4488,1 +26632,1100724,177,8896,1 +26633,1100724,192,9623,1 +26634,1101600,148,7423,1 +26635,1101602,67,3373,1 +26636,1101610,33,1671,1 +26637,1101615,143,7165,1 +26638,1101624,88,4403,1 +26639,1101624,8,414,1 +26640,1101627,167,8379,1 +26641,1101632,147,7356,1 +26642,1101637,4,205,1 +26643,1101639,28,1424,1 +26644,1101654,142,7142,1 +26645,1101660,5,288,1 +26646,1101660,151,7571,1 +26647,1101672,193,9696,1 +26648,1101684,109,5464,1 +26649,1101688,63,3186,1 +26650,1101696,19,964,1 +26651,1101809,59,2978,1 +26652,1102081,98,4932,1 +26653,1102092,26,1320,1 +26654,1102107,105,5291,1 +26655,1102152,16,838,1 +26656,1102201,17,890,1 +26657,1102572,45,2251,1 +26658,1102608,150,7534,1 +26659,1102623,198,9943,1 +26660,1102687,157,7853,1 +26661,1102764,97,4899,1 +26662,1103065,64,3221,1 +26663,1103521,41,2054,1 +26664,1103533,88,4447,1 +26665,1103535,1,76,1 +26666,1103544,160,8005,1 +26667,1103570,190,9546,1 +26668,1103583,73,3651,1 +26669,1103592,53,2686,1 +26670,1103733,89,4493,1 +26671,1104000,113,5665,1 +26672,1104000,34,1711,1 +26673,1104001,100,5044,1 +26674,1104075,22,1125,1 +26675,1104480,166,8317,1 +26676,1104480,153,7684,1 +26677,1104482,184,9222,1 +26678,1104483,181,9052,1 +26679,1104492,176,8828,1 +26680,1104492,3,192,1 +26681,1104492,138,6940,1 +26682,1104493,167,8392,1 +26683,1104495,152,7620,1 +26684,1104501,4,208,1 +26685,1104504,146,7343,1 +26686,1104504,190,9536,1 +26687,1104504,59,2956,1 +26688,1104504,185,9298,1 +26689,1104504,31,1584,1 +26690,1104505,179,8963,1 +26691,1104505,49,2496,1 +26692,1104507,0,11,1 +26693,1104516,126,6344,1 +26694,1104517,106,5318,1 +26695,1104517,107,5383,1 +26696,1104519,62,3148,1 +26697,1104523,148,7416,1 +26698,1104528,145,7267,1 +26699,1104528,58,2915,1 +26700,1104528,33,1683,1 +26701,1104529,20,1039,1 +26702,1104537,148,7421,1 +26703,1104540,50,2527,1 +26704,1104543,127,6392,1 +26705,1104544,168,8440,1 +26706,1104552,13,656,1 +26707,1104552,112,5643,1 +26708,1104553,51,2555,1 +26709,1104565,146,7330,1 +26710,1104571,164,8222,1 +26711,1104733,112,5648,1 +26712,1105008,12,645,1 +26713,1105020,13,695,1 +26714,1105469,40,2003,1 +26715,1105482,115,5775,1 +26716,1105497,57,2877,1 +26717,1105525,26,1303,1 +26718,1105920,25,1277,1 +26719,1105926,84,4224,1 +26720,1105962,74,3717,1 +26721,1105992,20,1032,1 +26722,1106028,79,3963,1 +26723,1106029,87,4392,1 +26724,1106058,138,6942,1 +26725,1106460,27,1360,1 +26726,1107363,163,8186,1 +26727,1107372,0,37,1 +26728,1107384,50,2504,1 +26729,1107384,137,6898,1 +26730,1107384,69,3476,1 +26731,1107396,70,3550,1 +26732,1107409,82,4144,1 +26733,1107420,126,6321,1 +26734,1107433,95,4791,1 +26735,1107433,111,5590,1 +26736,1107435,9,494,1 +26737,1107504,196,9819,1 +26738,1107843,148,7428,1 +26739,1107864,129,6472,1 +26740,1107866,173,8684,1 +26741,1107937,25,1275,1 +26742,1108332,68,3413,1 +26743,1108332,108,5435,1 +26744,1108333,70,3526,1 +26745,1108800,128,6437,1 +26746,1108802,172,8633,1 +26747,1108803,122,6111,1 +26748,1108812,2,122,1 +26749,1108824,65,3275,1 +26750,1108827,198,9903,1 +26751,1108828,82,4103,1 +26752,1108830,188,9450,1 +26753,1108833,89,4472,1 +26754,1108847,182,9108,1 +26755,1108848,191,9555,1 +26756,1108848,90,4520,1 +26757,1108860,166,8339,1 +26758,1108863,14,716,1 +26759,1108873,131,6579,1 +26760,1108897,113,5692,1 +26761,1108907,27,1390,1 +26762,1108908,75,3769,1 +26763,1108908,111,5584,1 +26764,1108945,89,4470,1 +26765,1108947,65,3290,1 +26766,1108958,109,5489,1 +26767,1109010,185,9274,1 +26768,1109040,142,7147,1 +26769,1109280,30,1526,1 +26770,1109280,174,8740,1 +26771,1109281,163,8186,1 +26772,1109282,69,3482,1 +26773,1109283,113,5688,1 +26774,1109292,116,5815,1 +26775,1109329,24,1237,1 +26776,1109330,94,4705,1 +26777,1109341,181,9058,1 +26778,1109361,23,1161,1 +26779,1109362,14,730,1 +26780,1109370,150,7537,1 +26781,1109413,7,379,1 +26782,1109438,33,1652,1 +26783,1109473,58,2943,1 +26784,1109799,33,1665,1 +26785,1109844,28,1404,1 +26786,1110253,64,3225,1 +26787,1110724,70,3513,1 +26788,1110733,69,3493,1 +26789,1110744,72,3638,1 +26790,1110747,119,5979,1 +26791,1110759,117,5856,1 +26792,1110771,79,3954,1 +26793,1110777,12,649,1 +26794,1110780,7,362,1 +26795,1110780,0,25,1 +26796,1110780,153,7686,1 +26797,1110802,24,1226,1 +26798,1110834,159,7995,1 +26799,1110840,121,6081,1 +26800,1110840,193,9664,1 +26801,1110841,91,4594,1 +26802,1110904,154,7750,1 +26803,1111021,24,1221,1 +26804,1111092,138,6929,1 +26805,1111200,194,9715,1 +26806,1111201,63,3158,1 +26807,1111208,139,6968,1 +26808,1111209,117,5874,1 +26809,1111212,13,675,1 +26810,1111212,111,5578,1 +26811,1111212,173,8692,1 +26812,1111213,26,1350,1 +26813,1111214,73,3679,1 +26814,1111215,93,4684,1 +26815,1111224,73,3664,1 +26816,1111225,124,6224,1 +26817,1111236,150,7509,1 +26818,1111236,118,5942,1 +26819,1111236,83,4158,1 +26820,1111243,69,3469,1 +26821,1111248,87,4355,1 +26822,1111248,125,6296,1 +26823,1111251,145,7280,1 +26824,1111254,86,4313,1 +26825,1111257,137,6879,1 +26826,1111260,112,5613,1 +26827,1111262,108,5435,1 +26828,1111306,137,6861,1 +26829,1111320,93,4681,1 +26830,1111320,70,3537,1 +26831,1111334,154,7710,1 +26832,1111370,0,26,1 +26833,1111388,123,6186,1 +26834,1111680,122,6104,1 +26835,1111681,141,7095,1 +26836,1111681,77,3871,1 +26837,1111683,6,302,1 +26838,1111689,132,6640,1 +26839,1111689,169,8475,1 +26840,1111692,65,3261,1 +26841,1111693,104,5215,1 +26842,1111704,185,9251,1 +26843,1111707,46,2313,1 +26844,1111710,194,9734,1 +26845,1111713,38,1919,1 +26846,1111731,22,1149,1 +26847,1111749,143,7167,1 +26848,1111754,31,1589,1 +26849,1111764,77,3887,1 +26850,1111765,14,735,1 +26851,1111782,23,1163,1 +26852,1111789,7,353,1 +26853,1111812,23,1195,1 +26854,1111839,21,1100,1 +26855,1111860,186,9346,1 +26856,1112161,14,729,1 +26857,1112184,4,207,1 +26858,1112187,13,687,1 +26859,1112195,27,1368,1 +26860,1112196,62,3104,1 +26861,1112220,35,1790,1 +26862,1112233,39,1968,1 +26863,1112269,40,2022,1 +26864,1112274,111,5590,1 +26865,1112645,4,243,1 +26866,1112645,196,9826,1 +26867,1112649,29,1493,1 +26868,1112658,17,856,1 +26869,1112671,183,9177,1 +26870,1112724,161,8086,1 +26871,1112775,194,9739,1 +26872,1113122,33,1683,1 +26873,1113134,176,8801,1 +26874,1113600,145,7280,1 +26875,1113604,94,4723,1 +26876,1113642,65,3289,1 +26877,1113648,173,8685,1 +26878,1113651,14,742,1 +26879,1113681,86,4322,1 +26880,1113699,148,7403,1 +26881,1113747,156,7817,1 +26882,1114080,6,338,1 +26883,1114080,92,4609,1 +26884,1114086,33,1692,1 +26885,1114092,13,683,1 +26886,1114092,97,4880,1 +26887,1114104,157,7866,1 +26888,1114131,172,8634,1 +26889,1114156,182,9122,1 +26890,1114168,21,1065,1 +26891,1114185,92,4646,1 +26892,1114200,56,2805,1 +26893,1114200,165,8252,1 +26894,1114201,180,9013,1 +26895,1114563,3,181,1 +26896,1114576,55,2795,1 +26897,1114598,119,5959,1 +26898,1114620,83,4154,1 +26899,1115106,54,2704,1 +26900,1115220,40,2049,1 +26901,1115561,36,1845,1 +26902,1115568,60,3037,1 +26903,1116492,161,8052,1 +26904,1116528,83,4173,1 +26905,1116962,40,2038,1 +26906,1117279,128,6445,1 +26907,1117920,84,4215,1 +26908,1117932,57,2887,1 +26909,1117932,8,408,1 +26910,1117995,141,7052,1 +26911,1118400,64,3204,1 +26912,1118400,37,1861,1 +26913,1118418,179,8975,1 +26914,1118442,111,5576,1 +26915,1118485,55,2764,1 +26916,1118493,77,3859,1 +26917,1118570,126,6315,1 +26918,1118880,10,524,1 +26919,1118880,168,8432,1 +26920,1118882,199,9971,1 +26921,1118887,69,3452,1 +26922,1118919,146,7316,1 +26923,1118976,114,5743,1 +26924,1118976,129,6497,1 +26925,1119003,163,8152,1 +26926,1119036,160,8024,1 +26927,1119360,4,233,1 +26928,1119360,49,2452,1 +26929,1119372,160,8027,1 +26930,1119405,121,6054,1 +26931,1119408,144,7203,1 +26932,1119432,19,975,1 +26933,1119456,146,7301,1 +26934,1119463,102,5103,1 +26935,1119471,36,1850,1 +26936,1119495,78,3936,1 +26937,1120332,174,8727,1 +26938,1120345,139,6977,1 +26939,1120345,155,7764,1 +26940,1120393,30,1543,1 +26941,1120824,122,6127,1 +26942,1120827,173,8656,1 +26943,1120863,17,852,1 +26944,1120932,14,743,1 +26945,1121280,189,9470,1 +26946,1121292,10,547,1 +26947,1121304,111,5551,1 +26948,1121316,2,124,1 +26949,1121316,169,8469,1 +26950,1121316,160,8014,1 +26951,1121319,124,6228,1 +26952,1121328,48,2429,1 +26953,1121328,194,9729,1 +26954,1121355,2,125,1 +26955,1121385,194,9704,1 +26956,1121389,102,5114,1 +26957,1121760,81,4090,1 +26958,1121760,23,1160,1 +26959,1121760,30,1518,1 +26960,1121762,51,2590,1 +26961,1121763,89,4464,1 +26962,1121766,48,2425,1 +26963,1121772,185,9286,1 +26964,1121773,13,685,1 +26965,1121775,34,1706,1 +26966,1121784,13,657,1 +26967,1121785,163,8162,1 +26968,1121796,180,9025,1 +26969,1121805,49,2452,1 +26970,1121808,173,8668,1 +26971,1121820,188,9449,1 +26972,1121844,199,9957,1 +26973,1121856,186,9327,1 +26974,1121880,79,3961,1 +26975,1121914,111,5582,1 +26976,1121916,131,6594,1 +26977,1122242,89,4490,1 +26978,1122258,65,3283,1 +26979,1122273,146,7307,1 +26980,1122276,123,6151,1 +26981,1122303,126,6308,1 +26982,1122303,120,6049,1 +26983,1122720,180,9020,1 +26984,1122720,161,8075,1 +26985,1122780,78,3928,1 +26986,1122793,67,3390,1 +26987,1122798,23,1183,1 +26988,1122888,41,2089,1 +26989,1122916,185,9297,1 +26990,1123213,11,569,1 +26991,1123776,43,2153,1 +26992,1123826,60,3003,1 +26993,1124160,62,3124,1 +26994,1124208,189,9494,1 +26995,1124316,104,5222,1 +26996,1125120,17,891,1 +26997,1125122,102,5132,1 +26998,1125123,173,8662,1 +26999,1125151,7,358,1 +27000,1125156,78,3911,1 +27001,1125157,148,7415,1 +27002,1125157,102,5122,1 +27003,1125164,94,4725,1 +27004,1125174,193,9685,1 +27005,1125183,126,6341,1 +27006,1125200,160,8006,1 +27007,1125264,158,7925,1 +27008,1125600,160,8002,1 +27009,1125624,84,4209,1 +27010,1126080,84,4213,1 +27011,1126081,41,2079,1 +27012,1126081,113,5655,1 +27013,1126081,78,3906,1 +27014,1126083,4,247,1 +27015,1126086,110,5540,1 +27016,1126093,69,3485,1 +27017,1126093,166,8315,1 +27018,1126095,25,1287,1 +27019,1126095,57,2856,1 +27020,1126098,139,6954,1 +27021,1126104,140,7019,1 +27022,1126106,104,5223,1 +27023,1126106,174,8706,1 +27024,1126114,46,2304,1 +27025,1126116,30,1537,1 +27026,1126122,89,4483,1 +27027,1126125,69,3463,1 +27028,1126128,8,403,1 +27029,1126131,57,2896,1 +27030,1126131,117,5853,1 +27031,1126179,195,9754,1 +27032,1126214,139,6979,1 +27033,1126249,57,2897,1 +27034,1126323,26,1341,1 +27035,1126395,34,1711,1 +27036,1126560,178,8903,1 +27037,1126563,150,7510,1 +27038,1126572,180,9005,1 +27039,1126572,154,7715,1 +27040,1126573,87,4392,1 +27041,1126573,11,597,1 +27042,1126578,137,6888,1 +27043,1126584,96,4811,1 +27044,1126596,83,4198,1 +27045,1126596,106,5328,1 +27046,1126596,74,3727,1 +27047,1126598,31,1574,1 +27048,1126599,149,7468,1 +27049,1126608,111,5553,1 +27050,1126608,174,8719,1 +27051,1126620,183,9191,1 +27052,1126635,181,9054,1 +27053,1126645,187,9373,1 +27054,1126669,75,3776,1 +27055,1126677,197,9857,1 +27056,1126680,104,5239,1 +27057,1126694,82,4127,1 +27058,1127520,147,7387,1 +27059,1127521,75,3777,1 +27060,1127568,198,9922,1 +27061,1127592,125,6256,1 +27062,1127649,60,3026,1 +27063,1128000,89,4481,1 +27064,1128017,35,1754,1 +27065,1128017,66,3340,1 +27066,1128024,156,7830,1 +27067,1128036,45,2295,1 +27068,1128120,81,4098,1 +27069,1128504,61,3100,1 +27070,1128505,144,7215,1 +27071,1128513,75,3775,1 +27072,1128518,86,4345,1 +27073,1128535,44,2234,1 +27074,1128960,164,8218,1 +27075,1128961,117,5884,1 +27076,1128962,87,4399,1 +27077,1128965,184,9232,1 +27078,1128967,177,8869,1 +27079,1128971,171,8586,1 +27080,1128972,173,8696,1 +27081,1128972,93,4683,1 +27082,1128972,5,270,1 +27083,1128973,139,6976,1 +27084,1128975,194,9748,1 +27085,1128977,171,8589,1 +27086,1128984,11,553,1 +27087,1128986,114,5737,1 +27088,1128987,185,9267,1 +27089,1128987,15,791,1 +27090,1128992,38,1918,1 +27091,1128999,174,8724,1 +27092,1129005,58,2931,1 +27093,1129005,170,8534,1 +27094,1129011,76,3825,1 +27095,1129012,109,5496,1 +27096,1129013,135,6800,1 +27097,1129021,69,3483,1 +27098,1129022,73,3654,1 +27099,1129023,95,4763,1 +27100,1129027,7,363,1 +27101,1129030,143,7192,1 +27102,1129032,20,1009,1 +27103,1129043,39,1971,1 +27104,1129044,81,4089,1 +27105,1129046,38,1950,1 +27106,1129066,25,1255,1 +27107,1129158,140,7013,1 +27108,1129166,46,2338,1 +27109,1129188,195,9765,1 +27110,1129191,171,8561,1 +27111,1129228,30,1533,1 +27112,1129440,115,5791,1 +27113,1129452,146,7307,1 +27114,1129512,197,9859,1 +27115,1129614,20,1014,1 +27116,1129921,50,2538,1 +27117,1129926,124,6243,1 +27118,1129934,91,4600,1 +27119,1129941,194,9704,1 +27120,1129956,69,3488,1 +27121,1129972,168,8416,1 +27122,1130011,86,4316,1 +27123,1130064,13,694,1 +27124,1130076,188,9419,1 +27125,1130400,153,7652,1 +27126,1130400,139,6979,1 +27127,1130463,161,8068,1 +27128,1130482,101,5057,1 +27129,1130484,37,1890,1 +27130,1130901,168,8439,1 +27131,1131360,138,6939,1 +27132,1131361,125,6296,1 +27133,1131372,9,493,1 +27134,1131384,171,8585,1 +27135,1131393,31,1571,1 +27136,1131421,135,6764,1 +27137,1131456,107,5385,1 +27138,1131493,187,9358,1 +27139,1131540,81,4068,1 +27140,1132321,144,7223,1 +27141,1132328,145,7264,1 +27142,1132331,181,9088,1 +27143,1132332,184,9214,1 +27144,1132332,105,5252,1 +27145,1132333,140,7005,1 +27146,1132335,135,6793,1 +27147,1132347,118,5910,1 +27148,1132353,3,189,1 +27149,1132357,180,9045,1 +27150,1132360,44,2228,1 +27151,1132360,16,815,1 +27152,1132362,62,3133,1 +27153,1132369,114,5712,1 +27154,1132381,161,8074,1 +27155,1132393,18,902,1 +27156,1132407,68,3405,1 +27157,1132464,36,1808,1 +27158,1132800,61,3093,1 +27159,1132809,58,2940,1 +27160,1132812,94,4748,1 +27161,1132813,194,9736,1 +27162,1132822,139,6977,1 +27163,1132824,85,4280,1 +27164,1132825,5,286,1 +27165,1132836,136,6816,1 +27166,1132866,136,6820,1 +27167,1132885,176,8840,1 +27168,1132980,165,8265,1 +27169,1133280,143,7196,1 +27170,1133280,112,5618,1 +27171,1133280,83,4169,1 +27172,1133280,96,4819,1 +27173,1133281,196,9807,1 +27174,1133281,86,4313,1 +27175,1133281,148,7421,1 +27176,1133281,86,4335,1 +27177,1133282,150,7537,1 +27178,1133282,172,8624,1 +27179,1133282,161,8073,1 +27180,1133283,69,3463,1 +27181,1133283,83,4177,1 +27182,1133284,123,6155,1 +27183,1133285,8,420,1 +27184,1133286,147,7372,1 +27185,1133287,61,3051,1 +27186,1133289,91,4592,1 +27187,1133290,100,5003,1 +27188,1133291,79,3969,1 +27189,1133292,194,9750,1 +27190,1133292,192,9625,1 +27191,1133292,59,2977,1 +27192,1133292,157,7887,1 +27193,1133292,131,6572,1 +27194,1133292,58,2920,1 +27195,1133293,52,2610,1 +27196,1133293,34,1709,1 +27197,1133293,89,4468,1 +27198,1133296,185,9257,1 +27199,1133301,167,8372,1 +27200,1133304,65,3275,1 +27201,1133304,194,9745,1 +27202,1133304,7,395,1 +27203,1133304,182,9122,1 +27204,1133304,59,2952,1 +27205,1133304,87,4379,1 +27206,1133304,193,9656,1 +27207,1133305,168,8420,1 +27208,1133305,76,3823,1 +27209,1133307,96,4807,1 +27210,1133316,70,3507,1 +27211,1133316,51,2597,1 +27212,1133316,140,7009,1 +27213,1133317,143,7173,1 +27214,1133317,181,9060,1 +27215,1133318,85,4283,1 +27216,1133319,125,6260,1 +27217,1133328,171,8573,1 +27218,1133328,21,1054,1 +27219,1133329,53,2679,1 +27220,1133331,122,6120,1 +27221,1133334,16,837,1 +27222,1133335,184,9242,1 +27223,1133336,25,1290,1 +27224,1133337,175,8756,1 +27225,1133340,171,8597,1 +27226,1133340,148,7414,1 +27227,1133340,16,850,1 +27228,1133341,8,413,1 +27229,1133346,135,6780,1 +27230,1133347,180,9044,1 +27231,1133352,22,1110,1 +27232,1133355,21,1099,1 +27233,1133364,55,2765,1 +27234,1133365,163,8184,1 +27235,1133370,140,7023,1 +27236,1133388,100,5025,1 +27237,1133389,146,7322,1 +27238,1133390,169,8468,1 +27239,1133391,141,7069,1 +27240,1133394,150,7516,1 +27241,1133397,133,6670,1 +27242,1133400,78,3927,1 +27243,1133412,57,2869,1 +27244,1133436,43,2162,1 +27245,1133520,184,9223,1 +27246,1133556,16,808,1 +27247,1133760,178,8904,1 +27248,1133760,127,6353,1 +27249,1133760,6,310,1 +27250,1133760,45,2252,1 +27251,1133761,121,6063,1 +27252,1133762,35,1764,1 +27253,1133766,113,5662,1 +27254,1133772,78,3913,1 +27255,1133773,54,2719,1 +27256,1133773,98,4907,1 +27257,1133773,181,9056,1 +27258,1133774,162,8108,1 +27259,1133776,156,7816,1 +27260,1133784,163,8198,1 +27261,1133785,57,2898,1 +27262,1133786,152,7639,1 +27263,1133790,65,3288,1 +27264,1133790,19,977,1 +27265,1133793,78,3928,1 +27266,1133796,151,7578,1 +27267,1133797,139,6991,1 +27268,1133799,157,7881,1 +27269,1133805,164,8204,1 +27270,1133806,93,4678,1 +27271,1133808,106,5313,1 +27272,1133808,143,7171,1 +27273,1133820,145,7297,1 +27274,1133820,160,8001,1 +27275,1133820,14,747,1 +27276,1133820,50,2513,1 +27277,1133823,123,6190,1 +27278,1133826,128,6442,1 +27279,1133833,57,2853,1 +27280,1133844,23,1174,1 +27281,1133844,154,7718,1 +27282,1133856,67,3379,1 +27283,1133857,40,2027,1 +27284,1133874,172,8640,1 +27285,1133880,81,4067,1 +27286,1133892,147,7382,1 +27287,1133965,142,7123,1 +27288,1133973,198,9926,1 +27289,1134264,158,7945,1 +27290,1134276,192,9613,1 +27291,1134276,12,640,1 +27292,1134298,94,4730,1 +27293,1134720,123,6191,1 +27294,1134723,163,8186,1 +27295,1134723,154,7717,1 +27296,1134749,30,1505,1 +27297,1134755,176,8820,1 +27298,1134756,74,3732,1 +27299,1134759,167,8352,1 +27300,1134765,132,6604,1 +27301,1134852,89,4480,1 +27302,1134909,181,9077,1 +27303,1134972,76,3823,1 +27304,1135200,178,8922,1 +27305,1135212,116,5835,1 +27306,1135222,142,7105,1 +27307,1135245,102,5108,1 +27308,1135380,21,1057,1 +27309,1135680,174,8744,1 +27310,1135695,6,340,1 +27311,1135704,116,5849,1 +27312,1135788,90,4502,1 +27313,1136160,55,2760,1 +27314,1136167,17,880,1 +27315,1136169,99,4980,1 +27316,1136172,57,2857,1 +27317,1136173,1,56,1 +27318,1136173,143,7177,1 +27319,1136182,158,7932,1 +27320,1136184,43,2170,1 +27321,1136190,100,5045,1 +27322,1136197,190,9526,1 +27323,1136204,104,5223,1 +27324,1136207,62,3145,1 +27325,1136207,96,4804,1 +27326,1136212,173,8680,1 +27327,1136214,98,4921,1 +27328,1136217,38,1925,1 +27329,1136221,149,7483,1 +27330,1136232,123,6176,1 +27331,1136237,181,9098,1 +27332,1136245,94,4732,1 +27333,1136261,35,1792,1 +27334,1136487,136,6830,1 +27335,1136640,137,6858,1 +27336,1136640,86,4335,1 +27337,1136650,118,5909,1 +27338,1136655,31,1566,1 +27339,1136676,72,3633,1 +27340,1136724,115,5795,1 +27341,1136760,79,3962,1 +27342,1136785,75,3784,1 +27343,1136802,72,3635,1 +27344,1137120,103,5198,1 +27345,1137132,59,2969,1 +27346,1137157,15,768,1 +27347,1137181,89,4458,1 +27348,1137193,117,5861,1 +27349,1137205,106,5327,1 +27350,1137247,112,5609,1 +27351,1137276,79,3977,1 +27352,1137288,67,3387,1 +27353,1138086,131,6570,1 +27354,1138095,190,9546,1 +27355,1138095,77,3863,1 +27356,1138116,75,3770,1 +27357,1138140,67,3352,1 +27358,1138146,167,8375,1 +27359,1138490,64,3250,1 +27360,1138560,141,7092,1 +27361,1138572,111,5556,1 +27362,1138613,40,2031,1 +27363,1138621,107,5362,1 +27364,1138632,121,6097,1 +27365,1138657,62,3107,1 +27366,1139040,109,5498,1 +27367,1139040,125,6282,1 +27368,1139040,52,2621,1 +27369,1139040,100,5012,1 +27370,1139041,154,7748,1 +27371,1139041,23,1184,1 +27372,1139043,28,1436,1 +27373,1139046,28,1428,1 +27374,1139050,30,1505,1 +27375,1139052,85,4287,1 +27376,1139052,163,8151,1 +27377,1139052,151,7585,1 +27378,1139052,121,6098,1 +27379,1139062,116,5820,1 +27380,1139064,79,3988,1 +27381,1139077,85,4277,1 +27382,1139091,112,5614,1 +27383,1139092,14,720,1 +27384,1139097,99,4961,1 +27385,1139100,107,5357,1 +27386,1139113,171,8568,1 +27387,1139139,34,1716,1 +27388,1139148,117,5899,1 +27389,1139176,46,2349,1 +27390,1139184,180,9042,1 +27391,1139199,134,6721,1 +27392,1139220,161,8052,1 +27393,1139268,42,2112,1 +27394,1139319,71,3576,1 +27395,1139355,114,5722,1 +27396,1139521,199,9951,1 +27397,1139619,0,12,1 +27398,1140006,93,4652,1 +27399,1140024,46,2341,1 +27400,1140037,45,2281,1 +27401,1140064,104,5234,1 +27402,1140480,186,9334,1 +27403,1140480,15,799,1 +27404,1140480,167,8381,1 +27405,1140480,112,5648,1 +27406,1140481,152,7624,1 +27407,1140481,169,8493,1 +27408,1140481,0,50,1 +27409,1140482,43,2163,1 +27410,1140485,99,4983,1 +27411,1140486,17,858,1 +27412,1140487,125,6288,1 +27413,1140492,161,8078,1 +27414,1140492,50,2529,1 +27415,1140492,153,7669,1 +27416,1140493,157,7886,1 +27417,1140493,159,8000,1 +27418,1140493,32,1611,1 +27419,1140495,138,6935,1 +27420,1140495,61,3069,1 +27421,1140495,69,3453,1 +27422,1140495,85,4257,1 +27423,1140495,131,6576,1 +27424,1140497,4,208,1 +27425,1140500,163,8198,1 +27426,1140504,11,596,1 +27427,1140505,144,7228,1 +27428,1140505,98,4938,1 +27429,1140506,170,8544,1 +27430,1140507,0,35,1 +27431,1140511,102,5119,1 +27432,1140516,146,7327,1 +27433,1140517,110,5501,1 +27434,1140520,66,3327,1 +27435,1140522,55,2790,1 +27436,1140528,103,5162,1 +27437,1140528,84,4201,1 +27438,1140528,150,7541,1 +27439,1140534,46,2346,1 +27440,1140534,157,7879,1 +27441,1140537,165,8280,1 +27442,1140540,171,8562,1 +27443,1140540,122,6103,1 +27444,1140541,42,2145,1 +27445,1140541,51,2580,1 +27446,1140542,11,586,1 +27447,1140552,167,8364,1 +27448,1140552,114,5724,1 +27449,1140558,67,3400,1 +27450,1140570,115,5792,1 +27451,1140573,45,2291,1 +27452,1140576,194,9725,1 +27453,1140576,158,7919,1 +27454,1140577,137,6870,1 +27455,1140579,130,6506,1 +27456,1140586,19,967,1 +27457,1140588,108,5402,1 +27458,1140591,58,2909,1 +27459,1140597,198,9910,1 +27460,1140601,58,2946,1 +27461,1140612,184,9213,1 +27462,1140612,3,175,1 +27463,1140618,66,3338,1 +27464,1140622,175,8786,1 +27465,1140624,103,5194,1 +27466,1140627,165,8294,1 +27467,1140640,92,4624,1 +27468,1140681,41,2095,1 +27469,1140708,32,1641,1 +27470,1140721,90,4543,1 +27471,1140960,47,2387,1 +27472,1140972,67,3393,1 +27473,1140984,70,3536,1 +27474,1140997,122,6133,1 +27475,1141028,107,5377,1 +27476,1141032,2,148,1 +27477,1141107,193,9690,1 +27478,1141441,61,3077,1 +27479,1141444,155,7791,1 +27480,1141450,147,7370,1 +27481,1141458,8,416,1 +27482,1141476,167,8389,1 +27483,1141488,102,5133,1 +27484,1141500,162,8145,1 +27485,1141503,192,9613,1 +27486,1141525,156,7805,1 +27487,1141549,13,695,1 +27488,1141554,90,4525,1 +27489,1142497,145,7278,1 +27490,1142520,74,3707,1 +27491,1142784,175,8779,1 +27492,1142880,189,9461,1 +27493,1142880,50,2505,1 +27494,1142880,29,1477,1 +27495,1142881,50,2550,1 +27496,1142881,68,3402,1 +27497,1142881,45,2296,1 +27498,1142883,140,7005,1 +27499,1142883,21,1059,1 +27500,1142892,184,9250,1 +27501,1142892,141,7054,1 +27502,1142893,29,1474,1 +27503,1142895,61,3067,1 +27504,1142898,22,1141,1 +27505,1142905,186,9320,1 +27506,1142908,94,4721,1 +27507,1142938,45,2266,1 +27508,1142940,188,9446,1 +27509,1142944,29,1469,1 +27510,1142962,117,5865,1 +27511,1142967,13,691,1 +27512,1142975,14,744,1 +27513,1142976,22,1132,1 +27514,1142986,69,3473,1 +27515,1143000,32,1626,1 +27516,1143078,169,8497,1 +27517,1143366,76,3832,1 +27518,1143382,197,9894,1 +27519,1143385,41,2076,1 +27520,1143408,191,9562,1 +27521,1143450,136,6816,1 +27522,1143456,160,8047,1 +27523,1143501,185,9274,1 +27524,1143840,13,677,1 +27525,1143843,105,5278,1 +27526,1143865,82,4126,1 +27527,1143865,53,2669,1 +27528,1143880,91,4578,1 +27529,1143900,36,1842,1 +27530,1143912,26,1329,1 +27531,1143918,31,1556,1 +27532,1143922,63,3200,1 +27533,1144044,193,9689,1 +27534,1144323,72,3618,1 +27535,1144344,14,732,1 +27536,1144380,97,4898,1 +27537,1144398,106,5320,1 +27538,1144442,9,489,1 +27539,1144573,195,9770,1 +27540,1144843,78,3914,1 +27541,1145280,115,5768,1 +27542,1145280,53,2690,1 +27543,1145280,192,9620,1 +27544,1145281,31,1568,1 +27545,1145281,162,8138,1 +27546,1145281,118,5916,1 +27547,1145283,199,9995,1 +27548,1145283,78,3930,1 +27549,1145283,96,4826,1 +27550,1145284,45,2280,1 +27551,1145285,145,7262,1 +27552,1145286,179,8959,1 +27553,1145289,168,8448,1 +27554,1145289,147,7371,1 +27555,1145289,33,1683,1 +27556,1145290,136,6849,1 +27557,1145292,117,5862,1 +27558,1145292,3,184,1 +27559,1145292,189,9467,1 +27560,1145292,142,7102,1 +27561,1145292,43,2158,1 +27562,1145292,82,4119,1 +27563,1145292,59,2968,1 +27564,1145292,17,894,1 +27565,1145293,106,5318,1 +27566,1145294,125,6275,1 +27567,1145300,116,5818,1 +27568,1145301,189,9469,1 +27569,1145304,41,2096,1 +27570,1145304,10,531,1 +27571,1145304,80,4005,1 +27572,1145304,14,719,1 +27573,1145304,34,1723,1 +27574,1145304,20,1045,1 +27575,1145305,132,6627,1 +27576,1145305,129,6462,1 +27577,1145305,118,5933,1 +27578,1145305,142,7102,1 +27579,1145307,143,7156,1 +27580,1145307,4,239,1 +27581,1145307,14,703,1 +27582,1145308,61,3088,1 +27583,1145309,125,6270,1 +27584,1145310,41,2075,1 +27585,1145316,0,22,1 +27586,1145316,154,7749,1 +27587,1145316,40,2044,1 +27588,1145316,174,8741,1 +27589,1145317,196,9831,1 +27590,1145318,154,7703,1 +27591,1145325,76,3809,1 +27592,1145325,167,8357,1 +27593,1145328,151,7599,1 +27594,1145328,137,6856,1 +27595,1145328,82,4110,1 +27596,1145328,183,9161,1 +27597,1145329,10,508,1 +27598,1145331,103,5170,1 +27599,1145331,97,4900,1 +27600,1145331,195,9769,1 +27601,1145334,76,3839,1 +27602,1145340,91,4554,1 +27603,1145340,126,6338,1 +27604,1145340,158,7929,1 +27605,1145341,147,7368,1 +27606,1145352,142,7130,1 +27607,1145352,158,7907,1 +27608,1145352,40,2028,1 +27609,1145352,191,9563,1 +27610,1145352,24,1209,1 +27611,1145354,128,6450,1 +27612,1145355,11,578,1 +27613,1145355,120,6029,1 +27614,1145361,10,527,1 +27615,1145364,196,9820,1 +27616,1145364,59,2974,1 +27617,1145365,182,9124,1 +27618,1145366,56,2849,1 +27619,1145373,99,4954,1 +27620,1145376,98,4928,1 +27621,1145376,167,8365,1 +27622,1145378,68,3405,1 +27623,1145387,57,2888,1 +27624,1145388,114,5746,1 +27625,1145388,93,4679,1 +27626,1145388,66,3334,1 +27627,1145400,157,7861,1 +27628,1145401,65,3283,1 +27629,1145401,176,8840,1 +27630,1145412,178,8919,1 +27631,1145416,117,5867,1 +27632,1145421,64,3204,1 +27633,1145424,65,3271,1 +27634,1145436,103,5189,1 +27635,1145448,197,9875,1 +27636,1145472,80,4003,1 +27637,1145496,89,4483,1 +27638,1145619,156,7850,1 +27639,1145766,125,6255,1 +27640,1145778,69,3494,1 +27641,1145784,124,6216,1 +27642,1145784,115,5757,1 +27643,1145826,91,4594,1 +27644,1145838,97,4885,1 +27645,1145844,137,6858,1 +27646,1146276,136,6816,1 +27647,1146297,161,8071,1 +27648,1146318,27,1354,1 +27649,1146409,111,5574,1 +27650,1146732,131,6587,1 +27651,1146733,131,6553,1 +27652,1147200,138,6929,1 +27653,1147200,19,989,1 +27654,1147201,118,5949,1 +27655,1147202,11,556,1 +27656,1147204,129,6487,1 +27657,1147209,15,783,1 +27658,1147209,89,4490,1 +27659,1147212,199,9985,1 +27660,1147212,21,1078,1 +27661,1147215,20,1004,1 +27662,1147225,24,1204,1 +27663,1147236,138,6911,1 +27664,1147248,10,531,1 +27665,1147250,104,5249,1 +27666,1147253,6,341,1 +27667,1147272,99,4977,1 +27668,1147272,121,6060,1 +27669,1147273,127,6372,1 +27670,1147275,56,2814,1 +27671,1147278,85,4283,1 +27672,1147288,98,4927,1 +27673,1147298,63,3177,1 +27674,1147303,47,2365,1 +27675,1147356,89,4453,1 +27676,1147369,41,2084,1 +27677,1147682,40,2007,1 +27678,1147692,29,1494,1 +27679,1147704,125,6260,1 +27680,1147719,1,62,1 +27681,1147742,76,3814,1 +27682,1147743,92,4621,1 +27683,1147750,12,627,1 +27684,1147765,65,3275,1 +27685,1148196,187,9398,1 +27686,1148640,33,1658,1 +27687,1148640,20,1043,1 +27688,1148652,65,3271,1 +27689,1148653,139,6998,1 +27690,1148660,96,4808,1 +27691,1148685,105,5293,1 +27692,1148685,7,364,1 +27693,1148742,32,1624,1 +27694,1148754,83,4179,1 +27695,1148761,17,867,1 +27696,1148922,99,4960,1 +27697,1148953,123,6165,1 +27698,1149120,160,8008,1 +27699,1149120,159,7968,1 +27700,1149138,106,5339,1 +27701,1149159,145,7272,1 +27702,1149210,107,5368,1 +27703,1149216,15,783,1 +27704,1149672,69,3478,1 +27705,1150082,171,8572,1 +27706,1150083,89,4466,1 +27707,1150086,168,8445,1 +27708,1150092,124,6211,1 +27709,1150094,34,1742,1 +27710,1150102,83,4178,1 +27711,1150105,199,9958,1 +27712,1150106,24,1242,1 +27713,1150141,13,692,1 +27714,1150141,2,102,1 +27715,1150155,129,6481,1 +27716,1150176,198,9934,1 +27717,1150177,123,6186,1 +27718,1150187,195,9785,1 +27719,1150188,164,8241,1 +27720,1150207,160,8019,1 +27721,1150213,21,1088,1 +27722,1150311,144,7229,1 +27723,1150609,55,2772,1 +27724,1150782,168,8449,1 +27725,1151041,23,1167,1 +27726,1151052,136,6850,1 +27727,1151052,13,663,1 +27728,1151061,74,3702,1 +27729,1151076,165,8300,1 +27730,1151082,176,8832,1 +27731,1151126,45,2269,1 +27732,1151244,63,3188,1 +27733,1151244,98,4918,1 +27734,1151520,107,5379,1 +27735,1151526,72,3612,1 +27736,1151529,155,7756,1 +27737,1151532,5,268,1 +27738,1151532,33,1658,1 +27739,1151535,112,5602,1 +27740,1151540,150,7510,1 +27741,1151544,195,9800,1 +27742,1151545,158,7937,1 +27743,1151556,104,5205,1 +27744,1151558,159,7966,1 +27745,1151560,103,5198,1 +27746,1151568,187,9365,1 +27747,1151578,133,6658,1 +27748,1151628,31,1565,1 +27749,1151628,177,8887,1 +27750,1151652,85,4267,1 +27751,1151749,82,4121,1 +27752,1152000,111,5560,1 +27753,1152480,110,5543,1 +27754,1152492,63,3173,1 +27755,1152506,78,3945,1 +27756,1152513,37,1891,1 +27757,1152516,83,4158,1 +27758,1152532,146,7304,1 +27759,1152534,14,718,1 +27760,1152537,40,2043,1 +27761,1152540,10,545,1 +27762,1152552,182,9116,1 +27763,1152555,109,5469,1 +27764,1152576,152,7644,1 +27765,1152960,189,9488,1 +27766,1152960,87,4366,1 +27767,1152960,168,8417,1 +27768,1152960,151,7562,1 +27769,1152966,77,3862,1 +27770,1152972,109,5464,1 +27771,1152977,29,1484,1 +27772,1152984,143,7188,1 +27773,1152984,79,3992,1 +27774,1152991,16,822,1 +27775,1152999,153,7687,1 +27776,1153000,153,7657,1 +27777,1153006,173,8670,1 +27778,1153012,72,3648,1 +27779,1153017,117,5853,1 +27780,1153020,92,4615,1 +27781,1153032,70,3542,1 +27782,1153034,38,1935,1 +27783,1153037,151,7556,1 +27784,1153069,26,1301,1 +27785,1153080,96,4825,1 +27786,1153095,169,8488,1 +27787,1153218,4,239,1 +27788,1153312,72,3610,1 +27789,1153920,188,9434,1 +27790,1153920,109,5495,1 +27791,1153923,118,5915,1 +27792,1153951,174,8728,1 +27793,1153956,142,7133,1 +27794,1153956,34,1731,1 +27795,1153956,113,5697,1 +27796,1153960,157,7861,1 +27797,1154004,115,5790,1 +27798,1154004,151,7584,1 +27799,1154028,147,7368,1 +27800,1154031,145,7279,1 +27801,1154037,73,3672,1 +27802,1154412,199,9976,1 +27803,1154449,115,5768,1 +27804,1154937,12,627,1 +27805,1154996,185,9264,1 +27806,1155036,147,7381,1 +27807,1155037,33,1700,1 +27808,1155360,30,1505,1 +27809,1155363,79,3973,1 +27810,1155364,32,1611,1 +27811,1155366,141,7075,1 +27812,1155372,172,8615,1 +27813,1155372,24,1209,1 +27814,1155372,30,1514,1 +27815,1155373,158,7913,1 +27816,1155385,76,3810,1 +27817,1155387,14,704,1 +27818,1155397,23,1184,1 +27819,1155398,183,9187,1 +27820,1155408,21,1066,1 +27821,1155414,157,7889,1 +27822,1155414,31,1560,1 +27823,1155420,42,2124,1 +27824,1155423,92,4632,1 +27825,1155433,121,6093,1 +27826,1155456,3,174,1 +27827,1155480,14,744,1 +27828,1155493,58,2931,1 +27829,1155516,196,9840,1 +27830,1155840,109,5491,1 +27831,1155841,172,8619,1 +27832,1155864,22,1111,1 +27833,1155868,107,5357,1 +27834,1155913,194,9724,1 +27835,1156008,51,2559,1 +27836,1156059,17,860,1 +27837,1156137,71,3567,1 +27838,1156320,154,7734,1 +27839,1156320,101,5072,1 +27840,1156321,130,6509,1 +27841,1156326,29,1492,1 +27842,1156329,91,4583,1 +27843,1156332,145,7288,1 +27844,1156332,168,8425,1 +27845,1156339,151,7585,1 +27846,1156344,190,9525,1 +27847,1156347,26,1311,1 +27848,1156365,65,3256,1 +27849,1156368,131,6593,1 +27850,1156368,17,870,1 +27851,1156392,132,6629,1 +27852,1156398,8,409,1 +27853,1156401,58,2911,1 +27854,1156411,136,6814,1 +27855,1156458,47,2383,1 +27856,1156500,25,1266,1 +27857,1156510,114,5750,1 +27858,1156574,176,8838,1 +27859,1156824,113,5691,1 +27860,1156872,137,6893,1 +27861,1156896,199,9997,1 +27862,1157011,101,5090,1 +27863,1157280,77,3897,1 +27864,1157280,49,2478,1 +27865,1157281,119,5974,1 +27866,1157282,107,5400,1 +27867,1157284,124,6233,1 +27868,1157289,3,189,1 +27869,1157292,71,3569,1 +27870,1157295,55,2773,1 +27871,1157298,21,1094,1 +27872,1157298,97,4881,1 +27873,1157303,7,370,1 +27874,1157304,54,2709,1 +27875,1157305,13,697,1 +27876,1157305,168,8439,1 +27877,1157314,145,7256,1 +27878,1157328,142,7129,1 +27879,1157329,51,2595,1 +27880,1157329,158,7903,1 +27881,1157330,35,1772,1 +27882,1157334,164,8248,1 +27883,1157335,180,9013,1 +27884,1157337,186,9347,1 +27885,1157340,143,7186,1 +27886,1157340,96,4801,1 +27887,1157340,127,6388,1 +27888,1157340,157,7876,1 +27889,1157343,56,2819,1 +27890,1157349,117,5853,1 +27891,1157352,65,3274,1 +27892,1157353,179,8983,1 +27893,1157353,181,9073,1 +27894,1157353,115,5760,1 +27895,1157361,72,3608,1 +27896,1157365,162,8124,1 +27897,1157373,63,3165,1 +27898,1157374,71,3600,1 +27899,1157376,107,5393,1 +27900,1157377,59,2978,1 +27901,1157406,134,6720,1 +27902,1157412,91,4574,1 +27903,1157436,8,436,1 +27904,1157478,179,8963,1 +27905,1157511,73,3687,1 +27906,1157844,73,3667,1 +27907,1157943,121,6071,1 +27908,1158240,59,2960,1 +27909,1158241,118,5941,1 +27910,1158244,133,6674,1 +27911,1158255,57,2900,1 +27912,1158265,15,787,1 +27913,1158300,95,4765,1 +27914,1158504,39,1968,1 +27915,1158528,94,4708,1 +27916,1158720,158,7905,1 +27917,1158747,91,4585,1 +27918,1158756,191,9576,1 +27919,1158759,60,3007,1 +27920,1158871,105,5275,1 +27921,1159200,86,4301,1 +27922,1159200,1,58,1 +27923,1159200,53,2655,1 +27924,1159200,165,8253,1 +27925,1159201,109,5489,1 +27926,1159203,129,6467,1 +27927,1159212,164,8232,1 +27928,1159212,62,3105,1 +27929,1159212,150,7539,1 +27930,1159213,168,8404,1 +27931,1159215,94,4738,1 +27932,1159219,79,3954,1 +27933,1159224,177,8875,1 +27934,1159224,31,1582,1 +27935,1159225,133,6667,1 +27936,1159226,169,8460,1 +27937,1159230,167,8380,1 +27938,1159232,194,9734,1 +27939,1159234,88,4436,1 +27940,1159236,62,3107,1 +27941,1159236,59,2951,1 +27942,1159242,47,2357,1 +27943,1159243,21,1099,1 +27944,1159248,169,8498,1 +27945,1159248,36,1826,1 +27946,1159248,53,2673,1 +27947,1159249,192,9635,1 +27948,1159251,42,2132,1 +27949,1159254,140,7033,1 +27950,1159260,168,8429,1 +27951,1159261,55,2754,1 +27952,1159263,135,6755,1 +27953,1159264,42,2148,1 +27954,1159264,57,2895,1 +27955,1159267,145,7270,1 +27956,1159272,179,8986,1 +27957,1159278,46,2340,1 +27958,1159279,109,5453,1 +27959,1159284,157,7856,1 +27960,1159284,134,6726,1 +27961,1159293,40,2005,1 +27962,1159296,27,1362,1 +27963,1159296,135,6796,1 +27964,1159297,195,9767,1 +27965,1159303,17,871,1 +27966,1159320,71,3565,1 +27967,1159320,86,4345,1 +27968,1159332,98,4908,1 +27969,1159335,173,8661,1 +27970,1159357,13,698,1 +27971,1159419,41,2069,1 +27972,1159443,16,817,1 +27973,1159519,43,2173,1 +27974,1159680,130,6522,1 +27975,1159680,193,9700,1 +27976,1159682,94,4721,1 +27977,1159686,70,3505,1 +27978,1159692,193,9689,1 +27979,1159692,95,4772,1 +27980,1159701,164,8234,1 +27981,1159716,77,3893,1 +27982,1159728,86,4342,1 +27983,1159773,115,5776,1 +27984,1159833,107,5367,1 +27985,1159860,68,3407,1 +27986,1159885,23,1168,1 +27987,1160163,46,2321,1 +27988,1160173,160,8042,1 +27989,1160196,50,2528,1 +27990,1160199,57,2874,1 +27991,1160206,33,1659,1 +27992,1160208,106,5339,1 +27993,1160245,178,8939,1 +27994,1160256,178,8911,1 +27995,1161120,197,9868,1 +27996,1161120,180,9033,1 +27997,1161135,5,252,1 +27998,1161150,18,950,1 +27999,1161157,96,4824,1 +28000,1161205,170,8502,1 +28001,1161333,119,5954,1 +28002,1161607,175,8771,1 +28003,1161660,29,1496,1 +28004,1162080,166,8327,1 +28005,1162080,176,8805,1 +28006,1162092,46,2313,1 +28007,1162092,31,1562,1 +28008,1162095,150,7526,1 +28009,1162104,165,8253,1 +28010,1162116,182,9145,1 +28011,1162120,72,3619,1 +28012,1162135,149,7462,1 +28013,1162213,191,9572,1 +28014,1162260,14,704,1 +28015,1162560,59,2976,1 +28016,1162560,12,629,1 +28017,1162560,66,3335,1 +28018,1162566,73,3682,1 +28019,1162574,130,6515,1 +28020,1162579,75,3798,1 +28021,1162584,193,9659,1 +28022,1162584,35,1791,1 +28023,1162587,168,8421,1 +28024,1162613,131,6572,1 +28025,1162621,20,1001,1 +28026,1162621,114,5749,1 +28027,1162650,171,8577,1 +28028,1162653,155,7777,1 +28029,1162680,175,8778,1 +28030,1162704,119,5977,1 +28031,1162852,140,7028,1 +28032,1163040,165,8262,1 +28033,1163052,88,4412,1 +28034,1163100,36,1808,1 +28035,1163104,105,5272,1 +28036,1163520,87,4393,1 +28037,1163521,87,4371,1 +28038,1163521,56,2843,1 +28039,1163521,144,7248,1 +28040,1163532,74,3727,1 +28041,1163532,185,9284,1 +28042,1163532,79,3987,1 +28043,1163538,17,855,1 +28044,1163544,29,1458,1 +28045,1163544,121,6097,1 +28046,1163557,86,4342,1 +28047,1163562,173,8669,1 +28048,1163575,91,4555,1 +28049,1163580,122,6140,1 +28050,1163580,34,1721,1 +28051,1163580,126,6345,1 +28052,1163583,170,8544,1 +28053,1163587,89,4461,1 +28054,1163592,115,5795,1 +28055,1163592,129,6461,1 +28056,1163605,103,5164,1 +28057,1163617,152,7611,1 +28058,1163618,120,6033,1 +28059,1163628,180,9021,1 +28060,1163653,51,2558,1 +28061,1163679,195,9767,1 +28062,1163724,79,3996,1 +28063,1163738,73,3676,1 +28064,1163749,10,545,1 +28065,1164000,71,3592,1 +28066,1164000,149,7483,1 +28067,1164001,185,9251,1 +28068,1164007,123,6157,1 +28069,1164012,193,9661,1 +28070,1164025,171,8596,1 +28071,1164034,172,8607,1 +28072,1164085,77,3881,1 +28073,1164097,129,6484,1 +28074,1164099,27,1389,1 +28075,1164146,48,2423,1 +28076,1164147,129,6470,1 +28077,1164492,60,3028,1 +28078,1164516,175,8769,1 +28079,1164540,180,9025,1 +28080,1164552,75,3795,1 +28081,1164555,142,7111,1 +28082,1164592,52,2649,1 +28083,1164688,134,6738,1 +28084,1164961,182,9115,1 +28085,1164961,54,2739,1 +28086,1164972,97,4895,1 +28087,1164972,105,5296,1 +28088,1164974,28,1426,1 +28089,1164981,78,3908,1 +28090,1164984,110,5535,1 +28091,1164984,30,1512,1 +28092,1164987,80,4044,1 +28093,1164996,154,7736,1 +28094,1164997,181,9093,1 +28095,1165006,167,8371,1 +28096,1165023,74,3713,1 +28097,1165045,126,6334,1 +28098,1165065,21,1078,1 +28099,1165116,11,592,1 +28100,1165192,149,7471,1 +28101,1165449,131,6566,1 +28102,1165926,118,5939,1 +28103,1165935,118,5915,1 +28104,1165968,49,2471,1 +28105,1165968,4,219,1 +28106,1165981,145,7277,1 +28107,1166007,51,2589,1 +28108,1166088,93,4653,1 +28109,1166400,62,3102,1 +28110,1166400,161,8092,1 +28111,1166402,95,4758,1 +28112,1166496,36,1802,1 +28113,1166880,148,7418,1 +28114,1166895,109,5465,1 +28115,1166906,152,7613,1 +28116,1166919,130,6531,1 +28117,1166924,130,6532,1 +28118,1166952,166,8343,1 +28119,1167009,58,2904,1 +28120,1167072,133,6697,1 +28121,1167360,55,2800,1 +28122,1167864,197,9884,1 +28123,1167873,49,2454,1 +28124,1167949,147,7379,1 +28125,1168380,96,4813,1 +28126,1168380,126,6327,1 +28127,1168800,99,4961,1 +28128,1168837,160,8030,1 +28129,1168861,168,8441,1 +28130,1169292,193,9670,1 +28131,1169797,164,8244,1 +28132,1169808,28,1421,1 +28133,1169810,54,2708,1 +28134,1170249,146,7350,1 +28135,1170264,153,7684,1 +28136,1170264,30,1524,1 +28137,1170273,109,5487,1 +28138,1170273,8,447,1 +28139,1170291,77,3872,1 +28140,1170312,95,4763,1 +28141,1170324,125,6289,1 +28142,1170327,130,6532,1 +28143,1170337,60,3011,1 +28144,1170381,22,1141,1 +28145,1170444,95,4757,1 +28146,1170468,105,5272,1 +28147,1170729,198,9950,1 +28148,1171200,99,4955,1 +28149,1171200,120,6041,1 +28150,1171200,85,4252,1 +28151,1171203,32,1649,1 +28152,1171215,33,1667,1 +28153,1171225,125,6251,1 +28154,1171236,81,4077,1 +28155,1171237,72,3630,1 +28156,1171251,102,5115,1 +28157,1171254,9,452,1 +28158,1171261,104,5217,1 +28159,1171264,112,5646,1 +28160,1171273,45,2274,1 +28161,1171274,120,6034,1 +28162,1171297,24,1211,1 +28163,1171299,13,665,1 +28164,1171309,110,5517,1 +28165,1171320,11,558,1 +28166,1171407,97,4887,1 +28167,1171437,82,4149,1 +28168,1171443,162,8121,1 +28169,1171465,6,329,1 +28170,1171497,165,8291,1 +28171,1171682,20,1010,1 +28172,1171682,99,4984,1 +28173,1171687,24,1227,1 +28174,1171692,127,6353,1 +28175,1171692,46,2333,1 +28176,1171692,76,3816,1 +28177,1171704,188,9438,1 +28178,1171704,155,7782,1 +28179,1171717,164,8244,1 +28180,1171728,16,803,1 +28181,1171728,66,3303,1 +28182,1171764,71,3591,1 +28183,1171776,36,1806,1 +28184,1171797,73,3683,1 +28185,1171807,187,9352,1 +28186,1171828,88,4446,1 +28187,1172160,86,4331,1 +28188,1172160,35,1768,1 +28189,1172160,108,5410,1 +28190,1172166,62,3119,1 +28191,1172169,193,9681,1 +28192,1172173,108,5436,1 +28193,1172184,171,8571,1 +28194,1172184,115,5774,1 +28195,1172185,165,8255,1 +28196,1172244,121,6061,1 +28197,1172256,187,9376,1 +28198,1172257,112,5610,1 +28199,1172280,193,9689,1 +28200,1172281,7,382,1 +28201,1172288,155,7762,1 +28202,1172640,52,2647,1 +28203,1172651,35,1754,1 +28204,1172652,73,3694,1 +28205,1172652,124,6234,1 +28206,1172666,6,349,1 +28207,1172677,101,5065,1 +28208,1172688,189,9457,1 +28209,1172748,172,8641,1 +28210,1172763,53,2700,1 +28211,1172765,168,8447,1 +28212,1172880,101,5069,1 +28213,1173132,52,2606,1 +28214,1173156,111,5591,1 +28215,1173156,27,1384,1 +28216,1173157,36,1834,1 +28217,1173168,187,9373,1 +28218,1173189,102,5113,1 +28219,1173189,107,5372,1 +28220,1173230,8,429,1 +28221,1173600,108,5417,1 +28222,1173600,154,7734,1 +28223,1173600,14,712,1 +28224,1173600,29,1481,1 +28225,1173600,139,7000,1 +28226,1173601,22,1106,1 +28227,1173601,171,8552,1 +28228,1173601,178,8941,1 +28229,1173607,1,53,1 +28230,1173609,164,8245,1 +28231,1173609,10,531,1 +28232,1173612,61,3055,1 +28233,1173612,140,7023,1 +28234,1173613,2,137,1 +28235,1173615,132,6606,1 +28236,1173615,111,5563,1 +28237,1173622,14,703,1 +28238,1173624,158,7908,1 +28239,1173624,140,7015,1 +28240,1173633,96,4820,1 +28241,1173634,58,2922,1 +28242,1173636,145,7277,1 +28243,1173637,29,1451,1 +28244,1173639,165,8259,1 +28245,1173642,160,8035,1 +28246,1173648,140,7026,1 +28247,1173652,94,4739,1 +28248,1173660,37,1888,1 +28249,1173660,176,8808,1 +28250,1173660,181,9058,1 +28251,1173661,100,5049,1 +28252,1173662,197,9885,1 +28253,1173672,24,1214,1 +28254,1173699,133,6668,1 +28255,1173705,166,8303,1 +28256,1173708,112,5615,1 +28257,1173720,195,9760,1 +28258,1173723,144,7203,1 +28259,1173744,156,7810,1 +28260,1173744,14,702,1 +28261,1173745,35,1761,1 +28262,1173780,165,8288,1 +28263,1173787,167,8373,1 +28264,1174123,32,1649,1 +28265,1174130,5,276,1 +28266,1174584,137,6856,1 +28267,1174593,183,9173,1 +28268,1174629,137,6896,1 +28269,1174634,119,5982,1 +28270,1174645,45,2268,1 +28271,1174656,34,1723,1 +28272,1174716,178,8934,1 +28273,1174737,144,7249,1 +28274,1175047,55,2788,1 +28275,1175052,161,8089,1 +28276,1175100,94,4741,1 +28277,1175121,8,440,1 +28278,1175520,87,4377,1 +28279,1176010,194,9710,1 +28280,1176013,82,4141,1 +28281,1176013,90,4519,1 +28282,1176015,154,7708,1 +28283,1176024,133,6688,1 +28284,1176028,113,5665,1 +28285,1176030,148,7438,1 +28286,1176036,146,7349,1 +28287,1176048,17,864,1 +28288,1176051,75,3797,1 +28289,1176051,137,6896,1 +28290,1176058,126,6335,1 +28291,1176064,174,8736,1 +28292,1176079,137,6887,1 +28293,1176084,109,5471,1 +28294,1176085,47,2377,1 +28295,1176096,173,8691,1 +28296,1176120,11,588,1 +28297,1176150,64,3240,1 +28298,1176151,9,473,1 +28299,1176495,26,1346,1 +28300,1176505,195,9759,1 +28301,1176960,165,8284,1 +28302,1176972,14,736,1 +28303,1176984,57,2862,1 +28304,1177440,69,3490,1 +28305,1177441,68,3425,1 +28306,1177441,31,1581,1 +28307,1177452,128,6404,1 +28308,1177453,35,1773,1 +28309,1177458,177,8856,1 +28310,1177464,160,8011,1 +28311,1177464,171,8595,1 +28312,1177467,109,5452,1 +28313,1177486,124,6242,1 +28314,1177488,102,5101,1 +28315,1177490,135,6779,1 +28316,1177513,49,2461,1 +28317,1177513,91,4553,1 +28318,1177525,54,2721,1 +28319,1177536,19,968,1 +28320,1177569,54,2733,1 +28321,1177920,136,6836,1 +28322,1177921,12,628,1 +28323,1177956,32,1606,1 +28324,1178413,120,6044,1 +28325,1178413,97,4888,1 +28326,1178414,116,5805,1 +28327,1178438,117,5870,1 +28328,1178440,100,5032,1 +28329,1178444,18,940,1 +28330,1178448,169,8459,1 +28331,1178448,199,9978,1 +28332,1178450,111,5588,1 +28333,1178463,156,7817,1 +28334,1178466,177,8897,1 +28335,1178487,83,4158,1 +28336,1178496,196,9809,1 +28337,1178557,81,4098,1 +28338,1178592,160,8003,1 +28339,1178894,59,2954,1 +28340,1178928,52,2636,1 +28341,1178967,192,9604,1 +28342,1179177,97,4885,1 +28343,1179360,121,6086,1 +28344,1179384,98,4943,1 +28345,1179840,95,4757,1 +28346,1179843,24,1243,1 +28347,1179846,132,6628,1 +28348,1179846,172,8612,1 +28349,1179848,46,2342,1 +28350,1179862,157,7882,1 +28351,1179864,28,1411,1 +28352,1179864,63,3186,1 +28353,1179873,85,4262,1 +28354,1179891,0,37,1 +28355,1179894,167,8361,1 +28356,1179900,22,1149,1 +28357,1179972,23,1154,1 +28358,1180014,157,7853,1 +28359,1180320,194,9740,1 +28360,1180356,49,2457,1 +28361,1180381,39,1999,1 +28362,1180818,26,1309,1 +28363,1180833,95,4777,1 +28364,1180886,190,9505,1 +28365,1181760,168,8417,1 +28366,1181760,25,1253,1 +28367,1181784,93,4673,1 +28368,1181784,25,1286,1 +28369,1181796,94,4748,1 +28370,1181799,48,2406,1 +28371,1182240,131,6599,1 +28372,1182240,162,8112,1 +28373,1182243,117,5888,1 +28374,1182259,192,9645,1 +28375,1182276,3,162,1 +28376,1182300,140,7025,1 +28377,1182720,198,9922,1 +28378,1182722,142,7102,1 +28379,1182731,55,2758,1 +28380,1182732,92,4626,1 +28381,1182732,129,6467,1 +28382,1182732,115,5767,1 +28383,1182732,102,5131,1 +28384,1182733,120,6033,1 +28385,1182745,70,3519,1 +28386,1182747,58,2904,1 +28387,1182756,131,6573,1 +28388,1182760,47,2364,1 +28389,1182765,131,6580,1 +28390,1182768,19,978,1 +28391,1182775,132,6648,1 +28392,1182781,186,9323,1 +28393,1182782,88,4446,1 +28394,1182789,157,7864,1 +28395,1182792,173,8668,1 +28396,1182793,89,4489,1 +28397,1182801,81,4087,1 +28398,1182801,134,6705,1 +28399,1182804,55,2761,1 +28400,1182804,131,6582,1 +28401,1182817,41,2061,1 +28402,1182831,58,2917,1 +28403,1182864,178,8901,1 +28404,1182864,165,8279,1 +28405,1182878,178,8902,1 +28406,1182888,131,6573,1 +28407,1183203,57,2875,1 +28408,1183204,30,1502,1 +28409,1183206,189,9494,1 +28410,1183214,53,2651,1 +28411,1183216,192,9645,1 +28412,1183266,44,2203,1 +28413,1183287,96,4808,1 +28414,1183299,141,7084,1 +28415,1183382,119,5961,1 +28416,1183392,178,8928,1 +28417,1183682,25,1259,1 +28418,1183694,160,8035,1 +28419,1183704,159,7987,1 +28420,1183713,166,8310,1 +28421,1183722,98,4930,1 +28422,1183740,18,947,1 +28423,1183753,190,9527,1 +28424,1183777,17,899,1 +28425,1183808,176,8833,1 +28426,1183848,43,2153,1 +28427,1183872,159,7991,1 +28428,1184163,46,2317,1 +28429,1184172,110,5543,1 +28430,1184172,94,4726,1 +28431,1184172,92,4628,1 +28432,1184173,134,6721,1 +28433,1184190,180,9026,1 +28434,1184256,143,7173,1 +28435,1184258,62,3139,1 +28436,1184292,16,837,1 +28437,1184295,74,3734,1 +28438,1184327,122,6117,1 +28439,1184640,15,756,1 +28440,1184643,100,5039,1 +28441,1184645,153,7679,1 +28442,1184653,17,868,1 +28443,1184664,142,7134,1 +28444,1184679,183,9159,1 +28445,1184694,118,5941,1 +28446,1184716,99,4994,1 +28447,1185123,66,3346,1 +28448,1185132,146,7340,1 +28449,1185132,99,4991,1 +28450,1186080,176,8802,1 +28451,1186128,86,4349,1 +28452,1186176,104,5236,1 +28453,1186225,135,6766,1 +28454,1186371,156,7813,1 +28455,1186566,96,4841,1 +28456,1186572,28,1426,1 +28457,1186574,140,7007,1 +28458,1186585,136,6836,1 +28459,1186587,5,262,1 +28460,1186593,46,2301,1 +28461,1186596,121,6078,1 +28462,1186608,165,8295,1 +28463,1186608,112,5626,1 +28464,1186620,89,4480,1 +28465,1186635,120,6041,1 +28466,1186638,186,9334,1 +28467,1186641,192,9641,1 +28468,1186656,51,2555,1 +28469,1186681,58,2945,1 +28470,1186692,44,2215,1 +28471,1186709,133,6698,1 +28472,1186716,183,9182,1 +28473,1187041,109,5495,1 +28474,1187052,66,3328,1 +28475,1187109,111,5574,1 +28476,1187112,196,9849,1 +28477,1187121,149,7460,1 +28478,1187148,40,2022,1 +28479,1187149,33,1671,1 +28480,1187149,63,3182,1 +28481,1187269,3,155,1 +28482,1187353,148,7432,1 +28483,1187521,60,3006,1 +28484,1187536,70,3550,1 +28485,1187539,193,9694,1 +28486,1187541,135,6775,1 +28487,1187545,129,6495,1 +28488,1187546,31,1586,1 +28489,1187554,34,1701,1 +28490,1187556,36,1809,1 +28491,1187557,197,9877,1 +28492,1187557,73,3662,1 +28493,1187580,199,9957,1 +28494,1187583,41,2064,1 +28495,1187592,40,2024,1 +28496,1187602,193,9678,1 +28497,1187607,87,4359,1 +28498,1187640,31,1592,1 +28499,1188000,42,2119,1 +28500,1188013,7,388,1 +28501,1188013,159,7980,1 +28502,1188014,82,4113,1 +28503,1188015,96,4833,1 +28504,1188018,155,7767,1 +28505,1188024,61,3058,1 +28506,1188025,1,99,1 +28507,1188048,45,2273,1 +28508,1188055,65,3256,1 +28509,1188094,188,9418,1 +28510,1188501,19,989,1 +28511,1188960,183,9188,1 +28512,1188972,3,154,1 +28513,1188972,68,3442,1 +28514,1188972,121,6057,1 +28515,1188996,140,7003,1 +28516,1188997,180,9032,1 +28517,1189044,33,1697,1 +28518,1189440,179,8961,1 +28519,1189440,169,8455,1 +28520,1189440,150,7519,1 +28521,1189440,32,1640,1 +28522,1189456,13,683,1 +28523,1189458,167,8376,1 +28524,1189464,57,2862,1 +28525,1189464,176,8816,1 +28526,1189465,3,174,1 +28527,1189478,163,8179,1 +28528,1189488,23,1184,1 +28529,1189489,112,5632,1 +28530,1189498,117,5859,1 +28531,1189500,0,49,1 +28532,1189501,0,49,1 +28533,1189501,151,7574,1 +28534,1189515,57,2887,1 +28535,1189534,125,6294,1 +28536,1189560,25,1282,1 +28537,1189573,170,8536,1 +28538,1189593,83,4154,1 +28539,1189656,59,2990,1 +28540,1189934,160,8001,1 +28541,1189954,56,2823,1 +28542,1189956,192,9628,1 +28543,1190088,121,6096,1 +28544,1190409,27,1370,1 +28545,1190413,152,7623,1 +28546,1190413,154,7705,1 +28547,1190415,140,7034,1 +28548,1190415,92,4618,1 +28549,1190439,37,1877,1 +28550,1190592,13,693,1 +28551,1190895,102,5118,1 +28552,1190929,79,3980,1 +28553,1190953,30,1511,1 +28554,1191840,64,3212,1 +28555,1191853,108,5425,1 +28556,1191853,164,8232,1 +28557,1191853,96,4832,1 +28558,1191853,22,1150,1 +28559,1191857,147,7387,1 +28560,1191864,162,8121,1 +28561,1191864,39,1982,1 +28562,1191876,160,8014,1 +28563,1191876,115,5790,1 +28564,1191895,103,5173,1 +28565,1191900,89,4490,1 +28566,1191900,10,537,1 +28567,1191921,84,4201,1 +28568,1191924,45,2273,1 +28569,1191941,63,3155,1 +28570,1191945,119,6000,1 +28571,1192320,85,4283,1 +28572,1192335,87,4396,1 +28573,1192347,187,9360,1 +28574,1192350,61,3064,1 +28575,1192356,171,8574,1 +28576,1192368,133,6683,1 +28577,1192373,38,1909,1 +28578,1192380,12,634,1 +28579,1192385,196,9838,1 +28580,1192425,57,2888,1 +28581,1192455,9,498,1 +28582,1192488,45,2267,1 +28583,1192801,188,9416,1 +28584,1192801,108,5445,1 +28585,1192810,87,4391,1 +28586,1192836,195,9778,1 +28587,1192854,93,4663,1 +28588,1192862,21,1096,1 +28589,1193280,10,525,1 +28590,1193280,121,6096,1 +28591,1193283,22,1145,1 +28592,1193293,37,1874,1 +28593,1193293,74,3702,1 +28594,1193295,108,5423,1 +28595,1193304,62,3124,1 +28596,1193311,48,2405,1 +28597,1193316,129,6497,1 +28598,1193338,17,884,1 +28599,1193382,34,1725,1 +28600,1193388,191,9555,1 +28601,1193414,186,9342,1 +28602,1193760,140,7021,1 +28603,1193766,181,9086,1 +28604,1193772,10,511,1 +28605,1193785,117,5889,1 +28606,1194240,59,2977,1 +28607,1194241,20,1045,1 +28608,1194252,38,1910,1 +28609,1194252,92,4609,1 +28610,1194261,9,468,1 +28611,1194264,124,6242,1 +28612,1194264,174,8703,1 +28613,1194264,43,2158,1 +28614,1194300,93,4694,1 +28615,1194300,174,8715,1 +28616,1194303,127,6392,1 +28617,1194324,101,5082,1 +28618,1194327,145,7275,1 +28619,1194360,88,4411,1 +28620,1194726,187,9356,1 +28621,1194732,190,9529,1 +28622,1194734,60,3024,1 +28623,1194735,28,1450,1 +28624,1194735,38,1902,1 +28625,1194747,106,5329,1 +28626,1194753,121,6075,1 +28627,1194756,21,1059,1 +28628,1194756,164,8239,1 +28629,1194773,161,8081,1 +28630,1194792,111,5558,1 +28631,1194793,115,5794,1 +28632,1194840,0,48,1 +28633,1194987,175,8798,1 +28634,1195200,66,3319,1 +28635,1195200,78,3943,1 +28636,1195236,54,2728,1 +28637,1195248,148,7416,1 +28638,1195248,132,6620,1 +28639,1195248,4,225,1 +28640,1195251,37,1885,1 +28641,1195284,110,5539,1 +28642,1195350,93,4675,1 +28643,1195353,73,3667,1 +28644,1195680,171,8571,1 +28645,1195680,185,9299,1 +28646,1195680,39,1970,1 +28647,1195681,54,2732,1 +28648,1195692,117,5873,1 +28649,1195695,33,1669,1 +28650,1195696,5,280,1 +28651,1195697,173,8655,1 +28652,1195704,118,5901,1 +28653,1195704,40,2048,1 +28654,1195716,168,8412,1 +28655,1195728,64,3227,1 +28656,1195752,140,7044,1 +28657,1195764,191,9577,1 +28658,1195767,28,1449,1 +28659,1195779,135,6788,1 +28660,1195800,147,7351,1 +28661,1195801,41,2077,1 +28662,1195825,148,7435,1 +28663,1195825,147,7360,1 +28664,1195845,34,1721,1 +28665,1195848,51,2577,1 +28666,1195969,114,5706,1 +28667,1196196,56,2803,1 +28668,1196205,79,3951,1 +28669,1196220,60,3043,1 +28670,1196232,179,8956,1 +28671,1196329,154,7726,1 +28672,1196641,171,8594,1 +28673,1196652,65,3270,1 +28674,1196655,53,2678,1 +28675,1196656,192,9615,1 +28676,1196659,138,6935,1 +28677,1196664,163,8197,1 +28678,1196664,102,5122,1 +28679,1196666,149,7482,1 +28680,1196676,100,5047,1 +28681,1196677,67,3373,1 +28682,1196677,43,2156,1 +28683,1196679,98,4939,1 +28684,1196691,188,9428,1 +28685,1196701,9,462,1 +28686,1196712,9,453,1 +28687,1196724,176,8834,1 +28688,1196724,59,2969,1 +28689,1196761,154,7750,1 +28690,1196767,109,5495,1 +28691,1196808,30,1520,1 +28692,1196820,134,6704,1 +28693,1197132,194,9725,1 +28694,1197193,185,9275,1 +28695,1197324,135,6789,1 +28696,1198080,53,2688,1 +28697,1198083,51,2569,1 +28698,1198093,70,3512,1 +28699,1198096,66,3338,1 +28700,1198101,106,5316,1 +28701,1198560,131,6566,1 +28702,1198560,197,9871,1 +28703,1198575,31,1581,1 +28704,1198609,110,5549,1 +28705,1199048,140,7024,1 +28706,1199520,43,2176,1 +28707,1199521,7,379,1 +28708,1199522,180,9042,1 +28709,1199529,198,9942,1 +28710,1199532,20,1031,1 +28711,1199532,13,658,1 +28712,1199533,128,6437,1 +28713,1199544,166,8312,1 +28714,1199544,108,5411,1 +28715,1199544,2,118,1 +28716,1199545,11,556,1 +28717,1199545,134,6713,1 +28718,1199547,34,1749,1 +28719,1199556,86,4337,1 +28720,1199556,1,61,1 +28721,1199557,181,9078,1 +28722,1199559,103,5154,1 +28723,1199566,1,68,1 +28724,1199568,73,3662,1 +28725,1199570,112,5640,1 +28726,1199589,181,9092,1 +28727,1199592,85,4258,1 +28728,1199604,196,9825,1 +28729,1199619,76,3840,1 +28730,1199634,19,970,1 +28731,1199637,15,785,1 +28732,1199667,171,8554,1 +28733,1199787,149,7494,1 +28734,1199871,63,3173,1 +28735,1200001,8,425,1 +28736,1200003,140,7017,1 +28737,1200025,105,5256,1 +28738,1200043,78,3907,1 +28739,1200480,170,8501,1 +28740,1200486,3,183,1 +28741,1200489,63,3195,1 +28742,1200495,100,5008,1 +28743,1200508,93,4697,1 +28744,1200612,42,2140,1 +28745,1200962,142,7149,1 +28746,1201008,170,8504,1 +28747,1201440,138,6911,1 +28748,1201453,22,1139,1 +28749,1201453,8,426,1 +28750,1201464,75,3763,1 +28751,1201465,182,9143,1 +28752,1201509,16,841,1 +28753,1201524,174,8709,1 +28754,1201536,161,8084,1 +28755,1201585,55,2780,1 +28756,1201921,124,6209,1 +28757,1201921,48,2409,1 +28758,1201944,194,9717,1 +28759,1201953,46,2321,1 +28760,1201968,148,7403,1 +28761,1201968,69,3454,1 +28762,1201986,31,1589,1 +28763,1202004,31,1575,1 +28764,1202064,158,7922,1 +28765,1202400,129,6482,1 +28766,1202400,55,2793,1 +28767,1202401,35,1781,1 +28768,1202401,174,8745,1 +28769,1202411,59,2980,1 +28770,1202436,31,1571,1 +28771,1202448,102,5106,1 +28772,1202448,185,9274,1 +28773,1202449,187,9395,1 +28774,1202464,175,8796,1 +28775,1202481,25,1286,1 +28776,1202520,48,2442,1 +28777,1202892,5,279,1 +28778,1203108,146,7347,1 +28779,1203864,169,8451,1 +28780,1203903,78,3943,1 +28781,1203912,190,9532,1 +28782,1204320,88,4418,1 +28783,1204320,32,1634,1 +28784,1204320,199,9991,1 +28785,1204321,4,243,1 +28786,1204323,91,4594,1 +28787,1204324,121,6058,1 +28788,1204326,74,3746,1 +28789,1204326,194,9707,1 +28790,1204332,148,7419,1 +28791,1204332,147,7385,1 +28792,1204334,87,4386,1 +28793,1204334,162,8122,1 +28794,1204338,112,5635,1 +28795,1204338,107,5354,1 +28796,1204345,59,2989,1 +28797,1204347,162,8136,1 +28798,1204350,61,3062,1 +28799,1204356,133,6681,1 +28800,1204356,187,9351,1 +28801,1204356,174,8737,1 +28802,1204357,65,3264,1 +28803,1204357,74,3723,1 +28804,1204368,195,9765,1 +28805,1204368,57,2896,1 +28806,1204369,2,109,1 +28807,1204375,151,7555,1 +28808,1204376,51,2573,1 +28809,1204377,19,984,1 +28810,1204380,135,6781,1 +28811,1204382,56,2824,1 +28812,1204386,1,76,1 +28813,1204392,131,6559,1 +28814,1204404,192,9621,1 +28815,1204408,4,209,1 +28816,1204417,23,1186,1 +28817,1204441,113,5665,1 +28818,1204455,15,752,1 +28819,1204822,0,45,1 +28820,1204824,173,8696,1 +28821,1204848,178,8927,1 +28822,1204848,9,476,1 +28823,1204850,191,9587,1 +28824,1204851,114,5728,1 +28825,1204861,55,2757,1 +28826,1204872,43,2160,1 +28827,1204885,48,2445,1 +28828,1204886,2,146,1 +28829,1204944,64,3240,1 +28830,1205280,28,1445,1 +28831,1205292,93,4678,1 +28832,1205298,63,3184,1 +28833,1205304,165,8258,1 +28834,1205316,37,1857,1 +28835,1205317,76,3816,1 +28836,1205388,192,9610,1 +28837,1205401,133,6681,1 +28838,1205761,145,7266,1 +28839,1205859,194,9738,1 +28840,1206240,7,361,1 +28841,1206241,80,4042,1 +28842,1206246,162,8141,1 +28843,1206252,54,2739,1 +28844,1206252,199,9985,1 +28845,1206252,56,2833,1 +28846,1206253,125,6292,1 +28847,1206254,9,484,1 +28848,1206264,180,9020,1 +28849,1206264,140,7018,1 +28850,1206264,173,8679,1 +28851,1206270,99,4981,1 +28852,1206276,106,5341,1 +28853,1206278,171,8599,1 +28854,1206279,114,5730,1 +28855,1206300,82,4139,1 +28856,1206338,171,8574,1 +28857,1206345,89,4476,1 +28858,1206372,102,5117,1 +28859,1206547,160,8011,1 +28860,1206720,75,3761,1 +28861,1206720,16,847,1 +28862,1206723,13,695,1 +28863,1206744,166,8302,1 +28864,1206780,17,859,1 +28865,1206793,98,4923,1 +28866,1206813,16,818,1 +28867,1207213,95,4767,1 +28868,1207272,14,726,1 +28869,1207548,50,2514,1 +28870,1207716,159,7961,1 +28871,1208172,171,8592,1 +28872,1208205,181,9066,1 +28873,1208208,189,9454,1 +28874,1208209,23,1165,1 +28875,1208271,5,279,1 +28876,1208341,158,7916,1 +28877,1208353,69,3456,1 +28878,1208664,113,5687,1 +28879,1209120,181,9072,1 +28880,1209120,157,7895,1 +28881,1209121,119,5981,1 +28882,1209123,122,6104,1 +28883,1209126,161,8072,1 +28884,1209130,129,6483,1 +28885,1209141,81,4072,1 +28886,1209144,187,9363,1 +28887,1209144,89,4499,1 +28888,1209144,33,1666,1 +28889,1209222,16,801,1 +28890,1209240,56,2810,1 +28891,1209244,27,1394,1 +28892,1209252,113,5664,1 +28893,1209268,185,9258,1 +28894,1209290,55,2778,1 +28895,1209312,21,1086,1 +28896,1209600,185,9293,1 +28897,1209600,65,3282,1 +28898,1209600,144,7205,1 +28899,1209600,90,4540,1 +28900,1209600,145,7296,1 +28901,1209601,146,7301,1 +28902,1209601,41,2067,1 +28903,1209603,110,5515,1 +28904,1209606,122,6125,1 +28905,1209609,56,2828,1 +28906,1209612,80,4004,1 +28907,1209612,178,8928,1 +28908,1209612,129,6469,1 +28909,1209612,69,3468,1 +28910,1209613,11,576,1 +28911,1209613,79,3985,1 +28912,1209613,187,9371,1 +28913,1209613,105,5293,1 +28914,1209613,60,3015,1 +28915,1209615,2,117,1 +28916,1209615,114,5709,1 +28917,1209616,12,615,1 +28918,1209618,115,5792,1 +28919,1209621,93,4684,1 +28920,1209624,188,9415,1 +28921,1209624,74,3732,1 +28922,1209626,26,1334,1 +28923,1209630,46,2345,1 +28924,1209633,193,9672,1 +28925,1209633,44,2207,1 +28926,1209638,89,4463,1 +28927,1209642,155,7799,1 +28928,1209648,158,7918,1 +28929,1209649,135,6760,1 +28930,1209649,92,4626,1 +28931,1209650,173,8677,1 +28932,1209654,105,5255,1 +28933,1209659,104,5231,1 +28934,1209659,27,1398,1 +28935,1209660,49,2472,1 +28936,1209660,185,9272,1 +28937,1209662,61,3100,1 +28938,1209663,98,4948,1 +28939,1209672,155,7786,1 +28940,1209675,70,3517,1 +28941,1209693,63,3160,1 +28942,1209696,161,8059,1 +28943,1209708,72,3637,1 +28944,1209710,24,1246,1 +28945,1209720,175,8788,1 +28946,1209721,197,9856,1 +28947,1209733,92,4601,1 +28948,1209734,10,541,1 +28949,1209734,104,5234,1 +28950,1209744,175,8770,1 +28951,1209768,58,2911,1 +28952,1209780,124,6204,1 +28953,1209786,44,2249,1 +28954,1209828,82,4146,1 +28955,1209874,59,2968,1 +28956,1210080,115,5799,1 +28957,1210104,150,7539,1 +28958,1210560,96,4815,1 +28959,1210560,55,2777,1 +28960,1210560,79,3968,1 +28961,1210560,191,9559,1 +28962,1210560,170,8520,1 +28963,1210560,193,9672,1 +28964,1210560,119,5989,1 +28965,1210560,23,1167,1 +28966,1210561,163,8162,1 +28967,1210561,27,1359,1 +28968,1210561,184,9204,1 +28969,1210561,16,802,1 +28970,1210562,61,3071,1 +28971,1210562,129,6479,1 +28972,1210563,20,1008,1 +28973,1210563,55,2782,1 +28974,1210564,174,8736,1 +28975,1210572,151,7595,1 +28976,1210572,11,589,1 +28977,1210572,74,3745,1 +28978,1210573,42,2116,1 +28979,1210575,144,7245,1 +28980,1210575,149,7461,1 +28981,1210577,83,4168,1 +28982,1210584,51,2552,1 +28983,1210584,34,1743,1 +28984,1210584,81,4060,1 +28985,1210585,19,952,1 +28986,1210587,94,4744,1 +28987,1210591,20,1031,1 +28988,1210594,42,2147,1 +28989,1210594,76,3815,1 +28990,1210596,176,8847,1 +28991,1210609,175,8779,1 +28992,1210609,172,8611,1 +28993,1210609,144,7229,1 +28994,1210609,45,2295,1 +28995,1210609,102,5120,1 +28996,1210609,45,2297,1 +28997,1210610,64,3213,1 +28998,1210613,151,7555,1 +28999,1210614,133,6684,1 +29000,1210620,160,8037,1 +29001,1210620,54,2732,1 +29002,1210621,81,4093,1 +29003,1210621,152,7616,1 +29004,1210625,27,1375,1 +29005,1210626,71,3600,1 +29006,1210629,182,9135,1 +29007,1210632,157,7877,1 +29008,1210634,38,1943,1 +29009,1210644,65,3254,1 +29010,1210645,169,8490,1 +29011,1210646,31,1596,1 +29012,1210649,35,1790,1 +29013,1210659,184,9221,1 +29014,1210667,175,8777,1 +29015,1210668,175,8800,1 +29016,1210677,138,6922,1 +29017,1210691,179,8960,1 +29018,1210695,167,8374,1 +29019,1210701,72,3607,1 +29020,1210722,142,7104,1 +29021,1210730,24,1245,1 +29022,1210752,141,7078,1 +29023,1210860,140,7041,1 +29024,1211042,58,2938,1 +29025,1211052,128,6411,1 +29026,1211064,193,9666,1 +29027,1211064,103,5196,1 +29028,1211064,42,2126,1 +29029,1211076,112,5646,1 +29030,1211076,84,4226,1 +29031,1211077,50,2526,1 +29032,1211078,18,945,1 +29033,1211087,119,5952,1 +29034,1211088,13,661,1 +29035,1211089,76,3834,1 +29036,1211103,113,5654,1 +29037,1211114,174,8715,1 +29038,1211121,52,2626,1 +29039,1211125,34,1733,1 +29040,1211130,71,3582,1 +29041,1211136,41,2077,1 +29042,1211160,98,4927,1 +29043,1211172,191,9592,1 +29044,1211190,170,8531,1 +29045,1211199,186,9301,1 +29046,1211329,53,2657,1 +29047,1211520,129,6496,1 +29048,1211522,54,2703,1 +29049,1211526,66,3302,1 +29050,1211530,138,6906,1 +29051,1211533,17,870,1 +29052,1211544,140,7041,1 +29053,1211547,16,831,1 +29054,1211548,34,1715,1 +29055,1211559,107,5377,1 +29056,1211577,158,7924,1 +29057,1211583,128,6428,1 +29058,1211592,113,5681,1 +29059,1211601,127,6379,1 +29060,1211604,150,7536,1 +29061,1211680,163,8173,1 +29062,1212012,79,3960,1 +29063,1212012,85,4297,1 +29064,1212014,7,365,1 +29065,1212063,18,904,1 +29066,1212496,147,7396,1 +29067,1212504,111,5567,1 +29068,1212505,143,7162,1 +29069,1212530,197,9884,1 +29070,1212552,1,96,1 +29071,1212564,34,1711,1 +29072,1212564,10,508,1 +29073,1212997,20,1010,1 +29074,1213057,165,8275,1 +29075,1213563,148,7447,1 +29076,1213923,69,3500,1 +29077,1213933,108,5407,1 +29078,1213990,1,61,1 +29079,1214886,195,9760,1 +29080,1214889,180,9045,1 +29081,1214893,144,7245,1 +29082,1214893,88,4430,1 +29083,1215360,61,3081,1 +29084,1215361,136,6821,1 +29085,1215362,77,3865,1 +29086,1215372,107,5365,1 +29087,1215372,81,4097,1 +29088,1215385,117,5864,1 +29089,1215393,149,7499,1 +29090,1215396,25,1264,1 +29091,1215397,84,4204,1 +29092,1215402,183,9175,1 +29093,1215411,49,2476,1 +29094,1215432,134,6724,1 +29095,1215444,135,6792,1 +29096,1215444,182,9125,1 +29097,1215453,101,5093,1 +29098,1215480,67,3377,1 +29099,1215492,59,2998,1 +29100,1215540,54,2737,1 +29101,1215744,131,6562,1 +29102,1215876,24,1237,1 +29103,1215876,159,7977,1 +29104,1216320,141,7064,1 +29105,1216335,29,1483,1 +29106,1216356,53,2697,1 +29107,1216430,84,4221,1 +29108,1216801,139,6980,1 +29109,1216801,196,9811,1 +29110,1216803,175,8786,1 +29111,1216806,28,1421,1 +29112,1216810,47,2372,1 +29113,1216812,179,8968,1 +29114,1216812,65,3294,1 +29115,1216813,18,928,1 +29116,1216815,32,1627,1 +29117,1216824,32,1634,1 +29118,1216824,69,3477,1 +29119,1216824,51,2569,1 +29120,1216824,87,4376,1 +29121,1216830,114,5739,1 +29122,1216832,156,7817,1 +29123,1216836,189,9497,1 +29124,1216836,196,9844,1 +29125,1216836,126,6324,1 +29126,1216836,178,8946,1 +29127,1216836,6,310,1 +29128,1216854,117,5871,1 +29129,1216860,90,4548,1 +29130,1216980,56,2836,1 +29131,1217283,119,5999,1 +29132,1217286,99,4978,1 +29133,1217292,45,2267,1 +29134,1217292,2,147,1 +29135,1217302,198,9940,1 +29136,1217304,129,6483,1 +29137,1217322,163,8175,1 +29138,1217329,137,6868,1 +29139,1217344,17,891,1 +29140,1217349,60,3046,1 +29141,1217352,11,597,1 +29142,1217352,44,2218,1 +29143,1217355,124,6238,1 +29144,1217385,1,99,1 +29145,1217406,186,9314,1 +29146,1217436,2,121,1 +29147,1217774,9,468,1 +29148,1217775,74,3718,1 +29149,1217801,111,5572,1 +29150,1217952,128,6426,1 +29151,1218240,13,691,1 +29152,1218253,24,1213,1 +29153,1218258,11,557,1 +29154,1218820,45,2291,1 +29155,1218834,57,2854,1 +29156,1219207,111,5568,1 +29157,1219212,37,1890,1 +29158,1219214,34,1730,1 +29159,1219225,176,8824,1 +29160,1219236,73,3655,1 +29161,1219248,20,1040,1 +29162,1219264,73,3675,1 +29163,1219276,71,3553,1 +29164,1219392,124,6210,1 +29165,1219680,29,1455,1 +29166,1219680,17,876,1 +29167,1219687,163,8188,1 +29168,1219689,15,775,1 +29169,1219692,4,240,1 +29170,1219692,89,4474,1 +29171,1219692,114,5702,1 +29172,1219701,121,6060,1 +29173,1219702,74,3710,1 +29174,1219707,144,7201,1 +29175,1219710,132,6642,1 +29176,1219719,174,8740,1 +29177,1219722,42,2109,1 +29178,1219725,39,1974,1 +29179,1219728,55,2799,1 +29180,1219728,181,9093,1 +29181,1219728,153,7652,1 +29182,1219734,50,2541,1 +29183,1219734,89,4495,1 +29184,1219737,180,9032,1 +29185,1219737,134,6740,1 +29186,1219743,183,9162,1 +29187,1219752,99,4967,1 +29188,1219764,189,9474,1 +29189,1219767,72,3650,1 +29190,1219782,172,8642,1 +29191,1219785,32,1637,1 +29192,1219789,41,2078,1 +29193,1219824,127,6369,1 +29194,1219884,64,3211,1 +29195,1220161,44,2246,1 +29196,1220162,46,2306,1 +29197,1220172,142,7142,1 +29198,1220205,35,1761,1 +29199,1220208,42,2121,1 +29200,1220220,130,6519,1 +29201,1220226,107,5364,1 +29202,1220244,178,8950,1 +29203,1220256,151,7600,1 +29204,1220281,61,3093,1 +29205,1220284,165,8273,1 +29206,1220328,110,5518,1 +29207,1220640,177,8867,1 +29208,1220642,10,521,1 +29209,1220650,40,2042,1 +29210,1220652,99,4993,1 +29211,1220659,41,2099,1 +29212,1220665,83,4171,1 +29213,1220673,199,9976,1 +29214,1220673,93,4700,1 +29215,1220676,8,448,1 +29216,1220677,199,9990,1 +29217,1220679,54,2736,1 +29218,1220721,33,1684,1 +29219,1220731,192,9606,1 +29220,1220731,176,8826,1 +29221,1220736,163,8180,1 +29222,1220739,175,8766,1 +29223,1220748,33,1665,1 +29224,1220749,125,6285,1 +29225,1220751,74,3727,1 +29226,1220761,38,1912,1 +29227,1220809,9,455,1 +29228,1220892,84,4221,1 +29229,1221144,171,8559,1 +29230,1221216,121,6096,1 +29231,1221240,129,6460,1 +29232,1221612,22,1146,1 +29233,1222128,19,990,1 +29234,1222140,163,8164,1 +29235,1222248,107,5358,1 +29236,1222573,139,6999,1 +29237,1222579,63,3197,1 +29238,1222585,186,9350,1 +29239,1222596,35,1796,1 +29240,1222598,96,4828,1 +29241,1223042,151,7588,1 +29242,1223136,149,7476,1 +29243,1223526,83,4193,1 +29244,1223569,165,8252,1 +29245,1223571,81,4065,1 +29246,1223616,113,5693,1 +29247,1224000,156,7846,1 +29248,1224000,31,1573,1 +29249,1224000,52,2641,1 +29250,1224001,72,3627,1 +29251,1224001,71,3556,1 +29252,1224016,83,4165,1 +29253,1224018,120,6022,1 +29254,1224024,196,9848,1 +29255,1224024,40,2006,1 +29256,1224036,184,9250,1 +29257,1224045,57,2894,1 +29258,1224060,81,4073,1 +29259,1224060,81,4099,1 +29260,1224094,144,7229,1 +29261,1224097,47,2387,1 +29262,1224181,135,6799,1 +29263,1224253,144,7234,1 +29264,1224288,169,8467,1 +29265,1224300,22,1123,1 +29266,1224960,39,1997,1 +29267,1224972,127,6356,1 +29268,1224973,154,7744,1 +29269,1224984,19,951,1 +29270,1224984,47,2368,1 +29271,1224997,12,613,1 +29272,1225005,145,7254,1 +29273,1225011,97,4864,1 +29274,1225020,83,4154,1 +29275,1225022,44,2234,1 +29276,1225920,192,9607,1 +29277,1225932,15,770,1 +29278,1225935,67,3397,1 +29279,1225944,40,2035,1 +29280,1225982,133,6700,1 +29281,1225992,73,3689,1 +29282,1226400,167,8351,1 +29283,1226400,67,3393,1 +29284,1226401,139,6989,1 +29285,1226401,68,3406,1 +29286,1226410,145,7271,1 +29287,1226412,163,8179,1 +29288,1226413,115,5766,1 +29289,1226422,140,7049,1 +29290,1226424,36,1826,1 +29291,1226424,61,3066,1 +29292,1226425,87,4374,1 +29293,1226425,15,760,1 +29294,1226428,111,5576,1 +29295,1226435,124,6204,1 +29296,1226436,75,3783,1 +29297,1226445,184,9245,1 +29298,1226448,3,197,1 +29299,1226448,156,7850,1 +29300,1226449,40,2025,1 +29301,1226463,139,6952,1 +29302,1226472,9,489,1 +29303,1226481,126,6330,1 +29304,1226482,83,4173,1 +29305,1226484,116,5802,1 +29306,1226485,167,8380,1 +29307,1226494,134,6703,1 +29308,1226503,28,1447,1 +29309,1226532,60,3036,1 +29310,1226534,181,9057,1 +29311,1226536,133,6693,1 +29312,1226565,120,6036,1 +29313,1226628,73,3653,1 +29314,1226884,8,429,1 +29315,1226892,20,1044,1 +29316,1226892,97,4889,1 +29317,1226893,158,7923,1 +29318,1226916,131,6586,1 +29319,1226918,140,7013,1 +29320,1227388,189,9484,1 +29321,1227432,103,5199,1 +29322,1228320,198,9932,1 +29323,1228320,160,8028,1 +29324,1228320,112,5625,1 +29325,1228326,63,3164,1 +29326,1228331,73,3665,1 +29327,1228332,59,2985,1 +29328,1228332,144,7244,1 +29329,1228332,88,4417,1 +29330,1228335,15,791,1 +29331,1228341,189,9451,1 +29332,1228344,64,3244,1 +29333,1228348,199,9958,1 +29334,1228350,25,1277,1 +29335,1228350,35,1765,1 +29336,1228356,158,7934,1 +29337,1228356,120,6017,1 +29338,1228357,152,7649,1 +29339,1228357,52,2615,1 +29340,1228359,22,1116,1 +29341,1228369,125,6256,1 +29342,1228371,104,5241,1 +29343,1228380,0,5,1 +29344,1228380,81,4093,1 +29345,1228381,58,2944,1 +29346,1228392,195,9774,1 +29347,1228395,153,7678,1 +29348,1228404,128,6405,1 +29349,1228404,60,3040,1 +29350,1228404,70,3525,1 +29351,1228413,103,5163,1 +29352,1228416,197,9897,1 +29353,1228417,43,2162,1 +29354,1228425,199,9997,1 +29355,1228426,53,2696,1 +29356,1228476,33,1666,1 +29357,1228480,36,1821,1 +29358,1228524,75,3776,1 +29359,1228848,129,6464,1 +29360,1228908,185,9270,1 +29361,1229770,59,2977,1 +29362,1229772,37,1900,1 +29363,1229773,125,6292,1 +29364,1229780,162,8140,1 +29365,1229781,23,1172,1 +29366,1229790,187,9369,1 +29367,1229794,37,1875,1 +29368,1229796,88,4414,1 +29369,1229808,182,9149,1 +29370,1229809,101,5067,1 +29371,1229826,184,9210,1 +29372,1229868,111,5598,1 +29373,1229880,161,8070,1 +29374,1229904,51,2554,1 +29375,1229961,151,7551,1 +29376,1229989,159,7999,1 +29377,1230269,151,7594,1 +29378,1230720,107,5396,1 +29379,1230732,7,366,1 +29380,1230741,166,8316,1 +29381,1230816,52,2630,1 +29382,1231104,62,3141,1 +29383,1231215,93,4700,1 +29384,1231272,167,8395,1 +29385,1231300,117,5890,1 +29386,1231320,47,2385,1 +29387,1231680,76,3830,1 +29388,1231680,99,4975,1 +29389,1231680,159,7981,1 +29390,1231692,33,1652,1 +29391,1231704,52,2639,1 +29392,1231716,25,1263,1 +29393,1231729,14,740,1 +29394,1231733,119,5982,1 +29395,1231765,46,2308,1 +29396,1231833,151,7565,1 +29397,1232160,55,2774,1 +29398,1233178,33,1659,1 +29399,1233187,188,9405,1 +29400,1233759,54,2748,1 +29401,1234116,44,2227,1 +29402,1234116,68,3416,1 +29403,1234140,185,9272,1 +29404,1234176,74,3702,1 +29405,1234212,24,1227,1 +29406,1234260,54,2714,1 +29407,1234560,146,7348,1 +29408,1234560,7,376,1 +29409,1234560,73,3688,1 +29410,1234561,78,3926,1 +29411,1234572,178,8914,1 +29412,1234572,186,9335,1 +29413,1234575,76,3816,1 +29414,1234584,188,9449,1 +29415,1234624,45,2283,1 +29416,1234644,166,8324,1 +29417,1234669,124,6215,1 +29418,1234681,56,2816,1 +29419,1234730,152,7623,1 +29420,1234747,189,9453,1 +29421,1234779,167,8356,1 +29422,1235040,182,9148,1 +29423,1235040,187,9357,1 +29424,1235043,107,5397,1 +29425,1235044,63,3178,1 +29426,1235046,159,7999,1 +29427,1235052,40,2044,1 +29428,1235052,5,291,1 +29429,1235065,87,4356,1 +29430,1235097,60,3032,1 +29431,1235108,141,7054,1 +29432,1235130,157,7880,1 +29433,1235131,195,9753,1 +29434,1235152,17,881,1 +29435,1235157,43,2174,1 +29436,1235199,163,8195,1 +29437,1235532,2,108,1 +29438,1235544,123,6176,1 +29439,1235556,145,7264,1 +29440,1235565,44,2226,1 +29441,1235580,46,2335,1 +29442,1235737,11,595,1 +29443,1236492,139,6996,1 +29444,1236504,166,8338,1 +29445,1236565,73,3682,1 +29446,1236621,119,5972,1 +29447,1236960,2,140,1 +29448,1236960,94,4712,1 +29449,1236960,36,1843,1 +29450,1236961,68,3422,1 +29451,1236961,185,9263,1 +29452,1236961,114,5716,1 +29453,1236962,55,2791,1 +29454,1236963,88,4414,1 +29455,1236965,0,32,1 +29456,1236966,90,4515,1 +29457,1236966,96,4806,1 +29458,1236971,71,3581,1 +29459,1236972,63,3152,1 +29460,1236972,46,2305,1 +29461,1236973,103,5186,1 +29462,1236984,85,4281,1 +29463,1236984,157,7854,1 +29464,1236984,196,9832,1 +29465,1236986,187,9393,1 +29466,1236986,129,6498,1 +29467,1236991,160,8025,1 +29468,1236993,197,9878,1 +29469,1236996,6,309,1 +29470,1236999,161,8100,1 +29471,1237008,160,8033,1 +29472,1237008,10,515,1 +29473,1237009,179,8960,1 +29474,1237010,68,3436,1 +29475,1237018,132,6645,1 +29476,1237019,8,406,1 +29477,1237022,29,1468,1 +29478,1237045,1,80,1 +29479,1237080,6,312,1 +29480,1237105,13,654,1 +29481,1237116,30,1531,1 +29482,1237146,30,1542,1 +29483,1237440,181,9054,1 +29484,1237449,145,7261,1 +29485,1237455,179,8984,1 +29486,1237461,191,9592,1 +29487,1237476,35,1775,1 +29488,1237480,24,1245,1 +29489,1237549,150,7539,1 +29490,1237621,8,401,1 +29491,1237922,183,9184,1 +29492,1237959,142,7120,1 +29493,1237989,190,9527,1 +29494,1237992,174,8749,1 +29495,1238125,17,881,1 +29496,1238400,103,5159,1 +29497,1238424,184,9221,1 +29498,1238427,10,542,1 +29499,1238436,93,4699,1 +29500,1238436,9,477,1 +29501,1238439,192,9604,1 +29502,1238445,49,2478,1 +29503,1238449,47,2394,1 +29504,1238453,25,1257,1 +29505,1238460,33,1678,1 +29506,1238460,68,3444,1 +29507,1238474,120,6038,1 +29508,1238493,94,4730,1 +29509,1238499,31,1562,1 +29510,1238628,179,8980,1 +29511,1238883,66,3332,1 +29512,1238892,52,2638,1 +29513,1238905,176,8847,1 +29514,1238994,113,5686,1 +29515,1239854,176,8823,1 +29516,1239874,100,5043,1 +29517,1239876,92,4640,1 +29518,1239914,30,1512,1 +29519,1239985,162,8127,1 +29520,1240320,85,4292,1 +29521,1240320,177,8886,1 +29522,1240320,14,711,1 +29523,1240321,14,746,1 +29524,1240323,172,8613,1 +29525,1240323,7,399,1 +29526,1240332,120,6027,1 +29527,1240332,92,4605,1 +29528,1240332,110,5514,1 +29529,1240333,178,8921,1 +29530,1240333,69,3453,1 +29531,1240341,164,8225,1 +29532,1240344,141,7068,1 +29533,1240345,40,2025,1 +29534,1240350,97,4894,1 +29535,1240368,158,7904,1 +29536,1240377,97,4851,1 +29537,1240380,175,8760,1 +29538,1240400,82,4112,1 +29539,1240407,79,3972,1 +29540,1240431,169,8466,1 +29541,1240465,89,4481,1 +29542,1240488,28,1436,1 +29543,1240502,143,7187,1 +29544,1240681,118,5909,1 +29545,1240800,148,7406,1 +29546,1240806,138,6948,1 +29547,1240812,122,6111,1 +29548,1240819,168,8412,1 +29549,1240824,4,249,1 +29550,1240824,112,5641,1 +29551,1240836,96,4844,1 +29552,1240845,100,5001,1 +29553,1240846,17,865,1 +29554,1240857,163,8181,1 +29555,1240861,191,9565,1 +29556,1240946,103,5183,1 +29557,1241088,63,3175,1 +29558,1241281,1,52,1 +29559,1241283,167,8376,1 +29560,1241283,178,8919,1 +29561,1241289,197,9894,1 +29562,1241292,181,9062,1 +29563,1241293,144,7234,1 +29564,1241300,130,6517,1 +29565,1241305,65,3297,1 +29566,1241317,46,2337,1 +29567,1241317,34,1736,1 +29568,1241317,110,5529,1 +29569,1241331,177,8885,1 +29570,1241334,24,1223,1 +29571,1241334,15,774,1 +29572,1241340,86,4342,1 +29573,1241347,20,1037,1 +29574,1241354,138,6913,1 +29575,1241364,39,1955,1 +29576,1241409,81,4089,1 +29577,1241514,29,1495,1 +29578,1241772,64,3243,1 +29579,1241786,57,2881,1 +29580,1242282,43,2195,1 +29581,1242312,158,7930,1 +29582,1242349,62,3107,1 +29583,1242720,93,4666,1 +29584,1242720,96,4834,1 +29585,1242720,97,4899,1 +29586,1242720,84,4236,1 +29587,1242721,111,5564,1 +29588,1242721,33,1691,1 +29589,1242723,39,1955,1 +29590,1242725,108,5430,1 +29591,1242726,81,4055,1 +29592,1242730,113,5664,1 +29593,1242732,58,2907,1 +29594,1242732,78,3921,1 +29595,1242732,141,7060,1 +29596,1242732,59,2990,1 +29597,1242735,43,2188,1 +29598,1242738,81,4100,1 +29599,1242741,70,3548,1 +29600,1242744,155,7753,1 +29601,1242744,183,9168,1 +29602,1242744,127,6351,1 +29603,1242745,18,950,1 +29604,1242750,42,2127,1 +29605,1242750,79,3999,1 +29606,1242759,194,9737,1 +29607,1242765,79,3976,1 +29608,1242774,165,8296,1 +29609,1242778,127,6379,1 +29610,1242792,133,6655,1 +29611,1242792,73,3667,1 +29612,1242792,25,1259,1 +29613,1242794,106,5343,1 +29614,1242795,114,5741,1 +29615,1242806,133,6664,1 +29616,1242814,173,8670,1 +29617,1242816,18,905,1 +29618,1242816,19,978,1 +29619,1242817,196,9849,1 +29620,1242840,34,1748,1 +29621,1242864,143,7186,1 +29622,1242879,178,8909,1 +29623,1242882,55,2754,1 +29624,1242889,120,6011,1 +29625,1242900,92,4623,1 +29626,1243200,121,6064,1 +29627,1243242,181,9093,1 +29628,1243298,48,2443,1 +29629,1243315,105,5262,1 +29630,1243680,6,320,1 +29631,1243683,41,2070,1 +29632,1243701,199,9978,1 +29633,1243704,168,8406,1 +29634,1243725,72,3637,1 +29635,1243730,157,7871,1 +29636,1243776,163,8179,1 +29637,1243802,41,2076,1 +29638,1244174,133,6662,1 +29639,1244220,24,1221,1 +29640,1244654,22,1101,1 +29641,1244678,176,8817,1 +29642,1244722,194,9724,1 +29643,1244726,86,4311,1 +29644,1244734,48,2441,1 +29645,1245120,190,9540,1 +29646,1245132,133,6672,1 +29647,1245132,110,5539,1 +29648,1245132,40,2031,1 +29649,1245150,112,5647,1 +29650,1245156,52,2634,1 +29651,1245156,150,7519,1 +29652,1245158,46,2305,1 +29653,1245180,45,2287,1 +29654,1245181,143,7165,1 +29655,1245193,148,7401,1 +29656,1245216,50,2501,1 +29657,1245234,20,1027,1 +29658,1245252,82,4149,1 +29659,1245390,27,1356,1 +29660,1245610,10,511,1 +29661,1245612,187,9368,1 +29662,1245612,16,834,1 +29663,1245615,121,6077,1 +29664,1245624,56,2824,1 +29665,1245627,10,530,1 +29666,1245628,127,6387,1 +29667,1245629,60,3046,1 +29668,1245630,73,3685,1 +29669,1245636,48,2434,1 +29670,1245636,155,7785,1 +29671,1245637,10,533,1 +29672,1245648,150,7507,1 +29673,1245661,5,257,1 +29674,1245684,84,4242,1 +29675,1245700,30,1501,1 +29676,1246081,143,7168,1 +29677,1246092,26,1325,1 +29678,1246092,176,8831,1 +29679,1246093,4,235,1 +29680,1246134,162,8134,1 +29681,1246142,140,7009,1 +29682,1246153,32,1610,1 +29683,1246179,7,376,1 +29684,1246198,91,4597,1 +29685,1246212,81,4065,1 +29686,1246560,156,7817,1 +29687,1246572,122,6111,1 +29688,1246577,37,1862,1 +29689,1246584,128,6429,1 +29690,1246584,182,9125,1 +29691,1246596,154,7720,1 +29692,1246665,34,1715,1 +29693,1246692,47,2380,1 +29694,1246712,124,6242,1 +29695,1247040,2,132,1 +29696,1247042,193,9664,1 +29697,1247049,75,3758,1 +29698,1247052,101,5065,1 +29699,1247053,7,362,1 +29700,1247053,171,8587,1 +29701,1247055,180,9026,1 +29702,1247080,168,8413,1 +29703,1247089,76,3826,1 +29704,1247099,90,4509,1 +29705,1247100,68,3441,1 +29706,1247191,174,8712,1 +29707,1247196,88,4431,1 +29708,1247520,68,3406,1 +29709,1247520,76,3818,1 +29710,1247520,19,954,1 +29711,1247520,177,8894,1 +29712,1247521,138,6947,1 +29713,1247522,156,7850,1 +29714,1247523,111,5576,1 +29715,1247523,55,2758,1 +29716,1247532,182,9126,1 +29717,1247532,30,1513,1 +29718,1247532,185,9276,1 +29719,1247532,6,319,1 +29720,1247533,12,605,1 +29721,1247538,62,3132,1 +29722,1247544,161,8063,1 +29723,1247544,48,2442,1 +29724,1247545,188,9402,1 +29725,1247550,146,7345,1 +29726,1247556,57,2881,1 +29727,1247558,19,970,1 +29728,1247559,30,1504,1 +29729,1247560,75,3787,1 +29730,1247562,144,7248,1 +29731,1247568,169,8483,1 +29732,1247568,145,7288,1 +29733,1247569,167,8386,1 +29734,1247580,152,7640,1 +29735,1247592,136,6826,1 +29736,1247593,148,7410,1 +29737,1247604,192,9622,1 +29738,1247606,84,4243,1 +29739,1247612,144,7247,1 +29740,1247613,110,5503,1 +29741,1247616,6,306,1 +29742,1247618,27,1399,1 +29743,1247626,152,7609,1 +29744,1247628,164,8231,1 +29745,1247634,16,809,1 +29746,1247665,156,7837,1 +29747,1247673,173,8696,1 +29748,1247676,166,8341,1 +29749,1247739,21,1059,1 +29750,1247751,88,4431,1 +29751,1247778,66,3301,1 +29752,1248000,85,4264,1 +29753,1248002,174,8741,1 +29754,1248003,51,2569,1 +29755,1248025,98,4939,1 +29756,1248036,26,1333,1 +29757,1248037,136,6841,1 +29758,1248051,193,9691,1 +29759,1248132,113,5693,1 +29760,1248160,196,9817,1 +29761,1248480,80,4034,1 +29762,1248537,56,2836,1 +29763,1248912,181,9082,1 +29764,1248976,32,1603,1 +29765,1248979,104,5224,1 +29766,1248984,119,5995,1 +29767,1249020,7,356,1 +29768,1249920,161,8088,1 +29769,1249920,124,6221,1 +29770,1249932,86,4302,1 +29771,1249944,90,4505,1 +29772,1249956,148,7446,1 +29773,1249958,191,9579,1 +29774,1249969,168,8402,1 +29775,1249971,95,4785,1 +29776,1249980,67,3367,1 +29777,1249981,197,9872,1 +29778,1250004,149,7478,1 +29779,1250130,183,9172,1 +29780,1250197,14,723,1 +29781,1250412,12,623,1 +29782,1250413,15,751,1 +29783,1250451,113,5684,1 +29784,1250509,57,2889,1 +29785,1250880,153,7655,1 +29786,1250890,53,2667,1 +29787,1250892,188,9450,1 +29788,1250904,37,1854,1 +29789,1250905,6,333,1 +29790,1250910,181,9083,1 +29791,1250917,124,6219,1 +29792,1250928,49,2475,1 +29793,1250928,156,7811,1 +29794,1250943,91,4599,1 +29795,1250946,32,1632,1 +29796,1250952,198,9909,1 +29797,1250955,195,9768,1 +29798,1250976,130,6537,1 +29799,1250982,172,8611,1 +29800,1250985,121,6085,1 +29801,1250988,16,806,1 +29802,1251084,40,2024,1 +29803,1251360,108,5407,1 +29804,1251363,47,2352,1 +29805,1251364,159,7967,1 +29806,1251385,37,1891,1 +29807,1251840,88,4450,1 +29808,1251864,85,4280,1 +29809,1251868,65,3257,1 +29810,1251956,134,6727,1 +29811,1252320,70,3530,1 +29812,1252330,177,8870,1 +29813,1252812,78,3936,1 +29814,1252812,94,4750,1 +29815,1252813,1,83,1 +29816,1252824,166,8303,1 +29817,1252836,119,5956,1 +29818,1252858,122,6148,1 +29819,1252876,152,7649,1 +29820,1252910,122,6125,1 +29821,1253284,177,8879,1 +29822,1253340,94,4748,1 +29823,1253760,43,2160,1 +29824,1253762,96,4827,1 +29825,1253762,92,4604,1 +29826,1253772,31,1573,1 +29827,1253785,93,4681,1 +29828,1253786,158,7926,1 +29829,1253786,21,1079,1 +29830,1253791,3,156,1 +29831,1253793,37,1885,1 +29832,1253793,51,2554,1 +29833,1253796,9,458,1 +29834,1253796,165,8286,1 +29835,1253810,11,581,1 +29836,1253820,3,193,1 +29837,1253832,32,1633,1 +29838,1253838,161,8053,1 +29839,1253844,45,2273,1 +29840,1253940,103,5190,1 +29841,1253964,169,8500,1 +29842,1254240,61,3060,1 +29843,1254269,124,6225,1 +29844,1254288,165,8269,1 +29845,1254300,173,8654,1 +29846,1254306,141,7082,1 +29847,1254318,174,8739,1 +29848,1254360,49,2466,1 +29849,1254480,6,348,1 +29850,1254510,67,3363,1 +29851,1255200,144,7241,1 +29852,1255209,14,746,1 +29853,1255212,76,3819,1 +29854,1255224,153,7691,1 +29855,1255236,61,3082,1 +29856,1255236,12,647,1 +29857,1255236,153,7658,1 +29858,1255236,165,8292,1 +29859,1255236,35,1788,1 +29860,1255272,79,3987,1 +29861,1255356,116,5815,1 +29862,1255358,64,3210,1 +29863,1255380,18,927,1 +29864,1256160,118,5932,1 +29865,1256160,132,6645,1 +29866,1256160,169,8490,1 +29867,1256161,124,6226,1 +29868,1256184,19,958,1 +29869,1256185,89,4451,1 +29870,1256189,181,9059,1 +29871,1256202,13,691,1 +29872,1256203,162,8124,1 +29873,1256208,129,6497,1 +29874,1256211,88,4401,1 +29875,1256221,190,9547,1 +29876,1256238,60,3020,1 +29877,1256244,45,2269,1 +29878,1256244,156,7848,1 +29879,1256258,36,1804,1 +29880,1256262,2,118,1 +29881,1256320,175,8785,1 +29882,1256340,111,5568,1 +29883,1256352,156,7822,1 +29884,1256385,129,6467,1 +29885,1256652,181,9059,1 +29886,1256652,78,3925,1 +29887,1256664,176,8816,1 +29888,1256683,103,5153,1 +29889,1256688,29,1487,1 +29890,1256712,91,4600,1 +29891,1256744,91,4569,1 +29892,1258080,43,2194,1 +29893,1258095,182,9140,1 +29894,1258152,96,4825,1 +29895,1258207,184,9238,1 +29896,1258560,124,6242,1 +29897,1258560,53,2688,1 +29898,1258562,55,2784,1 +29899,1258563,84,4214,1 +29900,1258568,1,59,1 +29901,1258572,154,7725,1 +29902,1258574,151,7584,1 +29903,1258574,110,5530,1 +29904,1258578,52,2603,1 +29905,1258584,40,2009,1 +29906,1258585,155,7798,1 +29907,1258586,169,8499,1 +29908,1258596,41,2098,1 +29909,1258596,122,6120,1 +29910,1258598,56,2830,1 +29911,1258599,38,1941,1 +29912,1258618,149,7489,1 +29913,1258618,77,3862,1 +29914,1258620,26,1348,1 +29915,1258632,177,8877,1 +29916,1258632,102,5132,1 +29917,1258636,194,9748,1 +29918,1258660,154,7734,1 +29919,1258668,87,4381,1 +29920,1258693,33,1680,1 +29921,1258716,12,611,1 +29922,1258717,170,8522,1 +29923,1258731,198,9923,1 +29924,1258749,80,4050,1 +29925,1259040,181,9081,1 +29926,1259044,12,628,1 +29927,1259046,54,2701,1 +29928,1259049,93,4674,1 +29929,1259052,162,8106,1 +29930,1259052,153,7666,1 +29931,1259053,69,3474,1 +29932,1259054,70,3542,1 +29933,1259056,96,4801,1 +29934,1259056,109,5496,1 +29935,1259061,94,4709,1 +29936,1259064,175,8776,1 +29937,1259066,68,3418,1 +29938,1259076,105,5300,1 +29939,1259076,103,5160,1 +29940,1259090,30,1507,1 +29941,1259094,46,2324,1 +29942,1259116,129,6474,1 +29943,1259118,152,7611,1 +29944,1259148,48,2450,1 +29945,1259160,177,8896,1 +29946,1259184,167,8367,1 +29947,1259283,50,2504,1 +29948,1259292,168,8404,1 +29949,1259522,121,6057,1 +29950,1259539,62,3142,1 +29951,1259542,118,5935,1 +29952,1259572,5,262,1 +29953,1260480,57,2887,1 +29954,1260489,163,8169,1 +29955,1260490,189,9472,1 +29956,1260492,110,5509,1 +29957,1260492,55,2799,1 +29958,1260495,55,2752,1 +29959,1260501,84,4242,1 +29960,1260504,153,7672,1 +29961,1260513,71,3568,1 +29962,1260528,136,6841,1 +29963,1260529,34,1741,1 +29964,1260556,49,2462,1 +29965,1260650,16,825,1 +29966,1260651,87,4368,1 +29967,1260666,161,8085,1 +29968,1260684,5,290,1 +29969,1261440,164,8237,1 +29970,1261440,60,3041,1 +29971,1261441,190,9510,1 +29972,1261442,182,9101,1 +29973,1261449,52,2618,1 +29974,1261452,149,7492,1 +29975,1261452,91,4600,1 +29976,1261453,120,6043,1 +29977,1261454,44,2241,1 +29978,1261476,66,3336,1 +29979,1261479,130,6542,1 +29980,1261488,17,886,1 +29981,1261497,128,6416,1 +29982,1261506,29,1463,1 +29983,1261506,165,8290,1 +29984,1261527,94,4746,1 +29985,1261560,56,2824,1 +29986,1261587,178,8919,1 +29987,1261596,11,567,1 +29988,1261969,43,2153,1 +29989,1262040,55,2763,1 +29990,1262400,174,8711,1 +29991,1262400,50,2518,1 +29992,1262410,43,2172,1 +29993,1262413,180,9026,1 +29994,1262413,80,4008,1 +29995,1262436,99,4992,1 +29996,1262436,161,8089,1 +29997,1262436,174,8734,1 +29998,1262438,187,9382,1 +29999,1262448,121,6056,1 +30000,1262460,17,869,1 +30001,1262472,142,7106,1 +30002,1262472,132,6615,1 +30003,1262484,73,3659,1 +30004,1262502,44,2203,1 +30005,1262880,117,5870,1 +30006,1262917,62,3120,1 +30007,1262928,192,9634,1 +30008,1262929,174,8733,1 +30009,1262976,128,6424,1 +30010,1262976,182,9137,1 +30011,1263360,139,6988,1 +30012,1263360,172,8644,1 +30013,1263360,104,5245,1 +30014,1263360,116,5843,1 +30015,1263360,30,1530,1 +30016,1263366,110,5540,1 +30017,1263396,124,6207,1 +30018,1263399,32,1615,1 +30019,1263417,168,8415,1 +30020,1263423,194,9736,1 +30021,1263423,6,344,1 +30022,1263456,86,4308,1 +30023,1263471,175,8775,1 +30024,1263850,19,983,1 +30025,1263864,172,8612,1 +30026,1263924,125,6285,1 +30027,1264020,3,175,1 +30028,1264327,186,9342,1 +30029,1264356,114,5703,1 +30030,1264368,40,2012,1 +30031,1264536,119,5980,1 +30032,1265283,59,2982,1 +30033,1265289,87,4360,1 +30034,1265293,132,6627,1 +30035,1265295,57,2851,1 +30036,1265304,173,8679,1 +30037,1265305,136,6828,1 +30038,1265316,185,9292,1 +30039,1265322,185,9258,1 +30040,1265329,82,4137,1 +30041,1265337,69,3482,1 +30042,1265347,185,9277,1 +30043,1265366,141,7056,1 +30044,1265377,173,8683,1 +30045,1265460,192,9628,1 +30046,1265814,20,1041,1 +30047,1266240,162,8129,1 +30048,1266240,5,279,1 +30049,1266242,50,2521,1 +30050,1266243,156,7832,1 +30051,1266249,85,4268,1 +30052,1266252,41,2089,1 +30053,1266252,49,2472,1 +30054,1266255,36,1802,1 +30055,1266259,17,854,1 +30056,1266261,39,1961,1 +30057,1266261,199,9958,1 +30058,1266264,159,7988,1 +30059,1266264,77,3863,1 +30060,1266268,36,1814,1 +30061,1266276,157,7900,1 +30062,1266279,72,3602,1 +30063,1266285,10,518,1 +30064,1266288,128,6413,1 +30065,1266294,148,7440,1 +30066,1266297,195,9783,1 +30067,1266300,191,9575,1 +30068,1266301,193,9682,1 +30069,1266312,168,8445,1 +30070,1266324,169,8499,1 +30071,1266336,3,157,1 +30072,1266349,144,7228,1 +30073,1266386,1,57,1 +30074,1266528,157,7875,1 +30075,1266720,79,3993,1 +30076,1266732,135,6797,1 +30077,1266769,198,9930,1 +30078,1266804,93,4686,1 +30079,1266879,62,3144,1 +30080,1267203,182,9112,1 +30081,1267212,22,1140,1 +30082,1267212,187,9390,1 +30083,1267212,160,8041,1 +30084,1267215,104,5239,1 +30085,1267218,142,7131,1 +30086,1267225,39,1989,1 +30087,1267227,61,3092,1 +30088,1267227,108,5408,1 +30089,1267237,197,9867,1 +30090,1267248,101,5077,1 +30091,1267254,140,7012,1 +30092,1267259,153,7683,1 +30093,1267260,113,5665,1 +30094,1267260,70,3529,1 +30095,1267260,43,2194,1 +30096,1267308,62,3145,1 +30097,1267344,197,9860,1 +30098,1267368,182,9117,1 +30099,1267692,21,1069,1 +30100,1267695,197,9867,1 +30101,1267707,75,3759,1 +30102,1267752,125,6282,1 +30103,1267753,40,2031,1 +30104,1267824,77,3885,1 +30105,1267896,78,3903,1 +30106,1268163,4,235,1 +30107,1268173,75,3792,1 +30108,1268220,198,9901,1 +30109,1268256,174,8701,1 +30110,1268642,155,7795,1 +30111,1268652,174,8710,1 +30112,1268664,130,6538,1 +30113,1268688,7,397,1 +30114,1268688,73,3693,1 +30115,1268844,130,6524,1 +30116,1269168,14,719,1 +30117,1269330,116,5850,1 +30118,1270080,67,3353,1 +30119,1270080,146,7309,1 +30120,1270092,62,3131,1 +30121,1270101,64,3210,1 +30122,1270101,118,5918,1 +30123,1270104,10,513,1 +30124,1270104,110,5532,1 +30125,1270104,21,1069,1 +30126,1270107,100,5009,1 +30127,1270116,33,1689,1 +30128,1270116,141,7077,1 +30129,1270128,149,7470,1 +30130,1270152,137,6884,1 +30131,1270164,144,7233,1 +30132,1270164,123,6157,1 +30133,1270164,108,5449,1 +30134,1270173,171,8586,1 +30135,1270237,179,8985,1 +30136,1270242,93,4694,1 +30137,1270326,170,8519,1 +30138,1270333,78,3919,1 +30139,1270561,138,6903,1 +30140,1270561,130,6516,1 +30141,1270562,102,5132,1 +30142,1270569,36,1815,1 +30143,1270573,126,6306,1 +30144,1270584,25,1261,1 +30145,1270593,5,287,1 +30146,1270594,141,7096,1 +30147,1270596,174,8738,1 +30148,1270599,60,3001,1 +30149,1270605,23,1190,1 +30150,1270608,39,1978,1 +30151,1270608,72,3621,1 +30152,1270621,183,9155,1 +30153,1270621,133,6679,1 +30154,1270635,87,4360,1 +30155,1270648,0,21,1 +30156,1270653,75,3772,1 +30157,1270654,4,218,1 +30158,1270656,166,8316,1 +30159,1270728,176,8849,1 +30160,1271077,136,6814,1 +30161,1271102,159,7989,1 +30162,1271522,95,4798,1 +30163,1271556,144,7231,1 +30164,1271574,111,5587,1 +30165,1272000,69,3489,1 +30166,1272000,22,1123,1 +30167,1272001,17,880,1 +30168,1272003,94,4739,1 +30169,1272004,85,4271,1 +30170,1272012,63,3161,1 +30171,1272012,104,5206,1 +30172,1272012,149,7500,1 +30173,1272012,31,1556,1 +30174,1272013,143,7197,1 +30175,1272014,43,2188,1 +30176,1272024,34,1724,1 +30177,1272027,182,9107,1 +30178,1272030,13,672,1 +30179,1272033,103,5194,1 +30180,1272034,87,4379,1 +30181,1272049,62,3124,1 +30182,1272050,163,8200,1 +30183,1272052,50,2504,1 +30184,1272060,125,6285,1 +30185,1272063,166,8325,1 +30186,1272081,40,2038,1 +30187,1272081,70,3503,1 +30188,1272093,157,7890,1 +30189,1272097,194,9709,1 +30190,1272108,54,2719,1 +30191,1272109,123,6178,1 +30192,1272141,166,8320,1 +30193,1272146,16,821,1 +30194,1272180,70,3510,1 +30195,1272219,106,5303,1 +30196,1272242,185,9251,1 +30197,1272480,60,3047,1 +30198,1272966,9,457,1 +30199,1273468,152,7648,1 +30200,1273486,181,9082,1 +30201,1273488,24,1234,1 +30202,1273720,130,6537,1 +30203,1274053,116,5820,1 +30204,1274400,58,2930,1 +30205,1274439,2,143,1 +30206,1274596,2,138,1 +30207,1274886,179,8979,1 +30208,1274928,180,9041,1 +30209,1274949,15,789,1 +30210,1275360,159,7975,1 +30211,1275360,47,2388,1 +30212,1275396,179,8984,1 +30213,1275396,94,4737,1 +30214,1275397,132,6645,1 +30215,1275408,145,7290,1 +30216,1275410,20,1019,1 +30217,1275422,140,7011,1 +30218,1275432,156,7814,1 +30219,1275468,127,6365,1 +30220,1275483,8,409,1 +30221,1275576,167,8362,1 +30222,1275576,74,3714,1 +30223,1275849,20,1044,1 +30224,1275854,139,6997,1 +30225,1275888,166,8314,1 +30226,1275893,79,3972,1 +30227,1275957,190,9519,1 +30228,1276344,98,4905,1 +30229,1276368,187,9375,1 +30230,1276429,85,4296,1 +30231,1277292,36,1822,1 +30232,1277292,149,7492,1 +30233,1277388,20,1016,1 +30234,1277389,26,1339,1 +30235,1277553,54,2727,1 +30236,1277760,186,9320,1 +30237,1277760,194,9749,1 +30238,1277760,184,9204,1 +30239,1277766,20,1021,1 +30240,1277772,176,8823,1 +30241,1277772,171,8553,1 +30242,1277784,177,8900,1 +30243,1277791,134,6719,1 +30244,1277796,178,8940,1 +30245,1277811,65,3271,1 +30246,1277822,131,6580,1 +30247,1277845,42,2138,1 +30248,1277865,49,2461,1 +30249,1277870,29,1492,1 +30250,1277883,152,7641,1 +30251,1277916,109,5484,1 +30252,1278240,84,4212,1 +30253,1278257,20,1047,1 +30254,1278264,120,6003,1 +30255,1278264,155,7787,1 +30256,1278264,104,5231,1 +30257,1278289,187,9393,1 +30258,1278432,192,9602,1 +30259,1278720,48,2405,1 +30260,1278723,121,6072,1 +30261,1278732,51,2554,1 +30262,1278733,178,8910,1 +30263,1278735,120,6043,1 +30264,1278747,3,161,1 +30265,1278756,133,6678,1 +30266,1278756,149,7476,1 +30267,1278780,149,7475,1 +30268,1278781,71,3563,1 +30269,1279680,73,3674,1 +30270,1279824,21,1090,1 +30271,1280199,109,5492,1 +30272,1280199,107,5391,1 +30273,1280208,160,8050,1 +30274,1280220,92,4602,1 +30275,1280640,17,878,1 +30276,1280640,120,6005,1 +30277,1280640,185,9261,1 +30278,1280641,146,7348,1 +30279,1280641,168,8410,1 +30280,1280641,188,9422,1 +30281,1280641,66,3321,1 +30282,1280643,68,3424,1 +30283,1280644,188,9401,1 +30284,1280647,164,8201,1 +30285,1280649,64,3232,1 +30286,1280650,96,4844,1 +30287,1280650,152,7621,1 +30288,1280652,131,6600,1 +30289,1280652,155,7800,1 +30290,1280652,162,8145,1 +30291,1280652,26,1318,1 +30292,1280652,186,9312,1 +30293,1280652,89,4478,1 +30294,1280652,62,3130,1 +30295,1280652,63,3184,1 +30296,1280652,131,6591,1 +30297,1280653,60,3042,1 +30298,1280653,54,2715,1 +30299,1280655,139,6961,1 +30300,1280655,27,1371,1 +30301,1280655,161,8091,1 +30302,1280656,22,1102,1 +30303,1280656,64,3238,1 +30304,1280662,147,7393,1 +30305,1280664,115,5762,1 +30306,1280664,152,7618,1 +30307,1280664,94,4740,1 +30308,1280664,176,8805,1 +30309,1280664,80,4048,1 +30310,1280665,77,3857,1 +30311,1280665,22,1113,1 +30312,1280667,109,5496,1 +30313,1280667,119,5965,1 +30314,1280670,57,2855,1 +30315,1280671,119,5989,1 +30316,1280673,90,4515,1 +30317,1280676,92,4603,1 +30318,1280676,118,5935,1 +30319,1280676,94,4731,1 +30320,1280688,150,7512,1 +30321,1280689,108,5416,1 +30322,1280700,107,5374,1 +30323,1280700,84,4247,1 +30324,1280702,47,2363,1 +30325,1280703,189,9485,1 +30326,1280703,117,5871,1 +30327,1280712,53,2698,1 +30328,1280712,189,9470,1 +30329,1280718,52,2637,1 +30330,1280724,70,3546,1 +30331,1280724,63,3172,1 +30332,1280728,73,3655,1 +30333,1280736,123,6171,1 +30334,1280737,83,4200,1 +30335,1280742,169,8490,1 +30336,1280752,31,1561,1 +30337,1280763,167,8389,1 +30338,1280763,187,9371,1 +30339,1280772,77,3851,1 +30340,1280778,94,4708,1 +30341,1280784,65,3279,1 +30342,1280784,194,9734,1 +30343,1280787,67,3398,1 +30344,1280799,199,9965,1 +30345,1281145,125,6286,1 +30346,1281204,70,3522,1 +30347,1281601,169,8476,1 +30348,1281601,55,2754,1 +30349,1281606,166,8302,1 +30350,1281624,80,4027,1 +30351,1281630,31,1567,1 +30352,1281638,61,3061,1 +30353,1281672,49,2483,1 +30354,1281685,88,4406,1 +30355,1281711,7,370,1 +30356,1281720,165,8299,1 +30357,1282080,121,6069,1 +30358,1282561,51,2553,1 +30359,1282561,0,34,1 +30360,1282561,143,7163,1 +30361,1282562,161,8068,1 +30362,1282572,91,4558,1 +30363,1282573,67,3385,1 +30364,1282583,13,681,1 +30365,1282585,54,2723,1 +30366,1282587,69,3456,1 +30367,1282590,61,3086,1 +30368,1282590,184,9248,1 +30369,1282596,9,465,1 +30370,1282596,181,9070,1 +30371,1282596,197,9860,1 +30372,1282599,133,6652,1 +30373,1282600,184,9248,1 +30374,1282600,133,6683,1 +30375,1282602,181,9081,1 +30376,1282605,126,6326,1 +30377,1282609,97,4871,1 +30378,1282611,27,1370,1 +30379,1282623,146,7318,1 +30380,1282626,180,9011,1 +30381,1282644,143,7179,1 +30382,1282645,54,2745,1 +30383,1282680,159,7986,1 +30384,1282692,44,2208,1 +30385,1282704,108,5447,1 +30386,1282731,25,1268,1 +30387,1283556,180,9040,1 +30388,1284009,9,486,1 +30389,1284036,152,7620,1 +30390,1284072,145,7283,1 +30391,1284163,183,9155,1 +30392,1284397,180,9042,1 +30393,1284483,111,5600,1 +30394,1284484,5,266,1 +30395,1284495,17,889,1 +30396,1284504,22,1134,1 +30397,1284510,191,9584,1 +30398,1284516,7,373,1 +30399,1284516,58,2946,1 +30400,1284528,34,1750,1 +30401,1284529,40,2042,1 +30402,1284540,117,5871,1 +30403,1284552,65,3280,1 +30404,1284960,41,2057,1 +30405,1284961,87,4378,1 +30406,1284962,196,9825,1 +30407,1284964,164,8240,1 +30408,1284972,28,1445,1 +30409,1284973,135,6751,1 +30410,1285001,59,2982,1 +30411,1285001,193,9651,1 +30412,1285008,160,8015,1 +30413,1285022,124,6237,1 +30414,1285120,141,7072,1 +30415,1285272,198,9904,1 +30416,1285440,166,8340,1 +30417,1285440,27,1359,1 +30418,1285464,15,782,1 +30419,1285464,73,3693,1 +30420,1285466,161,8061,1 +30421,1285477,153,7696,1 +30422,1285518,170,8505,1 +30423,1285920,163,8157,1 +30424,1285933,198,9931,1 +30425,1285945,143,7164,1 +30426,1285956,77,3852,1 +30427,1285968,196,9849,1 +30428,1286400,181,9059,1 +30429,1286412,126,6325,1 +30430,1286416,134,6750,1 +30431,1286425,193,9657,1 +30432,1286427,100,5003,1 +30433,1286448,10,511,1 +30434,1286448,82,4124,1 +30435,1286458,58,2916,1 +30436,1286484,150,7530,1 +30437,1286522,149,7481,1 +30438,1286527,131,6576,1 +30439,1286607,129,6466,1 +30440,1286895,48,2414,1 +30441,1286898,141,7053,1 +30442,1286909,33,1673,1 +30443,1286916,25,1285,1 +30444,1286929,167,8378,1 +30445,1286964,87,4397,1 +30446,1287025,64,3228,1 +30447,1287361,0,14,1 +30448,1287374,153,7697,1 +30449,1287378,151,7576,1 +30450,1287386,145,7262,1 +30451,1287396,157,7868,1 +30452,1287444,52,2645,1 +30453,1287493,65,3275,1 +30454,1287840,67,3367,1 +30455,1287840,181,9053,1 +30456,1287840,36,1817,1 +30457,1287840,89,4453,1 +30458,1287840,179,8968,1 +30459,1287840,130,6546,1 +30460,1287840,51,2578,1 +30461,1287840,197,9856,1 +30462,1287841,107,5360,1 +30463,1287841,70,3531,1 +30464,1287841,43,2158,1 +30465,1287841,35,1799,1 +30466,1287841,9,494,1 +30467,1287841,7,362,1 +30468,1287842,138,6909,1 +30469,1287843,18,903,1 +30470,1287843,155,7796,1 +30471,1287843,7,361,1 +30472,1287843,144,7231,1 +30473,1287843,131,6553,1 +30474,1287846,106,5335,1 +30475,1287846,118,5915,1 +30476,1287846,68,3417,1 +30477,1287847,137,6891,1 +30478,1287849,181,9078,1 +30479,1287850,154,7740,1 +30480,1287851,183,9190,1 +30481,1287852,186,9327,1 +30482,1287852,148,7407,1 +30483,1287852,47,2400,1 +30484,1287852,116,5818,1 +30485,1287852,164,8205,1 +30486,1287852,196,9831,1 +30487,1287852,148,7420,1 +30488,1287852,149,7476,1 +30489,1287852,112,5645,1 +30490,1287852,45,2296,1 +30491,1287853,122,6104,1 +30492,1287853,51,2578,1 +30493,1287853,112,5638,1 +30494,1287853,18,938,1 +30495,1287854,165,8293,1 +30496,1287854,15,765,1 +30497,1287855,45,2267,1 +30498,1287855,187,9358,1 +30499,1287855,69,3452,1 +30500,1287855,99,4988,1 +30501,1287855,141,7093,1 +30502,1287861,38,1949,1 +30503,1287861,147,7354,1 +30504,1287864,91,4573,1 +30505,1287864,78,3940,1 +30506,1287864,17,868,1 +30507,1287864,26,1346,1 +30508,1287864,190,9522,1 +30509,1287864,128,6422,1 +30510,1287865,115,5771,1 +30511,1287865,176,8815,1 +30512,1287867,53,2665,1 +30513,1287870,185,9294,1 +30514,1287873,132,6645,1 +30515,1287873,103,5166,1 +30516,1287875,18,909,1 +30517,1287875,74,3710,1 +30518,1287876,22,1126,1 +30519,1287876,99,4999,1 +30520,1287876,99,4987,1 +30521,1287876,64,3238,1 +30522,1287876,181,9090,1 +30523,1287876,90,4549,1 +30524,1287876,182,9125,1 +30525,1287876,190,9504,1 +30526,1287876,103,5166,1 +30527,1287877,97,4893,1 +30528,1287877,104,5225,1 +30529,1287877,60,3015,1 +30530,1287878,25,1296,1 +30531,1287880,88,4402,1 +30532,1287880,68,3413,1 +30533,1287880,77,3900,1 +30534,1287883,165,8286,1 +30535,1287886,137,6867,1 +30536,1287888,27,1355,1 +30537,1287888,75,3789,1 +30538,1287888,152,7612,1 +30539,1287888,118,5941,1 +30540,1287889,26,1323,1 +30541,1287889,89,4471,1 +30542,1287891,107,5386,1 +30543,1287897,165,8264,1 +30544,1287900,193,9670,1 +30545,1287900,143,7174,1 +30546,1287900,182,9118,1 +30547,1287900,63,3152,1 +30548,1287900,178,8944,1 +30549,1287900,109,5480,1 +30550,1287900,87,4354,1 +30551,1287900,66,3301,1 +30552,1287901,146,7311,1 +30553,1287902,199,9985,1 +30554,1287903,183,9198,1 +30555,1287907,168,8437,1 +30556,1287907,24,1207,1 +30557,1287909,105,5254,1 +30558,1287909,134,6749,1 +30559,1287910,28,1440,1 +30560,1287910,184,9240,1 +30561,1287912,178,8935,1 +30562,1287924,67,3355,1 +30563,1287924,13,669,1 +30564,1287924,160,8017,1 +30565,1287924,56,2827,1 +30566,1287927,158,7917,1 +30567,1287927,53,2667,1 +30568,1287929,39,1982,1 +30569,1287930,41,2086,1 +30570,1287943,97,4879,1 +30571,1287944,30,1519,1 +30572,1287950,160,8003,1 +30573,1287960,108,5401,1 +30574,1287960,121,6073,1 +30575,1287960,53,2680,1 +30576,1287969,169,8454,1 +30577,1287972,167,8396,1 +30578,1287974,180,9049,1 +30579,1287977,132,6601,1 +30580,1287978,54,2750,1 +30581,1287985,76,3809,1 +30582,1287995,151,7553,1 +30583,1287996,171,8573,1 +30584,1288005,25,1285,1 +30585,1288008,199,10000,1 +30586,1288017,135,6756,1 +30587,1288033,123,6175,1 +30588,1288046,114,5708,1 +30589,1288057,92,4622,1 +30590,1288057,173,8657,1 +30591,1288141,136,6830,1 +30592,1288320,6,342,1 +30593,1288322,0,36,1 +30594,1288345,133,6697,1 +30595,1288474,31,1588,1 +30596,1288525,51,2597,1 +30597,1288800,70,3502,1 +30598,1288813,2,128,1 +30599,1288824,115,5757,1 +30600,1288864,82,4116,1 +30601,1288884,104,5213,1 +30602,1288911,74,3739,1 +30603,1288942,14,741,1 +30604,1288944,184,9236,1 +30605,1289760,174,8718,1 +30606,1289784,150,7513,1 +30607,1289844,21,1083,1 +30608,1290240,162,8101,1 +30609,1290240,154,7732,1 +30610,1290240,88,4423,1 +30611,1290240,55,2765,1 +30612,1290241,56,2835,1 +30613,1290243,114,5708,1 +30614,1290249,172,8645,1 +30615,1290252,17,898,1 +30616,1290252,58,2907,1 +30617,1290252,177,8880,1 +30618,1290252,78,3947,1 +30619,1290253,98,4935,1 +30620,1290264,47,2384,1 +30621,1290266,36,1817,1 +30622,1290280,89,4489,1 +30623,1290286,140,7023,1 +30624,1290288,59,2987,1 +30625,1290288,159,8000,1 +30626,1290288,51,2595,1 +30627,1290289,175,8770,1 +30628,1290289,63,3178,1 +30629,1290300,44,2221,1 +30630,1290301,37,1855,1 +30631,1290303,29,1500,1 +30632,1290309,137,6890,1 +30633,1290312,58,2938,1 +30634,1290321,117,5896,1 +30635,1290327,131,6587,1 +30636,1290360,76,3832,1 +30637,1290372,168,8445,1 +30638,1290405,86,4315,1 +30639,1290408,79,3954,1 +30640,1290410,153,7691,1 +30641,1290528,78,3923,1 +30642,1290720,166,8308,1 +30643,1290721,191,9577,1 +30644,1290744,19,983,1 +30645,1290756,112,5622,1 +30646,1290768,40,2026,1 +30647,1290798,70,3523,1 +30648,1290807,68,3404,1 +30649,1291205,26,1323,1 +30650,1291210,81,4068,1 +30651,1291227,0,30,1 +30652,1291246,27,1373,1 +30653,1291266,48,2408,1 +30654,1291275,50,2541,1 +30655,1291325,91,4564,1 +30656,1291364,157,7882,1 +30657,1291680,14,719,1 +30658,1291680,60,3007,1 +30659,1291680,100,5042,1 +30660,1291680,144,7242,1 +30661,1291680,10,528,1 +30662,1291681,64,3238,1 +30663,1291681,34,1712,1 +30664,1291681,59,2999,1 +30665,1291681,125,6265,1 +30666,1291685,113,5669,1 +30667,1291686,108,5417,1 +30668,1291692,95,4770,1 +30669,1291692,151,7597,1 +30670,1291692,107,5369,1 +30671,1291692,2,134,1 +30672,1291693,97,4897,1 +30673,1291694,30,1528,1 +30674,1291694,132,6648,1 +30675,1291695,86,4348,1 +30676,1291696,37,1885,1 +30677,1291696,83,4156,1 +30678,1291698,43,2177,1 +30679,1291698,59,2994,1 +30680,1291704,54,2739,1 +30681,1291704,29,1475,1 +30682,1291705,179,8951,1 +30683,1291705,60,3005,1 +30684,1291705,114,5702,1 +30685,1291705,178,8943,1 +30686,1291705,78,3949,1 +30687,1291706,187,9391,1 +30688,1291706,29,1477,1 +30689,1291706,50,2517,1 +30690,1291706,76,3820,1 +30691,1291716,124,6201,1 +30692,1291716,14,740,1 +30693,1291716,62,3149,1 +30694,1291716,154,7725,1 +30695,1291722,47,2354,1 +30696,1291724,90,4537,1 +30697,1291728,157,7898,1 +30698,1291729,101,5078,1 +30699,1291729,180,9039,1 +30700,1291731,155,7756,1 +30701,1291734,75,3779,1 +30702,1291737,160,8008,1 +30703,1291740,150,7510,1 +30704,1291740,1,71,1 +30705,1291741,149,7474,1 +30706,1291743,17,895,1 +30707,1291746,110,5550,1 +30708,1291746,143,7176,1 +30709,1291752,120,6031,1 +30710,1291752,110,5546,1 +30711,1291755,0,6,1 +30712,1291759,47,2392,1 +30713,1291765,29,1497,1 +30714,1291766,116,5809,1 +30715,1291767,189,9456,1 +30716,1291767,182,9146,1 +30717,1291776,101,5056,1 +30718,1291776,125,6298,1 +30719,1291776,17,868,1 +30720,1291776,57,2899,1 +30721,1291788,136,6819,1 +30722,1291800,49,2486,1 +30723,1291800,155,7776,1 +30724,1291812,132,6628,1 +30725,1291848,116,5826,1 +30726,1291848,108,5410,1 +30727,1291849,15,771,1 +30728,1291872,10,509,1 +30729,1291905,104,5214,1 +30730,1292050,163,8160,1 +30731,1292160,195,9782,1 +30732,1292163,70,3522,1 +30733,1292184,118,5941,1 +30734,1292184,184,9204,1 +30735,1292197,127,6369,1 +30736,1292202,119,5968,1 +30737,1292241,19,954,1 +30738,1292260,198,9904,1 +30739,1292268,66,3341,1 +30740,1292652,98,4913,1 +30741,1292654,177,8893,1 +30742,1292688,148,7440,1 +30743,1292788,182,9132,1 +30744,1293121,78,3902,1 +30745,1293132,142,7142,1 +30746,1293204,140,7006,1 +30747,1293252,1,93,1 +30748,1293618,95,4799,1 +30749,1293642,171,8587,1 +30750,1293702,155,7788,1 +30751,1294128,121,6072,1 +30752,1294130,188,9440,1 +30753,1294159,197,9865,1 +30754,1294561,2,147,1 +30755,1294563,190,9504,1 +30756,1294569,103,5184,1 +30757,1294584,90,4524,1 +30758,1294584,48,2417,1 +30759,1294584,116,5812,1 +30760,1294597,16,847,1 +30761,1294632,132,6611,1 +30762,1294644,27,1387,1 +30763,1294689,85,4266,1 +30764,1294705,12,629,1 +30765,1294836,31,1594,1 +30766,1295046,138,6928,1 +30767,1295050,99,5000,1 +30768,1295531,120,6046,1 +30769,1295532,67,3359,1 +30770,1295537,148,7431,1 +30771,1295544,134,6731,1 +30772,1295544,124,6223,1 +30773,1295544,184,9234,1 +30774,1295544,41,2096,1 +30775,1295545,130,6515,1 +30776,1295560,174,8748,1 +30777,1295568,176,8804,1 +30778,1295580,147,7389,1 +30779,1295580,169,8488,1 +30780,1295604,118,5948,1 +30781,1295604,43,2190,1 +30782,1295604,172,8605,1 +30783,1295605,118,5917,1 +30784,1295629,57,2887,1 +30785,1295637,43,2186,1 +30786,1296980,105,5264,1 +30787,1297026,12,609,1 +30788,1297032,48,2409,1 +30789,1297061,141,7065,1 +30790,1297920,8,440,1 +30791,1297920,163,8193,1 +30792,1297920,185,9262,1 +30793,1297922,113,5683,1 +30794,1297924,75,3752,1 +30795,1297926,129,6490,1 +30796,1297932,163,8173,1 +30797,1297932,147,7396,1 +30798,1297933,163,8157,1 +30799,1297934,11,598,1 +30800,1297944,195,9753,1 +30801,1297950,6,347,1 +30802,1297951,67,3353,1 +30803,1297956,198,9929,1 +30804,1297966,163,8179,1 +30805,1297968,89,4494,1 +30806,1297970,83,4178,1 +30807,1298041,160,8007,1 +30808,1298064,86,4315,1 +30809,1298106,142,7147,1 +30810,1298403,179,8967,1 +30811,1298412,100,5021,1 +30812,1298412,139,6960,1 +30813,1298412,73,3675,1 +30814,1298424,73,3699,1 +30815,1298425,84,4203,1 +30816,1298427,152,7647,1 +30817,1298430,68,3449,1 +30818,1298470,54,2729,1 +30819,1298511,119,5962,1 +30820,1298515,75,3776,1 +30821,1298619,20,1012,1 +30822,1298695,174,8740,1 +30823,1298880,41,2051,1 +30824,1298883,135,6762,1 +30825,1298899,103,5177,1 +30826,1298904,59,2976,1 +30827,1298916,53,2696,1 +30828,1298929,147,7368,1 +30829,1298981,151,7575,1 +30830,1298986,167,8372,1 +30831,1299000,110,5549,1 +30832,1299027,131,6581,1 +30833,1299036,87,4368,1 +30834,1299037,158,7920,1 +30835,1299055,92,4602,1 +30836,1299097,194,9731,1 +30837,1299361,170,8540,1 +30838,1299372,192,9637,1 +30839,1299373,179,8995,1 +30840,1299408,121,6051,1 +30841,1299410,156,7835,1 +30842,1299421,156,7823,1 +30843,1299429,151,7595,1 +30844,1299456,154,7704,1 +30845,1299840,111,5563,1 +30846,1300325,91,4552,1 +30847,1300368,80,4030,1 +30848,1300800,124,6204,1 +30849,1300804,105,5252,1 +30850,1300812,104,5239,1 +30851,1300813,55,2770,1 +30852,1300813,41,2071,1 +30853,1300813,94,4714,1 +30854,1300816,8,448,1 +30855,1300824,104,5211,1 +30856,1300827,113,5652,1 +30857,1300833,59,2984,1 +30858,1300836,29,1456,1 +30859,1300836,104,5242,1 +30860,1300837,112,5640,1 +30861,1300839,179,8975,1 +30862,1300851,131,6551,1 +30863,1300870,135,6770,1 +30864,1300872,145,7254,1 +30865,1300884,43,2169,1 +30866,1300896,89,4500,1 +30867,1300897,65,3265,1 +30868,1300908,16,820,1 +30869,1300908,13,662,1 +30870,1301004,105,5254,1 +30871,1301760,59,2998,1 +30872,1301760,13,652,1 +30873,1301761,138,6932,1 +30874,1301767,199,10000,1 +30875,1301772,47,2395,1 +30876,1301781,146,7322,1 +30877,1301785,186,9305,1 +30878,1301796,104,5216,1 +30879,1301808,45,2253,1 +30880,1301811,193,9683,1 +30881,1301820,115,5782,1 +30882,1301827,174,8737,1 +30883,1301832,63,3161,1 +30884,1301844,133,6675,1 +30885,1301845,13,651,1 +30886,1301857,121,6078,1 +30887,1301925,129,6467,1 +30888,1301953,160,8041,1 +30889,1301991,52,2640,1 +30890,1302240,151,7551,1 +30891,1302241,158,7902,1 +30892,1302244,135,6764,1 +30893,1302252,78,3928,1 +30894,1302252,41,2092,1 +30895,1302252,125,6299,1 +30896,1302253,128,6449,1 +30897,1302255,46,2341,1 +30898,1302258,25,1270,1 +30899,1302261,98,4923,1 +30900,1302263,2,102,1 +30901,1302266,114,5707,1 +30902,1302273,125,6298,1 +30903,1302277,47,2393,1 +30904,1302289,104,5246,1 +30905,1302300,109,5479,1 +30906,1302321,56,2815,1 +30907,1302361,94,4742,1 +30908,1302369,153,7655,1 +30909,1302720,163,8157,1 +30910,1302720,193,9687,1 +30911,1302721,67,3370,1 +30912,1302724,105,5284,1 +30913,1302730,69,3498,1 +30914,1302732,158,7946,1 +30915,1302735,120,6042,1 +30916,1302745,119,5989,1 +30917,1302747,103,5192,1 +30918,1302758,101,5081,1 +30919,1302768,25,1269,1 +30920,1302769,186,9320,1 +30921,1302792,16,829,1 +30922,1302793,175,8766,1 +30923,1302796,111,5561,1 +30924,1302805,190,9548,1 +30925,1302829,197,9879,1 +30926,1302878,42,2129,1 +30927,1302912,23,1198,1 +30928,1302934,161,8056,1 +30929,1303201,159,7979,1 +30930,1303203,64,3237,1 +30931,1303216,15,762,1 +30932,1303224,119,5961,1 +30933,1303224,148,7436,1 +30934,1303236,195,9778,1 +30935,1303257,36,1809,1 +30936,1303261,105,5252,1 +30937,1303284,196,9833,1 +30938,1303296,124,6247,1 +30939,1303297,2,133,1 +30940,1303311,172,8605,1 +30941,1303416,171,8557,1 +30942,1303680,107,5360,1 +30943,1303692,179,8955,1 +30944,1303719,118,5929,1 +30945,1303752,176,8828,1 +30946,1304160,162,8111,1 +30947,1304160,22,1130,1 +30948,1304167,94,4716,1 +30949,1304172,32,1645,1 +30950,1304176,117,5859,1 +30951,1304178,172,8629,1 +30952,1304185,154,7745,1 +30953,1304208,139,6966,1 +30954,1304217,11,558,1 +30955,1304640,131,6563,1 +30956,1304640,66,3341,1 +30957,1304640,124,6227,1 +30958,1304642,134,6719,1 +30959,1304644,114,5745,1 +30960,1304650,130,6502,1 +30961,1304650,169,8480,1 +30962,1304653,44,2205,1 +30963,1304682,88,4428,1 +30964,1304688,137,6881,1 +30965,1304691,38,1912,1 +30966,1304700,155,7766,1 +30967,1304727,45,2277,1 +30968,1304733,37,1880,1 +30969,1304748,117,5871,1 +30970,1304749,36,1840,1 +30971,1305012,109,5487,1 +30972,1305120,96,4810,1 +30973,1305129,89,4463,1 +30974,1305134,40,2021,1 +30975,1305157,78,3923,1 +30976,1305160,196,9849,1 +30977,1305257,125,6254,1 +30978,1305266,114,5725,1 +30979,1305302,37,1868,1 +30980,1305603,25,1272,1 +30981,1306080,178,8940,1 +30982,1306080,49,2455,1 +30983,1306084,174,8705,1 +30984,1306092,71,3590,1 +30985,1306103,6,327,1 +30986,1306104,7,388,1 +30987,1306130,193,9682,1 +30988,1306152,112,5620,1 +30989,1306575,128,6442,1 +30990,1306669,56,2811,1 +30991,1307533,81,4057,1 +30992,1307703,43,2170,1 +30993,1307772,190,9505,1 +30994,1308006,57,2868,1 +30995,1308012,122,6149,1 +30996,1308026,94,4701,1 +30997,1308037,124,6249,1 +30998,1308058,121,6054,1 +30999,1308060,100,5020,1 +31000,1308065,167,8399,1 +31001,1308106,53,2682,1 +31002,1308198,196,9838,1 +31003,1308480,60,3035,1 +31004,1308480,33,1689,1 +31005,1308481,151,7555,1 +31006,1308482,114,5740,1 +31007,1308483,88,4438,1 +31008,1308487,75,3795,1 +31009,1308492,74,3719,1 +31010,1308492,77,3896,1 +31011,1308492,68,3415,1 +31012,1308492,47,2389,1 +31013,1308493,83,4159,1 +31014,1308495,175,8752,1 +31015,1308495,44,2248,1 +31016,1308502,90,4535,1 +31017,1308504,58,2929,1 +31018,1308504,87,4387,1 +31019,1308504,67,3378,1 +31020,1308505,78,3942,1 +31021,1308510,65,3291,1 +31022,1308511,124,6239,1 +31023,1308513,81,4080,1 +31024,1308516,15,767,1 +31025,1308529,167,8379,1 +31026,1308537,174,8738,1 +31027,1308540,184,9233,1 +31028,1308541,6,338,1 +31029,1308555,47,2372,1 +31030,1308565,65,3268,1 +31031,1308600,19,988,1 +31032,1308624,25,1257,1 +31033,1308626,46,2348,1 +31034,1308998,5,251,1 +31035,1309033,12,650,1 +31036,1309153,131,6557,1 +31037,1309446,14,709,1 +31038,1309452,78,3926,1 +31039,1309454,67,3366,1 +31040,1309464,172,8648,1 +31041,1309479,109,5457,1 +31042,1309488,53,2656,1 +31043,1309920,191,9598,1 +31044,1309920,153,7672,1 +31045,1309930,101,5077,1 +31046,1309932,79,3979,1 +31047,1309935,154,7701,1 +31048,1309935,54,2739,1 +31049,1309938,144,7227,1 +31050,1309944,104,5239,1 +31051,1309945,168,8407,1 +31052,1309956,135,6778,1 +31053,1309956,98,4944,1 +31054,1309957,44,2240,1 +31055,1309959,180,9018,1 +31056,1309980,133,6699,1 +31057,1309992,125,6298,1 +31058,1309992,173,8691,1 +31059,1310005,65,3294,1 +31060,1310028,118,5927,1 +31061,1310088,177,8873,1 +31062,1310088,181,9051,1 +31063,1310101,91,4573,1 +31064,1310400,92,4620,1 +31065,1310412,115,5770,1 +31066,1310418,140,7039,1 +31067,1310424,173,8691,1 +31068,1310425,45,2280,1 +31069,1310425,182,9109,1 +31070,1310430,77,3870,1 +31071,1310448,37,1858,1 +31072,1310448,134,6714,1 +31073,1310460,195,9782,1 +31074,1310496,156,7818,1 +31075,1310526,78,3946,1 +31076,1310880,10,513,1 +31077,1310881,86,4320,1 +31078,1310919,180,9027,1 +31079,1311372,188,9435,1 +31080,1311373,177,8871,1 +31081,1311381,81,4053,1 +31082,1311396,3,186,1 +31083,1311408,132,6628,1 +31084,1311420,145,7262,1 +31085,1311432,179,8955,1 +31086,1311447,0,48,1 +31087,1311483,24,1218,1 +31088,1311486,55,2793,1 +31089,1311492,31,1586,1 +31090,1311843,104,5211,1 +31091,1311864,66,3312,1 +31092,1312320,29,1496,1 +31093,1312320,52,2624,1 +31094,1312321,116,5802,1 +31095,1312321,128,6413,1 +31096,1312321,30,1517,1 +31097,1312322,199,9991,1 +31098,1312323,40,2037,1 +31099,1312323,58,2905,1 +31100,1312323,73,3680,1 +31101,1312324,70,3532,1 +31102,1312324,9,466,1 +31103,1312332,183,9159,1 +31104,1312333,110,5526,1 +31105,1312333,194,9718,1 +31106,1312356,105,5290,1 +31107,1312356,12,633,1 +31108,1312356,107,5365,1 +31109,1312356,54,2738,1 +31110,1312357,179,8995,1 +31111,1312365,100,5046,1 +31112,1312368,181,9089,1 +31113,1312398,64,3249,1 +31114,1312404,6,324,1 +31115,1312407,119,5969,1 +31116,1312416,149,7471,1 +31117,1312419,155,7754,1 +31118,1312461,89,4469,1 +31119,1312524,103,5168,1 +31120,1312716,23,1200,1 +31121,1312848,180,9034,1 +31122,1312898,65,3271,1 +31123,1312908,114,5747,1 +31124,1313294,32,1623,1 +31125,1313328,138,6911,1 +31126,1313343,72,3634,1 +31127,1313353,174,8732,1 +31128,1313368,38,1950,1 +31129,1313382,24,1222,1 +31130,1313760,66,3321,1 +31131,1313772,147,7379,1 +31132,1313793,36,1801,1 +31133,1313798,60,3018,1 +31134,1313813,25,1288,1 +31135,1313815,104,5215,1 +31136,1313817,57,2892,1 +31137,1313823,179,8973,1 +31138,1313931,175,8751,1 +31139,1314075,30,1504,1 +31140,1314136,132,6629,1 +31141,1314240,25,1284,1 +31142,1314240,159,7960,1 +31143,1314241,170,8547,1 +31144,1314242,71,3594,1 +31145,1314244,124,6249,1 +31146,1314252,143,7167,1 +31147,1314253,145,7272,1 +31148,1314256,126,6317,1 +31149,1314270,181,9097,1 +31150,1314272,26,1348,1 +31151,1314276,52,2613,1 +31152,1314283,198,9921,1 +31153,1314289,36,1840,1 +31154,1314291,50,2530,1 +31155,1314379,113,5667,1 +31156,1314412,120,6005,1 +31157,1314722,83,4179,1 +31158,1314763,174,8705,1 +31159,1315716,106,5332,1 +31160,1315716,126,6308,1 +31161,1315740,11,567,1 +31162,1315764,120,6005,1 +31163,1316161,105,5277,1 +31164,1316172,109,5480,1 +31165,1316173,1,63,1 +31166,1316175,157,7889,1 +31167,1316233,42,2128,1 +31168,1316256,110,5532,1 +31169,1316318,133,6656,1 +31170,1316685,168,8422,1 +31171,1317121,113,5668,1 +31172,1317123,195,9764,1 +31173,1317132,110,5541,1 +31174,1317157,49,2463,1 +31175,1317180,177,8880,1 +31176,1317230,136,6837,1 +31177,1317251,152,7626,1 +31178,1317602,91,4584,1 +31179,1317612,66,3303,1 +31180,1317636,160,8030,1 +31181,1317733,193,9695,1 +31182,1317780,125,6290,1 +31183,1318131,31,1588,1 +31184,1318140,124,6230,1 +31185,1318560,175,8793,1 +31186,1318561,99,4966,1 +31187,1318563,102,5108,1 +31188,1318572,68,3433,1 +31189,1318572,30,1526,1 +31190,1318572,42,2144,1 +31191,1318574,131,6555,1 +31192,1318584,21,1058,1 +31193,1318584,111,5551,1 +31194,1318587,65,3296,1 +31195,1318596,112,5623,1 +31196,1318598,64,3221,1 +31197,1318605,44,2226,1 +31198,1318606,135,6760,1 +31199,1318608,193,9700,1 +31200,1318612,27,1353,1 +31201,1318620,170,8506,1 +31202,1318620,100,5013,1 +31203,1318622,21,1070,1 +31204,1318629,130,6508,1 +31205,1318647,165,8256,1 +31206,1318650,26,1317,1 +31207,1318656,118,5920,1 +31208,1318660,96,4827,1 +31209,1318666,177,8859,1 +31210,1318668,149,7468,1 +31211,1318680,83,4167,1 +31212,1318681,95,4752,1 +31213,1318728,2,150,1 +31214,1318743,188,9429,1 +31215,1318758,113,5691,1 +31216,1318881,77,3865,1 +31217,1319016,2,105,1 +31218,1320576,90,4510,1 +31219,1320960,125,6265,1 +31220,1320970,62,3137,1 +31221,1320984,193,9664,1 +31222,1320985,90,4510,1 +31223,1320996,175,8771,1 +31224,1320996,96,4806,1 +31225,1320996,142,7121,1 +31226,1321020,130,6524,1 +31227,1321058,64,3249,1 +31228,1321086,110,5511,1 +31229,1321104,150,7533,1 +31230,1321128,189,9469,1 +31231,1321272,71,3571,1 +31232,1321445,114,5736,1 +31233,1321921,5,300,1 +31234,1321932,196,9804,1 +31235,1321933,12,615,1 +31236,1321944,87,4388,1 +31237,1321945,192,9609,1 +31238,1321962,23,1189,1 +31239,1321966,104,5231,1 +31240,1321980,121,6085,1 +31241,1321992,68,3424,1 +31242,1322016,144,7234,1 +31243,1322016,85,4287,1 +31244,1322034,35,1773,1 +31245,1322070,65,3270,1 +31246,1322136,7,384,1 +31247,1322196,185,9281,1 +31248,1322412,115,5779,1 +31249,1322415,133,6693,1 +31250,1322880,116,5828,1 +31251,1322880,33,1692,1 +31252,1322880,19,959,1 +31253,1322881,194,9735,1 +31254,1322883,111,5588,1 +31255,1322885,77,3900,1 +31256,1322886,33,1683,1 +31257,1322905,78,3930,1 +31258,1322907,12,642,1 +31259,1322907,191,9576,1 +31260,1322916,144,7245,1 +31261,1322916,17,897,1 +31262,1322916,196,9832,1 +31263,1322916,112,5601,1 +31264,1322922,49,2454,1 +31265,1322928,60,3017,1 +31266,1322934,94,4708,1 +31267,1322940,72,3644,1 +31268,1322941,83,4163,1 +31269,1322943,119,5991,1 +31270,1322955,133,6674,1 +31271,1322964,62,3125,1 +31272,1322977,112,5620,1 +31273,1323000,65,3300,1 +31274,1323000,73,3699,1 +31275,1323012,182,9121,1 +31276,1323360,133,6676,1 +31277,1323360,143,7178,1 +31278,1323361,158,7931,1 +31279,1323377,83,4157,1 +31280,1323385,199,9982,1 +31281,1323386,5,268,1 +31282,1323435,110,5538,1 +31283,1323444,111,5592,1 +31284,1323840,37,1859,1 +31285,1323840,72,3622,1 +31286,1323847,66,3349,1 +31287,1323852,130,6514,1 +31288,1323856,42,2101,1 +31289,1323864,40,2001,1 +31290,1323868,123,6173,1 +31291,1323873,19,956,1 +31292,1323876,101,5088,1 +31293,1323876,191,9598,1 +31294,1323877,114,5718,1 +31295,1323885,78,3914,1 +31296,1323888,146,7307,1 +31297,1323889,27,1376,1 +31298,1323890,146,7311,1 +31299,1323900,31,1578,1 +31300,1323902,40,2011,1 +31301,1323912,65,3287,1 +31302,1323912,127,6380,1 +31303,1323912,145,7260,1 +31304,1323912,104,5206,1 +31305,1323924,169,8472,1 +31306,1323945,165,8266,1 +31307,1323951,73,3672,1 +31308,1323972,84,4217,1 +31309,1323975,108,5415,1 +31310,1324080,154,7710,1 +31311,1324176,112,5621,1 +31312,1324344,16,801,1 +31313,1324353,26,1322,1 +31314,1324357,79,3993,1 +31315,1324440,30,1538,1 +31316,1324812,152,7631,1 +31317,1324833,71,3553,1 +31318,1324837,112,5613,1 +31319,1324939,199,9952,1 +31320,1324968,11,561,1 +31321,1325280,91,4574,1 +31322,1325281,13,694,1 +31323,1325284,44,2219,1 +31324,1325292,162,8127,1 +31325,1325293,36,1816,1 +31326,1325294,31,1564,1 +31327,1325298,95,4764,1 +31328,1325304,71,3567,1 +31329,1325304,89,4497,1 +31330,1325306,48,2441,1 +31331,1325310,19,980,1 +31332,1325316,1,93,1 +31333,1325316,172,8605,1 +31334,1325316,92,4605,1 +31335,1325318,62,3115,1 +31336,1325319,132,6638,1 +31337,1325322,145,7261,1 +31338,1325341,56,2850,1 +31339,1325346,173,8653,1 +31340,1325352,10,507,1 +31341,1325353,113,5661,1 +31342,1325364,113,5671,1 +31343,1325376,146,7338,1 +31344,1325393,164,8219,1 +31345,1325760,2,146,1 +31346,1325760,109,5480,1 +31347,1325766,84,4244,1 +31348,1325772,69,3460,1 +31349,1325784,172,8616,1 +31350,1325784,55,2799,1 +31351,1326273,43,2184,1 +31352,1326336,142,7136,1 +31353,1326720,32,1619,1 +31354,1326720,143,7158,1 +31355,1326760,95,4752,1 +31356,1326761,16,827,1 +31357,1326768,172,8619,1 +31358,1326810,43,2199,1 +31359,1326846,179,8984,1 +31360,1326900,17,873,1 +31361,1327200,9,489,1 +31362,1327201,52,2609,1 +31363,1327224,100,5006,1 +31364,1327225,179,8977,1 +31365,1327227,144,7237,1 +31366,1327228,64,3235,1 +31367,1327238,17,900,1 +31368,1327260,75,3751,1 +31369,1327320,43,2153,1 +31370,1327321,32,1616,1 +31371,1327371,182,9143,1 +31372,1327680,92,4647,1 +31373,1327680,149,7453,1 +31374,1327680,42,2127,1 +31375,1327680,85,4291,1 +31376,1327689,39,1959,1 +31377,1327690,2,149,1 +31378,1327692,67,3361,1 +31379,1327695,3,179,1 +31380,1327704,111,5559,1 +31381,1327706,64,3208,1 +31382,1327716,174,8718,1 +31383,1327717,134,6744,1 +31384,1327741,8,413,1 +31385,1327768,181,9098,1 +31386,1327773,170,8522,1 +31387,1327788,174,8728,1 +31388,1327896,23,1180,1 +31389,1327944,107,5384,1 +31390,1328160,36,1846,1 +31391,1328164,137,6876,1 +31392,1328169,185,9264,1 +31393,1328175,121,6061,1 +31394,1328175,10,518,1 +31395,1328179,132,6622,1 +31396,1328184,71,3569,1 +31397,1328198,115,5797,1 +31398,1328208,118,5943,1 +31399,1328208,4,227,1 +31400,1328253,111,5585,1 +31401,1328256,164,8228,1 +31402,1328268,191,9575,1 +31403,1328304,91,4581,1 +31404,1328448,40,2030,1 +31405,1328461,134,6746,1 +31406,1328640,111,5593,1 +31407,1328666,22,1123,1 +31408,1328676,164,8201,1 +31409,1328695,133,6668,1 +31410,1328727,123,6167,1 +31411,1328736,155,7761,1 +31412,1328739,179,8958,1 +31413,1329129,50,2520,1 +31414,1329264,25,1298,1 +31415,1329600,188,9426,1 +31416,1329600,70,3515,1 +31417,1329600,199,9962,1 +31418,1329600,76,3831,1 +31419,1329600,122,6150,1 +31420,1329600,26,1327,1 +31421,1329600,152,7646,1 +31422,1329600,94,4728,1 +31423,1329600,183,9156,1 +31424,1329600,184,9219,1 +31425,1329600,70,3547,1 +31426,1329601,61,3087,1 +31427,1329601,126,6334,1 +31428,1329601,127,6371,1 +31429,1329602,118,5938,1 +31430,1329602,119,5980,1 +31431,1329603,3,179,1 +31432,1329604,88,4409,1 +31433,1329605,191,9557,1 +31434,1329606,166,8339,1 +31435,1329607,177,8880,1 +31436,1329608,48,2409,1 +31437,1329609,189,9487,1 +31438,1329612,114,5749,1 +31439,1329612,74,3731,1 +31440,1329612,138,6948,1 +31441,1329612,74,3709,1 +31442,1329612,157,7886,1 +31443,1329613,149,7476,1 +31444,1329613,177,8883,1 +31445,1329616,54,2709,1 +31446,1329619,107,5352,1 +31447,1329619,18,946,1 +31448,1329619,21,1084,1 +31449,1329619,177,8896,1 +31450,1329621,115,5754,1 +31451,1329621,188,9425,1 +31452,1329622,126,6312,1 +31453,1329624,111,5573,1 +31454,1329624,30,1549,1 +31455,1329624,152,7632,1 +31456,1329624,130,6531,1 +31457,1329624,87,4362,1 +31458,1329624,110,5541,1 +31459,1329624,98,4921,1 +31460,1329624,8,401,1 +31461,1329624,107,5383,1 +31462,1329624,172,8633,1 +31463,1329624,94,4709,1 +31464,1329624,133,6698,1 +31465,1329624,25,1252,1 +31466,1329624,108,5405,1 +31467,1329626,112,5606,1 +31468,1329627,96,4848,1 +31469,1329627,55,2798,1 +31470,1329631,17,876,1 +31471,1329636,167,8359,1 +31472,1329637,190,9507,1 +31473,1329637,108,5437,1 +31474,1329641,95,4797,1 +31475,1329641,110,5533,1 +31476,1329642,187,9391,1 +31477,1329642,9,500,1 +31478,1329645,130,6522,1 +31479,1329645,165,8293,1 +31480,1329646,142,7124,1 +31481,1329646,90,4505,1 +31482,1329646,101,5096,1 +31483,1329648,30,1525,1 +31484,1329648,115,5760,1 +31485,1329648,66,3349,1 +31486,1329648,29,1463,1 +31487,1329648,150,7506,1 +31488,1329648,31,1589,1 +31489,1329648,146,7325,1 +31490,1329649,124,6234,1 +31491,1329649,9,455,1 +31492,1329650,181,9088,1 +31493,1329654,16,843,1 +31494,1329654,45,2264,1 +31495,1329660,77,3870,1 +31496,1329660,133,6659,1 +31497,1329660,70,3513,1 +31498,1329660,151,7575,1 +31499,1329660,114,5739,1 +31500,1329660,110,5509,1 +31501,1329660,34,1729,1 +31502,1329660,24,1212,1 +31503,1329660,93,4677,1 +31504,1329660,175,8781,1 +31505,1329661,123,6200,1 +31506,1329664,0,5,1 +31507,1329664,8,441,1 +31508,1329664,190,9529,1 +31509,1329672,173,8668,1 +31510,1329672,60,3035,1 +31511,1329672,128,6423,1 +31512,1329672,98,4912,1 +31513,1329673,146,7327,1 +31514,1329673,180,9039,1 +31515,1329675,30,1523,1 +31516,1329677,52,2605,1 +31517,1329679,135,6793,1 +31518,1329684,108,5436,1 +31519,1329684,70,3501,1 +31520,1329685,44,2220,1 +31521,1329686,182,9148,1 +31522,1329689,30,1542,1 +31523,1329690,148,7433,1 +31524,1329696,56,2809,1 +31525,1329696,84,4236,1 +31526,1329696,141,7081,1 +31527,1329698,172,8610,1 +31528,1329699,52,2634,1 +31529,1329699,92,4639,1 +31530,1329708,30,1541,1 +31531,1329709,27,1355,1 +31532,1329715,129,6498,1 +31533,1329717,151,7566,1 +31534,1329718,73,3669,1 +31535,1329721,55,2798,1 +31536,1329726,107,5359,1 +31537,1329732,22,1142,1 +31538,1329732,5,289,1 +31539,1329763,85,4265,1 +31540,1329769,55,2752,1 +31541,1329780,182,9136,1 +31542,1329780,46,2328,1 +31543,1329780,2,121,1 +31544,1329792,120,6002,1 +31545,1329852,150,7512,1 +31546,1329864,3,194,1 +31547,1330068,2,128,1 +31548,1330081,172,8607,1 +31549,1330087,118,5906,1 +31550,1330093,181,9081,1 +31551,1330128,94,4741,1 +31552,1330128,163,8174,1 +31553,1330224,127,6362,1 +31554,1330272,84,4201,1 +31555,1330368,162,8137,1 +31556,1330560,179,8985,1 +31557,1330569,180,9027,1 +31558,1330569,112,5607,1 +31559,1330569,103,5175,1 +31560,1330584,144,7250,1 +31561,1330585,191,9577,1 +31562,1330610,160,8044,1 +31563,1330624,168,8409,1 +31564,1330680,96,4829,1 +31565,1331532,9,469,1 +31566,1331532,98,4937,1 +31567,1331533,170,8547,1 +31568,1331545,23,1194,1 +31569,1331547,192,9644,1 +31570,1332133,42,2129,1 +31571,1332483,65,3277,1 +31572,1332492,169,8464,1 +31573,1332493,51,2570,1 +31574,1332495,135,6759,1 +31575,1332499,191,9579,1 +31576,1332504,181,9052,1 +31577,1332504,59,2985,1 +31578,1332505,58,2930,1 +31579,1332522,168,8424,1 +31580,1332528,29,1473,1 +31581,1332541,5,297,1 +31582,1332546,26,1322,1 +31583,1332960,137,6881,1 +31584,1332960,30,1533,1 +31585,1332961,128,6403,1 +31586,1332962,102,5145,1 +31587,1332966,46,2339,1 +31588,1332967,171,8589,1 +31589,1332968,24,1237,1 +31590,1332968,12,649,1 +31591,1332972,26,1302,1 +31592,1332972,100,5019,1 +31593,1332984,132,6609,1 +31594,1332984,109,5489,1 +31595,1332984,88,4415,1 +31596,1332984,142,7137,1 +31597,1332985,37,1851,1 +31598,1332985,133,6683,1 +31599,1332996,33,1668,1 +31600,1332996,145,7273,1 +31601,1333008,20,1046,1 +31602,1333008,51,2593,1 +31603,1333008,45,2290,1 +31604,1333008,131,6592,1 +31605,1333009,61,3095,1 +31606,1333018,99,4977,1 +31607,1333020,175,8766,1 +31608,1333020,100,5026,1 +31609,1333023,11,555,1 +31610,1333056,0,7,1 +31611,1333069,30,1533,1 +31612,1333082,62,3133,1 +31613,1333248,130,6509,1 +31614,1333440,48,2412,1 +31615,1333443,80,4021,1 +31616,1333453,7,399,1 +31617,1333453,147,7355,1 +31618,1333453,99,4979,1 +31619,1333462,156,7822,1 +31620,1333464,196,9833,1 +31621,1333465,111,5595,1 +31622,1333477,86,4314,1 +31623,1333503,66,3334,1 +31624,1333558,70,3512,1 +31625,1333563,44,2221,1 +31626,1333563,49,2465,1 +31627,1333592,98,4918,1 +31628,1333594,70,3549,1 +31629,1333920,54,2719,1 +31630,1333932,113,5652,1 +31631,1333944,147,7351,1 +31632,1333965,35,1754,1 +31633,1334028,183,9199,1 +31634,1334052,134,6709,1 +31635,1334085,145,7259,1 +31636,1334160,63,3196,1 +31637,1334400,40,2028,1 +31638,1334400,106,5344,1 +31639,1334400,127,6365,1 +31640,1334401,0,45,1 +31641,1334403,92,4627,1 +31642,1334412,102,5119,1 +31643,1334412,120,6018,1 +31644,1334412,139,6976,1 +31645,1334413,175,8762,1 +31646,1334413,2,146,1 +31647,1334415,11,560,1 +31648,1334419,143,7185,1 +31649,1334421,32,1627,1 +31650,1334424,56,2849,1 +31651,1334424,74,3726,1 +31652,1334424,10,518,1 +31653,1334424,109,5462,1 +31654,1334425,179,8979,1 +31655,1334430,174,8711,1 +31656,1334436,122,6118,1 +31657,1334436,157,7887,1 +31658,1334437,10,530,1 +31659,1334437,17,873,1 +31660,1334448,0,5,1 +31661,1334448,191,9597,1 +31662,1334453,191,9560,1 +31663,1334469,63,3187,1 +31664,1334472,106,5330,1 +31665,1334472,158,7931,1 +31666,1334473,182,9138,1 +31667,1334487,85,4282,1 +31668,1334508,198,9944,1 +31669,1334520,71,3580,1 +31670,1334526,181,9078,1 +31671,1334539,43,2162,1 +31672,1334550,94,4750,1 +31673,1334880,21,1082,1 +31674,1334880,96,4835,1 +31675,1334892,170,8510,1 +31676,1334904,26,1346,1 +31677,1334916,38,1906,1 +31678,1334921,182,9143,1 +31679,1334922,29,1485,1 +31680,1334958,84,4206,1 +31681,1334976,46,2322,1 +31682,1334993,167,8383,1 +31683,1335372,26,1343,1 +31684,1335396,144,7210,1 +31685,1335840,78,3927,1 +31686,1335843,78,3925,1 +31687,1335849,9,498,1 +31688,1335852,109,5493,1 +31689,1335888,63,3169,1 +31690,1335889,189,9475,1 +31691,1335891,44,2207,1 +31692,1335901,115,5783,1 +31693,1335914,188,9445,1 +31694,1336320,21,1069,1 +31695,1336320,75,3753,1 +31696,1336320,109,5488,1 +31697,1336320,114,5742,1 +31698,1336321,165,8267,1 +31699,1336321,152,7626,1 +31700,1336327,9,452,1 +31701,1336329,171,8561,1 +31702,1336330,97,4889,1 +31703,1336334,128,6450,1 +31704,1336344,127,6363,1 +31705,1336344,44,2247,1 +31706,1336344,47,2387,1 +31707,1336344,199,9971,1 +31708,1336358,114,5705,1 +31709,1336362,64,3223,1 +31710,1336362,153,7685,1 +31711,1336369,88,4439,1 +31712,1336381,139,6969,1 +31713,1336386,129,6457,1 +31714,1336404,80,4026,1 +31715,1336405,138,6937,1 +31716,1336405,160,8012,1 +31717,1336416,104,5247,1 +31718,1336560,29,1460,1 +31719,1336800,199,9978,1 +31720,1336804,68,3423,1 +31721,1336807,67,3379,1 +31722,1336809,191,9569,1 +31723,1336812,32,1629,1 +31724,1336824,19,991,1 +31725,1336825,132,6615,1 +31726,1336842,16,813,1 +31727,1336847,93,4689,1 +31728,1336848,81,4051,1 +31729,1336849,106,5319,1 +31730,1336851,12,606,1 +31731,1336856,90,4550,1 +31732,1336857,80,4023,1 +31733,1336858,87,4381,1 +31734,1336861,156,7838,1 +31735,1336872,136,6835,1 +31736,1336875,77,3900,1 +31737,1336884,104,5232,1 +31738,1336885,18,934,1 +31739,1336890,120,6011,1 +31740,1337005,49,2484,1 +31741,1337078,130,6527,1 +31742,1337176,152,7609,1 +31743,1337280,40,2012,1 +31744,1337292,133,6662,1 +31745,1337294,156,7802,1 +31746,1337295,17,871,1 +31747,1337306,158,7946,1 +31748,1337316,33,1692,1 +31749,1337319,152,7601,1 +31750,1337343,187,9377,1 +31751,1337364,195,9755,1 +31752,1337764,62,3115,1 +31753,1337766,173,8658,1 +31754,1337766,161,8058,1 +31755,1337773,113,5675,1 +31756,1337784,51,2585,1 +31757,1337796,127,6387,1 +31758,1337797,61,3093,1 +31759,1337803,132,6605,1 +31760,1337832,169,8481,1 +31761,1337845,111,5572,1 +31762,1337899,157,7880,1 +31763,1337916,156,7823,1 +31764,1337929,168,8430,1 +31765,1338720,108,5425,1 +31766,1338726,195,9753,1 +31767,1338733,187,9398,1 +31768,1338738,13,699,1 +31769,1338756,178,8924,1 +31770,1338758,169,8462,1 +31771,1338781,89,4484,1 +31772,1338806,91,4589,1 +31773,1338852,119,5960,1 +31774,1338855,43,2196,1 +31775,1338856,91,4580,1 +31776,1338912,143,7157,1 +31777,1338914,114,5729,1 +31778,1339200,36,1845,1 +31779,1339202,35,1773,1 +31780,1339680,35,1785,1 +31781,1339681,196,9812,1 +31782,1339692,138,6922,1 +31783,1339696,197,9863,1 +31784,1339704,23,1192,1 +31785,1339707,39,1975,1 +31786,1339896,97,4888,1 +31787,1340160,63,3161,1 +31788,1340160,11,555,1 +31789,1340164,78,3913,1 +31790,1340164,151,7577,1 +31791,1340172,69,3500,1 +31792,1340172,187,9392,1 +31793,1340184,75,3789,1 +31794,1340191,76,3846,1 +31795,1340216,124,6236,1 +31796,1340233,166,8318,1 +31797,1340244,107,5397,1 +31798,1340257,144,7229,1 +31799,1340647,25,1263,1 +31800,1340647,9,469,1 +31801,1340663,135,6752,1 +31802,1340676,7,387,1 +31803,1340703,40,2021,1 +31804,1341120,145,7252,1 +31805,1341120,53,2688,1 +31806,1341120,109,5466,1 +31807,1341120,94,4718,1 +31808,1341127,50,2534,1 +31809,1341130,56,2806,1 +31810,1341132,19,984,1 +31811,1341132,86,4311,1 +31812,1341133,79,3987,1 +31813,1341135,98,4917,1 +31814,1341139,93,4661,1 +31815,1341144,60,3028,1 +31816,1341145,195,9767,1 +31817,1341146,33,1653,1 +31818,1341156,133,6660,1 +31819,1341156,167,8379,1 +31820,1341169,47,2374,1 +31821,1341169,110,5538,1 +31822,1341180,134,6717,1 +31823,1341206,132,6615,1 +31824,1341216,193,9672,1 +31825,1341217,130,6510,1 +31826,1341609,13,660,1 +31827,1342080,13,676,1 +31828,1342083,142,7124,1 +31829,1342092,168,8419,1 +31830,1342094,149,7465,1 +31831,1342102,144,7234,1 +31832,1342117,83,4198,1 +31833,1342140,74,3710,1 +31834,1342140,191,9573,1 +31835,1342152,52,2645,1 +31836,1342206,172,8608,1 +31837,1343040,108,5403,1 +31838,1343040,31,1584,1 +31839,1343052,167,8364,1 +31840,1343053,179,8956,1 +31841,1343055,50,2528,1 +31842,1343064,197,9895,1 +31843,1343067,75,3785,1 +31844,1343073,92,4620,1 +31845,1343089,2,139,1 +31846,1343090,8,445,1 +31847,1343094,151,7578,1 +31848,1343101,63,3184,1 +31849,1343112,96,4809,1 +31850,1343112,69,3478,1 +31851,1343154,178,8926,1 +31852,1343175,167,8366,1 +31853,1343184,23,1161,1 +31854,1343520,110,5513,1 +31855,1343532,93,4658,1 +31856,1343569,57,2870,1 +31857,1343580,114,5724,1 +31858,1343586,151,7590,1 +31859,1343622,121,6059,1 +31860,1343712,140,7001,1 +31861,1344084,134,6718,1 +31862,1344494,45,2262,1 +31863,1344504,101,5059,1 +31864,1344505,195,9769,1 +31865,1344507,103,5179,1 +31866,1344513,8,445,1 +31867,1344528,129,6482,1 +31868,1344541,196,9832,1 +31869,1344542,176,8829,1 +31870,1344570,38,1930,1 +31871,1344577,105,5268,1 +31872,1344579,100,5027,1 +31873,1344589,131,6577,1 +31874,1344591,157,7882,1 +31875,1344961,130,6507,1 +31876,1344972,94,4725,1 +31877,1344975,119,5957,1 +31878,1344984,171,8593,1 +31879,1345009,188,9440,1 +31880,1345453,146,7301,1 +31881,1345456,19,961,1 +31882,1345573,133,6696,1 +31883,1345920,87,4384,1 +31884,1345923,38,1937,1 +31885,1345926,38,1912,1 +31886,1345932,82,4126,1 +31887,1345932,10,524,1 +31888,1345944,96,4809,1 +31889,1345944,42,2107,1 +31890,1345968,154,7731,1 +31891,1346010,120,6002,1 +31892,1346018,192,9649,1 +31893,1346028,101,5064,1 +31894,1346064,22,1104,1 +31895,1346881,177,8878,1 +31896,1346886,62,3122,1 +31897,1346893,199,9954,1 +31898,1346918,147,7356,1 +31899,1346928,142,7137,1 +31900,1346940,59,3000,1 +31901,1347090,160,8029,1 +31902,1347384,68,3437,1 +31903,1347424,110,5512,1 +31904,1347441,61,3061,1 +31905,1347841,170,8539,1 +31906,1347843,97,4876,1 +31907,1347864,3,192,1 +31908,1347865,151,7559,1 +31909,1347866,171,8592,1 +31910,1347879,58,2912,1 +31911,1347888,129,6484,1 +31912,1348325,148,7409,1 +31913,1348329,54,2734,1 +31914,1348332,10,511,1 +31915,1348335,25,1263,1 +31916,1348359,111,5573,1 +31917,1348404,118,5935,1 +31918,1348800,199,9962,1 +31919,1348849,109,5499,1 +31920,1349280,168,8403,1 +31921,1349292,157,7875,1 +31922,1349293,161,8084,1 +31923,1349443,24,1214,1 +31924,1349772,124,6229,1 +31925,1349773,149,7494,1 +31926,1349784,51,2580,1 +31927,1349796,1,100,1 +31928,1349796,153,7695,1 +31929,1349800,78,3907,1 +31930,1349816,58,2906,1 +31931,1349832,100,5034,1 +31932,1349844,1,96,1 +31933,1349844,41,2084,1 +31934,1349892,178,8913,1 +31935,1350240,21,1064,1 +31936,1350281,72,3606,1 +31937,1350313,118,5949,1 +31938,1350382,71,3566,1 +31939,1350393,73,3659,1 +31940,1350724,161,8084,1 +31941,1350732,45,2299,1 +31942,1350750,1,79,1 +31943,1350756,68,3423,1 +31944,1350771,148,7420,1 +31945,1350780,108,5408,1 +31946,1350792,118,5946,1 +31947,1350801,135,6772,1 +31948,1350843,80,4016,1 +31949,1351200,144,7203,1 +31950,1351200,161,8087,1 +31951,1351200,70,3503,1 +31952,1351200,107,5385,1 +31953,1351212,19,953,1 +31954,1351212,70,3546,1 +31955,1351216,18,932,1 +31956,1351224,51,2556,1 +31957,1351225,18,916,1 +31958,1351226,160,8027,1 +31959,1351227,133,6669,1 +31960,1351237,21,1081,1 +31961,1351240,42,2112,1 +31962,1351249,89,4465,1 +31963,1351260,77,3852,1 +31964,1351263,103,5183,1 +31965,1351266,144,7218,1 +31966,1351272,2,144,1 +31967,1351287,72,3646,1 +31968,1351296,42,2145,1 +31969,1351296,53,2687,1 +31970,1351518,102,5102,1 +31971,1351704,119,6000,1 +31972,1351740,62,3128,1 +31973,1352160,180,9030,1 +31974,1352161,10,513,1 +31975,1352161,11,570,1 +31976,1352162,199,9967,1 +31977,1352172,15,775,1 +31978,1352184,12,645,1 +31979,1352193,118,5931,1 +31980,1352203,176,8802,1 +31981,1352208,186,9331,1 +31982,1352209,79,3962,1 +31983,1352210,49,2477,1 +31984,1352244,137,6862,1 +31985,1352259,118,5941,1 +31986,1352260,164,8228,1 +31987,1352292,84,4220,1 +31988,1352641,125,6264,1 +31989,1352670,128,6426,1 +31990,1352761,63,3171,1 +31991,1352797,127,6353,1 +31992,1352930,1,98,1 +31993,1353120,120,6020,1 +31994,1353121,84,4249,1 +31995,1353121,142,7135,1 +31996,1353123,41,2073,1 +31997,1353129,124,6212,1 +31998,1353132,90,4505,1 +31999,1353133,54,2749,1 +32000,1353133,174,8702,1 +32001,1353134,1,76,1 +32002,1353141,16,818,1 +32003,1353145,104,5204,1 +32004,1353145,110,5524,1 +32005,1353156,138,6920,1 +32006,1353156,127,6392,1 +32007,1353168,9,455,1 +32008,1353179,64,3221,1 +32009,1353180,24,1244,1 +32010,1353190,64,3232,1 +32011,1353192,77,3887,1 +32012,1353199,25,1276,1 +32013,1353204,86,4308,1 +32014,1353228,148,7410,1 +32015,1353252,164,8210,1 +32016,1353264,103,5196,1 +32017,1353266,149,7499,1 +32018,1353277,170,8514,1 +32019,1353288,63,3157,1 +32020,1353297,14,738,1 +32021,1353375,160,8044,1 +32022,1353456,143,7173,1 +32023,1353492,91,4552,1 +32024,1353605,174,8718,1 +32025,1353612,97,4900,1 +32026,1353612,145,7300,1 +32027,1353612,151,7588,1 +32028,1353621,106,5316,1 +32029,1353621,139,6985,1 +32030,1353636,93,4691,1 +32031,1353638,42,2138,1 +32032,1353640,54,2721,1 +32033,1353661,85,4277,1 +32034,1353753,107,5384,1 +32035,1354560,70,3506,1 +32036,1354566,70,3507,1 +32037,1354567,2,145,1 +32038,1354574,145,7263,1 +32039,1354584,62,3141,1 +32040,1354584,79,3989,1 +32041,1354588,91,4593,1 +32042,1354596,162,8107,1 +32043,1354596,170,8506,1 +32044,1354597,24,1217,1 +32045,1354608,139,6975,1 +32046,1354620,122,6110,1 +32047,1354620,199,9954,1 +32048,1354641,141,7088,1 +32049,1354644,52,2616,1 +32050,1354656,187,9395,1 +32051,1354669,97,4884,1 +32052,1354681,39,1992,1 +32053,1354691,159,7957,1 +32054,1354716,35,1800,1 +32055,1354728,190,9548,1 +32056,1354729,169,8461,1 +32057,1355067,130,6529,1 +32058,1355593,82,4149,1 +32059,1355640,14,716,1 +32060,1356047,7,400,1 +32061,1356105,178,8907,1 +32062,1356480,64,3245,1 +32063,1356531,55,2770,1 +32064,1356543,64,3209,1 +32065,1356625,166,8341,1 +32066,1357447,199,9992,1 +32067,1357452,163,8189,1 +32068,1357453,19,999,1 +32069,1357456,143,7171,1 +32070,1357464,88,4446,1 +32071,1357467,178,8921,1 +32072,1357467,95,4760,1 +32073,1357476,7,375,1 +32074,1357480,89,4492,1 +32075,1357481,19,985,1 +32076,1357504,137,6859,1 +32077,1357521,104,5220,1 +32078,1357524,118,5933,1 +32079,1357536,85,4256,1 +32080,1357619,176,8849,1 +32081,1357920,129,6460,1 +32082,1357920,38,1938,1 +32083,1357920,74,3718,1 +32084,1357925,155,7783,1 +32085,1357932,35,1767,1 +32086,1357933,192,9644,1 +32087,1357933,86,4302,1 +32088,1357936,13,688,1 +32089,1357942,134,6744,1 +32090,1357944,0,42,1 +32091,1357946,19,996,1 +32092,1357948,41,2056,1 +32093,1357953,20,1018,1 +32094,1357957,164,8238,1 +32095,1357957,144,7228,1 +32096,1357957,163,8185,1 +32097,1357968,179,8988,1 +32098,1357969,83,4174,1 +32099,1357980,89,4464,1 +32100,1358016,72,3650,1 +32101,1358052,82,4124,1 +32102,1358066,84,4221,1 +32103,1358424,2,121,1 +32104,1358425,2,107,1 +32105,1358880,60,3013,1 +32106,1358880,179,8994,1 +32107,1358890,161,8078,1 +32108,1358892,152,7637,1 +32109,1358892,9,462,1 +32110,1358892,67,3364,1 +32111,1358893,83,4180,1 +32112,1358896,91,4584,1 +32113,1358905,0,15,1 +32114,1358916,13,666,1 +32115,1358917,98,4908,1 +32116,1358917,99,4984,1 +32117,1358928,158,7905,1 +32118,1358929,76,3818,1 +32119,1358940,85,4260,1 +32120,1358941,26,1325,1 +32121,1358952,122,6141,1 +32122,1358988,129,6494,1 +32123,1359000,4,244,1 +32124,1359048,100,5016,1 +32125,1359108,27,1357,1 +32126,1359360,173,8700,1 +32127,1359360,115,5788,1 +32128,1359361,150,7504,1 +32129,1359361,23,1157,1 +32130,1359372,155,7788,1 +32131,1359372,17,899,1 +32132,1359372,70,3514,1 +32133,1359375,31,1588,1 +32134,1359384,53,2671,1 +32135,1359384,19,982,1 +32136,1359396,57,2874,1 +32137,1359396,23,1182,1 +32138,1359397,24,1236,1 +32139,1359408,5,289,1 +32140,1359427,144,7236,1 +32141,1359438,124,6214,1 +32142,1359441,45,2293,1 +32143,1359456,19,985,1 +32144,1359456,17,899,1 +32145,1359504,116,5816,1 +32146,1359541,117,5886,1 +32147,1360176,180,9043,1 +32148,1360320,151,7586,1 +32149,1360800,42,2123,1 +32150,1360800,10,521,1 +32151,1360815,77,3900,1 +32152,1360821,45,2274,1 +32153,1360836,15,789,1 +32154,1360845,40,2016,1 +32155,1360872,168,8421,1 +32156,1361293,48,2413,1 +32157,1361305,50,2530,1 +32158,1361316,47,2398,1 +32159,1361328,145,7253,1 +32160,1361341,149,7489,1 +32161,1361389,149,7453,1 +32162,1361760,154,7702,1 +32163,1361760,135,6778,1 +32164,1361781,84,4212,1 +32165,1361790,24,1217,1 +32166,1361793,167,8395,1 +32167,1361793,52,2611,1 +32168,1361795,127,6368,1 +32169,1361796,22,1143,1 +32170,1361796,63,3192,1 +32171,1361798,5,274,1 +32172,1361808,9,457,1 +32173,1361809,32,1622,1 +32174,1361820,194,9716,1 +32175,1361824,141,7052,1 +32176,1361835,140,7022,1 +32177,1361835,157,7892,1 +32178,1361845,108,5429,1 +32179,1361880,110,5543,1 +32180,1361890,199,9957,1 +32181,1361904,154,7714,1 +32182,1361964,63,3162,1 +32183,1362003,130,6527,1 +32184,1362240,143,7152,1 +32185,1362241,51,2569,1 +32186,1362241,65,3285,1 +32187,1362244,60,3025,1 +32188,1362252,167,8369,1 +32189,1362252,195,9756,1 +32190,1362254,19,981,1 +32191,1362258,74,3721,1 +32192,1362264,104,5242,1 +32193,1362265,97,4896,1 +32194,1362265,8,417,1 +32195,1362265,187,9389,1 +32196,1362288,179,8986,1 +32197,1362297,154,7742,1 +32198,1362324,27,1356,1 +32199,1362360,15,758,1 +32200,1362385,155,7751,1 +32201,1362388,148,7422,1 +32202,1362540,151,7555,1 +32203,1363234,172,8614,1 +32204,1363245,116,5841,1 +32205,1363287,102,5125,1 +32206,1363681,50,2534,1 +32207,1363681,156,7842,1 +32208,1363682,79,4000,1 +32209,1363686,188,9408,1 +32210,1363692,3,192,1 +32211,1363692,29,1479,1 +32212,1363698,170,8545,1 +32213,1363700,115,5762,1 +32214,1363711,65,3293,1 +32215,1363728,176,8813,1 +32216,1363741,85,4253,1 +32217,1363752,125,6291,1 +32218,1363752,167,8396,1 +32219,1363773,76,3812,1 +32220,1363779,0,23,1 +32221,1363824,127,6377,1 +32222,1363824,47,2357,1 +32223,1363872,177,8864,1 +32224,1364213,151,7553,1 +32225,1364281,113,5686,1 +32226,1365120,77,3864,1 +32227,1365128,153,7674,1 +32228,1365132,163,8200,1 +32229,1365135,29,1474,1 +32230,1365636,120,6027,1 +32231,1365684,43,2163,1 +32232,1365691,56,2823,1 +32233,1365723,30,1534,1 +32234,1365744,193,9693,1 +32235,1366080,89,4465,1 +32236,1366083,119,5967,1 +32237,1366089,177,8897,1 +32238,1366092,196,9812,1 +32239,1366101,94,4730,1 +32240,1366104,125,6267,1 +32241,1366116,68,3413,1 +32242,1366140,169,8455,1 +32243,1366153,194,9748,1 +32244,1366159,27,1373,1 +32245,1366167,169,8471,1 +32246,1366296,29,1471,1 +32247,1366428,19,992,1 +32248,1366572,16,846,1 +32249,1367040,62,3115,1 +32250,1367041,170,8508,1 +32251,1367053,158,7902,1 +32252,1367070,35,1788,1 +32253,1367076,22,1132,1 +32254,1367091,89,4487,1 +32255,1367124,196,9830,1 +32256,1367520,23,1163,1 +32257,1367520,30,1519,1 +32258,1367520,161,8074,1 +32259,1367520,34,1715,1 +32260,1367532,45,2284,1 +32261,1367532,192,9604,1 +32262,1367534,143,7164,1 +32263,1367537,132,6637,1 +32264,1367544,111,5600,1 +32265,1367556,148,7438,1 +32266,1367600,153,7700,1 +32267,1367616,116,5805,1 +32268,1367617,70,3538,1 +32269,1367640,65,3290,1 +32270,1367641,189,9475,1 +32271,1367652,20,1010,1 +32272,1367666,198,9916,1 +32273,1367679,39,1953,1 +32274,1368000,147,7388,1 +32275,1368003,140,7050,1 +32276,1368021,35,1787,1 +32277,1368033,168,8449,1 +32278,1368036,121,6064,1 +32279,1368054,96,4816,1 +32280,1368096,99,4958,1 +32281,1368156,152,7602,1 +32282,1368180,125,6262,1 +32283,1368270,158,7948,1 +32284,1368291,64,3224,1 +32285,1368564,127,6374,1 +32286,1368962,122,6140,1 +32287,1368972,28,1424,1 +32288,1368975,154,7712,1 +32289,1368984,145,7253,1 +32290,1369002,169,8457,1 +32291,1369045,164,8205,1 +32292,1369047,65,3284,1 +32293,1369056,67,3394,1 +32294,1369440,48,2408,1 +32295,1369920,161,8092,1 +32296,1369946,156,7848,1 +32297,1370053,89,4495,1 +32298,1370070,186,9310,1 +32299,1370404,56,2843,1 +32300,1370424,36,1842,1 +32301,1370425,162,8119,1 +32302,1370881,169,8481,1 +32303,1370895,55,2761,1 +32304,1370931,184,9212,1 +32305,1370951,93,4668,1 +32306,1371372,152,7618,1 +32307,1371396,195,9789,1 +32308,1371420,57,2886,1 +32309,1371433,139,6996,1 +32310,1371444,148,7429,1 +32311,1371492,76,3808,1 +32312,1371504,172,8616,1 +32313,1371520,198,9909,1 +32314,1371540,83,4160,1 +32315,1371552,102,5140,1 +32316,1371840,128,6403,1 +32317,1371852,101,5070,1 +32318,1371852,85,4254,1 +32319,1371864,185,9300,1 +32320,1371891,6,314,1 +32321,1372320,23,1164,1 +32322,1372320,172,8623,1 +32323,1372320,54,2742,1 +32324,1372320,166,8316,1 +32325,1372324,192,9643,1 +32326,1372329,152,7629,1 +32327,1372332,150,7538,1 +32328,1372332,91,4591,1 +32329,1372332,123,6155,1 +32330,1372341,150,7540,1 +32331,1372347,108,5415,1 +32332,1372351,186,9312,1 +32333,1372356,179,8966,1 +32334,1372368,107,5381,1 +32335,1372368,111,5599,1 +32336,1372383,7,391,1 +32337,1372383,57,2871,1 +32338,1372392,146,7303,1 +32339,1372393,161,8056,1 +32340,1372800,48,2425,1 +32341,1372813,31,1571,1 +32342,1372824,181,9065,1 +32343,1372869,118,5932,1 +32344,1372885,30,1536,1 +32345,1372917,199,9965,1 +32346,1373281,150,7525,1 +32347,1373310,156,7806,1 +32348,1373328,182,9127,1 +32349,1373328,90,4531,1 +32350,1373330,71,3566,1 +32351,1373331,15,751,1 +32352,1373335,57,2857,1 +32353,1373341,21,1097,1 +32354,1373364,11,573,1 +32355,1373365,110,5524,1 +32356,1373377,189,9455,1 +32357,1373388,151,7591,1 +32358,1373401,159,7967,1 +32359,1373580,59,2992,1 +32360,1373760,47,2385,1 +32361,1373760,169,8495,1 +32362,1373760,108,5407,1 +32363,1373760,18,917,1 +32364,1373760,58,2944,1 +32365,1373760,160,8020,1 +32366,1373762,34,1707,1 +32367,1373762,167,8368,1 +32368,1373763,189,9473,1 +32369,1373763,74,3745,1 +32370,1373772,23,1166,1 +32371,1373772,68,3409,1 +32372,1373772,145,7274,1 +32373,1373772,91,4591,1 +32374,1373773,96,4834,1 +32375,1373781,7,365,1 +32376,1373784,145,7298,1 +32377,1373796,70,3513,1 +32378,1373796,81,4077,1 +32379,1373796,31,1597,1 +32380,1373802,47,2355,1 +32381,1373810,180,9003,1 +32382,1373811,58,2938,1 +32383,1373811,36,1828,1 +32384,1373820,47,2356,1 +32385,1373823,147,7351,1 +32386,1373829,4,212,1 +32387,1373832,65,3294,1 +32388,1373833,0,37,1 +32389,1373868,30,1509,1 +32390,1373868,88,4429,1 +32391,1373882,148,7425,1 +32392,1373905,199,9992,1 +32393,1373932,184,9212,1 +32394,1373940,5,268,1 +32395,1374072,15,787,1 +32396,1374241,126,6314,1 +32397,1374249,79,3956,1 +32398,1374250,128,6439,1 +32399,1374252,185,9281,1 +32400,1374253,14,745,1 +32401,1374258,86,4326,1 +32402,1374264,27,1363,1 +32403,1374306,88,4430,1 +32404,1374312,71,3578,1 +32405,1374528,1,81,1 +32406,1374720,102,5146,1 +32407,1374729,106,5318,1 +32408,1374732,182,9104,1 +32409,1374738,128,6444,1 +32410,1374744,73,3659,1 +32411,1374750,30,1545,1 +32412,1374756,59,2988,1 +32413,1374780,2,131,1 +32414,1374780,146,7339,1 +32415,1374789,33,1661,1 +32416,1374792,170,8543,1 +32417,1374805,147,7400,1 +32418,1374816,102,5145,1 +32419,1374840,118,5901,1 +32420,1374901,152,7609,1 +32421,1374924,107,5366,1 +32422,1375200,53,2676,1 +32423,1375206,51,2553,1 +32424,1375215,105,5284,1 +32425,1375224,195,9779,1 +32426,1375229,48,2426,1 +32427,1375229,185,9252,1 +32428,1375249,69,3469,1 +32429,1375255,197,9870,1 +32430,1375681,37,1861,1 +32431,1375704,26,1316,1 +32432,1376160,101,5091,1 +32433,1376184,125,6275,1 +32434,1376191,174,8722,1 +32435,1376257,39,1984,1 +32436,1376377,124,6247,1 +32437,1376640,10,519,1 +32438,1376640,9,479,1 +32439,1376640,70,3515,1 +32440,1376640,72,3648,1 +32441,1376641,75,3797,1 +32442,1376641,56,2836,1 +32443,1376642,160,8032,1 +32444,1376652,116,5836,1 +32445,1376652,139,6969,1 +32446,1376652,34,1727,1 +32447,1376652,85,4284,1 +32448,1376655,99,4951,1 +32449,1376656,63,3154,1 +32450,1376657,30,1502,1 +32451,1376661,9,459,1 +32452,1376664,150,7535,1 +32453,1376664,144,7223,1 +32454,1376664,181,9079,1 +32455,1376665,24,1223,1 +32456,1376666,70,3544,1 +32457,1376677,12,633,1 +32458,1376677,95,4764,1 +32459,1376688,12,641,1 +32460,1376694,141,7062,1 +32461,1376696,4,230,1 +32462,1376698,21,1064,1 +32463,1376701,81,4061,1 +32464,1376712,4,217,1 +32465,1376712,66,3332,1 +32466,1376712,160,8038,1 +32467,1376718,194,9734,1 +32468,1376725,36,1834,1 +32469,1376745,172,8636,1 +32470,1376749,67,3364,1 +32471,1376774,124,6244,1 +32472,1376784,165,8294,1 +32473,1376802,22,1145,1 +32474,1376844,163,8169,1 +32475,1376882,123,6191,1 +32476,1377120,155,7759,1 +32477,1377144,47,2386,1 +32478,1377145,59,2996,1 +32479,1377168,27,1382,1 +32480,1377180,137,6893,1 +32481,1377192,132,6642,1 +32482,1377601,55,2795,1 +32483,1377619,108,5446,1 +32484,1377628,87,4391,1 +32485,1377648,57,2892,1 +32486,1377654,176,8840,1 +32487,1377673,3,171,1 +32488,1377696,149,7487,1 +32489,1377735,101,5094,1 +32490,1378098,24,1238,1 +32491,1378113,189,9464,1 +32492,1378140,70,3503,1 +32493,1378560,74,3709,1 +32494,1378563,39,1972,1 +32495,1378566,162,8146,1 +32496,1378572,27,1377,1 +32497,1378581,186,9338,1 +32498,1378584,155,7800,1 +32499,1378591,79,3952,1 +32500,1378656,177,8874,1 +32501,1379706,126,6348,1 +32502,1379881,159,7998,1 +32503,1380000,171,8552,1 +32504,1380001,157,7900,1 +32505,1380012,36,1850,1 +32506,1380018,137,6861,1 +32507,1380024,9,494,1 +32508,1380049,2,144,1 +32509,1380093,97,4900,1 +32510,1380111,127,6356,1 +32511,1380144,41,2064,1 +32512,1380148,35,1770,1 +32513,1380482,85,4294,1 +32514,1380483,186,9346,1 +32515,1380488,174,8704,1 +32516,1380492,6,312,1 +32517,1380492,188,9446,1 +32518,1380495,199,9974,1 +32519,1380540,120,6048,1 +32520,1380552,20,1032,1 +32521,1380552,10,548,1 +32522,1380576,76,3835,1 +32523,1380588,143,7172,1 +32524,1380612,143,7184,1 +32525,1380624,161,8071,1 +32526,1380672,181,9062,1 +32527,1380804,73,3693,1 +32528,1380979,77,3873,1 +32529,1381446,154,7723,1 +32530,1381449,73,3669,1 +32531,1381452,134,6704,1 +32532,1381477,47,2367,1 +32533,1381560,184,9228,1 +32534,1381921,61,3085,1 +32535,1381929,152,7639,1 +32536,1381957,151,7580,1 +32537,1382016,2,117,1 +32538,1382052,157,7869,1 +32539,1382425,71,3555,1 +32540,1382544,194,9704,1 +32541,1382910,190,9549,1 +32542,1382919,125,6295,1 +32543,1382954,121,6087,1 +32544,1383360,147,7361,1 +32545,1383360,51,2558,1 +32546,1383360,73,3658,1 +32547,1383361,162,8101,1 +32548,1383361,136,6825,1 +32549,1383361,152,7648,1 +32550,1383364,64,3226,1 +32551,1383366,113,5685,1 +32552,1383372,101,5093,1 +32553,1383372,157,7888,1 +32554,1383381,59,2984,1 +32555,1383384,136,6827,1 +32556,1383384,140,7049,1 +32557,1383384,114,5732,1 +32558,1383390,56,2815,1 +32559,1383393,104,5217,1 +32560,1383396,110,5547,1 +32561,1383396,71,3568,1 +32562,1383397,123,6168,1 +32563,1383397,134,6717,1 +32564,1383397,26,1307,1 +32565,1383405,160,8031,1 +32566,1383406,75,3767,1 +32567,1383408,110,5505,1 +32568,1383420,26,1308,1 +32569,1383421,5,253,1 +32570,1383431,171,8595,1 +32571,1383432,3,182,1 +32572,1383432,101,5063,1 +32573,1383492,127,6395,1 +32574,1383516,123,6170,1 +32575,1383528,186,9340,1 +32576,1383531,107,5378,1 +32577,1383540,105,5259,1 +32578,1383841,7,368,1 +32579,1383852,58,2925,1 +32580,1383868,131,6579,1 +32581,1383872,46,2325,1 +32582,1383882,49,2487,1 +32583,1383888,70,3550,1 +32584,1383906,46,2332,1 +32585,1383913,53,2653,1 +32586,1384320,81,4066,1 +32587,1384320,63,3189,1 +32588,1384320,173,8670,1 +32589,1384322,151,7561,1 +32590,1384322,147,7382,1 +32591,1384322,163,8180,1 +32592,1384322,98,4905,1 +32593,1384323,12,642,1 +32594,1384323,43,2158,1 +32595,1384323,181,9100,1 +32596,1384325,81,4073,1 +32597,1384327,67,3394,1 +32598,1384329,2,128,1 +32599,1384330,23,1184,1 +32600,1384332,193,9674,1 +32601,1384332,117,5887,1 +32602,1384332,49,2478,1 +32603,1384332,192,9643,1 +32604,1384332,133,6651,1 +32605,1384333,0,12,1 +32606,1384333,194,9707,1 +32607,1384333,13,656,1 +32608,1384338,149,7499,1 +32609,1384341,100,5029,1 +32610,1384344,117,5861,1 +32611,1384344,18,939,1 +32612,1384344,108,5408,1 +32613,1384344,14,713,1 +32614,1384344,111,5596,1 +32615,1384345,76,3831,1 +32616,1384345,101,5056,1 +32617,1384347,116,5824,1 +32618,1384347,114,5727,1 +32619,1384348,146,7322,1 +32620,1384349,149,7452,1 +32621,1384353,125,6264,1 +32622,1384356,189,9500,1 +32623,1384356,152,7640,1 +32624,1384356,66,3323,1 +32625,1384356,66,3302,1 +32626,1384357,194,9724,1 +32627,1384358,174,8720,1 +32628,1384359,48,2411,1 +32629,1384360,78,3909,1 +32630,1384363,13,657,1 +32631,1384368,45,2291,1 +32632,1384372,139,6989,1 +32633,1384380,129,6470,1 +32634,1384381,175,8768,1 +32635,1384392,133,6690,1 +32636,1384392,178,8910,1 +32637,1384393,74,3702,1 +32638,1384395,89,4480,1 +32639,1384400,91,4551,1 +32640,1384405,38,1946,1 +32641,1384417,73,3697,1 +32642,1384417,138,6908,1 +32643,1384425,35,1787,1 +32644,1384430,58,2920,1 +32645,1384433,183,9196,1 +32646,1384438,194,9742,1 +32647,1384440,131,6566,1 +32648,1384440,119,5951,1 +32649,1384441,185,9292,1 +32650,1384441,114,5732,1 +32651,1384453,171,8570,1 +32652,1384476,101,5069,1 +32653,1384485,81,4074,1 +32654,1384488,164,8233,1 +32655,1384656,105,5269,1 +32656,1384837,59,2976,1 +32657,1385280,93,4673,1 +32658,1385284,174,8728,1 +32659,1385290,88,4433,1 +32660,1385304,7,367,1 +32661,1385305,186,9301,1 +32662,1385313,127,6390,1 +32663,1385328,128,6429,1 +32664,1385330,156,7828,1 +32665,1385343,46,2349,1 +32666,1385349,55,2797,1 +32667,1385353,103,5157,1 +32668,1385376,91,4552,1 +32669,1385389,69,3462,1 +32670,1385414,24,1236,1 +32671,1385485,5,251,1 +32672,1385760,100,5038,1 +32673,1385760,150,7508,1 +32674,1385760,194,9704,1 +32675,1385760,2,110,1 +32676,1385760,197,9890,1 +32677,1385760,66,3350,1 +32678,1385760,20,1020,1 +32679,1385761,141,7097,1 +32680,1385761,157,7890,1 +32681,1385763,56,2811,1 +32682,1385766,119,5976,1 +32683,1385770,47,2392,1 +32684,1385772,164,8247,1 +32685,1385772,183,9185,1 +32686,1385773,181,9051,1 +32687,1385773,103,5189,1 +32688,1385773,76,3827,1 +32689,1385775,84,4234,1 +32690,1385780,38,1916,1 +32691,1385783,89,4488,1 +32692,1385784,12,645,1 +32693,1385784,183,9185,1 +32694,1385784,159,7964,1 +32695,1385784,32,1649,1 +32696,1385784,121,6061,1 +32697,1385785,76,3816,1 +32698,1385786,27,1376,1 +32699,1385787,68,3440,1 +32700,1385790,22,1103,1 +32701,1385796,173,8666,1 +32702,1385796,179,8979,1 +32703,1385796,149,7492,1 +32704,1385796,26,1348,1 +32705,1385797,12,615,1 +32706,1385797,96,4821,1 +32707,1385797,7,381,1 +32708,1385802,151,7585,1 +32709,1385808,24,1202,1 +32710,1385808,191,9593,1 +32711,1385808,91,4591,1 +32712,1385808,36,1848,1 +32713,1385810,138,6910,1 +32714,1385811,129,6467,1 +32715,1385820,184,9241,1 +32716,1385823,37,1858,1 +32717,1385823,84,4244,1 +32718,1385824,152,7618,1 +32719,1385829,111,5557,1 +32720,1385845,2,132,1 +32721,1385853,156,7804,1 +32722,1385856,119,5957,1 +32723,1385857,196,9802,1 +32724,1385857,140,7033,1 +32725,1385868,122,6129,1 +32726,1385877,67,3384,1 +32727,1385880,94,4727,1 +32728,1385880,133,6673,1 +32729,1385883,126,6319,1 +32730,1385892,163,8188,1 +32731,1385892,166,8340,1 +32732,1385903,98,4909,1 +32733,1385908,190,9512,1 +32734,1385913,173,8673,1 +32735,1385929,140,7042,1 +32736,1385930,187,9351,1 +32737,1385937,127,6388,1 +32738,1385941,125,6284,1 +32739,1385976,15,792,1 +32740,1385979,112,5607,1 +32741,1385980,14,708,1 +32742,1386156,51,2563,1 +32743,1386240,36,1816,1 +32744,1386720,28,1411,1 +32745,1386721,132,6637,1 +32746,1386786,182,9122,1 +32747,1386829,91,4592,1 +32748,1386841,170,8534,1 +32749,1387201,38,1945,1 +32750,1387204,40,2010,1 +32751,1387212,125,6256,1 +32752,1387215,115,5771,1 +32753,1387224,146,7316,1 +32754,1387226,159,7961,1 +32755,1387230,130,6518,1 +32756,1387236,119,5996,1 +32757,1387251,38,1944,1 +32758,1387260,172,8609,1 +32759,1387270,133,6653,1 +32760,1387285,166,8329,1 +32761,1387329,165,8256,1 +32762,1387680,185,9276,1 +32763,1388196,3,154,1 +32764,1388196,21,1063,1 +32765,1388292,91,4562,1 +32766,1388640,61,3056,1 +32767,1388640,173,8679,1 +32768,1388640,58,2914,1 +32769,1388641,73,3671,1 +32770,1388643,99,4954,1 +32771,1388649,66,3341,1 +32772,1388649,134,6724,1 +32773,1388652,136,6831,1 +32774,1388652,61,3070,1 +32775,1388652,1,51,1 +32776,1388652,51,2556,1 +32777,1388652,97,4884,1 +32778,1388658,123,6182,1 +32779,1388661,121,6096,1 +32780,1388670,172,8646,1 +32781,1388676,131,6586,1 +32782,1388677,49,2492,1 +32783,1388688,179,8952,1 +32784,1388688,61,3072,1 +32785,1388689,112,5634,1 +32786,1388700,98,4927,1 +32787,1388701,1,61,1 +32788,1388704,134,6744,1 +32789,1388713,174,8715,1 +32790,1388724,81,4087,1 +32791,1388724,94,4739,1 +32792,1388736,192,9601,1 +32793,1388739,123,6197,1 +32794,1388760,152,7649,1 +32795,1388760,68,3402,1 +32796,1388784,107,5366,1 +32797,1388787,100,5041,1 +32798,1388800,129,6473,1 +32799,1388818,80,4005,1 +32800,1388868,52,2617,1 +32801,1389120,17,870,1 +32802,1389135,95,4763,1 +32803,1389144,184,9212,1 +32804,1389214,180,9046,1 +32805,1389229,133,6658,1 +32806,1389229,136,6826,1 +32807,1389312,95,4751,1 +32808,1389612,196,9844,1 +32809,1389639,164,8250,1 +32810,1389648,177,8868,1 +32811,1390080,51,2587,1 +32812,1390093,32,1628,1 +32813,1390105,18,915,1 +32814,1390106,105,5288,1 +32815,1390116,58,2916,1 +32816,1390117,171,8591,1 +32817,1390129,151,7592,1 +32818,1390140,88,4406,1 +32819,1390154,191,9573,1 +32820,1390164,15,768,1 +32821,1390164,5,287,1 +32822,1390164,115,5768,1 +32823,1390176,184,9225,1 +32824,1390177,101,5064,1 +32825,1390182,6,341,1 +32826,1390191,119,5962,1 +32827,1390214,60,3025,1 +32828,1390225,191,9599,1 +32829,1390272,25,1251,1 +32830,1390572,196,9844,1 +32831,1390584,75,3755,1 +32832,1390596,8,417,1 +32833,1390644,33,1664,1 +32834,1391040,27,1362,1 +32835,1391042,69,3497,1 +32836,1391051,133,6692,1 +32837,1391052,148,7410,1 +32838,1391052,65,3296,1 +32839,1391053,150,7526,1 +32840,1391054,12,633,1 +32841,1391055,87,4381,1 +32842,1391065,121,6080,1 +32843,1391076,42,2111,1 +32844,1391077,113,5664,1 +32845,1391079,172,8639,1 +32846,1391088,111,5555,1 +32847,1391095,30,1534,1 +32848,1391100,141,7053,1 +32849,1391124,58,2926,1 +32850,1391137,58,2916,1 +32851,1391148,69,3475,1 +32852,1391206,89,4492,1 +32853,1391209,123,6167,1 +32854,1391268,38,1949,1 +32855,1391535,71,3559,1 +32856,1391547,182,9143,1 +32857,1391562,82,4143,1 +32858,1391562,156,7845,1 +32859,1391580,102,5126,1 +32860,1391580,88,4423,1 +32861,1391580,107,5363,1 +32862,1391586,184,9222,1 +32863,1391592,194,9716,1 +32864,1391685,167,8393,1 +32865,1392003,78,3931,1 +32866,1392480,117,5862,1 +32867,1392486,118,5908,1 +32868,1392489,103,5154,1 +32869,1392489,69,3451,1 +32870,1392526,198,9933,1 +32871,1392528,93,4680,1 +32872,1392529,75,3756,1 +32873,1392552,178,8934,1 +32874,1392552,117,5895,1 +32875,1392558,136,6839,1 +32876,1392576,58,2929,1 +32877,1392693,122,6137,1 +32878,1392960,81,4073,1 +32879,1392960,48,2435,1 +32880,1392961,106,5330,1 +32881,1392961,93,4678,1 +32882,1392961,34,1747,1 +32883,1392961,27,1358,1 +32884,1392962,173,8692,1 +32885,1392962,140,7035,1 +32886,1392963,189,9483,1 +32887,1392964,176,8850,1 +32888,1392966,129,6497,1 +32889,1392966,8,432,1 +32890,1392970,13,682,1 +32891,1392972,71,3562,1 +32892,1392972,41,2082,1 +32893,1392972,109,5460,1 +32894,1392972,29,1454,1 +32895,1392972,64,3216,1 +32896,1392973,170,8517,1 +32897,1392973,104,5209,1 +32898,1392973,149,7489,1 +32899,1392973,133,6662,1 +32900,1392974,18,902,1 +32901,1392974,13,653,1 +32902,1392975,190,9532,1 +32903,1392975,195,9757,1 +32904,1392975,197,9900,1 +32905,1392975,156,7849,1 +32906,1392975,129,6494,1 +32907,1392978,101,5059,1 +32908,1392978,77,3871,1 +32909,1392978,79,3983,1 +32910,1392981,76,3821,1 +32911,1392984,52,2648,1 +32912,1392984,131,6575,1 +32913,1392984,159,7995,1 +32914,1392984,191,9573,1 +32915,1392984,101,5078,1 +32916,1392984,25,1281,1 +32917,1392984,194,9703,1 +32918,1392985,199,9999,1 +32919,1392985,134,6742,1 +32920,1392985,18,935,1 +32921,1392987,101,5083,1 +32922,1392987,51,2581,1 +32923,1392989,189,9497,1 +32924,1392990,46,2312,1 +32925,1392991,93,4694,1 +32926,1392993,68,3407,1 +32927,1392994,123,6190,1 +32928,1392994,196,9846,1 +32929,1392996,34,1727,1 +32930,1392996,31,1576,1 +32931,1392996,39,1968,1 +32932,1392996,64,3239,1 +32933,1392996,76,3812,1 +32934,1392997,163,8179,1 +32935,1392997,71,3566,1 +32936,1392998,101,5056,1 +32937,1392999,50,2547,1 +32938,1392999,16,805,1 +32939,1393002,82,4118,1 +32940,1393005,56,2812,1 +32941,1393005,77,3881,1 +32942,1393005,194,9710,1 +32943,1393008,175,8775,1 +32944,1393008,36,1832,1 +32945,1393008,48,2432,1 +32946,1393008,38,1922,1 +32947,1393008,100,5026,1 +32948,1393009,80,4030,1 +32949,1393009,76,3849,1 +32950,1393009,26,1308,1 +32951,1393013,82,4147,1 +32952,1393014,192,9624,1 +32953,1393019,110,5519,1 +32954,1393020,19,994,1 +32955,1393020,141,7096,1 +32956,1393020,184,9231,1 +32957,1393021,79,3975,1 +32958,1393021,28,1404,1 +32959,1393021,54,2748,1 +32960,1393022,7,397,1 +32961,1393022,55,2782,1 +32962,1393023,171,8562,1 +32963,1393029,131,6597,1 +32964,1393029,59,2951,1 +32965,1393030,163,8188,1 +32966,1393030,72,3634,1 +32967,1393032,18,940,1 +32968,1393036,25,1255,1 +32969,1393038,153,7671,1 +32970,1393044,139,6984,1 +32971,1393044,22,1131,1 +32972,1393044,55,2800,1 +32973,1393044,43,2174,1 +32974,1393044,13,674,1 +32975,1393045,117,5859,1 +32976,1393045,49,2486,1 +32977,1393056,69,3491,1 +32978,1393056,40,2007,1 +32979,1393057,151,7592,1 +32980,1393057,139,6995,1 +32981,1393057,10,537,1 +32982,1393058,142,7118,1 +32983,1393065,192,9614,1 +32984,1393083,173,8651,1 +32985,1393083,105,5296,1 +32986,1393086,103,5169,1 +32987,1393092,142,7129,1 +32988,1393092,114,5717,1 +32989,1393093,157,7878,1 +32990,1393104,194,9730,1 +32991,1393107,159,7995,1 +32992,1393107,116,5832,1 +32993,1393116,17,857,1 +32994,1393116,197,9898,1 +32995,1393129,12,632,1 +32996,1393130,112,5626,1 +32997,1393131,74,3734,1 +32998,1393131,105,5280,1 +32999,1393133,109,5476,1 +33000,1393134,189,9490,1 +33001,1393152,122,6136,1 +33002,1393176,33,1669,1 +33003,1393269,69,3499,1 +33004,1393452,171,8592,1 +33005,1393955,148,7445,1 +33006,1394400,117,5897,1 +33007,1394403,85,4254,1 +33008,1394404,33,1668,1 +33009,1394412,110,5506,1 +33010,1394412,101,5081,1 +33011,1394412,127,6400,1 +33012,1394427,163,8195,1 +33013,1394433,86,4334,1 +33014,1394437,176,8836,1 +33015,1394439,187,9357,1 +33016,1394449,77,3885,1 +33017,1394460,172,8617,1 +33018,1394466,182,9105,1 +33019,1394472,110,5544,1 +33020,1394490,92,4631,1 +33021,1394505,137,6884,1 +33022,1394520,67,3392,1 +33023,1394521,134,6708,1 +33024,1394532,121,6051,1 +33025,1394544,12,625,1 +33026,1394558,80,4011,1 +33027,1394881,43,2172,1 +33028,1395367,75,3766,1 +33029,1395458,71,3562,1 +33030,1395468,33,1700,1 +33031,1395897,100,5045,1 +33032,1395906,105,5283,1 +33033,1396320,158,7917,1 +33034,1396320,106,5312,1 +33035,1396320,63,3168,1 +33036,1396320,138,6916,1 +33037,1396320,80,4047,1 +33038,1396321,22,1109,1 +33039,1396321,4,236,1 +33040,1396323,76,3803,1 +33041,1396323,5,287,1 +33042,1396325,42,2109,1 +33043,1396332,15,795,1 +33044,1396332,70,3531,1 +33045,1396332,68,3425,1 +33046,1396332,82,4106,1 +33047,1396333,40,2044,1 +33048,1396333,163,8154,1 +33049,1396333,59,2958,1 +33050,1396333,136,6829,1 +33051,1396341,6,321,1 +33052,1396344,190,9509,1 +33053,1396344,10,533,1 +33054,1396344,135,6790,1 +33055,1396344,154,7720,1 +33056,1396345,4,238,1 +33057,1396345,139,6953,1 +33058,1396349,148,7434,1 +33059,1396356,153,7653,1 +33060,1396359,23,1166,1 +33061,1396360,41,2087,1 +33062,1396368,162,8125,1 +33063,1396368,164,8247,1 +33064,1396371,68,3449,1 +33065,1396377,101,5090,1 +33066,1396383,102,5112,1 +33067,1396383,10,503,1 +33068,1396392,20,1016,1 +33069,1396392,78,3936,1 +33070,1396392,70,3550,1 +33071,1396395,71,3593,1 +33072,1396416,55,2763,1 +33073,1396428,112,5611,1 +33074,1396440,13,666,1 +33075,1396442,99,4980,1 +33076,1396453,176,8816,1 +33077,1396459,17,863,1 +33078,1396475,88,4423,1 +33079,1396560,115,5778,1 +33080,1396764,159,7972,1 +33081,1396884,196,9834,1 +33082,1397304,194,9733,1 +33083,1397773,44,2221,1 +33084,1397774,84,4247,1 +33085,1397784,167,8378,1 +33086,1397787,194,9711,1 +33087,1397796,150,7508,1 +33088,1397796,78,3912,1 +33089,1397820,74,3730,1 +33090,1397820,52,2646,1 +33091,1397880,156,7827,1 +33092,1397902,107,5365,1 +33093,1398006,107,5352,1 +33094,1398219,85,4272,1 +33095,1398244,73,3678,1 +33096,1398261,1,60,1 +33097,1398280,15,763,1 +33098,1398299,149,7458,1 +33099,1398302,67,3389,1 +33100,1398312,88,4435,1 +33101,1398314,166,8303,1 +33102,1398322,25,1294,1 +33103,1398340,144,7227,1 +33104,1398360,113,5677,1 +33105,1398723,165,8276,1 +33106,1398723,116,5828,1 +33107,1398730,57,2884,1 +33108,1398730,5,259,1 +33109,1398732,150,7523,1 +33110,1398732,77,3890,1 +33111,1398732,160,8036,1 +33112,1398732,37,1888,1 +33113,1398732,66,3345,1 +33114,1398732,65,3251,1 +33115,1398738,47,2387,1 +33116,1398742,38,1943,1 +33117,1398744,187,9377,1 +33118,1398744,192,9640,1 +33119,1398748,10,547,1 +33120,1398756,53,2669,1 +33121,1398758,119,5974,1 +33122,1398759,102,5129,1 +33123,1398769,76,3810,1 +33124,1398769,159,7972,1 +33125,1398780,157,7855,1 +33126,1398781,75,3771,1 +33127,1398781,85,4276,1 +33128,1398789,69,3459,1 +33129,1398792,89,4486,1 +33130,1398792,70,3521,1 +33131,1398804,124,6223,1 +33132,1398816,8,409,1 +33133,1398829,145,7284,1 +33134,1398838,145,7290,1 +33135,1398842,135,6782,1 +33136,1399044,76,3822,1 +33137,1399200,50,2538,1 +33138,1399214,32,1605,1 +33139,1399274,111,5587,1 +33140,1399288,132,6641,1 +33141,1399686,149,7481,1 +33142,1399740,80,4005,1 +33143,1399800,104,5245,1 +33144,1400640,159,7978,1 +33145,1400653,174,8709,1 +33146,1400653,149,7453,1 +33147,1400661,166,8305,1 +33148,1400667,6,349,1 +33149,1400670,86,4332,1 +33150,1400674,129,6488,1 +33151,1400688,186,9306,1 +33152,1400694,98,4925,1 +33153,1400701,44,2238,1 +33154,1400709,65,3295,1 +33155,1400713,146,7303,1 +33156,1400895,17,882,1 +33157,1401120,132,6637,1 +33158,1401121,40,2046,1 +33159,1401123,177,8873,1 +33160,1401132,189,9485,1 +33161,1401135,174,8736,1 +33162,1401141,23,1168,1 +33163,1401170,4,225,1 +33164,1401190,145,7255,1 +33165,1401207,101,5090,1 +33166,1401226,16,813,1 +33167,1401266,93,4654,1 +33168,1401624,39,1977,1 +33169,1401732,181,9092,1 +33170,1401777,30,1532,1 +33171,1401830,159,7973,1 +33172,1401864,16,821,1 +33173,1402584,187,9387,1 +33174,1402584,190,9535,1 +33175,1403040,185,9258,1 +33176,1403042,87,4381,1 +33177,1403043,98,4929,1 +33178,1403043,162,8122,1 +33179,1403052,174,8749,1 +33180,1403052,130,6503,1 +33181,1403073,22,1127,1 +33182,1403100,70,3502,1 +33183,1403112,14,744,1 +33184,1403130,64,3226,1 +33185,1403247,174,8728,1 +33186,1403385,181,9094,1 +33187,1403524,45,2272,1 +33188,1403533,74,3716,1 +33189,1403544,90,4513,1 +33190,1403598,146,7331,1 +33191,1403640,151,7581,1 +33192,1404001,45,2261,1 +33193,1404003,116,5833,1 +33194,1404022,118,5907,1 +33195,1404034,199,9978,1 +33196,1404048,45,2279,1 +33197,1404054,68,3408,1 +33198,1404054,18,926,1 +33199,1404060,181,9094,1 +33200,1404066,96,4814,1 +33201,1404072,103,5164,1 +33202,1404100,88,4450,1 +33203,1404108,172,8650,1 +33204,1404120,118,5925,1 +33205,1404121,108,5417,1 +33206,1404480,85,4285,1 +33207,1404480,175,8788,1 +33208,1404481,69,3495,1 +33209,1404481,165,8272,1 +33210,1404481,77,3851,1 +33211,1404481,21,1059,1 +33212,1404482,142,7109,1 +33213,1404482,59,2989,1 +33214,1404483,50,2548,1 +33215,1404484,31,1555,1 +33216,1404486,95,4785,1 +33217,1404489,191,9563,1 +33218,1404489,54,2719,1 +33219,1404492,138,6912,1 +33220,1404492,35,1782,1 +33221,1404492,22,1107,1 +33222,1404492,80,4028,1 +33223,1404492,88,4411,1 +33224,1404492,177,8864,1 +33225,1404492,101,5080,1 +33226,1404493,161,8078,1 +33227,1404493,55,2757,1 +33228,1404493,46,2326,1 +33229,1404493,96,4824,1 +33230,1404493,1,92,1 +33231,1404495,46,2322,1 +33232,1404496,1,96,1 +33233,1404501,67,3364,1 +33234,1404501,17,868,1 +33235,1404503,100,5046,1 +33236,1404504,166,8332,1 +33237,1404504,7,399,1 +33238,1404504,122,6145,1 +33239,1404505,120,6026,1 +33240,1404507,139,6989,1 +33241,1404507,82,4137,1 +33242,1404510,46,2339,1 +33243,1404513,46,2309,1 +33244,1404514,103,5162,1 +33245,1404516,122,6139,1 +33246,1404516,115,5761,1 +33247,1404516,79,3970,1 +33248,1404516,197,9874,1 +33249,1404517,57,2885,1 +33250,1404517,21,1058,1 +33251,1404517,55,2751,1 +33252,1404517,169,8491,1 +33253,1404519,176,8840,1 +33254,1404519,67,3391,1 +33255,1404522,163,8168,1 +33256,1404522,85,4291,1 +33257,1404523,25,1295,1 +33258,1404525,35,1773,1 +33259,1404525,83,4193,1 +33260,1404525,105,5290,1 +33261,1404526,87,4365,1 +33262,1404528,154,7743,1 +33263,1404529,44,2231,1 +33264,1404530,1,98,1 +33265,1404530,101,5085,1 +33266,1404534,17,854,1 +33267,1404540,179,8960,1 +33268,1404540,122,6149,1 +33269,1404540,7,355,1 +33270,1404540,18,918,1 +33271,1404552,86,4341,1 +33272,1404554,14,740,1 +33273,1404555,93,4656,1 +33274,1404559,191,9597,1 +33275,1404564,47,2373,1 +33276,1404564,68,3425,1 +33277,1404564,31,1558,1 +33278,1404570,163,8175,1 +33279,1404576,168,8409,1 +33280,1404576,37,1859,1 +33281,1404576,69,3480,1 +33282,1404576,9,471,1 +33283,1404577,31,1594,1 +33284,1404588,185,9266,1 +33285,1404588,143,7195,1 +33286,1404589,90,4549,1 +33287,1404591,133,6667,1 +33288,1404600,43,2197,1 +33289,1404612,182,9105,1 +33290,1404621,0,6,1 +33291,1404624,116,5803,1 +33292,1404633,93,4688,1 +33293,1404636,109,5488,1 +33294,1404639,109,5499,1 +33295,1404661,169,8491,1 +33296,1404678,19,973,1 +33297,1404678,184,9216,1 +33298,1404780,96,4850,1 +33299,1404783,114,5701,1 +33300,1405441,65,3273,1 +33301,1405446,23,1199,1 +33302,1405455,84,4233,1 +33303,1405488,42,2123,1 +33304,1405500,180,9020,1 +33305,1405527,53,2680,1 +33306,1405549,164,8203,1 +33307,1405550,111,5574,1 +33308,1405554,78,3950,1 +33309,1405573,29,1500,1 +33310,1405575,72,3623,1 +33311,1405620,68,3429,1 +33312,1405621,125,6287,1 +33313,1405927,0,5,1 +33314,1405932,66,3323,1 +33315,1405959,145,7260,1 +33316,1405969,112,5625,1 +33317,1406020,173,8656,1 +33318,1406032,95,4800,1 +33319,1406401,195,9775,1 +33320,1406403,185,9297,1 +33321,1406403,161,8085,1 +33322,1406412,79,3972,1 +33323,1406412,167,8371,1 +33324,1406413,49,2458,1 +33325,1406424,93,4667,1 +33326,1406424,55,2758,1 +33327,1406425,5,290,1 +33328,1406425,20,1012,1 +33329,1406432,189,9494,1 +33330,1406439,23,1164,1 +33331,1406448,43,2181,1 +33332,1406448,116,5822,1 +33333,1406452,131,6562,1 +33334,1406460,8,438,1 +33335,1406469,191,9576,1 +33336,1406484,181,9088,1 +33337,1406505,175,8785,1 +33338,1406521,169,8460,1 +33339,1406880,158,7945,1 +33340,1406880,24,1241,1 +33341,1406880,26,1309,1 +33342,1406880,41,2088,1 +33343,1406880,98,4909,1 +33344,1406880,180,9025,1 +33345,1406881,190,9537,1 +33346,1406881,104,5247,1 +33347,1406881,112,5627,1 +33348,1406882,50,2511,1 +33349,1406883,156,7843,1 +33350,1406886,150,7504,1 +33351,1406889,81,4093,1 +33352,1406889,33,1685,1 +33353,1406892,151,7571,1 +33354,1406892,187,9357,1 +33355,1406892,160,8019,1 +33356,1406892,157,7861,1 +33357,1406892,82,4141,1 +33358,1406892,141,7100,1 +33359,1406893,119,5992,1 +33360,1406893,136,6828,1 +33361,1406893,155,7798,1 +33362,1406896,141,7062,1 +33363,1406899,120,6017,1 +33364,1406901,186,9338,1 +33365,1406901,157,7869,1 +33366,1406904,54,2701,1 +33367,1406904,33,1685,1 +33368,1406904,173,8653,1 +33369,1406904,170,8549,1 +33370,1406906,140,7029,1 +33371,1406910,7,400,1 +33372,1406910,26,1343,1 +33373,1406911,40,2043,1 +33374,1406912,87,4365,1 +33375,1406914,199,9953,1 +33376,1406916,68,3438,1 +33377,1406916,43,2194,1 +33378,1406916,9,493,1 +33379,1406917,186,9346,1 +33380,1406918,8,402,1 +33381,1406922,31,1576,1 +33382,1406925,54,2744,1 +33383,1406928,154,7732,1 +33384,1406928,17,894,1 +33385,1406928,12,612,1 +33386,1406929,101,5098,1 +33387,1406931,79,3952,1 +33388,1406940,181,9100,1 +33389,1406940,100,5036,1 +33390,1406940,19,961,1 +33391,1406946,167,8364,1 +33392,1406952,196,9824,1 +33393,1406956,95,4763,1 +33394,1406958,115,5767,1 +33395,1406982,122,6142,1 +33396,1407015,157,7881,1 +33397,1407072,8,423,1 +33398,1407084,190,9535,1 +33399,1407120,76,3825,1 +33400,1407360,56,2846,1 +33401,1407360,194,9711,1 +33402,1407360,164,8223,1 +33403,1407362,143,7158,1 +33404,1407377,15,797,1 +33405,1407378,35,1791,1 +33406,1407381,103,5163,1 +33407,1407385,32,1643,1 +33408,1407408,52,2642,1 +33409,1407417,156,7823,1 +33410,1407420,118,5930,1 +33411,1407430,32,1619,1 +33412,1407441,146,7330,1 +33413,1407468,30,1545,1 +33414,1407474,36,1834,1 +33415,1407576,128,6408,1 +33416,1407840,189,9467,1 +33417,1407955,158,7935,1 +33418,1407960,97,4868,1 +33419,1408320,111,5571,1 +33420,1408323,33,1687,1 +33421,1408344,70,3536,1 +33422,1408354,7,363,1 +33423,1408405,167,8385,1 +33424,1408415,141,7083,1 +33425,1408800,169,8484,1 +33426,1408803,142,7132,1 +33427,1408827,26,1343,1 +33428,1408992,163,8181,1 +33429,1409280,149,7483,1 +33430,1409280,6,324,1 +33431,1409286,62,3133,1 +33432,1409286,134,6745,1 +33433,1409286,159,7969,1 +33434,1409291,73,3655,1 +33435,1409294,25,1269,1 +33436,1409295,20,1042,1 +33437,1409304,10,508,1 +33438,1409304,25,1264,1 +33439,1409313,192,9629,1 +33440,1409315,106,5315,1 +33441,1409316,6,314,1 +33442,1409316,162,8146,1 +33443,1409316,187,9389,1 +33444,1409317,197,9873,1 +33445,1409317,135,6796,1 +33446,1409326,199,9965,1 +33447,1409340,69,3481,1 +33448,1409365,3,162,1 +33449,1409388,95,4791,1 +33450,1409431,18,905,1 +33451,1409760,52,2649,1 +33452,1409760,98,4926,1 +33453,1409761,135,6791,1 +33454,1409762,49,2490,1 +33455,1409766,31,1574,1 +33456,1409772,11,570,1 +33457,1409772,145,7264,1 +33458,1409773,182,9107,1 +33459,1409784,88,4436,1 +33460,1409784,66,3314,1 +33461,1409785,6,316,1 +33462,1409796,189,9469,1 +33463,1409797,10,519,1 +33464,1409798,91,4578,1 +33465,1409802,31,1573,1 +33466,1409809,62,3133,1 +33467,1409820,88,4446,1 +33468,1409821,106,5311,1 +33469,1409823,82,4108,1 +33470,1409853,58,2907,1 +33471,1409861,39,1964,1 +33472,1409918,123,6185,1 +33473,1410241,27,1370,1 +33474,1410252,187,9396,1 +33475,1410253,173,8656,1 +33476,1410258,89,4458,1 +33477,1410264,132,6642,1 +33478,1410267,29,1500,1 +33479,1410267,41,2069,1 +33480,1410270,172,8627,1 +33481,1410276,144,7233,1 +33482,1410288,166,8313,1 +33483,1410289,141,7073,1 +33484,1410294,19,994,1 +33485,1410306,161,8066,1 +33486,1410312,121,6083,1 +33487,1410323,169,8482,1 +33488,1410324,8,444,1 +33489,1410326,24,1207,1 +33490,1410342,61,3070,1 +33491,1410348,116,5850,1 +33492,1410352,136,6850,1 +33493,1410371,80,4033,1 +33494,1410382,28,1444,1 +33495,1410444,131,6559,1 +33496,1410732,166,8311,1 +33497,1410855,151,7592,1 +33498,1410902,67,3390,1 +33499,1411201,156,7805,1 +33500,1411202,51,2584,1 +33501,1411206,191,9585,1 +33502,1411210,74,3707,1 +33503,1411211,65,3297,1 +33504,1411212,39,1974,1 +33505,1411212,59,2997,1 +33506,1411213,48,2444,1 +33507,1411218,107,5392,1 +33508,1411221,199,9964,1 +33509,1411224,152,7626,1 +33510,1411224,73,3688,1 +33511,1411225,155,7771,1 +33512,1411226,176,8846,1 +33513,1411236,65,3271,1 +33514,1411238,157,7893,1 +33515,1411239,52,2640,1 +33516,1411242,178,8926,1 +33517,1411259,129,6483,1 +33518,1411260,174,8738,1 +33519,1411260,149,7457,1 +33520,1411261,178,8934,1 +33521,1411272,176,8830,1 +33522,1411275,63,3152,1 +33523,1411276,178,8925,1 +33524,1411284,76,3848,1 +33525,1411303,98,4926,1 +33526,1411320,61,3057,1 +33527,1411321,76,3804,1 +33528,1411323,175,8778,1 +33529,1411323,154,7706,1 +33530,1411329,107,5357,1 +33531,1411684,79,3954,1 +33532,1411692,195,9799,1 +33533,1411693,152,7642,1 +33534,1411752,53,2688,1 +33535,1411789,136,6831,1 +33536,1411819,138,6902,1 +33537,1412160,61,3081,1 +33538,1412163,180,9038,1 +33539,1412163,58,2940,1 +33540,1412163,90,4513,1 +33541,1412167,192,9630,1 +33542,1412173,157,7885,1 +33543,1412174,195,9774,1 +33544,1412178,64,3236,1 +33545,1412184,188,9425,1 +33546,1412184,96,4822,1 +33547,1412184,111,5563,1 +33548,1412184,184,9230,1 +33549,1412186,18,925,1 +33550,1412186,148,7447,1 +33551,1412193,164,8248,1 +33552,1412196,197,9900,1 +33553,1412196,192,9648,1 +33554,1412201,42,2123,1 +33555,1412208,66,3313,1 +33556,1412208,172,8613,1 +33557,1412213,4,233,1 +33558,1412219,62,3125,1 +33559,1412220,7,363,1 +33560,1412221,63,3190,1 +33561,1412224,61,3064,1 +33562,1412280,117,5890,1 +33563,1412292,194,9712,1 +33564,1412383,32,1621,1 +33565,1412400,18,903,1 +33566,1412664,43,2161,1 +33567,1413120,16,825,1 +33568,1413120,20,1040,1 +33569,1413120,67,3375,1 +33570,1413121,90,4510,1 +33571,1413123,43,2177,1 +33572,1413124,165,8294,1 +33573,1413127,9,479,1 +33574,1413135,120,6005,1 +33575,1413145,9,460,1 +33576,1413156,114,5714,1 +33577,1413159,173,8697,1 +33578,1413168,32,1604,1 +33579,1413170,125,6260,1 +33580,1413171,28,1407,1 +33581,1413171,186,9312,1 +33582,1413174,6,328,1 +33583,1413180,97,4869,1 +33584,1413180,129,6491,1 +33585,1413180,177,8900,1 +33586,1413192,181,9067,1 +33587,1413198,159,7973,1 +33588,1413204,84,4205,1 +33589,1413240,0,27,1 +33590,1413315,49,2457,1 +33591,1413661,106,5346,1 +33592,1414080,157,7885,1 +33593,1414148,80,4022,1 +33594,1414203,199,9953,1 +33595,1414560,37,1852,1 +33596,1415061,11,562,1 +33597,1415076,159,7986,1 +33598,1415124,72,3618,1 +33599,1415520,69,3483,1 +33600,1415520,104,5208,1 +33601,1415520,22,1124,1 +33602,1415521,59,2998,1 +33603,1415521,184,9236,1 +33604,1415522,162,8126,1 +33605,1415522,158,7948,1 +33606,1415529,190,9550,1 +33607,1415537,132,6613,1 +33608,1415544,21,1076,1 +33609,1415544,0,39,1 +33610,1415547,162,8115,1 +33611,1415550,185,9257,1 +33612,1415580,158,7916,1 +33613,1415583,122,6122,1 +33614,1415589,56,2830,1 +33615,1415592,6,345,1 +33616,1415604,115,5796,1 +33617,1415626,136,6846,1 +33618,1415637,91,4595,1 +33619,1415734,22,1108,1 +33620,1416000,74,3730,1 +33621,1416001,133,6694,1 +33622,1416012,152,7629,1 +33623,1416013,117,5871,1 +33624,1416015,127,6394,1 +33625,1416037,8,434,1 +33626,1416037,101,5080,1 +33627,1416057,125,6296,1 +33628,1416060,34,1740,1 +33629,1416073,1,66,1 +33630,1416082,68,3445,1 +33631,1416084,47,2351,1 +33632,1416144,97,4898,1 +33633,1416504,87,4378,1 +33634,1417080,174,8745,1 +33635,1417479,74,3718,1 +33636,1417920,96,4837,1 +33637,1417920,79,3987,1 +33638,1417924,176,8848,1 +33639,1417932,2,101,1 +33640,1417932,167,8380,1 +33641,1417932,135,6798,1 +33642,1417932,151,7586,1 +33643,1417956,11,555,1 +33644,1417956,84,4239,1 +33645,1417956,190,9536,1 +33646,1417962,161,8063,1 +33647,1417969,72,3633,1 +33648,1417971,82,4121,1 +33649,1417972,187,9357,1 +33650,1417992,40,2038,1 +33651,1417995,107,5354,1 +33652,1418016,122,6134,1 +33653,1418400,106,5336,1 +33654,1418400,122,6136,1 +33655,1418400,118,5916,1 +33656,1418401,51,2594,1 +33657,1418402,148,7420,1 +33658,1418403,6,307,1 +33659,1418412,14,720,1 +33660,1418418,105,5271,1 +33661,1418421,124,6214,1 +33662,1418423,138,6918,1 +33663,1418424,158,7923,1 +33664,1418424,11,577,1 +33665,1418424,95,4797,1 +33666,1418425,68,3407,1 +33667,1418436,127,6373,1 +33668,1418436,50,2548,1 +33669,1418436,15,785,1 +33670,1418484,124,6226,1 +33671,1418495,49,2464,1 +33672,1418496,85,4254,1 +33673,1418517,163,8184,1 +33674,1418640,55,2788,1 +33675,1418880,172,8643,1 +33676,1418880,61,3077,1 +33677,1418880,186,9314,1 +33678,1418881,95,4784,1 +33679,1418881,71,3570,1 +33680,1418882,20,1039,1 +33681,1418883,133,6661,1 +33682,1418892,139,6982,1 +33683,1418892,143,7153,1 +33684,1418892,154,7733,1 +33685,1418892,167,8360,1 +33686,1418892,11,565,1 +33687,1418893,104,5244,1 +33688,1418893,90,4511,1 +33689,1418893,189,9453,1 +33690,1418902,121,6060,1 +33691,1418904,109,5455,1 +33692,1418904,84,4201,1 +33693,1418905,122,6122,1 +33694,1418906,77,3858,1 +33695,1418906,177,8872,1 +33696,1418916,162,8137,1 +33697,1418916,136,6846,1 +33698,1418923,57,2877,1 +33699,1418929,92,4628,1 +33700,1418929,119,5992,1 +33701,1418939,21,1077,1 +33702,1418940,121,6052,1 +33703,1418940,72,3629,1 +33704,1418941,50,2534,1 +33705,1418952,124,6245,1 +33706,1418953,108,5450,1 +33707,1418961,61,3071,1 +33708,1418961,20,1012,1 +33709,1418964,148,7403,1 +33710,1418964,171,8580,1 +33711,1418976,73,3686,1 +33712,1418978,17,895,1 +33713,1418979,68,3403,1 +33714,1418979,65,3271,1 +33715,1418982,98,4948,1 +33716,1418988,7,369,1 +33717,1419012,110,5523,1 +33718,1419021,165,8269,1 +33719,1419024,22,1124,1 +33720,1419086,70,3520,1 +33721,1419156,198,9922,1 +33722,1419173,54,2730,1 +33723,1419381,43,2160,1 +33724,1419840,22,1115,1 +33725,1419844,13,681,1 +33726,1419865,56,2839,1 +33727,1419869,174,8736,1 +33728,1419876,120,6045,1 +33729,1419876,147,7398,1 +33730,1419912,157,7859,1 +33731,1419913,1,65,1 +33732,1419939,160,8034,1 +33733,1419948,72,3627,1 +33734,1420345,130,6550,1 +33735,1420800,134,6731,1 +33736,1421280,20,1039,1 +33737,1421292,82,4136,1 +33738,1421301,189,9459,1 +33739,1421304,63,3178,1 +33740,1421310,143,7190,1 +33741,1421316,194,9747,1 +33742,1421316,82,4118,1 +33743,1421318,53,2679,1 +33744,1421328,63,3192,1 +33745,1421341,106,5350,1 +33746,1421352,186,9331,1 +33747,1421352,86,4301,1 +33748,1421385,38,1945,1 +33749,1421520,34,1720,1 +33750,1421760,128,6432,1 +33751,1421760,16,826,1 +33752,1421760,116,5803,1 +33753,1421761,157,7868,1 +33754,1421767,186,9331,1 +33755,1421786,54,2706,1 +33756,1421790,53,2660,1 +33757,1421797,188,9421,1 +33758,1421808,26,1312,1 +33759,1421820,137,6856,1 +33760,1421867,188,9424,1 +33761,1421871,199,9974,1 +33762,1421922,91,4563,1 +33763,1422240,139,6959,1 +33764,1422246,170,8526,1 +33765,1422250,127,6372,1 +33766,1422252,105,5271,1 +33767,1422253,176,8840,1 +33768,1422264,120,6006,1 +33769,1422267,113,5685,1 +33770,1422269,175,8794,1 +33771,1422276,179,8968,1 +33772,1422286,157,7881,1 +33773,1422300,13,657,1 +33774,1422312,25,1291,1 +33775,1422314,16,803,1 +33776,1422806,2,109,1 +33777,1423200,124,6250,1 +33778,1423204,115,5766,1 +33779,1423215,35,1757,1 +33780,1423224,48,2419,1 +33781,1423233,55,2761,1 +33782,1423236,27,1390,1 +33783,1423236,55,2772,1 +33784,1423274,23,1191,1 +33785,1423280,91,4572,1 +33786,1423287,167,8386,1 +33787,1423392,135,6790,1 +33788,1424160,32,1614,1 +33789,1424220,196,9818,1 +33790,1425120,106,5326,1 +33791,1425121,6,336,1 +33792,1425123,117,5861,1 +33793,1425132,114,5723,1 +33794,1425132,145,7275,1 +33795,1425135,21,1081,1 +33796,1425144,35,1790,1 +33797,1425145,159,7973,1 +33798,1425157,72,3637,1 +33799,1425192,12,640,1 +33800,1425261,142,7129,1 +33801,1425633,24,1247,1 +33802,1425636,196,9825,1 +33803,1425649,52,2632,1 +33804,1425673,162,8140,1 +33805,1425684,137,6863,1 +33806,1426080,106,5310,1 +33807,1426080,130,6543,1 +33808,1426081,133,6700,1 +33809,1426104,193,9697,1 +33810,1426113,126,6307,1 +33811,1426116,43,2179,1 +33812,1426119,84,4220,1 +33813,1426131,149,7497,1 +33814,1426132,116,5822,1 +33815,1426140,30,1516,1 +33816,1426188,38,1917,1 +33817,1426215,92,4639,1 +33818,1426227,38,1930,1 +33819,1426260,59,2991,1 +33820,1426332,177,8883,1 +33821,1426560,144,7204,1 +33822,1426570,175,8759,1 +33823,1426573,18,929,1 +33824,1426573,168,8432,1 +33825,1426576,40,2012,1 +33826,1426585,123,6172,1 +33827,1426585,161,8081,1 +33828,1426596,147,7352,1 +33829,1426596,57,2856,1 +33830,1426644,26,1337,1 +33831,1426669,29,1464,1 +33832,1427044,161,8069,1 +33833,1427063,172,8612,1 +33834,1427064,44,2206,1 +33835,1427076,190,9528,1 +33836,1427082,188,9404,1 +33837,1427100,10,518,1 +33838,1427136,28,1426,1 +33839,1427571,142,7123,1 +33840,1427610,19,954,1 +33841,1427688,20,1031,1 +33842,1428001,30,1543,1 +33843,1428012,100,5039,1 +33844,1428073,56,2849,1 +33845,1428080,137,6892,1 +33846,1428960,161,8066,1 +33847,1428960,52,2650,1 +33848,1428972,189,9462,1 +33849,1428984,95,4758,1 +33850,1428987,153,7682,1 +33851,1428997,75,3753,1 +33852,1428999,31,1589,1 +33853,1429005,22,1130,1 +33854,1429020,27,1381,1 +33855,1429041,122,6133,1 +33856,1429044,87,4383,1 +33857,1429047,99,4969,1 +33858,1429059,78,3915,1 +33859,1429071,68,3413,1 +33860,1429082,44,2225,1 +33861,1429092,92,4647,1 +33862,1429440,8,450,1 +33863,1429440,95,4763,1 +33864,1429443,47,2351,1 +33865,1429453,77,3878,1 +33866,1429456,123,6158,1 +33867,1429461,6,336,1 +33868,1429462,163,8152,1 +33869,1429464,50,2508,1 +33870,1429476,95,4792,1 +33871,1429477,139,6971,1 +33872,1429485,194,9719,1 +33873,1429489,21,1081,1 +33874,1429500,77,3887,1 +33875,1429503,90,4527,1 +33876,1429537,79,3979,1 +33877,1429561,68,3427,1 +33878,1429576,132,6607,1 +33879,1429593,71,3586,1 +33880,1429595,14,723,1 +33881,1429645,49,2493,1 +33882,1429920,37,1889,1 +33883,1429920,155,7760,1 +33884,1429920,186,9305,1 +33885,1429920,195,9799,1 +33886,1429950,68,3420,1 +33887,1429967,136,6806,1 +33888,1429992,2,123,1 +33889,1430006,81,4060,1 +33890,1430124,117,5882,1 +33891,1430400,8,448,1 +33892,1430401,146,7313,1 +33893,1430482,148,7435,1 +33894,1431379,156,7838,1 +33895,1431396,8,434,1 +33896,1431417,122,6137,1 +33897,1431433,173,8693,1 +33898,1431540,113,5696,1 +33899,1431840,170,8502,1 +33900,1431840,124,6218,1 +33901,1431841,105,5292,1 +33902,1431852,101,5093,1 +33903,1431861,89,4467,1 +33904,1431864,27,1382,1 +33905,1431864,82,4105,1 +33906,1431865,2,114,1 +33907,1431870,27,1389,1 +33908,1431877,102,5133,1 +33909,1431878,38,1910,1 +33910,1431906,156,7830,1 +33911,1431912,38,1919,1 +33912,1431925,187,9355,1 +33913,1431974,165,8277,1 +33914,1432350,195,9775,1 +33915,1432354,136,6850,1 +33916,1432357,195,9777,1 +33917,1432362,139,6996,1 +33918,1432368,4,233,1 +33919,1432380,185,9292,1 +33920,1432383,58,2902,1 +33921,1432429,125,6271,1 +33922,1432807,16,825,1 +33923,1432857,1,84,1 +33924,1432861,179,8966,1 +33925,1432872,22,1124,1 +33926,1432896,84,4226,1 +33927,1432980,23,1184,1 +33928,1433280,85,4260,1 +33929,1433280,94,4709,1 +33930,1433292,148,7429,1 +33931,1433293,67,3387,1 +33932,1433293,150,7536,1 +33933,1433304,183,9193,1 +33934,1433318,79,3994,1 +33935,1433320,164,8242,1 +33936,1433328,71,3572,1 +33937,1433341,125,6266,1 +33938,1433352,19,988,1 +33939,1433424,18,906,1 +33940,1433436,150,7501,1 +33941,1433449,91,4564,1 +33942,1433472,21,1099,1 +33943,1433772,191,9555,1 +33944,1433775,55,2777,1 +33945,1433784,28,1438,1 +33946,1433832,24,1240,1 +33947,1433844,28,1443,1 +33948,1433892,13,685,1 +33949,1434000,42,2102,1 +33950,1434732,14,717,1 +33951,1434757,74,3715,1 +33952,1434768,6,337,1 +33953,1435210,168,8412,1 +33954,1435221,118,5936,1 +33955,1435227,13,687,1 +33956,1435285,117,5852,1 +33957,1435680,99,4977,1 +33958,1435680,122,6148,1 +33959,1435680,95,4786,1 +33960,1435681,52,2619,1 +33961,1435681,190,9541,1 +33962,1435692,47,2382,1 +33963,1435695,144,7233,1 +33964,1435704,32,1603,1 +33965,1435708,178,8946,1 +33966,1435713,7,375,1 +33967,1435728,40,2036,1 +33968,1435740,151,7594,1 +33969,1435758,121,6071,1 +33970,1435777,191,9599,1 +33971,1435824,140,7017,1 +33972,1435867,131,6593,1 +33973,1435958,166,8329,1 +33974,1437145,134,6724,1 +33975,1437330,108,5426,1 +33976,1438080,128,6438,1 +33977,1438104,8,427,1 +33978,1438135,163,8167,1 +33979,1438176,40,2013,1 +33980,1438560,102,5126,1 +33981,1438560,43,2190,1 +33982,1438560,148,7449,1 +33983,1438560,114,5712,1 +33984,1438560,41,2056,1 +33985,1438560,127,6376,1 +33986,1438560,22,1128,1 +33987,1438560,146,7304,1 +33988,1438560,3,172,1 +33989,1438561,112,5605,1 +33990,1438561,103,5153,1 +33991,1438561,15,776,1 +33992,1438561,159,7996,1 +33993,1438561,37,1851,1 +33994,1438561,180,9037,1 +33995,1438562,2,125,1 +33996,1438563,196,9808,1 +33997,1438564,58,2903,1 +33998,1438565,167,8367,1 +33999,1438566,163,8188,1 +34000,1438566,54,2705,1 +34001,1438566,59,2985,1 +34002,1438567,64,3207,1 +34003,1438567,90,4505,1 +34004,1438569,155,7756,1 +34005,1438569,94,4725,1 +34006,1438572,191,9573,1 +34007,1438572,41,2086,1 +34008,1438572,94,4725,1 +34009,1438572,1,89,1 +34010,1438572,126,6305,1 +34011,1438572,73,3651,1 +34012,1438572,154,7722,1 +34013,1438572,48,2447,1 +34014,1438572,92,4609,1 +34015,1438572,182,9147,1 +34016,1438572,74,3701,1 +34017,1438572,39,1953,1 +34018,1438572,4,233,1 +34019,1438572,79,3963,1 +34020,1438573,10,509,1 +34021,1438573,111,5552,1 +34022,1438573,179,8975,1 +34023,1438573,149,7457,1 +34024,1438574,129,6458,1 +34025,1438575,170,8527,1 +34026,1438578,124,6245,1 +34027,1438579,166,8338,1 +34028,1438579,80,4021,1 +34029,1438580,121,6076,1 +34030,1438581,96,4839,1 +34031,1438581,182,9104,1 +34032,1438584,30,1534,1 +34033,1438584,11,583,1 +34034,1438584,195,9753,1 +34035,1438584,30,1516,1 +34036,1438584,66,3328,1 +34037,1438584,24,1205,1 +34038,1438584,25,1284,1 +34039,1438584,146,7334,1 +34040,1438584,44,2222,1 +34041,1438584,107,5380,1 +34042,1438585,89,4489,1 +34043,1438585,86,4341,1 +34044,1438587,37,1855,1 +34045,1438587,111,5598,1 +34046,1438587,94,4739,1 +34047,1438588,83,4169,1 +34048,1438588,104,5247,1 +34049,1438590,66,3328,1 +34050,1438590,145,7286,1 +34051,1438591,166,8336,1 +34052,1438594,136,6810,1 +34053,1438596,178,8916,1 +34054,1438596,172,8604,1 +34055,1438596,197,9873,1 +34056,1438596,74,3713,1 +34057,1438596,64,3226,1 +34058,1438597,75,3781,1 +34059,1438598,183,9197,1 +34060,1438598,191,9562,1 +34061,1438598,180,9019,1 +34062,1438598,4,250,1 +34063,1438599,89,4500,1 +34064,1438599,62,3118,1 +34065,1438602,126,6319,1 +34066,1438603,35,1793,1 +34067,1438605,66,3326,1 +34068,1438606,156,7846,1 +34069,1438608,19,974,1 +34070,1438608,26,1349,1 +34071,1438608,159,7961,1 +34072,1438608,18,928,1 +34073,1438608,168,8408,1 +34074,1438609,194,9714,1 +34075,1438609,12,642,1 +34076,1438609,105,5264,1 +34077,1438609,171,8581,1 +34078,1438609,63,3161,1 +34079,1438611,188,9447,1 +34080,1438611,62,3145,1 +34081,1438614,13,661,1 +34082,1438615,93,4655,1 +34083,1438616,160,8018,1 +34084,1438617,151,7561,1 +34085,1438620,46,2304,1 +34086,1438620,70,3517,1 +34087,1438620,68,3449,1 +34088,1438620,28,1409,1 +34089,1438620,23,1193,1 +34090,1438620,29,1475,1 +34091,1438620,148,7425,1 +34092,1438620,126,6310,1 +34093,1438622,155,7755,1 +34094,1438623,5,266,1 +34095,1438632,164,8245,1 +34096,1438632,150,7541,1 +34097,1438632,126,6330,1 +34098,1438632,137,6865,1 +34099,1438632,160,8049,1 +34100,1438633,114,5740,1 +34101,1438633,100,5048,1 +34102,1438634,132,6624,1 +34103,1438635,90,4540,1 +34104,1438635,172,8644,1 +34105,1438637,168,8450,1 +34106,1438638,145,7281,1 +34107,1438641,177,8868,1 +34108,1438641,139,6990,1 +34109,1438642,25,1254,1 +34110,1438643,85,4295,1 +34111,1438644,127,6361,1 +34112,1438644,157,7899,1 +34113,1438644,84,4229,1 +34114,1438647,198,9901,1 +34115,1438650,47,2375,1 +34116,1438654,20,1012,1 +34117,1438655,40,2044,1 +34118,1438656,195,9756,1 +34119,1438656,152,7615,1 +34120,1438658,30,1521,1 +34121,1438658,97,4856,1 +34122,1438659,176,8845,1 +34123,1438659,181,9091,1 +34124,1438668,20,1025,1 +34125,1438668,141,7069,1 +34126,1438673,154,7749,1 +34127,1438680,99,4984,1 +34128,1438680,49,2486,1 +34129,1438680,5,292,1 +34130,1438680,163,8189,1 +34131,1438682,173,8698,1 +34132,1438689,169,8455,1 +34133,1438692,92,4615,1 +34134,1438693,186,9315,1 +34135,1438695,168,8420,1 +34136,1438701,121,6086,1 +34137,1438704,86,4312,1 +34138,1438710,121,6077,1 +34139,1438716,57,2877,1 +34140,1438717,6,349,1 +34141,1438728,62,3147,1 +34142,1438729,166,8322,1 +34143,1438767,10,508,1 +34144,1438770,4,219,1 +34145,1438788,144,7250,1 +34146,1438797,186,9309,1 +34147,1438800,0,43,1 +34148,1438837,37,1898,1 +34149,1439040,34,1722,1 +34150,1439064,15,799,1 +34151,1439065,179,8991,1 +34152,1439571,192,9621,1 +34153,1440041,44,2234,1 +34154,1440481,73,3679,1 +34155,1440482,86,4320,1 +34156,1440492,150,7534,1 +34157,1440492,115,5776,1 +34158,1440493,197,9895,1 +34159,1440493,112,5627,1 +34160,1440505,1,90,1 +34161,1440516,135,6775,1 +34162,1440517,117,5879,1 +34163,1440520,61,3091,1 +34164,1440541,188,9429,1 +34165,1440542,160,8005,1 +34166,1440548,5,298,1 +34167,1440552,105,5296,1 +34168,1440553,0,16,1 +34169,1440564,163,8154,1 +34170,1440585,15,799,1 +34171,1440600,141,7069,1 +34172,1440622,137,6880,1 +34173,1440708,51,2588,1 +34174,1440972,75,3759,1 +34175,1440984,158,7946,1 +34176,1441478,22,1131,1 +34177,1441482,127,6384,1 +34178,1441495,47,2356,1 +34179,1441921,178,8913,1 +34180,1441926,46,2333,1 +34181,1441950,81,4096,1 +34182,1442400,57,2887,1 +34183,1442404,72,3602,1 +34184,1442407,172,8627,1 +34185,1442413,94,4730,1 +34186,1442415,186,9347,1 +34187,1442439,181,9071,1 +34188,1442462,58,2914,1 +34189,1442473,182,9106,1 +34190,1442571,7,362,1 +34191,1442892,187,9394,1 +34192,1442898,76,3802,1 +34193,1442958,196,9845,1 +34194,1442968,128,6405,1 +34195,1442991,45,2255,1 +34196,1443384,195,9772,1 +34197,1443396,26,1325,1 +34198,1443865,47,2370,1 +34199,1443876,20,1004,1 +34200,1443915,146,7333,1 +34201,1444060,161,8070,1 +34202,1444320,40,2030,1 +34203,1444321,33,1676,1 +34204,1444333,173,8653,1 +34205,1444346,15,792,1 +34206,1444348,27,1397,1 +34207,1444353,187,9396,1 +34208,1444359,180,9004,1 +34209,1444365,108,5407,1 +34210,1444368,173,8663,1 +34211,1444389,40,2022,1 +34212,1444404,186,9304,1 +34213,1444423,101,5082,1 +34214,1444441,160,8025,1 +34215,1444464,14,715,1 +34216,1444722,154,7747,1 +34217,1444801,55,2790,1 +34218,1444803,159,7996,1 +34219,1444819,117,5866,1 +34220,1444873,104,5213,1 +34221,1445767,62,3111,1 +34222,1445772,165,8289,1 +34223,1445796,112,5606,1 +34224,1445832,162,8134,1 +34225,1445832,114,5741,1 +34226,1445913,19,952,1 +34227,1446240,5,271,1 +34228,1446244,4,229,1 +34229,1446251,47,2358,1 +34230,1446253,163,8157,1 +34231,1446262,155,7756,1 +34232,1446264,11,588,1 +34233,1446270,168,8450,1 +34234,1446273,116,5837,1 +34235,1446276,161,8064,1 +34236,1446288,68,3450,1 +34237,1446446,155,7757,1 +34238,1446744,87,4358,1 +34239,1446745,98,4936,1 +34240,1446750,49,2494,1 +34241,1446762,168,8431,1 +34242,1446766,190,9517,1 +34243,1446784,15,795,1 +34244,1446793,11,556,1 +34245,1446816,110,5508,1 +34246,1446897,135,6774,1 +34247,1447211,154,7707,1 +34248,1447225,107,5382,1 +34249,1447225,67,3395,1 +34250,1447230,83,4162,1 +34251,1447251,80,4003,1 +34252,1447262,48,2412,1 +34253,1447266,44,2242,1 +34254,1447272,71,3580,1 +34255,1447308,36,1831,1 +34256,1448160,14,721,1 +34257,1448242,36,1824,1 +34258,1448641,92,4650,1 +34259,1448653,155,7764,1 +34260,1448655,41,2066,1 +34261,1448676,52,2627,1 +34262,1448679,37,1889,1 +34263,1448688,180,9023,1 +34264,1448714,4,220,1 +34265,1448773,141,7075,1 +34266,1449120,135,6765,1 +34267,1449120,63,3168,1 +34268,1449123,39,1984,1 +34269,1449130,120,6028,1 +34270,1449132,127,6363,1 +34271,1449141,186,9344,1 +34272,1449144,81,4077,1 +34273,1449146,121,6076,1 +34274,1449147,178,8932,1 +34275,1449151,87,4388,1 +34276,1449156,131,6574,1 +34277,1449157,63,3173,1 +34278,1449157,190,9505,1 +34279,1449158,59,2998,1 +34280,1449166,183,9195,1 +34281,1449170,114,5704,1 +34282,1449171,168,8431,1 +34283,1449181,103,5157,1 +34284,1449188,41,2100,1 +34285,1449204,115,5789,1 +34286,1449204,64,3227,1 +34287,1449217,172,8620,1 +34288,1449217,17,852,1 +34289,1449236,103,5199,1 +34290,1449372,166,8314,1 +34291,1449609,57,2876,1 +34292,1449639,175,8781,1 +34293,1449648,12,616,1 +34294,1449648,193,9696,1 +34295,1449661,101,5055,1 +34296,1450080,118,5908,1 +34297,1450092,58,2906,1 +34298,1450095,75,3777,1 +34299,1450105,171,8557,1 +34300,1450105,2,130,1 +34301,1450170,155,7784,1 +34302,1450190,111,5568,1 +34303,1450479,159,7955,1 +34304,1451049,182,9142,1 +34305,1451052,72,3618,1 +34306,1451062,12,626,1 +34307,1451094,154,7705,1 +34308,1452000,116,5846,1 +34309,1452006,161,8075,1 +34310,1452012,91,4564,1 +34311,1452012,123,6153,1 +34312,1452024,5,254,1 +34313,1452030,8,444,1 +34314,1452037,97,4874,1 +34315,1452108,124,6216,1 +34316,1452480,39,1961,1 +34317,1452484,49,2491,1 +34318,1452516,105,5255,1 +34319,1452518,53,2662,1 +34320,1452528,184,9211,1 +34321,1452543,81,4099,1 +34322,1452960,109,5468,1 +34323,1452972,119,5999,1 +34324,1452974,10,534,1 +34325,1452978,131,6553,1 +34326,1453020,188,9422,1 +34327,1453057,4,232,1 +34328,1453092,132,6636,1 +34329,1453092,5,257,1 +34330,1453442,31,1593,1 +34331,1453454,139,6988,1 +34332,1453464,120,6020,1 +34333,1453465,149,7490,1 +34334,1453476,125,6259,1 +34335,1453489,183,9161,1 +34336,1453500,79,3991,1 +34337,1453500,196,9828,1 +34338,1453500,163,8173,1 +34339,1453524,107,5374,1 +34340,1453527,168,8441,1 +34341,1453572,11,590,1 +34342,1453584,123,6153,1 +34343,1453605,68,3445,1 +34344,1454400,76,3837,1 +34345,1454400,23,1153,1 +34346,1454401,100,5026,1 +34347,1454412,29,1479,1 +34348,1454412,123,6182,1 +34349,1454413,19,991,1 +34350,1454421,132,6629,1 +34351,1454442,188,9404,1 +34352,1454463,89,4465,1 +34353,1454486,108,5423,1 +34354,1454529,41,2056,1 +34355,1454544,131,6597,1 +34356,1454881,42,2128,1 +34357,1454899,47,2364,1 +34358,1455012,109,5456,1 +34359,1455360,150,7508,1 +34360,1455372,116,5842,1 +34361,1455384,174,8730,1 +34362,1455385,66,3335,1 +34363,1455420,59,2987,1 +34364,1455865,80,4007,1 +34365,1455876,169,8496,1 +34366,1455877,177,8852,1 +34367,1455907,170,8529,1 +34368,1456368,151,7582,1 +34369,1456800,7,381,1 +34370,1456813,176,8804,1 +34371,1456828,53,2664,1 +34372,1456836,1,63,1 +34373,1456909,132,6614,1 +34374,1457281,97,4870,1 +34375,1457283,128,6418,1 +34376,1457292,38,1945,1 +34377,1457292,13,655,1 +34378,1457316,41,2077,1 +34379,1457321,89,4452,1 +34380,1457328,151,7559,1 +34381,1457337,70,3510,1 +34382,1457354,84,4207,1 +34383,1457358,151,7561,1 +34384,1457364,38,1916,1 +34385,1457400,101,5070,1 +34386,1457610,106,5309,1 +34387,1457869,162,8130,1 +34388,1458241,34,1722,1 +34389,1458251,162,8127,1 +34390,1458264,167,8398,1 +34391,1458265,134,6712,1 +34392,1458274,58,2927,1 +34393,1458290,164,8227,1 +34394,1458370,38,1901,1 +34395,1459308,2,147,1 +34396,1459689,156,7803,1 +34397,1459692,136,6808,1 +34398,1459692,98,4949,1 +34399,1459693,84,4223,1 +34400,1459701,169,8500,1 +34401,1459704,152,7624,1 +34402,1459717,104,5232,1 +34403,1459752,124,6234,1 +34404,1459776,45,2292,1 +34405,1459788,178,8942,1 +34406,1460161,28,1438,1 +34407,1460172,27,1399,1 +34408,1460187,178,8901,1 +34409,1460256,14,730,1 +34410,1460328,80,4033,1 +34411,1460808,54,2746,1 +34412,1460874,135,6789,1 +34413,1461132,77,3865,1 +34414,1461132,191,9561,1 +34415,1461150,88,4433,1 +34416,1461182,193,9659,1 +34417,1461612,18,931,1 +34418,1461697,157,7854,1 +34419,1461705,191,9588,1 +34420,1462152,14,745,1 +34421,1462152,137,6892,1 +34422,1462172,142,7125,1 +34423,1462177,119,5959,1 +34424,1462599,55,2788,1 +34425,1463040,182,9104,1 +34426,1463040,192,9611,1 +34427,1463041,28,1426,1 +34428,1463041,48,2436,1 +34429,1463044,178,8935,1 +34430,1463046,89,4473,1 +34431,1463046,14,717,1 +34432,1463052,96,4813,1 +34433,1463052,28,1430,1 +34434,1463052,52,2616,1 +34435,1463052,164,8225,1 +34436,1463052,35,1794,1 +34437,1463053,146,7331,1 +34438,1463053,185,9274,1 +34439,1463055,159,7955,1 +34440,1463058,184,9205,1 +34441,1463058,176,8829,1 +34442,1463061,127,6354,1 +34443,1463064,151,7567,1 +34444,1463064,32,1630,1 +34445,1463064,90,4549,1 +34446,1463065,157,7860,1 +34447,1463067,28,1440,1 +34448,1463070,44,2208,1 +34449,1463070,149,7468,1 +34450,1463079,168,8429,1 +34451,1463098,9,451,1 +34452,1463100,51,2598,1 +34453,1463101,126,6306,1 +34454,1463106,196,9822,1 +34455,1463106,51,2580,1 +34456,1463115,89,4485,1 +34457,1463118,64,3213,1 +34458,1463124,6,316,1 +34459,1463124,110,5503,1 +34460,1463125,134,6745,1 +34461,1463127,135,6762,1 +34462,1463136,33,1698,1 +34463,1463139,130,6506,1 +34464,1463140,59,2958,1 +34465,1463145,18,928,1 +34466,1463150,171,8554,1 +34467,1463151,9,485,1 +34468,1463165,63,3168,1 +34469,1463198,198,9946,1 +34470,1463208,126,6306,1 +34471,1463246,6,336,1 +34472,1463256,118,5941,1 +34473,1463268,93,4660,1 +34474,1463304,117,5868,1 +34475,1463328,195,9793,1 +34476,1463520,124,6227,1 +34477,1463522,31,1565,1 +34478,1463532,185,9292,1 +34479,1463532,121,6088,1 +34480,1463532,185,9272,1 +34481,1463544,8,441,1 +34482,1463556,32,1625,1 +34483,1463556,155,7777,1 +34484,1463568,36,1844,1 +34485,1463577,152,7608,1 +34486,1463582,81,4086,1 +34487,1463586,12,634,1 +34488,1463589,172,8620,1 +34489,1463590,183,9158,1 +34490,1463592,22,1119,1 +34491,1463595,177,8876,1 +34492,1463616,29,1458,1 +34493,1463652,174,8702,1 +34494,1463661,182,9115,1 +34495,1463676,77,3879,1 +34496,1463676,132,6645,1 +34497,1463712,22,1117,1 +34498,1464000,88,4444,1 +34499,1464010,88,4420,1 +34500,1464012,61,3078,1 +34501,1464012,98,4932,1 +34502,1464020,114,5715,1 +34503,1464048,110,5532,1 +34504,1464057,89,4462,1 +34505,1464060,67,3362,1 +34506,1464073,146,7309,1 +34507,1464096,76,3847,1 +34508,1464133,1,70,1 +34509,1464133,51,2587,1 +34510,1464167,126,6315,1 +34511,1464250,35,1752,1 +34512,1464480,166,8343,1 +34513,1464963,157,7877,1 +34514,1465032,72,3628,1 +34515,1465176,91,4561,1 +34516,1465188,7,387,1 +34517,1465440,156,7824,1 +34518,1465440,167,8383,1 +34519,1465440,12,642,1 +34520,1465441,41,2073,1 +34521,1465441,41,2079,1 +34522,1465442,108,5422,1 +34523,1465443,26,1327,1 +34524,1465443,104,5203,1 +34525,1465443,153,7695,1 +34526,1465443,149,7469,1 +34527,1465444,65,3284,1 +34528,1465448,150,7550,1 +34529,1465449,29,1456,1 +34530,1465452,66,3350,1 +34531,1465453,45,2276,1 +34532,1465454,102,5104,1 +34533,1465455,22,1115,1 +34534,1465456,83,4188,1 +34535,1465464,5,273,1 +34536,1465464,124,6247,1 +34537,1465465,134,6728,1 +34538,1465465,193,9660,1 +34539,1465470,15,756,1 +34540,1465473,53,2659,1 +34541,1465473,17,889,1 +34542,1465476,32,1621,1 +34543,1465477,124,6206,1 +34544,1465477,8,420,1 +34545,1465482,110,5508,1 +34546,1465488,114,5738,1 +34547,1465489,73,3692,1 +34548,1465491,141,7089,1 +34549,1465494,142,7128,1 +34550,1465500,74,3733,1 +34551,1465503,59,2992,1 +34552,1465506,61,3068,1 +34553,1465508,102,5115,1 +34554,1465510,164,8237,1 +34555,1465513,177,8870,1 +34556,1465539,35,1752,1 +34557,1465560,194,9747,1 +34558,1465579,114,5739,1 +34559,1465598,117,5877,1 +34560,1465605,111,5554,1 +34561,1465665,75,3757,1 +34562,1465669,28,1406,1 +34563,1465948,60,3031,1 +34564,1465950,69,3464,1 +34565,1465953,157,7888,1 +34566,1465956,128,6421,1 +34567,1465956,57,2855,1 +34568,1465960,88,4448,1 +34569,1466013,111,5569,1 +34570,1466016,150,7514,1 +34571,1466019,149,7454,1 +34572,1466028,124,6242,1 +34573,1466040,87,4369,1 +34574,1466400,102,5125,1 +34575,1466405,118,5912,1 +34576,1466409,50,2546,1 +34577,1466412,95,4789,1 +34578,1466413,7,382,1 +34579,1466423,66,3322,1 +34580,1466424,162,8115,1 +34581,1466424,167,8397,1 +34582,1466425,120,6024,1 +34583,1466460,111,5561,1 +34584,1466469,33,1673,1 +34585,1466496,125,6268,1 +34586,1466521,63,3154,1 +34587,1466880,110,5521,1 +34588,1466881,131,6566,1 +34589,1466884,173,8675,1 +34590,1466892,116,5849,1 +34591,1466892,11,564,1 +34592,1466893,53,2687,1 +34593,1466895,32,1638,1 +34594,1466909,186,9323,1 +34595,1466914,165,8290,1 +34596,1466919,86,4319,1 +34597,1466928,21,1056,1 +34598,1466928,80,4007,1 +34599,1466941,130,6550,1 +34600,1466946,154,7750,1 +34601,1466953,52,2629,1 +34602,1466964,98,4907,1 +34603,1466968,156,7807,1 +34604,1466989,193,9697,1 +34605,1467010,192,9616,1 +34606,1467045,136,6841,1 +34607,1467063,107,5379,1 +34608,1467363,182,9136,1 +34609,1467382,171,8584,1 +34610,1467387,43,2184,1 +34611,1467393,2,117,1 +34612,1467396,137,6854,1 +34613,1467417,40,2040,1 +34614,1467433,175,8771,1 +34615,1467486,129,6474,1 +34616,1467492,154,7727,1 +34617,1467840,18,947,1 +34618,1467842,126,6333,1 +34619,1467846,8,449,1 +34620,1467849,115,5800,1 +34621,1467852,154,7745,1 +34622,1467876,107,5376,1 +34623,1467877,79,3985,1 +34624,1467923,76,3803,1 +34625,1467928,65,3282,1 +34626,1467936,130,6550,1 +34627,1467948,4,207,1 +34628,1467984,129,6457,1 +34629,1468320,6,350,1 +34630,1468323,76,3844,1 +34631,1468332,173,8696,1 +34632,1468344,147,7371,1 +34633,1468380,187,9391,1 +34634,1468405,39,1979,1 +34635,1468464,106,5341,1 +34636,1468800,180,9040,1 +34637,1468824,164,8235,1 +34638,1468836,52,2633,1 +34639,1468872,40,2014,1 +34640,1468872,26,1303,1 +34641,1468884,150,7546,1 +34642,1468896,15,794,1 +34643,1469314,172,8637,1 +34644,1469365,80,4026,1 +34645,1469436,115,5786,1 +34646,1470244,181,9070,1 +34647,1470252,58,2926,1 +34648,1470252,181,9089,1 +34649,1470252,22,1102,1 +34650,1470255,121,6073,1 +34651,1470255,133,6696,1 +34652,1470264,187,9373,1 +34653,1470264,26,1306,1 +34654,1470276,168,8445,1 +34655,1470280,114,5736,1 +34656,1470282,107,5368,1 +34657,1470289,79,3967,1 +34658,1470300,92,4607,1 +34659,1470304,147,7360,1 +34660,1470327,139,6995,1 +34661,1470350,112,5617,1 +34662,1470361,94,4735,1 +34663,1470376,15,786,1 +34664,1470408,91,4590,1 +34665,1470517,35,1782,1 +34666,1470720,113,5674,1 +34667,1470721,32,1624,1 +34668,1470732,145,7275,1 +34669,1470734,181,9076,1 +34670,1470735,80,4008,1 +34671,1470739,128,6402,1 +34672,1470740,186,9330,1 +34673,1470741,21,1066,1 +34674,1470757,160,8049,1 +34675,1470758,61,3064,1 +34676,1470771,111,5563,1 +34677,1470774,29,1456,1 +34678,1470779,114,5737,1 +34679,1470792,36,1816,1 +34680,1470793,49,2452,1 +34681,1470804,39,1953,1 +34682,1470804,115,5767,1 +34683,1470816,12,606,1 +34684,1470825,153,7681,1 +34685,1471200,49,2485,1 +34686,1471680,195,9797,1 +34687,1471681,100,5018,1 +34688,1471683,48,2447,1 +34689,1471689,189,9500,1 +34690,1471692,179,8991,1 +34691,1471692,58,2929,1 +34692,1471693,5,291,1 +34693,1471693,154,7747,1 +34694,1471695,31,1585,1 +34695,1471698,135,6795,1 +34696,1471702,193,9687,1 +34697,1471704,97,4867,1 +34698,1471705,35,1771,1 +34699,1471706,157,7854,1 +34700,1471710,63,3180,1 +34701,1471717,109,5496,1 +34702,1471731,50,2543,1 +34703,1471740,112,5646,1 +34704,1471754,146,7312,1 +34705,1471765,30,1518,1 +34706,1471776,129,6482,1 +34707,1471777,78,3944,1 +34708,1471777,146,7325,1 +34709,1471818,87,4357,1 +34710,1472160,122,6135,1 +34711,1472160,13,684,1 +34712,1472161,199,9982,1 +34713,1472161,61,3090,1 +34714,1472161,81,4073,1 +34715,1472163,115,5791,1 +34716,1472163,17,882,1 +34717,1472172,90,4534,1 +34718,1472173,96,4821,1 +34719,1472173,184,9206,1 +34720,1472173,151,7565,1 +34721,1472173,0,10,1 +34722,1472173,72,3626,1 +34723,1472175,54,2736,1 +34724,1472178,13,684,1 +34725,1472181,110,5520,1 +34726,1472184,188,9431,1 +34727,1472190,140,7033,1 +34728,1472193,63,3190,1 +34729,1472196,61,3054,1 +34730,1472196,169,8469,1 +34731,1472196,101,5067,1 +34732,1472197,162,8116,1 +34733,1472202,124,6203,1 +34734,1472208,80,4047,1 +34735,1472208,108,5427,1 +34736,1472209,163,8199,1 +34737,1472209,166,8344,1 +34738,1472210,174,8729,1 +34739,1472220,33,1673,1 +34740,1472220,95,4769,1 +34741,1472221,157,7900,1 +34742,1472221,100,5031,1 +34743,1472232,191,9562,1 +34744,1472233,103,5181,1 +34745,1472244,16,810,1 +34746,1472268,120,6030,1 +34747,1472271,110,5536,1 +34748,1472272,194,9741,1 +34749,1472289,142,7105,1 +34750,1472292,130,6510,1 +34751,1472294,13,658,1 +34752,1472311,135,6767,1 +34753,1472335,48,2439,1 +34754,1472364,139,6981,1 +34755,1472400,133,6669,1 +34756,1472640,176,8815,1 +34757,1472640,79,3962,1 +34758,1472641,167,8386,1 +34759,1472652,182,9105,1 +34760,1472653,52,2639,1 +34761,1472664,123,6154,1 +34762,1472688,178,8914,1 +34763,1472700,130,6503,1 +34764,1472712,95,4790,1 +34765,1472739,100,5009,1 +34766,1473120,198,9907,1 +34767,1473132,127,6380,1 +34768,1473134,153,7672,1 +34769,1473134,72,3635,1 +34770,1473144,3,184,1 +34771,1473145,91,4572,1 +34772,1473153,143,7182,1 +34773,1473170,121,6063,1 +34774,1473192,50,2542,1 +34775,1473216,47,2351,1 +34776,1473240,68,3444,1 +34777,1474156,72,3649,1 +34778,1474560,41,2063,1 +34779,1474560,163,8164,1 +34780,1474560,169,8473,1 +34781,1474560,175,8759,1 +34782,1474563,115,5760,1 +34783,1474584,137,6874,1 +34784,1474584,15,777,1 +34785,1474584,120,6037,1 +34786,1474584,138,6901,1 +34787,1474584,87,4379,1 +34788,1474584,66,3324,1 +34789,1474585,172,8643,1 +34790,1474593,79,3998,1 +34791,1474596,112,5629,1 +34792,1474596,91,4571,1 +34793,1474596,19,965,1 +34794,1474598,154,7718,1 +34795,1474608,66,3317,1 +34796,1474615,48,2412,1 +34797,1474620,67,3389,1 +34798,1474620,50,2540,1 +34799,1474620,172,8637,1 +34800,1474623,149,7474,1 +34801,1474623,61,3056,1 +34802,1474632,193,9686,1 +34803,1474645,29,1482,1 +34804,1474669,69,3465,1 +34805,1474692,100,5006,1 +34806,1474849,14,714,1 +34807,1475568,88,4444,1 +34808,1475580,23,1177,1 +34809,1475640,44,2227,1 +34810,1476480,42,2140,1 +34811,1476506,148,7415,1 +34812,1476507,95,4751,1 +34813,1476516,54,2725,1 +34814,1476520,29,1456,1 +34815,1476554,193,9698,1 +34816,1476564,199,9984,1 +34817,1476964,148,7441,1 +34818,1476965,24,1212,1 +34819,1476966,199,9989,1 +34820,1476972,14,734,1 +34821,1476972,37,1867,1 +34822,1476973,195,9777,1 +34823,1476984,137,6858,1 +34824,1476984,16,830,1 +34825,1476996,129,6473,1 +34826,1476999,43,2167,1 +34827,1477011,38,1912,1 +34828,1477044,105,5292,1 +34829,1477053,14,718,1 +34830,1477070,195,9759,1 +34831,1477077,154,7725,1 +34832,1477452,55,2771,1 +34833,1477920,179,8980,1 +34834,1477921,118,5949,1 +34835,1477922,86,4328,1 +34836,1477923,145,7267,1 +34837,1477926,3,198,1 +34838,1477933,21,1074,1 +34839,1477933,71,3585,1 +34840,1477938,168,8406,1 +34841,1477960,121,6065,1 +34842,1477969,33,1689,1 +34843,1477980,8,405,1 +34844,1477980,114,5705,1 +34845,1478007,101,5080,1 +34846,1478400,20,1034,1 +34847,1478404,56,2831,1 +34848,1478412,10,546,1 +34849,1478412,49,2476,1 +34850,1478425,179,8987,1 +34851,1478433,51,2584,1 +34852,1478436,1,98,1 +34853,1478448,147,7380,1 +34854,1478461,176,8848,1 +34855,1478928,180,9028,1 +34856,1479360,184,9241,1 +34857,1479372,77,3852,1 +34858,1479379,9,473,1 +34859,1479427,22,1137,1 +34860,1479444,139,6976,1 +34861,1479459,28,1450,1 +34862,1479496,59,2971,1 +34863,1479516,11,565,1 +34864,1480800,76,3827,1 +34865,1480800,198,9918,1 +34866,1480800,69,3463,1 +34867,1480800,150,7535,1 +34868,1480800,3,176,1 +34869,1480800,145,7295,1 +34870,1480800,163,8178,1 +34871,1480800,71,3592,1 +34872,1480800,23,1160,1 +34873,1480800,168,8437,1 +34874,1480800,164,8241,1 +34875,1480800,81,4074,1 +34876,1480801,14,733,1 +34877,1480801,197,9881,1 +34878,1480801,83,4169,1 +34879,1480802,39,1987,1 +34880,1480803,44,2224,1 +34881,1480803,126,6302,1 +34882,1480803,184,9247,1 +34883,1480805,138,6936,1 +34884,1480807,33,1692,1 +34885,1480812,56,2819,1 +34886,1480812,195,9753,1 +34887,1480812,76,3840,1 +34888,1480812,5,285,1 +34889,1480812,108,5442,1 +34890,1480812,174,8722,1 +34891,1480812,43,2181,1 +34892,1480813,59,2954,1 +34893,1480813,170,8514,1 +34894,1480814,77,3891,1 +34895,1480814,7,389,1 +34896,1480817,182,9113,1 +34897,1480818,127,6368,1 +34898,1480818,183,9187,1 +34899,1480819,113,5654,1 +34900,1480822,3,188,1 +34901,1480824,16,801,1 +34902,1480824,93,4687,1 +34903,1480824,125,6282,1 +34904,1480824,25,1275,1 +34905,1480824,147,7355,1 +34906,1480825,146,7330,1 +34907,1480825,80,4021,1 +34908,1480829,65,3294,1 +34909,1480830,172,8619,1 +34910,1480834,25,1288,1 +34911,1480836,61,3056,1 +34912,1480836,151,7581,1 +34913,1480836,78,3915,1 +34914,1480836,72,3630,1 +34915,1480836,144,7248,1 +34916,1480837,4,205,1 +34917,1480837,0,31,1 +34918,1480839,100,5005,1 +34919,1480841,2,122,1 +34920,1480848,199,9999,1 +34921,1480848,66,3324,1 +34922,1480848,109,5470,1 +34923,1480848,183,9188,1 +34924,1480849,50,2534,1 +34925,1480851,61,3091,1 +34926,1480852,185,9265,1 +34927,1480860,130,6544,1 +34928,1480860,187,9380,1 +34929,1480860,192,9617,1 +34930,1480860,18,901,1 +34931,1480861,142,7107,1 +34932,1480863,183,9175,1 +34933,1480872,65,3271,1 +34934,1480872,88,4414,1 +34935,1480872,42,2119,1 +34936,1480873,7,357,1 +34937,1480877,103,5178,1 +34938,1480878,121,6091,1 +34939,1480881,62,3124,1 +34940,1480885,130,6522,1 +34941,1480887,112,5649,1 +34942,1480890,64,3237,1 +34943,1480893,105,5256,1 +34944,1480897,64,3218,1 +34945,1480903,44,2224,1 +34946,1480909,11,591,1 +34947,1480918,73,3691,1 +34948,1480921,107,5390,1 +34949,1480929,189,9457,1 +34950,1480932,22,1133,1 +34951,1480933,95,4794,1 +34952,1480941,57,2863,1 +34953,1480944,144,7218,1 +34954,1480949,198,9934,1 +34955,1480970,194,9714,1 +34956,1480981,129,6458,1 +34957,1480983,167,8373,1 +34958,1481222,91,4559,1 +34959,1482240,188,9442,1 +34960,1482240,46,2308,1 +34961,1482240,73,3658,1 +34962,1482240,79,3985,1 +34963,1482240,76,3834,1 +34964,1482240,86,4311,1 +34965,1482240,155,7775,1 +34966,1482240,162,8141,1 +34967,1482240,33,1677,1 +34968,1482240,106,5308,1 +34969,1482241,40,2048,1 +34970,1482241,51,2594,1 +34971,1482242,114,5705,1 +34972,1482242,72,3644,1 +34973,1482243,106,5322,1 +34974,1482244,43,2192,1 +34975,1482247,181,9090,1 +34976,1482247,169,8486,1 +34977,1482248,130,6522,1 +34978,1482252,71,3582,1 +34979,1482252,5,265,1 +34980,1482252,15,800,1 +34981,1482252,72,3619,1 +34982,1482252,143,7181,1 +34983,1482252,137,6877,1 +34984,1482252,79,3954,1 +34985,1482253,98,4950,1 +34986,1482253,21,1082,1 +34987,1482256,126,6310,1 +34988,1482258,69,3462,1 +34989,1482258,60,3045,1 +34990,1482264,190,9525,1 +34991,1482264,111,5588,1 +34992,1482264,74,3750,1 +34993,1482264,36,1838,1 +34994,1482264,12,639,1 +34995,1482264,131,6577,1 +34996,1482264,41,2081,1 +34997,1482264,157,7882,1 +34998,1482264,175,8788,1 +34999,1482264,119,5964,1 +35000,1482265,152,7636,1 +35001,1482265,42,2148,1 +35002,1482265,56,2844,1 +35003,1482266,129,6485,1 +35004,1482267,2,116,1 +35005,1482267,199,9976,1 +35006,1482270,53,2656,1 +35007,1482273,166,8305,1 +35008,1482273,197,9889,1 +35009,1482274,143,7194,1 +35010,1482274,196,9819,1 +35011,1482276,147,7392,1 +35012,1482276,162,8144,1 +35013,1482276,175,8790,1 +35014,1482276,105,5278,1 +35015,1482276,74,3740,1 +35016,1482276,171,8564,1 +35017,1482277,0,26,1 +35018,1482279,132,6614,1 +35019,1482280,87,4369,1 +35020,1482280,143,7152,1 +35021,1482288,10,542,1 +35022,1482289,77,3891,1 +35023,1482291,183,9187,1 +35024,1482291,49,2455,1 +35025,1482294,179,8968,1 +35026,1482294,79,3987,1 +35027,1482298,122,6103,1 +35028,1482300,66,3331,1 +35029,1482300,87,4395,1 +35030,1482301,107,5362,1 +35031,1482303,105,5263,1 +35032,1482304,64,3239,1 +35033,1482310,115,5768,1 +35034,1482312,154,7733,1 +35035,1482312,116,5844,1 +35036,1482312,145,7271,1 +35037,1482312,19,990,1 +35038,1482312,62,3121,1 +35039,1482312,40,2003,1 +35040,1482313,137,6870,1 +35041,1482314,30,1542,1 +35042,1482315,171,8572,1 +35043,1482315,45,2288,1 +35044,1482318,101,5055,1 +35045,1482318,108,5449,1 +35046,1482324,75,3757,1 +35047,1482324,73,3660,1 +35048,1482324,104,5201,1 +35049,1482333,123,6182,1 +35050,1482333,150,7520,1 +35051,1482336,98,4948,1 +35052,1482336,78,3936,1 +35053,1482337,27,1375,1 +35054,1482341,162,8134,1 +35055,1482345,128,6416,1 +35056,1482348,192,9612,1 +35057,1482348,7,379,1 +35058,1482349,168,8445,1 +35059,1482357,57,2868,1 +35060,1482369,78,3910,1 +35061,1482373,131,6576,1 +35062,1482381,0,21,1 +35063,1482381,101,5098,1 +35064,1482384,49,2460,1 +35065,1482405,108,5401,1 +35066,1482413,135,6783,1 +35067,1482427,196,9832,1 +35068,1482432,26,1344,1 +35069,1482433,153,7659,1 +35070,1482441,145,7275,1 +35071,1482456,53,2664,1 +35072,1482492,91,4565,1 +35073,1482505,45,2293,1 +35074,1482721,163,8175,1 +35075,1482732,96,4844,1 +35076,1482765,139,6954,1 +35077,1483201,49,2458,1 +35078,1483251,32,1614,1 +35079,1483296,183,9184,1 +35080,1483375,164,8247,1 +35081,1483734,65,3255,1 +35082,1483803,99,4964,1 +35083,1483848,183,9191,1 +35084,1484160,100,5040,1 +35085,1484160,80,4025,1 +35086,1484172,118,5925,1 +35087,1484176,108,5436,1 +35088,1484179,30,1547,1 +35089,1484187,35,1757,1 +35090,1484190,2,127,1 +35091,1484193,129,6496,1 +35092,1484233,170,8542,1 +35093,1484269,118,5932,1 +35094,1484388,51,2552,1 +35095,1484640,193,9687,1 +35096,1484642,196,9819,1 +35097,1484647,148,7404,1 +35098,1484652,121,6064,1 +35099,1484652,142,7131,1 +35100,1484665,198,9949,1 +35101,1484700,38,1910,1 +35102,1484700,154,7744,1 +35103,1484754,35,1760,1 +35104,1485600,148,7418,1 +35105,1485603,105,5290,1 +35106,1485614,123,6151,1 +35107,1485672,144,7236,1 +35108,1485673,100,5005,1 +35109,1485687,13,678,1 +35110,1485768,51,2555,1 +35111,1485774,178,8918,1 +35112,1486572,25,1263,1 +35113,1486635,71,3579,1 +35114,1486637,99,4982,1 +35115,1486644,185,9263,1 +35116,1487040,34,1713,1 +35117,1487040,71,3579,1 +35118,1487040,143,7175,1 +35119,1487040,65,3287,1 +35120,1487042,153,7670,1 +35121,1487043,94,4721,1 +35122,1487049,53,2651,1 +35123,1487064,112,5646,1 +35124,1487077,154,7726,1 +35125,1487077,139,6992,1 +35126,1487078,137,6875,1 +35127,1487082,32,1643,1 +35128,1487083,197,9872,1 +35129,1487083,187,9366,1 +35130,1487089,173,8669,1 +35131,1487100,172,8615,1 +35132,1487112,143,7164,1 +35133,1487113,71,3565,1 +35134,1487117,180,9024,1 +35135,1487137,65,3277,1 +35136,1487149,85,4285,1 +35137,1487172,179,8988,1 +35138,1487185,151,7565,1 +35139,1487197,5,296,1 +35140,1487281,21,1066,1 +35141,1487520,38,1940,1 +35142,1487523,195,9778,1 +35143,1487535,173,8653,1 +35144,1487568,1,76,1 +35145,1487570,171,8576,1 +35146,1487607,139,6968,1 +35147,1487617,103,5181,1 +35148,1487642,38,1924,1 +35149,1487689,46,2316,1 +35150,1488108,60,3045,1 +35151,1488483,145,7287,1 +35152,1488517,43,2191,1 +35153,1488524,65,3256,1 +35154,1488612,197,9877,1 +35155,1489440,161,8079,1 +35156,1489443,88,4418,1 +35157,1489444,48,2410,1 +35158,1489446,75,3782,1 +35159,1489454,165,8270,1 +35160,1489474,167,8374,1 +35161,1489475,128,6436,1 +35162,1489509,163,8179,1 +35163,1489513,116,5822,1 +35164,1489934,9,461,1 +35165,1489934,116,5805,1 +35166,1489980,18,931,1 +35167,1489992,141,7095,1 +35168,1490064,32,1625,1 +35169,1490128,155,7751,1 +35170,1490427,126,6326,1 +35171,1490460,50,2522,1 +35172,1490462,142,7130,1 +35173,1490478,66,3304,1 +35174,1490496,196,9806,1 +35175,1490520,177,8859,1 +35176,1490885,110,5528,1 +35177,1491399,3,171,1 +35178,1491840,142,7111,1 +35179,1491840,94,4707,1 +35180,1491840,75,3751,1 +35181,1491840,6,335,1 +35182,1491840,136,6846,1 +35183,1491840,148,7435,1 +35184,1491840,92,4612,1 +35185,1491840,71,3577,1 +35186,1491841,107,5378,1 +35187,1491841,130,6518,1 +35188,1491841,140,7016,1 +35189,1491843,18,950,1 +35190,1491846,167,8383,1 +35191,1491847,167,8365,1 +35192,1491852,148,7417,1 +35193,1491852,183,9175,1 +35194,1491852,87,4391,1 +35195,1491853,79,3964,1 +35196,1491853,197,9864,1 +35197,1491853,29,1498,1 +35198,1491855,199,9987,1 +35199,1491858,28,1422,1 +35200,1491862,83,4186,1 +35201,1491864,190,9542,1 +35202,1491864,15,788,1 +35203,1491865,186,9310,1 +35204,1491865,23,1187,1 +35205,1491867,34,1734,1 +35206,1491867,70,3526,1 +35207,1491867,176,8813,1 +35208,1491876,112,5603,1 +35209,1491876,18,902,1 +35210,1491876,120,6002,1 +35211,1491877,13,692,1 +35212,1491879,21,1059,1 +35213,1491883,169,8491,1 +35214,1491885,88,4433,1 +35215,1491888,142,7140,1 +35216,1491889,74,3704,1 +35217,1491891,191,9569,1 +35218,1491894,90,4513,1 +35219,1491897,184,9204,1 +35220,1491900,44,2237,1 +35221,1491900,43,2164,1 +35222,1491900,76,3805,1 +35223,1491900,19,971,1 +35224,1491900,167,8389,1 +35225,1491903,43,2173,1 +35226,1491903,90,4550,1 +35227,1491903,79,3975,1 +35228,1491913,191,9577,1 +35229,1491918,191,9567,1 +35230,1491921,75,3753,1 +35231,1491924,43,2198,1 +35232,1491924,159,7986,1 +35233,1491935,140,7033,1 +35234,1491948,160,8047,1 +35235,1491949,52,2607,1 +35236,1491973,133,6678,1 +35237,1491984,130,6509,1 +35238,1491985,31,1553,1 +35239,1492000,182,9110,1 +35240,1492032,187,9371,1 +35241,1492113,7,361,1 +35242,1492321,31,1563,1 +35243,1492323,41,2088,1 +35244,1492356,16,834,1 +35245,1492359,17,854,1 +35246,1492371,137,6879,1 +35247,1492801,78,3912,1 +35248,1492807,159,7997,1 +35249,1492815,59,2990,1 +35250,1492824,17,859,1 +35251,1492836,2,149,1 +35252,1492836,130,6535,1 +35253,1492845,90,4545,1 +35254,1492846,22,1142,1 +35255,1492900,80,4039,1 +35256,1493280,140,7025,1 +35257,1493280,43,2162,1 +35258,1493286,35,1777,1 +35259,1493304,111,5557,1 +35260,1493322,141,7098,1 +35261,1493328,180,9038,1 +35262,1493420,35,1755,1 +35263,1493764,109,5461,1 +35264,1493785,192,9612,1 +35265,1493796,66,3330,1 +35266,1493820,192,9603,1 +35267,1493844,53,2692,1 +35268,1493941,73,3659,1 +35269,1493956,198,9944,1 +35270,1494242,176,8818,1 +35271,1494249,44,2202,1 +35272,1494299,110,5504,1 +35273,1494723,95,4784,1 +35274,1494747,68,3405,1 +35275,1494804,100,5014,1 +35276,1494807,37,1886,1 +35277,1494853,16,802,1 +35278,1494909,76,3824,1 +35279,1495205,45,2260,1 +35280,1495209,89,4463,1 +35281,1495224,101,5052,1 +35282,1495224,145,7261,1 +35283,1495230,83,4173,1 +35284,1495302,88,4421,1 +35285,1495333,19,960,1 +35286,1495362,113,5695,1 +35287,1495374,101,5063,1 +35288,1496160,58,2908,1 +35289,1496162,167,8353,1 +35290,1496172,156,7801,1 +35291,1496172,3,159,1 +35292,1496177,170,8525,1 +35293,1496197,6,330,1 +35294,1496232,21,1088,1 +35295,1496246,172,8602,1 +35296,1496251,173,8695,1 +35297,1496640,58,2913,1 +35298,1496646,103,5169,1 +35299,1496649,159,7952,1 +35300,1496652,71,3569,1 +35301,1496652,18,930,1 +35302,1496653,199,9974,1 +35303,1496653,107,5383,1 +35304,1496658,77,3872,1 +35305,1496664,24,1203,1 +35306,1496675,168,8428,1 +35307,1496676,69,3459,1 +35308,1496728,124,6237,1 +35309,1496751,176,8833,1 +35310,1497120,31,1594,1 +35311,1497120,91,4555,1 +35312,1497120,10,517,1 +35313,1497121,179,8978,1 +35314,1497122,149,7493,1 +35315,1497122,160,8036,1 +35316,1497127,78,3927,1 +35317,1497132,64,3238,1 +35318,1497132,184,9215,1 +35319,1497135,64,3217,1 +35320,1497144,145,7264,1 +35321,1497151,112,5601,1 +35322,1497156,80,4011,1 +35323,1497156,171,8572,1 +35324,1497162,31,1563,1 +35325,1497165,13,663,1 +35326,1497169,139,6967,1 +35327,1497177,47,2381,1 +35328,1497179,94,4706,1 +35329,1497180,7,387,1 +35330,1497180,166,8302,1 +35331,1497184,35,1759,1 +35332,1497204,74,3729,1 +35333,1497216,135,6762,1 +35334,1497216,31,1570,1 +35335,1497228,34,1734,1 +35336,1497285,49,2453,1 +35337,1497319,86,4332,1 +35338,1497468,153,7678,1 +35339,1497600,140,7036,1 +35340,1497601,13,682,1 +35341,1497601,65,3291,1 +35342,1497610,68,3412,1 +35343,1497612,92,4640,1 +35344,1497614,125,6287,1 +35345,1497617,49,2492,1 +35346,1497624,20,1014,1 +35347,1497624,133,6695,1 +35348,1497649,59,2954,1 +35349,1497660,51,2594,1 +35350,1497690,79,3962,1 +35351,1497698,82,4147,1 +35352,1497699,191,9552,1 +35353,1497711,198,9942,1 +35354,1497721,55,2797,1 +35355,1497762,137,6852,1 +35356,1497813,113,5682,1 +35357,1498125,35,1774,1 +35358,1498143,190,9541,1 +35359,1498593,86,4342,1 +35360,1499040,130,6516,1 +35361,1499040,114,5740,1 +35362,1499041,9,477,1 +35363,1499043,38,1917,1 +35364,1499043,96,4836,1 +35365,1499052,184,9218,1 +35366,1499053,103,5182,1 +35367,1499053,61,3093,1 +35368,1499055,163,8176,1 +35369,1499058,72,3633,1 +35370,1499064,59,2975,1 +35371,1499066,81,4100,1 +35372,1499066,9,481,1 +35373,1499070,68,3443,1 +35374,1499076,112,5603,1 +35375,1499076,154,7717,1 +35376,1499077,106,5328,1 +35377,1499088,87,4395,1 +35378,1499088,126,6347,1 +35379,1499088,128,6437,1 +35380,1499088,12,613,1 +35381,1499089,69,3459,1 +35382,1499094,174,8735,1 +35383,1499099,129,6459,1 +35384,1499100,177,8868,1 +35385,1499102,33,1669,1 +35386,1499114,0,39,1 +35387,1499148,47,2353,1 +35388,1499148,160,8042,1 +35389,1499160,12,603,1 +35390,1499209,108,5427,1 +35391,1499520,113,5660,1 +35392,1499526,117,5898,1 +35393,1499544,193,9693,1 +35394,1499544,156,7819,1 +35395,1499544,18,915,1 +35396,1499549,157,7851,1 +35397,1499551,161,8082,1 +35398,1499555,105,5265,1 +35399,1499556,56,2814,1 +35400,1499557,132,6620,1 +35401,1499616,174,8707,1 +35402,1500072,129,6498,1 +35403,1500099,72,3626,1 +35404,1500480,151,7563,1 +35405,1500483,8,447,1 +35406,1500504,115,5787,1 +35407,1500507,116,5841,1 +35408,1500541,85,4253,1 +35409,1500541,114,5740,1 +35410,1500960,69,3499,1 +35411,1500960,139,6991,1 +35412,1500961,33,1665,1 +35413,1500963,71,3580,1 +35414,1500969,29,1465,1 +35415,1500972,85,4255,1 +35416,1500972,163,8159,1 +35417,1500982,168,8442,1 +35418,1500984,162,8128,1 +35419,1500984,105,5277,1 +35420,1500984,110,5505,1 +35421,1500987,176,8816,1 +35422,1500996,24,1245,1 +35423,1501008,199,9980,1 +35424,1501009,195,9762,1 +35425,1501012,4,232,1 +35426,1501021,190,9520,1 +35427,1501023,17,898,1 +35428,1501033,35,1775,1 +35429,1501035,114,5705,1 +35430,1501038,67,3362,1 +35431,1501056,120,6003,1 +35432,1501056,0,22,1 +35433,1501057,174,8739,1 +35434,1501063,181,9054,1 +35435,1501065,1,88,1 +35436,1501094,19,983,1 +35437,1501101,106,5318,1 +35438,1501440,133,6680,1 +35439,1501453,112,5615,1 +35440,1501465,0,20,1 +35441,1501468,134,6721,1 +35442,1501470,173,8671,1 +35443,1501478,72,3631,1 +35444,1501485,34,1729,1 +35445,1501494,29,1468,1 +35446,1501608,165,8278,1 +35447,1501657,138,6932,1 +35448,1501741,120,6043,1 +35449,1501932,162,8150,1 +35450,1501933,45,2258,1 +35451,1501944,10,525,1 +35452,1501946,17,851,1 +35453,1501959,183,9151,1 +35454,1502004,133,6692,1 +35455,1502004,191,9598,1 +35456,1502004,135,6756,1 +35457,1502020,195,9788,1 +35458,1502052,181,9059,1 +35459,1502413,79,3986,1 +35460,1502425,79,3953,1 +35461,1502484,33,1666,1 +35462,1503372,120,6006,1 +35463,1503373,186,9342,1 +35464,1503374,35,1772,1 +35465,1503374,106,5324,1 +35466,1503405,21,1075,1 +35467,1503408,144,7238,1 +35468,1503412,161,8092,1 +35469,1503413,27,1391,1 +35470,1503421,104,5202,1 +35471,1503436,31,1590,1 +35472,1503444,64,3226,1 +35473,1503480,106,5331,1 +35474,1503552,115,5761,1 +35475,1504321,109,5487,1 +35476,1504331,158,7934,1 +35477,1504345,163,8176,1 +35478,1504357,78,3932,1 +35479,1504381,13,653,1 +35480,1504402,148,7448,1 +35481,1504500,183,9190,1 +35482,1504833,6,314,1 +35483,1504884,52,2629,1 +35484,1505280,108,5441,1 +35485,1505289,110,5538,1 +35486,1505292,99,4972,1 +35487,1505293,28,1415,1 +35488,1505304,82,4128,1 +35489,1505316,88,4415,1 +35490,1505340,110,5545,1 +35491,1505364,33,1691,1 +35492,1505364,96,4820,1 +35493,1505367,113,5678,1 +35494,1505371,82,4133,1 +35495,1505418,9,471,1 +35496,1505442,5,292,1 +35497,1505785,34,1742,1 +35498,1506240,179,8961,1 +35499,1506240,46,2313,1 +35500,1506240,79,3964,1 +35501,1506240,130,6532,1 +35502,1506240,184,9216,1 +35503,1506240,142,7129,1 +35504,1506241,128,6420,1 +35505,1506243,66,3307,1 +35506,1506244,167,8391,1 +35507,1506249,149,7466,1 +35508,1506252,10,512,1 +35509,1506252,62,3121,1 +35510,1506253,20,1032,1 +35511,1506253,116,5842,1 +35512,1506253,190,9549,1 +35513,1506258,190,9504,1 +35514,1506262,37,1891,1 +35515,1506271,82,4128,1 +35516,1506273,141,7055,1 +35517,1506276,81,4066,1 +35518,1506277,15,771,1 +35519,1506277,182,9103,1 +35520,1506279,181,9097,1 +35521,1506279,93,4657,1 +35522,1506282,146,7318,1 +35523,1506282,176,8816,1 +35524,1506282,24,1231,1 +35525,1506286,29,1482,1 +35526,1506288,163,8200,1 +35527,1506291,134,6735,1 +35528,1506292,15,755,1 +35529,1506294,133,6670,1 +35530,1506300,53,2670,1 +35531,1506302,109,5452,1 +35532,1506303,148,7450,1 +35533,1506312,143,7196,1 +35534,1506313,49,2455,1 +35535,1506324,107,5363,1 +35536,1506336,117,5860,1 +35537,1506336,85,4289,1 +35538,1506348,147,7351,1 +35539,1506352,158,7929,1 +35540,1506375,115,5777,1 +35541,1506411,169,8489,1 +35542,1506429,97,4869,1 +35543,1506468,111,5558,1 +35544,1506489,180,9025,1 +35545,1506495,147,7368,1 +35546,1506720,68,3401,1 +35547,1506722,40,2022,1 +35548,1506725,47,2358,1 +35549,1506733,31,1594,1 +35550,1506741,124,6232,1 +35551,1506744,155,7763,1 +35552,1506744,151,7562,1 +35553,1506753,155,7785,1 +35554,1506756,17,891,1 +35555,1506768,2,128,1 +35556,1506769,153,7687,1 +35557,1506780,42,2109,1 +35558,1506795,161,8067,1 +35559,1506804,91,4558,1 +35560,1506823,162,8101,1 +35561,1507200,53,2669,1 +35562,1507221,112,5623,1 +35563,1507236,14,701,1 +35564,1507684,150,7547,1 +35565,1507693,102,5124,1 +35566,1507693,98,4933,1 +35567,1507696,172,8601,1 +35568,1507701,174,8747,1 +35569,1507704,31,1595,1 +35570,1507722,163,8173,1 +35571,1507728,89,4457,1 +35572,1507728,23,1193,1 +35573,1507729,114,5732,1 +35574,1507752,165,8253,1 +35575,1507755,110,5524,1 +35576,1507764,19,972,1 +35577,1507836,50,2512,1 +35578,1507848,58,2901,1 +35579,1508160,74,3750,1 +35580,1508161,58,2917,1 +35581,1508166,22,1122,1 +35582,1508172,186,9306,1 +35583,1508173,9,458,1 +35584,1508184,180,9008,1 +35585,1508185,192,9641,1 +35586,1508221,164,8202,1 +35587,1508233,19,982,1 +35588,1508274,70,3506,1 +35589,1508284,77,3860,1 +35590,1508304,106,5312,1 +35591,1508316,147,7351,1 +35592,1508640,161,8094,1 +35593,1508655,145,7256,1 +35594,1508736,12,636,1 +35595,1509121,197,9853,1 +35596,1509132,160,8036,1 +35597,1509135,53,2674,1 +35598,1509158,17,872,1 +35599,1509183,197,9880,1 +35600,1509216,151,7562,1 +35601,1509217,172,8619,1 +35602,1509603,6,344,1 +35603,1509612,138,6922,1 +35604,1509624,38,1917,1 +35605,1509624,1,84,1 +35606,1509627,85,4255,1 +35607,1509724,126,6330,1 +35608,1510081,12,603,1 +35609,1510086,1,55,1 +35610,1510104,0,22,1 +35611,1510104,113,5665,1 +35612,1510104,152,7642,1 +35613,1510125,125,6286,1 +35614,1510128,124,6212,1 +35615,1510140,163,8173,1 +35616,1510144,115,5776,1 +35617,1510149,5,259,1 +35618,1510164,114,5731,1 +35619,1510368,17,900,1 +35620,1511040,128,6438,1 +35621,1511053,83,4195,1 +35622,1511058,196,9826,1 +35623,1511065,44,2213,1 +35624,1511074,27,1377,1 +35625,1511089,168,8447,1 +35626,1511100,46,2344,1 +35627,1511100,47,2359,1 +35628,1511160,66,3343,1 +35629,1511256,52,2634,1 +35630,1511301,58,2903,1 +35631,1511520,156,7810,1 +35632,1511616,114,5703,1 +35633,1512000,162,8139,1 +35634,1512000,27,1363,1 +35635,1512000,73,3667,1 +35636,1512001,131,6571,1 +35637,1512012,95,4765,1 +35638,1512024,178,8920,1 +35639,1512031,41,2066,1 +35640,1512036,32,1640,1 +35641,1512039,52,2647,1 +35642,1512045,55,2792,1 +35643,1512087,51,2563,1 +35644,1512108,82,4105,1 +35645,1512131,24,1206,1 +35646,1512192,79,3978,1 +35647,1512973,84,4214,1 +35648,1513020,60,3048,1 +35649,1513032,100,5038,1 +35650,1513056,51,2565,1 +35651,1513440,188,9444,1 +35652,1513446,187,9385,1 +35653,1513468,64,3240,1 +35654,1513488,164,8202,1 +35655,1513515,58,2904,1 +35656,1513527,8,447,1 +35657,1513549,136,6828,1 +35658,1513920,101,5093,1 +35659,1513920,113,5670,1 +35660,1513920,137,6898,1 +35661,1513921,37,1879,1 +35662,1513921,176,8839,1 +35663,1513924,71,3576,1 +35664,1513932,58,2942,1 +35665,1513932,7,380,1 +35666,1513933,7,385,1 +35667,1513944,88,4408,1 +35668,1513956,66,3342,1 +35669,1513968,199,9998,1 +35670,1513988,25,1276,1 +35671,1513993,118,5910,1 +35672,1514000,65,3284,1 +35673,1514028,38,1919,1 +35674,1514052,26,1333,1 +35675,1514052,19,993,1 +35676,1514124,98,4937,1 +35677,1514400,3,180,1 +35678,1514407,92,4608,1 +35679,1514444,193,9663,1 +35680,1514460,149,7483,1 +35681,1514472,1,84,1 +35682,1514880,85,4294,1 +35683,1514880,56,2821,1 +35684,1514880,67,3355,1 +35685,1514880,34,1745,1 +35686,1514880,87,4369,1 +35687,1514881,39,1960,1 +35688,1514883,31,1592,1 +35689,1514892,19,953,1 +35690,1514893,80,4015,1 +35691,1514894,27,1385,1 +35692,1514898,110,5533,1 +35693,1514898,31,1559,1 +35694,1514904,188,9412,1 +35695,1514904,164,8219,1 +35696,1514904,155,7780,1 +35697,1514905,92,4625,1 +35698,1514905,111,5579,1 +35699,1514905,28,1438,1 +35700,1514906,166,8309,1 +35701,1514907,86,4322,1 +35702,1514908,141,7074,1 +35703,1514908,137,6894,1 +35704,1514910,181,9052,1 +35705,1514913,12,638,1 +35706,1514916,31,1555,1 +35707,1514917,187,9393,1 +35708,1514917,83,4164,1 +35709,1514919,170,8547,1 +35710,1514924,68,3424,1 +35711,1514928,5,272,1 +35712,1514929,179,8966,1 +35713,1514929,26,1348,1 +35714,1514930,87,4395,1 +35715,1514930,193,9669,1 +35716,1514934,3,172,1 +35717,1514940,115,5770,1 +35718,1514949,114,5707,1 +35719,1514949,11,559,1 +35720,1514953,26,1315,1 +35721,1514955,25,1290,1 +35722,1514961,35,1779,1 +35723,1514965,76,3841,1 +35724,1514976,89,4459,1 +35725,1514976,11,563,1 +35726,1514988,15,798,1 +35727,1515000,35,1795,1 +35728,1515001,7,395,1 +35729,1515002,158,7903,1 +35730,1515004,162,8106,1 +35731,1515012,7,368,1 +35732,1515012,110,5512,1 +35733,1515376,155,7767,1 +35734,1515381,132,6622,1 +35735,1515456,56,2827,1 +35736,1515488,58,2940,1 +35737,1515504,81,4099,1 +35738,1515851,8,433,1 +35739,1515854,62,3121,1 +35740,1516320,196,9833,1 +35741,1516320,48,2424,1 +35742,1516321,126,6328,1 +35743,1516326,44,2208,1 +35744,1516326,121,6071,1 +35745,1516331,5,279,1 +35746,1516332,91,4572,1 +35747,1516332,165,8270,1 +35748,1516344,4,223,1 +35749,1516345,8,422,1 +35750,1516345,17,880,1 +35751,1516356,63,3180,1 +35752,1516362,33,1661,1 +35753,1516366,66,3323,1 +35754,1516369,175,8793,1 +35755,1516369,62,3114,1 +35756,1516369,175,8760,1 +35757,1516393,142,7116,1 +35758,1516428,151,7564,1 +35759,1516441,97,4865,1 +35760,1516550,142,7119,1 +35761,1516833,124,6218,1 +35762,1517280,29,1460,1 +35763,1517281,167,8364,1 +35764,1517281,14,716,1 +35765,1517282,129,6460,1 +35766,1517292,157,7887,1 +35767,1517292,75,3784,1 +35768,1517292,56,2824,1 +35769,1517295,156,7808,1 +35770,1517297,174,8750,1 +35771,1517299,182,9107,1 +35772,1517304,36,1843,1 +35773,1517304,155,7797,1 +35774,1517313,103,5164,1 +35775,1517316,8,426,1 +35776,1517316,118,5923,1 +35777,1517316,2,122,1 +35778,1517316,0,1,1 +35779,1517322,38,1941,1 +35780,1517328,145,7272,1 +35781,1517328,141,7098,1 +35782,1517328,26,1311,1 +35783,1517340,104,5247,1 +35784,1517341,48,2417,1 +35785,1517341,16,836,1 +35786,1517343,12,617,1 +35787,1517362,9,480,1 +35788,1517364,155,7782,1 +35789,1517364,187,9396,1 +35790,1517364,30,1534,1 +35791,1517364,24,1211,1 +35792,1517365,109,5492,1 +35793,1517379,190,9522,1 +35794,1517388,40,2032,1 +35795,1517388,96,4818,1 +35796,1517391,41,2088,1 +35797,1517451,50,2537,1 +35798,1517461,44,2227,1 +35799,1517472,132,6637,1 +35800,1517499,86,4306,1 +35801,1517832,26,1301,1 +35802,1518240,10,520,1 +35803,1518243,27,1392,1 +35804,1518246,35,1765,1 +35805,1518246,121,6076,1 +35806,1518252,148,7441,1 +35807,1518274,1,82,1 +35808,1518279,22,1138,1 +35809,1518288,81,4076,1 +35810,1518300,17,873,1 +35811,1518300,102,5132,1 +35812,1518300,73,3656,1 +35813,1518301,12,602,1 +35814,1518310,90,4543,1 +35815,1518312,41,2058,1 +35816,1518325,117,5884,1 +35817,1518495,134,6729,1 +35818,1518806,185,9277,1 +35819,1519350,4,217,1 +35820,1519680,127,6376,1 +35821,1519680,56,2838,1 +35822,1519687,10,543,1 +35823,1519689,176,8819,1 +35824,1519692,87,4361,1 +35825,1519699,56,2842,1 +35826,1519706,188,9435,1 +35827,1519710,54,2708,1 +35828,1519716,177,8879,1 +35829,1519717,90,4509,1 +35830,1519718,88,4443,1 +35831,1519725,3,182,1 +35832,1519753,162,8113,1 +35833,1519765,189,9470,1 +35834,1519765,42,2137,1 +35835,1519779,14,742,1 +35836,1519833,70,3528,1 +35837,1520262,122,6114,1 +35838,1520640,40,2017,1 +35839,1520652,172,8613,1 +35840,1520652,123,6173,1 +35841,1520652,166,8304,1 +35842,1520661,2,128,1 +35843,1520671,191,9595,1 +35844,1520685,170,8531,1 +35845,1520688,193,9686,1 +35846,1520700,101,5051,1 +35847,1520700,18,901,1 +35848,1520703,131,6559,1 +35849,1520712,172,8609,1 +35850,1520763,1,75,1 +35851,1520775,44,2216,1 +35852,1520846,184,9204,1 +35853,1521120,194,9749,1 +35854,1521121,57,2894,1 +35855,1521132,120,6030,1 +35856,1521132,92,4602,1 +35857,1521132,15,792,1 +35858,1521144,116,5848,1 +35859,1521146,113,5673,1 +35860,1521157,11,586,1 +35861,1521165,17,885,1 +35862,1521168,66,3337,1 +35863,1521183,96,4837,1 +35864,1521192,14,738,1 +35865,1521193,96,4849,1 +35866,1521204,159,7987,1 +35867,1521207,48,2416,1 +35868,1521216,60,3032,1 +35869,1521240,3,185,1 +35870,1521240,12,623,1 +35871,1521262,98,4901,1 +35872,1521264,134,6703,1 +35873,1521600,107,5397,1 +35874,1521600,160,8046,1 +35875,1521611,103,5185,1 +35876,1521615,11,560,1 +35877,1521616,164,8240,1 +35878,1521625,133,6653,1 +35879,1521637,68,3431,1 +35880,1521640,180,9040,1 +35881,1521651,162,8127,1 +35882,1521654,124,6243,1 +35883,1521660,21,1073,1 +35884,1521661,31,1563,1 +35885,1521685,190,9517,1 +35886,1521686,123,6160,1 +35887,1521721,115,5783,1 +35888,1521792,37,1877,1 +35889,1522152,76,3836,1 +35890,1522190,138,6908,1 +35891,1522573,98,4940,1 +35892,1522577,36,1830,1 +35893,1522581,78,3937,1 +35894,1522584,155,7799,1 +35895,1522596,114,5717,1 +35896,1522608,184,9221,1 +35897,1522617,95,4769,1 +35898,1522621,59,2983,1 +35899,1522641,190,9511,1 +35900,1522644,51,2585,1 +35901,1522667,182,9133,1 +35902,1522706,143,7190,1 +35903,1523649,1,93,1 +35904,1524072,144,7232,1 +35905,1524200,175,8793,1 +35906,1524480,191,9594,1 +35907,1524483,93,4669,1 +35908,1524484,70,3533,1 +35909,1524495,149,7474,1 +35910,1524498,63,3170,1 +35911,1524504,101,5093,1 +35912,1524516,93,4666,1 +35913,1524528,51,2555,1 +35914,1524528,22,1138,1 +35915,1524529,155,7778,1 +35916,1524540,73,3673,1 +35917,1524660,82,4119,1 +35918,1525008,141,7081,1 +35919,1525011,28,1447,1 +35920,1525440,120,6023,1 +35921,1525440,10,537,1 +35922,1525442,20,1039,1 +35923,1525446,59,2991,1 +35924,1525446,146,7321,1 +35925,1525449,177,8897,1 +35926,1525452,20,1032,1 +35927,1525453,96,4849,1 +35928,1525459,141,7066,1 +35929,1525460,28,1417,1 +35930,1525465,167,8371,1 +35931,1525474,175,8757,1 +35932,1525482,54,2721,1 +35933,1525488,135,6756,1 +35934,1525488,57,2885,1 +35935,1525500,121,6052,1 +35936,1525512,24,1245,1 +35937,1525514,78,3945,1 +35938,1525554,110,5512,1 +35939,1525920,18,941,1 +35940,1525922,104,5231,1 +35941,1525922,48,2436,1 +35942,1525923,45,2293,1 +35943,1525932,4,244,1 +35944,1525944,148,7415,1 +35945,1525953,6,340,1 +35946,1525956,107,5387,1 +35947,1525966,85,4253,1 +35948,1525980,36,1844,1 +35949,1526007,185,9264,1 +35950,1526028,184,9208,1 +35951,1526413,127,6395,1 +35952,1526437,0,15,1 +35953,1526508,82,4103,1 +35954,1526641,22,1133,1 +35955,1526880,187,9367,1 +35956,1526883,21,1059,1 +35957,1526904,49,2493,1 +35958,1526905,191,9569,1 +35959,1526990,16,822,1 +35960,1527042,185,9286,1 +35961,1527387,12,622,1 +35962,1527393,84,4249,1 +35963,1527394,61,3066,1 +35964,1527408,177,8858,1 +35965,1527420,69,3467,1 +35966,1527444,1,70,1 +35967,1527840,142,7125,1 +35968,1527841,185,9280,1 +35969,1527865,179,8968,1 +35970,1527870,166,8337,1 +35971,1527876,117,5892,1 +35972,1527949,162,8112,1 +35973,1528321,42,2101,1 +35974,1528372,136,6815,1 +35975,1528380,11,585,1 +35976,1528424,48,2404,1 +35977,1528431,126,6332,1 +35978,1528488,174,8717,1 +35979,1528800,94,4731,1 +35980,1528800,122,6144,1 +35981,1528801,131,6559,1 +35982,1528801,52,2606,1 +35983,1528804,32,1648,1 +35984,1528810,96,4842,1 +35985,1528819,2,101,1 +35986,1528821,3,154,1 +35987,1528824,50,2523,1 +35988,1528824,114,5723,1 +35989,1528824,113,5691,1 +35990,1528826,199,9954,1 +35991,1528834,71,3555,1 +35992,1528836,178,8940,1 +35993,1528836,169,8489,1 +35994,1528836,44,2223,1 +35995,1528836,22,1137,1 +35996,1528848,48,2423,1 +35997,1528872,61,3055,1 +35998,1528872,9,484,1 +35999,1528897,130,6523,1 +36000,1528912,128,6446,1 +36001,1528944,194,9712,1 +36002,1528982,104,5243,1 +36003,1529286,27,1372,1 +36004,1529316,180,9003,1 +36005,1529329,81,4057,1 +36006,1529340,198,9935,1 +36007,1529364,14,743,1 +36008,1529760,162,8123,1 +36009,1529760,80,4046,1 +36010,1529761,16,807,1 +36011,1529761,82,4142,1 +36012,1529763,183,9156,1 +36013,1529771,60,3026,1 +36014,1529772,194,9737,1 +36015,1529778,91,4585,1 +36016,1529781,161,8062,1 +36017,1529782,31,1571,1 +36018,1529785,30,1521,1 +36019,1529785,39,1997,1 +36020,1529785,118,5941,1 +36021,1529787,44,2238,1 +36022,1529793,37,1884,1 +36023,1529793,43,2192,1 +36024,1529796,148,7417,1 +36025,1529796,95,4782,1 +36026,1529798,99,4996,1 +36027,1529799,199,9993,1 +36028,1529816,36,1820,1 +36029,1529836,12,644,1 +36030,1529846,105,5297,1 +36031,1529847,0,9,1 +36032,1529850,6,304,1 +36033,1529851,78,3920,1 +36034,1529868,152,7603,1 +36035,1529883,66,3308,1 +36036,1529892,190,9549,1 +36037,1529904,49,2488,1 +36038,1529917,55,2766,1 +36039,1530240,172,8646,1 +36040,1530241,122,6103,1 +36041,1530241,190,9516,1 +36042,1530252,72,3627,1 +36043,1530252,185,9285,1 +36044,1530253,103,5185,1 +36045,1530265,148,7416,1 +36046,1530272,25,1300,1 +36047,1530276,192,9623,1 +36048,1530288,93,4685,1 +36049,1530302,37,1863,1 +36050,1530303,103,5180,1 +36051,1530331,66,3331,1 +36052,1530360,58,2931,1 +36053,1530385,129,6452,1 +36054,1530410,153,7695,1 +36055,1530418,145,7296,1 +36056,1530756,7,378,1 +36057,1530756,90,4512,1 +36058,1530759,71,3599,1 +36059,1530816,118,5943,1 +36060,1530889,57,2881,1 +36061,1531212,182,9114,1 +36062,1531251,52,2636,1 +36063,1531344,107,5371,1 +36064,1531390,0,31,1 +36065,1531681,66,3347,1 +36066,1531686,171,8564,1 +36067,1531692,8,445,1 +36068,1531697,54,2718,1 +36069,1531704,139,6967,1 +36070,1531710,63,3167,1 +36071,1531729,94,4717,1 +36072,1531740,6,303,1 +36073,1531788,37,1859,1 +36074,1532172,7,362,1 +36075,1532175,11,589,1 +36076,1532250,90,4543,1 +36077,1532293,190,9539,1 +36078,1532665,191,9565,1 +36079,1532673,11,585,1 +36080,1532700,143,7186,1 +36081,1532748,94,4726,1 +36082,1532820,174,8715,1 +36083,1533129,44,2217,1 +36084,1533168,50,2542,1 +36085,1533241,141,7085,1 +36086,1533600,6,329,1 +36087,1533601,185,9256,1 +36088,1533604,71,3582,1 +36089,1533636,86,4345,1 +36090,1533648,79,3969,1 +36091,1533661,172,8630,1 +36092,1533666,196,9819,1 +36093,1533723,142,7126,1 +36094,1533741,157,7855,1 +36095,1533942,153,7671,1 +36096,1534080,63,3154,1 +36097,1534083,129,6464,1 +36098,1534083,26,1324,1 +36099,1534094,53,2667,1 +36100,1534095,122,6137,1 +36101,1534101,173,8651,1 +36102,1534104,173,8661,1 +36103,1534129,55,2758,1 +36104,1534143,24,1209,1 +36105,1534212,75,3770,1 +36106,1534274,157,7863,1 +36107,1534590,199,9956,1 +36108,1534686,179,8953,1 +36109,1535040,111,5595,1 +36110,1535041,168,8433,1 +36111,1535043,179,8953,1 +36112,1535046,5,279,1 +36113,1535053,184,9247,1 +36114,1535061,142,7145,1 +36115,1535062,10,536,1 +36116,1535067,31,1586,1 +36117,1535074,21,1074,1 +36118,1535076,30,1527,1 +36119,1535076,7,400,1 +36120,1535079,44,2201,1 +36121,1535086,130,6507,1 +36122,1535088,172,8637,1 +36123,1535100,110,5525,1 +36124,1535109,146,7339,1 +36125,1535112,66,3327,1 +36126,1535112,190,9537,1 +36127,1535118,193,9665,1 +36128,1535124,40,2034,1 +36129,1535136,46,2337,1 +36130,1535137,77,3862,1 +36131,1535215,70,3503,1 +36132,1535268,125,6282,1 +36133,1535520,96,4848,1 +36134,1535524,157,7858,1 +36135,1535528,31,1589,1 +36136,1535529,18,925,1 +36137,1535533,140,7002,1 +36138,1535535,66,3303,1 +36139,1535544,95,4764,1 +36140,1535547,182,9122,1 +36141,1535556,97,4873,1 +36142,1535556,66,3321,1 +36143,1535556,9,451,1 +36144,1535558,148,7436,1 +36145,1535568,101,5056,1 +36146,1535569,8,441,1 +36147,1535580,6,350,1 +36148,1535580,83,4181,1 +36149,1535590,0,34,1 +36150,1535601,41,2065,1 +36151,1535604,129,6458,1 +36152,1535612,156,7845,1 +36153,1535640,57,2869,1 +36154,1535640,161,8093,1 +36155,1535652,178,8918,1 +36156,1535676,81,4071,1 +36157,1535685,28,1435,1 +36158,1535688,77,3861,1 +36159,1535703,125,6294,1 +36160,1535772,14,705,1 +36161,1536960,45,2295,1 +36162,1536960,52,2617,1 +36163,1536961,16,810,1 +36164,1536964,133,6685,1 +36165,1536972,91,4570,1 +36166,1537005,38,1917,1 +36167,1537032,21,1069,1 +36168,1537044,121,6063,1 +36169,1537047,93,4694,1 +36170,1537065,54,2709,1 +36171,1537072,24,1207,1 +36172,1537440,47,2357,1 +36173,1537441,173,8693,1 +36174,1537443,136,6806,1 +36175,1537464,181,9058,1 +36176,1537464,197,9858,1 +36177,1538433,181,9088,1 +36178,1538881,14,711,1 +36179,1538905,187,9365,1 +36180,1538916,147,7366,1 +36181,1538916,137,6898,1 +36182,1538924,102,5117,1 +36183,1538967,58,2921,1 +36184,1539840,142,7144,1 +36185,1539840,79,3983,1 +36186,1539840,160,8022,1 +36187,1539840,101,5081,1 +36188,1539840,11,591,1 +36189,1539840,59,2959,1 +36190,1539840,137,6878,1 +36191,1539840,122,6141,1 +36192,1539840,156,7844,1 +36193,1539840,116,5842,1 +36194,1539840,146,7314,1 +36195,1539840,4,236,1 +36196,1539840,108,5411,1 +36197,1539840,177,8875,1 +36198,1539840,133,6672,1 +36199,1539840,28,1432,1 +36200,1539840,39,1977,1 +36201,1539840,175,8779,1 +36202,1539841,35,1796,1 +36203,1539841,107,5382,1 +36204,1539841,72,3627,1 +36205,1539841,60,3048,1 +36206,1539842,187,9369,1 +36207,1539843,82,4146,1 +36208,1539843,48,2410,1 +36209,1539843,172,8606,1 +36210,1539843,197,9866,1 +36211,1539843,134,6733,1 +36212,1539845,176,8824,1 +36213,1539846,140,7017,1 +36214,1539846,105,5296,1 +36215,1539847,43,2178,1 +36216,1539847,175,8764,1 +36217,1539849,133,6668,1 +36218,1539849,39,1963,1 +36219,1539850,2,108,1 +36220,1539850,58,2922,1 +36221,1539852,100,5020,1 +36222,1539852,72,3641,1 +36223,1539852,172,8629,1 +36224,1539852,47,2384,1 +36225,1539852,108,5443,1 +36226,1539852,134,6710,1 +36227,1539852,146,7344,1 +36228,1539852,107,5356,1 +36229,1539852,175,8779,1 +36230,1539852,18,918,1 +36231,1539852,181,9059,1 +36232,1539852,158,7925,1 +36233,1539852,198,9946,1 +36234,1539853,149,7471,1 +36235,1539853,113,5652,1 +36236,1539853,16,819,1 +36237,1539855,80,4001,1 +36238,1539857,79,3967,1 +36239,1539858,48,2431,1 +36240,1539858,26,1307,1 +36241,1539863,127,6399,1 +36242,1539863,38,1917,1 +36243,1539863,168,8440,1 +36244,1539864,4,230,1 +36245,1539864,69,3484,1 +36246,1539864,87,4355,1 +36247,1539864,80,4026,1 +36248,1539864,6,314,1 +36249,1539864,95,4796,1 +36250,1539864,63,3189,1 +36251,1539864,154,7708,1 +36252,1539864,100,5034,1 +36253,1539864,58,2932,1 +36254,1539864,119,5977,1 +36255,1539865,169,8496,1 +36256,1539865,144,7229,1 +36257,1539865,103,5166,1 +36258,1539867,16,807,1 +36259,1539867,16,835,1 +36260,1539867,6,333,1 +36261,1539867,58,2913,1 +36262,1539869,161,8070,1 +36263,1539870,16,809,1 +36264,1539873,15,769,1 +36265,1539874,137,6888,1 +36266,1539876,12,603,1 +36267,1539876,169,8451,1 +36268,1539876,32,1640,1 +36269,1539876,18,935,1 +36270,1539876,6,317,1 +36271,1539876,130,6527,1 +36272,1539876,137,6878,1 +36273,1539876,7,365,1 +36274,1539876,8,405,1 +36275,1539876,194,9709,1 +36276,1539876,85,4252,1 +36277,1539876,27,1378,1 +36278,1539877,74,3704,1 +36279,1539877,199,9992,1 +36280,1539877,81,4077,1 +36281,1539879,173,8684,1 +36282,1539880,92,4626,1 +36283,1539883,78,3934,1 +36284,1539883,149,7465,1 +36285,1539884,17,860,1 +36286,1539885,124,6250,1 +36287,1539885,44,2224,1 +36288,1539885,1,97,1 +36289,1539885,144,7202,1 +36290,1539888,9,499,1 +36291,1539888,181,9097,1 +36292,1539888,110,5501,1 +36293,1539888,20,1034,1 +36294,1539888,47,2361,1 +36295,1539888,9,472,1 +36296,1539888,168,8404,1 +36297,1539888,153,7652,1 +36298,1539888,28,1407,1 +36299,1539888,126,6316,1 +36300,1539888,196,9836,1 +36301,1539888,27,1396,1 +36302,1539888,102,5142,1 +36303,1539889,43,2155,1 +36304,1539890,11,564,1 +36305,1539890,50,2526,1 +36306,1539890,131,6555,1 +36307,1539890,185,9270,1 +36308,1539892,56,2801,1 +36309,1539892,188,9401,1 +36310,1539893,116,5814,1 +36311,1539897,82,4131,1 +36312,1539898,173,8676,1 +36313,1539900,5,278,1 +36314,1539900,195,9773,1 +36315,1539900,30,1517,1 +36316,1539900,56,2838,1 +36317,1539900,26,1330,1 +36318,1539901,177,8883,1 +36319,1539901,95,4767,1 +36320,1539903,100,5002,1 +36321,1539903,187,9362,1 +36322,1539909,58,2903,1 +36323,1539912,112,5629,1 +36324,1539912,30,1533,1 +36325,1539912,128,6449,1 +36326,1539912,96,4848,1 +36327,1539912,110,5548,1 +36328,1539912,10,547,1 +36329,1539912,133,6655,1 +36330,1539912,145,7273,1 +36331,1539914,137,6884,1 +36332,1539918,113,5670,1 +36333,1539918,15,789,1 +36334,1539919,139,6991,1 +36335,1539923,114,5710,1 +36336,1539924,169,8457,1 +36337,1539924,42,2102,1 +36338,1539924,25,1265,1 +36339,1539924,55,2797,1 +36340,1539924,55,2751,1 +36341,1539924,83,4187,1 +36342,1539924,60,3048,1 +36343,1539924,137,6897,1 +36344,1539924,87,4377,1 +36345,1539925,91,4575,1 +36346,1539927,92,4627,1 +36347,1539928,123,6182,1 +36348,1539929,105,5256,1 +36349,1539930,67,3380,1 +36350,1539933,1,90,1 +36351,1539933,155,7764,1 +36352,1539933,170,8546,1 +36353,1539936,37,1880,1 +36354,1539936,115,5751,1 +36355,1539936,17,883,1 +36356,1539936,35,1777,1 +36357,1539936,107,5359,1 +36358,1539937,51,2559,1 +36359,1539937,87,4393,1 +36360,1539942,178,8936,1 +36361,1539942,63,3176,1 +36362,1539943,19,982,1 +36363,1539945,80,4007,1 +36364,1539948,129,6497,1 +36365,1539949,20,1017,1 +36366,1539952,160,8013,1 +36367,1539960,11,595,1 +36368,1539960,172,8610,1 +36369,1539961,14,738,1 +36370,1539961,80,4003,1 +36371,1539962,151,7573,1 +36372,1539972,30,1501,1 +36373,1539973,44,2248,1 +36374,1539975,128,6412,1 +36375,1539981,156,7837,1 +36376,1539984,5,287,1 +36377,1539984,192,9637,1 +36378,1539987,150,7550,1 +36379,1539991,153,7664,1 +36380,1539992,14,704,1 +36381,1540005,86,4301,1 +36382,1540017,141,7060,1 +36383,1540020,173,8685,1 +36384,1540030,109,5487,1 +36385,1540044,111,5583,1 +36386,1540050,65,3293,1 +36387,1540053,43,2156,1 +36388,1540095,172,8611,1 +36389,1540098,51,2571,1 +36390,1540105,75,3786,1 +36391,1540133,26,1327,1 +36392,1540140,147,7366,1 +36393,1540156,105,5266,1 +36394,1540333,45,2281,1 +36395,1540344,51,2598,1 +36396,1540344,66,3325,1 +36397,1540357,162,8127,1 +36398,1540357,32,1641,1 +36399,1540372,53,2682,1 +36400,1540416,162,8121,1 +36401,1540440,154,7724,1 +36402,1540485,199,9976,1 +36403,1540834,180,9038,1 +36404,1540872,1,96,1 +36405,1541796,117,5885,1 +36406,1542012,41,2092,1 +36407,1542240,66,3325,1 +36408,1542253,142,7118,1 +36409,1542253,52,2630,1 +36410,1542261,4,248,1 +36411,1542264,15,763,1 +36412,1542264,199,9972,1 +36413,1542265,192,9631,1 +36414,1542279,144,7222,1 +36415,1542291,143,7169,1 +36416,1542352,187,9399,1 +36417,1542372,152,7634,1 +36418,1542373,130,6540,1 +36419,1542408,50,2531,1 +36420,1542457,147,7392,1 +36421,1542588,78,3948,1 +36422,1542720,132,6616,1 +36423,1542724,40,2041,1 +36424,1542744,54,2736,1 +36425,1542766,188,9417,1 +36426,1542769,62,3148,1 +36427,1542774,56,2814,1 +36428,1542817,105,5299,1 +36429,1542828,155,7784,1 +36430,1543202,56,2805,1 +36431,1543206,113,5689,1 +36432,1543229,145,7254,1 +36433,1543270,26,1328,1 +36434,1543287,154,7706,1 +36435,1543311,178,8934,1 +36436,1543321,10,520,1 +36437,1543681,139,6971,1 +36438,1543690,182,9101,1 +36439,1543704,191,9558,1 +36440,1543716,135,6767,1 +36441,1543718,93,4677,1 +36442,1543730,133,6695,1 +36443,1543752,74,3702,1 +36444,1543753,160,8044,1 +36445,1543777,183,9182,1 +36446,1543968,134,6732,1 +36447,1544160,180,9002,1 +36448,1544167,88,4449,1 +36449,1544175,70,3518,1 +36450,1544181,182,9139,1 +36451,1544186,110,5548,1 +36452,1544193,187,9373,1 +36453,1544244,119,5951,1 +36454,1544256,25,1255,1 +36455,1544376,56,2823,1 +36456,1544640,182,9133,1 +36457,1544659,132,6609,1 +36458,1544661,7,359,1 +36459,1544674,54,2708,1 +36460,1544674,42,2116,1 +36461,1544676,30,1550,1 +36462,1544679,35,1775,1 +36463,1544724,98,4941,1 +36464,1544736,111,5574,1 +36465,1544772,136,6830,1 +36466,1545130,160,8041,1 +36467,1545132,144,7217,1 +36468,1545142,74,3731,1 +36469,1545150,3,199,1 +36470,1545165,116,5836,1 +36471,1545180,120,6018,1 +36472,1545184,101,5077,1 +36473,1545190,11,559,1 +36474,1545192,92,4621,1 +36475,1545192,193,9669,1 +36476,1545612,105,5253,1 +36477,1545618,46,2345,1 +36478,1545625,127,6395,1 +36479,1545625,169,8495,1 +36480,1545625,108,5449,1 +36481,1545637,60,3003,1 +36482,1545642,23,1155,1 +36483,1545648,11,556,1 +36484,1545649,198,9935,1 +36485,1545651,179,8973,1 +36486,1545657,68,3444,1 +36487,1545660,108,5449,1 +36488,1545666,163,8170,1 +36489,1545666,59,2959,1 +36490,1545674,142,7117,1 +36491,1545675,192,9601,1 +36492,1545675,22,1114,1 +36493,1545681,90,4511,1 +36494,1545702,163,8153,1 +36495,1545722,159,7982,1 +36496,1545733,26,1301,1 +36497,1546560,131,6594,1 +36498,1546566,78,3939,1 +36499,1546572,189,9494,1 +36500,1546572,24,1221,1 +36501,1546572,53,2674,1 +36502,1546596,75,3788,1 +36503,1546596,121,6094,1 +36504,1546599,45,2251,1 +36505,1546608,48,2447,1 +36506,1546608,79,3975,1 +36507,1546608,136,6845,1 +36508,1546620,42,2110,1 +36509,1546620,11,593,1 +36510,1546620,122,6140,1 +36511,1546621,113,5686,1 +36512,1546621,69,3454,1 +36513,1546622,54,2703,1 +36514,1546692,81,4065,1 +36515,1547040,153,7682,1 +36516,1547041,48,2401,1 +36517,1547043,155,7778,1 +36518,1547046,119,5953,1 +36519,1547052,120,6039,1 +36520,1547052,180,9033,1 +36521,1547052,123,6160,1 +36522,1547067,163,8162,1 +36523,1547076,193,9654,1 +36524,1547079,59,2969,1 +36525,1547083,31,1583,1 +36526,1547088,78,3938,1 +36527,1547089,150,7510,1 +36528,1547100,149,7493,1 +36529,1547101,160,8034,1 +36530,1547101,149,7471,1 +36531,1547136,130,6536,1 +36532,1547148,22,1143,1 +36533,1547148,137,6884,1 +36534,1547160,52,2645,1 +36535,1547184,75,3770,1 +36536,1547328,69,3470,1 +36537,1547590,55,2782,1 +36538,1548003,135,6760,1 +36539,1548026,55,2799,1 +36540,1548066,186,9306,1 +36541,1548087,165,8279,1 +36542,1548096,106,5323,1 +36543,1548492,189,9462,1 +36544,1548528,49,2461,1 +36545,1548541,56,2848,1 +36546,1548588,165,8254,1 +36547,1548960,56,2812,1 +36548,1548964,8,412,1 +36549,1548984,53,2658,1 +36550,1549008,14,718,1 +36551,1549032,81,4071,1 +36552,1549044,96,4804,1 +36553,1549054,92,4646,1 +36554,1549452,103,5188,1 +36555,1549455,196,9811,1 +36556,1549476,157,7898,1 +36557,1549476,148,7421,1 +36558,1549477,44,2211,1 +36559,1549477,2,116,1 +36560,1549478,108,5412,1 +36561,1549497,116,5817,1 +36562,1549980,128,6413,1 +36563,1549986,115,5762,1 +36564,1550400,24,1224,1 +36565,1550400,134,6723,1 +36566,1551426,8,446,1 +36567,1551846,80,4023,1 +36568,1551930,72,3629,1 +36569,1552322,65,3262,1 +36570,1552325,91,4570,1 +36571,1552332,70,3520,1 +36572,1552350,77,3875,1 +36573,1552356,28,1409,1 +36574,1552371,12,645,1 +36575,1552392,171,8552,1 +36576,1552404,154,7719,1 +36577,1552429,34,1742,1 +36578,1552800,12,631,1 +36579,1552800,41,2056,1 +36580,1552801,176,8831,1 +36581,1552812,12,601,1 +36582,1552827,59,2963,1 +36583,1552833,26,1317,1 +36584,1552836,189,9490,1 +36585,1552848,60,3019,1 +36586,1552852,137,6894,1 +36587,1552854,147,7358,1 +36588,1552893,183,9167,1 +36589,1552909,4,210,1 +36590,1552959,42,2132,1 +36591,1553080,87,4385,1 +36592,1553389,44,2249,1 +36593,1553390,152,7624,1 +36594,1553460,122,6108,1 +36595,1553761,181,9060,1 +36596,1553761,168,8418,1 +36597,1553784,162,8148,1 +36598,1553785,191,9554,1 +36599,1553821,121,6059,1 +36600,1554264,143,7171,1 +36601,1554825,49,2488,1 +36602,1555202,55,2764,1 +36603,1555258,170,8543,1 +36604,1555261,33,1653,1 +36605,1555276,66,3325,1 +36606,1555296,96,4845,1 +36607,1555692,71,3563,1 +36608,1555701,49,2478,1 +36609,1555702,176,8837,1 +36610,1555704,28,1444,1 +36611,1555717,17,859,1 +36612,1555720,15,797,1 +36613,1555779,153,7676,1 +36614,1556649,97,4867,1 +36615,1556664,29,1460,1 +36616,1556682,156,7831,1 +36617,1556688,184,9243,1 +36618,1556694,13,662,1 +36619,1556700,120,6047,1 +36620,1556731,125,6271,1 +36621,1557127,84,4239,1 +36622,1557132,191,9596,1 +36623,1557138,152,7609,1 +36624,1557144,152,7645,1 +36625,1557156,155,7793,1 +36626,1557168,130,6518,1 +36627,1557168,91,4599,1 +36628,1557168,89,4470,1 +36629,1557189,135,6769,1 +36630,1557194,53,2669,1 +36631,1557197,138,6935,1 +36632,1557232,125,6285,1 +36633,1557245,145,7293,1 +36634,1557426,154,7740,1 +36635,1557697,188,9411,1 +36636,1558081,27,1382,1 +36637,1558092,176,8829,1 +36638,1558094,63,3151,1 +36639,1558106,24,1231,1 +36640,1558107,155,7788,1 +36641,1558107,108,5405,1 +36642,1558120,21,1079,1 +36643,1558141,10,534,1 +36644,1558166,149,7457,1 +36645,1558170,171,8589,1 +36646,1558190,100,5030,1 +36647,1558207,173,8671,1 +36648,1558251,76,3842,1 +36649,1558260,156,7816,1 +36650,1558309,110,5531,1 +36651,1558563,119,5965,1 +36652,1558587,96,4801,1 +36653,1558603,36,1802,1 +36654,1558608,54,2750,1 +36655,1558618,8,449,1 +36656,1558633,32,1634,1 +36657,1559043,147,7396,1 +36658,1559056,192,9602,1 +36659,1559062,136,6836,1 +36660,1559064,65,3253,1 +36661,1559088,106,5350,1 +36662,1559112,8,406,1 +36663,1559113,197,9889,1 +36664,1559113,114,5750,1 +36665,1559520,158,7901,1 +36666,1559520,54,2744,1 +36667,1559544,190,9523,1 +36668,1559568,22,1125,1 +36669,1559580,94,4736,1 +36670,1559580,50,2505,1 +36671,1559580,122,6130,1 +36672,1559676,189,9474,1 +36673,1560000,110,5501,1 +36674,1560006,158,7929,1 +36675,1560012,1,63,1 +36676,1560016,162,8125,1 +36677,1560048,180,9034,1 +36678,1560078,188,9422,1 +36679,1560506,86,4305,1 +36680,1560963,9,465,1 +36681,1560970,162,8143,1 +36682,1560972,43,2153,1 +36683,1560972,25,1280,1 +36684,1560973,140,7042,1 +36685,1560984,75,3788,1 +36686,1560985,118,5907,1 +36687,1560985,0,27,1 +36688,1560996,165,8289,1 +36689,1561024,153,7679,1 +36690,1561032,149,7454,1 +36691,1561045,107,5359,1 +36692,1561068,144,7205,1 +36693,1561073,118,5930,1 +36694,1561074,156,7809,1 +36695,1561081,6,318,1 +36696,1561096,135,6769,1 +36697,1561122,160,8039,1 +36698,1561440,156,7830,1 +36699,1561488,139,6957,1 +36700,1561597,198,9915,1 +36701,1561936,102,5140,1 +36702,1561945,59,2979,1 +36703,1562040,79,3982,1 +36704,1562403,26,1311,1 +36705,1562412,69,3485,1 +36706,1562412,191,9595,1 +36707,1562460,114,5750,1 +36708,1562880,40,2038,1 +36709,1562881,171,8599,1 +36710,1562904,123,6152,1 +36711,1562904,26,1318,1 +36712,1562913,109,5456,1 +36713,1562917,152,7642,1 +36714,1562920,58,2933,1 +36715,1562926,33,1691,1 +36716,1562937,61,3069,1 +36717,1562946,91,4554,1 +36718,1562952,119,5995,1 +36719,1562989,46,2337,1 +36720,1563073,7,369,1 +36721,1563396,163,8197,1 +36722,1563841,60,3046,1 +36723,1563841,111,5562,1 +36724,1563852,150,7523,1 +36725,1563853,115,5758,1 +36726,1563855,54,2728,1 +36727,1563858,196,9809,1 +36728,1563864,86,4349,1 +36729,1563870,193,9665,1 +36730,1563876,10,546,1 +36731,1563877,93,4673,1 +36732,1563879,180,9037,1 +36733,1563879,149,7472,1 +36734,1563888,107,5358,1 +36735,1563901,176,8834,1 +36736,1563902,31,1590,1 +36737,1563912,21,1060,1 +36738,1563915,30,1548,1 +36739,1563917,66,3336,1 +36740,1563924,134,6723,1 +36741,1563960,23,1156,1 +36742,1563966,151,7586,1 +36743,1564017,161,8059,1 +36744,1564035,96,4801,1 +36745,1564326,95,4769,1 +36746,1564330,60,3011,1 +36747,1565280,158,7910,1 +36748,1565292,92,4626,1 +36749,1565297,178,8944,1 +36750,1565301,161,8070,1 +36751,1565310,65,3260,1 +36752,1565352,199,9958,1 +36753,1565368,84,4240,1 +36754,1565760,4,243,1 +36755,1565760,107,5388,1 +36756,1565760,118,5944,1 +36757,1565760,168,8421,1 +36758,1565761,109,5451,1 +36759,1565761,185,9258,1 +36760,1565761,86,4321,1 +36761,1565761,128,6445,1 +36762,1565769,19,975,1 +36763,1565772,173,8689,1 +36764,1565772,86,4325,1 +36765,1565772,42,2118,1 +36766,1565772,144,7212,1 +36767,1565772,182,9114,1 +36768,1565772,179,8985,1 +36769,1565773,188,9402,1 +36770,1565778,130,6549,1 +36771,1565781,56,2832,1 +36772,1565781,83,4173,1 +36773,1565781,35,1779,1 +36774,1565781,109,5491,1 +36775,1565784,5,297,1 +36776,1565785,178,8941,1 +36777,1565785,135,6756,1 +36778,1565785,11,593,1 +36779,1565787,173,8663,1 +36780,1565788,143,7180,1 +36781,1565790,166,8324,1 +36782,1565796,104,5212,1 +36783,1565796,0,3,1 +36784,1565796,101,5063,1 +36785,1565796,62,3104,1 +36786,1565798,178,8934,1 +36787,1565808,195,9783,1 +36788,1565808,59,2985,1 +36789,1565808,196,9801,1 +36790,1565809,138,6940,1 +36791,1565810,67,3375,1 +36792,1565810,1,83,1 +36793,1565814,111,5573,1 +36794,1565821,76,3817,1 +36795,1565821,148,7436,1 +36796,1565823,5,271,1 +36797,1565832,180,9018,1 +36798,1565832,148,7419,1 +36799,1565833,188,9422,1 +36800,1565835,167,8377,1 +36801,1565836,171,8557,1 +36802,1565844,137,6854,1 +36803,1565844,188,9429,1 +36804,1565850,168,8426,1 +36805,1565850,25,1276,1 +36806,1565853,81,4063,1 +36807,1565857,97,4853,1 +36808,1565869,85,4280,1 +36809,1565872,37,1889,1 +36810,1565880,102,5140,1 +36811,1565880,116,5811,1 +36812,1565883,195,9777,1 +36813,1565892,70,3541,1 +36814,1565895,4,227,1 +36815,1565934,79,3970,1 +36816,1566240,140,7008,1 +36817,1566336,193,9674,1 +36818,1566732,145,7264,1 +36819,1566744,1,66,1 +36820,1567200,104,5240,1 +36821,1567200,131,6581,1 +36822,1567200,108,5448,1 +36823,1567200,24,1211,1 +36824,1567200,64,3211,1 +36825,1567201,22,1114,1 +36826,1567201,146,7336,1 +36827,1567201,134,6711,1 +36828,1567201,96,4815,1 +36829,1567203,59,2976,1 +36830,1567203,157,7861,1 +36831,1567209,112,5612,1 +36832,1567209,84,4204,1 +36833,1567209,166,8316,1 +36834,1567212,151,7600,1 +36835,1567212,179,8963,1 +36836,1567213,53,2695,1 +36837,1567213,20,1045,1 +36838,1567214,163,8174,1 +36839,1567224,168,8412,1 +36840,1567224,178,8941,1 +36841,1567225,39,1998,1 +36842,1567227,194,9741,1 +36843,1567231,7,356,1 +36844,1567231,196,9841,1 +36845,1567233,152,7629,1 +36846,1567234,176,8816,1 +36847,1567245,50,2550,1 +36848,1567248,104,5224,1 +36849,1567248,194,9729,1 +36850,1567249,107,5391,1 +36851,1567250,144,7242,1 +36852,1567260,189,9464,1 +36853,1567260,127,6376,1 +36854,1567261,62,3149,1 +36855,1567261,75,3800,1 +36856,1567263,38,1937,1 +36857,1567272,65,3256,1 +36858,1567291,95,4792,1 +36859,1567296,151,7572,1 +36860,1567299,195,9753,1 +36861,1567308,169,8462,1 +36862,1567320,78,3937,1 +36863,1567320,100,5014,1 +36864,1567344,91,4571,1 +36865,1567368,171,8575,1 +36866,1567381,170,8530,1 +36867,1567382,159,7970,1 +36868,1567383,48,2414,1 +36869,1567392,180,9028,1 +36870,1567480,150,7550,1 +36871,1567680,149,7491,1 +36872,1567681,85,4295,1 +36873,1567803,69,3465,1 +36874,1568256,188,9419,1 +36875,1568641,49,2467,1 +36876,1568643,166,8302,1 +36877,1568652,39,1981,1 +36878,1568653,123,6180,1 +36879,1568654,97,4870,1 +36880,1568664,135,6759,1 +36881,1568664,199,9962,1 +36882,1568673,114,5707,1 +36883,1568673,141,7091,1 +36884,1568678,90,4503,1 +36885,1568679,165,8297,1 +36886,1568697,75,3785,1 +36887,1568700,189,9464,1 +36888,1568701,4,244,1 +36889,1568702,51,2559,1 +36890,1568709,67,3374,1 +36891,1568721,135,6775,1 +36892,1568721,30,1547,1 +36893,1568724,91,4584,1 +36894,1568724,143,7193,1 +36895,1568724,54,2736,1 +36896,1568736,131,6553,1 +36897,1568745,179,8952,1 +36898,1568747,79,3958,1 +36899,1568760,184,9222,1 +36900,1568809,63,3185,1 +36901,1568811,34,1741,1 +36902,1569120,15,772,1 +36903,1569120,166,8329,1 +36904,1569120,54,2702,1 +36905,1569120,146,7314,1 +36906,1569120,164,8238,1 +36907,1569120,157,7863,1 +36908,1569121,58,2918,1 +36909,1569121,116,5814,1 +36910,1569121,147,7359,1 +36911,1569121,104,5209,1 +36912,1569121,7,371,1 +36913,1569125,77,3878,1 +36914,1569126,163,8198,1 +36915,1569126,18,926,1 +36916,1569126,144,7213,1 +36917,1569126,176,8838,1 +36918,1569127,50,2504,1 +36919,1569129,194,9714,1 +36920,1569132,20,1028,1 +36921,1569132,189,9487,1 +36922,1569132,3,151,1 +36923,1569133,41,2095,1 +36924,1569134,168,8434,1 +36925,1569138,131,6561,1 +36926,1569138,105,5257,1 +36927,1569139,177,8886,1 +36928,1569142,188,9416,1 +36929,1569144,48,2445,1 +36930,1569144,65,3300,1 +36931,1569147,196,9823,1 +36932,1569147,81,4056,1 +36933,1569148,72,3611,1 +36934,1569151,158,7904,1 +36935,1569151,77,3896,1 +36936,1569156,95,4778,1 +36937,1569156,105,5254,1 +36938,1569156,122,6140,1 +36939,1569157,0,8,1 +36940,1569159,69,3470,1 +36941,1569160,193,9654,1 +36942,1569162,11,577,1 +36943,1569169,191,9563,1 +36944,1569174,5,264,1 +36945,1569178,115,5782,1 +36946,1569180,50,2520,1 +36947,1569180,91,4594,1 +36948,1569189,46,2339,1 +36949,1569192,65,3263,1 +36950,1569195,94,4726,1 +36951,1569228,123,6165,1 +36952,1569229,194,9736,1 +36953,1569264,100,5047,1 +36954,1569288,178,8937,1 +36955,1569441,34,1716,1 +36956,1569600,26,1311,1 +36957,1569726,97,4899,1 +36958,1570092,136,6814,1 +36959,1570102,150,7518,1 +36960,1570140,150,7528,1 +36961,1570212,190,9508,1 +36962,1570224,16,803,1 +36963,1570332,116,5831,1 +36964,1570560,54,2708,1 +36965,1570560,27,1383,1 +36966,1570560,102,5107,1 +36967,1570562,34,1736,1 +36968,1570569,155,7774,1 +36969,1570572,155,7790,1 +36970,1570572,137,6871,1 +36971,1570572,52,2612,1 +36972,1570573,123,6172,1 +36973,1570582,115,5770,1 +36974,1570585,184,9232,1 +36975,1570585,112,5616,1 +36976,1570593,141,7080,1 +36977,1570597,6,334,1 +36978,1570609,183,9177,1 +36979,1570622,5,277,1 +36980,1570644,117,5867,1 +36981,1570716,153,7695,1 +36982,1570729,157,7863,1 +36983,1571040,74,3702,1 +36984,1571044,133,6696,1 +36985,1571049,89,4460,1 +36986,1571064,180,9005,1 +36987,1571068,96,4802,1 +36988,1571139,45,2285,1 +36989,1571184,83,4153,1 +36990,1571222,121,6056,1 +36991,1571238,21,1081,1 +36992,1571274,164,8230,1 +36993,1571520,95,4774,1 +36994,1571520,187,9400,1 +36995,1571521,154,7749,1 +36996,1571521,176,8804,1 +36997,1571523,72,3650,1 +36998,1571526,175,8774,1 +36999,1571529,184,9222,1 +37000,1571532,132,6636,1 +37001,1571532,122,6148,1 +37002,1571532,67,3385,1 +37003,1571532,91,4567,1 +37004,1571532,59,2987,1 +37005,1571532,155,7774,1 +37006,1571533,17,885,1 +37007,1571538,142,7123,1 +37008,1571541,142,7116,1 +37009,1571544,133,6661,1 +37010,1571545,139,6986,1 +37011,1571545,41,2052,1 +37012,1571556,80,4043,1 +37013,1571556,167,8364,1 +37014,1571556,90,4539,1 +37015,1571569,114,5717,1 +37016,1571570,195,9751,1 +37017,1571592,29,1485,1 +37018,1571592,102,5125,1 +37019,1571592,156,7823,1 +37020,1571592,153,7669,1 +37021,1571596,142,7132,1 +37022,1571605,151,7578,1 +37023,1571605,47,2363,1 +37024,1571620,63,3195,1 +37025,1571643,168,8405,1 +37026,1571647,105,5272,1 +37027,1571653,21,1056,1 +37028,1571676,164,8203,1 +37029,1571676,174,8705,1 +37030,1571688,50,2513,1 +37031,1572002,71,3557,1 +37032,1572507,91,4593,1 +37033,1572528,144,7230,1 +37034,1572591,38,1915,1 +37035,1572972,193,9664,1 +37036,1573008,45,2273,1 +37037,1573440,192,9625,1 +37038,1573440,166,8326,1 +37039,1573452,172,8640,1 +37040,1573455,15,795,1 +37041,1573464,103,5160,1 +37042,1573464,85,4272,1 +37043,1573467,104,5223,1 +37044,1573468,33,1673,1 +37045,1573470,144,7230,1 +37046,1573471,123,6190,1 +37047,1573488,189,9482,1 +37048,1573489,93,4662,1 +37049,1573497,77,3871,1 +37050,1573519,41,2059,1 +37051,1573524,23,1181,1 +37052,1573529,170,8530,1 +37053,1573941,101,5068,1 +37054,1573944,78,3933,1 +37055,1573945,62,3145,1 +37056,1573947,155,7751,1 +37057,1573980,183,9169,1 +37058,1574027,123,6193,1 +37059,1574076,77,3851,1 +37060,1574954,154,7745,1 +37061,1575362,117,5891,1 +37062,1575363,29,1490,1 +37063,1575384,105,5285,1 +37064,1575386,178,8948,1 +37065,1575390,63,3172,1 +37066,1575396,14,703,1 +37067,1575460,159,7989,1 +37068,1575578,197,9894,1 +37069,1576320,180,9008,1 +37070,1576368,134,6732,1 +37071,1576398,67,3372,1 +37072,1576800,4,216,1 +37073,1576800,101,5096,1 +37074,1576800,9,489,1 +37075,1576800,110,5533,1 +37076,1576809,73,3669,1 +37077,1576812,163,8162,1 +37078,1576812,125,6294,1 +37079,1576812,148,7408,1 +37080,1576818,19,990,1 +37081,1576821,132,6626,1 +37082,1576824,60,3037,1 +37083,1576825,183,9156,1 +37084,1576830,14,717,1 +37085,1576836,65,3272,1 +37086,1576836,47,2392,1 +37087,1576843,152,7620,1 +37088,1576844,49,2468,1 +37089,1576896,124,6217,1 +37090,1576897,176,8816,1 +37091,1576903,145,7263,1 +37092,1576908,2,130,1 +37093,1576910,170,8544,1 +37094,1576920,35,1775,1 +37095,1576938,62,3103,1 +37096,1576972,163,8192,1 +37097,1577280,143,7172,1 +37098,1577292,196,9845,1 +37099,1577760,131,6554,1 +37100,1577772,77,3873,1 +37101,1577772,195,9766,1 +37102,1577781,28,1445,1 +37103,1577783,160,8023,1 +37104,1577784,115,5777,1 +37105,1577784,161,8085,1 +37106,1577791,86,4325,1 +37107,1577793,81,4070,1 +37108,1577797,53,2666,1 +37109,1577809,33,1679,1 +37110,1577811,144,7248,1 +37111,1577815,69,3478,1 +37112,1577818,7,394,1 +37113,1577820,28,1404,1 +37114,1577826,12,612,1 +37115,1577847,44,2216,1 +37116,1577847,127,6391,1 +37117,1577853,50,2543,1 +37118,1577901,25,1288,1 +37119,1577904,140,7033,1 +37120,1577923,5,292,1 +37121,1578264,151,7564,1 +37122,1578336,184,9246,1 +37123,1578492,101,5089,1 +37124,1578726,131,6587,1 +37125,1578732,170,8502,1 +37126,1578741,189,9469,1 +37127,1578744,178,8931,1 +37128,1578747,190,9523,1 +37129,1578768,141,7081,1 +37130,1578792,155,7791,1 +37131,1578816,31,1600,1 +37132,1578889,61,3070,1 +37133,1579695,62,3121,1 +37134,1579701,73,3688,1 +37135,1579705,108,5416,1 +37136,1579705,74,3717,1 +37137,1579705,109,5483,1 +37138,1579707,6,331,1 +37139,1579716,53,2683,1 +37140,1579718,33,1700,1 +37141,1579720,61,3100,1 +37142,1579729,63,3168,1 +37143,1579740,178,8920,1 +37144,1579741,155,7800,1 +37145,1579743,179,8971,1 +37146,1579752,98,4928,1 +37147,1579764,56,2847,1 +37148,1579794,94,4738,1 +37149,1579800,5,280,1 +37150,1579815,195,9764,1 +37151,1579824,112,5641,1 +37152,1579893,88,4405,1 +37153,1579896,33,1680,1 +37154,1579899,155,7780,1 +37155,1580163,117,5891,1 +37156,1580184,37,1880,1 +37157,1580194,108,5434,1 +37158,1580202,95,4779,1 +37159,1580217,125,6275,1 +37160,1580221,156,7809,1 +37161,1580233,167,8387,1 +37162,1580264,25,1297,1 +37163,1580268,180,9024,1 +37164,1580271,3,197,1 +37165,1580287,36,1801,1 +37166,1580292,84,4206,1 +37167,1580640,7,366,1 +37168,1580646,28,1402,1 +37169,1580676,44,2202,1 +37170,1580680,92,4649,1 +37171,1580701,146,7333,1 +37172,1581134,23,1168,1 +37173,1581196,150,7526,1 +37174,1581264,40,2008,1 +37175,1581300,184,9228,1 +37176,1581328,8,444,1 +37177,1581625,0,5,1 +37178,1582080,41,2059,1 +37179,1582080,60,3006,1 +37180,1582080,129,6463,1 +37181,1582081,117,5858,1 +37182,1582086,182,9142,1 +37183,1582086,169,8458,1 +37184,1582092,60,3001,1 +37185,1582092,116,5812,1 +37186,1582092,86,4346,1 +37187,1582092,45,2290,1 +37188,1582092,99,4981,1 +37189,1582093,98,4947,1 +37190,1582093,53,2669,1 +37191,1582094,193,9673,1 +37192,1582098,131,6600,1 +37193,1582099,189,9472,1 +37194,1582102,147,7393,1 +37195,1582104,120,6001,1 +37196,1582104,115,5761,1 +37197,1582104,193,9692,1 +37198,1582104,1,66,1 +37199,1582104,141,7098,1 +37200,1582104,6,332,1 +37201,1582104,98,4921,1 +37202,1582105,190,9512,1 +37203,1582105,96,4825,1 +37204,1582107,169,8470,1 +37205,1582107,89,4470,1 +37206,1582107,73,3684,1 +37207,1582107,173,8697,1 +37208,1582108,175,8759,1 +37209,1582110,37,1854,1 +37210,1582110,50,2530,1 +37211,1582111,96,4805,1 +37212,1582116,194,9724,1 +37213,1582116,138,6908,1 +37214,1582116,131,6554,1 +37215,1582116,118,5939,1 +37216,1582116,109,5491,1 +37217,1582117,87,4357,1 +37218,1582117,21,1090,1 +37219,1582118,17,873,1 +37220,1582122,147,7369,1 +37221,1582122,13,663,1 +37222,1582123,24,1239,1 +37223,1582125,40,2015,1 +37224,1582126,133,6655,1 +37225,1582129,70,3549,1 +37226,1582132,34,1747,1 +37227,1582135,96,4817,1 +37228,1582135,99,4985,1 +37229,1582140,65,3263,1 +37230,1582140,77,3853,1 +37231,1582140,125,6262,1 +37232,1582141,155,7779,1 +37233,1582152,86,4302,1 +37234,1582155,33,1652,1 +37235,1582158,152,7626,1 +37236,1582164,19,975,1 +37237,1582164,156,7837,1 +37238,1582164,37,1852,1 +37239,1582164,85,4293,1 +37240,1582170,66,3337,1 +37241,1582171,100,5016,1 +37242,1582176,3,181,1 +37243,1582178,1,84,1 +37244,1582179,14,735,1 +37245,1582188,153,7676,1 +37246,1582188,170,8516,1 +37247,1582210,96,4805,1 +37248,1582212,190,9506,1 +37249,1582213,185,9286,1 +37250,1582213,87,4392,1 +37251,1582224,129,6461,1 +37252,1582224,0,38,1 +37253,1582228,122,6101,1 +37254,1582238,71,3561,1 +37255,1582248,66,3324,1 +37256,1582248,68,3445,1 +37257,1582308,63,3186,1 +37258,1582560,73,3661,1 +37259,1582561,30,1502,1 +37260,1582563,165,8262,1 +37261,1582572,58,2921,1 +37262,1582573,62,3111,1 +37263,1582573,73,3661,1 +37264,1582584,189,9470,1 +37265,1582596,191,9588,1 +37266,1582596,0,38,1 +37267,1582597,195,9769,1 +37268,1582602,81,4082,1 +37269,1582617,199,9964,1 +37270,1582620,191,9575,1 +37271,1582644,78,3943,1 +37272,1582668,45,2296,1 +37273,1582692,9,454,1 +37274,1583040,8,403,1 +37275,1583040,173,8660,1 +37276,1583040,57,2865,1 +37277,1583044,2,111,1 +37278,1583049,32,1636,1 +37279,1583052,143,7197,1 +37280,1583076,5,276,1 +37281,1583077,112,5650,1 +37282,1583130,80,4023,1 +37283,1583138,127,6387,1 +37284,1583155,45,2286,1 +37285,1583161,179,8959,1 +37286,1583181,97,4856,1 +37287,1583221,7,360,1 +37288,1583520,171,8599,1 +37289,1583524,42,2107,1 +37290,1583568,29,1482,1 +37291,1583664,140,7005,1 +37292,1583665,52,2624,1 +37293,1583787,191,9590,1 +37294,1584012,150,7529,1 +37295,1584048,160,8038,1 +37296,1584491,124,6233,1 +37297,1584960,61,3094,1 +37298,1584960,116,5824,1 +37299,1584960,140,7038,1 +37300,1584961,108,5427,1 +37301,1584963,141,7066,1 +37302,1584963,17,852,1 +37303,1584966,20,1008,1 +37304,1584969,67,3353,1 +37305,1584970,110,5539,1 +37306,1584970,97,4872,1 +37307,1584972,72,3648,1 +37308,1584972,6,332,1 +37309,1584972,51,2555,1 +37310,1584972,135,6754,1 +37311,1584974,144,7211,1 +37312,1584984,197,9854,1 +37313,1584984,173,8675,1 +37314,1584985,138,6920,1 +37315,1584991,151,7561,1 +37316,1584996,62,3127,1 +37317,1585011,48,2423,1 +37318,1585014,4,243,1 +37319,1585020,99,4986,1 +37320,1585020,5,300,1 +37321,1585021,129,6493,1 +37322,1585048,50,2535,1 +37323,1585064,185,9274,1 +37324,1585070,102,5149,1 +37325,1585128,150,7539,1 +37326,1585129,173,8664,1 +37327,1585152,84,4227,1 +37328,1585440,121,6081,1 +37329,1585440,2,141,1 +37330,1585440,169,8481,1 +37331,1585441,156,7814,1 +37332,1585443,146,7326,1 +37333,1585443,100,5022,1 +37334,1585449,150,7514,1 +37335,1585451,46,2321,1 +37336,1585452,81,4080,1 +37337,1585452,28,1425,1 +37338,1585453,127,6366,1 +37339,1585454,56,2814,1 +37340,1585457,151,7580,1 +37341,1585458,91,4552,1 +37342,1585464,86,4320,1 +37343,1585465,121,6068,1 +37344,1585466,105,5293,1 +37345,1585470,13,683,1 +37346,1585476,65,3278,1 +37347,1585476,27,1359,1 +37348,1585476,143,7180,1 +37349,1585479,194,9750,1 +37350,1585488,3,164,1 +37351,1585494,35,1782,1 +37352,1585497,120,6042,1 +37353,1585500,162,8108,1 +37354,1585500,44,2213,1 +37355,1585503,111,5572,1 +37356,1585503,148,7417,1 +37357,1585512,161,8058,1 +37358,1585536,193,9671,1 +37359,1585536,126,6308,1 +37360,1585572,89,4452,1 +37361,1585644,172,8640,1 +37362,1585758,115,5767,1 +37363,1585932,168,8448,1 +37364,1585944,65,3265,1 +37365,1585995,38,1940,1 +37366,1586028,108,5432,1 +37367,1586030,135,6763,1 +37368,1586112,41,2082,1 +37369,1586400,20,1007,1 +37370,1586428,120,6035,1 +37371,1586442,21,1084,1 +37372,1586508,175,8788,1 +37373,1586882,143,7165,1 +37374,1586888,18,942,1 +37375,1586889,171,8573,1 +37376,1586976,16,828,1 +37377,1587362,88,4429,1 +37378,1587363,94,4743,1 +37379,1587385,4,214,1 +37380,1587421,173,8674,1 +37381,1587483,49,2456,1 +37382,1587840,183,9160,1 +37383,1587841,79,3998,1 +37384,1587846,146,7333,1 +37385,1587853,162,8146,1 +37386,1587864,50,2531,1 +37387,1587864,110,5543,1 +37388,1587877,14,741,1 +37389,1587888,122,6119,1 +37390,1587891,101,5100,1 +37391,1587912,32,1650,1 +37392,1587912,151,7564,1 +37393,1587915,120,6006,1 +37394,1587931,189,9500,1 +37395,1588808,28,1423,1 +37396,1588814,8,442,1 +37397,1588825,155,7781,1 +37398,1588837,23,1166,1 +37399,1588860,91,4597,1 +37400,1588870,97,4863,1 +37401,1588886,142,7122,1 +37402,1588890,64,3227,1 +37403,1589331,23,1169,1 +37404,1589760,61,3055,1 +37405,1589763,120,6034,1 +37406,1589817,143,7193,1 +37407,1589820,23,1163,1 +37408,1589880,101,5066,1 +37409,1589881,144,7250,1 +37410,1590253,136,6819,1 +37411,1590336,36,1838,1 +37412,1590727,100,5042,1 +37413,1590834,184,9207,1 +37414,1590853,111,5585,1 +37415,1591200,19,960,1 +37416,1591204,127,6369,1 +37417,1591218,119,5970,1 +37418,1591224,143,7187,1 +37419,1591233,48,2438,1 +37420,1591236,118,5937,1 +37421,1591250,68,3419,1 +37422,1591251,93,4680,1 +37423,1591251,171,8596,1 +37424,1591272,161,8076,1 +37425,1591273,50,2537,1 +37426,1591285,49,2452,1 +37427,1591308,136,6812,1 +37428,1591356,122,6150,1 +37429,1591719,169,8498,1 +37430,1592172,125,6291,1 +37431,1592173,11,592,1 +37432,1592175,75,3763,1 +37433,1592181,125,6285,1 +37434,1592185,79,3967,1 +37435,1592187,189,9469,1 +37436,1592194,57,2893,1 +37437,1592197,132,6619,1 +37438,1592205,27,1383,1 +37439,1592221,154,7734,1 +37440,1592238,45,2275,1 +37441,1592258,10,512,1 +37442,1592329,12,618,1 +37443,1592665,69,3457,1 +37444,1592865,37,1886,1 +37445,1593120,54,2707,1 +37446,1593127,116,5837,1 +37447,1593140,119,5953,1 +37448,1593147,76,3827,1 +37449,1593157,74,3725,1 +37450,1593165,63,3161,1 +37451,1593168,61,3100,1 +37452,1593180,135,6763,1 +37453,1593180,197,9889,1 +37454,1593186,15,771,1 +37455,1593193,66,3331,1 +37456,1593213,70,3514,1 +37457,1593244,181,9052,1 +37458,1593265,138,6925,1 +37459,1593612,50,2515,1 +37460,1593624,100,5024,1 +37461,1593636,73,3687,1 +37462,1594081,160,8043,1 +37463,1594103,166,8323,1 +37464,1594118,78,3918,1 +37465,1594139,51,2567,1 +37466,1594140,84,4210,1 +37467,1594141,10,513,1 +37468,1594154,158,7908,1 +37469,1594164,188,9440,1 +37470,1594189,198,9944,1 +37471,1594560,191,9589,1 +37472,1594560,14,722,1 +37473,1594560,92,4604,1 +37474,1594560,123,6193,1 +37475,1594560,24,1229,1 +37476,1594563,161,8059,1 +37477,1594575,61,3076,1 +37478,1594575,7,394,1 +37479,1594588,68,3447,1 +37480,1594593,137,6878,1 +37481,1594596,198,9903,1 +37482,1594608,124,6205,1 +37483,1594609,143,7174,1 +37484,1594609,69,3467,1 +37485,1594621,139,6978,1 +37486,1594623,170,8540,1 +37487,1594630,52,2648,1 +37488,1594632,119,5979,1 +37489,1594635,35,1768,1 +37490,1594704,119,5994,1 +37491,1594718,36,1826,1 +37492,1594862,148,7436,1 +37493,1595040,86,4324,1 +37494,1595046,128,6432,1 +37495,1595056,36,1809,1 +37496,1595064,198,9945,1 +37497,1595066,161,8093,1 +37498,1595076,154,7708,1 +37499,1595078,19,970,1 +37500,1595086,36,1846,1 +37501,1595101,148,7433,1 +37502,1595136,69,3470,1 +37503,1595160,69,3451,1 +37504,1595181,21,1098,1 +37505,1595544,146,7350,1 +37506,1595565,88,4430,1 +37507,1596000,59,2959,1 +37508,1596000,190,9509,1 +37509,1596000,171,8598,1 +37510,1596000,43,2173,1 +37511,1596000,181,9097,1 +37512,1596000,32,1624,1 +37513,1596001,41,2074,1 +37514,1596001,143,7189,1 +37515,1596002,142,7132,1 +37516,1596006,176,8821,1 +37517,1596006,17,880,1 +37518,1596006,82,4121,1 +37519,1596012,99,4961,1 +37520,1596012,100,5035,1 +37521,1596012,194,9746,1 +37522,1596012,58,2946,1 +37523,1596012,28,1402,1 +37524,1596012,108,5402,1 +37525,1596013,148,7401,1 +37526,1596027,32,1614,1 +37527,1596028,43,2181,1 +37528,1596036,161,8088,1 +37529,1596036,181,9065,1 +37530,1596039,112,5650,1 +37531,1596042,175,8770,1 +37532,1596049,70,3513,1 +37533,1596050,57,2885,1 +37534,1596051,38,1927,1 +37535,1596052,150,7511,1 +37536,1596073,197,9872,1 +37537,1596074,2,111,1 +37538,1596084,138,6924,1 +37539,1596086,140,7010,1 +37540,1596088,34,1707,1 +37541,1596097,97,4874,1 +37542,1596114,96,4824,1 +37543,1596120,124,6245,1 +37544,1596132,35,1759,1 +37545,1596141,23,1188,1 +37546,1596150,146,7316,1 +37547,1596156,119,5986,1 +37548,1596178,163,8159,1 +37549,1596480,3,189,1 +37550,1596481,142,7148,1 +37551,1596481,78,3910,1 +37552,1596490,197,9856,1 +37553,1596492,143,7183,1 +37554,1596492,168,8437,1 +37555,1596495,41,2075,1 +37556,1596496,164,8229,1 +37557,1596504,147,7371,1 +37558,1596504,90,4547,1 +37559,1596507,167,8355,1 +37560,1596516,162,8130,1 +37561,1596516,150,7550,1 +37562,1596519,145,7278,1 +37563,1596520,11,562,1 +37564,1596522,146,7343,1 +37565,1596540,30,1538,1 +37566,1596543,198,9913,1 +37567,1596552,178,8942,1 +37568,1596564,154,7750,1 +37569,1596566,38,1934,1 +37570,1596577,168,8445,1 +37571,1596650,4,220,1 +37572,1596708,189,9462,1 +37573,1596960,41,2089,1 +37574,1596961,129,6475,1 +37575,1596966,68,3414,1 +37576,1596972,68,3426,1 +37577,1596974,35,1784,1 +37578,1596991,63,3191,1 +37579,1596994,95,4791,1 +37580,1596996,148,7411,1 +37581,1597008,190,9545,1 +37582,1597021,173,8696,1 +37583,1597440,17,874,1 +37584,1597446,13,690,1 +37585,1597453,192,9636,1 +37586,1597454,166,8301,1 +37587,1597462,89,4496,1 +37588,1597464,72,3601,1 +37589,1597465,42,2137,1 +37590,1597470,176,8847,1 +37591,1597476,119,5963,1 +37592,1597485,195,9767,1 +37593,1597486,35,1777,1 +37594,1597488,157,7852,1 +37595,1597488,84,4247,1 +37596,1597491,71,3557,1 +37597,1597501,16,850,1 +37598,1597505,102,5127,1 +37599,1597544,102,5144,1 +37600,1597670,102,5142,1 +37601,1597920,129,6490,1 +37602,1597920,155,7769,1 +37603,1597932,117,5865,1 +37604,1597945,31,1564,1 +37605,1597968,0,41,1 +37606,1597980,79,3972,1 +37607,1597989,87,4368,1 +37608,1598005,44,2223,1 +37609,1598880,194,9745,1 +37610,1598881,17,881,1 +37611,1598883,190,9539,1 +37612,1598883,41,2061,1 +37613,1598893,87,4375,1 +37614,1598904,62,3102,1 +37615,1598904,94,4748,1 +37616,1598916,189,9464,1 +37617,1598916,179,8958,1 +37618,1598952,154,7701,1 +37619,1598952,53,2691,1 +37620,1598965,1,81,1 +37621,1598991,21,1066,1 +37622,1599360,52,2602,1 +37623,1599360,111,5577,1 +37624,1599363,192,9619,1 +37625,1599386,25,1281,1 +37626,1599444,41,2079,1 +37627,1599445,180,9004,1 +37628,1599840,158,7929,1 +37629,1599852,62,3148,1 +37630,1599864,73,3651,1 +37631,1599865,187,9363,1 +37632,1599867,182,9135,1 +37633,1599868,15,800,1 +37634,1599879,19,969,1 +37635,1599888,95,4777,1 +37636,1599888,104,5222,1 +37637,1599888,52,2616,1 +37638,1599901,48,2447,1 +37639,1599909,100,5024,1 +37640,1599913,190,9516,1 +37641,1599936,91,4569,1 +37642,1599948,116,5816,1 +37643,1599958,14,714,1 +37644,1599960,35,1754,1 +37645,1599972,108,5404,1 +37646,1599990,48,2431,1 +37647,1600044,35,1799,1 +37648,1600141,171,8600,1 +37649,1600322,197,9889,1 +37650,1600347,151,7590,1 +37651,1600369,22,1116,1 +37652,1600394,187,9359,1 +37653,1600404,114,5707,1 +37654,1600428,31,1586,1 +37655,1600491,75,3754,1 +37656,1600800,151,7595,1 +37657,1600801,142,7121,1 +37658,1600801,67,3387,1 +37659,1600812,101,5100,1 +37660,1600812,129,6493,1 +37661,1600812,132,6601,1 +37662,1600813,102,5145,1 +37663,1600815,190,9544,1 +37664,1600824,87,4380,1 +37665,1600824,195,9779,1 +37666,1600831,107,5397,1 +37667,1600836,38,1932,1 +37668,1600836,128,6428,1 +37669,1600837,161,8083,1 +37670,1600842,114,5739,1 +37671,1600848,42,2138,1 +37672,1600848,66,3306,1 +37673,1600848,67,3390,1 +37674,1600848,175,8762,1 +37675,1600851,176,8844,1 +37676,1600854,51,2564,1 +37677,1600856,31,1585,1 +37678,1600860,187,9359,1 +37679,1600863,79,3955,1 +37680,1600898,66,3342,1 +37681,1600920,138,6921,1 +37682,1600920,41,2061,1 +37683,1600920,137,6873,1 +37684,1600944,27,1360,1 +37685,1600944,43,2185,1 +37686,1600958,97,4860,1 +37687,1601328,1,83,1 +37688,1601436,45,2293,1 +37689,1601443,55,2751,1 +37690,1601760,17,863,1 +37691,1601760,54,2734,1 +37692,1601761,76,3826,1 +37693,1601762,37,1896,1 +37694,1601763,162,8130,1 +37695,1601766,145,7282,1 +37696,1601772,37,1878,1 +37697,1601775,162,8115,1 +37698,1601775,167,8367,1 +37699,1601778,175,8795,1 +37700,1601784,104,5237,1 +37701,1601793,47,2393,1 +37702,1601794,139,6988,1 +37703,1601796,25,1288,1 +37704,1601796,137,6888,1 +37705,1601796,172,8607,1 +37706,1601841,111,5553,1 +37707,1601844,99,4979,1 +37708,1601845,64,3219,1 +37709,1601871,124,6213,1 +37710,1601940,86,4318,1 +37711,1601958,136,6804,1 +37712,1602076,183,9187,1 +37713,1602242,63,3188,1 +37714,1602244,149,7488,1 +37715,1602253,59,2958,1 +37716,1602256,188,9415,1 +37717,1602264,27,1383,1 +37718,1602276,49,2484,1 +37719,1602288,125,6271,1 +37720,1602288,27,1352,1 +37721,1602369,146,7309,1 +37722,1602720,42,2111,1 +37723,1602729,78,3950,1 +37724,1602744,139,6982,1 +37725,1602780,25,1286,1 +37726,1602796,123,6195,1 +37727,1602798,22,1128,1 +37728,1602960,90,4519,1 +37729,1603200,44,2204,1 +37730,1603200,91,4551,1 +37731,1603201,185,9275,1 +37732,1603208,156,7835,1 +37733,1603209,0,9,1 +37734,1603212,92,4642,1 +37735,1603213,192,9608,1 +37736,1603224,127,6365,1 +37737,1603225,44,2229,1 +37738,1603228,155,7788,1 +37739,1603236,6,327,1 +37740,1603260,100,5004,1 +37741,1603284,137,6874,1 +37742,1603284,107,5356,1 +37743,1603296,89,4452,1 +37744,1603302,92,4628,1 +37745,1603320,116,5848,1 +37746,1603335,94,4744,1 +37747,1603681,41,2083,1 +37748,1603689,162,8111,1 +37749,1603693,181,9079,1 +37750,1603693,27,1398,1 +37751,1603704,42,2144,1 +37752,1603717,72,3618,1 +37753,1603749,170,8543,1 +37754,1603779,80,4035,1 +37755,1603866,111,5561,1 +37756,1604160,55,2751,1 +37757,1604172,156,7827,1 +37758,1604172,17,876,1 +37759,1604248,94,4735,1 +37760,1604292,172,8650,1 +37761,1604640,122,6139,1 +37762,1604664,122,6118,1 +37763,1605156,42,2119,1 +37764,1605159,52,2629,1 +37765,1605168,180,9042,1 +37766,1605202,125,6293,1 +37767,1605351,187,9379,1 +37768,1605600,83,4158,1 +37769,1605600,38,1929,1 +37770,1605600,73,3670,1 +37771,1605612,93,4689,1 +37772,1605612,12,641,1 +37773,1605613,151,7589,1 +37774,1605613,130,6547,1 +37775,1605614,173,8652,1 +37776,1605618,12,642,1 +37777,1605623,168,8436,1 +37778,1605624,77,3892,1 +37779,1605624,131,6599,1 +37780,1605625,22,1136,1 +37781,1605625,122,6130,1 +37782,1605635,58,2911,1 +37783,1605636,158,7931,1 +37784,1605637,130,6520,1 +37785,1605699,141,7100,1 +37786,1605699,178,8940,1 +37787,1605721,142,7134,1 +37788,1605732,122,6132,1 +37789,1605792,163,8182,1 +37790,1606104,197,9892,1 +37791,1606109,99,4974,1 +37792,1606116,18,926,1 +37793,1606144,161,8055,1 +37794,1606560,67,3379,1 +37795,1606561,25,1262,1 +37796,1606572,164,8202,1 +37797,1606574,56,2840,1 +37798,1606574,112,5620,1 +37799,1606576,29,1489,1 +37800,1606586,60,3047,1 +37801,1606593,10,529,1 +37802,1606596,122,6143,1 +37803,1606601,160,8029,1 +37804,1606605,52,2631,1 +37805,1606608,73,3677,1 +37806,1606629,128,6421,1 +37807,1606644,158,7922,1 +37808,1606644,129,6481,1 +37809,1606645,191,9567,1 +37810,1606656,56,2820,1 +37811,1606656,71,3594,1 +37812,1606683,25,1289,1 +37813,1606767,87,4354,1 +37814,1607040,108,5435,1 +37815,1607043,198,9913,1 +37816,1607052,121,6077,1 +37817,1607052,52,2603,1 +37818,1607053,194,9721,1 +37819,1607064,92,4633,1 +37820,1607089,127,6373,1 +37821,1607089,100,5048,1 +37822,1607089,33,1659,1 +37823,1607112,151,7592,1 +37824,1607112,21,1075,1 +37825,1607124,117,5895,1 +37826,1607130,62,3140,1 +37827,1607160,143,7178,1 +37828,1607173,117,5884,1 +37829,1607175,185,9274,1 +37830,1607520,179,8957,1 +37831,1607520,116,5840,1 +37832,1607520,152,7637,1 +37833,1607520,182,9107,1 +37834,1607520,112,5628,1 +37835,1607520,93,4665,1 +37836,1607520,67,3359,1 +37837,1607521,177,8868,1 +37838,1607522,125,6283,1 +37839,1607529,159,7976,1 +37840,1607532,52,2648,1 +37841,1607532,103,5198,1 +37842,1607532,131,6583,1 +37843,1607532,171,8566,1 +37844,1607532,162,8119,1 +37845,1607533,32,1620,1 +37846,1607533,192,9621,1 +37847,1607534,164,8204,1 +37848,1607535,8,445,1 +37849,1607535,58,2931,1 +37850,1607535,10,525,1 +37851,1607536,142,7114,1 +37852,1607537,172,8632,1 +37853,1607541,149,7453,1 +37854,1607541,76,3813,1 +37855,1607544,10,546,1 +37856,1607545,22,1103,1 +37857,1607546,168,8416,1 +37858,1607546,24,1217,1 +37859,1607546,164,8223,1 +37860,1607547,14,703,1 +37861,1607547,69,3499,1 +37862,1607549,113,5679,1 +37863,1607550,151,7564,1 +37864,1607553,188,9436,1 +37865,1607553,185,9281,1 +37866,1607554,165,8261,1 +37867,1607556,20,1028,1 +37868,1607556,54,2704,1 +37869,1607557,46,2335,1 +37870,1607557,172,8617,1 +37871,1607558,2,127,1 +37872,1607558,156,7822,1 +37873,1607560,132,6629,1 +37874,1607560,183,9185,1 +37875,1607568,149,7457,1 +37876,1607568,65,3298,1 +37877,1607568,197,9862,1 +37878,1607568,69,3460,1 +37879,1607568,168,8450,1 +37880,1607569,65,3274,1 +37881,1607570,103,5182,1 +37882,1607572,23,1159,1 +37883,1607574,185,9286,1 +37884,1607577,136,6805,1 +37885,1607580,164,8215,1 +37886,1607580,88,4449,1 +37887,1607580,51,2578,1 +37888,1607580,125,6264,1 +37889,1607583,97,4866,1 +37890,1607584,147,7377,1 +37891,1607586,159,7961,1 +37892,1607592,165,8266,1 +37893,1607599,174,8736,1 +37894,1607604,117,5882,1 +37895,1607608,130,6507,1 +37896,1607613,67,3385,1 +37897,1607613,19,977,1 +37898,1607628,48,2411,1 +37899,1607628,58,2936,1 +37900,1607637,76,3848,1 +37901,1607640,126,6315,1 +37902,1607640,160,8042,1 +37903,1607640,189,9492,1 +37904,1607664,136,6826,1 +37905,1607693,121,6100,1 +37906,1607701,86,4336,1 +37907,1607724,187,9391,1 +37908,1607781,141,7063,1 +37909,1607784,190,9534,1 +37910,1607818,65,3258,1 +37911,1608000,17,875,1 +37912,1608003,151,7592,1 +37913,1608004,127,6355,1 +37914,1608014,17,873,1 +37915,1608014,86,4325,1 +37916,1608019,173,8666,1 +37917,1608021,126,6306,1 +37918,1608024,25,1278,1 +37919,1608024,7,375,1 +37920,1608034,26,1309,1 +37921,1608036,195,9772,1 +37922,1608039,78,3912,1 +37923,1608042,114,5711,1 +37924,1608048,133,6682,1 +37925,1608049,42,2136,1 +37926,1608061,82,4113,1 +37927,1608061,9,452,1 +37928,1608073,42,2118,1 +37929,1608085,125,6279,1 +37930,1608099,126,6322,1 +37931,1608228,169,8454,1 +37932,1608492,83,4154,1 +37933,1608494,9,462,1 +37934,1608510,166,8313,1 +37935,1608516,13,672,1 +37936,1608522,0,27,1 +37937,1608536,134,6705,1 +37938,1608564,103,5182,1 +37939,1608566,24,1215,1 +37940,1608588,87,4351,1 +37941,1608600,163,8158,1 +37942,1608960,81,4068,1 +37943,1608960,85,4289,1 +37944,1608961,192,9628,1 +37945,1608961,27,1366,1 +37946,1608969,150,7508,1 +37947,1608971,128,6432,1 +37948,1608975,90,4527,1 +37949,1608984,9,472,1 +37950,1608984,198,9945,1 +37951,1608987,150,7526,1 +37952,1608987,125,6267,1 +37953,1609003,168,8441,1 +37954,1609032,133,6652,1 +37955,1609046,111,5564,1 +37956,1609080,180,9019,1 +37957,1609095,43,2166,1 +37958,1609441,196,9801,1 +37959,1609449,83,4151,1 +37960,1609476,108,5420,1 +37961,1609488,199,9999,1 +37962,1609519,148,7405,1 +37963,1609555,91,4583,1 +37964,1609920,55,2766,1 +37965,1609921,39,1982,1 +37966,1609923,58,2921,1 +37967,1609924,84,4249,1 +37968,1609926,40,2047,1 +37969,1609926,190,9523,1 +37970,1609932,148,7437,1 +37971,1609932,184,9247,1 +37972,1609932,64,3214,1 +37973,1609941,98,4909,1 +37974,1609941,92,4613,1 +37975,1609945,176,8831,1 +37976,1609956,191,9564,1 +37977,1609957,184,9246,1 +37978,1609981,96,4821,1 +37979,1609992,22,1105,1 +37980,1610004,175,8766,1 +37981,1610005,152,7649,1 +37982,1610017,192,9647,1 +37983,1610028,116,5804,1 +37984,1610041,106,5339,1 +37985,1610052,107,5361,1 +37986,1610064,33,1653,1 +37987,1610086,133,6683,1 +37988,1610151,64,3228,1 +37989,1610172,59,2978,1 +37990,1610448,158,7930,1 +37991,1610880,150,7544,1 +37992,1610883,26,1343,1 +37993,1610884,139,6986,1 +37994,1610890,98,4935,1 +37995,1610891,112,5640,1 +37996,1610892,146,7339,1 +37997,1610892,170,8513,1 +37998,1610894,102,5141,1 +37999,1610894,26,1306,1 +38000,1610898,93,4679,1 +38001,1610904,1,57,1 +38002,1610904,37,1894,1 +38003,1610906,95,4780,1 +38004,1610922,138,6922,1 +38005,1610928,5,268,1 +38006,1610928,73,3699,1 +38007,1610928,85,4264,1 +38008,1610930,26,1339,1 +38009,1610940,91,4591,1 +38010,1610943,111,5586,1 +38011,1610955,198,9943,1 +38012,1610957,111,5569,1 +38013,1611003,138,6942,1 +38014,1611026,49,2489,1 +38015,1611378,195,9789,1 +38016,1611389,3,164,1 +38017,1611396,59,2956,1 +38018,1611420,107,5383,1 +38019,1611867,44,2246,1 +38020,1611876,122,6111,1 +38021,1611888,5,264,1 +38022,1611912,172,8603,1 +38023,1611927,186,9324,1 +38024,1611941,32,1616,1 +38025,1611985,137,6853,1 +38026,1612321,136,6816,1 +38027,1612323,52,2605,1 +38028,1612327,22,1141,1 +38029,1612327,199,9972,1 +38030,1612329,29,1490,1 +38031,1612345,49,2468,1 +38032,1612356,129,6474,1 +38033,1612357,27,1367,1 +38034,1612370,8,447,1 +38035,1612383,119,5993,1 +38036,1612392,2,143,1 +38037,1612398,4,211,1 +38038,1612407,62,3122,1 +38039,1612452,167,8391,1 +38040,1612488,93,4682,1 +38041,1612827,158,7947,1 +38042,1612908,84,4228,1 +38043,1613280,132,6601,1 +38044,1613280,171,8555,1 +38045,1613281,148,7434,1 +38046,1613284,191,9578,1 +38047,1613286,75,3759,1 +38048,1613290,144,7212,1 +38049,1613292,90,4548,1 +38050,1613294,153,7696,1 +38051,1613304,56,2834,1 +38052,1613316,81,4070,1 +38053,1613329,82,4115,1 +38054,1613337,31,1575,1 +38055,1613353,74,3720,1 +38056,1613353,102,5105,1 +38057,1613353,87,4393,1 +38058,1613424,143,7167,1 +38059,1613443,65,3255,1 +38060,1613760,55,2793,1 +38061,1613760,19,952,1 +38062,1613760,71,3573,1 +38063,1613761,8,403,1 +38064,1613764,165,8268,1 +38065,1613765,119,6000,1 +38066,1613772,175,8791,1 +38067,1613772,16,842,1 +38068,1613772,60,3016,1 +38069,1613772,172,8618,1 +38070,1613775,83,4168,1 +38071,1613787,125,6260,1 +38072,1613791,7,377,1 +38073,1613796,102,5128,1 +38074,1613803,26,1350,1 +38075,1613809,109,5456,1 +38076,1613814,105,5283,1 +38077,1613823,8,425,1 +38078,1613844,99,4991,1 +38079,1613857,166,8341,1 +38080,1613883,185,9282,1 +38081,1613905,12,620,1 +38082,1613988,175,8791,1 +38083,1614307,158,7901,1 +38084,1614720,138,6947,1 +38085,1614720,164,8210,1 +38086,1614720,132,6617,1 +38087,1614721,87,4358,1 +38088,1614721,131,6573,1 +38089,1614722,78,3945,1 +38090,1614723,132,6614,1 +38091,1614724,145,7277,1 +38092,1614727,52,2637,1 +38093,1614730,15,761,1 +38094,1614730,141,7076,1 +38095,1614732,4,204,1 +38096,1614732,3,195,1 +38097,1614732,161,8056,1 +38098,1614733,89,4456,1 +38099,1614733,198,9901,1 +38100,1614735,165,8269,1 +38101,1614735,9,457,1 +38102,1614744,25,1291,1 +38103,1614745,198,9936,1 +38104,1614745,139,6987,1 +38105,1614745,68,3421,1 +38106,1614747,60,3018,1 +38107,1614747,22,1110,1 +38108,1614748,27,1362,1 +38109,1614756,39,1985,1 +38110,1614756,28,1431,1 +38111,1614757,47,2399,1 +38112,1614760,135,6795,1 +38113,1614761,80,4009,1 +38114,1614762,82,4143,1 +38115,1614768,108,5449,1 +38116,1614769,98,4924,1 +38117,1614774,198,9935,1 +38118,1614780,47,2379,1 +38119,1614781,4,247,1 +38120,1614786,198,9903,1 +38121,1614792,148,7436,1 +38122,1614801,108,5447,1 +38123,1614804,167,8393,1 +38124,1614804,175,8757,1 +38125,1614807,146,7341,1 +38126,1614810,23,1199,1 +38127,1614816,38,1944,1 +38128,1614819,160,8015,1 +38129,1614825,21,1072,1 +38130,1614828,96,4837,1 +38131,1614841,120,6038,1 +38132,1614865,122,6110,1 +38133,1614873,168,8434,1 +38134,1614876,13,688,1 +38135,1614876,147,7375,1 +38136,1614880,192,9615,1 +38137,1614914,30,1532,1 +38138,1615020,35,1775,1 +38139,1615200,166,8304,1 +38140,1615203,57,2882,1 +38141,1615212,188,9424,1 +38142,1615254,192,9624,1 +38143,1615693,132,6625,1 +38144,1615699,177,8882,1 +38145,1615711,171,8557,1 +38146,1615752,15,754,1 +38147,1616162,163,8193,1 +38148,1616169,144,7217,1 +38149,1616170,69,3500,1 +38150,1616173,51,2597,1 +38151,1616173,2,114,1 +38152,1616184,71,3580,1 +38153,1616186,70,3507,1 +38154,1616190,42,2113,1 +38155,1616208,24,1220,1 +38156,1616216,64,3244,1 +38157,1616232,91,4597,1 +38158,1616256,107,5369,1 +38159,1616266,69,3482,1 +38160,1616304,171,8582,1 +38161,1616436,68,3416,1 +38162,1616640,123,6175,1 +38163,1616640,164,8236,1 +38164,1616641,119,5957,1 +38165,1616641,82,4146,1 +38166,1616650,82,4109,1 +38167,1616662,155,7775,1 +38168,1616676,72,3626,1 +38169,1616688,135,6772,1 +38170,1616784,25,1251,1 +38171,1616788,119,5986,1 +38172,1616846,46,2317,1 +38173,1617159,116,5833,1 +38174,1617204,174,8726,1 +38175,1617601,138,6904,1 +38176,1617625,152,7601,1 +38177,1617636,153,7656,1 +38178,1617645,159,7959,1 +38179,1617662,147,7374,1 +38180,1617701,45,2292,1 +38181,1617762,120,6018,1 +38182,1618080,196,9837,1 +38183,1618083,25,1290,1 +38184,1618095,124,6235,1 +38185,1618097,32,1630,1 +38186,1618104,131,6572,1 +38187,1618104,0,3,1 +38188,1618117,26,1350,1 +38189,1618140,161,8100,1 +38190,1618162,45,2265,1 +38191,1618221,164,8243,1 +38192,1618633,181,9061,1 +38193,1618705,175,8763,1 +38194,1619088,46,2348,1 +38195,1619520,110,5539,1 +38196,1619521,108,5417,1 +38197,1619529,20,1009,1 +38198,1619532,190,9509,1 +38199,1619533,174,8750,1 +38200,1619533,58,2935,1 +38201,1619534,66,3343,1 +38202,1619541,5,290,1 +38203,1619544,21,1072,1 +38204,1619544,75,3788,1 +38205,1619547,119,5993,1 +38206,1619554,126,6330,1 +38207,1619557,131,6562,1 +38208,1619567,130,6510,1 +38209,1619571,159,7965,1 +38210,1619574,113,5654,1 +38211,1619580,60,3009,1 +38212,1619580,67,3387,1 +38213,1619588,70,3510,1 +38214,1619601,40,2003,1 +38215,1619602,175,8783,1 +38216,1619616,117,5898,1 +38217,1619641,59,2999,1 +38218,1619665,5,277,1 +38219,1619700,152,7639,1 +38220,1619736,1,75,1 +38221,1619798,188,9443,1 +38222,1620000,26,1316,1 +38223,1620000,51,2563,1 +38224,1620013,140,7013,1 +38225,1620021,99,4995,1 +38226,1620025,165,8251,1 +38227,1620036,199,9992,1 +38228,1620039,105,5270,1 +38229,1620048,92,4634,1 +38230,1620048,81,4051,1 +38231,1620072,68,3402,1 +38232,1620169,1,74,1 +38233,1620480,194,9741,1 +38234,1620481,123,6161,1 +38235,1620482,20,1003,1 +38236,1620484,5,279,1 +38237,1620489,107,5386,1 +38238,1620492,146,7340,1 +38239,1620492,21,1063,1 +38240,1620493,86,4315,1 +38241,1620504,50,2512,1 +38242,1620510,77,3890,1 +38243,1620516,78,3926,1 +38244,1620517,146,7318,1 +38245,1620518,193,9674,1 +38246,1620526,19,985,1 +38247,1620528,101,5066,1 +38248,1620529,103,5188,1 +38249,1620531,10,531,1 +38250,1620531,54,2706,1 +38251,1620532,193,9671,1 +38252,1620543,164,8232,1 +38253,1620552,7,391,1 +38254,1620556,198,9928,1 +38255,1620559,193,9658,1 +38256,1620561,166,8323,1 +38257,1620564,5,291,1 +38258,1620573,7,393,1 +38259,1620576,155,7778,1 +38260,1620577,78,3944,1 +38261,1620577,138,6915,1 +38262,1620579,55,2771,1 +38263,1620592,33,1660,1 +38264,1620960,174,8742,1 +38265,1620961,196,9817,1 +38266,1620961,143,7187,1 +38267,1620972,175,8773,1 +38268,1620972,181,9086,1 +38269,1620973,57,2864,1 +38270,1620973,130,6536,1 +38271,1620977,46,2349,1 +38272,1620985,40,2047,1 +38273,1620994,156,7819,1 +38274,1621008,98,4942,1 +38275,1621032,6,304,1 +38276,1621032,110,5537,1 +38277,1621032,156,7839,1 +38278,1621033,64,3228,1 +38279,1621044,96,4844,1 +38280,1621044,130,6508,1 +38281,1621044,164,8236,1 +38282,1621047,146,7331,1 +38283,1621081,96,4830,1 +38284,1621116,57,2861,1 +38285,1621140,193,9672,1 +38286,1621506,32,1603,1 +38287,1621524,112,5643,1 +38288,1621934,31,1558,1 +38289,1621959,30,1509,1 +38290,1621989,29,1468,1 +38291,1622001,186,9301,1 +38292,1622031,183,9191,1 +38293,1622052,48,2405,1 +38294,1622093,164,8243,1 +38295,1622400,151,7574,1 +38296,1622412,127,6378,1 +38297,1622412,131,6559,1 +38298,1622412,153,7697,1 +38299,1622418,41,2069,1 +38300,1622436,105,5273,1 +38301,1622436,155,7762,1 +38302,1622462,114,5716,1 +38303,1622466,23,1186,1 +38304,1623009,22,1112,1 +38305,1623037,109,5456,1 +38306,1623612,186,9304,1 +38307,1624320,13,690,1 +38308,1624321,145,7254,1 +38309,1624321,81,4063,1 +38310,1624324,173,8655,1 +38311,1624328,6,320,1 +38312,1624332,77,3877,1 +38313,1624338,122,6120,1 +38314,1624344,114,5745,1 +38315,1624345,194,9707,1 +38316,1624356,180,9046,1 +38317,1624357,0,36,1 +38318,1624357,45,2285,1 +38319,1624368,99,4962,1 +38320,1624375,175,8776,1 +38321,1624380,194,9708,1 +38322,1624380,41,2079,1 +38323,1624402,101,5069,1 +38324,1624404,22,1137,1 +38325,1624440,199,9963,1 +38326,1624447,126,6329,1 +38327,1624800,74,3702,1 +38328,1624800,135,6788,1 +38329,1624812,91,4595,1 +38330,1624812,196,9804,1 +38331,1624815,58,2933,1 +38332,1624818,97,4889,1 +38333,1624821,174,8706,1 +38334,1624827,10,511,1 +38335,1625280,178,8906,1 +38336,1625280,27,1380,1 +38337,1625280,147,7355,1 +38338,1625280,133,6671,1 +38339,1625280,48,2429,1 +38340,1625280,109,5499,1 +38341,1625280,149,7456,1 +38342,1625281,121,6060,1 +38343,1625282,50,2550,1 +38344,1625282,106,5332,1 +38345,1625292,195,9778,1 +38346,1625292,57,2886,1 +38347,1625292,102,5148,1 +38348,1625295,166,8314,1 +38349,1625298,74,3726,1 +38350,1625302,56,2819,1 +38351,1625302,175,8778,1 +38352,1625304,50,2526,1 +38353,1625305,133,6679,1 +38354,1625305,132,6621,1 +38355,1625305,47,2354,1 +38356,1625311,179,8969,1 +38357,1625316,177,8866,1 +38358,1625316,194,9717,1 +38359,1625317,36,1848,1 +38360,1625328,47,2369,1 +38361,1625329,20,1039,1 +38362,1625329,129,6500,1 +38363,1625332,115,5785,1 +38364,1625340,164,8244,1 +38365,1625340,176,8833,1 +38366,1625341,159,7979,1 +38367,1625349,121,6086,1 +38368,1625352,151,7576,1 +38369,1625352,103,5200,1 +38370,1625376,133,6655,1 +38371,1625376,100,5010,1 +38372,1625379,69,3493,1 +38373,1625388,182,9131,1 +38374,1625390,158,7917,1 +38375,1625448,189,9477,1 +38376,1625460,25,1266,1 +38377,1625526,175,8798,1 +38378,1625776,127,6397,1 +38379,1625784,22,1142,1 +38380,1625794,92,4602,1 +38381,1625808,192,9642,1 +38382,1626240,158,7901,1 +38383,1626241,47,2396,1 +38384,1626276,166,8350,1 +38385,1626276,1,71,1 +38386,1626276,135,6754,1 +38387,1626276,171,8561,1 +38388,1626301,174,8747,1 +38389,1626360,169,8484,1 +38390,1626482,144,7237,1 +38391,1626720,93,4699,1 +38392,1626721,175,8799,1 +38393,1626723,76,3808,1 +38394,1626729,39,1997,1 +38395,1626729,53,2681,1 +38396,1626730,18,905,1 +38397,1626732,191,9582,1 +38398,1626732,133,6685,1 +38399,1626732,24,1224,1 +38400,1626732,169,8466,1 +38401,1626733,179,9000,1 +38402,1626733,130,6502,1 +38403,1626735,157,7862,1 +38404,1626757,196,9801,1 +38405,1626768,128,6445,1 +38406,1626777,22,1114,1 +38407,1626780,12,618,1 +38408,1626781,156,7804,1 +38409,1626794,141,7085,1 +38410,1626795,48,2402,1 +38411,1626857,57,2862,1 +38412,1626859,15,789,1 +38413,1627200,84,4211,1 +38414,1627200,93,4699,1 +38415,1627200,78,3941,1 +38416,1627212,167,8395,1 +38417,1627215,108,5420,1 +38418,1627224,53,2674,1 +38419,1627224,66,3323,1 +38420,1627236,56,2807,1 +38421,1627236,96,4833,1 +38422,1627242,10,528,1 +38423,1627260,25,1255,1 +38424,1627260,127,6395,1 +38425,1627269,6,342,1 +38426,1627276,195,9763,1 +38427,1627308,80,4046,1 +38428,1627338,193,9651,1 +38429,1627341,162,8118,1 +38430,1627407,158,7934,1 +38431,1627693,27,1380,1 +38432,1627704,19,971,1 +38433,1627706,57,2872,1 +38434,1628208,165,8264,1 +38435,1628317,192,9611,1 +38436,1628335,103,5179,1 +38437,1628664,149,7482,1 +38438,1629125,10,510,1 +38439,1629135,55,2797,1 +38440,1629168,92,4603,1 +38441,1629174,79,3954,1 +38442,1629615,0,32,1 +38443,1629646,176,8819,1 +38444,1630107,97,4876,1 +38445,1630128,87,4387,1 +38446,1630140,133,6690,1 +38447,1630146,74,3717,1 +38448,1630317,115,5787,1 +38449,1630575,42,2143,1 +38450,1631040,120,6036,1 +38451,1631040,131,6588,1 +38452,1631041,167,8394,1 +38453,1631048,183,9171,1 +38454,1631052,116,5813,1 +38455,1631052,1,64,1 +38456,1631053,104,5212,1 +38457,1631053,6,346,1 +38458,1631059,189,9457,1 +38459,1631059,72,3633,1 +38460,1631062,103,5174,1 +38461,1631064,145,7299,1 +38462,1631065,14,738,1 +38463,1631070,196,9846,1 +38464,1631076,111,5596,1 +38465,1631076,197,9893,1 +38466,1631082,176,8816,1 +38467,1631089,89,4495,1 +38468,1631100,108,5403,1 +38469,1631102,59,2957,1 +38470,1631124,68,3410,1 +38471,1631131,54,2720,1 +38472,1631156,76,3841,1 +38473,1631174,128,6438,1 +38474,1631183,147,7368,1 +38475,1631223,94,4711,1 +38476,1631532,137,6873,1 +38477,1631532,69,3456,1 +38478,1631532,191,9568,1 +38479,1631534,76,3812,1 +38480,1631535,153,7677,1 +38481,1631538,13,691,1 +38482,1631544,154,7726,1 +38483,1631544,140,7040,1 +38484,1631546,43,2160,1 +38485,1631556,34,1737,1 +38486,1631556,74,3718,1 +38487,1631557,122,6101,1 +38488,1631558,173,8665,1 +38489,1631568,23,1161,1 +38490,1631571,109,5474,1 +38491,1631575,153,7674,1 +38492,1631580,117,5869,1 +38493,1631592,77,3900,1 +38494,1631604,140,7006,1 +38495,1631609,94,4721,1 +38496,1631622,58,2931,1 +38497,1631631,52,2639,1 +38498,1631652,114,5704,1 +38499,1631691,20,1045,1 +38500,1632013,39,1989,1 +38501,1632036,140,7048,1 +38502,1632036,86,4344,1 +38503,1632084,96,4809,1 +38504,1632480,64,3225,1 +38505,1632480,180,9045,1 +38506,1632480,53,2678,1 +38507,1632480,84,4209,1 +38508,1632480,127,6398,1 +38509,1632481,111,5591,1 +38510,1632481,64,3231,1 +38511,1632482,33,1693,1 +38512,1632482,183,9179,1 +38513,1632483,135,6758,1 +38514,1632485,126,6323,1 +38515,1632486,180,9028,1 +38516,1632489,41,2071,1 +38517,1632492,45,2292,1 +38518,1632492,124,6238,1 +38519,1632492,118,5942,1 +38520,1632492,164,8240,1 +38521,1632492,151,7598,1 +38522,1632492,86,4312,1 +38523,1632492,4,207,1 +38524,1632492,112,5633,1 +38525,1632492,136,6821,1 +38526,1632492,45,2279,1 +38527,1632493,152,7625,1 +38528,1632493,98,4922,1 +38529,1632496,122,6146,1 +38530,1632501,94,4702,1 +38531,1632503,174,8724,1 +38532,1632504,109,5486,1 +38533,1632504,44,2220,1 +38534,1632504,114,5727,1 +38535,1632504,189,9469,1 +38536,1632504,168,8421,1 +38537,1632504,25,1254,1 +38538,1632504,62,3125,1 +38539,1632504,42,2105,1 +38540,1632504,150,7522,1 +38541,1632505,105,5264,1 +38542,1632506,176,8842,1 +38543,1632507,45,2298,1 +38544,1632507,83,4186,1 +38545,1632507,176,8822,1 +38546,1632510,117,5852,1 +38547,1632510,143,7177,1 +38548,1632510,73,3668,1 +38549,1632510,172,8624,1 +38550,1632514,0,35,1 +38551,1632515,121,6064,1 +38552,1632516,173,8657,1 +38553,1632516,181,9051,1 +38554,1632516,22,1115,1 +38555,1632517,138,6942,1 +38556,1632517,108,5427,1 +38557,1632517,98,4911,1 +38558,1632518,33,1688,1 +38559,1632518,177,8866,1 +38560,1632519,191,9588,1 +38561,1632519,192,9616,1 +38562,1632520,150,7522,1 +38563,1632522,146,7305,1 +38564,1632525,69,3462,1 +38565,1632525,115,5754,1 +38566,1632527,35,1772,1 +38567,1632528,141,7094,1 +38568,1632529,6,329,1 +38569,1632529,90,4530,1 +38570,1632533,136,6835,1 +38571,1632535,132,6641,1 +38572,1632537,150,7534,1 +38573,1632540,143,7152,1 +38574,1632540,197,9851,1 +38575,1632540,168,8449,1 +38576,1632540,103,5192,1 +38577,1632542,22,1141,1 +38578,1632543,104,5218,1 +38579,1632544,118,5906,1 +38580,1632546,150,7538,1 +38581,1632552,36,1838,1 +38582,1632554,83,4198,1 +38583,1632555,23,1188,1 +38584,1632555,181,9067,1 +38585,1632558,118,5901,1 +38586,1632558,161,8052,1 +38587,1632564,146,7324,1 +38588,1632564,3,164,1 +38589,1632564,193,9652,1 +38590,1632567,24,1202,1 +38591,1632573,107,5390,1 +38592,1632576,104,5210,1 +38593,1632576,162,8145,1 +38594,1632577,71,3570,1 +38595,1632588,24,1234,1 +38596,1632588,198,9918,1 +38597,1632596,9,469,1 +38598,1632600,107,5387,1 +38599,1632600,144,7214,1 +38600,1632600,174,8730,1 +38601,1632606,72,3633,1 +38602,1632613,71,3558,1 +38603,1632624,153,7672,1 +38604,1632625,183,9173,1 +38605,1632636,195,9770,1 +38606,1632644,106,5335,1 +38607,1632654,84,4235,1 +38608,1632660,75,3780,1 +38609,1632660,20,1024,1 +38610,1632662,15,792,1 +38611,1632681,106,5347,1 +38612,1632697,64,3213,1 +38613,1632708,71,3599,1 +38614,1632733,7,353,1 +38615,1632759,191,9556,1 +38616,1632769,21,1097,1 +38617,1632972,112,5645,1 +38618,1633020,94,4728,1 +38619,1633033,162,8135,1 +38620,1633440,111,5554,1 +38621,1633456,193,9662,1 +38622,1633476,113,5678,1 +38623,1633483,116,5805,1 +38624,1633488,11,593,1 +38625,1633527,43,2156,1 +38626,1633549,124,6206,1 +38627,1633593,179,8973,1 +38628,1633921,36,1835,1 +38629,1633932,114,5704,1 +38630,1633945,37,1893,1 +38631,1633948,85,4260,1 +38632,1634065,41,2076,1 +38633,1634400,31,1584,1 +38634,1634401,124,6231,1 +38635,1634403,154,7709,1 +38636,1634407,171,8569,1 +38637,1634412,70,3524,1 +38638,1634412,110,5525,1 +38639,1634425,191,9578,1 +38640,1634445,103,5196,1 +38641,1634449,194,9738,1 +38642,1634469,172,8617,1 +38643,1634484,138,6926,1 +38644,1634544,21,1088,1 +38645,1634556,45,2294,1 +38646,1634568,57,2858,1 +38647,1634880,56,2811,1 +38648,1634881,48,2421,1 +38649,1634902,166,8310,1 +38650,1634917,20,1008,1 +38651,1634928,145,7252,1 +38652,1634928,157,7891,1 +38653,1634928,195,9792,1 +38654,1634940,79,3994,1 +38655,1634941,80,4022,1 +38656,1634982,167,8383,1 +38657,1634988,1,97,1 +38658,1635360,38,1903,1 +38659,1635360,124,6223,1 +38660,1635362,187,9383,1 +38661,1635363,15,779,1 +38662,1635373,16,809,1 +38663,1635375,36,1831,1 +38664,1635382,28,1422,1 +38665,1635384,190,9548,1 +38666,1635384,146,7310,1 +38667,1635387,30,1537,1 +38668,1635388,18,949,1 +38669,1635388,192,9614,1 +38670,1635396,4,229,1 +38671,1635402,116,5834,1 +38672,1635418,115,5772,1 +38673,1635420,152,7637,1 +38674,1635433,124,6234,1 +38675,1635433,166,8304,1 +38676,1635444,194,9708,1 +38677,1635470,65,3259,1 +38678,1635495,86,4319,1 +38679,1635517,105,5260,1 +38680,1635526,149,7453,1 +38681,1635962,24,1232,1 +38682,1636008,79,3971,1 +38683,1636320,172,8645,1 +38684,1636359,125,6272,1 +38685,1636809,51,2594,1 +38686,1636824,161,8080,1 +38687,1636836,124,6209,1 +38688,1636836,49,2457,1 +38689,1637301,45,2258,1 +38690,1637304,151,7566,1 +38691,1637311,126,6321,1 +38692,1637340,83,4169,1 +38693,1637772,18,939,1 +38694,1637772,190,9520,1 +38695,1637775,41,2070,1 +38696,1637781,42,2119,1 +38697,1637787,108,5431,1 +38698,1637808,72,3630,1 +38699,1637817,154,7721,1 +38700,1637820,100,5030,1 +38701,1637844,35,1800,1 +38702,1637845,123,6156,1 +38703,1637872,141,7069,1 +38704,1638240,143,7169,1 +38705,1638252,81,4056,1 +38706,1638729,130,6512,1 +38707,1638770,15,790,1 +38708,1638792,110,5550,1 +38709,1638804,199,9998,1 +38710,1638829,90,4519,1 +38711,1639200,180,9046,1 +38712,1639200,22,1108,1 +38713,1639201,165,8255,1 +38714,1639201,134,6721,1 +38715,1639204,42,2140,1 +38716,1639206,132,6626,1 +38717,1639206,83,4184,1 +38718,1639206,147,7397,1 +38719,1639209,142,7128,1 +38720,1639209,82,4147,1 +38721,1639212,56,2827,1 +38722,1639212,174,8735,1 +38723,1639212,65,3285,1 +38724,1639212,147,7396,1 +38725,1639212,40,2017,1 +38726,1639212,181,9051,1 +38727,1639212,168,8439,1 +38728,1639212,10,550,1 +38729,1639217,125,6278,1 +38730,1639221,126,6335,1 +38731,1639222,127,6388,1 +38732,1639222,30,1505,1 +38733,1639224,188,9431,1 +38734,1639225,180,9023,1 +38735,1639225,77,3864,1 +38736,1639226,176,8839,1 +38737,1639226,123,6157,1 +38738,1639230,108,5450,1 +38739,1639231,111,5599,1 +38740,1639234,20,1050,1 +38741,1639237,144,7242,1 +38742,1639248,152,7611,1 +38743,1639249,13,657,1 +38744,1639255,75,3759,1 +38745,1639258,90,4542,1 +38746,1639260,122,6125,1 +38747,1639261,118,5938,1 +38748,1639272,78,3949,1 +38749,1639272,125,6263,1 +38750,1639275,136,6802,1 +38751,1639276,194,9722,1 +38752,1639281,139,7000,1 +38753,1639284,109,5484,1 +38754,1639296,105,5286,1 +38755,1639296,51,2573,1 +38756,1639298,158,7944,1 +38757,1639300,85,4300,1 +38758,1639308,68,3410,1 +38759,1639308,171,8592,1 +38760,1639311,129,6465,1 +38761,1639313,128,6446,1 +38762,1639314,139,6962,1 +38763,1639320,148,7425,1 +38764,1639320,196,9834,1 +38765,1639338,115,5766,1 +38766,1639347,143,7180,1 +38767,1639366,65,3272,1 +38768,1639370,183,9166,1 +38769,1639380,199,9994,1 +38770,1639404,87,4389,1 +38771,1639429,133,6694,1 +38772,1639443,67,3359,1 +38773,1639454,107,5371,1 +38774,1639551,148,7411,1 +38775,1639683,125,6263,1 +38776,1639693,71,3597,1 +38777,1639699,10,519,1 +38778,1639718,20,1013,1 +38779,1639729,25,1279,1 +38780,1639731,14,736,1 +38781,1639776,3,187,1 +38782,1640160,90,4507,1 +38783,1640160,24,1225,1 +38784,1640160,181,9076,1 +38785,1640161,178,8946,1 +38786,1640172,75,3793,1 +38787,1640172,4,216,1 +38788,1640173,188,9416,1 +38789,1640173,99,4968,1 +38790,1640184,100,5044,1 +38791,1640184,41,2098,1 +38792,1640185,92,4650,1 +38793,1640185,149,7478,1 +38794,1640196,30,1526,1 +38795,1640197,58,2949,1 +38796,1640202,156,7813,1 +38797,1640209,26,1305,1 +38798,1640209,195,9800,1 +38799,1640223,133,6658,1 +38800,1640232,175,8789,1 +38801,1640244,93,4651,1 +38802,1640251,134,6734,1 +38803,1640268,5,265,1 +38804,1640311,167,8392,1 +38805,1640342,11,587,1 +38806,1640385,188,9449,1 +38807,1640640,48,2434,1 +38808,1640640,47,2377,1 +38809,1640640,9,489,1 +38810,1640642,27,1368,1 +38811,1640642,145,7281,1 +38812,1640646,108,5409,1 +38813,1640649,82,4134,1 +38814,1640652,95,4771,1 +38815,1640661,159,7985,1 +38816,1640664,57,2870,1 +38817,1640668,73,3689,1 +38818,1640668,156,7825,1 +38819,1640676,47,2377,1 +38820,1640677,47,2353,1 +38821,1640706,61,3059,1 +38822,1640736,23,1167,1 +38823,1640757,123,6163,1 +38824,1640794,19,973,1 +38825,1641600,59,2951,1 +38826,1641601,30,1531,1 +38827,1641612,163,8192,1 +38828,1641612,6,302,1 +38829,1641625,47,2367,1 +38830,1641636,147,7362,1 +38831,1641663,37,1873,1 +38832,1641665,189,9463,1 +38833,1641744,192,9621,1 +38834,1642080,7,361,1 +38835,1642080,58,2914,1 +38836,1642080,132,6621,1 +38837,1642086,63,3189,1 +38838,1642087,64,3229,1 +38839,1642092,98,4905,1 +38840,1642104,139,6980,1 +38841,1642104,152,7617,1 +38842,1642104,185,9294,1 +38843,1642105,12,641,1 +38844,1642105,41,2088,1 +38845,1642116,119,5962,1 +38846,1642122,121,6068,1 +38847,1642128,80,4038,1 +38848,1642128,62,3116,1 +38849,1642131,182,9144,1 +38850,1642140,38,1910,1 +38851,1642147,126,6330,1 +38852,1642152,168,8416,1 +38853,1642152,113,5681,1 +38854,1642153,20,1033,1 +38855,1642165,193,9685,1 +38856,1642167,4,226,1 +38857,1642173,151,7555,1 +38858,1642218,159,7992,1 +38859,1642560,100,5008,1 +38860,1642569,29,1500,1 +38861,1642572,152,7606,1 +38862,1642596,101,5055,1 +38863,1642596,133,6698,1 +38864,1642596,169,8498,1 +38865,1642597,140,7049,1 +38866,1642608,125,6269,1 +38867,1642620,56,2823,1 +38868,1642641,162,8114,1 +38869,1642668,150,7523,1 +38870,1642752,191,9555,1 +38871,1643064,45,2263,1 +38872,1643073,185,9271,1 +38873,1643112,132,6640,1 +38874,1643173,33,1682,1 +38875,1643520,129,6498,1 +38876,1643520,123,6154,1 +38877,1643533,33,1668,1 +38878,1643534,126,6332,1 +38879,1643536,35,1768,1 +38880,1643544,49,2480,1 +38881,1643556,49,2474,1 +38882,1643566,103,5154,1 +38883,1643568,163,8180,1 +38884,1643570,97,4866,1 +38885,1643592,128,6427,1 +38886,1643596,44,2207,1 +38887,1643605,138,6921,1 +38888,1643612,150,7535,1 +38889,1643706,137,6892,1 +38890,1644013,16,845,1 +38891,1644483,188,9430,1 +38892,1644492,104,5216,1 +38893,1644493,183,9183,1 +38894,1644513,70,3513,1 +38895,1644528,48,2410,1 +38896,1644540,48,2425,1 +38897,1644576,47,2379,1 +38898,1644696,105,5279,1 +38899,1644966,36,1803,1 +38900,1644986,42,2102,1 +38901,1645008,11,579,1 +38902,1645036,155,7789,1 +38903,1645440,94,4718,1 +38904,1645477,14,733,1 +38905,1645933,174,8708,1 +38906,1645968,154,7707,1 +38907,1645968,5,272,1 +38908,1645980,47,2400,1 +38909,1645984,142,7138,1 +38910,1646016,40,2030,1 +38911,1646418,27,1364,1 +38912,1646424,191,9570,1 +38913,1646424,26,1319,1 +38914,1646427,66,3341,1 +38915,1646428,147,7400,1 +38916,1646436,3,178,1 +38917,1646439,149,7486,1 +38918,1646447,127,6359,1 +38919,1646448,162,8110,1 +38920,1646449,197,9891,1 +38921,1646454,198,9937,1 +38922,1646484,142,7109,1 +38923,1646519,28,1430,1 +38924,1646880,42,2107,1 +38925,1646892,167,8384,1 +38926,1646965,199,9992,1 +38927,1647409,73,3690,1 +38928,1647840,36,1819,1 +38929,1647840,16,829,1 +38930,1647840,138,6936,1 +38931,1647840,82,4133,1 +38932,1647840,102,5128,1 +38933,1647841,191,9570,1 +38934,1647841,98,4924,1 +38935,1647841,72,3645,1 +38936,1647841,74,3722,1 +38937,1647843,159,7997,1 +38938,1647844,98,4911,1 +38939,1647844,47,2388,1 +38940,1647849,121,6069,1 +38941,1647852,63,3154,1 +38942,1647852,167,8394,1 +38943,1647855,199,9953,1 +38944,1647857,197,9866,1 +38945,1647858,146,7338,1 +38946,1647861,31,1587,1 +38947,1647864,177,8887,1 +38948,1647865,64,3228,1 +38949,1647866,170,8506,1 +38950,1647867,128,6444,1 +38951,1647870,124,6219,1 +38952,1647870,174,8709,1 +38953,1647871,192,9640,1 +38954,1647876,190,9527,1 +38955,1647876,126,6343,1 +38956,1647876,161,8072,1 +38957,1647877,35,1762,1 +38958,1647878,106,5308,1 +38959,1647882,95,4788,1 +38960,1647888,24,1231,1 +38961,1647893,71,3597,1 +38962,1647894,64,3226,1 +38963,1647894,14,717,1 +38964,1647900,100,5014,1 +38965,1647901,196,9843,1 +38966,1647901,2,119,1 +38967,1647909,96,4805,1 +38968,1647912,32,1647,1 +38969,1647912,83,4181,1 +38970,1647924,56,2834,1 +38971,1647925,114,5740,1 +38972,1647926,117,5860,1 +38973,1647940,145,7300,1 +38974,1647960,62,3122,1 +38975,1647960,190,9514,1 +38976,1647972,137,6858,1 +38977,1647984,125,6265,1 +38978,1648022,198,9942,1 +38979,1648356,74,3738,1 +38980,1648392,177,8869,1 +38981,1648812,51,2552,1 +38982,1648836,137,6900,1 +38983,1648899,159,7966,1 +38984,1648933,13,671,1 +38985,1649781,107,5357,1 +38986,1649784,130,6547,1 +38987,1649797,158,7911,1 +38988,1649832,112,5648,1 +38989,1650264,5,298,1 +38990,1650720,25,1286,1 +38991,1650720,119,6000,1 +38992,1650720,81,4066,1 +38993,1650722,107,5352,1 +38994,1650722,196,9830,1 +38995,1650727,28,1439,1 +38996,1650732,105,5274,1 +38997,1650732,182,9111,1 +38998,1650733,68,3402,1 +38999,1650733,73,3676,1 +39000,1650735,139,6969,1 +39001,1650735,179,8964,1 +39002,1650735,153,7682,1 +39003,1650739,130,6536,1 +39004,1650739,170,8517,1 +39005,1650744,77,3894,1 +39006,1650744,172,8649,1 +39007,1650747,72,3615,1 +39008,1650754,116,5812,1 +39009,1650756,135,6769,1 +39010,1650756,63,3190,1 +39011,1650759,145,7285,1 +39012,1650760,29,1463,1 +39013,1650765,7,376,1 +39014,1650768,168,8404,1 +39015,1650780,58,2906,1 +39016,1650781,155,7782,1 +39017,1650781,51,2564,1 +39018,1650786,39,1976,1 +39019,1650792,115,5784,1 +39020,1650793,129,6456,1 +39021,1650793,35,1778,1 +39022,1650798,173,8673,1 +39023,1650804,11,563,1 +39024,1650807,197,9887,1 +39025,1650828,145,7274,1 +39026,1650829,116,5833,1 +39027,1650829,189,9478,1 +39028,1650834,190,9541,1 +39029,1650852,37,1880,1 +39030,1650852,117,5874,1 +39031,1651200,138,6936,1 +39032,1651201,140,7042,1 +39033,1651201,181,9084,1 +39034,1651203,6,302,1 +39035,1651210,36,1849,1 +39036,1651210,45,2272,1 +39037,1651212,168,8405,1 +39038,1651215,140,7045,1 +39039,1651215,120,6038,1 +39040,1651218,43,2175,1 +39041,1651220,63,3194,1 +39042,1651224,92,4634,1 +39043,1651225,163,8191,1 +39044,1651225,0,28,1 +39045,1651233,140,7034,1 +39046,1651236,101,5086,1 +39047,1651245,179,8958,1 +39048,1651248,101,5081,1 +39049,1651249,117,5851,1 +39050,1651251,6,308,1 +39051,1651260,71,3598,1 +39052,1651261,7,376,1 +39053,1651272,12,602,1 +39054,1651297,63,3191,1 +39055,1651320,52,2602,1 +39056,1651395,158,7913,1 +39057,1651680,111,5577,1 +39058,1651680,183,9180,1 +39059,1651680,136,6821,1 +39060,1651680,86,4331,1 +39061,1651680,74,3745,1 +39062,1651680,4,216,1 +39063,1651680,4,228,1 +39064,1651680,119,5994,1 +39065,1651680,83,4152,1 +39066,1651680,132,6624,1 +39067,1651683,188,9439,1 +39068,1651683,85,4275,1 +39069,1651686,76,3835,1 +39070,1651689,179,8954,1 +39071,1651692,23,1172,1 +39072,1651692,79,3971,1 +39073,1651692,67,3391,1 +39074,1651692,172,8630,1 +39075,1651692,87,4391,1 +39076,1651692,154,7739,1 +39077,1651693,1,60,1 +39078,1651693,23,1154,1 +39079,1651703,110,5524,1 +39080,1651704,174,8710,1 +39081,1651704,85,4270,1 +39082,1651704,5,255,1 +39083,1651704,37,1892,1 +39084,1651705,173,8666,1 +39085,1651707,134,6744,1 +39086,1651710,110,5530,1 +39087,1651713,128,6450,1 +39088,1651716,102,5138,1 +39089,1651716,179,8953,1 +39090,1651716,78,3912,1 +39091,1651718,75,3752,1 +39092,1651719,34,1717,1 +39093,1651728,141,7099,1 +39094,1651729,125,6272,1 +39095,1651729,39,2000,1 +39096,1651729,145,7275,1 +39097,1651731,129,6451,1 +39098,1651731,179,8961,1 +39099,1651737,18,914,1 +39100,1651740,79,3965,1 +39101,1651740,7,384,1 +39102,1651740,19,983,1 +39103,1651740,132,6630,1 +39104,1651741,175,8781,1 +39105,1651741,109,5457,1 +39106,1651741,89,4461,1 +39107,1651741,167,8364,1 +39108,1651744,173,8694,1 +39109,1651752,174,8724,1 +39110,1651752,178,8916,1 +39111,1651755,59,2990,1 +39112,1651763,164,8247,1 +39113,1651776,119,5960,1 +39114,1651776,133,6684,1 +39115,1651788,135,6759,1 +39116,1651788,172,8635,1 +39117,1651807,5,269,1 +39118,1651812,120,6005,1 +39119,1651813,51,2570,1 +39120,1651822,110,5513,1 +39121,1651842,99,4964,1 +39122,1651849,198,9922,1 +39123,1651861,114,5709,1 +39124,1651866,58,2917,1 +39125,1651920,24,1208,1 +39126,1652160,123,6165,1 +39127,1652196,133,6698,1 +39128,1652197,100,5002,1 +39129,1652244,173,8675,1 +39130,1652244,67,3387,1 +39131,1652251,86,4332,1 +39132,1652329,32,1647,1 +39133,1652653,146,7306,1 +39134,1652676,131,6565,1 +39135,1652688,156,7809,1 +39136,1652709,13,671,1 +39137,1652713,175,8799,1 +39138,1652748,55,2782,1 +39139,1653642,121,6080,1 +39140,1653672,130,6529,1 +39141,1653757,150,7517,1 +39142,1654080,159,7992,1 +39143,1654081,164,8229,1 +39144,1654086,6,334,1 +39145,1654097,17,885,1 +39146,1654104,66,3315,1 +39147,1654106,180,9017,1 +39148,1654107,10,511,1 +39149,1654125,193,9694,1 +39150,1654128,85,4283,1 +39151,1654130,88,4407,1 +39152,1654140,58,2940,1 +39153,1654141,65,3268,1 +39154,1654155,20,1035,1 +39155,1654164,120,6010,1 +39156,1654189,59,2964,1 +39157,1654235,92,4608,1 +39158,1654568,25,1291,1 +39159,1654595,53,2660,1 +39160,1654608,25,1269,1 +39161,1654668,12,607,1 +39162,1654729,2,121,1 +39163,1655040,84,4244,1 +39164,1655051,183,9179,1 +39165,1655055,4,247,1 +39166,1655064,32,1609,1 +39167,1655064,122,6113,1 +39168,1655079,46,2338,1 +39169,1655083,107,5358,1 +39170,1655101,195,9768,1 +39171,1655124,75,3789,1 +39172,1655173,99,4958,1 +39173,1656013,172,8626,1 +39174,1656017,183,9163,1 +39175,1656048,177,8871,1 +39176,1656050,61,3094,1 +39177,1656146,186,9330,1 +39178,1656505,114,5714,1 +39179,1656984,155,7778,1 +39180,1657020,67,3366,1 +39181,1657020,140,7044,1 +39182,1657050,0,31,1 +39183,1657176,31,1599,1 +39184,1657920,199,9979,1 +39185,1657920,181,9054,1 +39186,1657920,46,2342,1 +39187,1657920,159,7971,1 +39188,1657920,188,9450,1 +39189,1657929,84,4220,1 +39190,1657930,93,4678,1 +39191,1657932,20,1034,1 +39192,1657934,38,1929,1 +39193,1657935,164,8222,1 +39194,1657942,94,4713,1 +39195,1657944,79,3975,1 +39196,1657944,33,1685,1 +39197,1657944,49,2492,1 +39198,1657945,101,5078,1 +39199,1657947,107,5381,1 +39200,1657953,191,9554,1 +39201,1657956,163,8162,1 +39202,1657956,12,638,1 +39203,1657956,163,8167,1 +39204,1657956,81,4089,1 +39205,1657962,132,6601,1 +39206,1657964,139,6989,1 +39207,1657965,39,1984,1 +39208,1657969,165,8291,1 +39209,1657980,146,7325,1 +39210,1657980,31,1599,1 +39211,1657980,63,3192,1 +39212,1657980,170,8550,1 +39213,1657981,177,8861,1 +39214,1657983,39,1991,1 +39215,1657987,73,3671,1 +39216,1658001,9,477,1 +39217,1658005,96,4842,1 +39218,1658005,127,6354,1 +39219,1658016,163,8171,1 +39220,1658017,120,6029,1 +39221,1658017,111,5588,1 +39222,1658017,64,3229,1 +39223,1658022,92,4616,1 +39224,1658028,117,5888,1 +39225,1658028,78,3905,1 +39226,1658030,166,8332,1 +39227,1658091,147,7363,1 +39228,1658094,152,7613,1 +39229,1658125,138,6942,1 +39230,1658136,81,4098,1 +39231,1658242,116,5846,1 +39232,1658400,95,4798,1 +39233,1658400,99,4964,1 +39234,1658400,54,2745,1 +39235,1658424,4,226,1 +39236,1658424,25,1294,1 +39237,1658424,55,2762,1 +39238,1658424,197,9896,1 +39239,1658436,194,9730,1 +39240,1658437,5,281,1 +39241,1658439,35,1763,1 +39242,1658461,9,499,1 +39243,1658487,154,7749,1 +39244,1658488,160,8021,1 +39245,1658509,126,6323,1 +39246,1658553,26,1311,1 +39247,1658893,112,5628,1 +39248,1658909,109,5494,1 +39249,1658971,93,4662,1 +39250,1659360,199,9961,1 +39251,1659384,100,5015,1 +39252,1659393,54,2710,1 +39253,1659393,189,9475,1 +39254,1659396,139,6997,1 +39255,1659406,106,5311,1 +39256,1659408,25,1262,1 +39257,1659408,109,5459,1 +39258,1659420,68,3410,1 +39259,1659420,155,7772,1 +39260,1659420,191,9566,1 +39261,1659427,13,688,1 +39262,1659505,36,1824,1 +39263,1659519,198,9905,1 +39264,1659564,25,1259,1 +39265,1659840,141,7069,1 +39266,1659840,8,418,1 +39267,1659882,83,4161,1 +39268,1659908,189,9458,1 +39269,1659936,16,825,1 +39270,1659966,140,7050,1 +39271,1660323,164,8240,1 +39272,1660382,110,5523,1 +39273,1660824,165,8260,1 +39274,1660884,95,4797,1 +39275,1661280,101,5097,1 +39276,1661292,57,2860,1 +39277,1661328,197,9858,1 +39278,1661457,47,2366,1 +39279,1661762,152,7648,1 +39280,1661773,125,6251,1 +39281,1661779,89,4457,1 +39282,1661793,45,2263,1 +39283,1661799,161,8067,1 +39284,1661809,177,8864,1 +39285,1661820,26,1323,1 +39286,1661820,22,1122,1 +39287,1661820,119,5965,1 +39288,1661832,15,774,1 +39289,1661835,120,6002,1 +39290,1661857,173,8681,1 +39291,1661863,96,4841,1 +39292,1661880,169,8455,1 +39293,1661885,79,3975,1 +39294,1661904,70,3528,1 +39295,1662253,92,4649,1 +39296,1662264,143,7175,1 +39297,1662264,31,1570,1 +39298,1662266,117,5892,1 +39299,1662271,149,7472,1 +39300,1662282,193,9680,1 +39301,1662309,74,3747,1 +39302,1662326,44,2230,1 +39303,1662736,180,9004,1 +39304,1662756,81,4058,1 +39305,1662816,1,79,1 +39306,1662882,198,9908,1 +39307,1663200,166,8304,1 +39308,1663200,187,9363,1 +39309,1663200,194,9717,1 +39310,1663202,3,196,1 +39311,1663212,156,7845,1 +39312,1663218,49,2456,1 +39313,1663225,16,845,1 +39314,1663236,22,1130,1 +39315,1663248,58,2942,1 +39316,1663248,180,9004,1 +39317,1663251,160,8040,1 +39318,1663269,132,6637,1 +39319,1663275,22,1122,1 +39320,1663680,110,5541,1 +39321,1663680,191,9568,1 +39322,1663680,117,5897,1 +39323,1663681,6,323,1 +39324,1663681,86,4344,1 +39325,1663681,13,660,1 +39326,1663682,20,1049,1 +39327,1663692,176,8833,1 +39328,1663692,30,1549,1 +39329,1663693,125,6258,1 +39330,1663696,48,2418,1 +39331,1663701,177,8858,1 +39332,1663704,28,1412,1 +39333,1663706,153,7677,1 +39334,1663713,62,3109,1 +39335,1663713,73,3677,1 +39336,1663716,183,9162,1 +39337,1663716,137,6858,1 +39338,1663717,103,5179,1 +39339,1663728,47,2362,1 +39340,1663728,123,6192,1 +39341,1663730,194,9723,1 +39342,1663740,54,2735,1 +39343,1663740,172,8622,1 +39344,1663752,61,3059,1 +39345,1663816,20,1029,1 +39346,1663825,90,4501,1 +39347,1663828,2,119,1 +39348,1663836,174,8710,1 +39349,1663863,192,9602,1 +39350,1664160,34,1703,1 +39351,1664160,136,6840,1 +39352,1664172,165,8284,1 +39353,1664175,175,8800,1 +39354,1664191,92,4617,1 +39355,1664196,183,9151,1 +39356,1664209,143,7174,1 +39357,1664232,101,5054,1 +39358,1664299,162,8115,1 +39359,1664640,28,1428,1 +39360,1664640,92,4618,1 +39361,1664640,26,1342,1 +39362,1664641,104,5244,1 +39363,1664642,71,3590,1 +39364,1664643,31,1568,1 +39365,1664643,116,5801,1 +39366,1664643,45,2272,1 +39367,1664646,105,5283,1 +39368,1664646,3,171,1 +39369,1664649,18,903,1 +39370,1664649,147,7376,1 +39371,1664652,67,3371,1 +39372,1664653,102,5121,1 +39373,1664656,128,6416,1 +39374,1664664,58,2912,1 +39375,1664665,47,2390,1 +39376,1664667,78,3948,1 +39377,1664682,55,2786,1 +39378,1664692,139,6989,1 +39379,1664694,39,1959,1 +39380,1664700,73,3686,1 +39381,1664712,97,4896,1 +39382,1664712,188,9449,1 +39383,1664724,92,4611,1 +39384,1664734,89,4454,1 +39385,1664742,102,5136,1 +39386,1664750,61,3088,1 +39387,1664760,8,442,1 +39388,1664761,14,703,1 +39389,1664809,105,5254,1 +39390,1664829,95,4792,1 +39391,1664832,102,5103,1 +39392,1665144,67,3384,1 +39393,1665144,158,7929,1 +39394,1665600,10,505,1 +39395,1665601,161,8073,1 +39396,1665603,3,190,1 +39397,1665606,174,8747,1 +39398,1665613,102,5103,1 +39399,1665625,103,5178,1 +39400,1665625,128,6410,1 +39401,1665627,148,7412,1 +39402,1665636,141,7076,1 +39403,1665643,195,9763,1 +39404,1665645,108,5410,1 +39405,1665660,181,9095,1 +39406,1665660,160,8049,1 +39407,1665672,10,539,1 +39408,1665693,93,4690,1 +39409,1665744,42,2127,1 +39410,1665745,144,7219,1 +39411,1666086,83,4174,1 +39412,1666095,25,1254,1 +39413,1666176,181,9094,1 +39414,1666560,82,4110,1 +39415,1666560,124,6245,1 +39416,1666561,46,2337,1 +39417,1666562,106,5301,1 +39418,1666572,60,3049,1 +39419,1666572,74,3733,1 +39420,1666578,1,77,1 +39421,1666584,64,3227,1 +39422,1666584,153,7672,1 +39423,1666588,82,4112,1 +39424,1666597,55,2789,1 +39425,1666608,138,6929,1 +39426,1666608,56,2809,1 +39427,1666609,172,8605,1 +39428,1666614,178,8904,1 +39429,1666614,18,917,1 +39430,1666622,88,4442,1 +39431,1666632,84,4220,1 +39432,1666646,93,4696,1 +39433,1666653,154,7741,1 +39434,1666689,11,578,1 +39435,1666740,85,4276,1 +39436,1666755,53,2654,1 +39437,1666794,30,1506,1 +39438,1667043,164,8222,1 +39439,1667102,152,7645,1 +39440,1667135,83,4179,1 +39441,1667528,145,7256,1 +39442,1667532,171,8569,1 +39443,1667535,15,780,1 +39444,1667562,131,6559,1 +39445,1667582,116,5839,1 +39446,1667606,107,5377,1 +39447,1668003,10,550,1 +39448,1668006,70,3543,1 +39449,1668012,129,6454,1 +39450,1668012,132,6622,1 +39451,1668012,71,3551,1 +39452,1668014,32,1608,1 +39453,1668021,150,7533,1 +39454,1668024,155,7772,1 +39455,1668025,172,8649,1 +39456,1668025,137,6885,1 +39457,1668029,172,8621,1 +39458,1668030,159,7968,1 +39459,1668036,102,5123,1 +39460,1668037,130,6536,1 +39461,1668039,165,8282,1 +39462,1668048,35,1752,1 +39463,1668048,194,9743,1 +39464,1668048,192,9631,1 +39465,1668048,87,4387,1 +39466,1668049,48,2408,1 +39467,1668061,141,7074,1 +39468,1668061,29,1452,1 +39469,1668061,149,7485,1 +39470,1668072,87,4364,1 +39471,1668097,34,1725,1 +39472,1668108,183,9174,1 +39473,1668109,80,4007,1 +39474,1668132,106,5346,1 +39475,1668480,64,3219,1 +39476,1668484,83,4178,1 +39477,1668493,60,3044,1 +39478,1668516,64,3234,1 +39479,1668531,40,2007,1 +39480,1668540,123,6165,1 +39481,1668579,76,3841,1 +39482,1668588,176,8815,1 +39483,1668681,98,4919,1 +39484,1669440,139,6986,1 +39485,1669440,133,6684,1 +39486,1669454,87,4398,1 +39487,1669920,90,4532,1 +39488,1669921,160,8006,1 +39489,1669923,75,3762,1 +39490,1669926,67,3398,1 +39491,1669946,165,8285,1 +39492,1669951,10,508,1 +39493,1669957,27,1375,1 +39494,1669958,4,235,1 +39495,1669966,129,6479,1 +39496,1669968,175,8752,1 +39497,1669968,149,7475,1 +39498,1669977,94,4705,1 +39499,1669977,121,6058,1 +39500,1669981,192,9627,1 +39501,1669981,141,7079,1 +39502,1669991,141,7074,1 +39503,1670010,149,7499,1 +39504,1670031,63,3160,1 +39505,1670041,151,7585,1 +39506,1670076,8,414,1 +39507,1670100,185,9296,1 +39508,1670400,38,1940,1 +39509,1670401,157,7865,1 +39510,1670439,140,7033,1 +39511,1670508,178,8941,1 +39512,1670517,107,5380,1 +39513,1670544,18,920,1 +39514,1670880,42,2102,1 +39515,1670880,109,5476,1 +39516,1670882,175,8791,1 +39517,1670882,78,3902,1 +39518,1670889,27,1384,1 +39519,1670892,118,5920,1 +39520,1670893,181,9094,1 +39521,1670894,178,8907,1 +39522,1670894,74,3706,1 +39523,1670895,35,1765,1 +39524,1670896,179,8992,1 +39525,1670904,141,7077,1 +39526,1670904,21,1058,1 +39527,1670907,135,6755,1 +39528,1670907,82,4111,1 +39529,1670910,198,9943,1 +39530,1670910,149,7462,1 +39531,1670914,138,6918,1 +39532,1670916,51,2556,1 +39533,1670917,31,1570,1 +39534,1670928,170,8528,1 +39535,1670940,69,3486,1 +39536,1670940,120,6045,1 +39537,1670941,23,1165,1 +39538,1670952,111,5595,1 +39539,1670965,78,3949,1 +39540,1670988,160,8037,1 +39541,1671010,95,4796,1 +39542,1671085,168,8404,1 +39543,1671108,72,3610,1 +39544,1671112,60,3006,1 +39545,1671144,117,5896,1 +39546,1671366,2,113,1 +39547,1671372,70,3519,1 +39548,1671397,134,6747,1 +39549,1671406,144,7223,1 +39550,1671445,160,8013,1 +39551,1671492,143,7156,1 +39552,1671840,150,7523,1 +39553,1671840,68,3412,1 +39554,1671840,51,2567,1 +39555,1671840,8,411,1 +39556,1671841,66,3341,1 +39557,1671843,81,4099,1 +39558,1671845,10,504,1 +39559,1671847,190,9537,1 +39560,1671850,193,9700,1 +39561,1671852,171,8559,1 +39562,1671852,94,4742,1 +39563,1671852,54,2710,1 +39564,1671852,116,5813,1 +39565,1671852,117,5890,1 +39566,1671854,140,7024,1 +39567,1671854,153,7690,1 +39568,1671855,43,2153,1 +39569,1671861,22,1136,1 +39570,1671861,2,112,1 +39571,1671862,24,1202,1 +39572,1671864,79,3982,1 +39573,1671864,10,525,1 +39574,1671864,162,8143,1 +39575,1671864,1,80,1 +39576,1671865,57,2873,1 +39577,1671865,32,1627,1 +39578,1671867,158,7940,1 +39579,1671876,197,9867,1 +39580,1671876,78,3934,1 +39581,1671879,82,4118,1 +39582,1671882,86,4331,1 +39583,1671891,152,7641,1 +39584,1671906,115,5775,1 +39585,1671912,40,2028,1 +39586,1671912,127,6385,1 +39587,1671913,88,4410,1 +39588,1671914,132,6627,1 +39589,1671914,136,6848,1 +39590,1671924,80,4008,1 +39591,1671924,53,2655,1 +39592,1671924,79,3981,1 +39593,1671924,109,5482,1 +39594,1671933,38,1903,1 +39595,1671933,91,4552,1 +39596,1671948,74,3739,1 +39597,1671969,138,6935,1 +39598,1672001,3,183,1 +39599,1672803,34,1727,1 +39600,1672813,66,3330,1 +39601,1672829,107,5361,1 +39602,1672852,35,1789,1 +39603,1672896,75,3759,1 +39604,1672980,194,9738,1 +39605,1673307,193,9693,1 +39606,1673340,121,6071,1 +39607,1673760,63,3189,1 +39608,1673760,88,4450,1 +39609,1673760,186,9314,1 +39610,1673760,81,4070,1 +39611,1673764,144,7220,1 +39612,1673772,10,514,1 +39613,1673772,133,6663,1 +39614,1673772,137,6869,1 +39615,1673773,0,8,1 +39616,1673773,79,3961,1 +39617,1673775,44,2211,1 +39618,1673784,0,15,1 +39619,1673784,145,7255,1 +39620,1673784,131,6561,1 +39621,1673785,162,8101,1 +39622,1673793,144,7215,1 +39623,1673802,172,8611,1 +39624,1673803,82,4129,1 +39625,1673808,176,8814,1 +39626,1673808,85,4292,1 +39627,1673812,10,543,1 +39628,1673820,8,446,1 +39629,1673833,137,6857,1 +39630,1673868,126,6323,1 +39631,1673868,144,7240,1 +39632,1673877,190,9538,1 +39633,1673905,44,2216,1 +39634,1673916,6,323,1 +39635,1673917,184,9202,1 +39636,1673943,46,2350,1 +39637,1674105,93,4695,1 +39638,1674240,36,1817,1 +39639,1674240,156,7806,1 +39640,1674240,164,8248,1 +39641,1674240,60,3031,1 +39642,1674240,174,8712,1 +39643,1674240,40,2023,1 +39644,1674240,52,2626,1 +39645,1674240,116,5845,1 +39646,1674241,174,8724,1 +39647,1674241,42,2132,1 +39648,1674242,74,3742,1 +39649,1674242,2,114,1 +39650,1674242,133,6675,1 +39651,1674245,178,8940,1 +39652,1674246,174,8736,1 +39653,1674248,109,5457,1 +39654,1674249,190,9531,1 +39655,1674249,66,3346,1 +39656,1674252,106,5339,1 +39657,1674252,86,4307,1 +39658,1674252,194,9738,1 +39659,1674252,88,4420,1 +39660,1674252,10,523,1 +39661,1674252,175,8772,1 +39662,1674252,22,1104,1 +39663,1674252,13,663,1 +39664,1674252,152,7631,1 +39665,1674253,24,1243,1 +39666,1674253,16,831,1 +39667,1674261,172,8636,1 +39668,1674262,58,2904,1 +39669,1674263,105,5265,1 +39670,1674264,112,5629,1 +39671,1674265,95,4775,1 +39672,1674266,154,7748,1 +39673,1674266,94,4729,1 +39674,1674276,186,9337,1 +39675,1674276,111,5556,1 +39676,1674276,101,5053,1 +39677,1674276,18,932,1 +39678,1674277,20,1020,1 +39679,1674282,187,9366,1 +39680,1674282,82,4140,1 +39681,1674285,64,3217,1 +39682,1674288,51,2569,1 +39683,1674288,178,8929,1 +39684,1674288,22,1107,1 +39685,1674293,116,5842,1 +39686,1674294,23,1200,1 +39687,1674297,99,4962,1 +39688,1674300,119,5979,1 +39689,1674301,155,7786,1 +39690,1674303,141,7094,1 +39691,1674305,182,9112,1 +39692,1674305,109,5466,1 +39693,1674321,56,2828,1 +39694,1674322,41,2091,1 +39695,1674324,36,1845,1 +39696,1674343,98,4906,1 +39697,1674345,119,5972,1 +39698,1674348,195,9785,1 +39699,1674348,90,4501,1 +39700,1674350,66,3336,1 +39701,1674350,18,913,1 +39702,1674355,124,6216,1 +39703,1674356,15,775,1 +39704,1674357,192,9643,1 +39705,1674363,43,2191,1 +39706,1674372,59,2996,1 +39707,1674385,107,5391,1 +39708,1674390,87,4371,1 +39709,1674397,122,6147,1 +39710,1674408,124,6230,1 +39711,1674418,128,6433,1 +39712,1674420,119,5995,1 +39713,1674422,20,1034,1 +39714,1674435,49,2484,1 +39715,1674462,85,4273,1 +39716,1674721,142,7105,1 +39717,1674721,195,9786,1 +39718,1674801,62,3109,1 +39719,1675200,176,8843,1 +39720,1675200,152,7614,1 +39721,1675204,79,3989,1 +39722,1675209,121,6060,1 +39723,1675212,52,2634,1 +39724,1675212,112,5617,1 +39725,1675213,55,2775,1 +39726,1675215,137,6864,1 +39727,1675218,21,1078,1 +39728,1675221,191,9581,1 +39729,1675222,137,6856,1 +39730,1675228,145,7254,1 +39731,1675230,177,8851,1 +39732,1675231,30,1503,1 +39733,1675233,54,2741,1 +39734,1675237,74,3705,1 +39735,1675239,184,9243,1 +39736,1675246,112,5612,1 +39737,1675249,74,3748,1 +39738,1675253,44,2235,1 +39739,1675255,59,2962,1 +39740,1675260,62,3111,1 +39741,1675272,83,4200,1 +39742,1675273,51,2566,1 +39743,1675275,113,5659,1 +39744,1675295,108,5423,1 +39745,1675341,67,3380,1 +39746,1675345,132,6606,1 +39747,1675680,61,3064,1 +39748,1675680,146,7310,1 +39749,1675686,160,8008,1 +39750,1675689,72,3641,1 +39751,1675695,176,8812,1 +39752,1675704,83,4171,1 +39753,1675710,96,4832,1 +39754,1675717,56,2816,1 +39755,1675725,183,9195,1 +39756,1675729,13,687,1 +39757,1675746,182,9147,1 +39758,1675753,193,9656,1 +39759,1675754,189,9493,1 +39760,1675765,191,9589,1 +39761,1675779,185,9264,1 +39762,1675788,59,2975,1 +39763,1675800,31,1562,1 +39764,1675920,48,2444,1 +39765,1676160,191,9587,1 +39766,1676173,27,1357,1 +39767,1676176,196,9829,1 +39768,1676184,130,6539,1 +39769,1676184,93,4694,1 +39770,1676196,178,8941,1 +39771,1676208,127,6368,1 +39772,1676211,101,5075,1 +39773,1676246,87,4356,1 +39774,1676247,188,9410,1 +39775,1676280,32,1604,1 +39776,1676328,8,449,1 +39777,1676641,30,1531,1 +39778,1676772,166,8318,1 +39779,1677120,147,7383,1 +39780,1677121,140,7018,1 +39781,1677122,21,1067,1 +39782,1677122,192,9634,1 +39783,1677123,107,5373,1 +39784,1677130,146,7302,1 +39785,1677132,48,2421,1 +39786,1677132,7,395,1 +39787,1677133,175,8753,1 +39788,1677133,143,7197,1 +39789,1677135,59,2984,1 +39790,1677136,50,2519,1 +39791,1677141,164,8206,1 +39792,1677144,31,1600,1 +39793,1677144,190,9515,1 +39794,1677145,188,9410,1 +39795,1677146,86,4337,1 +39796,1677153,85,4300,1 +39797,1677153,182,9147,1 +39798,1677156,132,6644,1 +39799,1677156,40,2035,1 +39800,1677156,122,6120,1 +39801,1677156,118,5904,1 +39802,1677157,17,854,1 +39803,1677159,124,6232,1 +39804,1677165,36,1827,1 +39805,1677168,2,103,1 +39806,1677169,28,1417,1 +39807,1677174,43,2160,1 +39808,1677177,179,8972,1 +39809,1677177,52,2644,1 +39810,1677180,26,1349,1 +39811,1677180,18,929,1 +39812,1677185,30,1539,1 +39813,1677185,56,2846,1 +39814,1677186,44,2206,1 +39815,1677190,7,368,1 +39816,1677192,100,5006,1 +39817,1677193,177,8851,1 +39818,1677198,69,3481,1 +39819,1677204,193,9663,1 +39820,1677204,189,9457,1 +39821,1677216,119,5970,1 +39822,1677230,155,7754,1 +39823,1677232,190,9550,1 +39824,1677264,46,2319,1 +39825,1677267,10,541,1 +39826,1677274,18,919,1 +39827,1677282,73,3655,1 +39828,1677288,142,7116,1 +39829,1677324,99,4955,1 +39830,1677384,190,9549,1 +39831,1677468,9,453,1 +39832,1677601,29,1492,1 +39833,1677613,14,747,1 +39834,1677621,16,814,1 +39835,1677624,17,886,1 +39836,1677624,99,4971,1 +39837,1677660,37,1866,1 +39838,1677672,70,3532,1 +39839,1678080,23,1197,1 +39840,1678080,6,325,1 +39841,1678081,28,1426,1 +39842,1678082,94,4730,1 +39843,1678092,1,98,1 +39844,1678092,42,2107,1 +39845,1678092,36,1818,1 +39846,1678093,103,5154,1 +39847,1678093,79,3996,1 +39848,1678095,49,2473,1 +39849,1678101,92,4605,1 +39850,1678104,45,2259,1 +39851,1678104,195,9757,1 +39852,1678106,66,3347,1 +39853,1678116,87,4386,1 +39854,1678116,0,22,1 +39855,1678128,113,5676,1 +39856,1678140,105,5286,1 +39857,1678140,35,1779,1 +39858,1678143,50,2520,1 +39859,1678143,96,4806,1 +39860,1678164,94,4723,1 +39861,1678164,116,5824,1 +39862,1678165,104,5240,1 +39863,1678171,158,7936,1 +39864,1678173,80,4013,1 +39865,1678201,142,7113,1 +39866,1678207,3,184,1 +39867,1678212,88,4416,1 +39868,1678216,109,5494,1 +39869,1678224,81,4071,1 +39870,1678237,6,331,1 +39871,1678272,158,7938,1 +39872,1678347,195,9769,1 +39873,1678572,10,521,1 +39874,1679046,195,9768,1 +39875,1679100,155,7767,1 +39876,1679568,80,4043,1 +39877,1680001,90,4541,1 +39878,1680012,5,296,1 +39879,1680099,157,7895,1 +39880,1680492,138,6907,1 +39881,1680517,19,971,1 +39882,1680528,62,3149,1 +39883,1680540,181,9053,1 +39884,1680544,182,9140,1 +39885,1680552,166,8306,1 +39886,1680561,101,5059,1 +39887,1680567,91,4568,1 +39888,1680576,97,4876,1 +39889,1680577,196,9848,1 +39890,1680609,161,8052,1 +39891,1680617,103,5172,1 +39892,1681452,168,8440,1 +39893,1681467,130,6509,1 +39894,1681476,163,8192,1 +39895,1681476,14,721,1 +39896,1681479,80,4009,1 +39897,1681492,164,8224,1 +39898,1681500,169,8488,1 +39899,1681548,119,5958,1 +39900,1681920,66,3312,1 +39901,1681921,195,9756,1 +39902,1681971,27,1394,1 +39903,1682004,140,7010,1 +39904,1682019,197,9898,1 +39905,1682030,185,9297,1 +39906,1682041,137,6878,1 +39907,1682042,132,6628,1 +39908,1682089,129,6494,1 +39909,1682100,178,8919,1 +39910,1682229,133,6680,1 +39911,1682400,24,1237,1 +39912,1682400,137,6871,1 +39913,1682401,12,627,1 +39914,1682403,92,4638,1 +39915,1682406,162,8105,1 +39916,1682410,14,744,1 +39917,1682412,149,7467,1 +39918,1682412,13,653,1 +39919,1682412,181,9082,1 +39920,1682424,32,1650,1 +39921,1682424,154,7737,1 +39922,1682427,69,3493,1 +39923,1682431,48,2444,1 +39924,1682432,136,6813,1 +39925,1682436,12,649,1 +39926,1682438,105,5260,1 +39927,1682441,124,6238,1 +39928,1682445,129,6493,1 +39929,1682448,191,9572,1 +39930,1682449,87,4397,1 +39931,1682454,79,3954,1 +39932,1682469,101,5081,1 +39933,1682477,197,9897,1 +39934,1682479,81,4063,1 +39935,1682497,190,9508,1 +39936,1682516,42,2122,1 +39937,1682521,153,7689,1 +39938,1682568,87,4385,1 +39939,1682721,36,1819,1 +39940,1682880,42,2142,1 +39941,1682892,130,6543,1 +39942,1682892,151,7579,1 +39943,1682904,83,4178,1 +39944,1682904,156,7844,1 +39945,1682916,68,3425,1 +39946,1682922,99,4971,1 +39947,1682953,128,6404,1 +39948,1683366,134,6731,1 +39949,1683384,159,7996,1 +39950,1683384,192,9635,1 +39951,1683384,67,3377,1 +39952,1683397,46,2339,1 +39953,1683405,103,5163,1 +39954,1683434,111,5587,1 +39955,1683438,48,2426,1 +39956,1683463,188,9406,1 +39957,1683564,148,7443,1 +39958,1683846,75,3782,1 +39959,1683852,172,8641,1 +39960,1683878,71,3581,1 +39961,1683901,174,8716,1 +39962,1683921,68,3430,1 +39963,1683938,86,4324,1 +39964,1683960,186,9317,1 +39965,1683987,61,3052,1 +39966,1684032,75,3789,1 +39967,1684320,110,5550,1 +39968,1684320,126,6317,1 +39969,1684320,21,1068,1 +39970,1684321,110,5503,1 +39971,1684321,36,1815,1 +39972,1684321,183,9181,1 +39973,1684321,92,4616,1 +39974,1684323,72,3606,1 +39975,1684324,8,407,1 +39976,1684329,49,2500,1 +39977,1684332,117,5898,1 +39978,1684332,20,1025,1 +39979,1684332,159,7991,1 +39980,1684333,2,131,1 +39981,1684344,179,8993,1 +39982,1684344,29,1452,1 +39983,1684344,46,2323,1 +39984,1684344,3,155,1 +39985,1684344,24,1228,1 +39986,1684345,27,1362,1 +39987,1684345,145,7281,1 +39988,1684346,0,20,1 +39989,1684346,158,7934,1 +39990,1684347,142,7128,1 +39991,1684351,150,7534,1 +39992,1684353,129,6484,1 +39993,1684356,87,4365,1 +39994,1684356,6,308,1 +39995,1684357,70,3534,1 +39996,1684357,150,7505,1 +39997,1684358,164,8210,1 +39998,1684359,127,6398,1 +39999,1684359,83,4195,1 +40000,1684365,106,5303,1 +40001,1684368,178,8922,1 +40002,1684368,181,9056,1 +40003,1684369,94,4743,1 +40004,1684369,86,4312,1 +40005,1684380,182,9139,1 +40006,1684381,86,4303,1 +40007,1684381,19,979,1 +40008,1684388,119,5973,1 +40009,1684389,189,9469,1 +40010,1684392,39,1967,1 +40011,1684392,90,4536,1 +40012,1684395,189,9477,1 +40013,1684401,12,631,1 +40014,1684405,58,2910,1 +40015,1684408,75,3790,1 +40016,1684408,80,4025,1 +40017,1684416,74,3739,1 +40018,1684416,186,9349,1 +40019,1684444,38,1923,1 +40020,1684445,46,2341,1 +40021,1684500,174,8747,1 +40022,1684526,48,2416,1 +40023,1684526,55,2775,1 +40024,1684531,117,5878,1 +40025,1684549,115,5764,1 +40026,1685286,150,7545,1 +40027,1685288,82,4134,1 +40028,1685290,75,3783,1 +40029,1685292,103,5181,1 +40030,1685293,31,1565,1 +40031,1685293,70,3516,1 +40032,1685304,136,6813,1 +40033,1685304,159,7991,1 +40034,1685304,44,2205,1 +40035,1685305,65,3264,1 +40036,1685321,149,7479,1 +40037,1685325,116,5812,1 +40038,1685328,74,3714,1 +40039,1685334,19,986,1 +40040,1685342,54,2731,1 +40041,1685349,39,1960,1 +40042,1685352,17,898,1 +40043,1685376,131,6556,1 +40044,1685385,3,187,1 +40045,1685450,69,3500,1 +40046,1685482,180,9032,1 +40047,1685763,149,7474,1 +40048,1685796,56,2802,1 +40049,1685809,116,5808,1 +40050,1685823,80,4027,1 +40051,1685833,125,6255,1 +40052,1685868,192,9614,1 +40053,1685910,52,2637,1 +40054,1686253,87,4374,1 +40055,1686271,31,1555,1 +40056,1686337,6,327,1 +40057,1686360,12,613,1 +40058,1686720,96,4819,1 +40059,1686741,25,1256,1 +40060,1686744,1,64,1 +40061,1686768,111,5593,1 +40062,1686769,36,1805,1 +40063,1686781,1,79,1 +40064,1686792,49,2470,1 +40065,1686792,183,9152,1 +40066,1686794,163,8161,1 +40067,1686804,0,4,1 +40068,1686823,97,4862,1 +40069,1686828,2,139,1 +40070,1686832,186,9336,1 +40071,1687440,33,1652,1 +40072,1687680,129,6477,1 +40073,1687680,35,1784,1 +40074,1687680,56,2826,1 +40075,1687680,141,7085,1 +40076,1687680,161,8057,1 +40077,1687680,145,7295,1 +40078,1687680,136,6836,1 +40079,1687681,165,8291,1 +40080,1687682,102,5135,1 +40081,1687683,74,3711,1 +40082,1687686,6,338,1 +40083,1687692,38,1928,1 +40084,1687692,15,774,1 +40085,1687692,64,3244,1 +40086,1687693,130,6503,1 +40087,1687702,59,2960,1 +40088,1687704,32,1622,1 +40089,1687704,44,2202,1 +40090,1687705,2,137,1 +40091,1687706,141,7059,1 +40092,1687706,50,2512,1 +40093,1687728,3,179,1 +40094,1687737,138,6931,1 +40095,1687741,180,9018,1 +40096,1687742,80,4019,1 +40097,1687752,191,9565,1 +40098,1687752,54,2745,1 +40099,1687776,57,2892,1 +40100,1687812,198,9948,1 +40101,1687830,87,4391,1 +40102,1687849,105,5287,1 +40103,1687875,9,464,1 +40104,1688165,60,3004,1 +40105,1688176,152,7644,1 +40106,1688232,197,9897,1 +40107,1688304,131,6584,1 +40108,1688640,163,8181,1 +40109,1688652,121,6055,1 +40110,1688686,68,3430,1 +40111,1688778,21,1083,1 +40112,1689120,89,4474,1 +40113,1689127,170,8535,1 +40114,1689149,81,4085,1 +40115,1689153,43,2195,1 +40116,1689172,174,8704,1 +40117,1689204,146,7328,1 +40118,1689205,186,9339,1 +40119,1689360,113,5685,1 +40120,1689600,78,3914,1 +40121,1689603,114,5718,1 +40122,1689607,170,8544,1 +40123,1689607,41,2097,1 +40124,1689615,100,5025,1 +40125,1689625,40,2004,1 +40126,1689633,0,18,1 +40127,1689636,180,9038,1 +40128,1689639,67,3373,1 +40129,1689645,78,3929,1 +40130,1689648,28,1413,1 +40131,1689648,109,5482,1 +40132,1689672,188,9424,1 +40133,1689723,127,6378,1 +40134,1689816,27,1353,1 +40135,1690560,142,7132,1 +40136,1690560,199,9956,1 +40137,1690561,135,6789,1 +40138,1690563,194,9742,1 +40139,1690572,133,6689,1 +40140,1690574,18,943,1 +40141,1690584,33,1679,1 +40142,1690587,86,4337,1 +40143,1690587,39,1966,1 +40144,1690608,67,3363,1 +40145,1690611,104,5220,1 +40146,1690612,114,5727,1 +40147,1690620,111,5588,1 +40148,1690634,29,1488,1 +40149,1691521,86,4310,1 +40150,1691545,172,8625,1 +40151,1692000,73,3656,1 +40152,1692012,95,4788,1 +40153,1692045,11,575,1 +40154,1692084,190,9510,1 +40155,1692085,145,7267,1 +40156,1692480,47,2368,1 +40157,1692480,6,348,1 +40158,1692480,14,727,1 +40159,1692481,151,7587,1 +40160,1692483,33,1658,1 +40161,1692484,106,5320,1 +40162,1692489,102,5114,1 +40163,1692492,161,8094,1 +40164,1692492,57,2874,1 +40165,1692492,175,8779,1 +40166,1692493,93,4658,1 +40167,1692502,101,5081,1 +40168,1692504,105,5290,1 +40169,1692504,121,6092,1 +40170,1692506,63,3160,1 +40171,1692516,86,4335,1 +40172,1692516,172,8606,1 +40173,1692518,119,5956,1 +40174,1692520,122,6119,1 +40175,1692520,138,6901,1 +40176,1692525,181,9084,1 +40177,1692528,135,6763,1 +40178,1692528,174,8715,1 +40179,1692529,178,8932,1 +40180,1692550,123,6194,1 +40181,1692552,153,7667,1 +40182,1692567,104,5238,1 +40183,1692576,171,8598,1 +40184,1692579,80,4007,1 +40185,1692594,72,3631,1 +40186,1692643,83,4182,1 +40187,1692702,43,2195,1 +40188,1692962,75,3780,1 +40189,1692972,73,3658,1 +40190,1693044,41,2053,1 +40191,1693080,182,9135,1 +40192,1693560,86,4311,1 +40193,1693920,170,8522,1 +40194,1693920,58,2915,1 +40195,1693932,93,4686,1 +40196,1693945,149,7465,1 +40197,1693948,171,8589,1 +40198,1694028,64,3245,1 +40199,1694106,91,4582,1 +40200,1694400,116,5850,1 +40201,1694400,64,3202,1 +40202,1694400,117,5885,1 +40203,1694401,192,9619,1 +40204,1694402,94,4749,1 +40205,1694406,59,2958,1 +40206,1694415,92,4644,1 +40207,1694441,34,1714,1 +40208,1694445,144,7222,1 +40209,1694448,68,3410,1 +40210,1694448,20,1034,1 +40211,1694448,24,1246,1 +40212,1694452,90,4506,1 +40213,1694457,75,3786,1 +40214,1694463,73,3666,1 +40215,1694469,49,2477,1 +40216,1694472,129,6456,1 +40217,1694484,131,6559,1 +40218,1694523,4,239,1 +40219,1694571,28,1436,1 +40220,1694574,50,2513,1 +40221,1694915,166,8320,1 +40222,1695360,121,6052,1 +40223,1695362,156,7823,1 +40224,1695366,107,5354,1 +40225,1695369,184,9221,1 +40226,1695468,9,482,1 +40227,1695482,124,6221,1 +40228,1696326,47,2370,1 +40229,1696332,33,1676,1 +40230,1696344,150,7524,1 +40231,1696356,130,6538,1 +40232,1696368,24,1245,1 +40233,1696371,177,8859,1 +40234,1696429,91,4588,1 +40235,1696483,69,3456,1 +40236,1696836,106,5332,1 +40237,1696887,199,9967,1 +40238,1697412,180,9025,1 +40239,1698241,62,3119,1 +40240,1698252,86,4328,1 +40241,1698255,122,6140,1 +40242,1698265,49,2473,1 +40243,1698265,56,2838,1 +40244,1698276,48,2434,1 +40245,1698288,80,4037,1 +40246,1698292,126,6309,1 +40247,1698315,58,2923,1 +40248,1698381,36,1850,1 +40249,1698781,131,6589,1 +40250,1699209,29,1500,1 +40251,1699218,175,8798,1 +40252,1699246,48,2431,1 +40253,1699264,51,2554,1 +40254,1699272,94,4718,1 +40255,1699296,58,2929,1 +40256,1699472,98,4917,1 +40257,1699702,68,3437,1 +40258,1699716,62,3149,1 +40259,1699729,110,5535,1 +40260,1699801,175,8793,1 +40261,1700167,68,3403,1 +40262,1700172,92,4617,1 +40263,1700176,166,8305,1 +40264,1700196,9,493,1 +40265,1700196,195,9763,1 +40266,1700208,74,3716,1 +40267,1700211,67,3372,1 +40268,1700212,112,5616,1 +40269,1700229,116,5840,1 +40270,1700256,4,223,1 +40271,1700640,171,8593,1 +40272,1700643,93,4681,1 +40273,1700647,101,5093,1 +40274,1700652,166,8350,1 +40275,1700664,137,6889,1 +40276,1700664,125,6284,1 +40277,1700680,38,1936,1 +40278,1700700,120,6049,1 +40279,1700737,191,9573,1 +40280,1700754,96,4815,1 +40281,1700871,184,9230,1 +40282,1701132,157,7876,1 +40283,1701135,122,6102,1 +40284,1701144,161,8096,1 +40285,1701165,119,5982,1 +40286,1701206,121,6082,1 +40287,1701217,92,4644,1 +40288,1701229,31,1582,1 +40289,1701606,9,496,1 +40290,1701610,17,878,1 +40291,1701615,16,819,1 +40292,1701648,11,571,1 +40293,1701650,174,8715,1 +40294,1701660,137,6884,1 +40295,1701660,119,5960,1 +40296,1701738,174,8746,1 +40297,1702101,101,5078,1 +40298,1702106,126,6333,1 +40299,1702117,186,9308,1 +40300,1702170,92,4612,1 +40301,1702201,96,4808,1 +40302,1702236,35,1755,1 +40303,1702560,25,1281,1 +40304,1702564,165,8262,1 +40305,1702575,30,1540,1 +40306,1702610,125,6273,1 +40307,1702732,18,929,1 +40308,1703520,196,9827,1 +40309,1703520,32,1638,1 +40310,1703521,187,9355,1 +40311,1703521,103,5152,1 +40312,1703521,12,622,1 +40313,1703523,146,7348,1 +40314,1703528,107,5359,1 +40315,1703529,170,8504,1 +40316,1703532,62,3141,1 +40317,1703532,93,4696,1 +40318,1703533,198,9939,1 +40319,1703537,29,1470,1 +40320,1703538,198,9924,1 +40321,1703541,13,699,1 +40322,1703541,192,9612,1 +40323,1703545,45,2257,1 +40324,1703557,130,6501,1 +40325,1703558,111,5576,1 +40326,1703574,109,5471,1 +40327,1703580,69,3487,1 +40328,1703592,186,9334,1 +40329,1703604,57,2893,1 +40330,1703617,92,4649,1 +40331,1703618,159,7976,1 +40332,1703619,43,2189,1 +40333,1703628,65,3253,1 +40334,1703631,98,4902,1 +40335,1703640,9,497,1 +40336,1703652,5,275,1 +40337,1703653,38,1913,1 +40338,1703681,57,2893,1 +40339,1703736,156,7804,1 +40340,1704008,59,2966,1 +40341,1704019,43,2158,1 +40342,1704097,188,9425,1 +40343,1704228,16,835,1 +40344,1704444,58,2919,1 +40345,1704480,96,4835,1 +40346,1704480,107,5385,1 +40347,1704481,167,8365,1 +40348,1704489,125,6258,1 +40349,1704492,106,5348,1 +40350,1704492,37,1853,1 +40351,1704492,181,9067,1 +40352,1704492,157,7857,1 +40353,1704493,182,9139,1 +40354,1704493,137,6858,1 +40355,1704494,35,1776,1 +40356,1704507,36,1803,1 +40357,1704516,8,431,1 +40358,1704518,38,1921,1 +40359,1704528,68,3427,1 +40360,1704529,177,8866,1 +40361,1704541,92,4618,1 +40362,1704555,173,8672,1 +40363,1704573,97,4884,1 +40364,1704577,127,6367,1 +40365,1704583,76,3806,1 +40366,1704614,127,6367,1 +40367,1704628,55,2757,1 +40368,1704643,104,5242,1 +40369,1704650,138,6930,1 +40370,1704960,185,9285,1 +40371,1704960,0,2,1 +40372,1704963,13,664,1 +40373,1704972,115,5768,1 +40374,1704972,109,5455,1 +40375,1704973,100,5020,1 +40376,1704975,103,5192,1 +40377,1704981,90,4508,1 +40378,1704996,178,8941,1 +40379,1704996,183,9184,1 +40380,1705006,26,1341,1 +40381,1705011,62,3146,1 +40382,1705017,170,8501,1 +40383,1705020,98,4935,1 +40384,1705032,36,1825,1 +40385,1705035,141,7063,1 +40386,1705047,109,5454,1 +40387,1705056,106,5307,1 +40388,1705069,46,2306,1 +40389,1705069,103,5187,1 +40390,1705083,118,5941,1 +40391,1705086,10,530,1 +40392,1705092,19,975,1 +40393,1705143,35,1753,1 +40394,1705203,127,6392,1 +40395,1705204,107,5392,1 +40396,1705440,89,4484,1 +40397,1705440,138,6945,1 +40398,1705440,16,801,1 +40399,1705440,174,8725,1 +40400,1705441,0,19,1 +40401,1705441,110,5523,1 +40402,1705441,5,255,1 +40403,1705442,61,3097,1 +40404,1705443,4,219,1 +40405,1705443,91,4568,1 +40406,1705443,190,9540,1 +40407,1705443,172,8646,1 +40408,1705444,45,2285,1 +40409,1705444,14,705,1 +40410,1705446,133,6664,1 +40411,1705446,136,6819,1 +40412,1705449,9,500,1 +40413,1705449,66,3322,1 +40414,1705449,55,2788,1 +40415,1705452,62,3113,1 +40416,1705452,27,1382,1 +40417,1705452,83,4185,1 +40418,1705452,130,6504,1 +40419,1705452,169,8467,1 +40420,1705452,58,2908,1 +40421,1705452,66,3342,1 +40422,1705452,106,5321,1 +40423,1705452,168,8430,1 +40424,1705452,122,6112,1 +40425,1705453,3,178,1 +40426,1705454,114,5714,1 +40427,1705455,53,2690,1 +40428,1705464,71,3568,1 +40429,1705464,65,3251,1 +40430,1705464,33,1657,1 +40431,1705465,186,9316,1 +40432,1705469,187,9364,1 +40433,1705471,78,3934,1 +40434,1705471,54,2733,1 +40435,1705473,130,6540,1 +40436,1705476,85,4265,1 +40437,1705476,71,3586,1 +40438,1705477,150,7504,1 +40439,1705477,154,7719,1 +40440,1705477,180,9007,1 +40441,1705478,152,7616,1 +40442,1705482,190,9545,1 +40443,1705482,149,7500,1 +40444,1705488,87,4370,1 +40445,1705488,132,6640,1 +40446,1705497,168,8423,1 +40447,1705500,168,8401,1 +40448,1705516,80,4015,1 +40449,1705524,186,9305,1 +40450,1705536,195,9789,1 +40451,1705537,113,5680,1 +40452,1705539,162,8117,1 +40453,1705543,78,3921,1 +40454,1705551,90,4504,1 +40455,1705551,97,4883,1 +40456,1705560,196,9841,1 +40457,1705572,19,996,1 +40458,1705581,189,9462,1 +40459,1705590,150,7506,1 +40460,1705603,112,5647,1 +40461,1705608,11,589,1 +40462,1705620,89,4455,1 +40463,1705621,92,4617,1 +40464,1705638,140,7047,1 +40465,1705690,150,7549,1 +40466,1705765,139,6988,1 +40467,1705921,115,5777,1 +40468,1706400,182,9139,1 +40469,1706412,80,4047,1 +40470,1706412,148,7449,1 +40471,1706413,124,6209,1 +40472,1706424,118,5943,1 +40473,1706424,30,1550,1 +40474,1706425,96,4810,1 +40475,1706430,97,4894,1 +40476,1706436,70,3509,1 +40477,1706448,184,9206,1 +40478,1706466,189,9487,1 +40479,1706472,32,1606,1 +40480,1706485,24,1233,1 +40481,1706496,184,9215,1 +40482,1706497,130,6536,1 +40483,1706502,159,7965,1 +40484,1706520,179,8967,1 +40485,1706520,15,787,1 +40486,1706532,36,1844,1 +40487,1706640,137,6878,1 +40488,1706679,73,3693,1 +40489,1706680,186,9319,1 +40490,1706904,59,2995,1 +40491,1706928,29,1455,1 +40492,1706928,61,3055,1 +40493,1706929,156,7828,1 +40494,1707397,15,760,1 +40495,1707397,134,6749,1 +40496,1707408,11,561,1 +40497,1707415,10,526,1 +40498,1707444,77,3852,1 +40499,1707462,27,1352,1 +40500,1707492,149,7492,1 +40501,1707516,199,9993,1 +40502,1707840,57,2876,1 +40503,1707840,57,2892,1 +40504,1707841,91,4564,1 +40505,1707844,129,6462,1 +40506,1707846,0,35,1 +40507,1707852,62,3110,1 +40508,1707864,109,5493,1 +40509,1707866,41,2063,1 +40510,1707870,164,8240,1 +40511,1707877,10,515,1 +40512,1707888,145,7291,1 +40513,1707898,2,132,1 +40514,1707900,19,995,1 +40515,1707925,58,2922,1 +40516,1708134,127,6394,1 +40517,1708811,72,3638,1 +40518,1708812,152,7649,1 +40519,1708812,101,5087,1 +40520,1708812,14,720,1 +40521,1708813,142,7140,1 +40522,1708815,141,7080,1 +40523,1708824,51,2586,1 +40524,1708825,112,5614,1 +40525,1708872,50,2546,1 +40526,1708914,183,9153,1 +40527,1708959,111,5583,1 +40528,1709028,199,9971,1 +40529,1709077,58,2928,1 +40530,1709280,150,7549,1 +40531,1709280,79,3952,1 +40532,1709280,105,5273,1 +40533,1709280,102,5121,1 +40534,1709280,30,1501,1 +40535,1709280,86,4349,1 +40536,1709280,150,7507,1 +40537,1709280,164,8221,1 +40538,1709280,89,4470,1 +40539,1709282,78,3922,1 +40540,1709282,17,899,1 +40541,1709283,64,3204,1 +40542,1709286,33,1666,1 +40543,1709287,79,3955,1 +40544,1709289,73,3659,1 +40545,1709292,193,9679,1 +40546,1709292,144,7235,1 +40547,1709292,159,7973,1 +40548,1709292,151,7565,1 +40549,1709292,147,7375,1 +40550,1709292,118,5935,1 +40551,1709292,136,6804,1 +40552,1709292,135,6784,1 +40553,1709292,198,9902,1 +40554,1709292,182,9134,1 +40555,1709292,171,8600,1 +40556,1709293,197,9858,1 +40557,1709293,21,1065,1 +40558,1709293,79,3977,1 +40559,1709295,103,5158,1 +40560,1709295,18,932,1 +40561,1709296,53,2666,1 +40562,1709298,73,3695,1 +40563,1709299,6,301,1 +40564,1709301,163,8184,1 +40565,1709302,12,626,1 +40566,1709304,34,1713,1 +40567,1709304,11,559,1 +40568,1709304,189,9499,1 +40569,1709304,177,8891,1 +40570,1709304,156,7826,1 +40571,1709304,158,7906,1 +40572,1709305,192,9611,1 +40573,1709305,173,8666,1 +40574,1709305,32,1612,1 +40575,1709305,194,9722,1 +40576,1709307,61,3091,1 +40577,1709308,119,5957,1 +40578,1709309,33,1687,1 +40579,1709310,32,1648,1 +40580,1709313,188,9439,1 +40581,1709315,164,8227,1 +40582,1709316,187,9396,1 +40583,1709316,40,2006,1 +40584,1709316,75,3771,1 +40585,1709316,44,2227,1 +40586,1709316,60,3005,1 +40587,1709317,182,9108,1 +40588,1709317,6,320,1 +40589,1709318,95,4772,1 +40590,1709328,35,1797,1 +40591,1709328,64,3247,1 +40592,1709328,8,409,1 +40593,1709328,69,3470,1 +40594,1709328,49,2491,1 +40595,1709329,63,3186,1 +40596,1709330,111,5565,1 +40597,1709330,149,7480,1 +40598,1709331,101,5053,1 +40599,1709331,143,7183,1 +40600,1709332,87,4380,1 +40601,1709332,21,1069,1 +40602,1709334,11,596,1 +40603,1709335,43,2192,1 +40604,1709340,127,6358,1 +40605,1709340,198,9922,1 +40606,1709341,83,4166,1 +40607,1709341,44,2218,1 +40608,1709352,184,9230,1 +40609,1709352,3,193,1 +40610,1709352,4,244,1 +40611,1709352,146,7304,1 +40612,1709353,122,6141,1 +40613,1709354,129,6480,1 +40614,1709355,36,1837,1 +40615,1709361,50,2505,1 +40616,1709364,25,1265,1 +40617,1709364,69,3453,1 +40618,1709364,136,6826,1 +40619,1709365,41,2100,1 +40620,1709365,26,1311,1 +40621,1709374,93,4673,1 +40622,1709376,196,9806,1 +40623,1709376,127,6391,1 +40624,1709376,7,394,1 +40625,1709376,0,22,1 +40626,1709376,151,7551,1 +40627,1709377,95,4782,1 +40628,1709379,51,2584,1 +40629,1709379,24,1218,1 +40630,1709379,19,982,1 +40631,1709382,30,1523,1 +40632,1709386,81,4069,1 +40633,1709388,113,5685,1 +40634,1709388,168,8403,1 +40635,1709389,187,9371,1 +40636,1709390,102,5143,1 +40637,1709400,0,1,1 +40638,1709400,7,374,1 +40639,1709400,22,1133,1 +40640,1709401,46,2319,1 +40641,1709401,98,4949,1 +40642,1709401,38,1916,1 +40643,1709401,108,5406,1 +40644,1709405,56,2819,1 +40645,1709412,5,296,1 +40646,1709415,196,9831,1 +40647,1709433,52,2637,1 +40648,1709436,7,397,1 +40649,1709449,167,8398,1 +40650,1709496,132,6617,1 +40651,1709497,84,4248,1 +40652,1709498,74,3701,1 +40653,1709508,171,8558,1 +40654,1709571,123,6194,1 +40655,1709628,80,4011,1 +40656,1709630,73,3659,1 +40657,1710240,142,7101,1 +40658,1710277,169,8481,1 +40659,1710720,29,1460,1 +40660,1710720,70,3537,1 +40661,1710720,35,1755,1 +40662,1710720,9,479,1 +40663,1710721,147,7369,1 +40664,1710721,112,5622,1 +40665,1710721,19,983,1 +40666,1710722,48,2442,1 +40667,1710723,122,6125,1 +40668,1710726,17,881,1 +40669,1710729,35,1774,1 +40670,1710730,19,977,1 +40671,1710732,93,4679,1 +40672,1710732,86,4333,1 +40673,1710732,98,4906,1 +40674,1710733,30,1529,1 +40675,1710733,59,2980,1 +40676,1710733,51,2577,1 +40677,1710733,21,1090,1 +40678,1710735,196,9810,1 +40679,1710736,178,8913,1 +40680,1710741,99,4951,1 +40681,1710744,153,7651,1 +40682,1710744,141,7083,1 +40683,1710744,10,502,1 +40684,1710744,95,4782,1 +40685,1710744,134,6735,1 +40686,1710744,128,6425,1 +40687,1710744,1,52,1 +40688,1710744,57,2887,1 +40689,1710744,67,3390,1 +40690,1710747,156,7847,1 +40691,1710747,10,536,1 +40692,1710748,162,8137,1 +40693,1710753,159,7958,1 +40694,1710756,127,6367,1 +40695,1710756,192,9601,1 +40696,1710756,114,5706,1 +40697,1710756,170,8530,1 +40698,1710758,118,5920,1 +40699,1710766,109,5473,1 +40700,1710768,176,8834,1 +40701,1710768,60,3038,1 +40702,1710768,14,702,1 +40703,1710769,126,6332,1 +40704,1710770,190,9515,1 +40705,1710771,123,6174,1 +40706,1710774,83,4186,1 +40707,1710777,164,8218,1 +40708,1710780,75,3783,1 +40709,1710780,44,2247,1 +40710,1710780,39,1978,1 +40711,1710780,0,17,1 +40712,1710781,24,1205,1 +40713,1710781,166,8342,1 +40714,1710786,26,1349,1 +40715,1710789,25,1274,1 +40716,1710790,180,9026,1 +40717,1710792,139,6999,1 +40718,1710792,43,2155,1 +40719,1710793,196,9831,1 +40720,1710795,69,3476,1 +40721,1710804,104,5214,1 +40722,1710804,79,3982,1 +40723,1710805,85,4257,1 +40724,1710805,192,9626,1 +40725,1710813,26,1316,1 +40726,1710813,98,4926,1 +40727,1710825,192,9631,1 +40728,1710837,167,8363,1 +40729,1710838,25,1296,1 +40730,1710852,16,809,1 +40731,1710852,195,9785,1 +40732,1710852,139,6996,1 +40733,1710853,177,8890,1 +40734,1710855,159,7977,1 +40735,1710864,67,3389,1 +40736,1710876,46,2328,1 +40737,1710876,126,6340,1 +40738,1710888,31,1586,1 +40739,1710972,180,9049,1 +40740,1711015,46,2308,1 +40741,1711200,179,8972,1 +40742,1711212,91,4586,1 +40743,1711260,170,8512,1 +40744,1711428,59,2987,1 +40745,1711680,66,3310,1 +40746,1711692,42,2121,1 +40747,1711707,46,2331,1 +40748,1711717,25,1296,1 +40749,1711725,125,6283,1 +40750,1711752,37,1879,1 +40751,1711764,177,8882,1 +40752,1711773,38,1929,1 +40753,1711776,128,6416,1 +40754,1711809,191,9578,1 +40755,1711968,195,9754,1 +40756,1712160,150,7526,1 +40757,1712161,78,3938,1 +40758,1712162,186,9346,1 +40759,1712184,89,4476,1 +40760,1712199,110,5508,1 +40761,1712244,181,9098,1 +40762,1712268,166,8310,1 +40763,1712666,91,4565,1 +40764,1712710,151,7554,1 +40765,1712724,45,2275,1 +40766,1713133,93,4663,1 +40767,1713159,167,8351,1 +40768,1713192,138,6948,1 +40769,1713217,55,2760,1 +40770,1713218,179,8986,1 +40771,1713600,196,9814,1 +40772,1713600,30,1529,1 +40773,1713602,136,6828,1 +40774,1713603,7,397,1 +40775,1713604,148,7448,1 +40776,1713606,74,3739,1 +40777,1713610,62,3142,1 +40778,1713618,125,6263,1 +40779,1713624,197,9863,1 +40780,1713636,82,4116,1 +40781,1713637,2,116,1 +40782,1713637,50,2513,1 +40783,1713651,189,9454,1 +40784,1713666,84,4240,1 +40785,1713674,7,358,1 +40786,1713696,135,6777,1 +40787,1713696,10,550,1 +40788,1713705,157,7888,1 +40789,1713780,17,860,1 +40790,1714080,36,1809,1 +40791,1714083,37,1868,1 +40792,1714095,145,7285,1 +40793,1714105,173,8660,1 +40794,1714108,133,6659,1 +40795,1714113,160,8033,1 +40796,1714132,90,4525,1 +40797,1714143,113,5669,1 +40798,1714149,159,7960,1 +40799,1714150,134,6746,1 +40800,1714161,183,9178,1 +40801,1714176,59,2986,1 +40802,1714224,7,396,1 +40803,1714264,122,6112,1 +40804,1714560,105,5255,1 +40805,1714560,112,5602,1 +40806,1714560,188,9421,1 +40807,1714560,150,7534,1 +40808,1714578,163,8159,1 +40809,1714584,187,9370,1 +40810,1714585,165,8295,1 +40811,1714585,32,1645,1 +40812,1714596,173,8672,1 +40813,1714597,3,162,1 +40814,1714608,166,8348,1 +40815,1714620,6,336,1 +40816,1714624,53,2679,1 +40817,1714632,165,8284,1 +40818,1714632,55,2784,1 +40819,1714633,54,2723,1 +40820,1714636,132,6627,1 +40821,1714644,39,1998,1 +40822,1714644,40,2023,1 +40823,1714729,61,3095,1 +40824,1715043,197,9865,1 +40825,1715064,127,6377,1 +40826,1715160,167,8381,1 +40827,1715196,105,5277,1 +40828,1715401,34,1748,1 +40829,1715521,81,4099,1 +40830,1715522,56,2819,1 +40831,1715523,55,2775,1 +40832,1715532,197,9870,1 +40833,1715538,170,8546,1 +40834,1715539,119,5957,1 +40835,1715544,111,5578,1 +40836,1715544,175,8797,1 +40837,1715545,22,1110,1 +40838,1715557,171,8578,1 +40839,1715570,110,5522,1 +40840,1715604,41,2057,1 +40841,1715606,91,4595,1 +40842,1716000,2,136,1 +40843,1716000,112,5629,1 +40844,1716000,186,9301,1 +40845,1716011,38,1948,1 +40846,1716015,134,6746,1 +40847,1716018,109,5455,1 +40848,1716024,142,7138,1 +40849,1716025,126,6334,1 +40850,1716036,76,3826,1 +40851,1716037,114,5740,1 +40852,1716058,58,2947,1 +40853,1716088,107,5354,1 +40854,1716096,28,1406,1 +40855,1716099,68,3416,1 +40856,1716480,191,9590,1 +40857,1716481,29,1462,1 +40858,1716489,125,6252,1 +40859,1716489,192,9608,1 +40860,1716506,190,9518,1 +40861,1716514,173,8655,1 +40862,1716525,168,8431,1 +40863,1716544,12,629,1 +40864,1716564,68,3446,1 +40865,1716564,79,3986,1 +40866,1716566,100,5024,1 +40867,1716642,37,1899,1 +40868,1716972,28,1440,1 +40869,1717002,172,8621,1 +40870,1717002,85,4279,1 +40871,1717008,2,116,1 +40872,1717009,174,8750,1 +40873,1717017,181,9060,1 +40874,1717056,123,6172,1 +40875,1717058,158,7940,1 +40876,1717080,59,2964,1 +40877,1717104,97,4866,1 +40878,1717440,80,4012,1 +40879,1717440,190,9544,1 +40880,1717441,181,9057,1 +40881,1717441,134,6729,1 +40882,1717443,50,2501,1 +40883,1717452,83,4177,1 +40884,1717452,44,2243,1 +40885,1717452,48,2413,1 +40886,1717452,123,6163,1 +40887,1717452,137,6868,1 +40888,1717452,118,5911,1 +40889,1717453,196,9810,1 +40890,1717461,148,7403,1 +40891,1717464,121,6089,1 +40892,1717464,54,2717,1 +40893,1717464,60,3012,1 +40894,1717464,24,1215,1 +40895,1717465,73,3696,1 +40896,1717467,165,8271,1 +40897,1717468,166,8337,1 +40898,1717470,140,7014,1 +40899,1717476,130,6536,1 +40900,1717477,50,2510,1 +40901,1717478,165,8297,1 +40902,1717480,93,4672,1 +40903,1717485,123,6192,1 +40904,1717500,112,5607,1 +40905,1717500,175,8783,1 +40906,1717500,99,4951,1 +40907,1717501,12,633,1 +40908,1717502,19,981,1 +40909,1717524,6,304,1 +40910,1717527,150,7517,1 +40911,1717533,84,4239,1 +40912,1717581,101,5060,1 +40913,1717584,151,7572,1 +40914,1717597,54,2703,1 +40915,1717692,3,179,1 +40916,1717776,25,1300,1 +40917,1718412,135,6798,1 +40918,1718430,190,9507,1 +40919,1718883,55,2757,1 +40920,1718893,80,4039,1 +40921,1718893,103,5198,1 +40922,1718898,130,6521,1 +40923,1718904,153,7693,1 +40924,1718917,21,1100,1 +40925,1718920,75,3795,1 +40926,1718926,115,5790,1 +40927,1718928,54,2749,1 +40928,1718934,144,7242,1 +40929,1718938,97,4857,1 +40930,1718964,22,1103,1 +40931,1718977,119,5953,1 +40932,1719360,188,9408,1 +40933,1719360,39,1987,1 +40934,1719361,164,8201,1 +40935,1719363,25,1267,1 +40936,1719369,64,3209,1 +40937,1719370,153,7685,1 +40938,1719372,182,9116,1 +40939,1719372,25,1255,1 +40940,1719373,131,6561,1 +40941,1719375,5,292,1 +40942,1719382,115,5795,1 +40943,1719384,51,2598,1 +40944,1719384,5,288,1 +40945,1719386,186,9330,1 +40946,1719396,165,8292,1 +40947,1719396,163,8152,1 +40948,1719397,89,4476,1 +40949,1719397,193,9676,1 +40950,1719397,79,3978,1 +40951,1719408,76,3831,1 +40952,1719408,128,6409,1 +40953,1719420,94,4737,1 +40954,1719433,77,3863,1 +40955,1719447,57,2868,1 +40956,1719457,52,2627,1 +40957,1719492,87,4374,1 +40958,1719529,68,3444,1 +40959,1719530,28,1408,1 +40960,1719542,20,1023,1 +40961,1719553,117,5853,1 +40962,1719600,108,5445,1 +40963,1719852,32,1636,1 +40964,1719852,58,2915,1 +40965,1719852,89,4485,1 +40966,1719852,32,1625,1 +40967,1719852,36,1804,1 +40968,1719855,52,2611,1 +40969,1719857,26,1349,1 +40970,1719864,157,7872,1 +40971,1719865,172,8608,1 +40972,1719870,164,8230,1 +40973,1719876,18,920,1 +40974,1719876,184,9227,1 +40975,1719897,11,584,1 +40976,1719914,193,9693,1 +40977,1719924,73,3658,1 +40978,1719948,61,3095,1 +40979,1719960,45,2268,1 +40980,1719961,190,9505,1 +40981,1720031,76,3821,1 +40982,1720320,18,946,1 +40983,1720326,8,448,1 +40984,1720338,66,3321,1 +40985,1720369,20,1003,1 +40986,1720369,43,2198,1 +40987,1720383,144,7231,1 +40988,1720393,9,487,1 +40989,1720409,26,1327,1 +40990,1720416,197,9894,1 +40991,1720485,129,6457,1 +40992,1720804,131,6581,1 +40993,1720804,59,2984,1 +40994,1720812,103,5196,1 +40995,1720817,61,3055,1 +40996,1720836,61,3061,1 +40997,1720840,154,7723,1 +40998,1720854,66,3304,1 +40999,1720863,119,5993,1 +41000,1720865,85,4275,1 +41001,1720872,95,4783,1 +41002,1720920,103,5174,1 +41003,1721088,35,1771,1 +41004,1721316,0,13,1 +41005,1721316,132,6601,1 +41006,1721760,139,6973,1 +41007,1721761,67,3398,1 +41008,1721766,112,5605,1 +41009,1721770,155,7752,1 +41010,1721772,121,6052,1 +41011,1721772,29,1480,1 +41012,1721772,38,1901,1 +41013,1721772,2,110,1 +41014,1721773,51,2557,1 +41015,1721779,163,8169,1 +41016,1721784,45,2291,1 +41017,1721809,53,2674,1 +41018,1721811,65,3293,1 +41019,1721811,195,9799,1 +41020,1721828,119,5952,1 +41021,1722050,24,1226,1 +41022,1722720,156,7840,1 +41023,1722722,23,1198,1 +41024,1722726,102,5150,1 +41025,1722729,166,8321,1 +41026,1722732,111,5572,1 +41027,1722732,4,215,1 +41028,1722732,154,7711,1 +41029,1722733,167,8388,1 +41030,1722735,110,5515,1 +41031,1722742,151,7584,1 +41032,1722750,188,9418,1 +41033,1722756,162,8131,1 +41034,1722758,58,2917,1 +41035,1722768,138,6940,1 +41036,1722780,175,8799,1 +41037,1722783,79,3953,1 +41038,1722788,199,9975,1 +41039,1722792,173,8656,1 +41040,1722816,181,9085,1 +41041,1722817,115,5762,1 +41042,1722822,180,9020,1 +41043,1722840,141,7077,1 +41044,1722840,51,2559,1 +41045,1722865,99,4954,1 +41046,1722960,106,5340,1 +41047,1723201,189,9473,1 +41048,1723210,177,8866,1 +41049,1723245,10,526,1 +41050,1723248,70,3545,1 +41051,1723254,107,5351,1 +41052,1723260,162,8128,1 +41053,1723298,63,3199,1 +41054,1723365,59,3000,1 +41055,1723740,8,410,1 +41056,1723753,181,9052,1 +41057,1724160,25,1285,1 +41058,1724160,83,4156,1 +41059,1724160,49,2478,1 +41060,1724160,118,5921,1 +41061,1724161,132,6611,1 +41062,1724162,120,6024,1 +41063,1724164,162,8121,1 +41064,1724167,99,4989,1 +41065,1724172,192,9640,1 +41066,1724172,54,2705,1 +41067,1724172,111,5593,1 +41068,1724179,95,4778,1 +41069,1724184,133,6671,1 +41070,1724185,131,6599,1 +41071,1724185,128,6410,1 +41072,1724187,108,5414,1 +41073,1724187,76,3824,1 +41074,1724190,186,9341,1 +41075,1724198,15,782,1 +41076,1724200,163,8162,1 +41077,1724204,78,3902,1 +41078,1724209,100,5024,1 +41079,1724209,188,9450,1 +41080,1724211,126,6313,1 +41081,1724215,24,1233,1 +41082,1724232,108,5418,1 +41083,1724233,118,5904,1 +41084,1724233,111,5565,1 +41085,1724235,135,6758,1 +41086,1724272,97,4858,1 +41087,1724304,191,9553,1 +41088,1724376,196,9810,1 +41089,1724640,121,6066,1 +41090,1724641,20,1041,1 +41091,1724664,187,9382,1 +41092,1724664,22,1142,1 +41093,1724665,116,5833,1 +41094,1724668,150,7526,1 +41095,1724676,155,7753,1 +41096,1724689,116,5846,1 +41097,1724691,54,2709,1 +41098,1724694,50,2501,1 +41099,1724709,83,4194,1 +41100,1724712,41,2057,1 +41101,1724724,198,9916,1 +41102,1724724,10,519,1 +41103,1724724,29,1456,1 +41104,1724848,114,5702,1 +41105,1725600,170,8532,1 +41106,1725600,24,1236,1 +41107,1725601,72,3632,1 +41108,1725601,97,4889,1 +41109,1725602,160,8013,1 +41110,1725613,188,9429,1 +41111,1725614,28,1440,1 +41112,1725615,18,928,1 +41113,1725624,186,9318,1 +41114,1725626,92,4622,1 +41115,1725628,5,267,1 +41116,1725633,40,2013,1 +41117,1725636,12,612,1 +41118,1725636,27,1385,1 +41119,1725641,181,9063,1 +41120,1725650,87,4381,1 +41121,1725672,97,4861,1 +41122,1725684,160,8027,1 +41123,1725720,73,3661,1 +41124,1726080,59,2982,1 +41125,1726082,168,8422,1 +41126,1726117,16,844,1 +41127,1726140,195,9792,1 +41128,1726149,190,9504,1 +41129,1726164,82,4148,1 +41130,1726214,103,5191,1 +41131,1726560,134,6738,1 +41132,1726560,88,4420,1 +41133,1726575,169,8491,1 +41134,1726596,112,5603,1 +41135,1726645,31,1594,1 +41136,1726647,75,3779,1 +41137,1727040,55,2769,1 +41138,1727040,70,3506,1 +41139,1727043,195,9795,1 +41140,1727054,125,6255,1 +41141,1727061,133,6681,1 +41142,1727066,135,6760,1 +41143,1727067,90,4502,1 +41144,1727076,0,4,1 +41145,1727088,134,6733,1 +41146,1727114,181,9098,1 +41147,1727136,136,6825,1 +41148,1727247,197,9857,1 +41149,1727520,60,3021,1 +41150,1727580,140,7037,1 +41151,1728000,2,116,1 +41152,1728036,85,4280,1 +41153,1728051,119,5954,1 +41154,1728542,49,2465,1 +41155,1728553,82,4135,1 +41156,1728961,80,4009,1 +41157,1728966,88,4417,1 +41158,1728970,164,8202,1 +41159,1729002,164,8234,1 +41160,1729080,158,7934,1 +41161,1729083,184,9246,1 +41162,1729440,131,6569,1 +41163,1729440,135,6777,1 +41164,1729441,149,7499,1 +41165,1729447,182,9139,1 +41166,1729455,39,1973,1 +41167,1729488,84,4213,1 +41168,1729490,165,8279,1 +41169,1729512,152,7628,1 +41170,1729515,0,3,1 +41171,1729540,129,6456,1 +41172,1729620,85,4255,1 +41173,1729920,8,413,1 +41174,1729924,95,4792,1 +41175,1729926,136,6805,1 +41176,1729935,125,6259,1 +41177,1729944,118,5916,1 +41178,1729992,170,8508,1 +41179,1729993,72,3631,1 +41180,1730016,140,7042,1 +41181,1730028,93,4675,1 +41182,1730208,89,4490,1 +41183,1730445,76,3832,1 +41184,1730472,8,423,1 +41185,1730503,122,6107,1 +41186,1730568,19,953,1 +41187,1730880,140,7026,1 +41188,1730880,174,8716,1 +41189,1730890,57,2895,1 +41190,1730893,172,8617,1 +41191,1730908,25,1298,1 +41192,1730911,183,9165,1 +41193,1730916,186,9306,1 +41194,1730930,43,2195,1 +41195,1730938,157,7879,1 +41196,1730941,64,3246,1 +41197,1730949,176,8826,1 +41198,1730955,80,4032,1 +41199,1730964,138,6914,1 +41200,1730965,82,4123,1 +41201,1730991,68,3429,1 +41202,1731000,110,5523,1 +41203,1731841,68,3447,1 +41204,1731888,30,1515,1 +41205,1732416,197,9851,1 +41206,1732440,39,1993,1 +41207,1732800,65,3292,1 +41208,1732812,152,7640,1 +41209,1732812,113,5661,1 +41210,1732825,136,6835,1 +41211,1732833,8,414,1 +41212,1732837,96,4848,1 +41213,1732845,106,5341,1 +41214,1732848,185,9270,1 +41215,1732849,174,8747,1 +41216,1732849,133,6679,1 +41217,1732860,167,8358,1 +41218,1732921,54,2701,1 +41219,1732935,110,5517,1 +41220,1732944,8,439,1 +41221,1732957,164,8223,1 +41222,1733281,109,5451,1 +41223,1733283,21,1089,1 +41224,1733289,142,7119,1 +41225,1733289,94,4703,1 +41226,1733291,44,2210,1 +41227,1733292,143,7167,1 +41228,1733292,138,6936,1 +41229,1733292,137,6871,1 +41230,1733294,58,2909,1 +41231,1733295,115,5777,1 +41232,1733304,119,5972,1 +41233,1733307,58,2943,1 +41234,1733307,68,3442,1 +41235,1733310,139,6958,1 +41236,1733328,48,2436,1 +41237,1733331,10,534,1 +41238,1733334,31,1552,1 +41239,1733337,128,6449,1 +41240,1733340,163,8183,1 +41241,1733340,99,4964,1 +41242,1733342,52,2649,1 +41243,1733364,168,8429,1 +41244,1733365,89,4473,1 +41245,1733380,118,5947,1 +41246,1733400,31,1597,1 +41247,1733403,124,6232,1 +41248,1733414,76,3848,1 +41249,1733472,68,3401,1 +41250,1733691,105,5298,1 +41251,1733760,82,4128,1 +41252,1733760,106,5335,1 +41253,1733760,69,3481,1 +41254,1733760,117,5889,1 +41255,1733761,36,1829,1 +41256,1733761,178,8924,1 +41257,1733761,64,3215,1 +41258,1733761,52,2601,1 +41259,1733761,178,8938,1 +41260,1733762,45,2287,1 +41261,1733763,116,5826,1 +41262,1733763,195,9758,1 +41263,1733763,91,4553,1 +41264,1733764,55,2792,1 +41265,1733764,153,7682,1 +41266,1733764,15,757,1 +41267,1733765,112,5643,1 +41268,1733767,74,3717,1 +41269,1733767,150,7539,1 +41270,1733772,130,6516,1 +41271,1733772,145,7260,1 +41272,1733772,39,1982,1 +41273,1733772,95,4794,1 +41274,1733772,143,7178,1 +41275,1733773,30,1521,1 +41276,1733775,118,5905,1 +41277,1733775,30,1501,1 +41278,1733782,108,5433,1 +41279,1733784,31,1586,1 +41280,1733784,155,7766,1 +41281,1733784,30,1530,1 +41282,1733784,36,1836,1 +41283,1733784,53,2687,1 +41284,1733784,22,1105,1 +41285,1733784,118,5921,1 +41286,1733784,166,8313,1 +41287,1733785,87,4365,1 +41288,1733785,19,1000,1 +41289,1733786,114,5741,1 +41290,1733787,103,5165,1 +41291,1733790,109,5481,1 +41292,1733796,118,5929,1 +41293,1733796,170,8547,1 +41294,1733796,194,9741,1 +41295,1733796,133,6659,1 +41296,1733797,18,942,1 +41297,1733797,143,7198,1 +41298,1733797,145,7258,1 +41299,1733798,19,993,1 +41300,1733799,69,3487,1 +41301,1733802,151,7577,1 +41302,1733803,169,8499,1 +41303,1733805,110,5514,1 +41304,1733806,54,2743,1 +41305,1733808,95,4798,1 +41306,1733808,32,1636,1 +41307,1733808,82,4110,1 +41308,1733808,9,490,1 +41309,1733808,163,8186,1 +41310,1733808,161,8055,1 +41311,1733809,14,708,1 +41312,1733812,60,3008,1 +41313,1733815,34,1732,1 +41314,1733815,168,8415,1 +41315,1733820,42,2114,1 +41316,1733820,183,9196,1 +41317,1733820,56,2810,1 +41318,1733820,69,3495,1 +41319,1733820,0,14,1 +41320,1733822,25,1300,1 +41321,1733823,133,6694,1 +41322,1733826,86,4350,1 +41323,1733829,32,1631,1 +41324,1733832,72,3616,1 +41325,1733833,55,2793,1 +41326,1733833,140,7017,1 +41327,1733838,105,5271,1 +41328,1733839,31,1589,1 +41329,1733841,81,4075,1 +41330,1733844,68,3413,1 +41331,1733846,52,2634,1 +41332,1733846,12,605,1 +41333,1733847,103,5184,1 +41334,1733847,72,3646,1 +41335,1733851,146,7334,1 +41336,1733856,62,3132,1 +41337,1733856,111,5593,1 +41338,1733856,37,1851,1 +41339,1733856,172,8635,1 +41340,1733857,169,8483,1 +41341,1733857,181,9096,1 +41342,1733859,61,3074,1 +41343,1733862,162,8103,1 +41344,1733868,100,5001,1 +41345,1733868,25,1280,1 +41346,1733868,189,9498,1 +41347,1733868,135,6760,1 +41348,1733871,198,9916,1 +41349,1733872,43,2179,1 +41350,1733880,21,1062,1 +41351,1733880,122,6113,1 +41352,1733880,185,9268,1 +41353,1733886,150,7534,1 +41354,1733889,148,7409,1 +41355,1733892,16,831,1 +41356,1733908,183,9187,1 +41357,1733916,30,1523,1 +41358,1733928,63,3174,1 +41359,1733928,183,9165,1 +41360,1733929,69,3479,1 +41361,1733971,72,3621,1 +41362,1733979,158,7902,1 +41363,1733979,85,4258,1 +41364,1734240,43,2172,1 +41365,1734240,52,2640,1 +41366,1734240,158,7906,1 +41367,1734241,140,7039,1 +41368,1734252,23,1182,1 +41369,1734264,20,1032,1 +41370,1734273,47,2373,1 +41371,1734286,29,1487,1 +41372,1734288,167,8374,1 +41373,1734325,147,7392,1 +41374,1734345,115,5782,1 +41375,1734395,108,5413,1 +41376,1734721,135,6796,1 +41377,1734726,6,333,1 +41378,1734738,151,7592,1 +41379,1734746,185,9293,1 +41380,1734768,181,9100,1 +41381,1734782,96,4837,1 +41382,1734805,158,7946,1 +41383,1734807,135,6795,1 +41384,1735680,42,2103,1 +41385,1735683,80,4026,1 +41386,1735684,44,2210,1 +41387,1735692,78,3949,1 +41388,1735692,0,43,1 +41389,1735692,40,2044,1 +41390,1735692,7,386,1 +41391,1735701,171,8579,1 +41392,1735704,37,1872,1 +41393,1735707,146,7350,1 +41394,1735725,21,1058,1 +41395,1735728,165,8264,1 +41396,1735728,149,7476,1 +41397,1735732,34,1707,1 +41398,1735743,143,7197,1 +41399,1735764,6,345,1 +41400,1735884,2,117,1 +41401,1736160,128,6401,1 +41402,1736160,118,5902,1 +41403,1736166,195,9772,1 +41404,1736166,7,378,1 +41405,1736178,127,6390,1 +41406,1736187,13,653,1 +41407,1736211,131,6551,1 +41408,1736232,166,8326,1 +41409,1736304,172,8608,1 +41410,1736340,195,9790,1 +41411,1736641,107,5385,1 +41412,1736646,49,2462,1 +41413,1736652,14,736,1 +41414,1736736,124,6207,1 +41415,1736808,155,7782,1 +41416,1737120,41,2075,1 +41417,1737120,37,1885,1 +41418,1737120,62,3117,1 +41419,1737132,181,9084,1 +41420,1737134,170,8542,1 +41421,1737148,165,8262,1 +41422,1737150,62,3107,1 +41423,1737153,6,306,1 +41424,1737156,29,1459,1 +41425,1737168,168,8417,1 +41426,1737169,179,8953,1 +41427,1737170,191,9579,1 +41428,1737174,142,7113,1 +41429,1737192,143,7167,1 +41430,1737204,194,9714,1 +41431,1737207,63,3177,1 +41432,1737241,131,6592,1 +41433,1737276,139,6994,1 +41434,1737301,170,8529,1 +41435,1737600,48,2449,1 +41436,1737612,19,963,1 +41437,1737614,67,3360,1 +41438,1737624,189,9479,1 +41439,1737645,66,3349,1 +41440,1737650,138,6946,1 +41441,1738080,94,4715,1 +41442,1738083,10,538,1 +41443,1738084,121,6093,1 +41444,1738092,54,2710,1 +41445,1738092,0,33,1 +41446,1738095,94,4733,1 +41447,1738101,43,2174,1 +41448,1738104,169,8499,1 +41449,1738104,9,453,1 +41450,1738106,108,5431,1 +41451,1738116,163,8158,1 +41452,1738117,138,6914,1 +41453,1738128,183,9158,1 +41454,1738131,47,2354,1 +41455,1738153,12,616,1 +41456,1738183,6,347,1 +41457,1738185,71,3579,1 +41458,1738188,29,1453,1 +41459,1738188,127,6400,1 +41460,1738212,159,7960,1 +41461,1738320,99,4996,1 +41462,1738562,55,2758,1 +41463,1738563,59,2952,1 +41464,1738577,59,2968,1 +41465,1738581,5,273,1 +41466,1738584,100,5018,1 +41467,1738608,15,772,1 +41468,1738620,19,958,1 +41469,1738632,61,3077,1 +41470,1738908,199,9989,1 +41471,1739050,41,2074,1 +41472,1739052,196,9848,1 +41473,1739052,108,5423,1 +41474,1739052,6,310,1 +41475,1739053,31,1596,1 +41476,1739058,116,5826,1 +41477,1739067,93,4666,1 +41478,1739068,22,1125,1 +41479,1739070,174,8716,1 +41480,1739072,149,7489,1 +41481,1739076,146,7335,1 +41482,1739076,62,3138,1 +41483,1739088,120,6048,1 +41484,1739113,47,2396,1 +41485,1739115,52,2629,1 +41486,1739172,194,9729,1 +41487,1739196,173,8675,1 +41488,1739208,91,4554,1 +41489,1739218,174,8706,1 +41490,1739218,85,4280,1 +41491,1739413,146,7301,1 +41492,1739539,51,2571,1 +41493,1739608,119,5992,1 +41494,1740000,40,2016,1 +41495,1740003,25,1293,1 +41496,1740012,149,7499,1 +41497,1740013,71,3565,1 +41498,1740024,151,7594,1 +41499,1740036,35,1787,1 +41500,1740087,27,1380,1 +41501,1740088,77,3887,1 +41502,1740120,107,5358,1 +41503,1740126,128,6416,1 +41504,1740145,41,2091,1 +41505,1740168,64,3209,1 +41506,1740480,34,1706,1 +41507,1740486,61,3085,1 +41508,1740492,11,592,1 +41509,1740492,183,9164,1 +41510,1740497,48,2437,1 +41511,1740499,112,5640,1 +41512,1740504,195,9773,1 +41513,1740505,86,4330,1 +41514,1740516,32,1622,1 +41515,1740516,159,7983,1 +41516,1740528,6,334,1 +41517,1740534,106,5320,1 +41518,1740553,107,5386,1 +41519,1740576,138,6937,1 +41520,1740580,169,8481,1 +41521,1740960,153,7700,1 +41522,1740961,58,2949,1 +41523,1740962,172,8603,1 +41524,1740963,96,4801,1 +41525,1740964,184,9232,1 +41526,1740972,140,7023,1 +41527,1740973,54,2731,1 +41528,1740978,196,9813,1 +41529,1740985,69,3457,1 +41530,1740986,73,3685,1 +41531,1740990,187,9397,1 +41532,1740996,82,4141,1 +41533,1740999,61,3065,1 +41534,1741008,130,6530,1 +41535,1741008,70,3546,1 +41536,1741008,34,1749,1 +41537,1741056,129,6458,1 +41538,1741130,54,2740,1 +41539,1741224,130,6540,1 +41540,1741440,100,5027,1 +41541,1741446,38,1926,1 +41542,1741447,3,152,1 +41543,1741452,47,2364,1 +41544,1741464,55,2773,1 +41545,1741467,128,6440,1 +41546,1741471,113,5674,1 +41547,1741488,18,917,1 +41548,1741488,116,5815,1 +41549,1741507,82,4132,1 +41550,1741512,35,1756,1 +41551,1741513,47,2385,1 +41552,1741560,168,8411,1 +41553,1741572,35,1786,1 +41554,1741694,199,9963,1 +41555,1741920,150,7547,1 +41556,1741920,112,5645,1 +41557,1741920,17,879,1 +41558,1741920,92,4612,1 +41559,1741920,138,6917,1 +41560,1741920,73,3693,1 +41561,1741920,157,7871,1 +41562,1741921,15,799,1 +41563,1741921,120,6024,1 +41564,1741921,156,7837,1 +41565,1741922,50,2546,1 +41566,1741923,168,8445,1 +41567,1741923,154,7728,1 +41568,1741926,119,5976,1 +41569,1741927,182,9133,1 +41570,1741928,120,6011,1 +41571,1741932,76,3850,1 +41572,1741932,26,1301,1 +41573,1741932,114,5720,1 +41574,1741933,151,7556,1 +41575,1741937,0,3,1 +41576,1741938,22,1141,1 +41577,1741944,109,5453,1 +41578,1741944,110,5527,1 +41579,1741945,47,2381,1 +41580,1741945,192,9644,1 +41581,1741945,178,8905,1 +41582,1741946,81,4057,1 +41583,1741946,96,4814,1 +41584,1741951,40,2036,1 +41585,1741954,143,7184,1 +41586,1741956,188,9446,1 +41587,1741956,46,2314,1 +41588,1741956,65,3256,1 +41589,1741957,33,1663,1 +41590,1741957,118,5924,1 +41591,1741958,89,4458,1 +41592,1741958,116,5841,1 +41593,1741960,118,5906,1 +41594,1741960,175,8753,1 +41595,1741961,126,6349,1 +41596,1741962,29,1469,1 +41597,1741968,143,7189,1 +41598,1741968,163,8183,1 +41599,1741969,163,8160,1 +41600,1741970,113,5698,1 +41601,1741976,198,9925,1 +41602,1741980,188,9413,1 +41603,1741980,95,4761,1 +41604,1741982,110,5501,1 +41605,1741983,199,9955,1 +41606,1741986,177,8858,1 +41607,1741987,134,6742,1 +41608,1741987,193,9671,1 +41609,1741990,184,9211,1 +41610,1741992,16,824,1 +41611,1741993,141,7051,1 +41612,1741996,123,6167,1 +41613,1742004,20,1017,1 +41614,1742004,67,3398,1 +41615,1742004,73,3655,1 +41616,1742005,18,904,1 +41617,1742007,128,6411,1 +41618,1742010,189,9463,1 +41619,1742016,128,6439,1 +41620,1742052,55,2782,1 +41621,1742052,96,4803,1 +41622,1742052,12,619,1 +41623,1742052,106,5317,1 +41624,1742064,143,7172,1 +41625,1742064,141,7080,1 +41626,1742088,57,2870,1 +41627,1742097,131,6552,1 +41628,1742149,44,2203,1 +41629,1742412,186,9349,1 +41630,1742421,149,7478,1 +41631,1742520,184,9218,1 +41632,1742899,23,1194,1 +41633,1742913,156,7843,1 +41634,1742917,180,9008,1 +41635,1742917,50,2534,1 +41636,1742928,59,2970,1 +41637,1742928,114,5747,1 +41638,1742940,172,8638,1 +41639,1742966,11,559,1 +41640,1742988,177,8861,1 +41641,1742992,121,6079,1 +41642,1743360,155,7797,1 +41643,1743363,66,3321,1 +41644,1743367,30,1506,1 +41645,1743368,20,1044,1 +41646,1743371,188,9437,1 +41647,1743372,2,146,1 +41648,1743372,9,460,1 +41649,1743372,59,2972,1 +41650,1743372,11,593,1 +41651,1743385,29,1468,1 +41652,1743387,162,8111,1 +41653,1743396,143,7155,1 +41654,1743396,54,2729,1 +41655,1743408,70,3539,1 +41656,1743414,158,7902,1 +41657,1743444,132,6639,1 +41658,1743445,104,5247,1 +41659,1743456,5,288,1 +41660,1743470,27,1363,1 +41661,1743476,2,116,1 +41662,1743495,87,4388,1 +41663,1743531,39,1958,1 +41664,1743565,182,9106,1 +41665,1743840,165,8276,1 +41666,1743840,11,592,1 +41667,1743842,157,7874,1 +41668,1743843,63,3186,1 +41669,1743846,103,5152,1 +41670,1743847,3,190,1 +41671,1743852,42,2138,1 +41672,1743855,11,565,1 +41673,1743856,173,8686,1 +41674,1743858,104,5224,1 +41675,1743864,126,6326,1 +41676,1743868,196,9820,1 +41677,1743878,187,9374,1 +41678,1743879,139,6984,1 +41679,1743888,50,2518,1 +41680,1743900,3,186,1 +41681,1743900,106,5308,1 +41682,1743906,65,3299,1 +41683,1743912,39,1959,1 +41684,1743912,181,9078,1 +41685,1743913,8,447,1 +41686,1743915,96,4829,1 +41687,1743924,135,6770,1 +41688,1743936,75,3783,1 +41689,1743936,40,2002,1 +41690,1743949,112,5618,1 +41691,1743951,32,1637,1 +41692,1743964,87,4384,1 +41693,1743984,67,3390,1 +41694,1743984,34,1730,1 +41695,1743996,185,9291,1 +41696,1744056,184,9230,1 +41697,1744321,34,1722,1 +41698,1744332,86,4313,1 +41699,1744332,180,9009,1 +41700,1744341,106,5314,1 +41701,1744381,112,5610,1 +41702,1744382,181,9086,1 +41703,1744388,85,4291,1 +41704,1744800,169,8495,1 +41705,1744803,64,3226,1 +41706,1744823,170,8545,1 +41707,1744824,194,9743,1 +41708,1744840,44,2202,1 +41709,1744862,126,6303,1 +41710,1744921,187,9372,1 +41711,1745280,37,1860,1 +41712,1745280,32,1603,1 +41713,1745286,64,3247,1 +41714,1745287,119,5951,1 +41715,1745292,156,7817,1 +41716,1745292,56,2818,1 +41717,1745295,125,6300,1 +41718,1745298,18,933,1 +41719,1745305,59,2994,1 +41720,1745306,131,6565,1 +41721,1745306,41,2097,1 +41722,1745325,163,8167,1 +41723,1745328,115,5795,1 +41724,1745332,178,8943,1 +41725,1745338,42,2140,1 +41726,1745472,154,7719,1 +41727,1745796,76,3801,1 +41728,1745798,180,9049,1 +41729,1745931,48,2418,1 +41730,1746240,71,3557,1 +41731,1746240,171,8589,1 +41732,1746240,91,4561,1 +41733,1746241,8,441,1 +41734,1746241,104,5238,1 +41735,1746241,128,6439,1 +41736,1746241,167,8397,1 +41737,1746241,23,1154,1 +41738,1746243,172,8624,1 +41739,1746243,159,7966,1 +41740,1746249,141,7077,1 +41741,1746249,148,7417,1 +41742,1746252,72,3604,1 +41743,1746252,158,7917,1 +41744,1746252,108,5424,1 +41745,1746254,163,8160,1 +41746,1746261,49,2466,1 +41747,1746264,24,1238,1 +41748,1746264,7,366,1 +41749,1746267,168,8422,1 +41750,1746270,68,3443,1 +41751,1746270,57,2881,1 +41752,1746276,67,3363,1 +41753,1746277,190,9536,1 +41754,1746277,85,4256,1 +41755,1746277,105,5256,1 +41756,1746277,89,4479,1 +41757,1746279,24,1226,1 +41758,1746288,133,6700,1 +41759,1746288,110,5519,1 +41760,1746289,16,834,1 +41761,1746289,43,2189,1 +41762,1746297,58,2921,1 +41763,1746303,88,4444,1 +41764,1746312,173,8675,1 +41765,1746314,162,8108,1 +41766,1746314,120,6002,1 +41767,1746322,39,2000,1 +41768,1746325,130,6510,1 +41769,1746345,104,5220,1 +41770,1746348,24,1211,1 +41771,1746378,125,6251,1 +41772,1747200,67,3393,1 +41773,1747222,64,3231,1 +41774,1747224,62,3148,1 +41775,1747236,131,6571,1 +41776,1748245,92,4607,1 +41777,1748640,17,870,1 +41778,1748649,119,5953,1 +41779,1748650,4,241,1 +41780,1748676,111,5554,1 +41781,1748684,155,7780,1 +41782,1748690,152,7615,1 +41783,1748724,21,1061,1 +41784,1748760,59,2969,1 +41785,1749120,196,9808,1 +41786,1749126,63,3161,1 +41787,1749144,160,8013,1 +41788,1749170,140,7045,1 +41789,1749180,133,6676,1 +41790,1749185,174,8743,1 +41791,1749372,107,5371,1 +41792,1749600,170,8536,1 +41793,1749600,143,7151,1 +41794,1749600,23,1194,1 +41795,1749600,160,8003,1 +41796,1749600,107,5389,1 +41797,1749601,88,4430,1 +41798,1749601,77,3896,1 +41799,1749606,164,8220,1 +41800,1749612,38,1949,1 +41801,1749612,75,3753,1 +41802,1749612,1,57,1 +41803,1749615,154,7725,1 +41804,1749618,85,4261,1 +41805,1749618,14,742,1 +41806,1749624,7,396,1 +41807,1749624,168,8418,1 +41808,1749624,14,726,1 +41809,1749626,150,7549,1 +41810,1749629,24,1249,1 +41811,1749636,107,5363,1 +41812,1749636,99,4991,1 +41813,1749636,66,3314,1 +41814,1749637,142,7122,1 +41815,1749637,57,2884,1 +41816,1749638,136,6850,1 +41817,1749639,8,443,1 +41818,1749643,178,8921,1 +41819,1749644,156,7804,1 +41820,1749644,13,656,1 +41821,1749645,19,980,1 +41822,1749649,122,6147,1 +41823,1749650,113,5667,1 +41824,1749658,121,6085,1 +41825,1749659,72,3629,1 +41826,1749660,145,7254,1 +41827,1749660,120,6032,1 +41828,1749660,74,3727,1 +41829,1749660,84,4237,1 +41830,1749661,193,9697,1 +41831,1749666,108,5428,1 +41832,1749669,189,9488,1 +41833,1749669,172,8601,1 +41834,1749672,116,5816,1 +41835,1749672,107,5371,1 +41836,1749673,172,8646,1 +41837,1749684,12,608,1 +41838,1749684,13,686,1 +41839,1749685,104,5222,1 +41840,1749687,132,6619,1 +41841,1749687,142,7127,1 +41842,1749696,175,8792,1 +41843,1749702,55,2754,1 +41844,1749717,157,7899,1 +41845,1749729,8,413,1 +41846,1749732,77,3871,1 +41847,1749737,134,6745,1 +41848,1749744,48,2423,1 +41849,1749744,45,2253,1 +41850,1749746,175,8754,1 +41851,1749756,30,1534,1 +41852,1749756,162,8104,1 +41853,1749768,36,1804,1 +41854,1749769,86,4306,1 +41855,1749781,168,8430,1 +41856,1749793,168,8402,1 +41857,1749794,50,2525,1 +41858,1749799,82,4133,1 +41859,1749861,128,6403,1 +41860,1749900,166,8315,1 +41861,1749900,114,5718,1 +41862,1750101,124,6234,1 +41863,1750101,39,1951,1 +41864,1750140,28,1408,1 +41865,1750212,190,9501,1 +41866,1750261,175,8762,1 +41867,1750449,31,1576,1 +41868,1750620,138,6905,1 +41869,1750683,45,2290,1 +41870,1750764,10,518,1 +41871,1751049,136,6832,1 +41872,1751112,192,9604,1 +41873,1751172,87,4391,1 +41874,1751520,196,9844,1 +41875,1751535,134,6732,1 +41876,1751545,160,8042,1 +41877,1751550,103,5175,1 +41878,1751552,132,6605,1 +41879,1751556,97,4869,1 +41880,1751568,166,8308,1 +41881,1751602,165,8281,1 +41882,1751616,173,8688,1 +41883,1751617,61,3055,1 +41884,1751628,155,7765,1 +41885,1751652,16,802,1 +41886,1751727,20,1004,1 +41887,1752000,160,8043,1 +41888,1752004,191,9557,1 +41889,1752012,141,7069,1 +41890,1752024,136,6820,1 +41891,1752085,176,8814,1 +41892,1752090,164,8236,1 +41893,1752097,99,4994,1 +41894,1752108,197,9873,1 +41895,1752144,168,8416,1 +41896,1752480,147,7394,1 +41897,1752480,150,7511,1 +41898,1752492,9,491,1 +41899,1752504,51,2593,1 +41900,1752504,37,1895,1 +41901,1752505,109,5499,1 +41902,1752516,75,3770,1 +41903,1752530,183,9188,1 +41904,1752537,43,2154,1 +41905,1752540,78,3926,1 +41906,1752540,178,8913,1 +41907,1752576,193,9679,1 +41908,1752601,129,6470,1 +41909,1752601,7,378,1 +41910,1752612,149,7488,1 +41911,1752960,36,1822,1 +41912,1752962,23,1188,1 +41913,1752985,11,588,1 +41914,1753466,90,4502,1 +41915,1753920,90,4513,1 +41916,1753921,147,7362,1 +41917,1753981,154,7748,1 +41918,1753993,96,4816,1 +41919,1753994,147,7360,1 +41920,1754016,84,4202,1 +41921,1754106,43,2193,1 +41922,1754400,50,2502,1 +41923,1754402,3,183,1 +41924,1754403,11,591,1 +41925,1754520,195,9793,1 +41926,1754533,68,3441,1 +41927,1754880,105,5285,1 +41928,1754882,42,2118,1 +41929,1754935,121,6089,1 +41930,1754944,53,2670,1 +41931,1755366,195,9783,1 +41932,1755372,131,6599,1 +41933,1755384,9,451,1 +41934,1755384,55,2754,1 +41935,1755395,139,6991,1 +41936,1755420,112,5626,1 +41937,1755420,119,5986,1 +41938,1755444,121,6052,1 +41939,1755468,104,5221,1 +41940,1755516,119,5968,1 +41941,1755852,72,3613,1 +41942,1755864,179,8961,1 +41943,1755865,15,764,1 +41944,1755876,25,1258,1 +41945,1755891,67,3391,1 +41946,1755912,96,4821,1 +41947,1755924,178,8905,1 +41948,1755936,22,1134,1 +41949,1756329,150,7511,1 +41950,1756332,104,5219,1 +41951,1756338,165,8274,1 +41952,1756341,18,946,1 +41953,1756344,154,7735,1 +41954,1756346,79,3969,1 +41955,1756346,84,4211,1 +41956,1756356,17,878,1 +41957,1756598,113,5665,1 +41958,1756800,154,7738,1 +41959,1756800,61,3059,1 +41960,1756800,89,4459,1 +41961,1756800,83,4153,1 +41962,1756800,193,9699,1 +41963,1756801,161,8088,1 +41964,1756803,140,7025,1 +41965,1756806,15,787,1 +41966,1756809,79,3978,1 +41967,1756810,182,9121,1 +41968,1756812,110,5540,1 +41969,1756812,36,1804,1 +41970,1756812,62,3101,1 +41971,1756814,39,1955,1 +41972,1756815,127,6370,1 +41973,1756818,141,7074,1 +41974,1756821,99,4957,1 +41975,1756824,12,648,1 +41976,1756824,170,8517,1 +41977,1756827,109,5452,1 +41978,1756827,47,2353,1 +41979,1756833,177,8889,1 +41980,1756836,115,5760,1 +41981,1756836,9,474,1 +41982,1756839,153,7688,1 +41983,1756848,179,8955,1 +41984,1756848,155,7776,1 +41985,1756848,0,19,1 +41986,1756848,109,5470,1 +41987,1756854,68,3423,1 +41988,1756860,136,6813,1 +41989,1756860,74,3733,1 +41990,1756860,96,4844,1 +41991,1756861,157,7883,1 +41992,1756872,58,2926,1 +41993,1756878,154,7707,1 +41994,1756884,53,2672,1 +41995,1756884,75,3774,1 +41996,1756884,124,6223,1 +41997,1756884,49,2482,1 +41998,1756895,111,5569,1 +41999,1756897,40,2018,1 +42000,1756917,93,4670,1 +42001,1756926,72,3605,1 +42002,1756944,89,4475,1 +42003,1756944,12,605,1 +42004,1756944,91,4578,1 +42005,1756955,175,8777,1 +42006,1756957,74,3722,1 +42007,1756969,174,8729,1 +42008,1757016,195,9755,1 +42009,1757292,49,2494,1 +42010,1757297,197,9860,1 +42011,1757297,22,1141,1 +42012,1757306,189,9461,1 +42013,1757314,150,7535,1 +42014,1757316,57,2897,1 +42015,1757317,61,3076,1 +42016,1757340,58,2927,1 +42017,1757388,10,509,1 +42018,1757392,109,5493,1 +42019,1758264,60,3024,1 +42020,1758721,169,8495,1 +42021,1758721,162,8140,1 +42022,1758750,36,1801,1 +42023,1758768,14,746,1 +42024,1758792,145,7275,1 +42025,1758852,78,3908,1 +42026,1758864,1,89,1 +42027,1758894,113,5661,1 +42028,1759685,116,5839,1 +42029,1759717,74,3733,1 +42030,1759728,35,1755,1 +42031,1759789,37,1899,1 +42032,1760172,50,2542,1 +42033,1760178,184,9240,1 +42034,1760178,198,9929,1 +42035,1760640,34,1744,1 +42036,1760652,154,7728,1 +42037,1760689,11,580,1 +42038,1760821,158,7921,1 +42039,1761120,88,4423,1 +42040,1761120,117,5858,1 +42041,1761120,84,4221,1 +42042,1761124,197,9900,1 +42043,1761127,16,827,1 +42044,1761129,66,3326,1 +42045,1761132,82,4128,1 +42046,1761132,55,2766,1 +42047,1761132,106,5341,1 +42048,1761132,2,113,1 +42049,1761133,183,9157,1 +42050,1761138,171,8591,1 +42051,1761139,72,3614,1 +42052,1761144,87,4385,1 +42053,1761144,136,6815,1 +42054,1761145,89,4451,1 +42055,1761146,174,8719,1 +42056,1761153,187,9387,1 +42057,1761154,66,3348,1 +42058,1761163,197,9857,1 +42059,1761165,131,6573,1 +42060,1761168,185,9270,1 +42061,1761169,177,8854,1 +42062,1761170,44,2239,1 +42063,1761180,121,6076,1 +42064,1761183,192,9614,1 +42065,1761193,199,9989,1 +42066,1761205,193,9679,1 +42067,1761225,38,1915,1 +42068,1761252,95,4751,1 +42069,1761408,180,9005,1 +42070,1761601,11,592,1 +42071,1761601,197,9862,1 +42072,1761603,154,7747,1 +42073,1761612,26,1339,1 +42074,1761612,129,6458,1 +42075,1761612,92,4628,1 +42076,1761613,174,8743,1 +42077,1761618,152,7632,1 +42078,1761624,90,4517,1 +42079,1761624,83,4197,1 +42080,1761625,158,7916,1 +42081,1761627,49,2490,1 +42082,1761636,138,6919,1 +42083,1761636,180,9037,1 +42084,1761638,34,1719,1 +42085,1761639,128,6417,1 +42086,1761642,63,3157,1 +42087,1761648,87,4363,1 +42088,1761652,34,1720,1 +42089,1761657,83,4197,1 +42090,1761660,92,4629,1 +42091,1761660,59,2954,1 +42092,1761660,88,4437,1 +42093,1761660,135,6792,1 +42094,1761674,16,801,1 +42095,1761675,44,2245,1 +42096,1761720,9,480,1 +42097,1761726,150,7536,1 +42098,1761757,122,6120,1 +42099,1762093,177,8883,1 +42100,1762099,26,1306,1 +42101,1762105,125,6260,1 +42102,1762126,80,4006,1 +42103,1762152,74,3727,1 +42104,1762158,110,5502,1 +42105,1762159,29,1495,1 +42106,1762392,182,9116,1 +42107,1762578,95,4785,1 +42108,1762584,184,9248,1 +42109,1762584,32,1619,1 +42110,1762611,110,5531,1 +42111,1762620,96,4845,1 +42112,1762621,148,7403,1 +42113,1762836,49,2493,1 +42114,1763048,186,9305,1 +42115,1763052,92,4639,1 +42116,1763052,192,9605,1 +42117,1763052,40,2010,1 +42118,1763052,194,9749,1 +42119,1763055,186,9329,1 +42120,1763067,191,9586,1 +42121,1763067,28,1432,1 +42122,1763070,191,9590,1 +42123,1763076,4,217,1 +42124,1763078,45,2261,1 +42125,1763088,183,9200,1 +42126,1763088,180,9040,1 +42127,1763091,71,3575,1 +42128,1763097,24,1222,1 +42129,1763112,73,3694,1 +42130,1763115,110,5504,1 +42131,1763118,140,7028,1 +42132,1763124,175,8779,1 +42133,1763124,133,6669,1 +42134,1763133,52,2647,1 +42135,1763173,90,4507,1 +42136,1763184,28,1436,1 +42137,1763196,99,4990,1 +42138,1763577,47,2384,1 +42139,1763592,126,6310,1 +42140,1763607,66,3317,1 +42141,1763710,109,5495,1 +42142,1764009,186,9344,1 +42143,1764012,141,7079,1 +42144,1764014,52,2637,1 +42145,1764015,82,4149,1 +42146,1764024,183,9182,1 +42147,1764025,94,4726,1 +42148,1764037,153,7695,1 +42149,1764049,137,6874,1 +42150,1764168,133,6657,1 +42151,1764180,48,2407,1 +42152,1764180,62,3122,1 +42153,1764255,34,1701,1 +42154,1764481,174,8743,1 +42155,1764508,13,663,1 +42156,1764973,91,4595,1 +42157,1764973,107,5380,1 +42158,1764973,141,7061,1 +42159,1764984,9,479,1 +42160,1764993,186,9344,1 +42161,1765017,149,7464,1 +42162,1765059,139,6956,1 +42163,1765446,196,9806,1 +42164,1765452,179,8970,1 +42165,1765453,54,2702,1 +42166,1765572,119,5974,1 +42167,1765956,153,7681,1 +42168,1765968,151,7577,1 +42169,1765972,142,7115,1 +42170,1766040,136,6841,1 +42171,1766076,199,9968,1 +42172,1766442,126,6341,1 +42173,1766641,70,3526,1 +42174,1766880,106,5317,1 +42175,1766880,113,5657,1 +42176,1766880,46,2346,1 +42177,1766880,144,7216,1 +42178,1766880,6,350,1 +42179,1766880,81,4056,1 +42180,1766880,75,3793,1 +42181,1766880,154,7722,1 +42182,1766880,84,4228,1 +42183,1766880,7,392,1 +42184,1766880,179,8974,1 +42185,1766881,91,4587,1 +42186,1766881,175,8765,1 +42187,1766881,109,5484,1 +42188,1766881,177,8899,1 +42189,1766881,178,8908,1 +42190,1766881,10,524,1 +42191,1766882,83,4158,1 +42192,1766883,4,215,1 +42193,1766883,127,6362,1 +42194,1766883,182,9110,1 +42195,1766883,65,3292,1 +42196,1766886,55,2767,1 +42197,1766887,59,2975,1 +42198,1766887,115,5794,1 +42199,1766889,117,5889,1 +42200,1766892,41,2061,1 +42201,1766892,122,6102,1 +42202,1766892,143,7154,1 +42203,1766892,11,581,1 +42204,1766892,78,3934,1 +42205,1766892,130,6544,1 +42206,1766892,45,2277,1 +42207,1766893,151,7573,1 +42208,1766894,123,6158,1 +42209,1766895,100,5015,1 +42210,1766898,137,6868,1 +42211,1766898,71,3573,1 +42212,1766901,18,938,1 +42213,1766904,138,6940,1 +42214,1766905,3,170,1 +42215,1766905,123,6164,1 +42216,1766905,13,697,1 +42217,1766905,32,1643,1 +42218,1766905,50,2538,1 +42219,1766907,71,3576,1 +42220,1766913,4,217,1 +42221,1766913,58,2928,1 +42222,1766913,61,3099,1 +42223,1766916,2,146,1 +42224,1766916,90,4543,1 +42225,1766916,148,7421,1 +42226,1766920,192,9617,1 +42227,1766922,19,956,1 +42228,1766923,3,199,1 +42229,1766924,0,30,1 +42230,1766925,122,6139,1 +42231,1766928,65,3265,1 +42232,1766928,170,8549,1 +42233,1766928,77,3881,1 +42234,1766929,190,9534,1 +42235,1766934,92,4605,1 +42236,1766934,56,2811,1 +42237,1766937,119,5983,1 +42238,1766938,86,4345,1 +42239,1766938,182,9129,1 +42240,1766940,29,1489,1 +42241,1766940,147,7395,1 +42242,1766940,49,2455,1 +42243,1766941,90,4541,1 +42244,1766952,149,7489,1 +42245,1766952,70,3521,1 +42246,1766952,83,4162,1 +42247,1766955,127,6364,1 +42248,1766957,134,6721,1 +42249,1766958,45,2262,1 +42250,1766960,26,1319,1 +42251,1766961,77,3870,1 +42252,1766964,103,5170,1 +42253,1766964,60,3046,1 +42254,1766964,65,3261,1 +42255,1766964,86,4311,1 +42256,1766964,189,9458,1 +42257,1766964,108,5431,1 +42258,1766965,172,8611,1 +42259,1766976,168,8405,1 +42260,1766985,172,8616,1 +42261,1766988,43,2156,1 +42262,1766989,88,4409,1 +42263,1766995,124,6204,1 +42264,1767004,164,8230,1 +42265,1767012,20,1025,1 +42266,1767012,126,6323,1 +42267,1767024,53,2693,1 +42268,1767036,189,9461,1 +42269,1767048,177,8851,1 +42270,1767072,10,528,1 +42271,1767072,110,5504,1 +42272,1767072,7,368,1 +42273,1767084,192,9614,1 +42274,1767120,52,2631,1 +42275,1767193,85,4259,1 +42276,1767360,7,393,1 +42277,1767397,71,3575,1 +42278,1767398,81,4069,1 +42279,1767585,156,7812,1 +42280,1767840,21,1067,1 +42281,1767876,36,1815,1 +42282,1767877,163,8151,1 +42283,1767906,108,5424,1 +42284,1767913,12,614,1 +42285,1767939,94,4743,1 +42286,1767991,132,6650,1 +42287,1767996,75,3753,1 +42288,1768011,72,3633,1 +42289,1768800,183,9155,1 +42290,1768824,194,9740,1 +42291,1768860,80,4007,1 +42292,1769280,195,9790,1 +42293,1769280,92,4604,1 +42294,1769280,101,5081,1 +42295,1769280,70,3528,1 +42296,1769280,195,9764,1 +42297,1769280,147,7390,1 +42298,1769281,198,9946,1 +42299,1769282,28,1403,1 +42300,1769282,129,6459,1 +42301,1769292,96,4816,1 +42302,1769292,2,117,1 +42303,1769293,85,4266,1 +42304,1769304,144,7212,1 +42305,1769304,190,9506,1 +42306,1769305,155,7796,1 +42307,1769305,91,4573,1 +42308,1769308,49,2452,1 +42309,1769310,47,2368,1 +42310,1769310,183,9172,1 +42311,1769316,40,2009,1 +42312,1769316,142,7128,1 +42313,1769316,113,5672,1 +42314,1769328,32,1648,1 +42315,1769330,81,4054,1 +42316,1769331,199,9985,1 +42317,1769332,91,4570,1 +42318,1769340,10,520,1 +42319,1769340,56,2833,1 +42320,1769342,42,2107,1 +42321,1769352,130,6546,1 +42322,1769365,91,4598,1 +42323,1769377,184,9249,1 +42324,1769388,104,5224,1 +42325,1769397,39,1986,1 +42326,1769400,159,7975,1 +42327,1769400,118,5917,1 +42328,1769404,152,7645,1 +42329,1769475,35,1785,1 +42330,1769484,95,4765,1 +42331,1769508,145,7280,1 +42332,1769763,38,1948,1 +42333,1769772,33,1668,1 +42334,1769786,146,7319,1 +42335,1769786,96,4819,1 +42336,1769791,57,2884,1 +42337,1769808,110,5510,1 +42338,1769942,84,4215,1 +42339,1770255,134,6749,1 +42340,1770720,24,1203,1 +42341,1770721,78,3904,1 +42342,1770721,167,8374,1 +42343,1770723,46,2326,1 +42344,1770730,1,79,1 +42345,1770732,185,9263,1 +42346,1770735,199,9999,1 +42347,1770744,160,8029,1 +42348,1770746,128,6441,1 +42349,1770748,42,2144,1 +42350,1770751,24,1242,1 +42351,1770756,107,5354,1 +42352,1770760,111,5600,1 +42353,1770769,77,3871,1 +42354,1770769,77,3873,1 +42355,1770780,5,259,1 +42356,1770828,107,5377,1 +42357,1770829,183,9197,1 +42358,1770842,159,7977,1 +42359,1770856,30,1516,1 +42360,1770867,135,6767,1 +42361,1770972,147,7369,1 +42362,1770988,163,8186,1 +42363,1771680,173,8693,1 +42364,1771690,30,1531,1 +42365,1771692,84,4239,1 +42366,1771722,110,5544,1 +42367,1771728,20,1026,1 +42368,1771836,171,8580,1 +42369,1772640,111,5564,1 +42370,1772640,101,5064,1 +42371,1772640,39,1987,1 +42372,1772645,197,9871,1 +42373,1772646,146,7303,1 +42374,1772652,83,4176,1 +42375,1772652,63,3177,1 +42376,1772655,6,316,1 +42377,1772661,63,3198,1 +42378,1772662,52,2639,1 +42379,1772664,157,7868,1 +42380,1772664,86,4314,1 +42381,1772667,163,8170,1 +42382,1772670,131,6556,1 +42383,1772676,7,399,1 +42384,1772713,163,8169,1 +42385,1772724,180,9015,1 +42386,1772727,199,9959,1 +42387,1772728,7,367,1 +42388,1772750,45,2295,1 +42389,1772774,168,8423,1 +42390,1772775,70,3538,1 +42391,1772784,38,1915,1 +42392,1772910,22,1113,1 +42393,1773612,77,3869,1 +42394,1773613,173,8677,1 +42395,1773618,128,6424,1 +42396,1773624,52,2649,1 +42397,1773624,193,9672,1 +42398,1773624,46,2337,1 +42399,1773630,128,6448,1 +42400,1773636,32,1608,1 +42401,1773648,30,1542,1 +42402,1773648,171,8585,1 +42403,1773648,42,2124,1 +42404,1773652,152,7636,1 +42405,1773660,168,8430,1 +42406,1773660,24,1224,1 +42407,1773670,77,3896,1 +42408,1773672,192,9639,1 +42409,1773672,63,3188,1 +42410,1773721,44,2214,1 +42411,1773936,142,7110,1 +42412,1774089,153,7660,1 +42413,1774113,57,2899,1 +42414,1774117,77,3888,1 +42415,1774141,130,6528,1 +42416,1774561,100,5017,1 +42417,1774632,147,7388,1 +42418,1775103,48,2435,1 +42419,1775617,195,9772,1 +42420,1776030,13,698,1 +42421,1776036,47,2390,1 +42422,1776060,175,8783,1 +42423,1776120,82,4123,1 +42424,1776480,80,4041,1 +42425,1776961,128,6408,1 +42426,1776975,136,6806,1 +42427,1776984,91,4561,1 +42428,1777020,167,8367,1 +42429,1777440,81,4091,1 +42430,1777446,159,7981,1 +42431,1777518,157,7856,1 +42432,1777920,94,4724,1 +42433,1777935,103,5197,1 +42434,1777956,17,889,1 +42435,1777957,13,674,1 +42436,1778091,16,834,1 +42437,1778151,175,8800,1 +42438,1778413,30,1537,1 +42439,1778426,5,252,1 +42440,1778443,152,7649,1 +42441,1778445,77,3851,1 +42442,1778457,133,6675,1 +42443,1778472,181,9082,1 +42444,1778484,16,842,1 +42445,1778492,55,2763,1 +42446,1778736,126,6328,1 +42447,1778892,173,8667,1 +42448,1778892,22,1104,1 +42449,1778904,116,5850,1 +42450,1778907,53,2694,1 +42451,1778916,107,5371,1 +42452,1778916,103,5171,1 +42453,1778932,38,1944,1 +42454,1778944,49,2481,1 +42455,1779037,174,8734,1 +42456,1779384,139,6987,1 +42457,1780340,100,5011,1 +42458,1780800,127,6386,1 +42459,1780800,112,5608,1 +42460,1780801,22,1108,1 +42461,1780802,111,5555,1 +42462,1780803,44,2214,1 +42463,1780803,90,4506,1 +42464,1780815,39,1989,1 +42465,1780821,48,2402,1 +42466,1780821,8,432,1 +42467,1780825,106,5309,1 +42468,1780836,15,777,1 +42469,1780836,74,3746,1 +42470,1780860,178,8928,1 +42471,1780860,108,5447,1 +42472,1780866,63,3185,1 +42473,1780872,149,7453,1 +42474,1780872,182,9110,1 +42475,1780911,37,1897,1 +42476,1780920,169,8474,1 +42477,1780965,102,5148,1 +42478,1780992,170,8507,1 +42479,1781762,188,9418,1 +42480,1781769,165,8279,1 +42481,1781769,119,5978,1 +42482,1781784,2,140,1 +42483,1781787,171,8558,1 +42484,1781806,145,7251,1 +42485,1781811,27,1397,1 +42486,1781814,11,585,1 +42487,1781830,78,3923,1 +42488,1781853,91,4568,1 +42489,1781871,53,2659,1 +42490,1781888,79,3979,1 +42491,1781928,42,2135,1 +42492,1782271,105,5294,1 +42493,1782720,184,9218,1 +42494,1782721,165,8253,1 +42495,1782721,18,945,1 +42496,1782781,40,2033,1 +42497,1782864,189,9459,1 +42498,1783200,133,6668,1 +42499,1783200,182,9141,1 +42500,1783200,41,2069,1 +42501,1783200,72,3624,1 +42502,1783200,85,4263,1 +42503,1783200,152,7647,1 +42504,1783202,167,8378,1 +42505,1783206,3,164,1 +42506,1783206,63,3162,1 +42507,1783209,145,7289,1 +42508,1783209,156,7843,1 +42509,1783210,116,5850,1 +42510,1783211,147,7381,1 +42511,1783212,69,3489,1 +42512,1783212,190,9506,1 +42513,1783212,61,3053,1 +42514,1783215,135,6789,1 +42515,1783221,191,9575,1 +42516,1783221,67,3377,1 +42517,1783224,147,7363,1 +42518,1783224,138,6908,1 +42519,1783224,55,2759,1 +42520,1783224,95,4756,1 +42521,1783225,55,2785,1 +42522,1783227,13,687,1 +42523,1783227,26,1310,1 +42524,1783236,181,9057,1 +42525,1783238,41,2051,1 +42526,1783239,61,3098,1 +42527,1783248,48,2403,1 +42528,1783248,5,266,1 +42529,1783253,26,1310,1 +42530,1783260,4,202,1 +42531,1783260,55,2785,1 +42532,1783260,140,7016,1 +42533,1783261,193,9692,1 +42534,1783263,61,3100,1 +42535,1783296,37,1899,1 +42536,1783297,137,6856,1 +42537,1783301,85,4285,1 +42538,1783308,191,9595,1 +42539,1783320,39,1990,1 +42540,1783345,149,7469,1 +42541,1783369,173,8688,1 +42542,1783381,60,3020,1 +42543,1783419,48,2425,1 +42544,1783476,109,5469,1 +42545,1783683,30,1550,1 +42546,1783683,166,8350,1 +42547,1783692,49,2456,1 +42548,1783703,42,2108,1 +42549,1783824,83,4176,1 +42550,1784172,170,8541,1 +42551,1784196,182,9103,1 +42552,1784641,21,1090,1 +42553,1784664,192,9617,1 +42554,1784680,61,3051,1 +42555,1784700,117,5861,1 +42556,1784700,43,2176,1 +42557,1784700,29,1474,1 +42558,1784760,22,1147,1 +42559,1785120,47,2390,1 +42560,1785120,63,3200,1 +42561,1785126,166,8325,1 +42562,1785211,14,720,1 +42563,1785219,70,3548,1 +42564,1785600,10,535,1 +42565,1785612,46,2336,1 +42566,1785626,118,5911,1 +42567,1785626,148,7416,1 +42568,1785642,154,7747,1 +42569,1785647,197,9886,1 +42570,1785648,136,6813,1 +42571,1785684,186,9303,1 +42572,1785732,181,9079,1 +42573,1785744,159,7990,1 +42574,1786085,189,9458,1 +42575,1786164,137,6865,1 +42576,1786560,84,4214,1 +42577,1786575,121,6085,1 +42578,1786575,195,9777,1 +42579,1786579,134,6746,1 +42580,1786597,20,1033,1 +42581,1786630,54,2735,1 +42582,1786668,98,4939,1 +42583,1787040,161,8092,1 +42584,1787050,45,2285,1 +42585,1787059,17,886,1 +42586,1787064,159,7959,1 +42587,1787066,145,7272,1 +42588,1787067,166,8343,1 +42589,1787070,61,3097,1 +42590,1787089,54,2734,1 +42591,1787097,17,900,1 +42592,1787100,176,8844,1 +42593,1787114,89,4452,1 +42594,1787124,9,495,1 +42595,1787125,54,2717,1 +42596,1787545,149,7487,1 +42597,1787545,46,2349,1 +42598,1787556,92,4632,1 +42599,1787568,167,8400,1 +42600,1787569,48,2441,1 +42601,1787605,44,2241,1 +42602,1787637,118,5945,1 +42603,1787654,6,349,1 +42604,1788048,0,38,1 +42605,1788075,199,9966,1 +42606,1788504,185,9263,1 +42607,1788505,21,1079,1 +42608,1788514,62,3145,1 +42609,1788541,79,3981,1 +42610,1788543,171,8576,1 +42611,1788555,97,4852,1 +42612,1788589,69,3490,1 +42613,1788601,128,6424,1 +42614,1788612,1,72,1 +42615,1788657,24,1240,1 +42616,1788661,120,6025,1 +42617,1788963,108,5431,1 +42618,1788973,175,8760,1 +42619,1788984,28,1440,1 +42620,1788985,42,2139,1 +42621,1789012,69,3490,1 +42622,1789455,99,4960,1 +42623,1789476,50,2549,1 +42624,1789503,92,4603,1 +42625,1790400,119,5985,1 +42626,1790400,90,4534,1 +42627,1790401,99,4967,1 +42628,1790403,45,2289,1 +42629,1790406,193,9691,1 +42630,1790436,108,5446,1 +42631,1790448,0,13,1 +42632,1790484,22,1104,1 +42633,1791362,147,7365,1 +42634,1791362,167,8389,1 +42635,1791366,36,1817,1 +42636,1791378,58,2940,1 +42637,1791384,77,3875,1 +42638,1791422,176,8832,1 +42639,1791840,83,4186,1 +42640,1791888,14,712,1 +42641,1791888,152,7642,1 +42642,1791891,20,1004,1 +42643,1791900,58,2926,1 +42644,1791900,168,8422,1 +42645,1791901,109,5498,1 +42646,1793280,121,6098,1 +42647,1793293,197,9872,1 +42648,1793296,167,8356,1 +42649,1793300,104,5238,1 +42650,1793317,150,7519,1 +42651,1793328,50,2512,1 +42652,1793760,78,3921,1 +42653,1793761,146,7306,1 +42654,1793761,114,5744,1 +42655,1793763,150,7519,1 +42656,1793766,97,4882,1 +42657,1793766,84,4202,1 +42658,1793772,130,6502,1 +42659,1793773,188,9450,1 +42660,1793773,125,6297,1 +42661,1793776,71,3600,1 +42662,1793788,60,3044,1 +42663,1793796,168,8447,1 +42664,1793798,138,6924,1 +42665,1793799,107,5380,1 +42666,1793799,74,3731,1 +42667,1793817,74,3749,1 +42668,1793820,146,7344,1 +42669,1793832,0,45,1 +42670,1793834,134,6721,1 +42671,1793835,179,8993,1 +42672,1793838,34,1716,1 +42673,1793856,190,9502,1 +42674,1793871,179,8984,1 +42675,1793881,167,8373,1 +42676,1793898,180,9022,1 +42677,1793928,123,6165,1 +42678,1793930,126,6304,1 +42679,1793940,27,1373,1 +42680,1793961,66,3332,1 +42681,1793997,30,1535,1 +42682,1794240,77,3898,1 +42683,1794241,63,3179,1 +42684,1794252,19,989,1 +42685,1794313,191,9577,1 +42686,1794336,175,8753,1 +42687,1794734,119,5957,1 +42688,1794802,198,9921,1 +42689,1794938,90,4515,1 +42690,1795200,43,2154,1 +42691,1795201,193,9691,1 +42692,1795202,32,1601,1 +42693,1795206,104,5216,1 +42694,1795206,125,6255,1 +42695,1795207,182,9132,1 +42696,1795212,112,5620,1 +42697,1795212,190,9550,1 +42698,1795212,49,2492,1 +42699,1795212,190,9536,1 +42700,1795224,12,636,1 +42701,1795224,143,7176,1 +42702,1795224,109,5481,1 +42703,1795224,161,8083,1 +42704,1795227,133,6679,1 +42705,1795228,6,311,1 +42706,1795236,39,1967,1 +42707,1795240,53,2683,1 +42708,1795248,111,5579,1 +42709,1795278,194,9730,1 +42710,1795291,140,7048,1 +42711,1795296,142,7115,1 +42712,1795332,62,3104,1 +42713,1795340,45,2300,1 +42714,1795359,34,1724,1 +42715,1795362,156,7806,1 +42716,1795476,45,2257,1 +42717,1795692,94,4740,1 +42718,1795722,199,9957,1 +42719,1795812,29,1489,1 +42720,1795830,165,8299,1 +42721,1796161,24,1208,1 +42722,1796172,171,8552,1 +42723,1796377,88,4432,1 +42724,1796640,130,6532,1 +42725,1796641,52,2625,1 +42726,1796642,162,8142,1 +42727,1796642,38,1934,1 +42728,1796644,30,1516,1 +42729,1796652,104,5231,1 +42730,1796653,9,485,1 +42731,1796655,7,386,1 +42732,1796655,168,8430,1 +42733,1796656,147,7362,1 +42734,1796664,192,9633,1 +42735,1796664,161,8088,1 +42736,1796675,44,2249,1 +42737,1796676,67,3380,1 +42738,1796685,110,5549,1 +42739,1796700,125,6271,1 +42740,1796733,105,5258,1 +42741,1796737,52,2647,1 +42742,1796738,112,5644,1 +42743,1796738,102,5147,1 +42744,1796747,115,5762,1 +42745,1796748,63,3163,1 +42746,1796772,177,8874,1 +42747,1796784,69,3473,1 +42748,1796824,175,8788,1 +42749,1797120,172,8649,1 +42750,1797123,7,363,1 +42751,1797135,171,8597,1 +42752,1797136,119,5960,1 +42753,1797138,128,6429,1 +42754,1797144,16,813,1 +42755,1797150,152,7639,1 +42756,1797150,51,2569,1 +42757,1797168,40,2024,1 +42758,1797178,122,6127,1 +42759,1797180,23,1151,1 +42760,1797216,164,8201,1 +42761,1797224,179,8968,1 +42762,1797276,75,3762,1 +42763,1797276,88,4423,1 +42764,1797292,147,7400,1 +42765,1797600,63,3172,1 +42766,1797600,37,1897,1 +42767,1797600,128,6427,1 +42768,1797600,116,5821,1 +42769,1797600,77,3852,1 +42770,1797601,45,2269,1 +42771,1797603,70,3543,1 +42772,1797609,17,867,1 +42773,1797612,71,3584,1 +42774,1797612,96,4824,1 +42775,1797612,94,4726,1 +42776,1797612,150,7517,1 +42777,1797615,107,5376,1 +42778,1797621,167,8386,1 +42779,1797624,99,4981,1 +42780,1797624,51,2598,1 +42781,1797624,153,7698,1 +42782,1797624,145,7287,1 +42783,1797629,129,6479,1 +42784,1797636,21,1070,1 +42785,1797636,49,2470,1 +42786,1797636,108,5445,1 +42787,1797639,153,7684,1 +42788,1797641,86,4348,1 +42789,1797651,163,8174,1 +42790,1797657,45,2267,1 +42791,1797660,97,4886,1 +42792,1797674,25,1292,1 +42793,1797686,72,3613,1 +42794,1797696,149,7461,1 +42795,1797697,30,1524,1 +42796,1797715,6,308,1 +42797,1797733,18,902,1 +42798,1797748,116,5814,1 +42799,1797763,170,8548,1 +42800,1798080,129,6461,1 +42801,1798081,93,4662,1 +42802,1798152,105,5299,1 +42803,1798176,108,5426,1 +42804,1798197,134,6712,1 +42805,1798320,142,7130,1 +42806,1798560,148,7406,1 +42807,1798560,20,1020,1 +42808,1798560,24,1229,1 +42809,1798566,26,1323,1 +42810,1798569,55,2771,1 +42811,1798570,79,3997,1 +42812,1798574,55,2758,1 +42813,1798574,74,3735,1 +42814,1798578,26,1339,1 +42815,1798584,75,3763,1 +42816,1798586,135,6772,1 +42817,1798588,95,4763,1 +42818,1798608,147,7354,1 +42819,1798608,198,9907,1 +42820,1798613,19,969,1 +42821,1798617,166,8350,1 +42822,1798644,7,392,1 +42823,1798645,45,2274,1 +42824,1798647,180,9022,1 +42825,1798656,127,6383,1 +42826,1798657,178,8914,1 +42827,1798726,153,7683,1 +42828,1799052,175,8796,1 +42829,1799053,0,37,1 +42830,1799061,48,2403,1 +42831,1799061,9,461,1 +42832,1799076,64,3247,1 +42833,1799076,81,4095,1 +42834,1799086,115,5752,1 +42835,1799088,111,5558,1 +42836,1799088,30,1517,1 +42837,1799100,36,1810,1 +42838,1799100,87,4380,1 +42839,1799136,134,6739,1 +42840,1799520,139,6995,1 +42841,1799520,122,6138,1 +42842,1799520,12,646,1 +42843,1799520,96,4842,1 +42844,1799520,52,2637,1 +42845,1799521,2,133,1 +42846,1799521,159,7998,1 +42847,1799521,191,9589,1 +42848,1799522,84,4241,1 +42849,1799522,10,535,1 +42850,1799529,39,1959,1 +42851,1799530,27,1359,1 +42852,1799532,155,7766,1 +42853,1799532,152,7604,1 +42854,1799532,170,8511,1 +42855,1799533,45,2252,1 +42856,1799536,1,79,1 +42857,1799538,40,2042,1 +42858,1799538,145,7260,1 +42859,1799538,83,4162,1 +42860,1799541,130,6501,1 +42861,1799543,124,6232,1 +42862,1799544,128,6446,1 +42863,1799544,108,5409,1 +42864,1799556,187,9358,1 +42865,1799556,37,1858,1 +42866,1799556,67,3381,1 +42867,1799568,104,5219,1 +42868,1799568,42,2122,1 +42869,1799568,103,5192,1 +42870,1799569,130,6503,1 +42871,1799570,173,8677,1 +42872,1799571,2,123,1 +42873,1799583,96,4834,1 +42874,1799586,18,928,1 +42875,1799592,71,3596,1 +42876,1799592,142,7109,1 +42877,1799592,59,2965,1 +42878,1799592,29,1477,1 +42879,1799592,138,6911,1 +42880,1799595,38,1935,1 +42881,1799595,21,1080,1 +42882,1799596,188,9421,1 +42883,1799598,170,8548,1 +42884,1799601,25,1266,1 +42885,1799601,23,1176,1 +42886,1799604,196,9817,1 +42887,1799604,55,2760,1 +42888,1799608,38,1931,1 +42889,1799620,73,3677,1 +42890,1799634,129,6475,1 +42891,1799652,116,5834,1 +42892,1799653,131,6597,1 +42893,1799667,64,3244,1 +42894,1799694,180,9007,1 +42895,1799703,134,6705,1 +42896,1799708,114,5708,1 +42897,1799736,113,5672,1 +42898,1800000,111,5566,1 +42899,1800001,96,4807,1 +42900,1800001,49,2496,1 +42901,1800002,64,3241,1 +42902,1800006,5,264,1 +42903,1800007,106,5350,1 +42904,1800013,22,1117,1 +42905,1800014,164,8231,1 +42906,1800018,110,5528,1 +42907,1800021,3,186,1 +42908,1800024,170,8527,1 +42909,1800024,151,7554,1 +42910,1800025,167,8351,1 +42911,1800027,112,5636,1 +42912,1800036,11,598,1 +42913,1800037,165,8263,1 +42914,1800037,11,588,1 +42915,1800038,30,1546,1 +42916,1800058,112,5625,1 +42917,1800060,195,9759,1 +42918,1800060,21,1062,1 +42919,1800061,26,1331,1 +42920,1800072,33,1683,1 +42921,1800073,147,7399,1 +42922,1800076,10,548,1 +42923,1800082,159,7980,1 +42924,1800082,172,8637,1 +42925,1800085,187,9391,1 +42926,1800089,188,9427,1 +42927,1800096,174,8724,1 +42928,1800098,38,1920,1 +42929,1800108,171,8552,1 +42930,1800133,51,2591,1 +42931,1800205,91,4585,1 +42932,1800489,62,3125,1 +42933,1800504,107,5388,1 +42934,1800504,168,8436,1 +42935,1800510,6,326,1 +42936,1800531,173,8658,1 +42937,1800534,21,1099,1 +42938,1800541,127,6371,1 +42939,1800555,27,1381,1 +42940,1800582,134,6731,1 +42941,1800975,27,1376,1 +42942,1801008,149,7464,1 +42943,1801149,63,3162,1 +42944,1801443,83,4177,1 +42945,1801453,50,2537,1 +42946,1801487,161,8094,1 +42947,1801572,100,5018,1 +42948,1801576,40,2007,1 +42949,1801813,189,9496,1 +42950,1801920,196,9847,1 +42951,1801920,50,2502,1 +42952,1801921,119,5972,1 +42953,1801932,191,9567,1 +42954,1801945,34,1706,1 +42955,1801968,46,2350,1 +42956,1802404,32,1644,1 +42957,1802404,86,4315,1 +42958,1802414,71,3588,1 +42959,1802466,162,8144,1 +42960,1802581,130,6515,1 +42961,1802989,108,5445,1 +42962,1803384,43,2190,1 +42963,1803387,197,9867,1 +42964,1803852,5,263,1 +42965,1803852,53,2691,1 +42966,1803855,165,8275,1 +42967,1803867,92,4622,1 +42968,1803876,91,4592,1 +42969,1803876,154,7714,1 +42970,1803937,150,7536,1 +42971,1803960,165,8299,1 +42972,1803960,128,6425,1 +42973,1804332,140,7030,1 +42974,1804345,181,9053,1 +42975,1804383,194,9745,1 +42976,1804405,156,7848,1 +42977,1804800,107,5395,1 +42978,1804800,183,9168,1 +42979,1804812,143,7164,1 +42980,1804813,54,2737,1 +42981,1804827,26,1325,1 +42982,1804836,15,787,1 +42983,1804836,116,5826,1 +42984,1804861,150,7522,1 +42985,1804909,26,1318,1 +42986,1805178,16,843,1 +42987,1805281,138,6930,1 +42988,1805281,124,6209,1 +42989,1805286,147,7395,1 +42990,1805292,146,7350,1 +42991,1805304,14,750,1 +42992,1805305,149,7467,1 +42993,1805316,185,9257,1 +42994,1805316,82,4105,1 +42995,1805328,11,571,1 +42996,1805340,50,2546,1 +42997,1805388,160,8007,1 +42998,1805391,158,7948,1 +42999,1805671,18,910,1 +43000,1805760,81,4062,1 +43001,1805760,53,2688,1 +43002,1805770,167,8370,1 +43003,1805772,14,724,1 +43004,1805777,193,9661,1 +43005,1805784,10,518,1 +43006,1805784,75,3794,1 +43007,1805796,61,3087,1 +43008,1805799,162,8137,1 +43009,1805808,62,3104,1 +43010,1805821,139,6960,1 +43011,1805832,27,1365,1 +43012,1805836,81,4072,1 +43013,1805843,126,6315,1 +43014,1805848,50,2533,1 +43015,1805881,150,7503,1 +43016,1805890,120,6001,1 +43017,1805950,27,1358,1 +43018,1806282,194,9726,1 +43019,1806296,126,6350,1 +43020,1806336,199,9991,1 +43021,1806729,154,7738,1 +43022,1806732,172,8641,1 +43023,1806742,163,8166,1 +43024,1806744,116,5812,1 +43025,1806744,56,2839,1 +43026,1806780,170,8531,1 +43027,1806784,193,9664,1 +43028,1807202,123,6165,1 +43029,1807206,5,290,1 +43030,1807213,160,8013,1 +43031,1807221,178,8942,1 +43032,1807225,26,1303,1 +43033,1807261,127,6391,1 +43034,1807281,166,8307,1 +43035,1807299,37,1870,1 +43036,1807308,154,7710,1 +43037,1807705,130,6541,1 +43038,1807729,76,3833,1 +43039,1808160,194,9746,1 +43040,1808163,63,3165,1 +43041,1808166,168,8428,1 +43042,1808172,98,4947,1 +43043,1808172,98,4941,1 +43044,1808176,2,130,1 +43045,1808178,167,8362,1 +43046,1808190,134,6707,1 +43047,1808196,7,375,1 +43048,1808206,188,9411,1 +43049,1808206,105,5282,1 +43050,1808220,155,7784,1 +43051,1808220,195,9780,1 +43052,1808220,188,9415,1 +43053,1808232,125,6266,1 +43054,1808241,171,8572,1 +43055,1808256,106,5330,1 +43056,1808256,182,9103,1 +43057,1808262,166,8304,1 +43058,1808280,198,9911,1 +43059,1808317,144,7229,1 +43060,1808376,168,8426,1 +43061,1808640,59,2997,1 +43062,1808652,62,3119,1 +43063,1808655,28,1419,1 +43064,1808658,190,9528,1 +43065,1808658,88,4425,1 +43066,1808664,17,858,1 +43067,1808670,108,5418,1 +43068,1808676,113,5660,1 +43069,1808678,178,8901,1 +43070,1808701,68,3401,1 +43071,1808718,32,1642,1 +43072,1808731,185,9266,1 +43073,1808742,58,2930,1 +43074,1808748,144,7216,1 +43075,1808784,33,1699,1 +43076,1809120,103,5199,1 +43077,1809120,160,8028,1 +43078,1809120,62,3127,1 +43079,1809120,66,3320,1 +43080,1809121,99,4959,1 +43081,1809122,87,4373,1 +43082,1809123,57,2891,1 +43083,1809125,61,3051,1 +43084,1809126,19,991,1 +43085,1809127,94,4717,1 +43086,1809129,0,20,1 +43087,1809129,83,4170,1 +43088,1809132,146,7344,1 +43089,1809132,199,9963,1 +43090,1809132,18,937,1 +43091,1809132,172,8627,1 +43092,1809132,119,5989,1 +43093,1809132,198,9914,1 +43094,1809132,139,6995,1 +43095,1809132,56,2807,1 +43096,1809135,139,6972,1 +43097,1809135,17,859,1 +43098,1809144,160,8022,1 +43099,1809144,83,4164,1 +43100,1809144,188,9409,1 +43101,1809144,167,8364,1 +43102,1809146,175,8765,1 +43103,1809147,109,5458,1 +43104,1809150,37,1875,1 +43105,1809150,168,8437,1 +43106,1809156,27,1400,1 +43107,1809165,100,5004,1 +43108,1809168,1,58,1 +43109,1809168,58,2916,1 +43110,1809168,10,513,1 +43111,1809178,90,4526,1 +43112,1809180,29,1499,1 +43113,1809180,155,7754,1 +43114,1809180,142,7149,1 +43115,1809180,100,5016,1 +43116,1809180,142,7107,1 +43117,1809181,80,4030,1 +43118,1809181,190,9515,1 +43119,1809181,144,7211,1 +43120,1809183,137,6890,1 +43121,1809190,142,7142,1 +43122,1809192,114,5729,1 +43123,1809192,90,4522,1 +43124,1809192,8,408,1 +43125,1809193,77,3857,1 +43126,1809203,195,9770,1 +43127,1809216,97,4874,1 +43128,1809216,91,4598,1 +43129,1809216,63,3200,1 +43130,1809216,161,8052,1 +43131,1809222,64,3231,1 +43132,1809228,158,7936,1 +43133,1809240,191,9560,1 +43134,1809253,143,7153,1 +43135,1809253,20,1012,1 +43136,1809266,110,5533,1 +43137,1809273,181,9076,1 +43138,1809600,52,2609,1 +43139,1809601,79,3989,1 +43140,1809612,77,3892,1 +43141,1809624,4,246,1 +43142,1809624,39,1963,1 +43143,1809628,58,2901,1 +43144,1809633,115,5758,1 +43145,1809636,100,5037,1 +43146,1809648,175,8772,1 +43147,1809650,110,5546,1 +43148,1809684,6,348,1 +43149,1809684,17,862,1 +43150,1809804,44,2224,1 +43151,1810080,62,3125,1 +43152,1810080,80,4025,1 +43153,1810095,174,8745,1 +43154,1810602,189,9482,1 +43155,1810603,115,5782,1 +43156,1811041,163,8167,1 +43157,1811052,138,6910,1 +43158,1811064,33,1673,1 +43159,1811077,43,2189,1 +43160,1811118,86,4338,1 +43161,1811158,12,639,1 +43162,1811520,142,7150,1 +43163,1811530,159,7992,1 +43164,1811532,21,1069,1 +43165,1811532,71,3586,1 +43166,1811532,42,2127,1 +43167,1811535,172,8621,1 +43168,1811536,24,1207,1 +43169,1811538,36,1809,1 +43170,1811544,60,3040,1 +43171,1811569,176,8824,1 +43172,1811571,150,7502,1 +43173,1811580,30,1516,1 +43174,1811590,91,4554,1 +43175,1811628,43,2176,1 +43176,1811679,164,8233,1 +43177,1812012,129,6468,1 +43178,1812012,37,1854,1 +43179,1812016,28,1437,1 +43180,1812018,23,1171,1 +43181,1812024,51,2582,1 +43182,1812073,32,1644,1 +43183,1812096,111,5585,1 +43184,1812097,82,4103,1 +43185,1812516,51,2567,1 +43186,1813440,124,6231,1 +43187,1813440,82,4148,1 +43188,1813440,46,2329,1 +43189,1813440,176,8841,1 +43190,1813440,165,8268,1 +43191,1813440,107,5358,1 +43192,1813440,112,5614,1 +43193,1813440,9,460,1 +43194,1813441,7,371,1 +43195,1813442,139,6980,1 +43196,1813446,150,7517,1 +43197,1813446,128,6404,1 +43198,1813446,120,6034,1 +43199,1813449,70,3524,1 +43200,1813449,54,2748,1 +43201,1813450,97,4857,1 +43202,1813452,64,3235,1 +43203,1813452,183,9182,1 +43204,1813452,152,7629,1 +43205,1813452,162,8125,1 +43206,1813452,165,8283,1 +43207,1813452,54,2709,1 +43208,1813452,174,8731,1 +43209,1813452,41,2056,1 +43210,1813453,79,3976,1 +43211,1813453,75,3775,1 +43212,1813453,152,7619,1 +43213,1813454,26,1312,1 +43214,1813455,135,6764,1 +43215,1813455,9,486,1 +43216,1813458,59,2979,1 +43217,1813462,178,8941,1 +43218,1813464,8,435,1 +43219,1813464,124,6250,1 +43220,1813464,17,885,1 +43221,1813464,133,6663,1 +43222,1813464,170,8505,1 +43223,1813465,178,8941,1 +43224,1813467,170,8522,1 +43225,1813467,71,3594,1 +43226,1813468,21,1060,1 +43227,1813470,29,1483,1 +43228,1813473,50,2542,1 +43229,1813474,118,5924,1 +43230,1813476,94,4725,1 +43231,1813476,70,3535,1 +43232,1813476,85,4277,1 +43233,1813477,191,9584,1 +43234,1813478,25,1259,1 +43235,1813485,118,5936,1 +43236,1813485,39,1961,1 +43237,1813488,91,4580,1 +43238,1813500,147,7371,1 +43239,1813501,35,1755,1 +43240,1813502,90,4506,1 +43241,1813509,50,2505,1 +43242,1813513,8,402,1 +43243,1813513,157,7863,1 +43244,1813514,152,7616,1 +43245,1813515,61,3070,1 +43246,1813524,59,2998,1 +43247,1813524,118,5949,1 +43248,1813524,36,1818,1 +43249,1813533,177,8881,1 +43250,1813548,186,9339,1 +43251,1813551,53,2652,1 +43252,1813571,84,4226,1 +43253,1813572,181,9059,1 +43254,1813574,103,5191,1 +43255,1813579,171,8571,1 +43256,1813581,72,3650,1 +43257,1813584,46,2334,1 +43258,1813586,22,1119,1 +43259,1813596,163,8161,1 +43260,1813651,128,6408,1 +43261,1813920,76,3815,1 +43262,1813920,161,8058,1 +43263,1813920,56,2842,1 +43264,1813932,185,9263,1 +43265,1813944,51,2576,1 +43266,1813945,29,1484,1 +43267,1813958,158,7930,1 +43268,1814004,132,6632,1 +43269,1814028,18,926,1 +43270,1814409,132,6603,1 +43271,1814424,180,9023,1 +43272,1815360,2,140,1 +43273,1815360,121,6086,1 +43274,1815360,72,3631,1 +43275,1815360,18,944,1 +43276,1815360,32,1643,1 +43277,1815360,112,5607,1 +43278,1815362,185,9257,1 +43279,1815362,195,9761,1 +43280,1815364,138,6903,1 +43281,1815366,183,9165,1 +43282,1815369,93,4689,1 +43283,1815369,103,5160,1 +43284,1815369,114,5730,1 +43285,1815369,104,5248,1 +43286,1815370,90,4502,1 +43287,1815372,75,3770,1 +43288,1815372,184,9224,1 +43289,1815372,70,3546,1 +43290,1815373,120,6044,1 +43291,1815374,34,1704,1 +43292,1815376,143,7161,1 +43293,1815378,197,9897,1 +43294,1815381,90,4543,1 +43295,1815384,27,1365,1 +43296,1815384,29,1464,1 +43297,1815384,70,3541,1 +43298,1815384,82,4130,1 +43299,1815384,3,170,1 +43300,1815385,106,5315,1 +43301,1815385,122,6139,1 +43302,1815386,67,3375,1 +43303,1815387,177,8861,1 +43304,1815387,170,8514,1 +43305,1815387,48,2415,1 +43306,1815389,150,7542,1 +43307,1815396,26,1331,1 +43308,1815396,110,5534,1 +43309,1815397,30,1513,1 +43310,1815402,155,7791,1 +43311,1815403,90,4549,1 +43312,1815420,93,4670,1 +43313,1815422,104,5233,1 +43314,1815422,97,4897,1 +43315,1815430,19,1000,1 +43316,1815432,124,6246,1 +43317,1815433,101,5064,1 +43318,1815438,80,4016,1 +43319,1815456,69,3500,1 +43320,1815461,175,8759,1 +43321,1815469,41,2055,1 +43322,1815480,159,7996,1 +43323,1815480,155,7764,1 +43324,1815482,3,181,1 +43325,1815494,14,730,1 +43326,1815497,5,276,1 +43327,1815517,128,6419,1 +43328,1815541,107,5372,1 +43329,1815552,44,2209,1 +43330,1815842,24,1225,1 +43331,1815852,148,7432,1 +43332,1815852,108,5425,1 +43333,1815865,27,1352,1 +43334,1815865,196,9830,1 +43335,1815876,129,6493,1 +43336,1815882,174,8711,1 +43337,1815888,54,2732,1 +43338,1815921,67,3352,1 +43339,1815936,54,2738,1 +43340,1815945,130,6527,1 +43341,1815951,133,6697,1 +43342,1815996,67,3362,1 +43343,1816042,52,2625,1 +43344,1816332,136,6827,1 +43345,1816368,101,5059,1 +43346,1816397,159,7987,1 +43347,1816800,68,3433,1 +43348,1816806,128,6444,1 +43349,1816818,51,2559,1 +43350,1816827,78,3934,1 +43351,1816848,189,9481,1 +43352,1816861,167,8387,1 +43353,1817349,40,2037,1 +43354,1817760,84,4207,1 +43355,1817760,47,2373,1 +43356,1817779,43,2178,1 +43357,1817787,145,7252,1 +43358,1817788,91,4593,1 +43359,1817790,137,6895,1 +43360,1817799,130,6541,1 +43361,1817808,63,3196,1 +43362,1817820,100,5041,1 +43363,1817844,138,6950,1 +43364,1817847,107,5366,1 +43365,1817856,188,9432,1 +43366,1817869,119,6000,1 +43367,1818252,182,9123,1 +43368,1818253,20,1009,1 +43369,1818254,191,9580,1 +43370,1818265,39,1996,1 +43371,1818266,9,463,1 +43372,1818278,135,6789,1 +43373,1818300,60,3025,1 +43374,1818342,180,9031,1 +43375,1818342,34,1727,1 +43376,1818384,68,3445,1 +43377,1818402,199,9989,1 +43378,1818720,180,9036,1 +43379,1818723,191,9582,1 +43380,1818768,93,4696,1 +43381,1818783,12,629,1 +43382,1818792,48,2426,1 +43383,1818833,157,7855,1 +43384,1819239,157,7862,1 +43385,1819248,48,2411,1 +43386,1819287,191,9596,1 +43387,1820161,172,8616,1 +43388,1820162,149,7451,1 +43389,1820163,37,1880,1 +43390,1820166,69,3483,1 +43391,1820168,54,2726,1 +43392,1820172,195,9786,1 +43393,1820172,5,284,1 +43394,1820173,192,9607,1 +43395,1820184,77,3886,1 +43396,1820184,169,8472,1 +43397,1820186,175,8751,1 +43398,1820196,103,5156,1 +43399,1820196,190,9517,1 +43400,1820197,118,5903,1 +43401,1820199,45,2287,1 +43402,1820202,15,795,1 +43403,1820202,122,6110,1 +43404,1820203,178,8919,1 +43405,1820208,83,4198,1 +43406,1820209,140,7040,1 +43407,1820209,135,6757,1 +43408,1820220,81,4051,1 +43409,1820220,118,5950,1 +43410,1820232,199,9955,1 +43411,1820257,163,8162,1 +43412,1820268,92,4647,1 +43413,1820268,81,4099,1 +43414,1820304,107,5375,1 +43415,1820328,153,7651,1 +43416,1820340,119,5960,1 +43417,1820712,90,4508,1 +43418,1821120,84,4230,1 +43419,1821120,83,4152,1 +43420,1821121,112,5626,1 +43421,1821121,172,8627,1 +43422,1821132,184,9205,1 +43423,1821132,107,5352,1 +43424,1821133,128,6415,1 +43425,1821133,60,3029,1 +43426,1821144,38,1928,1 +43427,1821150,96,4815,1 +43428,1821157,101,5082,1 +43429,1821172,97,4895,1 +43430,1821180,153,7685,1 +43431,1821192,114,5726,1 +43432,1821289,190,9525,1 +43433,1821314,119,5952,1 +43434,1821351,44,2215,1 +43435,1821388,62,3104,1 +43436,1821600,176,8807,1 +43437,1821603,149,7453,1 +43438,1821612,77,3898,1 +43439,1821615,22,1146,1 +43440,1821622,16,808,1 +43441,1821630,123,6156,1 +43442,1821660,126,6306,1 +43443,1821713,155,7761,1 +43444,1821723,179,8960,1 +43445,1822093,120,6026,1 +43446,1822126,6,346,1 +43447,1822127,54,2750,1 +43448,1822560,182,9109,1 +43449,1822561,132,6601,1 +43450,1822561,140,7026,1 +43451,1822584,175,8767,1 +43452,1822596,58,2929,1 +43453,1822597,145,7268,1 +43454,1822597,87,4394,1 +43455,1822609,69,3478,1 +43456,1822620,197,9868,1 +43457,1822620,99,4976,1 +43458,1822656,60,3017,1 +43459,1822657,167,8363,1 +43460,1822666,39,1987,1 +43461,1822668,20,1002,1 +43462,1822681,198,9912,1 +43463,1822789,0,2,1 +43464,1823055,176,8820,1 +43465,1823062,37,1872,1 +43466,1823074,57,2883,1 +43467,1823135,171,8588,1 +43468,1823533,189,9454,1 +43469,1823643,1,76,1 +43470,1824007,167,8399,1 +43471,1824014,71,3586,1 +43472,1824020,161,8088,1 +43473,1824024,4,216,1 +43474,1824028,21,1080,1 +43475,1824033,137,6896,1 +43476,1824067,162,8125,1 +43477,1824072,121,6055,1 +43478,1824085,90,4528,1 +43479,1824085,195,9796,1 +43480,1824144,95,4775,1 +43481,1824144,160,8040,1 +43482,1824156,100,5003,1 +43483,1824480,119,5989,1 +43484,1824480,107,5370,1 +43485,1824480,30,1521,1 +43486,1824480,189,9463,1 +43487,1824480,33,1673,1 +43488,1824481,110,5549,1 +43489,1824484,0,21,1 +43490,1824492,84,4202,1 +43491,1824492,35,1761,1 +43492,1824492,57,2871,1 +43493,1824492,105,5253,1 +43494,1824493,93,4677,1 +43495,1824506,31,1587,1 +43496,1824512,158,7914,1 +43497,1824515,52,2650,1 +43498,1824516,76,3813,1 +43499,1824516,198,9911,1 +43500,1824516,69,3488,1 +43501,1824516,21,1083,1 +43502,1824517,114,5711,1 +43503,1824517,130,6533,1 +43504,1824518,106,5314,1 +43505,1824519,77,3860,1 +43506,1824520,198,9923,1 +43507,1824522,158,7902,1 +43508,1824523,178,8939,1 +43509,1824528,66,3327,1 +43510,1824529,187,9365,1 +43511,1824543,37,1893,1 +43512,1824549,104,5227,1 +43513,1824552,39,1996,1 +43514,1824561,113,5689,1 +43515,1824564,173,8685,1 +43516,1824589,153,7688,1 +43517,1824610,65,3290,1 +43518,1824624,143,7166,1 +43519,1824636,195,9790,1 +43520,1824672,168,8419,1 +43521,1824966,130,6550,1 +43522,1824974,137,6888,1 +43523,1824984,157,7874,1 +43524,1824987,98,4901,1 +43525,1824995,161,8062,1 +43526,1824996,60,3020,1 +43527,1825000,181,9090,1 +43528,1825010,194,9743,1 +43529,1825011,137,6859,1 +43530,1825012,62,3121,1 +43531,1825017,38,1916,1 +43532,1825022,94,4702,1 +43533,1825032,98,4938,1 +43534,1825032,169,8480,1 +43535,1825032,128,6442,1 +43536,1825056,166,8313,1 +43537,1825086,25,1258,1 +43538,1825153,135,6759,1 +43539,1825160,190,9533,1 +43540,1825443,148,7447,1 +43541,1825453,5,284,1 +43542,1825470,81,4057,1 +43543,1825503,166,8309,1 +43544,1825920,190,9534,1 +43545,1825921,100,5022,1 +43546,1825922,144,7212,1 +43547,1825926,122,6138,1 +43548,1825930,23,1153,1 +43549,1825932,85,4276,1 +43550,1825932,20,1024,1 +43551,1825933,35,1764,1 +43552,1825934,193,9694,1 +43553,1825936,33,1696,1 +43554,1825941,113,5690,1 +43555,1825941,21,1074,1 +43556,1825944,113,5680,1 +43557,1825945,114,5738,1 +43558,1825956,18,916,1 +43559,1825960,108,5420,1 +43560,1825968,175,8799,1 +43561,1825984,161,8094,1 +43562,1826025,159,7960,1 +43563,1826040,116,5811,1 +43564,1826041,166,8322,1 +43565,1826042,129,6496,1 +43566,1826043,173,8659,1 +43567,1826076,91,4596,1 +43568,1826077,174,8750,1 +43569,1826082,167,8383,1 +43570,1826085,147,7387,1 +43571,1826088,131,6552,1 +43572,1826100,119,5958,1 +43573,1826400,128,6444,1 +43574,1826412,147,7357,1 +43575,1826423,159,7979,1 +43576,1826424,65,3258,1 +43577,1826430,98,4945,1 +43578,1826449,110,5533,1 +43579,1826451,106,5334,1 +43580,1826460,44,2227,1 +43581,1826476,81,4066,1 +43582,1826483,1,69,1 +43583,1826495,182,9118,1 +43584,1826532,167,8386,1 +43585,1826580,186,9310,1 +43586,1826881,94,4733,1 +43587,1826889,148,7424,1 +43588,1826893,147,7386,1 +43589,1826895,154,7701,1 +43590,1826900,136,6817,1 +43591,1826904,88,4403,1 +43592,1827016,100,5040,1 +43593,1827036,167,8355,1 +43594,1827128,26,1309,1 +43595,1827360,79,3954,1 +43596,1827360,161,8085,1 +43597,1827360,149,7473,1 +43598,1827360,152,7614,1 +43599,1827361,23,1199,1 +43600,1827361,39,2000,1 +43601,1827376,125,6298,1 +43602,1827384,142,7115,1 +43603,1827384,64,3240,1 +43604,1827385,61,3088,1 +43605,1827396,158,7932,1 +43606,1827396,178,8937,1 +43607,1827397,154,7736,1 +43608,1827420,42,2109,1 +43609,1827420,66,3348,1 +43610,1827445,45,2299,1 +43611,1827465,145,7257,1 +43612,1827516,2,108,1 +43613,1827540,45,2279,1 +43614,1827564,130,6532,1 +43615,1827840,1,77,1 +43616,1827849,167,8352,1 +43617,1827853,150,7513,1 +43618,1827872,81,4087,1 +43619,1827876,26,1348,1 +43620,1827876,129,6457,1 +43621,1827898,186,9330,1 +43622,1827924,58,2915,1 +43623,1827936,127,6384,1 +43624,1827961,44,2207,1 +43625,1828335,128,6402,1 +43626,1828379,172,8643,1 +43627,1828381,176,8850,1 +43628,1828430,89,4473,1 +43629,1828800,116,5804,1 +43630,1828800,63,3194,1 +43631,1828800,130,6505,1 +43632,1828801,88,4415,1 +43633,1828802,179,8989,1 +43634,1828812,148,7446,1 +43635,1828812,179,8991,1 +43636,1828813,178,8934,1 +43637,1828818,134,6731,1 +43638,1828821,66,3311,1 +43639,1828824,80,4020,1 +43640,1828836,156,7823,1 +43641,1828839,97,4870,1 +43642,1828848,58,2922,1 +43643,1828850,96,4817,1 +43644,1828851,0,25,1 +43645,1828860,57,2895,1 +43646,1828861,4,227,1 +43647,1828862,181,9077,1 +43648,1828872,67,3367,1 +43649,1828873,50,2508,1 +43650,1828874,93,4686,1 +43651,1828885,119,5989,1 +43652,1828922,163,8156,1 +43653,1828947,114,5705,1 +43654,1828956,139,6970,1 +43655,1829292,40,2037,1 +43656,1829313,37,1895,1 +43657,1829322,82,4116,1 +43658,1829409,114,5735,1 +43659,1829449,152,7609,1 +43660,1829761,28,1428,1 +43661,1829786,141,7057,1 +43662,1829797,143,7160,1 +43663,1829808,21,1100,1 +43664,1829832,196,9827,1 +43665,1829848,188,9403,1 +43666,1829871,146,7345,1 +43667,1829899,79,3967,1 +43668,1829964,124,6214,1 +43669,1830252,29,1472,1 +43670,1830252,47,2400,1 +43671,1830261,85,4272,1 +43672,1830265,166,8308,1 +43673,1830276,196,9825,1 +43674,1830288,136,6827,1 +43675,1830310,102,5136,1 +43676,1830348,48,2449,1 +43677,1830770,142,7142,1 +43678,1832160,88,4409,1 +43679,1832160,195,9779,1 +43680,1832163,132,6619,1 +43681,1832165,160,8017,1 +43682,1832166,16,844,1 +43683,1832167,120,6025,1 +43684,1832168,10,530,1 +43685,1832173,47,2389,1 +43686,1832175,66,3344,1 +43687,1832184,121,6092,1 +43688,1832184,169,8498,1 +43689,1832184,97,4889,1 +43690,1832185,199,9960,1 +43691,1832187,191,9559,1 +43692,1832190,146,7308,1 +43693,1832196,46,2343,1 +43694,1832196,68,3409,1 +43695,1832199,122,6133,1 +43696,1832208,105,5263,1 +43697,1832212,27,1361,1 +43698,1832220,139,6979,1 +43699,1832226,74,3739,1 +43700,1832226,1,97,1 +43701,1832232,176,8803,1 +43702,1832234,103,5169,1 +43703,1832236,130,6505,1 +43704,1832239,159,7991,1 +43705,1832245,16,834,1 +43706,1832247,107,5374,1 +43707,1832254,37,1860,1 +43708,1832257,176,8840,1 +43709,1832268,78,3942,1 +43710,1832268,106,5341,1 +43711,1832280,154,7735,1 +43712,1832282,154,7719,1 +43713,1832285,15,777,1 +43714,1832318,166,8305,1 +43715,1832340,198,9922,1 +43716,1832346,78,3949,1 +43717,1832652,83,4191,1 +43718,1832652,57,2861,1 +43719,1832676,60,3040,1 +43720,1832740,8,410,1 +43721,1832784,179,8955,1 +43722,1833144,184,9201,1 +43723,1833601,99,4971,1 +43724,1833654,17,855,1 +43725,1833783,174,8735,1 +43726,1834080,169,8493,1 +43727,1834080,151,7579,1 +43728,1834086,95,4761,1 +43729,1834092,145,7290,1 +43730,1834122,0,12,1 +43731,1834128,197,9879,1 +43732,1834560,126,6327,1 +43733,1834561,171,8574,1 +43734,1834569,199,9990,1 +43735,1834572,10,521,1 +43736,1834573,81,4057,1 +43737,1834597,9,491,1 +43738,1834606,42,2142,1 +43739,1834614,107,5361,1 +43740,1835520,138,6911,1 +43741,1835521,126,6306,1 +43742,1835524,106,5315,1 +43743,1835532,140,7011,1 +43744,1835533,159,7964,1 +43745,1835538,66,3338,1 +43746,1835544,148,7415,1 +43747,1835545,49,2452,1 +43748,1835556,198,9947,1 +43749,1835556,108,5412,1 +43750,1835556,156,7847,1 +43751,1835560,194,9711,1 +43752,1835565,132,6619,1 +43753,1835568,138,6920,1 +43754,1835571,87,4400,1 +43755,1835577,141,7066,1 +43756,1835581,99,4977,1 +43757,1835598,197,9897,1 +43758,1835601,117,5859,1 +43759,1835604,30,1501,1 +43760,1835605,90,4515,1 +43761,1835610,168,8449,1 +43762,1835613,76,3816,1 +43763,1835812,100,5010,1 +43764,1836006,154,7749,1 +43765,1836015,141,7071,1 +43766,1836027,101,5070,1 +43767,1836036,55,2772,1 +43768,1836048,71,3597,1 +43769,1836048,78,3943,1 +43770,1836073,33,1698,1 +43771,1836105,81,4064,1 +43772,1836492,174,8731,1 +43773,1836504,113,5688,1 +43774,1836552,125,6269,1 +43775,1836552,60,3022,1 +43776,1836588,185,9270,1 +43777,1836654,17,889,1 +43778,1836960,51,2575,1 +43779,1836962,123,6193,1 +43780,1836962,125,6278,1 +43781,1836964,8,434,1 +43782,1836969,134,6724,1 +43783,1836972,13,664,1 +43784,1836972,41,2097,1 +43785,1836972,162,8123,1 +43786,1836972,108,5448,1 +43787,1836972,133,6651,1 +43788,1836972,1,84,1 +43789,1836984,118,5919,1 +43790,1836984,189,9496,1 +43791,1836985,157,7873,1 +43792,1836985,5,289,1 +43793,1836990,102,5133,1 +43794,1836996,115,5786,1 +43795,1836997,174,8719,1 +43796,1836998,92,4617,1 +43797,1837000,11,554,1 +43798,1837008,59,2974,1 +43799,1837009,147,7366,1 +43800,1837021,87,4386,1 +43801,1837032,143,7158,1 +43802,1837042,38,1930,1 +43803,1837044,52,2617,1 +43804,1837057,11,585,1 +43805,1837068,94,4735,1 +43806,1837081,110,5521,1 +43807,1837129,147,7385,1 +43808,1837141,105,5289,1 +43809,1837164,54,2728,1 +43810,1837440,7,380,1 +43811,1837440,177,8886,1 +43812,1837440,17,900,1 +43813,1837441,17,896,1 +43814,1837446,16,831,1 +43815,1837452,169,8482,1 +43816,1837453,54,2719,1 +43817,1837453,36,1838,1 +43818,1837454,30,1541,1 +43819,1837456,111,5565,1 +43820,1837464,62,3136,1 +43821,1837465,153,7664,1 +43822,1837466,171,8574,1 +43823,1837466,18,915,1 +43824,1837471,119,5973,1 +43825,1837476,178,8930,1 +43826,1837477,170,8533,1 +43827,1837479,52,2628,1 +43828,1837486,125,6290,1 +43829,1837488,173,8687,1 +43830,1837500,128,6447,1 +43831,1837513,130,6529,1 +43832,1837514,114,5735,1 +43833,1837514,192,9620,1 +43834,1837525,165,8266,1 +43835,1837549,37,1893,1 +43836,1837555,17,891,1 +43837,1837609,149,7472,1 +43838,1837632,62,3124,1 +43839,1839370,28,1442,1 +43840,1839840,1,85,1 +43841,1839843,153,7674,1 +43842,1839884,193,9659,1 +43843,1840332,146,7329,1 +43844,1840342,103,5174,1 +43845,1840356,182,9117,1 +43846,1840356,115,5775,1 +43847,1840357,93,4694,1 +43848,1840380,132,6616,1 +43849,1840392,53,2666,1 +43850,1840572,8,418,1 +43851,1840803,81,4076,1 +43852,1840804,145,7257,1 +43853,1840804,127,6369,1 +43854,1840872,199,9984,1 +43855,1840873,67,3355,1 +43856,1841280,114,5739,1 +43857,1841280,12,629,1 +43858,1841280,148,7446,1 +43859,1841281,146,7340,1 +43860,1841313,175,8758,1 +43861,1841314,97,4900,1 +43862,1841316,197,9871,1 +43863,1841316,114,5733,1 +43864,1841316,48,2425,1 +43865,1841319,48,2434,1 +43866,1841358,60,3015,1 +43867,1841377,197,9864,1 +43868,1841388,20,1042,1 +43869,1841434,164,8224,1 +43870,1841445,141,7063,1 +43871,1841765,74,3712,1 +43872,1841766,46,2306,1 +43873,1841784,0,50,1 +43874,1841796,196,9817,1 +43875,1841802,186,9314,1 +43876,1841810,45,2280,1 +43877,1841815,177,8887,1 +43878,1841838,97,4882,1 +43879,1841846,128,6440,1 +43880,1841846,102,5140,1 +43881,1841856,78,3915,1 +43882,1841857,179,8964,1 +43883,1841868,17,889,1 +43884,1841908,17,880,1 +43885,1841930,168,8418,1 +43886,1841956,170,8545,1 +43887,1842255,90,4538,1 +43888,1842265,0,7,1 +43889,1842304,159,7966,1 +43890,1842312,93,4658,1 +43891,1842720,131,6551,1 +43892,1842721,72,3610,1 +43893,1842722,138,6907,1 +43894,1842722,163,8197,1 +43895,1842724,197,9881,1 +43896,1842726,198,9946,1 +43897,1842729,151,7578,1 +43898,1842732,93,4672,1 +43899,1842732,17,893,1 +43900,1842732,22,1135,1 +43901,1842732,189,9476,1 +43902,1842732,70,3521,1 +43903,1842735,114,5749,1 +43904,1842738,24,1247,1 +43905,1842742,170,8501,1 +43906,1842742,34,1743,1 +43907,1842744,144,7221,1 +43908,1842745,181,9073,1 +43909,1842745,45,2275,1 +43910,1842746,138,6936,1 +43911,1842753,52,2627,1 +43912,1842753,42,2138,1 +43913,1842756,47,2380,1 +43914,1842756,75,3765,1 +43915,1842759,160,8021,1 +43916,1842760,158,7918,1 +43917,1842762,183,9177,1 +43918,1842777,2,148,1 +43919,1842780,41,2092,1 +43920,1842798,39,1979,1 +43921,1842798,196,9827,1 +43922,1842804,46,2311,1 +43923,1842804,184,9217,1 +43924,1842817,119,5974,1 +43925,1842819,27,1384,1 +43926,1842826,75,3758,1 +43927,1842834,115,5769,1 +43928,1842837,183,9195,1 +43929,1842840,156,7835,1 +43930,1842840,190,9543,1 +43931,1842867,132,6605,1 +43932,1843200,115,5755,1 +43933,1843200,76,3848,1 +43934,1843202,17,886,1 +43935,1843203,178,8941,1 +43936,1843203,77,3893,1 +43937,1843212,113,5675,1 +43938,1843212,163,8186,1 +43939,1843213,75,3779,1 +43940,1843213,46,2327,1 +43941,1843222,123,6200,1 +43942,1843227,167,8360,1 +43943,1843242,137,6890,1 +43944,1843248,71,3587,1 +43945,1843250,69,3487,1 +43946,1843260,94,4706,1 +43947,1843260,86,4344,1 +43948,1843296,185,9286,1 +43949,1843329,61,3083,1 +43950,1843358,43,2171,1 +43951,1843369,20,1036,1 +43952,1843461,186,9318,1 +43953,1843500,71,3562,1 +43954,1843680,131,6579,1 +43955,1843693,121,6056,1 +43956,1843705,73,3654,1 +43957,1843705,43,2167,1 +43958,1843716,33,1691,1 +43959,1843728,79,3964,1 +43960,1843729,167,8386,1 +43961,1843734,145,7272,1 +43962,1843758,75,3755,1 +43963,1843783,12,645,1 +43964,1843789,129,6495,1 +43965,1843849,171,8591,1 +43966,1844234,12,601,1 +43967,1844677,19,964,1 +43968,1845129,92,4602,1 +43969,1845145,157,7873,1 +43970,1845154,111,5599,1 +43971,1845180,145,7281,1 +43972,1845192,35,1752,1 +43973,1845600,40,2028,1 +43974,1845612,65,3271,1 +43975,1845612,41,2078,1 +43976,1845624,113,5697,1 +43977,1845624,60,3037,1 +43978,1845648,167,8359,1 +43979,1845648,106,5348,1 +43980,1845648,97,4852,1 +43981,1845648,104,5203,1 +43982,1845660,195,9797,1 +43983,1845660,85,4299,1 +43984,1845672,24,1228,1 +43985,1845681,4,217,1 +43986,1845684,92,4615,1 +43987,1845723,162,8133,1 +43988,1845732,151,7598,1 +43989,1845746,192,9614,1 +43990,1846082,142,7105,1 +43991,1846165,109,5499,1 +43992,1846166,42,2109,1 +43993,1846177,46,2348,1 +43994,1846560,85,4283,1 +43995,1846560,35,1764,1 +43996,1846574,132,6640,1 +43997,1846584,164,8227,1 +43998,1846589,3,190,1 +43999,1846596,95,4791,1 +44000,1846599,136,6816,1 +44001,1846608,98,4929,1 +44002,1846608,115,5788,1 +44003,1846614,0,10,1 +44004,1846623,187,9369,1 +44005,1846645,199,9951,1 +44006,1846678,199,9989,1 +44007,1846704,49,2495,1 +44008,1847040,49,2456,1 +44009,1847040,186,9308,1 +44010,1847040,23,1197,1 +44011,1847052,160,8049,1 +44012,1847064,6,324,1 +44013,1847065,133,6684,1 +44014,1847068,3,196,1 +44015,1847124,67,3364,1 +44016,1847136,111,5570,1 +44017,1847148,36,1812,1 +44018,1847179,103,5178,1 +44019,1847215,157,7856,1 +44020,1847568,150,7545,1 +44021,1847584,86,4308,1 +44022,1848000,133,6690,1 +44023,1848000,98,4937,1 +44024,1848000,124,6208,1 +44025,1848000,124,6213,1 +44026,1848000,151,7591,1 +44027,1848001,92,4602,1 +44028,1848012,131,6571,1 +44029,1848012,185,9282,1 +44030,1848013,136,6837,1 +44031,1848021,34,1735,1 +44032,1848022,122,6124,1 +44033,1848024,102,5147,1 +44034,1848024,81,4097,1 +44035,1848036,30,1548,1 +44036,1848036,161,8085,1 +44037,1848036,187,9362,1 +44038,1848036,108,5425,1 +44039,1848037,57,2875,1 +44040,1848038,64,3241,1 +44041,1848039,186,9328,1 +44042,1848043,122,6123,1 +44043,1848048,0,28,1 +44044,1848051,161,8076,1 +44045,1848060,32,1613,1 +44046,1848061,3,165,1 +44047,1848062,41,2087,1 +44048,1848072,82,4103,1 +44049,1848072,64,3232,1 +44050,1848081,20,1032,1 +44051,1848084,199,9960,1 +44052,1848086,35,1772,1 +44053,1848097,199,9976,1 +44054,1848108,185,9258,1 +44055,1848115,177,8869,1 +44056,1848146,159,7965,1 +44057,1848175,133,6696,1 +44058,1848226,85,4278,1 +44059,1848504,70,3527,1 +44060,1848504,110,5503,1 +44061,1848535,41,2053,1 +44062,1848552,188,9437,1 +44063,1848576,69,3485,1 +44064,1848592,181,9063,1 +44065,1848961,180,9031,1 +44066,1848969,5,281,1 +44067,1848996,76,3831,1 +44068,1849968,191,9551,1 +44069,1849980,175,8776,1 +44070,1850075,199,9983,1 +44071,1850400,182,9102,1 +44072,1850400,93,4653,1 +44073,1850400,92,4627,1 +44074,1850400,68,3426,1 +44075,1850401,179,8981,1 +44076,1850401,16,848,1 +44077,1850401,98,4944,1 +44078,1850402,5,296,1 +44079,1850403,67,3368,1 +44080,1850404,78,3916,1 +44081,1850404,135,6761,1 +44082,1850406,147,7378,1 +44083,1850406,171,8571,1 +44084,1850409,78,3906,1 +44085,1850410,178,8930,1 +44086,1850412,85,4265,1 +44087,1850412,123,6187,1 +44088,1850412,26,1349,1 +44089,1850412,184,9216,1 +44090,1850412,146,7325,1 +44091,1850412,122,6138,1 +44092,1850412,188,9450,1 +44093,1850412,24,1243,1 +44094,1850412,68,3424,1 +44095,1850413,91,4584,1 +44096,1850413,71,3593,1 +44097,1850415,145,7278,1 +44098,1850418,65,3299,1 +44099,1850419,149,7452,1 +44100,1850424,101,5074,1 +44101,1850424,90,4501,1 +44102,1850424,48,2403,1 +44103,1850424,112,5646,1 +44104,1850424,35,1756,1 +44105,1850424,150,7522,1 +44106,1850425,12,604,1 +44107,1850425,23,1154,1 +44108,1850425,185,9267,1 +44109,1850426,101,5089,1 +44110,1850429,106,5337,1 +44111,1850429,64,3214,1 +44112,1850430,54,2715,1 +44113,1850436,114,5741,1 +44114,1850436,127,6397,1 +44115,1850436,118,5917,1 +44116,1850437,184,9210,1 +44117,1850437,13,685,1 +44118,1850438,3,197,1 +44119,1850439,94,4705,1 +44120,1850440,119,5998,1 +44121,1850440,162,8122,1 +44122,1850448,198,9912,1 +44123,1850448,110,5539,1 +44124,1850448,165,8272,1 +44125,1850448,155,7753,1 +44126,1850448,193,9659,1 +44127,1850448,98,4912,1 +44128,1850449,165,8291,1 +44129,1850449,61,3056,1 +44130,1850450,64,3241,1 +44131,1850455,141,7081,1 +44132,1850458,3,176,1 +44133,1850460,51,2594,1 +44134,1850467,84,4215,1 +44135,1850472,51,2570,1 +44136,1850472,148,7416,1 +44137,1850484,61,3051,1 +44138,1850485,43,2175,1 +44139,1850496,161,8063,1 +44140,1850496,52,2646,1 +44141,1850498,22,1123,1 +44142,1850511,7,396,1 +44143,1850517,21,1071,1 +44144,1850519,179,8999,1 +44145,1850533,19,972,1 +44146,1850544,20,1026,1 +44147,1850556,11,562,1 +44148,1850559,134,6734,1 +44149,1850568,81,4063,1 +44150,1850603,6,347,1 +44151,1850617,159,7989,1 +44152,1850688,85,4290,1 +44153,1850704,134,6717,1 +44154,1850712,137,6868,1 +44155,1850880,159,7960,1 +44156,1850880,46,2345,1 +44157,1850880,60,3036,1 +44158,1850881,21,1092,1 +44159,1850881,48,2426,1 +44160,1850881,45,2270,1 +44161,1850882,180,9021,1 +44162,1850883,165,8251,1 +44163,1850886,63,3165,1 +44164,1850889,121,6081,1 +44165,1850892,199,9979,1 +44166,1850892,15,770,1 +44167,1850893,98,4908,1 +44168,1850893,120,6041,1 +44169,1850893,13,662,1 +44170,1850895,94,4737,1 +44171,1850896,101,5066,1 +44172,1850901,35,1782,1 +44173,1850902,53,2675,1 +44174,1850904,0,38,1 +44175,1850904,15,791,1 +44176,1850904,75,3770,1 +44177,1850904,169,8499,1 +44178,1850904,95,4778,1 +44179,1850907,98,4921,1 +44180,1850917,108,5441,1 +44181,1850925,136,6808,1 +44182,1850928,19,990,1 +44183,1850940,138,6904,1 +44184,1850941,85,4265,1 +44185,1850952,70,3536,1 +44186,1850953,133,6692,1 +44187,1850954,65,3282,1 +44188,1850967,59,2961,1 +44189,1850968,128,6401,1 +44190,1850976,1,56,1 +44191,1850986,162,8130,1 +44192,1850989,77,3880,1 +44193,1850992,174,8737,1 +44194,1851009,82,4134,1 +44195,1851096,127,6357,1 +44196,1851096,154,7743,1 +44197,1851360,13,655,1 +44198,1851361,105,5263,1 +44199,1851361,25,1271,1 +44200,1851361,136,6825,1 +44201,1851366,186,9340,1 +44202,1851370,172,8624,1 +44203,1851372,77,3866,1 +44204,1851372,163,8193,1 +44205,1851390,0,44,1 +44206,1851396,115,5794,1 +44207,1851397,86,4337,1 +44208,1851397,135,6787,1 +44209,1851399,83,4183,1 +44210,1851399,194,9738,1 +44211,1851402,180,9048,1 +44212,1851408,186,9332,1 +44213,1851408,69,3459,1 +44214,1851411,194,9748,1 +44215,1851421,114,5741,1 +44216,1851429,77,3884,1 +44217,1851432,173,8697,1 +44218,1851432,17,860,1 +44219,1851433,142,7126,1 +44220,1851433,107,5369,1 +44221,1851456,83,4187,1 +44222,1851456,50,2516,1 +44223,1851457,194,9743,1 +44224,1851483,134,6726,1 +44225,1851484,132,6629,1 +44226,1851493,174,8741,1 +44227,1851510,102,5127,1 +44228,1851601,173,8700,1 +44229,1851843,30,1518,1 +44230,1851850,85,4280,1 +44231,1851851,90,4527,1 +44232,1851852,53,2689,1 +44233,1851852,3,164,1 +44234,1851852,175,8771,1 +44235,1851856,188,9412,1 +44236,1851860,28,1434,1 +44237,1851861,46,2321,1 +44238,1851868,112,5619,1 +44239,1851873,121,6064,1 +44240,1851876,166,8336,1 +44241,1851877,143,7158,1 +44242,1851888,7,383,1 +44243,1851892,131,6583,1 +44244,1851894,178,8939,1 +44245,1851897,133,6689,1 +44246,1851912,181,9062,1 +44247,1851912,161,8076,1 +44248,1851921,42,2108,1 +44249,1851933,172,8635,1 +44250,1851948,19,956,1 +44251,1851948,190,9504,1 +44252,1851949,144,7228,1 +44253,1851973,19,981,1 +44254,1851987,143,7156,1 +44255,1851998,149,7498,1 +44256,1852320,94,4717,1 +44257,1852320,141,7097,1 +44258,1852323,190,9539,1 +44259,1852327,63,3171,1 +44260,1852332,154,7702,1 +44261,1852332,71,3576,1 +44262,1852332,151,7557,1 +44263,1852332,41,2086,1 +44264,1852332,12,621,1 +44265,1852333,37,1899,1 +44266,1852338,15,786,1 +44267,1852343,140,7041,1 +44268,1852344,17,897,1 +44269,1852344,77,3897,1 +44270,1852344,164,8204,1 +44271,1852350,159,7966,1 +44272,1852357,65,3291,1 +44273,1852359,176,8836,1 +44274,1852362,56,2816,1 +44275,1852380,119,5962,1 +44276,1852380,76,3828,1 +44277,1852389,193,9678,1 +44278,1852392,72,3620,1 +44279,1852404,71,3595,1 +44280,1852405,1,75,1 +44281,1852431,160,8003,1 +44282,1852452,159,7960,1 +44283,1852492,72,3620,1 +44284,1852512,60,3010,1 +44285,1852524,85,4263,1 +44286,1852812,69,3480,1 +44287,1852836,82,4131,1 +44288,1852920,152,7638,1 +44289,1853281,10,520,1 +44290,1853289,186,9330,1 +44291,1853292,79,3955,1 +44292,1853292,125,6275,1 +44293,1853292,74,3706,1 +44294,1853292,31,1598,1 +44295,1853292,3,161,1 +44296,1853295,52,2631,1 +44297,1853298,101,5066,1 +44298,1853307,63,3162,1 +44299,1853316,120,6039,1 +44300,1853316,18,905,1 +44301,1853329,141,7064,1 +44302,1853329,60,3050,1 +44303,1853340,104,5220,1 +44304,1853341,132,6617,1 +44305,1853341,83,4161,1 +44306,1853343,107,5385,1 +44307,1853346,104,5214,1 +44308,1853364,115,5791,1 +44309,1853402,86,4319,1 +44310,1853604,164,8230,1 +44311,1853760,31,1600,1 +44312,1853779,89,4480,1 +44313,1853785,181,9056,1 +44314,1853785,179,8952,1 +44315,1853791,66,3304,1 +44316,1853796,2,112,1 +44317,1853835,59,2960,1 +44318,1853868,9,497,1 +44319,1853880,50,2505,1 +44320,1853908,112,5645,1 +44321,1853930,115,5797,1 +44322,1853932,92,4611,1 +44323,1854728,193,9693,1 +44324,1854732,33,1652,1 +44325,1854735,75,3773,1 +44326,1854780,32,1609,1 +44327,1854780,105,5275,1 +44328,1855212,169,8481,1 +44329,1855680,185,9284,1 +44330,1855682,132,6611,1 +44331,1855683,97,4875,1 +44332,1855692,114,5728,1 +44333,1855694,96,4844,1 +44334,1855704,121,6057,1 +44335,1855704,178,8922,1 +44336,1855717,180,9031,1 +44337,1855725,79,3970,1 +44338,1855728,145,7270,1 +44339,1855741,147,7387,1 +44340,1855764,133,6670,1 +44341,1855833,43,2167,1 +44342,1855837,176,8820,1 +44343,1856196,199,9971,1 +44344,1856212,121,6097,1 +44345,1856256,190,9527,1 +44346,1856342,76,3850,1 +44347,1857121,169,8485,1 +44348,1857121,51,2561,1 +44349,1857124,172,8644,1 +44350,1857134,182,9125,1 +44351,1857144,108,5406,1 +44352,1857160,111,5581,1 +44353,1857229,0,32,1 +44354,1857419,87,4382,1 +44355,1857612,52,2629,1 +44356,1857639,151,7559,1 +44357,1858152,97,4869,1 +44358,1859040,8,426,1 +44359,1859070,175,8776,1 +44360,1859100,128,6414,1 +44361,1859124,45,2297,1 +44362,1859127,180,9024,1 +44363,1859215,193,9667,1 +44364,1859521,1,93,1 +44365,1859534,161,8079,1 +44366,1859628,164,8228,1 +44367,1859643,77,3886,1 +44368,1860027,30,1527,1 +44369,1860027,128,6441,1 +44370,1860027,12,604,1 +44371,1860062,16,837,1 +44372,1860063,89,4462,1 +44373,1860480,120,6044,1 +44374,1860492,71,3555,1 +44375,1860493,67,3397,1 +44376,1860497,24,1229,1 +44377,1860505,140,7014,1 +44378,1860516,44,2204,1 +44379,1860530,130,6543,1 +44380,1860558,75,3772,1 +44381,1860565,65,3276,1 +44382,1860577,102,5123,1 +44383,1861009,141,7079,1 +44384,1861032,49,2469,1 +44385,1861440,148,7416,1 +44386,1861440,133,6668,1 +44387,1861440,11,594,1 +44388,1861440,66,3334,1 +44389,1861444,9,474,1 +44390,1861446,104,5228,1 +44391,1861448,8,415,1 +44392,1861451,78,3914,1 +44393,1861452,17,897,1 +44394,1861452,71,3590,1 +44395,1861452,36,1847,1 +44396,1861452,52,2601,1 +44397,1861452,111,5557,1 +44398,1861452,39,1988,1 +44399,1861453,144,7222,1 +44400,1861453,110,5527,1 +44401,1861453,137,6854,1 +44402,1861455,115,5756,1 +44403,1861456,99,4988,1 +44404,1861464,71,3588,1 +44405,1861465,126,6347,1 +44406,1861466,133,6700,1 +44407,1861467,128,6444,1 +44408,1861467,123,6187,1 +44409,1861470,182,9120,1 +44410,1861479,0,40,1 +44411,1861479,25,1260,1 +44412,1861482,87,4360,1 +44413,1861488,0,5,1 +44414,1861489,163,8186,1 +44415,1861489,56,2805,1 +44416,1861495,177,8856,1 +44417,1861495,113,5686,1 +44418,1861500,58,2903,1 +44419,1861500,69,3472,1 +44420,1861500,174,8750,1 +44421,1861503,126,6314,1 +44422,1861503,157,7867,1 +44423,1861503,120,6047,1 +44424,1861506,179,8975,1 +44425,1861506,165,8269,1 +44426,1861509,119,5968,1 +44427,1861512,146,7316,1 +44428,1861512,153,7692,1 +44429,1861524,111,5563,1 +44430,1861525,151,7553,1 +44431,1861526,161,8084,1 +44432,1861526,69,3456,1 +44433,1861527,106,5346,1 +44434,1861536,94,4706,1 +44435,1861536,117,5865,1 +44436,1861554,147,7386,1 +44437,1861596,28,1406,1 +44438,1861603,22,1146,1 +44439,1861660,48,2421,1 +44440,1861668,27,1354,1 +44441,1861860,36,1844,1 +44442,1861971,162,8102,1 +44443,1862895,6,334,1 +44444,1862905,134,6723,1 +44445,1862906,51,2584,1 +44446,1862906,191,9567,1 +44447,1862925,184,9202,1 +44448,1862929,145,7286,1 +44449,1862943,50,2541,1 +44450,1862978,73,3688,1 +44451,1863003,89,4476,1 +44452,1863015,147,7355,1 +44453,1863840,155,7765,1 +44454,1863844,137,6890,1 +44455,1863882,138,6945,1 +44456,1863927,32,1602,1 +44457,1864320,142,7139,1 +44458,1864320,192,9604,1 +44459,1864338,110,5541,1 +44460,1864344,169,8476,1 +44461,1864356,22,1112,1 +44462,1864357,81,4068,1 +44463,1864357,99,4982,1 +44464,1864357,195,9784,1 +44465,1864361,194,9750,1 +44466,1864380,49,2455,1 +44467,1864381,30,1543,1 +44468,1864404,181,9064,1 +44469,1864413,151,7551,1 +44470,1864431,115,5753,1 +44471,1864440,108,5408,1 +44472,1864443,92,4649,1 +44473,1864453,168,8427,1 +44474,1864814,199,9978,1 +44475,1864815,98,4914,1 +44476,1864827,179,8958,1 +44477,1864920,154,7743,1 +44478,1865281,153,7661,1 +44479,1865281,198,9904,1 +44480,1865283,114,5715,1 +44481,1865290,68,3432,1 +44482,1865292,169,8495,1 +44483,1865292,45,2288,1 +44484,1865293,145,7266,1 +44485,1865304,21,1078,1 +44486,1865304,163,8177,1 +44487,1865316,45,2279,1 +44488,1865340,188,9450,1 +44489,1865376,170,8537,1 +44490,1865397,193,9657,1 +44491,1865400,93,4687,1 +44492,1865763,39,1998,1 +44493,1865772,133,6654,1 +44494,1865796,99,4967,1 +44495,1865817,125,6286,1 +44496,1865823,50,2502,1 +44497,1865832,70,3527,1 +44498,1865856,147,7394,1 +44499,1866240,104,5248,1 +44500,1866246,55,2785,1 +44501,1866253,54,2707,1 +44502,1866261,71,3556,1 +44503,1866264,175,8785,1 +44504,1866303,104,5219,1 +44505,1866324,53,2655,1 +44506,1866325,78,3919,1 +44507,1866377,183,9192,1 +44508,1866720,66,3311,1 +44509,1866720,104,5249,1 +44510,1866720,139,6970,1 +44511,1866744,117,5887,1 +44512,1866750,74,3724,1 +44513,1866780,122,6116,1 +44514,1866781,95,4785,1 +44515,1866805,80,4046,1 +44516,1866817,25,1292,1 +44517,1866843,87,4373,1 +44518,1866864,160,8040,1 +44519,1866881,94,4704,1 +44520,1866888,53,2696,1 +44521,1867017,199,9986,1 +44522,1867680,112,5605,1 +44523,1867685,171,8578,1 +44524,1867686,95,4752,1 +44525,1867694,163,8167,1 +44526,1867695,162,8147,1 +44527,1867705,190,9543,1 +44528,1867749,12,601,1 +44529,1867800,33,1681,1 +44530,1867800,141,7062,1 +44531,1868041,93,4687,1 +44532,1868160,68,3427,1 +44533,1868160,41,2068,1 +44534,1868161,51,2594,1 +44535,1868161,5,259,1 +44536,1868163,195,9791,1 +44537,1868173,119,6000,1 +44538,1868182,187,9392,1 +44539,1868187,76,3815,1 +44540,1868197,156,7845,1 +44541,1868208,168,8425,1 +44542,1868217,186,9322,1 +44543,1868220,182,9129,1 +44544,1868232,67,3372,1 +44545,1868262,196,9832,1 +44546,1868376,188,9414,1 +44547,1869120,12,621,1 +44548,1869120,136,6825,1 +44549,1869132,81,4064,1 +44550,1869161,14,726,1 +44551,1869171,35,1759,1 +44552,1869171,68,3431,1 +44553,1869206,132,6641,1 +44554,1869229,114,5746,1 +44555,1869236,161,8099,1 +44556,1870086,84,4229,1 +44557,1870090,110,5550,1 +44558,1870128,141,7079,1 +44559,1870572,24,1238,1 +44560,1870609,184,9215,1 +44561,1870659,195,9793,1 +44562,1870680,159,7966,1 +44563,1870693,4,248,1 +44564,1870713,100,5025,1 +44565,1871042,104,5229,1 +44566,1871052,192,9648,1 +44567,1871148,182,9118,1 +44568,1871175,113,5690,1 +44569,1871497,120,6038,1 +44570,1871548,36,1815,1 +44571,1872060,91,4592,1 +44572,1872108,88,4416,1 +44573,1872481,137,6892,1 +44574,1872483,139,6957,1 +44575,1872484,9,452,1 +44576,1872486,65,3279,1 +44577,1872489,178,8942,1 +44578,1872492,7,360,1 +44579,1872494,40,2042,1 +44580,1872494,104,5230,1 +44581,1872495,179,9000,1 +44582,1872498,193,9668,1 +44583,1872504,64,3241,1 +44584,1872505,180,9040,1 +44585,1872505,133,6652,1 +44586,1872505,38,1902,1 +44587,1872506,122,6145,1 +44588,1872507,132,6649,1 +44589,1872510,30,1531,1 +44590,1872516,120,6013,1 +44591,1872516,9,484,1 +44592,1872516,100,5025,1 +44593,1872516,170,8513,1 +44594,1872517,191,9589,1 +44595,1872528,37,1862,1 +44596,1872532,102,5122,1 +44597,1872538,93,4674,1 +44598,1872540,5,256,1 +44599,1872550,155,7772,1 +44600,1872558,57,2877,1 +44601,1872567,167,8379,1 +44602,1872580,1,53,1 +44603,1872583,102,5122,1 +44604,1872609,116,5821,1 +44605,1872618,143,7200,1 +44606,1872624,129,6470,1 +44607,1872648,187,9390,1 +44608,1872969,96,4814,1 +44609,1873440,62,3131,1 +44610,1873447,43,2177,1 +44611,1873452,7,374,1 +44612,1873456,109,5492,1 +44613,1873464,139,6990,1 +44614,1873465,150,7538,1 +44615,1873465,187,9398,1 +44616,1873476,126,6304,1 +44617,1873491,107,5357,1 +44618,1873502,66,3339,1 +44619,1873524,40,2030,1 +44620,1873524,127,6389,1 +44621,1873524,149,7478,1 +44622,1873548,82,4124,1 +44623,1873920,64,3238,1 +44624,1873932,66,3305,1 +44625,1873944,40,2001,1 +44626,1874148,176,8825,1 +44627,1874403,125,6278,1 +44628,1874425,56,2801,1 +44629,1874431,72,3645,1 +44630,1874486,137,6859,1 +44631,1874508,26,1313,1 +44632,1874902,121,6083,1 +44633,1874976,137,6900,1 +44634,1874978,44,2234,1 +44635,1875372,146,7305,1 +44636,1875374,22,1138,1 +44637,1875385,28,1435,1 +44638,1875390,140,7031,1 +44639,1875399,162,8125,1 +44640,1875434,184,9226,1 +44641,1875456,72,3641,1 +44642,1875846,79,3988,1 +44643,1875854,43,2176,1 +44644,1875864,76,3845,1 +44645,1875879,141,7083,1 +44646,1876349,72,3623,1 +44647,1876359,121,6054,1 +44648,1876370,81,4071,1 +44649,1876380,17,865,1 +44650,1876803,81,4093,1 +44651,1876825,136,6849,1 +44652,1876836,60,3017,1 +44653,1876860,25,1272,1 +44654,1876910,68,3446,1 +44655,1877292,168,8428,1 +44656,1877298,197,9890,1 +44657,1877391,180,9016,1 +44658,1877613,9,466,1 +44659,1877760,76,3836,1 +44660,1877762,155,7762,1 +44661,1877770,115,5768,1 +44662,1877772,151,7555,1 +44663,1877773,45,2263,1 +44664,1877775,133,6686,1 +44665,1877820,30,1511,1 +44666,1877824,5,294,1 +44667,1877835,5,298,1 +44668,1877892,19,951,1 +44669,1877917,143,7195,1 +44670,1877952,186,9318,1 +44671,1878252,37,1863,1 +44672,1878722,40,2010,1 +44673,1878722,153,7658,1 +44674,1878722,63,3154,1 +44675,1878723,70,3515,1 +44676,1878732,100,5004,1 +44677,1878732,93,4654,1 +44678,1878739,125,6260,1 +44679,1878739,146,7331,1 +44680,1878749,150,7524,1 +44681,1878760,130,6504,1 +44682,1878762,57,2876,1 +44683,1878766,86,4303,1 +44684,1878767,162,8121,1 +44685,1878768,172,8646,1 +44686,1878780,142,7135,1 +44687,1878791,23,1181,1 +44688,1878794,165,8282,1 +44689,1878810,170,8529,1 +44690,1878819,6,329,1 +44691,1878843,78,3905,1 +44692,1878863,146,7319,1 +44693,1878867,189,9472,1 +44694,1878984,7,394,1 +44695,1879200,72,3644,1 +44696,1879201,130,6543,1 +44697,1879202,158,7943,1 +44698,1879211,74,3733,1 +44699,1879212,129,6452,1 +44700,1879212,139,6984,1 +44701,1879212,103,5174,1 +44702,1879215,7,355,1 +44703,1879219,185,9285,1 +44704,1879240,190,9509,1 +44705,1879243,41,2081,1 +44706,1879248,55,2778,1 +44707,1879248,151,7563,1 +44708,1879249,10,536,1 +44709,1879260,152,7616,1 +44710,1879261,155,7755,1 +44711,1879296,180,9027,1 +44712,1879347,150,7548,1 +44713,1879689,36,1841,1 +44714,1879693,38,1941,1 +44715,1879704,108,5420,1 +44716,1879705,117,5851,1 +44717,1879740,74,3709,1 +44718,1879743,112,5638,1 +44719,1879767,107,5357,1 +44720,1880673,165,8257,1 +44721,1880674,28,1446,1 +44722,1880688,140,7007,1 +44723,1880712,139,6955,1 +44724,1880715,155,7751,1 +44725,1880725,68,3436,1 +44726,1880736,66,3319,1 +44727,1881132,116,5826,1 +44728,1881136,59,2971,1 +44729,1881139,145,7286,1 +44730,1881144,41,2080,1 +44731,1881145,125,6251,1 +44732,1881154,16,838,1 +44733,1881169,33,1700,1 +44734,1881600,147,7360,1 +44735,1881601,193,9663,1 +44736,1881601,40,2009,1 +44737,1881606,191,9557,1 +44738,1881615,20,1048,1 +44739,1881624,37,1853,1 +44740,1881633,42,2111,1 +44741,1881648,42,2127,1 +44742,1881664,51,2590,1 +44743,1881665,8,420,1 +44744,1881768,127,6396,1 +44745,1882080,86,4338,1 +44746,1882080,120,6036,1 +44747,1882080,47,2394,1 +44748,1882080,151,7584,1 +44749,1882081,58,2925,1 +44750,1882083,162,8102,1 +44751,1882087,148,7442,1 +44752,1882088,2,108,1 +44753,1882089,61,3095,1 +44754,1882092,195,9751,1 +44755,1882092,81,4086,1 +44756,1882093,102,5133,1 +44757,1882095,18,903,1 +44758,1882104,34,1701,1 +44759,1882104,70,3545,1 +44760,1882104,8,404,1 +44761,1882128,92,4602,1 +44762,1882128,183,9183,1 +44763,1882129,75,3774,1 +44764,1882137,0,22,1 +44765,1882142,134,6744,1 +44766,1882152,99,4996,1 +44767,1882152,16,849,1 +44768,1882153,45,2282,1 +44769,1882167,77,3865,1 +44770,1882180,157,7899,1 +44771,1882188,183,9151,1 +44772,1882236,116,5840,1 +44773,1882248,189,9465,1 +44774,1882323,143,7164,1 +44775,1882562,147,7355,1 +44776,1882573,64,3209,1 +44777,1882585,32,1612,1 +44778,1882596,2,119,1 +44779,1882674,112,5632,1 +44780,1883268,170,8510,1 +44781,1883676,23,1155,1 +44782,1884014,112,5617,1 +44783,1884096,152,7624,1 +44784,1884480,39,1996,1 +44785,1884481,195,9759,1 +44786,1884482,118,5914,1 +44787,1884501,12,637,1 +44788,1884504,10,528,1 +44789,1884504,27,1391,1 +44790,1884505,99,4993,1 +44791,1884516,172,8611,1 +44792,1884516,111,5573,1 +44793,1884537,92,4608,1 +44794,1884576,130,6544,1 +44795,1884731,108,5431,1 +44796,1884973,76,3829,1 +44797,1884991,79,3989,1 +44798,1885082,151,7557,1 +44799,1885920,198,9932,1 +44800,1885924,97,4861,1 +44801,1885932,24,1242,1 +44802,1885932,138,6911,1 +44803,1885933,4,203,1 +44804,1885935,27,1381,1 +44805,1885938,82,4125,1 +44806,1885944,151,7592,1 +44807,1885944,193,9675,1 +44808,1885944,43,2166,1 +44809,1885968,188,9410,1 +44810,1885992,90,4543,1 +44811,1885992,74,3739,1 +44812,1886023,9,451,1 +44813,1886030,120,6010,1 +44814,1886052,133,6670,1 +44815,1886074,103,5184,1 +44816,1886077,166,8309,1 +44817,1886400,97,4870,1 +44818,1886402,16,843,1 +44819,1886404,45,2261,1 +44820,1886424,16,808,1 +44821,1886429,46,2305,1 +44822,1886445,19,990,1 +44823,1886448,197,9857,1 +44824,1886448,80,4008,1 +44825,1886448,42,2128,1 +44826,1886466,87,4361,1 +44827,1886473,177,8893,1 +44828,1886496,129,6497,1 +44829,1886511,116,5829,1 +44830,1886538,63,3187,1 +44831,1886544,112,5614,1 +44832,1886665,192,9617,1 +44833,1886724,161,8062,1 +44834,1887360,92,4637,1 +44835,1887360,120,6041,1 +44836,1887360,66,3339,1 +44837,1887360,161,8100,1 +44838,1887360,79,3989,1 +44839,1887360,20,1049,1 +44840,1887361,16,804,1 +44841,1887361,63,3160,1 +44842,1887361,4,233,1 +44843,1887361,23,1180,1 +44844,1887363,198,9922,1 +44845,1887363,72,3605,1 +44846,1887372,196,9801,1 +44847,1887373,69,3459,1 +44848,1887373,143,7174,1 +44849,1887373,138,6909,1 +44850,1887373,38,1948,1 +44851,1887375,170,8512,1 +44852,1887385,178,8925,1 +44853,1887385,3,167,1 +44854,1887388,168,8422,1 +44855,1887396,4,248,1 +44856,1887396,51,2575,1 +44857,1887399,107,5397,1 +44858,1887402,7,394,1 +44859,1887405,86,4338,1 +44860,1887408,103,5170,1 +44861,1887411,198,9930,1 +44862,1887411,42,2138,1 +44863,1887415,122,6108,1 +44864,1887417,13,657,1 +44865,1887420,54,2706,1 +44866,1887420,120,6029,1 +44867,1887420,5,295,1 +44868,1887421,118,5923,1 +44869,1887422,51,2557,1 +44870,1887432,89,4457,1 +44871,1887432,175,8766,1 +44872,1887432,185,9264,1 +44873,1887433,37,1876,1 +44874,1887434,134,6721,1 +44875,1887441,20,1049,1 +44876,1887444,121,6100,1 +44877,1887444,70,3535,1 +44878,1887456,29,1495,1 +44879,1887468,30,1548,1 +44880,1887475,25,1258,1 +44881,1887484,56,2846,1 +44882,1887510,42,2112,1 +44883,1887516,74,3731,1 +44884,1887516,107,5366,1 +44885,1887528,158,7915,1 +44886,1887531,51,2583,1 +44887,1887541,135,6769,1 +44888,1887577,86,4301,1 +44889,1887840,77,3867,1 +44890,1887850,141,7098,1 +44891,1887897,124,6227,1 +44892,1887900,150,7509,1 +44893,1888321,12,610,1 +44894,1888324,147,7391,1 +44895,1888349,149,7480,1 +44896,1888395,173,8694,1 +44897,1888416,127,6366,1 +44898,1888429,151,7571,1 +44899,1888815,17,877,1 +44900,1888871,127,6389,1 +44901,1888884,176,8841,1 +44902,1889280,64,3214,1 +44903,1889290,85,4265,1 +44904,1889320,191,9589,1 +44905,1889334,8,436,1 +44906,1889760,107,5370,1 +44907,1889760,132,6636,1 +44908,1889760,106,5312,1 +44909,1889760,128,6408,1 +44910,1889760,108,5440,1 +44911,1889760,85,4274,1 +44912,1889760,180,9043,1 +44913,1889760,73,3699,1 +44914,1889760,126,6323,1 +44915,1889762,27,1395,1 +44916,1889762,37,1866,1 +44917,1889763,123,6185,1 +44918,1889763,156,7809,1 +44919,1889769,170,8501,1 +44920,1889772,139,6981,1 +44921,1889773,141,7086,1 +44922,1889775,141,7091,1 +44923,1889775,132,6610,1 +44924,1889778,71,3565,1 +44925,1889782,57,2862,1 +44926,1889784,154,7710,1 +44927,1889784,146,7315,1 +44928,1889787,9,500,1 +44929,1889789,13,683,1 +44930,1889793,6,312,1 +44931,1889796,95,4775,1 +44932,1889796,177,8851,1 +44933,1889798,73,3682,1 +44934,1889803,119,5997,1 +44935,1889805,192,9620,1 +44936,1889808,75,3769,1 +44937,1889808,145,7289,1 +44938,1889808,130,6519,1 +44939,1889808,104,5238,1 +44940,1889809,0,46,1 +44941,1889811,42,2107,1 +44942,1889814,180,9047,1 +44943,1889818,46,2314,1 +44944,1889820,186,9303,1 +44945,1889820,158,7935,1 +44946,1889822,137,6892,1 +44947,1889835,70,3548,1 +44948,1889841,41,2085,1 +44949,1889844,142,7120,1 +44950,1889845,180,9019,1 +44951,1889846,132,6632,1 +44952,1889913,139,6968,1 +44953,1890240,171,8586,1 +44954,1890249,16,827,1 +44955,1890252,49,2474,1 +44956,1890264,85,4296,1 +44957,1890272,174,8714,1 +44958,1890293,195,9777,1 +44959,1890301,42,2144,1 +44960,1890312,194,9717,1 +44961,1890325,38,1908,1 +44962,1890732,193,9669,1 +44963,1890735,163,8170,1 +44964,1890818,108,5424,1 +44965,1891209,48,2443,1 +44966,1891212,119,5969,1 +44967,1891212,60,3029,1 +44968,1891224,73,3669,1 +44969,1891226,172,8622,1 +44970,1891236,197,9877,1 +44971,1891239,42,2125,1 +44972,1891241,138,6933,1 +44973,1891257,97,4858,1 +44974,1891274,62,3135,1 +44975,1891278,107,5398,1 +44976,1891308,79,3984,1 +44977,1891335,174,8736,1 +44978,1891339,148,7423,1 +44979,1891392,144,7227,1 +44980,1891392,33,1653,1 +44981,1891704,156,7814,1 +44982,1892167,151,7589,1 +44983,1892170,64,3234,1 +44984,1892172,137,6883,1 +44985,1892640,32,1646,1 +44986,1892647,56,2819,1 +44987,1892652,72,3636,1 +44988,1892653,169,8463,1 +44989,1892673,184,9227,1 +44990,1892688,153,7699,1 +44991,1892688,108,5447,1 +44992,1892716,118,5934,1 +44993,1892726,82,4144,1 +44994,1892730,48,2439,1 +44995,1892772,167,8375,1 +44996,1892778,177,8873,1 +44997,1892808,57,2868,1 +44998,1893120,90,4507,1 +44999,1893144,143,7171,1 +45000,1893147,81,4067,1 +45001,1893157,30,1548,1 +45002,1893157,139,6966,1 +45003,1893168,63,3197,1 +45004,1893205,188,9435,1 +45005,1893228,198,9908,1 +45006,1894104,73,3685,1 +45007,1894105,117,5898,1 +45008,1894108,100,5048,1 +45009,1894116,165,8269,1 +45010,1894165,77,3897,1 +45011,1894166,33,1690,1 +45012,1894188,92,4619,1 +45013,1894279,150,7502,1 +45014,1894323,153,7693,1 +45015,1895056,80,4007,1 +45016,1895079,25,1286,1 +45017,1895142,146,7348,1 +45018,1895287,127,6352,1 +45019,1895520,126,6337,1 +45020,1895520,150,7531,1 +45021,1895524,99,4959,1 +45022,1895553,42,2150,1 +45023,1895631,41,2085,1 +45024,1896000,80,4041,1 +45025,1896002,82,4117,1 +45026,1896003,54,2735,1 +45027,1896009,16,841,1 +45028,1896012,192,9608,1 +45029,1896024,186,9337,1 +45030,1896024,43,2172,1 +45031,1896025,122,6125,1 +45032,1896028,105,5279,1 +45033,1896036,129,6460,1 +45034,1896046,18,911,1 +45035,1896048,3,161,1 +45036,1896049,174,8746,1 +45037,1896051,172,8605,1 +45038,1896060,118,5923,1 +45039,1896072,152,7607,1 +45040,1896085,73,3685,1 +45041,1896102,167,8390,1 +45042,1896102,50,2548,1 +45043,1896108,47,2372,1 +45044,1896132,119,5993,1 +45045,1896217,135,6768,1 +45046,1896480,196,9808,1 +45047,1896480,132,6609,1 +45048,1896481,124,6214,1 +45049,1896481,117,5897,1 +45050,1896492,123,6183,1 +45051,1896493,102,5136,1 +45052,1896493,28,1434,1 +45053,1896504,176,8850,1 +45054,1896520,32,1617,1 +45055,1896576,46,2326,1 +45056,1896576,178,8928,1 +45057,1896589,73,3674,1 +45058,1896626,42,2144,1 +45059,1896660,18,928,1 +45060,1896673,189,9455,1 +45061,1896960,55,2751,1 +45062,1896996,83,4188,1 +45063,1897020,182,9108,1 +45064,1897117,42,2113,1 +45065,1897449,11,590,1 +45066,1897449,145,7291,1 +45067,1897461,189,9495,1 +45068,1897489,54,2727,1 +45069,1897516,144,7249,1 +45070,1897528,95,4782,1 +45071,1897560,38,1920,1 +45072,1897920,137,6884,1 +45073,1897955,180,9047,1 +45074,1897956,18,936,1 +45075,1897969,181,9073,1 +45076,1898007,173,8656,1 +45077,1898076,33,1653,1 +45078,1898412,128,6421,1 +45079,1898448,193,9659,1 +45080,1898448,69,3489,1 +45081,1898460,146,7324,1 +45082,1898484,14,721,1 +45083,1898532,81,4062,1 +45084,1898570,111,5600,1 +45085,1898889,102,5130,1 +45086,1898928,24,1237,1 +45087,1898930,58,2916,1 +45088,1899360,189,9499,1 +45089,1899360,183,9188,1 +45090,1899361,145,7275,1 +45091,1899362,33,1652,1 +45092,1899372,126,6347,1 +45093,1899372,196,9816,1 +45094,1899372,36,1801,1 +45095,1899372,144,7201,1 +45096,1899373,14,705,1 +45097,1899373,48,2421,1 +45098,1899373,147,7355,1 +45099,1899373,8,433,1 +45100,1899375,31,1592,1 +45101,1899384,194,9742,1 +45102,1899384,166,8345,1 +45103,1899384,127,6397,1 +45104,1899385,29,1472,1 +45105,1899385,40,2017,1 +45106,1899386,149,7495,1 +45107,1899386,53,2657,1 +45108,1899387,29,1491,1 +45109,1899396,165,8273,1 +45110,1899396,159,7956,1 +45111,1899399,106,5327,1 +45112,1899400,117,5866,1 +45113,1899402,50,2518,1 +45114,1899410,82,4142,1 +45115,1899411,138,6905,1 +45116,1899414,39,1961,1 +45117,1899417,63,3151,1 +45118,1899420,117,5880,1 +45119,1899420,42,2117,1 +45120,1899420,93,4673,1 +45121,1899425,189,9475,1 +45122,1899437,147,7393,1 +45123,1899439,39,1957,1 +45124,1899447,104,5234,1 +45125,1899453,135,6791,1 +45126,1899469,118,5948,1 +45127,1899474,181,9095,1 +45128,1899481,81,4072,1 +45129,1899483,157,7861,1 +45130,1899517,86,4307,1 +45131,1899588,39,1978,1 +45132,1899867,134,6741,1 +45133,1899894,133,6688,1 +45134,1899948,179,8987,1 +45135,1900320,141,7085,1 +45136,1900320,108,5450,1 +45137,1900321,98,4905,1 +45138,1900354,144,7223,1 +45139,1900356,159,7984,1 +45140,1900369,66,3333,1 +45141,1900431,180,9041,1 +45142,1900812,146,7309,1 +45143,1900812,98,4916,1 +45144,1900813,73,3659,1 +45145,1900827,97,4894,1 +45146,1900848,125,6256,1 +45147,1900848,63,3168,1 +45148,1900872,157,7867,1 +45149,1900914,1,66,1 +45150,1900944,58,2929,1 +45151,1901172,152,7628,1 +45152,1901316,182,9126,1 +45153,1901361,39,1969,1 +45154,1901400,9,463,1 +45155,1901422,93,4668,1 +45156,1901774,101,5063,1 +45157,1901796,76,3818,1 +45158,1902072,64,3235,1 +45159,1902253,40,2014,1 +45160,1902721,196,9814,1 +45161,1902726,59,2959,1 +45162,1902728,158,7908,1 +45163,1902732,19,978,1 +45164,1902733,180,9043,1 +45165,1902744,78,3905,1 +45166,1902769,87,4362,1 +45167,1902888,122,6115,1 +45168,1902897,110,5541,1 +45169,1903200,83,4171,1 +45170,1903206,116,5847,1 +45171,1903210,105,5299,1 +45172,1903210,169,8458,1 +45173,1903212,127,6375,1 +45174,1903215,66,3315,1 +45175,1903219,78,3933,1 +45176,1903224,135,6776,1 +45177,1903224,36,1820,1 +45178,1903224,112,5650,1 +45179,1903224,19,974,1 +45180,1903224,148,7434,1 +45181,1903225,64,3209,1 +45182,1903225,84,4242,1 +45183,1903229,44,2219,1 +45184,1903236,101,5063,1 +45185,1903236,33,1667,1 +45186,1903241,95,4776,1 +45187,1903242,157,7863,1 +45188,1903245,187,9382,1 +45189,1903249,71,3581,1 +45190,1903249,42,2137,1 +45191,1903260,156,7803,1 +45192,1903260,108,5409,1 +45193,1903269,50,2511,1 +45194,1903272,120,6033,1 +45195,1903275,143,7155,1 +45196,1903287,165,8296,1 +45197,1903319,26,1322,1 +45198,1903686,166,8315,1 +45199,1903692,86,4318,1 +45200,1903704,165,8269,1 +45201,1903722,189,9495,1 +45202,1903728,91,4575,1 +45203,1903741,26,1343,1 +45204,1903761,124,6202,1 +45205,1904163,43,2198,1 +45206,1904178,60,3003,1 +45207,1904185,135,6796,1 +45208,1904190,63,3180,1 +45209,1904202,85,4269,1 +45210,1904208,9,478,1 +45211,1904211,123,6163,1 +45212,1904220,193,9664,1 +45213,1904238,121,6066,1 +45214,1904241,97,4891,1 +45215,1904250,98,4942,1 +45216,1904256,101,5075,1 +45217,1904265,189,9495,1 +45218,1904268,29,1482,1 +45219,1904377,0,24,1 +45220,1904640,80,4028,1 +45221,1904643,96,4807,1 +45222,1904724,126,6313,1 +45223,1904808,180,9048,1 +45224,1905144,175,8776,1 +45225,1905228,199,9966,1 +45226,1905237,83,4187,1 +45227,1905360,112,5612,1 +45228,1905603,113,5691,1 +45229,1905612,142,7115,1 +45230,1905624,88,4414,1 +45231,1905624,198,9906,1 +45232,1905666,32,1638,1 +45233,1905682,154,7740,1 +45234,1905708,137,6876,1 +45235,1905722,190,9549,1 +45236,1905746,53,2684,1 +45237,1905885,82,4115,1 +45238,1906117,165,8297,1 +45239,1906140,102,5135,1 +45240,1906140,142,7150,1 +45241,1906272,155,7780,1 +45242,1906584,113,5697,1 +45243,1906620,52,2601,1 +45244,1907043,163,8192,1 +45245,1907050,142,7121,1 +45246,1907052,101,5083,1 +45247,1907052,116,5839,1 +45248,1907052,113,5652,1 +45249,1907064,139,6964,1 +45250,1907076,198,9949,1 +45251,1908492,149,7462,1 +45252,1908496,165,8293,1 +45253,1908501,79,3952,1 +45254,1908708,67,3396,1 +45255,1908974,47,2387,1 +45256,1908988,150,7512,1 +45257,1909045,156,7807,1 +45258,1909476,178,8925,1 +45259,1909565,29,1492,1 +45260,1909609,8,402,1 +45261,1909920,162,8142,1 +45262,1909922,144,7203,1 +45263,1909937,156,7819,1 +45264,1909975,196,9845,1 +45265,1910106,31,1569,1 +45266,1910112,179,8966,1 +45267,1910115,94,4748,1 +45268,1910410,54,2721,1 +45269,1910437,182,9139,1 +45270,1910474,24,1208,1 +45271,1910880,26,1342,1 +45272,1910883,3,199,1 +45273,1910892,5,254,1 +45274,1910892,91,4565,1 +45275,1910892,156,7828,1 +45276,1910892,64,3218,1 +45277,1910896,69,3460,1 +45278,1910905,139,6985,1 +45279,1910907,121,6071,1 +45280,1910925,140,7044,1 +45281,1910928,97,4884,1 +45282,1910928,67,3372,1 +45283,1910952,28,1421,1 +45284,1910952,84,4243,1 +45285,1910964,34,1719,1 +45286,1910964,167,8356,1 +45287,1910964,120,6010,1 +45288,1910964,169,8499,1 +45289,1910964,129,6484,1 +45290,1910976,139,6987,1 +45291,1910977,136,6817,1 +45292,1910993,181,9092,1 +45293,1911000,48,2424,1 +45294,1911001,192,9618,1 +45295,1911026,107,5360,1 +45296,1911225,40,2042,1 +45297,1911360,37,1853,1 +45298,1911360,69,3479,1 +45299,1911361,37,1889,1 +45300,1911361,175,8786,1 +45301,1911361,163,8158,1 +45302,1911361,67,3353,1 +45303,1911372,181,9055,1 +45304,1911372,43,2165,1 +45305,1911373,12,632,1 +45306,1911373,85,4275,1 +45307,1911373,84,4206,1 +45308,1911381,15,762,1 +45309,1911385,174,8737,1 +45310,1911387,119,5990,1 +45311,1911390,98,4935,1 +45312,1911392,184,9203,1 +45313,1911396,82,4123,1 +45314,1911396,69,3459,1 +45315,1911397,57,2892,1 +45316,1911398,47,2353,1 +45317,1911408,140,7037,1 +45318,1911409,94,4742,1 +45319,1911411,23,1163,1 +45320,1911420,194,9720,1 +45321,1911420,26,1311,1 +45322,1911421,28,1408,1 +45323,1911432,41,2074,1 +45324,1911450,172,8613,1 +45325,1911456,134,6712,1 +45326,1911458,66,3329,1 +45327,1911460,115,5796,1 +45328,1911462,56,2821,1 +45329,1911469,168,8411,1 +45330,1911504,176,8833,1 +45331,1911543,170,8536,1 +45332,1911841,192,9635,1 +45333,1911842,27,1378,1 +45334,1911843,132,6644,1 +45335,1911844,164,8211,1 +45336,1911853,28,1418,1 +45337,1911858,133,6665,1 +45338,1911864,182,9102,1 +45339,1911876,92,4608,1 +45340,1911877,56,2830,1 +45341,1911877,44,2224,1 +45342,1911883,64,3238,1 +45343,1911888,103,5199,1 +45344,1911903,9,483,1 +45345,1911913,137,6851,1 +45346,1911996,6,308,1 +45347,1912404,136,6829,1 +45348,1912405,46,2324,1 +45349,1912802,7,370,1 +45350,1912824,163,8158,1 +45351,1912824,118,5914,1 +45352,1912825,17,899,1 +45353,1912836,61,3094,1 +45354,1912845,2,148,1 +45355,1912848,74,3749,1 +45356,1912860,178,8923,1 +45357,1912872,2,137,1 +45358,1912873,100,5009,1 +45359,1913280,174,8718,1 +45360,1913281,164,8220,1 +45361,1913281,2,135,1 +45362,1913282,103,5154,1 +45363,1913282,105,5253,1 +45364,1913284,155,7759,1 +45365,1913289,58,2944,1 +45366,1913292,197,9890,1 +45367,1913293,191,9598,1 +45368,1913305,181,9091,1 +45369,1913310,96,4813,1 +45370,1913316,188,9448,1 +45371,1913316,40,2049,1 +45372,1913326,9,473,1 +45373,1913328,113,5658,1 +45374,1913335,167,8360,1 +45375,1913364,99,4980,1 +45376,1913368,69,3468,1 +45377,1913380,97,4893,1 +45378,1913424,34,1742,1 +45379,1913513,189,9468,1 +45380,1913809,162,8132,1 +45381,1913898,119,5975,1 +45382,1914252,0,17,1 +45383,1914256,116,5812,1 +45384,1914337,186,9308,1 +45385,1914348,35,1781,1 +45386,1914720,148,7419,1 +45387,1914723,61,3074,1 +45388,1914732,17,892,1 +45389,1914732,192,9626,1 +45390,1914744,64,3211,1 +45391,1914744,192,9638,1 +45392,1914744,20,1027,1 +45393,1914750,188,9426,1 +45394,1914754,69,3498,1 +45395,1914756,161,8094,1 +45396,1914756,36,1801,1 +45397,1914763,157,7876,1 +45398,1914769,153,7680,1 +45399,1914777,7,389,1 +45400,1914811,7,366,1 +45401,1914828,146,7343,1 +45402,1915206,174,8739,1 +45403,1915212,195,9781,1 +45404,1915212,54,2736,1 +45405,1915212,45,2297,1 +45406,1915215,127,6376,1 +45407,1915237,145,7266,1 +45408,1915246,170,8508,1 +45409,1915254,81,4064,1 +45410,1915273,128,6440,1 +45411,1915378,83,4163,1 +45412,1915414,164,8204,1 +45413,1915680,91,4572,1 +45414,1915701,55,2783,1 +45415,1915705,180,9022,1 +45416,1915716,184,9209,1 +45417,1915740,44,2239,1 +45418,1915742,29,1467,1 +45419,1915749,149,7494,1 +45420,1915752,51,2558,1 +45421,1915812,138,6915,1 +45422,1915873,98,4909,1 +45423,1915878,112,5619,1 +45424,1916160,42,2132,1 +45425,1916208,167,8396,1 +45426,1916232,21,1052,1 +45427,1916232,147,7356,1 +45428,1916258,169,8464,1 +45429,1916259,137,6862,1 +45430,1916358,179,8973,1 +45431,1916640,110,5525,1 +45432,1916640,72,3609,1 +45433,1916643,141,7071,1 +45434,1916646,52,2645,1 +45435,1916652,146,7340,1 +45436,1916659,114,5711,1 +45437,1916661,79,3984,1 +45438,1916661,104,5242,1 +45439,1916664,67,3352,1 +45440,1916666,117,5865,1 +45441,1916673,31,1589,1 +45442,1916676,121,6062,1 +45443,1916677,145,7269,1 +45444,1916688,39,1975,1 +45445,1916724,180,9027,1 +45446,1916725,198,9913,1 +45447,1916736,96,4801,1 +45448,1916748,130,6533,1 +45449,1916749,56,2812,1 +45450,1916805,157,7879,1 +45451,1917135,110,5542,1 +45452,1917150,88,4414,1 +45453,1917170,182,9104,1 +45454,1917216,108,5449,1 +45455,1917600,140,7034,1 +45456,1917600,170,8531,1 +45457,1917601,190,9535,1 +45458,1917612,7,390,1 +45459,1917649,39,1961,1 +45460,1917669,147,7398,1 +45461,1917708,166,8313,1 +45462,1917708,119,5980,1 +45463,1917732,140,7002,1 +45464,1918080,47,2364,1 +45465,1918080,66,3337,1 +45466,1918080,85,4277,1 +45467,1918080,162,8127,1 +45468,1918080,31,1554,1 +45469,1918081,94,4749,1 +45470,1918081,185,9285,1 +45471,1918082,127,6357,1 +45472,1918092,25,1299,1 +45473,1918093,99,4982,1 +45474,1918104,69,3472,1 +45475,1918104,83,4193,1 +45476,1918128,158,7938,1 +45477,1918128,44,2224,1 +45478,1918129,169,8478,1 +45479,1918129,181,9073,1 +45480,1918138,114,5732,1 +45481,1918141,60,3004,1 +45482,1918154,53,2690,1 +45483,1918176,176,8827,1 +45484,1918178,186,9329,1 +45485,1918209,80,4050,1 +45486,1918212,91,4596,1 +45487,1918225,49,2495,1 +45488,1918248,53,2657,1 +45489,1918353,27,1357,1 +45490,1918560,159,7990,1 +45491,1918562,174,8745,1 +45492,1918566,143,7194,1 +45493,1918572,127,6400,1 +45494,1918584,31,1578,1 +45495,1918588,125,6263,1 +45496,1918597,4,210,1 +45497,1918620,39,1956,1 +45498,1918656,113,5692,1 +45499,1919520,49,2481,1 +45500,1919520,85,4300,1 +45501,1919521,39,1956,1 +45502,1919523,191,9565,1 +45503,1919523,142,7127,1 +45504,1919526,165,8262,1 +45505,1919529,26,1307,1 +45506,1919532,102,5147,1 +45507,1919532,36,1845,1 +45508,1919532,148,7439,1 +45509,1919538,10,540,1 +45510,1919541,60,3006,1 +45511,1919544,65,3286,1 +45512,1919544,192,9613,1 +45513,1919544,71,3575,1 +45514,1919545,68,3425,1 +45515,1919546,124,6222,1 +45516,1919550,194,9723,1 +45517,1919553,52,2613,1 +45518,1919556,24,1235,1 +45519,1919559,22,1140,1 +45520,1919568,11,558,1 +45521,1919569,66,3316,1 +45522,1919571,23,1187,1 +45523,1919572,37,1875,1 +45524,1919580,103,5179,1 +45525,1919581,52,2631,1 +45526,1919582,11,590,1 +45527,1919604,160,8008,1 +45528,1919610,107,5358,1 +45529,1919617,77,3886,1 +45530,1919630,184,9243,1 +45531,1919641,92,4636,1 +45532,1919660,149,7467,1 +45533,1919664,195,9771,1 +45534,1919681,7,382,1 +45535,1919772,39,1975,1 +45536,1919772,0,23,1 +45537,1920480,149,7480,1 +45538,1920480,94,4732,1 +45539,1920481,140,7027,1 +45540,1920482,171,8572,1 +45541,1920483,30,1522,1 +45542,1920486,145,7280,1 +45543,1920494,17,872,1 +45544,1920496,74,3746,1 +45545,1920498,121,6068,1 +45546,1920504,176,8839,1 +45547,1920516,147,7368,1 +45548,1920517,117,5863,1 +45549,1920525,37,1875,1 +45550,1920528,124,6235,1 +45551,1920528,130,6505,1 +45552,1920534,161,8071,1 +45553,1920546,185,9259,1 +45554,1920558,3,173,1 +45555,1920558,122,6118,1 +45556,1920564,64,3225,1 +45557,1920624,17,882,1 +45558,1921453,168,8409,1 +45559,1921929,134,6702,1 +45560,1921956,18,942,1 +45561,1921968,92,4643,1 +45562,1921969,107,5388,1 +45563,1921992,1,98,1 +45564,1922004,162,8103,1 +45565,1922400,47,2384,1 +45566,1922466,177,8884,1 +45567,1922472,13,699,1 +45568,1922532,163,8157,1 +45569,1922929,28,1428,1 +45570,1923429,3,196,1 +45571,1923543,34,1728,1 +45572,1923840,44,2217,1 +45573,1923841,162,8149,1 +45574,1923841,39,1956,1 +45575,1923842,14,740,1 +45576,1923842,23,1174,1 +45577,1923843,2,124,1 +45578,1923846,78,3949,1 +45579,1923852,80,4011,1 +45580,1923852,189,9484,1 +45581,1923852,136,6844,1 +45582,1923854,36,1814,1 +45583,1923856,163,8195,1 +45584,1923864,122,6141,1 +45585,1923876,192,9616,1 +45586,1923876,183,9200,1 +45587,1923876,72,3611,1 +45588,1923878,114,5701,1 +45589,1923885,189,9458,1 +45590,1923888,48,2421,1 +45591,1923899,185,9279,1 +45592,1923901,28,1424,1 +45593,1923912,89,4459,1 +45594,1923912,17,858,1 +45595,1923924,96,4807,1 +45596,1923924,14,743,1 +45597,1923925,173,8667,1 +45598,1923940,187,9354,1 +45599,1923984,91,4589,1 +45600,1923999,186,9311,1 +45601,1924008,75,3759,1 +45602,1924049,187,9367,1 +45603,1924359,124,6248,1 +45604,1924800,72,3607,1 +45605,1924800,99,4957,1 +45606,1924800,185,9284,1 +45607,1924800,124,6242,1 +45608,1924801,174,8742,1 +45609,1924801,147,7388,1 +45610,1924803,80,4031,1 +45611,1924804,37,1866,1 +45612,1924806,110,5540,1 +45613,1924812,194,9723,1 +45614,1924813,162,8110,1 +45615,1924813,127,6362,1 +45616,1924816,80,4031,1 +45617,1924816,90,4543,1 +45618,1924824,55,2794,1 +45619,1924825,37,1879,1 +45620,1924833,31,1584,1 +45621,1924836,33,1660,1 +45622,1924836,178,8920,1 +45623,1924836,41,2099,1 +45624,1924837,100,5010,1 +45625,1924839,145,7257,1 +45626,1924848,163,8180,1 +45627,1924849,196,9825,1 +45628,1924851,81,4095,1 +45629,1924860,160,8003,1 +45630,1924861,66,3324,1 +45631,1924865,54,2707,1 +45632,1924868,57,2856,1 +45633,1924873,90,4506,1 +45634,1924880,124,6217,1 +45635,1924896,3,188,1 +45636,1924908,103,5167,1 +45637,1924920,182,9117,1 +45638,1924932,96,4808,1 +45639,1924942,169,8455,1 +45640,1924944,82,4150,1 +45641,1924953,174,8718,1 +45642,1924994,76,3825,1 +45643,1925292,21,1058,1 +45644,1925461,148,7420,1 +45645,1925760,152,7616,1 +45646,1925760,24,1244,1 +45647,1925762,20,1042,1 +45648,1925766,122,6150,1 +45649,1925769,174,8724,1 +45650,1925772,72,3650,1 +45651,1925772,152,7646,1 +45652,1925772,183,9197,1 +45653,1925772,196,9821,1 +45654,1925773,38,1907,1 +45655,1925773,127,6356,1 +45656,1925775,64,3205,1 +45657,1925777,95,4780,1 +45658,1925779,124,6213,1 +45659,1925781,14,716,1 +45660,1925784,127,6367,1 +45661,1925784,173,8691,1 +45662,1925785,132,6627,1 +45663,1925786,167,8383,1 +45664,1925796,187,9381,1 +45665,1925796,69,3479,1 +45666,1925800,190,9541,1 +45667,1925802,68,3435,1 +45668,1925802,184,9236,1 +45669,1925818,186,9316,1 +45670,1925821,67,3375,1 +45671,1925822,2,108,1 +45672,1925833,197,9875,1 +45673,1925835,158,7927,1 +45674,1925868,49,2476,1 +45675,1925868,111,5553,1 +45676,1925869,192,9640,1 +45677,1925871,166,8319,1 +45678,1925880,112,5639,1 +45679,1925880,4,226,1 +45680,1925895,2,124,1 +45681,1925895,191,9575,1 +45682,1925908,99,4956,1 +45683,1925913,112,5638,1 +45684,1925940,185,9292,1 +45685,1925977,125,6256,1 +45686,1926001,68,3407,1 +45687,1926240,88,4414,1 +45688,1926240,185,9290,1 +45689,1926240,179,8997,1 +45690,1926240,133,6658,1 +45691,1926241,14,731,1 +45692,1926241,87,4388,1 +45693,1926241,159,7966,1 +45694,1926241,104,5213,1 +45695,1926241,112,5640,1 +45696,1926243,174,8721,1 +45697,1926243,2,126,1 +45698,1926246,80,4019,1 +45699,1926249,181,9084,1 +45700,1926249,70,3507,1 +45701,1926251,51,2570,1 +45702,1926252,109,5487,1 +45703,1926252,42,2147,1 +45704,1926252,107,5363,1 +45705,1926252,24,1235,1 +45706,1926252,114,5730,1 +45707,1926252,25,1281,1 +45708,1926252,9,476,1 +45709,1926252,178,8936,1 +45710,1926253,139,6996,1 +45711,1926253,142,7129,1 +45712,1926254,49,2483,1 +45713,1926258,6,339,1 +45714,1926264,178,8913,1 +45715,1926264,44,2234,1 +45716,1926264,186,9303,1 +45717,1926264,21,1051,1 +45718,1926264,158,7907,1 +45719,1926264,94,4724,1 +45720,1926265,175,8780,1 +45721,1926266,126,6307,1 +45722,1926269,5,293,1 +45723,1926270,22,1116,1 +45724,1926270,62,3140,1 +45725,1926276,119,5952,1 +45726,1926276,64,3244,1 +45727,1926276,19,963,1 +45728,1926276,25,1293,1 +45729,1926279,113,5656,1 +45730,1926279,93,4677,1 +45731,1926279,76,3820,1 +45732,1926288,187,9354,1 +45733,1926295,148,7435,1 +45734,1926300,165,8297,1 +45735,1926300,42,2125,1 +45736,1926300,164,8216,1 +45737,1926302,126,6345,1 +45738,1926305,21,1051,1 +45739,1926312,88,4419,1 +45740,1926313,116,5837,1 +45741,1926324,68,3426,1 +45742,1926337,71,3595,1 +45743,1926357,57,2880,1 +45744,1926363,35,1798,1 +45745,1926373,155,7793,1 +45746,1926429,134,6750,1 +45747,1926468,139,6961,1 +45748,1926541,46,2325,1 +45749,1926732,183,9170,1 +45750,1926733,90,4504,1 +45751,1926744,191,9596,1 +45752,1926744,12,642,1 +45753,1926745,81,4071,1 +45754,1926747,31,1583,1 +45755,1926750,193,9656,1 +45756,1926756,28,1435,1 +45757,1926758,113,5696,1 +45758,1926783,120,6007,1 +45759,1926792,130,6523,1 +45760,1926793,10,523,1 +45761,1926818,168,8437,1 +45762,1926838,101,5058,1 +45763,1926843,182,9105,1 +45764,1926859,67,3357,1 +45765,1926936,112,5633,1 +45766,1927200,22,1137,1 +45767,1927218,107,5378,1 +45768,1927266,196,9824,1 +45769,1927269,73,3698,1 +45770,1927515,165,8291,1 +45771,1927680,71,3561,1 +45772,1927680,71,3566,1 +45773,1927712,19,989,1 +45774,1927725,72,3630,1 +45775,1927734,163,8177,1 +45776,1927765,87,4372,1 +45777,1927812,83,4156,1 +45778,1927860,167,8397,1 +45779,1928640,189,9496,1 +45780,1928640,68,3448,1 +45781,1928640,174,8708,1 +45782,1928640,116,5849,1 +45783,1928652,137,6875,1 +45784,1928653,68,3404,1 +45785,1928670,194,9724,1 +45786,1928679,131,6552,1 +45787,1928691,193,9681,1 +45788,1928691,118,5941,1 +45789,1928701,17,879,1 +45790,1928706,99,4982,1 +45791,1928712,17,857,1 +45792,1928712,196,9841,1 +45793,1928714,169,8482,1 +45794,1928715,101,5078,1 +45795,1928724,167,8398,1 +45796,1928748,124,6204,1 +45797,1928751,131,6596,1 +45798,1928784,76,3840,1 +45799,1928845,151,7588,1 +45800,1929122,87,4400,1 +45801,1929132,189,9495,1 +45802,1930086,113,5675,1 +45803,1930092,188,9447,1 +45804,1930095,122,6111,1 +45805,1930104,147,7382,1 +45806,1930105,47,2391,1 +45807,1930165,151,7600,1 +45808,1930168,180,9049,1 +45809,1930248,112,5629,1 +45810,1930260,11,566,1 +45811,1930344,46,2342,1 +45812,1930560,3,187,1 +45813,1930562,192,9640,1 +45814,1930564,175,8770,1 +45815,1930578,68,3419,1 +45816,1930584,76,3821,1 +45817,1930593,154,7746,1 +45818,1930593,121,6071,1 +45819,1930605,123,6187,1 +45820,1930608,173,8657,1 +45821,1930613,121,6092,1 +45822,1930614,120,6023,1 +45823,1930645,69,3459,1 +45824,1930680,80,4010,1 +45825,1930731,158,7949,1 +45826,1931040,158,7920,1 +45827,1931040,182,9147,1 +45828,1931041,59,2951,1 +45829,1931049,18,946,1 +45830,1931052,131,6565,1 +45831,1931064,143,7158,1 +45832,1931065,23,1164,1 +45833,1931065,185,9270,1 +45834,1931076,16,837,1 +45835,1931076,155,7772,1 +45836,1931082,18,945,1 +45837,1931100,143,7199,1 +45838,1931116,122,6111,1 +45839,1931133,12,636,1 +45840,1931172,110,5539,1 +45841,1931172,102,5139,1 +45842,1931202,79,3994,1 +45843,1931206,79,3961,1 +45844,1931220,16,849,1 +45845,1931262,0,38,1 +45846,1931520,42,2125,1 +45847,1931521,24,1225,1 +45848,1931523,72,3636,1 +45849,1931532,148,7435,1 +45850,1931559,147,7376,1 +45851,1931677,136,6845,1 +45852,1932000,120,6031,1 +45853,1932000,35,1768,1 +45854,1932000,115,5789,1 +45855,1932000,75,3794,1 +45856,1932002,160,8012,1 +45857,1932065,82,4127,1 +45858,1932088,166,8316,1 +45859,1932091,76,3807,1 +45860,1932096,65,3261,1 +45861,1933020,94,4705,1 +45862,1933021,58,2910,1 +45863,1933440,47,2388,1 +45864,1933446,3,192,1 +45865,1933465,94,4708,1 +45866,1933476,26,1331,1 +45867,1933496,27,1361,1 +45868,1933524,185,9296,1 +45869,1933591,117,5895,1 +45870,1933938,136,6848,1 +45871,1933969,103,5192,1 +45872,1934400,27,1366,1 +45873,1934400,31,1585,1 +45874,1934400,43,2152,1 +45875,1934401,32,1646,1 +45876,1934402,42,2103,1 +45877,1934402,0,28,1 +45878,1934404,187,9389,1 +45879,1934409,14,741,1 +45880,1934411,109,5472,1 +45881,1934412,165,8251,1 +45882,1934412,166,8311,1 +45883,1934414,78,3935,1 +45884,1934415,121,6056,1 +45885,1934421,69,3461,1 +45886,1934424,51,2563,1 +45887,1934424,4,239,1 +45888,1934424,182,9132,1 +45889,1934424,6,334,1 +45890,1934425,33,1681,1 +45891,1934427,55,2760,1 +45892,1934431,196,9844,1 +45893,1934433,172,8606,1 +45894,1934436,53,2682,1 +45895,1934436,6,346,1 +45896,1934442,15,790,1 +45897,1934448,149,7465,1 +45898,1934454,131,6584,1 +45899,1934463,86,4312,1 +45900,1934463,187,9358,1 +45901,1934481,163,8174,1 +45902,1934485,3,168,1 +45903,1934485,105,5288,1 +45904,1934508,27,1397,1 +45905,1934514,123,6187,1 +45906,1934514,168,8445,1 +45907,1934532,65,3277,1 +45908,1934556,49,2482,1 +45909,1934568,198,9911,1 +45910,1934578,173,8669,1 +45911,1934581,26,1342,1 +45912,1934707,151,7560,1 +45913,1934713,1,86,1 +45914,1934883,198,9907,1 +45915,1934886,197,9883,1 +45916,1934917,130,6550,1 +45917,1934933,84,4232,1 +45918,1934961,161,8051,1 +45919,1935360,140,7008,1 +45920,1935361,121,6082,1 +45921,1935361,47,2389,1 +45922,1935372,137,6863,1 +45923,1935374,46,2348,1 +45924,1935397,191,9593,1 +45925,1935398,89,4455,1 +45926,1935408,37,1853,1 +45927,1935420,100,5045,1 +45928,1935685,144,7212,1 +45929,1935840,37,1886,1 +45930,1935894,121,6091,1 +45931,1936320,64,3226,1 +45932,1936321,26,1305,1 +45933,1936323,182,9121,1 +45934,1936324,102,5120,1 +45935,1936332,88,4405,1 +45936,1936332,197,9898,1 +45937,1936341,62,3142,1 +45938,1936347,88,4444,1 +45939,1936347,129,6499,1 +45940,1936347,139,6992,1 +45941,1936359,142,7126,1 +45942,1936359,139,6953,1 +45943,1936380,103,5195,1 +45944,1936383,124,6231,1 +45945,1936392,175,8753,1 +45946,1936405,180,9021,1 +45947,1936416,102,5122,1 +45948,1936453,30,1533,1 +45949,1936512,67,3381,1 +45950,1936809,91,4573,1 +45951,1936810,0,25,1 +45952,1936812,127,6353,1 +45953,1936812,174,8738,1 +45954,1936812,173,8694,1 +45955,1936812,85,4291,1 +45956,1936813,152,7605,1 +45957,1936813,45,2298,1 +45958,1936824,136,6844,1 +45959,1936842,43,2173,1 +45960,1936849,171,8560,1 +45961,1936864,85,4286,1 +45962,1936908,75,3771,1 +45963,1937007,105,5280,1 +45964,1937280,59,2962,1 +45965,1937281,72,3631,1 +45966,1937281,47,2385,1 +45967,1937290,184,9236,1 +45968,1937294,41,2064,1 +45969,1937304,54,2718,1 +45970,1937316,123,6179,1 +45971,1937317,39,1958,1 +45972,1937330,40,2044,1 +45973,1937355,55,2762,1 +45974,1937370,150,7547,1 +45975,1937385,99,4953,1 +45976,1937398,163,8184,1 +45977,1937400,56,2806,1 +45978,1937412,38,1912,1 +45979,1937414,107,5376,1 +45980,1937454,44,2224,1 +45981,1937760,137,6861,1 +45982,1937760,26,1329,1 +45983,1937761,80,4019,1 +45984,1937772,192,9640,1 +45985,1937773,107,5367,1 +45986,1937775,117,5862,1 +45987,1937790,67,3400,1 +45988,1937820,90,4519,1 +45989,1937824,134,6748,1 +45990,1937832,46,2324,1 +45991,1937833,34,1732,1 +45992,1937848,136,6826,1 +45993,1937857,52,2612,1 +45994,1937905,156,7803,1 +45995,1937916,44,2209,1 +45996,1937928,159,7963,1 +45997,1937933,51,2573,1 +45998,1938261,176,8819,1 +45999,1938720,128,6428,1 +46000,1938720,191,9577,1 +46001,1938720,115,5753,1 +46002,1938721,114,5748,1 +46003,1938721,126,6312,1 +46004,1938723,87,4377,1 +46005,1938723,176,8844,1 +46006,1938723,171,8558,1 +46007,1938726,48,2423,1 +46008,1938727,59,2962,1 +46009,1938729,2,116,1 +46010,1938732,161,8092,1 +46011,1938732,137,6857,1 +46012,1938732,22,1114,1 +46013,1938732,68,3434,1 +46014,1938732,141,7074,1 +46015,1938732,141,7073,1 +46016,1938733,117,5898,1 +46017,1938733,116,5839,1 +46018,1938736,8,424,1 +46019,1938744,33,1687,1 +46020,1938745,127,6395,1 +46021,1938745,47,2354,1 +46022,1938747,176,8844,1 +46023,1938750,82,4121,1 +46024,1938750,44,2242,1 +46025,1938756,15,784,1 +46026,1938756,54,2720,1 +46027,1938756,147,7357,1 +46028,1938757,145,7266,1 +46029,1938758,100,5018,1 +46030,1938765,179,8988,1 +46031,1938765,113,5697,1 +46032,1938768,158,7927,1 +46033,1938768,104,5233,1 +46034,1938769,127,6365,1 +46035,1938769,110,5541,1 +46036,1938769,188,9413,1 +46037,1938771,80,4037,1 +46038,1938775,122,6149,1 +46039,1938778,77,3887,1 +46040,1938780,119,5963,1 +46041,1938781,170,8529,1 +46042,1938786,100,5019,1 +46043,1938790,91,4576,1 +46044,1938792,108,5442,1 +46045,1938792,159,7976,1 +46046,1938793,48,2445,1 +46047,1938804,28,1420,1 +46048,1938805,144,7201,1 +46049,1938807,92,4631,1 +46050,1938816,46,2342,1 +46051,1938817,35,1800,1 +46052,1938820,80,4037,1 +46053,1938828,64,3203,1 +46054,1938840,91,4571,1 +46055,1938846,99,5000,1 +46056,1938853,118,5913,1 +46057,1938864,64,3211,1 +46058,1938871,56,2812,1 +46059,1938877,36,1809,1 +46060,1938924,52,2637,1 +46061,1939093,113,5656,1 +46062,1939200,184,9235,1 +46063,1939210,129,6490,1 +46064,1939224,152,7608,1 +46065,1939249,36,1837,1 +46066,1939296,112,5638,1 +46067,1939308,119,5957,1 +46068,1939308,147,7353,1 +46069,1939380,171,8599,1 +46070,1939720,23,1178,1 +46071,1939740,111,5582,1 +46072,1940161,9,480,1 +46073,1940164,125,6295,1 +46074,1940173,140,7003,1 +46075,1940173,198,9949,1 +46076,1940197,130,6511,1 +46077,1940205,160,8025,1 +46078,1940209,101,5067,1 +46079,1940220,50,2546,1 +46080,1940233,185,9268,1 +46081,1940256,15,764,1 +46082,1940292,111,5590,1 +46083,1940340,31,1557,1 +46084,1940640,158,7938,1 +46085,1940652,66,3311,1 +46086,1940655,95,4760,1 +46087,1940664,178,8947,1 +46088,1940670,117,5861,1 +46089,1940674,10,502,1 +46090,1940676,26,1350,1 +46091,1940676,49,2457,1 +46092,1940688,143,7198,1 +46093,1940701,27,1367,1 +46094,1940726,199,9954,1 +46095,1940726,35,1767,1 +46096,1940736,174,8711,1 +46097,1940799,108,5437,1 +46098,1940809,50,2547,1 +46099,1941120,68,3409,1 +46100,1941120,139,6999,1 +46101,1941120,80,4043,1 +46102,1941120,106,5312,1 +46103,1941121,179,8964,1 +46104,1941122,117,5861,1 +46105,1941127,174,8731,1 +46106,1941132,104,5214,1 +46107,1941133,54,2721,1 +46108,1941157,18,918,1 +46109,1941168,61,3096,1 +46110,1941168,145,7291,1 +46111,1941168,94,4734,1 +46112,1941168,180,9047,1 +46113,1941168,107,5390,1 +46114,1941186,0,2,1 +46115,1941187,71,3574,1 +46116,1941187,159,7984,1 +46117,1941195,199,9981,1 +46118,1941199,21,1053,1 +46119,1941213,14,726,1 +46120,1941228,5,293,1 +46121,1941300,70,3512,1 +46122,1941302,40,2035,1 +46123,1941313,64,3211,1 +46124,1941434,188,9439,1 +46125,1941600,126,6319,1 +46126,1941600,118,5922,1 +46127,1941600,30,1549,1 +46128,1941600,180,9050,1 +46129,1941600,184,9236,1 +46130,1941600,56,2808,1 +46131,1941601,72,3618,1 +46132,1941603,29,1500,1 +46133,1941603,195,9791,1 +46134,1941606,106,5327,1 +46135,1941606,59,2985,1 +46136,1941607,153,7670,1 +46137,1941609,92,4609,1 +46138,1941612,155,7778,1 +46139,1941612,35,1771,1 +46140,1941612,20,1024,1 +46141,1941612,95,4770,1 +46142,1941615,124,6232,1 +46143,1941615,48,2419,1 +46144,1941618,27,1359,1 +46145,1941620,173,8682,1 +46146,1941622,17,877,1 +46147,1941624,148,7409,1 +46148,1941624,47,2351,1 +46149,1941630,111,5590,1 +46150,1941636,51,2568,1 +46151,1941636,79,3976,1 +46152,1941641,169,8470,1 +46153,1941648,1,85,1 +46154,1941651,88,4443,1 +46155,1941655,113,5655,1 +46156,1941658,177,8893,1 +46157,1941660,15,755,1 +46158,1941660,86,4332,1 +46159,1941672,159,7993,1 +46160,1941678,177,8864,1 +46161,1941681,191,9563,1 +46162,1941685,141,7067,1 +46163,1941685,71,3593,1 +46164,1941696,157,7868,1 +46165,1941696,99,4956,1 +46166,1941711,157,7889,1 +46167,1941732,167,8395,1 +46168,1941732,92,4631,1 +46169,1941747,115,5787,1 +46170,1941757,71,3583,1 +46171,1941768,135,6780,1 +46172,1941801,190,9530,1 +46173,1941840,159,7971,1 +46174,1941938,134,6712,1 +46175,1941972,120,6034,1 +46176,1942003,189,9461,1 +46177,1942166,110,5533,1 +46178,1942560,163,8177,1 +46179,1942560,19,998,1 +46180,1942560,141,7067,1 +46181,1942572,130,6530,1 +46182,1942573,102,5112,1 +46183,1942585,34,1739,1 +46184,1942600,147,7393,1 +46185,1942608,152,7645,1 +46186,1942609,148,7431,1 +46187,1942622,185,9286,1 +46188,1942632,155,7779,1 +46189,1942632,185,9285,1 +46190,1942633,50,2504,1 +46191,1942641,41,2097,1 +46192,1942644,63,3176,1 +46193,1942644,168,8446,1 +46194,1942644,86,4346,1 +46195,1942656,79,3972,1 +46196,1942824,155,7788,1 +46197,1943040,181,9067,1 +46198,1943040,184,9248,1 +46199,1943040,165,8300,1 +46200,1943040,127,6351,1 +46201,1943041,119,5954,1 +46202,1943041,128,6403,1 +46203,1943043,183,9182,1 +46204,1943043,136,6801,1 +46205,1943046,1,74,1 +46206,1943049,74,3736,1 +46207,1943054,0,19,1 +46208,1943058,26,1325,1 +46209,1943058,63,3184,1 +46210,1943064,166,8315,1 +46211,1943064,102,5106,1 +46212,1943065,57,2874,1 +46213,1943066,50,2530,1 +46214,1943073,160,8045,1 +46215,1943076,147,7398,1 +46216,1943076,175,8766,1 +46217,1943078,56,2827,1 +46218,1943079,116,5839,1 +46219,1943088,135,6785,1 +46220,1943089,12,601,1 +46221,1943113,13,680,1 +46222,1943113,25,1257,1 +46223,1943121,180,9014,1 +46224,1943124,119,5960,1 +46225,1943126,86,4327,1 +46226,1943136,15,759,1 +46227,1943138,12,634,1 +46228,1943149,8,403,1 +46229,1943172,22,1148,1 +46230,1943181,189,9486,1 +46231,1943184,168,8444,1 +46232,1943220,162,8101,1 +46233,1943220,174,8738,1 +46234,1943224,3,167,1 +46235,1943316,12,640,1 +46236,1943520,188,9440,1 +46237,1943520,59,2977,1 +46238,1943520,12,614,1 +46239,1943520,66,3331,1 +46240,1943521,91,4598,1 +46241,1943530,1,60,1 +46242,1943532,39,1960,1 +46243,1943542,126,6344,1 +46244,1943545,107,5367,1 +46245,1943547,39,1970,1 +46246,1943547,163,8159,1 +46247,1943551,117,5900,1 +46248,1943554,109,5472,1 +46249,1943556,75,3774,1 +46250,1943559,158,7922,1 +46251,1943568,106,5341,1 +46252,1943568,117,5869,1 +46253,1943568,17,878,1 +46254,1943569,71,3560,1 +46255,1943571,59,2986,1 +46256,1943572,78,3918,1 +46257,1943572,178,8910,1 +46258,1943577,173,8690,1 +46259,1943579,110,5512,1 +46260,1943580,132,6623,1 +46261,1943593,58,2945,1 +46262,1943595,102,5143,1 +46263,1943617,23,1179,1 +46264,1943626,107,5359,1 +46265,1943627,178,8922,1 +46266,1943628,47,2382,1 +46267,1943628,165,8257,1 +46268,1943652,144,7223,1 +46269,1943664,111,5598,1 +46270,1943851,110,5542,1 +46271,1944000,137,6858,1 +46272,1944000,2,133,1 +46273,1944000,194,9736,1 +46274,1944001,67,3379,1 +46275,1944005,176,8805,1 +46276,1944012,63,3180,1 +46277,1944018,133,6653,1 +46278,1944036,31,1591,1 +46279,1944036,25,1284,1 +46280,1944037,29,1496,1 +46281,1944042,104,5213,1 +46282,1944045,52,2602,1 +46283,1944051,130,6522,1 +46284,1944057,42,2147,1 +46285,1944060,23,1162,1 +46286,1944060,169,8465,1 +46287,1944060,59,2964,1 +46288,1944061,108,5402,1 +46289,1944096,147,7378,1 +46290,1944108,192,9619,1 +46291,1944108,130,6540,1 +46292,1944120,51,2593,1 +46293,1944121,69,3500,1 +46294,1944144,129,6463,1 +46295,1944209,152,7601,1 +46296,1944237,87,4383,1 +46297,1944265,196,9815,1 +46298,1944528,108,5406,1 +46299,1944960,81,4088,1 +46300,1944966,53,2687,1 +46301,1944969,160,8031,1 +46302,1944981,95,4763,1 +46303,1944984,115,5751,1 +46304,1944990,56,2821,1 +46305,1944996,175,8768,1 +46306,1945027,130,6550,1 +46307,1945032,64,3248,1 +46308,1945050,119,5985,1 +46309,1945944,170,8524,1 +46310,1945968,70,3532,1 +46311,1945992,76,3807,1 +46312,1945992,99,4996,1 +46313,1946006,18,909,1 +46314,1946029,21,1053,1 +46315,1946046,6,329,1 +46316,1946400,58,2946,1 +46317,1946400,92,4605,1 +46318,1946400,129,6454,1 +46319,1946401,197,9868,1 +46320,1946409,140,7003,1 +46321,1946412,54,2740,1 +46322,1946412,191,9580,1 +46323,1946412,130,6523,1 +46324,1946413,97,4898,1 +46325,1946414,15,752,1 +46326,1946422,191,9599,1 +46327,1946424,150,7510,1 +46328,1946424,74,3739,1 +46329,1946427,121,6062,1 +46330,1946427,19,968,1 +46331,1946428,129,6487,1 +46332,1946442,37,1900,1 +46333,1946448,80,4003,1 +46334,1946454,115,5774,1 +46335,1946460,46,2334,1 +46336,1946484,149,7451,1 +46337,1946510,42,2137,1 +46338,1946534,61,3072,1 +46339,1946544,143,7191,1 +46340,1946592,24,1249,1 +46341,1946661,185,9293,1 +46342,1946884,180,9020,1 +46343,1946886,159,7988,1 +46344,1946889,39,1965,1 +46345,1946892,74,3724,1 +46346,1946907,39,1973,1 +46347,1946916,46,2311,1 +46348,1946954,116,5824,1 +46349,1947372,164,8217,1 +46350,1947373,184,9212,1 +46351,1947432,194,9722,1 +46352,1947433,12,621,1 +46353,1947840,193,9656,1 +46354,1947853,37,1894,1 +46355,1947855,100,5010,1 +46356,1947861,193,9695,1 +46357,1947889,165,8283,1 +46358,1947900,129,6466,1 +46359,1948336,8,422,1 +46360,1948392,146,7334,1 +46361,1948405,130,6540,1 +46362,1948464,56,2827,1 +46363,1948512,160,8036,1 +46364,1948800,136,6822,1 +46365,1948800,45,2265,1 +46366,1948812,32,1617,1 +46367,1948812,25,1293,1 +46368,1948812,7,378,1 +46369,1948812,35,1755,1 +46370,1948812,35,1765,1 +46371,1948815,159,7996,1 +46372,1948821,118,5909,1 +46373,1948824,94,4745,1 +46374,1948824,177,8895,1 +46375,1948827,34,1704,1 +46376,1948833,153,7656,1 +46377,1948837,169,8489,1 +46378,1948838,59,2995,1 +46379,1948848,135,6751,1 +46380,1948857,155,7794,1 +46381,1948860,64,3247,1 +46382,1948874,25,1286,1 +46383,1948899,50,2516,1 +46384,1948905,170,8517,1 +46385,1948906,112,5641,1 +46386,1948944,127,6355,1 +46387,1948944,59,2975,1 +46388,1949304,7,384,1 +46389,1949313,137,6878,1 +46390,1949321,188,9406,1 +46391,1949322,102,5149,1 +46392,1949358,46,2312,1 +46393,1949364,146,7318,1 +46394,1950240,96,4834,1 +46395,1950240,19,1000,1 +46396,1950240,36,1848,1 +46397,1950243,45,2265,1 +46398,1950252,103,5151,1 +46399,1950253,98,4947,1 +46400,1950264,63,3190,1 +46401,1950264,90,4517,1 +46402,1950264,166,8309,1 +46403,1950283,7,391,1 +46404,1950303,174,8717,1 +46405,1950309,188,9423,1 +46406,1950349,76,3801,1 +46407,1950351,85,4275,1 +46408,1950372,113,5670,1 +46409,1950372,129,6494,1 +46410,1950398,198,9927,1 +46411,1950525,5,272,1 +46412,1950745,80,4039,1 +46413,1950756,87,4392,1 +46414,1950756,100,5003,1 +46415,1950769,99,4987,1 +46416,1950770,116,5823,1 +46417,1950780,59,2978,1 +46418,1950780,97,4869,1 +46419,1950841,181,9072,1 +46420,1950888,27,1396,1 +46421,1951224,163,8154,1 +46422,1951224,88,4444,1 +46423,1951258,114,5727,1 +46424,1951284,121,6099,1 +46425,1951285,23,1172,1 +46426,1951286,90,4504,1 +46427,1951286,156,7815,1 +46428,1951686,58,2946,1 +46429,1951695,177,8893,1 +46430,1951704,152,7638,1 +46431,1951716,98,4926,1 +46432,1951719,40,2023,1 +46433,1951728,67,3369,1 +46434,1951728,157,7862,1 +46435,1951729,136,6819,1 +46436,1951731,54,2739,1 +46437,1951740,167,8386,1 +46438,1951770,188,9425,1 +46439,1951777,182,9129,1 +46440,1951825,178,8942,1 +46441,1952160,97,4860,1 +46442,1952163,13,653,1 +46443,1952163,174,8750,1 +46444,1952175,154,7733,1 +46445,1952184,1,96,1 +46446,1952187,11,571,1 +46447,1952197,81,4075,1 +46448,1952199,104,5235,1 +46449,1952642,183,9183,1 +46450,1953120,109,5464,1 +46451,1953120,63,3167,1 +46452,1953132,33,1674,1 +46453,1953135,175,8799,1 +46454,1953144,74,3721,1 +46455,1953147,47,2357,1 +46456,1953228,100,5011,1 +46457,1953609,87,4363,1 +46458,1953672,39,1961,1 +46459,1953696,161,8051,1 +46460,1953744,153,7685,1 +46461,1954080,94,4731,1 +46462,1954082,182,9148,1 +46463,1954101,187,9383,1 +46464,1954104,83,4196,1 +46465,1954116,106,5338,1 +46466,1954128,152,7602,1 +46467,1954176,89,4488,1 +46468,1954565,179,8980,1 +46469,1954585,22,1133,1 +46470,1954608,193,9672,1 +46471,1954608,4,213,1 +46472,1954621,25,1278,1 +46473,1954621,18,922,1 +46474,1954633,79,3968,1 +46475,1954634,60,3044,1 +46476,1954830,81,4086,1 +46477,1955042,169,8478,1 +46478,1955065,6,314,1 +46479,1955100,89,4463,1 +46480,1955538,97,4870,1 +46481,1955595,176,8822,1 +46482,1955705,90,4537,1 +46483,1956000,56,2817,1 +46484,1956000,92,4619,1 +46485,1956012,56,2829,1 +46486,1956027,198,9904,1 +46487,1956048,122,6135,1 +46488,1956049,15,763,1 +46489,1956133,31,1585,1 +46490,1956141,138,6919,1 +46491,1956480,93,4657,1 +46492,1956480,137,6898,1 +46493,1956480,59,2994,1 +46494,1956480,35,1757,1 +46495,1956489,78,3903,1 +46496,1956492,143,7190,1 +46497,1956493,41,2078,1 +46498,1956504,10,527,1 +46499,1956507,56,2834,1 +46500,1956516,93,4672,1 +46501,1956519,164,8206,1 +46502,1956528,77,3855,1 +46503,1956547,67,3354,1 +46504,1956579,101,5054,1 +46505,1956594,169,8462,1 +46506,1956615,92,4612,1 +46507,1956637,24,1217,1 +46508,1956972,37,1893,1 +46509,1956984,28,1449,1 +46510,1956990,74,3707,1 +46511,1956996,31,1574,1 +46512,1957442,85,4252,1 +46513,1957476,165,8255,1 +46514,1957476,152,7634,1 +46515,1957479,181,9059,1 +46516,1957488,68,3423,1 +46517,1957488,154,7731,1 +46518,1957512,85,4272,1 +46519,1957518,97,4860,1 +46520,1957587,157,7857,1 +46521,1957717,165,8282,1 +46522,1957944,6,323,1 +46523,1958032,126,6313,1 +46524,1958400,73,3663,1 +46525,1958400,117,5881,1 +46526,1958400,117,5893,1 +46527,1958401,66,3317,1 +46528,1958401,32,1603,1 +46529,1958402,172,8604,1 +46530,1958402,180,9007,1 +46531,1958403,70,3530,1 +46532,1958404,189,9485,1 +46533,1958404,90,4550,1 +46534,1958406,59,2991,1 +46535,1958412,116,5833,1 +46536,1958413,15,788,1 +46537,1958415,150,7508,1 +46538,1958424,100,5020,1 +46539,1958424,31,1596,1 +46540,1958426,83,4176,1 +46541,1958428,123,6198,1 +46542,1958433,91,4578,1 +46543,1958434,151,7594,1 +46544,1958436,140,7002,1 +46545,1958436,48,2403,1 +46546,1958438,79,3987,1 +46547,1958448,98,4921,1 +46548,1958448,117,5868,1 +46549,1958448,196,9812,1 +46550,1958448,63,3167,1 +46551,1958449,119,5960,1 +46552,1958457,16,836,1 +46553,1958461,127,6351,1 +46554,1958461,10,521,1 +46555,1958462,187,9385,1 +46556,1958472,166,8335,1 +46557,1958473,56,2839,1 +46558,1958473,110,5521,1 +46559,1958475,55,2788,1 +46560,1958477,181,9069,1 +46561,1958488,186,9315,1 +46562,1958490,92,4601,1 +46563,1958494,5,261,1 +46564,1958496,14,730,1 +46565,1958510,118,5923,1 +46566,1958511,16,814,1 +46567,1958511,169,8457,1 +46568,1958520,126,6344,1 +46569,1958533,121,6079,1 +46570,1958534,1,95,1 +46571,1958541,124,6213,1 +46572,1958542,171,8560,1 +46573,1958557,38,1928,1 +46574,1958588,27,1374,1 +46575,1958880,66,3348,1 +46576,1958904,173,8671,1 +46577,1958953,29,1460,1 +46578,1959372,177,8862,1 +46579,1959384,106,5316,1 +46580,1959404,108,5437,1 +46581,1959411,19,964,1 +46582,1959924,53,2680,1 +46583,1959925,167,8382,1 +46584,1959925,93,4700,1 +46585,1960836,26,1319,1 +46586,1961282,80,4020,1 +46587,1961760,163,8154,1 +46588,1961761,37,1873,1 +46589,1961769,122,6125,1 +46590,1961772,4,228,1 +46591,1961772,114,5708,1 +46592,1961783,93,4691,1 +46593,1961784,197,9873,1 +46594,1961784,61,3075,1 +46595,1961805,42,2128,1 +46596,1961808,10,515,1 +46597,1961808,106,5318,1 +46598,1961821,48,2429,1 +46599,1961855,76,3816,1 +46600,1961928,138,6945,1 +46601,1961954,2,104,1 +46602,1961976,46,2318,1 +46603,1962006,174,8709,1 +46604,1962240,189,9486,1 +46605,1962720,62,3110,1 +46606,1962732,195,9770,1 +46607,1962732,88,4426,1 +46608,1962732,61,3094,1 +46609,1962733,162,8130,1 +46610,1962750,134,6704,1 +46611,1962756,169,8454,1 +46612,1962757,24,1247,1 +46613,1962762,90,4529,1 +46614,1962769,62,3105,1 +46615,1962817,3,177,1 +46616,1962822,180,9020,1 +46617,1962838,156,7829,1 +46618,1962840,140,7013,1 +46619,1962846,134,6741,1 +46620,1962925,152,7623,1 +46621,1962981,92,4605,1 +46622,1963200,145,7269,1 +46623,1963213,128,6424,1 +46624,1963213,102,5129,1 +46625,1963251,25,1267,1 +46626,1963266,194,9739,1 +46627,1963268,76,3850,1 +46628,1963279,195,9798,1 +46629,1963680,190,9533,1 +46630,1963680,119,5953,1 +46631,1963680,0,29,1 +46632,1963680,146,7345,1 +46633,1963680,63,3154,1 +46634,1963681,177,8897,1 +46635,1963681,157,7868,1 +46636,1963684,13,654,1 +46637,1963686,59,2978,1 +46638,1963686,105,5252,1 +46639,1963687,198,9938,1 +46640,1963690,13,691,1 +46641,1963692,83,4168,1 +46642,1963692,70,3541,1 +46643,1963696,114,5742,1 +46644,1963703,26,1333,1 +46645,1963704,13,656,1 +46646,1963704,110,5531,1 +46647,1963704,130,6532,1 +46648,1963705,46,2330,1 +46649,1963713,196,9819,1 +46650,1963716,174,8727,1 +46651,1963729,117,5897,1 +46652,1963740,109,5480,1 +46653,1963740,64,3213,1 +46654,1963740,80,4005,1 +46655,1963740,133,6675,1 +46656,1963748,164,8208,1 +46657,1963750,83,4197,1 +46658,1963752,14,707,1 +46659,1963765,66,3303,1 +46660,1963767,75,3798,1 +46661,1963767,149,7453,1 +46662,1963788,70,3501,1 +46663,1963791,181,9083,1 +46664,1963796,87,4360,1 +46665,1963824,6,317,1 +46666,1964064,145,7254,1 +46667,1964174,96,4809,1 +46668,1964184,48,2439,1 +46669,1964184,153,7668,1 +46670,1964317,136,6830,1 +46671,1964645,58,2931,1 +46672,1964648,78,3912,1 +46673,1964654,45,2282,1 +46674,1964675,66,3337,1 +46675,1964678,86,4319,1 +46676,1964726,92,4624,1 +46677,1964778,1,54,1 +46678,1965120,62,3112,1 +46679,1965120,145,7254,1 +46680,1965120,155,7796,1 +46681,1965120,153,7679,1 +46682,1965120,161,8089,1 +46683,1965120,66,3348,1 +46684,1965120,190,9503,1 +46685,1965120,47,2364,1 +46686,1965121,94,4732,1 +46687,1965121,171,8574,1 +46688,1965127,31,1598,1 +46689,1965132,43,2194,1 +46690,1965132,123,6186,1 +46691,1965132,59,2997,1 +46692,1965132,96,4801,1 +46693,1965133,73,3696,1 +46694,1965133,121,6095,1 +46695,1965134,165,8292,1 +46696,1965144,73,3682,1 +46697,1965144,24,1218,1 +46698,1965144,164,8233,1 +46699,1965145,175,8770,1 +46700,1965147,29,1490,1 +46701,1965148,22,1137,1 +46702,1965157,130,6508,1 +46703,1965159,183,9188,1 +46704,1965159,76,3834,1 +46705,1965168,95,4751,1 +46706,1965168,138,6927,1 +46707,1965178,92,4624,1 +46708,1965184,119,5974,1 +46709,1965192,149,7484,1 +46710,1965192,148,7436,1 +46711,1965193,164,8228,1 +46712,1965196,9,476,1 +46713,1965197,21,1059,1 +46714,1965220,198,9943,1 +46715,1965228,87,4384,1 +46716,1965252,17,857,1 +46717,1965253,53,2671,1 +46718,1965253,161,8094,1 +46719,1965270,53,2680,1 +46720,1965277,44,2238,1 +46721,1965326,11,552,1 +46722,1965349,158,7923,1 +46723,1965600,198,9937,1 +46724,1965601,43,2187,1 +46725,1965601,60,3016,1 +46726,1965604,96,4808,1 +46727,1965612,194,9724,1 +46728,1965612,83,4172,1 +46729,1965612,196,9810,1 +46730,1965636,159,7960,1 +46731,1965639,69,3495,1 +46732,1965684,5,287,1 +46733,1965687,48,2448,1 +46734,1965696,22,1103,1 +46735,1965702,9,490,1 +46736,1965732,57,2856,1 +46737,1965768,43,2185,1 +46738,1965802,103,5155,1 +46739,1965828,5,299,1 +46740,1966107,97,4875,1 +46741,1966122,44,2227,1 +46742,1966236,60,3048,1 +46743,1966560,131,6566,1 +46744,1966572,131,6555,1 +46745,1967124,42,2127,1 +46746,1967185,175,8773,1 +46747,1967202,79,3983,1 +46748,1968000,47,2360,1 +46749,1968009,189,9484,1 +46750,1968014,43,2159,1 +46751,1968018,43,2164,1 +46752,1968018,190,9528,1 +46753,1968025,133,6672,1 +46754,1968030,115,5765,1 +46755,1968036,35,1764,1 +46756,1968048,130,6546,1 +46757,1968049,23,1155,1 +46758,1968078,104,5222,1 +46759,1968084,8,402,1 +46760,1968085,26,1307,1 +46761,1968096,61,3079,1 +46762,1968099,134,6735,1 +46763,1968206,171,8586,1 +46764,1968480,50,2523,1 +46765,1968481,184,9202,1 +46766,1968483,190,9502,1 +46767,1968483,20,1048,1 +46768,1968484,62,3108,1 +46769,1968490,169,8476,1 +46770,1968494,93,4680,1 +46771,1968494,141,7058,1 +46772,1968504,171,8581,1 +46773,1968504,31,1554,1 +46774,1968504,141,7082,1 +46775,1968516,193,9656,1 +46776,1968528,68,3420,1 +46777,1968528,16,847,1 +46778,1968528,155,7772,1 +46779,1968537,1,93,1 +46780,1968541,149,7465,1 +46781,1968543,192,9610,1 +46782,1968546,195,9764,1 +46783,1968552,174,8716,1 +46784,1968559,8,441,1 +46785,1968560,61,3095,1 +46786,1968564,138,6942,1 +46787,1968569,53,2663,1 +46788,1968577,65,3256,1 +46789,1968588,91,4578,1 +46790,1968648,186,9322,1 +46791,1968657,11,554,1 +46792,1968660,88,4433,1 +46793,1968660,58,2910,1 +46794,1968780,42,2128,1 +46795,1968963,21,1085,1 +46796,1968971,57,2861,1 +46797,1968972,53,2699,1 +46798,1968973,112,5643,1 +46799,1968975,183,9182,1 +46800,1968978,1,93,1 +46801,1968984,162,8122,1 +46802,1968984,91,4561,1 +46803,1968986,18,927,1 +46804,1968995,171,8556,1 +46805,1968996,4,239,1 +46806,1969014,197,9852,1 +46807,1969032,17,863,1 +46808,1969033,90,4545,1 +46809,1969038,142,7133,1 +46810,1969047,83,4195,1 +46811,1969104,52,2638,1 +46812,1969105,63,3189,1 +46813,1969440,137,6882,1 +46814,1969441,198,9916,1 +46815,1969442,18,911,1 +46816,1969442,74,3713,1 +46817,1969452,115,5782,1 +46818,1969452,34,1704,1 +46819,1969453,97,4868,1 +46820,1969456,5,281,1 +46821,1969464,16,825,1 +46822,1969464,110,5514,1 +46823,1969476,100,5013,1 +46824,1969476,163,8168,1 +46825,1969476,3,197,1 +46826,1969485,141,7086,1 +46827,1969488,109,5480,1 +46828,1969488,78,3947,1 +46829,1969489,8,434,1 +46830,1969489,62,3112,1 +46831,1969489,90,4526,1 +46832,1969500,172,8621,1 +46833,1969507,6,307,1 +46834,1969510,195,9766,1 +46835,1969522,57,2891,1 +46836,1969536,167,8369,1 +46837,1969572,22,1116,1 +46838,1969573,80,4041,1 +46839,1969587,137,6853,1 +46840,1969593,78,3931,1 +46841,1969647,39,1968,1 +46842,1969920,178,8906,1 +46843,1969929,109,5474,1 +46844,1969932,70,3536,1 +46845,1969933,30,1546,1 +46846,1969933,85,4263,1 +46847,1969934,196,9850,1 +46848,1970016,164,8229,1 +46849,1970411,62,3149,1 +46850,1970425,21,1075,1 +46851,1970448,162,8115,1 +46852,1970460,145,7276,1 +46853,1970472,49,2473,1 +46854,1971429,27,1352,1 +46855,1971445,154,7703,1 +46856,1971840,69,3480,1 +46857,1971840,147,7396,1 +46858,1971852,124,6230,1 +46859,1971864,105,5265,1 +46860,1971864,70,3525,1 +46861,1971865,128,6433,1 +46862,1971876,175,8771,1 +46863,1971900,124,6229,1 +46864,1971965,119,5979,1 +46865,1972000,187,9366,1 +46866,1972074,89,4490,1 +46867,1972320,114,5713,1 +46868,1972321,9,463,1 +46869,1972322,129,6489,1 +46870,1972329,157,7866,1 +46871,1972332,26,1315,1 +46872,1972335,85,4269,1 +46873,1972335,86,4323,1 +46874,1972360,68,3410,1 +46875,1972385,185,9278,1 +46876,1972405,30,1535,1 +46877,1972416,183,9182,1 +46878,1972732,44,2250,1 +46879,1972812,114,5715,1 +46880,1972824,82,4103,1 +46881,1972842,144,7223,1 +46882,1972860,198,9915,1 +46883,1973304,69,3493,1 +46884,1973325,121,6064,1 +46885,1973760,199,9971,1 +46886,1973760,154,7726,1 +46887,1973760,100,5028,1 +46888,1973760,3,187,1 +46889,1973760,32,1650,1 +46890,1973761,54,2736,1 +46891,1973761,59,2966,1 +46892,1973762,190,9534,1 +46893,1973763,26,1303,1 +46894,1973769,32,1637,1 +46895,1973769,171,8585,1 +46896,1973772,186,9315,1 +46897,1973772,26,1340,1 +46898,1973772,195,9776,1 +46899,1973772,46,2329,1 +46900,1973772,87,4384,1 +46901,1973772,36,1807,1 +46902,1973772,71,3595,1 +46903,1973772,41,2088,1 +46904,1973773,137,6867,1 +46905,1973774,51,2554,1 +46906,1973775,72,3619,1 +46907,1973776,156,7824,1 +46908,1973778,167,8387,1 +46909,1973781,80,4047,1 +46910,1973784,164,8229,1 +46911,1973784,1,84,1 +46912,1973784,198,9914,1 +46913,1973784,67,3377,1 +46914,1973785,68,3427,1 +46915,1973786,56,2836,1 +46916,1973790,62,3147,1 +46917,1973790,62,3137,1 +46918,1973790,61,3073,1 +46919,1973796,117,5872,1 +46920,1973798,6,333,1 +46921,1973804,88,4425,1 +46922,1973808,185,9254,1 +46923,1973810,188,9432,1 +46924,1973820,60,3025,1 +46925,1973821,146,7335,1 +46926,1973821,16,808,1 +46927,1973832,133,6692,1 +46928,1973832,173,8653,1 +46929,1973833,112,5649,1 +46930,1973834,35,1772,1 +46931,1973839,87,4352,1 +46932,1973844,93,4681,1 +46933,1973847,43,2164,1 +46934,1973856,70,3545,1 +46935,1973857,58,2923,1 +46936,1973859,173,8675,1 +46937,1973868,110,5512,1 +46938,1973916,97,4864,1 +46939,1973916,193,9699,1 +46940,1973948,129,6465,1 +46941,1973949,163,8152,1 +46942,1973965,89,4453,1 +46943,1973980,154,7740,1 +46944,1974015,29,1491,1 +46945,1974240,110,5507,1 +46946,1974241,60,3019,1 +46947,1974246,159,7977,1 +46948,1974252,2,126,1 +46949,1974264,77,3899,1 +46950,1974270,40,2007,1 +46951,1974288,187,9356,1 +46952,1974288,148,7421,1 +46953,1974327,69,3457,1 +46954,1974328,8,406,1 +46955,1974345,99,4979,1 +46956,1974721,191,9587,1 +46957,1974728,106,5307,1 +46958,1974735,40,2015,1 +46959,1974832,162,8109,1 +46960,1974865,92,4609,1 +46961,1975200,199,9978,1 +46962,1975200,122,6133,1 +46963,1975200,26,1327,1 +46964,1975200,144,7242,1 +46965,1975200,119,5977,1 +46966,1975201,33,1664,1 +46967,1975201,7,353,1 +46968,1975203,97,4891,1 +46969,1975206,51,2589,1 +46970,1975209,195,9768,1 +46971,1975212,11,595,1 +46972,1975212,153,7677,1 +46973,1975212,161,8070,1 +46974,1975212,153,7689,1 +46975,1975212,74,3718,1 +46976,1975212,182,9115,1 +46977,1975217,190,9525,1 +46978,1975224,48,2405,1 +46979,1975224,84,4237,1 +46980,1975224,194,9750,1 +46981,1975225,132,6649,1 +46982,1975225,160,8014,1 +46983,1975227,12,628,1 +46984,1975228,34,1726,1 +46985,1975236,56,2832,1 +46986,1975242,84,4217,1 +46987,1975245,65,3267,1 +46988,1975248,102,5114,1 +46989,1975248,143,7165,1 +46990,1975248,18,928,1 +46991,1975251,74,3738,1 +46992,1975251,145,7274,1 +46993,1975257,116,5813,1 +46994,1975260,105,5280,1 +46995,1975272,198,9916,1 +46996,1975273,199,9958,1 +46997,1975273,25,1274,1 +46998,1975284,143,7157,1 +46999,1975308,79,3969,1 +47000,1975320,121,6057,1 +47001,1975332,183,9180,1 +47002,1975344,32,1630,1 +47003,1975344,92,4648,1 +47004,1975360,30,1545,1 +47005,1975368,63,3173,1 +47006,1975447,40,2018,1 +47007,1975500,8,420,1 +47008,1976160,99,5000,1 +47009,1976160,152,7622,1 +47010,1976160,100,5046,1 +47011,1976160,192,9638,1 +47012,1976161,106,5349,1 +47013,1976161,0,27,1 +47014,1976172,69,3499,1 +47015,1976172,198,9947,1 +47016,1976172,190,9544,1 +47017,1976184,72,3608,1 +47018,1976187,161,8085,1 +47019,1976197,112,5614,1 +47020,1976208,185,9284,1 +47021,1976211,33,1674,1 +47022,1976221,31,1585,1 +47023,1976247,122,6140,1 +47024,1976322,21,1059,1 +47025,1976448,194,9714,1 +47026,1976641,163,8197,1 +47027,1976644,122,6139,1 +47028,1976653,105,5270,1 +47029,1976664,189,9477,1 +47030,1976720,96,4817,1 +47031,1976725,24,1209,1 +47032,1976727,99,4986,1 +47033,1976733,27,1378,1 +47034,1976763,131,6579,1 +47035,1976812,116,5830,1 +47036,1977120,27,1372,1 +47037,1977144,196,9822,1 +47038,1977192,83,4198,1 +47039,1977193,28,1444,1 +47040,1977254,47,2395,1 +47041,1977624,54,2702,1 +47042,1977685,142,7112,1 +47043,1978092,128,6406,1 +47044,1978098,186,9324,1 +47045,1978099,156,7824,1 +47046,1978113,168,8428,1 +47047,1978116,55,2751,1 +47048,1978128,101,5084,1 +47049,1978131,144,7211,1 +47050,1978140,194,9723,1 +47051,1978155,45,2272,1 +47052,1978164,12,649,1 +47053,1978167,122,6144,1 +47054,1978203,178,8936,1 +47055,1978224,22,1116,1 +47056,1978236,64,3221,1 +47057,1979040,92,4611,1 +47058,1979041,35,1778,1 +47059,1979042,85,4276,1 +47060,1979052,84,4243,1 +47061,1979055,101,5094,1 +47062,1979064,94,4746,1 +47063,1979065,6,312,1 +47064,1979065,106,5321,1 +47065,1979065,16,819,1 +47066,1979077,192,9602,1 +47067,1979092,101,5072,1 +47068,1979101,103,5162,1 +47069,1979101,21,1091,1 +47070,1979103,99,4970,1 +47071,1979112,125,6264,1 +47072,1979148,185,9293,1 +47073,1979522,94,4734,1 +47074,1979604,116,5808,1 +47075,1980480,93,4666,1 +47076,1980511,133,6700,1 +47077,1980516,182,9142,1 +47078,1980528,124,6247,1 +47079,1980543,37,1855,1 +47080,1980960,70,3518,1 +47081,1980961,186,9315,1 +47082,1980972,109,5484,1 +47083,1980973,127,6357,1 +47084,1980974,127,6359,1 +47085,1980975,37,1855,1 +47086,1980984,125,6300,1 +47087,1980984,110,5505,1 +47088,1980985,92,4650,1 +47089,1981002,85,4294,1 +47090,1981009,180,9006,1 +47091,1981032,53,2671,1 +47092,1981057,68,3443,1 +47093,1981452,173,8662,1 +47094,1981490,126,6345,1 +47095,1981512,72,3606,1 +47096,1981513,125,6300,1 +47097,1981536,3,184,1 +47098,1981920,137,6863,1 +47099,1981921,108,5428,1 +47100,1981932,57,2895,1 +47101,1981932,37,1896,1 +47102,1981932,98,4940,1 +47103,1981932,143,7185,1 +47104,1981933,78,3924,1 +47105,1981938,138,6932,1 +47106,1981941,49,2459,1 +47107,1981944,135,6782,1 +47108,1981973,58,2944,1 +47109,1981980,89,4486,1 +47110,1981980,79,3975,1 +47111,1981980,125,6274,1 +47112,1982098,133,6665,1 +47113,1982167,8,428,1 +47114,1982401,52,2644,1 +47115,1982410,129,6461,1 +47116,1982412,19,963,1 +47117,1982418,45,2287,1 +47118,1982424,179,8959,1 +47119,1982426,128,6407,1 +47120,1982472,113,5675,1 +47121,1982529,130,6522,1 +47122,1982652,101,5075,1 +47123,1982881,170,8526,1 +47124,1982908,130,6538,1 +47125,1982917,8,425,1 +47126,1982928,76,3811,1 +47127,1982941,32,1633,1 +47128,1982952,160,8028,1 +47129,1982953,137,6898,1 +47130,1982970,80,4046,1 +47131,1982976,120,6034,1 +47132,1983035,98,4926,1 +47133,1983046,33,1685,1 +47134,1983360,182,9147,1 +47135,1983361,7,358,1 +47136,1983373,182,9145,1 +47137,1983381,139,6972,1 +47138,1983384,139,6957,1 +47139,1983409,143,7190,1 +47140,1983444,164,8234,1 +47141,1984320,110,5524,1 +47142,1984332,97,4888,1 +47143,1984334,52,2648,1 +47144,1984338,51,2597,1 +47145,1984345,168,8428,1 +47146,1984347,63,3191,1 +47147,1984354,32,1626,1 +47148,1984360,183,9158,1 +47149,1984380,55,2780,1 +47150,1984419,105,5288,1 +47151,1984449,94,4721,1 +47152,1984453,102,5111,1 +47153,1984521,80,4011,1 +47154,1984969,36,1807,1 +47155,1985763,37,1866,1 +47156,1985796,19,957,1 +47157,1985808,168,8416,1 +47158,1985808,53,2678,1 +47159,1985889,151,7588,1 +47160,1985896,51,2554,1 +47161,1986240,19,995,1 +47162,1986252,61,3066,1 +47163,1986255,57,2866,1 +47164,1986263,77,3888,1 +47165,1986267,3,157,1 +47166,1986288,22,1112,1 +47167,1986303,79,3995,1 +47168,1986312,7,358,1 +47169,1986354,161,8066,1 +47170,1986408,20,1039,1 +47171,1986519,134,6720,1 +47172,1987200,2,149,1 +47173,1987200,109,5492,1 +47174,1987200,168,8405,1 +47175,1987200,59,2955,1 +47176,1987200,124,6249,1 +47177,1987201,0,12,1 +47178,1987201,41,2084,1 +47179,1987201,136,6837,1 +47180,1987201,23,1190,1 +47181,1987203,5,272,1 +47182,1987209,139,6963,1 +47183,1987210,187,9352,1 +47184,1987212,52,2623,1 +47185,1987212,111,5566,1 +47186,1987212,196,9835,1 +47187,1987212,132,6617,1 +47188,1987212,94,4730,1 +47189,1987212,174,8723,1 +47190,1987212,185,9266,1 +47191,1987212,172,8640,1 +47192,1987213,36,1825,1 +47193,1987214,106,5318,1 +47194,1987215,35,1787,1 +47195,1987219,83,4164,1 +47196,1987221,118,5923,1 +47197,1987224,163,8194,1 +47198,1987224,177,8884,1 +47199,1987224,116,5847,1 +47200,1987225,47,2353,1 +47201,1987225,70,3503,1 +47202,1987226,56,2806,1 +47203,1987230,134,6702,1 +47204,1987236,37,1857,1 +47205,1987237,171,8562,1 +47206,1987248,192,9635,1 +47207,1987248,142,7148,1 +47208,1987249,4,226,1 +47209,1987254,13,675,1 +47210,1987257,171,8564,1 +47211,1987260,168,8417,1 +47212,1987261,114,5730,1 +47213,1987262,133,6682,1 +47214,1987262,19,972,1 +47215,1987263,25,1257,1 +47216,1987272,6,327,1 +47217,1987273,22,1132,1 +47218,1987273,6,326,1 +47219,1987273,64,3205,1 +47220,1987279,190,9502,1 +47221,1987284,1,100,1 +47222,1987285,7,369,1 +47223,1987287,50,2524,1 +47224,1987290,71,3555,1 +47225,1987297,38,1923,1 +47226,1987300,179,8996,1 +47227,1987314,188,9434,1 +47228,1987335,14,729,1 +47229,1987344,14,723,1 +47230,1987354,135,6758,1 +47231,1987355,74,3721,1 +47232,1987372,146,7327,1 +47233,1987427,23,1197,1 +47234,1987527,79,3956,1 +47235,1987716,43,2193,1 +47236,1987728,110,5510,1 +47237,1987728,112,5619,1 +47238,1987729,48,2424,1 +47239,1987812,129,6461,1 +47240,1988160,143,7176,1 +47241,1988161,125,6251,1 +47242,1988161,43,2194,1 +47243,1988173,13,691,1 +47244,1988184,137,6899,1 +47245,1988186,192,9605,1 +47246,1988193,197,9890,1 +47247,1988196,146,7314,1 +47248,1988196,105,5274,1 +47249,1988214,160,8011,1 +47250,1988221,171,8584,1 +47251,1988224,65,3261,1 +47252,1988247,49,2485,1 +47253,1988675,107,5352,1 +47254,1989600,110,5541,1 +47255,1989600,115,5752,1 +47256,1989613,86,4350,1 +47257,1989625,106,5336,1 +47258,1989648,87,4366,1 +47259,1989652,191,9575,1 +47260,1989684,60,3021,1 +47261,1990080,44,2205,1 +47262,1990080,99,4952,1 +47263,1990081,76,3806,1 +47264,1990083,138,6921,1 +47265,1990084,61,3063,1 +47266,1990086,72,3645,1 +47267,1990090,56,2847,1 +47268,1990092,2,140,1 +47269,1990092,134,6708,1 +47270,1990093,142,7150,1 +47271,1990093,27,1373,1 +47272,1990095,81,4095,1 +47273,1990096,78,3939,1 +47274,1990098,65,3268,1 +47275,1990104,125,6253,1 +47276,1990104,132,6602,1 +47277,1990105,1,89,1 +47278,1990105,147,7358,1 +47279,1990108,88,4439,1 +47280,1990117,66,3312,1 +47281,1990122,28,1448,1 +47282,1990128,122,6123,1 +47283,1990130,66,3328,1 +47284,1990140,74,3718,1 +47285,1990141,156,7822,1 +47286,1990143,110,5501,1 +47287,1990159,18,925,1 +47288,1990176,120,6007,1 +47289,1990186,109,5493,1 +47290,1990206,138,6929,1 +47291,1990212,54,2706,1 +47292,1990233,102,5150,1 +47293,1990362,142,7105,1 +47294,1990392,135,6781,1 +47295,1990564,167,8353,1 +47296,1991040,99,4968,1 +47297,1991047,170,8530,1 +47298,1991052,42,2130,1 +47299,1991054,23,1156,1 +47300,1991056,62,3133,1 +47301,1991058,154,7741,1 +47302,1991067,197,9854,1 +47303,1991076,121,6093,1 +47304,1991157,84,4228,1 +47305,1991208,19,995,1 +47306,1992022,160,8012,1 +47307,1992027,120,6040,1 +47308,1992036,178,8940,1 +47309,1992036,58,2937,1 +47310,1992037,2,110,1 +47311,1992037,188,9427,1 +47312,1992051,10,514,1 +47313,1992087,41,2090,1 +47314,1992480,0,6,1 +47315,1992481,24,1246,1 +47316,1992486,135,6788,1 +47317,1992501,179,8976,1 +47318,1992545,122,6112,1 +47319,1992552,125,6267,1 +47320,1992590,114,5719,1 +47321,1992624,195,9759,1 +47322,1992960,138,6925,1 +47323,1992961,137,6855,1 +47324,1992972,19,960,1 +47325,1992973,64,3233,1 +47326,1992999,82,4146,1 +47327,1993004,17,857,1 +47328,1993011,96,4838,1 +47329,1993057,183,9195,1 +47330,1993058,176,8814,1 +47331,1993059,82,4117,1 +47332,1993442,32,1633,1 +47333,1993449,192,9642,1 +47334,1993452,73,3695,1 +47335,1993464,134,6712,1 +47336,1993470,37,1872,1 +47337,1993531,88,4410,1 +47338,1993536,107,5395,1 +47339,1993920,97,4865,1 +47340,1993953,105,5292,1 +47341,1993962,17,868,1 +47342,1994429,107,5395,1 +47343,1994485,55,2765,1 +47344,1994568,110,5502,1 +47345,1994882,164,8243,1 +47346,1995366,153,7658,1 +47347,1995457,137,6867,1 +47348,1995512,11,584,1 +47349,1995861,21,1085,1 +47350,1995864,185,9287,1 +47351,1995876,74,3732,1 +47352,1995885,182,9112,1 +47353,1995892,0,8,1 +47354,1996320,188,9414,1 +47355,1996320,152,7616,1 +47356,1996320,122,6124,1 +47357,1996323,99,4962,1 +47358,1996326,102,5149,1 +47359,1996326,174,8723,1 +47360,1996333,23,1200,1 +47361,1996336,97,4854,1 +47362,1996338,90,4525,1 +47363,1996344,73,3669,1 +47364,1996344,60,3009,1 +47365,1996345,96,4829,1 +47366,1996346,147,7390,1 +47367,1996356,172,8604,1 +47368,1996356,199,9966,1 +47369,1996356,104,5213,1 +47370,1996356,195,9788,1 +47371,1996356,135,6799,1 +47372,1996357,6,344,1 +47373,1996368,102,5117,1 +47374,1996369,183,9166,1 +47375,1996369,190,9544,1 +47376,1996371,96,4847,1 +47377,1996372,34,1729,1 +47378,1996374,83,4161,1 +47379,1996377,79,3953,1 +47380,1996380,198,9910,1 +47381,1996383,107,5398,1 +47382,1996386,18,918,1 +47383,1996401,74,3742,1 +47384,1996404,155,7764,1 +47385,1996416,46,2345,1 +47386,1996438,123,6164,1 +47387,1996443,130,6517,1 +47388,1996513,175,8763,1 +47389,1996614,65,3300,1 +47390,1996807,157,7851,1 +47391,1996816,158,7911,1 +47392,1996824,17,860,1 +47393,1996824,55,2792,1 +47394,1996834,43,2186,1 +47395,1996838,67,3385,1 +47396,1996839,33,1689,1 +47397,1996845,51,2561,1 +47398,1996869,168,8401,1 +47399,1996874,73,3693,1 +47400,1996878,45,2278,1 +47401,1996899,194,9747,1 +47402,1996905,123,6167,1 +47403,1996923,76,3825,1 +47404,1996928,76,3826,1 +47405,1996933,73,3679,1 +47406,1996957,195,9772,1 +47407,1997019,181,9098,1 +47408,1997283,198,9940,1 +47409,1998240,196,9839,1 +47410,1998240,40,2004,1 +47411,1998240,156,7803,1 +47412,1998242,143,7175,1 +47413,1998247,59,2965,1 +47414,1998248,25,1290,1 +47415,1998248,51,2567,1 +47416,1998249,142,7112,1 +47417,1998250,190,9519,1 +47418,1998252,55,2762,1 +47419,1998252,41,2097,1 +47420,1998252,44,2241,1 +47421,1998252,23,1193,1 +47422,1998254,94,4703,1 +47423,1998255,118,5943,1 +47424,1998257,177,8864,1 +47425,1998265,141,7092,1 +47426,1998266,159,7995,1 +47427,1998276,30,1532,1 +47428,1998278,112,5622,1 +47429,1998285,27,1375,1 +47430,1998288,32,1629,1 +47431,1998289,12,608,1 +47432,1998297,160,8012,1 +47433,1998300,70,3533,1 +47434,1998318,104,5202,1 +47435,1998348,110,5525,1 +47436,1998393,100,5005,1 +47437,1998405,109,5455,1 +47438,1998439,197,9877,1 +47439,1998744,166,8338,1 +47440,1998745,34,1707,1 +47441,1998757,23,1195,1 +47442,1998768,156,7818,1 +47443,1998792,56,2832,1 +47444,1998792,60,3011,1 +47445,1998817,97,4899,1 +47446,1998828,67,3397,1 +47447,1998831,197,9893,1 +47448,1998840,164,8216,1 +47449,1998909,84,4240,1 +47450,1999200,120,6020,1 +47451,1999203,106,5350,1 +47452,1999212,185,9291,1 +47453,1999213,54,2730,1 +47454,1999215,35,1799,1 +47455,1999237,113,5654,1 +47456,1999326,185,9270,1 +47457,1999692,132,6644,1 +47458,1999701,192,9613,1 +47459,1999722,107,5354,1 +47460,1999728,150,7542,1 +47461,1999731,30,1520,1 +47462,1999836,118,5930,1 +47463,2000640,44,2216,1 +47464,2000652,199,9967,1 +47465,2000652,145,7264,1 +47466,2000652,146,7347,1 +47467,2000657,100,5018,1 +47468,2000661,50,2533,1 +47469,2000665,85,4289,1 +47470,2000677,37,1860,1 +47471,2000685,67,3353,1 +47472,2000689,101,5069,1 +47473,2000700,96,4842,1 +47474,2000700,132,6623,1 +47475,2000701,22,1102,1 +47476,2000704,189,9454,1 +47477,2000724,184,9211,1 +47478,2000760,145,7254,1 +47479,2000760,175,8769,1 +47480,2000772,186,9344,1 +47481,2000781,57,2878,1 +47482,2000928,98,4907,1 +47483,2001120,32,1637,1 +47484,2001601,134,6748,1 +47485,2001607,135,6759,1 +47486,2001612,184,9209,1 +47487,2001684,24,1247,1 +47488,2001780,93,4652,1 +47489,2002080,98,4935,1 +47490,2002092,129,6451,1 +47491,2002093,25,1269,1 +47492,2002094,178,8908,1 +47493,2002111,87,4360,1 +47494,2002140,5,275,1 +47495,2002143,191,9583,1 +47496,2002146,43,2175,1 +47497,2002152,79,3962,1 +47498,2002164,122,6123,1 +47499,2002200,15,795,1 +47500,2002573,38,1928,1 +47501,2002574,188,9422,1 +47502,2002593,39,1960,1 +47503,2002596,115,5795,1 +47504,2002608,4,209,1 +47505,2002617,138,6939,1 +47506,2002620,22,1117,1 +47507,2002724,46,2309,1 +47508,2002755,173,8677,1 +47509,2002945,124,6216,1 +47510,2003040,97,4892,1 +47511,2003040,42,2141,1 +47512,2003041,115,5791,1 +47513,2003041,48,2445,1 +47514,2003041,10,530,1 +47515,2003043,194,9702,1 +47516,2003043,67,3361,1 +47517,2003049,45,2251,1 +47518,2003052,87,4379,1 +47519,2003055,68,3443,1 +47520,2003064,111,5555,1 +47521,2003064,53,2691,1 +47522,2003064,48,2445,1 +47523,2003066,87,4375,1 +47524,2003067,31,1584,1 +47525,2003085,153,7696,1 +47526,2003088,10,532,1 +47527,2003088,93,4695,1 +47528,2003097,95,4762,1 +47529,2003100,158,7918,1 +47530,2003102,176,8838,1 +47531,2003106,171,8583,1 +47532,2003118,131,6561,1 +47533,2003136,169,8474,1 +47534,2003136,139,6989,1 +47535,2003136,112,5606,1 +47536,2003137,52,2640,1 +47537,2003149,87,4370,1 +47538,2003167,139,6957,1 +47539,2003268,22,1140,1 +47540,2003295,152,7628,1 +47541,2003520,163,8171,1 +47542,2003526,159,7970,1 +47543,2003533,123,6171,1 +47544,2003544,32,1630,1 +47545,2003544,74,3711,1 +47546,2003556,140,7034,1 +47547,2003653,139,6987,1 +47548,2004016,7,367,1 +47549,2004061,25,1260,1 +47550,2004109,72,3641,1 +47551,2004120,4,206,1 +47552,2004483,175,8776,1 +47553,2004504,144,7238,1 +47554,2004529,18,912,1 +47555,2004960,148,7446,1 +47556,2004960,98,4904,1 +47557,2004960,74,3741,1 +47558,2004960,46,2308,1 +47559,2004960,156,7828,1 +47560,2004964,142,7126,1 +47561,2004966,165,8291,1 +47562,2004969,175,8758,1 +47563,2004972,65,3292,1 +47564,2004975,42,2125,1 +47565,2004978,40,2037,1 +47566,2004984,138,6935,1 +47567,2004984,186,9347,1 +47568,2004985,181,9058,1 +47569,2004986,20,1042,1 +47570,2004986,128,6434,1 +47571,2004989,163,8160,1 +47572,2004996,59,2992,1 +47573,2004996,152,7626,1 +47574,2005001,158,7942,1 +47575,2005002,148,7443,1 +47576,2005005,56,2821,1 +47577,2005020,181,9070,1 +47578,2005033,98,4912,1 +47579,2005047,132,6646,1 +47580,2005058,180,9029,1 +47581,2005188,76,3833,1 +47582,2005305,25,1259,1 +47583,2005922,149,7479,1 +47584,2006061,94,4743,1 +47585,2006400,116,5830,1 +47586,2006430,79,3999,1 +47587,2006448,160,8044,1 +47588,2006472,180,9008,1 +47589,2006907,97,4851,1 +47590,2006912,102,5101,1 +47591,2006929,118,5919,1 +47592,2006940,47,2393,1 +47593,2006977,195,9776,1 +47594,2007002,57,2874,1 +47595,2007360,164,8201,1 +47596,2007432,6,335,1 +47597,2007457,70,3517,1 +47598,2007841,151,7556,1 +47599,2007846,174,8739,1 +47600,2007846,32,1643,1 +47601,2007855,167,8378,1 +47602,2007865,147,7359,1 +47603,2007865,50,2512,1 +47604,2007865,166,8305,1 +47605,2007868,167,8375,1 +47606,2007877,154,7711,1 +47607,2007882,61,3093,1 +47608,2007888,156,7819,1 +47609,2007888,88,4439,1 +47610,2007892,9,486,1 +47611,2007900,45,2268,1 +47612,2007903,197,9863,1 +47613,2007906,106,5303,1 +47614,2007909,84,4230,1 +47615,2007911,63,3180,1 +47616,2007925,12,609,1 +47617,2007960,162,8118,1 +47618,2007972,15,778,1 +47619,2008017,93,4668,1 +47620,2008321,39,1955,1 +47621,2008323,190,9526,1 +47622,2008332,155,7788,1 +47623,2008335,75,3756,1 +47624,2008335,42,2142,1 +47625,2008341,150,7534,1 +47626,2008341,12,632,1 +47627,2008344,133,6687,1 +47628,2008345,187,9356,1 +47629,2008347,138,6950,1 +47630,2008347,27,1387,1 +47631,2008348,27,1382,1 +47632,2008349,96,4847,1 +47633,2008350,42,2145,1 +47634,2008354,156,7846,1 +47635,2008368,199,9992,1 +47636,2008369,140,7007,1 +47637,2008370,39,1981,1 +47638,2008380,178,8930,1 +47639,2008380,72,3620,1 +47640,2008392,160,8008,1 +47641,2008393,20,1032,1 +47642,2008429,149,7480,1 +47643,2008476,37,1864,1 +47644,2008476,9,454,1 +47645,2008476,5,298,1 +47646,2008492,45,2274,1 +47647,2008518,146,7333,1 +47648,2008521,96,4836,1 +47649,2008644,180,9042,1 +47650,2008677,187,9397,1 +47651,2008800,192,9602,1 +47652,2008815,1,61,1 +47653,2008818,129,6482,1 +47654,2008825,88,4447,1 +47655,2008840,28,1421,1 +47656,2008849,24,1220,1 +47657,2008872,134,6722,1 +47658,2009320,150,7524,1 +47659,2009789,118,5907,1 +47660,2010259,53,2690,1 +47661,2010292,77,3886,1 +47662,2011200,14,739,1 +47663,2011204,38,1925,1 +47664,2011212,56,2845,1 +47665,2011215,141,7057,1 +47666,2011221,41,2072,1 +47667,2011278,2,125,1 +47668,2011321,23,1195,1 +47669,2011334,103,5185,1 +47670,2011680,32,1614,1 +47671,2011681,33,1670,1 +47672,2011704,129,6457,1 +47673,2011801,8,418,1 +47674,2012172,64,3215,1 +47675,2012265,64,3244,1 +47676,2012640,15,787,1 +47677,2012640,117,5900,1 +47678,2012640,113,5664,1 +47679,2012640,96,4809,1 +47680,2012643,149,7478,1 +47681,2012664,103,5174,1 +47682,2012676,78,3901,1 +47683,2012679,48,2437,1 +47684,2012684,64,3232,1 +47685,2012692,71,3564,1 +47686,2012733,25,1254,1 +47687,2012761,160,8028,1 +47688,2012986,55,2779,1 +47689,2013141,175,8790,1 +47690,2013144,2,117,1 +47691,2013145,139,6988,1 +47692,2013240,52,2633,1 +47693,2014080,12,629,1 +47694,2014086,114,5733,1 +47695,2014104,53,2670,1 +47696,2014116,14,733,1 +47697,2014122,98,4950,1 +47698,2014134,180,9028,1 +47699,2014142,27,1400,1 +47700,2014164,34,1744,1 +47701,2014194,1,98,1 +47702,2014214,156,7810,1 +47703,2014332,15,795,1 +47704,2014578,52,2626,1 +47705,2014608,104,5222,1 +47706,2014620,34,1724,1 +47707,2014632,191,9559,1 +47708,2014670,167,8356,1 +47709,2015040,0,47,1 +47710,2015049,56,2850,1 +47711,2015052,18,930,1 +47712,2015073,134,6704,1 +47713,2015100,123,6164,1 +47714,2015107,6,336,1 +47715,2015161,56,2849,1 +47716,2015170,110,5528,1 +47717,2015520,198,9906,1 +47718,2015520,171,8588,1 +47719,2015520,135,6787,1 +47720,2015521,161,8082,1 +47721,2015521,77,3871,1 +47722,2015528,166,8337,1 +47723,2015528,131,6579,1 +47724,2015530,54,2705,1 +47725,2015533,156,7850,1 +47726,2015536,112,5622,1 +47727,2015541,100,5011,1 +47728,2015544,64,3234,1 +47729,2015545,192,9631,1 +47730,2015545,57,2859,1 +47731,2015545,43,2191,1 +47732,2015551,159,7961,1 +47733,2015553,32,1602,1 +47734,2015556,28,1436,1 +47735,2015568,158,7917,1 +47736,2015568,196,9803,1 +47737,2015575,172,8640,1 +47738,2015583,95,4772,1 +47739,2015596,130,6518,1 +47740,2015601,66,3333,1 +47741,2015605,162,8127,1 +47742,2015605,172,8635,1 +47743,2015628,174,8709,1 +47744,2015640,72,3604,1 +47745,2015677,84,4229,1 +47746,2015820,160,8006,1 +47747,2016483,180,9028,1 +47748,2016492,11,582,1 +47749,2016504,87,4381,1 +47750,2016505,6,347,1 +47751,2016960,86,4315,1 +47752,2016960,186,9306,1 +47753,2016960,59,2965,1 +47754,2016960,83,4174,1 +47755,2016961,94,4705,1 +47756,2016963,133,6672,1 +47757,2016963,129,6476,1 +47758,2016967,141,7093,1 +47759,2016968,74,3746,1 +47760,2016969,192,9603,1 +47761,2016969,50,2543,1 +47762,2016972,184,9242,1 +47763,2016972,174,8735,1 +47764,2016972,55,2795,1 +47765,2016972,52,2641,1 +47766,2016972,124,6247,1 +47767,2016974,156,7804,1 +47768,2016975,75,3800,1 +47769,2016976,185,9276,1 +47770,2016978,87,4396,1 +47771,2016979,21,1069,1 +47772,2016984,146,7326,1 +47773,2016984,53,2656,1 +47774,2016986,135,6794,1 +47775,2016987,53,2689,1 +47776,2016988,54,2728,1 +47777,2016990,35,1763,1 +47778,2016993,8,443,1 +47779,2016996,196,9801,1 +47780,2016996,192,9645,1 +47781,2016997,6,348,1 +47782,2016997,160,8021,1 +47783,2016999,85,4298,1 +47784,2017002,37,1890,1 +47785,2017005,114,5732,1 +47786,2017008,131,6558,1 +47787,2017008,53,2662,1 +47788,2017008,171,8560,1 +47789,2017014,67,3366,1 +47790,2017020,155,7798,1 +47791,2017020,105,5281,1 +47792,2017020,35,1793,1 +47793,2017021,79,3953,1 +47794,2017026,98,4902,1 +47795,2017032,26,1325,1 +47796,2017044,162,8131,1 +47797,2017050,40,2033,1 +47798,2017050,176,8822,1 +47799,2017068,82,4123,1 +47800,2017068,66,3343,1 +47801,2017068,45,2285,1 +47802,2017068,32,1634,1 +47803,2017078,177,8858,1 +47804,2017080,12,608,1 +47805,2017085,40,2009,1 +47806,2017106,161,8054,1 +47807,2017107,47,2360,1 +47808,2017116,102,5119,1 +47809,2017116,60,3033,1 +47810,2017117,191,9566,1 +47811,2017164,70,3524,1 +47812,2017200,121,6089,1 +47813,2017203,163,8170,1 +47814,2017440,116,5808,1 +47815,2017440,107,5379,1 +47816,2017440,64,3240,1 +47817,2017442,151,7588,1 +47818,2017443,64,3235,1 +47819,2017446,170,8515,1 +47820,2017447,17,900,1 +47821,2017449,13,680,1 +47822,2017453,56,2824,1 +47823,2017453,61,3092,1 +47824,2017454,41,2062,1 +47825,2017454,86,4304,1 +47826,2017454,88,4435,1 +47827,2017459,186,9321,1 +47828,2017460,150,7507,1 +47829,2017461,160,8009,1 +47830,2017463,174,8718,1 +47831,2017464,105,5261,1 +47832,2017464,125,6260,1 +47833,2017464,23,1173,1 +47834,2017464,112,5607,1 +47835,2017467,85,4298,1 +47836,2017473,141,7051,1 +47837,2017476,167,8380,1 +47838,2017476,91,4580,1 +47839,2017476,96,4843,1 +47840,2017476,179,8984,1 +47841,2017476,110,5536,1 +47842,2017476,56,2844,1 +47843,2017478,160,8021,1 +47844,2017478,16,828,1 +47845,2017479,93,4683,1 +47846,2017480,54,2747,1 +47847,2017489,99,4953,1 +47848,2017491,173,8683,1 +47849,2017494,19,1000,1 +47850,2017494,167,8365,1 +47851,2017497,86,4336,1 +47852,2017500,62,3110,1 +47853,2017500,173,8663,1 +47854,2017504,72,3602,1 +47855,2017515,72,3636,1 +47856,2017519,135,6762,1 +47857,2017524,118,5920,1 +47858,2017527,2,137,1 +47859,2017527,112,5626,1 +47860,2017536,174,8724,1 +47861,2017536,70,3529,1 +47862,2017549,174,8732,1 +47863,2017549,47,2360,1 +47864,2017560,15,760,1 +47865,2017560,139,6976,1 +47866,2017584,69,3459,1 +47867,2017597,23,1163,1 +47868,2017608,120,6045,1 +47869,2017611,91,4561,1 +47870,2017704,7,391,1 +47871,2017713,189,9492,1 +47872,2017921,40,2001,1 +47873,2017932,39,1994,1 +47874,2017945,90,4544,1 +47875,2018028,36,1808,1 +47876,2018412,71,3588,1 +47877,2018460,158,7915,1 +47878,2018484,94,4701,1 +47879,2018533,124,6219,1 +47880,2019366,175,8772,1 +47881,2019420,91,4590,1 +47882,2019661,165,8274,1 +47883,2019841,191,9593,1 +47884,2019841,37,1888,1 +47885,2019849,67,3397,1 +47886,2019851,36,1825,1 +47887,2019852,49,2490,1 +47888,2019852,175,8782,1 +47889,2019855,34,1740,1 +47890,2019856,65,3272,1 +47891,2019861,178,8924,1 +47892,2019862,11,570,1 +47893,2019864,156,7824,1 +47894,2019876,100,5016,1 +47895,2019877,128,6444,1 +47896,2019879,117,5899,1 +47897,2019886,115,5790,1 +47898,2019888,79,3989,1 +47899,2019900,130,6504,1 +47900,2019911,74,3727,1 +47901,2019912,94,4740,1 +47902,2019914,57,2867,1 +47903,2019918,138,6943,1 +47904,2019921,30,1544,1 +47905,2019931,108,5402,1 +47906,2019931,151,7556,1 +47907,2019938,39,1959,1 +47908,2019939,8,420,1 +47909,2019942,93,4679,1 +47910,2019948,143,7188,1 +47911,2019948,174,8750,1 +47912,2019949,134,6740,1 +47913,2020081,123,6169,1 +47914,2020320,36,1826,1 +47915,2020363,186,9324,1 +47916,2020368,117,5856,1 +47917,2020824,77,3888,1 +47918,2020873,58,2931,1 +47919,2020887,24,1209,1 +47920,2020933,103,5154,1 +47921,2021284,12,641,1 +47922,2021284,137,6896,1 +47923,2021293,82,4106,1 +47924,2021313,35,1781,1 +47925,2021316,100,5004,1 +47926,2021340,144,7245,1 +47927,2021352,140,7011,1 +47928,2021355,101,5077,1 +47929,2021364,133,6670,1 +47930,2021376,60,3008,1 +47931,2021760,110,5528,1 +47932,2021796,32,1603,1 +47933,2021796,120,6027,1 +47934,2021808,146,7337,1 +47935,2021832,34,1741,1 +47936,2022259,65,3260,1 +47937,2022276,177,8855,1 +47938,2022276,129,6452,1 +47939,2022771,103,5178,1 +47940,2022780,159,7955,1 +47941,2022817,196,9806,1 +47942,2024161,80,4008,1 +47943,2024162,73,3652,1 +47944,2024169,175,8773,1 +47945,2024178,98,4946,1 +47946,2024182,70,3546,1 +47947,2024184,8,423,1 +47948,2024187,98,4919,1 +47949,2024193,91,4557,1 +47950,2024196,105,5286,1 +47951,2024196,120,6031,1 +47952,2024204,94,4744,1 +47953,2024220,86,4340,1 +47954,2024232,181,9060,1 +47955,2024232,26,1313,1 +47956,2024256,75,3761,1 +47957,2024268,150,7507,1 +47958,2024281,47,2351,1 +47959,2024316,23,1171,1 +47960,2024640,82,4129,1 +47961,2024640,53,2677,1 +47962,2024652,162,8111,1 +47963,2024652,86,4327,1 +47964,2024657,125,6274,1 +47965,2024659,141,7066,1 +47966,2024662,196,9822,1 +47967,2024664,169,8458,1 +47968,2024672,74,3715,1 +47969,2024676,188,9407,1 +47970,2024686,155,7795,1 +47971,2024697,35,1783,1 +47972,2024700,65,3295,1 +47973,2024712,71,3555,1 +47974,2024724,6,307,1 +47975,2024755,92,4604,1 +47976,2024874,111,5551,1 +47977,2025156,15,760,1 +47978,2025174,125,6276,1 +47979,2025180,138,6908,1 +47980,2025231,141,7078,1 +47981,2025600,91,4557,1 +47982,2025601,191,9572,1 +47983,2025602,38,1901,1 +47984,2025612,77,3861,1 +47985,2025618,32,1645,1 +47986,2025625,173,8658,1 +47987,2025649,102,5133,1 +47988,2025667,23,1175,1 +47989,2025684,77,3884,1 +47990,2025686,9,495,1 +47991,2026560,34,1711,1 +47992,2026560,100,5005,1 +47993,2026573,13,681,1 +47994,2026574,49,2461,1 +47995,2026581,144,7216,1 +47996,2026582,51,2582,1 +47997,2026584,98,4920,1 +47998,2026584,52,2622,1 +47999,2026584,68,3405,1 +48000,2026586,164,8224,1 +48001,2026596,87,4392,1 +48002,2026596,119,5973,1 +48003,2026597,184,9235,1 +48004,2026608,67,3367,1 +48005,2026608,74,3714,1 +48006,2026620,81,4095,1 +48007,2026622,185,9289,1 +48008,2026628,44,2215,1 +48009,2026631,90,4527,1 +48010,2026638,188,9436,1 +48011,2026721,47,2393,1 +48012,2026836,21,1056,1 +48013,2027061,152,7632,1 +48014,2027124,166,8338,1 +48015,2027148,149,7455,1 +48016,2027544,158,7938,1 +48017,2027616,22,1140,1 +48018,2027958,181,9065,1 +48019,2028036,195,9760,1 +48020,2028196,28,1449,1 +48021,2028482,145,7291,1 +48022,2028492,149,7459,1 +48023,2028492,92,4610,1 +48024,2028492,77,3887,1 +48025,2028534,73,3662,1 +48026,2028552,79,3979,1 +48027,2028631,86,4304,1 +48028,2028646,158,7930,1 +48029,2028672,134,6732,1 +48030,2028960,129,6466,1 +48031,2028960,46,2345,1 +48032,2028960,174,8727,1 +48033,2028960,74,3742,1 +48034,2028978,23,1182,1 +48035,2029008,101,5054,1 +48036,2029056,113,5700,1 +48037,2029440,142,7126,1 +48038,2029452,20,1019,1 +48039,2029452,2,147,1 +48040,2029452,199,9996,1 +48041,2029458,155,7752,1 +48042,2029464,163,8164,1 +48043,2029465,78,3950,1 +48044,2029475,123,6192,1 +48045,2029488,163,8186,1 +48046,2029488,69,3467,1 +48047,2029488,173,8665,1 +48048,2029490,81,4091,1 +48049,2029491,85,4254,1 +48050,2029558,197,9888,1 +48051,2029584,176,8817,1 +48052,2029601,53,2652,1 +48053,2029608,186,9304,1 +48054,2029638,98,4910,1 +48055,2029921,192,9622,1 +48056,2029938,156,7834,1 +48057,2029944,113,5668,1 +48058,2029948,88,4446,1 +48059,2029956,186,9316,1 +48060,2029956,66,3311,1 +48061,2029968,104,5220,1 +48062,2029992,125,6252,1 +48063,2030004,7,363,1 +48064,2030004,52,2647,1 +48065,2030025,185,9267,1 +48066,2030026,134,6750,1 +48067,2030040,51,2579,1 +48068,2030401,89,4458,1 +48069,2030406,45,2252,1 +48070,2030424,34,1708,1 +48071,2030442,138,6905,1 +48072,2030472,0,5,1 +48073,2030493,21,1057,1 +48074,2030521,175,8769,1 +48075,2030541,109,5497,1 +48076,2030577,62,3106,1 +48077,2030676,141,7080,1 +48078,2031361,144,7228,1 +48079,2031361,139,6961,1 +48080,2031362,125,6293,1 +48081,2031370,160,8002,1 +48082,2031381,46,2306,1 +48083,2031431,49,2490,1 +48084,2031444,194,9711,1 +48085,2031457,118,5901,1 +48086,2031480,47,2358,1 +48087,2031493,189,9479,1 +48088,2031840,167,8354,1 +48089,2031841,58,2909,1 +48090,2031882,104,5211,1 +48091,2032328,96,4842,1 +48092,2032368,100,5016,1 +48093,2032449,164,8218,1 +48094,2032801,76,3802,1 +48095,2032810,159,7967,1 +48096,2033760,167,8355,1 +48097,2033760,97,4868,1 +48098,2033784,16,835,1 +48099,2033785,93,4669,1 +48100,2033796,161,8088,1 +48101,2033806,60,3033,1 +48102,2033856,134,6736,1 +48103,2034242,157,7871,1 +48104,2034253,23,1200,1 +48105,2034253,157,7882,1 +48106,2034276,10,529,1 +48107,2034290,93,4675,1 +48108,2034327,156,7818,1 +48109,2034349,148,7433,1 +48110,2034409,190,9544,1 +48111,2034721,15,764,1 +48112,2034746,103,5198,1 +48113,2034750,118,5913,1 +48114,2034750,136,6820,1 +48115,2034780,85,4299,1 +48116,2034782,124,6229,1 +48117,2034840,187,9397,1 +48118,2034897,110,5543,1 +48119,2034960,22,1111,1 +48120,2036644,69,3482,1 +48121,2036646,5,256,1 +48122,2036670,69,3478,1 +48123,2037120,192,9637,1 +48124,2037121,94,4728,1 +48125,2037123,132,6642,1 +48126,2037123,41,2088,1 +48127,2037124,58,2920,1 +48128,2037132,9,459,1 +48129,2037134,172,8623,1 +48130,2037145,0,32,1 +48131,2037154,192,9637,1 +48132,2037168,68,3413,1 +48133,2037168,56,2814,1 +48134,2037168,88,4433,1 +48135,2037177,169,8474,1 +48136,2037192,11,579,1 +48137,2037324,109,5499,1 +48138,2038081,197,9881,1 +48139,2038117,151,7580,1 +48140,2038118,9,496,1 +48141,2038141,110,5544,1 +48142,2038560,8,435,1 +48143,2038584,9,480,1 +48144,2038665,143,7198,1 +48145,2039052,151,7578,1 +48146,2039058,143,7157,1 +48147,2039073,78,3949,1 +48148,2039082,78,3930,1 +48149,2039088,11,558,1 +48150,2039106,34,1748,1 +48151,2039170,180,9010,1 +48152,2039184,185,9269,1 +48153,2039520,82,4142,1 +48154,2039520,187,9378,1 +48155,2039520,123,6173,1 +48156,2039520,93,4698,1 +48157,2039523,5,255,1 +48158,2039523,70,3537,1 +48159,2039523,27,1356,1 +48160,2039532,117,5879,1 +48161,2039532,117,5863,1 +48162,2039532,100,5009,1 +48163,2039532,38,1946,1 +48164,2039532,35,1775,1 +48165,2039532,55,2764,1 +48166,2039532,22,1140,1 +48167,2039534,8,445,1 +48168,2039538,100,5001,1 +48169,2039541,183,9161,1 +48170,2039544,37,1879,1 +48171,2039544,152,7618,1 +48172,2039544,183,9174,1 +48173,2039544,156,7844,1 +48174,2039545,185,9292,1 +48175,2039545,62,3144,1 +48176,2039549,110,5520,1 +48177,2039550,109,5493,1 +48178,2039553,15,757,1 +48179,2039554,106,5312,1 +48180,2039557,10,515,1 +48181,2039560,118,5920,1 +48182,2039562,187,9358,1 +48183,2039565,137,6898,1 +48184,2039568,24,1242,1 +48185,2039569,101,5074,1 +48186,2039580,168,8440,1 +48187,2039580,51,2588,1 +48188,2039580,56,2833,1 +48189,2039593,117,5883,1 +48190,2039604,112,5607,1 +48191,2039604,28,1412,1 +48192,2039604,11,596,1 +48193,2039628,154,7710,1 +48194,2039637,101,5062,1 +48195,2039688,8,443,1 +48196,2039689,145,7263,1 +48197,2039748,151,7589,1 +48198,2040000,27,1395,1 +48199,2040000,30,1533,1 +48200,2040005,130,6513,1 +48201,2040006,54,2737,1 +48202,2040008,133,6698,1 +48203,2040009,78,3911,1 +48204,2040012,146,7348,1 +48205,2040012,184,9239,1 +48206,2040016,140,7038,1 +48207,2040018,181,9068,1 +48208,2040018,8,442,1 +48209,2040022,13,696,1 +48210,2040024,112,5601,1 +48211,2040024,104,5237,1 +48212,2040025,119,5961,1 +48213,2040029,56,2834,1 +48214,2040036,169,8467,1 +48215,2040036,167,8393,1 +48216,2040036,2,136,1 +48217,2040036,44,2219,1 +48218,2040041,3,193,1 +48219,2040048,130,6508,1 +48220,2040048,136,6805,1 +48221,2040049,62,3129,1 +48222,2040051,97,4868,1 +48223,2040051,32,1607,1 +48224,2040084,150,7502,1 +48225,2040085,69,3492,1 +48226,2040096,146,7331,1 +48227,2040102,77,3886,1 +48228,2040114,126,6314,1 +48229,2040117,24,1221,1 +48230,2040133,57,2864,1 +48231,2040157,135,6767,1 +48232,2040181,127,6397,1 +48233,2040960,76,3850,1 +48234,2040976,90,4548,1 +48235,2040978,162,8120,1 +48236,2040984,127,6354,1 +48237,2040984,158,7938,1 +48238,2040985,69,3473,1 +48239,2040987,39,1965,1 +48240,2041080,98,4936,1 +48241,2041080,39,1981,1 +48242,2041452,158,7949,1 +48243,2041464,176,8842,1 +48244,2041575,18,908,1 +48245,2041620,154,7729,1 +48246,2041932,49,2484,1 +48247,2041946,17,879,1 +48248,2041947,149,7500,1 +48249,2041968,116,5849,1 +48250,2042070,145,7297,1 +48251,2042400,163,8195,1 +48252,2042400,17,862,1 +48253,2042401,34,1706,1 +48254,2042404,178,8938,1 +48255,2042410,115,5771,1 +48256,2042412,165,8293,1 +48257,2042412,82,4116,1 +48258,2042413,164,8203,1 +48259,2042419,28,1449,1 +48260,2042424,153,7658,1 +48261,2042424,109,5473,1 +48262,2042424,181,9083,1 +48263,2042425,65,3292,1 +48264,2042427,80,4004,1 +48265,2042428,11,558,1 +48266,2042428,63,3154,1 +48267,2042433,22,1140,1 +48268,2042436,62,3131,1 +48269,2042436,44,2203,1 +48270,2042437,36,1809,1 +48271,2042437,89,4475,1 +48272,2042442,195,9796,1 +48273,2042448,141,7068,1 +48274,2042448,32,1607,1 +48275,2042451,193,9700,1 +48276,2042460,185,9289,1 +48277,2042460,84,4244,1 +48278,2042466,88,4429,1 +48279,2042466,103,5163,1 +48280,2042472,2,112,1 +48281,2042473,78,3910,1 +48282,2042476,97,4871,1 +48283,2042478,123,6196,1 +48284,2042484,72,3615,1 +48285,2042484,41,2063,1 +48286,2042496,54,2735,1 +48287,2042508,27,1360,1 +48288,2042509,74,3730,1 +48289,2042512,154,7718,1 +48290,2042514,45,2299,1 +48291,2042522,66,3332,1 +48292,2042532,61,3089,1 +48293,2042544,170,8523,1 +48294,2042556,20,1048,1 +48295,2042556,158,7907,1 +48296,2042581,81,4060,1 +48297,2042676,70,3536,1 +48298,2042931,185,9287,1 +48299,2042953,199,9956,1 +48300,2042988,18,941,1 +48301,2043840,143,7153,1 +48302,2043849,23,1178,1 +48303,2043852,161,8052,1 +48304,2043852,189,9465,1 +48305,2043852,121,6085,1 +48306,2043864,74,3713,1 +48307,2043865,173,8692,1 +48308,2043866,185,9293,1 +48309,2043867,189,9484,1 +48310,2043867,171,8556,1 +48311,2043876,32,1640,1 +48312,2043876,79,3967,1 +48313,2043877,78,3944,1 +48314,2043888,180,9048,1 +48315,2043888,87,4362,1 +48316,2043889,92,4604,1 +48317,2043925,98,4944,1 +48318,2043932,151,7553,1 +48319,2043948,52,2618,1 +48320,2043960,174,8712,1 +48321,2043973,86,4308,1 +48322,2043998,15,786,1 +48323,2044008,63,3179,1 +48324,2044009,86,4346,1 +48325,2044092,191,9584,1 +48326,2044333,132,6650,1 +48327,2044344,193,9687,1 +48328,2044356,191,9600,1 +48329,2044372,16,807,1 +48330,2044392,143,7199,1 +48331,2044429,167,8351,1 +48332,2044443,145,7290,1 +48333,2044800,109,5468,1 +48334,2044803,196,9842,1 +48335,2044813,43,2153,1 +48336,2045280,138,6905,1 +48337,2045281,138,6946,1 +48338,2045292,98,4930,1 +48339,2045293,75,3759,1 +48340,2045297,40,2005,1 +48341,2045316,28,1406,1 +48342,2045316,54,2750,1 +48343,2045329,191,9553,1 +48344,2045341,98,4918,1 +48345,2045350,145,7284,1 +48346,2045352,71,3579,1 +48347,2045355,173,8663,1 +48348,2045370,24,1207,1 +48349,2045376,168,8433,1 +48350,2045376,14,744,1 +48351,2045450,177,8852,1 +48352,2045484,18,939,1 +48353,2045768,44,2244,1 +48354,2045785,115,5763,1 +48355,2045787,149,7456,1 +48356,2045796,102,5130,1 +48357,2045802,117,5860,1 +48358,2045810,73,3668,1 +48359,2045813,157,7897,1 +48360,2045817,70,3516,1 +48361,2045868,157,7897,1 +48362,2045868,122,6117,1 +48363,2045913,10,550,1 +48364,2046243,21,1055,1 +48365,2046249,184,9223,1 +48366,2046249,134,6741,1 +48367,2046253,50,2549,1 +48368,2046255,76,3822,1 +48369,2046265,117,5862,1 +48370,2046267,39,1980,1 +48371,2046270,112,5645,1 +48372,2046277,15,754,1 +48373,2046288,28,1431,1 +48374,2046289,100,5017,1 +48375,2046307,130,6517,1 +48376,2046325,26,1309,1 +48377,2046327,67,3369,1 +48378,2046348,190,9549,1 +48379,2046366,109,5495,1 +48380,2046369,87,4359,1 +48381,2046409,12,612,1 +48382,2046517,65,3254,1 +48383,2046765,27,1372,1 +48384,2046769,116,5812,1 +48385,2047202,52,2627,1 +48386,2047212,154,7736,1 +48387,2047248,147,7397,1 +48388,2047249,179,8997,1 +48389,2047273,164,8212,1 +48390,2047285,191,9571,1 +48391,2047286,43,2193,1 +48392,2047323,128,6415,1 +48393,2047362,21,1072,1 +48394,2047681,52,2648,1 +48395,2047692,35,1798,1 +48396,2047713,23,1162,1 +48397,2047719,154,7722,1 +48398,2047740,89,4488,1 +48399,2047770,132,6621,1 +48400,2047821,188,9450,1 +48401,2047824,193,9691,1 +48402,2047824,13,688,1 +48403,2048640,10,525,1 +48404,2048640,79,3978,1 +48405,2048640,157,7870,1 +48406,2048640,154,7711,1 +48407,2048640,94,4725,1 +48408,2048640,81,4060,1 +48409,2048640,134,6711,1 +48410,2048640,191,9556,1 +48411,2048640,33,1694,1 +48412,2048640,57,2851,1 +48413,2048641,144,7244,1 +48414,2048641,158,7937,1 +48415,2048642,119,5991,1 +48416,2048642,18,919,1 +48417,2048642,167,8394,1 +48418,2048643,98,4944,1 +48419,2048651,146,7328,1 +48420,2048652,19,990,1 +48421,2048652,41,2067,1 +48422,2048653,169,8456,1 +48423,2048653,136,6830,1 +48424,2048654,7,356,1 +48425,2048655,137,6871,1 +48426,2048658,125,6258,1 +48427,2048664,68,3420,1 +48428,2048664,53,2660,1 +48429,2048664,177,8864,1 +48430,2048664,78,3908,1 +48431,2048665,199,9957,1 +48432,2048665,82,4115,1 +48433,2048666,119,5966,1 +48434,2048667,95,4795,1 +48435,2048670,125,6289,1 +48436,2048679,120,6029,1 +48437,2048681,104,5222,1 +48438,2048685,173,8689,1 +48439,2048685,151,7574,1 +48440,2048686,52,2604,1 +48441,2048688,83,4187,1 +48442,2048688,53,2669,1 +48443,2048700,90,4529,1 +48444,2048701,33,1691,1 +48445,2048716,121,6078,1 +48446,2048724,13,685,1 +48447,2048724,176,8815,1 +48448,2048734,162,8144,1 +48449,2048737,180,9038,1 +48450,2048749,52,2608,1 +48451,2048772,173,8675,1 +48452,2048772,148,7437,1 +48453,2048773,127,6354,1 +48454,2048778,21,1056,1 +48455,2048795,187,9361,1 +48456,2048827,135,6798,1 +48457,2049132,47,2371,1 +48458,2049132,172,8629,1 +48459,2049133,114,5722,1 +48460,2049151,163,8175,1 +48461,2049157,105,5272,1 +48462,2049170,23,1154,1 +48463,2049174,95,4793,1 +48464,2049180,60,3023,1 +48465,2049180,89,4499,1 +48466,2049198,72,3645,1 +48467,2049201,191,9567,1 +48468,2049206,50,2534,1 +48469,2049241,134,6724,1 +48470,2049315,98,4902,1 +48471,2049600,52,2604,1 +48472,2049600,78,3950,1 +48473,2049601,78,3904,1 +48474,2049601,161,8093,1 +48475,2049607,129,6485,1 +48476,2049612,7,365,1 +48477,2049612,49,2475,1 +48478,2049612,132,6620,1 +48479,2049613,41,2098,1 +48480,2049615,144,7209,1 +48481,2049618,88,4435,1 +48482,2049624,161,8066,1 +48483,2049624,77,3861,1 +48484,2049624,188,9425,1 +48485,2049624,9,489,1 +48486,2049625,174,8738,1 +48487,2049630,80,4047,1 +48488,2049635,37,1875,1 +48489,2049636,177,8879,1 +48490,2049636,147,7384,1 +48491,2049636,26,1313,1 +48492,2049636,140,7009,1 +48493,2049637,7,373,1 +48494,2049639,108,5415,1 +48495,2049648,2,123,1 +48496,2049648,56,2832,1 +48497,2049648,185,9262,1 +48498,2049648,197,9890,1 +48499,2049649,99,4990,1 +48500,2049651,42,2123,1 +48501,2049652,169,8479,1 +48502,2049655,77,3857,1 +48503,2049661,80,4027,1 +48504,2049661,81,4084,1 +48505,2049662,36,1850,1 +48506,2049671,44,2244,1 +48507,2049674,69,3498,1 +48508,2049678,12,609,1 +48509,2049684,34,1728,1 +48510,2049684,72,3628,1 +48511,2049684,133,6686,1 +48512,2049686,109,5488,1 +48513,2049690,56,2807,1 +48514,2049691,98,4929,1 +48515,2049696,133,6655,1 +48516,2049696,100,5048,1 +48517,2049696,135,6799,1 +48518,2049708,135,6769,1 +48519,2049714,88,4429,1 +48520,2049720,64,3201,1 +48521,2049740,161,8095,1 +48522,2049867,179,8973,1 +48523,2049961,42,2128,1 +48524,2050080,129,6487,1 +48525,2050082,71,3595,1 +48526,2050083,96,4825,1 +48527,2050092,83,4156,1 +48528,2050094,160,8040,1 +48529,2050119,113,5687,1 +48530,2050125,65,3270,1 +48531,2050140,32,1620,1 +48532,2050141,146,7338,1 +48533,2050141,169,8497,1 +48534,2050164,95,4766,1 +48535,2050176,120,6019,1 +48536,2050225,108,5444,1 +48537,2050560,85,4259,1 +48538,2050569,94,4720,1 +48539,2050704,25,1275,1 +48540,2050738,60,3025,1 +48541,2051040,5,276,1 +48542,2051040,27,1352,1 +48543,2051040,91,4584,1 +48544,2051040,52,2612,1 +48545,2051043,160,8027,1 +48546,2051043,63,3170,1 +48547,2051046,171,8559,1 +48548,2051052,199,9957,1 +48549,2051052,41,2067,1 +48550,2051064,36,1841,1 +48551,2051064,3,174,1 +48552,2051076,179,8968,1 +48553,2051076,118,5946,1 +48554,2051077,190,9538,1 +48555,2051081,174,8750,1 +48556,2051084,44,2242,1 +48557,2051091,14,713,1 +48558,2051097,88,4408,1 +48559,2051100,163,8199,1 +48560,2051115,185,9280,1 +48561,2051116,164,8240,1 +48562,2051116,64,3235,1 +48563,2051121,197,9884,1 +48564,2051126,155,7767,1 +48565,2051127,185,9284,1 +48566,2051135,135,6774,1 +48567,2051137,22,1109,1 +48568,2051148,142,7109,1 +48569,2051154,55,2794,1 +48570,2051166,56,2808,1 +48571,2051184,115,5800,1 +48572,2051258,39,1957,1 +48573,2051520,158,7932,1 +48574,2051532,35,1753,1 +48575,2051533,114,5702,1 +48576,2051556,27,1377,1 +48577,2051563,42,2108,1 +48578,2051568,163,8151,1 +48579,2051568,48,2422,1 +48580,2051604,7,381,1 +48581,2051640,23,1170,1 +48582,2051664,189,9485,1 +48583,2051690,62,3137,1 +48584,2052480,60,3018,1 +48585,2052480,2,143,1 +48586,2052482,83,4173,1 +48587,2052483,154,7739,1 +48588,2052492,15,783,1 +48589,2052510,192,9608,1 +48590,2052518,177,8864,1 +48591,2052528,91,4599,1 +48592,2052540,47,2354,1 +48593,2052542,40,2003,1 +48594,2052567,108,5440,1 +48595,2052624,162,8133,1 +48596,2052684,136,6826,1 +48597,2052972,90,4502,1 +48598,2052990,32,1607,1 +48599,2052996,120,6017,1 +48600,2052996,77,3895,1 +48601,2052997,20,1029,1 +48602,2053006,21,1087,1 +48603,2053044,35,1776,1 +48604,2053045,83,4180,1 +48605,2053083,40,2025,1 +48606,2053112,27,1382,1 +48607,2053440,161,8085,1 +48608,2053440,17,885,1 +48609,2053442,0,50,1 +48610,2053452,199,9968,1 +48611,2053452,41,2063,1 +48612,2053452,84,4241,1 +48613,2053453,120,6033,1 +48614,2053453,183,9191,1 +48615,2053459,189,9452,1 +48616,2053462,77,3872,1 +48617,2053464,165,8275,1 +48618,2053470,166,8327,1 +48619,2053486,197,9882,1 +48620,2053489,149,7476,1 +48621,2053500,96,4818,1 +48622,2053500,125,6268,1 +48623,2053500,33,1695,1 +48624,2053512,12,648,1 +48625,2053512,137,6856,1 +48626,2053522,97,4882,1 +48627,2053524,30,1504,1 +48628,2053525,56,2825,1 +48629,2053548,30,1527,1 +48630,2053554,23,1172,1 +48631,2053584,76,3816,1 +48632,2053815,118,5919,1 +48633,2053922,4,246,1 +48634,2053926,23,1173,1 +48635,2053930,4,245,1 +48636,2053944,109,5454,1 +48637,2053968,123,6173,1 +48638,2053974,160,8036,1 +48639,2053974,22,1111,1 +48640,2053992,131,6587,1 +48641,2054028,176,8841,1 +48642,2054400,17,894,1 +48643,2054403,153,7698,1 +48644,2054404,14,713,1 +48645,2054409,25,1268,1 +48646,2054410,118,5927,1 +48647,2054412,118,5917,1 +48648,2054413,109,5471,1 +48649,2054414,115,5753,1 +48650,2054416,31,1599,1 +48651,2054416,67,3378,1 +48652,2054424,134,6711,1 +48653,2054424,31,1573,1 +48654,2054424,73,3673,1 +48655,2054428,36,1841,1 +48656,2054430,15,780,1 +48657,2054431,127,6372,1 +48658,2054433,143,7181,1 +48659,2054436,77,3860,1 +48660,2054436,54,2748,1 +48661,2054436,12,606,1 +48662,2054438,67,3368,1 +48663,2054447,83,4161,1 +48664,2054448,95,4752,1 +48665,2054451,109,5468,1 +48666,2054454,149,7498,1 +48667,2054460,161,8078,1 +48668,2054460,195,9790,1 +48669,2054463,22,1128,1 +48670,2054472,86,4343,1 +48671,2054472,66,3340,1 +48672,2054476,114,5736,1 +48673,2054484,87,4382,1 +48674,2054487,65,3270,1 +48675,2054496,106,5314,1 +48676,2054496,83,4176,1 +48677,2054529,42,2114,1 +48678,2054532,171,8563,1 +48679,2054556,73,3696,1 +48680,2054556,192,9636,1 +48681,2054571,60,3037,1 +48682,2054880,9,452,1 +48683,2055360,13,668,1 +48684,2055372,9,454,1 +48685,2055378,170,8519,1 +48686,2055398,159,7989,1 +48687,2055600,193,9657,1 +48688,2055612,111,5555,1 +48689,2055840,96,4810,1 +48690,2055840,163,8171,1 +48691,2055840,58,2905,1 +48692,2055841,175,8793,1 +48693,2055852,110,5545,1 +48694,2055854,187,9367,1 +48695,2055864,22,1124,1 +48696,2055873,143,7155,1 +48697,2055877,8,425,1 +48698,2055877,45,2297,1 +48699,2055878,121,6097,1 +48700,2055879,4,211,1 +48701,2055900,179,8955,1 +48702,2055906,13,656,1 +48703,2055951,18,929,1 +48704,2055960,125,6287,1 +48705,2055979,198,9913,1 +48706,2055990,197,9880,1 +48707,2056008,14,722,1 +48708,2056320,90,4528,1 +48709,2056324,184,9248,1 +48710,2056332,41,2083,1 +48711,2056380,185,9254,1 +48712,2056425,190,9547,1 +48713,2056470,122,6110,1 +48714,2056552,9,481,1 +48715,2057280,171,8559,1 +48716,2057280,10,513,1 +48717,2057285,103,5175,1 +48718,2057289,155,7778,1 +48719,2057292,34,1750,1 +48720,2057301,114,5708,1 +48721,2057302,12,627,1 +48722,2057314,154,7722,1 +48723,2057315,18,928,1 +48724,2057316,150,7515,1 +48725,2057316,34,1739,1 +48726,2057317,184,9222,1 +48727,2057325,61,3075,1 +48728,2057329,166,8344,1 +48729,2057329,187,9388,1 +48730,2057334,156,7831,1 +48731,2057340,149,7456,1 +48732,2057343,74,3728,1 +48733,2057352,125,6291,1 +48734,2057352,137,6878,1 +48735,2057364,180,9039,1 +48736,2057364,152,7610,1 +48737,2057376,145,7293,1 +48738,2057388,189,9465,1 +48739,2057388,78,3927,1 +48740,2057397,26,1301,1 +48741,2057530,32,1608,1 +48742,2057542,140,7018,1 +48743,2057773,4,226,1 +48744,2057785,132,6601,1 +48745,2057881,152,7644,1 +48746,2057895,52,2631,1 +48747,2058297,35,1773,1 +48748,2058744,142,7113,1 +48749,2058745,150,7548,1 +48750,2058771,170,8542,1 +48751,2058772,115,5752,1 +48752,2059020,69,3478,1 +48753,2059248,182,9131,1 +48754,2059308,65,3262,1 +48755,2059680,151,7595,1 +48756,2059704,60,3038,1 +48757,2059704,21,1094,1 +48758,2059717,64,3202,1 +48759,2060160,66,3309,1 +48760,2060161,174,8732,1 +48761,2060197,139,6994,1 +48762,2060221,190,9518,1 +48763,2060224,95,4780,1 +48764,2060229,84,4240,1 +48765,2060257,183,9177,1 +48766,2060354,2,136,1 +48767,2060640,144,7205,1 +48768,2060640,103,5195,1 +48769,2060652,121,6059,1 +48770,2060654,145,7252,1 +48771,2060660,147,7358,1 +48772,2060664,92,4622,1 +48773,2060669,183,9164,1 +48774,2060670,133,6670,1 +48775,2060685,54,2705,1 +48776,2060688,129,6467,1 +48777,2060724,121,6053,1 +48778,2060742,138,6904,1 +48779,2060796,132,6642,1 +48780,2061120,113,5661,1 +48781,2061121,77,3871,1 +48782,2061126,84,4203,1 +48783,2061126,167,8382,1 +48784,2061129,183,9181,1 +48785,2061132,187,9367,1 +48786,2061135,136,6840,1 +48787,2061135,83,4184,1 +48788,2061144,102,5140,1 +48789,2061144,16,837,1 +48790,2061146,127,6375,1 +48791,2061147,108,5423,1 +48792,2061147,45,2299,1 +48793,2061159,71,3565,1 +48794,2061166,133,6662,1 +48795,2061168,149,7487,1 +48796,2061180,66,3322,1 +48797,2061181,169,8470,1 +48798,2061189,149,7479,1 +48799,2061192,167,8382,1 +48800,2061192,120,6013,1 +48801,2061228,82,4122,1 +48802,2061259,147,7388,1 +48803,2061264,128,6438,1 +48804,2061264,173,8682,1 +48805,2061276,63,3174,1 +48806,2061388,15,796,1 +48807,2061600,173,8662,1 +48808,2061600,177,8888,1 +48809,2061600,51,2585,1 +48810,2061601,155,7786,1 +48811,2061603,0,46,1 +48812,2061607,121,6064,1 +48813,2061609,9,483,1 +48814,2061609,86,4324,1 +48815,2061612,26,1345,1 +48816,2061613,196,9840,1 +48817,2061615,27,1356,1 +48818,2061618,42,2150,1 +48819,2061618,123,6198,1 +48820,2061621,198,9924,1 +48821,2061624,62,3141,1 +48822,2061624,83,4199,1 +48823,2061636,64,3242,1 +48824,2061637,55,2758,1 +48825,2061642,16,809,1 +48826,2061642,153,7686,1 +48827,2061646,175,8788,1 +48828,2061654,165,8272,1 +48829,2061663,183,9194,1 +48830,2061678,147,7371,1 +48831,2061687,176,8822,1 +48832,2061687,188,9415,1 +48833,2061696,142,7101,1 +48834,2061708,128,6437,1 +48835,2061721,63,3165,1 +48836,2061735,2,121,1 +48837,2061750,13,673,1 +48838,2061780,91,4589,1 +48839,2061826,45,2289,1 +48840,2061864,114,5715,1 +48841,2062083,188,9442,1 +48842,2062097,4,236,1 +48843,2062128,60,3049,1 +48844,2062160,43,2186,1 +48845,2062164,30,1501,1 +48846,2062176,124,6202,1 +48847,2062200,79,3996,1 +48848,2062261,154,7702,1 +48849,2062272,71,3589,1 +48850,2062319,196,9812,1 +48851,2062561,122,6102,1 +48852,2062563,188,9431,1 +48853,2062572,166,8309,1 +48854,2062573,178,8910,1 +48855,2062575,134,6714,1 +48856,2062585,137,6874,1 +48857,2062586,120,6044,1 +48858,2062587,100,5038,1 +48859,2062591,142,7144,1 +48860,2062596,112,5614,1 +48861,2062596,93,4660,1 +48862,2062596,168,8412,1 +48863,2062611,189,9474,1 +48864,2062618,6,327,1 +48865,2062620,86,4327,1 +48866,2062644,92,4616,1 +48867,2062656,196,9830,1 +48868,2062681,99,4976,1 +48869,2063046,187,9367,1 +48870,2063100,36,1825,1 +48871,2064003,13,684,1 +48872,2064012,108,5438,1 +48873,2064024,164,8213,1 +48874,2064036,12,632,1 +48875,2064064,178,8905,1 +48876,2064102,95,4772,1 +48877,2064961,51,2581,1 +48878,2064961,65,3260,1 +48879,2064963,173,8668,1 +48880,2064981,79,3997,1 +48881,2064997,6,313,1 +48882,2065017,134,6749,1 +48883,2065020,17,877,1 +48884,2065020,122,6111,1 +48885,2065021,109,5493,1 +48886,2065025,152,7631,1 +48887,2065093,103,5182,1 +48888,2065440,173,8673,1 +48889,2065440,27,1383,1 +48890,2065440,36,1812,1 +48891,2065440,10,537,1 +48892,2065440,78,3915,1 +48893,2065440,71,3591,1 +48894,2065442,177,8863,1 +48895,2065442,180,9040,1 +48896,2065444,183,9186,1 +48897,2065445,151,7591,1 +48898,2065452,27,1361,1 +48899,2065452,22,1130,1 +48900,2065452,48,2420,1 +48901,2065453,33,1692,1 +48902,2065453,125,6295,1 +48903,2065454,68,3441,1 +48904,2065455,0,43,1 +48905,2065458,185,9260,1 +48906,2065458,83,4159,1 +48907,2065459,80,4005,1 +48908,2065464,144,7208,1 +48909,2065464,45,2265,1 +48910,2065464,62,3103,1 +48911,2065464,40,2048,1 +48912,2065464,175,8759,1 +48913,2065465,100,5041,1 +48914,2065467,3,178,1 +48915,2065470,164,8235,1 +48916,2065470,80,4031,1 +48917,2065478,163,8168,1 +48918,2065479,83,4188,1 +48919,2065479,9,479,1 +48920,2065485,133,6695,1 +48921,2065486,144,7225,1 +48922,2065488,196,9831,1 +48923,2065488,34,1734,1 +48924,2065488,26,1311,1 +48925,2065488,29,1487,1 +48926,2065488,174,8729,1 +48927,2065491,192,9646,1 +48928,2065501,57,2889,1 +48929,2065512,179,8974,1 +48930,2065512,184,9215,1 +48931,2065515,187,9358,1 +48932,2065519,61,3065,1 +48933,2065520,6,337,1 +48934,2065528,157,7876,1 +48935,2065548,188,9438,1 +48936,2065554,165,8272,1 +48937,2065561,68,3405,1 +48938,2065566,81,4098,1 +48939,2065566,59,2956,1 +48940,2065572,94,4740,1 +48941,2065572,147,7351,1 +48942,2065588,38,1929,1 +48943,2065609,115,5766,1 +48944,2065645,78,3950,1 +48945,2065680,171,8560,1 +48946,2065926,107,5367,1 +48947,2065932,115,5765,1 +48948,2065932,14,704,1 +48949,2065935,150,7523,1 +48950,2065970,41,2078,1 +48951,2066437,140,7032,1 +48952,2066488,72,3627,1 +48953,2066880,132,6618,1 +48954,2066880,36,1802,1 +48955,2066905,162,8130,1 +48956,2066913,51,2569,1 +48957,2066929,28,1441,1 +48958,2066940,67,3398,1 +48959,2067120,21,1087,1 +48960,2067375,57,2883,1 +48961,2067384,116,5802,1 +48962,2067384,30,1509,1 +48963,2067408,157,7873,1 +48964,2067408,17,880,1 +48965,2067409,51,2579,1 +48966,2067412,12,637,1 +48967,2067420,42,2133,1 +48968,2067422,64,3246,1 +48969,2067432,142,7120,1 +48970,2067444,106,5325,1 +48971,2067445,140,7040,1 +48972,2067450,39,1998,1 +48973,2067480,1,85,1 +48974,2067494,168,8406,1 +48975,2067849,44,2226,1 +48976,2067853,158,7948,1 +48977,2067864,192,9619,1 +48978,2067865,42,2114,1 +48979,2067866,147,7352,1 +48980,2067870,31,1586,1 +48981,2067873,77,3875,1 +48982,2067922,1,93,1 +48983,2067922,64,3243,1 +48984,2067926,177,8867,1 +48985,2067972,143,7196,1 +48986,2067986,28,1449,1 +48987,2068075,20,1010,1 +48988,2068113,133,6676,1 +48989,2068320,100,5026,1 +48990,2068357,141,7091,1 +48991,2068368,42,2135,1 +48992,2068404,138,6917,1 +48993,2068608,155,7775,1 +48994,2068800,50,2520,1 +48995,2068831,12,620,1 +48996,2068836,93,4686,1 +48997,2068872,189,9474,1 +48998,2068945,74,3748,1 +48999,2069292,58,2929,1 +49000,2070252,30,1525,1 +49001,2070277,149,7485,1 +49002,2070726,160,8037,1 +49003,2070732,137,6867,1 +49004,2070744,18,915,1 +49005,2070804,50,2523,1 +49006,2071680,137,6868,1 +49007,2071680,151,7573,1 +49008,2071680,198,9910,1 +49009,2071683,97,4857,1 +49010,2071683,135,6778,1 +49011,2071686,158,7945,1 +49012,2071686,162,8133,1 +49013,2071692,122,6108,1 +49014,2071692,23,1181,1 +49015,2071692,152,7623,1 +49016,2071692,54,2729,1 +49017,2071693,142,7141,1 +49018,2071695,11,554,1 +49019,2071696,53,2674,1 +49020,2071701,18,922,1 +49021,2071704,108,5427,1 +49022,2071705,101,5077,1 +49023,2071705,6,308,1 +49024,2071707,75,3774,1 +49025,2071716,8,425,1 +49026,2071716,95,4768,1 +49027,2071720,24,1225,1 +49028,2071720,22,1145,1 +49029,2071725,171,8600,1 +49030,2071725,7,398,1 +49031,2071726,42,2107,1 +49032,2071728,161,8066,1 +49033,2071728,100,5004,1 +49034,2071728,48,2449,1 +49035,2071729,191,9564,1 +49036,2071732,15,797,1 +49037,2071737,174,8719,1 +49038,2071740,133,6686,1 +49039,2071740,143,7195,1 +49040,2071740,64,3213,1 +49041,2071740,16,842,1 +49042,2071740,180,9020,1 +49043,2071743,156,7808,1 +49044,2071750,2,109,1 +49045,2071752,168,8405,1 +49046,2071752,83,4180,1 +49047,2071752,90,4541,1 +49048,2071752,61,3100,1 +49049,2071752,38,1909,1 +49050,2071753,69,3491,1 +49051,2071753,9,471,1 +49052,2071762,15,784,1 +49053,2071764,110,5504,1 +49054,2071768,96,4826,1 +49055,2071778,39,1982,1 +49056,2071786,161,8099,1 +49057,2071788,29,1451,1 +49058,2071790,142,7106,1 +49059,2071794,23,1182,1 +49060,2071801,24,1250,1 +49061,2071812,133,6655,1 +49062,2071825,144,7217,1 +49063,2071839,98,4936,1 +49064,2071848,134,6748,1 +49065,2072160,162,8116,1 +49066,2072175,48,2435,1 +49067,2072184,36,1841,1 +49068,2072196,40,2020,1 +49069,2072211,157,7892,1 +49070,2072212,165,8275,1 +49071,2072220,13,676,1 +49072,2072284,197,9862,1 +49073,2072400,137,6860,1 +49074,2072656,3,176,1 +49075,2073204,112,5631,1 +49076,2073600,157,7885,1 +49077,2073600,185,9254,1 +49078,2073600,192,9629,1 +49079,2073601,149,7454,1 +49080,2073624,191,9582,1 +49081,2073624,109,5489,1 +49082,2073625,178,8943,1 +49083,2073628,12,628,1 +49084,2073630,64,3238,1 +49085,2073633,169,8452,1 +49086,2073635,27,1355,1 +49087,2073636,45,2295,1 +49088,2073636,172,8609,1 +49089,2073637,180,9020,1 +49090,2073637,23,1152,1 +49091,2073639,167,8371,1 +49092,2073648,107,5357,1 +49093,2073648,144,7237,1 +49094,2073649,171,8567,1 +49095,2073651,164,8221,1 +49096,2073661,41,2057,1 +49097,2073672,113,5651,1 +49098,2073673,189,9481,1 +49099,2073674,170,8510,1 +49100,2073678,181,9061,1 +49101,2073688,125,6271,1 +49102,2073709,34,1746,1 +49103,2073710,15,798,1 +49104,2073717,56,2840,1 +49105,2073746,29,1487,1 +49106,2073747,156,7825,1 +49107,2073757,99,4985,1 +49108,2073769,154,7737,1 +49109,2073795,2,124,1 +49110,2075064,90,4546,1 +49111,2075124,118,5907,1 +49112,2075220,88,4422,1 +49113,2075526,8,407,1 +49114,2075533,165,8298,1 +49115,2075550,84,4232,1 +49116,2075653,198,9914,1 +49117,2076024,171,8554,1 +49118,2076482,19,964,1 +49119,2076495,59,2960,1 +49120,2076498,72,3611,1 +49121,2076501,123,6184,1 +49122,2076504,6,328,1 +49123,2076506,178,8942,1 +49124,2076506,79,3993,1 +49125,2076507,66,3301,1 +49126,2076510,25,1258,1 +49127,2076516,166,8319,1 +49128,2076517,140,7026,1 +49129,2076519,101,5068,1 +49130,2076544,105,5295,1 +49131,2076549,114,5706,1 +49132,2076588,134,6741,1 +49133,2076610,173,8658,1 +49134,2076645,116,5830,1 +49135,2076660,92,4631,1 +49136,2076960,76,3821,1 +49137,2076960,15,763,1 +49138,2076960,28,1431,1 +49139,2076961,52,2623,1 +49140,2076972,18,911,1 +49141,2076975,58,2906,1 +49142,2076984,165,8291,1 +49143,2076984,126,6334,1 +49144,2076996,91,4572,1 +49145,2077023,132,6613,1 +49146,2077032,82,4103,1 +49147,2077033,114,5711,1 +49148,2077038,100,5013,1 +49149,2077043,109,5453,1 +49150,2077047,196,9823,1 +49151,2077048,69,3500,1 +49152,2077059,100,5034,1 +49153,2077477,103,5170,1 +49154,2077491,190,9535,1 +49155,2078400,64,3203,1 +49156,2078401,60,3037,1 +49157,2078404,16,806,1 +49158,2078406,11,589,1 +49159,2078409,193,9690,1 +49160,2078409,65,3287,1 +49161,2078413,184,9236,1 +49162,2078415,183,9186,1 +49163,2078416,132,6628,1 +49164,2078424,178,8939,1 +49165,2078425,45,2289,1 +49166,2078425,199,9988,1 +49167,2078433,176,8817,1 +49168,2078436,36,1840,1 +49169,2078436,169,8495,1 +49170,2078437,94,4714,1 +49171,2078438,184,9243,1 +49172,2078442,56,2826,1 +49173,2078448,185,9294,1 +49174,2078448,137,6873,1 +49175,2078451,62,3129,1 +49176,2078460,85,4298,1 +49177,2078463,45,2275,1 +49178,2078472,53,2662,1 +49179,2078473,199,9971,1 +49180,2078477,133,6673,1 +49181,2078484,45,2295,1 +49182,2078496,11,574,1 +49183,2078524,101,5071,1 +49184,2078783,53,2670,1 +49185,2078913,106,5344,1 +49186,2078946,148,7431,1 +49187,2079480,24,1219,1 +49188,2079520,70,3527,1 +49189,2079841,34,1734,1 +49190,2079852,12,605,1 +49191,2079853,177,8857,1 +49192,2079864,59,2957,1 +49193,2079865,121,6081,1 +49194,2079865,191,9563,1 +49195,2079909,175,8754,1 +49196,2079916,43,2182,1 +49197,2079937,125,6285,1 +49198,2079949,104,5242,1 +49199,2080329,18,911,1 +49200,2080344,39,1988,1 +49201,2080356,85,4280,1 +49202,2080422,163,8167,1 +49203,2080824,166,8335,1 +49204,2081287,11,599,1 +49205,2081304,14,733,1 +49206,2081358,82,4132,1 +49207,2081361,63,3157,1 +49208,2081384,160,8016,1 +49209,2081400,53,2692,1 +49210,2081473,128,6401,1 +49211,2081809,26,1325,1 +49212,2081809,60,3039,1 +49213,2081814,92,4636,1 +49214,2082240,29,1487,1 +49215,2082254,64,3239,1 +49216,2082255,20,1018,1 +49217,2082264,15,785,1 +49218,2082277,141,7053,1 +49219,2082278,173,8660,1 +49220,2082288,117,5860,1 +49221,2082297,48,2423,1 +49222,2082301,140,7026,1 +49223,2082720,150,7537,1 +49224,2082721,175,8790,1 +49225,2082721,39,1994,1 +49226,2082732,97,4882,1 +49227,2082733,13,686,1 +49228,2082744,155,7754,1 +49229,2082745,158,7933,1 +49230,2082757,142,7106,1 +49231,2082759,14,724,1 +49232,2082768,40,2002,1 +49233,2082828,4,207,1 +49234,2082865,143,7184,1 +49235,2082979,64,3217,1 +49236,2083202,21,1059,1 +49237,2083212,139,6952,1 +49238,2083218,158,7949,1 +49239,2083224,88,4412,1 +49240,2083238,123,6172,1 +49241,2083260,37,1875,1 +49242,2083286,119,5983,1 +49243,2083293,174,8725,1 +49244,2083320,78,3934,1 +49245,2083344,165,8295,1 +49246,2083347,75,3785,1 +49247,2083680,91,4567,1 +49248,2083681,124,6219,1 +49249,2083693,1,51,1 +49250,2083707,161,8063,1 +49251,2083728,6,330,1 +49252,2083728,32,1609,1 +49253,2083875,43,2167,1 +49254,2084160,99,4962,1 +49255,2084161,172,8607,1 +49256,2084166,84,4228,1 +49257,2084167,51,2594,1 +49258,2084172,199,9989,1 +49259,2084184,159,7979,1 +49260,2084184,22,1101,1 +49261,2084188,58,2905,1 +49262,2084208,57,2896,1 +49263,2084214,30,1516,1 +49264,2084217,144,7237,1 +49265,2084219,83,4187,1 +49266,2084237,5,265,1 +49267,2084653,40,2049,1 +49268,2084654,68,3421,1 +49269,2084713,38,1930,1 +49270,2085120,14,708,1 +49271,2085120,69,3482,1 +49272,2085132,87,4366,1 +49273,2085216,127,6398,1 +49274,2085624,187,9380,1 +49275,2085625,45,2258,1 +49276,2085637,28,1424,1 +49277,2085637,170,8516,1 +49278,2085663,111,5585,1 +49279,2085672,112,5636,1 +49280,2085718,174,8712,1 +49281,2086093,194,9741,1 +49282,2086104,31,1577,1 +49283,2086116,25,1274,1 +49284,2086118,69,3500,1 +49285,2086122,84,4214,1 +49286,2086129,14,702,1 +49287,2086130,146,7345,1 +49288,2086140,62,3147,1 +49289,2086164,89,4462,1 +49290,2086176,24,1215,1 +49291,2086177,140,7020,1 +49292,2086188,194,9750,1 +49293,2086200,142,7141,1 +49294,2086201,185,9270,1 +49295,2086225,180,9027,1 +49296,2086251,184,9242,1 +49297,2086565,140,7049,1 +49298,2086584,52,2645,1 +49299,2086645,16,805,1 +49300,2087064,140,7026,1 +49301,2087068,193,9661,1 +49302,2087526,37,1854,1 +49303,2087536,30,1520,1 +49304,2087605,164,8206,1 +49305,2087676,58,2919,1 +49306,2087676,107,5352,1 +49307,2088011,166,8320,1 +49308,2088012,42,2119,1 +49309,2088012,53,2656,1 +49310,2088024,18,945,1 +49311,2088028,7,395,1 +49312,2088043,123,6195,1 +49313,2088048,138,6947,1 +49314,2088048,85,4274,1 +49315,2088060,88,4425,1 +49316,2088124,190,9522,1 +49317,2088156,35,1781,1 +49318,2088210,33,1652,1 +49319,2088216,65,3252,1 +49320,2088481,66,3335,1 +49321,2088483,163,8156,1 +49322,2088501,188,9413,1 +49323,2088507,78,3916,1 +49324,2088516,168,8427,1 +49325,2088540,81,4086,1 +49326,2088545,52,2646,1 +49327,2088552,157,7851,1 +49328,2088576,88,4421,1 +49329,2088601,175,8761,1 +49330,2088621,95,4794,1 +49331,2088969,0,36,1 +49332,2088973,33,1674,1 +49333,2088998,150,7524,1 +49334,2089010,192,9627,1 +49335,2089056,27,1356,1 +49336,2089080,162,8120,1 +49337,2089440,124,6240,1 +49338,2089444,4,209,1 +49339,2089461,51,2576,1 +49340,2089475,183,9186,1 +49341,2089476,93,4691,1 +49342,2089477,123,6165,1 +49343,2089492,83,4192,1 +49344,2089492,136,6818,1 +49345,2089525,30,1511,1 +49346,2089543,94,4716,1 +49347,2089953,153,7681,1 +49348,2090412,134,6745,1 +49349,2090425,131,6579,1 +49350,2090448,77,3883,1 +49351,2090880,96,4838,1 +49352,2090880,51,2573,1 +49353,2090880,141,7096,1 +49354,2090880,43,2197,1 +49355,2090880,144,7219,1 +49356,2090881,158,7934,1 +49357,2090882,153,7655,1 +49358,2090886,135,6791,1 +49359,2090889,171,8583,1 +49360,2090890,54,2739,1 +49361,2090891,135,6780,1 +49362,2090892,61,3069,1 +49363,2090892,162,8150,1 +49364,2090895,86,4309,1 +49365,2090895,93,4678,1 +49366,2090896,193,9676,1 +49367,2090898,2,129,1 +49368,2090898,115,5763,1 +49369,2090907,159,7959,1 +49370,2090911,96,4827,1 +49371,2090913,128,6411,1 +49372,2090916,41,2095,1 +49373,2090920,117,5878,1 +49374,2090925,67,3396,1 +49375,2090928,7,397,1 +49376,2090928,165,8252,1 +49377,2090928,24,1220,1 +49378,2090928,81,4099,1 +49379,2090931,90,4537,1 +49380,2090935,89,4493,1 +49381,2090940,121,6098,1 +49382,2090953,187,9351,1 +49383,2090964,124,6235,1 +49384,2090967,1,72,1 +49385,2090969,35,1787,1 +49386,2090977,7,368,1 +49387,2090992,180,9001,1 +49388,2091006,64,3233,1 +49389,2091009,199,9982,1 +49390,2091012,66,3325,1 +49391,2091012,146,7301,1 +49392,2091062,81,4099,1 +49393,2091360,5,261,1 +49394,2091372,112,5623,1 +49395,2091372,127,6370,1 +49396,2091372,185,9288,1 +49397,2091373,80,4010,1 +49398,2091375,125,6270,1 +49399,2091375,140,7041,1 +49400,2091379,142,7124,1 +49401,2091384,77,3877,1 +49402,2091384,183,9196,1 +49403,2091384,123,6164,1 +49404,2091384,7,391,1 +49405,2091395,9,460,1 +49406,2091405,184,9237,1 +49407,2091408,14,702,1 +49408,2091408,130,6530,1 +49409,2091420,104,5208,1 +49410,2091420,22,1111,1 +49411,2091420,167,8358,1 +49412,2091424,55,2796,1 +49413,2091432,179,8999,1 +49414,2091433,194,9729,1 +49415,2091456,101,5070,1 +49416,2091466,176,8840,1 +49417,2091470,2,109,1 +49418,2091480,169,8494,1 +49419,2091517,117,5882,1 +49420,2091552,9,493,1 +49421,2091609,15,773,1 +49422,2091626,159,7958,1 +49423,2091840,174,8743,1 +49424,2091840,2,107,1 +49425,2091841,62,3137,1 +49426,2091841,30,1507,1 +49427,2091844,176,8826,1 +49428,2091852,31,1599,1 +49429,2091852,194,9716,1 +49430,2091855,66,3342,1 +49431,2091873,163,8161,1 +49432,2091876,7,379,1 +49433,2091876,40,2015,1 +49434,2091876,100,5012,1 +49435,2091877,159,7978,1 +49436,2091891,6,327,1 +49437,2091894,33,1653,1 +49438,2091900,155,7761,1 +49439,2091904,69,3453,1 +49440,2091906,142,7149,1 +49441,2091924,47,2367,1 +49442,2091939,152,7641,1 +49443,2092068,82,4129,1 +49444,2092105,131,6574,1 +49445,2092332,183,9196,1 +49446,2092344,118,5902,1 +49447,2092357,13,655,1 +49448,2092368,71,3571,1 +49449,2092380,67,3370,1 +49450,2092384,149,7464,1 +49451,2092440,25,1275,1 +49452,2092467,196,9818,1 +49453,2092800,19,987,1 +49454,2092802,181,9055,1 +49455,2092822,168,8409,1 +49456,2092837,138,6908,1 +49457,2092870,31,1570,1 +49458,2092896,190,9522,1 +49459,2092992,183,9188,1 +49460,2093030,43,2178,1 +49461,2093039,133,6697,1 +49462,2093280,140,7004,1 +49463,2093280,110,5522,1 +49464,2093289,21,1065,1 +49465,2093304,97,4874,1 +49466,2093307,43,2168,1 +49467,2093328,47,2368,1 +49468,2093786,47,2369,1 +49469,2094240,123,6156,1 +49470,2094240,6,302,1 +49471,2094240,37,1887,1 +49472,2094241,124,6205,1 +49473,2094243,169,8474,1 +49474,2094252,167,8373,1 +49475,2094252,124,6228,1 +49476,2094254,69,3486,1 +49477,2094255,43,2200,1 +49478,2094255,186,9323,1 +49479,2094258,194,9737,1 +49480,2094264,123,6170,1 +49481,2094264,22,1127,1 +49482,2094264,73,3664,1 +49483,2094264,35,1761,1 +49484,2094264,182,9108,1 +49485,2094265,126,6350,1 +49486,2094265,74,3716,1 +49487,2094265,0,32,1 +49488,2094268,136,6805,1 +49489,2094269,6,318,1 +49490,2094273,81,4096,1 +49491,2094276,108,5421,1 +49492,2094288,191,9595,1 +49493,2094288,88,4403,1 +49494,2094289,186,9308,1 +49495,2094291,115,5761,1 +49496,2094294,81,4087,1 +49497,2094303,122,6114,1 +49498,2094312,70,3521,1 +49499,2094317,61,3075,1 +49500,2094322,89,4456,1 +49501,2094324,134,6741,1 +49502,2094331,98,4944,1 +49503,2094336,129,6488,1 +49504,2094339,133,6697,1 +49505,2094345,79,3972,1 +49506,2094360,74,3726,1 +49507,2094528,78,3934,1 +49508,2094726,180,9014,1 +49509,2094726,70,3527,1 +49510,2094747,82,4128,1 +49511,2094757,24,1244,1 +49512,2094768,105,5264,1 +49513,2094780,136,6817,1 +49514,2094781,11,559,1 +49515,2094811,182,9135,1 +49516,2094890,95,4753,1 +49517,2095200,191,9560,1 +49518,2095236,64,3241,1 +49519,2095359,148,7427,1 +49520,2095704,148,7433,1 +49521,2095729,9,459,1 +49522,2096168,64,3228,1 +49523,2096194,78,3933,1 +49524,2096196,174,8705,1 +49525,2096202,134,6708,1 +49526,2096233,113,5656,1 +49527,2096640,94,4743,1 +49528,2096641,13,674,1 +49529,2096664,148,7401,1 +49530,2096695,185,9280,1 +49531,2096700,53,2680,1 +49532,2096757,0,2,1 +49533,2096820,102,5133,1 +49534,2097120,39,1988,1 +49535,2097120,10,544,1 +49536,2097120,73,3663,1 +49537,2097120,190,9541,1 +49538,2097120,150,7518,1 +49539,2097120,80,4013,1 +49540,2097121,164,8208,1 +49541,2097121,96,4844,1 +49542,2097127,186,9330,1 +49543,2097132,81,4093,1 +49544,2097132,72,3641,1 +49545,2097132,179,8978,1 +49546,2097134,148,7401,1 +49547,2097137,83,4163,1 +49548,2097144,19,976,1 +49549,2097145,20,1034,1 +49550,2097146,9,452,1 +49551,2097151,37,1860,1 +49552,2097153,98,4946,1 +49553,2097153,2,109,1 +49554,2097156,110,5514,1 +49555,2097159,63,3159,1 +49556,2097159,134,6707,1 +49557,2097162,23,1155,1 +49558,2097166,164,8231,1 +49559,2097168,187,9396,1 +49560,2097168,182,9103,1 +49561,2097169,149,7457,1 +49562,2097180,43,2193,1 +49563,2097181,170,8548,1 +49564,2097186,134,6706,1 +49565,2097192,188,9417,1 +49566,2097204,77,3881,1 +49567,2097210,11,567,1 +49568,2097228,183,9193,1 +49569,2097228,95,4772,1 +49570,2097228,114,5701,1 +49571,2097228,40,2015,1 +49572,2097229,41,2052,1 +49573,2097240,192,9609,1 +49574,2097243,133,6679,1 +49575,2097277,1,53,1 +49576,2097324,156,7826,1 +49577,2097337,191,9552,1 +49578,2097600,67,3357,1 +49579,2097600,154,7701,1 +49580,2097616,43,2192,1 +49581,2097660,54,2730,1 +49582,2098081,38,1941,1 +49583,2098140,78,3915,1 +49584,2098213,188,9428,1 +49585,2098227,196,9814,1 +49586,2098236,111,5571,1 +49587,2098278,54,2744,1 +49588,2098378,118,5915,1 +49589,2098585,7,351,1 +49590,2098599,100,5036,1 +49591,2098621,59,2974,1 +49592,2098632,157,7883,1 +49593,2098632,61,3058,1 +49594,2098692,44,2221,1 +49595,2098856,18,946,1 +49596,2099052,36,1844,1 +49597,2099089,166,8320,1 +49598,2099160,193,9696,1 +49599,2099527,184,9244,1 +49600,2100012,175,8784,1 +49601,2100099,77,3896,1 +49602,2100145,57,2896,1 +49603,2100417,13,667,1 +49604,2100480,5,254,1 +49605,2100481,41,2071,1 +49606,2100552,34,1704,1 +49607,2100960,32,1635,1 +49608,2100960,193,9682,1 +49609,2100966,54,2710,1 +49610,2100972,179,8978,1 +49611,2100972,134,6747,1 +49612,2100996,113,5657,1 +49613,2101005,144,7237,1 +49614,2101008,51,2583,1 +49615,2101020,11,575,1 +49616,2101020,106,5343,1 +49617,2101056,116,5802,1 +49618,2101056,127,6366,1 +49619,2101071,145,7292,1 +49620,2101107,53,2695,1 +49621,2101116,182,9108,1 +49622,2101117,47,2367,1 +49623,2101443,181,9079,1 +49624,2101447,33,1656,1 +49625,2101465,72,3605,1 +49626,2101465,65,3277,1 +49627,2101476,183,9154,1 +49628,2101488,105,5282,1 +49629,2101494,28,1432,1 +49630,2101500,71,3579,1 +49631,2101500,115,5795,1 +49632,2101500,127,6373,1 +49633,2101506,9,471,1 +49634,2101518,71,3582,1 +49635,2101533,163,8160,1 +49636,2101680,30,1534,1 +49637,2101923,144,7218,1 +49638,2101923,32,1635,1 +49639,2101941,27,1353,1 +49640,2101956,171,8554,1 +49641,2101980,28,1417,1 +49642,2102073,161,8062,1 +49643,2102893,15,762,1 +49644,2102904,100,5042,1 +49645,2102928,19,956,1 +49646,2102932,81,4058,1 +49647,2102940,170,8510,1 +49648,2103112,194,9730,1 +49649,2103456,32,1633,1 +49650,2104320,113,5694,1 +49651,2104320,61,3076,1 +49652,2104321,152,7622,1 +49653,2104325,14,730,1 +49654,2104326,103,5184,1 +49655,2104327,46,2325,1 +49656,2104344,93,4689,1 +49657,2104347,38,1946,1 +49658,2104347,158,7938,1 +49659,2104381,79,3968,1 +49660,2104407,122,6113,1 +49661,2104423,63,3196,1 +49662,2104452,15,757,1 +49663,2104808,17,863,1 +49664,2104836,121,6097,1 +49665,2104848,112,5615,1 +49666,2105760,75,3791,1 +49667,2105773,69,3485,1 +49668,2105784,7,365,1 +49669,2105809,190,9517,1 +49670,2105844,62,3109,1 +49671,2106252,63,3173,1 +49672,2106255,141,7066,1 +49673,2106721,20,1030,1 +49674,2106744,13,673,1 +49675,2107200,18,923,1 +49676,2107200,63,3170,1 +49677,2107200,61,3087,1 +49678,2107200,178,8901,1 +49679,2107200,108,5431,1 +49680,2107201,134,6716,1 +49681,2107201,167,8396,1 +49682,2107202,162,8133,1 +49683,2107209,195,9779,1 +49684,2107212,11,593,1 +49685,2107212,46,2340,1 +49686,2107213,145,7251,1 +49687,2107214,14,708,1 +49688,2107215,145,7254,1 +49689,2107222,174,8744,1 +49690,2107224,34,1711,1 +49691,2107225,141,7090,1 +49692,2107230,85,4276,1 +49693,2107233,16,821,1 +49694,2107233,166,8305,1 +49695,2107236,7,379,1 +49696,2107236,91,4593,1 +49697,2107237,39,1955,1 +49698,2107248,61,3080,1 +49699,2107248,91,4587,1 +49700,2107248,113,5672,1 +49701,2107252,45,2295,1 +49702,2107254,87,4386,1 +49703,2107265,5,265,1 +49704,2107272,5,288,1 +49705,2107273,122,6150,1 +49706,2107274,192,9605,1 +49707,2107285,176,8813,1 +49708,2107297,36,1827,1 +49709,2107308,40,2035,1 +49710,2107309,80,4032,1 +49711,2107310,137,6867,1 +49712,2107320,82,4140,1 +49713,2107326,126,6323,1 +49714,2107332,66,3346,1 +49715,2107393,60,3002,1 +49716,2107394,154,7749,1 +49717,2107441,81,4086,1 +49718,2107572,63,3157,1 +49719,2107683,80,4028,1 +49720,2107692,161,8078,1 +49721,2107700,50,2521,1 +49722,2107704,113,5693,1 +49723,2107741,176,8829,1 +49724,2107741,117,5886,1 +49725,2107752,192,9607,1 +49726,2107776,106,5331,1 +49727,2107788,159,7964,1 +49728,2107812,23,1193,1 +49729,2107860,115,5785,1 +49730,2108161,65,3288,1 +49731,2108172,10,515,1 +49732,2108185,196,9831,1 +49733,2108201,103,5181,1 +49734,2108220,70,3546,1 +49735,2108281,0,2,1 +49736,2108641,191,9551,1 +49737,2108700,102,5116,1 +49738,2108718,40,2043,1 +49739,2109120,163,8176,1 +49740,2109121,34,1733,1 +49741,2109136,15,791,1 +49742,2109136,122,6127,1 +49743,2109156,115,5760,1 +49744,2109187,86,4324,1 +49745,2109205,192,9642,1 +49746,2109226,193,9654,1 +49747,2109230,38,1919,1 +49748,2109253,20,1022,1 +49749,2109277,187,9351,1 +49750,2109288,5,262,1 +49751,2109313,171,8576,1 +49752,2109600,39,1986,1 +49753,2109600,167,8361,1 +49754,2109612,109,5451,1 +49755,2109627,10,546,1 +49756,2109628,123,6198,1 +49757,2109648,112,5644,1 +49758,2109649,55,2761,1 +49759,2109672,177,8882,1 +49760,2109722,79,3977,1 +49761,2109768,167,8366,1 +49762,2109787,170,8525,1 +49763,2110080,151,7597,1 +49764,2110080,88,4439,1 +49765,2110092,138,6940,1 +49766,2110116,197,9855,1 +49767,2110117,47,2394,1 +49768,2110135,33,1677,1 +49769,2110165,106,5333,1 +49770,2110176,98,4912,1 +49771,2110560,38,1913,1 +49772,2110596,88,4436,1 +49773,2110608,44,2214,1 +49774,2110629,183,9163,1 +49775,2110662,16,814,1 +49776,2112024,191,9553,1 +49777,2112217,141,7063,1 +49778,2112480,167,8365,1 +49779,2112481,48,2407,1 +49780,2112483,164,8227,1 +49781,2112492,55,2791,1 +49782,2112492,177,8852,1 +49783,2112492,8,408,1 +49784,2112494,40,2019,1 +49785,2112504,158,7918,1 +49786,2112504,180,9030,1 +49787,2112504,177,8899,1 +49788,2112523,99,4991,1 +49789,2112526,184,9224,1 +49790,2112528,110,5532,1 +49791,2112528,198,9924,1 +49792,2112541,74,3734,1 +49793,2112541,67,3353,1 +49794,2112550,5,296,1 +49795,2112559,36,1834,1 +49796,2112576,192,9643,1 +49797,2112642,51,2561,1 +49798,2112648,173,8695,1 +49799,2112657,82,4133,1 +49800,2112723,148,7419,1 +49801,2112807,61,3098,1 +49802,2113440,135,6800,1 +49803,2113440,185,9269,1 +49804,2113464,65,3291,1 +49805,2113487,7,393,1 +49806,2113503,144,7205,1 +49807,2113920,194,9738,1 +49808,2113924,45,2297,1 +49809,2113932,14,712,1 +49810,2113945,78,3919,1 +49811,2113956,30,1525,1 +49812,2113989,122,6110,1 +49813,2113992,157,7877,1 +49814,2114098,195,9766,1 +49815,2114400,166,8308,1 +49816,2114400,97,4881,1 +49817,2114401,9,476,1 +49818,2114402,47,2354,1 +49819,2114402,180,9050,1 +49820,2114405,154,7715,1 +49821,2114406,141,7062,1 +49822,2114412,101,5081,1 +49823,2114414,191,9599,1 +49824,2114416,115,5775,1 +49825,2114416,113,5690,1 +49826,2114418,123,6168,1 +49827,2114419,31,1583,1 +49828,2114428,88,4447,1 +49829,2114430,182,9144,1 +49830,2114431,19,978,1 +49831,2114437,54,2736,1 +49832,2114448,72,3633,1 +49833,2114460,59,2957,1 +49834,2114460,98,4947,1 +49835,2114466,154,7713,1 +49836,2114482,78,3950,1 +49837,2114496,150,7523,1 +49838,2114498,120,6032,1 +49839,2114505,37,1897,1 +49840,2114547,52,2607,1 +49841,2114880,14,733,1 +49842,2114880,90,4503,1 +49843,2114881,158,7905,1 +49844,2114883,2,106,1 +49845,2114883,151,7573,1 +49846,2114889,85,4287,1 +49847,2114889,27,1376,1 +49848,2114892,20,1011,1 +49849,2114892,66,3314,1 +49850,2114893,68,3445,1 +49851,2114904,134,6723,1 +49852,2114923,68,3431,1 +49853,2114985,109,5478,1 +49854,2115013,6,343,1 +49855,2115072,70,3532,1 +49856,2115072,131,6589,1 +49857,2115360,197,9858,1 +49858,2115414,50,2502,1 +49859,2115432,182,9106,1 +49860,2116320,178,8932,1 +49861,2116320,86,4343,1 +49862,2116320,36,1825,1 +49863,2116332,72,3641,1 +49864,2116344,96,4835,1 +49865,2116345,138,6931,1 +49866,2116377,25,1272,1 +49867,2116392,145,7261,1 +49868,2116402,42,2114,1 +49869,2116440,150,7505,1 +49870,2116452,70,3541,1 +49871,2116467,140,7021,1 +49872,2116571,91,4557,1 +49873,2116800,122,6132,1 +49874,2116801,15,785,1 +49875,2116824,1,74,1 +49876,2116848,31,1591,1 +49877,2116884,88,4404,1 +49878,2116885,128,6445,1 +49879,2117292,181,9071,1 +49880,2117305,126,6326,1 +49881,2117305,68,3433,1 +49882,2117316,194,9740,1 +49883,2117324,36,1844,1 +49884,2117328,91,4557,1 +49885,2117329,134,6737,1 +49886,2117350,110,5504,1 +49887,2117407,40,2047,1 +49888,2117410,24,1243,1 +49889,2117760,110,5514,1 +49890,2117761,95,4796,1 +49891,2117784,35,1762,1 +49892,2117784,33,1652,1 +49893,2117787,71,3571,1 +49894,2117809,45,2300,1 +49895,2117811,119,5994,1 +49896,2117827,113,5659,1 +49897,2117847,167,8371,1 +49898,2117849,121,6077,1 +49899,2117856,155,7775,1 +49900,2117856,198,9926,1 +49901,2117905,194,9740,1 +49902,2117964,39,1966,1 +49903,2118264,129,6483,1 +49904,2118720,160,8032,1 +49905,2118720,77,3891,1 +49906,2118720,43,2169,1 +49907,2118721,172,8608,1 +49908,2118722,142,7109,1 +49909,2118723,22,1116,1 +49910,2118732,137,6853,1 +49911,2118732,157,7879,1 +49912,2118733,33,1699,1 +49913,2118735,104,5247,1 +49914,2118738,52,2614,1 +49915,2118741,100,5022,1 +49916,2118744,180,9007,1 +49917,2118744,70,3503,1 +49918,2118744,96,4814,1 +49919,2118745,19,973,1 +49920,2118756,146,7322,1 +49921,2118756,0,47,1 +49922,2118756,67,3390,1 +49923,2118765,65,3259,1 +49924,2118771,69,3474,1 +49925,2118772,119,5990,1 +49926,2118780,109,5470,1 +49927,2118783,39,2000,1 +49928,2118793,12,645,1 +49929,2118793,27,1375,1 +49930,2118805,184,9246,1 +49931,2118820,12,615,1 +49932,2118834,63,3168,1 +49933,2118844,148,7405,1 +49934,2118864,108,5449,1 +49935,2118865,164,8249,1 +49936,2118888,52,2623,1 +49937,2118913,92,4624,1 +49938,2118921,143,7157,1 +49939,2118924,197,9889,1 +49940,2119044,57,2874,1 +49941,2119250,105,5280,1 +49942,2119296,158,7950,1 +49943,2119308,112,5629,1 +49944,2119680,31,1582,1 +49945,2119680,23,1194,1 +49946,2119693,6,328,1 +49947,2119812,148,7422,1 +49948,2120163,140,7023,1 +49949,2120169,66,3339,1 +49950,2120173,171,8553,1 +49951,2120176,162,8136,1 +49952,2120181,160,8011,1 +49953,2120184,131,6586,1 +49954,2120184,194,9723,1 +49955,2120196,155,7755,1 +49956,2120206,192,9615,1 +49957,2120210,167,8392,1 +49958,2120289,82,4128,1 +49959,2120640,103,5152,1 +49960,2120641,70,3549,1 +49961,2120652,34,1727,1 +49962,2120652,93,4663,1 +49963,2120653,165,8261,1 +49964,2120659,145,7278,1 +49965,2120662,19,954,1 +49966,2120664,183,9159,1 +49967,2120670,72,3636,1 +49968,2120670,188,9425,1 +49969,2120688,47,2370,1 +49970,2120700,125,6262,1 +49971,2120710,95,4793,1 +49972,2120713,150,7546,1 +49973,2120745,66,3347,1 +49974,2120749,162,8132,1 +49975,2120751,183,9169,1 +49976,2121129,63,3194,1 +49977,2121144,101,5070,1 +49978,2121144,197,9869,1 +49979,2121147,81,4081,1 +49980,2121602,33,1680,1 +49981,2121613,117,5872,1 +49982,2121652,146,7328,1 +49983,2122560,83,4184,1 +49984,2122572,87,4355,1 +49985,2122584,144,7206,1 +49986,2122587,177,8867,1 +49987,2123040,121,6076,1 +49988,2123040,30,1532,1 +49989,2123045,78,3948,1 +49990,2123064,79,3997,1 +49991,2123065,110,5545,1 +49992,2123091,164,8219,1 +49993,2123113,60,3049,1 +49994,2123113,198,9922,1 +49995,2123218,49,2459,1 +49996,2123523,58,2919,1 +49997,2123532,124,6240,1 +49998,2123532,104,5236,1 +49999,2123539,161,8067,1 +50000,2123544,114,5730,1 +50001,2123547,194,9721,1 +50002,2123550,50,2550,1 +50003,2123568,100,5003,1 +50004,2123569,103,5168,1 +50005,2123577,140,7009,1 +50006,2123584,23,1155,1 +50007,2123589,195,9772,1 +50008,2123604,57,2852,1 +50009,2123607,188,9413,1 +50010,2123643,105,5290,1 +50011,2123677,186,9331,1 +50012,2123688,174,8720,1 +50013,2123784,139,6981,1 +50014,2124000,135,6773,1 +50015,2124000,171,8573,1 +50016,2124000,9,479,1 +50017,2124003,163,8177,1 +50018,2124003,181,9082,1 +50019,2124006,163,8163,1 +50020,2124012,167,8371,1 +50021,2124016,58,2917,1 +50022,2124024,63,3177,1 +50023,2124025,165,8273,1 +50024,2124036,41,2097,1 +50025,2124038,63,3177,1 +50026,2124046,1,75,1 +50027,2124048,58,2943,1 +50028,2124048,146,7345,1 +50029,2124050,114,5720,1 +50030,2124060,49,2454,1 +50031,2124061,28,1407,1 +50032,2124064,100,5029,1 +50033,2124480,183,9184,1 +50034,2124480,128,6411,1 +50035,2124489,95,4762,1 +50036,2124492,23,1170,1 +50037,2124492,119,5956,1 +50038,2124492,125,6253,1 +50039,2124492,44,2236,1 +50040,2124493,30,1546,1 +50041,2124493,159,7988,1 +50042,2124504,172,8630,1 +50043,2124504,25,1272,1 +50044,2124506,47,2380,1 +50045,2124516,77,3857,1 +50046,2124516,13,662,1 +50047,2124517,58,2942,1 +50048,2124519,1,94,1 +50049,2124534,128,6424,1 +50050,2124540,136,6804,1 +50051,2124555,110,5542,1 +50052,2124564,162,8123,1 +50053,2124577,98,4944,1 +50054,2124615,49,2461,1 +50055,2124709,48,2428,1 +50056,2124960,106,5314,1 +50057,2124960,9,497,1 +50058,2124972,110,5524,1 +50059,2124974,51,2567,1 +50060,2124974,45,2297,1 +50061,2124987,33,1680,1 +50062,2124989,30,1530,1 +50063,2125008,51,2559,1 +50064,2125027,169,8496,1 +50065,2125056,48,2407,1 +50066,2125074,160,8011,1 +50067,2125082,109,5466,1 +50068,2125128,41,2067,1 +50069,2125245,44,2212,1 +50070,2125261,90,4546,1 +50071,2125448,82,4132,1 +50072,2125452,9,486,1 +50073,2125524,197,9861,1 +50074,2125920,107,5372,1 +50075,2125920,102,5143,1 +50076,2125921,129,6495,1 +50077,2125923,125,6275,1 +50078,2125933,82,4108,1 +50079,2125957,44,2205,1 +50080,2125977,189,9481,1 +50081,2126004,116,5829,1 +50082,2126016,54,2723,1 +50083,2126400,85,4257,1 +50084,2126400,109,5460,1 +50085,2126406,66,3302,1 +50086,2126407,16,847,1 +50087,2126412,113,5654,1 +50088,2126413,80,4027,1 +50089,2126414,62,3136,1 +50090,2126418,142,7117,1 +50091,2126424,84,4228,1 +50092,2126427,145,7285,1 +50093,2126436,70,3519,1 +50094,2126436,71,3556,1 +50095,2126440,88,4414,1 +50096,2126442,195,9775,1 +50097,2126448,37,1891,1 +50098,2126453,192,9609,1 +50099,2126457,64,3219,1 +50100,2126461,176,8814,1 +50101,2126461,111,5569,1 +50102,2126469,150,7506,1 +50103,2126472,191,9590,1 +50104,2126472,158,7901,1 +50105,2126479,192,9602,1 +50106,2126484,136,6822,1 +50107,2126490,64,3241,1 +50108,2126556,22,1119,1 +50109,2126556,82,4144,1 +50110,2126556,29,1453,1 +50111,2126664,176,8822,1 +50112,2126754,147,7384,1 +50113,2126892,64,3203,1 +50114,2126904,189,9457,1 +50115,2126904,36,1835,1 +50116,2126940,64,3244,1 +50117,2126949,21,1078,1 +50118,2126988,160,8011,1 +50119,2127003,130,6516,1 +50120,2127360,56,2837,1 +50121,2127360,186,9321,1 +50122,2127360,62,3116,1 +50123,2127362,30,1520,1 +50124,2127373,10,502,1 +50125,2127387,189,9480,1 +50126,2127387,35,1759,1 +50127,2127408,59,2991,1 +50128,2127414,34,1704,1 +50129,2127417,1,84,1 +50130,2127429,129,6498,1 +50131,2127468,76,3846,1 +50132,2127492,22,1108,1 +50133,2127505,129,6471,1 +50134,2127600,140,7016,1 +50135,2127840,190,9528,1 +50136,2127876,101,5096,1 +50137,2127888,33,1691,1 +50138,2127901,156,7822,1 +50139,2127937,62,3128,1 +50140,2128800,79,3965,1 +50141,2128804,168,8442,1 +50142,2128807,196,9823,1 +50143,2128814,161,8088,1 +50144,2128815,137,6887,1 +50145,2128824,5,299,1 +50146,2128831,154,7722,1 +50147,2128836,0,19,1 +50148,2128849,34,1742,1 +50149,2128855,96,4838,1 +50150,2128862,104,5208,1 +50151,2128877,11,560,1 +50152,2128879,101,5079,1 +50153,2128881,197,9876,1 +50154,2128921,157,7872,1 +50155,2128922,4,206,1 +50156,2128956,8,411,1 +50157,2129029,53,2688,1 +50158,2129327,87,4356,1 +50159,2129334,122,6106,1 +50160,2129340,171,8574,1 +50161,2129760,198,9906,1 +50162,2129784,111,5583,1 +50163,2129787,43,2175,1 +50164,2129799,58,2937,1 +50165,2129808,18,945,1 +50166,2129821,37,1854,1 +50167,2129940,58,2948,1 +50168,2129976,100,5049,1 +50169,2130240,35,1793,1 +50170,2130240,2,115,1 +50171,2130241,47,2379,1 +50172,2130241,170,8505,1 +50173,2130244,95,4788,1 +50174,2130249,41,2078,1 +50175,2130252,124,6239,1 +50176,2130254,16,823,1 +50177,2130255,1,69,1 +50178,2130256,199,9997,1 +50179,2130258,90,4549,1 +50180,2130276,47,2383,1 +50181,2130276,156,7848,1 +50182,2130278,76,3841,1 +50183,2130278,66,3311,1 +50184,2130294,56,2831,1 +50185,2130297,83,4156,1 +50186,2130300,65,3261,1 +50187,2130300,76,3837,1 +50188,2130312,89,4454,1 +50189,2130348,28,1443,1 +50190,2130348,185,9252,1 +50191,2130494,190,9529,1 +50192,2130720,81,4094,1 +50193,2130720,110,5524,1 +50194,2130720,185,9288,1 +50195,2130720,88,4405,1 +50196,2130720,113,5699,1 +50197,2130720,87,4391,1 +50198,2130727,84,4218,1 +50199,2130729,97,4888,1 +50200,2130732,74,3729,1 +50201,2130732,79,3987,1 +50202,2130732,76,3803,1 +50203,2130732,155,7782,1 +50204,2130735,137,6880,1 +50205,2130742,179,8976,1 +50206,2130744,51,2557,1 +50207,2130744,117,5875,1 +50208,2130745,127,6358,1 +50209,2130746,103,5155,1 +50210,2130746,88,4433,1 +50211,2130747,127,6368,1 +50212,2130755,86,4304,1 +50213,2130756,178,8925,1 +50214,2130756,108,5429,1 +50215,2130759,46,2343,1 +50216,2130759,175,8774,1 +50217,2130761,96,4808,1 +50218,2130762,115,5794,1 +50219,2130765,91,4596,1 +50220,2130765,115,5793,1 +50221,2130768,167,8384,1 +50222,2130769,190,9548,1 +50223,2130775,75,3787,1 +50224,2130780,119,5962,1 +50225,2130782,190,9508,1 +50226,2130783,59,2991,1 +50227,2130792,164,8224,1 +50228,2130792,193,9670,1 +50229,2130793,11,552,1 +50230,2130804,30,1521,1 +50231,2130805,112,5644,1 +50232,2130816,174,8742,1 +50233,2130828,42,2112,1 +50234,2130831,78,3923,1 +50235,2130846,46,2343,1 +50236,2130864,19,976,1 +50237,2130865,183,9155,1 +50238,2130939,25,1260,1 +50239,2131212,189,9487,1 +50240,2131230,153,7653,1 +50241,2131686,123,6190,1 +50242,2131689,146,7331,1 +50243,2131717,177,8865,1 +50244,2131722,26,1307,1 +50245,2131728,121,6078,1 +50246,2131753,47,2373,1 +50247,2131764,81,4085,1 +50248,2131765,93,4661,1 +50249,2131778,81,4078,1 +50250,2131790,76,3849,1 +50251,2131792,132,6636,1 +50252,2131797,37,1887,1 +50253,2131800,54,2750,1 +50254,2131801,178,8930,1 +50255,2131805,81,4057,1 +50256,2131812,135,6784,1 +50257,2131921,167,8382,1 +50258,2132181,103,5173,1 +50259,2132184,175,8751,1 +50260,2132213,144,7243,1 +50261,2132232,118,5928,1 +50262,2132232,148,7445,1 +50263,2132243,120,6003,1 +50264,2132245,143,7189,1 +50265,2132253,119,5979,1 +50266,2132253,55,2758,1 +50267,2132278,93,4694,1 +50268,2132280,149,7457,1 +50269,2132310,74,3737,1 +50270,2132449,10,532,1 +50271,2132640,102,5116,1 +50272,2132664,196,9823,1 +50273,2132688,88,4425,1 +50274,2133120,0,24,1 +50275,2133121,170,8509,1 +50276,2133129,2,130,1 +50277,2133133,176,8839,1 +50278,2133134,175,8751,1 +50279,2133192,22,1119,1 +50280,2133264,30,1548,1 +50281,2134080,39,1986,1 +50282,2134080,28,1441,1 +50283,2134083,27,1396,1 +50284,2134161,52,2629,1 +50285,2134572,160,8037,1 +50286,2134604,74,3722,1 +50287,2134608,119,5970,1 +50288,2134609,95,4796,1 +50289,2134657,167,8355,1 +50290,2134663,179,8952,1 +50291,2134670,184,9250,1 +50292,2134671,126,6312,1 +50293,2134692,55,2800,1 +50294,2134745,46,2302,1 +50295,2134804,141,7074,1 +50296,2135520,25,1258,1 +50297,2135520,189,9453,1 +50298,2135520,160,8013,1 +50299,2135532,31,1569,1 +50300,2135535,89,4499,1 +50301,2135538,18,910,1 +50302,2135556,107,5391,1 +50303,2135556,179,8978,1 +50304,2135557,191,9564,1 +50305,2135559,25,1258,1 +50306,2135569,25,1266,1 +50307,2135571,193,9693,1 +50308,2135592,13,696,1 +50309,2135641,105,5255,1 +50310,2135652,60,3003,1 +50311,2136000,79,3963,1 +50312,2136000,81,4092,1 +50313,2136000,70,3522,1 +50314,2136000,143,7182,1 +50315,2136000,47,2356,1 +50316,2136000,124,6228,1 +50317,2136001,187,9393,1 +50318,2136002,106,5307,1 +50319,2136009,14,738,1 +50320,2136013,63,3159,1 +50321,2136021,3,183,1 +50322,2136021,95,4766,1 +50323,2136024,35,1789,1 +50324,2136024,154,7738,1 +50325,2136024,160,8002,1 +50326,2136025,0,33,1 +50327,2136031,43,2174,1 +50328,2136033,44,2201,1 +50329,2136036,132,6604,1 +50330,2136036,126,6336,1 +50331,2136037,16,822,1 +50332,2136072,196,9801,1 +50333,2136075,5,269,1 +50334,2136075,76,3831,1 +50335,2136094,171,8553,1 +50336,2136110,55,2798,1 +50337,2136122,50,2516,1 +50338,2136144,82,4107,1 +50339,2136160,170,8516,1 +50340,2136193,144,7234,1 +50341,2136204,53,2671,1 +50342,2136493,77,3884,1 +50343,2136505,42,2114,1 +50344,2136960,8,428,1 +50345,2136960,10,546,1 +50346,2136973,131,6577,1 +50347,2136974,125,6285,1 +50348,2137022,48,2404,1 +50349,2137446,65,3286,1 +50350,2137452,73,3683,1 +50351,2137458,78,3933,1 +50352,2137464,128,6447,1 +50353,2137464,190,9504,1 +50354,2137465,192,9648,1 +50355,2137466,177,8855,1 +50356,2137466,52,2603,1 +50357,2137467,163,8183,1 +50358,2137499,130,6524,1 +50359,2137500,30,1534,1 +50360,2137502,117,5895,1 +50361,2137572,29,1459,1 +50362,2137716,97,4885,1 +50363,2137921,126,6322,1 +50364,2137921,115,5769,1 +50365,2137932,130,6519,1 +50366,2137932,197,9900,1 +50367,2137935,100,5034,1 +50368,2137951,14,724,1 +50369,2137968,24,1237,1 +50370,2137992,17,859,1 +50371,2138001,115,5780,1 +50372,2138014,109,5473,1 +50373,2138016,42,2131,1 +50374,2138055,120,6028,1 +50375,2138093,6,348,1 +50376,2138222,142,7108,1 +50377,2138401,101,5081,1 +50378,2138407,136,6841,1 +50379,2138412,137,6883,1 +50380,2138412,41,2052,1 +50381,2138413,188,9428,1 +50382,2138425,138,6917,1 +50383,2138448,100,5032,1 +50384,2138454,190,9538,1 +50385,2138472,161,8068,1 +50386,2138475,70,3538,1 +50387,2138482,175,8776,1 +50388,2138520,106,5319,1 +50389,2138544,138,6928,1 +50390,2138917,49,2459,1 +50391,2139360,68,3450,1 +50392,2139361,12,616,1 +50393,2139362,6,309,1 +50394,2139378,76,3849,1 +50395,2139381,157,7878,1 +50396,2139384,163,8160,1 +50397,2139397,49,2474,1 +50398,2139408,55,2792,1 +50399,2139438,176,8827,1 +50400,2139504,153,7673,1 +50401,2139528,189,9473,1 +50402,2139588,187,9371,1 +50403,2139636,157,7898,1 +50404,2139849,199,9968,1 +50405,2140332,105,5267,1 +50406,2140332,25,1283,1 +50407,2140333,44,2232,1 +50408,2140346,10,523,1 +50409,2140358,23,1191,1 +50410,2140368,53,2654,1 +50411,2140369,168,8416,1 +50412,2140404,4,220,1 +50413,2140431,59,2966,1 +50414,2140456,38,1929,1 +50415,2140473,182,9114,1 +50416,2140476,101,5099,1 +50417,2140488,19,1000,1 +50418,2140551,35,1764,1 +50419,2140608,148,7422,1 +50420,2140803,191,9579,1 +50421,2140804,144,7220,1 +50422,2140809,180,9024,1 +50423,2140813,171,8562,1 +50424,2140824,180,9035,1 +50425,2140824,56,2823,1 +50426,2140825,41,2064,1 +50427,2140827,145,7281,1 +50428,2140836,87,4388,1 +50429,2140836,151,7569,1 +50430,2140842,120,6025,1 +50431,2140848,78,3946,1 +50432,2140854,49,2457,1 +50433,2140857,196,9815,1 +50434,2140860,50,2503,1 +50435,2140860,199,9959,1 +50436,2140861,62,3118,1 +50437,2140862,170,8542,1 +50438,2140865,42,2131,1 +50439,2140872,35,1766,1 +50440,2140893,147,7353,1 +50441,2140896,152,7604,1 +50442,2140905,39,1981,1 +50443,2140933,193,9689,1 +50444,2140968,134,6742,1 +50445,2140996,6,319,1 +50446,2141016,145,7258,1 +50447,2141289,141,7071,1 +50448,2141316,24,1213,1 +50449,2141329,91,4563,1 +50450,2141340,58,2943,1 +50451,2142240,85,4292,1 +50452,2142252,6,316,1 +50453,2142294,139,6963,1 +50454,2142300,148,7416,1 +50455,2142348,146,7311,1 +50456,2142380,113,5672,1 +50457,2142756,6,324,1 +50458,2142773,45,2285,1 +50459,2142782,63,3168,1 +50460,2142795,19,994,1 +50461,2143200,56,2846,1 +50462,2143209,36,1826,1 +50463,2143224,124,6217,1 +50464,2143242,46,2325,1 +50465,2143248,45,2284,1 +50466,2143248,111,5583,1 +50467,2143257,81,4066,1 +50468,2143269,114,5742,1 +50469,2143320,186,9336,1 +50470,2143443,62,3147,1 +50471,2143686,164,8205,1 +50472,2143694,95,4788,1 +50473,2143704,7,369,1 +50474,2143755,127,6370,1 +50475,2143932,140,7050,1 +50476,2145120,142,7135,1 +50477,2145126,141,7051,1 +50478,2145131,166,8339,1 +50479,2145132,41,2088,1 +50480,2145147,163,8199,1 +50481,2145151,93,4658,1 +50482,2145157,99,4995,1 +50483,2145190,122,6123,1 +50484,2145264,25,1281,1 +50485,2145273,139,6964,1 +50486,2145600,172,8612,1 +50487,2145600,16,823,1 +50488,2145600,169,8497,1 +50489,2145600,83,4181,1 +50490,2145601,198,9948,1 +50491,2145601,199,9956,1 +50492,2145612,176,8809,1 +50493,2145618,148,7418,1 +50494,2145624,65,3280,1 +50495,2145624,132,6602,1 +50496,2145648,151,7591,1 +50497,2145660,17,866,1 +50498,2145661,73,3689,1 +50499,2145672,68,3427,1 +50500,2146080,182,9125,1 +50501,2146080,5,300,1 +50502,2146080,92,4632,1 +50503,2146086,118,5922,1 +50504,2146107,92,4642,1 +50505,2146120,67,3372,1 +50506,2146140,122,6105,1 +50507,2146162,58,2901,1 +50508,2146171,65,3267,1 +50509,2146201,102,5136,1 +50510,2146212,154,7739,1 +50511,2146260,41,2058,1 +50512,2146356,78,3925,1 +50513,2146560,93,4655,1 +50514,2146560,186,9340,1 +50515,2146560,70,3506,1 +50516,2146560,131,6564,1 +50517,2146572,151,7556,1 +50518,2146584,63,3184,1 +50519,2146590,11,598,1 +50520,2146633,33,1667,1 +50521,2146680,181,9086,1 +50522,2146779,104,5243,1 +50523,2147040,101,5083,1 +50524,2147040,75,3751,1 +50525,2147044,7,374,1 +50526,2147052,84,4229,1 +50527,2147064,96,4834,1 +50528,2147070,175,8759,1 +50529,2147112,169,8487,1 +50530,2147544,69,3488,1 +50531,2147544,134,6718,1 +50532,2147613,138,6912,1 +50533,2148480,111,5566,1 +50534,2148489,112,5626,1 +50535,2148517,60,3032,1 +50536,2148564,149,7465,1 +50537,2148960,120,6043,1 +50538,2148964,57,2883,1 +50539,2148972,152,7606,1 +50540,2148975,139,6974,1 +50541,2148984,7,352,1 +50542,2148984,58,2946,1 +50543,2148984,82,4143,1 +50544,2149001,82,4121,1 +50545,2149006,91,4582,1 +50546,2149008,124,6240,1 +50547,2149008,14,749,1 +50548,2149017,48,2437,1 +50549,2149018,48,2425,1 +50550,2149020,109,5468,1 +50551,2149020,27,1359,1 +50552,2149032,38,1943,1 +50553,2149038,114,5728,1 +50554,2149047,199,9964,1 +50555,2149057,9,497,1 +50556,2149188,71,3587,1 +50557,2150410,199,9956,1 +50558,2150427,155,7786,1 +50559,2150436,7,361,1 +50560,2150448,159,7965,1 +50561,2150462,129,6499,1 +50562,2150463,151,7557,1 +50563,2150509,42,2109,1 +50564,2150520,9,468,1 +50565,2150880,181,9064,1 +50566,2150880,163,8156,1 +50567,2150882,136,6827,1 +50568,2150885,9,476,1 +50569,2150892,100,5003,1 +50570,2150892,53,2682,1 +50571,2150904,27,1365,1 +50572,2150904,120,6049,1 +50573,2150904,2,116,1 +50574,2150906,157,7851,1 +50575,2150920,5,262,1 +50576,2150925,123,6173,1 +50577,2150931,7,398,1 +50578,2150935,40,2017,1 +50579,2150940,9,464,1 +50580,2150978,103,5195,1 +50581,2151024,60,3030,1 +50582,2151048,63,3160,1 +50583,2151048,99,4973,1 +50584,2151360,29,1480,1 +50585,2151384,81,4089,1 +50586,2151852,12,607,1 +50587,2151852,133,6653,1 +50588,2151864,55,2792,1 +50589,2151864,97,4854,1 +50590,2151874,84,4226,1 +50591,2151948,34,1706,1 +50592,2152320,104,5229,1 +50593,2152332,123,6155,1 +50594,2152800,94,4736,1 +50595,2152801,111,5570,1 +50596,2152803,92,4628,1 +50597,2152812,83,4184,1 +50598,2152824,63,3188,1 +50599,2152836,125,6293,1 +50600,2152860,46,2322,1 +50601,2152992,141,7059,1 +50602,2153004,27,1384,1 +50603,2153283,55,2775,1 +50604,2153304,34,1750,1 +50605,2153308,122,6101,1 +50606,2153328,96,4843,1 +50607,2153438,148,7430,1 +50608,2154240,50,2539,1 +50609,2154240,7,366,1 +50610,2154240,40,2047,1 +50611,2154247,196,9831,1 +50612,2154252,146,7347,1 +50613,2154261,130,6523,1 +50614,2154264,135,6796,1 +50615,2154264,171,8596,1 +50616,2154285,129,6454,1 +50617,2154304,106,5343,1 +50618,2154720,152,7618,1 +50619,2154721,5,296,1 +50620,2154721,103,5193,1 +50621,2154722,138,6934,1 +50622,2154732,72,3610,1 +50623,2154732,189,9466,1 +50624,2154733,198,9917,1 +50625,2154734,177,8873,1 +50626,2154738,26,1343,1 +50627,2154741,135,6765,1 +50628,2154744,110,5546,1 +50629,2154756,150,7505,1 +50630,2154783,68,3437,1 +50631,2154792,159,7985,1 +50632,2154798,19,959,1 +50633,2154804,16,839,1 +50634,2154816,134,6729,1 +50635,2154817,95,4758,1 +50636,2154825,150,7536,1 +50637,2154915,145,7277,1 +50638,2155204,155,7759,1 +50639,2155209,182,9149,1 +50640,2155209,3,166,1 +50641,2155212,161,8091,1 +50642,2155227,62,3145,1 +50643,2155230,90,4539,1 +50644,2155232,50,2513,1 +50645,2155234,84,4241,1 +50646,2155260,198,9922,1 +50647,2155261,90,4510,1 +50648,2155284,155,7797,1 +50649,2155692,71,3575,1 +50650,2155717,132,6608,1 +50651,2155749,11,591,1 +50652,2155765,163,8197,1 +50653,2155766,150,7541,1 +50654,2155776,60,3035,1 +50655,2155860,46,2310,1 +50656,2156161,199,9980,1 +50657,2156233,148,7449,1 +50658,2156412,34,1726,1 +50659,2156640,121,6062,1 +50660,2156640,162,8137,1 +50661,2156640,76,3803,1 +50662,2156640,198,9905,1 +50663,2156641,169,8460,1 +50664,2156641,20,1047,1 +50665,2156643,17,873,1 +50666,2156643,131,6571,1 +50667,2156643,116,5835,1 +50668,2156649,197,9897,1 +50669,2156651,97,4886,1 +50670,2156652,96,4845,1 +50671,2156652,175,8772,1 +50672,2156659,5,277,1 +50673,2156663,34,1739,1 +50674,2156664,123,6192,1 +50675,2156664,198,9945,1 +50676,2156664,198,9913,1 +50677,2156665,163,8166,1 +50678,2156665,117,5859,1 +50679,2156668,132,6616,1 +50680,2156670,12,638,1 +50681,2156673,155,7758,1 +50682,2156677,102,5112,1 +50683,2156677,198,9922,1 +50684,2156688,46,2302,1 +50685,2156688,42,2149,1 +50686,2156706,16,816,1 +50687,2156707,102,5114,1 +50688,2156713,183,9170,1 +50689,2156713,36,1833,1 +50690,2156715,167,8386,1 +50691,2156716,144,7233,1 +50692,2156718,122,6127,1 +50693,2156718,45,2253,1 +50694,2156724,18,943,1 +50695,2156730,41,2067,1 +50696,2156736,80,4032,1 +50697,2156736,150,7548,1 +50698,2156736,118,5908,1 +50699,2156737,98,4930,1 +50700,2156758,39,1985,1 +50701,2156760,95,4768,1 +50702,2156772,81,4100,1 +50703,2156774,36,1844,1 +50704,2156820,7,391,1 +50705,2156844,87,4356,1 +50706,2156844,109,5482,1 +50707,2157175,103,5195,1 +50708,2157243,39,1965,1 +50709,2157600,127,6397,1 +50710,2157603,182,9138,1 +50711,2157612,192,9639,1 +50712,2157612,184,9203,1 +50713,2157612,29,1468,1 +50714,2157613,78,3928,1 +50715,2157613,191,9567,1 +50716,2157613,136,6850,1 +50717,2157615,146,7309,1 +50718,2157618,107,5376,1 +50719,2157624,55,2765,1 +50720,2157624,145,7263,1 +50721,2157624,20,1033,1 +50722,2157624,179,8983,1 +50723,2157624,136,6805,1 +50724,2157624,50,2501,1 +50725,2157636,120,6028,1 +50726,2157637,30,1530,1 +50727,2157637,47,2379,1 +50728,2157639,108,5447,1 +50729,2157640,113,5674,1 +50730,2157648,145,7292,1 +50731,2157648,184,9215,1 +50732,2157650,86,4335,1 +50733,2157672,176,8820,1 +50734,2157675,10,502,1 +50735,2157686,6,318,1 +50736,2157723,72,3606,1 +50737,2158080,55,2794,1 +50738,2158080,80,4041,1 +50739,2158081,64,3225,1 +50740,2158092,115,5792,1 +50741,2158092,12,614,1 +50742,2158093,12,639,1 +50743,2158093,61,3066,1 +50744,2158098,177,8866,1 +50745,2158102,34,1743,1 +50746,2158113,109,5493,1 +50747,2158118,58,2949,1 +50748,2158119,170,8549,1 +50749,2158134,88,4404,1 +50750,2158141,30,1501,1 +50751,2158144,182,9141,1 +50752,2158150,182,9131,1 +50753,2158155,76,3802,1 +50754,2158164,182,9136,1 +50755,2158164,51,2588,1 +50756,2158188,71,3562,1 +50757,2158224,41,2072,1 +50758,2158236,61,3062,1 +50759,2158563,72,3604,1 +50760,2158564,109,5477,1 +50761,2158566,135,6776,1 +50762,2158572,136,6849,1 +50763,2158573,195,9762,1 +50764,2158575,136,6845,1 +50765,2158578,81,4073,1 +50766,2158584,74,3747,1 +50767,2158584,53,2691,1 +50768,2158585,195,9794,1 +50769,2158586,106,5315,1 +50770,2158590,180,9014,1 +50771,2158656,146,7337,1 +50772,2158662,113,5668,1 +50773,2158666,183,9181,1 +50774,2158668,45,2284,1 +50775,2158678,21,1054,1 +50776,2159040,172,8632,1 +50777,2159041,181,9074,1 +50778,2159045,52,2630,1 +50779,2159046,150,7520,1 +50780,2159052,191,9563,1 +50781,2159053,127,6393,1 +50782,2159055,30,1529,1 +50783,2159062,28,1421,1 +50784,2159064,146,7327,1 +50785,2159064,105,5253,1 +50786,2159080,96,4818,1 +50787,2159089,78,3945,1 +50788,2159094,189,9478,1 +50789,2159104,153,7656,1 +50790,2159106,119,5988,1 +50791,2159112,71,3556,1 +50792,2159124,164,8201,1 +50793,2159124,145,7278,1 +50794,2159169,119,5975,1 +50795,2159172,119,5978,1 +50796,2159520,136,6842,1 +50797,2160480,87,4384,1 +50798,2160482,122,6104,1 +50799,2160493,111,5591,1 +50800,2160502,165,8251,1 +50801,2160504,114,5708,1 +50802,2160511,35,1786,1 +50803,2160672,117,5865,1 +50804,2161038,187,9389,1 +50805,2161056,27,1396,1 +50806,2161092,124,6242,1 +50807,2161440,138,6910,1 +50808,2161440,42,2123,1 +50809,2161442,116,5803,1 +50810,2161453,95,4759,1 +50811,2161454,57,2872,1 +50812,2161455,7,378,1 +50813,2161464,139,6990,1 +50814,2161464,76,3808,1 +50815,2161464,96,4844,1 +50816,2161476,13,653,1 +50817,2161483,105,5266,1 +50818,2161500,89,4488,1 +50819,2161500,111,5593,1 +50820,2161504,123,6200,1 +50821,2161512,61,3091,1 +50822,2161533,13,689,1 +50823,2161533,49,2485,1 +50824,2161560,175,8782,1 +50825,2161566,128,6409,1 +50826,2161572,98,4935,1 +50827,2161921,29,1498,1 +50828,2161934,28,1411,1 +50829,2161992,92,4627,1 +50830,2162013,84,4242,1 +50831,2162412,50,2530,1 +50832,2162413,95,4766,1 +50833,2162425,65,3255,1 +50834,2162448,55,2779,1 +50835,2162463,46,2347,1 +50836,2162477,192,9630,1 +50837,2162484,95,4764,1 +50838,2162538,57,2887,1 +50839,2162544,153,7673,1 +50840,2162569,101,5083,1 +50841,2162629,28,1434,1 +50842,2163360,128,6403,1 +50843,2163370,119,5996,1 +50844,2163385,93,4664,1 +50845,2163409,182,9134,1 +50846,2163420,93,4676,1 +50847,2163421,24,1213,1 +50848,2163421,168,8433,1 +50849,2163432,25,1252,1 +50850,2163840,167,8373,1 +50851,2163855,112,5608,1 +50852,2163864,159,7977,1 +50853,2163873,131,6580,1 +50854,2163888,0,19,1 +50855,2163931,167,8356,1 +50856,2163948,184,9216,1 +50857,2163958,29,1496,1 +50858,2163969,65,3267,1 +50859,2163988,186,9327,1 +50860,2164321,160,8016,1 +50861,2164321,88,4407,1 +50862,2164323,164,8235,1 +50863,2164326,117,5900,1 +50864,2164334,53,2667,1 +50865,2164352,90,4523,1 +50866,2164371,86,4343,1 +50867,2164380,124,6221,1 +50868,2164380,104,5240,1 +50869,2164404,51,2596,1 +50870,2164404,98,4934,1 +50871,2164446,7,367,1 +50872,2164801,116,5828,1 +50873,2164801,98,4931,1 +50874,2164812,138,6908,1 +50875,2164818,147,7395,1 +50876,2164818,148,7437,1 +50877,2164824,10,518,1 +50878,2164825,145,7293,1 +50879,2164836,128,6414,1 +50880,2164848,3,154,1 +50881,2164862,24,1222,1 +50882,2164865,117,5882,1 +50883,2164869,23,1191,1 +50884,2164872,22,1141,1 +50885,2164897,133,6653,1 +50886,2164932,95,4755,1 +50887,2164944,151,7552,1 +50888,2164945,109,5464,1 +50889,2164995,120,6013,1 +50890,2165136,66,3308,1 +50891,2165307,87,4384,1 +50892,2165784,151,7552,1 +50893,2165832,148,7448,1 +50894,2166240,179,8962,1 +50895,2166360,87,4386,1 +50896,2166420,72,3636,1 +50897,2166724,37,1879,1 +50898,2166732,143,7176,1 +50899,2166732,27,1351,1 +50900,2166753,90,4538,1 +50901,2166756,164,8247,1 +50902,2166756,31,1586,1 +50903,2167011,29,1462,1 +50904,2167206,89,4481,1 +50905,2167236,186,9334,1 +50906,2167272,60,3027,1 +50907,2167321,28,1412,1 +50908,2167684,86,4323,1 +50909,2167692,70,3540,1 +50910,2167693,93,4692,1 +50911,2167707,171,8560,1 +50912,2167708,53,2687,1 +50913,2167728,82,4117,1 +50914,2167732,181,9055,1 +50915,2167734,121,6069,1 +50916,2167753,117,5862,1 +50917,2167813,134,6729,1 +50918,2167872,133,6700,1 +50919,2168172,97,4863,1 +50920,2168646,73,3699,1 +50921,2168695,4,237,1 +50922,2168808,23,1170,1 +50923,2169121,119,5994,1 +50924,2169180,142,7142,1 +50925,2169216,26,1342,1 +50926,2169276,19,1000,1 +50927,2169348,140,7048,1 +50928,2169600,75,3798,1 +50929,2169600,55,2779,1 +50930,2169606,51,2574,1 +50931,2169612,6,344,1 +50932,2169625,35,1772,1 +50933,2169633,33,1667,1 +50934,2169636,196,9802,1 +50935,2169636,192,9602,1 +50936,2169648,71,3568,1 +50937,2169660,89,4478,1 +50938,2169673,27,1368,1 +50939,2169684,37,1853,1 +50940,2170095,125,6261,1 +50941,2170134,72,3642,1 +50942,2170191,53,2699,1 +50943,2170240,23,1151,1 +50944,2170248,158,7947,1 +50945,2170617,174,8717,1 +50946,2171040,5,252,1 +50947,2171040,141,7052,1 +50948,2171052,175,8761,1 +50949,2171085,130,6527,1 +50950,2171098,125,6300,1 +50951,2171112,45,2285,1 +50952,2171112,22,1140,1 +50953,2171133,110,5528,1 +50954,2171281,101,5078,1 +50955,2171640,33,1663,1 +50956,2172003,70,3513,1 +50957,2172036,146,7324,1 +50958,2172048,177,8883,1 +50959,2172048,67,3359,1 +50960,2172116,179,8961,1 +50961,2172264,90,4530,1 +50962,2172485,99,4960,1 +50963,2172502,153,7659,1 +50964,2172510,113,5686,1 +50965,2172515,196,9832,1 +50966,2172516,47,2381,1 +50967,2172528,121,6078,1 +50968,2172794,37,1870,1 +50969,2172974,156,7847,1 +50970,2172982,138,6901,1 +50971,2172988,58,2933,1 +50972,2173009,41,2087,1 +50973,2173012,1,58,1 +50974,2173056,103,5167,1 +50975,2173059,8,402,1 +50976,2173096,5,279,1 +50977,2173166,188,9428,1 +50978,2173440,8,450,1 +50979,2173440,127,6384,1 +50980,2173443,177,8889,1 +50981,2173453,63,3153,1 +50982,2173464,40,2016,1 +50983,2173465,165,8254,1 +50984,2173473,79,3967,1 +50985,2173479,162,8121,1 +50986,2173485,178,8928,1 +50987,2173488,33,1692,1 +50988,2173488,114,5708,1 +50989,2173491,4,211,1 +50990,2173512,79,3994,1 +50991,2173512,67,3355,1 +50992,2173572,0,6,1 +50993,2173644,162,8125,1 +50994,2174404,164,8216,1 +50995,2174412,192,9621,1 +50996,2174436,153,7651,1 +50997,2174464,7,378,1 +50998,2174469,191,9552,1 +50999,2174472,67,3398,1 +51000,2174494,13,690,1 +51001,2175360,193,9663,1 +51002,2175361,104,5209,1 +51003,2175372,101,5071,1 +51004,2175372,73,3675,1 +51005,2175372,184,9239,1 +51006,2175373,22,1121,1 +51007,2175376,44,2246,1 +51008,2175379,141,7082,1 +51009,2175381,103,5162,1 +51010,2175384,81,4077,1 +51011,2175385,84,4222,1 +51012,2175385,87,4400,1 +51013,2175399,83,4179,1 +51014,2175405,75,3795,1 +51015,2175417,131,6589,1 +51016,2175444,65,3258,1 +51017,2175459,64,3233,1 +51018,2175470,134,6714,1 +51019,2175495,9,461,1 +51020,2175529,35,1783,1 +51021,2175552,177,8861,1 +51022,2175588,141,7094,1 +51023,2175840,119,5966,1 +51024,2175841,73,3680,1 +51025,2175860,16,841,1 +51026,2175866,20,1028,1 +51027,2175876,40,2034,1 +51028,2175879,99,4994,1 +51029,2175885,1,89,1 +51030,2175894,20,1012,1 +51031,2176321,86,4350,1 +51032,2176332,71,3563,1 +51033,2176345,16,821,1 +51034,2176368,5,291,1 +51035,2176383,172,8606,1 +51036,2176394,180,9001,1 +51037,2176416,6,339,1 +51038,2176443,94,4707,1 +51039,2176507,5,256,1 +51040,2176800,72,3615,1 +51041,2176800,88,4446,1 +51042,2176800,110,5514,1 +51043,2176800,61,3097,1 +51044,2176800,161,8069,1 +51045,2176801,42,2118,1 +51046,2176801,57,2852,1 +51047,2176801,62,3122,1 +51048,2176801,71,3560,1 +51049,2176803,199,9974,1 +51050,2176804,73,3663,1 +51051,2176812,70,3528,1 +51052,2176812,154,7743,1 +51053,2176812,39,1988,1 +51054,2176812,142,7144,1 +51055,2176813,28,1438,1 +51056,2176815,172,8623,1 +51057,2176815,199,9955,1 +51058,2176830,120,6032,1 +51059,2176837,67,3393,1 +51060,2176845,23,1175,1 +51061,2176848,137,6853,1 +51062,2176848,113,5671,1 +51063,2176854,28,1446,1 +51064,2176860,139,6953,1 +51065,2176861,6,320,1 +51066,2176861,127,6396,1 +51067,2176863,139,6954,1 +51068,2176866,53,2668,1 +51069,2176872,161,8073,1 +51070,2176882,100,5036,1 +51071,2176884,150,7534,1 +51072,2176884,132,6621,1 +51073,2176885,93,4659,1 +51074,2176897,29,1472,1 +51075,2176905,186,9332,1 +51076,2176921,8,402,1 +51077,2176957,134,6733,1 +51078,2176993,120,6034,1 +51079,2177064,79,3988,1 +51080,2177285,123,6184,1 +51081,2177298,120,6012,1 +51082,2177305,31,1583,1 +51083,2177314,17,863,1 +51084,2177325,134,6715,1 +51085,2177335,35,1756,1 +51086,2177340,168,8418,1 +51087,2178240,60,3042,1 +51088,2178240,169,8460,1 +51089,2178252,54,2745,1 +51090,2178252,5,259,1 +51091,2178270,130,6517,1 +51092,2178289,130,6515,1 +51093,2178302,55,2788,1 +51094,2178315,70,3520,1 +51095,2178342,148,7401,1 +51096,2178361,85,4286,1 +51097,2178372,123,6156,1 +51098,2178410,33,1668,1 +51099,2178470,172,8612,1 +51100,2178720,44,2237,1 +51101,2178720,25,1251,1 +51102,2178720,130,6524,1 +51103,2178720,90,4510,1 +51104,2178721,52,2620,1 +51105,2178729,179,8981,1 +51106,2178732,6,330,1 +51107,2178733,180,9006,1 +51108,2178733,166,8310,1 +51109,2178733,76,3848,1 +51110,2178744,35,1786,1 +51111,2178744,113,5688,1 +51112,2178744,163,8197,1 +51113,2178744,156,7833,1 +51114,2178750,73,3673,1 +51115,2178752,48,2422,1 +51116,2178756,121,6097,1 +51117,2178759,162,8140,1 +51118,2178761,6,350,1 +51119,2178769,67,3360,1 +51120,2178771,34,1728,1 +51121,2178772,155,7771,1 +51122,2178781,96,4845,1 +51123,2178781,69,3482,1 +51124,2178801,45,2251,1 +51125,2178805,163,8196,1 +51126,2178817,155,7781,1 +51127,2178823,45,2271,1 +51128,2178828,186,9319,1 +51129,2178828,57,2851,1 +51130,2178828,53,2685,1 +51131,2178828,52,2644,1 +51132,2178831,141,7091,1 +51133,2178843,147,7388,1 +51134,2178852,169,8456,1 +51135,2178855,42,2128,1 +51136,2178874,181,9067,1 +51137,2179201,56,2847,1 +51138,2179219,147,7365,1 +51139,2179224,179,8995,1 +51140,2179260,111,5579,1 +51141,2179302,149,7464,1 +51142,2179308,140,7045,1 +51143,2179311,107,5352,1 +51144,2179680,98,4907,1 +51145,2179692,12,619,1 +51146,2179693,170,8522,1 +51147,2179701,142,7143,1 +51148,2179716,46,2330,1 +51149,2179717,139,6969,1 +51150,2179717,101,5100,1 +51151,2179722,101,5092,1 +51152,2179730,75,3755,1 +51153,2179741,50,2523,1 +51154,2179764,70,3514,1 +51155,2179777,163,8188,1 +51156,2179788,139,6984,1 +51157,2179798,127,6375,1 +51158,2180160,107,5360,1 +51159,2180160,85,4267,1 +51160,2180160,96,4808,1 +51161,2180163,141,7081,1 +51162,2180165,111,5591,1 +51163,2180166,87,4373,1 +51164,2180172,142,7145,1 +51165,2180173,14,735,1 +51166,2180174,197,9858,1 +51167,2180184,137,6856,1 +51168,2180184,70,3544,1 +51169,2180184,1,53,1 +51170,2180184,93,4663,1 +51171,2180186,172,8616,1 +51172,2180196,16,835,1 +51173,2180196,174,8713,1 +51174,2180196,119,5983,1 +51175,2180198,28,1446,1 +51176,2180199,73,3680,1 +51177,2180203,136,6848,1 +51178,2180208,62,3128,1 +51179,2180208,119,5982,1 +51180,2180208,177,8890,1 +51181,2180209,33,1696,1 +51182,2180217,110,5503,1 +51183,2180220,150,7504,1 +51184,2180233,196,9837,1 +51185,2180235,196,9841,1 +51186,2180238,160,8010,1 +51187,2180269,129,6479,1 +51188,2180293,91,4553,1 +51189,2180640,149,7455,1 +51190,2180641,61,3053,1 +51191,2180652,73,3669,1 +51192,2180654,66,3331,1 +51193,2180673,78,3947,1 +51194,2180724,55,2756,1 +51195,2180736,188,9430,1 +51196,2181120,100,5003,1 +51197,2181132,29,1468,1 +51198,2181139,152,7632,1 +51199,2181141,113,5668,1 +51200,2181148,182,9121,1 +51201,2181152,7,387,1 +51202,2181156,63,3171,1 +51203,2181159,192,9634,1 +51204,2181169,73,3664,1 +51205,2181194,134,6724,1 +51206,2181201,104,5203,1 +51207,2181204,42,2142,1 +51208,2181252,4,219,1 +51209,2181324,130,6545,1 +51210,2181600,62,3123,1 +51211,2181648,151,7595,1 +51212,2181651,108,5433,1 +51213,2181708,105,5295,1 +51214,2182564,166,8333,1 +51215,2182582,79,3990,1 +51216,2182584,129,6500,1 +51217,2182585,61,3071,1 +51218,2182587,191,9594,1 +51219,2182591,80,4021,1 +51220,2182596,7,360,1 +51221,2182608,160,8027,1 +51222,2183040,156,7841,1 +51223,2183052,37,1874,1 +51224,2183067,124,6233,1 +51225,2183137,44,2231,1 +51226,2183331,176,8823,1 +51227,2183520,105,5291,1 +51228,2183529,134,6712,1 +51229,2183544,33,1680,1 +51230,2183544,161,8055,1 +51231,2183544,70,3542,1 +51232,2183546,45,2281,1 +51233,2183556,111,5576,1 +51234,2183580,30,1546,1 +51235,2183580,120,6021,1 +51236,2183606,79,3960,1 +51237,2183608,57,2873,1 +51238,2183629,151,7589,1 +51239,2183712,96,4809,1 +51240,2184000,142,7143,1 +51241,2184028,88,4435,1 +51242,2184076,154,7748,1 +51243,2184084,138,6939,1 +51244,2184480,4,240,1 +51245,2184483,157,7884,1 +51246,2184494,178,8913,1 +51247,2184498,0,46,1 +51248,2184501,187,9377,1 +51249,2184501,99,4968,1 +51250,2184510,56,2850,1 +51251,2184525,1,54,1 +51252,2184528,173,8694,1 +51253,2184549,114,5710,1 +51254,2184552,174,8704,1 +51255,2184561,58,2903,1 +51256,2184565,113,5684,1 +51257,2184661,2,131,1 +51258,2184662,16,820,1 +51259,2184666,161,8063,1 +51260,2184691,21,1079,1 +51261,2184882,46,2325,1 +51262,2184984,165,8255,1 +51263,2184987,42,2127,1 +51264,2185008,161,8069,1 +51265,2185026,155,7768,1 +51266,2185033,155,7753,1 +51267,2185044,145,7256,1 +51268,2185452,154,7721,1 +51269,2185452,172,8628,1 +51270,2185476,33,1669,1 +51271,2185495,51,2568,1 +51272,2185512,67,3351,1 +51273,2185515,33,1653,1 +51274,2185518,91,4564,1 +51275,2185549,123,6193,1 +51276,2185560,163,8165,1 +51277,2185581,62,3129,1 +51278,2185920,19,955,1 +51279,2185921,32,1643,1 +51280,2185922,123,6157,1 +51281,2185923,75,3779,1 +51282,2185924,15,755,1 +51283,2185933,72,3622,1 +51284,2185944,178,8933,1 +51285,2185956,11,596,1 +51286,2185956,66,3348,1 +51287,2185968,188,9448,1 +51288,2185992,93,4695,1 +51289,2185992,53,2663,1 +51290,2186004,36,1801,1 +51291,2186007,4,232,1 +51292,2186017,152,7608,1 +51293,2186124,172,8604,1 +51294,2186404,90,4541,1 +51295,2186430,138,6915,1 +51296,2187360,13,661,1 +51297,2187372,37,1890,1 +51298,2187375,44,2229,1 +51299,2187424,109,5451,1 +51300,2187432,98,4921,1 +51301,2187442,175,8762,1 +51302,2187444,41,2073,1 +51303,2187456,198,9902,1 +51304,2187504,139,6965,1 +51305,2187516,23,1164,1 +51306,2187840,36,1844,1 +51307,2187840,165,8276,1 +51308,2187858,162,8127,1 +51309,2187865,92,4620,1 +51310,2187888,189,9479,1 +51311,2187900,42,2110,1 +51312,2187904,97,4854,1 +51313,2187984,67,3360,1 +51314,2188321,173,8672,1 +51315,2188326,56,2802,1 +51316,2188332,67,3397,1 +51317,2188332,67,3379,1 +51318,2188332,156,7846,1 +51319,2188332,8,436,1 +51320,2188345,88,4408,1 +51321,2188350,95,4779,1 +51322,2188350,127,6371,1 +51323,2188356,60,3011,1 +51324,2188359,184,9240,1 +51325,2188381,15,754,1 +51326,2188427,144,7239,1 +51327,2188428,37,1874,1 +51328,2188440,28,1439,1 +51329,2188800,124,6239,1 +51330,2188815,179,8966,1 +51331,2188824,76,3815,1 +51332,2188828,172,8645,1 +51333,2188866,153,7676,1 +51334,2188934,144,7243,1 +51335,2189280,140,7020,1 +51336,2189280,15,759,1 +51337,2189280,153,7674,1 +51338,2189280,7,391,1 +51339,2189280,140,7032,1 +51340,2189281,33,1691,1 +51341,2189283,71,3561,1 +51342,2189288,49,2485,1 +51343,2189292,88,4409,1 +51344,2189292,83,4180,1 +51345,2189294,110,5540,1 +51346,2189296,147,7371,1 +51347,2189297,199,9972,1 +51348,2189299,177,8890,1 +51349,2189299,31,1555,1 +51350,2189299,19,980,1 +51351,2189318,55,2768,1 +51352,2189328,71,3590,1 +51353,2189329,63,3183,1 +51354,2189340,137,6885,1 +51355,2189376,58,2909,1 +51356,2189377,133,6689,1 +51357,2189389,110,5522,1 +51358,2189433,109,5487,1 +51359,2189546,16,832,1 +51360,2189761,40,2014,1 +51361,2189761,143,7163,1 +51362,2189770,173,8662,1 +51363,2189784,67,3364,1 +51364,2189784,76,3822,1 +51365,2189808,18,947,1 +51366,2189809,45,2269,1 +51367,2189829,151,7554,1 +51368,2189850,13,677,1 +51369,2190247,114,5704,1 +51370,2190252,137,6856,1 +51371,2190252,39,1964,1 +51372,2190257,56,2818,1 +51373,2190276,15,778,1 +51374,2190312,61,3095,1 +51375,2190720,65,3299,1 +51376,2190720,194,9722,1 +51377,2190720,69,3500,1 +51378,2190720,76,3846,1 +51379,2190720,59,2955,1 +51380,2190731,15,772,1 +51381,2190733,16,808,1 +51382,2190734,36,1801,1 +51383,2190744,155,7786,1 +51384,2190744,138,6935,1 +51385,2190744,133,6675,1 +51386,2190757,81,4084,1 +51387,2190762,138,6909,1 +51388,2190765,88,4443,1 +51389,2190768,73,3668,1 +51390,2190768,31,1565,1 +51391,2190768,139,6981,1 +51392,2190768,9,470,1 +51393,2190770,136,6838,1 +51394,2190774,6,343,1 +51395,2190776,80,4039,1 +51396,2190779,128,6402,1 +51397,2190780,20,1033,1 +51398,2190781,182,9133,1 +51399,2190792,95,4794,1 +51400,2190853,126,6305,1 +51401,2190881,59,3000,1 +51402,2190888,154,7723,1 +51403,2190914,19,955,1 +51404,2190933,120,6042,1 +51405,2190949,164,8229,1 +51406,2191200,67,3354,1 +51407,2191212,55,2791,1 +51408,2191213,158,7936,1 +51409,2191224,147,7391,1 +51410,2191257,116,5815,1 +51411,2191261,187,9373,1 +51412,2191278,76,3842,1 +51413,2191285,94,4738,1 +51414,2191680,88,4427,1 +51415,2191704,48,2411,1 +51416,2191705,138,6915,1 +51417,2191719,143,7196,1 +51418,2191724,111,5566,1 +51419,2191728,48,2425,1 +51420,2191770,15,758,1 +51421,2191828,86,4341,1 +51422,2192160,92,4640,1 +51423,2192160,26,1342,1 +51424,2192160,164,8211,1 +51425,2192160,46,2324,1 +51426,2192160,138,6907,1 +51427,2192161,28,1411,1 +51428,2192161,30,1511,1 +51429,2192161,169,8468,1 +51430,2192162,45,2289,1 +51431,2192163,55,2795,1 +51432,2192163,153,7700,1 +51433,2192169,142,7130,1 +51434,2192172,154,7746,1 +51435,2192172,179,8954,1 +51436,2192172,147,7378,1 +51437,2192173,10,511,1 +51438,2192174,44,2225,1 +51439,2192174,69,3500,1 +51440,2192175,119,5962,1 +51441,2192176,37,1885,1 +51442,2192178,96,4805,1 +51443,2192178,117,5880,1 +51444,2192182,147,7360,1 +51445,2192184,97,4858,1 +51446,2192184,15,772,1 +51447,2192184,158,7914,1 +51448,2192185,69,3499,1 +51449,2192185,165,8297,1 +51450,2192186,197,9881,1 +51451,2192187,69,3458,1 +51452,2192188,19,971,1 +51453,2192196,41,2092,1 +51454,2192196,151,7556,1 +51455,2192196,199,9955,1 +51456,2192196,117,5895,1 +51457,2192196,119,5991,1 +51458,2192196,111,5563,1 +51459,2192197,90,4520,1 +51460,2192200,133,6664,1 +51461,2192202,49,2458,1 +51462,2192206,60,3006,1 +51463,2192208,53,2668,1 +51464,2192208,51,2572,1 +51465,2192209,150,7541,1 +51466,2192210,139,6991,1 +51467,2192220,96,4817,1 +51468,2192222,3,175,1 +51469,2192232,116,5803,1 +51470,2192232,39,1951,1 +51471,2192232,159,7985,1 +51472,2192232,30,1538,1 +51473,2192232,94,4725,1 +51474,2192244,13,657,1 +51475,2192244,50,2534,1 +51476,2192248,38,1924,1 +51477,2192256,22,1107,1 +51478,2192256,26,1310,1 +51479,2192256,190,9508,1 +51480,2192265,88,4431,1 +51481,2192268,129,6457,1 +51482,2192271,135,6798,1 +51483,2192275,74,3705,1 +51484,2192280,163,8174,1 +51485,2192283,9,487,1 +51486,2192289,24,1231,1 +51487,2192316,20,1021,1 +51488,2192346,93,4689,1 +51489,2192365,197,9870,1 +51490,2192713,60,3016,1 +51491,2193126,134,6710,1 +51492,2193138,86,4341,1 +51493,2193144,143,7158,1 +51494,2193144,26,1343,1 +51495,2193147,99,4985,1 +51496,2193204,29,1485,1 +51497,2193210,49,2466,1 +51498,2193252,190,9528,1 +51499,2193623,147,7387,1 +51500,2193650,163,8186,1 +51501,2193657,128,6438,1 +51502,2193660,40,2028,1 +51503,2193711,86,4324,1 +51504,2194572,20,1048,1 +51505,2194573,41,2062,1 +51506,2194593,19,964,1 +51507,2194596,23,1176,1 +51508,2194597,127,6361,1 +51509,2194599,94,4703,1 +51510,2194728,56,2818,1 +51511,2194752,24,1227,1 +51512,2194848,177,8884,1 +51513,2195040,165,8266,1 +51514,2195040,146,7342,1 +51515,2195040,112,5650,1 +51516,2195040,185,9262,1 +51517,2195040,56,2828,1 +51518,2195040,59,2982,1 +51519,2195041,16,838,1 +51520,2195042,92,4616,1 +51521,2195046,3,165,1 +51522,2195052,80,4047,1 +51523,2195052,149,7454,1 +51524,2195052,194,9737,1 +51525,2195052,12,649,1 +51526,2195056,56,2843,1 +51527,2195066,170,8533,1 +51528,2195066,79,3956,1 +51529,2195067,15,767,1 +51530,2195073,62,3146,1 +51531,2195076,139,6956,1 +51532,2195076,109,5458,1 +51533,2195078,144,7205,1 +51534,2195086,67,3369,1 +51535,2195092,9,451,1 +51536,2195134,69,3482,1 +51537,2195136,191,9598,1 +51538,2195145,62,3134,1 +51539,2195145,134,6750,1 +51540,2195147,90,4509,1 +51541,2195166,62,3108,1 +51542,2195167,20,1014,1 +51543,2195220,152,7624,1 +51544,2195270,190,9504,1 +51545,2195544,140,7012,1 +51546,2195545,37,1876,1 +51547,2195545,127,6395,1 +51548,2195549,199,9997,1 +51549,2195567,20,1028,1 +51550,2195582,91,4564,1 +51551,2196015,43,2164,1 +51552,2196018,5,255,1 +51553,2196048,82,4113,1 +51554,2196960,158,7924,1 +51555,2196960,13,699,1 +51556,2196960,193,9679,1 +51557,2196960,143,7200,1 +51558,2196960,115,5756,1 +51559,2196960,19,952,1 +51560,2196964,36,1835,1 +51561,2196973,42,2113,1 +51562,2196974,111,5579,1 +51563,2196975,159,7971,1 +51564,2196978,45,2298,1 +51565,2196981,180,9003,1 +51566,2196984,95,4751,1 +51567,2196993,23,1157,1 +51568,2196993,58,2919,1 +51569,2197008,182,9109,1 +51570,2197008,180,9027,1 +51571,2197009,180,9035,1 +51572,2197011,145,7254,1 +51573,2197020,135,6775,1 +51574,2197020,80,4011,1 +51575,2197021,192,9613,1 +51576,2197044,82,4106,1 +51577,2197044,42,2110,1 +51578,2197068,114,5718,1 +51579,2197141,69,3478,1 +51580,2197440,127,6387,1 +51581,2197440,132,6643,1 +51582,2197464,111,5588,1 +51583,2197488,148,7423,1 +51584,2197501,104,5226,1 +51585,2197920,167,8394,1 +51586,2197944,152,7605,1 +51587,2197945,88,4449,1 +51588,2198028,79,3969,1 +51589,2198400,148,7405,1 +51590,2198412,166,8311,1 +51591,2198412,3,165,1 +51592,2198413,129,6476,1 +51593,2198413,21,1079,1 +51594,2198413,37,1867,1 +51595,2198424,134,6724,1 +51596,2198425,160,8019,1 +51597,2198437,41,2085,1 +51598,2198437,180,9045,1 +51599,2198439,199,9960,1 +51600,2198448,47,2372,1 +51601,2198454,102,5117,1 +51602,2198460,181,9067,1 +51603,2198484,56,2817,1 +51604,2198491,196,9838,1 +51605,2198497,80,4013,1 +51606,2198500,41,2078,1 +51607,2198532,87,4362,1 +51608,2198895,14,716,1 +51609,2199004,186,9339,1 +51610,2199360,156,7849,1 +51611,2199360,134,6714,1 +51612,2199361,26,1306,1 +51613,2199361,66,3336,1 +51614,2199362,101,5097,1 +51615,2199372,113,5699,1 +51616,2199372,150,7503,1 +51617,2199372,125,6274,1 +51618,2199372,70,3511,1 +51619,2199381,140,7006,1 +51620,2199384,181,9071,1 +51621,2199385,178,8947,1 +51622,2199386,40,2017,1 +51623,2199393,176,8845,1 +51624,2199397,45,2251,1 +51625,2199401,173,8656,1 +51626,2199406,58,2940,1 +51627,2199406,111,5596,1 +51628,2199408,75,3775,1 +51629,2199421,70,3537,1 +51630,2199421,89,4468,1 +51631,2199421,181,9059,1 +51632,2199422,82,4118,1 +51633,2199422,32,1613,1 +51634,2199425,102,5102,1 +51635,2199432,115,5784,1 +51636,2199433,91,4599,1 +51637,2199480,135,6760,1 +51638,2199480,150,7510,1 +51639,2199493,106,5304,1 +51640,2199499,79,3968,1 +51641,2199506,95,4783,1 +51642,2199841,14,744,1 +51643,2199842,184,9229,1 +51644,2199843,196,9835,1 +51645,2199867,142,7123,1 +51646,2199889,117,5857,1 +51647,2199915,52,2643,1 +51648,2199924,18,937,1 +51649,2199924,60,3017,1 +51650,2199937,136,6812,1 +51651,2200035,37,1857,1 +51652,2200135,178,8941,1 +51653,2200321,186,9328,1 +51654,2200416,130,6541,1 +51655,2200812,80,4017,1 +51656,2200825,39,1977,1 +51657,2200839,91,4570,1 +51658,2200885,103,5175,1 +51659,2200980,75,3758,1 +51660,2200993,19,975,1 +51661,2201073,68,3426,1 +51662,2201161,194,9727,1 +51663,2201304,121,6072,1 +51664,2202731,116,5805,1 +51665,2202738,129,6455,1 +51666,2202744,51,2572,1 +51667,2202744,32,1643,1 +51668,2202745,53,2658,1 +51669,2202746,79,3951,1 +51670,2202756,116,5840,1 +51671,2202756,1,73,1 +51672,2202758,107,5386,1 +51673,2202768,86,4344,1 +51674,2202768,82,4128,1 +51675,2202769,45,2286,1 +51676,2202769,160,8025,1 +51677,2202777,185,9261,1 +51678,2202793,28,1416,1 +51679,2202806,12,623,1 +51680,2202810,65,3289,1 +51681,2202816,81,4083,1 +51682,2202819,5,291,1 +51683,2202840,64,3206,1 +51684,2202853,89,4460,1 +51685,2202886,158,7928,1 +51686,2202913,26,1301,1 +51687,2202915,173,8691,1 +51688,2203248,154,7729,1 +51689,2203483,194,9703,1 +51690,2203680,179,8989,1 +51691,2203680,163,8171,1 +51692,2203689,6,344,1 +51693,2203692,147,7381,1 +51694,2203698,72,3630,1 +51695,2203705,5,266,1 +51696,2203717,42,2138,1 +51697,2203728,134,6724,1 +51698,2203749,90,4508,1 +51699,2203848,64,3204,1 +51700,2204160,57,2898,1 +51701,2204160,157,7891,1 +51702,2204160,68,3443,1 +51703,2204171,60,3009,1 +51704,2204172,198,9902,1 +51705,2204173,29,1490,1 +51706,2204175,21,1095,1 +51707,2204178,19,977,1 +51708,2204179,31,1582,1 +51709,2204184,129,6460,1 +51710,2204184,111,5559,1 +51711,2204184,39,1998,1 +51712,2204184,145,7280,1 +51713,2204185,167,8378,1 +51714,2204187,186,9323,1 +51715,2204196,8,403,1 +51716,2204197,15,782,1 +51717,2204202,35,1751,1 +51718,2204208,78,3948,1 +51719,2204208,126,6334,1 +51720,2204209,171,8572,1 +51721,2204220,114,5749,1 +51722,2204220,41,2052,1 +51723,2204229,119,5969,1 +51724,2204232,90,4505,1 +51725,2204280,104,5241,1 +51726,2204281,140,7018,1 +51727,2205134,169,8486,1 +51728,2205204,9,460,1 +51729,2205276,119,5996,1 +51730,2206082,193,9686,1 +51731,2206092,115,5776,1 +51732,2206092,17,889,1 +51733,2206093,67,3393,1 +51734,2206094,133,6657,1 +51735,2206095,85,4293,1 +51736,2206101,89,4462,1 +51737,2206104,61,3073,1 +51738,2206105,42,2121,1 +51739,2206116,29,1466,1 +51740,2206119,127,6369,1 +51741,2206134,6,339,1 +51742,2206140,132,6646,1 +51743,2206147,139,6997,1 +51744,2206147,63,3156,1 +51745,2206155,131,6552,1 +51746,2206164,165,8252,1 +51747,2206164,90,4514,1 +51748,2206178,88,4450,1 +51749,2206188,139,6983,1 +51750,2206188,99,4984,1 +51751,2206200,197,9862,1 +51752,2206210,164,8250,1 +51753,2206572,28,1409,1 +51754,2206572,54,2744,1 +51755,2207040,199,9986,1 +51756,2207040,199,9958,1 +51757,2207040,155,7775,1 +51758,2207054,80,4034,1 +51759,2207058,8,432,1 +51760,2207064,163,8154,1 +51761,2207064,60,3011,1 +51762,2207067,100,5024,1 +51763,2207068,118,5939,1 +51764,2207073,114,5718,1 +51765,2207079,99,4980,1 +51766,2207148,112,5608,1 +51767,2207162,106,5346,1 +51768,2207172,159,7983,1 +51769,2207532,163,8160,1 +51770,2207539,129,6451,1 +51771,2207559,170,8522,1 +51772,2207571,23,1151,1 +51773,2207571,53,2691,1 +51774,2207574,150,7526,1 +51775,2207601,148,7446,1 +51776,2207617,178,8943,1 +51777,2207628,140,7013,1 +51778,2208000,114,5728,1 +51779,2208000,172,8649,1 +51780,2208000,24,1239,1 +51781,2208000,43,2174,1 +51782,2208000,59,2983,1 +51783,2208000,73,3692,1 +51784,2208000,75,3772,1 +51785,2208001,77,3896,1 +51786,2208004,184,9206,1 +51787,2208006,127,6376,1 +51788,2208009,166,8344,1 +51789,2208012,20,1027,1 +51790,2208012,188,9439,1 +51791,2208012,6,306,1 +51792,2208012,112,5638,1 +51793,2208013,192,9632,1 +51794,2208013,71,3599,1 +51795,2208015,81,4091,1 +51796,2208019,70,3523,1 +51797,2208024,45,2294,1 +51798,2208024,15,799,1 +51799,2208024,47,2387,1 +51800,2208024,74,3750,1 +51801,2208024,59,2992,1 +51802,2208027,185,9270,1 +51803,2208035,86,4344,1 +51804,2208036,150,7542,1 +51805,2208036,47,2367,1 +51806,2208037,194,9739,1 +51807,2208038,93,4682,1 +51808,2208039,16,810,1 +51809,2208039,196,9814,1 +51810,2208045,49,2458,1 +51811,2208048,53,2687,1 +51812,2208048,139,6955,1 +51813,2208048,131,6593,1 +51814,2208060,11,589,1 +51815,2208063,166,8325,1 +51816,2208063,80,4007,1 +51817,2208064,100,5044,1 +51818,2208072,197,9863,1 +51819,2208072,62,3102,1 +51820,2208072,64,3217,1 +51821,2208072,4,243,1 +51822,2208073,140,7031,1 +51823,2208073,190,9511,1 +51824,2208073,193,9698,1 +51825,2208075,160,8046,1 +51826,2208084,92,4608,1 +51827,2208096,102,5125,1 +51828,2208105,176,8824,1 +51829,2208172,101,5086,1 +51830,2208204,164,8214,1 +51831,2208312,95,4757,1 +51832,2208480,182,9114,1 +51833,2208480,170,8520,1 +51834,2208486,21,1082,1 +51835,2208495,109,5495,1 +51836,2208495,134,6729,1 +51837,2208501,56,2811,1 +51838,2208505,34,1737,1 +51839,2208511,30,1513,1 +51840,2208513,164,8250,1 +51841,2208520,23,1159,1 +51842,2208534,140,7006,1 +51843,2208542,57,2900,1 +51844,2208554,75,3780,1 +51845,2208588,20,1029,1 +51846,2208606,126,6345,1 +51847,2208660,78,3930,1 +51848,2208663,165,8298,1 +51849,2209041,94,4743,1 +51850,2209056,154,7731,1 +51851,2209440,144,7242,1 +51852,2209441,152,7607,1 +51853,2209452,67,3375,1 +51854,2209452,67,3379,1 +51855,2209452,81,4068,1 +51856,2209465,168,8442,1 +51857,2209476,185,9262,1 +51858,2209476,13,680,1 +51859,2209500,133,6662,1 +51860,2209512,174,8717,1 +51861,2209572,71,3568,1 +51862,2209705,33,1689,1 +51863,2209920,76,3822,1 +51864,2209920,131,6552,1 +51865,2209920,89,4451,1 +51866,2209920,142,7140,1 +51867,2209920,54,2729,1 +51868,2209920,35,1779,1 +51869,2209921,19,986,1 +51870,2209922,151,7570,1 +51871,2209923,46,2309,1 +51872,2209930,37,1860,1 +51873,2209932,198,9946,1 +51874,2209932,147,7384,1 +51875,2209932,33,1698,1 +51876,2209933,132,6643,1 +51877,2209933,176,8834,1 +51878,2209933,56,2820,1 +51879,2209940,93,4671,1 +51880,2209944,114,5713,1 +51881,2209944,68,3421,1 +51882,2209944,163,8157,1 +51883,2209947,104,5202,1 +51884,2209955,171,8583,1 +51885,2209955,71,3584,1 +51886,2209956,103,5184,1 +51887,2209956,101,5056,1 +51888,2209957,199,9992,1 +51889,2209959,184,9227,1 +51890,2209959,192,9636,1 +51891,2209960,126,6338,1 +51892,2209965,56,2834,1 +51893,2209968,119,5960,1 +51894,2209971,16,826,1 +51895,2209980,190,9522,1 +51896,2209980,197,9895,1 +51897,2209992,96,4813,1 +51898,2209993,163,8194,1 +51899,2209995,64,3241,1 +51900,2209998,59,2964,1 +51901,2210002,155,7755,1 +51902,2210013,142,7107,1 +51903,2210016,2,131,1 +51904,2210040,165,8298,1 +51905,2210049,92,4611,1 +51906,2210103,171,8594,1 +51907,2210136,185,9285,1 +51908,2210160,156,7809,1 +51909,2210400,168,8444,1 +51910,2210400,187,9351,1 +51911,2210400,147,7397,1 +51912,2210400,30,1504,1 +51913,2210400,179,8968,1 +51914,2210400,189,9460,1 +51915,2210400,19,985,1 +51916,2210400,149,7458,1 +51917,2210400,144,7223,1 +51918,2210401,165,8267,1 +51919,2210402,164,8231,1 +51920,2210403,173,8676,1 +51921,2210403,139,6992,1 +51922,2210404,132,6629,1 +51923,2210409,25,1269,1 +51924,2210412,165,8262,1 +51925,2210412,5,261,1 +51926,2210412,171,8572,1 +51927,2210412,100,5001,1 +51928,2210412,9,483,1 +51929,2210412,179,8968,1 +51930,2210412,95,4769,1 +51931,2210413,81,4056,1 +51932,2210413,188,9445,1 +51933,2210413,156,7846,1 +51934,2210413,123,6153,1 +51935,2210413,61,3076,1 +51936,2210416,147,7356,1 +51937,2210416,195,9790,1 +51938,2210421,115,5795,1 +51939,2210421,140,7043,1 +51940,2210424,167,8365,1 +51941,2210424,118,5940,1 +51942,2210424,120,6024,1 +51943,2210424,169,8472,1 +51944,2210424,156,7808,1 +51945,2210426,0,30,1 +51946,2210427,133,6695,1 +51947,2210427,193,9663,1 +51948,2210430,138,6904,1 +51949,2210436,8,444,1 +51950,2210436,154,7701,1 +51951,2210436,198,9906,1 +51952,2210436,144,7225,1 +51953,2210436,32,1604,1 +51954,2210437,33,1673,1 +51955,2210437,104,5203,1 +51956,2210437,23,1184,1 +51957,2210438,118,5931,1 +51958,2210441,21,1070,1 +51959,2210443,174,8707,1 +51960,2210447,171,8592,1 +51961,2210448,153,7673,1 +51962,2210448,81,4082,1 +51963,2210448,22,1126,1 +51964,2210448,80,4045,1 +51965,2210456,191,9580,1 +51966,2210457,149,7469,1 +51967,2210460,98,4908,1 +51968,2210460,47,2383,1 +51969,2210460,60,3005,1 +51970,2210460,173,8698,1 +51971,2210460,102,5139,1 +51972,2210461,72,3646,1 +51973,2210462,76,3835,1 +51974,2210462,16,803,1 +51975,2210465,136,6849,1 +51976,2210466,81,4080,1 +51977,2210472,75,3775,1 +51978,2210472,172,8623,1 +51979,2210472,27,1371,1 +51980,2210473,39,1956,1 +51981,2210482,2,150,1 +51982,2210484,192,9650,1 +51983,2210484,172,8624,1 +51984,2210484,124,6206,1 +51985,2210484,40,2002,1 +51986,2210484,162,8105,1 +51987,2210485,66,3346,1 +51988,2210496,29,1456,1 +51989,2210496,69,3478,1 +51990,2210497,129,6469,1 +51991,2210497,67,3359,1 +51992,2210502,97,4853,1 +51993,2210505,134,6726,1 +51994,2210508,105,5277,1 +51995,2210509,76,3805,1 +51996,2210521,114,5716,1 +51997,2210544,52,2607,1 +51998,2210547,153,7686,1 +51999,2210556,123,6170,1 +52000,2210570,12,643,1 +52001,2210598,191,9560,1 +52002,2210680,91,4576,1 +52003,2210685,104,5247,1 +52004,2210880,156,7807,1 +52005,2210880,144,7226,1 +52006,2210880,127,6370,1 +52007,2210881,160,8015,1 +52008,2210882,157,7882,1 +52009,2210892,147,7356,1 +52010,2210894,104,5244,1 +52011,2210922,194,9720,1 +52012,2210922,97,4862,1 +52013,2210931,129,6496,1 +52014,2210937,13,672,1 +52015,2210940,92,4646,1 +52016,2210961,114,5720,1 +52017,2210973,26,1345,1 +52018,2210973,26,1314,1 +52019,2211000,132,6607,1 +52020,2211000,108,5415,1 +52021,2211003,87,4386,1 +52022,2211012,50,2507,1 +52023,2211013,39,1987,1 +52024,2211013,166,8330,1 +52025,2211474,132,6650,1 +52026,2211853,16,829,1 +52027,2211864,36,1816,1 +52028,2211874,84,4248,1 +52029,2211876,47,2369,1 +52030,2211889,107,5382,1 +52031,2211891,66,3336,1 +52032,2211960,196,9806,1 +52033,2212332,189,9453,1 +52034,2212344,101,5076,1 +52035,2212345,30,1509,1 +52036,2212368,157,7851,1 +52037,2212386,44,2210,1 +52038,2212432,196,9829,1 +52039,2212440,14,706,1 +52040,2212440,189,9462,1 +52041,2212806,71,3563,1 +52042,2212807,161,8079,1 +52043,2212812,57,2893,1 +52044,2212824,160,8040,1 +52045,2212839,84,4242,1 +52046,2212879,57,2900,1 +52047,2212896,197,9866,1 +52048,2212908,109,5489,1 +52049,2212934,3,168,1 +52050,2212953,81,4093,1 +52051,2213292,173,8695,1 +52052,2213294,185,9268,1 +52053,2213298,173,8669,1 +52054,2213298,80,4033,1 +52055,2213304,189,9459,1 +52056,2213316,80,4048,1 +52057,2213352,8,424,1 +52058,2213760,185,9263,1 +52059,2213766,19,983,1 +52060,2213808,1,86,1 +52061,2213808,32,1627,1 +52062,2213867,22,1117,1 +52063,2214276,187,9355,1 +52064,2214277,48,2411,1 +52065,2214361,118,5935,1 +52066,2214720,9,470,1 +52067,2214744,10,526,1 +52068,2214745,128,6442,1 +52069,2214804,180,9023,1 +52070,2215212,99,4971,1 +52071,2215692,50,2510,1 +52072,2215694,146,7330,1 +52073,2215695,51,2569,1 +52074,2215702,37,1894,1 +52075,2215704,168,8438,1 +52076,2215707,180,9018,1 +52077,2215765,13,669,1 +52078,2215790,159,7971,1 +52079,2215812,77,3886,1 +52080,2216640,135,6791,1 +52081,2216655,26,1337,1 +52082,2216673,54,2727,1 +52083,2216691,58,2934,1 +52084,2216691,132,6644,1 +52085,2216709,57,2894,1 +52086,2216725,95,4775,1 +52087,2216730,191,9591,1 +52088,2216736,12,609,1 +52089,2216760,84,4203,1 +52090,2217201,5,292,1 +52091,2217241,85,4299,1 +52092,2217276,149,7481,1 +52093,2217613,138,6912,1 +52094,2217613,187,9386,1 +52095,2217615,52,2632,1 +52096,2217618,35,1760,1 +52097,2217654,41,2059,1 +52098,2217669,161,8088,1 +52099,2217733,7,373,1 +52100,2218119,117,5886,1 +52101,2218128,162,8138,1 +52102,2218152,54,2703,1 +52103,2218560,105,5290,1 +52104,2218561,90,4512,1 +52105,2218566,191,9578,1 +52106,2218572,45,2295,1 +52107,2218572,106,5315,1 +52108,2218585,172,8645,1 +52109,2218593,185,9267,1 +52110,2218596,112,5611,1 +52111,2218608,21,1071,1 +52112,2218662,137,6892,1 +52113,2219043,152,7601,1 +52114,2219052,21,1058,1 +52115,2219058,110,5541,1 +52116,2219100,126,6330,1 +52117,2219113,133,6696,1 +52118,2219115,96,4826,1 +52119,2219136,135,6795,1 +52120,2219196,60,3042,1 +52121,2219226,92,4615,1 +52122,2219233,149,7491,1 +52123,2219520,156,7844,1 +52124,2219523,126,6308,1 +52125,2219538,197,9855,1 +52126,2219548,37,1892,1 +52127,2219556,8,407,1 +52128,2219557,11,555,1 +52129,2219589,157,7895,1 +52130,2219592,185,9263,1 +52131,2219605,162,8137,1 +52132,2219611,135,6791,1 +52133,2219618,14,712,1 +52134,2220000,24,1205,1 +52135,2220001,141,7080,1 +52136,2220003,102,5104,1 +52137,2220004,54,2746,1 +52138,2220013,77,3869,1 +52139,2220013,137,6881,1 +52140,2220014,199,9963,1 +52141,2220015,138,6916,1 +52142,2220015,76,3844,1 +52143,2220015,119,5970,1 +52144,2220024,138,6949,1 +52145,2220024,14,708,1 +52146,2220024,90,4538,1 +52147,2220026,111,5572,1 +52148,2220079,176,8816,1 +52149,2220108,189,9472,1 +52150,2220145,51,2595,1 +52151,2220146,105,5276,1 +52152,2220147,156,7813,1 +52153,2220492,69,3455,1 +52154,2220492,51,2585,1 +52155,2220492,155,7768,1 +52156,2220493,170,8529,1 +52157,2220495,23,1170,1 +52158,2220499,64,3232,1 +52159,2220516,47,2363,1 +52160,2220517,83,4176,1 +52161,2220517,34,1738,1 +52162,2220530,34,1709,1 +52163,2220552,64,3215,1 +52164,2220960,115,5754,1 +52165,2220961,175,8762,1 +52166,2220963,161,8094,1 +52167,2220963,189,9478,1 +52168,2220966,185,9299,1 +52169,2220984,93,4654,1 +52170,2220984,70,3518,1 +52171,2221014,53,2679,1 +52172,2221021,175,8775,1 +52173,2221038,19,959,1 +52174,2221039,174,8717,1 +52175,2221044,108,5435,1 +52176,2221046,141,7093,1 +52177,2221057,105,5252,1 +52178,2221062,184,9211,1 +52179,2221452,101,5091,1 +52180,2221464,68,3419,1 +52181,2221501,188,9444,1 +52182,2221513,53,2691,1 +52183,2221524,139,7000,1 +52184,2221536,57,2899,1 +52185,2222450,188,9431,1 +52186,2222880,90,4538,1 +52187,2222884,119,5958,1 +52188,2222892,144,7231,1 +52189,2222893,135,6766,1 +52190,2222905,127,6391,1 +52191,2222910,80,4048,1 +52192,2222918,7,368,1 +52193,2222928,154,7721,1 +52194,2222955,142,7146,1 +52195,2222984,173,8654,1 +52196,2223015,188,9401,1 +52197,2223851,117,5872,1 +52198,2223852,18,917,1 +52199,2223853,111,5569,1 +52200,2223870,61,3077,1 +52201,2223884,100,5032,1 +52202,2223885,48,2405,1 +52203,2223900,116,5831,1 +52204,2224321,166,8333,1 +52205,2224321,170,8512,1 +52206,2224324,62,3129,1 +52207,2224329,196,9832,1 +52208,2224329,185,9287,1 +52209,2224334,82,4120,1 +52210,2224335,184,9230,1 +52211,2224335,65,3274,1 +52212,2224344,65,3287,1 +52213,2224345,22,1114,1 +52214,2224345,47,2382,1 +52215,2224345,84,4221,1 +52216,2224362,91,4580,1 +52217,2224365,131,6580,1 +52218,2224375,68,3435,1 +52219,2224380,70,3507,1 +52220,2224416,172,8621,1 +52221,2224488,155,7787,1 +52222,2224490,132,6607,1 +52223,2224800,54,2741,1 +52224,2224821,19,997,1 +52225,2224959,118,5903,1 +52226,2225331,157,7872,1 +52227,2225335,70,3526,1 +52228,2225337,123,6188,1 +52229,2225389,133,6655,1 +52230,2225448,153,7695,1 +52231,2225520,69,3467,1 +52232,2225760,112,5633,1 +52233,2225761,149,7479,1 +52234,2225763,16,809,1 +52235,2225769,104,5235,1 +52236,2225772,151,7590,1 +52237,2225781,65,3298,1 +52238,2225781,17,860,1 +52239,2225784,2,124,1 +52240,2225787,130,6550,1 +52241,2225792,142,7125,1 +52242,2225821,59,2987,1 +52243,2225822,196,9807,1 +52244,2225831,71,3561,1 +52245,2225846,51,2599,1 +52246,2225893,127,6367,1 +52247,2225928,4,201,1 +52248,2226240,102,5132,1 +52249,2226241,126,6301,1 +52250,2226242,22,1150,1 +52251,2226246,185,9251,1 +52252,2226253,59,2957,1 +52253,2226253,194,9701,1 +52254,2226253,78,3925,1 +52255,2226259,198,9908,1 +52256,2226262,179,8989,1 +52257,2226273,114,5749,1 +52258,2226276,113,5673,1 +52259,2226285,147,7380,1 +52260,2226321,165,8260,1 +52261,2226346,105,5289,1 +52262,2226348,129,6491,1 +52263,2226436,0,38,1 +52264,2226745,153,7689,1 +52265,2226746,121,6059,1 +52266,2226952,159,7973,1 +52267,2227200,31,1554,1 +52268,2227200,195,9789,1 +52269,2227203,7,366,1 +52270,2227213,126,6314,1 +52271,2227217,126,6338,1 +52272,2227224,147,7375,1 +52273,2227227,87,4379,1 +52274,2227227,183,9157,1 +52275,2227236,92,4621,1 +52276,2227244,137,6860,1 +52277,2227248,130,6547,1 +52278,2227251,179,8988,1 +52279,2227260,131,6591,1 +52280,2227261,108,5444,1 +52281,2227282,85,4285,1 +52282,2227284,29,1481,1 +52283,2227296,83,4200,1 +52284,2227437,140,7002,1 +52285,2227533,75,3786,1 +52286,2227680,153,7670,1 +52287,2227696,110,5550,1 +52288,2227698,107,5374,1 +52289,2227698,6,348,1 +52290,2227704,7,386,1 +52291,2227705,56,2817,1 +52292,2227707,168,8431,1 +52293,2227710,43,2161,1 +52294,2227728,73,3661,1 +52295,2227728,108,5448,1 +52296,2227731,125,6257,1 +52297,2227740,70,3513,1 +52298,2227741,25,1281,1 +52299,2227749,135,6776,1 +52300,2227770,89,4455,1 +52301,2227824,155,7785,1 +52302,2227908,182,9126,1 +52303,2228160,161,8094,1 +52304,2228160,52,2608,1 +52305,2228161,187,9393,1 +52306,2228172,154,7719,1 +52307,2228172,98,4919,1 +52308,2228172,182,9102,1 +52309,2228172,150,7516,1 +52310,2228172,179,8990,1 +52311,2228184,137,6895,1 +52312,2228184,82,4144,1 +52313,2228184,82,4119,1 +52314,2228185,58,2916,1 +52315,2228191,30,1515,1 +52316,2228205,25,1278,1 +52317,2228209,13,662,1 +52318,2228221,109,5476,1 +52319,2228226,181,9062,1 +52320,2228233,121,6085,1 +52321,2228244,43,2154,1 +52322,2228258,44,2204,1 +52323,2228268,196,9839,1 +52324,2228268,152,7630,1 +52325,2228271,168,8416,1 +52326,2228292,65,3296,1 +52327,2228325,56,2840,1 +52328,2228367,88,4430,1 +52329,2228667,64,3250,1 +52330,2228670,185,9297,1 +52331,2228688,191,9554,1 +52332,2228703,13,665,1 +52333,2228712,35,1796,1 +52334,2228726,58,2919,1 +52335,2228736,155,7783,1 +52336,2229120,184,9204,1 +52337,2229120,120,6019,1 +52338,2229120,89,4490,1 +52339,2229123,48,2402,1 +52340,2229132,138,6942,1 +52341,2229144,34,1743,1 +52342,2229145,75,3779,1 +52343,2229146,132,6637,1 +52344,2229147,82,4116,1 +52345,2229147,159,7953,1 +52346,2229154,4,220,1 +52347,2229159,83,4176,1 +52348,2229168,112,5621,1 +52349,2229169,54,2738,1 +52350,2229181,152,7631,1 +52351,2229181,154,7702,1 +52352,2229186,89,4454,1 +52353,2229204,143,7174,1 +52354,2229265,76,3823,1 +52355,2229289,48,2428,1 +52356,2229333,157,7859,1 +52357,2229600,143,7174,1 +52358,2229600,78,3948,1 +52359,2229613,169,8470,1 +52360,2230080,87,4367,1 +52361,2230080,105,5300,1 +52362,2230087,57,2880,1 +52363,2230087,152,7645,1 +52364,2230092,90,4501,1 +52365,2230092,151,7588,1 +52366,2230092,115,5777,1 +52367,2230092,4,223,1 +52368,2230093,37,1893,1 +52369,2230095,118,5923,1 +52370,2230095,76,3841,1 +52371,2230101,46,2327,1 +52372,2230104,189,9497,1 +52373,2230104,3,169,1 +52374,2230110,138,6907,1 +52375,2230114,158,7946,1 +52376,2230116,194,9742,1 +52377,2230116,33,1691,1 +52378,2230117,137,6865,1 +52379,2230124,183,9199,1 +52380,2230140,61,3081,1 +52381,2230143,105,5289,1 +52382,2230145,178,8946,1 +52383,2230160,12,635,1 +52384,2230164,165,8280,1 +52385,2230165,189,9470,1 +52386,2230166,112,5606,1 +52387,2230176,51,2581,1 +52388,2230185,137,6873,1 +52389,2230188,161,8059,1 +52390,2230191,174,8726,1 +52391,2230200,199,9952,1 +52392,2230228,133,6668,1 +52393,2230286,70,3528,1 +52394,2230560,78,3905,1 +52395,2230598,144,7221,1 +52396,2230620,24,1240,1 +52397,2230621,52,2650,1 +52398,2230650,176,8841,1 +52399,2231044,99,4951,1 +52400,2231065,62,3123,1 +52401,2231076,99,4969,1 +52402,2231101,161,8083,1 +52403,2231124,26,1313,1 +52404,2231126,116,5835,1 +52405,2231136,74,3744,1 +52406,2231534,139,6982,1 +52407,2232048,9,470,1 +52408,2232114,187,9399,1 +52409,2232193,106,5306,1 +52410,2232480,41,2069,1 +52411,2232519,58,2901,1 +52412,2232553,133,6680,1 +52413,2232969,45,2260,1 +52414,2233002,58,2933,1 +52415,2233003,139,6965,1 +52416,2233032,131,6568,1 +52417,2233176,45,2282,1 +52418,2233296,2,116,1 +52419,2233440,109,5467,1 +52420,2233440,77,3898,1 +52421,2233440,106,5328,1 +52422,2233440,154,7730,1 +52423,2233452,180,9029,1 +52424,2233461,0,11,1 +52425,2233464,52,2632,1 +52426,2233464,111,5596,1 +52427,2233467,38,1921,1 +52428,2233472,90,4539,1 +52429,2233476,117,5890,1 +52430,2233488,66,3306,1 +52431,2233488,196,9809,1 +52432,2233488,199,9970,1 +52433,2233494,188,9423,1 +52434,2233524,4,207,1 +52435,2233525,172,8621,1 +52436,2233531,19,959,1 +52437,2233548,49,2486,1 +52438,2233548,167,8391,1 +52439,2233559,118,5942,1 +52440,2233764,48,2421,1 +52441,2233920,72,3629,1 +52442,2233929,135,6774,1 +52443,2233935,8,422,1 +52444,2233950,133,6680,1 +52445,2233956,111,5569,1 +52446,2233957,151,7554,1 +52447,2233958,29,1461,1 +52448,2233962,105,5268,1 +52449,2233977,96,4803,1 +52450,2233983,177,8888,1 +52451,2233996,98,4925,1 +52452,2234004,140,7017,1 +52453,2234017,85,4284,1 +52454,2234140,31,1596,1 +52455,2234400,13,669,1 +52456,2234404,64,3202,1 +52457,2234406,39,1976,1 +52458,2234412,21,1099,1 +52459,2234412,47,2394,1 +52460,2234419,164,8246,1 +52461,2234436,128,6433,1 +52462,2234437,39,1966,1 +52463,2234466,127,6385,1 +52464,2234496,11,594,1 +52465,2234544,23,1154,1 +52466,2234610,156,7802,1 +52467,2234713,40,2012,1 +52468,2234882,4,213,1 +52469,2234889,36,1836,1 +52470,2234913,64,3250,1 +52471,2235420,190,9542,1 +52472,2235432,80,4017,1 +52473,2235434,54,2713,1 +52474,2235841,151,7552,1 +52475,2235894,182,9132,1 +52476,2235900,80,4007,1 +52477,2235936,170,8539,1 +52478,2236320,153,7671,1 +52479,2236320,62,3134,1 +52480,2236320,48,2427,1 +52481,2236320,56,2834,1 +52482,2236320,31,1557,1 +52483,2236320,65,3293,1 +52484,2236321,57,2863,1 +52485,2236338,120,6013,1 +52486,2236338,193,9692,1 +52487,2236344,60,3041,1 +52488,2236348,60,3043,1 +52489,2236351,17,889,1 +52490,2236390,39,1970,1 +52491,2236392,13,679,1 +52492,2236429,107,5357,1 +52493,2236452,9,479,1 +52494,2236452,19,994,1 +52495,2236457,10,546,1 +52496,2236513,174,8722,1 +52497,2236525,22,1122,1 +52498,2236525,108,5419,1 +52499,2237280,153,7672,1 +52500,2237280,133,6651,1 +52501,2237280,22,1111,1 +52502,2237281,155,7767,1 +52503,2237286,197,9894,1 +52504,2237292,0,47,1 +52505,2237292,196,9832,1 +52506,2237295,97,4882,1 +52507,2237301,145,7266,1 +52508,2237304,94,4727,1 +52509,2237308,139,6957,1 +52510,2237310,187,9364,1 +52511,2237316,123,6165,1 +52512,2237329,93,4684,1 +52513,2237333,101,5069,1 +52514,2237344,10,527,1 +52515,2237352,31,1568,1 +52516,2237352,140,7026,1 +52517,2237366,140,7024,1 +52518,2237377,146,7329,1 +52519,2237389,60,3009,1 +52520,2237400,10,542,1 +52521,2237451,32,1650,1 +52522,2237469,119,5963,1 +52523,2237496,159,7956,1 +52524,2237607,81,4080,1 +52525,2237760,45,2288,1 +52526,2237763,22,1139,1 +52527,2237767,65,3256,1 +52528,2237770,60,3011,1 +52529,2237772,15,753,1 +52530,2237773,85,4288,1 +52531,2237784,80,4045,1 +52532,2237784,28,1438,1 +52533,2237788,6,308,1 +52534,2237790,39,1983,1 +52535,2237793,125,6257,1 +52536,2237796,191,9569,1 +52537,2237800,157,7867,1 +52538,2237811,93,4689,1 +52539,2237824,159,7972,1 +52540,2237825,135,6765,1 +52541,2237830,0,47,1 +52542,2237832,122,6135,1 +52543,2238240,149,7488,1 +52544,2238241,44,2203,1 +52545,2238242,18,912,1 +52546,2238252,126,6312,1 +52547,2238345,156,7844,1 +52548,2238384,180,9012,1 +52549,2238436,130,6538,1 +52550,2238744,160,8030,1 +52551,2238745,72,3614,1 +52552,2239200,19,961,1 +52553,2239201,71,3567,1 +52554,2239209,43,2179,1 +52555,2239212,76,3808,1 +52556,2239213,159,7978,1 +52557,2239213,16,807,1 +52558,2239215,43,2190,1 +52559,2239221,159,7991,1 +52560,2239224,9,457,1 +52561,2239224,42,2105,1 +52562,2239224,70,3538,1 +52563,2239236,2,117,1 +52564,2239236,84,4220,1 +52565,2239236,9,489,1 +52566,2239236,198,9935,1 +52567,2239242,94,4717,1 +52568,2239248,188,9416,1 +52569,2239248,71,3573,1 +52570,2239253,64,3201,1 +52571,2239257,180,9024,1 +52572,2239287,133,6690,1 +52573,2239308,166,8309,1 +52574,2239320,168,8425,1 +52575,2239326,55,2786,1 +52576,2239358,162,8110,1 +52577,2239362,175,8752,1 +52578,2239536,145,7251,1 +52579,2239704,41,2093,1 +52580,2239761,107,5363,1 +52581,2239764,153,7696,1 +52582,2239890,65,3300,1 +52583,2240195,46,2344,1 +52584,2240212,45,2258,1 +52585,2240305,78,3913,1 +52586,2240320,1,97,1 +52587,2240640,118,5915,1 +52588,2240640,42,2117,1 +52589,2240641,30,1534,1 +52590,2240641,128,6405,1 +52591,2240641,73,3696,1 +52592,2240641,53,2690,1 +52593,2240641,125,6294,1 +52594,2240646,105,5275,1 +52595,2240650,168,8404,1 +52596,2240652,164,8208,1 +52597,2240652,83,4163,1 +52598,2240652,9,471,1 +52599,2240652,2,146,1 +52600,2240652,18,943,1 +52601,2240652,184,9204,1 +52602,2240652,66,3343,1 +52603,2240652,24,1243,1 +52604,2240657,76,3804,1 +52605,2240663,22,1148,1 +52606,2240664,74,3726,1 +52607,2240664,171,8585,1 +52608,2240665,167,8374,1 +52609,2240674,29,1468,1 +52610,2240676,199,10000,1 +52611,2240679,39,1978,1 +52612,2240680,49,2473,1 +52613,2240682,13,699,1 +52614,2240688,178,8908,1 +52615,2240688,45,2257,1 +52616,2240700,177,8858,1 +52617,2240700,84,4235,1 +52618,2240700,60,3034,1 +52619,2240712,168,8410,1 +52620,2240712,34,1749,1 +52621,2240724,151,7591,1 +52622,2240724,198,9905,1 +52623,2240732,138,6919,1 +52624,2240737,86,4324,1 +52625,2240751,66,3338,1 +52626,2240785,136,6835,1 +52627,2240811,141,7060,1 +52628,2240830,42,2107,1 +52629,2240835,198,9906,1 +52630,2240870,7,371,1 +52631,2241145,42,2134,1 +52632,2241208,163,8158,1 +52633,2241252,79,3996,1 +52634,2241602,68,3436,1 +52635,2241636,174,8749,1 +52636,2241673,156,7802,1 +52637,2242560,92,4639,1 +52638,2242560,191,9559,1 +52639,2242572,46,2320,1 +52640,2242656,36,1824,1 +52641,2243040,173,8655,1 +52642,2243040,104,5213,1 +52643,2243040,34,1739,1 +52644,2243040,47,2381,1 +52645,2243040,38,1904,1 +52646,2243042,33,1693,1 +52647,2243043,100,5020,1 +52648,2243044,11,590,1 +52649,2243046,17,879,1 +52650,2243047,122,6109,1 +52651,2243049,29,1458,1 +52652,2243049,180,9042,1 +52653,2243052,139,6982,1 +52654,2243052,145,7293,1 +52655,2243052,34,1728,1 +52656,2243052,145,7293,1 +52657,2243052,136,6808,1 +52658,2243052,9,489,1 +52659,2243053,9,494,1 +52660,2243053,92,4623,1 +52661,2243054,156,7832,1 +52662,2243055,105,5270,1 +52663,2243055,177,8870,1 +52664,2243057,103,5165,1 +52665,2243059,165,8265,1 +52666,2243061,157,7882,1 +52667,2243061,158,7923,1 +52668,2243064,79,3976,1 +52669,2243064,41,2085,1 +52670,2243065,71,3574,1 +52671,2243065,107,5391,1 +52672,2243065,95,4760,1 +52673,2243065,90,4538,1 +52674,2243066,114,5705,1 +52675,2243066,196,9814,1 +52676,2243067,143,7175,1 +52677,2243067,66,3304,1 +52678,2243067,194,9723,1 +52679,2243076,72,3630,1 +52680,2243076,137,6879,1 +52681,2243076,58,2944,1 +52682,2243076,55,2783,1 +52683,2243077,44,2235,1 +52684,2243077,110,5515,1 +52685,2243077,119,5983,1 +52686,2243081,30,1512,1 +52687,2243088,163,8165,1 +52688,2243088,22,1105,1 +52689,2243088,139,6993,1 +52690,2243088,56,2832,1 +52691,2243089,93,4682,1 +52692,2243089,98,4947,1 +52693,2243091,148,7416,1 +52694,2243097,174,8714,1 +52695,2243100,129,6475,1 +52696,2243100,59,2990,1 +52697,2243100,72,3648,1 +52698,2243101,193,9694,1 +52699,2243121,191,9596,1 +52700,2243124,1,90,1 +52701,2243130,56,2840,1 +52702,2243133,165,8266,1 +52703,2243134,91,4566,1 +52704,2243134,131,6591,1 +52705,2243136,172,8636,1 +52706,2243140,39,1961,1 +52707,2243143,69,3481,1 +52708,2243145,106,5305,1 +52709,2243150,74,3743,1 +52710,2243160,101,5062,1 +52711,2243160,168,8442,1 +52712,2243163,60,3017,1 +52713,2243163,162,8137,1 +52714,2243166,53,2689,1 +52715,2243169,72,3606,1 +52716,2243194,110,5527,1 +52717,2243197,127,6383,1 +52718,2243244,182,9123,1 +52719,2243256,30,1534,1 +52720,2244012,197,9897,1 +52721,2244012,15,776,1 +52722,2244013,186,9332,1 +52723,2244013,56,2839,1 +52724,2244015,35,1795,1 +52725,2244026,4,225,1 +52726,2244027,87,4368,1 +52727,2244030,191,9590,1 +52728,2244039,62,3116,1 +52729,2244058,8,413,1 +52730,2244060,180,9048,1 +52731,2244072,34,1738,1 +52732,2244096,24,1210,1 +52733,2244125,197,9851,1 +52734,2244495,18,925,1 +52735,2244553,147,7378,1 +52736,2244574,68,3428,1 +52737,2244960,73,3666,1 +52738,2245189,167,8379,1 +52739,2245445,186,9338,1 +52740,2245450,107,5351,1 +52741,2245452,95,4773,1 +52742,2245452,59,2957,1 +52743,2245458,122,6135,1 +52744,2245458,4,232,1 +52745,2245465,153,7671,1 +52746,2245470,105,5256,1 +52747,2245470,184,9222,1 +52748,2245474,78,3924,1 +52749,2245479,175,8784,1 +52750,2245483,61,3055,1 +52751,2245488,170,8533,1 +52752,2245489,179,8987,1 +52753,2245490,154,7746,1 +52754,2245512,126,6322,1 +52755,2245516,144,7215,1 +52756,2245519,4,217,1 +52757,2245524,117,5854,1 +52758,2245536,67,3389,1 +52759,2245553,7,382,1 +52760,2245560,114,5721,1 +52761,2245569,167,8352,1 +52762,2245572,27,1369,1 +52763,2245578,93,4672,1 +52764,2245682,71,3554,1 +52765,2245920,127,6398,1 +52766,2245980,115,5792,1 +52767,2246001,164,8210,1 +52768,2246028,142,7148,1 +52769,2246884,31,1584,1 +52770,2246892,162,8106,1 +52771,2246892,120,6047,1 +52772,2246904,188,9432,1 +52773,2246904,185,9289,1 +52774,2246945,149,7460,1 +52775,2246964,71,3571,1 +52776,2246965,45,2258,1 +52777,2246988,75,3795,1 +52778,2247084,160,8031,1 +52779,2247360,162,8148,1 +52780,2247360,97,4873,1 +52781,2247360,150,7544,1 +52782,2247360,161,8062,1 +52783,2247361,58,2945,1 +52784,2247362,24,1235,1 +52785,2247369,138,6903,1 +52786,2247369,54,2703,1 +52787,2247372,25,1288,1 +52788,2247372,189,9490,1 +52789,2247372,24,1233,1 +52790,2247372,182,9142,1 +52791,2247372,115,5800,1 +52792,2247375,195,9778,1 +52793,2247376,70,3518,1 +52794,2247379,125,6267,1 +52795,2247381,9,490,1 +52796,2247384,125,6255,1 +52797,2247395,124,6243,1 +52798,2247398,105,5257,1 +52799,2247398,119,5986,1 +52800,2247399,135,6759,1 +52801,2247405,77,3894,1 +52802,2247408,4,224,1 +52803,2247408,83,4197,1 +52804,2247409,100,5004,1 +52805,2247409,77,3894,1 +52806,2247409,31,1599,1 +52807,2247418,23,1166,1 +52808,2247420,8,408,1 +52809,2247420,98,4924,1 +52810,2247420,166,8318,1 +52811,2247422,90,4543,1 +52812,2247432,19,965,1 +52813,2247444,195,9790,1 +52814,2247450,32,1635,1 +52815,2247454,108,5430,1 +52816,2247474,180,9032,1 +52817,2247550,120,6014,1 +52818,2248333,52,2604,1 +52819,2248344,35,1754,1 +52820,2248350,42,2109,1 +52821,2248423,84,4220,1 +52822,2248428,68,3424,1 +52823,2248428,176,8846,1 +52824,2248482,53,2700,1 +52825,2248848,96,4812,1 +52826,2249280,166,8320,1 +52827,2249292,46,2325,1 +52828,2249305,102,5123,1 +52829,2249342,141,7071,1 +52830,2249352,73,3685,1 +52831,2249364,31,1562,1 +52832,2249436,125,6264,1 +52833,2249437,43,2196,1 +52834,2249760,149,7493,1 +52835,2249760,108,5431,1 +52836,2249766,42,2140,1 +52837,2249772,12,634,1 +52838,2249772,113,5670,1 +52839,2249773,20,1015,1 +52840,2249775,111,5597,1 +52841,2249776,11,579,1 +52842,2249784,184,9234,1 +52843,2249784,147,7356,1 +52844,2249796,133,6681,1 +52845,2249797,137,6868,1 +52846,2249798,143,7170,1 +52847,2249820,64,3219,1 +52848,2249827,56,2818,1 +52849,2249833,43,2177,1 +52850,2249844,26,1344,1 +52851,2249847,54,2716,1 +52852,2249849,154,7742,1 +52853,2249854,31,1568,1 +52854,2249886,63,3169,1 +52855,2249909,10,510,1 +52856,2249931,139,6951,1 +52857,2249949,114,5716,1 +52858,2250243,42,2147,1 +52859,2250252,23,1169,1 +52860,2250261,140,7050,1 +52861,2250264,104,5245,1 +52862,2250266,67,3374,1 +52863,2250319,146,7308,1 +52864,2250324,15,786,1 +52865,2250336,87,4388,1 +52866,2250396,134,6722,1 +52867,2250759,152,7607,1 +52868,2251200,36,1816,1 +52869,2251213,152,7611,1 +52870,2251221,34,1731,1 +52871,2251224,187,9388,1 +52872,2251224,6,338,1 +52873,2251224,103,5152,1 +52874,2251224,5,273,1 +52875,2251225,49,2469,1 +52876,2251233,193,9659,1 +52877,2251266,37,1887,1 +52878,2251320,95,4776,1 +52879,2252173,15,762,1 +52880,2252233,195,9754,1 +52881,2252736,164,8235,1 +52882,2252760,165,8292,1 +52883,2253120,17,862,1 +52884,2253120,185,9284,1 +52885,2253132,86,4333,1 +52886,2253132,195,9792,1 +52887,2253133,22,1129,1 +52888,2253133,199,9963,1 +52889,2253134,194,9747,1 +52890,2253135,44,2235,1 +52891,2253138,161,8063,1 +52892,2253144,184,9230,1 +52893,2253150,136,6815,1 +52894,2253156,96,4827,1 +52895,2253165,140,7026,1 +52896,2253180,36,1808,1 +52897,2253181,193,9656,1 +52898,2253183,116,5804,1 +52899,2253187,120,6013,1 +52900,2253189,161,8081,1 +52901,2253613,171,8554,1 +52902,2254560,164,8246,1 +52903,2254560,198,9933,1 +52904,2254560,65,3278,1 +52905,2254563,88,4436,1 +52906,2254565,121,6070,1 +52907,2254572,36,1818,1 +52908,2254574,167,8387,1 +52909,2254584,120,6037,1 +52910,2254584,66,3345,1 +52911,2254584,90,4516,1 +52912,2254587,48,2445,1 +52913,2254596,104,5226,1 +52914,2254602,179,8991,1 +52915,2254608,47,2375,1 +52916,2254608,174,8747,1 +52917,2254611,20,1006,1 +52918,2254613,56,2801,1 +52919,2254620,27,1392,1 +52920,2254632,73,3683,1 +52921,2254632,194,9715,1 +52922,2254633,37,1871,1 +52923,2254638,195,9765,1 +52924,2254644,153,7698,1 +52925,2254658,172,8639,1 +52926,2254668,98,4918,1 +52927,2254705,66,3333,1 +52928,2254710,54,2722,1 +52929,2254821,100,5002,1 +52930,2255521,31,1576,1 +52931,2255535,187,9362,1 +52932,2255544,122,6103,1 +52933,2255595,90,4548,1 +52934,2255604,194,9702,1 +52935,2256012,161,8079,1 +52936,2256480,178,8906,1 +52937,2256480,179,8994,1 +52938,2256480,3,190,1 +52939,2256492,198,9950,1 +52940,2256495,67,3379,1 +52941,2256498,160,8003,1 +52942,2256510,33,1663,1 +52943,2256516,189,9482,1 +52944,2256516,137,6875,1 +52945,2256526,172,8613,1 +52946,2256528,62,3143,1 +52947,2256529,112,5601,1 +52948,2256535,48,2434,1 +52949,2256540,162,8121,1 +52950,2256549,71,3552,1 +52951,2256564,108,5430,1 +52952,2256564,179,8973,1 +52953,2256565,145,7298,1 +52954,2256565,39,1964,1 +52955,2256576,148,7430,1 +52956,2256609,127,6377,1 +52957,2256625,165,8298,1 +52958,2256636,135,6786,1 +52959,2256794,71,3584,1 +52960,2256972,118,5933,1 +52961,2256985,20,1015,1 +52962,2256985,104,5231,1 +52963,2256997,128,6438,1 +52964,2257009,107,5389,1 +52965,2257029,125,6273,1 +52966,2257030,136,6850,1 +52967,2257032,181,9069,1 +52968,2257044,82,4101,1 +52969,2257192,170,8534,1 +52970,2257461,124,6218,1 +52971,2257536,189,9486,1 +52972,2257549,35,1757,1 +52973,2257549,143,7172,1 +52974,2257596,0,43,1 +52975,2257920,59,2988,1 +52976,2257922,11,591,1 +52977,2257932,154,7733,1 +52978,2257945,159,7984,1 +52979,2257945,152,7648,1 +52980,2257970,21,1058,1 +52981,2257993,109,5468,1 +52982,2258004,151,7593,1 +52983,2258064,166,8342,1 +52984,2258066,70,3521,1 +52985,2258436,35,1780,1 +52986,2258896,95,4757,1 +52987,2259840,49,2495,1 +52988,2259843,28,1444,1 +52989,2259884,138,6936,1 +52990,2260320,94,4747,1 +52991,2260341,120,6024,1 +52992,2260344,129,6469,1 +52993,2260344,71,3594,1 +52994,2260344,104,5247,1 +52995,2260347,152,7616,1 +52996,2260356,168,8418,1 +52997,2260364,58,2921,1 +52998,2260368,17,858,1 +52999,2260368,5,297,1 +53000,2260380,146,7303,1 +53001,2260380,114,5707,1 +53002,2260404,101,5099,1 +53003,2260406,11,580,1 +53004,2260454,121,6075,1 +53005,2260605,24,1231,1 +53006,2260800,31,1575,1 +53007,2260800,54,2704,1 +53008,2260800,61,3066,1 +53009,2260800,158,7941,1 +53010,2260801,123,6166,1 +53011,2260803,160,8022,1 +53012,2260803,43,2183,1 +53013,2260803,4,248,1 +53014,2260806,62,3119,1 +53015,2260807,47,2388,1 +53016,2260812,84,4249,1 +53017,2260812,141,7065,1 +53018,2260812,83,4178,1 +53019,2260812,38,1942,1 +53020,2260813,185,9253,1 +53021,2260813,159,7989,1 +53022,2260813,98,4938,1 +53023,2260813,3,153,1 +53024,2260814,128,6434,1 +53025,2260821,16,819,1 +53026,2260824,121,6078,1 +53027,2260824,171,8600,1 +53028,2260827,46,2334,1 +53029,2260830,58,2921,1 +53030,2260836,39,1951,1 +53031,2260836,199,9974,1 +53032,2260837,16,842,1 +53033,2260843,35,1759,1 +53034,2260843,153,7675,1 +53035,2260848,143,7155,1 +53036,2260848,92,4601,1 +53037,2260858,185,9281,1 +53038,2260860,158,7917,1 +53039,2260872,4,211,1 +53040,2260875,23,1156,1 +53041,2260884,141,7092,1 +53042,2260884,139,6967,1 +53043,2260887,99,4957,1 +53044,2260896,166,8304,1 +53045,2260897,48,2425,1 +53046,2260908,37,1881,1 +53047,2260908,108,5403,1 +53048,2260938,157,7880,1 +53049,2260944,25,1261,1 +53050,2260945,3,173,1 +53051,2260959,116,5831,1 +53052,2260969,194,9729,1 +53053,2261037,132,6612,1 +53054,2261293,17,882,1 +53055,2261298,98,4950,1 +53056,2261397,166,8349,1 +53057,2261412,101,5070,1 +53058,2261776,159,7995,1 +53059,2262240,58,2945,1 +53060,2262240,187,9370,1 +53061,2262252,34,1737,1 +53062,2262252,17,851,1 +53063,2262312,37,1868,1 +53064,2262396,105,5270,1 +53065,2262720,178,8925,1 +53066,2262720,49,2451,1 +53067,2262725,33,1659,1 +53068,2262733,155,7756,1 +53069,2262756,190,9512,1 +53070,2263201,78,3941,1 +53071,2263206,79,3975,1 +53072,2263224,136,6836,1 +53073,2263225,58,2933,1 +53074,2263239,115,5762,1 +53075,2263248,63,3182,1 +53076,2263269,136,6837,1 +53077,2263284,2,112,1 +53078,2263315,104,5230,1 +53079,2263707,99,4986,1 +53080,2264169,49,2454,1 +53081,2264184,115,5773,1 +53082,2264184,162,8124,1 +53083,2264280,170,8539,1 +53084,2264643,70,3535,1 +53085,2264646,179,8956,1 +53086,2264646,88,4401,1 +53087,2264652,28,1403,1 +53088,2264653,163,8197,1 +53089,2264656,54,2710,1 +53090,2264658,122,6131,1 +53091,2264661,34,1726,1 +53092,2264668,166,8342,1 +53093,2264671,111,5594,1 +53094,2264688,137,6857,1 +53095,2264688,103,5176,1 +53096,2264700,156,7832,1 +53097,2264723,169,8451,1 +53098,2264724,113,5653,1 +53099,2264745,179,8963,1 +53100,2264895,72,3624,1 +53101,2265132,105,5261,1 +53102,2265133,157,7882,1 +53103,2265600,47,2353,1 +53104,2265600,111,5600,1 +53105,2265600,74,3731,1 +53106,2265607,166,8310,1 +53107,2265613,183,9155,1 +53108,2265630,58,2935,1 +53109,2265645,145,7268,1 +53110,2265655,2,137,1 +53111,2265660,74,3703,1 +53112,2265805,165,8296,1 +53113,2266590,40,2021,1 +53114,2266593,195,9790,1 +53115,2266597,184,9211,1 +53116,2267041,135,6796,1 +53117,2267052,107,5361,1 +53118,2267053,181,9059,1 +53119,2267054,168,8445,1 +53120,2267064,109,5480,1 +53121,2267077,154,7747,1 +53122,2267124,40,2034,1 +53123,2267129,100,5001,1 +53124,2267136,147,7354,1 +53125,2267217,175,8800,1 +53126,2267520,154,7723,1 +53127,2267528,170,8531,1 +53128,2267532,176,8839,1 +53129,2267547,40,2002,1 +53130,2267550,35,1785,1 +53131,2267560,193,9688,1 +53132,2268040,99,4999,1 +53133,2268091,0,17,1 +53134,2268120,194,9730,1 +53135,2268123,140,7042,1 +53136,2268481,82,4116,1 +53137,2268490,70,3514,1 +53138,2268495,158,7911,1 +53139,2268540,130,6503,1 +53140,2268540,149,7456,1 +53141,2268593,72,3640,1 +53142,2268615,153,7692,1 +53143,2268988,155,7780,1 +53144,2269044,124,6248,1 +53145,2269069,97,4872,1 +53146,2269176,167,8394,1 +53147,2269440,125,6281,1 +53148,2269452,111,5588,1 +53149,2269460,45,2300,1 +53150,2269467,27,1364,1 +53151,2269468,171,8578,1 +53152,2269470,22,1131,1 +53153,2269477,22,1127,1 +53154,2269500,67,3374,1 +53155,2269525,18,932,1 +53156,2269933,14,706,1 +53157,2269968,74,3719,1 +53158,2269971,107,5373,1 +53159,2270004,153,7692,1 +53160,2270401,170,8546,1 +53161,2270406,101,5100,1 +53162,2270412,174,8745,1 +53163,2270436,139,6988,1 +53164,2270445,99,4980,1 +53165,2270460,171,8563,1 +53166,2270482,11,552,1 +53167,2270553,31,1591,1 +53168,2270702,152,7639,1 +53169,2271396,137,6890,1 +53170,2271408,191,9586,1 +53171,2271456,163,8168,1 +53172,2271853,95,4770,1 +53173,2271864,174,8718,1 +53174,2271886,125,6295,1 +53175,2271888,85,4290,1 +53176,2271954,50,2533,1 +53177,2272320,74,3720,1 +53178,2272933,76,3808,1 +53179,2273280,137,6896,1 +53180,2273304,91,4574,1 +53181,2273313,32,1629,1 +53182,2273328,83,4188,1 +53183,2273328,136,6822,1 +53184,2273364,18,947,1 +53185,2273368,30,1533,1 +53186,2273388,141,7075,1 +53187,2273405,103,5165,1 +53188,2273772,16,826,1 +53189,2273782,47,2355,1 +53190,2273784,151,7589,1 +53191,2273785,121,6056,1 +53192,2273821,67,3390,1 +53193,2273859,49,2476,1 +53194,2273898,186,9323,1 +53195,2274243,140,7009,1 +53196,2274257,34,1747,1 +53197,2274267,71,3566,1 +53198,2274398,110,5533,1 +53199,2274744,82,4141,1 +53200,2274801,92,4650,1 +53201,2274840,72,3613,1 +53202,2275225,111,5581,1 +53203,2275260,112,5603,1 +53204,2276160,136,6808,1 +53205,2276160,178,8941,1 +53206,2276161,43,2172,1 +53207,2276169,102,5143,1 +53208,2276172,151,7586,1 +53209,2276172,50,2527,1 +53210,2276172,155,7752,1 +53211,2276172,30,1505,1 +53212,2276175,189,9486,1 +53213,2276175,92,4627,1 +53214,2276184,83,4190,1 +53215,2276184,30,1507,1 +53216,2276184,55,2761,1 +53217,2276185,147,7389,1 +53218,2276185,33,1691,1 +53219,2276186,61,3089,1 +53220,2276190,5,285,1 +53221,2276193,160,8012,1 +53222,2276196,65,3252,1 +53223,2276200,197,9882,1 +53224,2276211,161,8069,1 +53225,2276211,189,9472,1 +53226,2276214,98,4922,1 +53227,2276220,165,8299,1 +53228,2276229,172,8624,1 +53229,2276246,88,4432,1 +53230,2276247,23,1152,1 +53231,2276260,134,6705,1 +53232,2276265,7,398,1 +53233,2276270,137,6882,1 +53234,2276271,115,5795,1 +53235,2276279,176,8810,1 +53236,2276281,129,6493,1 +53237,2276308,176,8825,1 +53238,2276318,74,3725,1 +53239,2276331,87,4357,1 +53240,2276367,83,4178,1 +53241,2276640,145,7255,1 +53242,2276642,187,9363,1 +53243,2276652,122,6112,1 +53244,2276652,104,5247,1 +53245,2276665,80,4015,1 +53246,2277132,172,8636,1 +53247,2277132,46,2342,1 +53248,2277132,112,5629,1 +53249,2277135,191,9554,1 +53250,2277144,198,9910,1 +53251,2277157,115,5759,1 +53252,2277166,189,9453,1 +53253,2277168,52,2604,1 +53254,2277168,100,5033,1 +53255,2277176,120,6013,1 +53256,2277182,58,2932,1 +53257,2277229,13,671,1 +53258,2277294,166,8342,1 +53259,2277601,188,9415,1 +53260,2277612,115,5793,1 +53261,2277663,102,5146,1 +53262,2277672,85,4256,1 +53263,2277760,164,8248,1 +53264,2278080,171,8574,1 +53265,2278080,70,3530,1 +53266,2278083,90,4529,1 +53267,2278086,107,5394,1 +53268,2278092,65,3279,1 +53269,2278093,18,931,1 +53270,2278102,123,6162,1 +53271,2278104,188,9449,1 +53272,2278110,111,5600,1 +53273,2278116,161,8087,1 +53274,2278116,5,297,1 +53275,2278117,130,6507,1 +53276,2278119,51,2556,1 +53277,2278128,73,3673,1 +53278,2278128,68,3414,1 +53279,2278128,1,84,1 +53280,2278128,143,7169,1 +53281,2278174,105,5294,1 +53282,2278181,50,2513,1 +53283,2278190,74,3732,1 +53284,2278620,154,7750,1 +53285,2279040,168,8411,1 +53286,2279040,182,9118,1 +53287,2279041,120,6013,1 +53288,2279044,150,7512,1 +53289,2279052,176,8829,1 +53290,2279052,66,3314,1 +53291,2279058,140,7028,1 +53292,2279064,68,3447,1 +53293,2279076,154,7737,1 +53294,2279076,173,8700,1 +53295,2279077,10,538,1 +53296,2279088,108,5444,1 +53297,2279103,17,899,1 +53298,2279105,42,2142,1 +53299,2279150,90,4525,1 +53300,2279160,21,1052,1 +53301,2279521,113,5654,1 +53302,2279526,168,8434,1 +53303,2279595,154,7728,1 +53304,2279631,82,4136,1 +53305,2279635,126,6346,1 +53306,2279638,180,9047,1 +53307,2279649,182,9135,1 +53308,2280480,115,5771,1 +53309,2280480,90,4528,1 +53310,2280480,49,2485,1 +53311,2280480,117,5895,1 +53312,2280480,114,5741,1 +53313,2280483,113,5652,1 +53314,2280483,115,5765,1 +53315,2280486,88,4415,1 +53316,2280490,87,4395,1 +53317,2280492,147,7368,1 +53318,2280492,189,9473,1 +53319,2280492,63,3163,1 +53320,2280493,75,3755,1 +53321,2280493,27,1378,1 +53322,2280494,147,7400,1 +53323,2280499,176,8815,1 +53324,2280499,94,4714,1 +53325,2280504,172,8631,1 +53326,2280504,116,5839,1 +53327,2280504,95,4756,1 +53328,2280505,185,9282,1 +53329,2280505,113,5662,1 +53330,2280515,63,3174,1 +53331,2280516,11,572,1 +53332,2280519,64,3243,1 +53333,2280529,98,4948,1 +53334,2280534,16,801,1 +53335,2280541,91,4578,1 +53336,2280543,52,2632,1 +53337,2280555,198,9910,1 +53338,2280565,85,4263,1 +53339,2280579,187,9357,1 +53340,2280580,22,1147,1 +53341,2280588,139,6995,1 +53342,2280595,119,5981,1 +53343,2280603,17,887,1 +53344,2280613,22,1116,1 +53345,2280613,117,5867,1 +53346,2280637,171,8561,1 +53347,2280648,166,8346,1 +53348,2280663,153,7677,1 +53349,2280720,118,5943,1 +53350,2281104,20,1026,1 +53351,2281440,131,6593,1 +53352,2281440,92,4621,1 +53353,2281440,25,1261,1 +53354,2281441,2,138,1 +53355,2281441,163,8160,1 +53356,2281452,111,5590,1 +53357,2281452,35,1798,1 +53358,2281452,75,3784,1 +53359,2281452,16,818,1 +53360,2281453,131,6591,1 +53361,2281455,78,3937,1 +53362,2281460,107,5389,1 +53363,2281476,187,9399,1 +53364,2281479,194,9723,1 +53365,2281488,28,1410,1 +53366,2281488,121,6090,1 +53367,2281500,115,5797,1 +53368,2281501,25,1264,1 +53369,2281502,33,1652,1 +53370,2281518,187,9371,1 +53371,2281524,193,9683,1 +53372,2281548,89,4457,1 +53373,2281549,192,9637,1 +53374,2281573,12,629,1 +53375,2281598,88,4429,1 +53376,2281669,57,2859,1 +53377,2281692,124,6212,1 +53378,2281932,103,5151,1 +53379,2282400,173,8686,1 +53380,2282400,6,336,1 +53381,2282402,20,1033,1 +53382,2282403,144,7215,1 +53383,2282404,193,9670,1 +53384,2282406,154,7701,1 +53385,2282407,173,8677,1 +53386,2282412,123,6166,1 +53387,2282412,53,2689,1 +53388,2282412,10,532,1 +53389,2282413,162,8136,1 +53390,2282424,1,94,1 +53391,2282424,179,8954,1 +53392,2282424,154,7729,1 +53393,2282426,11,551,1 +53394,2282427,12,603,1 +53395,2282427,16,820,1 +53396,2282430,134,6724,1 +53397,2282433,124,6250,1 +53398,2282436,133,6661,1 +53399,2282436,46,2330,1 +53400,2282436,108,5412,1 +53401,2282437,4,232,1 +53402,2282438,55,2781,1 +53403,2282445,4,238,1 +53404,2282446,198,9917,1 +53405,2282448,95,4780,1 +53406,2282449,106,5336,1 +53407,2282449,91,4598,1 +53408,2282451,175,8760,1 +53409,2282460,176,8829,1 +53410,2282460,86,4311,1 +53411,2282460,65,3258,1 +53412,2282464,84,4231,1 +53413,2282473,126,6323,1 +53414,2282473,130,6532,1 +53415,2282475,196,9815,1 +53416,2282477,193,9663,1 +53417,2282487,197,9870,1 +53418,2282496,186,9320,1 +53419,2282508,100,5018,1 +53420,2282509,97,4851,1 +53421,2282518,66,3332,1 +53422,2282526,51,2556,1 +53423,2282526,109,5471,1 +53424,2282536,185,9289,1 +53425,2282538,131,6586,1 +53426,2282538,161,8063,1 +53427,2282544,40,2039,1 +53428,2282557,54,2712,1 +53429,2282559,137,6855,1 +53430,2282592,131,6569,1 +53431,2282593,12,602,1 +53432,2282604,14,738,1 +53433,2282880,124,6235,1 +53434,2282880,147,7388,1 +53435,2282893,72,3617,1 +53436,2282904,126,6332,1 +53437,2282916,56,2843,1 +53438,2282919,67,3370,1 +53439,2282919,88,4429,1 +53440,2282929,148,7428,1 +53441,2283011,23,1185,1 +53442,2283962,24,1229,1 +53443,2284320,184,9211,1 +53444,2284320,108,5420,1 +53445,2284320,96,4846,1 +53446,2284320,101,5093,1 +53447,2284320,64,3213,1 +53448,2284321,65,3254,1 +53449,2284321,38,1907,1 +53450,2284322,153,7685,1 +53451,2284323,124,6217,1 +53452,2284323,81,4098,1 +53453,2284323,185,9291,1 +53454,2284323,167,8361,1 +53455,2284323,196,9849,1 +53456,2284324,135,6764,1 +53457,2284326,168,8412,1 +53458,2284329,129,6451,1 +53459,2284332,24,1226,1 +53460,2284332,71,3577,1 +53461,2284332,3,186,1 +53462,2284332,54,2714,1 +53463,2284333,127,6360,1 +53464,2284333,92,4641,1 +53465,2284333,25,1282,1 +53466,2284335,190,9529,1 +53467,2284336,11,570,1 +53468,2284338,174,8730,1 +53469,2284338,156,7830,1 +53470,2284342,13,682,1 +53471,2284344,49,2458,1 +53472,2284344,60,3028,1 +53473,2284344,23,1189,1 +53474,2284344,24,1210,1 +53475,2284344,164,8243,1 +53476,2284344,172,8630,1 +53477,2284344,21,1080,1 +53478,2284344,87,4382,1 +53479,2284345,135,6751,1 +53480,2284346,131,6563,1 +53481,2284347,173,8657,1 +53482,2284348,136,6848,1 +53483,2284350,23,1190,1 +53484,2284350,61,3061,1 +53485,2284351,12,605,1 +53486,2284351,184,9227,1 +53487,2284354,1,59,1 +53488,2284355,193,9673,1 +53489,2284356,195,9761,1 +53490,2284359,108,5411,1 +53491,2284359,115,5771,1 +53492,2284360,159,8000,1 +53493,2284368,112,5634,1 +53494,2284368,44,2209,1 +53495,2284369,24,1214,1 +53496,2284369,179,8960,1 +53497,2284369,141,7091,1 +53498,2284371,119,5994,1 +53499,2284371,17,883,1 +53500,2284372,82,4114,1 +53501,2284378,12,620,1 +53502,2284380,191,9577,1 +53503,2284380,198,9906,1 +53504,2284386,58,2918,1 +53505,2284386,1,79,1 +53506,2284389,138,6941,1 +53507,2284389,85,4267,1 +53508,2284390,54,2721,1 +53509,2284392,31,1558,1 +53510,2284392,139,6976,1 +53511,2284392,63,3153,1 +53512,2284393,133,6676,1 +53513,2284397,191,9558,1 +53514,2284397,101,5094,1 +53515,2284404,63,3162,1 +53516,2284404,129,6491,1 +53517,2284405,100,5042,1 +53518,2284405,178,8908,1 +53519,2284410,61,3061,1 +53520,2284416,61,3097,1 +53521,2284416,101,5059,1 +53522,2284428,175,8759,1 +53523,2284428,33,1676,1 +53524,2284429,114,5703,1 +53525,2284438,113,5685,1 +53526,2284440,48,2417,1 +53527,2284440,135,6774,1 +53528,2284443,43,2176,1 +53529,2284443,18,919,1 +53530,2284458,50,2510,1 +53531,2284464,141,7062,1 +53532,2284492,43,2186,1 +53533,2284500,141,7079,1 +53534,2284537,51,2588,1 +53535,2284830,89,4471,1 +53536,2284862,10,530,1 +53537,2284932,133,6697,1 +53538,2285280,10,525,1 +53539,2285280,181,9058,1 +53540,2285342,131,6591,1 +53541,2285399,33,1662,1 +53542,2285784,57,2867,1 +53543,2285832,71,3595,1 +53544,2285923,55,2760,1 +53545,2285953,152,7607,1 +53546,2285967,28,1405,1 +53547,2286253,25,1270,1 +53548,2286257,5,295,1 +53549,2286300,95,4782,1 +53550,2286312,170,8520,1 +53551,2286316,54,2734,1 +53552,2286720,43,2157,1 +53553,2286721,8,444,1 +53554,2286723,160,8028,1 +53555,2286744,156,7848,1 +53556,2286754,106,5304,1 +53557,2286768,37,1864,1 +53558,2286780,136,6821,1 +53559,2286804,73,3697,1 +53560,2286828,100,5010,1 +53561,2286830,167,8386,1 +53562,2286834,16,803,1 +53563,2286867,184,9225,1 +53564,2286871,157,7891,1 +53565,2287200,94,4725,1 +53566,2287200,72,3614,1 +53567,2287203,84,4205,1 +53568,2287226,56,2809,1 +53569,2287227,118,5925,1 +53570,2287297,190,9506,1 +53571,2287716,157,7898,1 +53572,2288161,187,9380,1 +53573,2288181,73,3681,1 +53574,2288226,130,6529,1 +53575,2288640,4,208,1 +53576,2288677,113,5664,1 +53577,2288679,103,5179,1 +53578,2288689,69,3459,1 +53579,2288712,178,8913,1 +53580,2288712,46,2333,1 +53581,2288749,103,5155,1 +53582,2288767,57,2851,1 +53583,2289120,99,4968,1 +53584,2289120,7,392,1 +53585,2289120,167,8389,1 +53586,2289123,198,9932,1 +53587,2289123,94,4745,1 +53588,2289124,48,2433,1 +53589,2289126,170,8516,1 +53590,2289126,58,2944,1 +53591,2289128,11,577,1 +53592,2289132,178,8934,1 +53593,2289133,64,3203,1 +53594,2289133,68,3430,1 +53595,2289134,13,699,1 +53596,2289135,185,9251,1 +53597,2289136,46,2344,1 +53598,2289141,30,1528,1 +53599,2289141,32,1643,1 +53600,2289144,177,8851,1 +53601,2289145,193,9693,1 +53602,2289146,145,7254,1 +53603,2289157,162,8138,1 +53604,2289159,6,314,1 +53605,2289162,141,7100,1 +53606,2289166,133,6673,1 +53607,2289168,186,9340,1 +53608,2289169,142,7148,1 +53609,2289172,199,9968,1 +53610,2289174,68,3438,1 +53611,2289183,186,9339,1 +53612,2289192,104,5238,1 +53613,2289205,1,69,1 +53614,2289218,53,2668,1 +53615,2289231,15,783,1 +53616,2289244,86,4348,1 +53617,2289280,64,3238,1 +53618,2289292,115,5775,1 +53619,2290125,143,7151,1 +53620,2290572,99,4961,1 +53621,2290584,85,4292,1 +53622,2290584,3,184,1 +53623,2290608,194,9716,1 +53624,2290621,138,6919,1 +53625,2291040,40,2028,1 +53626,2291040,110,5503,1 +53627,2291042,121,6075,1 +53628,2291076,172,8643,1 +53629,2291077,42,2111,1 +53630,2291088,31,1595,1 +53631,2291101,133,6700,1 +53632,2291124,192,9609,1 +53633,2291585,91,4558,1 +53634,2291673,83,4198,1 +53635,2292564,108,5429,1 +53636,2292960,126,6315,1 +53637,2292961,142,7106,1 +53638,2292962,14,748,1 +53639,2292962,192,9628,1 +53640,2292964,112,5629,1 +53641,2292972,169,8481,1 +53642,2292972,33,1684,1 +53643,2292972,145,7269,1 +53644,2292984,196,9839,1 +53645,2292984,117,5872,1 +53646,2292984,35,1751,1 +53647,2292985,97,4869,1 +53648,2292985,21,1090,1 +53649,2292991,121,6084,1 +53650,2292993,144,7246,1 +53651,2292996,69,3495,1 +53652,2292996,87,4374,1 +53653,2293005,10,508,1 +53654,2293010,61,3080,1 +53655,2293012,96,4829,1 +53656,2293020,17,895,1 +53657,2293034,174,8726,1 +53658,2293035,6,323,1 +53659,2293050,145,7295,1 +53660,2293056,21,1063,1 +53661,2293068,42,2140,1 +53662,2293141,118,5911,1 +53663,2293442,54,2716,1 +53664,2293451,145,7277,1 +53665,2293452,149,7474,1 +53666,2293464,14,737,1 +53667,2293465,106,5349,1 +53668,2293665,2,129,1 +53669,2293922,97,4875,1 +53670,2293923,160,8004,1 +53671,2293938,7,369,1 +53672,2293944,174,8703,1 +53673,2293944,188,9419,1 +53674,2293944,100,5007,1 +53675,2293945,136,6808,1 +53676,2293968,76,3834,1 +53677,2293969,105,5286,1 +53678,2294010,81,4099,1 +53679,2294077,25,1260,1 +53680,2294400,65,3293,1 +53681,2294412,174,8719,1 +53682,2294425,186,9320,1 +53683,2294432,89,4452,1 +53684,2294444,151,7557,1 +53685,2294448,62,3116,1 +53686,2294457,119,5986,1 +53687,2294493,119,5997,1 +53688,2294496,1,65,1 +53689,2294539,165,8267,1 +53690,2294904,192,9647,1 +53691,2294961,167,8367,1 +53692,2295360,61,3096,1 +53693,2295372,94,4734,1 +53694,2295373,135,6783,1 +53695,2295384,64,3202,1 +53696,2295397,161,8055,1 +53697,2295408,36,1848,1 +53698,2295411,107,5392,1 +53699,2295417,156,7813,1 +53700,2295420,48,2419,1 +53701,2295422,31,1563,1 +53702,2295444,199,9966,1 +53703,2295840,73,3662,1 +53704,2295840,100,5030,1 +53705,2295852,130,6520,1 +53706,2295864,21,1051,1 +53707,2295864,167,8364,1 +53708,2295876,17,851,1 +53709,2295889,166,8317,1 +53710,2295933,66,3332,1 +53711,2295936,64,3224,1 +53712,2295957,61,3062,1 +53713,2295963,145,7282,1 +53714,2296320,13,657,1 +53715,2296345,167,8374,1 +53716,2296352,160,8038,1 +53717,2296356,117,5867,1 +53718,2296366,141,7090,1 +53719,2296368,37,1891,1 +53720,2296369,116,5822,1 +53721,2296383,67,3364,1 +53722,2296416,192,9636,1 +53723,2296470,99,4956,1 +53724,2296800,167,8399,1 +53725,2296803,57,2863,1 +53726,2296803,104,5231,1 +53727,2296804,14,730,1 +53728,2296812,16,821,1 +53729,2296813,36,1815,1 +53730,2296823,121,6074,1 +53731,2296824,97,4895,1 +53732,2296824,92,4608,1 +53733,2296824,96,4802,1 +53734,2296826,34,1716,1 +53735,2296840,75,3796,1 +53736,2296851,170,8535,1 +53737,2296860,32,1626,1 +53738,2296860,177,8863,1 +53739,2296870,107,5390,1 +53740,2296884,126,6333,1 +53741,2296884,120,6048,1 +53742,2296890,45,2259,1 +53743,2296908,149,7459,1 +53744,2296915,92,4629,1 +53745,2296917,104,5210,1 +53746,2297280,45,2271,1 +53747,2297281,105,5281,1 +53748,2297282,164,8214,1 +53749,2297292,62,3111,1 +53750,2297292,152,7627,1 +53751,2297293,80,4038,1 +53752,2297304,161,8056,1 +53753,2297340,112,5610,1 +53754,2297352,54,2704,1 +53755,2297353,143,7154,1 +53756,2297364,32,1618,1 +53757,2297425,102,5126,1 +53758,2297460,61,3051,1 +53759,2297553,33,1690,1 +53760,2297818,53,2667,1 +53761,2298240,188,9401,1 +53762,2298240,189,9481,1 +53763,2298240,125,6271,1 +53764,2298240,13,661,1 +53765,2298241,111,5590,1 +53766,2298244,92,4604,1 +53767,2298246,134,6724,1 +53768,2298252,9,478,1 +53769,2298252,75,3764,1 +53770,2298253,155,7773,1 +53771,2298255,4,235,1 +53772,2298259,30,1523,1 +53773,2298264,143,7185,1 +53774,2298268,172,8607,1 +53775,2298269,80,4031,1 +53776,2298274,14,740,1 +53777,2298276,185,9260,1 +53778,2298276,170,8512,1 +53779,2298276,105,5284,1 +53780,2298276,179,8956,1 +53781,2298276,127,6361,1 +53782,2298276,16,834,1 +53783,2298277,173,8671,1 +53784,2298279,169,8473,1 +53785,2298282,23,1163,1 +53786,2298288,197,9870,1 +53787,2298288,122,6143,1 +53788,2298289,105,5295,1 +53789,2298292,78,3901,1 +53790,2298300,199,9997,1 +53791,2298306,120,6002,1 +53792,2298309,16,814,1 +53793,2298310,165,8257,1 +53794,2298312,102,5139,1 +53795,2298313,166,8315,1 +53796,2298313,138,6915,1 +53797,2298313,153,7678,1 +53798,2298324,172,8618,1 +53799,2298336,169,8500,1 +53800,2298336,96,4828,1 +53801,2298358,118,5934,1 +53802,2298372,4,229,1 +53803,2298378,105,5267,1 +53804,2298385,113,5661,1 +53805,2298399,138,6919,1 +53806,2298420,93,4653,1 +53807,2298722,113,5676,1 +53808,2298732,77,3869,1 +53809,2298769,33,1675,1 +53810,2299201,78,3941,1 +53811,2299201,140,7005,1 +53812,2299212,31,1557,1 +53813,2299230,29,1480,1 +53814,2299233,74,3732,1 +53815,2299260,86,4331,1 +53816,2299262,195,9764,1 +53817,2299263,185,9298,1 +53818,2299284,125,6272,1 +53819,2299284,145,7295,1 +53820,2299298,166,8305,1 +53821,2300160,39,1991,1 +53822,2300172,170,8510,1 +53823,2300197,64,3220,1 +53824,2300640,45,2280,1 +53825,2300678,176,8805,1 +53826,2300679,151,7558,1 +53827,2300724,84,4203,1 +53828,2300724,101,5097,1 +53829,2300742,114,5725,1 +53830,2301160,181,9069,1 +53831,2301264,87,4377,1 +53832,2301600,72,3602,1 +53833,2301603,113,5651,1 +53834,2301612,147,7388,1 +53835,2301612,29,1475,1 +53836,2301612,18,905,1 +53837,2301612,166,8309,1 +53838,2301612,44,2247,1 +53839,2301613,166,8313,1 +53840,2301618,188,9432,1 +53841,2301624,118,5918,1 +53842,2301624,185,9269,1 +53843,2301626,26,1342,1 +53844,2301636,29,1455,1 +53845,2301637,59,2973,1 +53846,2301637,59,2956,1 +53847,2301639,110,5529,1 +53848,2301643,198,9906,1 +53849,2301644,186,9307,1 +53850,2301645,44,2224,1 +53851,2301650,147,7395,1 +53852,2301651,167,8361,1 +53853,2301660,106,5320,1 +53854,2301661,23,1152,1 +53855,2301663,106,5348,1 +53856,2301669,186,9324,1 +53857,2301672,138,6940,1 +53858,2301675,57,2897,1 +53859,2301677,19,990,1 +53860,2301690,175,8783,1 +53861,2301696,71,3557,1 +53862,2301703,53,2692,1 +53863,2301732,186,9306,1 +53864,2301744,27,1386,1 +53865,2301782,135,6796,1 +53866,2302221,63,3179,1 +53867,2302620,50,2549,1 +53868,2303040,48,2443,1 +53869,2303076,12,609,1 +53870,2303125,59,2965,1 +53871,2303263,112,5608,1 +53872,2303532,74,3724,1 +53873,2303532,139,7000,1 +53874,2303535,45,2252,1 +53875,2303548,166,8309,1 +53876,2303556,85,4283,1 +53877,2303556,69,3464,1 +53878,2303571,58,2949,1 +53879,2303571,50,2520,1 +53880,2303604,59,2975,1 +53881,2303617,22,1148,1 +53882,2304000,58,2942,1 +53883,2304000,179,8997,1 +53884,2304000,173,8699,1 +53885,2304000,106,5337,1 +53886,2304000,86,4310,1 +53887,2304001,19,953,1 +53888,2304001,82,4148,1 +53889,2304001,65,3293,1 +53890,2304001,103,5153,1 +53891,2304002,80,4013,1 +53892,2304002,149,7469,1 +53893,2304003,69,3462,1 +53894,2304003,162,8120,1 +53895,2304004,31,1588,1 +53896,2304004,138,6927,1 +53897,2304005,2,111,1 +53898,2304006,81,4057,1 +53899,2304006,38,1949,1 +53900,2304010,182,9143,1 +53901,2304012,14,716,1 +53902,2304012,127,6357,1 +53903,2304012,60,3021,1 +53904,2304012,128,6442,1 +53905,2304012,89,4452,1 +53906,2304012,141,7058,1 +53907,2304012,184,9210,1 +53908,2304012,51,2591,1 +53909,2304012,95,4753,1 +53910,2304012,190,9516,1 +53911,2304012,157,7857,1 +53912,2304013,17,886,1 +53913,2304014,150,7535,1 +53914,2304015,70,3518,1 +53915,2304016,101,5063,1 +53916,2304017,52,2634,1 +53917,2304018,100,5026,1 +53918,2304018,40,2018,1 +53919,2304019,29,1451,1 +53920,2304021,94,4713,1 +53921,2304021,158,7940,1 +53922,2304021,118,5924,1 +53923,2304024,192,9627,1 +53924,2304024,187,9380,1 +53925,2304024,95,4785,1 +53926,2304024,50,2532,1 +53927,2304025,197,9871,1 +53928,2304025,139,6951,1 +53929,2304027,139,6954,1 +53930,2304027,156,7850,1 +53931,2304029,129,6459,1 +53932,2304030,169,8475,1 +53933,2304030,70,3502,1 +53934,2304036,121,6070,1 +53935,2304036,14,732,1 +53936,2304036,23,1151,1 +53937,2304036,176,8805,1 +53938,2304037,195,9791,1 +53939,2304037,94,4749,1 +53940,2304038,137,6856,1 +53941,2304045,91,4587,1 +53942,2304045,16,803,1 +53943,2304048,144,7244,1 +53944,2304048,57,2898,1 +53945,2304048,171,8571,1 +53946,2304049,185,9269,1 +53947,2304052,185,9279,1 +53948,2304056,160,8037,1 +53949,2304058,99,4953,1 +53950,2304060,174,8745,1 +53951,2304060,135,6777,1 +53952,2304060,138,6902,1 +53953,2304060,180,9009,1 +53954,2304060,124,6235,1 +53955,2304066,139,6977,1 +53956,2304066,14,706,1 +53957,2304072,2,126,1 +53958,2304072,179,8956,1 +53959,2304072,183,9192,1 +53960,2304072,77,3861,1 +53961,2304072,137,6860,1 +53962,2304075,130,6521,1 +53963,2304075,53,2678,1 +53964,2304078,137,6851,1 +53965,2304078,180,9003,1 +53966,2304081,149,7464,1 +53967,2304081,171,8554,1 +53968,2304081,70,3550,1 +53969,2304084,129,6452,1 +53970,2304084,114,5730,1 +53971,2304084,57,2897,1 +53972,2304096,38,1937,1 +53973,2304096,176,8818,1 +53974,2304099,17,865,1 +53975,2304105,36,1801,1 +53976,2304105,57,2870,1 +53977,2304107,118,5929,1 +53978,2304110,177,8874,1 +53979,2304117,15,763,1 +53980,2304120,145,7289,1 +53981,2304126,6,325,1 +53982,2304132,31,1567,1 +53983,2304132,57,2851,1 +53984,2304153,17,883,1 +53985,2304168,11,579,1 +53986,2304169,14,704,1 +53987,2304181,55,2756,1 +53988,2304181,64,3209,1 +53989,2304192,67,3359,1 +53990,2304222,71,3598,1 +53991,2304480,102,5149,1 +53992,2304483,166,8305,1 +53993,2304489,80,4004,1 +53994,2304492,136,6824,1 +53995,2304501,165,8289,1 +53996,2304506,170,8542,1 +53997,2304510,30,1515,1 +53998,2304518,31,1576,1 +53999,2304530,70,3513,1 +54000,2304540,55,2787,1 +54001,2304554,39,1952,1 +54002,2304564,23,1190,1 +54003,2304567,24,1223,1 +54004,2304693,61,3089,1 +54005,2304973,5,294,1 +54006,2304985,3,186,1 +54007,2305021,48,2423,1 +54008,2305440,163,8191,1 +54009,2305441,49,2498,1 +54010,2305442,46,2332,1 +54011,2305446,104,5206,1 +54012,2305446,114,5724,1 +54013,2305453,181,9067,1 +54014,2305457,104,5212,1 +54015,2305458,104,5215,1 +54016,2305465,116,5831,1 +54017,2305470,35,1753,1 +54018,2305479,50,2549,1 +54019,2305479,74,3706,1 +54020,2305479,180,9029,1 +54021,2305483,10,536,1 +54022,2305488,18,916,1 +54023,2305533,11,567,1 +54024,2305542,14,743,1 +54025,2305668,7,394,1 +54026,2305939,153,7676,1 +54027,2305945,117,5890,1 +54028,2305951,190,9504,1 +54029,2305968,161,8091,1 +54030,2306005,111,5582,1 +54031,2306016,6,340,1 +54032,2306028,61,3074,1 +54033,2306040,10,515,1 +54034,2306460,151,7593,1 +54035,2306523,190,9546,1 +54036,2306880,5,279,1 +54037,2306893,135,6800,1 +54038,2306895,33,1670,1 +54039,2306908,111,5587,1 +54040,2306920,184,9228,1 +54041,2306959,89,4492,1 +54042,2307015,87,4366,1 +54043,2307372,94,4740,1 +54044,2307384,155,7798,1 +54045,2307386,46,2326,1 +54046,2307408,47,2392,1 +54047,2307577,26,1310,1 +54048,2307859,170,8533,1 +54049,2307883,195,9773,1 +54050,2308131,52,2602,1 +54051,2308336,68,3418,1 +54052,2308345,10,503,1 +54053,2308347,172,8607,1 +54054,2308368,189,9487,1 +54055,2308380,74,3704,1 +54056,2308381,66,3314,1 +54057,2308407,3,154,1 +54058,2308467,104,5228,1 +54059,2308800,143,7185,1 +54060,2308801,7,377,1 +54061,2308809,55,2788,1 +54062,2308812,140,7003,1 +54063,2308833,39,1966,1 +54064,2308836,108,5411,1 +54065,2308837,24,1240,1 +54066,2308860,45,2266,1 +54067,2308872,17,897,1 +54068,2308899,149,7492,1 +54069,2308932,90,4535,1 +54070,2309356,191,9593,1 +54071,2309475,24,1227,1 +54072,2309761,162,8129,1 +54073,2309763,114,5740,1 +54074,2309767,115,5775,1 +54075,2309772,108,5438,1 +54076,2309880,23,1171,1 +54077,2309880,21,1084,1 +54078,2309892,178,8948,1 +54079,2310240,67,3391,1 +54080,2310240,177,8882,1 +54081,2310249,25,1293,1 +54082,2310265,55,2758,1 +54083,2310279,155,7800,1 +54084,2310498,149,7483,1 +54085,2310729,187,9364,1 +54086,2310732,190,9503,1 +54087,2310736,96,4847,1 +54088,2310745,103,5172,1 +54089,2310756,55,2797,1 +54090,2310756,74,3748,1 +54091,2310763,162,8130,1 +54092,2310780,167,8367,1 +54093,2310865,194,9745,1 +54094,2310865,40,2046,1 +54095,2311206,194,9739,1 +54096,2311680,130,6519,1 +54097,2311696,140,7011,1 +54098,2311728,186,9332,1 +54099,2311813,143,7186,1 +54100,2312641,40,2036,1 +54101,2312646,143,7169,1 +54102,2312652,115,5762,1 +54103,2312652,185,9300,1 +54104,2312676,69,3483,1 +54105,2312700,135,6776,1 +54106,2312700,190,9523,1 +54107,2312701,80,4011,1 +54108,2313624,12,624,1 +54109,2313660,119,5965,1 +54110,2314080,99,4961,1 +54111,2314080,120,6017,1 +54112,2314080,100,5030,1 +54113,2314080,60,3007,1 +54114,2314080,63,3174,1 +54115,2314080,131,6562,1 +54116,2314081,14,703,1 +54117,2314081,157,7866,1 +54118,2314083,163,8184,1 +54119,2314086,158,7938,1 +54120,2314088,11,572,1 +54121,2314090,154,7721,1 +54122,2314092,84,4203,1 +54123,2314092,0,23,1 +54124,2314092,131,6560,1 +54125,2314092,93,4655,1 +54126,2314092,33,1678,1 +54127,2314092,71,3592,1 +54128,2314093,72,3612,1 +54129,2314094,145,7263,1 +54130,2314094,147,7374,1 +54131,2314095,26,1340,1 +54132,2314096,74,3743,1 +54133,2314096,195,9791,1 +54134,2314102,3,190,1 +54135,2314104,101,5090,1 +54136,2314105,189,9457,1 +54137,2314105,134,6716,1 +54138,2314106,13,684,1 +54139,2314111,60,3006,1 +54140,2314112,28,1401,1 +54141,2314113,46,2339,1 +54142,2314113,82,4128,1 +54143,2314116,76,3805,1 +54144,2314116,23,1175,1 +54145,2314116,106,5312,1 +54146,2314117,28,1407,1 +54147,2314119,10,547,1 +54148,2314120,59,2977,1 +54149,2314120,125,6289,1 +54150,2314122,52,2632,1 +54151,2314126,117,5893,1 +54152,2314128,85,4269,1 +54153,2314129,37,1870,1 +54154,2314132,85,4264,1 +54155,2314140,199,9973,1 +54156,2314140,53,2659,1 +54157,2314140,45,2285,1 +54158,2314141,137,6882,1 +54159,2314141,92,4630,1 +54160,2314142,141,7086,1 +54161,2314152,47,2400,1 +54162,2314154,71,3591,1 +54163,2314164,112,5613,1 +54164,2314164,10,530,1 +54165,2314164,121,6086,1 +54166,2314170,156,7842,1 +54167,2314170,66,3322,1 +54168,2314176,45,2294,1 +54169,2314179,56,2845,1 +54170,2314180,58,2911,1 +54171,2314180,164,8219,1 +54172,2314188,91,4590,1 +54173,2314189,155,7776,1 +54174,2314224,48,2429,1 +54175,2314226,77,3869,1 +54176,2314227,143,7151,1 +54177,2314260,21,1085,1 +54178,2314344,197,9852,1 +54179,2315040,54,2738,1 +54180,2315041,110,5502,1 +54181,2315041,43,2156,1 +54182,2315052,109,5494,1 +54183,2315078,193,9684,1 +54184,2315088,79,3999,1 +54185,2315112,42,2143,1 +54186,2315125,92,4608,1 +54187,2315126,26,1301,1 +54188,2315129,173,8674,1 +54189,2315520,150,7503,1 +54190,2315520,92,4624,1 +54191,2315520,158,7913,1 +54192,2315520,108,5406,1 +54193,2315520,198,9914,1 +54194,2315520,195,9778,1 +54195,2315520,175,8777,1 +54196,2315520,169,8489,1 +54197,2315521,21,1079,1 +54198,2315523,121,6073,1 +54199,2315524,8,409,1 +54200,2315529,127,6378,1 +54201,2315532,56,2807,1 +54202,2315532,68,3412,1 +54203,2315532,196,9823,1 +54204,2315532,179,8981,1 +54205,2315532,167,8366,1 +54206,2315533,43,2195,1 +54207,2315535,149,7479,1 +54208,2315535,181,9079,1 +54209,2315535,89,4486,1 +54210,2315542,197,9858,1 +54211,2315544,187,9391,1 +54212,2315544,59,2983,1 +54213,2315544,27,1381,1 +54214,2315544,194,9711,1 +54215,2315544,37,1878,1 +54216,2315545,62,3109,1 +54217,2315545,9,498,1 +54218,2315545,133,6683,1 +54219,2315547,86,4331,1 +54220,2315550,31,1558,1 +54221,2315554,65,3285,1 +54222,2315556,190,9543,1 +54223,2315556,124,6246,1 +54224,2315556,178,8910,1 +54225,2315557,172,8646,1 +54226,2315559,145,7261,1 +54227,2315568,115,5783,1 +54228,2315568,54,2716,1 +54229,2315569,49,2483,1 +54230,2315569,163,8172,1 +54231,2315573,128,6418,1 +54232,2315574,115,5760,1 +54233,2315580,166,8333,1 +54234,2315580,97,4858,1 +54235,2315581,34,1747,1 +54236,2315584,29,1468,1 +54237,2315595,71,3559,1 +54238,2315598,192,9624,1 +54239,2315601,29,1484,1 +54240,2315610,33,1682,1 +54241,2315616,178,8919,1 +54242,2315628,12,643,1 +54243,2315628,114,5730,1 +54244,2315628,122,6121,1 +54245,2315629,14,705,1 +54246,2315631,79,3976,1 +54247,2315653,148,7422,1 +54248,2315658,138,6909,1 +54249,2315664,177,8898,1 +54250,2315664,102,5137,1 +54251,2315669,94,4717,1 +54252,2315671,177,8854,1 +54253,2315679,153,7693,1 +54254,2315688,151,7590,1 +54255,2315698,133,6673,1 +54256,2315748,47,2395,1 +54257,2315820,89,4479,1 +54258,2316000,149,7463,1 +54259,2316001,49,2489,1 +54260,2316001,31,1569,1 +54261,2316024,158,7939,1 +54262,2316024,172,8639,1 +54263,2316024,25,1275,1 +54264,2316036,179,8996,1 +54265,2316036,190,9524,1 +54266,2316049,131,6570,1 +54267,2316057,28,1411,1 +54268,2316097,60,3035,1 +54269,2316108,185,9254,1 +54270,2316168,75,3761,1 +54271,2316207,98,4924,1 +54272,2316483,170,8528,1 +54273,2316492,32,1601,1 +54274,2316505,74,3729,1 +54275,2316505,58,2925,1 +54276,2316974,10,523,1 +54277,2316978,57,2899,1 +54278,2316981,54,2717,1 +54279,2317000,106,5303,1 +54280,2317003,195,9752,1 +54281,2317068,76,3827,1 +54282,2317074,164,8238,1 +54283,2317101,30,1501,1 +54284,2317440,82,4149,1 +54285,2317449,160,8043,1 +54286,2317457,188,9409,1 +54287,2317465,119,5958,1 +54288,2317467,180,9014,1 +54289,2317476,50,2545,1 +54290,2317489,117,5871,1 +54291,2317500,4,238,1 +54292,2317536,163,8181,1 +54293,2317548,73,3670,1 +54294,2317589,148,7440,1 +54295,2317632,153,7656,1 +54296,2317728,84,4203,1 +54297,2317920,148,7417,1 +54298,2317924,57,2882,1 +54299,2317932,95,4788,1 +54300,2317933,160,8014,1 +54301,2317992,0,7,1 +54302,2317992,142,7124,1 +54303,2318005,88,4417,1 +54304,2318022,123,6158,1 +54305,2318032,7,366,1 +54306,2318469,2,148,1 +54307,2318535,124,6217,1 +54308,2318544,91,4574,1 +54309,2318562,53,2658,1 +54310,2318673,103,5160,1 +54311,2318881,14,712,1 +54312,2318893,25,1291,1 +54313,2318894,27,1360,1 +54314,2318917,12,627,1 +54315,2318919,106,5313,1 +54316,2318964,16,820,1 +54317,2318977,173,8687,1 +54318,2319360,172,8605,1 +54319,2319364,197,9867,1 +54320,2319396,126,6311,1 +54321,2319493,70,3540,1 +54322,2319840,78,3914,1 +54323,2319864,8,427,1 +54324,2319865,25,1297,1 +54325,2319884,2,150,1 +54326,2319912,30,1510,1 +54327,2319913,18,931,1 +54328,2319957,105,5292,1 +54329,2320009,122,6110,1 +54330,2320014,197,9897,1 +54331,2320137,84,4213,1 +54332,2320320,92,4630,1 +54333,2320321,69,3486,1 +54334,2320326,99,4962,1 +54335,2320326,3,172,1 +54336,2320332,76,3828,1 +54337,2320333,69,3472,1 +54338,2320340,146,7317,1 +54339,2320346,181,9081,1 +54340,2320353,68,3432,1 +54341,2320353,17,853,1 +54342,2320356,142,7149,1 +54343,2320370,158,7930,1 +54344,2320380,135,6760,1 +54345,2320392,58,2932,1 +54346,2320417,179,8969,1 +54347,2320426,100,5023,1 +54348,2320430,72,3645,1 +54349,2320800,103,5158,1 +54350,2320800,142,7122,1 +54351,2320802,195,9751,1 +54352,2320809,78,3948,1 +54353,2320812,94,4712,1 +54354,2320812,71,3591,1 +54355,2320813,192,9632,1 +54356,2320824,81,4057,1 +54357,2320826,185,9293,1 +54358,2320836,141,7092,1 +54359,2320837,170,8550,1 +54360,2320846,175,8764,1 +54361,2320848,17,862,1 +54362,2320857,110,5506,1 +54363,2320860,68,3448,1 +54364,2320863,62,3145,1 +54365,2320866,1,52,1 +54366,2320869,86,4348,1 +54367,2320884,80,4017,1 +54368,2320884,169,8485,1 +54369,2320918,193,9656,1 +54370,2320937,152,7633,1 +54371,2320958,20,1011,1 +54372,2321006,32,1642,1 +54373,2321112,125,6286,1 +54374,2321280,93,4678,1 +54375,2321283,119,5971,1 +54376,2321293,142,7105,1 +54377,2321293,167,8369,1 +54378,2321304,109,5466,1 +54379,2321308,137,6873,1 +54380,2321313,62,3134,1 +54381,2321328,11,551,1 +54382,2321340,65,3292,1 +54383,2321340,141,7051,1 +54384,2321352,70,3510,1 +54385,2321388,40,2001,1 +54386,2321412,86,4307,1 +54387,2321460,128,6445,1 +54388,2321760,41,2099,1 +54389,2321760,107,5360,1 +54390,2321761,102,5103,1 +54391,2321767,152,7620,1 +54392,2321770,137,6859,1 +54393,2321771,142,7113,1 +54394,2321772,188,9426,1 +54395,2321773,112,5642,1 +54396,2321781,6,342,1 +54397,2321781,122,6142,1 +54398,2321784,58,2941,1 +54399,2321784,11,573,1 +54400,2321785,164,8232,1 +54401,2321794,159,7978,1 +54402,2321806,188,9411,1 +54403,2321808,102,5123,1 +54404,2321808,162,8120,1 +54405,2321812,39,1954,1 +54406,2321817,33,1665,1 +54407,2321821,79,3964,1 +54408,2321823,170,8518,1 +54409,2321832,147,7385,1 +54410,2321841,57,2887,1 +54411,2321842,179,8998,1 +54412,2321844,79,3971,1 +54413,2321858,81,4094,1 +54414,2321868,181,9068,1 +54415,2321913,199,9969,1 +54416,2321916,11,559,1 +54417,2321928,158,7931,1 +54418,2321981,17,873,1 +54419,2322051,166,8318,1 +54420,2322240,49,2456,1 +54421,2322252,99,4979,1 +54422,2322252,80,4037,1 +54423,2322266,28,1439,1 +54424,2322274,166,8323,1 +54425,2322285,47,2352,1 +54426,2322321,52,2603,1 +54427,2322323,8,418,1 +54428,2322349,39,1988,1 +54429,2322397,71,3592,1 +54430,2323200,133,6691,1 +54431,2323200,104,5246,1 +54432,2323201,106,5320,1 +54433,2323212,48,2401,1 +54434,2323224,183,9153,1 +54435,2323236,191,9572,1 +54436,2323248,121,6058,1 +54437,2323254,20,1007,1 +54438,2323284,86,4313,1 +54439,2323284,84,4208,1 +54440,2323291,88,4420,1 +54441,2323296,167,8384,1 +54442,2323308,39,1993,1 +54443,2323309,6,331,1 +54444,2323320,112,5636,1 +54445,2323320,137,6895,1 +54446,2323680,104,5210,1 +54447,2323687,70,3550,1 +54448,2323692,131,6591,1 +54449,2323692,22,1142,1 +54450,2323695,13,689,1 +54451,2323704,23,1160,1 +54452,2323720,26,1304,1 +54453,2323740,98,4932,1 +54454,2323743,181,9087,1 +54455,2323755,132,6643,1 +54456,2323764,12,629,1 +54457,2323765,53,2658,1 +54458,2323826,6,323,1 +54459,2324184,18,906,1 +54460,2324653,59,2995,1 +54461,2324664,135,6773,1 +54462,2324665,91,4559,1 +54463,2324733,141,7062,1 +54464,2324748,17,851,1 +54465,2324772,126,6321,1 +54466,2324802,190,9506,1 +54467,2325125,187,9372,1 +54468,2325126,40,2002,1 +54469,2325133,79,3987,1 +54470,2325144,45,2299,1 +54471,2325240,121,6054,1 +54472,2325600,63,3160,1 +54473,2325636,18,926,1 +54474,2325648,195,9782,1 +54475,2326081,178,8935,1 +54476,2326081,29,1500,1 +54477,2326091,60,3023,1 +54478,2326104,80,4013,1 +54479,2326105,186,9336,1 +54480,2326113,52,2626,1 +54481,2326116,166,8333,1 +54482,2326116,119,5971,1 +54483,2326117,147,7396,1 +54484,2326143,182,9117,1 +54485,2326143,85,4252,1 +54486,2326154,76,3840,1 +54487,2326164,156,7850,1 +54488,2326167,110,5511,1 +54489,2326170,14,727,1 +54490,2326179,78,3932,1 +54491,2326188,129,6460,1 +54492,2326189,10,519,1 +54493,2326200,184,9207,1 +54494,2326212,93,4661,1 +54495,2326275,129,6463,1 +54496,2326320,79,3982,1 +54497,2326561,115,5790,1 +54498,2326566,72,3609,1 +54499,2326580,160,8017,1 +54500,2326634,162,8103,1 +54501,2326644,5,255,1 +54502,2326709,151,7588,1 +54503,2326860,124,6233,1 +54504,2327040,36,1812,1 +54505,2327040,36,1834,1 +54506,2327049,164,8214,1 +54507,2327052,24,1250,1 +54508,2327067,36,1815,1 +54509,2327070,89,4499,1 +54510,2327076,166,8319,1 +54511,2327077,16,803,1 +54512,2327178,110,5542,1 +54513,2327184,34,1711,1 +54514,2327421,48,2443,1 +54515,2328480,150,7505,1 +54516,2328480,90,4528,1 +54517,2328496,144,7246,1 +54518,2328516,169,8466,1 +54519,2328553,82,4147,1 +54520,2328579,6,316,1 +54521,2328684,172,8648,1 +54522,2328960,170,8545,1 +54523,2328960,180,9024,1 +54524,2328961,16,842,1 +54525,2328984,195,9791,1 +54526,2328993,149,7451,1 +54527,2328997,145,7265,1 +54528,2329010,154,7702,1 +54529,2329016,192,9602,1 +54530,2329056,120,6015,1 +54531,2329056,78,3941,1 +54532,2329440,98,4905,1 +54533,2329488,170,8504,1 +54534,2329644,40,2033,1 +54535,2329920,184,9232,1 +54536,2329920,165,8277,1 +54537,2329944,43,2164,1 +54538,2329953,34,1745,1 +54539,2329956,23,1173,1 +54540,2329981,132,6616,1 +54541,2329981,79,3973,1 +54542,2329989,15,761,1 +54543,2329993,196,9830,1 +54544,2330015,189,9496,1 +54545,2330052,176,8821,1 +54546,2330126,1,63,1 +54547,2330412,73,3653,1 +54548,2330415,25,1276,1 +54549,2330424,53,2699,1 +54550,2330424,58,2912,1 +54551,2330449,122,6104,1 +54552,2330514,102,5106,1 +54553,2330546,54,2746,1 +54554,2331360,151,7598,1 +54555,2331361,138,6926,1 +54556,2331361,25,1279,1 +54557,2331372,11,580,1 +54558,2331374,177,8860,1 +54559,2331397,112,5626,1 +54560,2331852,177,8886,1 +54561,2331912,79,3990,1 +54562,2332321,9,454,1 +54563,2332321,47,2370,1 +54564,2332328,128,6412,1 +54565,2332339,11,596,1 +54566,2332341,173,8696,1 +54567,2332356,189,9461,1 +54568,2332368,165,8270,1 +54569,2332399,192,9608,1 +54570,2332405,16,811,1 +54571,2332416,9,473,1 +54572,2332428,153,7665,1 +54573,2332440,104,5245,1 +54574,2332620,127,6358,1 +54575,2332800,20,1017,1 +54576,2332800,66,3330,1 +54577,2332801,191,9553,1 +54578,2332802,188,9438,1 +54579,2332805,10,517,1 +54580,2332809,196,9804,1 +54581,2332812,99,4984,1 +54582,2332826,33,1693,1 +54583,2332837,175,8800,1 +54584,2332838,92,4649,1 +54585,2332840,168,8418,1 +54586,2332842,136,6831,1 +54587,2332845,149,7482,1 +54588,2332848,63,3198,1 +54589,2332853,58,2906,1 +54590,2332863,104,5206,1 +54591,2332872,20,1044,1 +54592,2332881,107,5373,1 +54593,2332884,50,2527,1 +54594,2332920,2,120,1 +54595,2332932,152,7623,1 +54596,2332934,108,5414,1 +54597,2332946,65,3283,1 +54598,2332956,69,3467,1 +54599,2332956,156,7801,1 +54600,2333076,58,2903,1 +54601,2333280,60,3001,1 +54602,2333280,83,4191,1 +54603,2333281,155,7788,1 +54604,2333282,84,4246,1 +54605,2333285,9,463,1 +54606,2333286,184,9202,1 +54607,2333293,13,690,1 +54608,2333300,28,1432,1 +54609,2333301,82,4116,1 +54610,2333307,173,8658,1 +54611,2333318,32,1617,1 +54612,2333329,153,7675,1 +54613,2333349,74,3744,1 +54614,2333424,106,5344,1 +54615,2333496,191,9562,1 +54616,2333760,14,738,1 +54617,2333775,21,1061,1 +54618,2333776,151,7565,1 +54619,2333784,128,6450,1 +54620,2333808,20,1034,1 +54621,2333829,138,6947,1 +54622,2333869,30,1545,1 +54623,2333899,21,1087,1 +54624,2333958,165,8290,1 +54625,2334240,75,3785,1 +54626,2334732,107,5394,1 +54627,2334900,150,7535,1 +54628,2335200,12,611,1 +54629,2335213,182,9139,1 +54630,2335236,25,1253,1 +54631,2335248,44,2250,1 +54632,2335249,29,1452,1 +54633,2335260,90,4522,1 +54634,2335692,57,2892,1 +54635,2335728,126,6320,1 +54636,2336259,19,987,1 +54637,2336280,55,2797,1 +54638,2336640,85,4286,1 +54639,2336640,195,9758,1 +54640,2336649,137,6866,1 +54641,2336652,26,1304,1 +54642,2336655,93,4686,1 +54643,2336688,30,1530,1 +54644,2336754,33,1700,1 +54645,2336757,24,1234,1 +54646,2336757,3,188,1 +54647,2337168,85,4251,1 +54648,2337600,54,2727,1 +54649,2337600,149,7482,1 +54650,2337601,86,4345,1 +54651,2337601,114,5732,1 +54652,2337601,56,2819,1 +54653,2337639,184,9217,1 +54654,2337696,163,8182,1 +54655,2337697,91,4560,1 +54656,2337905,173,8679,1 +54657,2338105,64,3224,1 +54658,2338188,26,1313,1 +54659,2338309,88,4439,1 +54660,2338560,58,2945,1 +54661,2338560,150,7519,1 +54662,2338560,64,3246,1 +54663,2338560,119,5977,1 +54664,2338560,80,4039,1 +54665,2338560,67,3377,1 +54666,2338560,114,5717,1 +54667,2338561,8,421,1 +54668,2338561,119,5964,1 +54669,2338562,5,289,1 +54670,2338562,23,1172,1 +54671,2338569,178,8919,1 +54672,2338570,123,6171,1 +54673,2338572,64,3219,1 +54674,2338572,11,571,1 +54675,2338572,41,2094,1 +54676,2338572,157,7891,1 +54677,2338573,146,7329,1 +54678,2338573,152,7631,1 +54679,2338574,120,6007,1 +54680,2338574,13,667,1 +54681,2338574,108,5423,1 +54682,2338576,111,5577,1 +54683,2338577,167,8399,1 +54684,2338578,96,4808,1 +54685,2338581,61,3054,1 +54686,2338581,52,2633,1 +54687,2338581,3,151,1 +54688,2338584,186,9338,1 +54689,2338584,135,6779,1 +54690,2338584,115,5771,1 +54691,2338585,143,7187,1 +54692,2338586,30,1527,1 +54693,2338588,33,1677,1 +54694,2338593,181,9088,1 +54695,2338594,10,509,1 +54696,2338596,163,8170,1 +54697,2338597,171,8580,1 +54698,2338599,52,2632,1 +54699,2338599,0,30,1 +54700,2338599,101,5061,1 +54701,2338608,132,6643,1 +54702,2338608,171,8591,1 +54703,2338609,48,2405,1 +54704,2338615,167,8389,1 +54705,2338618,199,9988,1 +54706,2338620,118,5915,1 +54707,2338620,87,4387,1 +54708,2338621,187,9374,1 +54709,2338623,187,9363,1 +54710,2338624,196,9819,1 +54711,2338626,41,2064,1 +54712,2338627,125,6254,1 +54713,2338632,173,8654,1 +54714,2338632,109,5489,1 +54715,2338632,8,419,1 +54716,2338632,24,1202,1 +54717,2338633,177,8893,1 +54718,2338638,70,3503,1 +54719,2338644,60,3022,1 +54720,2338645,21,1064,1 +54721,2338648,11,595,1 +54722,2338656,196,9823,1 +54723,2338656,83,4197,1 +54724,2338657,118,5941,1 +54725,2338665,65,3296,1 +54726,2338668,147,7390,1 +54727,2338669,182,9111,1 +54728,2338669,157,7858,1 +54729,2338671,111,5567,1 +54730,2338674,197,9863,1 +54731,2338678,78,3937,1 +54732,2338682,82,4110,1 +54733,2338693,44,2237,1 +54734,2338704,29,1482,1 +54735,2338704,148,7417,1 +54736,2338716,166,8315,1 +54737,2338717,87,4388,1 +54738,2338773,39,1989,1 +54739,2338788,34,1747,1 +54740,2339052,160,8031,1 +54741,2339520,26,1305,1 +54742,2339520,64,3208,1 +54743,2339520,7,394,1 +54744,2339520,122,6117,1 +54745,2339520,72,3606,1 +54746,2339521,186,9348,1 +54747,2339521,82,4142,1 +54748,2339522,114,5725,1 +54749,2339532,37,1882,1 +54750,2339532,152,7641,1 +54751,2339532,24,1232,1 +54752,2339532,124,6224,1 +54753,2339533,122,6146,1 +54754,2339541,14,728,1 +54755,2339544,47,2380,1 +54756,2339544,164,8210,1 +54757,2339547,87,4358,1 +54758,2339548,167,8373,1 +54759,2339551,14,750,1 +54760,2339554,118,5908,1 +54761,2339556,26,1336,1 +54762,2339568,167,8357,1 +54763,2339568,46,2346,1 +54764,2339569,188,9424,1 +54765,2339580,58,2906,1 +54766,2339584,144,7208,1 +54767,2339592,124,6201,1 +54768,2339607,101,5083,1 +54769,2339610,177,8861,1 +54770,2339652,68,3445,1 +54771,2339677,35,1800,1 +54772,2339688,115,5788,1 +54773,2339700,71,3597,1 +54774,2339716,0,2,1 +54775,2339772,171,8557,1 +54776,2340024,97,4864,1 +54777,2340036,167,8365,1 +54778,2340063,2,122,1 +54779,2340132,104,5217,1 +54780,2340480,71,3559,1 +54781,2340481,58,2934,1 +54782,2340498,19,998,1 +54783,2341035,28,1411,1 +54784,2341095,102,5135,1 +54785,2341440,50,2550,1 +54786,2341656,154,7731,1 +54787,2341920,137,6866,1 +54788,2341932,41,2086,1 +54789,2341940,54,2730,1 +54790,2341945,21,1071,1 +54791,2341956,74,3730,1 +54792,2341968,147,7397,1 +54793,2341980,65,3297,1 +54794,2342006,115,5752,1 +54795,2342052,47,2366,1 +54796,2342061,1,83,1 +54797,2342064,95,4778,1 +54798,2342124,84,4203,1 +54799,2342154,117,5865,1 +54800,2342197,41,2084,1 +54801,2342412,5,298,1 +54802,2342424,136,6828,1 +54803,2342887,162,8112,1 +54804,2342892,4,227,1 +54805,2342894,156,7803,1 +54806,2342901,30,1550,1 +54807,2342914,56,2806,1 +54808,2342917,62,3120,1 +54809,2342917,192,9632,1 +54810,2342941,98,4917,1 +54811,2343361,177,8883,1 +54812,2343364,13,687,1 +54813,2343387,197,9860,1 +54814,2343415,178,8923,1 +54815,2343447,35,1784,1 +54816,2343840,91,4575,1 +54817,2343842,83,4195,1 +54818,2343852,107,5379,1 +54819,2343862,7,391,1 +54820,2343876,94,4745,1 +54821,2343894,178,8911,1 +54822,2343915,27,1353,1 +54823,2344326,132,6632,1 +54824,2344332,103,5181,1 +54825,2344350,144,7233,1 +54826,2344356,107,5370,1 +54827,2344357,81,4087,1 +54828,2344359,146,7336,1 +54829,2344368,67,3358,1 +54830,2344392,83,4152,1 +54831,2344800,68,3414,1 +54832,2344824,86,4315,1 +54833,2344839,138,6950,1 +54834,2344851,32,1613,1 +54835,2344920,180,9005,1 +54836,2345280,5,262,1 +54837,2345763,112,5630,1 +54838,2345775,105,5251,1 +54839,2345796,188,9435,1 +54840,2345798,169,8492,1 +54841,2345820,183,9165,1 +54842,2345858,168,8443,1 +54843,2345878,57,2896,1 +54844,2346264,166,8316,1 +54845,2346276,173,8686,1 +54846,2346289,59,2975,1 +54847,2346328,101,5056,1 +54848,2346721,192,9650,1 +54849,2346733,45,2298,1 +54850,2346783,70,3520,1 +54851,2347200,95,4760,1 +54852,2347212,147,7364,1 +54853,2347212,174,8707,1 +54854,2347212,162,8134,1 +54855,2347218,95,4788,1 +54856,2347223,8,421,1 +54857,2347224,178,8946,1 +54858,2347236,197,9893,1 +54859,2347245,155,7765,1 +54860,2347248,184,9243,1 +54861,2347282,113,5659,1 +54862,2347284,78,3937,1 +54863,2347296,1,76,1 +54864,2347348,54,2714,1 +54865,2347360,48,2419,1 +54866,2347371,93,4665,1 +54867,2348234,182,9147,1 +54868,2348640,83,4197,1 +54869,2349662,18,912,1 +54870,2350080,25,1282,1 +54871,2350080,30,1545,1 +54872,2350082,103,5156,1 +54873,2350089,35,1778,1 +54874,2350092,126,6330,1 +54875,2350095,120,6046,1 +54876,2350102,0,40,1 +54877,2350104,107,5385,1 +54878,2350110,72,3650,1 +54879,2350128,175,8755,1 +54880,2350131,165,8263,1 +54881,2350132,153,7680,1 +54882,2350140,33,1684,1 +54883,2350141,160,8041,1 +54884,2350143,44,2238,1 +54885,2350560,23,1176,1 +54886,2350560,153,7675,1 +54887,2350566,157,7900,1 +54888,2350572,78,3923,1 +54889,2350572,41,2076,1 +54890,2350575,171,8559,1 +54891,2350584,98,4939,1 +54892,2350597,98,4927,1 +54893,2350608,6,346,1 +54894,2350610,4,214,1 +54895,2350614,5,255,1 +54896,2350633,45,2276,1 +54897,2350641,117,5892,1 +54898,2350669,10,503,1 +54899,2350680,43,2154,1 +54900,2350710,195,9757,1 +54901,2350749,64,3229,1 +54902,2351054,85,4299,1 +54903,2351100,58,2908,1 +54904,2351520,31,1584,1 +54905,2351530,129,6472,1 +54906,2351533,164,8225,1 +54907,2351541,76,3802,1 +54908,2351544,20,1002,1 +54909,2351545,80,4005,1 +54910,2351561,126,6339,1 +54911,2351589,154,7732,1 +54912,2351594,20,1010,1 +54913,2351610,148,7413,1 +54914,2351637,117,5855,1 +54915,2351724,119,5951,1 +54916,2352000,53,2658,1 +54917,2352001,23,1191,1 +54918,2352002,150,7519,1 +54919,2352004,156,7844,1 +54920,2352004,177,8879,1 +54921,2352009,26,1321,1 +54922,2352013,112,5635,1 +54923,2352021,19,980,1 +54924,2352021,64,3243,1 +54925,2352022,2,116,1 +54926,2352026,69,3472,1 +54927,2352027,89,4451,1 +54928,2352033,96,4839,1 +54929,2352036,71,3592,1 +54930,2352036,125,6273,1 +54931,2352070,110,5510,1 +54932,2352072,12,618,1 +54933,2352096,71,3590,1 +54934,2352132,14,701,1 +54935,2352480,30,1545,1 +54936,2352480,128,6435,1 +54937,2352480,48,2411,1 +54938,2352481,150,7536,1 +54939,2352481,185,9289,1 +54940,2352483,117,5887,1 +54941,2352486,67,3351,1 +54942,2352487,80,4042,1 +54943,2352492,154,7702,1 +54944,2352492,115,5782,1 +54945,2352492,81,4094,1 +54946,2352492,107,5365,1 +54947,2352493,9,466,1 +54948,2352493,149,7478,1 +54949,2352501,111,5571,1 +54950,2352502,133,6684,1 +54951,2352504,32,1631,1 +54952,2352505,59,2986,1 +54953,2352508,166,8321,1 +54954,2352513,121,6074,1 +54955,2352516,181,9090,1 +54956,2352528,45,2273,1 +54957,2352528,89,4456,1 +54958,2352528,167,8389,1 +54959,2352529,7,355,1 +54960,2352532,169,8486,1 +54961,2352540,41,2098,1 +54962,2352540,36,1807,1 +54963,2352540,125,6300,1 +54964,2352542,168,8422,1 +54965,2352552,172,8629,1 +54966,2352553,19,958,1 +54967,2352554,25,1300,1 +54968,2352555,176,8822,1 +54969,2352565,145,7278,1 +54970,2352576,28,1439,1 +54971,2352594,86,4343,1 +54972,2352604,146,7311,1 +54973,2352608,39,1975,1 +54974,2352613,83,4187,1 +54975,2352625,151,7592,1 +54976,2352684,57,2881,1 +54977,2352966,137,6891,1 +54978,2352974,34,1702,1 +54979,2353057,63,3173,1 +54980,2353120,109,5455,1 +54981,2353452,151,7588,1 +54982,2353464,57,2876,1 +54983,2353464,67,3380,1 +54984,2353477,128,6418,1 +54985,2353593,26,1339,1 +54986,2353920,45,2291,1 +54987,2353920,18,932,1 +54988,2353923,53,2661,1 +54989,2353923,132,6632,1 +54990,2353933,154,7734,1 +54991,2353938,165,8256,1 +54992,2353995,153,7681,1 +54993,2354004,132,6628,1 +54994,2354004,191,9590,1 +54995,2354040,140,7041,1 +54996,2354616,104,5207,1 +54997,2354880,184,9205,1 +54998,2354880,146,7335,1 +54999,2354880,157,7859,1 +55000,2354880,52,2643,1 +55001,2354880,186,9341,1 +55002,2354881,193,9666,1 +55003,2354883,109,5485,1 +55004,2354886,118,5944,1 +55005,2354892,120,6014,1 +55006,2354892,114,5708,1 +55007,2354892,136,6845,1 +55008,2354898,38,1949,1 +55009,2354900,95,4787,1 +55010,2354902,146,7319,1 +55011,2354904,43,2159,1 +55012,2354907,163,8154,1 +55013,2354907,164,8206,1 +55014,2354913,119,5981,1 +55015,2354916,125,6270,1 +55016,2354931,71,3593,1 +55017,2354932,140,7023,1 +55018,2354940,176,8819,1 +55019,2354952,142,7106,1 +55020,2354952,87,4396,1 +55021,2354952,80,4015,1 +55022,2354958,33,1678,1 +55023,2354964,54,2750,1 +55024,2355012,150,7542,1 +55025,2355012,147,7395,1 +55026,2355108,9,476,1 +55027,2355360,45,2278,1 +55028,2355360,24,1204,1 +55029,2355360,154,7749,1 +55030,2355361,17,884,1 +55031,2355361,10,521,1 +55032,2355370,21,1097,1 +55033,2355373,25,1260,1 +55034,2355374,3,152,1 +55035,2355387,4,234,1 +55036,2355408,181,9061,1 +55037,2355420,142,7109,1 +55038,2355420,131,6592,1 +55039,2355445,175,8779,1 +55040,2355474,69,3478,1 +55041,2355498,0,9,1 +55042,2355504,155,7758,1 +55043,2355517,1,61,1 +55044,2355555,74,3749,1 +55045,2355672,31,1555,1 +55046,2355840,4,217,1 +55047,2355843,23,1187,1 +55048,2355849,31,1564,1 +55049,2355854,32,1639,1 +55050,2355854,198,9916,1 +55051,2355858,100,5025,1 +55052,2355864,140,7047,1 +55053,2355865,46,2319,1 +55054,2355865,179,8973,1 +55055,2355867,14,748,1 +55056,2355868,85,4292,1 +55057,2355877,106,5336,1 +55058,2355879,190,9522,1 +55059,2355888,68,3401,1 +55060,2355888,189,9486,1 +55061,2355888,175,8764,1 +55062,2355889,98,4944,1 +55063,2355890,153,7660,1 +55064,2355900,48,2428,1 +55065,2355912,141,7075,1 +55066,2355912,111,5556,1 +55067,2355912,0,40,1 +55068,2355924,48,2445,1 +55069,2355924,167,8372,1 +55070,2355940,159,7966,1 +55071,2355960,1,65,1 +55072,2355980,88,4425,1 +55073,2356333,15,785,1 +55074,2356350,193,9662,1 +55075,2356368,199,9998,1 +55076,2356428,51,2554,1 +55077,2356518,86,4320,1 +55078,2356802,43,2153,1 +55079,2356803,199,9976,1 +55080,2356806,5,255,1 +55081,2356812,45,2274,1 +55082,2356815,172,8644,1 +55083,2356825,179,8992,1 +55084,2356836,11,589,1 +55085,2356847,5,298,1 +55086,2356872,196,9819,1 +55087,2356932,189,9473,1 +55088,2357280,142,7148,1 +55089,2357282,165,8282,1 +55090,2357292,51,2558,1 +55091,2357296,53,2657,1 +55092,2357298,140,7006,1 +55093,2357305,99,4968,1 +55094,2357316,195,9780,1 +55095,2357329,186,9341,1 +55096,2357331,157,7853,1 +55097,2357413,19,960,1 +55098,2357772,130,6540,1 +55099,2357814,167,8385,1 +55100,2357820,114,5739,1 +55101,2358264,156,7816,1 +55102,2358269,3,151,1 +55103,2358306,118,5934,1 +55104,2358321,8,429,1 +55105,2358327,164,8246,1 +55106,2358330,3,186,1 +55107,2358348,104,5230,1 +55108,2358420,5,271,1 +55109,2358723,60,3037,1 +55110,2358744,172,8626,1 +55111,2358755,190,9538,1 +55112,2358756,81,4088,1 +55113,2358780,36,1837,1 +55114,2358894,13,651,1 +55115,2359203,91,4553,1 +55116,2359237,188,9404,1 +55117,2359326,129,6498,1 +55118,2359337,44,2210,1 +55119,2359680,164,8208,1 +55120,2359680,161,8063,1 +55121,2359680,153,7653,1 +55122,2359681,112,5643,1 +55123,2359690,21,1095,1 +55124,2359690,90,4541,1 +55125,2359692,65,3276,1 +55126,2359718,147,7363,1 +55127,2359740,186,9309,1 +55128,2359740,23,1183,1 +55129,2359752,21,1086,1 +55130,2359760,177,8860,1 +55131,2359765,121,6100,1 +55132,2359777,117,5875,1 +55133,2359800,52,2639,1 +55134,2359848,156,7836,1 +55135,2360160,69,3485,1 +55136,2360161,55,2751,1 +55137,2360166,38,1908,1 +55138,2360173,17,893,1 +55139,2360179,125,6279,1 +55140,2360196,6,308,1 +55141,2360226,87,4393,1 +55142,2360448,62,3131,1 +55143,2360580,170,8507,1 +55144,2360640,93,4689,1 +55145,2360640,14,716,1 +55146,2360640,136,6824,1 +55147,2360640,4,223,1 +55148,2360640,185,9286,1 +55149,2360640,197,9853,1 +55150,2360641,111,5596,1 +55151,2360641,103,5155,1 +55152,2360643,158,7914,1 +55153,2360643,155,7792,1 +55154,2360645,5,290,1 +55155,2360652,180,9014,1 +55156,2360652,143,7157,1 +55157,2360652,163,8175,1 +55158,2360652,36,1836,1 +55159,2360652,8,430,1 +55160,2360653,90,4531,1 +55161,2360653,169,8500,1 +55162,2360654,51,2578,1 +55163,2360664,51,2584,1 +55164,2360664,189,9471,1 +55165,2360671,141,7081,1 +55166,2360673,166,8303,1 +55167,2360676,10,517,1 +55168,2360677,119,5995,1 +55169,2360677,148,7419,1 +55170,2360685,35,1771,1 +55171,2360700,121,6054,1 +55172,2360700,185,9284,1 +55173,2360700,80,4023,1 +55174,2360706,115,5752,1 +55175,2360709,6,327,1 +55176,2360712,96,4833,1 +55177,2360718,7,364,1 +55178,2360736,185,9266,1 +55179,2360737,155,7797,1 +55180,2360751,62,3108,1 +55181,2360760,122,6101,1 +55182,2360761,40,2002,1 +55183,2360771,74,3738,1 +55184,2360779,159,7995,1 +55185,2360781,131,6562,1 +55186,2360784,76,3810,1 +55187,2360785,186,9305,1 +55188,2361133,23,1173,1 +55189,2361135,0,36,1 +55190,2361144,165,8299,1 +55191,2361144,197,9851,1 +55192,2361147,166,8349,1 +55193,2361147,161,8065,1 +55194,2361184,188,9401,1 +55195,2361195,182,9106,1 +55196,2361206,7,386,1 +55197,2361210,93,4655,1 +55198,2361231,98,4909,1 +55199,2361240,0,24,1 +55200,2361258,193,9689,1 +55201,2361266,127,6394,1 +55202,2361303,64,3205,1 +55203,2361646,105,5274,1 +55204,2361648,170,8532,1 +55205,2361648,18,934,1 +55206,2361684,173,8666,1 +55207,2361709,87,4356,1 +55208,2361745,111,5569,1 +55209,2361804,169,8457,1 +55210,2362560,92,4602,1 +55211,2362560,166,8343,1 +55212,2362561,152,7621,1 +55213,2362562,168,8415,1 +55214,2362562,97,4885,1 +55215,2362563,139,6953,1 +55216,2362563,161,8059,1 +55217,2362569,109,5457,1 +55218,2362572,136,6840,1 +55219,2362572,120,6027,1 +55220,2362574,55,2786,1 +55221,2362584,172,8638,1 +55222,2362584,159,7973,1 +55223,2362587,25,1263,1 +55224,2362588,110,5502,1 +55225,2362596,179,8998,1 +55226,2362596,20,1028,1 +55227,2362599,106,5321,1 +55228,2362602,83,4167,1 +55229,2362608,84,4225,1 +55230,2362621,4,211,1 +55231,2362621,42,2101,1 +55232,2362623,39,1971,1 +55233,2362632,166,8308,1 +55234,2362632,178,8930,1 +55235,2362633,162,8136,1 +55236,2362645,87,4399,1 +55237,2362653,11,561,1 +55238,2362659,12,632,1 +55239,2362666,140,7028,1 +55240,2362668,46,2310,1 +55241,2362741,103,5190,1 +55242,2363040,78,3914,1 +55243,2363041,195,9795,1 +55244,2363042,73,3699,1 +55245,2363049,18,916,1 +55246,2363061,50,2523,1 +55247,2363064,149,7464,1 +55248,2363067,87,4399,1 +55249,2363076,178,8930,1 +55250,2363100,95,4797,1 +55251,2363108,1,54,1 +55252,2363134,113,5675,1 +55253,2363172,193,9684,1 +55254,2363256,11,572,1 +55255,2363520,119,5981,1 +55256,2363523,127,6386,1 +55257,2363533,151,7570,1 +55258,2363533,122,6124,1 +55259,2363544,143,7166,1 +55260,2363556,5,279,1 +55261,2363557,68,3420,1 +55262,2363557,114,5734,1 +55263,2363557,32,1640,1 +55264,2363559,142,7126,1 +55265,2363559,14,708,1 +55266,2363562,187,9357,1 +55267,2363581,143,7168,1 +55268,2363589,198,9943,1 +55269,2363604,157,7900,1 +55270,2363616,197,9867,1 +55271,2363640,49,2495,1 +55272,2364091,182,9123,1 +55273,2364505,80,4011,1 +55274,2364517,67,3376,1 +55275,2364530,99,4981,1 +55276,2364960,98,4938,1 +55277,2364960,39,1963,1 +55278,2364966,141,7077,1 +55279,2364968,85,4251,1 +55280,2364969,58,2942,1 +55281,2364972,166,8341,1 +55282,2364973,99,4989,1 +55283,2364974,145,7298,1 +55284,2364978,92,4629,1 +55285,2364984,193,9685,1 +55286,2364984,117,5854,1 +55287,2364986,34,1710,1 +55288,2364987,110,5530,1 +55289,2364996,163,8184,1 +55290,2364996,178,8950,1 +55291,2364999,46,2322,1 +55292,2365008,42,2140,1 +55293,2365014,83,4167,1 +55294,2365020,171,8592,1 +55295,2365022,150,7533,1 +55296,2365032,36,1817,1 +55297,2365032,60,3021,1 +55298,2365033,66,3305,1 +55299,2365033,7,355,1 +55300,2365044,11,585,1 +55301,2365057,70,3508,1 +55302,2365068,132,6639,1 +55303,2365081,51,2600,1 +55304,2365084,110,5528,1 +55305,2365089,29,1490,1 +55306,2365132,53,2699,1 +55307,2365152,76,3847,1 +55308,2365161,175,8777,1 +55309,2365284,180,9036,1 +55310,2365440,87,4369,1 +55311,2365453,50,2531,1 +55312,2365921,87,4388,1 +55313,2365941,195,9771,1 +55314,2365946,83,4191,1 +55315,2365950,159,7998,1 +55316,2365980,109,5456,1 +55317,2366012,67,3389,1 +55318,2366028,60,3042,1 +55319,2366029,150,7507,1 +55320,2366137,42,2141,1 +55321,2366401,28,1419,1 +55322,2366412,20,1015,1 +55323,2366422,50,2501,1 +55324,2366424,19,977,1 +55325,2366436,32,1629,1 +55326,2366436,127,6360,1 +55327,2366460,54,2709,1 +55328,2366520,158,7903,1 +55329,2366535,5,271,1 +55330,2366597,177,8880,1 +55331,2367360,43,2173,1 +55332,2367385,46,2330,1 +55333,2367444,34,1711,1 +55334,2367589,158,7907,1 +55335,2367840,3,172,1 +55336,2367873,69,3498,1 +55337,2367882,89,4457,1 +55338,2367909,155,7774,1 +55339,2368368,130,6540,1 +55340,2368380,79,3997,1 +55341,2368812,60,3015,1 +55342,2368857,179,8968,1 +55343,2368872,192,9637,1 +55344,2368932,175,8787,1 +55345,2369310,150,7517,1 +55346,2369916,84,4232,1 +55347,2369977,108,5409,1 +55348,2370240,153,7689,1 +55349,2370241,22,1138,1 +55350,2370242,166,8343,1 +55351,2370252,58,2919,1 +55352,2370252,150,7523,1 +55353,2370252,139,6981,1 +55354,2370253,160,8004,1 +55355,2370253,16,815,1 +55356,2370253,143,7161,1 +55357,2370261,84,4250,1 +55358,2370264,199,9971,1 +55359,2370276,124,6213,1 +55360,2370282,118,5925,1 +55361,2370289,126,6333,1 +55362,2370289,196,9837,1 +55363,2370300,86,4309,1 +55364,2370300,103,5166,1 +55365,2370303,185,9267,1 +55366,2370309,84,4205,1 +55367,2370313,35,1759,1 +55368,2370314,144,7211,1 +55369,2370315,63,3183,1 +55370,2370324,160,8024,1 +55371,2370325,48,2431,1 +55372,2370333,189,9477,1 +55373,2370351,56,2814,1 +55374,2370363,129,6477,1 +55375,2370373,118,5928,1 +55376,2370387,52,2649,1 +55377,2370393,107,5373,1 +55378,2370411,134,6701,1 +55379,2370412,137,6873,1 +55380,2370436,127,6368,1 +55381,2370480,45,2283,1 +55382,2370481,133,6651,1 +55383,2370720,143,7167,1 +55384,2370720,40,2038,1 +55385,2370720,68,3437,1 +55386,2370720,75,3791,1 +55387,2370720,101,5077,1 +55388,2370720,90,4534,1 +55389,2370721,38,1922,1 +55390,2370732,34,1719,1 +55391,2370736,135,6771,1 +55392,2370753,99,4965,1 +55393,2370765,170,8502,1 +55394,2370768,93,4662,1 +55395,2370769,25,1279,1 +55396,2370780,73,3691,1 +55397,2370781,129,6498,1 +55398,2370789,191,9586,1 +55399,2370793,115,5783,1 +55400,2370794,152,7621,1 +55401,2370885,70,3507,1 +55402,2370926,192,9615,1 +55403,2371200,178,8922,1 +55404,2371236,82,4114,1 +55405,2371257,69,3499,1 +55406,2371314,147,7361,1 +55407,2371680,43,2169,1 +55408,2371701,195,9752,1 +55409,2371736,72,3645,1 +55410,2371764,95,4780,1 +55411,2371797,56,2829,1 +55412,2372161,14,736,1 +55413,2372167,95,4784,1 +55414,2372184,82,4115,1 +55415,2372184,124,6222,1 +55416,2372193,33,1677,1 +55417,2372209,86,4335,1 +55418,2372244,197,9866,1 +55419,2372284,59,2984,1 +55420,2372293,116,5835,1 +55421,2372424,121,6075,1 +55422,2373156,57,2862,1 +55423,2373156,51,2592,1 +55424,2373169,14,750,1 +55425,2373180,119,5982,1 +55426,2373204,184,9250,1 +55427,2373220,78,3926,1 +55428,2373609,12,650,1 +55429,2373612,70,3517,1 +55430,2373612,60,3050,1 +55431,2373617,194,9714,1 +55432,2373624,128,6406,1 +55433,2373636,152,7642,1 +55434,2373636,10,531,1 +55435,2373640,48,2445,1 +55436,2373642,124,6234,1 +55437,2373642,62,3141,1 +55438,2373645,27,1384,1 +55439,2373651,10,513,1 +55440,2373710,82,4116,1 +55441,2373729,26,1316,1 +55442,2374089,42,2136,1 +55443,2375040,65,3275,1 +55444,2375053,57,2855,1 +55445,2375055,86,4334,1 +55446,2375082,198,9911,1 +55447,2375520,106,5335,1 +55448,2375522,195,9768,1 +55449,2375526,191,9569,1 +55450,2375532,68,3443,1 +55451,2375535,85,4291,1 +55452,2375535,67,3363,1 +55453,2375536,6,348,1 +55454,2375547,192,9603,1 +55455,2375552,114,5747,1 +55456,2375556,15,780,1 +55457,2375568,163,8159,1 +55458,2375592,105,5278,1 +55459,2375604,150,7535,1 +55460,2375605,47,2354,1 +55461,2375605,193,9662,1 +55462,2375616,122,6140,1 +55463,2375617,178,8905,1 +55464,2375617,110,5505,1 +55465,2375617,99,4971,1 +55466,2375621,199,9957,1 +55467,2375647,108,5434,1 +55468,2375761,5,278,1 +55469,2376481,136,6847,1 +55470,2376492,90,4519,1 +55471,2376505,87,4385,1 +55472,2376517,180,9025,1 +55473,2376517,93,4651,1 +55474,2376520,58,2948,1 +55475,2376603,66,3334,1 +55476,2376960,194,9714,1 +55477,2376960,131,6594,1 +55478,2376964,105,5271,1 +55479,2376972,104,5242,1 +55480,2376975,139,6993,1 +55481,2376984,158,7939,1 +55482,2376990,126,6331,1 +55483,2377008,39,1956,1 +55484,2377023,138,6922,1 +55485,2377023,28,1427,1 +55486,2377044,141,7062,1 +55487,2377044,84,4225,1 +55488,2377056,136,6830,1 +55489,2377093,89,4477,1 +55490,2377116,138,6934,1 +55491,2377457,197,9862,1 +55492,2377468,78,3945,1 +55493,2377477,118,5918,1 +55494,2377920,97,4877,1 +55495,2377920,4,202,1 +55496,2377920,93,4659,1 +55497,2377920,58,2913,1 +55498,2377932,98,4944,1 +55499,2377953,55,2759,1 +55500,2377956,159,7970,1 +55501,2377957,54,2748,1 +55502,2377986,66,3308,1 +55503,2377996,62,3103,1 +55504,2378424,174,8740,1 +55505,2378436,109,5464,1 +55506,2378440,1,61,1 +55507,2378508,154,7719,1 +55508,2378609,98,4925,1 +55509,2378895,22,1120,1 +55510,2378917,194,9742,1 +55511,2378988,69,3452,1 +55512,2379360,151,7552,1 +55513,2379360,36,1834,1 +55514,2379360,55,2785,1 +55515,2379361,165,8285,1 +55516,2379371,74,3728,1 +55517,2379372,10,509,1 +55518,2379373,63,3181,1 +55519,2379374,139,6988,1 +55520,2379375,11,575,1 +55521,2379375,167,8366,1 +55522,2379376,146,7318,1 +55523,2379376,74,3745,1 +55524,2379381,133,6675,1 +55525,2379384,71,3576,1 +55526,2379385,133,6667,1 +55527,2379390,65,3286,1 +55528,2379391,28,1430,1 +55529,2379396,173,8687,1 +55530,2379417,154,7747,1 +55531,2379418,33,1681,1 +55532,2379420,43,2162,1 +55533,2379423,35,1753,1 +55534,2379438,169,8469,1 +55535,2379468,43,2176,1 +55536,2379505,13,688,1 +55537,2379852,105,5290,1 +55538,2379852,76,3813,1 +55539,2379852,13,676,1 +55540,2379864,30,1530,1 +55541,2379869,142,7132,1 +55542,2379880,67,3357,1 +55543,2379913,124,6205,1 +55544,2379922,63,3177,1 +55545,2379926,23,1199,1 +55546,2379949,91,4590,1 +55547,2379960,187,9396,1 +55548,2380033,22,1133,1 +55549,2380057,27,1394,1 +55550,2380112,77,3889,1 +55551,2380331,97,4863,1 +55552,2380334,181,9070,1 +55553,2380406,41,2081,1 +55554,2380800,198,9913,1 +55555,2380800,79,3971,1 +55556,2380812,60,3039,1 +55557,2380812,178,8944,1 +55558,2380813,26,1348,1 +55559,2380813,144,7233,1 +55560,2380813,88,4442,1 +55561,2380814,151,7575,1 +55562,2380842,30,1522,1 +55563,2380848,94,4722,1 +55564,2380848,67,3388,1 +55565,2380848,45,2289,1 +55566,2380860,84,4213,1 +55567,2380860,161,8074,1 +55568,2380863,144,7230,1 +55569,2380956,69,3478,1 +55570,2380993,103,5171,1 +55571,2381376,24,1231,1 +55572,2381760,42,2102,1 +55573,2381784,165,8271,1 +55574,2381787,101,5081,1 +55575,2382246,0,8,1 +55576,2382256,63,3155,1 +55577,2382260,22,1121,1 +55578,2382264,104,5213,1 +55579,2382276,65,3277,1 +55580,2382276,118,5930,1 +55581,2382297,105,5268,1 +55582,2382484,20,1014,1 +55583,2382720,120,6034,1 +55584,2382732,109,5492,1 +55585,2382732,148,7429,1 +55586,2382745,36,1822,1 +55587,2382757,5,285,1 +55588,2382757,170,8524,1 +55589,2382757,159,7974,1 +55590,2382779,122,6103,1 +55591,2382780,7,372,1 +55592,2382781,55,2761,1 +55593,2382852,21,1054,1 +55594,2382852,163,8165,1 +55595,2382924,136,6807,1 +55596,2382968,99,4968,1 +55597,2383240,116,5816,1 +55598,2383288,52,2614,1 +55599,2383419,87,4369,1 +55600,2383680,147,7353,1 +55601,2383691,108,5403,1 +55602,2383692,151,7565,1 +55603,2383692,146,7326,1 +55604,2383692,177,8854,1 +55605,2383692,16,849,1 +55606,2383693,8,401,1 +55607,2383695,127,6365,1 +55608,2383695,7,390,1 +55609,2383701,188,9436,1 +55610,2383704,5,256,1 +55611,2383711,102,5112,1 +55612,2383716,95,4783,1 +55613,2383717,3,169,1 +55614,2383726,144,7211,1 +55615,2383739,134,6721,1 +55616,2383740,168,8430,1 +55617,2383744,70,3517,1 +55618,2383745,125,6262,1 +55619,2383746,123,6159,1 +55620,2383762,75,3779,1 +55621,2383777,54,2706,1 +55622,2383812,96,4839,1 +55623,2383891,144,7220,1 +55624,2383982,124,6235,1 +55625,2384160,57,2856,1 +55626,2384160,85,4299,1 +55627,2384161,16,824,1 +55628,2384162,136,6831,1 +55629,2384169,37,1884,1 +55630,2384172,167,8375,1 +55631,2384184,79,3961,1 +55632,2384196,130,6512,1 +55633,2384196,146,7303,1 +55634,2384196,115,5752,1 +55635,2384199,155,7785,1 +55636,2384209,17,887,1 +55637,2384216,144,7227,1 +55638,2384217,107,5379,1 +55639,2384220,2,142,1 +55640,2384223,40,2049,1 +55641,2384233,80,4040,1 +55642,2384233,85,4287,1 +55643,2384251,70,3532,1 +55644,2384266,83,4153,1 +55645,2384268,107,5367,1 +55646,2384280,65,3262,1 +55647,2384294,168,8443,1 +55648,2384301,159,7981,1 +55649,2384316,61,3078,1 +55650,2384317,67,3357,1 +55651,2384640,116,5835,1 +55652,2384640,152,7607,1 +55653,2384640,38,1912,1 +55654,2384640,186,9328,1 +55655,2384647,44,2209,1 +55656,2384653,119,5952,1 +55657,2384664,173,8689,1 +55658,2384664,176,8836,1 +55659,2384665,6,311,1 +55660,2384665,45,2284,1 +55661,2384668,161,8082,1 +55662,2384676,71,3575,1 +55663,2384694,77,3886,1 +55664,2384696,197,9878,1 +55665,2384701,83,4185,1 +55666,2384702,116,5837,1 +55667,2384724,182,9135,1 +55668,2384736,161,8081,1 +55669,2384770,128,6445,1 +55670,2384870,105,5277,1 +55671,2385120,169,8486,1 +55672,2385120,42,2141,1 +55673,2385120,102,5148,1 +55674,2385120,65,3296,1 +55675,2385120,159,7974,1 +55676,2385120,113,5670,1 +55677,2385120,69,3451,1 +55678,2385120,136,6802,1 +55679,2385121,149,7480,1 +55680,2385121,168,8406,1 +55681,2385123,52,2643,1 +55682,2385123,107,5386,1 +55683,2385132,29,1467,1 +55684,2385132,172,8645,1 +55685,2385132,95,4762,1 +55686,2385132,22,1121,1 +55687,2385132,194,9745,1 +55688,2385133,28,1427,1 +55689,2385144,102,5140,1 +55690,2385144,116,5844,1 +55691,2385144,179,8960,1 +55692,2385145,145,7283,1 +55693,2385145,180,9020,1 +55694,2385145,63,3182,1 +55695,2385148,165,8266,1 +55696,2385153,18,906,1 +55697,2385155,26,1330,1 +55698,2385156,118,5932,1 +55699,2385156,175,8753,1 +55700,2385156,33,1678,1 +55701,2385156,90,4502,1 +55702,2385156,36,1842,1 +55703,2385156,110,5541,1 +55704,2385159,181,9062,1 +55705,2385162,40,2003,1 +55706,2385168,20,1050,1 +55707,2385169,185,9298,1 +55708,2385169,4,225,1 +55709,2385169,23,1162,1 +55710,2385169,138,6950,1 +55711,2385177,68,3413,1 +55712,2385180,171,8588,1 +55713,2385180,60,3014,1 +55714,2385183,16,848,1 +55715,2385191,35,1764,1 +55716,2385191,196,9849,1 +55717,2385193,81,4097,1 +55718,2385194,83,4171,1 +55719,2385211,74,3710,1 +55720,2385228,69,3474,1 +55721,2385240,147,7392,1 +55722,2385241,107,5398,1 +55723,2385247,105,5289,1 +55724,2385253,15,757,1 +55725,2385265,125,6257,1 +55726,2385276,65,3255,1 +55727,2385288,40,2043,1 +55728,2385289,199,9953,1 +55729,2385325,43,2163,1 +55730,2385336,26,1348,1 +55731,2385340,138,6905,1 +55732,2385489,163,8153,1 +55733,2385600,63,3159,1 +55734,2385600,95,4782,1 +55735,2385600,78,3901,1 +55736,2385601,69,3494,1 +55737,2385603,121,6089,1 +55738,2385606,184,9237,1 +55739,2385612,29,1490,1 +55740,2385615,25,1282,1 +55741,2385616,165,8266,1 +55742,2385618,10,542,1 +55743,2385619,26,1339,1 +55744,2385624,43,2156,1 +55745,2385624,118,5946,1 +55746,2385624,109,5499,1 +55747,2385630,160,8035,1 +55748,2385633,136,6816,1 +55749,2385633,110,5537,1 +55750,2385636,57,2858,1 +55751,2385651,131,6599,1 +55752,2385660,175,8798,1 +55753,2385661,109,5478,1 +55754,2385661,161,8093,1 +55755,2385664,169,8460,1 +55756,2385667,14,722,1 +55757,2385697,39,1959,1 +55758,2385708,53,2676,1 +55759,2385709,69,3495,1 +55760,2385709,13,671,1 +55761,2385720,194,9707,1 +55762,2385768,64,3226,1 +55763,2385795,12,648,1 +55764,2385826,35,1753,1 +55765,2385876,71,3574,1 +55766,2386080,20,1021,1 +55767,2386081,178,8941,1 +55768,2386083,188,9402,1 +55769,2386083,53,2660,1 +55770,2386089,162,8137,1 +55771,2386092,34,1741,1 +55772,2386092,63,3151,1 +55773,2386092,5,259,1 +55774,2386092,11,566,1 +55775,2386097,19,953,1 +55776,2386105,117,5887,1 +55777,2386106,52,2647,1 +55778,2386118,97,4864,1 +55779,2386164,64,3226,1 +55780,2386188,102,5128,1 +55781,2386202,145,7299,1 +55782,2386320,6,350,1 +55783,2387051,95,4776,1 +55784,2387067,24,1210,1 +55785,2387067,164,8211,1 +55786,2387078,139,6981,1 +55787,2387088,104,5248,1 +55788,2387112,71,3575,1 +55789,2387601,79,3989,1 +55790,2387632,2,111,1 +55791,2388013,105,5266,1 +55792,2388026,6,340,1 +55793,2388492,17,860,1 +55794,2388993,13,691,1 +55795,2389020,167,8363,1 +55796,2389038,93,4657,1 +55797,2389446,168,8411,1 +55798,2389452,55,2799,1 +55799,2389462,63,3168,1 +55800,2389464,103,5167,1 +55801,2389921,83,4168,1 +55802,2389928,152,7605,1 +55803,2389995,93,4652,1 +55804,2390005,8,430,1 +55805,2390400,136,6819,1 +55806,2390638,117,5879,1 +55807,2390880,46,2327,1 +55808,2390883,62,3120,1 +55809,2390883,105,5296,1 +55810,2390884,186,9333,1 +55811,2390892,11,593,1 +55812,2390898,24,1218,1 +55813,2390952,79,3996,1 +55814,2390964,40,2032,1 +55815,2390977,5,266,1 +55816,2390985,74,3728,1 +55817,2390989,166,8316,1 +55818,2391360,12,614,1 +55819,2391360,27,1366,1 +55820,2391360,189,9495,1 +55821,2391360,167,8380,1 +55822,2391360,42,2129,1 +55823,2391360,110,5518,1 +55824,2391360,168,8418,1 +55825,2391360,186,9316,1 +55826,2391362,90,4540,1 +55827,2391363,199,9997,1 +55828,2391369,161,8093,1 +55829,2391369,53,2686,1 +55830,2391372,173,8676,1 +55831,2391372,152,7604,1 +55832,2391372,149,7496,1 +55833,2391372,151,7579,1 +55834,2391376,116,5820,1 +55835,2391384,155,7791,1 +55836,2391384,192,9627,1 +55837,2391385,145,7261,1 +55838,2391386,0,38,1 +55839,2391386,132,6621,1 +55840,2391393,47,2357,1 +55841,2391396,64,3228,1 +55842,2391399,104,5207,1 +55843,2391399,51,2563,1 +55844,2391400,199,9952,1 +55845,2391404,170,8540,1 +55846,2391405,70,3533,1 +55847,2391405,31,1600,1 +55848,2391420,69,3483,1 +55849,2391420,19,982,1 +55850,2391421,195,9783,1 +55851,2391441,78,3923,1 +55852,2391443,35,1781,1 +55853,2391445,123,6179,1 +55854,2391445,50,2545,1 +55855,2391454,41,2071,1 +55856,2391457,175,8784,1 +55857,2391457,14,701,1 +55858,2391459,57,2887,1 +55859,2391505,94,4711,1 +55860,2391516,63,3190,1 +55861,2391530,92,4605,1 +55862,2391685,110,5525,1 +55863,2391840,183,9197,1 +55864,2391840,51,2591,1 +55865,2391841,135,6797,1 +55866,2391843,89,4499,1 +55867,2391853,6,349,1 +55868,2391868,69,3477,1 +55869,2391888,189,9473,1 +55870,2391888,65,3284,1 +55871,2391900,32,1639,1 +55872,2392323,60,3009,1 +55873,2392329,154,7708,1 +55874,2392332,84,4223,1 +55875,2392344,34,1745,1 +55876,2392360,148,7415,1 +55877,2392380,96,4840,1 +55878,2392405,79,3992,1 +55879,2392815,60,3006,1 +55880,2392816,130,6519,1 +55881,2392824,149,7456,1 +55882,2392825,186,9313,1 +55883,2392844,61,3054,1 +55884,2392849,198,9929,1 +55885,2392884,84,4215,1 +55886,2393289,6,322,1 +55887,2393313,39,1986,1 +55888,2393313,192,9624,1 +55889,2393316,48,2448,1 +55890,2393316,26,1309,1 +55891,2393318,72,3624,1 +55892,2393328,117,5899,1 +55893,2393330,9,465,1 +55894,2393373,20,1017,1 +55895,2393390,27,1399,1 +55896,2393515,84,4204,1 +55897,2393765,116,5833,1 +55898,2393772,84,4227,1 +55899,2393772,3,179,1 +55900,2393775,91,4569,1 +55901,2393784,94,4746,1 +55902,2393784,26,1309,1 +55903,2393784,145,7251,1 +55904,2393785,192,9622,1 +55905,2393787,124,6224,1 +55906,2393797,178,8926,1 +55907,2393799,110,5523,1 +55908,2393811,162,8115,1 +55909,2393811,60,3020,1 +55910,2393815,173,8689,1 +55911,2393845,58,2942,1 +55912,2393893,138,6921,1 +55913,2394255,13,675,1 +55914,2394258,99,4974,1 +55915,2394720,122,6125,1 +55916,2394739,148,7418,1 +55917,2394748,25,1254,1 +55918,2394789,130,6525,1 +55919,2395200,61,3098,1 +55920,2395201,136,6825,1 +55921,2395210,4,202,1 +55922,2395219,18,902,1 +55923,2395224,76,3822,1 +55924,2395236,94,4737,1 +55925,2395236,113,5698,1 +55926,2395248,129,6466,1 +55927,2395258,133,6678,1 +55928,2395305,163,8194,1 +55929,2395392,196,9810,1 +55930,2395465,57,2870,1 +55931,2395729,114,5749,1 +55932,2396172,107,5385,1 +55933,2396173,169,8476,1 +55934,2396175,165,8257,1 +55935,2396189,110,5507,1 +55936,2396191,158,7947,1 +55937,2396205,55,2770,1 +55938,2396217,136,6810,1 +55939,2396220,154,7746,1 +55940,2396220,163,8165,1 +55941,2396268,98,4913,1 +55942,2396270,25,1276,1 +55943,2396289,167,8376,1 +55944,2396345,189,9462,1 +55945,2396484,175,8757,1 +55946,2396641,108,5430,1 +55947,2396664,195,9790,1 +55948,2396667,26,1321,1 +55949,2396671,5,283,1 +55950,2396683,5,273,1 +55951,2396715,182,9113,1 +55952,2396728,139,6953,1 +55953,2397120,27,1385,1 +55954,2397124,70,3550,1 +55955,2397144,65,3272,1 +55956,2397156,86,4308,1 +55957,2397169,44,2221,1 +55958,2397457,80,4041,1 +55959,2397600,39,1951,1 +55960,2397600,142,7108,1 +55961,2397603,103,5164,1 +55962,2397604,56,2819,1 +55963,2397606,148,7432,1 +55964,2397606,154,7718,1 +55965,2397607,48,2417,1 +55966,2397614,126,6319,1 +55967,2397622,20,1033,1 +55968,2397625,29,1492,1 +55969,2397636,184,9244,1 +55970,2397636,170,8508,1 +55971,2397652,49,2500,1 +55972,2397660,43,2192,1 +55973,2397660,3,176,1 +55974,2397662,188,9424,1 +55975,2397662,44,2218,1 +55976,2397676,43,2190,1 +55977,2397687,14,734,1 +55978,2397720,100,5035,1 +55979,2397756,99,4987,1 +55980,2397799,60,3008,1 +55981,2398092,137,6870,1 +55982,2398118,65,3275,1 +55983,2398119,79,3980,1 +55984,2398180,8,424,1 +55985,2398575,147,7369,1 +55986,2399040,3,152,1 +55987,2399040,108,5446,1 +55988,2399040,86,4307,1 +55989,2399040,11,594,1 +55990,2399040,60,3045,1 +55991,2399041,196,9838,1 +55992,2399052,58,2950,1 +55993,2399062,27,1356,1 +55994,2399064,125,6271,1 +55995,2399064,100,5009,1 +55996,2399077,33,1670,1 +55997,2399089,153,7691,1 +55998,2399090,104,5249,1 +55999,2399090,169,8482,1 +56000,2399100,182,9135,1 +56001,2399100,33,1659,1 +56002,2399101,41,2067,1 +56003,2399103,135,6794,1 +56004,2399115,135,6789,1 +56005,2399136,131,6587,1 +56006,2399137,166,8343,1 +56007,2399148,77,3884,1 +56008,2399182,36,1832,1 +56009,2399190,187,9390,1 +56010,2399556,38,1917,1 +56011,2399623,36,1831,1 +56012,2400001,69,3456,1 +56013,2400002,195,9797,1 +56014,2400006,3,189,1 +56015,2400012,20,1047,1 +56016,2400012,58,2934,1 +56017,2400012,134,6734,1 +56018,2400012,107,5372,1 +56019,2400012,95,4788,1 +56020,2400015,121,6061,1 +56021,2400021,107,5351,1 +56022,2400023,118,5907,1 +56023,2400024,98,4925,1 +56024,2400024,88,4426,1 +56025,2400031,156,7850,1 +56026,2400036,22,1106,1 +56027,2400036,88,4403,1 +56028,2400037,111,5559,1 +56029,2400050,113,5700,1 +56030,2400051,20,1045,1 +56031,2400060,41,2057,1 +56032,2400072,30,1507,1 +56033,2400118,53,2672,1 +56034,2400133,175,8771,1 +56035,2400168,1,64,1 +56036,2400205,143,7177,1 +56037,2400960,185,9254,1 +56038,2400960,42,2136,1 +56039,2400967,161,8064,1 +56040,2400973,79,3994,1 +56041,2400973,93,4698,1 +56042,2400975,30,1538,1 +56043,2400975,72,3637,1 +56044,2400975,75,3794,1 +56045,2400981,172,8614,1 +56046,2400983,170,8533,1 +56047,2400996,177,8867,1 +56048,2401009,16,829,1 +56049,2401023,137,6878,1 +56050,2401050,140,7041,1 +56051,2401053,140,7009,1 +56052,2401077,121,6087,1 +56053,2401080,102,5123,1 +56054,2401080,177,8883,1 +56055,2401080,93,4651,1 +56056,2401458,51,2586,1 +56057,2401464,9,489,1 +56058,2401476,35,1794,1 +56059,2401482,36,1848,1 +56060,2401920,154,7724,1 +56061,2401939,7,363,1 +56062,2401944,164,8213,1 +56063,2401958,140,7031,1 +56064,2401980,184,9214,1 +56065,2401983,44,2225,1 +56066,2401992,185,9253,1 +56067,2401992,163,8196,1 +56068,2402004,143,7157,1 +56069,2402029,127,6397,1 +56070,2402088,187,9352,1 +56071,2402400,48,2421,1 +56072,2402400,150,7510,1 +56073,2402421,79,3993,1 +56074,2402424,19,954,1 +56075,2402424,172,8634,1 +56076,2402427,70,3536,1 +56077,2402446,114,5723,1 +56078,2402451,66,3325,1 +56079,2402521,48,2449,1 +56080,2402881,72,3619,1 +56081,2402892,31,1566,1 +56082,2402893,96,4826,1 +56083,2402904,45,2251,1 +56084,2402904,84,4245,1 +56085,2402917,151,7557,1 +56086,2402922,123,6152,1 +56087,2402928,129,6474,1 +56088,2402929,141,7080,1 +56089,2402931,108,5418,1 +56090,2402938,108,5403,1 +56091,2402952,43,2193,1 +56092,2402952,162,8130,1 +56093,2402964,105,5271,1 +56094,2402999,63,3183,1 +56095,2403371,172,8634,1 +56096,2403373,52,2617,1 +56097,2403384,158,7950,1 +56098,2403418,106,5329,1 +56099,2403453,121,6085,1 +56100,2403840,22,1132,1 +56101,2403841,54,2743,1 +56102,2403850,191,9575,1 +56103,2403867,52,2644,1 +56104,2403876,3,182,1 +56105,2403879,29,1486,1 +56106,2403891,29,1495,1 +56107,2403912,40,2007,1 +56108,2403937,115,5797,1 +56109,2403997,6,309,1 +56110,2404320,8,435,1 +56111,2404329,93,4679,1 +56112,2404332,94,4731,1 +56113,2404344,152,7605,1 +56114,2404357,137,6882,1 +56115,2404368,198,9926,1 +56116,2404392,185,9293,1 +56117,2404416,41,2100,1 +56118,2404417,185,9290,1 +56119,2404854,53,2663,1 +56120,2404860,40,2036,1 +56121,2404872,114,5748,1 +56122,2404911,85,4296,1 +56123,2404922,32,1645,1 +56124,2405280,76,3832,1 +56125,2405281,39,1999,1 +56126,2405292,81,4055,1 +56127,2405292,175,8771,1 +56128,2405323,65,3299,1 +56129,2405425,24,1236,1 +56130,2405772,27,1386,1 +56131,2405775,39,1951,1 +56132,2405785,147,7392,1 +56133,2405796,119,5982,1 +56134,2405797,187,9356,1 +56135,2405806,85,4296,1 +56136,2405808,180,9008,1 +56137,2405809,175,8766,1 +56138,2405832,31,1582,1 +56139,2405844,85,4290,1 +56140,2405868,141,7054,1 +56141,2405880,149,7494,1 +56142,2406000,94,4735,1 +56143,2406438,197,9896,1 +56144,2406720,165,8255,1 +56145,2406720,42,2105,1 +56146,2406720,4,240,1 +56147,2406744,114,5749,1 +56148,2406769,187,9396,1 +56149,2406781,167,8372,1 +56150,2406819,44,2242,1 +56151,2406840,42,2123,1 +56152,2406876,48,2403,1 +56153,2407213,75,3791,1 +56154,2407224,186,9318,1 +56155,2407257,21,1089,1 +56156,2407258,173,8697,1 +56157,2407283,64,3231,1 +56158,2407287,118,5909,1 +56159,2407419,38,1935,1 +56160,2407722,178,8949,1 +56161,2407812,133,6692,1 +56162,2408194,133,6693,1 +56163,2408223,170,8534,1 +56164,2408233,131,6555,1 +56165,2408240,161,8068,1 +56166,2408332,27,1363,1 +56167,2408340,150,7542,1 +56168,2408676,188,9407,1 +56169,2408719,51,2565,1 +56170,2409607,39,1960,1 +56171,2409684,37,1883,1 +56172,2410080,31,1577,1 +56173,2410080,188,9440,1 +56174,2410082,24,1234,1 +56175,2410092,95,4760,1 +56176,2410095,192,9648,1 +56177,2410110,43,2186,1 +56178,2410116,139,6953,1 +56179,2410129,139,6970,1 +56180,2410130,149,7498,1 +56181,2410144,167,8372,1 +56182,2410296,66,3308,1 +56183,2410561,65,3299,1 +56184,2410584,192,9613,1 +56185,2410596,1,98,1 +56186,2411090,158,7904,1 +56187,2411100,172,8615,1 +56188,2411524,190,9547,1 +56189,2411533,150,7514,1 +56190,2411536,34,1738,1 +56191,2411548,104,5206,1 +56192,2411556,65,3299,1 +56193,2411583,154,7749,1 +56194,2411613,17,867,1 +56195,2412000,152,7638,1 +56196,2412014,28,1422,1 +56197,2412024,2,107,1 +56198,2412144,157,7892,1 +56199,2412480,74,3720,1 +56200,2412480,56,2829,1 +56201,2412480,99,4986,1 +56202,2412480,7,353,1 +56203,2412480,143,7180,1 +56204,2412480,94,4709,1 +56205,2412483,180,9009,1 +56206,2412484,50,2507,1 +56207,2412484,49,2468,1 +56208,2412484,134,6716,1 +56209,2412492,60,3045,1 +56210,2412493,23,1165,1 +56211,2412493,141,7052,1 +56212,2412496,41,2098,1 +56213,2412498,17,880,1 +56214,2412504,17,861,1 +56215,2412505,50,2510,1 +56216,2412508,196,9821,1 +56217,2412508,75,3764,1 +56218,2412510,78,3931,1 +56219,2412513,108,5423,1 +56220,2412518,182,9116,1 +56221,2412528,117,5898,1 +56222,2412528,143,7167,1 +56223,2412531,96,4827,1 +56224,2412540,49,2453,1 +56225,2412540,86,4323,1 +56226,2412542,96,4828,1 +56227,2412544,125,6256,1 +56228,2412552,30,1550,1 +56229,2412555,165,8272,1 +56230,2412555,114,5740,1 +56231,2412561,187,9379,1 +56232,2412564,129,6490,1 +56233,2412570,84,4236,1 +56234,2412577,87,4392,1 +56235,2412588,134,6749,1 +56236,2412590,46,2310,1 +56237,2412608,94,4719,1 +56238,2412624,41,2069,1 +56239,2412649,111,5578,1 +56240,2412697,197,9877,1 +56241,2412720,38,1950,1 +56242,2412730,37,1884,1 +56243,2413950,143,7163,1 +56244,2413956,24,1202,1 +56245,2413968,68,3435,1 +56246,2413990,138,6916,1 +56247,2414025,76,3822,1 +56248,2414400,38,1944,1 +56249,2414400,157,7866,1 +56250,2414411,170,8530,1 +56251,2414412,30,1504,1 +56252,2414412,56,2814,1 +56253,2414414,23,1167,1 +56254,2414417,60,3034,1 +56255,2414418,136,6823,1 +56256,2414424,24,1222,1 +56257,2414424,166,8305,1 +56258,2414424,77,3866,1 +56259,2414424,12,615,1 +56260,2414426,95,4794,1 +56261,2414430,38,1923,1 +56262,2414433,71,3570,1 +56263,2414437,53,2682,1 +56264,2414469,75,3767,1 +56265,2414472,96,4811,1 +56266,2414472,175,8784,1 +56267,2414484,109,5477,1 +56268,2414484,177,8892,1 +56269,2414487,64,3232,1 +56270,2414489,153,7665,1 +56271,2414496,75,3766,1 +56272,2414496,124,6232,1 +56273,2414496,137,6870,1 +56274,2414508,11,575,1 +56275,2414521,164,8232,1 +56276,2414538,44,2241,1 +56277,2414556,62,3102,1 +56278,2414556,172,8619,1 +56279,2414568,152,7617,1 +56280,2414580,98,4914,1 +56281,2414880,79,3982,1 +56282,2414880,155,7769,1 +56283,2414883,113,5700,1 +56284,2414884,3,172,1 +56285,2414889,5,293,1 +56286,2414892,90,4536,1 +56287,2414892,123,6186,1 +56288,2414893,186,9310,1 +56289,2414893,22,1115,1 +56290,2414898,108,5428,1 +56291,2414905,54,2714,1 +56292,2414916,77,3862,1 +56293,2414928,30,1542,1 +56294,2414931,48,2404,1 +56295,2414937,114,5747,1 +56296,2414940,60,3050,1 +56297,2414970,191,9577,1 +56298,2415360,142,7148,1 +56299,2415361,149,7455,1 +56300,2415361,145,7284,1 +56301,2415386,183,9169,1 +56302,2415396,87,4374,1 +56303,2415399,182,9136,1 +56304,2415417,160,8027,1 +56305,2415417,89,4492,1 +56306,2415444,25,1251,1 +56307,2415450,25,1252,1 +56308,2415468,108,5416,1 +56309,2415861,154,7733,1 +56310,2415864,3,190,1 +56311,2415876,92,4623,1 +56312,2415949,55,2799,1 +56313,2415950,152,7645,1 +56314,2416339,144,7223,1 +56315,2416800,21,1060,1 +56316,2416800,70,3531,1 +56317,2416800,175,8760,1 +56318,2416800,47,2391,1 +56319,2416801,123,6178,1 +56320,2416803,71,3559,1 +56321,2416807,32,1609,1 +56322,2416807,196,9834,1 +56323,2416812,7,366,1 +56324,2416812,199,9969,1 +56325,2416812,75,3785,1 +56326,2416812,181,9068,1 +56327,2416812,96,4818,1 +56328,2416812,169,8472,1 +56329,2416812,122,6115,1 +56330,2416815,77,3890,1 +56331,2416822,24,1209,1 +56332,2416823,14,732,1 +56333,2416824,155,7796,1 +56334,2416824,174,8710,1 +56335,2416824,148,7421,1 +56336,2416825,88,4438,1 +56337,2416825,169,8500,1 +56338,2416828,89,4496,1 +56339,2416833,12,611,1 +56340,2416833,32,1628,1 +56341,2416836,83,4153,1 +56342,2416840,6,339,1 +56343,2416854,159,7994,1 +56344,2416864,31,1573,1 +56345,2416869,110,5515,1 +56346,2416872,147,7355,1 +56347,2416873,194,9708,1 +56348,2416878,78,3913,1 +56349,2416890,7,388,1 +56350,2416894,83,4160,1 +56351,2416896,87,4364,1 +56352,2416896,132,6605,1 +56353,2416905,143,7173,1 +56354,2416908,117,5863,1 +56355,2416910,199,9981,1 +56356,2416923,11,587,1 +56357,2416934,21,1063,1 +56358,2416943,175,8783,1 +56359,2416944,157,7854,1 +56360,2416952,36,1826,1 +56361,2416974,199,9973,1 +56362,2417034,25,1274,1 +56363,2417074,72,3628,1 +56364,2417308,41,2091,1 +56365,2417354,70,3503,1 +56366,2417760,174,8716,1 +56367,2417761,167,8381,1 +56368,2417784,47,2368,1 +56369,2417788,160,8012,1 +56370,2418240,139,6998,1 +56371,2418252,165,8300,1 +56372,2418261,196,9820,1 +56373,2418278,143,7187,1 +56374,2418289,145,7281,1 +56375,2418300,44,2220,1 +56376,2418336,86,4333,1 +56377,2418348,119,5975,1 +56378,2418350,174,8703,1 +56379,2418726,26,1324,1 +56380,2419218,22,1103,1 +56381,2419224,105,5277,1 +56382,2419680,89,4453,1 +56383,2419680,52,2612,1 +56384,2419681,152,7616,1 +56385,2419683,68,3424,1 +56386,2419692,173,8658,1 +56387,2419694,101,5076,1 +56388,2419704,83,4154,1 +56389,2419712,3,159,1 +56390,2419725,177,8891,1 +56391,2419729,124,6224,1 +56392,2420160,57,2884,1 +56393,2420185,24,1233,1 +56394,2420260,50,2503,1 +56395,2420268,129,6500,1 +56396,2420316,96,4829,1 +56397,2420640,139,6985,1 +56398,2420640,187,9379,1 +56399,2420640,40,2033,1 +56400,2420644,68,3449,1 +56401,2420646,159,7982,1 +56402,2420649,118,5905,1 +56403,2420652,127,6354,1 +56404,2420652,152,7615,1 +56405,2420652,177,8893,1 +56406,2420653,61,3085,1 +56407,2420653,62,3148,1 +56408,2420653,145,7278,1 +56409,2420655,104,5243,1 +56410,2420655,182,9144,1 +56411,2420655,56,2807,1 +56412,2420661,67,3368,1 +56413,2420665,157,7862,1 +56414,2420679,14,720,1 +56415,2420688,71,3590,1 +56416,2420699,185,9277,1 +56417,2420700,77,3871,1 +56418,2420702,110,5502,1 +56419,2420712,39,1996,1 +56420,2420712,168,8405,1 +56421,2420712,153,7691,1 +56422,2420718,66,3349,1 +56423,2420737,116,5824,1 +56424,2420778,122,6142,1 +56425,2420783,31,1593,1 +56426,2421120,62,3138,1 +56427,2421121,138,6935,1 +56428,2421121,103,5156,1 +56429,2421124,73,3688,1 +56430,2421126,9,467,1 +56431,2421126,121,6060,1 +56432,2421132,8,412,1 +56433,2421133,0,22,1 +56434,2421133,104,5221,1 +56435,2421139,183,9181,1 +56436,2421144,159,7968,1 +56437,2421145,148,7412,1 +56438,2421153,105,5265,1 +56439,2421154,32,1638,1 +56440,2421156,37,1858,1 +56441,2421165,153,7688,1 +56442,2421168,105,5297,1 +56443,2421168,51,2595,1 +56444,2421169,125,6283,1 +56445,2421184,113,5661,1 +56446,2421213,80,4004,1 +56447,2421240,81,4083,1 +56448,2421327,43,2155,1 +56449,2421624,93,4654,1 +56450,2421648,7,360,1 +56451,2421651,7,392,1 +56452,2421655,117,5897,1 +56453,2421666,186,9332,1 +56454,2421669,113,5657,1 +56455,2421708,147,7361,1 +56456,2421753,41,2076,1 +56457,2421770,76,3810,1 +56458,2421913,4,241,1 +56459,2422080,185,9295,1 +56460,2422086,18,942,1 +56461,2422086,80,4018,1 +56462,2422098,61,3098,1 +56463,2422104,193,9685,1 +56464,2422125,43,2159,1 +56465,2422128,1,56,1 +56466,2422131,52,2641,1 +56467,2422133,89,4498,1 +56468,2422193,15,780,1 +56469,2422560,20,1047,1 +56470,2422560,21,1076,1 +56471,2422560,171,8569,1 +56472,2422560,10,520,1 +56473,2422560,115,5790,1 +56474,2422560,184,9230,1 +56475,2422560,124,6221,1 +56476,2422561,1,94,1 +56477,2422561,20,1008,1 +56478,2422572,124,6236,1 +56479,2422572,191,9576,1 +56480,2422572,122,6119,1 +56481,2422572,134,6733,1 +56482,2422572,102,5144,1 +56483,2422573,181,9078,1 +56484,2422574,27,1387,1 +56485,2422575,164,8248,1 +56486,2422576,67,3385,1 +56487,2422581,108,5417,1 +56488,2422584,19,993,1 +56489,2422584,80,4029,1 +56490,2422584,137,6872,1 +56491,2422585,107,5400,1 +56492,2422585,182,9118,1 +56493,2422590,59,2961,1 +56494,2422593,63,3157,1 +56495,2422596,48,2446,1 +56496,2422597,39,1955,1 +56497,2422599,194,9717,1 +56498,2422599,62,3108,1 +56499,2422599,174,8707,1 +56500,2422600,9,455,1 +56501,2422606,101,5085,1 +56502,2422608,199,9987,1 +56503,2422608,31,1570,1 +56504,2422608,176,8832,1 +56505,2422609,158,7928,1 +56506,2422611,158,7902,1 +56507,2422616,99,4999,1 +56508,2422617,74,3704,1 +56509,2422617,67,3355,1 +56510,2422620,74,3730,1 +56511,2422621,20,1003,1 +56512,2422623,111,5555,1 +56513,2422633,58,2917,1 +56514,2422638,62,3110,1 +56515,2422638,114,5725,1 +56516,2422644,131,6590,1 +56517,2422644,68,3444,1 +56518,2422644,185,9264,1 +56519,2422644,60,3006,1 +56520,2422645,70,3533,1 +56521,2422653,10,527,1 +56522,2422657,25,1298,1 +56523,2422666,72,3650,1 +56524,2422669,111,5579,1 +56525,2422669,95,4787,1 +56526,2422674,47,2367,1 +56527,2422680,31,1551,1 +56528,2422680,36,1804,1 +56529,2422680,170,8520,1 +56530,2422683,128,6434,1 +56531,2422692,139,6998,1 +56532,2422692,5,260,1 +56533,2422707,17,863,1 +56534,2422717,10,544,1 +56535,2422741,10,545,1 +56536,2422824,178,8932,1 +56537,2423040,175,8767,1 +56538,2423041,160,8050,1 +56539,2423041,27,1352,1 +56540,2423043,105,5277,1 +56541,2423045,198,9914,1 +56542,2423052,164,8233,1 +56543,2423059,6,323,1 +56544,2423064,143,7156,1 +56545,2423065,160,8041,1 +56546,2423079,128,6438,1 +56547,2423085,15,753,1 +56548,2423088,13,675,1 +56549,2423088,5,287,1 +56550,2423097,166,8312,1 +56551,2423098,133,6656,1 +56552,2423119,189,9490,1 +56553,2423142,117,5890,1 +56554,2423156,142,7140,1 +56555,2423161,123,6199,1 +56556,2423196,0,5,1 +56557,2423232,21,1066,1 +56558,2423235,83,4186,1 +56559,2423245,196,9825,1 +56560,2423584,69,3481,1 +56561,2423592,192,9606,1 +56562,2423592,72,3628,1 +56563,2424000,143,7187,1 +56564,2424000,70,3509,1 +56565,2424093,194,9732,1 +56566,2424481,29,1458,1 +56567,2424489,77,3851,1 +56568,2424499,63,3180,1 +56569,2424504,96,4834,1 +56570,2424507,47,2352,1 +56571,2424516,147,7381,1 +56572,2424552,61,3051,1 +56573,2424565,169,8486,1 +56574,2424576,8,407,1 +56575,2424603,168,8449,1 +56576,2424648,166,8343,1 +56577,2424961,126,6331,1 +56578,2424970,35,1798,1 +56579,2424972,104,5210,1 +56580,2424972,147,7386,1 +56581,2424972,89,4494,1 +56582,2424973,137,6883,1 +56583,2424975,157,7855,1 +56584,2424975,71,3551,1 +56585,2424976,31,1598,1 +56586,2424984,31,1553,1 +56587,2424986,143,7185,1 +56588,2424996,139,6956,1 +56589,2424996,90,4549,1 +56590,2424996,15,773,1 +56591,2425005,138,6948,1 +56592,2425008,40,2041,1 +56593,2425010,125,6287,1 +56594,2425029,46,2319,1 +56595,2425054,171,8576,1 +56596,2425105,52,2630,1 +56597,2425116,170,8546,1 +56598,2425441,22,1149,1 +56599,2425441,92,4616,1 +56600,2425500,166,8328,1 +56601,2425514,151,7563,1 +56602,2425537,35,1799,1 +56603,2425959,32,1614,1 +56604,2425968,115,5760,1 +56605,2426004,92,4629,1 +56606,2426400,130,6528,1 +56607,2426451,108,5438,1 +56608,2426585,135,6793,1 +56609,2426880,109,5463,1 +56610,2426880,35,1777,1 +56611,2426881,90,4507,1 +56612,2426884,40,2049,1 +56613,2426892,98,4925,1 +56614,2426892,196,9844,1 +56615,2426895,7,369,1 +56616,2426901,178,8941,1 +56617,2426904,27,1383,1 +56618,2426904,1,91,1 +56619,2426905,184,9211,1 +56620,2426905,72,3609,1 +56621,2426906,99,4984,1 +56622,2426916,42,2126,1 +56623,2426922,83,4166,1 +56624,2426930,9,489,1 +56625,2426931,166,8303,1 +56626,2426941,97,4887,1 +56627,2426953,140,7036,1 +56628,2426958,165,8279,1 +56629,2426976,37,1895,1 +56630,2427027,91,4585,1 +56631,2427072,57,2852,1 +56632,2427072,184,9208,1 +56633,2427078,82,4107,1 +56634,2427363,105,5264,1 +56635,2427373,69,3475,1 +56636,2427384,184,9243,1 +56637,2427390,2,134,1 +56638,2427400,45,2253,1 +56639,2427409,88,4438,1 +56640,2427420,130,6533,1 +56641,2427423,148,7405,1 +56642,2427426,31,1568,1 +56643,2427426,65,3290,1 +56644,2427456,150,7539,1 +56645,2427459,191,9559,1 +56646,2427469,137,6857,1 +56647,2427492,131,6583,1 +56648,2427840,54,2705,1 +56649,2427840,139,6967,1 +56650,2427841,156,7824,1 +56651,2427852,149,7466,1 +56652,2427852,72,3626,1 +56653,2427853,150,7524,1 +56654,2427855,96,4809,1 +56655,2427855,157,7862,1 +56656,2427864,118,5903,1 +56657,2427876,186,9339,1 +56658,2427877,126,6314,1 +56659,2427879,88,4450,1 +56660,2427879,11,582,1 +56661,2427897,110,5525,1 +56662,2427900,95,4756,1 +56663,2427900,196,9811,1 +56664,2427903,53,2698,1 +56665,2427911,165,8267,1 +56666,2427912,47,2382,1 +56667,2427912,50,2544,1 +56668,2427924,98,4936,1 +56669,2427938,45,2260,1 +56670,2427939,117,5888,1 +56671,2427961,30,1536,1 +56672,2427984,109,5487,1 +56673,2427985,58,2940,1 +56674,2429280,196,9833,1 +56675,2429280,141,7072,1 +56676,2429281,24,1236,1 +56677,2429295,126,6309,1 +56678,2429298,6,334,1 +56679,2429304,133,6686,1 +56680,2429310,193,9687,1 +56681,2429313,25,1292,1 +56682,2429316,9,499,1 +56683,2429317,46,2308,1 +56684,2429317,16,847,1 +56685,2429328,152,7623,1 +56686,2429334,20,1033,1 +56687,2429341,93,4671,1 +56688,2429353,74,3743,1 +56689,2429364,178,8904,1 +56690,2429412,152,7615,1 +56691,2429520,104,5231,1 +56692,2429765,25,1286,1 +56693,2429772,136,6828,1 +56694,2429808,189,9466,1 +56695,2429865,38,1919,1 +56696,2430240,44,2215,1 +56697,2430241,108,5432,1 +56698,2430242,63,3191,1 +56699,2430244,40,2026,1 +56700,2430258,34,1744,1 +56701,2430264,99,4982,1 +56702,2430264,78,3944,1 +56703,2430265,165,8261,1 +56704,2430273,54,2737,1 +56705,2430276,10,517,1 +56706,2430276,109,5453,1 +56707,2430276,109,5478,1 +56708,2430276,50,2519,1 +56709,2430276,157,7882,1 +56710,2430276,21,1063,1 +56711,2430277,79,3956,1 +56712,2430282,149,7478,1 +56713,2430291,4,229,1 +56714,2430300,32,1607,1 +56715,2430300,44,2229,1 +56716,2430319,165,8296,1 +56717,2430324,31,1551,1 +56718,2430325,78,3908,1 +56719,2430337,101,5079,1 +56720,2430348,49,2451,1 +56721,2430352,34,1710,1 +56722,2430396,65,3292,1 +56723,2430396,140,7007,1 +56724,2430429,190,9516,1 +56725,2430720,186,9326,1 +56726,2430738,162,8143,1 +56727,2430816,154,7738,1 +56728,2430900,116,5803,1 +56729,2430900,41,2058,1 +56730,2431201,180,9024,1 +56731,2431201,84,4220,1 +56732,2431209,76,3813,1 +56733,2431212,165,8295,1 +56734,2431217,52,2636,1 +56735,2431217,23,1199,1 +56736,2431224,98,4938,1 +56737,2431228,191,9579,1 +56738,2431248,47,2358,1 +56739,2431263,87,4390,1 +56740,2431273,113,5697,1 +56741,2431284,155,7774,1 +56742,2431680,20,1043,1 +56743,2431830,17,872,1 +56744,2432160,75,3770,1 +56745,2432161,190,9540,1 +56746,2432172,13,684,1 +56747,2432184,155,7776,1 +56748,2432185,2,146,1 +56749,2432186,190,9547,1 +56750,2432193,59,3000,1 +56751,2432206,75,3754,1 +56752,2432209,7,359,1 +56753,2432643,170,8509,1 +56754,2432653,167,8360,1 +56755,2432809,107,5397,1 +56756,2433120,116,5814,1 +56757,2433156,111,5595,1 +56758,2433160,6,348,1 +56759,2433169,41,2097,1 +56760,2433231,164,8247,1 +56761,2433600,160,8016,1 +56762,2433600,111,5572,1 +56763,2433600,192,9647,1 +56764,2433606,195,9754,1 +56765,2433612,101,5051,1 +56766,2433612,163,8160,1 +56767,2433612,156,7814,1 +56768,2433624,48,2409,1 +56769,2433624,93,4699,1 +56770,2433637,47,2389,1 +56771,2433642,182,9134,1 +56772,2433648,12,611,1 +56773,2433651,152,7608,1 +56774,2433670,129,6472,1 +56775,2433675,84,4244,1 +56776,2433676,13,697,1 +56777,2433684,89,4472,1 +56778,2433696,105,5286,1 +56779,2433696,10,539,1 +56780,2433696,85,4259,1 +56781,2433732,105,5274,1 +56782,2433733,61,3062,1 +56783,2433840,104,5237,1 +56784,2434110,29,1472,1 +56785,2435040,105,5288,1 +56786,2435040,179,8999,1 +56787,2435040,175,8781,1 +56788,2435041,137,6860,1 +56789,2435043,35,1771,1 +56790,2435044,180,9031,1 +56791,2435044,126,6335,1 +56792,2435052,118,5939,1 +56793,2435052,174,8710,1 +56794,2435052,9,453,1 +56795,2435052,87,4363,1 +56796,2435052,120,6034,1 +56797,2435052,171,8580,1 +56798,2435054,78,3921,1 +56799,2435055,75,3764,1 +56800,2435055,86,4303,1 +56801,2435064,27,1385,1 +56802,2435064,153,7668,1 +56803,2435064,102,5136,1 +56804,2435064,34,1718,1 +56805,2435065,25,1265,1 +56806,2435066,88,4429,1 +56807,2435067,198,9948,1 +56808,2435076,44,2202,1 +56809,2435076,125,6283,1 +56810,2435077,83,4183,1 +56811,2435081,64,3242,1 +56812,2435082,66,3317,1 +56813,2435082,17,879,1 +56814,2435083,52,2633,1 +56815,2435088,76,3807,1 +56816,2435089,133,6676,1 +56817,2435091,116,5801,1 +56818,2435100,151,7559,1 +56819,2435100,166,8341,1 +56820,2435100,126,6349,1 +56821,2435102,24,1239,1 +56822,2435103,76,3810,1 +56823,2435109,20,1035,1 +56824,2435113,187,9356,1 +56825,2435114,98,4934,1 +56826,2435115,134,6723,1 +56827,2435120,104,5208,1 +56828,2435125,140,7018,1 +56829,2435125,13,690,1 +56830,2435126,5,258,1 +56831,2435139,178,8938,1 +56832,2435160,85,4275,1 +56833,2435161,121,6064,1 +56834,2435184,131,6599,1 +56835,2435185,20,1017,1 +56836,2435190,152,7648,1 +56837,2435196,158,7904,1 +56838,2435233,20,1025,1 +56839,2435242,10,537,1 +56840,2435270,148,7408,1 +56841,2435355,97,4866,1 +56842,2435538,169,8469,1 +56843,2436027,188,9441,1 +56844,2436048,88,4440,1 +56845,2436054,13,688,1 +56846,2436144,159,7959,1 +56847,2436480,26,1331,1 +56848,2436480,58,2911,1 +56849,2436481,194,9704,1 +56850,2436482,135,6776,1 +56851,2436483,80,4029,1 +56852,2436483,123,6161,1 +56853,2436492,166,8325,1 +56854,2436492,13,655,1 +56855,2436492,81,4058,1 +56856,2436495,34,1718,1 +56857,2436498,157,7852,1 +56858,2436504,137,6868,1 +56859,2436504,194,9733,1 +56860,2436504,100,5038,1 +56861,2436504,149,7487,1 +56862,2436505,165,8292,1 +56863,2436516,165,8259,1 +56864,2436517,112,5638,1 +56865,2436528,146,7349,1 +56866,2436531,64,3219,1 +56867,2436564,79,3960,1 +56868,2436565,145,7264,1 +56869,2436568,36,1844,1 +56870,2436579,175,8778,1 +56871,2436600,21,1062,1 +56872,2436600,2,126,1 +56873,2436610,20,1041,1 +56874,2436660,99,4993,1 +56875,2436768,16,827,1 +56876,2436985,146,7342,1 +56877,2436996,7,372,1 +56878,2437069,156,7813,1 +56879,2437440,17,878,1 +56880,2437446,147,7354,1 +56881,2437446,54,2740,1 +56882,2437446,80,4036,1 +56883,2437455,109,5481,1 +56884,2437461,174,8747,1 +56885,2437464,115,5767,1 +56886,2437464,7,354,1 +56887,2437473,2,109,1 +56888,2437560,193,9655,1 +56889,2437878,58,2923,1 +56890,2437920,55,2787,1 +56891,2437921,34,1706,1 +56892,2437921,119,5999,1 +56893,2437931,168,8405,1 +56894,2437932,30,1532,1 +56895,2437932,126,6331,1 +56896,2437932,63,3188,1 +56897,2437932,13,656,1 +56898,2437944,144,7232,1 +56899,2437944,76,3811,1 +56900,2437950,72,3639,1 +56901,2437956,184,9233,1 +56902,2437957,152,7633,1 +56903,2437968,21,1080,1 +56904,2437968,175,8762,1 +56905,2437969,151,7570,1 +56906,2438005,194,9721,1 +56907,2438005,67,3361,1 +56908,2438017,123,6191,1 +56909,2438019,186,9339,1 +56910,2438076,19,975,1 +56911,2438137,39,1952,1 +56912,2438241,54,2741,1 +56913,2438400,79,3995,1 +56914,2438400,50,2509,1 +56915,2438400,136,6836,1 +56916,2438401,56,2845,1 +56917,2438409,150,7540,1 +56918,2438412,118,5905,1 +56919,2438416,34,1729,1 +56920,2438424,7,369,1 +56921,2438426,16,807,1 +56922,2438427,53,2698,1 +56923,2438436,38,1902,1 +56924,2438439,33,1679,1 +56925,2438448,119,5970,1 +56926,2438451,113,5699,1 +56927,2438452,26,1336,1 +56928,2438508,179,8955,1 +56929,2438652,145,7298,1 +56930,2438881,97,4856,1 +56931,2438883,168,8439,1 +56932,2438884,100,5046,1 +56933,2438887,145,7258,1 +56934,2438892,55,2767,1 +56935,2438892,104,5207,1 +56936,2438892,31,1575,1 +56937,2438893,190,9515,1 +56938,2438894,73,3655,1 +56939,2438896,69,3475,1 +56940,2438904,75,3752,1 +56941,2438904,109,5466,1 +56942,2438907,57,2867,1 +56943,2438914,91,4579,1 +56944,2438916,130,6534,1 +56945,2438917,163,8187,1 +56946,2438928,123,6153,1 +56947,2438928,6,345,1 +56948,2438934,178,8936,1 +56949,2438943,150,7506,1 +56950,2438946,164,8217,1 +56951,2438968,96,4822,1 +56952,2439000,137,6890,1 +56953,2439001,62,3136,1 +56954,2439024,119,5976,1 +56955,2439025,65,3251,1 +56956,2439072,47,2373,1 +56957,2439087,67,3386,1 +56958,2439191,44,2233,1 +56959,2439360,150,7527,1 +56960,2439360,45,2273,1 +56961,2439361,36,1818,1 +56962,2439361,176,8815,1 +56963,2439362,109,5477,1 +56964,2439371,3,200,1 +56965,2439384,147,7375,1 +56966,2439385,197,9898,1 +56967,2439387,150,7522,1 +56968,2439392,49,2497,1 +56969,2439393,105,5251,1 +56970,2439397,85,4265,1 +56971,2439398,99,4961,1 +56972,2439405,108,5403,1 +56973,2439409,89,4455,1 +56974,2439410,127,6364,1 +56975,2439411,24,1209,1 +56976,2439420,116,5845,1 +56977,2439432,109,5488,1 +56978,2439450,77,3871,1 +56979,2439450,195,9761,1 +56980,2439459,78,3903,1 +56981,2439468,154,7750,1 +56982,2439528,181,9057,1 +56983,2439840,11,552,1 +56984,2439841,41,2097,1 +56985,2439852,37,1874,1 +56986,2439852,37,1861,1 +56987,2439864,189,9456,1 +56988,2439864,105,5289,1 +56989,2439865,174,8746,1 +56990,2439866,87,4385,1 +56991,2439908,21,1055,1 +56992,2439912,165,8291,1 +56993,2439925,99,4960,1 +56994,2440002,80,4040,1 +56995,2440032,15,782,1 +56996,2440326,129,6453,1 +56997,2440332,83,4193,1 +56998,2440353,37,1857,1 +56999,2440800,163,8186,1 +57000,2440812,169,8478,1 +57001,2440815,102,5134,1 +57002,2440827,120,6049,1 +57003,2440836,59,2953,1 +57004,2440842,111,5553,1 +57005,2440861,174,8701,1 +57006,2440872,35,1763,1 +57007,2440907,93,4677,1 +57008,2441285,46,2317,1 +57009,2441286,36,1801,1 +57010,2441289,93,4681,1 +57011,2441289,133,6697,1 +57012,2441298,140,7017,1 +57013,2441304,130,6538,1 +57014,2441316,192,9621,1 +57015,2441340,46,2331,1 +57016,2441340,153,7667,1 +57017,2441356,140,7028,1 +57018,2441365,62,3140,1 +57019,2441460,68,3415,1 +57020,2441472,164,8246,1 +57021,2441784,124,6225,1 +57022,2441784,121,6066,1 +57023,2441785,194,9722,1 +57024,2441794,15,757,1 +57025,2441796,137,6858,1 +57026,2441862,22,1108,1 +57027,2441868,177,8876,1 +57028,2441940,160,8028,1 +57029,2442265,22,1111,1 +57030,2442276,50,2504,1 +57031,2442921,78,3909,1 +57032,2443200,184,9219,1 +57033,2443200,119,5961,1 +57034,2443201,136,6841,1 +57035,2443201,139,6965,1 +57036,2443212,181,9051,1 +57037,2443215,18,910,1 +57038,2443224,90,4508,1 +57039,2443237,20,1026,1 +57040,2443260,105,5295,1 +57041,2443681,53,2690,1 +57042,2443692,178,8928,1 +57043,2443692,123,6171,1 +57044,2443723,67,3396,1 +57045,2443729,119,5987,1 +57046,2443734,8,403,1 +57047,2443777,197,9892,1 +57048,2443788,190,9541,1 +57049,2443815,24,1247,1 +57050,2443815,162,8119,1 +57051,2443830,178,8945,1 +57052,2444245,149,7474,1 +57053,2444270,41,2099,1 +57054,2444640,16,826,1 +57055,2444679,122,6133,1 +57056,2444692,99,4998,1 +57057,2444721,30,1515,1 +57058,2444785,140,7031,1 +57059,2445060,40,2020,1 +57060,2445120,25,1266,1 +57061,2445124,47,2385,1 +57062,2445603,120,6024,1 +57063,2445648,5,286,1 +57064,2446080,123,6174,1 +57065,2446111,45,2259,1 +57066,2446113,96,4844,1 +57067,2446116,113,5678,1 +57068,2446116,90,4538,1 +57069,2446560,174,8721,1 +57070,2446560,69,3500,1 +57071,2446560,185,9261,1 +57072,2446560,13,695,1 +57073,2446560,93,4665,1 +57074,2446560,85,4267,1 +57075,2446560,152,7645,1 +57076,2446561,77,3889,1 +57077,2446561,63,3200,1 +57078,2446561,105,5277,1 +57079,2446561,116,5819,1 +57080,2446562,42,2117,1 +57081,2446563,62,3134,1 +57082,2446563,101,5068,1 +57083,2446566,192,9627,1 +57084,2446566,193,9681,1 +57085,2446569,137,6882,1 +57086,2446572,76,3840,1 +57087,2446572,115,5768,1 +57088,2446572,104,5216,1 +57089,2446573,131,6578,1 +57090,2446573,88,4425,1 +57091,2446574,102,5124,1 +57092,2446575,179,8971,1 +57093,2446575,135,6779,1 +57094,2446578,26,1322,1 +57095,2446581,109,5489,1 +57096,2446582,28,1429,1 +57097,2446582,85,4279,1 +57098,2446584,54,2743,1 +57099,2446584,146,7348,1 +57100,2446585,169,8481,1 +57101,2446593,171,8594,1 +57102,2446596,50,2530,1 +57103,2446596,10,528,1 +57104,2446596,98,4924,1 +57105,2446596,37,1875,1 +57106,2446596,160,8039,1 +57107,2446596,15,776,1 +57108,2446597,95,4793,1 +57109,2446597,72,3642,1 +57110,2446599,32,1624,1 +57111,2446605,170,8546,1 +57112,2446605,142,7127,1 +57113,2446608,68,3441,1 +57114,2446608,101,5079,1 +57115,2446608,61,3059,1 +57116,2446610,172,8645,1 +57117,2446611,144,7230,1 +57118,2446615,133,6654,1 +57119,2446617,99,4973,1 +57120,2446620,40,2030,1 +57121,2446622,105,5263,1 +57122,2446633,41,2077,1 +57123,2446641,174,8710,1 +57124,2446644,139,6959,1 +57125,2446645,2,108,1 +57126,2446645,66,3333,1 +57127,2446647,86,4331,1 +57128,2446656,16,841,1 +57129,2446656,195,9778,1 +57130,2446664,71,3572,1 +57131,2446668,78,3901,1 +57132,2446695,90,4520,1 +57133,2446713,143,7193,1 +57134,2446729,144,7206,1 +57135,2446737,97,4873,1 +57136,2446740,75,3770,1 +57137,2446848,113,5653,1 +57138,2446848,63,3162,1 +57139,2446872,30,1515,1 +57140,2447040,75,3752,1 +57141,2447040,4,235,1 +57142,2447040,75,3791,1 +57143,2447041,86,4326,1 +57144,2447041,92,4627,1 +57145,2447045,185,9296,1 +57146,2447046,114,5745,1 +57147,2447046,35,1780,1 +57148,2447049,10,509,1 +57149,2447052,30,1549,1 +57150,2447052,152,7611,1 +57151,2447052,146,7336,1 +57152,2447052,133,6689,1 +57153,2447052,187,9372,1 +57154,2447054,158,7930,1 +57155,2447055,159,7991,1 +57156,2447056,140,7047,1 +57157,2447057,42,2128,1 +57158,2447061,125,6285,1 +57159,2447062,78,3912,1 +57160,2447065,22,1129,1 +57161,2447077,153,7675,1 +57162,2447080,117,5862,1 +57163,2447081,159,7967,1 +57164,2447082,50,2514,1 +57165,2447088,177,8887,1 +57166,2447088,42,2105,1 +57167,2447089,164,8201,1 +57168,2447091,165,8278,1 +57169,2447094,99,4996,1 +57170,2447096,35,1792,1 +57171,2447100,184,9229,1 +57172,2447121,110,5530,1 +57173,2447136,58,2918,1 +57174,2447136,42,2101,1 +57175,2447137,104,5221,1 +57176,2447137,166,8334,1 +57177,2447143,13,655,1 +57178,2447173,38,1904,1 +57179,2447173,18,944,1 +57180,2447181,115,5780,1 +57181,2447211,93,4700,1 +57182,2447229,47,2370,1 +57183,2447408,122,6108,1 +57184,2447520,9,495,1 +57185,2447530,114,5732,1 +57186,2447532,65,3296,1 +57187,2447547,69,3466,1 +57188,2447556,26,1330,1 +57189,2447568,165,8285,1 +57190,2447571,88,4447,1 +57191,2447724,161,8071,1 +57192,2448000,23,1184,1 +57193,2448000,69,3466,1 +57194,2448001,83,4195,1 +57195,2448014,136,6850,1 +57196,2448015,148,7401,1 +57197,2448025,197,9873,1 +57198,2448027,53,2689,1 +57199,2448060,155,7785,1 +57200,2448081,87,4386,1 +57201,2448084,95,4793,1 +57202,2448096,67,3351,1 +57203,2448109,165,8259,1 +57204,2448481,83,4170,1 +57205,2448528,61,3082,1 +57206,2448540,128,6416,1 +57207,2448637,144,7242,1 +57208,2448661,102,5120,1 +57209,2448970,142,7129,1 +57210,2448972,151,7591,1 +57211,2448972,124,6201,1 +57212,2448972,9,482,1 +57213,2448981,67,3374,1 +57214,2448985,176,8817,1 +57215,2448990,118,5930,1 +57216,2448993,97,4855,1 +57217,2449053,157,7879,1 +57218,2449179,179,8987,1 +57219,2449494,19,990,1 +57220,2449586,194,9702,1 +57221,2450400,53,2698,1 +57222,2450400,101,5091,1 +57223,2450404,8,444,1 +57224,2450412,184,9205,1 +57225,2450413,40,2043,1 +57226,2450414,53,2676,1 +57227,2450418,154,7736,1 +57228,2450424,16,807,1 +57229,2450424,135,6776,1 +57230,2450428,44,2240,1 +57231,2450436,16,846,1 +57232,2450436,192,9620,1 +57233,2450445,5,281,1 +57234,2450449,71,3567,1 +57235,2450485,50,2549,1 +57236,2450880,151,7571,1 +57237,2450900,12,605,1 +57238,2450911,105,5258,1 +57239,2450943,136,6840,1 +57240,2451120,60,3007,1 +57241,2451397,28,1414,1 +57242,2451457,130,6501,1 +57243,2451841,98,4932,1 +57244,2451864,53,2699,1 +57245,2451917,177,8862,1 +57246,2451936,82,4150,1 +57247,2452321,160,8017,1 +57248,2452321,188,9443,1 +57249,2452369,129,6494,1 +57250,2452380,173,8658,1 +57251,2452416,8,417,1 +57252,2452812,154,7739,1 +57253,2452819,72,3604,1 +57254,2452825,52,2640,1 +57255,2452857,27,1376,1 +57256,2453292,54,2704,1 +57257,2454240,101,5068,1 +57258,2454240,43,2194,1 +57259,2454241,9,456,1 +57260,2454241,195,9793,1 +57261,2454241,36,1812,1 +57262,2454246,87,4381,1 +57263,2454249,173,8685,1 +57264,2454252,193,9671,1 +57265,2454252,123,6187,1 +57266,2454252,4,226,1 +57267,2454252,171,8588,1 +57268,2454253,10,516,1 +57269,2454255,187,9389,1 +57270,2454261,52,2601,1 +57271,2454264,170,8535,1 +57272,2454264,157,7878,1 +57273,2454268,117,5866,1 +57274,2454276,65,3298,1 +57275,2454276,198,9921,1 +57276,2454280,82,4118,1 +57277,2454288,137,6880,1 +57278,2454297,189,9453,1 +57279,2454298,144,7236,1 +57280,2454298,162,8103,1 +57281,2454300,35,1792,1 +57282,2454309,135,6751,1 +57283,2454312,55,2755,1 +57284,2454318,13,689,1 +57285,2454333,184,9228,1 +57286,2454348,150,7529,1 +57287,2454351,95,4774,1 +57288,2454366,123,6153,1 +57289,2454384,137,6865,1 +57290,2454384,51,2561,1 +57291,2454530,54,2737,1 +57292,2454734,12,627,1 +57293,2454741,53,2651,1 +57294,2454822,97,4868,1 +57295,2455200,143,7181,1 +57296,2455202,115,5783,1 +57297,2455202,56,2848,1 +57298,2455206,103,5174,1 +57299,2455212,43,2165,1 +57300,2455224,176,8817,1 +57301,2455224,135,6756,1 +57302,2455227,31,1600,1 +57303,2455260,76,3820,1 +57304,2455280,18,949,1 +57305,2455300,90,4543,1 +57306,2455308,142,7111,1 +57307,2455309,93,4690,1 +57308,2455333,115,5773,1 +57309,2455344,87,4379,1 +57310,2455368,49,2460,1 +57311,2455480,170,8515,1 +57312,2455680,196,9846,1 +57313,2455680,74,3703,1 +57314,2455683,90,4501,1 +57315,2455684,173,8654,1 +57316,2455692,25,1282,1 +57317,2455693,182,9110,1 +57318,2455695,155,7762,1 +57319,2455696,33,1689,1 +57320,2455698,112,5602,1 +57321,2455699,56,2847,1 +57322,2455699,137,6887,1 +57323,2455704,54,2706,1 +57324,2455705,86,4305,1 +57325,2455708,174,8715,1 +57326,2455713,140,7032,1 +57327,2455716,30,1531,1 +57328,2455716,136,6826,1 +57329,2455717,130,6509,1 +57330,2455717,43,2164,1 +57331,2455717,122,6135,1 +57332,2455717,74,3745,1 +57333,2455728,97,4888,1 +57334,2455728,44,2240,1 +57335,2455734,155,7783,1 +57336,2455740,113,5682,1 +57337,2455752,28,1418,1 +57338,2455753,19,952,1 +57339,2455753,27,1377,1 +57340,2455760,18,916,1 +57341,2455764,59,2977,1 +57342,2455764,53,2664,1 +57343,2455766,16,816,1 +57344,2455766,195,9783,1 +57345,2455769,157,7851,1 +57346,2455806,144,7221,1 +57347,2455813,3,181,1 +57348,2455833,187,9381,1 +57349,2455848,144,7204,1 +57350,2455854,30,1528,1 +57351,2455875,191,9572,1 +57352,2455886,38,1931,1 +57353,2456166,134,6710,1 +57354,2456184,10,524,1 +57355,2456209,70,3550,1 +57356,2456213,112,5632,1 +57357,2456268,71,3555,1 +57358,2456316,89,4455,1 +57359,2456316,62,3116,1 +57360,2456364,93,4692,1 +57361,2456652,87,4389,1 +57362,2456688,190,9546,1 +57363,2456758,25,1263,1 +57364,2457120,140,7008,1 +57365,2457132,63,3154,1 +57366,2457135,59,2958,1 +57367,2457146,150,7511,1 +57368,2457159,97,4882,1 +57369,2457168,92,4618,1 +57370,2457182,77,3875,1 +57371,2457204,130,6515,1 +57372,2457204,42,2118,1 +57373,2457205,97,4872,1 +57374,2457206,105,5258,1 +57375,2457228,109,5452,1 +57376,2457228,69,3462,1 +57377,2457252,76,3840,1 +57378,2457600,149,7487,1 +57379,2457601,53,2695,1 +57380,2457601,20,1027,1 +57381,2457602,64,3210,1 +57382,2457612,133,6671,1 +57383,2457612,23,1181,1 +57384,2457613,168,8411,1 +57385,2457624,9,492,1 +57386,2457625,104,5235,1 +57387,2457625,21,1084,1 +57388,2457625,176,8834,1 +57389,2457630,94,4750,1 +57390,2457635,15,798,1 +57391,2457636,187,9400,1 +57392,2457636,193,9681,1 +57393,2457637,68,3412,1 +57394,2457651,51,2571,1 +57395,2457660,65,3295,1 +57396,2457660,181,9081,1 +57397,2457669,165,8273,1 +57398,2457672,61,3086,1 +57399,2457672,1,54,1 +57400,2457675,33,1664,1 +57401,2457682,36,1808,1 +57402,2457696,68,3427,1 +57403,2457697,37,1865,1 +57404,2457717,13,685,1 +57405,2457720,127,6363,1 +57406,2457723,179,8983,1 +57407,2457732,163,8193,1 +57408,2457780,79,3954,1 +57409,2457900,18,936,1 +57410,2458560,29,1474,1 +57411,2458572,100,5042,1 +57412,2458584,87,4376,1 +57413,2458592,58,2919,1 +57414,2458612,52,2602,1 +57415,2459100,134,6740,1 +57416,2459528,160,8047,1 +57417,2459536,16,824,1 +57418,2459544,194,9717,1 +57419,2459545,137,6874,1 +57420,2459547,70,3518,1 +57421,2459550,178,8914,1 +57422,2459553,152,7609,1 +57423,2459568,16,830,1 +57424,2459580,169,8497,1 +57425,2459640,18,930,1 +57426,2460517,130,6510,1 +57427,2460546,111,5600,1 +57428,2460960,190,9550,1 +57429,2460969,105,5252,1 +57430,2460972,61,3100,1 +57431,2460974,105,5272,1 +57432,2460974,100,5027,1 +57433,2460975,121,6079,1 +57434,2460984,166,8311,1 +57435,2460984,135,6784,1 +57436,2460988,102,5117,1 +57437,2460995,37,1857,1 +57438,2460998,89,4488,1 +57439,2461008,177,8882,1 +57440,2461008,133,6681,1 +57441,2461021,66,3349,1 +57442,2461022,115,5776,1 +57443,2461032,165,8283,1 +57444,2461058,82,4123,1 +57445,2461140,165,8299,1 +57446,2461165,120,6013,1 +57447,2461440,124,6249,1 +57448,2461441,143,7159,1 +57449,2461443,143,7180,1 +57450,2461443,59,2991,1 +57451,2461452,116,5819,1 +57452,2461460,25,1266,1 +57453,2461464,82,4118,1 +57454,2461470,187,9379,1 +57455,2461473,115,5795,1 +57456,2461475,116,5845,1 +57457,2461476,58,2942,1 +57458,2461479,30,1549,1 +57459,2461494,82,4104,1 +57460,2461516,118,5914,1 +57461,2461523,177,8872,1 +57462,2461525,178,8931,1 +57463,2461532,54,2738,1 +57464,2461611,147,7384,1 +57465,2461635,154,7717,1 +57466,2461635,92,4628,1 +57467,2461656,138,6944,1 +57468,2461716,1,62,1 +57469,2461920,110,5525,1 +57470,2461932,114,5730,1 +57471,2461932,121,6086,1 +57472,2461944,40,2024,1 +57473,2461944,147,7357,1 +57474,2461944,129,6477,1 +57475,2461944,34,1713,1 +57476,2461956,138,6919,1 +57477,2461964,139,6958,1 +57478,2461980,66,3305,1 +57479,2462017,81,4075,1 +57480,2462023,164,8246,1 +57481,2462028,5,271,1 +57482,2462040,77,3880,1 +57483,2462052,129,6485,1 +57484,2462053,156,7846,1 +57485,2462100,2,119,1 +57486,2462136,58,2920,1 +57487,2462400,139,6962,1 +57488,2462415,143,7157,1 +57489,2462418,46,2308,1 +57490,2462508,93,4665,1 +57491,2462508,7,387,1 +57492,2462881,60,3040,1 +57493,2462896,48,2450,1 +57494,2462898,58,2902,1 +57495,2462904,153,7681,1 +57496,2462904,70,3545,1 +57497,2462904,59,2997,1 +57498,2462917,133,6658,1 +57499,2462928,32,1637,1 +57500,2462961,52,2633,1 +57501,2462965,41,2062,1 +57502,2462982,79,3955,1 +57503,2462983,21,1096,1 +57504,2463015,25,1262,1 +57505,2463039,51,2579,1 +57506,2463165,157,7892,1 +57507,2464800,6,323,1 +57508,2464812,183,9161,1 +57509,2464812,168,8410,1 +57510,2464824,40,2043,1 +57511,2464850,113,5674,1 +57512,2465328,165,8277,1 +57513,2465763,145,7293,1 +57514,2465772,150,7540,1 +57515,2466241,89,4492,1 +57516,2466253,122,6122,1 +57517,2466260,119,5973,1 +57518,2466312,132,6614,1 +57519,2466348,49,2473,1 +57520,2466357,195,9791,1 +57521,2466372,164,8243,1 +57522,2466720,174,8722,1 +57523,2466735,191,9580,1 +57524,2466744,156,7843,1 +57525,2466747,76,3803,1 +57526,2466766,63,3151,1 +57527,2466792,145,7284,1 +57528,2466810,53,2687,1 +57529,2466852,37,1852,1 +57530,2467200,160,8044,1 +57531,2467201,147,7375,1 +57532,2467206,68,3424,1 +57533,2467212,110,5536,1 +57534,2467213,9,481,1 +57535,2467251,33,1671,1 +57536,2467260,2,143,1 +57537,2467293,149,7464,1 +57538,2467294,110,5519,1 +57539,2467298,32,1628,1 +57540,2467508,107,5375,1 +57541,2467704,82,4130,1 +57542,2467716,59,2997,1 +57543,2467862,150,7509,1 +57544,2467873,82,4121,1 +57545,2468160,186,9307,1 +57546,2468160,19,991,1 +57547,2468167,150,7528,1 +57548,2468172,31,1571,1 +57549,2468172,119,5966,1 +57550,2468176,132,6624,1 +57551,2468203,80,4017,1 +57552,2468220,120,6001,1 +57553,2468221,132,6608,1 +57554,2468232,47,2367,1 +57555,2468235,118,5947,1 +57556,2468256,76,3817,1 +57557,2468506,81,4099,1 +57558,2468664,4,249,1 +57559,2468775,159,7955,1 +57560,2469144,113,5673,1 +57561,2469600,80,4004,1 +57562,2469600,176,8831,1 +57563,2469600,176,8847,1 +57564,2469613,150,7541,1 +57565,2469624,69,3454,1 +57566,2469631,172,8605,1 +57567,2469634,145,7292,1 +57568,2469637,58,2923,1 +57569,2469660,120,6003,1 +57570,2469705,184,9219,1 +57571,2470080,101,5055,1 +57572,2470128,27,1366,1 +57573,2470308,93,4681,1 +57574,2470560,104,5247,1 +57575,2470561,25,1253,1 +57576,2470567,22,1134,1 +57577,2470572,82,4121,1 +57578,2470572,51,2564,1 +57579,2470572,102,5109,1 +57580,2470572,16,814,1 +57581,2470574,125,6271,1 +57582,2470576,6,332,1 +57583,2470582,150,7514,1 +57584,2470584,86,4342,1 +57585,2470584,176,8831,1 +57586,2470584,195,9775,1 +57587,2470586,86,4320,1 +57588,2470587,105,5272,1 +57589,2470590,196,9811,1 +57590,2470597,23,1193,1 +57591,2470599,92,4641,1 +57592,2470614,83,4151,1 +57593,2470632,181,9095,1 +57594,2470632,117,5851,1 +57595,2470647,53,2663,1 +57596,2470647,163,8156,1 +57597,2470656,59,2998,1 +57598,2470665,120,6038,1 +57599,2470666,73,3689,1 +57600,2470680,169,8487,1 +57601,2470714,58,2933,1 +57602,2470755,107,5353,1 +57603,2470848,7,377,1 +57604,2471040,101,5059,1 +57605,2471040,8,440,1 +57606,2471055,5,252,1 +57607,2471055,24,1230,1 +57608,2471064,104,5221,1 +57609,2471068,147,7377,1 +57610,2471074,54,2701,1 +57611,2471088,161,8068,1 +57612,2471124,11,559,1 +57613,2471186,121,6053,1 +57614,2471244,103,5158,1 +57615,2471257,26,1307,1 +57616,2471520,160,8037,1 +57617,2471529,174,8718,1 +57618,2471532,159,7966,1 +57619,2471544,32,1606,1 +57620,2471545,50,2532,1 +57621,2471556,182,9108,1 +57622,2471565,57,2879,1 +57623,2471574,90,4501,1 +57624,2471592,194,9746,1 +57625,2471714,27,1384,1 +57626,2471736,132,6624,1 +57627,2472003,10,549,1 +57628,2472013,199,10000,1 +57629,2472024,44,2250,1 +57630,2472025,13,670,1 +57631,2472048,131,6570,1 +57632,2472117,67,3370,1 +57633,2472132,100,5014,1 +57634,2472480,5,297,1 +57635,2472483,105,5257,1 +57636,2472486,158,7932,1 +57637,2472487,174,8728,1 +57638,2472492,67,3376,1 +57639,2472492,116,5817,1 +57640,2472493,6,312,1 +57641,2472493,168,8423,1 +57642,2472497,172,8605,1 +57643,2472504,137,6868,1 +57644,2472513,5,287,1 +57645,2472525,14,723,1 +57646,2472543,49,2461,1 +57647,2472587,159,7971,1 +57648,2472596,108,5420,1 +57649,2472600,35,1790,1 +57650,2472600,85,4290,1 +57651,2472708,149,7461,1 +57652,2472960,149,7467,1 +57653,2472973,97,4880,1 +57654,2473033,50,2536,1 +57655,2473044,161,8063,1 +57656,2473440,100,5036,1 +57657,2473452,133,6689,1 +57658,2473588,117,5862,1 +57659,2473945,31,1596,1 +57660,2474401,47,2400,1 +57661,2474402,13,693,1 +57662,2474545,143,7195,1 +57663,2474880,114,5736,1 +57664,2474885,38,1913,1 +57665,2474893,23,1159,1 +57666,2474895,95,4768,1 +57667,2474904,24,1241,1 +57668,2474905,138,6921,1 +57669,2474925,82,4109,1 +57670,2474928,126,6328,1 +57671,2474952,88,4431,1 +57672,2474954,100,5048,1 +57673,2474959,2,123,1 +57674,2475030,121,6052,1 +57675,2475039,114,5732,1 +57676,2475362,51,2566,1 +57677,2475369,197,9872,1 +57678,2475372,191,9594,1 +57679,2475372,101,5072,1 +57680,2475412,144,7213,1 +57681,2475420,67,3384,1 +57682,2475436,40,2049,1 +57683,2475840,164,8245,1 +57684,2475843,109,5470,1 +57685,2475852,62,3106,1 +57686,2475852,36,1810,1 +57687,2475854,113,5651,1 +57688,2475864,0,17,1 +57689,2475865,135,6774,1 +57690,2475865,140,7008,1 +57691,2475867,54,2704,1 +57692,2475873,103,5174,1 +57693,2475876,108,5431,1 +57694,2475876,73,3683,1 +57695,2475876,143,7185,1 +57696,2475878,163,8200,1 +57697,2475900,89,4478,1 +57698,2475903,182,9136,1 +57699,2475903,54,2748,1 +57700,2475903,163,8194,1 +57701,2475912,116,5821,1 +57702,2475912,103,5162,1 +57703,2475939,104,5241,1 +57704,2475960,163,8160,1 +57705,2475974,102,5149,1 +57706,2475975,137,6854,1 +57707,2476008,79,3979,1 +57708,2476800,101,5068,1 +57709,2476800,163,8156,1 +57710,2476807,166,8326,1 +57711,2476818,82,4145,1 +57712,2476824,29,1476,1 +57713,2476824,114,5709,1 +57714,2476830,50,2524,1 +57715,2476830,146,7346,1 +57716,2476841,149,7490,1 +57717,2476842,124,6249,1 +57718,2476845,7,362,1 +57719,2476848,100,5017,1 +57720,2476857,110,5540,1 +57721,2476860,170,8546,1 +57722,2476861,129,6457,1 +57723,2476908,80,4012,1 +57724,2476920,20,1028,1 +57725,2476962,31,1573,1 +57726,2476984,9,491,1 +57727,2477280,163,8152,1 +57728,2477280,51,2551,1 +57729,2477283,199,9952,1 +57730,2477292,116,5806,1 +57731,2477305,92,4602,1 +57732,2477311,148,7439,1 +57733,2477314,189,9461,1 +57734,2477331,29,1474,1 +57735,2477338,34,1720,1 +57736,2477343,114,5705,1 +57737,2477352,36,1848,1 +57738,2477353,108,5429,1 +57739,2477364,58,2941,1 +57740,2477364,145,7281,1 +57741,2477388,188,9447,1 +57742,2477394,109,5481,1 +57743,2477400,182,9135,1 +57744,2477400,181,9061,1 +57745,2477412,16,819,1 +57746,2477454,181,9100,1 +57747,2478252,198,9919,1 +57748,2478252,11,593,1 +57749,2478264,121,6066,1 +57750,2478264,68,3438,1 +57751,2478286,23,1196,1 +57752,2478345,84,4226,1 +57753,2478721,101,5099,1 +57754,2478744,181,9097,1 +57755,2478769,99,4986,1 +57756,2478777,171,8570,1 +57757,2478798,56,2850,1 +57758,2478825,149,7460,1 +57759,2479212,105,5274,1 +57760,2479213,38,1931,1 +57761,2479240,114,5743,1 +57762,2479305,56,2807,1 +57763,2479692,35,1789,1 +57764,2480161,3,171,1 +57765,2480184,40,2028,1 +57766,2480185,139,6955,1 +57767,2480186,126,6301,1 +57768,2480186,71,3597,1 +57769,2480196,180,9006,1 +57770,2480208,56,2801,1 +57771,2480209,125,6295,1 +57772,2480221,100,5048,1 +57773,2480223,55,2794,1 +57774,2480233,59,2962,1 +57775,2480274,101,5057,1 +57776,2480342,69,3495,1 +57777,2480640,194,9750,1 +57778,2480641,34,1717,1 +57779,2480643,194,9712,1 +57780,2480676,56,2826,1 +57781,2480688,60,3011,1 +57782,2480724,15,773,1 +57783,2480724,82,4105,1 +57784,2480760,107,5374,1 +57785,2480787,145,7271,1 +57786,2481123,188,9438,1 +57787,2481123,113,5688,1 +57788,2481132,129,6484,1 +57789,2481132,69,3478,1 +57790,2481142,191,9594,1 +57791,2481144,157,7869,1 +57792,2481184,113,5682,1 +57793,2481186,54,2746,1 +57794,2481205,41,2053,1 +57795,2481600,0,10,1 +57796,2481601,169,8474,1 +57797,2481603,93,4675,1 +57798,2481606,19,965,1 +57799,2481611,172,8645,1 +57800,2481613,141,7080,1 +57801,2481624,140,7046,1 +57802,2481624,40,2042,1 +57803,2481624,71,3593,1 +57804,2481624,40,2003,1 +57805,2481627,96,4814,1 +57806,2481630,105,5294,1 +57807,2481639,42,2113,1 +57808,2481648,186,9306,1 +57809,2481651,141,7061,1 +57810,2481651,88,4415,1 +57811,2481652,144,7228,1 +57812,2481660,177,8874,1 +57813,2481660,44,2238,1 +57814,2481672,49,2468,1 +57815,2481681,53,2692,1 +57816,2481693,100,5033,1 +57817,2481793,186,9333,1 +57818,2481801,47,2378,1 +57819,2482081,53,2656,1 +57820,2482140,148,7445,1 +57821,2482249,96,4828,1 +57822,2482632,69,3474,1 +57823,2483061,74,3714,1 +57824,2483065,125,6297,1 +57825,2483067,166,8340,1 +57826,2483521,24,1234,1 +57827,2483523,173,8664,1 +57828,2483523,56,2848,1 +57829,2483524,91,4599,1 +57830,2483528,3,194,1 +57831,2483529,198,9935,1 +57832,2483529,102,5150,1 +57833,2483532,91,4592,1 +57834,2483532,20,1009,1 +57835,2483532,169,8469,1 +57836,2483532,85,4287,1 +57837,2483532,12,637,1 +57838,2483534,98,4928,1 +57839,2483541,179,8964,1 +57840,2483542,134,6731,1 +57841,2483544,39,1981,1 +57842,2483544,10,511,1 +57843,2483544,92,4615,1 +57844,2483544,116,5832,1 +57845,2483547,15,776,1 +57846,2483547,12,604,1 +57847,2483556,24,1204,1 +57848,2483557,128,6402,1 +57849,2483558,157,7855,1 +57850,2483568,97,4879,1 +57851,2483568,172,8636,1 +57852,2483568,123,6195,1 +57853,2483569,104,5203,1 +57854,2483580,42,2144,1 +57855,2483592,179,8962,1 +57856,2483592,110,5535,1 +57857,2483593,7,367,1 +57858,2483604,162,8150,1 +57859,2483616,171,8552,1 +57860,2483617,194,9737,1 +57861,2483628,152,7617,1 +57862,2483634,190,9505,1 +57863,2483634,121,6069,1 +57864,2483640,15,767,1 +57865,2483679,156,7837,1 +57866,2483690,84,4214,1 +57867,2483691,24,1223,1 +57868,2483760,74,3708,1 +57869,2484000,169,8460,1 +57870,2484001,78,3916,1 +57871,2484005,91,4561,1 +57872,2484012,102,5109,1 +57873,2484018,172,8618,1 +57874,2484024,1,72,1 +57875,2484024,159,7968,1 +57876,2484028,194,9750,1 +57877,2484036,1,85,1 +57878,2484036,108,5409,1 +57879,2484037,77,3851,1 +57880,2484058,66,3310,1 +57881,2484062,77,3897,1 +57882,2484195,169,8480,1 +57883,2484480,9,487,1 +57884,2484492,65,3288,1 +57885,2484496,75,3773,1 +57886,2484504,54,2719,1 +57887,2484513,142,7117,1 +57888,2484516,131,6591,1 +57889,2484552,186,9340,1 +57890,2484555,116,5848,1 +57891,2484565,55,2790,1 +57892,2485444,57,2895,1 +57893,2485479,91,4591,1 +57894,2485488,54,2736,1 +57895,2485527,38,1947,1 +57896,2485536,159,7953,1 +57897,2485536,23,1160,1 +57898,2486899,149,7474,1 +57899,2486904,105,5289,1 +57900,2486908,55,2780,1 +57901,2486910,155,7766,1 +57902,2486928,196,9825,1 +57903,2486929,144,7222,1 +57904,2486935,141,7055,1 +57905,2486953,30,1536,1 +57906,2486965,181,9095,1 +57907,2486976,51,2587,1 +57908,2486989,165,8262,1 +57909,2487096,80,4041,1 +57910,2487360,64,3223,1 +57911,2487384,29,1493,1 +57912,2487840,139,6989,1 +57913,2487840,156,7815,1 +57914,2487844,152,7626,1 +57915,2487936,103,5195,1 +57916,2488321,144,7205,1 +57917,2488333,147,7374,1 +57918,2488333,37,1873,1 +57919,2488333,166,8313,1 +57920,2488333,23,1180,1 +57921,2488334,9,469,1 +57922,2488336,21,1072,1 +57923,2488344,174,8732,1 +57924,2488368,170,8525,1 +57925,2488369,121,6055,1 +57926,2488383,151,7593,1 +57927,2488393,69,3467,1 +57928,2488404,177,8883,1 +57929,2488421,171,8552,1 +57930,2488428,103,5171,1 +57931,2488801,14,735,1 +57932,2488836,52,2645,1 +57933,2488884,5,285,1 +57934,2489280,183,9166,1 +57935,2489280,51,2597,1 +57936,2489280,179,8954,1 +57937,2489281,12,610,1 +57938,2489281,0,47,1 +57939,2489282,173,8661,1 +57940,2489282,134,6712,1 +57941,2489284,131,6561,1 +57942,2489285,127,6371,1 +57943,2489292,26,1341,1 +57944,2489292,145,7276,1 +57945,2489292,51,2554,1 +57946,2489292,145,7251,1 +57947,2489292,155,7791,1 +57948,2489292,191,9579,1 +57949,2489292,41,2093,1 +57950,2489295,195,9757,1 +57951,2489301,6,307,1 +57952,2489303,192,9650,1 +57953,2489304,74,3713,1 +57954,2489304,55,2753,1 +57955,2489304,88,4436,1 +57956,2489306,96,4848,1 +57957,2489309,16,808,1 +57958,2489314,192,9605,1 +57959,2489316,91,4572,1 +57960,2489316,196,9806,1 +57961,2489316,91,4564,1 +57962,2489316,129,6488,1 +57963,2489322,14,732,1 +57964,2489328,103,5160,1 +57965,2489328,166,8347,1 +57966,2489334,0,45,1 +57967,2489337,114,5704,1 +57968,2489340,145,7292,1 +57969,2489340,67,3363,1 +57970,2489343,132,6606,1 +57971,2489352,120,6047,1 +57972,2489353,186,9328,1 +57973,2489355,65,3280,1 +57974,2489358,99,4974,1 +57975,2489379,112,5622,1 +57976,2489388,7,400,1 +57977,2489394,85,4278,1 +57978,2489461,149,7457,1 +57979,2489532,124,6212,1 +57980,2489617,129,6490,1 +57981,2489761,9,483,1 +57982,2489766,198,9932,1 +57983,2489773,0,45,1 +57984,2489808,165,8267,1 +57985,2489808,118,5941,1 +57986,2489822,125,6296,1 +57987,2489846,91,4558,1 +57988,2490756,51,2572,1 +57989,2490769,196,9813,1 +57990,2490769,187,9383,1 +57991,2490792,115,5793,1 +57992,2490889,54,2705,1 +57993,2491200,114,5736,1 +57994,2491203,149,7473,1 +57995,2491214,50,2502,1 +57996,2491235,177,8897,1 +57997,2491239,197,9890,1 +57998,2491256,31,1586,1 +57999,2491262,131,6551,1 +58000,2491315,143,7182,1 +58001,2491347,35,1790,1 +58002,2491680,168,8446,1 +58003,2491681,196,9844,1 +58004,2491696,184,9222,1 +58005,2491716,42,2138,1 +58006,2491717,90,4515,1 +58007,2491728,174,8729,1 +58008,2491740,142,7114,1 +58009,2491740,180,9021,1 +58010,2491743,70,3506,1 +58011,2491745,192,9630,1 +58012,2491753,85,4255,1 +58013,2492106,63,3151,1 +58014,2492160,83,4175,1 +58015,2492160,164,8212,1 +58016,2492196,50,2531,1 +58017,2492232,47,2384,1 +58018,2492256,20,1028,1 +58019,2492409,120,6028,1 +58020,2492647,61,3098,1 +58021,2492652,76,3821,1 +58022,2492702,109,5459,1 +58023,2493120,30,1520,1 +58024,2493120,144,7212,1 +58025,2493123,180,9050,1 +58026,2493156,177,8877,1 +58027,2493168,129,6457,1 +58028,2493169,103,5151,1 +58029,2493190,110,5545,1 +58030,2493218,133,6660,1 +58031,2493276,117,5851,1 +58032,2493351,78,3926,1 +58033,2493600,96,4802,1 +58034,2493600,155,7778,1 +58035,2493600,197,9899,1 +58036,2493601,162,8103,1 +58037,2493606,47,2355,1 +58038,2493607,98,4931,1 +58039,2493612,85,4290,1 +58040,2493612,173,8678,1 +58041,2493613,128,6429,1 +58042,2493615,115,5775,1 +58043,2493622,14,734,1 +58044,2493624,87,4376,1 +58045,2493625,76,3814,1 +58046,2493627,195,9768,1 +58047,2493651,26,1311,1 +58048,2493662,3,192,1 +58049,2493669,151,7568,1 +58050,2493678,84,4202,1 +58051,2493684,75,3781,1 +58052,2493687,169,8453,1 +58053,2493732,114,5712,1 +58054,2493739,6,318,1 +58055,2493771,116,5822,1 +58056,2494090,128,6443,1 +58057,2494106,187,9372,1 +58058,2494116,78,3927,1 +58059,2494141,59,2997,1 +58060,2494152,1,62,1 +58061,2494190,78,3950,1 +58062,2494213,45,2291,1 +58063,2494566,18,906,1 +58064,2494572,23,1183,1 +58065,2494596,109,5453,1 +58066,2494608,17,876,1 +58067,2494622,78,3934,1 +58068,2494633,73,3664,1 +58069,2494692,6,338,1 +58070,2495040,115,5788,1 +58071,2495040,192,9641,1 +58072,2495040,83,4195,1 +58073,2495041,65,3284,1 +58074,2495043,139,6987,1 +58075,2495044,103,5165,1 +58076,2495049,125,6290,1 +58077,2495049,63,3189,1 +58078,2495051,119,5975,1 +58079,2495052,104,5247,1 +58080,2495052,81,4055,1 +58081,2495054,64,3243,1 +58082,2495064,75,3796,1 +58083,2495064,56,2818,1 +58084,2495064,41,2074,1 +58085,2495065,192,9612,1 +58086,2495076,59,2951,1 +58087,2495076,89,4458,1 +58088,2495078,159,7985,1 +58089,2495079,115,5753,1 +58090,2495088,76,3821,1 +58091,2495089,172,8640,1 +58092,2495126,185,9262,1 +58093,2495140,188,9405,1 +58094,2495145,96,4849,1 +58095,2495172,25,1272,1 +58096,2495179,102,5101,1 +58097,2495199,150,7534,1 +58098,2495217,67,3369,1 +58099,2495328,146,7328,1 +58100,2495532,122,6111,1 +58101,2495538,156,7830,1 +58102,2495573,120,6020,1 +58103,2495604,41,2096,1 +58104,2495628,98,4940,1 +58105,2496036,12,637,1 +58106,2496096,189,9479,1 +58107,2496480,10,542,1 +58108,2496480,68,3403,1 +58109,2496480,172,8622,1 +58110,2496481,90,4506,1 +58111,2496482,121,6083,1 +58112,2496483,108,5415,1 +58113,2496489,73,3672,1 +58114,2496492,16,839,1 +58115,2496492,129,6487,1 +58116,2496492,96,4829,1 +58117,2496493,181,9058,1 +58118,2496494,139,7000,1 +58119,2496498,176,8812,1 +58120,2496499,129,6491,1 +58121,2496504,47,2370,1 +58122,2496504,120,6022,1 +58123,2496504,61,3096,1 +58124,2496505,40,2015,1 +58125,2496506,21,1052,1 +58126,2496514,31,1587,1 +58127,2496516,93,4660,1 +58128,2496516,152,7603,1 +58129,2496517,4,246,1 +58130,2496517,7,374,1 +58131,2496520,86,4332,1 +58132,2496525,4,208,1 +58133,2496526,120,6004,1 +58134,2496528,42,2147,1 +58135,2496528,95,4758,1 +58136,2496528,102,5127,1 +58137,2496531,197,9876,1 +58138,2496532,57,2872,1 +58139,2496534,131,6571,1 +58140,2496540,60,3019,1 +58141,2496540,158,7929,1 +58142,2496546,148,7443,1 +58143,2496552,148,7448,1 +58144,2496576,37,1861,1 +58145,2496576,90,4514,1 +58146,2496577,1,63,1 +58147,2496588,166,8310,1 +58148,2496612,166,8306,1 +58149,2496612,197,9884,1 +58150,2496625,12,609,1 +58151,2496673,27,1369,1 +58152,2496684,39,1969,1 +58153,2496816,12,622,1 +58154,2496975,26,1301,1 +58155,2497441,177,8894,1 +58156,2497443,176,8809,1 +58157,2497467,131,6569,1 +58158,2497468,180,9048,1 +58159,2497476,165,8282,1 +58160,2497500,180,9011,1 +58161,2497920,87,4359,1 +58162,2497920,163,8154,1 +58163,2497920,136,6814,1 +58164,2497920,189,9495,1 +58165,2497920,71,3551,1 +58166,2497921,125,6292,1 +58167,2497926,50,2523,1 +58168,2497926,79,3976,1 +58169,2497926,67,3362,1 +58170,2497929,137,6874,1 +58171,2497932,176,8849,1 +58172,2497932,55,2799,1 +58173,2497932,184,9246,1 +58174,2497932,142,7128,1 +58175,2497932,144,7205,1 +58176,2497932,114,5720,1 +58177,2497932,99,4984,1 +58178,2497935,186,9330,1 +58179,2497935,107,5366,1 +58180,2497938,121,6073,1 +58181,2497938,83,4174,1 +58182,2497941,84,4233,1 +58183,2497944,33,1692,1 +58184,2497944,156,7817,1 +58185,2497944,39,1979,1 +58186,2497945,32,1612,1 +58187,2497946,192,9627,1 +58188,2497951,165,8261,1 +58189,2497956,134,6733,1 +58190,2497956,94,4716,1 +58191,2497957,120,6038,1 +58192,2497957,76,3811,1 +58193,2497958,152,7628,1 +58194,2497968,42,2121,1 +58195,2497968,106,5313,1 +58196,2497968,97,4888,1 +58197,2497968,94,4734,1 +58198,2497968,148,7424,1 +58199,2497971,98,4950,1 +58200,2497971,74,3720,1 +58201,2497971,160,8045,1 +58202,2497980,144,7210,1 +58203,2497980,172,8619,1 +58204,2497980,76,3844,1 +58205,2497980,27,1363,1 +58206,2497980,53,2694,1 +58207,2497980,186,9319,1 +58208,2497980,148,7423,1 +58209,2497980,196,9822,1 +58210,2497992,35,1786,1 +58211,2497993,141,7051,1 +58212,2498004,198,9940,1 +58213,2498005,49,2496,1 +58214,2498007,6,312,1 +58215,2498016,99,4982,1 +58216,2498016,164,8243,1 +58217,2498016,19,961,1 +58218,2498016,185,9286,1 +58219,2498017,119,5999,1 +58220,2498017,131,6567,1 +58221,2498035,43,2200,1 +58222,2498040,130,6512,1 +58223,2498040,133,6669,1 +58224,2498041,78,3949,1 +58225,2498049,17,900,1 +58226,2498064,49,2458,1 +58227,2498292,128,6410,1 +58228,2498427,18,921,1 +58229,2498436,32,1639,1 +58230,2498605,77,3889,1 +58231,2498880,64,3250,1 +58232,2498880,28,1437,1 +58233,2498880,113,5666,1 +58234,2498887,55,2774,1 +58235,2498889,145,7262,1 +58236,2498889,81,4085,1 +58237,2498889,127,6400,1 +58238,2498892,30,1533,1 +58239,2498892,119,6000,1 +58240,2498894,99,4993,1 +58241,2498904,54,2738,1 +58242,2498904,133,6674,1 +58243,2498904,177,8875,1 +58244,2498914,83,4179,1 +58245,2498917,31,1580,1 +58246,2498917,176,8813,1 +58247,2498917,70,3546,1 +58248,2498917,28,1413,1 +58249,2498919,19,954,1 +58250,2498922,18,940,1 +58251,2498934,21,1100,1 +58252,2498937,158,7911,1 +58253,2498940,9,472,1 +58254,2498990,95,4755,1 +58255,2498995,119,5952,1 +58256,2498997,144,7228,1 +58257,2499001,189,9491,1 +58258,2499021,107,5399,1 +58259,2499022,87,4369,1 +58260,2499024,40,2021,1 +58261,2499024,77,3861,1 +58262,2499040,33,1672,1 +58263,2499048,185,9283,1 +58264,2499060,184,9211,1 +58265,2499360,54,2724,1 +58266,2499360,28,1425,1 +58267,2499361,98,4932,1 +58268,2499363,88,4442,1 +58269,2499363,110,5535,1 +58270,2499365,75,3779,1 +58271,2499372,127,6356,1 +58272,2499372,10,531,1 +58273,2499372,146,7348,1 +58274,2499374,1,59,1 +58275,2499377,50,2533,1 +58276,2499377,135,6787,1 +58277,2499384,2,146,1 +58278,2499384,16,846,1 +58279,2499384,21,1084,1 +58280,2499385,6,308,1 +58281,2499387,34,1728,1 +58282,2499387,106,5329,1 +58283,2499396,74,3708,1 +58284,2499399,5,281,1 +58285,2499399,152,7631,1 +58286,2499417,142,7108,1 +58287,2499417,68,3403,1 +58288,2499423,60,3031,1 +58289,2499447,99,4985,1 +58290,2499448,95,4793,1 +58291,2499450,121,6063,1 +58292,2499465,67,3377,1 +58293,2499480,72,3640,1 +58294,2499516,41,2053,1 +58295,2499534,160,8021,1 +58296,2499553,171,8555,1 +58297,2499840,17,863,1 +58298,2499840,75,3771,1 +58299,2499840,192,9649,1 +58300,2499840,64,3233,1 +58301,2499840,171,8586,1 +58302,2499840,46,2315,1 +58303,2499840,133,6658,1 +58304,2499842,183,9195,1 +58305,2499853,52,2630,1 +58306,2499864,140,7003,1 +58307,2499870,118,5937,1 +58308,2499871,54,2735,1 +58309,2499876,86,4325,1 +58310,2499877,153,7684,1 +58311,2499888,45,2261,1 +58312,2499888,128,6431,1 +58313,2499932,182,9122,1 +58314,2499936,187,9378,1 +58315,2499936,121,6057,1 +58316,2499985,17,870,1 +58317,2500005,71,3557,1 +58318,2500011,153,7686,1 +58319,2500044,140,7011,1 +58320,2500320,176,8847,1 +58321,2500320,133,6661,1 +58322,2500320,107,5352,1 +58323,2500320,101,5076,1 +58324,2500321,194,9710,1 +58325,2500321,26,1339,1 +58326,2500322,49,2499,1 +58327,2500326,194,9717,1 +58328,2500327,130,6501,1 +58329,2500329,199,9965,1 +58330,2500332,176,8809,1 +58331,2500332,55,2780,1 +58332,2500332,46,2336,1 +58333,2500332,8,427,1 +58334,2500333,70,3503,1 +58335,2500333,28,1405,1 +58336,2500333,59,2993,1 +58337,2500339,143,7161,1 +58338,2500344,52,2630,1 +58339,2500344,171,8573,1 +58340,2500344,158,7927,1 +58341,2500344,9,496,1 +58342,2500345,174,8701,1 +58343,2500349,54,2724,1 +58344,2500356,155,7760,1 +58345,2500357,3,167,1 +58346,2500360,191,9560,1 +58347,2500360,115,5755,1 +58348,2500363,71,3574,1 +58349,2500365,14,727,1 +58350,2500368,62,3136,1 +58351,2500368,43,2183,1 +58352,2500371,140,7050,1 +58353,2500377,45,2287,1 +58354,2500378,87,4385,1 +58355,2500380,148,7401,1 +58356,2500380,26,1310,1 +58357,2500389,190,9539,1 +58358,2500392,142,7125,1 +58359,2500393,70,3527,1 +58360,2500393,16,840,1 +58361,2500393,65,3262,1 +58362,2500404,95,4775,1 +58363,2500404,18,926,1 +58364,2500404,157,7891,1 +58365,2500404,56,2850,1 +58366,2500404,171,8586,1 +58367,2500410,36,1828,1 +58368,2500416,33,1665,1 +58369,2500428,177,8886,1 +58370,2500441,51,2580,1 +58371,2500443,33,1681,1 +58372,2500464,198,9913,1 +58373,2500464,75,3755,1 +58374,2500483,188,9439,1 +58375,2500551,72,3606,1 +58376,2500560,68,3442,1 +58377,2500812,81,4067,1 +58378,2501001,131,6600,1 +58379,2501091,77,3895,1 +58380,2501281,49,2471,1 +58381,2501316,45,2283,1 +58382,2501377,98,4921,1 +58383,2501760,142,7129,1 +58384,2501775,183,9153,1 +58385,2501794,165,8271,1 +58386,2501817,19,957,1 +58387,2501853,51,2561,1 +58388,2501892,195,9796,1 +58389,2501893,4,222,1 +58390,2502517,141,7060,1 +58391,2502720,28,1424,1 +58392,2502724,106,5319,1 +58393,2502724,24,1209,1 +58394,2502738,14,735,1 +58395,2502744,46,2303,1 +58396,2502744,11,579,1 +58397,2502745,120,6040,1 +58398,2502746,59,2952,1 +58399,2502748,100,5025,1 +58400,2502757,104,5220,1 +58401,2502759,59,2976,1 +58402,2502760,31,1575,1 +58403,2502768,153,7657,1 +58404,2502777,149,7461,1 +58405,2502804,125,6254,1 +58406,2502841,85,4273,1 +58407,2503200,33,1687,1 +58408,2503202,133,6686,1 +58409,2503225,41,2072,1 +58410,2503242,67,3388,1 +58411,2503254,146,7321,1 +58412,2503275,47,2353,1 +58413,2503392,181,9062,1 +58414,2503690,168,8435,1 +58415,2503704,98,4929,1 +58416,2503758,75,3769,1 +58417,2504160,30,1529,1 +58418,2504161,27,1369,1 +58419,2504161,171,8567,1 +58420,2504163,81,4064,1 +58421,2504167,154,7747,1 +58422,2504169,88,4427,1 +58423,2504189,89,4465,1 +58424,2504191,198,9929,1 +58425,2504205,20,1027,1 +58426,2504235,155,7774,1 +58427,2504256,9,451,1 +58428,2504268,187,9398,1 +58429,2504358,41,2060,1 +58430,2504376,41,2066,1 +58431,2504517,66,3335,1 +58432,2504640,49,2478,1 +58433,2504642,9,476,1 +58434,2504649,188,9424,1 +58435,2504652,102,5107,1 +58436,2504712,40,2021,1 +58437,2504712,155,7796,1 +58438,2504713,158,7945,1 +58439,2504728,186,9339,1 +58440,2504736,111,5553,1 +58441,2505120,150,7519,1 +58442,2505120,54,2710,1 +58443,2505120,184,9227,1 +58444,2505120,45,2257,1 +58445,2505120,199,9959,1 +58446,2505120,40,2009,1 +58447,2505120,68,3433,1 +58448,2505120,135,6793,1 +58449,2505120,183,9169,1 +58450,2505120,95,4753,1 +58451,2505121,123,6165,1 +58452,2505121,29,1476,1 +58453,2505121,2,125,1 +58454,2505122,152,7635,1 +58455,2505127,9,458,1 +58456,2505132,107,5388,1 +58457,2505132,144,7242,1 +58458,2505132,60,3045,1 +58459,2505132,116,5848,1 +58460,2505132,123,6188,1 +58461,2505132,164,8230,1 +58462,2505132,134,6749,1 +58463,2505133,150,7519,1 +58464,2505134,31,1561,1 +58465,2505135,72,3641,1 +58466,2505135,145,7273,1 +58467,2505135,133,6667,1 +58468,2505138,101,5070,1 +58469,2505138,122,6136,1 +58470,2505144,193,9668,1 +58471,2505144,118,5927,1 +58472,2505144,14,708,1 +58473,2505144,109,5475,1 +58474,2505145,85,4279,1 +58475,2505145,11,554,1 +58476,2505147,108,5440,1 +58477,2505153,20,1029,1 +58478,2505153,183,9158,1 +58479,2505156,94,4738,1 +58480,2505156,177,8873,1 +58481,2505156,52,2618,1 +58482,2505156,121,6096,1 +58483,2505156,167,8359,1 +58484,2505157,172,8646,1 +58485,2505159,55,2765,1 +58486,2505168,196,9835,1 +58487,2505168,2,102,1 +58488,2505168,29,1477,1 +58489,2505169,111,5596,1 +58490,2505169,56,2845,1 +58491,2505170,192,9606,1 +58492,2505171,180,9031,1 +58493,2505172,77,3857,1 +58494,2505174,41,2098,1 +58495,2505174,179,8998,1 +58496,2505177,139,6987,1 +58497,2505180,119,5957,1 +58498,2505180,62,3115,1 +58499,2505180,32,1602,1 +58500,2505181,40,2035,1 +58501,2505181,167,8356,1 +58502,2505183,5,277,1 +58503,2505184,4,217,1 +58504,2505192,146,7329,1 +58505,2505192,72,3647,1 +58506,2505193,117,5890,1 +58507,2505198,177,8863,1 +58508,2505200,59,2955,1 +58509,2505206,7,374,1 +58510,2505216,61,3074,1 +58511,2505220,70,3507,1 +58512,2505228,178,8936,1 +58513,2505231,105,5297,1 +58514,2505231,82,4134,1 +58515,2505241,26,1316,1 +58516,2505252,118,5926,1 +58517,2505276,131,6570,1 +58518,2505294,189,9500,1 +58519,2505314,111,5592,1 +58520,2505348,14,731,1 +58521,2505348,130,6522,1 +58522,2505405,139,6957,1 +58523,2505609,121,6084,1 +58524,2505612,35,1788,1 +58525,2505615,8,414,1 +58526,2505624,141,7089,1 +58527,2505626,50,2536,1 +58528,2505643,133,6676,1 +58529,2505708,64,3210,1 +58530,2505720,12,623,1 +58531,2505768,128,6416,1 +58532,2506587,197,9862,1 +58533,2506600,52,2635,1 +58534,2507043,147,7398,1 +58535,2507052,192,9603,1 +58536,2507076,191,9594,1 +58537,2507523,154,7702,1 +58538,2508000,126,6318,1 +58539,2508000,88,4408,1 +58540,2508001,85,4265,1 +58541,2508012,87,4371,1 +58542,2508018,146,7327,1 +58543,2508036,104,5240,1 +58544,2508036,199,9954,1 +58545,2508060,142,7137,1 +58546,2508978,36,1829,1 +58547,2508990,68,3433,1 +58548,2508997,47,2379,1 +58549,2509000,30,1519,1 +58550,2509032,48,2411,1 +58551,2509045,62,3120,1 +58552,2509062,22,1133,1 +58553,2509093,136,6813,1 +58554,2509107,90,4515,1 +58555,2509116,84,4232,1 +58556,2509443,49,2466,1 +58557,2509453,28,1405,1 +58558,2509458,132,6607,1 +58559,2509464,174,8720,1 +58560,2509513,189,9465,1 +58561,2509695,3,152,1 +58562,2510400,138,6901,1 +58563,2510400,178,8946,1 +58564,2510412,161,8078,1 +58565,2510412,183,9178,1 +58566,2510412,0,9,1 +58567,2510429,24,1206,1 +58568,2510436,162,8130,1 +58569,2510436,128,6428,1 +58570,2510436,148,7443,1 +58571,2510437,57,2894,1 +58572,2510451,197,9865,1 +58573,2510462,117,5889,1 +58574,2510463,15,789,1 +58575,2510472,184,9228,1 +58576,2510484,193,9657,1 +58577,2510496,21,1070,1 +58578,2510496,27,1394,1 +58579,2510497,24,1230,1 +58580,2510523,69,3465,1 +58581,2510532,41,2056,1 +58582,2510532,18,909,1 +58583,2510557,112,5623,1 +58584,2510880,187,9375,1 +58585,2510880,10,529,1 +58586,2510883,167,8396,1 +58587,2510886,128,6443,1 +58588,2510895,166,8334,1 +58589,2510898,68,3417,1 +58590,2510904,50,2518,1 +58591,2510904,130,6542,1 +58592,2510905,71,3599,1 +58593,2510914,11,576,1 +58594,2510916,18,901,1 +58595,2510917,195,9763,1 +58596,2510919,58,2915,1 +58597,2510919,155,7789,1 +58598,2510928,192,9646,1 +58599,2510938,174,8732,1 +58600,2510965,174,8748,1 +58601,2510977,165,8277,1 +58602,2510977,19,977,1 +58603,2510985,180,9016,1 +58604,2510988,31,1597,1 +58605,2511036,97,4853,1 +58606,2511039,112,5629,1 +58607,2511043,81,4073,1 +58608,2511361,192,9618,1 +58609,2511373,130,6533,1 +58610,2511384,180,9027,1 +58611,2511385,181,9079,1 +58612,2511390,179,8971,1 +58613,2511396,170,8505,1 +58614,2511840,17,860,1 +58615,2511840,114,5718,1 +58616,2511840,83,4164,1 +58617,2511841,86,4344,1 +58618,2511841,46,2336,1 +58619,2511850,110,5508,1 +58620,2511852,142,7115,1 +58621,2511852,71,3563,1 +58622,2511855,134,6717,1 +58623,2511855,156,7841,1 +58624,2511858,131,6596,1 +58625,2511865,105,5287,1 +58626,2511867,42,2133,1 +58627,2511876,165,8297,1 +58628,2511880,58,2909,1 +58629,2511883,145,7274,1 +58630,2511888,61,3067,1 +58631,2511889,152,7606,1 +58632,2511903,139,6984,1 +58633,2511908,69,3479,1 +58634,2511912,7,358,1 +58635,2511948,25,1253,1 +58636,2511972,118,5922,1 +58637,2512119,129,6465,1 +58638,2512320,57,2874,1 +58639,2512320,7,356,1 +58640,2512322,115,5788,1 +58641,2512323,51,2598,1 +58642,2512332,174,8703,1 +58643,2512333,108,5450,1 +58644,2512350,181,9081,1 +58645,2512369,4,204,1 +58646,2512384,109,5457,1 +58647,2512393,111,5560,1 +58648,2512404,151,7590,1 +58649,2512447,46,2339,1 +58650,2512503,120,6025,1 +58651,2512800,45,2294,1 +58652,2512803,110,5529,1 +58653,2512810,128,6440,1 +58654,2512812,160,8046,1 +58655,2512824,150,7529,1 +58656,2512833,23,1199,1 +58657,2512872,61,3098,1 +58658,2512896,67,3356,1 +58659,2513004,15,783,1 +58660,2513046,87,4384,1 +58661,2513074,58,2941,1 +58662,2513280,131,6574,1 +58663,2513281,16,818,1 +58664,2513293,45,2273,1 +58665,2513294,174,8748,1 +58666,2513296,89,4478,1 +58667,2513301,106,5337,1 +58668,2513314,22,1145,1 +58669,2513333,96,4802,1 +58670,2513342,183,9157,1 +58671,2513358,18,914,1 +58672,2513382,65,3278,1 +58673,2513388,69,3485,1 +58674,2513389,170,8536,1 +58675,2513391,103,5175,1 +58676,2513400,29,1493,1 +58677,2513434,148,7418,1 +58678,2513436,58,2926,1 +58679,2513760,191,9554,1 +58680,2513760,42,2127,1 +58681,2513760,177,8866,1 +58682,2513761,61,3062,1 +58683,2513761,85,4289,1 +58684,2513763,61,3073,1 +58685,2513763,18,911,1 +58686,2513764,169,8478,1 +58687,2513772,105,5269,1 +58688,2513772,192,9612,1 +58689,2513775,54,2718,1 +58690,2513790,83,4180,1 +58691,2513796,42,2133,1 +58692,2513797,133,6683,1 +58693,2513798,121,6062,1 +58694,2513812,95,4790,1 +58695,2513817,105,5288,1 +58696,2513820,182,9113,1 +58697,2513820,40,2004,1 +58698,2513832,65,3268,1 +58699,2513844,53,2676,1 +58700,2513844,67,3382,1 +58701,2513844,17,867,1 +58702,2513845,24,1224,1 +58703,2513868,191,9568,1 +58704,2513868,3,197,1 +58705,2513880,61,3053,1 +58706,2513884,151,7562,1 +58707,2513892,29,1476,1 +58708,2513989,8,422,1 +58709,2514132,160,8046,1 +58710,2514240,150,7509,1 +58711,2514240,62,3126,1 +58712,2514241,40,2014,1 +58713,2514243,6,302,1 +58714,2514252,60,3010,1 +58715,2514265,49,2500,1 +58716,2514268,106,5324,1 +58717,2514279,32,1637,1 +58718,2514290,121,6056,1 +58719,2514294,114,5721,1 +58720,2514300,80,4038,1 +58721,2514309,38,1911,1 +58722,2514312,139,6999,1 +58723,2514312,172,8620,1 +58724,2514312,61,3098,1 +58725,2514315,11,562,1 +58726,2514334,12,624,1 +58727,2514336,19,969,1 +58728,2514337,32,1631,1 +58729,2514346,126,6305,1 +58730,2514355,49,2483,1 +58731,2514375,118,5941,1 +58732,2514384,150,7512,1 +58733,2514414,111,5587,1 +58734,2514516,31,1578,1 +58735,2514744,39,1951,1 +58736,2515680,40,2006,1 +58737,2515680,172,8607,1 +58738,2515681,106,5319,1 +58739,2515681,48,2430,1 +58740,2515692,117,5899,1 +58741,2515692,196,9844,1 +58742,2515704,183,9181,1 +58743,2515716,38,1945,1 +58744,2515716,179,8964,1 +58745,2515729,57,2872,1 +58746,2515752,177,8885,1 +58747,2515764,101,5069,1 +58748,2515765,65,3260,1 +58749,2515834,140,7027,1 +58750,2515893,160,8028,1 +58751,2515965,35,1762,1 +58752,2516165,197,9869,1 +58753,2516169,173,8684,1 +58754,2516173,32,1609,1 +58755,2516184,180,9040,1 +58756,2516185,87,4399,1 +58757,2516187,84,4238,1 +58758,2516205,76,3839,1 +58759,2516209,80,4020,1 +58760,2516222,145,7261,1 +58761,2516280,150,7542,1 +58762,2516331,128,6436,1 +58763,2516388,64,3239,1 +58764,2517121,20,1006,1 +58765,2517123,55,2791,1 +58766,2517145,83,4171,1 +58767,2517157,25,1282,1 +58768,2517168,163,8168,1 +58769,2517168,50,2529,1 +58770,2517180,121,6056,1 +58771,2517181,18,949,1 +58772,2517196,70,3521,1 +58773,2517303,135,6767,1 +58774,2517310,118,5947,1 +58775,2517600,94,4704,1 +58776,2517602,78,3925,1 +58777,2517602,96,4826,1 +58778,2517603,183,9191,1 +58779,2517611,3,184,1 +58780,2517636,163,8189,1 +58781,2517643,8,448,1 +58782,2517649,179,8968,1 +58783,2517666,182,9101,1 +58784,2517726,114,5715,1 +58785,2517780,16,848,1 +58786,2517810,33,1698,1 +58787,2518560,85,4268,1 +58788,2518572,199,9987,1 +58789,2518584,180,9017,1 +58790,2518620,21,1090,1 +58791,2519052,81,4078,1 +58792,2519053,7,360,1 +58793,2519065,89,4479,1 +58794,2519067,159,7979,1 +58795,2519079,9,460,1 +58796,2519125,134,6744,1 +58797,2519178,11,597,1 +58798,2519526,80,4037,1 +58799,2519541,142,7111,1 +58800,2520480,35,1767,1 +58801,2520480,14,711,1 +58802,2520482,89,4478,1 +58803,2520517,155,7782,1 +58804,2520530,145,7258,1 +58805,2520552,153,7685,1 +58806,2520588,184,9221,1 +58807,2520984,134,6730,1 +58808,2520998,189,9482,1 +58809,2521029,155,7770,1 +58810,2521047,144,7245,1 +58811,2521062,186,9341,1 +58812,2521462,26,1326,1 +58813,2521464,115,5789,1 +58814,2521464,6,328,1 +58815,2521466,109,5455,1 +58816,2521476,96,4826,1 +58817,2521488,171,8588,1 +58818,2521501,44,2233,1 +58819,2521548,174,8729,1 +58820,2521557,48,2423,1 +58821,2521596,130,6505,1 +58822,2521920,88,4417,1 +58823,2521920,148,7423,1 +58824,2521920,182,9141,1 +58825,2521921,89,4482,1 +58826,2521921,15,756,1 +58827,2521922,67,3400,1 +58828,2521922,13,676,1 +58829,2521922,41,2065,1 +58830,2521923,77,3864,1 +58831,2521923,135,6798,1 +58832,2521924,42,2116,1 +58833,2521924,50,2504,1 +58834,2521924,99,4988,1 +58835,2521925,0,19,1 +58836,2521926,95,4751,1 +58837,2521932,34,1740,1 +58838,2521933,133,6666,1 +58839,2521935,123,6175,1 +58840,2521941,125,6264,1 +58841,2521945,147,7364,1 +58842,2521945,54,2748,1 +58843,2521954,0,20,1 +58844,2521956,48,2404,1 +58845,2521968,150,7528,1 +58846,2521969,31,1589,1 +58847,2521974,1,57,1 +58848,2521975,118,5910,1 +58849,2521980,169,8452,1 +58850,2521980,154,7713,1 +58851,2521983,126,6324,1 +58852,2521985,186,9308,1 +58853,2522005,186,9311,1 +58854,2522016,114,5734,1 +58855,2522052,41,2063,1 +58856,2522052,40,2042,1 +58857,2522088,127,6396,1 +58858,2522101,9,471,1 +58859,2522401,155,7786,1 +58860,2522404,53,2682,1 +58861,2522436,117,5851,1 +58862,2522449,95,4783,1 +58863,2522469,170,8522,1 +58864,2522473,86,4328,1 +58865,2522479,57,2868,1 +58866,2523384,67,3390,1 +58867,2523408,141,7090,1 +58868,2523420,0,18,1 +58869,2523448,0,49,1 +58870,2523648,5,295,1 +58871,2523840,122,6107,1 +58872,2523884,76,3817,1 +58873,2523888,34,1716,1 +58874,2523960,135,6774,1 +58875,2523993,187,9366,1 +58876,2524329,53,2688,1 +58877,2524332,14,738,1 +58878,2524333,100,5046,1 +58879,2524333,99,4961,1 +58880,2524338,34,1726,1 +58881,2524352,53,2659,1 +58882,2524374,52,2604,1 +58883,2524380,154,7705,1 +58884,2524419,26,1308,1 +58885,2524428,66,3342,1 +58886,2524620,151,7597,1 +58887,2524800,142,7101,1 +58888,2524800,60,3002,1 +58889,2524801,180,9031,1 +58890,2524807,171,8570,1 +58891,2524809,6,322,1 +58892,2524812,29,1488,1 +58893,2524812,18,928,1 +58894,2524812,184,9244,1 +58895,2524821,76,3850,1 +58896,2524824,6,338,1 +58897,2524827,199,9991,1 +58898,2524833,119,5953,1 +58899,2524837,168,8433,1 +58900,2524848,184,9238,1 +58901,2524848,47,2384,1 +58902,2524851,78,3932,1 +58903,2524862,67,3387,1 +58904,2524871,60,3031,1 +58905,2524896,29,1451,1 +58906,2524908,108,5413,1 +58907,2524920,29,1454,1 +58908,2524920,6,308,1 +58909,2524920,22,1115,1 +58910,2524956,190,9511,1 +58911,2525760,49,2493,1 +58912,2525760,47,2382,1 +58913,2525763,198,9934,1 +58914,2525766,127,6385,1 +58915,2525772,72,3641,1 +58916,2525775,159,7964,1 +58917,2525781,1,83,1 +58918,2525786,141,7056,1 +58919,2525796,196,9833,1 +58920,2525799,196,9844,1 +58921,2525808,142,7102,1 +58922,2525821,92,4637,1 +58923,2525865,188,9414,1 +58924,2525979,102,5109,1 +58925,2526051,187,9358,1 +58926,2526240,54,2728,1 +58927,2526241,58,2921,1 +58928,2526252,106,5312,1 +58929,2526253,154,7716,1 +58930,2526278,46,2320,1 +58931,2526292,54,2701,1 +58932,2526310,27,1370,1 +58933,2526360,131,6568,1 +58934,2526395,149,7497,1 +58935,2526420,80,4043,1 +58936,2526745,128,6421,1 +58937,2526809,20,1042,1 +58938,2527200,98,4939,1 +58939,2527287,112,5616,1 +58940,2527692,91,4589,1 +58941,2527692,116,5824,1 +58942,2527692,18,948,1 +58943,2527695,104,5222,1 +58944,2527719,179,8968,1 +58945,2528640,38,1912,1 +58946,2528644,160,8031,1 +58947,2528652,130,6549,1 +58948,2528652,58,2940,1 +58949,2528657,44,2208,1 +58950,2528664,153,7692,1 +58951,2528677,104,5223,1 +58952,2528703,185,9293,1 +58953,2528705,91,4593,1 +58954,2528715,39,1968,1 +58955,2528760,158,7918,1 +58956,2528784,62,3136,1 +58957,2528834,30,1513,1 +58958,2529120,85,4277,1 +58959,2529145,104,5227,1 +58960,2529156,185,9287,1 +58961,2529170,10,507,1 +58962,2529180,191,9577,1 +58963,2529185,174,8709,1 +58964,2529216,96,4809,1 +58965,2529241,132,6627,1 +58966,2529384,112,5607,1 +58967,2529600,161,8076,1 +58968,2529612,11,588,1 +58969,2529614,31,1560,1 +58970,2529624,158,7943,1 +58971,2529640,103,5154,1 +58972,2529663,141,7075,1 +58973,2529664,96,4810,1 +58974,2529792,157,7851,1 +58975,2530081,91,4556,1 +58976,2530093,159,7977,1 +58977,2530147,18,910,1 +58978,2530560,175,8762,1 +58979,2530560,84,4230,1 +58980,2530560,96,4803,1 +58981,2530560,153,7659,1 +58982,2530560,162,8123,1 +58983,2530560,66,3325,1 +58984,2530560,6,345,1 +58985,2530560,54,2735,1 +58986,2530560,167,8376,1 +58987,2530561,5,260,1 +58988,2530561,112,5649,1 +58989,2530563,131,6594,1 +58990,2530563,15,774,1 +58991,2530563,182,9141,1 +58992,2530564,48,2447,1 +58993,2530564,73,3699,1 +58994,2530565,64,3229,1 +58995,2530566,104,5216,1 +58996,2530566,58,2915,1 +58997,2530566,75,3760,1 +58998,2530566,153,7663,1 +58999,2530569,60,3021,1 +59000,2530570,25,1270,1 +59001,2530572,152,7604,1 +59002,2530572,56,2812,1 +59003,2530572,165,8289,1 +59004,2530572,169,8481,1 +59005,2530572,174,8712,1 +59006,2530572,58,2928,1 +59007,2530572,30,1539,1 +59008,2530573,121,6078,1 +59009,2530574,19,993,1 +59010,2530574,137,6860,1 +59011,2530575,166,8305,1 +59012,2530575,56,2808,1 +59013,2530577,132,6605,1 +59014,2530578,49,2482,1 +59015,2530579,173,8692,1 +59016,2530581,88,4420,1 +59017,2530583,8,431,1 +59018,2530584,101,5088,1 +59019,2530584,9,474,1 +59020,2530584,40,2035,1 +59021,2530584,94,4735,1 +59022,2530584,168,8405,1 +59023,2530584,4,222,1 +59024,2530585,28,1416,1 +59025,2530587,140,7001,1 +59026,2530590,164,8216,1 +59027,2530594,45,2258,1 +59028,2530596,25,1292,1 +59029,2530596,66,3334,1 +59030,2530596,163,8177,1 +59031,2530596,113,5666,1 +59032,2530596,7,399,1 +59033,2530596,27,1395,1 +59034,2530597,110,5524,1 +59035,2530599,41,2072,1 +59036,2530600,174,8739,1 +59037,2530603,107,5395,1 +59038,2530603,155,7782,1 +59039,2530605,63,3182,1 +59040,2530608,27,1379,1 +59041,2530608,6,307,1 +59042,2530608,98,4915,1 +59043,2530608,181,9055,1 +59044,2530608,28,1446,1 +59045,2530608,11,578,1 +59046,2530611,113,5690,1 +59047,2530612,186,9322,1 +59048,2530620,194,9740,1 +59049,2530620,109,5485,1 +59050,2530621,135,6782,1 +59051,2530628,111,5589,1 +59052,2530632,85,4271,1 +59053,2530632,104,5237,1 +59054,2530632,59,2953,1 +59055,2530632,6,349,1 +59056,2530632,153,7696,1 +59057,2530638,189,9487,1 +59058,2530638,61,3098,1 +59059,2530644,123,6199,1 +59060,2530644,176,8823,1 +59061,2530644,12,642,1 +59062,2530644,133,6670,1 +59063,2530644,74,3734,1 +59064,2530644,193,9673,1 +59065,2530647,187,9400,1 +59066,2530656,98,4912,1 +59067,2530656,102,5130,1 +59068,2530658,143,7183,1 +59069,2530659,26,1322,1 +59070,2530659,129,6455,1 +59071,2530668,17,863,1 +59072,2530669,172,8626,1 +59073,2530680,32,1632,1 +59074,2530680,99,4970,1 +59075,2530680,40,2010,1 +59076,2530680,5,284,1 +59077,2530680,139,6964,1 +59078,2530686,11,592,1 +59079,2530692,52,2613,1 +59080,2530701,196,9826,1 +59081,2530704,24,1246,1 +59082,2530705,58,2913,1 +59083,2530705,138,6936,1 +59084,2530722,156,7827,1 +59085,2530728,67,3378,1 +59086,2530728,43,2200,1 +59087,2530729,59,2953,1 +59088,2530733,14,714,1 +59089,2530741,158,7908,1 +59090,2530749,190,9534,1 +59091,2530749,184,9236,1 +59092,2530857,167,8371,1 +59093,2531040,190,9516,1 +59094,2531046,178,8902,1 +59095,2531049,60,3024,1 +59096,2531049,57,2873,1 +59097,2531052,196,9811,1 +59098,2531064,119,5998,1 +59099,2531064,187,9384,1 +59100,2531064,152,7647,1 +59101,2531064,57,2888,1 +59102,2531064,107,5358,1 +59103,2531076,137,6870,1 +59104,2531086,70,3516,1 +59105,2531089,111,5600,1 +59106,2531091,115,5763,1 +59107,2531106,48,2439,1 +59108,2531109,38,1930,1 +59109,2531114,20,1002,1 +59110,2531124,174,8724,1 +59111,2531125,163,8155,1 +59112,2531148,107,5387,1 +59113,2531194,179,8994,1 +59114,2531532,125,6285,1 +59115,2531532,177,8874,1 +59116,2531556,156,7816,1 +59117,2531557,82,4144,1 +59118,2531568,52,2625,1 +59119,2531580,12,628,1 +59120,2531581,66,3318,1 +59121,2532001,45,2261,1 +59122,2532001,76,3832,1 +59123,2532049,62,3105,1 +59124,2532480,49,2474,1 +59125,2532480,97,4870,1 +59126,2532481,5,287,1 +59127,2532481,50,2521,1 +59128,2532481,90,4526,1 +59129,2532487,65,3281,1 +59130,2532492,104,5229,1 +59131,2532493,40,2005,1 +59132,2532498,108,5424,1 +59133,2532499,29,1499,1 +59134,2532504,15,771,1 +59135,2532504,187,9364,1 +59136,2532505,118,5921,1 +59137,2532505,47,2380,1 +59138,2532516,3,194,1 +59139,2532517,100,5036,1 +59140,2532522,104,5221,1 +59141,2532528,44,2245,1 +59142,2532529,191,9557,1 +59143,2532530,85,4291,1 +59144,2532532,157,7862,1 +59145,2532535,29,1454,1 +59146,2532552,148,7445,1 +59147,2532564,8,447,1 +59148,2532568,90,4541,1 +59149,2532613,77,3861,1 +59150,2532614,190,9503,1 +59151,2532684,141,7090,1 +59152,2532960,53,2690,1 +59153,2532960,182,9104,1 +59154,2532960,186,9345,1 +59155,2532960,47,2377,1 +59156,2532960,10,518,1 +59157,2532960,96,4839,1 +59158,2532961,178,8923,1 +59159,2532962,181,9089,1 +59160,2532962,0,27,1 +59161,2532963,11,583,1 +59162,2532969,136,6832,1 +59163,2532972,91,4600,1 +59164,2532972,38,1940,1 +59165,2532972,197,9865,1 +59166,2532978,156,7802,1 +59167,2532984,195,9780,1 +59168,2532984,171,8596,1 +59169,2532985,55,2800,1 +59170,2532985,63,3170,1 +59171,2532991,175,8775,1 +59172,2532996,96,4837,1 +59173,2532996,40,2009,1 +59174,2532997,17,863,1 +59175,2533002,10,547,1 +59176,2533005,96,4809,1 +59177,2533008,99,4968,1 +59178,2533008,165,8296,1 +59179,2533008,54,2737,1 +59180,2533009,57,2853,1 +59181,2533009,91,4565,1 +59182,2533032,60,3010,1 +59183,2533034,72,3626,1 +59184,2533035,199,9977,1 +59185,2533044,90,4504,1 +59186,2533068,66,3344,1 +59187,2533080,197,9881,1 +59188,2533081,128,6416,1 +59189,2533094,183,9168,1 +59190,2533140,196,9822,1 +59191,2533141,160,8023,1 +59192,2533164,62,3111,1 +59193,2533441,62,3137,1 +59194,2533442,44,2208,1 +59195,2533444,175,8773,1 +59196,2533448,38,1948,1 +59197,2533449,106,5330,1 +59198,2533452,72,3606,1 +59199,2533452,153,7659,1 +59200,2533474,25,1252,1 +59201,2533476,92,4632,1 +59202,2533477,44,2216,1 +59203,2533477,71,3551,1 +59204,2533479,124,6210,1 +59205,2533492,196,9848,1 +59206,2533500,67,3379,1 +59207,2533552,24,1229,1 +59208,2533572,111,5595,1 +59209,2533611,97,4867,1 +59210,2533620,94,4709,1 +59211,2533945,88,4406,1 +59212,2533957,111,5572,1 +59213,2534016,180,9041,1 +59214,2534028,154,7739,1 +59215,2534124,188,9422,1 +59216,2534414,46,2311,1 +59217,2534880,43,2192,1 +59218,2534881,2,125,1 +59219,2534881,25,1263,1 +59220,2534881,174,8745,1 +59221,2534883,179,8983,1 +59222,2534893,179,8954,1 +59223,2534894,188,9414,1 +59224,2534904,190,9546,1 +59225,2534917,0,49,1 +59226,2534928,126,6334,1 +59227,2534928,196,9848,1 +59228,2534940,117,5868,1 +59229,2534976,80,4007,1 +59230,2535051,195,9796,1 +59231,2535360,181,9067,1 +59232,2535361,157,7885,1 +59233,2535375,154,7745,1 +59234,2535390,5,267,1 +59235,2535433,18,937,1 +59236,2535840,43,2161,1 +59237,2535840,75,3767,1 +59238,2535849,1,70,1 +59239,2535895,17,882,1 +59240,2535912,165,8259,1 +59241,2535927,151,7551,1 +59242,2535972,59,2980,1 +59243,2536020,99,4957,1 +59244,2536335,133,6655,1 +59245,2536338,145,7296,1 +59246,2536344,42,2109,1 +59247,2536404,26,1304,1 +59248,2536409,114,5703,1 +59249,2536409,197,9879,1 +59250,2536800,195,9797,1 +59251,2536800,7,356,1 +59252,2536800,169,8493,1 +59253,2536800,114,5721,1 +59254,2536800,170,8530,1 +59255,2536801,26,1331,1 +59256,2536801,28,1437,1 +59257,2536803,1,68,1 +59258,2536809,115,5756,1 +59259,2536811,96,4801,1 +59260,2536812,95,4794,1 +59261,2536812,83,4161,1 +59262,2536825,129,6466,1 +59263,2536830,197,9851,1 +59264,2536848,25,1299,1 +59265,2536848,76,3809,1 +59266,2536848,171,8558,1 +59267,2536849,144,7203,1 +59268,2536850,172,8638,1 +59269,2536851,42,2142,1 +59270,2536857,77,3899,1 +59271,2536873,78,3935,1 +59272,2536884,48,2418,1 +59273,2536899,156,7819,1 +59274,2536924,184,9208,1 +59275,2536929,33,1670,1 +59276,2536944,187,9391,1 +59277,2536944,85,4275,1 +59278,2536959,150,7533,1 +59279,2537136,122,6144,1 +59280,2537280,7,390,1 +59281,2537290,13,655,1 +59282,2537292,193,9655,1 +59283,2537292,118,5920,1 +59284,2537292,59,2988,1 +59285,2537304,49,2496,1 +59286,2537319,19,994,1 +59287,2537370,182,9130,1 +59288,2537391,116,5818,1 +59289,2537760,41,2065,1 +59290,2537760,187,9361,1 +59291,2537760,25,1252,1 +59292,2537761,44,2211,1 +59293,2537763,75,3785,1 +59294,2537773,88,4443,1 +59295,2537778,129,6498,1 +59296,2537779,160,8026,1 +59297,2537784,112,5610,1 +59298,2537790,14,712,1 +59299,2537794,135,6766,1 +59300,2537796,98,4946,1 +59301,2537799,68,3410,1 +59302,2537802,190,9544,1 +59303,2537805,131,6588,1 +59304,2537805,64,3236,1 +59305,2537808,130,6537,1 +59306,2537808,165,8290,1 +59307,2537809,99,4993,1 +59308,2537818,164,8226,1 +59309,2537845,74,3734,1 +59310,2537856,164,8242,1 +59311,2537858,182,9110,1 +59312,2537868,114,5740,1 +59313,2537868,103,5158,1 +59314,2537874,25,1254,1 +59315,2537878,150,7532,1 +59316,2537878,19,971,1 +59317,2537893,157,7898,1 +59318,2537928,167,8367,1 +59319,2537930,121,6060,1 +59320,2537940,29,1486,1 +59321,2538240,43,2196,1 +59322,2538249,161,8086,1 +59323,2538252,24,1233,1 +59324,2538349,154,7725,1 +59325,2538852,11,596,1 +59326,2538948,67,3380,1 +59327,2539248,66,3343,1 +59328,2539260,66,3318,1 +59329,2539335,159,7958,1 +59330,2539680,75,3756,1 +59331,2539707,0,47,1 +59332,2539719,98,4910,1 +59333,2539728,97,4858,1 +59334,2539752,99,4979,1 +59335,2540160,107,5396,1 +59336,2540172,130,6512,1 +59337,2540184,0,36,1 +59338,2540189,124,6211,1 +59339,2540211,80,4020,1 +59340,2540268,16,802,1 +59341,2540643,136,6841,1 +59342,2540672,148,7427,1 +59343,2540677,188,9423,1 +59344,2540677,52,2601,1 +59345,2540727,60,3024,1 +59346,2540753,181,9063,1 +59347,2540769,184,9209,1 +59348,2541120,135,6775,1 +59349,2541120,164,8218,1 +59350,2541120,137,6884,1 +59351,2541120,183,9184,1 +59352,2541120,81,4098,1 +59353,2541120,186,9322,1 +59354,2541121,170,8523,1 +59355,2541124,94,4711,1 +59356,2541126,186,9337,1 +59357,2541129,54,2728,1 +59358,2541132,122,6142,1 +59359,2541132,72,3628,1 +59360,2541132,64,3208,1 +59361,2541132,186,9336,1 +59362,2541132,192,9618,1 +59363,2541132,42,2129,1 +59364,2541132,137,6872,1 +59365,2541133,39,1965,1 +59366,2541133,41,2059,1 +59367,2541135,133,6671,1 +59368,2541136,98,4916,1 +59369,2541136,38,1910,1 +59370,2541142,61,3097,1 +59371,2541144,35,1795,1 +59372,2541145,184,9210,1 +59373,2541145,195,9768,1 +59374,2541145,11,580,1 +59375,2541156,92,4611,1 +59376,2541157,13,682,1 +59377,2541162,7,362,1 +59378,2541168,12,636,1 +59379,2541168,61,3093,1 +59380,2541172,125,6255,1 +59381,2541174,10,531,1 +59382,2541174,134,6726,1 +59383,2541180,181,9090,1 +59384,2541180,114,5744,1 +59385,2541180,109,5488,1 +59386,2541181,66,3312,1 +59387,2541186,13,699,1 +59388,2541192,103,5197,1 +59389,2541192,198,9933,1 +59390,2541192,124,6214,1 +59391,2541229,91,4573,1 +59392,2541229,142,7143,1 +59393,2541240,122,6104,1 +59394,2541265,96,4815,1 +59395,2541267,78,3906,1 +59396,2541270,150,7534,1 +59397,2541288,29,1492,1 +59398,2541314,49,2479,1 +59399,2541600,65,3286,1 +59400,2541600,143,7173,1 +59401,2541600,156,7805,1 +59402,2541612,180,9035,1 +59403,2541613,7,381,1 +59404,2541615,15,760,1 +59405,2541620,172,8649,1 +59406,2541624,72,3607,1 +59407,2541642,18,911,1 +59408,2541648,71,3560,1 +59409,2541648,74,3709,1 +59410,2541648,15,795,1 +59411,2541648,66,3345,1 +59412,2541654,109,5454,1 +59413,2541660,70,3531,1 +59414,2541663,72,3602,1 +59415,2541684,145,7275,1 +59416,2541688,86,4338,1 +59417,2541708,27,1367,1 +59418,2541721,169,8477,1 +59419,2541756,191,9562,1 +59420,2541756,19,958,1 +59421,2541756,10,516,1 +59422,2541758,51,2591,1 +59423,2541771,114,5731,1 +59424,2542083,23,1178,1 +59425,2542087,12,641,1 +59426,2542128,112,5642,1 +59427,2542179,26,1338,1 +59428,2542212,40,2043,1 +59429,2542563,2,104,1 +59430,2542572,32,1618,1 +59431,2542572,24,1205,1 +59432,2542584,115,5777,1 +59433,2542587,168,8429,1 +59434,2543040,124,6208,1 +59435,2543046,155,7792,1 +59436,2543048,159,7969,1 +59437,2543052,8,423,1 +59438,2543052,31,1573,1 +59439,2543053,33,1695,1 +59440,2543054,102,5132,1 +59441,2543064,18,932,1 +59442,2543064,195,9767,1 +59443,2543064,149,7477,1 +59444,2543070,180,9045,1 +59445,2543089,13,674,1 +59446,2543091,24,1229,1 +59447,2543094,83,4168,1 +59448,2543100,0,45,1 +59449,2543118,10,503,1 +59450,2543136,112,5629,1 +59451,2543137,100,5047,1 +59452,2543148,74,3743,1 +59453,2543172,37,1899,1 +59454,2543245,139,6993,1 +59455,2543520,18,917,1 +59456,2543580,51,2573,1 +59457,2544036,126,6342,1 +59458,2544193,166,8331,1 +59459,2544480,64,3201,1 +59460,2544480,148,7444,1 +59461,2544481,18,940,1 +59462,2544481,60,3049,1 +59463,2544483,150,7550,1 +59464,2544484,12,622,1 +59465,2544486,196,9849,1 +59466,2544490,97,4890,1 +59467,2544492,126,6326,1 +59468,2544492,179,8970,1 +59469,2544492,14,707,1 +59470,2544492,117,5857,1 +59471,2544493,120,6014,1 +59472,2544495,64,3201,1 +59473,2544498,25,1281,1 +59474,2544505,171,8576,1 +59475,2544508,154,7703,1 +59476,2544510,29,1497,1 +59477,2544517,150,7514,1 +59478,2544519,114,5722,1 +59479,2544528,100,5039,1 +59480,2544528,75,3781,1 +59481,2544529,75,3779,1 +59482,2544529,46,2346,1 +59483,2544535,36,1835,1 +59484,2544541,178,8938,1 +59485,2544549,157,7891,1 +59486,2544561,39,1961,1 +59487,2544564,6,335,1 +59488,2544588,112,5636,1 +59489,2544603,148,7414,1 +59490,2544629,19,952,1 +59491,2544630,124,6236,1 +59492,2544636,11,567,1 +59493,2544642,59,2987,1 +59494,2544649,127,6359,1 +59495,2544720,132,6610,1 +59496,2544732,32,1643,1 +59497,2545000,91,4565,1 +59498,2545476,92,4642,1 +59499,2545506,83,4184,1 +59500,2545593,17,851,1 diff --git a/openquake/quaket/data/aux/ses/output-244-ruptures_62.csv b/openquake/quaket/data/aux/ses/output-244-ruptures_62.csv new file mode 100644 index 0000000..688c62f --- /dev/null +++ b/openquake/quaket/data/aux/ses/output-244-ruptures_62.csv @@ -0,0 +1,46835 @@ +#,,,,,,,,,,"generated_by='OpenQuake engine 3.24.0-git5f693ddbce', start_date='2025-09-01T17:23:42', checksum=72497888, investigation_time=50.0, ses_per_logic_tree_path=1" +rup_id,source_id,multiplicity,mag,centroid_lon,centroid_lat,centroid_depth,trt,strike,dip,rake +0,fr,1,3.550000E+00,4.552800E+00,4.482738E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999285E+01,0.000000E+00 +12,fr,1,3.650000E+00,4.552800E+00,4.482738E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998725E+01,0.000000E+00 +18,fr,1,3.650000E+00,4.552800E+00,4.482738E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998711E+01,-9.000000E+01 +24,fr,1,3.750000E+00,4.552800E+00,4.482738E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998864E+01,0.000000E+00 +121,fr,1,4.550000E+00,4.552800E+00,4.482738E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999095E+01,0.000000E+00 +123,fr,1,4.550000E+00,4.552800E+00,4.482738E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.799711E+01,0.000000E+00 +214,fr,1,5.250000E+00,4.552800E+00,4.482738E+01,1.500000E+01,Active Shallow Crust,1.288841E+02,8.998709E+01,0.000000E+00 +349,fr,1,6.450000E+00,4.552800E+00,4.482738E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +504,fr,2,3.750000E+00,-5.481510E+00,4.946184E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +554,fr,1,4.150000E+00,-5.481510E+00,4.946184E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +960,fr,1,3.550000E+00,3.038080E+00,5.117531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +1111,fr,1,4.750000E+00,3.038080E+00,5.117531E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,-9.000000E+01 +1116,fr,1,4.850000E+00,3.038080E+00,5.117531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1440,fr,1,3.550000E+00,3.577280E+00,4.547142E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +1443,fr,3,3.550000E+00,3.577280E+00,4.547142E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799830E+01,0.000000E+00 +1452,fr,2,3.650000E+00,3.577280E+00,4.547142E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +1453,fr,1,3.650000E+00,3.577280E+00,4.547142E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +1464,fr,1,3.750000E+00,3.577280E+00,4.547142E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998876E+01,0.000000E+00 +1466,fr,1,3.750000E+00,3.577280E+00,4.547142E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998877E+01,0.000000E+00 +1473,fr,1,3.750000E+00,3.577280E+00,4.547142E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.996748E+01,0.000000E+00 +1476,fr,1,3.850000E+00,3.577280E+00,4.547142E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1488,fr,1,3.950000E+00,3.577280E+00,4.547142E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +1524,fr,1,4.250000E+00,3.577280E+00,4.547142E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +1527,fr,1,4.250000E+00,3.577280E+00,4.547142E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.799411E+01,0.000000E+00 +1548,fr,1,4.450000E+00,3.577280E+00,4.547142E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1551,fr,1,4.450000E+00,3.577280E+00,4.547142E+01,5.000000E+00,Active Shallow Crust,2.400049E+02,5.799460E+01,0.000000E+00 +1567,fr,1,4.550000E+00,3.577280E+00,4.547142E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,-9.000000E+01 +1608,fr,1,4.950000E+00,3.577280E+00,4.547142E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1669,fr,1,5.450000E+00,3.577280E+00,4.547142E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1923,fr,2,3.550000E+00,-8.764800E-01,4.663022E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799818E+01,0.000000E+00 +1929,fr,1,3.550000E+00,-8.764800E-01,4.663022E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999351E+01,0.000000E+00 +1932,fr,1,3.650000E+00,-8.764800E-01,4.663022E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1935,fr,1,3.650000E+00,-8.764800E-01,4.663022E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801288E+01,0.000000E+00 +1938,fr,1,3.650000E+00,-8.764800E-01,4.663022E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +1956,fr,1,3.850000E+00,-8.764800E-01,4.663022E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1957,fr,1,3.850000E+00,-8.764800E-01,4.663022E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1959,fr,1,3.850000E+00,-8.764800E-01,4.663022E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799789E+01,0.000000E+00 +1970,fr,1,3.950000E+00,-8.764800E-01,4.663022E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1972,fr,1,3.950000E+00,-8.764800E-01,4.663022E+01,1.500000E+01,Active Shallow Crust,2.400198E+02,5.800495E+01,0.000000E+00 +1977,fr,1,3.950000E+00,-8.764800E-01,4.663022E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.999372E+01,0.000000E+00 +1981,fr,1,4.050000E+00,-8.764800E-01,4.663022E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1983,fr,1,4.050000E+00,-8.764800E-01,4.663022E+01,5.000000E+00,Active Shallow Crust,2.400059E+02,5.800587E+01,0.000000E+00 +1998,fr,1,4.150000E+00,-8.764800E-01,4.663022E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +2017,fr,1,4.350000E+00,-8.764800E-01,4.663022E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2040,fr,2,4.550000E+00,-8.764800E-01,4.663022E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +2058,fr,1,4.650000E+00,-8.764800E-01,4.663022E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +2100,fr,1,5.050000E+00,-8.764800E-01,4.663022E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2124,fr,1,5.250000E+00,-8.764800E-01,4.663022E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2125,fr,1,5.250000E+00,-8.764800E-01,4.663022E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2175,fr,1,5.650000E+00,-8.764800E-01,4.663022E+01,5.000000E+00,Active Shallow Crust,2.400374E+02,5.799930E+01,0.000000E+00 +2400,fr,3,3.550000E+00,8.023210E+00,4.656554E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998614E+01,0.000000E+00 +2406,fr,1,3.550000E+00,8.023210E+00,4.656554E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998598E+01,-9.000000E+01 +2412,fr,2,3.650000E+00,8.023210E+00,4.656554E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998764E+01,0.000000E+00 +2413,fr,2,3.650000E+00,8.023210E+00,4.656554E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998764E+01,0.000000E+00 +2414,fr,1,3.650000E+00,8.023210E+00,4.656554E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998764E+01,0.000000E+00 +2417,fr,1,3.650000E+00,8.023210E+00,4.656554E+01,2.750000E+01,Active Shallow Crust,2.400022E+02,5.801247E+01,0.000000E+00 +2421,fr,1,3.650000E+00,8.023210E+00,4.656554E+01,5.000000E+00,Active Shallow Crust,1.288995E+02,8.996352E+01,0.000000E+00 +2425,fr,1,3.750000E+00,8.023210E+00,4.656554E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +2426,fr,1,3.750000E+00,8.023210E+00,4.656554E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +2427,fr,1,3.750000E+00,8.023210E+00,4.656554E+01,5.000000E+00,Active Shallow Crust,2.400097E+02,5.801672E+01,0.000000E+00 +2430,fr,1,3.750000E+00,8.023210E+00,4.656554E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998886E+01,-9.000000E+01 +2436,fr,2,3.850000E+00,8.023210E+00,4.656554E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +2438,fr,1,3.850000E+00,8.023210E+00,4.656554E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +2448,fr,2,3.950000E+00,8.023210E+00,4.656554E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999125E+01,0.000000E+00 +2449,fr,3,3.950000E+00,8.023210E+00,4.656554E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999125E+01,0.000000E+00 +2461,fr,1,4.050000E+00,8.023210E+00,4.656554E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999220E+01,0.000000E+00 +2463,fr,1,4.050000E+00,8.023210E+00,4.656554E+01,5.000000E+00,Active Shallow Crust,2.400068E+02,5.800542E+01,0.000000E+00 +2472,fr,2,4.150000E+00,8.023210E+00,4.656554E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999305E+01,0.000000E+00 +2482,fr,1,4.150000E+00,8.023210E+00,4.656554E+01,1.500000E+01,Active Shallow Crust,1.288985E+02,8.999305E+01,0.000000E+00 +2492,fr,1,4.250000E+00,8.023210E+00,4.656554E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998746E+01,-9.000000E+01 +2499,fr,1,4.350000E+00,8.023210E+00,4.656554E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799579E+01,0.000000E+00 +2508,fr,1,4.450000E+00,8.023210E+00,4.656554E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +2510,fr,1,4.450000E+00,8.023210E+00,4.656554E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +2535,fr,1,4.650000E+00,8.023210E+00,4.656554E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799371E+01,0.000000E+00 +2536,fr,1,4.650000E+00,8.023210E+00,4.656554E+01,1.500000E+01,Active Shallow Crust,2.400107E+02,5.799371E+01,0.000000E+00 +2550,fr,1,4.750000E+00,8.023210E+00,4.656554E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,-9.000000E+01 +2571,fr,1,4.950000E+00,8.023210E+00,4.656554E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.800465E+01,0.000000E+00 +2653,fr,1,5.650000E+00,8.023210E+00,4.656554E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +2784,fr,1,6.750000E+00,8.023226E+00,4.656554E+01,1.199416E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +3372,fr,1,3.650000E+00,4.381660E+00,4.519680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998734E+01,0.000000E+00 +3375,fr,1,3.650000E+00,4.381660E+00,4.519680E+01,5.000000E+00,Active Shallow Crust,2.400019E+02,5.801175E+01,0.000000E+00 +3384,fr,1,3.750000E+00,4.381660E+00,4.519680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998871E+01,0.000000E+00 +3412,fr,1,3.950000E+00,4.381660E+00,4.519680E+01,1.500000E+01,Active Shallow Crust,2.400197E+02,5.800475E+01,0.000000E+00 +3445,fr,1,4.250000E+00,4.381660E+00,4.519680E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +3569,fr,1,5.250000E+00,4.381660E+00,4.519680E+01,2.750000E+01,Active Shallow Crust,2.400246E+02,5.800003E+01,0.000000E+00 +3840,fr,1,3.550000E+00,-2.851330E+00,4.795059E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +3852,fr,4,3.650000E+00,-2.851330E+00,4.795059E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +3853,fr,3,3.650000E+00,-2.851330E+00,4.795059E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +3855,fr,1,3.650000E+00,-2.851330E+00,4.795059E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801289E+01,0.000000E+00 +3864,fr,1,3.750000E+00,-2.851330E+00,4.795059E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +3866,fr,1,3.750000E+00,-2.851330E+00,4.795059E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +3873,fr,2,3.750000E+00,-2.851330E+00,4.795059E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.996727E+01,0.000000E+00 +3877,fr,1,3.850000E+00,-2.851330E+00,4.795059E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +3891,fr,1,3.950000E+00,-2.851330E+00,4.795059E+01,5.000000E+00,Active Shallow Crust,2.400197E+02,5.800513E+01,0.000000E+00 +3895,fr,1,3.950000E+00,-2.851330E+00,4.795059E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998922E+01,-9.000000E+01 +3900,fr,2,4.050000E+00,-2.851330E+00,4.795059E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +3901,fr,1,4.050000E+00,-2.851330E+00,4.795059E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +3914,fr,1,4.150000E+00,-2.851330E+00,4.795059E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +3918,fr,1,4.150000E+00,-2.851330E+00,4.795059E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,-9.000000E+01 +3937,fr,1,4.350000E+00,-2.851330E+00,4.795059E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +3941,fr,1,4.350000E+00,-2.851330E+00,4.795059E+01,2.750000E+01,Active Shallow Crust,2.400085E+02,5.799613E+01,0.000000E+00 +3948,fr,1,4.450000E+00,-2.851330E+00,4.795059E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +4032,fr,1,5.150000E+00,-2.851330E+00,4.795059E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +4321,fr,1,3.550000E+00,1.018680E+00,5.176040E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +4322,fr,1,3.550000E+00,1.018680E+00,5.176040E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +4332,fr,1,3.650000E+00,1.018680E+00,5.176040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +4345,fr,1,3.750000E+00,1.018680E+00,5.176040E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +4350,fr,2,3.750000E+00,1.018680E+00,5.176040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +4372,fr,1,3.950000E+00,1.018680E+00,5.176040E+01,1.500000E+01,Active Shallow Crust,2.400206E+02,5.800514E+01,0.000000E+00 +4380,fr,1,4.050000E+00,1.018680E+00,5.176040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +4408,fr,1,4.250000E+00,1.018680E+00,5.176040E+01,1.500000E+01,Active Shallow Crust,2.400088E+02,5.799432E+01,0.000000E+00 +4465,fr,1,4.750000E+00,1.018680E+00,5.176040E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +4466,fr,1,4.750000E+00,1.018680E+00,5.176040E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +4800,fr,3,3.550000E+00,-7.157300E-01,4.731714E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +4801,fr,2,3.550000E+00,-7.157300E-01,4.731714E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +4804,fr,1,3.550000E+00,-7.157300E-01,4.731714E+01,1.500000E+01,Active Shallow Crust,2.400122E+02,5.799827E+01,0.000000E+00 +4808,fr,1,3.550000E+00,-7.157300E-01,4.731714E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,-9.000000E+01 +4809,fr,1,3.550000E+00,-7.157300E-01,4.731714E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999359E+01,0.000000E+00 +4813,fr,1,3.650000E+00,-7.157300E-01,4.731714E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +4816,fr,2,3.650000E+00,-7.157300E-01,4.731714E+01,1.500000E+01,Active Shallow Crust,2.400012E+02,5.801285E+01,0.000000E+00 +4824,fr,2,3.750000E+00,-7.157300E-01,4.731714E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +4826,fr,2,3.750000E+00,-7.157300E-01,4.731714E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +4831,fr,1,3.750000E+00,-7.157300E-01,4.731714E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,-9.000000E+01 +4836,fr,3,3.850000E+00,-7.157300E-01,4.731714E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +4840,fr,1,3.850000E+00,-7.157300E-01,4.731714E+01,1.500000E+01,Active Shallow Crust,2.400108E+02,5.799783E+01,0.000000E+00 +4848,fr,2,3.950000E+00,-7.157300E-01,4.731714E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +4857,fr,1,3.950000E+00,-7.157300E-01,4.731714E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.999380E+01,0.000000E+00 +4860,fr,1,4.050000E+00,-7.157300E-01,4.731714E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +4864,fr,1,4.050000E+00,-7.157300E-01,4.731714E+01,1.500000E+01,Active Shallow Crust,2.400061E+02,5.800579E+01,0.000000E+00 +4875,fr,1,4.150000E+00,-7.157300E-01,4.731714E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799734E+01,0.000000E+00 +4890,fr,1,4.250000E+00,-7.157300E-01,4.731714E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +4920,fr,1,4.550000E+00,-7.157300E-01,4.731714E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +4921,fr,1,4.550000E+00,-7.157300E-01,4.731714E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +5045,fr,1,5.550000E+00,-7.157300E-01,4.731714E+01,2.750000E+01,Active Shallow Crust,2.400334E+02,5.799967E+01,0.000000E+00 +5281,fr,1,3.550000E+00,6.181200E+00,4.331859E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999266E+01,0.000000E+00 +5295,fr,1,3.650000E+00,6.181200E+00,4.331859E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801206E+01,0.000000E+00 +5355,fr,1,4.150000E+00,6.181200E+00,4.331859E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799722E+01,0.000000E+00 +5365,fr,1,4.250000E+00,6.181200E+00,4.331859E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +5808,fr,1,3.950000E+00,9.681560E+00,4.979542E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999178E+01,0.000000E+00 +6241,fr,2,3.550000E+00,8.065290E+00,4.539360E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998584E+01,0.000000E+00 +6252,fr,1,3.650000E+00,8.065290E+00,4.539360E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998738E+01,0.000000E+00 +6255,fr,1,3.650000E+00,8.065290E+00,4.539360E+01,5.000000E+00,Active Shallow Crust,2.399996E+02,5.801399E+01,0.000000E+00 +6265,fr,1,3.750000E+00,8.065290E+00,4.539360E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +6266,fr,1,3.750000E+00,8.065290E+00,4.539360E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +6276,fr,3,3.850000E+00,8.065290E+00,4.539360E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +6277,fr,2,3.850000E+00,8.065290E+00,4.539360E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +6300,fr,3,4.050000E+00,8.065290E+00,4.539360E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999203E+01,0.000000E+00 +6301,fr,1,4.050000E+00,8.065290E+00,4.539360E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999203E+01,0.000000E+00 +6315,fr,1,4.150000E+00,8.065290E+00,4.539360E+01,5.000000E+00,Active Shallow Crust,2.400092E+02,5.799776E+01,0.000000E+00 +6316,fr,1,4.150000E+00,8.065290E+00,4.539360E+01,1.500000E+01,Active Shallow Crust,2.400092E+02,5.799779E+01,0.000000E+00 +6324,fr,2,4.250000E+00,8.065290E+00,4.539360E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998735E+01,0.000000E+00 +6336,fr,1,4.350000E+00,8.065290E+00,4.539360E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +6360,fr,2,4.550000E+00,8.065290E+00,4.539360E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +6361,fr,1,4.550000E+00,8.065290E+00,4.539360E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +6389,fr,1,4.750000E+00,8.065290E+00,4.539360E+01,2.750000E+01,Active Shallow Crust,2.400063E+02,5.800484E+01,0.000000E+00 +6564,fr,1,6.250000E+00,8.065294E+00,4.539360E+01,6.744814E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +6722,fr,1,3.550000E+00,6.003700E-01,4.566576E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +6723,fr,1,3.550000E+00,6.003700E-01,4.566576E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799812E+01,0.000000E+00 +6729,fr,1,3.550000E+00,6.003700E-01,4.566576E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999384E+01,0.000000E+00 +6732,fr,1,3.650000E+00,6.003700E-01,4.566576E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +6751,fr,1,3.750000E+00,6.003700E-01,4.566576E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +6756,fr,1,3.850000E+00,6.003700E-01,4.566576E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +6757,fr,1,3.850000E+00,6.003700E-01,4.566576E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +6792,fr,1,4.150000E+00,6.003700E-01,4.566576E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +6793,fr,1,4.150000E+00,6.003700E-01,4.566576E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +7200,fr,1,3.550000E+00,7.630490E+00,4.534595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999291E+01,0.000000E+00 +7206,fr,1,3.550000E+00,7.630490E+00,4.534595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999283E+01,-9.000000E+01 +7212,fr,1,3.650000E+00,7.630490E+00,4.534595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998737E+01,0.000000E+00 +7224,fr,1,3.750000E+00,7.630490E+00,4.534595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998874E+01,0.000000E+00 +7225,fr,1,3.750000E+00,7.630490E+00,4.534595E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998874E+01,0.000000E+00 +7232,fr,1,3.750000E+00,7.630490E+00,4.534595E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998861E+01,-9.000000E+01 +7238,fr,1,3.850000E+00,7.630490E+00,4.534595E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +7239,fr,1,3.850000E+00,7.630490E+00,4.534595E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799809E+01,0.000000E+00 +7253,fr,1,3.950000E+00,7.630490E+00,4.534595E+01,2.750000E+01,Active Shallow Crust,2.400195E+02,5.800457E+01,0.000000E+00 +7336,fr,1,4.650000E+00,7.630490E+00,4.534595E+01,1.500000E+01,Active Shallow Crust,2.400106E+02,5.799401E+01,0.000000E+00 +7380,fr,1,5.050000E+00,7.630490E+00,4.534595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +7440,fr,1,5.550000E+00,7.630490E+00,4.534595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +7512,fr,1,6.150000E+00,7.630492E+00,4.534595E+01,6.011322E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +7692,fr,1,3.650000E+00,-3.841920E+00,4.634935E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999069E+01,0.000000E+00 +7695,fr,1,3.650000E+00,-3.841920E+00,4.634935E+01,5.000000E+00,Active Shallow Crust,2.400016E+02,5.801259E+01,0.000000E+00 +7737,fr,1,3.950000E+00,-3.841920E+00,4.634935E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.999342E+01,0.000000E+00 +9138,fr,1,3.650000E+00,2.447540E+00,4.023670E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +9156,fr,1,3.850000E+00,2.447540E+00,4.023670E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +9615,fr,1,3.650000E+00,3.451460E+00,4.953257E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801328E+01,0.000000E+00 +9684,fr,1,4.250000E+00,3.451460E+00,4.953257E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +10083,fr,1,3.550000E+00,4.767580E+00,4.353452E+01,5.000000E+00,Active Shallow Crust,2.400128E+02,5.799700E+01,0.000000E+00 +10096,fr,1,3.650000E+00,4.767580E+00,4.353452E+01,1.500000E+01,Active Shallow Crust,2.400009E+02,5.801289E+01,0.000000E+00 +10116,fr,1,3.850000E+00,4.767580E+00,4.353452E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +10560,fr,5,3.550000E+00,6.003560E+00,4.593741E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999299E+01,0.000000E+00 +10561,fr,1,3.550000E+00,6.003560E+00,4.593741E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999299E+01,0.000000E+00 +10563,fr,1,3.550000E+00,6.003560E+00,4.593741E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.799746E+01,0.000000E+00 +10564,fr,1,3.550000E+00,6.003560E+00,4.593741E+01,1.500000E+01,Active Shallow Crust,2.400127E+02,5.799746E+01,0.000000E+00 +10572,fr,1,3.650000E+00,6.003560E+00,4.593741E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998750E+01,0.000000E+00 +10573,fr,1,3.650000E+00,6.003560E+00,4.593741E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998750E+01,0.000000E+00 +10575,fr,2,3.650000E+00,6.003560E+00,4.593741E+01,5.000000E+00,Active Shallow Crust,2.400004E+02,5.801394E+01,0.000000E+00 +10579,fr,1,3.650000E+00,6.003560E+00,4.593741E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998736E+01,-9.000000E+01 +10584,fr,3,3.750000E+00,6.003560E+00,4.593741E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998886E+01,0.000000E+00 +10586,fr,1,3.750000E+00,6.003560E+00,4.593741E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998886E+01,0.000000E+00 +10597,fr,1,3.850000E+00,6.003560E+00,4.593741E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +10599,fr,1,3.850000E+00,6.003560E+00,4.593741E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799833E+01,0.000000E+00 +10608,fr,3,3.950000E+00,6.003560E+00,4.593741E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999115E+01,0.000000E+00 +10609,fr,1,3.950000E+00,6.003560E+00,4.593741E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999115E+01,0.000000E+00 +10610,fr,1,3.950000E+00,6.003560E+00,4.593741E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999115E+01,0.000000E+00 +10611,fr,1,3.950000E+00,6.003560E+00,4.593741E+01,5.000000E+00,Active Shallow Crust,2.400201E+02,5.800464E+01,0.000000E+00 +10620,fr,1,4.050000E+00,6.003560E+00,4.593741E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998817E+01,0.000000E+00 +10632,fr,1,4.150000E+00,6.003560E+00,4.593741E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +10641,fr,1,4.150000E+00,6.003560E+00,4.593741E+01,5.000000E+00,Active Shallow Crust,1.288983E+02,8.999297E+01,0.000000E+00 +10644,fr,2,4.250000E+00,6.003560E+00,4.593741E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +10656,fr,1,4.350000E+00,6.003560E+00,4.593741E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998883E+01,0.000000E+00 +10657,fr,1,4.350000E+00,6.003560E+00,4.593741E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998883E+01,0.000000E+00 +10664,fr,1,4.350000E+00,6.003560E+00,4.593741E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998870E+01,-9.000000E+01 +10666,fr,1,4.350000E+00,6.003560E+00,4.593741E+01,1.500000E+01,Active Shallow Crust,1.288985E+02,8.998249E+01,0.000000E+00 +10680,fr,1,4.550000E+00,6.003560E+00,4.593741E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +10716,fr,1,4.850000E+00,6.003560E+00,4.593741E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +10726,fr,1,4.850000E+00,6.003560E+00,4.593741E+01,1.500000E+01,Active Shallow Crust,1.288931E+02,8.998900E+01,0.000000E+00 +10737,fr,1,4.950000E+00,6.003560E+00,4.593741E+01,5.000000E+00,Active Shallow Crust,1.288901E+02,8.998978E+01,0.000000E+00 +10764,fr,1,5.250000E+00,6.003560E+00,4.593741E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +11522,fr,1,3.550000E+00,3.730190E+00,4.640263E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +11556,fr,1,3.850000E+00,3.730190E+00,4.640263E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +11628,fr,1,4.450000E+00,3.730190E+00,4.640263E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +11654,fr,1,4.650000E+00,3.730190E+00,4.640263E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +11664,fr,1,4.750000E+00,3.730190E+00,4.640263E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +11677,fr,1,4.850000E+00,3.730190E+00,4.640263E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +12001,fr,1,3.550000E+00,-3.302000E+00,4.953057E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +12024,fr,1,3.750000E+00,-3.302000E+00,4.953057E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +12056,fr,1,3.950000E+00,-3.302000E+00,4.953057E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,-9.000000E+01 +12496,fr,1,3.650000E+00,7.140360E+00,4.952765E+01,1.500000E+01,Active Shallow Crust,2.400021E+02,5.801263E+01,0.000000E+00 +12504,fr,1,3.750000E+00,7.140360E+00,4.952765E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +12507,fr,1,3.750000E+00,7.140360E+00,4.952765E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801849E+01,0.000000E+00 +12576,fr,1,4.350000E+00,7.140360E+00,4.952765E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +12961,fr,1,3.550000E+00,4.931380E+00,4.514235E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999289E+01,0.000000E+00 +12984,fr,1,3.750000E+00,4.931380E+00,4.514235E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998870E+01,0.000000E+00 +12987,fr,1,3.750000E+00,4.931380E+00,4.514235E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.801751E+01,0.000000E+00 +12993,fr,1,3.750000E+00,4.931380E+00,4.514235E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.996747E+01,0.000000E+00 +12996,fr,1,3.850000E+00,4.931380E+00,4.514235E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +13001,fr,1,3.850000E+00,4.931380E+00,4.514235E+01,2.750000E+01,Active Shallow Crust,2.400107E+02,5.799740E+01,0.000000E+00 +13020,fr,1,4.050000E+00,4.931380E+00,4.514235E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998800E+01,0.000000E+00 +13027,fr,1,4.050000E+00,4.931380E+00,4.514235E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999191E+01,-9.000000E+01 +13051,fr,1,4.250000E+00,4.931380E+00,4.514235E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,-9.000000E+01 +13056,fr,2,4.350000E+00,4.931380E+00,4.514235E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998867E+01,0.000000E+00 +13065,fr,1,4.350000E+00,4.931380E+00,4.514235E+01,5.000000E+00,Active Shallow Crust,1.288982E+02,8.998297E+01,0.000000E+00 +13068,fr,1,4.450000E+00,4.931380E+00,4.514235E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +13081,fr,1,4.550000E+00,4.931380E+00,4.514235E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +13165,fr,1,5.250000E+00,4.931380E+00,4.514235E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +13453,fr,1,3.650000E+00,-1.010500E-01,5.028067E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +13458,fr,1,3.650000E+00,-1.010500E-01,5.028067E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +13460,fr,1,3.650000E+00,-1.010500E-01,5.028067E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +13477,fr,1,3.850000E+00,-1.010500E-01,5.028067E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +13921,fr,1,3.550000E+00,2.139380E+00,5.179460E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +13939,fr,1,3.650000E+00,2.139380E+00,5.179460E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998875E+01,-9.000000E+01 +13980,fr,1,4.050000E+00,2.139380E+00,5.179460E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +14000,fr,1,4.150000E+00,2.139380E+00,5.179460E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,-9.000000E+01 +14025,fr,1,4.350000E+00,2.139380E+00,5.179460E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.998279E+01,0.000000E+00 +14263,fr,1,6.350000E+00,2.139380E+00,5.179460E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +14880,fr,1,3.550000E+00,-4.318600E-01,4.933897E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +14886,fr,1,3.550000E+00,-4.318600E-01,4.933897E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +14895,fr,1,3.650000E+00,-4.318600E-01,4.933897E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801296E+01,0.000000E+00 +14904,fr,2,3.750000E+00,-4.318600E-01,4.933897E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +14910,fr,1,3.750000E+00,-4.318600E-01,4.933897E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +14917,fr,1,3.850000E+00,-4.318600E-01,4.933897E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +14928,fr,1,3.950000E+00,-4.318600E-01,4.933897E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +14937,fr,1,3.950000E+00,-4.318600E-01,4.933897E+01,5.000000E+00,Active Shallow Crust,1.289000E+02,8.999365E+01,0.000000E+00 +14941,fr,1,4.050000E+00,-4.318600E-01,4.933897E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +14965,fr,1,4.250000E+00,-4.318600E-01,4.933897E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +14968,fr,1,4.250000E+00,-4.318600E-01,4.933897E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.799419E+01,0.000000E+00 +14976,fr,1,4.350000E+00,-4.318600E-01,4.933897E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +14979,fr,1,4.350000E+00,-4.318600E-01,4.933897E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.799608E+01,0.000000E+00 +14984,fr,1,4.350000E+00,-4.318600E-01,4.933897E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +14987,fr,1,4.350000E+00,-4.318600E-01,4.933897E+01,2.750000E+01,Active Shallow Crust,1.288972E+02,8.998275E+01,0.000000E+00 +14989,fr,1,4.450000E+00,-4.318600E-01,4.933897E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +15048,fr,1,4.950000E+00,-4.318600E-01,4.933897E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +15063,fr,1,5.050000E+00,-4.318600E-01,4.933897E+01,5.000000E+00,Active Shallow Crust,2.400237E+02,5.799785E+01,0.000000E+00 +15390,fr,1,3.750000E+00,-6.655960E+00,4.878605E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998932E+01,-9.000000E+01 +15846,fr,1,3.550000E+00,1.662850E+00,5.139554E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,-9.000000E+01 +15853,fr,1,3.650000E+00,1.662850E+00,5.139554E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +15888,fr,1,3.950000E+00,1.662850E+00,5.139554E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +15889,fr,1,3.950000E+00,1.662850E+00,5.139554E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +16021,fr,1,5.050000E+00,1.662850E+00,5.139554E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +16032,fr,1,5.150000E+00,1.662850E+00,5.139554E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +16324,fr,1,3.550000E+00,3.435590E+00,4.622917E+01,1.500000E+01,Active Shallow Crust,2.400127E+02,5.799815E+01,0.000000E+00 +16332,fr,1,3.650000E+00,3.435590E+00,4.622917E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +16353,fr,1,3.750000E+00,3.435590E+00,4.622917E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.996748E+01,0.000000E+00 +16364,fr,1,3.850000E+00,3.435590E+00,4.622917E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +16380,fr,1,4.050000E+00,3.435590E+00,4.622917E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +16394,fr,1,4.150000E+00,3.435590E+00,4.622917E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +16405,fr,1,4.250000E+00,3.435590E+00,4.622917E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +16410,fr,1,4.250000E+00,3.435590E+00,4.622917E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,-9.000000E+01 +16570,fr,1,5.550000E+00,3.435590E+00,4.622917E+01,1.500000E+01,Active Shallow Crust,1.288764E+02,8.998978E+01,0.000000E+00 +16814,fr,1,3.650000E+00,3.943630E+00,4.935655E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999122E+01,0.000000E+00 +16851,fr,1,3.950000E+00,3.943630E+00,4.935655E+01,5.000000E+00,Active Shallow Crust,2.400198E+02,5.800513E+01,0.000000E+00 +17280,fr,1,3.550000E+00,-3.362200E+00,4.817519E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +17281,fr,1,3.550000E+00,-3.362200E+00,4.817519E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +17289,fr,1,3.550000E+00,-3.362200E+00,4.817519E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999328E+01,0.000000E+00 +17292,fr,1,3.650000E+00,-3.362200E+00,4.817519E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999101E+01,0.000000E+00 +17307,fr,2,3.750000E+00,-3.362200E+00,4.817519E+01,5.000000E+00,Active Shallow Crust,2.400092E+02,5.801719E+01,0.000000E+00 +17310,fr,1,3.750000E+00,-3.362200E+00,4.817519E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,-9.000000E+01 +17316,fr,1,3.850000E+00,-3.362200E+00,4.817519E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +17319,fr,2,3.850000E+00,-3.362200E+00,4.817519E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799800E+01,0.000000E+00 +17330,fr,1,3.950000E+00,-3.362200E+00,4.817519E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +17344,fr,1,4.050000E+00,-3.362200E+00,4.817519E+01,1.500000E+01,Active Shallow Crust,2.400066E+02,5.800572E+01,0.000000E+00 +17346,fr,1,4.050000E+00,-3.362200E+00,4.817519E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,-9.000000E+01 +17364,fr,2,4.250000E+00,-3.362200E+00,4.817519E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +17395,fr,1,4.450000E+00,-3.362200E+00,4.817519E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999034E+01,-9.000000E+01 +17400,fr,1,4.550000E+00,-3.362200E+00,4.817519E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +17487,fr,1,5.250000E+00,-3.362200E+00,4.817519E+01,5.000000E+00,Active Shallow Crust,2.400266E+02,5.800045E+01,0.000000E+00 +17623,fr,1,6.350000E+00,-3.362200E+00,4.817519E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +17771,fr,1,3.550000E+00,5.497770E+00,4.767862E+01,2.750000E+01,Active Shallow Crust,1.288959E+02,8.999321E+01,0.000000E+00 +17772,fr,2,3.650000E+00,5.497770E+00,4.767862E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998790E+01,0.000000E+00 +17781,fr,1,3.650000E+00,5.497770E+00,4.767862E+01,5.000000E+00,Active Shallow Crust,1.288997E+02,8.996355E+01,0.000000E+00 +17844,fr,1,4.250000E+00,5.497770E+00,4.767862E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999090E+01,0.000000E+00 +17964,fr,1,5.250000E+00,5.497770E+00,4.767862E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +18241,fr,1,3.550000E+00,2.333400E-01,4.196181E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +18253,fr,1,3.650000E+00,2.333400E-01,4.196181E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +18277,fr,1,3.850000E+00,2.333400E-01,4.196181E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +18456,fr,1,5.350000E+00,2.333400E-01,4.196181E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +18720,fr,3,3.550000E+00,7.814900E+00,4.808771E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999326E+01,0.000000E+00 +18721,fr,3,3.550000E+00,7.814900E+00,4.808771E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999326E+01,0.000000E+00 +18726,fr,1,3.550000E+00,7.814900E+00,4.808771E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999319E+01,-9.000000E+01 +18732,fr,5,3.650000E+00,7.814900E+00,4.808771E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998799E+01,0.000000E+00 +18733,fr,1,3.650000E+00,7.814900E+00,4.808771E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998799E+01,0.000000E+00 +18738,fr,2,3.650000E+00,7.814900E+00,4.808771E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998785E+01,-9.000000E+01 +18741,fr,1,3.650000E+00,7.814900E+00,4.808771E+01,5.000000E+00,Active Shallow Crust,1.288994E+02,8.996355E+01,0.000000E+00 +18744,fr,1,3.750000E+00,7.814900E+00,4.808771E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +18745,fr,3,3.750000E+00,7.814900E+00,4.808771E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +18746,fr,2,3.750000E+00,7.814900E+00,4.808771E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +18747,fr,1,3.750000E+00,7.814900E+00,4.808771E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.801699E+01,0.000000E+00 +18756,fr,2,3.850000E+00,7.814900E+00,4.808771E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +18765,fr,1,3.850000E+00,7.814900E+00,4.808771E+01,5.000000E+00,Active Shallow Crust,1.288955E+02,8.999285E+01,0.000000E+00 +18768,fr,1,3.950000E+00,7.814900E+00,4.808771E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999150E+01,0.000000E+00 +18769,fr,1,3.950000E+00,7.814900E+00,4.808771E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999150E+01,0.000000E+00 +18772,fr,1,3.950000E+00,7.814900E+00,4.808771E+01,1.500000E+01,Active Shallow Crust,2.400207E+02,5.800465E+01,0.000000E+00 +18780,fr,2,4.050000E+00,7.814900E+00,4.808771E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998863E+01,0.000000E+00 +18781,fr,1,4.050000E+00,7.814900E+00,4.808771E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998863E+01,0.000000E+00 +18786,fr,1,4.050000E+00,7.814900E+00,4.808771E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998850E+01,-9.000000E+01 +18816,fr,1,4.350000E+00,7.814900E+00,4.808771E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +18818,fr,1,4.350000E+00,7.814900E+00,4.808771E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +18843,fr,1,4.550000E+00,7.814900E+00,4.808771E+01,5.000000E+00,Active Shallow Crust,2.400098E+02,5.799752E+01,0.000000E+00 +18856,fr,1,4.650000E+00,7.814900E+00,4.808771E+01,1.500000E+01,Active Shallow Crust,2.400113E+02,5.799428E+01,0.000000E+00 +18875,fr,1,4.750000E+00,7.814900E+00,4.808771E+01,2.750000E+01,Active Shallow Crust,1.288879E+02,8.998827E+01,0.000000E+00 +18879,fr,1,4.850000E+00,7.814900E+00,4.808771E+01,5.000000E+00,Active Shallow Crust,2.400178E+02,5.800255E+01,0.000000E+00 +18915,fr,1,5.150000E+00,7.814900E+00,4.808771E+01,5.000000E+00,Active Shallow Crust,2.400205E+02,5.800016E+01,0.000000E+00 +18916,fr,1,5.150000E+00,7.814900E+00,4.808771E+01,1.500000E+01,Active Shallow Crust,2.400205E+02,5.800017E+01,0.000000E+00 +18946,fr,1,5.350000E+00,7.814900E+00,4.808771E+01,1.500000E+01,Active Shallow Crust,1.288822E+02,8.998802E+01,0.000000E+00 +18952,fr,1,5.450000E+00,7.814900E+00,4.808771E+01,1.500000E+01,Active Shallow Crust,2.400302E+02,5.799872E+01,0.000000E+00 +19116,fr,1,6.850000E+00,7.814920E+00,4.808771E+01,1.345767E+01,Active Shallow Crust,3.599999E+02,8.999002E+01,0.000000E+00 +19201,fr,1,3.550000E+00,2.455890E+00,4.516710E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +19203,fr,1,3.550000E+00,2.455890E+00,4.516710E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799830E+01,0.000000E+00 +19221,fr,2,3.650000E+00,2.455890E+00,4.516710E+01,5.000000E+00,Active Shallow Crust,1.289013E+02,8.996350E+01,0.000000E+00 +19236,fr,1,3.850000E+00,2.455890E+00,4.516710E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +19238,fr,1,3.850000E+00,2.455890E+00,4.516710E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +19254,fr,1,3.950000E+00,2.455890E+00,4.516710E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999092E+01,-9.000000E+01 +19261,fr,1,4.050000E+00,2.455890E+00,4.516710E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +19273,fr,1,4.150000E+00,2.455890E+00,4.516710E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +19344,fr,1,4.750000E+00,2.455890E+00,4.516710E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +19681,fr,1,3.550000E+00,-9.692300E-01,4.837165E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +19683,fr,1,3.550000E+00,-9.692300E-01,4.837165E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799823E+01,0.000000E+00 +19698,fr,1,3.650000E+00,-9.692300E-01,4.837165E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,-9.000000E+01 +19701,fr,1,3.650000E+00,-9.692300E-01,4.837165E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.996356E+01,0.000000E+00 +19704,fr,1,3.750000E+00,-9.692300E-01,4.837165E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +19707,fr,2,3.750000E+00,-9.692300E-01,4.837165E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.801764E+01,0.000000E+00 +19731,fr,2,3.950000E+00,-9.692300E-01,4.837165E+01,5.000000E+00,Active Shallow Crust,2.400201E+02,5.800499E+01,0.000000E+00 +19766,fr,1,4.250000E+00,-9.692300E-01,4.837165E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +19826,fr,1,4.750000E+00,-9.692300E-01,4.837165E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +20145,fr,1,7.350000E+00,-9.692485E-01,4.837164E+01,1.750000E+01,Active Shallow Crust,1.286412E+02,8.998959E+01,0.000000E+00 +20170,fr,1,3.550000E+00,4.019900E+00,4.046907E+01,1.500000E+01,Active Shallow Crust,1.288980E+02,8.999233E+01,0.000000E+00 +20185,fr,1,3.750000E+00,4.019900E+00,4.046907E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998782E+01,0.000000E+00 +20352,fr,1,5.150000E+00,4.019900E+00,4.046907E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +20649,fr,1,3.550000E+00,-3.697570E+00,4.622720E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999303E+01,0.000000E+00 +21426,fr,1,6.050000E+00,-6.269420E+00,4.731325E+01,5.296268E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +21609,fr,1,3.550000E+00,5.590890E+00,4.230487E+01,5.000000E+00,Active Shallow Crust,1.288955E+02,8.999627E+01,0.000000E+00 +21624,fr,1,3.750000E+00,5.590890E+00,4.230487E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998815E+01,0.000000E+00 +22080,fr,1,3.550000E+00,4.006550E+00,4.488077E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999285E+01,0.000000E+00 +22094,fr,1,3.650000E+00,4.006550E+00,4.488077E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998727E+01,0.000000E+00 +22109,fr,1,3.750000E+00,4.006550E+00,4.488077E+01,2.750000E+01,Active Shallow Crust,2.400087E+02,5.801692E+01,0.000000E+00 +22116,fr,1,3.850000E+00,4.006550E+00,4.488077E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +22119,fr,1,3.850000E+00,4.006550E+00,4.488077E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799796E+01,0.000000E+00 +22152,fr,1,4.150000E+00,4.006550E+00,4.488077E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +22156,fr,1,4.150000E+00,4.006550E+00,4.488077E+01,1.500000E+01,Active Shallow Crust,2.400077E+02,5.799733E+01,0.000000E+00 +22167,fr,1,4.250000E+00,4.006550E+00,4.488077E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.799432E+01,0.000000E+00 +22584,fr,1,3.750000E+00,3.667830E+00,4.014684E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +22608,fr,1,3.950000E+00,3.667830E+00,4.014684E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +22614,fr,1,3.950000E+00,3.667830E+00,4.014684E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,-9.000000E+01 +23082,fr,1,3.850000E+00,-5.934550E+00,4.941428E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999060E+01,-9.000000E+01 +23524,fr,1,3.550000E+00,-6.299000E-02,4.439260E+01,1.500000E+01,Active Shallow Crust,2.400120E+02,5.799813E+01,0.000000E+00 +23553,fr,1,3.750000E+00,-6.299000E-02,4.439260E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.996735E+01,0.000000E+00 +24005,fr,1,3.550000E+00,5.369370E+00,4.842464E+01,2.750000E+01,Active Shallow Crust,2.400113E+02,5.799845E+01,0.000000E+00 +24012,fr,1,3.650000E+00,5.369370E+00,4.842464E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +24036,fr,1,3.850000E+00,5.369370E+00,4.842464E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +24960,fr,1,3.550000E+00,3.280690E+00,4.925719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +24973,fr,1,3.650000E+00,3.280690E+00,4.925719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +24986,fr,1,3.750000E+00,3.280690E+00,4.925719E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +24987,fr,1,3.750000E+00,3.280690E+00,4.925719E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.801786E+01,0.000000E+00 +24997,fr,1,3.850000E+00,3.280690E+00,4.925719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +25008,fr,1,3.950000E+00,3.280690E+00,4.925719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +25020,fr,1,4.050000E+00,3.280690E+00,4.925719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +25092,fr,1,4.650000E+00,3.280690E+00,4.925719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +25446,fr,1,3.550000E+00,2.744190E+00,5.269868E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999073E+01,-9.000000E+01 +25466,fr,1,3.750000E+00,2.744190E+00,5.269868E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +25945,fr,1,3.750000E+00,-3.452840E+00,4.965210E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +26040,fr,1,4.550000E+00,-3.452840E+00,4.965210E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +26400,fr,1,3.550000E+00,4.062620E+00,4.020271E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999230E+01,0.000000E+00 +26436,fr,1,3.850000E+00,4.062620E+00,4.020271E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +26437,fr,1,3.850000E+00,4.062620E+00,4.020271E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +26880,fr,2,3.550000E+00,-8.344500E-01,4.322455E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +26881,fr,4,3.550000E+00,-8.344500E-01,4.322455E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +26882,fr,1,3.550000E+00,-8.344500E-01,4.322455E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +26883,fr,1,3.550000E+00,-8.344500E-01,4.322455E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799808E+01,0.000000E+00 +26886,fr,1,3.550000E+00,-8.344500E-01,4.322455E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,-9.000000E+01 +26889,fr,1,3.550000E+00,-8.344500E-01,4.322455E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999357E+01,0.000000E+00 +26892,fr,5,3.650000E+00,-8.344500E-01,4.322455E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +26898,fr,1,3.650000E+00,-8.344500E-01,4.322455E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +26899,fr,2,3.650000E+00,-8.344500E-01,4.322455E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +26901,fr,2,3.650000E+00,-8.344500E-01,4.322455E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.996353E+01,0.000000E+00 +26904,fr,5,3.750000E+00,-8.344500E-01,4.322455E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +26905,fr,1,3.750000E+00,-8.344500E-01,4.322455E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +26908,fr,1,3.750000E+00,-8.344500E-01,4.322455E+01,1.500000E+01,Active Shallow Crust,2.400080E+02,5.801745E+01,0.000000E+00 +26916,fr,2,3.850000E+00,-8.344500E-01,4.322455E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +26918,fr,1,3.850000E+00,-8.344500E-01,4.322455E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +26919,fr,1,3.850000E+00,-8.344500E-01,4.322455E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.799775E+01,0.000000E+00 +26923,fr,1,3.850000E+00,-8.344500E-01,4.322455E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +26931,fr,1,3.950000E+00,-8.344500E-01,4.322455E+01,5.000000E+00,Active Shallow Crust,2.400192E+02,5.800492E+01,0.000000E+00 +26934,fr,1,3.950000E+00,-8.344500E-01,4.322455E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +26938,fr,1,3.950000E+00,-8.344500E-01,4.322455E+01,1.500000E+01,Active Shallow Crust,1.289008E+02,8.999391E+01,0.000000E+00 +26940,fr,3,4.050000E+00,-8.344500E-01,4.322455E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +26941,fr,1,4.050000E+00,-8.344500E-01,4.322455E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +26942,fr,1,4.050000E+00,-8.344500E-01,4.322455E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +26943,fr,1,4.050000E+00,-8.344500E-01,4.322455E+01,5.000000E+00,Active Shallow Crust,2.400055E+02,5.800577E+01,0.000000E+00 +26947,fr,1,4.050000E+00,-8.344500E-01,4.322455E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +26952,fr,2,4.150000E+00,-8.344500E-01,4.322455E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +26954,fr,1,4.150000E+00,-8.344500E-01,4.322455E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +26976,fr,1,4.350000E+00,-8.344500E-01,4.322455E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +26977,fr,2,4.350000E+00,-8.344500E-01,4.322455E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +26978,fr,1,4.350000E+00,-8.344500E-01,4.322455E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +27000,fr,1,4.550000E+00,-8.344500E-01,4.322455E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +27013,fr,1,4.650000E+00,-8.344500E-01,4.322455E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +27020,fr,1,4.650000E+00,-8.344500E-01,4.322455E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,-9.000000E+01 +27024,fr,2,4.750000E+00,-8.344500E-01,4.322455E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +27039,fr,1,4.850000E+00,-8.344500E-01,4.322455E+01,5.000000E+00,Active Shallow Crust,2.400159E+02,5.800208E+01,0.000000E+00 +27042,fr,1,4.850000E+00,-8.344500E-01,4.322455E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +27043,fr,1,4.850000E+00,-8.344500E-01,4.322455E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +27073,fr,1,5.150000E+00,-8.344500E-01,4.322455E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +27078,fr,1,5.150000E+00,-8.344500E-01,4.322455E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +27159,fr,1,5.850000E+00,-8.344500E-01,4.322455E+01,5.000000E+00,Active Shallow Crust,2.400406E+02,5.799901E+01,0.000000E+00 +27360,fr,1,3.550000E+00,-2.505580E+00,4.290079E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998892E+01,0.000000E+00 +27361,fr,1,3.550000E+00,-2.505580E+00,4.290079E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998892E+01,0.000000E+00 +27363,fr,1,3.550000E+00,-2.505580E+00,4.290079E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799786E+01,0.000000E+00 +27372,fr,2,3.650000E+00,-2.505580E+00,4.290079E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +27373,fr,1,3.650000E+00,-2.505580E+00,4.290079E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +27381,fr,2,3.650000E+00,-2.505580E+00,4.290079E+01,5.000000E+00,Active Shallow Crust,1.289011E+02,8.996346E+01,0.000000E+00 +27385,fr,1,3.750000E+00,-2.505580E+00,4.290079E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +27390,fr,1,3.750000E+00,-2.505580E+00,4.290079E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999110E+01,-9.000000E+01 +27396,fr,1,3.850000E+00,-2.505580E+00,4.290079E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +27420,fr,1,4.050000E+00,-2.505580E+00,4.290079E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +27428,fr,1,4.050000E+00,-2.505580E+00,4.290079E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,-9.000000E+01 +27456,fr,1,4.350000E+00,-2.505580E+00,4.290079E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +27468,fr,1,4.450000E+00,-2.505580E+00,4.290079E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +28353,fr,1,3.750000E+00,-1.529930E+00,4.534908E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.996734E+01,0.000000E+00 +28374,fr,1,3.950000E+00,-1.529930E+00,4.534908E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,-9.000000E+01 +28392,fr,1,4.150000E+00,-1.529930E+00,4.534908E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +28885,fr,1,4.250000E+00,1.343700E-01,5.211355E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +28886,fr,1,4.250000E+00,1.343700E-01,5.211355E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +29293,fr,1,3.650000E+00,2.295030E+00,5.102822E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +29304,fr,1,3.750000E+00,2.295030E+00,5.102822E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +29328,fr,1,3.950000E+00,2.295030E+00,5.102822E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +29367,fr,1,4.250000E+00,2.295030E+00,5.102822E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799407E+01,0.000000E+00 +29760,fr,1,3.550000E+00,1.938160E+00,4.029203E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +29784,fr,1,3.750000E+00,1.938160E+00,4.029203E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +29796,fr,1,3.850000E+00,1.938160E+00,4.029203E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +29797,fr,1,3.850000E+00,1.938160E+00,4.029203E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +29832,fr,1,4.150000E+00,1.938160E+00,4.029203E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +30252,fr,1,3.650000E+00,6.334720E+00,5.017804E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998849E+01,0.000000E+00 +30253,fr,1,3.650000E+00,6.334720E+00,5.017804E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998849E+01,0.000000E+00 +30276,fr,1,3.850000E+00,6.334720E+00,5.017804E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +30300,fr,1,4.050000E+00,6.334720E+00,5.017804E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +30325,fr,1,4.250000E+00,6.334720E+00,5.017804E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999135E+01,0.000000E+00 +30768,fr,1,3.950000E+00,-4.804230E+00,4.734569E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999138E+01,0.000000E+00 +30948,fr,1,5.450000E+00,-4.804230E+00,4.734569E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +31200,fr,1,3.550000E+00,3.078810E+00,4.181941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +31202,fr,1,3.550000E+00,3.078810E+00,4.181941E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +31213,fr,1,3.650000E+00,3.078810E+00,4.181941E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +31215,fr,1,3.650000E+00,3.078810E+00,4.181941E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801305E+01,0.000000E+00 +31216,fr,1,3.650000E+00,3.078810E+00,4.181941E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801305E+01,0.000000E+00 +31219,fr,1,3.650000E+00,3.078810E+00,4.181941E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,-9.000000E+01 +31221,fr,1,3.650000E+00,3.078810E+00,4.181941E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.996343E+01,0.000000E+00 +31224,fr,1,3.750000E+00,3.078810E+00,4.181941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +31233,fr,1,3.750000E+00,3.078810E+00,4.181941E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.996741E+01,0.000000E+00 +31236,fr,1,3.850000E+00,3.078810E+00,4.181941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +31237,fr,4,3.850000E+00,3.078810E+00,4.181941E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +31248,fr,2,3.950000E+00,3.078810E+00,4.181941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +31249,fr,1,3.950000E+00,3.078810E+00,4.181941E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +31273,fr,1,4.150000E+00,3.078810E+00,4.181941E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +31281,fr,1,4.150000E+00,3.078810E+00,4.181941E+01,5.000000E+00,Active Shallow Crust,1.288979E+02,8.999435E+01,0.000000E+00 +31299,fr,1,4.350000E+00,3.078810E+00,4.181941E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.799602E+01,0.000000E+00 +31323,fr,1,4.550000E+00,3.078810E+00,4.181941E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799718E+01,0.000000E+00 +31338,fr,1,4.650000E+00,3.078810E+00,4.181941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,-9.000000E+01 +31354,fr,1,4.750000E+00,3.078810E+00,4.181941E+01,1.500000E+01,Active Shallow Crust,1.288899E+02,8.998816E+01,0.000000E+00 +31406,fr,1,5.250000E+00,3.078810E+00,4.181941E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +31417,fr,1,5.350000E+00,3.078810E+00,4.181941E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +32232,fr,1,4.150000E+00,-2.706700E+00,4.371044E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999087E+01,0.000000E+00 +32640,fr,1,3.550000E+00,3.044600E+00,4.821542E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +32676,fr,1,3.850000E+00,3.044600E+00,4.821542E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +32692,fr,1,3.950000E+00,3.044600E+00,4.821542E+01,1.500000E+01,Active Shallow Crust,2.400200E+02,5.800493E+01,0.000000E+00 +33120,fr,1,3.550000E+00,3.218580E+00,4.277824E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998890E+01,0.000000E+00 +33122,fr,1,3.550000E+00,3.218580E+00,4.277824E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998890E+01,0.000000E+00 +33129,fr,1,3.550000E+00,3.218580E+00,4.277824E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.999260E+01,0.000000E+00 +33132,fr,1,3.650000E+00,3.218580E+00,4.277824E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +33138,fr,1,3.650000E+00,3.218580E+00,4.277824E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +33144,fr,2,3.750000E+00,3.218580E+00,4.277824E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999118E+01,0.000000E+00 +33157,fr,1,3.850000E+00,3.218580E+00,4.277824E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +33160,fr,1,3.850000E+00,3.218580E+00,4.277824E+01,1.500000E+01,Active Shallow Crust,2.400105E+02,5.799762E+01,0.000000E+00 +33161,fr,1,3.850000E+00,3.218580E+00,4.277824E+01,2.750000E+01,Active Shallow Crust,2.400105E+02,5.799762E+01,0.000000E+00 +33207,fr,2,4.250000E+00,3.218580E+00,4.277824E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.799372E+01,0.000000E+00 +33228,fr,1,4.450000E+00,3.218580E+00,4.277824E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +33291,fr,1,4.950000E+00,3.218580E+00,4.277824E+01,5.000000E+00,Active Shallow Crust,2.400102E+02,5.800420E+01,0.000000E+00 +33388,fr,1,5.750000E+00,3.218580E+00,4.277824E+01,1.500000E+01,Active Shallow Crust,2.400372E+02,5.799879E+01,0.000000E+00 +33612,fr,1,3.650000E+00,-5.446100E-01,5.025635E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +33624,fr,1,3.750000E+00,-5.446100E-01,5.025635E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +33628,fr,1,3.750000E+00,-5.446100E-01,5.025635E+01,1.500000E+01,Active Shallow Crust,2.400089E+02,5.801763E+01,0.000000E+00 +33661,fr,1,4.050000E+00,-5.446100E-01,5.025635E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +34080,fr,1,3.550000E+00,-2.565980E+00,4.606954E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +34560,fr,2,3.550000E+00,4.676560E+00,4.536911E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999291E+01,0.000000E+00 +34564,fr,1,3.550000E+00,4.676560E+00,4.536911E+01,1.500000E+01,Active Shallow Crust,2.400125E+02,5.799789E+01,0.000000E+00 +34570,fr,1,3.550000E+00,4.676560E+00,4.536911E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.999292E+01,0.000000E+00 +34573,fr,1,3.650000E+00,4.676560E+00,4.536911E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998737E+01,0.000000E+00 +34584,fr,2,3.750000E+00,4.676560E+00,4.536911E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +34587,fr,1,3.750000E+00,4.676560E+00,4.536911E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801811E+01,0.000000E+00 +34601,fr,1,3.850000E+00,4.676560E+00,4.536911E+01,2.750000E+01,Active Shallow Crust,2.400110E+02,5.799754E+01,0.000000E+00 +34632,fr,1,4.150000E+00,4.676560E+00,4.536911E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +34647,fr,1,4.250000E+00,4.676560E+00,4.536911E+01,5.000000E+00,Active Shallow Crust,2.400072E+02,5.799417E+01,0.000000E+00 +34653,fr,1,4.250000E+00,4.676560E+00,4.536911E+01,5.000000E+00,Active Shallow Crust,1.288938E+02,8.998090E+01,0.000000E+00 +35040,fr,4,3.550000E+00,-1.771740E+00,4.284737E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +35042,fr,1,3.550000E+00,-1.771740E+00,4.284737E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +35043,fr,1,3.550000E+00,-1.771740E+00,4.284737E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799817E+01,0.000000E+00 +35049,fr,1,3.550000E+00,-1.771740E+00,4.284737E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.999353E+01,0.000000E+00 +35050,fr,1,3.550000E+00,-1.771740E+00,4.284737E+01,1.500000E+01,Active Shallow Crust,1.288966E+02,8.999353E+01,0.000000E+00 +35052,fr,6,3.650000E+00,-1.771740E+00,4.284737E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +35053,fr,1,3.650000E+00,-1.771740E+00,4.284737E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +35058,fr,2,3.650000E+00,-1.771740E+00,4.284737E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +35060,fr,1,3.650000E+00,-1.771740E+00,4.284737E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +35064,fr,4,3.750000E+00,-1.771740E+00,4.284737E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +35065,fr,3,3.750000E+00,-1.771740E+00,4.284737E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +35068,fr,1,3.750000E+00,-1.771740E+00,4.284737E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.801729E+01,0.000000E+00 +35070,fr,1,3.750000E+00,-1.771740E+00,4.284737E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,-9.000000E+01 +35073,fr,1,3.750000E+00,-1.771740E+00,4.284737E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996743E+01,0.000000E+00 +35079,fr,1,3.850000E+00,-1.771740E+00,4.284737E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.799760E+01,0.000000E+00 +35088,fr,1,3.950000E+00,-1.771740E+00,4.284737E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +35089,fr,1,3.950000E+00,-1.771740E+00,4.284737E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +35090,fr,1,3.950000E+00,-1.771740E+00,4.284737E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +35091,fr,1,3.950000E+00,-1.771740E+00,4.284737E+01,5.000000E+00,Active Shallow Crust,2.400194E+02,5.800479E+01,0.000000E+00 +35097,fr,1,3.950000E+00,-1.771740E+00,4.284737E+01,5.000000E+00,Active Shallow Crust,1.289006E+02,8.999417E+01,0.000000E+00 +35098,fr,1,3.950000E+00,-1.771740E+00,4.284737E+01,1.500000E+01,Active Shallow Crust,1.289006E+02,8.999417E+01,0.000000E+00 +35100,fr,3,4.050000E+00,-1.771740E+00,4.284737E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +35102,fr,1,4.050000E+00,-1.771740E+00,4.284737E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +35104,fr,3,4.050000E+00,-1.771740E+00,4.284737E+01,1.500000E+01,Active Shallow Crust,2.400054E+02,5.800571E+01,0.000000E+00 +35113,fr,1,4.150000E+00,-1.771740E+00,4.284737E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +35114,fr,1,4.150000E+00,-1.771740E+00,4.284737E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +35124,fr,1,4.250000E+00,-1.771740E+00,4.284737E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +35125,fr,1,4.250000E+00,-1.771740E+00,4.284737E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +35137,fr,1,4.350000E+00,-1.771740E+00,4.284737E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +35148,fr,1,4.450000E+00,-1.771740E+00,4.284737E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +35166,fr,1,4.550000E+00,-1.771740E+00,4.284737E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +35187,fr,1,4.750000E+00,-1.771740E+00,4.284737E+01,5.000000E+00,Active Shallow Crust,2.400063E+02,5.800427E+01,0.000000E+00 +35197,fr,1,4.850000E+00,-1.771740E+00,4.284737E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +35232,fr,1,5.150000E+00,-1.771740E+00,4.284737E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +35246,fr,1,5.250000E+00,-1.771740E+00,4.284737E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +35529,fr,1,3.550000E+00,1.416470E+00,4.356882E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.999361E+01,0.000000E+00 +35534,fr,1,3.650000E+00,1.416470E+00,4.356882E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +35535,fr,1,3.650000E+00,1.416470E+00,4.356882E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801276E+01,0.000000E+00 +35604,fr,1,4.250000E+00,1.416470E+00,4.356882E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +35607,fr,1,4.250000E+00,1.416470E+00,4.356882E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.799401E+01,0.000000E+00 +35617,fr,1,4.350000E+00,1.416470E+00,4.356882E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +36012,fr,1,3.650000E+00,4.126210E+00,4.170328E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999329E+01,0.000000E+00 +36109,fr,1,4.450000E+00,4.126210E+00,4.170328E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +36192,fr,1,5.150000E+00,4.126210E+00,4.170328E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +36480,fr,1,3.550000E+00,-3.502400E-01,4.190042E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +36546,fr,1,4.050000E+00,-3.502400E-01,4.190042E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,-9.000000E+01 +36548,fr,1,4.050000E+00,-3.502400E-01,4.190042E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,-9.000000E+01 +36576,fr,1,4.350000E+00,-3.502400E-01,4.190042E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +36960,fr,1,3.550000E+00,7.532850E+00,4.361105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999270E+01,0.000000E+00 +36963,fr,3,3.550000E+00,7.532850E+00,4.361105E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799744E+01,0.000000E+00 +36972,fr,1,3.650000E+00,7.532850E+00,4.361105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998698E+01,0.000000E+00 +36973,fr,1,3.650000E+00,7.532850E+00,4.361105E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998698E+01,0.000000E+00 +36974,fr,1,3.650000E+00,7.532850E+00,4.361105E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998698E+01,0.000000E+00 +36983,fr,1,3.650000E+00,7.532850E+00,4.361105E+01,2.750000E+01,Active Shallow Crust,1.288999E+02,8.996347E+01,0.000000E+00 +36997,fr,1,3.850000E+00,7.532850E+00,4.361105E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +37006,fr,1,3.850000E+00,7.532850E+00,4.361105E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.999225E+01,0.000000E+00 +37008,fr,1,3.950000E+00,7.532850E+00,4.361105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +37011,fr,1,3.950000E+00,7.532850E+00,4.361105E+01,5.000000E+00,Active Shallow Crust,2.400195E+02,5.800559E+01,0.000000E+00 +37020,fr,2,4.050000E+00,7.532850E+00,4.361105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999179E+01,0.000000E+00 +37023,fr,1,4.050000E+00,7.532850E+00,4.361105E+01,5.000000E+00,Active Shallow Crust,2.400061E+02,5.800560E+01,0.000000E+00 +37032,fr,2,4.150000E+00,7.532850E+00,4.361105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998902E+01,0.000000E+00 +37062,fr,1,4.350000E+00,7.532850E+00,4.361105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999118E+01,-9.000000E+01 +37081,fr,1,4.550000E+00,7.532850E+00,4.361105E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +37440,fr,1,3.550000E+00,4.088690E+00,4.502383E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999287E+01,0.000000E+00 +37451,fr,1,3.550000E+00,4.088690E+00,4.502383E+01,2.750000E+01,Active Shallow Crust,1.288960E+02,8.999644E+01,0.000000E+00 +37464,fr,1,3.750000E+00,4.088690E+00,4.502383E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998868E+01,0.000000E+00 +37476,fr,2,3.850000E+00,4.088690E+00,4.502383E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +37513,fr,2,4.150000E+00,4.088690E+00,4.502383E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998928E+01,0.000000E+00 +37514,fr,1,4.150000E+00,4.088690E+00,4.502383E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998928E+01,0.000000E+00 +37524,fr,1,4.250000E+00,4.088690E+00,4.502383E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +37526,fr,1,4.250000E+00,4.088690E+00,4.502383E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +37537,fr,1,4.350000E+00,4.088690E+00,4.502383E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998865E+01,0.000000E+00 +37584,fr,1,4.750000E+00,4.088690E+00,4.502383E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +37681,fr,1,5.550000E+00,4.088690E+00,4.502383E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +37920,fr,2,3.550000E+00,-1.634310E+00,4.313928E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999080E+01,0.000000E+00 +37921,fr,2,3.550000E+00,-1.634310E+00,4.313928E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999080E+01,0.000000E+00 +37923,fr,2,3.550000E+00,-1.634310E+00,4.313928E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799825E+01,0.000000E+00 +37925,fr,2,3.550000E+00,-1.634310E+00,4.313928E+01,2.750000E+01,Active Shallow Crust,2.400116E+02,5.799815E+01,0.000000E+00 +37926,fr,1,3.550000E+00,-1.634310E+00,4.313928E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999069E+01,-9.000000E+01 +37929,fr,1,3.550000E+00,-1.634310E+00,4.313928E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999356E+01,0.000000E+00 +37930,fr,2,3.550000E+00,-1.634310E+00,4.313928E+01,1.500000E+01,Active Shallow Crust,1.288964E+02,8.999356E+01,0.000000E+00 +37932,fr,3,3.650000E+00,-1.634310E+00,4.313928E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +37933,fr,1,3.650000E+00,-1.634310E+00,4.313928E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +37935,fr,1,3.650000E+00,-1.634310E+00,4.313928E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801291E+01,0.000000E+00 +37936,fr,1,3.650000E+00,-1.634310E+00,4.313928E+01,1.500000E+01,Active Shallow Crust,2.400010E+02,5.801291E+01,0.000000E+00 +37944,fr,2,3.750000E+00,-1.634310E+00,4.313928E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +37947,fr,2,3.750000E+00,-1.634310E+00,4.313928E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.801743E+01,0.000000E+00 +37956,fr,1,3.850000E+00,-1.634310E+00,4.313928E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +37968,fr,1,3.950000E+00,-1.634310E+00,4.313928E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +37971,fr,3,3.950000E+00,-1.634310E+00,4.313928E+01,5.000000E+00,Active Shallow Crust,2.400194E+02,5.800502E+01,0.000000E+00 +37992,fr,1,4.150000E+00,-1.634310E+00,4.313928E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +37993,fr,1,4.150000E+00,-1.634310E+00,4.313928E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +37998,fr,1,4.150000E+00,-1.634310E+00,4.313928E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,-9.000000E+01 +38006,fr,1,4.250000E+00,-1.634310E+00,4.313928E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +38010,fr,1,4.250000E+00,-1.634310E+00,4.313928E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +38020,fr,1,4.350000E+00,-1.634310E+00,4.313928E+01,1.500000E+01,Active Shallow Crust,2.400077E+02,5.799578E+01,0.000000E+00 +38037,fr,1,4.450000E+00,-1.634310E+00,4.313928E+01,5.000000E+00,Active Shallow Crust,1.288928E+02,8.999380E+01,0.000000E+00 +38112,fr,1,5.150000E+00,-1.634310E+00,4.313928E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +38127,fr,1,5.250000E+00,-1.634310E+00,4.313928E+01,5.000000E+00,Active Shallow Crust,2.400184E+02,5.799992E+01,0.000000E+00 +38150,fr,1,5.450000E+00,-1.634310E+00,4.313928E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +38409,fr,1,3.550000E+00,5.059870E+00,5.013612E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999354E+01,0.000000E+00 +38413,fr,1,3.650000E+00,5.059870E+00,5.013612E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998848E+01,0.000000E+00 +38418,fr,1,3.650000E+00,5.059870E+00,5.013612E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998834E+01,-9.000000E+01 +38471,fr,1,4.050000E+00,5.059870E+00,5.013612E+01,2.750000E+01,Active Shallow Crust,1.288891E+02,8.999454E+01,0.000000E+00 +38496,fr,1,4.350000E+00,5.059870E+00,5.013612E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +38535,fr,1,4.650000E+00,5.059870E+00,5.013612E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799443E+01,0.000000E+00 +38556,fr,1,4.850000E+00,5.059870E+00,5.013612E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +38880,fr,1,3.550000E+00,6.209830E+00,5.090268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998728E+01,0.000000E+00 +38881,fr,1,3.550000E+00,6.209830E+00,5.090268E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998728E+01,0.000000E+00 +38883,fr,1,3.550000E+00,6.209830E+00,5.090268E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799878E+01,0.000000E+00 +38892,fr,6,3.650000E+00,6.209830E+00,5.090268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +38893,fr,3,3.650000E+00,6.209830E+00,5.090268E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +38894,fr,1,3.650000E+00,6.209830E+00,5.090268E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +38895,fr,2,3.650000E+00,6.209830E+00,5.090268E+01,5.000000E+00,Active Shallow Crust,2.400016E+02,5.801289E+01,0.000000E+00 +38904,fr,1,3.750000E+00,6.209830E+00,5.090268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +38905,fr,1,3.750000E+00,6.209830E+00,5.090268E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +38906,fr,1,3.750000E+00,6.209830E+00,5.090268E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +38907,fr,1,3.750000E+00,6.209830E+00,5.090268E+01,5.000000E+00,Active Shallow Crust,2.400096E+02,5.801715E+01,0.000000E+00 +38913,fr,1,3.750000E+00,6.209830E+00,5.090268E+01,5.000000E+00,Active Shallow Crust,1.288953E+02,8.996757E+01,0.000000E+00 +38916,fr,4,3.850000E+00,6.209830E+00,5.090268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +38917,fr,2,3.850000E+00,6.209830E+00,5.090268E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +38919,fr,1,3.850000E+00,6.209830E+00,5.090268E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799873E+01,0.000000E+00 +38920,fr,1,3.850000E+00,6.209830E+00,5.090268E+01,1.500000E+01,Active Shallow Crust,2.400107E+02,5.799873E+01,0.000000E+00 +38925,fr,1,3.850000E+00,6.209830E+00,5.090268E+01,5.000000E+00,Active Shallow Crust,1.288948E+02,8.999325E+01,0.000000E+00 +38928,fr,2,3.950000E+00,6.209830E+00,5.090268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999197E+01,0.000000E+00 +38931,fr,1,3.950000E+00,6.209830E+00,5.090268E+01,5.000000E+00,Active Shallow Crust,2.400212E+02,5.800480E+01,0.000000E+00 +38935,fr,1,3.950000E+00,6.209830E+00,5.090268E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999188E+01,-9.000000E+01 +38940,fr,3,4.050000E+00,6.209830E+00,5.090268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +38943,fr,1,4.050000E+00,6.209830E+00,5.090268E+01,5.000000E+00,Active Shallow Crust,2.400067E+02,5.800660E+01,0.000000E+00 +38946,fr,1,4.050000E+00,6.209830E+00,5.090268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,-9.000000E+01 +38952,fr,1,4.150000E+00,6.209830E+00,5.090268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +38958,fr,2,4.150000E+00,6.209830E+00,5.090268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,-9.000000E+01 +38959,fr,1,4.150000E+00,6.209830E+00,5.090268E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,-9.000000E+01 +38964,fr,2,4.250000E+00,6.209830E+00,5.090268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998864E+01,0.000000E+00 +38965,fr,1,4.250000E+00,6.209830E+00,5.090268E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998864E+01,0.000000E+00 +38970,fr,1,4.250000E+00,6.209830E+00,5.090268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999138E+01,-9.000000E+01 +38977,fr,1,4.350000E+00,6.209830E+00,5.090268E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +38979,fr,1,4.350000E+00,6.209830E+00,5.090268E+01,5.000000E+00,Active Shallow Crust,2.400095E+02,5.799651E+01,0.000000E+00 +38997,fr,1,4.450000E+00,6.209830E+00,5.090268E+01,5.000000E+00,Active Shallow Crust,1.288909E+02,8.999323E+01,0.000000E+00 +39000,fr,2,4.550000E+00,6.209830E+00,5.090268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +39003,fr,1,4.550000E+00,6.209830E+00,5.090268E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799764E+01,0.000000E+00 +39035,fr,1,4.750000E+00,6.209830E+00,5.090268E+01,2.750000E+01,Active Shallow Crust,1.288869E+02,8.998802E+01,0.000000E+00 +39117,fr,1,5.450000E+00,6.209830E+00,5.090268E+01,5.000000E+00,Active Shallow Crust,1.288755E+02,8.998891E+01,0.000000E+00 +39144,fr,1,5.750000E+00,6.209830E+00,5.090268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +39150,fr,1,5.750000E+00,6.209830E+00,5.090268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,-9.000000E+01 +39159,fr,1,5.850000E+00,6.209830E+00,5.090268E+01,5.000000E+00,Active Shallow Crust,2.400535E+02,5.800083E+01,0.000000E+00 +39384,fr,1,3.750000E+00,-5.578400E-01,4.146424E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +39447,fr,1,4.250000E+00,-5.578400E-01,4.146424E+01,5.000000E+00,Active Shallow Crust,2.400066E+02,5.799389E+01,0.000000E+00 +39481,fr,1,4.550000E+00,-5.578400E-01,4.146424E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +39841,fr,1,3.550000E+00,2.837700E-01,4.618087E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +39852,fr,1,3.650000E+00,2.837700E-01,4.618087E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +39876,fr,1,3.850000E+00,2.837700E-01,4.618087E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +39888,fr,1,3.950000E+00,2.837700E-01,4.618087E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +39889,fr,1,3.950000E+00,2.837700E-01,4.618087E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +39891,fr,1,3.950000E+00,2.837700E-01,4.618087E+01,5.000000E+00,Active Shallow Crust,2.400197E+02,5.800500E+01,0.000000E+00 +39924,fr,1,4.250000E+00,2.837700E-01,4.618087E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +39975,fr,1,4.650000E+00,2.837700E-01,4.618087E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799421E+01,0.000000E+00 +40042,fr,1,5.150000E+00,2.837700E-01,4.618087E+01,1.500000E+01,Active Shallow Crust,1.288839E+02,8.999106E+01,0.000000E+00 +40341,fr,1,3.650000E+00,2.318000E-02,4.152809E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.996351E+01,0.000000E+00 +40346,fr,1,3.750000E+00,2.318000E-02,4.152809E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +40801,fr,1,3.550000E+00,3.478660E+00,4.828201E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +40849,fr,1,3.950000E+00,3.478660E+00,4.828201E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +41280,fr,2,3.550000E+00,-3.226600E-01,5.026873E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +41316,fr,1,3.850000E+00,-3.226600E-01,5.026873E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +41323,fr,1,3.850000E+00,-3.226600E-01,5.026873E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,-9.000000E+01 +41340,fr,1,4.050000E+00,-3.226600E-01,5.026873E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +41400,fr,1,4.550000E+00,-3.226600E-01,5.026873E+01,5.000000E+00,Active Shallow Crust,3.599999E+02,8.999006E+01,0.000000E+00 +41469,fr,1,5.050000E+00,-3.226600E-01,5.026873E+01,5.000000E+00,Active Shallow Crust,1.288837E+02,8.999046E+01,0.000000E+00 +41791,fr,1,3.750000E+00,5.729710E+00,4.897696E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,-9.000000E+01 +42240,fr,2,3.550000E+00,1.212000E-02,4.790463E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +42241,fr,2,3.550000E+00,1.212000E-02,4.790463E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +42242,fr,1,3.550000E+00,1.212000E-02,4.790463E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +42252,fr,1,3.650000E+00,1.212000E-02,4.790463E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +42270,fr,1,3.750000E+00,1.212000E-02,4.790463E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +42276,fr,2,3.850000E+00,1.212000E-02,4.790463E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +42310,fr,1,4.050000E+00,1.212000E-02,4.790463E+01,1.500000E+01,Active Shallow Crust,1.288903E+02,8.999372E+01,0.000000E+00 +42351,fr,1,4.450000E+00,1.212000E-02,4.790463E+01,5.000000E+00,Active Shallow Crust,2.400056E+02,5.799474E+01,0.000000E+00 +42720,fr,2,3.550000E+00,-2.631400E-01,4.627391E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +42733,fr,1,3.650000E+00,-2.631400E-01,4.627391E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +42734,fr,1,3.650000E+00,-2.631400E-01,4.627391E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +42736,fr,1,3.650000E+00,-2.631400E-01,4.627391E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801285E+01,0.000000E+00 +42744,fr,2,3.750000E+00,-2.631400E-01,4.627391E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +42747,fr,2,3.750000E+00,-2.631400E-01,4.627391E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801756E+01,0.000000E+00 +42757,fr,3,3.850000E+00,-2.631400E-01,4.627391E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +42768,fr,1,3.950000E+00,-2.631400E-01,4.627391E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +42771,fr,1,3.950000E+00,-2.631400E-01,4.627391E+01,5.000000E+00,Active Shallow Crust,2.400198E+02,5.800495E+01,0.000000E+00 +42784,fr,1,4.050000E+00,-2.631400E-01,4.627391E+01,1.500000E+01,Active Shallow Crust,2.400059E+02,5.800577E+01,0.000000E+00 +42793,fr,1,4.150000E+00,-2.631400E-01,4.627391E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +42851,fr,1,4.550000E+00,-2.631400E-01,4.627391E+01,2.750000E+01,Active Shallow Crust,1.288939E+02,8.998579E+01,0.000000E+00 +42864,fr,1,4.750000E+00,-2.631400E-01,4.627391E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +43243,fr,1,3.850000E+00,-5.374880E+00,4.700496E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,-9.000000E+01 +43680,fr,1,3.550000E+00,-3.114570E+00,4.366257E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998906E+01,0.000000E+00 +43696,fr,1,3.650000E+00,-3.114570E+00,4.366257E+01,1.500000E+01,Active Shallow Crust,2.400010E+02,5.801279E+01,0.000000E+00 +43699,fr,1,3.650000E+00,-3.114570E+00,4.366257E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +43752,fr,1,4.150000E+00,-3.114570E+00,4.366257E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +43765,fr,1,4.250000E+00,-3.114570E+00,4.366257E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +43790,fr,1,4.450000E+00,-3.114570E+00,4.366257E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +44184,fr,1,3.750000E+00,8.190770E+00,4.527540E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +44198,fr,1,3.850000E+00,8.190770E+00,4.527540E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +44208,fr,1,3.950000E+00,8.190770E+00,4.527540E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +44221,fr,1,4.050000E+00,8.190770E+00,4.527540E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999202E+01,0.000000E+00 +44535,fr,1,6.650000E+00,8.174532E+00,4.529518E+01,9.065474E+00,Active Shallow Crust,2.401096E+02,5.799969E+01,0.000000E+00 +44640,fr,2,3.550000E+00,8.703800E-01,4.689238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +44642,fr,1,3.550000E+00,8.703800E-01,4.689238E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +44643,fr,1,3.550000E+00,8.703800E-01,4.689238E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799801E+01,0.000000E+00 +44652,fr,1,3.650000E+00,8.703800E-01,4.689238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +44653,fr,1,3.650000E+00,8.703800E-01,4.689238E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +44655,fr,1,3.650000E+00,8.703800E-01,4.689238E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801304E+01,0.000000E+00 +44664,fr,4,3.750000E+00,8.703800E-01,4.689238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +44667,fr,1,3.750000E+00,8.703800E-01,4.689238E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801761E+01,0.000000E+00 +44700,fr,1,4.050000E+00,8.703800E-01,4.689238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +44712,fr,1,4.150000E+00,8.703800E-01,4.689238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +44726,fr,1,4.250000E+00,8.703800E-01,4.689238E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +44730,fr,1,4.250000E+00,8.703800E-01,4.689238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +44736,fr,1,4.350000E+00,8.703800E-01,4.689238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +44772,fr,1,4.650000E+00,8.703800E-01,4.689238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +44796,fr,1,4.850000E+00,8.703800E-01,4.689238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +44847,fr,1,5.250000E+00,8.703800E-01,4.689238E+01,5.000000E+00,Active Shallow Crust,2.400257E+02,5.800032E+01,0.000000E+00 +45138,fr,1,3.650000E+00,3.565110E+00,4.611929E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,-9.000000E+01 +45192,fr,1,4.150000E+00,3.565110E+00,4.611929E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +45202,fr,1,4.150000E+00,3.565110E+00,4.611929E+01,1.500000E+01,Active Shallow Crust,1.288978E+02,8.999387E+01,0.000000E+00 +45624,fr,2,3.750000E+00,3.483110E+00,4.597735E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998887E+01,0.000000E+00 +45684,fr,2,4.250000E+00,3.483110E+00,4.597735E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999061E+01,0.000000E+00 +45721,fr,1,4.550000E+00,3.483110E+00,4.597735E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +46080,fr,1,3.550000E+00,6.623700E-01,4.687868E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +46082,fr,1,3.550000E+00,6.623700E-01,4.687868E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +46085,fr,1,3.550000E+00,6.623700E-01,4.687868E+01,2.750000E+01,Active Shallow Crust,2.400120E+02,5.799810E+01,0.000000E+00 +46092,fr,4,3.650000E+00,6.623700E-01,4.687868E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +46101,fr,1,3.650000E+00,6.623700E-01,4.687868E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.996353E+01,0.000000E+00 +46104,fr,2,3.750000E+00,6.623700E-01,4.687868E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +46117,fr,1,3.850000E+00,6.623700E-01,4.687868E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +46128,fr,1,3.950000E+00,6.623700E-01,4.687868E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +46130,fr,1,3.950000E+00,6.623700E-01,4.687868E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +46141,fr,1,4.050000E+00,6.623700E-01,4.687868E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +46152,fr,1,4.150000E+00,6.623700E-01,4.687868E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +46212,fr,1,4.650000E+00,6.623700E-01,4.687868E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +46236,fr,1,4.850000E+00,6.623700E-01,4.687868E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +46287,fr,1,5.250000E+00,6.623700E-01,4.687868E+01,5.000000E+00,Active Shallow Crust,2.400257E+02,5.800032E+01,0.000000E+00 +46309,fr,1,5.450000E+00,6.623700E-01,4.687868E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +46584,fr,1,3.750000E+00,4.266950E+00,5.234193E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +46602,fr,1,3.850000E+00,4.266950E+00,5.234193E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999117E+01,-9.000000E+01 +47040,fr,1,3.550000E+00,-1.782770E+00,4.201440E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +47058,fr,1,3.650000E+00,-1.782770E+00,4.201440E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,-9.000000E+01 +47064,fr,1,3.750000E+00,-1.782770E+00,4.201440E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +47088,fr,1,3.950000E+00,-1.782770E+00,4.201440E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +47124,fr,1,4.250000E+00,-1.782770E+00,4.201440E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +47137,fr,1,4.350000E+00,-1.782770E+00,4.201440E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +47148,fr,1,4.450000E+00,-1.782770E+00,4.201440E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +47208,fr,1,4.950000E+00,-1.782770E+00,4.201440E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +47244,fr,1,5.250000E+00,-1.782770E+00,4.201440E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +47520,fr,1,3.550000E+00,7.010710E+00,4.812314E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999327E+01,0.000000E+00 +47521,fr,1,3.550000E+00,7.010710E+00,4.812314E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999327E+01,0.000000E+00 +47525,fr,1,3.550000E+00,7.010710E+00,4.812314E+01,2.750000E+01,Active Shallow Crust,2.400117E+02,5.799888E+01,0.000000E+00 +47534,fr,1,3.650000E+00,7.010710E+00,4.812314E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998800E+01,0.000000E+00 +47535,fr,1,3.650000E+00,7.010710E+00,4.812314E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801279E+01,0.000000E+00 +47542,fr,1,3.650000E+00,7.010710E+00,4.812314E+01,1.500000E+01,Active Shallow Crust,1.288999E+02,8.996355E+01,0.000000E+00 +47544,fr,1,3.750000E+00,7.010710E+00,4.812314E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +47547,fr,1,3.750000E+00,7.010710E+00,4.812314E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.801803E+01,0.000000E+00 +47557,fr,1,3.850000E+00,7.010710E+00,4.812314E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +47568,fr,1,3.950000E+00,7.010710E+00,4.812314E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999151E+01,0.000000E+00 +47569,fr,1,3.950000E+00,7.010710E+00,4.812314E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999151E+01,0.000000E+00 +47577,fr,1,3.950000E+00,7.010710E+00,4.812314E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.999363E+01,0.000000E+00 +47598,fr,1,4.150000E+00,7.010710E+00,4.812314E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,-9.000000E+01 +47617,fr,1,4.350000E+00,7.010710E+00,4.812314E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998928E+01,0.000000E+00 +48000,fr,2,3.550000E+00,2.255470E+00,4.617722E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +48001,fr,1,3.550000E+00,2.255470E+00,4.617722E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +48002,fr,1,3.550000E+00,2.255470E+00,4.617722E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +48004,fr,1,3.550000E+00,2.255470E+00,4.617722E+01,1.500000E+01,Active Shallow Crust,2.400117E+02,5.799798E+01,0.000000E+00 +48006,fr,1,3.550000E+00,2.255470E+00,4.617722E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,-9.000000E+01 +48012,fr,1,3.650000E+00,2.255470E+00,4.617722E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +48013,fr,1,3.650000E+00,2.255470E+00,4.617722E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +48024,fr,1,3.750000E+00,2.255470E+00,4.617722E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +48025,fr,3,3.750000E+00,2.255470E+00,4.617722E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +48027,fr,1,3.750000E+00,2.255470E+00,4.617722E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.801782E+01,0.000000E+00 +48037,fr,1,3.850000E+00,2.255470E+00,4.617722E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +48048,fr,2,3.950000E+00,2.255470E+00,4.617722E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +48061,fr,1,4.050000E+00,2.255470E+00,4.617722E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +48076,fr,1,4.150000E+00,2.255470E+00,4.617722E+01,1.500000E+01,Active Shallow Crust,2.400082E+02,5.799749E+01,0.000000E+00 +48171,fr,1,4.950000E+00,2.255470E+00,4.617722E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.800435E+01,0.000000E+00 +48192,fr,1,5.150000E+00,2.255470E+00,4.617722E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +48480,fr,2,3.550000E+00,3.400400E-01,4.591568E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +48487,fr,1,3.550000E+00,3.400400E-01,4.591568E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,-9.000000E+01 +48489,fr,1,3.550000E+00,3.400400E-01,4.591568E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999364E+01,0.000000E+00 +48492,fr,1,3.650000E+00,3.400400E-01,4.591568E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +48497,fr,1,3.650000E+00,3.400400E-01,4.591568E+01,2.750000E+01,Active Shallow Crust,2.400011E+02,5.801282E+01,0.000000E+00 +48499,fr,1,3.650000E+00,3.400400E-01,4.591568E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,-9.000000E+01 +48507,fr,1,3.750000E+00,3.400400E-01,4.591568E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801762E+01,0.000000E+00 +48528,fr,1,3.950000E+00,3.400400E-01,4.591568E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +48648,fr,1,4.950000E+00,3.400400E-01,4.591568E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +48694,fr,1,5.250000E+00,3.400400E-01,4.591568E+01,1.500000E+01,Active Shallow Crust,1.288836E+02,8.998698E+01,0.000000E+00 +48972,fr,1,3.650000E+00,1.356780E+00,5.125627E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +48981,fr,1,3.650000E+00,1.356780E+00,5.125627E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.996350E+01,0.000000E+00 +49020,fr,1,4.050000E+00,1.356780E+00,5.125627E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +49023,fr,1,4.050000E+00,1.356780E+00,5.125627E+01,5.000000E+00,Active Shallow Crust,2.400068E+02,5.800594E+01,0.000000E+00 +49068,fr,1,4.450000E+00,1.356780E+00,5.125627E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +49945,fr,1,3.750000E+00,6.474600E-01,4.391091E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +49959,fr,1,3.850000E+00,6.474600E-01,4.391091E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799777E+01,0.000000E+00 +49981,fr,1,4.050000E+00,6.474600E-01,4.391091E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +49990,fr,1,4.050000E+00,6.474600E-01,4.391091E+01,1.500000E+01,Active Shallow Crust,1.288909E+02,8.999361E+01,0.000000E+00 +50005,fr,1,4.250000E+00,6.474600E-01,4.391091E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +50427,fr,1,3.750000E+00,1.554470E+00,5.292829E+01,5.000000E+00,Active Shallow Crust,2.400094E+02,5.801765E+01,0.000000E+00 +50517,fr,1,4.450000E+00,1.554470E+00,5.292829E+01,5.000000E+00,Active Shallow Crust,1.288905E+02,8.999380E+01,0.000000E+00 +50881,fr,1,3.550000E+00,9.445800E-01,5.059188E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +50892,fr,2,3.650000E+00,9.445800E-01,5.059188E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +50910,fr,1,3.750000E+00,9.445800E-01,5.059188E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,-9.000000E+01 +50916,fr,1,3.850000E+00,9.445800E-01,5.059188E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +50926,fr,1,3.850000E+00,9.445800E-01,5.059188E+01,1.500000E+01,Active Shallow Crust,1.288951E+02,8.999377E+01,0.000000E+00 +50934,fr,1,3.950000E+00,9.445800E-01,5.059188E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,-9.000000E+01 +50964,fr,1,4.250000E+00,9.445800E-01,5.059188E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +50989,fr,1,4.450000E+00,9.445800E-01,5.059188E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +51000,fr,1,4.550000E+00,9.445800E-01,5.059188E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +51150,fr,1,5.750000E+00,9.445800E-01,5.059188E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999003E+01,-9.000000E+01 +51360,fr,1,3.550000E+00,1.989930E+00,4.325012E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999082E+01,0.000000E+00 +51365,fr,1,3.550000E+00,1.989930E+00,4.325012E+01,2.750000E+01,Active Shallow Crust,2.400115E+02,5.799815E+01,0.000000E+00 +51372,fr,2,3.650000E+00,1.989930E+00,4.325012E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +51390,fr,1,3.750000E+00,1.989930E+00,4.325012E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,-9.000000E+01 +51423,fr,1,4.050000E+00,1.989930E+00,4.325012E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.800562E+01,0.000000E+00 +51486,fr,1,4.550000E+00,1.989930E+00,4.325012E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +51552,fr,1,5.150000E+00,1.989930E+00,4.325012E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +51624,fr,1,5.750000E+00,1.989930E+00,4.325012E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +51648,fr,1,5.950000E+00,1.989930E+00,4.325012E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +51840,fr,1,3.550000E+00,-5.326000E-01,4.229364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +51852,fr,1,3.650000E+00,-5.326000E-01,4.229364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +51877,fr,1,3.850000E+00,-5.326000E-01,4.229364E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +52323,fr,1,3.550000E+00,-3.045190E+00,4.339260E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799818E+01,0.000000E+00 +52332,fr,1,3.650000E+00,-3.045190E+00,4.339260E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +52335,fr,1,3.650000E+00,-3.045190E+00,4.339260E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801299E+01,0.000000E+00 +52336,fr,1,3.650000E+00,-3.045190E+00,4.339260E+01,1.500000E+01,Active Shallow Crust,2.400012E+02,5.801299E+01,0.000000E+00 +52413,fr,1,4.250000E+00,-3.045190E+00,4.339260E+01,5.000000E+00,Active Shallow Crust,1.288949E+02,8.998083E+01,0.000000E+00 +52416,fr,1,4.350000E+00,-3.045190E+00,4.339260E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +52428,fr,1,4.450000E+00,-3.045190E+00,4.339260E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +52494,fr,1,4.950000E+00,-3.045190E+00,4.339260E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +52800,fr,1,3.550000E+00,1.239730E+00,4.503982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +52806,fr,1,3.550000E+00,1.239730E+00,4.503982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998919E+01,-9.000000E+01 +53280,fr,1,3.550000E+00,-7.282800E-01,4.691211E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +53281,fr,2,3.550000E+00,-7.282800E-01,4.691211E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +53286,fr,1,3.550000E+00,-7.282800E-01,4.691211E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,-9.000000E+01 +53292,fr,3,3.650000E+00,-7.282800E-01,4.691211E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +53298,fr,3,3.650000E+00,-7.282800E-01,4.691211E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +53304,fr,1,3.750000E+00,-7.282800E-01,4.691211E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +53308,fr,1,3.750000E+00,-7.282800E-01,4.691211E+01,1.500000E+01,Active Shallow Crust,2.400083E+02,5.801766E+01,0.000000E+00 +53313,fr,1,3.750000E+00,-7.282800E-01,4.691211E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996738E+01,0.000000E+00 +53325,fr,1,3.850000E+00,-7.282800E-01,4.691211E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.999390E+01,0.000000E+00 +53331,fr,1,3.950000E+00,-7.282800E-01,4.691211E+01,5.000000E+00,Active Shallow Crust,2.400199E+02,5.800492E+01,0.000000E+00 +53334,fr,1,3.950000E+00,-7.282800E-01,4.691211E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +53343,fr,1,4.050000E+00,-7.282800E-01,4.691211E+01,5.000000E+00,Active Shallow Crust,2.400060E+02,5.800581E+01,0.000000E+00 +53358,fr,1,4.150000E+00,-7.282800E-01,4.691211E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +53375,fr,1,4.250000E+00,-7.282800E-01,4.691211E+01,2.750000E+01,Active Shallow Crust,1.288943E+02,8.998090E+01,0.000000E+00 +53376,fr,2,4.350000E+00,-7.282800E-01,4.691211E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +53382,fr,1,4.350000E+00,-7.282800E-01,4.691211E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +53395,fr,1,4.450000E+00,-7.282800E-01,4.691211E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,-9.000000E+01 +53401,fr,1,4.550000E+00,-7.282800E-01,4.691211E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +53422,fr,1,4.650000E+00,-7.282800E-01,4.691211E+01,1.500000E+01,Active Shallow Crust,1.288910E+02,8.998700E+01,0.000000E+00 +53533,fr,1,5.650000E+00,-7.282800E-01,4.691211E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +53760,fr,2,3.550000E+00,2.371250E+00,4.397300E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +53764,fr,1,3.550000E+00,2.371250E+00,4.397300E+01,1.500000E+01,Active Shallow Crust,2.400123E+02,5.799785E+01,0.000000E+00 +53772,fr,1,3.650000E+00,2.371250E+00,4.397300E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +53796,fr,1,3.850000E+00,2.371250E+00,4.397300E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +53820,fr,1,4.050000E+00,2.371250E+00,4.397300E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +53823,fr,1,4.050000E+00,2.371250E+00,4.397300E+01,5.000000E+00,Active Shallow Crust,2.400053E+02,5.800597E+01,0.000000E+00 +53857,fr,1,4.350000E+00,2.371250E+00,4.397300E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +54240,fr,1,3.550000E+00,-3.655900E+00,4.331734E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998900E+01,0.000000E+00 +54252,fr,1,3.650000E+00,-3.655900E+00,4.331734E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +54253,fr,1,3.650000E+00,-3.655900E+00,4.331734E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +54254,fr,1,3.650000E+00,-3.655900E+00,4.331734E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +54265,fr,1,3.750000E+00,-3.655900E+00,4.331734E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +54266,fr,1,3.750000E+00,-3.655900E+00,4.331734E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +54276,fr,1,3.850000E+00,-3.655900E+00,4.331734E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +54284,fr,1,3.850000E+00,-3.655900E+00,4.331734E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,-9.000000E+01 +54307,fr,1,4.050000E+00,-3.655900E+00,4.331734E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,-9.000000E+01 +54311,fr,1,4.050000E+00,-3.655900E+00,4.331734E+01,2.750000E+01,Active Shallow Crust,1.288905E+02,8.999381E+01,0.000000E+00 +54312,fr,1,4.150000E+00,-3.655900E+00,4.331734E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +54336,fr,1,4.350000E+00,-3.655900E+00,4.331734E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +54343,fr,1,4.350000E+00,-3.655900E+00,4.331734E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +54344,fr,1,4.350000E+00,-3.655900E+00,4.331734E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +54441,fr,1,5.150000E+00,-3.655900E+00,4.331734E+01,5.000000E+00,Active Shallow Crust,1.288851E+02,8.999117E+01,0.000000E+00 +54502,fr,1,5.650000E+00,-3.655900E+00,4.331734E+01,1.500000E+01,Active Shallow Crust,1.288779E+02,8.999039E+01,0.000000E+00 +54720,fr,2,3.550000E+00,-6.093700E-01,5.051560E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +54723,fr,2,3.550000E+00,-6.093700E-01,5.051560E+01,5.000000E+00,Active Shallow Crust,2.400126E+02,5.799825E+01,0.000000E+00 +54735,fr,1,3.650000E+00,-6.093700E-01,5.051560E+01,5.000000E+00,Active Shallow Crust,2.400017E+02,5.801298E+01,0.000000E+00 +54739,fr,1,3.650000E+00,-6.093700E-01,5.051560E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +54830,fr,1,4.450000E+00,-6.093700E-01,5.051560E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +55200,fr,2,3.550000E+00,6.856910E+00,4.911763E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998680E+01,0.000000E+00 +55210,fr,1,3.550000E+00,6.856910E+00,4.911763E+01,1.500000E+01,Active Shallow Crust,1.288956E+02,8.999340E+01,0.000000E+00 +55224,fr,1,3.750000E+00,6.856910E+00,4.911763E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +55680,fr,2,3.550000E+00,8.217380E+00,4.593461E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998598E+01,0.000000E+00 +55704,fr,1,3.750000E+00,8.217380E+00,4.593461E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998886E+01,0.000000E+00 +55813,fr,1,4.650000E+00,8.217380E+00,4.593461E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998814E+01,0.000000E+00 +55884,fr,1,5.250000E+00,8.217380E+00,4.593461E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +56640,fr,1,3.550000E+00,-5.868700E-01,4.906401E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +56649,fr,1,3.550000E+00,-5.868700E-01,4.906401E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999380E+01,0.000000E+00 +56652,fr,1,3.650000E+00,-5.868700E-01,4.906401E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +56653,fr,1,3.650000E+00,-5.868700E-01,4.906401E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +56654,fr,1,3.650000E+00,-5.868700E-01,4.906401E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +56667,fr,1,3.750000E+00,-5.868700E-01,4.906401E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.801760E+01,0.000000E+00 +56676,fr,1,3.850000E+00,-5.868700E-01,4.906401E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +56679,fr,1,3.850000E+00,-5.868700E-01,4.906401E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799780E+01,0.000000E+00 +56691,fr,1,3.950000E+00,-5.868700E-01,4.906401E+01,5.000000E+00,Active Shallow Crust,2.400203E+02,5.800505E+01,0.000000E+00 +56692,fr,1,3.950000E+00,-5.868700E-01,4.906401E+01,1.500000E+01,Active Shallow Crust,2.400203E+02,5.800505E+01,0.000000E+00 +56701,fr,1,4.050000E+00,-5.868700E-01,4.906401E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +56736,fr,1,4.350000E+00,-5.868700E-01,4.906401E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +56760,fr,1,4.550000E+00,-5.868700E-01,4.906401E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +56772,fr,1,4.650000E+00,-5.868700E-01,4.906401E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +56773,fr,1,4.650000E+00,-5.868700E-01,4.906401E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +57126,fr,1,3.550000E+00,2.878730E+00,5.027079E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,-9.000000E+01 +57144,fr,1,3.750000E+00,2.878730E+00,5.027079E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +57157,fr,1,3.850000E+00,2.878730E+00,5.027079E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +57180,fr,1,4.050000E+00,2.878730E+00,5.027079E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998913E+01,0.000000E+00 +57218,fr,1,4.350000E+00,2.878730E+00,5.027079E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +57266,fr,1,4.750000E+00,2.878730E+00,5.027079E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +57647,fr,1,3.850000E+00,3.895290E+00,4.959880E+01,2.750000E+01,Active Shallow Crust,1.288953E+02,8.999306E+01,0.000000E+00 +57658,fr,1,3.950000E+00,3.895290E+00,4.959880E+01,1.500000E+01,Active Shallow Crust,1.288998E+02,8.999381E+01,0.000000E+00 +57660,fr,1,4.050000E+00,3.895290E+00,4.959880E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +58080,fr,2,3.550000E+00,3.019650E+00,4.949801E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +58081,fr,1,3.550000E+00,3.019650E+00,4.949801E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +58102,fr,1,3.650000E+00,3.019650E+00,4.949801E+01,1.500000E+01,Active Shallow Crust,1.288994E+02,8.996358E+01,0.000000E+00 +58104,fr,1,3.750000E+00,3.019650E+00,4.949801E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +58164,fr,1,4.250000E+00,3.019650E+00,4.949801E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +58209,fr,1,4.550000E+00,3.019650E+00,4.949801E+01,5.000000E+00,Active Shallow Crust,1.288930E+02,8.998581E+01,0.000000E+00 +58345,fr,1,5.750000E+00,3.019650E+00,4.949801E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +58560,fr,3,3.550000E+00,-5.067600E-01,4.312066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +58561,fr,3,3.550000E+00,-5.067600E-01,4.312066E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +58562,fr,1,3.550000E+00,-5.067600E-01,4.312066E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +58563,fr,2,3.550000E+00,-5.067600E-01,4.312066E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799824E+01,0.000000E+00 +58566,fr,1,3.550000E+00,-5.067600E-01,4.312066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,-9.000000E+01 +58567,fr,1,3.550000E+00,-5.067600E-01,4.312066E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,-9.000000E+01 +58569,fr,2,3.550000E+00,-5.067600E-01,4.312066E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999402E+01,0.000000E+00 +58572,fr,5,3.650000E+00,-5.067600E-01,4.312066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +58573,fr,5,3.650000E+00,-5.067600E-01,4.312066E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +58576,fr,1,3.650000E+00,-5.067600E-01,4.312066E+01,1.500000E+01,Active Shallow Crust,2.400007E+02,5.801269E+01,0.000000E+00 +58577,fr,1,3.650000E+00,-5.067600E-01,4.312066E+01,2.750000E+01,Active Shallow Crust,2.400007E+02,5.801260E+01,0.000000E+00 +58580,fr,2,3.650000E+00,-5.067600E-01,4.312066E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +58581,fr,1,3.650000E+00,-5.067600E-01,4.312066E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996353E+01,0.000000E+00 +58584,fr,8,3.750000E+00,-5.067600E-01,4.312066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +58585,fr,2,3.750000E+00,-5.067600E-01,4.312066E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +58586,fr,2,3.750000E+00,-5.067600E-01,4.312066E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +58587,fr,5,3.750000E+00,-5.067600E-01,4.312066E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.801749E+01,0.000000E+00 +58588,fr,2,3.750000E+00,-5.067600E-01,4.312066E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.801749E+01,0.000000E+00 +58590,fr,1,3.750000E+00,-5.067600E-01,4.312066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +58591,fr,1,3.750000E+00,-5.067600E-01,4.312066E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +58594,fr,1,3.750000E+00,-5.067600E-01,4.312066E+01,1.500000E+01,Active Shallow Crust,1.288969E+02,8.996736E+01,0.000000E+00 +58596,fr,4,3.850000E+00,-5.067600E-01,4.312066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +58597,fr,1,3.850000E+00,-5.067600E-01,4.312066E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +58600,fr,1,3.850000E+00,-5.067600E-01,4.312066E+01,1.500000E+01,Active Shallow Crust,2.400103E+02,5.799784E+01,0.000000E+00 +58604,fr,1,3.850000E+00,-5.067600E-01,4.312066E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,-9.000000E+01 +58605,fr,3,3.850000E+00,-5.067600E-01,4.312066E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999381E+01,0.000000E+00 +58608,fr,7,3.950000E+00,-5.067600E-01,4.312066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +58609,fr,1,3.950000E+00,-5.067600E-01,4.312066E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +58611,fr,1,3.950000E+00,-5.067600E-01,4.312066E+01,5.000000E+00,Active Shallow Crust,2.400192E+02,5.800491E+01,0.000000E+00 +58614,fr,1,3.950000E+00,-5.067600E-01,4.312066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +58615,fr,2,3.950000E+00,-5.067600E-01,4.312066E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +58617,fr,1,3.950000E+00,-5.067600E-01,4.312066E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.999390E+01,0.000000E+00 +58620,fr,3,4.050000E+00,-5.067600E-01,4.312066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +58622,fr,1,4.050000E+00,-5.067600E-01,4.312066E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +58623,fr,1,4.050000E+00,-5.067600E-01,4.312066E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.800572E+01,0.000000E+00 +58626,fr,1,4.050000E+00,-5.067600E-01,4.312066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +58627,fr,1,4.050000E+00,-5.067600E-01,4.312066E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +58628,fr,1,4.050000E+00,-5.067600E-01,4.312066E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +58629,fr,1,4.050000E+00,-5.067600E-01,4.312066E+01,5.000000E+00,Active Shallow Crust,1.288910E+02,8.999353E+01,0.000000E+00 +58632,fr,3,4.150000E+00,-5.067600E-01,4.312066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +58633,fr,1,4.150000E+00,-5.067600E-01,4.312066E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +58635,fr,2,4.150000E+00,-5.067600E-01,4.312066E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799721E+01,0.000000E+00 +58637,fr,1,4.150000E+00,-5.067600E-01,4.312066E+01,2.750000E+01,Active Shallow Crust,2.400078E+02,5.799718E+01,0.000000E+00 +58641,fr,1,4.150000E+00,-5.067600E-01,4.312066E+01,5.000000E+00,Active Shallow Crust,1.288981E+02,8.999355E+01,0.000000E+00 +58644,fr,3,4.250000E+00,-5.067600E-01,4.312066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +58645,fr,1,4.250000E+00,-5.067600E-01,4.312066E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +58647,fr,2,4.250000E+00,-5.067600E-01,4.312066E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.799398E+01,0.000000E+00 +58653,fr,1,4.250000E+00,-5.067600E-01,4.312066E+01,5.000000E+00,Active Shallow Crust,1.288949E+02,8.998096E+01,0.000000E+00 +58657,fr,1,4.350000E+00,-5.067600E-01,4.312066E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +58668,fr,1,4.450000E+00,-5.067600E-01,4.312066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +58671,fr,1,4.450000E+00,-5.067600E-01,4.312066E+01,5.000000E+00,Active Shallow Crust,2.400044E+02,5.799452E+01,0.000000E+00 +58680,fr,3,4.550000E+00,-5.067600E-01,4.312066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +58683,fr,1,4.550000E+00,-5.067600E-01,4.312066E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.799721E+01,0.000000E+00 +58692,fr,2,4.650000E+00,-5.067600E-01,4.312066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +58698,fr,1,4.650000E+00,-5.067600E-01,4.312066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +58716,fr,1,4.850000E+00,-5.067600E-01,4.312066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +58728,fr,1,4.950000E+00,-5.067600E-01,4.312066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +58740,fr,2,5.050000E+00,-5.067600E-01,4.312066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +58776,fr,1,5.350000E+00,-5.067600E-01,4.312066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +58788,fr,1,5.450000E+00,-5.067600E-01,4.312066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +58815,fr,1,5.650000E+00,-5.067600E-01,4.312066E+01,5.000000E+00,Active Shallow Crust,2.400309E+02,5.800132E+01,0.000000E+00 +58897,fr,1,6.350000E+00,-5.067600E-01,4.312066E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +59040,fr,1,3.550000E+00,-2.779450E+00,4.849796E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +59041,fr,2,3.550000E+00,-2.779450E+00,4.849796E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +59052,fr,2,3.650000E+00,-2.779450E+00,4.849796E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +59053,fr,1,3.650000E+00,-2.779450E+00,4.849796E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +59055,fr,1,3.650000E+00,-2.779450E+00,4.849796E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801318E+01,0.000000E+00 +59064,fr,3,3.750000E+00,-2.779450E+00,4.849796E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +59065,fr,1,3.750000E+00,-2.779450E+00,4.849796E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +59077,fr,1,3.850000E+00,-2.779450E+00,4.849796E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +59088,fr,1,3.950000E+00,-2.779450E+00,4.849796E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +59097,fr,1,3.950000E+00,-2.779450E+00,4.849796E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.999368E+01,0.000000E+00 +59139,fr,1,4.350000E+00,-2.779450E+00,4.849796E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.799580E+01,0.000000E+00 +59148,fr,1,4.450000E+00,-2.779450E+00,4.849796E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +59150,fr,1,4.450000E+00,-2.779450E+00,4.849796E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +59151,fr,1,4.450000E+00,-2.779450E+00,4.849796E+01,5.000000E+00,Active Shallow Crust,2.400058E+02,5.799474E+01,0.000000E+00 +59269,fr,1,5.450000E+00,-2.779450E+00,4.849796E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +59520,fr,2,3.550000E+00,-1.103810E+00,4.305879E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999079E+01,0.000000E+00 +59522,fr,1,3.550000E+00,-1.103810E+00,4.305879E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999079E+01,0.000000E+00 +59523,fr,1,3.550000E+00,-1.103810E+00,4.305879E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799798E+01,0.000000E+00 +59532,fr,2,3.650000E+00,-1.103810E+00,4.305879E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +59533,fr,1,3.650000E+00,-1.103810E+00,4.305879E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +59535,fr,2,3.650000E+00,-1.103810E+00,4.305879E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801279E+01,0.000000E+00 +59536,fr,2,3.650000E+00,-1.103810E+00,4.305879E+01,1.500000E+01,Active Shallow Crust,2.400008E+02,5.801279E+01,0.000000E+00 +59544,fr,5,3.750000E+00,-1.103810E+00,4.305879E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +59556,fr,2,3.850000E+00,-1.103810E+00,4.305879E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +59557,fr,3,3.850000E+00,-1.103810E+00,4.305879E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +59559,fr,1,3.850000E+00,-1.103810E+00,4.305879E+01,5.000000E+00,Active Shallow Crust,2.400103E+02,5.799783E+01,0.000000E+00 +59568,fr,2,3.950000E+00,-1.103810E+00,4.305879E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +59571,fr,1,3.950000E+00,-1.103810E+00,4.305879E+01,5.000000E+00,Active Shallow Crust,2.400194E+02,5.800493E+01,0.000000E+00 +59572,fr,1,3.950000E+00,-1.103810E+00,4.305879E+01,1.500000E+01,Active Shallow Crust,2.400194E+02,5.800493E+01,0.000000E+00 +59580,fr,2,4.050000E+00,-1.103810E+00,4.305879E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +59604,fr,1,4.250000E+00,-1.103810E+00,4.305879E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +59605,fr,1,4.250000E+00,-1.103810E+00,4.305879E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +59613,fr,1,4.250000E+00,-1.103810E+00,4.305879E+01,5.000000E+00,Active Shallow Crust,1.288949E+02,8.998096E+01,0.000000E+00 +59628,fr,2,4.450000E+00,-1.103810E+00,4.305879E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +59632,fr,1,4.450000E+00,-1.103810E+00,4.305879E+01,1.500000E+01,Active Shallow Crust,2.400045E+02,5.799448E+01,0.000000E+00 +59637,fr,1,4.450000E+00,-1.103810E+00,4.305879E+01,5.000000E+00,Active Shallow Crust,1.288929E+02,8.999379E+01,0.000000E+00 +59641,fr,1,4.550000E+00,-1.103810E+00,4.305879E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +59683,fr,1,4.850000E+00,-1.103810E+00,4.305879E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +59688,fr,1,4.950000E+00,-1.103810E+00,4.305879E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +59690,fr,1,4.950000E+00,-1.103810E+00,4.305879E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +59700,fr,1,5.050000E+00,-1.103810E+00,4.305879E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +59722,fr,1,5.150000E+00,-1.103810E+00,4.305879E+01,1.500000E+01,Active Shallow Crust,1.288853E+02,8.999104E+01,0.000000E+00 +60010,fr,1,3.550000E+00,5.604500E+00,4.430979E+01,1.500000E+01,Active Shallow Crust,1.288956E+02,8.999278E+01,0.000000E+00 +60012,fr,1,3.650000E+00,5.604500E+00,4.430979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998714E+01,0.000000E+00 +60018,fr,1,3.650000E+00,5.604500E+00,4.430979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998699E+01,-9.000000E+01 +60024,fr,1,3.750000E+00,5.604500E+00,4.430979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998853E+01,0.000000E+00 +60028,fr,1,3.750000E+00,5.604500E+00,4.430979E+01,1.500000E+01,Active Shallow Crust,2.400072E+02,5.801775E+01,0.000000E+00 +60037,fr,1,3.850000E+00,5.604500E+00,4.430979E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +60048,fr,2,3.950000E+00,5.604500E+00,4.430979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999089E+01,0.000000E+00 +60060,fr,1,4.050000E+00,5.604500E+00,4.430979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999188E+01,0.000000E+00 +60061,fr,1,4.050000E+00,5.604500E+00,4.430979E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999188E+01,0.000000E+00 +60072,fr,1,4.150000E+00,5.604500E+00,4.430979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998915E+01,0.000000E+00 +60084,fr,1,4.250000E+00,5.604500E+00,4.430979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +60093,fr,1,4.250000E+00,5.604500E+00,4.430979E+01,5.000000E+00,Active Shallow Crust,1.288945E+02,8.998087E+01,0.000000E+00 +60159,fr,1,4.850000E+00,5.604500E+00,4.430979E+01,5.000000E+00,Active Shallow Crust,2.400163E+02,5.800228E+01,0.000000E+00 +60256,fr,1,5.650000E+00,5.604500E+00,4.430979E+01,1.500000E+01,Active Shallow Crust,2.400319E+02,5.800145E+01,0.000000E+00 +60504,fr,1,3.750000E+00,2.765360E+00,4.740973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +60978,fr,1,3.650000E+00,-4.598430E+00,4.777979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998778E+01,-9.000000E+01 +60982,fr,1,3.650000E+00,-4.598430E+00,4.777979E+01,1.500000E+01,Active Shallow Crust,1.289010E+02,8.996355E+01,0.000000E+00 +61005,fr,1,3.850000E+00,-4.598430E+00,4.777979E+01,5.000000E+00,Active Shallow Crust,1.288955E+02,8.999520E+01,0.000000E+00 +61012,fr,1,3.950000E+00,-4.598430E+00,4.777979E+01,1.500000E+01,Active Shallow Crust,2.400203E+02,5.800518E+01,0.000000E+00 +61020,fr,1,4.050000E+00,-4.598430E+00,4.777979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998857E+01,0.000000E+00 +61041,fr,1,4.150000E+00,-4.598430E+00,4.777979E+01,5.000000E+00,Active Shallow Crust,1.288979E+02,8.999321E+01,0.000000E+00 +61093,fr,1,4.650000E+00,-4.598430E+00,4.777979E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +61921,fr,1,3.550000E+00,2.633240E+00,4.480328E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +61922,fr,1,3.550000E+00,2.633240E+00,4.480328E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +61926,fr,1,3.550000E+00,2.633240E+00,4.480328E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,-9.000000E+01 +61932,fr,3,3.650000E+00,2.633240E+00,4.480328E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +61933,fr,1,3.650000E+00,2.633240E+00,4.480328E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +61968,fr,1,3.950000E+00,2.633240E+00,4.480328E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +61974,fr,1,3.950000E+00,2.633240E+00,4.480328E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999087E+01,-9.000000E+01 +61992,fr,1,4.150000E+00,2.633240E+00,4.480328E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +62002,fr,1,4.150000E+00,2.633240E+00,4.480328E+01,1.500000E+01,Active Shallow Crust,1.288976E+02,8.999373E+01,0.000000E+00 +62013,fr,1,4.250000E+00,2.633240E+00,4.480328E+01,5.000000E+00,Active Shallow Crust,1.288946E+02,8.998088E+01,0.000000E+00 +62016,fr,1,4.350000E+00,2.633240E+00,4.480328E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +62076,fr,1,4.850000E+00,2.633240E+00,4.480328E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +62160,fr,1,5.550000E+00,2.633240E+00,4.480328E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +62408,fr,1,3.550000E+00,2.701180E+00,4.389342E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998898E+01,-9.000000E+01 +62424,fr,1,3.750000E+00,2.701180E+00,4.389342E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999134E+01,0.000000E+00 +62426,fr,1,3.750000E+00,2.701180E+00,4.389342E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999134E+01,0.000000E+00 +62484,fr,1,4.250000E+00,2.701180E+00,4.389342E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +62919,fr,1,3.850000E+00,4.640320E+00,5.227430E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799755E+01,0.000000E+00 +62940,fr,1,4.050000E+00,4.640320E+00,5.227430E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +63360,fr,1,3.550000E+00,8.458960E+00,4.841197E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998661E+01,0.000000E+00 +63369,fr,1,3.550000E+00,8.458960E+00,4.841197E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.999331E+01,0.000000E+00 +63372,fr,3,3.650000E+00,8.458960E+00,4.841197E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998807E+01,0.000000E+00 +63378,fr,1,3.650000E+00,8.458960E+00,4.841197E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998793E+01,-9.000000E+01 +63383,fr,1,3.650000E+00,8.458960E+00,4.841197E+01,2.750000E+01,Active Shallow Crust,1.289003E+02,8.996356E+01,0.000000E+00 +63384,fr,1,3.750000E+00,8.458960E+00,4.841197E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +63385,fr,1,3.750000E+00,8.458960E+00,4.841197E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +63396,fr,1,3.850000E+00,8.458960E+00,4.841197E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +63408,fr,3,3.950000E+00,8.458960E+00,4.841197E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999155E+01,0.000000E+00 +63421,fr,1,4.050000E+00,8.458960E+00,4.841197E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999247E+01,0.000000E+00 +63427,fr,1,4.050000E+00,8.458960E+00,4.841197E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999239E+01,-9.000000E+01 +63435,fr,1,4.150000E+00,8.458960E+00,4.841197E+01,5.000000E+00,Active Shallow Crust,2.400096E+02,5.799756E+01,0.000000E+00 +63444,fr,1,4.250000E+00,8.458960E+00,4.841197E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998804E+01,0.000000E+00 +63459,fr,1,4.350000E+00,8.458960E+00,4.841197E+01,5.000000E+00,Active Shallow Crust,2.400098E+02,5.799562E+01,0.000000E+00 +63480,fr,1,4.550000E+00,8.458960E+00,4.841197E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999153E+01,0.000000E+00 +63481,fr,1,4.550000E+00,8.458960E+00,4.841197E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999153E+01,0.000000E+00 +63516,fr,1,4.850000E+00,8.458960E+00,4.841197E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +63576,fr,1,5.350000E+00,8.458960E+00,4.841197E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +63877,fr,1,3.850000E+00,-2.781750E+00,5.050660E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999092E+01,0.000000E+00 +63882,fr,1,3.850000E+00,-2.781750E+00,5.050660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,-9.000000E+01 +63921,fr,1,4.150000E+00,-2.781750E+00,5.050660E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999358E+01,0.000000E+00 +64465,fr,1,4.750000E+00,5.059680E+00,4.951440E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +64813,fr,1,3.650000E+00,-3.610460E+00,5.017495E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999136E+01,0.000000E+00 +64887,fr,1,4.250000E+00,-3.610460E+00,5.017495E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799432E+01,0.000000E+00 +65280,fr,1,3.550000E+00,-2.336590E+00,4.934037E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +65283,fr,2,3.550000E+00,-2.336590E+00,4.934037E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799833E+01,0.000000E+00 +65284,fr,1,3.550000E+00,-2.336590E+00,4.934037E+01,1.500000E+01,Active Shallow Crust,2.400122E+02,5.799833E+01,0.000000E+00 +65300,fr,1,3.650000E+00,-2.336590E+00,4.934037E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999111E+01,-9.000000E+01 +65304,fr,1,3.750000E+00,-2.336590E+00,4.934037E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +65310,fr,1,3.750000E+00,-2.336590E+00,4.934037E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,-9.000000E+01 +65313,fr,2,3.750000E+00,-2.336590E+00,4.934037E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.996731E+01,0.000000E+00 +65316,fr,1,3.850000E+00,-2.336590E+00,4.934037E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +65331,fr,1,3.950000E+00,-2.336590E+00,4.934037E+01,5.000000E+00,Active Shallow Crust,2.400202E+02,5.800521E+01,0.000000E+00 +65340,fr,1,4.050000E+00,-2.336590E+00,4.934037E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +65348,fr,1,4.050000E+00,-2.336590E+00,4.934037E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,-9.000000E+01 +65358,fr,1,4.150000E+00,-2.336590E+00,4.934037E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +65604,fr,1,6.250000E+00,-2.336586E+00,4.934037E+01,6.744814E+00,Active Shallow Crust,3.599999E+02,8.999001E+01,0.000000E+00 +66253,fr,1,3.650000E+00,-5.105390E+00,4.758752E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998788E+01,0.000000E+00 +66338,fr,1,4.350000E+00,-5.105390E+00,4.758752E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +66720,fr,9,3.550000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999319E+01,0.000000E+00 +66721,fr,3,3.550000E+00,7.438600E+00,4.753349E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999319E+01,0.000000E+00 +66722,fr,3,3.550000E+00,7.438600E+00,4.753349E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999319E+01,0.000000E+00 +66723,fr,3,3.550000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799905E+01,0.000000E+00 +66724,fr,2,3.550000E+00,7.438600E+00,4.753349E+01,1.500000E+01,Active Shallow Crust,2.400109E+02,5.799905E+01,0.000000E+00 +66726,fr,2,3.550000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999311E+01,-9.000000E+01 +66728,fr,1,3.550000E+00,7.438600E+00,4.753349E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999311E+01,-9.000000E+01 +66729,fr,1,3.550000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.999319E+01,0.000000E+00 +66731,fr,1,3.550000E+00,7.438600E+00,4.753349E+01,2.750000E+01,Active Shallow Crust,1.288972E+02,8.999319E+01,0.000000E+00 +66732,fr,13,3.650000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998786E+01,0.000000E+00 +66733,fr,2,3.650000E+00,7.438600E+00,4.753349E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998786E+01,0.000000E+00 +66734,fr,2,3.650000E+00,7.438600E+00,4.753349E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998786E+01,0.000000E+00 +66735,fr,4,3.650000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,2.400021E+02,5.801256E+01,0.000000E+00 +66738,fr,2,3.650000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998772E+01,-9.000000E+01 +66741,fr,3,3.650000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.996355E+01,0.000000E+00 +66742,fr,3,3.650000E+00,7.438600E+00,4.753349E+01,1.500000E+01,Active Shallow Crust,1.289001E+02,8.996355E+01,0.000000E+00 +66744,fr,5,3.750000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +66745,fr,4,3.750000E+00,7.438600E+00,4.753349E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +66746,fr,1,3.750000E+00,7.438600E+00,4.753349E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +66747,fr,2,3.750000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.801786E+01,0.000000E+00 +66750,fr,1,3.750000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998906E+01,-9.000000E+01 +66751,fr,1,3.750000E+00,7.438600E+00,4.753349E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998906E+01,-9.000000E+01 +66752,fr,1,3.750000E+00,7.438600E+00,4.753349E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998906E+01,-9.000000E+01 +66753,fr,1,3.750000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.996751E+01,0.000000E+00 +66756,fr,7,3.850000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +66757,fr,4,3.850000E+00,7.438600E+00,4.753349E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +66758,fr,2,3.850000E+00,7.438600E+00,4.753349E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +66763,fr,1,3.850000E+00,7.438600E+00,4.753349E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,-9.000000E+01 +66765,fr,1,3.850000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,1.288948E+02,8.999518E+01,0.000000E+00 +66768,fr,7,3.950000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999141E+01,0.000000E+00 +66770,fr,1,3.950000E+00,7.438600E+00,4.753349E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999141E+01,0.000000E+00 +66771,fr,1,3.950000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,2.400205E+02,5.800480E+01,0.000000E+00 +66774,fr,2,3.950000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999131E+01,-9.000000E+01 +66778,fr,1,3.950000E+00,7.438600E+00,4.753349E+01,1.500000E+01,Active Shallow Crust,1.288993E+02,8.999356E+01,0.000000E+00 +66780,fr,3,4.050000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998851E+01,0.000000E+00 +66783,fr,3,4.050000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,2.400068E+02,5.800513E+01,0.000000E+00 +66784,fr,1,4.050000E+00,7.438600E+00,4.753349E+01,1.500000E+01,Active Shallow Crust,2.400068E+02,5.800510E+01,0.000000E+00 +66786,fr,1,4.050000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998838E+01,-9.000000E+01 +66789,fr,1,4.050000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,1.288910E+02,8.999234E+01,0.000000E+00 +66792,fr,1,4.150000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +66793,fr,3,4.150000E+00,7.438600E+00,4.753349E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +66795,fr,1,4.150000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.799707E+01,0.000000E+00 +66802,fr,1,4.150000E+00,7.438600E+00,4.753349E+01,1.500000E+01,Active Shallow Crust,1.288984E+02,8.999318E+01,0.000000E+00 +66804,fr,4,4.250000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +66805,fr,5,4.250000E+00,7.438600E+00,4.753349E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +66810,fr,1,4.250000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999077E+01,-9.000000E+01 +66816,fr,5,4.350000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +66817,fr,2,4.350000E+00,7.438600E+00,4.753349E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +66828,fr,2,4.450000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +66829,fr,2,4.450000E+00,7.438600E+00,4.753349E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +66838,fr,1,4.450000E+00,7.438600E+00,4.753349E+01,1.500000E+01,Active Shallow Crust,1.288915E+02,8.999397E+01,0.000000E+00 +66840,fr,1,4.550000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +66842,fr,1,4.550000E+00,7.438600E+00,4.753349E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +66849,fr,1,4.550000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,1.288938E+02,8.998570E+01,0.000000E+00 +66855,fr,1,4.650000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799437E+01,0.000000E+00 +66864,fr,3,4.750000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +66865,fr,1,4.750000E+00,7.438600E+00,4.753349E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +66876,fr,2,4.850000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +66882,fr,1,4.850000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,-9.000000E+01 +66888,fr,1,4.950000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +66892,fr,1,4.950000E+00,7.438600E+00,4.753349E+01,1.500000E+01,Active Shallow Crust,2.400126E+02,5.800436E+01,0.000000E+00 +66898,fr,2,4.950000E+00,7.438600E+00,4.753349E+01,1.500000E+01,Active Shallow Crust,1.288894E+02,8.998989E+01,0.000000E+00 +66900,fr,1,5.050000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +66901,fr,1,5.050000E+00,7.438600E+00,4.753349E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +66908,fr,1,5.050000E+00,7.438600E+00,4.753349E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,-9.000000E+01 +66911,fr,1,5.050000E+00,7.438600E+00,4.753349E+01,2.750000E+01,Active Shallow Crust,1.288853E+02,8.999021E+01,0.000000E+00 +66924,fr,1,5.250000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +66972,fr,1,5.650000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +66987,fr,1,5.750000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,2.400397E+02,5.800210E+01,0.000000E+00 +67008,fr,1,5.950000E+00,7.438600E+00,4.753349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +67026,fr,1,6.050000E+00,7.438601E+00,4.753349E+01,5.296268E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,-9.000000E+01 +67060,fr,1,6.350000E+00,7.438600E+00,4.753349E+01,1.500000E+01,Active Shallow Crust,2.400836E+02,5.800019E+01,0.000000E+00 +67200,fr,1,3.550000E+00,-1.012980E+00,4.675429E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +67201,fr,1,3.550000E+00,-1.012980E+00,4.675429E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +67202,fr,1,3.550000E+00,-1.012980E+00,4.675429E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +67209,fr,1,3.550000E+00,-1.012980E+00,4.675429E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999396E+01,0.000000E+00 +67212,fr,3,3.650000E+00,-1.012980E+00,4.675429E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +67213,fr,1,3.650000E+00,-1.012980E+00,4.675429E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +67214,fr,1,3.650000E+00,-1.012980E+00,4.675429E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +67215,fr,1,3.650000E+00,-1.012980E+00,4.675429E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801280E+01,0.000000E+00 +67224,fr,1,3.750000E+00,-1.012980E+00,4.675429E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +67225,fr,1,3.750000E+00,-1.012980E+00,4.675429E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +67236,fr,1,3.850000E+00,-1.012980E+00,4.675429E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +67239,fr,1,3.850000E+00,-1.012980E+00,4.675429E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799788E+01,0.000000E+00 +67260,fr,1,4.050000E+00,-1.012980E+00,4.675429E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +67275,fr,1,4.150000E+00,-1.012980E+00,4.675429E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.799726E+01,0.000000E+00 +67285,fr,2,4.250000E+00,-1.012980E+00,4.675429E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +67287,fr,1,4.250000E+00,-1.012980E+00,4.675429E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799404E+01,0.000000E+00 +67288,fr,2,4.250000E+00,-1.012980E+00,4.675429E+01,1.500000E+01,Active Shallow Crust,2.400076E+02,5.799404E+01,0.000000E+00 +67316,fr,1,4.450000E+00,-1.012980E+00,4.675429E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,-9.000000E+01 +67332,fr,1,4.650000E+00,-1.012980E+00,4.675429E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +67356,fr,1,4.850000E+00,-1.012980E+00,4.675429E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +67383,fr,1,5.050000E+00,-1.012980E+00,4.675429E+01,5.000000E+00,Active Shallow Crust,2.400222E+02,5.799757E+01,0.000000E+00 +67392,fr,1,5.150000E+00,-1.012980E+00,4.675429E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +67434,fr,1,5.450000E+00,-1.012980E+00,4.675429E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +67437,fr,1,5.450000E+00,-1.012980E+00,4.675429E+01,5.000000E+00,Active Shallow Crust,1.288786E+02,8.998898E+01,0.000000E+00 +67444,fr,1,5.550000E+00,-1.012980E+00,4.675429E+01,1.500000E+01,Active Shallow Crust,2.400329E+02,5.799957E+01,0.000000E+00 +67464,fr,1,5.750000E+00,-1.012980E+00,4.675429E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +67476,fr,1,5.850000E+00,-1.012980E+00,4.675429E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +67507,fr,1,6.050000E+00,-1.012980E+00,4.675429E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +67704,fr,2,3.750000E+00,2.412890E+00,4.645634E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998896E+01,0.000000E+00 +67722,fr,1,3.850000E+00,2.412890E+00,4.645634E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,-9.000000E+01 +67753,fr,1,4.150000E+00,2.412890E+00,4.645634E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +67838,fr,1,4.850000E+00,2.412890E+00,4.645634E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +67861,fr,1,5.050000E+00,2.412890E+00,4.645634E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +68196,fr,1,3.850000E+00,4.235730E+00,4.292706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +68220,fr,1,4.050000E+00,4.235730E+00,4.292706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999170E+01,0.000000E+00 +68226,fr,1,4.050000E+00,4.235730E+00,4.292706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999160E+01,-9.000000E+01 +68256,fr,1,4.350000E+00,4.235730E+00,4.292706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999118E+01,0.000000E+00 +68640,fr,1,3.550000E+00,8.391520E+00,4.891208E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998675E+01,0.000000E+00 +68641,fr,1,3.550000E+00,8.391520E+00,4.891208E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998675E+01,0.000000E+00 +68644,fr,1,3.550000E+00,8.391520E+00,4.891208E+01,1.500000E+01,Active Shallow Crust,2.400112E+02,5.799728E+01,0.000000E+00 +68645,fr,1,3.550000E+00,8.391520E+00,4.891208E+01,2.750000E+01,Active Shallow Crust,2.400112E+02,5.799718E+01,0.000000E+00 +68646,fr,1,3.550000E+00,8.391520E+00,4.891208E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998660E+01,-9.000000E+01 +68649,fr,1,3.550000E+00,8.391520E+00,4.891208E+01,5.000000E+00,Active Shallow Crust,1.288942E+02,8.999337E+01,0.000000E+00 +68652,fr,2,3.650000E+00,8.391520E+00,4.891208E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998819E+01,0.000000E+00 +68653,fr,2,3.650000E+00,8.391520E+00,4.891208E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998819E+01,0.000000E+00 +68665,fr,1,3.750000E+00,8.391520E+00,4.891208E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +68676,fr,2,3.850000E+00,8.391520E+00,4.891208E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +68688,fr,1,3.950000E+00,8.391520E+00,4.891208E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999164E+01,0.000000E+00 +68691,fr,1,3.950000E+00,8.391520E+00,4.891208E+01,5.000000E+00,Active Shallow Crust,2.400210E+02,5.800389E+01,0.000000E+00 +68703,fr,1,4.050000E+00,8.391520E+00,4.891208E+01,5.000000E+00,Active Shallow Crust,2.400055E+02,5.800635E+01,0.000000E+00 +68712,fr,2,4.150000E+00,8.391520E+00,4.891208E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998671E+01,0.000000E+00 +68721,fr,1,4.150000E+00,8.391520E+00,4.891208E+01,5.000000E+00,Active Shallow Crust,1.288977E+02,8.999335E+01,0.000000E+00 +68724,fr,1,4.250000E+00,8.391520E+00,4.891208E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998816E+01,0.000000E+00 +68725,fr,1,4.250000E+00,8.391520E+00,4.891208E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998816E+01,0.000000E+00 +68734,fr,1,4.250000E+00,8.391520E+00,4.891208E+01,1.500000E+01,Active Shallow Crust,1.288945E+02,8.998103E+01,0.000000E+00 +68736,fr,2,4.350000E+00,8.391520E+00,4.891208E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +68743,fr,1,4.350000E+00,8.391520E+00,4.891208E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,-9.000000E+01 +68760,fr,1,4.550000E+00,8.391520E+00,4.891208E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999162E+01,0.000000E+00 +68772,fr,1,4.650000E+00,8.391520E+00,4.891208E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998879E+01,0.000000E+00 +68773,fr,1,4.650000E+00,8.391520E+00,4.891208E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998879E+01,0.000000E+00 +69601,fr,1,3.550000E+00,3.210000E+00,5.143465E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +69608,fr,1,3.550000E+00,3.210000E+00,5.143465E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,-9.000000E+01 +69805,fr,1,5.250000E+00,3.210000E+00,5.143465E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +70561,fr,1,3.550000E+00,4.850900E-01,5.161106E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +70587,fr,1,3.750000E+00,4.850900E-01,5.161106E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.801772E+01,0.000000E+00 +70609,fr,2,3.950000E+00,4.850900E-01,5.161106E+01,1.500000E+01,Active Shallow Crust,3.599999E+02,8.999012E+01,0.000000E+00 +70611,fr,1,3.950000E+00,4.850900E-01,5.161106E+01,5.000000E+00,Active Shallow Crust,2.400206E+02,5.800513E+01,0.000000E+00 +71521,fr,1,3.550000E+00,5.428400E+00,4.268726E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999258E+01,0.000000E+00 +71532,fr,1,3.650000E+00,5.428400E+00,4.268726E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998679E+01,0.000000E+00 +71565,fr,1,3.850000E+00,5.428400E+00,4.268726E+01,5.000000E+00,Active Shallow Crust,1.288953E+02,8.999475E+01,0.000000E+00 +71568,fr,1,3.950000E+00,5.428400E+00,4.268726E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +71592,fr,1,4.150000E+00,5.428400E+00,4.268726E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +72000,fr,1,3.550000E+00,-1.476700E+00,4.820002E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +72013,fr,1,3.650000E+00,-1.476700E+00,4.820002E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +72021,fr,1,3.650000E+00,-1.476700E+00,4.820002E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.996355E+01,0.000000E+00 +72025,fr,1,3.750000E+00,-1.476700E+00,4.820002E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +72038,fr,1,3.850000E+00,-1.476700E+00,4.820002E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +72040,fr,1,3.850000E+00,-1.476700E+00,4.820002E+01,1.500000E+01,Active Shallow Crust,2.400112E+02,5.799783E+01,0.000000E+00 +72060,fr,1,4.050000E+00,-1.476700E+00,4.820002E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +72090,fr,1,4.250000E+00,-1.476700E+00,4.820002E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,-9.000000E+01 +72096,fr,1,4.350000E+00,-1.476700E+00,4.820002E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +72108,fr,1,4.450000E+00,-1.476700E+00,4.820002E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +72117,fr,1,4.450000E+00,-1.476700E+00,4.820002E+01,5.000000E+00,Active Shallow Crust,1.288918E+02,8.999374E+01,0.000000E+00 +72144,fr,1,4.750000E+00,-1.476700E+00,4.820002E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +72220,fr,1,5.350000E+00,-1.476700E+00,4.820002E+01,1.500000E+01,Active Shallow Crust,2.400263E+02,5.799810E+01,0.000000E+00 +72498,fr,1,3.650000E+00,-6.522680E+00,4.907596E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998809E+01,-9.000000E+01 +73441,fr,1,3.550000E+00,9.570230E+00,4.877700E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998671E+01,0.000000E+00 +73452,fr,1,3.650000E+00,9.570230E+00,4.877700E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998815E+01,0.000000E+00 +73464,fr,1,3.750000E+00,9.570230E+00,4.877700E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +73466,fr,1,3.750000E+00,9.570230E+00,4.877700E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +73477,fr,1,3.850000E+00,9.570230E+00,4.877700E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +73502,fr,1,4.050000E+00,9.570230E+00,4.877700E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999252E+01,0.000000E+00 +73536,fr,1,4.350000E+00,9.570230E+00,4.877700E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +73549,fr,1,4.450000E+00,9.570230E+00,4.877700E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +73716,fr,1,5.850000E+00,9.570230E+00,4.877700E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +73920,fr,1,3.550000E+00,6.209720E+00,4.238240E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999255E+01,0.000000E+00 +73980,fr,1,4.050000E+00,6.209720E+00,4.238240E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999162E+01,0.000000E+00 +74028,fr,1,4.450000E+00,6.209720E+00,4.238240E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +74067,fr,1,4.750000E+00,6.209720E+00,4.238240E+01,5.000000E+00,Active Shallow Crust,2.400059E+02,5.800412E+01,0.000000E+00 +74401,fr,1,3.550000E+00,-4.705980E+00,4.886081E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998673E+01,0.000000E+00 +74424,fr,1,3.750000E+00,-4.705980E+00,4.886081E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +74436,fr,1,3.850000E+00,-4.705980E+00,4.886081E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999061E+01,0.000000E+00 +74449,fr,1,3.950000E+00,-4.705980E+00,4.886081E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999163E+01,0.000000E+00 +74463,fr,1,4.050000E+00,-4.705980E+00,4.886081E+01,5.000000E+00,Active Shallow Crust,2.400067E+02,5.800608E+01,0.000000E+00 +74520,fr,2,4.550000E+00,-4.705980E+00,4.886081E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +74581,fr,1,5.050000E+00,-4.705980E+00,4.886081E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +74880,fr,2,3.550000E+00,-1.076800E-01,4.842991E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +74893,fr,1,3.650000E+00,-1.076800E-01,4.842991E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +74896,fr,1,3.650000E+00,-1.076800E-01,4.842991E+01,1.500000E+01,Active Shallow Crust,2.400013E+02,5.801294E+01,0.000000E+00 +74898,fr,1,3.650000E+00,-1.076800E-01,4.842991E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +74916,fr,1,3.850000E+00,-1.076800E-01,4.842991E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +75045,fr,1,4.850000E+00,-1.076800E-01,4.842991E+01,5.000000E+00,Active Shallow Crust,1.288919E+02,8.998900E+01,0.000000E+00 +75046,fr,1,4.850000E+00,-1.076800E-01,4.842991E+01,1.500000E+01,Active Shallow Crust,1.288919E+02,8.998900E+01,0.000000E+00 +75053,fr,1,4.950000E+00,-1.076800E-01,4.842991E+01,2.750000E+01,Active Shallow Crust,2.400128E+02,5.800465E+01,0.000000E+00 +75360,fr,2,3.550000E+00,1.288100E+00,4.584931E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +75396,fr,1,3.850000E+00,1.288100E+00,4.584931E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +75411,fr,1,3.950000E+00,1.288100E+00,4.584931E+01,5.000000E+00,Active Shallow Crust,2.400196E+02,5.800499E+01,0.000000E+00 +75417,fr,1,3.950000E+00,1.288100E+00,4.584931E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.999390E+01,0.000000E+00 +75427,fr,1,4.050000E+00,1.288100E+00,4.584931E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +75433,fr,1,4.150000E+00,1.288100E+00,4.584931E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +75480,fr,1,4.550000E+00,1.288100E+00,4.584931E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +75625,fr,1,5.750000E+00,1.288100E+00,4.584931E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +75840,fr,2,3.550000E+00,1.119800E-01,4.697479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +75841,fr,1,3.550000E+00,1.119800E-01,4.697479E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +75843,fr,1,3.550000E+00,1.119800E-01,4.697479E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799818E+01,0.000000E+00 +75852,fr,2,3.650000E+00,1.119800E-01,4.697479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +75858,fr,1,3.650000E+00,1.119800E-01,4.697479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +75867,fr,1,3.750000E+00,1.119800E-01,4.697479E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.801759E+01,0.000000E+00 +75876,fr,2,3.850000E+00,1.119800E-01,4.697479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +75887,fr,1,3.850000E+00,1.119800E-01,4.697479E+01,2.750000E+01,Active Shallow Crust,1.288956E+02,8.999372E+01,0.000000E+00 +75888,fr,2,3.950000E+00,1.119800E-01,4.697479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +75892,fr,1,3.950000E+00,1.119800E-01,4.697479E+01,1.500000E+01,Active Shallow Crust,2.400199E+02,5.800497E+01,0.000000E+00 +75900,fr,1,4.050000E+00,1.119800E-01,4.697479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +75903,fr,1,4.050000E+00,1.119800E-01,4.697479E+01,5.000000E+00,Active Shallow Crust,2.400060E+02,5.800584E+01,0.000000E+00 +75924,fr,1,4.250000E+00,1.119800E-01,4.697479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +75925,fr,1,4.250000E+00,1.119800E-01,4.697479E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +75937,fr,1,4.350000E+00,1.119800E-01,4.697479E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +75945,fr,1,4.350000E+00,1.119800E-01,4.697479E+01,5.000000E+00,Active Shallow Crust,1.288977E+02,8.998277E+01,0.000000E+00 +75948,fr,1,4.450000E+00,1.119800E-01,4.697479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +75952,fr,1,4.450000E+00,1.119800E-01,4.697479E+01,1.500000E+01,Active Shallow Crust,2.400054E+02,5.799472E+01,0.000000E+00 +75972,fr,1,4.650000E+00,1.119800E-01,4.697479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +76327,fr,1,3.550000E+00,1.494810E+00,5.009371E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,-9.000000E+01 +76501,fr,1,5.050000E+00,1.494810E+00,5.009371E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +76896,fr,1,4.350000E+00,7.705520E+00,5.120207E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +77287,fr,1,3.550000E+00,-4.196800E-01,4.175523E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +77466,fr,1,5.050000E+00,-4.196800E-01,4.175523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +77485,fr,1,5.250000E+00,-4.196800E-01,4.175523E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +77773,fr,1,3.650000E+00,1.362900E+00,4.705647E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +77774,fr,1,3.650000E+00,1.362900E+00,4.705647E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +77796,fr,2,3.850000E+00,1.362900E+00,4.705647E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +77798,fr,1,3.850000E+00,1.362900E+00,4.705647E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +77821,fr,1,4.050000E+00,1.362900E+00,4.705647E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +77835,fr,1,4.150000E+00,1.362900E+00,4.705647E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.799731E+01,0.000000E+00 +77853,fr,1,4.250000E+00,1.362900E+00,4.705647E+01,5.000000E+00,Active Shallow Crust,1.288944E+02,8.998084E+01,0.000000E+00 +77868,fr,1,4.450000E+00,1.362900E+00,4.705647E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +77880,fr,1,4.550000E+00,1.362900E+00,4.705647E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +77931,fr,1,4.950000E+00,1.362900E+00,4.705647E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.800451E+01,0.000000E+00 +78252,fr,1,3.650000E+00,-3.941600E+00,4.784724E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999095E+01,0.000000E+00 +78254,fr,1,3.650000E+00,-3.941600E+00,4.784724E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999095E+01,0.000000E+00 +78255,fr,1,3.650000E+00,-3.941600E+00,4.784724E+01,5.000000E+00,Active Shallow Crust,2.400018E+02,5.801281E+01,0.000000E+00 +78269,fr,1,3.750000E+00,-3.941600E+00,4.784724E+01,2.750000E+01,Active Shallow Crust,2.400088E+02,5.801715E+01,0.000000E+00 +78285,fr,1,3.850000E+00,-3.941600E+00,4.784724E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999281E+01,0.000000E+00 +78291,fr,1,3.950000E+00,-3.941600E+00,4.784724E+01,5.000000E+00,Active Shallow Crust,2.400201E+02,5.800494E+01,0.000000E+00 +78308,fr,1,4.050000E+00,-3.941600E+00,4.784724E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,-9.000000E+01 +78320,fr,1,4.150000E+00,-3.941600E+00,4.784724E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998971E+01,-9.000000E+01 +78360,fr,1,4.550000E+00,-3.941600E+00,4.784724E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +78375,fr,1,4.650000E+00,-3.941600E+00,4.784724E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799437E+01,0.000000E+00 +78768,fr,1,3.950000E+00,-1.934740E+00,4.613032E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +78771,fr,1,3.950000E+00,-1.934740E+00,4.613032E+01,5.000000E+00,Active Shallow Crust,2.400199E+02,5.800487E+01,0.000000E+00 +78840,fr,1,4.550000E+00,-1.934740E+00,4.613032E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +78885,fr,1,4.850000E+00,-1.934740E+00,4.613032E+01,5.000000E+00,Active Shallow Crust,1.288927E+02,8.998901E+01,0.000000E+00 +79200,fr,1,3.550000E+00,-1.524310E+00,4.176758E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +79296,fr,1,4.350000E+00,-1.524310E+00,4.176758E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +79680,fr,1,3.550000E+00,3.028790E+00,4.719563E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +79756,fr,1,4.150000E+00,3.028790E+00,4.719563E+01,1.500000E+01,Active Shallow Crust,2.400087E+02,5.799759E+01,0.000000E+00 +79765,fr,1,4.250000E+00,3.028790E+00,4.719563E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +79773,fr,1,4.250000E+00,3.028790E+00,4.719563E+01,5.000000E+00,Active Shallow Crust,1.288941E+02,8.998097E+01,0.000000E+00 +79826,fr,1,4.750000E+00,3.028790E+00,4.719563E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +80160,fr,1,3.550000E+00,7.470780E+00,5.117568E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998736E+01,0.000000E+00 +80184,fr,1,3.750000E+00,7.470780E+00,5.117568E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +80197,fr,1,3.850000E+00,7.470780E+00,5.117568E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999105E+01,0.000000E+00 +80232,fr,1,4.150000E+00,7.470780E+00,5.117568E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +80280,fr,1,4.550000E+00,7.470780E+00,5.117568E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +80436,fr,1,5.850000E+00,7.470780E+00,5.117568E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +80656,fr,1,3.650000E+00,2.972120E+00,4.126449E+01,1.500000E+01,Active Shallow Crust,2.400012E+02,5.801272E+01,0.000000E+00 +80661,fr,1,3.650000E+00,2.972120E+00,4.126449E+01,5.000000E+00,Active Shallow Crust,1.289013E+02,8.996342E+01,0.000000E+00 +80664,fr,2,3.750000E+00,2.972120E+00,4.126449E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +80689,fr,1,3.950000E+00,2.972120E+00,4.126449E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +80704,fr,1,4.050000E+00,2.972120E+00,4.126449E+01,1.500000E+01,Active Shallow Crust,2.400053E+02,5.800567E+01,0.000000E+00 +80772,fr,1,4.650000E+00,2.972120E+00,4.126449E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +80784,fr,1,4.750000E+00,2.972120E+00,4.126449E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +81139,fr,1,3.650000E+00,-2.706210E+00,5.064487E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999136E+01,-9.000000E+01 +81195,fr,1,4.150000E+00,-2.706210E+00,5.064487E+01,5.000000E+00,Active Shallow Crust,2.400093E+02,5.799730E+01,0.000000E+00 +81279,fr,1,4.850000E+00,-2.706210E+00,5.064487E+01,5.000000E+00,Active Shallow Crust,2.400189E+02,5.800265E+01,0.000000E+00 +81600,fr,1,3.550000E+00,-2.634980E+00,4.715532E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +81617,fr,1,3.650000E+00,-2.634980E+00,4.715532E+01,2.750000E+01,Active Shallow Crust,2.400009E+02,5.801284E+01,0.000000E+00 +81624,fr,1,3.750000E+00,-2.634980E+00,4.715532E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +81660,fr,1,4.050000E+00,-2.634980E+00,4.715532E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +81661,fr,2,4.050000E+00,-2.634980E+00,4.715532E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +81672,fr,1,4.150000E+00,-2.634980E+00,4.715532E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +81684,fr,1,4.250000E+00,-2.634980E+00,4.715532E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998928E+01,0.000000E+00 +81738,fr,1,4.650000E+00,-2.634980E+00,4.715532E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,-9.000000E+01 +81744,fr,1,4.750000E+00,-2.634980E+00,4.715532E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +82560,fr,1,3.550000E+00,-1.846900E-01,4.829178E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +82565,fr,1,3.550000E+00,-1.846900E-01,4.829178E+01,2.750000E+01,Active Shallow Crust,2.400124E+02,5.799809E+01,0.000000E+00 +82569,fr,2,3.550000E+00,-1.846900E-01,4.829178E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999371E+01,0.000000E+00 +82572,fr,3,3.650000E+00,-1.846900E-01,4.829178E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +82579,fr,1,3.650000E+00,-1.846900E-01,4.829178E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +82584,fr,2,3.750000E+00,-1.846900E-01,4.829178E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +82585,fr,1,3.750000E+00,-1.846900E-01,4.829178E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +82629,fr,1,4.050000E+00,-1.846900E-01,4.829178E+01,5.000000E+00,Active Shallow Crust,1.288903E+02,8.999375E+01,0.000000E+00 +82656,fr,1,4.350000E+00,-1.846900E-01,4.829178E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +82668,fr,1,4.450000E+00,-1.846900E-01,4.829178E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +82694,fr,1,4.650000E+00,-1.846900E-01,4.829178E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +82717,fr,1,4.850000E+00,-1.846900E-01,4.829178E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +82765,fr,1,5.250000E+00,-1.846900E-01,4.829178E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +83040,fr,1,3.550000E+00,1.273700E+00,5.112400E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +83041,fr,1,3.550000E+00,1.273700E+00,5.112400E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +83052,fr,1,3.650000E+00,1.273700E+00,5.112400E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +83055,fr,1,3.650000E+00,1.273700E+00,5.112400E+01,5.000000E+00,Active Shallow Crust,2.400016E+02,5.801304E+01,0.000000E+00 +83064,fr,2,3.750000E+00,1.273700E+00,5.112400E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +83067,fr,1,3.750000E+00,1.273700E+00,5.112400E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.801770E+01,0.000000E+00 +83070,fr,1,3.750000E+00,1.273700E+00,5.112400E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,-9.000000E+01 +83076,fr,1,3.850000E+00,1.273700E+00,5.112400E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +83090,fr,1,3.950000E+00,1.273700E+00,5.112400E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +83097,fr,1,3.950000E+00,1.273700E+00,5.112400E+01,5.000000E+00,Active Shallow Crust,1.288997E+02,8.999401E+01,0.000000E+00 +83101,fr,1,4.050000E+00,1.273700E+00,5.112400E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +83106,fr,1,4.050000E+00,1.273700E+00,5.112400E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +83130,fr,1,4.250000E+00,1.273700E+00,5.112400E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +83245,fr,1,5.250000E+00,1.273700E+00,5.112400E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +83256,fr,1,5.350000E+00,1.273700E+00,5.112400E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +83316,fr,1,5.850000E+00,1.273700E+00,5.112400E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +83520,fr,1,3.550000E+00,-1.899250E+00,4.897231E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +83521,fr,1,3.550000E+00,-1.899250E+00,4.897231E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +83526,fr,1,3.550000E+00,-1.899250E+00,4.897231E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +83532,fr,3,3.650000E+00,-1.899250E+00,4.897231E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +83539,fr,2,3.650000E+00,-1.899250E+00,4.897231E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,-9.000000E+01 +83541,fr,1,3.650000E+00,-1.899250E+00,4.897231E+01,5.000000E+00,Active Shallow Crust,1.288999E+02,8.996357E+01,0.000000E+00 +83544,fr,1,3.750000E+00,-1.899250E+00,4.897231E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +83545,fr,1,3.750000E+00,-1.899250E+00,4.897231E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +83554,fr,1,3.750000E+00,-1.899250E+00,4.897231E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.996742E+01,0.000000E+00 +83556,fr,2,3.850000E+00,-1.899250E+00,4.897231E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +83557,fr,1,3.850000E+00,-1.899250E+00,4.897231E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +83558,fr,1,3.850000E+00,-1.899250E+00,4.897231E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +83559,fr,1,3.850000E+00,-1.899250E+00,4.897231E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799785E+01,0.000000E+00 +83562,fr,1,3.850000E+00,-1.899250E+00,4.897231E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,-9.000000E+01 +83568,fr,2,3.950000E+00,-1.899250E+00,4.897231E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +83569,fr,1,3.950000E+00,-1.899250E+00,4.897231E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +83580,fr,2,4.050000E+00,-1.899250E+00,4.897231E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +83586,fr,1,4.050000E+00,-1.899250E+00,4.897231E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +83625,fr,1,4.350000E+00,-1.899250E+00,4.897231E+01,5.000000E+00,Active Shallow Crust,1.288974E+02,8.998277E+01,0.000000E+00 +83640,fr,1,4.550000E+00,-1.899250E+00,4.897231E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +83642,fr,1,4.550000E+00,-1.899250E+00,4.897231E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +83654,fr,1,4.650000E+00,-1.899250E+00,4.897231E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +83664,fr,1,4.750000E+00,-1.899250E+00,4.897231E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +84000,fr,1,3.550000E+00,-4.553190E+00,4.874004E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998670E+01,0.000000E+00 +84012,fr,1,3.650000E+00,-4.553190E+00,4.874004E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998814E+01,0.000000E+00 +84015,fr,1,3.650000E+00,-4.553190E+00,4.874004E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801257E+01,0.000000E+00 +84019,fr,1,3.650000E+00,-4.553190E+00,4.874004E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998801E+01,-9.000000E+01 +84024,fr,1,3.750000E+00,-4.553190E+00,4.874004E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +84036,fr,1,3.850000E+00,-4.553190E+00,4.874004E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +84038,fr,1,3.850000E+00,-4.553190E+00,4.874004E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +84051,fr,1,3.950000E+00,-4.553190E+00,4.874004E+01,5.000000E+00,Active Shallow Crust,2.400203E+02,5.800488E+01,0.000000E+00 +84111,fr,1,4.450000E+00,-4.553190E+00,4.874004E+01,5.000000E+00,Active Shallow Crust,2.400060E+02,5.799452E+01,0.000000E+00 +84181,fr,1,5.050000E+00,-4.553190E+00,4.874004E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +84234,fr,1,5.450000E+00,-4.553190E+00,4.874004E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,-9.000000E+01 +84507,fr,1,3.750000E+00,-1.064670E+00,4.470973E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801772E+01,0.000000E+00 +84516,fr,1,3.850000E+00,-1.064670E+00,4.470973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +84960,fr,7,3.550000E+00,7.306590E+00,4.609502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999300E+01,0.000000E+00 +84961,fr,3,3.550000E+00,7.306590E+00,4.609502E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999300E+01,0.000000E+00 +84962,fr,1,3.550000E+00,7.306590E+00,4.609502E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999300E+01,0.000000E+00 +84963,fr,1,3.550000E+00,7.306590E+00,4.609502E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799800E+01,0.000000E+00 +84964,fr,1,3.550000E+00,7.306590E+00,4.609502E+01,1.500000E+01,Active Shallow Crust,2.400121E+02,5.799800E+01,0.000000E+00 +84966,fr,2,3.550000E+00,7.306590E+00,4.609502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999293E+01,-9.000000E+01 +84969,fr,1,3.550000E+00,7.306590E+00,4.609502E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999301E+01,0.000000E+00 +84972,fr,5,3.650000E+00,7.306590E+00,4.609502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998753E+01,0.000000E+00 +84973,fr,3,3.650000E+00,7.306590E+00,4.609502E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998753E+01,0.000000E+00 +84975,fr,2,3.650000E+00,7.306590E+00,4.609502E+01,5.000000E+00,Active Shallow Crust,2.400015E+02,5.801243E+01,0.000000E+00 +84978,fr,2,3.650000E+00,7.306590E+00,4.609502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998739E+01,-9.000000E+01 +84981,fr,1,3.650000E+00,7.306590E+00,4.609502E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.996352E+01,0.000000E+00 +84984,fr,4,3.750000E+00,7.306590E+00,4.609502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998889E+01,0.000000E+00 +84985,fr,1,3.750000E+00,7.306590E+00,4.609502E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998889E+01,0.000000E+00 +84990,fr,2,3.750000E+00,7.306590E+00,4.609502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998876E+01,-9.000000E+01 +84993,fr,1,3.750000E+00,7.306590E+00,4.609502E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.996748E+01,0.000000E+00 +84996,fr,2,3.850000E+00,7.306590E+00,4.609502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +85001,fr,1,3.850000E+00,7.306590E+00,4.609502E+01,2.750000E+01,Active Shallow Crust,2.400100E+02,5.799775E+01,0.000000E+00 +85002,fr,1,3.850000E+00,7.306590E+00,4.609502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +85006,fr,1,3.850000E+00,7.306590E+00,4.609502E+01,1.500000E+01,Active Shallow Crust,1.288958E+02,8.999505E+01,0.000000E+00 +85008,fr,3,3.950000E+00,7.306590E+00,4.609502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +85009,fr,1,3.950000E+00,7.306590E+00,4.609502E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +85011,fr,1,3.950000E+00,7.306590E+00,4.609502E+01,5.000000E+00,Active Shallow Crust,2.400201E+02,5.800425E+01,0.000000E+00 +85021,fr,2,4.050000E+00,7.306590E+00,4.609502E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998820E+01,0.000000E+00 +85023,fr,1,4.050000E+00,7.306590E+00,4.609502E+01,5.000000E+00,Active Shallow Crust,2.400058E+02,5.800566E+01,0.000000E+00 +85026,fr,1,4.050000E+00,7.306590E+00,4.609502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998807E+01,-9.000000E+01 +85029,fr,1,4.050000E+00,7.306590E+00,4.609502E+01,5.000000E+00,Active Shallow Crust,1.288901E+02,8.999410E+01,0.000000E+00 +85032,fr,1,4.150000E+00,7.306590E+00,4.609502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +85033,fr,1,4.150000E+00,7.306590E+00,4.609502E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +85034,fr,1,4.150000E+00,7.306590E+00,4.609502E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +85036,fr,1,4.150000E+00,7.306590E+00,4.609502E+01,1.500000E+01,Active Shallow Crust,2.400089E+02,5.799717E+01,0.000000E+00 +85038,fr,1,4.150000E+00,7.306590E+00,4.609502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,-9.000000E+01 +85041,fr,1,4.150000E+00,7.306590E+00,4.609502E+01,5.000000E+00,Active Shallow Crust,1.288987E+02,8.999299E+01,0.000000E+00 +85044,fr,1,4.250000E+00,7.306590E+00,4.609502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +85047,fr,1,4.250000E+00,7.306590E+00,4.609502E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.799386E+01,0.000000E+00 +85048,fr,1,4.250000E+00,7.306590E+00,4.609502E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.799386E+01,0.000000E+00 +85053,fr,1,4.250000E+00,7.306590E+00,4.609502E+01,5.000000E+00,Active Shallow Crust,1.288944E+02,8.998093E+01,0.000000E+00 +85054,fr,1,4.250000E+00,7.306590E+00,4.609502E+01,1.500000E+01,Active Shallow Crust,1.288944E+02,8.998093E+01,0.000000E+00 +85056,fr,1,4.350000E+00,7.306590E+00,4.609502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998886E+01,0.000000E+00 +85057,fr,1,4.350000E+00,7.306590E+00,4.609502E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998886E+01,0.000000E+00 +85059,fr,1,4.350000E+00,7.306590E+00,4.609502E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799624E+01,0.000000E+00 +85068,fr,1,4.450000E+00,7.306590E+00,4.609502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +85069,fr,1,4.450000E+00,7.306590E+00,4.609502E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +85080,fr,1,4.550000E+00,7.306590E+00,4.609502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +85081,fr,1,4.550000E+00,7.306590E+00,4.609502E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +85092,fr,1,4.650000E+00,7.306590E+00,4.609502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +85104,fr,1,4.750000E+00,7.306590E+00,4.609502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +85113,fr,2,4.750000E+00,7.306590E+00,4.609502E+01,5.000000E+00,Active Shallow Crust,1.288890E+02,8.998815E+01,0.000000E+00 +85128,fr,1,4.950000E+00,7.306590E+00,4.609502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +85129,fr,1,4.950000E+00,7.306590E+00,4.609502E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +85131,fr,1,4.950000E+00,7.306590E+00,4.609502E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.800465E+01,0.000000E+00 +85189,fr,1,5.450000E+00,7.306590E+00,4.609502E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +85290,fr,1,6.250000E+00,7.306594E+00,4.609502E+01,6.667607E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +85440,fr,1,3.550000E+00,1.084190E+00,4.583527E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +85441,fr,1,3.550000E+00,1.084190E+00,4.583527E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +85449,fr,1,3.550000E+00,1.084190E+00,4.583527E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999385E+01,0.000000E+00 +85450,fr,1,3.550000E+00,1.084190E+00,4.583527E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.999385E+01,0.000000E+00 +85464,fr,1,3.750000E+00,1.084190E+00,4.583527E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +85467,fr,1,3.750000E+00,1.084190E+00,4.583527E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801754E+01,0.000000E+00 +85470,fr,2,3.750000E+00,1.084190E+00,4.583527E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,-9.000000E+01 +85490,fr,2,3.950000E+00,1.084190E+00,4.583527E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +85495,fr,1,3.950000E+00,1.084190E+00,4.583527E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +85500,fr,1,4.050000E+00,1.084190E+00,4.583527E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +85514,fr,1,4.150000E+00,1.084190E+00,4.583527E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +85524,fr,1,4.250000E+00,1.084190E+00,4.583527E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +85554,fr,1,4.450000E+00,1.084190E+00,4.583527E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +85921,fr,1,3.550000E+00,5.058760E+00,4.633299E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999303E+01,0.000000E+00 +85929,fr,1,3.550000E+00,5.058760E+00,4.633299E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999303E+01,0.000000E+00 +85933,fr,1,3.650000E+00,5.058760E+00,4.633299E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998759E+01,0.000000E+00 +85934,fr,1,3.650000E+00,5.058760E+00,4.633299E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998759E+01,0.000000E+00 +85956,fr,1,3.850000E+00,5.058760E+00,4.633299E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +85957,fr,1,3.850000E+00,5.058760E+00,4.633299E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +85968,fr,2,3.950000E+00,5.058760E+00,4.633299E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999121E+01,0.000000E+00 +85982,fr,1,4.050000E+00,5.058760E+00,4.633299E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998825E+01,0.000000E+00 +86029,fr,1,4.450000E+00,5.058760E+00,4.633299E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +86400,fr,1,3.550000E+00,5.184000E+00,4.425439E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999277E+01,0.000000E+00 +86402,fr,1,3.550000E+00,5.184000E+00,4.425439E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999277E+01,0.000000E+00 +86403,fr,1,3.550000E+00,5.184000E+00,4.425439E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799934E+01,0.000000E+00 +86409,fr,1,3.550000E+00,5.184000E+00,4.425439E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999277E+01,0.000000E+00 +86412,fr,1,3.650000E+00,5.184000E+00,4.425439E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998713E+01,0.000000E+00 +86421,fr,1,3.650000E+00,5.184000E+00,4.425439E+01,5.000000E+00,Active Shallow Crust,1.288999E+02,8.996348E+01,0.000000E+00 +86425,fr,1,3.750000E+00,5.184000E+00,4.425439E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998853E+01,0.000000E+00 +86426,fr,1,3.750000E+00,5.184000E+00,4.425439E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998853E+01,0.000000E+00 +86427,fr,1,3.750000E+00,5.184000E+00,4.425439E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.801654E+01,0.000000E+00 +86429,fr,1,3.750000E+00,5.184000E+00,4.425439E+01,2.750000E+01,Active Shallow Crust,2.400090E+02,5.801654E+01,0.000000E+00 +86432,fr,1,3.750000E+00,5.184000E+00,4.425439E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998840E+01,-9.000000E+01 +86438,fr,1,3.850000E+00,5.184000E+00,4.425439E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +86439,fr,1,3.850000E+00,5.184000E+00,4.425439E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.799764E+01,0.000000E+00 +86448,fr,2,3.950000E+00,5.184000E+00,4.425439E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +86452,fr,1,3.950000E+00,5.184000E+00,4.425439E+01,1.500000E+01,Active Shallow Crust,2.400192E+02,5.800528E+01,0.000000E+00 +86497,fr,1,4.350000E+00,5.184000E+00,4.425439E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999137E+01,0.000000E+00 +86512,fr,1,4.450000E+00,5.184000E+00,4.425439E+01,1.500000E+01,Active Shallow Crust,2.400052E+02,5.799453E+01,0.000000E+00 +86520,fr,1,4.550000E+00,5.184000E+00,4.425439E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +86580,fr,1,5.050000E+00,5.184000E+00,4.425439E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +86880,fr,4,3.550000E+00,5.781760E+00,4.525520E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999290E+01,0.000000E+00 +86881,fr,3,3.550000E+00,5.781760E+00,4.525520E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999290E+01,0.000000E+00 +86883,fr,2,3.550000E+00,5.781760E+00,4.525520E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799848E+01,0.000000E+00 +86884,fr,1,3.550000E+00,5.781760E+00,4.525520E+01,1.500000E+01,Active Shallow Crust,2.400109E+02,5.799848E+01,0.000000E+00 +86886,fr,1,3.550000E+00,5.781760E+00,4.525520E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999282E+01,-9.000000E+01 +86892,fr,3,3.650000E+00,5.781760E+00,4.525520E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998735E+01,0.000000E+00 +86893,fr,1,3.650000E+00,5.781760E+00,4.525520E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998735E+01,0.000000E+00 +86895,fr,2,3.650000E+00,5.781760E+00,4.525520E+01,5.000000E+00,Active Shallow Crust,2.400001E+02,5.801300E+01,0.000000E+00 +86896,fr,1,3.650000E+00,5.781760E+00,4.525520E+01,1.500000E+01,Active Shallow Crust,2.400001E+02,5.801300E+01,0.000000E+00 +86904,fr,3,3.750000E+00,5.781760E+00,4.525520E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +86905,fr,2,3.750000E+00,5.781760E+00,4.525520E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +86907,fr,1,3.750000E+00,5.781760E+00,4.525520E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.801711E+01,0.000000E+00 +86917,fr,1,3.850000E+00,5.781760E+00,4.525520E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +86919,fr,2,3.850000E+00,5.781760E+00,4.525520E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.799844E+01,0.000000E+00 +86920,fr,1,3.850000E+00,5.781760E+00,4.525520E+01,1.500000E+01,Active Shallow Crust,2.400106E+02,5.799844E+01,0.000000E+00 +86928,fr,1,3.950000E+00,5.781760E+00,4.525520E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +86938,fr,1,3.950000E+00,5.781760E+00,4.525520E+01,1.500000E+01,Active Shallow Crust,1.289007E+02,8.999328E+01,0.000000E+00 +86952,fr,1,4.150000E+00,5.781760E+00,4.525520E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +86953,fr,2,4.150000E+00,5.781760E+00,4.525520E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +86958,fr,2,4.150000E+00,5.781760E+00,4.525520E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,-9.000000E+01 +86961,fr,1,4.150000E+00,5.781760E+00,4.525520E+01,5.000000E+00,Active Shallow Crust,1.288977E+02,8.999467E+01,0.000000E+00 +86964,fr,1,4.250000E+00,5.781760E+00,4.525520E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +86988,fr,1,4.450000E+00,5.781760E+00,4.525520E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +87003,fr,1,4.550000E+00,5.781760E+00,4.525520E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.799747E+01,0.000000E+00 +87024,fr,1,4.750000E+00,5.781760E+00,4.525520E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +87037,fr,1,4.850000E+00,5.781760E+00,4.525520E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +87078,fr,1,5.150000E+00,5.781760E+00,4.525520E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,-9.000000E+01 +87115,fr,1,5.450000E+00,5.781760E+00,4.525520E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,-9.000000E+01 +87122,fr,1,5.550000E+00,5.781760E+00,4.525520E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +87361,fr,1,3.550000E+00,-1.065980E+00,4.742481E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +87363,fr,4,3.550000E+00,-1.065980E+00,4.742481E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799838E+01,0.000000E+00 +87373,fr,1,3.650000E+00,-1.065980E+00,4.742481E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +87384,fr,2,3.750000E+00,-1.065980E+00,4.742481E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +87390,fr,1,3.750000E+00,-1.065980E+00,4.742481E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,-9.000000E+01 +87393,fr,1,3.750000E+00,-1.065980E+00,4.742481E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.996738E+01,0.000000E+00 +87399,fr,1,3.850000E+00,-1.065980E+00,4.742481E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799778E+01,0.000000E+00 +87400,fr,1,3.850000E+00,-1.065980E+00,4.742481E+01,1.500000E+01,Active Shallow Crust,2.400111E+02,5.799778E+01,0.000000E+00 +87414,fr,1,3.950000E+00,-1.065980E+00,4.742481E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,-9.000000E+01 +87420,fr,2,4.050000E+00,-1.065980E+00,4.742481E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +87432,fr,1,4.150000E+00,-1.065980E+00,4.742481E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +87433,fr,1,4.150000E+00,-1.065980E+00,4.742481E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +87456,fr,1,4.350000E+00,-1.065980E+00,4.742481E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +87565,fr,1,5.250000E+00,-1.065980E+00,4.742481E+01,1.500000E+01,Active Shallow Crust,3.599999E+02,8.999012E+01,0.000000E+00 +87840,fr,1,3.550000E+00,4.929590E+00,4.644483E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999305E+01,0.000000E+00 +87852,fr,1,3.650000E+00,4.929590E+00,4.644483E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998762E+01,0.000000E+00 +87877,fr,1,3.850000E+00,4.929590E+00,4.644483E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +87888,fr,1,3.950000E+00,4.929590E+00,4.644483E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +87901,fr,1,4.050000E+00,4.929590E+00,4.644483E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998828E+01,0.000000E+00 +87915,fr,1,4.150000E+00,4.929590E+00,4.644483E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799749E+01,0.000000E+00 +87924,fr,1,4.250000E+00,4.929590E+00,4.644483E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +87977,fr,1,4.650000E+00,4.929590E+00,4.644483E+01,2.750000E+01,Active Shallow Crust,2.400110E+02,5.799435E+01,0.000000E+00 +88326,fr,1,3.550000E+00,-3.322530E+00,4.405504E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998901E+01,-9.000000E+01 +88406,fr,1,4.250000E+00,-3.322530E+00,4.405504E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +88800,fr,9,3.550000E+00,6.757310E+00,4.680950E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999310E+01,0.000000E+00 +88801,fr,1,3.550000E+00,6.757310E+00,4.680950E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999310E+01,0.000000E+00 +88802,fr,4,3.550000E+00,6.757310E+00,4.680950E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999310E+01,0.000000E+00 +88803,fr,2,3.550000E+00,6.757310E+00,4.680950E+01,5.000000E+00,Active Shallow Crust,2.400132E+02,5.799704E+01,0.000000E+00 +88804,fr,1,3.550000E+00,6.757310E+00,4.680950E+01,1.500000E+01,Active Shallow Crust,2.400132E+02,5.799704E+01,0.000000E+00 +88807,fr,2,3.550000E+00,6.757310E+00,4.680950E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999302E+01,-9.000000E+01 +88810,fr,2,3.550000E+00,6.757310E+00,4.680950E+01,1.500000E+01,Active Shallow Crust,1.288964E+02,8.999310E+01,0.000000E+00 +88811,fr,1,3.550000E+00,6.757310E+00,4.680950E+01,2.750000E+01,Active Shallow Crust,1.288964E+02,8.999310E+01,0.000000E+00 +88812,fr,8,3.650000E+00,6.757310E+00,4.680950E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998770E+01,0.000000E+00 +88813,fr,2,3.650000E+00,6.757310E+00,4.680950E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998770E+01,0.000000E+00 +88814,fr,1,3.650000E+00,6.757310E+00,4.680950E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998770E+01,0.000000E+00 +88818,fr,1,3.650000E+00,6.757310E+00,4.680950E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998756E+01,-9.000000E+01 +88819,fr,1,3.650000E+00,6.757310E+00,4.680950E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998756E+01,-9.000000E+01 +88821,fr,2,3.650000E+00,6.757310E+00,4.680950E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.996353E+01,0.000000E+00 +88824,fr,6,3.750000E+00,6.757310E+00,4.680950E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +88825,fr,2,3.750000E+00,6.757310E+00,4.680950E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +88826,fr,1,3.750000E+00,6.757310E+00,4.680950E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +88827,fr,1,3.750000E+00,6.757310E+00,4.680950E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.801784E+01,0.000000E+00 +88828,fr,1,3.750000E+00,6.757310E+00,4.680950E+01,1.500000E+01,Active Shallow Crust,2.400090E+02,5.801784E+01,0.000000E+00 +88831,fr,1,3.750000E+00,6.757310E+00,4.680950E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998891E+01,-9.000000E+01 +88833,fr,1,3.750000E+00,6.757310E+00,4.680950E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996750E+01,0.000000E+00 +88834,fr,1,3.750000E+00,6.757310E+00,4.680950E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.996750E+01,0.000000E+00 +88836,fr,4,3.850000E+00,6.757310E+00,4.680950E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +88837,fr,3,3.850000E+00,6.757310E+00,4.680950E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +88839,fr,1,3.850000E+00,6.757310E+00,4.680950E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.799775E+01,0.000000E+00 +88843,fr,1,3.850000E+00,6.757310E+00,4.680950E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,-9.000000E+01 +88848,fr,9,3.950000E+00,6.757310E+00,4.680950E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +88849,fr,1,3.950000E+00,6.757310E+00,4.680950E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +88852,fr,1,3.950000E+00,6.757310E+00,4.680950E+01,1.500000E+01,Active Shallow Crust,2.400191E+02,5.800507E+01,0.000000E+00 +88860,fr,4,4.050000E+00,6.757310E+00,4.680950E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998836E+01,0.000000E+00 +88861,fr,1,4.050000E+00,6.757310E+00,4.680950E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998836E+01,0.000000E+00 +88863,fr,1,4.050000E+00,6.757310E+00,4.680950E+01,5.000000E+00,Active Shallow Crust,2.400057E+02,5.800645E+01,0.000000E+00 +88866,fr,2,4.050000E+00,6.757310E+00,4.680950E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998822E+01,-9.000000E+01 +88869,fr,1,4.050000E+00,6.757310E+00,4.680950E+01,5.000000E+00,Active Shallow Crust,1.288894E+02,8.999418E+01,0.000000E+00 +88872,fr,3,4.150000E+00,6.757310E+00,4.680950E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +88873,fr,1,4.150000E+00,6.757310E+00,4.680950E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +88874,fr,1,4.150000E+00,6.757310E+00,4.680950E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +88878,fr,1,4.150000E+00,6.757310E+00,4.680950E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,-9.000000E+01 +88884,fr,5,4.250000E+00,6.757310E+00,4.680950E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +88885,fr,1,4.250000E+00,6.757310E+00,4.680950E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +88889,fr,1,4.250000E+00,6.757310E+00,4.680950E+01,2.750000E+01,Active Shallow Crust,2.400076E+02,5.799410E+01,0.000000E+00 +88893,fr,1,4.250000E+00,6.757310E+00,4.680950E+01,5.000000E+00,Active Shallow Crust,1.288943E+02,8.998041E+01,0.000000E+00 +88902,fr,2,4.350000E+00,6.757310E+00,4.680950E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998888E+01,-9.000000E+01 +88903,fr,1,4.350000E+00,6.757310E+00,4.680950E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998888E+01,-9.000000E+01 +88908,fr,2,4.450000E+00,6.757310E+00,4.680950E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +88911,fr,2,4.450000E+00,6.757310E+00,4.680950E+01,5.000000E+00,Active Shallow Crust,2.400056E+02,5.799446E+01,0.000000E+00 +88914,fr,1,4.450000E+00,6.757310E+00,4.680950E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +88917,fr,1,4.450000E+00,6.757310E+00,4.680950E+01,5.000000E+00,Active Shallow Crust,1.288917E+02,8.999388E+01,0.000000E+00 +88920,fr,2,4.550000E+00,6.757310E+00,4.680950E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +88933,fr,1,4.650000E+00,6.757310E+00,4.680950E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +88944,fr,1,4.750000E+00,6.757310E+00,4.680950E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +88948,fr,2,4.750000E+00,6.757310E+00,4.680950E+01,1.500000E+01,Active Shallow Crust,2.400076E+02,5.800451E+01,0.000000E+00 +88956,fr,1,4.850000E+00,6.757310E+00,4.680950E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999073E+01,0.000000E+00 +89004,fr,1,5.250000E+00,6.757310E+00,4.680950E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +89044,fr,1,5.550000E+00,6.757310E+00,4.680950E+01,1.500000E+01,Active Shallow Crust,2.400330E+02,5.799947E+01,0.000000E+00 +89112,fr,1,6.150000E+00,6.757312E+00,4.680950E+01,6.011322E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +89187,fr,1,6.750000E+00,6.736069E+00,4.683467E+01,1.017163E+01,Active Shallow Crust,2.401295E+02,5.800037E+01,0.000000E+00 +89190,fr,1,6.750000E+00,6.757326E+00,4.680950E+01,1.185687E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +89208,fr,1,6.950000E+00,6.757333E+00,4.680950E+01,1.509976E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +89268,fr,1,7.450000E+00,6.757339E+00,4.680950E+01,1.750000E+01,Active Shallow Crust,3.599999E+02,8.999001E+01,0.000000E+00 +89284,fr,1,3.550000E+00,-2.856010E+00,4.996834E+01,1.500000E+01,Active Shallow Crust,2.400120E+02,5.799835E+01,0.000000E+00 +89833,fr,1,4.150000E+00,4.835380E+00,4.948362E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +90241,fr,1,3.550000E+00,4.294070E+00,4.990525E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998701E+01,0.000000E+00 +90253,fr,1,3.650000E+00,4.294070E+00,4.990525E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +90270,fr,1,3.750000E+00,4.294070E+00,4.990525E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,-9.000000E+01 +90288,fr,1,3.950000E+00,4.294070E+00,4.990525E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999181E+01,0.000000E+00 +90313,fr,1,4.150000E+00,4.294070E+00,4.990525E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +90744,fr,1,3.750000E+00,-4.208780E+00,4.985493E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +90804,fr,1,4.250000E+00,-4.208780E+00,4.985493E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +90840,fr,1,4.550000E+00,-4.208780E+00,4.985493E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +91200,fr,1,3.550000E+00,-2.415020E+00,4.839394E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +91203,fr,2,3.550000E+00,-2.415020E+00,4.839394E+01,5.000000E+00,Active Shallow Crust,2.400129E+02,5.799820E+01,0.000000E+00 +91209,fr,1,3.550000E+00,-2.415020E+00,4.839394E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999330E+01,0.000000E+00 +91224,fr,1,3.750000E+00,-2.415020E+00,4.839394E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +91236,fr,1,3.850000E+00,-2.415020E+00,4.839394E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +91237,fr,1,3.850000E+00,-2.415020E+00,4.839394E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +91260,fr,1,4.050000E+00,-2.415020E+00,4.839394E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +91269,fr,1,4.050000E+00,-2.415020E+00,4.839394E+01,5.000000E+00,Active Shallow Crust,1.288900E+02,8.999341E+01,0.000000E+00 +91284,fr,1,4.250000E+00,-2.415020E+00,4.839394E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +91311,fr,1,4.450000E+00,-2.415020E+00,4.839394E+01,5.000000E+00,Active Shallow Crust,2.400058E+02,5.799463E+01,0.000000E+00 +91314,fr,1,4.450000E+00,-2.415020E+00,4.839394E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,-9.000000E+01 +91329,fr,1,4.550000E+00,-2.415020E+00,4.839394E+01,5.000000E+00,Active Shallow Crust,1.288931E+02,8.998598E+01,0.000000E+00 +91687,fr,1,3.550000E+00,7.733680E+00,4.456520E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999273E+01,-9.000000E+01 +91692,fr,1,3.650000E+00,7.733680E+00,4.456520E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998719E+01,0.000000E+00 +91693,fr,1,3.650000E+00,7.733680E+00,4.456520E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998719E+01,0.000000E+00 +91704,fr,2,3.750000E+00,7.733680E+00,4.456520E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +91717,fr,1,3.850000E+00,7.733680E+00,4.456520E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +91722,fr,1,3.850000E+00,7.733680E+00,4.456520E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,-9.000000E+01 +91725,fr,1,3.850000E+00,7.733680E+00,4.456520E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999491E+01,0.000000E+00 +91728,fr,1,3.950000E+00,7.733680E+00,4.456520E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +91729,fr,1,3.950000E+00,7.733680E+00,4.456520E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +91731,fr,1,3.950000E+00,7.733680E+00,4.456520E+01,5.000000E+00,Active Shallow Crust,2.400192E+02,5.800480E+01,0.000000E+00 +91738,fr,1,3.950000E+00,7.733680E+00,4.456520E+01,1.500000E+01,Active Shallow Crust,1.289014E+02,8.999320E+01,0.000000E+00 +91740,fr,1,4.050000E+00,7.733680E+00,4.456520E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999192E+01,0.000000E+00 +91753,fr,1,4.150000E+00,7.733680E+00,4.456520E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +91761,fr,1,4.150000E+00,7.733680E+00,4.456520E+01,5.000000E+00,Active Shallow Crust,1.288987E+02,8.999280E+01,0.000000E+00 +91770,fr,2,4.250000E+00,7.733680E+00,4.456520E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,-9.000000E+01 +91776,fr,1,4.350000E+00,7.733680E+00,4.456520E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +91778,fr,1,4.350000E+00,7.733680E+00,4.456520E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +91872,fr,1,5.150000E+00,7.733680E+00,4.456520E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +92160,fr,2,3.550000E+00,2.365050E+00,4.291224E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998892E+01,0.000000E+00 +92161,fr,1,3.550000E+00,2.365050E+00,4.291224E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998892E+01,0.000000E+00 +92163,fr,1,3.550000E+00,2.365050E+00,4.291224E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799827E+01,0.000000E+00 +92172,fr,3,3.650000E+00,2.365050E+00,4.291224E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +92184,fr,2,3.750000E+00,2.365050E+00,4.291224E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +92196,fr,1,3.850000E+00,2.365050E+00,4.291224E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +92208,fr,2,3.950000E+00,2.365050E+00,4.291224E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +92211,fr,1,3.950000E+00,2.365050E+00,4.291224E+01,5.000000E+00,Active Shallow Crust,2.400198E+02,5.800488E+01,0.000000E+00 +92219,fr,1,3.950000E+00,2.365050E+00,4.291224E+01,2.750000E+01,Active Shallow Crust,1.289004E+02,8.999418E+01,0.000000E+00 +92221,fr,2,4.050000E+00,2.365050E+00,4.291224E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +92228,fr,1,4.050000E+00,2.365050E+00,4.291224E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,-9.000000E+01 +92232,fr,2,4.150000E+00,2.365050E+00,4.291224E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +92234,fr,1,4.150000E+00,2.365050E+00,4.291224E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +92256,fr,1,4.350000E+00,2.365050E+00,4.291224E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +92281,fr,1,4.550000E+00,2.365050E+00,4.291224E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +92282,fr,1,4.550000E+00,2.365050E+00,4.291224E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +92319,fr,1,4.850000E+00,2.365050E+00,4.291224E+01,5.000000E+00,Active Shallow Crust,2.400158E+02,5.800201E+01,0.000000E+00 +92328,fr,1,4.950000E+00,2.365050E+00,4.291224E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +92651,fr,1,3.550000E+00,-3.947800E-01,4.449900E+01,2.750000E+01,Active Shallow Crust,1.288964E+02,8.999371E+01,0.000000E+00 +92652,fr,1,3.650000E+00,-3.947800E-01,4.449900E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +92697,fr,1,3.950000E+00,-3.947800E-01,4.449900E+01,5.000000E+00,Active Shallow Crust,1.289006E+02,8.999376E+01,0.000000E+00 +92730,fr,1,4.250000E+00,-3.947800E-01,4.449900E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +93680,fr,1,4.150000E+00,-4.494560E+00,4.669117E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998948E+01,-9.000000E+01 +94080,fr,1,3.550000E+00,4.392320E+00,4.388080E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999273E+01,0.000000E+00 +94081,fr,1,3.550000E+00,4.392320E+00,4.388080E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999273E+01,0.000000E+00 +94092,fr,1,3.650000E+00,4.392320E+00,4.388080E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998705E+01,0.000000E+00 +94099,fr,1,3.650000E+00,4.392320E+00,4.388080E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998689E+01,-9.000000E+01 +94116,fr,1,3.850000E+00,4.392320E+00,4.388080E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +94119,fr,1,3.850000E+00,4.392320E+00,4.388080E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799834E+01,0.000000E+00 +94128,fr,1,3.950000E+00,4.392320E+00,4.388080E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +94130,fr,1,3.950000E+00,4.392320E+00,4.388080E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +94140,fr,1,4.050000E+00,4.392320E+00,4.388080E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999183E+01,0.000000E+00 +94141,fr,1,4.050000E+00,4.392320E+00,4.388080E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999183E+01,0.000000E+00 +94146,fr,1,4.050000E+00,4.392320E+00,4.388080E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999173E+01,-9.000000E+01 +94156,fr,1,4.150000E+00,4.392320E+00,4.388080E+01,1.500000E+01,Active Shallow Crust,2.400087E+02,5.799688E+01,0.000000E+00 +94164,fr,1,4.250000E+00,4.392320E+00,4.388080E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +94165,fr,1,4.250000E+00,4.392320E+00,4.388080E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +94272,fr,1,5.150000E+00,4.392320E+00,4.388080E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +94561,fr,1,3.550000E+00,1.548810E+00,4.983508E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +94566,fr,1,3.550000E+00,1.548810E+00,4.983508E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,-9.000000E+01 +94573,fr,1,3.650000E+00,1.548810E+00,4.983508E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +94584,fr,1,3.750000E+00,1.548810E+00,4.983508E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +94614,fr,1,3.950000E+00,1.548810E+00,4.983508E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,-9.000000E+01 +94627,fr,1,4.050000E+00,1.548810E+00,4.983508E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,-9.000000E+01 +94632,fr,1,4.150000E+00,1.548810E+00,4.983508E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +94668,fr,1,4.450000E+00,1.548810E+00,4.983508E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +94673,fr,1,4.450000E+00,1.548810E+00,4.983508E+01,2.750000E+01,Active Shallow Crust,2.400062E+02,5.799492E+01,0.000000E+00 +94692,fr,1,4.650000E+00,1.548810E+00,4.983508E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +95145,fr,1,4.350000E+00,4.300560E+00,4.928335E+01,5.000000E+00,Active Shallow Crust,1.288977E+02,8.998266E+01,0.000000E+00 +95520,fr,1,3.550000E+00,-2.927560E+00,4.902441E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +95538,fr,2,3.650000E+00,-2.927560E+00,4.902441E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999106E+01,-9.000000E+01 +95589,fr,1,4.050000E+00,-2.927560E+00,4.902441E+01,5.000000E+00,Active Shallow Crust,1.288901E+02,8.999442E+01,0.000000E+00 +95599,fr,1,4.150000E+00,-2.927560E+00,4.902441E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +96024,fr,1,3.750000E+00,2.469240E+00,4.345993E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999128E+01,0.000000E+00 +96030,fr,1,3.750000E+00,2.469240E+00,4.345993E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999118E+01,-9.000000E+01 +96060,fr,1,4.050000E+00,2.469240E+00,4.345993E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +96102,fr,1,4.350000E+00,2.469240E+00,4.345993E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +96252,fr,1,5.650000E+00,2.469240E+00,4.345993E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +96480,fr,1,3.550000E+00,5.827690E+00,4.974095E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998697E+01,0.000000E+00 +96481,fr,1,3.550000E+00,5.827690E+00,4.974095E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998697E+01,0.000000E+00 +96492,fr,1,3.650000E+00,5.827690E+00,4.974095E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998838E+01,0.000000E+00 +96648,fr,1,4.950000E+00,5.827690E+00,4.974095E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +96960,fr,1,3.550000E+00,6.563420E+00,4.363234E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999270E+01,0.000000E+00 +96962,fr,1,3.550000E+00,6.563420E+00,4.363234E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999270E+01,0.000000E+00 +96987,fr,1,3.750000E+00,6.563420E+00,4.363234E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.801765E+01,0.000000E+00 +96997,fr,1,3.850000E+00,6.563420E+00,4.363234E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +97068,fr,1,4.450000E+00,6.563420E+00,4.363234E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +97440,fr,1,3.550000E+00,7.982270E+00,4.432682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999278E+01,0.000000E+00 +97453,fr,1,3.650000E+00,7.982270E+00,4.432682E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998714E+01,0.000000E+00 +97464,fr,1,3.750000E+00,7.982270E+00,4.432682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998854E+01,0.000000E+00 +97479,fr,1,3.850000E+00,7.982270E+00,4.432682E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.799691E+01,0.000000E+00 +97488,fr,1,3.950000E+00,7.982270E+00,4.432682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999090E+01,0.000000E+00 +97538,fr,1,4.350000E+00,7.982270E+00,4.432682E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999139E+01,0.000000E+00 +97620,fr,1,5.050000E+00,7.982270E+00,4.432682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +97920,fr,1,3.550000E+00,-3.181690E+00,4.351536E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998903E+01,0.000000E+00 +97932,fr,1,3.650000E+00,-3.181690E+00,4.351536E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +97934,fr,2,3.650000E+00,-3.181690E+00,4.351536E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +97959,fr,1,3.850000E+00,-3.181690E+00,4.351536E+01,5.000000E+00,Active Shallow Crust,2.400102E+02,5.799795E+01,0.000000E+00 +97963,fr,1,3.850000E+00,-3.181690E+00,4.351536E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,-9.000000E+01 +97965,fr,1,3.850000E+00,-3.181690E+00,4.351536E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999353E+01,0.000000E+00 +98078,fr,1,4.850000E+00,-3.181690E+00,4.351536E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +98080,fr,1,4.850000E+00,-3.181690E+00,4.351536E+01,1.500000E+01,Active Shallow Crust,2.400160E+02,5.800202E+01,0.000000E+00 +98649,fr,1,5.550000E+00,-2.424310E+00,4.635697E+01,5.000000E+00,Active Shallow Crust,1.288763E+02,8.998979E+01,0.000000E+00 +98905,fr,1,3.750000E+00,-4.656300E-01,5.039224E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +98940,fr,1,4.050000E+00,-4.656300E-01,5.039224E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +98952,fr,1,4.150000E+00,-4.656300E-01,5.039224E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +98989,fr,1,4.450000E+00,-4.656300E-01,5.039224E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +99360,fr,1,3.550000E+00,5.855740E+00,4.823484E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999329E+01,0.000000E+00 +99361,fr,1,3.550000E+00,5.855740E+00,4.823484E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999329E+01,0.000000E+00 +99364,fr,1,3.550000E+00,5.855740E+00,4.823484E+01,1.500000E+01,Active Shallow Crust,2.400115E+02,5.799875E+01,0.000000E+00 +99444,fr,2,4.250000E+00,5.855740E+00,4.823484E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +99474,fr,1,4.450000E+00,5.855740E+00,4.823484E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,-9.000000E+01 +99493,fr,1,4.650000E+00,5.855740E+00,4.823484E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +99841,fr,1,3.550000E+00,9.119620E+00,5.048844E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998717E+01,0.000000E+00 +99861,fr,1,3.650000E+00,9.119620E+00,5.048844E+01,5.000000E+00,Active Shallow Crust,1.288984E+02,8.996360E+01,0.000000E+00 +99865,fr,1,3.750000E+00,9.119620E+00,5.048844E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +99867,fr,1,3.750000E+00,9.119620E+00,5.048844E+01,5.000000E+00,Active Shallow Crust,2.400092E+02,5.801731E+01,0.000000E+00 +99900,fr,1,4.050000E+00,9.119620E+00,5.048844E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999278E+01,0.000000E+00 +99906,fr,1,4.050000E+00,9.119620E+00,5.048844E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999270E+01,-9.000000E+01 +99907,fr,1,4.050000E+00,9.119620E+00,5.048844E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999270E+01,-9.000000E+01 +100005,fr,1,4.850000E+00,9.119620E+00,5.048844E+01,5.000000E+00,Active Shallow Crust,1.288907E+02,8.998930E+01,0.000000E+00 +100323,fr,1,3.550000E+00,-6.232800E-01,5.012016E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799828E+01,0.000000E+00 +100335,fr,1,3.650000E+00,-6.232800E-01,5.012016E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801296E+01,0.000000E+00 +100341,fr,1,3.650000E+00,-6.232800E-01,5.012016E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.996353E+01,0.000000E+00 +100344,fr,1,3.750000E+00,-6.232800E-01,5.012016E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +100466,fr,1,4.750000E+00,-6.232800E-01,5.012016E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +100800,fr,1,3.550000E+00,7.267200E-01,4.808234E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +100803,fr,1,3.550000E+00,7.267200E-01,4.808234E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799815E+01,0.000000E+00 +100809,fr,1,3.550000E+00,7.267200E-01,4.808234E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999368E+01,0.000000E+00 +100811,fr,1,3.550000E+00,7.267200E-01,4.808234E+01,2.750000E+01,Active Shallow Crust,1.288961E+02,8.999368E+01,0.000000E+00 +100848,fr,1,3.950000E+00,7.267200E-01,4.808234E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +100896,fr,1,4.350000E+00,7.267200E-01,4.808234E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +101292,fr,1,3.650000E+00,2.962970E+00,5.040214E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999141E+01,0.000000E+00 +101293,fr,1,3.650000E+00,2.962970E+00,5.040214E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999141E+01,0.000000E+00 +101328,fr,1,3.950000E+00,2.962970E+00,5.040214E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +101376,fr,1,4.350000E+00,2.962970E+00,5.040214E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +101413,fr,1,4.650000E+00,2.962970E+00,5.040214E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +102240,fr,4,3.550000E+00,-3.218470E+00,4.845937E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +102241,fr,1,3.550000E+00,-3.218470E+00,4.845937E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +102252,fr,3,3.650000E+00,-3.218470E+00,4.845937E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999106E+01,0.000000E+00 +102253,fr,1,3.650000E+00,-3.218470E+00,4.845937E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999106E+01,0.000000E+00 +102258,fr,1,3.650000E+00,-3.218470E+00,4.845937E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999096E+01,-9.000000E+01 +102264,fr,1,3.750000E+00,-3.218470E+00,4.845937E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +102276,fr,2,3.850000E+00,-3.218470E+00,4.845937E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +102285,fr,1,3.850000E+00,-3.218470E+00,4.845937E+01,5.000000E+00,Active Shallow Crust,1.288955E+02,8.999408E+01,0.000000E+00 +102295,fr,1,3.950000E+00,-3.218470E+00,4.845937E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,-9.000000E+01 +102312,fr,1,4.150000E+00,-3.218470E+00,4.845937E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +102357,fr,1,4.450000E+00,-3.218470E+00,4.845937E+01,5.000000E+00,Active Shallow Crust,1.288917E+02,8.999348E+01,0.000000E+00 +102720,fr,1,3.550000E+00,5.422220E+00,4.133701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999243E+01,0.000000E+00 +102796,fr,1,4.150000E+00,5.422220E+00,4.133701E+01,1.500000E+01,Active Shallow Crust,2.400078E+02,5.799715E+01,0.000000E+00 +102852,fr,1,4.650000E+00,5.422220E+00,4.133701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +103200,fr,1,3.550000E+00,2.035990E+00,4.084868E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +103203,fr,1,3.550000E+00,2.035990E+00,4.084868E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799800E+01,0.000000E+00 +103204,fr,1,3.550000E+00,2.035990E+00,4.084868E+01,1.500000E+01,Active Shallow Crust,2.400116E+02,5.799800E+01,0.000000E+00 +103207,fr,1,3.550000E+00,2.035990E+00,4.084868E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998843E+01,-9.000000E+01 +103210,fr,1,3.550000E+00,2.035990E+00,4.084868E+01,1.500000E+01,Active Shallow Crust,1.288964E+02,8.999428E+01,0.000000E+00 +103212,fr,1,3.650000E+00,2.035990E+00,4.084868E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +103224,fr,1,3.750000E+00,2.035990E+00,4.084868E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +103248,fr,1,3.950000E+00,2.035990E+00,4.084868E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +103249,fr,1,3.950000E+00,2.035990E+00,4.084868E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +103272,fr,1,4.150000E+00,2.035990E+00,4.084868E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +103273,fr,1,4.150000E+00,2.035990E+00,4.084868E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +103274,fr,1,4.150000E+00,2.035990E+00,4.084868E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +103276,fr,1,4.150000E+00,2.035990E+00,4.084868E+01,1.500000E+01,Active Shallow Crust,2.400074E+02,5.799734E+01,0.000000E+00 +103309,fr,1,4.450000E+00,2.035990E+00,4.084868E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +104640,fr,3,3.550000E+00,6.906070E+00,5.098753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998730E+01,0.000000E+00 +104642,fr,2,3.550000E+00,6.906070E+00,5.098753E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998730E+01,0.000000E+00 +104661,fr,1,3.650000E+00,6.906070E+00,5.098753E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.996307E+01,0.000000E+00 +104672,fr,1,3.750000E+00,6.906070E+00,5.098753E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,-9.000000E+01 +104677,fr,1,3.850000E+00,6.906070E+00,5.098753E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999101E+01,0.000000E+00 +104689,fr,1,3.950000E+00,6.906070E+00,5.098753E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999199E+01,0.000000E+00 +104703,fr,1,4.050000E+00,6.906070E+00,5.098753E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.800547E+01,0.000000E+00 +104736,fr,1,4.350000E+00,6.906070E+00,5.098753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +104748,fr,1,4.450000E+00,6.906070E+00,5.098753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999099E+01,0.000000E+00 +104757,fr,1,4.450000E+00,6.906070E+00,5.098753E+01,5.000000E+00,Active Shallow Crust,1.288910E+02,8.999325E+01,0.000000E+00 +104772,fr,1,4.650000E+00,6.906070E+00,5.098753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +104773,fr,1,4.650000E+00,6.906070E+00,5.098753E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +104796,fr,1,4.850000E+00,6.906070E+00,5.098753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +104798,fr,1,4.850000E+00,6.906070E+00,5.098753E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +104850,fr,1,5.250000E+00,6.906070E+00,5.098753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +104912,fr,1,5.750000E+00,6.906070E+00,5.098753E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,-9.000000E+01 +104954,fr,1,6.150000E+00,6.906070E+00,5.098753E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +105120,fr,1,3.550000E+00,3.877190E+00,4.796145E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +105129,fr,1,3.550000E+00,3.877190E+00,4.796145E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999325E+01,0.000000E+00 +105133,fr,1,3.650000E+00,3.877190E+00,4.796145E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +105601,fr,1,3.550000E+00,3.737680E+00,4.338839E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +105612,fr,1,3.650000E+00,3.737680E+00,4.338839E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +105624,fr,1,3.750000E+00,3.737680E+00,4.338839E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999127E+01,0.000000E+00 +105648,fr,1,3.950000E+00,3.737680E+00,4.338839E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +105710,fr,1,4.450000E+00,3.737680E+00,4.338839E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +105817,fr,1,5.350000E+00,3.737680E+00,4.338839E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +106117,fr,1,3.850000E+00,-6.363870E+00,4.895697E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +106560,fr,1,3.550000E+00,1.793580E+00,4.534733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +106572,fr,1,3.650000E+00,1.793580E+00,4.534733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +106593,fr,1,3.750000E+00,1.793580E+00,4.534733E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.996734E+01,0.000000E+00 +107040,fr,2,3.550000E+00,-1.468700E+00,4.860294E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +107043,fr,1,3.550000E+00,-1.468700E+00,4.860294E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799818E+01,0.000000E+00 +107050,fr,1,3.550000E+00,-1.468700E+00,4.860294E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.999333E+01,0.000000E+00 +107056,fr,2,3.650000E+00,-1.468700E+00,4.860294E+01,1.500000E+01,Active Shallow Crust,2.400015E+02,5.801266E+01,0.000000E+00 +107059,fr,1,3.650000E+00,-1.468700E+00,4.860294E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998948E+01,-9.000000E+01 +107062,fr,1,3.650000E+00,-1.468700E+00,4.860294E+01,1.500000E+01,Active Shallow Crust,1.289002E+02,8.996356E+01,0.000000E+00 +107064,fr,2,3.750000E+00,-1.468700E+00,4.860294E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +107065,fr,1,3.750000E+00,-1.468700E+00,4.860294E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +107080,fr,1,3.850000E+00,-1.468700E+00,4.860294E+01,1.500000E+01,Active Shallow Crust,2.400111E+02,5.799783E+01,0.000000E+00 +107087,fr,1,3.850000E+00,-1.468700E+00,4.860294E+01,2.750000E+01,Active Shallow Crust,1.288951E+02,8.999410E+01,0.000000E+00 +107092,fr,1,3.950000E+00,-1.468700E+00,4.860294E+01,1.500000E+01,Active Shallow Crust,2.400200E+02,5.800496E+01,0.000000E+00 +107100,fr,2,4.050000E+00,-1.468700E+00,4.860294E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +107101,fr,1,4.050000E+00,-1.468700E+00,4.860294E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +107116,fr,1,4.150000E+00,-1.468700E+00,4.860294E+01,1.500000E+01,Active Shallow Crust,2.400090E+02,5.799735E+01,0.000000E+00 +107124,fr,1,4.250000E+00,-1.468700E+00,4.860294E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +107137,fr,1,4.350000E+00,-1.468700E+00,4.860294E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +107169,fr,1,4.550000E+00,-1.468700E+00,4.860294E+01,5.000000E+00,Active Shallow Crust,1.288934E+02,8.998576E+01,0.000000E+00 +107184,fr,1,4.750000E+00,-1.468700E+00,4.860294E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +107199,fr,1,4.850000E+00,-1.468700E+00,4.860294E+01,5.000000E+00,Active Shallow Crust,2.400181E+02,5.800249E+01,0.000000E+00 +107221,fr,1,5.050000E+00,-1.468700E+00,4.860294E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +107233,fr,1,5.150000E+00,-1.468700E+00,4.860294E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +107532,fr,1,3.650000E+00,3.821320E+00,5.296258E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +107545,fr,1,3.750000E+00,3.821320E+00,5.296258E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +107582,fr,1,4.050000E+00,3.821320E+00,5.296258E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +108482,fr,1,3.550000E+00,6.358190E+00,5.141041E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998742E+01,0.000000E+00 +108487,fr,1,3.550000E+00,6.358190E+00,5.141041E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998727E+01,-9.000000E+01 +108489,fr,1,3.550000E+00,6.358190E+00,5.141041E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.999371E+01,0.000000E+00 +108492,fr,2,3.650000E+00,6.358190E+00,5.141041E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +108504,fr,2,3.750000E+00,6.358190E+00,5.141041E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +108516,fr,1,3.850000E+00,6.358190E+00,5.141041E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +108518,fr,1,3.850000E+00,6.358190E+00,5.141041E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +108528,fr,2,3.950000E+00,6.358190E+00,5.141041E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998809E+01,0.000000E+00 +108564,fr,1,4.250000E+00,6.358190E+00,5.141041E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998876E+01,0.000000E+00 +108961,fr,1,3.550000E+00,2.448480E+00,4.411717E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +108972,fr,3,3.650000E+00,2.448480E+00,4.411717E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +108985,fr,1,3.750000E+00,2.448480E+00,4.411717E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999137E+01,0.000000E+00 +109021,fr,1,4.050000E+00,2.448480E+00,4.411717E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +109022,fr,1,4.050000E+00,2.448480E+00,4.411717E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +109044,fr,1,4.250000E+00,2.448480E+00,4.411717E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +109045,fr,1,4.250000E+00,2.448480E+00,4.411717E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +109071,fr,1,4.450000E+00,2.448480E+00,4.411717E+01,5.000000E+00,Active Shallow Crust,2.400048E+02,5.799449E+01,0.000000E+00 +109440,fr,5,3.550000E+00,6.115420E+00,5.076797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998724E+01,0.000000E+00 +109441,fr,2,3.550000E+00,6.115420E+00,5.076797E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998724E+01,0.000000E+00 +109442,fr,2,3.550000E+00,6.115420E+00,5.076797E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998724E+01,0.000000E+00 +109443,fr,2,3.550000E+00,6.115420E+00,5.076797E+01,5.000000E+00,Active Shallow Crust,2.400129E+02,5.799775E+01,0.000000E+00 +109447,fr,2,3.550000E+00,6.115420E+00,5.076797E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998710E+01,-9.000000E+01 +109449,fr,1,3.550000E+00,6.115420E+00,5.076797E+01,5.000000E+00,Active Shallow Crust,1.288955E+02,8.999362E+01,0.000000E+00 +109450,fr,1,3.550000E+00,6.115420E+00,5.076797E+01,1.500000E+01,Active Shallow Crust,1.288955E+02,8.999362E+01,0.000000E+00 +109452,fr,6,3.650000E+00,6.115420E+00,5.076797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998863E+01,0.000000E+00 +109453,fr,4,3.650000E+00,6.115420E+00,5.076797E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998863E+01,0.000000E+00 +109455,fr,2,3.650000E+00,6.115420E+00,5.076797E+01,5.000000E+00,Active Shallow Crust,2.400023E+02,5.801236E+01,0.000000E+00 +109464,fr,4,3.750000E+00,6.115420E+00,5.076797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +109467,fr,1,3.750000E+00,6.115420E+00,5.076797E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.801788E+01,0.000000E+00 +109468,fr,1,3.750000E+00,6.115420E+00,5.076797E+01,1.500000E+01,Active Shallow Crust,2.400091E+02,5.801788E+01,0.000000E+00 +109472,fr,1,3.750000E+00,6.115420E+00,5.076797E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,-9.000000E+01 +109474,fr,1,3.750000E+00,6.115420E+00,5.076797E+01,1.500000E+01,Active Shallow Crust,1.288971E+02,8.996707E+01,0.000000E+00 +109476,fr,1,3.850000E+00,6.115420E+00,5.076797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +109479,fr,1,3.850000E+00,6.115420E+00,5.076797E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799735E+01,0.000000E+00 +109488,fr,4,3.950000E+00,6.115420E+00,5.076797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999195E+01,0.000000E+00 +109489,fr,1,3.950000E+00,6.115420E+00,5.076797E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999195E+01,0.000000E+00 +109490,fr,1,3.950000E+00,6.115420E+00,5.076797E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999195E+01,0.000000E+00 +109492,fr,1,3.950000E+00,6.115420E+00,5.076797E+01,1.500000E+01,Active Shallow Crust,2.400204E+02,5.800496E+01,0.000000E+00 +109500,fr,3,4.050000E+00,6.115420E+00,5.076797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +109502,fr,1,4.050000E+00,6.115420E+00,5.076797E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +109503,fr,1,4.050000E+00,6.115420E+00,5.076797E+01,5.000000E+00,Active Shallow Crust,2.400066E+02,5.800624E+01,0.000000E+00 +109506,fr,2,4.050000E+00,6.115420E+00,5.076797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,-9.000000E+01 +109518,fr,1,4.150000E+00,6.115420E+00,5.076797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,-9.000000E+01 +109521,fr,1,4.150000E+00,6.115420E+00,5.076797E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999361E+01,0.000000E+00 +109523,fr,1,4.150000E+00,6.115420E+00,5.076797E+01,2.750000E+01,Active Shallow Crust,1.288962E+02,8.999361E+01,0.000000E+00 +109537,fr,2,4.350000E+00,6.115420E+00,5.076797E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +109548,fr,3,4.450000E+00,6.115420E+00,5.076797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +109551,fr,1,4.450000E+00,6.115420E+00,5.076797E+01,5.000000E+00,Active Shallow Crust,2.400065E+02,5.799483E+01,0.000000E+00 +109560,fr,1,4.550000E+00,6.115420E+00,5.076797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +109561,fr,1,4.550000E+00,6.115420E+00,5.076797E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +109567,fr,1,4.550000E+00,6.115420E+00,5.076797E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,-9.000000E+01 +109572,fr,2,4.650000E+00,6.115420E+00,5.076797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +109590,fr,1,4.750000E+00,6.115420E+00,5.076797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,-9.000000E+01 +109597,fr,1,4.850000E+00,6.115420E+00,5.076797E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +109602,fr,1,4.850000E+00,6.115420E+00,5.076797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,-9.000000E+01 +109608,fr,1,4.950000E+00,6.115420E+00,5.076797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +109609,fr,1,4.950000E+00,6.115420E+00,5.076797E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +109648,fr,1,5.250000E+00,6.115420E+00,5.076797E+01,1.500000E+01,Active Shallow Crust,2.400286E+02,5.800079E+01,0.000000E+00 +109735,fr,1,5.950000E+00,6.115420E+00,5.076797E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,-9.000000E+01 +109920,fr,1,3.550000E+00,-2.411130E+00,4.920067E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +109938,fr,1,3.650000E+00,-2.411130E+00,4.920067E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999109E+01,-9.000000E+01 +109945,fr,1,3.750000E+00,-2.411130E+00,4.920067E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +109953,fr,1,3.750000E+00,-2.411130E+00,4.920067E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.996730E+01,0.000000E+00 +109972,fr,1,3.950000E+00,-2.411130E+00,4.920067E+01,1.500000E+01,Active Shallow Crust,2.400204E+02,5.800503E+01,0.000000E+00 +109992,fr,1,4.150000E+00,-2.411130E+00,4.920067E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +110006,fr,1,4.250000E+00,-2.411130E+00,4.920067E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +110052,fr,1,4.650000E+00,-2.411130E+00,4.920067E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +110056,fr,1,4.650000E+00,-2.411130E+00,4.920067E+01,1.500000E+01,Active Shallow Crust,2.400117E+02,5.799443E+01,0.000000E+00 +110400,fr,1,3.550000E+00,2.609800E-01,5.016823E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +110402,fr,1,3.550000E+00,2.609800E-01,5.016823E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +110406,fr,1,3.550000E+00,2.609800E-01,5.016823E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,-9.000000E+01 +110455,fr,1,3.950000E+00,2.609800E-01,5.016823E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,-9.000000E+01 +110484,fr,1,4.250000E+00,2.609800E-01,5.016823E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +110499,fr,1,4.350000E+00,2.609800E-01,5.016823E+01,5.000000E+00,Active Shallow Crust,2.400093E+02,5.799612E+01,0.000000E+00 +110502,fr,1,4.350000E+00,2.609800E-01,5.016823E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,-9.000000E+01 +110514,fr,1,4.450000E+00,2.609800E-01,5.016823E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +110546,fr,1,4.750000E+00,2.609800E-01,5.016823E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +110601,fr,1,5.150000E+00,2.609800E-01,5.016823E+01,5.000000E+00,Active Shallow Crust,1.288818E+02,8.999104E+01,0.000000E+00 +110881,fr,3,3.550000E+00,6.677170E+00,4.510387E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999288E+01,0.000000E+00 +110884,fr,1,3.550000E+00,6.677170E+00,4.510387E+01,1.500000E+01,Active Shallow Crust,2.400129E+02,5.799795E+01,0.000000E+00 +110892,fr,2,3.650000E+00,6.677170E+00,4.510387E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998731E+01,0.000000E+00 +110893,fr,1,3.650000E+00,6.677170E+00,4.510387E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998731E+01,0.000000E+00 +110897,fr,1,3.650000E+00,6.677170E+00,4.510387E+01,2.750000E+01,Active Shallow Crust,2.400011E+02,5.801327E+01,0.000000E+00 +110916,fr,2,3.850000E+00,6.677170E+00,4.510387E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +110917,fr,1,3.850000E+00,6.677170E+00,4.510387E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +110922,fr,1,3.850000E+00,6.677170E+00,4.510387E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,-9.000000E+01 +110928,fr,1,3.950000E+00,6.677170E+00,4.510387E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999102E+01,0.000000E+00 +110929,fr,1,3.950000E+00,6.677170E+00,4.510387E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999102E+01,0.000000E+00 +110937,fr,1,3.950000E+00,6.677170E+00,4.510387E+01,5.000000E+00,Active Shallow Crust,1.288996E+02,8.999326E+01,0.000000E+00 +110940,fr,1,4.050000E+00,6.677170E+00,4.510387E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999200E+01,0.000000E+00 +110943,fr,1,4.050000E+00,6.677170E+00,4.510387E+01,5.000000E+00,Active Shallow Crust,2.400055E+02,5.800548E+01,0.000000E+00 +110952,fr,1,4.150000E+00,6.677170E+00,4.510387E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +110956,fr,1,4.150000E+00,6.677170E+00,4.510387E+01,1.500000E+01,Active Shallow Crust,2.400085E+02,5.799739E+01,0.000000E+00 +110962,fr,1,4.150000E+00,6.677170E+00,4.510387E+01,1.500000E+01,Active Shallow Crust,1.288971E+02,8.999465E+01,0.000000E+00 +110972,fr,1,4.250000E+00,6.677170E+00,4.510387E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999035E+01,-9.000000E+01 +111002,fr,1,4.550000E+00,6.677170E+00,4.510387E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +111003,fr,1,4.550000E+00,6.677170E+00,4.510387E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.799752E+01,0.000000E+00 +111004,fr,1,4.550000E+00,6.677170E+00,4.510387E+01,1.500000E+01,Active Shallow Crust,2.400089E+02,5.799754E+01,0.000000E+00 +111009,fr,1,4.550000E+00,6.677170E+00,4.510387E+01,5.000000E+00,Active Shallow Crust,1.288946E+02,8.998557E+01,0.000000E+00 +111223,fr,1,6.350000E+00,6.677170E+00,4.510387E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +111360,fr,2,3.550000E+00,2.756410E+00,4.190445E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998874E+01,0.000000E+00 +111361,fr,2,3.550000E+00,2.756410E+00,4.190445E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998874E+01,0.000000E+00 +111365,fr,1,3.550000E+00,2.756410E+00,4.190445E+01,2.750000E+01,Active Shallow Crust,2.400118E+02,5.799814E+01,0.000000E+00 +111372,fr,2,3.650000E+00,2.756410E+00,4.190445E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +111373,fr,1,3.650000E+00,2.756410E+00,4.190445E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +111374,fr,1,3.650000E+00,2.756410E+00,4.190445E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +111378,fr,1,3.650000E+00,2.756410E+00,4.190445E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +111381,fr,1,3.650000E+00,2.756410E+00,4.190445E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.996343E+01,0.000000E+00 +111384,fr,1,3.750000E+00,2.756410E+00,4.190445E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999106E+01,0.000000E+00 +111385,fr,1,3.750000E+00,2.756410E+00,4.190445E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999106E+01,0.000000E+00 +111391,fr,1,3.750000E+00,2.756410E+00,4.190445E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999095E+01,-9.000000E+01 +111396,fr,1,3.850000E+00,2.756410E+00,4.190445E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +111406,fr,1,3.850000E+00,2.756410E+00,4.190445E+01,1.500000E+01,Active Shallow Crust,1.288962E+02,8.999336E+01,0.000000E+00 +111408,fr,1,3.950000E+00,2.756410E+00,4.190445E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +111409,fr,1,3.950000E+00,2.756410E+00,4.190445E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +111444,fr,1,4.250000E+00,2.756410E+00,4.190445E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +111445,fr,1,4.250000E+00,2.756410E+00,4.190445E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +111447,fr,1,4.250000E+00,2.756410E+00,4.190445E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.799390E+01,0.000000E+00 +111450,fr,1,4.250000E+00,2.756410E+00,4.190445E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,-9.000000E+01 +111456,fr,2,4.350000E+00,2.756410E+00,4.190445E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +111469,fr,1,4.450000E+00,2.756410E+00,4.190445E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +111471,fr,1,4.450000E+00,2.756410E+00,4.190445E+01,5.000000E+00,Active Shallow Crust,2.400042E+02,5.799455E+01,0.000000E+00 +111506,fr,1,4.750000E+00,2.756410E+00,4.190445E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +111589,fr,1,5.450000E+00,2.756410E+00,4.190445E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +111600,fr,1,5.550000E+00,2.756410E+00,4.190445E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +111607,fr,1,5.550000E+00,2.756410E+00,4.190445E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,-9.000000E+01 +111614,fr,1,5.650000E+00,2.756410E+00,4.190445E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +111840,fr,1,3.550000E+00,4.491010E+00,4.766841E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999321E+01,0.000000E+00 +111841,fr,1,3.550000E+00,4.491010E+00,4.766841E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999321E+01,0.000000E+00 +111856,fr,1,3.650000E+00,4.491010E+00,4.766841E+01,1.500000E+01,Active Shallow Crust,2.400002E+02,5.801374E+01,0.000000E+00 +111858,fr,1,3.650000E+00,4.491010E+00,4.766841E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998775E+01,-9.000000E+01 +111864,fr,1,3.750000E+00,4.491010E+00,4.766841E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +111906,fr,1,4.050000E+00,4.491010E+00,4.766841E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998841E+01,-9.000000E+01 +111961,fr,1,4.550000E+00,4.491010E+00,4.766841E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +111965,fr,1,4.550000E+00,4.491010E+00,4.766841E+01,2.750000E+01,Active Shallow Crust,2.400094E+02,5.799756E+01,0.000000E+00 +112104,fr,1,5.750000E+00,4.491010E+00,4.766841E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +112323,fr,1,3.550000E+00,-2.663000E-01,4.245904E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799806E+01,0.000000E+00 +112332,fr,1,3.650000E+00,-2.663000E-01,4.245904E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +112333,fr,1,3.650000E+00,-2.663000E-01,4.245904E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +112344,fr,1,3.750000E+00,-2.663000E-01,4.245904E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +112369,fr,1,3.950000E+00,-2.663000E-01,4.245904E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +112800,fr,2,3.550000E+00,-3.646260E+00,4.760361E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +112802,fr,1,3.550000E+00,-3.646260E+00,4.760361E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +112812,fr,2,3.650000E+00,-3.646260E+00,4.760361E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +112824,fr,2,3.750000E+00,-3.646260E+00,4.760361E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +112826,fr,1,3.750000E+00,-3.646260E+00,4.760361E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +112827,fr,1,3.750000E+00,-3.646260E+00,4.760361E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801788E+01,0.000000E+00 +112828,fr,1,3.750000E+00,-3.646260E+00,4.760361E+01,1.500000E+01,Active Shallow Crust,2.400083E+02,5.801788E+01,0.000000E+00 +112837,fr,1,3.850000E+00,-3.646260E+00,4.760361E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +112857,fr,1,3.950000E+00,-3.646260E+00,4.760361E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.999357E+01,0.000000E+00 +113304,fr,1,3.750000E+00,-6.815200E+00,4.890484E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +113760,fr,1,3.550000E+00,3.203940E+00,4.344153E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998902E+01,0.000000E+00 +113784,fr,1,3.750000E+00,3.203940E+00,4.344153E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999128E+01,0.000000E+00 +113830,fr,1,4.050000E+00,3.203940E+00,4.344153E+01,1.500000E+01,Active Shallow Crust,1.288909E+02,8.999383E+01,0.000000E+00 +113910,fr,1,4.750000E+00,3.203940E+00,4.344153E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,-9.000000E+01 +114240,fr,2,3.550000E+00,6.290190E+00,4.765260E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999321E+01,0.000000E+00 +114241,fr,1,3.550000E+00,6.290190E+00,4.765260E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999321E+01,0.000000E+00 +114247,fr,1,3.550000E+00,6.290190E+00,4.765260E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999313E+01,-9.000000E+01 +114252,fr,2,3.650000E+00,6.290190E+00,4.765260E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998789E+01,0.000000E+00 +114264,fr,1,3.750000E+00,6.290190E+00,4.765260E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +114279,fr,1,3.850000E+00,6.290190E+00,4.765260E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799739E+01,0.000000E+00 +114300,fr,3,4.050000E+00,6.290190E+00,4.765260E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998854E+01,0.000000E+00 +114322,fr,1,4.150000E+00,6.290190E+00,4.765260E+01,1.500000E+01,Active Shallow Crust,1.288979E+02,8.999319E+01,0.000000E+00 +114324,fr,1,4.250000E+00,6.290190E+00,4.765260E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999090E+01,0.000000E+00 +114342,fr,1,4.350000E+00,6.290190E+00,4.765260E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998906E+01,-9.000000E+01 +114349,fr,1,4.450000E+00,6.290190E+00,4.765260E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +114421,fr,1,5.050000E+00,6.290190E+00,4.765260E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +114436,fr,1,5.150000E+00,6.290190E+00,4.765260E+01,1.500000E+01,Active Shallow Crust,2.400203E+02,5.799999E+01,0.000000E+00 +114868,fr,1,4.750000E+00,-1.131970E+00,4.181336E+01,1.500000E+01,Active Shallow Crust,2.400060E+02,5.800413E+01,0.000000E+00 +115225,fr,1,3.750000E+00,-2.499100E-01,4.478428E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +115227,fr,1,3.750000E+00,-2.499100E-01,4.478428E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.801754E+01,0.000000E+00 +115245,fr,1,3.850000E+00,-2.499100E-01,4.478428E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999367E+01,0.000000E+00 +115281,fr,1,4.150000E+00,-2.499100E-01,4.478428E+01,5.000000E+00,Active Shallow Crust,1.288978E+02,8.999372E+01,0.000000E+00 +115365,fr,1,4.850000E+00,-2.499100E-01,4.478428E+01,5.000000E+00,Active Shallow Crust,1.288932E+02,8.998901E+01,0.000000E+00 +115680,fr,2,3.550000E+00,4.064650E+00,4.696711E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999312E+01,0.000000E+00 +115693,fr,1,3.650000E+00,4.064650E+00,4.696711E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998773E+01,0.000000E+00 +115694,fr,1,3.650000E+00,4.064650E+00,4.696711E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998773E+01,0.000000E+00 +115728,fr,1,3.950000E+00,4.064650E+00,4.696711E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999132E+01,0.000000E+00 +115752,fr,1,4.150000E+00,4.064650E+00,4.696711E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +115765,fr,1,4.250000E+00,4.064650E+00,4.696711E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +115776,fr,1,4.350000E+00,4.064650E+00,4.696711E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +116640,fr,1,3.550000E+00,-2.503100E+00,4.373377E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +116641,fr,1,3.550000E+00,-2.503100E+00,4.373377E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +117121,fr,1,3.550000E+00,6.087210E+00,4.889694E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998674E+01,0.000000E+00 +117127,fr,1,3.550000E+00,6.087210E+00,4.889694E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999329E+01,-9.000000E+01 +117138,fr,1,3.650000E+00,6.087210E+00,4.889694E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998804E+01,-9.000000E+01 +117175,fr,1,3.950000E+00,6.087210E+00,4.889694E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999154E+01,-9.000000E+01 +117207,fr,1,4.250000E+00,6.087210E+00,4.889694E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.799452E+01,0.000000E+00 +117216,fr,1,4.350000E+00,6.087210E+00,4.889694E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +118129,fr,1,3.950000E+00,4.933960E+00,4.315724E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +118146,fr,1,4.050000E+00,4.933960E+00,4.315724E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999163E+01,-9.000000E+01 +118272,fr,1,5.150000E+00,4.933960E+00,4.315724E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +119040,fr,1,3.550000E+00,3.786670E+00,5.069508E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +119050,fr,2,3.550000E+00,3.786670E+00,5.069508E+01,1.500000E+01,Active Shallow Crust,1.288950E+02,8.999361E+01,0.000000E+00 +119058,fr,1,3.650000E+00,3.786670E+00,5.069508E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999136E+01,-9.000000E+01 +119064,fr,1,3.750000E+00,3.786670E+00,5.069508E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +119088,fr,1,3.950000E+00,3.786670E+00,5.069508E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +119089,fr,1,3.950000E+00,3.786670E+00,5.069508E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +119098,fr,1,3.950000E+00,3.786670E+00,5.069508E+01,1.500000E+01,Active Shallow Crust,1.288997E+02,8.999396E+01,0.000000E+00 +119185,fr,1,4.750000E+00,3.786670E+00,5.069508E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +119196,fr,1,4.850000E+00,3.786670E+00,5.069508E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +119208,fr,1,4.950000E+00,3.786670E+00,5.069508E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +119309,fr,1,5.750000E+00,3.786670E+00,5.069508E+01,2.750000E+01,Active Shallow Crust,2.400466E+02,5.800044E+01,0.000000E+00 +119568,fr,1,3.950000E+00,-3.616540E+00,5.057509E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +120000,fr,1,3.550000E+00,-4.423620E+00,4.943056E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998689E+01,0.000000E+00 +120029,fr,1,3.750000E+00,-4.423620E+00,4.943056E+01,2.750000E+01,Active Shallow Crust,2.400094E+02,5.801786E+01,0.000000E+00 +120960,fr,2,3.550000E+00,5.142400E+00,4.451312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999281E+01,0.000000E+00 +120966,fr,1,3.550000E+00,5.142400E+00,4.451312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999273E+01,-9.000000E+01 +120972,fr,1,3.650000E+00,5.142400E+00,4.451312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998718E+01,0.000000E+00 +120975,fr,1,3.650000E+00,5.142400E+00,4.451312E+01,5.000000E+00,Active Shallow Crust,2.400017E+02,5.801231E+01,0.000000E+00 +120976,fr,1,3.650000E+00,5.142400E+00,4.451312E+01,1.500000E+01,Active Shallow Crust,2.400017E+02,5.801231E+01,0.000000E+00 +120977,fr,1,3.650000E+00,5.142400E+00,4.451312E+01,2.750000E+01,Active Shallow Crust,2.400017E+02,5.801222E+01,0.000000E+00 +120979,fr,1,3.650000E+00,5.142400E+00,4.451312E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998704E+01,-9.000000E+01 +120996,fr,1,3.850000E+00,5.142400E+00,4.451312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +121018,fr,1,3.950000E+00,5.142400E+00,4.451312E+01,1.500000E+01,Active Shallow Crust,1.289005E+02,8.999546E+01,0.000000E+00 +121020,fr,1,4.050000E+00,5.142400E+00,4.451312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999191E+01,0.000000E+00 +121044,fr,1,4.250000E+00,5.142400E+00,4.451312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +121077,fr,1,4.450000E+00,5.142400E+00,4.451312E+01,5.000000E+00,Active Shallow Crust,1.288923E+02,8.999362E+01,0.000000E+00 +121143,fr,1,5.050000E+00,5.142400E+00,4.451312E+01,5.000000E+00,Active Shallow Crust,2.400211E+02,5.799745E+01,0.000000E+00 +121285,fr,1,6.250000E+00,5.142400E+00,4.451312E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +121470,fr,1,3.750000E+00,-2.848670E+00,4.672583E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998889E+01,-9.000000E+01 +121473,fr,1,3.750000E+00,-2.848670E+00,4.672583E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.996723E+01,0.000000E+00 +121488,fr,1,3.950000E+00,-2.848670E+00,4.672583E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +121550,fr,1,4.450000E+00,-2.848670E+00,4.672583E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +121588,fr,1,4.750000E+00,-2.848670E+00,4.672583E+01,1.500000E+01,Active Shallow Crust,2.400077E+02,5.800444E+01,0.000000E+00 +121944,fr,2,3.750000E+00,5.278190E+00,4.764937E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +121956,fr,1,3.850000E+00,5.278190E+00,4.764937E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +121974,fr,1,3.950000E+00,5.278190E+00,4.764937E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999133E+01,-9.000000E+01 +121980,fr,1,4.050000E+00,5.278190E+00,4.764937E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998854E+01,0.000000E+00 +121981,fr,1,4.050000E+00,5.278190E+00,4.764937E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998854E+01,0.000000E+00 +121993,fr,1,4.150000E+00,5.278190E+00,4.764937E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +122004,fr,1,4.250000E+00,5.278190E+00,4.764937E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999090E+01,0.000000E+00 +122400,fr,1,3.550000E+00,2.759200E+00,4.974938E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +122460,fr,1,4.050000E+00,2.759200E+00,4.974938E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +122499,fr,1,4.350000E+00,2.759200E+00,4.974938E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.799620E+01,0.000000E+00 +122608,fr,1,5.250000E+00,2.759200E+00,4.974938E+01,1.500000E+01,Active Shallow Crust,2.400277E+02,5.800069E+01,0.000000E+00 +122882,fr,1,3.550000E+00,4.093250E+00,5.147221E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998743E+01,0.000000E+00 +122905,fr,1,3.750000E+00,4.093250E+00,5.147221E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +122907,fr,1,3.750000E+00,4.093250E+00,5.147221E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801794E+01,0.000000E+00 +122928,fr,1,3.950000E+00,4.093250E+00,5.147221E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998811E+01,0.000000E+00 +122952,fr,1,4.150000E+00,4.093250E+00,5.147221E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +122964,fr,1,4.250000E+00,4.093250E+00,5.147221E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +123209,fr,1,6.250000E+00,4.093250E+00,5.147221E+01,2.750000E+01,Active Shallow Crust,2.400850E+02,5.800056E+01,0.000000E+00 +123361,fr,1,3.550000E+00,8.317760E+00,5.028226E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998711E+01,0.000000E+00 +123372,fr,1,3.650000E+00,8.317760E+00,5.028226E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998852E+01,0.000000E+00 +123385,fr,1,3.750000E+00,8.317760E+00,5.028226E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +123388,fr,1,3.750000E+00,8.317760E+00,5.028226E+01,1.500000E+01,Active Shallow Crust,2.400098E+02,5.801747E+01,0.000000E+00 +123396,fr,1,3.850000E+00,8.317760E+00,5.028226E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +123400,fr,1,3.850000E+00,8.317760E+00,5.028226E+01,1.500000E+01,Active Shallow Crust,2.400125E+02,5.799748E+01,0.000000E+00 +123410,fr,1,3.950000E+00,8.317760E+00,5.028226E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999187E+01,0.000000E+00 +123412,fr,1,3.950000E+00,8.317760E+00,5.028226E+01,1.500000E+01,Active Shallow Crust,2.400209E+02,5.800473E+01,0.000000E+00 +123420,fr,1,4.050000E+00,8.317760E+00,5.028226E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999275E+01,0.000000E+00 +123426,fr,1,4.050000E+00,8.317760E+00,5.028226E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999267E+01,-9.000000E+01 +123438,fr,1,4.150000E+00,8.317760E+00,5.028226E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998693E+01,-9.000000E+01 +123480,fr,1,4.550000E+00,8.317760E+00,5.028226E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999185E+01,0.000000E+00 +123528,fr,1,4.950000E+00,8.317760E+00,5.028226E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +123543,fr,1,5.050000E+00,8.317760E+00,5.028226E+01,5.000000E+00,Active Shallow Crust,2.400243E+02,5.799793E+01,0.000000E+00 +123865,fr,1,3.750000E+00,5.735790E+00,4.960434E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +123866,fr,1,3.750000E+00,5.735790E+00,4.960434E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +123888,fr,1,3.950000E+00,5.735790E+00,4.960434E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999175E+01,0.000000E+00 +124320,fr,1,3.550000E+00,4.884760E+00,4.733996E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999316E+01,0.000000E+00 +124323,fr,1,3.550000E+00,4.884760E+00,4.733996E+01,5.000000E+00,Active Shallow Crust,2.400135E+02,5.799706E+01,0.000000E+00 +124332,fr,2,3.650000E+00,4.884760E+00,4.733996E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998782E+01,0.000000E+00 +124365,fr,1,3.850000E+00,4.884760E+00,4.733996E+01,5.000000E+00,Active Shallow Crust,1.288949E+02,8.999274E+01,0.000000E+00 +124380,fr,1,4.050000E+00,4.884760E+00,4.733996E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998847E+01,0.000000E+00 +124392,fr,1,4.150000E+00,4.884760E+00,4.733996E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +124405,fr,1,4.250000E+00,4.884760E+00,4.733996E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +124406,fr,1,4.250000E+00,4.884760E+00,4.733996E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +124536,fr,1,5.350000E+00,4.884760E+00,4.733996E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +124800,fr,4,3.550000E+00,3.716400E+00,4.470692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +124801,fr,1,3.550000E+00,3.716400E+00,4.470692E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +124806,fr,1,3.550000E+00,3.716400E+00,4.470692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998913E+01,-9.000000E+01 +124813,fr,1,3.650000E+00,3.716400E+00,4.470692E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +124814,fr,1,3.650000E+00,3.716400E+00,4.470692E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +124815,fr,1,3.650000E+00,3.716400E+00,4.470692E+01,5.000000E+00,Active Shallow Crust,2.400005E+02,5.801276E+01,0.000000E+00 +124848,fr,1,3.950000E+00,3.716400E+00,4.470692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999096E+01,0.000000E+00 +124857,fr,1,3.950000E+00,3.716400E+00,4.470692E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.999435E+01,0.000000E+00 +124884,fr,1,4.250000E+00,3.716400E+00,4.470692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +124886,fr,1,4.250000E+00,3.716400E+00,4.470692E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +124897,fr,1,4.350000E+00,3.716400E+00,4.470692E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +124924,fr,1,4.550000E+00,3.716400E+00,4.470692E+01,1.500000E+01,Active Shallow Crust,2.400090E+02,5.799714E+01,0.000000E+00 +125103,fr,1,6.050000E+00,3.716400E+00,4.470692E+01,5.000000E+00,Active Shallow Crust,2.400535E+02,5.799967E+01,0.000000E+00 +125280,fr,1,3.550000E+00,-2.042600E-01,4.600842E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +125281,fr,2,3.550000E+00,-2.042600E-01,4.600842E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +125282,fr,1,3.550000E+00,-2.042600E-01,4.600842E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +125292,fr,1,3.650000E+00,-2.042600E-01,4.600842E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +125295,fr,2,3.650000E+00,-2.042600E-01,4.600842E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801287E+01,0.000000E+00 +125298,fr,1,3.650000E+00,-2.042600E-01,4.600842E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +125316,fr,1,3.850000E+00,-2.042600E-01,4.600842E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +125333,fr,1,3.950000E+00,-2.042600E-01,4.600842E+01,2.750000E+01,Active Shallow Crust,2.400197E+02,5.800495E+01,0.000000E+00 +125335,fr,1,3.950000E+00,-2.042600E-01,4.600842E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +125337,fr,1,3.950000E+00,-2.042600E-01,4.600842E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.999372E+01,0.000000E+00 +125344,fr,1,4.050000E+00,-2.042600E-01,4.600842E+01,1.500000E+01,Active Shallow Crust,2.400059E+02,5.800578E+01,0.000000E+00 +125345,fr,1,4.050000E+00,-2.042600E-01,4.600842E+01,2.750000E+01,Active Shallow Crust,2.400059E+02,5.800578E+01,0.000000E+00 +125356,fr,1,4.150000E+00,-2.042600E-01,4.600842E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.799732E+01,0.000000E+00 +125364,fr,1,4.250000E+00,-2.042600E-01,4.600842E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +125425,fr,1,4.750000E+00,-2.042600E-01,4.600842E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +125775,fr,1,3.650000E+00,-2.946600E-01,4.163122E+01,5.000000E+00,Active Shallow Crust,2.400006E+02,5.801286E+01,0.000000E+00 +125776,fr,1,3.650000E+00,-2.946600E-01,4.163122E+01,1.500000E+01,Active Shallow Crust,2.400006E+02,5.801286E+01,0.000000E+00 +125880,fr,1,4.550000E+00,-2.946600E-01,4.163122E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +125918,fr,1,4.850000E+00,-2.946600E-01,4.163122E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +126294,fr,1,3.950000E+00,-4.127090E+00,4.959296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999165E+01,-9.000000E+01 +126372,fr,1,4.650000E+00,-4.127090E+00,4.959296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +126724,fr,1,3.550000E+00,-2.576300E-01,5.183805E+01,1.500000E+01,Active Shallow Crust,2.400128E+02,5.799825E+01,0.000000E+00 +126741,fr,1,3.650000E+00,-2.576300E-01,5.183805E+01,5.000000E+00,Active Shallow Crust,1.289000E+02,8.996352E+01,0.000000E+00 +126747,fr,1,3.750000E+00,-2.576300E-01,5.183805E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.801769E+01,0.000000E+00 +126748,fr,1,3.750000E+00,-2.576300E-01,5.183805E+01,1.500000E+01,Active Shallow Crust,2.400090E+02,5.801769E+01,0.000000E+00 +126831,fr,1,4.450000E+00,-2.576300E-01,5.183805E+01,5.000000E+00,Active Shallow Crust,2.400068E+02,5.799495E+01,0.000000E+00 +128161,fr,2,3.550000E+00,6.026820E+00,4.436378E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999279E+01,0.000000E+00 +128169,fr,1,3.550000E+00,6.026820E+00,4.436378E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999279E+01,0.000000E+00 +128172,fr,1,3.650000E+00,6.026820E+00,4.436378E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998715E+01,0.000000E+00 +128173,fr,1,3.650000E+00,6.026820E+00,4.436378E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998715E+01,0.000000E+00 +128196,fr,1,3.850000E+00,6.026820E+00,4.436378E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +128220,fr,1,4.050000E+00,6.026820E+00,4.436378E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999189E+01,0.000000E+00 +128226,fr,1,4.050000E+00,6.026820E+00,4.436378E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999180E+01,-9.000000E+01 +128238,fr,1,4.150000E+00,6.026820E+00,4.436378E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,-9.000000E+01 +128245,fr,2,4.250000E+00,6.026820E+00,4.436378E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +128259,fr,1,4.350000E+00,6.026820E+00,4.436378E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799549E+01,0.000000E+00 +128269,fr,1,4.450000E+00,6.026820E+00,4.436378E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +128305,fr,1,4.750000E+00,6.026820E+00,4.436378E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +128463,fr,1,6.050000E+00,6.026820E+00,4.436378E+01,5.000000E+00,Active Shallow Crust,2.400530E+02,5.799961E+01,0.000000E+00 +128640,fr,1,3.550000E+00,9.110600E-01,4.515001E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +128658,fr,1,3.650000E+00,9.110600E-01,4.515001E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,-9.000000E+01 +128715,fr,1,4.150000E+00,9.110600E-01,4.515001E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799718E+01,0.000000E+00 +128727,fr,1,4.250000E+00,9.110600E-01,4.515001E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.799403E+01,0.000000E+00 +128748,fr,1,4.450000E+00,9.110600E-01,4.515001E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +129162,fr,1,3.850000E+00,-5.630010E+00,4.780371E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,-9.000000E+01 +129180,fr,1,4.050000E+00,-5.630010E+00,4.780371E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998857E+01,0.000000E+00 +129600,fr,8,3.550000E+00,6.923510E+00,4.644066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999305E+01,0.000000E+00 +129601,fr,4,3.550000E+00,6.923510E+00,4.644066E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999305E+01,0.000000E+00 +129603,fr,2,3.550000E+00,6.923510E+00,4.644066E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799721E+01,0.000000E+00 +129604,fr,1,3.550000E+00,6.923510E+00,4.644066E+01,1.500000E+01,Active Shallow Crust,2.400125E+02,5.799721E+01,0.000000E+00 +129606,fr,1,3.550000E+00,6.923510E+00,4.644066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999297E+01,-9.000000E+01 +129607,fr,1,3.550000E+00,6.923510E+00,4.644066E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999297E+01,-9.000000E+01 +129610,fr,1,3.550000E+00,6.923510E+00,4.644066E+01,1.500000E+01,Active Shallow Crust,1.288970E+02,8.999305E+01,0.000000E+00 +129612,fr,7,3.650000E+00,6.923510E+00,4.644066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998761E+01,0.000000E+00 +129613,fr,1,3.650000E+00,6.923510E+00,4.644066E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998761E+01,0.000000E+00 +129614,fr,1,3.650000E+00,6.923510E+00,4.644066E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998761E+01,0.000000E+00 +129618,fr,1,3.650000E+00,6.923510E+00,4.644066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998747E+01,-9.000000E+01 +129622,fr,1,3.650000E+00,6.923510E+00,4.644066E+01,1.500000E+01,Active Shallow Crust,1.289012E+02,8.996352E+01,0.000000E+00 +129624,fr,5,3.750000E+00,6.923510E+00,4.644066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998896E+01,0.000000E+00 +129627,fr,2,3.750000E+00,6.923510E+00,4.644066E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.801713E+01,0.000000E+00 +129628,fr,2,3.750000E+00,6.923510E+00,4.644066E+01,1.500000E+01,Active Shallow Crust,2.400088E+02,5.801713E+01,0.000000E+00 +129631,fr,1,3.750000E+00,6.923510E+00,4.644066E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998883E+01,-9.000000E+01 +129633,fr,1,3.750000E+00,6.923510E+00,4.644066E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.996749E+01,0.000000E+00 +129636,fr,7,3.850000E+00,6.923510E+00,4.644066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +129637,fr,3,3.850000E+00,6.923510E+00,4.644066E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +129642,fr,2,3.850000E+00,6.923510E+00,4.644066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +129643,fr,2,3.850000E+00,6.923510E+00,4.644066E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +129645,fr,1,3.850000E+00,6.923510E+00,4.644066E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999508E+01,0.000000E+00 +129648,fr,6,3.950000E+00,6.923510E+00,4.644066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +129649,fr,1,3.950000E+00,6.923510E+00,4.644066E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +129650,fr,2,3.950000E+00,6.923510E+00,4.644066E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +129651,fr,1,3.950000E+00,6.923510E+00,4.644066E+01,5.000000E+00,Active Shallow Crust,2.400187E+02,5.800568E+01,0.000000E+00 +129652,fr,2,3.950000E+00,6.923510E+00,4.644066E+01,1.500000E+01,Active Shallow Crust,2.400187E+02,5.800568E+01,0.000000E+00 +129656,fr,1,3.950000E+00,6.923510E+00,4.644066E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999113E+01,-9.000000E+01 +129660,fr,3,4.050000E+00,6.923510E+00,4.644066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998827E+01,0.000000E+00 +129666,fr,1,4.050000E+00,6.923510E+00,4.644066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998814E+01,-9.000000E+01 +129668,fr,1,4.050000E+00,6.923510E+00,4.644066E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998814E+01,-9.000000E+01 +129672,fr,3,4.150000E+00,6.923510E+00,4.644066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +129673,fr,1,4.150000E+00,6.923510E+00,4.644066E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +129684,fr,2,4.250000E+00,6.923510E+00,4.644066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +129685,fr,1,4.250000E+00,6.923510E+00,4.644066E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +129693,fr,1,4.250000E+00,6.923510E+00,4.644066E+01,5.000000E+00,Active Shallow Crust,1.288949E+02,8.998094E+01,0.000000E+00 +129696,fr,1,4.350000E+00,6.923510E+00,4.644066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998894E+01,0.000000E+00 +129697,fr,1,4.350000E+00,6.923510E+00,4.644066E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998894E+01,0.000000E+00 +129698,fr,1,4.350000E+00,6.923510E+00,4.644066E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998894E+01,0.000000E+00 +129702,fr,1,4.350000E+00,6.923510E+00,4.644066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998881E+01,-9.000000E+01 +129704,fr,1,4.350000E+00,6.923510E+00,4.644066E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998881E+01,-9.000000E+01 +129705,fr,2,4.350000E+00,6.923510E+00,4.644066E+01,5.000000E+00,Active Shallow Crust,1.288983E+02,8.998251E+01,0.000000E+00 +129711,fr,1,4.450000E+00,6.923510E+00,4.644066E+01,5.000000E+00,Active Shallow Crust,2.400056E+02,5.799436E+01,0.000000E+00 +129715,fr,1,4.450000E+00,6.923510E+00,4.644066E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +129718,fr,1,4.450000E+00,6.923510E+00,4.644066E+01,1.500000E+01,Active Shallow Crust,1.288923E+02,8.999384E+01,0.000000E+00 +129720,fr,1,4.550000E+00,6.923510E+00,4.644066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +129732,fr,1,4.650000E+00,6.923510E+00,4.644066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +129735,fr,1,4.650000E+00,6.923510E+00,4.644066E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.799427E+01,0.000000E+00 +129744,fr,1,4.750000E+00,6.923510E+00,4.644066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +129746,fr,1,4.750000E+00,6.923510E+00,4.644066E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +129747,fr,1,4.750000E+00,6.923510E+00,4.644066E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.800454E+01,0.000000E+00 +129792,fr,1,5.150000E+00,6.923510E+00,4.644066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +129795,fr,1,5.150000E+00,6.923510E+00,4.644066E+01,5.000000E+00,Active Shallow Crust,2.400197E+02,5.799984E+01,0.000000E+00 +129805,fr,1,5.250000E+00,6.923510E+00,4.644066E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +129840,fr,1,5.550000E+00,6.923510E+00,4.644066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +130080,fr,1,3.550000E+00,5.665180E+00,4.667261E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999308E+01,0.000000E+00 +130086,fr,1,3.550000E+00,5.665180E+00,4.667261E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999300E+01,-9.000000E+01 +130088,fr,1,3.550000E+00,5.665180E+00,4.667261E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999300E+01,-9.000000E+01 +130092,fr,1,3.650000E+00,5.665180E+00,4.667261E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998766E+01,0.000000E+00 +130104,fr,1,3.750000E+00,5.665180E+00,4.667261E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +130116,fr,2,3.850000E+00,5.665180E+00,4.667261E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +130204,fr,1,4.550000E+00,5.665180E+00,4.667261E+01,1.500000E+01,Active Shallow Crust,2.400093E+02,5.799729E+01,0.000000E+00 +130392,fr,1,6.150000E+00,5.665183E+00,4.667261E+01,6.011322E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +130572,fr,1,3.650000E+00,6.488800E-01,4.794485E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +130588,fr,1,3.750000E+00,6.488800E-01,4.794485E+01,1.500000E+01,Active Shallow Crust,2.400085E+02,5.801762E+01,0.000000E+00 +130590,fr,1,3.750000E+00,6.488800E-01,4.794485E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,-9.000000E+01 +130623,fr,1,4.050000E+00,6.488800E-01,4.794485E+01,5.000000E+00,Active Shallow Crust,2.400061E+02,5.800587E+01,0.000000E+00 +131040,fr,1,3.550000E+00,2.566090E+00,4.294411E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998893E+01,0.000000E+00 +131046,fr,1,3.550000E+00,2.566090E+00,4.294411E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998880E+01,-9.000000E+01 +131055,fr,1,3.650000E+00,2.566090E+00,4.294411E+01,5.000000E+00,Active Shallow Crust,2.400006E+02,5.801228E+01,0.000000E+00 +131064,fr,2,3.750000E+00,2.566090E+00,4.294411E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +131076,fr,2,3.850000E+00,2.566090E+00,4.294411E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +131078,fr,1,3.850000E+00,2.566090E+00,4.294411E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +131085,fr,1,3.850000E+00,2.566090E+00,4.294411E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999477E+01,0.000000E+00 +131088,fr,1,3.950000E+00,2.566090E+00,4.294411E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +131119,fr,1,4.150000E+00,2.566090E+00,4.294411E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,-9.000000E+01 +131124,fr,1,4.250000E+00,2.566090E+00,4.294411E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +131125,fr,1,4.250000E+00,2.566090E+00,4.294411E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +131133,fr,1,4.250000E+00,2.566090E+00,4.294411E+01,5.000000E+00,Active Shallow Crust,1.288951E+02,8.998081E+01,0.000000E+00 +131137,fr,1,4.350000E+00,2.566090E+00,4.294411E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +131148,fr,2,4.450000E+00,2.566090E+00,4.294411E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +131187,fr,1,4.750000E+00,2.566090E+00,4.294411E+01,5.000000E+00,Active Shallow Crust,2.400064E+02,5.800424E+01,0.000000E+00 +131208,fr,1,4.950000E+00,2.566090E+00,4.294411E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +132000,fr,3,3.550000E+00,6.405000E-01,4.241258E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +132002,fr,1,3.550000E+00,6.405000E-01,4.241258E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +132005,fr,1,3.550000E+00,6.405000E-01,4.241258E+01,2.750000E+01,Active Shallow Crust,2.400119E+02,5.799793E+01,0.000000E+00 +132007,fr,1,3.550000E+00,6.405000E-01,4.241258E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +132012,fr,2,3.650000E+00,6.405000E-01,4.241258E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +132013,fr,1,3.650000E+00,6.405000E-01,4.241258E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +132021,fr,1,3.650000E+00,6.405000E-01,4.241258E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996352E+01,0.000000E+00 +132024,fr,1,3.750000E+00,6.405000E-01,4.241258E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +132036,fr,1,3.850000E+00,6.405000E-01,4.241258E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +132037,fr,1,3.850000E+00,6.405000E-01,4.241258E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +132048,fr,2,3.950000E+00,6.405000E-01,4.241258E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +132050,fr,1,3.950000E+00,6.405000E-01,4.241258E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +132068,fr,1,4.050000E+00,6.405000E-01,4.241258E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +132084,fr,1,4.250000E+00,6.405000E-01,4.241258E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +132087,fr,1,4.250000E+00,6.405000E-01,4.241258E+01,5.000000E+00,Active Shallow Crust,2.400068E+02,5.799391E+01,0.000000E+00 +132097,fr,1,4.350000E+00,6.405000E-01,4.241258E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +132102,fr,1,4.350000E+00,6.405000E-01,4.241258E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +132291,fr,1,5.950000E+00,6.405000E-01,4.241258E+01,5.000000E+00,Active Shallow Crust,2.400455E+02,5.799962E+01,0.000000E+00 +132480,fr,1,3.550000E+00,-3.670970E+00,4.922948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +132493,fr,1,3.650000E+00,-3.670970E+00,4.922948E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +132516,fr,1,3.850000E+00,-3.670970E+00,4.922948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +132520,fr,1,3.850000E+00,-3.670970E+00,4.922948E+01,1.500000E+01,Active Shallow Crust,2.400114E+02,5.799752E+01,0.000000E+00 +132624,fr,1,4.750000E+00,-3.670970E+00,4.922948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +132642,fr,1,4.850000E+00,-3.670970E+00,4.922948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,-9.000000E+01 +132651,fr,1,4.950000E+00,-3.670970E+00,4.922948E+01,5.000000E+00,Active Shallow Crust,2.400132E+02,5.800475E+01,0.000000E+00 +132960,fr,1,3.550000E+00,4.459190E+00,4.025740E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999230E+01,0.000000E+00 +132972,fr,1,3.650000E+00,4.459190E+00,4.025740E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999314E+01,0.000000E+00 +132984,fr,1,3.750000E+00,4.459190E+00,4.025740E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998778E+01,0.000000E+00 +132985,fr,1,3.750000E+00,4.459190E+00,4.025740E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998778E+01,0.000000E+00 +133005,fr,1,3.850000E+00,4.459190E+00,4.025740E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999455E+01,0.000000E+00 +133021,fr,1,4.050000E+00,4.459190E+00,4.025740E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999135E+01,0.000000E+00 +133452,fr,2,3.650000E+00,1.557800E-01,4.481917E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +133465,fr,1,3.750000E+00,1.557800E-01,4.481917E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +133545,fr,1,4.350000E+00,1.557800E-01,4.481917E+01,5.000000E+00,Active Shallow Crust,1.288981E+02,8.998276E+01,0.000000E+00 +133926,fr,1,3.550000E+00,3.030100E+00,4.551829E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998928E+01,-9.000000E+01 +133929,fr,1,3.550000E+00,3.030100E+00,4.551829E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999470E+01,0.000000E+00 +133932,fr,3,3.650000E+00,3.030100E+00,4.551829E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +133933,fr,1,3.650000E+00,3.030100E+00,4.551829E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +133945,fr,1,3.750000E+00,3.030100E+00,4.551829E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +133952,fr,1,3.750000E+00,3.030100E+00,4.551829E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998865E+01,-9.000000E+01 +133956,fr,1,3.850000E+00,3.030100E+00,4.551829E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +133968,fr,1,3.950000E+00,3.030100E+00,4.551829E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999108E+01,0.000000E+00 +133983,fr,1,4.050000E+00,3.030100E+00,4.551829E+01,5.000000E+00,Active Shallow Crust,2.400056E+02,5.800563E+01,0.000000E+00 +134022,fr,1,4.350000E+00,3.030100E+00,4.551829E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +134041,fr,1,4.550000E+00,3.030100E+00,4.551829E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +134068,fr,1,4.750000E+00,3.030100E+00,4.551829E+01,1.500000E+01,Active Shallow Crust,2.400071E+02,5.800439E+01,0.000000E+00 +134400,fr,1,3.550000E+00,-1.888510E+00,4.977375E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +134436,fr,1,3.850000E+00,-1.888510E+00,4.977375E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +134439,fr,1,3.850000E+00,-1.888510E+00,4.977375E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799786E+01,0.000000E+00 +134441,fr,1,3.850000E+00,-1.888510E+00,4.977375E+01,2.750000E+01,Active Shallow Crust,2.400114E+02,5.799786E+01,0.000000E+00 +134880,fr,1,3.550000E+00,4.129800E-01,4.456949E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +134883,fr,1,3.550000E+00,4.129800E-01,4.456949E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799813E+01,0.000000E+00 +134894,fr,1,3.650000E+00,4.129800E-01,4.456949E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +134952,fr,1,4.150000E+00,4.129800E-01,4.456949E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +134953,fr,1,4.150000E+00,4.129800E-01,4.456949E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +135036,fr,1,4.850000E+00,4.129800E-01,4.456949E+01,5.000000E+00,Active Shallow Crust,3.599999E+02,8.999004E+01,0.000000E+00 +135384,fr,1,3.750000E+00,1.164790E+00,4.489954E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +135388,fr,1,3.750000E+00,1.164790E+00,4.489954E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.801782E+01,0.000000E+00 +135396,fr,1,3.850000E+00,1.164790E+00,4.489954E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +135409,fr,1,3.950000E+00,1.164790E+00,4.489954E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +135432,fr,1,4.150000E+00,1.164790E+00,4.489954E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +135444,fr,1,4.250000E+00,1.164790E+00,4.489954E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +135745,fr,1,6.750000E+00,1.164790E+00,4.489954E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +135840,fr,1,3.550000E+00,8.584870E+00,5.006161E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998705E+01,0.000000E+00 +135841,fr,2,3.550000E+00,8.584870E+00,5.006161E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998705E+01,0.000000E+00 +135843,fr,1,3.550000E+00,8.584870E+00,5.006161E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799848E+01,0.000000E+00 +135846,fr,1,3.550000E+00,8.584870E+00,5.006161E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998690E+01,-9.000000E+01 +135855,fr,1,3.650000E+00,8.584870E+00,5.006161E+01,5.000000E+00,Active Shallow Crust,2.399999E+02,5.801350E+01,0.000000E+00 +135864,fr,1,3.750000E+00,8.584870E+00,5.006161E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +135865,fr,2,3.750000E+00,8.584870E+00,5.006161E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +135866,fr,1,3.750000E+00,8.584870E+00,5.006161E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +135873,fr,1,3.750000E+00,8.584870E+00,5.006161E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.996755E+01,0.000000E+00 +135876,fr,1,3.850000E+00,8.584870E+00,5.006161E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +135877,fr,1,3.850000E+00,8.584870E+00,5.006161E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +135888,fr,1,3.950000E+00,8.584870E+00,5.006161E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999183E+01,0.000000E+00 +135889,fr,1,3.950000E+00,8.584870E+00,5.006161E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999183E+01,0.000000E+00 +135928,fr,1,4.250000E+00,8.584870E+00,5.006161E+01,1.500000E+01,Active Shallow Crust,2.400083E+02,5.799378E+01,0.000000E+00 +135936,fr,1,4.350000E+00,8.584870E+00,5.006161E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +135960,fr,1,4.550000E+00,8.584870E+00,5.006161E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999181E+01,0.000000E+00 +135984,fr,1,4.750000E+00,8.584870E+00,5.006161E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +136032,fr,1,5.150000E+00,8.584870E+00,5.006161E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +136053,fr,1,5.250000E+00,8.584870E+00,5.006161E+01,5.000000E+00,Active Shallow Crust,1.288858E+02,8.998693E+01,0.000000E+00 +136320,fr,3,3.550000E+00,5.562410E+00,5.057379E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998719E+01,0.000000E+00 +136321,fr,2,3.550000E+00,5.562410E+00,5.057379E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998719E+01,0.000000E+00 +136322,fr,1,3.550000E+00,5.562410E+00,5.057379E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998719E+01,0.000000E+00 +136323,fr,2,3.550000E+00,5.562410E+00,5.057379E+01,5.000000E+00,Active Shallow Crust,2.400132E+02,5.799822E+01,0.000000E+00 +136326,fr,1,3.550000E+00,5.562410E+00,5.057379E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998705E+01,-9.000000E+01 +136328,fr,1,3.550000E+00,5.562410E+00,5.057379E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998705E+01,-9.000000E+01 +136332,fr,1,3.650000E+00,5.562410E+00,5.057379E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +136333,fr,1,3.650000E+00,5.562410E+00,5.057379E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +136334,fr,1,3.650000E+00,5.562410E+00,5.057379E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +136335,fr,1,3.650000E+00,5.562410E+00,5.057379E+01,5.000000E+00,Active Shallow Crust,2.400023E+02,5.801229E+01,0.000000E+00 +136341,fr,1,3.650000E+00,5.562410E+00,5.057379E+01,5.000000E+00,Active Shallow Crust,1.289006E+02,8.996360E+01,0.000000E+00 +136345,fr,2,3.750000E+00,5.562410E+00,5.057379E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +136357,fr,1,3.850000E+00,5.562410E+00,5.057379E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +136362,fr,1,3.850000E+00,5.562410E+00,5.057379E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999083E+01,-9.000000E+01 +136369,fr,2,3.950000E+00,5.562410E+00,5.057379E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999192E+01,0.000000E+00 +136381,fr,1,4.050000E+00,5.562410E+00,5.057379E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +136404,fr,1,4.250000E+00,5.562410E+00,5.057379E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +136410,fr,2,4.250000E+00,5.562410E+00,5.057379E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999132E+01,-9.000000E+01 +136416,fr,4,4.350000E+00,5.562410E+00,5.057379E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +136440,fr,1,4.550000E+00,5.562410E+00,5.057379E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +136441,fr,1,4.550000E+00,5.562410E+00,5.057379E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +136442,fr,1,4.550000E+00,5.562410E+00,5.057379E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +136452,fr,2,4.650000E+00,5.562410E+00,5.057379E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +136457,fr,1,4.650000E+00,5.562410E+00,5.057379E+01,2.750000E+01,Active Shallow Crust,2.400120E+02,5.799457E+01,0.000000E+00 +136465,fr,1,4.750000E+00,5.562410E+00,5.057379E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +136494,fr,1,4.950000E+00,5.562410E+00,5.057379E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +136500,fr,1,5.050000E+00,5.562410E+00,5.057379E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +136549,fr,1,5.450000E+00,5.562410E+00,5.057379E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +136920,fr,1,4.550000E+00,1.695730E+00,4.052356E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +137316,fr,1,3.850000E+00,4.746320E+00,4.934632E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +137376,fr,1,4.350000E+00,4.746320E+00,4.934632E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +137850,fr,1,4.250000E+00,3.580050E+00,4.067802E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,-9.000000E+01 +138242,fr,1,3.550000E+00,-4.471300E+00,4.847599E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999332E+01,0.000000E+00 +138246,fr,1,3.550000E+00,-4.471300E+00,4.847599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999324E+01,-9.000000E+01 +138252,fr,1,3.650000E+00,-4.471300E+00,4.847599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +138265,fr,2,3.750000E+00,-4.471300E+00,4.847599E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +138277,fr,1,3.850000E+00,-4.471300E+00,4.847599E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +138289,fr,1,3.950000E+00,-4.471300E+00,4.847599E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999156E+01,0.000000E+00 +138295,fr,1,3.950000E+00,-4.471300E+00,4.847599E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999146E+01,-9.000000E+01 +138348,fr,1,4.450000E+00,-4.471300E+00,4.847599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +138432,fr,1,5.150000E+00,-4.471300E+00,4.847599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +138720,fr,2,3.550000E+00,2.827200E+00,4.378100E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998908E+01,0.000000E+00 +138729,fr,1,3.550000E+00,2.827200E+00,4.378100E+01,5.000000E+00,Active Shallow Crust,1.288971E+02,8.999272E+01,0.000000E+00 +138733,fr,1,3.650000E+00,2.827200E+00,4.378100E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +138736,fr,1,3.650000E+00,2.827200E+00,4.378100E+01,1.500000E+01,Active Shallow Crust,2.400007E+02,5.801312E+01,0.000000E+00 +138768,fr,1,3.950000E+00,2.827200E+00,4.378100E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +138775,fr,1,3.950000E+00,2.827200E+00,4.378100E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999071E+01,-9.000000E+01 +138780,fr,1,4.050000E+00,2.827200E+00,4.378100E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +138805,fr,1,4.250000E+00,2.827200E+00,4.378100E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +138810,fr,1,4.250000E+00,2.827200E+00,4.378100E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,-9.000000E+01 +139681,fr,1,3.550000E+00,2.283160E+00,4.829476E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +139683,fr,1,3.550000E+00,2.283160E+00,4.829476E+01,5.000000E+00,Active Shallow Crust,2.400126E+02,5.799847E+01,0.000000E+00 +139692,fr,1,3.650000E+00,2.283160E+00,4.829476E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999103E+01,0.000000E+00 +139718,fr,1,3.850000E+00,2.283160E+00,4.829476E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +139729,fr,1,3.950000E+00,2.283160E+00,4.829476E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +139752,fr,1,4.150000E+00,2.283160E+00,4.829476E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +139801,fr,1,4.550000E+00,2.283160E+00,4.829476E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +139935,fr,1,5.650000E+00,2.283160E+00,4.829476E+01,5.000000E+00,Active Shallow Crust,2.400392E+02,5.799963E+01,0.000000E+00 +140160,fr,6,3.550000E+00,8.433310E+00,4.686872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998621E+01,0.000000E+00 +140161,fr,1,3.550000E+00,8.433310E+00,4.686872E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998621E+01,0.000000E+00 +140162,fr,1,3.550000E+00,8.433310E+00,4.686872E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998621E+01,0.000000E+00 +140163,fr,3,3.550000E+00,8.433310E+00,4.686872E+01,5.000000E+00,Active Shallow Crust,2.400134E+02,5.799828E+01,0.000000E+00 +140164,fr,1,3.550000E+00,8.433310E+00,4.686872E+01,1.500000E+01,Active Shallow Crust,2.400134E+02,5.799828E+01,0.000000E+00 +140166,fr,1,3.550000E+00,8.433310E+00,4.686872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998605E+01,-9.000000E+01 +140168,fr,1,3.550000E+00,8.433310E+00,4.686872E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998605E+01,-9.000000E+01 +140170,fr,1,3.550000E+00,8.433310E+00,4.686872E+01,1.500000E+01,Active Shallow Crust,1.288970E+02,8.999310E+01,0.000000E+00 +140171,fr,1,3.550000E+00,8.433310E+00,4.686872E+01,2.750000E+01,Active Shallow Crust,1.288970E+02,8.999310E+01,0.000000E+00 +140172,fr,3,3.650000E+00,8.433310E+00,4.686872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998771E+01,0.000000E+00 +140173,fr,1,3.650000E+00,8.433310E+00,4.686872E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998771E+01,0.000000E+00 +140175,fr,1,3.650000E+00,8.433310E+00,4.686872E+01,5.000000E+00,Active Shallow Crust,2.399984E+02,5.801476E+01,0.000000E+00 +140179,fr,2,3.650000E+00,8.433310E+00,4.686872E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998757E+01,-9.000000E+01 +140184,fr,5,3.750000E+00,8.433310E+00,4.686872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +140185,fr,1,3.750000E+00,8.433310E+00,4.686872E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +140191,fr,2,3.750000E+00,8.433310E+00,4.686872E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998892E+01,-9.000000E+01 +140199,fr,3,3.850000E+00,8.433310E+00,4.686872E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799656E+01,0.000000E+00 +140202,fr,1,3.850000E+00,8.433310E+00,4.686872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,-9.000000E+01 +140208,fr,2,3.950000E+00,8.433310E+00,4.686872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999130E+01,0.000000E+00 +140209,fr,1,3.950000E+00,8.433310E+00,4.686872E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999130E+01,0.000000E+00 +140211,fr,1,3.950000E+00,8.433310E+00,4.686872E+01,5.000000E+00,Active Shallow Crust,2.400190E+02,5.800478E+01,0.000000E+00 +140220,fr,3,4.050000E+00,8.433310E+00,4.686872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999225E+01,0.000000E+00 +140221,fr,1,4.050000E+00,8.433310E+00,4.686872E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999225E+01,0.000000E+00 +140224,fr,1,4.050000E+00,8.433310E+00,4.686872E+01,1.500000E+01,Active Shallow Crust,2.400055E+02,5.800529E+01,0.000000E+00 +140230,fr,1,4.050000E+00,8.433310E+00,4.686872E+01,1.500000E+01,Active Shallow Crust,1.288886E+02,8.999612E+01,0.000000E+00 +140232,fr,1,4.150000E+00,8.433310E+00,4.686872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999309E+01,0.000000E+00 +140233,fr,1,4.150000E+00,8.433310E+00,4.686872E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999309E+01,0.000000E+00 +140238,fr,1,4.150000E+00,8.433310E+00,4.686872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999301E+01,-9.000000E+01 +140241,fr,1,4.150000E+00,8.433310E+00,4.686872E+01,5.000000E+00,Active Shallow Crust,1.288991E+02,8.999309E+01,0.000000E+00 +140244,fr,2,4.250000E+00,8.433310E+00,4.686872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998768E+01,0.000000E+00 +140245,fr,1,4.250000E+00,8.433310E+00,4.686872E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998768E+01,0.000000E+00 +140250,fr,1,4.250000E+00,8.433310E+00,4.686872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998754E+01,-9.000000E+01 +140251,fr,1,4.250000E+00,8.433310E+00,4.686872E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998754E+01,-9.000000E+01 +140256,fr,2,4.350000E+00,8.433310E+00,4.686872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998902E+01,0.000000E+00 +140262,fr,1,4.350000E+00,8.433310E+00,4.686872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998889E+01,-9.000000E+01 +140263,fr,1,4.350000E+00,8.433310E+00,4.686872E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998889E+01,-9.000000E+01 +140264,fr,1,4.350000E+00,8.433310E+00,4.686872E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998889E+01,-9.000000E+01 +140277,fr,1,4.450000E+00,8.433310E+00,4.686872E+01,5.000000E+00,Active Shallow Crust,1.288934E+02,8.999266E+01,0.000000E+00 +140283,fr,1,4.550000E+00,8.433310E+00,4.686872E+01,5.000000E+00,Active Shallow Crust,2.400103E+02,5.799710E+01,0.000000E+00 +140292,fr,1,4.650000E+00,8.433310E+00,4.686872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998834E+01,0.000000E+00 +140293,fr,1,4.650000E+00,8.433310E+00,4.686872E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998834E+01,0.000000E+00 +140304,fr,1,4.750000E+00,8.433310E+00,4.686872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +140412,fr,1,5.650000E+00,8.433310E+00,4.686872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +140640,fr,1,3.550000E+00,-1.693070E+00,4.818320E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +140646,fr,1,3.550000E+00,-1.693070E+00,4.818320E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,-9.000000E+01 +140652,fr,2,3.650000E+00,-1.693070E+00,4.818320E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +140668,fr,1,3.750000E+00,-1.693070E+00,4.818320E+01,1.500000E+01,Active Shallow Crust,2.400086E+02,5.801763E+01,0.000000E+00 +140676,fr,2,3.850000E+00,-1.693070E+00,4.818320E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +140679,fr,1,3.850000E+00,-1.693070E+00,4.818320E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799774E+01,0.000000E+00 +140682,fr,1,3.850000E+00,-1.693070E+00,4.818320E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,-9.000000E+01 +140701,fr,1,4.050000E+00,-1.693070E+00,4.818320E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +140712,fr,1,4.150000E+00,-1.693070E+00,4.818320E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +140736,fr,1,4.350000E+00,-1.693070E+00,4.818320E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +140761,fr,1,4.550000E+00,-1.693070E+00,4.818320E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +140871,fr,1,5.450000E+00,-1.693070E+00,4.818320E+01,5.000000E+00,Active Shallow Crust,2.400303E+02,5.799876E+01,0.000000E+00 +141157,fr,1,3.850000E+00,4.476640E+00,4.955816E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +141273,fr,1,4.750000E+00,4.476640E+00,4.955816E+01,5.000000E+00,Active Shallow Crust,1.288877E+02,8.998792E+01,0.000000E+00 +141600,fr,1,3.550000E+00,6.276900E-01,4.754419E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +141601,fr,1,3.550000E+00,6.276900E-01,4.754419E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +141610,fr,1,3.550000E+00,6.276900E-01,4.754419E+01,1.500000E+01,Active Shallow Crust,1.288962E+02,8.999362E+01,0.000000E+00 +141614,fr,1,3.650000E+00,6.276900E-01,4.754419E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +141625,fr,1,3.750000E+00,6.276900E-01,4.754419E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +141692,fr,1,4.250000E+00,6.276900E-01,4.754419E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +142082,fr,1,3.550000E+00,8.463000E-01,4.392784E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +142084,fr,1,3.550000E+00,8.463000E-01,4.392784E+01,1.500000E+01,Active Shallow Crust,2.400121E+02,5.799815E+01,0.000000E+00 +142098,fr,1,3.650000E+00,8.463000E-01,4.392784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,-9.000000E+01 +142104,fr,1,3.750000E+00,8.463000E-01,4.392784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +142143,fr,1,4.050000E+00,8.463000E-01,4.392784E+01,5.000000E+00,Active Shallow Crust,2.400056E+02,5.800573E+01,0.000000E+00 +142201,fr,1,4.550000E+00,8.463000E-01,4.392784E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +142564,fr,1,3.550000E+00,5.422380E+00,5.006088E+01,1.500000E+01,Active Shallow Crust,2.400136E+02,5.799701E+01,0.000000E+00 +142570,fr,1,3.550000E+00,5.422380E+00,5.006088E+01,1.500000E+01,Active Shallow Crust,1.288952E+02,8.999353E+01,0.000000E+00 +142596,fr,1,3.850000E+00,5.422380E+00,5.006088E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +142692,fr,1,4.650000E+00,5.422380E+00,5.006088E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +143040,fr,1,3.550000E+00,2.847110E+00,4.755007E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +143124,fr,1,4.250000E+00,2.847110E+00,4.755007E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +143148,fr,2,4.450000E+00,2.847110E+00,4.755007E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +143520,fr,1,3.550000E+00,1.217110E+00,5.138047E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +143521,fr,2,3.550000E+00,1.217110E+00,5.138047E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +143523,fr,1,3.550000E+00,1.217110E+00,5.138047E+01,5.000000E+00,Active Shallow Crust,2.400128E+02,5.799800E+01,0.000000E+00 +143530,fr,1,3.550000E+00,1.217110E+00,5.138047E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.999371E+01,0.000000E+00 +143545,fr,1,3.750000E+00,1.217110E+00,5.138047E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +143568,fr,1,3.950000E+00,1.217110E+00,5.138047E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +143592,fr,1,4.150000E+00,1.217110E+00,5.138047E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +144489,fr,1,3.550000E+00,-5.154900E-01,5.104467E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999366E+01,0.000000E+00 +144492,fr,1,3.650000E+00,-5.154900E-01,5.104467E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +144507,fr,1,3.750000E+00,-5.154900E-01,5.104467E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.801772E+01,0.000000E+00 +144961,fr,1,3.550000E+00,3.540160E+00,4.740176E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +144973,fr,2,3.650000E+00,3.540160E+00,4.740176E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +144984,fr,1,3.750000E+00,3.540160E+00,4.740176E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +145025,fr,1,4.050000E+00,3.540160E+00,4.740176E+01,2.750000E+01,Active Shallow Crust,2.400062E+02,5.800604E+01,0.000000E+00 +145039,fr,1,4.150000E+00,3.540160E+00,4.740176E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,-9.000000E+01 +145451,fr,1,3.550000E+00,4.191010E+00,5.099892E+01,2.750000E+01,Active Shallow Crust,1.288964E+02,8.999365E+01,0.000000E+00 +145458,fr,1,3.650000E+00,4.191010E+00,5.099892E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998856E+01,-9.000000E+01 +145461,fr,1,3.650000E+00,4.191010E+00,5.099892E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.996361E+01,0.000000E+00 +145502,fr,1,4.050000E+00,4.191010E+00,5.099892E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +145548,fr,1,4.450000E+00,4.191010E+00,5.099892E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999099E+01,0.000000E+00 +145549,fr,1,4.450000E+00,4.191010E+00,5.099892E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999099E+01,0.000000E+00 +145590,fr,1,4.750000E+00,4.191010E+00,5.099892E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,-9.000000E+01 +145944,fr,1,3.750000E+00,3.554920E+00,4.441987E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +145956,fr,1,3.850000E+00,3.554920E+00,4.441987E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +145993,fr,1,4.150000E+00,3.554920E+00,4.441987E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +146005,fr,1,4.250000E+00,3.554920E+00,4.441987E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +146013,fr,1,4.250000E+00,3.554920E+00,4.441987E+01,5.000000E+00,Active Shallow Crust,1.288945E+02,8.998087E+01,0.000000E+00 +146030,fr,1,4.450000E+00,3.554920E+00,4.441987E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +146034,fr,1,4.450000E+00,3.554920E+00,4.441987E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,-9.000000E+01 +146035,fr,1,4.450000E+00,3.554920E+00,4.441987E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998966E+01,-9.000000E+01 +146065,fr,1,4.750000E+00,3.554920E+00,4.441987E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +146108,fr,1,5.050000E+00,3.554920E+00,4.441987E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,-9.000000E+01 +146400,fr,1,3.550000E+00,-2.439650E+00,4.263058E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998887E+01,0.000000E+00 +146412,fr,1,3.650000E+00,-2.439650E+00,4.263058E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +146436,fr,1,3.850000E+00,-2.439650E+00,4.263058E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +146493,fr,1,4.250000E+00,-2.439650E+00,4.263058E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.998080E+01,0.000000E+00 +146509,fr,1,4.450000E+00,-2.439650E+00,4.263058E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +146554,fr,1,4.750000E+00,-2.439650E+00,4.263058E+01,1.500000E+01,Active Shallow Crust,1.288896E+02,8.998820E+01,0.000000E+00 +146605,fr,1,5.250000E+00,-2.439650E+00,4.263058E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +146880,fr,2,3.550000E+00,-2.171860E+00,4.280130E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998890E+01,0.000000E+00 +146881,fr,2,3.550000E+00,-2.171860E+00,4.280130E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998890E+01,0.000000E+00 +146892,fr,1,3.650000E+00,-2.171860E+00,4.280130E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +146893,fr,1,3.650000E+00,-2.171860E+00,4.280130E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +146901,fr,2,3.650000E+00,-2.171860E+00,4.280130E+01,5.000000E+00,Active Shallow Crust,1.289015E+02,8.996346E+01,0.000000E+00 +146904,fr,2,3.750000E+00,-2.171860E+00,4.280130E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999119E+01,0.000000E+00 +146913,fr,1,3.750000E+00,-2.171860E+00,4.280130E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.996743E+01,0.000000E+00 +146916,fr,1,3.850000E+00,-2.171860E+00,4.280130E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +146917,fr,1,3.850000E+00,-2.171860E+00,4.280130E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +146919,fr,2,3.850000E+00,-2.171860E+00,4.280130E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.799779E+01,0.000000E+00 +146928,fr,1,3.950000E+00,-2.171860E+00,4.280130E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +146929,fr,1,3.950000E+00,-2.171860E+00,4.280130E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +146935,fr,1,3.950000E+00,-2.171860E+00,4.280130E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,-9.000000E+01 +146940,fr,1,4.050000E+00,-2.171860E+00,4.280130E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +146958,fr,1,4.150000E+00,-2.171860E+00,4.280130E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,-9.000000E+01 +146964,fr,1,4.250000E+00,-2.171860E+00,4.280130E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +147002,fr,1,4.550000E+00,-2.171860E+00,4.280130E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +147061,fr,1,5.050000E+00,-2.171860E+00,4.280130E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +147144,fr,1,5.750000E+00,-2.171860E+00,4.280130E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +147589,fr,1,5.450000E+00,1.630500E-01,4.181744E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +147841,fr,1,3.550000E+00,8.425350E+00,4.866244E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998668E+01,0.000000E+00 +147843,fr,3,3.550000E+00,8.425350E+00,4.866244E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799906E+01,0.000000E+00 +147844,fr,1,3.550000E+00,8.425350E+00,4.866244E+01,1.500000E+01,Active Shallow Crust,2.400116E+02,5.799906E+01,0.000000E+00 +147849,fr,1,3.550000E+00,8.425350E+00,4.866244E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999334E+01,0.000000E+00 +147864,fr,1,3.750000E+00,8.425350E+00,4.866244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +147867,fr,1,3.750000E+00,8.425350E+00,4.866244E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.801635E+01,0.000000E+00 +147913,fr,1,4.150000E+00,8.425350E+00,4.866244E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999332E+01,0.000000E+00 +147924,fr,1,4.250000E+00,8.425350E+00,4.866244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998810E+01,0.000000E+00 +147936,fr,1,4.350000E+00,8.425350E+00,4.866244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +147948,fr,1,4.450000E+00,8.425350E+00,4.866244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +147979,fr,1,4.650000E+00,8.425350E+00,4.866244E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998860E+01,-9.000000E+01 +148056,fr,1,5.350000E+00,8.425350E+00,4.866244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +148320,fr,2,3.550000E+00,-4.482890E+00,4.888289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998674E+01,0.000000E+00 +148322,fr,1,3.550000E+00,-4.482890E+00,4.888289E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998674E+01,0.000000E+00 +148332,fr,1,3.650000E+00,-4.482890E+00,4.888289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998818E+01,0.000000E+00 +148333,fr,1,3.650000E+00,-4.482890E+00,4.888289E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998818E+01,0.000000E+00 +148356,fr,1,3.850000E+00,-4.482890E+00,4.888289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999061E+01,0.000000E+00 +148359,fr,1,3.850000E+00,-4.482890E+00,4.888289E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799826E+01,0.000000E+00 +148466,fr,1,4.750000E+00,-4.482890E+00,4.888289E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +148512,fr,1,5.150000E+00,-4.482890E+00,4.888289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +148800,fr,1,3.550000E+00,3.448840E+00,4.558238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998941E+01,0.000000E+00 +148802,fr,1,3.550000E+00,3.448840E+00,4.558238E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998941E+01,0.000000E+00 +148815,fr,1,3.650000E+00,3.448840E+00,4.558238E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801286E+01,0.000000E+00 +148825,fr,1,3.750000E+00,3.448840E+00,4.558238E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +148848,fr,1,3.950000E+00,3.448840E+00,4.558238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +148861,fr,1,4.050000E+00,3.448840E+00,4.558238E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +148884,fr,2,4.250000E+00,3.448840E+00,4.558238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +148893,fr,1,4.250000E+00,3.448840E+00,4.558238E+01,5.000000E+00,Active Shallow Crust,1.288946E+02,8.998091E+01,0.000000E+00 +148896,fr,1,4.350000E+00,3.448840E+00,4.558238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +148899,fr,1,4.350000E+00,3.448840E+00,4.558238E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799593E+01,0.000000E+00 +148914,fr,1,4.450000E+00,3.448840E+00,4.558238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,-9.000000E+01 +148944,fr,1,4.750000E+00,3.448840E+00,4.558238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +149280,fr,2,3.550000E+00,-1.023130E+00,4.903522E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +149282,fr,1,3.550000E+00,-1.023130E+00,4.903522E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +149292,fr,1,3.650000E+00,-1.023130E+00,4.903522E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +149293,fr,1,3.650000E+00,-1.023130E+00,4.903522E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +149304,fr,1,3.750000E+00,-1.023130E+00,4.903522E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +149305,fr,1,3.750000E+00,-1.023130E+00,4.903522E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +149317,fr,2,3.850000E+00,-1.023130E+00,4.903522E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +149321,fr,1,3.850000E+00,-1.023130E+00,4.903522E+01,2.750000E+01,Active Shallow Crust,2.400114E+02,5.799779E+01,0.000000E+00 +149325,fr,1,3.850000E+00,-1.023130E+00,4.903522E+01,5.000000E+00,Active Shallow Crust,1.288953E+02,8.999357E+01,0.000000E+00 +149352,fr,1,4.150000E+00,-1.023130E+00,4.903522E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +149359,fr,1,4.150000E+00,-1.023130E+00,4.903522E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +149379,fr,1,4.350000E+00,-1.023130E+00,4.903522E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.799609E+01,0.000000E+00 +149773,fr,1,3.650000E+00,-5.221780E+00,4.867153E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998813E+01,0.000000E+00 +149775,fr,1,3.650000E+00,-5.221780E+00,4.867153E+01,5.000000E+00,Active Shallow Crust,2.400020E+02,5.801260E+01,0.000000E+00 +149799,fr,1,3.850000E+00,-5.221780E+00,4.867153E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799808E+01,0.000000E+00 +149832,fr,1,4.150000E+00,-5.221780E+00,4.867153E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +149844,fr,1,4.250000E+00,-5.221780E+00,4.867153E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +149846,fr,1,4.250000E+00,-5.221780E+00,4.867153E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +149870,fr,1,4.450000E+00,-5.221780E+00,4.867153E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +150240,fr,1,3.550000E+00,7.487200E-01,4.848133E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +150252,fr,1,3.650000E+00,7.487200E-01,4.848133E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +150291,fr,1,3.950000E+00,7.487200E-01,4.848133E+01,5.000000E+00,Active Shallow Crust,2.400201E+02,5.800501E+01,0.000000E+00 +150337,fr,1,4.350000E+00,7.487200E-01,4.848133E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +151236,fr,1,3.850000E+00,4.688200E+00,5.204026E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999122E+01,0.000000E+00 +151680,fr,2,3.550000E+00,3.924990E+00,4.167468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998870E+01,0.000000E+00 +151728,fr,1,3.950000E+00,3.924990E+00,4.167468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +151848,fr,1,4.950000E+00,3.924990E+00,4.167468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +152176,fr,2,3.650000E+00,1.651750E+00,4.826498E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801314E+01,0.000000E+00 +152187,fr,1,3.750000E+00,1.651750E+00,4.826498E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801773E+01,0.000000E+00 +152269,fr,1,4.450000E+00,1.651750E+00,4.826498E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +152317,fr,1,4.850000E+00,1.651750E+00,4.826498E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +152640,fr,2,3.550000E+00,7.090390E+00,4.449244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999281E+01,0.000000E+00 +152641,fr,1,3.550000E+00,7.090390E+00,4.449244E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999281E+01,0.000000E+00 +152643,fr,1,3.550000E+00,7.090390E+00,4.449244E+01,5.000000E+00,Active Shallow Crust,2.400128E+02,5.799799E+01,0.000000E+00 +152645,fr,1,3.550000E+00,7.090390E+00,4.449244E+01,2.750000E+01,Active Shallow Crust,2.400128E+02,5.799790E+01,0.000000E+00 +152649,fr,2,3.550000E+00,7.090390E+00,4.449244E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.999281E+01,0.000000E+00 +152652,fr,7,3.650000E+00,7.090390E+00,4.449244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998717E+01,0.000000E+00 +152655,fr,1,3.650000E+00,7.090390E+00,4.449244E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801274E+01,0.000000E+00 +152664,fr,3,3.750000E+00,7.090390E+00,4.449244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998857E+01,0.000000E+00 +152666,fr,1,3.750000E+00,7.090390E+00,4.449244E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998857E+01,0.000000E+00 +152673,fr,1,3.750000E+00,7.090390E+00,4.449244E+01,5.000000E+00,Active Shallow Crust,1.288977E+02,8.996684E+01,0.000000E+00 +152674,fr,1,3.750000E+00,7.090390E+00,4.449244E+01,1.500000E+01,Active Shallow Crust,1.288977E+02,8.996684E+01,0.000000E+00 +152676,fr,1,3.850000E+00,7.090390E+00,4.449244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +152677,fr,3,3.850000E+00,7.090390E+00,4.449244E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +152679,fr,1,3.850000E+00,7.090390E+00,4.449244E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799784E+01,0.000000E+00 +152685,fr,1,3.850000E+00,7.090390E+00,4.449244E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999491E+01,0.000000E+00 +152688,fr,3,3.950000E+00,7.090390E+00,4.449244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999092E+01,0.000000E+00 +152689,fr,2,3.950000E+00,7.090390E+00,4.449244E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999092E+01,0.000000E+00 +152691,fr,1,3.950000E+00,7.090390E+00,4.449244E+01,5.000000E+00,Active Shallow Crust,2.400196E+02,5.800541E+01,0.000000E+00 +152695,fr,1,3.950000E+00,7.090390E+00,4.449244E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999081E+01,-9.000000E+01 +152697,fr,2,3.950000E+00,7.090390E+00,4.449244E+01,5.000000E+00,Active Shallow Crust,1.289006E+02,8.999319E+01,0.000000E+00 +152700,fr,3,4.050000E+00,7.090390E+00,4.449244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999191E+01,0.000000E+00 +152706,fr,1,4.050000E+00,7.090390E+00,4.449244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999181E+01,-9.000000E+01 +152709,fr,2,4.050000E+00,7.090390E+00,4.449244E+01,5.000000E+00,Active Shallow Crust,1.288903E+02,8.999393E+01,0.000000E+00 +152712,fr,1,4.150000E+00,7.090390E+00,4.449244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +152715,fr,1,4.150000E+00,7.090390E+00,4.449244E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799758E+01,0.000000E+00 +152724,fr,1,4.250000E+00,7.090390E+00,4.449244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +152733,fr,1,4.250000E+00,7.090390E+00,4.449244E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.998087E+01,0.000000E+00 +152736,fr,1,4.350000E+00,7.090390E+00,4.449244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999141E+01,0.000000E+00 +152737,fr,1,4.350000E+00,7.090390E+00,4.449244E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999141E+01,0.000000E+00 +152740,fr,1,4.350000E+00,7.090390E+00,4.449244E+01,1.500000E+01,Active Shallow Crust,2.400082E+02,5.799568E+01,0.000000E+00 +152748,fr,2,4.450000E+00,7.090390E+00,4.449244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +152763,fr,1,4.550000E+00,7.090390E+00,4.449244E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.799743E+01,0.000000E+00 +152928,fr,1,5.950000E+00,7.090390E+00,4.449244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +153120,fr,1,3.550000E+00,-1.370010E+00,4.645331E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +153121,fr,1,3.550000E+00,-1.370010E+00,4.645331E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +153122,fr,1,3.550000E+00,-1.370010E+00,4.645331E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +153125,fr,1,3.550000E+00,-1.370010E+00,4.645331E+01,2.750000E+01,Active Shallow Crust,2.400124E+02,5.799788E+01,0.000000E+00 +153132,fr,1,3.650000E+00,-1.370010E+00,4.645331E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +153133,fr,1,3.650000E+00,-1.370010E+00,4.645331E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +153134,fr,2,3.650000E+00,-1.370010E+00,4.645331E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +153144,fr,2,3.750000E+00,-1.370010E+00,4.645331E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +153150,fr,1,3.750000E+00,-1.370010E+00,4.645331E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,-9.000000E+01 +153156,fr,2,3.850000E+00,-1.370010E+00,4.645331E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +153168,fr,1,3.950000E+00,-1.370010E+00,4.645331E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +153181,fr,1,4.050000E+00,-1.370010E+00,4.645331E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +153185,fr,1,4.050000E+00,-1.370010E+00,4.645331E+01,2.750000E+01,Active Shallow Crust,2.400058E+02,5.800575E+01,0.000000E+00 +153213,fr,1,4.250000E+00,-1.370010E+00,4.645331E+01,5.000000E+00,Active Shallow Crust,1.288943E+02,8.998081E+01,0.000000E+00 +153241,fr,1,4.550000E+00,-1.370010E+00,4.645331E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +153245,fr,1,4.550000E+00,-1.370010E+00,4.645331E+01,2.750000E+01,Active Shallow Crust,2.400092E+02,5.799739E+01,0.000000E+00 +153601,fr,2,3.550000E+00,1.007640E+00,4.203853E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +153638,fr,1,3.850000E+00,1.007640E+00,4.203853E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +153678,fr,1,4.150000E+00,1.007640E+00,4.203853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,-9.000000E+01 +153687,fr,1,4.250000E+00,1.007640E+00,4.203853E+01,5.000000E+00,Active Shallow Crust,2.400066E+02,5.799396E+01,0.000000E+00 +153691,fr,1,4.250000E+00,1.007640E+00,4.203853E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +154081,fr,1,3.550000E+00,3.236030E+00,4.384391E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +154104,fr,1,3.750000E+00,3.236030E+00,4.384391E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +154122,fr,1,3.850000E+00,3.236030E+00,4.384391E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +154128,fr,1,3.950000E+00,3.236030E+00,4.384391E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999082E+01,0.000000E+00 +154188,fr,1,4.450000E+00,3.236030E+00,4.384391E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +154256,fr,1,4.950000E+00,3.236030E+00,4.384391E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,-9.000000E+01 +154560,fr,1,3.550000E+00,4.847070E+00,4.499958E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999287E+01,0.000000E+00 +154561,fr,2,3.550000E+00,4.847070E+00,4.499958E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999287E+01,0.000000E+00 +154562,fr,2,3.550000E+00,4.847070E+00,4.499958E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999287E+01,0.000000E+00 +154568,fr,1,3.550000E+00,4.847070E+00,4.499958E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999279E+01,-9.000000E+01 +154572,fr,1,3.650000E+00,4.847070E+00,4.499958E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998729E+01,0.000000E+00 +154575,fr,1,3.650000E+00,4.847070E+00,4.499958E+01,5.000000E+00,Active Shallow Crust,2.400003E+02,5.801373E+01,0.000000E+00 +154578,fr,1,3.650000E+00,4.847070E+00,4.499958E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998714E+01,-9.000000E+01 +154584,fr,1,3.750000E+00,4.847070E+00,4.499958E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998867E+01,0.000000E+00 +154608,fr,3,3.950000E+00,4.847070E+00,4.499958E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +154656,fr,1,4.350000E+00,4.847070E+00,4.499958E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998865E+01,0.000000E+00 +154669,fr,1,4.450000E+00,4.847070E+00,4.499958E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +154680,fr,1,4.550000E+00,4.847070E+00,4.499958E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999098E+01,0.000000E+00 +154730,fr,1,4.950000E+00,4.847070E+00,4.499958E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +154752,fr,1,5.150000E+00,4.847070E+00,4.499958E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +155040,fr,1,3.550000E+00,2.831930E+00,5.282656E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +155640,fr,1,4.550000E+00,-1.528000E-02,4.221048E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +156000,fr,2,3.550000E+00,4.364980E+00,4.713880E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999314E+01,0.000000E+00 +156016,fr,1,3.650000E+00,4.364980E+00,4.713880E+01,1.500000E+01,Active Shallow Crust,2.400002E+02,5.801351E+01,0.000000E+00 +156018,fr,1,3.650000E+00,4.364980E+00,4.713880E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998763E+01,-9.000000E+01 +156024,fr,1,3.750000E+00,4.364980E+00,4.713880E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +156030,fr,1,3.750000E+00,4.364980E+00,4.713880E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,-9.000000E+01 +156036,fr,2,3.850000E+00,4.364980E+00,4.713880E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +156180,fr,1,5.050000E+00,4.364980E+00,4.713880E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +156480,fr,1,3.550000E+00,-3.539000E-01,4.947601E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +156483,fr,1,3.550000E+00,-3.539000E-01,4.947601E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799820E+01,0.000000E+00 +156492,fr,1,3.650000E+00,-3.539000E-01,4.947601E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +156496,fr,1,3.650000E+00,-3.539000E-01,4.947601E+01,1.500000E+01,Active Shallow Crust,2.400014E+02,5.801295E+01,0.000000E+00 +156505,fr,1,3.750000E+00,-3.539000E-01,4.947601E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +156506,fr,1,3.750000E+00,-3.539000E-01,4.947601E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +156517,fr,1,3.850000E+00,-3.539000E-01,4.947601E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +156528,fr,1,3.950000E+00,-3.539000E-01,4.947601E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +156541,fr,1,4.050000E+00,-3.539000E-01,4.947601E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +156544,fr,1,4.050000E+00,-3.539000E-01,4.947601E+01,1.500000E+01,Active Shallow Crust,2.400065E+02,5.800591E+01,0.000000E+00 +156617,fr,1,4.650000E+00,-3.539000E-01,4.947601E+01,2.750000E+01,Active Shallow Crust,2.400119E+02,5.799443E+01,0.000000E+00 +156672,fr,1,5.150000E+00,-3.539000E-01,4.947601E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +156960,fr,2,3.550000E+00,5.314200E-01,4.144451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +156989,fr,1,3.750000E+00,5.314200E-01,4.144451E+01,2.750000E+01,Active Shallow Crust,2.400079E+02,5.801735E+01,0.000000E+00 +157003,fr,1,3.850000E+00,5.314200E-01,4.144451E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +157008,fr,2,3.950000E+00,5.314200E-01,4.144451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +157044,fr,1,4.250000E+00,5.314200E-01,4.144451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +157095,fr,1,4.650000E+00,5.314200E-01,4.144451E+01,5.000000E+00,Active Shallow Crust,2.400093E+02,5.799394E+01,0.000000E+00 +157170,fr,1,5.250000E+00,5.314200E-01,4.144451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +157920,fr,2,3.550000E+00,8.357460E+00,4.916087E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998681E+01,0.000000E+00 +157921,fr,1,3.550000E+00,8.357460E+00,4.916087E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998681E+01,0.000000E+00 +157923,fr,1,3.550000E+00,8.357460E+00,4.916087E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.799865E+01,0.000000E+00 +157932,fr,3,3.650000E+00,8.357460E+00,4.916087E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998824E+01,0.000000E+00 +157933,fr,1,3.650000E+00,8.357460E+00,4.916087E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998824E+01,0.000000E+00 +157942,fr,1,3.650000E+00,8.357460E+00,4.916087E+01,1.500000E+01,Active Shallow Crust,1.289017E+02,8.996358E+01,0.000000E+00 +157944,fr,2,3.750000E+00,8.357460E+00,4.916087E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +157947,fr,1,3.750000E+00,8.357460E+00,4.916087E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801808E+01,0.000000E+00 +157968,fr,3,3.950000E+00,8.357460E+00,4.916087E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999168E+01,0.000000E+00 +157989,fr,2,4.050000E+00,8.357460E+00,4.916087E+01,5.000000E+00,Active Shallow Crust,1.288907E+02,8.999258E+01,0.000000E+00 +157992,fr,1,4.150000E+00,8.357460E+00,4.916087E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998678E+01,0.000000E+00 +158002,fr,1,4.150000E+00,8.357460E+00,4.916087E+01,1.500000E+01,Active Shallow Crust,1.288962E+02,8.999339E+01,0.000000E+00 +158004,fr,2,4.250000E+00,8.357460E+00,4.916087E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998822E+01,0.000000E+00 +158049,fr,1,4.550000E+00,8.357460E+00,4.916087E+01,5.000000E+00,Active Shallow Crust,1.288935E+02,8.998579E+01,0.000000E+00 +158073,fr,1,4.750000E+00,8.357460E+00,4.916087E+01,5.000000E+00,Active Shallow Crust,1.288870E+02,8.998872E+01,0.000000E+00 +158424,fr,1,3.750000E+00,-2.849540E+00,4.713517E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +158454,fr,1,3.950000E+00,-2.849540E+00,4.713517E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998905E+01,-9.000000E+01 +158520,fr,2,4.550000E+00,-2.849540E+00,4.713517E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +158785,fr,1,6.750000E+00,-2.849540E+00,4.713517E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +158880,fr,3,3.550000E+00,2.033000E-01,4.897963E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +158881,fr,1,3.550000E+00,2.033000E-01,4.897963E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +158883,fr,1,3.550000E+00,2.033000E-01,4.897963E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799823E+01,0.000000E+00 +158892,fr,1,3.650000E+00,2.033000E-01,4.897963E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +158893,fr,1,3.650000E+00,2.033000E-01,4.897963E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +158904,fr,1,3.750000E+00,2.033000E-01,4.897963E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +158905,fr,2,3.750000E+00,2.033000E-01,4.897963E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +158906,fr,1,3.750000E+00,2.033000E-01,4.897963E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +158917,fr,1,3.850000E+00,2.033000E-01,4.897963E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +158928,fr,1,3.950000E+00,2.033000E-01,4.897963E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +158940,fr,1,4.050000E+00,2.033000E-01,4.897963E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +158988,fr,1,4.450000E+00,2.033000E-01,4.897963E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +159013,fr,1,4.650000E+00,2.033000E-01,4.897963E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +159024,fr,1,4.750000E+00,2.033000E-01,4.897963E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999002E+01,0.000000E+00 +159049,fr,1,4.950000E+00,2.033000E-01,4.897963E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +159360,fr,3,3.550000E+00,4.548780E+00,4.548192E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999293E+01,0.000000E+00 +159361,fr,2,3.550000E+00,4.548780E+00,4.548192E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999293E+01,0.000000E+00 +159364,fr,1,3.550000E+00,4.548780E+00,4.548192E+01,1.500000E+01,Active Shallow Crust,2.400125E+02,5.799725E+01,0.000000E+00 +159366,fr,1,3.550000E+00,4.548780E+00,4.548192E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999285E+01,-9.000000E+01 +159374,fr,2,3.650000E+00,4.548780E+00,4.548192E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998740E+01,0.000000E+00 +159381,fr,1,3.650000E+00,4.548780E+00,4.548192E+01,5.000000E+00,Active Shallow Crust,1.289012E+02,8.996350E+01,0.000000E+00 +159384,fr,1,3.750000E+00,4.548780E+00,4.548192E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998877E+01,0.000000E+00 +159396,fr,1,3.850000E+00,4.548780E+00,4.548192E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +159405,fr,1,3.850000E+00,4.548780E+00,4.548192E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999249E+01,0.000000E+00 +159408,fr,1,3.950000E+00,4.548780E+00,4.548192E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999108E+01,0.000000E+00 +159410,fr,1,3.950000E+00,4.548780E+00,4.548192E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999108E+01,0.000000E+00 +159456,fr,1,4.350000E+00,4.548780E+00,4.548192E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998874E+01,0.000000E+00 +159840,fr,2,3.550000E+00,2.384140E+00,4.606463E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +159843,fr,1,3.550000E+00,2.384140E+00,4.606463E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799816E+01,0.000000E+00 +159849,fr,1,3.550000E+00,2.384140E+00,4.606463E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.999300E+01,0.000000E+00 +159852,fr,3,3.650000E+00,2.384140E+00,4.606463E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +159853,fr,1,3.650000E+00,2.384140E+00,4.606463E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +159854,fr,1,3.650000E+00,2.384140E+00,4.606463E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +159855,fr,1,3.650000E+00,2.384140E+00,4.606463E+01,5.000000E+00,Active Shallow Crust,2.400004E+02,5.801351E+01,0.000000E+00 +159861,fr,1,3.650000E+00,2.384140E+00,4.606463E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.996322E+01,0.000000E+00 +159864,fr,1,3.750000E+00,2.384140E+00,4.606463E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +159876,fr,2,3.850000E+00,2.384140E+00,4.606463E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +159878,fr,1,3.850000E+00,2.384140E+00,4.606463E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +159879,fr,1,3.850000E+00,2.384140E+00,4.606463E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.799788E+01,0.000000E+00 +159888,fr,1,3.950000E+00,2.384140E+00,4.606463E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998896E+01,0.000000E+00 +159900,fr,2,4.050000E+00,2.384140E+00,4.606463E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +159901,fr,1,4.050000E+00,2.384140E+00,4.606463E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +159948,fr,1,4.450000E+00,2.384140E+00,4.606463E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +159970,fr,1,4.550000E+00,2.384140E+00,4.606463E+01,1.500000E+01,Active Shallow Crust,1.288940E+02,8.998587E+01,0.000000E+00 +159972,fr,1,4.650000E+00,2.384140E+00,4.606463E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +159985,fr,1,4.750000E+00,2.384140E+00,4.606463E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +160012,fr,1,4.950000E+00,2.384140E+00,4.606463E+01,1.500000E+01,Active Shallow Crust,2.400118E+02,5.800436E+01,0.000000E+00 +160039,fr,1,5.150000E+00,2.384140E+00,4.606463E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,-9.000000E+01 +160333,fr,1,3.650000E+00,6.199400E+00,5.028504E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998852E+01,0.000000E+00 +160338,fr,1,3.650000E+00,6.199400E+00,5.028504E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998838E+01,-9.000000E+01 +160356,fr,1,3.850000E+00,6.199400E+00,5.028504E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +160357,fr,1,3.850000E+00,6.199400E+00,5.028504E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +160365,fr,1,3.850000E+00,6.199400E+00,5.028504E+01,5.000000E+00,Active Shallow Crust,1.288945E+02,8.999316E+01,0.000000E+00 +160382,fr,1,4.050000E+00,6.199400E+00,5.028504E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998913E+01,0.000000E+00 +160383,fr,1,4.050000E+00,6.199400E+00,5.028504E+01,5.000000E+00,Active Shallow Crust,2.400063E+02,5.800608E+01,0.000000E+00 +160397,fr,1,4.150000E+00,6.199400E+00,5.028504E+01,2.750000E+01,Active Shallow Crust,2.400098E+02,5.799706E+01,0.000000E+00 +160404,fr,2,4.250000E+00,6.199400E+00,5.028504E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999136E+01,0.000000E+00 +160416,fr,1,4.350000E+00,6.199400E+00,5.028504E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +160800,fr,2,3.550000E+00,4.599870E+00,4.390985E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999274E+01,0.000000E+00 +160803,fr,1,3.550000E+00,4.599870E+00,4.390985E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799871E+01,0.000000E+00 +160812,fr,3,3.650000E+00,4.599870E+00,4.390985E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998705E+01,0.000000E+00 +160815,fr,1,3.650000E+00,4.599870E+00,4.390985E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801191E+01,0.000000E+00 +160821,fr,1,3.650000E+00,4.599870E+00,4.390985E+01,5.000000E+00,Active Shallow Crust,1.289011E+02,8.996347E+01,0.000000E+00 +160824,fr,1,3.750000E+00,4.599870E+00,4.390985E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998846E+01,0.000000E+00 +160825,fr,1,3.750000E+00,4.599870E+00,4.390985E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998846E+01,0.000000E+00 +160826,fr,1,3.750000E+00,4.599870E+00,4.390985E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998846E+01,0.000000E+00 +160836,fr,2,3.850000E+00,4.599870E+00,4.390985E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +160845,fr,1,3.850000E+00,4.599870E+00,4.390985E+01,5.000000E+00,Active Shallow Crust,1.288971E+02,8.999229E+01,0.000000E+00 +160848,fr,1,3.950000E+00,4.599870E+00,4.390985E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +160849,fr,2,3.950000E+00,4.599870E+00,4.390985E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +160853,fr,1,3.950000E+00,4.599870E+00,4.390985E+01,2.750000E+01,Active Shallow Crust,2.400197E+02,5.800461E+01,0.000000E+00 +160861,fr,1,4.050000E+00,4.599870E+00,4.390985E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999183E+01,0.000000E+00 +160884,fr,1,4.250000E+00,4.599870E+00,4.390985E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +160895,fr,1,4.250000E+00,4.599870E+00,4.390985E+01,2.750000E+01,Active Shallow Crust,1.288939E+02,8.998134E+01,0.000000E+00 +160896,fr,1,4.350000E+00,4.599870E+00,4.390985E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +160930,fr,1,4.550000E+00,4.599870E+00,4.390985E+01,1.500000E+01,Active Shallow Crust,1.288938E+02,8.998602E+01,0.000000E+00 +161280,fr,1,3.550000E+00,-2.134800E-01,4.935211E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +161292,fr,1,3.650000E+00,-2.134800E-01,4.935211E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +161293,fr,1,3.650000E+00,-2.134800E-01,4.935211E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +161301,fr,1,3.650000E+00,-2.134800E-01,4.935211E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.996350E+01,0.000000E+00 +161304,fr,1,3.750000E+00,-2.134800E-01,4.935211E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +161352,fr,1,4.150000E+00,-2.134800E-01,4.935211E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +161365,fr,1,4.250000E+00,-2.134800E-01,4.935211E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +161367,fr,1,4.250000E+00,-2.134800E-01,4.935211E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799418E+01,0.000000E+00 +161368,fr,1,4.250000E+00,-2.134800E-01,4.935211E+01,1.500000E+01,Active Shallow Crust,2.400082E+02,5.799418E+01,0.000000E+00 +161382,fr,1,4.350000E+00,-2.134800E-01,4.935211E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +161448,fr,1,4.950000E+00,-2.134800E-01,4.935211E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +161581,fr,1,6.050000E+00,-2.134800E-01,4.935211E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +161760,fr,1,3.550000E+00,-3.549600E-01,5.131374E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +161761,fr,1,3.550000E+00,-3.549600E-01,5.131374E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +161763,fr,1,3.550000E+00,-3.549600E-01,5.131374E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.799823E+01,0.000000E+00 +161784,fr,1,3.750000E+00,-3.549600E-01,5.131374E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +162240,fr,2,3.550000E+00,5.717840E+00,4.770749E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999322E+01,0.000000E+00 +162243,fr,1,3.550000E+00,5.717840E+00,4.770749E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799886E+01,0.000000E+00 +162252,fr,1,3.650000E+00,5.717840E+00,4.770749E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998791E+01,0.000000E+00 +162253,fr,1,3.650000E+00,5.717840E+00,4.770749E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998791E+01,0.000000E+00 +162264,fr,2,3.750000E+00,5.717840E+00,4.770749E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998922E+01,0.000000E+00 +162276,fr,1,3.850000E+00,5.717840E+00,4.770749E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +162297,fr,1,3.950000E+00,5.717840E+00,4.770749E+01,5.000000E+00,Active Shallow Crust,1.289009E+02,8.999358E+01,0.000000E+00 +162301,fr,1,4.050000E+00,5.717840E+00,4.770749E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998855E+01,0.000000E+00 +162312,fr,1,4.150000E+00,5.717840E+00,4.770749E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +162324,fr,1,4.250000E+00,5.717840E+00,4.770749E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +162327,fr,1,4.250000E+00,5.717840E+00,4.770749E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.799440E+01,0.000000E+00 +162348,fr,1,4.450000E+00,5.717840E+00,4.770749E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +162386,fr,1,4.750000E+00,5.717840E+00,4.770749E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +162433,fr,1,5.150000E+00,5.717840E+00,4.770749E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +162720,fr,2,3.550000E+00,2.088700E-01,4.604053E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +162721,fr,1,3.550000E+00,2.088700E-01,4.604053E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +162724,fr,2,3.550000E+00,2.088700E-01,4.604053E+01,1.500000E+01,Active Shallow Crust,2.400121E+02,5.799813E+01,0.000000E+00 +162729,fr,1,3.550000E+00,2.088700E-01,4.604053E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999366E+01,0.000000E+00 +162732,fr,1,3.650000E+00,2.088700E-01,4.604053E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +162739,fr,1,3.650000E+00,2.088700E-01,4.604053E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +162744,fr,1,3.750000E+00,2.088700E-01,4.604053E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +162746,fr,1,3.750000E+00,2.088700E-01,4.604053E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +162769,fr,1,3.950000E+00,2.088700E-01,4.604053E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +162774,fr,1,3.950000E+00,2.088700E-01,4.604053E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +162777,fr,1,3.950000E+00,2.088700E-01,4.604053E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.999372E+01,0.000000E+00 +162792,fr,1,4.150000E+00,2.088700E-01,4.604053E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +162912,fr,1,5.150000E+00,2.088700E-01,4.604053E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +163200,fr,2,3.550000E+00,6.713910E+00,5.071870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998723E+01,0.000000E+00 +163203,fr,1,3.550000E+00,6.713910E+00,5.071870E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799909E+01,0.000000E+00 +163207,fr,1,3.550000E+00,6.713910E+00,5.071870E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998708E+01,-9.000000E+01 +163212,fr,2,3.650000E+00,6.713910E+00,5.071870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +163214,fr,1,3.650000E+00,6.713910E+00,5.071870E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +163217,fr,2,3.650000E+00,6.713910E+00,5.071870E+01,2.750000E+01,Active Shallow Crust,2.400013E+02,5.801273E+01,0.000000E+00 +163225,fr,1,3.750000E+00,6.713910E+00,5.071870E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +163230,fr,1,3.750000E+00,6.713910E+00,5.071870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,-9.000000E+01 +163236,fr,1,3.850000E+00,6.713910E+00,5.071870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999096E+01,0.000000E+00 +163237,fr,1,3.850000E+00,6.713910E+00,5.071870E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999096E+01,0.000000E+00 +163245,fr,1,3.850000E+00,6.713910E+00,5.071870E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.999322E+01,0.000000E+00 +163246,fr,1,3.850000E+00,6.713910E+00,5.071870E+01,1.500000E+01,Active Shallow Crust,1.288950E+02,8.999322E+01,0.000000E+00 +163248,fr,1,3.950000E+00,6.713910E+00,5.071870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999194E+01,0.000000E+00 +163249,fr,1,3.950000E+00,6.713910E+00,5.071870E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999194E+01,0.000000E+00 +163263,fr,1,4.050000E+00,6.713910E+00,5.071870E+01,5.000000E+00,Active Shallow Crust,2.400067E+02,5.800631E+01,0.000000E+00 +163272,fr,1,4.150000E+00,6.713910E+00,5.071870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +163284,fr,1,4.250000E+00,6.713910E+00,5.071870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +163296,fr,3,4.350000E+00,6.713910E+00,5.071870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +163299,fr,1,4.350000E+00,6.713910E+00,5.071870E+01,5.000000E+00,Active Shallow Crust,2.400095E+02,5.799590E+01,0.000000E+00 +163308,fr,1,4.450000E+00,6.713910E+00,5.071870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +163320,fr,1,4.550000E+00,6.713910E+00,5.071870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +163357,fr,1,4.850000E+00,6.713910E+00,5.071870E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +163360,fr,1,4.850000E+00,6.713910E+00,5.071870E+01,1.500000E+01,Active Shallow Crust,2.400189E+02,5.800277E+01,0.000000E+00 +163382,fr,1,5.050000E+00,6.713910E+00,5.071870E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +163682,fr,1,3.550000E+00,1.643360E+00,4.186058E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +163692,fr,1,3.650000E+00,1.643360E+00,4.186058E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +163728,fr,1,3.950000E+00,1.643360E+00,4.186058E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +163776,fr,1,4.350000E+00,1.643360E+00,4.186058E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +164173,fr,1,3.650000E+00,-1.323120E+00,4.536853E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +164229,fr,1,4.050000E+00,-1.323120E+00,4.536853E+01,5.000000E+00,Active Shallow Crust,1.288907E+02,8.999353E+01,0.000000E+00 +164786,fr,1,4.750000E+00,-8.780800E-01,4.156597E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +165132,fr,1,3.650000E+00,-6.339790E+00,4.854787E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998810E+01,0.000000E+00 +165648,fr,1,3.950000E+00,1.655320E+00,4.931665E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +165660,fr,1,4.050000E+00,1.655320E+00,4.931665E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +165690,fr,1,4.250000E+00,1.655320E+00,4.931665E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,-9.000000E+01 +166081,fr,1,3.550000E+00,2.262070E+00,5.064021E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +166092,fr,1,3.650000E+00,2.262070E+00,5.064021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998860E+01,0.000000E+00 +166117,fr,2,3.850000E+00,2.262070E+00,5.064021E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +166128,fr,1,3.950000E+00,2.262070E+00,5.064021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +166129,fr,1,3.950000E+00,2.262070E+00,5.064021E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +166164,fr,1,4.250000E+00,2.262070E+00,5.064021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +166560,fr,1,3.550000E+00,-2.111060E+00,4.211393E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +166568,fr,1,3.550000E+00,-2.111060E+00,4.211393E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998865E+01,-9.000000E+01 +166584,fr,1,3.750000E+00,-2.111060E+00,4.211393E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999109E+01,0.000000E+00 +166628,fr,1,4.050000E+00,-2.111060E+00,4.211393E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,-9.000000E+01 +166632,fr,1,4.150000E+00,-2.111060E+00,4.211393E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +166680,fr,1,4.550000E+00,-2.111060E+00,4.211393E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +166716,fr,1,4.850000E+00,-2.111060E+00,4.211393E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +167040,fr,3,3.550000E+00,-4.320160E+00,4.835488E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999330E+01,0.000000E+00 +167041,fr,1,3.550000E+00,-4.320160E+00,4.835488E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999330E+01,0.000000E+00 +167043,fr,1,3.550000E+00,-4.320160E+00,4.835488E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799824E+01,0.000000E+00 +167049,fr,1,3.550000E+00,-4.320160E+00,4.835488E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999330E+01,0.000000E+00 +167052,fr,3,3.650000E+00,-4.320160E+00,4.835488E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998805E+01,0.000000E+00 +167055,fr,1,3.650000E+00,-4.320160E+00,4.835488E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801276E+01,0.000000E+00 +167064,fr,1,3.750000E+00,-4.320160E+00,4.835488E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +167065,fr,1,3.750000E+00,-4.320160E+00,4.835488E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +167077,fr,1,3.850000E+00,-4.320160E+00,4.835488E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +167089,fr,1,3.950000E+00,-4.320160E+00,4.835488E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999155E+01,0.000000E+00 +167101,fr,1,4.050000E+00,-4.320160E+00,4.835488E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +167136,fr,1,4.350000E+00,-4.320160E+00,4.835488E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +167521,fr,1,3.550000E+00,3.414920E+00,4.518594E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +167522,fr,1,3.550000E+00,3.414920E+00,4.518594E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +167527,fr,1,3.550000E+00,3.414920E+00,4.518594E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998921E+01,-9.000000E+01 +167532,fr,1,3.650000E+00,3.414920E+00,4.518594E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +167541,fr,1,3.650000E+00,3.414920E+00,4.518594E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996350E+01,0.000000E+00 +167544,fr,2,3.750000E+00,3.414920E+00,4.518594E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998871E+01,0.000000E+00 +167546,fr,1,3.750000E+00,3.414920E+00,4.518594E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998871E+01,0.000000E+00 +167556,fr,1,3.850000E+00,3.414920E+00,4.518594E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +167580,fr,2,4.050000E+00,3.414920E+00,4.518594E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +167586,fr,1,4.050000E+00,3.414920E+00,4.518594E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,-9.000000E+01 +167589,fr,1,4.050000E+00,3.414920E+00,4.518594E+01,5.000000E+00,Active Shallow Crust,1.288902E+02,8.999400E+01,0.000000E+00 +167592,fr,1,4.150000E+00,3.414920E+00,4.518594E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +167655,fr,1,4.650000E+00,3.414920E+00,4.518594E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.799431E+01,0.000000E+00 +167724,fr,1,5.250000E+00,3.414920E+00,4.518594E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +168024,fr,1,3.750000E+00,4.813380E+00,4.193304E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +168027,fr,1,3.750000E+00,4.813380E+00,4.193304E+01,5.000000E+00,Active Shallow Crust,2.400067E+02,5.801789E+01,0.000000E+00 +168480,fr,1,3.550000E+00,7.575820E+00,4.894924E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998676E+01,0.000000E+00 +168493,fr,1,3.650000E+00,7.575820E+00,4.894924E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998820E+01,0.000000E+00 +168528,fr,1,3.950000E+00,7.575820E+00,4.894924E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999165E+01,0.000000E+00 +168582,fr,1,4.350000E+00,7.575820E+00,4.894924E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,-9.000000E+01 +169440,fr,1,3.550000E+00,5.264610E+00,4.306775E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999263E+01,0.000000E+00 +169452,fr,1,3.650000E+00,5.264610E+00,4.306775E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998687E+01,0.000000E+00 +169920,fr,1,3.550000E+00,7.178150E+00,5.077367E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998724E+01,0.000000E+00 +169926,fr,1,3.550000E+00,7.178150E+00,5.077367E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998710E+01,-9.000000E+01 +169932,fr,1,3.650000E+00,7.178150E+00,5.077367E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998863E+01,0.000000E+00 +169933,fr,1,3.650000E+00,7.178150E+00,5.077367E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998863E+01,0.000000E+00 +169944,fr,1,3.750000E+00,7.178150E+00,5.077367E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +169956,fr,2,3.850000E+00,7.178150E+00,5.077367E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +169960,fr,1,3.850000E+00,7.178150E+00,5.077367E+01,1.500000E+01,Active Shallow Crust,2.400117E+02,5.799718E+01,0.000000E+00 +169965,fr,1,3.850000E+00,7.178150E+00,5.077367E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.999548E+01,0.000000E+00 +169968,fr,2,3.950000E+00,7.178150E+00,5.077367E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999195E+01,0.000000E+00 +169977,fr,1,3.950000E+00,7.178150E+00,5.077367E+01,5.000000E+00,Active Shallow Crust,1.288992E+02,8.999397E+01,0.000000E+00 +169984,fr,1,4.050000E+00,7.178150E+00,5.077367E+01,1.500000E+01,Active Shallow Crust,2.400063E+02,5.800624E+01,0.000000E+00 +169992,fr,1,4.150000E+00,7.178150E+00,5.077367E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +169994,fr,1,4.150000E+00,7.178150E+00,5.077367E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +170142,fr,1,5.350000E+00,7.178150E+00,5.077367E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,-9.000000E+01 +170400,fr,1,3.550000E+00,6.147640E+00,4.990625E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998701E+01,0.000000E+00 +170424,fr,1,3.750000E+00,6.147640E+00,4.990625E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +170544,fr,1,4.750000E+00,6.147640E+00,4.990625E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +170893,fr,1,3.650000E+00,4.348630E+00,4.413943E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998710E+01,0.000000E+00 +170904,fr,1,3.750000E+00,4.348630E+00,4.413943E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998850E+01,0.000000E+00 +170932,fr,1,3.950000E+00,4.348630E+00,4.413943E+01,1.500000E+01,Active Shallow Crust,2.400197E+02,5.800433E+01,0.000000E+00 +170937,fr,1,3.950000E+00,4.348630E+00,4.413943E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.999315E+01,0.000000E+00 +170939,fr,1,3.950000E+00,4.348630E+00,4.413943E+01,2.750000E+01,Active Shallow Crust,1.289008E+02,8.999315E+01,0.000000E+00 +170940,fr,1,4.050000E+00,4.348630E+00,4.413943E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999186E+01,0.000000E+00 +170979,fr,1,4.350000E+00,4.348630E+00,4.413943E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799593E+01,0.000000E+00 +171012,fr,1,4.650000E+00,4.348630E+00,4.413943E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +171025,fr,1,4.750000E+00,4.348630E+00,4.413943E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +171048,fr,1,4.950000E+00,4.348630E+00,4.413943E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +171206,fr,1,6.250000E+00,4.348630E+00,4.413943E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +171360,fr,1,3.550000E+00,7.037730E+00,4.408808E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999276E+01,0.000000E+00 +171361,fr,1,3.550000E+00,7.037730E+00,4.408808E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999276E+01,0.000000E+00 +171372,fr,1,3.650000E+00,7.037730E+00,4.408808E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998709E+01,0.000000E+00 +171375,fr,1,3.650000E+00,7.037730E+00,4.408808E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801206E+01,0.000000E+00 +171376,fr,1,3.650000E+00,7.037730E+00,4.408808E+01,1.500000E+01,Active Shallow Crust,2.400012E+02,5.801206E+01,0.000000E+00 +171381,fr,2,3.650000E+00,7.037730E+00,4.408808E+01,5.000000E+00,Active Shallow Crust,1.288999E+02,8.996348E+01,0.000000E+00 +171384,fr,1,3.750000E+00,7.037730E+00,4.408808E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998849E+01,0.000000E+00 +171390,fr,1,3.750000E+00,7.037730E+00,4.408808E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998836E+01,-9.000000E+01 +171396,fr,1,3.850000E+00,7.037730E+00,4.408808E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +171397,fr,1,3.850000E+00,7.037730E+00,4.408808E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +171402,fr,1,3.850000E+00,7.037730E+00,4.408808E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,-9.000000E+01 +171408,fr,2,3.950000E+00,7.037730E+00,4.408808E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +171409,fr,2,3.950000E+00,7.037730E+00,4.408808E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +171421,fr,1,4.050000E+00,7.037730E+00,4.408808E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999185E+01,0.000000E+00 +171444,fr,2,4.250000E+00,7.037730E+00,4.408808E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +171447,fr,1,4.250000E+00,7.037730E+00,4.408808E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.799405E+01,0.000000E+00 +171452,fr,1,4.250000E+00,7.037730E+00,4.408808E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,-9.000000E+01 +171465,fr,1,4.350000E+00,7.037730E+00,4.408808E+01,5.000000E+00,Active Shallow Crust,1.288978E+02,8.998294E+01,0.000000E+00 +171478,fr,1,4.450000E+00,7.037730E+00,4.408808E+01,1.500000E+01,Active Shallow Crust,1.288922E+02,8.999358E+01,0.000000E+00 +171510,fr,1,4.750000E+00,7.037730E+00,4.408808E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999080E+01,-9.000000E+01 +171519,fr,1,4.850000E+00,7.037730E+00,4.408808E+01,5.000000E+00,Active Shallow Crust,2.400165E+02,5.800208E+01,0.000000E+00 +171528,fr,1,4.950000E+00,7.037730E+00,4.408808E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +171537,fr,1,4.950000E+00,7.037730E+00,4.408808E+01,5.000000E+00,Active Shallow Crust,1.288909E+02,8.998965E+01,0.000000E+00 +171856,fr,1,3.650000E+00,5.192890E+00,4.877988E+01,1.500000E+01,Active Shallow Crust,2.400019E+02,5.801265E+01,0.000000E+00 +172320,fr,2,3.550000E+00,5.409240E+00,4.753904E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999319E+01,0.000000E+00 +172333,fr,1,3.650000E+00,5.409240E+00,4.753904E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998787E+01,0.000000E+00 +172338,fr,1,3.650000E+00,5.409240E+00,4.753904E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998772E+01,-9.000000E+01 +172344,fr,1,3.750000E+00,5.409240E+00,4.753904E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +172346,fr,1,3.750000E+00,5.409240E+00,4.753904E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +172369,fr,1,3.950000E+00,5.409240E+00,4.753904E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999141E+01,0.000000E+00 +172404,fr,1,4.250000E+00,5.409240E+00,4.753904E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +172415,fr,1,4.250000E+00,5.409240E+00,4.753904E+01,2.750000E+01,Active Shallow Crust,1.288934E+02,8.998099E+01,0.000000E+00 +172801,fr,1,3.550000E+00,-1.924920E+00,4.694777E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +172802,fr,1,3.550000E+00,-1.924920E+00,4.694777E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +172806,fr,1,3.550000E+00,-1.924920E+00,4.694777E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,-9.000000E+01 +172809,fr,1,3.550000E+00,-1.924920E+00,4.694777E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999398E+01,0.000000E+00 +172812,fr,3,3.650000E+00,-1.924920E+00,4.694777E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +172818,fr,1,3.650000E+00,-1.924920E+00,4.694777E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999069E+01,-9.000000E+01 +172821,fr,2,3.650000E+00,-1.924920E+00,4.694777E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.996339E+01,0.000000E+00 +172824,fr,1,3.750000E+00,-1.924920E+00,4.694777E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +172836,fr,1,3.850000E+00,-1.924920E+00,4.694777E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +172842,fr,1,3.850000E+00,-1.924920E+00,4.694777E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +172844,fr,1,3.850000E+00,-1.924920E+00,4.694777E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +172849,fr,1,3.950000E+00,-1.924920E+00,4.694777E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +172857,fr,1,3.950000E+00,-1.924920E+00,4.694777E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.999348E+01,0.000000E+00 +172860,fr,1,4.050000E+00,-1.924920E+00,4.694777E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +172875,fr,1,4.150000E+00,-1.924920E+00,4.694777E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799737E+01,0.000000E+00 +172896,fr,1,4.350000E+00,-1.924920E+00,4.694777E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +172909,fr,1,4.450000E+00,-1.924920E+00,4.694777E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +172916,fr,1,4.450000E+00,-1.924920E+00,4.694777E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,-9.000000E+01 +172933,fr,1,4.650000E+00,-1.924920E+00,4.694777E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +172954,fr,1,4.750000E+00,-1.924920E+00,4.694777E+01,1.500000E+01,Active Shallow Crust,1.288885E+02,8.998809E+01,0.000000E+00 +172968,fr,1,4.950000E+00,-1.924920E+00,4.694777E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +173280,fr,3,3.550000E+00,6.397320E+00,4.624706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999303E+01,0.000000E+00 +173281,fr,2,3.550000E+00,6.397320E+00,4.624706E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999303E+01,0.000000E+00 +173282,fr,1,3.550000E+00,6.397320E+00,4.624706E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999303E+01,0.000000E+00 +173283,fr,1,3.550000E+00,6.397320E+00,4.624706E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799803E+01,0.000000E+00 +173302,fr,1,3.650000E+00,6.397320E+00,4.624706E+01,1.500000E+01,Active Shallow Crust,1.288994E+02,8.996352E+01,0.000000E+00 +173304,fr,2,3.750000E+00,6.397320E+00,4.624706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998892E+01,0.000000E+00 +173307,fr,1,3.750000E+00,6.397320E+00,4.624706E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.801778E+01,0.000000E+00 +173308,fr,1,3.750000E+00,6.397320E+00,4.624706E+01,1.500000E+01,Active Shallow Crust,2.400082E+02,5.801778E+01,0.000000E+00 +173310,fr,1,3.750000E+00,6.397320E+00,4.624706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998879E+01,-9.000000E+01 +173328,fr,1,3.950000E+00,6.397320E+00,4.624706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +173357,fr,1,4.150000E+00,6.397320E+00,4.624706E+01,2.750000E+01,Active Shallow Crust,2.400086E+02,5.799710E+01,0.000000E+00 +173361,fr,1,4.150000E+00,6.397320E+00,4.624706E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.999476E+01,0.000000E+00 +173380,fr,1,4.350000E+00,6.397320E+00,4.624706E+01,1.500000E+01,Active Shallow Crust,2.400086E+02,5.799576E+01,0.000000E+00 +173422,fr,1,4.650000E+00,6.397320E+00,4.624706E+01,1.500000E+01,Active Shallow Crust,1.288913E+02,8.998720E+01,0.000000E+00 +173436,fr,1,4.850000E+00,6.397320E+00,4.624706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +173763,fr,1,3.550000E+00,1.550630E+00,5.087517E+01,5.000000E+00,Active Shallow Crust,2.400128E+02,5.799801E+01,0.000000E+00 +173769,fr,1,3.550000E+00,1.550630E+00,5.087517E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999364E+01,0.000000E+00 +173772,fr,3,3.650000E+00,1.550630E+00,5.087517E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +173784,fr,2,3.750000E+00,1.550630E+00,5.087517E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +173800,fr,1,3.850000E+00,1.550630E+00,5.087517E+01,1.500000E+01,Active Shallow Crust,2.400113E+02,5.799803E+01,0.000000E+00 +173808,fr,1,3.950000E+00,1.550630E+00,5.087517E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +173821,fr,1,4.050000E+00,1.550630E+00,5.087517E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +173961,fr,1,5.150000E+00,1.550630E+00,5.087517E+01,5.000000E+00,Active Shallow Crust,1.288814E+02,8.999102E+01,0.000000E+00 +174240,fr,1,3.550000E+00,2.760730E+00,4.469236E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +174264,fr,1,3.750000E+00,2.760730E+00,4.469236E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998861E+01,0.000000E+00 +174267,fr,1,3.750000E+00,2.760730E+00,4.469236E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801760E+01,0.000000E+00 +174278,fr,1,3.850000E+00,2.760730E+00,4.469236E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +174279,fr,1,3.850000E+00,2.760730E+00,4.469236E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799736E+01,0.000000E+00 +174282,fr,1,3.850000E+00,2.760730E+00,4.469236E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,-9.000000E+01 +174294,fr,1,3.950000E+00,2.760730E+00,4.469236E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999085E+01,-9.000000E+01 +174313,fr,1,4.150000E+00,2.760730E+00,4.469236E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998922E+01,0.000000E+00 +174333,fr,1,4.250000E+00,2.760730E+00,4.469236E+01,5.000000E+00,Active Shallow Crust,1.288946E+02,8.998088E+01,0.000000E+00 +174336,fr,1,4.350000E+00,2.760730E+00,4.469236E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +174357,fr,1,4.450000E+00,2.760730E+00,4.469236E+01,5.000000E+00,Active Shallow Crust,1.288922E+02,8.999428E+01,0.000000E+00 +174360,fr,1,4.550000E+00,2.760730E+00,4.469236E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +174410,fr,1,4.950000E+00,2.760730E+00,4.469236E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +174720,fr,3,3.550000E+00,3.279000E-02,4.344704E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +174732,fr,2,3.650000E+00,3.279000E-02,4.344704E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +174734,fr,1,3.650000E+00,3.279000E-02,4.344704E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +174792,fr,1,4.150000E+00,3.279000E-02,4.344704E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +174804,fr,1,4.250000E+00,3.279000E-02,4.344704E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +174840,fr,1,4.550000E+00,3.279000E-02,4.344704E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +174852,fr,1,4.650000E+00,3.279000E-02,4.344704E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +174889,fr,1,4.950000E+00,3.279000E-02,4.344704E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +175200,fr,4,3.550000E+00,7.323300E+00,4.517967E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999289E+01,0.000000E+00 +175201,fr,1,3.550000E+00,7.323300E+00,4.517967E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999289E+01,0.000000E+00 +175202,fr,2,3.550000E+00,7.323300E+00,4.517967E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999289E+01,0.000000E+00 +175203,fr,2,3.550000E+00,7.323300E+00,4.517967E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799746E+01,0.000000E+00 +175204,fr,1,3.550000E+00,7.323300E+00,4.517967E+01,1.500000E+01,Active Shallow Crust,2.400119E+02,5.799746E+01,0.000000E+00 +175206,fr,1,3.550000E+00,7.323300E+00,4.517967E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999281E+01,-9.000000E+01 +175212,fr,5,3.650000E+00,7.323300E+00,4.517967E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998733E+01,0.000000E+00 +175213,fr,1,3.650000E+00,7.323300E+00,4.517967E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998733E+01,0.000000E+00 +175214,fr,2,3.650000E+00,7.323300E+00,4.517967E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998733E+01,0.000000E+00 +175215,fr,1,3.650000E+00,7.323300E+00,4.517967E+01,5.000000E+00,Active Shallow Crust,2.399998E+02,5.801385E+01,0.000000E+00 +175218,fr,1,3.650000E+00,7.323300E+00,4.517967E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998718E+01,-9.000000E+01 +175224,fr,5,3.750000E+00,7.323300E+00,4.517967E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998871E+01,0.000000E+00 +175225,fr,2,3.750000E+00,7.323300E+00,4.517967E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998871E+01,0.000000E+00 +175227,fr,1,3.750000E+00,7.323300E+00,4.517967E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801694E+01,0.000000E+00 +175228,fr,1,3.750000E+00,7.323300E+00,4.517967E+01,1.500000E+01,Active Shallow Crust,2.400080E+02,5.801694E+01,0.000000E+00 +175230,fr,1,3.750000E+00,7.323300E+00,4.517967E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998858E+01,-9.000000E+01 +175236,fr,1,3.850000E+00,7.323300E+00,4.517967E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +175237,fr,3,3.850000E+00,7.323300E+00,4.517967E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +175242,fr,2,3.850000E+00,7.323300E+00,4.517967E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,-9.000000E+01 +175246,fr,1,3.850000E+00,7.323300E+00,4.517967E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.999496E+01,0.000000E+00 +175248,fr,3,3.950000E+00,7.323300E+00,4.517967E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999103E+01,0.000000E+00 +175250,fr,1,3.950000E+00,7.323300E+00,4.517967E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999103E+01,0.000000E+00 +175254,fr,2,3.950000E+00,7.323300E+00,4.517967E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999093E+01,-9.000000E+01 +175257,fr,2,3.950000E+00,7.323300E+00,4.517967E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.999327E+01,0.000000E+00 +175260,fr,1,4.050000E+00,7.323300E+00,4.517967E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998801E+01,0.000000E+00 +175263,fr,1,4.050000E+00,7.323300E+00,4.517967E+01,5.000000E+00,Active Shallow Crust,2.400065E+02,5.800556E+01,0.000000E+00 +175266,fr,1,4.050000E+00,7.323300E+00,4.517967E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999191E+01,-9.000000E+01 +175272,fr,1,4.150000E+00,7.323300E+00,4.517967E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +175273,fr,2,4.150000E+00,7.323300E+00,4.517967E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +175284,fr,1,4.250000E+00,7.323300E+00,4.517967E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +175285,fr,2,4.250000E+00,7.323300E+00,4.517967E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +175287,fr,1,4.250000E+00,7.323300E+00,4.517967E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799352E+01,0.000000E+00 +175293,fr,1,4.250000E+00,7.323300E+00,4.517967E+01,5.000000E+00,Active Shallow Crust,1.288939E+02,8.998090E+01,0.000000E+00 +175294,fr,1,4.250000E+00,7.323300E+00,4.517967E+01,1.500000E+01,Active Shallow Crust,1.288939E+02,8.998090E+01,0.000000E+00 +175296,fr,3,4.350000E+00,7.323300E+00,4.517967E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998868E+01,0.000000E+00 +175297,fr,2,4.350000E+00,7.323300E+00,4.517967E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998868E+01,0.000000E+00 +175308,fr,1,4.450000E+00,7.323300E+00,4.517967E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +175313,fr,1,4.450000E+00,7.323300E+00,4.517967E+01,2.750000E+01,Active Shallow Crust,2.400046E+02,5.799506E+01,0.000000E+00 +175315,fr,1,4.450000E+00,7.323300E+00,4.517967E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,-9.000000E+01 +175333,fr,1,4.650000E+00,7.323300E+00,4.517967E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +175392,fr,1,5.150000E+00,7.323300E+00,4.517967E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +175681,fr,1,3.550000E+00,3.827440E+00,4.286849E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +175693,fr,1,3.650000E+00,3.827440E+00,4.286849E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +175764,fr,1,4.250000E+00,3.827440E+00,4.286849E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +175802,fr,1,4.550000E+00,3.827440E+00,4.286849E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +175860,fr,1,5.050000E+00,3.827440E+00,4.286849E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +176185,fr,1,3.750000E+00,1.440180E+00,5.138822E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +176211,fr,1,3.950000E+00,1.440180E+00,5.138822E+01,5.000000E+00,Active Shallow Crust,2.400205E+02,5.800525E+01,0.000000E+00 +176216,fr,1,3.950000E+00,1.440180E+00,5.138822E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +176223,fr,1,4.050000E+00,1.440180E+00,5.138822E+01,5.000000E+00,Active Shallow Crust,2.400068E+02,5.800606E+01,0.000000E+00 +176233,fr,1,4.150000E+00,1.440180E+00,5.138822E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +176251,fr,1,4.250000E+00,1.440180E+00,5.138822E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +176307,fr,1,4.750000E+00,1.440180E+00,5.138822E+01,5.000000E+00,Active Shallow Crust,2.400095E+02,5.800486E+01,0.000000E+00 +176646,fr,1,3.550000E+00,1.840340E+00,4.189294E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999051E+01,-9.000000E+01 +176700,fr,1,4.050000E+00,1.840340E+00,4.189294E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +176702,fr,1,4.050000E+00,1.840340E+00,4.189294E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +176803,fr,1,4.850000E+00,1.840340E+00,4.189294E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,-9.000000E+01 +176820,fr,1,5.050000E+00,1.840340E+00,4.189294E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +177120,fr,2,3.550000E+00,1.690610E+00,4.266948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999073E+01,0.000000E+00 +177123,fr,1,3.550000E+00,1.690610E+00,4.266948E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799813E+01,0.000000E+00 +177126,fr,1,3.550000E+00,1.690610E+00,4.266948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,-9.000000E+01 +177132,fr,1,3.650000E+00,1.690610E+00,4.266948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +177144,fr,2,3.750000E+00,1.690610E+00,4.266948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +177148,fr,1,3.750000E+00,1.690610E+00,4.266948E+01,1.500000E+01,Active Shallow Crust,2.400080E+02,5.801751E+01,0.000000E+00 +177154,fr,1,3.750000E+00,1.690610E+00,4.266948E+01,1.500000E+01,Active Shallow Crust,1.288968E+02,8.996742E+01,0.000000E+00 +177156,fr,1,3.850000E+00,1.690610E+00,4.266948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +177159,fr,1,3.850000E+00,1.690610E+00,4.266948E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.799773E+01,0.000000E+00 +177170,fr,1,3.950000E+00,1.690610E+00,4.266948E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +177180,fr,1,4.050000E+00,1.690610E+00,4.266948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +177183,fr,1,4.050000E+00,1.690610E+00,4.266948E+01,5.000000E+00,Active Shallow Crust,2.400053E+02,5.800580E+01,0.000000E+00 +177192,fr,1,4.150000E+00,1.690610E+00,4.266948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +177196,fr,1,4.150000E+00,1.690610E+00,4.266948E+01,1.500000E+01,Active Shallow Crust,2.400078E+02,5.799723E+01,0.000000E+00 +177205,fr,1,4.250000E+00,1.690610E+00,4.266948E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +177207,fr,1,4.250000E+00,1.690610E+00,4.266948E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.799384E+01,0.000000E+00 +177240,fr,1,4.550000E+00,1.690610E+00,4.266948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +177432,fr,1,6.150000E+00,1.690612E+00,4.266948E+01,6.011322E+00,Active Shallow Crust,3.599999E+02,8.999001E+01,0.000000E+00 +177601,fr,1,3.550000E+00,5.478880E+00,4.442568E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999280E+01,0.000000E+00 +177606,fr,1,3.550000E+00,5.478880E+00,4.442568E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999271E+01,-9.000000E+01 +177607,fr,1,3.550000E+00,5.478880E+00,4.442568E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999271E+01,-9.000000E+01 +177612,fr,2,3.650000E+00,5.478880E+00,4.442568E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998716E+01,0.000000E+00 +177613,fr,1,3.650000E+00,5.478880E+00,4.442568E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998716E+01,0.000000E+00 +177619,fr,1,3.650000E+00,5.478880E+00,4.442568E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998701E+01,-9.000000E+01 +177624,fr,1,3.750000E+00,5.478880E+00,4.442568E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +177636,fr,1,3.850000E+00,5.478880E+00,4.442568E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +177654,fr,1,3.950000E+00,5.478880E+00,4.442568E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,-9.000000E+01 +177675,fr,1,4.150000E+00,5.478880E+00,4.442568E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799710E+01,0.000000E+00 +177721,fr,1,4.550000E+00,5.478880E+00,4.442568E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999089E+01,0.000000E+00 +177780,fr,1,5.050000E+00,5.478880E+00,4.442568E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +178080,fr,6,3.550000E+00,5.655140E+00,5.070900E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998723E+01,0.000000E+00 +178086,fr,1,3.550000E+00,5.655140E+00,5.070900E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998708E+01,-9.000000E+01 +178090,fr,1,3.550000E+00,5.655140E+00,5.070900E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.999361E+01,0.000000E+00 +178092,fr,4,3.650000E+00,5.655140E+00,5.070900E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +178093,fr,2,3.650000E+00,5.655140E+00,5.070900E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +178098,fr,1,3.650000E+00,5.655140E+00,5.070900E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998849E+01,-9.000000E+01 +178100,fr,1,3.650000E+00,5.655140E+00,5.070900E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998849E+01,-9.000000E+01 +178101,fr,1,3.650000E+00,5.655140E+00,5.070900E+01,5.000000E+00,Active Shallow Crust,1.289006E+02,8.996305E+01,0.000000E+00 +178104,fr,2,3.750000E+00,5.655140E+00,5.070900E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +178108,fr,1,3.750000E+00,5.655140E+00,5.070900E+01,1.500000E+01,Active Shallow Crust,2.400086E+02,5.801730E+01,0.000000E+00 +178109,fr,1,3.750000E+00,5.655140E+00,5.070900E+01,2.750000E+01,Active Shallow Crust,2.400086E+02,5.801730E+01,0.000000E+00 +178110,fr,1,3.750000E+00,5.655140E+00,5.070900E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,-9.000000E+01 +178114,fr,1,3.750000E+00,5.655140E+00,5.070900E+01,1.500000E+01,Active Shallow Crust,1.288968E+02,8.996707E+01,0.000000E+00 +178121,fr,1,3.850000E+00,5.655140E+00,5.070900E+01,2.750000E+01,Active Shallow Crust,2.400121E+02,5.799787E+01,0.000000E+00 +178128,fr,1,3.950000E+00,5.655140E+00,5.070900E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999194E+01,0.000000E+00 +178133,fr,1,3.950000E+00,5.655140E+00,5.070900E+01,2.750000E+01,Active Shallow Crust,2.400205E+02,5.800539E+01,0.000000E+00 +178140,fr,1,4.050000E+00,5.655140E+00,5.070900E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +178152,fr,2,4.150000E+00,5.655140E+00,5.070900E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +178153,fr,1,4.150000E+00,5.655140E+00,5.070900E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +178158,fr,1,4.150000E+00,5.655140E+00,5.070900E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,-9.000000E+01 +178183,fr,1,4.350000E+00,5.655140E+00,5.070900E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,-9.000000E+01 +178188,fr,2,4.450000E+00,5.655140E+00,5.070900E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +178191,fr,1,4.450000E+00,5.655140E+00,5.070900E+01,5.000000E+00,Active Shallow Crust,2.400066E+02,5.799489E+01,0.000000E+00 +178201,fr,1,4.550000E+00,5.655140E+00,5.070900E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +178212,fr,1,4.650000E+00,5.655140E+00,5.070900E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +178224,fr,2,4.750000E+00,5.655140E+00,5.070900E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +178381,fr,1,6.050000E+00,5.655140E+00,5.070900E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +178560,fr,1,3.550000E+00,4.331350E+00,4.610192E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999301E+01,0.000000E+00 +178563,fr,1,3.550000E+00,4.331350E+00,4.610192E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799880E+01,0.000000E+00 +178566,fr,2,3.550000E+00,4.331350E+00,4.610192E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999293E+01,-9.000000E+01 +178572,fr,1,3.650000E+00,4.331350E+00,4.610192E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998753E+01,0.000000E+00 +178596,fr,2,3.850000E+00,4.331350E+00,4.610192E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +178611,fr,1,3.950000E+00,4.331350E+00,4.610192E+01,5.000000E+00,Active Shallow Crust,2.400192E+02,5.800506E+01,0.000000E+00 +178621,fr,2,4.050000E+00,4.331350E+00,4.610192E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998820E+01,0.000000E+00 +179040,fr,1,3.550000E+00,4.155340E+00,4.278198E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999260E+01,0.000000E+00 +179100,fr,1,4.050000E+00,4.155340E+00,4.278198E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999168E+01,0.000000E+00 +179112,fr,3,4.150000E+00,4.155340E+00,4.278198E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998887E+01,0.000000E+00 +179115,fr,1,4.150000E+00,4.155340E+00,4.278198E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799727E+01,0.000000E+00 +179520,fr,2,3.550000E+00,5.291190E+00,5.139527E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998742E+01,0.000000E+00 +179533,fr,1,3.650000E+00,5.291190E+00,5.139527E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +179538,fr,1,3.650000E+00,5.291190E+00,5.139527E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,-9.000000E+01 +179556,fr,1,3.850000E+00,5.291190E+00,5.139527E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999109E+01,0.000000E+00 +179698,fr,1,4.950000E+00,5.291190E+00,5.139527E+01,1.500000E+01,Active Shallow Crust,1.288877E+02,8.998979E+01,0.000000E+00 +180480,fr,2,3.550000E+00,5.274150E+00,4.636207E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999304E+01,0.000000E+00 +180487,fr,1,3.550000E+00,5.274150E+00,4.636207E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999296E+01,-9.000000E+01 +180492,fr,2,3.650000E+00,5.274150E+00,4.636207E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998759E+01,0.000000E+00 +180493,fr,1,3.650000E+00,5.274150E+00,4.636207E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998759E+01,0.000000E+00 +180528,fr,1,3.950000E+00,5.274150E+00,4.636207E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999122E+01,0.000000E+00 +180567,fr,1,4.250000E+00,5.274150E+00,4.636207E+01,5.000000E+00,Active Shallow Crust,2.400072E+02,5.799413E+01,0.000000E+00 +180648,fr,1,4.950000E+00,5.274150E+00,4.636207E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +180675,fr,1,5.150000E+00,5.274150E+00,4.636207E+01,5.000000E+00,Active Shallow Crust,2.400195E+02,5.799991E+01,0.000000E+00 +180720,fr,1,5.550000E+00,5.274150E+00,4.636207E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +180960,fr,1,3.550000E+00,1.602310E+00,4.957606E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +180977,fr,1,3.650000E+00,1.602310E+00,4.957606E+01,2.750000E+01,Active Shallow Crust,2.400016E+02,5.801274E+01,0.000000E+00 +180985,fr,1,3.750000E+00,1.602310E+00,4.957606E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +180996,fr,1,3.850000E+00,1.602310E+00,4.957606E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +180999,fr,1,3.850000E+00,1.602310E+00,4.957606E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799789E+01,0.000000E+00 +181024,fr,1,4.050000E+00,1.602310E+00,4.957606E+01,1.500000E+01,Active Shallow Crust,2.400066E+02,5.800596E+01,0.000000E+00 +181116,fr,1,4.850000E+00,1.602310E+00,4.957606E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +181442,fr,1,3.550000E+00,9.331700E-01,4.555572E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +181454,fr,1,3.650000E+00,9.331700E-01,4.555572E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +181458,fr,1,3.650000E+00,9.331700E-01,4.555572E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +181476,fr,1,3.850000E+00,9.331700E-01,4.555572E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +181511,fr,1,4.050000E+00,9.331700E-01,4.555572E+01,2.750000E+01,Active Shallow Crust,1.288906E+02,8.999380E+01,0.000000E+00 +181512,fr,1,4.150000E+00,9.331700E-01,4.555572E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +181648,fr,1,5.250000E+00,9.331700E-01,4.555572E+01,1.500000E+01,Active Shallow Crust,2.400249E+02,5.800016E+01,0.000000E+00 +181945,fr,1,3.750000E+00,2.224780E+00,5.192470E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +181947,fr,1,3.750000E+00,2.224780E+00,5.192470E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.801759E+01,0.000000E+00 +181980,fr,1,4.050000E+00,2.224780E+00,5.192470E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +181986,fr,1,4.050000E+00,2.224780E+00,5.192470E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998939E+01,-9.000000E+01 +182400,fr,2,3.550000E+00,6.140530E+00,4.647467E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999306E+01,0.000000E+00 +182401,fr,1,3.550000E+00,6.140530E+00,4.647467E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999306E+01,0.000000E+00 +182406,fr,1,3.550000E+00,6.140530E+00,4.647467E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999297E+01,-9.000000E+01 +182412,fr,4,3.650000E+00,6.140530E+00,4.647467E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998762E+01,0.000000E+00 +182414,fr,1,3.650000E+00,6.140530E+00,4.647467E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998762E+01,0.000000E+00 +182415,fr,1,3.650000E+00,6.140530E+00,4.647467E+01,5.000000E+00,Active Shallow Crust,2.400004E+02,5.801359E+01,0.000000E+00 +182436,fr,2,3.850000E+00,6.140530E+00,4.647467E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +182437,fr,1,3.850000E+00,6.140530E+00,4.647467E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +182448,fr,1,3.950000E+00,6.140530E+00,4.647467E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +182449,fr,1,3.950000E+00,6.140530E+00,4.647467E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +182457,fr,1,3.950000E+00,6.140530E+00,4.647467E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.999343E+01,0.000000E+00 +182458,fr,1,3.950000E+00,6.140530E+00,4.647467E+01,1.500000E+01,Active Shallow Crust,1.289001E+02,8.999343E+01,0.000000E+00 +182460,fr,1,4.050000E+00,6.140530E+00,4.647467E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998828E+01,0.000000E+00 +182461,fr,1,4.050000E+00,6.140530E+00,4.647467E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998828E+01,0.000000E+00 +182463,fr,1,4.050000E+00,6.140530E+00,4.647467E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.800623E+01,0.000000E+00 +182473,fr,1,4.150000E+00,6.140530E+00,4.647467E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +182475,fr,1,4.150000E+00,6.140530E+00,4.647467E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799733E+01,0.000000E+00 +182485,fr,1,4.250000E+00,6.140530E+00,4.647467E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999069E+01,0.000000E+00 +182496,fr,2,4.350000E+00,6.140530E+00,4.647467E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998894E+01,0.000000E+00 +182497,fr,1,4.350000E+00,6.140530E+00,4.647467E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998894E+01,0.000000E+00 +182532,fr,1,4.650000E+00,6.140530E+00,4.647467E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +182538,fr,1,4.650000E+00,6.140530E+00,4.647467E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +182544,fr,2,4.750000E+00,6.140530E+00,4.647467E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +182676,fr,1,5.850000E+00,6.140530E+00,4.647467E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +182880,fr,3,3.550000E+00,8.751210E+00,4.970417E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998695E+01,0.000000E+00 +182881,fr,1,3.550000E+00,8.751210E+00,4.970417E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998695E+01,0.000000E+00 +182893,fr,1,3.650000E+00,8.751210E+00,4.970417E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998837E+01,0.000000E+00 +182904,fr,1,3.750000E+00,8.751210E+00,4.970417E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +182905,fr,1,3.750000E+00,8.751210E+00,4.970417E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +182916,fr,1,3.850000E+00,8.751210E+00,4.970417E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999077E+01,0.000000E+00 +182919,fr,1,3.850000E+00,8.751210E+00,4.970417E+01,5.000000E+00,Active Shallow Crust,2.400100E+02,5.799792E+01,0.000000E+00 +182928,fr,1,3.950000E+00,8.751210E+00,4.970417E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999177E+01,0.000000E+00 +182932,fr,1,3.950000E+00,8.751210E+00,4.970417E+01,1.500000E+01,Active Shallow Crust,2.400205E+02,5.800539E+01,0.000000E+00 +182934,fr,1,3.950000E+00,8.751210E+00,4.970417E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999168E+01,-9.000000E+01 +182937,fr,2,3.950000E+00,8.751210E+00,4.970417E+01,5.000000E+00,Active Shallow Crust,1.288996E+02,8.999177E+01,0.000000E+00 +182952,fr,1,4.150000E+00,8.751210E+00,4.970417E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998692E+01,0.000000E+00 +182976,fr,1,4.350000E+00,8.751210E+00,4.970417E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +182988,fr,1,4.450000E+00,8.751210E+00,4.970417E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +183024,fr,1,4.750000E+00,8.751210E+00,4.970417E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +183048,fr,1,4.950000E+00,8.751210E+00,4.970417E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +183096,fr,2,5.350000E+00,8.751210E+00,4.970417E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +183360,fr,1,3.550000E+00,2.796720E+00,4.779646E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +183373,fr,1,3.650000E+00,2.796720E+00,4.779646E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +183456,fr,1,4.350000E+00,2.796720E+00,4.779646E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +184321,fr,2,3.550000E+00,1.827290E+00,4.681759E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +184322,fr,2,3.550000E+00,1.827290E+00,4.681759E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +184323,fr,1,3.550000E+00,1.827290E+00,4.681759E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799800E+01,0.000000E+00 +184339,fr,1,3.650000E+00,1.827290E+00,4.681759E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999067E+01,-9.000000E+01 +184351,fr,1,3.750000E+00,1.827290E+00,4.681759E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,-9.000000E+01 +184356,fr,1,3.850000E+00,1.827290E+00,4.681759E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +184392,fr,1,4.150000E+00,1.827290E+00,4.681759E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +184416,fr,1,4.350000E+00,1.827290E+00,4.681759E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +184429,fr,1,4.450000E+00,1.827290E+00,4.681759E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +185280,fr,1,3.550000E+00,2.052320E+00,4.616531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +185281,fr,1,3.550000E+00,2.052320E+00,4.616531E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +185286,fr,1,3.550000E+00,2.052320E+00,4.616531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,-9.000000E+01 +185287,fr,1,3.550000E+00,2.052320E+00,4.616531E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,-9.000000E+01 +185292,fr,2,3.650000E+00,2.052320E+00,4.616531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +185293,fr,1,3.650000E+00,2.052320E+00,4.616531E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +185302,fr,1,3.650000E+00,2.052320E+00,4.616531E+01,1.500000E+01,Active Shallow Crust,1.288998E+02,8.996352E+01,0.000000E+00 +185304,fr,2,3.750000E+00,2.052320E+00,4.616531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +185312,fr,1,3.750000E+00,2.052320E+00,4.616531E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998878E+01,-9.000000E+01 +185316,fr,1,3.850000E+00,2.052320E+00,4.616531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +185328,fr,1,3.950000E+00,2.052320E+00,4.616531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +185337,fr,1,3.950000E+00,2.052320E+00,4.616531E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.999339E+01,0.000000E+00 +185340,fr,3,4.050000E+00,2.052320E+00,4.616531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +185346,fr,1,4.050000E+00,2.052320E+00,4.616531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +185352,fr,1,4.150000E+00,2.052320E+00,4.616531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +185370,fr,1,4.250000E+00,2.052320E+00,4.616531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,-9.000000E+01 +185388,fr,1,4.450000E+00,2.052320E+00,4.616531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +185394,fr,1,4.450000E+00,2.052320E+00,4.616531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +185400,fr,1,4.550000E+00,2.052320E+00,4.616531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +185511,fr,1,5.450000E+00,2.052320E+00,4.616531E+01,5.000000E+00,Active Shallow Crust,2.400287E+02,5.799844E+01,0.000000E+00 +185760,fr,1,3.550000E+00,7.389100E-01,4.701746E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +185761,fr,2,3.550000E+00,7.389100E-01,4.701746E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +185763,fr,1,3.550000E+00,7.389100E-01,4.701746E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799810E+01,0.000000E+00 +185772,fr,2,3.650000E+00,7.389100E-01,4.701746E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +185773,fr,1,3.650000E+00,7.389100E-01,4.701746E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +185778,fr,2,3.650000E+00,7.389100E-01,4.701746E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,-9.000000E+01 +185790,fr,1,3.750000E+00,7.389100E-01,4.701746E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,-9.000000E+01 +185800,fr,1,3.850000E+00,7.389100E-01,4.701746E+01,1.500000E+01,Active Shallow Crust,2.400109E+02,5.799779E+01,0.000000E+00 +185808,fr,1,3.950000E+00,7.389100E-01,4.701746E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +185809,fr,1,3.950000E+00,7.389100E-01,4.701746E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +185814,fr,1,3.950000E+00,7.389100E-01,4.701746E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,-9.000000E+01 +185832,fr,1,4.150000E+00,7.389100E-01,4.701746E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +185853,fr,1,4.250000E+00,7.389100E-01,4.701746E+01,5.000000E+00,Active Shallow Crust,1.288942E+02,8.998090E+01,0.000000E+00 +185977,fr,1,5.350000E+00,7.389100E-01,4.701746E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +186240,fr,1,3.550000E+00,-3.734160E+00,4.400551E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998912E+01,0.000000E+00 +186276,fr,1,3.850000E+00,-3.734160E+00,4.400551E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +186307,fr,1,4.050000E+00,-3.734160E+00,4.400551E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +186337,fr,1,4.350000E+00,-3.734160E+00,4.400551E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +186745,fr,1,3.750000E+00,6.505000E-01,5.187585E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +186760,fr,1,3.850000E+00,6.505000E-01,5.187585E+01,1.500000E+01,Active Shallow Crust,2.400116E+02,5.799800E+01,0.000000E+00 +186768,fr,1,3.950000E+00,6.505000E-01,5.187585E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +187224,fr,1,3.750000E+00,1.095850E+00,4.836816E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +187227,fr,1,3.750000E+00,1.095850E+00,4.836816E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.801748E+01,0.000000E+00 +187261,fr,1,4.050000E+00,1.095850E+00,4.836816E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +187276,fr,1,4.150000E+00,1.095850E+00,4.836816E+01,1.500000E+01,Active Shallow Crust,2.400087E+02,5.799755E+01,0.000000E+00 +187297,fr,1,4.350000E+00,1.095850E+00,4.836816E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +187704,fr,1,3.750000E+00,6.256990E+00,4.279184E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998824E+01,0.000000E+00 +187740,fr,1,4.050000E+00,6.256990E+00,4.279184E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999168E+01,0.000000E+00 +188160,fr,1,3.550000E+00,-2.563200E+00,4.729797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +188172,fr,3,3.650000E+00,-2.563200E+00,4.729797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +188196,fr,1,3.850000E+00,-2.563200E+00,4.729797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +188208,fr,1,3.950000E+00,-2.563200E+00,4.729797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +188209,fr,1,3.950000E+00,-2.563200E+00,4.729797E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +188257,fr,2,4.350000E+00,-2.563200E+00,4.729797E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +188258,fr,1,4.350000E+00,-2.563200E+00,4.729797E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +188310,fr,1,4.750000E+00,-2.563200E+00,4.729797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,-9.000000E+01 +188312,fr,1,4.750000E+00,-2.563200E+00,4.729797E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998957E+01,-9.000000E+01 +188640,fr,2,3.550000E+00,1.764970E+00,4.281482E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +188641,fr,2,3.550000E+00,1.764970E+00,4.281482E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +188643,fr,1,3.550000E+00,1.764970E+00,4.281482E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799791E+01,0.000000E+00 +188652,fr,4,3.650000E+00,1.764970E+00,4.281482E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +188653,fr,2,3.650000E+00,1.764970E+00,4.281482E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +188655,fr,1,3.650000E+00,1.764970E+00,4.281482E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801275E+01,0.000000E+00 +188658,fr,1,3.650000E+00,1.764970E+00,4.281482E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +188664,fr,1,3.750000E+00,1.764970E+00,4.281482E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +188676,fr,2,3.850000E+00,1.764970E+00,4.281482E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +188680,fr,1,3.850000E+00,1.764970E+00,4.281482E+01,1.500000E+01,Active Shallow Crust,2.400102E+02,5.799781E+01,0.000000E+00 +188688,fr,1,3.950000E+00,1.764970E+00,4.281482E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +188691,fr,1,3.950000E+00,1.764970E+00,4.281482E+01,5.000000E+00,Active Shallow Crust,2.400193E+02,5.800486E+01,0.000000E+00 +188701,fr,1,4.050000E+00,1.764970E+00,4.281482E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +188712,fr,1,4.150000E+00,1.764970E+00,4.281482E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +188724,fr,1,4.250000E+00,1.764970E+00,4.281482E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +188736,fr,1,4.350000E+00,1.764970E+00,4.281482E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +188772,fr,1,4.650000E+00,1.764970E+00,4.281482E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +189158,fr,1,3.850000E+00,-4.168800E-01,4.973655E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +189204,fr,1,4.250000E+00,-4.168800E-01,4.973655E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +189216,fr,1,4.350000E+00,-4.168800E-01,4.973655E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +189229,fr,1,4.450000E+00,-4.168800E-01,4.973655E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +189601,fr,2,3.550000E+00,1.862590E+00,4.827532E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +189660,fr,1,4.050000E+00,1.862590E+00,4.827532E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +190080,fr,1,3.550000E+00,1.518900E-01,4.630568E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +190081,fr,1,3.550000E+00,1.518900E-01,4.630568E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +190082,fr,1,3.550000E+00,1.518900E-01,4.630568E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +190089,fr,1,3.550000E+00,1.518900E-01,4.630568E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999380E+01,0.000000E+00 +190090,fr,2,3.550000E+00,1.518900E-01,4.630568E+01,1.500000E+01,Active Shallow Crust,1.288962E+02,8.999380E+01,0.000000E+00 +190104,fr,2,3.750000E+00,1.518900E-01,4.630568E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +190107,fr,1,3.750000E+00,1.518900E-01,4.630568E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801759E+01,0.000000E+00 +190108,fr,1,3.750000E+00,1.518900E-01,4.630568E+01,1.500000E+01,Active Shallow Crust,2.400083E+02,5.801759E+01,0.000000E+00 +190116,fr,1,3.850000E+00,1.518900E-01,4.630568E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +190119,fr,1,3.850000E+00,1.518900E-01,4.630568E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799778E+01,0.000000E+00 +190152,fr,1,4.150000E+00,1.518900E-01,4.630568E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +190174,fr,1,4.250000E+00,1.518900E-01,4.630568E+01,1.500000E+01,Active Shallow Crust,1.288943E+02,8.998093E+01,0.000000E+00 +190188,fr,1,4.450000E+00,1.518900E-01,4.630568E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +190212,fr,1,4.650000E+00,1.518900E-01,4.630568E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +190560,fr,2,3.550000E+00,-3.109750E+00,4.282716E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +190561,fr,1,3.550000E+00,-3.109750E+00,4.282716E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +190572,fr,2,3.650000E+00,-3.109750E+00,4.282716E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +190578,fr,1,3.650000E+00,-3.109750E+00,4.282716E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +190596,fr,1,3.850000E+00,-3.109750E+00,4.282716E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +190618,fr,1,3.950000E+00,-3.109750E+00,4.282716E+01,1.500000E+01,Active Shallow Crust,1.289006E+02,8.999417E+01,0.000000E+00 +190632,fr,1,4.150000E+00,-3.109750E+00,4.282716E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999073E+01,0.000000E+00 +190658,fr,1,4.350000E+00,-3.109750E+00,4.282716E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +190699,fr,1,4.650000E+00,-3.109750E+00,4.282716E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999051E+01,-9.000000E+01 +190742,fr,1,5.050000E+00,-3.109750E+00,4.282716E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +191052,fr,1,3.650000E+00,4.000670E+00,4.848602E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +191316,fr,1,5.850000E+00,4.000670E+00,4.848602E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +191520,fr,2,3.550000E+00,4.974450E+00,4.422617E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999277E+01,0.000000E+00 +191522,fr,1,3.550000E+00,4.974450E+00,4.422617E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999277E+01,0.000000E+00 +191525,fr,1,3.550000E+00,4.974450E+00,4.422617E+01,2.750000E+01,Active Shallow Crust,2.400119E+02,5.799768E+01,0.000000E+00 +191526,fr,1,3.550000E+00,4.974450E+00,4.422617E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999269E+01,-9.000000E+01 +191529,fr,1,3.550000E+00,4.974450E+00,4.422617E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.999277E+01,0.000000E+00 +191532,fr,4,3.650000E+00,4.974450E+00,4.422617E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998712E+01,0.000000E+00 +191533,fr,1,3.650000E+00,4.974450E+00,4.422617E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998712E+01,0.000000E+00 +191535,fr,1,3.650000E+00,4.974450E+00,4.422617E+01,5.000000E+00,Active Shallow Crust,2.399996E+02,5.801346E+01,0.000000E+00 +191541,fr,1,3.650000E+00,4.974450E+00,4.422617E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996348E+01,0.000000E+00 +191545,fr,1,3.750000E+00,4.974450E+00,4.422617E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998852E+01,0.000000E+00 +191546,fr,2,3.750000E+00,4.974450E+00,4.422617E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998852E+01,0.000000E+00 +191556,fr,2,3.850000E+00,4.974450E+00,4.422617E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +191557,fr,1,3.850000E+00,4.974450E+00,4.422617E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +191560,fr,1,3.850000E+00,4.974450E+00,4.422617E+01,1.500000E+01,Active Shallow Crust,2.400109E+02,5.799781E+01,0.000000E+00 +191571,fr,1,3.950000E+00,4.974450E+00,4.422617E+01,5.000000E+00,Active Shallow Crust,2.400197E+02,5.800413E+01,0.000000E+00 +191575,fr,1,3.950000E+00,4.974450E+00,4.422617E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999078E+01,-9.000000E+01 +191580,fr,2,4.050000E+00,4.974450E+00,4.422617E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999187E+01,0.000000E+00 +191584,fr,1,4.050000E+00,4.974450E+00,4.422617E+01,1.500000E+01,Active Shallow Crust,2.400060E+02,5.800545E+01,0.000000E+00 +191604,fr,1,4.250000E+00,4.974450E+00,4.422617E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +191605,fr,1,4.250000E+00,4.974450E+00,4.422617E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +191607,fr,1,4.250000E+00,4.974450E+00,4.422617E+01,5.000000E+00,Active Shallow Crust,2.400070E+02,5.799404E+01,0.000000E+00 +191655,fr,1,4.650000E+00,4.974450E+00,4.422617E+01,5.000000E+00,Active Shallow Crust,2.400099E+02,5.799398E+01,0.000000E+00 +191688,fr,1,4.950000E+00,4.974450E+00,4.422617E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +191689,fr,1,4.950000E+00,4.974450E+00,4.422617E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +191704,fr,1,5.050000E+00,4.974450E+00,4.422617E+01,1.500000E+01,Active Shallow Crust,2.400210E+02,5.799744E+01,0.000000E+00 +191748,fr,1,5.450000E+00,4.974450E+00,4.422617E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +192018,fr,1,3.650000E+00,2.412210E+00,4.816906E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,-9.000000E+01 +192024,fr,2,3.750000E+00,2.412210E+00,4.816906E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +192064,fr,1,4.050000E+00,2.412210E+00,4.816906E+01,1.500000E+01,Active Shallow Crust,2.400058E+02,5.800615E+01,0.000000E+00 +192102,fr,1,4.350000E+00,2.412210E+00,4.816906E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,-9.000000E+01 +192120,fr,1,4.550000E+00,2.412210E+00,4.816906E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +192156,fr,1,4.850000E+00,2.412210E+00,4.816906E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +192376,fr,1,6.650000E+00,2.412210E+00,4.816906E+01,1.500000E+01,Active Shallow Crust,2.401212E+02,5.799976E+01,0.000000E+00 +192493,fr,1,3.650000E+00,-6.603000E-02,5.106720E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +192516,fr,1,3.850000E+00,-6.603000E-02,5.106720E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +192561,fr,1,4.150000E+00,-6.603000E-02,5.106720E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.999372E+01,0.000000E+00 +192600,fr,1,4.550000E+00,-6.603000E-02,5.106720E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +193440,fr,1,3.550000E+00,6.920800E-01,4.874275E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +193441,fr,1,3.550000E+00,6.920800E-01,4.874275E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +193452,fr,1,3.650000E+00,6.920800E-01,4.874275E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +193453,fr,1,3.650000E+00,6.920800E-01,4.874275E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +193464,fr,1,3.750000E+00,6.920800E-01,4.874275E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +193536,fr,1,4.350000E+00,6.920800E-01,4.874275E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +193920,fr,2,3.550000E+00,-2.923370E+00,4.780841E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +193921,fr,3,3.550000E+00,-2.923370E+00,4.780841E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +193923,fr,1,3.550000E+00,-2.923370E+00,4.780841E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799841E+01,0.000000E+00 +193930,fr,1,3.550000E+00,-2.923370E+00,4.780841E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.999323E+01,0.000000E+00 +193932,fr,2,3.650000E+00,-2.923370E+00,4.780841E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +193934,fr,1,3.650000E+00,-2.923370E+00,4.780841E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +193942,fr,1,3.650000E+00,-2.923370E+00,4.780841E+01,1.500000E+01,Active Shallow Crust,1.289003E+02,8.996355E+01,0.000000E+00 +193944,fr,3,3.750000E+00,-2.923370E+00,4.780841E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +193945,fr,2,3.750000E+00,-2.923370E+00,4.780841E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +193953,fr,1,3.750000E+00,-2.923370E+00,4.780841E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.996751E+01,0.000000E+00 +193956,fr,3,3.850000E+00,-2.923370E+00,4.780841E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +193958,fr,1,3.850000E+00,-2.923370E+00,4.780841E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +193968,fr,2,3.950000E+00,-2.923370E+00,4.780841E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +193971,fr,2,3.950000E+00,-2.923370E+00,4.780841E+01,5.000000E+00,Active Shallow Crust,2.400200E+02,5.800510E+01,0.000000E+00 +193980,fr,2,4.050000E+00,-2.923370E+00,4.780841E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +193992,fr,2,4.150000E+00,-2.923370E+00,4.780841E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +194004,fr,2,4.250000E+00,-2.923370E+00,4.780841E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998941E+01,0.000000E+00 +194005,fr,1,4.250000E+00,-2.923370E+00,4.780841E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998941E+01,0.000000E+00 +194017,fr,1,4.350000E+00,-2.923370E+00,4.780841E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +194052,fr,1,4.650000E+00,-2.923370E+00,4.780841E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +194077,fr,1,4.850000E+00,-2.923370E+00,4.780841E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +194089,fr,1,4.950000E+00,-2.923370E+00,4.780841E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +194400,fr,2,3.550000E+00,7.331400E+00,4.979979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998698E+01,0.000000E+00 +194408,fr,1,3.550000E+00,7.331400E+00,4.979979E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998683E+01,-9.000000E+01 +194412,fr,1,3.650000E+00,7.331400E+00,4.979979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998840E+01,0.000000E+00 +194424,fr,1,3.750000E+00,7.331400E+00,4.979979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +194430,fr,1,3.750000E+00,7.331400E+00,4.979979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,-9.000000E+01 +194433,fr,1,3.750000E+00,7.331400E+00,4.979979E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.996703E+01,0.000000E+00 +194436,fr,1,3.850000E+00,7.331400E+00,4.979979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +194438,fr,1,3.850000E+00,7.331400E+00,4.979979E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +194448,fr,1,3.950000E+00,7.331400E+00,4.979979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999178E+01,0.000000E+00 +194449,fr,1,3.950000E+00,7.331400E+00,4.979979E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999178E+01,0.000000E+00 +194454,fr,1,3.950000E+00,7.331400E+00,4.979979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999169E+01,-9.000000E+01 +194455,fr,1,3.950000E+00,7.331400E+00,4.979979E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999169E+01,-9.000000E+01 +194463,fr,1,4.050000E+00,7.331400E+00,4.979979E+01,5.000000E+00,Active Shallow Crust,2.400066E+02,5.800587E+01,0.000000E+00 +194464,fr,1,4.050000E+00,7.331400E+00,4.979979E+01,1.500000E+01,Active Shallow Crust,2.400066E+02,5.800584E+01,0.000000E+00 +194466,fr,1,4.050000E+00,7.331400E+00,4.979979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998889E+01,-9.000000E+01 +194880,fr,1,3.550000E+00,5.388280E+00,4.295016E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999262E+01,0.000000E+00 +194888,fr,1,3.550000E+00,5.388280E+00,4.295016E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999253E+01,-9.000000E+01 +194925,fr,1,3.850000E+00,5.388280E+00,4.295016E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999477E+01,0.000000E+00 +194940,fr,1,4.050000E+00,5.388280E+00,4.295016E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999170E+01,0.000000E+00 +195025,fr,1,4.750000E+00,5.388280E+00,4.295016E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999073E+01,0.000000E+00 +195360,fr,1,3.550000E+00,7.802400E+00,4.654136E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999306E+01,0.000000E+00 +195361,fr,1,3.550000E+00,7.802400E+00,4.654136E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999306E+01,0.000000E+00 +195372,fr,1,3.650000E+00,7.802400E+00,4.654136E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998763E+01,0.000000E+00 +195373,fr,1,3.650000E+00,7.802400E+00,4.654136E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998763E+01,0.000000E+00 +195378,fr,2,3.650000E+00,7.802400E+00,4.654136E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998750E+01,-9.000000E+01 +195379,fr,1,3.650000E+00,7.802400E+00,4.654136E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998750E+01,-9.000000E+01 +195388,fr,1,3.750000E+00,7.802400E+00,4.654136E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.801736E+01,0.000000E+00 +195396,fr,1,3.850000E+00,7.802400E+00,4.654136E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +195397,fr,1,3.850000E+00,7.802400E+00,4.654136E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +195405,fr,1,3.850000E+00,7.802400E+00,4.654136E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.999264E+01,0.000000E+00 +195409,fr,1,3.950000E+00,7.802400E+00,4.654136E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999125E+01,0.000000E+00 +195414,fr,1,3.950000E+00,7.802400E+00,4.654136E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999114E+01,-9.000000E+01 +195415,fr,1,3.950000E+00,7.802400E+00,4.654136E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999114E+01,-9.000000E+01 +195444,fr,1,4.250000E+00,7.802400E+00,4.654136E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999071E+01,0.000000E+00 +195456,fr,1,4.350000E+00,7.802400E+00,4.654136E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +195469,fr,1,4.450000E+00,7.802400E+00,4.654136E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +195471,fr,1,4.450000E+00,7.802400E+00,4.654136E+01,5.000000E+00,Active Shallow Crust,2.400058E+02,5.799427E+01,0.000000E+00 +195480,fr,1,4.550000E+00,7.802400E+00,4.654136E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998903E+01,0.000000E+00 +195492,fr,1,4.650000E+00,7.802400E+00,4.654136E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +195495,fr,1,4.650000E+00,7.802400E+00,4.654136E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799416E+01,0.000000E+00 +195504,fr,1,4.750000E+00,7.802400E+00,4.654136E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +195517,fr,2,4.850000E+00,7.802400E+00,4.654136E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +195861,fr,1,3.650000E+00,3.822680E+00,5.169889E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.996339E+01,0.000000E+00 +195903,fr,1,4.050000E+00,3.822680E+00,5.169889E+01,5.000000E+00,Active Shallow Crust,2.400067E+02,5.800589E+01,0.000000E+00 +195934,fr,1,4.250000E+00,3.822680E+00,5.169889E+01,1.500000E+01,Active Shallow Crust,1.288931E+02,8.998092E+01,0.000000E+00 +196344,fr,1,3.750000E+00,9.670000E-03,4.453503E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +196357,fr,1,3.850000E+00,9.670000E-03,4.453503E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +196359,fr,1,3.850000E+00,9.670000E-03,4.453503E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.799776E+01,0.000000E+00 +196417,fr,1,4.350000E+00,9.670000E-03,4.453503E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +196477,fr,1,4.850000E+00,9.670000E-03,4.453503E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +197280,fr,1,3.550000E+00,5.179370E+00,4.157646E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999245E+01,0.000000E+00 +197281,fr,1,3.550000E+00,5.179370E+00,4.157646E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999245E+01,0.000000E+00 +197365,fr,1,4.250000E+00,5.179370E+00,4.157646E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +197436,fr,1,4.850000E+00,5.179370E+00,4.157646E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +197773,fr,1,3.650000E+00,-8.201300E-01,5.089744E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +197785,fr,1,3.750000E+00,-8.201300E-01,5.089744E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +197832,fr,1,4.150000E+00,-8.201300E-01,5.089744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +197871,fr,1,4.450000E+00,-8.201300E-01,5.089744E+01,5.000000E+00,Active Shallow Crust,2.400066E+02,5.799490E+01,0.000000E+00 +198244,fr,1,3.550000E+00,-2.341450E+00,4.853474E+01,1.500000E+01,Active Shallow Crust,2.400118E+02,5.799834E+01,0.000000E+00 +198249,fr,2,3.550000E+00,-2.341450E+00,4.853474E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999332E+01,0.000000E+00 +198252,fr,1,3.650000E+00,-2.341450E+00,4.853474E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +198253,fr,1,3.650000E+00,-2.341450E+00,4.853474E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +198262,fr,1,3.650000E+00,-2.341450E+00,4.853474E+01,1.500000E+01,Active Shallow Crust,1.288998E+02,8.996356E+01,0.000000E+00 +198265,fr,1,3.750000E+00,-2.341450E+00,4.853474E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +198268,fr,1,3.750000E+00,-2.341450E+00,4.853474E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.801805E+01,0.000000E+00 +198271,fr,1,3.750000E+00,-2.341450E+00,4.853474E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,-9.000000E+01 +198277,fr,1,3.850000E+00,-2.341450E+00,4.853474E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +198284,fr,1,3.850000E+00,-2.341450E+00,4.853474E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,-9.000000E+01 +198288,fr,1,3.950000E+00,-2.341450E+00,4.853474E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +198290,fr,1,3.950000E+00,-2.341450E+00,4.853474E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +198291,fr,1,3.950000E+00,-2.341450E+00,4.853474E+01,5.000000E+00,Active Shallow Crust,2.400203E+02,5.800498E+01,0.000000E+00 +198301,fr,1,4.050000E+00,-2.341450E+00,4.853474E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +198305,fr,1,4.050000E+00,-2.341450E+00,4.853474E+01,2.750000E+01,Active Shallow Crust,2.400064E+02,5.800601E+01,0.000000E+00 +198324,fr,1,4.250000E+00,-2.341450E+00,4.853474E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +198330,fr,1,4.250000E+00,-2.341450E+00,4.853474E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,-9.000000E+01 +198346,fr,1,4.350000E+00,-2.341450E+00,4.853474E+01,1.500000E+01,Active Shallow Crust,1.288975E+02,8.998262E+01,0.000000E+00 +198348,fr,1,4.450000E+00,-2.341450E+00,4.853474E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +198364,fr,1,4.550000E+00,-2.341450E+00,4.853474E+01,1.500000E+01,Active Shallow Crust,2.400100E+02,5.799751E+01,0.000000E+00 +198372,fr,2,4.650000E+00,-2.341450E+00,4.853474E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +198384,fr,1,4.750000E+00,-2.341450E+00,4.853474E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +198410,fr,1,4.950000E+00,-2.341450E+00,4.853474E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +198733,fr,1,3.650000E+00,1.942620E+00,4.841076E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +198810,fr,1,4.250000E+00,1.942620E+00,4.841076E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,-9.000000E+01 +199689,fr,1,3.550000E+00,-1.404900E-01,4.233478E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999371E+01,0.000000E+00 +199704,fr,1,3.750000E+00,-1.404900E-01,4.233478E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +199719,fr,1,3.850000E+00,-1.404900E-01,4.233478E+01,5.000000E+00,Active Shallow Crust,2.400103E+02,5.799772E+01,0.000000E+00 +199780,fr,1,4.350000E+00,-1.404900E-01,4.233478E+01,1.500000E+01,Active Shallow Crust,2.400075E+02,5.799578E+01,0.000000E+00 +199788,fr,1,4.450000E+00,-1.404900E-01,4.233478E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +199945,fr,1,5.750000E+00,-1.404900E-01,4.233478E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +200160,fr,3,3.550000E+00,-3.515180E+00,4.870317E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +200166,fr,1,3.550000E+00,-3.515180E+00,4.870317E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,-9.000000E+01 +200206,fr,1,3.850000E+00,-3.515180E+00,4.870317E+01,1.500000E+01,Active Shallow Crust,1.288956E+02,8.999411E+01,0.000000E+00 +200218,fr,1,3.950000E+00,-3.515180E+00,4.870317E+01,1.500000E+01,Active Shallow Crust,1.289000E+02,8.999371E+01,0.000000E+00 +200220,fr,1,4.050000E+00,-3.515180E+00,4.870317E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +200247,fr,2,4.250000E+00,-3.515180E+00,4.870317E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799418E+01,0.000000E+00 +200700,fr,1,4.050000E+00,4.401870E+00,5.283905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +201622,fr,1,3.650000E+00,7.002200E-01,4.364383E+01,1.500000E+01,Active Shallow Crust,1.289008E+02,8.996347E+01,0.000000E+00 +201633,fr,1,3.750000E+00,7.002200E-01,4.364383E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.996738E+01,0.000000E+00 +201696,fr,1,4.350000E+00,7.002200E-01,4.364383E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +202080,fr,3,3.550000E+00,7.255290E+00,5.028847E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998711E+01,0.000000E+00 +202081,fr,1,3.550000E+00,7.255290E+00,5.028847E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998711E+01,0.000000E+00 +202085,fr,1,3.550000E+00,7.255290E+00,5.028847E+01,2.750000E+01,Active Shallow Crust,2.400117E+02,5.799882E+01,0.000000E+00 +202086,fr,1,3.550000E+00,7.255290E+00,5.028847E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998696E+01,-9.000000E+01 +202089,fr,1,3.550000E+00,7.255290E+00,5.028847E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999356E+01,0.000000E+00 +202092,fr,4,3.650000E+00,7.255290E+00,5.028847E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998852E+01,0.000000E+00 +202093,fr,2,3.650000E+00,7.255290E+00,5.028847E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998852E+01,0.000000E+00 +202095,fr,1,3.650000E+00,7.255290E+00,5.028847E+01,5.000000E+00,Active Shallow Crust,2.400015E+02,5.801234E+01,0.000000E+00 +202096,fr,1,3.650000E+00,7.255290E+00,5.028847E+01,1.500000E+01,Active Shallow Crust,2.400015E+02,5.801234E+01,0.000000E+00 +202101,fr,1,3.650000E+00,7.255290E+00,5.028847E+01,5.000000E+00,Active Shallow Crust,1.288991E+02,8.996360E+01,0.000000E+00 +202113,fr,1,3.750000E+00,7.255290E+00,5.028847E+01,5.000000E+00,Active Shallow Crust,1.288971E+02,8.996706E+01,0.000000E+00 +202128,fr,3,3.950000E+00,7.255290E+00,5.028847E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999187E+01,0.000000E+00 +202134,fr,1,3.950000E+00,7.255290E+00,5.028847E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999178E+01,-9.000000E+01 +202137,fr,1,3.950000E+00,7.255290E+00,5.028847E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.999187E+01,0.000000E+00 +202141,fr,1,4.050000E+00,7.255290E+00,5.028847E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998913E+01,0.000000E+00 +202153,fr,1,4.150000E+00,7.255290E+00,5.028847E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +202164,fr,1,4.250000E+00,7.255290E+00,5.028847E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999136E+01,0.000000E+00 +202165,fr,1,4.250000E+00,7.255290E+00,5.028847E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999136E+01,0.000000E+00 +202176,fr,1,4.350000E+00,7.255290E+00,5.028847E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +202177,fr,2,4.350000E+00,7.255290E+00,5.028847E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +202178,fr,1,4.350000E+00,7.255290E+00,5.028847E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +202207,fr,1,4.550000E+00,7.255290E+00,5.028847E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +202209,fr,1,4.550000E+00,7.255290E+00,5.028847E+01,5.000000E+00,Active Shallow Crust,1.288932E+02,8.998586E+01,0.000000E+00 +202224,fr,1,4.750000E+00,7.255290E+00,5.028847E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +202236,fr,1,4.850000E+00,7.255290E+00,5.028847E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +202248,fr,1,4.950000E+00,7.255290E+00,5.028847E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +202276,fr,1,5.150000E+00,7.255290E+00,5.028847E+01,1.500000E+01,Active Shallow Crust,2.400219E+02,5.800038E+01,0.000000E+00 +202297,fr,1,5.350000E+00,7.255290E+00,5.028847E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +202560,fr,4,3.550000E+00,2.803300E+00,4.164291E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +202562,fr,1,3.550000E+00,2.803300E+00,4.164291E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +202566,fr,1,3.550000E+00,2.803300E+00,4.164291E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998856E+01,-9.000000E+01 +202569,fr,3,3.550000E+00,2.803300E+00,4.164291E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999435E+01,0.000000E+00 +202572,fr,1,3.650000E+00,2.803300E+00,4.164291E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +202573,fr,1,3.650000E+00,2.803300E+00,4.164291E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +202574,fr,1,3.650000E+00,2.803300E+00,4.164291E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +202575,fr,1,3.650000E+00,2.803300E+00,4.164291E+01,5.000000E+00,Active Shallow Crust,2.400005E+02,5.801243E+01,0.000000E+00 +202584,fr,2,3.750000E+00,2.803300E+00,4.164291E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999102E+01,0.000000E+00 +202587,fr,1,3.750000E+00,2.803300E+00,4.164291E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.801788E+01,0.000000E+00 +202590,fr,1,3.750000E+00,2.803300E+00,4.164291E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999092E+01,-9.000000E+01 +202597,fr,1,3.850000E+00,2.803300E+00,4.164291E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +202598,fr,1,3.850000E+00,2.803300E+00,4.164291E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +202599,fr,1,3.850000E+00,2.803300E+00,4.164291E+01,5.000000E+00,Active Shallow Crust,2.400102E+02,5.799792E+01,0.000000E+00 +202602,fr,1,3.850000E+00,2.803300E+00,4.164291E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,-9.000000E+01 +202605,fr,1,3.850000E+00,2.803300E+00,4.164291E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999467E+01,0.000000E+00 +202608,fr,3,3.950000E+00,2.803300E+00,4.164291E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +202610,fr,1,3.950000E+00,2.803300E+00,4.164291E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +202612,fr,1,3.950000E+00,2.803300E+00,4.164291E+01,1.500000E+01,Active Shallow Crust,2.400193E+02,5.800494E+01,0.000000E+00 +202615,fr,1,3.950000E+00,2.803300E+00,4.164291E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999038E+01,-9.000000E+01 +202620,fr,2,4.050000E+00,2.803300E+00,4.164291E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +202621,fr,1,4.050000E+00,2.803300E+00,4.164291E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +202644,fr,1,4.250000E+00,2.803300E+00,4.164291E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +202653,fr,1,4.250000E+00,2.803300E+00,4.164291E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.998105E+01,0.000000E+00 +202680,fr,1,4.550000E+00,2.803300E+00,4.164291E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +202704,fr,1,4.750000E+00,2.803300E+00,4.164291E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +202725,fr,1,4.850000E+00,2.803300E+00,4.164291E+01,5.000000E+00,Active Shallow Crust,1.288942E+02,8.998898E+01,0.000000E+00 +202739,fr,1,4.950000E+00,2.803300E+00,4.164291E+01,2.750000E+01,Active Shallow Crust,1.288914E+02,8.998995E+01,0.000000E+00 +203064,fr,1,3.750000E+00,2.394200E-01,5.121156E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +203073,fr,1,3.750000E+00,2.394200E-01,5.121156E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.996735E+01,0.000000E+00 +203140,fr,1,4.350000E+00,2.394200E-01,5.121156E+01,1.500000E+01,Active Shallow Crust,2.400096E+02,5.799617E+01,0.000000E+00 +203197,fr,1,4.850000E+00,2.394200E-01,5.121156E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +203520,fr,7,3.550000E+00,8.400300E+00,4.712395E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998627E+01,0.000000E+00 +203521,fr,1,3.550000E+00,8.400300E+00,4.712395E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998627E+01,0.000000E+00 +203522,fr,1,3.550000E+00,8.400300E+00,4.712395E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998627E+01,0.000000E+00 +203523,fr,1,3.550000E+00,8.400300E+00,4.712395E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799986E+01,0.000000E+00 +203526,fr,2,3.550000E+00,8.400300E+00,4.712395E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998612E+01,-9.000000E+01 +203527,fr,1,3.550000E+00,8.400300E+00,4.712395E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998612E+01,-9.000000E+01 +203529,fr,1,3.550000E+00,8.400300E+00,4.712395E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.999314E+01,0.000000E+00 +203532,fr,4,3.650000E+00,8.400300E+00,4.712395E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998777E+01,0.000000E+00 +203533,fr,2,3.650000E+00,8.400300E+00,4.712395E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998777E+01,0.000000E+00 +203534,fr,1,3.650000E+00,8.400300E+00,4.712395E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998777E+01,0.000000E+00 +203538,fr,1,3.650000E+00,8.400300E+00,4.712395E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998763E+01,-9.000000E+01 +203544,fr,2,3.750000E+00,8.400300E+00,4.712395E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +203546,fr,2,3.750000E+00,8.400300E+00,4.712395E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +203547,fr,1,3.750000E+00,8.400300E+00,4.712395E+01,5.000000E+00,Active Shallow Crust,2.400066E+02,5.801859E+01,0.000000E+00 +203556,fr,4,3.850000E+00,8.400300E+00,4.712395E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +203557,fr,2,3.850000E+00,8.400300E+00,4.712395E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +203558,fr,1,3.850000E+00,8.400300E+00,4.712395E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +203559,fr,2,3.850000E+00,8.400300E+00,4.712395E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799635E+01,0.000000E+00 +203565,fr,1,3.850000E+00,8.400300E+00,4.712395E+01,5.000000E+00,Active Shallow Crust,1.288934E+02,8.999514E+01,0.000000E+00 +203568,fr,1,3.950000E+00,8.400300E+00,4.712395E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999134E+01,0.000000E+00 +203569,fr,1,3.950000E+00,8.400300E+00,4.712395E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999134E+01,0.000000E+00 +203570,fr,1,3.950000E+00,8.400300E+00,4.712395E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999134E+01,0.000000E+00 +203571,fr,1,3.950000E+00,8.400300E+00,4.712395E+01,5.000000E+00,Active Shallow Crust,2.400198E+02,5.800425E+01,0.000000E+00 +203574,fr,2,3.950000E+00,8.400300E+00,4.712395E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999124E+01,-9.000000E+01 +203580,fr,2,4.050000E+00,8.400300E+00,4.712395E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999229E+01,0.000000E+00 +203594,fr,1,4.150000E+00,8.400300E+00,4.712395E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999312E+01,0.000000E+00 +203604,fr,2,4.250000E+00,8.400300E+00,4.712395E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998774E+01,0.000000E+00 +203616,fr,1,4.350000E+00,8.400300E+00,4.712395E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +203626,fr,1,4.350000E+00,8.400300E+00,4.712395E+01,1.500000E+01,Active Shallow Crust,1.288979E+02,8.998304E+01,0.000000E+00 +203641,fr,1,4.550000E+00,8.400300E+00,4.712395E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999132E+01,0.000000E+00 +203642,fr,1,4.550000E+00,8.400300E+00,4.712395E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999132E+01,0.000000E+00 +203688,fr,1,4.950000E+00,8.400300E+00,4.712395E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +203694,fr,1,4.950000E+00,8.400300E+00,4.712395E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998892E+01,-9.000000E+01 +203724,fr,1,5.250000E+00,8.400300E+00,4.712395E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +203784,fr,1,5.750000E+00,8.400300E+00,4.712395E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +204001,fr,1,3.550000E+00,8.350500E-01,4.243111E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +204003,fr,1,3.550000E+00,8.350500E-01,4.243111E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799815E+01,0.000000E+00 +204006,fr,1,3.550000E+00,8.350500E-01,4.243111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +204012,fr,1,3.650000E+00,8.350500E-01,4.243111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +204013,fr,1,3.650000E+00,8.350500E-01,4.243111E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +204018,fr,1,3.650000E+00,8.350500E-01,4.243111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +204024,fr,1,3.750000E+00,8.350500E-01,4.243111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +204027,fr,1,3.750000E+00,8.350500E-01,4.243111E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801748E+01,0.000000E+00 +204033,fr,1,3.750000E+00,8.350500E-01,4.243111E+01,5.000000E+00,Active Shallow Crust,1.288971E+02,8.996735E+01,0.000000E+00 +204034,fr,1,3.750000E+00,8.350500E-01,4.243111E+01,1.500000E+01,Active Shallow Crust,1.288971E+02,8.996735E+01,0.000000E+00 +204036,fr,1,3.850000E+00,8.350500E-01,4.243111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +204037,fr,1,3.850000E+00,8.350500E-01,4.243111E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +204054,fr,1,3.950000E+00,8.350500E-01,4.243111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +204061,fr,2,4.050000E+00,8.350500E-01,4.243111E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +204063,fr,1,4.050000E+00,8.350500E-01,4.243111E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.800568E+01,0.000000E+00 +204073,fr,1,4.150000E+00,8.350500E-01,4.243111E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +204084,fr,1,4.250000E+00,8.350500E-01,4.243111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +204094,fr,1,4.250000E+00,8.350500E-01,4.243111E+01,1.500000E+01,Active Shallow Crust,1.288951E+02,8.998087E+01,0.000000E+00 +204122,fr,1,4.550000E+00,8.350500E-01,4.243111E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +204124,fr,1,4.550000E+00,8.350500E-01,4.243111E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.799718E+01,0.000000E+00 +204960,fr,2,3.550000E+00,8.589150E+00,4.829825E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998658E+01,0.000000E+00 +204961,fr,1,3.550000E+00,8.589150E+00,4.829825E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998658E+01,0.000000E+00 +204966,fr,1,3.550000E+00,8.589150E+00,4.829825E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998643E+01,-9.000000E+01 +204973,fr,1,3.650000E+00,8.589150E+00,4.829825E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998804E+01,0.000000E+00 +204976,fr,1,3.650000E+00,8.589150E+00,4.829825E+01,1.500000E+01,Active Shallow Crust,2.399998E+02,5.801321E+01,0.000000E+00 +204984,fr,1,3.750000E+00,8.589150E+00,4.829825E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +204986,fr,1,3.750000E+00,8.589150E+00,4.829825E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +204990,fr,1,3.750000E+00,8.589150E+00,4.829825E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998922E+01,-9.000000E+01 +205011,fr,2,3.950000E+00,8.589150E+00,4.829825E+01,5.000000E+00,Active Shallow Crust,2.400196E+02,5.800592E+01,0.000000E+00 +205015,fr,1,3.950000E+00,8.589150E+00,4.829825E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999144E+01,-9.000000E+01 +205020,fr,1,4.050000E+00,8.589150E+00,4.829825E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999245E+01,0.000000E+00 +205045,fr,1,4.250000E+00,8.589150E+00,4.829825E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998801E+01,0.000000E+00 +205057,fr,1,4.350000E+00,8.589150E+00,4.829825E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +205094,fr,1,4.650000E+00,8.589150E+00,4.829825E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +205131,fr,1,4.950000E+00,8.589150E+00,4.829825E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.800488E+01,0.000000E+00 +205466,fr,1,3.750000E+00,2.220730E+00,4.750126E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +205478,fr,1,3.850000E+00,2.220730E+00,4.750126E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +205479,fr,1,3.850000E+00,2.220730E+00,4.750126E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799768E+01,0.000000E+00 +205920,fr,1,3.550000E+00,1.188330E+00,4.530519E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +205921,fr,1,3.550000E+00,1.188330E+00,4.530519E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +205932,fr,1,3.650000E+00,1.188330E+00,4.530519E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +205934,fr,1,3.650000E+00,1.188330E+00,4.530519E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +205957,fr,1,3.850000E+00,1.188330E+00,4.530519E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +205981,fr,1,4.050000E+00,1.188330E+00,4.530519E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +206010,fr,1,4.250000E+00,1.188330E+00,4.530519E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,-9.000000E+01 +206148,fr,1,5.450000E+00,1.188330E+00,4.530519E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +206400,fr,1,3.550000E+00,-1.150180E+00,4.687827E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +206401,fr,1,3.550000E+00,-1.150180E+00,4.687827E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +206412,fr,1,3.650000E+00,-1.150180E+00,4.687827E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +206424,fr,1,3.750000E+00,-1.150180E+00,4.687827E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +206448,fr,3,3.950000E+00,-1.150180E+00,4.687827E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +206449,fr,1,3.950000E+00,-1.150180E+00,4.687827E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +206466,fr,1,4.050000E+00,-1.150180E+00,4.687827E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,-9.000000E+01 +206470,fr,1,4.050000E+00,-1.150180E+00,4.687827E+01,1.500000E+01,Active Shallow Crust,1.288905E+02,8.999371E+01,0.000000E+00 +206472,fr,2,4.150000E+00,-1.150180E+00,4.687827E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +206476,fr,2,4.150000E+00,-1.150180E+00,4.687827E+01,1.500000E+01,Active Shallow Crust,2.400085E+02,5.799728E+01,0.000000E+00 +206485,fr,1,4.250000E+00,-1.150180E+00,4.687827E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +206497,fr,1,4.350000E+00,-1.150180E+00,4.687827E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +206499,fr,1,4.350000E+00,-1.150180E+00,4.687827E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799605E+01,0.000000E+00 +206508,fr,2,4.450000E+00,-1.150180E+00,4.687827E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +206522,fr,1,4.550000E+00,-1.150180E+00,4.687827E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +206544,fr,1,4.750000E+00,-1.150180E+00,4.687827E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +206883,fr,1,3.550000E+00,1.221210E+00,5.034305E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799846E+01,0.000000E+00 +206925,fr,1,3.850000E+00,1.221210E+00,5.034305E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.999374E+01,0.000000E+00 +206932,fr,1,3.950000E+00,1.221210E+00,5.034305E+01,1.500000E+01,Active Shallow Crust,2.400204E+02,5.800499E+01,0.000000E+00 +206940,fr,1,4.050000E+00,1.221210E+00,5.034305E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +206949,fr,1,4.050000E+00,1.221210E+00,5.034305E+01,5.000000E+00,Active Shallow Crust,1.288899E+02,8.999367E+01,0.000000E+00 +206991,fr,1,4.450000E+00,1.221210E+00,5.034305E+01,5.000000E+00,Active Shallow Crust,2.400064E+02,5.799488E+01,0.000000E+00 +207420,fr,1,4.050000E+00,3.109210E+00,4.047306E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +207841,fr,1,3.550000E+00,-1.317670E+00,4.888137E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +207844,fr,1,3.550000E+00,-1.317670E+00,4.888137E+01,1.500000E+01,Active Shallow Crust,2.400123E+02,5.799825E+01,0.000000E+00 +207848,fr,1,3.550000E+00,-1.317670E+00,4.888137E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +207849,fr,1,3.550000E+00,-1.317670E+00,4.888137E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999420E+01,0.000000E+00 +207852,fr,1,3.650000E+00,-1.317670E+00,4.888137E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +207854,fr,1,3.650000E+00,-1.317670E+00,4.888137E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +207856,fr,1,3.650000E+00,-1.317670E+00,4.888137E+01,1.500000E+01,Active Shallow Crust,2.400015E+02,5.801283E+01,0.000000E+00 +207859,fr,1,3.650000E+00,-1.317670E+00,4.888137E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998954E+01,-9.000000E+01 +207864,fr,2,3.750000E+00,-1.317670E+00,4.888137E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +207867,fr,2,3.750000E+00,-1.317670E+00,4.888137E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.801756E+01,0.000000E+00 +207869,fr,1,3.750000E+00,-1.317670E+00,4.888137E+01,2.750000E+01,Active Shallow Crust,2.400087E+02,5.801756E+01,0.000000E+00 +207876,fr,1,3.850000E+00,-1.317670E+00,4.888137E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +207885,fr,1,3.850000E+00,-1.317670E+00,4.888137E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.999355E+01,0.000000E+00 +207900,fr,2,4.050000E+00,-1.317670E+00,4.888137E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +207903,fr,1,4.050000E+00,-1.317670E+00,4.888137E+01,5.000000E+00,Active Shallow Crust,2.400065E+02,5.800595E+01,0.000000E+00 +207946,fr,1,4.350000E+00,-1.317670E+00,4.888137E+01,1.500000E+01,Active Shallow Crust,1.288973E+02,8.998277E+01,0.000000E+00 +208056,fr,1,5.350000E+00,-1.317670E+00,4.888137E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +208320,fr,1,3.550000E+00,6.420630E+00,4.754075E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999319E+01,0.000000E+00 +208324,fr,1,3.550000E+00,6.420630E+00,4.754075E+01,1.500000E+01,Active Shallow Crust,2.400126E+02,5.799850E+01,0.000000E+00 +208332,fr,1,3.650000E+00,6.420630E+00,4.754075E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998787E+01,0.000000E+00 +208344,fr,1,3.750000E+00,6.420630E+00,4.754075E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998919E+01,0.000000E+00 +208350,fr,1,3.750000E+00,6.420630E+00,4.754075E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998906E+01,-9.000000E+01 +208360,fr,1,3.850000E+00,6.420630E+00,4.754075E+01,1.500000E+01,Active Shallow Crust,2.400110E+02,5.799792E+01,0.000000E+00 +208385,fr,1,4.050000E+00,6.420630E+00,4.754075E+01,2.750000E+01,Active Shallow Crust,2.400062E+02,5.800600E+01,0.000000E+00 +208398,fr,1,4.150000E+00,6.420630E+00,4.754075E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +208404,fr,2,4.250000E+00,6.420630E+00,4.754075E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +208440,fr,1,4.550000E+00,6.420630E+00,4.754075E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +208489,fr,1,4.950000E+00,6.420630E+00,4.754075E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +208500,fr,1,5.050000E+00,6.420630E+00,4.754075E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +208561,fr,1,5.550000E+00,6.420630E+00,4.754075E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +208800,fr,2,3.550000E+00,7.232530E+00,4.344346E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999268E+01,0.000000E+00 +208803,fr,1,3.550000E+00,7.232530E+00,4.344346E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799815E+01,0.000000E+00 +208807,fr,1,3.550000E+00,7.232530E+00,4.344346E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999259E+01,-9.000000E+01 +208812,fr,2,3.650000E+00,7.232530E+00,4.344346E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998695E+01,0.000000E+00 +208824,fr,1,3.750000E+00,7.232530E+00,4.344346E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998837E+01,0.000000E+00 +208836,fr,1,3.850000E+00,7.232530E+00,4.344346E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +208896,fr,1,4.350000E+00,7.232530E+00,4.344346E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +208908,fr,1,4.450000E+00,7.232530E+00,4.344346E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +209350,fr,1,4.050000E+00,3.395090E+00,3.997119E+01,1.500000E+01,Active Shallow Crust,1.288915E+02,8.999348E+01,0.000000E+00 +209376,fr,1,4.350000E+00,3.395090E+00,3.997119E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +209766,fr,1,3.550000E+00,3.397100E-01,4.442763E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +209772,fr,2,3.650000E+00,3.397100E-01,4.442763E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +209790,fr,1,3.750000E+00,3.397100E-01,4.442763E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +209813,fr,1,3.950000E+00,3.397100E-01,4.442763E+01,2.750000E+01,Active Shallow Crust,2.400195E+02,5.800495E+01,0.000000E+00 +209822,fr,1,4.050000E+00,3.397100E-01,4.442763E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +210240,fr,2,3.550000E+00,4.892190E+00,4.341837E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999268E+01,0.000000E+00 +210252,fr,1,3.650000E+00,4.892190E+00,4.341837E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998695E+01,0.000000E+00 +210255,fr,1,3.650000E+00,4.892190E+00,4.341837E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801296E+01,0.000000E+00 +210261,fr,1,3.650000E+00,4.892190E+00,4.341837E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.996346E+01,0.000000E+00 +210265,fr,2,3.750000E+00,4.892190E+00,4.341837E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998837E+01,0.000000E+00 +210301,fr,1,4.050000E+00,4.892190E+00,4.341837E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999176E+01,0.000000E+00 +210312,fr,1,4.150000E+00,4.892190E+00,4.341837E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +210348,fr,2,4.450000E+00,4.892190E+00,4.341837E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +210378,fr,1,4.650000E+00,4.892190E+00,4.341837E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,-9.000000E+01 +210721,fr,1,3.550000E+00,6.699020E+00,5.009859E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998706E+01,0.000000E+00 +210733,fr,1,3.650000E+00,6.699020E+00,5.009859E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998847E+01,0.000000E+00 +210795,fr,1,4.150000E+00,6.699020E+00,5.009859E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799802E+01,0.000000E+00 +210807,fr,1,4.250000E+00,6.699020E+00,5.009859E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.799445E+01,0.000000E+00 +211200,fr,6,3.550000E+00,7.143600E+00,4.489534E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999286E+01,0.000000E+00 +211201,fr,1,3.550000E+00,7.143600E+00,4.489534E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999286E+01,0.000000E+00 +211203,fr,2,3.550000E+00,7.143600E+00,4.489534E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799719E+01,0.000000E+00 +211204,fr,1,3.550000E+00,7.143600E+00,4.489534E+01,1.500000E+01,Active Shallow Crust,2.400122E+02,5.799719E+01,0.000000E+00 +211206,fr,1,3.550000E+00,7.143600E+00,4.489534E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999277E+01,-9.000000E+01 +211209,fr,3,3.550000E+00,7.143600E+00,4.489534E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999643E+01,0.000000E+00 +211210,fr,1,3.550000E+00,7.143600E+00,4.489534E+01,1.500000E+01,Active Shallow Crust,1.288960E+02,8.999643E+01,0.000000E+00 +211212,fr,2,3.650000E+00,7.143600E+00,4.489534E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998727E+01,0.000000E+00 +211213,fr,4,3.650000E+00,7.143600E+00,4.489534E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998727E+01,0.000000E+00 +211214,fr,1,3.650000E+00,7.143600E+00,4.489534E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998727E+01,0.000000E+00 +211218,fr,1,3.650000E+00,7.143600E+00,4.489534E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998712E+01,-9.000000E+01 +211221,fr,1,3.650000E+00,7.143600E+00,4.489534E+01,5.000000E+00,Active Shallow Crust,1.289010E+02,8.996349E+01,0.000000E+00 +211224,fr,4,3.750000E+00,7.143600E+00,4.489534E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +211230,fr,1,3.750000E+00,7.143600E+00,4.489534E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998852E+01,-9.000000E+01 +211234,fr,1,3.750000E+00,7.143600E+00,4.489534E+01,1.500000E+01,Active Shallow Crust,1.288959E+02,8.996746E+01,0.000000E+00 +211235,fr,2,3.750000E+00,7.143600E+00,4.489534E+01,2.750000E+01,Active Shallow Crust,1.288959E+02,8.996746E+01,0.000000E+00 +211236,fr,4,3.850000E+00,7.143600E+00,4.489534E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +211237,fr,3,3.850000E+00,7.143600E+00,4.489534E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +211239,fr,1,3.850000E+00,7.143600E+00,4.489534E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799852E+01,0.000000E+00 +211245,fr,1,3.850000E+00,7.143600E+00,4.489534E+01,5.000000E+00,Active Shallow Crust,1.288948E+02,8.999494E+01,0.000000E+00 +211248,fr,1,3.950000E+00,7.143600E+00,4.489534E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999098E+01,0.000000E+00 +211249,fr,1,3.950000E+00,7.143600E+00,4.489534E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999098E+01,0.000000E+00 +211251,fr,1,3.950000E+00,7.143600E+00,4.489534E+01,5.000000E+00,Active Shallow Crust,2.400201E+02,5.800513E+01,0.000000E+00 +211257,fr,1,3.950000E+00,7.143600E+00,4.489534E+01,5.000000E+00,Active Shallow Crust,1.288994E+02,8.999549E+01,0.000000E+00 +211260,fr,3,4.050000E+00,7.143600E+00,4.489534E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999197E+01,0.000000E+00 +211261,fr,1,4.050000E+00,7.143600E+00,4.489534E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999197E+01,0.000000E+00 +211265,fr,1,4.050000E+00,7.143600E+00,4.489534E+01,2.750000E+01,Active Shallow Crust,2.400056E+02,5.800583E+01,0.000000E+00 +211269,fr,1,4.050000E+00,7.143600E+00,4.489534E+01,5.000000E+00,Active Shallow Crust,1.288902E+02,8.999397E+01,0.000000E+00 +211272,fr,3,4.150000E+00,7.143600E+00,4.489534E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +211273,fr,1,4.150000E+00,7.143600E+00,4.489534E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +211284,fr,1,4.250000E+00,7.143600E+00,4.489534E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +211286,fr,1,4.250000E+00,7.143600E+00,4.489534E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +211302,fr,1,4.350000E+00,7.143600E+00,4.489534E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999137E+01,-9.000000E+01 +211305,fr,1,4.350000E+00,7.143600E+00,4.489534E+01,5.000000E+00,Active Shallow Crust,1.288986E+02,8.998244E+01,0.000000E+00 +211308,fr,1,4.450000E+00,7.143600E+00,4.489534E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +211309,fr,1,4.450000E+00,7.143600E+00,4.489534E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +211323,fr,1,4.550000E+00,7.143600E+00,4.489534E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.799704E+01,0.000000E+00 +211329,fr,1,4.550000E+00,7.143600E+00,4.489534E+01,5.000000E+00,Active Shallow Crust,1.288947E+02,8.998556E+01,0.000000E+00 +211352,fr,1,4.750000E+00,7.143600E+00,4.489534E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998911E+01,-9.000000E+01 +211363,fr,1,4.850000E+00,7.143600E+00,4.489534E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,-9.000000E+01 +211393,fr,1,5.150000E+00,7.143600E+00,4.489534E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +211453,fr,1,5.650000E+00,7.143600E+00,4.489534E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +211500,fr,1,6.050000E+00,7.143601E+00,4.489534E+01,5.357596E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +211728,fr,1,3.950000E+00,6.846940E+00,4.313096E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +212170,fr,1,3.550000E+00,2.988170E+00,4.059059E+01,1.500000E+01,Active Shallow Crust,1.288971E+02,8.999234E+01,0.000000E+00 +212172,fr,1,3.650000E+00,2.988170E+00,4.059059E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +212186,fr,1,3.750000E+00,2.988170E+00,4.059059E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +212216,fr,1,3.950000E+00,2.988170E+00,4.059059E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,-9.000000E+01 +212691,fr,1,3.950000E+00,3.855830E+00,4.085335E+01,5.000000E+00,Active Shallow Crust,2.400188E+02,5.800523E+01,0.000000E+00 +213060,fr,1,7.050000E+00,3.855855E+00,4.085335E+01,1.694221E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +213120,fr,2,3.550000E+00,7.583910E+00,5.044984E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998716E+01,0.000000E+00 +213121,fr,1,3.550000E+00,7.583910E+00,5.044984E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998716E+01,0.000000E+00 +213122,fr,3,3.550000E+00,7.583910E+00,5.044984E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998716E+01,0.000000E+00 +213123,fr,1,3.550000E+00,7.583910E+00,5.044984E+01,5.000000E+00,Active Shallow Crust,2.400126E+02,5.799763E+01,0.000000E+00 +213132,fr,2,3.650000E+00,7.583910E+00,5.044984E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +213133,fr,1,3.650000E+00,7.583910E+00,5.044984E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +213141,fr,1,3.650000E+00,7.583910E+00,5.044984E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996304E+01,0.000000E+00 +213144,fr,1,3.750000E+00,7.583910E+00,5.044984E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +213146,fr,1,3.750000E+00,7.583910E+00,5.044984E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +213156,fr,1,3.850000E+00,7.583910E+00,5.044984E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +213162,fr,1,3.850000E+00,7.583910E+00,5.044984E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,-9.000000E+01 +213165,fr,1,3.850000E+00,7.583910E+00,5.044984E+01,5.000000E+00,Active Shallow Crust,1.288945E+02,8.999318E+01,0.000000E+00 +213168,fr,1,3.950000E+00,7.583910E+00,5.044984E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999190E+01,0.000000E+00 +213170,fr,1,3.950000E+00,7.583910E+00,5.044984E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999190E+01,0.000000E+00 +213171,fr,1,3.950000E+00,7.583910E+00,5.044984E+01,5.000000E+00,Active Shallow Crust,2.400206E+02,5.800509E+01,0.000000E+00 +213180,fr,1,4.050000E+00,7.583910E+00,5.044984E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +213182,fr,1,4.050000E+00,7.583910E+00,5.044984E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +213192,fr,1,4.150000E+00,7.583910E+00,5.044984E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +213197,fr,1,4.150000E+00,7.583910E+00,5.044984E+01,2.750000E+01,Active Shallow Crust,2.400091E+02,5.799755E+01,0.000000E+00 +213204,fr,1,4.250000E+00,7.583910E+00,5.044984E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999139E+01,0.000000E+00 +213240,fr,1,4.550000E+00,7.583910E+00,5.044984E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +213267,fr,1,4.750000E+00,7.583910E+00,5.044984E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.800495E+01,0.000000E+00 +213270,fr,1,4.750000E+00,7.583910E+00,5.044984E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,-9.000000E+01 +213276,fr,1,4.850000E+00,7.583910E+00,5.044984E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +213291,fr,1,4.950000E+00,7.583910E+00,5.044984E+01,5.000000E+00,Active Shallow Crust,2.400139E+02,5.800495E+01,0.000000E+00 +213339,fr,1,5.350000E+00,7.583910E+00,5.044984E+01,5.000000E+00,Active Shallow Crust,2.400282E+02,5.799846E+01,0.000000E+00 +213420,fr,1,6.050000E+00,7.583911E+00,5.044984E+01,5.357596E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +213602,fr,1,3.550000E+00,5.432870E+00,5.189936E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998756E+01,0.000000E+00 +213657,fr,1,3.950000E+00,5.432870E+00,5.189936E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.999215E+01,0.000000E+00 +213745,fr,1,4.750000E+00,5.432870E+00,5.189936E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +213828,fr,1,5.450000E+00,5.432870E+00,5.189936E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +214092,fr,3,3.650000E+00,1.359950E+00,4.917212E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +214104,fr,1,3.750000E+00,1.359950E+00,4.917212E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +214105,fr,1,3.750000E+00,1.359950E+00,4.917212E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +214152,fr,1,4.150000E+00,1.359950E+00,4.917212E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +214209,fr,1,4.550000E+00,1.359950E+00,4.917212E+01,5.000000E+00,Active Shallow Crust,1.288932E+02,8.998579E+01,0.000000E+00 +215042,fr,1,3.550000E+00,8.283310E+00,4.541685E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998584E+01,0.000000E+00 +215052,fr,1,3.650000E+00,8.283310E+00,4.541685E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998738E+01,0.000000E+00 +215055,fr,1,3.650000E+00,8.283310E+00,4.541685E+01,5.000000E+00,Active Shallow Crust,2.399988E+02,5.801397E+01,0.000000E+00 +215076,fr,1,3.850000E+00,8.283310E+00,4.541685E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +215097,fr,1,3.950000E+00,8.283310E+00,4.541685E+01,5.000000E+00,Active Shallow Crust,1.288992E+02,8.999554E+01,0.000000E+00 +215592,fr,1,4.150000E+00,6.316170E+00,5.164859E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +215604,fr,1,4.250000E+00,6.316170E+00,5.164859E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +215750,fr,1,5.450000E+00,6.316170E+00,5.164859E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +216001,fr,1,3.550000E+00,-2.840480E+00,4.258161E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998886E+01,0.000000E+00 +216006,fr,1,3.550000E+00,-2.840480E+00,4.258161E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998873E+01,-9.000000E+01 +216010,fr,1,3.550000E+00,-2.840480E+00,4.258161E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.999258E+01,0.000000E+00 +216024,fr,1,3.750000E+00,-2.840480E+00,4.258161E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999115E+01,0.000000E+00 +216034,fr,1,3.750000E+00,-2.840480E+00,4.258161E+01,1.500000E+01,Active Shallow Crust,1.288971E+02,8.996742E+01,0.000000E+00 +216048,fr,1,3.950000E+00,-2.840480E+00,4.258161E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +216060,fr,1,4.050000E+00,-2.840480E+00,4.258161E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +216480,fr,2,3.550000E+00,-3.140570E+00,4.778836E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +216481,fr,1,3.550000E+00,-3.140570E+00,4.778836E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +216483,fr,1,3.550000E+00,-3.140570E+00,4.778836E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799808E+01,0.000000E+00 +216486,fr,2,3.550000E+00,-3.140570E+00,4.778836E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,-9.000000E+01 +216489,fr,1,3.550000E+00,-3.140570E+00,4.778836E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999323E+01,0.000000E+00 +216492,fr,1,3.650000E+00,-3.140570E+00,4.778836E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +216493,fr,2,3.650000E+00,-3.140570E+00,4.778836E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +216504,fr,2,3.750000E+00,-3.140570E+00,4.778836E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +216507,fr,1,3.750000E+00,-3.140570E+00,4.778836E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801783E+01,0.000000E+00 +216508,fr,1,3.750000E+00,-3.140570E+00,4.778836E+01,1.500000E+01,Active Shallow Crust,2.400080E+02,5.801783E+01,0.000000E+00 +216513,fr,1,3.750000E+00,-3.140570E+00,4.778836E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.996726E+01,0.000000E+00 +216518,fr,1,3.850000E+00,-3.140570E+00,4.778836E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +216523,fr,1,3.850000E+00,-3.140570E+00,4.778836E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,-9.000000E+01 +216528,fr,2,3.950000E+00,-3.140570E+00,4.778836E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +216534,fr,1,3.950000E+00,-3.140570E+00,4.778836E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998919E+01,-9.000000E+01 +216545,fr,1,4.050000E+00,-3.140570E+00,4.778836E+01,2.750000E+01,Active Shallow Crust,2.400065E+02,5.800576E+01,0.000000E+00 +216554,fr,1,4.150000E+00,-3.140570E+00,4.778836E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +216576,fr,1,4.350000E+00,-3.140570E+00,4.778836E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +216578,fr,1,4.350000E+00,-3.140570E+00,4.778836E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +216591,fr,1,4.450000E+00,-3.140570E+00,4.778836E+01,5.000000E+00,Active Shallow Crust,2.400057E+02,5.799482E+01,0.000000E+00 +216613,fr,1,4.650000E+00,-3.140570E+00,4.778836E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +216684,fr,1,5.250000E+00,-3.140570E+00,4.778836E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +216826,fr,1,6.350000E+00,-3.140570E+00,4.778836E+01,1.500000E+01,Active Shallow Crust,1.288412E+02,8.998981E+01,0.000000E+00 +216960,fr,1,3.550000E+00,-8.455500E-01,4.281083E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +216961,fr,2,3.550000E+00,-8.455500E-01,4.281083E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +216966,fr,1,3.550000E+00,-8.455500E-01,4.281083E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,-9.000000E+01 +216967,fr,1,3.550000E+00,-8.455500E-01,4.281083E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998971E+01,-9.000000E+01 +216972,fr,1,3.650000E+00,-8.455500E-01,4.281083E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +216975,fr,1,3.650000E+00,-8.455500E-01,4.281083E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801268E+01,0.000000E+00 +216977,fr,1,3.650000E+00,-8.455500E-01,4.281083E+01,2.750000E+01,Active Shallow Crust,2.400007E+02,5.801260E+01,0.000000E+00 +216984,fr,1,3.750000E+00,-8.455500E-01,4.281083E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +216997,fr,1,3.850000E+00,-8.455500E-01,4.281083E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +217005,fr,1,3.850000E+00,-8.455500E-01,4.281083E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999378E+01,0.000000E+00 +217020,fr,1,4.050000E+00,-8.455500E-01,4.281083E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +217021,fr,1,4.050000E+00,-8.455500E-01,4.281083E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +217044,fr,1,4.250000E+00,-8.455500E-01,4.281083E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +217050,fr,1,4.250000E+00,-8.455500E-01,4.281083E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +217068,fr,1,4.450000E+00,-8.455500E-01,4.281083E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +217281,fr,1,6.150000E+00,-8.455514E-01,4.281083E+01,6.011322E+00,Active Shallow Crust,1.288614E+02,8.998976E+01,0.000000E+00 +217440,fr,1,3.550000E+00,2.460180E+00,4.790819E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +217572,fr,1,4.650000E+00,2.460180E+00,4.790819E+01,5.000000E+00,Active Shallow Crust,3.599995E+02,8.999047E+01,0.000000E+00 +218412,fr,1,3.650000E+00,6.688320E+00,5.157244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998883E+01,0.000000E+00 +218437,fr,1,3.850000E+00,6.688320E+00,5.157244E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999113E+01,0.000000E+00 +218451,fr,1,3.950000E+00,6.688320E+00,5.157244E+01,5.000000E+00,Active Shallow Crust,2.400206E+02,5.800478E+01,0.000000E+00 +218460,fr,1,4.050000E+00,6.688320E+00,5.157244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +218521,fr,1,4.550000E+00,6.688320E+00,5.157244E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +218895,fr,1,3.650000E+00,6.497410E+00,4.919975E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801313E+01,0.000000E+00 +218917,fr,1,3.850000E+00,6.497410E+00,4.919975E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999067E+01,0.000000E+00 +219366,fr,1,3.550000E+00,3.999840E+00,5.258615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,-9.000000E+01 +219840,fr,4,3.550000E+00,5.700790E+00,4.576813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999297E+01,0.000000E+00 +219841,fr,1,3.550000E+00,5.700790E+00,4.576813E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999297E+01,0.000000E+00 +219852,fr,1,3.650000E+00,5.700790E+00,4.576813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998746E+01,0.000000E+00 +219855,fr,1,3.650000E+00,5.700790E+00,4.576813E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801292E+01,0.000000E+00 +219862,fr,1,3.650000E+00,5.700790E+00,4.576813E+01,1.500000E+01,Active Shallow Crust,1.289001E+02,8.996351E+01,0.000000E+00 +219864,fr,1,3.750000E+00,5.700790E+00,4.576813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +219865,fr,1,3.750000E+00,5.700790E+00,4.576813E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +219866,fr,1,3.750000E+00,5.700790E+00,4.576813E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +219868,fr,1,3.750000E+00,5.700790E+00,4.576813E+01,1.500000E+01,Active Shallow Crust,2.400087E+02,5.801748E+01,0.000000E+00 +219870,fr,1,3.750000E+00,5.700790E+00,4.576813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,-9.000000E+01 +219874,fr,1,3.750000E+00,5.700790E+00,4.576813E+01,1.500000E+01,Active Shallow Crust,1.288960E+02,8.996748E+01,0.000000E+00 +219876,fr,5,3.850000E+00,5.700790E+00,4.576813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +219880,fr,1,3.850000E+00,5.700790E+00,4.576813E+01,1.500000E+01,Active Shallow Crust,2.400109E+02,5.799771E+01,0.000000E+00 +219895,fr,1,3.950000E+00,5.700790E+00,4.576813E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999102E+01,-9.000000E+01 +219897,fr,1,3.950000E+00,5.700790E+00,4.576813E+01,5.000000E+00,Active Shallow Crust,1.289011E+02,8.999334E+01,0.000000E+00 +219913,fr,1,4.150000E+00,5.700790E+00,4.576813E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +219924,fr,1,4.250000E+00,5.700790E+00,4.576813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +219931,fr,1,4.250000E+00,5.700790E+00,4.576813E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,-9.000000E+01 +219945,fr,1,4.350000E+00,5.700790E+00,4.576813E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.998299E+01,0.000000E+00 +219949,fr,1,4.450000E+00,5.700790E+00,4.576813E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +219954,fr,1,4.450000E+00,5.700790E+00,4.576813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,-9.000000E+01 +219956,fr,1,4.450000E+00,5.700790E+00,4.576813E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,-9.000000E+01 +219960,fr,2,4.550000E+00,5.700790E+00,4.576813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +219972,fr,2,4.650000E+00,5.700790E+00,4.576813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +219981,fr,1,4.650000E+00,5.700790E+00,4.576813E+01,5.000000E+00,Active Shallow Crust,1.288913E+02,8.998668E+01,0.000000E+00 +220053,fr,1,5.250000E+00,5.700790E+00,4.576813E+01,5.000000E+00,Active Shallow Crust,1.288835E+02,8.998714E+01,0.000000E+00 +220080,fr,1,5.550000E+00,5.700790E+00,4.576813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +220112,fr,1,5.750000E+00,5.700790E+00,4.576813E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,-9.000000E+01 +220322,fr,1,3.550000E+00,-2.196800E+00,4.841195E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +220327,fr,1,3.550000E+00,-2.196800E+00,4.841195E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +220338,fr,1,3.650000E+00,-2.196800E+00,4.841195E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999095E+01,-9.000000E+01 +220353,fr,1,3.750000E+00,-2.196800E+00,4.841195E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.996752E+01,0.000000E+00 +220356,fr,2,3.850000E+00,-2.196800E+00,4.841195E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +220365,fr,1,3.850000E+00,-2.196800E+00,4.841195E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.999289E+01,0.000000E+00 +220369,fr,1,3.950000E+00,-2.196800E+00,4.841195E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +220371,fr,2,3.950000E+00,-2.196800E+00,4.841195E+01,5.000000E+00,Active Shallow Crust,2.400197E+02,5.800505E+01,0.000000E+00 +220374,fr,1,3.950000E+00,-2.196800E+00,4.841195E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998932E+01,-9.000000E+01 +220381,fr,3,4.050000E+00,-2.196800E+00,4.841195E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +220395,fr,1,4.150000E+00,-2.196800E+00,4.841195E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799756E+01,0.000000E+00 +220416,fr,1,4.350000E+00,-2.196800E+00,4.841195E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +220418,fr,1,4.350000E+00,-2.196800E+00,4.841195E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +220437,fr,1,4.450000E+00,-2.196800E+00,4.841195E+01,5.000000E+00,Active Shallow Crust,1.288916E+02,8.999347E+01,0.000000E+00 +220440,fr,1,4.550000E+00,-2.196800E+00,4.841195E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +220452,fr,1,4.650000E+00,-2.196800E+00,4.841195E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +220517,fr,1,5.150000E+00,-2.196800E+00,4.841195E+01,2.750000E+01,Active Shallow Crust,2.400208E+02,5.800026E+01,0.000000E+00 +220524,fr,1,5.250000E+00,-2.196800E+00,4.841195E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +220560,fr,1,5.550000E+00,-2.196800E+00,4.841195E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +220812,fr,1,3.650000E+00,3.839850E+00,4.757414E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +220968,fr,1,4.950000E+00,3.839850E+00,4.757414E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +221280,fr,5,3.550000E+00,-4.285400E-01,4.747274E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +221284,fr,1,3.550000E+00,-4.285400E-01,4.747274E+01,1.500000E+01,Active Shallow Crust,2.400122E+02,5.799819E+01,0.000000E+00 +221286,fr,1,3.550000E+00,-4.285400E-01,4.747274E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +221287,fr,1,3.550000E+00,-4.285400E-01,4.747274E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +221292,fr,1,3.650000E+00,-4.285400E-01,4.747274E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +221293,fr,3,3.650000E+00,-4.285400E-01,4.747274E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +221301,fr,1,3.650000E+00,-4.285400E-01,4.747274E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.996351E+01,0.000000E+00 +221302,fr,1,3.650000E+00,-4.285400E-01,4.747274E+01,1.500000E+01,Active Shallow Crust,1.289003E+02,8.996351E+01,0.000000E+00 +221304,fr,2,3.750000E+00,-4.285400E-01,4.747274E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +221307,fr,1,3.750000E+00,-4.285400E-01,4.747274E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801758E+01,0.000000E+00 +221317,fr,1,3.850000E+00,-4.285400E-01,4.747274E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +221322,fr,1,3.850000E+00,-4.285400E-01,4.747274E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,-9.000000E+01 +221328,fr,2,3.950000E+00,-4.285400E-01,4.747274E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +221338,fr,1,3.950000E+00,-4.285400E-01,4.747274E+01,1.500000E+01,Active Shallow Crust,1.289003E+02,8.999368E+01,0.000000E+00 +221340,fr,1,4.050000E+00,-4.285400E-01,4.747274E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +221349,fr,1,4.050000E+00,-4.285400E-01,4.747274E+01,5.000000E+00,Active Shallow Crust,1.288904E+02,8.999365E+01,0.000000E+00 +221364,fr,1,4.250000E+00,-4.285400E-01,4.747274E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +221378,fr,1,4.350000E+00,-4.285400E-01,4.747274E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +221382,fr,1,4.350000E+00,-4.285400E-01,4.747274E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,-9.000000E+01 +221385,fr,1,4.350000E+00,-4.285400E-01,4.747274E+01,5.000000E+00,Active Shallow Crust,1.288977E+02,8.998276E+01,0.000000E+00 +221388,fr,1,4.450000E+00,-4.285400E-01,4.747274E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +221401,fr,1,4.550000E+00,-4.285400E-01,4.747274E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +221405,fr,1,4.550000E+00,-4.285400E-01,4.747274E+01,2.750000E+01,Active Shallow Crust,2.400096E+02,5.799740E+01,0.000000E+00 +221406,fr,1,4.550000E+00,-4.285400E-01,4.747274E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,-9.000000E+01 +221409,fr,1,4.550000E+00,-4.285400E-01,4.747274E+01,5.000000E+00,Active Shallow Crust,1.288936E+02,8.998579E+01,0.000000E+00 +221413,fr,1,4.650000E+00,-4.285400E-01,4.747274E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +221416,fr,1,4.650000E+00,-4.285400E-01,4.747274E+01,1.500000E+01,Active Shallow Crust,2.400112E+02,5.799430E+01,0.000000E+00 +221424,fr,1,4.750000E+00,-4.285400E-01,4.747274E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +221427,fr,1,4.750000E+00,-4.285400E-01,4.747274E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.800455E+01,0.000000E+00 +221438,fr,1,4.850000E+00,-4.285400E-01,4.747274E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +221678,fr,1,6.850000E+00,-4.285538E-01,4.747274E+01,2.154233E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +221790,fr,1,3.750000E+00,-6.101400E-01,4.406932E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,-9.000000E+01 +221796,fr,1,3.850000E+00,-6.101400E-01,4.406932E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +222240,fr,1,3.550000E+00,7.021420E+00,4.341920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999268E+01,0.000000E+00 +222242,fr,1,3.550000E+00,7.021420E+00,4.341920E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999268E+01,0.000000E+00 +222252,fr,2,3.650000E+00,7.021420E+00,4.341920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998695E+01,0.000000E+00 +222258,fr,1,3.650000E+00,7.021420E+00,4.341920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998679E+01,-9.000000E+01 +222261,fr,1,3.650000E+00,7.021420E+00,4.341920E+01,5.000000E+00,Active Shallow Crust,1.289009E+02,8.996346E+01,0.000000E+00 +222276,fr,1,3.850000E+00,7.021420E+00,4.341920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +222279,fr,1,3.850000E+00,7.021420E+00,4.341920E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799705E+01,0.000000E+00 +222285,fr,1,3.850000E+00,7.021420E+00,4.341920E+01,5.000000E+00,Active Shallow Crust,1.288953E+02,8.999481E+01,0.000000E+00 +222288,fr,1,3.950000E+00,7.021420E+00,4.341920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +222303,fr,1,4.050000E+00,7.021420E+00,4.341920E+01,5.000000E+00,Active Shallow Crust,2.400057E+02,5.800518E+01,0.000000E+00 +222312,fr,1,4.150000E+00,7.021420E+00,4.341920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +222402,fr,1,4.850000E+00,7.021420E+00,4.341920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +222427,fr,1,5.050000E+00,7.021420E+00,4.341920E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,-9.000000E+01 +222502,fr,1,5.650000E+00,7.021420E+00,4.341920E+01,1.500000E+01,Active Shallow Crust,1.288777E+02,8.999029E+01,0.000000E+00 +222720,fr,1,3.550000E+00,8.163120E+00,4.888773E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998674E+01,0.000000E+00 +222722,fr,1,3.550000E+00,8.163120E+00,4.888773E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998674E+01,0.000000E+00 +222727,fr,1,3.550000E+00,8.163120E+00,4.888773E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998659E+01,-9.000000E+01 +222728,fr,1,3.550000E+00,8.163120E+00,4.888773E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998659E+01,-9.000000E+01 +222729,fr,1,3.550000E+00,8.163120E+00,4.888773E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.999337E+01,0.000000E+00 +222732,fr,2,3.650000E+00,8.163120E+00,4.888773E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998818E+01,0.000000E+00 +222736,fr,2,3.650000E+00,8.163120E+00,4.888773E+01,1.500000E+01,Active Shallow Crust,2.400017E+02,5.801271E+01,0.000000E+00 +222742,fr,1,3.650000E+00,8.163120E+00,4.888773E+01,1.500000E+01,Active Shallow Crust,1.288998E+02,8.996357E+01,0.000000E+00 +222744,fr,4,3.750000E+00,8.163120E+00,4.888773E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +222748,fr,1,3.750000E+00,8.163120E+00,4.888773E+01,1.500000E+01,Active Shallow Crust,2.400075E+02,5.801838E+01,0.000000E+00 +222750,fr,1,3.750000E+00,8.163120E+00,4.888773E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998934E+01,-9.000000E+01 +222756,fr,2,3.850000E+00,8.163120E+00,4.888773E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999061E+01,0.000000E+00 +222760,fr,1,3.850000E+00,8.163120E+00,4.888773E+01,1.500000E+01,Active Shallow Crust,2.400112E+02,5.799788E+01,0.000000E+00 +222763,fr,1,3.850000E+00,8.163120E+00,4.888773E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999050E+01,-9.000000E+01 +222766,fr,1,3.850000E+00,8.163120E+00,4.888773E+01,1.500000E+01,Active Shallow Crust,1.288975E+02,8.999062E+01,0.000000E+00 +222777,fr,2,3.950000E+00,8.163120E+00,4.888773E+01,5.000000E+00,Active Shallow Crust,1.288997E+02,8.999582E+01,0.000000E+00 +222780,fr,2,4.050000E+00,8.163120E+00,4.888773E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999255E+01,0.000000E+00 +222789,fr,1,4.050000E+00,8.163120E+00,4.888773E+01,5.000000E+00,Active Shallow Crust,1.288912E+02,8.999255E+01,0.000000E+00 +222792,fr,2,4.150000E+00,8.163120E+00,4.888773E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998671E+01,0.000000E+00 +222806,fr,1,4.250000E+00,8.163120E+00,4.888773E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998815E+01,0.000000E+00 +222807,fr,1,4.250000E+00,8.163120E+00,4.888773E+01,5.000000E+00,Active Shallow Crust,2.400071E+02,5.799459E+01,0.000000E+00 +222822,fr,1,4.350000E+00,8.163120E+00,4.888773E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998932E+01,-9.000000E+01 +222828,fr,1,4.450000E+00,8.163120E+00,4.888773E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +222840,fr,1,4.550000E+00,8.163120E+00,4.888773E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999162E+01,0.000000E+00 +222864,fr,1,4.750000E+00,8.163120E+00,4.888773E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +222889,fr,1,4.950000E+00,8.163120E+00,4.888773E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998941E+01,0.000000E+00 +222937,fr,1,5.350000E+00,8.163120E+00,4.888773E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +223215,fr,1,3.650000E+00,5.017240E+00,4.060464E+01,5.000000E+00,Active Shallow Crust,2.399995E+02,5.801392E+01,0.000000E+00 +223259,fr,1,3.950000E+00,5.017240E+00,4.060464E+01,2.750000E+01,Active Shallow Crust,1.289020E+02,8.999275E+01,0.000000E+00 +223296,fr,1,4.350000E+00,5.017240E+00,4.060464E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999085E+01,0.000000E+00 +223320,fr,1,4.550000E+00,5.017240E+00,4.060464E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +223339,fr,1,4.650000E+00,5.017240E+00,4.060464E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998908E+01,-9.000000E+01 +223680,fr,1,3.550000E+00,3.422120E+00,4.687157E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +223693,fr,1,3.650000E+00,3.422120E+00,4.687157E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +223725,fr,1,3.850000E+00,3.422120E+00,4.687157E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999390E+01,0.000000E+00 +224160,fr,1,3.550000E+00,3.581800E-01,4.483602E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +224196,fr,1,3.850000E+00,3.581800E-01,4.483602E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +224206,fr,1,3.850000E+00,3.581800E-01,4.483602E+01,1.500000E+01,Active Shallow Crust,1.288959E+02,8.999368E+01,0.000000E+00 +224208,fr,3,3.950000E+00,3.581800E-01,4.483602E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +224229,fr,1,4.050000E+00,3.581800E-01,4.483602E+01,5.000000E+00,Active Shallow Crust,1.288907E+02,8.999372E+01,0.000000E+00 +224233,fr,1,4.150000E+00,3.581800E-01,4.483602E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +224244,fr,1,4.250000E+00,3.581800E-01,4.483602E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +224293,fr,1,4.650000E+00,3.581800E-01,4.483602E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +224433,fr,1,5.750000E+00,3.581800E-01,4.483602E+01,5.000000E+00,Active Shallow Crust,1.288755E+02,8.998852E+01,0.000000E+00 +224640,fr,4,3.550000E+00,4.679530E+00,4.471352E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999284E+01,0.000000E+00 +224643,fr,1,3.550000E+00,4.679530E+00,4.471352E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799814E+01,0.000000E+00 +224664,fr,1,3.750000E+00,4.679530E+00,4.471352E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +224665,fr,1,3.750000E+00,4.679530E+00,4.471352E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +224671,fr,1,3.750000E+00,4.679530E+00,4.471352E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998849E+01,-9.000000E+01 +224677,fr,1,3.850000E+00,4.679530E+00,4.471352E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +224688,fr,1,3.950000E+00,4.679530E+00,4.471352E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999096E+01,0.000000E+00 +224697,fr,2,3.950000E+00,4.679530E+00,4.471352E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.999548E+01,0.000000E+00 +224707,fr,1,4.050000E+00,4.679530E+00,4.471352E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999184E+01,-9.000000E+01 +224712,fr,2,4.150000E+00,4.679530E+00,4.471352E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +224748,fr,1,4.450000E+00,4.679530E+00,4.471352E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +224766,fr,1,4.550000E+00,4.679530E+00,4.471352E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999083E+01,-9.000000E+01 +224810,fr,1,4.950000E+00,4.679530E+00,4.471352E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +224859,fr,1,5.350000E+00,4.679530E+00,4.471352E+01,5.000000E+00,Active Shallow Crust,2.400236E+02,5.799775E+01,0.000000E+00 +225147,fr,1,3.750000E+00,1.969550E+00,5.153345E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.801761E+01,0.000000E+00 +225192,fr,1,4.150000E+00,1.969550E+00,5.153345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +225203,fr,1,4.150000E+00,1.969550E+00,5.153345E+01,2.750000E+01,Active Shallow Crust,1.288968E+02,8.999371E+01,0.000000E+00 +225421,fr,1,6.050000E+00,1.969550E+00,5.153345E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999003E+01,0.000000E+00 +225672,fr,1,4.150000E+00,4.548080E+00,5.214123E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999069E+01,0.000000E+00 +225675,fr,1,4.150000E+00,4.548080E+00,5.214123E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.799767E+01,0.000000E+00 +226080,fr,1,3.550000E+00,3.597400E-01,4.779380E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +226095,fr,1,3.650000E+00,3.597400E-01,4.779380E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801298E+01,0.000000E+00 +226113,fr,1,3.750000E+00,3.597400E-01,4.779380E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996733E+01,0.000000E+00 +226164,fr,1,4.250000E+00,3.597400E-01,4.779380E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +226176,fr,1,4.350000E+00,3.597400E-01,4.779380E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +226560,fr,10,3.550000E+00,2.139600E-01,4.305450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +226561,fr,5,3.550000E+00,2.139600E-01,4.305450E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +226562,fr,4,3.550000E+00,2.139600E-01,4.305450E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +226563,fr,1,3.550000E+00,2.139600E-01,4.305450E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799812E+01,0.000000E+00 +226564,fr,2,3.550000E+00,2.139600E-01,4.305450E+01,1.500000E+01,Active Shallow Crust,2.400119E+02,5.799812E+01,0.000000E+00 +226565,fr,1,3.550000E+00,2.139600E-01,4.305450E+01,2.750000E+01,Active Shallow Crust,2.400119E+02,5.799802E+01,0.000000E+00 +226569,fr,3,3.550000E+00,2.139600E-01,4.305450E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999367E+01,0.000000E+00 +226570,fr,2,3.550000E+00,2.139600E-01,4.305450E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.999367E+01,0.000000E+00 +226572,fr,11,3.650000E+00,2.139600E-01,4.305450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +226573,fr,5,3.650000E+00,2.139600E-01,4.305450E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +226575,fr,3,3.650000E+00,2.139600E-01,4.305450E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801282E+01,0.000000E+00 +226576,fr,1,3.650000E+00,2.139600E-01,4.305450E+01,1.500000E+01,Active Shallow Crust,2.400007E+02,5.801282E+01,0.000000E+00 +226577,fr,1,3.650000E+00,2.139600E-01,4.305450E+01,2.750000E+01,Active Shallow Crust,2.400007E+02,5.801274E+01,0.000000E+00 +226579,fr,2,3.650000E+00,2.139600E-01,4.305450E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +226584,fr,6,3.750000E+00,2.139600E-01,4.305450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +226585,fr,2,3.750000E+00,2.139600E-01,4.305450E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +226587,fr,1,3.750000E+00,2.139600E-01,4.305450E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801751E+01,0.000000E+00 +226590,fr,1,3.750000E+00,2.139600E-01,4.305450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +226591,fr,1,3.750000E+00,2.139600E-01,4.305450E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +226594,fr,1,3.750000E+00,2.139600E-01,4.305450E+01,1.500000E+01,Active Shallow Crust,1.288969E+02,8.996736E+01,0.000000E+00 +226596,fr,9,3.850000E+00,2.139600E-01,4.305450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +226597,fr,1,3.850000E+00,2.139600E-01,4.305450E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +226598,fr,1,3.850000E+00,2.139600E-01,4.305450E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +226602,fr,2,3.850000E+00,2.139600E-01,4.305450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +226603,fr,1,3.850000E+00,2.139600E-01,4.305450E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +226606,fr,1,3.850000E+00,2.139600E-01,4.305450E+01,1.500000E+01,Active Shallow Crust,1.288960E+02,8.999372E+01,0.000000E+00 +226608,fr,6,3.950000E+00,2.139600E-01,4.305450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +226609,fr,1,3.950000E+00,2.139600E-01,4.305450E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +226610,fr,1,3.950000E+00,2.139600E-01,4.305450E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +226611,fr,1,3.950000E+00,2.139600E-01,4.305450E+01,5.000000E+00,Active Shallow Crust,2.400193E+02,5.800488E+01,0.000000E+00 +226614,fr,2,3.950000E+00,2.139600E-01,4.305450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +226615,fr,1,3.950000E+00,2.139600E-01,4.305450E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +226617,fr,1,3.950000E+00,2.139600E-01,4.305450E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.999375E+01,0.000000E+00 +226620,fr,3,4.050000E+00,2.139600E-01,4.305450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +226621,fr,6,4.050000E+00,2.139600E-01,4.305450E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +226629,fr,1,4.050000E+00,2.139600E-01,4.305450E+01,5.000000E+00,Active Shallow Crust,1.288909E+02,8.999372E+01,0.000000E+00 +226630,fr,1,4.050000E+00,2.139600E-01,4.305450E+01,1.500000E+01,Active Shallow Crust,1.288909E+02,8.999372E+01,0.000000E+00 +226636,fr,3,4.150000E+00,2.139600E-01,4.305450E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.799723E+01,0.000000E+00 +226639,fr,2,4.150000E+00,2.139600E-01,4.305450E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +226644,fr,1,4.250000E+00,2.139600E-01,4.305450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +226647,fr,1,4.250000E+00,2.139600E-01,4.305450E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.799395E+01,0.000000E+00 +226653,fr,1,4.250000E+00,2.139600E-01,4.305450E+01,5.000000E+00,Active Shallow Crust,1.288949E+02,8.998092E+01,0.000000E+00 +226656,fr,3,4.350000E+00,2.139600E-01,4.305450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +226659,fr,1,4.350000E+00,2.139600E-01,4.305450E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799580E+01,0.000000E+00 +226668,fr,3,4.450000E+00,2.139600E-01,4.305450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +226669,fr,1,4.450000E+00,2.139600E-01,4.305450E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +226680,fr,2,4.550000E+00,2.139600E-01,4.305450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +226682,fr,1,4.550000E+00,2.139600E-01,4.305450E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +226683,fr,1,4.550000E+00,2.139600E-01,4.305450E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799720E+01,0.000000E+00 +226684,fr,2,4.550000E+00,2.139600E-01,4.305450E+01,1.500000E+01,Active Shallow Crust,2.400083E+02,5.799722E+01,0.000000E+00 +226693,fr,1,4.650000E+00,2.139600E-01,4.305450E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +226716,fr,4,4.850000E+00,2.139600E-01,4.305450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +226728,fr,2,4.950000E+00,2.139600E-01,4.305450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +226740,fr,1,5.050000E+00,2.139600E-01,4.305450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +226764,fr,1,5.250000E+00,2.139600E-01,4.305450E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +226800,fr,1,5.550000E+00,2.139600E-01,4.305450E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +226801,fr,1,5.550000E+00,2.139600E-01,4.305450E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +227041,fr,1,3.550000E+00,3.309470E+00,5.028199E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +227065,fr,1,3.750000E+00,3.309470E+00,5.028199E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +227139,fr,1,4.350000E+00,3.309470E+00,5.028199E+01,5.000000E+00,Active Shallow Crust,2.400093E+02,5.799619E+01,0.000000E+00 +227151,fr,1,4.450000E+00,3.309470E+00,5.028199E+01,5.000000E+00,Active Shallow Crust,2.400065E+02,5.799485E+01,0.000000E+00 +227520,fr,2,3.550000E+00,-3.905000E-02,5.002129E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +227523,fr,1,3.550000E+00,-3.905000E-02,5.002129E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799823E+01,0.000000E+00 +227526,fr,1,3.550000E+00,-3.905000E-02,5.002129E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +227532,fr,1,3.650000E+00,-3.905000E-02,5.002129E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +227544,fr,1,3.750000E+00,-3.905000E-02,5.002129E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +227545,fr,2,3.750000E+00,-3.905000E-02,5.002129E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +227563,fr,1,3.850000E+00,-3.905000E-02,5.002129E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +227569,fr,1,3.950000E+00,-3.905000E-02,5.002129E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +227593,fr,1,4.150000E+00,-3.905000E-02,5.002129E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +227607,fr,1,4.250000E+00,-3.905000E-02,5.002129E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799422E+01,0.000000E+00 +227629,fr,1,4.450000E+00,-3.905000E-02,5.002129E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +228000,fr,1,3.550000E+00,4.632870E+00,4.562422E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999295E+01,0.000000E+00 +228001,fr,1,3.550000E+00,4.632870E+00,4.562422E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999295E+01,0.000000E+00 +228010,fr,1,3.550000E+00,4.632870E+00,4.562422E+01,1.500000E+01,Active Shallow Crust,1.288966E+02,8.999295E+01,0.000000E+00 +228012,fr,1,3.650000E+00,4.632870E+00,4.562422E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998743E+01,0.000000E+00 +228015,fr,1,3.650000E+00,4.632870E+00,4.562422E+01,5.000000E+00,Active Shallow Crust,2.400003E+02,5.801366E+01,0.000000E+00 +228030,fr,1,3.750000E+00,4.632870E+00,4.562422E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,-9.000000E+01 +228064,fr,1,4.050000E+00,4.632870E+00,4.562422E+01,1.500000E+01,Active Shallow Crust,2.400065E+02,5.800554E+01,0.000000E+00 +228072,fr,1,4.150000E+00,4.632870E+00,4.562422E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +228972,fr,2,3.650000E+00,2.956000E-02,4.830556E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +228996,fr,1,3.850000E+00,2.956000E-02,4.830556E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +229005,fr,1,3.850000E+00,2.956000E-02,4.830556E+01,5.000000E+00,Active Shallow Crust,1.288955E+02,8.999372E+01,0.000000E+00 +229018,fr,1,3.950000E+00,2.956000E-02,4.830556E+01,1.500000E+01,Active Shallow Crust,1.289001E+02,8.999372E+01,0.000000E+00 +229021,fr,1,4.050000E+00,2.956000E-02,4.830556E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +229039,fr,1,4.150000E+00,2.956000E-02,4.830556E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +229041,fr,1,4.150000E+00,2.956000E-02,4.830556E+01,5.000000E+00,Active Shallow Crust,1.288973E+02,8.999372E+01,0.000000E+00 +229057,fr,1,4.350000E+00,2.956000E-02,4.830556E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +229071,fr,1,4.450000E+00,2.956000E-02,4.830556E+01,5.000000E+00,Active Shallow Crust,2.400058E+02,5.799476E+01,0.000000E+00 +229073,fr,1,4.450000E+00,2.956000E-02,4.830556E+01,2.750000E+01,Active Shallow Crust,2.400058E+02,5.799478E+01,0.000000E+00 +229164,fr,1,5.250000E+00,2.956000E-02,4.830556E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +229440,fr,1,3.550000E+00,5.225360E+00,4.399494E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999274E+01,0.000000E+00 +229441,fr,1,3.550000E+00,5.225360E+00,4.399494E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999274E+01,0.000000E+00 +229442,fr,1,3.550000E+00,5.225360E+00,4.399494E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999274E+01,0.000000E+00 +229443,fr,1,3.550000E+00,5.225360E+00,4.399494E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799869E+01,0.000000E+00 +229452,fr,1,3.650000E+00,5.225360E+00,4.399494E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998707E+01,0.000000E+00 +229453,fr,2,3.650000E+00,5.225360E+00,4.399494E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998707E+01,0.000000E+00 +229464,fr,1,3.750000E+00,5.225360E+00,4.399494E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998847E+01,0.000000E+00 +229465,fr,2,3.750000E+00,5.225360E+00,4.399494E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998847E+01,0.000000E+00 +229479,fr,1,3.850000E+00,5.225360E+00,4.399494E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.799762E+01,0.000000E+00 +229488,fr,2,3.950000E+00,5.225360E+00,4.399494E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +229489,fr,1,3.950000E+00,5.225360E+00,4.399494E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +229494,fr,1,3.950000E+00,5.225360E+00,4.399494E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999074E+01,-9.000000E+01 +229501,fr,1,4.050000E+00,5.225360E+00,4.399494E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999184E+01,0.000000E+00 +229503,fr,1,4.050000E+00,5.225360E+00,4.399494E+01,5.000000E+00,Active Shallow Crust,2.400063E+02,5.800532E+01,0.000000E+00 +229506,fr,1,4.050000E+00,5.225360E+00,4.399494E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999174E+01,-9.000000E+01 +229512,fr,1,4.150000E+00,5.225360E+00,4.399494E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +229513,fr,1,4.150000E+00,5.225360E+00,4.399494E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +229516,fr,1,4.150000E+00,5.225360E+00,4.399494E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.799689E+01,0.000000E+00 +229519,fr,1,4.150000E+00,5.225360E+00,4.399494E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998897E+01,-9.000000E+01 +229524,fr,1,4.250000E+00,5.225360E+00,4.399494E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +229525,fr,1,4.250000E+00,5.225360E+00,4.399494E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +229533,fr,1,4.250000E+00,5.225360E+00,4.399494E+01,5.000000E+00,Active Shallow Crust,1.288953E+02,8.998085E+01,0.000000E+00 +229560,fr,1,4.550000E+00,5.225360E+00,4.399494E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999082E+01,0.000000E+00 +229572,fr,1,4.650000E+00,5.225360E+00,4.399494E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +229620,fr,1,5.050000E+00,5.225360E+00,4.399494E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +229920,fr,3,3.550000E+00,1.305630E+00,4.943200E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +229921,fr,1,3.550000E+00,1.305630E+00,4.943200E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +229923,fr,1,3.550000E+00,1.305630E+00,4.943200E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799815E+01,0.000000E+00 +229936,fr,1,3.650000E+00,1.305630E+00,4.943200E+01,1.500000E+01,Active Shallow Crust,2.400013E+02,5.801305E+01,0.000000E+00 +229948,fr,1,3.750000E+00,1.305630E+00,4.943200E+01,1.500000E+01,Active Shallow Crust,2.400090E+02,5.801750E+01,0.000000E+00 +229956,fr,1,3.850000E+00,1.305630E+00,4.943200E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +230011,fr,1,4.250000E+00,1.305630E+00,4.943200E+01,1.500000E+01,Active Shallow Crust,3.599996E+02,8.999037E+01,-9.000000E+01 +230197,fr,1,5.850000E+00,1.305630E+00,4.943200E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +230460,fr,1,4.050000E+00,2.494340E+00,3.997227E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +230533,fr,1,4.650000E+00,2.494340E+00,3.997227E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +230880,fr,2,3.550000E+00,7.935800E-01,4.927577E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +230889,fr,1,3.550000E+00,7.935800E-01,4.927577E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999342E+01,0.000000E+00 +230910,fr,1,3.750000E+00,7.935800E-01,4.927577E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +230920,fr,1,3.850000E+00,7.935800E-01,4.927577E+01,1.500000E+01,Active Shallow Crust,2.400113E+02,5.799788E+01,0.000000E+00 +230922,fr,1,3.850000E+00,7.935800E-01,4.927577E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +230928,fr,1,3.950000E+00,7.935800E-01,4.927577E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +230940,fr,1,4.050000E+00,7.935800E-01,4.927577E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +230952,fr,1,4.150000E+00,7.935800E-01,4.927577E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +231019,fr,1,4.650000E+00,7.935800E-01,4.927577E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +231027,fr,1,4.750000E+00,7.935800E-01,4.927577E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.800468E+01,0.000000E+00 +231049,fr,1,4.950000E+00,7.935800E-01,4.927577E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +231360,fr,1,3.550000E+00,5.015480E+00,4.722970E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999315E+01,0.000000E+00 +231372,fr,1,3.650000E+00,5.015480E+00,4.722970E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998779E+01,0.000000E+00 +231374,fr,1,3.650000E+00,5.015480E+00,4.722970E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998779E+01,0.000000E+00 +231396,fr,1,3.850000E+00,5.015480E+00,4.722970E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +231397,fr,1,3.850000E+00,5.015480E+00,4.722970E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +231399,fr,1,3.850000E+00,5.015480E+00,4.722970E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799785E+01,0.000000E+00 +231412,fr,1,3.950000E+00,5.015480E+00,4.722970E+01,1.500000E+01,Active Shallow Crust,2.400202E+02,5.800515E+01,0.000000E+00 +231432,fr,1,4.150000E+00,5.015480E+00,4.722970E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +231447,fr,1,4.250000E+00,5.015480E+00,4.722970E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799398E+01,0.000000E+00 +231864,fr,1,3.750000E+00,4.169250E+00,4.143930E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998799E+01,0.000000E+00 +231915,fr,1,4.150000E+00,4.169250E+00,4.143930E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799680E+01,0.000000E+00 +231957,fr,1,4.450000E+00,4.169250E+00,4.143930E+01,5.000000E+00,Active Shallow Crust,1.288936E+02,8.999329E+01,0.000000E+00 +232323,fr,1,3.550000E+00,-5.386100E-01,4.421278E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799804E+01,0.000000E+00 +232801,fr,1,3.550000E+00,-2.558330E+00,4.932304E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +232824,fr,1,3.750000E+00,-2.558330E+00,4.932304E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +232836,fr,1,3.850000E+00,-2.558330E+00,4.932304E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999069E+01,0.000000E+00 +232838,fr,1,3.850000E+00,-2.558330E+00,4.932304E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999069E+01,0.000000E+00 +232845,fr,1,3.850000E+00,-2.558330E+00,4.932304E+01,5.000000E+00,Active Shallow Crust,1.288951E+02,8.999419E+01,0.000000E+00 +232848,fr,1,3.950000E+00,-2.558330E+00,4.932304E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +232864,fr,1,4.050000E+00,-2.558330E+00,4.932304E+01,1.500000E+01,Active Shallow Crust,2.400065E+02,5.800576E+01,0.000000E+00 +232884,fr,1,4.250000E+00,-2.558330E+00,4.932304E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +232908,fr,2,4.450000E+00,-2.558330E+00,4.932304E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +232932,fr,1,4.650000E+00,-2.558330E+00,4.932304E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +232992,fr,1,5.150000E+00,-2.558330E+00,4.932304E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +233280,fr,2,3.550000E+00,-5.152760E+00,4.881522E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998672E+01,0.000000E+00 +233286,fr,1,3.550000E+00,-5.152760E+00,4.881522E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999329E+01,-9.000000E+01 +233353,fr,1,4.150000E+00,-5.152760E+00,4.881522E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +233449,fr,1,4.950000E+00,-5.152760E+00,4.881522E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +233787,fr,1,3.750000E+00,-1.349130E+00,5.073539E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.801770E+01,0.000000E+00 +233797,fr,1,3.850000E+00,-1.349130E+00,5.073539E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +233856,fr,1,4.350000E+00,-1.349130E+00,5.073539E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +234242,fr,1,3.550000E+00,1.516400E+00,4.519418E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +234267,fr,1,3.750000E+00,1.516400E+00,4.519418E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801768E+01,0.000000E+00 +234277,fr,1,3.850000E+00,1.516400E+00,4.519418E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +234288,fr,1,3.950000E+00,1.516400E+00,4.519418E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +234324,fr,1,4.250000E+00,1.516400E+00,4.519418E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +234720,fr,1,3.550000E+00,8.917920E+00,5.022009E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998710E+01,0.000000E+00 +234743,fr,1,3.650000E+00,8.917920E+00,5.022009E+01,2.750000E+01,Active Shallow Crust,1.288986E+02,8.996359E+01,0.000000E+00 +234751,fr,1,3.750000E+00,8.917920E+00,5.022009E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998963E+01,-9.000000E+01 +234753,fr,1,3.750000E+00,8.917920E+00,5.022009E+01,5.000000E+00,Active Shallow Crust,1.288955E+02,8.996755E+01,0.000000E+00 +234756,fr,1,3.850000E+00,8.917920E+00,5.022009E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999087E+01,0.000000E+00 +234768,fr,1,3.950000E+00,8.917920E+00,5.022009E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999186E+01,0.000000E+00 +234774,fr,1,3.950000E+00,8.917920E+00,5.022009E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999176E+01,-9.000000E+01 +234792,fr,1,4.150000E+00,8.917920E+00,5.022009E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998706E+01,0.000000E+00 +234793,fr,1,4.150000E+00,8.917920E+00,5.022009E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998706E+01,0.000000E+00 +234798,fr,1,4.150000E+00,8.917920E+00,5.022009E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998692E+01,-9.000000E+01 +235681,fr,1,3.550000E+00,2.703640E+00,4.663154E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +235689,fr,1,3.550000E+00,2.703640E+00,4.663154E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999307E+01,0.000000E+00 +235692,fr,1,3.650000E+00,2.703640E+00,4.663154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +235693,fr,1,3.650000E+00,2.703640E+00,4.663154E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +235694,fr,1,3.650000E+00,2.703640E+00,4.663154E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +235737,fr,1,3.950000E+00,2.703640E+00,4.663154E+01,5.000000E+00,Active Shallow Crust,1.289000E+02,8.999345E+01,0.000000E+00 +235740,fr,1,4.050000E+00,2.703640E+00,4.663154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +235946,fr,1,5.750000E+00,2.703640E+00,4.663154E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +236162,fr,1,3.550000E+00,4.440590E+00,4.295586E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999262E+01,0.000000E+00 +236166,fr,1,3.550000E+00,4.440590E+00,4.295586E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999253E+01,-9.000000E+01 +236268,fr,1,4.450000E+00,4.440590E+00,4.295586E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +236640,fr,1,3.550000E+00,1.714590E+00,4.307214E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999079E+01,0.000000E+00 +236641,fr,1,3.550000E+00,1.714590E+00,4.307214E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999079E+01,0.000000E+00 +236646,fr,1,3.550000E+00,1.714590E+00,4.307214E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,-9.000000E+01 +236649,fr,1,3.550000E+00,1.714590E+00,4.307214E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999448E+01,0.000000E+00 +236664,fr,2,3.750000E+00,1.714590E+00,4.307214E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +236687,fr,1,3.850000E+00,1.714590E+00,4.307214E+01,2.750000E+01,Active Shallow Crust,1.288962E+02,8.999348E+01,0.000000E+00 +236742,fr,1,4.350000E+00,1.714590E+00,4.307214E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,-9.000000E+01 +236763,fr,1,4.550000E+00,1.714590E+00,4.307214E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799723E+01,0.000000E+00 +236784,fr,1,4.750000E+00,1.714590E+00,4.307214E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +236844,fr,1,5.250000E+00,1.714590E+00,4.307214E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +236953,fr,1,6.150000E+00,1.714590E+00,4.307214E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +237120,fr,1,3.550000E+00,3.998010E+00,4.553359E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +237126,fr,1,3.550000E+00,3.998010E+00,4.553359E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998928E+01,-9.000000E+01 +237132,fr,1,3.650000E+00,3.998010E+00,4.553359E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +237133,fr,1,3.650000E+00,3.998010E+00,4.553359E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +237138,fr,1,3.650000E+00,3.998010E+00,4.553359E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999045E+01,-9.000000E+01 +237145,fr,2,3.750000E+00,3.998010E+00,4.553359E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +237168,fr,1,3.950000E+00,3.998010E+00,4.553359E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999109E+01,0.000000E+00 +237169,fr,2,3.950000E+00,3.998010E+00,4.553359E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999109E+01,0.000000E+00 +237171,fr,1,3.950000E+00,3.998010E+00,4.553359E+01,5.000000E+00,Active Shallow Crust,2.400201E+02,5.800422E+01,0.000000E+00 +237252,fr,1,4.650000E+00,3.998010E+00,4.553359E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +237625,fr,1,3.750000E+00,-1.367160E+00,4.994204E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +237657,fr,1,3.950000E+00,-1.367160E+00,4.994204E+01,5.000000E+00,Active Shallow Crust,1.289000E+02,8.999335E+01,0.000000E+00 +237660,fr,1,4.050000E+00,-1.367160E+00,4.994204E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +237663,fr,1,4.050000E+00,-1.367160E+00,4.994204E+01,5.000000E+00,Active Shallow Crust,2.400064E+02,5.800604E+01,0.000000E+00 +238105,fr,1,3.750000E+00,-3.716580E+00,4.746005E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +238128,fr,1,3.950000E+00,-3.716580E+00,4.746005E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +238180,fr,1,4.350000E+00,-3.716580E+00,4.746005E+01,1.500000E+01,Active Shallow Crust,2.400088E+02,5.799598E+01,0.000000E+00 +238200,fr,1,4.550000E+00,-3.716580E+00,4.746005E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +238224,fr,1,4.750000E+00,-3.716580E+00,4.746005E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +238560,fr,2,3.550000E+00,1.771100E+00,5.088283E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +238561,fr,1,3.550000E+00,1.771100E+00,5.088283E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +238569,fr,1,3.550000E+00,1.771100E+00,5.088283E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999443E+01,0.000000E+00 +238570,fr,1,3.550000E+00,1.771100E+00,5.088283E+01,1.500000E+01,Active Shallow Crust,1.288959E+02,8.999443E+01,0.000000E+00 +238584,fr,1,3.750000E+00,1.771100E+00,5.088283E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +238587,fr,1,3.750000E+00,1.771100E+00,5.088283E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.801762E+01,0.000000E+00 +238597,fr,2,3.850000E+00,1.771100E+00,5.088283E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +238603,fr,1,3.850000E+00,1.771100E+00,5.088283E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,-9.000000E+01 +238644,fr,1,4.250000E+00,1.771100E+00,5.088283E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +238656,fr,1,4.350000E+00,1.771100E+00,5.088283E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +238692,fr,1,4.650000E+00,1.771100E+00,5.088283E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +239040,fr,3,3.550000E+00,6.474610E+00,4.573511E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999296E+01,0.000000E+00 +239041,fr,3,3.550000E+00,6.474610E+00,4.573511E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999296E+01,0.000000E+00 +239042,fr,1,3.550000E+00,6.474610E+00,4.573511E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999296E+01,0.000000E+00 +239049,fr,2,3.550000E+00,6.474610E+00,4.573511E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.999297E+01,0.000000E+00 +239052,fr,1,3.650000E+00,6.474610E+00,4.573511E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998746E+01,0.000000E+00 +239058,fr,1,3.650000E+00,6.474610E+00,4.573511E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998731E+01,-9.000000E+01 +239064,fr,1,3.750000E+00,6.474610E+00,4.573511E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +239065,fr,1,3.750000E+00,6.474610E+00,4.573511E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +239068,fr,1,3.750000E+00,6.474610E+00,4.573511E+01,1.500000E+01,Active Shallow Crust,2.400080E+02,5.801841E+01,0.000000E+00 +239078,fr,1,3.850000E+00,6.474610E+00,4.573511E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +239079,fr,1,3.850000E+00,6.474610E+00,4.573511E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799707E+01,0.000000E+00 +239088,fr,1,3.950000E+00,6.474610E+00,4.573511E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999112E+01,0.000000E+00 +239091,fr,1,3.950000E+00,6.474610E+00,4.573511E+01,5.000000E+00,Active Shallow Crust,2.400205E+02,5.800473E+01,0.000000E+00 +239099,fr,1,3.950000E+00,6.474610E+00,4.573511E+01,2.750000E+01,Active Shallow Crust,1.289013E+02,8.999334E+01,0.000000E+00 +239100,fr,1,4.050000E+00,6.474610E+00,4.573511E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998813E+01,0.000000E+00 +239112,fr,1,4.150000E+00,6.474610E+00,4.573511E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +239121,fr,1,4.150000E+00,6.474610E+00,4.573511E+01,5.000000E+00,Active Shallow Crust,1.288982E+02,8.999294E+01,0.000000E+00 +239136,fr,1,4.350000E+00,6.474610E+00,4.573511E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998879E+01,0.000000E+00 +239140,fr,1,4.350000E+00,6.474610E+00,4.573511E+01,1.500000E+01,Active Shallow Crust,2.400085E+02,5.799594E+01,0.000000E+00 +239145,fr,1,4.350000E+00,6.474610E+00,4.573511E+01,5.000000E+00,Active Shallow Crust,1.288986E+02,8.998248E+01,0.000000E+00 +239160,fr,1,4.550000E+00,6.474610E+00,4.573511E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +239196,fr,1,4.850000E+00,6.474610E+00,4.573511E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +239220,fr,1,5.050000E+00,6.474610E+00,4.573511E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +239520,fr,2,3.550000E+00,8.218940E+00,5.014749E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998708E+01,0.000000E+00 +239521,fr,1,3.550000E+00,8.218940E+00,5.014749E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998708E+01,0.000000E+00 +239522,fr,1,3.550000E+00,8.218940E+00,5.014749E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998708E+01,0.000000E+00 +239529,fr,1,3.550000E+00,8.218940E+00,5.014749E+01,5.000000E+00,Active Shallow Crust,1.288951E+02,8.999354E+01,0.000000E+00 +239532,fr,1,3.650000E+00,8.218940E+00,5.014749E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998848E+01,0.000000E+00 +239545,fr,1,3.750000E+00,8.218940E+00,5.014749E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +239553,fr,1,3.750000E+00,8.218940E+00,5.014749E+01,5.000000E+00,Active Shallow Crust,1.288981E+02,8.996635E+01,0.000000E+00 +239559,fr,1,3.850000E+00,8.218940E+00,5.014749E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799866E+01,0.000000E+00 +239581,fr,1,4.050000E+00,8.218940E+00,5.014749E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999273E+01,0.000000E+00 +239586,fr,1,4.050000E+00,8.218940E+00,5.014749E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999265E+01,-9.000000E+01 +239597,fr,1,4.150000E+00,8.218940E+00,5.014749E+01,2.750000E+01,Active Shallow Crust,2.400101E+02,5.799770E+01,0.000000E+00 +239628,fr,1,4.450000E+00,8.218940E+00,5.014749E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +239664,fr,1,4.750000E+00,8.218940E+00,5.014749E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +239666,fr,1,4.750000E+00,8.218940E+00,5.014749E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +239721,fr,1,5.150000E+00,8.218940E+00,5.014749E+01,5.000000E+00,Active Shallow Crust,1.288818E+02,8.999113E+01,0.000000E+00 +239797,fr,1,5.850000E+00,8.218940E+00,5.014749E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +239808,fr,1,5.950000E+00,8.218940E+00,5.014749E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +240024,fr,1,3.750000E+00,3.623860E+00,4.754198E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998919E+01,0.000000E+00 +240030,fr,1,3.750000E+00,3.623860E+00,4.754198E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998906E+01,-9.000000E+01 +240056,fr,1,3.950000E+00,3.623860E+00,4.754198E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998914E+01,-9.000000E+01 +240061,fr,1,4.050000E+00,3.623860E+00,4.754198E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +240068,fr,1,4.050000E+00,3.623860E+00,4.754198E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,-9.000000E+01 +240480,fr,1,3.550000E+00,-2.239570E+00,4.265448E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +240510,fr,1,3.750000E+00,-2.239570E+00,4.265448E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999106E+01,-9.000000E+01 +240513,fr,1,3.750000E+00,-2.239570E+00,4.265448E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996742E+01,0.000000E+00 +240516,fr,2,3.850000E+00,-2.239570E+00,4.265448E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +240528,fr,1,3.950000E+00,-2.239570E+00,4.265448E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +240540,fr,1,4.050000E+00,-2.239570E+00,4.265448E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +240549,fr,1,4.050000E+00,-2.239570E+00,4.265448E+01,5.000000E+00,Active Shallow Crust,1.288907E+02,8.999374E+01,0.000000E+00 +240561,fr,1,4.150000E+00,-2.239570E+00,4.265448E+01,5.000000E+00,Active Shallow Crust,1.288983E+02,8.999350E+01,0.000000E+00 +240562,fr,1,4.150000E+00,-2.239570E+00,4.265448E+01,1.500000E+01,Active Shallow Crust,1.288983E+02,8.999350E+01,0.000000E+00 +240564,fr,1,4.250000E+00,-2.239570E+00,4.265448E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +240588,fr,1,4.450000E+00,-2.239570E+00,4.265448E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +240600,fr,1,4.550000E+00,-2.239570E+00,4.265448E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +240603,fr,1,4.550000E+00,-2.239570E+00,4.265448E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.799704E+01,0.000000E+00 +240660,fr,1,5.050000E+00,-2.239570E+00,4.265448E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +240960,fr,1,3.550000E+00,5.145950E+00,4.711905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999314E+01,0.000000E+00 +240964,fr,1,3.550000E+00,5.145950E+00,4.711905E+01,1.500000E+01,Active Shallow Crust,2.400124E+02,5.799781E+01,0.000000E+00 +240972,fr,1,3.650000E+00,5.145950E+00,4.711905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998777E+01,0.000000E+00 +240973,fr,1,3.650000E+00,5.145950E+00,4.711905E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998777E+01,0.000000E+00 +240975,fr,1,3.650000E+00,5.145950E+00,4.711905E+01,5.000000E+00,Active Shallow Crust,2.400002E+02,5.801371E+01,0.000000E+00 +240984,fr,2,3.750000E+00,5.145950E+00,4.711905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +240990,fr,1,3.750000E+00,5.145950E+00,4.711905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,-9.000000E+01 +240997,fr,2,3.850000E+00,5.145950E+00,4.711905E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +241020,fr,1,4.050000E+00,5.145950E+00,4.711905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +241086,fr,1,4.550000E+00,5.145950E+00,4.711905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998902E+01,-9.000000E+01 +241440,fr,2,3.550000E+00,9.178670E+00,4.911866E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998680E+01,0.000000E+00 +241443,fr,1,3.550000E+00,9.178670E+00,4.911866E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799876E+01,0.000000E+00 +241452,fr,1,3.650000E+00,9.178670E+00,4.911866E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998824E+01,0.000000E+00 +241455,fr,1,3.650000E+00,9.178670E+00,4.911866E+01,5.000000E+00,Active Shallow Crust,2.400017E+02,5.801256E+01,0.000000E+00 +241466,fr,1,3.750000E+00,9.178670E+00,4.911866E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +241512,fr,1,4.150000E+00,9.178670E+00,4.911866E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998677E+01,0.000000E+00 +241533,fr,1,4.250000E+00,9.178670E+00,4.911866E+01,5.000000E+00,Active Shallow Crust,1.288938E+02,8.998104E+01,0.000000E+00 +241608,fr,1,4.950000E+00,9.178670E+00,4.911866E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +241920,fr,2,3.550000E+00,1.414900E+00,4.679321E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +241923,fr,1,3.550000E+00,1.414900E+00,4.679321E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799801E+01,0.000000E+00 +241926,fr,1,3.550000E+00,1.414900E+00,4.679321E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,-9.000000E+01 +241932,fr,2,3.650000E+00,1.414900E+00,4.679321E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +241944,fr,3,3.750000E+00,1.414900E+00,4.679321E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +241945,fr,1,3.750000E+00,1.414900E+00,4.679321E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +241950,fr,1,3.750000E+00,1.414900E+00,4.679321E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,-9.000000E+01 +241956,fr,1,3.850000E+00,1.414900E+00,4.679321E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +241957,fr,1,3.850000E+00,1.414900E+00,4.679321E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +241969,fr,1,3.950000E+00,1.414900E+00,4.679321E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +241974,fr,1,3.950000E+00,1.414900E+00,4.679321E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,-9.000000E+01 +241980,fr,3,4.050000E+00,1.414900E+00,4.679321E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +241982,fr,1,4.050000E+00,1.414900E+00,4.679321E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +241992,fr,2,4.150000E+00,1.414900E+00,4.679321E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +242007,fr,1,4.250000E+00,1.414900E+00,4.679321E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799411E+01,0.000000E+00 +242136,fr,1,5.350000E+00,1.414900E+00,4.679321E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +242415,fr,1,3.650000E+00,6.709270E+00,4.859507E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801292E+01,0.000000E+00 +242416,fr,1,3.650000E+00,6.709270E+00,4.859507E+01,1.500000E+01,Active Shallow Crust,2.400009E+02,5.801292E+01,0.000000E+00 +242439,fr,1,3.850000E+00,6.709270E+00,4.859507E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799833E+01,0.000000E+00 +242497,fr,1,4.350000E+00,6.709270E+00,4.859507E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +242556,fr,1,4.850000E+00,6.709270E+00,4.859507E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +242904,fr,1,3.750000E+00,1.522540E+00,5.048510E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +242905,fr,1,3.750000E+00,1.522540E+00,5.048510E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +242952,fr,1,4.150000E+00,1.522540E+00,5.048510E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +242953,fr,1,4.150000E+00,1.522540E+00,5.048510E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +243037,fr,1,4.850000E+00,1.522540E+00,5.048510E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +243394,fr,1,3.750000E+00,-1.260200E+00,4.510128E+01,1.500000E+01,Active Shallow Crust,1.288969E+02,8.996734E+01,0.000000E+00 +243396,fr,1,3.850000E+00,-1.260200E+00,4.510128E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +243397,fr,1,3.850000E+00,-1.260200E+00,4.510128E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +243432,fr,1,4.150000E+00,-1.260200E+00,4.510128E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +243462,fr,1,4.350000E+00,-1.260200E+00,4.510128E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +243684,fr,1,6.250000E+00,-1.260196E+00,4.510128E+01,6.744814E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +243840,fr,1,3.550000E+00,-5.177600E-01,4.692841E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +243852,fr,1,3.650000E+00,-5.177600E-01,4.692841E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +243853,fr,3,3.650000E+00,-5.177600E-01,4.692841E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +243864,fr,2,3.750000E+00,-5.177600E-01,4.692841E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +243865,fr,1,3.750000E+00,-5.177600E-01,4.692841E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +243867,fr,1,3.750000E+00,-5.177600E-01,4.692841E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.801759E+01,0.000000E+00 +243877,fr,3,3.850000E+00,-5.177600E-01,4.692841E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +243888,fr,2,3.950000E+00,-5.177600E-01,4.692841E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +243889,fr,1,3.950000E+00,-5.177600E-01,4.692841E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +243897,fr,1,3.950000E+00,-5.177600E-01,4.692841E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.999375E+01,0.000000E+00 +243900,fr,1,4.050000E+00,-5.177600E-01,4.692841E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +243901,fr,1,4.050000E+00,-5.177600E-01,4.692841E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +243912,fr,1,4.150000E+00,-5.177600E-01,4.692841E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +243924,fr,1,4.250000E+00,-5.177600E-01,4.692841E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +243936,fr,1,4.350000E+00,-5.177600E-01,4.692841E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +243941,fr,1,4.350000E+00,-5.177600E-01,4.692841E+01,2.750000E+01,Active Shallow Crust,2.400085E+02,5.799597E+01,0.000000E+00 +243969,fr,1,4.550000E+00,-5.177600E-01,4.692841E+01,5.000000E+00,Active Shallow Crust,1.288938E+02,8.998579E+01,0.000000E+00 +243973,fr,1,4.650000E+00,-5.177600E-01,4.692841E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +244008,fr,1,4.950000E+00,-5.177600E-01,4.692841E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +244021,fr,1,5.050000E+00,-5.177600E-01,4.692841E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +244033,fr,1,5.150000E+00,-5.177600E-01,4.692841E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +244323,fr,1,3.550000E+00,7.878230E+00,5.085285E+01,5.000000E+00,Active Shallow Crust,2.400140E+02,5.799729E+01,0.000000E+00 +244327,fr,1,3.550000E+00,7.878230E+00,5.085285E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998712E+01,-9.000000E+01 +244333,fr,1,3.650000E+00,7.878230E+00,5.085285E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +244380,fr,1,4.050000E+00,7.878230E+00,5.085285E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +244389,fr,1,4.050000E+00,7.878230E+00,5.085285E+01,5.000000E+00,Active Shallow Crust,1.288902E+02,8.999284E+01,0.000000E+00 +244800,fr,1,3.550000E+00,4.272980E+00,4.333250E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999267E+01,0.000000E+00 +244848,fr,1,3.950000E+00,4.272980E+00,4.333250E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +244849,fr,1,3.950000E+00,4.272980E+00,4.333250E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +244860,fr,1,4.050000E+00,4.272980E+00,4.333250E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999175E+01,0.000000E+00 +244873,fr,1,4.150000E+00,4.272980E+00,4.333250E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998897E+01,0.000000E+00 +244875,fr,1,4.150000E+00,4.272980E+00,4.333250E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.799714E+01,0.000000E+00 +244899,fr,1,4.350000E+00,4.272980E+00,4.333250E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.799588E+01,0.000000E+00 +245280,fr,1,3.550000E+00,5.609190E+00,4.497013E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999287E+01,0.000000E+00 +245281,fr,1,3.550000E+00,5.609190E+00,4.497013E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999287E+01,0.000000E+00 +245283,fr,1,3.550000E+00,5.609190E+00,4.497013E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799801E+01,0.000000E+00 +245287,fr,1,3.550000E+00,5.609190E+00,4.497013E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999278E+01,-9.000000E+01 +245289,fr,1,3.550000E+00,5.609190E+00,4.497013E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.999287E+01,0.000000E+00 +245297,fr,1,3.650000E+00,5.609190E+00,4.497013E+01,2.750000E+01,Active Shallow Crust,2.400004E+02,5.801303E+01,0.000000E+00 +245307,fr,2,3.750000E+00,5.609190E+00,4.497013E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.801731E+01,0.000000E+00 +245308,fr,1,3.750000E+00,5.609190E+00,4.497013E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.801731E+01,0.000000E+00 +245316,fr,2,3.850000E+00,5.609190E+00,4.497013E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +245321,fr,1,3.850000E+00,5.609190E+00,4.497013E+01,2.750000E+01,Active Shallow Crust,2.400111E+02,5.799833E+01,0.000000E+00 +245324,fr,1,3.850000E+00,5.609190E+00,4.497013E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,-9.000000E+01 +245328,fr,1,3.950000E+00,5.609190E+00,4.497013E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +245372,fr,1,4.250000E+00,5.609190E+00,4.497013E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,-9.000000E+01 +245388,fr,1,4.450000E+00,5.609190E+00,4.497013E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +245400,fr,1,4.550000E+00,5.609190E+00,4.497013E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +245415,fr,1,4.650000E+00,5.609190E+00,4.497013E+01,5.000000E+00,Active Shallow Crust,2.400102E+02,5.799446E+01,0.000000E+00 +245425,fr,1,4.750000E+00,5.609190E+00,4.497013E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +245472,fr,1,5.150000E+00,5.609190E+00,4.497013E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +245769,fr,1,3.550000E+00,2.379520E+00,5.115927E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.999368E+01,0.000000E+00 +245772,fr,1,3.650000E+00,2.379520E+00,5.115927E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +245773,fr,1,3.650000E+00,2.379520E+00,5.115927E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +245782,fr,1,3.650000E+00,2.379520E+00,5.115927E+01,1.500000E+01,Active Shallow Crust,1.289005E+02,8.996337E+01,0.000000E+00 +245784,fr,1,3.750000E+00,2.379520E+00,5.115927E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +245785,fr,1,3.750000E+00,2.379520E+00,5.115927E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +245787,fr,1,3.750000E+00,2.379520E+00,5.115927E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.801809E+01,0.000000E+00 +245832,fr,1,4.150000E+00,2.379520E+00,5.115927E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +245844,fr,1,4.250000E+00,2.379520E+00,5.115927E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +246240,fr,2,3.550000E+00,2.065550E+00,4.339496E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +246243,fr,1,3.550000E+00,2.065550E+00,4.339496E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799843E+01,0.000000E+00 +246325,fr,1,4.250000E+00,2.065550E+00,4.339496E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +246374,fr,1,4.650000E+00,2.065550E+00,4.339496E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +246387,fr,1,4.750000E+00,2.065550E+00,4.339496E+01,5.000000E+00,Active Shallow Crust,2.400065E+02,5.800417E+01,0.000000E+00 +246723,fr,1,3.550000E+00,-3.383900E-01,4.987302E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799827E+01,0.000000E+00 +246744,fr,1,3.750000E+00,-3.383900E-01,4.987302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +246747,fr,1,3.750000E+00,-3.383900E-01,4.987302E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.801770E+01,0.000000E+00 +246756,fr,1,3.850000E+00,-3.383900E-01,4.987302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +246768,fr,1,3.950000E+00,-3.383900E-01,4.987302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +246837,fr,1,4.450000E+00,-3.383900E-01,4.987302E+01,5.000000E+00,Active Shallow Crust,1.288914E+02,8.999373E+01,0.000000E+00 +246852,fr,1,4.650000E+00,-3.383900E-01,4.987302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +246853,fr,1,4.650000E+00,-3.383900E-01,4.987302E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +247200,fr,8,3.550000E+00,6.719110E+00,4.706309E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999313E+01,0.000000E+00 +247201,fr,3,3.550000E+00,6.719110E+00,4.706309E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999313E+01,0.000000E+00 +247203,fr,2,3.550000E+00,6.719110E+00,4.706309E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.799833E+01,0.000000E+00 +247206,fr,1,3.550000E+00,6.719110E+00,4.706309E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999305E+01,-9.000000E+01 +247212,fr,5,3.650000E+00,6.719110E+00,4.706309E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998775E+01,0.000000E+00 +247213,fr,2,3.650000E+00,6.719110E+00,4.706309E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998775E+01,0.000000E+00 +247215,fr,2,3.650000E+00,6.719110E+00,4.706309E+01,5.000000E+00,Active Shallow Crust,2.400003E+02,5.801344E+01,0.000000E+00 +247216,fr,1,3.650000E+00,6.719110E+00,4.706309E+01,1.500000E+01,Active Shallow Crust,2.400003E+02,5.801344E+01,0.000000E+00 +247221,fr,1,3.650000E+00,6.719110E+00,4.706309E+01,5.000000E+00,Active Shallow Crust,1.288997E+02,8.996353E+01,0.000000E+00 +247224,fr,1,3.750000E+00,6.719110E+00,4.706309E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +247225,fr,1,3.750000E+00,6.719110E+00,4.706309E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +247226,fr,1,3.750000E+00,6.719110E+00,4.706309E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +247228,fr,1,3.750000E+00,6.719110E+00,4.706309E+01,1.500000E+01,Active Shallow Crust,2.400091E+02,5.801702E+01,0.000000E+00 +247234,fr,1,3.750000E+00,6.719110E+00,4.706309E+01,1.500000E+01,Active Shallow Crust,1.288969E+02,8.996750E+01,0.000000E+00 +247236,fr,4,3.850000E+00,6.719110E+00,4.706309E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +247248,fr,1,3.950000E+00,6.719110E+00,4.706309E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +247249,fr,1,3.950000E+00,6.719110E+00,4.706309E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +247253,fr,1,3.950000E+00,6.719110E+00,4.706309E+01,2.750000E+01,Active Shallow Crust,2.400200E+02,5.800516E+01,0.000000E+00 +247260,fr,1,4.050000E+00,6.719110E+00,4.706309E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998841E+01,0.000000E+00 +247261,fr,1,4.050000E+00,6.719110E+00,4.706309E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998841E+01,0.000000E+00 +247284,fr,3,4.250000E+00,6.719110E+00,4.706309E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999079E+01,0.000000E+00 +247285,fr,1,4.250000E+00,6.719110E+00,4.706309E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999079E+01,0.000000E+00 +247288,fr,1,4.250000E+00,6.719110E+00,4.706309E+01,1.500000E+01,Active Shallow Crust,2.400071E+02,5.799459E+01,0.000000E+00 +247290,fr,1,4.250000E+00,6.719110E+00,4.706309E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,-9.000000E+01 +247297,fr,1,4.350000E+00,6.719110E+00,4.706309E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998906E+01,0.000000E+00 +247301,fr,1,4.350000E+00,6.719110E+00,4.706309E+01,2.750000E+01,Active Shallow Crust,2.400091E+02,5.799594E+01,0.000000E+00 +247312,fr,1,4.450000E+00,6.719110E+00,4.706309E+01,1.500000E+01,Active Shallow Crust,2.400054E+02,5.799492E+01,0.000000E+00 +247320,fr,1,4.550000E+00,6.719110E+00,4.706309E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +247321,fr,1,4.550000E+00,6.719110E+00,4.706309E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +247333,fr,1,4.650000E+00,6.719110E+00,4.706309E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +247344,fr,1,4.750000E+00,6.719110E+00,4.706309E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +247383,fr,1,5.050000E+00,6.719110E+00,4.706309E+01,5.000000E+00,Active Shallow Crust,2.400226E+02,5.799742E+01,0.000000E+00 +247404,fr,1,5.250000E+00,6.719110E+00,4.706309E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +247422,fr,1,5.350000E+00,6.719110E+00,4.706309E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,-9.000000E+01 +247427,fr,1,5.350000E+00,6.719110E+00,4.706309E+01,2.750000E+01,Active Shallow Crust,1.288828E+02,8.998795E+01,0.000000E+00 +247693,fr,2,3.650000E+00,2.474620E+00,4.064750E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +247695,fr,1,3.650000E+00,2.474620E+00,4.064750E+01,5.000000E+00,Active Shallow Crust,2.400006E+02,5.801299E+01,0.000000E+00 +247708,fr,1,3.750000E+00,2.474620E+00,4.064750E+01,1.500000E+01,Active Shallow Crust,2.400073E+02,5.801734E+01,0.000000E+00 +247761,fr,1,4.150000E+00,2.474620E+00,4.064750E+01,5.000000E+00,Active Shallow Crust,1.288984E+02,8.999425E+01,0.000000E+00 +248160,fr,1,3.550000E+00,-2.103110E+00,5.055485E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +248184,fr,1,3.750000E+00,-2.103110E+00,5.055485E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +248196,fr,2,3.850000E+00,-2.103110E+00,5.055485E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +248199,fr,1,3.850000E+00,-2.103110E+00,5.055485E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799788E+01,0.000000E+00 +248364,fr,1,5.250000E+00,-2.103110E+00,5.055485E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +248640,fr,6,3.550000E+00,7.525320E+00,4.611994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999301E+01,0.000000E+00 +248641,fr,2,3.550000E+00,7.525320E+00,4.611994E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999301E+01,0.000000E+00 +248643,fr,2,3.550000E+00,7.525320E+00,4.611994E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799942E+01,0.000000E+00 +248644,fr,1,3.550000E+00,7.525320E+00,4.611994E+01,1.500000E+01,Active Shallow Crust,2.400113E+02,5.799942E+01,0.000000E+00 +248646,fr,1,3.550000E+00,7.525320E+00,4.611994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999293E+01,-9.000000E+01 +248649,fr,1,3.550000E+00,7.525320E+00,4.611994E+01,5.000000E+00,Active Shallow Crust,1.288973E+02,8.999301E+01,0.000000E+00 +248650,fr,3,3.550000E+00,7.525320E+00,4.611994E+01,1.500000E+01,Active Shallow Crust,1.288973E+02,8.999301E+01,0.000000E+00 +248652,fr,9,3.650000E+00,7.525320E+00,4.611994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998754E+01,0.000000E+00 +248653,fr,3,3.650000E+00,7.525320E+00,4.611994E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998754E+01,0.000000E+00 +248654,fr,1,3.650000E+00,7.525320E+00,4.611994E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998754E+01,0.000000E+00 +248658,fr,1,3.650000E+00,7.525320E+00,4.611994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998740E+01,-9.000000E+01 +248661,fr,1,3.650000E+00,7.525320E+00,4.611994E+01,5.000000E+00,Active Shallow Crust,1.289011E+02,8.996352E+01,0.000000E+00 +248662,fr,1,3.650000E+00,7.525320E+00,4.611994E+01,1.500000E+01,Active Shallow Crust,1.289011E+02,8.996352E+01,0.000000E+00 +248664,fr,6,3.750000E+00,7.525320E+00,4.611994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998890E+01,0.000000E+00 +248665,fr,3,3.750000E+00,7.525320E+00,4.611994E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998890E+01,0.000000E+00 +248666,fr,2,3.750000E+00,7.525320E+00,4.611994E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998890E+01,0.000000E+00 +248668,fr,1,3.750000E+00,7.525320E+00,4.611994E+01,1.500000E+01,Active Shallow Crust,2.400087E+02,5.801700E+01,0.000000E+00 +248670,fr,1,3.750000E+00,7.525320E+00,4.611994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998877E+01,-9.000000E+01 +248673,fr,2,3.750000E+00,7.525320E+00,4.611994E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.996748E+01,0.000000E+00 +248674,fr,1,3.750000E+00,7.525320E+00,4.611994E+01,1.500000E+01,Active Shallow Crust,1.288970E+02,8.996748E+01,0.000000E+00 +248676,fr,2,3.850000E+00,7.525320E+00,4.611994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +248677,fr,2,3.850000E+00,7.525320E+00,4.611994E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +248679,fr,4,3.850000E+00,7.525320E+00,4.611994E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799752E+01,0.000000E+00 +248682,fr,1,3.850000E+00,7.525320E+00,4.611994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +248688,fr,1,3.950000E+00,7.525320E+00,4.611994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999118E+01,0.000000E+00 +248691,fr,2,3.950000E+00,7.525320E+00,4.611994E+01,5.000000E+00,Active Shallow Crust,2.400199E+02,5.800529E+01,0.000000E+00 +248695,fr,1,3.950000E+00,7.525320E+00,4.611994E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999107E+01,-9.000000E+01 +248698,fr,1,3.950000E+00,7.525320E+00,4.611994E+01,1.500000E+01,Active Shallow Crust,1.289010E+02,8.999339E+01,0.000000E+00 +248700,fr,2,4.050000E+00,7.525320E+00,4.611994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998820E+01,0.000000E+00 +248703,fr,2,4.050000E+00,7.525320E+00,4.611994E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.800607E+01,0.000000E+00 +248709,fr,1,4.050000E+00,7.525320E+00,4.611994E+01,5.000000E+00,Active Shallow Crust,1.288904E+02,8.999410E+01,0.000000E+00 +248712,fr,3,4.150000E+00,7.525320E+00,4.611994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +248713,fr,2,4.150000E+00,7.525320E+00,4.611994E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +248715,fr,1,4.150000E+00,7.525320E+00,4.611994E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799708E+01,0.000000E+00 +248716,fr,1,4.150000E+00,7.525320E+00,4.611994E+01,1.500000E+01,Active Shallow Crust,2.400082E+02,5.799710E+01,0.000000E+00 +248718,fr,1,4.150000E+00,7.525320E+00,4.611994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,-9.000000E+01 +248724,fr,5,4.250000E+00,7.525320E+00,4.611994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +248725,fr,1,4.250000E+00,7.525320E+00,4.611994E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +248727,fr,2,4.250000E+00,7.525320E+00,4.611994E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799412E+01,0.000000E+00 +248730,fr,2,4.250000E+00,7.525320E+00,4.611994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,-9.000000E+01 +248733,fr,1,4.250000E+00,7.525320E+00,4.611994E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.998093E+01,0.000000E+00 +248736,fr,2,4.350000E+00,7.525320E+00,4.611994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998887E+01,0.000000E+00 +248739,fr,1,4.350000E+00,7.525320E+00,4.611994E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799561E+01,0.000000E+00 +248745,fr,1,4.350000E+00,7.525320E+00,4.611994E+01,5.000000E+00,Active Shallow Crust,1.288982E+02,8.998250E+01,0.000000E+00 +248748,fr,1,4.450000E+00,7.525320E+00,4.611994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +248760,fr,1,4.550000E+00,7.525320E+00,4.611994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +248778,fr,1,4.650000E+00,7.525320E+00,4.611994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +248784,fr,1,4.750000E+00,7.525320E+00,4.611994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +248796,fr,1,4.850000E+00,7.525320E+00,4.611994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999061E+01,0.000000E+00 +248811,fr,1,4.950000E+00,7.525320E+00,4.611994E+01,5.000000E+00,Active Shallow Crust,2.400115E+02,5.800460E+01,0.000000E+00 +248841,fr,1,5.150000E+00,7.525320E+00,4.611994E+01,5.000000E+00,Active Shallow Crust,1.288838E+02,8.999117E+01,0.000000E+00 +248880,fr,1,5.550000E+00,7.525320E+00,4.611994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +248930,fr,1,5.950000E+00,7.525320E+00,4.611994E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +249122,fr,2,3.550000E+00,2.235780E+00,4.195680E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +249133,fr,1,3.650000E+00,2.235780E+00,4.195680E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +249134,fr,1,3.650000E+00,2.235780E+00,4.195680E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +249144,fr,1,3.750000E+00,2.235780E+00,4.195680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +249147,fr,1,3.750000E+00,2.235780E+00,4.195680E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801713E+01,0.000000E+00 +249156,fr,2,3.850000E+00,2.235780E+00,4.195680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +249168,fr,2,3.950000E+00,2.235780E+00,4.195680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +249174,fr,1,3.950000E+00,2.235780E+00,4.195680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,-9.000000E+01 +249180,fr,1,4.050000E+00,2.235780E+00,4.195680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +249187,fr,1,4.050000E+00,2.235780E+00,4.195680E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,-9.000000E+01 +249192,fr,1,4.150000E+00,2.235780E+00,4.195680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +249195,fr,1,4.150000E+00,2.235780E+00,4.195680E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799741E+01,0.000000E+00 +249246,fr,1,4.550000E+00,2.235780E+00,4.195680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,-9.000000E+01 +249258,fr,1,4.650000E+00,2.235780E+00,4.195680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,-9.000000E+01 +249600,fr,3,3.550000E+00,5.143260E+00,4.517110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999289E+01,0.000000E+00 +249601,fr,3,3.550000E+00,5.143260E+00,4.517110E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999289E+01,0.000000E+00 +249603,fr,1,3.550000E+00,5.143260E+00,4.517110E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799800E+01,0.000000E+00 +249604,fr,1,3.550000E+00,5.143260E+00,4.517110E+01,1.500000E+01,Active Shallow Crust,2.400121E+02,5.799800E+01,0.000000E+00 +249606,fr,1,3.550000E+00,5.143260E+00,4.517110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999281E+01,-9.000000E+01 +249609,fr,1,3.550000E+00,5.143260E+00,4.517110E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999289E+01,0.000000E+00 +249612,fr,1,3.650000E+00,5.143260E+00,4.517110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998733E+01,0.000000E+00 +249613,fr,1,3.650000E+00,5.143260E+00,4.517110E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998733E+01,0.000000E+00 +249614,fr,1,3.650000E+00,5.143260E+00,4.517110E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998733E+01,0.000000E+00 +249615,fr,1,3.650000E+00,5.143260E+00,4.517110E+01,5.000000E+00,Active Shallow Crust,2.400004E+02,5.801288E+01,0.000000E+00 +249618,fr,1,3.650000E+00,5.143260E+00,4.517110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998718E+01,-9.000000E+01 +249621,fr,2,3.650000E+00,5.143260E+00,4.517110E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.996350E+01,0.000000E+00 +249625,fr,1,3.750000E+00,5.143260E+00,4.517110E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998871E+01,0.000000E+00 +249636,fr,2,3.850000E+00,5.143260E+00,4.517110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +249637,fr,2,3.850000E+00,5.143260E+00,4.517110E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +249642,fr,1,3.850000E+00,5.143260E+00,4.517110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,-9.000000E+01 +249648,fr,1,3.950000E+00,5.143260E+00,4.517110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999103E+01,0.000000E+00 +249649,fr,1,3.950000E+00,5.143260E+00,4.517110E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999103E+01,0.000000E+00 +249657,fr,1,3.950000E+00,5.143260E+00,4.517110E+01,5.000000E+00,Active Shallow Crust,1.289016E+02,8.999327E+01,0.000000E+00 +249673,fr,1,4.150000E+00,5.143260E+00,4.517110E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +249697,fr,1,4.350000E+00,5.143260E+00,4.517110E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998868E+01,0.000000E+00 +249709,fr,1,4.450000E+00,5.143260E+00,4.517110E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +249832,fr,1,5.450000E+00,5.143260E+00,4.517110E+01,1.500000E+01,Active Shallow Crust,2.400277E+02,5.799832E+01,0.000000E+00 +249855,fr,1,5.650000E+00,5.143260E+00,4.517110E+01,5.000000E+00,Active Shallow Crust,2.400328E+02,5.800167E+01,0.000000E+00 +250080,fr,1,3.550000E+00,9.789200E-01,4.271685E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +250082,fr,1,3.550000E+00,9.789200E-01,4.271685E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +250084,fr,2,3.550000E+00,9.789200E-01,4.271685E+01,1.500000E+01,Active Shallow Crust,2.400119E+02,5.799813E+01,0.000000E+00 +250092,fr,3,3.650000E+00,9.789200E-01,4.271685E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +250095,fr,1,3.650000E+00,9.789200E-01,4.271685E+01,5.000000E+00,Active Shallow Crust,2.400006E+02,5.801288E+01,0.000000E+00 +250098,fr,1,3.650000E+00,9.789200E-01,4.271685E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +250099,fr,1,3.650000E+00,9.789200E-01,4.271685E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +250101,fr,1,3.650000E+00,9.789200E-01,4.271685E+01,5.000000E+00,Active Shallow Crust,1.289006E+02,8.996352E+01,0.000000E+00 +250104,fr,1,3.750000E+00,9.789200E-01,4.271685E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +250107,fr,1,3.750000E+00,9.789200E-01,4.271685E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.801758E+01,0.000000E+00 +250109,fr,1,3.750000E+00,9.789200E-01,4.271685E+01,2.750000E+01,Active Shallow Crust,2.400078E+02,5.801758E+01,0.000000E+00 +250113,fr,1,3.750000E+00,9.789200E-01,4.271685E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996735E+01,0.000000E+00 +250116,fr,3,3.850000E+00,9.789200E-01,4.271685E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +250128,fr,1,3.950000E+00,9.789200E-01,4.271685E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +250147,fr,1,4.050000E+00,9.789200E-01,4.271685E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +250149,fr,1,4.050000E+00,9.789200E-01,4.271685E+01,5.000000E+00,Active Shallow Crust,1.288911E+02,8.999375E+01,0.000000E+00 +250152,fr,2,4.150000E+00,9.789200E-01,4.271685E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +250153,fr,1,4.150000E+00,9.789200E-01,4.271685E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +250155,fr,1,4.150000E+00,9.789200E-01,4.271685E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799720E+01,0.000000E+00 +250167,fr,1,4.250000E+00,9.789200E-01,4.271685E+01,5.000000E+00,Active Shallow Crust,2.400068E+02,5.799392E+01,0.000000E+00 +250168,fr,1,4.250000E+00,9.789200E-01,4.271685E+01,1.500000E+01,Active Shallow Crust,2.400068E+02,5.799392E+01,0.000000E+00 +250172,fr,1,4.250000E+00,9.789200E-01,4.271685E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +250177,fr,1,4.350000E+00,9.789200E-01,4.271685E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +250178,fr,2,4.350000E+00,9.789200E-01,4.271685E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +250182,fr,1,4.350000E+00,9.789200E-01,4.271685E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,-9.000000E+01 +250185,fr,1,4.350000E+00,9.789200E-01,4.271685E+01,5.000000E+00,Active Shallow Crust,1.288986E+02,8.998277E+01,0.000000E+00 +250224,fr,1,4.750000E+00,9.789200E-01,4.271685E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +250236,fr,1,4.850000E+00,9.789200E-01,4.271685E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +250257,fr,1,4.950000E+00,9.789200E-01,4.271685E+01,5.000000E+00,Active Shallow Crust,1.288912E+02,8.998979E+01,0.000000E+00 +250260,fr,1,5.050000E+00,9.789200E-01,4.271685E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +250275,fr,1,5.150000E+00,9.789200E-01,4.271685E+01,5.000000E+00,Active Shallow Crust,2.400176E+02,5.799956E+01,0.000000E+00 +250561,fr,1,3.550000E+00,1.466770E+00,4.759392E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +250562,fr,2,3.550000E+00,1.466770E+00,4.759392E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +250632,fr,1,4.150000E+00,1.466770E+00,4.759392E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +251088,fr,1,3.950000E+00,3.413390E+00,5.333669E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +251520,fr,1,3.550000E+00,4.838860E+00,4.822583E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999328E+01,0.000000E+00 +251569,fr,1,3.950000E+00,4.838860E+00,4.822583E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999152E+01,0.000000E+00 +252000,fr,3,3.550000E+00,6.369570E+00,4.714914E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999314E+01,0.000000E+00 +252003,fr,2,3.550000E+00,6.369570E+00,4.714914E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799855E+01,0.000000E+00 +252009,fr,3,3.550000E+00,6.369570E+00,4.714914E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.999657E+01,0.000000E+00 +252010,fr,1,3.550000E+00,6.369570E+00,4.714914E+01,1.500000E+01,Active Shallow Crust,1.288950E+02,8.999657E+01,0.000000E+00 +252012,fr,1,3.650000E+00,6.369570E+00,4.714914E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998778E+01,0.000000E+00 +252022,fr,1,3.650000E+00,6.369570E+00,4.714914E+01,1.500000E+01,Active Shallow Crust,1.289008E+02,8.996354E+01,0.000000E+00 +252030,fr,1,3.750000E+00,6.369570E+00,4.714914E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,-9.000000E+01 +252033,fr,1,3.750000E+00,6.369570E+00,4.714914E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.996750E+01,0.000000E+00 +252036,fr,1,3.850000E+00,6.369570E+00,4.714914E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +252039,fr,1,3.850000E+00,6.369570E+00,4.714914E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799734E+01,0.000000E+00 +252042,fr,2,3.850000E+00,6.369570E+00,4.714914E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,-9.000000E+01 +252045,fr,2,3.850000E+00,6.369570E+00,4.714914E+01,5.000000E+00,Active Shallow Crust,1.288945E+02,8.999515E+01,0.000000E+00 +252046,fr,1,3.850000E+00,6.369570E+00,4.714914E+01,1.500000E+01,Active Shallow Crust,1.288945E+02,8.999515E+01,0.000000E+00 +252057,fr,1,3.950000E+00,6.369570E+00,4.714914E+01,5.000000E+00,Active Shallow Crust,1.289012E+02,8.999351E+01,0.000000E+00 +252061,fr,1,4.050000E+00,6.369570E+00,4.714914E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +252072,fr,1,4.150000E+00,6.369570E+00,4.714914E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +252074,fr,1,4.150000E+00,6.369570E+00,4.714914E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +252099,fr,2,4.350000E+00,6.369570E+00,4.714914E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799591E+01,0.000000E+00 +252102,fr,1,4.350000E+00,6.369570E+00,4.714914E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,-9.000000E+01 +252156,fr,1,4.850000E+00,6.369570E+00,4.714914E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +252540,fr,1,4.050000E+00,4.260170E+00,4.890149E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +252588,fr,1,4.450000E+00,4.260170E+00,4.890149E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +252616,fr,1,4.650000E+00,4.260170E+00,4.890149E+01,1.500000E+01,Active Shallow Crust,2.400117E+02,5.799420E+01,0.000000E+00 +252649,fr,1,4.950000E+00,4.260170E+00,4.890149E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +252969,fr,1,3.550000E+00,-6.314600E-01,4.556662E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999382E+01,0.000000E+00 +252972,fr,1,3.650000E+00,-6.314600E-01,4.556662E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +252978,fr,1,3.650000E+00,-6.314600E-01,4.556662E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +252984,fr,1,3.750000E+00,-6.314600E-01,4.556662E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +252985,fr,1,3.750000E+00,-6.314600E-01,4.556662E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +253029,fr,1,4.050000E+00,-6.314600E-01,4.556662E+01,5.000000E+00,Active Shallow Crust,1.288906E+02,8.999380E+01,0.000000E+00 +253032,fr,1,4.150000E+00,-6.314600E-01,4.556662E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +253048,fr,1,4.250000E+00,-6.314600E-01,4.556662E+01,1.500000E+01,Active Shallow Crust,2.400074E+02,5.799404E+01,0.000000E+00 +253053,fr,1,4.250000E+00,-6.314600E-01,4.556662E+01,5.000000E+00,Active Shallow Crust,1.288945E+02,8.998091E+01,0.000000E+00 +253093,fr,1,4.650000E+00,-6.314600E-01,4.556662E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +253452,fr,1,3.650000E+00,5.509890E+00,4.957477E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998834E+01,0.000000E+00 +253470,fr,1,3.750000E+00,5.509890E+00,4.957477E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,-9.000000E+01 +253485,fr,1,3.850000E+00,5.509890E+00,4.957477E+01,5.000000E+00,Active Shallow Crust,1.288946E+02,8.999306E+01,0.000000E+00 +253933,fr,1,3.650000E+00,-3.598560E+00,4.937064E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999122E+01,0.000000E+00 +253946,fr,1,3.750000E+00,-3.598560E+00,4.937064E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +253956,fr,1,3.850000E+00,-3.598560E+00,4.937064E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +254400,fr,2,3.550000E+00,7.285810E+00,4.385028E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999273E+01,0.000000E+00 +254402,fr,1,3.550000E+00,7.285810E+00,4.385028E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999273E+01,0.000000E+00 +254403,fr,1,3.550000E+00,7.285810E+00,4.385028E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799844E+01,0.000000E+00 +254412,fr,2,3.650000E+00,7.285810E+00,4.385028E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998704E+01,0.000000E+00 +254415,fr,4,3.650000E+00,7.285810E+00,4.385028E+01,5.000000E+00,Active Shallow Crust,2.400019E+02,5.801234E+01,0.000000E+00 +254436,fr,2,3.850000E+00,7.285810E+00,4.385028E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +254437,fr,1,3.850000E+00,7.285810E+00,4.385028E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +254439,fr,1,3.850000E+00,7.285810E+00,4.385028E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799722E+01,0.000000E+00 +254441,fr,1,3.850000E+00,7.285810E+00,4.385028E+01,2.750000E+01,Active Shallow Crust,2.400105E+02,5.799722E+01,0.000000E+00 +254452,fr,1,3.950000E+00,7.285810E+00,4.385028E+01,1.500000E+01,Active Shallow Crust,2.400204E+02,5.800498E+01,0.000000E+00 +254460,fr,1,4.050000E+00,7.285810E+00,4.385028E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999182E+01,0.000000E+00 +254508,fr,1,4.450000E+00,7.285810E+00,4.385028E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +254521,fr,1,4.550000E+00,7.285810E+00,4.385028E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999080E+01,0.000000E+00 +254544,fr,1,4.750000E+00,7.285810E+00,4.385028E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999087E+01,0.000000E+00 +254629,fr,1,5.450000E+00,7.285810E+00,4.385028E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +254880,fr,1,3.550000E+00,3.887020E+00,4.732564E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +254886,fr,1,3.550000E+00,3.887020E+00,4.732564E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,-9.000000E+01 +254893,fr,1,3.650000E+00,3.887020E+00,4.732564E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +255036,fr,1,4.850000E+00,3.887020E+00,4.732564E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +255360,fr,3,3.550000E+00,-2.634490E+00,4.756317E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +255361,fr,1,3.550000E+00,-2.634490E+00,4.756317E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +255362,fr,1,3.550000E+00,-2.634490E+00,4.756317E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +255363,fr,1,3.550000E+00,-2.634490E+00,4.756317E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799765E+01,0.000000E+00 +255384,fr,3,3.750000E+00,-2.634490E+00,4.756317E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998919E+01,0.000000E+00 +255385,fr,1,3.750000E+00,-2.634490E+00,4.756317E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998919E+01,0.000000E+00 +255397,fr,2,3.850000E+00,-2.634490E+00,4.756317E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +255398,fr,1,3.850000E+00,-2.634490E+00,4.756317E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +255408,fr,1,3.950000E+00,-2.634490E+00,4.756317E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +255410,fr,1,3.950000E+00,-2.634490E+00,4.756317E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +255411,fr,1,3.950000E+00,-2.634490E+00,4.756317E+01,5.000000E+00,Active Shallow Crust,2.400204E+02,5.800480E+01,0.000000E+00 +255432,fr,1,4.150000E+00,-2.634490E+00,4.756317E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +255444,fr,1,4.250000E+00,-2.634490E+00,4.756317E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +255445,fr,1,4.250000E+00,-2.634490E+00,4.756317E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +255450,fr,1,4.250000E+00,-2.634490E+00,4.756317E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,-9.000000E+01 +255458,fr,1,4.350000E+00,-2.634490E+00,4.756317E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +255480,fr,2,4.550000E+00,-2.634490E+00,4.756317E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +255481,fr,1,4.550000E+00,-2.634490E+00,4.756317E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +255549,fr,1,5.050000E+00,-2.634490E+00,4.756317E+01,5.000000E+00,Active Shallow Crust,1.288850E+02,8.999062E+01,0.000000E+00 +255840,fr,1,3.550000E+00,3.601020E+00,4.416306E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998915E+01,0.000000E+00 +255886,fr,1,3.850000E+00,3.601020E+00,4.416306E+01,1.500000E+01,Active Shallow Crust,1.288959E+02,8.999360E+01,0.000000E+00 +255900,fr,1,4.050000E+00,3.601020E+00,4.416306E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +255901,fr,1,4.050000E+00,3.601020E+00,4.416306E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +255924,fr,1,4.250000E+00,3.601020E+00,4.416306E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +255949,fr,1,4.450000E+00,3.601020E+00,4.416306E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +255960,fr,1,4.550000E+00,3.601020E+00,4.416306E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +256320,fr,4,3.550000E+00,1.345340E+00,4.234530E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +256321,fr,1,3.550000E+00,1.345340E+00,4.234530E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +256323,fr,2,3.550000E+00,1.345340E+00,4.234530E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799823E+01,0.000000E+00 +256324,fr,1,3.550000E+00,1.345340E+00,4.234530E+01,1.500000E+01,Active Shallow Crust,2.400117E+02,5.799823E+01,0.000000E+00 +256327,fr,1,3.550000E+00,1.345340E+00,4.234530E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999058E+01,-9.000000E+01 +256329,fr,1,3.550000E+00,1.345340E+00,4.234530E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999348E+01,0.000000E+00 +256332,fr,1,3.650000E+00,1.345340E+00,4.234530E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +256333,fr,1,3.650000E+00,1.345340E+00,4.234530E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +256341,fr,1,3.650000E+00,1.345340E+00,4.234530E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.996358E+01,0.000000E+00 +256344,fr,5,3.750000E+00,1.345340E+00,4.234530E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +256347,fr,1,3.750000E+00,1.345340E+00,4.234530E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.801761E+01,0.000000E+00 +256348,fr,1,3.750000E+00,1.345340E+00,4.234530E+01,1.500000E+01,Active Shallow Crust,2.400078E+02,5.801761E+01,0.000000E+00 +256356,fr,5,3.850000E+00,1.345340E+00,4.234530E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +256357,fr,2,3.850000E+00,1.345340E+00,4.234530E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +256362,fr,1,3.850000E+00,1.345340E+00,4.234530E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999066E+01,-9.000000E+01 +256368,fr,4,3.950000E+00,1.345340E+00,4.234530E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +256369,fr,1,3.950000E+00,1.345340E+00,4.234530E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +256380,fr,2,4.050000E+00,1.345340E+00,4.234530E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +256392,fr,2,4.150000E+00,1.345340E+00,4.234530E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +256406,fr,1,4.250000E+00,1.345340E+00,4.234530E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +256408,fr,1,4.250000E+00,1.345340E+00,4.234530E+01,1.500000E+01,Active Shallow Crust,2.400068E+02,5.799389E+01,0.000000E+00 +256416,fr,1,4.350000E+00,1.345340E+00,4.234530E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +256418,fr,1,4.350000E+00,1.345340E+00,4.234530E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +256419,fr,1,4.350000E+00,1.345340E+00,4.234530E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799568E+01,0.000000E+00 +256437,fr,1,4.450000E+00,1.345340E+00,4.234530E+01,5.000000E+00,Active Shallow Crust,1.288930E+02,8.999372E+01,0.000000E+00 +256452,fr,1,4.650000E+00,1.345340E+00,4.234530E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +256470,fr,1,4.750000E+00,1.345340E+00,4.234530E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +256476,fr,1,4.850000E+00,1.345340E+00,4.234530E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +256533,fr,1,5.250000E+00,1.345340E+00,4.234530E+01,5.000000E+00,Active Shallow Crust,1.288854E+02,8.998704E+01,0.000000E+00 +256728,fr,1,6.950000E+00,1.345361E+00,4.234530E+01,1.509976E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +256821,fr,1,3.650000E+00,4.445430E+00,4.791667E+01,5.000000E+00,Active Shallow Crust,1.289010E+02,8.996294E+01,0.000000E+00 +256824,fr,1,3.750000E+00,4.445430E+00,4.791667E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +256980,fr,1,5.050000E+00,4.445430E+00,4.791667E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +257298,fr,1,3.650000E+00,-2.281570E+00,4.664339E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,-9.000000E+01 +257328,fr,1,3.950000E+00,-2.281570E+00,4.664339E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998908E+01,0.000000E+00 +257353,fr,1,4.150000E+00,-2.281570E+00,4.664339E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +257796,fr,1,3.850000E+00,3.369310E+00,4.132397E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998928E+01,0.000000E+00 +257844,fr,1,4.250000E+00,3.369310E+00,4.132397E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +258348,fr,1,4.450000E+00,-5.913170E+00,4.900716E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999061E+01,0.000000E+00 +258720,fr,1,3.550000E+00,-3.814930E+00,4.894633E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +258721,fr,1,3.550000E+00,-3.814930E+00,4.894633E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +258739,fr,1,3.650000E+00,-3.814930E+00,4.894633E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999104E+01,-9.000000E+01 +258755,fr,1,3.750000E+00,-3.814930E+00,4.894633E+01,2.750000E+01,Active Shallow Crust,1.288966E+02,8.996729E+01,0.000000E+00 +258758,fr,1,3.850000E+00,-3.814930E+00,4.894633E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +258768,fr,2,3.950000E+00,-3.814930E+00,4.894633E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +258810,fr,2,4.250000E+00,-3.814930E+00,4.894633E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,-9.000000E+01 +258852,fr,1,4.650000E+00,-3.814930E+00,4.894633E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +258978,fr,1,5.650000E+00,-3.814930E+00,4.894633E+01,5.000000E+00,Active Shallow Crust,3.599998E+02,8.999014E+01,-9.000000E+01 +259212,fr,1,3.650000E+00,5.282370E+00,4.891785E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998819E+01,0.000000E+00 +259405,fr,1,5.250000E+00,5.282370E+00,4.891785E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +259680,fr,5,3.550000E+00,-1.709110E+00,4.257761E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +259681,fr,2,3.550000E+00,-1.709110E+00,4.257761E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +259684,fr,1,3.550000E+00,-1.709110E+00,4.257761E+01,1.500000E+01,Active Shallow Crust,2.400117E+02,5.799807E+01,0.000000E+00 +259686,fr,1,3.550000E+00,-1.709110E+00,4.257761E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999061E+01,-9.000000E+01 +259689,fr,1,3.550000E+00,-1.709110E+00,4.257761E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999443E+01,0.000000E+00 +259692,fr,1,3.650000E+00,-1.709110E+00,4.257761E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +259694,fr,1,3.650000E+00,-1.709110E+00,4.257761E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +259708,fr,1,3.750000E+00,-1.709110E+00,4.257761E+01,1.500000E+01,Active Shallow Crust,2.400078E+02,5.801769E+01,0.000000E+00 +259709,fr,1,3.750000E+00,-1.709110E+00,4.257761E+01,2.750000E+01,Active Shallow Crust,2.400078E+02,5.801769E+01,0.000000E+00 +259716,fr,1,3.850000E+00,-1.709110E+00,4.257761E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +259717,fr,2,3.850000E+00,-1.709110E+00,4.257761E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +259725,fr,2,3.850000E+00,-1.709110E+00,4.257761E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999409E+01,0.000000E+00 +259728,fr,1,3.950000E+00,-1.709110E+00,4.257761E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +259730,fr,1,3.950000E+00,-1.709110E+00,4.257761E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +259735,fr,1,3.950000E+00,-1.709110E+00,4.257761E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,-9.000000E+01 +259741,fr,2,4.050000E+00,-1.709110E+00,4.257761E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +259743,fr,1,4.050000E+00,-1.709110E+00,4.257761E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.800559E+01,0.000000E+00 +259744,fr,1,4.050000E+00,-1.709110E+00,4.257761E+01,1.500000E+01,Active Shallow Crust,2.400054E+02,5.800556E+01,0.000000E+00 +259919,fr,1,5.450000E+00,-1.709110E+00,4.257761E+01,2.750000E+01,Active Shallow Crust,1.288814E+02,8.999220E+01,0.000000E+00 +259933,fr,1,5.650000E+00,-1.709110E+00,4.257761E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +260160,fr,1,3.550000E+00,5.490020E+00,4.639078E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999304E+01,0.000000E+00 +260175,fr,1,3.650000E+00,5.490020E+00,4.639078E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801287E+01,0.000000E+00 +260181,fr,1,3.650000E+00,5.490020E+00,4.639078E+01,5.000000E+00,Active Shallow Crust,1.289009E+02,8.996352E+01,0.000000E+00 +260184,fr,1,3.750000E+00,5.490020E+00,4.639078E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +260187,fr,1,3.750000E+00,5.490020E+00,4.639078E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801709E+01,0.000000E+00 +260188,fr,1,3.750000E+00,5.490020E+00,4.639078E+01,1.500000E+01,Active Shallow Crust,2.400080E+02,5.801709E+01,0.000000E+00 +260198,fr,1,3.850000E+00,5.490020E+00,4.639078E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +260208,fr,1,3.950000E+00,5.490020E+00,4.639078E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +260220,fr,1,4.050000E+00,5.490020E+00,4.639078E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998827E+01,0.000000E+00 +260232,fr,1,4.150000E+00,5.490020E+00,4.639078E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +260640,fr,1,3.550000E+00,5.226900E+00,4.465635E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999283E+01,0.000000E+00 +260641,fr,1,3.550000E+00,5.226900E+00,4.465635E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999283E+01,0.000000E+00 +260642,fr,1,3.550000E+00,5.226900E+00,4.465635E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999283E+01,0.000000E+00 +260653,fr,1,3.650000E+00,5.226900E+00,4.465635E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998721E+01,0.000000E+00 +260673,fr,1,3.750000E+00,5.226900E+00,4.465635E+01,5.000000E+00,Active Shallow Crust,1.288978E+02,8.996684E+01,0.000000E+00 +260676,fr,1,3.850000E+00,5.226900E+00,4.465635E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +260678,fr,1,3.850000E+00,5.226900E+00,4.465635E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +260689,fr,1,3.950000E+00,5.226900E+00,4.465635E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999095E+01,0.000000E+00 +260697,fr,1,3.950000E+00,5.226900E+00,4.465635E+01,5.000000E+00,Active Shallow Crust,1.288998E+02,8.999321E+01,0.000000E+00 +260700,fr,1,4.050000E+00,5.226900E+00,4.465635E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999194E+01,0.000000E+00 +260706,fr,1,4.050000E+00,5.226900E+00,4.465635E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999184E+01,-9.000000E+01 +260724,fr,2,4.250000E+00,5.226900E+00,4.465635E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +260726,fr,1,4.250000E+00,5.226900E+00,4.465635E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +260748,fr,1,4.450000E+00,5.226900E+00,4.465635E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +260749,fr,2,4.450000E+00,5.226900E+00,4.465635E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +260760,fr,1,4.550000E+00,5.226900E+00,4.465635E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +260772,fr,1,4.650000E+00,5.226900E+00,4.465635E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +260809,fr,1,4.950000E+00,5.226900E+00,4.465635E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +261120,fr,4,3.550000E+00,6.901830E+00,4.734244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999316E+01,0.000000E+00 +261121,fr,3,3.550000E+00,6.901830E+00,4.734244E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999316E+01,0.000000E+00 +261123,fr,1,3.550000E+00,6.901830E+00,4.734244E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799881E+01,0.000000E+00 +261132,fr,3,3.650000E+00,6.901830E+00,4.734244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998782E+01,0.000000E+00 +261133,fr,1,3.650000E+00,6.901830E+00,4.734244E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998782E+01,0.000000E+00 +261135,fr,1,3.650000E+00,6.901830E+00,4.734244E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801368E+01,0.000000E+00 +261144,fr,1,3.750000E+00,6.901830E+00,4.734244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +261150,fr,1,3.750000E+00,6.901830E+00,4.734244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998902E+01,-9.000000E+01 +261156,fr,1,3.850000E+00,6.901830E+00,4.734244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +261158,fr,1,3.850000E+00,6.901830E+00,4.734244E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +261159,fr,1,3.850000E+00,6.901830E+00,4.734244E+01,5.000000E+00,Active Shallow Crust,2.400103E+02,5.799823E+01,0.000000E+00 +261165,fr,1,3.850000E+00,6.901830E+00,4.734244E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999274E+01,0.000000E+00 +261168,fr,2,3.950000E+00,6.901830E+00,4.734244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999138E+01,0.000000E+00 +261180,fr,4,4.050000E+00,6.901830E+00,4.734244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998847E+01,0.000000E+00 +261181,fr,1,4.050000E+00,6.901830E+00,4.734244E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998847E+01,0.000000E+00 +261213,fr,2,4.250000E+00,6.901830E+00,4.734244E+01,5.000000E+00,Active Shallow Crust,1.288940E+02,8.998098E+01,0.000000E+00 +261225,fr,1,4.350000E+00,6.901830E+00,4.734244E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.998305E+01,0.000000E+00 +261228,fr,1,4.450000E+00,6.901830E+00,4.734244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +261229,fr,2,4.450000E+00,6.901830E+00,4.734244E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +261240,fr,1,4.550000E+00,6.901830E+00,4.734244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +261292,fr,1,4.950000E+00,6.901830E+00,4.734244E+01,1.500000E+01,Active Shallow Crust,2.400124E+02,5.800436E+01,0.000000E+00 +261342,fr,1,5.350000E+00,6.901830E+00,4.734244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,-9.000000E+01 +261600,fr,2,3.550000E+00,7.612280E+00,4.870056E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998669E+01,0.000000E+00 +261609,fr,1,3.550000E+00,7.612280E+00,4.870056E+01,5.000000E+00,Active Shallow Crust,1.288949E+02,8.999667E+01,0.000000E+00 +261612,fr,3,3.650000E+00,7.612280E+00,4.870056E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998814E+01,0.000000E+00 +261615,fr,1,3.650000E+00,7.612280E+00,4.870056E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801380E+01,0.000000E+00 +261616,fr,1,3.650000E+00,7.612280E+00,4.870056E+01,1.500000E+01,Active Shallow Crust,2.400010E+02,5.801380E+01,0.000000E+00 +261636,fr,3,3.850000E+00,7.612280E+00,4.870056E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +261639,fr,1,3.850000E+00,7.612280E+00,4.870056E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799780E+01,0.000000E+00 +261647,fr,1,3.850000E+00,7.612280E+00,4.870056E+01,2.750000E+01,Active Shallow Crust,1.288964E+02,8.999294E+01,0.000000E+00 +261648,fr,1,3.950000E+00,7.612280E+00,4.870056E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999160E+01,0.000000E+00 +261654,fr,1,3.950000E+00,7.612280E+00,4.870056E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999150E+01,-9.000000E+01 +261660,fr,2,4.050000E+00,7.612280E+00,4.870056E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998877E+01,0.000000E+00 +261672,fr,1,4.150000E+00,7.612280E+00,4.870056E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +261673,fr,1,4.150000E+00,7.612280E+00,4.870056E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +261693,fr,1,4.250000E+00,7.612280E+00,4.870056E+01,5.000000E+00,Active Shallow Crust,1.288938E+02,8.998103E+01,0.000000E+00 +261708,fr,1,4.450000E+00,7.612280E+00,4.870056E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +261745,fr,1,4.750000E+00,7.612280E+00,4.870056E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +261756,fr,1,4.850000E+00,7.612280E+00,4.870056E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +262092,fr,1,3.650000E+00,4.140970E+00,4.410983E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998709E+01,0.000000E+00 +262159,fr,1,4.150000E+00,4.140970E+00,4.410983E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998899E+01,-9.000000E+01 +263040,fr,2,3.550000E+00,2.406940E+00,4.158124E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +263041,fr,2,3.550000E+00,2.406940E+00,4.158124E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +263044,fr,1,3.550000E+00,2.406940E+00,4.158124E+01,1.500000E+01,Active Shallow Crust,2.400116E+02,5.799773E+01,0.000000E+00 +263046,fr,1,3.550000E+00,2.406940E+00,4.158124E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998856E+01,-9.000000E+01 +263047,fr,1,3.550000E+00,2.406940E+00,4.158124E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998856E+01,-9.000000E+01 +263048,fr,1,3.550000E+00,2.406940E+00,4.158124E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998856E+01,-9.000000E+01 +263049,fr,1,3.550000E+00,2.406940E+00,4.158124E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.999245E+01,0.000000E+00 +263052,fr,3,3.650000E+00,2.406940E+00,4.158124E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +263053,fr,1,3.650000E+00,2.406940E+00,4.158124E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +263056,fr,1,3.650000E+00,2.406940E+00,4.158124E+01,1.500000E+01,Active Shallow Crust,2.400007E+02,5.801340E+01,0.000000E+00 +263058,fr,1,3.650000E+00,2.406940E+00,4.158124E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,-9.000000E+01 +263059,fr,1,3.650000E+00,2.406940E+00,4.158124E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,-9.000000E+01 +263064,fr,5,3.750000E+00,2.406940E+00,4.158124E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999101E+01,0.000000E+00 +263065,fr,1,3.750000E+00,2.406940E+00,4.158124E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999101E+01,0.000000E+00 +263076,fr,2,3.850000E+00,2.406940E+00,4.158124E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +263079,fr,1,3.850000E+00,2.406940E+00,4.158124E+01,5.000000E+00,Active Shallow Crust,2.400099E+02,5.799799E+01,0.000000E+00 +263082,fr,1,3.850000E+00,2.406940E+00,4.158124E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,-9.000000E+01 +263083,fr,1,3.850000E+00,2.406940E+00,4.158124E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,-9.000000E+01 +263088,fr,1,3.950000E+00,2.406940E+00,4.158124E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +263095,fr,1,3.950000E+00,2.406940E+00,4.158124E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,-9.000000E+01 +263100,fr,2,4.050000E+00,2.406940E+00,4.158124E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +263103,fr,1,4.050000E+00,2.406940E+00,4.158124E+01,5.000000E+00,Active Shallow Crust,2.400055E+02,5.800555E+01,0.000000E+00 +263106,fr,1,4.050000E+00,2.406940E+00,4.158124E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,-9.000000E+01 +263107,fr,1,4.050000E+00,2.406940E+00,4.158124E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,-9.000000E+01 +263111,fr,1,4.050000E+00,2.406940E+00,4.158124E+01,2.750000E+01,Active Shallow Crust,1.288907E+02,8.999364E+01,0.000000E+00 +263112,fr,1,4.150000E+00,2.406940E+00,4.158124E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +263113,fr,1,4.150000E+00,2.406940E+00,4.158124E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +263121,fr,1,4.150000E+00,2.406940E+00,4.158124E+01,5.000000E+00,Active Shallow Crust,1.288985E+02,8.999339E+01,0.000000E+00 +263124,fr,4,4.250000E+00,2.406940E+00,4.158124E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +263125,fr,1,4.250000E+00,2.406940E+00,4.158124E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +263132,fr,1,4.250000E+00,2.406940E+00,4.158124E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,-9.000000E+01 +263136,fr,2,4.350000E+00,2.406940E+00,4.158124E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +263142,fr,1,4.350000E+00,2.406940E+00,4.158124E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,-9.000000E+01 +263145,fr,1,4.350000E+00,2.406940E+00,4.158124E+01,5.000000E+00,Active Shallow Crust,1.288987E+02,8.998258E+01,0.000000E+00 +263148,fr,1,4.450000E+00,2.406940E+00,4.158124E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +263154,fr,1,4.450000E+00,2.406940E+00,4.158124E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,-9.000000E+01 +263155,fr,1,4.450000E+00,2.406940E+00,4.158124E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,-9.000000E+01 +263161,fr,1,4.550000E+00,2.406940E+00,4.158124E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +263166,fr,1,4.550000E+00,2.406940E+00,4.158124E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,-9.000000E+01 +263177,fr,1,4.650000E+00,2.406940E+00,4.158124E+01,2.750000E+01,Active Shallow Crust,2.400093E+02,5.799383E+01,0.000000E+00 +263198,fr,1,4.850000E+00,2.406940E+00,4.158124E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +263203,fr,1,4.850000E+00,2.406940E+00,4.158124E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,-9.000000E+01 +263208,fr,2,4.950000E+00,2.406940E+00,4.158124E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +263209,fr,1,4.950000E+00,2.406940E+00,4.158124E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +263244,fr,1,5.250000E+00,2.406940E+00,4.158124E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +263268,fr,1,5.450000E+00,2.406940E+00,4.158124E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +263373,fr,1,6.250000E+00,2.406938E+00,4.158124E+01,6.744814E+00,Active Shallow Crust,1.288574E+02,8.999042E+01,0.000000E+00 +263520,fr,2,3.550000E+00,-2.842040E+00,4.341687E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +263559,fr,1,3.850000E+00,-2.842040E+00,4.341687E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799790E+01,0.000000E+00 +263568,fr,1,3.950000E+00,-2.842040E+00,4.341687E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +263607,fr,1,4.250000E+00,-2.842040E+00,4.341687E+01,5.000000E+00,Active Shallow Crust,2.400072E+02,5.799393E+01,0.000000E+00 +263664,fr,1,4.750000E+00,-2.842040E+00,4.341687E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +263676,fr,1,4.850000E+00,-2.842040E+00,4.341687E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +264012,fr,1,3.650000E+00,1.515290E+00,4.411713E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +264024,fr,1,3.750000E+00,1.515290E+00,4.411713E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +264121,fr,1,4.550000E+00,1.515290E+00,4.411713E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +264480,fr,2,3.550000E+00,5.611290E+00,5.094884E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998730E+01,0.000000E+00 +264481,fr,1,3.550000E+00,5.611290E+00,5.094884E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998730E+01,0.000000E+00 +264489,fr,1,3.550000E+00,5.611290E+00,5.094884E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999364E+01,0.000000E+00 +264492,fr,3,3.650000E+00,5.611290E+00,5.094884E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998868E+01,0.000000E+00 +264502,fr,1,3.650000E+00,5.611290E+00,5.094884E+01,1.500000E+01,Active Shallow Crust,1.289001E+02,8.996361E+01,0.000000E+00 +264504,fr,3,3.750000E+00,5.611290E+00,5.094884E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +264510,fr,1,3.750000E+00,5.611290E+00,5.094884E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,-9.000000E+01 +264516,fr,1,3.850000E+00,5.611290E+00,5.094884E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +264519,fr,1,3.850000E+00,5.611290E+00,5.094884E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799748E+01,0.000000E+00 +264520,fr,1,3.850000E+00,5.611290E+00,5.094884E+01,1.500000E+01,Active Shallow Crust,2.400120E+02,5.799748E+01,0.000000E+00 +264528,fr,2,3.950000E+00,5.611290E+00,5.094884E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999198E+01,0.000000E+00 +264540,fr,1,4.050000E+00,5.611290E+00,5.094884E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998928E+01,0.000000E+00 +264541,fr,2,4.050000E+00,5.611290E+00,5.094884E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998928E+01,0.000000E+00 +264542,fr,1,4.050000E+00,5.611290E+00,5.094884E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998928E+01,0.000000E+00 +264543,fr,1,4.050000E+00,5.611290E+00,5.094884E+01,5.000000E+00,Active Shallow Crust,2.400062E+02,5.800616E+01,0.000000E+00 +264552,fr,1,4.150000E+00,5.611290E+00,5.094884E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +264553,fr,1,4.150000E+00,5.611290E+00,5.094884E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +264568,fr,1,4.250000E+00,5.611290E+00,5.094884E+01,1.500000E+01,Active Shallow Crust,2.400086E+02,5.799448E+01,0.000000E+00 +264612,fr,1,4.650000E+00,5.611290E+00,5.094884E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +264711,fr,1,5.450000E+00,5.611290E+00,5.094884E+01,5.000000E+00,Active Shallow Crust,2.400328E+02,5.799928E+01,0.000000E+00 +264984,fr,1,3.750000E+00,6.003020E+00,4.235689E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998816E+01,0.000000E+00 +265440,fr,1,3.550000E+00,6.262700E+00,5.127657E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998738E+01,0.000000E+00 +265441,fr,1,3.550000E+00,6.262700E+00,5.127657E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998738E+01,0.000000E+00 +265444,fr,1,3.550000E+00,6.262700E+00,5.127657E+01,1.500000E+01,Active Shallow Crust,2.400119E+02,5.799844E+01,0.000000E+00 +265452,fr,1,3.650000E+00,6.262700E+00,5.127657E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +265464,fr,2,3.750000E+00,6.262700E+00,5.127657E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +265466,fr,1,3.750000E+00,6.262700E+00,5.127657E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +265485,fr,1,3.850000E+00,6.262700E+00,5.127657E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999330E+01,0.000000E+00 +265489,fr,1,3.950000E+00,6.262700E+00,5.127657E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998806E+01,0.000000E+00 +265494,fr,1,3.950000E+00,6.262700E+00,5.127657E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999195E+01,-9.000000E+01 +265503,fr,1,4.050000E+00,6.262700E+00,5.127657E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.800578E+01,0.000000E+00 +265548,fr,1,4.450000E+00,6.262700E+00,5.127657E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +265560,fr,1,4.550000E+00,6.262700E+00,5.127657E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +265566,fr,1,4.550000E+00,6.262700E+00,5.127657E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +265629,fr,1,5.050000E+00,6.262700E+00,5.127657E+01,5.000000E+00,Active Shallow Crust,1.288833E+02,8.999054E+01,0.000000E+00 +265695,fr,1,5.650000E+00,6.262700E+00,5.127657E+01,5.000000E+00,Active Shallow Crust,2.400428E+02,5.800023E+01,0.000000E+00 +266440,fr,1,3.850000E+00,2.482980E+00,5.231312E+01,1.500000E+01,Active Shallow Crust,2.400114E+02,5.799810E+01,0.000000E+00 +266882,fr,1,3.550000E+00,-3.575670E+00,4.774691E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +266916,fr,1,3.850000E+00,-3.575670E+00,4.774691E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +266919,fr,1,3.850000E+00,-3.575670E+00,4.774691E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799784E+01,0.000000E+00 +266940,fr,1,4.050000E+00,-3.575670E+00,4.774691E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +266952,fr,1,4.150000E+00,-3.575670E+00,4.774691E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +266964,fr,1,4.250000E+00,-3.575670E+00,4.774691E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +267129,fr,1,5.550000E+00,-3.575670E+00,4.774691E+01,5.000000E+00,Active Shallow Crust,1.288751E+02,8.998978E+01,0.000000E+00 +267360,fr,1,3.550000E+00,-4.986000E-01,4.544223E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +267361,fr,1,3.550000E+00,-4.986000E-01,4.544223E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +267373,fr,1,3.650000E+00,-4.986000E-01,4.544223E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +267438,fr,1,4.150000E+00,-4.986000E-01,4.544223E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +267458,fr,1,4.350000E+00,-4.986000E-01,4.544223E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +267504,fr,1,4.750000E+00,-4.986000E-01,4.544223E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +267853,fr,1,3.650000E+00,2.412860E+00,4.986778E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999131E+01,0.000000E+00 +267874,fr,1,3.750000E+00,2.412860E+00,4.986778E+01,1.500000E+01,Active Shallow Crust,1.288960E+02,8.996732E+01,0.000000E+00 +267933,fr,1,4.250000E+00,2.412860E+00,4.986778E+01,5.000000E+00,Active Shallow Crust,1.288938E+02,8.998107E+01,0.000000E+00 +267948,fr,1,4.450000E+00,2.412860E+00,4.986778E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +268008,fr,2,4.950000E+00,2.412860E+00,4.986778E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +268320,fr,1,3.550000E+00,2.803110E+00,4.613147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +268321,fr,1,3.550000E+00,2.803110E+00,4.613147E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +268332,fr,2,3.650000E+00,2.803110E+00,4.613147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +268344,fr,1,3.750000E+00,2.803110E+00,4.613147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998890E+01,0.000000E+00 +268354,fr,1,3.750000E+00,2.803110E+00,4.613147E+01,1.500000E+01,Active Shallow Crust,1.288968E+02,8.996748E+01,0.000000E+00 +268356,fr,1,3.850000E+00,2.803110E+00,4.613147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +268362,fr,1,3.850000E+00,2.803110E+00,4.613147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +268365,fr,1,3.850000E+00,2.803110E+00,4.613147E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999382E+01,0.000000E+00 +268369,fr,1,3.950000E+00,2.803110E+00,4.613147E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +268386,fr,1,4.050000E+00,2.803110E+00,4.613147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +268404,fr,1,4.250000E+00,2.803110E+00,4.613147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +268483,fr,1,4.850000E+00,2.803110E+00,4.613147E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998971E+01,-9.000000E+01 +268524,fr,1,5.250000E+00,2.803110E+00,4.613147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +268534,fr,1,5.250000E+00,2.803110E+00,4.613147E+01,1.500000E+01,Active Shallow Crust,1.288835E+02,8.998705E+01,0.000000E+00 +268825,fr,1,3.750000E+00,-2.774490E+00,4.356376E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +269263,fr,1,7.350000E+00,-2.774485E+00,4.356376E+01,1.750000E+01,Active Shallow Crust,3.600000E+02,8.998998E+01,-9.000000E+01 +269294,fr,1,3.650000E+00,-4.347500E+00,4.656960E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998764E+01,0.000000E+00 +269760,fr,2,3.550000E+00,2.807200E-01,5.056185E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +269763,fr,1,3.550000E+00,2.807200E-01,5.056185E+01,5.000000E+00,Active Shallow Crust,2.400126E+02,5.799820E+01,0.000000E+00 +269772,fr,3,3.650000E+00,2.807200E-01,5.056185E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +269844,fr,1,4.250000E+00,2.807200E-01,5.056185E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +269889,fr,1,4.550000E+00,2.807200E-01,5.056185E+01,5.000000E+00,Active Shallow Crust,1.288928E+02,8.998579E+01,0.000000E+00 +270243,fr,2,3.550000E+00,2.163300E-01,4.154865E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799809E+01,0.000000E+00 +270254,fr,1,3.650000E+00,2.163300E-01,4.154865E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +270289,fr,1,3.950000E+00,2.163300E-01,4.154865E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +270337,fr,1,4.350000E+00,2.163300E-01,4.154865E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +270720,fr,3,3.550000E+00,1.801010E+00,5.127106E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +270738,fr,2,3.650000E+00,1.801010E+00,5.127106E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +270763,fr,1,3.850000E+00,1.801010E+00,5.127106E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,-9.000000E+01 +270795,fr,1,4.150000E+00,1.801010E+00,5.127106E+01,5.000000E+00,Active Shallow Crust,2.400095E+02,5.799750E+01,0.000000E+00 +270804,fr,1,4.250000E+00,1.801010E+00,5.127106E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +270816,fr,2,4.350000E+00,1.801010E+00,5.127106E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +271212,fr,1,3.650000E+00,-1.116580E+00,4.538757E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +271223,fr,2,3.650000E+00,-1.116580E+00,4.538757E+01,2.750000E+01,Active Shallow Crust,1.289009E+02,8.996350E+01,0.000000E+00 +271299,fr,1,4.350000E+00,-1.116580E+00,4.538757E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799590E+01,0.000000E+00 +271309,fr,1,4.450000E+00,-1.116580E+00,4.538757E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +271825,fr,1,4.750000E+00,5.919040E+00,4.221161E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +272185,fr,1,3.750000E+00,4.097820E+00,4.061598E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998784E+01,0.000000E+00 +272197,fr,1,3.850000E+00,4.097820E+00,4.061598E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +272208,fr,1,3.950000E+00,4.097820E+00,4.061598E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +272214,fr,1,3.950000E+00,4.097820E+00,4.061598E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,-9.000000E+01 +273121,fr,1,3.550000E+00,9.650500E-01,4.121540E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +273129,fr,1,3.550000E+00,9.650500E-01,4.121540E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999384E+01,0.000000E+00 +273133,fr,1,3.650000E+00,9.650500E-01,4.121540E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +273138,fr,1,3.650000E+00,9.650500E-01,4.121540E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,-9.000000E+01 +273146,fr,1,3.750000E+00,9.650500E-01,4.121540E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +273160,fr,1,3.850000E+00,9.650500E-01,4.121540E+01,1.500000E+01,Active Shallow Crust,2.400103E+02,5.799766E+01,0.000000E+00 +273168,fr,1,3.950000E+00,9.650500E-01,4.121540E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +273204,fr,1,4.250000E+00,9.650500E-01,4.121540E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +273211,fr,1,4.250000E+00,9.650500E-01,4.121540E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +273217,fr,1,4.350000E+00,9.650500E-01,4.121540E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +273228,fr,1,4.450000E+00,9.650500E-01,4.121540E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +273264,fr,1,4.750000E+00,9.650500E-01,4.121540E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +273265,fr,1,4.750000E+00,9.650500E-01,4.121540E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +273289,fr,1,4.950000E+00,9.650500E-01,4.121540E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +273300,fr,1,5.050000E+00,9.650500E-01,4.121540E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +273624,fr,1,3.750000E+00,3.094230E+00,4.289276E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +273662,fr,1,4.050000E+00,3.094230E+00,4.289276E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +273674,fr,1,4.150000E+00,3.094230E+00,4.289276E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +273684,fr,1,4.250000E+00,3.094230E+00,4.289276E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +273696,fr,1,4.350000E+00,3.094230E+00,4.289276E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +273742,fr,1,4.650000E+00,3.094230E+00,4.289276E+01,1.500000E+01,Active Shallow Crust,1.288919E+02,8.998703E+01,0.000000E+00 +273768,fr,1,4.950000E+00,3.094230E+00,4.289276E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +273840,fr,1,5.550000E+00,3.094230E+00,4.289276E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +274081,fr,1,3.550000E+00,5.101000E-01,4.660034E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +274086,fr,1,3.550000E+00,5.101000E-01,4.660034E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,-9.000000E+01 +274088,fr,1,3.550000E+00,5.101000E-01,4.660034E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,-9.000000E+01 +274089,fr,1,3.550000E+00,5.101000E-01,4.660034E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999393E+01,0.000000E+00 +274092,fr,1,3.650000E+00,5.101000E-01,4.660034E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +274114,fr,1,3.750000E+00,5.101000E-01,4.660034E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.996737E+01,0.000000E+00 +274124,fr,1,3.850000E+00,5.101000E-01,4.660034E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +274132,fr,1,3.950000E+00,5.101000E-01,4.660034E+01,1.500000E+01,Active Shallow Crust,2.400199E+02,5.800488E+01,0.000000E+00 +274140,fr,1,4.050000E+00,5.101000E-01,4.660034E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +274144,fr,1,4.050000E+00,5.101000E-01,4.660034E+01,1.500000E+01,Active Shallow Crust,2.400060E+02,5.800581E+01,0.000000E+00 +274153,fr,1,4.150000E+00,5.101000E-01,4.660034E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +274156,fr,1,4.150000E+00,5.101000E-01,4.660034E+01,1.500000E+01,Active Shallow Crust,2.400085E+02,5.799733E+01,0.000000E+00 +274185,fr,1,4.350000E+00,5.101000E-01,4.660034E+01,5.000000E+00,Active Shallow Crust,1.288979E+02,8.998272E+01,0.000000E+00 +274560,fr,3,3.550000E+00,5.735590E+00,4.485489E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999285E+01,0.000000E+00 +274561,fr,1,3.550000E+00,5.735590E+00,4.485489E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999285E+01,0.000000E+00 +274572,fr,1,3.650000E+00,5.735590E+00,4.485489E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998726E+01,0.000000E+00 +274573,fr,1,3.650000E+00,5.735590E+00,4.485489E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998726E+01,0.000000E+00 +274582,fr,1,3.650000E+00,5.735590E+00,4.485489E+01,1.500000E+01,Active Shallow Crust,1.289013E+02,8.996349E+01,0.000000E+00 +274584,fr,1,3.750000E+00,5.735590E+00,4.485489E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998864E+01,0.000000E+00 +274597,fr,2,3.850000E+00,5.735590E+00,4.485489E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +274599,fr,1,3.850000E+00,5.735590E+00,4.485489E+01,5.000000E+00,Active Shallow Crust,2.400102E+02,5.799828E+01,0.000000E+00 +274623,fr,1,4.050000E+00,5.735590E+00,4.485489E+01,5.000000E+00,Active Shallow Crust,2.400059E+02,5.800558E+01,0.000000E+00 +274632,fr,1,4.150000E+00,5.735590E+00,4.485489E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +274634,fr,1,4.150000E+00,5.735590E+00,4.485489E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +274645,fr,1,4.250000E+00,5.735590E+00,4.485489E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +274646,fr,1,4.250000E+00,5.735590E+00,4.485489E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +274753,fr,1,5.150000E+00,5.735590E+00,4.485489E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +274782,fr,1,5.350000E+00,5.735590E+00,4.485489E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +275041,fr,2,3.550000E+00,6.439390E+00,4.375068E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999271E+01,0.000000E+00 +275065,fr,1,3.750000E+00,6.439390E+00,4.375068E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +275088,fr,1,3.950000E+00,6.439390E+00,4.375068E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +275090,fr,1,3.950000E+00,6.439390E+00,4.375068E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +275106,fr,1,4.050000E+00,6.439390E+00,4.375068E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999171E+01,-9.000000E+01 +275107,fr,1,4.050000E+00,6.439390E+00,4.375068E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999171E+01,-9.000000E+01 +275130,fr,1,4.250000E+00,6.439390E+00,4.375068E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,-9.000000E+01 +275196,fr,1,4.850000E+00,6.439390E+00,4.375068E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +275520,fr,2,3.550000E+00,1.246320E+00,4.287672E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +275529,fr,1,3.550000E+00,1.246320E+00,4.287672E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999354E+01,0.000000E+00 +275532,fr,1,3.650000E+00,1.246320E+00,4.287672E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +275533,fr,1,3.650000E+00,1.246320E+00,4.287672E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +275534,fr,1,3.650000E+00,1.246320E+00,4.287672E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +275544,fr,1,3.750000E+00,1.246320E+00,4.287672E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +275547,fr,1,3.750000E+00,1.246320E+00,4.287672E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801755E+01,0.000000E+00 +275556,fr,3,3.850000E+00,1.246320E+00,4.287672E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +275559,fr,2,3.850000E+00,1.246320E+00,4.287672E+01,5.000000E+00,Active Shallow Crust,2.400102E+02,5.799788E+01,0.000000E+00 +275569,fr,1,3.950000E+00,1.246320E+00,4.287672E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +275570,fr,1,3.950000E+00,1.246320E+00,4.287672E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +275575,fr,1,3.950000E+00,1.246320E+00,4.287672E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999057E+01,-9.000000E+01 +275592,fr,1,4.150000E+00,1.246320E+00,4.287672E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +275593,fr,1,4.150000E+00,1.246320E+00,4.287672E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +275604,fr,1,4.250000E+00,1.246320E+00,4.287672E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +275628,fr,1,4.450000E+00,1.246320E+00,4.287672E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +275658,fr,1,4.650000E+00,1.246320E+00,4.287672E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +275704,fr,1,5.050000E+00,1.246320E+00,4.287672E+01,1.500000E+01,Active Shallow Crust,2.400204E+02,5.799723E+01,0.000000E+00 +276519,fr,1,3.850000E+00,4.975970E+00,4.222434E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.799805E+01,0.000000E+00 +276543,fr,1,4.050000E+00,4.975970E+00,4.222434E+01,5.000000E+00,Active Shallow Crust,2.400058E+02,5.800507E+01,0.000000E+00 +276696,fr,1,5.350000E+00,4.975970E+00,4.222434E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +277440,fr,1,3.550000E+00,3.647470E+00,4.626105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +277447,fr,1,3.550000E+00,3.647470E+00,4.626105E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998942E+01,-9.000000E+01 +277452,fr,1,3.650000E+00,3.647470E+00,4.626105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +277460,fr,1,3.650000E+00,3.647470E+00,4.626105E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999057E+01,-9.000000E+01 +277464,fr,1,3.750000E+00,3.647470E+00,4.626105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998892E+01,0.000000E+00 +277476,fr,1,3.850000E+00,3.647470E+00,4.626105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +277486,fr,1,3.850000E+00,3.647470E+00,4.626105E+01,1.500000E+01,Active Shallow Crust,1.288958E+02,8.999383E+01,0.000000E+00 +277495,fr,1,3.950000E+00,3.647470E+00,4.626105E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999110E+01,-9.000000E+01 +277536,fr,1,4.350000E+00,3.647470E+00,4.626105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +277920,fr,1,3.550000E+00,8.164500E-01,4.967116E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +277932,fr,1,3.650000E+00,8.164500E-01,4.967116E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +277938,fr,1,3.650000E+00,8.164500E-01,4.967116E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,-9.000000E+01 +277947,fr,1,3.750000E+00,8.164500E-01,4.967116E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.801762E+01,0.000000E+00 +277950,fr,1,3.750000E+00,8.164500E-01,4.967116E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,-9.000000E+01 +277956,fr,2,3.850000E+00,8.164500E-01,4.967116E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +277957,fr,1,3.850000E+00,8.164500E-01,4.967116E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +277963,fr,1,3.850000E+00,8.164500E-01,4.967116E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +277968,fr,1,3.950000E+00,8.164500E-01,4.967116E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +278015,fr,1,4.250000E+00,8.164500E-01,4.967116E+01,2.750000E+01,Active Shallow Crust,1.288937E+02,8.998089E+01,0.000000E+00 +278016,fr,1,4.350000E+00,8.164500E-01,4.967116E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +278040,fr,1,4.550000E+00,8.164500E-01,4.967116E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +278065,fr,1,4.750000E+00,8.164500E-01,4.967116E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +278400,fr,1,3.550000E+00,-1.690990E+00,4.382303E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +278409,fr,1,3.550000E+00,-1.690990E+00,4.382303E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999364E+01,0.000000E+00 +278568,fr,1,4.950000E+00,-1.690990E+00,4.382303E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +278892,fr,3,3.650000E+00,-1.566000E+00,4.724953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +278895,fr,1,3.650000E+00,-1.566000E+00,4.724953E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801302E+01,0.000000E+00 +278896,fr,1,3.650000E+00,-1.566000E+00,4.724953E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801302E+01,0.000000E+00 +278900,fr,1,3.650000E+00,-1.566000E+00,4.724953E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,-9.000000E+01 +278904,fr,1,3.750000E+00,-1.566000E+00,4.724953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +278907,fr,1,3.750000E+00,-1.566000E+00,4.724953E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801738E+01,0.000000E+00 +278911,fr,1,3.750000E+00,-1.566000E+00,4.724953E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,-9.000000E+01 +278916,fr,4,3.850000E+00,-1.566000E+00,4.724953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +278917,fr,1,3.850000E+00,-1.566000E+00,4.724953E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +278926,fr,1,3.850000E+00,-1.566000E+00,4.724953E+01,1.500000E+01,Active Shallow Crust,1.288953E+02,8.999394E+01,0.000000E+00 +278928,fr,1,3.950000E+00,-1.566000E+00,4.724953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +278929,fr,1,3.950000E+00,-1.566000E+00,4.724953E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +278961,fr,1,4.150000E+00,-1.566000E+00,4.724953E+01,5.000000E+00,Active Shallow Crust,1.288974E+02,8.999357E+01,0.000000E+00 +278964,fr,2,4.250000E+00,-1.566000E+00,4.724953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +278976,fr,1,4.350000E+00,-1.566000E+00,4.724953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +278981,fr,1,4.350000E+00,-1.566000E+00,4.724953E+01,2.750000E+01,Active Shallow Crust,2.400086E+02,5.799595E+01,0.000000E+00 +278989,fr,2,4.450000E+00,-1.566000E+00,4.724953E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +279036,fr,1,4.850000E+00,-1.566000E+00,4.724953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +279039,fr,1,4.850000E+00,-1.566000E+00,4.724953E+01,5.000000E+00,Active Shallow Crust,2.400174E+02,5.800238E+01,0.000000E+00 +279300,fr,1,7.050000E+00,-1.565972E+00,4.724953E+01,1.694221E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +279360,fr,4,3.550000E+00,-2.278850E+00,4.705197E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +279363,fr,2,3.550000E+00,-2.278850E+00,4.705197E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799844E+01,0.000000E+00 +279372,fr,1,3.650000E+00,-2.278850E+00,4.705197E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +279374,fr,1,3.650000E+00,-2.278850E+00,4.705197E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +279384,fr,3,3.750000E+00,-2.278850E+00,4.705197E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998908E+01,0.000000E+00 +279386,fr,1,3.750000E+00,-2.278850E+00,4.705197E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998908E+01,0.000000E+00 +279390,fr,1,3.750000E+00,-2.278850E+00,4.705197E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998896E+01,-9.000000E+01 +279393,fr,1,3.750000E+00,-2.278850E+00,4.705197E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.996725E+01,0.000000E+00 +279396,fr,2,3.850000E+00,-2.278850E+00,4.705197E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +279408,fr,1,3.950000E+00,-2.278850E+00,4.705197E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +279409,fr,1,3.950000E+00,-2.278850E+00,4.705197E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +279427,fr,1,4.050000E+00,-2.278850E+00,4.705197E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,-9.000000E+01 +279432,fr,2,4.150000E+00,-2.278850E+00,4.705197E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +279450,fr,1,4.250000E+00,-2.278850E+00,4.705197E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,-9.000000E+01 +279468,fr,1,4.450000E+00,-2.278850E+00,4.705197E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +279600,fr,1,5.550000E+00,-2.278850E+00,4.705197E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +279858,fr,1,3.650000E+00,5.152780E+00,5.149840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998868E+01,-9.000000E+01 +280080,fr,1,5.550000E+00,5.152780E+00,5.149840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +280320,fr,2,3.550000E+00,-2.854100E+00,4.916497E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +280321,fr,1,3.550000E+00,-2.854100E+00,4.916497E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +280395,fr,1,4.150000E+00,-2.854100E+00,4.916497E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.799710E+01,0.000000E+00 +280404,fr,1,4.250000E+00,-2.854100E+00,4.916497E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +280536,fr,1,5.350000E+00,-2.854100E+00,4.916497E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +281299,fr,1,3.650000E+00,5.741990E+00,5.022671E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998837E+01,-9.000000E+01 +281308,fr,1,3.750000E+00,5.741990E+00,5.022671E+01,1.500000E+01,Active Shallow Crust,2.400080E+02,5.801757E+01,0.000000E+00 +281316,fr,2,3.850000E+00,5.741990E+00,5.022671E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999087E+01,0.000000E+00 +281328,fr,1,3.950000E+00,5.741990E+00,5.022671E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999186E+01,0.000000E+00 +281332,fr,1,3.950000E+00,5.741990E+00,5.022671E+01,1.500000E+01,Active Shallow Crust,2.400203E+02,5.800499E+01,0.000000E+00 +281333,fr,1,3.950000E+00,5.741990E+00,5.022671E+01,2.750000E+01,Active Shallow Crust,2.400203E+02,5.800499E+01,0.000000E+00 +281367,fr,1,4.250000E+00,5.741990E+00,5.022671E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.799397E+01,0.000000E+00 +281389,fr,1,4.450000E+00,5.741990E+00,5.022671E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +281394,fr,1,4.450000E+00,5.741990E+00,5.022671E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999074E+01,-9.000000E+01 +281400,fr,1,4.550000E+00,5.741990E+00,5.022671E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +281412,fr,1,4.650000E+00,5.741990E+00,5.022671E+01,5.000000E+00,Active Shallow Crust,3.599991E+02,8.999091E+01,0.000000E+00 +281460,fr,1,5.050000E+00,5.741990E+00,5.022671E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +281629,fr,1,6.450000E+00,5.741990E+00,5.022671E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +281760,fr,19,3.550000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +281761,fr,6,3.550000E+00,1.658000E-02,4.303551E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +281763,fr,3,3.550000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799811E+01,0.000000E+00 +281765,fr,1,3.550000E+00,1.658000E-02,4.303551E+01,2.750000E+01,Active Shallow Crust,2.400119E+02,5.799801E+01,0.000000E+00 +281766,fr,1,3.550000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +281767,fr,2,3.550000E+00,1.658000E-02,4.303551E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +281768,fr,2,3.550000E+00,1.658000E-02,4.303551E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +281769,fr,2,3.550000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999371E+01,0.000000E+00 +281770,fr,1,3.550000E+00,1.658000E-02,4.303551E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.999371E+01,0.000000E+00 +281772,fr,14,3.650000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +281773,fr,3,3.650000E+00,1.658000E-02,4.303551E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +281774,fr,2,3.650000E+00,1.658000E-02,4.303551E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +281775,fr,7,3.650000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801283E+01,0.000000E+00 +281779,fr,1,3.650000E+00,1.658000E-02,4.303551E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +281780,fr,1,3.650000E+00,1.658000E-02,4.303551E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +281781,fr,2,3.650000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996351E+01,0.000000E+00 +281784,fr,12,3.750000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +281785,fr,6,3.750000E+00,1.658000E-02,4.303551E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +281786,fr,2,3.750000E+00,1.658000E-02,4.303551E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +281788,fr,1,3.750000E+00,1.658000E-02,4.303551E+01,1.500000E+01,Active Shallow Crust,2.400080E+02,5.801751E+01,0.000000E+00 +281790,fr,1,3.750000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +281796,fr,5,3.850000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +281797,fr,3,3.850000E+00,1.658000E-02,4.303551E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +281798,fr,1,3.850000E+00,1.658000E-02,4.303551E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +281799,fr,1,3.850000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.799773E+01,0.000000E+00 +281800,fr,1,3.850000E+00,1.658000E-02,4.303551E+01,1.500000E+01,Active Shallow Crust,2.400104E+02,5.799773E+01,0.000000E+00 +281805,fr,1,3.850000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999372E+01,0.000000E+00 +281808,fr,7,3.950000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +281809,fr,3,3.950000E+00,1.658000E-02,4.303551E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +281810,fr,1,3.950000E+00,1.658000E-02,4.303551E+01,2.750000E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +281811,fr,3,3.950000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,2.400193E+02,5.800489E+01,0.000000E+00 +281814,fr,1,3.950000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +281817,fr,2,3.950000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.999372E+01,0.000000E+00 +281818,fr,1,3.950000E+00,1.658000E-02,4.303551E+01,1.500000E+01,Active Shallow Crust,1.289008E+02,8.999372E+01,0.000000E+00 +281820,fr,12,4.050000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +281821,fr,1,4.050000E+00,1.658000E-02,4.303551E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +281822,fr,1,4.050000E+00,1.658000E-02,4.303551E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +281829,fr,1,4.050000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,1.288910E+02,8.999372E+01,0.000000E+00 +281832,fr,2,4.150000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +281833,fr,3,4.150000E+00,1.658000E-02,4.303551E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +281836,fr,1,4.150000E+00,1.658000E-02,4.303551E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.799723E+01,0.000000E+00 +281838,fr,1,4.150000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +281841,fr,1,4.150000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,1.288981E+02,8.999372E+01,0.000000E+00 +281842,fr,1,4.150000E+00,1.658000E-02,4.303551E+01,1.500000E+01,Active Shallow Crust,1.288981E+02,8.999372E+01,0.000000E+00 +281844,fr,4,4.250000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +281847,fr,1,4.250000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.799395E+01,0.000000E+00 +281848,fr,1,4.250000E+00,1.658000E-02,4.303551E+01,1.500000E+01,Active Shallow Crust,2.400069E+02,5.799395E+01,0.000000E+00 +281850,fr,1,4.250000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +281851,fr,1,4.250000E+00,1.658000E-02,4.303551E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +281855,fr,2,4.250000E+00,1.658000E-02,4.303551E+01,2.750000E+01,Active Shallow Crust,1.288949E+02,8.998092E+01,0.000000E+00 +281856,fr,3,4.350000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +281857,fr,1,4.350000E+00,1.658000E-02,4.303551E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +281868,fr,3,4.450000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +281871,fr,1,4.450000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,2.400044E+02,5.799452E+01,0.000000E+00 +281877,fr,1,4.450000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,1.288929E+02,8.999372E+01,0.000000E+00 +281880,fr,1,4.550000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +281892,fr,4,4.650000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +281893,fr,1,4.650000E+00,1.658000E-02,4.303551E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +281894,fr,1,4.650000E+00,1.658000E-02,4.303551E+01,2.750000E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +281904,fr,2,4.750000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +281905,fr,1,4.750000E+00,1.658000E-02,4.303551E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +281907,fr,1,4.750000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,2.400063E+02,5.800427E+01,0.000000E+00 +281912,fr,1,4.750000E+00,1.658000E-02,4.303551E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +281916,fr,1,4.850000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +281925,fr,1,4.850000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,1.288937E+02,8.998901E+01,0.000000E+00 +281928,fr,2,4.950000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +281929,fr,2,4.950000E+00,1.658000E-02,4.303551E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +281931,fr,1,4.950000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.800419E+01,0.000000E+00 +281932,fr,1,4.950000E+00,1.658000E-02,4.303551E+01,1.500000E+01,Active Shallow Crust,2.400104E+02,5.800419E+01,0.000000E+00 +281937,fr,1,4.950000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,1.288911E+02,8.998979E+01,0.000000E+00 +281952,fr,1,5.150000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +281954,fr,1,5.150000E+00,1.658000E-02,4.303551E+01,2.750000E+01,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +281982,fr,1,5.350000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999001E+01,-9.000000E+01 +282000,fr,1,5.550000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +282003,fr,1,5.550000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,2.400261E+02,5.800194E+01,0.000000E+00 +282025,fr,1,5.750000E+00,1.658000E-02,4.303551E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +282048,fr,1,5.950000E+00,1.658000E-02,4.303551E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +282129,fr,1,6.550000E+00,1.657390E-02,4.303550E+01,9.527304E+00,Active Shallow Crust,1.288376E+02,8.999010E+01,0.000000E+00 +282240,fr,14,3.550000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999319E+01,0.000000E+00 +282241,fr,11,3.550000E+00,7.661700E+00,4.755872E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999319E+01,0.000000E+00 +282242,fr,4,3.550000E+00,7.661700E+00,4.755872E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999319E+01,0.000000E+00 +282243,fr,2,3.550000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,2.400126E+02,5.799782E+01,0.000000E+00 +282244,fr,1,3.550000E+00,7.661700E+00,4.755872E+01,1.500000E+01,Active Shallow Crust,2.400126E+02,5.799782E+01,0.000000E+00 +282245,fr,1,3.550000E+00,7.661700E+00,4.755872E+01,2.750000E+01,Active Shallow Crust,2.400126E+02,5.799772E+01,0.000000E+00 +282249,fr,1,3.550000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999319E+01,0.000000E+00 +282252,fr,15,3.650000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998787E+01,0.000000E+00 +282253,fr,6,3.650000E+00,7.661700E+00,4.755872E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998787E+01,0.000000E+00 +282255,fr,1,3.650000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801309E+01,0.000000E+00 +282258,fr,2,3.650000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998773E+01,-9.000000E+01 +282261,fr,3,3.650000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.996355E+01,0.000000E+00 +282262,fr,2,3.650000E+00,7.661700E+00,4.755872E+01,1.500000E+01,Active Shallow Crust,1.289002E+02,8.996355E+01,0.000000E+00 +282264,fr,10,3.750000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998919E+01,0.000000E+00 +282265,fr,3,3.750000E+00,7.661700E+00,4.755872E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998919E+01,0.000000E+00 +282266,fr,1,3.750000E+00,7.661700E+00,4.755872E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998919E+01,0.000000E+00 +282267,fr,4,3.750000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.801752E+01,0.000000E+00 +282268,fr,1,3.750000E+00,7.661700E+00,4.755872E+01,1.500000E+01,Active Shallow Crust,2.400086E+02,5.801752E+01,0.000000E+00 +282270,fr,1,3.750000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,-9.000000E+01 +282273,fr,1,3.750000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996751E+01,0.000000E+00 +282276,fr,8,3.850000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +282277,fr,6,3.850000E+00,7.661700E+00,4.755872E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +282278,fr,4,3.850000E+00,7.661700E+00,4.755872E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +282279,fr,1,3.850000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799707E+01,0.000000E+00 +282281,fr,1,3.850000E+00,7.661700E+00,4.755872E+01,2.750000E+01,Active Shallow Crust,2.400109E+02,5.799707E+01,0.000000E+00 +282282,fr,1,3.850000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,-9.000000E+01 +282285,fr,1,3.850000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999277E+01,0.000000E+00 +282288,fr,6,3.950000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999141E+01,0.000000E+00 +282289,fr,4,3.950000E+00,7.661700E+00,4.755872E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999141E+01,0.000000E+00 +282290,fr,1,3.950000E+00,7.661700E+00,4.755872E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999141E+01,0.000000E+00 +282291,fr,6,3.950000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,2.400204E+02,5.800517E+01,0.000000E+00 +282292,fr,1,3.950000E+00,7.661700E+00,4.755872E+01,1.500000E+01,Active Shallow Crust,2.400204E+02,5.800517E+01,0.000000E+00 +282293,fr,1,3.950000E+00,7.661700E+00,4.755872E+01,2.750000E+01,Active Shallow Crust,2.400204E+02,5.800517E+01,0.000000E+00 +282294,fr,2,3.950000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999131E+01,-9.000000E+01 +282296,fr,1,3.950000E+00,7.661700E+00,4.755872E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999131E+01,-9.000000E+01 +282300,fr,7,4.050000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998852E+01,0.000000E+00 +282301,fr,1,4.050000E+00,7.661700E+00,4.755872E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998852E+01,0.000000E+00 +282302,fr,1,4.050000E+00,7.661700E+00,4.755872E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998852E+01,0.000000E+00 +282303,fr,2,4.050000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,2.400063E+02,5.800579E+01,0.000000E+00 +282306,fr,1,4.050000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998839E+01,-9.000000E+01 +282309,fr,3,4.050000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,1.288901E+02,8.999426E+01,0.000000E+00 +282312,fr,7,4.150000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +282313,fr,4,4.150000E+00,7.661700E+00,4.755872E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +282315,fr,1,4.150000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.799728E+01,0.000000E+00 +282316,fr,1,4.150000E+00,7.661700E+00,4.755872E+01,1.500000E+01,Active Shallow Crust,2.400086E+02,5.799730E+01,0.000000E+00 +282320,fr,1,4.150000E+00,7.661700E+00,4.755872E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +282321,fr,2,4.150000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.999489E+01,0.000000E+00 +282324,fr,6,4.250000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +282326,fr,2,4.250000E+00,7.661700E+00,4.755872E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +282327,fr,1,4.250000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.799474E+01,0.000000E+00 +282331,fr,1,4.250000E+00,7.661700E+00,4.755872E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999078E+01,-9.000000E+01 +282333,fr,2,4.250000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,1.288943E+02,8.998099E+01,0.000000E+00 +282334,fr,1,4.250000E+00,7.661700E+00,4.755872E+01,1.500000E+01,Active Shallow Crust,1.288943E+02,8.998099E+01,0.000000E+00 +282336,fr,4,4.350000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +282338,fr,1,4.350000E+00,7.661700E+00,4.755872E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +282339,fr,1,4.350000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.799572E+01,0.000000E+00 +282343,fr,1,4.350000E+00,7.661700E+00,4.755872E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998904E+01,-9.000000E+01 +282345,fr,2,4.350000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,1.288978E+02,8.998257E+01,0.000000E+00 +282348,fr,5,4.450000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +282350,fr,1,4.450000E+00,7.661700E+00,4.755872E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +282351,fr,1,4.450000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,2.400058E+02,5.799459E+01,0.000000E+00 +282358,fr,1,4.450000E+00,7.661700E+00,4.755872E+01,1.500000E+01,Active Shallow Crust,1.288921E+02,8.999397E+01,0.000000E+00 +282360,fr,4,4.550000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +282361,fr,2,4.550000E+00,7.661700E+00,4.755872E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +282367,fr,1,4.550000E+00,7.661700E+00,4.755872E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998911E+01,-9.000000E+01 +282370,fr,1,4.550000E+00,7.661700E+00,4.755872E+01,1.500000E+01,Active Shallow Crust,1.288937E+02,8.998570E+01,0.000000E+00 +282371,fr,1,4.550000E+00,7.661700E+00,4.755872E+01,2.750000E+01,Active Shallow Crust,1.288937E+02,8.998570E+01,0.000000E+00 +282373,fr,2,4.650000E+00,7.661700E+00,4.755872E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +282379,fr,1,4.650000E+00,7.661700E+00,4.755872E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,-9.000000E+01 +282384,fr,1,4.750000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +282387,fr,1,4.750000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.800449E+01,0.000000E+00 +282396,fr,4,4.850000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +282407,fr,1,4.850000E+00,7.661700E+00,4.755872E+01,2.750000E+01,Active Shallow Crust,1.288920E+02,8.998911E+01,0.000000E+00 +282408,fr,1,4.950000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +282432,fr,1,5.150000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +282445,fr,1,5.250000E+00,7.661700E+00,4.755872E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +282469,fr,1,5.450000E+00,7.661700E+00,4.755872E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +282471,fr,1,5.450000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,2.400299E+02,5.799867E+01,0.000000E+00 +282516,fr,1,5.850000E+00,7.661700E+00,4.755872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +282555,fr,1,6.150000E+00,7.661292E+00,4.755920E+01,5.097890E+00,Active Shallow Crust,2.400670E+02,5.800037E+01,0.000000E+00 +282672,fr,1,7.150000E+00,7.661729E+00,4.755872E+01,1.750000E+01,Active Shallow Crust,3.599999E+02,8.999001E+01,0.000000E+00 +282771,fr,1,3.950000E+00,-4.289250E+00,4.712664E+01,5.000000E+00,Active Shallow Crust,2.400197E+02,5.800458E+01,0.000000E+00 +283704,fr,1,3.750000E+00,-5.938290E+00,4.804380E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +283825,fr,1,4.750000E+00,-5.938290E+00,4.804380E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +284160,fr,1,3.550000E+00,-2.061290E+00,4.747819E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +284162,fr,2,3.550000E+00,-2.061290E+00,4.747819E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +284163,fr,1,3.550000E+00,-2.061290E+00,4.747819E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799805E+01,0.000000E+00 +284169,fr,1,3.550000E+00,-2.061290E+00,4.747819E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999319E+01,0.000000E+00 +284178,fr,1,3.650000E+00,-2.061290E+00,4.747819E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,-9.000000E+01 +284185,fr,1,3.750000E+00,-2.061290E+00,4.747819E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +284190,fr,1,3.750000E+00,-2.061290E+00,4.747819E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,-9.000000E+01 +284194,fr,1,3.750000E+00,-2.061290E+00,4.747819E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.996725E+01,0.000000E+00 +284196,fr,1,3.850000E+00,-2.061290E+00,4.747819E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +284197,fr,2,3.850000E+00,-2.061290E+00,4.747819E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +284244,fr,1,4.250000E+00,-2.061290E+00,4.747819E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +284329,fr,1,4.950000E+00,-2.061290E+00,4.747819E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +284340,fr,1,5.050000E+00,-2.061290E+00,4.747819E+01,5.000000E+00,Active Shallow Crust,3.599997E+02,8.999030E+01,0.000000E+00 +284352,fr,1,5.150000E+00,-2.061290E+00,4.747819E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +284388,fr,1,5.450000E+00,-2.061290E+00,4.747819E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +284640,fr,5,3.550000E+00,1.845700E-01,4.858096E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +284643,fr,1,3.550000E+00,1.845700E-01,4.858096E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799821E+01,0.000000E+00 +284674,fr,1,3.750000E+00,1.845700E-01,4.858096E+01,1.500000E+01,Active Shallow Crust,1.288964E+02,8.996735E+01,0.000000E+00 +284676,fr,2,3.850000E+00,1.845700E-01,4.858096E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +284688,fr,2,3.950000E+00,1.845700E-01,4.858096E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +284772,fr,1,4.650000E+00,1.845700E-01,4.858096E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +285122,fr,1,3.550000E+00,1.015690E+00,4.461827E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +285141,fr,1,3.650000E+00,1.015690E+00,4.461827E+01,5.000000E+00,Active Shallow Crust,1.289010E+02,8.996349E+01,0.000000E+00 +285145,fr,1,3.750000E+00,1.015690E+00,4.461827E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +285156,fr,1,3.850000E+00,1.015690E+00,4.461827E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +285158,fr,1,3.850000E+00,1.015690E+00,4.461827E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +285162,fr,1,3.850000E+00,1.015690E+00,4.461827E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,-9.000000E+01 +285168,fr,1,3.950000E+00,1.015690E+00,4.461827E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +285189,fr,1,4.050000E+00,1.015690E+00,4.461827E+01,5.000000E+00,Active Shallow Crust,1.288906E+02,8.999395E+01,0.000000E+00 +285246,fr,1,4.550000E+00,1.015690E+00,4.461827E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,-9.000000E+01 +285603,fr,1,3.550000E+00,8.751360E+00,4.882298E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799988E+01,0.000000E+00 +285612,fr,2,3.650000E+00,8.751360E+00,4.882298E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998817E+01,0.000000E+00 +285655,fr,1,3.950000E+00,8.751360E+00,4.882298E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999152E+01,-9.000000E+01 +285693,fr,1,4.250000E+00,8.751360E+00,4.882298E+01,5.000000E+00,Active Shallow Crust,1.288931E+02,8.998103E+01,0.000000E+00 +285732,fr,1,4.650000E+00,8.751360E+00,4.882298E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998877E+01,0.000000E+00 +285746,fr,1,4.750000E+00,8.751360E+00,4.882298E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +285762,fr,1,4.850000E+00,8.751360E+00,4.882298E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,-9.000000E+01 +286011,fr,1,6.950000E+00,8.718024E+00,4.886096E+01,1.280532E+01,Active Shallow Crust,2.401755E+02,5.799985E+01,0.000000E+00 +286085,fr,1,3.550000E+00,-4.379280E+00,4.780273E+01,2.750000E+01,Active Shallow Crust,2.400137E+02,5.799761E+01,0.000000E+00 +286090,fr,1,3.550000E+00,-4.379280E+00,4.780273E+01,1.500000E+01,Active Shallow Crust,1.288966E+02,8.999323E+01,0.000000E+00 +286091,fr,1,3.550000E+00,-4.379280E+00,4.780273E+01,2.750000E+01,Active Shallow Crust,1.288966E+02,8.999323E+01,0.000000E+00 +286093,fr,1,3.650000E+00,-4.379280E+00,4.780273E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998793E+01,0.000000E+00 +286141,fr,1,4.050000E+00,-4.379280E+00,4.780273E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998857E+01,0.000000E+00 +286206,fr,1,4.550000E+00,-4.379280E+00,4.780273E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,-9.000000E+01 +286560,fr,1,3.550000E+00,9.470470E+00,4.864058E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998667E+01,0.000000E+00 +286596,fr,1,3.850000E+00,9.470470E+00,4.864058E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +286606,fr,1,3.850000E+00,9.470470E+00,4.864058E+01,1.500000E+01,Active Shallow Crust,1.288956E+02,8.999529E+01,0.000000E+00 +286642,fr,1,4.150000E+00,9.470470E+00,4.864058E+01,1.500000E+01,Active Shallow Crust,1.288969E+02,8.999332E+01,0.000000E+00 +286668,fr,1,4.450000E+00,9.470470E+00,4.864058E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +286740,fr,1,5.050000E+00,9.470470E+00,4.864058E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +286788,fr,1,5.450000E+00,9.470470E+00,4.864058E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +286801,fr,1,5.550000E+00,9.470470E+00,4.864058E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +287050,fr,1,3.550000E+00,2.529940E+00,5.038989E+01,1.500000E+01,Active Shallow Crust,1.288959E+02,8.999518E+01,0.000000E+00 +287054,fr,1,3.650000E+00,2.529940E+00,5.038989E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999140E+01,0.000000E+00 +287085,fr,1,3.850000E+00,2.529940E+00,5.038989E+01,5.000000E+00,Active Shallow Crust,1.288955E+02,8.999431E+01,0.000000E+00 +287113,fr,1,4.150000E+00,2.529940E+00,5.038989E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +287127,fr,1,4.250000E+00,2.529940E+00,5.038989E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799410E+01,0.000000E+00 +287148,fr,1,4.450000E+00,2.529940E+00,5.038989E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +287172,fr,1,4.650000E+00,2.529940E+00,5.038989E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +287326,fr,1,5.850000E+00,2.529940E+00,5.038989E+01,1.500000E+01,Active Shallow Crust,1.288628E+02,8.998940E+01,0.000000E+00 +287763,fr,1,5.550000E+00,-1.537160E+00,4.493789E+01,5.000000E+00,Active Shallow Crust,2.400277E+02,5.800222E+01,0.000000E+00 +288000,fr,2,3.550000E+00,7.273580E+00,4.941785E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998688E+01,0.000000E+00 +288018,fr,1,3.650000E+00,7.273580E+00,4.941785E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998817E+01,-9.000000E+01 +288072,fr,1,4.150000E+00,7.273580E+00,4.941785E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +288132,fr,1,4.650000E+00,7.273580E+00,4.941785E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +288240,fr,1,5.550000E+00,7.273580E+00,4.941785E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +288480,fr,1,3.550000E+00,7.412200E-01,4.446111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +288492,fr,1,3.650000E+00,7.412200E-01,4.446111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +288540,fr,1,4.050000E+00,7.412200E-01,4.446111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +288552,fr,1,4.150000E+00,7.412200E-01,4.446111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +288577,fr,1,4.350000E+00,7.412200E-01,4.446111E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +288685,fr,1,5.250000E+00,7.412200E-01,4.446111E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +288960,fr,1,3.550000E+00,-1.627840E+00,4.355406E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999087E+01,0.000000E+00 +288961,fr,1,3.550000E+00,-1.627840E+00,4.355406E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999087E+01,0.000000E+00 +289016,fr,1,3.950000E+00,-1.627840E+00,4.355406E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998950E+01,-9.000000E+01 +289093,fr,1,4.650000E+00,-1.627840E+00,4.355406E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +289131,fr,1,4.950000E+00,-1.627840E+00,4.355406E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.800422E+01,0.000000E+00 +289139,fr,1,4.950000E+00,-1.627840E+00,4.355406E+01,2.750000E+01,Active Shallow Crust,1.288910E+02,8.998985E+01,0.000000E+00 +289464,fr,1,3.750000E+00,1.387440E+00,4.851548E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +289477,fr,1,3.850000E+00,1.387440E+00,4.851548E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +289500,fr,1,4.050000E+00,1.387440E+00,4.851548E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +290880,fr,1,3.550000E+00,8.445600E-01,4.133982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +290889,fr,1,3.550000E+00,8.445600E-01,4.133982E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999338E+01,0.000000E+00 +290908,fr,1,3.750000E+00,8.445600E-01,4.133982E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.801733E+01,0.000000E+00 +290922,fr,1,3.850000E+00,8.445600E-01,4.133982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,-9.000000E+01 +290928,fr,1,3.950000E+00,8.445600E-01,4.133982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +290937,fr,1,3.950000E+00,8.445600E-01,4.133982E+01,5.000000E+00,Active Shallow Crust,1.289010E+02,8.999373E+01,0.000000E+00 +290978,fr,1,4.350000E+00,8.445600E-01,4.133982E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +291024,fr,1,4.750000E+00,8.445600E-01,4.133982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +291036,fr,1,4.850000E+00,8.445600E-01,4.133982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +291361,fr,1,3.550000E+00,-1.251230E+00,4.861888E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +291362,fr,1,3.550000E+00,-1.251230E+00,4.861888E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +291363,fr,1,3.550000E+00,-1.251230E+00,4.861888E+01,5.000000E+00,Active Shallow Crust,2.400126E+02,5.799810E+01,0.000000E+00 +291366,fr,1,3.550000E+00,-1.251230E+00,4.861888E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +291372,fr,4,3.650000E+00,-1.251230E+00,4.861888E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +291375,fr,1,3.650000E+00,-1.251230E+00,4.861888E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801312E+01,0.000000E+00 +291376,fr,1,3.650000E+00,-1.251230E+00,4.861888E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801312E+01,0.000000E+00 +291381,fr,1,3.650000E+00,-1.251230E+00,4.861888E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.996344E+01,0.000000E+00 +291385,fr,1,3.750000E+00,-1.251230E+00,4.861888E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998941E+01,0.000000E+00 +291395,fr,1,3.750000E+00,-1.251230E+00,4.861888E+01,2.750000E+01,Active Shallow Crust,1.288966E+02,8.996729E+01,0.000000E+00 +291396,fr,2,3.850000E+00,-1.251230E+00,4.861888E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +291397,fr,1,3.850000E+00,-1.251230E+00,4.861888E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +291399,fr,1,3.850000E+00,-1.251230E+00,4.861888E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799786E+01,0.000000E+00 +291417,fr,1,3.950000E+00,-1.251230E+00,4.861888E+01,5.000000E+00,Active Shallow Crust,1.289000E+02,8.999369E+01,0.000000E+00 +291423,fr,2,4.050000E+00,-1.251230E+00,4.861888E+01,5.000000E+00,Active Shallow Crust,2.400064E+02,5.800581E+01,0.000000E+00 +291434,fr,1,4.150000E+00,-1.251230E+00,4.861888E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +291444,fr,1,4.250000E+00,-1.251230E+00,4.861888E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +291456,fr,1,4.350000E+00,-1.251230E+00,4.861888E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +291457,fr,1,4.350000E+00,-1.251230E+00,4.861888E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +291469,fr,1,4.450000E+00,-1.251230E+00,4.861888E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +291530,fr,1,4.950000E+00,-1.251230E+00,4.861888E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +291546,fr,1,5.050000E+00,-1.251230E+00,4.861888E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +291562,fr,1,5.150000E+00,-1.251230E+00,4.861888E+01,1.500000E+01,Active Shallow Crust,1.288826E+02,8.999109E+01,0.000000E+00 +291565,fr,1,5.250000E+00,-1.251230E+00,4.861888E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +291867,fr,1,3.750000E+00,4.795900E-01,4.171306E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801744E+01,0.000000E+00 +291868,fr,1,3.750000E+00,4.795900E-01,4.171306E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.801744E+01,0.000000E+00 +291888,fr,1,3.950000E+00,4.795900E-01,4.171306E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +291909,fr,1,4.050000E+00,4.795900E-01,4.171306E+01,5.000000E+00,Active Shallow Crust,1.288911E+02,8.999378E+01,0.000000E+00 +292036,fr,1,5.150000E+00,4.795900E-01,4.171306E+01,1.500000E+01,Active Shallow Crust,2.400171E+02,5.799950E+01,0.000000E+00 +292320,fr,3,3.550000E+00,1.939300E+00,4.244385E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +292321,fr,1,3.550000E+00,1.939300E+00,4.244385E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +292326,fr,1,3.550000E+00,1.939300E+00,4.244385E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,-9.000000E+01 +292332,fr,4,3.650000E+00,1.939300E+00,4.244385E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +292335,fr,1,3.650000E+00,1.939300E+00,4.244385E+01,5.000000E+00,Active Shallow Crust,2.400006E+02,5.801293E+01,0.000000E+00 +292336,fr,1,3.650000E+00,1.939300E+00,4.244385E+01,1.500000E+01,Active Shallow Crust,2.400006E+02,5.801293E+01,0.000000E+00 +292344,fr,2,3.750000E+00,1.939300E+00,4.244385E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +292345,fr,1,3.750000E+00,1.939300E+00,4.244385E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +292346,fr,1,3.750000E+00,1.939300E+00,4.244385E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +292347,fr,2,3.750000E+00,1.939300E+00,4.244385E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.801769E+01,0.000000E+00 +292350,fr,1,3.750000E+00,1.939300E+00,4.244385E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,-9.000000E+01 +292356,fr,2,3.850000E+00,1.939300E+00,4.244385E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +292362,fr,1,3.850000E+00,1.939300E+00,4.244385E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998934E+01,-9.000000E+01 +292368,fr,2,3.950000E+00,1.939300E+00,4.244385E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +292380,fr,1,4.050000E+00,1.939300E+00,4.244385E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +292381,fr,1,4.050000E+00,1.939300E+00,4.244385E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +292387,fr,1,4.050000E+00,1.939300E+00,4.244385E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999048E+01,-9.000000E+01 +292404,fr,1,4.250000E+00,1.939300E+00,4.244385E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +292408,fr,1,4.250000E+00,1.939300E+00,4.244385E+01,1.500000E+01,Active Shallow Crust,2.400068E+02,5.799395E+01,0.000000E+00 +292417,fr,1,4.350000E+00,1.939300E+00,4.244385E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +292419,fr,1,4.350000E+00,1.939300E+00,4.244385E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799573E+01,0.000000E+00 +292428,fr,1,4.450000E+00,1.939300E+00,4.244385E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +292452,fr,1,4.650000E+00,1.939300E+00,4.244385E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +292461,fr,1,4.650000E+00,1.939300E+00,4.244385E+01,5.000000E+00,Active Shallow Crust,1.288922E+02,8.998701E+01,0.000000E+00 +292464,fr,1,4.750000E+00,1.939300E+00,4.244385E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +292842,fr,1,3.850000E+00,-7.041080E+00,4.887804E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999050E+01,-9.000000E+01 +292884,fr,1,4.250000E+00,-7.041080E+00,4.887804E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999111E+01,0.000000E+00 +293760,fr,2,3.550000E+00,4.639500E+00,4.431238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999278E+01,0.000000E+00 +293761,fr,1,3.550000E+00,4.639500E+00,4.431238E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999278E+01,0.000000E+00 +293766,fr,1,3.550000E+00,4.639500E+00,4.431238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999270E+01,-9.000000E+01 +293772,fr,2,3.650000E+00,4.639500E+00,4.431238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998714E+01,0.000000E+00 +293773,fr,2,3.650000E+00,4.639500E+00,4.431238E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998714E+01,0.000000E+00 +293774,fr,1,3.650000E+00,4.639500E+00,4.431238E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998714E+01,0.000000E+00 +293776,fr,1,3.650000E+00,4.639500E+00,4.431238E+01,1.500000E+01,Active Shallow Crust,2.400002E+02,5.801335E+01,0.000000E+00 +293781,fr,1,3.650000E+00,4.639500E+00,4.431238E+01,5.000000E+00,Active Shallow Crust,1.289013E+02,8.996349E+01,0.000000E+00 +293784,fr,3,3.750000E+00,4.639500E+00,4.431238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998854E+01,0.000000E+00 +293785,fr,1,3.750000E+00,4.639500E+00,4.431238E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998854E+01,0.000000E+00 +293787,fr,2,3.750000E+00,4.639500E+00,4.431238E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.801682E+01,0.000000E+00 +293790,fr,2,3.750000E+00,4.639500E+00,4.431238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998840E+01,-9.000000E+01 +293796,fr,3,3.850000E+00,4.639500E+00,4.431238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +293797,fr,1,3.850000E+00,4.639500E+00,4.431238E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +293798,fr,1,3.850000E+00,4.639500E+00,4.431238E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +293808,fr,2,3.950000E+00,4.639500E+00,4.431238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999090E+01,0.000000E+00 +293811,fr,1,3.950000E+00,4.639500E+00,4.431238E+01,5.000000E+00,Active Shallow Crust,2.400187E+02,5.800488E+01,0.000000E+00 +293814,fr,1,3.950000E+00,4.639500E+00,4.431238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999079E+01,-9.000000E+01 +293823,fr,1,4.050000E+00,4.639500E+00,4.431238E+01,5.000000E+00,Active Shallow Crust,2.400051E+02,5.800631E+01,0.000000E+00 +293832,fr,2,4.150000E+00,4.639500E+00,4.431238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998915E+01,0.000000E+00 +293839,fr,1,4.150000E+00,4.639500E+00,4.431238E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998902E+01,-9.000000E+01 +293844,fr,2,4.250000E+00,4.639500E+00,4.431238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +293845,fr,2,4.250000E+00,4.639500E+00,4.431238E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +293856,fr,1,4.350000E+00,4.639500E+00,4.431238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999138E+01,0.000000E+00 +293868,fr,1,4.450000E+00,4.639500E+00,4.431238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +293869,fr,1,4.450000E+00,4.639500E+00,4.431238E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +293871,fr,1,4.450000E+00,4.639500E+00,4.431238E+01,5.000000E+00,Active Shallow Crust,2.400050E+02,5.799435E+01,0.000000E+00 +293883,fr,1,4.550000E+00,4.639500E+00,4.431238E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.799742E+01,0.000000E+00 +293892,fr,1,4.650000E+00,4.639500E+00,4.431238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +293904,fr,1,4.750000E+00,4.639500E+00,4.431238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998912E+01,0.000000E+00 +293928,fr,1,4.950000E+00,4.639500E+00,4.431238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +293949,fr,1,5.050000E+00,4.639500E+00,4.431238E+01,5.000000E+00,Active Shallow Crust,1.288866E+02,8.999038E+01,0.000000E+00 +293989,fr,1,5.450000E+00,4.639500E+00,4.431238E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +294024,fr,1,5.750000E+00,4.639500E+00,4.431238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +294240,fr,1,3.550000E+00,1.033810E+00,4.968154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +294246,fr,1,3.550000E+00,1.033810E+00,4.968154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +294264,fr,1,3.750000E+00,1.033810E+00,4.968154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +294331,fr,1,4.250000E+00,1.033810E+00,4.968154E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998968E+01,-9.000000E+01 +294336,fr,1,4.350000E+00,1.033810E+00,4.968154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +294358,fr,1,4.450000E+00,1.033810E+00,4.968154E+01,1.500000E+01,Active Shallow Crust,1.288915E+02,8.999364E+01,0.000000E+00 +294441,fr,1,5.150000E+00,1.033810E+00,4.968154E+01,5.000000E+00,Active Shallow Crust,1.288820E+02,8.999100E+01,0.000000E+00 +294744,fr,1,3.750000E+00,-2.480850E+00,5.026300E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +294753,fr,1,3.750000E+00,-2.480850E+00,5.026300E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.996755E+01,0.000000E+00 +295210,fr,1,3.550000E+00,-1.504780E+00,5.046211E+01,1.500000E+01,Active Shallow Crust,1.288962E+02,8.999358E+01,0.000000E+00 +295464,fr,1,5.750000E+00,-1.504780E+00,5.046211E+01,5.000000E+00,Active Shallow Crust,3.599999E+02,8.999005E+01,0.000000E+00 +295680,fr,1,3.550000E+00,9.534300E-01,4.954657E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +295681,fr,1,3.550000E+00,9.534300E-01,4.954657E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +295684,fr,1,3.550000E+00,9.534300E-01,4.954657E+01,1.500000E+01,Active Shallow Crust,2.400126E+02,5.799812E+01,0.000000E+00 +295695,fr,2,3.650000E+00,9.534300E-01,4.954657E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801296E+01,0.000000E+00 +295704,fr,1,3.750000E+00,9.534300E-01,4.954657E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +295716,fr,1,3.850000E+00,9.534300E-01,4.954657E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +295717,fr,1,3.850000E+00,9.534300E-01,4.954657E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +295729,fr,1,3.950000E+00,9.534300E-01,4.954657E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +295754,fr,1,4.150000E+00,9.534300E-01,4.954657E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +295764,fr,1,4.250000E+00,9.534300E-01,4.954657E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +295803,fr,1,4.550000E+00,9.534300E-01,4.954657E+01,5.000000E+00,Active Shallow Crust,2.400102E+02,5.799752E+01,0.000000E+00 +295836,fr,1,4.850000E+00,9.534300E-01,4.954657E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +297120,fr,1,3.550000E+00,1.766460E+00,4.494314E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +297122,fr,1,3.550000E+00,1.766460E+00,4.494314E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +297123,fr,1,3.550000E+00,1.766460E+00,4.494314E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799800E+01,0.000000E+00 +297156,fr,1,3.850000E+00,1.766460E+00,4.494314E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +297160,fr,1,3.850000E+00,1.766460E+00,4.494314E+01,1.500000E+01,Active Shallow Crust,2.400107E+02,5.799771E+01,0.000000E+00 +297294,fr,1,4.950000E+00,1.766460E+00,4.494314E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +297612,fr,1,3.650000E+00,-9.947200E-01,4.210532E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +297648,fr,1,3.950000E+00,-9.947200E-01,4.210532E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +297685,fr,1,4.250000E+00,-9.947200E-01,4.210532E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +297720,fr,1,4.550000E+00,-9.947200E-01,4.210532E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +298093,fr,1,3.650000E+00,6.676200E-01,4.431959E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +298173,fr,1,4.250000E+00,6.676200E-01,4.431959E+01,5.000000E+00,Active Shallow Crust,1.288947E+02,8.998093E+01,0.000000E+00 +298345,fr,1,5.750000E+00,6.676200E-01,4.431959E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +298588,fr,1,3.750000E+00,-6.660000E-03,4.412532E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.801752E+01,0.000000E+00 +298596,fr,1,3.850000E+00,-6.660000E-03,4.412532E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +298620,fr,1,4.050000E+00,-6.660000E-03,4.412532E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +298776,fr,1,5.350000E+00,-6.660000E-03,4.412532E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +299040,fr,2,3.550000E+00,3.320160E+00,4.569296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +299046,fr,1,3.550000E+00,3.320160E+00,4.569296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998931E+01,-9.000000E+01 +299052,fr,1,3.650000E+00,3.320160E+00,4.569296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +299053,fr,1,3.650000E+00,3.320160E+00,4.569296E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +299054,fr,1,3.650000E+00,3.320160E+00,4.569296E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +299055,fr,1,3.650000E+00,3.320160E+00,4.569296E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801290E+01,0.000000E+00 +299057,fr,1,3.650000E+00,3.320160E+00,4.569296E+01,2.750000E+01,Active Shallow Crust,2.400013E+02,5.801282E+01,0.000000E+00 +299060,fr,1,3.650000E+00,3.320160E+00,4.569296E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999047E+01,-9.000000E+01 +299064,fr,3,3.750000E+00,3.320160E+00,4.569296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998881E+01,0.000000E+00 +299065,fr,3,3.750000E+00,3.320160E+00,4.569296E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998881E+01,0.000000E+00 +299067,fr,1,3.750000E+00,3.320160E+00,4.569296E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801770E+01,0.000000E+00 +299076,fr,1,3.850000E+00,3.320160E+00,4.569296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +299079,fr,1,3.850000E+00,3.320160E+00,4.569296E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799750E+01,0.000000E+00 +299088,fr,1,3.950000E+00,3.320160E+00,4.569296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998889E+01,0.000000E+00 +299097,fr,1,3.950000E+00,3.320160E+00,4.569296E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.999445E+01,0.000000E+00 +299100,fr,1,4.050000E+00,3.320160E+00,4.569296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +299102,fr,1,4.050000E+00,3.320160E+00,4.569296E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +299124,fr,3,4.250000E+00,3.320160E+00,4.569296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +299148,fr,2,4.450000E+00,3.320160E+00,4.569296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +299151,fr,1,4.450000E+00,3.320160E+00,4.569296E+01,5.000000E+00,Active Shallow Crust,2.400051E+02,5.799479E+01,0.000000E+00 +299164,fr,1,4.550000E+00,3.320160E+00,4.569296E+01,1.500000E+01,Active Shallow Crust,2.400090E+02,5.799748E+01,0.000000E+00 +299178,fr,1,4.650000E+00,3.320160E+00,4.569296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +299184,fr,1,4.750000E+00,3.320160E+00,4.569296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +299535,fr,1,3.650000E+00,-2.565060E+00,4.648004E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801291E+01,0.000000E+00 +299616,fr,1,4.350000E+00,-2.565060E+00,4.648004E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +299644,fr,1,4.550000E+00,-2.565060E+00,4.648004E+01,1.500000E+01,Active Shallow Crust,2.400094E+02,5.799720E+01,0.000000E+00 +300054,fr,1,3.950000E+00,5.757840E+00,4.259526E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,-9.000000E+01 +300112,fr,1,4.450000E+00,5.757840E+00,4.259526E+01,1.500000E+01,Active Shallow Crust,2.400041E+02,5.799432E+01,0.000000E+00 +300493,fr,2,3.650000E+00,5.942700E-01,4.417783E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +300504,fr,1,3.750000E+00,5.942700E-01,4.417783E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +300516,fr,2,3.850000E+00,5.942700E-01,4.417783E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +300526,fr,1,3.850000E+00,5.942700E-01,4.417783E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.999360E+01,0.000000E+00 +300993,fr,1,3.750000E+00,-5.341730E+00,4.797372E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.996751E+01,0.000000E+00 +301009,fr,1,3.950000E+00,-5.341730E+00,4.797372E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999148E+01,0.000000E+00 +301027,fr,1,4.050000E+00,-5.341730E+00,4.797372E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998848E+01,-9.000000E+01 +301034,fr,1,4.150000E+00,-5.341730E+00,4.797372E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +301044,fr,1,4.250000E+00,-5.341730E+00,4.797372E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999095E+01,0.000000E+00 +301455,fr,1,3.650000E+00,-1.729410E+00,5.044759E+01,5.000000E+00,Active Shallow Crust,2.400015E+02,5.801296E+01,0.000000E+00 +301489,fr,1,3.950000E+00,-1.729410E+00,5.044759E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +301500,fr,1,4.050000E+00,-1.729410E+00,5.044759E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +301920,fr,1,3.550000E+00,-1.715010E+00,4.216116E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +301922,fr,1,3.550000E+00,-1.715010E+00,4.216116E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +301932,fr,1,3.650000E+00,-1.715010E+00,4.216116E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +301935,fr,1,3.650000E+00,-1.715010E+00,4.216116E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801292E+01,0.000000E+00 +301945,fr,1,3.750000E+00,-1.715010E+00,4.216116E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +301971,fr,1,3.950000E+00,-1.715010E+00,4.216116E+01,5.000000E+00,Active Shallow Crust,2.400193E+02,5.800498E+01,0.000000E+00 +301981,fr,2,4.050000E+00,-1.715010E+00,4.216116E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +302014,fr,1,4.250000E+00,-1.715010E+00,4.216116E+01,1.500000E+01,Active Shallow Crust,1.288950E+02,8.998093E+01,0.000000E+00 +302403,fr,2,3.550000E+00,-2.639530E+00,4.302385E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799822E+01,0.000000E+00 +302412,fr,1,3.650000E+00,-2.639530E+00,4.302385E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +302413,fr,1,3.650000E+00,-2.639530E+00,4.302385E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +302424,fr,2,3.750000E+00,-2.639530E+00,4.302385E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999122E+01,0.000000E+00 +302433,fr,1,3.750000E+00,-2.639530E+00,4.302385E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.996714E+01,0.000000E+00 +302437,fr,1,3.850000E+00,-2.639530E+00,4.302385E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +302439,fr,1,3.850000E+00,-2.639530E+00,4.302385E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.799776E+01,0.000000E+00 +302448,fr,1,3.950000E+00,-2.639530E+00,4.302385E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +302449,fr,1,3.950000E+00,-2.639530E+00,4.302385E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +302460,fr,1,4.050000E+00,-2.639530E+00,4.302385E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +302462,fr,1,4.050000E+00,-2.639530E+00,4.302385E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +302541,fr,1,4.650000E+00,-2.639530E+00,4.302385E+01,5.000000E+00,Active Shallow Crust,1.288921E+02,8.998704E+01,0.000000E+00 +302557,fr,1,4.850000E+00,-2.639530E+00,4.302385E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +302880,fr,3,3.550000E+00,6.765970E+00,4.524605E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999290E+01,0.000000E+00 +302882,fr,1,3.550000E+00,6.765970E+00,4.524605E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999290E+01,0.000000E+00 +302883,fr,1,3.550000E+00,6.765970E+00,4.524605E+01,5.000000E+00,Active Shallow Crust,2.400131E+02,5.799744E+01,0.000000E+00 +302884,fr,1,3.550000E+00,6.765970E+00,4.524605E+01,1.500000E+01,Active Shallow Crust,2.400131E+02,5.799744E+01,0.000000E+00 +302885,fr,1,3.550000E+00,6.765970E+00,4.524605E+01,2.750000E+01,Active Shallow Crust,2.400131E+02,5.799734E+01,0.000000E+00 +302888,fr,1,3.550000E+00,6.765970E+00,4.524605E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999282E+01,-9.000000E+01 +302894,fr,1,3.650000E+00,6.765970E+00,4.524605E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998734E+01,0.000000E+00 +302897,fr,1,3.650000E+00,6.765970E+00,4.524605E+01,2.750000E+01,Active Shallow Crust,2.400010E+02,5.801322E+01,0.000000E+00 +302907,fr,1,3.750000E+00,6.765970E+00,4.524605E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.801727E+01,0.000000E+00 +302912,fr,1,3.750000E+00,6.765970E+00,4.524605E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998859E+01,-9.000000E+01 +302922,fr,3,3.850000E+00,6.765970E+00,4.524605E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,-9.000000E+01 +302931,fr,1,3.950000E+00,6.765970E+00,4.524605E+01,5.000000E+00,Active Shallow Crust,2.400195E+02,5.800557E+01,0.000000E+00 +302954,fr,1,4.150000E+00,6.765970E+00,4.524605E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +302978,fr,1,4.350000E+00,6.765970E+00,4.524605E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +303360,fr,2,3.550000E+00,3.286880E+00,4.529710E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +303366,fr,1,3.550000E+00,3.286880E+00,4.529710E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,-9.000000E+01 +303367,fr,1,3.550000E+00,3.286880E+00,4.529710E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998923E+01,-9.000000E+01 +303373,fr,1,3.650000E+00,3.286880E+00,4.529710E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +303375,fr,1,3.650000E+00,3.286880E+00,4.529710E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801306E+01,0.000000E+00 +303396,fr,1,3.850000E+00,3.286880E+00,4.529710E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +303405,fr,1,3.850000E+00,3.286880E+00,4.529710E+01,5.000000E+00,Active Shallow Crust,1.288955E+02,8.999372E+01,0.000000E+00 +303406,fr,1,3.850000E+00,3.286880E+00,4.529710E+01,1.500000E+01,Active Shallow Crust,1.288955E+02,8.999372E+01,0.000000E+00 +303424,fr,1,4.050000E+00,3.286880E+00,4.529710E+01,1.500000E+01,Active Shallow Crust,2.400057E+02,5.800613E+01,0.000000E+00 +303445,fr,1,4.250000E+00,3.286880E+00,4.529710E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +303495,fr,1,4.650000E+00,3.286880E+00,4.529710E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799417E+01,0.000000E+00 +303516,fr,1,4.850000E+00,3.286880E+00,4.529710E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +303576,fr,1,5.350000E+00,3.286880E+00,4.529710E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +303840,fr,1,3.550000E+00,8.983150E+00,4.972765E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998696E+01,0.000000E+00 +303853,fr,1,3.650000E+00,8.983150E+00,4.972765E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998838E+01,0.000000E+00 +303863,fr,1,3.650000E+00,8.983150E+00,4.972765E+01,2.750000E+01,Active Shallow Crust,1.289024E+02,8.996222E+01,0.000000E+00 +303864,fr,1,3.750000E+00,8.983150E+00,4.972765E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +303900,fr,1,4.050000E+00,8.983150E+00,4.972765E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999267E+01,0.000000E+00 +303936,fr,1,4.350000E+00,8.983150E+00,4.972765E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +303972,fr,1,4.650000E+00,8.983150E+00,4.972765E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +304056,fr,1,5.350000E+00,8.983150E+00,4.972765E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +304320,fr,2,3.550000E+00,-3.041210E+00,4.255653E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998886E+01,0.000000E+00 +304332,fr,1,3.650000E+00,-3.041210E+00,4.255653E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +304344,fr,1,3.750000E+00,-3.041210E+00,4.255653E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999115E+01,0.000000E+00 +304345,fr,1,3.750000E+00,-3.041210E+00,4.255653E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999115E+01,0.000000E+00 +304365,fr,1,3.850000E+00,-3.041210E+00,4.255653E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999343E+01,0.000000E+00 +304368,fr,1,3.950000E+00,-3.041210E+00,4.255653E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +304369,fr,1,3.950000E+00,-3.041210E+00,4.255653E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +304800,fr,1,3.550000E+00,4.418940E+00,5.103143E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998732E+01,0.000000E+00 +304885,fr,1,4.250000E+00,4.418940E+00,5.103143E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998867E+01,0.000000E+00 +304890,fr,1,4.250000E+00,4.418940E+00,5.103143E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999140E+01,-9.000000E+01 +304893,fr,1,4.250000E+00,4.418940E+00,5.103143E+01,5.000000E+00,Active Shallow Crust,1.288930E+02,8.998112E+01,0.000000E+00 +304938,fr,1,4.650000E+00,4.418940E+00,5.103143E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998915E+01,-9.000000E+01 +304963,fr,1,4.850000E+00,4.418940E+00,5.103143E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +305280,fr,2,3.550000E+00,7.595650E+00,4.560470E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999294E+01,0.000000E+00 +305292,fr,1,3.650000E+00,7.595650E+00,4.560470E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998743E+01,0.000000E+00 +305322,fr,1,3.850000E+00,7.595650E+00,4.560470E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,-9.000000E+01 +305328,fr,1,3.950000E+00,7.595650E+00,4.560470E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +305364,fr,1,4.250000E+00,7.595650E+00,4.560470E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +305367,fr,2,4.250000E+00,7.595650E+00,4.560470E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.799365E+01,0.000000E+00 +305390,fr,1,4.450000E+00,7.595650E+00,4.560470E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +305445,fr,1,4.850000E+00,7.595650E+00,4.560470E+01,5.000000E+00,Active Shallow Crust,1.288932E+02,8.998898E+01,0.000000E+00 +305760,fr,1,3.550000E+00,-1.604280E+00,4.912781E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +305764,fr,1,3.550000E+00,-1.604280E+00,4.912781E+01,1.500000E+01,Active Shallow Crust,2.400123E+02,5.799820E+01,0.000000E+00 +305766,fr,1,3.550000E+00,-1.604280E+00,4.912781E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +305769,fr,2,3.550000E+00,-1.604280E+00,4.912781E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999340E+01,0.000000E+00 +305772,fr,2,3.650000E+00,-1.604280E+00,4.912781E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +305773,fr,1,3.650000E+00,-1.604280E+00,4.912781E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +305778,fr,1,3.650000E+00,-1.604280E+00,4.912781E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +305784,fr,3,3.750000E+00,-1.604280E+00,4.912781E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +305788,fr,1,3.750000E+00,-1.604280E+00,4.912781E+01,1.500000E+01,Active Shallow Crust,2.400088E+02,5.801740E+01,0.000000E+00 +305796,fr,1,3.850000E+00,-1.604280E+00,4.912781E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +305809,fr,2,3.950000E+00,-1.604280E+00,4.912781E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +305813,fr,1,3.950000E+00,-1.604280E+00,4.912781E+01,2.750000E+01,Active Shallow Crust,2.400202E+02,5.800504E+01,0.000000E+00 +305820,fr,1,4.050000E+00,-1.604280E+00,4.912781E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +305821,fr,1,4.050000E+00,-1.604280E+00,4.912781E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +305833,fr,1,4.150000E+00,-1.604280E+00,4.912781E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +305847,fr,2,4.250000E+00,-1.604280E+00,4.912781E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799430E+01,0.000000E+00 +305865,fr,1,4.350000E+00,-1.604280E+00,4.912781E+01,5.000000E+00,Active Shallow Crust,1.288973E+02,8.998265E+01,0.000000E+00 +305868,fr,1,4.450000E+00,-1.604280E+00,4.912781E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +305880,fr,1,4.550000E+00,-1.604280E+00,4.912781E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +306240,fr,1,3.550000E+00,2.711940E+00,4.494660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +306253,fr,1,3.650000E+00,2.711940E+00,4.494660E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +306300,fr,1,4.050000E+00,2.711940E+00,4.494660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +306360,fr,1,4.550000E+00,2.711940E+00,4.494660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +306732,fr,1,3.650000E+00,4.031350E+00,4.289794E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998683E+01,0.000000E+00 +306734,fr,1,3.650000E+00,4.031350E+00,4.289794E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998683E+01,0.000000E+00 +306745,fr,1,3.750000E+00,4.031350E+00,4.289794E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998827E+01,0.000000E+00 +306756,fr,1,3.850000E+00,4.031350E+00,4.289794E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +306774,fr,1,3.950000E+00,4.031350E+00,4.289794E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999057E+01,-9.000000E+01 +306805,fr,1,4.250000E+00,4.031350E+00,4.289794E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +306840,fr,1,4.550000E+00,4.031350E+00,4.289794E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +306852,fr,1,4.650000E+00,4.031350E+00,4.289794E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +307206,fr,1,3.550000E+00,6.425200E-01,5.044822E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,-9.000000E+01 +307224,fr,1,3.750000E+00,6.425200E-01,5.044822E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +307269,fr,1,4.050000E+00,6.425200E-01,5.044822E+01,5.000000E+00,Active Shallow Crust,1.288900E+02,8.999368E+01,0.000000E+00 +307320,fr,1,4.550000E+00,6.425200E-01,5.044822E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +307680,fr,1,3.550000E+00,7.422740E+00,4.842544E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999331E+01,0.000000E+00 +307692,fr,2,3.650000E+00,7.422740E+00,4.842544E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +307693,fr,1,3.650000E+00,7.422740E+00,4.842544E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +307705,fr,2,3.750000E+00,7.422740E+00,4.842544E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +307716,fr,3,3.850000E+00,7.422740E+00,4.842544E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +307718,fr,1,3.850000E+00,7.422740E+00,4.842544E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +307728,fr,2,3.950000E+00,7.422740E+00,4.842544E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999155E+01,0.000000E+00 +307740,fr,1,4.050000E+00,7.422740E+00,4.842544E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998871E+01,0.000000E+00 +307752,fr,2,4.150000E+00,7.422740E+00,4.842544E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +307792,fr,1,4.450000E+00,7.422740E+00,4.842544E+01,1.500000E+01,Active Shallow Crust,2.400053E+02,5.799511E+01,0.000000E+00 +307995,fr,1,6.150000E+00,7.422326E+00,4.842592E+01,5.097890E+00,Active Shallow Crust,2.400687E+02,5.799916E+01,0.000000E+00 +308161,fr,1,3.550000E+00,4.242120E+00,4.225807E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999254E+01,0.000000E+00 +308166,fr,1,3.550000E+00,4.242120E+00,4.225807E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999245E+01,-9.000000E+01 +308172,fr,1,3.650000E+00,4.242120E+00,4.225807E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998669E+01,0.000000E+00 +308173,fr,1,3.650000E+00,4.242120E+00,4.225807E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998669E+01,0.000000E+00 +308191,fr,1,3.750000E+00,4.242120E+00,4.225807E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998801E+01,-9.000000E+01 +308326,fr,1,4.850000E+00,4.242120E+00,4.225807E+01,1.500000E+01,Active Shallow Crust,1.288941E+02,8.998877E+01,0.000000E+00 +308643,fr,1,3.550000E+00,2.714820E+00,4.765642E+01,5.000000E+00,Active Shallow Crust,2.400130E+02,5.799831E+01,0.000000E+00 +308652,fr,1,3.650000E+00,2.714820E+00,4.765642E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999092E+01,0.000000E+00 +308656,fr,1,3.650000E+00,2.714820E+00,4.765642E+01,1.500000E+01,Active Shallow Crust,2.400014E+02,5.801291E+01,0.000000E+00 +309121,fr,1,3.550000E+00,-7.148400E-01,4.958635E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +309132,fr,1,3.650000E+00,-7.148400E-01,4.958635E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +309138,fr,1,3.650000E+00,-7.148400E-01,4.958635E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +309151,fr,1,3.750000E+00,-7.148400E-01,4.958635E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,-9.000000E+01 +309161,fr,1,3.850000E+00,-7.148400E-01,4.958635E+01,2.750000E+01,Active Shallow Crust,2.400113E+02,5.799778E+01,0.000000E+00 +309168,fr,1,3.950000E+00,-7.148400E-01,4.958635E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +309170,fr,1,3.950000E+00,-7.148400E-01,4.958635E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +309181,fr,1,4.050000E+00,-7.148400E-01,4.958635E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +309207,fr,1,4.250000E+00,-7.148400E-01,4.958635E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799422E+01,0.000000E+00 +309600,fr,1,3.550000E+00,2.454590E+00,4.131956E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998864E+01,0.000000E+00 +309603,fr,1,3.550000E+00,2.454590E+00,4.131956E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799740E+01,0.000000E+00 +309609,fr,1,3.550000E+00,2.454590E+00,4.131956E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.999432E+01,0.000000E+00 +309612,fr,2,3.650000E+00,2.454590E+00,4.131956E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +309613,fr,1,3.650000E+00,2.454590E+00,4.131956E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +309623,fr,1,3.650000E+00,2.454590E+00,4.131956E+01,2.750000E+01,Active Shallow Crust,1.289017E+02,8.996342E+01,0.000000E+00 +309624,fr,1,3.750000E+00,2.454590E+00,4.131956E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +309625,fr,1,3.750000E+00,2.454590E+00,4.131956E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +309627,fr,1,3.750000E+00,2.454590E+00,4.131956E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.801756E+01,0.000000E+00 +309637,fr,1,3.850000E+00,2.454590E+00,4.131956E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +309651,fr,1,3.950000E+00,2.454590E+00,4.131956E+01,5.000000E+00,Active Shallow Crust,2.400191E+02,5.800515E+01,0.000000E+00 +309660,fr,1,4.050000E+00,2.454590E+00,4.131956E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +309661,fr,1,4.050000E+00,2.454590E+00,4.131956E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +309666,fr,1,4.050000E+00,2.454590E+00,4.131956E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,-9.000000E+01 +309676,fr,1,4.150000E+00,2.454590E+00,4.131956E+01,1.500000E+01,Active Shallow Crust,2.400078E+02,5.799704E+01,0.000000E+00 +309684,fr,1,4.250000E+00,2.454590E+00,4.131956E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +309685,fr,1,4.250000E+00,2.454590E+00,4.131956E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +309708,fr,1,4.450000E+00,2.454590E+00,4.131956E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +309723,fr,1,4.550000E+00,2.454590E+00,4.131956E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799720E+01,0.000000E+00 +309726,fr,1,4.550000E+00,2.454590E+00,4.131956E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,-9.000000E+01 +309735,fr,1,4.650000E+00,2.454590E+00,4.131956E+01,5.000000E+00,Active Shallow Crust,2.400092E+02,5.799406E+01,0.000000E+00 +309804,fr,1,5.250000E+00,2.454590E+00,4.131956E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +309829,fr,1,5.450000E+00,2.454590E+00,4.131956E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +310080,fr,5,3.550000E+00,2.981560E+00,4.577073E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +310081,fr,3,3.550000E+00,2.981560E+00,4.577073E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +310083,fr,1,3.550000E+00,2.981560E+00,4.577073E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799827E+01,0.000000E+00 +310084,fr,1,3.550000E+00,2.981560E+00,4.577073E+01,1.500000E+01,Active Shallow Crust,2.400116E+02,5.799827E+01,0.000000E+00 +310086,fr,1,3.550000E+00,2.981560E+00,4.577073E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,-9.000000E+01 +310087,fr,1,3.550000E+00,2.981560E+00,4.577073E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,-9.000000E+01 +310092,fr,6,3.650000E+00,2.981560E+00,4.577073E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +310093,fr,2,3.650000E+00,2.981560E+00,4.577073E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +310095,fr,2,3.650000E+00,2.981560E+00,4.577073E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801255E+01,0.000000E+00 +310098,fr,1,3.650000E+00,2.981560E+00,4.577073E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,-9.000000E+01 +310104,fr,2,3.750000E+00,2.981560E+00,4.577073E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +310116,fr,1,3.850000E+00,2.981560E+00,4.577073E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +310128,fr,2,3.950000E+00,2.981560E+00,4.577073E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +310132,fr,1,3.950000E+00,2.981560E+00,4.577073E+01,1.500000E+01,Active Shallow Crust,2.400196E+02,5.800507E+01,0.000000E+00 +310134,fr,1,3.950000E+00,2.981560E+00,4.577073E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999102E+01,-9.000000E+01 +310137,fr,1,3.950000E+00,2.981560E+00,4.577073E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.999445E+01,0.000000E+00 +310140,fr,1,4.050000E+00,2.981560E+00,4.577073E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +310164,fr,1,4.250000E+00,2.981560E+00,4.577073E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +310173,fr,1,4.250000E+00,2.981560E+00,4.577073E+01,5.000000E+00,Active Shallow Crust,1.288944E+02,8.998092E+01,0.000000E+00 +310176,fr,1,4.350000E+00,2.981560E+00,4.577073E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +310185,fr,1,4.350000E+00,2.981560E+00,4.577073E+01,5.000000E+00,Active Shallow Crust,1.288980E+02,8.998275E+01,0.000000E+00 +310212,fr,1,4.650000E+00,2.981560E+00,4.577073E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +310272,fr,2,5.150000E+00,2.981560E+00,4.577073E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +310284,fr,1,5.250000E+00,2.981560E+00,4.577073E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +310297,fr,1,5.350000E+00,2.981560E+00,4.577073E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +310572,fr,1,3.650000E+00,4.581300E+00,4.716947E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998778E+01,0.000000E+00 +310592,fr,1,3.750000E+00,4.581300E+00,4.716947E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998898E+01,-9.000000E+01 +310596,fr,1,3.850000E+00,4.581300E+00,4.716947E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +310608,fr,1,3.950000E+00,4.581300E+00,4.716947E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999135E+01,0.000000E+00 +310647,fr,1,4.250000E+00,4.581300E+00,4.716947E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799382E+01,0.000000E+00 +310656,fr,2,4.350000E+00,4.581300E+00,4.716947E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998908E+01,0.000000E+00 +310659,fr,1,4.350000E+00,4.581300E+00,4.716947E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799606E+01,0.000000E+00 +310664,fr,1,4.350000E+00,4.581300E+00,4.716947E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998895E+01,-9.000000E+01 +310692,fr,1,4.650000E+00,4.581300E+00,4.716947E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +310732,fr,1,4.950000E+00,4.581300E+00,4.716947E+01,1.500000E+01,Active Shallow Crust,2.400124E+02,5.800446E+01,0.000000E+00 +311040,fr,1,3.550000E+00,4.240840E+00,4.660641E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999307E+01,0.000000E+00 +311045,fr,1,3.550000E+00,4.240840E+00,4.660641E+01,2.750000E+01,Active Shallow Crust,2.400114E+02,5.799910E+01,0.000000E+00 +311046,fr,1,3.550000E+00,4.240840E+00,4.660641E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999299E+01,-9.000000E+01 +311049,fr,1,3.550000E+00,4.240840E+00,4.660641E+01,5.000000E+00,Active Shallow Crust,1.288975E+02,8.999307E+01,0.000000E+00 +311052,fr,1,3.650000E+00,4.240840E+00,4.660641E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998765E+01,0.000000E+00 +311055,fr,1,3.650000E+00,4.240840E+00,4.660641E+01,5.000000E+00,Active Shallow Crust,2.400020E+02,5.801217E+01,0.000000E+00 +311064,fr,2,3.750000E+00,4.240840E+00,4.660641E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998899E+01,0.000000E+00 +311065,fr,1,3.750000E+00,4.240840E+00,4.660641E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998899E+01,0.000000E+00 +311100,fr,2,4.050000E+00,4.240840E+00,4.660641E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998831E+01,0.000000E+00 +311108,fr,1,4.050000E+00,4.240840E+00,4.660641E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998817E+01,-9.000000E+01 +311124,fr,1,4.250000E+00,4.240840E+00,4.660641E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +311157,fr,1,4.450000E+00,4.240840E+00,4.660641E+01,5.000000E+00,Active Shallow Crust,1.288927E+02,8.999263E+01,0.000000E+00 +311523,fr,1,3.550000E+00,1.726660E+00,4.734305E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799817E+01,0.000000E+00 +311553,fr,1,3.750000E+00,1.726660E+00,4.734305E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.996738E+01,0.000000E+00 +311559,fr,1,3.850000E+00,1.726660E+00,4.734305E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799804E+01,0.000000E+00 +311589,fr,1,4.050000E+00,1.726660E+00,4.734305E+01,5.000000E+00,Active Shallow Crust,1.288902E+02,8.999376E+01,0.000000E+00 +311592,fr,1,4.150000E+00,1.726660E+00,4.734305E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +311595,fr,1,4.150000E+00,1.726660E+00,4.734305E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.799732E+01,0.000000E+00 +311628,fr,1,4.450000E+00,1.726660E+00,4.734305E+01,5.000000E+00,Active Shallow Crust,3.599997E+02,8.999030E+01,0.000000E+00 +311662,fr,1,4.650000E+00,1.726660E+00,4.734305E+01,1.500000E+01,Active Shallow Crust,1.288909E+02,8.998702E+01,0.000000E+00 +311737,fr,1,5.350000E+00,1.726660E+00,4.734305E+01,1.500000E+01,Active Shallow Crust,3.599999E+02,8.999010E+01,0.000000E+00 +312125,fr,1,4.550000E+00,-3.902100E+00,4.961315E+01,2.750000E+01,Active Shallow Crust,2.400104E+02,5.799752E+01,0.000000E+00 +312480,fr,2,3.550000E+00,4.465040E+00,4.533945E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999291E+01,0.000000E+00 +312492,fr,1,3.650000E+00,4.465040E+00,4.533945E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998737E+01,0.000000E+00 +312493,fr,1,3.650000E+00,4.465040E+00,4.533945E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998737E+01,0.000000E+00 +312494,fr,1,3.650000E+00,4.465040E+00,4.533945E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998737E+01,0.000000E+00 +312498,fr,1,3.650000E+00,4.465040E+00,4.533945E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998722E+01,-9.000000E+01 +312503,fr,1,3.650000E+00,4.465040E+00,4.533945E+01,2.750000E+01,Active Shallow Crust,1.288999E+02,8.996350E+01,0.000000E+00 +312504,fr,1,3.750000E+00,4.465040E+00,4.533945E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998874E+01,0.000000E+00 +312514,fr,1,3.750000E+00,4.465040E+00,4.533945E+01,1.500000E+01,Active Shallow Crust,1.288972E+02,8.996687E+01,0.000000E+00 +312516,fr,1,3.850000E+00,4.465040E+00,4.533945E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +312538,fr,1,3.950000E+00,4.465040E+00,4.533945E+01,1.500000E+01,Active Shallow Crust,1.289002E+02,8.999329E+01,0.000000E+00 +312552,fr,2,4.150000E+00,4.465040E+00,4.533945E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +312600,fr,1,4.550000E+00,4.465040E+00,4.533945E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +312602,fr,1,4.550000E+00,4.465040E+00,4.533945E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +312963,fr,1,3.550000E+00,3.914250E+00,5.120292E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799818E+01,0.000000E+00 +312972,fr,2,3.650000E+00,3.914250E+00,5.120292E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998874E+01,0.000000E+00 +313440,fr,2,3.550000E+00,6.601720E+00,4.561979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999295E+01,0.000000E+00 +313452,fr,1,3.650000E+00,6.601720E+00,4.561979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998743E+01,0.000000E+00 +313459,fr,1,3.650000E+00,6.601720E+00,4.561979E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998728E+01,-9.000000E+01 +313464,fr,1,3.750000E+00,6.601720E+00,4.561979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998879E+01,0.000000E+00 +313473,fr,1,3.750000E+00,6.601720E+00,4.561979E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.996748E+01,0.000000E+00 +313486,fr,1,3.850000E+00,6.601720E+00,4.561979E+01,1.500000E+01,Active Shallow Crust,1.288954E+02,8.999251E+01,0.000000E+00 +313488,fr,1,3.950000E+00,6.601720E+00,4.561979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +313492,fr,1,3.950000E+00,6.601720E+00,4.561979E+01,1.500000E+01,Active Shallow Crust,2.400205E+02,5.800466E+01,0.000000E+00 +313500,fr,1,4.050000E+00,6.601720E+00,4.561979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998810E+01,0.000000E+00 +313502,fr,1,4.050000E+00,6.601720E+00,4.561979E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998810E+01,0.000000E+00 +313512,fr,1,4.150000E+00,6.601720E+00,4.561979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +313515,fr,1,4.150000E+00,6.601720E+00,4.561979E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.799734E+01,0.000000E+00 +313548,fr,1,4.450000E+00,6.601720E+00,4.561979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +313551,fr,1,4.450000E+00,6.601720E+00,4.561979E+01,5.000000E+00,Active Shallow Crust,2.400049E+02,5.799459E+01,0.000000E+00 +313920,fr,2,3.550000E+00,-2.323500E-01,4.708425E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +313921,fr,1,3.550000E+00,-2.323500E-01,4.708425E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +313922,fr,1,3.550000E+00,-2.323500E-01,4.708425E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +313924,fr,1,3.550000E+00,-2.323500E-01,4.708425E+01,1.500000E+01,Active Shallow Crust,2.400122E+02,5.799815E+01,0.000000E+00 +313932,fr,2,3.650000E+00,-2.323500E-01,4.708425E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +313933,fr,1,3.650000E+00,-2.323500E-01,4.708425E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +313935,fr,1,3.650000E+00,-2.323500E-01,4.708425E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801291E+01,0.000000E+00 +313941,fr,1,3.650000E+00,-2.323500E-01,4.708425E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.996350E+01,0.000000E+00 +313944,fr,2,3.750000E+00,-2.323500E-01,4.708425E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +313950,fr,1,3.750000E+00,-2.323500E-01,4.708425E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +313956,fr,1,3.850000E+00,-2.323500E-01,4.708425E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +313957,fr,1,3.850000E+00,-2.323500E-01,4.708425E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +313975,fr,1,3.950000E+00,-2.323500E-01,4.708425E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +313977,fr,1,3.950000E+00,-2.323500E-01,4.708425E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.999371E+01,0.000000E+00 +313981,fr,1,4.050000E+00,-2.323500E-01,4.708425E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +314016,fr,1,4.350000E+00,-2.323500E-01,4.708425E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +314028,fr,1,4.450000E+00,-2.323500E-01,4.708425E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +314040,fr,1,4.550000E+00,-2.323500E-01,4.708425E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +314052,fr,1,4.650000E+00,-2.323500E-01,4.708425E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +314402,fr,1,3.550000E+00,5.102670E+00,4.736979E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999317E+01,0.000000E+00 +314424,fr,2,3.750000E+00,5.102670E+00,4.736979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998915E+01,0.000000E+00 +314433,fr,1,3.750000E+00,5.102670E+00,4.736979E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996751E+01,0.000000E+00 +314434,fr,1,3.750000E+00,5.102670E+00,4.736979E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.996751E+01,0.000000E+00 +314460,fr,1,4.050000E+00,5.102670E+00,4.736979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998848E+01,0.000000E+00 +314472,fr,1,4.150000E+00,5.102670E+00,4.736979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +314484,fr,1,4.250000E+00,5.102670E+00,4.736979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +314485,fr,1,4.250000E+00,5.102670E+00,4.736979E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +315360,fr,3,3.550000E+00,5.270240E+00,4.505688E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999287E+01,0.000000E+00 +315361,fr,3,3.550000E+00,5.270240E+00,4.505688E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999287E+01,0.000000E+00 +315364,fr,1,3.550000E+00,5.270240E+00,4.505688E+01,1.500000E+01,Active Shallow Crust,2.400119E+02,5.799869E+01,0.000000E+00 +315369,fr,1,3.550000E+00,5.270240E+00,4.505688E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999287E+01,0.000000E+00 +315372,fr,2,3.650000E+00,5.270240E+00,4.505688E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998730E+01,0.000000E+00 +315373,fr,1,3.650000E+00,5.270240E+00,4.505688E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998730E+01,0.000000E+00 +315384,fr,3,3.750000E+00,5.270240E+00,4.505688E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +315386,fr,2,3.750000E+00,5.270240E+00,4.505688E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +315396,fr,1,3.850000E+00,5.270240E+00,4.505688E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +315397,fr,1,3.850000E+00,5.270240E+00,4.505688E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +315406,fr,1,3.850000E+00,5.270240E+00,4.505688E+01,1.500000E+01,Active Shallow Crust,1.288959E+02,8.999496E+01,0.000000E+00 +315408,fr,1,3.950000E+00,5.270240E+00,4.505688E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999101E+01,0.000000E+00 +315412,fr,1,3.950000E+00,5.270240E+00,4.505688E+01,1.500000E+01,Active Shallow Crust,2.400188E+02,5.800513E+01,0.000000E+00 +315420,fr,1,4.050000E+00,5.270240E+00,4.505688E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999199E+01,0.000000E+00 +315421,fr,1,4.050000E+00,5.270240E+00,4.505688E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999199E+01,0.000000E+00 +315441,fr,1,4.150000E+00,5.270240E+00,4.505688E+01,5.000000E+00,Active Shallow Crust,1.288987E+02,8.999286E+01,0.000000E+00 +315444,fr,1,4.250000E+00,5.270240E+00,4.505688E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +315455,fr,1,4.250000E+00,5.270240E+00,4.505688E+01,2.750000E+01,Active Shallow Crust,1.288945E+02,8.998090E+01,0.000000E+00 +315522,fr,1,4.850000E+00,5.270240E+00,4.505688E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,-9.000000E+01 +315889,fr,1,3.950000E+00,-5.111200E+00,4.578760E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999113E+01,0.000000E+00 +316332,fr,1,3.650000E+00,2.818470E+00,4.884034E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999113E+01,0.000000E+00 +316801,fr,3,3.550000E+00,4.902000E-01,4.619603E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +316803,fr,1,3.550000E+00,4.902000E-01,4.619603E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799824E+01,0.000000E+00 +316812,fr,1,3.650000E+00,4.902000E-01,4.619603E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +316815,fr,1,3.650000E+00,4.902000E-01,4.619603E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801286E+01,0.000000E+00 +316825,fr,1,3.750000E+00,4.902000E-01,4.619603E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +316826,fr,1,3.750000E+00,4.902000E-01,4.619603E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +316860,fr,3,4.050000E+00,4.902000E-01,4.619603E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +316872,fr,1,4.150000E+00,4.902000E-01,4.619603E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +316992,fr,1,5.150000E+00,4.902000E-01,4.619603E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +317281,fr,1,3.550000E+00,3.776960E+00,4.615088E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +317316,fr,1,3.850000E+00,3.776960E+00,4.615088E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +317317,fr,1,3.850000E+00,3.776960E+00,4.615088E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +317364,fr,1,4.250000E+00,3.776960E+00,4.615088E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +317380,fr,1,4.350000E+00,3.776960E+00,4.615088E+01,1.500000E+01,Active Shallow Crust,2.400086E+02,5.799569E+01,0.000000E+00 +317424,fr,1,4.750000E+00,3.776960E+00,4.615088E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +318241,fr,2,3.550000E+00,4.285130E+00,4.199514E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999251E+01,0.000000E+00 +318253,fr,1,3.650000E+00,4.285130E+00,4.199514E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999332E+01,0.000000E+00 +318262,fr,1,3.650000E+00,4.285130E+00,4.199514E+01,1.500000E+01,Active Shallow Crust,1.289012E+02,8.996344E+01,0.000000E+00 +318264,fr,2,3.750000E+00,4.285130E+00,4.199514E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998809E+01,0.000000E+00 +318265,fr,1,3.750000E+00,4.285130E+00,4.199514E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998809E+01,0.000000E+00 +318732,fr,1,3.650000E+00,5.920000E+00,4.987733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998842E+01,0.000000E+00 +318739,fr,1,3.650000E+00,5.920000E+00,4.987733E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998828E+01,-9.000000E+01 +318747,fr,1,3.750000E+00,5.920000E+00,4.987733E+01,5.000000E+00,Active Shallow Crust,2.400098E+02,5.801759E+01,0.000000E+00 +318819,fr,1,4.350000E+00,5.920000E+00,4.987733E+01,5.000000E+00,Active Shallow Crust,2.400096E+02,5.799565E+01,0.000000E+00 +318840,fr,1,4.550000E+00,5.920000E+00,4.987733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +319200,fr,1,3.550000E+00,5.151750E+00,5.088787E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998727E+01,0.000000E+00 +319213,fr,1,3.650000E+00,5.151750E+00,5.088787E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +319215,fr,1,3.650000E+00,5.151750E+00,5.088787E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801324E+01,0.000000E+00 +319224,fr,1,3.750000E+00,5.151750E+00,5.088787E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +319227,fr,1,3.750000E+00,5.151750E+00,5.088787E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.801725E+01,0.000000E+00 +319250,fr,1,3.950000E+00,5.151750E+00,5.088787E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999197E+01,0.000000E+00 +319272,fr,1,4.150000E+00,5.151750E+00,5.088787E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +319308,fr,1,4.450000E+00,5.151750E+00,5.088787E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +319392,fr,1,5.150000E+00,5.151750E+00,5.088787E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +319395,fr,1,5.150000E+00,5.151750E+00,5.088787E+01,5.000000E+00,Active Shallow Crust,2.400226E+02,5.800037E+01,0.000000E+00 +319695,fr,1,3.650000E+00,2.641640E+00,4.922523E+01,5.000000E+00,Active Shallow Crust,2.400019E+02,5.801272E+01,0.000000E+00 +319698,fr,1,3.650000E+00,2.641640E+00,4.922523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999110E+01,-9.000000E+01 +319704,fr,1,3.750000E+00,2.641640E+00,4.922523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +319722,fr,1,3.850000E+00,2.641640E+00,4.922523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999057E+01,-9.000000E+01 +320160,fr,2,3.550000E+00,-2.065410E+00,4.707110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +320161,fr,1,3.550000E+00,-2.065410E+00,4.707110E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +320169,fr,1,3.550000E+00,-2.065410E+00,4.707110E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999313E+01,0.000000E+00 +320170,fr,1,3.550000E+00,-2.065410E+00,4.707110E+01,1.500000E+01,Active Shallow Crust,1.288960E+02,8.999313E+01,0.000000E+00 +320171,fr,1,3.550000E+00,-2.065410E+00,4.707110E+01,2.750000E+01,Active Shallow Crust,1.288960E+02,8.999313E+01,0.000000E+00 +320172,fr,1,3.650000E+00,-2.065410E+00,4.707110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999082E+01,0.000000E+00 +320181,fr,1,3.650000E+00,-2.065410E+00,4.707110E+01,5.000000E+00,Active Shallow Crust,1.289011E+02,8.996353E+01,0.000000E+00 +320182,fr,1,3.650000E+00,-2.065410E+00,4.707110E+01,1.500000E+01,Active Shallow Crust,1.289011E+02,8.996353E+01,0.000000E+00 +320184,fr,2,3.750000E+00,-2.065410E+00,4.707110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +320196,fr,1,3.850000E+00,-2.065410E+00,4.707110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +320208,fr,2,3.950000E+00,-2.065410E+00,4.707110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +320220,fr,1,4.050000E+00,-2.065410E+00,4.707110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +320235,fr,1,4.150000E+00,-2.065410E+00,4.707110E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799744E+01,0.000000E+00 +320241,fr,1,4.150000E+00,-2.065410E+00,4.707110E+01,5.000000E+00,Active Shallow Crust,1.288978E+02,8.999312E+01,0.000000E+00 +320244,fr,1,4.250000E+00,-2.065410E+00,4.707110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +320268,fr,1,4.450000E+00,-2.065410E+00,4.707110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +320292,fr,1,4.650000E+00,-2.065410E+00,4.707110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +320295,fr,1,4.650000E+00,-2.065410E+00,4.707110E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799425E+01,0.000000E+00 +320298,fr,1,4.650000E+00,-2.065410E+00,4.707110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,-9.000000E+01 +320329,fr,1,4.950000E+00,-2.065410E+00,4.707110E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +320640,fr,1,3.550000E+00,1.492110E+00,4.263639E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999073E+01,0.000000E+00 +320641,fr,1,3.550000E+00,1.492110E+00,4.263639E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999073E+01,0.000000E+00 +320644,fr,1,3.550000E+00,1.492110E+00,4.263639E+01,1.500000E+01,Active Shallow Crust,2.400115E+02,5.799824E+01,0.000000E+00 +320649,fr,2,3.550000E+00,1.492110E+00,4.263639E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.999351E+01,0.000000E+00 +320652,fr,1,3.650000E+00,1.492110E+00,4.263639E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +320653,fr,2,3.650000E+00,1.492110E+00,4.263639E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +320658,fr,1,3.650000E+00,1.492110E+00,4.263639E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +320664,fr,2,3.750000E+00,1.492110E+00,4.263639E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +320665,fr,1,3.750000E+00,1.492110E+00,4.263639E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +320676,fr,5,3.850000E+00,1.492110E+00,4.263639E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +320679,fr,2,3.850000E+00,1.492110E+00,4.263639E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.799792E+01,0.000000E+00 +320680,fr,2,3.850000E+00,1.492110E+00,4.263639E+01,1.500000E+01,Active Shallow Crust,2.400104E+02,5.799792E+01,0.000000E+00 +320688,fr,1,3.950000E+00,1.492110E+00,4.263639E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +320692,fr,1,3.950000E+00,1.492110E+00,4.263639E+01,1.500000E+01,Active Shallow Crust,2.400194E+02,5.800492E+01,0.000000E+00 +320693,fr,1,3.950000E+00,1.492110E+00,4.263639E+01,2.750000E+01,Active Shallow Crust,2.400194E+02,5.800492E+01,0.000000E+00 +320701,fr,1,4.050000E+00,1.492110E+00,4.263639E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +320703,fr,2,4.050000E+00,1.492110E+00,4.263639E+01,5.000000E+00,Active Shallow Crust,2.400052E+02,5.800569E+01,0.000000E+00 +320710,fr,1,4.050000E+00,1.492110E+00,4.263639E+01,1.500000E+01,Active Shallow Crust,1.288911E+02,8.999374E+01,0.000000E+00 +320712,fr,2,4.150000E+00,1.492110E+00,4.263639E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +320725,fr,1,4.250000E+00,1.492110E+00,4.263639E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +320757,fr,1,4.450000E+00,1.492110E+00,4.263639E+01,5.000000E+00,Active Shallow Crust,1.288930E+02,8.999375E+01,0.000000E+00 +320772,fr,1,4.650000E+00,1.492110E+00,4.263639E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +320808,fr,1,4.950000E+00,1.492110E+00,4.263639E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +320895,fr,1,5.650000E+00,1.492110E+00,4.263639E+01,5.000000E+00,Active Shallow Crust,2.400304E+02,5.800122E+01,0.000000E+00 +321121,fr,1,3.550000E+00,3.460720E+00,5.308583E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +321180,fr,1,4.050000E+00,3.460720E+00,5.308583E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +321609,fr,1,3.550000E+00,-5.962670E+00,4.707332E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999313E+01,0.000000E+00 +322080,fr,1,3.550000E+00,-1.225020E+00,4.359660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999087E+01,0.000000E+00 +322083,fr,1,3.550000E+00,-1.225020E+00,4.359660E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799821E+01,0.000000E+00 +322094,fr,2,3.650000E+00,-1.225020E+00,4.359660E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +322107,fr,1,3.750000E+00,-1.225020E+00,4.359660E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801752E+01,0.000000E+00 +322125,fr,1,3.850000E+00,-1.225020E+00,4.359660E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999354E+01,0.000000E+00 +322137,fr,1,3.950000E+00,-1.225020E+00,4.359660E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.999367E+01,0.000000E+00 +322141,fr,1,4.050000E+00,-1.225020E+00,4.359660E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +323522,fr,2,3.550000E+00,1.492420E+00,4.693107E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +323544,fr,1,3.750000E+00,1.492420E+00,4.693107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +323550,fr,1,3.750000E+00,1.492420E+00,4.693107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,-9.000000E+01 +323604,fr,1,4.250000E+00,1.492420E+00,4.693107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +323643,fr,1,4.550000E+00,1.492420E+00,4.693107E+01,5.000000E+00,Active Shallow Crust,2.400095E+02,5.799731E+01,0.000000E+00 +323727,fr,1,5.250000E+00,1.492420E+00,4.693107E+01,5.000000E+00,Active Shallow Crust,2.400258E+02,5.800030E+01,0.000000E+00 +323773,fr,1,5.650000E+00,1.492420E+00,4.693107E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +324000,fr,3,3.550000E+00,6.738890E+00,4.985464E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998700E+01,0.000000E+00 +324013,fr,1,3.650000E+00,6.738890E+00,4.985464E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998841E+01,0.000000E+00 +324024,fr,1,3.750000E+00,6.738890E+00,4.985464E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +324105,fr,1,4.350000E+00,6.738890E+00,4.985464E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.998269E+01,0.000000E+00 +324141,fr,1,4.650000E+00,6.738890E+00,4.985464E+01,5.000000E+00,Active Shallow Crust,1.288898E+02,8.998695E+01,0.000000E+00 +324480,fr,3,3.550000E+00,-1.969240E+00,4.923455E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +324492,fr,2,3.650000E+00,-1.969240E+00,4.923455E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +324495,fr,1,3.650000E+00,-1.969240E+00,4.923455E+01,5.000000E+00,Active Shallow Crust,2.400016E+02,5.801269E+01,0.000000E+00 +324504,fr,1,3.750000E+00,-1.969240E+00,4.923455E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +324505,fr,1,3.750000E+00,-1.969240E+00,4.923455E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +324510,fr,1,3.750000E+00,-1.969240E+00,4.923455E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,-9.000000E+01 +324516,fr,1,3.850000E+00,-1.969240E+00,4.923455E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +324517,fr,1,3.850000E+00,-1.969240E+00,4.923455E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +324537,fr,1,3.950000E+00,-1.969240E+00,4.923455E+01,5.000000E+00,Active Shallow Crust,1.289000E+02,8.999377E+01,0.000000E+00 +324555,fr,1,4.150000E+00,-1.969240E+00,4.923455E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.799741E+01,0.000000E+00 +324585,fr,1,4.350000E+00,-1.969240E+00,4.923455E+01,5.000000E+00,Active Shallow Crust,1.288974E+02,8.998278E+01,0.000000E+00 +324600,fr,1,4.550000E+00,-1.969240E+00,4.923455E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +324637,fr,1,4.850000E+00,-1.969240E+00,4.923455E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +324684,fr,1,5.250000E+00,-1.969240E+00,4.923455E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +324817,fr,1,6.350000E+00,-1.969240E+00,4.923455E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999003E+01,0.000000E+00 +324974,fr,1,3.650000E+00,2.652700E+00,4.414960E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +325025,fr,1,4.050000E+00,2.652700E+00,4.414960E+01,2.750000E+01,Active Shallow Crust,2.400057E+02,5.800570E+01,0.000000E+00 +325056,fr,1,4.350000E+00,2.652700E+00,4.414960E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +325068,fr,1,4.450000E+00,2.652700E+00,4.414960E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +325135,fr,1,4.950000E+00,2.652700E+00,4.414960E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,-9.000000E+01 +325440,fr,1,3.550000E+00,5.802870E+00,4.300354E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999262E+01,0.000000E+00 +325442,fr,1,3.550000E+00,5.802870E+00,4.300354E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999262E+01,0.000000E+00 +325500,fr,1,4.050000E+00,5.802870E+00,4.300354E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999171E+01,0.000000E+00 +325514,fr,1,4.150000E+00,5.802870E+00,4.300354E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +325536,fr,1,4.350000E+00,5.802870E+00,4.300354E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +325584,fr,1,4.750000E+00,5.802870E+00,4.300354E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +325596,fr,1,4.850000E+00,5.802870E+00,4.300354E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +325920,fr,4,3.550000E+00,4.722580E+00,4.445592E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999281E+01,0.000000E+00 +325922,fr,1,3.550000E+00,4.722580E+00,4.445592E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999281E+01,0.000000E+00 +325923,fr,2,3.550000E+00,4.722580E+00,4.445592E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799854E+01,0.000000E+00 +325928,fr,1,3.550000E+00,4.722580E+00,4.445592E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999272E+01,-9.000000E+01 +325932,fr,5,3.650000E+00,4.722580E+00,4.445592E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998717E+01,0.000000E+00 +325933,fr,1,3.650000E+00,4.722580E+00,4.445592E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998717E+01,0.000000E+00 +325936,fr,4,3.650000E+00,4.722580E+00,4.445592E+01,1.500000E+01,Active Shallow Crust,2.400004E+02,5.801279E+01,0.000000E+00 +325939,fr,1,3.650000E+00,4.722580E+00,4.445592E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998702E+01,-9.000000E+01 +325944,fr,3,3.750000E+00,4.722580E+00,4.445592E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +325947,fr,1,3.750000E+00,4.722580E+00,4.445592E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.801683E+01,0.000000E+00 +325953,fr,1,3.750000E+00,4.722580E+00,4.445592E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.996745E+01,0.000000E+00 +325956,fr,4,3.850000E+00,4.722580E+00,4.445592E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +325959,fr,1,3.850000E+00,4.722580E+00,4.445592E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799706E+01,0.000000E+00 +325962,fr,1,3.850000E+00,4.722580E+00,4.445592E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +325965,fr,1,3.850000E+00,4.722580E+00,4.445592E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999236E+01,0.000000E+00 +325972,fr,1,3.950000E+00,4.722580E+00,4.445592E+01,1.500000E+01,Active Shallow Crust,2.400192E+02,5.800523E+01,0.000000E+00 +325974,fr,1,3.950000E+00,4.722580E+00,4.445592E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,-9.000000E+01 +325975,fr,1,3.950000E+00,4.722580E+00,4.445592E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999081E+01,-9.000000E+01 +325977,fr,1,3.950000E+00,4.722580E+00,4.445592E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.999319E+01,0.000000E+00 +325992,fr,1,4.150000E+00,4.722580E+00,4.445592E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +326002,fr,1,4.150000E+00,4.722580E+00,4.445592E+01,1.500000E+01,Active Shallow Crust,1.288983E+02,8.999278E+01,0.000000E+00 +326011,fr,1,4.250000E+00,4.722580E+00,4.445592E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,-9.000000E+01 +326026,fr,1,4.350000E+00,4.722580E+00,4.445592E+01,1.500000E+01,Active Shallow Crust,1.288979E+02,8.998295E+01,0.000000E+00 +326028,fr,1,4.450000E+00,4.722580E+00,4.445592E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +326041,fr,1,4.550000E+00,4.722580E+00,4.445592E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999090E+01,0.000000E+00 +326405,fr,1,3.550000E+00,-1.824300E+00,4.394667E+01,2.750000E+01,Active Shallow Crust,2.400119E+02,5.799798E+01,0.000000E+00 +326904,fr,1,3.750000E+00,-6.965710E+00,4.666722E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +327369,fr,1,3.550000E+00,8.895000E-02,4.804300E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999368E+01,0.000000E+00 +327381,fr,1,3.650000E+00,8.895000E-02,4.804300E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.996352E+01,0.000000E+00 +327408,fr,1,3.950000E+00,8.895000E-02,4.804300E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +327412,fr,1,3.950000E+00,8.895000E-02,4.804300E+01,1.500000E+01,Active Shallow Crust,2.400200E+02,5.800502E+01,0.000000E+00 +327417,fr,1,3.950000E+00,8.895000E-02,4.804300E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.999372E+01,0.000000E+00 +327430,fr,1,4.050000E+00,8.895000E-02,4.804300E+01,1.500000E+01,Active Shallow Crust,1.288903E+02,8.999372E+01,0.000000E+00 +327456,fr,1,4.350000E+00,8.895000E-02,4.804300E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +327460,fr,1,4.350000E+00,8.895000E-02,4.804300E+01,1.500000E+01,Active Shallow Crust,2.400088E+02,5.799601E+01,0.000000E+00 +327553,fr,1,5.150000E+00,8.895000E-02,4.804300E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +327850,fr,1,3.550000E+00,3.980490E+00,4.682627E+01,1.500000E+01,Active Shallow Crust,1.288954E+02,8.999483E+01,0.000000E+00 +327864,fr,1,3.750000E+00,3.980490E+00,4.682627E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +327924,fr,1,4.250000E+00,3.980490E+00,4.682627E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +328320,fr,5,3.550000E+00,7.474800E+00,4.728051E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999316E+01,0.000000E+00 +328321,fr,1,3.550000E+00,7.474800E+00,4.728051E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999316E+01,0.000000E+00 +328322,fr,1,3.550000E+00,7.474800E+00,4.728051E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999316E+01,0.000000E+00 +328323,fr,1,3.550000E+00,7.474800E+00,4.728051E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799852E+01,0.000000E+00 +328324,fr,1,3.550000E+00,7.474800E+00,4.728051E+01,1.500000E+01,Active Shallow Crust,2.400123E+02,5.799852E+01,0.000000E+00 +328329,fr,1,3.550000E+00,7.474800E+00,4.728051E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999658E+01,0.000000E+00 +328330,fr,2,3.550000E+00,7.474800E+00,4.728051E+01,1.500000E+01,Active Shallow Crust,1.288956E+02,8.999658E+01,0.000000E+00 +328332,fr,2,3.650000E+00,7.474800E+00,4.728051E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998781E+01,0.000000E+00 +328333,fr,3,3.650000E+00,7.474800E+00,4.728051E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998781E+01,0.000000E+00 +328335,fr,1,3.650000E+00,7.474800E+00,4.728051E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801259E+01,0.000000E+00 +328336,fr,1,3.650000E+00,7.474800E+00,4.728051E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801259E+01,0.000000E+00 +328339,fr,1,3.650000E+00,7.474800E+00,4.728051E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998766E+01,-9.000000E+01 +328342,fr,1,3.650000E+00,7.474800E+00,4.728051E+01,1.500000E+01,Active Shallow Crust,1.289012E+02,8.996354E+01,0.000000E+00 +328344,fr,3,3.750000E+00,7.474800E+00,4.728051E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998913E+01,0.000000E+00 +328345,fr,3,3.750000E+00,7.474800E+00,4.728051E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998913E+01,0.000000E+00 +328346,fr,1,3.750000E+00,7.474800E+00,4.728051E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998913E+01,0.000000E+00 +328348,fr,1,3.750000E+00,7.474800E+00,4.728051E+01,1.500000E+01,Active Shallow Crust,2.400096E+02,5.801682E+01,0.000000E+00 +328349,fr,1,3.750000E+00,7.474800E+00,4.728051E+01,2.750000E+01,Active Shallow Crust,2.400096E+02,5.801682E+01,0.000000E+00 +328352,fr,1,3.750000E+00,7.474800E+00,4.728051E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998901E+01,-9.000000E+01 +328356,fr,1,3.850000E+00,7.474800E+00,4.728051E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +328357,fr,1,3.850000E+00,7.474800E+00,4.728051E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +328359,fr,1,3.850000E+00,7.474800E+00,4.728051E+01,5.000000E+00,Active Shallow Crust,2.400115E+02,5.799787E+01,0.000000E+00 +328361,fr,1,3.850000E+00,7.474800E+00,4.728051E+01,2.750000E+01,Active Shallow Crust,2.400115E+02,5.799787E+01,0.000000E+00 +328365,fr,1,3.850000E+00,7.474800E+00,4.728051E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.999516E+01,0.000000E+00 +328369,fr,4,3.950000E+00,7.474800E+00,4.728051E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999136E+01,0.000000E+00 +328371,fr,2,3.950000E+00,7.474800E+00,4.728051E+01,5.000000E+00,Active Shallow Crust,2.400190E+02,5.800584E+01,0.000000E+00 +328375,fr,2,3.950000E+00,7.474800E+00,4.728051E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999126E+01,-9.000000E+01 +328377,fr,1,3.950000E+00,7.474800E+00,4.728051E+01,5.000000E+00,Active Shallow Crust,1.289000E+02,8.999352E+01,0.000000E+00 +328380,fr,2,4.050000E+00,7.474800E+00,4.728051E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998846E+01,0.000000E+00 +328381,fr,1,4.050000E+00,7.474800E+00,4.728051E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998846E+01,0.000000E+00 +328392,fr,4,4.150000E+00,7.474800E+00,4.728051E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +328395,fr,1,4.150000E+00,7.474800E+00,4.728051E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.799733E+01,0.000000E+00 +328398,fr,1,4.150000E+00,7.474800E+00,4.728051E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +328414,fr,1,4.250000E+00,7.474800E+00,4.728051E+01,1.500000E+01,Active Shallow Crust,1.288938E+02,8.998097E+01,0.000000E+00 +328416,fr,2,4.350000E+00,7.474800E+00,4.728051E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +328423,fr,1,4.350000E+00,7.474800E+00,4.728051E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998898E+01,-9.000000E+01 +328426,fr,1,4.350000E+00,7.474800E+00,4.728051E+01,1.500000E+01,Active Shallow Crust,1.288983E+02,8.998256E+01,0.000000E+00 +328449,fr,1,4.550000E+00,7.474800E+00,4.728051E+01,5.000000E+00,Active Shallow Crust,1.288935E+02,8.998569E+01,0.000000E+00 +328452,fr,2,4.650000E+00,7.474800E+00,4.728051E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +328453,fr,1,4.650000E+00,7.474800E+00,4.728051E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +328465,fr,1,4.750000E+00,7.474800E+00,4.728051E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +328476,fr,1,4.850000E+00,7.474800E+00,4.728051E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998928E+01,0.000000E+00 +328500,fr,2,5.050000E+00,7.474800E+00,4.728051E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +328524,fr,1,5.250000E+00,7.474800E+00,4.728051E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +328836,fr,1,3.850000E+00,-3.364100E-01,4.231440E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +328862,fr,1,4.050000E+00,-3.364100E-01,4.231440E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +329280,fr,2,3.550000E+00,-2.261740E+00,4.947979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +329292,fr,1,3.650000E+00,-2.261740E+00,4.947979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999124E+01,0.000000E+00 +329337,fr,1,3.950000E+00,-2.261740E+00,4.947979E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.999277E+01,0.000000E+00 +329352,fr,1,4.150000E+00,-2.261740E+00,4.947979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +329373,fr,1,4.250000E+00,-2.261740E+00,4.947979E+01,5.000000E+00,Active Shallow Crust,1.288938E+02,8.998106E+01,0.000000E+00 +329389,fr,1,4.450000E+00,-2.261740E+00,4.947979E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +329581,fr,1,6.050000E+00,-2.261740E+00,4.947979E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +329821,fr,1,4.050000E+00,6.484720E+00,4.856767E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998874E+01,0.000000E+00 +329991,fr,1,5.450000E+00,6.484720E+00,4.856767E+01,5.000000E+00,Active Shallow Crust,2.400306E+02,5.799886E+01,0.000000E+00 +330240,fr,4,3.550000E+00,5.995530E+00,4.528250E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999290E+01,0.000000E+00 +330241,fr,2,3.550000E+00,5.995530E+00,4.528250E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999290E+01,0.000000E+00 +330242,fr,1,3.550000E+00,5.995530E+00,4.528250E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999290E+01,0.000000E+00 +330245,fr,1,3.550000E+00,5.995530E+00,4.528250E+01,2.750000E+01,Active Shallow Crust,2.400132E+02,5.799697E+01,0.000000E+00 +330252,fr,1,3.650000E+00,5.995530E+00,4.528250E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998735E+01,0.000000E+00 +330253,fr,1,3.650000E+00,5.995530E+00,4.528250E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998735E+01,0.000000E+00 +330257,fr,1,3.650000E+00,5.995530E+00,4.528250E+01,2.750000E+01,Active Shallow Crust,2.400009E+02,5.801333E+01,0.000000E+00 +330264,fr,2,3.750000E+00,5.995530E+00,4.528250E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998873E+01,0.000000E+00 +330277,fr,2,3.850000E+00,5.995530E+00,4.528250E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +330286,fr,1,3.850000E+00,5.995530E+00,4.528250E+01,1.500000E+01,Active Shallow Crust,1.288946E+02,8.999498E+01,0.000000E+00 +330288,fr,2,3.950000E+00,5.995530E+00,4.528250E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +330290,fr,1,3.950000E+00,5.995530E+00,4.528250E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +330291,fr,1,3.950000E+00,5.995530E+00,4.528250E+01,5.000000E+00,Active Shallow Crust,2.400204E+02,5.800496E+01,0.000000E+00 +330294,fr,1,3.950000E+00,5.995530E+00,4.528250E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,-9.000000E+01 +330308,fr,1,4.050000E+00,5.995530E+00,4.528250E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999193E+01,-9.000000E+01 +330324,fr,1,4.250000E+00,5.995530E+00,4.528250E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +330337,fr,1,4.350000E+00,5.995530E+00,4.528250E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998870E+01,0.000000E+00 +330348,fr,1,4.450000E+00,5.995530E+00,4.528250E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +330351,fr,1,4.450000E+00,5.995530E+00,4.528250E+01,5.000000E+00,Active Shallow Crust,2.400051E+02,5.799441E+01,0.000000E+00 +330372,fr,1,4.650000E+00,5.995530E+00,4.528250E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +330407,fr,1,4.850000E+00,5.995530E+00,4.528250E+01,2.750000E+01,Active Shallow Crust,1.288931E+02,8.998896E+01,0.000000E+00 +330469,fr,1,5.450000E+00,5.995530E+00,4.528250E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +330720,fr,1,3.550000E+00,8.650900E-01,4.175180E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +330745,fr,1,3.750000E+00,8.650900E-01,4.175180E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +330807,fr,1,4.250000E+00,8.650900E-01,4.175180E+01,5.000000E+00,Active Shallow Crust,2.400067E+02,5.799393E+01,0.000000E+00 +330828,fr,1,4.450000E+00,8.650900E-01,4.175180E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +331200,fr,2,3.550000E+00,8.950640E+00,4.997430E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998703E+01,0.000000E+00 +331201,fr,2,3.550000E+00,8.950640E+00,4.997430E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998703E+01,0.000000E+00 +331207,fr,1,3.550000E+00,8.950640E+00,4.997430E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998688E+01,-9.000000E+01 +331248,fr,1,3.950000E+00,8.950640E+00,4.997430E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999181E+01,0.000000E+00 +331260,fr,1,4.050000E+00,8.950640E+00,4.997430E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999271E+01,0.000000E+00 +331313,fr,1,4.450000E+00,8.950640E+00,4.997430E+01,2.750000E+01,Active Shallow Crust,2.400053E+02,5.799554E+01,0.000000E+00 +331326,fr,1,4.550000E+00,8.950640E+00,4.997430E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999170E+01,-9.000000E+01 +331344,fr,2,4.750000E+00,8.950640E+00,4.997430E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +331680,fr,1,3.550000E+00,1.368260E+00,4.275169E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +331682,fr,1,3.550000E+00,1.368260E+00,4.275169E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +331686,fr,1,3.550000E+00,1.368260E+00,4.275169E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,-9.000000E+01 +331692,fr,2,3.650000E+00,1.368260E+00,4.275169E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +331695,fr,1,3.650000E+00,1.368260E+00,4.275169E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801283E+01,0.000000E+00 +331696,fr,1,3.650000E+00,1.368260E+00,4.275169E+01,1.500000E+01,Active Shallow Crust,2.400009E+02,5.801283E+01,0.000000E+00 +331704,fr,3,3.750000E+00,1.368260E+00,4.275169E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +331710,fr,1,3.750000E+00,1.368260E+00,4.275169E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +331729,fr,1,3.950000E+00,1.368260E+00,4.275169E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +331730,fr,1,3.950000E+00,1.368260E+00,4.275169E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +331740,fr,1,4.050000E+00,1.368260E+00,4.275169E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +331741,fr,1,4.050000E+00,1.368260E+00,4.275169E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +331752,fr,2,4.150000E+00,1.368260E+00,4.275169E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +331790,fr,1,4.450000E+00,1.368260E+00,4.275169E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +331798,fr,1,4.450000E+00,1.368260E+00,4.275169E+01,1.500000E+01,Active Shallow Crust,1.288930E+02,8.999376E+01,0.000000E+00 +331812,fr,1,4.650000E+00,1.368260E+00,4.275169E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +331821,fr,1,4.650000E+00,1.368260E+00,4.275169E+01,5.000000E+00,Active Shallow Crust,1.288920E+02,8.998702E+01,0.000000E+00 +331872,fr,1,5.150000E+00,1.368260E+00,4.275169E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +332197,fr,1,3.850000E+00,2.900600E+00,4.897374E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +332221,fr,1,4.050000E+00,2.900600E+00,4.897374E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999069E+01,0.000000E+00 +332226,fr,1,4.050000E+00,2.900600E+00,4.897374E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,-9.000000E+01 +332227,fr,1,4.050000E+00,2.900600E+00,4.897374E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,-9.000000E+01 +332485,fr,1,6.250000E+00,2.900600E+00,4.897374E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +332641,fr,1,3.550000E+00,-3.513570E+00,4.277606E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998890E+01,0.000000E+00 +332652,fr,1,3.650000E+00,-3.513570E+00,4.277606E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +332653,fr,1,3.650000E+00,-3.513570E+00,4.277606E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +332654,fr,1,3.650000E+00,-3.513570E+00,4.277606E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +332664,fr,1,3.750000E+00,-3.513570E+00,4.277606E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999118E+01,0.000000E+00 +332670,fr,2,3.750000E+00,-3.513570E+00,4.277606E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999108E+01,-9.000000E+01 +332702,fr,1,4.050000E+00,-3.513570E+00,4.277606E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +332709,fr,1,4.050000E+00,-3.513570E+00,4.277606E+01,5.000000E+00,Active Shallow Crust,1.288907E+02,8.999376E+01,0.000000E+00 +332746,fr,1,4.350000E+00,-3.513570E+00,4.277606E+01,1.500000E+01,Active Shallow Crust,1.288986E+02,8.998289E+01,0.000000E+00 +332762,fr,1,4.550000E+00,-3.513570E+00,4.277606E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +333120,fr,2,3.550000E+00,-8.293300E-01,4.824784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +333121,fr,2,3.550000E+00,-8.293300E-01,4.824784E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +333123,fr,1,3.550000E+00,-8.293300E-01,4.824784E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799825E+01,0.000000E+00 +333132,fr,1,3.650000E+00,-8.293300E-01,4.824784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +333135,fr,1,3.650000E+00,-8.293300E-01,4.824784E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801289E+01,0.000000E+00 +333168,fr,1,3.950000E+00,-8.293300E-01,4.824784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +333182,fr,1,4.050000E+00,-8.293300E-01,4.824784E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +333216,fr,1,4.350000E+00,-8.293300E-01,4.824784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +333219,fr,1,4.350000E+00,-8.293300E-01,4.824784E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.799598E+01,0.000000E+00 +333228,fr,1,4.450000E+00,-8.293300E-01,4.824784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +333241,fr,1,4.550000E+00,-8.293300E-01,4.824784E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +333332,fr,1,5.250000E+00,-8.293300E-01,4.824784E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +333600,fr,3,3.550000E+00,6.714550E+00,4.484479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999285E+01,0.000000E+00 +333601,fr,1,3.550000E+00,6.714550E+00,4.484479E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999285E+01,0.000000E+00 +333607,fr,1,3.550000E+00,6.714550E+00,4.484479E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999277E+01,-9.000000E+01 +333610,fr,1,3.550000E+00,6.714550E+00,4.484479E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.999285E+01,0.000000E+00 +333612,fr,5,3.650000E+00,6.714550E+00,4.484479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998726E+01,0.000000E+00 +333613,fr,1,3.650000E+00,6.714550E+00,4.484479E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998726E+01,0.000000E+00 +333616,fr,2,3.650000E+00,6.714550E+00,4.484479E+01,1.500000E+01,Active Shallow Crust,2.400019E+02,5.801258E+01,0.000000E+00 +333621,fr,1,3.650000E+00,6.714550E+00,4.484479E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.996349E+01,0.000000E+00 +333624,fr,3,3.750000E+00,6.714550E+00,4.484479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998864E+01,0.000000E+00 +333625,fr,1,3.750000E+00,6.714550E+00,4.484479E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998864E+01,0.000000E+00 +333633,fr,1,3.750000E+00,6.714550E+00,4.484479E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.996746E+01,0.000000E+00 +333636,fr,2,3.850000E+00,6.714550E+00,4.484479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +333639,fr,1,3.850000E+00,6.714550E+00,4.484479E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799823E+01,0.000000E+00 +333642,fr,1,3.850000E+00,6.714550E+00,4.484479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,-9.000000E+01 +333645,fr,2,3.850000E+00,6.714550E+00,4.484479E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999241E+01,0.000000E+00 +333648,fr,1,3.950000E+00,6.714550E+00,4.484479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +333649,fr,1,3.950000E+00,6.714550E+00,4.484479E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +333657,fr,1,3.950000E+00,6.714550E+00,4.484479E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.999323E+01,0.000000E+00 +333660,fr,2,4.050000E+00,6.714550E+00,4.484479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999196E+01,0.000000E+00 +333663,fr,1,4.050000E+00,6.714550E+00,4.484479E+01,5.000000E+00,Active Shallow Crust,2.400052E+02,5.800616E+01,0.000000E+00 +333666,fr,1,4.050000E+00,6.714550E+00,4.484479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999187E+01,-9.000000E+01 +333672,fr,2,4.150000E+00,6.714550E+00,4.484479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +333674,fr,1,4.150000E+00,6.714550E+00,4.484479E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +333684,fr,1,4.250000E+00,6.714550E+00,4.484479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +333730,fr,1,4.550000E+00,6.714550E+00,4.484479E+01,1.500000E+01,Active Shallow Crust,1.288942E+02,8.998556E+01,0.000000E+00 +333762,fr,1,4.850000E+00,6.714550E+00,4.484479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,-9.000000E+01 +333924,fr,1,6.250000E+00,6.714554E+00,4.484479E+01,6.744814E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +334080,fr,1,3.550000E+00,8.048500E-01,4.821955E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +334104,fr,1,3.750000E+00,8.048500E-01,4.821955E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +334161,fr,1,4.150000E+00,8.048500E-01,4.821955E+01,5.000000E+00,Active Shallow Crust,1.288973E+02,8.999369E+01,0.000000E+00 +334162,fr,1,4.150000E+00,8.048500E-01,4.821955E+01,1.500000E+01,Active Shallow Crust,1.288973E+02,8.999369E+01,0.000000E+00 +334164,fr,1,4.250000E+00,8.048500E-01,4.821955E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +334165,fr,1,4.250000E+00,8.048500E-01,4.821955E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +334170,fr,1,4.250000E+00,8.048500E-01,4.821955E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +334188,fr,1,4.450000E+00,8.048500E-01,4.821955E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +334191,fr,1,4.450000E+00,8.048500E-01,4.821955E+01,5.000000E+00,Active Shallow Crust,2.400057E+02,5.799477E+01,0.000000E+00 +334560,fr,1,3.550000E+00,-2.438030E+00,4.304773E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +334572,fr,2,3.650000E+00,-2.438030E+00,4.304773E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +334573,fr,1,3.650000E+00,-2.438030E+00,4.304773E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +334581,fr,2,3.650000E+00,-2.438030E+00,4.304773E+01,5.000000E+00,Active Shallow Crust,1.288998E+02,8.996371E+01,0.000000E+00 +334596,fr,1,3.850000E+00,-2.438030E+00,4.304773E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +334601,fr,1,3.850000E+00,-2.438030E+00,4.304773E+01,2.750000E+01,Active Shallow Crust,2.400105E+02,5.799750E+01,0.000000E+00 +334608,fr,1,3.950000E+00,-2.438030E+00,4.304773E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +334621,fr,1,4.050000E+00,-2.438030E+00,4.304773E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +334632,fr,1,4.150000E+00,-2.438030E+00,4.304773E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999077E+01,0.000000E+00 +334656,fr,1,4.350000E+00,-2.438030E+00,4.304773E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +334680,fr,1,4.550000E+00,-2.438030E+00,4.304773E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +334728,fr,1,4.950000E+00,-2.438030E+00,4.304773E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +335040,fr,1,3.550000E+00,3.367680E+00,4.543982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +335052,fr,2,3.650000E+00,3.367680E+00,4.543982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +335064,fr,4,3.750000E+00,3.367680E+00,4.543982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998876E+01,0.000000E+00 +335070,fr,1,3.750000E+00,3.367680E+00,4.543982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998863E+01,-9.000000E+01 +335076,fr,2,3.850000E+00,3.367680E+00,4.543982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +335077,fr,2,3.850000E+00,3.367680E+00,4.543982E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +335082,fr,1,3.850000E+00,3.367680E+00,4.543982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,-9.000000E+01 +335085,fr,3,3.850000E+00,3.367680E+00,4.543982E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999374E+01,0.000000E+00 +335100,fr,1,4.050000E+00,3.367680E+00,4.543982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +335124,fr,2,4.250000E+00,3.367680E+00,4.543982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +335166,fr,1,4.550000E+00,3.367680E+00,4.543982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,-9.000000E+01 +335184,fr,2,4.750000E+00,3.367680E+00,4.543982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +335196,fr,1,4.850000E+00,3.367680E+00,4.543982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +335532,fr,1,3.650000E+00,6.591750E+00,5.143900E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998879E+01,0.000000E+00 +335535,fr,1,3.650000E+00,6.591750E+00,5.143900E+01,5.000000E+00,Active Shallow Crust,2.400019E+02,5.801250E+01,0.000000E+00 +335545,fr,2,3.750000E+00,6.591750E+00,5.143900E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +335565,fr,1,3.850000E+00,6.591750E+00,5.143900E+01,5.000000E+00,Active Shallow Crust,1.288944E+02,8.999332E+01,0.000000E+00 +336000,fr,3,3.550000E+00,5.834720E+00,5.036239E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998714E+01,0.000000E+00 +336006,fr,1,3.550000E+00,5.834720E+00,5.036239E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998698E+01,-9.000000E+01 +336012,fr,1,3.650000E+00,5.834720E+00,5.036239E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998853E+01,0.000000E+00 +336013,fr,1,3.650000E+00,5.834720E+00,5.036239E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998853E+01,0.000000E+00 +336024,fr,1,3.750000E+00,5.834720E+00,5.036239E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +336028,fr,1,3.750000E+00,5.834720E+00,5.036239E+01,1.500000E+01,Active Shallow Crust,2.400089E+02,5.801857E+01,0.000000E+00 +336036,fr,3,3.850000E+00,5.834720E+00,5.036239E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999089E+01,0.000000E+00 +336037,fr,1,3.850000E+00,5.834720E+00,5.036239E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999089E+01,0.000000E+00 +336048,fr,1,3.950000E+00,5.834720E+00,5.036239E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999188E+01,0.000000E+00 +336054,fr,2,3.950000E+00,5.834720E+00,5.036239E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999179E+01,-9.000000E+01 +336060,fr,2,4.050000E+00,5.834720E+00,5.036239E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +336062,fr,1,4.050000E+00,5.834720E+00,5.036239E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +336095,fr,1,4.250000E+00,5.834720E+00,5.036239E+01,2.750000E+01,Active Shallow Crust,1.288932E+02,8.998109E+01,0.000000E+00 +336109,fr,1,4.450000E+00,5.834720E+00,5.036239E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999087E+01,0.000000E+00 +336132,fr,1,4.650000E+00,5.834720E+00,5.036239E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998912E+01,0.000000E+00 +336165,fr,1,4.850000E+00,5.834720E+00,5.036239E+01,5.000000E+00,Active Shallow Crust,1.288912E+02,8.998929E+01,0.000000E+00 +336198,fr,1,5.150000E+00,5.834720E+00,5.036239E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +336504,fr,1,3.750000E+00,-4.630100E+00,4.639960E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +336960,fr,1,3.550000E+00,-2.416930E+00,4.798878E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +336975,fr,1,3.650000E+00,-2.416930E+00,4.798878E+01,5.000000E+00,Active Shallow Crust,2.400017E+02,5.801255E+01,0.000000E+00 +336985,fr,1,3.750000E+00,-2.416930E+00,4.798878E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998928E+01,0.000000E+00 +336996,fr,1,3.850000E+00,-2.416930E+00,4.798878E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +337008,fr,1,3.950000E+00,-2.416930E+00,4.798878E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +337020,fr,1,4.050000E+00,-2.416930E+00,4.798878E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +337035,fr,1,4.150000E+00,-2.416930E+00,4.798878E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.799723E+01,0.000000E+00 +337063,fr,1,4.350000E+00,-2.416930E+00,4.798878E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,-9.000000E+01 +337092,fr,1,4.650000E+00,-2.416930E+00,4.798878E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +337113,fr,1,4.750000E+00,-2.416930E+00,4.798878E+01,5.000000E+00,Active Shallow Crust,1.288881E+02,8.998804E+01,0.000000E+00 +337117,fr,1,4.850000E+00,-2.416930E+00,4.798878E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +337440,fr,5,3.550000E+00,1.418570E+00,4.249090E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999071E+01,0.000000E+00 +337446,fr,1,3.550000E+00,1.418570E+00,4.249090E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999060E+01,-9.000000E+01 +337452,fr,3,3.650000E+00,1.418570E+00,4.249090E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +337453,fr,1,3.650000E+00,1.418570E+00,4.249090E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +337458,fr,2,3.650000E+00,1.418570E+00,4.249090E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +337464,fr,3,3.750000E+00,1.418570E+00,4.249090E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +337473,fr,1,3.750000E+00,1.418570E+00,4.249090E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.996728E+01,0.000000E+00 +337476,fr,1,3.850000E+00,1.418570E+00,4.249090E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +337479,fr,1,3.850000E+00,1.418570E+00,4.249090E+01,5.000000E+00,Active Shallow Crust,2.400101E+02,5.799768E+01,0.000000E+00 +337490,fr,1,3.950000E+00,1.418570E+00,4.249090E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +337491,fr,1,3.950000E+00,1.418570E+00,4.249090E+01,5.000000E+00,Active Shallow Crust,2.400192E+02,5.800481E+01,0.000000E+00 +337492,fr,1,3.950000E+00,1.418570E+00,4.249090E+01,1.500000E+01,Active Shallow Crust,2.400192E+02,5.800481E+01,0.000000E+00 +337502,fr,1,4.050000E+00,1.418570E+00,4.249090E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +337510,fr,1,4.050000E+00,1.418570E+00,4.249090E+01,1.500000E+01,Active Shallow Crust,1.288907E+02,8.999373E+01,0.000000E+00 +337512,fr,1,4.150000E+00,1.418570E+00,4.249090E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +337519,fr,1,4.150000E+00,1.418570E+00,4.249090E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998963E+01,-9.000000E+01 +337524,fr,1,4.250000E+00,1.418570E+00,4.249090E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +337528,fr,1,4.250000E+00,1.418570E+00,4.249090E+01,1.500000E+01,Active Shallow Crust,2.400068E+02,5.799386E+01,0.000000E+00 +337536,fr,1,4.350000E+00,1.418570E+00,4.249090E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +337540,fr,1,4.350000E+00,1.418570E+00,4.249090E+01,1.500000E+01,Active Shallow Crust,2.400076E+02,5.799570E+01,0.000000E+00 +337545,fr,1,4.350000E+00,1.418570E+00,4.249090E+01,5.000000E+00,Active Shallow Crust,1.288985E+02,8.998276E+01,0.000000E+00 +337572,fr,1,4.650000E+00,1.418570E+00,4.249090E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +337584,fr,1,4.750000E+00,1.418570E+00,4.249090E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +337669,fr,1,5.450000E+00,1.418570E+00,4.249090E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +337920,fr,1,3.550000E+00,8.616820E+00,5.068501E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998722E+01,0.000000E+00 +337968,fr,1,3.950000E+00,8.616820E+00,5.068501E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999194E+01,0.000000E+00 +337974,fr,1,3.950000E+00,8.616820E+00,5.068501E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999184E+01,-9.000000E+01 +337992,fr,1,4.150000E+00,8.616820E+00,5.068501E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998719E+01,0.000000E+00 +338401,fr,1,3.550000E+00,5.097590E+00,4.075135E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999236E+01,0.000000E+00 +338433,fr,1,3.750000E+00,5.097590E+00,4.075135E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996739E+01,0.000000E+00 +338905,fr,1,3.750000E+00,-2.422500E+00,4.676652E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998903E+01,0.000000E+00 +338916,fr,1,3.850000E+00,-2.422500E+00,4.676652E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +338932,fr,1,3.950000E+00,-2.422500E+00,4.676652E+01,1.500000E+01,Active Shallow Crust,2.400198E+02,5.800501E+01,0.000000E+00 +338952,fr,1,4.150000E+00,-2.422500E+00,4.676652E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +338997,fr,1,4.450000E+00,-2.422500E+00,4.676652E+01,5.000000E+00,Active Shallow Crust,1.288921E+02,8.999387E+01,0.000000E+00 +339072,fr,1,5.150000E+00,-2.422500E+00,4.676652E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +339360,fr,1,3.550000E+00,1.814020E+00,4.361821E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +339412,fr,1,3.950000E+00,1.814020E+00,4.361821E+01,1.500000E+01,Active Shallow Crust,2.400194E+02,5.800489E+01,0.000000E+00 +339840,fr,1,3.550000E+00,4.774700E-01,4.873071E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +339841,fr,3,3.550000E+00,4.774700E-01,4.873071E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +339847,fr,1,3.550000E+00,4.774700E-01,4.873071E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +339864,fr,1,3.750000E+00,4.774700E-01,4.873071E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +339909,fr,1,4.050000E+00,4.774700E-01,4.873071E+01,5.000000E+00,Active Shallow Crust,1.288902E+02,8.999369E+01,0.000000E+00 +339910,fr,1,4.050000E+00,4.774700E-01,4.873071E+01,1.500000E+01,Active Shallow Crust,1.288902E+02,8.999369E+01,0.000000E+00 +340012,fr,1,4.950000E+00,4.774700E-01,4.873071E+01,1.500000E+01,Active Shallow Crust,2.400130E+02,5.800467E+01,0.000000E+00 +340333,fr,1,3.650000E+00,6.989580E+00,4.900752E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998821E+01,0.000000E+00 +340341,fr,1,3.650000E+00,6.989580E+00,4.900752E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.996357E+01,0.000000E+00 +340351,fr,1,3.750000E+00,6.989580E+00,4.900752E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998937E+01,-9.000000E+01 +340393,fr,1,4.150000E+00,6.989580E+00,4.900752E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +340819,fr,1,3.650000E+00,2.655090E+00,4.857268E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999097E+01,-9.000000E+01 +340849,fr,1,3.950000E+00,2.655090E+00,4.857268E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +340850,fr,1,3.950000E+00,2.655090E+00,4.857268E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +340857,fr,1,3.950000E+00,2.655090E+00,4.857268E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.999368E+01,0.000000E+00 +341282,fr,1,3.550000E+00,-2.374270E+00,4.236023E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +341293,fr,1,3.650000E+00,-2.374270E+00,4.236023E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +341294,fr,2,3.650000E+00,-2.374270E+00,4.236023E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +341317,fr,1,3.850000E+00,-2.374270E+00,4.236023E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +341328,fr,2,3.950000E+00,-2.374270E+00,4.236023E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +341337,fr,1,3.950000E+00,-2.374270E+00,4.236023E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.999413E+01,0.000000E+00 +341342,fr,1,4.050000E+00,-2.374270E+00,4.236023E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +341364,fr,1,4.250000E+00,-2.374270E+00,4.236023E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +341365,fr,1,4.250000E+00,-2.374270E+00,4.236023E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +341376,fr,2,4.350000E+00,-2.374270E+00,4.236023E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +341390,fr,1,4.450000E+00,-2.374270E+00,4.236023E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +341447,fr,1,4.850000E+00,-2.374270E+00,4.236023E+01,2.750000E+01,Active Shallow Crust,1.288939E+02,8.998901E+01,0.000000E+00 +341448,fr,1,4.950000E+00,-2.374270E+00,4.236023E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +341760,fr,1,3.550000E+00,-2.141340E+00,4.652014E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +341772,fr,1,3.650000E+00,-2.141340E+00,4.652014E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +342240,fr,1,3.550000E+00,1.618400E+00,4.573746E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +342241,fr,1,3.550000E+00,1.618400E+00,4.573746E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +342252,fr,1,3.650000E+00,1.618400E+00,4.573746E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +342256,fr,1,3.650000E+00,1.618400E+00,4.573746E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801271E+01,0.000000E+00 +342264,fr,1,3.750000E+00,1.618400E+00,4.573746E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +342268,fr,2,3.750000E+00,1.618400E+00,4.573746E+01,1.500000E+01,Active Shallow Crust,2.400080E+02,5.801749E+01,0.000000E+00 +342274,fr,1,3.750000E+00,1.618400E+00,4.573746E+01,1.500000E+01,Active Shallow Crust,1.288968E+02,8.996735E+01,0.000000E+00 +342279,fr,1,3.850000E+00,1.618400E+00,4.573746E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799760E+01,0.000000E+00 +342285,fr,1,3.850000E+00,1.618400E+00,4.573746E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999377E+01,0.000000E+00 +342288,fr,1,3.950000E+00,1.618400E+00,4.573746E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +342289,fr,1,3.950000E+00,1.618400E+00,4.573746E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +342300,fr,1,4.050000E+00,1.618400E+00,4.573746E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +342301,fr,1,4.050000E+00,1.618400E+00,4.573746E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +342325,fr,1,4.250000E+00,1.618400E+00,4.573746E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +342333,fr,1,4.250000E+00,1.618400E+00,4.573746E+01,5.000000E+00,Active Shallow Crust,1.288945E+02,8.998092E+01,0.000000E+00 +342720,fr,1,3.550000E+00,-2.433100E-01,5.040433E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +342780,fr,1,4.050000E+00,-2.433100E-01,5.040433E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +342830,fr,1,4.450000E+00,-2.433100E-01,5.040433E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +342916,fr,1,5.150000E+00,-2.433100E-01,5.040433E+01,1.500000E+01,Active Shallow Crust,2.400221E+02,5.800042E+01,0.000000E+00 +343250,fr,1,3.950000E+00,9.316210E+00,4.988557E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999180E+01,0.000000E+00 +343680,fr,3,3.550000E+00,-3.889000E-02,4.669522E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +343681,fr,1,3.550000E+00,-3.889000E-02,4.669522E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +343684,fr,1,3.550000E+00,-3.889000E-02,4.669522E+01,1.500000E+01,Active Shallow Crust,2.400122E+02,5.799817E+01,0.000000E+00 +343687,fr,1,3.550000E+00,-3.889000E-02,4.669522E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +343692,fr,2,3.650000E+00,-3.889000E-02,4.669522E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +343694,fr,1,3.650000E+00,-3.889000E-02,4.669522E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +343701,fr,1,3.650000E+00,-3.889000E-02,4.669522E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.996351E+01,0.000000E+00 +343704,fr,2,3.750000E+00,-3.889000E-02,4.669522E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +343708,fr,1,3.750000E+00,-3.889000E-02,4.669522E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.801758E+01,0.000000E+00 +343728,fr,1,3.950000E+00,-3.889000E-02,4.669522E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +343740,fr,1,4.050000E+00,-3.889000E-02,4.669522E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +343743,fr,1,4.050000E+00,-3.889000E-02,4.669522E+01,5.000000E+00,Active Shallow Crust,2.400060E+02,5.800584E+01,0.000000E+00 +343764,fr,1,4.250000E+00,-3.889000E-02,4.669522E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +343791,fr,1,4.450000E+00,-3.889000E-02,4.669522E+01,5.000000E+00,Active Shallow Crust,2.400053E+02,5.799468E+01,0.000000E+00 +343872,fr,1,5.150000E+00,-3.889000E-02,4.669522E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +344184,fr,1,3.750000E+00,7.372800E+00,5.104193E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +344214,fr,1,3.950000E+00,7.372800E+00,5.104193E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999191E+01,-9.000000E+01 +344856,fr,1,5.350000E+00,-3.132420E+00,4.656087E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +345120,fr,4,3.550000E+00,-2.996970E+00,4.807301E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +345121,fr,1,3.550000E+00,-2.996970E+00,4.807301E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +345123,fr,1,3.550000E+00,-2.996970E+00,4.807301E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799770E+01,0.000000E+00 +345132,fr,2,3.650000E+00,-2.996970E+00,4.807301E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999099E+01,0.000000E+00 +345144,fr,3,3.750000E+00,-2.996970E+00,4.807301E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +345153,fr,2,3.750000E+00,-2.996970E+00,4.807301E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.996752E+01,0.000000E+00 +345156,fr,2,3.850000E+00,-2.996970E+00,4.807301E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +345169,fr,1,3.950000E+00,-2.996970E+00,4.807301E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +345180,fr,1,4.050000E+00,-2.996970E+00,4.807301E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +345192,fr,1,4.150000E+00,-2.996970E+00,4.807301E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +345241,fr,1,4.550000E+00,-2.996970E+00,4.807301E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +345288,fr,1,4.950000E+00,-2.996970E+00,4.807301E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +345601,fr,1,3.550000E+00,3.504930E+00,4.701246E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +345624,fr,1,3.750000E+00,3.504930E+00,4.701246E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +345648,fr,1,3.950000E+00,3.504930E+00,4.701246E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998915E+01,0.000000E+00 +345684,fr,1,4.250000E+00,3.504930E+00,4.701246E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +345696,fr,1,4.350000E+00,3.504930E+00,4.701246E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +345882,fr,1,5.850000E+00,3.504930E+00,4.701246E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,-9.000000E+01 +346089,fr,1,3.550000E+00,-1.195160E+00,4.795289E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999409E+01,0.000000E+00 +346092,fr,1,3.650000E+00,-1.195160E+00,4.795289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +346095,fr,1,3.650000E+00,-1.195160E+00,4.795289E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801286E+01,0.000000E+00 +346098,fr,1,3.650000E+00,-1.195160E+00,4.795289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998934E+01,-9.000000E+01 +346104,fr,1,3.750000E+00,-1.195160E+00,4.795289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999061E+01,0.000000E+00 +346152,fr,1,4.150000E+00,-1.195160E+00,4.795289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +346176,fr,1,4.350000E+00,-1.195160E+00,4.795289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +346177,fr,1,4.350000E+00,-1.195160E+00,4.795289E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +346183,fr,1,4.350000E+00,-1.195160E+00,4.795289E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,-9.000000E+01 +346248,fr,1,4.950000E+00,-1.195160E+00,4.795289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +346560,fr,5,3.550000E+00,2.529580E+00,4.146595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +346561,fr,4,3.550000E+00,2.529580E+00,4.146595E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +346562,fr,1,3.550000E+00,2.529580E+00,4.146595E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +346563,fr,1,3.550000E+00,2.529580E+00,4.146595E+01,5.000000E+00,Active Shallow Crust,2.400115E+02,5.799827E+01,0.000000E+00 +346572,fr,2,3.650000E+00,2.529580E+00,4.146595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +346575,fr,1,3.650000E+00,2.529580E+00,4.146595E+01,5.000000E+00,Active Shallow Crust,2.400003E+02,5.801263E+01,0.000000E+00 +346577,fr,2,3.650000E+00,2.529580E+00,4.146595E+01,2.750000E+01,Active Shallow Crust,2.400003E+02,5.801254E+01,0.000000E+00 +346581,fr,1,3.650000E+00,2.529580E+00,4.146595E+01,5.000000E+00,Active Shallow Crust,1.289012E+02,8.996342E+01,0.000000E+00 +346584,fr,3,3.750000E+00,2.529580E+00,4.146595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +346585,fr,1,3.750000E+00,2.529580E+00,4.146595E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +346586,fr,1,3.750000E+00,2.529580E+00,4.146595E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +346588,fr,1,3.750000E+00,2.529580E+00,4.146595E+01,1.500000E+01,Active Shallow Crust,2.400074E+02,5.801741E+01,0.000000E+00 +346593,fr,1,3.750000E+00,2.529580E+00,4.146595E+01,5.000000E+00,Active Shallow Crust,1.288971E+02,8.996741E+01,0.000000E+00 +346596,fr,3,3.850000E+00,2.529580E+00,4.146595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +346597,fr,1,3.850000E+00,2.529580E+00,4.146595E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +346603,fr,1,3.850000E+00,2.529580E+00,4.146595E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,-9.000000E+01 +346607,fr,1,3.850000E+00,2.529580E+00,4.146595E+01,2.750000E+01,Active Shallow Crust,1.288963E+02,8.999332E+01,0.000000E+00 +346608,fr,1,3.950000E+00,2.529580E+00,4.146595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +346620,fr,3,4.050000E+00,2.529580E+00,4.146595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +346628,fr,1,4.050000E+00,2.529580E+00,4.146595E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998925E+01,-9.000000E+01 +346633,fr,1,4.150000E+00,2.529580E+00,4.146595E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +346645,fr,2,4.250000E+00,2.529580E+00,4.146595E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +346656,fr,1,4.350000E+00,2.529580E+00,4.146595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +346669,fr,1,4.450000E+00,2.529580E+00,4.146595E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +346681,fr,1,4.550000E+00,2.529580E+00,4.146595E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +346692,fr,1,4.650000E+00,2.529580E+00,4.146595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +346740,fr,1,5.050000E+00,2.529580E+00,4.146595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +346765,fr,1,5.250000E+00,2.529580E+00,4.146595E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +346813,fr,1,5.650000E+00,2.529580E+00,4.146595E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +346848,fr,1,5.950000E+00,2.529580E+00,4.146595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +347056,fr,1,3.650000E+00,-4.719210E+00,4.926684E+01,1.500000E+01,Active Shallow Crust,2.400008E+02,5.801317E+01,0.000000E+00 +347074,fr,1,3.750000E+00,-4.719210E+00,4.926684E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.996754E+01,0.000000E+00 +347080,fr,1,3.850000E+00,-4.719210E+00,4.926684E+01,1.500000E+01,Active Shallow Crust,2.400113E+02,5.799844E+01,0.000000E+00 +347103,fr,1,4.050000E+00,-4.719210E+00,4.926684E+01,5.000000E+00,Active Shallow Crust,2.400065E+02,5.800590E+01,0.000000E+00 +347250,fr,1,5.250000E+00,-4.719210E+00,4.926684E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +347520,fr,2,3.550000E+00,4.732580E+00,4.178719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999249E+01,0.000000E+00 +347533,fr,1,3.650000E+00,4.732580E+00,4.178719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999330E+01,0.000000E+00 +347545,fr,1,3.750000E+00,4.732580E+00,4.178719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998805E+01,0.000000E+00 +347689,fr,1,4.950000E+00,4.732580E+00,4.178719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +348000,fr,1,3.550000E+00,2.183460E+00,4.114201E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998861E+01,0.000000E+00 +348004,fr,1,3.550000E+00,2.183460E+00,4.114201E+01,1.500000E+01,Active Shallow Crust,2.400116E+02,5.799841E+01,0.000000E+00 +348013,fr,1,3.650000E+00,2.183460E+00,4.114201E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +348018,fr,1,3.650000E+00,2.183460E+00,4.114201E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,-9.000000E+01 +348036,fr,2,3.850000E+00,2.183460E+00,4.114201E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +348061,fr,1,4.050000E+00,2.183460E+00,4.114201E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +348085,fr,1,4.250000E+00,2.183460E+00,4.114201E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +348110,fr,1,4.450000E+00,2.183460E+00,4.114201E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +348120,fr,1,4.550000E+00,2.183460E+00,4.114201E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +348480,fr,1,3.550000E+00,2.427900E+00,4.751138E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +348492,fr,1,3.650000E+00,2.427900E+00,4.751138E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999089E+01,0.000000E+00 +348493,fr,1,3.650000E+00,2.427900E+00,4.751138E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999089E+01,0.000000E+00 +348555,fr,1,4.150000E+00,2.427900E+00,4.751138E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.799725E+01,0.000000E+00 +348579,fr,1,4.350000E+00,2.427900E+00,4.751138E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799594E+01,0.000000E+00 +348588,fr,1,4.450000E+00,2.427900E+00,4.751138E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +348612,fr,1,4.650000E+00,2.427900E+00,4.751138E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +348960,fr,1,3.550000E+00,3.342860E+00,5.130933E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +348961,fr,1,3.550000E+00,3.342860E+00,5.130933E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +348997,fr,2,3.850000E+00,3.342860E+00,5.130933E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +349020,fr,1,4.050000E+00,3.342860E+00,5.130933E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +349032,fr,1,4.150000E+00,3.342860E+00,5.130933E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +349033,fr,1,4.150000E+00,3.342860E+00,5.130933E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +349045,fr,1,4.250000E+00,3.342860E+00,5.130933E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +349056,fr,1,4.350000E+00,3.342860E+00,5.130933E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +349488,fr,1,3.950000E+00,2.400470E+00,4.050055E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +349512,fr,1,4.150000E+00,2.400470E+00,4.050055E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +349920,fr,1,3.550000E+00,2.053260E+00,4.894084E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +349932,fr,1,3.650000E+00,2.053260E+00,4.894084E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999114E+01,0.000000E+00 +349945,fr,1,3.750000E+00,2.053260E+00,4.894084E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +349968,fr,1,3.950000E+00,2.053260E+00,4.894084E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +349984,fr,1,4.050000E+00,2.053260E+00,4.894084E+01,1.500000E+01,Active Shallow Crust,2.400061E+02,5.800608E+01,0.000000E+00 +350413,fr,1,3.650000E+00,1.160100E+00,4.597466E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +350430,fr,1,3.750000E+00,1.160100E+00,4.597466E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +350437,fr,1,3.850000E+00,1.160100E+00,4.597466E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +350448,fr,1,3.950000E+00,1.160100E+00,4.597466E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +350449,fr,1,3.950000E+00,1.160100E+00,4.597466E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +350496,fr,1,4.350000E+00,1.160100E+00,4.597466E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +350521,fr,1,4.550000E+00,1.160100E+00,4.597466E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +350566,fr,1,4.850000E+00,1.160100E+00,4.597466E+01,1.500000E+01,Active Shallow Crust,1.288928E+02,8.998901E+01,0.000000E+00 +351360,fr,4,3.550000E+00,4.469740E+00,4.468420E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999283E+01,0.000000E+00 +351361,fr,2,3.550000E+00,4.469740E+00,4.468420E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999283E+01,0.000000E+00 +351372,fr,1,3.650000E+00,4.469740E+00,4.468420E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998722E+01,0.000000E+00 +351376,fr,1,3.650000E+00,4.469740E+00,4.468420E+01,1.500000E+01,Active Shallow Crust,2.400023E+02,5.801227E+01,0.000000E+00 +351384,fr,1,3.750000E+00,4.469740E+00,4.468420E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998861E+01,0.000000E+00 +351386,fr,1,3.750000E+00,4.469740E+00,4.468420E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998861E+01,0.000000E+00 +351388,fr,1,3.750000E+00,4.469740E+00,4.468420E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.801790E+01,0.000000E+00 +351419,fr,1,3.950000E+00,4.469740E+00,4.468420E+01,2.750000E+01,Active Shallow Crust,1.289005E+02,8.999548E+01,0.000000E+00 +351420,fr,1,4.050000E+00,4.469740E+00,4.468420E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999194E+01,0.000000E+00 +351421,fr,1,4.050000E+00,4.469740E+00,4.468420E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999194E+01,0.000000E+00 +351432,fr,1,4.150000E+00,4.469740E+00,4.468420E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998922E+01,0.000000E+00 +351438,fr,1,4.150000E+00,4.469740E+00,4.468420E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998910E+01,-9.000000E+01 +351447,fr,1,4.250000E+00,4.469740E+00,4.468420E+01,5.000000E+00,Active Shallow Crust,2.400070E+02,5.799409E+01,0.000000E+00 +351456,fr,1,4.350000E+00,4.469740E+00,4.468420E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998858E+01,0.000000E+00 +351514,fr,1,4.750000E+00,4.469740E+00,4.468420E+01,1.500000E+01,Active Shallow Crust,1.288896E+02,8.998807E+01,0.000000E+00 +351864,fr,1,3.750000E+00,-4.220270E+00,4.727128E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998913E+01,0.000000E+00 +351865,fr,1,3.750000E+00,-4.220270E+00,4.727128E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998913E+01,0.000000E+00 +352344,fr,2,3.750000E+00,4.798140E+00,4.719977E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +352371,fr,1,3.950000E+00,4.798140E+00,4.719977E+01,5.000000E+00,Active Shallow Crust,2.400201E+02,5.800427E+01,0.000000E+00 +352393,fr,1,4.150000E+00,4.798140E+00,4.719977E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +352404,fr,2,4.250000E+00,4.798140E+00,4.719977E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999082E+01,0.000000E+00 +352413,fr,1,4.250000E+00,4.798140E+00,4.719977E+01,5.000000E+00,Active Shallow Crust,1.288934E+02,8.998097E+01,0.000000E+00 +352416,fr,1,4.350000E+00,4.798140E+00,4.719977E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +352440,fr,1,4.550000E+00,4.798140E+00,4.719977E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +352490,fr,1,4.950000E+00,4.798140E+00,4.719977E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +352812,fr,1,3.650000E+00,1.788690E+00,4.919148E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +352842,fr,1,3.850000E+00,1.788690E+00,4.919148E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999056E+01,-9.000000E+01 +352851,fr,1,3.950000E+00,1.788690E+00,4.919148E+01,5.000000E+00,Active Shallow Crust,2.400203E+02,5.800494E+01,0.000000E+00 +352951,fr,1,4.750000E+00,1.788690E+00,4.919148E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,-9.000000E+01 +353293,fr,2,3.650000E+00,-2.372260E+00,4.277767E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +353304,fr,1,3.750000E+00,-2.372260E+00,4.277767E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999118E+01,0.000000E+00 +353316,fr,1,3.850000E+00,-2.372260E+00,4.277767E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +353330,fr,1,3.950000E+00,-2.372260E+00,4.277767E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +353335,fr,1,3.950000E+00,-2.372260E+00,4.277767E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,-9.000000E+01 +353350,fr,1,4.050000E+00,-2.372260E+00,4.277767E+01,1.500000E+01,Active Shallow Crust,1.288914E+02,8.999376E+01,0.000000E+00 +353381,fr,1,4.350000E+00,-2.372260E+00,4.277767E+01,2.750000E+01,Active Shallow Crust,2.400078E+02,5.799578E+01,0.000000E+00 +353413,fr,1,4.650000E+00,-2.372260E+00,4.277767E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +353442,fr,1,4.850000E+00,-2.372260E+00,4.277767E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +353580,fr,1,6.050000E+00,-2.372259E+00,4.277767E+01,5.357596E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +353793,fr,1,3.750000E+00,5.236720E+00,4.853336E+01,5.000000E+00,Active Shallow Crust,1.288971E+02,8.996699E+01,0.000000E+00 +354264,fr,1,3.750000E+00,-6.630000E+00,4.837608E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +354501,fr,1,5.650000E+00,-6.630000E+00,4.837608E+01,5.000000E+00,Active Shallow Crust,1.288735E+02,8.999046E+01,0.000000E+00 +354720,fr,4,3.550000E+00,1.954810E+00,4.669195E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +354726,fr,1,3.550000E+00,1.954810E+00,4.669195E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,-9.000000E+01 +354732,fr,1,3.650000E+00,1.954810E+00,4.669195E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +354744,fr,2,3.750000E+00,1.954810E+00,4.669195E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +354746,fr,1,3.750000E+00,1.954810E+00,4.669195E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +354756,fr,3,3.850000E+00,1.954810E+00,4.669195E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +354757,fr,1,3.850000E+00,1.954810E+00,4.669195E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +354768,fr,1,3.950000E+00,1.954810E+00,4.669195E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +354777,fr,1,3.950000E+00,1.954810E+00,4.669195E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.999345E+01,0.000000E+00 +354780,fr,1,4.050000E+00,1.954810E+00,4.669195E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +354781,fr,1,4.050000E+00,1.954810E+00,4.669195E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +354903,fr,1,5.050000E+00,1.954810E+00,4.669195E+01,5.000000E+00,Active Shallow Crust,2.400223E+02,5.799759E+01,0.000000E+00 +355200,fr,1,3.550000E+00,-4.711000E-01,4.625741E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +355214,fr,1,3.650000E+00,-4.711000E-01,4.625741E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +355215,fr,1,3.650000E+00,-4.711000E-01,4.625741E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801289E+01,0.000000E+00 +355224,fr,1,3.750000E+00,-4.711000E-01,4.625741E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +355225,fr,1,3.750000E+00,-4.711000E-01,4.625741E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +355248,fr,1,3.950000E+00,-4.711000E-01,4.625741E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +355263,fr,1,4.050000E+00,-4.711000E-01,4.625741E+01,5.000000E+00,Active Shallow Crust,2.400059E+02,5.800583E+01,0.000000E+00 +355272,fr,1,4.150000E+00,-4.711000E-01,4.625741E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +355296,fr,1,4.350000E+00,-4.711000E-01,4.625741E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +355297,fr,1,4.350000E+00,-4.711000E-01,4.625741E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +355311,fr,1,4.450000E+00,-4.711000E-01,4.625741E+01,5.000000E+00,Active Shallow Crust,2.400052E+02,5.799464E+01,0.000000E+00 +355348,fr,1,4.750000E+00,-4.711000E-01,4.625741E+01,1.500000E+01,Active Shallow Crust,2.400074E+02,5.800448E+01,0.000000E+00 +355367,fr,1,4.850000E+00,-4.711000E-01,4.625741E+01,2.750000E+01,Active Shallow Crust,1.288927E+02,8.998900E+01,0.000000E+00 +355380,fr,1,5.050000E+00,-4.711000E-01,4.625741E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +355680,fr,3,3.550000E+00,5.791650E+00,5.060362E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998720E+01,0.000000E+00 +355685,fr,1,3.550000E+00,5.791650E+00,5.060362E+01,2.750000E+01,Active Shallow Crust,2.400135E+02,5.799813E+01,0.000000E+00 +355687,fr,1,3.550000E+00,5.791650E+00,5.060362E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998705E+01,-9.000000E+01 +355689,fr,2,3.550000E+00,5.791650E+00,5.060362E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999360E+01,0.000000E+00 +355692,fr,5,3.650000E+00,5.791650E+00,5.060362E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +355698,fr,1,3.650000E+00,5.791650E+00,5.060362E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998846E+01,-9.000000E+01 +355704,fr,2,3.750000E+00,5.791650E+00,5.060362E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +355705,fr,1,3.750000E+00,5.791650E+00,5.060362E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +355710,fr,1,3.750000E+00,5.791650E+00,5.060362E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,-9.000000E+01 +355716,fr,3,3.850000E+00,5.791650E+00,5.060362E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +355717,fr,2,3.850000E+00,5.791650E+00,5.060362E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +355718,fr,2,3.850000E+00,5.791650E+00,5.060362E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +355722,fr,1,3.850000E+00,5.791650E+00,5.060362E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999083E+01,-9.000000E+01 +355728,fr,2,3.950000E+00,5.791650E+00,5.060362E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999192E+01,0.000000E+00 +355729,fr,2,3.950000E+00,5.791650E+00,5.060362E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999192E+01,0.000000E+00 +355740,fr,1,4.050000E+00,5.791650E+00,5.060362E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +355744,fr,1,4.050000E+00,5.791650E+00,5.060362E+01,1.500000E+01,Active Shallow Crust,2.400063E+02,5.800575E+01,0.000000E+00 +355754,fr,1,4.150000E+00,5.791650E+00,5.060362E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +355755,fr,1,4.150000E+00,5.791650E+00,5.060362E+01,5.000000E+00,Active Shallow Crust,2.400094E+02,5.799743E+01,0.000000E+00 +355762,fr,1,4.150000E+00,5.791650E+00,5.060362E+01,1.500000E+01,Active Shallow Crust,1.288967E+02,8.999358E+01,0.000000E+00 +355765,fr,2,4.250000E+00,5.791650E+00,5.060362E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +355766,fr,1,4.250000E+00,5.791650E+00,5.060362E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +355770,fr,1,4.250000E+00,5.791650E+00,5.060362E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999133E+01,-9.000000E+01 +355777,fr,1,4.350000E+00,5.791650E+00,5.060362E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +355784,fr,1,4.350000E+00,5.791650E+00,5.060362E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +355800,fr,1,4.550000E+00,5.791650E+00,5.060362E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +355824,fr,1,4.750000E+00,5.791650E+00,5.060362E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +355839,fr,1,4.850000E+00,5.791650E+00,5.060362E+01,5.000000E+00,Active Shallow Crust,2.400188E+02,5.800277E+01,0.000000E+00 +355842,fr,1,4.850000E+00,5.791650E+00,5.060362E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +355858,fr,1,4.950000E+00,5.791650E+00,5.060362E+01,1.500000E+01,Active Shallow Crust,1.288881E+02,8.998973E+01,0.000000E+00 +355861,fr,1,5.050000E+00,5.791650E+00,5.060362E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +355909,fr,1,5.450000E+00,5.791650E+00,5.060362E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +355945,fr,1,5.750000E+00,5.791650E+00,5.060362E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +356041,fr,1,6.550000E+00,5.791650E+00,5.060362E+01,1.500000E+01,Active Shallow Crust,3.599999E+02,8.999007E+01,0.000000E+00 +356196,fr,1,3.850000E+00,1.154630E+00,5.266268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +356642,fr,1,3.550000E+00,5.972220E+00,4.329256E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999266E+01,0.000000E+00 +356644,fr,1,3.550000E+00,5.972220E+00,4.329256E+01,1.500000E+01,Active Shallow Crust,2.400112E+02,5.799924E+01,0.000000E+00 +356676,fr,1,3.850000E+00,5.972220E+00,4.329256E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +356688,fr,1,3.950000E+00,5.972220E+00,4.329256E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +356739,fr,1,4.350000E+00,5.972220E+00,4.329256E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.799599E+01,0.000000E+00 +357291,fr,1,4.950000E+00,2.881770E+00,5.257416E+01,5.000000E+00,Active Shallow Crust,2.400151E+02,5.800512E+01,0.000000E+00 +357651,fr,1,3.950000E+00,8.172100E-01,5.213939E+01,5.000000E+00,Active Shallow Crust,2.400208E+02,5.800519E+01,0.000000E+00 +358080,fr,2,3.550000E+00,-7.030300E-01,4.772109E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +358092,fr,1,3.650000E+00,-7.030300E-01,4.772109E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +358093,fr,1,3.650000E+00,-7.030300E-01,4.772109E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +358095,fr,1,3.650000E+00,-7.030300E-01,4.772109E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801303E+01,0.000000E+00 +358110,fr,1,3.750000E+00,-7.030300E-01,4.772109E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,-9.000000E+01 +358116,fr,2,3.850000E+00,-7.030300E-01,4.772109E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +358131,fr,1,3.950000E+00,-7.030300E-01,4.772109E+01,5.000000E+00,Active Shallow Crust,2.400199E+02,5.800495E+01,0.000000E+00 +358144,fr,1,4.050000E+00,-7.030300E-01,4.772109E+01,1.500000E+01,Active Shallow Crust,2.400061E+02,5.800583E+01,0.000000E+00 +358152,fr,1,4.150000E+00,-7.030300E-01,4.772109E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +358164,fr,1,4.250000E+00,-7.030300E-01,4.772109E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +358176,fr,1,4.350000E+00,-7.030300E-01,4.772109E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +358200,fr,1,4.550000E+00,-7.030300E-01,4.772109E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +358230,fr,1,4.750000E+00,-7.030300E-01,4.772109E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +358248,fr,1,4.950000E+00,-7.030300E-01,4.772109E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +358573,fr,1,3.650000E+00,2.931120E+00,5.232129E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +358609,fr,1,3.950000E+00,2.931120E+00,5.232129E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +359040,fr,1,3.550000E+00,-2.329040E+00,5.053924E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +359054,fr,1,3.650000E+00,-2.329040E+00,5.053924E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998858E+01,0.000000E+00 +359078,fr,1,3.850000E+00,-2.329040E+00,5.053924E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +359121,fr,1,4.150000E+00,-2.329040E+00,5.053924E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999358E+01,0.000000E+00 +360960,fr,1,3.550000E+00,1.196580E+00,4.314384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +360984,fr,2,3.750000E+00,1.196580E+00,4.314384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +360985,fr,1,3.750000E+00,1.196580E+00,4.314384E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +360988,fr,1,3.750000E+00,1.196580E+00,4.314384E+01,1.500000E+01,Active Shallow Crust,2.400078E+02,5.801760E+01,0.000000E+00 +361008,fr,2,3.950000E+00,1.196580E+00,4.314384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +361021,fr,1,4.050000E+00,1.196580E+00,4.314384E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +361081,fr,1,4.550000E+00,1.196580E+00,4.314384E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +361506,fr,1,4.050000E+00,3.788020E+00,4.002770E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998902E+01,-9.000000E+01 +361524,fr,1,4.250000E+00,3.788020E+00,4.002770E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +361525,fr,1,4.250000E+00,3.788020E+00,4.002770E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +361560,fr,1,4.550000E+00,3.788020E+00,4.002770E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +362400,fr,1,3.550000E+00,6.209760E+00,4.530944E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999290E+01,0.000000E+00 +362401,fr,1,3.550000E+00,6.209760E+00,4.530944E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999290E+01,0.000000E+00 +362403,fr,1,3.550000E+00,6.209760E+00,4.530944E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799862E+01,0.000000E+00 +362407,fr,1,3.550000E+00,6.209760E+00,4.530944E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999283E+01,-9.000000E+01 +362412,fr,1,3.650000E+00,6.209760E+00,4.530944E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998736E+01,0.000000E+00 +362413,fr,1,3.650000E+00,6.209760E+00,4.530944E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998736E+01,0.000000E+00 +362417,fr,1,3.650000E+00,6.209760E+00,4.530944E+01,2.750000E+01,Active Shallow Crust,2.400017E+02,5.801237E+01,0.000000E+00 +362418,fr,1,3.650000E+00,6.209760E+00,4.530944E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998721E+01,-9.000000E+01 +362421,fr,1,3.650000E+00,6.209760E+00,4.530944E+01,5.000000E+00,Active Shallow Crust,1.289009E+02,8.996350E+01,0.000000E+00 +362422,fr,1,3.650000E+00,6.209760E+00,4.530944E+01,1.500000E+01,Active Shallow Crust,1.289009E+02,8.996350E+01,0.000000E+00 +362424,fr,1,3.750000E+00,6.209760E+00,4.530944E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998873E+01,0.000000E+00 +362425,fr,2,3.750000E+00,6.209760E+00,4.530944E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998873E+01,0.000000E+00 +362431,fr,1,3.750000E+00,6.209760E+00,4.530944E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998860E+01,-9.000000E+01 +362436,fr,2,3.850000E+00,6.209760E+00,4.530944E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +362438,fr,1,3.850000E+00,6.209760E+00,4.530944E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +362440,fr,1,3.850000E+00,6.209760E+00,4.530944E+01,1.500000E+01,Active Shallow Crust,2.400107E+02,5.799714E+01,0.000000E+00 +362448,fr,2,3.950000E+00,6.209760E+00,4.530944E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999105E+01,0.000000E+00 +362460,fr,1,4.050000E+00,6.209760E+00,4.530944E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998804E+01,0.000000E+00 +362472,fr,1,4.150000E+00,6.209760E+00,4.530944E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +362503,fr,1,4.350000E+00,6.209760E+00,4.530944E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998858E+01,-9.000000E+01 +362505,fr,1,4.350000E+00,6.209760E+00,4.530944E+01,5.000000E+00,Active Shallow Crust,1.288988E+02,8.998246E+01,0.000000E+00 +362520,fr,1,4.550000E+00,6.209760E+00,4.530944E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999103E+01,0.000000E+00 +362533,fr,1,4.650000E+00,6.209760E+00,4.530944E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +362544,fr,1,4.750000E+00,6.209760E+00,4.530944E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +362557,fr,1,4.850000E+00,6.209760E+00,4.530944E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +362718,fr,1,6.150000E+00,6.209762E+00,4.530944E+01,5.942511E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +362880,fr,1,3.550000E+00,3.337510E+00,4.091364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998857E+01,0.000000E+00 +362881,fr,1,3.550000E+00,3.337510E+00,4.091364E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998857E+01,0.000000E+00 +362883,fr,1,3.550000E+00,3.337510E+00,4.091364E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799786E+01,0.000000E+00 +362905,fr,1,3.750000E+00,3.337510E+00,4.091364E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999092E+01,0.000000E+00 +362931,fr,1,3.950000E+00,3.337510E+00,4.091364E+01,5.000000E+00,Active Shallow Crust,2.400191E+02,5.800498E+01,0.000000E+00 +363009,fr,1,4.550000E+00,3.337510E+00,4.091364E+01,5.000000E+00,Active Shallow Crust,1.288951E+02,8.998563E+01,0.000000E+00 +363360,fr,1,3.550000E+00,1.247280E+00,5.073420E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +363366,fr,1,3.550000E+00,1.247280E+00,5.073420E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,-9.000000E+01 +363372,fr,2,3.650000E+00,1.247280E+00,5.073420E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +363373,fr,1,3.650000E+00,1.247280E+00,5.073420E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +363390,fr,1,3.750000E+00,1.247280E+00,5.073420E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,-9.000000E+01 +363396,fr,1,3.850000E+00,1.247280E+00,5.073420E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +363399,fr,1,3.850000E+00,1.247280E+00,5.073420E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799797E+01,0.000000E+00 +363402,fr,1,3.850000E+00,1.247280E+00,5.073420E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,-9.000000E+01 +363492,fr,1,4.650000E+00,1.247280E+00,5.073420E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +363840,fr,2,3.550000E+00,8.618620E+00,4.981560E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998698E+01,0.000000E+00 +363841,fr,2,3.550000E+00,8.618620E+00,4.981560E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998698E+01,0.000000E+00 +363852,fr,1,3.650000E+00,8.618620E+00,4.981560E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998840E+01,0.000000E+00 +363853,fr,1,3.650000E+00,8.618620E+00,4.981560E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998840E+01,0.000000E+00 +363855,fr,2,3.650000E+00,8.618620E+00,4.981560E+01,5.000000E+00,Active Shallow Crust,2.399992E+02,5.801498E+01,0.000000E+00 +363859,fr,3,3.650000E+00,8.618620E+00,4.981560E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998827E+01,-9.000000E+01 +363861,fr,2,3.650000E+00,8.618620E+00,4.981560E+01,5.000000E+00,Active Shallow Crust,1.289022E+02,8.996358E+01,0.000000E+00 +363863,fr,1,3.650000E+00,8.618620E+00,4.981560E+01,2.750000E+01,Active Shallow Crust,1.289022E+02,8.996358E+01,0.000000E+00 +363864,fr,1,3.750000E+00,8.618620E+00,4.981560E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +363868,fr,1,3.750000E+00,8.618620E+00,4.981560E+01,1.500000E+01,Active Shallow Crust,2.400092E+02,5.801813E+01,0.000000E+00 +363876,fr,1,3.850000E+00,8.618620E+00,4.981560E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +363882,fr,2,3.850000E+00,8.618620E+00,4.981560E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,-9.000000E+01 +363888,fr,1,3.950000E+00,8.618620E+00,4.981560E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999179E+01,0.000000E+00 +363898,fr,1,3.950000E+00,8.618620E+00,4.981560E+01,1.500000E+01,Active Shallow Crust,1.289020E+02,8.999179E+01,0.000000E+00 +363903,fr,2,4.050000E+00,8.618620E+00,4.981560E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.800564E+01,0.000000E+00 +363925,fr,1,4.250000E+00,8.618620E+00,4.981560E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998837E+01,0.000000E+00 +363936,fr,2,4.350000E+00,8.618620E+00,4.981560E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +363939,fr,1,4.350000E+00,8.618620E+00,4.981560E+01,5.000000E+00,Active Shallow Crust,2.400096E+02,5.799621E+01,0.000000E+00 +363949,fr,1,4.450000E+00,8.618620E+00,4.981560E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +363954,fr,1,4.450000E+00,8.618620E+00,4.981560E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,-9.000000E+01 +363956,fr,1,4.450000E+00,8.618620E+00,4.981560E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,-9.000000E+01 +363975,fr,1,4.650000E+00,8.618620E+00,4.981560E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799456E+01,0.000000E+00 +364009,fr,1,4.950000E+00,8.618620E+00,4.981560E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +364070,fr,1,5.450000E+00,8.618620E+00,4.981560E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +364091,fr,1,5.550000E+00,8.618620E+00,4.981560E+01,2.750000E+01,Active Shallow Crust,1.288736E+02,8.998964E+01,0.000000E+00 +364806,fr,1,3.550000E+00,-2.977980E+00,4.353976E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,-9.000000E+01 +364900,fr,1,4.350000E+00,-2.977980E+00,4.353976E+01,1.500000E+01,Active Shallow Crust,2.400078E+02,5.799568E+01,0.000000E+00 +364920,fr,1,4.550000E+00,-2.977980E+00,4.353976E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +365280,fr,2,3.550000E+00,7.268950E+00,4.477770E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999284E+01,0.000000E+00 +365281,fr,1,3.550000E+00,7.268950E+00,4.477770E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999284E+01,0.000000E+00 +365282,fr,1,3.550000E+00,7.268950E+00,4.477770E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999284E+01,0.000000E+00 +365283,fr,1,3.550000E+00,7.268950E+00,4.477770E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799921E+01,0.000000E+00 +365286,fr,1,3.550000E+00,7.268950E+00,4.477770E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999276E+01,-9.000000E+01 +365289,fr,1,3.550000E+00,7.268950E+00,4.477770E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.999284E+01,0.000000E+00 +365290,fr,1,3.550000E+00,7.268950E+00,4.477770E+01,1.500000E+01,Active Shallow Crust,1.288972E+02,8.999284E+01,0.000000E+00 +365292,fr,6,3.650000E+00,7.268950E+00,4.477770E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998724E+01,0.000000E+00 +365293,fr,1,3.650000E+00,7.268950E+00,4.477770E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998724E+01,0.000000E+00 +365298,fr,1,3.650000E+00,7.268950E+00,4.477770E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998709E+01,-9.000000E+01 +365304,fr,2,3.750000E+00,7.268950E+00,4.477770E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +365305,fr,1,3.750000E+00,7.268950E+00,4.477770E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +365307,fr,1,3.750000E+00,7.268950E+00,4.477770E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.801866E+01,0.000000E+00 +365313,fr,1,3.750000E+00,7.268950E+00,4.477770E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.996746E+01,0.000000E+00 +365314,fr,1,3.750000E+00,7.268950E+00,4.477770E+01,1.500000E+01,Active Shallow Crust,1.288958E+02,8.996746E+01,0.000000E+00 +365316,fr,2,3.850000E+00,7.268950E+00,4.477770E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +365319,fr,1,3.850000E+00,7.268950E+00,4.477770E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799825E+01,0.000000E+00 +365328,fr,2,3.950000E+00,7.268950E+00,4.477770E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +365329,fr,2,3.950000E+00,7.268950E+00,4.477770E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +365340,fr,3,4.050000E+00,7.268950E+00,4.477770E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999195E+01,0.000000E+00 +365341,fr,1,4.050000E+00,7.268950E+00,4.477770E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999195E+01,0.000000E+00 +365342,fr,1,4.050000E+00,7.268950E+00,4.477770E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999195E+01,0.000000E+00 +365345,fr,1,4.050000E+00,7.268950E+00,4.477770E+01,2.750000E+01,Active Shallow Crust,2.400049E+02,5.800632E+01,0.000000E+00 +365350,fr,2,4.050000E+00,7.268950E+00,4.477770E+01,1.500000E+01,Active Shallow Crust,1.288911E+02,8.999397E+01,0.000000E+00 +365352,fr,1,4.150000E+00,7.268950E+00,4.477770E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +365358,fr,1,4.150000E+00,7.268950E+00,4.477770E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,-9.000000E+01 +365365,fr,2,4.250000E+00,7.268950E+00,4.477770E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +365388,fr,2,4.450000E+00,7.268950E+00,4.477770E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +365400,fr,1,4.550000E+00,7.268950E+00,4.477770E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +365412,fr,1,4.650000E+00,7.268950E+00,4.477770E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +365421,fr,1,4.650000E+00,7.268950E+00,4.477770E+01,5.000000E+00,Active Shallow Crust,1.288913E+02,8.998712E+01,0.000000E+00 +365426,fr,1,4.750000E+00,7.268950E+00,4.477770E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +365442,fr,1,4.850000E+00,7.268950E+00,4.477770E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,-9.000000E+01 +365472,fr,1,5.150000E+00,7.268950E+00,4.477770E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +365496,fr,1,5.350000E+00,7.268950E+00,4.477770E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +365760,fr,1,3.550000E+00,7.498460E+00,4.387427E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999273E+01,0.000000E+00 +365763,fr,3,3.550000E+00,7.498460E+00,4.387427E+01,5.000000E+00,Active Shallow Crust,2.400126E+02,5.799794E+01,0.000000E+00 +365766,fr,1,3.550000E+00,7.498460E+00,4.387427E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999265E+01,-9.000000E+01 +365769,fr,1,3.550000E+00,7.498460E+00,4.387427E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999273E+01,0.000000E+00 +365772,fr,3,3.650000E+00,7.498460E+00,4.387427E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998705E+01,0.000000E+00 +365773,fr,2,3.650000E+00,7.498460E+00,4.387427E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998705E+01,0.000000E+00 +365781,fr,2,3.650000E+00,7.498460E+00,4.387427E+01,5.000000E+00,Active Shallow Crust,1.289006E+02,8.996347E+01,0.000000E+00 +365784,fr,2,3.750000E+00,7.498460E+00,4.387427E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998845E+01,0.000000E+00 +365795,fr,2,3.750000E+00,7.498460E+00,4.387427E+01,2.750000E+01,Active Shallow Crust,1.288963E+02,8.996745E+01,0.000000E+00 +365796,fr,2,3.850000E+00,7.498460E+00,4.387427E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +365799,fr,1,3.850000E+00,7.498460E+00,4.387427E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799763E+01,0.000000E+00 +365809,fr,1,3.950000E+00,7.498460E+00,4.387427E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +365811,fr,1,3.950000E+00,7.498460E+00,4.387427E+01,5.000000E+00,Active Shallow Crust,2.400196E+02,5.800563E+01,0.000000E+00 +365814,fr,1,3.950000E+00,7.498460E+00,4.387427E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,-9.000000E+01 +365817,fr,1,3.950000E+00,7.498460E+00,4.387427E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.999541E+01,0.000000E+00 +365818,fr,1,3.950000E+00,7.498460E+00,4.387427E+01,1.500000E+01,Active Shallow Crust,1.289007E+02,8.999541E+01,0.000000E+00 +365820,fr,2,4.050000E+00,7.498460E+00,4.387427E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999182E+01,0.000000E+00 +365821,fr,1,4.050000E+00,7.498460E+00,4.387427E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999182E+01,0.000000E+00 +365830,fr,1,4.050000E+00,7.498460E+00,4.387427E+01,1.500000E+01,Active Shallow Crust,1.288904E+02,8.999387E+01,0.000000E+00 +365832,fr,1,4.150000E+00,7.498460E+00,4.387427E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +365845,fr,1,4.250000E+00,7.498460E+00,4.387427E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +365847,fr,1,4.250000E+00,7.498460E+00,4.387427E+01,5.000000E+00,Active Shallow Crust,2.400070E+02,5.799422E+01,0.000000E+00 +365856,fr,2,4.350000E+00,7.498460E+00,4.387427E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999132E+01,0.000000E+00 +365858,fr,1,4.350000E+00,7.498460E+00,4.387427E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999132E+01,0.000000E+00 +365860,fr,1,4.350000E+00,7.498460E+00,4.387427E+01,1.500000E+01,Active Shallow Crust,2.400077E+02,5.799592E+01,0.000000E+00 +365865,fr,1,4.350000E+00,7.498460E+00,4.387427E+01,5.000000E+00,Active Shallow Crust,1.288985E+02,8.998293E+01,0.000000E+00 +365876,fr,1,4.450000E+00,7.498460E+00,4.387427E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,-9.000000E+01 +365880,fr,1,4.550000E+00,7.498460E+00,4.387427E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +365884,fr,1,4.550000E+00,7.498460E+00,4.387427E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.799733E+01,0.000000E+00 +365906,fr,1,4.750000E+00,7.498460E+00,4.387427E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999087E+01,0.000000E+00 +365931,fr,1,4.950000E+00,7.498460E+00,4.387427E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.800431E+01,0.000000E+00 +365962,fr,1,5.150000E+00,7.498460E+00,4.387427E+01,1.500000E+01,Active Shallow Crust,1.288853E+02,8.999100E+01,0.000000E+00 +366003,fr,1,5.550000E+00,7.498460E+00,4.387427E+01,5.000000E+00,Active Shallow Crust,2.400267E+02,5.800218E+01,0.000000E+00 +366240,fr,4,3.550000E+00,7.197370E+00,4.529676E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999290E+01,0.000000E+00 +366241,fr,2,3.550000E+00,7.197370E+00,4.529676E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999290E+01,0.000000E+00 +366252,fr,3,3.650000E+00,7.197370E+00,4.529676E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998736E+01,0.000000E+00 +366253,fr,2,3.650000E+00,7.197370E+00,4.529676E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998736E+01,0.000000E+00 +366255,fr,1,3.650000E+00,7.197370E+00,4.529676E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801235E+01,0.000000E+00 +366262,fr,1,3.650000E+00,7.197370E+00,4.529676E+01,1.500000E+01,Active Shallow Crust,1.289006E+02,8.996350E+01,0.000000E+00 +366263,fr,1,3.650000E+00,7.197370E+00,4.529676E+01,2.750000E+01,Active Shallow Crust,1.289006E+02,8.996350E+01,0.000000E+00 +366264,fr,1,3.750000E+00,7.197370E+00,4.529676E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998873E+01,0.000000E+00 +366274,fr,1,3.750000E+00,7.197370E+00,4.529676E+01,1.500000E+01,Active Shallow Crust,1.288974E+02,8.996687E+01,0.000000E+00 +366276,fr,2,3.850000E+00,7.197370E+00,4.529676E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +366277,fr,1,3.850000E+00,7.197370E+00,4.529676E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +366278,fr,1,3.850000E+00,7.197370E+00,4.529676E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +366284,fr,1,3.850000E+00,7.197370E+00,4.529676E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,-9.000000E+01 +366286,fr,1,3.850000E+00,7.197370E+00,4.529676E+01,1.500000E+01,Active Shallow Crust,1.288954E+02,8.999498E+01,0.000000E+00 +366292,fr,1,3.950000E+00,7.197370E+00,4.529676E+01,1.500000E+01,Active Shallow Crust,2.400197E+02,5.800563E+01,0.000000E+00 +366325,fr,1,4.250000E+00,7.197370E+00,4.529676E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +366326,fr,1,4.250000E+00,7.197370E+00,4.529676E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +366370,fr,1,4.550000E+00,7.197370E+00,4.529676E+01,1.500000E+01,Active Shallow Crust,1.288942E+02,8.998607E+01,0.000000E+00 +366393,fr,1,4.750000E+00,7.197370E+00,4.529676E+01,5.000000E+00,Active Shallow Crust,1.288895E+02,8.998811E+01,0.000000E+00 +366902,fr,1,5.050000E+00,4.402640E+00,4.254899E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +367213,fr,1,3.650000E+00,-6.901930E+00,4.681539E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998770E+01,0.000000E+00 +367680,fr,2,3.550000E+00,8.005470E+00,4.836345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998660E+01,0.000000E+00 +367688,fr,1,3.550000E+00,8.005470E+00,4.836345E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998644E+01,-9.000000E+01 +367692,fr,2,3.650000E+00,8.005470E+00,4.836345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998806E+01,0.000000E+00 +367693,fr,1,3.650000E+00,8.005470E+00,4.836345E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998806E+01,0.000000E+00 +367694,fr,2,3.650000E+00,8.005470E+00,4.836345E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998806E+01,0.000000E+00 +367695,fr,2,3.650000E+00,8.005470E+00,4.836345E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801384E+01,0.000000E+00 +367696,fr,1,3.650000E+00,8.005470E+00,4.836345E+01,1.500000E+01,Active Shallow Crust,2.400010E+02,5.801384E+01,0.000000E+00 +367701,fr,1,3.650000E+00,8.005470E+00,4.836345E+01,5.000000E+00,Active Shallow Crust,1.288999E+02,8.996356E+01,0.000000E+00 +367706,fr,1,3.750000E+00,8.005470E+00,4.836345E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +367707,fr,2,3.750000E+00,8.005470E+00,4.836345E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.801661E+01,0.000000E+00 +367716,fr,1,3.850000E+00,8.005470E+00,4.836345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +367719,fr,1,3.850000E+00,8.005470E+00,4.836345E+01,5.000000E+00,Active Shallow Crust,2.400093E+02,5.799904E+01,0.000000E+00 +367721,fr,1,3.850000E+00,8.005470E+00,4.836345E+01,2.750000E+01,Active Shallow Crust,2.400093E+02,5.799904E+01,0.000000E+00 +367722,fr,1,3.850000E+00,8.005470E+00,4.836345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,-9.000000E+01 +367726,fr,1,3.850000E+00,8.005470E+00,4.836345E+01,1.500000E+01,Active Shallow Crust,1.288970E+02,8.999052E+01,0.000000E+00 +367728,fr,1,3.950000E+00,8.005470E+00,4.836345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999155E+01,0.000000E+00 +367734,fr,1,3.950000E+00,8.005470E+00,4.836345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999145E+01,-9.000000E+01 +367737,fr,1,3.950000E+00,8.005470E+00,4.836345E+01,5.000000E+00,Active Shallow Crust,1.288993E+02,8.999577E+01,0.000000E+00 +367750,fr,1,4.050000E+00,8.005470E+00,4.836345E+01,1.500000E+01,Active Shallow Crust,1.288910E+02,8.999435E+01,0.000000E+00 +367752,fr,1,4.150000E+00,8.005470E+00,4.836345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999329E+01,0.000000E+00 +367767,fr,1,4.250000E+00,8.005470E+00,4.836345E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.799463E+01,0.000000E+00 +367779,fr,1,4.350000E+00,8.005470E+00,4.836345E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.799627E+01,0.000000E+00 +367812,fr,1,4.650000E+00,8.005470E+00,4.836345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998867E+01,0.000000E+00 +367815,fr,1,4.650000E+00,8.005470E+00,4.836345E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799404E+01,0.000000E+00 +367860,fr,1,5.050000E+00,8.005470E+00,4.836345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +368269,fr,1,4.450000E+00,6.171990E+00,4.264701E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +368641,fr,1,3.550000E+00,4.338950E+00,4.037726E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999232E+01,0.000000E+00 +368678,fr,1,3.850000E+00,4.338950E+00,4.037726E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998912E+01,0.000000E+00 +368699,fr,1,3.950000E+00,4.338950E+00,4.037726E+01,2.750000E+01,Active Shallow Crust,1.289013E+02,8.999273E+01,0.000000E+00 +368820,fr,1,5.050000E+00,4.338950E+00,4.037726E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +369125,fr,1,3.550000E+00,1.889560E+00,4.376273E+01,2.750000E+01,Active Shallow Crust,2.400116E+02,5.799816E+01,0.000000E+00 +369153,fr,1,3.750000E+00,1.889560E+00,4.376273E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.996745E+01,0.000000E+00 +369165,fr,1,3.850000E+00,1.889560E+00,4.376273E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999420E+01,0.000000E+00 +369168,fr,2,3.950000E+00,1.889560E+00,4.376273E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +369192,fr,1,4.150000E+00,1.889560E+00,4.376273E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +369234,fr,1,4.450000E+00,1.889560E+00,4.376273E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,-9.000000E+01 +369601,fr,1,3.550000E+00,3.611750E+00,4.817555E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +370092,fr,2,3.650000E+00,-2.209790E+00,4.678622E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999077E+01,0.000000E+00 +370113,fr,1,3.750000E+00,-2.209790E+00,4.678622E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996724E+01,0.000000E+00 +370128,fr,1,3.950000E+00,-2.209790E+00,4.678622E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +370141,fr,1,4.050000E+00,-2.209790E+00,4.678622E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +370149,fr,1,4.050000E+00,-2.209790E+00,4.678622E+01,5.000000E+00,Active Shallow Crust,1.288907E+02,8.999320E+01,0.000000E+00 +370152,fr,1,4.150000E+00,-2.209790E+00,4.678622E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +370193,fr,1,4.450000E+00,-2.209790E+00,4.678622E+01,2.750000E+01,Active Shallow Crust,2.400053E+02,5.799481E+01,0.000000E+00 +370428,fr,1,6.450000E+00,-2.209782E+00,4.678622E+01,8.491219E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +370461,fr,1,6.650000E+00,-2.209798E+00,4.678622E+01,1.068981E+01,Active Shallow Crust,1.288211E+02,8.998987E+01,0.000000E+00 +370560,fr,2,3.550000E+00,5.821870E+00,4.499761E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999287E+01,0.000000E+00 +370561,fr,1,3.550000E+00,5.821870E+00,4.499761E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999287E+01,0.000000E+00 +370563,fr,1,3.550000E+00,5.821870E+00,4.499761E+01,5.000000E+00,Active Shallow Crust,2.400126E+02,5.799807E+01,0.000000E+00 +370572,fr,1,3.650000E+00,5.821870E+00,4.499761E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998729E+01,0.000000E+00 +370573,fr,1,3.650000E+00,5.821870E+00,4.499761E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998729E+01,0.000000E+00 +370574,fr,1,3.650000E+00,5.821870E+00,4.499761E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998729E+01,0.000000E+00 +370585,fr,1,3.750000E+00,5.821870E+00,4.499761E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998867E+01,0.000000E+00 +370591,fr,1,3.750000E+00,5.821870E+00,4.499761E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998854E+01,-9.000000E+01 +370596,fr,1,3.850000E+00,5.821870E+00,4.499761E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +370608,fr,4,3.950000E+00,5.821870E+00,4.499761E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +370611,fr,1,3.950000E+00,5.821870E+00,4.499761E+01,5.000000E+00,Active Shallow Crust,2.400198E+02,5.800419E+01,0.000000E+00 +370614,fr,1,3.950000E+00,5.821870E+00,4.499761E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999090E+01,-9.000000E+01 +370618,fr,1,3.950000E+00,5.821870E+00,4.499761E+01,1.500000E+01,Active Shallow Crust,1.289012E+02,8.999326E+01,0.000000E+00 +370620,fr,2,4.050000E+00,5.821870E+00,4.499761E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999198E+01,0.000000E+00 +370623,fr,1,4.050000E+00,5.821870E+00,4.499761E+01,5.000000E+00,Active Shallow Crust,2.400055E+02,5.800626E+01,0.000000E+00 +370629,fr,1,4.050000E+00,5.821870E+00,4.499761E+01,5.000000E+00,Active Shallow Crust,1.288896E+02,8.999399E+01,0.000000E+00 +370636,fr,1,4.150000E+00,5.821870E+00,4.499761E+01,1.500000E+01,Active Shallow Crust,2.400082E+02,5.799754E+01,0.000000E+00 +370656,fr,1,4.350000E+00,5.821870E+00,4.499761E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998865E+01,0.000000E+00 +370666,fr,1,4.350000E+00,5.821870E+00,4.499761E+01,1.500000E+01,Active Shallow Crust,1.288985E+02,8.998244E+01,0.000000E+00 +370671,fr,1,4.450000E+00,5.821870E+00,4.499761E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.799434E+01,0.000000E+00 +370674,fr,1,4.450000E+00,5.821870E+00,4.499761E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,-9.000000E+01 +370683,fr,1,4.550000E+00,5.821870E+00,4.499761E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.799751E+01,0.000000E+00 +370692,fr,1,4.650000E+00,5.821870E+00,4.499761E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +370713,fr,1,4.750000E+00,5.821870E+00,4.499761E+01,5.000000E+00,Active Shallow Crust,1.288895E+02,8.998808E+01,0.000000E+00 +370716,fr,1,4.850000E+00,5.821870E+00,4.499761E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +370909,fr,1,6.450000E+00,5.821870E+00,4.499761E+01,1.500000E+01,Active Shallow Crust,3.599999E+02,8.999012E+01,0.000000E+00 +371064,fr,2,3.750000E+00,3.503290E+00,4.053112E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999087E+01,0.000000E+00 +371130,fr,1,4.250000E+00,3.503290E+00,4.053112E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,-9.000000E+01 +371832,fr,1,6.150000E+00,1.361452E+00,4.811792E+01,6.011322E+00,Active Shallow Crust,3.600000E+02,8.999004E+01,0.000000E+00 +372000,fr,1,3.550000E+00,1.817860E+00,4.958505E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +372012,fr,1,3.650000E+00,1.817860E+00,4.958505E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +372048,fr,1,3.950000E+00,1.817860E+00,4.958505E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +372072,fr,1,4.150000E+00,1.817860E+00,4.958505E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +372085,fr,1,4.250000E+00,1.817860E+00,4.958505E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +372183,fr,1,5.050000E+00,1.817860E+00,4.958505E+01,5.000000E+00,Active Shallow Crust,2.400238E+02,5.799790E+01,0.000000E+00 +372480,fr,2,3.550000E+00,1.001740E+00,5.033374E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +372481,fr,1,3.550000E+00,1.001740E+00,5.033374E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +372482,fr,1,3.550000E+00,1.001740E+00,5.033374E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +372505,fr,1,3.750000E+00,1.001740E+00,5.033374E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +372516,fr,1,3.850000E+00,1.001740E+00,5.033374E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +372519,fr,1,3.850000E+00,1.001740E+00,5.033374E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799792E+01,0.000000E+00 +372528,fr,1,3.950000E+00,1.001740E+00,5.033374E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +372555,fr,1,4.150000E+00,1.001740E+00,5.033374E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.799752E+01,0.000000E+00 +372622,fr,1,4.650000E+00,1.001740E+00,5.033374E+01,1.500000E+01,Active Shallow Crust,1.288901E+02,8.998698E+01,0.000000E+00 +372960,fr,2,3.550000E+00,4.450450E+00,4.727917E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999316E+01,0.000000E+00 +372972,fr,1,3.650000E+00,4.450450E+00,4.727917E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998781E+01,0.000000E+00 +372975,fr,1,3.650000E+00,4.450450E+00,4.727917E+01,5.000000E+00,Active Shallow Crust,2.400002E+02,5.801372E+01,0.000000E+00 +372993,fr,2,3.750000E+00,4.450450E+00,4.727917E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.996751E+01,0.000000E+00 +373008,fr,1,3.950000E+00,4.450450E+00,4.727917E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999136E+01,0.000000E+00 +373038,fr,1,4.150000E+00,4.450450E+00,4.727917E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +373054,fr,1,4.250000E+00,4.450450E+00,4.727917E+01,1.500000E+01,Active Shallow Crust,1.288950E+02,8.998043E+01,0.000000E+00 +373057,fr,1,4.350000E+00,4.450450E+00,4.727917E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +373093,fr,1,4.650000E+00,4.450450E+00,4.727917E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +373104,fr,1,4.750000E+00,4.450450E+00,4.727917E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +373105,fr,1,4.750000E+00,4.450450E+00,4.727917E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +373452,fr,1,3.650000E+00,4.517640E+00,4.376574E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998702E+01,0.000000E+00 +373459,fr,1,3.650000E+00,4.517640E+00,4.376574E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998687E+01,-9.000000E+01 +373464,fr,1,3.750000E+00,4.517640E+00,4.376574E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +373470,fr,1,3.750000E+00,4.517640E+00,4.376574E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998830E+01,-9.000000E+01 +373476,fr,1,3.850000E+00,4.517640E+00,4.376574E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +373477,fr,1,3.850000E+00,4.517640E+00,4.376574E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +373478,fr,1,3.850000E+00,4.517640E+00,4.376574E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +373488,fr,1,3.950000E+00,4.517640E+00,4.376574E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +373495,fr,1,3.950000E+00,4.517640E+00,4.376574E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999071E+01,-9.000000E+01 +373501,fr,1,4.050000E+00,4.517640E+00,4.376574E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999181E+01,0.000000E+00 +373506,fr,1,4.050000E+00,4.517640E+00,4.376574E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999171E+01,-9.000000E+01 +373512,fr,2,4.150000E+00,4.517640E+00,4.376574E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998905E+01,0.000000E+00 +373518,fr,1,4.150000E+00,4.517640E+00,4.376574E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998892E+01,-9.000000E+01 +373524,fr,1,4.250000E+00,4.517640E+00,4.376574E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +373525,fr,1,4.250000E+00,4.517640E+00,4.376574E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +373536,fr,1,4.350000E+00,4.517640E+00,4.376574E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999130E+01,0.000000E+00 +373549,fr,1,4.450000E+00,4.517640E+00,4.376574E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +373559,fr,1,4.450000E+00,4.517640E+00,4.376574E+01,2.750000E+01,Active Shallow Crust,1.288926E+02,8.999354E+01,0.000000E+00 +373572,fr,1,4.650000E+00,4.517640E+00,4.376574E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +373920,fr,1,3.550000E+00,6.157550E+00,5.052694E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998718E+01,0.000000E+00 +373921,fr,3,3.550000E+00,6.157550E+00,5.052694E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998718E+01,0.000000E+00 +373933,fr,1,3.650000E+00,6.157550E+00,5.052694E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998857E+01,0.000000E+00 +373934,fr,1,3.650000E+00,6.157550E+00,5.052694E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998857E+01,0.000000E+00 +373935,fr,1,3.650000E+00,6.157550E+00,5.052694E+01,5.000000E+00,Active Shallow Crust,2.400027E+02,5.801195E+01,0.000000E+00 +373936,fr,1,3.650000E+00,6.157550E+00,5.052694E+01,1.500000E+01,Active Shallow Crust,2.400027E+02,5.801195E+01,0.000000E+00 +373938,fr,1,3.650000E+00,6.157550E+00,5.052694E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998844E+01,-9.000000E+01 +373944,fr,5,3.750000E+00,6.157550E+00,5.052694E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +373945,fr,1,3.750000E+00,6.157550E+00,5.052694E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +373947,fr,1,3.750000E+00,6.157550E+00,5.052694E+01,5.000000E+00,Active Shallow Crust,2.400093E+02,5.801715E+01,0.000000E+00 +373957,fr,1,3.850000E+00,6.157550E+00,5.052694E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999092E+01,0.000000E+00 +373968,fr,1,3.950000E+00,6.157550E+00,5.052694E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999191E+01,0.000000E+00 +373971,fr,1,3.950000E+00,6.157550E+00,5.052694E+01,5.000000E+00,Active Shallow Crust,2.400206E+02,5.800529E+01,0.000000E+00 +373976,fr,1,3.950000E+00,6.157550E+00,5.052694E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999181E+01,-9.000000E+01 +374028,fr,1,4.450000E+00,6.157550E+00,5.052694E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999090E+01,0.000000E+00 +374076,fr,1,4.850000E+00,6.157550E+00,5.052694E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +374112,fr,1,5.150000E+00,6.157550E+00,5.052694E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +374136,fr,1,5.350000E+00,6.157550E+00,5.052694E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +374400,fr,1,3.550000E+00,3.123880E+00,5.130513E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +374403,fr,1,3.550000E+00,3.123880E+00,5.130513E+01,5.000000E+00,Active Shallow Crust,2.400130E+02,5.799844E+01,0.000000E+00 +374413,fr,1,3.650000E+00,3.123880E+00,5.130513E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998876E+01,0.000000E+00 +374415,fr,1,3.650000E+00,3.123880E+00,5.130513E+01,5.000000E+00,Active Shallow Crust,2.400022E+02,5.801271E+01,0.000000E+00 +374466,fr,1,4.050000E+00,3.123880E+00,5.130513E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998924E+01,-9.000000E+01 +374472,fr,1,4.150000E+00,3.123880E+00,5.130513E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +374546,fr,1,4.750000E+00,3.123880E+00,5.130513E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +375360,fr,1,3.550000E+00,3.310540E+00,4.225701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998881E+01,0.000000E+00 +375361,fr,1,3.550000E+00,3.310540E+00,4.225701E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998881E+01,0.000000E+00 +375372,fr,1,3.650000E+00,3.310540E+00,4.225701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +375378,fr,1,3.650000E+00,3.310540E+00,4.225701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +375384,fr,1,3.750000E+00,3.310540E+00,4.225701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +375408,fr,1,3.950000E+00,3.310540E+00,4.225701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +375420,fr,2,4.050000E+00,3.310540E+00,4.225701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +375421,fr,1,4.050000E+00,3.310540E+00,4.225701E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +375468,fr,1,4.450000E+00,3.310540E+00,4.225701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998941E+01,0.000000E+00 +375492,fr,1,4.650000E+00,3.310540E+00,4.225701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +375840,fr,2,3.550000E+00,-1.023990E+00,4.361728E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +375849,fr,1,3.550000E+00,-1.023990E+00,4.361728E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999361E+01,0.000000E+00 +375868,fr,1,3.750000E+00,-1.023990E+00,4.361728E+01,1.500000E+01,Active Shallow Crust,2.400080E+02,5.801758E+01,0.000000E+00 +375900,fr,1,4.050000E+00,-1.023990E+00,4.361728E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +375912,fr,1,4.150000E+00,-1.023990E+00,4.361728E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +375938,fr,1,4.350000E+00,-1.023990E+00,4.361728E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +375963,fr,1,4.550000E+00,-1.023990E+00,4.361728E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799715E+01,0.000000E+00 +376321,fr,1,3.550000E+00,3.976930E+00,4.073483E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998854E+01,0.000000E+00 +376322,fr,1,3.550000E+00,3.976930E+00,4.073483E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998854E+01,0.000000E+00 +376323,fr,1,3.550000E+00,3.976930E+00,4.073483E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799829E+01,0.000000E+00 +376337,fr,1,3.650000E+00,3.976930E+00,4.073483E+01,2.750000E+01,Active Shallow Crust,2.400004E+02,5.801267E+01,0.000000E+00 +376344,fr,1,3.750000E+00,3.976930E+00,4.073483E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999090E+01,0.000000E+00 +376356,fr,1,3.850000E+00,3.976930E+00,4.073483E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +376370,fr,1,3.950000E+00,3.976930E+00,4.073483E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +376800,fr,1,3.550000E+00,-1.980370E+00,4.199071E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +376801,fr,1,3.550000E+00,-1.980370E+00,4.199071E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +376824,fr,2,3.750000E+00,-1.980370E+00,4.199071E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +376848,fr,1,3.950000E+00,-1.980370E+00,4.199071E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +376860,fr,1,4.050000E+00,-1.980370E+00,4.199071E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +376872,fr,1,4.150000E+00,-1.980370E+00,4.199071E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +376896,fr,1,4.350000E+00,-1.980370E+00,4.199071E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +376923,fr,1,4.550000E+00,-1.980370E+00,4.199071E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799710E+01,0.000000E+00 +377280,fr,1,3.550000E+00,3.657130E+00,4.082482E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +377301,fr,1,3.650000E+00,3.657130E+00,4.082482E+01,5.000000E+00,Active Shallow Crust,1.289016E+02,8.996342E+01,0.000000E+00 +377305,fr,1,3.750000E+00,3.657130E+00,4.082482E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +377316,fr,1,3.850000E+00,3.657130E+00,4.082482E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +377353,fr,1,4.150000E+00,3.657130E+00,4.082482E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +377772,fr,1,3.650000E+00,4.294000E-02,4.535195E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +377796,fr,1,3.850000E+00,4.294000E-02,4.535195E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +378084,fr,1,6.250000E+00,4.294389E-02,4.535195E+01,6.744814E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +378240,fr,1,3.550000E+00,3.292460E+00,4.117751E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +378249,fr,1,3.550000E+00,3.292460E+00,4.117751E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999431E+01,0.000000E+00 +378252,fr,1,3.650000E+00,3.292460E+00,4.117751E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +378264,fr,1,3.750000E+00,3.292460E+00,4.117751E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999096E+01,0.000000E+00 +378285,fr,1,3.850000E+00,3.292460E+00,4.117751E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999329E+01,0.000000E+00 +378289,fr,1,3.950000E+00,3.292460E+00,4.117751E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +378300,fr,1,4.050000E+00,3.292460E+00,4.117751E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +378384,fr,1,4.750000E+00,3.292460E+00,4.117751E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +378720,fr,2,3.550000E+00,7.687190E+00,4.574599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999297E+01,0.000000E+00 +378721,fr,3,3.550000E+00,7.687190E+00,4.574599E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999297E+01,0.000000E+00 +378736,fr,2,3.650000E+00,7.687190E+00,4.574599E+01,1.500000E+01,Active Shallow Crust,2.400012E+02,5.801303E+01,0.000000E+00 +378741,fr,2,3.650000E+00,7.687190E+00,4.574599E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.996351E+01,0.000000E+00 +378744,fr,4,3.750000E+00,7.687190E+00,4.574599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +378745,fr,1,3.750000E+00,7.687190E+00,4.574599E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +378760,fr,1,3.850000E+00,7.687190E+00,4.574599E+01,1.500000E+01,Active Shallow Crust,2.400108E+02,5.799832E+01,0.000000E+00 +378769,fr,1,3.950000E+00,7.687190E+00,4.574599E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999112E+01,0.000000E+00 +378793,fr,1,4.150000E+00,7.687190E+00,4.574599E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +378841,fr,1,4.550000E+00,7.687190E+00,4.574599E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +378842,fr,1,4.550000E+00,7.687190E+00,4.574599E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +378856,fr,1,4.650000E+00,7.687190E+00,4.574599E+01,1.500000E+01,Active Shallow Crust,2.400103E+02,5.799425E+01,0.000000E+00 +378864,fr,1,4.750000E+00,7.687190E+00,4.574599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +378888,fr,1,4.950000E+00,7.687190E+00,4.574599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +378900,fr,1,5.050000E+00,7.687190E+00,4.574599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +378960,fr,1,5.550000E+00,7.687190E+00,4.574599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +379212,fr,1,3.650000E+00,5.318700E+00,4.675599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998769E+01,0.000000E+00 +379224,fr,1,3.750000E+00,5.318700E+00,4.675599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998902E+01,0.000000E+00 +379225,fr,2,3.750000E+00,5.318700E+00,4.675599E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998902E+01,0.000000E+00 +379237,fr,1,3.850000E+00,5.318700E+00,4.675599E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +379257,fr,1,3.950000E+00,5.318700E+00,4.675599E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.999346E+01,0.000000E+00 +379260,fr,1,4.050000E+00,5.318700E+00,4.675599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998834E+01,0.000000E+00 +379261,fr,1,4.050000E+00,5.318700E+00,4.675599E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998834E+01,0.000000E+00 +379296,fr,1,4.350000E+00,5.318700E+00,4.675599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998900E+01,0.000000E+00 +379560,fr,1,6.550000E+00,5.318710E+00,4.675599E+01,9.527304E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +379717,fr,1,3.850000E+00,-6.579100E+00,4.755247E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +380181,fr,1,3.650000E+00,2.446350E+00,5.025793E+01,5.000000E+00,Active Shallow Crust,1.289000E+02,8.996359E+01,0.000000E+00 +380186,fr,1,3.750000E+00,2.446350E+00,5.025793E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +380189,fr,1,3.750000E+00,2.446350E+00,5.025793E+01,2.750000E+01,Active Shallow Crust,2.400090E+02,5.801744E+01,0.000000E+00 +380196,fr,1,3.850000E+00,2.446350E+00,5.025793E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +380205,fr,1,3.850000E+00,2.446350E+00,5.025793E+01,5.000000E+00,Active Shallow Crust,1.288951E+02,8.999429E+01,0.000000E+00 +380256,fr,1,4.350000E+00,2.446350E+00,5.025793E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +380295,fr,1,4.650000E+00,2.446350E+00,5.025793E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799446E+01,0.000000E+00 +380640,fr,7,3.550000E+00,7.711530E+00,4.389790E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999274E+01,0.000000E+00 +380641,fr,2,3.550000E+00,7.711530E+00,4.389790E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999274E+01,0.000000E+00 +380642,fr,2,3.550000E+00,7.711530E+00,4.389790E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999274E+01,0.000000E+00 +380646,fr,1,3.550000E+00,7.711530E+00,4.389790E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999265E+01,-9.000000E+01 +380649,fr,2,3.550000E+00,7.711530E+00,4.389790E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999274E+01,0.000000E+00 +380650,fr,1,3.550000E+00,7.711530E+00,4.389790E+01,1.500000E+01,Active Shallow Crust,1.288960E+02,8.999274E+01,0.000000E+00 +380652,fr,3,3.650000E+00,7.711530E+00,4.389790E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998705E+01,0.000000E+00 +380653,fr,3,3.650000E+00,7.711530E+00,4.389790E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998705E+01,0.000000E+00 +380655,fr,1,3.650000E+00,7.711530E+00,4.389790E+01,5.000000E+00,Active Shallow Crust,2.400015E+02,5.801199E+01,0.000000E+00 +380657,fr,1,3.650000E+00,7.711530E+00,4.389790E+01,2.750000E+01,Active Shallow Crust,2.400015E+02,5.801191E+01,0.000000E+00 +380658,fr,2,3.650000E+00,7.711530E+00,4.389790E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998690E+01,-9.000000E+01 +380661,fr,1,3.650000E+00,7.711530E+00,4.389790E+01,5.000000E+00,Active Shallow Crust,1.289016E+02,8.996347E+01,0.000000E+00 +380664,fr,3,3.750000E+00,7.711530E+00,4.389790E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998846E+01,0.000000E+00 +380665,fr,2,3.750000E+00,7.711530E+00,4.389790E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998846E+01,0.000000E+00 +380673,fr,1,3.750000E+00,7.711530E+00,4.389790E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996745E+01,0.000000E+00 +380676,fr,2,3.850000E+00,7.711530E+00,4.389790E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +380678,fr,2,3.850000E+00,7.711530E+00,4.389790E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +380679,fr,1,3.850000E+00,7.711530E+00,4.389790E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799800E+01,0.000000E+00 +380688,fr,3,3.950000E+00,7.711530E+00,4.389790E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +380695,fr,1,3.950000E+00,7.711530E+00,4.389790E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999072E+01,-9.000000E+01 +380697,fr,2,3.950000E+00,7.711530E+00,4.389790E+01,5.000000E+00,Active Shallow Crust,1.289017E+02,8.999313E+01,0.000000E+00 +380700,fr,2,4.050000E+00,7.711530E+00,4.389790E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999183E+01,0.000000E+00 +380701,fr,1,4.050000E+00,7.711530E+00,4.389790E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999183E+01,0.000000E+00 +380702,fr,1,4.050000E+00,7.711530E+00,4.389790E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999183E+01,0.000000E+00 +380704,fr,1,4.050000E+00,7.711530E+00,4.389790E+01,1.500000E+01,Active Shallow Crust,2.400060E+02,5.800517E+01,0.000000E+00 +380710,fr,1,4.050000E+00,7.711530E+00,4.389790E+01,1.500000E+01,Active Shallow Crust,1.288912E+02,8.999387E+01,0.000000E+00 +380712,fr,2,4.150000E+00,7.711530E+00,4.389790E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +380715,fr,3,4.150000E+00,7.711530E+00,4.389790E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.799716E+01,0.000000E+00 +380718,fr,2,4.150000E+00,7.711530E+00,4.389790E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,-9.000000E+01 +380722,fr,2,4.150000E+00,7.711530E+00,4.389790E+01,1.500000E+01,Active Shallow Crust,1.288974E+02,8.999454E+01,0.000000E+00 +380724,fr,1,4.250000E+00,7.711530E+00,4.389790E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +380728,fr,1,4.250000E+00,7.711530E+00,4.389790E+01,1.500000E+01,Active Shallow Crust,2.400070E+02,5.799403E+01,0.000000E+00 +380730,fr,1,4.250000E+00,7.711530E+00,4.389790E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,-9.000000E+01 +380736,fr,1,4.350000E+00,7.711530E+00,4.389790E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999132E+01,0.000000E+00 +380751,fr,1,4.450000E+00,7.711530E+00,4.389790E+01,5.000000E+00,Active Shallow Crust,2.400048E+02,5.799442E+01,0.000000E+00 +380760,fr,1,4.550000E+00,7.711530E+00,4.389790E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +380762,fr,1,4.550000E+00,7.711530E+00,4.389790E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +380772,fr,1,4.650000E+00,7.711530E+00,4.389790E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +380773,fr,1,4.650000E+00,7.711530E+00,4.389790E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +380796,fr,1,4.850000E+00,7.711530E+00,4.389790E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +380847,fr,1,5.250000E+00,7.711530E+00,4.389790E+01,5.000000E+00,Active Shallow Crust,2.400190E+02,5.799989E+01,0.000000E+00 +380880,fr,1,5.550000E+00,7.711530E+00,4.389790E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +381120,fr,1,3.550000E+00,5.551420E+00,4.256887E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999258E+01,0.000000E+00 +381603,fr,1,3.550000E+00,-2.773740E+00,4.272923E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799804E+01,0.000000E+00 +381612,fr,2,3.650000E+00,-2.773740E+00,4.272923E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +381616,fr,1,3.650000E+00,-2.773740E+00,4.272923E+01,1.500000E+01,Active Shallow Crust,2.400004E+02,5.801294E+01,0.000000E+00 +381627,fr,1,3.750000E+00,-2.773740E+00,4.272923E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801715E+01,0.000000E+00 +381660,fr,1,4.050000E+00,-2.773740E+00,4.272923E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +381696,fr,1,4.350000E+00,-2.773740E+00,4.272923E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +381709,fr,1,4.450000E+00,-2.773740E+00,4.272923E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +381749,fr,1,4.750000E+00,-2.773740E+00,4.272923E+01,2.750000E+01,Active Shallow Crust,2.400062E+02,5.800429E+01,0.000000E+00 +381750,fr,1,4.750000E+00,-2.773740E+00,4.272923E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +381756,fr,1,4.850000E+00,-2.773740E+00,4.272923E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +382082,fr,1,3.550000E+00,1.446890E+00,4.182793E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999061E+01,0.000000E+00 +382089,fr,1,3.550000E+00,1.446890E+00,4.182793E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999342E+01,0.000000E+00 +382104,fr,1,3.750000E+00,1.446890E+00,4.182793E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +382117,fr,1,3.850000E+00,1.446890E+00,4.182793E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +382140,fr,1,4.050000E+00,1.446890E+00,4.182793E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +382152,fr,1,4.150000E+00,1.446890E+00,4.182793E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +382220,fr,1,4.650000E+00,1.446890E+00,4.182793E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,-9.000000E+01 +382225,fr,1,4.750000E+00,1.446890E+00,4.182793E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +382284,fr,1,5.250000E+00,1.446890E+00,4.182793E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +382308,fr,1,5.450000E+00,1.446890E+00,4.182793E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +382572,fr,1,3.650000E+00,5.323530E+00,4.803784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998798E+01,0.000000E+00 +382575,fr,1,3.650000E+00,5.323530E+00,4.803784E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801357E+01,0.000000E+00 +382579,fr,1,3.650000E+00,5.323530E+00,4.803784E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998784E+01,-9.000000E+01 +382584,fr,1,3.750000E+00,5.323530E+00,4.803784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +382585,fr,1,3.750000E+00,5.323530E+00,4.803784E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +382592,fr,1,3.750000E+00,5.323530E+00,4.803784E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,-9.000000E+01 +382632,fr,2,4.150000E+00,5.323530E+00,4.803784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +382648,fr,1,4.250000E+00,5.323530E+00,4.803784E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.799445E+01,0.000000E+00 +382674,fr,1,4.450000E+00,5.323530E+00,4.803784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,-9.000000E+01 +383040,fr,5,3.550000E+00,7.652350E+00,4.600369E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999300E+01,0.000000E+00 +383041,fr,2,3.550000E+00,7.652350E+00,4.600369E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999300E+01,0.000000E+00 +383047,fr,1,3.550000E+00,7.652350E+00,4.600369E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999291E+01,-9.000000E+01 +383050,fr,1,3.550000E+00,7.652350E+00,4.600369E+01,1.500000E+01,Active Shallow Crust,1.288954E+02,8.999650E+01,0.000000E+00 +383051,fr,1,3.550000E+00,7.652350E+00,4.600369E+01,2.750000E+01,Active Shallow Crust,1.288954E+02,8.999650E+01,0.000000E+00 +383052,fr,1,3.650000E+00,7.652350E+00,4.600369E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998752E+01,0.000000E+00 +383053,fr,1,3.650000E+00,7.652350E+00,4.600369E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998752E+01,0.000000E+00 +383054,fr,1,3.650000E+00,7.652350E+00,4.600369E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998752E+01,0.000000E+00 +383062,fr,1,3.650000E+00,7.652350E+00,4.600369E+01,1.500000E+01,Active Shallow Crust,1.289009E+02,8.996352E+01,0.000000E+00 +383065,fr,2,3.750000E+00,7.652350E+00,4.600369E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998887E+01,0.000000E+00 +383070,fr,1,3.750000E+00,7.652350E+00,4.600369E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998875E+01,-9.000000E+01 +383077,fr,2,3.850000E+00,7.652350E+00,4.600369E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +383079,fr,1,3.850000E+00,7.652350E+00,4.600369E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799762E+01,0.000000E+00 +383088,fr,1,3.950000E+00,7.652350E+00,4.600369E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999116E+01,0.000000E+00 +383091,fr,1,3.950000E+00,7.652350E+00,4.600369E+01,5.000000E+00,Active Shallow Crust,2.400191E+02,5.800484E+01,0.000000E+00 +383103,fr,1,4.050000E+00,7.652350E+00,4.600369E+01,5.000000E+00,Active Shallow Crust,2.400055E+02,5.800586E+01,0.000000E+00 +383112,fr,1,4.150000E+00,7.652350E+00,4.600369E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +383115,fr,1,4.150000E+00,7.652350E+00,4.600369E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799691E+01,0.000000E+00 +383119,fr,1,4.150000E+00,7.652350E+00,4.600369E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998935E+01,-9.000000E+01 +383121,fr,1,4.150000E+00,7.652350E+00,4.600369E+01,5.000000E+00,Active Shallow Crust,1.288987E+02,8.999298E+01,0.000000E+00 +383148,fr,2,4.450000E+00,7.652350E+00,4.600369E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +383163,fr,1,4.550000E+00,7.652350E+00,4.600369E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.799740E+01,0.000000E+00 +383172,fr,1,4.650000E+00,7.652350E+00,4.600369E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +383196,fr,2,4.850000E+00,7.652350E+00,4.600369E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +383198,fr,1,4.850000E+00,7.652350E+00,4.600369E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +383253,fr,1,5.250000E+00,7.652350E+00,4.600369E+01,5.000000E+00,Active Shallow Crust,1.288832E+02,8.998715E+01,0.000000E+00 +383520,fr,2,3.550000E+00,1.716890E+00,4.200657E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +383521,fr,1,3.550000E+00,1.716890E+00,4.200657E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +383533,fr,1,3.650000E+00,1.716890E+00,4.200657E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +383544,fr,1,3.750000E+00,1.716890E+00,4.200657E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +383548,fr,1,3.750000E+00,1.716890E+00,4.200657E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.801743E+01,0.000000E+00 +383605,fr,1,4.250000E+00,1.716890E+00,4.200657E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +383809,fr,1,5.950000E+00,1.716890E+00,4.200657E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +383820,fr,1,6.050000E+00,1.716891E+00,4.200657E+01,5.357596E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +384024,fr,1,3.750000E+00,3.751710E+00,4.510552E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +384025,fr,1,3.750000E+00,3.751710E+00,4.510552E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +384026,fr,1,3.750000E+00,3.751710E+00,4.510552E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +384030,fr,1,3.750000E+00,3.751710E+00,4.510552E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999142E+01,-9.000000E+01 +384036,fr,1,3.850000E+00,3.751710E+00,4.510552E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +384049,fr,1,3.950000E+00,3.751710E+00,4.510552E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999102E+01,0.000000E+00 +384060,fr,1,4.050000E+00,3.751710E+00,4.510552E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +384061,fr,1,4.050000E+00,3.751710E+00,4.510552E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +384067,fr,1,4.050000E+00,3.751710E+00,4.510552E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +384072,fr,1,4.150000E+00,3.751710E+00,4.510552E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +384097,fr,1,4.350000E+00,3.751710E+00,4.510552E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +384133,fr,1,4.650000E+00,3.751710E+00,4.510552E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +384153,fr,1,4.750000E+00,3.751710E+00,4.510552E+01,5.000000E+00,Active Shallow Crust,1.288890E+02,8.998809E+01,0.000000E+00 +384192,fr,1,5.150000E+00,3.751710E+00,4.510552E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +384481,fr,1,3.550000E+00,1.717230E+00,5.113941E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +384492,fr,1,3.650000E+00,1.717230E+00,5.113941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +384493,fr,1,3.650000E+00,1.717230E+00,5.113941E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +384504,fr,2,3.750000E+00,1.717230E+00,5.113941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +384517,fr,2,3.850000E+00,1.717230E+00,5.113941E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +384577,fr,1,4.350000E+00,1.717230E+00,5.113941E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +384589,fr,1,4.450000E+00,1.717230E+00,5.113941E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +384660,fr,1,5.050000E+00,1.717230E+00,5.113941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +384960,fr,2,3.550000E+00,7.561320E+00,4.982602E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998699E+01,0.000000E+00 +384961,fr,1,3.550000E+00,7.561320E+00,4.982602E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998699E+01,0.000000E+00 +384966,fr,1,3.550000E+00,7.561320E+00,4.982602E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998684E+01,-9.000000E+01 +384972,fr,1,3.650000E+00,7.561320E+00,4.982602E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998840E+01,0.000000E+00 +384973,fr,1,3.650000E+00,7.561320E+00,4.982602E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998840E+01,0.000000E+00 +384975,fr,1,3.650000E+00,7.561320E+00,4.982602E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801390E+01,0.000000E+00 +384993,fr,1,3.750000E+00,7.561320E+00,4.982602E+01,5.000000E+00,Active Shallow Crust,1.288953E+02,8.996754E+01,0.000000E+00 +385009,fr,1,3.950000E+00,7.561320E+00,4.982602E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999179E+01,0.000000E+00 +385010,fr,1,3.950000E+00,7.561320E+00,4.982602E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999179E+01,0.000000E+00 +385011,fr,1,3.950000E+00,7.561320E+00,4.982602E+01,5.000000E+00,Active Shallow Crust,2.400198E+02,5.800588E+01,0.000000E+00 +385149,fr,1,5.050000E+00,7.561320E+00,4.982602E+01,5.000000E+00,Active Shallow Crust,1.288839E+02,8.999041E+01,0.000000E+00 +385440,fr,1,3.550000E+00,3.324130E+00,4.158703E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +385449,fr,1,3.550000E+00,3.324130E+00,4.158703E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.999245E+01,0.000000E+00 +385454,fr,1,3.650000E+00,3.324130E+00,4.158703E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +385458,fr,1,3.650000E+00,3.324130E+00,4.158703E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,-9.000000E+01 +385488,fr,1,3.950000E+00,3.324130E+00,4.158703E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +385490,fr,1,3.950000E+00,3.324130E+00,4.158703E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +385501,fr,1,4.050000E+00,3.324130E+00,4.158703E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +385573,fr,1,4.650000E+00,3.324130E+00,4.158703E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +385584,fr,1,4.750000E+00,3.324130E+00,4.158703E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +385920,fr,2,3.550000E+00,1.964490E+00,4.284760E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +385921,fr,1,3.550000E+00,1.964490E+00,4.284760E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +385923,fr,1,3.550000E+00,1.964490E+00,4.284760E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799780E+01,0.000000E+00 +385930,fr,1,3.550000E+00,1.964490E+00,4.284760E+01,1.500000E+01,Active Shallow Crust,1.288967E+02,8.999353E+01,0.000000E+00 +385932,fr,1,3.650000E+00,1.964490E+00,4.284760E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +385938,fr,1,3.650000E+00,1.964490E+00,4.284760E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +385948,fr,1,3.750000E+00,1.964490E+00,4.284760E+01,1.500000E+01,Active Shallow Crust,2.400080E+02,5.801731E+01,0.000000E+00 +385958,fr,1,3.850000E+00,1.964490E+00,4.284760E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +385981,fr,1,4.050000E+00,1.964490E+00,4.284760E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +386004,fr,2,4.250000E+00,1.964490E+00,4.284760E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +386017,fr,1,4.350000E+00,1.964490E+00,4.284760E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +386046,fr,1,4.550000E+00,1.964490E+00,4.284760E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +386052,fr,1,4.650000E+00,1.964490E+00,4.284760E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +386412,fr,1,3.650000E+00,1.212850E+00,5.240876E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +386883,fr,1,3.550000E+00,2.574940E+00,4.400548E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799829E+01,0.000000E+00 +386893,fr,1,3.650000E+00,2.574940E+00,4.400548E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +386913,fr,1,3.750000E+00,2.574940E+00,4.400548E+01,5.000000E+00,Active Shallow Crust,1.288974E+02,8.996716E+01,0.000000E+00 +386916,fr,2,3.850000E+00,2.574940E+00,4.400548E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +386928,fr,1,3.950000E+00,2.574940E+00,4.400548E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +387007,fr,1,4.550000E+00,2.574940E+00,4.400548E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,-9.000000E+01 +387043,fr,1,4.850000E+00,2.574940E+00,4.400548E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +387152,fr,1,5.750000E+00,2.574940E+00,4.400548E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +387207,fr,1,6.250000E+00,2.572128E+00,4.400898E+01,5.719927E+00,Active Shallow Crust,2.400671E+02,5.800023E+01,0.000000E+00 +387396,fr,2,3.850000E+00,1.847410E+00,4.997736E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +387397,fr,1,3.850000E+00,1.847410E+00,4.997736E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +387489,fr,1,4.550000E+00,1.847410E+00,4.997736E+01,5.000000E+00,Active Shallow Crust,1.288931E+02,8.998573E+01,0.000000E+00 +387564,fr,1,5.250000E+00,1.847410E+00,4.997736E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +387847,fr,1,3.550000E+00,5.617000E-01,5.031383E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,-9.000000E+01 +387865,fr,1,3.750000E+00,5.617000E-01,5.031383E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +387876,fr,1,3.850000E+00,5.617000E-01,5.031383E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +387910,fr,1,4.050000E+00,5.617000E-01,5.031383E+01,1.500000E+01,Active Shallow Crust,1.288899E+02,8.999389E+01,0.000000E+00 +387931,fr,1,4.250000E+00,5.617000E-01,5.031383E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,-9.000000E+01 +387936,fr,1,4.350000E+00,5.617000E-01,5.031383E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +388021,fr,1,5.050000E+00,5.617000E-01,5.031383E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +388806,fr,1,3.550000E+00,2.936070E+00,4.432563E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998905E+01,-9.000000E+01 +388812,fr,1,3.650000E+00,2.936070E+00,4.432563E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +388813,fr,1,3.650000E+00,2.936070E+00,4.432563E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +388826,fr,1,3.750000E+00,2.936070E+00,4.432563E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999140E+01,0.000000E+00 +388836,fr,1,3.850000E+00,2.936070E+00,4.432563E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +388838,fr,1,3.850000E+00,2.936070E+00,4.432563E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +388887,fr,1,4.250000E+00,2.936070E+00,4.432563E+01,5.000000E+00,Active Shallow Crust,2.400070E+02,5.799399E+01,0.000000E+00 +388923,fr,1,4.550000E+00,2.936070E+00,4.432563E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799718E+01,0.000000E+00 +388959,fr,1,4.850000E+00,2.936070E+00,4.432563E+01,5.000000E+00,Active Shallow Crust,2.400163E+02,5.800230E+01,0.000000E+00 +389280,fr,2,3.550000E+00,5.231680E+00,4.661519E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999307E+01,0.000000E+00 +389307,fr,1,3.750000E+00,5.231680E+00,4.661519E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.801795E+01,0.000000E+00 +389309,fr,1,3.750000E+00,5.231680E+00,4.661519E+01,2.750000E+01,Active Shallow Crust,2.400076E+02,5.801795E+01,0.000000E+00 +389311,fr,1,3.750000E+00,5.231680E+00,4.661519E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998887E+01,-9.000000E+01 +389313,fr,1,3.750000E+00,5.231680E+00,4.661519E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.996749E+01,0.000000E+00 +389334,fr,1,3.950000E+00,5.231680E+00,4.661519E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999116E+01,-9.000000E+01 +389337,fr,1,3.950000E+00,5.231680E+00,4.661519E+01,5.000000E+00,Active Shallow Crust,1.289011E+02,8.999345E+01,0.000000E+00 +389340,fr,1,4.050000E+00,5.231680E+00,4.661519E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998831E+01,0.000000E+00 +389342,fr,1,4.050000E+00,5.231680E+00,4.661519E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998831E+01,0.000000E+00 +389346,fr,1,4.050000E+00,5.231680E+00,4.661519E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998818E+01,-9.000000E+01 +389424,fr,1,4.750000E+00,5.231680E+00,4.661519E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +389436,fr,1,4.850000E+00,5.231680E+00,4.661519E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999069E+01,0.000000E+00 +389760,fr,3,3.550000E+00,-4.099370E+00,4.837670E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999330E+01,0.000000E+00 +389763,fr,2,3.550000E+00,-4.099370E+00,4.837670E+01,5.000000E+00,Active Shallow Crust,2.400130E+02,5.799815E+01,0.000000E+00 +389764,fr,1,3.550000E+00,-4.099370E+00,4.837670E+01,1.500000E+01,Active Shallow Crust,2.400130E+02,5.799815E+01,0.000000E+00 +389775,fr,1,3.650000E+00,-4.099370E+00,4.837670E+01,5.000000E+00,Active Shallow Crust,2.400020E+02,5.801299E+01,0.000000E+00 +389784,fr,1,3.750000E+00,-4.099370E+00,4.837670E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +389796,fr,1,3.850000E+00,-4.099370E+00,4.837670E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +389797,fr,1,3.850000E+00,-4.099370E+00,4.837670E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +389808,fr,1,3.950000E+00,-4.099370E+00,4.837670E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999155E+01,0.000000E+00 +389809,fr,1,3.950000E+00,-4.099370E+00,4.837670E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999155E+01,0.000000E+00 +389810,fr,1,3.950000E+00,-4.099370E+00,4.837670E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999155E+01,0.000000E+00 +389830,fr,1,4.050000E+00,-4.099370E+00,4.837670E+01,1.500000E+01,Active Shallow Crust,1.288900E+02,8.999435E+01,0.000000E+00 +389832,fr,2,4.150000E+00,-4.099370E+00,4.837670E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +389857,fr,1,4.350000E+00,-4.099370E+00,4.837670E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +389870,fr,1,4.450000E+00,-4.099370E+00,4.837670E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +389899,fr,1,4.650000E+00,-4.099370E+00,4.837670E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999045E+01,-9.000000E+01 +389905,fr,1,4.750000E+00,-4.099370E+00,4.837670E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +390264,fr,1,3.750000E+00,-9.719100E-01,4.567288E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +390265,fr,1,3.750000E+00,-9.719100E-01,4.567288E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +390279,fr,1,3.850000E+00,-9.719100E-01,4.567288E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799783E+01,0.000000E+00 +390327,fr,2,4.250000E+00,-9.719100E-01,4.567288E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.799405E+01,0.000000E+00 +390348,fr,1,4.450000E+00,-9.719100E-01,4.567288E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +390727,fr,1,3.550000E+00,3.635770E+00,4.690377E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998955E+01,-9.000000E+01 +390735,fr,2,3.650000E+00,3.635770E+00,4.690377E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801245E+01,0.000000E+00 +390744,fr,1,3.750000E+00,3.635770E+00,4.690377E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998905E+01,0.000000E+00 +390768,fr,1,3.950000E+00,3.635770E+00,4.690377E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +390805,fr,1,4.250000E+00,3.635770E+00,4.690377E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999077E+01,0.000000E+00 +390806,fr,1,4.250000E+00,3.635770E+00,4.690377E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999077E+01,0.000000E+00 +390828,fr,1,4.450000E+00,3.635770E+00,4.690377E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +390840,fr,1,4.550000E+00,3.635770E+00,4.690377E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +390866,fr,1,4.750000E+00,3.635770E+00,4.690377E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +390912,fr,1,5.150000E+00,3.635770E+00,4.690377E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +391105,fr,1,6.750000E+00,3.635770E+00,4.690377E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999003E+01,0.000000E+00 +391202,fr,1,3.550000E+00,-7.533800E-01,4.838686E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +391206,fr,1,3.550000E+00,-7.533800E-01,4.838686E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,-9.000000E+01 +391212,fr,2,3.650000E+00,-7.533800E-01,4.838686E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +391221,fr,1,3.650000E+00,-7.533800E-01,4.838686E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.996356E+01,0.000000E+00 +391236,fr,1,3.850000E+00,-7.533800E-01,4.838686E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +391284,fr,1,4.250000E+00,-7.533800E-01,4.838686E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +391311,fr,1,4.450000E+00,-7.533800E-01,4.838686E+01,5.000000E+00,Active Shallow Crust,2.400058E+02,5.799475E+01,0.000000E+00 +391341,fr,1,4.650000E+00,-7.533800E-01,4.838686E+01,5.000000E+00,Active Shallow Crust,1.288906E+02,8.998697E+01,0.000000E+00 +391344,fr,1,4.750000E+00,-7.533800E-01,4.838686E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +391477,fr,1,5.850000E+00,-7.533800E-01,4.838686E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +391682,fr,1,3.550000E+00,6.963060E+00,5.136146E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998740E+01,0.000000E+00 +391693,fr,1,3.650000E+00,6.963060E+00,5.136146E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +391704,fr,1,3.750000E+00,6.963060E+00,5.136146E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +391705,fr,1,3.750000E+00,6.963060E+00,5.136146E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +391722,fr,1,3.850000E+00,6.963060E+00,5.136146E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999098E+01,-9.000000E+01 +391755,fr,1,4.150000E+00,6.963060E+00,5.136146E+01,5.000000E+00,Active Shallow Crust,2.400094E+02,5.799729E+01,0.000000E+00 +392172,fr,1,3.650000E+00,3.599980E+00,5.233032E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +392210,fr,1,3.950000E+00,3.599980E+00,5.233032E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +394560,fr,3,3.550000E+00,-1.096720E+00,4.620544E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +394572,fr,4,3.650000E+00,-1.096720E+00,4.620544E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999067E+01,0.000000E+00 +394573,fr,2,3.650000E+00,-1.096720E+00,4.620544E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999067E+01,0.000000E+00 +394578,fr,2,3.650000E+00,-1.096720E+00,4.620544E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999056E+01,-9.000000E+01 +394583,fr,1,3.650000E+00,-1.096720E+00,4.620544E+01,2.750000E+01,Active Shallow Crust,1.289007E+02,8.996352E+01,0.000000E+00 +394584,fr,2,3.750000E+00,-1.096720E+00,4.620544E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +394585,fr,2,3.750000E+00,-1.096720E+00,4.620544E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +394593,fr,1,3.750000E+00,-1.096720E+00,4.620544E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996736E+01,0.000000E+00 +394596,fr,1,3.850000E+00,-1.096720E+00,4.620544E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +394608,fr,3,3.950000E+00,-1.096720E+00,4.620544E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +394609,fr,1,3.950000E+00,-1.096720E+00,4.620544E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +394614,fr,1,3.950000E+00,-1.096720E+00,4.620544E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +394620,fr,2,4.050000E+00,-1.096720E+00,4.620544E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +394630,fr,1,4.050000E+00,-1.096720E+00,4.620544E+01,1.500000E+01,Active Shallow Crust,1.288908E+02,8.999362E+01,0.000000E+00 +394634,fr,1,4.150000E+00,-1.096720E+00,4.620544E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +394650,fr,1,4.250000E+00,-1.096720E+00,4.620544E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,-9.000000E+01 +394656,fr,1,4.350000E+00,-1.096720E+00,4.620544E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +394658,fr,1,4.350000E+00,-1.096720E+00,4.620544E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +394665,fr,1,4.350000E+00,-1.096720E+00,4.620544E+01,5.000000E+00,Active Shallow Crust,1.288980E+02,8.998277E+01,0.000000E+00 +394668,fr,1,4.450000E+00,-1.096720E+00,4.620544E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +394670,fr,1,4.450000E+00,-1.096720E+00,4.620544E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +394677,fr,1,4.450000E+00,-1.096720E+00,4.620544E+01,5.000000E+00,Active Shallow Crust,1.288923E+02,8.999381E+01,0.000000E+00 +394698,fr,1,4.650000E+00,-1.096720E+00,4.620544E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,-9.000000E+01 +394716,fr,1,4.850000E+00,-1.096720E+00,4.620544E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +394717,fr,1,4.850000E+00,-1.096720E+00,4.620544E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +394729,fr,1,4.950000E+00,-1.096720E+00,4.620544E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +394752,fr,1,5.150000E+00,-1.096720E+00,4.620544E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +395050,fr,1,3.550000E+00,-1.056440E+00,5.048976E+01,1.500000E+01,Active Shallow Crust,1.288955E+02,8.999358E+01,0.000000E+00 +395113,fr,1,4.150000E+00,-1.056440E+00,5.048976E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +395115,fr,1,4.150000E+00,-1.056440E+00,5.048976E+01,5.000000E+00,Active Shallow Crust,2.400093E+02,5.799755E+01,0.000000E+00 +395556,fr,1,3.850000E+00,-5.257070E+00,4.770819E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +395644,fr,1,4.550000E+00,-5.257070E+00,4.770819E+01,1.500000E+01,Active Shallow Crust,2.400099E+02,5.799749E+01,0.000000E+00 +395652,fr,1,4.650000E+00,-5.257070E+00,4.770819E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +396024,fr,1,3.750000E+00,-2.905800E-01,5.105616E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +396144,fr,1,4.750000E+00,-2.905800E-01,5.105616E+01,5.000000E+00,Active Shallow Crust,3.599999E+02,8.999004E+01,0.000000E+00 +396480,fr,3,3.550000E+00,7.159830E+00,4.864864E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998668E+01,0.000000E+00 +396495,fr,1,3.650000E+00,7.159830E+00,4.864864E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801345E+01,0.000000E+00 +396496,fr,1,3.650000E+00,7.159830E+00,4.864864E+01,1.500000E+01,Active Shallow Crust,2.400013E+02,5.801345E+01,0.000000E+00 +396507,fr,1,3.750000E+00,7.159830E+00,4.864864E+01,5.000000E+00,Active Shallow Crust,2.400095E+02,5.801683E+01,0.000000E+00 +396574,fr,1,4.250000E+00,7.159830E+00,4.864864E+01,1.500000E+01,Active Shallow Crust,1.288939E+02,8.998103E+01,0.000000E+00 +396585,fr,1,4.350000E+00,7.159830E+00,4.864864E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.998263E+01,0.000000E+00 +396960,fr,2,3.550000E+00,-1.305820E+00,4.618729E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +396961,fr,2,3.550000E+00,-1.305820E+00,4.618729E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +396972,fr,1,3.650000E+00,-1.305820E+00,4.618729E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999067E+01,0.000000E+00 +396973,fr,2,3.650000E+00,-1.305820E+00,4.618729E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999067E+01,0.000000E+00 +396977,fr,1,3.650000E+00,-1.305820E+00,4.618729E+01,2.750000E+01,Active Shallow Crust,2.400012E+02,5.801257E+01,0.000000E+00 +396978,fr,2,3.650000E+00,-1.305820E+00,4.618729E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999056E+01,-9.000000E+01 +396979,fr,1,3.650000E+00,-1.305820E+00,4.618729E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999056E+01,-9.000000E+01 +396981,fr,1,3.650000E+00,-1.305820E+00,4.618729E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.996352E+01,0.000000E+00 +396984,fr,1,3.750000E+00,-1.305820E+00,4.618729E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +396988,fr,1,3.750000E+00,-1.305820E+00,4.618729E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.801753E+01,0.000000E+00 +396993,fr,2,3.750000E+00,-1.305820E+00,4.618729E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996722E+01,0.000000E+00 +396996,fr,1,3.850000E+00,-1.305820E+00,4.618729E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +396998,fr,1,3.850000E+00,-1.305820E+00,4.618729E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +397010,fr,1,3.950000E+00,-1.305820E+00,4.618729E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +397011,fr,1,3.950000E+00,-1.305820E+00,4.618729E+01,5.000000E+00,Active Shallow Crust,2.400199E+02,5.800499E+01,0.000000E+00 +397020,fr,2,4.050000E+00,-1.305820E+00,4.618729E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +397021,fr,1,4.050000E+00,-1.305820E+00,4.618729E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +397056,fr,1,4.350000E+00,-1.305820E+00,4.618729E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +397057,fr,1,4.350000E+00,-1.305820E+00,4.618729E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +397068,fr,1,4.450000E+00,-1.305820E+00,4.618729E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +397073,fr,1,4.450000E+00,-1.305820E+00,4.618729E+01,2.750000E+01,Active Shallow Crust,2.400053E+02,5.799470E+01,0.000000E+00 +397080,fr,1,4.550000E+00,-1.305820E+00,4.618729E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +397106,fr,1,4.750000E+00,-1.305820E+00,4.618729E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +397129,fr,1,4.950000E+00,-1.305820E+00,4.618729E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +397140,fr,1,5.050000E+00,-1.305820E+00,4.618729E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +397938,fr,1,3.650000E+00,-5.517200E-01,4.799987E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,-9.000000E+01 +397944,fr,1,3.750000E+00,-5.517200E-01,4.799987E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +397966,fr,1,3.850000E+00,-5.517200E-01,4.799987E+01,1.500000E+01,Active Shallow Crust,1.288954E+02,8.999373E+01,0.000000E+00 +397989,fr,1,4.050000E+00,-5.517200E-01,4.799987E+01,5.000000E+00,Active Shallow Crust,1.288903E+02,8.999384E+01,0.000000E+00 +398004,fr,1,4.250000E+00,-5.517200E-01,4.799987E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +398400,fr,1,3.550000E+00,4.035210E+00,4.592942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999299E+01,0.000000E+00 +398415,fr,1,3.650000E+00,4.035210E+00,4.592942E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801300E+01,0.000000E+00 +398436,fr,1,3.850000E+00,4.035210E+00,4.592942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +398472,fr,1,4.150000E+00,4.035210E+00,4.592942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +398502,fr,1,4.350000E+00,4.035210E+00,4.592942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998870E+01,-9.000000E+01 +398520,fr,1,4.550000E+00,4.035210E+00,4.592942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +398604,fr,1,5.250000E+00,4.035210E+00,4.592942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +398619,fr,1,5.350000E+00,4.035210E+00,4.592942E+01,5.000000E+00,Active Shallow Crust,2.400247E+02,5.799778E+01,0.000000E+00 +398880,fr,1,3.550000E+00,2.926140E+00,5.001358E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +398881,fr,1,3.550000E+00,2.926140E+00,5.001358E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +398883,fr,1,3.550000E+00,2.926140E+00,5.001358E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799822E+01,0.000000E+00 +398892,fr,1,3.650000E+00,2.926140E+00,5.001358E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999134E+01,0.000000E+00 +398905,fr,1,3.750000E+00,2.926140E+00,5.001358E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +398916,fr,1,3.850000E+00,2.926140E+00,5.001358E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999082E+01,0.000000E+00 +398928,fr,1,3.950000E+00,2.926140E+00,5.001358E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +398944,fr,1,4.050000E+00,2.926140E+00,5.001358E+01,1.500000E+01,Active Shallow Crust,2.400067E+02,5.800573E+01,0.000000E+00 +398952,fr,1,4.150000E+00,2.926140E+00,5.001358E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +398973,fr,2,4.250000E+00,2.926140E+00,5.001358E+01,5.000000E+00,Active Shallow Crust,1.288934E+02,8.998108E+01,0.000000E+00 +399048,fr,1,4.950000E+00,2.926140E+00,5.001358E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +399363,fr,1,3.550000E+00,-3.866850E+00,4.371001E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799800E+01,0.000000E+00 +399374,fr,1,3.650000E+00,-3.866850E+00,4.371001E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +399379,fr,1,3.650000E+00,-3.866850E+00,4.371001E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +399566,fr,1,5.250000E+00,-3.866850E+00,4.371001E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +399840,fr,1,3.550000E+00,7.915400E+00,4.484986E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999285E+01,0.000000E+00 +399841,fr,1,3.550000E+00,7.915400E+00,4.484986E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999285E+01,0.000000E+00 +399852,fr,3,3.650000E+00,7.915400E+00,4.484986E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998726E+01,0.000000E+00 +399863,fr,1,3.650000E+00,7.915400E+00,4.484986E+01,2.750000E+01,Active Shallow Crust,1.289009E+02,8.996349E+01,0.000000E+00 +399864,fr,1,3.750000E+00,7.915400E+00,4.484986E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998864E+01,0.000000E+00 +399865,fr,2,3.750000E+00,7.915400E+00,4.484986E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998864E+01,0.000000E+00 +399866,fr,1,3.750000E+00,7.915400E+00,4.484986E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998864E+01,0.000000E+00 +399889,fr,1,3.950000E+00,7.915400E+00,4.484986E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999098E+01,0.000000E+00 +399914,fr,1,4.150000E+00,7.915400E+00,4.484986E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +400002,fr,1,4.850000E+00,7.915400E+00,4.484986E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,-9.000000E+01 +400032,fr,1,5.150000E+00,7.915400E+00,4.484986E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +400332,fr,1,3.650000E+00,3.960090E+00,4.208364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +400344,fr,1,3.750000E+00,3.960090E+00,4.208364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999108E+01,0.000000E+00 +400357,fr,1,3.850000E+00,3.960090E+00,4.208364E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +400368,fr,1,3.950000E+00,3.960090E+00,4.208364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +400800,fr,3,3.550000E+00,3.924220E+00,5.059253E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +400803,fr,2,3.550000E+00,3.924220E+00,5.059253E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799874E+01,0.000000E+00 +400810,fr,1,3.550000E+00,3.924220E+00,5.059253E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.999360E+01,0.000000E+00 +400812,fr,2,3.650000E+00,3.924220E+00,5.059253E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +400813,fr,3,3.650000E+00,3.924220E+00,5.059253E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +400824,fr,3,3.750000E+00,3.924220E+00,5.059253E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +400836,fr,4,3.850000E+00,3.924220E+00,5.059253E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +400843,fr,1,3.850000E+00,3.924220E+00,5.059253E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999083E+01,-9.000000E+01 +400849,fr,1,3.950000E+00,3.924220E+00,5.059253E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +400857,fr,1,3.950000E+00,3.924220E+00,5.059253E+01,5.000000E+00,Active Shallow Crust,1.289000E+02,8.999294E+01,0.000000E+00 +400866,fr,1,4.050000E+00,3.924220E+00,5.059253E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999090E+01,-9.000000E+01 +400873,fr,1,4.150000E+00,3.924220E+00,5.059253E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +400899,fr,1,4.350000E+00,3.924220E+00,5.059253E+01,5.000000E+00,Active Shallow Crust,2.400093E+02,5.799614E+01,0.000000E+00 +400908,fr,1,4.450000E+00,3.924220E+00,5.059253E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +400932,fr,1,4.650000E+00,3.924220E+00,5.059253E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +400958,fr,1,4.850000E+00,3.924220E+00,5.059253E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +401317,fr,1,3.850000E+00,-3.639100E-01,4.148589E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +401760,fr,1,3.550000E+00,1.250810E+00,4.969149E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +401775,fr,1,3.650000E+00,1.250810E+00,4.969149E+01,5.000000E+00,Active Shallow Crust,2.400017E+02,5.801266E+01,0.000000E+00 +401784,fr,1,3.750000E+00,1.250810E+00,4.969149E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +401808,fr,1,3.950000E+00,1.250810E+00,4.969149E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +401833,fr,1,4.150000E+00,1.250810E+00,4.969149E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +401859,fr,1,4.350000E+00,1.250810E+00,4.969149E+01,5.000000E+00,Active Shallow Crust,2.400093E+02,5.799610E+01,0.000000E+00 +401904,fr,1,4.750000E+00,1.250810E+00,4.969149E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +402252,fr,1,3.650000E+00,5.262800E+00,4.239691E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998672E+01,0.000000E+00 +402396,fr,1,4.850000E+00,5.262800E+00,4.239691E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +402721,fr,1,3.550000E+00,-5.394140E+00,4.919886E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998682E+01,0.000000E+00 +402816,fr,1,4.350000E+00,-5.394140E+00,4.919886E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +403200,fr,1,3.550000E+00,1.610920E+00,5.267520E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +403248,fr,1,3.950000E+00,1.610920E+00,5.267520E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +403251,fr,1,3.950000E+00,1.610920E+00,5.267520E+01,5.000000E+00,Active Shallow Crust,2.400208E+02,5.800510E+01,0.000000E+00 +403314,fr,1,4.450000E+00,1.610920E+00,5.267520E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,-9.000000E+01 +403680,fr,1,3.550000E+00,-9.825800E-01,4.526346E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +403705,fr,1,3.750000E+00,-9.825800E-01,4.526346E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +403716,fr,1,3.850000E+00,-9.825800E-01,4.526346E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +404163,fr,1,3.550000E+00,4.865000E-01,4.471111E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799815E+01,0.000000E+00 +404172,fr,1,3.650000E+00,4.865000E-01,4.471111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +404190,fr,1,3.750000E+00,4.865000E-01,4.471111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,-9.000000E+01 +404208,fr,2,3.950000E+00,4.865000E-01,4.471111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +404215,fr,1,3.950000E+00,4.865000E-01,4.471111E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +404653,fr,1,3.650000E+00,6.967950E+00,4.988202E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998842E+01,0.000000E+00 +404664,fr,1,3.750000E+00,6.967950E+00,4.988202E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +404665,fr,1,3.750000E+00,6.967950E+00,4.988202E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +404675,fr,1,3.750000E+00,6.967950E+00,4.988202E+01,2.750000E+01,Active Shallow Crust,1.288953E+02,8.996755E+01,0.000000E+00 +405149,fr,1,3.750000E+00,2.883660E+00,4.003160E+01,2.750000E+01,Active Shallow Crust,2.400070E+02,5.801746E+01,0.000000E+00 +405192,fr,1,4.150000E+00,2.883660E+00,4.003160E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +405213,fr,1,4.250000E+00,2.883660E+00,4.003160E+01,5.000000E+00,Active Shallow Crust,1.288951E+02,8.998100E+01,0.000000E+00 +405600,fr,3,3.550000E+00,6.486750E+00,4.638797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999304E+01,0.000000E+00 +405602,fr,3,3.550000E+00,6.486750E+00,4.638797E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999304E+01,0.000000E+00 +405603,fr,1,3.550000E+00,6.486750E+00,4.638797E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799836E+01,0.000000E+00 +405609,fr,1,3.550000E+00,6.486750E+00,4.638797E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999304E+01,0.000000E+00 +405610,fr,1,3.550000E+00,6.486750E+00,4.638797E+01,1.500000E+01,Active Shallow Crust,1.288962E+02,8.999304E+01,0.000000E+00 +405612,fr,2,3.650000E+00,6.486750E+00,4.638797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998760E+01,0.000000E+00 +405613,fr,3,3.650000E+00,6.486750E+00,4.638797E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998760E+01,0.000000E+00 +405614,fr,1,3.650000E+00,6.486750E+00,4.638797E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998760E+01,0.000000E+00 +405621,fr,1,3.650000E+00,6.486750E+00,4.638797E+01,5.000000E+00,Active Shallow Crust,1.289014E+02,8.996287E+01,0.000000E+00 +405624,fr,1,3.750000E+00,6.486750E+00,4.638797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +405626,fr,1,3.750000E+00,6.486750E+00,4.638797E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +405636,fr,2,3.850000E+00,6.486750E+00,4.638797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +405648,fr,1,3.950000E+00,6.486750E+00,4.638797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999122E+01,0.000000E+00 +405649,fr,1,3.950000E+00,6.486750E+00,4.638797E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999122E+01,0.000000E+00 +405652,fr,1,3.950000E+00,6.486750E+00,4.638797E+01,1.500000E+01,Active Shallow Crust,2.400197E+02,5.800504E+01,0.000000E+00 +405655,fr,1,3.950000E+00,6.486750E+00,4.638797E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999112E+01,-9.000000E+01 +405663,fr,1,4.050000E+00,6.486750E+00,4.638797E+01,5.000000E+00,Active Shallow Crust,2.400057E+02,5.800594E+01,0.000000E+00 +405672,fr,2,4.150000E+00,6.486750E+00,4.638797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +405681,fr,1,4.150000E+00,6.486750E+00,4.638797E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999477E+01,0.000000E+00 +405684,fr,1,4.250000E+00,6.486750E+00,4.638797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +405687,fr,1,4.250000E+00,6.486750E+00,4.638797E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.799389E+01,0.000000E+00 +405696,fr,1,4.350000E+00,6.486750E+00,4.638797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998892E+01,0.000000E+00 +405708,fr,2,4.450000E+00,6.486750E+00,4.638797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +405726,fr,1,4.550000E+00,6.486750E+00,4.638797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999110E+01,-9.000000E+01 +405742,fr,1,4.650000E+00,6.486750E+00,4.638797E+01,1.500000E+01,Active Shallow Crust,1.288912E+02,8.998672E+01,0.000000E+00 +405750,fr,1,4.750000E+00,6.486750E+00,4.638797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,-9.000000E+01 +405753,fr,1,4.750000E+00,6.486750E+00,4.638797E+01,5.000000E+00,Active Shallow Crust,1.288888E+02,8.998817E+01,0.000000E+00 +405819,fr,1,5.350000E+00,6.486750E+00,4.638797E+01,5.000000E+00,Active Shallow Crust,2.400250E+02,5.799793E+01,0.000000E+00 +406080,fr,1,3.550000E+00,6.680680E+00,4.731588E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999316E+01,0.000000E+00 +406083,fr,1,3.550000E+00,6.680680E+00,4.731588E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799847E+01,0.000000E+00 +406085,fr,1,3.550000E+00,6.680680E+00,4.731588E+01,2.750000E+01,Active Shallow Crust,2.400111E+02,5.799838E+01,0.000000E+00 +406086,fr,1,3.550000E+00,6.680680E+00,4.731588E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999309E+01,-9.000000E+01 +406092,fr,2,3.650000E+00,6.680680E+00,4.731588E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998782E+01,0.000000E+00 +406113,fr,1,3.750000E+00,6.680680E+00,4.731588E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996751E+01,0.000000E+00 +406117,fr,1,3.850000E+00,6.680680E+00,4.731588E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +406122,fr,1,3.850000E+00,6.680680E+00,4.731588E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,-9.000000E+01 +406128,fr,1,3.950000E+00,6.680680E+00,4.731588E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999137E+01,0.000000E+00 +406140,fr,4,4.050000E+00,6.680680E+00,4.731588E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998846E+01,0.000000E+00 +406156,fr,1,4.150000E+00,6.680680E+00,4.731588E+01,1.500000E+01,Active Shallow Crust,2.400094E+02,5.799730E+01,0.000000E+00 +406159,fr,1,4.150000E+00,6.680680E+00,4.731588E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998960E+01,-9.000000E+01 +406161,fr,1,4.150000E+00,6.680680E+00,4.731588E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999486E+01,0.000000E+00 +406170,fr,1,4.250000E+00,6.680680E+00,4.731588E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999073E+01,-9.000000E+01 +406171,fr,1,4.250000E+00,6.680680E+00,4.731588E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999073E+01,-9.000000E+01 +406188,fr,1,4.450000E+00,6.680680E+00,4.731588E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +406196,fr,1,4.450000E+00,6.680680E+00,4.731588E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,-9.000000E+01 +406200,fr,2,4.550000E+00,6.680680E+00,4.731588E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998919E+01,0.000000E+00 +406203,fr,1,4.550000E+00,6.680680E+00,4.731588E+01,5.000000E+00,Active Shallow Crust,2.400094E+02,5.799730E+01,0.000000E+00 +406260,fr,1,5.050000E+00,6.680680E+00,4.731588E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +406262,fr,1,5.050000E+00,6.680680E+00,4.731588E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +406560,fr,2,3.550000E+00,-4.692920E+00,4.845352E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999331E+01,0.000000E+00 +406561,fr,1,3.550000E+00,-4.692920E+00,4.845352E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999331E+01,0.000000E+00 +406567,fr,1,3.550000E+00,-4.692920E+00,4.845352E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999323E+01,-9.000000E+01 +406572,fr,1,3.650000E+00,-4.692920E+00,4.845352E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +406574,fr,1,3.650000E+00,-4.692920E+00,4.845352E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +406584,fr,2,3.750000E+00,-4.692920E+00,4.845352E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +406585,fr,1,3.750000E+00,-4.692920E+00,4.845352E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +406596,fr,2,3.850000E+00,-4.692920E+00,4.845352E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +406608,fr,1,3.950000E+00,-4.692920E+00,4.845352E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999156E+01,0.000000E+00 +406617,fr,1,3.950000E+00,-4.692920E+00,4.845352E+01,5.000000E+00,Active Shallow Crust,1.289012E+02,8.999367E+01,0.000000E+00 +406620,fr,2,4.050000E+00,-4.692920E+00,4.845352E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +406645,fr,1,4.250000E+00,-4.692920E+00,4.845352E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +406704,fr,1,4.750000E+00,-4.692920E+00,4.845352E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +406933,fr,1,6.650000E+00,-4.692920E+00,4.845352E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +407040,fr,1,3.550000E+00,2.215940E+00,4.920918E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +407077,fr,1,3.850000E+00,2.215940E+00,4.920918E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999067E+01,0.000000E+00 +407097,fr,1,3.950000E+00,2.215940E+00,4.920918E+01,5.000000E+00,Active Shallow Crust,1.289000E+02,8.999377E+01,0.000000E+00 +407100,fr,1,4.050000E+00,2.215940E+00,4.920918E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +407118,fr,1,4.150000E+00,2.215940E+00,4.920918E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +407529,fr,1,3.550000E+00,4.133360E+00,4.102819E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999239E+01,0.000000E+00 +407562,fr,1,3.850000E+00,4.133360E+00,4.102819E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,-9.000000E+01 +407604,fr,1,4.250000E+00,4.133360E+00,4.102819E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +408000,fr,1,3.550000E+00,6.100620E+00,4.672852E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999309E+01,0.000000E+00 +408012,fr,2,3.650000E+00,6.100620E+00,4.672852E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998768E+01,0.000000E+00 +408013,fr,1,3.650000E+00,6.100620E+00,4.672852E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998768E+01,0.000000E+00 +408015,fr,1,3.650000E+00,6.100620E+00,4.672852E+01,5.000000E+00,Active Shallow Crust,2.400000E+02,5.801364E+01,0.000000E+00 +408016,fr,1,3.650000E+00,6.100620E+00,4.672852E+01,1.500000E+01,Active Shallow Crust,2.400000E+02,5.801364E+01,0.000000E+00 +408022,fr,1,3.650000E+00,6.100620E+00,4.672852E+01,1.500000E+01,Active Shallow Crust,1.289005E+02,8.996353E+01,0.000000E+00 +408034,fr,1,3.750000E+00,6.100620E+00,4.672852E+01,1.500000E+01,Active Shallow Crust,1.288958E+02,8.996749E+01,0.000000E+00 +408036,fr,1,3.850000E+00,6.100620E+00,4.672852E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +408037,fr,1,3.850000E+00,6.100620E+00,4.672852E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +408048,fr,1,3.950000E+00,6.100620E+00,4.672852E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999128E+01,0.000000E+00 +408049,fr,1,3.950000E+00,6.100620E+00,4.672852E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999128E+01,0.000000E+00 +408061,fr,1,4.050000E+00,6.100620E+00,4.672852E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998834E+01,0.000000E+00 +408070,fr,1,4.050000E+00,6.100620E+00,4.672852E+01,1.500000E+01,Active Shallow Crust,1.288912E+02,8.999223E+01,0.000000E+00 +408096,fr,1,4.350000E+00,6.100620E+00,4.672852E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998899E+01,0.000000E+00 +408102,fr,1,4.350000E+00,6.100620E+00,4.672852E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998886E+01,-9.000000E+01 +408109,fr,1,4.450000E+00,6.100620E+00,4.672852E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +408121,fr,1,4.550000E+00,6.100620E+00,4.672852E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +408157,fr,1,4.850000E+00,6.100620E+00,4.672852E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +408660,fr,1,5.050000E+00,4.499680E+00,5.237473E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +408985,fr,1,3.750000E+00,-4.412310E+00,4.902546E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +408997,fr,1,3.850000E+00,-4.412310E+00,4.902546E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +409454,fr,1,3.650000E+00,3.415690E+00,4.915277E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999118E+01,0.000000E+00 +409464,fr,1,3.750000E+00,3.415690E+00,4.915277E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +409469,fr,1,3.750000E+00,3.415690E+00,4.915277E+01,2.750000E+01,Active Shallow Crust,2.400087E+02,5.801758E+01,0.000000E+00 +409477,fr,1,3.850000E+00,3.415690E+00,4.915277E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +409920,fr,3,3.550000E+00,-1.543780E+00,4.846330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +409921,fr,1,3.550000E+00,-1.543780E+00,4.846330E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +409935,fr,3,3.650000E+00,-1.543780E+00,4.846330E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801321E+01,0.000000E+00 +409936,fr,1,3.650000E+00,-1.543780E+00,4.846330E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801321E+01,0.000000E+00 +409941,fr,1,3.650000E+00,-1.543780E+00,4.846330E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.996343E+01,0.000000E+00 +409944,fr,3,3.750000E+00,-1.543780E+00,4.846330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +409951,fr,1,3.750000E+00,-1.543780E+00,4.846330E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999060E+01,-9.000000E+01 +409956,fr,2,3.850000E+00,-1.543780E+00,4.846330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +409968,fr,1,3.950000E+00,-1.543780E+00,4.846330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +409980,fr,1,4.050000E+00,-1.543780E+00,4.846330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +409992,fr,1,4.150000E+00,-1.543780E+00,4.846330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +410034,fr,1,4.450000E+00,-1.543780E+00,4.846330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,-9.000000E+01 +410042,fr,1,4.550000E+00,-1.543780E+00,4.846330E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +410065,fr,1,4.750000E+00,-1.543780E+00,4.846330E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +410100,fr,1,5.050000E+00,-1.543780E+00,4.846330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +410112,fr,1,5.150000E+00,-1.543780E+00,4.846330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +410121,fr,1,5.150000E+00,-1.543780E+00,4.846330E+01,5.000000E+00,Active Shallow Crust,1.288827E+02,8.999098E+01,0.000000E+00 +410124,fr,1,5.250000E+00,-1.543780E+00,4.846330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +410436,fr,1,3.850000E+00,2.642380E+00,5.320266E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +410448,fr,1,3.950000E+00,2.642380E+00,5.320266E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +410880,fr,2,3.550000E+00,7.779100E+00,4.588706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999298E+01,0.000000E+00 +410881,fr,1,3.550000E+00,7.779100E+00,4.588706E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999298E+01,0.000000E+00 +410884,fr,1,3.550000E+00,7.779100E+00,4.588706E+01,1.500000E+01,Active Shallow Crust,2.400107E+02,5.799906E+01,0.000000E+00 +410886,fr,1,3.550000E+00,7.779100E+00,4.588706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999290E+01,-9.000000E+01 +410892,fr,3,3.650000E+00,7.779100E+00,4.588706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998749E+01,0.000000E+00 +410895,fr,1,3.650000E+00,7.779100E+00,4.588706E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801340E+01,0.000000E+00 +410897,fr,1,3.650000E+00,7.779100E+00,4.588706E+01,2.750000E+01,Active Shallow Crust,2.400010E+02,5.801331E+01,0.000000E+00 +410904,fr,1,3.750000E+00,7.779100E+00,4.588706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +410910,fr,2,3.750000E+00,7.779100E+00,4.588706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,-9.000000E+01 +410911,fr,1,3.750000E+00,7.779100E+00,4.588706E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998872E+01,-9.000000E+01 +410916,fr,1,3.850000E+00,7.779100E+00,4.588706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +410917,fr,1,3.850000E+00,7.779100E+00,4.588706E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +410928,fr,2,3.950000E+00,7.779100E+00,4.588706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999114E+01,0.000000E+00 +410938,fr,1,3.950000E+00,7.779100E+00,4.588706E+01,1.500000E+01,Active Shallow Crust,1.288997E+02,8.999335E+01,0.000000E+00 +410949,fr,1,4.050000E+00,7.779100E+00,4.588706E+01,5.000000E+00,Active Shallow Crust,1.288913E+02,8.999408E+01,0.000000E+00 +410964,fr,1,4.250000E+00,7.779100E+00,4.588706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +410965,fr,1,4.250000E+00,7.779100E+00,4.588706E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +410977,fr,1,4.350000E+00,7.779100E+00,4.588706E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +411001,fr,1,4.550000E+00,7.779100E+00,4.588706E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998890E+01,0.000000E+00 +411362,fr,1,3.550000E+00,3.148790E+00,4.937219E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +411369,fr,1,3.550000E+00,3.148790E+00,4.937219E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999343E+01,0.000000E+00 +411379,fr,1,3.650000E+00,3.148790E+00,4.937219E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999112E+01,-9.000000E+01 +411427,fr,1,4.050000E+00,3.148790E+00,4.937219E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999066E+01,-9.000000E+01 +411444,fr,1,4.250000E+00,3.148790E+00,4.937219E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +411446,fr,1,4.250000E+00,3.148790E+00,4.937219E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +411456,fr,1,4.350000E+00,3.148790E+00,4.937219E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +411480,fr,1,4.550000E+00,3.148790E+00,4.937219E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +411840,fr,2,3.550000E+00,6.653040E+00,4.601793E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999300E+01,0.000000E+00 +411841,fr,2,3.550000E+00,6.653040E+00,4.601793E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999300E+01,0.000000E+00 +411843,fr,1,3.550000E+00,6.653040E+00,4.601793E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799791E+01,0.000000E+00 +411846,fr,1,3.550000E+00,6.653040E+00,4.601793E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999292E+01,-9.000000E+01 +411852,fr,4,3.650000E+00,6.653040E+00,4.601793E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998752E+01,0.000000E+00 +411853,fr,1,3.650000E+00,6.653040E+00,4.601793E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998752E+01,0.000000E+00 +411854,fr,1,3.650000E+00,6.653040E+00,4.601793E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998752E+01,0.000000E+00 +411855,fr,1,3.650000E+00,6.653040E+00,4.601793E+01,5.000000E+00,Active Shallow Crust,2.400003E+02,5.801402E+01,0.000000E+00 +411862,fr,1,3.650000E+00,6.653040E+00,4.601793E+01,1.500000E+01,Active Shallow Crust,1.289003E+02,8.996352E+01,0.000000E+00 +411864,fr,1,3.750000E+00,6.653040E+00,4.601793E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +411867,fr,1,3.750000E+00,6.653040E+00,4.601793E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.801806E+01,0.000000E+00 +411871,fr,1,3.750000E+00,6.653040E+00,4.601793E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998875E+01,-9.000000E+01 +411876,fr,1,3.850000E+00,6.653040E+00,4.601793E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +411877,fr,1,3.850000E+00,6.653040E+00,4.601793E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +411881,fr,1,3.850000E+00,6.653040E+00,4.601793E+01,2.750000E+01,Active Shallow Crust,2.400112E+02,5.799822E+01,0.000000E+00 +411888,fr,1,3.950000E+00,6.653040E+00,4.601793E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +411889,fr,1,3.950000E+00,6.653040E+00,4.601793E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +411913,fr,1,4.150000E+00,6.653040E+00,4.601793E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +411916,fr,1,4.150000E+00,6.653040E+00,4.601793E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.799710E+01,0.000000E+00 +411924,fr,1,4.250000E+00,6.653040E+00,4.601793E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +411936,fr,1,4.350000E+00,6.653040E+00,4.601793E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +411956,fr,1,4.450000E+00,6.653040E+00,4.601793E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +411958,fr,1,4.450000E+00,6.653040E+00,4.601793E+01,1.500000E+01,Active Shallow Crust,1.288928E+02,8.999379E+01,0.000000E+00 +411993,fr,2,4.750000E+00,6.653040E+00,4.601793E+01,5.000000E+00,Active Shallow Crust,1.288886E+02,8.998814E+01,0.000000E+00 +412027,fr,1,5.050000E+00,6.653040E+00,4.601793E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,-9.000000E+01 +412800,fr,1,3.550000E+00,3.045580E+00,4.655652E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +412816,fr,1,3.650000E+00,3.045580E+00,4.655652E+01,1.500000E+01,Active Shallow Crust,2.400009E+02,5.801280E+01,0.000000E+00 +412824,fr,1,3.750000E+00,3.045580E+00,4.655652E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +412826,fr,1,3.750000E+00,3.045580E+00,4.655652E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +412849,fr,1,3.950000E+00,3.045580E+00,4.655652E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998906E+01,0.000000E+00 +412890,fr,1,4.250000E+00,3.045580E+00,4.655652E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999060E+01,-9.000000E+01 +412944,fr,1,4.750000E+00,3.045580E+00,4.655652E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +412988,fr,1,5.050000E+00,3.045580E+00,4.655652E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +413763,fr,1,3.550000E+00,-5.121000E-01,4.503327E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799830E+01,0.000000E+00 +413766,fr,1,3.550000E+00,-5.121000E-01,4.503327E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +413784,fr,3,3.750000E+00,-5.121000E-01,4.503327E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +413799,fr,1,3.850000E+00,-5.121000E-01,4.503327E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799780E+01,0.000000E+00 +413806,fr,1,3.850000E+00,-5.121000E-01,4.503327E+01,1.500000E+01,Active Shallow Crust,1.288959E+02,8.999370E+01,0.000000E+00 +414242,fr,1,3.550000E+00,1.675680E+00,4.760534E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +414252,fr,1,3.650000E+00,1.675680E+00,4.760534E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +414262,fr,1,3.650000E+00,1.675680E+00,4.760534E+01,1.500000E+01,Active Shallow Crust,1.289004E+02,8.996355E+01,0.000000E+00 +414277,fr,1,3.850000E+00,1.675680E+00,4.760534E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +414312,fr,2,4.150000E+00,1.675680E+00,4.760534E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +414748,fr,1,3.750000E+00,-2.856980E+00,5.036805E+01,1.500000E+01,Active Shallow Crust,2.400091E+02,5.801771E+01,0.000000E+00 +415200,fr,1,3.550000E+00,6.248620E+00,4.505147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999287E+01,0.000000E+00 +415201,fr,2,3.550000E+00,6.248620E+00,4.505147E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999287E+01,0.000000E+00 +415209,fr,1,3.550000E+00,6.248620E+00,4.505147E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999287E+01,0.000000E+00 +415218,fr,1,3.650000E+00,6.248620E+00,4.505147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998715E+01,-9.000000E+01 +415224,fr,2,3.750000E+00,6.248620E+00,4.505147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +415227,fr,2,3.750000E+00,6.248620E+00,4.505147E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.801685E+01,0.000000E+00 +415234,fr,1,3.750000E+00,6.248620E+00,4.505147E+01,1.500000E+01,Active Shallow Crust,1.288974E+02,8.996686E+01,0.000000E+00 +415244,fr,1,3.850000E+00,6.248620E+00,4.505147E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,-9.000000E+01 +415248,fr,1,3.950000E+00,6.248620E+00,4.505147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999101E+01,0.000000E+00 +415253,fr,1,3.950000E+00,6.248620E+00,4.505147E+01,2.750000E+01,Active Shallow Crust,2.400189E+02,5.800548E+01,0.000000E+00 +415260,fr,1,4.050000E+00,6.248620E+00,4.505147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999199E+01,0.000000E+00 +415284,fr,1,4.250000E+00,6.248620E+00,4.505147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +415680,fr,1,3.550000E+00,7.071160E+00,4.541347E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999292E+01,0.000000E+00 +415684,fr,1,3.550000E+00,7.071160E+00,4.541347E+01,1.500000E+01,Active Shallow Crust,2.400125E+02,5.799844E+01,0.000000E+00 +415707,fr,1,3.750000E+00,7.071160E+00,4.541347E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801720E+01,0.000000E+00 +415710,fr,1,3.750000E+00,7.071160E+00,4.541347E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998862E+01,-9.000000E+01 +415729,fr,1,3.950000E+00,7.071160E+00,4.541347E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +415776,fr,1,4.350000E+00,7.071160E+00,4.541347E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +415798,fr,1,4.450000E+00,7.071160E+00,4.541347E+01,1.500000E+01,Active Shallow Crust,1.288928E+02,8.999372E+01,0.000000E+00 +415842,fr,1,4.850000E+00,7.071160E+00,4.541347E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,-9.000000E+01 +415933,fr,1,5.650000E+00,7.071160E+00,4.541347E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +416184,fr,1,3.750000E+00,-2.405100E+00,5.040127E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +416640,fr,2,3.550000E+00,4.342960E+00,4.479778E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999284E+01,0.000000E+00 +416643,fr,1,3.550000E+00,4.342960E+00,4.479778E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799841E+01,0.000000E+00 +416648,fr,1,3.550000E+00,4.342960E+00,4.479778E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999276E+01,-9.000000E+01 +416664,fr,1,3.750000E+00,4.342960E+00,4.479778E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998863E+01,0.000000E+00 +416676,fr,2,3.850000E+00,4.342960E+00,4.479778E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +416700,fr,1,4.050000E+00,4.342960E+00,4.479778E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999195E+01,0.000000E+00 +416704,fr,1,4.050000E+00,4.342960E+00,4.479778E+01,1.500000E+01,Active Shallow Crust,2.400053E+02,5.800600E+01,0.000000E+00 +416712,fr,1,4.150000E+00,4.342960E+00,4.479778E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +416724,fr,1,4.250000E+00,4.342960E+00,4.479778E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +416745,fr,1,4.350000E+00,4.342960E+00,4.479778E+01,5.000000E+00,Active Shallow Crust,1.288977E+02,8.998296E+01,0.000000E+00 +416775,fr,1,4.650000E+00,4.342960E+00,4.479778E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799396E+01,0.000000E+00 +416892,fr,1,5.650000E+00,4.342960E+00,4.479778E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +416894,fr,1,5.650000E+00,4.342960E+00,4.479778E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +417120,fr,3,3.550000E+00,-9.045400E-01,4.307980E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +417121,fr,2,3.550000E+00,-9.045400E-01,4.307980E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +417123,fr,1,3.550000E+00,-9.045400E-01,4.307980E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799823E+01,0.000000E+00 +417126,fr,1,3.550000E+00,-9.045400E-01,4.307980E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,-9.000000E+01 +417127,fr,1,3.550000E+00,-9.045400E-01,4.307980E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,-9.000000E+01 +417130,fr,1,3.550000E+00,-9.045400E-01,4.307980E+01,1.500000E+01,Active Shallow Crust,1.288967E+02,8.999355E+01,0.000000E+00 +417132,fr,4,3.650000E+00,-9.045400E-01,4.307980E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +417133,fr,1,3.650000E+00,-9.045400E-01,4.307980E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +417141,fr,1,3.650000E+00,-9.045400E-01,4.307980E+01,5.000000E+00,Active Shallow Crust,1.289006E+02,8.996353E+01,0.000000E+00 +417145,fr,2,3.750000E+00,-9.045400E-01,4.307980E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +417146,fr,1,3.750000E+00,-9.045400E-01,4.307980E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +417147,fr,3,3.750000E+00,-9.045400E-01,4.307980E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801738E+01,0.000000E+00 +417150,fr,1,3.750000E+00,-9.045400E-01,4.307980E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,-9.000000E+01 +417156,fr,3,3.850000E+00,-9.045400E-01,4.307980E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +417160,fr,1,3.850000E+00,-9.045400E-01,4.307980E+01,1.500000E+01,Active Shallow Crust,2.400104E+02,5.799769E+01,0.000000E+00 +417169,fr,1,3.950000E+00,-9.045400E-01,4.307980E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +417192,fr,2,4.150000E+00,-9.045400E-01,4.307980E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +417204,fr,1,4.250000E+00,-9.045400E-01,4.307980E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +417207,fr,1,4.250000E+00,-9.045400E-01,4.307980E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.799395E+01,0.000000E+00 +417210,fr,1,4.250000E+00,-9.045400E-01,4.307980E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +417213,fr,1,4.250000E+00,-9.045400E-01,4.307980E+01,5.000000E+00,Active Shallow Crust,1.288948E+02,8.998096E+01,0.000000E+00 +417214,fr,1,4.250000E+00,-9.045400E-01,4.307980E+01,1.500000E+01,Active Shallow Crust,1.288948E+02,8.998096E+01,0.000000E+00 +417216,fr,1,4.350000E+00,-9.045400E-01,4.307980E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +417228,fr,1,4.450000E+00,-9.045400E-01,4.307980E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +417240,fr,1,4.550000E+00,-9.045400E-01,4.307980E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +417253,fr,1,4.650000E+00,-9.045400E-01,4.307980E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +417266,fr,1,4.750000E+00,-9.045400E-01,4.307980E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +417300,fr,1,5.050000E+00,-9.045400E-01,4.307980E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +417312,fr,1,5.150000E+00,-9.045400E-01,4.307980E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +417432,fr,1,6.150000E+00,-9.045379E-01,4.307980E+01,6.011322E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +417612,fr,1,3.650000E+00,4.327880E+00,4.173157E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999329E+01,0.000000E+00 +417624,fr,1,3.750000E+00,4.327880E+00,4.173157E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998804E+01,0.000000E+00 +417660,fr,1,4.050000E+00,4.327880E+00,4.173157E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999154E+01,0.000000E+00 +417780,fr,1,5.050000E+00,4.327880E+00,4.173157E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +417852,fr,1,5.650000E+00,4.327880E+00,4.173157E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +418080,fr,3,3.550000E+00,3.062100E+00,4.591298E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +418081,fr,1,3.550000E+00,3.062100E+00,4.591298E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +418082,fr,1,3.550000E+00,3.062100E+00,4.591298E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +418086,fr,1,3.550000E+00,3.062100E+00,4.591298E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,-9.000000E+01 +418087,fr,1,3.550000E+00,3.062100E+00,4.591298E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,-9.000000E+01 +418089,fr,1,3.550000E+00,3.062100E+00,4.591298E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.999298E+01,0.000000E+00 +418090,fr,1,3.550000E+00,3.062100E+00,4.591298E+01,1.500000E+01,Active Shallow Crust,1.288969E+02,8.999298E+01,0.000000E+00 +418092,fr,4,3.650000E+00,3.062100E+00,4.591298E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +418093,fr,1,3.650000E+00,3.062100E+00,4.591298E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +418095,fr,1,3.650000E+00,3.062100E+00,4.591298E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801242E+01,0.000000E+00 +418098,fr,1,3.650000E+00,3.062100E+00,4.591298E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999051E+01,-9.000000E+01 +418104,fr,3,3.750000E+00,3.062100E+00,4.591298E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +418105,fr,1,3.750000E+00,3.062100E+00,4.591298E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +418113,fr,2,3.750000E+00,3.062100E+00,4.591298E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.996748E+01,0.000000E+00 +418116,fr,1,3.850000E+00,3.062100E+00,4.591298E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +418117,fr,1,3.850000E+00,3.062100E+00,4.591298E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +418118,fr,2,3.850000E+00,3.062100E+00,4.591298E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +418119,fr,2,3.850000E+00,3.062100E+00,4.591298E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799760E+01,0.000000E+00 +418128,fr,2,3.950000E+00,3.062100E+00,4.591298E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998893E+01,0.000000E+00 +418129,fr,2,3.950000E+00,3.062100E+00,4.591298E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998893E+01,0.000000E+00 +418131,fr,1,3.950000E+00,3.062100E+00,4.591298E+01,5.000000E+00,Active Shallow Crust,2.400199E+02,5.800462E+01,0.000000E+00 +418134,fr,1,3.950000E+00,3.062100E+00,4.591298E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,-9.000000E+01 +418135,fr,1,3.950000E+00,3.062100E+00,4.591298E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999104E+01,-9.000000E+01 +418141,fr,2,4.050000E+00,3.062100E+00,4.591298E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +418143,fr,1,4.050000E+00,3.062100E+00,4.591298E+01,5.000000E+00,Active Shallow Crust,2.400057E+02,5.800577E+01,0.000000E+00 +418149,fr,1,4.050000E+00,3.062100E+00,4.591298E+01,5.000000E+00,Active Shallow Crust,1.288907E+02,8.999310E+01,0.000000E+00 +418152,fr,2,4.150000E+00,3.062100E+00,4.591298E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +418164,fr,1,4.250000E+00,3.062100E+00,4.591298E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +418165,fr,1,4.250000E+00,3.062100E+00,4.591298E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +418172,fr,1,4.250000E+00,3.062100E+00,4.591298E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,-9.000000E+01 +418173,fr,1,4.250000E+00,3.062100E+00,4.591298E+01,5.000000E+00,Active Shallow Crust,1.288946E+02,8.998093E+01,0.000000E+00 +418191,fr,1,4.450000E+00,3.062100E+00,4.591298E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.799456E+01,0.000000E+00 +418194,fr,1,4.450000E+00,3.062100E+00,4.591298E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,-9.000000E+01 +418221,fr,2,4.650000E+00,3.062100E+00,4.591298E+01,5.000000E+00,Active Shallow Crust,1.288911E+02,8.998717E+01,0.000000E+00 +418260,fr,1,5.050000E+00,3.062100E+00,4.591298E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +418368,fr,1,5.950000E+00,3.062100E+00,4.591298E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +419040,fr,1,3.550000E+00,4.967550E+00,5.183710E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998754E+01,0.000000E+00 +419052,fr,1,3.650000E+00,4.967550E+00,5.183710E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998889E+01,0.000000E+00 +419053,fr,1,3.650000E+00,4.967550E+00,5.183710E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998889E+01,0.000000E+00 +419055,fr,1,3.650000E+00,4.967550E+00,5.183710E+01,5.000000E+00,Active Shallow Crust,2.400017E+02,5.801225E+01,0.000000E+00 +419088,fr,1,3.950000E+00,4.967550E+00,5.183710E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998820E+01,0.000000E+00 +419124,fr,1,4.250000E+00,4.967550E+00,5.183710E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998887E+01,0.000000E+00 +419125,fr,1,4.250000E+00,4.967550E+00,5.183710E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998887E+01,0.000000E+00 +419520,fr,1,3.550000E+00,1.765400E+00,4.984389E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +419532,fr,1,3.650000E+00,1.765400E+00,4.984389E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +419545,fr,1,3.750000E+00,1.765400E+00,4.984389E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +419568,fr,1,3.950000E+00,1.765400E+00,4.984389E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +419604,fr,1,4.250000E+00,1.765400E+00,4.984389E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +419613,fr,1,4.250000E+00,1.765400E+00,4.984389E+01,5.000000E+00,Active Shallow Crust,1.288936E+02,8.998096E+01,0.000000E+00 +420012,fr,1,3.650000E+00,2.621260E+00,4.817808E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999101E+01,0.000000E+00 +420132,fr,1,4.650000E+00,2.621260E+00,4.817808E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +420496,fr,1,3.650000E+00,4.192110E+00,4.318779E+01,1.500000E+01,Active Shallow Crust,2.400022E+02,5.801212E+01,0.000000E+00 +420501,fr,1,3.650000E+00,4.192110E+00,4.318779E+01,5.000000E+00,Active Shallow Crust,1.289011E+02,8.996346E+01,0.000000E+00 +420531,fr,1,3.950000E+00,4.192110E+00,4.318779E+01,5.000000E+00,Active Shallow Crust,2.400194E+02,5.800571E+01,0.000000E+00 +420549,fr,1,4.050000E+00,4.192110E+00,4.318779E+01,5.000000E+00,Active Shallow Crust,1.288919E+02,8.999380E+01,0.000000E+00 +420960,fr,2,3.550000E+00,-2.200110E+00,4.800721E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +420962,fr,1,3.550000E+00,-2.200110E+00,4.800721E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +420963,fr,1,3.550000E+00,-2.200110E+00,4.800721E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799805E+01,0.000000E+00 +420969,fr,1,3.550000E+00,-2.200110E+00,4.800721E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999326E+01,0.000000E+00 +420972,fr,1,3.650000E+00,-2.200110E+00,4.800721E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999098E+01,0.000000E+00 +420987,fr,1,3.750000E+00,-2.200110E+00,4.800721E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.801772E+01,0.000000E+00 +420997,fr,1,3.850000E+00,-2.200110E+00,4.800721E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +421009,fr,1,3.950000E+00,-2.200110E+00,4.800721E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +421011,fr,1,3.950000E+00,-2.200110E+00,4.800721E+01,5.000000E+00,Active Shallow Crust,2.400201E+02,5.800496E+01,0.000000E+00 +421021,fr,1,4.050000E+00,-2.200110E+00,4.800721E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +421032,fr,1,4.150000E+00,-2.200110E+00,4.800721E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +421045,fr,1,4.250000E+00,-2.200110E+00,4.800721E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +421056,fr,1,4.350000E+00,-2.200110E+00,4.800721E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +421069,fr,1,4.450000E+00,-2.200110E+00,4.800721E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +421215,fr,1,5.650000E+00,-2.200110E+00,4.800721E+01,5.000000E+00,Active Shallow Crust,2.400389E+02,5.799959E+01,0.000000E+00 +421442,fr,1,3.550000E+00,6.537420E+00,4.895305E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998676E+01,0.000000E+00 +421453,fr,1,3.650000E+00,6.537420E+00,4.895305E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998820E+01,0.000000E+00 +421457,fr,1,3.650000E+00,6.537420E+00,4.895305E+01,2.750000E+01,Active Shallow Crust,2.400003E+02,5.801353E+01,0.000000E+00 +421465,fr,1,3.750000E+00,6.537420E+00,4.895305E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +421476,fr,1,3.850000E+00,6.537420E+00,4.895305E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +421489,fr,1,3.950000E+00,6.537420E+00,4.895305E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999165E+01,0.000000E+00 +421515,fr,1,4.150000E+00,6.537420E+00,4.895305E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.799739E+01,0.000000E+00 +421579,fr,1,4.650000E+00,6.537420E+00,4.895305E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999056E+01,-9.000000E+01 +421923,fr,1,3.550000E+00,-3.151930E+00,4.940888E+01,5.000000E+00,Active Shallow Crust,2.400129E+02,5.799825E+01,0.000000E+00 +421946,fr,1,3.750000E+00,-3.151930E+00,4.940888E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +421956,fr,1,3.850000E+00,-3.151930E+00,4.940888E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999071E+01,0.000000E+00 +421958,fr,1,3.850000E+00,-3.151930E+00,4.940888E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999071E+01,0.000000E+00 +421962,fr,1,3.850000E+00,-3.151930E+00,4.940888E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999060E+01,-9.000000E+01 +422005,fr,1,4.250000E+00,-3.151930E+00,4.940888E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +422401,fr,1,3.550000E+00,1.805310E+00,4.747984E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +422448,fr,1,3.950000E+00,1.805310E+00,4.747984E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +422457,fr,1,3.950000E+00,1.805310E+00,4.747984E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.999355E+01,0.000000E+00 +422496,fr,1,4.350000E+00,1.805310E+00,4.747984E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +422497,fr,1,4.350000E+00,1.805310E+00,4.747984E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +422916,fr,1,3.850000E+00,4.218490E+00,4.049679E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +424321,fr,1,3.550000E+00,-2.434720E+00,4.387995E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +424377,fr,1,3.950000E+00,-2.434720E+00,4.387995E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.999427E+01,0.000000E+00 +424800,fr,1,3.550000E+00,-3.279390E+00,4.709356E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +425314,fr,1,3.750000E+00,5.964700E+00,4.262130E+01,1.500000E+01,Active Shallow Crust,1.288974E+02,8.996742E+01,0.000000E+00 +425352,fr,1,4.150000E+00,5.964700E+00,4.262130E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +425760,fr,2,3.550000E+00,6.472250E+00,4.793069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999324E+01,0.000000E+00 +425762,fr,1,3.550000E+00,6.472250E+00,4.793069E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999324E+01,0.000000E+00 +425772,fr,1,3.650000E+00,6.472250E+00,4.793069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998795E+01,0.000000E+00 +425784,fr,2,3.750000E+00,6.472250E+00,4.793069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +425785,fr,1,3.750000E+00,6.472250E+00,4.793069E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +425793,fr,1,3.750000E+00,6.472250E+00,4.793069E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.996751E+01,0.000000E+00 +425794,fr,1,3.750000E+00,6.472250E+00,4.793069E+01,1.500000E+01,Active Shallow Crust,1.288957E+02,8.996751E+01,0.000000E+00 +425796,fr,3,3.850000E+00,6.472250E+00,4.793069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +425797,fr,1,3.850000E+00,6.472250E+00,4.793069E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +425799,fr,1,3.850000E+00,6.472250E+00,4.793069E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799829E+01,0.000000E+00 +425803,fr,1,3.850000E+00,6.472250E+00,4.793069E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,-9.000000E+01 +425805,fr,1,3.850000E+00,6.472250E+00,4.793069E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999522E+01,0.000000E+00 +425806,fr,1,3.850000E+00,6.472250E+00,4.793069E+01,1.500000E+01,Active Shallow Crust,1.288958E+02,8.999522E+01,0.000000E+00 +425808,fr,1,3.950000E+00,6.472250E+00,4.793069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999147E+01,0.000000E+00 +425813,fr,1,3.950000E+00,6.472250E+00,4.793069E+01,2.750000E+01,Active Shallow Crust,2.400196E+02,5.800491E+01,0.000000E+00 +425815,fr,1,3.950000E+00,6.472250E+00,4.793069E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999137E+01,-9.000000E+01 +425817,fr,1,3.950000E+00,6.472250E+00,4.793069E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.999361E+01,0.000000E+00 +425820,fr,1,4.050000E+00,6.472250E+00,4.793069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998860E+01,0.000000E+00 +425826,fr,1,4.050000E+00,6.472250E+00,4.793069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998847E+01,-9.000000E+01 +425829,fr,1,4.050000E+00,6.472250E+00,4.793069E+01,5.000000E+00,Active Shallow Crust,1.288914E+02,8.999240E+01,0.000000E+00 +425836,fr,1,4.150000E+00,6.472250E+00,4.793069E+01,1.500000E+01,Active Shallow Crust,2.400089E+02,5.799791E+01,0.000000E+00 +425838,fr,1,4.150000E+00,6.472250E+00,4.793069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,-9.000000E+01 +425865,fr,1,4.350000E+00,6.472250E+00,4.793069E+01,5.000000E+00,Active Shallow Crust,1.288978E+02,8.998259E+01,0.000000E+00 +425880,fr,1,4.550000E+00,6.472250E+00,4.793069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +425892,fr,2,4.650000E+00,6.472250E+00,4.793069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +425898,fr,1,4.650000E+00,6.472250E+00,4.793069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,-9.000000E+01 +425907,fr,1,4.750000E+00,6.472250E+00,4.793069E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.800463E+01,0.000000E+00 +425913,fr,1,4.750000E+00,6.472250E+00,4.793069E+01,5.000000E+00,Active Shallow Crust,1.288884E+02,8.998781E+01,0.000000E+00 +426240,fr,2,3.550000E+00,2.272080E+00,4.448325E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +426241,fr,1,3.550000E+00,2.272080E+00,4.448325E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +426252,fr,1,3.650000E+00,2.272080E+00,4.448325E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +426259,fr,1,3.650000E+00,2.272080E+00,4.448325E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,-9.000000E+01 +426264,fr,2,3.750000E+00,2.272080E+00,4.448325E+01,5.000000E+00,Active Shallow Crust,3.599986E+02,8.999142E+01,0.000000E+00 +426267,fr,1,3.750000E+00,2.272080E+00,4.448325E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801742E+01,0.000000E+00 +426270,fr,1,3.750000E+00,2.272080E+00,4.448325E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999133E+01,-9.000000E+01 +426272,fr,1,3.750000E+00,2.272080E+00,4.448325E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999133E+01,-9.000000E+01 +426295,fr,1,3.950000E+00,2.272080E+00,4.448325E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999081E+01,-9.000000E+01 +426309,fr,1,4.050000E+00,2.272080E+00,4.448325E+01,5.000000E+00,Active Shallow Crust,1.288910E+02,8.999393E+01,0.000000E+00 +426346,fr,1,4.350000E+00,2.272080E+00,4.448325E+01,1.500000E+01,Active Shallow Crust,1.288984E+02,8.998270E+01,0.000000E+00 +426397,fr,1,4.850000E+00,2.272080E+00,4.448325E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +426420,fr,1,5.050000E+00,2.272080E+00,4.448325E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +426624,fr,1,6.750000E+00,2.272095E+00,4.448325E+01,1.199416E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +426732,fr,1,3.650000E+00,6.928800E+00,5.012613E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998848E+01,0.000000E+00 +426733,fr,1,3.650000E+00,6.928800E+00,5.012613E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998848E+01,0.000000E+00 +426744,fr,1,3.750000E+00,6.928800E+00,5.012613E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +426753,fr,1,3.750000E+00,6.928800E+00,5.012613E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.996755E+01,0.000000E+00 +426756,fr,1,3.850000E+00,6.928800E+00,5.012613E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +426770,fr,1,3.950000E+00,6.928800E+00,5.012613E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999184E+01,0.000000E+00 +426771,fr,1,3.950000E+00,6.928800E+00,5.012613E+01,5.000000E+00,Active Shallow Crust,2.400206E+02,5.800526E+01,0.000000E+00 +426792,fr,2,4.150000E+00,6.928800E+00,5.012613E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +426804,fr,1,4.250000E+00,6.928800E+00,5.012613E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +426914,fr,1,5.150000E+00,6.928800E+00,5.012613E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +427260,fr,1,4.050000E+00,4.935610E+00,4.181453E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999155E+01,0.000000E+00 +427401,fr,1,5.150000E+00,4.935610E+00,4.181453E+01,5.000000E+00,Active Shallow Crust,1.288862E+02,8.999084E+01,0.000000E+00 +427680,fr,1,3.550000E+00,3.033720E+00,4.032600E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998847E+01,0.000000E+00 +427694,fr,1,3.650000E+00,3.033720E+00,4.032600E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +428169,fr,1,3.550000E+00,3.046530E+00,4.486796E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999464E+01,0.000000E+00 +428173,fr,1,3.650000E+00,3.046530E+00,4.486796E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +428184,fr,1,3.750000E+00,3.046530E+00,4.486796E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998865E+01,0.000000E+00 +428186,fr,1,3.750000E+00,3.046530E+00,4.486796E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998865E+01,0.000000E+00 +428189,fr,1,3.750000E+00,3.046530E+00,4.486796E+01,2.750000E+01,Active Shallow Crust,2.400086E+02,5.801729E+01,0.000000E+00 +428197,fr,1,3.850000E+00,3.046530E+00,4.486796E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +428209,fr,1,3.950000E+00,3.046530E+00,4.486796E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999098E+01,0.000000E+00 +428214,fr,1,3.950000E+00,3.046530E+00,4.486796E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,-9.000000E+01 +428232,fr,1,4.150000E+00,3.046530E+00,4.486796E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +428244,fr,1,4.250000E+00,3.046530E+00,4.486796E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +428245,fr,1,4.250000E+00,3.046530E+00,4.486796E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +428305,fr,1,4.750000E+00,3.046530E+00,4.486796E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +428383,fr,1,5.350000E+00,3.046530E+00,4.486796E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +428641,fr,1,3.550000E+00,9.856200E-01,4.889048E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +428643,fr,1,3.550000E+00,9.856200E-01,4.889048E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799819E+01,0.000000E+00 +428650,fr,1,3.550000E+00,9.856200E-01,4.889048E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.999337E+01,0.000000E+00 +428661,fr,1,3.650000E+00,9.856200E-01,4.889048E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.996351E+01,0.000000E+00 +428679,fr,1,3.850000E+00,9.856200E-01,4.889048E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799786E+01,0.000000E+00 +428766,fr,1,4.550000E+00,9.856200E-01,4.889048E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,-9.000000E+01 +429134,fr,1,3.650000E+00,-6.002790E+00,4.927056E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998827E+01,0.000000E+00 +430081,fr,1,3.550000E+00,3.520190E+00,5.092882E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +430105,fr,1,3.750000E+00,3.520190E+00,5.092882E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +430141,fr,1,4.050000E+00,3.520190E+00,5.092882E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998928E+01,0.000000E+00 +430251,fr,1,4.950000E+00,3.520190E+00,5.092882E+01,5.000000E+00,Active Shallow Crust,2.400141E+02,5.800487E+01,0.000000E+00 +430560,fr,2,3.550000E+00,2.742010E+00,4.534300E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +430561,fr,1,3.550000E+00,2.742010E+00,4.534300E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +430562,fr,1,3.550000E+00,2.742010E+00,4.534300E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +430564,fr,1,3.550000E+00,2.742010E+00,4.534300E+01,1.500000E+01,Active Shallow Crust,2.400124E+02,5.799792E+01,0.000000E+00 +430566,fr,1,3.550000E+00,2.742010E+00,4.534300E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998924E+01,-9.000000E+01 +430572,fr,1,3.650000E+00,2.742010E+00,4.534300E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +430584,fr,1,3.750000E+00,2.742010E+00,4.534300E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998874E+01,0.000000E+00 +430591,fr,1,3.750000E+00,2.742010E+00,4.534300E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998861E+01,-9.000000E+01 +430596,fr,1,3.850000E+00,2.742010E+00,4.534300E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +430599,fr,2,3.850000E+00,2.742010E+00,4.534300E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799776E+01,0.000000E+00 +430608,fr,1,3.950000E+00,2.742010E+00,4.534300E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999106E+01,0.000000E+00 +430623,fr,1,4.050000E+00,2.742010E+00,4.534300E+01,5.000000E+00,Active Shallow Crust,2.400060E+02,5.800588E+01,0.000000E+00 +430665,fr,1,4.350000E+00,2.742010E+00,4.534300E+01,5.000000E+00,Active Shallow Crust,1.288981E+02,8.998273E+01,0.000000E+00 +430692,fr,1,4.650000E+00,2.742010E+00,4.534300E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +430729,fr,1,4.950000E+00,2.742010E+00,4.534300E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +430740,fr,1,5.050000E+00,2.742010E+00,4.534300E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +431545,fr,1,3.750000E+00,-5.715200E-01,4.530006E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +431572,fr,1,3.950000E+00,-5.715200E-01,4.530006E+01,1.500000E+01,Active Shallow Crust,2.400197E+02,5.800493E+01,0.000000E+00 +431640,fr,1,4.550000E+00,-5.715200E-01,4.530006E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +431677,fr,1,4.850000E+00,-5.715200E-01,4.530006E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +431688,fr,1,4.950000E+00,-5.715200E-01,4.530006E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +432024,fr,2,3.750000E+00,5.195630E+00,5.003056E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +432480,fr,1,3.550000E+00,8.396100E-01,5.006527E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +432492,fr,1,3.650000E+00,8.396100E-01,5.006527E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +432493,fr,1,3.650000E+00,8.396100E-01,5.006527E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +432505,fr,1,3.750000E+00,8.396100E-01,5.006527E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +432506,fr,1,3.750000E+00,8.396100E-01,5.006527E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +432516,fr,1,3.850000E+00,8.396100E-01,5.006527E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +432528,fr,1,3.950000E+00,8.396100E-01,5.006527E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +432529,fr,1,3.950000E+00,8.396100E-01,5.006527E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +432534,fr,1,3.950000E+00,8.396100E-01,5.006527E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,-9.000000E+01 +432573,fr,1,4.250000E+00,8.396100E-01,5.006527E+01,5.000000E+00,Active Shallow Crust,1.288937E+02,8.998090E+01,0.000000E+00 +432589,fr,1,4.450000E+00,8.396100E-01,5.006527E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +432652,fr,1,4.950000E+00,8.396100E-01,5.006527E+01,1.500000E+01,Active Shallow Crust,2.400137E+02,5.800481E+01,0.000000E+00 +432960,fr,1,3.550000E+00,4.474370E+00,4.402482E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999275E+01,0.000000E+00 +432972,fr,1,3.650000E+00,4.474370E+00,4.402482E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998708E+01,0.000000E+00 +432973,fr,1,3.650000E+00,4.474370E+00,4.402482E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998708E+01,0.000000E+00 +432984,fr,1,3.750000E+00,4.474370E+00,4.402482E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998848E+01,0.000000E+00 +432996,fr,1,3.850000E+00,4.474370E+00,4.402482E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +432998,fr,1,3.850000E+00,4.474370E+00,4.402482E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +433000,fr,1,3.850000E+00,4.474370E+00,4.402482E+01,1.500000E+01,Active Shallow Crust,2.400109E+02,5.799759E+01,0.000000E+00 +433002,fr,1,3.850000E+00,4.474370E+00,4.402482E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,-9.000000E+01 +433008,fr,1,3.950000E+00,4.474370E+00,4.402482E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999085E+01,0.000000E+00 +433044,fr,1,4.250000E+00,4.474370E+00,4.402482E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +433062,fr,1,4.350000E+00,4.474370E+00,4.402482E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999124E+01,-9.000000E+01 +433080,fr,1,4.550000E+00,4.474370E+00,4.402482E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +433092,fr,1,4.650000E+00,4.474370E+00,4.402482E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +433097,fr,1,4.650000E+00,4.474370E+00,4.402482E+01,2.750000E+01,Active Shallow Crust,2.400103E+02,5.799409E+01,0.000000E+00 +433128,fr,1,4.950000E+00,4.474370E+00,4.402482E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +433238,fr,1,5.850000E+00,4.474370E+00,4.402482E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +433458,fr,1,3.650000E+00,4.616990E+00,4.055133E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999310E+01,-9.000000E+01 +433476,fr,1,3.850000E+00,4.616990E+00,4.055133E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998915E+01,0.000000E+00 +433482,fr,1,3.850000E+00,4.616990E+00,4.055133E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998903E+01,-9.000000E+01 +433525,fr,1,4.250000E+00,4.616990E+00,4.055133E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +433585,fr,1,4.750000E+00,4.616990E+00,4.055133E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +434893,fr,1,3.650000E+00,1.782850E+00,4.813959E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +434906,fr,1,3.750000E+00,1.782850E+00,4.813959E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +434928,fr,1,3.950000E+00,1.782850E+00,4.813959E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +435362,fr,1,3.550000E+00,8.556010E+00,4.854922E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998665E+01,0.000000E+00 +435363,fr,1,3.550000E+00,8.556010E+00,4.854922E+01,5.000000E+00,Active Shallow Crust,2.400139E+02,5.799877E+01,0.000000E+00 +435364,fr,1,3.550000E+00,8.556010E+00,4.854922E+01,1.500000E+01,Active Shallow Crust,2.400139E+02,5.799877E+01,0.000000E+00 +435367,fr,1,3.550000E+00,8.556010E+00,4.854922E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998650E+01,-9.000000E+01 +435370,fr,1,3.550000E+00,8.556010E+00,4.854922E+01,1.500000E+01,Active Shallow Crust,1.288968E+02,8.999332E+01,0.000000E+00 +435372,fr,1,3.650000E+00,8.556010E+00,4.854922E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998810E+01,0.000000E+00 +435384,fr,1,3.750000E+00,8.556010E+00,4.854922E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +435385,fr,1,3.750000E+00,8.556010E+00,4.854922E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +435387,fr,1,3.750000E+00,8.556010E+00,4.854922E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801764E+01,0.000000E+00 +435396,fr,1,3.850000E+00,8.556010E+00,4.854922E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +435397,fr,1,3.850000E+00,8.556010E+00,4.854922E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +435418,fr,1,3.950000E+00,8.556010E+00,4.854922E+01,1.500000E+01,Active Shallow Crust,1.289011E+02,8.999158E+01,0.000000E+00 +435424,fr,1,4.050000E+00,8.556010E+00,4.854922E+01,1.500000E+01,Active Shallow Crust,2.400068E+02,5.800586E+01,0.000000E+00 +435436,fr,2,4.150000E+00,8.556010E+00,4.854922E+01,1.500000E+01,Active Shallow Crust,2.400095E+02,5.799796E+01,0.000000E+00 +435445,fr,1,4.250000E+00,8.556010E+00,4.854922E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +435468,fr,1,4.450000E+00,8.556010E+00,4.854922E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +435492,fr,1,4.650000E+00,8.556010E+00,4.854922E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998871E+01,0.000000E+00 +435534,fr,1,4.950000E+00,8.556010E+00,4.854922E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998922E+01,-9.000000E+01 +435876,fr,1,3.850000E+00,1.411910E+00,5.203046E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +435915,fr,1,4.150000E+00,1.411910E+00,5.203046E+01,5.000000E+00,Active Shallow Crust,2.400097E+02,5.799749E+01,0.000000E+00 +435930,fr,1,4.250000E+00,1.411910E+00,5.203046E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,-9.000000E+01 +435957,fr,1,4.450000E+00,1.411910E+00,5.203046E+01,5.000000E+00,Active Shallow Crust,1.288909E+02,8.999368E+01,0.000000E+00 +436320,fr,2,3.550000E+00,-1.773310E+00,4.763770E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +436321,fr,1,3.550000E+00,-1.773310E+00,4.763770E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +436323,fr,1,3.550000E+00,-1.773310E+00,4.763770E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799817E+01,0.000000E+00 +436328,fr,1,3.550000E+00,-1.773310E+00,4.763770E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +436404,fr,1,4.250000E+00,-1.773310E+00,4.763770E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +436434,fr,1,4.450000E+00,-1.773310E+00,4.763770E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,-9.000000E+01 +436455,fr,1,4.650000E+00,-1.773310E+00,4.763770E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799429E+01,0.000000E+00 +436656,fr,1,6.350000E+00,-1.773304E+00,4.763770E+01,7.567806E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +436812,fr,1,3.650000E+00,-4.037360E+00,4.892565E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998819E+01,0.000000E+00 +436816,fr,1,3.650000E+00,-4.037360E+00,4.892565E+01,1.500000E+01,Active Shallow Crust,2.400006E+02,5.801384E+01,0.000000E+00 +436836,fr,1,3.850000E+00,-4.037360E+00,4.892565E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +436875,fr,1,4.150000E+00,-4.037360E+00,4.892565E+01,5.000000E+00,Active Shallow Crust,2.400096E+02,5.799738E+01,0.000000E+00 +436884,fr,1,4.250000E+00,-4.037360E+00,4.892565E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999112E+01,0.000000E+00 +436885,fr,1,4.250000E+00,-4.037360E+00,4.892565E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999112E+01,0.000000E+00 +436910,fr,1,4.450000E+00,-4.037360E+00,4.892565E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +436914,fr,1,4.450000E+00,-4.037360E+00,4.892565E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,-9.000000E+01 +436920,fr,1,4.550000E+00,-4.037360E+00,4.892565E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +437292,fr,1,3.650000E+00,2.011040E+00,4.043911E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +437307,fr,1,3.750000E+00,2.011040E+00,4.043911E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.801731E+01,0.000000E+00 +437760,fr,1,3.550000E+00,-2.635460E+00,4.674639E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +437767,fr,1,3.550000E+00,-2.635460E+00,4.674639E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,-9.000000E+01 +437785,fr,1,3.750000E+00,-2.635460E+00,4.674639E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998902E+01,0.000000E+00 +437820,fr,1,4.050000E+00,-2.635460E+00,4.674639E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +438264,fr,1,3.750000E+00,-3.894230E+00,4.920938E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +438312,fr,1,4.150000E+00,-3.894230E+00,4.920938E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +438336,fr,1,4.350000E+00,-3.894230E+00,4.920938E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +438373,fr,1,4.650000E+00,-3.894230E+00,4.920938E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +438726,fr,1,3.550000E+00,7.791710E+00,4.985182E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998685E+01,-9.000000E+01 +438760,fr,1,3.850000E+00,7.791710E+00,4.985182E+01,1.500000E+01,Active Shallow Crust,2.400117E+02,5.799799E+01,0.000000E+00 +438763,fr,1,3.850000E+00,7.791710E+00,4.985182E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999068E+01,-9.000000E+01 +438771,fr,1,3.950000E+00,7.791710E+00,4.985182E+01,5.000000E+00,Active Shallow Crust,2.400209E+02,5.800497E+01,0.000000E+00 +438774,fr,1,3.950000E+00,7.791710E+00,4.985182E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999170E+01,-9.000000E+01 +438795,fr,1,4.150000E+00,7.791710E+00,4.985182E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.799739E+01,0.000000E+00 +438849,fr,1,4.550000E+00,7.791710E+00,4.985182E+01,5.000000E+00,Active Shallow Crust,1.288929E+02,8.998583E+01,0.000000E+00 +438868,fr,1,4.750000E+00,7.791710E+00,4.985182E+01,1.500000E+01,Active Shallow Crust,2.400086E+02,5.800462E+01,0.000000E+00 +439200,fr,1,3.550000E+00,1.054600E+00,4.650331E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +439203,fr,1,3.550000E+00,1.054600E+00,4.650331E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799837E+01,0.000000E+00 +439212,fr,1,3.650000E+00,1.054600E+00,4.650331E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +439236,fr,1,3.850000E+00,1.054600E+00,4.650331E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +439249,fr,1,3.950000E+00,1.054600E+00,4.650331E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +439260,fr,1,4.050000E+00,1.054600E+00,4.650331E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +439266,fr,1,4.050000E+00,1.054600E+00,4.650331E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,-9.000000E+01 +439284,fr,1,4.250000E+00,1.054600E+00,4.650331E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +439311,fr,1,4.450000E+00,1.054600E+00,4.650331E+01,5.000000E+00,Active Shallow Crust,2.400052E+02,5.799472E+01,0.000000E+00 +439344,fr,1,4.750000E+00,1.054600E+00,4.650331E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +439356,fr,1,4.850000E+00,1.054600E+00,4.650331E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +440161,fr,1,3.550000E+00,-3.871230E+00,4.799057E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +440171,fr,1,3.550000E+00,-3.871230E+00,4.799057E+01,2.750000E+01,Active Shallow Crust,1.288952E+02,8.999494E+01,0.000000E+00 +440172,fr,1,3.650000E+00,-3.871230E+00,4.799057E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +440185,fr,1,3.750000E+00,-3.871230E+00,4.799057E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998928E+01,0.000000E+00 +440208,fr,1,3.950000E+00,-3.871230E+00,4.799057E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +440242,fr,1,4.150000E+00,-3.871230E+00,4.799057E+01,1.500000E+01,Active Shallow Crust,1.288969E+02,8.999408E+01,0.000000E+00 +440646,fr,1,3.550000E+00,3.003960E+00,3.991352E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998827E+01,-9.000000E+01 +440677,fr,1,3.850000E+00,3.003960E+00,3.991352E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998905E+01,0.000000E+00 +440748,fr,1,4.450000E+00,3.003960E+00,3.991352E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +441120,fr,1,3.550000E+00,2.505530E+00,4.491382E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +441132,fr,1,3.650000E+00,2.505530E+00,4.491382E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +441144,fr,1,3.750000E+00,2.505530E+00,4.491382E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +441147,fr,1,3.750000E+00,2.505530E+00,4.491382E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801761E+01,0.000000E+00 +441150,fr,1,3.750000E+00,2.505530E+00,4.491382E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999139E+01,-9.000000E+01 +441168,fr,1,3.950000E+00,2.505530E+00,4.491382E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999099E+01,0.000000E+00 +441180,fr,1,4.050000E+00,2.505530E+00,4.491382E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +441182,fr,1,4.050000E+00,2.505530E+00,4.491382E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +441240,fr,1,4.550000E+00,2.505530E+00,4.491382E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +441600,fr,3,3.550000E+00,-1.974080E+00,4.883264E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +441601,fr,1,3.550000E+00,-1.974080E+00,4.883264E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +441602,fr,1,3.550000E+00,-1.974080E+00,4.883264E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +441604,fr,1,3.550000E+00,-1.974080E+00,4.883264E+01,1.500000E+01,Active Shallow Crust,2.400124E+02,5.799831E+01,0.000000E+00 +441624,fr,1,3.750000E+00,-1.974080E+00,4.883264E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +441636,fr,1,3.850000E+00,-1.974080E+00,4.883264E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +441638,fr,1,3.850000E+00,-1.974080E+00,4.883264E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +441645,fr,1,3.850000E+00,-1.974080E+00,4.883264E+01,5.000000E+00,Active Shallow Crust,1.288951E+02,8.999413E+01,0.000000E+00 +441648,fr,1,3.950000E+00,-1.974080E+00,4.883264E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +441649,fr,1,3.950000E+00,-1.974080E+00,4.883264E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +441660,fr,1,4.050000E+00,-1.974080E+00,4.883264E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +441669,fr,1,4.050000E+00,-1.974080E+00,4.883264E+01,5.000000E+00,Active Shallow Crust,1.288902E+02,8.999347E+01,0.000000E+00 +441672,fr,1,4.150000E+00,-1.974080E+00,4.883264E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +441673,fr,1,4.150000E+00,-1.974080E+00,4.883264E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +441674,fr,1,4.150000E+00,-1.974080E+00,4.883264E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +441684,fr,1,4.250000E+00,-1.974080E+00,4.883264E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +441685,fr,1,4.250000E+00,-1.974080E+00,4.883264E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +441690,fr,1,4.250000E+00,-1.974080E+00,4.883264E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,-9.000000E+01 +441697,fr,1,4.350000E+00,-1.974080E+00,4.883264E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +441709,fr,1,4.450000E+00,-1.974080E+00,4.883264E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +441712,fr,1,4.450000E+00,-1.974080E+00,4.883264E+01,1.500000E+01,Active Shallow Crust,2.400060E+02,5.799479E+01,0.000000E+00 +441713,fr,1,4.450000E+00,-1.974080E+00,4.883264E+01,2.750000E+01,Active Shallow Crust,2.400060E+02,5.799479E+01,0.000000E+00 +441736,fr,1,4.650000E+00,-1.974080E+00,4.883264E+01,1.500000E+01,Active Shallow Crust,2.400117E+02,5.799436E+01,0.000000E+00 +441793,fr,1,5.150000E+00,-1.974080E+00,4.883264E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +441797,fr,1,5.150000E+00,-1.974080E+00,4.883264E+01,2.750000E+01,Active Shallow Crust,2.400211E+02,5.800021E+01,0.000000E+00 +442568,fr,1,3.550000E+00,2.820710E+00,4.097134E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998845E+01,-9.000000E+01 +442572,fr,2,3.650000E+00,2.820710E+00,4.097134E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +442573,fr,1,3.650000E+00,2.820710E+00,4.097134E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +442586,fr,1,3.750000E+00,2.820710E+00,4.097134E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +442633,fr,1,4.150000E+00,2.820710E+00,4.097134E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +442804,fr,1,5.550000E+00,2.820710E+00,4.097134E+01,1.500000E+01,Active Shallow Crust,2.400280E+02,5.800159E+01,0.000000E+00 +443040,fr,1,3.550000E+00,4.266760E+00,4.399550E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999274E+01,0.000000E+00 +443041,fr,1,3.550000E+00,4.266760E+00,4.399550E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999274E+01,0.000000E+00 +443044,fr,1,3.550000E+00,4.266760E+00,4.399550E+01,1.500000E+01,Active Shallow Crust,2.400110E+02,5.799875E+01,0.000000E+00 +443058,fr,1,3.650000E+00,4.266760E+00,4.399550E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998692E+01,-9.000000E+01 +443074,fr,1,3.750000E+00,4.266760E+00,4.399550E+01,1.500000E+01,Active Shallow Crust,1.288972E+02,8.996745E+01,0.000000E+00 +443077,fr,1,3.850000E+00,4.266760E+00,4.399550E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +443088,fr,1,3.950000E+00,4.266760E+00,4.399550E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +443112,fr,1,4.150000E+00,4.266760E+00,4.399550E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +443124,fr,1,4.250000E+00,4.266760E+00,4.399550E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +443169,fr,1,4.550000E+00,4.266760E+00,4.399550E+01,5.000000E+00,Active Shallow Crust,1.288945E+02,8.998602E+01,0.000000E+00 +443172,fr,1,4.650000E+00,4.266760E+00,4.399550E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +443184,fr,1,4.750000E+00,4.266760E+00,4.399550E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999089E+01,0.000000E+00 +443199,fr,1,4.850000E+00,4.266760E+00,4.399550E+01,5.000000E+00,Active Shallow Crust,2.400159E+02,5.800234E+01,0.000000E+00 +443221,fr,1,5.050000E+00,4.266760E+00,4.399550E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +443292,fr,1,5.650000E+00,4.266760E+00,4.399550E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +443472,fr,1,7.150000E+00,4.266787E+00,4.399550E+01,1.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +443553,fr,1,3.750000E+00,4.483400E+00,4.269424E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996742E+01,0.000000E+00 +443568,fr,1,3.950000E+00,4.483400E+00,4.269424E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +444000,fr,1,3.550000E+00,3.982490E+00,4.973597E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +444048,fr,1,3.950000E+00,3.982490E+00,4.973597E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +444049,fr,1,3.950000E+00,3.982490E+00,4.973597E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +444085,fr,1,4.250000E+00,3.982490E+00,4.973597E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +444133,fr,1,4.650000E+00,3.982490E+00,4.973597E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +444159,fr,1,4.850000E+00,3.982490E+00,4.973597E+01,5.000000E+00,Active Shallow Crust,2.400188E+02,5.800238E+01,0.000000E+00 +444576,fr,1,4.350000E+00,5.372260E+00,4.905560E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +444969,fr,1,3.550000E+00,4.086780E+00,4.862472E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999333E+01,0.000000E+00 +445008,fr,1,3.950000E+00,4.086780E+00,4.862472E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999159E+01,0.000000E+00 +445021,fr,1,4.050000E+00,4.086780E+00,4.862472E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +445440,fr,4,3.550000E+00,8.717950E+00,4.995069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998702E+01,0.000000E+00 +445441,fr,2,3.550000E+00,8.717950E+00,4.995069E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998702E+01,0.000000E+00 +445442,fr,1,3.550000E+00,8.717950E+00,4.995069E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998702E+01,0.000000E+00 +445452,fr,3,3.650000E+00,8.717950E+00,4.995069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +445453,fr,1,3.650000E+00,8.717950E+00,4.995069E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +445458,fr,1,3.650000E+00,8.717950E+00,4.995069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998830E+01,-9.000000E+01 +445464,fr,1,3.750000E+00,8.717950E+00,4.995069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +445468,fr,1,3.750000E+00,8.717950E+00,4.995069E+01,1.500000E+01,Active Shallow Crust,2.400095E+02,5.801644E+01,0.000000E+00 +445474,fr,1,3.750000E+00,8.717950E+00,4.995069E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.996755E+01,0.000000E+00 +445476,fr,1,3.850000E+00,8.717950E+00,4.995069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +445501,fr,1,4.050000E+00,8.717950E+00,4.995069E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999270E+01,0.000000E+00 +445502,fr,1,4.050000E+00,8.717950E+00,4.995069E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999270E+01,0.000000E+00 +445512,fr,1,4.150000E+00,8.717950E+00,4.995069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998699E+01,0.000000E+00 +445513,fr,1,4.150000E+00,8.717950E+00,4.995069E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998699E+01,0.000000E+00 +445515,fr,1,4.150000E+00,8.717950E+00,4.995069E+01,5.000000E+00,Active Shallow Crust,2.400096E+02,5.799747E+01,0.000000E+00 +445530,fr,1,4.250000E+00,8.717950E+00,4.995069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998827E+01,-9.000000E+01 +445531,fr,1,4.250000E+00,8.717950E+00,4.995069E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998827E+01,-9.000000E+01 +445548,fr,1,4.450000E+00,8.717950E+00,4.995069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999079E+01,0.000000E+00 +445560,fr,2,4.550000E+00,8.717950E+00,4.995069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999179E+01,0.000000E+00 +445569,fr,1,4.550000E+00,8.717950E+00,4.995069E+01,5.000000E+00,Active Shallow Crust,1.288929E+02,8.998584E+01,0.000000E+00 +445933,fr,1,3.650000E+00,8.310760E+00,4.607525E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998753E+01,0.000000E+00 +445935,fr,1,3.650000E+00,8.310760E+00,4.607525E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801277E+01,0.000000E+00 +445944,fr,2,3.750000E+00,8.310760E+00,4.607525E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +445945,fr,1,3.750000E+00,8.310760E+00,4.607525E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +445956,fr,2,3.850000E+00,8.310760E+00,4.607525E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +445968,fr,1,3.950000E+00,8.310760E+00,4.607525E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +445980,fr,2,4.050000E+00,8.310760E+00,4.607525E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999213E+01,0.000000E+00 +446004,fr,1,4.250000E+00,8.310760E+00,4.607525E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998750E+01,0.000000E+00 +446014,fr,1,4.250000E+00,8.310760E+00,4.607525E+01,1.500000E+01,Active Shallow Crust,1.288941E+02,8.998093E+01,0.000000E+00 +446088,fr,1,4.950000E+00,8.310760E+00,4.607525E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998883E+01,0.000000E+00 +446094,fr,1,4.950000E+00,8.310760E+00,4.607525E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998870E+01,-9.000000E+01 +446400,fr,11,3.550000E+00,-3.082600E-01,4.314052E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +446401,fr,1,3.550000E+00,-3.082600E-01,4.314052E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +446402,fr,1,3.550000E+00,-3.082600E-01,4.314052E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +446404,fr,1,3.550000E+00,-3.082600E-01,4.314052E+01,1.500000E+01,Active Shallow Crust,2.400119E+02,5.799809E+01,0.000000E+00 +446406,fr,1,3.550000E+00,-3.082600E-01,4.314052E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,-9.000000E+01 +446409,fr,1,3.550000E+00,-3.082600E-01,4.314052E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999379E+01,0.000000E+00 +446411,fr,1,3.550000E+00,-3.082600E-01,4.314052E+01,2.750000E+01,Active Shallow Crust,1.288964E+02,8.999379E+01,0.000000E+00 +446412,fr,7,3.650000E+00,-3.082600E-01,4.314052E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +446413,fr,1,3.650000E+00,-3.082600E-01,4.314052E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +446414,fr,1,3.650000E+00,-3.082600E-01,4.314052E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +446415,fr,2,3.650000E+00,-3.082600E-01,4.314052E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801278E+01,0.000000E+00 +446416,fr,2,3.650000E+00,-3.082600E-01,4.314052E+01,1.500000E+01,Active Shallow Crust,2.400008E+02,5.801278E+01,0.000000E+00 +446417,fr,1,3.650000E+00,-3.082600E-01,4.314052E+01,2.750000E+01,Active Shallow Crust,2.400008E+02,5.801269E+01,0.000000E+00 +446418,fr,2,3.650000E+00,-3.082600E-01,4.314052E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,-9.000000E+01 +446421,fr,1,3.650000E+00,-3.082600E-01,4.314052E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.996349E+01,0.000000E+00 +446424,fr,4,3.750000E+00,-3.082600E-01,4.314052E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +446425,fr,1,3.750000E+00,-3.082600E-01,4.314052E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +446427,fr,1,3.750000E+00,-3.082600E-01,4.314052E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801749E+01,0.000000E+00 +446430,fr,1,3.750000E+00,-3.082600E-01,4.314052E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +446431,fr,1,3.750000E+00,-3.082600E-01,4.314052E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +446433,fr,1,3.750000E+00,-3.082600E-01,4.314052E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.996737E+01,0.000000E+00 +446434,fr,1,3.750000E+00,-3.082600E-01,4.314052E+01,1.500000E+01,Active Shallow Crust,1.288968E+02,8.996737E+01,0.000000E+00 +446436,fr,5,3.850000E+00,-3.082600E-01,4.314052E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +446437,fr,2,3.850000E+00,-3.082600E-01,4.314052E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +446439,fr,1,3.850000E+00,-3.082600E-01,4.314052E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799772E+01,0.000000E+00 +446440,fr,1,3.850000E+00,-3.082600E-01,4.314052E+01,1.500000E+01,Active Shallow Crust,2.400105E+02,5.799772E+01,0.000000E+00 +446442,fr,2,3.850000E+00,-3.082600E-01,4.314052E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,-9.000000E+01 +446445,fr,1,3.850000E+00,-3.082600E-01,4.314052E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999381E+01,0.000000E+00 +446448,fr,8,3.950000E+00,-3.082600E-01,4.314052E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +446450,fr,1,3.950000E+00,-3.082600E-01,4.314052E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +446458,fr,1,3.950000E+00,-3.082600E-01,4.314052E+01,1.500000E+01,Active Shallow Crust,1.289007E+02,8.999376E+01,0.000000E+00 +446460,fr,4,4.050000E+00,-3.082600E-01,4.314052E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +446462,fr,1,4.050000E+00,-3.082600E-01,4.314052E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +446463,fr,1,4.050000E+00,-3.082600E-01,4.314052E+01,5.000000E+00,Active Shallow Crust,2.400055E+02,5.800573E+01,0.000000E+00 +446464,fr,1,4.050000E+00,-3.082600E-01,4.314052E+01,1.500000E+01,Active Shallow Crust,2.400055E+02,5.800570E+01,0.000000E+00 +446465,fr,1,4.050000E+00,-3.082600E-01,4.314052E+01,2.750000E+01,Active Shallow Crust,2.400055E+02,5.800570E+01,0.000000E+00 +446472,fr,3,4.150000E+00,-3.082600E-01,4.314052E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +446473,fr,1,4.150000E+00,-3.082600E-01,4.314052E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +446474,fr,1,4.150000E+00,-3.082600E-01,4.314052E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +446484,fr,2,4.250000E+00,-3.082600E-01,4.314052E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +446487,fr,1,4.250000E+00,-3.082600E-01,4.314052E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.799393E+01,0.000000E+00 +446496,fr,1,4.350000E+00,-3.082600E-01,4.314052E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +446497,fr,1,4.350000E+00,-3.082600E-01,4.314052E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +446498,fr,2,4.350000E+00,-3.082600E-01,4.314052E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +446503,fr,1,4.350000E+00,-3.082600E-01,4.314052E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +446508,fr,1,4.450000E+00,-3.082600E-01,4.314052E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +446509,fr,1,4.450000E+00,-3.082600E-01,4.314052E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +446520,fr,2,4.550000E+00,-3.082600E-01,4.314052E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +446521,fr,1,4.550000E+00,-3.082600E-01,4.314052E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +446523,fr,1,4.550000E+00,-3.082600E-01,4.314052E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.799720E+01,0.000000E+00 +446533,fr,1,4.650000E+00,-3.082600E-01,4.314052E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +446542,fr,1,4.650000E+00,-3.082600E-01,4.314052E+01,1.500000E+01,Active Shallow Crust,1.288920E+02,8.998701E+01,0.000000E+00 +446545,fr,1,4.750000E+00,-3.082600E-01,4.314052E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +446556,fr,1,4.850000E+00,-3.082600E-01,4.314052E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +446569,fr,1,4.950000E+00,-3.082600E-01,4.314052E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +446580,fr,1,5.050000E+00,-3.082600E-01,4.314052E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +446589,fr,1,5.050000E+00,-3.082600E-01,4.314052E+01,5.000000E+00,Active Shallow Crust,1.288869E+02,8.999046E+01,0.000000E+00 +446727,fr,1,6.250000E+00,-3.110324E-01,4.314402E+01,5.719927E+00,Active Shallow Crust,2.400639E+02,5.800125E+01,0.000000E+00 +446890,fr,1,3.550000E+00,2.234040E+00,4.855524E+01,1.500000E+01,Active Shallow Crust,1.288959E+02,8.999500E+01,0.000000E+00 +446907,fr,1,3.750000E+00,2.234040E+00,4.855524E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801785E+01,0.000000E+00 +446922,fr,1,3.850000E+00,2.234040E+00,4.855524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,-9.000000E+01 +447068,fr,1,5.050000E+00,2.234040E+00,4.855524E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,-9.000000E+01 +447360,fr,1,3.550000E+00,-6.443000E-02,4.776598E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +447372,fr,1,3.650000E+00,-6.443000E-02,4.776598E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +447373,fr,1,3.650000E+00,-6.443000E-02,4.776598E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +447432,fr,1,4.150000E+00,-6.443000E-02,4.776598E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +447468,fr,2,4.450000E+00,-6.443000E-02,4.776598E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +447470,fr,1,4.450000E+00,-6.443000E-02,4.776598E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +447840,fr,4,3.550000E+00,7.517310E+00,4.856312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999332E+01,0.000000E+00 +447841,fr,1,3.550000E+00,7.517310E+00,4.856312E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999332E+01,0.000000E+00 +447852,fr,1,3.650000E+00,7.517310E+00,4.856312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998811E+01,0.000000E+00 +447853,fr,1,3.650000E+00,7.517310E+00,4.856312E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998811E+01,0.000000E+00 +447859,fr,1,3.650000E+00,7.517310E+00,4.856312E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998797E+01,-9.000000E+01 +447864,fr,1,3.750000E+00,7.517310E+00,4.856312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +447888,fr,1,3.950000E+00,7.517310E+00,4.856312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999158E+01,0.000000E+00 +447898,fr,1,3.950000E+00,7.517310E+00,4.856312E+01,1.500000E+01,Active Shallow Crust,1.289008E+02,8.999368E+01,0.000000E+00 +447901,fr,1,4.050000E+00,7.517310E+00,4.856312E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998874E+01,0.000000E+00 +447904,fr,1,4.050000E+00,7.517310E+00,4.856312E+01,1.500000E+01,Active Shallow Crust,2.400056E+02,5.800604E+01,0.000000E+00 +447924,fr,1,4.250000E+00,7.517310E+00,4.856312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999106E+01,0.000000E+00 +447935,fr,1,4.250000E+00,7.517310E+00,4.856312E+01,2.750000E+01,Active Shallow Crust,1.288942E+02,8.998103E+01,0.000000E+00 +447938,fr,1,4.350000E+00,7.517310E+00,4.856312E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +447954,fr,2,4.450000E+00,7.517310E+00,4.856312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,-9.000000E+01 +448164,fr,1,6.250000E+00,7.517314E+00,4.856312E+01,6.744814E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +448332,fr,1,3.650000E+00,3.178860E+00,5.040765E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999141E+01,0.000000E+00 +448335,fr,2,3.650000E+00,3.178860E+00,5.040765E+01,5.000000E+00,Active Shallow Crust,2.400016E+02,5.801269E+01,0.000000E+00 +448347,fr,1,3.750000E+00,3.178860E+00,5.040765E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.801767E+01,0.000000E+00 +448353,fr,1,3.750000E+00,3.178860E+00,5.040765E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.996733E+01,0.000000E+00 +448380,fr,1,4.050000E+00,3.178860E+00,5.040765E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +448406,fr,1,4.250000E+00,3.178860E+00,5.040765E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +448416,fr,1,4.350000E+00,3.178860E+00,5.040765E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +448417,fr,1,4.350000E+00,3.178860E+00,5.040765E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +448467,fr,1,4.750000E+00,3.178860E+00,5.040765E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.800486E+01,0.000000E+00 +448814,fr,1,3.650000E+00,-1.134580E+00,5.035328E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +448836,fr,1,3.850000E+00,-1.134580E+00,5.035328E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +448908,fr,1,4.450000E+00,-1.134580E+00,5.035328E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +449282,fr,1,3.550000E+00,4.922820E+00,5.085676E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998727E+01,0.000000E+00 +449285,fr,1,3.550000E+00,4.922820E+00,5.085676E+01,2.750000E+01,Active Shallow Crust,2.400119E+02,5.799908E+01,0.000000E+00 +449289,fr,2,3.550000E+00,4.922820E+00,5.085676E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999364E+01,0.000000E+00 +449293,fr,1,3.650000E+00,4.922820E+00,5.085676E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +449317,fr,1,3.850000E+00,4.922820E+00,5.085676E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999099E+01,0.000000E+00 +449322,fr,1,3.850000E+00,4.922820E+00,5.085676E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,-9.000000E+01 +449329,fr,1,3.950000E+00,4.922820E+00,5.085676E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999197E+01,0.000000E+00 +449335,fr,1,3.950000E+00,4.922820E+00,5.085676E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999187E+01,-9.000000E+01 +449346,fr,1,4.050000E+00,4.922820E+00,5.085676E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,-9.000000E+01 +449352,fr,1,4.150000E+00,4.922820E+00,5.085676E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +449467,fr,1,5.050000E+00,4.922820E+00,5.085676E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +449785,fr,1,3.750000E+00,5.220880E+00,4.198729E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998809E+01,0.000000E+00 +449850,fr,1,4.250000E+00,5.220880E+00,4.198729E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,-9.000000E+01 +450243,fr,1,3.550000E+00,2.922450E+00,4.326563E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799794E+01,0.000000E+00 +450245,fr,1,3.550000E+00,2.922450E+00,4.326563E+01,2.750000E+01,Active Shallow Crust,2.400121E+02,5.799785E+01,0.000000E+00 +450252,fr,1,3.650000E+00,2.922450E+00,4.326563E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +450254,fr,1,3.650000E+00,2.922450E+00,4.326563E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +450264,fr,3,3.750000E+00,2.922450E+00,4.326563E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999125E+01,0.000000E+00 +450267,fr,1,3.750000E+00,2.922450E+00,4.326563E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801746E+01,0.000000E+00 +450276,fr,1,3.850000E+00,2.922450E+00,4.326563E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +450300,fr,1,4.050000E+00,2.922450E+00,4.326563E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +450315,fr,1,4.150000E+00,2.922450E+00,4.326563E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799707E+01,0.000000E+00 +450324,fr,1,4.250000E+00,2.922450E+00,4.326563E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +450348,fr,1,4.450000E+00,2.922450E+00,4.326563E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +450720,fr,4,3.550000E+00,7.504490E+00,4.546322E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999293E+01,0.000000E+00 +450721,fr,1,3.550000E+00,7.504490E+00,4.546322E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999293E+01,0.000000E+00 +450735,fr,1,3.650000E+00,7.504490E+00,4.546322E+01,5.000000E+00,Active Shallow Crust,2.400005E+02,5.801257E+01,0.000000E+00 +450741,fr,1,3.650000E+00,7.504490E+00,4.546322E+01,5.000000E+00,Active Shallow Crust,1.288998E+02,8.996350E+01,0.000000E+00 +450750,fr,1,3.750000E+00,7.504490E+00,4.546322E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998863E+01,-9.000000E+01 +450754,fr,1,3.750000E+00,7.504490E+00,4.546322E+01,1.500000E+01,Active Shallow Crust,1.288968E+02,8.996748E+01,0.000000E+00 +450768,fr,1,3.950000E+00,7.504490E+00,4.546322E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +450780,fr,1,4.050000E+00,7.504490E+00,4.546322E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998807E+01,0.000000E+00 +450811,fr,1,4.250000E+00,7.504490E+00,4.546322E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,-9.000000E+01 +450816,fr,1,4.350000E+00,7.504490E+00,4.546322E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998874E+01,0.000000E+00 +450817,fr,1,4.350000E+00,7.504490E+00,4.546322E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998874E+01,0.000000E+00 +450888,fr,1,4.950000E+00,7.504490E+00,4.546322E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +451200,fr,3,3.550000E+00,2.815090E+00,4.271651E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +451201,fr,1,3.550000E+00,2.815090E+00,4.271651E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +451202,fr,1,3.550000E+00,2.815090E+00,4.271651E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +451209,fr,1,3.550000E+00,2.815090E+00,4.271651E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999259E+01,0.000000E+00 +451210,fr,1,3.550000E+00,2.815090E+00,4.271651E+01,1.500000E+01,Active Shallow Crust,1.288967E+02,8.999259E+01,0.000000E+00 +451212,fr,6,3.650000E+00,2.815090E+00,4.271651E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +451213,fr,1,3.650000E+00,2.815090E+00,4.271651E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +451224,fr,3,3.750000E+00,2.815090E+00,4.271651E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +451227,fr,3,3.750000E+00,2.815090E+00,4.271651E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801770E+01,0.000000E+00 +451228,fr,1,3.750000E+00,2.815090E+00,4.271651E+01,1.500000E+01,Active Shallow Crust,2.400080E+02,5.801770E+01,0.000000E+00 +451230,fr,1,3.750000E+00,2.815090E+00,4.271651E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,-9.000000E+01 +451236,fr,1,3.850000E+00,2.815090E+00,4.271651E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +451239,fr,2,3.850000E+00,2.815090E+00,4.271651E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799732E+01,0.000000E+00 +451242,fr,1,3.850000E+00,2.815090E+00,4.271651E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998939E+01,-9.000000E+01 +451248,fr,1,3.950000E+00,2.815090E+00,4.271651E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +451254,fr,1,3.950000E+00,2.815090E+00,4.271651E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,-9.000000E+01 +451273,fr,1,4.150000E+00,2.815090E+00,4.271651E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +451275,fr,1,4.150000E+00,2.815090E+00,4.271651E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799716E+01,0.000000E+00 +451284,fr,1,4.250000E+00,2.815090E+00,4.271651E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +451290,fr,1,4.250000E+00,2.815090E+00,4.271651E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +451296,fr,1,4.350000E+00,2.815090E+00,4.271651E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +451323,fr,1,4.550000E+00,2.815090E+00,4.271651E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799725E+01,0.000000E+00 +451332,fr,1,4.650000E+00,2.815090E+00,4.271651E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +451356,fr,1,4.850000E+00,2.815090E+00,4.271651E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +451680,fr,4,3.550000E+00,1.790720E+00,4.215244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +451681,fr,1,3.550000E+00,1.790720E+00,4.215244E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +451694,fr,1,3.650000E+00,1.790720E+00,4.215244E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +451704,fr,1,3.750000E+00,1.790720E+00,4.215244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +451720,fr,1,3.850000E+00,1.790720E+00,4.215244E+01,1.500000E+01,Active Shallow Crust,2.400102E+02,5.799774E+01,0.000000E+00 +451740,fr,1,4.050000E+00,1.790720E+00,4.215244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +451741,fr,1,4.050000E+00,1.790720E+00,4.215244E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +451753,fr,1,4.150000E+00,1.790720E+00,4.215244E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +452163,fr,1,3.550000E+00,3.703190E+00,4.298382E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799794E+01,0.000000E+00 +452170,fr,1,3.550000E+00,3.703190E+00,4.298382E+01,1.500000E+01,Active Shallow Crust,1.288971E+02,8.999262E+01,0.000000E+00 +452174,fr,1,3.650000E+00,3.703190E+00,4.298382E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +452640,fr,2,3.550000E+00,1.816060E+00,4.148655E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +452653,fr,1,3.650000E+00,1.816060E+00,4.148655E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +452676,fr,1,3.850000E+00,1.816060E+00,4.148655E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +452691,fr,1,3.950000E+00,1.816060E+00,4.148655E+01,5.000000E+00,Active Shallow Crust,2.400192E+02,5.800475E+01,0.000000E+00 +452700,fr,3,4.050000E+00,1.816060E+00,4.148655E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +452715,fr,1,4.150000E+00,1.816060E+00,4.148655E+01,5.000000E+00,Active Shallow Crust,2.400075E+02,5.799708E+01,0.000000E+00 +452718,fr,1,4.150000E+00,1.816060E+00,4.148655E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,-9.000000E+01 +452731,fr,1,4.250000E+00,1.816060E+00,4.148655E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,-9.000000E+01 +452737,fr,1,4.350000E+00,1.816060E+00,4.148655E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +452746,fr,1,4.350000E+00,1.816060E+00,4.148655E+01,1.500000E+01,Active Shallow Crust,1.288986E+02,8.998286E+01,0.000000E+00 +452762,fr,1,4.550000E+00,1.816060E+00,4.148655E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +452775,fr,1,4.650000E+00,1.816060E+00,4.148655E+01,5.000000E+00,Active Shallow Crust,2.400093E+02,5.799399E+01,0.000000E+00 +453120,fr,1,3.550000E+00,-5.342360E+00,4.974731E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998697E+01,0.000000E+00 +453204,fr,1,4.250000E+00,-5.342360E+00,4.974731E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +453613,fr,1,3.650000E+00,2.115080E+00,4.972707E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +453615,fr,1,3.650000E+00,2.115080E+00,4.972707E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801307E+01,0.000000E+00 +453624,fr,1,3.750000E+00,2.115080E+00,4.972707E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +453631,fr,1,3.750000E+00,2.115080E+00,4.972707E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,-9.000000E+01 +453681,fr,1,4.150000E+00,2.115080E+00,4.972707E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.999429E+01,0.000000E+00 +453684,fr,1,4.250000E+00,2.115080E+00,4.972707E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +453696,fr,1,4.350000E+00,2.115080E+00,4.972707E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +453702,fr,1,4.350000E+00,2.115080E+00,4.972707E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,-9.000000E+01 +454080,fr,1,3.550000E+00,3.807740E+00,4.419359E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +454092,fr,1,3.650000E+00,3.807740E+00,4.419359E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +454116,fr,1,3.850000E+00,3.807740E+00,4.419359E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +454129,fr,1,3.950000E+00,3.807740E+00,4.419359E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +454152,fr,1,4.150000E+00,3.807740E+00,4.419359E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998913E+01,0.000000E+00 +454200,fr,2,4.550000E+00,3.807740E+00,4.419359E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +454284,fr,1,5.250000E+00,3.807740E+00,4.419359E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +454590,fr,1,3.750000E+00,-2.107170E+00,5.015697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,-9.000000E+01 +454617,fr,1,3.950000E+00,-2.107170E+00,5.015697E+01,5.000000E+00,Active Shallow Crust,1.288997E+02,8.999389E+01,0.000000E+00 +455082,fr,1,3.850000E+00,2.373810E+00,4.008949E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,-9.000000E+01 +455528,fr,1,3.550000E+00,-5.378300E-01,4.840164E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +455532,fr,1,3.650000E+00,-5.378300E-01,4.840164E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +455557,fr,1,3.850000E+00,-5.378300E-01,4.840164E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +455568,fr,2,3.950000E+00,-5.378300E-01,4.840164E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +455601,fr,1,4.150000E+00,-5.378300E-01,4.840164E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.999371E+01,0.000000E+00 +455630,fr,1,4.450000E+00,-5.378300E-01,4.840164E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +455631,fr,1,4.450000E+00,-5.378300E-01,4.840164E+01,5.000000E+00,Active Shallow Crust,2.400057E+02,5.799479E+01,0.000000E+00 +456000,fr,4,3.550000E+00,3.748390E+00,5.032045E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +456001,fr,1,3.550000E+00,3.748390E+00,5.032045E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +456009,fr,1,3.550000E+00,3.748390E+00,5.032045E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999356E+01,0.000000E+00 +456012,fr,3,3.650000E+00,3.748390E+00,5.032045E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999139E+01,0.000000E+00 +456013,fr,1,3.650000E+00,3.748390E+00,5.032045E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999139E+01,0.000000E+00 +456015,fr,1,3.650000E+00,3.748390E+00,5.032045E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801302E+01,0.000000E+00 +456022,fr,1,3.650000E+00,3.748390E+00,5.032045E+01,1.500000E+01,Active Shallow Crust,1.289008E+02,8.996334E+01,0.000000E+00 +456024,fr,1,3.750000E+00,3.748390E+00,5.032045E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +456025,fr,1,3.750000E+00,3.748390E+00,5.032045E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +456030,fr,3,3.750000E+00,3.748390E+00,5.032045E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +456036,fr,3,3.850000E+00,3.748390E+00,5.032045E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +456039,fr,1,3.850000E+00,3.748390E+00,5.032045E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799781E+01,0.000000E+00 +456060,fr,1,4.050000E+00,3.748390E+00,5.032045E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +456072,fr,1,4.150000E+00,3.748390E+00,5.032045E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +456073,fr,1,4.150000E+00,3.748390E+00,5.032045E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +456085,fr,2,4.250000E+00,3.748390E+00,5.032045E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +456096,fr,1,4.350000E+00,3.748390E+00,5.032045E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +456109,fr,1,4.450000E+00,3.748390E+00,5.032045E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +456120,fr,1,4.550000E+00,3.748390E+00,5.032045E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +456132,fr,1,4.650000E+00,3.748390E+00,5.032045E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +456144,fr,1,4.750000E+00,3.748390E+00,5.032045E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +456252,fr,1,5.650000E+00,3.748390E+00,5.032045E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +456493,fr,1,3.650000E+00,6.416600E+00,4.969061E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998837E+01,0.000000E+00 +456516,fr,1,3.850000E+00,6.416600E+00,4.969061E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +456552,fr,1,4.150000E+00,6.416600E+00,4.969061E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +457440,fr,2,3.550000E+00,2.613460E+00,4.545286E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +457441,fr,1,3.550000E+00,2.613460E+00,4.545286E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +457452,fr,4,3.650000E+00,2.613460E+00,4.545286E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +457464,fr,1,3.750000E+00,2.613460E+00,4.545286E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998876E+01,0.000000E+00 +457502,fr,1,4.050000E+00,2.613460E+00,4.545286E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +457524,fr,2,4.250000E+00,2.613460E+00,4.545286E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +457563,fr,1,4.550000E+00,2.613460E+00,4.545286E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.799739E+01,0.000000E+00 +457920,fr,2,3.550000E+00,5.649660E+00,4.471199E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999284E+01,0.000000E+00 +457932,fr,3,3.650000E+00,5.649660E+00,4.471199E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998723E+01,0.000000E+00 +457956,fr,1,3.850000E+00,5.649660E+00,4.471199E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +457967,fr,1,3.850000E+00,5.649660E+00,4.471199E+01,2.750000E+01,Active Shallow Crust,1.288948E+02,8.999493E+01,0.000000E+00 +457980,fr,1,4.050000E+00,5.649660E+00,4.471199E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999194E+01,0.000000E+00 +457992,fr,2,4.150000E+00,5.649660E+00,4.471199E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +457993,fr,1,4.150000E+00,5.649660E+00,4.471199E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +458011,fr,1,4.250000E+00,5.649660E+00,4.471199E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999029E+01,-9.000000E+01 +458040,fr,1,4.550000E+00,5.649660E+00,4.471199E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +458402,fr,1,3.550000E+00,1.966360E+00,4.495692E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +458412,fr,1,3.650000E+00,1.966360E+00,4.495692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +458444,fr,1,3.850000E+00,1.966360E+00,4.495692E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,-9.000000E+01 +458473,fr,1,4.150000E+00,1.966360E+00,4.495692E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +458496,fr,1,4.350000E+00,1.966360E+00,4.495692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +458544,fr,1,4.750000E+00,1.966360E+00,4.495692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +458545,fr,1,4.750000E+00,1.966360E+00,4.495692E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +458884,fr,1,3.550000E+00,-2.973230E+00,4.228575E+01,1.500000E+01,Active Shallow Crust,2.400124E+02,5.799807E+01,0.000000E+00 +458885,fr,1,3.550000E+00,-2.973230E+00,4.228575E+01,2.750000E+01,Active Shallow Crust,2.400124E+02,5.799797E+01,0.000000E+00 +458892,fr,1,3.650000E+00,-2.973230E+00,4.228575E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +458916,fr,1,3.850000E+00,-2.973230E+00,4.228575E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +458925,fr,1,3.850000E+00,-2.973230E+00,4.228575E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999340E+01,0.000000E+00 +458940,fr,1,4.050000E+00,-2.973230E+00,4.228575E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +458943,fr,1,4.050000E+00,-2.973230E+00,4.228575E+01,5.000000E+00,Active Shallow Crust,2.400052E+02,5.800556E+01,0.000000E+00 +458976,fr,2,4.350000E+00,-2.973230E+00,4.228575E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +458988,fr,1,4.450000E+00,-2.973230E+00,4.228575E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998941E+01,0.000000E+00 +459361,fr,1,3.550000E+00,-2.706400E+00,4.823413E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +459372,fr,2,3.650000E+00,-2.706400E+00,4.823413E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999102E+01,0.000000E+00 +459379,fr,1,3.650000E+00,-2.706400E+00,4.823413E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999091E+01,-9.000000E+01 +459389,fr,1,3.750000E+00,-2.706400E+00,4.823413E+01,2.750000E+01,Active Shallow Crust,2.400080E+02,5.801781E+01,0.000000E+00 +459393,fr,1,3.750000E+00,-2.706400E+00,4.823413E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.996728E+01,0.000000E+00 +459396,fr,1,3.850000E+00,-2.706400E+00,4.823413E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +459399,fr,1,3.850000E+00,-2.706400E+00,4.823413E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799784E+01,0.000000E+00 +459401,fr,1,3.850000E+00,-2.706400E+00,4.823413E+01,2.750000E+01,Active Shallow Crust,2.400116E+02,5.799784E+01,0.000000E+00 +459405,fr,1,3.850000E+00,-2.706400E+00,4.823413E+01,5.000000E+00,Active Shallow Crust,1.288955E+02,8.999406E+01,0.000000E+00 +459408,fr,1,3.950000E+00,-2.706400E+00,4.823413E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +459426,fr,1,4.050000E+00,-2.706400E+00,4.823413E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999045E+01,-9.000000E+01 +459444,fr,1,4.250000E+00,-2.706400E+00,4.823413E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +459456,fr,1,4.350000E+00,-2.706400E+00,4.823413E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +459468,fr,1,4.450000E+00,-2.706400E+00,4.823413E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +459483,fr,1,4.550000E+00,-2.706400E+00,4.823413E+01,5.000000E+00,Active Shallow Crust,2.400098E+02,5.799741E+01,0.000000E+00 +459558,fr,1,5.150000E+00,-2.706400E+00,4.823413E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,-9.000000E+01 +459840,fr,2,3.550000E+00,2.652010E+00,4.135030E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998865E+01,0.000000E+00 +459844,fr,1,3.550000E+00,2.652010E+00,4.135030E+01,1.500000E+01,Active Shallow Crust,2.400121E+02,5.799803E+01,0.000000E+00 +459848,fr,1,3.550000E+00,2.652010E+00,4.135030E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998851E+01,-9.000000E+01 +459850,fr,1,3.550000E+00,2.652010E+00,4.135030E+01,1.500000E+01,Active Shallow Crust,1.288967E+02,8.999243E+01,0.000000E+00 +459852,fr,2,3.650000E+00,2.652010E+00,4.135030E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +459864,fr,3,3.750000E+00,2.652010E+00,4.135030E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999098E+01,0.000000E+00 +459865,fr,1,3.750000E+00,2.652010E+00,4.135030E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999098E+01,0.000000E+00 +459870,fr,1,3.750000E+00,2.652010E+00,4.135030E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,-9.000000E+01 +459871,fr,1,3.750000E+00,2.652010E+00,4.135030E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,-9.000000E+01 +459873,fr,1,3.750000E+00,2.652010E+00,4.135030E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.996740E+01,0.000000E+00 +459877,fr,2,3.850000E+00,2.652010E+00,4.135030E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998928E+01,0.000000E+00 +459885,fr,1,3.850000E+00,2.652010E+00,4.135030E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999330E+01,0.000000E+00 +459888,fr,1,3.950000E+00,2.652010E+00,4.135030E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +459890,fr,1,3.950000E+00,2.652010E+00,4.135030E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +459892,fr,1,3.950000E+00,2.652010E+00,4.135030E+01,1.500000E+01,Active Shallow Crust,2.400194E+02,5.800465E+01,0.000000E+00 +459894,fr,1,3.950000E+00,2.652010E+00,4.135030E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,-9.000000E+01 +459902,fr,1,4.050000E+00,2.652010E+00,4.135030E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +459907,fr,1,4.050000E+00,2.652010E+00,4.135030E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998923E+01,-9.000000E+01 +459913,fr,1,4.150000E+00,2.652010E+00,4.135030E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +459914,fr,1,4.150000E+00,2.652010E+00,4.135030E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +459925,fr,1,4.250000E+00,2.652010E+00,4.135030E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +459928,fr,1,4.250000E+00,2.652010E+00,4.135030E+01,1.500000E+01,Active Shallow Crust,2.400067E+02,5.799388E+01,0.000000E+00 +459950,fr,1,4.450000E+00,2.652010E+00,4.135030E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +459991,fr,1,4.750000E+00,2.652010E+00,4.135030E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999038E+01,-9.000000E+01 +459994,fr,1,4.750000E+00,2.652010E+00,4.135030E+01,1.500000E+01,Active Shallow Crust,1.288900E+02,8.998814E+01,0.000000E+00 +460008,fr,1,4.950000E+00,2.652010E+00,4.135030E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +460336,fr,1,3.650000E+00,4.094920E+00,4.799334E+01,1.500000E+01,Active Shallow Crust,2.400018E+02,5.801311E+01,0.000000E+00 +460368,fr,1,3.950000E+00,4.094920E+00,4.799334E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999149E+01,0.000000E+00 +460381,fr,1,4.050000E+00,4.094920E+00,4.799334E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +460806,fr,1,3.550000E+00,-1.720830E+00,4.174412E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,-9.000000E+01 +461401,fr,1,4.550000E+00,3.282830E+00,5.283227E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +461786,fr,1,3.750000E+00,1.946470E+00,4.562498E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +461798,fr,1,3.850000E+00,1.946470E+00,4.562498E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +461799,fr,1,3.850000E+00,1.946470E+00,4.562498E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799788E+01,0.000000E+00 +461808,fr,1,3.950000E+00,1.946470E+00,4.562498E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +461904,fr,1,4.750000E+00,1.946470E+00,4.562498E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +462720,fr,2,3.550000E+00,6.063780E+00,5.039163E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998714E+01,0.000000E+00 +462721,fr,1,3.550000E+00,6.063780E+00,5.039163E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998714E+01,0.000000E+00 +462723,fr,1,3.550000E+00,6.063780E+00,5.039163E+01,5.000000E+00,Active Shallow Crust,2.400126E+02,5.799789E+01,0.000000E+00 +462726,fr,1,3.550000E+00,6.063780E+00,5.039163E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998699E+01,-9.000000E+01 +462733,fr,1,3.650000E+00,6.063780E+00,5.039163E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998854E+01,0.000000E+00 +462735,fr,2,3.650000E+00,6.063780E+00,5.039163E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801294E+01,0.000000E+00 +462742,fr,1,3.650000E+00,6.063780E+00,5.039163E+01,1.500000E+01,Active Shallow Crust,1.289004E+02,8.996360E+01,0.000000E+00 +462744,fr,2,3.750000E+00,6.063780E+00,5.039163E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +462756,fr,1,3.850000E+00,6.063780E+00,5.039163E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999090E+01,0.000000E+00 +462757,fr,1,3.850000E+00,6.063780E+00,5.039163E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999090E+01,0.000000E+00 +462770,fr,1,3.950000E+00,6.063780E+00,5.039163E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999189E+01,0.000000E+00 +462771,fr,1,3.950000E+00,6.063780E+00,5.039163E+01,5.000000E+00,Active Shallow Crust,2.400207E+02,5.800491E+01,0.000000E+00 +462780,fr,1,4.050000E+00,6.063780E+00,5.039163E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998915E+01,0.000000E+00 +462781,fr,1,4.050000E+00,6.063780E+00,5.039163E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998915E+01,0.000000E+00 +462786,fr,1,4.050000E+00,6.063780E+00,5.039163E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998903E+01,-9.000000E+01 +462840,fr,1,4.550000E+00,6.063780E+00,5.039163E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +462901,fr,1,5.050000E+00,6.063780E+00,5.039163E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +463200,fr,3,3.550000E+00,7.824350E+00,4.470763E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999284E+01,0.000000E+00 +463212,fr,2,3.650000E+00,7.824350E+00,4.470763E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998723E+01,0.000000E+00 +463224,fr,2,3.750000E+00,7.824350E+00,4.470763E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +463231,fr,1,3.750000E+00,7.824350E+00,4.470763E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998848E+01,-9.000000E+01 +463240,fr,1,3.850000E+00,7.824350E+00,4.470763E+01,1.500000E+01,Active Shallow Crust,2.400114E+02,5.799798E+01,0.000000E+00 +463248,fr,1,3.950000E+00,7.824350E+00,4.470763E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999096E+01,0.000000E+00 +463258,fr,1,3.950000E+00,7.824350E+00,4.470763E+01,1.500000E+01,Active Shallow Crust,1.289004E+02,8.999548E+01,0.000000E+00 +463260,fr,1,4.050000E+00,7.824350E+00,4.470763E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999194E+01,0.000000E+00 +463266,fr,1,4.050000E+00,7.824350E+00,4.470763E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999184E+01,-9.000000E+01 +463269,fr,1,4.050000E+00,7.824350E+00,4.470763E+01,5.000000E+00,Active Shallow Crust,1.288900E+02,8.999396E+01,0.000000E+00 +463272,fr,1,4.150000E+00,7.824350E+00,4.470763E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +463293,fr,1,4.250000E+00,7.824350E+00,4.470763E+01,5.000000E+00,Active Shallow Crust,1.288939E+02,8.998088E+01,0.000000E+00 +463299,fr,1,4.350000E+00,7.824350E+00,4.470763E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799589E+01,0.000000E+00 +463368,fr,1,4.950000E+00,7.824350E+00,4.470763E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +463426,fr,1,5.350000E+00,7.824350E+00,4.470763E+01,1.500000E+01,Active Shallow Crust,1.288841E+02,8.998804E+01,0.000000E+00 +463680,fr,1,3.550000E+00,-1.188520E+00,4.524455E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +463693,fr,1,3.650000E+00,-1.188520E+00,4.524455E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +463872,fr,1,5.150000E+00,-1.188520E+00,4.524455E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +463891,fr,1,5.250000E+00,-1.188520E+00,4.524455E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +464643,fr,1,3.550000E+00,-4.531900E-01,4.476624E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799812E+01,0.000000E+00 +464669,fr,1,3.750000E+00,-4.531900E-01,4.476624E+01,2.750000E+01,Active Shallow Crust,2.400082E+02,5.801753E+01,0.000000E+00 +464670,fr,1,3.750000E+00,-4.531900E-01,4.476624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,-9.000000E+01 +464673,fr,1,3.750000E+00,-4.531900E-01,4.476624E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.996736E+01,0.000000E+00 +464703,fr,1,4.050000E+00,-4.531900E-01,4.476624E+01,5.000000E+00,Active Shallow Crust,2.400057E+02,5.800582E+01,0.000000E+00 +465120,fr,1,3.550000E+00,9.309510E+00,4.900516E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998677E+01,0.000000E+00 +465132,fr,1,3.650000E+00,9.309510E+00,4.900516E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998820E+01,0.000000E+00 +465201,fr,1,4.150000E+00,9.309510E+00,4.900516E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999337E+01,0.000000E+00 +465204,fr,1,4.250000E+00,9.309510E+00,4.900516E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998818E+01,0.000000E+00 +465264,fr,1,4.750000E+00,9.309510E+00,4.900516E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +465288,fr,1,4.950000E+00,9.309510E+00,4.900516E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +465600,fr,1,3.550000E+00,1.071730E+00,4.796958E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +465612,fr,1,3.650000E+00,1.071730E+00,4.796958E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +465636,fr,1,3.850000E+00,1.071730E+00,4.796958E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +465672,fr,1,4.150000E+00,1.071730E+00,4.796958E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +465684,fr,1,4.250000E+00,1.071730E+00,4.796958E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +465733,fr,1,4.650000E+00,1.071730E+00,4.796958E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +465756,fr,1,4.850000E+00,1.071730E+00,4.796958E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +466080,fr,1,3.550000E+00,2.806770E+00,4.949120E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +466092,fr,1,3.650000E+00,2.806770E+00,4.949120E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999124E+01,0.000000E+00 +466093,fr,1,3.650000E+00,2.806770E+00,4.949120E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999124E+01,0.000000E+00 +466098,fr,1,3.650000E+00,2.806770E+00,4.949120E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999114E+01,-9.000000E+01 +466113,fr,1,3.750000E+00,2.806770E+00,4.949120E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.996731E+01,0.000000E+00 +466128,fr,1,3.950000E+00,2.806770E+00,4.949120E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +466560,fr,1,3.550000E+00,1.690910E+00,4.480350E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +466591,fr,1,3.750000E+00,1.690910E+00,4.480350E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +466608,fr,2,3.950000E+00,1.690910E+00,4.480350E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +467041,fr,1,3.550000E+00,-3.584440E+00,4.304679E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +467042,fr,1,3.550000E+00,-3.584440E+00,4.304679E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +467043,fr,1,3.550000E+00,-3.584440E+00,4.304679E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.799750E+01,0.000000E+00 +467047,fr,1,3.550000E+00,-3.584440E+00,4.304679E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998882E+01,-9.000000E+01 +467053,fr,1,3.650000E+00,-3.584440E+00,4.304679E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +467054,fr,1,3.650000E+00,-3.584440E+00,4.304679E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +467055,fr,1,3.650000E+00,-3.584440E+00,4.304679E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801258E+01,0.000000E+00 +467058,fr,1,3.650000E+00,-3.584440E+00,4.304679E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +467064,fr,1,3.750000E+00,-3.584440E+00,4.304679E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999122E+01,0.000000E+00 +467065,fr,1,3.750000E+00,-3.584440E+00,4.304679E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999122E+01,0.000000E+00 +467076,fr,1,3.850000E+00,-3.584440E+00,4.304679E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +467088,fr,2,3.950000E+00,-3.584440E+00,4.304679E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +467100,fr,2,4.050000E+00,-3.584440E+00,4.304679E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +467105,fr,1,4.050000E+00,-3.584440E+00,4.304679E+01,2.750000E+01,Active Shallow Crust,2.400055E+02,5.800567E+01,0.000000E+00 +467546,fr,1,3.750000E+00,1.118550E+00,4.408575E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +467568,fr,2,3.950000E+00,1.118550E+00,4.408575E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +467582,fr,1,4.050000E+00,1.118550E+00,4.408575E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +468000,fr,2,3.550000E+00,1.666870E+00,4.226562E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999067E+01,0.000000E+00 +468003,fr,2,3.550000E+00,1.666870E+00,4.226562E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799799E+01,0.000000E+00 +468009,fr,1,3.550000E+00,1.666870E+00,4.226562E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.999347E+01,0.000000E+00 +468012,fr,3,3.650000E+00,1.666870E+00,4.226562E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +468013,fr,1,3.650000E+00,1.666870E+00,4.226562E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +468014,fr,1,3.650000E+00,1.666870E+00,4.226562E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +468024,fr,2,3.750000E+00,1.666870E+00,4.226562E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +468030,fr,1,3.750000E+00,1.666870E+00,4.226562E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,-9.000000E+01 +468036,fr,1,3.850000E+00,1.666870E+00,4.226562E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +468037,fr,1,3.850000E+00,1.666870E+00,4.226562E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +468039,fr,1,3.850000E+00,1.666870E+00,4.226562E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.799778E+01,0.000000E+00 +468051,fr,1,3.950000E+00,1.666870E+00,4.226562E+01,5.000000E+00,Active Shallow Crust,2.400192E+02,5.800489E+01,0.000000E+00 +468057,fr,1,3.950000E+00,1.666870E+00,4.226562E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.999412E+01,0.000000E+00 +468060,fr,3,4.050000E+00,1.666870E+00,4.226562E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +468084,fr,1,4.250000E+00,1.666870E+00,4.226562E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +468085,fr,1,4.250000E+00,1.666870E+00,4.226562E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +468108,fr,1,4.450000E+00,1.666870E+00,4.226562E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +468145,fr,1,4.750000E+00,1.666870E+00,4.226562E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +468153,fr,1,4.750000E+00,1.666870E+00,4.226562E+01,5.000000E+00,Active Shallow Crust,1.288899E+02,8.998805E+01,0.000000E+00 +468480,fr,3,3.550000E+00,2.785600E+00,4.231107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +468492,fr,2,3.650000E+00,2.785600E+00,4.231107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +468493,fr,1,3.650000E+00,2.785600E+00,4.231107E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +468496,fr,1,3.650000E+00,2.785600E+00,4.231107E+01,1.500000E+01,Active Shallow Crust,2.400008E+02,5.801269E+01,0.000000E+00 +468505,fr,1,3.750000E+00,2.785600E+00,4.231107E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999111E+01,0.000000E+00 +468518,fr,1,3.850000E+00,2.785600E+00,4.231107E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +468523,fr,1,3.850000E+00,2.785600E+00,4.231107E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998932E+01,-9.000000E+01 +468528,fr,1,3.950000E+00,2.785600E+00,4.231107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +468544,fr,1,4.050000E+00,2.785600E+00,4.231107E+01,1.500000E+01,Active Shallow Crust,2.400058E+02,5.800545E+01,0.000000E+00 +468545,fr,1,4.050000E+00,2.785600E+00,4.231107E+01,2.750000E+01,Active Shallow Crust,2.400058E+02,5.800545E+01,0.000000E+00 +468552,fr,1,4.150000E+00,2.785600E+00,4.231107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +468557,fr,1,4.150000E+00,2.785600E+00,4.231107E+01,2.750000E+01,Active Shallow Crust,2.400080E+02,5.799723E+01,0.000000E+00 +468612,fr,2,4.650000E+00,2.785600E+00,4.231107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +468636,fr,1,4.850000E+00,2.785600E+00,4.231107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +468960,fr,1,3.550000E+00,6.733580E+00,4.770702E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999322E+01,0.000000E+00 +468963,fr,1,3.550000E+00,6.733580E+00,4.770702E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799880E+01,0.000000E+00 +468965,fr,1,3.550000E+00,6.733580E+00,4.770702E+01,2.750000E+01,Active Shallow Crust,2.400118E+02,5.799870E+01,0.000000E+00 +468966,fr,1,3.550000E+00,6.733580E+00,4.770702E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999313E+01,-9.000000E+01 +468967,fr,1,3.550000E+00,6.733580E+00,4.770702E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999313E+01,-9.000000E+01 +468972,fr,1,3.650000E+00,6.733580E+00,4.770702E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998791E+01,0.000000E+00 +468984,fr,2,3.750000E+00,6.733580E+00,4.770702E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998922E+01,0.000000E+00 +468990,fr,1,3.750000E+00,6.733580E+00,4.770702E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998910E+01,-9.000000E+01 +468997,fr,2,3.850000E+00,6.733580E+00,4.770702E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +469009,fr,1,3.950000E+00,6.733580E+00,4.770702E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999144E+01,0.000000E+00 +469020,fr,1,4.050000E+00,6.733580E+00,4.770702E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998855E+01,0.000000E+00 +469069,fr,1,4.450000E+00,6.733580E+00,4.770702E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +469104,fr,1,4.750000E+00,6.733580E+00,4.770702E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +469129,fr,1,4.950000E+00,6.733580E+00,4.770702E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +469453,fr,1,3.650000E+00,8.548250E+00,5.117017E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998873E+01,0.000000E+00 +469545,fr,1,4.350000E+00,8.548250E+00,5.117017E+01,5.000000E+00,Active Shallow Crust,1.288978E+02,8.998225E+01,0.000000E+00 +469920,fr,1,3.550000E+00,3.802540E+00,4.179185E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +469921,fr,1,3.550000E+00,3.802540E+00,4.179185E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +469922,fr,1,3.550000E+00,3.802540E+00,4.179185E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +469942,fr,1,3.650000E+00,3.802540E+00,4.179185E+01,1.500000E+01,Active Shallow Crust,1.289014E+02,8.996343E+01,0.000000E+00 +469945,fr,1,3.750000E+00,3.802540E+00,4.179185E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +469956,fr,1,3.850000E+00,3.802540E+00,4.179185E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +470005,fr,1,4.250000E+00,3.802540E+00,4.179185E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +470019,fr,2,4.350000E+00,3.802540E+00,4.179185E+01,5.000000E+00,Active Shallow Crust,2.400075E+02,5.799578E+01,0.000000E+00 +470400,fr,1,3.550000E+00,-5.525990E+00,4.712556E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999314E+01,0.000000E+00 +470916,fr,1,3.850000E+00,2.184470E+00,4.881538E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +470942,fr,1,4.050000E+00,2.184470E+00,4.881538E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +471000,fr,1,4.550000E+00,2.184470E+00,4.881538E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +471433,fr,1,4.150000E+00,5.639030E+00,4.883921E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +471457,fr,1,4.350000E+00,5.639030E+00,4.883921E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +472320,fr,5,3.550000E+00,-2.048610E+00,4.869269E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +472321,fr,1,3.550000E+00,-2.048610E+00,4.869269E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +472326,fr,1,3.550000E+00,-2.048610E+00,4.869269E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,-9.000000E+01 +472332,fr,1,3.650000E+00,-2.048610E+00,4.869269E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +472333,fr,1,3.650000E+00,-2.048610E+00,4.869269E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +472335,fr,1,3.650000E+00,-2.048610E+00,4.869269E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801279E+01,0.000000E+00 +472350,fr,1,3.750000E+00,-2.048610E+00,4.869269E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,-9.000000E+01 +472353,fr,1,3.750000E+00,-2.048610E+00,4.869269E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996729E+01,0.000000E+00 +472356,fr,2,3.850000E+00,-2.048610E+00,4.869269E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +472369,fr,1,3.950000E+00,-2.048610E+00,4.869269E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +472377,fr,1,3.950000E+00,-2.048610E+00,4.869269E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.999370E+01,0.000000E+00 +472380,fr,2,4.050000E+00,-2.048610E+00,4.869269E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +472382,fr,1,4.050000E+00,-2.048610E+00,4.869269E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +472383,fr,1,4.050000E+00,-2.048610E+00,4.869269E+01,5.000000E+00,Active Shallow Crust,2.400061E+02,5.800591E+01,0.000000E+00 +472392,fr,1,4.150000E+00,-2.048610E+00,4.869269E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +472393,fr,1,4.150000E+00,-2.048610E+00,4.869269E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +472395,fr,1,4.150000E+00,-2.048610E+00,4.869269E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799746E+01,0.000000E+00 +472416,fr,1,4.350000E+00,-2.048610E+00,4.869269E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +472434,fr,1,4.450000E+00,-2.048610E+00,4.869269E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,-9.000000E+01 +472440,fr,1,4.550000E+00,-2.048610E+00,4.869269E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +472536,fr,1,5.350000E+00,-2.048610E+00,4.869269E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +472800,fr,6,3.550000E+00,7.582010E+00,4.651677E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999306E+01,0.000000E+00 +472801,fr,5,3.550000E+00,7.582010E+00,4.651677E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999306E+01,0.000000E+00 +472802,fr,1,3.550000E+00,7.582010E+00,4.651677E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999306E+01,0.000000E+00 +472803,fr,1,3.550000E+00,7.582010E+00,4.651677E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799739E+01,0.000000E+00 +472806,fr,1,3.550000E+00,7.582010E+00,4.651677E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999298E+01,-9.000000E+01 +472809,fr,3,3.550000E+00,7.582010E+00,4.651677E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.999306E+01,0.000000E+00 +472812,fr,8,3.650000E+00,7.582010E+00,4.651677E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998763E+01,0.000000E+00 +472813,fr,2,3.650000E+00,7.582010E+00,4.651677E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998763E+01,0.000000E+00 +472814,fr,1,3.650000E+00,7.582010E+00,4.651677E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998763E+01,0.000000E+00 +472815,fr,1,3.650000E+00,7.582010E+00,4.651677E+01,5.000000E+00,Active Shallow Crust,2.399998E+02,5.801333E+01,0.000000E+00 +472816,fr,1,3.650000E+00,7.582010E+00,4.651677E+01,1.500000E+01,Active Shallow Crust,2.399998E+02,5.801333E+01,0.000000E+00 +472821,fr,1,3.650000E+00,7.582010E+00,4.651677E+01,5.000000E+00,Active Shallow Crust,1.288996E+02,8.996352E+01,0.000000E+00 +472824,fr,3,3.750000E+00,7.582010E+00,4.651677E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +472825,fr,3,3.750000E+00,7.582010E+00,4.651677E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +472826,fr,2,3.750000E+00,7.582010E+00,4.651677E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +472827,fr,1,3.750000E+00,7.582010E+00,4.651677E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.801795E+01,0.000000E+00 +472828,fr,2,3.750000E+00,7.582010E+00,4.651677E+01,1.500000E+01,Active Shallow Crust,2.400086E+02,5.801795E+01,0.000000E+00 +472833,fr,1,3.750000E+00,7.582010E+00,4.651677E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.996691E+01,0.000000E+00 +472836,fr,4,3.850000E+00,7.582010E+00,4.651677E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +472837,fr,1,3.850000E+00,7.582010E+00,4.651677E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +472839,fr,2,3.850000E+00,7.582010E+00,4.651677E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799717E+01,0.000000E+00 +472843,fr,1,3.850000E+00,7.582010E+00,4.651677E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +472846,fr,1,3.850000E+00,7.582010E+00,4.651677E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.999263E+01,0.000000E+00 +472848,fr,3,3.950000E+00,7.582010E+00,4.651677E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999124E+01,0.000000E+00 +472849,fr,1,3.950000E+00,7.582010E+00,4.651677E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999124E+01,0.000000E+00 +472851,fr,1,3.950000E+00,7.582010E+00,4.651677E+01,5.000000E+00,Active Shallow Crust,2.400191E+02,5.800539E+01,0.000000E+00 +472852,fr,1,3.950000E+00,7.582010E+00,4.651677E+01,1.500000E+01,Active Shallow Crust,2.400191E+02,5.800539E+01,0.000000E+00 +472857,fr,1,3.950000E+00,7.582010E+00,4.651677E+01,5.000000E+00,Active Shallow Crust,1.288998E+02,8.999343E+01,0.000000E+00 +472860,fr,1,4.050000E+00,7.582010E+00,4.651677E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998830E+01,0.000000E+00 +472861,fr,1,4.050000E+00,7.582010E+00,4.651677E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998830E+01,0.000000E+00 +472863,fr,1,4.050000E+00,7.582010E+00,4.651677E+01,5.000000E+00,Active Shallow Crust,2.400057E+02,5.800625E+01,0.000000E+00 +472866,fr,1,4.050000E+00,7.582010E+00,4.651677E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998816E+01,-9.000000E+01 +472872,fr,1,4.150000E+00,7.582010E+00,4.651677E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +472873,fr,2,4.150000E+00,7.582010E+00,4.651677E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +472879,fr,1,4.150000E+00,7.582010E+00,4.651677E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998945E+01,-9.000000E+01 +472881,fr,1,4.150000E+00,7.582010E+00,4.651677E+01,5.000000E+00,Active Shallow Crust,1.288973E+02,8.999478E+01,0.000000E+00 +472884,fr,3,4.250000E+00,7.582010E+00,4.651677E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +472885,fr,2,4.250000E+00,7.582010E+00,4.651677E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +472886,fr,1,4.250000E+00,7.582010E+00,4.651677E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +472887,fr,2,4.250000E+00,7.582010E+00,4.651677E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.799398E+01,0.000000E+00 +472890,fr,1,4.250000E+00,7.582010E+00,4.651677E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,-9.000000E+01 +472899,fr,1,4.350000E+00,7.582010E+00,4.651677E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.799586E+01,0.000000E+00 +472908,fr,1,4.450000E+00,7.582010E+00,4.651677E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +472910,fr,1,4.450000E+00,7.582010E+00,4.651677E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +472914,fr,1,4.450000E+00,7.582010E+00,4.651677E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +472926,fr,1,4.550000E+00,7.582010E+00,4.651677E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998890E+01,-9.000000E+01 +472933,fr,1,4.650000E+00,7.582010E+00,4.651677E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +472944,fr,1,4.750000E+00,7.582010E+00,4.651677E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +472962,fr,1,4.850000E+00,7.582010E+00,4.651677E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999057E+01,-9.000000E+01 +472969,fr,1,4.950000E+00,7.582010E+00,4.651677E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +472980,fr,1,5.050000E+00,7.582010E+00,4.651677E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +472983,fr,1,5.050000E+00,7.582010E+00,4.651677E+01,5.000000E+00,Active Shallow Crust,2.400221E+02,5.799741E+01,0.000000E+00 +472994,fr,1,5.150000E+00,7.582010E+00,4.651677E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +472998,fr,1,5.150000E+00,7.582010E+00,4.651677E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +473121,fr,1,6.150000E+00,7.582008E+00,4.651677E+01,6.011322E+00,Active Shallow Crust,1.288560E+02,8.998978E+01,0.000000E+00 +473280,fr,4,3.550000E+00,1.272420E+00,4.219958E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +473283,fr,1,3.550000E+00,1.272420E+00,4.219958E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799798E+01,0.000000E+00 +473296,fr,1,3.650000E+00,1.272420E+00,4.219958E+01,1.500000E+01,Active Shallow Crust,2.400006E+02,5.801260E+01,0.000000E+00 +473304,fr,1,3.750000E+00,1.272420E+00,4.219958E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +473306,fr,1,3.750000E+00,1.272420E+00,4.219958E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +473310,fr,1,3.750000E+00,1.272420E+00,4.219958E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,-9.000000E+01 +473325,fr,1,3.850000E+00,1.272420E+00,4.219958E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999405E+01,0.000000E+00 +473340,fr,1,4.050000E+00,1.272420E+00,4.219958E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +473343,fr,1,4.050000E+00,1.272420E+00,4.219958E+01,5.000000E+00,Active Shallow Crust,2.400053E+02,5.800566E+01,0.000000E+00 +473353,fr,1,4.150000E+00,1.272420E+00,4.219958E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +473356,fr,1,4.150000E+00,1.272420E+00,4.219958E+01,1.500000E+01,Active Shallow Crust,2.400076E+02,5.799720E+01,0.000000E+00 +473377,fr,1,4.350000E+00,1.272420E+00,4.219958E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +473412,fr,1,4.650000E+00,1.272420E+00,4.219958E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +473426,fr,1,4.750000E+00,1.272420E+00,4.219958E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +473760,fr,2,3.550000E+00,-3.248550E+00,4.336792E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +473762,fr,1,3.550000E+00,-3.248550E+00,4.336792E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +473769,fr,1,3.550000E+00,-3.248550E+00,4.336792E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.999450E+01,0.000000E+00 +473775,fr,2,3.650000E+00,-3.248550E+00,4.336792E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801245E+01,0.000000E+00 +473779,fr,1,3.650000E+00,-3.248550E+00,4.336792E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +473785,fr,1,3.750000E+00,-3.248550E+00,4.336792E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +473788,fr,1,3.750000E+00,-3.248550E+00,4.336792E+01,1.500000E+01,Active Shallow Crust,2.400080E+02,5.801779E+01,0.000000E+00 +473796,fr,1,3.850000E+00,-3.248550E+00,4.336792E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +473797,fr,1,3.850000E+00,-3.248550E+00,4.336792E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +473810,fr,1,3.950000E+00,-3.248550E+00,4.336792E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +473832,fr,1,4.150000E+00,-3.248550E+00,4.336792E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +473851,fr,1,4.250000E+00,-3.248550E+00,4.336792E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +473862,fr,1,4.350000E+00,-3.248550E+00,4.336792E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,-9.000000E+01 +473865,fr,1,4.350000E+00,-3.248550E+00,4.336792E+01,5.000000E+00,Active Shallow Crust,1.288982E+02,8.998292E+01,0.000000E+00 +473869,fr,1,4.450000E+00,-3.248550E+00,4.336792E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +473919,fr,1,4.850000E+00,-3.248550E+00,4.336792E+01,5.000000E+00,Active Shallow Crust,2.400160E+02,5.800214E+01,0.000000E+00 +474240,fr,1,3.550000E+00,2.243640E+00,5.128413E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +474243,fr,1,3.550000E+00,2.243640E+00,5.128413E+01,5.000000E+00,Active Shallow Crust,2.400133E+02,5.799817E+01,0.000000E+00 +474245,fr,1,3.550000E+00,2.243640E+00,5.128413E+01,2.750000E+01,Active Shallow Crust,2.400133E+02,5.799807E+01,0.000000E+00 +474246,fr,1,3.550000E+00,2.243640E+00,5.128413E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,-9.000000E+01 +474250,fr,1,3.550000E+00,2.243640E+00,5.128413E+01,1.500000E+01,Active Shallow Crust,1.288956E+02,8.999369E+01,0.000000E+00 +474252,fr,1,3.650000E+00,2.243640E+00,5.128413E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +474263,fr,1,3.650000E+00,2.243640E+00,5.128413E+01,2.750000E+01,Active Shallow Crust,1.289005E+02,8.996337E+01,0.000000E+00 +474264,fr,2,3.750000E+00,2.243640E+00,5.128413E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +474312,fr,1,4.150000E+00,2.243640E+00,5.128413E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +474330,fr,1,4.250000E+00,2.243640E+00,5.128413E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +474396,fr,1,4.850000E+00,2.243640E+00,5.128413E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +474744,fr,1,3.750000E+00,-1.427110E+00,5.059890E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +474778,fr,1,3.950000E+00,-1.427110E+00,5.059890E+01,1.500000E+01,Active Shallow Crust,1.288997E+02,8.999394E+01,0.000000E+00 +474803,fr,1,4.150000E+00,-1.427110E+00,5.059890E+01,2.750000E+01,Active Shallow Crust,1.288969E+02,8.999358E+01,0.000000E+00 +474806,fr,1,4.250000E+00,-1.427110E+00,5.059890E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +474861,fr,1,4.650000E+00,-1.427110E+00,5.059890E+01,5.000000E+00,Active Shallow Crust,1.288899E+02,8.998700E+01,0.000000E+00 +474865,fr,1,4.750000E+00,-1.427110E+00,5.059890E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +475200,fr,1,3.550000E+00,7.525300E-01,4.337660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +475208,fr,1,3.550000E+00,7.525300E-01,4.337660E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,-9.000000E+01 +475212,fr,1,3.650000E+00,7.525300E-01,4.337660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +475260,fr,1,4.050000E+00,7.525300E-01,4.337660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +475296,fr,1,4.350000E+00,7.525300E-01,4.337660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +475680,fr,1,3.550000E+00,-1.288080E+00,4.700213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +475681,fr,1,3.550000E+00,-1.288080E+00,4.700213E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +475704,fr,1,3.750000E+00,-1.288080E+00,4.700213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +475706,fr,1,3.750000E+00,-1.288080E+00,4.700213E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +475716,fr,2,3.850000E+00,-1.288080E+00,4.700213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +475723,fr,1,3.850000E+00,-1.288080E+00,4.700213E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,-9.000000E+01 +475737,fr,1,3.950000E+00,-1.288080E+00,4.700213E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.999349E+01,0.000000E+00 +475743,fr,1,4.050000E+00,-1.288080E+00,4.700213E+01,5.000000E+00,Active Shallow Crust,2.400061E+02,5.800576E+01,0.000000E+00 +475765,fr,1,4.250000E+00,-1.288080E+00,4.700213E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +475812,fr,1,4.650000E+00,-1.288080E+00,4.700213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +475825,fr,1,4.750000E+00,-1.288080E+00,4.700213E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +475851,fr,1,4.950000E+00,-1.288080E+00,4.700213E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.800450E+01,0.000000E+00 +475882,fr,1,5.150000E+00,-1.288080E+00,4.700213E+01,1.500000E+01,Active Shallow Crust,1.288835E+02,8.999105E+01,0.000000E+00 +476160,fr,1,3.550000E+00,2.809230E+00,4.443739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +476161,fr,1,3.550000E+00,2.809230E+00,4.443739E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +476172,fr,1,3.650000E+00,2.809230E+00,4.443739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +476194,fr,1,3.750000E+00,2.809230E+00,4.443739E+01,1.500000E+01,Active Shallow Crust,1.288974E+02,8.996717E+01,0.000000E+00 +476196,fr,2,3.850000E+00,2.809230E+00,4.443739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +476199,fr,1,3.850000E+00,2.809230E+00,4.443739E+01,5.000000E+00,Active Shallow Crust,2.400103E+02,5.799771E+01,0.000000E+00 +476208,fr,1,3.950000E+00,2.809230E+00,4.443739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +476221,fr,1,4.050000E+00,2.809230E+00,4.443739E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +476244,fr,1,4.250000E+00,2.809230E+00,4.443739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +476262,fr,1,4.350000E+00,2.809230E+00,4.443739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +476328,fr,1,4.950000E+00,2.809230E+00,4.443739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +476653,fr,1,3.650000E+00,1.581520E+00,5.229154E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +477120,fr,1,3.550000E+00,3.871920E+00,4.260753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998887E+01,0.000000E+00 +477122,fr,1,3.550000E+00,3.871920E+00,4.260753E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998887E+01,0.000000E+00 +477135,fr,1,3.650000E+00,3.871920E+00,4.260753E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801295E+01,0.000000E+00 +477213,fr,1,4.250000E+00,3.871920E+00,4.260753E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.998080E+01,0.000000E+00 +477222,fr,1,4.350000E+00,3.871920E+00,4.260753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,-9.000000E+01 +477290,fr,1,4.950000E+00,3.871920E+00,4.260753E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +477600,fr,2,3.550000E+00,-2.778570E+00,4.768586E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +477601,fr,2,3.550000E+00,-2.778570E+00,4.768586E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +477603,fr,1,3.550000E+00,-2.778570E+00,4.768586E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799834E+01,0.000000E+00 +477606,fr,1,3.550000E+00,-2.778570E+00,4.768586E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,-9.000000E+01 +477612,fr,1,3.650000E+00,-2.778570E+00,4.768586E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999092E+01,0.000000E+00 +477615,fr,1,3.650000E+00,-2.778570E+00,4.768586E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801269E+01,0.000000E+00 +477624,fr,1,3.750000E+00,-2.778570E+00,4.768586E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +477625,fr,1,3.750000E+00,-2.778570E+00,4.768586E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +477630,fr,1,3.750000E+00,-2.778570E+00,4.768586E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998909E+01,-9.000000E+01 +477648,fr,1,3.950000E+00,-2.778570E+00,4.768586E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +477649,fr,1,3.950000E+00,-2.778570E+00,4.768586E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +477651,fr,1,3.950000E+00,-2.778570E+00,4.768586E+01,5.000000E+00,Active Shallow Crust,2.400201E+02,5.800491E+01,0.000000E+00 +477660,fr,2,4.050000E+00,-2.778570E+00,4.768586E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +477661,fr,2,4.050000E+00,-2.778570E+00,4.768586E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +477672,fr,2,4.150000E+00,-2.778570E+00,4.768586E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +477675,fr,1,4.150000E+00,-2.778570E+00,4.768586E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799704E+01,0.000000E+00 +477679,fr,1,4.150000E+00,-2.778570E+00,4.768586E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998968E+01,-9.000000E+01 +477681,fr,1,4.150000E+00,-2.778570E+00,4.768586E+01,5.000000E+00,Active Shallow Crust,1.288975E+02,8.999319E+01,0.000000E+00 +477685,fr,1,4.250000E+00,-2.778570E+00,4.768586E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +477687,fr,1,4.250000E+00,-2.778570E+00,4.768586E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799398E+01,0.000000E+00 +477697,fr,1,4.350000E+00,-2.778570E+00,4.768586E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +477708,fr,1,4.450000E+00,-2.778570E+00,4.768586E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +477709,fr,1,4.450000E+00,-2.778570E+00,4.768586E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +477720,fr,1,4.550000E+00,-2.778570E+00,4.768586E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +477721,fr,1,4.550000E+00,-2.778570E+00,4.768586E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +477732,fr,1,4.650000E+00,-2.778570E+00,4.768586E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +477762,fr,1,4.850000E+00,-2.778570E+00,4.768586E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +477786,fr,1,5.050000E+00,-2.778570E+00,4.768586E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,-9.000000E+01 +478080,fr,1,3.550000E+00,5.639740E+00,4.338387E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999267E+01,0.000000E+00 +478094,fr,1,3.650000E+00,5.639740E+00,4.338387E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998694E+01,0.000000E+00 +478104,fr,1,3.750000E+00,5.639740E+00,4.338387E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998836E+01,0.000000E+00 +478117,fr,1,3.850000E+00,5.639740E+00,4.338387E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +478125,fr,1,3.850000E+00,5.639740E+00,4.338387E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.999481E+01,0.000000E+00 +478128,fr,2,3.950000E+00,5.639740E+00,4.338387E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +478131,fr,1,3.950000E+00,5.639740E+00,4.338387E+01,5.000000E+00,Active Shallow Crust,2.400193E+02,5.800583E+01,0.000000E+00 +478140,fr,2,4.050000E+00,5.639740E+00,4.338387E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999176E+01,0.000000E+00 +478141,fr,1,4.050000E+00,5.639740E+00,4.338387E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999176E+01,0.000000E+00 +478152,fr,1,4.150000E+00,5.639740E+00,4.338387E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +478177,fr,1,4.350000E+00,5.639740E+00,4.338387E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999125E+01,0.000000E+00 +478188,fr,1,4.450000E+00,5.639740E+00,4.338387E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +478189,fr,1,4.450000E+00,5.639740E+00,4.338387E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +478560,fr,1,3.550000E+00,7.236600E-01,5.058231E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +478562,fr,1,3.550000E+00,7.236600E-01,5.058231E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +478563,fr,1,3.550000E+00,7.236600E-01,5.058231E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799836E+01,0.000000E+00 +478572,fr,1,3.650000E+00,7.236600E-01,5.058231E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +478579,fr,1,3.650000E+00,7.236600E-01,5.058231E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,-9.000000E+01 +478581,fr,1,3.650000E+00,7.236600E-01,5.058231E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.996349E+01,0.000000E+00 +478601,fr,1,3.850000E+00,7.236600E-01,5.058231E+01,2.750000E+01,Active Shallow Crust,2.400115E+02,5.799791E+01,0.000000E+00 +479040,fr,1,3.550000E+00,3.690600E+00,5.182430E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +479184,fr,1,4.750000E+00,3.690600E+00,5.182430E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +479520,fr,1,3.550000E+00,5.834600E-01,5.070639E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +479589,fr,1,4.050000E+00,5.834600E-01,5.070639E+01,5.000000E+00,Active Shallow Crust,1.288900E+02,8.999371E+01,0.000000E+00 +480033,fr,1,3.750000E+00,-2.777710E+00,4.686925E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.996724E+01,0.000000E+00 +480093,fr,1,4.250000E+00,-2.777710E+00,4.686925E+01,5.000000E+00,Active Shallow Crust,1.288945E+02,8.998096E+01,0.000000E+00 +480186,fr,1,5.050000E+00,-2.777710E+00,4.686925E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +480264,fr,1,5.750000E+00,-2.777710E+00,4.686925E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +480480,fr,1,3.550000E+00,1.038250E+00,4.502480E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +480481,fr,1,3.550000E+00,1.038250E+00,4.502480E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +480504,fr,1,3.750000E+00,1.038250E+00,4.502480E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +480528,fr,1,3.950000E+00,1.038250E+00,4.502480E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +480540,fr,1,4.050000E+00,1.038250E+00,4.502480E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +480598,fr,1,4.450000E+00,1.038250E+00,4.502480E+01,1.500000E+01,Active Shallow Crust,1.288926E+02,8.999368E+01,0.000000E+00 +480670,fr,1,5.050000E+00,1.038250E+00,4.502480E+01,1.500000E+01,Active Shallow Crust,1.288861E+02,8.999053E+01,0.000000E+00 +480960,fr,1,3.550000E+00,2.698880E+00,4.108776E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998860E+01,0.000000E+00 +480984,fr,2,3.750000E+00,2.698880E+00,4.108776E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +481009,fr,1,3.950000E+00,2.698880E+00,4.108776E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +481032,fr,1,4.150000E+00,2.698880E+00,4.108776E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +481071,fr,1,4.450000E+00,2.698880E+00,4.108776E+01,5.000000E+00,Active Shallow Crust,2.400040E+02,5.799462E+01,0.000000E+00 +481116,fr,1,4.850000E+00,2.698880E+00,4.108776E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +481440,fr,1,3.550000E+00,5.288930E+00,5.078358E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998725E+01,0.000000E+00 +481452,fr,1,3.650000E+00,5.288930E+00,5.078358E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998863E+01,0.000000E+00 +481453,fr,3,3.650000E+00,5.288930E+00,5.078358E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998863E+01,0.000000E+00 +481461,fr,1,3.650000E+00,5.288930E+00,5.078358E+01,5.000000E+00,Active Shallow Crust,1.289006E+02,8.996361E+01,0.000000E+00 +481470,fr,1,3.750000E+00,5.288930E+00,5.078358E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,-9.000000E+01 +481475,fr,1,3.750000E+00,5.288930E+00,5.078358E+01,2.750000E+01,Active Shallow Crust,1.288969E+02,8.996707E+01,0.000000E+00 +481476,fr,1,3.850000E+00,5.288930E+00,5.078358E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +481487,fr,1,3.850000E+00,5.288930E+00,5.078358E+01,2.750000E+01,Active Shallow Crust,1.288941E+02,8.999323E+01,0.000000E+00 +481503,fr,1,4.050000E+00,5.288930E+00,5.078358E+01,5.000000E+00,Active Shallow Crust,2.400064E+02,5.800611E+01,0.000000E+00 +481513,fr,1,4.150000E+00,5.288930E+00,5.078358E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +481515,fr,1,4.150000E+00,5.288930E+00,5.078358E+01,5.000000E+00,Active Shallow Crust,2.400095E+02,5.799702E+01,0.000000E+00 +481523,fr,1,4.150000E+00,5.288930E+00,5.078358E+01,2.750000E+01,Active Shallow Crust,1.288975E+02,8.999361E+01,0.000000E+00 +481532,fr,1,4.250000E+00,5.288930E+00,5.078358E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999136E+01,-9.000000E+01 +481549,fr,1,4.450000E+00,5.288930E+00,5.078358E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999095E+01,0.000000E+00 +481572,fr,1,4.650000E+00,5.288930E+00,5.078358E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998922E+01,0.000000E+00 +481573,fr,1,4.650000E+00,5.288930E+00,5.078358E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998922E+01,0.000000E+00 +481575,fr,1,4.650000E+00,5.288930E+00,5.078358E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799433E+01,0.000000E+00 +481600,fr,1,4.850000E+00,5.288930E+00,5.078358E+01,1.500000E+01,Active Shallow Crust,2.400188E+02,5.800261E+01,0.000000E+00 +481668,fr,1,5.450000E+00,5.288930E+00,5.078358E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +481959,fr,1,3.850000E+00,6.967200E-01,5.264835E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799795E+01,0.000000E+00 +481992,fr,1,4.150000E+00,6.967200E-01,5.264835E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +482464,fr,1,4.050000E+00,7.060460E+00,5.149487E+01,1.500000E+01,Active Shallow Crust,2.400068E+02,5.800570E+01,0.000000E+00 +482905,fr,1,3.750000E+00,3.350680E+00,4.023700E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +483843,fr,3,3.550000E+00,-5.237700E-01,4.880224E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799828E+01,0.000000E+00 +483852,fr,1,3.650000E+00,-5.237700E-01,4.880224E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +483864,fr,1,3.750000E+00,-5.237700E-01,4.880224E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +483873,fr,1,3.750000E+00,-5.237700E-01,4.880224E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.996735E+01,0.000000E+00 +483875,fr,1,3.750000E+00,-5.237700E-01,4.880224E+01,2.750000E+01,Active Shallow Crust,1.288964E+02,8.996735E+01,0.000000E+00 +483877,fr,1,3.850000E+00,-5.237700E-01,4.880224E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +483885,fr,1,3.850000E+00,-5.237700E-01,4.880224E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.999383E+01,0.000000E+00 +483888,fr,2,3.950000E+00,-5.237700E-01,4.880224E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +483900,fr,1,4.050000E+00,-5.237700E-01,4.880224E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +483937,fr,1,4.350000E+00,-5.237700E-01,4.880224E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +484334,fr,1,3.650000E+00,-4.393900E-01,4.517564E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +484460,fr,1,4.650000E+00,-4.393900E-01,4.517564E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +484812,fr,1,3.650000E+00,-1.652730E+00,4.629243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +484908,fr,1,4.450000E+00,-1.652730E+00,4.629243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +484910,fr,1,4.450000E+00,-1.652730E+00,4.629243E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +485832,fr,1,4.150000E+00,7.369070E+00,4.955415E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +485898,fr,1,4.650000E+00,7.369070E+00,4.955415E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,-9.000000E+01 +486240,fr,1,3.550000E+00,3.421050E+00,4.280864E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +486243,fr,1,3.550000E+00,3.421050E+00,4.280864E+01,5.000000E+00,Active Shallow Crust,2.400126E+02,5.799766E+01,0.000000E+00 +486289,fr,1,3.950000E+00,3.421050E+00,4.280864E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +486392,fr,1,4.750000E+00,3.421050E+00,4.280864E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998966E+01,-9.000000E+01 +486720,fr,20,3.550000E+00,7.398020E+00,4.623581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999303E+01,0.000000E+00 +486721,fr,3,3.550000E+00,7.398020E+00,4.623581E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999303E+01,0.000000E+00 +486722,fr,3,3.550000E+00,7.398020E+00,4.623581E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999303E+01,0.000000E+00 +486723,fr,2,3.550000E+00,7.398020E+00,4.623581E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799818E+01,0.000000E+00 +486724,fr,1,3.550000E+00,7.398020E+00,4.623581E+01,1.500000E+01,Active Shallow Crust,2.400114E+02,5.799818E+01,0.000000E+00 +486728,fr,1,3.550000E+00,7.398020E+00,4.623581E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999294E+01,-9.000000E+01 +486729,fr,1,3.550000E+00,7.398020E+00,4.623581E+01,5.000000E+00,Active Shallow Crust,1.288971E+02,8.999303E+01,0.000000E+00 +486730,fr,1,3.550000E+00,7.398020E+00,4.623581E+01,1.500000E+01,Active Shallow Crust,1.288971E+02,8.999303E+01,0.000000E+00 +486732,fr,11,3.650000E+00,7.398020E+00,4.623581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998756E+01,0.000000E+00 +486733,fr,8,3.650000E+00,7.398020E+00,4.623581E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998756E+01,0.000000E+00 +486734,fr,1,3.650000E+00,7.398020E+00,4.623581E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998756E+01,0.000000E+00 +486735,fr,1,3.650000E+00,7.398020E+00,4.623581E+01,5.000000E+00,Active Shallow Crust,2.400018E+02,5.801175E+01,0.000000E+00 +486736,fr,1,3.650000E+00,7.398020E+00,4.623581E+01,1.500000E+01,Active Shallow Crust,2.400018E+02,5.801175E+01,0.000000E+00 +486738,fr,1,3.650000E+00,7.398020E+00,4.623581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998743E+01,-9.000000E+01 +486742,fr,3,3.650000E+00,7.398020E+00,4.623581E+01,1.500000E+01,Active Shallow Crust,1.288996E+02,8.996352E+01,0.000000E+00 +486744,fr,10,3.750000E+00,7.398020E+00,4.623581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998892E+01,0.000000E+00 +486745,fr,4,3.750000E+00,7.398020E+00,4.623581E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998892E+01,0.000000E+00 +486746,fr,1,3.750000E+00,7.398020E+00,4.623581E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998892E+01,0.000000E+00 +486750,fr,1,3.750000E+00,7.398020E+00,4.623581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998879E+01,-9.000000E+01 +486756,fr,5,3.850000E+00,7.398020E+00,4.623581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +486757,fr,1,3.850000E+00,7.398020E+00,4.623581E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +486759,fr,1,3.850000E+00,7.398020E+00,4.623581E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799746E+01,0.000000E+00 +486762,fr,1,3.850000E+00,7.398020E+00,4.623581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +486765,fr,2,3.850000E+00,7.398020E+00,4.623581E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999506E+01,0.000000E+00 +486766,fr,1,3.850000E+00,7.398020E+00,4.623581E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.999506E+01,0.000000E+00 +486768,fr,6,3.950000E+00,7.398020E+00,4.623581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +486769,fr,2,3.950000E+00,7.398020E+00,4.623581E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +486770,fr,2,3.950000E+00,7.398020E+00,4.623581E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +486771,fr,1,3.950000E+00,7.398020E+00,4.623581E+01,5.000000E+00,Active Shallow Crust,2.400194E+02,5.800484E+01,0.000000E+00 +486777,fr,2,3.950000E+00,7.398020E+00,4.623581E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.999560E+01,0.000000E+00 +486778,fr,1,3.950000E+00,7.398020E+00,4.623581E+01,1.500000E+01,Active Shallow Crust,1.289005E+02,8.999560E+01,0.000000E+00 +486780,fr,7,4.050000E+00,7.398020E+00,4.623581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998824E+01,0.000000E+00 +486781,fr,1,4.050000E+00,7.398020E+00,4.623581E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998824E+01,0.000000E+00 +486782,fr,2,4.050000E+00,7.398020E+00,4.623581E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998824E+01,0.000000E+00 +486783,fr,2,4.050000E+00,7.398020E+00,4.623581E+01,5.000000E+00,Active Shallow Crust,2.400061E+02,5.800548E+01,0.000000E+00 +486786,fr,1,4.050000E+00,7.398020E+00,4.623581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998810E+01,-9.000000E+01 +486790,fr,1,4.050000E+00,7.398020E+00,4.623581E+01,1.500000E+01,Active Shallow Crust,1.288902E+02,8.999412E+01,0.000000E+00 +486792,fr,8,4.150000E+00,7.398020E+00,4.623581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +486793,fr,2,4.150000E+00,7.398020E+00,4.623581E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +486794,fr,1,4.150000E+00,7.398020E+00,4.623581E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +486795,fr,1,4.150000E+00,7.398020E+00,4.623581E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.799729E+01,0.000000E+00 +486798,fr,1,4.150000E+00,7.398020E+00,4.623581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998939E+01,-9.000000E+01 +486801,fr,2,4.150000E+00,7.398020E+00,4.623581E+01,5.000000E+00,Active Shallow Crust,1.288978E+02,8.999301E+01,0.000000E+00 +486804,fr,4,4.250000E+00,7.398020E+00,4.623581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +486805,fr,2,4.250000E+00,7.398020E+00,4.623581E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +486807,fr,1,4.250000E+00,7.398020E+00,4.623581E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799380E+01,0.000000E+00 +486811,fr,1,4.250000E+00,7.398020E+00,4.623581E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,-9.000000E+01 +486816,fr,1,4.350000E+00,7.398020E+00,4.623581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998889E+01,0.000000E+00 +486817,fr,3,4.350000E+00,7.398020E+00,4.623581E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998889E+01,0.000000E+00 +486820,fr,1,4.350000E+00,7.398020E+00,4.623581E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.799562E+01,0.000000E+00 +486828,fr,5,4.450000E+00,7.398020E+00,4.623581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +486829,fr,2,4.450000E+00,7.398020E+00,4.623581E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +486832,fr,2,4.450000E+00,7.398020E+00,4.623581E+01,1.500000E+01,Active Shallow Crust,2.400052E+02,5.799435E+01,0.000000E+00 +486834,fr,1,4.450000E+00,7.398020E+00,4.623581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +486835,fr,1,4.450000E+00,7.398020E+00,4.623581E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +486837,fr,1,4.450000E+00,7.398020E+00,4.623581E+01,5.000000E+00,Active Shallow Crust,1.288930E+02,8.999258E+01,0.000000E+00 +486840,fr,2,4.550000E+00,7.398020E+00,4.623581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998897E+01,0.000000E+00 +486842,fr,1,4.550000E+00,7.398020E+00,4.623581E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998897E+01,0.000000E+00 +486845,fr,1,4.550000E+00,7.398020E+00,4.623581E+01,2.750000E+01,Active Shallow Crust,2.400094E+02,5.799733E+01,0.000000E+00 +486846,fr,1,4.550000E+00,7.398020E+00,4.623581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,-9.000000E+01 +486852,fr,4,4.650000E+00,7.398020E+00,4.623581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +486854,fr,1,4.650000E+00,7.398020E+00,4.623581E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +486864,fr,1,4.750000E+00,7.398020E+00,4.623581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +486865,fr,1,4.750000E+00,7.398020E+00,4.623581E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +486866,fr,1,4.750000E+00,7.398020E+00,4.623581E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +486876,fr,1,4.850000E+00,7.398020E+00,4.623581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +486878,fr,1,4.850000E+00,7.398020E+00,4.623581E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +486882,fr,1,4.850000E+00,7.398020E+00,4.623581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,-9.000000E+01 +486886,fr,1,4.850000E+00,7.398020E+00,4.623581E+01,1.500000E+01,Active Shallow Crust,1.288930E+02,8.998902E+01,0.000000E+00 +486897,fr,1,4.950000E+00,7.398020E+00,4.623581E+01,5.000000E+00,Active Shallow Crust,1.288903E+02,8.998981E+01,0.000000E+00 +486900,fr,2,5.050000E+00,7.398020E+00,4.623581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +486904,fr,1,5.050000E+00,7.398020E+00,4.623581E+01,1.500000E+01,Active Shallow Crust,2.400218E+02,5.799760E+01,0.000000E+00 +486905,fr,1,5.050000E+00,7.398020E+00,4.623581E+01,2.750000E+01,Active Shallow Crust,2.400218E+02,5.799760E+01,0.000000E+00 +486912,fr,1,5.150000E+00,7.398020E+00,4.623581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +486931,fr,1,5.250000E+00,7.398020E+00,4.623581E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +487032,fr,1,6.150000E+00,7.398022E+00,4.623581E+01,6.011322E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +487035,fr,1,6.150000E+00,7.397622E+00,4.623629E+01,5.097890E+00,Active Shallow Crust,2.400645E+02,5.799996E+01,0.000000E+00 +487200,fr,1,3.550000E+00,1.547280E+00,4.130803E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +487202,fr,1,3.550000E+00,1.547280E+00,4.130803E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +487206,fr,1,3.550000E+00,1.547280E+00,4.130803E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,-9.000000E+01 +487209,fr,1,3.550000E+00,1.547280E+00,4.130803E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999337E+01,0.000000E+00 +487212,fr,1,3.650000E+00,1.547280E+00,4.130803E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +487213,fr,1,3.650000E+00,1.547280E+00,4.130803E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +487214,fr,1,3.650000E+00,1.547280E+00,4.130803E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +487218,fr,1,3.650000E+00,1.547280E+00,4.130803E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,-9.000000E+01 +487225,fr,1,3.750000E+00,1.547280E+00,4.130803E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +487236,fr,1,3.850000E+00,1.547280E+00,4.130803E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +487240,fr,1,3.850000E+00,1.547280E+00,4.130803E+01,1.500000E+01,Active Shallow Crust,2.400103E+02,5.799754E+01,0.000000E+00 +487249,fr,1,3.950000E+00,1.547280E+00,4.130803E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +487260,fr,1,4.050000E+00,1.547280E+00,4.130803E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +487265,fr,1,4.050000E+00,1.547280E+00,4.130803E+01,2.750000E+01,Active Shallow Crust,2.400053E+02,5.800568E+01,0.000000E+00 +487271,fr,1,4.050000E+00,1.547280E+00,4.130803E+01,2.750000E+01,Active Shallow Crust,1.288909E+02,8.999414E+01,0.000000E+00 +487282,fr,1,4.150000E+00,1.547280E+00,4.130803E+01,1.500000E+01,Active Shallow Crust,1.288984E+02,8.999383E+01,0.000000E+00 +487284,fr,1,4.250000E+00,1.547280E+00,4.130803E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +487303,fr,1,4.350000E+00,1.547280E+00,4.130803E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,-9.000000E+01 +487404,fr,1,5.250000E+00,1.547280E+00,4.130803E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +487680,fr,1,3.550000E+00,-4.081480E+00,4.755979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999319E+01,0.000000E+00 +487681,fr,1,3.550000E+00,-4.081480E+00,4.755979E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999319E+01,0.000000E+00 +487692,fr,1,3.650000E+00,-4.081480E+00,4.755979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998787E+01,0.000000E+00 +487698,fr,1,3.650000E+00,-4.081480E+00,4.755979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998773E+01,-9.000000E+01 +487728,fr,1,3.950000E+00,-4.081480E+00,4.755979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999141E+01,0.000000E+00 +487735,fr,1,3.950000E+00,-4.081480E+00,4.755979E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999131E+01,-9.000000E+01 +488160,fr,1,3.550000E+00,4.887320E+00,4.605004E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999300E+01,0.000000E+00 +488173,fr,1,3.650000E+00,4.887320E+00,4.605004E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998753E+01,0.000000E+00 +488184,fr,1,3.750000E+00,4.887320E+00,4.605004E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +488185,fr,2,3.750000E+00,4.887320E+00,4.605004E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +488197,fr,1,3.850000E+00,4.887320E+00,4.605004E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +488220,fr,1,4.050000E+00,4.887320E+00,4.605004E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998819E+01,0.000000E+00 +488221,fr,1,4.050000E+00,4.887320E+00,4.605004E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998819E+01,0.000000E+00 +488232,fr,1,4.150000E+00,4.887320E+00,4.605004E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +488282,fr,1,4.550000E+00,4.887320E+00,4.605004E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998893E+01,0.000000E+00 +488364,fr,1,5.250000E+00,4.887320E+00,4.605004E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +488640,fr,2,3.550000E+00,-2.923600E-01,4.734840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +488641,fr,1,3.550000E+00,-2.923600E-01,4.734840E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +488643,fr,1,3.550000E+00,-2.923600E-01,4.734840E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799818E+01,0.000000E+00 +488646,fr,1,3.550000E+00,-2.923600E-01,4.734840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +488647,fr,2,3.550000E+00,-2.923600E-01,4.734840E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +488666,fr,1,3.750000E+00,-2.923600E-01,4.734840E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +488668,fr,1,3.750000E+00,-2.923600E-01,4.734840E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.801761E+01,0.000000E+00 +488692,fr,1,3.950000E+00,-2.923600E-01,4.734840E+01,1.500000E+01,Active Shallow Crust,2.400199E+02,5.800502E+01,0.000000E+00 +488694,fr,1,3.950000E+00,-2.923600E-01,4.734840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +488700,fr,1,4.050000E+00,-2.923600E-01,4.734840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +488701,fr,2,4.050000E+00,-2.923600E-01,4.734840E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +488712,fr,1,4.150000E+00,-2.923600E-01,4.734840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +488724,fr,2,4.250000E+00,-2.923600E-01,4.734840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +488736,fr,1,4.350000E+00,-2.923600E-01,4.734840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +488748,fr,1,4.450000E+00,-2.923600E-01,4.734840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +488764,fr,1,4.550000E+00,-2.923600E-01,4.734840E+01,1.500000E+01,Active Shallow Crust,2.400096E+02,5.799741E+01,0.000000E+00 +488770,fr,1,4.550000E+00,-2.923600E-01,4.734840E+01,1.500000E+01,Active Shallow Crust,1.288936E+02,8.998579E+01,0.000000E+00 +488808,fr,2,4.950000E+00,-2.923600E-01,4.734840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +488809,fr,1,4.950000E+00,-2.923600E-01,4.734840E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +488856,fr,1,5.350000E+00,-2.923600E-01,4.734840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +489120,fr,2,3.550000E+00,6.748290E+00,4.834619E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999330E+01,0.000000E+00 +489154,fr,1,3.750000E+00,6.748290E+00,4.834619E+01,1.500000E+01,Active Shallow Crust,1.288974E+02,8.996698E+01,0.000000E+00 +489162,fr,1,3.850000E+00,6.748290E+00,4.834619E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,-9.000000E+01 +489207,fr,1,4.250000E+00,6.748290E+00,4.834619E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799435E+01,0.000000E+00 +489369,fr,1,5.550000E+00,6.748290E+00,4.834619E+01,5.000000E+00,Active Shallow Crust,1.288748E+02,8.998972E+01,0.000000E+00 +489409,fr,1,5.950000E+00,6.748290E+00,4.834619E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +489600,fr,3,3.550000E+00,7.744490E+00,4.614447E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999301E+01,0.000000E+00 +489602,fr,1,3.550000E+00,7.744490E+00,4.614447E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999301E+01,0.000000E+00 +489603,fr,1,3.550000E+00,7.744490E+00,4.614447E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799785E+01,0.000000E+00 +489604,fr,2,3.550000E+00,7.744490E+00,4.614447E+01,1.500000E+01,Active Shallow Crust,2.400125E+02,5.799785E+01,0.000000E+00 +489607,fr,1,3.550000E+00,7.744490E+00,4.614447E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999294E+01,-9.000000E+01 +489609,fr,1,3.550000E+00,7.744490E+00,4.614447E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.999301E+01,0.000000E+00 +489611,fr,1,3.550000E+00,7.744490E+00,4.614447E+01,2.750000E+01,Active Shallow Crust,1.288966E+02,8.999301E+01,0.000000E+00 +489612,fr,7,3.650000E+00,7.744490E+00,4.614447E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998755E+01,0.000000E+00 +489613,fr,1,3.650000E+00,7.744490E+00,4.614447E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998755E+01,0.000000E+00 +489614,fr,3,3.650000E+00,7.744490E+00,4.614447E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998755E+01,0.000000E+00 +489615,fr,4,3.650000E+00,7.744490E+00,4.614447E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801293E+01,0.000000E+00 +489618,fr,2,3.650000E+00,7.744490E+00,4.614447E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998740E+01,-9.000000E+01 +489621,fr,1,3.650000E+00,7.744490E+00,4.614447E+01,5.000000E+00,Active Shallow Crust,1.288999E+02,8.996352E+01,0.000000E+00 +489624,fr,5,3.750000E+00,7.744490E+00,4.614447E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998890E+01,0.000000E+00 +489625,fr,1,3.750000E+00,7.744490E+00,4.614447E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998890E+01,0.000000E+00 +489626,fr,1,3.750000E+00,7.744490E+00,4.614447E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998890E+01,0.000000E+00 +489627,fr,1,3.750000E+00,7.744490E+00,4.614447E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.801751E+01,0.000000E+00 +489634,fr,1,3.750000E+00,7.744490E+00,4.614447E+01,1.500000E+01,Active Shallow Crust,1.288973E+02,8.996690E+01,0.000000E+00 +489636,fr,4,3.850000E+00,7.744490E+00,4.614447E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +489641,fr,1,3.850000E+00,7.744490E+00,4.614447E+01,2.750000E+01,Active Shallow Crust,2.400112E+02,5.799829E+01,0.000000E+00 +489642,fr,1,3.850000E+00,7.744490E+00,4.614447E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +489643,fr,2,3.850000E+00,7.744490E+00,4.614447E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +489648,fr,3,3.950000E+00,7.744490E+00,4.614447E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999118E+01,0.000000E+00 +489649,fr,1,3.950000E+00,7.744490E+00,4.614447E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999118E+01,0.000000E+00 +489658,fr,1,3.950000E+00,7.744490E+00,4.614447E+01,1.500000E+01,Active Shallow Crust,1.288996E+02,8.999339E+01,0.000000E+00 +489660,fr,8,4.050000E+00,7.744490E+00,4.614447E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998821E+01,0.000000E+00 +489661,fr,2,4.050000E+00,7.744490E+00,4.614447E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998821E+01,0.000000E+00 +489663,fr,1,4.050000E+00,7.744490E+00,4.614447E+01,5.000000E+00,Active Shallow Crust,2.400051E+02,5.800643E+01,0.000000E+00 +489666,fr,2,4.050000E+00,7.744490E+00,4.614447E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998808E+01,-9.000000E+01 +489669,fr,1,4.050000E+00,7.744490E+00,4.614447E+01,5.000000E+00,Active Shallow Crust,1.288906E+02,8.999411E+01,0.000000E+00 +489672,fr,3,4.150000E+00,7.744490E+00,4.614447E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +489673,fr,1,4.150000E+00,7.744490E+00,4.614447E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +489674,fr,1,4.150000E+00,7.744490E+00,4.614447E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +489675,fr,2,4.150000E+00,7.744490E+00,4.614447E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799772E+01,0.000000E+00 +489678,fr,2,4.150000E+00,7.744490E+00,4.614447E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998937E+01,-9.000000E+01 +489684,fr,1,4.250000E+00,7.744490E+00,4.614447E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +489685,fr,1,4.250000E+00,7.744490E+00,4.614447E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +489688,fr,1,4.250000E+00,7.744490E+00,4.614447E+01,1.500000E+01,Active Shallow Crust,2.400075E+02,5.799434E+01,0.000000E+00 +489696,fr,2,4.350000E+00,7.744490E+00,4.614447E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +489697,fr,1,4.350000E+00,7.744490E+00,4.614447E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +489699,fr,1,4.350000E+00,7.744490E+00,4.614447E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799612E+01,0.000000E+00 +489705,fr,1,4.350000E+00,7.744490E+00,4.614447E+01,5.000000E+00,Active Shallow Crust,1.288984E+02,8.998251E+01,0.000000E+00 +489709,fr,1,4.450000E+00,7.744490E+00,4.614447E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +489711,fr,1,4.450000E+00,7.744490E+00,4.614447E+01,5.000000E+00,Active Shallow Crust,2.400049E+02,5.799466E+01,0.000000E+00 +489714,fr,1,4.450000E+00,7.744490E+00,4.614447E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +489717,fr,1,4.450000E+00,7.744490E+00,4.614447E+01,5.000000E+00,Active Shallow Crust,1.288916E+02,8.999380E+01,0.000000E+00 +489723,fr,2,4.550000E+00,7.744490E+00,4.614447E+01,5.000000E+00,Active Shallow Crust,2.400092E+02,5.799741E+01,0.000000E+00 +489733,fr,1,4.650000E+00,7.744490E+00,4.614447E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +489738,fr,1,4.650000E+00,7.744490E+00,4.614447E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +489744,fr,1,4.750000E+00,7.744490E+00,4.614447E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +489746,fr,1,4.750000E+00,7.744490E+00,4.614447E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +489747,fr,1,4.750000E+00,7.744490E+00,4.614447E+01,5.000000E+00,Active Shallow Crust,2.400075E+02,5.800423E+01,0.000000E+00 +489765,fr,1,4.850000E+00,7.744490E+00,4.614447E+01,5.000000E+00,Active Shallow Crust,1.288926E+02,8.998901E+01,0.000000E+00 +489768,fr,1,4.950000E+00,7.744490E+00,4.614447E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +489771,fr,1,4.950000E+00,7.744490E+00,4.614447E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.800451E+01,0.000000E+00 +489781,fr,1,5.050000E+00,7.744490E+00,4.614447E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +489792,fr,1,5.150000E+00,7.744490E+00,4.614447E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +489804,fr,1,5.250000E+00,7.744490E+00,4.614447E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +489815,fr,1,5.250000E+00,7.744490E+00,4.614447E+01,2.750000E+01,Active Shallow Crust,1.288832E+02,8.998716E+01,0.000000E+00 +489924,fr,1,6.250000E+00,7.744494E+00,4.614447E+01,6.744814E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +489948,fr,1,6.450000E+00,7.744498E+00,4.614447E+01,8.491219E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +490560,fr,3,3.550000E+00,1.466450E+00,4.652966E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +490569,fr,1,3.550000E+00,1.466450E+00,4.652966E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999393E+01,0.000000E+00 +490572,fr,4,3.650000E+00,1.466450E+00,4.652966E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +490573,fr,1,3.650000E+00,1.466450E+00,4.652966E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +490584,fr,1,3.750000E+00,1.466450E+00,4.652966E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +490588,fr,1,3.750000E+00,1.466450E+00,4.652966E+01,1.500000E+01,Active Shallow Crust,2.400082E+02,5.801743E+01,0.000000E+00 +490593,fr,1,3.750000E+00,1.466450E+00,4.652966E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996737E+01,0.000000E+00 +490596,fr,1,3.850000E+00,1.466450E+00,4.652966E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +490608,fr,1,3.950000E+00,1.466450E+00,4.652966E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +490609,fr,1,3.950000E+00,1.466450E+00,4.652966E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +490627,fr,1,4.050000E+00,1.466450E+00,4.652966E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +490632,fr,1,4.150000E+00,1.466450E+00,4.652966E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +490633,fr,1,4.150000E+00,1.466450E+00,4.652966E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +490656,fr,1,4.350000E+00,1.466450E+00,4.652966E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +490717,fr,1,4.850000E+00,1.466450E+00,4.652966E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +490767,fr,1,5.250000E+00,1.466450E+00,4.652966E+01,5.000000E+00,Active Shallow Crust,2.400255E+02,5.800026E+01,0.000000E+00 +490776,fr,1,5.350000E+00,1.466450E+00,4.652966E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +491040,fr,1,3.550000E+00,4.162350E+00,4.211242E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999252E+01,0.000000E+00 +491056,fr,1,3.650000E+00,4.162350E+00,4.211242E+01,1.500000E+01,Active Shallow Crust,2.399998E+02,5.801291E+01,0.000000E+00 +491064,fr,1,3.750000E+00,4.162350E+00,4.211242E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998811E+01,0.000000E+00 +491341,fr,1,6.050000E+00,4.162350E+00,4.211242E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +491520,fr,1,3.550000E+00,1.938730E+00,4.137205E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +491524,fr,1,3.550000E+00,1.938730E+00,4.137205E+01,1.500000E+01,Active Shallow Crust,2.400119E+02,5.799778E+01,0.000000E+00 +491526,fr,1,3.550000E+00,1.938730E+00,4.137205E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,-9.000000E+01 +491532,fr,1,3.650000E+00,1.938730E+00,4.137205E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +491533,fr,1,3.650000E+00,1.938730E+00,4.137205E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +491537,fr,1,3.650000E+00,1.938730E+00,4.137205E+01,2.750000E+01,Active Shallow Crust,2.400004E+02,5.801288E+01,0.000000E+00 +491538,fr,1,3.650000E+00,1.938730E+00,4.137205E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,-9.000000E+01 +491568,fr,1,3.950000E+00,1.938730E+00,4.137205E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +491569,fr,1,3.950000E+00,1.938730E+00,4.137205E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +491580,fr,3,4.050000E+00,1.938730E+00,4.137205E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +491628,fr,3,4.450000E+00,1.938730E+00,4.137205E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +491634,fr,1,4.450000E+00,1.938730E+00,4.137205E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,-9.000000E+01 +491652,fr,1,4.650000E+00,1.938730E+00,4.137205E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +491688,fr,1,4.950000E+00,1.938730E+00,4.137205E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +491736,fr,2,5.350000E+00,1.938730E+00,4.137205E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +492000,fr,3,3.550000E+00,-3.586960E+00,4.856120E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +492002,fr,1,3.550000E+00,-3.586960E+00,4.856120E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +492004,fr,1,3.550000E+00,-3.586960E+00,4.856120E+01,1.500000E+01,Active Shallow Crust,2.400130E+02,5.799817E+01,0.000000E+00 +492006,fr,1,3.550000E+00,-3.586960E+00,4.856120E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +492016,fr,1,3.650000E+00,-3.586960E+00,4.856120E+01,1.500000E+01,Active Shallow Crust,2.400012E+02,5.801302E+01,0.000000E+00 +492024,fr,1,3.750000E+00,-3.586960E+00,4.856120E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +492025,fr,1,3.750000E+00,-3.586960E+00,4.856120E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +492039,fr,1,3.850000E+00,-3.586960E+00,4.856120E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799802E+01,0.000000E+00 +492072,fr,1,4.150000E+00,-3.586960E+00,4.856120E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +492097,fr,1,4.350000E+00,-3.586960E+00,4.856120E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +492120,fr,1,4.550000E+00,-3.586960E+00,4.856120E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +492169,fr,1,4.950000E+00,-3.586960E+00,4.856120E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +492528,fr,1,3.950000E+00,-5.959510E+00,4.845396E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999156E+01,0.000000E+00 +492531,fr,1,3.950000E+00,-5.959510E+00,4.845396E+01,5.000000E+00,Active Shallow Crust,2.400198E+02,5.800500E+01,0.000000E+00 +492624,fr,1,4.750000E+00,-5.959510E+00,4.845396E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +492972,fr,1,3.650000E+00,4.295800E-01,4.348372E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +492984,fr,1,3.750000E+00,4.295800E-01,4.348372E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +492993,fr,1,3.750000E+00,4.295800E-01,4.348372E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996734E+01,0.000000E+00 +493057,fr,1,4.350000E+00,4.295800E-01,4.348372E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +493110,fr,1,4.750000E+00,4.295800E-01,4.348372E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +493449,fr,1,3.550000E+00,1.918330E+00,4.522171E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999378E+01,0.000000E+00 +493452,fr,1,3.650000E+00,1.918330E+00,4.522171E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +493477,fr,1,3.850000E+00,1.918330E+00,4.522171E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +493530,fr,1,4.250000E+00,1.918330E+00,4.522171E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,-9.000000E+01 +493585,fr,1,4.750000E+00,1.918330E+00,4.522171E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +493920,fr,1,3.550000E+00,2.100430E+00,4.590161E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +493921,fr,2,3.550000E+00,2.100430E+00,4.590161E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +493932,fr,1,3.650000E+00,2.100430E+00,4.590161E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +493941,fr,1,3.650000E+00,2.100430E+00,4.590161E+01,5.000000E+00,Active Shallow Crust,1.289014E+02,8.996352E+01,0.000000E+00 +493944,fr,1,3.750000E+00,2.100430E+00,4.590161E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +493945,fr,1,3.750000E+00,2.100430E+00,4.590161E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +493947,fr,1,3.750000E+00,2.100430E+00,4.590161E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801754E+01,0.000000E+00 +493957,fr,2,3.850000E+00,2.100430E+00,4.590161E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +493968,fr,1,3.950000E+00,2.100430E+00,4.590161E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998893E+01,0.000000E+00 +493980,fr,1,4.050000E+00,2.100430E+00,4.590161E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +493983,fr,1,4.050000E+00,2.100430E+00,4.590161E+01,5.000000E+00,Active Shallow Crust,2.400058E+02,5.800612E+01,0.000000E+00 +494001,fr,1,4.150000E+00,2.100430E+00,4.590161E+01,5.000000E+00,Active Shallow Crust,1.288978E+02,8.999384E+01,0.000000E+00 +494004,fr,1,4.250000E+00,2.100430E+00,4.590161E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +494019,fr,1,4.350000E+00,2.100430E+00,4.590161E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799591E+01,0.000000E+00 +494046,fr,1,4.550000E+00,2.100430E+00,4.590161E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,-9.000000E+01 +494121,fr,1,5.150000E+00,2.100430E+00,4.590161E+01,5.000000E+00,Active Shallow Crust,1.288840E+02,8.999115E+01,0.000000E+00 +494124,fr,1,5.250000E+00,2.100430E+00,4.590161E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +494401,fr,1,3.550000E+00,1.051350E+00,5.111564E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +494424,fr,1,3.750000E+00,1.051350E+00,5.111564E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +494425,fr,1,3.750000E+00,1.051350E+00,5.111564E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +494436,fr,1,3.850000E+00,1.051350E+00,5.111564E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +494449,fr,1,3.950000E+00,1.051350E+00,5.111564E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +494496,fr,2,4.350000E+00,1.051350E+00,5.111564E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +494542,fr,1,4.650000E+00,1.051350E+00,5.111564E+01,1.500000E+01,Active Shallow Crust,1.288896E+02,8.998703E+01,0.000000E+00 +494880,fr,1,3.550000E+00,-2.634000E+00,4.796991E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +494892,fr,1,3.650000E+00,-2.634000E+00,4.796991E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +494904,fr,1,3.750000E+00,-2.634000E+00,4.796991E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +494906,fr,2,3.750000E+00,-2.634000E+00,4.796991E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +494907,fr,1,3.750000E+00,-2.634000E+00,4.796991E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.801761E+01,0.000000E+00 +494916,fr,1,3.850000E+00,-2.634000E+00,4.796991E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +494937,fr,1,3.950000E+00,-2.634000E+00,4.796991E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.999361E+01,0.000000E+00 +494940,fr,1,4.050000E+00,-2.634000E+00,4.796991E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +494952,fr,1,4.150000E+00,-2.634000E+00,4.796991E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +494964,fr,2,4.250000E+00,-2.634000E+00,4.796991E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +494965,fr,1,4.250000E+00,-2.634000E+00,4.796991E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +494988,fr,2,4.450000E+00,-2.634000E+00,4.796991E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +495000,fr,2,4.550000E+00,-2.634000E+00,4.796991E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +495012,fr,1,4.650000E+00,-2.634000E+00,4.796991E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +495110,fr,1,5.450000E+00,-2.634000E+00,4.796991E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +495384,fr,1,3.750000E+00,-2.359710E+00,4.526716E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +495864,fr,1,3.750000E+00,2.594670E+00,4.334723E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +495865,fr,1,3.750000E+00,2.594670E+00,4.334723E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +495888,fr,1,3.950000E+00,2.594670E+00,4.334723E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +495905,fr,1,4.050000E+00,2.594670E+00,4.334723E+01,2.750000E+01,Active Shallow Crust,2.400053E+02,5.800581E+01,0.000000E+00 +495969,fr,1,4.550000E+00,2.594670E+00,4.334723E+01,5.000000E+00,Active Shallow Crust,1.288949E+02,8.998574E+01,0.000000E+00 +495972,fr,1,4.650000E+00,2.594670E+00,4.334723E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +496488,fr,1,4.950000E+00,9.417340E+00,5.002020E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +496800,fr,2,3.550000E+00,7.852860E+00,5.023196E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998710E+01,0.000000E+00 +496803,fr,2,3.550000E+00,7.852860E+00,5.023196E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799812E+01,0.000000E+00 +496812,fr,3,3.650000E+00,7.852860E+00,5.023196E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998850E+01,0.000000E+00 +496821,fr,1,3.650000E+00,7.852860E+00,5.023196E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.996359E+01,0.000000E+00 +496825,fr,1,3.750000E+00,7.852860E+00,5.023196E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +496828,fr,1,3.750000E+00,7.852860E+00,5.023196E+01,1.500000E+01,Active Shallow Crust,2.400091E+02,5.801719E+01,0.000000E+00 +496849,fr,1,3.950000E+00,7.852860E+00,5.023196E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999186E+01,0.000000E+00 +496851,fr,1,3.950000E+00,7.852860E+00,5.023196E+01,5.000000E+00,Active Shallow Crust,2.400196E+02,5.800570E+01,0.000000E+00 +496857,fr,1,3.950000E+00,7.852860E+00,5.023196E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.999186E+01,0.000000E+00 +496860,fr,2,4.050000E+00,7.852860E+00,5.023196E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998912E+01,0.000000E+00 +496866,fr,1,4.050000E+00,7.852860E+00,5.023196E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998899E+01,-9.000000E+01 +496873,fr,1,4.150000E+00,7.852860E+00,5.023196E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +496878,fr,1,4.150000E+00,7.852860E+00,5.023196E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,-9.000000E+01 +496882,fr,1,4.150000E+00,7.852860E+00,5.023196E+01,1.500000E+01,Active Shallow Crust,1.288975E+02,8.999354E+01,0.000000E+00 +496884,fr,1,4.250000E+00,7.852860E+00,5.023196E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999136E+01,0.000000E+00 +496908,fr,1,4.450000E+00,7.852860E+00,5.023196E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +496911,fr,1,4.450000E+00,7.852860E+00,5.023196E+01,5.000000E+00,Active Shallow Crust,2.400068E+02,5.799463E+01,0.000000E+00 +496924,fr,1,4.550000E+00,7.852860E+00,5.023196E+01,1.500000E+01,Active Shallow Crust,2.400107E+02,5.799748E+01,0.000000E+00 +497292,fr,1,3.650000E+00,-7.407300E-01,5.103273E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +497314,fr,1,3.750000E+00,-7.407300E-01,5.103273E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.996735E+01,0.000000E+00 +497760,fr,1,3.550000E+00,2.564470E+00,5.077814E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +497762,fr,1,3.550000E+00,2.564470E+00,5.077814E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +497768,fr,1,3.550000E+00,2.564470E+00,5.077814E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,-9.000000E+01 +497772,fr,1,3.650000E+00,2.564470E+00,5.077814E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998863E+01,0.000000E+00 +497775,fr,2,3.650000E+00,2.564470E+00,5.077814E+01,5.000000E+00,Active Shallow Crust,2.400018E+02,5.801255E+01,0.000000E+00 +497784,fr,1,3.750000E+00,2.564470E+00,5.077814E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +497796,fr,2,3.850000E+00,2.564470E+00,5.077814E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +497805,fr,1,3.850000E+00,2.564470E+00,5.077814E+01,5.000000E+00,Active Shallow Crust,1.288951E+02,8.999323E+01,0.000000E+00 +497808,fr,1,3.950000E+00,2.564470E+00,5.077814E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +497953,fr,1,5.150000E+00,2.564470E+00,5.077814E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +498240,fr,1,3.550000E+00,5.015290E+00,4.786886E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999323E+01,0.000000E+00 +498253,fr,1,3.650000E+00,5.015290E+00,4.786886E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998795E+01,0.000000E+00 +498288,fr,1,3.950000E+00,5.015290E+00,4.786886E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999146E+01,0.000000E+00 +498300,fr,1,4.050000E+00,5.015290E+00,4.786886E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +498311,fr,1,4.050000E+00,5.015290E+00,4.786886E+01,2.750000E+01,Active Shallow Crust,1.288914E+02,8.999239E+01,0.000000E+00 +498312,fr,1,4.150000E+00,5.015290E+00,4.786886E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +498325,fr,1,4.250000E+00,5.015290E+00,4.786886E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +498348,fr,1,4.450000E+00,5.015290E+00,4.786886E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +498432,fr,1,5.150000E+00,5.015290E+00,4.786886E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +498720,fr,1,3.550000E+00,3.736900E+00,5.093270E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +498731,fr,1,3.550000E+00,3.736900E+00,5.093270E+01,2.750000E+01,Active Shallow Crust,1.288954E+02,8.999364E+01,0.000000E+00 +498733,fr,1,3.650000E+00,3.736900E+00,5.093270E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998867E+01,0.000000E+00 +498738,fr,1,3.650000E+00,3.736900E+00,5.093270E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999140E+01,-9.000000E+01 +498744,fr,1,3.750000E+00,3.736900E+00,5.093270E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +498748,fr,1,3.750000E+00,3.736900E+00,5.093270E+01,1.500000E+01,Active Shallow Crust,2.400094E+02,5.801756E+01,0.000000E+00 +498753,fr,1,3.750000E+00,3.736900E+00,5.093270E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.996735E+01,0.000000E+00 +498767,fr,1,3.850000E+00,3.736900E+00,5.093270E+01,2.750000E+01,Active Shallow Crust,1.288952E+02,8.999438E+01,0.000000E+00 +498768,fr,1,3.950000E+00,3.736900E+00,5.093270E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +499204,fr,1,3.550000E+00,3.744640E+00,4.029399E+01,1.500000E+01,Active Shallow Crust,2.400114E+02,5.799823E+01,0.000000E+00 +499272,fr,1,4.150000E+00,3.744640E+00,4.029399E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +499284,fr,1,4.250000E+00,3.744640E+00,4.029399E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +499694,fr,1,3.650000E+00,-2.073490E+00,4.625376E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +499697,fr,1,3.650000E+00,-2.073490E+00,4.625376E+01,2.750000E+01,Active Shallow Crust,2.400007E+02,5.801311E+01,0.000000E+00 +499716,fr,1,3.850000E+00,-2.073490E+00,4.625376E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +499791,fr,1,4.450000E+00,-2.073490E+00,4.625376E+01,5.000000E+00,Active Shallow Crust,2.400051E+02,5.799460E+01,0.000000E+00 +500700,fr,1,4.050000E+00,-6.388270E+00,4.936478E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998892E+01,0.000000E+00 +501132,fr,1,3.650000E+00,3.865000E+00,4.017492E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +501163,fr,1,3.850000E+00,3.865000E+00,4.017492E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998897E+01,-9.000000E+01 +501170,fr,1,3.950000E+00,3.865000E+00,4.017492E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +501600,fr,2,3.550000E+00,2.316240E+00,4.317026E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998897E+01,0.000000E+00 +501601,fr,1,3.550000E+00,2.316240E+00,4.317026E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998897E+01,0.000000E+00 +501612,fr,1,3.650000E+00,2.316240E+00,4.317026E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +501618,fr,1,3.650000E+00,2.316240E+00,4.317026E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,-9.000000E+01 +501650,fr,1,3.950000E+00,2.316240E+00,4.317026E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +501663,fr,1,4.050000E+00,2.316240E+00,4.317026E+01,5.000000E+00,Active Shallow Crust,2.400056E+02,5.800552E+01,0.000000E+00 +501666,fr,1,4.050000E+00,2.316240E+00,4.317026E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,-9.000000E+01 +501672,fr,1,4.150000E+00,2.316240E+00,4.317026E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +501720,fr,1,4.550000E+00,2.316240E+00,4.317026E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +502081,fr,1,3.550000E+00,9.619800E-01,4.849313E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +502092,fr,1,3.650000E+00,9.619800E-01,4.849313E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +502104,fr,1,3.750000E+00,9.619800E-01,4.849313E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +502105,fr,1,3.750000E+00,9.619800E-01,4.849313E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +502231,fr,1,4.750000E+00,9.619800E-01,4.849313E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +502284,fr,1,5.250000E+00,9.619800E-01,4.849313E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +502560,fr,1,3.550000E+00,3.032570E+00,4.208098E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +502561,fr,1,3.550000E+00,3.032570E+00,4.208098E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +502566,fr,1,3.550000E+00,3.032570E+00,4.208098E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998865E+01,-9.000000E+01 +502586,fr,1,3.750000E+00,3.032570E+00,4.208098E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999108E+01,0.000000E+00 +502609,fr,1,3.950000E+00,3.032570E+00,4.208098E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +502621,fr,1,4.050000E+00,3.032570E+00,4.208098E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +502644,fr,1,4.250000E+00,3.032570E+00,4.208098E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +502656,fr,1,4.350000E+00,3.032570E+00,4.208098E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +502657,fr,1,4.350000E+00,3.032570E+00,4.208098E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +502669,fr,2,4.450000E+00,3.032570E+00,4.208098E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +502722,fr,1,4.850000E+00,3.032570E+00,4.208098E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,-9.000000E+01 +502725,fr,1,4.850000E+00,3.032570E+00,4.208098E+01,5.000000E+00,Active Shallow Crust,1.288940E+02,8.998900E+01,0.000000E+00 +502789,fr,1,5.450000E+00,3.032570E+00,4.208098E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +503043,fr,1,3.550000E+00,1.965410E+00,4.390711E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799803E+01,0.000000E+00 +503088,fr,1,3.950000E+00,1.965410E+00,4.390711E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +503556,fr,1,3.850000E+00,-1.045320E+00,5.088474E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +503606,fr,1,4.250000E+00,-1.045320E+00,5.088474E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +504000,fr,1,3.550000E+00,1.474760E+00,4.116154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +504002,fr,1,3.550000E+00,1.474760E+00,4.116154E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +504003,fr,2,3.550000E+00,1.474760E+00,4.116154E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799831E+01,0.000000E+00 +504012,fr,2,3.650000E+00,1.474760E+00,4.116154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +504022,fr,1,3.650000E+00,1.474760E+00,4.116154E+01,1.500000E+01,Active Shallow Crust,1.289008E+02,8.996357E+01,0.000000E+00 +504024,fr,2,3.750000E+00,1.474760E+00,4.116154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +504034,fr,1,3.750000E+00,1.474760E+00,4.116154E+01,1.500000E+01,Active Shallow Crust,1.288972E+02,8.996725E+01,0.000000E+00 +504036,fr,1,3.850000E+00,1.474760E+00,4.116154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +504037,fr,1,3.850000E+00,1.474760E+00,4.116154E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +504075,fr,1,4.150000E+00,1.474760E+00,4.116154E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.799716E+01,0.000000E+00 +504079,fr,1,4.150000E+00,1.474760E+00,4.116154E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999038E+01,-9.000000E+01 +504120,fr,1,4.550000E+00,1.474760E+00,4.116154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +504217,fr,1,5.350000E+00,1.474760E+00,4.116154E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +504480,fr,1,3.550000E+00,6.945780E+00,5.074640E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998724E+01,0.000000E+00 +504481,fr,1,3.550000E+00,6.945780E+00,5.074640E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998724E+01,0.000000E+00 +504486,fr,1,3.550000E+00,6.945780E+00,5.074640E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998709E+01,-9.000000E+01 +504492,fr,1,3.650000E+00,6.945780E+00,5.074640E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +504499,fr,1,3.650000E+00,6.945780E+00,5.074640E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998849E+01,-9.000000E+01 +504505,fr,1,3.750000E+00,6.945780E+00,5.074640E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +504516,fr,1,3.850000E+00,6.945780E+00,5.074640E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +504518,fr,1,3.850000E+00,6.945780E+00,5.074640E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +504528,fr,1,3.950000E+00,6.945780E+00,5.074640E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999195E+01,0.000000E+00 +504529,fr,1,3.950000E+00,6.945780E+00,5.074640E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999195E+01,0.000000E+00 +504559,fr,1,4.150000E+00,6.945780E+00,5.074640E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,-9.000000E+01 +504567,fr,1,4.250000E+00,6.945780E+00,5.074640E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799429E+01,0.000000E+00 +504582,fr,1,4.350000E+00,6.945780E+00,5.074640E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,-9.000000E+01 +504650,fr,1,4.950000E+00,6.945780E+00,5.074640E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +504962,fr,1,3.550000E+00,-2.805600E-01,4.204541E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +504978,fr,1,3.650000E+00,-2.805600E-01,4.204541E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +505068,fr,1,4.450000E+00,-2.805600E-01,4.204541E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +505501,fr,1,4.050000E+00,3.781660E+00,4.845375E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +505548,fr,1,4.450000E+00,3.781660E+00,4.845375E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +505946,fr,1,3.750000E+00,-2.225140E+00,4.473092E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +506004,fr,1,4.250000E+00,-2.225140E+00,4.473092E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +506400,fr,4,3.550000E+00,-1.779260E+00,4.723155E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +506401,fr,1,3.550000E+00,-1.779260E+00,4.723155E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +506406,fr,1,3.550000E+00,-1.779260E+00,4.723155E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,-9.000000E+01 +506409,fr,1,3.550000E+00,-1.779260E+00,4.723155E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999401E+01,0.000000E+00 +506411,fr,1,3.550000E+00,-1.779260E+00,4.723155E+01,2.750000E+01,Active Shallow Crust,1.288960E+02,8.999401E+01,0.000000E+00 +506412,fr,1,3.650000E+00,-1.779260E+00,4.723155E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +506416,fr,1,3.650000E+00,-1.779260E+00,4.723155E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801278E+01,0.000000E+00 +506424,fr,1,3.750000E+00,-1.779260E+00,4.723155E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +506425,fr,2,3.750000E+00,-1.779260E+00,4.723155E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +506430,fr,1,3.750000E+00,-1.779260E+00,4.723155E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,-9.000000E+01 +506437,fr,1,3.850000E+00,-1.779260E+00,4.723155E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +506445,fr,1,3.850000E+00,-1.779260E+00,4.723155E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999333E+01,0.000000E+00 +506457,fr,1,3.950000E+00,-1.779260E+00,4.723155E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.999406E+01,0.000000E+00 +506460,fr,2,4.050000E+00,-1.779260E+00,4.723155E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +506461,fr,1,4.050000E+00,-1.779260E+00,4.723155E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +506472,fr,1,4.150000E+00,-1.779260E+00,4.723155E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +506496,fr,1,4.350000E+00,-1.779260E+00,4.723155E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +506511,fr,1,4.450000E+00,-1.779260E+00,4.723155E+01,5.000000E+00,Active Shallow Crust,2.400055E+02,5.799467E+01,0.000000E+00 +506532,fr,1,4.650000E+00,-1.779260E+00,4.723155E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +506537,fr,1,4.650000E+00,-1.779260E+00,4.723155E+01,2.750000E+01,Active Shallow Crust,2.400111E+02,5.799432E+01,0.000000E+00 +506604,fr,1,5.250000E+00,-1.779260E+00,4.723155E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +506698,fr,1,5.950000E+00,-1.779260E+00,4.723155E+01,1.500000E+01,Active Shallow Crust,1.288638E+02,8.999013E+01,0.000000E+00 +506881,fr,1,3.550000E+00,6.457140E+00,4.944561E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998689E+01,0.000000E+00 +506883,fr,1,3.550000E+00,6.457140E+00,4.944561E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799820E+01,0.000000E+00 +506889,fr,1,3.550000E+00,6.457140E+00,4.944561E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999345E+01,0.000000E+00 +506892,fr,1,3.650000E+00,6.457140E+00,4.944561E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998831E+01,0.000000E+00 +506913,fr,1,3.750000E+00,6.457140E+00,4.944561E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996754E+01,0.000000E+00 +506929,fr,1,3.950000E+00,6.457140E+00,4.944561E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999173E+01,0.000000E+00 +507360,fr,1,3.550000E+00,5.606190E+00,5.033273E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998713E+01,0.000000E+00 +507361,fr,1,3.550000E+00,5.606190E+00,5.033273E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998713E+01,0.000000E+00 +507362,fr,1,3.550000E+00,5.606190E+00,5.033273E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998713E+01,0.000000E+00 +507370,fr,1,3.550000E+00,5.606190E+00,5.033273E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.999356E+01,0.000000E+00 +507372,fr,3,3.650000E+00,5.606190E+00,5.033273E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998853E+01,0.000000E+00 +507373,fr,3,3.650000E+00,5.606190E+00,5.033273E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998853E+01,0.000000E+00 +507382,fr,1,3.650000E+00,5.606190E+00,5.033273E+01,1.500000E+01,Active Shallow Crust,1.288999E+02,8.996360E+01,0.000000E+00 +507384,fr,1,3.750000E+00,5.606190E+00,5.033273E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +507385,fr,1,3.750000E+00,5.606190E+00,5.033273E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +507396,fr,2,3.850000E+00,5.606190E+00,5.033273E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +507408,fr,1,3.950000E+00,5.606190E+00,5.033273E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999187E+01,0.000000E+00 +507421,fr,1,4.050000E+00,5.606190E+00,5.033273E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +507456,fr,2,4.350000E+00,5.606190E+00,5.033273E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +507457,fr,1,4.350000E+00,5.606190E+00,5.033273E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +507458,fr,1,4.350000E+00,5.606190E+00,5.033273E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +507477,fr,1,4.450000E+00,5.606190E+00,5.033273E+01,5.000000E+00,Active Shallow Crust,1.288910E+02,8.999315E+01,0.000000E+00 +507564,fr,1,5.250000E+00,5.606190E+00,5.033273E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +507840,fr,2,3.550000E+00,3.641000E-02,4.683513E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +507843,fr,2,3.550000E+00,3.641000E-02,4.683513E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799817E+01,0.000000E+00 +507850,fr,1,3.550000E+00,3.641000E-02,4.683513E+01,1.500000E+01,Active Shallow Crust,1.288962E+02,8.999372E+01,0.000000E+00 +507852,fr,1,3.650000E+00,3.641000E-02,4.683513E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +507853,fr,2,3.650000E+00,3.641000E-02,4.683513E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +507864,fr,1,3.750000E+00,3.641000E-02,4.683513E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +507869,fr,1,3.750000E+00,3.641000E-02,4.683513E+01,2.750000E+01,Active Shallow Crust,2.400084E+02,5.801757E+01,0.000000E+00 +507876,fr,2,3.850000E+00,3.641000E-02,4.683513E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +507877,fr,1,3.850000E+00,3.641000E-02,4.683513E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +507878,fr,1,3.850000E+00,3.641000E-02,4.683513E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +507879,fr,1,3.850000E+00,3.641000E-02,4.683513E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799781E+01,0.000000E+00 +507884,fr,1,3.850000E+00,3.641000E-02,4.683513E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +507888,fr,1,3.950000E+00,3.641000E-02,4.683513E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +507889,fr,1,3.950000E+00,3.641000E-02,4.683513E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +507890,fr,1,3.950000E+00,3.641000E-02,4.683513E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +507894,fr,1,3.950000E+00,3.641000E-02,4.683513E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +507899,fr,1,3.950000E+00,3.641000E-02,4.683513E+01,2.750000E+01,Active Shallow Crust,1.289003E+02,8.999373E+01,0.000000E+00 +507900,fr,1,4.050000E+00,3.641000E-02,4.683513E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +507901,fr,1,4.050000E+00,3.641000E-02,4.683513E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +507902,fr,1,4.050000E+00,3.641000E-02,4.683513E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +507940,fr,1,4.350000E+00,3.641000E-02,4.683513E+01,1.500000E+01,Active Shallow Crust,2.400085E+02,5.799595E+01,0.000000E+00 +507957,fr,1,4.450000E+00,3.641000E-02,4.683513E+01,5.000000E+00,Active Shallow Crust,1.288921E+02,8.999372E+01,0.000000E+00 +508332,fr,1,3.650000E+00,4.976940E+00,4.087154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999320E+01,0.000000E+00 +508335,fr,1,3.650000E+00,4.976940E+00,4.087154E+01,5.000000E+00,Active Shallow Crust,2.400004E+02,5.801231E+01,0.000000E+00 +508407,fr,1,4.250000E+00,4.976940E+00,4.087154E+01,5.000000E+00,Active Shallow Crust,2.400068E+02,5.799371E+01,0.000000E+00 +508408,fr,1,4.250000E+00,4.976940E+00,4.087154E+01,1.500000E+01,Active Shallow Crust,2.400068E+02,5.799371E+01,0.000000E+00 +508800,fr,1,3.550000E+00,4.102920E+00,4.735724E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999317E+01,0.000000E+00 +508812,fr,1,3.650000E+00,4.102920E+00,4.735724E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998782E+01,0.000000E+00 +508827,fr,1,3.750000E+00,4.102920E+00,4.735724E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.801696E+01,0.000000E+00 +508860,fr,1,4.050000E+00,4.102920E+00,4.735724E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998847E+01,0.000000E+00 +508863,fr,1,4.050000E+00,4.102920E+00,4.735724E+01,5.000000E+00,Active Shallow Crust,2.400065E+02,5.800551E+01,0.000000E+00 +509280,fr,1,3.550000E+00,7.103880E+00,4.826140E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999329E+01,0.000000E+00 +509292,fr,2,3.650000E+00,7.103880E+00,4.826140E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998804E+01,0.000000E+00 +509296,fr,2,3.650000E+00,7.103880E+00,4.826140E+01,1.500000E+01,Active Shallow Crust,2.400013E+02,5.801365E+01,0.000000E+00 +509304,fr,2,3.750000E+00,7.103880E+00,4.826140E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +509316,fr,1,3.850000E+00,7.103880E+00,4.826140E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +509352,fr,1,4.150000E+00,7.103880E+00,4.826140E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +509362,fr,1,4.150000E+00,7.103880E+00,4.826140E+01,1.500000E+01,Active Shallow Crust,1.288983E+02,8.999327E+01,0.000000E+00 +509364,fr,1,4.250000E+00,7.103880E+00,4.826140E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +509377,fr,1,4.350000E+00,7.103880E+00,4.826140E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +509389,fr,1,4.450000E+00,7.103880E+00,4.826140E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +509412,fr,1,4.650000E+00,7.103880E+00,4.826140E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +509425,fr,1,4.750000E+00,7.103880E+00,4.826140E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +509433,fr,1,4.750000E+00,7.103880E+00,4.826140E+01,5.000000E+00,Active Shallow Crust,1.288883E+02,8.998827E+01,0.000000E+00 +509508,fr,1,5.450000E+00,7.103880E+00,4.826140E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +509580,fr,1,6.050000E+00,7.103880E+00,4.826140E+01,5.357596E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +509772,fr,1,3.650000E+00,-1.386590E+00,4.563553E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +509820,fr,1,4.050000E+00,-1.386590E+00,4.563553E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +510240,fr,2,3.550000E+00,4.667350E+00,4.730975E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999316E+01,0.000000E+00 +510241,fr,1,3.550000E+00,4.667350E+00,4.730975E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999316E+01,0.000000E+00 +510249,fr,1,3.550000E+00,4.667350E+00,4.730975E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999316E+01,0.000000E+00 +510252,fr,1,3.650000E+00,4.667350E+00,4.730975E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998782E+01,0.000000E+00 +510253,fr,1,3.650000E+00,4.667350E+00,4.730975E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998782E+01,0.000000E+00 +510264,fr,2,3.750000E+00,4.667350E+00,4.730975E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +510267,fr,2,3.750000E+00,4.667350E+00,4.730975E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.801808E+01,0.000000E+00 +510279,fr,1,3.850000E+00,4.667350E+00,4.730975E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799834E+01,0.000000E+00 +510289,fr,1,3.950000E+00,4.667350E+00,4.730975E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999137E+01,0.000000E+00 +510726,fr,1,3.550000E+00,4.664170E+00,4.794753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999316E+01,-9.000000E+01 +510728,fr,1,3.550000E+00,4.664170E+00,4.794753E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999316E+01,-9.000000E+01 +510735,fr,1,3.650000E+00,4.664170E+00,4.794753E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801250E+01,0.000000E+00 +510738,fr,1,3.650000E+00,4.664170E+00,4.794753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998782E+01,-9.000000E+01 +510754,fr,1,3.750000E+00,4.664170E+00,4.794753E+01,1.500000E+01,Active Shallow Crust,1.288964E+02,8.996751E+01,0.000000E+00 +510808,fr,1,4.250000E+00,4.664170E+00,4.794753E+01,1.500000E+01,Active Shallow Crust,2.400076E+02,5.799468E+01,0.000000E+00 +510852,fr,1,4.650000E+00,4.664170E+00,4.794753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +511765,fr,1,4.250000E+00,-2.636410E+00,4.592545E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +512161,fr,1,3.550000E+00,2.613840E+00,5.052156E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +512172,fr,1,3.650000E+00,2.613840E+00,5.052156E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998857E+01,0.000000E+00 +512184,fr,1,3.750000E+00,2.613840E+00,5.052156E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +512187,fr,1,3.750000E+00,2.613840E+00,5.052156E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.801750E+01,0.000000E+00 +512188,fr,1,3.750000E+00,2.613840E+00,5.052156E+01,1.500000E+01,Active Shallow Crust,2.400090E+02,5.801750E+01,0.000000E+00 +512198,fr,1,3.850000E+00,2.613840E+00,5.052156E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999092E+01,0.000000E+00 +512208,fr,1,3.950000E+00,2.613840E+00,5.052156E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +512238,fr,1,4.150000E+00,2.613840E+00,5.052156E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,-9.000000E+01 +512244,fr,1,4.250000E+00,2.613840E+00,5.052156E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +512265,fr,1,4.350000E+00,2.613840E+00,5.052156E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.998272E+01,0.000000E+00 +512642,fr,1,3.550000E+00,4.940700E-01,4.766904E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +512652,fr,3,3.650000E+00,4.940700E-01,4.766904E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +512666,fr,1,3.750000E+00,4.940700E-01,4.766904E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +512685,fr,1,3.850000E+00,4.940700E-01,4.766904E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999369E+01,0.000000E+00 +512705,fr,1,4.050000E+00,4.940700E-01,4.766904E+01,2.750000E+01,Active Shallow Crust,2.400061E+02,5.800587E+01,0.000000E+00 +512796,fr,1,4.850000E+00,4.940700E-01,4.766904E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +513132,fr,1,3.650000E+00,-4.260020E+00,4.890450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998818E+01,0.000000E+00 +513144,fr,2,3.750000E+00,-4.260020E+00,4.890450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +513168,fr,1,3.950000E+00,-4.260020E+00,4.890450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999164E+01,0.000000E+00 +513180,fr,1,4.050000E+00,-4.260020E+00,4.890450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +513237,fr,1,4.450000E+00,-4.260020E+00,4.890450E+01,5.000000E+00,Active Shallow Crust,1.288913E+02,8.999412E+01,0.000000E+00 +513297,fr,1,4.950000E+00,-4.260020E+00,4.890450E+01,5.000000E+00,Active Shallow Crust,1.288885E+02,8.998999E+01,0.000000E+00 +513306,fr,1,5.050000E+00,-4.260020E+00,4.890450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,-9.000000E+01 +513336,fr,1,5.350000E+00,-4.260020E+00,4.890450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +513607,fr,1,3.550000E+00,-2.132000E-02,5.041596E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +513674,fr,1,4.150000E+00,-2.132000E-02,5.041596E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +513675,fr,1,4.150000E+00,-2.132000E-02,5.041596E+01,5.000000E+00,Active Shallow Crust,2.400092E+02,5.799746E+01,0.000000E+00 +513692,fr,1,4.250000E+00,-2.132000E-02,5.041596E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +513697,fr,1,4.350000E+00,-2.132000E-02,5.041596E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +514080,fr,2,3.550000E+00,-3.112150E+00,4.324522E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +514089,fr,1,3.550000E+00,-3.112150E+00,4.324522E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999265E+01,0.000000E+00 +514104,fr,1,3.750000E+00,-3.112150E+00,4.324522E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999125E+01,0.000000E+00 +514105,fr,1,3.750000E+00,-3.112150E+00,4.324522E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999125E+01,0.000000E+00 +514106,fr,1,3.750000E+00,-3.112150E+00,4.324522E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999125E+01,0.000000E+00 +514116,fr,2,3.850000E+00,-3.112150E+00,4.324522E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +514118,fr,1,3.850000E+00,-3.112150E+00,4.324522E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +514123,fr,1,3.850000E+00,-3.112150E+00,4.324522E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998948E+01,-9.000000E+01 +514128,fr,1,3.950000E+00,-3.112150E+00,4.324522E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999073E+01,0.000000E+00 +514168,fr,1,4.250000E+00,-3.112150E+00,4.324522E+01,1.500000E+01,Active Shallow Crust,2.400069E+02,5.799379E+01,0.000000E+00 +514333,fr,1,5.650000E+00,-3.112150E+00,4.324522E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +514560,fr,1,3.550000E+00,-6.334840E+00,4.716637E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999314E+01,0.000000E+00 +515053,fr,1,3.650000E+00,7.731300E-01,4.378595E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +515080,fr,1,3.850000E+00,7.731300E-01,4.378595E+01,1.500000E+01,Active Shallow Crust,2.400105E+02,5.799780E+01,0.000000E+00 +515145,fr,1,4.350000E+00,7.731300E-01,4.378595E+01,5.000000E+00,Active Shallow Crust,1.288984E+02,8.998273E+01,0.000000E+00 +515520,fr,6,3.550000E+00,6.886000E+00,4.669552E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999308E+01,0.000000E+00 +515521,fr,1,3.550000E+00,6.886000E+00,4.669552E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999308E+01,0.000000E+00 +515523,fr,4,3.550000E+00,6.886000E+00,4.669552E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799807E+01,0.000000E+00 +515524,fr,1,3.550000E+00,6.886000E+00,4.669552E+01,1.500000E+01,Active Shallow Crust,2.400121E+02,5.799807E+01,0.000000E+00 +515528,fr,1,3.550000E+00,6.886000E+00,4.669552E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999300E+01,-9.000000E+01 +515529,fr,1,3.550000E+00,6.886000E+00,4.669552E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999309E+01,0.000000E+00 +515531,fr,1,3.550000E+00,6.886000E+00,4.669552E+01,2.750000E+01,Active Shallow Crust,1.288958E+02,8.999309E+01,0.000000E+00 +515532,fr,5,3.650000E+00,6.886000E+00,4.669552E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998767E+01,0.000000E+00 +515533,fr,1,3.650000E+00,6.886000E+00,4.669552E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998767E+01,0.000000E+00 +515535,fr,1,3.650000E+00,6.886000E+00,4.669552E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801232E+01,0.000000E+00 +515536,fr,1,3.650000E+00,6.886000E+00,4.669552E+01,1.500000E+01,Active Shallow Crust,2.400013E+02,5.801232E+01,0.000000E+00 +515539,fr,1,3.650000E+00,6.886000E+00,4.669552E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998753E+01,-9.000000E+01 +515541,fr,1,3.650000E+00,6.886000E+00,4.669552E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.996353E+01,0.000000E+00 +515544,fr,6,3.750000E+00,6.886000E+00,4.669552E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +515545,fr,1,3.750000E+00,6.886000E+00,4.669552E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +515550,fr,1,3.750000E+00,6.886000E+00,4.669552E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998888E+01,-9.000000E+01 +515553,fr,1,3.750000E+00,6.886000E+00,4.669552E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.996749E+01,0.000000E+00 +515554,fr,1,3.750000E+00,6.886000E+00,4.669552E+01,1.500000E+01,Active Shallow Crust,1.288959E+02,8.996749E+01,0.000000E+00 +515556,fr,3,3.850000E+00,6.886000E+00,4.669552E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +515557,fr,2,3.850000E+00,6.886000E+00,4.669552E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +515563,fr,1,3.850000E+00,6.886000E+00,4.669552E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +515564,fr,1,3.850000E+00,6.886000E+00,4.669552E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +515568,fr,3,3.950000E+00,6.886000E+00,4.669552E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999127E+01,0.000000E+00 +515569,fr,2,3.950000E+00,6.886000E+00,4.669552E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999127E+01,0.000000E+00 +515570,fr,2,3.950000E+00,6.886000E+00,4.669552E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999127E+01,0.000000E+00 +515574,fr,2,3.950000E+00,6.886000E+00,4.669552E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999117E+01,-9.000000E+01 +515577,fr,1,3.950000E+00,6.886000E+00,4.669552E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.999564E+01,0.000000E+00 +515580,fr,4,4.050000E+00,6.886000E+00,4.669552E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998833E+01,0.000000E+00 +515581,fr,1,4.050000E+00,6.886000E+00,4.669552E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998833E+01,0.000000E+00 +515583,fr,1,4.050000E+00,6.886000E+00,4.669552E+01,5.000000E+00,Active Shallow Crust,2.400057E+02,5.800602E+01,0.000000E+00 +515584,fr,1,4.050000E+00,6.886000E+00,4.669552E+01,1.500000E+01,Active Shallow Crust,2.400057E+02,5.800599E+01,0.000000E+00 +515592,fr,3,4.150000E+00,6.886000E+00,4.669552E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +515598,fr,1,4.150000E+00,6.886000E+00,4.669552E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,-9.000000E+01 +515604,fr,2,4.250000E+00,6.886000E+00,4.669552E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999073E+01,0.000000E+00 +515605,fr,1,4.250000E+00,6.886000E+00,4.669552E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999073E+01,0.000000E+00 +515606,fr,2,4.250000E+00,6.886000E+00,4.669552E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999073E+01,0.000000E+00 +515607,fr,1,4.250000E+00,6.886000E+00,4.669552E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799423E+01,0.000000E+00 +515613,fr,1,4.250000E+00,6.886000E+00,4.669552E+01,5.000000E+00,Active Shallow Crust,1.288942E+02,8.998096E+01,0.000000E+00 +515622,fr,1,4.350000E+00,6.886000E+00,4.669552E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998886E+01,-9.000000E+01 +515631,fr,1,4.450000E+00,6.886000E+00,4.669552E+01,5.000000E+00,Active Shallow Crust,2.400053E+02,5.799436E+01,0.000000E+00 +515633,fr,1,4.450000E+00,6.886000E+00,4.669552E+01,2.750000E+01,Active Shallow Crust,2.400053E+02,5.799438E+01,0.000000E+00 +515637,fr,1,4.450000E+00,6.886000E+00,4.669552E+01,5.000000E+00,Active Shallow Crust,1.288926E+02,8.999387E+01,0.000000E+00 +515640,fr,1,4.550000E+00,6.886000E+00,4.669552E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998906E+01,0.000000E+00 +515652,fr,1,4.650000E+00,6.886000E+00,4.669552E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +515656,fr,1,4.650000E+00,6.886000E+00,4.669552E+01,1.500000E+01,Active Shallow Crust,2.400107E+02,5.799428E+01,0.000000E+00 +515688,fr,2,4.950000E+00,6.886000E+00,4.669552E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +515700,fr,1,5.050000E+00,6.886000E+00,4.669552E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +515703,fr,1,5.050000E+00,6.886000E+00,4.669552E+01,5.000000E+00,Active Shallow Crust,2.400222E+02,5.799776E+01,0.000000E+00 +515706,fr,1,5.050000E+00,6.886000E+00,4.669552E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +515748,fr,1,5.450000E+00,6.886000E+00,4.669552E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +515882,fr,1,6.550000E+00,6.885995E+00,4.669552E+01,2.547270E+01,Active Shallow Crust,3.599999E+02,8.999004E+01,0.000000E+00 +516000,fr,1,3.550000E+00,4.928670E+00,4.708941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999313E+01,0.000000E+00 +516002,fr,1,3.550000E+00,4.928670E+00,4.708941E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999313E+01,0.000000E+00 +516012,fr,1,3.650000E+00,4.928670E+00,4.708941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998776E+01,0.000000E+00 +516024,fr,1,3.750000E+00,4.928670E+00,4.708941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +516030,fr,1,3.750000E+00,4.928670E+00,4.708941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998897E+01,-9.000000E+01 +516033,fr,1,3.750000E+00,4.928670E+00,4.708941E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.996750E+01,0.000000E+00 +516040,fr,1,3.850000E+00,4.928670E+00,4.708941E+01,1.500000E+01,Active Shallow Crust,2.400111E+02,5.799732E+01,0.000000E+00 +516048,fr,2,3.950000E+00,4.928670E+00,4.708941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +516052,fr,1,3.950000E+00,4.928670E+00,4.708941E+01,1.500000E+01,Active Shallow Crust,2.400208E+02,5.800467E+01,0.000000E+00 +516088,fr,1,4.250000E+00,4.928670E+00,4.708941E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.799387E+01,0.000000E+00 +516183,fr,1,5.050000E+00,4.928670E+00,4.708941E+01,5.000000E+00,Active Shallow Crust,2.400226E+02,5.799749E+01,0.000000E+00 +516489,fr,1,3.550000E+00,8.364500E-01,4.500941E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999376E+01,0.000000E+00 +516576,fr,1,4.350000E+00,8.364500E-01,4.500941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +516984,fr,2,3.750000E+00,5.987480E+00,4.812466E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +516999,fr,1,3.850000E+00,5.987480E+00,4.812466E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799822E+01,0.000000E+00 +517453,fr,1,3.650000E+00,-1.145010E+00,4.995637E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +517920,fr,6,3.550000E+00,4.642100E-01,4.280523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +517921,fr,3,3.550000E+00,4.642100E-01,4.280523E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +517923,fr,1,3.550000E+00,4.642100E-01,4.280523E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799809E+01,0.000000E+00 +517926,fr,2,3.550000E+00,4.642100E-01,4.280523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,-9.000000E+01 +517930,fr,1,3.550000E+00,4.642100E-01,4.280523E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.999376E+01,0.000000E+00 +517932,fr,4,3.650000E+00,4.642100E-01,4.280523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +517936,fr,2,3.650000E+00,4.642100E-01,4.280523E+01,1.500000E+01,Active Shallow Crust,2.400007E+02,5.801280E+01,0.000000E+00 +517938,fr,1,3.650000E+00,4.642100E-01,4.280523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +517944,fr,5,3.750000E+00,4.642100E-01,4.280523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +517945,fr,1,3.750000E+00,4.642100E-01,4.280523E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +517946,fr,1,3.750000E+00,4.642100E-01,4.280523E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +517950,fr,1,3.750000E+00,4.642100E-01,4.280523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +517957,fr,1,3.850000E+00,4.642100E-01,4.280523E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +517966,fr,1,3.850000E+00,4.642100E-01,4.280523E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.999361E+01,0.000000E+00 +517968,fr,1,3.950000E+00,4.642100E-01,4.280523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +517977,fr,2,3.950000E+00,4.642100E-01,4.280523E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.999373E+01,0.000000E+00 +517978,fr,1,3.950000E+00,4.642100E-01,4.280523E+01,1.500000E+01,Active Shallow Crust,1.289008E+02,8.999373E+01,0.000000E+00 +517980,fr,1,4.050000E+00,4.642100E-01,4.280523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +517983,fr,1,4.050000E+00,4.642100E-01,4.280523E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.800576E+01,0.000000E+00 +517984,fr,1,4.050000E+00,4.642100E-01,4.280523E+01,1.500000E+01,Active Shallow Crust,2.400054E+02,5.800574E+01,0.000000E+00 +517987,fr,1,4.050000E+00,4.642100E-01,4.280523E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +517992,fr,1,4.150000E+00,4.642100E-01,4.280523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +518004,fr,1,4.250000E+00,4.642100E-01,4.280523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +518032,fr,1,4.450000E+00,4.642100E-01,4.280523E+01,1.500000E+01,Active Shallow Crust,2.400044E+02,5.799453E+01,0.000000E+00 +518046,fr,1,4.550000E+00,4.642100E-01,4.280523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +518079,fr,1,4.850000E+00,4.642100E-01,4.280523E+01,5.000000E+00,Active Shallow Crust,2.400157E+02,5.800206E+01,0.000000E+00 +518400,fr,4,3.550000E+00,-2.103900E+00,4.294790E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998893E+01,0.000000E+00 +518401,fr,1,3.550000E+00,-2.103900E+00,4.294790E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998893E+01,0.000000E+00 +518409,fr,1,3.550000E+00,-2.103900E+00,4.294790E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.999262E+01,0.000000E+00 +518412,fr,2,3.650000E+00,-2.103900E+00,4.294790E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +518418,fr,1,3.650000E+00,-2.103900E+00,4.294790E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +518424,fr,1,3.750000E+00,-2.103900E+00,4.294790E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +518425,fr,1,3.750000E+00,-2.103900E+00,4.294790E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +518431,fr,1,3.750000E+00,-2.103900E+00,4.294790E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999110E+01,-9.000000E+01 +518432,fr,1,3.750000E+00,-2.103900E+00,4.294790E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999110E+01,-9.000000E+01 +518434,fr,1,3.750000E+00,-2.103900E+00,4.294790E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.996743E+01,0.000000E+00 +518438,fr,1,3.850000E+00,-2.103900E+00,4.294790E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +518441,fr,1,3.850000E+00,-2.103900E+00,4.294790E+01,2.750000E+01,Active Shallow Crust,2.400103E+02,5.799756E+01,0.000000E+00 +518449,fr,1,3.950000E+00,-2.103900E+00,4.294790E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +518456,fr,1,3.950000E+00,-2.103900E+00,4.294790E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999058E+01,-9.000000E+01 +518472,fr,2,4.150000E+00,-2.103900E+00,4.294790E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +518479,fr,1,4.150000E+00,-2.103900E+00,4.294790E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,-9.000000E+01 +518485,fr,1,4.250000E+00,-2.103900E+00,4.294790E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +518503,fr,1,4.350000E+00,-2.103900E+00,4.294790E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +518509,fr,1,4.450000E+00,-2.103900E+00,4.294790E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +518513,fr,1,4.450000E+00,-2.103900E+00,4.294790E+01,2.750000E+01,Active Shallow Crust,2.400045E+02,5.799451E+01,0.000000E+00 +518548,fr,1,4.750000E+00,-2.103900E+00,4.294790E+01,1.500000E+01,Active Shallow Crust,2.400062E+02,5.800424E+01,0.000000E+00 +518556,fr,1,4.850000E+00,-2.103900E+00,4.294790E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +518572,fr,1,4.950000E+00,-2.103900E+00,4.294790E+01,1.500000E+01,Active Shallow Crust,2.400105E+02,5.800407E+01,0.000000E+00 +518605,fr,1,5.250000E+00,-2.103900E+00,4.294790E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +518880,fr,1,3.550000E+00,9.300000E-02,4.167287E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +518889,fr,1,3.550000E+00,9.300000E-02,4.167287E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999371E+01,0.000000E+00 +519396,fr,1,3.850000E+00,-6.093860E+00,4.677938E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +519840,fr,1,3.550000E+00,4.142290E+00,5.123601E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998737E+01,0.000000E+00 +519856,fr,1,3.650000E+00,4.142290E+00,5.123601E+01,1.500000E+01,Active Shallow Crust,2.400009E+02,5.801375E+01,0.000000E+00 +519865,fr,1,3.750000E+00,4.142290E+00,5.123601E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +519877,fr,1,3.850000E+00,4.142290E+00,5.123601E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999106E+01,0.000000E+00 +519888,fr,1,3.950000E+00,4.142290E+00,5.123601E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998804E+01,0.000000E+00 +519900,fr,2,4.050000E+00,4.142290E+00,5.123601E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +520332,fr,1,3.650000E+00,4.183380E+00,5.160650E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998884E+01,0.000000E+00 +520341,fr,1,3.650000E+00,4.183380E+00,5.160650E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.996309E+01,0.000000E+00 +520342,fr,1,3.650000E+00,4.183380E+00,5.160650E+01,1.500000E+01,Active Shallow Crust,1.289002E+02,8.996309E+01,0.000000E+00 +520381,fr,1,4.050000E+00,4.183380E+00,5.160650E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +520419,fr,1,4.350000E+00,4.183380E+00,5.160650E+01,5.000000E+00,Active Shallow Crust,2.400099E+02,5.799598E+01,0.000000E+00 +520455,fr,1,4.650000E+00,4.183380E+00,5.160650E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.799453E+01,0.000000E+00 +520512,fr,1,5.150000E+00,4.183380E+00,5.160650E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +520816,fr,1,3.650000E+00,5.016910E+00,4.196033E+01,1.500000E+01,Active Shallow Crust,2.400007E+02,5.801307E+01,0.000000E+00 +521289,fr,1,3.550000E+00,3.186610E+00,4.976220E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999348E+01,0.000000E+00 +521292,fr,1,3.650000E+00,3.186610E+00,4.976220E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +521296,fr,1,3.650000E+00,3.186610E+00,4.976220E+01,1.500000E+01,Active Shallow Crust,2.400012E+02,5.801342E+01,0.000000E+00 +521331,fr,1,3.950000E+00,3.186610E+00,4.976220E+01,5.000000E+00,Active Shallow Crust,2.400201E+02,5.800524E+01,0.000000E+00 +521364,fr,1,4.250000E+00,3.186610E+00,4.976220E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +521772,fr,1,3.650000E+00,-1.067400E+00,5.009345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +521796,fr,2,3.850000E+00,-1.067400E+00,5.009345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +522252,fr,1,3.650000E+00,-5.376440E+00,4.879172E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998816E+01,0.000000E+00 +522276,fr,1,3.850000E+00,-5.376440E+00,4.879172E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +522327,fr,1,4.250000E+00,-5.376440E+00,4.879172E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.799419E+01,0.000000E+00 +522720,fr,5,3.550000E+00,-1.706020E+00,4.737305E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +522726,fr,1,3.550000E+00,-1.706020E+00,4.737305E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,-9.000000E+01 +522727,fr,1,3.550000E+00,-1.706020E+00,4.737305E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998964E+01,-9.000000E+01 +522732,fr,4,3.650000E+00,-1.706020E+00,4.737305E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +522734,fr,1,3.650000E+00,-1.706020E+00,4.737305E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +522744,fr,1,3.750000E+00,-1.706020E+00,4.737305E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +522745,fr,1,3.750000E+00,-1.706020E+00,4.737305E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +522756,fr,1,3.850000E+00,-1.706020E+00,4.737305E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +522759,fr,1,3.850000E+00,-1.706020E+00,4.737305E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799786E+01,0.000000E+00 +522761,fr,1,3.850000E+00,-1.706020E+00,4.737305E+01,2.750000E+01,Active Shallow Crust,2.400110E+02,5.799786E+01,0.000000E+00 +522772,fr,1,3.950000E+00,-1.706020E+00,4.737305E+01,1.500000E+01,Active Shallow Crust,2.400198E+02,5.800500E+01,0.000000E+00 +522793,fr,1,4.150000E+00,-1.706020E+00,4.737305E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +522805,fr,1,4.250000E+00,-1.706020E+00,4.737305E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +522816,fr,1,4.350000E+00,-1.706020E+00,4.737305E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +522817,fr,1,4.350000E+00,-1.706020E+00,4.737305E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +522840,fr,3,4.550000E+00,-1.706020E+00,4.737305E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +522842,fr,1,4.550000E+00,-1.706020E+00,4.737305E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +522944,fr,1,5.350000E+00,-1.706020E+00,4.737305E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +522973,fr,1,5.650000E+00,-1.706020E+00,4.737305E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +523692,fr,2,3.650000E+00,9.782200E-01,4.636436E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +523713,fr,1,3.750000E+00,9.782200E-01,4.636436E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.996736E+01,0.000000E+00 +523716,fr,1,3.850000E+00,9.782200E-01,4.636436E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +523717,fr,1,3.850000E+00,9.782200E-01,4.636436E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +523740,fr,1,4.050000E+00,9.782200E-01,4.636436E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +523752,fr,1,4.150000E+00,9.782200E-01,4.636436E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +523767,fr,1,4.250000E+00,9.782200E-01,4.636436E+01,5.000000E+00,Active Shallow Crust,2.400075E+02,5.799407E+01,0.000000E+00 +523800,fr,1,4.550000E+00,9.782200E-01,4.636436E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +523826,fr,1,4.750000E+00,9.782200E-01,4.636436E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +524160,fr,1,3.550000E+00,3.681440E+00,4.430691E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +524170,fr,1,3.550000E+00,3.681440E+00,4.430691E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.999459E+01,0.000000E+00 +524245,fr,1,4.250000E+00,3.681440E+00,4.430691E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +524271,fr,1,4.450000E+00,3.681440E+00,4.430691E+01,5.000000E+00,Active Shallow Crust,2.400048E+02,5.799457E+01,0.000000E+00 +524318,fr,1,4.850000E+00,3.681440E+00,4.430691E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +524664,fr,1,3.750000E+00,-2.178200E+00,4.196664E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +524678,fr,1,3.850000E+00,-2.178200E+00,4.196664E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +524682,fr,1,3.850000E+00,-2.178200E+00,4.196664E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998926E+01,-9.000000E+01 +524688,fr,1,3.950000E+00,-2.178200E+00,4.196664E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +524712,fr,1,4.150000E+00,-2.178200E+00,4.196664E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999061E+01,0.000000E+00 +524730,fr,1,4.250000E+00,-2.178200E+00,4.196664E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,-9.000000E+01 +524737,fr,1,4.350000E+00,-2.178200E+00,4.196664E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +524762,fr,1,4.550000E+00,-2.178200E+00,4.196664E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +525613,fr,1,3.650000E+00,1.083280E+00,5.046753E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +525647,fr,1,3.850000E+00,1.083280E+00,5.046753E+01,2.750000E+01,Active Shallow Crust,1.288954E+02,8.999375E+01,0.000000E+00 +526080,fr,2,3.550000E+00,5.477930E+00,5.166306E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998749E+01,0.000000E+00 +526084,fr,1,3.550000E+00,5.477930E+00,5.166306E+01,1.500000E+01,Active Shallow Crust,2.400138E+02,5.799705E+01,0.000000E+00 +526105,fr,1,3.750000E+00,5.477930E+00,5.166306E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +526122,fr,1,3.850000E+00,5.477930E+00,5.166306E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,-9.000000E+01 +526584,fr,1,3.750000E+00,2.607520E+00,4.883242E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +527052,fr,2,3.650000E+00,2.312810E+00,5.038314E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999140E+01,0.000000E+00 +527058,fr,1,3.650000E+00,2.312810E+00,5.038314E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999130E+01,-9.000000E+01 +527068,fr,1,3.750000E+00,2.312810E+00,5.038314E+01,1.500000E+01,Active Shallow Crust,2.400089E+02,5.801759E+01,0.000000E+00 +527127,fr,1,4.250000E+00,2.312810E+00,5.038314E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799440E+01,0.000000E+00 +527152,fr,1,4.450000E+00,2.312810E+00,5.038314E+01,1.500000E+01,Active Shallow Crust,2.400065E+02,5.799477E+01,0.000000E+00 +527166,fr,1,4.550000E+00,2.312810E+00,5.038314E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,-9.000000E+01 +527196,fr,1,4.850000E+00,2.312810E+00,5.038314E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +527529,fr,1,3.550000E+00,7.206000E-01,4.405285E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999366E+01,0.000000E+00 +527532,fr,2,3.650000E+00,7.206000E-01,4.405285E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +527569,fr,1,3.950000E+00,7.206000E-01,4.405285E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +528484,fr,1,3.550000E+00,4.075280E+00,4.263676E+01,1.500000E+01,Active Shallow Crust,2.400119E+02,5.799789E+01,0.000000E+00 +528505,fr,1,3.750000E+00,4.075280E+00,4.263676E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998821E+01,0.000000E+00 +528531,fr,1,3.950000E+00,4.075280E+00,4.263676E+01,5.000000E+00,Active Shallow Crust,2.400186E+02,5.800446E+01,0.000000E+00 +528600,fr,1,4.550000E+00,4.075280E+00,4.263676E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +528732,fr,1,5.650000E+00,4.075280E+00,4.263676E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +528963,fr,1,3.550000E+00,8.376240E+00,4.555809E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799847E+01,0.000000E+00 +528984,fr,1,3.750000E+00,8.376240E+00,4.555809E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +528996,fr,1,3.850000E+00,8.376240E+00,4.555809E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +528998,fr,1,3.850000E+00,8.376240E+00,4.555809E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +529011,fr,1,3.950000E+00,8.376240E+00,4.555809E+01,5.000000E+00,Active Shallow Crust,2.400188E+02,5.800608E+01,0.000000E+00 +529057,fr,1,4.350000E+00,8.376240E+00,4.555809E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +529089,fr,1,4.550000E+00,8.376240E+00,4.555809E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.998560E+01,0.000000E+00 +529440,fr,1,3.550000E+00,4.800160E+00,4.655628E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999306E+01,0.000000E+00 +529441,fr,1,3.550000E+00,4.800160E+00,4.655628E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999306E+01,0.000000E+00 +529452,fr,1,3.650000E+00,4.800160E+00,4.655628E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998764E+01,0.000000E+00 +529500,fr,1,4.050000E+00,4.800160E+00,4.655628E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998830E+01,0.000000E+00 +529536,fr,1,4.350000E+00,4.800160E+00,4.655628E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998896E+01,0.000000E+00 +529656,fr,1,5.350000E+00,4.800160E+00,4.655628E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +529926,fr,1,3.550000E+00,2.345940E+00,5.077188E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,-9.000000E+01 +529931,fr,1,3.550000E+00,2.345940E+00,5.077188E+01,2.750000E+01,Active Shallow Crust,1.288958E+02,8.999522E+01,0.000000E+00 +529936,fr,1,3.650000E+00,2.345940E+00,5.077188E+01,1.500000E+01,Active Shallow Crust,2.400016E+02,5.801290E+01,0.000000E+00 +529947,fr,1,3.750000E+00,2.345940E+00,5.077188E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.801788E+01,0.000000E+00 +529956,fr,3,3.850000E+00,2.345940E+00,5.077188E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +529968,fr,1,3.950000E+00,2.345940E+00,5.077188E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +530019,fr,1,4.350000E+00,2.345940E+00,5.077188E+01,5.000000E+00,Active Shallow Crust,2.400093E+02,5.799620E+01,0.000000E+00 +530031,fr,1,4.450000E+00,2.345940E+00,5.077188E+01,5.000000E+00,Active Shallow Crust,2.400064E+02,5.799489E+01,0.000000E+00 +530407,fr,1,3.550000E+00,3.758300E+00,4.205454E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998864E+01,-9.000000E+01 +530556,fr,2,4.850000E+00,3.758300E+00,4.205454E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +530880,fr,1,3.550000E+00,-9.501600E-01,4.648888E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +530881,fr,1,3.550000E+00,-9.501600E-01,4.648888E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +530883,fr,1,3.550000E+00,-9.501600E-01,4.648888E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799813E+01,0.000000E+00 +530889,fr,1,3.550000E+00,-9.501600E-01,4.648888E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999349E+01,0.000000E+00 +530892,fr,1,3.650000E+00,-9.501600E-01,4.648888E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +530896,fr,1,3.650000E+00,-9.501600E-01,4.648888E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801298E+01,0.000000E+00 +530898,fr,1,3.650000E+00,-9.501600E-01,4.648888E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,-9.000000E+01 +530916,fr,1,3.850000E+00,-9.501600E-01,4.648888E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +530923,fr,1,3.850000E+00,-9.501600E-01,4.648888E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +530943,fr,1,4.050000E+00,-9.501600E-01,4.648888E+01,5.000000E+00,Active Shallow Crust,2.400060E+02,5.800584E+01,0.000000E+00 +530954,fr,1,4.150000E+00,-9.501600E-01,4.648888E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +530956,fr,1,4.150000E+00,-9.501600E-01,4.648888E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.799728E+01,0.000000E+00 +530967,fr,1,4.250000E+00,-9.501600E-01,4.648888E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799405E+01,0.000000E+00 +530976,fr,2,4.350000E+00,-9.501600E-01,4.648888E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +530978,fr,1,4.350000E+00,-9.501600E-01,4.648888E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +530982,fr,1,4.350000E+00,-9.501600E-01,4.648888E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,-9.000000E+01 +530991,fr,1,4.450000E+00,-9.501600E-01,4.648888E+01,5.000000E+00,Active Shallow Crust,2.400052E+02,5.799464E+01,0.000000E+00 +530997,fr,1,4.450000E+00,-9.501600E-01,4.648888E+01,5.000000E+00,Active Shallow Crust,1.288922E+02,8.999369E+01,0.000000E+00 +531000,fr,3,4.550000E+00,-9.501600E-01,4.648888E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +531014,fr,1,4.650000E+00,-9.501600E-01,4.648888E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +531363,fr,1,3.550000E+00,-2.107500E+00,4.253123E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799800E+01,0.000000E+00 +531364,fr,1,3.550000E+00,-2.107500E+00,4.253123E+01,1.500000E+01,Active Shallow Crust,2.400121E+02,5.799800E+01,0.000000E+00 +531372,fr,2,3.650000E+00,-2.107500E+00,4.253123E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +531388,fr,2,3.750000E+00,-2.107500E+00,4.253123E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.801729E+01,0.000000E+00 +531429,fr,1,4.050000E+00,-2.107500E+00,4.253123E+01,5.000000E+00,Active Shallow Crust,1.288904E+02,8.999374E+01,0.000000E+00 +531437,fr,1,4.150000E+00,-2.107500E+00,4.253123E+01,2.750000E+01,Active Shallow Crust,2.400077E+02,5.799690E+01,0.000000E+00 +531486,fr,2,4.550000E+00,-2.107500E+00,4.253123E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,-9.000000E+01 +531672,fr,1,6.150000E+00,-2.107498E+00,4.253123E+01,6.011322E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +531846,fr,1,3.550000E+00,1.775400E-01,5.146853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +531864,fr,1,3.750000E+00,1.775400E-01,5.146853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +531885,fr,1,3.850000E+00,1.775400E-01,5.146853E+01,5.000000E+00,Active Shallow Crust,1.288951E+02,8.999374E+01,0.000000E+00 +531912,fr,1,4.150000E+00,1.775400E-01,5.146853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +532801,fr,2,3.550000E+00,5.266460E+00,4.373479E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999271E+01,0.000000E+00 +532803,fr,1,3.550000E+00,5.266460E+00,4.373479E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799834E+01,0.000000E+00 +532804,fr,1,3.550000E+00,5.266460E+00,4.373479E+01,1.500000E+01,Active Shallow Crust,2.400123E+02,5.799834E+01,0.000000E+00 +532811,fr,1,3.550000E+00,5.266460E+00,4.373479E+01,2.750000E+01,Active Shallow Crust,1.288972E+02,8.999271E+01,0.000000E+00 +532812,fr,2,3.650000E+00,5.266460E+00,4.373479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998701E+01,0.000000E+00 +532813,fr,2,3.650000E+00,5.266460E+00,4.373479E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998701E+01,0.000000E+00 +532819,fr,1,3.650000E+00,5.266460E+00,4.373479E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998686E+01,-9.000000E+01 +532821,fr,1,3.650000E+00,5.266460E+00,4.373479E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.996347E+01,0.000000E+00 +532824,fr,1,3.750000E+00,5.266460E+00,4.373479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +532837,fr,1,3.850000E+00,5.266460E+00,4.373479E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +532840,fr,1,3.850000E+00,5.266460E+00,4.373479E+01,1.500000E+01,Active Shallow Crust,2.400095E+02,5.799789E+01,0.000000E+00 +532846,fr,1,3.850000E+00,5.266460E+00,4.373479E+01,1.500000E+01,Active Shallow Crust,1.288959E+02,8.999226E+01,0.000000E+00 +532860,fr,2,4.050000E+00,5.266460E+00,4.373479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999181E+01,0.000000E+00 +532863,fr,1,4.050000E+00,5.266460E+00,4.373479E+01,5.000000E+00,Active Shallow Crust,2.400052E+02,5.800583E+01,0.000000E+00 +532866,fr,1,4.050000E+00,5.266460E+00,4.373479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999171E+01,-9.000000E+01 +532875,fr,1,4.150000E+00,5.266460E+00,4.373479E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.799736E+01,0.000000E+00 +532885,fr,1,4.250000E+00,5.266460E+00,4.373479E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +532895,fr,1,4.250000E+00,5.266460E+00,4.373479E+01,2.750000E+01,Active Shallow Crust,1.288955E+02,8.998084E+01,0.000000E+00 +532896,fr,1,4.350000E+00,5.266460E+00,4.373479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +532898,fr,1,4.350000E+00,5.266460E+00,4.373479E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +532932,fr,1,4.650000E+00,5.266460E+00,4.373479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +532933,fr,1,4.650000E+00,5.266460E+00,4.373479E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +532956,fr,1,4.850000E+00,5.266460E+00,4.373479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +532969,fr,1,4.950000E+00,5.266460E+00,4.373479E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +533161,fr,1,6.550000E+00,5.266460E+00,4.373479E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +533280,fr,2,3.550000E+00,7.539540E+00,4.520418E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999290E+01,0.000000E+00 +533281,fr,2,3.550000E+00,7.539540E+00,4.520418E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999290E+01,0.000000E+00 +533285,fr,1,3.550000E+00,7.539540E+00,4.520418E+01,2.750000E+01,Active Shallow Crust,2.400119E+02,5.799863E+01,0.000000E+00 +533286,fr,1,3.550000E+00,7.539540E+00,4.520418E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999281E+01,-9.000000E+01 +533292,fr,2,3.650000E+00,7.539540E+00,4.520418E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998734E+01,0.000000E+00 +533296,fr,1,3.650000E+00,7.539540E+00,4.520418E+01,1.500000E+01,Active Shallow Crust,2.400018E+02,5.801259E+01,0.000000E+00 +533304,fr,2,3.750000E+00,7.539540E+00,4.520418E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +533310,fr,1,3.750000E+00,7.539540E+00,4.520418E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998858E+01,-9.000000E+01 +533316,fr,1,3.850000E+00,7.539540E+00,4.520418E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +533319,fr,1,3.850000E+00,7.539540E+00,4.520418E+01,5.000000E+00,Active Shallow Crust,2.400115E+02,5.799799E+01,0.000000E+00 +533328,fr,2,3.950000E+00,7.539540E+00,4.520418E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +533331,fr,1,3.950000E+00,7.539540E+00,4.520418E+01,5.000000E+00,Active Shallow Crust,2.400199E+02,5.800463E+01,0.000000E+00 +533340,fr,1,4.050000E+00,7.539540E+00,4.520418E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998801E+01,0.000000E+00 +533342,fr,1,4.050000E+00,7.539540E+00,4.520418E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998801E+01,0.000000E+00 +533345,fr,1,4.050000E+00,7.539540E+00,4.520418E+01,2.750000E+01,Active Shallow Crust,2.400058E+02,5.800576E+01,0.000000E+00 +533349,fr,1,4.050000E+00,7.539540E+00,4.520418E+01,5.000000E+00,Active Shallow Crust,1.288904E+02,8.999401E+01,0.000000E+00 +533352,fr,1,4.150000E+00,7.539540E+00,4.520418E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +533388,fr,1,4.450000E+00,7.539540E+00,4.520418E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +533397,fr,1,4.450000E+00,7.539540E+00,4.520418E+01,5.000000E+00,Active Shallow Crust,1.288922E+02,8.999370E+01,0.000000E+00 +533439,fr,1,4.850000E+00,7.539540E+00,4.520418E+01,5.000000E+00,Active Shallow Crust,2.400166E+02,5.800235E+01,0.000000E+00 +533760,fr,1,3.550000E+00,7.925050E+00,4.974167E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998697E+01,0.000000E+00 +533766,fr,1,3.550000E+00,7.925050E+00,4.974167E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998682E+01,-9.000000E+01 +533772,fr,4,3.650000E+00,7.925050E+00,4.974167E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998838E+01,0.000000E+00 +533774,fr,1,3.650000E+00,7.925050E+00,4.974167E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998838E+01,0.000000E+00 +533793,fr,1,3.750000E+00,7.925050E+00,4.974167E+01,5.000000E+00,Active Shallow Crust,1.288953E+02,8.996754E+01,0.000000E+00 +533820,fr,1,4.050000E+00,7.925050E+00,4.974167E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +533846,fr,1,4.250000E+00,7.925050E+00,4.974167E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +533856,fr,1,4.350000E+00,7.925050E+00,4.974167E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +533902,fr,1,4.650000E+00,7.925050E+00,4.974167E+01,1.500000E+01,Active Shallow Crust,1.288902E+02,8.998694E+01,0.000000E+00 +533917,fr,2,4.850000E+00,7.925050E+00,4.974167E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +534033,fr,1,5.750000E+00,7.925050E+00,4.974167E+01,5.000000E+00,Active Shallow Crust,1.288680E+02,8.999108E+01,0.000000E+00 +534240,fr,6,3.550000E+00,-3.790100E-01,4.299638E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +534241,fr,4,3.550000E+00,-3.790100E-01,4.299638E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +534249,fr,2,3.550000E+00,-3.790100E-01,4.299638E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999377E+01,0.000000E+00 +534252,fr,6,3.650000E+00,-3.790100E-01,4.299638E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +534253,fr,2,3.650000E+00,-3.790100E-01,4.299638E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +534255,fr,1,3.650000E+00,-3.790100E-01,4.299638E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801287E+01,0.000000E+00 +534257,fr,1,3.650000E+00,-3.790100E-01,4.299638E+01,2.750000E+01,Active Shallow Crust,2.400007E+02,5.801278E+01,0.000000E+00 +534258,fr,1,3.650000E+00,-3.790100E-01,4.299638E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +534261,fr,4,3.650000E+00,-3.790100E-01,4.299638E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996353E+01,0.000000E+00 +534262,fr,1,3.650000E+00,-3.790100E-01,4.299638E+01,1.500000E+01,Active Shallow Crust,1.289007E+02,8.996353E+01,0.000000E+00 +534264,fr,6,3.750000E+00,-3.790100E-01,4.299638E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +534265,fr,4,3.750000E+00,-3.790100E-01,4.299638E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +534270,fr,1,3.750000E+00,-3.790100E-01,4.299638E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +534273,fr,1,3.750000E+00,-3.790100E-01,4.299638E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996736E+01,0.000000E+00 +534276,fr,3,3.850000E+00,-3.790100E-01,4.299638E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +534279,fr,2,3.850000E+00,-3.790100E-01,4.299638E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.799772E+01,0.000000E+00 +534282,fr,1,3.850000E+00,-3.790100E-01,4.299638E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +534285,fr,1,3.850000E+00,-3.790100E-01,4.299638E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999364E+01,0.000000E+00 +534288,fr,6,3.950000E+00,-3.790100E-01,4.299638E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +534289,fr,2,3.950000E+00,-3.790100E-01,4.299638E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +534298,fr,1,3.950000E+00,-3.790100E-01,4.299638E+01,1.500000E+01,Active Shallow Crust,1.289008E+02,8.999374E+01,0.000000E+00 +534300,fr,1,4.050000E+00,-3.790100E-01,4.299638E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +534301,fr,2,4.050000E+00,-3.790100E-01,4.299638E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +534303,fr,1,4.050000E+00,-3.790100E-01,4.299638E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.800574E+01,0.000000E+00 +534306,fr,1,4.050000E+00,-3.790100E-01,4.299638E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +534312,fr,1,4.150000E+00,-3.790100E-01,4.299638E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +534313,fr,3,4.150000E+00,-3.790100E-01,4.299638E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +534314,fr,1,4.150000E+00,-3.790100E-01,4.299638E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +534324,fr,2,4.250000E+00,-3.790100E-01,4.299638E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +534325,fr,1,4.250000E+00,-3.790100E-01,4.299638E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +534326,fr,1,4.250000E+00,-3.790100E-01,4.299638E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +534333,fr,1,4.250000E+00,-3.790100E-01,4.299638E+01,5.000000E+00,Active Shallow Crust,1.288949E+02,8.998092E+01,0.000000E+00 +534336,fr,1,4.350000E+00,-3.790100E-01,4.299638E+01,5.000000E+00,Active Shallow Crust,3.599999E+02,8.999009E+01,0.000000E+00 +534339,fr,1,4.350000E+00,-3.790100E-01,4.299638E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799581E+01,0.000000E+00 +534342,fr,1,4.350000E+00,-3.790100E-01,4.299638E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +534343,fr,1,4.350000E+00,-3.790100E-01,4.299638E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +534348,fr,1,4.450000E+00,-3.790100E-01,4.299638E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +534354,fr,1,4.450000E+00,-3.790100E-01,4.299638E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +534360,fr,2,4.550000E+00,-3.790100E-01,4.299638E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +534373,fr,2,4.650000E+00,-3.790100E-01,4.299638E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +534384,fr,1,4.750000E+00,-3.790100E-01,4.299638E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +534400,fr,1,4.850000E+00,-3.790100E-01,4.299638E+01,1.500000E+01,Active Shallow Crust,2.400158E+02,5.800208E+01,0.000000E+00 +534410,fr,1,4.950000E+00,-3.790100E-01,4.299638E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +534423,fr,1,5.050000E+00,-3.790100E-01,4.299638E+01,5.000000E+00,Active Shallow Crust,2.400204E+02,5.799725E+01,0.000000E+00 +534444,fr,1,5.250000E+00,-3.790100E-01,4.299638E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +534468,fr,1,5.450000E+00,-3.790100E-01,4.299638E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +534505,fr,1,5.750000E+00,-3.790100E-01,4.299638E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +534532,fr,1,5.950000E+00,-3.790100E-01,4.299638E+01,1.500000E+01,Active Shallow Crust,2.400463E+02,5.799976E+01,0.000000E+00 +534732,fr,1,3.650000E+00,1.648300E+00,4.720599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +534756,fr,1,3.850000E+00,1.648300E+00,4.720599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +534780,fr,1,4.050000E+00,1.648300E+00,4.720599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +534781,fr,1,4.050000E+00,1.648300E+00,4.720599E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +534793,fr,1,4.150000E+00,1.648300E+00,4.720599E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +534816,fr,1,4.350000E+00,1.648300E+00,4.720599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +534830,fr,1,4.450000E+00,1.648300E+00,4.720599E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +534840,fr,1,4.550000E+00,1.648300E+00,4.720599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +534853,fr,1,4.650000E+00,1.648300E+00,4.720599E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +534888,fr,1,4.950000E+00,1.648300E+00,4.720599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +534916,fr,1,5.150000E+00,1.648300E+00,4.720599E+01,1.500000E+01,Active Shallow Crust,2.400201E+02,5.800003E+01,0.000000E+00 +535201,fr,1,3.550000E+00,4.773990E+00,4.152255E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999245E+01,0.000000E+00 +535206,fr,1,3.550000E+00,4.773990E+00,4.152255E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999236E+01,-9.000000E+01 +535237,fr,1,3.850000E+00,4.773990E+00,4.152255E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +535248,fr,1,3.950000E+00,4.773990E+00,4.152255E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +535263,fr,1,4.050000E+00,4.773990E+00,4.152255E+01,5.000000E+00,Active Shallow Crust,2.400047E+02,5.800600E+01,0.000000E+00 +535278,fr,1,4.150000E+00,4.773990E+00,4.152255E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998852E+01,-9.000000E+01 +535680,fr,1,3.550000E+00,2.067820E+00,4.445001E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +535698,fr,1,3.650000E+00,2.067820E+00,4.445001E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,-9.000000E+01 +535710,fr,1,3.750000E+00,2.067820E+00,4.445001E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999133E+01,-9.000000E+01 +535742,fr,2,4.050000E+00,2.067820E+00,4.445001E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +536160,fr,1,3.550000E+00,3.439340E+00,5.015624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +536173,fr,1,3.650000E+00,3.439340E+00,5.015624E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999136E+01,0.000000E+00 +536184,fr,3,3.750000E+00,3.439340E+00,5.015624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +536200,fr,1,3.850000E+00,3.439340E+00,5.015624E+01,1.500000E+01,Active Shallow Crust,2.400112E+02,5.799790E+01,0.000000E+00 +536497,fr,1,6.350000E+00,3.439340E+00,5.015624E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +536728,fr,1,4.250000E+00,-2.284260E+00,4.623378E+01,1.500000E+01,Active Shallow Crust,2.400074E+02,5.799422E+01,0.000000E+00 +536784,fr,1,4.750000E+00,-2.284260E+00,4.623378E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +537121,fr,1,3.550000E+00,6.787100E-01,4.979562E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +537123,fr,1,3.550000E+00,6.787100E-01,4.979562E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799839E+01,0.000000E+00 +537132,fr,2,3.650000E+00,6.787100E-01,4.979562E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +537147,fr,2,3.750000E+00,6.787100E-01,4.979562E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.801752E+01,0.000000E+00 +537171,fr,1,3.950000E+00,6.787100E-01,4.979562E+01,5.000000E+00,Active Shallow Crust,2.400202E+02,5.800510E+01,0.000000E+00 +537190,fr,1,4.050000E+00,6.787100E-01,4.979562E+01,1.500000E+01,Active Shallow Crust,1.288900E+02,8.999359E+01,0.000000E+00 +537192,fr,1,4.150000E+00,6.787100E-01,4.979562E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +537193,fr,1,4.150000E+00,6.787100E-01,4.979562E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +537625,fr,1,3.750000E+00,-9.213100E-01,4.499633E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +537768,fr,1,4.950000E+00,-9.213100E-01,4.499633E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +538080,fr,1,3.550000E+00,-6.919200E+00,4.820300E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999328E+01,0.000000E+00 +538083,fr,1,3.550000E+00,-6.919200E+00,4.820300E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799902E+01,0.000000E+00 +538560,fr,1,3.550000E+00,-8.565200E-01,4.239647E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +538568,fr,1,3.550000E+00,-8.565200E-01,4.239647E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998964E+01,-9.000000E+01 +538581,fr,1,3.650000E+00,-8.565200E-01,4.239647E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.996352E+01,0.000000E+00 +538584,fr,1,3.750000E+00,-8.565200E-01,4.239647E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +538586,fr,1,3.750000E+00,-8.565200E-01,4.239647E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +538605,fr,1,3.850000E+00,-8.565200E-01,4.239647E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999374E+01,0.000000E+00 +538620,fr,1,4.050000E+00,-8.565200E-01,4.239647E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +538660,fr,1,4.350000E+00,-8.565200E-01,4.239647E+01,1.500000E+01,Active Shallow Crust,2.400075E+02,5.799574E+01,0.000000E+00 +538728,fr,1,4.950000E+00,-8.565200E-01,4.239647E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +538860,fr,1,6.050000E+00,-8.565192E-01,4.239647E+01,5.357596E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +539069,fr,1,3.750000E+00,3.418820E+00,5.270752E+01,2.750000E+01,Active Shallow Crust,2.400090E+02,5.801779E+01,0.000000E+00 +539110,fr,1,4.050000E+00,3.418820E+00,5.270752E+01,1.500000E+01,Active Shallow Crust,1.288895E+02,8.999399E+01,0.000000E+00 +539172,fr,1,4.650000E+00,3.418820E+00,5.270752E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +539520,fr,2,3.550000E+00,4.612500E-01,4.130016E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +539523,fr,1,3.550000E+00,4.612500E-01,4.130016E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799810E+01,0.000000E+00 +539533,fr,1,3.650000E+00,4.612500E-01,4.130016E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +539556,fr,1,3.850000E+00,4.612500E-01,4.130016E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +539566,fr,1,3.850000E+00,4.612500E-01,4.130016E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.999380E+01,0.000000E+00 +539586,fr,1,4.050000E+00,4.612500E-01,4.130016E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +539589,fr,1,4.050000E+00,4.612500E-01,4.130016E+01,5.000000E+00,Active Shallow Crust,1.288911E+02,8.999374E+01,0.000000E+00 +539610,fr,1,4.250000E+00,4.612500E-01,4.130016E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +540013,fr,1,3.650000E+00,5.261010E+00,4.172241E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999329E+01,0.000000E+00 +540493,fr,1,3.650000E+00,7.179790E+00,4.303527E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998686E+01,0.000000E+00 +540599,fr,1,4.450000E+00,7.179790E+00,4.303527E+01,2.750000E+01,Active Shallow Crust,1.288931E+02,8.999346E+01,0.000000E+00 +540624,fr,1,4.750000E+00,7.179790E+00,4.303527E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +540963,fr,1,3.550000E+00,2.280100E+00,4.999309E+01,5.000000E+00,Active Shallow Crust,2.400130E+02,5.799822E+01,0.000000E+00 +540973,fr,1,3.650000E+00,2.280100E+00,4.999309E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +540991,fr,1,3.750000E+00,2.280100E+00,4.999309E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998958E+01,-9.000000E+01 +541017,fr,1,3.950000E+00,2.280100E+00,4.999309E+01,5.000000E+00,Active Shallow Crust,1.288995E+02,8.999387E+01,0.000000E+00 +541023,fr,1,4.050000E+00,2.280100E+00,4.999309E+01,5.000000E+00,Active Shallow Crust,2.400068E+02,5.800571E+01,0.000000E+00 +541087,fr,1,4.550000E+00,2.280100E+00,4.999309E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998963E+01,-9.000000E+01 +541116,fr,1,4.850000E+00,2.280100E+00,4.999309E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +541464,fr,1,3.750000E+00,-4.667300E+00,4.763535E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +541469,fr,1,3.750000E+00,-4.667300E+00,4.763535E+01,2.750000E+01,Active Shallow Crust,2.400074E+02,5.801778E+01,0.000000E+00 +541510,fr,1,4.050000E+00,-4.667300E+00,4.763535E+01,1.500000E+01,Active Shallow Crust,1.288902E+02,8.999427E+01,0.000000E+00 +541920,fr,1,3.550000E+00,9.934100E-01,4.421091E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +541935,fr,1,3.650000E+00,9.934100E-01,4.421091E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801281E+01,0.000000E+00 +541951,fr,1,3.750000E+00,9.934100E-01,4.421091E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,-9.000000E+01 +541975,fr,1,3.950000E+00,9.934100E-01,4.421091E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,-9.000000E+01 +542004,fr,1,4.250000E+00,9.934100E-01,4.421091E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +542035,fr,1,4.450000E+00,9.934100E-01,4.421091E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +542400,fr,1,3.550000E+00,5.807330E+00,4.784676E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999323E+01,0.000000E+00 +542412,fr,1,3.650000E+00,5.807330E+00,4.784676E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998794E+01,0.000000E+00 +542436,fr,1,3.850000E+00,5.807330E+00,4.784676E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +542449,fr,1,3.950000E+00,5.807330E+00,4.784676E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999146E+01,0.000000E+00 +542484,fr,2,4.250000E+00,5.807330E+00,4.784676E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +542496,fr,1,4.350000E+00,5.807330E+00,4.784676E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998922E+01,0.000000E+00 +542556,fr,1,4.850000E+00,5.807330E+00,4.784676E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +542580,fr,1,5.050000E+00,5.807330E+00,4.784676E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +543360,fr,2,3.550000E+00,8.650760E+00,5.044111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998715E+01,0.000000E+00 +543363,fr,1,3.550000E+00,8.650760E+00,5.044111E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.800053E+01,0.000000E+00 +543371,fr,1,3.550000E+00,8.650760E+00,5.044111E+01,2.750000E+01,Active Shallow Crust,1.288979E+02,8.999358E+01,0.000000E+00 +543372,fr,1,3.650000E+00,8.650760E+00,5.044111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +543375,fr,1,3.650000E+00,8.650760E+00,5.044111E+01,5.000000E+00,Active Shallow Crust,2.400006E+02,5.801360E+01,0.000000E+00 +543378,fr,1,3.650000E+00,8.650760E+00,5.044111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998842E+01,-9.000000E+01 +543409,fr,1,3.950000E+00,8.650760E+00,5.044111E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999190E+01,0.000000E+00 +543432,fr,1,4.150000E+00,8.650760E+00,5.044111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998712E+01,0.000000E+00 +543466,fr,1,4.350000E+00,8.650760E+00,5.044111E+01,1.500000E+01,Active Shallow Crust,1.288975E+02,8.998221E+01,0.000000E+00 +543840,fr,2,3.550000E+00,-1.353900E-01,4.424994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +543890,fr,1,3.950000E+00,-1.353900E-01,4.424994E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +543912,fr,1,4.150000E+00,-1.353900E-01,4.424994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +544321,fr,1,3.550000E+00,4.570800E-01,4.833186E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +544392,fr,1,4.150000E+00,4.570800E-01,4.833186E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +544393,fr,1,4.150000E+00,4.570800E-01,4.833186E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +544405,fr,1,4.250000E+00,4.570800E-01,4.833186E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +544408,fr,1,4.250000E+00,4.570800E-01,4.833186E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.799413E+01,0.000000E+00 +544440,fr,1,4.550000E+00,4.570800E-01,4.833186E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +544521,fr,1,5.150000E+00,4.570800E-01,4.833186E+01,5.000000E+00,Active Shallow Crust,1.288828E+02,8.999104E+01,0.000000E+00 +544848,fr,1,3.950000E+00,1.574500E+00,4.918201E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +544869,fr,1,4.050000E+00,1.574500E+00,4.918201E+01,5.000000E+00,Active Shallow Crust,1.288902E+02,8.999398E+01,0.000000E+00 +545028,fr,1,5.450000E+00,1.574500E+00,4.918201E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +545280,fr,2,3.550000E+00,7.328590E+00,4.828753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999329E+01,0.000000E+00 +545281,fr,2,3.550000E+00,7.328590E+00,4.828753E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999329E+01,0.000000E+00 +545286,fr,1,3.550000E+00,7.328590E+00,4.828753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999321E+01,-9.000000E+01 +545289,fr,1,3.550000E+00,7.328590E+00,4.828753E+01,5.000000E+00,Active Shallow Crust,1.288955E+02,8.999329E+01,0.000000E+00 +545294,fr,1,3.650000E+00,7.328590E+00,4.828753E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998804E+01,0.000000E+00 +545303,fr,1,3.650000E+00,7.328590E+00,4.828753E+01,2.750000E+01,Active Shallow Crust,1.288995E+02,8.996356E+01,0.000000E+00 +545304,fr,1,3.750000E+00,7.328590E+00,4.828753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +545305,fr,1,3.750000E+00,7.328590E+00,4.828753E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +545306,fr,1,3.750000E+00,7.328590E+00,4.828753E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +545316,fr,4,3.850000E+00,7.328590E+00,4.828753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +545328,fr,1,3.950000E+00,7.328590E+00,4.828753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999153E+01,0.000000E+00 +545343,fr,1,4.050000E+00,7.328590E+00,4.828753E+01,5.000000E+00,Active Shallow Crust,2.400065E+02,5.800547E+01,0.000000E+00 +545352,fr,1,4.150000E+00,7.328590E+00,4.828753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +545376,fr,1,4.350000E+00,7.328590E+00,4.828753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +545388,fr,1,4.450000E+00,7.328590E+00,4.828753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +545424,fr,1,4.750000E+00,7.328590E+00,4.828753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +545426,fr,1,4.750000E+00,7.328590E+00,4.828753E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +546373,fr,1,4.650000E+00,-4.668200E-01,4.435601E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +546720,fr,1,3.550000E+00,3.177760E+00,4.810952E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +546723,fr,1,3.550000E+00,3.177760E+00,4.810952E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799870E+01,0.000000E+00 +546756,fr,1,3.850000E+00,3.177760E+00,4.810952E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +546792,fr,1,4.150000E+00,3.177760E+00,4.810952E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +546804,fr,1,4.250000E+00,3.177760E+00,4.810952E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +546805,fr,1,4.250000E+00,3.177760E+00,4.810952E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +547200,fr,3,3.550000E+00,7.215960E+00,4.750784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999319E+01,0.000000E+00 +547202,fr,1,3.550000E+00,7.215960E+00,4.750784E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999319E+01,0.000000E+00 +547206,fr,1,3.550000E+00,7.215960E+00,4.750784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999311E+01,-9.000000E+01 +547207,fr,1,3.550000E+00,7.215960E+00,4.750784E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999311E+01,-9.000000E+01 +547212,fr,4,3.650000E+00,7.215960E+00,4.750784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998786E+01,0.000000E+00 +547213,fr,2,3.650000E+00,7.215960E+00,4.750784E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998786E+01,0.000000E+00 +547216,fr,1,3.650000E+00,7.215960E+00,4.750784E+01,1.500000E+01,Active Shallow Crust,2.400021E+02,5.801199E+01,0.000000E+00 +547217,fr,1,3.650000E+00,7.215960E+00,4.750784E+01,2.750000E+01,Active Shallow Crust,2.400021E+02,5.801190E+01,0.000000E+00 +547218,fr,1,3.650000E+00,7.215960E+00,4.750784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998772E+01,-9.000000E+01 +547224,fr,2,3.750000E+00,7.215960E+00,4.750784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +547226,fr,1,3.750000E+00,7.215960E+00,4.750784E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +547228,fr,1,3.750000E+00,7.215960E+00,4.750784E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.801815E+01,0.000000E+00 +547230,fr,1,3.750000E+00,7.215960E+00,4.750784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998905E+01,-9.000000E+01 +547233,fr,1,3.750000E+00,7.215960E+00,4.750784E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996751E+01,0.000000E+00 +547239,fr,1,3.850000E+00,7.215960E+00,4.750784E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799695E+01,0.000000E+00 +547248,fr,1,3.950000E+00,7.215960E+00,4.750784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999140E+01,0.000000E+00 +547251,fr,1,3.950000E+00,7.215960E+00,4.750784E+01,5.000000E+00,Active Shallow Crust,2.400197E+02,5.800530E+01,0.000000E+00 +547254,fr,1,3.950000E+00,7.215960E+00,4.750784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999130E+01,-9.000000E+01 +547260,fr,2,4.050000E+00,7.215960E+00,4.750784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998851E+01,0.000000E+00 +547261,fr,1,4.050000E+00,7.215960E+00,4.750784E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998851E+01,0.000000E+00 +547274,fr,1,4.150000E+00,7.215960E+00,4.750784E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +547277,fr,1,4.150000E+00,7.215960E+00,4.750784E+01,2.750000E+01,Active Shallow Crust,2.400087E+02,5.799679E+01,0.000000E+00 +547284,fr,1,4.250000E+00,7.215960E+00,4.750784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +547286,fr,1,4.250000E+00,7.215960E+00,4.750784E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +547290,fr,1,4.250000E+00,7.215960E+00,4.750784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999077E+01,-9.000000E+01 +547296,fr,2,4.350000E+00,7.215960E+00,4.750784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998915E+01,0.000000E+00 +547309,fr,1,4.450000E+00,7.215960E+00,4.750784E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +547320,fr,1,4.550000E+00,7.215960E+00,4.750784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +547344,fr,2,4.750000E+00,7.215960E+00,4.750784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +547368,fr,1,4.950000E+00,7.215960E+00,4.750784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +547374,fr,1,4.950000E+00,7.215960E+00,4.750784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,-9.000000E+01 +547382,fr,1,5.050000E+00,7.215960E+00,4.750784E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +547680,fr,1,3.550000E+00,5.759440E+00,4.745701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999318E+01,0.000000E+00 +547686,fr,1,3.550000E+00,5.759440E+00,4.745701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999310E+01,-9.000000E+01 +547693,fr,2,3.650000E+00,5.759440E+00,4.745701E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998785E+01,0.000000E+00 +547703,fr,1,3.650000E+00,5.759440E+00,4.745701E+01,2.750000E+01,Active Shallow Crust,1.289012E+02,8.996291E+01,0.000000E+00 +547713,fr,1,3.750000E+00,5.759440E+00,4.745701E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.996751E+01,0.000000E+00 +547720,fr,1,3.850000E+00,5.759440E+00,4.745701E+01,1.500000E+01,Active Shallow Crust,2.400119E+02,5.799788E+01,0.000000E+00 +547728,fr,1,3.950000E+00,5.759440E+00,4.745701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999139E+01,0.000000E+00 +547741,fr,1,4.050000E+00,5.759440E+00,4.745701E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998849E+01,0.000000E+00 +547746,fr,1,4.050000E+00,5.759440E+00,4.745701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998837E+01,-9.000000E+01 +547753,fr,1,4.150000E+00,5.759440E+00,4.745701E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +547764,fr,1,4.250000E+00,5.759440E+00,4.745701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +547767,fr,1,4.250000E+00,5.759440E+00,4.745701E+01,5.000000E+00,Active Shallow Crust,2.400075E+02,5.799453E+01,0.000000E+00 +547777,fr,1,4.350000E+00,5.759440E+00,4.745701E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +547794,fr,1,4.450000E+00,5.759440E+00,4.745701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,-9.000000E+01 +547825,fr,1,4.750000E+00,5.759440E+00,4.745701E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +547831,fr,1,4.750000E+00,5.759440E+00,4.745701E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998960E+01,-9.000000E+01 +547944,fr,1,5.750000E+00,5.759440E+00,4.745701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +548160,fr,11,3.550000E+00,8.462580E+00,4.751709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998638E+01,0.000000E+00 +548161,fr,2,3.550000E+00,8.462580E+00,4.751709E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998638E+01,0.000000E+00 +548163,fr,2,3.550000E+00,8.462580E+00,4.751709E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799848E+01,0.000000E+00 +548165,fr,1,3.550000E+00,8.462580E+00,4.751709E+01,2.750000E+01,Active Shallow Crust,2.400118E+02,5.799839E+01,0.000000E+00 +548166,fr,2,3.550000E+00,8.462580E+00,4.751709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998622E+01,-9.000000E+01 +548168,fr,2,3.550000E+00,8.462580E+00,4.751709E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998622E+01,-9.000000E+01 +548169,fr,1,3.550000E+00,8.462580E+00,4.751709E+01,5.000000E+00,Active Shallow Crust,1.288991E+02,8.999319E+01,0.000000E+00 +548172,fr,9,3.650000E+00,8.462580E+00,4.751709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998786E+01,0.000000E+00 +548173,fr,4,3.650000E+00,8.462580E+00,4.751709E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998786E+01,0.000000E+00 +548174,fr,1,3.650000E+00,8.462580E+00,4.751709E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998786E+01,0.000000E+00 +548175,fr,4,3.650000E+00,8.462580E+00,4.751709E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801312E+01,0.000000E+00 +548178,fr,3,3.650000E+00,8.462580E+00,4.751709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998772E+01,-9.000000E+01 +548184,fr,7,3.750000E+00,8.462580E+00,4.751709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +548185,fr,4,3.750000E+00,8.462580E+00,4.751709E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +548194,fr,1,3.750000E+00,8.462580E+00,4.751709E+01,1.500000E+01,Active Shallow Crust,1.288967E+02,8.996751E+01,0.000000E+00 +548196,fr,3,3.850000E+00,8.462580E+00,4.751709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +548197,fr,9,3.850000E+00,8.462580E+00,4.751709E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +548199,fr,1,3.850000E+00,8.462580E+00,4.751709E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.799911E+01,0.000000E+00 +548200,fr,1,3.850000E+00,8.462580E+00,4.751709E+01,1.500000E+01,Active Shallow Crust,2.400089E+02,5.799911E+01,0.000000E+00 +548205,fr,1,3.850000E+00,8.462580E+00,4.751709E+01,5.000000E+00,Active Shallow Crust,1.288951E+02,8.999518E+01,0.000000E+00 +548208,fr,3,3.950000E+00,8.462580E+00,4.751709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999141E+01,0.000000E+00 +548209,fr,1,3.950000E+00,8.462580E+00,4.751709E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999141E+01,0.000000E+00 +548214,fr,2,3.950000E+00,8.462580E+00,4.751709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999130E+01,-9.000000E+01 +548218,fr,1,3.950000E+00,8.462580E+00,4.751709E+01,1.500000E+01,Active Shallow Crust,1.289013E+02,8.999141E+01,0.000000E+00 +548219,fr,1,3.950000E+00,8.462580E+00,4.751709E+01,2.750000E+01,Active Shallow Crust,1.289013E+02,8.999141E+01,0.000000E+00 +548220,fr,3,4.050000E+00,8.462580E+00,4.751709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999234E+01,0.000000E+00 +548221,fr,2,4.050000E+00,8.462580E+00,4.751709E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999234E+01,0.000000E+00 +548229,fr,1,4.050000E+00,8.462580E+00,4.751709E+01,5.000000E+00,Active Shallow Crust,1.288919E+02,8.999234E+01,0.000000E+00 +548232,fr,2,4.150000E+00,8.462580E+00,4.751709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999317E+01,0.000000E+00 +548233,fr,1,4.150000E+00,8.462580E+00,4.751709E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999317E+01,0.000000E+00 +548244,fr,1,4.250000E+00,8.462580E+00,4.751709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998783E+01,0.000000E+00 +548245,fr,1,4.250000E+00,8.462580E+00,4.751709E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998783E+01,0.000000E+00 +548246,fr,1,4.250000E+00,8.462580E+00,4.751709E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998783E+01,0.000000E+00 +548247,fr,1,4.250000E+00,8.462580E+00,4.751709E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.799414E+01,0.000000E+00 +548254,fr,1,4.250000E+00,8.462580E+00,4.751709E+01,1.500000E+01,Active Shallow Crust,1.288931E+02,8.998099E+01,0.000000E+00 +548256,fr,1,4.350000E+00,8.462580E+00,4.751709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998915E+01,0.000000E+00 +548267,fr,1,4.350000E+00,8.462580E+00,4.751709E+01,2.750000E+01,Active Shallow Crust,1.288977E+02,8.998306E+01,0.000000E+00 +548268,fr,1,4.450000E+00,8.462580E+00,4.751709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +548280,fr,2,4.550000E+00,8.462580E+00,4.751709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999139E+01,0.000000E+00 +548292,fr,3,4.650000E+00,8.462580E+00,4.751709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998848E+01,0.000000E+00 +548304,fr,1,4.750000E+00,8.462580E+00,4.751709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +548305,fr,1,4.750000E+00,8.462580E+00,4.751709E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +548316,fr,2,4.850000E+00,8.462580E+00,4.751709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999085E+01,0.000000E+00 +548337,fr,1,4.950000E+00,8.462580E+00,4.751709E+01,5.000000E+00,Active Shallow Crust,1.288896E+02,8.998947E+01,0.000000E+00 +548340,fr,1,5.050000E+00,8.462580E+00,4.751709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +548345,fr,1,5.050000E+00,8.462580E+00,4.751709E+01,2.750000E+01,Active Shallow Crust,2.400227E+02,5.799776E+01,0.000000E+00 +548352,fr,1,5.150000E+00,8.462580E+00,4.751709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +548376,fr,1,5.350000E+00,8.462580E+00,4.751709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +548377,fr,1,5.350000E+00,8.462580E+00,4.751709E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +548385,fr,1,5.350000E+00,8.462580E+00,4.751709E+01,5.000000E+00,Active Shallow Crust,1.288826E+02,8.998820E+01,0.000000E+00 +548404,fr,1,5.550000E+00,8.462580E+00,4.751709E+01,1.500000E+01,Active Shallow Crust,2.400336E+02,5.799989E+01,0.000000E+00 +548412,fr,1,5.650000E+00,8.462580E+00,4.751709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +548487,fr,1,6.250000E+00,8.459584E+00,4.752060E+01,5.719927E+00,Active Shallow Crust,2.400743E+02,5.800012E+01,0.000000E+00 +548640,fr,6,3.550000E+00,1.029310E+00,4.244927E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +548641,fr,1,3.550000E+00,1.029310E+00,4.244927E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +548643,fr,2,3.550000E+00,1.029310E+00,4.244927E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799785E+01,0.000000E+00 +548644,fr,1,3.550000E+00,1.029310E+00,4.244927E+01,1.500000E+01,Active Shallow Crust,2.400120E+02,5.799785E+01,0.000000E+00 +548645,fr,1,3.550000E+00,1.029310E+00,4.244927E+01,2.750000E+01,Active Shallow Crust,2.400120E+02,5.799775E+01,0.000000E+00 +548646,fr,1,3.550000E+00,1.029310E+00,4.244927E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,-9.000000E+01 +548649,fr,1,3.550000E+00,1.029310E+00,4.244927E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999349E+01,0.000000E+00 +548652,fr,2,3.650000E+00,1.029310E+00,4.244927E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +548653,fr,1,3.650000E+00,1.029310E+00,4.244927E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +548655,fr,1,3.650000E+00,1.029310E+00,4.244927E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801279E+01,0.000000E+00 +548656,fr,1,3.650000E+00,1.029310E+00,4.244927E+01,1.500000E+01,Active Shallow Crust,2.400010E+02,5.801279E+01,0.000000E+00 +548658,fr,1,3.650000E+00,1.029310E+00,4.244927E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +548663,fr,1,3.650000E+00,1.029310E+00,4.244927E+01,2.750000E+01,Active Shallow Crust,1.289010E+02,8.996345E+01,0.000000E+00 +548664,fr,2,3.750000E+00,1.029310E+00,4.244927E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +548665,fr,3,3.750000E+00,1.029310E+00,4.244927E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +548676,fr,1,3.850000E+00,1.029310E+00,4.244927E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +548677,fr,1,3.850000E+00,1.029310E+00,4.244927E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +548682,fr,1,3.850000E+00,1.029310E+00,4.244927E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998934E+01,-9.000000E+01 +548688,fr,1,3.950000E+00,1.029310E+00,4.244927E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +548689,fr,1,3.950000E+00,1.029310E+00,4.244927E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +548691,fr,1,3.950000E+00,1.029310E+00,4.244927E+01,5.000000E+00,Active Shallow Crust,2.400193E+02,5.800501E+01,0.000000E+00 +548694,fr,1,3.950000E+00,1.029310E+00,4.244927E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999050E+01,-9.000000E+01 +548701,fr,1,4.050000E+00,1.029310E+00,4.244927E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +548724,fr,1,4.250000E+00,1.029310E+00,4.244927E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +548734,fr,1,4.250000E+00,1.029310E+00,4.244927E+01,1.500000E+01,Active Shallow Crust,1.288950E+02,8.998093E+01,0.000000E+00 +548749,fr,1,4.450000E+00,1.029310E+00,4.244927E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +548772,fr,1,4.650000E+00,1.029310E+00,4.244927E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +548784,fr,1,4.750000E+00,1.029310E+00,4.244927E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +548786,fr,1,4.750000E+00,1.029310E+00,4.244927E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +548808,fr,1,4.950000E+00,1.029310E+00,4.244927E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +548874,fr,1,5.450000E+00,1.029310E+00,4.244927E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +550584,fr,1,3.750000E+00,2.656780E+00,5.257048E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +550597,fr,1,3.850000E+00,2.656780E+00,5.257048E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998915E+01,0.000000E+00 +551124,fr,1,4.250000E+00,5.180500E+00,4.225152E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +551125,fr,1,4.250000E+00,5.180500E+00,4.225152E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +551520,fr,1,3.550000E+00,2.480270E+00,5.064678E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +551522,fr,1,3.550000E+00,2.480270E+00,5.064678E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +551525,fr,1,3.550000E+00,2.480270E+00,5.064678E+01,2.750000E+01,Active Shallow Crust,2.400131E+02,5.799793E+01,0.000000E+00 +551526,fr,1,3.550000E+00,2.480270E+00,5.064678E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,-9.000000E+01 +551532,fr,3,3.650000E+00,2.480270E+00,5.064678E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998860E+01,0.000000E+00 +551556,fr,1,3.850000E+00,2.480270E+00,5.064678E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +551557,fr,1,3.850000E+00,2.480270E+00,5.064678E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +551568,fr,1,3.950000E+00,2.480270E+00,5.064678E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +551605,fr,1,4.250000E+00,2.480270E+00,5.064678E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +551694,fr,1,4.950000E+00,2.480270E+00,5.064678E+01,5.000000E+00,Active Shallow Crust,3.599997E+02,8.999032E+01,-9.000000E+01 +552003,fr,1,3.550000E+00,3.232120E+00,4.950442E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799829E+01,0.000000E+00 +552004,fr,1,3.550000E+00,3.232120E+00,4.950442E+01,1.500000E+01,Active Shallow Crust,2.400121E+02,5.799829E+01,0.000000E+00 +552012,fr,1,3.650000E+00,3.232120E+00,4.950442E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999125E+01,0.000000E+00 +552050,fr,1,3.950000E+00,3.232120E+00,4.950442E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +552093,fr,1,4.250000E+00,3.232120E+00,4.950442E+01,5.000000E+00,Active Shallow Crust,1.288936E+02,8.998082E+01,0.000000E+00 +552216,fr,1,5.350000E+00,3.232120E+00,4.950442E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +552960,fr,1,3.550000E+00,-1.997340E+00,4.680548E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +552963,fr,2,3.550000E+00,-1.997340E+00,4.680548E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799802E+01,0.000000E+00 +552972,fr,1,3.650000E+00,-1.997340E+00,4.680548E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +552978,fr,1,3.650000E+00,-1.997340E+00,4.680548E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999067E+01,-9.000000E+01 +552980,fr,1,3.650000E+00,-1.997340E+00,4.680548E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999067E+01,-9.000000E+01 +552984,fr,1,3.750000E+00,-1.997340E+00,4.680548E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +552985,fr,1,3.750000E+00,-1.997340E+00,4.680548E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +552986,fr,1,3.750000E+00,-1.997340E+00,4.680548E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +553002,fr,1,3.850000E+00,-1.997340E+00,4.680548E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,-9.000000E+01 +553014,fr,1,3.950000E+00,-1.997340E+00,4.680548E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +553020,fr,1,4.050000E+00,-1.997340E+00,4.680548E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +553032,fr,1,4.150000E+00,-1.997340E+00,4.680548E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +553044,fr,1,4.250000E+00,-1.997340E+00,4.680548E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +553069,fr,1,4.450000E+00,-1.997340E+00,4.680548E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +553101,fr,1,4.650000E+00,-1.997340E+00,4.680548E+01,5.000000E+00,Active Shallow Crust,1.288909E+02,8.998699E+01,0.000000E+00 +553440,fr,3,3.550000E+00,1.232700E+00,4.718179E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +553441,fr,1,3.550000E+00,1.232700E+00,4.718179E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +553452,fr,2,3.650000E+00,1.232700E+00,4.718179E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +553453,fr,1,3.650000E+00,1.232700E+00,4.718179E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +553455,fr,1,3.650000E+00,1.232700E+00,4.718179E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801289E+01,0.000000E+00 +553456,fr,1,3.650000E+00,1.232700E+00,4.718179E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801289E+01,0.000000E+00 +553464,fr,1,3.750000E+00,1.232700E+00,4.718179E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +553489,fr,1,3.950000E+00,1.232700E+00,4.718179E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +553500,fr,1,4.050000E+00,1.232700E+00,4.718179E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +553521,fr,1,4.150000E+00,1.232700E+00,4.718179E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.999399E+01,0.000000E+00 +553525,fr,1,4.250000E+00,1.232700E+00,4.718179E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +553536,fr,1,4.350000E+00,1.232700E+00,4.718179E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +553608,fr,1,4.950000E+00,1.232700E+00,4.718179E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +553632,fr,1,5.150000E+00,1.232700E+00,4.718179E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +553956,fr,1,3.850000E+00,-4.352300E+00,4.957230E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +554400,fr,1,3.550000E+00,3.888690E+00,4.433739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +554406,fr,1,3.550000E+00,3.888690E+00,4.433739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998906E+01,-9.000000E+01 +554407,fr,1,3.550000E+00,3.888690E+00,4.433739E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998906E+01,-9.000000E+01 +554430,fr,1,3.750000E+00,3.888690E+00,4.433739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999131E+01,-9.000000E+01 +554449,fr,1,3.950000E+00,3.888690E+00,4.433739E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999090E+01,0.000000E+00 +554468,fr,1,4.050000E+00,3.888690E+00,4.433739E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,-9.000000E+01 +554484,fr,1,4.250000E+00,3.888690E+00,4.433739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +554485,fr,1,4.250000E+00,3.888690E+00,4.433739E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +554532,fr,1,4.650000E+00,3.888690E+00,4.433739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +554880,fr,1,3.550000E+00,4.927740E+00,4.772939E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999322E+01,0.000000E+00 +554881,fr,1,3.550000E+00,4.927740E+00,4.772939E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999322E+01,0.000000E+00 +554892,fr,1,3.650000E+00,4.927740E+00,4.772939E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998791E+01,0.000000E+00 +554896,fr,1,3.650000E+00,4.927740E+00,4.772939E+01,1.500000E+01,Active Shallow Crust,2.400014E+02,5.801229E+01,0.000000E+00 +554905,fr,2,3.750000E+00,4.927740E+00,4.772939E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +554913,fr,1,3.750000E+00,4.927740E+00,4.772939E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.996751E+01,0.000000E+00 +554918,fr,1,3.850000E+00,4.927740E+00,4.772939E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +554956,fr,1,4.150000E+00,4.927740E+00,4.772939E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.799739E+01,0.000000E+00 +555058,fr,1,4.950000E+00,4.927740E+00,4.772939E+01,1.500000E+01,Active Shallow Crust,1.288892E+02,8.998991E+01,0.000000E+00 +555384,fr,1,3.750000E+00,2.198950E+00,4.538610E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +555387,fr,1,3.750000E+00,2.198950E+00,4.538610E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801766E+01,0.000000E+00 +555410,fr,1,3.950000E+00,2.198950E+00,4.538610E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +555426,fr,1,4.050000E+00,2.198950E+00,4.538610E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,-9.000000E+01 +555441,fr,1,4.150000E+00,2.198950E+00,4.538610E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.999379E+01,0.000000E+00 +555450,fr,1,4.250000E+00,2.198950E+00,4.538610E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,-9.000000E+01 +555518,fr,1,4.850000E+00,2.198950E+00,4.538610E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +555840,fr,3,3.550000E+00,-2.706430E+00,4.782802E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +555842,fr,1,3.550000E+00,-2.706430E+00,4.782802E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +555850,fr,1,3.550000E+00,-2.706430E+00,4.782802E+01,1.500000E+01,Active Shallow Crust,1.288964E+02,8.999323E+01,0.000000E+00 +555852,fr,2,3.650000E+00,-2.706430E+00,4.782802E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999095E+01,0.000000E+00 +555854,fr,1,3.650000E+00,-2.706430E+00,4.782802E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999095E+01,0.000000E+00 +555855,fr,1,3.650000E+00,-2.706430E+00,4.782802E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801299E+01,0.000000E+00 +555864,fr,2,3.750000E+00,-2.706430E+00,4.782802E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +555865,fr,1,3.750000E+00,-2.706430E+00,4.782802E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +555869,fr,1,3.750000E+00,-2.706430E+00,4.782802E+01,2.750000E+01,Active Shallow Crust,2.400086E+02,5.801762E+01,0.000000E+00 +555879,fr,1,3.850000E+00,-2.706430E+00,4.782802E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799771E+01,0.000000E+00 +555883,fr,1,3.850000E+00,-2.706430E+00,4.782802E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,-9.000000E+01 +555888,fr,2,3.950000E+00,-2.706430E+00,4.782802E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +555889,fr,2,3.950000E+00,-2.706430E+00,4.782802E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +555915,fr,2,4.150000E+00,-2.706430E+00,4.782802E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.799734E+01,0.000000E+00 +555973,fr,1,4.650000E+00,-2.706430E+00,4.782802E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +556011,fr,1,4.950000E+00,-2.706430E+00,4.782802E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.800452E+01,0.000000E+00 +556021,fr,1,5.050000E+00,-2.706430E+00,4.782802E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +556332,fr,1,3.650000E+00,8.098600E+00,4.513375E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998732E+01,0.000000E+00 +556341,fr,1,3.650000E+00,8.098600E+00,4.513375E+01,5.000000E+00,Active Shallow Crust,1.289019E+02,8.996350E+01,0.000000E+00 +556357,fr,1,3.850000E+00,8.098600E+00,4.513375E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +556392,fr,1,4.150000E+00,8.098600E+00,4.513375E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999287E+01,0.000000E+00 +556464,fr,1,4.750000E+00,8.098600E+00,4.513375E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998928E+01,0.000000E+00 +556800,fr,1,3.550000E+00,5.772500E-01,4.926449E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +556824,fr,2,3.750000E+00,5.772500E-01,4.926449E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +556828,fr,1,3.750000E+00,5.772500E-01,4.926449E+01,1.500000E+01,Active Shallow Crust,2.400086E+02,5.801757E+01,0.000000E+00 +556833,fr,1,3.750000E+00,5.772500E-01,4.926449E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.996737E+01,0.000000E+00 +556836,fr,2,3.850000E+00,5.772500E-01,4.926449E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +556845,fr,1,3.850000E+00,5.772500E-01,4.926449E+01,5.000000E+00,Active Shallow Crust,1.288955E+02,8.999359E+01,0.000000E+00 +556860,fr,1,4.050000E+00,5.772500E-01,4.926449E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +556872,fr,1,4.150000E+00,5.772500E-01,4.926449E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +556920,fr,1,4.550000E+00,5.772500E-01,4.926449E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +557761,fr,1,3.550000E+00,3.085440E+00,5.091984E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +557769,fr,1,3.550000E+00,3.085440E+00,5.091984E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999364E+01,0.000000E+00 +557784,fr,2,3.750000E+00,3.085440E+00,5.091984E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +557785,fr,1,3.750000E+00,3.085440E+00,5.091984E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +557796,fr,2,3.850000E+00,3.085440E+00,5.091984E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +557809,fr,1,3.950000E+00,3.085440E+00,5.091984E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +557833,fr,1,4.150000E+00,3.085440E+00,5.091984E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +557841,fr,1,4.150000E+00,3.085440E+00,5.091984E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.999363E+01,0.000000E+00 +557898,fr,1,4.650000E+00,3.085440E+00,5.091984E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +557913,fr,1,4.750000E+00,3.085440E+00,5.091984E+01,5.000000E+00,Active Shallow Crust,1.288872E+02,8.998802E+01,0.000000E+00 +557958,fr,1,5.150000E+00,3.085440E+00,5.091984E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,-9.000000E+01 +558257,fr,1,3.650000E+00,3.905200E+00,4.897539E+01,2.750000E+01,Active Shallow Crust,2.400017E+02,5.801266E+01,0.000000E+00 +558336,fr,1,4.350000E+00,3.905200E+00,4.897539E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +558507,fr,1,5.750000E+00,3.905200E+00,4.897539E+01,5.000000E+00,Active Shallow Crust,2.400443E+02,5.800008E+01,0.000000E+00 +558721,fr,1,3.550000E+00,3.342710E+00,4.266336E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +558725,fr,2,3.550000E+00,3.342710E+00,4.266336E+01,2.750000E+01,Active Shallow Crust,2.400124E+02,5.799740E+01,0.000000E+00 +558731,fr,1,3.550000E+00,3.342710E+00,4.266336E+01,2.750000E+01,Active Shallow Crust,1.288960E+02,8.999444E+01,0.000000E+00 +558732,fr,1,3.650000E+00,3.342710E+00,4.266336E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +558735,fr,1,3.650000E+00,3.342710E+00,4.266336E+01,5.000000E+00,Active Shallow Crust,2.400003E+02,5.801311E+01,0.000000E+00 +558746,fr,1,3.750000E+00,3.342710E+00,4.266336E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +558762,fr,1,3.850000E+00,3.342710E+00,4.266336E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998938E+01,-9.000000E+01 +558763,fr,1,3.850000E+00,3.342710E+00,4.266336E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998938E+01,-9.000000E+01 +558781,fr,1,4.050000E+00,3.342710E+00,4.266336E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +558792,fr,1,4.150000E+00,3.342710E+00,4.266336E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999071E+01,0.000000E+00 +558804,fr,1,4.250000E+00,3.342710E+00,4.266336E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +559200,fr,1,3.550000E+00,2.794810E+00,5.013913E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +559231,fr,1,3.750000E+00,2.794810E+00,5.013913E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,-9.000000E+01 +559236,fr,1,3.850000E+00,2.794810E+00,5.013913E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999085E+01,0.000000E+00 +559299,fr,1,4.350000E+00,2.794810E+00,5.013913E+01,5.000000E+00,Active Shallow Crust,2.400094E+02,5.799598E+01,0.000000E+00 +559680,fr,12,3.550000E+00,7.532080E+00,4.767238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999321E+01,0.000000E+00 +559681,fr,1,3.550000E+00,7.532080E+00,4.767238E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999321E+01,0.000000E+00 +559682,fr,1,3.550000E+00,7.532080E+00,4.767238E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999321E+01,0.000000E+00 +559683,fr,3,3.550000E+00,7.532080E+00,4.767238E+01,5.000000E+00,Active Shallow Crust,2.400130E+02,5.799740E+01,0.000000E+00 +559684,fr,2,3.550000E+00,7.532080E+00,4.767238E+01,1.500000E+01,Active Shallow Crust,2.400130E+02,5.799740E+01,0.000000E+00 +559686,fr,1,3.550000E+00,7.532080E+00,4.767238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999313E+01,-9.000000E+01 +559687,fr,1,3.550000E+00,7.532080E+00,4.767238E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999313E+01,-9.000000E+01 +559689,fr,3,3.550000E+00,7.532080E+00,4.767238E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.999321E+01,0.000000E+00 +559690,fr,2,3.550000E+00,7.532080E+00,4.767238E+01,1.500000E+01,Active Shallow Crust,1.288968E+02,8.999321E+01,0.000000E+00 +559692,fr,16,3.650000E+00,7.532080E+00,4.767238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998790E+01,0.000000E+00 +559693,fr,3,3.650000E+00,7.532080E+00,4.767238E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998790E+01,0.000000E+00 +559694,fr,3,3.650000E+00,7.532080E+00,4.767238E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998790E+01,0.000000E+00 +559696,fr,2,3.650000E+00,7.532080E+00,4.767238E+01,1.500000E+01,Active Shallow Crust,2.400014E+02,5.801295E+01,0.000000E+00 +559698,fr,1,3.650000E+00,7.532080E+00,4.767238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998775E+01,-9.000000E+01 +559701,fr,2,3.650000E+00,7.532080E+00,4.767238E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.996355E+01,0.000000E+00 +559702,fr,1,3.650000E+00,7.532080E+00,4.767238E+01,1.500000E+01,Active Shallow Crust,1.289002E+02,8.996355E+01,0.000000E+00 +559703,fr,1,3.650000E+00,7.532080E+00,4.767238E+01,2.750000E+01,Active Shallow Crust,1.289002E+02,8.996355E+01,0.000000E+00 +559704,fr,6,3.750000E+00,7.532080E+00,4.767238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +559705,fr,4,3.750000E+00,7.532080E+00,4.767238E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +559706,fr,1,3.750000E+00,7.532080E+00,4.767238E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +559707,fr,2,3.750000E+00,7.532080E+00,4.767238E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.801777E+01,0.000000E+00 +559708,fr,1,3.750000E+00,7.532080E+00,4.767238E+01,1.500000E+01,Active Shallow Crust,2.400087E+02,5.801777E+01,0.000000E+00 +559711,fr,1,3.750000E+00,7.532080E+00,4.767238E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998909E+01,-9.000000E+01 +559713,fr,1,3.750000E+00,7.532080E+00,4.767238E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.996751E+01,0.000000E+00 +559716,fr,3,3.850000E+00,7.532080E+00,4.767238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +559718,fr,1,3.850000E+00,7.532080E+00,4.767238E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +559720,fr,1,3.850000E+00,7.532080E+00,4.767238E+01,1.500000E+01,Active Shallow Crust,2.400111E+02,5.799780E+01,0.000000E+00 +559721,fr,1,3.850000E+00,7.532080E+00,4.767238E+01,2.750000E+01,Active Shallow Crust,2.400111E+02,5.799780E+01,0.000000E+00 +559722,fr,2,3.850000E+00,7.532080E+00,4.767238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,-9.000000E+01 +559724,fr,1,3.850000E+00,7.532080E+00,4.767238E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,-9.000000E+01 +559725,fr,1,3.850000E+00,7.532080E+00,4.767238E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.999279E+01,0.000000E+00 +559728,fr,3,3.950000E+00,7.532080E+00,4.767238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999143E+01,0.000000E+00 +559730,fr,1,3.950000E+00,7.532080E+00,4.767238E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999143E+01,0.000000E+00 +559731,fr,1,3.950000E+00,7.532080E+00,4.767238E+01,5.000000E+00,Active Shallow Crust,2.400201E+02,5.800461E+01,0.000000E+00 +559732,fr,2,3.950000E+00,7.532080E+00,4.767238E+01,1.500000E+01,Active Shallow Crust,2.400201E+02,5.800461E+01,0.000000E+00 +559734,fr,2,3.950000E+00,7.532080E+00,4.767238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999133E+01,-9.000000E+01 +559735,fr,2,3.950000E+00,7.532080E+00,4.767238E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999133E+01,-9.000000E+01 +559739,fr,1,3.950000E+00,7.532080E+00,4.767238E+01,2.750000E+01,Active Shallow Crust,1.289009E+02,8.999358E+01,0.000000E+00 +559740,fr,4,4.050000E+00,7.532080E+00,4.767238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998854E+01,0.000000E+00 +559741,fr,1,4.050000E+00,7.532080E+00,4.767238E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998854E+01,0.000000E+00 +559742,fr,1,4.050000E+00,7.532080E+00,4.767238E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998854E+01,0.000000E+00 +559743,fr,3,4.050000E+00,7.532080E+00,4.767238E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.800520E+01,0.000000E+00 +559750,fr,1,4.050000E+00,7.532080E+00,4.767238E+01,1.500000E+01,Active Shallow Crust,1.288909E+02,8.999236E+01,0.000000E+00 +559752,fr,3,4.150000E+00,7.532080E+00,4.767238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +559753,fr,5,4.150000E+00,7.532080E+00,4.767238E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +559755,fr,1,4.150000E+00,7.532080E+00,4.767238E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799754E+01,0.000000E+00 +559758,fr,1,4.150000E+00,7.532080E+00,4.767238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,-9.000000E+01 +559761,fr,1,4.150000E+00,7.532080E+00,4.767238E+01,5.000000E+00,Active Shallow Crust,1.288978E+02,8.999319E+01,0.000000E+00 +559764,fr,2,4.250000E+00,7.532080E+00,4.767238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999090E+01,0.000000E+00 +559772,fr,1,4.250000E+00,7.532080E+00,4.767238E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999079E+01,-9.000000E+01 +559773,fr,2,4.250000E+00,7.532080E+00,4.767238E+01,5.000000E+00,Active Shallow Crust,1.288941E+02,8.998099E+01,0.000000E+00 +559776,fr,2,4.350000E+00,7.532080E+00,4.767238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998919E+01,0.000000E+00 +559777,fr,2,4.350000E+00,7.532080E+00,4.767238E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998919E+01,0.000000E+00 +559778,fr,1,4.350000E+00,7.532080E+00,4.767238E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998919E+01,0.000000E+00 +559780,fr,1,4.350000E+00,7.532080E+00,4.767238E+01,1.500000E+01,Active Shallow Crust,2.400089E+02,5.799594E+01,0.000000E+00 +559782,fr,1,4.350000E+00,7.532080E+00,4.767238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998906E+01,-9.000000E+01 +559784,fr,1,4.350000E+00,7.532080E+00,4.767238E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998906E+01,-9.000000E+01 +559785,fr,1,4.350000E+00,7.532080E+00,4.767238E+01,5.000000E+00,Active Shallow Crust,1.288975E+02,8.998258E+01,0.000000E+00 +559788,fr,1,4.450000E+00,7.532080E+00,4.767238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +559791,fr,1,4.450000E+00,7.532080E+00,4.767238E+01,5.000000E+00,Active Shallow Crust,2.400055E+02,5.799477E+01,0.000000E+00 +559794,fr,1,4.450000E+00,7.532080E+00,4.767238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,-9.000000E+01 +559798,fr,1,4.450000E+00,7.532080E+00,4.767238E+01,1.500000E+01,Active Shallow Crust,1.288916E+02,8.999398E+01,0.000000E+00 +559800,fr,1,4.550000E+00,7.532080E+00,4.767238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +559824,fr,1,4.750000E+00,7.532080E+00,4.767238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +559833,fr,2,4.750000E+00,7.532080E+00,4.767238E+01,5.000000E+00,Active Shallow Crust,1.288881E+02,8.998824E+01,0.000000E+00 +559836,fr,1,4.850000E+00,7.532080E+00,4.767238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +559839,fr,1,4.850000E+00,7.532080E+00,4.767238E+01,5.000000E+00,Active Shallow Crust,2.400177E+02,5.800230E+01,0.000000E+00 +559848,fr,2,4.950000E+00,7.532080E+00,4.767238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +559849,fr,1,4.950000E+00,7.532080E+00,4.767238E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +559896,fr,1,5.350000E+00,7.532080E+00,4.767238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +559921,fr,1,5.550000E+00,7.532080E+00,4.767238E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +560161,fr,1,3.550000E+00,2.896270E+00,4.111797E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998860E+01,0.000000E+00 +560166,fr,1,3.550000E+00,2.896270E+00,4.111797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998847E+01,-9.000000E+01 +560169,fr,1,3.550000E+00,2.896270E+00,4.111797E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.999240E+01,0.000000E+00 +560181,fr,1,3.650000E+00,2.896270E+00,4.111797E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.996370E+01,0.000000E+00 +560190,fr,1,3.750000E+00,2.896270E+00,4.111797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,-9.000000E+01 +560202,fr,1,3.850000E+00,2.896270E+00,4.111797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998912E+01,-9.000000E+01 +560289,fr,1,4.550000E+00,2.896270E+00,4.111797E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.998563E+01,0.000000E+00 +560640,fr,1,3.550000E+00,-2.413090E+00,4.879792E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +560652,fr,3,3.650000E+00,-2.413090E+00,4.879792E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999112E+01,0.000000E+00 +560653,fr,1,3.650000E+00,-2.413090E+00,4.879792E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999112E+01,0.000000E+00 +560664,fr,4,3.750000E+00,-2.413090E+00,4.879792E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +560673,fr,1,3.750000E+00,-2.413090E+00,4.879792E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.996729E+01,0.000000E+00 +560676,fr,2,3.850000E+00,-2.413090E+00,4.879792E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +560677,fr,1,3.850000E+00,-2.413090E+00,4.879792E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +560685,fr,1,3.850000E+00,-2.413090E+00,4.879792E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.999413E+01,0.000000E+00 +560688,fr,1,3.950000E+00,-2.413090E+00,4.879792E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +560694,fr,1,3.950000E+00,-2.413090E+00,4.879792E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,-9.000000E+01 +560711,fr,1,4.050000E+00,-2.413090E+00,4.879792E+01,2.750000E+01,Active Shallow Crust,1.288902E+02,8.999346E+01,0.000000E+00 +560750,fr,1,4.450000E+00,-2.413090E+00,4.879792E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +560752,fr,1,4.450000E+00,-2.413090E+00,4.879792E+01,1.500000E+01,Active Shallow Crust,2.400061E+02,5.799471E+01,0.000000E+00 +560760,fr,1,4.550000E+00,-2.413090E+00,4.879792E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +561132,fr,1,3.650000E+00,5.360980E+00,4.650318E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998763E+01,0.000000E+00 +561133,fr,1,3.650000E+00,5.360980E+00,4.650318E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998763E+01,0.000000E+00 +561156,fr,1,3.850000E+00,5.360980E+00,4.650318E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +561178,fr,1,3.950000E+00,5.360980E+00,4.650318E+01,1.500000E+01,Active Shallow Crust,1.289010E+02,8.999343E+01,0.000000E+00 +561246,fr,1,4.550000E+00,5.360980E+00,4.650318E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998890E+01,-9.000000E+01 +561264,fr,1,4.750000E+00,5.360980E+00,4.650318E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +561300,fr,1,5.050000E+00,5.360980E+00,4.650318E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +561600,fr,1,3.550000E+00,5.228470E+00,4.531361E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999291E+01,0.000000E+00 +561612,fr,1,3.650000E+00,5.228470E+00,4.531361E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998736E+01,0.000000E+00 +561614,fr,1,3.650000E+00,5.228470E+00,4.531361E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998736E+01,0.000000E+00 +561621,fr,1,3.650000E+00,5.228470E+00,4.531361E+01,5.000000E+00,Active Shallow Crust,1.289010E+02,8.996350E+01,0.000000E+00 +561624,fr,1,3.750000E+00,5.228470E+00,4.531361E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998873E+01,0.000000E+00 +561635,fr,1,3.750000E+00,5.228470E+00,4.531361E+01,2.750000E+01,Active Shallow Crust,1.288969E+02,8.996747E+01,0.000000E+00 +561648,fr,1,3.950000E+00,5.228470E+00,4.531361E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999105E+01,0.000000E+00 +561651,fr,1,3.950000E+00,5.228470E+00,4.531361E+01,5.000000E+00,Active Shallow Crust,2.400202E+02,5.800469E+01,0.000000E+00 +561660,fr,1,4.050000E+00,5.228470E+00,4.531361E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998804E+01,0.000000E+00 +561666,fr,1,4.050000E+00,5.228470E+00,4.531361E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999194E+01,-9.000000E+01 +561674,fr,1,4.150000E+00,5.228470E+00,4.531361E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +561684,fr,1,4.250000E+00,5.228470E+00,4.531361E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +561685,fr,1,4.250000E+00,5.228470E+00,4.531361E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +561708,fr,1,4.450000E+00,5.228470E+00,4.531361E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +562080,fr,1,3.550000E+00,-9.465000E-01,4.917343E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +562081,fr,1,3.550000E+00,-9.465000E-01,4.917343E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +562083,fr,1,3.550000E+00,-9.465000E-01,4.917343E+01,5.000000E+00,Active Shallow Crust,2.400126E+02,5.799818E+01,0.000000E+00 +562084,fr,1,3.550000E+00,-9.465000E-01,4.917343E+01,1.500000E+01,Active Shallow Crust,2.400126E+02,5.799818E+01,0.000000E+00 +562086,fr,1,3.550000E+00,-9.465000E-01,4.917343E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +562092,fr,1,3.650000E+00,-9.465000E-01,4.917343E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +562098,fr,1,3.650000E+00,-9.465000E-01,4.917343E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,-9.000000E+01 +562104,fr,1,3.750000E+00,-9.465000E-01,4.917343E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +562116,fr,1,3.850000E+00,-9.465000E-01,4.917343E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +562131,fr,1,3.950000E+00,-9.465000E-01,4.917343E+01,5.000000E+00,Active Shallow Crust,2.400202E+02,5.800512E+01,0.000000E+00 +562152,fr,1,4.150000E+00,-9.465000E-01,4.917343E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +562161,fr,1,4.150000E+00,-9.465000E-01,4.917343E+01,5.000000E+00,Active Shallow Crust,1.288971E+02,8.999380E+01,0.000000E+00 +563040,fr,1,3.550000E+00,7.710100E-01,4.887915E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +563043,fr,2,3.550000E+00,7.710100E-01,4.887915E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799813E+01,0.000000E+00 +563055,fr,1,3.650000E+00,7.710100E-01,4.887915E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801286E+01,0.000000E+00 +563064,fr,2,3.750000E+00,7.710100E-01,4.887915E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +563124,fr,1,4.250000E+00,7.710100E-01,4.887915E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +563196,fr,1,4.850000E+00,7.710100E-01,4.887915E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +563301,fr,1,5.650000E+00,7.710100E-01,4.887915E+01,5.000000E+00,Active Shallow Crust,1.288730E+02,8.999046E+01,0.000000E+00 +564000,fr,2,3.550000E+00,-6.919100E-01,4.583293E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +564013,fr,1,3.650000E+00,-6.919100E-01,4.583293E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +564024,fr,3,3.750000E+00,-6.919100E-01,4.583293E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +564049,fr,1,3.950000E+00,-6.919100E-01,4.583293E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +564060,fr,1,4.050000E+00,-6.919100E-01,4.583293E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +564067,fr,1,4.050000E+00,-6.919100E-01,4.583293E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +564069,fr,1,4.050000E+00,-6.919100E-01,4.583293E+01,5.000000E+00,Active Shallow Crust,1.288906E+02,8.999383E+01,0.000000E+00 +564127,fr,1,4.550000E+00,-6.919100E-01,4.583293E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +564480,fr,1,3.550000E+00,3.766350E+00,4.679470E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +564481,fr,1,3.550000E+00,3.766350E+00,4.679470E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +564492,fr,1,3.650000E+00,3.766350E+00,4.679470E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999077E+01,0.000000E+00 +564493,fr,1,3.650000E+00,3.766350E+00,4.679470E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999077E+01,0.000000E+00 +564528,fr,1,3.950000E+00,3.766350E+00,4.679470E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +564541,fr,1,4.050000E+00,3.766350E+00,4.679470E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +564652,fr,1,4.950000E+00,3.766350E+00,4.679470E+01,1.500000E+01,Active Shallow Crust,2.400122E+02,5.800444E+01,0.000000E+00 +564969,fr,1,3.550000E+00,-3.326280E+00,4.447127E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.999281E+01,0.000000E+00 +565440,fr,2,3.550000E+00,7.364100E-01,4.953589E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +565441,fr,1,3.550000E+00,7.364100E-01,4.953589E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +565444,fr,1,3.550000E+00,7.364100E-01,4.953589E+01,1.500000E+01,Active Shallow Crust,2.400125E+02,5.799827E+01,0.000000E+00 +565452,fr,1,3.650000E+00,7.364100E-01,4.953589E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +565464,fr,1,3.750000E+00,7.364100E-01,4.953589E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +565500,fr,1,4.050000E+00,7.364100E-01,4.953589E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +565501,fr,1,4.050000E+00,7.364100E-01,4.953589E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +565506,fr,1,4.050000E+00,7.364100E-01,4.953589E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,-9.000000E+01 +565512,fr,1,4.150000E+00,7.364100E-01,4.953589E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +565536,fr,1,4.350000E+00,7.364100E-01,4.953589E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +565537,fr,1,4.350000E+00,7.364100E-01,4.953589E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +565561,fr,1,4.550000E+00,7.364100E-01,4.953589E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +565930,fr,1,3.550000E+00,3.446470E+00,4.147032E+01,1.500000E+01,Active Shallow Crust,1.288962E+02,8.999433E+01,0.000000E+00 +565932,fr,1,3.650000E+00,3.446470E+00,4.147032E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +565935,fr,1,3.650000E+00,3.446470E+00,4.147032E+01,5.000000E+00,Active Shallow Crust,2.400003E+02,5.801306E+01,0.000000E+00 +565944,fr,1,3.750000E+00,3.446470E+00,4.147032E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +565953,fr,1,3.750000E+00,3.446470E+00,4.147032E+01,5.000000E+00,Active Shallow Crust,1.288971E+02,8.996741E+01,0.000000E+00 +565957,fr,1,3.850000E+00,3.446470E+00,4.147032E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +565959,fr,1,3.850000E+00,3.446470E+00,4.147032E+01,5.000000E+00,Active Shallow Crust,2.400103E+02,5.799771E+01,0.000000E+00 +565976,fr,1,3.950000E+00,3.446470E+00,4.147032E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,-9.000000E+01 +566023,fr,1,4.350000E+00,3.446470E+00,4.147032E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998935E+01,-9.000000E+01 +566065,fr,1,4.750000E+00,3.446470E+00,4.147032E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +566400,fr,3,3.550000E+00,7.002800E+00,5.112157E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998734E+01,0.000000E+00 +566403,fr,1,3.550000E+00,7.002800E+00,5.112157E+01,5.000000E+00,Active Shallow Crust,2.400132E+02,5.799822E+01,0.000000E+00 +566412,fr,1,3.650000E+00,7.002800E+00,5.112157E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +566424,fr,1,3.750000E+00,7.002800E+00,5.112157E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +566436,fr,1,3.850000E+00,7.002800E+00,5.112157E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +566437,fr,1,3.850000E+00,7.002800E+00,5.112157E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +566473,fr,1,4.150000E+00,7.002800E+00,5.112157E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +566880,fr,1,3.550000E+00,1.089670E+00,4.942187E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +566883,fr,1,3.550000E+00,1.089670E+00,4.942187E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799822E+01,0.000000E+00 +566889,fr,1,3.550000E+00,1.089670E+00,4.942187E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999344E+01,0.000000E+00 +566893,fr,1,3.650000E+00,1.089670E+00,4.942187E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +566895,fr,1,3.650000E+00,1.089670E+00,4.942187E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801297E+01,0.000000E+00 +566905,fr,1,3.750000E+00,1.089670E+00,4.942187E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +566906,fr,1,3.750000E+00,1.089670E+00,4.942187E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +566933,fr,1,3.950000E+00,1.089670E+00,4.942187E+01,2.750000E+01,Active Shallow Crust,2.400202E+02,5.800513E+01,0.000000E+00 +566952,fr,1,4.150000E+00,1.089670E+00,4.942187E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +566953,fr,1,4.150000E+00,1.089670E+00,4.942187E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +566979,fr,1,4.350000E+00,1.089670E+00,4.942187E+01,5.000000E+00,Active Shallow Crust,2.400092E+02,5.799617E+01,0.000000E+00 +566992,fr,1,4.450000E+00,1.089670E+00,4.942187E+01,1.500000E+01,Active Shallow Crust,2.400062E+02,5.799473E+01,0.000000E+00 +567000,fr,1,4.550000E+00,1.089670E+00,4.942187E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +567043,fr,1,4.850000E+00,1.089670E+00,4.942187E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +567360,fr,2,3.550000E+00,1.722020E+00,4.627863E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +567362,fr,1,3.550000E+00,1.722020E+00,4.627863E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +567363,fr,1,3.550000E+00,1.722020E+00,4.627863E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799804E+01,0.000000E+00 +567366,fr,1,3.550000E+00,1.722020E+00,4.627863E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,-9.000000E+01 +567372,fr,2,3.650000E+00,1.722020E+00,4.627863E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +567375,fr,1,3.650000E+00,1.722020E+00,4.627863E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801283E+01,0.000000E+00 +567384,fr,1,3.750000E+00,1.722020E+00,4.627863E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +567386,fr,1,3.750000E+00,1.722020E+00,4.627863E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +567396,fr,2,3.850000E+00,1.722020E+00,4.627863E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +567408,fr,1,3.950000E+00,1.722020E+00,4.627863E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +567412,fr,1,3.950000E+00,1.722020E+00,4.627863E+01,1.500000E+01,Active Shallow Crust,2.400198E+02,5.800497E+01,0.000000E+00 +567426,fr,1,4.050000E+00,1.722020E+00,4.627863E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +567567,fr,1,5.250000E+00,1.722020E+00,4.627863E+01,5.000000E+00,Active Shallow Crust,2.400253E+02,5.800026E+01,0.000000E+00 +567898,fr,1,3.950000E+00,4.481510E+00,4.893309E+01,1.500000E+01,Active Shallow Crust,1.289001E+02,8.999373E+01,0.000000E+00 +568848,fr,1,3.950000E+00,3.380310E+00,4.877126E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +569362,fr,1,4.150000E+00,6.763260E+00,4.898049E+01,1.500000E+01,Active Shallow Crust,1.288964E+02,8.999503E+01,0.000000E+00 +569412,fr,1,4.650000E+00,6.763260E+00,4.898049E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999067E+01,0.000000E+00 +569760,fr,2,3.550000E+00,6.985600E+00,4.368231E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999271E+01,0.000000E+00 +569763,fr,1,3.550000E+00,6.985600E+00,4.368231E+01,5.000000E+00,Active Shallow Crust,2.400103E+02,5.799889E+01,0.000000E+00 +569775,fr,1,3.650000E+00,6.985600E+00,4.368231E+01,5.000000E+00,Active Shallow Crust,2.400018E+02,5.801215E+01,0.000000E+00 +569802,fr,1,3.850000E+00,6.985600E+00,4.368231E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,-9.000000E+01 +569808,fr,1,3.950000E+00,6.985600E+00,4.368231E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999080E+01,0.000000E+00 +569823,fr,1,4.050000E+00,6.985600E+00,4.368231E+01,5.000000E+00,Active Shallow Crust,2.400064E+02,5.800541E+01,0.000000E+00 +569834,fr,1,4.150000E+00,6.985600E+00,4.368231E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +569856,fr,1,4.350000E+00,6.985600E+00,4.368231E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +569880,fr,1,4.550000E+00,6.985600E+00,4.368231E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +569913,fr,1,4.750000E+00,6.985600E+00,4.368231E+01,5.000000E+00,Active Shallow Crust,1.288895E+02,8.998801E+01,0.000000E+00 +570721,fr,1,3.550000E+00,4.279880E+00,4.699823E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999313E+01,0.000000E+00 +570723,fr,1,3.550000E+00,4.279880E+00,4.699823E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799779E+01,0.000000E+00 +570732,fr,1,3.650000E+00,4.279880E+00,4.699823E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998774E+01,0.000000E+00 +570742,fr,1,3.650000E+00,4.279880E+00,4.699823E+01,1.500000E+01,Active Shallow Crust,1.289003E+02,8.996353E+01,0.000000E+00 +570747,fr,1,3.750000E+00,4.279880E+00,4.699823E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.801846E+01,0.000000E+00 +570756,fr,1,3.850000E+00,4.279880E+00,4.699823E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +570757,fr,1,3.850000E+00,4.279880E+00,4.699823E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +570759,fr,1,3.850000E+00,4.279880E+00,4.699823E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799766E+01,0.000000E+00 +570769,fr,1,3.950000E+00,4.279880E+00,4.699823E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999132E+01,0.000000E+00 +570777,fr,1,3.950000E+00,4.279880E+00,4.699823E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.999349E+01,0.000000E+00 +570787,fr,1,4.050000E+00,4.279880E+00,4.699823E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998827E+01,-9.000000E+01 +570793,fr,1,4.150000E+00,4.279880E+00,4.699823E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +570805,fr,1,4.250000E+00,4.279880E+00,4.699823E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +570888,fr,1,4.950000E+00,4.279880E+00,4.699823E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +570900,fr,1,5.050000E+00,4.279880E+00,4.699823E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +570912,fr,1,5.150000E+00,4.279880E+00,4.699823E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +571200,fr,1,3.550000E+00,2.012340E+00,5.024340E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +571203,fr,1,3.550000E+00,2.012340E+00,5.024340E+01,5.000000E+00,Active Shallow Crust,2.400126E+02,5.799761E+01,0.000000E+00 +571212,fr,3,3.650000E+00,2.012340E+00,5.024340E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999138E+01,0.000000E+00 +571236,fr,1,3.850000E+00,2.012340E+00,5.024340E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999087E+01,0.000000E+00 +571243,fr,1,3.850000E+00,2.012340E+00,5.024340E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999076E+01,-9.000000E+01 +571248,fr,1,3.950000E+00,2.012340E+00,5.024340E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +571249,fr,1,3.950000E+00,2.012340E+00,5.024340E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +571272,fr,1,4.150000E+00,2.012340E+00,5.024340E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +571309,fr,1,4.450000E+00,2.012340E+00,5.024340E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +571332,fr,1,4.650000E+00,2.012340E+00,5.024340E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +571680,fr,1,3.550000E+00,-1.829620E+00,4.353219E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +571689,fr,1,3.550000E+00,-1.829620E+00,4.353219E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999451E+01,0.000000E+00 +571719,fr,1,3.850000E+00,-1.829620E+00,4.353219E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.799783E+01,0.000000E+00 +571753,fr,1,4.150000E+00,-1.829620E+00,4.353219E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +571785,fr,1,4.350000E+00,-1.829620E+00,4.353219E+01,5.000000E+00,Active Shallow Crust,1.288985E+02,8.998266E+01,0.000000E+00 +572163,fr,1,3.550000E+00,8.437140E+00,4.595779E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.799983E+01,0.000000E+00 +572175,fr,1,3.650000E+00,8.437140E+00,4.595779E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801233E+01,0.000000E+00 +572205,fr,1,3.850000E+00,8.437140E+00,4.595779E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999504E+01,0.000000E+00 +572208,fr,1,3.950000E+00,8.437140E+00,4.595779E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999115E+01,0.000000E+00 +572307,fr,1,4.750000E+00,8.437140E+00,4.595779E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.800446E+01,0.000000E+00 +572640,fr,4,3.550000E+00,8.485710E+00,4.992663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998701E+01,0.000000E+00 +572647,fr,1,3.550000E+00,8.485710E+00,4.992663E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998687E+01,-9.000000E+01 +572648,fr,1,3.550000E+00,8.485710E+00,4.992663E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998687E+01,-9.000000E+01 +572652,fr,4,3.650000E+00,8.485710E+00,4.992663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +572657,fr,1,3.650000E+00,8.485710E+00,4.992663E+01,2.750000E+01,Active Shallow Crust,2.400002E+02,5.801249E+01,0.000000E+00 +572659,fr,1,3.650000E+00,8.485710E+00,4.992663E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998830E+01,-9.000000E+01 +572661,fr,1,3.650000E+00,8.485710E+00,4.992663E+01,5.000000E+00,Active Shallow Crust,1.289011E+02,8.996359E+01,0.000000E+00 +572664,fr,3,3.750000E+00,8.485710E+00,4.992663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +572666,fr,1,3.750000E+00,8.485710E+00,4.992663E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +572671,fr,1,3.750000E+00,8.485710E+00,4.992663E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998957E+01,-9.000000E+01 +572673,fr,2,3.750000E+00,8.485710E+00,4.992663E+01,5.000000E+00,Active Shallow Crust,1.288985E+02,8.996635E+01,0.000000E+00 +572676,fr,1,3.850000E+00,8.485710E+00,4.992663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +572679,fr,1,3.850000E+00,8.485710E+00,4.992663E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799822E+01,0.000000E+00 +572682,fr,1,3.850000E+00,8.485710E+00,4.992663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,-9.000000E+01 +572694,fr,1,3.950000E+00,8.485710E+00,4.992663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999171E+01,-9.000000E+01 +572701,fr,1,4.050000E+00,8.485710E+00,4.992663E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999270E+01,0.000000E+00 +572703,fr,1,4.050000E+00,8.485710E+00,4.992663E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.800649E+01,0.000000E+00 +572712,fr,1,4.150000E+00,8.485710E+00,4.992663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998698E+01,0.000000E+00 +572724,fr,2,4.250000E+00,8.485710E+00,4.992663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998840E+01,0.000000E+00 +572739,fr,1,4.350000E+00,8.485710E+00,4.992663E+01,5.000000E+00,Active Shallow Crust,2.400095E+02,5.799565E+01,0.000000E+00 +572772,fr,1,4.650000E+00,8.485710E+00,4.992663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998902E+01,0.000000E+00 +572773,fr,1,4.650000E+00,8.485710E+00,4.992663E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998902E+01,0.000000E+00 +572797,fr,1,4.850000E+00,8.485710E+00,4.992663E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999128E+01,0.000000E+00 +572808,fr,1,4.950000E+00,8.485710E+00,4.992663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +572868,fr,1,5.450000E+00,8.485710E+00,4.992663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +573120,fr,4,3.550000E+00,5.141550E+00,4.385104E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999273E+01,0.000000E+00 +573123,fr,1,3.550000E+00,5.141550E+00,4.385104E+01,5.000000E+00,Active Shallow Crust,2.400132E+02,5.799698E+01,0.000000E+00 +573124,fr,1,3.550000E+00,5.141550E+00,4.385104E+01,1.500000E+01,Active Shallow Crust,2.400132E+02,5.799698E+01,0.000000E+00 +573126,fr,1,3.550000E+00,5.141550E+00,4.385104E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999265E+01,-9.000000E+01 +573129,fr,2,3.550000E+00,5.141550E+00,4.385104E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.999273E+01,0.000000E+00 +573130,fr,1,3.550000E+00,5.141550E+00,4.385104E+01,1.500000E+01,Active Shallow Crust,1.288968E+02,8.999273E+01,0.000000E+00 +573132,fr,2,3.650000E+00,5.141550E+00,4.385104E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998704E+01,0.000000E+00 +573135,fr,1,3.650000E+00,5.141550E+00,4.385104E+01,5.000000E+00,Active Shallow Crust,2.400016E+02,5.801242E+01,0.000000E+00 +573143,fr,1,3.650000E+00,5.141550E+00,4.385104E+01,2.750000E+01,Active Shallow Crust,1.288999E+02,8.996347E+01,0.000000E+00 +573144,fr,1,3.750000E+00,5.141550E+00,4.385104E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998845E+01,0.000000E+00 +573145,fr,2,3.750000E+00,5.141550E+00,4.385104E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998845E+01,0.000000E+00 +573146,fr,1,3.750000E+00,5.141550E+00,4.385104E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998845E+01,0.000000E+00 +573153,fr,1,3.750000E+00,5.141550E+00,4.385104E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.996745E+01,0.000000E+00 +573156,fr,2,3.850000E+00,5.141550E+00,4.385104E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +573157,fr,1,3.850000E+00,5.141550E+00,4.385104E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +573160,fr,1,3.850000E+00,5.141550E+00,4.385104E+01,1.500000E+01,Active Shallow Crust,2.400102E+02,5.799730E+01,0.000000E+00 +573164,fr,1,3.850000E+00,5.141550E+00,4.385104E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +573168,fr,1,3.950000E+00,5.141550E+00,4.385104E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999082E+01,0.000000E+00 +573171,fr,1,3.950000E+00,5.141550E+00,4.385104E+01,5.000000E+00,Active Shallow Crust,2.400201E+02,5.800507E+01,0.000000E+00 +573192,fr,1,4.150000E+00,5.141550E+00,4.385104E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +573204,fr,1,4.250000E+00,5.141550E+00,4.385104E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +573205,fr,2,4.250000E+00,5.141550E+00,4.385104E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +573206,fr,1,4.250000E+00,5.141550E+00,4.385104E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +573214,fr,1,4.250000E+00,5.141550E+00,4.385104E+01,1.500000E+01,Active Shallow Crust,1.288949E+02,8.998085E+01,0.000000E+00 +573217,fr,1,4.350000E+00,5.141550E+00,4.385104E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999132E+01,0.000000E+00 +573238,fr,1,4.450000E+00,5.141550E+00,4.385104E+01,1.500000E+01,Active Shallow Crust,1.288921E+02,8.999484E+01,0.000000E+00 +573254,fr,1,4.650000E+00,5.141550E+00,4.385104E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +573411,fr,1,5.950000E+00,5.141550E+00,4.385104E+01,5.000000E+00,Active Shallow Crust,2.400474E+02,5.799993E+01,0.000000E+00 +573607,fr,1,3.550000E+00,-2.773360E+00,4.231097E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998869E+01,-9.000000E+01 +573624,fr,1,3.750000E+00,-2.773360E+00,4.231097E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999111E+01,0.000000E+00 +573630,fr,1,3.750000E+00,-2.773360E+00,4.231097E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999101E+01,-9.000000E+01 +573636,fr,1,3.850000E+00,-2.773360E+00,4.231097E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +573678,fr,1,4.150000E+00,-2.773360E+00,4.231097E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,-9.000000E+01 +573687,fr,1,4.250000E+00,-2.773360E+00,4.231097E+01,5.000000E+00,Active Shallow Crust,2.400066E+02,5.799408E+01,0.000000E+00 +573693,fr,1,4.250000E+00,-2.773360E+00,4.231097E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.998079E+01,0.000000E+00 +574081,fr,1,3.550000E+00,9.540060E+00,4.902735E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998678E+01,0.000000E+00 +574107,fr,1,3.750000E+00,9.540060E+00,4.902735E+01,5.000000E+00,Active Shallow Crust,2.400065E+02,5.801856E+01,0.000000E+00 +574572,fr,1,3.650000E+00,4.043890E+00,5.170753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998886E+01,0.000000E+00 +574692,fr,1,4.650000E+00,4.043890E+00,5.170753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +575040,fr,1,3.550000E+00,2.830880E+00,5.052759E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +575052,fr,1,3.650000E+00,2.830880E+00,5.052759E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998857E+01,0.000000E+00 +575055,fr,1,3.650000E+00,2.830880E+00,5.052759E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801325E+01,0.000000E+00 +575064,fr,2,3.750000E+00,2.830880E+00,5.052759E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +575076,fr,2,3.850000E+00,2.830880E+00,5.052759E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999092E+01,0.000000E+00 +575088,fr,1,3.950000E+00,2.830880E+00,5.052759E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +575113,fr,1,4.150000E+00,2.830880E+00,5.052759E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +575115,fr,1,4.150000E+00,2.830880E+00,5.052759E+01,5.000000E+00,Active Shallow Crust,2.400093E+02,5.799760E+01,0.000000E+00 +575158,fr,1,4.450000E+00,2.830880E+00,5.052759E+01,1.500000E+01,Active Shallow Crust,1.288913E+02,8.999374E+01,0.000000E+00 +575234,fr,1,5.150000E+00,2.830880E+00,5.052759E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +575542,fr,1,3.650000E+00,1.095850E+00,4.367768E+01,1.500000E+01,Active Shallow Crust,1.289003E+02,8.996361E+01,0.000000E+00 +575556,fr,1,3.850000E+00,1.095850E+00,4.367768E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +576114,fr,1,4.450000E+00,6.342340E+00,4.293652E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,-9.000000E+01 +576481,fr,2,3.550000E+00,2.190100E+00,4.710288E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +576504,fr,1,3.750000E+00,2.190100E+00,4.710288E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +576510,fr,1,3.750000E+00,2.190100E+00,4.710288E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998897E+01,-9.000000E+01 +576516,fr,1,3.850000E+00,2.190100E+00,4.710288E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +576518,fr,1,3.850000E+00,2.190100E+00,4.710288E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +576543,fr,1,4.050000E+00,2.190100E+00,4.710288E+01,5.000000E+00,Active Shallow Crust,2.400061E+02,5.800605E+01,0.000000E+00 +576553,fr,1,4.150000E+00,2.190100E+00,4.710288E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +576684,fr,1,5.250000E+00,2.190100E+00,4.710288E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +576980,fr,1,3.650000E+00,-2.632480E+00,4.918305E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999109E+01,-9.000000E+01 +576985,fr,1,3.750000E+00,-2.632480E+00,4.918305E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +576986,fr,1,3.750000E+00,-2.632480E+00,4.918305E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +577012,fr,1,3.950000E+00,-2.632480E+00,4.918305E+01,1.500000E+01,Active Shallow Crust,2.400203E+02,5.800494E+01,0.000000E+00 +577032,fr,2,4.150000E+00,-2.632480E+00,4.918305E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +577036,fr,1,4.150000E+00,-2.632480E+00,4.918305E+01,1.500000E+01,Active Shallow Crust,2.400091E+02,5.799738E+01,0.000000E+00 +577041,fr,1,4.150000E+00,-2.632480E+00,4.918305E+01,5.000000E+00,Active Shallow Crust,1.288973E+02,8.999339E+01,0.000000E+00 +577049,fr,1,4.250000E+00,-2.632480E+00,4.918305E+01,2.750000E+01,Active Shallow Crust,2.400079E+02,5.799430E+01,0.000000E+00 +577098,fr,1,4.650000E+00,-2.632480E+00,4.918305E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,-9.000000E+01 +577440,fr,2,3.550000E+00,5.353010E+00,4.454120E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999281E+01,0.000000E+00 +577452,fr,1,3.650000E+00,5.353010E+00,4.454120E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998719E+01,0.000000E+00 +577453,fr,1,3.650000E+00,5.353010E+00,4.454120E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998719E+01,0.000000E+00 +577464,fr,2,3.750000E+00,5.353010E+00,4.454120E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998858E+01,0.000000E+00 +577476,fr,1,3.850000E+00,5.353010E+00,4.454120E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +577488,fr,1,3.950000E+00,5.353010E+00,4.454120E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +577512,fr,1,4.150000E+00,5.353010E+00,4.454120E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +577527,fr,1,4.250000E+00,5.353010E+00,4.454120E+01,5.000000E+00,Active Shallow Crust,2.400072E+02,5.799455E+01,0.000000E+00 +577536,fr,1,4.350000E+00,5.353010E+00,4.454120E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +577581,fr,1,4.650000E+00,5.353010E+00,4.454120E+01,5.000000E+00,Active Shallow Crust,1.288914E+02,8.998711E+01,0.000000E+00 +577920,fr,2,3.550000E+00,1.204110E+00,4.784445E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +577944,fr,1,3.750000E+00,1.204110E+00,4.784445E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +577947,fr,1,3.750000E+00,1.204110E+00,4.784445E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801766E+01,0.000000E+00 +577956,fr,3,3.850000E+00,1.204110E+00,4.784445E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +578424,fr,1,3.750000E+00,5.517000E-02,4.235479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +578437,fr,1,3.850000E+00,5.517000E-02,4.235479E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +578439,fr,1,3.850000E+00,5.517000E-02,4.235479E+01,5.000000E+00,Active Shallow Crust,2.400103E+02,5.799771E+01,0.000000E+00 +578445,fr,1,3.850000E+00,5.517000E-02,4.235479E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999371E+01,0.000000E+00 +578463,fr,1,4.050000E+00,5.517000E-02,4.235479E+01,5.000000E+00,Active Shallow Crust,2.400053E+02,5.800571E+01,0.000000E+00 +578484,fr,1,4.250000E+00,5.517000E-02,4.235479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +578488,fr,1,4.250000E+00,5.517000E-02,4.235479E+01,1.500000E+01,Active Shallow Crust,2.400067E+02,5.799393E+01,0.000000E+00 +578499,fr,1,4.350000E+00,5.517000E-02,4.235479E+01,5.000000E+00,Active Shallow Crust,2.400075E+02,5.799578E+01,0.000000E+00 +578676,fr,1,5.850000E+00,5.517000E-02,4.235479E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +578880,fr,3,3.550000E+00,4.642730E+00,4.365031E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999271E+01,0.000000E+00 +578881,fr,1,3.550000E+00,4.642730E+00,4.365031E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999271E+01,0.000000E+00 +578904,fr,1,3.750000E+00,4.642730E+00,4.365031E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998841E+01,0.000000E+00 +578905,fr,1,3.750000E+00,4.642730E+00,4.365031E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998841E+01,0.000000E+00 +578910,fr,1,3.750000E+00,4.642730E+00,4.365031E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998827E+01,-9.000000E+01 +578917,fr,1,3.850000E+00,4.642730E+00,4.365031E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +578920,fr,1,3.850000E+00,4.642730E+00,4.365031E+01,1.500000E+01,Active Shallow Crust,2.400108E+02,5.799758E+01,0.000000E+00 +578928,fr,2,3.950000E+00,4.642730E+00,4.365031E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999079E+01,0.000000E+00 +578931,fr,1,3.950000E+00,4.642730E+00,4.365031E+01,5.000000E+00,Active Shallow Crust,2.400194E+02,5.800394E+01,0.000000E+00 +578934,fr,1,3.950000E+00,4.642730E+00,4.365031E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,-9.000000E+01 +578940,fr,2,4.050000E+00,4.642730E+00,4.365031E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999179E+01,0.000000E+00 +578952,fr,1,4.150000E+00,4.642730E+00,4.365031E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998903E+01,0.000000E+00 +578985,fr,1,4.350000E+00,4.642730E+00,4.365031E+01,5.000000E+00,Active Shallow Crust,1.288984E+02,8.998238E+01,0.000000E+00 +578988,fr,1,4.450000E+00,4.642730E+00,4.365031E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +579001,fr,1,4.550000E+00,4.642730E+00,4.365031E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999077E+01,0.000000E+00 +579012,fr,1,4.650000E+00,4.642730E+00,4.365031E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +579360,fr,1,3.550000E+00,5.455200E-01,4.593102E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +579363,fr,1,3.550000E+00,5.455200E-01,4.593102E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799821E+01,0.000000E+00 +579372,fr,3,3.650000E+00,5.455200E-01,4.593102E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +579377,fr,1,3.650000E+00,5.455200E-01,4.593102E+01,2.750000E+01,Active Shallow Crust,2.400009E+02,5.801294E+01,0.000000E+00 +579418,fr,1,3.950000E+00,5.455200E-01,4.593102E+01,1.500000E+01,Active Shallow Crust,1.289005E+02,8.999364E+01,0.000000E+00 +579419,fr,1,3.950000E+00,5.455200E-01,4.593102E+01,2.750000E+01,Active Shallow Crust,1.289005E+02,8.999364E+01,0.000000E+00 +579422,fr,1,4.050000E+00,5.455200E-01,4.593102E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +579426,fr,1,4.050000E+00,5.455200E-01,4.593102E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +579438,fr,1,4.150000E+00,5.455200E-01,4.593102E+01,5.000000E+00,Active Shallow Crust,3.599998E+02,8.999022E+01,-9.000000E+01 +579504,fr,1,4.750000E+00,5.455200E-01,4.593102E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +579554,fr,1,5.150000E+00,5.455200E-01,4.593102E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +579853,fr,1,3.650000E+00,3.530340E+00,4.572477E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +579864,fr,1,3.750000E+00,3.530340E+00,4.572477E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +579876,fr,1,3.850000E+00,3.530340E+00,4.572477E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +579877,fr,1,3.850000E+00,3.530340E+00,4.572477E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +579900,fr,1,4.050000E+00,3.530340E+00,4.572477E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +579912,fr,1,4.150000E+00,3.530340E+00,4.572477E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +579927,fr,1,4.250000E+00,3.530340E+00,4.572477E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799377E+01,0.000000E+00 +579990,fr,1,4.750000E+00,3.530340E+00,4.572477E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,-9.000000E+01 +580017,fr,1,4.950000E+00,3.530340E+00,4.572477E+01,5.000000E+00,Active Shallow Crust,1.288901E+02,8.998977E+01,0.000000E+00 +580320,fr,2,3.550000E+00,7.914680E+00,5.061024E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998720E+01,0.000000E+00 +580329,fr,1,3.550000E+00,7.914680E+00,5.061024E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999360E+01,0.000000E+00 +580335,fr,1,3.650000E+00,7.914680E+00,5.061024E+01,5.000000E+00,Active Shallow Crust,2.400017E+02,5.801244E+01,0.000000E+00 +580346,fr,1,3.750000E+00,7.914680E+00,5.061024E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +580347,fr,1,3.750000E+00,7.914680E+00,5.061024E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.801775E+01,0.000000E+00 +580356,fr,1,3.850000E+00,7.914680E+00,5.061024E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +580382,fr,1,4.050000E+00,7.914680E+00,5.061024E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +580801,fr,1,3.550000E+00,6.564100E+00,5.020628E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998709E+01,0.000000E+00 +580815,fr,1,3.650000E+00,6.564100E+00,5.020628E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801342E+01,0.000000E+00 +580824,fr,1,3.750000E+00,6.564100E+00,5.020628E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +580847,fr,1,3.850000E+00,6.564100E+00,5.020628E+01,2.750000E+01,Active Shallow Crust,1.288941E+02,8.999543E+01,0.000000E+00 +580849,fr,1,3.950000E+00,6.564100E+00,5.020628E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999185E+01,0.000000E+00 +580850,fr,1,3.950000E+00,6.564100E+00,5.020628E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999185E+01,0.000000E+00 +581302,fr,1,3.650000E+00,-3.251810E+00,4.378530E+01,1.500000E+01,Active Shallow Crust,1.289006E+02,8.996347E+01,0.000000E+00 +581304,fr,1,3.750000E+00,-3.251810E+00,4.378530E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +581350,fr,1,4.050000E+00,-3.251810E+00,4.378530E+01,1.500000E+01,Active Shallow Crust,1.288911E+02,8.999386E+01,0.000000E+00 +581352,fr,1,4.150000E+00,-3.251810E+00,4.378530E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +581760,fr,1,3.550000E+00,6.118940E+00,4.801408E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999326E+01,0.000000E+00 +581772,fr,1,3.650000E+00,6.118940E+00,4.801408E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998798E+01,0.000000E+00 +581776,fr,1,3.650000E+00,6.118940E+00,4.801408E+01,1.500000E+01,Active Shallow Crust,2.400008E+02,5.801315E+01,0.000000E+00 +581787,fr,1,3.750000E+00,6.118940E+00,4.801408E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801801E+01,0.000000E+00 +581820,fr,1,4.050000E+00,6.118940E+00,4.801408E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +581877,fr,1,4.450000E+00,6.118940E+00,4.801408E+01,5.000000E+00,Active Shallow Crust,1.288920E+02,8.999402E+01,0.000000E+00 +581935,fr,1,4.950000E+00,6.118940E+00,4.801408E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999047E+01,-9.000000E+01 +582241,fr,1,3.550000E+00,-6.513740E+00,4.769912E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999321E+01,0.000000E+00 +582720,fr,3,3.550000E+00,6.526160E+00,4.389438E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999274E+01,0.000000E+00 +582721,fr,1,3.550000E+00,6.526160E+00,4.389438E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999274E+01,0.000000E+00 +582732,fr,3,3.650000E+00,6.526160E+00,4.389438E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998705E+01,0.000000E+00 +582756,fr,1,3.850000E+00,6.526160E+00,4.389438E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +582762,fr,1,3.850000E+00,6.526160E+00,4.389438E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +582780,fr,1,4.050000E+00,6.526160E+00,4.389438E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999183E+01,0.000000E+00 +582781,fr,2,4.050000E+00,6.526160E+00,4.389438E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999183E+01,0.000000E+00 +582795,fr,1,4.150000E+00,6.526160E+00,4.389438E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799678E+01,0.000000E+00 +582816,fr,1,4.350000E+00,6.526160E+00,4.389438E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999132E+01,0.000000E+00 +582828,fr,1,4.450000E+00,6.526160E+00,4.389438E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +582852,fr,1,4.650000E+00,6.526160E+00,4.389438E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +582864,fr,2,4.750000E+00,6.526160E+00,4.389438E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +582936,fr,1,5.350000E+00,6.526160E+00,4.389438E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +583681,fr,1,3.550000E+00,-3.886470E+00,4.880433E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +583699,fr,1,3.650000E+00,-3.886470E+00,4.880433E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999102E+01,-9.000000E+01 +583714,fr,1,3.750000E+00,-3.886470E+00,4.880433E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.996729E+01,0.000000E+00 +583728,fr,1,3.950000E+00,-3.886470E+00,4.880433E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +583741,fr,1,4.050000E+00,-3.886470E+00,4.880433E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +583767,fr,1,4.250000E+00,-3.886470E+00,4.880433E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799424E+01,0.000000E+00 +583797,fr,1,4.450000E+00,-3.886470E+00,4.880433E+01,5.000000E+00,Active Shallow Crust,1.288919E+02,8.999352E+01,0.000000E+00 +583806,fr,1,4.550000E+00,-3.886470E+00,4.880433E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,-9.000000E+01 +584173,fr,1,3.650000E+00,5.571940E+00,5.179658E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +584184,fr,1,3.750000E+00,5.571940E+00,5.179658E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +584245,fr,1,4.250000E+00,5.571940E+00,5.179658E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +584272,fr,1,4.450000E+00,5.571940E+00,5.179658E+01,1.500000E+01,Active Shallow Crust,2.400067E+02,5.799527E+01,0.000000E+00 +584641,fr,1,3.550000E+00,1.276780E+00,5.008466E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +584664,fr,1,3.750000E+00,1.276780E+00,5.008466E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +584676,fr,1,3.850000E+00,1.276780E+00,5.008466E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +584680,fr,1,3.850000E+00,1.276780E+00,5.008466E+01,1.500000E+01,Active Shallow Crust,2.400114E+02,5.799798E+01,0.000000E+00 +584736,fr,1,4.350000E+00,1.276780E+00,5.008466E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +584832,fr,1,5.150000E+00,1.276780E+00,5.008466E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +585120,fr,1,3.550000E+00,8.031770E+00,4.565270E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998590E+01,0.000000E+00 +585121,fr,1,3.550000E+00,8.031770E+00,4.565270E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998590E+01,0.000000E+00 +585130,fr,1,3.550000E+00,8.031770E+00,4.565270E+01,1.500000E+01,Active Shallow Crust,1.288976E+02,8.999295E+01,0.000000E+00 +585132,fr,3,3.650000E+00,8.031770E+00,4.565270E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998743E+01,0.000000E+00 +585138,fr,2,3.650000E+00,8.031770E+00,4.565270E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998729E+01,-9.000000E+01 +585144,fr,2,3.750000E+00,8.031770E+00,4.565270E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998880E+01,0.000000E+00 +585156,fr,1,3.850000E+00,8.031770E+00,4.565270E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +585163,fr,1,3.850000E+00,8.031770E+00,4.565270E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +585169,fr,1,3.950000E+00,8.031770E+00,4.565270E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +585172,fr,2,3.950000E+00,8.031770E+00,4.565270E+01,1.500000E+01,Active Shallow Crust,2.400215E+02,5.800372E+01,0.000000E+00 +585180,fr,1,4.050000E+00,8.031770E+00,4.565270E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999207E+01,0.000000E+00 +585192,fr,1,4.150000E+00,8.031770E+00,4.565270E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999294E+01,0.000000E+00 +585196,fr,1,4.150000E+00,8.031770E+00,4.565270E+01,1.500000E+01,Active Shallow Crust,2.400083E+02,5.799740E+01,0.000000E+00 +585204,fr,2,4.250000E+00,8.031770E+00,4.565270E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998740E+01,0.000000E+00 +585208,fr,1,4.250000E+00,8.031770E+00,4.565270E+01,1.500000E+01,Active Shallow Crust,2.400077E+02,5.799448E+01,0.000000E+00 +585267,fr,1,4.750000E+00,8.031770E+00,4.565270E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.800439E+01,0.000000E+00 +585614,fr,1,3.650000E+00,-2.106500E-01,4.219020E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +585636,fr,2,3.850000E+00,-2.106500E-01,4.219020E+01,5.000000E+00,Active Shallow Crust,3.599999E+02,8.999008E+01,0.000000E+00 +586092,fr,1,3.650000E+00,1.190940E+00,5.099143E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +586104,fr,1,3.750000E+00,1.190940E+00,5.099143E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +586105,fr,2,3.750000E+00,1.190940E+00,5.099143E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +586107,fr,1,3.750000E+00,1.190940E+00,5.099143E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.801768E+01,0.000000E+00 +586117,fr,1,3.850000E+00,1.190940E+00,5.099143E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +586122,fr,1,3.850000E+00,1.190940E+00,5.099143E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,-9.000000E+01 +586125,fr,1,3.850000E+00,1.190940E+00,5.099143E+01,5.000000E+00,Active Shallow Crust,1.288949E+02,8.999382E+01,0.000000E+00 +586131,fr,1,3.950000E+00,1.190940E+00,5.099143E+01,5.000000E+00,Active Shallow Crust,2.400204E+02,5.800519E+01,0.000000E+00 +586176,fr,1,4.350000E+00,1.190940E+00,5.099143E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +586578,fr,1,3.650000E+00,2.546230E+00,4.360457E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,-9.000000E+01 +586608,fr,1,3.950000E+00,2.546230E+00,4.360457E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +586680,fr,1,4.550000E+00,2.546230E+00,4.360457E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +587042,fr,1,3.550000E+00,9.935200E-01,4.783241E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +587052,fr,1,3.650000E+00,9.935200E-01,4.783241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +587053,fr,1,3.650000E+00,9.935200E-01,4.783241E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +587058,fr,1,3.650000E+00,9.935200E-01,4.783241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,-9.000000E+01 +587068,fr,1,3.750000E+00,9.935200E-01,4.783241E+01,1.500000E+01,Active Shallow Crust,2.400085E+02,5.801759E+01,0.000000E+00 +587106,fr,1,4.050000E+00,9.935200E-01,4.783241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,-9.000000E+01 +587127,fr,1,4.250000E+00,9.935200E-01,4.783241E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.799406E+01,0.000000E+00 +587187,fr,1,4.750000E+00,9.935200E-01,4.783241E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.800457E+01,0.000000E+00 +587520,fr,2,3.550000E+00,5.747310E+00,4.616486E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999302E+01,0.000000E+00 +587521,fr,1,3.550000E+00,5.747310E+00,4.616486E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999302E+01,0.000000E+00 +587523,fr,1,3.550000E+00,5.747310E+00,4.616486E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799875E+01,0.000000E+00 +587524,fr,1,3.550000E+00,5.747310E+00,4.616486E+01,1.500000E+01,Active Shallow Crust,2.400121E+02,5.799875E+01,0.000000E+00 +587532,fr,1,3.650000E+00,5.747310E+00,4.616486E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998755E+01,0.000000E+00 +587533,fr,1,3.650000E+00,5.747310E+00,4.616486E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998755E+01,0.000000E+00 +587541,fr,1,3.650000E+00,5.747310E+00,4.616486E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.996352E+01,0.000000E+00 +587545,fr,1,3.750000E+00,5.747310E+00,4.616486E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +587547,fr,1,3.750000E+00,5.747310E+00,4.616486E+01,5.000000E+00,Active Shallow Crust,2.400092E+02,5.801755E+01,0.000000E+00 +587551,fr,1,3.750000E+00,5.747310E+00,4.616486E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998878E+01,-9.000000E+01 +587565,fr,1,3.850000E+00,5.747310E+00,4.616486E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999258E+01,0.000000E+00 +587567,fr,1,3.850000E+00,5.747310E+00,4.616486E+01,2.750000E+01,Active Shallow Crust,1.288956E+02,8.999258E+01,0.000000E+00 +587569,fr,1,3.950000E+00,5.747310E+00,4.616486E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999119E+01,0.000000E+00 +587580,fr,1,4.050000E+00,5.747310E+00,4.616486E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998822E+01,0.000000E+00 +587595,fr,1,4.150000E+00,5.747310E+00,4.616486E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799714E+01,0.000000E+00 +587598,fr,2,4.150000E+00,5.747310E+00,4.616486E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998938E+01,-9.000000E+01 +587604,fr,2,4.250000E+00,5.747310E+00,4.616486E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +587616,fr,1,4.350000E+00,5.747310E+00,4.616486E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +587629,fr,1,4.450000E+00,5.747310E+00,4.616486E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +587652,fr,1,4.650000E+00,5.747310E+00,4.616486E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +588002,fr,2,3.550000E+00,6.637280E+00,4.310618E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999264E+01,0.000000E+00 +588228,fr,1,5.450000E+00,6.637280E+00,4.310618E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +588483,fr,1,3.550000E+00,6.703500E-01,4.834438E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799833E+01,0.000000E+00 +588486,fr,1,3.550000E+00,6.703500E-01,4.834438E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,-9.000000E+01 +588517,fr,1,3.850000E+00,6.703500E-01,4.834438E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +588963,fr,2,3.550000E+00,3.215300E-01,4.251824E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799805E+01,0.000000E+00 +588966,fr,1,3.550000E+00,3.215300E-01,4.251824E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +588975,fr,2,3.650000E+00,3.215300E-01,4.251824E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801277E+01,0.000000E+00 +588977,fr,1,3.650000E+00,3.215300E-01,4.251824E+01,2.750000E+01,Active Shallow Crust,2.400008E+02,5.801268E+01,0.000000E+00 +588981,fr,3,3.650000E+00,3.215300E-01,4.251824E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996352E+01,0.000000E+00 +588984,fr,1,3.750000E+00,3.215300E-01,4.251824E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +588985,fr,1,3.750000E+00,3.215300E-01,4.251824E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +588990,fr,1,3.750000E+00,3.215300E-01,4.251824E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,-9.000000E+01 +588996,fr,1,3.850000E+00,3.215300E-01,4.251824E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +588997,fr,1,3.850000E+00,3.215300E-01,4.251824E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +589008,fr,1,3.950000E+00,3.215300E-01,4.251824E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +589015,fr,1,3.950000E+00,3.215300E-01,4.251824E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,-9.000000E+01 +589044,fr,2,4.250000E+00,3.215300E-01,4.251824E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +589047,fr,1,4.250000E+00,3.215300E-01,4.251824E+01,5.000000E+00,Active Shallow Crust,2.400068E+02,5.799390E+01,0.000000E+00 +589065,fr,1,4.350000E+00,3.215300E-01,4.251824E+01,5.000000E+00,Active Shallow Crust,1.288985E+02,8.998276E+01,0.000000E+00 +589070,fr,1,4.450000E+00,3.215300E-01,4.251824E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +589072,fr,1,4.450000E+00,3.215300E-01,4.251824E+01,1.500000E+01,Active Shallow Crust,2.400043E+02,5.799448E+01,0.000000E+00 +589084,fr,1,4.550000E+00,3.215300E-01,4.251824E+01,1.500000E+01,Active Shallow Crust,2.400082E+02,5.799717E+01,0.000000E+00 +589440,fr,3,3.550000E+00,7.587830E+00,4.401753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999275E+01,0.000000E+00 +589441,fr,1,3.550000E+00,7.587830E+00,4.401753E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999275E+01,0.000000E+00 +589443,fr,1,3.550000E+00,7.587830E+00,4.401753E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799960E+01,0.000000E+00 +589451,fr,1,3.550000E+00,7.587830E+00,4.401753E+01,2.750000E+01,Active Shallow Crust,1.288954E+02,8.999638E+01,0.000000E+00 +589452,fr,3,3.650000E+00,7.587830E+00,4.401753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998708E+01,0.000000E+00 +589453,fr,2,3.650000E+00,7.587830E+00,4.401753E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998708E+01,0.000000E+00 +589461,fr,2,3.650000E+00,7.587830E+00,4.401753E+01,5.000000E+00,Active Shallow Crust,1.289011E+02,8.996348E+01,0.000000E+00 +589464,fr,2,3.750000E+00,7.587830E+00,4.401753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998848E+01,0.000000E+00 +589465,fr,1,3.750000E+00,7.587830E+00,4.401753E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998848E+01,0.000000E+00 +589473,fr,1,3.750000E+00,7.587830E+00,4.401753E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.996745E+01,0.000000E+00 +589476,fr,5,3.850000E+00,7.587830E+00,4.401753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +589477,fr,2,3.850000E+00,7.587830E+00,4.401753E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +589483,fr,1,3.850000E+00,7.587830E+00,4.401753E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,-9.000000E+01 +589487,fr,1,3.850000E+00,7.587830E+00,4.401753E+01,2.750000E+01,Active Shallow Crust,1.288962E+02,8.999230E+01,0.000000E+00 +589491,fr,1,3.950000E+00,7.587830E+00,4.401753E+01,5.000000E+00,Active Shallow Crust,2.400194E+02,5.800560E+01,0.000000E+00 +589494,fr,1,3.950000E+00,7.587830E+00,4.401753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,-9.000000E+01 +589500,fr,1,4.050000E+00,7.587830E+00,4.401753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999184E+01,0.000000E+00 +589512,fr,1,4.150000E+00,7.587830E+00,4.401753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +589514,fr,1,4.150000E+00,7.587830E+00,4.401753E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +589536,fr,1,4.350000E+00,7.587830E+00,4.401753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999134E+01,0.000000E+00 +589548,fr,1,4.450000E+00,7.587830E+00,4.401753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +589561,fr,1,4.550000E+00,7.587830E+00,4.401753E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +589627,fr,1,5.050000E+00,7.587830E+00,4.401753E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,-9.000000E+01 +589633,fr,1,5.150000E+00,7.587830E+00,4.401753E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +589639,fr,1,5.150000E+00,7.587830E+00,4.401753E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998953E+01,-9.000000E+01 +589920,fr,3,3.550000E+00,2.883580E+00,4.627333E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +589924,fr,1,3.550000E+00,2.883580E+00,4.627333E+01,1.500000E+01,Active Shallow Crust,2.400128E+02,5.799816E+01,0.000000E+00 +589941,fr,1,3.650000E+00,2.883580E+00,4.627333E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.996352E+01,0.000000E+00 +589946,fr,1,3.750000E+00,2.883580E+00,4.627333E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998893E+01,0.000000E+00 +589956,fr,1,3.850000E+00,2.883580E+00,4.627333E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +589962,fr,1,3.850000E+00,2.883580E+00,4.627333E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +589982,fr,1,4.050000E+00,2.883580E+00,4.627333E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +589987,fr,1,4.050000E+00,2.883580E+00,4.627333E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +589993,fr,1,4.150000E+00,2.883580E+00,4.627333E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +590016,fr,1,4.350000E+00,2.883580E+00,4.627333E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +590028,fr,1,4.450000E+00,2.883580E+00,4.627333E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +590034,fr,1,4.450000E+00,2.883580E+00,4.627333E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +590415,fr,1,3.650000E+00,8.144900E-01,4.201990E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801290E+01,0.000000E+00 +590457,fr,1,3.950000E+00,8.144900E-01,4.201990E+01,5.000000E+00,Active Shallow Crust,1.289009E+02,8.999380E+01,0.000000E+00 +590487,fr,1,4.250000E+00,8.144900E-01,4.201990E+01,5.000000E+00,Active Shallow Crust,2.400067E+02,5.799384E+01,0.000000E+00 +590520,fr,1,4.550000E+00,8.144900E-01,4.201990E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +590547,fr,1,4.750000E+00,8.144900E-01,4.201990E+01,5.000000E+00,Active Shallow Crust,2.400060E+02,5.800418E+01,0.000000E+00 +590598,fr,1,5.150000E+00,8.144900E-01,4.201990E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +590919,fr,1,3.850000E+00,1.889730E+00,4.055496E+01,5.000000E+00,Active Shallow Crust,2.400102E+02,5.799763E+01,0.000000E+00 +590920,fr,1,3.850000E+00,1.889730E+00,4.055496E+01,1.500000E+01,Active Shallow Crust,2.400102E+02,5.799763E+01,0.000000E+00 +590989,fr,1,4.450000E+00,1.889730E+00,4.055496E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +591024,fr,1,4.750000E+00,1.889730E+00,4.055496E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +591072,fr,1,5.150000E+00,1.889730E+00,4.055496E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +591360,fr,2,3.550000E+00,2.289150E+00,4.276699E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998890E+01,0.000000E+00 +591361,fr,1,3.550000E+00,2.289150E+00,4.276699E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998890E+01,0.000000E+00 +591364,fr,1,3.550000E+00,2.289150E+00,4.276699E+01,1.500000E+01,Active Shallow Crust,2.400117E+02,5.799803E+01,0.000000E+00 +591372,fr,5,3.650000E+00,2.289150E+00,4.276699E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +591373,fr,1,3.650000E+00,2.289150E+00,4.276699E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +591376,fr,1,3.650000E+00,2.289150E+00,4.276699E+01,1.500000E+01,Active Shallow Crust,2.400001E+02,5.801266E+01,0.000000E+00 +591381,fr,1,3.650000E+00,2.289150E+00,4.276699E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.996346E+01,0.000000E+00 +591385,fr,1,3.750000E+00,2.289150E+00,4.276699E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999118E+01,0.000000E+00 +591389,fr,1,3.750000E+00,2.289150E+00,4.276699E+01,2.750000E+01,Active Shallow Crust,2.400076E+02,5.801733E+01,0.000000E+00 +591396,fr,1,3.850000E+00,2.289150E+00,4.276699E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +591397,fr,1,3.850000E+00,2.289150E+00,4.276699E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +591408,fr,1,3.950000E+00,2.289150E+00,4.276699E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +591419,fr,1,3.950000E+00,2.289150E+00,4.276699E+01,2.750000E+01,Active Shallow Crust,1.289005E+02,8.999416E+01,0.000000E+00 +591420,fr,1,4.050000E+00,2.289150E+00,4.276699E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +591432,fr,1,4.150000E+00,2.289150E+00,4.276699E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +591438,fr,1,4.150000E+00,2.289150E+00,4.276699E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,-9.000000E+01 +591439,fr,1,4.150000E+00,2.289150E+00,4.276699E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,-9.000000E+01 +591456,fr,2,4.350000E+00,2.289150E+00,4.276699E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +591468,fr,1,4.450000E+00,2.289150E+00,4.276699E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +591504,fr,1,4.750000E+00,2.289150E+00,4.276699E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +591540,fr,1,5.050000E+00,2.289150E+00,4.276699E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +591558,fr,1,5.150000E+00,2.289150E+00,4.276699E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +591840,fr,1,3.550000E+00,5.681510E+00,4.859234E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999333E+01,0.000000E+00 +591842,fr,1,3.550000E+00,5.681510E+00,4.859234E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999333E+01,0.000000E+00 +591872,fr,1,3.750000E+00,5.681510E+00,4.859234E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998928E+01,-9.000000E+01 +591912,fr,1,4.150000E+00,5.681510E+00,4.859234E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +591936,fr,1,4.350000E+00,5.681510E+00,4.859234E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +592324,fr,1,3.550000E+00,5.223840E+00,4.332953E+01,1.500000E+01,Active Shallow Crust,2.400126E+02,5.799693E+01,0.000000E+00 +592332,fr,2,3.650000E+00,5.223840E+00,4.332953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998692E+01,0.000000E+00 +592344,fr,1,3.750000E+00,5.223840E+00,4.332953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998835E+01,0.000000E+00 +592345,fr,1,3.750000E+00,5.223840E+00,4.332953E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998835E+01,0.000000E+00 +592356,fr,1,3.850000E+00,5.223840E+00,4.332953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +592357,fr,1,3.850000E+00,5.223840E+00,4.332953E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +592360,fr,1,3.850000E+00,5.223840E+00,4.332953E+01,1.500000E+01,Active Shallow Crust,2.400105E+02,5.799853E+01,0.000000E+00 +592368,fr,1,3.950000E+00,5.223840E+00,4.332953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +592380,fr,1,4.050000E+00,5.223840E+00,4.332953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999175E+01,0.000000E+00 +592392,fr,1,4.150000E+00,5.223840E+00,4.332953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998897E+01,0.000000E+00 +592393,fr,1,4.150000E+00,5.223840E+00,4.332953E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998897E+01,0.000000E+00 +592464,fr,1,4.750000E+00,5.223840E+00,4.332953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +592816,fr,1,3.650000E+00,4.971180E+00,4.811717E+01,1.500000E+01,Active Shallow Crust,2.400022E+02,5.801204E+01,0.000000E+00 +592822,fr,1,3.650000E+00,4.971180E+00,4.811717E+01,1.500000E+01,Active Shallow Crust,1.289004E+02,8.996355E+01,0.000000E+00 +592849,fr,2,3.950000E+00,4.971180E+00,4.811717E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999150E+01,0.000000E+00 +592851,fr,1,3.950000E+00,4.971180E+00,4.811717E+01,5.000000E+00,Active Shallow Crust,2.400193E+02,5.800564E+01,0.000000E+00 +592884,fr,2,4.250000E+00,4.971180E+00,4.811717E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +593283,fr,1,3.550000E+00,3.388840E+00,5.105437E+01,5.000000E+00,Active Shallow Crust,2.400128E+02,5.799760E+01,0.000000E+00 +593298,fr,1,3.650000E+00,3.388840E+00,5.105437E+01,5.000000E+00,Active Shallow Crust,3.599986E+02,8.999142E+01,-9.000000E+01 +593302,fr,1,3.650000E+00,3.388840E+00,5.105437E+01,1.500000E+01,Active Shallow Crust,1.288999E+02,8.996336E+01,0.000000E+00 +593304,fr,1,3.750000E+00,3.388840E+00,5.105437E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +593316,fr,1,3.850000E+00,3.388840E+00,5.105437E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999103E+01,0.000000E+00 +593322,fr,1,3.850000E+00,3.388840E+00,5.105437E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999092E+01,-9.000000E+01 +593340,fr,1,4.050000E+00,3.388840E+00,5.105437E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +593349,fr,1,4.050000E+00,3.388840E+00,5.105437E+01,5.000000E+00,Active Shallow Crust,1.288899E+02,8.999376E+01,0.000000E+00 +593350,fr,1,4.050000E+00,3.388840E+00,5.105437E+01,1.500000E+01,Active Shallow Crust,1.288899E+02,8.999376E+01,0.000000E+00 +593448,fr,1,4.950000E+00,3.388840E+00,5.105437E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +593760,fr,1,3.550000E+00,-6.185800E-01,4.597468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +593770,fr,1,3.550000E+00,-6.185800E-01,4.597468E+01,1.500000E+01,Active Shallow Crust,1.288964E+02,8.999343E+01,0.000000E+00 +593772,fr,2,3.650000E+00,-6.185800E-01,4.597468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +593783,fr,1,3.650000E+00,-6.185800E-01,4.597468E+01,2.750000E+01,Active Shallow Crust,1.289005E+02,8.996352E+01,0.000000E+00 +593784,fr,2,3.750000E+00,-6.185800E-01,4.597468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +593805,fr,1,3.850000E+00,-6.185800E-01,4.597468E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999380E+01,0.000000E+00 +593863,fr,1,4.350000E+00,-6.185800E-01,4.597468E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,-9.000000E+01 +593869,fr,1,4.450000E+00,-6.185800E-01,4.597468E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +593880,fr,1,4.550000E+00,-6.185800E-01,4.597468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +593914,fr,1,4.750000E+00,-6.185800E-01,4.597468E+01,1.500000E+01,Active Shallow Crust,1.288889E+02,8.998808E+01,0.000000E+00 +593985,fr,1,5.350000E+00,-6.185800E-01,4.597468E+01,5.000000E+00,Active Shallow Crust,1.288834E+02,8.998806E+01,0.000000E+00 +594240,fr,11,3.550000E+00,8.783750E+00,4.767876E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998642E+01,0.000000E+00 +594241,fr,1,3.550000E+00,8.783750E+00,4.767876E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998642E+01,0.000000E+00 +594242,fr,1,3.550000E+00,8.783750E+00,4.767876E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998642E+01,0.000000E+00 +594244,fr,2,3.550000E+00,8.783750E+00,4.767876E+01,1.500000E+01,Active Shallow Crust,2.400100E+02,5.799819E+01,0.000000E+00 +594246,fr,1,3.550000E+00,8.783750E+00,4.767876E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998627E+01,-9.000000E+01 +594247,fr,1,3.550000E+00,8.783750E+00,4.767876E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998627E+01,-9.000000E+01 +594249,fr,1,3.550000E+00,8.783750E+00,4.767876E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999321E+01,0.000000E+00 +594251,fr,1,3.550000E+00,8.783750E+00,4.767876E+01,2.750000E+01,Active Shallow Crust,1.288959E+02,8.999321E+01,0.000000E+00 +594252,fr,5,3.650000E+00,8.783750E+00,4.767876E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998790E+01,0.000000E+00 +594253,fr,3,3.650000E+00,8.783750E+00,4.767876E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998790E+01,0.000000E+00 +594254,fr,1,3.650000E+00,8.783750E+00,4.767876E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998790E+01,0.000000E+00 +594255,fr,3,3.650000E+00,8.783750E+00,4.767876E+01,5.000000E+00,Active Shallow Crust,2.400029E+02,5.801245E+01,0.000000E+00 +594256,fr,2,3.650000E+00,8.783750E+00,4.767876E+01,1.500000E+01,Active Shallow Crust,2.400029E+02,5.801245E+01,0.000000E+00 +594258,fr,2,3.650000E+00,8.783750E+00,4.767876E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998775E+01,-9.000000E+01 +594264,fr,7,3.750000E+00,8.783750E+00,4.767876E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +594265,fr,4,3.750000E+00,8.783750E+00,4.767876E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +594270,fr,1,3.750000E+00,8.783750E+00,4.767876E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998909E+01,-9.000000E+01 +594271,fr,1,3.750000E+00,8.783750E+00,4.767876E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998909E+01,-9.000000E+01 +594274,fr,1,3.750000E+00,8.783750E+00,4.767876E+01,1.500000E+01,Active Shallow Crust,1.288950E+02,8.996751E+01,0.000000E+00 +594276,fr,1,3.850000E+00,8.783750E+00,4.767876E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +594277,fr,1,3.850000E+00,8.783750E+00,4.767876E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +594279,fr,4,3.850000E+00,8.783750E+00,4.767876E+01,5.000000E+00,Active Shallow Crust,2.400093E+02,5.799858E+01,0.000000E+00 +594288,fr,1,3.950000E+00,8.783750E+00,4.767876E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999143E+01,0.000000E+00 +594289,fr,1,3.950000E+00,8.783750E+00,4.767876E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999143E+01,0.000000E+00 +594290,fr,1,3.950000E+00,8.783750E+00,4.767876E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999143E+01,0.000000E+00 +594301,fr,1,4.050000E+00,8.783750E+00,4.767876E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999236E+01,0.000000E+00 +594303,fr,1,4.050000E+00,8.783750E+00,4.767876E+01,5.000000E+00,Active Shallow Crust,2.400067E+02,5.800599E+01,0.000000E+00 +594304,fr,1,4.050000E+00,8.783750E+00,4.767876E+01,1.500000E+01,Active Shallow Crust,2.400067E+02,5.800596E+01,0.000000E+00 +594309,fr,1,4.050000E+00,8.783750E+00,4.767876E+01,5.000000E+00,Active Shallow Crust,1.288919E+02,8.999236E+01,0.000000E+00 +594312,fr,2,4.150000E+00,8.783750E+00,4.767876E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999319E+01,0.000000E+00 +594315,fr,1,4.150000E+00,8.783750E+00,4.767876E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799761E+01,0.000000E+00 +594329,fr,1,4.250000E+00,8.783750E+00,4.767876E+01,2.750000E+01,Active Shallow Crust,2.400082E+02,5.799472E+01,0.000000E+00 +594333,fr,1,4.250000E+00,8.783750E+00,4.767876E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.998099E+01,0.000000E+00 +594336,fr,5,4.350000E+00,8.783750E+00,4.767876E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998919E+01,0.000000E+00 +594339,fr,1,4.350000E+00,8.783750E+00,4.767876E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799615E+01,0.000000E+00 +594340,fr,1,4.350000E+00,8.783750E+00,4.767876E+01,1.500000E+01,Active Shallow Crust,2.400085E+02,5.799615E+01,0.000000E+00 +594348,fr,1,4.450000E+00,8.783750E+00,4.767876E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +594354,fr,1,4.450000E+00,8.783750E+00,4.767876E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,-9.000000E+01 +594360,fr,1,4.550000E+00,8.783750E+00,4.767876E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999141E+01,0.000000E+00 +594361,fr,2,4.550000E+00,8.783750E+00,4.767876E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999141E+01,0.000000E+00 +594363,fr,1,4.550000E+00,8.783750E+00,4.767876E+01,5.000000E+00,Active Shallow Crust,2.400094E+02,5.799749E+01,0.000000E+00 +594367,fr,1,4.550000E+00,8.783750E+00,4.767876E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999131E+01,-9.000000E+01 +594375,fr,1,4.650000E+00,8.783750E+00,4.767876E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799478E+01,0.000000E+00 +594376,fr,1,4.650000E+00,8.783750E+00,4.767876E+01,1.500000E+01,Active Shallow Crust,2.400111E+02,5.799478E+01,0.000000E+00 +594378,fr,1,4.650000E+00,8.783750E+00,4.767876E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998839E+01,-9.000000E+01 +594409,fr,1,4.950000E+00,8.783750E+00,4.767876E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +594456,fr,1,5.350000E+00,8.783750E+00,4.767876E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +594459,fr,1,5.350000E+00,8.783750E+00,4.767876E+01,5.000000E+00,Active Shallow Crust,2.400262E+02,5.799792E+01,0.000000E+00 +594483,fr,1,5.550000E+00,8.783750E+00,4.767876E+01,5.000000E+00,Active Shallow Crust,2.400340E+02,5.799960E+01,0.000000E+00 +594573,fr,1,6.250000E+00,8.783747E+00,4.767876E+01,6.744814E+00,Active Shallow Crust,1.288475E+02,8.999039E+01,0.000000E+00 +594588,fr,1,6.450000E+00,8.783757E+00,4.767876E+01,8.491219E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +594590,fr,1,6.450000E+00,8.783747E+00,4.767876E+01,2.650878E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +594745,fr,1,3.750000E+00,-2.557320E+00,4.972439E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +594853,fr,1,4.650000E+00,-2.557320E+00,4.972439E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +595200,fr,1,3.550000E+00,3.787390E+00,4.550268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +595213,fr,1,3.650000E+00,3.787390E+00,4.550268E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +595215,fr,1,3.650000E+00,3.787390E+00,4.550268E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801307E+01,0.000000E+00 +595224,fr,1,3.750000E+00,3.787390E+00,4.550268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998877E+01,0.000000E+00 +595233,fr,1,3.750000E+00,3.787390E+00,4.550268E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.996748E+01,0.000000E+00 +595236,fr,1,3.850000E+00,3.787390E+00,4.550268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +595237,fr,1,3.850000E+00,3.787390E+00,4.550268E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +595248,fr,1,3.950000E+00,3.787390E+00,4.550268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999108E+01,0.000000E+00 +595273,fr,1,4.150000E+00,3.787390E+00,4.550268E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +595290,fr,1,4.250000E+00,3.787390E+00,4.550268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,-9.000000E+01 +595309,fr,1,4.450000E+00,3.787390E+00,4.550268E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +595320,fr,1,4.550000E+00,3.787390E+00,4.550268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +595393,fr,1,5.150000E+00,3.787390E+00,4.550268E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +595680,fr,2,3.550000E+00,1.543720E+00,4.666776E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +595681,fr,1,3.550000E+00,1.543720E+00,4.666776E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +595684,fr,1,3.550000E+00,1.543720E+00,4.666776E+01,1.500000E+01,Active Shallow Crust,2.400123E+02,5.799806E+01,0.000000E+00 +595690,fr,1,3.550000E+00,1.543720E+00,4.666776E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.999394E+01,0.000000E+00 +595694,fr,2,3.650000E+00,1.543720E+00,4.666776E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +595698,fr,1,3.650000E+00,1.543720E+00,4.666776E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,-9.000000E+01 +595704,fr,2,3.750000E+00,1.543720E+00,4.666776E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +595705,fr,1,3.750000E+00,1.543720E+00,4.666776E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +595711,fr,1,3.750000E+00,1.543720E+00,4.666776E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,-9.000000E+01 +595728,fr,1,3.950000E+00,1.543720E+00,4.666776E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +595729,fr,1,3.950000E+00,1.543720E+00,4.666776E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +595734,fr,1,3.950000E+00,1.543720E+00,4.666776E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +595740,fr,1,4.050000E+00,1.543720E+00,4.666776E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +595746,fr,1,4.050000E+00,1.543720E+00,4.666776E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,-9.000000E+01 +595748,fr,1,4.050000E+00,1.543720E+00,4.666776E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,-9.000000E+01 +595752,fr,1,4.150000E+00,1.543720E+00,4.666776E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +595753,fr,1,4.150000E+00,1.543720E+00,4.666776E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +595861,fr,1,5.050000E+00,1.543720E+00,4.666776E+01,1.500000E+01,Active Shallow Crust,3.599998E+02,8.999015E+01,0.000000E+00 +596641,fr,1,3.550000E+00,2.003100E-01,5.042716E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +596649,fr,1,3.550000E+00,2.003100E-01,5.042716E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999368E+01,0.000000E+00 +596652,fr,2,3.650000E+00,2.003100E-01,5.042716E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +596665,fr,1,3.750000E+00,2.003100E-01,5.042716E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +596666,fr,1,3.750000E+00,2.003100E-01,5.042716E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +596736,fr,1,4.350000E+00,2.003100E-01,5.042716E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +596778,fr,1,4.650000E+00,2.003100E-01,5.042716E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +597124,fr,1,3.550000E+00,-4.623190E+00,4.859692E+01,1.500000E+01,Active Shallow Crust,2.400122E+02,5.799777E+01,0.000000E+00 +597126,fr,1,3.550000E+00,-4.623190E+00,4.859692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999326E+01,-9.000000E+01 +597132,fr,3,3.650000E+00,-4.623190E+00,4.859692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998811E+01,0.000000E+00 +597136,fr,1,3.650000E+00,-4.623190E+00,4.859692E+01,1.500000E+01,Active Shallow Crust,2.400015E+02,5.801316E+01,0.000000E+00 +597144,fr,1,3.750000E+00,-4.623190E+00,4.859692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +597147,fr,2,3.750000E+00,-4.623190E+00,4.859692E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.801810E+01,0.000000E+00 +597156,fr,1,3.850000E+00,-4.623190E+00,4.859692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +597157,fr,1,3.850000E+00,-4.623190E+00,4.859692E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +597206,fr,1,4.250000E+00,-4.623190E+00,4.859692E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +597216,fr,1,4.350000E+00,-4.623190E+00,4.859692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +597288,fr,1,4.950000E+00,-4.623190E+00,4.859692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +597327,fr,1,5.250000E+00,-4.623190E+00,4.859692E+01,5.000000E+00,Active Shallow Crust,2.400270E+02,5.800055E+01,0.000000E+00 +597600,fr,1,3.550000E+00,-2.483890E+00,4.946275E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +597612,fr,1,3.650000E+00,-2.483890E+00,4.946275E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999124E+01,0.000000E+00 +597618,fr,1,3.650000E+00,-2.483890E+00,4.946275E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999113E+01,-9.000000E+01 +597675,fr,1,4.150000E+00,-2.483890E+00,4.946275E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799760E+01,0.000000E+00 +597682,fr,1,4.150000E+00,-2.483890E+00,4.946275E+01,1.500000E+01,Active Shallow Crust,1.288970E+02,8.999343E+01,0.000000E+00 +597688,fr,1,4.250000E+00,-2.483890E+00,4.946275E+01,1.500000E+01,Active Shallow Crust,2.400083E+02,5.799414E+01,0.000000E+00 +598080,fr,1,3.550000E+00,7.839190E+00,4.872589E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998669E+01,0.000000E+00 +598081,fr,1,3.550000E+00,7.839190E+00,4.872589E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998669E+01,0.000000E+00 +598083,fr,1,3.550000E+00,7.839190E+00,4.872589E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799871E+01,0.000000E+00 +598092,fr,1,3.650000E+00,7.839190E+00,4.872589E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998814E+01,0.000000E+00 +598093,fr,1,3.650000E+00,7.839190E+00,4.872589E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998814E+01,0.000000E+00 +598095,fr,1,3.650000E+00,7.839190E+00,4.872589E+01,5.000000E+00,Active Shallow Crust,2.400019E+02,5.801327E+01,0.000000E+00 +598099,fr,1,3.650000E+00,7.839190E+00,4.872589E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998801E+01,-9.000000E+01 +598104,fr,2,3.750000E+00,7.839190E+00,4.872589E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +598105,fr,1,3.750000E+00,7.839190E+00,4.872589E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +598108,fr,1,3.750000E+00,7.839190E+00,4.872589E+01,1.500000E+01,Active Shallow Crust,2.400098E+02,5.801662E+01,0.000000E+00 +598128,fr,1,3.950000E+00,7.839190E+00,4.872589E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999161E+01,0.000000E+00 +598132,fr,1,3.950000E+00,7.839190E+00,4.872589E+01,1.500000E+01,Active Shallow Crust,2.400199E+02,5.800485E+01,0.000000E+00 +598140,fr,1,4.050000E+00,7.839190E+00,4.872589E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +598146,fr,1,4.050000E+00,7.839190E+00,4.872589E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998865E+01,-9.000000E+01 +598161,fr,2,4.150000E+00,7.839190E+00,4.872589E+01,5.000000E+00,Active Shallow Crust,1.288982E+02,8.999333E+01,0.000000E+00 +598167,fr,1,4.250000E+00,7.839190E+00,4.872589E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799394E+01,0.000000E+00 +598177,fr,1,4.350000E+00,7.839190E+00,4.872589E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +598188,fr,1,4.450000E+00,7.839190E+00,4.872589E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +598272,fr,1,5.150000E+00,7.839190E+00,4.872589E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +598296,fr,1,5.350000E+00,7.839190E+00,4.872589E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +598565,fr,1,3.550000E+00,1.963440E+00,4.775259E+01,2.750000E+01,Active Shallow Crust,2.400122E+02,5.799786E+01,0.000000E+00 +598572,fr,1,3.650000E+00,1.963440E+00,4.775259E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +598629,fr,1,4.050000E+00,1.963440E+00,4.775259E+01,5.000000E+00,Active Shallow Crust,1.288903E+02,8.999380E+01,0.000000E+00 +599040,fr,1,3.550000E+00,1.962710E+00,4.070187E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +599065,fr,1,3.750000E+00,1.962710E+00,4.070187E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +599085,fr,1,3.850000E+00,1.962710E+00,4.070187E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999391E+01,0.000000E+00 +599111,fr,1,4.050000E+00,1.962710E+00,4.070187E+01,2.750000E+01,Active Shallow Crust,1.288914E+02,8.999355E+01,0.000000E+00 +599124,fr,1,4.250000E+00,1.962710E+00,4.070187E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +599132,fr,1,4.250000E+00,1.962710E+00,4.070187E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998964E+01,-9.000000E+01 +599136,fr,1,4.350000E+00,1.962710E+00,4.070187E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +599160,fr,1,4.550000E+00,1.962710E+00,4.070187E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +599186,fr,1,4.750000E+00,1.962710E+00,4.070187E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +599574,fr,1,3.950000E+00,5.946210E+00,4.837336E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999145E+01,-9.000000E+01 +599604,fr,1,4.250000E+00,5.946210E+00,4.837336E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999102E+01,0.000000E+00 +599700,fr,1,5.050000E+00,5.946210E+00,4.837336E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +600000,fr,1,3.550000E+00,3.635220E+00,4.217093E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998879E+01,0.000000E+00 +600001,fr,1,3.550000E+00,3.635220E+00,4.217093E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998879E+01,0.000000E+00 +600009,fr,1,3.550000E+00,3.635220E+00,4.217093E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999439E+01,0.000000E+00 +600013,fr,1,3.650000E+00,3.635220E+00,4.217093E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +600038,fr,1,3.850000E+00,3.635220E+00,4.217093E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +600096,fr,1,4.350000E+00,3.635220E+00,4.217093E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +600126,fr,1,4.550000E+00,3.635220E+00,4.217093E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,-9.000000E+01 +600591,fr,1,4.450000E+00,4.306930E+00,4.865653E+01,5.000000E+00,Active Shallow Crust,2.400058E+02,5.799485E+01,0.000000E+00 +601464,fr,1,3.750000E+00,-3.940280E+00,4.398013E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999136E+01,0.000000E+00 +601502,fr,1,4.050000E+00,-3.940280E+00,4.398013E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +601944,fr,1,3.750000E+00,2.946880E+00,4.871448E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +601994,fr,1,4.150000E+00,2.946880E+00,4.871448E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +602031,fr,1,4.450000E+00,2.946880E+00,4.871448E+01,5.000000E+00,Active Shallow Crust,2.400060E+02,5.799475E+01,0.000000E+00 +602077,fr,1,4.850000E+00,2.946880E+00,4.871448E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +602400,fr,2,3.550000E+00,-2.782500E-01,4.586725E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +602402,fr,1,3.550000E+00,-2.782500E-01,4.586725E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +602403,fr,1,3.550000E+00,-2.782500E-01,4.586725E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799816E+01,0.000000E+00 +602413,fr,1,3.650000E+00,-2.782500E-01,4.586725E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +602415,fr,1,3.650000E+00,-2.782500E-01,4.586725E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801284E+01,0.000000E+00 +602424,fr,2,3.750000E+00,-2.782500E-01,4.586725E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +602461,fr,1,4.050000E+00,-2.782500E-01,4.586725E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +602509,fr,1,4.450000E+00,-2.782500E-01,4.586725E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +602536,fr,1,4.650000E+00,-2.782500E-01,4.586725E+01,1.500000E+01,Active Shallow Crust,2.400106E+02,5.799419E+01,0.000000E+00 +602545,fr,1,4.750000E+00,-2.782500E-01,4.586725E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +602553,fr,1,4.750000E+00,-2.782500E-01,4.586725E+01,5.000000E+00,Active Shallow Crust,1.288889E+02,8.998808E+01,0.000000E+00 +602568,fr,1,4.950000E+00,-2.782500E-01,4.586725E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +602880,fr,4,3.550000E+00,7.216850E+00,5.053150E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998718E+01,0.000000E+00 +602881,fr,1,3.550000E+00,7.216850E+00,5.053150E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998718E+01,0.000000E+00 +602883,fr,1,3.550000E+00,7.216850E+00,5.053150E+01,5.000000E+00,Active Shallow Crust,2.400130E+02,5.799788E+01,0.000000E+00 +602887,fr,1,3.550000E+00,7.216850E+00,5.053150E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998703E+01,-9.000000E+01 +602889,fr,1,3.550000E+00,7.216850E+00,5.053150E+01,5.000000E+00,Active Shallow Crust,1.288951E+02,8.999359E+01,0.000000E+00 +602892,fr,3,3.650000E+00,7.216850E+00,5.053150E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998857E+01,0.000000E+00 +602898,fr,1,3.650000E+00,7.216850E+00,5.053150E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998844E+01,-9.000000E+01 +602904,fr,1,3.750000E+00,7.216850E+00,5.053150E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +602907,fr,2,3.750000E+00,7.216850E+00,5.053150E+01,5.000000E+00,Active Shallow Crust,2.400095E+02,5.801778E+01,0.000000E+00 +602928,fr,2,3.950000E+00,7.216850E+00,5.053150E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999191E+01,0.000000E+00 +602929,fr,1,3.950000E+00,7.216850E+00,5.053150E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999191E+01,0.000000E+00 +602934,fr,1,3.950000E+00,7.216850E+00,5.053150E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999181E+01,-9.000000E+01 +602962,fr,1,4.150000E+00,7.216850E+00,5.053150E+01,1.500000E+01,Active Shallow Crust,1.288962E+02,8.999358E+01,0.000000E+00 +602967,fr,1,4.250000E+00,7.216850E+00,5.053150E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799392E+01,0.000000E+00 +602983,fr,1,4.350000E+00,7.216850E+00,5.053150E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,-9.000000E+01 +603012,fr,1,4.650000E+00,7.216850E+00,5.053150E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +603048,fr,1,4.950000E+00,7.216850E+00,5.053150E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +603360,fr,1,3.550000E+00,1.106780E+00,4.150265E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +603363,fr,1,3.550000E+00,1.106780E+00,4.150265E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799791E+01,0.000000E+00 +603369,fr,1,3.550000E+00,1.106780E+00,4.150265E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999434E+01,0.000000E+00 +603373,fr,2,3.650000E+00,1.106780E+00,4.150265E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +603388,fr,1,3.750000E+00,1.106780E+00,4.150265E+01,1.500000E+01,Active Shallow Crust,2.400076E+02,5.801756E+01,0.000000E+00 +603396,fr,1,3.850000E+00,1.106780E+00,4.150265E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +603414,fr,1,3.950000E+00,1.106780E+00,4.150265E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,-9.000000E+01 +603429,fr,1,4.050000E+00,1.106780E+00,4.150265E+01,5.000000E+00,Active Shallow Crust,1.288913E+02,8.999363E+01,0.000000E+00 +603432,fr,1,4.150000E+00,1.106780E+00,4.150265E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +603480,fr,1,4.550000E+00,1.106780E+00,4.150265E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +604320,fr,1,3.550000E+00,6.754000E-01,4.580599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +604332,fr,2,3.650000E+00,6.754000E-01,4.580599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +604350,fr,2,3.750000E+00,6.754000E-01,4.580599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,-9.000000E+01 +604363,fr,1,3.850000E+00,6.754000E-01,4.580599E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,-9.000000E+01 +604368,fr,1,3.950000E+00,6.754000E-01,4.580599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +604392,fr,1,4.150000E+00,6.754000E-01,4.580599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +604548,fr,1,5.450000E+00,6.754000E-01,4.580599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +604800,fr,1,3.550000E+00,-8.366000E-02,5.067461E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +604831,fr,1,3.750000E+00,-8.366000E-02,5.067461E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +604843,fr,1,3.850000E+00,-8.366000E-02,5.067461E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +604856,fr,1,3.950000E+00,-8.366000E-02,5.067461E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +604875,fr,1,4.150000E+00,-8.366000E-02,5.067461E+01,5.000000E+00,Active Shallow Crust,2.400093E+02,5.799746E+01,0.000000E+00 +604890,fr,1,4.250000E+00,-8.366000E-02,5.067461E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +604920,fr,1,4.550000E+00,-8.366000E-02,5.067461E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +605292,fr,1,3.650000E+00,-5.513340E+00,4.850350E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998809E+01,0.000000E+00 +605307,fr,1,3.750000E+00,-5.513340E+00,4.850350E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.801745E+01,0.000000E+00 +605316,fr,1,3.850000E+00,-5.513340E+00,4.850350E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +605572,fr,1,5.950000E+00,-5.513340E+00,4.850350E+01,1.500000E+01,Active Shallow Crust,2.400564E+02,5.799932E+01,0.000000E+00 +605761,fr,1,3.550000E+00,2.689350E+00,4.896612E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +605766,fr,1,3.550000E+00,2.689350E+00,4.896612E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,-9.000000E+01 +605775,fr,1,3.650000E+00,2.689350E+00,4.896612E+01,5.000000E+00,Active Shallow Crust,2.400019E+02,5.801280E+01,0.000000E+00 +605796,fr,1,3.850000E+00,2.689350E+00,4.896612E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +605820,fr,1,4.050000E+00,2.689350E+00,4.896612E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999069E+01,0.000000E+00 +606252,fr,2,3.650000E+00,-3.520480E+00,4.910797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +606270,fr,1,3.750000E+00,-3.520480E+00,4.910797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998939E+01,-9.000000E+01 +606313,fr,1,4.150000E+00,-3.520480E+00,4.910797E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +606507,fr,1,5.750000E+00,-3.520480E+00,4.910797E+01,5.000000E+00,Active Shallow Crust,2.400445E+02,5.800004E+01,0.000000E+00 +606720,fr,1,3.550000E+00,2.434900E-01,4.831892E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +606721,fr,1,3.550000E+00,2.434900E-01,4.831892E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +606723,fr,1,3.550000E+00,2.434900E-01,4.831892E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799823E+01,0.000000E+00 +606753,fr,1,3.750000E+00,2.434900E-01,4.831892E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996735E+01,0.000000E+00 +606769,fr,1,3.950000E+00,2.434900E-01,4.831892E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +606775,fr,1,3.950000E+00,2.434900E-01,4.831892E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +606870,fr,1,4.750000E+00,2.434900E-01,4.831892E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +607204,fr,1,3.550000E+00,-1.481160E+00,4.425760E+01,1.500000E+01,Active Shallow Crust,2.400123E+02,5.799816E+01,0.000000E+00 +607681,fr,1,3.550000E+00,-3.824600E-01,4.680405E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +607689,fr,1,3.550000E+00,-3.824600E-01,4.680405E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999374E+01,0.000000E+00 +607692,fr,2,3.650000E+00,-3.824600E-01,4.680405E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +607693,fr,1,3.650000E+00,-3.824600E-01,4.680405E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +607694,fr,1,3.650000E+00,-3.824600E-01,4.680405E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +607695,fr,1,3.650000E+00,-3.824600E-01,4.680405E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801296E+01,0.000000E+00 +607705,fr,1,3.750000E+00,-3.824600E-01,4.680405E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +607710,fr,1,3.750000E+00,-3.824600E-01,4.680405E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +607716,fr,1,3.850000E+00,-3.824600E-01,4.680405E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +607722,fr,2,3.850000E+00,-3.824600E-01,4.680405E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,-9.000000E+01 +607725,fr,1,3.850000E+00,-3.824600E-01,4.680405E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999374E+01,0.000000E+00 +607728,fr,1,3.950000E+00,-3.824600E-01,4.680405E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +607740,fr,2,4.050000E+00,-3.824600E-01,4.680405E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +607752,fr,1,4.150000E+00,-3.824600E-01,4.680405E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +607824,fr,1,4.750000E+00,-3.824600E-01,4.680405E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +608712,fr,1,4.150000E+00,2.584760E+00,5.180522E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +609132,fr,1,3.650000E+00,5.455240E+00,4.792811E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998795E+01,0.000000E+00 +609153,fr,1,3.750000E+00,5.455240E+00,4.792811E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.996751E+01,0.000000E+00 +609168,fr,1,3.950000E+00,5.455240E+00,4.792811E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999147E+01,0.000000E+00 +609171,fr,1,3.950000E+00,5.455240E+00,4.792811E+01,5.000000E+00,Active Shallow Crust,2.400209E+02,5.800459E+01,0.000000E+00 +609324,fr,1,5.250000E+00,5.455240E+00,4.792811E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +609601,fr,2,3.550000E+00,6.876810E+00,4.446744E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999281E+01,0.000000E+00 +609603,fr,1,3.550000E+00,6.876810E+00,4.446744E+01,5.000000E+00,Active Shallow Crust,2.400126E+02,5.799829E+01,0.000000E+00 +609606,fr,1,3.550000E+00,6.876810E+00,4.446744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999272E+01,-9.000000E+01 +609612,fr,8,3.650000E+00,6.876810E+00,4.446744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998717E+01,0.000000E+00 +609615,fr,1,3.650000E+00,6.876810E+00,4.446744E+01,5.000000E+00,Active Shallow Crust,2.400003E+02,5.801270E+01,0.000000E+00 +609621,fr,1,3.650000E+00,6.876810E+00,4.446744E+01,5.000000E+00,Active Shallow Crust,1.289009E+02,8.996349E+01,0.000000E+00 +609624,fr,2,3.750000E+00,6.876810E+00,4.446744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +609625,fr,2,3.750000E+00,6.876810E+00,4.446744E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +609627,fr,1,3.750000E+00,6.876810E+00,4.446744E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.801689E+01,0.000000E+00 +609631,fr,1,3.750000E+00,6.876810E+00,4.446744E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998843E+01,-9.000000E+01 +609636,fr,2,3.850000E+00,6.876810E+00,4.446744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +609637,fr,2,3.850000E+00,6.876810E+00,4.446744E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +609647,fr,1,3.850000E+00,6.876810E+00,4.446744E+01,2.750000E+01,Active Shallow Crust,1.288952E+02,8.999490E+01,0.000000E+00 +609648,fr,4,3.950000E+00,6.876810E+00,4.446744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999092E+01,0.000000E+00 +609649,fr,1,3.950000E+00,6.876810E+00,4.446744E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999092E+01,0.000000E+00 +609654,fr,1,3.950000E+00,6.876810E+00,4.446744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,-9.000000E+01 +609660,fr,2,4.050000E+00,6.876810E+00,4.446744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999191E+01,0.000000E+00 +609672,fr,1,4.150000E+00,6.876810E+00,4.446744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +609673,fr,1,4.150000E+00,6.876810E+00,4.446744E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +609674,fr,1,4.150000E+00,6.876810E+00,4.446744E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +609682,fr,1,4.150000E+00,6.876810E+00,4.446744E+01,1.500000E+01,Active Shallow Crust,1.288970E+02,8.999459E+01,0.000000E+00 +609684,fr,1,4.250000E+00,6.876810E+00,4.446744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +609685,fr,1,4.250000E+00,6.876810E+00,4.446744E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +609697,fr,1,4.350000E+00,6.876810E+00,4.446744E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999140E+01,0.000000E+00 +609702,fr,1,4.350000E+00,6.876810E+00,4.446744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999130E+01,-9.000000E+01 +609708,fr,2,4.450000E+00,6.876810E+00,4.446744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +609720,fr,1,4.550000E+00,6.876810E+00,4.446744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999090E+01,0.000000E+00 +609721,fr,1,4.550000E+00,6.876810E+00,4.446744E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999090E+01,0.000000E+00 +609723,fr,1,4.550000E+00,6.876810E+00,4.446744E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.799708E+01,0.000000E+00 +609852,fr,1,5.650000E+00,6.876810E+00,4.446744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +609876,fr,1,5.850000E+00,6.876810E+00,4.446744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +610080,fr,6,3.550000E+00,6.728560E+00,4.550410E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999294E+01,0.000000E+00 +610082,fr,1,3.550000E+00,6.728560E+00,4.550410E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999294E+01,0.000000E+00 +610092,fr,3,3.650000E+00,6.728560E+00,4.550410E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998740E+01,0.000000E+00 +610094,fr,1,3.650000E+00,6.728560E+00,4.550410E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998740E+01,0.000000E+00 +610101,fr,1,3.650000E+00,6.728560E+00,4.550410E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.996351E+01,0.000000E+00 +610105,fr,2,3.750000E+00,6.728560E+00,4.550410E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998877E+01,0.000000E+00 +610117,fr,1,3.850000E+00,6.728560E+00,4.550410E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +610129,fr,1,3.950000E+00,6.728560E+00,4.550410E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999108E+01,0.000000E+00 +610140,fr,2,4.050000E+00,6.728560E+00,4.550410E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +610141,fr,1,4.050000E+00,6.728560E+00,4.550410E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +610143,fr,1,4.050000E+00,6.728560E+00,4.550410E+01,5.000000E+00,Active Shallow Crust,2.400059E+02,5.800527E+01,0.000000E+00 +610153,fr,1,4.150000E+00,6.728560E+00,4.550410E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +610164,fr,1,4.250000E+00,6.728560E+00,4.550410E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +610165,fr,1,4.250000E+00,6.728560E+00,4.550410E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +610188,fr,1,4.450000E+00,6.728560E+00,4.550410E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +610191,fr,1,4.450000E+00,6.728560E+00,4.550410E+01,5.000000E+00,Active Shallow Crust,2.400053E+02,5.799461E+01,0.000000E+00 +610212,fr,1,4.650000E+00,6.728560E+00,4.550410E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +610213,fr,1,4.650000E+00,6.728560E+00,4.550410E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +610560,fr,3,3.550000E+00,1.815060E+00,4.255684E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +610561,fr,1,3.550000E+00,1.815060E+00,4.255684E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +610563,fr,1,3.550000E+00,1.815060E+00,4.255684E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799789E+01,0.000000E+00 +610564,fr,1,3.550000E+00,1.815060E+00,4.255684E+01,1.500000E+01,Active Shallow Crust,2.400121E+02,5.799789E+01,0.000000E+00 +610567,fr,1,3.550000E+00,1.815060E+00,4.255684E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999061E+01,-9.000000E+01 +610572,fr,1,3.650000E+00,1.815060E+00,4.255684E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +610573,fr,1,3.650000E+00,1.815060E+00,4.255684E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +610575,fr,1,3.650000E+00,1.815060E+00,4.255684E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801262E+01,0.000000E+00 +610584,fr,2,3.750000E+00,1.815060E+00,4.255684E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +610586,fr,1,3.750000E+00,1.815060E+00,4.255684E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +610587,fr,1,3.750000E+00,1.815060E+00,4.255684E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801743E+01,0.000000E+00 +610594,fr,1,3.750000E+00,1.815060E+00,4.255684E+01,1.500000E+01,Active Shallow Crust,1.288971E+02,8.996742E+01,0.000000E+00 +610597,fr,1,3.850000E+00,1.815060E+00,4.255684E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +610608,fr,1,3.950000E+00,1.815060E+00,4.255684E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +610615,fr,1,3.950000E+00,1.815060E+00,4.255684E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,-9.000000E+01 +610620,fr,1,4.050000E+00,1.815060E+00,4.255684E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +610621,fr,1,4.050000E+00,1.815060E+00,4.255684E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +610624,fr,1,4.050000E+00,1.815060E+00,4.255684E+01,1.500000E+01,Active Shallow Crust,2.400053E+02,5.800563E+01,0.000000E+00 +610632,fr,1,4.150000E+00,1.815060E+00,4.255684E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +610649,fr,1,4.250000E+00,1.815060E+00,4.255684E+01,2.750000E+01,Active Shallow Crust,2.400068E+02,5.799397E+01,0.000000E+00 +610668,fr,1,4.450000E+00,1.815060E+00,4.255684E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +610716,fr,1,4.850000E+00,1.815060E+00,4.255684E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +611040,fr,3,3.550000E+00,1.131260E+00,4.664199E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +611041,fr,3,3.550000E+00,1.131260E+00,4.664199E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +611049,fr,1,3.550000E+00,1.131260E+00,4.664199E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999308E+01,0.000000E+00 +611052,fr,2,3.650000E+00,1.131260E+00,4.664199E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +611058,fr,1,3.650000E+00,1.131260E+00,4.664199E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,-9.000000E+01 +611061,fr,1,3.650000E+00,1.131260E+00,4.664199E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.996352E+01,0.000000E+00 +611064,fr,1,3.750000E+00,1.131260E+00,4.664199E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +611070,fr,1,3.750000E+00,1.131260E+00,4.664199E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,-9.000000E+01 +611076,fr,1,3.850000E+00,1.131260E+00,4.664199E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +611079,fr,2,3.850000E+00,1.131260E+00,4.664199E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799773E+01,0.000000E+00 +611091,fr,1,3.950000E+00,1.131260E+00,4.664199E+01,5.000000E+00,Active Shallow Crust,2.400198E+02,5.800496E+01,0.000000E+00 +611100,fr,1,4.050000E+00,1.131260E+00,4.664199E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +611112,fr,1,4.150000E+00,1.131260E+00,4.664199E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +611121,fr,1,4.150000E+00,1.131260E+00,4.664199E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.999349E+01,0.000000E+00 +611124,fr,2,4.250000E+00,1.131260E+00,4.664199E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +611125,fr,3,4.250000E+00,1.131260E+00,4.664199E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +611149,fr,1,4.450000E+00,1.131260E+00,4.664199E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +611245,fr,1,5.250000E+00,1.131260E+00,4.664199E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +611520,fr,3,3.550000E+00,-3.875000E-02,4.330362E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +611532,fr,2,3.650000E+00,-3.875000E-02,4.330362E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +611536,fr,1,3.650000E+00,-3.875000E-02,4.330362E+01,1.500000E+01,Active Shallow Crust,2.400008E+02,5.801284E+01,0.000000E+00 +611542,fr,1,3.650000E+00,-3.875000E-02,4.330362E+01,1.500000E+01,Active Shallow Crust,1.289007E+02,8.996351E+01,0.000000E+00 +611544,fr,1,3.750000E+00,-3.875000E-02,4.330362E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +611547,fr,1,3.750000E+00,-3.875000E-02,4.330362E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801751E+01,0.000000E+00 +611556,fr,2,3.850000E+00,-3.875000E-02,4.330362E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +611558,fr,1,3.850000E+00,-3.875000E-02,4.330362E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +611568,fr,1,3.950000E+00,-3.875000E-02,4.330362E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +611604,fr,2,4.250000E+00,-3.875000E-02,4.330362E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +611616,fr,1,4.350000E+00,-3.875000E-02,4.330362E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +611654,fr,1,4.650000E+00,-3.875000E-02,4.330362E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +612001,fr,1,3.550000E+00,5.511700E+00,4.283221E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999261E+01,0.000000E+00 +612012,fr,1,3.650000E+00,5.511700E+00,4.283221E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998682E+01,0.000000E+00 +612013,fr,1,3.650000E+00,5.511700E+00,4.283221E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998682E+01,0.000000E+00 +612024,fr,1,3.750000E+00,5.511700E+00,4.283221E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998825E+01,0.000000E+00 +612144,fr,1,4.750000E+00,5.511700E+00,4.283221E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999071E+01,0.000000E+00 +612480,fr,3,3.550000E+00,-3.178860E+00,4.309762E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +612481,fr,1,3.550000E+00,-3.178860E+00,4.309762E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +612494,fr,1,3.650000E+00,-3.178860E+00,4.309762E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +612504,fr,1,3.750000E+00,-3.178860E+00,4.309762E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +612540,fr,1,4.050000E+00,-3.178860E+00,4.309762E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +612564,fr,1,4.250000E+00,-3.178860E+00,4.309762E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +612576,fr,1,4.350000E+00,-3.178860E+00,4.309762E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +612732,fr,1,5.650000E+00,-3.178860E+00,4.309762E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +612960,fr,1,3.550000E+00,-3.595060E+00,4.388311E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +612963,fr,1,3.550000E+00,-3.595060E+00,4.388311E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799813E+01,0.000000E+00 +612975,fr,1,3.650000E+00,-3.595060E+00,4.388311E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801245E+01,0.000000E+00 +612976,fr,1,3.650000E+00,-3.595060E+00,4.388311E+01,1.500000E+01,Active Shallow Crust,2.400012E+02,5.801245E+01,0.000000E+00 +613458,fr,1,3.650000E+00,-3.283040E+00,4.750264E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,-9.000000E+01 +613464,fr,1,3.750000E+00,-3.283040E+00,4.750264E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +613476,fr,1,3.850000E+00,-3.283040E+00,4.750264E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +613488,fr,1,3.950000E+00,-3.283040E+00,4.750264E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +613920,fr,1,3.550000E+00,-2.706370E+00,4.863906E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +613921,fr,1,3.550000E+00,-2.706370E+00,4.863906E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +613929,fr,1,3.550000E+00,-2.706370E+00,4.863906E+01,5.000000E+00,Active Shallow Crust,1.288953E+02,8.999500E+01,0.000000E+00 +613932,fr,1,3.650000E+00,-2.706370E+00,4.863906E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999109E+01,0.000000E+00 +613934,fr,2,3.650000E+00,-2.706370E+00,4.863906E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999109E+01,0.000000E+00 +613944,fr,2,3.750000E+00,-2.706370E+00,4.863906E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998941E+01,0.000000E+00 +613945,fr,1,3.750000E+00,-2.706370E+00,4.863906E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998941E+01,0.000000E+00 +613952,fr,1,3.750000E+00,-2.706370E+00,4.863906E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998929E+01,-9.000000E+01 +613967,fr,1,3.850000E+00,-2.706370E+00,4.863906E+01,2.750000E+01,Active Shallow Crust,1.288955E+02,8.999410E+01,0.000000E+00 +613968,fr,1,3.950000E+00,-2.706370E+00,4.863906E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +613981,fr,1,4.050000E+00,-2.706370E+00,4.863906E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +613994,fr,1,4.150000E+00,-2.706370E+00,4.863906E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +614005,fr,1,4.250000E+00,-2.706370E+00,4.863906E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +614007,fr,1,4.250000E+00,-2.706370E+00,4.863906E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799387E+01,0.000000E+00 +614077,fr,1,4.850000E+00,-2.706370E+00,4.863906E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +614136,fr,1,5.350000E+00,-2.706370E+00,4.863906E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +614400,fr,2,3.550000E+00,4.149800E-01,4.605599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +614413,fr,1,3.650000E+00,4.149800E-01,4.605599E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +614418,fr,1,3.650000E+00,4.149800E-01,4.605599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +614424,fr,1,3.750000E+00,4.149800E-01,4.605599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +614429,fr,1,3.750000E+00,4.149800E-01,4.605599E+01,2.750000E+01,Active Shallow Crust,2.400084E+02,5.801756E+01,0.000000E+00 +614436,fr,4,3.850000E+00,4.149800E-01,4.605599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +614445,fr,1,3.850000E+00,4.149800E-01,4.605599E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999380E+01,0.000000E+00 +614487,fr,1,4.250000E+00,4.149800E-01,4.605599E+01,5.000000E+00,Active Shallow Crust,2.400075E+02,5.799407E+01,0.000000E+00 +614522,fr,1,4.550000E+00,4.149800E-01,4.605599E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +614559,fr,1,4.850000E+00,4.149800E-01,4.605599E+01,5.000000E+00,Active Shallow Crust,2.400169E+02,5.800229E+01,0.000000E+00 +614653,fr,1,5.650000E+00,4.149800E-01,4.605599E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +615360,fr,2,3.550000E+00,7.250590E+00,4.411262E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999276E+01,0.000000E+00 +615361,fr,3,3.550000E+00,7.250590E+00,4.411262E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999276E+01,0.000000E+00 +615365,fr,1,3.550000E+00,7.250590E+00,4.411262E+01,2.750000E+01,Active Shallow Crust,2.400127E+02,5.799756E+01,0.000000E+00 +615372,fr,3,3.650000E+00,7.250590E+00,4.411262E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998709E+01,0.000000E+00 +615374,fr,1,3.650000E+00,7.250590E+00,4.411262E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998709E+01,0.000000E+00 +615375,fr,1,3.650000E+00,7.250590E+00,4.411262E+01,5.000000E+00,Active Shallow Crust,2.400006E+02,5.801337E+01,0.000000E+00 +615384,fr,2,3.750000E+00,7.250590E+00,4.411262E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998849E+01,0.000000E+00 +615385,fr,1,3.750000E+00,7.250590E+00,4.411262E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998849E+01,0.000000E+00 +615399,fr,1,3.850000E+00,7.250590E+00,4.411262E+01,5.000000E+00,Active Shallow Crust,2.400101E+02,5.799844E+01,0.000000E+00 +615402,fr,1,3.850000E+00,7.250590E+00,4.411262E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,-9.000000E+01 +615406,fr,1,3.850000E+00,7.250590E+00,4.411262E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.999231E+01,0.000000E+00 +615408,fr,1,3.950000E+00,7.250590E+00,4.411262E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +615409,fr,1,3.950000E+00,7.250590E+00,4.411262E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +615421,fr,1,4.050000E+00,7.250590E+00,4.411262E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999186E+01,0.000000E+00 +615432,fr,1,4.150000E+00,7.250590E+00,4.411262E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +615441,fr,1,4.150000E+00,7.250590E+00,4.411262E+01,5.000000E+00,Active Shallow Crust,1.288983E+02,8.999274E+01,0.000000E+00 +615444,fr,1,4.250000E+00,7.250590E+00,4.411262E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +615450,fr,1,4.250000E+00,7.250590E+00,4.411262E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,-9.000000E+01 +615465,fr,1,4.350000E+00,7.250590E+00,4.411262E+01,5.000000E+00,Active Shallow Crust,1.288985E+02,8.998294E+01,0.000000E+00 +615468,fr,1,4.450000E+00,7.250590E+00,4.411262E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +615477,fr,1,4.450000E+00,7.250590E+00,4.411262E+01,5.000000E+00,Active Shallow Crust,1.288925E+02,8.999358E+01,0.000000E+00 +615480,fr,1,4.550000E+00,7.250590E+00,4.411262E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +615504,fr,1,4.750000E+00,7.250590E+00,4.411262E+01,5.000000E+00,Active Shallow Crust,3.599991E+02,8.999091E+01,0.000000E+00 +615528,fr,1,4.950000E+00,7.250590E+00,4.411262E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +615840,fr,1,3.550000E+00,5.564090E+00,4.456892E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999281E+01,0.000000E+00 +615842,fr,1,3.550000E+00,5.564090E+00,4.456892E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999281E+01,0.000000E+00 +615847,fr,1,3.550000E+00,5.564090E+00,4.456892E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999273E+01,-9.000000E+01 +615858,fr,1,3.650000E+00,5.564090E+00,4.456892E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998705E+01,-9.000000E+01 +615864,fr,1,3.750000E+00,5.564090E+00,4.456892E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +615897,fr,1,3.950000E+00,5.564090E+00,4.456892E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.999320E+01,0.000000E+00 +615900,fr,1,4.050000E+00,5.564090E+00,4.456892E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999192E+01,0.000000E+00 +615918,fr,1,4.150000E+00,5.564090E+00,4.456892E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,-9.000000E+01 +615922,fr,1,4.150000E+00,5.564090E+00,4.456892E+01,1.500000E+01,Active Shallow Crust,1.288983E+02,8.999280E+01,0.000000E+00 +615924,fr,1,4.250000E+00,5.564090E+00,4.456892E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +615926,fr,1,4.250000E+00,5.564090E+00,4.456892E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +615948,fr,1,4.450000E+00,5.564090E+00,4.456892E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +616333,fr,1,3.650000E+00,1.157810E+00,4.124288E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +616344,fr,1,3.750000E+00,1.157810E+00,4.124288E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +616345,fr,1,3.750000E+00,1.157810E+00,4.124288E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +616347,fr,1,3.750000E+00,1.157810E+00,4.124288E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801734E+01,0.000000E+00 +616356,fr,2,3.850000E+00,1.157810E+00,4.124288E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999061E+01,0.000000E+00 +616357,fr,1,3.850000E+00,1.157810E+00,4.124288E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999061E+01,0.000000E+00 +616368,fr,1,3.950000E+00,1.157810E+00,4.124288E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +616400,fr,1,4.150000E+00,1.157810E+00,4.124288E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,-9.000000E+01 +616404,fr,2,4.250000E+00,1.157810E+00,4.124288E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +616405,fr,1,4.250000E+00,1.157810E+00,4.124288E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +616421,fr,1,4.350000E+00,1.157810E+00,4.124288E+01,2.750000E+01,Active Shallow Crust,2.400073E+02,5.799567E+01,0.000000E+00 +616488,fr,1,4.950000E+00,1.157810E+00,4.124288E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +616491,fr,1,4.950000E+00,1.157810E+00,4.124288E+01,5.000000E+00,Active Shallow Crust,2.400097E+02,5.800399E+01,0.000000E+00 +616800,fr,1,3.550000E+00,2.191760E+00,5.153959E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +616824,fr,1,3.750000E+00,2.191760E+00,5.153959E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +616836,fr,1,3.850000E+00,2.191760E+00,5.153959E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998890E+01,0.000000E+00 +616838,fr,1,3.850000E+00,2.191760E+00,5.153959E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998890E+01,0.000000E+00 +616859,fr,1,3.950000E+00,2.191760E+00,5.153959E+01,2.750000E+01,Active Shallow Crust,1.288998E+02,8.999406E+01,0.000000E+00 +616866,fr,1,4.050000E+00,2.191760E+00,5.153959E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,-9.000000E+01 +616920,fr,1,4.550000E+00,2.191760E+00,5.153959E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +617006,fr,1,5.250000E+00,2.191760E+00,5.153959E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +617292,fr,1,3.650000E+00,4.652110E+00,4.164122E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999329E+01,0.000000E+00 +617293,fr,1,3.650000E+00,4.652110E+00,4.164122E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999329E+01,0.000000E+00 +617760,fr,2,3.550000E+00,1.746920E+00,5.152688E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +617761,fr,2,3.550000E+00,1.746920E+00,5.152688E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +617770,fr,1,3.550000E+00,1.746920E+00,5.152688E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.999373E+01,0.000000E+00 +617777,fr,1,3.650000E+00,1.746920E+00,5.152688E+01,2.750000E+01,Active Shallow Crust,2.400017E+02,5.801266E+01,0.000000E+00 +617784,fr,1,3.750000E+00,1.746920E+00,5.152688E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +617796,fr,1,3.850000E+00,1.746920E+00,5.152688E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +617815,fr,1,3.950000E+00,1.746920E+00,5.152688E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +617832,fr,1,4.150000E+00,1.746920E+00,5.152688E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +617917,fr,1,4.850000E+00,1.746920E+00,5.152688E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +617976,fr,1,5.350000E+00,1.746920E+00,5.152688E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +618265,fr,1,3.750000E+00,9.151810E+00,5.024340E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +618285,fr,1,3.850000E+00,9.151810E+00,5.024340E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999087E+01,0.000000E+00 +618334,fr,1,4.250000E+00,9.151810E+00,5.024340E+01,1.500000E+01,Active Shallow Crust,1.288936E+02,8.998109E+01,0.000000E+00 +618364,fr,1,4.550000E+00,9.151810E+00,5.024340E+01,1.500000E+01,Active Shallow Crust,2.400114E+02,5.799686E+01,0.000000E+00 +618367,fr,1,4.550000E+00,9.151810E+00,5.024340E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999174E+01,-9.000000E+01 +618732,fr,2,3.650000E+00,1.687930E+00,5.075056E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +618733,fr,1,3.650000E+00,1.687930E+00,5.075056E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +618747,fr,1,3.750000E+00,1.687930E+00,5.075056E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.801763E+01,0.000000E+00 +618756,fr,2,3.850000E+00,1.687930E+00,5.075056E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +618768,fr,2,3.950000E+00,1.687930E+00,5.075056E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +618831,fr,1,4.450000E+00,1.687930E+00,5.075056E+01,5.000000E+00,Active Shallow Crust,2.400065E+02,5.799484E+01,0.000000E+00 +619200,fr,1,3.550000E+00,6.450940E+00,4.441634E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999280E+01,0.000000E+00 +619201,fr,1,3.550000E+00,6.450940E+00,4.441634E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999280E+01,0.000000E+00 +619202,fr,1,3.550000E+00,6.450940E+00,4.441634E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999280E+01,0.000000E+00 +619203,fr,2,3.550000E+00,6.450940E+00,4.441634E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799876E+01,0.000000E+00 +619204,fr,1,3.550000E+00,6.450940E+00,4.441634E+01,1.500000E+01,Active Shallow Crust,2.400109E+02,5.799876E+01,0.000000E+00 +619211,fr,1,3.550000E+00,6.450940E+00,4.441634E+01,2.750000E+01,Active Shallow Crust,1.288967E+02,8.999280E+01,0.000000E+00 +619212,fr,4,3.650000E+00,6.450940E+00,4.441634E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998716E+01,0.000000E+00 +619215,fr,1,3.650000E+00,6.450940E+00,4.441634E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801251E+01,0.000000E+00 +619224,fr,3,3.750000E+00,6.450940E+00,4.441634E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +619234,fr,1,3.750000E+00,6.450940E+00,4.441634E+01,1.500000E+01,Active Shallow Crust,1.288972E+02,8.996745E+01,0.000000E+00 +619236,fr,1,3.850000E+00,6.450940E+00,4.441634E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +619240,fr,1,3.850000E+00,6.450940E+00,4.441634E+01,1.500000E+01,Active Shallow Crust,2.400110E+02,5.799810E+01,0.000000E+00 +619242,fr,1,3.850000E+00,6.450940E+00,4.441634E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +619245,fr,1,3.850000E+00,6.450940E+00,4.441634E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999236E+01,0.000000E+00 +619248,fr,1,3.950000E+00,6.450940E+00,4.441634E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +619249,fr,1,3.950000E+00,6.450940E+00,4.441634E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +619260,fr,1,4.050000E+00,6.450940E+00,4.441634E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999190E+01,0.000000E+00 +619261,fr,1,4.050000E+00,6.450940E+00,4.441634E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999190E+01,0.000000E+00 +619263,fr,2,4.050000E+00,6.450940E+00,4.441634E+01,5.000000E+00,Active Shallow Crust,2.400057E+02,5.800570E+01,0.000000E+00 +619264,fr,1,4.050000E+00,6.450940E+00,4.441634E+01,1.500000E+01,Active Shallow Crust,2.400057E+02,5.800567E+01,0.000000E+00 +619272,fr,1,4.150000E+00,6.450940E+00,4.441634E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +619273,fr,1,4.150000E+00,6.450940E+00,4.441634E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +619309,fr,1,4.450000E+00,6.450940E+00,4.441634E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +619320,fr,1,4.550000E+00,6.450940E+00,4.441634E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999089E+01,0.000000E+00 +619385,fr,1,5.050000E+00,6.450940E+00,4.441634E+01,2.750000E+01,Active Shallow Crust,2.400212E+02,5.799736E+01,0.000000E+00 +619418,fr,1,5.350000E+00,6.450940E+00,4.441634E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +620161,fr,1,3.550000E+00,8.768900E-01,4.325167E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +620172,fr,1,3.650000E+00,8.768900E-01,4.325167E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +620173,fr,2,3.650000E+00,8.768900E-01,4.325167E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +620174,fr,2,3.650000E+00,8.768900E-01,4.325167E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +620184,fr,2,3.750000E+00,8.768900E-01,4.325167E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +620188,fr,1,3.750000E+00,8.768900E-01,4.325167E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.801753E+01,0.000000E+00 +620676,fr,1,3.850000E+00,4.854640E+00,4.166860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +620688,fr,1,3.950000E+00,4.854640E+00,4.166860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +620700,fr,1,4.050000E+00,4.854640E+00,4.166860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999153E+01,0.000000E+00 +621120,fr,2,3.550000E+00,-1.919920E+00,4.735493E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +621124,fr,1,3.550000E+00,-1.919920E+00,4.735493E+01,1.500000E+01,Active Shallow Crust,2.400124E+02,5.799817E+01,0.000000E+00 +621132,fr,2,3.650000E+00,-1.919920E+00,4.735493E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +621153,fr,1,3.750000E+00,-1.919920E+00,4.735493E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.996725E+01,0.000000E+00 +621156,fr,1,3.850000E+00,-1.919920E+00,4.735493E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +621168,fr,1,3.950000E+00,-1.919920E+00,4.735493E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +621181,fr,1,4.050000E+00,-1.919920E+00,4.735493E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +621193,fr,1,4.150000E+00,-1.919920E+00,4.735493E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +621240,fr,1,4.550000E+00,-1.919920E+00,4.735493E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +621264,fr,1,4.750000E+00,-1.919920E+00,4.735493E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +621277,fr,1,4.850000E+00,-1.919920E+00,4.735493E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +621660,fr,1,4.050000E+00,8.076620E+00,5.112022E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999288E+01,0.000000E+00 +622082,fr,1,3.550000E+00,5.979350E+00,4.748531E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999319E+01,0.000000E+00 +622089,fr,1,3.550000E+00,5.979350E+00,4.748531E+01,5.000000E+00,Active Shallow Crust,1.288971E+02,8.999319E+01,0.000000E+00 +622092,fr,1,3.650000E+00,5.979350E+00,4.748531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998785E+01,0.000000E+00 +622094,fr,1,3.650000E+00,5.979350E+00,4.748531E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998785E+01,0.000000E+00 +622097,fr,1,3.650000E+00,5.979350E+00,4.748531E+01,2.750000E+01,Active Shallow Crust,2.400005E+02,5.801300E+01,0.000000E+00 +622102,fr,1,3.650000E+00,5.979350E+00,4.748531E+01,1.500000E+01,Active Shallow Crust,1.289010E+02,8.996355E+01,0.000000E+00 +622104,fr,1,3.750000E+00,5.979350E+00,4.748531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +622107,fr,1,3.750000E+00,5.979350E+00,4.748531E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.801768E+01,0.000000E+00 +622113,fr,1,3.750000E+00,5.979350E+00,4.748531E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.996695E+01,0.000000E+00 +622116,fr,1,3.850000E+00,5.979350E+00,4.748531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +622130,fr,1,3.950000E+00,5.979350E+00,4.748531E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999140E+01,0.000000E+00 +622144,fr,1,4.050000E+00,5.979350E+00,4.748531E+01,1.500000E+01,Active Shallow Crust,2.400066E+02,5.800569E+01,0.000000E+00 +622164,fr,1,4.250000E+00,5.979350E+00,4.748531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999087E+01,0.000000E+00 +622167,fr,1,4.250000E+00,5.979350E+00,4.748531E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.799412E+01,0.000000E+00 +622176,fr,1,4.350000E+00,5.979350E+00,4.748531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998915E+01,0.000000E+00 +622192,fr,1,4.450000E+00,5.979350E+00,4.748531E+01,1.500000E+01,Active Shallow Crust,2.400054E+02,5.799482E+01,0.000000E+00 +622210,fr,1,4.550000E+00,5.979350E+00,4.748531E+01,1.500000E+01,Active Shallow Crust,1.288938E+02,8.998570E+01,0.000000E+00 +622219,fr,1,4.650000E+00,5.979350E+00,4.748531E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999029E+01,-9.000000E+01 +622317,fr,1,5.450000E+00,5.979350E+00,4.748531E+01,5.000000E+00,Active Shallow Crust,1.288781E+02,8.998907E+01,0.000000E+00 +622585,fr,1,3.750000E+00,2.994330E+00,4.846007E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +622598,fr,1,3.850000E+00,2.994330E+00,4.846007E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +622621,fr,1,4.050000E+00,2.994330E+00,4.846007E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +622701,fr,1,4.650000E+00,2.994330E+00,4.846007E+01,5.000000E+00,Active Shallow Crust,1.288906E+02,8.998709E+01,0.000000E+00 +623048,fr,1,3.550000E+00,3.078580E+00,4.355505E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998891E+01,-9.000000E+01 +623058,fr,1,3.650000E+00,3.078580E+00,4.355505E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,-9.000000E+01 +623065,fr,1,3.750000E+00,3.078580E+00,4.355505E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +623088,fr,1,3.950000E+00,3.078580E+00,4.355505E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +623100,fr,1,4.050000E+00,3.078580E+00,4.355505E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +623524,fr,1,3.550000E+00,3.097210E+00,5.320826E+01,1.500000E+01,Active Shallow Crust,2.400135E+02,5.799807E+01,0.000000E+00 +624000,fr,2,3.550000E+00,5.666380E+00,5.192985E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998756E+01,0.000000E+00 +624001,fr,2,3.550000E+00,5.666380E+00,5.192985E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998756E+01,0.000000E+00 +624036,fr,1,3.850000E+00,5.666380E+00,5.192985E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +624597,fr,1,4.450000E+00,-5.272350E+00,4.988962E+01,5.000000E+00,Active Shallow Crust,1.288913E+02,8.999309E+01,0.000000E+00 +625440,fr,1,3.550000E+00,1.440040E+00,5.241541E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +625443,fr,1,3.550000E+00,1.440040E+00,5.241541E+01,5.000000E+00,Active Shallow Crust,2.400130E+02,5.799824E+01,0.000000E+00 +625546,fr,1,4.350000E+00,1.440040E+00,5.241541E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.998270E+01,0.000000E+00 +625572,fr,1,4.650000E+00,1.440040E+00,5.241541E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +625920,fr,1,3.550000E+00,-5.449700E-01,4.611617E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +625921,fr,1,3.550000E+00,-5.449700E-01,4.611617E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +625923,fr,1,3.550000E+00,-5.449700E-01,4.611617E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799825E+01,0.000000E+00 +625932,fr,1,3.650000E+00,-5.449700E-01,4.611617E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +625933,fr,1,3.650000E+00,-5.449700E-01,4.611617E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +625945,fr,1,3.750000E+00,-5.449700E-01,4.611617E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +625948,fr,1,3.750000E+00,-5.449700E-01,4.611617E+01,1.500000E+01,Active Shallow Crust,2.400083E+02,5.801744E+01,0.000000E+00 +625950,fr,1,3.750000E+00,-5.449700E-01,4.611617E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,-9.000000E+01 +625957,fr,1,3.850000E+00,-5.449700E-01,4.611617E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +625971,fr,1,3.950000E+00,-5.449700E-01,4.611617E+01,5.000000E+00,Active Shallow Crust,2.400197E+02,5.800497E+01,0.000000E+00 +625996,fr,1,4.150000E+00,-5.449700E-01,4.611617E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.799731E+01,0.000000E+00 +626005,fr,1,4.250000E+00,-5.449700E-01,4.611617E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +626007,fr,1,4.250000E+00,-5.449700E-01,4.611617E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.799409E+01,0.000000E+00 +626016,fr,1,4.350000E+00,-5.449700E-01,4.611617E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +626437,fr,1,3.850000E+00,6.412320E+00,5.178180E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +626550,fr,1,4.750000E+00,6.412320E+00,5.178180E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,-9.000000E+01 +626880,fr,1,3.550000E+00,6.566800E-01,4.940034E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +626923,fr,1,3.850000E+00,6.566800E-01,4.940034E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +626931,fr,1,3.950000E+00,6.566800E-01,4.940034E+01,5.000000E+00,Active Shallow Crust,2.400202E+02,5.800505E+01,0.000000E+00 +627006,fr,1,4.550000E+00,6.566800E-01,4.940034E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +627013,fr,1,4.650000E+00,6.566800E-01,4.940034E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +627138,fr,1,5.650000E+00,6.566800E-01,4.940034E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +627360,fr,2,3.550000E+00,-1.611470E+00,4.872620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +627366,fr,2,3.550000E+00,-1.611470E+00,4.872620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +627370,fr,1,3.550000E+00,-1.611470E+00,4.872620E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.999418E+01,0.000000E+00 +627372,fr,1,3.650000E+00,-1.611470E+00,4.872620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +627373,fr,2,3.650000E+00,-1.611470E+00,4.872620E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +627375,fr,1,3.650000E+00,-1.611470E+00,4.872620E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801299E+01,0.000000E+00 +627384,fr,2,3.750000E+00,-1.611470E+00,4.872620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +627385,fr,2,3.750000E+00,-1.611470E+00,4.872620E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +627390,fr,1,3.750000E+00,-1.611470E+00,4.872620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,-9.000000E+01 +627397,fr,1,3.850000E+00,-1.611470E+00,4.872620E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +627408,fr,1,3.950000E+00,-1.611470E+00,4.872620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +627410,fr,1,3.950000E+00,-1.611470E+00,4.872620E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +627420,fr,1,4.050000E+00,-1.611470E+00,4.872620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +627423,fr,1,4.050000E+00,-1.611470E+00,4.872620E+01,5.000000E+00,Active Shallow Crust,2.400064E+02,5.800583E+01,0.000000E+00 +627432,fr,1,4.150000E+00,-1.611470E+00,4.872620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +627457,fr,2,4.350000E+00,-1.611470E+00,4.872620E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +627489,fr,1,4.550000E+00,-1.611470E+00,4.872620E+01,5.000000E+00,Active Shallow Crust,1.288934E+02,8.998577E+01,0.000000E+00 +627554,fr,1,5.150000E+00,-1.611470E+00,4.872620E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +627840,fr,3,3.550000E+00,-1.269890E+00,4.781276E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +627849,fr,1,3.550000E+00,-1.269890E+00,4.781276E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999407E+01,0.000000E+00 +627852,fr,1,3.650000E+00,-1.269890E+00,4.781276E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +627855,fr,1,3.650000E+00,-1.269890E+00,4.781276E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801301E+01,0.000000E+00 +627876,fr,1,3.850000E+00,-1.269890E+00,4.781276E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +627913,fr,1,4.150000E+00,-1.269890E+00,4.781276E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +627937,fr,1,4.350000E+00,-1.269890E+00,4.781276E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +627954,fr,1,4.450000E+00,-1.269890E+00,4.781276E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,-9.000000E+01 +627996,fr,1,4.850000E+00,-1.269890E+00,4.781276E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +628057,fr,1,5.350000E+00,-1.269890E+00,4.781276E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +628320,fr,1,3.550000E+00,2.513790E+00,4.595612E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +628321,fr,1,3.550000E+00,2.513790E+00,4.595612E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +628322,fr,1,3.550000E+00,2.513790E+00,4.595612E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +628323,fr,2,3.550000E+00,2.513790E+00,4.595612E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799815E+01,0.000000E+00 +628325,fr,1,3.550000E+00,2.513790E+00,4.595612E+01,2.750000E+01,Active Shallow Crust,2.400123E+02,5.799805E+01,0.000000E+00 +628332,fr,1,3.650000E+00,2.513790E+00,4.595612E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +628344,fr,2,3.750000E+00,2.513790E+00,4.595612E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998886E+01,0.000000E+00 +628345,fr,1,3.750000E+00,2.513790E+00,4.595612E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998886E+01,0.000000E+00 +628353,fr,1,3.750000E+00,2.513790E+00,4.595612E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996722E+01,0.000000E+00 +628356,fr,1,3.850000E+00,2.513790E+00,4.595612E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +628358,fr,1,3.850000E+00,2.513790E+00,4.595612E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +628368,fr,3,3.950000E+00,2.513790E+00,4.595612E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +628369,fr,1,3.950000E+00,2.513790E+00,4.595612E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +628372,fr,1,3.950000E+00,2.513790E+00,4.595612E+01,1.500000E+01,Active Shallow Crust,2.400195E+02,5.800494E+01,0.000000E+00 +628381,fr,1,4.050000E+00,2.513790E+00,4.595612E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +628393,fr,1,4.150000E+00,2.513790E+00,4.595612E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +628400,fr,1,4.150000E+00,2.513790E+00,4.595612E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,-9.000000E+01 +628416,fr,1,4.350000E+00,2.513790E+00,4.595612E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +628458,fr,1,4.650000E+00,2.513790E+00,4.595612E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +628473,fr,1,4.750000E+00,2.513790E+00,4.595612E+01,5.000000E+00,Active Shallow Crust,1.288888E+02,8.998814E+01,0.000000E+00 +628803,fr,1,3.550000E+00,4.711900E+00,4.705938E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799934E+01,0.000000E+00 +628804,fr,1,3.550000E+00,4.711900E+00,4.705938E+01,1.500000E+01,Active Shallow Crust,2.400110E+02,5.799934E+01,0.000000E+00 +628812,fr,1,3.650000E+00,4.711900E+00,4.705938E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998775E+01,0.000000E+00 +628836,fr,2,3.850000E+00,4.711900E+00,4.705938E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +628848,fr,1,3.950000E+00,4.711900E+00,4.705938E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +628879,fr,1,4.150000E+00,4.711900E+00,4.705938E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998955E+01,-9.000000E+01 +628896,fr,1,4.350000E+00,4.711900E+00,4.705938E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998906E+01,0.000000E+00 +628932,fr,1,4.650000E+00,4.711900E+00,4.705938E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +628975,fr,1,4.950000E+00,4.711900E+00,4.705938E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,-9.000000E+01 +628986,fr,1,5.050000E+00,4.711900E+00,4.705938E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,-9.000000E+01 +629280,fr,1,3.550000E+00,4.483300E-01,4.389361E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +629292,fr,1,3.650000E+00,4.483300E-01,4.389361E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +629316,fr,1,3.850000E+00,4.483300E-01,4.389361E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +629772,fr,1,3.650000E+00,3.694400E+00,4.600902E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +629808,fr,2,3.950000E+00,3.694400E+00,4.600902E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +629835,fr,1,4.150000E+00,3.694400E+00,4.600902E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799716E+01,0.000000E+00 +629886,fr,1,4.550000E+00,3.694400E+00,4.600902E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +629893,fr,1,4.650000E+00,3.694400E+00,4.600902E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +630273,fr,1,3.750000E+00,1.385000E-01,4.441031E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996734E+01,0.000000E+00 +630288,fr,1,3.950000E+00,1.385000E-01,4.441031E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +630720,fr,1,3.550000E+00,2.497500E+00,4.386122E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +630762,fr,1,3.850000E+00,2.497500E+00,4.386122E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +630853,fr,1,4.650000E+00,2.497500E+00,4.386122E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +630864,fr,1,4.750000E+00,2.497500E+00,4.386122E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +631203,fr,1,3.550000E+00,5.912270E+00,4.925177E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799931E+01,0.000000E+00 +631212,fr,1,3.650000E+00,5.912270E+00,4.925177E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998827E+01,0.000000E+00 +631260,fr,1,4.050000E+00,5.912270E+00,4.925177E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998889E+01,0.000000E+00 +631680,fr,2,3.550000E+00,-2.562250E+00,4.770531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +631683,fr,3,3.550000E+00,-2.562250E+00,4.770531E+01,5.000000E+00,Active Shallow Crust,2.400126E+02,5.799787E+01,0.000000E+00 +631692,fr,1,3.650000E+00,-2.562250E+00,4.770531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +631695,fr,2,3.650000E+00,-2.562250E+00,4.770531E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801317E+01,0.000000E+00 +631703,fr,1,3.650000E+00,-2.562250E+00,4.770531E+01,2.750000E+01,Active Shallow Crust,1.288998E+02,8.996355E+01,0.000000E+00 +631704,fr,2,3.750000E+00,-2.562250E+00,4.770531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998922E+01,0.000000E+00 +631719,fr,1,3.850000E+00,-2.562250E+00,4.770531E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799778E+01,0.000000E+00 +631741,fr,1,4.050000E+00,-2.562250E+00,4.770531E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +631755,fr,1,4.150000E+00,-2.562250E+00,4.770531E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.799728E+01,0.000000E+00 +631767,fr,1,4.250000E+00,-2.562250E+00,4.770531E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799414E+01,0.000000E+00 +631801,fr,1,4.550000E+00,-2.562250E+00,4.770531E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +631848,fr,1,4.950000E+00,-2.562250E+00,4.770531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +631884,fr,1,5.250000E+00,-2.562250E+00,4.770531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +632160,fr,3,3.550000E+00,4.158060E+00,5.000965E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998704E+01,0.000000E+00 +632184,fr,1,3.750000E+00,4.158060E+00,5.000965E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +632190,fr,1,3.750000E+00,4.158060E+00,5.000965E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +632233,fr,1,4.150000E+00,4.158060E+00,5.000965E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +632460,fr,1,6.050000E+00,4.158061E+00,5.000965E+01,5.357596E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +632640,fr,1,3.550000E+00,-1.388270E+00,4.206062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +632652,fr,1,3.650000E+00,-1.388270E+00,4.206062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +632664,fr,1,3.750000E+00,-1.388270E+00,4.206062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +632808,fr,1,4.950000E+00,-1.388270E+00,4.206062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +633121,fr,1,3.550000E+00,-5.897600E-01,4.256269E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +633126,fr,1,3.550000E+00,-5.897600E-01,4.256269E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,-9.000000E+01 +633132,fr,1,3.650000E+00,-5.897600E-01,4.256269E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +633135,fr,1,3.650000E+00,-5.897600E-01,4.256269E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801288E+01,0.000000E+00 +633163,fr,1,3.850000E+00,-5.897600E-01,4.256269E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +633411,fr,1,5.950000E+00,-5.897600E-01,4.256269E+01,5.000000E+00,Active Shallow Crust,2.400457E+02,5.799965E+01,0.000000E+00 +634560,fr,4,3.550000E+00,-1.233880E+00,4.318269E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +634561,fr,2,3.550000E+00,-1.233880E+00,4.318269E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +634563,fr,6,3.550000E+00,-1.233880E+00,4.318269E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799814E+01,0.000000E+00 +634572,fr,5,3.650000E+00,-1.233880E+00,4.318269E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +634573,fr,1,3.650000E+00,-1.233880E+00,4.318269E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +634575,fr,1,3.650000E+00,-1.233880E+00,4.318269E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801297E+01,0.000000E+00 +634576,fr,1,3.650000E+00,-1.233880E+00,4.318269E+01,1.500000E+01,Active Shallow Crust,2.400010E+02,5.801297E+01,0.000000E+00 +634579,fr,2,3.650000E+00,-1.233880E+00,4.318269E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +634584,fr,3,3.750000E+00,-1.233880E+00,4.318269E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +634596,fr,4,3.850000E+00,-1.233880E+00,4.318269E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +634597,fr,2,3.850000E+00,-1.233880E+00,4.318269E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +634608,fr,1,3.950000E+00,-1.233880E+00,4.318269E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +634614,fr,1,3.950000E+00,-1.233880E+00,4.318269E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,-9.000000E+01 +634617,fr,2,3.950000E+00,-1.233880E+00,4.318269E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.999362E+01,0.000000E+00 +634620,fr,1,4.050000E+00,-1.233880E+00,4.318269E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +634633,fr,1,4.150000E+00,-1.233880E+00,4.318269E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +634645,fr,1,4.250000E+00,-1.233880E+00,4.318269E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +634647,fr,1,4.250000E+00,-1.233880E+00,4.318269E+01,5.000000E+00,Active Shallow Crust,2.400071E+02,5.799398E+01,0.000000E+00 +634656,fr,2,4.350000E+00,-1.233880E+00,4.318269E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +634657,fr,1,4.350000E+00,-1.233880E+00,4.318269E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +634659,fr,1,4.350000E+00,-1.233880E+00,4.318269E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.799569E+01,0.000000E+00 +634668,fr,2,4.450000E+00,-1.233880E+00,4.318269E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +634669,fr,1,4.450000E+00,-1.233880E+00,4.318269E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +634725,fr,1,4.850000E+00,-1.233880E+00,4.318269E+01,5.000000E+00,Active Shallow Crust,1.288936E+02,8.998906E+01,0.000000E+00 +634743,fr,1,5.050000E+00,-1.233880E+00,4.318269E+01,5.000000E+00,Active Shallow Crust,2.400205E+02,5.799729E+01,0.000000E+00 +634774,fr,1,5.250000E+00,-1.233880E+00,4.318269E+01,1.500000E+01,Active Shallow Crust,1.288850E+02,8.998695E+01,0.000000E+00 +634782,fr,1,5.350000E+00,-1.233880E+00,4.318269E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,-9.000000E+01 +634836,fr,1,5.850000E+00,-1.233880E+00,4.318269E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +635040,fr,1,3.550000E+00,6.632750E+00,5.119978E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998737E+01,0.000000E+00 +635049,fr,1,3.550000E+00,6.632750E+00,5.119978E+01,5.000000E+00,Active Shallow Crust,1.288948E+02,8.999684E+01,0.000000E+00 +635052,fr,1,3.650000E+00,6.632750E+00,5.119978E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998874E+01,0.000000E+00 +635064,fr,1,3.750000E+00,6.632750E+00,5.119978E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +635068,fr,1,3.750000E+00,6.632750E+00,5.119978E+01,1.500000E+01,Active Shallow Crust,2.400091E+02,5.801682E+01,0.000000E+00 +635160,fr,1,4.550000E+00,6.632750E+00,5.119978E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +635178,fr,1,4.650000E+00,6.632750E+00,5.119978E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998919E+01,-9.000000E+01 +635520,fr,1,3.550000E+00,4.009520E+00,4.785381E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999323E+01,0.000000E+00 +635529,fr,1,3.550000E+00,4.009520E+00,4.785381E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999323E+01,0.000000E+00 +635547,fr,1,3.750000E+00,4.009520E+00,4.785381E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.801740E+01,0.000000E+00 +635568,fr,1,3.950000E+00,4.009520E+00,4.785381E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999146E+01,0.000000E+00 +635620,fr,1,4.350000E+00,4.009520E+00,4.785381E+01,1.500000E+01,Active Shallow Crust,2.400087E+02,5.799608E+01,0.000000E+00 +636000,fr,1,3.550000E+00,2.942350E+00,4.085458E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +636013,fr,1,3.650000E+00,2.942350E+00,4.085458E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +636016,fr,1,3.650000E+00,2.942350E+00,4.085458E+01,1.500000E+01,Active Shallow Crust,2.399999E+02,5.801283E+01,0.000000E+00 +636027,fr,2,3.750000E+00,2.942350E+00,4.085458E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.801745E+01,0.000000E+00 +636036,fr,1,3.850000E+00,2.942350E+00,4.085458E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +636480,fr,7,3.550000E+00,6.319050E+00,4.675590E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999309E+01,0.000000E+00 +636481,fr,1,3.550000E+00,6.319050E+00,4.675590E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999309E+01,0.000000E+00 +636482,fr,1,3.550000E+00,6.319050E+00,4.675590E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999309E+01,0.000000E+00 +636483,fr,1,3.550000E+00,6.319050E+00,4.675590E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799794E+01,0.000000E+00 +636485,fr,1,3.550000E+00,6.319050E+00,4.675590E+01,2.750000E+01,Active Shallow Crust,2.400120E+02,5.799785E+01,0.000000E+00 +636486,fr,1,3.550000E+00,6.319050E+00,4.675590E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999301E+01,-9.000000E+01 +636490,fr,1,3.550000E+00,6.319050E+00,4.675590E+01,1.500000E+01,Active Shallow Crust,1.288968E+02,8.999310E+01,0.000000E+00 +636492,fr,4,3.650000E+00,6.319050E+00,4.675590E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998769E+01,0.000000E+00 +636493,fr,1,3.650000E+00,6.319050E+00,4.675590E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998769E+01,0.000000E+00 +636495,fr,1,3.650000E+00,6.319050E+00,4.675590E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801299E+01,0.000000E+00 +636504,fr,4,3.750000E+00,6.319050E+00,4.675590E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998902E+01,0.000000E+00 +636516,fr,6,3.850000E+00,6.319050E+00,4.675590E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +636522,fr,1,3.850000E+00,6.319050E+00,4.675590E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +636526,fr,1,3.850000E+00,6.319050E+00,4.675590E+01,1.500000E+01,Active Shallow Crust,1.288953E+02,8.999511E+01,0.000000E+00 +636528,fr,1,3.950000E+00,6.319050E+00,4.675590E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999128E+01,0.000000E+00 +636529,fr,1,3.950000E+00,6.319050E+00,4.675590E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999128E+01,0.000000E+00 +636531,fr,1,3.950000E+00,6.319050E+00,4.675590E+01,5.000000E+00,Active Shallow Crust,2.400198E+02,5.800513E+01,0.000000E+00 +636541,fr,1,4.050000E+00,6.319050E+00,4.675590E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998834E+01,0.000000E+00 +636543,fr,1,4.050000E+00,6.319050E+00,4.675590E+01,5.000000E+00,Active Shallow Crust,2.400061E+02,5.800581E+01,0.000000E+00 +636552,fr,1,4.150000E+00,6.319050E+00,4.675590E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +636554,fr,1,4.150000E+00,6.319050E+00,4.675590E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +636555,fr,1,4.150000E+00,6.319050E+00,4.675590E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799764E+01,0.000000E+00 +636562,fr,1,4.150000E+00,6.319050E+00,4.675590E+01,1.500000E+01,Active Shallow Crust,1.288968E+02,8.999480E+01,0.000000E+00 +636579,fr,2,4.350000E+00,6.319050E+00,4.675590E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.799625E+01,0.000000E+00 +636582,fr,1,4.350000E+00,6.319050E+00,4.675590E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998887E+01,-9.000000E+01 +636588,fr,1,4.450000E+00,6.319050E+00,4.675590E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +636600,fr,2,4.550000E+00,6.319050E+00,4.675590E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +636614,fr,1,4.650000E+00,6.319050E+00,4.675590E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +636615,fr,1,4.650000E+00,6.319050E+00,4.675590E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799405E+01,0.000000E+00 +636648,fr,1,4.950000E+00,6.319050E+00,4.675590E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +636708,fr,1,5.450000E+00,6.319050E+00,4.675590E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +637011,fr,1,3.950000E+00,5.675970E+00,4.795716E+01,5.000000E+00,Active Shallow Crust,2.400197E+02,5.800549E+01,0.000000E+00 +637017,fr,1,3.950000E+00,5.675970E+00,4.795716E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.999574E+01,0.000000E+00 +637021,fr,1,4.050000E+00,5.675970E+00,4.795716E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998861E+01,0.000000E+00 +637116,fr,1,4.850000E+00,5.675970E+00,4.795716E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +637524,fr,1,4.250000E+00,4.737350E+00,4.043127E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +637560,fr,1,4.550000E+00,4.737350E+00,4.043127E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +637920,fr,1,3.550000E+00,7.444050E+00,4.346736E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999268E+01,0.000000E+00 +637932,fr,2,3.650000E+00,7.444050E+00,4.346736E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998695E+01,0.000000E+00 +637956,fr,1,3.850000E+00,7.444050E+00,4.346736E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +637968,fr,1,3.950000E+00,7.444050E+00,4.346736E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +637974,fr,1,3.950000E+00,7.444050E+00,4.346736E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,-9.000000E+01 +637982,fr,1,4.050000E+00,7.444050E+00,4.346736E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999177E+01,0.000000E+00 +638004,fr,1,4.250000E+00,7.444050E+00,4.346736E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +638005,fr,1,4.250000E+00,7.444050E+00,4.346736E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +638017,fr,1,4.350000E+00,7.444050E+00,4.346736E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +638886,fr,1,3.550000E+00,3.762210E+00,4.445062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,-9.000000E+01 +638892,fr,1,3.650000E+00,3.762210E+00,4.445062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +638913,fr,1,3.750000E+00,3.762210E+00,4.445062E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996745E+01,0.000000E+00 +639384,fr,1,3.750000E+00,5.403000E+00,4.624958E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998892E+01,0.000000E+00 +639393,fr,1,3.750000E+00,5.403000E+00,4.624958E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996748E+01,0.000000E+00 +639396,fr,1,3.850000E+00,5.403000E+00,4.624958E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +639418,fr,1,3.950000E+00,5.403000E+00,4.624958E+01,1.500000E+01,Active Shallow Crust,1.289006E+02,8.999340E+01,0.000000E+00 +639421,fr,1,4.050000E+00,5.403000E+00,4.624958E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998824E+01,0.000000E+00 +639436,fr,1,4.150000E+00,5.403000E+00,4.624958E+01,1.500000E+01,Active Shallow Crust,2.400092E+02,5.799671E+01,0.000000E+00 +639456,fr,1,4.350000E+00,5.403000E+00,4.624958E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998889E+01,0.000000E+00 +639554,fr,1,5.150000E+00,5.403000E+00,4.624958E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +639840,fr,1,3.550000E+00,2.711200E+00,5.000717E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +639852,fr,1,3.650000E+00,2.711200E+00,5.000717E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +639865,fr,1,3.750000E+00,2.711200E+00,5.000717E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +639873,fr,1,3.750000E+00,2.711200E+00,5.000717E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.996732E+01,0.000000E+00 +639901,fr,1,4.050000E+00,2.711200E+00,5.000717E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999089E+01,0.000000E+00 +640320,fr,1,3.550000E+00,-6.901700E-01,4.812392E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +640324,fr,1,3.550000E+00,-6.901700E-01,4.812392E+01,1.500000E+01,Active Shallow Crust,2.400124E+02,5.799818E+01,0.000000E+00 +640332,fr,1,3.650000E+00,-6.901700E-01,4.812392E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +640344,fr,1,3.750000E+00,-6.901700E-01,4.812392E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +640345,fr,1,3.750000E+00,-6.901700E-01,4.812392E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +640347,fr,1,3.750000E+00,-6.901700E-01,4.812392E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801756E+01,0.000000E+00 +640356,fr,1,3.850000E+00,-6.901700E-01,4.812392E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +640357,fr,1,3.850000E+00,-6.901700E-01,4.812392E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +640389,fr,1,4.050000E+00,-6.901700E-01,4.812392E+01,5.000000E+00,Active Shallow Crust,1.288902E+02,8.999385E+01,0.000000E+00 +640398,fr,1,4.150000E+00,-6.901700E-01,4.812392E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,-9.000000E+01 +640405,fr,1,4.250000E+00,-6.901700E-01,4.812392E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +640801,fr,1,3.550000E+00,4.435750E+00,4.362148E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999270E+01,0.000000E+00 +640803,fr,1,3.550000E+00,4.435750E+00,4.362148E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799856E+01,0.000000E+00 +640818,fr,1,3.650000E+00,4.435750E+00,4.362148E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998684E+01,-9.000000E+01 +640860,fr,1,4.050000E+00,4.435750E+00,4.362148E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999179E+01,0.000000E+00 +640881,fr,1,4.150000E+00,4.435750E+00,4.362148E+01,5.000000E+00,Active Shallow Crust,1.288987E+02,8.999268E+01,0.000000E+00 +640957,fr,1,4.850000E+00,4.435750E+00,4.362148E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +641280,fr,1,3.550000E+00,8.751060E+00,5.057521E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998719E+01,0.000000E+00 +641306,fr,1,3.750000E+00,8.751060E+00,5.057521E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +641316,fr,1,3.850000E+00,8.751060E+00,5.057521E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +641328,fr,1,3.950000E+00,8.751060E+00,5.057521E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999192E+01,0.000000E+00 +641772,fr,1,3.650000E+00,3.356110E+00,4.199542E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +641796,fr,1,3.850000E+00,3.356110E+00,4.199542E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +641856,fr,1,4.350000E+00,3.356110E+00,4.199542E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +642241,fr,1,3.550000E+00,-4.969010E+00,4.787725E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999323E+01,0.000000E+00 +642264,fr,1,3.750000E+00,-4.969010E+00,4.787725E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +642720,fr,1,3.550000E+00,2.413550E+00,5.154530E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +642723,fr,1,3.550000E+00,2.413550E+00,5.154530E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799828E+01,0.000000E+00 +642725,fr,1,3.550000E+00,2.413550E+00,5.154530E+01,2.750000E+01,Active Shallow Crust,2.400123E+02,5.799818E+01,0.000000E+00 +642732,fr,1,3.650000E+00,2.413550E+00,5.154530E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +642737,fr,1,3.650000E+00,2.413550E+00,5.154530E+01,2.750000E+01,Active Shallow Crust,2.400014E+02,5.801319E+01,0.000000E+00 +642750,fr,1,3.750000E+00,2.413550E+00,5.154530E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,-9.000000E+01 +642757,fr,1,3.850000E+00,2.413550E+00,5.154530E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998890E+01,0.000000E+00 +642864,fr,1,4.750000E+00,2.413550E+00,5.154530E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +643200,fr,4,3.550000E+00,3.973160E+00,5.035352E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +643201,fr,1,3.550000E+00,3.973160E+00,5.035352E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +643205,fr,1,3.550000E+00,3.973160E+00,5.035352E+01,2.750000E+01,Active Shallow Crust,2.400124E+02,5.799808E+01,0.000000E+00 +643206,fr,1,3.550000E+00,3.973160E+00,5.035352E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,-9.000000E+01 +643211,fr,1,3.550000E+00,3.973160E+00,5.035352E+01,2.750000E+01,Active Shallow Crust,1.288956E+02,8.999357E+01,0.000000E+00 +643212,fr,3,3.650000E+00,3.973160E+00,5.035352E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999140E+01,0.000000E+00 +643213,fr,1,3.650000E+00,3.973160E+00,5.035352E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999140E+01,0.000000E+00 +643221,fr,1,3.650000E+00,3.973160E+00,5.035352E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.996335E+01,0.000000E+00 +643224,fr,2,3.750000E+00,3.973160E+00,5.035352E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +643227,fr,1,3.750000E+00,3.973160E+00,5.035352E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.801791E+01,0.000000E+00 +643233,fr,1,3.750000E+00,3.973160E+00,5.035352E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.996733E+01,0.000000E+00 +643236,fr,2,3.850000E+00,3.973160E+00,5.035352E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999089E+01,0.000000E+00 +643239,fr,1,3.850000E+00,3.973160E+00,5.035352E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799795E+01,0.000000E+00 +643242,fr,1,3.850000E+00,3.973160E+00,5.035352E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,-9.000000E+01 +643248,fr,2,3.950000E+00,3.973160E+00,5.035352E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +643257,fr,1,3.950000E+00,3.973160E+00,5.035352E+01,5.000000E+00,Active Shallow Crust,1.288996E+02,8.999391E+01,0.000000E+00 +643258,fr,1,3.950000E+00,3.973160E+00,5.035352E+01,1.500000E+01,Active Shallow Crust,1.288996E+02,8.999391E+01,0.000000E+00 +643261,fr,1,4.050000E+00,3.973160E+00,5.035352E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +643262,fr,1,4.050000E+00,3.973160E+00,5.035352E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +643263,fr,2,4.050000E+00,3.973160E+00,5.035352E+01,5.000000E+00,Active Shallow Crust,2.400068E+02,5.800576E+01,0.000000E+00 +643265,fr,1,4.050000E+00,3.973160E+00,5.035352E+01,2.750000E+01,Active Shallow Crust,2.400068E+02,5.800574E+01,0.000000E+00 +643272,fr,1,4.150000E+00,3.973160E+00,5.035352E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +643297,fr,1,4.350000E+00,3.973160E+00,5.035352E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +643306,fr,1,4.350000E+00,3.973160E+00,5.035352E+01,1.500000E+01,Active Shallow Crust,1.288972E+02,8.998271E+01,0.000000E+00 +643320,fr,1,4.550000E+00,3.973160E+00,5.035352E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +643321,fr,2,4.550000E+00,3.973160E+00,5.035352E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +643324,fr,1,4.550000E+00,3.973160E+00,5.035352E+01,1.500000E+01,Active Shallow Crust,2.400105E+02,5.799752E+01,0.000000E+00 +643341,fr,1,4.650000E+00,3.973160E+00,5.035352E+01,5.000000E+00,Active Shallow Crust,1.288900E+02,8.998698E+01,0.000000E+00 +643369,fr,1,4.950000E+00,3.973160E+00,5.035352E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +643422,fr,1,5.350000E+00,3.973160E+00,5.035352E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,-9.000000E+01 +643461,fr,1,5.650000E+00,3.973160E+00,5.035352E+01,5.000000E+00,Active Shallow Crust,1.288715E+02,8.999044E+01,0.000000E+00 +643512,fr,1,6.150000E+00,3.973162E+00,5.035352E+01,6.011322E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +643804,fr,1,4.550000E+00,5.387510E+00,5.213477E+01,1.500000E+01,Active Shallow Crust,2.400110E+02,5.799768E+01,0.000000E+00 +643884,fr,1,5.250000E+00,5.387510E+00,5.213477E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +644160,fr,1,3.550000E+00,4.118520E+00,4.607131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999300E+01,0.000000E+00 +644161,fr,1,3.550000E+00,4.118520E+00,4.607131E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999300E+01,0.000000E+00 +644172,fr,1,3.650000E+00,4.118520E+00,4.607131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998753E+01,0.000000E+00 +644176,fr,1,3.650000E+00,4.118520E+00,4.607131E+01,1.500000E+01,Active Shallow Crust,2.400013E+02,5.801231E+01,0.000000E+00 +644197,fr,2,3.850000E+00,4.118520E+00,4.607131E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +644214,fr,1,3.950000E+00,4.118520E+00,4.607131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,-9.000000E+01 +644220,fr,1,4.050000E+00,4.118520E+00,4.607131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998820E+01,0.000000E+00 +644311,fr,1,4.750000E+00,4.118520E+00,4.607131E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,-9.000000E+01 +644328,fr,1,4.950000E+00,4.118520E+00,4.607131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +644641,fr,1,3.550000E+00,-4.831520E+00,4.816592E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999327E+01,0.000000E+00 +644643,fr,1,3.550000E+00,-4.831520E+00,4.816592E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799864E+01,0.000000E+00 +644664,fr,1,3.750000E+00,-4.831520E+00,4.816592E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +644673,fr,1,3.750000E+00,-4.831520E+00,4.816592E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.996752E+01,0.000000E+00 +644676,fr,1,3.850000E+00,-4.831520E+00,4.816592E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +644700,fr,2,4.050000E+00,-4.831520E+00,4.816592E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +644724,fr,1,4.250000E+00,-4.831520E+00,4.816592E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999099E+01,0.000000E+00 +645120,fr,1,3.550000E+00,-8.828200E-01,4.390590E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +645148,fr,1,3.750000E+00,-8.828200E-01,4.390590E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.801751E+01,0.000000E+00 +645151,fr,1,3.750000E+00,-8.828200E-01,4.390590E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,-9.000000E+01 +645252,fr,1,4.650000E+00,-8.828200E-01,4.390590E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +645600,fr,4,3.550000E+00,5.321100E+00,4.739925E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999317E+01,0.000000E+00 +645601,fr,1,3.550000E+00,5.321100E+00,4.739925E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999317E+01,0.000000E+00 +645612,fr,2,3.650000E+00,5.321100E+00,4.739925E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998783E+01,0.000000E+00 +645624,fr,1,3.750000E+00,5.321100E+00,4.739925E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +645625,fr,1,3.750000E+00,5.321100E+00,4.739925E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +645627,fr,1,3.750000E+00,5.321100E+00,4.739925E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.801864E+01,0.000000E+00 +645672,fr,1,4.150000E+00,5.321100E+00,4.739925E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +645708,fr,1,4.450000E+00,5.321100E+00,4.739925E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +645750,fr,1,4.750000E+00,5.321100E+00,4.739925E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +645852,fr,1,5.650000E+00,5.321100E+00,4.739925E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +646113,fr,1,3.750000E+00,-3.379540E+00,4.979240E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.996732E+01,0.000000E+00 +646116,fr,1,3.850000E+00,-3.379540E+00,4.979240E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +646239,fr,1,4.850000E+00,-3.379540E+00,4.979240E+01,5.000000E+00,Active Shallow Crust,2.400187E+02,5.800245E+01,0.000000E+00 +646560,fr,3,3.550000E+00,4.012740E+00,5.072822E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998724E+01,0.000000E+00 +646566,fr,1,3.550000E+00,4.012740E+00,5.072822E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998708E+01,-9.000000E+01 +646570,fr,1,3.550000E+00,4.012740E+00,5.072822E+01,1.500000E+01,Active Shallow Crust,1.288958E+02,8.999361E+01,0.000000E+00 +646584,fr,1,3.750000E+00,4.012740E+00,5.072822E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +646588,fr,1,3.750000E+00,4.012740E+00,5.072822E+01,1.500000E+01,Active Shallow Crust,2.400086E+02,5.801778E+01,0.000000E+00 +646596,fr,1,3.850000E+00,4.012740E+00,5.072822E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999096E+01,0.000000E+00 +646602,fr,1,3.850000E+00,4.012740E+00,5.072822E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999086E+01,-9.000000E+01 +646620,fr,1,4.050000E+00,4.012740E+00,5.072822E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +646662,fr,1,4.350000E+00,4.012740E+00,5.072822E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,-9.000000E+01 +646704,fr,1,4.750000E+00,4.012740E+00,5.072822E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +647052,fr,1,3.650000E+00,-6.026670E+00,4.830889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998804E+01,0.000000E+00 +647527,fr,1,3.550000E+00,-3.226000E-01,4.841599E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +647532,fr,1,3.650000E+00,-3.226000E-01,4.841599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +647544,fr,1,3.750000E+00,-3.226000E-01,4.841599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +647556,fr,1,3.850000E+00,-3.226000E-01,4.841599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +647557,fr,1,3.850000E+00,-3.226000E-01,4.841599E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +647559,fr,1,3.850000E+00,-3.226000E-01,4.841599E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799783E+01,0.000000E+00 +647562,fr,1,3.850000E+00,-3.226000E-01,4.841599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,-9.000000E+01 +647577,fr,1,3.950000E+00,-3.226000E-01,4.841599E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.999380E+01,0.000000E+00 +647596,fr,1,4.150000E+00,-3.226000E-01,4.841599E+01,1.500000E+01,Active Shallow Crust,2.400088E+02,5.799743E+01,0.000000E+00 +647604,fr,1,4.250000E+00,-3.226000E-01,4.841599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +647616,fr,1,4.350000E+00,-3.226000E-01,4.841599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +647625,fr,1,4.350000E+00,-3.226000E-01,4.841599E+01,5.000000E+00,Active Shallow Crust,1.288974E+02,8.998277E+01,0.000000E+00 +647943,fr,1,7.050000E+00,-3.622934E-01,4.846157E+01,1.436781E+01,Active Shallow Crust,2.401947E+02,5.799961E+01,0.000000E+00 +648001,fr,1,3.550000E+00,-4.612300E-01,4.854009E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +648012,fr,1,3.650000E+00,-4.612300E-01,4.854009E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +648014,fr,1,3.650000E+00,-4.612300E-01,4.854009E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +648024,fr,1,3.750000E+00,-4.612300E-01,4.854009E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +648042,fr,1,3.850000E+00,-4.612300E-01,4.854009E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +648060,fr,1,4.050000E+00,-4.612300E-01,4.854009E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +648075,fr,1,4.150000E+00,-4.612300E-01,4.854009E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.799739E+01,0.000000E+00 +648085,fr,1,4.250000E+00,-4.612300E-01,4.854009E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +648112,fr,1,4.450000E+00,-4.612300E-01,4.854009E+01,1.500000E+01,Active Shallow Crust,2.400058E+02,5.799480E+01,0.000000E+00 +648504,fr,1,3.750000E+00,3.501100E+00,4.929069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +648974,fr,1,3.650000E+00,-8.327400E-01,5.050291E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +648987,fr,1,3.750000E+00,-8.327400E-01,5.050291E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.801766E+01,0.000000E+00 +649041,fr,1,4.150000E+00,-8.327400E-01,5.050291E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.999377E+01,0.000000E+00 +649094,fr,1,4.650000E+00,-8.327400E-01,5.050291E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +649443,fr,1,3.550000E+00,-3.232040E+00,5.007215E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.799783E+01,0.000000E+00 +649470,fr,1,3.750000E+00,-3.232040E+00,5.007215E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,-9.000000E+01 +649566,fr,1,4.550000E+00,-3.232040E+00,5.007215E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +649586,fr,1,4.750000E+00,-3.232040E+00,5.007215E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +649920,fr,2,3.550000E+00,7.174800E-01,4.661463E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +649927,fr,1,3.550000E+00,7.174800E-01,4.661463E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,-9.000000E+01 +649933,fr,1,3.650000E+00,7.174800E-01,4.661463E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +649938,fr,1,3.650000E+00,7.174800E-01,4.661463E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +649953,fr,1,3.750000E+00,7.174800E-01,4.661463E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996737E+01,0.000000E+00 +649956,fr,1,3.850000E+00,7.174800E-01,4.661463E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +649957,fr,1,3.850000E+00,7.174800E-01,4.661463E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +649965,fr,1,3.850000E+00,7.174800E-01,4.661463E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999387E+01,0.000000E+00 +649968,fr,1,3.950000E+00,7.174800E-01,4.661463E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +649980,fr,1,4.050000E+00,7.174800E-01,4.661463E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +649993,fr,1,4.150000E+00,7.174800E-01,4.661463E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +650013,fr,1,4.250000E+00,7.174800E-01,4.661463E+01,5.000000E+00,Active Shallow Crust,1.288943E+02,8.998095E+01,0.000000E+00 +650016,fr,1,4.350000E+00,7.174800E-01,4.661463E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +650018,fr,1,4.350000E+00,7.174800E-01,4.661463E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +650029,fr,1,4.450000E+00,7.174800E-01,4.661463E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +650046,fr,1,4.550000E+00,7.174800E-01,4.661463E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +650059,fr,1,4.650000E+00,7.174800E-01,4.661463E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +650079,fr,1,4.850000E+00,7.174800E-01,4.661463E+01,5.000000E+00,Active Shallow Crust,2.400172E+02,5.800230E+01,0.000000E+00 +650136,fr,1,5.350000E+00,7.174800E-01,4.661463E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +650304,fr,2,6.750000E+00,7.174960E-01,4.661463E+01,1.199416E+01,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +650400,fr,2,3.550000E+00,4.322580E+00,5.150506E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998745E+01,0.000000E+00 +650422,fr,1,3.650000E+00,4.322580E+00,5.150506E+01,1.500000E+01,Active Shallow Crust,1.288992E+02,8.996362E+01,0.000000E+00 +651444,fr,1,4.250000E+00,9.109700E-01,5.123971E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +651480,fr,1,4.550000E+00,9.109700E-01,5.123971E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +651588,fr,1,5.450000E+00,9.109700E-01,5.123971E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +651852,fr,1,3.650000E+00,-5.238410E+00,4.907885E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998823E+01,0.000000E+00 +651900,fr,1,4.050000E+00,-5.238410E+00,4.907885E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +651901,fr,1,4.050000E+00,-5.238410E+00,4.907885E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +651912,fr,1,4.150000E+00,-5.238410E+00,4.907885E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +652370,fr,1,3.950000E+00,1.263770E+00,4.544501E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +652380,fr,1,4.050000E+00,1.263770E+00,4.544501E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +652800,fr,2,3.550000E+00,6.073000E+00,5.100813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998731E+01,0.000000E+00 +652802,fr,2,3.550000E+00,6.073000E+00,5.100813E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998731E+01,0.000000E+00 +652805,fr,1,3.550000E+00,6.073000E+00,5.100813E+01,2.750000E+01,Active Shallow Crust,2.400138E+02,5.799713E+01,0.000000E+00 +652806,fr,1,3.550000E+00,6.073000E+00,5.100813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998716E+01,-9.000000E+01 +652811,fr,1,3.550000E+00,6.073000E+00,5.100813E+01,2.750000E+01,Active Shallow Crust,1.288960E+02,8.999365E+01,0.000000E+00 +652812,fr,3,3.650000E+00,6.073000E+00,5.100813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +652813,fr,1,3.650000E+00,6.073000E+00,5.100813E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +652816,fr,1,3.650000E+00,6.073000E+00,5.100813E+01,1.500000E+01,Active Shallow Crust,2.400019E+02,5.801309E+01,0.000000E+00 +652818,fr,1,3.650000E+00,6.073000E+00,5.100813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998856E+01,-9.000000E+01 +652821,fr,1,3.650000E+00,6.073000E+00,5.100813E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.996361E+01,0.000000E+00 +652824,fr,2,3.750000E+00,6.073000E+00,5.100813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +652830,fr,1,3.750000E+00,6.073000E+00,5.100813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,-9.000000E+01 +652836,fr,4,3.850000E+00,6.073000E+00,5.100813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999101E+01,0.000000E+00 +652839,fr,2,3.850000E+00,6.073000E+00,5.100813E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799808E+01,0.000000E+00 +652844,fr,1,3.850000E+00,6.073000E+00,5.100813E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999091E+01,-9.000000E+01 +652848,fr,2,3.950000E+00,6.073000E+00,5.100813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999199E+01,0.000000E+00 +652851,fr,1,3.950000E+00,6.073000E+00,5.100813E+01,5.000000E+00,Active Shallow Crust,2.400200E+02,5.800581E+01,0.000000E+00 +652857,fr,1,3.950000E+00,6.073000E+00,5.100813E+01,5.000000E+00,Active Shallow Crust,1.288990E+02,8.999400E+01,0.000000E+00 +652858,fr,1,3.950000E+00,6.073000E+00,5.100813E+01,1.500000E+01,Active Shallow Crust,1.288990E+02,8.999400E+01,0.000000E+00 +652872,fr,3,4.150000E+00,6.073000E+00,5.100813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +652881,fr,1,4.150000E+00,6.073000E+00,5.100813E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999364E+01,0.000000E+00 +652897,fr,1,4.350000E+00,6.073000E+00,5.100813E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +652909,fr,1,4.450000E+00,6.073000E+00,5.100813E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +652910,fr,1,4.450000E+00,6.073000E+00,5.100813E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +653091,fr,1,5.950000E+00,6.073000E+00,5.100813E+01,5.000000E+00,Active Shallow Crust,2.400584E+02,5.800008E+01,0.000000E+00 +653298,fr,1,3.650000E+00,-4.749050E+00,4.790084E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998781E+01,-9.000000E+01 +653323,fr,1,3.850000E+00,-4.749050E+00,4.790084E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,-9.000000E+01 +653376,fr,1,4.350000E+00,-4.749050E+00,4.790084E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +653388,fr,1,4.450000E+00,-4.749050E+00,4.790084E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +653520,fr,1,5.550000E+00,-4.749050E+00,4.790084E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +653802,fr,1,3.850000E+00,1.521220E+00,4.944171E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,-9.000000E+01 +653808,fr,1,3.950000E+00,1.521220E+00,4.944171E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +653869,fr,1,4.450000E+00,1.521220E+00,4.944171E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +653883,fr,1,4.550000E+00,1.521220E+00,4.944171E+01,5.000000E+00,Active Shallow Crust,2.400102E+02,5.799756E+01,0.000000E+00 +654240,fr,1,3.550000E+00,2.127010E+00,5.076520E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +654243,fr,1,3.550000E+00,2.127010E+00,5.076520E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.799804E+01,0.000000E+00 +654261,fr,1,3.650000E+00,2.127010E+00,5.076520E+01,5.000000E+00,Active Shallow Crust,1.288994E+02,8.996361E+01,0.000000E+00 +654265,fr,1,3.750000E+00,2.127010E+00,5.076520E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +654288,fr,1,3.950000E+00,2.127010E+00,5.076520E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +654321,fr,1,4.150000E+00,2.127010E+00,5.076520E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.999361E+01,0.000000E+00 +654360,fr,1,4.550000E+00,2.127010E+00,5.076520E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +654720,fr,6,3.550000E+00,7.120400E+00,5.039663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998714E+01,0.000000E+00 +654726,fr,4,3.550000E+00,7.120400E+00,5.039663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998699E+01,-9.000000E+01 +654727,fr,1,3.550000E+00,7.120400E+00,5.039663E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998699E+01,-9.000000E+01 +654732,fr,3,3.650000E+00,7.120400E+00,5.039663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998854E+01,0.000000E+00 +654733,fr,4,3.650000E+00,7.120400E+00,5.039663E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998854E+01,0.000000E+00 +654735,fr,1,3.650000E+00,7.120400E+00,5.039663E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801362E+01,0.000000E+00 +654744,fr,2,3.750000E+00,7.120400E+00,5.039663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +654745,fr,1,3.750000E+00,7.120400E+00,5.039663E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +654756,fr,2,3.850000E+00,7.120400E+00,5.039663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999090E+01,0.000000E+00 +654762,fr,1,3.850000E+00,7.120400E+00,5.039663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999079E+01,-9.000000E+01 +654777,fr,1,3.950000E+00,7.120400E+00,5.039663E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.999189E+01,0.000000E+00 +654780,fr,1,4.050000E+00,7.120400E+00,5.039663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +654781,fr,2,4.050000E+00,7.120400E+00,5.039663E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +654822,fr,1,4.350000E+00,7.120400E+00,5.039663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +654831,fr,1,4.450000E+00,7.120400E+00,5.039663E+01,5.000000E+00,Active Shallow Crust,2.400066E+02,5.799465E+01,0.000000E+00 +654840,fr,1,4.550000E+00,7.120400E+00,5.039663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +654856,fr,1,4.650000E+00,7.120400E+00,5.039663E+01,1.500000E+01,Active Shallow Crust,2.400123E+02,5.799459E+01,0.000000E+00 +654889,fr,1,4.950000E+00,7.120400E+00,5.039663E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +654937,fr,1,5.350000E+00,7.120400E+00,5.039663E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +654954,fr,1,5.450000E+00,7.120400E+00,5.039663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,-9.000000E+01 +655203,fr,1,3.550000E+00,3.094550E+00,4.796995E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799842E+01,0.000000E+00 +655224,fr,1,3.750000E+00,3.094550E+00,4.796995E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +655270,fr,1,4.050000E+00,3.094550E+00,4.796995E+01,1.500000E+01,Active Shallow Crust,1.288900E+02,8.999431E+01,0.000000E+00 +655680,fr,1,3.550000E+00,3.401420E+00,4.173319E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +655692,fr,1,3.650000E+00,3.401420E+00,4.173319E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +655702,fr,1,3.650000E+00,3.401420E+00,4.173319E+01,1.500000E+01,Active Shallow Crust,1.289011E+02,8.996343E+01,0.000000E+00 +655716,fr,1,3.850000E+00,3.401420E+00,4.173319E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +655728,fr,1,3.950000E+00,3.401420E+00,4.173319E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +655740,fr,1,4.050000E+00,3.401420E+00,4.173319E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +655745,fr,1,4.050000E+00,3.401420E+00,4.173319E+01,2.750000E+01,Active Shallow Crust,2.400052E+02,5.800544E+01,0.000000E+00 +655752,fr,2,4.150000E+00,3.401420E+00,4.173319E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +655757,fr,1,4.150000E+00,3.401420E+00,4.173319E+01,2.750000E+01,Active Shallow Crust,2.400077E+02,5.799723E+01,0.000000E+00 +655760,fr,1,4.150000E+00,3.401420E+00,4.173319E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,-9.000000E+01 +655764,fr,1,4.250000E+00,3.401420E+00,4.173319E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +655803,fr,1,4.550000E+00,3.401420E+00,4.173319E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799710E+01,0.000000E+00 +655857,fr,1,4.950000E+00,3.401420E+00,4.173319E+01,5.000000E+00,Active Shallow Crust,1.288915E+02,8.998973E+01,0.000000E+00 +655875,fr,1,5.150000E+00,3.401420E+00,4.173319E+01,5.000000E+00,Active Shallow Crust,2.400171E+02,5.799952E+01,0.000000E+00 +656685,fr,1,3.850000E+00,-1.742960E+00,4.491760E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999368E+01,0.000000E+00 +657120,fr,1,3.550000E+00,3.962380E+00,4.810087E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +657136,fr,1,3.650000E+00,3.962380E+00,4.810087E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801318E+01,0.000000E+00 +657600,fr,4,3.550000E+00,7.304400E+00,4.451706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999281E+01,0.000000E+00 +657601,fr,3,3.550000E+00,7.304400E+00,4.451706E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999281E+01,0.000000E+00 +657603,fr,2,3.550000E+00,7.304400E+00,4.451706E+01,5.000000E+00,Active Shallow Crust,2.400131E+02,5.799767E+01,0.000000E+00 +657606,fr,2,3.550000E+00,7.304400E+00,4.451706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999273E+01,-9.000000E+01 +657612,fr,6,3.650000E+00,7.304400E+00,4.451706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998718E+01,0.000000E+00 +657614,fr,2,3.650000E+00,7.304400E+00,4.451706E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998718E+01,0.000000E+00 +657615,fr,2,3.650000E+00,7.304400E+00,4.451706E+01,5.000000E+00,Active Shallow Crust,2.400001E+02,5.801410E+01,0.000000E+00 +657619,fr,1,3.650000E+00,7.304400E+00,4.451706E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998704E+01,-9.000000E+01 +657622,fr,1,3.650000E+00,7.304400E+00,4.451706E+01,1.500000E+01,Active Shallow Crust,1.289006E+02,8.996349E+01,0.000000E+00 +657624,fr,4,3.750000E+00,7.304400E+00,4.451706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998858E+01,0.000000E+00 +657625,fr,1,3.750000E+00,7.304400E+00,4.451706E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998858E+01,0.000000E+00 +657630,fr,1,3.750000E+00,7.304400E+00,4.451706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998844E+01,-9.000000E+01 +657633,fr,1,3.750000E+00,7.304400E+00,4.451706E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.996745E+01,0.000000E+00 +657636,fr,2,3.850000E+00,7.304400E+00,4.451706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +657637,fr,1,3.850000E+00,7.304400E+00,4.451706E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +657642,fr,1,3.850000E+00,7.304400E+00,4.451706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,-9.000000E+01 +657645,fr,1,3.850000E+00,7.304400E+00,4.451706E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.999236E+01,0.000000E+00 +657648,fr,3,3.950000E+00,7.304400E+00,4.451706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +657649,fr,2,3.950000E+00,7.304400E+00,4.451706E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +657651,fr,1,3.950000E+00,7.304400E+00,4.451706E+01,5.000000E+00,Active Shallow Crust,2.400193E+02,5.800525E+01,0.000000E+00 +657660,fr,3,4.050000E+00,7.304400E+00,4.451706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999191E+01,0.000000E+00 +657661,fr,1,4.050000E+00,7.304400E+00,4.451706E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999191E+01,0.000000E+00 +657669,fr,1,4.050000E+00,7.304400E+00,4.451706E+01,5.000000E+00,Active Shallow Crust,1.288920E+02,8.999191E+01,0.000000E+00 +657672,fr,3,4.150000E+00,7.304400E+00,4.451706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998919E+01,0.000000E+00 +657684,fr,2,4.250000E+00,7.304400E+00,4.451706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +657685,fr,2,4.250000E+00,7.304400E+00,4.451706E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +657696,fr,1,4.350000E+00,7.304400E+00,4.451706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999141E+01,0.000000E+00 +657708,fr,1,4.450000E+00,7.304400E+00,4.451706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +657709,fr,1,4.450000E+00,7.304400E+00,4.451706E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +657720,fr,1,4.550000E+00,7.304400E+00,4.451706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +657726,fr,1,4.550000E+00,7.304400E+00,4.451706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999080E+01,-9.000000E+01 +657732,fr,3,4.650000E+00,7.304400E+00,4.451706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +657734,fr,1,4.650000E+00,7.304400E+00,4.451706E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +657737,fr,1,4.650000E+00,7.304400E+00,4.451706E+01,2.750000E+01,Active Shallow Crust,2.400102E+02,5.799408E+01,0.000000E+00 +657744,fr,1,4.750000E+00,7.304400E+00,4.451706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +657768,fr,1,4.950000E+00,7.304400E+00,4.451706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +657780,fr,1,5.050000E+00,7.304400E+00,4.451706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +657804,fr,1,5.250000E+00,7.304400E+00,4.451706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +658560,fr,1,3.550000E+00,-1.862980E+00,4.627331E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +658561,fr,1,3.550000E+00,-1.862980E+00,4.627331E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +658596,fr,1,3.850000E+00,-1.862980E+00,4.627331E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +658609,fr,1,3.950000E+00,-1.862980E+00,4.627331E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +658647,fr,1,4.250000E+00,-1.862980E+00,4.627331E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.799408E+01,0.000000E+00 +659040,fr,1,3.550000E+00,-3.461170E+00,4.417764E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998915E+01,0.000000E+00 +659209,fr,1,4.950000E+00,-3.461170E+00,4.417764E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +659532,fr,3,3.650000E+00,1.145020E+00,4.916182E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +659538,fr,1,3.650000E+00,1.145020E+00,4.916182E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +659544,fr,2,3.750000E+00,1.145020E+00,4.916182E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +659550,fr,1,3.750000E+00,1.145020E+00,4.916182E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,-9.000000E+01 +659556,fr,1,3.850000E+00,1.145020E+00,4.916182E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +659557,fr,2,3.850000E+00,1.145020E+00,4.916182E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +659616,fr,1,4.350000E+00,1.145020E+00,4.916182E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +659617,fr,1,4.350000E+00,1.145020E+00,4.916182E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +659631,fr,1,4.450000E+00,1.145020E+00,4.916182E+01,5.000000E+00,Active Shallow Crust,2.400060E+02,5.799477E+01,0.000000E+00 +659638,fr,1,4.450000E+00,1.145020E+00,4.916182E+01,1.500000E+01,Active Shallow Crust,1.288916E+02,8.999357E+01,0.000000E+00 +660009,fr,1,3.550000E+00,-5.716580E+00,4.806916E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.999326E+01,0.000000E+00 +660012,fr,1,3.650000E+00,-5.716580E+00,4.806916E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998799E+01,0.000000E+00 +660960,fr,1,3.550000E+00,6.082390E+00,5.161941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998748E+01,0.000000E+00 +660961,fr,1,3.550000E+00,6.082390E+00,5.161941E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998748E+01,0.000000E+00 +660972,fr,1,3.650000E+00,6.082390E+00,5.161941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998884E+01,0.000000E+00 +660975,fr,1,3.650000E+00,6.082390E+00,5.161941E+01,5.000000E+00,Active Shallow Crust,2.400029E+02,5.801193E+01,0.000000E+00 +660984,fr,1,3.750000E+00,6.082390E+00,5.161941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +661015,fr,1,3.950000E+00,6.082390E+00,5.161941E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998801E+01,-9.000000E+01 +661039,fr,1,4.150000E+00,6.082390E+00,5.161941E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999048E+01,-9.000000E+01 +661041,fr,1,4.150000E+00,6.082390E+00,5.161941E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999373E+01,0.000000E+00 +661164,fr,1,5.250000E+00,6.082390E+00,5.161941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +661440,fr,5,3.550000E+00,7.850190E+00,4.783604E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999323E+01,0.000000E+00 +661441,fr,1,3.550000E+00,7.850190E+00,4.783604E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999323E+01,0.000000E+00 +661446,fr,1,3.550000E+00,7.850190E+00,4.783604E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999316E+01,-9.000000E+01 +661448,fr,1,3.550000E+00,7.850190E+00,4.783604E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999316E+01,-9.000000E+01 +661452,fr,4,3.650000E+00,7.850190E+00,4.783604E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998794E+01,0.000000E+00 +661453,fr,2,3.650000E+00,7.850190E+00,4.783604E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998794E+01,0.000000E+00 +661454,fr,1,3.650000E+00,7.850190E+00,4.783604E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998794E+01,0.000000E+00 +661455,fr,2,3.650000E+00,7.850190E+00,4.783604E+01,5.000000E+00,Active Shallow Crust,2.400019E+02,5.801270E+01,0.000000E+00 +661466,fr,1,3.750000E+00,7.850190E+00,4.783604E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +661471,fr,1,3.750000E+00,7.850190E+00,4.783604E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998912E+01,-9.000000E+01 +661476,fr,2,3.850000E+00,7.850190E+00,4.783604E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +661477,fr,1,3.850000E+00,7.850190E+00,4.783604E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +661482,fr,1,3.850000E+00,7.850190E+00,4.783604E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,-9.000000E+01 +661484,fr,1,3.850000E+00,7.850190E+00,4.783604E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,-9.000000E+01 +661488,fr,2,3.950000E+00,7.850190E+00,4.783604E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999146E+01,0.000000E+00 +661489,fr,1,3.950000E+00,7.850190E+00,4.783604E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999146E+01,0.000000E+00 +661490,fr,1,3.950000E+00,7.850190E+00,4.783604E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999146E+01,0.000000E+00 +661500,fr,2,4.050000E+00,7.850190E+00,4.783604E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998858E+01,0.000000E+00 +661501,fr,2,4.050000E+00,7.850190E+00,4.783604E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998858E+01,0.000000E+00 +661507,fr,1,4.050000E+00,7.850190E+00,4.783604E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998845E+01,-9.000000E+01 +661509,fr,1,4.050000E+00,7.850190E+00,4.783604E+01,5.000000E+00,Active Shallow Crust,1.288904E+02,8.999429E+01,0.000000E+00 +661512,fr,1,4.150000E+00,7.850190E+00,4.783604E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +661524,fr,1,4.250000E+00,7.850190E+00,4.783604E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +661525,fr,1,4.250000E+00,7.850190E+00,4.783604E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +661530,fr,1,4.250000E+00,7.850190E+00,4.783604E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999082E+01,-9.000000E+01 +661533,fr,1,4.250000E+00,7.850190E+00,4.783604E+01,5.000000E+00,Active Shallow Crust,1.288947E+02,8.998100E+01,0.000000E+00 +661537,fr,1,4.350000E+00,7.850190E+00,4.783604E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998922E+01,0.000000E+00 +661560,fr,1,4.550000E+00,7.850190E+00,4.783604E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +661563,fr,1,4.550000E+00,7.850190E+00,4.783604E+01,5.000000E+00,Active Shallow Crust,2.400094E+02,5.799740E+01,0.000000E+00 +661573,fr,1,4.650000E+00,7.850190E+00,4.783604E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +661656,fr,1,5.350000E+00,7.850190E+00,4.783604E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +661813,fr,1,6.650000E+00,7.850190E+00,4.783604E+01,1.500000E+01,Active Shallow Crust,3.599999E+02,8.999006E+01,0.000000E+00 +661920,fr,1,3.550000E+00,8.653480E+00,4.868622E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998669E+01,0.000000E+00 +661929,fr,1,3.550000E+00,8.653480E+00,4.868622E+01,5.000000E+00,Active Shallow Crust,1.288932E+02,8.999334E+01,0.000000E+00 +661932,fr,4,3.650000E+00,8.653480E+00,4.868622E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998814E+01,0.000000E+00 +661951,fr,1,3.750000E+00,8.653480E+00,4.868622E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998930E+01,-9.000000E+01 +661956,fr,2,3.850000E+00,8.653480E+00,4.868622E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +661962,fr,1,3.850000E+00,8.653480E+00,4.868622E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,-9.000000E+01 +661980,fr,2,4.050000E+00,8.653480E+00,4.868622E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999252E+01,0.000000E+00 +661981,fr,1,4.050000E+00,8.653480E+00,4.868622E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999252E+01,0.000000E+00 +661997,fr,1,4.150000E+00,8.653480E+00,4.868622E+01,2.750000E+01,Active Shallow Crust,2.400090E+02,5.799837E+01,0.000000E+00 +662044,fr,1,4.550000E+00,8.653480E+00,4.868622E+01,1.500000E+01,Active Shallow Crust,2.400089E+02,5.799782E+01,0.000000E+00 +662068,fr,1,4.750000E+00,8.653480E+00,4.868622E+01,1.500000E+01,Active Shallow Crust,2.400088E+02,5.800457E+01,0.000000E+00 +662403,fr,1,3.550000E+00,-6.246560E+00,4.689940E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799904E+01,0.000000E+00 +663462,fr,1,4.350000E+00,8.683490E+00,5.106139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,-9.000000E+01 +663842,fr,1,3.550000E+00,-6.695850E+00,4.823019E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999329E+01,0.000000E+00 +664320,fr,1,3.550000E+00,5.014280E+00,5.099175E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998730E+01,0.000000E+00 +664321,fr,1,3.550000E+00,5.014280E+00,5.099175E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998730E+01,0.000000E+00 +664324,fr,1,3.550000E+00,5.014280E+00,5.099175E+01,1.500000E+01,Active Shallow Crust,2.400130E+02,5.799764E+01,0.000000E+00 +664428,fr,1,4.450000E+00,5.014280E+00,5.099175E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999099E+01,0.000000E+00 +664440,fr,1,4.550000E+00,5.014280E+00,5.099175E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +664678,fr,1,6.450000E+00,5.014280E+00,5.099175E+01,1.500000E+01,Active Shallow Crust,1.288261E+02,8.999046E+01,0.000000E+00 +664821,fr,1,3.650000E+00,7.057030E+00,4.315539E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996346E+01,0.000000E+00 +664824,fr,1,3.750000E+00,7.057030E+00,4.315539E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998831E+01,0.000000E+00 +664853,fr,1,3.950000E+00,7.057030E+00,4.315539E+01,2.750000E+01,Active Shallow Crust,2.400198E+02,5.800525E+01,0.000000E+00 +664993,fr,1,5.150000E+00,7.057030E+00,4.315539E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +665280,fr,5,3.550000E+00,2.262330E+00,4.236249E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +665281,fr,3,3.550000E+00,2.262330E+00,4.236249E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +665283,fr,1,3.550000E+00,2.262330E+00,4.236249E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799802E+01,0.000000E+00 +665289,fr,2,3.550000E+00,2.262330E+00,4.236249E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.999255E+01,0.000000E+00 +665292,fr,4,3.650000E+00,2.262330E+00,4.236249E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +665293,fr,1,3.650000E+00,2.262330E+00,4.236249E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +665295,fr,1,3.650000E+00,2.262330E+00,4.236249E+01,5.000000E+00,Active Shallow Crust,2.400004E+02,5.801303E+01,0.000000E+00 +665296,fr,1,3.650000E+00,2.262330E+00,4.236249E+01,1.500000E+01,Active Shallow Crust,2.400004E+02,5.801303E+01,0.000000E+00 +665304,fr,4,3.750000E+00,2.262330E+00,4.236249E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999112E+01,0.000000E+00 +665305,fr,3,3.750000E+00,2.262330E+00,4.236249E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999112E+01,0.000000E+00 +665307,fr,2,3.750000E+00,2.262330E+00,4.236249E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.801749E+01,0.000000E+00 +665308,fr,1,3.750000E+00,2.262330E+00,4.236249E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.801749E+01,0.000000E+00 +665310,fr,1,3.750000E+00,2.262330E+00,4.236249E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999102E+01,-9.000000E+01 +665311,fr,1,3.750000E+00,2.262330E+00,4.236249E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999102E+01,-9.000000E+01 +665313,fr,1,3.750000E+00,2.262330E+00,4.236249E+01,5.000000E+00,Active Shallow Crust,1.288974E+02,8.996742E+01,0.000000E+00 +665314,fr,1,3.750000E+00,2.262330E+00,4.236249E+01,1.500000E+01,Active Shallow Crust,1.288974E+02,8.996742E+01,0.000000E+00 +665316,fr,3,3.850000E+00,2.262330E+00,4.236249E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +665317,fr,1,3.850000E+00,2.262330E+00,4.236249E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +665323,fr,1,3.850000E+00,2.262330E+00,4.236249E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,-9.000000E+01 +665328,fr,1,3.950000E+00,2.262330E+00,4.236249E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +665343,fr,1,4.050000E+00,2.262330E+00,4.236249E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.800586E+01,0.000000E+00 +665362,fr,1,4.150000E+00,2.262330E+00,4.236249E+01,1.500000E+01,Active Shallow Crust,1.288985E+02,8.999347E+01,0.000000E+00 +665364,fr,1,4.250000E+00,2.262330E+00,4.236249E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +665369,fr,1,4.250000E+00,2.262330E+00,4.236249E+01,2.750000E+01,Active Shallow Crust,2.400067E+02,5.799406E+01,0.000000E+00 +665371,fr,1,4.250000E+00,2.262330E+00,4.236249E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,-9.000000E+01 +665376,fr,2,4.350000E+00,2.262330E+00,4.236249E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +665390,fr,1,4.450000E+00,2.262330E+00,4.236249E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +665395,fr,1,4.450000E+00,2.262330E+00,4.236249E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999064E+01,-9.000000E+01 +665396,fr,1,4.450000E+00,2.262330E+00,4.236249E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999064E+01,-9.000000E+01 +665400,fr,1,4.550000E+00,2.262330E+00,4.236249E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +665412,fr,2,4.650000E+00,2.262330E+00,4.236249E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +665413,fr,1,4.650000E+00,2.262330E+00,4.236249E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +665421,fr,1,4.650000E+00,2.262330E+00,4.236249E+01,5.000000E+00,Active Shallow Crust,1.288922E+02,8.998701E+01,0.000000E+00 +665460,fr,1,5.050000E+00,2.262330E+00,4.236249E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +665461,fr,1,5.050000E+00,2.262330E+00,4.236249E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +665485,fr,1,5.250000E+00,2.262330E+00,4.236249E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +665496,fr,1,5.350000E+00,2.262330E+00,4.236249E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +665508,fr,1,5.450000E+00,2.262330E+00,4.236249E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +665760,fr,1,3.550000E+00,-8.261700E-01,4.595719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +665761,fr,1,3.550000E+00,-8.261700E-01,4.595719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +665769,fr,1,3.550000E+00,-8.261700E-01,4.595719E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999387E+01,0.000000E+00 +665770,fr,1,3.550000E+00,-8.261700E-01,4.595719E+01,1.500000E+01,Active Shallow Crust,1.288964E+02,8.999387E+01,0.000000E+00 +665809,fr,1,3.950000E+00,-8.261700E-01,4.595719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +665826,fr,1,4.050000E+00,-8.261700E-01,4.595719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +665845,fr,1,4.250000E+00,-8.261700E-01,4.595719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +665850,fr,1,4.250000E+00,-8.261700E-01,4.595719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +665934,fr,1,4.950000E+00,-8.261700E-01,4.595719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +665968,fr,1,5.250000E+00,-8.261700E-01,4.595719E+01,1.500000E+01,Active Shallow Crust,2.400251E+02,5.800023E+01,0.000000E+00 +666061,fr,1,6.050000E+00,-8.261700E-01,4.595719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +666240,fr,1,3.550000E+00,-1.197810E+00,4.483380E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +666504,fr,1,5.750000E+00,-1.197810E+00,4.483380E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +666720,fr,2,3.550000E+00,1.184000E+00,4.637803E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +666726,fr,1,3.550000E+00,1.184000E+00,4.637803E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,-9.000000E+01 +666733,fr,1,3.650000E+00,1.184000E+00,4.637803E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +666735,fr,1,3.650000E+00,1.184000E+00,4.637803E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801302E+01,0.000000E+00 +666756,fr,1,3.850000E+00,1.184000E+00,4.637803E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +666771,fr,1,3.950000E+00,1.184000E+00,4.637803E+01,5.000000E+00,Active Shallow Crust,2.400198E+02,5.800503E+01,0.000000E+00 +666780,fr,1,4.050000E+00,1.184000E+00,4.637803E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +666781,fr,1,4.050000E+00,1.184000E+00,4.637803E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +666792,fr,1,4.150000E+00,1.184000E+00,4.637803E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +666793,fr,1,4.150000E+00,1.184000E+00,4.637803E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +666804,fr,1,4.250000E+00,1.184000E+00,4.637803E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +666816,fr,2,4.350000E+00,1.184000E+00,4.637803E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +666819,fr,1,4.350000E+00,1.184000E+00,4.637803E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799603E+01,0.000000E+00 +666841,fr,1,4.550000E+00,1.184000E+00,4.637803E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +666960,fr,1,5.550000E+00,1.184000E+00,4.637803E+01,5.000000E+00,Active Shallow Crust,3.599999E+02,8.999008E+01,0.000000E+00 +667200,fr,1,3.550000E+00,7.161900E+00,4.396936E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999274E+01,0.000000E+00 +667201,fr,1,3.550000E+00,7.161900E+00,4.396936E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999274E+01,0.000000E+00 +667212,fr,1,3.650000E+00,7.161900E+00,4.396936E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998706E+01,0.000000E+00 +667216,fr,1,3.650000E+00,7.161900E+00,4.396936E+01,1.500000E+01,Active Shallow Crust,2.400008E+02,5.801287E+01,0.000000E+00 +667224,fr,3,3.750000E+00,7.161900E+00,4.396936E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998847E+01,0.000000E+00 +667236,fr,1,3.850000E+00,7.161900E+00,4.396936E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +667239,fr,1,3.850000E+00,7.161900E+00,4.396936E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799811E+01,0.000000E+00 +667245,fr,1,3.850000E+00,7.161900E+00,4.396936E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999229E+01,0.000000E+00 +667260,fr,1,4.050000E+00,7.161900E+00,4.396936E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999184E+01,0.000000E+00 +667284,fr,1,4.250000E+00,7.161900E+00,4.396936E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +667286,fr,1,4.250000E+00,7.161900E+00,4.396936E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +667296,fr,1,4.350000E+00,7.161900E+00,4.396936E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +667298,fr,1,4.350000E+00,7.161900E+00,4.396936E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +667299,fr,1,4.350000E+00,7.161900E+00,4.396936E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799579E+01,0.000000E+00 +667314,fr,1,4.450000E+00,7.161900E+00,4.396936E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,-9.000000E+01 +667413,fr,1,5.250000E+00,7.161900E+00,4.396936E+01,5.000000E+00,Active Shallow Crust,1.288844E+02,8.998705E+01,0.000000E+00 +667680,fr,3,3.550000E+00,6.358310E+00,4.650187E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999306E+01,0.000000E+00 +667681,fr,3,3.550000E+00,6.358310E+00,4.650187E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999306E+01,0.000000E+00 +667687,fr,1,3.550000E+00,6.358310E+00,4.650187E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999298E+01,-9.000000E+01 +667689,fr,1,3.550000E+00,6.358310E+00,4.650187E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999306E+01,0.000000E+00 +667692,fr,1,3.650000E+00,6.358310E+00,4.650187E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998763E+01,0.000000E+00 +667693,fr,1,3.650000E+00,6.358310E+00,4.650187E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998763E+01,0.000000E+00 +667694,fr,1,3.650000E+00,6.358310E+00,4.650187E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998763E+01,0.000000E+00 +667710,fr,1,3.750000E+00,6.358310E+00,4.650187E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998885E+01,-9.000000E+01 +667717,fr,2,3.850000E+00,6.358310E+00,4.650187E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +667718,fr,1,3.850000E+00,6.358310E+00,4.650187E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +667722,fr,2,3.850000E+00,6.358310E+00,4.650187E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +667728,fr,1,3.950000E+00,6.358310E+00,4.650187E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999124E+01,0.000000E+00 +667729,fr,1,3.950000E+00,6.358310E+00,4.650187E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999124E+01,0.000000E+00 +667730,fr,1,3.950000E+00,6.358310E+00,4.650187E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999124E+01,0.000000E+00 +667733,fr,1,3.950000E+00,6.358310E+00,4.650187E+01,2.750000E+01,Active Shallow Crust,2.400193E+02,5.800549E+01,0.000000E+00 +667741,fr,1,4.050000E+00,6.358310E+00,4.650187E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998829E+01,0.000000E+00 +667752,fr,2,4.150000E+00,6.358310E+00,4.650187E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +667761,fr,1,4.150000E+00,6.358310E+00,4.650187E+01,5.000000E+00,Active Shallow Crust,1.288984E+02,8.999304E+01,0.000000E+00 +667767,fr,1,4.250000E+00,6.358310E+00,4.650187E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.799419E+01,0.000000E+00 +667799,fr,1,4.450000E+00,6.358310E+00,4.650187E+01,2.750000E+01,Active Shallow Crust,1.288929E+02,8.999261E+01,0.000000E+00 +667800,fr,1,4.550000E+00,6.358310E+00,4.650187E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998902E+01,0.000000E+00 +667803,fr,1,4.550000E+00,6.358310E+00,4.650187E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.799744E+01,0.000000E+00 +667873,fr,1,5.150000E+00,6.358310E+00,4.650187E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +667878,fr,1,5.150000E+00,6.358310E+00,4.650187E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +667910,fr,1,5.450000E+00,6.358310E+00,4.650187E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +668163,fr,1,3.550000E+00,3.547440E+00,4.026564E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799797E+01,0.000000E+00 +668185,fr,1,3.750000E+00,3.547440E+00,4.026564E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +668208,fr,1,3.950000E+00,3.547440E+00,4.026564E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +668212,fr,1,3.950000E+00,3.547440E+00,4.026564E+01,1.500000E+01,Active Shallow Crust,2.400191E+02,5.800508E+01,0.000000E+00 +668640,fr,2,3.550000E+00,-2.841250E+00,4.299958E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998894E+01,0.000000E+00 +668644,fr,1,3.550000E+00,-2.841250E+00,4.299958E+01,1.500000E+01,Active Shallow Crust,2.400115E+02,5.799802E+01,0.000000E+00 +668646,fr,1,3.550000E+00,-2.841250E+00,4.299958E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998881E+01,-9.000000E+01 +668689,fr,1,3.950000E+00,-2.841250E+00,4.299958E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999069E+01,0.000000E+00 +668695,fr,1,3.950000E+00,-2.841250E+00,4.299958E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,-9.000000E+01 +668706,fr,1,4.050000E+00,-2.841250E+00,4.299958E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,-9.000000E+01 +668760,fr,1,4.550000E+00,-2.841250E+00,4.299958E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +668764,fr,1,4.550000E+00,-2.841250E+00,4.299958E+01,1.500000E+01,Active Shallow Crust,2.400082E+02,5.799729E+01,0.000000E+00 +668823,fr,1,5.050000E+00,-2.841250E+00,4.299958E+01,5.000000E+00,Active Shallow Crust,2.400204E+02,5.799727E+01,0.000000E+00 +669600,fr,1,3.550000E+00,-3.066620E+00,4.752326E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +669601,fr,1,3.550000E+00,-3.066620E+00,4.752326E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +669603,fr,1,3.550000E+00,-3.066620E+00,4.752326E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799852E+01,0.000000E+00 +669605,fr,1,3.550000E+00,-3.066620E+00,4.752326E+01,2.750000E+01,Active Shallow Crust,2.400123E+02,5.799842E+01,0.000000E+00 +669609,fr,1,3.550000E+00,-3.066620E+00,4.752326E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999490E+01,0.000000E+00 +669611,fr,1,3.550000E+00,-3.066620E+00,4.752326E+01,2.750000E+01,Active Shallow Crust,1.288960E+02,8.999490E+01,0.000000E+00 +669630,fr,1,3.750000E+00,-3.066620E+00,4.752326E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998906E+01,-9.000000E+01 +669636,fr,1,3.850000E+00,-3.066620E+00,4.752326E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +669637,fr,1,3.850000E+00,-3.066620E+00,4.752326E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +669648,fr,1,3.950000E+00,-3.066620E+00,4.752326E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +669672,fr,1,4.150000E+00,-3.066620E+00,4.752326E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +669684,fr,1,4.250000E+00,-3.066620E+00,4.752326E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +669697,fr,1,4.350000E+00,-3.066620E+00,4.752326E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +669705,fr,1,4.350000E+00,-3.066620E+00,4.752326E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.998283E+01,0.000000E+00 +669708,fr,1,4.450000E+00,-3.066620E+00,4.752326E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +669807,fr,1,5.250000E+00,-3.066620E+00,4.752326E+01,5.000000E+00,Active Shallow Crust,2.400261E+02,5.800049E+01,0.000000E+00 +670080,fr,5,3.550000E+00,-1.426690E+00,4.712589E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +670082,fr,1,3.550000E+00,-1.426690E+00,4.712589E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +670083,fr,1,3.550000E+00,-1.426690E+00,4.712589E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799828E+01,0.000000E+00 +670090,fr,1,3.550000E+00,-1.426690E+00,4.712589E+01,1.500000E+01,Active Shallow Crust,1.288962E+02,8.999400E+01,0.000000E+00 +670101,fr,1,3.650000E+00,-1.426690E+00,4.712589E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.996354E+01,0.000000E+00 +670104,fr,3,3.750000E+00,-1.426690E+00,4.712589E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +670116,fr,1,3.850000E+00,-1.426690E+00,4.712589E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +670119,fr,1,3.850000E+00,-1.426690E+00,4.712589E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799787E+01,0.000000E+00 +670129,fr,1,3.950000E+00,-1.426690E+00,4.712589E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +670130,fr,1,3.950000E+00,-1.426690E+00,4.712589E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +670134,fr,1,3.950000E+00,-1.426690E+00,4.712589E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,-9.000000E+01 +670140,fr,2,4.050000E+00,-1.426690E+00,4.712589E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +670142,fr,1,4.050000E+00,-1.426690E+00,4.712589E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +670164,fr,1,4.250000E+00,-1.426690E+00,4.712589E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +670177,fr,1,4.350000E+00,-1.426690E+00,4.712589E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +670212,fr,2,4.650000E+00,-1.426690E+00,4.712589E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +670219,fr,1,4.650000E+00,-1.426690E+00,4.712589E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999022E+01,-9.000000E+01 +670239,fr,1,4.850000E+00,-1.426690E+00,4.712589E+01,5.000000E+00,Active Shallow Crust,2.400173E+02,5.800243E+01,0.000000E+00 +670260,fr,1,5.050000E+00,-1.426690E+00,4.712589E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +670284,fr,1,5.250000E+00,-1.426690E+00,4.712589E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +670287,fr,1,5.250000E+00,-1.426690E+00,4.712589E+01,5.000000E+00,Active Shallow Crust,2.400258E+02,5.800038E+01,0.000000E+00 +670320,fr,1,5.550000E+00,-1.426690E+00,4.712589E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +670332,fr,1,5.650000E+00,-1.426690E+00,4.712589E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +670560,fr,5,3.550000E+00,2.461820E+00,4.239419E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998883E+01,0.000000E+00 +670561,fr,1,3.550000E+00,2.461820E+00,4.239419E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998883E+01,0.000000E+00 +670562,fr,1,3.550000E+00,2.461820E+00,4.239419E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998883E+01,0.000000E+00 +670563,fr,1,3.550000E+00,2.461820E+00,4.239419E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799811E+01,0.000000E+00 +670569,fr,1,3.550000E+00,2.461820E+00,4.239419E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999255E+01,0.000000E+00 +670572,fr,4,3.650000E+00,2.461820E+00,4.239419E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +670576,fr,1,3.650000E+00,2.461820E+00,4.239419E+01,1.500000E+01,Active Shallow Crust,2.400004E+02,5.801276E+01,0.000000E+00 +670584,fr,1,3.750000E+00,2.461820E+00,4.239419E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999113E+01,0.000000E+00 +670585,fr,1,3.750000E+00,2.461820E+00,4.239419E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999113E+01,0.000000E+00 +670596,fr,3,3.850000E+00,2.461820E+00,4.239419E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +670599,fr,1,3.850000E+00,2.461820E+00,4.239419E+01,5.000000E+00,Active Shallow Crust,2.400102E+02,5.799807E+01,0.000000E+00 +670602,fr,1,3.850000E+00,2.461820E+00,4.239419E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,-9.000000E+01 +670608,fr,1,3.950000E+00,2.461820E+00,4.239419E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +670611,fr,1,3.950000E+00,2.461820E+00,4.239419E+01,5.000000E+00,Active Shallow Crust,2.400193E+02,5.800483E+01,0.000000E+00 +670612,fr,1,3.950000E+00,2.461820E+00,4.239419E+01,1.500000E+01,Active Shallow Crust,2.400193E+02,5.800483E+01,0.000000E+00 +670621,fr,2,4.050000E+00,2.461820E+00,4.239419E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +670633,fr,1,4.150000E+00,2.461820E+00,4.239419E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999067E+01,0.000000E+00 +670634,fr,1,4.150000E+00,2.461820E+00,4.239419E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999067E+01,0.000000E+00 +670670,fr,1,4.450000E+00,2.461820E+00,4.239419E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +670692,fr,1,4.650000E+00,2.461820E+00,4.239419E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +670719,fr,1,4.850000E+00,2.461820E+00,4.239419E+01,5.000000E+00,Active Shallow Crust,2.400155E+02,5.800207E+01,0.000000E+00 +670752,fr,1,5.150000E+00,2.461820E+00,4.239419E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +670765,fr,1,5.250000E+00,2.461820E+00,4.239419E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +670776,fr,1,5.350000E+00,2.461820E+00,4.239419E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +670791,fr,1,5.450000E+00,2.461820E+00,4.239419E+01,5.000000E+00,Active Shallow Crust,2.400257E+02,5.799791E+01,0.000000E+00 +671040,fr,2,3.550000E+00,-2.043670E+00,4.226103E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998881E+01,0.000000E+00 +671065,fr,1,3.750000E+00,-2.043670E+00,4.226103E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +671076,fr,1,3.850000E+00,-2.043670E+00,4.226103E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +671089,fr,1,3.950000E+00,-2.043670E+00,4.226103E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +671093,fr,1,3.950000E+00,-2.043670E+00,4.226103E+01,2.750000E+01,Active Shallow Crust,2.400189E+02,5.800517E+01,0.000000E+00 +671148,fr,1,4.450000E+00,-2.043670E+00,4.226103E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998941E+01,0.000000E+00 +671161,fr,2,4.550000E+00,-2.043670E+00,4.226103E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +671184,fr,1,4.750000E+00,-2.043670E+00,4.226103E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +671520,fr,3,3.550000E+00,9.272190E+00,4.836699E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998660E+01,0.000000E+00 +671525,fr,1,3.550000E+00,9.272190E+00,4.836699E+01,2.750000E+01,Active Shallow Crust,2.400127E+02,5.799825E+01,0.000000E+00 +671526,fr,2,3.550000E+00,9.272190E+00,4.836699E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998644E+01,-9.000000E+01 +671529,fr,1,3.550000E+00,9.272190E+00,4.836699E+01,5.000000E+00,Active Shallow Crust,1.288971E+02,8.999330E+01,0.000000E+00 +671533,fr,1,3.650000E+00,9.272190E+00,4.836699E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998806E+01,0.000000E+00 +671535,fr,2,3.650000E+00,9.272190E+00,4.836699E+01,5.000000E+00,Active Shallow Crust,2.400023E+02,5.801176E+01,0.000000E+00 +671538,fr,1,3.650000E+00,9.272190E+00,4.836699E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998792E+01,-9.000000E+01 +671542,fr,1,3.650000E+00,9.272190E+00,4.836699E+01,1.500000E+01,Active Shallow Crust,1.288981E+02,8.996356E+01,0.000000E+00 +671544,fr,2,3.750000E+00,9.272190E+00,4.836699E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +671545,fr,1,3.750000E+00,9.272190E+00,4.836699E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +671547,fr,1,3.750000E+00,9.272190E+00,4.836699E+01,5.000000E+00,Active Shallow Crust,2.400094E+02,5.801706E+01,0.000000E+00 +671557,fr,1,3.850000E+00,9.272190E+00,4.836699E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +671562,fr,1,3.850000E+00,9.272190E+00,4.836699E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,-9.000000E+01 +671569,fr,1,3.950000E+00,9.272190E+00,4.836699E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999155E+01,0.000000E+00 +671570,fr,1,3.950000E+00,9.272190E+00,4.836699E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999155E+01,0.000000E+00 +671598,fr,1,4.150000E+00,9.272190E+00,4.836699E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999321E+01,-9.000000E+01 +671604,fr,1,4.250000E+00,9.272190E+00,4.836699E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998803E+01,0.000000E+00 +671605,fr,1,4.250000E+00,9.272190E+00,4.836699E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998803E+01,0.000000E+00 +671607,fr,2,4.250000E+00,9.272190E+00,4.836699E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.799380E+01,0.000000E+00 +671619,fr,1,4.350000E+00,9.272190E+00,4.836699E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.799558E+01,0.000000E+00 +671628,fr,1,4.450000E+00,9.272190E+00,4.836699E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +671629,fr,1,4.450000E+00,9.272190E+00,4.836699E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +671644,fr,1,4.550000E+00,9.272190E+00,4.836699E+01,1.500000E+01,Active Shallow Crust,2.400100E+02,5.799754E+01,0.000000E+00 +671700,fr,1,5.050000E+00,9.272190E+00,4.836699E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +672000,fr,1,3.550000E+00,5.531590E+00,4.613671E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999301E+01,0.000000E+00 +672001,fr,1,3.550000E+00,5.531590E+00,4.613671E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999301E+01,0.000000E+00 +672004,fr,1,3.550000E+00,5.531590E+00,4.613671E+01,1.500000E+01,Active Shallow Crust,2.400125E+02,5.799842E+01,0.000000E+00 +672012,fr,1,3.650000E+00,5.531590E+00,4.613671E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998754E+01,0.000000E+00 +672015,fr,1,3.650000E+00,5.531590E+00,4.613671E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801202E+01,0.000000E+00 +672018,fr,1,3.650000E+00,5.531590E+00,4.613671E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998740E+01,-9.000000E+01 +672022,fr,1,3.650000E+00,5.531590E+00,4.613671E+01,1.500000E+01,Active Shallow Crust,1.288999E+02,8.996352E+01,0.000000E+00 +672027,fr,1,3.750000E+00,5.531590E+00,4.613671E+01,5.000000E+00,Active Shallow Crust,2.400094E+02,5.801661E+01,0.000000E+00 +672036,fr,3,3.850000E+00,5.531590E+00,4.613671E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +672063,fr,1,4.050000E+00,5.531590E+00,4.613671E+01,5.000000E+00,Active Shallow Crust,2.400057E+02,5.800636E+01,0.000000E+00 +672097,fr,1,4.350000E+00,5.531590E+00,4.613671E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998887E+01,0.000000E+00 +672115,fr,1,4.450000E+00,5.531590E+00,4.613671E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +672150,fr,1,4.750000E+00,5.531590E+00,4.613671E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998934E+01,-9.000000E+01 +672190,fr,1,5.050000E+00,5.531590E+00,4.613671E+01,1.500000E+01,Active Shallow Crust,1.288855E+02,8.999051E+01,0.000000E+00 +672483,fr,1,3.550000E+00,1.490270E+00,4.371003E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799800E+01,0.000000E+00 +672490,fr,1,3.550000E+00,1.490270E+00,4.371003E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.999362E+01,0.000000E+00 +672494,fr,1,3.650000E+00,1.490270E+00,4.371003E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +672552,fr,1,4.150000E+00,1.490270E+00,4.371003E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +672614,fr,1,4.650000E+00,1.490270E+00,4.371003E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +673104,fr,1,4.750000E+00,4.126040E+00,4.900767E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +673449,fr,1,3.550000E+00,3.881150E+00,4.193780E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999438E+01,0.000000E+00 +673476,fr,2,3.850000E+00,3.881150E+00,4.193780E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +673539,fr,1,4.350000E+00,3.881150E+00,4.193780E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.799559E+01,0.000000E+00 +673552,fr,1,4.450000E+00,3.881150E+00,4.193780E+01,1.500000E+01,Active Shallow Crust,2.400039E+02,5.799454E+01,0.000000E+00 +673924,fr,1,3.550000E+00,3.645500E+00,5.207754E+01,1.500000E+01,Active Shallow Crust,2.400132E+02,5.799830E+01,0.000000E+00 +673926,fr,1,3.550000E+00,3.645500E+00,5.207754E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,-9.000000E+01 +673933,fr,1,3.650000E+00,3.645500E+00,5.207754E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +674103,fr,1,5.050000E+00,3.645500E+00,5.207754E+01,5.000000E+00,Active Shallow Crust,2.400253E+02,5.799816E+01,0.000000E+00 +674124,fr,1,5.250000E+00,3.645500E+00,5.207754E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +674400,fr,1,3.550000E+00,4.527620E+00,4.868795E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998669E+01,0.000000E+00 +674450,fr,1,3.950000E+00,4.527620E+00,4.868795E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999160E+01,0.000000E+00 +674471,fr,1,4.050000E+00,4.527620E+00,4.868795E+01,2.750000E+01,Active Shallow Crust,1.288900E+02,8.999438E+01,0.000000E+00 +674532,fr,1,4.650000E+00,4.527620E+00,4.868795E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +674883,fr,1,3.550000E+00,-1.175490E+00,4.875794E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799823E+01,0.000000E+00 +674889,fr,1,3.550000E+00,-1.175490E+00,4.875794E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999419E+01,0.000000E+00 +674893,fr,1,3.650000E+00,-1.175490E+00,4.875794E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +674896,fr,1,3.650000E+00,-1.175490E+00,4.875794E+01,1.500000E+01,Active Shallow Crust,2.400012E+02,5.801297E+01,0.000000E+00 +674904,fr,1,3.750000E+00,-1.175490E+00,4.875794E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +674913,fr,1,3.750000E+00,-1.175490E+00,4.875794E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.996741E+01,0.000000E+00 +674914,fr,1,3.750000E+00,-1.175490E+00,4.875794E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.996741E+01,0.000000E+00 +674916,fr,1,3.850000E+00,-1.175490E+00,4.875794E+01,5.000000E+00,Active Shallow Crust,3.599994E+02,8.999059E+01,0.000000E+00 +674917,fr,1,3.850000E+00,-1.175490E+00,4.875794E+01,1.500000E+01,Active Shallow Crust,3.599994E+02,8.999059E+01,0.000000E+00 +674920,fr,1,3.850000E+00,-1.175490E+00,4.875794E+01,1.500000E+01,Active Shallow Crust,2.400111E+02,5.799791E+01,0.000000E+00 +674922,fr,1,3.850000E+00,-1.175490E+00,4.875794E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,-9.000000E+01 +674928,fr,1,3.950000E+00,-1.175490E+00,4.875794E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +674930,fr,1,3.950000E+00,-1.175490E+00,4.875794E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +674937,fr,1,3.950000E+00,-1.175490E+00,4.875794E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.999371E+01,0.000000E+00 +674946,fr,2,4.050000E+00,-1.175490E+00,4.875794E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,-9.000000E+01 +674977,fr,1,4.350000E+00,-1.175490E+00,4.875794E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +674980,fr,1,4.350000E+00,-1.175490E+00,4.875794E+01,1.500000E+01,Active Shallow Crust,2.400090E+02,5.799606E+01,0.000000E+00 +675372,fr,1,3.650000E+00,1.174890E+00,4.850451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +675376,fr,1,3.650000E+00,1.174890E+00,4.850451E+01,1.500000E+01,Active Shallow Crust,2.400014E+02,5.801275E+01,0.000000E+00 +675432,fr,1,4.150000E+00,1.174890E+00,4.850451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +675468,fr,1,4.450000E+00,1.174890E+00,4.850451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +675601,fr,1,5.550000E+00,1.174890E+00,4.850451E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +675852,fr,1,3.650000E+00,9.079370E+00,4.898254E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998820E+01,0.000000E+00 +675853,fr,3,3.650000E+00,9.079370E+00,4.898254E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998820E+01,0.000000E+00 +675864,fr,1,3.750000E+00,9.079370E+00,4.898254E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +675873,fr,1,3.750000E+00,9.079370E+00,4.898254E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.996754E+01,0.000000E+00 +675883,fr,1,3.850000E+00,9.079370E+00,4.898254E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,-9.000000E+01 +675903,fr,1,4.050000E+00,9.079370E+00,4.898254E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.800597E+01,0.000000E+00 +675943,fr,1,4.350000E+00,9.079370E+00,4.898254E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998934E+01,-9.000000E+01 +676332,fr,1,3.650000E+00,5.057450E+00,4.101807E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999322E+01,0.000000E+00 +676392,fr,1,4.150000E+00,5.057450E+00,4.101807E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +676800,fr,3,3.550000E+00,4.328960E+00,5.089632E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998728E+01,0.000000E+00 +676801,fr,1,3.550000E+00,4.328960E+00,5.089632E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998728E+01,0.000000E+00 +676833,fr,1,3.750000E+00,4.328960E+00,5.089632E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.996757E+01,0.000000E+00 +676836,fr,2,3.850000E+00,4.328960E+00,5.089632E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +676838,fr,1,3.850000E+00,4.328960E+00,5.089632E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +676848,fr,1,3.950000E+00,4.328960E+00,5.089632E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999197E+01,0.000000E+00 +676862,fr,1,4.050000E+00,4.328960E+00,5.089632E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +676878,fr,1,4.150000E+00,4.328960E+00,5.089632E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,-9.000000E+01 +676920,fr,1,4.550000E+00,4.328960E+00,5.089632E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +677292,fr,1,3.650000E+00,2.605800E+00,5.282305E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +677316,fr,1,3.850000E+00,2.605800E+00,5.282305E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +677448,fr,1,4.950000E+00,2.605800E+00,5.282305E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +677760,fr,2,3.550000E+00,5.894310E+00,4.381617E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999272E+01,0.000000E+00 +677761,fr,2,3.550000E+00,5.894310E+00,4.381617E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999272E+01,0.000000E+00 +677764,fr,1,3.550000E+00,5.894310E+00,4.381617E+01,1.500000E+01,Active Shallow Crust,2.400113E+02,5.799784E+01,0.000000E+00 +677766,fr,1,3.550000E+00,5.894310E+00,4.381617E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999264E+01,-9.000000E+01 +677772,fr,6,3.650000E+00,5.894310E+00,4.381617E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998703E+01,0.000000E+00 +677775,fr,1,3.650000E+00,5.894310E+00,4.381617E+01,5.000000E+00,Active Shallow Crust,2.400015E+02,5.801278E+01,0.000000E+00 +677782,fr,1,3.650000E+00,5.894310E+00,4.381617E+01,1.500000E+01,Active Shallow Crust,1.288998E+02,8.996391E+01,0.000000E+00 +677784,fr,2,3.750000E+00,5.894310E+00,4.381617E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998844E+01,0.000000E+00 +677785,fr,2,3.750000E+00,5.894310E+00,4.381617E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998844E+01,0.000000E+00 +677790,fr,1,3.750000E+00,5.894310E+00,4.381617E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998830E+01,-9.000000E+01 +677796,fr,2,3.850000E+00,5.894310E+00,4.381617E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +677817,fr,1,3.950000E+00,5.894310E+00,4.381617E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.999311E+01,0.000000E+00 +677820,fr,1,4.050000E+00,5.894310E+00,4.381617E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999181E+01,0.000000E+00 +677822,fr,1,4.050000E+00,5.894310E+00,4.381617E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999181E+01,0.000000E+00 +677823,fr,1,4.050000E+00,5.894310E+00,4.381617E+01,5.000000E+00,Active Shallow Crust,2.400052E+02,5.800591E+01,0.000000E+00 +677832,fr,1,4.150000E+00,5.894310E+00,4.381617E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998906E+01,0.000000E+00 +677835,fr,1,4.150000E+00,5.894310E+00,4.381617E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.799760E+01,0.000000E+00 +677844,fr,2,4.250000E+00,5.894310E+00,4.381617E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +677846,fr,1,4.250000E+00,5.894310E+00,4.381617E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +677847,fr,1,4.250000E+00,5.894310E+00,4.381617E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.799416E+01,0.000000E+00 +677868,fr,1,4.450000E+00,5.894310E+00,4.381617E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +677869,fr,1,4.450000E+00,5.894310E+00,4.381617E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +677895,fr,1,4.650000E+00,5.894310E+00,4.381617E+01,5.000000E+00,Active Shallow Crust,2.400102E+02,5.799409E+01,0.000000E+00 +677928,fr,2,4.950000E+00,5.894310E+00,4.381617E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +677932,fr,1,4.950000E+00,5.894310E+00,4.381617E+01,1.500000E+01,Active Shallow Crust,2.400107E+02,5.800420E+01,0.000000E+00 +677977,fr,1,5.350000E+00,5.894310E+00,4.381617E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +678303,fr,1,4.050000E+00,7.569200E+00,5.130916E+01,5.000000E+00,Active Shallow Crust,2.400066E+02,5.800659E+01,0.000000E+00 +678720,fr,2,3.550000E+00,-3.358000E+00,4.776786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +678729,fr,1,3.550000E+00,-3.358000E+00,4.776786E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999323E+01,0.000000E+00 +678732,fr,1,3.650000E+00,-3.358000E+00,4.776786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +678733,fr,1,3.650000E+00,-3.358000E+00,4.776786E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +678735,fr,1,3.650000E+00,-3.358000E+00,4.776786E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801257E+01,0.000000E+00 +678744,fr,1,3.750000E+00,-3.358000E+00,4.776786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +678746,fr,2,3.750000E+00,-3.358000E+00,4.776786E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +678747,fr,1,3.750000E+00,-3.358000E+00,4.776786E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.801757E+01,0.000000E+00 +678748,fr,1,3.750000E+00,-3.358000E+00,4.776786E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.801757E+01,0.000000E+00 +678756,fr,2,3.850000E+00,-3.358000E+00,4.776786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +678762,fr,1,3.850000E+00,-3.358000E+00,4.776786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,-9.000000E+01 +678780,fr,1,4.050000E+00,-3.358000E+00,4.776786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +678781,fr,1,4.050000E+00,-3.358000E+00,4.776786E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +678786,fr,1,4.050000E+00,-3.358000E+00,4.776786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,-9.000000E+01 +678826,fr,1,4.350000E+00,-3.358000E+00,4.776786E+01,1.500000E+01,Active Shallow Crust,1.288979E+02,8.998258E+01,0.000000E+00 +678876,fr,1,4.850000E+00,-3.358000E+00,4.776786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +679201,fr,2,3.550000E+00,-9.913800E-01,4.756518E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +679209,fr,1,3.550000E+00,-9.913800E-01,4.756518E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999362E+01,0.000000E+00 +679212,fr,1,3.650000E+00,-9.913800E-01,4.756518E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +679213,fr,1,3.650000E+00,-9.913800E-01,4.756518E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +679217,fr,1,3.650000E+00,-9.913800E-01,4.756518E+01,2.750000E+01,Active Shallow Crust,2.400013E+02,5.801283E+01,0.000000E+00 +679224,fr,2,3.750000E+00,-9.913800E-01,4.756518E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +679236,fr,1,3.850000E+00,-9.913800E-01,4.756518E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +679248,fr,3,3.950000E+00,-9.913800E-01,4.756518E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +679249,fr,1,3.950000E+00,-9.913800E-01,4.756518E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +679272,fr,1,4.150000E+00,-9.913800E-01,4.756518E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +679273,fr,2,4.150000E+00,-9.913800E-01,4.756518E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +679308,fr,2,4.450000E+00,-9.913800E-01,4.756518E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +679332,fr,1,4.650000E+00,-9.913800E-01,4.756518E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +679341,fr,1,4.650000E+00,-9.913800E-01,4.756518E+01,5.000000E+00,Active Shallow Crust,1.288909E+02,8.998704E+01,0.000000E+00 +679359,fr,1,4.850000E+00,-9.913800E-01,4.756518E+01,5.000000E+00,Active Shallow Crust,2.400175E+02,5.800241E+01,0.000000E+00 +679368,fr,1,4.950000E+00,-9.913800E-01,4.756518E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +679693,fr,1,3.650000E+00,4.043570E+00,5.233423E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +680160,fr,4,3.550000E+00,6.673470E+00,5.095968E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998730E+01,0.000000E+00 +680161,fr,2,3.550000E+00,6.673470E+00,5.095968E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998730E+01,0.000000E+00 +680172,fr,1,3.650000E+00,6.673470E+00,5.095968E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998868E+01,0.000000E+00 +680173,fr,1,3.650000E+00,6.673470E+00,5.095968E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998868E+01,0.000000E+00 +680174,fr,1,3.650000E+00,6.673470E+00,5.095968E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998868E+01,0.000000E+00 +680184,fr,1,3.750000E+00,6.673470E+00,5.095968E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +680187,fr,1,3.750000E+00,6.673470E+00,5.095968E+01,5.000000E+00,Active Shallow Crust,2.400095E+02,5.801755E+01,0.000000E+00 +680188,fr,1,3.750000E+00,6.673470E+00,5.095968E+01,1.500000E+01,Active Shallow Crust,2.400095E+02,5.801755E+01,0.000000E+00 +680191,fr,1,3.750000E+00,6.673470E+00,5.095968E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,-9.000000E+01 +680193,fr,1,3.750000E+00,6.673470E+00,5.095968E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.996757E+01,0.000000E+00 +680196,fr,4,3.850000E+00,6.673470E+00,5.095968E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +680199,fr,1,3.850000E+00,6.673470E+00,5.095968E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799803E+01,0.000000E+00 +680202,fr,2,3.850000E+00,6.673470E+00,5.095968E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,-9.000000E+01 +680205,fr,1,3.850000E+00,6.673470E+00,5.095968E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.999326E+01,0.000000E+00 +680208,fr,2,3.950000E+00,6.673470E+00,5.095968E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999198E+01,0.000000E+00 +680220,fr,3,4.050000E+00,6.673470E+00,5.095968E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998928E+01,0.000000E+00 +680221,fr,2,4.050000E+00,6.673470E+00,5.095968E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998928E+01,0.000000E+00 +680256,fr,2,4.350000E+00,6.673470E+00,5.095968E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +680258,fr,1,4.350000E+00,6.673470E+00,5.095968E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +680268,fr,2,4.450000E+00,6.673470E+00,5.095968E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999098E+01,0.000000E+00 +680273,fr,1,4.450000E+00,6.673470E+00,5.095968E+01,2.750000E+01,Active Shallow Crust,2.400067E+02,5.799499E+01,0.000000E+00 +680281,fr,1,4.550000E+00,6.673470E+00,5.095968E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +680317,fr,1,4.850000E+00,6.673470E+00,5.095968E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +680328,fr,1,4.950000E+00,6.673470E+00,5.095968E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +680334,fr,1,4.950000E+00,6.673470E+00,5.095968E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,-9.000000E+01 +680652,fr,1,3.650000E+00,-1.962780E+00,4.365573E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +680697,fr,1,3.950000E+00,-1.962780E+00,4.365573E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.999367E+01,0.000000E+00 +680700,fr,1,4.050000E+00,-1.962780E+00,4.365573E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +681120,fr,1,3.550000E+00,1.120280E+00,4.876558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +681132,fr,2,3.650000E+00,1.120280E+00,4.876558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +681145,fr,1,3.750000E+00,1.120280E+00,4.876558E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +681163,fr,1,3.850000E+00,1.120280E+00,4.876558E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999048E+01,-9.000000E+01 +681240,fr,1,4.550000E+00,1.120280E+00,4.876558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +681357,fr,1,5.450000E+00,1.120280E+00,4.876558E+01,5.000000E+00,Active Shallow Crust,1.288772E+02,8.998895E+01,0.000000E+00 +681651,fr,1,3.950000E+00,4.837140E+00,4.885716E+01,5.000000E+00,Active Shallow Crust,2.400211E+02,5.800481E+01,0.000000E+00 +681759,fr,1,4.850000E+00,4.837140E+00,4.885716E+01,5.000000E+00,Active Shallow Crust,2.400183E+02,5.800245E+01,0.000000E+00 +682080,fr,3,3.550000E+00,-1.909720E+00,4.816595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +682081,fr,1,3.550000E+00,-1.909720E+00,4.816595E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +682092,fr,3,3.650000E+00,-1.909720E+00,4.816595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +682093,fr,1,3.650000E+00,-1.909720E+00,4.816595E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +682104,fr,3,3.750000E+00,-1.909720E+00,4.816595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +682108,fr,1,3.750000E+00,-1.909720E+00,4.816595E+01,1.500000E+01,Active Shallow Crust,2.400086E+02,5.801773E+01,0.000000E+00 +682116,fr,1,3.850000E+00,-1.909720E+00,4.816595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +682120,fr,1,3.850000E+00,-1.909720E+00,4.816595E+01,1.500000E+01,Active Shallow Crust,2.400113E+02,5.799784E+01,0.000000E+00 +682129,fr,1,3.950000E+00,-1.909720E+00,4.816595E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +682161,fr,1,4.150000E+00,-1.909720E+00,4.816595E+01,5.000000E+00,Active Shallow Crust,1.288974E+02,8.999368E+01,0.000000E+00 +682164,fr,2,4.250000E+00,-1.909720E+00,4.816595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +682213,fr,1,4.650000E+00,-1.909720E+00,4.816595E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +682560,fr,1,3.550000E+00,2.549070E+00,4.079435E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998855E+01,0.000000E+00 +682572,fr,1,3.650000E+00,2.549070E+00,4.079435E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +682573,fr,1,3.650000E+00,2.549070E+00,4.079435E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +682575,fr,1,3.650000E+00,2.549070E+00,4.079435E+01,5.000000E+00,Active Shallow Crust,2.400004E+02,5.801274E+01,0.000000E+00 +682611,fr,1,3.950000E+00,2.549070E+00,4.079435E+01,5.000000E+00,Active Shallow Crust,2.400186E+02,5.800512E+01,0.000000E+00 +682646,fr,1,4.250000E+00,2.549070E+00,4.079435E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +682668,fr,1,4.450000E+00,2.549070E+00,4.079435E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +683562,fr,1,3.850000E+00,3.199300E+00,3.994250E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998893E+01,-9.000000E+01 +684003,fr,2,3.550000E+00,-2.233900E+00,4.348727E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799817E+01,0.000000E+00 +684018,fr,1,3.650000E+00,-2.233900E+00,4.348727E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +684023,fr,1,3.650000E+00,-2.233900E+00,4.348727E+01,2.750000E+01,Active Shallow Crust,1.289007E+02,8.996346E+01,0.000000E+00 +684024,fr,2,3.750000E+00,-2.233900E+00,4.348727E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999128E+01,0.000000E+00 +684039,fr,1,3.850000E+00,-2.233900E+00,4.348727E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799770E+01,0.000000E+00 +684066,fr,1,4.050000E+00,-2.233900E+00,4.348727E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +684213,fr,1,5.250000E+00,-2.233900E+00,4.348727E+01,5.000000E+00,Active Shallow Crust,1.288849E+02,8.998690E+01,0.000000E+00 +684480,fr,1,3.550000E+00,-3.245330E+00,4.294982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998893E+01,0.000000E+00 +684481,fr,1,3.550000E+00,-3.245330E+00,4.294982E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998893E+01,0.000000E+00 +684490,fr,1,3.550000E+00,-3.245330E+00,4.294982E+01,1.500000E+01,Active Shallow Crust,1.288967E+02,8.999446E+01,0.000000E+00 +684493,fr,2,3.650000E+00,-3.245330E+00,4.294982E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +684554,fr,1,4.150000E+00,-3.245330E+00,4.294982E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +684564,fr,1,4.250000E+00,-3.245330E+00,4.294982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +684570,fr,1,4.250000E+00,-3.245330E+00,4.294982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +684571,fr,1,4.250000E+00,-3.245330E+00,4.294982E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +684573,fr,1,4.250000E+00,-3.245330E+00,4.294982E+01,5.000000E+00,Active Shallow Crust,1.288946E+02,8.998108E+01,0.000000E+00 +684576,fr,1,4.350000E+00,-3.245330E+00,4.294982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +684600,fr,1,4.550000E+00,-3.245330E+00,4.294982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +684612,fr,1,4.650000E+00,-3.245330E+00,4.294982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +684684,fr,1,5.250000E+00,-3.245330E+00,4.294982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +684961,fr,1,3.550000E+00,1.388460E+00,4.745681E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +684972,fr,2,3.650000E+00,1.388460E+00,4.745681E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +684985,fr,1,3.750000E+00,1.388460E+00,4.745681E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +684992,fr,1,3.750000E+00,1.388460E+00,4.745681E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,-9.000000E+01 +685029,fr,1,4.050000E+00,1.388460E+00,4.745681E+01,5.000000E+00,Active Shallow Crust,1.288904E+02,8.999377E+01,0.000000E+00 +685034,fr,1,4.150000E+00,1.388460E+00,4.745681E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +685269,fr,1,6.050000E+00,1.388459E+00,4.745681E+01,5.357596E+00,Active Shallow Crust,1.288589E+02,8.998897E+01,0.000000E+00 +685474,fr,1,3.750000E+00,3.812220E+00,4.111810E+01,1.500000E+01,Active Shallow Crust,1.288971E+02,8.996740E+01,0.000000E+00 +685480,fr,1,3.850000E+00,3.812220E+00,4.111810E+01,1.500000E+01,Active Shallow Crust,2.400102E+02,5.799764E+01,0.000000E+00 +685490,fr,1,3.950000E+00,3.812220E+00,4.111810E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +685501,fr,1,4.050000E+00,3.812220E+00,4.111810E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +685602,fr,1,4.850000E+00,3.812220E+00,4.111810E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,-9.000000E+01 +685944,fr,1,3.750000E+00,3.056740E+00,4.988794E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +685947,fr,1,3.750000E+00,3.056740E+00,4.988794E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.801736E+01,0.000000E+00 +686040,fr,1,4.550000E+00,3.056740E+00,4.988794E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +686140,fr,1,5.350000E+00,3.056740E+00,4.988794E+01,1.500000E+01,Active Shallow Crust,2.400277E+02,5.799837E+01,0.000000E+00 +686173,fr,1,5.650000E+00,3.056740E+00,4.988794E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +686401,fr,2,3.550000E+00,4.693670E+00,4.137637E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999243E+01,0.000000E+00 +686413,fr,1,3.650000E+00,4.693670E+00,4.137637E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999326E+01,0.000000E+00 +686425,fr,1,3.750000E+00,4.693670E+00,4.137637E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998798E+01,0.000000E+00 +686477,fr,1,4.150000E+00,4.693670E+00,4.137637E+01,2.750000E+01,Active Shallow Crust,2.400079E+02,5.799697E+01,0.000000E+00 +686508,fr,1,4.450000E+00,4.693670E+00,4.137637E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +686895,fr,1,3.650000E+00,1.024390E+00,4.716908E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801265E+01,0.000000E+00 +686898,fr,1,3.650000E+00,1.024390E+00,4.716908E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999073E+01,-9.000000E+01 +686900,fr,1,3.650000E+00,1.024390E+00,4.716908E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999073E+01,-9.000000E+01 +686916,fr,1,3.850000E+00,1.024390E+00,4.716908E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +686962,fr,1,4.150000E+00,1.024390E+00,4.716908E+01,1.500000E+01,Active Shallow Crust,1.288975E+02,8.999356E+01,0.000000E+00 +686966,fr,1,4.250000E+00,1.024390E+00,4.716908E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +687000,fr,1,4.550000E+00,1.024390E+00,4.716908E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +687031,fr,1,4.750000E+00,1.024390E+00,4.716908E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +687074,fr,1,5.150000E+00,1.024390E+00,4.716908E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +687372,fr,1,3.650000E+00,2.141480E+00,4.736507E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999087E+01,0.000000E+00 +687378,fr,2,3.650000E+00,2.141480E+00,4.736507E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999076E+01,-9.000000E+01 +687384,fr,1,3.750000E+00,2.141480E+00,4.736507E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998915E+01,0.000000E+00 +687465,fr,1,4.350000E+00,2.141480E+00,4.736507E+01,5.000000E+00,Active Shallow Crust,1.288978E+02,8.998282E+01,0.000000E+00 +687841,fr,1,3.550000E+00,1.924750E+00,5.280989E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +687854,fr,1,3.650000E+00,1.924750E+00,5.280989E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +688320,fr,3,3.550000E+00,1.001160E+00,4.676723E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +688321,fr,1,3.550000E+00,1.001160E+00,4.676723E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +688323,fr,1,3.550000E+00,1.001160E+00,4.676723E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799820E+01,0.000000E+00 +688333,fr,2,3.650000E+00,1.001160E+00,4.676723E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999077E+01,0.000000E+00 +688344,fr,1,3.750000E+00,1.001160E+00,4.676723E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +688345,fr,1,3.750000E+00,1.001160E+00,4.676723E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +688350,fr,1,3.750000E+00,1.001160E+00,4.676723E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,-9.000000E+01 +688355,fr,1,3.750000E+00,1.001160E+00,4.676723E+01,2.750000E+01,Active Shallow Crust,1.288965E+02,8.996731E+01,0.000000E+00 +688356,fr,2,3.850000E+00,1.001160E+00,4.676723E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +688359,fr,1,3.850000E+00,1.001160E+00,4.676723E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799788E+01,0.000000E+00 +688371,fr,1,3.950000E+00,1.001160E+00,4.676723E+01,5.000000E+00,Active Shallow Crust,2.400198E+02,5.800510E+01,0.000000E+00 +688380,fr,1,4.050000E+00,1.001160E+00,4.676723E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +688381,fr,1,4.050000E+00,1.001160E+00,4.676723E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +688395,fr,1,4.150000E+00,1.001160E+00,4.676723E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799734E+01,0.000000E+00 +688431,fr,1,4.450000E+00,1.001160E+00,4.676723E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.799473E+01,0.000000E+00 +688477,fr,1,4.850000E+00,1.001160E+00,4.676723E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +688800,fr,1,3.550000E+00,1.279760E+00,4.903690E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +688812,fr,1,3.650000E+00,1.279760E+00,4.903690E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +688827,fr,1,3.750000E+00,1.279760E+00,4.903690E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.801757E+01,0.000000E+00 +688837,fr,1,3.850000E+00,1.279760E+00,4.903690E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +688848,fr,1,3.950000E+00,1.279760E+00,4.903690E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +688866,fr,1,4.050000E+00,1.279760E+00,4.903690E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +688900,fr,1,4.350000E+00,1.279760E+00,4.903690E+01,1.500000E+01,Active Shallow Crust,2.400090E+02,5.799603E+01,0.000000E+00 +688932,fr,1,4.650000E+00,1.279760E+00,4.903690E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +689318,fr,1,3.850000E+00,3.514350E+00,4.866582E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +689320,fr,1,3.850000E+00,3.514350E+00,4.866582E+01,1.500000E+01,Active Shallow Crust,2.400109E+02,5.799785E+01,0.000000E+00 +689335,fr,1,3.950000E+00,3.514350E+00,4.866582E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998937E+01,-9.000000E+01 +689343,fr,1,4.050000E+00,3.514350E+00,4.866582E+01,5.000000E+00,Active Shallow Crust,2.400062E+02,5.800605E+01,0.000000E+00 +689426,fr,1,4.750000E+00,3.514350E+00,4.866582E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +689772,fr,1,3.650000E+00,5.710700E+00,5.169339E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998886E+01,0.000000E+00 +689773,fr,1,3.650000E+00,5.710700E+00,5.169339E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998886E+01,0.000000E+00 +689789,fr,1,3.750000E+00,5.710700E+00,5.169339E+01,2.750000E+01,Active Shallow Crust,2.400092E+02,5.801762E+01,0.000000E+00 +689814,fr,1,3.950000E+00,5.710700E+00,5.169339E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998803E+01,-9.000000E+01 +689850,fr,1,4.250000E+00,5.710700E+00,5.169339E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998870E+01,-9.000000E+01 +689871,fr,1,4.450000E+00,5.710700E+00,5.169339E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.799464E+01,0.000000E+00 +689941,fr,1,5.050000E+00,5.710700E+00,5.169339E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +690247,fr,1,3.550000E+00,5.017070E+00,4.128417E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999233E+01,-9.000000E+01 +690288,fr,2,3.950000E+00,5.017070E+00,4.128417E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +690385,fr,1,4.750000E+00,5.017070E+00,4.128417E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +690732,fr,1,3.650000E+00,-2.706730E+00,4.329390E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +690741,fr,1,3.650000E+00,-2.706730E+00,4.329390E+01,5.000000E+00,Active Shallow Crust,1.289016E+02,8.996346E+01,0.000000E+00 +690746,fr,1,3.750000E+00,-2.706730E+00,4.329390E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +690753,fr,1,3.750000E+00,-2.706730E+00,4.329390E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996744E+01,0.000000E+00 +690755,fr,1,3.750000E+00,-2.706730E+00,4.329390E+01,2.750000E+01,Active Shallow Crust,1.288969E+02,8.996744E+01,0.000000E+00 +690756,fr,2,3.850000E+00,-2.706730E+00,4.329390E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +690828,fr,1,4.450000E+00,-2.706730E+00,4.329390E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +691201,fr,1,3.550000E+00,1.469390E+00,4.223274E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999067E+01,0.000000E+00 +691203,fr,1,3.550000E+00,1.469390E+00,4.223274E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799820E+01,0.000000E+00 +691208,fr,1,3.550000E+00,1.469390E+00,4.223274E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999056E+01,-9.000000E+01 +691212,fr,1,3.650000E+00,1.469390E+00,4.223274E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +691215,fr,2,3.650000E+00,1.469390E+00,4.223274E+01,5.000000E+00,Active Shallow Crust,2.400004E+02,5.801280E+01,0.000000E+00 +691222,fr,1,3.650000E+00,1.469390E+00,4.223274E+01,1.500000E+01,Active Shallow Crust,1.289005E+02,8.996358E+01,0.000000E+00 +691235,fr,1,3.750000E+00,1.469390E+00,4.223274E+01,2.750000E+01,Active Shallow Crust,1.288969E+02,8.996728E+01,0.000000E+00 +691236,fr,1,3.850000E+00,1.469390E+00,4.223274E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +691242,fr,1,3.850000E+00,1.469390E+00,4.223274E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,-9.000000E+01 +691248,fr,3,3.950000E+00,1.469390E+00,4.223274E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +691249,fr,2,3.950000E+00,1.469390E+00,4.223274E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +691269,fr,1,4.050000E+00,1.469390E+00,4.223274E+01,5.000000E+00,Active Shallow Crust,1.288908E+02,8.999371E+01,0.000000E+00 +691276,fr,1,4.150000E+00,1.469390E+00,4.223274E+01,1.500000E+01,Active Shallow Crust,2.400077E+02,5.799701E+01,0.000000E+00 +691296,fr,1,4.350000E+00,1.469390E+00,4.223274E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +691345,fr,1,4.750000E+00,1.469390E+00,4.223274E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +691428,fr,1,5.450000E+00,1.469390E+00,4.223274E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +691680,fr,1,3.550000E+00,5.514080E+00,5.019692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998709E+01,0.000000E+00 +691693,fr,1,3.650000E+00,5.514080E+00,5.019692E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998849E+01,0.000000E+00 +691710,fr,1,3.750000E+00,5.514080E+00,5.019692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,-9.000000E+01 +691713,fr,1,3.750000E+00,5.514080E+00,5.019692E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.996755E+01,0.000000E+00 +691721,fr,1,3.850000E+00,5.514080E+00,5.019692E+01,2.750000E+01,Active Shallow Crust,2.400112E+02,5.799854E+01,0.000000E+00 +691754,fr,1,4.150000E+00,5.514080E+00,5.019692E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +691764,fr,1,4.250000E+00,5.514080E+00,5.019692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999135E+01,0.000000E+00 +691803,fr,1,4.550000E+00,5.514080E+00,5.019692E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799750E+01,0.000000E+00 +691858,fr,1,4.950000E+00,5.514080E+00,5.019692E+01,1.500000E+01,Active Shallow Crust,1.288884E+02,8.998969E+01,0.000000E+00 +692246,fr,1,4.250000E+00,3.078100E+00,4.694714E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +692640,fr,2,3.550000E+00,1.327600E+00,5.189945E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999067E+01,0.000000E+00 +692652,fr,1,3.650000E+00,1.327600E+00,5.189945E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +692666,fr,1,3.750000E+00,1.327600E+00,5.189945E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +692686,fr,1,3.850000E+00,1.327600E+00,5.189945E+01,1.500000E+01,Active Shallow Crust,1.288950E+02,8.999394E+01,0.000000E+00 +693120,fr,2,3.550000E+00,6.219590E+00,4.596463E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999299E+01,0.000000E+00 +693124,fr,1,3.550000E+00,6.219590E+00,4.596463E+01,1.500000E+01,Active Shallow Crust,2.400111E+02,5.799914E+01,0.000000E+00 +693132,fr,2,3.650000E+00,6.219590E+00,4.596463E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998750E+01,0.000000E+00 +693133,fr,1,3.650000E+00,6.219590E+00,4.596463E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998750E+01,0.000000E+00 +693134,fr,1,3.650000E+00,6.219590E+00,4.596463E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998750E+01,0.000000E+00 +693135,fr,1,3.650000E+00,6.219590E+00,4.596463E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801312E+01,0.000000E+00 +693138,fr,2,3.650000E+00,6.219590E+00,4.596463E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998736E+01,-9.000000E+01 +693144,fr,3,3.750000E+00,6.219590E+00,4.596463E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998886E+01,0.000000E+00 +693145,fr,1,3.750000E+00,6.219590E+00,4.596463E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998886E+01,0.000000E+00 +693146,fr,1,3.750000E+00,6.219590E+00,4.596463E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998886E+01,0.000000E+00 +693147,fr,2,3.750000E+00,6.219590E+00,4.596463E+01,5.000000E+00,Active Shallow Crust,2.400075E+02,5.801777E+01,0.000000E+00 +693156,fr,1,3.850000E+00,6.219590E+00,4.596463E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +693157,fr,1,3.850000E+00,6.219590E+00,4.596463E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +693158,fr,1,3.850000E+00,6.219590E+00,4.596463E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +693160,fr,1,3.850000E+00,6.219590E+00,4.596463E+01,1.500000E+01,Active Shallow Crust,2.400102E+02,5.799833E+01,0.000000E+00 +693162,fr,2,3.850000E+00,6.219590E+00,4.596463E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +693163,fr,1,3.850000E+00,6.219590E+00,4.596463E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +693166,fr,1,3.850000E+00,6.219590E+00,4.596463E+01,1.500000E+01,Active Shallow Crust,1.288967E+02,8.999255E+01,0.000000E+00 +693171,fr,2,3.950000E+00,6.219590E+00,4.596463E+01,5.000000E+00,Active Shallow Crust,2.400201E+02,5.800499E+01,0.000000E+00 +693180,fr,2,4.050000E+00,6.219590E+00,4.596463E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998817E+01,0.000000E+00 +693181,fr,1,4.050000E+00,6.219590E+00,4.596463E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998817E+01,0.000000E+00 +693192,fr,1,4.150000E+00,6.219590E+00,4.596463E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +693204,fr,1,4.250000E+00,6.219590E+00,4.596463E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999061E+01,0.000000E+00 +693209,fr,1,4.250000E+00,6.219590E+00,4.596463E+01,2.750000E+01,Active Shallow Crust,2.400078E+02,5.799392E+01,0.000000E+00 +693228,fr,1,4.450000E+00,6.219590E+00,4.596463E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +693232,fr,1,4.450000E+00,6.219590E+00,4.596463E+01,1.500000E+01,Active Shallow Crust,2.400050E+02,5.799477E+01,0.000000E+00 +693252,fr,2,4.650000E+00,6.219590E+00,4.596463E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +693268,fr,1,4.750000E+00,6.219590E+00,4.596463E+01,1.500000E+01,Active Shallow Crust,2.400073E+02,5.800451E+01,0.000000E+00 +693270,fr,1,4.750000E+00,6.219590E+00,4.596463E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998931E+01,-9.000000E+01 +693600,fr,1,3.550000E+00,-1.517330E+00,4.218419E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +693661,fr,1,4.050000E+00,-1.517330E+00,4.218419E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +693732,fr,1,4.650000E+00,-1.517330E+00,4.218419E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +694081,fr,1,3.550000E+00,-2.075400E-01,4.410704E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +694125,fr,1,3.850000E+00,-2.075400E-01,4.410704E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999375E+01,0.000000E+00 +694197,fr,1,4.450000E+00,-2.075400E-01,4.410704E+01,5.000000E+00,Active Shallow Crust,1.288927E+02,8.999370E+01,0.000000E+00 +694560,fr,1,3.550000E+00,-1.607980E+00,4.479387E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +694593,fr,1,3.750000E+00,-1.607980E+00,4.479387E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996733E+01,0.000000E+00 +694669,fr,1,4.450000E+00,-1.607980E+00,4.479387E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +695040,fr,7,3.550000E+00,7.791030E+00,4.744468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999318E+01,0.000000E+00 +695041,fr,2,3.550000E+00,7.791030E+00,4.744468E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999318E+01,0.000000E+00 +695042,fr,2,3.550000E+00,7.791030E+00,4.744468E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999318E+01,0.000000E+00 +695043,fr,1,3.550000E+00,7.791030E+00,4.744468E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799828E+01,0.000000E+00 +695044,fr,1,3.550000E+00,7.791030E+00,4.744468E+01,1.500000E+01,Active Shallow Crust,2.400119E+02,5.799828E+01,0.000000E+00 +695045,fr,1,3.550000E+00,7.791030E+00,4.744468E+01,2.750000E+01,Active Shallow Crust,2.400119E+02,5.799818E+01,0.000000E+00 +695047,fr,2,3.550000E+00,7.791030E+00,4.744468E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999310E+01,-9.000000E+01 +695048,fr,1,3.550000E+00,7.791030E+00,4.744468E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999310E+01,-9.000000E+01 +695049,fr,1,3.550000E+00,7.791030E+00,4.744468E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.999318E+01,0.000000E+00 +695050,fr,1,3.550000E+00,7.791030E+00,4.744468E+01,1.500000E+01,Active Shallow Crust,1.288969E+02,8.999318E+01,0.000000E+00 +695052,fr,4,3.650000E+00,7.791030E+00,4.744468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998785E+01,0.000000E+00 +695053,fr,2,3.650000E+00,7.791030E+00,4.744468E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998785E+01,0.000000E+00 +695056,fr,1,3.650000E+00,7.791030E+00,4.744468E+01,1.500000E+01,Active Shallow Crust,2.400015E+02,5.801326E+01,0.000000E+00 +695058,fr,2,3.650000E+00,7.791030E+00,4.744468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998770E+01,-9.000000E+01 +695061,fr,1,3.650000E+00,7.791030E+00,4.744468E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.996354E+01,0.000000E+00 +695064,fr,10,3.750000E+00,7.791030E+00,4.744468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +695065,fr,3,3.750000E+00,7.791030E+00,4.744468E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +695067,fr,1,3.750000E+00,7.791030E+00,4.744468E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.801730E+01,0.000000E+00 +695068,fr,2,3.750000E+00,7.791030E+00,4.744468E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.801730E+01,0.000000E+00 +695070,fr,1,3.750000E+00,7.791030E+00,4.744468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,-9.000000E+01 +695073,fr,3,3.750000E+00,7.791030E+00,4.744468E+01,5.000000E+00,Active Shallow Crust,1.288955E+02,8.996751E+01,0.000000E+00 +695076,fr,7,3.850000E+00,7.791030E+00,4.744468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +695077,fr,1,3.850000E+00,7.791030E+00,4.744468E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +695079,fr,1,3.850000E+00,7.791030E+00,4.744468E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799842E+01,0.000000E+00 +695085,fr,2,3.850000E+00,7.791030E+00,4.744468E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999276E+01,0.000000E+00 +695088,fr,2,3.950000E+00,7.791030E+00,4.744468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999139E+01,0.000000E+00 +695089,fr,3,3.950000E+00,7.791030E+00,4.744468E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999139E+01,0.000000E+00 +695091,fr,1,3.950000E+00,7.791030E+00,4.744468E+01,5.000000E+00,Active Shallow Crust,2.400194E+02,5.800485E+01,0.000000E+00 +695092,fr,1,3.950000E+00,7.791030E+00,4.744468E+01,1.500000E+01,Active Shallow Crust,2.400194E+02,5.800485E+01,0.000000E+00 +695103,fr,1,4.050000E+00,7.791030E+00,4.744468E+01,5.000000E+00,Active Shallow Crust,2.400066E+02,5.800562E+01,0.000000E+00 +695105,fr,1,4.050000E+00,7.791030E+00,4.744468E+01,2.750000E+01,Active Shallow Crust,2.400066E+02,5.800559E+01,0.000000E+00 +695108,fr,1,4.050000E+00,7.791030E+00,4.744468E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998836E+01,-9.000000E+01 +695109,fr,3,4.050000E+00,7.791030E+00,4.744468E+01,5.000000E+00,Active Shallow Crust,1.288894E+02,8.999425E+01,0.000000E+00 +695110,fr,1,4.050000E+00,7.791030E+00,4.744468E+01,1.500000E+01,Active Shallow Crust,1.288894E+02,8.999425E+01,0.000000E+00 +695112,fr,1,4.150000E+00,7.791030E+00,4.744468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +695114,fr,1,4.150000E+00,7.791030E+00,4.744468E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +695124,fr,2,4.250000E+00,7.791030E+00,4.744468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +695125,fr,1,4.250000E+00,7.791030E+00,4.744468E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +695134,fr,1,4.250000E+00,7.791030E+00,4.744468E+01,1.500000E+01,Active Shallow Crust,1.288947E+02,8.998098E+01,0.000000E+00 +695136,fr,1,4.350000E+00,7.791030E+00,4.744468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +695137,fr,1,4.350000E+00,7.791030E+00,4.744468E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +695145,fr,1,4.350000E+00,7.791030E+00,4.744468E+01,5.000000E+00,Active Shallow Crust,1.288983E+02,8.998257E+01,0.000000E+00 +695148,fr,1,4.450000E+00,7.791030E+00,4.744468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +695149,fr,1,4.450000E+00,7.791030E+00,4.744468E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +695154,fr,1,4.450000E+00,7.791030E+00,4.744468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,-9.000000E+01 +695160,fr,1,4.550000E+00,7.791030E+00,4.744468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +695161,fr,2,4.550000E+00,7.791030E+00,4.744468E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +695166,fr,1,4.550000E+00,7.791030E+00,4.744468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998909E+01,-9.000000E+01 +695181,fr,1,4.650000E+00,7.791030E+00,4.744468E+01,5.000000E+00,Active Shallow Crust,1.288910E+02,8.998679E+01,0.000000E+00 +695190,fr,1,4.750000E+00,7.791030E+00,4.744468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,-9.000000E+01 +695196,fr,1,4.850000E+00,7.791030E+00,4.744468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +695198,fr,1,4.850000E+00,7.791030E+00,4.744468E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +695208,fr,1,4.950000E+00,7.791030E+00,4.744468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +695210,fr,1,4.950000E+00,7.791030E+00,4.744468E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +695235,fr,1,5.150000E+00,7.791030E+00,4.744468E+01,5.000000E+00,Active Shallow Crust,2.400204E+02,5.800006E+01,0.000000E+00 +695268,fr,1,5.450000E+00,7.791030E+00,4.744468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +695328,fr,1,5.950000E+00,7.791030E+00,4.744468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +695376,fr,1,6.350000E+00,7.791036E+00,4.744468E+01,7.567806E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +695556,fr,2,3.850000E+00,5.238300E-01,5.096412E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +695569,fr,1,3.950000E+00,5.238300E-01,5.096412E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +695613,fr,1,4.250000E+00,5.238300E-01,5.096412E+01,5.000000E+00,Active Shallow Crust,1.288934E+02,8.998094E+01,0.000000E+00 +696012,fr,1,3.650000E+00,1.069780E+00,5.253233E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +696063,fr,1,4.050000E+00,1.069780E+00,5.253233E+01,5.000000E+00,Active Shallow Crust,2.400070E+02,5.800611E+01,0.000000E+00 +696084,fr,1,4.250000E+00,1.069780E+00,5.253233E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +696123,fr,1,4.550000E+00,1.069780E+00,5.253233E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799770E+01,0.000000E+00 +696130,fr,1,4.550000E+00,1.069780E+00,5.253233E+01,1.500000E+01,Active Shallow Crust,1.288922E+02,8.998577E+01,0.000000E+00 +696163,fr,1,4.850000E+00,1.069780E+00,5.253233E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,-9.000000E+01 +696480,fr,1,3.550000E+00,7.606200E-01,4.741924E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +696484,fr,1,3.550000E+00,7.606200E-01,4.741924E+01,1.500000E+01,Active Shallow Crust,2.400122E+02,5.799824E+01,0.000000E+00 +696492,fr,1,3.650000E+00,7.606200E-01,4.741924E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +696498,fr,1,3.650000E+00,7.606200E-01,4.741924E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +696504,fr,1,3.750000E+00,7.606200E-01,4.741924E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +696505,fr,2,3.750000E+00,7.606200E-01,4.741924E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +696516,fr,2,3.850000E+00,7.606200E-01,4.741924E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +696540,fr,1,4.050000E+00,7.606200E-01,4.741924E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +696985,fr,1,3.750000E+00,-1.410710E+00,4.440200E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +697947,fr,1,3.750000E+00,3.899190E+00,4.058799E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.801741E+01,0.000000E+00 +697966,fr,1,3.850000E+00,3.899190E+00,4.058799E+01,1.500000E+01,Active Shallow Crust,1.288967E+02,8.999323E+01,0.000000E+00 +697968,fr,1,3.950000E+00,3.899190E+00,4.058799E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +697983,fr,1,4.050000E+00,3.899190E+00,4.058799E+01,5.000000E+00,Active Shallow Crust,2.400048E+02,5.800565E+01,0.000000E+00 +697992,fr,2,4.150000E+00,3.899190E+00,4.058799E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +698016,fr,1,4.350000E+00,3.899190E+00,4.058799E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +698052,fr,1,4.650000E+00,3.899190E+00,4.058799E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +698064,fr,1,4.750000E+00,3.899190E+00,4.058799E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +698400,fr,1,3.550000E+00,9.147070E+00,4.936753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998687E+01,0.000000E+00 +698402,fr,1,3.550000E+00,9.147070E+00,4.936753E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998687E+01,0.000000E+00 +698421,fr,1,3.650000E+00,9.147070E+00,4.936753E+01,5.000000E+00,Active Shallow Crust,1.289011E+02,8.996358E+01,0.000000E+00 +698436,fr,1,3.850000E+00,9.147070E+00,4.936753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +698460,fr,1,4.050000E+00,9.147070E+00,4.936753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999261E+01,0.000000E+00 +698522,fr,1,4.550000E+00,9.147070E+00,4.936753E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999169E+01,0.000000E+00 +698916,fr,1,3.850000E+00,2.684610E+00,5.129548E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +699012,fr,1,4.650000E+00,2.684610E+00,5.129548E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +699030,fr,1,4.750000E+00,2.684610E+00,5.129548E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,-9.000000E+01 +699169,fr,1,5.950000E+00,2.684610E+00,5.129548E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +699375,fr,1,3.650000E+00,-1.456410E+00,4.191420E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801302E+01,0.000000E+00 +699396,fr,1,3.850000E+00,-1.456410E+00,4.191420E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +699840,fr,2,3.550000E+00,2.870020E+00,5.320568E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +700320,fr,1,3.550000E+00,3.209900E-01,5.134503E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +700321,fr,1,3.550000E+00,3.209900E-01,5.134503E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +700344,fr,1,3.750000E+00,3.209900E-01,5.134503E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +700368,fr,1,3.950000E+00,3.209900E-01,5.134503E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +700383,fr,1,4.050000E+00,3.209900E-01,5.134503E+01,5.000000E+00,Active Shallow Crust,2.400068E+02,5.800599E+01,0.000000E+00 +700800,fr,4,3.550000E+00,6.190560E+00,4.398629E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999274E+01,0.000000E+00 +700801,fr,1,3.550000E+00,6.190560E+00,4.398629E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999274E+01,0.000000E+00 +700803,fr,1,3.550000E+00,6.190560E+00,4.398629E+01,5.000000E+00,Active Shallow Crust,2.400131E+02,5.799775E+01,0.000000E+00 +700804,fr,1,3.550000E+00,6.190560E+00,4.398629E+01,1.500000E+01,Active Shallow Crust,2.400131E+02,5.799775E+01,0.000000E+00 +700810,fr,1,3.550000E+00,6.190560E+00,4.398629E+01,1.500000E+01,Active Shallow Crust,1.288966E+02,8.999274E+01,0.000000E+00 +700812,fr,5,3.650000E+00,6.190560E+00,4.398629E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998707E+01,0.000000E+00 +700814,fr,1,3.650000E+00,6.190560E+00,4.398629E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998707E+01,0.000000E+00 +700825,fr,2,3.750000E+00,6.190560E+00,4.398629E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998847E+01,0.000000E+00 +700826,fr,1,3.750000E+00,6.190560E+00,4.398629E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998847E+01,0.000000E+00 +700836,fr,2,3.850000E+00,6.190560E+00,4.398629E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +700837,fr,1,3.850000E+00,6.190560E+00,4.398629E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +700848,fr,4,3.950000E+00,6.190560E+00,4.398629E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +700872,fr,3,4.150000E+00,6.190560E+00,4.398629E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +700875,fr,1,4.150000E+00,6.190560E+00,4.398629E+01,5.000000E+00,Active Shallow Crust,2.400075E+02,5.799747E+01,0.000000E+00 +700884,fr,1,4.250000E+00,6.190560E+00,4.398629E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +700885,fr,1,4.250000E+00,6.190560E+00,4.398629E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +700920,fr,1,4.550000E+00,6.190560E+00,4.398629E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999082E+01,0.000000E+00 +700956,fr,2,4.850000E+00,6.190560E+00,4.398629E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +700970,fr,1,4.950000E+00,6.190560E+00,4.398629E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +700971,fr,1,4.950000E+00,6.190560E+00,4.398629E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.800446E+01,0.000000E+00 +701282,fr,1,3.550000E+00,8.818400E+00,5.095220E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998730E+01,0.000000E+00 +701297,fr,1,3.650000E+00,8.818400E+00,5.095220E+01,2.750000E+01,Active Shallow Crust,2.400007E+02,5.801365E+01,0.000000E+00 +701763,fr,1,3.550000E+00,7.216390E+00,4.903413E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799901E+01,0.000000E+00 +701808,fr,1,3.950000E+00,7.216390E+00,4.903413E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999165E+01,0.000000E+00 +702750,fr,1,3.750000E+00,1.141530E+00,4.449305E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +702757,fr,1,3.850000E+00,1.141530E+00,4.449305E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +702792,fr,1,4.150000E+00,1.141530E+00,4.449305E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +703389,fr,1,5.050000E+00,-2.231010E+00,4.390259E+01,5.000000E+00,Active Shallow Crust,1.288865E+02,8.999056E+01,0.000000E+00 +703800,fr,1,4.550000E+00,-2.794400E-01,4.396392E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +704161,fr,1,3.550000E+00,-1.659300E+00,4.588312E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +704169,fr,1,3.550000E+00,-1.659300E+00,4.588312E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999386E+01,0.000000E+00 +704173,fr,2,3.650000E+00,-1.659300E+00,4.588312E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +704181,fr,1,3.650000E+00,-1.659300E+00,4.588312E+01,5.000000E+00,Active Shallow Crust,1.289009E+02,8.996351E+01,0.000000E+00 +704196,fr,1,3.850000E+00,-1.659300E+00,4.588312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +704232,fr,1,4.150000E+00,-1.659300E+00,4.588312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +704246,fr,1,4.250000E+00,-1.659300E+00,4.588312E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +704269,fr,1,4.450000E+00,-1.659300E+00,4.588312E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +704640,fr,11,3.550000E+00,6.977130E+00,4.683572E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999310E+01,0.000000E+00 +704641,fr,4,3.550000E+00,6.977130E+00,4.683572E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999310E+01,0.000000E+00 +704642,fr,2,3.550000E+00,6.977130E+00,4.683572E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999310E+01,0.000000E+00 +704643,fr,1,3.550000E+00,6.977130E+00,4.683572E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799871E+01,0.000000E+00 +704644,fr,1,3.550000E+00,6.977130E+00,4.683572E+01,1.500000E+01,Active Shallow Crust,2.400114E+02,5.799871E+01,0.000000E+00 +704649,fr,2,3.550000E+00,6.977130E+00,4.683572E+01,5.000000E+00,Active Shallow Crust,1.288949E+02,8.999655E+01,0.000000E+00 +704651,fr,1,3.550000E+00,6.977130E+00,4.683572E+01,2.750000E+01,Active Shallow Crust,1.288949E+02,8.999655E+01,0.000000E+00 +704652,fr,6,3.650000E+00,6.977130E+00,4.683572E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998770E+01,0.000000E+00 +704653,fr,6,3.650000E+00,6.977130E+00,4.683572E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998770E+01,0.000000E+00 +704654,fr,2,3.650000E+00,6.977130E+00,4.683572E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998770E+01,0.000000E+00 +704655,fr,1,3.650000E+00,6.977130E+00,4.683572E+01,5.000000E+00,Active Shallow Crust,2.399998E+02,5.801341E+01,0.000000E+00 +704658,fr,1,3.650000E+00,6.977130E+00,4.683572E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998756E+01,-9.000000E+01 +704660,fr,2,3.650000E+00,6.977130E+00,4.683572E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998756E+01,-9.000000E+01 +704661,fr,2,3.650000E+00,6.977130E+00,4.683572E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.996353E+01,0.000000E+00 +704662,fr,1,3.650000E+00,6.977130E+00,4.683572E+01,1.500000E+01,Active Shallow Crust,1.289002E+02,8.996353E+01,0.000000E+00 +704664,fr,12,3.750000E+00,6.977130E+00,4.683572E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +704665,fr,2,3.750000E+00,6.977130E+00,4.683572E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +704667,fr,2,3.750000E+00,6.977130E+00,4.683572E+01,5.000000E+00,Active Shallow Crust,2.400092E+02,5.801749E+01,0.000000E+00 +704668,fr,1,3.750000E+00,6.977130E+00,4.683572E+01,1.500000E+01,Active Shallow Crust,2.400092E+02,5.801749E+01,0.000000E+00 +704669,fr,1,3.750000E+00,6.977130E+00,4.683572E+01,2.750000E+01,Active Shallow Crust,2.400092E+02,5.801749E+01,0.000000E+00 +704670,fr,2,3.750000E+00,6.977130E+00,4.683572E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,-9.000000E+01 +704673,fr,1,3.750000E+00,6.977130E+00,4.683572E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.996750E+01,0.000000E+00 +704676,fr,5,3.850000E+00,6.977130E+00,4.683572E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +704677,fr,1,3.850000E+00,6.977130E+00,4.683572E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +704682,fr,2,3.850000E+00,6.977130E+00,4.683572E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,-9.000000E+01 +704685,fr,2,3.850000E+00,6.977130E+00,4.683572E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.999268E+01,0.000000E+00 +704688,fr,7,3.950000E+00,6.977130E+00,4.683572E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +704689,fr,3,3.950000E+00,6.977130E+00,4.683572E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +704698,fr,1,3.950000E+00,6.977130E+00,4.683572E+01,1.500000E+01,Active Shallow Crust,1.289006E+02,8.999347E+01,0.000000E+00 +704700,fr,2,4.050000E+00,6.977130E+00,4.683572E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998837E+01,0.000000E+00 +704703,fr,1,4.050000E+00,6.977130E+00,4.683572E+01,5.000000E+00,Active Shallow Crust,2.400052E+02,5.800630E+01,0.000000E+00 +704708,fr,1,4.050000E+00,6.977130E+00,4.683572E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998823E+01,-9.000000E+01 +704709,fr,1,4.050000E+00,6.977130E+00,4.683572E+01,5.000000E+00,Active Shallow Crust,1.288909E+02,8.999418E+01,0.000000E+00 +704712,fr,3,4.150000E+00,6.977130E+00,4.683572E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +704713,fr,1,4.150000E+00,6.977130E+00,4.683572E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +704715,fr,1,4.150000E+00,6.977130E+00,4.683572E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799692E+01,0.000000E+00 +704716,fr,1,4.150000E+00,6.977130E+00,4.683572E+01,1.500000E+01,Active Shallow Crust,2.400082E+02,5.799694E+01,0.000000E+00 +704722,fr,1,4.150000E+00,6.977130E+00,4.683572E+01,1.500000E+01,Active Shallow Crust,1.288971E+02,8.999481E+01,0.000000E+00 +704724,fr,2,4.250000E+00,6.977130E+00,4.683572E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +704725,fr,2,4.250000E+00,6.977130E+00,4.683572E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +704731,fr,1,4.250000E+00,6.977130E+00,4.683572E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,-9.000000E+01 +704733,fr,1,4.250000E+00,6.977130E+00,4.683572E+01,5.000000E+00,Active Shallow Crust,1.288934E+02,8.998096E+01,0.000000E+00 +704736,fr,3,4.350000E+00,6.977130E+00,4.683572E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +704748,fr,1,4.450000E+00,6.977130E+00,4.683572E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +704759,fr,1,4.450000E+00,6.977130E+00,4.683572E+01,2.750000E+01,Active Shallow Crust,1.288915E+02,8.999388E+01,0.000000E+00 +704760,fr,1,4.550000E+00,6.977130E+00,4.683572E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +704765,fr,1,4.550000E+00,6.977130E+00,4.683572E+01,2.750000E+01,Active Shallow Crust,2.400091E+02,5.799729E+01,0.000000E+00 +704772,fr,1,4.650000E+00,6.977130E+00,4.683572E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +704778,fr,1,4.650000E+00,6.977130E+00,4.683572E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,-9.000000E+01 +704787,fr,1,4.750000E+00,6.977130E+00,4.683572E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.800471E+01,0.000000E+00 +704794,fr,1,4.750000E+00,6.977130E+00,4.683572E+01,1.500000E+01,Active Shallow Crust,1.288885E+02,8.998819E+01,0.000000E+00 +704798,fr,1,4.850000E+00,6.977130E+00,4.683572E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999073E+01,0.000000E+00 +704801,fr,1,4.850000E+00,6.977130E+00,4.683572E+01,2.750000E+01,Active Shallow Crust,2.400171E+02,5.800260E+01,0.000000E+00 +704802,fr,1,4.850000E+00,6.977130E+00,4.683572E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,-9.000000E+01 +704805,fr,1,4.850000E+00,6.977130E+00,4.683572E+01,5.000000E+00,Active Shallow Crust,1.288921E+02,8.998906E+01,0.000000E+00 +704811,fr,1,4.950000E+00,6.977130E+00,4.683572E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.800439E+01,0.000000E+00 +704834,fr,1,5.150000E+00,6.977130E+00,4.683572E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +704880,fr,1,5.550000E+00,6.977130E+00,4.683572E+01,5.000000E+00,Active Shallow Crust,3.599997E+02,8.999034E+01,0.000000E+00 +704892,fr,1,5.650000E+00,6.977130E+00,4.683572E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +704902,fr,1,5.650000E+00,6.977130E+00,4.683572E+01,1.500000E+01,Active Shallow Crust,1.288749E+02,8.999034E+01,0.000000E+00 +704940,fr,1,6.050000E+00,6.977131E+00,4.683572E+01,5.357596E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +705120,fr,4,3.550000E+00,6.550940E+00,4.522013E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999290E+01,0.000000E+00 +705124,fr,1,3.550000E+00,6.550940E+00,4.522013E+01,1.500000E+01,Active Shallow Crust,2.400120E+02,5.799752E+01,0.000000E+00 +705126,fr,1,3.550000E+00,6.550940E+00,4.522013E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999281E+01,-9.000000E+01 +705132,fr,1,3.650000E+00,6.550940E+00,4.522013E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998734E+01,0.000000E+00 +705133,fr,1,3.650000E+00,6.550940E+00,4.522013E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998734E+01,0.000000E+00 +705135,fr,1,3.650000E+00,6.550940E+00,4.522013E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801305E+01,0.000000E+00 +705144,fr,1,3.750000E+00,6.550940E+00,4.522013E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +705147,fr,1,3.750000E+00,6.550940E+00,4.522013E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.801793E+01,0.000000E+00 +705153,fr,1,3.750000E+00,6.550940E+00,4.522013E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.996747E+01,0.000000E+00 +705159,fr,1,3.850000E+00,6.550940E+00,4.522013E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799766E+01,0.000000E+00 +705168,fr,2,3.950000E+00,6.550940E+00,4.522013E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +705174,fr,1,3.950000E+00,6.550940E+00,4.522013E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,-9.000000E+01 +705181,fr,1,4.050000E+00,6.550940E+00,4.522013E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998801E+01,0.000000E+00 +705189,fr,1,4.050000E+00,6.550940E+00,4.522013E+01,5.000000E+00,Active Shallow Crust,1.288907E+02,8.999401E+01,0.000000E+00 +705196,fr,1,4.150000E+00,6.550940E+00,4.522013E+01,1.500000E+01,Active Shallow Crust,2.400087E+02,5.799693E+01,0.000000E+00 +705213,fr,1,4.250000E+00,6.550940E+00,4.522013E+01,5.000000E+00,Active Shallow Crust,1.288938E+02,8.998090E+01,0.000000E+00 +705228,fr,1,4.450000E+00,6.550940E+00,4.522013E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +705245,fr,1,4.550000E+00,6.550940E+00,4.522013E+01,2.750000E+01,Active Shallow Crust,2.400089E+02,5.799730E+01,0.000000E+00 +705257,fr,1,4.650000E+00,6.550940E+00,4.522013E+01,2.750000E+01,Active Shallow Crust,2.400105E+02,5.799414E+01,0.000000E+00 +705285,fr,1,4.850000E+00,6.550940E+00,4.522013E+01,5.000000E+00,Active Shallow Crust,1.288928E+02,8.998940E+01,0.000000E+00 +705615,fr,1,3.650000E+00,2.670860E+00,5.193471E+01,5.000000E+00,Active Shallow Crust,2.400019E+02,5.801271E+01,0.000000E+00 +706089,fr,1,3.550000E+00,1.841010E+00,4.081731E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.999332E+01,0.000000E+00 +706092,fr,1,3.650000E+00,1.841010E+00,4.081731E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +706116,fr,1,3.850000E+00,1.841010E+00,4.081731E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +706117,fr,1,3.850000E+00,1.841010E+00,4.081731E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +706119,fr,1,3.850000E+00,1.841010E+00,4.081731E+01,5.000000E+00,Active Shallow Crust,2.400100E+02,5.799772E+01,0.000000E+00 +706152,fr,1,4.150000E+00,1.841010E+00,4.081731E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +706158,fr,1,4.150000E+00,1.841010E+00,4.081731E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,-9.000000E+01 +706159,fr,1,4.150000E+00,1.841010E+00,4.081731E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,-9.000000E+01 +706560,fr,2,3.550000E+00,5.962210E+00,4.963351E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998694E+01,0.000000E+00 +706585,fr,1,3.750000E+00,5.962210E+00,4.963351E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +707058,fr,1,3.650000E+00,4.691350E+00,5.143536E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,-9.000000E+01 +707077,fr,1,3.850000E+00,4.691350E+00,5.143536E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +707103,fr,1,4.050000E+00,4.691350E+00,5.143536E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.800632E+01,0.000000E+00 +707138,fr,1,4.350000E+00,4.691350E+00,5.143536E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +707520,fr,1,3.550000E+00,5.340570E+00,4.119078E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999241E+01,0.000000E+00 +707539,fr,1,3.650000E+00,5.340570E+00,4.119078E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999316E+01,-9.000000E+01 +707562,fr,1,3.850000E+00,5.340570E+00,4.119078E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998913E+01,-9.000000E+01 +707580,fr,1,4.050000E+00,5.340570E+00,4.119078E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999146E+01,0.000000E+00 +707585,fr,1,4.050000E+00,5.340570E+00,4.119078E+01,2.750000E+01,Active Shallow Crust,2.400045E+02,5.800565E+01,0.000000E+00 +708000,fr,1,3.550000E+00,7.034590E+00,4.567142E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999295E+01,0.000000E+00 +708001,fr,1,3.550000E+00,7.034590E+00,4.567142E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999295E+01,0.000000E+00 +708006,fr,1,3.550000E+00,7.034590E+00,4.567142E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999287E+01,-9.000000E+01 +708007,fr,1,3.550000E+00,7.034590E+00,4.567142E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999287E+01,-9.000000E+01 +708015,fr,1,3.650000E+00,7.034590E+00,4.567142E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801242E+01,0.000000E+00 +708021,fr,1,3.650000E+00,7.034590E+00,4.567142E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.996351E+01,0.000000E+00 +708024,fr,1,3.750000E+00,7.034590E+00,4.567142E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998881E+01,0.000000E+00 +708027,fr,1,3.750000E+00,7.034590E+00,4.567142E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801819E+01,0.000000E+00 +708060,fr,1,4.050000E+00,7.034590E+00,4.567142E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998811E+01,0.000000E+00 +708072,fr,1,4.150000E+00,7.034590E+00,4.567142E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +708145,fr,1,4.750000E+00,7.034590E+00,4.567142E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +708960,fr,1,3.550000E+00,6.051830E+00,4.633375E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999303E+01,0.000000E+00 +708962,fr,1,3.550000E+00,6.051830E+00,4.633375E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999303E+01,0.000000E+00 +708963,fr,1,3.550000E+00,6.051830E+00,4.633375E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799788E+01,0.000000E+00 +708964,fr,1,3.550000E+00,6.051830E+00,4.633375E+01,1.500000E+01,Active Shallow Crust,2.400124E+02,5.799788E+01,0.000000E+00 +708966,fr,2,3.550000E+00,6.051830E+00,4.633375E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999296E+01,-9.000000E+01 +708972,fr,1,3.650000E+00,6.051830E+00,4.633375E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998759E+01,0.000000E+00 +708984,fr,2,3.750000E+00,6.051830E+00,4.633375E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998894E+01,0.000000E+00 +708996,fr,4,3.850000E+00,6.051830E+00,4.633375E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +709011,fr,1,3.950000E+00,6.051830E+00,4.633375E+01,5.000000E+00,Active Shallow Crust,2.400201E+02,5.800424E+01,0.000000E+00 +709013,fr,1,3.950000E+00,6.051830E+00,4.633375E+01,2.750000E+01,Active Shallow Crust,2.400201E+02,5.800424E+01,0.000000E+00 +709015,fr,1,3.950000E+00,6.051830E+00,4.633375E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999111E+01,-9.000000E+01 +709065,fr,1,4.350000E+00,6.051830E+00,4.633375E+01,5.000000E+00,Active Shallow Crust,1.288973E+02,8.998301E+01,0.000000E+00 +709103,fr,1,4.650000E+00,6.051830E+00,4.633375E+01,2.750000E+01,Active Shallow Crust,1.288911E+02,8.998720E+01,0.000000E+00 +709104,fr,1,4.750000E+00,6.051830E+00,4.633375E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +709111,fr,1,4.750000E+00,6.051830E+00,4.633375E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998938E+01,-9.000000E+01 +709122,fr,1,4.850000E+00,6.051830E+00,4.633375E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,-9.000000E+01 +709140,fr,1,5.050000E+00,6.051830E+00,4.633375E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +709177,fr,1,5.350000E+00,6.051830E+00,4.633375E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +709440,fr,1,3.550000E+00,2.343600E+00,4.357228E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +709452,fr,1,3.650000E+00,2.343600E+00,4.357228E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +709465,fr,1,3.750000E+00,2.343600E+00,4.357228E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +709515,fr,1,4.150000E+00,2.343600E+00,4.357228E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799699E+01,0.000000E+00 +710425,fr,1,3.750000E+00,4.311790E+00,5.271333E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +710881,fr,1,3.550000E+00,5.746450E+00,4.124245E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999242E+01,0.000000E+00 +710904,fr,1,3.750000E+00,5.746450E+00,4.124245E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998795E+01,0.000000E+00 +710907,fr,1,3.750000E+00,5.746450E+00,4.124245E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.801762E+01,0.000000E+00 +711375,fr,1,3.650000E+00,-2.855050E+00,4.956730E+01,5.000000E+00,Active Shallow Crust,2.400017E+02,5.801291E+01,0.000000E+00 +711396,fr,1,3.850000E+00,-2.855050E+00,4.956730E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +711421,fr,1,4.050000E+00,-2.855050E+00,4.956730E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +711852,fr,1,3.650000E+00,9.702400E-01,4.743217E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +711853,fr,1,3.650000E+00,9.702400E-01,4.743217E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +711864,fr,2,3.750000E+00,9.702400E-01,4.743217E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +711865,fr,1,3.750000E+00,9.702400E-01,4.743217E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +711881,fr,1,3.850000E+00,9.702400E-01,4.743217E+01,2.750000E+01,Active Shallow Crust,2.400110E+02,5.799791E+01,0.000000E+00 +711900,fr,1,4.050000E+00,9.702400E-01,4.743217E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +712333,fr,1,3.650000E+00,-3.137820E+00,4.738029E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +712368,fr,2,3.950000E+00,-3.137820E+00,4.738029E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +712380,fr,1,4.050000E+00,-3.137820E+00,4.738029E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +712386,fr,1,4.050000E+00,-3.137820E+00,4.738029E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,-9.000000E+01 +712462,fr,1,4.650000E+00,-3.137820E+00,4.738029E+01,1.500000E+01,Active Shallow Crust,1.288909E+02,8.998702E+01,0.000000E+00 +712488,fr,1,4.950000E+00,-3.137820E+00,4.738029E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +712824,fr,1,3.750000E+00,-1.286400E+00,4.386526E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +712827,fr,1,3.750000E+00,-1.286400E+00,4.386526E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801756E+01,0.000000E+00 +712857,fr,1,3.950000E+00,-1.286400E+00,4.386526E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.999369E+01,0.000000E+00 +713280,fr,1,3.550000E+00,5.601180E+00,4.971150E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998696E+01,0.000000E+00 +713304,fr,1,3.750000E+00,5.601180E+00,4.971150E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +713319,fr,1,3.850000E+00,5.601180E+00,4.971150E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799792E+01,0.000000E+00 +713346,fr,1,4.050000E+00,5.601180E+00,4.971150E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998887E+01,-9.000000E+01 +713364,fr,1,4.250000E+00,5.601180E+00,4.971150E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +713760,fr,4,3.550000E+00,8.124380E+00,4.579376E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998594E+01,0.000000E+00 +713761,fr,2,3.550000E+00,8.124380E+00,4.579376E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998594E+01,0.000000E+00 +713764,fr,1,3.550000E+00,8.124380E+00,4.579376E+01,1.500000E+01,Active Shallow Crust,2.400101E+02,5.799870E+01,0.000000E+00 +713773,fr,1,3.650000E+00,8.124380E+00,4.579376E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998746E+01,0.000000E+00 +713774,fr,1,3.650000E+00,8.124380E+00,4.579376E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998746E+01,0.000000E+00 +713784,fr,2,3.750000E+00,8.124380E+00,4.579376E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998883E+01,0.000000E+00 +713796,fr,2,3.850000E+00,8.124380E+00,4.579376E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +713797,fr,1,3.850000E+00,8.124380E+00,4.579376E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +713805,fr,1,3.850000E+00,8.124380E+00,4.579376E+01,5.000000E+00,Active Shallow Crust,1.288949E+02,8.999503E+01,0.000000E+00 +713816,fr,1,3.950000E+00,8.124380E+00,4.579376E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999103E+01,-9.000000E+01 +713818,fr,1,3.950000E+00,8.124380E+00,4.579376E+01,1.500000E+01,Active Shallow Crust,1.289028E+02,8.999113E+01,0.000000E+00 +713820,fr,1,4.050000E+00,8.124380E+00,4.579376E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999209E+01,0.000000E+00 +714240,fr,2,3.550000E+00,1.440790E+00,4.612726E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +714264,fr,1,3.750000E+00,1.440790E+00,4.612726E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +714265,fr,1,3.750000E+00,1.440790E+00,4.612726E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +714276,fr,1,3.850000E+00,1.440790E+00,4.612726E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +714279,fr,1,3.850000E+00,1.440790E+00,4.612726E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799785E+01,0.000000E+00 +714288,fr,1,3.950000E+00,1.440790E+00,4.612726E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +714312,fr,1,4.150000E+00,1.440790E+00,4.612726E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +714313,fr,1,4.150000E+00,1.440790E+00,4.612726E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +714324,fr,1,4.250000E+00,1.440790E+00,4.612726E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +714348,fr,1,4.450000E+00,1.440790E+00,4.612726E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +714373,fr,1,4.650000E+00,1.440790E+00,4.612726E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +714736,fr,1,3.650000E+00,1.722180E+00,5.216752E+01,1.500000E+01,Active Shallow Crust,2.400015E+02,5.801315E+01,0.000000E+00 +714737,fr,1,3.650000E+00,1.722180E+00,5.216752E+01,2.750000E+01,Active Shallow Crust,2.400015E+02,5.801306E+01,0.000000E+00 +714738,fr,1,3.650000E+00,1.722180E+00,5.216752E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,-9.000000E+01 +714765,fr,1,3.850000E+00,1.722180E+00,5.216752E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.999343E+01,0.000000E+00 +714939,fr,1,5.350000E+00,1.722180E+00,5.216752E+01,5.000000E+00,Active Shallow Crust,2.400297E+02,5.799868E+01,0.000000E+00 +715200,fr,2,3.550000E+00,7.141000E-01,4.913994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +715210,fr,1,3.550000E+00,7.141000E-01,4.913994E+01,1.500000E+01,Active Shallow Crust,1.288960E+02,8.999381E+01,0.000000E+00 +715224,fr,2,3.750000E+00,7.141000E-01,4.913994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +715225,fr,1,3.750000E+00,7.141000E-01,4.913994E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +715265,fr,1,4.050000E+00,7.141000E-01,4.913994E+01,2.750000E+01,Active Shallow Crust,2.400064E+02,5.800594E+01,0.000000E+00 +715680,fr,1,3.550000E+00,7.790380E+00,4.496833E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999287E+01,0.000000E+00 +715692,fr,1,3.650000E+00,7.790380E+00,4.496833E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998728E+01,0.000000E+00 +715698,fr,1,3.650000E+00,7.790380E+00,4.496833E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998714E+01,-9.000000E+01 +715705,fr,1,3.750000E+00,7.790380E+00,4.496833E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +715755,fr,1,4.150000E+00,7.790380E+00,4.496833E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.799726E+01,0.000000E+00 +715767,fr,1,4.250000E+00,7.790380E+00,4.496833E+01,5.000000E+00,Active Shallow Crust,2.400070E+02,5.799398E+01,0.000000E+00 +715773,fr,1,4.250000E+00,7.790380E+00,4.496833E+01,5.000000E+00,Active Shallow Crust,1.288942E+02,8.998089E+01,0.000000E+00 +715813,fr,1,4.650000E+00,7.790380E+00,4.496833E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +715920,fr,1,5.550000E+00,7.790380E+00,4.496833E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +716160,fr,1,3.550000E+00,6.641990E+00,4.756787E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999319E+01,0.000000E+00 +716164,fr,1,3.550000E+00,6.641990E+00,4.756787E+01,1.500000E+01,Active Shallow Crust,2.400133E+02,5.799750E+01,0.000000E+00 +716169,fr,1,3.550000E+00,6.641990E+00,4.756787E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999319E+01,0.000000E+00 +716181,fr,1,3.650000E+00,6.641990E+00,4.756787E+01,5.000000E+00,Active Shallow Crust,1.288994E+02,8.996355E+01,0.000000E+00 +716197,fr,1,3.850000E+00,6.641990E+00,4.756787E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +716202,fr,1,3.850000E+00,6.641990E+00,4.756787E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,-9.000000E+01 +716218,fr,1,3.950000E+00,6.641990E+00,4.756787E+01,1.500000E+01,Active Shallow Crust,1.289001E+02,8.999570E+01,0.000000E+00 +716232,fr,1,4.150000E+00,6.641990E+00,4.756787E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +716238,fr,1,4.150000E+00,6.641990E+00,4.756787E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +716261,fr,1,4.350000E+00,6.641990E+00,4.756787E+01,2.750000E+01,Active Shallow Crust,2.400084E+02,5.799627E+01,0.000000E+00 +716273,fr,1,4.450000E+00,6.641990E+00,4.756787E+01,2.750000E+01,Active Shallow Crust,2.400051E+02,5.799471E+01,0.000000E+00 +716293,fr,1,4.650000E+00,6.641990E+00,4.756787E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +716316,fr,1,4.850000E+00,6.641990E+00,4.756787E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +716403,fr,1,5.550000E+00,6.641990E+00,4.756787E+01,5.000000E+00,Active Shallow Crust,2.400336E+02,5.799963E+01,0.000000E+00 +716666,fr,1,3.750000E+00,5.300910E+00,4.145691E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998799E+01,0.000000E+00 +717142,fr,1,3.650000E+00,1.926160E+00,4.629102E+01,1.500000E+01,Active Shallow Crust,1.289004E+02,8.996352E+01,0.000000E+00 +717145,fr,1,3.750000E+00,1.926160E+00,4.629102E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +717156,fr,1,3.850000E+00,1.926160E+00,4.629102E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +717157,fr,1,3.850000E+00,1.926160E+00,4.629102E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +717159,fr,1,3.850000E+00,1.926160E+00,4.629102E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799792E+01,0.000000E+00 +717168,fr,1,3.950000E+00,1.926160E+00,4.629102E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +717178,fr,1,3.950000E+00,1.926160E+00,4.629102E+01,1.500000E+01,Active Shallow Crust,1.289003E+02,8.999341E+01,0.000000E+00 +717180,fr,1,4.050000E+00,1.926160E+00,4.629102E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +717193,fr,1,4.150000E+00,1.926160E+00,4.629102E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +717205,fr,1,4.250000E+00,1.926160E+00,4.629102E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +717206,fr,1,4.250000E+00,1.926160E+00,4.629102E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +717282,fr,1,4.850000E+00,1.926160E+00,4.629102E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +717285,fr,1,4.850000E+00,1.926160E+00,4.629102E+01,5.000000E+00,Active Shallow Crust,1.288927E+02,8.998902E+01,0.000000E+00 +717600,fr,1,3.550000E+00,8.524400E-01,5.149621E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +717615,fr,1,3.650000E+00,8.524400E-01,5.149621E+01,5.000000E+00,Active Shallow Crust,2.400016E+02,5.801300E+01,0.000000E+00 +717630,fr,1,3.750000E+00,8.524400E-01,5.149621E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +717633,fr,1,3.750000E+00,8.524400E-01,5.149621E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.996736E+01,0.000000E+00 +718082,fr,1,3.550000E+00,4.769750E+00,4.286756E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999261E+01,0.000000E+00 +718141,fr,1,4.050000E+00,4.769750E+00,4.286756E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999168E+01,0.000000E+00 +718165,fr,1,4.250000E+00,4.769750E+00,4.286756E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +718177,fr,1,4.350000E+00,4.769750E+00,4.286756E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +718560,fr,1,3.550000E+00,4.291060E+00,4.132109E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999242E+01,0.000000E+00 +718561,fr,1,3.550000E+00,4.291060E+00,4.132109E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999242E+01,0.000000E+00 +718563,fr,1,3.550000E+00,4.291060E+00,4.132109E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799836E+01,0.000000E+00 +718578,fr,1,3.650000E+00,4.291060E+00,4.132109E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999317E+01,-9.000000E+01 +718632,fr,1,4.150000E+00,4.291060E+00,4.132109E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998861E+01,0.000000E+00 +718658,fr,1,4.350000E+00,4.291060E+00,4.132109E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999095E+01,0.000000E+00 +719079,fr,1,3.850000E+00,-6.826720E+00,4.793762E+01,5.000000E+00,Active Shallow Crust,2.400115E+02,5.799813E+01,0.000000E+00 +719610,fr,1,4.250000E+00,-5.022360E+00,4.732145E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999073E+01,-9.000000E+01 +719618,fr,1,4.350000E+00,-5.022360E+00,4.732145E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +720482,fr,1,3.550000E+00,1.045700E-01,4.359023E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +720487,fr,2,3.550000E+00,1.045700E-01,4.359023E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +720501,fr,1,3.650000E+00,1.045700E-01,4.359023E+01,5.000000E+00,Active Shallow Crust,1.289006E+02,8.996352E+01,0.000000E+00 +720522,fr,1,3.850000E+00,1.045700E-01,4.359023E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +720548,fr,1,4.050000E+00,1.045700E-01,4.359023E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +720565,fr,1,4.250000E+00,1.045700E-01,4.359023E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +720588,fr,1,4.450000E+00,1.045700E-01,4.359023E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +720966,fr,1,3.550000E+00,6.550640E+00,4.958219E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998677E+01,-9.000000E+01 +720984,fr,1,3.750000E+00,6.550640E+00,4.958219E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +720996,fr,1,3.850000E+00,6.550640E+00,4.958219E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +721009,fr,1,3.950000E+00,6.550640E+00,4.958219E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999175E+01,0.000000E+00 +721032,fr,1,4.150000E+00,6.550640E+00,4.958219E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +721033,fr,1,4.150000E+00,6.550640E+00,4.958219E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +721068,fr,1,4.450000E+00,6.550640E+00,4.958219E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +721082,fr,1,4.550000E+00,6.550640E+00,4.958219E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +721092,fr,2,4.650000E+00,6.550640E+00,4.958219E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +721440,fr,1,3.550000E+00,4.816900E+00,4.057814E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999234E+01,0.000000E+00 +721530,fr,1,4.250000E+00,4.816900E+00,4.057814E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,-9.000000E+01 +721669,fr,1,5.450000E+00,4.816900E+00,4.057814E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +722400,fr,1,3.550000E+00,-3.519700E-01,4.572582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +722409,fr,1,3.550000E+00,-3.519700E-01,4.572582E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999384E+01,0.000000E+00 +722412,fr,1,3.650000E+00,-3.519700E-01,4.572582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +722413,fr,1,3.650000E+00,-3.519700E-01,4.572582E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +722414,fr,1,3.650000E+00,-3.519700E-01,4.572582E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +722425,fr,1,3.750000E+00,-3.519700E-01,4.572582E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +722428,fr,1,3.750000E+00,-3.519700E-01,4.572582E+01,1.500000E+01,Active Shallow Crust,2.400082E+02,5.801756E+01,0.000000E+00 +722430,fr,1,3.750000E+00,-3.519700E-01,4.572582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +722439,fr,1,3.850000E+00,-3.519700E-01,4.572582E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799778E+01,0.000000E+00 +722449,fr,2,3.950000E+00,-3.519700E-01,4.572582E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +722525,fr,1,4.550000E+00,-3.519700E-01,4.572582E+01,2.750000E+01,Active Shallow Crust,2.400091E+02,5.799731E+01,0.000000E+00 +722690,fr,1,5.950000E+00,-3.519700E-01,4.572582E+01,2.750000E+01,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +723373,fr,1,3.650000E+00,4.163970E+00,4.581811E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998747E+01,0.000000E+00 +723374,fr,1,3.650000E+00,4.163970E+00,4.581811E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998747E+01,0.000000E+00 +723382,fr,1,3.650000E+00,4.163970E+00,4.581811E+01,1.500000E+01,Active Shallow Crust,1.288996E+02,8.996351E+01,0.000000E+00 +723399,fr,1,3.850000E+00,4.163970E+00,4.581811E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799820E+01,0.000000E+00 +723418,fr,1,3.950000E+00,4.163970E+00,4.581811E+01,1.500000E+01,Active Shallow Crust,1.289011E+02,8.999335E+01,0.000000E+00 +723434,fr,1,4.150000E+00,4.163970E+00,4.581811E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +723468,fr,1,4.450000E+00,4.163970E+00,4.581811E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +723505,fr,2,4.750000E+00,4.163970E+00,4.581811E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +723843,fr,1,3.550000E+00,2.297720E+00,4.934291E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799866E+01,0.000000E+00 +723906,fr,1,4.050000E+00,2.297720E+00,4.934291E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,-9.000000E+01 +723922,fr,1,4.150000E+00,2.297720E+00,4.934291E+01,1.500000E+01,Active Shallow Crust,1.288969E+02,8.999424E+01,0.000000E+00 +723948,fr,1,4.450000E+00,2.297720E+00,4.934291E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +724320,fr,6,3.550000E+00,7.885240E+00,4.758355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999319E+01,0.000000E+00 +724321,fr,2,3.550000E+00,7.885240E+00,4.758355E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999319E+01,0.000000E+00 +724323,fr,2,3.550000E+00,7.885240E+00,4.758355E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.799799E+01,0.000000E+00 +724324,fr,2,3.550000E+00,7.885240E+00,4.758355E+01,1.500000E+01,Active Shallow Crust,2.400127E+02,5.799799E+01,0.000000E+00 +724327,fr,2,3.550000E+00,7.885240E+00,4.758355E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999312E+01,-9.000000E+01 +724329,fr,2,3.550000E+00,7.885240E+00,4.758355E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999320E+01,0.000000E+00 +724331,fr,1,3.550000E+00,7.885240E+00,4.758355E+01,2.750000E+01,Active Shallow Crust,1.288961E+02,8.999320E+01,0.000000E+00 +724333,fr,2,3.650000E+00,7.885240E+00,4.758355E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998788E+01,0.000000E+00 +724336,fr,1,3.650000E+00,7.885240E+00,4.758355E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801357E+01,0.000000E+00 +724337,fr,2,3.650000E+00,7.885240E+00,4.758355E+01,2.750000E+01,Active Shallow Crust,2.400011E+02,5.801348E+01,0.000000E+00 +724338,fr,1,3.650000E+00,7.885240E+00,4.758355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998773E+01,-9.000000E+01 +724342,fr,1,3.650000E+00,7.885240E+00,4.758355E+01,1.500000E+01,Active Shallow Crust,1.289001E+02,8.996355E+01,0.000000E+00 +724344,fr,4,3.750000E+00,7.885240E+00,4.758355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +724345,fr,1,3.750000E+00,7.885240E+00,4.758355E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +724346,fr,1,3.750000E+00,7.885240E+00,4.758355E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +724350,fr,1,3.750000E+00,7.885240E+00,4.758355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,-9.000000E+01 +724356,fr,5,3.850000E+00,7.885240E+00,4.758355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +724357,fr,2,3.850000E+00,7.885240E+00,4.758355E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +724358,fr,1,3.850000E+00,7.885240E+00,4.758355E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +724359,fr,1,3.850000E+00,7.885240E+00,4.758355E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799807E+01,0.000000E+00 +724364,fr,1,3.850000E+00,7.885240E+00,4.758355E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,-9.000000E+01 +724368,fr,2,3.950000E+00,7.885240E+00,4.758355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +724370,fr,1,3.950000E+00,7.885240E+00,4.758355E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +724371,fr,2,3.950000E+00,7.885240E+00,4.758355E+01,5.000000E+00,Active Shallow Crust,2.400193E+02,5.800549E+01,0.000000E+00 +724372,fr,1,3.950000E+00,7.885240E+00,4.758355E+01,1.500000E+01,Active Shallow Crust,2.400193E+02,5.800549E+01,0.000000E+00 +724374,fr,1,3.950000E+00,7.885240E+00,4.758355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999132E+01,-9.000000E+01 +724377,fr,1,3.950000E+00,7.885240E+00,4.758355E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.999356E+01,0.000000E+00 +724380,fr,1,4.050000E+00,7.885240E+00,4.758355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998853E+01,0.000000E+00 +724390,fr,1,4.050000E+00,7.885240E+00,4.758355E+01,1.500000E+01,Active Shallow Crust,1.288913E+02,8.999235E+01,0.000000E+00 +724395,fr,1,4.150000E+00,7.885240E+00,4.758355E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799744E+01,0.000000E+00 +724404,fr,2,4.250000E+00,7.885240E+00,4.758355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +724406,fr,1,4.250000E+00,7.885240E+00,4.758355E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +724410,fr,1,4.250000E+00,7.885240E+00,4.758355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,-9.000000E+01 +724417,fr,1,4.350000E+00,7.885240E+00,4.758355E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +724418,fr,1,4.350000E+00,7.885240E+00,4.758355E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +724428,fr,1,4.450000E+00,7.885240E+00,4.758355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +724432,fr,1,4.450000E+00,7.885240E+00,4.758355E+01,1.500000E+01,Active Shallow Crust,2.400055E+02,5.799510E+01,0.000000E+00 +724440,fr,2,4.550000E+00,7.885240E+00,4.758355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +724464,fr,1,4.750000E+00,7.885240E+00,4.758355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +724489,fr,2,4.950000E+00,7.885240E+00,4.758355E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +724503,fr,1,5.050000E+00,7.885240E+00,4.758355E+01,5.000000E+00,Active Shallow Crust,2.400228E+02,5.799771E+01,0.000000E+00 +724800,fr,2,3.550000E+00,6.021430E+00,5.063302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998721E+01,0.000000E+00 +724801,fr,4,3.550000E+00,6.021430E+00,5.063302E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998721E+01,0.000000E+00 +724803,fr,1,3.550000E+00,6.021430E+00,5.063302E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799818E+01,0.000000E+00 +724805,fr,1,3.550000E+00,6.021430E+00,5.063302E+01,2.750000E+01,Active Shallow Crust,2.400124E+02,5.799808E+01,0.000000E+00 +724806,fr,1,3.550000E+00,6.021430E+00,5.063302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998706E+01,-9.000000E+01 +724809,fr,2,3.550000E+00,6.021430E+00,5.063302E+01,5.000000E+00,Active Shallow Crust,1.288951E+02,8.999361E+01,0.000000E+00 +724811,fr,2,3.550000E+00,6.021430E+00,5.063302E+01,2.750000E+01,Active Shallow Crust,1.288951E+02,8.999361E+01,0.000000E+00 +724812,fr,3,3.650000E+00,6.021430E+00,5.063302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998860E+01,0.000000E+00 +724813,fr,4,3.650000E+00,6.021430E+00,5.063302E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998860E+01,0.000000E+00 +724815,fr,1,3.650000E+00,6.021430E+00,5.063302E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801314E+01,0.000000E+00 +724816,fr,1,3.650000E+00,6.021430E+00,5.063302E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801314E+01,0.000000E+00 +724817,fr,1,3.650000E+00,6.021430E+00,5.063302E+01,2.750000E+01,Active Shallow Crust,2.400011E+02,5.801306E+01,0.000000E+00 +724818,fr,1,3.650000E+00,6.021430E+00,5.063302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998846E+01,-9.000000E+01 +724822,fr,1,3.650000E+00,6.021430E+00,5.063302E+01,1.500000E+01,Active Shallow Crust,1.289000E+02,8.996360E+01,0.000000E+00 +724824,fr,5,3.750000E+00,6.021430E+00,5.063302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +724825,fr,1,3.750000E+00,6.021430E+00,5.063302E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +724826,fr,1,3.750000E+00,6.021430E+00,5.063302E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +724828,fr,1,3.750000E+00,6.021430E+00,5.063302E+01,1.500000E+01,Active Shallow Crust,2.400082E+02,5.801764E+01,0.000000E+00 +724836,fr,3,3.850000E+00,6.021430E+00,5.063302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +724843,fr,1,3.850000E+00,6.021430E+00,5.063302E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999084E+01,-9.000000E+01 +724845,fr,1,3.850000E+00,6.021430E+00,5.063302E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.999321E+01,0.000000E+00 +724848,fr,3,3.950000E+00,6.021430E+00,5.063302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999193E+01,0.000000E+00 +724849,fr,1,3.950000E+00,6.021430E+00,5.063302E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999193E+01,0.000000E+00 +724851,fr,1,3.950000E+00,6.021430E+00,5.063302E+01,5.000000E+00,Active Shallow Crust,2.400203E+02,5.800523E+01,0.000000E+00 +724857,fr,1,3.950000E+00,6.021430E+00,5.063302E+01,5.000000E+00,Active Shallow Crust,1.288988E+02,8.999395E+01,0.000000E+00 +724860,fr,1,4.050000E+00,6.021430E+00,5.063302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +724862,fr,2,4.050000E+00,6.021430E+00,5.063302E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +724867,fr,1,4.050000E+00,6.021430E+00,5.063302E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998908E+01,-9.000000E+01 +724887,fr,1,4.250000E+00,6.021430E+00,5.063302E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799446E+01,0.000000E+00 +724896,fr,2,4.350000E+00,6.021430E+00,5.063302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +724902,fr,1,4.350000E+00,6.021430E+00,5.063302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +724920,fr,1,4.550000E+00,6.021430E+00,5.063302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +724925,fr,1,4.550000E+00,6.021430E+00,5.063302E+01,2.750000E+01,Active Shallow Crust,2.400109E+02,5.799772E+01,0.000000E+00 +724980,fr,1,5.050000E+00,6.021430E+00,5.063302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +724998,fr,1,5.150000E+00,6.021430E+00,5.063302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,-9.000000E+01 +724999,fr,1,5.150000E+00,6.021430E+00,5.063302E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,-9.000000E+01 +725241,fr,1,7.150000E+00,6.021410E+00,5.063300E+01,1.750000E+01,Active Shallow Crust,1.287233E+02,8.999013E+01,0.000000E+00 +725280,fr,2,3.550000E+00,6.512890E+00,4.547800E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999293E+01,0.000000E+00 +725281,fr,2,3.550000E+00,6.512890E+00,4.547800E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999293E+01,0.000000E+00 +725286,fr,1,3.550000E+00,6.512890E+00,4.547800E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999285E+01,-9.000000E+01 +725287,fr,1,3.550000E+00,6.512890E+00,4.547800E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999285E+01,-9.000000E+01 +725292,fr,4,3.650000E+00,6.512890E+00,4.547800E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998740E+01,0.000000E+00 +725301,fr,1,3.650000E+00,6.512890E+00,4.547800E+01,5.000000E+00,Active Shallow Crust,1.289012E+02,8.996350E+01,0.000000E+00 +725304,fr,1,3.750000E+00,6.512890E+00,4.547800E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998877E+01,0.000000E+00 +725316,fr,2,3.850000E+00,6.512890E+00,4.547800E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +725322,fr,1,3.850000E+00,6.512890E+00,4.547800E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +725328,fr,1,3.950000E+00,6.512890E+00,4.547800E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +725364,fr,1,4.250000E+00,6.512890E+00,4.547800E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +725379,fr,1,4.350000E+00,6.512890E+00,4.547800E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799561E+01,0.000000E+00 +725390,fr,1,4.450000E+00,6.512890E+00,4.547800E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +725392,fr,1,4.450000E+00,6.512890E+00,4.547800E+01,1.500000E+01,Active Shallow Crust,2.400048E+02,5.799484E+01,0.000000E+00 +725400,fr,1,4.550000E+00,6.512890E+00,4.547800E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999106E+01,0.000000E+00 +725412,fr,1,4.650000E+00,6.512890E+00,4.547800E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +725436,fr,1,4.850000E+00,6.512890E+00,4.547800E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +725443,fr,1,4.850000E+00,6.512890E+00,4.547800E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,-9.000000E+01 +726303,fr,1,4.050000E+00,8.582650E+00,5.092803E+01,5.000000E+00,Active Shallow Crust,2.400065E+02,5.800480E+01,0.000000E+00 +726720,fr,3,3.550000E+00,2.129950E+00,4.630302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +726722,fr,1,3.550000E+00,2.129950E+00,4.630302E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +726726,fr,1,3.550000E+00,2.129950E+00,4.630302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,-9.000000E+01 +726733,fr,1,3.650000E+00,2.129950E+00,4.630302E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +726745,fr,1,3.750000E+00,2.129950E+00,4.630302E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998893E+01,0.000000E+00 +726756,fr,1,3.850000E+00,2.129950E+00,4.630302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +726757,fr,1,3.850000E+00,2.129950E+00,4.630302E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +726780,fr,1,4.050000E+00,2.129950E+00,4.630302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +726783,fr,1,4.050000E+00,2.129950E+00,4.630302E+01,5.000000E+00,Active Shallow Crust,2.400056E+02,5.800589E+01,0.000000E+00 +726787,fr,1,4.050000E+00,2.129950E+00,4.630302E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +726789,fr,1,4.050000E+00,2.129950E+00,4.630302E+01,5.000000E+00,Active Shallow Crust,1.288901E+02,8.999413E+01,0.000000E+00 +726795,fr,1,4.150000E+00,2.129950E+00,4.630302E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799741E+01,0.000000E+00 +726838,fr,1,4.450000E+00,2.129950E+00,4.630302E+01,1.500000E+01,Active Shallow Crust,1.288923E+02,8.999382E+01,0.000000E+00 +727045,fr,1,6.250000E+00,2.129950E+00,4.630302E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +727200,fr,1,3.550000E+00,7.017990E+00,4.501261E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999287E+01,0.000000E+00 +727202,fr,2,3.550000E+00,7.017990E+00,4.501261E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999287E+01,0.000000E+00 +727208,fr,1,3.550000E+00,7.017990E+00,4.501261E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999279E+01,-9.000000E+01 +727212,fr,3,3.650000E+00,7.017990E+00,4.501261E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998729E+01,0.000000E+00 +727223,fr,1,3.650000E+00,7.017990E+00,4.501261E+01,2.750000E+01,Active Shallow Crust,1.289003E+02,8.996349E+01,0.000000E+00 +727224,fr,2,3.750000E+00,7.017990E+00,4.501261E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998868E+01,0.000000E+00 +727225,fr,3,3.750000E+00,7.017990E+00,4.501261E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998868E+01,0.000000E+00 +727227,fr,1,3.750000E+00,7.017990E+00,4.501261E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.801728E+01,0.000000E+00 +727228,fr,2,3.750000E+00,7.017990E+00,4.501261E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.801728E+01,0.000000E+00 +727236,fr,4,3.850000E+00,7.017990E+00,4.501261E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +727237,fr,1,3.850000E+00,7.017990E+00,4.501261E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +727246,fr,1,3.850000E+00,7.017990E+00,4.501261E+01,1.500000E+01,Active Shallow Crust,1.288949E+02,8.999496E+01,0.000000E+00 +727250,fr,1,3.950000E+00,7.017990E+00,4.501261E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +727251,fr,1,3.950000E+00,7.017990E+00,4.501261E+01,5.000000E+00,Active Shallow Crust,2.400189E+02,5.800492E+01,0.000000E+00 +727260,fr,1,4.050000E+00,7.017990E+00,4.501261E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999198E+01,0.000000E+00 +727261,fr,1,4.050000E+00,7.017990E+00,4.501261E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999198E+01,0.000000E+00 +727267,fr,1,4.050000E+00,7.017990E+00,4.501261E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999189E+01,-9.000000E+01 +727272,fr,1,4.150000E+00,7.017990E+00,4.501261E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998928E+01,0.000000E+00 +727296,fr,1,4.350000E+00,7.017990E+00,4.501261E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998865E+01,0.000000E+00 +727299,fr,1,4.350000E+00,7.017990E+00,4.501261E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799620E+01,0.000000E+00 +727317,fr,1,4.450000E+00,7.017990E+00,4.501261E+01,5.000000E+00,Active Shallow Crust,1.288918E+02,8.999494E+01,0.000000E+00 +727326,fr,1,4.550000E+00,7.017990E+00,4.501261E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,-9.000000E+01 +727341,fr,1,4.650000E+00,7.017990E+00,4.501261E+01,5.000000E+00,Active Shallow Crust,1.288919E+02,8.998663E+01,0.000000E+00 +727342,fr,1,4.650000E+00,7.017990E+00,4.501261E+01,1.500000E+01,Active Shallow Crust,1.288919E+02,8.998663E+01,0.000000E+00 +727347,fr,1,4.750000E+00,7.017990E+00,4.501261E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.800412E+01,0.000000E+00 +727348,fr,1,4.750000E+00,7.017990E+00,4.501261E+01,1.500000E+01,Active Shallow Crust,2.400073E+02,5.800412E+01,0.000000E+00 +727368,fr,1,4.950000E+00,7.017990E+00,4.501261E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +727416,fr,1,5.350000E+00,7.017990E+00,4.501261E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +727428,fr,1,5.450000E+00,7.017990E+00,4.501261E+01,5.000000E+00,Active Shallow Crust,3.599996E+02,8.999039E+01,0.000000E+00 +728160,fr,4,3.550000E+00,-1.640690E+00,4.272382E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +728161,fr,1,3.550000E+00,-1.640690E+00,4.272382E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +728163,fr,2,3.550000E+00,-1.640690E+00,4.272382E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799826E+01,0.000000E+00 +728172,fr,1,3.650000E+00,-1.640690E+00,4.272382E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +728175,fr,1,3.650000E+00,-1.640690E+00,4.272382E+01,5.000000E+00,Active Shallow Crust,2.400005E+02,5.801273E+01,0.000000E+00 +728178,fr,1,3.650000E+00,-1.640690E+00,4.272382E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +728179,fr,1,3.650000E+00,-1.640690E+00,4.272382E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +728181,fr,2,3.650000E+00,-1.640690E+00,4.272382E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996345E+01,0.000000E+00 +728184,fr,2,3.750000E+00,-1.640690E+00,4.272382E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +728185,fr,1,3.750000E+00,-1.640690E+00,4.272382E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +728186,fr,2,3.750000E+00,-1.640690E+00,4.272382E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +728187,fr,1,3.750000E+00,-1.640690E+00,4.272382E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801752E+01,0.000000E+00 +728188,fr,1,3.750000E+00,-1.640690E+00,4.272382E+01,1.500000E+01,Active Shallow Crust,2.400080E+02,5.801752E+01,0.000000E+00 +728190,fr,1,3.750000E+00,-1.640690E+00,4.272382E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +728197,fr,1,3.850000E+00,-1.640690E+00,4.272382E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +728199,fr,1,3.850000E+00,-1.640690E+00,4.272382E+01,5.000000E+00,Active Shallow Crust,2.400103E+02,5.799780E+01,0.000000E+00 +728200,fr,1,3.850000E+00,-1.640690E+00,4.272382E+01,1.500000E+01,Active Shallow Crust,2.400103E+02,5.799780E+01,0.000000E+00 +728209,fr,1,3.950000E+00,-1.640690E+00,4.272382E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +728220,fr,1,4.050000E+00,-1.640690E+00,4.272382E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +728221,fr,1,4.050000E+00,-1.640690E+00,4.272382E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +728238,fr,1,4.150000E+00,-1.640690E+00,4.272382E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,-9.000000E+01 +728244,fr,1,4.250000E+00,-1.640690E+00,4.272382E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +728256,fr,1,4.350000E+00,-1.640690E+00,4.272382E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +728313,fr,1,4.750000E+00,-1.640690E+00,4.272382E+01,5.000000E+00,Active Shallow Crust,1.288898E+02,8.998808E+01,0.000000E+00 +728317,fr,1,4.850000E+00,-1.640690E+00,4.272382E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +728355,fr,1,5.150000E+00,-1.640690E+00,4.272382E+01,5.000000E+00,Active Shallow Crust,2.400176E+02,5.799963E+01,0.000000E+00 +728640,fr,2,3.550000E+00,7.088300E+00,4.606971E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999300E+01,0.000000E+00 +728641,fr,2,3.550000E+00,7.088300E+00,4.606971E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999300E+01,0.000000E+00 +728644,fr,3,3.550000E+00,7.088300E+00,4.606971E+01,1.500000E+01,Active Shallow Crust,2.400130E+02,5.799801E+01,0.000000E+00 +728646,fr,1,3.550000E+00,7.088300E+00,4.606971E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999292E+01,-9.000000E+01 +728652,fr,4,3.650000E+00,7.088300E+00,4.606971E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998753E+01,0.000000E+00 +728653,fr,3,3.650000E+00,7.088300E+00,4.606971E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998753E+01,0.000000E+00 +728654,fr,1,3.650000E+00,7.088300E+00,4.606971E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998753E+01,0.000000E+00 +728655,fr,1,3.650000E+00,7.088300E+00,4.606971E+01,5.000000E+00,Active Shallow Crust,2.400004E+02,5.801344E+01,0.000000E+00 +728656,fr,1,3.650000E+00,7.088300E+00,4.606971E+01,1.500000E+01,Active Shallow Crust,2.400004E+02,5.801344E+01,0.000000E+00 +728659,fr,1,3.650000E+00,7.088300E+00,4.606971E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998739E+01,-9.000000E+01 +728661,fr,1,3.650000E+00,7.088300E+00,4.606971E+01,5.000000E+00,Active Shallow Crust,1.289011E+02,8.996352E+01,0.000000E+00 +728663,fr,1,3.650000E+00,7.088300E+00,4.606971E+01,2.750000E+01,Active Shallow Crust,1.289011E+02,8.996352E+01,0.000000E+00 +728664,fr,4,3.750000E+00,7.088300E+00,4.606971E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +728667,fr,3,3.750000E+00,7.088300E+00,4.606971E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.801820E+01,0.000000E+00 +728670,fr,1,3.750000E+00,7.088300E+00,4.606971E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998875E+01,-9.000000E+01 +728673,fr,3,3.750000E+00,7.088300E+00,4.606971E+01,5.000000E+00,Active Shallow Crust,1.288977E+02,8.996690E+01,0.000000E+00 +728674,fr,1,3.750000E+00,7.088300E+00,4.606971E+01,1.500000E+01,Active Shallow Crust,1.288977E+02,8.996690E+01,0.000000E+00 +728676,fr,4,3.850000E+00,7.088300E+00,4.606971E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +728677,fr,2,3.850000E+00,7.088300E+00,4.606971E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +728681,fr,1,3.850000E+00,7.088300E+00,4.606971E+01,2.750000E+01,Active Shallow Crust,2.400102E+02,5.799795E+01,0.000000E+00 +728683,fr,1,3.850000E+00,7.088300E+00,4.606971E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +728685,fr,1,3.850000E+00,7.088300E+00,4.606971E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.999505E+01,0.000000E+00 +728688,fr,3,3.950000E+00,7.088300E+00,4.606971E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +728690,fr,1,3.950000E+00,7.088300E+00,4.606971E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +728692,fr,1,3.950000E+00,7.088300E+00,4.606971E+01,1.500000E+01,Active Shallow Crust,2.400204E+02,5.800504E+01,0.000000E+00 +728697,fr,1,3.950000E+00,7.088300E+00,4.606971E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.999338E+01,0.000000E+00 +728698,fr,1,3.950000E+00,7.088300E+00,4.606971E+01,1.500000E+01,Active Shallow Crust,1.289004E+02,8.999338E+01,0.000000E+00 +728700,fr,6,4.050000E+00,7.088300E+00,4.606971E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998820E+01,0.000000E+00 +728702,fr,2,4.050000E+00,7.088300E+00,4.606971E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998820E+01,0.000000E+00 +728706,fr,1,4.050000E+00,7.088300E+00,4.606971E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998806E+01,-9.000000E+01 +728709,fr,1,4.050000E+00,7.088300E+00,4.606971E+01,5.000000E+00,Active Shallow Crust,1.288896E+02,8.999410E+01,0.000000E+00 +728712,fr,1,4.150000E+00,7.088300E+00,4.606971E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +728719,fr,1,4.150000E+00,7.088300E+00,4.606971E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,-9.000000E+01 +728724,fr,1,4.250000E+00,7.088300E+00,4.606971E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +728733,fr,1,4.250000E+00,7.088300E+00,4.606971E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.998093E+01,0.000000E+00 +728734,fr,1,4.250000E+00,7.088300E+00,4.606971E+01,1.500000E+01,Active Shallow Crust,1.288952E+02,8.998093E+01,0.000000E+00 +728736,fr,2,4.350000E+00,7.088300E+00,4.606971E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998886E+01,0.000000E+00 +728737,fr,3,4.350000E+00,7.088300E+00,4.606971E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998886E+01,0.000000E+00 +728752,fr,1,4.450000E+00,7.088300E+00,4.606971E+01,1.500000E+01,Active Shallow Crust,2.400057E+02,5.799436E+01,0.000000E+00 +728760,fr,1,4.550000E+00,7.088300E+00,4.606971E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998894E+01,0.000000E+00 +728766,fr,1,4.550000E+00,7.088300E+00,4.606971E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999105E+01,-9.000000E+01 +728772,fr,1,4.650000E+00,7.088300E+00,4.606971E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +728773,fr,1,4.650000E+00,7.088300E+00,4.606971E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +728778,fr,1,4.650000E+00,7.088300E+00,4.606971E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +728786,fr,1,4.750000E+00,7.088300E+00,4.606971E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +728793,fr,2,4.750000E+00,7.088300E+00,4.606971E+01,5.000000E+00,Active Shallow Crust,1.288883E+02,8.998815E+01,0.000000E+00 +728811,fr,1,4.950000E+00,7.088300E+00,4.606971E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.800436E+01,0.000000E+00 +728835,fr,1,5.150000E+00,7.088300E+00,4.606971E+01,5.000000E+00,Active Shallow Crust,2.400195E+02,5.799987E+01,0.000000E+00 +728838,fr,1,5.150000E+00,7.088300E+00,4.606971E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +728877,fr,1,5.450000E+00,7.088300E+00,4.606971E+01,5.000000E+00,Active Shallow Crust,1.288792E+02,8.999226E+01,0.000000E+00 +729120,fr,2,3.550000E+00,1.640120E+00,4.292701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999077E+01,0.000000E+00 +729121,fr,1,3.550000E+00,1.640120E+00,4.292701E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999077E+01,0.000000E+00 +729122,fr,1,3.550000E+00,1.640120E+00,4.292701E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999077E+01,0.000000E+00 +729128,fr,1,3.550000E+00,1.640120E+00,4.292701E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999066E+01,-9.000000E+01 +729132,fr,1,3.650000E+00,1.640120E+00,4.292701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +729144,fr,1,3.750000E+00,1.640120E+00,4.292701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +729154,fr,1,3.750000E+00,1.640120E+00,4.292701E+01,1.500000E+01,Active Shallow Crust,1.288971E+02,8.996729E+01,0.000000E+00 +729157,fr,1,3.850000E+00,1.640120E+00,4.292701E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +729172,fr,1,3.950000E+00,1.640120E+00,4.292701E+01,1.500000E+01,Active Shallow Crust,2.400191E+02,5.800494E+01,0.000000E+00 +729192,fr,1,4.150000E+00,1.640120E+00,4.292701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +729258,fr,1,4.650000E+00,1.640120E+00,4.292701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +729279,fr,1,4.850000E+00,1.640120E+00,4.292701E+01,5.000000E+00,Active Shallow Crust,2.400157E+02,5.800206E+01,0.000000E+00 +729600,fr,1,3.550000E+00,2.648990E+00,5.090919E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +729624,fr,1,3.750000E+00,2.648990E+00,5.090919E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +729636,fr,1,3.850000E+00,2.648990E+00,5.090919E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +729649,fr,1,3.950000E+00,2.648990E+00,5.090919E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +729659,fr,1,3.950000E+00,2.648990E+00,5.090919E+01,2.750000E+01,Active Shallow Crust,1.288998E+02,8.999398E+01,0.000000E+00 +729664,fr,1,4.050000E+00,2.648990E+00,5.090919E+01,1.500000E+01,Active Shallow Crust,2.400068E+02,5.800595E+01,0.000000E+00 +729686,fr,1,4.250000E+00,2.648990E+00,5.090919E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +729687,fr,1,4.250000E+00,2.648990E+00,5.090919E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.799442E+01,0.000000E+00 +729747,fr,1,4.750000E+00,2.648990E+00,5.090919E+01,5.000000E+00,Active Shallow Crust,2.400092E+02,5.800483E+01,0.000000E+00 +730080,fr,3,3.550000E+00,-1.703140E+00,4.299343E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +730083,fr,2,3.550000E+00,-1.703140E+00,4.299343E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799777E+01,0.000000E+00 +730092,fr,4,3.650000E+00,-1.703140E+00,4.299343E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +730095,fr,2,3.650000E+00,-1.703140E+00,4.299343E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801291E+01,0.000000E+00 +730098,fr,1,3.650000E+00,-1.703140E+00,4.299343E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +730100,fr,1,3.650000E+00,-1.703140E+00,4.299343E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +730101,fr,1,3.650000E+00,-1.703140E+00,4.299343E+01,5.000000E+00,Active Shallow Crust,1.289009E+02,8.996346E+01,0.000000E+00 +730104,fr,1,3.750000E+00,-1.703140E+00,4.299343E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +730105,fr,1,3.750000E+00,-1.703140E+00,4.299343E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +730106,fr,1,3.750000E+00,-1.703140E+00,4.299343E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +730107,fr,1,3.750000E+00,-1.703140E+00,4.299343E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801762E+01,0.000000E+00 +730110,fr,1,3.750000E+00,-1.703140E+00,4.299343E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,-9.000000E+01 +730113,fr,1,3.750000E+00,-1.703140E+00,4.299343E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.996743E+01,0.000000E+00 +730116,fr,3,3.850000E+00,-1.703140E+00,4.299343E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +730117,fr,1,3.850000E+00,-1.703140E+00,4.299343E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +730128,fr,3,3.950000E+00,-1.703140E+00,4.299343E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +730134,fr,1,3.950000E+00,-1.703140E+00,4.299343E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,-9.000000E+01 +730140,fr,2,4.050000E+00,-1.703140E+00,4.299343E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +730143,fr,1,4.050000E+00,-1.703140E+00,4.299343E+01,5.000000E+00,Active Shallow Crust,2.400055E+02,5.800582E+01,0.000000E+00 +730146,fr,1,4.050000E+00,-1.703140E+00,4.299343E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,-9.000000E+01 +730149,fr,1,4.050000E+00,-1.703140E+00,4.299343E+01,5.000000E+00,Active Shallow Crust,1.288908E+02,8.999378E+01,0.000000E+00 +730152,fr,1,4.150000E+00,-1.703140E+00,4.299343E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +730153,fr,1,4.150000E+00,-1.703140E+00,4.299343E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +730164,fr,1,4.250000E+00,-1.703140E+00,4.299343E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +730166,fr,2,4.250000E+00,-1.703140E+00,4.299343E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +730176,fr,1,4.350000E+00,-1.703140E+00,4.299343E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +730177,fr,1,4.350000E+00,-1.703140E+00,4.299343E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +730188,fr,1,4.450000E+00,-1.703140E+00,4.299343E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +730193,fr,1,4.450000E+00,-1.703140E+00,4.299343E+01,2.750000E+01,Active Shallow Crust,2.400044E+02,5.799456E+01,0.000000E+00 +730200,fr,1,4.550000E+00,-1.703140E+00,4.299343E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +730225,fr,1,4.750000E+00,-1.703140E+00,4.299343E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +730234,fr,1,4.750000E+00,-1.703140E+00,4.299343E+01,1.500000E+01,Active Shallow Crust,1.288896E+02,8.998810E+01,0.000000E+00 +730236,fr,1,4.850000E+00,-1.703140E+00,4.299343E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +730260,fr,1,5.050000E+00,-1.703140E+00,4.299343E+01,5.000000E+00,Active Shallow Crust,3.599998E+02,8.999016E+01,0.000000E+00 +730261,fr,1,5.050000E+00,-1.703140E+00,4.299343E+01,1.500000E+01,Active Shallow Crust,3.599998E+02,8.999016E+01,0.000000E+00 +730266,fr,1,5.050000E+00,-1.703140E+00,4.299343E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +730561,fr,1,3.550000E+00,2.534500E+00,4.531006E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +730563,fr,1,3.550000E+00,2.534500E+00,4.531006E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799794E+01,0.000000E+00 +730569,fr,1,3.550000E+00,2.534500E+00,4.531006E+01,5.000000E+00,Active Shallow Crust,1.288971E+02,8.999291E+01,0.000000E+00 +730587,fr,1,3.750000E+00,2.534500E+00,4.531006E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.801736E+01,0.000000E+00 +730608,fr,1,3.950000E+00,2.534500E+00,4.531006E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999105E+01,0.000000E+00 +730609,fr,1,3.950000E+00,2.534500E+00,4.531006E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999105E+01,0.000000E+00 +730611,fr,1,3.950000E+00,2.534500E+00,4.531006E+01,5.000000E+00,Active Shallow Crust,2.400201E+02,5.800476E+01,0.000000E+00 +730617,fr,1,3.950000E+00,2.534500E+00,4.531006E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.999441E+01,0.000000E+00 +730632,fr,1,4.150000E+00,2.534500E+00,4.531006E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +730656,fr,1,4.350000E+00,2.534500E+00,4.531006E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +730658,fr,1,4.350000E+00,2.534500E+00,4.531006E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +730764,fr,1,5.250000E+00,2.534500E+00,4.531006E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +731040,fr,4,3.550000E+00,6.563860E+00,4.806941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999326E+01,0.000000E+00 +731041,fr,3,3.550000E+00,6.563860E+00,4.806941E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999326E+01,0.000000E+00 +731042,fr,1,3.550000E+00,6.563860E+00,4.806941E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999326E+01,0.000000E+00 +731046,fr,1,3.550000E+00,6.563860E+00,4.806941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999319E+01,-9.000000E+01 +731049,fr,1,3.550000E+00,6.563860E+00,4.806941E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.999326E+01,0.000000E+00 +731052,fr,4,3.650000E+00,6.563860E+00,4.806941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998799E+01,0.000000E+00 +731064,fr,3,3.750000E+00,6.563860E+00,4.806941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +731065,fr,1,3.750000E+00,6.563860E+00,4.806941E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +731067,fr,2,3.750000E+00,6.563860E+00,4.806941E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.801811E+01,0.000000E+00 +731076,fr,2,3.850000E+00,6.563860E+00,4.806941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +731088,fr,1,3.950000E+00,6.563860E+00,4.806941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999149E+01,0.000000E+00 +731089,fr,2,3.950000E+00,6.563860E+00,4.806941E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999149E+01,0.000000E+00 +731097,fr,1,3.950000E+00,6.563860E+00,4.806941E+01,5.000000E+00,Active Shallow Crust,1.289009E+02,8.999362E+01,0.000000E+00 +731100,fr,3,4.050000E+00,6.563860E+00,4.806941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998863E+01,0.000000E+00 +731101,fr,1,4.050000E+00,6.563860E+00,4.806941E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998863E+01,0.000000E+00 +731103,fr,1,4.050000E+00,6.563860E+00,4.806941E+01,5.000000E+00,Active Shallow Crust,2.400061E+02,5.800613E+01,0.000000E+00 +731106,fr,1,4.050000E+00,6.563860E+00,4.806941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998850E+01,-9.000000E+01 +731125,fr,2,4.250000E+00,6.563860E+00,4.806941E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +731136,fr,2,4.350000E+00,6.563860E+00,4.806941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +731145,fr,1,4.350000E+00,6.563860E+00,4.806941E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.998260E+01,0.000000E+00 +731148,fr,1,4.450000E+00,6.563860E+00,4.806941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +731151,fr,1,4.450000E+00,6.563860E+00,4.806941E+01,5.000000E+00,Active Shallow Crust,2.400058E+02,5.799474E+01,0.000000E+00 +731154,fr,1,4.450000E+00,6.563860E+00,4.806941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,-9.000000E+01 +731155,fr,1,4.450000E+00,6.563860E+00,4.806941E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,-9.000000E+01 +731158,fr,1,4.450000E+00,6.563860E+00,4.806941E+01,1.500000E+01,Active Shallow Crust,1.288920E+02,8.999403E+01,0.000000E+00 +731196,fr,1,4.850000E+00,6.563860E+00,4.806941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +731197,fr,1,4.850000E+00,6.563860E+00,4.806941E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +731215,fr,1,4.950000E+00,6.563860E+00,4.806941E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999048E+01,-9.000000E+01 +731533,fr,1,3.650000E+00,4.880750E+00,4.923980E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998827E+01,0.000000E+00 +731568,fr,1,3.950000E+00,4.880750E+00,4.923980E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999169E+01,0.000000E+00 +732000,fr,5,3.550000E+00,2.925900E+00,4.152708E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998868E+01,0.000000E+00 +732001,fr,1,3.550000E+00,2.925900E+00,4.152708E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998868E+01,0.000000E+00 +732007,fr,1,3.550000E+00,2.925900E+00,4.152708E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998855E+01,-9.000000E+01 +732012,fr,2,3.650000E+00,2.925900E+00,4.152708E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +732013,fr,1,3.650000E+00,2.925900E+00,4.152708E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +732015,fr,1,3.650000E+00,2.925900E+00,4.152708E+01,5.000000E+00,Active Shallow Crust,2.400004E+02,5.801300E+01,0.000000E+00 +732022,fr,1,3.650000E+00,2.925900E+00,4.152708E+01,1.500000E+01,Active Shallow Crust,1.289001E+02,8.996370E+01,0.000000E+00 +732024,fr,5,3.750000E+00,2.925900E+00,4.152708E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +732027,fr,1,3.750000E+00,2.925900E+00,4.152708E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801713E+01,0.000000E+00 +732038,fr,1,3.850000E+00,2.925900E+00,4.152708E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +732060,fr,1,4.050000E+00,2.925900E+00,4.152708E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +732061,fr,1,4.050000E+00,2.925900E+00,4.152708E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +732065,fr,1,4.050000E+00,2.925900E+00,4.152708E+01,2.750000E+01,Active Shallow Crust,2.400051E+02,5.800552E+01,0.000000E+00 +732084,fr,1,4.250000E+00,2.925900E+00,4.152708E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +732087,fr,1,4.250000E+00,2.925900E+00,4.152708E+01,5.000000E+00,Active Shallow Crust,2.400067E+02,5.799388E+01,0.000000E+00 +732096,fr,1,4.350000E+00,2.925900E+00,4.152708E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +732109,fr,1,4.450000E+00,2.925900E+00,4.152708E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +732113,fr,1,4.450000E+00,2.925900E+00,4.152708E+01,2.750000E+01,Active Shallow Crust,2.400039E+02,5.799442E+01,0.000000E+00 +732117,fr,1,4.450000E+00,2.925900E+00,4.152708E+01,5.000000E+00,Active Shallow Crust,1.288932E+02,8.999330E+01,0.000000E+00 +732132,fr,1,4.650000E+00,2.925900E+00,4.152708E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +732135,fr,1,4.650000E+00,2.925900E+00,4.152708E+01,5.000000E+00,Active Shallow Crust,2.400094E+02,5.799385E+01,0.000000E+00 +732144,fr,1,4.750000E+00,2.925900E+00,4.152708E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +732153,fr,1,4.750000E+00,2.925900E+00,4.152708E+01,5.000000E+00,Active Shallow Crust,1.288902E+02,8.998789E+01,0.000000E+00 +732180,fr,1,5.050000E+00,2.925900E+00,4.152708E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +732204,fr,1,5.250000E+00,2.925900E+00,4.152708E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +732481,fr,1,3.550000E+00,5.019600E-01,4.362635E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +732487,fr,1,3.550000E+00,5.019600E-01,4.362635E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +732494,fr,1,3.650000E+00,5.019600E-01,4.362635E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +732495,fr,1,3.650000E+00,5.019600E-01,4.362635E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801287E+01,0.000000E+00 +732504,fr,1,3.750000E+00,5.019600E-01,4.362635E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +732518,fr,1,3.850000E+00,5.019600E-01,4.362635E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +732579,fr,1,4.350000E+00,5.019600E-01,4.362635E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799585E+01,0.000000E+00 +733452,fr,1,3.650000E+00,3.211900E-01,4.845647E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +733458,fr,1,3.650000E+00,3.211900E-01,4.845647E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,-9.000000E+01 +733474,fr,1,3.750000E+00,3.211900E-01,4.845647E+01,1.500000E+01,Active Shallow Crust,1.288964E+02,8.996735E+01,0.000000E+00 +733488,fr,1,3.950000E+00,3.211900E-01,4.845647E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +733512,fr,1,4.150000E+00,3.211900E-01,4.845647E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +733920,fr,4,3.550000E+00,8.816410E+00,4.832159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998659E+01,0.000000E+00 +733921,fr,2,3.550000E+00,8.816410E+00,4.832159E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998659E+01,0.000000E+00 +733923,fr,2,3.550000E+00,8.816410E+00,4.832159E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799830E+01,0.000000E+00 +733924,fr,1,3.550000E+00,8.816410E+00,4.832159E+01,1.500000E+01,Active Shallow Crust,2.400113E+02,5.799830E+01,0.000000E+00 +733926,fr,2,3.550000E+00,8.816410E+00,4.832159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998643E+01,-9.000000E+01 +733932,fr,4,3.650000E+00,8.816410E+00,4.832159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998804E+01,0.000000E+00 +733933,fr,4,3.650000E+00,8.816410E+00,4.832159E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998804E+01,0.000000E+00 +733934,fr,1,3.650000E+00,8.816410E+00,4.832159E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998804E+01,0.000000E+00 +733936,fr,1,3.650000E+00,8.816410E+00,4.832159E+01,1.500000E+01,Active Shallow Crust,2.400005E+02,5.801363E+01,0.000000E+00 +733938,fr,3,3.650000E+00,8.816410E+00,4.832159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998791E+01,-9.000000E+01 +733941,fr,1,3.650000E+00,8.816410E+00,4.832159E+01,5.000000E+00,Active Shallow Crust,1.289031E+02,8.996212E+01,0.000000E+00 +733944,fr,2,3.750000E+00,8.816410E+00,4.832159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +733945,fr,1,3.750000E+00,8.816410E+00,4.832159E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +733947,fr,2,3.750000E+00,8.816410E+00,4.832159E+01,5.000000E+00,Active Shallow Crust,2.400101E+02,5.801583E+01,0.000000E+00 +733953,fr,1,3.750000E+00,8.816410E+00,4.832159E+01,5.000000E+00,Active Shallow Crust,1.288939E+02,8.996752E+01,0.000000E+00 +733956,fr,2,3.850000E+00,8.816410E+00,4.832159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +733957,fr,4,3.850000E+00,8.816410E+00,4.832159E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +733958,fr,1,3.850000E+00,8.816410E+00,4.832159E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +733959,fr,2,3.850000E+00,8.816410E+00,4.832159E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799778E+01,0.000000E+00 +733965,fr,1,3.850000E+00,8.816410E+00,4.832159E+01,5.000000E+00,Active Shallow Crust,1.288979E+02,8.999051E+01,0.000000E+00 +733968,fr,4,3.950000E+00,8.816410E+00,4.832159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999154E+01,0.000000E+00 +733969,fr,2,3.950000E+00,8.816410E+00,4.832159E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999154E+01,0.000000E+00 +733972,fr,1,3.950000E+00,8.816410E+00,4.832159E+01,1.500000E+01,Active Shallow Crust,2.400209E+02,5.800528E+01,0.000000E+00 +733975,fr,1,3.950000E+00,8.816410E+00,4.832159E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999144E+01,-9.000000E+01 +733980,fr,1,4.050000E+00,8.816410E+00,4.832159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999245E+01,0.000000E+00 +733981,fr,1,4.050000E+00,8.816410E+00,4.832159E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999245E+01,0.000000E+00 +733982,fr,1,4.050000E+00,8.816410E+00,4.832159E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999245E+01,0.000000E+00 +733991,fr,1,4.050000E+00,8.816410E+00,4.832159E+01,2.750000E+01,Active Shallow Crust,1.288882E+02,8.999623E+01,0.000000E+00 +733992,fr,2,4.150000E+00,8.816410E+00,4.832159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999328E+01,0.000000E+00 +733998,fr,1,4.150000E+00,8.816410E+00,4.832159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999320E+01,-9.000000E+01 +734001,fr,2,4.150000E+00,8.816410E+00,4.832159E+01,5.000000E+00,Active Shallow Crust,1.288975E+02,8.999328E+01,0.000000E+00 +734004,fr,1,4.250000E+00,8.816410E+00,4.832159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998802E+01,0.000000E+00 +734008,fr,1,4.250000E+00,8.816410E+00,4.832159E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.799442E+01,0.000000E+00 +734019,fr,2,4.350000E+00,8.816410E+00,4.832159E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799664E+01,0.000000E+00 +734028,fr,1,4.450000E+00,8.816410E+00,4.832159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +734029,fr,1,4.450000E+00,8.816410E+00,4.832159E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +734040,fr,2,4.550000E+00,8.816410E+00,4.832159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999152E+01,0.000000E+00 +734051,fr,1,4.550000E+00,8.816410E+00,4.832159E+01,2.750000E+01,Active Shallow Crust,1.288936E+02,8.998575E+01,0.000000E+00 +734052,fr,1,4.650000E+00,8.816410E+00,4.832159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +734073,fr,1,4.750000E+00,8.816410E+00,4.832159E+01,5.000000E+00,Active Shallow Crust,1.288874E+02,8.998868E+01,0.000000E+00 +734076,fr,2,4.850000E+00,8.816410E+00,4.832159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999099E+01,0.000000E+00 +734090,fr,1,4.950000E+00,8.816410E+00,4.832159E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +734094,fr,1,4.950000E+00,8.816410E+00,4.832159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,-9.000000E+01 +734097,fr,1,4.950000E+00,8.816410E+00,4.832159E+01,5.000000E+00,Active Shallow Crust,1.288887E+02,8.999033E+01,0.000000E+00 +734112,fr,1,5.150000E+00,8.816410E+00,4.832159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +734113,fr,1,5.150000E+00,8.816410E+00,4.832159E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +734402,fr,1,3.550000E+00,6.238660E+00,4.439024E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999280E+01,0.000000E+00 +734412,fr,1,3.650000E+00,6.238660E+00,4.439024E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998715E+01,0.000000E+00 +734424,fr,1,3.750000E+00,6.238660E+00,4.439024E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +734425,fr,1,3.750000E+00,6.238660E+00,4.439024E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +734426,fr,1,3.750000E+00,6.238660E+00,4.439024E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +734429,fr,1,3.750000E+00,6.238660E+00,4.439024E+01,2.750000E+01,Active Shallow Crust,2.400089E+02,5.801688E+01,0.000000E+00 +734432,fr,1,3.750000E+00,6.238660E+00,4.439024E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998842E+01,-9.000000E+01 +734439,fr,1,3.850000E+00,6.238660E+00,4.439024E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.799847E+01,0.000000E+00 +734479,fr,1,4.150000E+00,6.238660E+00,4.439024E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998904E+01,-9.000000E+01 +734484,fr,2,4.250000E+00,6.238660E+00,4.439024E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +734500,fr,1,4.350000E+00,6.238660E+00,4.439024E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.799596E+01,0.000000E+00 +734508,fr,1,4.450000E+00,6.238660E+00,4.439024E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +734593,fr,1,5.150000E+00,6.238660E+00,4.439024E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +734880,fr,6,3.550000E+00,7.648500E+00,4.845103E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999331E+01,0.000000E+00 +734881,fr,1,3.550000E+00,7.648500E+00,4.845103E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999331E+01,0.000000E+00 +734883,fr,1,3.550000E+00,7.648500E+00,4.845103E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799905E+01,0.000000E+00 +734886,fr,3,3.550000E+00,7.648500E+00,4.845103E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999323E+01,-9.000000E+01 +734891,fr,1,3.550000E+00,7.648500E+00,4.845103E+01,2.750000E+01,Active Shallow Crust,1.288950E+02,8.999666E+01,0.000000E+00 +734892,fr,1,3.650000E+00,7.648500E+00,4.845103E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +734893,fr,1,3.650000E+00,7.648500E+00,4.845103E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +734901,fr,1,3.650000E+00,7.648500E+00,4.845103E+01,5.000000E+00,Active Shallow Crust,1.288994E+02,8.996356E+01,0.000000E+00 +734904,fr,1,3.750000E+00,7.648500E+00,4.845103E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +734905,fr,2,3.750000E+00,7.648500E+00,4.845103E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +734907,fr,2,3.750000E+00,7.648500E+00,4.845103E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.801755E+01,0.000000E+00 +734913,fr,2,3.750000E+00,7.648500E+00,4.845103E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.996752E+01,0.000000E+00 +734916,fr,1,3.850000E+00,7.648500E+00,4.845103E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +734928,fr,2,3.950000E+00,7.648500E+00,4.845103E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999156E+01,0.000000E+00 +734938,fr,1,3.950000E+00,7.648500E+00,4.845103E+01,1.500000E+01,Active Shallow Crust,1.288998E+02,8.999367E+01,0.000000E+00 +734940,fr,1,4.050000E+00,7.648500E+00,4.845103E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +734943,fr,1,4.050000E+00,7.648500E+00,4.845103E+01,5.000000E+00,Active Shallow Crust,2.400060E+02,5.800617E+01,0.000000E+00 +734952,fr,1,4.150000E+00,7.648500E+00,4.845103E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +734978,fr,1,4.350000E+00,7.648500E+00,4.845103E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +734979,fr,1,4.350000E+00,7.648500E+00,4.845103E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799605E+01,0.000000E+00 +734988,fr,2,4.450000E+00,7.648500E+00,4.845103E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +734990,fr,1,4.450000E+00,7.648500E+00,4.845103E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +734993,fr,1,4.450000E+00,7.648500E+00,4.845103E+01,2.750000E+01,Active Shallow Crust,2.400059E+02,5.799483E+01,0.000000E+00 +735000,fr,1,4.550000E+00,7.648500E+00,4.845103E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +735009,fr,1,4.550000E+00,7.648500E+00,4.845103E+01,5.000000E+00,Active Shallow Crust,1.288936E+02,8.998576E+01,0.000000E+00 +735036,fr,1,4.850000E+00,7.648500E+00,4.845103E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +735040,fr,1,4.850000E+00,7.648500E+00,4.845103E+01,1.500000E+01,Active Shallow Crust,2.400181E+02,5.800244E+01,0.000000E+00 +735062,fr,1,5.050000E+00,7.648500E+00,4.845103E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +735072,fr,1,5.150000E+00,7.648500E+00,4.845103E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +735074,fr,1,5.150000E+00,7.648500E+00,4.845103E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +735084,fr,1,5.250000E+00,7.648500E+00,4.845103E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +735121,fr,1,5.550000E+00,7.648500E+00,4.845103E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +735157,fr,1,5.850000E+00,7.648500E+00,4.845103E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +735361,fr,1,3.550000E+00,3.094130E+00,4.114789E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998861E+01,0.000000E+00 +735384,fr,1,3.750000E+00,3.094130E+00,4.114789E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999095E+01,0.000000E+00 +735396,fr,1,3.850000E+00,3.094130E+00,4.114789E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +735840,fr,6,3.550000E+00,8.558480E+00,4.765558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998641E+01,0.000000E+00 +735841,fr,5,3.550000E+00,8.558480E+00,4.765558E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998641E+01,0.000000E+00 +735843,fr,3,3.550000E+00,8.558480E+00,4.765558E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799821E+01,0.000000E+00 +735844,fr,1,3.550000E+00,8.558480E+00,4.765558E+01,1.500000E+01,Active Shallow Crust,2.400108E+02,5.799821E+01,0.000000E+00 +735845,fr,1,3.550000E+00,8.558480E+00,4.765558E+01,2.750000E+01,Active Shallow Crust,2.400108E+02,5.799811E+01,0.000000E+00 +735848,fr,2,3.550000E+00,8.558480E+00,4.765558E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998626E+01,-9.000000E+01 +735849,fr,1,3.550000E+00,8.558480E+00,4.765558E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999321E+01,0.000000E+00 +735852,fr,10,3.650000E+00,8.558480E+00,4.765558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998789E+01,0.000000E+00 +735853,fr,4,3.650000E+00,8.558480E+00,4.765558E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998789E+01,0.000000E+00 +735854,fr,1,3.650000E+00,8.558480E+00,4.765558E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998789E+01,0.000000E+00 +735855,fr,1,3.650000E+00,8.558480E+00,4.765558E+01,5.000000E+00,Active Shallow Crust,2.399987E+02,5.801473E+01,0.000000E+00 +735856,fr,1,3.650000E+00,8.558480E+00,4.765558E+01,1.500000E+01,Active Shallow Crust,2.399987E+02,5.801473E+01,0.000000E+00 +735858,fr,1,3.650000E+00,8.558480E+00,4.765558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998775E+01,-9.000000E+01 +735862,fr,1,3.650000E+00,8.558480E+00,4.765558E+01,1.500000E+01,Active Shallow Crust,1.289007E+02,8.996355E+01,0.000000E+00 +735864,fr,3,3.750000E+00,8.558480E+00,4.765558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +735865,fr,3,3.750000E+00,8.558480E+00,4.765558E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +735866,fr,1,3.750000E+00,8.558480E+00,4.765558E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +735867,fr,3,3.750000E+00,8.558480E+00,4.765558E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.801685E+01,0.000000E+00 +735870,fr,2,3.750000E+00,8.558480E+00,4.765558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998908E+01,-9.000000E+01 +735876,fr,2,3.850000E+00,8.558480E+00,4.765558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +735877,fr,1,3.850000E+00,8.558480E+00,4.765558E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +735878,fr,1,3.850000E+00,8.558480E+00,4.765558E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +735879,fr,1,3.850000E+00,8.558480E+00,4.765558E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799776E+01,0.000000E+00 +735880,fr,1,3.850000E+00,8.558480E+00,4.765558E+01,1.500000E+01,Active Shallow Crust,2.400107E+02,5.799776E+01,0.000000E+00 +735882,fr,1,3.850000E+00,8.558480E+00,4.765558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,-9.000000E+01 +735885,fr,1,3.850000E+00,8.558480E+00,4.765558E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.999039E+01,0.000000E+00 +735886,fr,1,3.850000E+00,8.558480E+00,4.765558E+01,1.500000E+01,Active Shallow Crust,1.288966E+02,8.999039E+01,0.000000E+00 +735887,fr,1,3.850000E+00,8.558480E+00,4.765558E+01,2.750000E+01,Active Shallow Crust,1.288966E+02,8.999039E+01,0.000000E+00 +735888,fr,5,3.950000E+00,8.558480E+00,4.765558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +735889,fr,1,3.950000E+00,8.558480E+00,4.765558E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +735890,fr,2,3.950000E+00,8.558480E+00,4.765558E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +735891,fr,3,3.950000E+00,8.558480E+00,4.765558E+01,5.000000E+00,Active Shallow Crust,2.400195E+02,5.800526E+01,0.000000E+00 +735893,fr,1,3.950000E+00,8.558480E+00,4.765558E+01,2.750000E+01,Active Shallow Crust,2.400195E+02,5.800526E+01,0.000000E+00 +735894,fr,1,3.950000E+00,8.558480E+00,4.765558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999133E+01,-9.000000E+01 +735900,fr,2,4.050000E+00,8.558480E+00,4.765558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999236E+01,0.000000E+00 +735901,fr,1,4.050000E+00,8.558480E+00,4.765558E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999236E+01,0.000000E+00 +735906,fr,1,4.050000E+00,8.558480E+00,4.765558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999227E+01,-9.000000E+01 +735909,fr,2,4.050000E+00,8.558480E+00,4.765558E+01,5.000000E+00,Active Shallow Crust,1.288891E+02,8.999618E+01,0.000000E+00 +735910,fr,2,4.050000E+00,8.558480E+00,4.765558E+01,1.500000E+01,Active Shallow Crust,1.288891E+02,8.999618E+01,0.000000E+00 +735912,fr,3,4.150000E+00,8.558480E+00,4.765558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999319E+01,0.000000E+00 +735913,fr,4,4.150000E+00,8.558480E+00,4.765558E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999319E+01,0.000000E+00 +735915,fr,2,4.150000E+00,8.558480E+00,4.765558E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799763E+01,0.000000E+00 +735917,fr,1,4.150000E+00,8.558480E+00,4.765558E+01,2.750000E+01,Active Shallow Crust,2.400087E+02,5.799761E+01,0.000000E+00 +735925,fr,1,4.250000E+00,8.558480E+00,4.765558E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998786E+01,0.000000E+00 +735927,fr,1,4.250000E+00,8.558480E+00,4.765558E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.799314E+01,0.000000E+00 +735930,fr,1,4.250000E+00,8.558480E+00,4.765558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998772E+01,-9.000000E+01 +735936,fr,2,4.350000E+00,8.558480E+00,4.765558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +735943,fr,1,4.350000E+00,8.558480E+00,4.765558E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998906E+01,-9.000000E+01 +735947,fr,1,4.350000E+00,8.558480E+00,4.765558E+01,2.750000E+01,Active Shallow Crust,1.288970E+02,8.998306E+01,0.000000E+00 +735948,fr,2,4.450000E+00,8.558480E+00,4.765558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +735949,fr,1,4.450000E+00,8.558480E+00,4.765558E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +735951,fr,1,4.450000E+00,8.558480E+00,4.765558E+01,5.000000E+00,Active Shallow Crust,2.400057E+02,5.799424E+01,0.000000E+00 +735954,fr,1,4.450000E+00,8.558480E+00,4.765558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,-9.000000E+01 +735957,fr,1,4.450000E+00,8.558480E+00,4.765558E+01,5.000000E+00,Active Shallow Crust,1.288916E+02,8.999277E+01,0.000000E+00 +735960,fr,2,4.550000E+00,8.558480E+00,4.765558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999141E+01,0.000000E+00 +735961,fr,1,4.550000E+00,8.558480E+00,4.765558E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999141E+01,0.000000E+00 +735963,fr,2,4.550000E+00,8.558480E+00,4.765558E+01,5.000000E+00,Active Shallow Crust,2.400096E+02,5.799736E+01,0.000000E+00 +735966,fr,1,4.550000E+00,8.558480E+00,4.765558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999131E+01,-9.000000E+01 +735975,fr,1,4.650000E+00,8.558480E+00,4.765558E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799436E+01,0.000000E+00 +735984,fr,2,4.750000E+00,8.558480E+00,4.765558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +735993,fr,1,4.750000E+00,8.558480E+00,4.765558E+01,5.000000E+00,Active Shallow Crust,1.288882E+02,8.998865E+01,0.000000E+00 +735996,fr,1,4.850000E+00,8.558480E+00,4.765558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +736002,fr,1,4.850000E+00,8.558480E+00,4.765558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999077E+01,-9.000000E+01 +736014,fr,1,4.950000E+00,8.558480E+00,4.765558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998903E+01,-9.000000E+01 +736022,fr,1,5.050000E+00,8.558480E+00,4.765558E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +736093,fr,1,5.650000E+00,8.558480E+00,4.765558E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +736166,fr,1,6.250000E+00,8.558480E+00,4.765558E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +736320,fr,1,3.550000E+00,4.705400E-01,4.579076E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +736321,fr,1,3.550000E+00,4.705400E-01,4.579076E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +736322,fr,1,3.550000E+00,4.705400E-01,4.579076E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +736326,fr,1,3.550000E+00,4.705400E-01,4.579076E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,-9.000000E+01 +736332,fr,3,3.650000E+00,4.705400E-01,4.579076E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +736333,fr,3,3.650000E+00,4.705400E-01,4.579076E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +736356,fr,1,3.850000E+00,4.705400E-01,4.579076E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +736368,fr,1,3.950000E+00,4.705400E-01,4.579076E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +736381,fr,1,4.050000E+00,4.705400E-01,4.579076E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +736392,fr,1,4.150000E+00,4.705400E-01,4.579076E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +736416,fr,2,4.350000E+00,4.705400E-01,4.579076E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +736417,fr,1,4.350000E+00,4.705400E-01,4.579076E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +736429,fr,1,4.450000E+00,4.705400E-01,4.579076E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +736432,fr,1,4.450000E+00,4.705400E-01,4.579076E+01,1.500000E+01,Active Shallow Crust,2.400051E+02,5.799463E+01,0.000000E+00 +736800,fr,1,3.550000E+00,1.008550E+00,4.569562E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +736831,fr,1,3.750000E+00,1.008550E+00,4.569562E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +736860,fr,1,4.050000E+00,1.008550E+00,4.569562E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +736877,fr,1,4.150000E+00,1.008550E+00,4.569562E+01,2.750000E+01,Active Shallow Crust,2.400083E+02,5.799724E+01,0.000000E+00 +736881,fr,1,4.150000E+00,1.008550E+00,4.569562E+01,5.000000E+00,Active Shallow Crust,1.288978E+02,8.999382E+01,0.000000E+00 +737016,fr,1,5.350000E+00,1.008550E+00,4.569562E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +737281,fr,1,3.550000E+00,-3.373400E-01,4.613296E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +737283,fr,1,3.550000E+00,-3.373400E-01,4.613296E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799817E+01,0.000000E+00 +737289,fr,1,3.550000E+00,-3.373400E-01,4.613296E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999389E+01,0.000000E+00 +737293,fr,1,3.650000E+00,-3.373400E-01,4.613296E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +737302,fr,1,3.650000E+00,-3.373400E-01,4.613296E+01,1.500000E+01,Active Shallow Crust,1.289004E+02,8.996352E+01,0.000000E+00 +737307,fr,2,3.750000E+00,-3.373400E-01,4.613296E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801757E+01,0.000000E+00 +737316,fr,1,3.850000E+00,-3.373400E-01,4.613296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +737322,fr,1,3.850000E+00,-3.373400E-01,4.613296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +737334,fr,1,3.950000E+00,-3.373400E-01,4.613296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +737340,fr,1,4.050000E+00,-3.373400E-01,4.613296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +737349,fr,1,4.050000E+00,-3.373400E-01,4.613296E+01,5.000000E+00,Active Shallow Crust,1.288906E+02,8.999361E+01,0.000000E+00 +737352,fr,2,4.150000E+00,-3.373400E-01,4.613296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +737365,fr,1,4.250000E+00,-3.373400E-01,4.613296E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +737424,fr,1,4.750000E+00,-3.373400E-01,4.613296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +737436,fr,1,4.850000E+00,-3.373400E-01,4.613296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +737760,fr,2,3.550000E+00,2.593350E+00,4.609822E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +737761,fr,2,3.550000E+00,2.593350E+00,4.609822E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +737763,fr,2,3.550000E+00,2.593350E+00,4.609822E+01,5.000000E+00,Active Shallow Crust,2.400115E+02,5.799837E+01,0.000000E+00 +737772,fr,3,3.650000E+00,2.593350E+00,4.609822E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +737776,fr,1,3.650000E+00,2.593350E+00,4.609822E+01,1.500000E+01,Active Shallow Crust,2.400008E+02,5.801281E+01,0.000000E+00 +737777,fr,1,3.650000E+00,2.593350E+00,4.609822E+01,2.750000E+01,Active Shallow Crust,2.400008E+02,5.801272E+01,0.000000E+00 +737779,fr,1,3.650000E+00,2.593350E+00,4.609822E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,-9.000000E+01 +737788,fr,1,3.750000E+00,2.593350E+00,4.609822E+01,1.500000E+01,Active Shallow Crust,2.400087E+02,5.801741E+01,0.000000E+00 +737790,fr,1,3.750000E+00,2.593350E+00,4.609822E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998876E+01,-9.000000E+01 +737793,fr,1,3.750000E+00,2.593350E+00,4.609822E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.996722E+01,0.000000E+00 +737796,fr,2,3.850000E+00,2.593350E+00,4.609822E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +737798,fr,1,3.850000E+00,2.593350E+00,4.609822E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +737799,fr,1,3.850000E+00,2.593350E+00,4.609822E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799760E+01,0.000000E+00 +737810,fr,1,3.950000E+00,2.593350E+00,4.609822E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998897E+01,0.000000E+00 +737814,fr,1,3.950000E+00,2.593350E+00,4.609822E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,-9.000000E+01 +737850,fr,1,4.250000E+00,2.593350E+00,4.609822E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,-9.000000E+01 +737928,fr,1,4.950000E+00,2.593350E+00,4.609822E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +738014,fr,1,5.650000E+00,2.593350E+00,4.609822E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +738241,fr,1,3.550000E+00,3.727130E+00,4.404964E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998913E+01,0.000000E+00 +738252,fr,1,3.650000E+00,3.727130E+00,4.404964E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +738276,fr,1,3.850000E+00,3.727130E+00,4.404964E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +738280,fr,1,3.850000E+00,3.727130E+00,4.404964E+01,1.500000E+01,Active Shallow Crust,2.400108E+02,5.799757E+01,0.000000E+00 +738285,fr,1,3.850000E+00,3.727130E+00,4.404964E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999358E+01,0.000000E+00 +738288,fr,1,3.950000E+00,3.727130E+00,4.404964E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999085E+01,0.000000E+00 +738296,fr,1,3.950000E+00,3.727130E+00,4.404964E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,-9.000000E+01 +738336,fr,1,4.350000E+00,3.727130E+00,4.404964E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +738339,fr,1,4.350000E+00,3.727130E+00,4.404964E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799593E+01,0.000000E+00 +739200,fr,2,3.550000E+00,-1.034050E+00,4.863437E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +739201,fr,2,3.550000E+00,-1.034050E+00,4.863437E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +739212,fr,2,3.650000E+00,-1.034050E+00,4.863437E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +739236,fr,1,3.850000E+00,-1.034050E+00,4.863437E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +739260,fr,1,4.050000E+00,-1.034050E+00,4.863437E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +739262,fr,1,4.050000E+00,-1.034050E+00,4.863437E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +739264,fr,1,4.050000E+00,-1.034050E+00,4.863437E+01,1.500000E+01,Active Shallow Crust,2.400065E+02,5.800578E+01,0.000000E+00 +739272,fr,1,4.150000E+00,-1.034050E+00,4.863437E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +739284,fr,1,4.250000E+00,-1.034050E+00,4.863437E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +739302,fr,1,4.350000E+00,-1.034050E+00,4.863437E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +739369,fr,1,4.950000E+00,-1.034050E+00,4.863437E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +739680,fr,1,3.550000E+00,-1.646070E+00,4.670076E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +739681,fr,1,3.550000E+00,-1.646070E+00,4.670076E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +739683,fr,1,3.550000E+00,-1.646070E+00,4.670076E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799796E+01,0.000000E+00 +739689,fr,1,3.550000E+00,-1.646070E+00,4.670076E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999309E+01,0.000000E+00 +739692,fr,2,3.650000E+00,-1.646070E+00,4.670076E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +739695,fr,1,3.650000E+00,-1.646070E+00,4.670076E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801294E+01,0.000000E+00 +739698,fr,1,3.650000E+00,-1.646070E+00,4.670076E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,-9.000000E+01 +739722,fr,1,3.850000E+00,-1.646070E+00,4.670076E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +739753,fr,1,4.150000E+00,-1.646070E+00,4.670076E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +739815,fr,1,4.650000E+00,-1.646070E+00,4.670076E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799429E+01,0.000000E+00 +739821,fr,1,4.650000E+00,-1.646070E+00,4.670076E+01,5.000000E+00,Active Shallow Crust,1.288911E+02,8.998698E+01,0.000000E+00 +740172,fr,1,3.650000E+00,4.043000E-02,5.015688E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +740196,fr,1,3.850000E+00,4.043000E-02,5.015688E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +740221,fr,1,4.050000E+00,4.043000E-02,5.015688E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +740245,fr,1,4.250000E+00,4.043000E-02,5.015688E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +740280,fr,1,4.550000E+00,4.043000E-02,5.015688E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +740649,fr,1,3.550000E+00,-6.423890E+00,4.743295E+01,5.000000E+00,Active Shallow Crust,1.288949E+02,8.999659E+01,0.000000E+00 +741120,fr,2,3.550000E+00,-1.364570E+00,4.330654E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +741121,fr,1,3.550000E+00,-1.364570E+00,4.330654E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +741123,fr,2,3.550000E+00,-1.364570E+00,4.330654E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799799E+01,0.000000E+00 +741129,fr,2,3.550000E+00,-1.364570E+00,4.330654E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999358E+01,0.000000E+00 +741144,fr,2,3.750000E+00,-1.364570E+00,4.330654E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +741145,fr,2,3.750000E+00,-1.364570E+00,4.330654E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +741147,fr,1,3.750000E+00,-1.364570E+00,4.330654E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801746E+01,0.000000E+00 +741150,fr,1,3.750000E+00,-1.364570E+00,4.330654E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +741154,fr,1,3.750000E+00,-1.364570E+00,4.330654E+01,1.500000E+01,Active Shallow Crust,1.288968E+02,8.996730E+01,0.000000E+00 +741156,fr,1,3.850000E+00,-1.364570E+00,4.330654E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +741157,fr,2,3.850000E+00,-1.364570E+00,4.330654E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +741165,fr,1,3.850000E+00,-1.364570E+00,4.330654E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999351E+01,0.000000E+00 +741170,fr,1,3.950000E+00,-1.364570E+00,4.330654E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +741174,fr,1,3.950000E+00,-1.364570E+00,4.330654E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,-9.000000E+01 +741180,fr,2,4.050000E+00,-1.364570E+00,4.330654E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +741186,fr,1,4.050000E+00,-1.364570E+00,4.330654E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,-9.000000E+01 +741192,fr,1,4.150000E+00,-1.364570E+00,4.330654E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +741213,fr,1,4.250000E+00,-1.364570E+00,4.330654E+01,5.000000E+00,Active Shallow Crust,1.288948E+02,8.998096E+01,0.000000E+00 +741216,fr,1,4.350000E+00,-1.364570E+00,4.330654E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +741223,fr,1,4.350000E+00,-1.364570E+00,4.330654E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +741258,fr,2,4.650000E+00,-1.364570E+00,4.330654E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +741265,fr,1,4.750000E+00,-1.364570E+00,4.330654E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +741294,fr,1,4.950000E+00,-1.364570E+00,4.330654E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +741300,fr,1,5.050000E+00,-1.364570E+00,4.330654E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +741312,fr,1,5.150000E+00,-1.364570E+00,4.330654E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +741600,fr,1,3.550000E+00,2.661800E+00,4.242559E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998884E+01,0.000000E+00 +741601,fr,1,3.550000E+00,2.661800E+00,4.242559E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998884E+01,0.000000E+00 +741609,fr,1,3.550000E+00,2.661800E+00,4.242559E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.999255E+01,0.000000E+00 +741615,fr,1,3.650000E+00,2.661800E+00,4.242559E+01,5.000000E+00,Active Shallow Crust,2.400004E+02,5.801246E+01,0.000000E+00 +741624,fr,2,3.750000E+00,2.661800E+00,4.242559E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999113E+01,0.000000E+00 +741625,fr,1,3.750000E+00,2.661800E+00,4.242559E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999113E+01,0.000000E+00 +741636,fr,1,3.850000E+00,2.661800E+00,4.242559E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +741637,fr,1,3.850000E+00,2.661800E+00,4.242559E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +741650,fr,1,3.950000E+00,2.661800E+00,4.242559E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999061E+01,0.000000E+00 +741654,fr,1,3.950000E+00,2.661800E+00,4.242559E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999050E+01,-9.000000E+01 +741661,fr,1,4.050000E+00,2.661800E+00,4.242559E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +741662,fr,1,4.050000E+00,2.661800E+00,4.242559E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +741663,fr,1,4.050000E+00,2.661800E+00,4.242559E+01,5.000000E+00,Active Shallow Crust,2.400056E+02,5.800567E+01,0.000000E+00 +741664,fr,1,4.050000E+00,2.661800E+00,4.242559E+01,1.500000E+01,Active Shallow Crust,2.400056E+02,5.800564E+01,0.000000E+00 +741707,fr,1,4.350000E+00,2.661800E+00,4.242559E+01,2.750000E+01,Active Shallow Crust,1.288988E+02,8.998261E+01,0.000000E+00 +741708,fr,1,4.450000E+00,2.661800E+00,4.242559E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +741769,fr,1,4.950000E+00,2.661800E+00,4.242559E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +742113,fr,1,3.750000E+00,4.205870E+00,4.976840E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.996754E+01,0.000000E+00 +742129,fr,1,3.950000E+00,4.205870E+00,4.976840E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999178E+01,0.000000E+00 +742140,fr,1,4.050000E+00,4.205870E+00,4.976840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +742560,fr,1,3.550000E+00,3.508530E+00,4.467595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +742572,fr,1,3.650000E+00,3.508530E+00,4.467595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +742575,fr,1,3.650000E+00,3.508530E+00,4.467595E+01,5.000000E+00,Active Shallow Crust,2.400002E+02,5.801338E+01,0.000000E+00 +742577,fr,1,3.650000E+00,3.508530E+00,4.467595E+01,2.750000E+01,Active Shallow Crust,2.400002E+02,5.801330E+01,0.000000E+00 +742584,fr,1,3.750000E+00,3.508530E+00,4.467595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998861E+01,0.000000E+00 +742591,fr,1,3.750000E+00,3.508530E+00,4.467595E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999136E+01,-9.000000E+01 +742596,fr,1,3.850000E+00,3.508530E+00,4.467595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +742597,fr,1,3.850000E+00,3.508530E+00,4.467595E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +742620,fr,1,4.050000E+00,3.508530E+00,4.467595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +742621,fr,1,4.050000E+00,3.508530E+00,4.467595E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +742632,fr,1,4.150000E+00,3.508530E+00,4.467595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998922E+01,0.000000E+00 +742638,fr,1,4.150000E+00,3.508530E+00,4.467595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998909E+01,-9.000000E+01 +742677,fr,1,4.450000E+00,3.508530E+00,4.467595E+01,5.000000E+00,Active Shallow Crust,1.288923E+02,8.999428E+01,0.000000E+00 +743052,fr,1,3.650000E+00,-1.582140E+00,5.032503E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +743127,fr,1,4.250000E+00,-1.582140E+00,5.032503E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799429E+01,0.000000E+00 +744005,fr,1,3.550000E+00,1.484000E-02,5.120128E+01,2.750000E+01,Active Shallow Crust,2.400127E+02,5.799815E+01,0.000000E+00 +744016,fr,1,3.650000E+00,1.484000E-02,5.120128E+01,1.500000E+01,Active Shallow Crust,2.400016E+02,5.801299E+01,0.000000E+00 +744480,fr,3,3.550000E+00,4.585140E+00,4.652627E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999306E+01,0.000000E+00 +744481,fr,1,3.550000E+00,4.585140E+00,4.652627E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999306E+01,0.000000E+00 +744493,fr,1,3.650000E+00,4.585140E+00,4.652627E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998763E+01,0.000000E+00 +744499,fr,1,3.650000E+00,4.585140E+00,4.652627E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998749E+01,-9.000000E+01 +744505,fr,1,3.750000E+00,4.585140E+00,4.652627E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +744507,fr,1,3.750000E+00,4.585140E+00,4.652627E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.801791E+01,0.000000E+00 +744516,fr,1,3.850000E+00,4.585140E+00,4.652627E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +744517,fr,1,3.850000E+00,4.585140E+00,4.652627E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +744519,fr,1,3.850000E+00,4.585140E+00,4.652627E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.799725E+01,0.000000E+00 +744543,fr,1,4.050000E+00,4.585140E+00,4.652627E+01,5.000000E+00,Active Shallow Crust,2.400062E+02,5.800572E+01,0.000000E+00 +744546,fr,1,4.050000E+00,4.585140E+00,4.652627E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998816E+01,-9.000000E+01 +744551,fr,1,4.050000E+00,4.585140E+00,4.652627E+01,2.750000E+01,Active Shallow Crust,1.288906E+02,8.999415E+01,0.000000E+00 +744648,fr,1,4.950000E+00,4.585140E+00,4.652627E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +744650,fr,1,4.950000E+00,4.585140E+00,4.652627E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +744732,fr,1,5.650000E+00,4.585140E+00,4.652627E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +744972,fr,1,3.650000E+00,-2.101000E-01,5.119054E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +744984,fr,1,3.750000E+00,-2.101000E-01,5.119054E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +744996,fr,1,3.850000E+00,-2.101000E-01,5.119054E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +745021,fr,1,4.050000E+00,-2.101000E-01,5.119054E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +745524,fr,1,4.250000E+00,-6.881250E+00,4.875947E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999109E+01,0.000000E+00 +745921,fr,1,3.550000E+00,3.661070E+00,5.018407E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +745932,fr,1,3.650000E+00,3.661070E+00,5.018407E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999137E+01,0.000000E+00 +745944,fr,1,3.750000E+00,3.661070E+00,5.018407E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +745956,fr,2,3.850000E+00,3.661070E+00,5.018407E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +746004,fr,1,4.250000E+00,3.661070E+00,5.018407E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +746400,fr,3,3.550000E+00,8.277710E+00,4.633268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998608E+01,0.000000E+00 +746401,fr,2,3.550000E+00,8.277710E+00,4.633268E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998608E+01,0.000000E+00 +746406,fr,1,3.550000E+00,8.277710E+00,4.633268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998592E+01,-9.000000E+01 +746424,fr,1,3.750000E+00,8.277710E+00,4.633268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998894E+01,0.000000E+00 +746437,fr,1,3.850000E+00,8.277710E+00,4.633268E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +746449,fr,1,3.950000E+00,8.277710E+00,4.633268E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999121E+01,0.000000E+00 +746460,fr,1,4.050000E+00,8.277710E+00,4.633268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999217E+01,0.000000E+00 +746472,fr,1,4.150000E+00,8.277710E+00,4.633268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999302E+01,0.000000E+00 +746604,fr,1,5.250000E+00,8.277710E+00,4.633268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +746880,fr,3,3.550000E+00,8.090870E+00,4.605179E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998600E+01,0.000000E+00 +746882,fr,1,3.550000E+00,8.090870E+00,4.605179E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998600E+01,0.000000E+00 +746892,fr,2,3.650000E+00,8.090870E+00,4.605179E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998753E+01,0.000000E+00 +746904,fr,2,3.750000E+00,8.090870E+00,4.605179E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +746907,fr,1,3.750000E+00,8.090870E+00,4.605179E+01,5.000000E+00,Active Shallow Crust,2.400101E+02,5.801729E+01,0.000000E+00 +746908,fr,1,3.750000E+00,8.090870E+00,4.605179E+01,1.500000E+01,Active Shallow Crust,2.400101E+02,5.801729E+01,0.000000E+00 +746910,fr,1,3.750000E+00,8.090870E+00,4.605179E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998875E+01,-9.000000E+01 +746928,fr,1,3.950000E+00,8.090870E+00,4.605179E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +746932,fr,1,3.950000E+00,8.090870E+00,4.605179E+01,1.500000E+01,Active Shallow Crust,2.400208E+02,5.800482E+01,0.000000E+00 +746940,fr,1,4.050000E+00,8.090870E+00,4.605179E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999213E+01,0.000000E+00 +746941,fr,1,4.050000E+00,8.090870E+00,4.605179E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999213E+01,0.000000E+00 +746944,fr,1,4.050000E+00,8.090870E+00,4.605179E+01,1.500000E+01,Active Shallow Crust,2.400046E+02,5.800642E+01,0.000000E+00 +746946,fr,1,4.050000E+00,8.090870E+00,4.605179E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999203E+01,-9.000000E+01 +746955,fr,2,4.150000E+00,8.090870E+00,4.605179E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799730E+01,0.000000E+00 +747061,fr,1,5.050000E+00,8.090870E+00,4.605179E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +747363,fr,1,3.550000E+00,1.202100E-01,5.029217E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799825E+01,0.000000E+00 +747372,fr,2,3.650000E+00,1.202100E-01,5.029217E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +747374,fr,1,3.650000E+00,1.202100E-01,5.029217E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +747384,fr,1,3.750000E+00,1.202100E-01,5.029217E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +747387,fr,1,3.750000E+00,1.202100E-01,5.029217E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.801766E+01,0.000000E+00 +747398,fr,1,3.850000E+00,1.202100E-01,5.029217E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +747403,fr,1,3.850000E+00,1.202100E-01,5.029217E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +747433,fr,2,4.150000E+00,1.202100E-01,5.029217E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +747555,fr,1,5.150000E+00,1.202100E-01,5.029217E+01,5.000000E+00,Active Shallow Crust,2.400220E+02,5.800040E+01,0.000000E+00 +747840,fr,1,3.550000E+00,5.316350E+00,4.610819E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999301E+01,0.000000E+00 +747841,fr,1,3.550000E+00,5.316350E+00,4.610819E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999301E+01,0.000000E+00 +747852,fr,2,3.650000E+00,5.316350E+00,4.610819E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998754E+01,0.000000E+00 +747853,fr,1,3.650000E+00,5.316350E+00,4.610819E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998754E+01,0.000000E+00 +747858,fr,1,3.650000E+00,5.316350E+00,4.610819E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998740E+01,-9.000000E+01 +747864,fr,2,3.750000E+00,5.316350E+00,4.610819E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998889E+01,0.000000E+00 +747867,fr,1,3.750000E+00,5.316350E+00,4.610819E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.801680E+01,0.000000E+00 +747873,fr,1,3.750000E+00,5.316350E+00,4.610819E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.996748E+01,0.000000E+00 +747912,fr,1,4.150000E+00,5.316350E+00,4.610819E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +747915,fr,1,4.150000E+00,5.316350E+00,4.610819E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799719E+01,0.000000E+00 +747918,fr,1,4.150000E+00,5.316350E+00,4.610819E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,-9.000000E+01 +747924,fr,1,4.250000E+00,5.316350E+00,4.610819E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +747960,fr,1,4.550000E+00,5.316350E+00,4.610819E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +748320,fr,3,3.550000E+00,2.932720E+00,4.602241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +748322,fr,1,3.550000E+00,2.932720E+00,4.602241E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +748323,fr,2,3.550000E+00,2.932720E+00,4.602241E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799844E+01,0.000000E+00 +748325,fr,1,3.550000E+00,2.932720E+00,4.602241E+01,2.750000E+01,Active Shallow Crust,2.400123E+02,5.799834E+01,0.000000E+00 +748332,fr,3,3.650000E+00,2.932720E+00,4.602241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +748335,fr,1,3.650000E+00,2.932720E+00,4.602241E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801256E+01,0.000000E+00 +748336,fr,1,3.650000E+00,2.932720E+00,4.602241E+01,1.500000E+01,Active Shallow Crust,2.400014E+02,5.801256E+01,0.000000E+00 +748341,fr,1,3.650000E+00,2.932720E+00,4.602241E+01,5.000000E+00,Active Shallow Crust,1.288996E+02,8.996352E+01,0.000000E+00 +748344,fr,1,3.750000E+00,2.932720E+00,4.602241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +748345,fr,1,3.750000E+00,2.932720E+00,4.602241E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +748350,fr,1,3.750000E+00,2.932720E+00,4.602241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998875E+01,-9.000000E+01 +748353,fr,1,3.750000E+00,2.932720E+00,4.602241E+01,5.000000E+00,Active Shallow Crust,1.288973E+02,8.996722E+01,0.000000E+00 +748356,fr,4,3.850000E+00,2.932720E+00,4.602241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +748367,fr,2,3.850000E+00,2.932720E+00,4.602241E+01,2.750000E+01,Active Shallow Crust,1.288956E+02,8.999380E+01,0.000000E+00 +748368,fr,1,3.950000E+00,2.932720E+00,4.602241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +748370,fr,1,3.950000E+00,2.932720E+00,4.602241E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +748377,fr,1,3.950000E+00,2.932720E+00,4.602241E+01,5.000000E+00,Active Shallow Crust,1.289000E+02,8.999337E+01,0.000000E+00 +748380,fr,1,4.050000E+00,2.932720E+00,4.602241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +748416,fr,1,4.350000E+00,2.932720E+00,4.602241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +748536,fr,1,5.350000E+00,2.932720E+00,4.602241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +748802,fr,1,3.550000E+00,5.199000E-02,5.198102E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +748848,fr,1,3.950000E+00,5.199000E-02,5.198102E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +749280,fr,1,3.550000E+00,3.624000E+00,4.283872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +749295,fr,1,3.650000E+00,3.624000E+00,4.283872E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801314E+01,0.000000E+00 +749307,fr,1,3.750000E+00,3.624000E+00,4.283872E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801732E+01,0.000000E+00 +749313,fr,1,3.750000E+00,3.624000E+00,4.283872E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.996743E+01,0.000000E+00 +749321,fr,1,3.850000E+00,3.624000E+00,4.283872E+01,2.750000E+01,Active Shallow Crust,2.400104E+02,5.799780E+01,0.000000E+00 +749329,fr,1,3.950000E+00,3.624000E+00,4.283872E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999067E+01,0.000000E+00 +749437,fr,1,4.850000E+00,3.624000E+00,4.283872E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +749773,fr,1,3.650000E+00,5.363730E+00,4.714832E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998778E+01,0.000000E+00 +749774,fr,1,3.650000E+00,5.363730E+00,4.714832E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998778E+01,0.000000E+00 +749796,fr,1,3.850000E+00,5.363730E+00,4.714832E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +749808,fr,1,3.950000E+00,5.363730E+00,4.714832E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999135E+01,0.000000E+00 +749821,fr,1,4.050000E+00,5.363730E+00,4.714832E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +749825,fr,1,4.050000E+00,5.363730E+00,4.714832E+01,2.750000E+01,Active Shallow Crust,2.400052E+02,5.800620E+01,0.000000E+00 +749858,fr,1,4.350000E+00,5.363730E+00,4.714832E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +749866,fr,1,4.350000E+00,5.363730E+00,4.714832E+01,1.500000E+01,Active Shallow Crust,1.288970E+02,8.998304E+01,0.000000E+00 +749880,fr,1,4.550000E+00,5.363730E+00,4.714832E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +749916,fr,1,4.850000E+00,5.363730E+00,4.714832E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +750255,fr,1,3.650000E+00,-1.013830E+00,4.403002E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801294E+01,0.000000E+00 +750288,fr,1,3.950000E+00,-1.013830E+00,4.403002E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +750345,fr,1,4.350000E+00,-1.013830E+00,4.403002E+01,5.000000E+00,Active Shallow Crust,1.288984E+02,8.998281E+01,0.000000E+00 +750360,fr,1,4.550000E+00,-1.013830E+00,4.403002E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +750472,fr,1,5.450000E+00,-1.013830E+00,4.403002E+01,1.500000E+01,Active Shallow Crust,2.400269E+02,5.799813E+01,0.000000E+00 +750784,fr,1,4.050000E+00,-7.983200E-01,4.212711E+01,1.500000E+01,Active Shallow Crust,2.400053E+02,5.800573E+01,0.000000E+00 +750843,fr,1,4.550000E+00,-7.983200E-01,4.212711E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799712E+01,0.000000E+00 +750900,fr,1,5.050000E+00,-7.983200E-01,4.212711E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +751200,fr,1,3.550000E+00,2.159170E+00,5.115308E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +751208,fr,1,3.550000E+00,2.159170E+00,5.115308E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999040E+01,-9.000000E+01 +751209,fr,1,3.550000E+00,2.159170E+00,5.115308E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.999368E+01,0.000000E+00 +751224,fr,1,3.750000E+00,2.159170E+00,5.115308E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +751233,fr,1,3.750000E+00,2.159170E+00,5.115308E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.996735E+01,0.000000E+00 +751238,fr,1,3.850000E+00,2.159170E+00,5.115308E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +751245,fr,1,3.850000E+00,2.159170E+00,5.115308E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.999329E+01,0.000000E+00 +751285,fr,1,4.250000E+00,2.159170E+00,5.115308E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +751320,fr,1,4.550000E+00,2.159170E+00,5.115308E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +751686,fr,1,3.550000E+00,3.778270E+00,4.070658E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998840E+01,-9.000000E+01 +751758,fr,1,4.150000E+00,3.778270E+00,4.070658E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,-9.000000E+01 +751765,fr,1,4.250000E+00,3.778270E+00,4.070658E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +751802,fr,1,4.550000E+00,3.778270E+00,4.070658E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +752172,fr,1,3.650000E+00,5.679340E+00,4.312168E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998688E+01,0.000000E+00 +752182,fr,1,3.650000E+00,5.679340E+00,4.312168E+01,1.500000E+01,Active Shallow Crust,1.289017E+02,8.996346E+01,0.000000E+00 +752187,fr,1,3.750000E+00,5.679340E+00,4.312168E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.801775E+01,0.000000E+00 +752202,fr,1,3.850000E+00,5.679340E+00,4.312168E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,-9.000000E+01 +752224,fr,1,4.050000E+00,5.679340E+00,4.312168E+01,1.500000E+01,Active Shallow Crust,2.400052E+02,5.800608E+01,0.000000E+00 +752341,fr,1,5.050000E+00,5.679340E+00,4.312168E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +752640,fr,1,3.550000E+00,-5.729700E-01,4.946273E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +752641,fr,2,3.550000E+00,-5.729700E-01,4.946273E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +752642,fr,1,3.550000E+00,-5.729700E-01,4.946273E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +752643,fr,1,3.550000E+00,-5.729700E-01,4.946273E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799820E+01,0.000000E+00 +752644,fr,1,3.550000E+00,-5.729700E-01,4.946273E+01,1.500000E+01,Active Shallow Crust,2.400125E+02,5.799820E+01,0.000000E+00 +752647,fr,1,3.550000E+00,-5.729700E-01,4.946273E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +752655,fr,1,3.650000E+00,-5.729700E-01,4.946273E+01,5.000000E+00,Active Shallow Crust,2.400015E+02,5.801291E+01,0.000000E+00 +752663,fr,1,3.650000E+00,-5.729700E-01,4.946273E+01,2.750000E+01,Active Shallow Crust,1.289001E+02,8.996352E+01,0.000000E+00 +752664,fr,2,3.750000E+00,-5.729700E-01,4.946273E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +752665,fr,1,3.750000E+00,-5.729700E-01,4.946273E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +752666,fr,1,3.750000E+00,-5.729700E-01,4.946273E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +752678,fr,1,3.850000E+00,-5.729700E-01,4.946273E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +752701,fr,1,4.050000E+00,-5.729700E-01,4.946273E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +752709,fr,1,4.050000E+00,-5.729700E-01,4.946273E+01,5.000000E+00,Active Shallow Crust,1.288900E+02,8.999378E+01,0.000000E+00 +752713,fr,1,4.150000E+00,-5.729700E-01,4.946273E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +752737,fr,2,4.350000E+00,-5.729700E-01,4.946273E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +752748,fr,1,4.450000E+00,-5.729700E-01,4.946273E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +752760,fr,1,4.550000E+00,-5.729700E-01,4.946273E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +752764,fr,1,4.550000E+00,-5.729700E-01,4.946273E+01,1.500000E+01,Active Shallow Crust,2.400102E+02,5.799753E+01,0.000000E+00 +752812,fr,1,4.950000E+00,-5.729700E-01,4.946273E+01,1.500000E+01,Active Shallow Crust,2.400134E+02,5.800474E+01,0.000000E+00 +753120,fr,1,3.550000E+00,-3.743090E+00,4.908805E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +753121,fr,1,3.550000E+00,-3.743090E+00,4.908805E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +753132,fr,1,3.650000E+00,-3.743090E+00,4.908805E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +753135,fr,1,3.650000E+00,-3.743090E+00,4.908805E+01,5.000000E+00,Active Shallow Crust,2.400015E+02,5.801296E+01,0.000000E+00 +753144,fr,1,3.750000E+00,-3.743090E+00,4.908805E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +753168,fr,2,3.950000E+00,-3.743090E+00,4.908805E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +753201,fr,1,4.150000E+00,-3.743090E+00,4.908805E+01,5.000000E+00,Active Shallow Crust,1.288971E+02,8.999421E+01,0.000000E+00 +753202,fr,1,4.150000E+00,-3.743090E+00,4.908805E+01,1.500000E+01,Active Shallow Crust,1.288971E+02,8.999421E+01,0.000000E+00 +753612,fr,2,3.650000E+00,6.841100E+00,4.848424E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +753636,fr,1,3.850000E+00,6.841100E+00,4.848424E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +753648,fr,1,3.950000E+00,6.841100E+00,4.848424E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999156E+01,0.000000E+00 +753649,fr,1,3.950000E+00,6.841100E+00,4.848424E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999156E+01,0.000000E+00 +753660,fr,1,4.050000E+00,6.841100E+00,4.848424E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +753664,fr,1,4.050000E+00,6.841100E+00,4.848424E+01,1.500000E+01,Active Shallow Crust,2.400057E+02,5.800637E+01,0.000000E+00 +753709,fr,1,4.450000E+00,6.841100E+00,4.848424E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +753720,fr,1,4.550000E+00,6.841100E+00,4.848424E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +753729,fr,1,4.550000E+00,6.841100E+00,4.848424E+01,5.000000E+00,Active Shallow Crust,1.288934E+02,8.998576E+01,0.000000E+00 +753770,fr,1,4.950000E+00,6.841100E+00,4.848424E+01,2.750000E+01,Active Shallow Crust,3.599993E+02,8.999066E+01,0.000000E+00 +753858,fr,1,5.650000E+00,6.841100E+00,4.848424E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,-9.000000E+01 +754080,fr,1,3.550000E+00,7.469230E+00,4.572152E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999296E+01,0.000000E+00 +754081,fr,1,3.550000E+00,7.469230E+00,4.572152E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999296E+01,0.000000E+00 +754082,fr,1,3.550000E+00,7.469230E+00,4.572152E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999296E+01,0.000000E+00 +754098,fr,1,3.650000E+00,7.469230E+00,4.572152E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998730E+01,-9.000000E+01 +754102,fr,1,3.650000E+00,7.469230E+00,4.572152E+01,1.500000E+01,Active Shallow Crust,1.289003E+02,8.996351E+01,0.000000E+00 +754104,fr,1,3.750000E+00,7.469230E+00,4.572152E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +754106,fr,1,3.750000E+00,7.469230E+00,4.572152E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +754119,fr,1,3.850000E+00,7.469230E+00,4.572152E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799867E+01,0.000000E+00 +754140,fr,1,4.050000E+00,7.469230E+00,4.572152E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998812E+01,0.000000E+00 +754143,fr,1,4.050000E+00,7.469230E+00,4.572152E+01,5.000000E+00,Active Shallow Crust,2.400060E+02,5.800584E+01,0.000000E+00 +754171,fr,1,4.250000E+00,7.469230E+00,4.572152E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,-9.000000E+01 +754200,fr,1,4.550000E+00,7.469230E+00,4.572152E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +754236,fr,1,4.850000E+00,7.469230E+00,4.572152E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +754580,fr,1,3.650000E+00,2.791800E+00,4.056086E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998964E+01,-9.000000E+01 +754608,fr,1,3.950000E+00,2.791800E+00,4.056086E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +755040,fr,7,3.550000E+00,6.601700E-01,4.282366E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +755041,fr,2,3.550000E+00,6.601700E-01,4.282366E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +755042,fr,2,3.550000E+00,6.601700E-01,4.282366E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +755049,fr,1,3.550000E+00,6.601700E-01,4.282366E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.999353E+01,0.000000E+00 +755050,fr,1,3.550000E+00,6.601700E-01,4.282366E+01,1.500000E+01,Active Shallow Crust,1.288966E+02,8.999353E+01,0.000000E+00 +755052,fr,4,3.650000E+00,6.601700E-01,4.282366E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +755053,fr,2,3.650000E+00,6.601700E-01,4.282366E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +755056,fr,1,3.650000E+00,6.601700E-01,4.282366E+01,1.500000E+01,Active Shallow Crust,2.400007E+02,5.801279E+01,0.000000E+00 +755064,fr,1,3.750000E+00,6.601700E-01,4.282366E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +755066,fr,1,3.750000E+00,6.601700E-01,4.282366E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +755070,fr,1,3.750000E+00,6.601700E-01,4.282366E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,-9.000000E+01 +755073,fr,1,3.750000E+00,6.601700E-01,4.282366E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.996736E+01,0.000000E+00 +755076,fr,2,3.850000E+00,6.601700E-01,4.282366E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +755077,fr,1,3.850000E+00,6.601700E-01,4.282366E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +755082,fr,1,3.850000E+00,6.601700E-01,4.282366E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +755083,fr,1,3.850000E+00,6.601700E-01,4.282366E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +755088,fr,2,3.950000E+00,6.601700E-01,4.282366E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +755089,fr,1,3.950000E+00,6.601700E-01,4.282366E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +755092,fr,1,3.950000E+00,6.601700E-01,4.282366E+01,1.500000E+01,Active Shallow Crust,2.400193E+02,5.800479E+01,0.000000E+00 +755101,fr,1,4.050000E+00,6.601700E-01,4.282366E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +755114,fr,1,4.150000E+00,6.601700E-01,4.282366E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +755117,fr,1,4.150000E+00,6.601700E-01,4.282366E+01,2.750000E+01,Active Shallow Crust,2.400079E+02,5.799717E+01,0.000000E+00 +755124,fr,2,4.250000E+00,6.601700E-01,4.282366E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +755136,fr,1,4.350000E+00,6.601700E-01,4.282366E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +755137,fr,1,4.350000E+00,6.601700E-01,4.282366E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +755139,fr,1,4.350000E+00,6.601700E-01,4.282366E+01,5.000000E+00,Active Shallow Crust,2.400075E+02,5.799581E+01,0.000000E+00 +755161,fr,1,4.550000E+00,6.601700E-01,4.282366E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +755164,fr,1,4.550000E+00,6.601700E-01,4.282366E+01,1.500000E+01,Active Shallow Crust,2.400083E+02,5.799718E+01,0.000000E+00 +755169,fr,1,4.550000E+00,6.601700E-01,4.282366E+01,5.000000E+00,Active Shallow Crust,1.288948E+02,8.998578E+01,0.000000E+00 +755177,fr,1,4.650000E+00,6.601700E-01,4.282366E+01,2.750000E+01,Active Shallow Crust,2.400098E+02,5.799401E+01,0.000000E+00 +755181,fr,1,4.650000E+00,6.601700E-01,4.282366E+01,5.000000E+00,Active Shallow Crust,1.288921E+02,8.998703E+01,0.000000E+00 +755208,fr,1,4.950000E+00,6.601700E-01,4.282366E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +755220,fr,1,5.050000E+00,6.601700E-01,4.282366E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +755245,fr,1,5.250000E+00,6.601700E-01,4.282366E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +755311,fr,1,5.750000E+00,6.601700E-01,4.282366E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +756016,fr,1,3.650000E+00,5.284520E+00,4.954479E+01,1.500000E+01,Active Shallow Crust,2.400022E+02,5.801241E+01,0.000000E+00 +756030,fr,1,3.750000E+00,5.284520E+00,4.954479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,-9.000000E+01 +756132,fr,1,4.650000E+00,5.284520E+00,4.954479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +756480,fr,6,3.550000E+00,6.297670E+00,4.545152E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999293E+01,0.000000E+00 +756481,fr,1,3.550000E+00,6.297670E+00,4.545152E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999293E+01,0.000000E+00 +756492,fr,4,3.650000E+00,6.297670E+00,4.545152E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998739E+01,0.000000E+00 +756493,fr,2,3.650000E+00,6.297670E+00,4.545152E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998739E+01,0.000000E+00 +756497,fr,1,3.650000E+00,6.297670E+00,4.545152E+01,2.750000E+01,Active Shallow Crust,2.400009E+02,5.801249E+01,0.000000E+00 +756507,fr,1,3.750000E+00,6.297670E+00,4.545152E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.801797E+01,0.000000E+00 +756516,fr,1,3.850000E+00,6.297670E+00,4.545152E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +756517,fr,1,3.850000E+00,6.297670E+00,4.545152E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +756519,fr,1,3.850000E+00,6.297670E+00,4.545152E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799737E+01,0.000000E+00 +756529,fr,1,3.950000E+00,6.297670E+00,4.545152E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +756541,fr,2,4.050000E+00,6.297670E+00,4.545152E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998807E+01,0.000000E+00 +756553,fr,1,4.150000E+00,6.297670E+00,4.545152E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +756555,fr,1,4.150000E+00,6.297670E+00,4.545152E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799760E+01,0.000000E+00 +756565,fr,1,4.250000E+00,6.297670E+00,4.545152E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +756582,fr,1,4.350000E+00,6.297670E+00,4.545152E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998860E+01,-9.000000E+01 +756589,fr,1,4.450000E+00,6.297670E+00,4.545152E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +756591,fr,2,4.450000E+00,6.297670E+00,4.545152E+01,5.000000E+00,Active Shallow Crust,2.400052E+02,5.799446E+01,0.000000E+00 +756603,fr,1,4.550000E+00,6.297670E+00,4.545152E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.799748E+01,0.000000E+00 +756608,fr,1,4.550000E+00,6.297670E+00,4.545152E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999094E+01,-9.000000E+01 +756610,fr,1,4.550000E+00,6.297670E+00,4.545152E+01,1.500000E+01,Active Shallow Crust,1.288941E+02,8.998559E+01,0.000000E+00 +756624,fr,1,4.750000E+00,6.297670E+00,4.545152E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +756633,fr,1,4.750000E+00,6.297670E+00,4.545152E+01,5.000000E+00,Active Shallow Crust,1.288889E+02,8.998811E+01,0.000000E+00 +756675,fr,1,5.150000E+00,6.297670E+00,4.545152E+01,5.000000E+00,Active Shallow Crust,2.400192E+02,5.799993E+01,0.000000E+00 +756697,fr,1,5.350000E+00,6.297670E+00,4.545152E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +756960,fr,1,3.550000E+00,1.742750E+00,4.134018E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +756963,fr,1,3.550000E+00,1.742750E+00,4.134018E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799823E+01,0.000000E+00 +756972,fr,3,3.650000E+00,1.742750E+00,4.134018E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +756975,fr,1,3.650000E+00,1.742750E+00,4.134018E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801268E+01,0.000000E+00 +756998,fr,1,3.850000E+00,1.742750E+00,4.134018E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +757008,fr,1,3.950000E+00,1.742750E+00,4.134018E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +757032,fr,1,4.150000E+00,1.742750E+00,4.134018E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +757080,fr,2,4.550000E+00,1.742750E+00,4.134018E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +757176,fr,1,5.350000E+00,1.742750E+00,4.134018E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +757506,fr,1,4.050000E+00,6.647280E+00,5.181040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,-9.000000E+01 +757944,fr,1,3.750000E+00,-5.115230E+00,4.976980E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +759361,fr,1,3.550000E+00,-8.717600E-01,4.431783E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +759387,fr,1,3.750000E+00,-8.717600E-01,4.431783E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.801757E+01,0.000000E+00 +759840,fr,1,3.550000E+00,-3.037000E-02,4.856776E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +759858,fr,1,3.650000E+00,-3.037000E-02,4.856776E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +759864,fr,2,3.750000E+00,-3.037000E-02,4.856776E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +760392,fr,1,4.150000E+00,-2.222140E+00,4.514383E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +760800,fr,8,3.550000E+00,-1.100400E-01,4.315999E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +760801,fr,3,3.550000E+00,-1.100400E-01,4.315999E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +760802,fr,4,3.550000E+00,-1.100400E-01,4.315999E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +760803,fr,1,3.550000E+00,-1.100400E-01,4.315999E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799812E+01,0.000000E+00 +760806,fr,1,3.550000E+00,-1.100400E-01,4.315999E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +760811,fr,1,3.550000E+00,-1.100400E-01,4.315999E+01,2.750000E+01,Active Shallow Crust,1.288965E+02,8.999374E+01,0.000000E+00 +760812,fr,6,3.650000E+00,-1.100400E-01,4.315999E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +760813,fr,4,3.650000E+00,-1.100400E-01,4.315999E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +760814,fr,1,3.650000E+00,-1.100400E-01,4.315999E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +760818,fr,1,3.650000E+00,-1.100400E-01,4.315999E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,-9.000000E+01 +760824,fr,5,3.750000E+00,-1.100400E-01,4.315999E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +760825,fr,2,3.750000E+00,-1.100400E-01,4.315999E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +760826,fr,1,3.750000E+00,-1.100400E-01,4.315999E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +760827,fr,2,3.750000E+00,-1.100400E-01,4.315999E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801751E+01,0.000000E+00 +760830,fr,1,3.750000E+00,-1.100400E-01,4.315999E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +760831,fr,1,3.750000E+00,-1.100400E-01,4.315999E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +760833,fr,1,3.750000E+00,-1.100400E-01,4.315999E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996735E+01,0.000000E+00 +760835,fr,1,3.750000E+00,-1.100400E-01,4.315999E+01,2.750000E+01,Active Shallow Crust,1.288969E+02,8.996735E+01,0.000000E+00 +760836,fr,2,3.850000E+00,-1.100400E-01,4.315999E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +760837,fr,2,3.850000E+00,-1.100400E-01,4.315999E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +760842,fr,1,3.850000E+00,-1.100400E-01,4.315999E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999004E+01,-9.000000E+01 +760848,fr,1,3.950000E+00,-1.100400E-01,4.315999E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +760849,fr,1,3.950000E+00,-1.100400E-01,4.315999E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +760851,fr,1,3.950000E+00,-1.100400E-01,4.315999E+01,5.000000E+00,Active Shallow Crust,2.400193E+02,5.800488E+01,0.000000E+00 +760852,fr,1,3.950000E+00,-1.100400E-01,4.315999E+01,1.500000E+01,Active Shallow Crust,2.400193E+02,5.800488E+01,0.000000E+00 +760854,fr,1,3.950000E+00,-1.100400E-01,4.315999E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +760860,fr,1,4.050000E+00,-1.100400E-01,4.315999E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +760861,fr,1,4.050000E+00,-1.100400E-01,4.315999E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +760864,fr,1,4.050000E+00,-1.100400E-01,4.315999E+01,1.500000E+01,Active Shallow Crust,2.400054E+02,5.800571E+01,0.000000E+00 +760872,fr,2,4.150000E+00,-1.100400E-01,4.315999E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +760873,fr,1,4.150000E+00,-1.100400E-01,4.315999E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +760879,fr,1,4.150000E+00,-1.100400E-01,4.315999E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +760884,fr,3,4.250000E+00,-1.100400E-01,4.315999E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +760885,fr,1,4.250000E+00,-1.100400E-01,4.315999E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +760896,fr,2,4.350000E+00,-1.100400E-01,4.315999E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +760899,fr,1,4.350000E+00,-1.100400E-01,4.315999E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.799580E+01,0.000000E+00 +760920,fr,1,4.550000E+00,-1.100400E-01,4.315999E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +760922,fr,1,4.550000E+00,-1.100400E-01,4.315999E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +760932,fr,2,4.650000E+00,-1.100400E-01,4.315999E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +760941,fr,1,4.650000E+00,-1.100400E-01,4.315999E+01,5.000000E+00,Active Shallow Crust,1.288920E+02,8.998702E+01,0.000000E+00 +760944,fr,1,4.750000E+00,-1.100400E-01,4.315999E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +760956,fr,1,4.850000E+00,-1.100400E-01,4.315999E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +760962,fr,1,4.850000E+00,-1.100400E-01,4.315999E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +760963,fr,1,4.850000E+00,-1.100400E-01,4.315999E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +760973,fr,1,4.950000E+00,-1.100400E-01,4.315999E+01,2.750000E+01,Active Shallow Crust,2.400104E+02,5.800421E+01,0.000000E+00 +760980,fr,1,5.050000E+00,-1.100400E-01,4.315999E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +760994,fr,1,5.150000E+00,-1.100400E-01,4.315999E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +761002,fr,1,5.150000E+00,-1.100400E-01,4.315999E+01,1.500000E+01,Active Shallow Crust,1.288853E+02,8.999104E+01,0.000000E+00 +761019,fr,1,5.350000E+00,-1.100400E-01,4.315999E+01,5.000000E+00,Active Shallow Crust,2.400228E+02,5.799742E+01,0.000000E+00 +761034,fr,1,5.450000E+00,-1.100400E-01,4.315999E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999001E+01,-9.000000E+01 +761050,fr,1,5.550000E+00,-1.100400E-01,4.315999E+01,1.500000E+01,Active Shallow Crust,1.288787E+02,8.998978E+01,0.000000E+00 +761070,fr,1,5.750000E+00,-1.100400E-01,4.315999E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999001E+01,-9.000000E+01 +761090,fr,1,5.950000E+00,-1.100400E-01,4.315999E+01,2.750000E+01,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +761295,fr,1,3.650000E+00,-3.447950E+00,4.924912E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801334E+01,0.000000E+00 +761302,fr,1,3.650000E+00,-3.447950E+00,4.924912E+01,1.500000E+01,Active Shallow Crust,1.289010E+02,8.996331E+01,0.000000E+00 +761304,fr,1,3.750000E+00,-3.447950E+00,4.924912E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +761340,fr,1,4.050000E+00,-3.447950E+00,4.924912E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +761760,fr,4,3.550000E+00,7.345530E+00,4.739437E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999317E+01,0.000000E+00 +761761,fr,1,3.550000E+00,7.345530E+00,4.739437E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999317E+01,0.000000E+00 +761763,fr,1,3.550000E+00,7.345530E+00,4.739437E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799791E+01,0.000000E+00 +761764,fr,1,3.550000E+00,7.345530E+00,4.739437E+01,1.500000E+01,Active Shallow Crust,2.400118E+02,5.799791E+01,0.000000E+00 +761766,fr,1,3.550000E+00,7.345530E+00,4.739437E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999310E+01,-9.000000E+01 +761769,fr,2,3.550000E+00,7.345530E+00,4.739437E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999317E+01,0.000000E+00 +761772,fr,6,3.650000E+00,7.345530E+00,4.739437E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998783E+01,0.000000E+00 +761773,fr,1,3.650000E+00,7.345530E+00,4.739437E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998783E+01,0.000000E+00 +761774,fr,1,3.650000E+00,7.345530E+00,4.739437E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998783E+01,0.000000E+00 +761775,fr,1,3.650000E+00,7.345530E+00,4.739437E+01,5.000000E+00,Active Shallow Crust,2.400024E+02,5.801227E+01,0.000000E+00 +761776,fr,2,3.650000E+00,7.345530E+00,4.739437E+01,1.500000E+01,Active Shallow Crust,2.400024E+02,5.801227E+01,0.000000E+00 +761781,fr,1,3.650000E+00,7.345530E+00,4.739437E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.996354E+01,0.000000E+00 +761784,fr,5,3.750000E+00,7.345530E+00,4.739437E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +761786,fr,1,3.750000E+00,7.345530E+00,4.739437E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +761788,fr,1,3.750000E+00,7.345530E+00,4.739437E+01,1.500000E+01,Active Shallow Crust,2.400077E+02,5.801804E+01,0.000000E+00 +761790,fr,1,3.750000E+00,7.345530E+00,4.739437E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998903E+01,-9.000000E+01 +761793,fr,1,3.750000E+00,7.345530E+00,4.739437E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.996751E+01,0.000000E+00 +761796,fr,1,3.850000E+00,7.345530E+00,4.739437E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +761797,fr,1,3.850000E+00,7.345530E+00,4.739437E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +761805,fr,1,3.850000E+00,7.345530E+00,4.739437E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999275E+01,0.000000E+00 +761808,fr,2,3.950000E+00,7.345530E+00,4.739437E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999139E+01,0.000000E+00 +761809,fr,2,3.950000E+00,7.345530E+00,4.739437E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999139E+01,0.000000E+00 +761814,fr,1,3.950000E+00,7.345530E+00,4.739437E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999129E+01,-9.000000E+01 +761820,fr,3,4.050000E+00,7.345530E+00,4.739437E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998848E+01,0.000000E+00 +761823,fr,3,4.050000E+00,7.345530E+00,4.739437E+01,5.000000E+00,Active Shallow Crust,2.400063E+02,5.800597E+01,0.000000E+00 +761824,fr,1,4.050000E+00,7.345530E+00,4.739437E+01,1.500000E+01,Active Shallow Crust,2.400063E+02,5.800595E+01,0.000000E+00 +761832,fr,1,4.150000E+00,7.345530E+00,4.739437E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +761833,fr,2,4.150000E+00,7.345530E+00,4.739437E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +761838,fr,1,4.150000E+00,7.345530E+00,4.739437E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,-9.000000E+01 +761841,fr,1,4.150000E+00,7.345530E+00,4.739437E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.999316E+01,0.000000E+00 +761847,fr,1,4.250000E+00,7.345530E+00,4.739437E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799397E+01,0.000000E+00 +761854,fr,1,4.250000E+00,7.345530E+00,4.739437E+01,1.500000E+01,Active Shallow Crust,1.288947E+02,8.998098E+01,0.000000E+00 +761857,fr,1,4.350000E+00,7.345530E+00,4.739437E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998913E+01,0.000000E+00 +761880,fr,1,4.550000E+00,7.345530E+00,4.739437E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +761881,fr,1,4.550000E+00,7.345530E+00,4.739437E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +761905,fr,1,4.750000E+00,7.345530E+00,4.739437E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +761929,fr,1,4.950000E+00,7.345530E+00,4.739437E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +761953,fr,2,5.150000E+00,7.345530E+00,4.739437E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +761964,fr,1,5.250000E+00,7.345530E+00,4.739437E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +761976,fr,1,5.350000E+00,7.345530E+00,4.739437E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +762043,fr,1,5.850000E+00,7.345530E+00,4.739437E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999022E+01,-9.000000E+01 +762048,fr,1,5.950000E+00,7.345530E+00,4.739437E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +762241,fr,1,3.550000E+00,2.083970E+00,4.933457E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +762258,fr,1,3.650000E+00,2.083970E+00,4.933457E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999111E+01,-9.000000E+01 +762301,fr,1,4.050000E+00,2.083970E+00,4.933457E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +762313,fr,1,4.150000E+00,2.083970E+00,4.933457E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +762336,fr,1,4.350000E+00,2.083970E+00,4.933457E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +762769,fr,1,3.950000E+00,5.240220E+00,4.978810E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999178E+01,0.000000E+00 +763200,fr,1,3.550000E+00,5.940730E+00,4.422044E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999277E+01,0.000000E+00 +763203,fr,1,3.550000E+00,5.940730E+00,4.422044E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799868E+01,0.000000E+00 +763212,fr,2,3.650000E+00,5.940730E+00,4.422044E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998712E+01,0.000000E+00 +763214,fr,1,3.650000E+00,5.940730E+00,4.422044E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998712E+01,0.000000E+00 +763218,fr,1,3.650000E+00,5.940730E+00,4.422044E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998697E+01,-9.000000E+01 +763221,fr,1,3.650000E+00,5.940730E+00,4.422044E+01,5.000000E+00,Active Shallow Crust,1.289000E+02,8.996348E+01,0.000000E+00 +763224,fr,1,3.750000E+00,5.940730E+00,4.422044E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998852E+01,0.000000E+00 +763225,fr,1,3.750000E+00,5.940730E+00,4.422044E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998852E+01,0.000000E+00 +763236,fr,2,3.850000E+00,5.940730E+00,4.422044E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +763240,fr,1,3.850000E+00,5.940730E+00,4.422044E+01,1.500000E+01,Active Shallow Crust,2.400108E+02,5.799718E+01,0.000000E+00 +763248,fr,1,3.950000E+00,5.940730E+00,4.422044E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +763272,fr,1,4.150000E+00,5.940730E+00,4.422044E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +763276,fr,1,4.150000E+00,5.940730E+00,4.422044E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.799760E+01,0.000000E+00 +763286,fr,1,4.250000E+00,5.940730E+00,4.422044E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +763302,fr,1,4.350000E+00,5.940730E+00,4.422044E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999127E+01,-9.000000E+01 +763680,fr,11,3.550000E+00,8.687280E+00,4.754040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998638E+01,0.000000E+00 +763681,fr,2,3.550000E+00,8.687280E+00,4.754040E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998638E+01,0.000000E+00 +763683,fr,3,3.550000E+00,8.687280E+00,4.754040E+01,5.000000E+00,Active Shallow Crust,2.400144E+02,5.799846E+01,0.000000E+00 +763684,fr,1,3.550000E+00,8.687280E+00,4.754040E+01,1.500000E+01,Active Shallow Crust,2.400144E+02,5.799846E+01,0.000000E+00 +763686,fr,1,3.550000E+00,8.687280E+00,4.754040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998623E+01,-9.000000E+01 +763688,fr,1,3.550000E+00,8.687280E+00,4.754040E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998623E+01,-9.000000E+01 +763689,fr,1,3.550000E+00,8.687280E+00,4.754040E+01,5.000000E+00,Active Shallow Crust,1.288944E+02,8.999319E+01,0.000000E+00 +763692,fr,9,3.650000E+00,8.687280E+00,4.754040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998787E+01,0.000000E+00 +763693,fr,3,3.650000E+00,8.687280E+00,4.754040E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998787E+01,0.000000E+00 +763695,fr,2,3.650000E+00,8.687280E+00,4.754040E+01,5.000000E+00,Active Shallow Crust,2.400018E+02,5.801083E+01,0.000000E+00 +763696,fr,1,3.650000E+00,8.687280E+00,4.754040E+01,1.500000E+01,Active Shallow Crust,2.400018E+02,5.801083E+01,0.000000E+00 +763697,fr,1,3.650000E+00,8.687280E+00,4.754040E+01,2.750000E+01,Active Shallow Crust,2.400018E+02,5.801075E+01,0.000000E+00 +763702,fr,1,3.650000E+00,8.687280E+00,4.754040E+01,1.500000E+01,Active Shallow Crust,1.288999E+02,8.996355E+01,0.000000E+00 +763704,fr,4,3.750000E+00,8.687280E+00,4.754040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +763705,fr,2,3.750000E+00,8.687280E+00,4.754040E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +763707,fr,2,3.750000E+00,8.687280E+00,4.754040E+01,5.000000E+00,Active Shallow Crust,2.400065E+02,5.801871E+01,0.000000E+00 +763708,fr,1,3.750000E+00,8.687280E+00,4.754040E+01,1.500000E+01,Active Shallow Crust,2.400065E+02,5.801871E+01,0.000000E+00 +763712,fr,1,3.750000E+00,8.687280E+00,4.754040E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998906E+01,-9.000000E+01 +763713,fr,3,3.750000E+00,8.687280E+00,4.754040E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.996751E+01,0.000000E+00 +763716,fr,5,3.850000E+00,8.687280E+00,4.754040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +763717,fr,3,3.850000E+00,8.687280E+00,4.754040E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +763719,fr,1,3.850000E+00,8.687280E+00,4.754040E+01,5.000000E+00,Active Shallow Crust,2.400099E+02,5.799788E+01,0.000000E+00 +763722,fr,1,3.850000E+00,8.687280E+00,4.754040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,-9.000000E+01 +763728,fr,5,3.950000E+00,8.687280E+00,4.754040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999141E+01,0.000000E+00 +763729,fr,4,3.950000E+00,8.687280E+00,4.754040E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999141E+01,0.000000E+00 +763730,fr,1,3.950000E+00,8.687280E+00,4.754040E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999141E+01,0.000000E+00 +763731,fr,2,3.950000E+00,8.687280E+00,4.754040E+01,5.000000E+00,Active Shallow Crust,2.400204E+02,5.800565E+01,0.000000E+00 +763734,fr,1,3.950000E+00,8.687280E+00,4.754040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999131E+01,-9.000000E+01 +763737,fr,2,3.950000E+00,8.687280E+00,4.754040E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.999570E+01,0.000000E+00 +763740,fr,5,4.050000E+00,8.687280E+00,4.754040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999234E+01,0.000000E+00 +763741,fr,1,4.050000E+00,8.687280E+00,4.754040E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999234E+01,0.000000E+00 +763742,fr,1,4.050000E+00,8.687280E+00,4.754040E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999234E+01,0.000000E+00 +763750,fr,1,4.050000E+00,8.687280E+00,4.754040E+01,1.500000E+01,Active Shallow Crust,1.288899E+02,8.999235E+01,0.000000E+00 +763752,fr,4,4.150000E+00,8.687280E+00,4.754040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999318E+01,0.000000E+00 +763753,fr,1,4.150000E+00,8.687280E+00,4.754040E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999318E+01,0.000000E+00 +763764,fr,4,4.250000E+00,8.687280E+00,4.754040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998784E+01,0.000000E+00 +763773,fr,1,4.250000E+00,8.687280E+00,4.754040E+01,5.000000E+00,Active Shallow Crust,1.288941E+02,8.998099E+01,0.000000E+00 +763776,fr,2,4.350000E+00,8.687280E+00,4.754040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +763779,fr,1,4.350000E+00,8.687280E+00,4.754040E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799634E+01,0.000000E+00 +763781,fr,1,4.350000E+00,8.687280E+00,4.754040E+01,2.750000E+01,Active Shallow Crust,2.400078E+02,5.799634E+01,0.000000E+00 +763783,fr,2,4.350000E+00,8.687280E+00,4.754040E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998904E+01,-9.000000E+01 +763789,fr,1,4.450000E+00,8.687280E+00,4.754040E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +763798,fr,1,4.450000E+00,8.687280E+00,4.754040E+01,1.500000E+01,Active Shallow Crust,1.288906E+02,8.999517E+01,0.000000E+00 +763803,fr,2,4.550000E+00,8.687280E+00,4.754040E+01,5.000000E+00,Active Shallow Crust,2.400094E+02,5.799778E+01,0.000000E+00 +763812,fr,4,4.650000E+00,8.687280E+00,4.754040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998849E+01,0.000000E+00 +763813,fr,2,4.650000E+00,8.687280E+00,4.754040E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998849E+01,0.000000E+00 +763815,fr,1,4.650000E+00,8.687280E+00,4.754040E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799400E+01,0.000000E+00 +763820,fr,1,4.650000E+00,8.687280E+00,4.754040E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998835E+01,-9.000000E+01 +763825,fr,1,4.750000E+00,8.687280E+00,4.754040E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +763828,fr,1,4.750000E+00,8.687280E+00,4.754040E+01,1.500000E+01,Active Shallow Crust,2.400078E+02,5.800514E+01,0.000000E+00 +763830,fr,1,4.750000E+00,8.687280E+00,4.754040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,-9.000000E+01 +763855,fr,1,4.950000E+00,8.687280E+00,4.754040E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998901E+01,-9.000000E+01 +763860,fr,1,5.050000E+00,8.687280E+00,4.754040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +763884,fr,1,5.250000E+00,8.687280E+00,4.754040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +763896,fr,1,5.350000E+00,8.687280E+00,4.754040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +763901,fr,1,5.350000E+00,8.687280E+00,4.754040E+01,2.750000E+01,Active Shallow Crust,2.400258E+02,5.799831E+01,0.000000E+00 +763908,fr,1,5.450000E+00,8.687280E+00,4.754040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +764160,fr,1,3.550000E+00,4.933110E+00,4.382295E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999272E+01,0.000000E+00 +764161,fr,2,3.550000E+00,4.933110E+00,4.382295E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999272E+01,0.000000E+00 +764162,fr,1,3.550000E+00,4.933110E+00,4.382295E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999272E+01,0.000000E+00 +764163,fr,1,3.550000E+00,4.933110E+00,4.382295E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799857E+01,0.000000E+00 +764166,fr,1,3.550000E+00,4.933110E+00,4.382295E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999264E+01,-9.000000E+01 +764170,fr,1,3.550000E+00,4.933110E+00,4.382295E+01,1.500000E+01,Active Shallow Crust,1.288951E+02,8.999636E+01,0.000000E+00 +764172,fr,2,3.650000E+00,4.933110E+00,4.382295E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998703E+01,0.000000E+00 +764173,fr,1,3.650000E+00,4.933110E+00,4.382295E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998703E+01,0.000000E+00 +764175,fr,1,3.650000E+00,4.933110E+00,4.382295E+01,5.000000E+00,Active Shallow Crust,2.400003E+02,5.801352E+01,0.000000E+00 +764178,fr,1,3.650000E+00,4.933110E+00,4.382295E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998689E+01,-9.000000E+01 +764184,fr,2,3.750000E+00,4.933110E+00,4.382295E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998844E+01,0.000000E+00 +764185,fr,2,3.750000E+00,4.933110E+00,4.382295E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998844E+01,0.000000E+00 +764187,fr,2,3.750000E+00,4.933110E+00,4.382295E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801728E+01,0.000000E+00 +764193,fr,1,3.750000E+00,4.933110E+00,4.382295E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.996681E+01,0.000000E+00 +764196,fr,1,3.850000E+00,4.933110E+00,4.382295E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +764208,fr,2,3.950000E+00,4.933110E+00,4.382295E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999082E+01,0.000000E+00 +764220,fr,2,4.050000E+00,4.933110E+00,4.382295E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999181E+01,0.000000E+00 +764221,fr,1,4.050000E+00,4.933110E+00,4.382295E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999181E+01,0.000000E+00 +764226,fr,1,4.050000E+00,4.933110E+00,4.382295E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999172E+01,-9.000000E+01 +764233,fr,1,4.150000E+00,4.933110E+00,4.382295E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998906E+01,0.000000E+00 +764238,fr,1,4.150000E+00,4.933110E+00,4.382295E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998894E+01,-9.000000E+01 +764246,fr,1,4.250000E+00,4.933110E+00,4.382295E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +764247,fr,1,4.250000E+00,4.933110E+00,4.382295E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.799420E+01,0.000000E+00 +764256,fr,1,4.350000E+00,4.933110E+00,4.382295E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999131E+01,0.000000E+00 +764257,fr,1,4.350000E+00,4.933110E+00,4.382295E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999131E+01,0.000000E+00 +764271,fr,1,4.450000E+00,4.933110E+00,4.382295E+01,5.000000E+00,Active Shallow Crust,2.400044E+02,5.799453E+01,0.000000E+00 +764283,fr,1,4.550000E+00,4.933110E+00,4.382295E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799762E+01,0.000000E+00 +764314,fr,1,4.750000E+00,4.933110E+00,4.382295E+01,1.500000E+01,Active Shallow Crust,1.288898E+02,8.998802E+01,0.000000E+00 +764337,fr,1,4.950000E+00,4.933110E+00,4.382295E+01,5.000000E+00,Active Shallow Crust,1.288907E+02,8.998964E+01,0.000000E+00 +764383,fr,1,5.350000E+00,4.933110E+00,4.382295E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,-9.000000E+01 +764565,fr,1,6.850000E+00,4.933099E+00,4.382294E+01,1.345767E+01,Active Shallow Crust,1.288092E+02,8.999044E+01,0.000000E+00 +764640,fr,1,3.550000E+00,5.103230E+00,4.800812E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999326E+01,0.000000E+00 +764652,fr,2,3.650000E+00,5.103230E+00,4.800812E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998798E+01,0.000000E+00 +764677,fr,1,3.850000E+00,5.103230E+00,4.800812E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +764678,fr,1,3.850000E+00,5.103230E+00,4.800812E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +764700,fr,1,4.050000E+00,5.103230E+00,4.800812E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +764701,fr,1,4.050000E+00,5.103230E+00,4.800812E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +764707,fr,1,4.050000E+00,5.103230E+00,4.800812E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998849E+01,-9.000000E+01 +764748,fr,1,4.450000E+00,5.103230E+00,4.800812E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +765120,fr,4,3.550000E+00,-2.372700E-01,4.328443E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +765129,fr,1,3.550000E+00,-2.372700E-01,4.328443E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999369E+01,0.000000E+00 +765132,fr,2,3.650000E+00,-2.372700E-01,4.328443E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +765133,fr,1,3.650000E+00,-2.372700E-01,4.328443E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +765136,fr,1,3.650000E+00,-2.372700E-01,4.328443E+01,1.500000E+01,Active Shallow Crust,2.400007E+02,5.801287E+01,0.000000E+00 +765139,fr,1,3.650000E+00,-2.372700E-01,4.328443E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +765144,fr,1,3.750000E+00,-2.372700E-01,4.328443E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +765145,fr,1,3.750000E+00,-2.372700E-01,4.328443E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +765148,fr,1,3.750000E+00,-2.372700E-01,4.328443E+01,1.500000E+01,Active Shallow Crust,2.400080E+02,5.801752E+01,0.000000E+00 +765149,fr,1,3.750000E+00,-2.372700E-01,4.328443E+01,2.750000E+01,Active Shallow Crust,2.400080E+02,5.801752E+01,0.000000E+00 +765156,fr,1,3.850000E+00,-2.372700E-01,4.328443E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +765157,fr,1,3.850000E+00,-2.372700E-01,4.328443E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +765168,fr,2,3.950000E+00,-2.372700E-01,4.328443E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +765192,fr,1,4.150000E+00,-2.372700E-01,4.328443E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +765193,fr,2,4.150000E+00,-2.372700E-01,4.328443E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +765213,fr,1,4.250000E+00,-2.372700E-01,4.328443E+01,5.000000E+00,Active Shallow Crust,1.288949E+02,8.998091E+01,0.000000E+00 +765216,fr,1,4.350000E+00,-2.372700E-01,4.328443E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999004E+01,0.000000E+00 +765243,fr,1,4.550000E+00,-2.372700E-01,4.328443E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.799721E+01,0.000000E+00 +765253,fr,1,4.650000E+00,-2.372700E-01,4.328443E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +765288,fr,1,4.950000E+00,-2.372700E-01,4.328443E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999002E+01,0.000000E+00 +765320,fr,1,5.150000E+00,-2.372700E-01,4.328443E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +765324,fr,2,5.250000E+00,-2.372700E-01,4.328443E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +765333,fr,1,5.250000E+00,-2.372700E-01,4.328443E+01,5.000000E+00,Active Shallow Crust,1.288849E+02,8.998698E+01,0.000000E+00 +765372,fr,1,5.650000E+00,-2.372700E-01,4.328443E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +766080,fr,1,3.550000E+00,6.258750E+00,4.570846E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999296E+01,0.000000E+00 +766081,fr,1,3.550000E+00,6.258750E+00,4.570846E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999296E+01,0.000000E+00 +766084,fr,1,3.550000E+00,6.258750E+00,4.570846E+01,1.500000E+01,Active Shallow Crust,2.400129E+02,5.799781E+01,0.000000E+00 +766089,fr,1,3.550000E+00,6.258750E+00,4.570846E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999296E+01,0.000000E+00 +766092,fr,5,3.650000E+00,6.258750E+00,4.570846E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998745E+01,0.000000E+00 +766095,fr,1,3.650000E+00,6.258750E+00,4.570846E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801269E+01,0.000000E+00 +766100,fr,1,3.650000E+00,6.258750E+00,4.570846E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998730E+01,-9.000000E+01 +766104,fr,1,3.750000E+00,6.258750E+00,4.570846E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +766116,fr,1,3.850000E+00,6.258750E+00,4.570846E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +766125,fr,2,3.850000E+00,6.258750E+00,4.570846E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999252E+01,0.000000E+00 +766126,fr,1,3.850000E+00,6.258750E+00,4.570846E+01,1.500000E+01,Active Shallow Crust,1.288959E+02,8.999252E+01,0.000000E+00 +766128,fr,2,3.950000E+00,6.258750E+00,4.570846E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999111E+01,0.000000E+00 +766137,fr,2,3.950000E+00,6.258750E+00,4.570846E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.999556E+01,0.000000E+00 +766140,fr,1,4.050000E+00,6.258750E+00,4.570846E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998812E+01,0.000000E+00 +766142,fr,1,4.050000E+00,6.258750E+00,4.570846E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998812E+01,0.000000E+00 +766144,fr,1,4.050000E+00,6.258750E+00,4.570846E+01,1.500000E+01,Active Shallow Crust,2.400058E+02,5.800599E+01,0.000000E+00 +766153,fr,1,4.150000E+00,6.258750E+00,4.570846E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998941E+01,0.000000E+00 +766174,fr,1,4.250000E+00,6.258750E+00,4.570846E+01,1.500000E+01,Active Shallow Crust,1.288943E+02,8.998092E+01,0.000000E+00 +766182,fr,1,4.350000E+00,6.258750E+00,4.570846E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,-9.000000E+01 +766185,fr,1,4.350000E+00,6.258750E+00,4.570846E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.998299E+01,0.000000E+00 +766200,fr,1,4.550000E+00,6.258750E+00,4.570846E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999109E+01,0.000000E+00 +766345,fr,1,5.750000E+00,6.258750E+00,4.570846E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +766560,fr,2,3.550000E+00,6.928860E+00,4.487025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999285E+01,0.000000E+00 +766562,fr,1,3.550000E+00,6.928860E+00,4.487025E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999285E+01,0.000000E+00 +766563,fr,1,3.550000E+00,6.928860E+00,4.487025E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799741E+01,0.000000E+00 +766570,fr,1,3.550000E+00,6.928860E+00,4.487025E+01,1.500000E+01,Active Shallow Crust,1.288973E+02,8.999285E+01,0.000000E+00 +766572,fr,2,3.650000E+00,6.928860E+00,4.487025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998726E+01,0.000000E+00 +766573,fr,1,3.650000E+00,6.928860E+00,4.487025E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998726E+01,0.000000E+00 +766575,fr,1,3.650000E+00,6.928860E+00,4.487025E+01,5.000000E+00,Active Shallow Crust,2.400005E+02,5.801272E+01,0.000000E+00 +766576,fr,1,3.650000E+00,6.928860E+00,4.487025E+01,1.500000E+01,Active Shallow Crust,2.400005E+02,5.801272E+01,0.000000E+00 +766578,fr,1,3.650000E+00,6.928860E+00,4.487025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998711E+01,-9.000000E+01 +766584,fr,2,3.750000E+00,6.928860E+00,4.487025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998865E+01,0.000000E+00 +766585,fr,2,3.750000E+00,6.928860E+00,4.487025E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998865E+01,0.000000E+00 +766589,fr,1,3.750000E+00,6.928860E+00,4.487025E+01,2.750000E+01,Active Shallow Crust,2.400090E+02,5.801694E+01,0.000000E+00 +766596,fr,3,3.850000E+00,6.928860E+00,4.487025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +766608,fr,2,3.950000E+00,6.928860E+00,4.487025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999098E+01,0.000000E+00 +766611,fr,1,3.950000E+00,6.928860E+00,4.487025E+01,5.000000E+00,Active Shallow Crust,2.400196E+02,5.800423E+01,0.000000E+00 +766620,fr,2,4.050000E+00,6.928860E+00,4.487025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999196E+01,0.000000E+00 +766632,fr,1,4.150000E+00,6.928860E+00,4.487025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +766638,fr,1,4.150000E+00,6.928860E+00,4.487025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998913E+01,-9.000000E+01 +766641,fr,1,4.150000E+00,6.928860E+00,4.487025E+01,5.000000E+00,Active Shallow Crust,1.288975E+02,8.999463E+01,0.000000E+00 +766644,fr,1,4.250000E+00,6.928860E+00,4.487025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +766645,fr,1,4.250000E+00,6.928860E+00,4.487025E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +766656,fr,1,4.350000E+00,6.928860E+00,4.487025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +766658,fr,1,4.350000E+00,6.928860E+00,4.487025E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +766665,fr,1,4.350000E+00,6.928860E+00,4.487025E+01,5.000000E+00,Active Shallow Crust,1.288989E+02,8.998244E+01,0.000000E+00 +766672,fr,1,4.450000E+00,6.928860E+00,4.487025E+01,1.500000E+01,Active Shallow Crust,2.400046E+02,5.799458E+01,0.000000E+00 +766681,fr,1,4.550000E+00,6.928860E+00,4.487025E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999096E+01,0.000000E+00 +766703,fr,1,4.650000E+00,6.928860E+00,4.487025E+01,2.750000E+01,Active Shallow Crust,1.288913E+02,8.998713E+01,0.000000E+00 +766728,fr,1,4.950000E+00,6.928860E+00,4.487025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +767040,fr,2,3.550000E+00,8.362330E+00,4.827449E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998658E+01,0.000000E+00 +767041,fr,2,3.550000E+00,8.362330E+00,4.827449E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998658E+01,0.000000E+00 +767052,fr,1,3.650000E+00,8.362330E+00,4.827449E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998804E+01,0.000000E+00 +767055,fr,1,3.650000E+00,8.362330E+00,4.827449E+01,5.000000E+00,Active Shallow Crust,2.400024E+02,5.801276E+01,0.000000E+00 +767064,fr,1,3.750000E+00,8.362330E+00,4.827449E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +767076,fr,1,3.850000E+00,8.362330E+00,4.827449E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +767077,fr,2,3.850000E+00,8.362330E+00,4.827449E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +767104,fr,1,4.050000E+00,8.362330E+00,4.827449E+01,1.500000E+01,Active Shallow Crust,2.400053E+02,5.800620E+01,0.000000E+00 +767110,fr,1,4.050000E+00,8.362330E+00,4.827449E+01,1.500000E+01,Active Shallow Crust,1.288907E+02,8.999245E+01,0.000000E+00 +767112,fr,1,4.150000E+00,8.362330E+00,4.827449E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999327E+01,0.000000E+00 +767124,fr,1,4.250000E+00,8.362330E+00,4.827449E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998801E+01,0.000000E+00 +767137,fr,1,4.350000E+00,8.362330E+00,4.827449E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +767522,fr,1,3.550000E+00,-3.658460E+00,4.841895E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +767529,fr,1,3.550000E+00,-3.658460E+00,4.841895E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.999498E+01,0.000000E+00 +767531,fr,1,3.550000E+00,-3.658460E+00,4.841895E+01,2.750000E+01,Active Shallow Crust,1.288952E+02,8.999498E+01,0.000000E+00 +767533,fr,2,3.650000E+00,-3.658460E+00,4.841895E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999105E+01,0.000000E+00 +767541,fr,1,3.650000E+00,-3.658460E+00,4.841895E+01,5.000000E+00,Active Shallow Crust,1.288995E+02,8.996356E+01,0.000000E+00 +767544,fr,1,3.750000E+00,-3.658460E+00,4.841895E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +767545,fr,1,3.750000E+00,-3.658460E+00,4.841895E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +767546,fr,1,3.750000E+00,-3.658460E+00,4.841895E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +767552,fr,1,3.750000E+00,-3.658460E+00,4.841895E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998924E+01,-9.000000E+01 +767595,fr,1,4.150000E+00,-3.658460E+00,4.841895E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.799738E+01,0.000000E+00 +767628,fr,1,4.450000E+00,-3.658460E+00,4.841895E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +767640,fr,1,4.550000E+00,-3.658460E+00,4.841895E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +767652,fr,1,4.650000E+00,-3.658460E+00,4.841895E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +768000,fr,3,3.550000E+00,-3.290470E+00,4.831741E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +768012,fr,1,3.650000E+00,-3.290470E+00,4.831741E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +768014,fr,1,3.650000E+00,-3.290470E+00,4.831741E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +768015,fr,1,3.650000E+00,-3.290470E+00,4.831741E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801310E+01,0.000000E+00 +768017,fr,1,3.650000E+00,-3.290470E+00,4.831741E+01,2.750000E+01,Active Shallow Crust,2.400010E+02,5.801301E+01,0.000000E+00 +768024,fr,3,3.750000E+00,-3.290470E+00,4.831741E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +768027,fr,1,3.750000E+00,-3.290470E+00,4.831741E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.801757E+01,0.000000E+00 +768030,fr,1,3.750000E+00,-3.290470E+00,4.831741E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998922E+01,-9.000000E+01 +768034,fr,1,3.750000E+00,-3.290470E+00,4.831741E+01,1.500000E+01,Active Shallow Crust,1.288966E+02,8.996728E+01,0.000000E+00 +768060,fr,1,4.050000E+00,-3.290470E+00,4.831741E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +768062,fr,1,4.050000E+00,-3.290470E+00,4.831741E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +768065,fr,1,4.050000E+00,-3.290470E+00,4.831741E+01,2.750000E+01,Active Shallow Crust,2.400061E+02,5.800601E+01,0.000000E+00 +768081,fr,1,4.150000E+00,-3.290470E+00,4.831741E+01,5.000000E+00,Active Shallow Crust,1.288973E+02,8.999328E+01,0.000000E+00 +768114,fr,1,4.450000E+00,-3.290470E+00,4.831741E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,-9.000000E+01 +768960,fr,1,3.550000E+00,2.229540E+00,5.025087E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +768963,fr,1,3.550000E+00,2.229540E+00,5.025087E+01,5.000000E+00,Active Shallow Crust,2.400128E+02,5.799794E+01,0.000000E+00 +768978,fr,1,3.650000E+00,2.229540E+00,5.025087E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999128E+01,-9.000000E+01 +768999,fr,1,3.850000E+00,2.229540E+00,5.025087E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799807E+01,0.000000E+00 +769008,fr,1,3.950000E+00,2.229540E+00,5.025087E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +769011,fr,1,3.950000E+00,2.229540E+00,5.025087E+01,5.000000E+00,Active Shallow Crust,2.400205E+02,5.800480E+01,0.000000E+00 +769920,fr,1,3.550000E+00,1.257510E+00,4.758210E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +769932,fr,1,3.650000E+00,1.257510E+00,4.758210E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +769933,fr,1,3.650000E+00,1.257510E+00,4.758210E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +769944,fr,1,3.750000E+00,1.257510E+00,4.758210E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +769950,fr,1,3.750000E+00,1.257510E+00,4.758210E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,-9.000000E+01 +769951,fr,1,3.750000E+00,1.257510E+00,4.758210E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,-9.000000E+01 +769956,fr,2,3.850000E+00,1.257510E+00,4.758210E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +769958,fr,1,3.850000E+00,1.257510E+00,4.758210E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +769993,fr,1,4.150000E+00,1.257510E+00,4.758210E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +770016,fr,1,4.350000E+00,1.257510E+00,4.758210E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +770943,fr,1,4.050000E+00,3.955690E+00,5.283761E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.800574E+01,0.000000E+00 +770949,fr,1,4.050000E+00,3.955690E+00,5.283761E+01,5.000000E+00,Active Shallow Crust,1.288891E+02,8.999400E+01,0.000000E+00 +770955,fr,1,4.150000E+00,3.955690E+00,5.283761E+01,5.000000E+00,Active Shallow Crust,2.400096E+02,5.799781E+01,0.000000E+00 +771363,fr,2,3.550000E+00,2.939270E+00,4.260217E+01,5.000000E+00,Active Shallow Crust,2.400126E+02,5.799746E+01,0.000000E+00 +771372,fr,1,3.650000E+00,2.939270E+00,4.260217E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +771373,fr,1,3.650000E+00,2.939270E+00,4.260217E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +771380,fr,1,3.650000E+00,2.939270E+00,4.260217E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +771382,fr,1,3.650000E+00,2.939270E+00,4.260217E+01,1.500000E+01,Active Shallow Crust,1.289009E+02,8.996345E+01,0.000000E+00 +771406,fr,1,3.850000E+00,2.939270E+00,4.260217E+01,1.500000E+01,Active Shallow Crust,1.288957E+02,8.999474E+01,0.000000E+00 +771408,fr,1,3.950000E+00,2.939270E+00,4.260217E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +771432,fr,2,4.150000E+00,2.939270E+00,4.260217E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +771433,fr,3,4.150000E+00,2.939270E+00,4.260217E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +771444,fr,1,4.250000E+00,2.939270E+00,4.260217E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +771480,fr,1,4.550000E+00,2.939270E+00,4.260217E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +771483,fr,1,4.550000E+00,2.939270E+00,4.260217E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799735E+01,0.000000E+00 +771567,fr,1,5.250000E+00,2.939270E+00,4.260217E+01,5.000000E+00,Active Shallow Crust,2.400182E+02,5.799983E+01,0.000000E+00 +771602,fr,1,5.550000E+00,2.939270E+00,4.260217E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +771852,fr,1,3.650000E+00,-5.120970E+00,4.799795E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998797E+01,0.000000E+00 +771900,fr,1,4.050000E+00,-5.120970E+00,4.799795E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +771901,fr,1,4.050000E+00,-5.120970E+00,4.799795E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +771920,fr,1,4.150000E+00,-5.120970E+00,4.799795E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,-9.000000E+01 +772320,fr,1,3.550000E+00,-1.099450E+00,4.889672E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +772321,fr,1,3.550000E+00,-1.099450E+00,4.889672E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +772332,fr,1,3.650000E+00,-1.099450E+00,4.889672E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +772341,fr,1,3.650000E+00,-1.099450E+00,4.889672E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.996357E+01,0.000000E+00 +772350,fr,1,3.750000E+00,-1.099450E+00,4.889672E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998935E+01,-9.000000E+01 +772353,fr,1,3.750000E+00,-1.099450E+00,4.889672E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.996729E+01,0.000000E+00 +772362,fr,1,3.850000E+00,-1.099450E+00,4.889672E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999050E+01,-9.000000E+01 +772367,fr,1,3.850000E+00,-1.099450E+00,4.889672E+01,2.750000E+01,Active Shallow Crust,1.288955E+02,8.999355E+01,0.000000E+00 +772368,fr,1,3.950000E+00,-1.099450E+00,4.889672E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +772384,fr,1,4.050000E+00,-1.099450E+00,4.889672E+01,1.500000E+01,Active Shallow Crust,2.400063E+02,5.800593E+01,0.000000E+00 +772391,fr,1,4.050000E+00,-1.099450E+00,4.889672E+01,2.750000E+01,Active Shallow Crust,1.288904E+02,8.999348E+01,0.000000E+00 +772392,fr,1,4.150000E+00,-1.099450E+00,4.889672E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +772393,fr,1,4.150000E+00,-1.099450E+00,4.889672E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +772417,fr,1,4.350000E+00,-1.099450E+00,4.889672E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +772420,fr,1,4.350000E+00,-1.099450E+00,4.889672E+01,1.500000E+01,Active Shallow Crust,2.400089E+02,5.799609E+01,0.000000E+00 +772440,fr,1,4.550000E+00,-1.099450E+00,4.889672E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +772500,fr,1,5.050000E+00,-1.099450E+00,4.889672E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +772564,fr,1,5.550000E+00,-1.099450E+00,4.889672E+01,1.500000E+01,Active Shallow Crust,2.400350E+02,5.799995E+01,0.000000E+00 +772804,fr,1,3.550000E+00,6.934010E+00,4.327516E+01,1.500000E+01,Active Shallow Crust,2.400128E+02,5.799739E+01,0.000000E+00 +772812,fr,1,3.650000E+00,6.934010E+00,4.327516E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998692E+01,0.000000E+00 +772813,fr,1,3.650000E+00,6.934010E+00,4.327516E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998692E+01,0.000000E+00 +772824,fr,1,3.750000E+00,6.934010E+00,4.327516E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998833E+01,0.000000E+00 +772842,fr,1,3.850000E+00,6.934010E+00,4.327516E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,-9.000000E+01 +772848,fr,1,3.950000E+00,6.934010E+00,4.327516E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +772860,fr,1,4.050000E+00,6.934010E+00,4.327516E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999174E+01,0.000000E+00 +772861,fr,1,4.050000E+00,6.934010E+00,4.327516E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999174E+01,0.000000E+00 +773281,fr,2,3.550000E+00,-2.922020E+00,4.740075E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +773283,fr,1,3.550000E+00,-2.922020E+00,4.740075E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799797E+01,0.000000E+00 +773292,fr,1,3.650000E+00,-2.922020E+00,4.740075E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +773304,fr,1,3.750000E+00,-2.922020E+00,4.740075E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +773316,fr,1,3.850000E+00,-2.922020E+00,4.740075E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +773317,fr,1,3.850000E+00,-2.922020E+00,4.740075E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +773318,fr,2,3.850000E+00,-2.922020E+00,4.740075E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +773328,fr,1,3.950000E+00,-2.922020E+00,4.740075E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +773329,fr,1,3.950000E+00,-2.922020E+00,4.740075E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +773361,fr,1,4.150000E+00,-2.922020E+00,4.740075E+01,5.000000E+00,Active Shallow Crust,1.288974E+02,8.999401E+01,0.000000E+00 +773388,fr,1,4.450000E+00,-2.922020E+00,4.740075E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +773490,fr,1,5.250000E+00,-2.922020E+00,4.740075E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,-9.000000E+01 +773760,fr,3,3.550000E+00,2.270100E-01,4.644579E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +773764,fr,2,3.550000E+00,2.270100E-01,4.644579E+01,1.500000E+01,Active Shallow Crust,2.400122E+02,5.799819E+01,0.000000E+00 +773772,fr,2,3.650000E+00,2.270100E-01,4.644579E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +773778,fr,1,3.650000E+00,2.270100E-01,4.644579E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +773784,fr,1,3.750000E+00,2.270100E-01,4.644579E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +773797,fr,1,3.850000E+00,2.270100E-01,4.644579E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +773802,fr,1,3.850000E+00,2.270100E-01,4.644579E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,-9.000000E+01 +773811,fr,1,3.950000E+00,2.270100E-01,4.644579E+01,5.000000E+00,Active Shallow Crust,2.400198E+02,5.800498E+01,0.000000E+00 +773814,fr,1,3.950000E+00,2.270100E-01,4.644579E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +773818,fr,1,3.950000E+00,2.270100E-01,4.644579E+01,1.500000E+01,Active Shallow Crust,1.289004E+02,8.999377E+01,0.000000E+00 +773880,fr,1,4.550000E+00,2.270100E-01,4.644579E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +773994,fr,1,5.450000E+00,2.270100E-01,4.644579E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +774243,fr,1,3.550000E+00,-2.339030E+00,4.893818E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799784E+01,0.000000E+00 +774246,fr,1,3.550000E+00,-2.339030E+00,4.893818E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,-9.000000E+01 +774256,fr,1,3.650000E+00,-2.339030E+00,4.893818E+01,1.500000E+01,Active Shallow Crust,2.400010E+02,5.801295E+01,0.000000E+00 +774262,fr,1,3.650000E+00,-2.339030E+00,4.893818E+01,1.500000E+01,Active Shallow Crust,1.289002E+02,8.996330E+01,0.000000E+00 +774264,fr,1,3.750000E+00,-2.339030E+00,4.893818E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +774265,fr,1,3.750000E+00,-2.339030E+00,4.893818E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +774276,fr,1,3.850000E+00,-2.339030E+00,4.893818E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +774277,fr,1,3.850000E+00,-2.339030E+00,4.893818E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +774288,fr,1,3.950000E+00,-2.339030E+00,4.893818E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +774290,fr,1,3.950000E+00,-2.339030E+00,4.893818E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +774302,fr,1,4.050000E+00,-2.339030E+00,4.893818E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +774325,fr,1,4.250000E+00,-2.339030E+00,4.893818E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +774363,fr,1,4.550000E+00,-2.339030E+00,4.893818E+01,5.000000E+00,Active Shallow Crust,2.400101E+02,5.799743E+01,0.000000E+00 +774375,fr,1,4.650000E+00,-2.339030E+00,4.893818E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799438E+01,0.000000E+00 +774384,fr,1,4.750000E+00,-2.339030E+00,4.893818E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +774480,fr,1,5.550000E+00,-2.339030E+00,4.893818E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +774513,fr,1,5.750000E+00,-2.339030E+00,4.893818E+01,5.000000E+00,Active Shallow Crust,1.288689E+02,8.999100E+01,0.000000E+00 +774720,fr,1,3.550000E+00,8.630800E-01,5.045809E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +774738,fr,1,3.650000E+00,8.630800E-01,5.045809E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,-9.000000E+01 +774741,fr,1,3.650000E+00,8.630800E-01,5.045809E+01,5.000000E+00,Active Shallow Crust,1.288999E+02,8.996348E+01,0.000000E+00 +774744,fr,1,3.750000E+00,8.630800E-01,5.045809E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +774780,fr,1,4.050000E+00,8.630800E-01,5.045809E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +775203,fr,1,3.550000E+00,5.451690E+00,4.728842E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799803E+01,0.000000E+00 +775215,fr,1,3.650000E+00,5.451690E+00,4.728842E+01,5.000000E+00,Active Shallow Crust,2.400004E+02,5.801355E+01,0.000000E+00 +775218,fr,1,3.650000E+00,5.451690E+00,4.728842E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998766E+01,-9.000000E+01 +775226,fr,1,3.750000E+00,5.451690E+00,4.728842E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +775228,fr,1,3.750000E+00,5.451690E+00,4.728842E+01,1.500000E+01,Active Shallow Crust,2.400073E+02,5.801778E+01,0.000000E+00 +775232,fr,1,3.750000E+00,5.451690E+00,4.728842E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998901E+01,-9.000000E+01 +775248,fr,1,3.950000E+00,5.451690E+00,4.728842E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999137E+01,0.000000E+00 +775260,fr,1,4.050000E+00,5.451690E+00,4.728842E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998846E+01,0.000000E+00 +775297,fr,1,4.350000E+00,5.451690E+00,4.728842E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +775317,fr,1,4.450000E+00,5.451690E+00,4.728842E+01,5.000000E+00,Active Shallow Crust,1.288920E+02,8.999393E+01,0.000000E+00 +775344,fr,1,4.750000E+00,5.451690E+00,4.728842E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +775358,fr,1,4.850000E+00,5.451690E+00,4.728842E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998928E+01,0.000000E+00 +775441,fr,1,5.550000E+00,5.451690E+00,4.728842E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +776169,fr,1,3.550000E+00,5.544340E+00,4.806717E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999326E+01,0.000000E+00 +776172,fr,1,3.650000E+00,5.544340E+00,4.806717E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998799E+01,0.000000E+00 +776174,fr,1,3.650000E+00,5.544340E+00,4.806717E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998799E+01,0.000000E+00 +776175,fr,1,3.650000E+00,5.544340E+00,4.806717E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801342E+01,0.000000E+00 +776184,fr,1,3.750000E+00,5.544340E+00,4.806717E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +776186,fr,1,3.750000E+00,5.544340E+00,4.806717E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +776208,fr,1,3.950000E+00,5.544340E+00,4.806717E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999149E+01,0.000000E+00 +776210,fr,1,3.950000E+00,5.544340E+00,4.806717E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999149E+01,0.000000E+00 +776295,fr,1,4.650000E+00,5.544340E+00,4.806717E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799413E+01,0.000000E+00 +776326,fr,1,4.850000E+00,5.544340E+00,4.806717E+01,1.500000E+01,Active Shallow Crust,1.288918E+02,8.998914E+01,0.000000E+00 +776640,fr,4,3.550000E+00,2.043470E+00,5.063323E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +776661,fr,1,3.650000E+00,2.043470E+00,5.063323E+01,5.000000E+00,Active Shallow Crust,1.288993E+02,8.996360E+01,0.000000E+00 +776666,fr,1,3.750000E+00,2.043470E+00,5.063323E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +776676,fr,1,3.850000E+00,2.043470E+00,5.063323E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +776723,fr,1,4.150000E+00,2.043470E+00,5.063323E+01,2.750000E+01,Active Shallow Crust,1.288972E+02,8.999359E+01,0.000000E+00 +776737,fr,1,4.350000E+00,2.043470E+00,5.063323E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +777120,fr,1,3.550000E+00,7.374660E+00,4.399363E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999274E+01,0.000000E+00 +777122,fr,1,3.550000E+00,7.374660E+00,4.399363E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999274E+01,0.000000E+00 +777126,fr,1,3.550000E+00,7.374660E+00,4.399363E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999266E+01,-9.000000E+01 +777135,fr,2,3.650000E+00,7.374660E+00,4.399363E+01,5.000000E+00,Active Shallow Crust,2.400004E+02,5.801276E+01,0.000000E+00 +777138,fr,1,3.650000E+00,7.374660E+00,4.399363E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998692E+01,-9.000000E+01 +777144,fr,1,3.750000E+00,7.374660E+00,4.399363E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998847E+01,0.000000E+00 +777145,fr,1,3.750000E+00,7.374660E+00,4.399363E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998847E+01,0.000000E+00 +777162,fr,1,3.850000E+00,7.374660E+00,4.399363E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,-9.000000E+01 +777168,fr,3,3.950000E+00,7.374660E+00,4.399363E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +777169,fr,2,3.950000E+00,7.374660E+00,4.399363E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +777171,fr,1,3.950000E+00,7.374660E+00,4.399363E+01,5.000000E+00,Active Shallow Crust,2.400202E+02,5.800495E+01,0.000000E+00 +777181,fr,1,4.050000E+00,7.374660E+00,4.399363E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999184E+01,0.000000E+00 +777189,fr,1,4.050000E+00,7.374660E+00,4.399363E+01,5.000000E+00,Active Shallow Crust,1.288902E+02,8.999388E+01,0.000000E+00 +777192,fr,2,4.150000E+00,7.374660E+00,4.399363E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +777207,fr,1,4.250000E+00,7.374660E+00,4.399363E+01,5.000000E+00,Active Shallow Crust,2.400068E+02,5.799408E+01,0.000000E+00 +777216,fr,1,4.350000E+00,7.374660E+00,4.399363E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +777219,fr,1,4.350000E+00,7.374660E+00,4.399363E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799597E+01,0.000000E+00 +777243,fr,1,4.550000E+00,7.374660E+00,4.399363E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.799757E+01,0.000000E+00 +777253,fr,1,4.650000E+00,7.374660E+00,4.399363E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +777270,fr,1,4.750000E+00,7.374660E+00,4.399363E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,-9.000000E+01 +777363,fr,1,5.550000E+00,7.374660E+00,4.399363E+01,5.000000E+00,Active Shallow Crust,2.400268E+02,5.800217E+01,0.000000E+00 +777600,fr,1,3.550000E+00,3.029020E+00,4.884786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +777607,fr,1,3.550000E+00,3.029020E+00,4.884786E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,-9.000000E+01 +777609,fr,2,3.550000E+00,3.029020E+00,4.884786E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999336E+01,0.000000E+00 +777664,fr,1,4.050000E+00,3.029020E+00,4.884786E+01,1.500000E+01,Active Shallow Crust,2.400066E+02,5.800557E+01,0.000000E+00 +777724,fr,1,4.550000E+00,3.029020E+00,4.884786E+01,1.500000E+01,Active Shallow Crust,2.400098E+02,5.799760E+01,0.000000E+00 +778080,fr,3,3.550000E+00,-9.390900E-01,4.689540E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +778093,fr,3,3.650000E+00,-9.390900E-01,4.689540E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +778094,fr,1,3.650000E+00,-9.390900E-01,4.689540E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +778104,fr,1,3.750000E+00,-9.390900E-01,4.689540E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +778105,fr,1,3.750000E+00,-9.390900E-01,4.689540E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +778106,fr,1,3.750000E+00,-9.390900E-01,4.689540E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +778108,fr,1,3.750000E+00,-9.390900E-01,4.689540E+01,1.500000E+01,Active Shallow Crust,2.400085E+02,5.801754E+01,0.000000E+00 +778113,fr,1,3.750000E+00,-9.390900E-01,4.689540E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.996738E+01,0.000000E+00 +778118,fr,1,3.850000E+00,-9.390900E-01,4.689540E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +778119,fr,2,3.850000E+00,-9.390900E-01,4.689540E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799783E+01,0.000000E+00 +778128,fr,1,3.950000E+00,-9.390900E-01,4.689540E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +778131,fr,1,3.950000E+00,-9.390900E-01,4.689540E+01,5.000000E+00,Active Shallow Crust,2.400199E+02,5.800499E+01,0.000000E+00 +778134,fr,1,3.950000E+00,-9.390900E-01,4.689540E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +778140,fr,1,4.050000E+00,-9.390900E-01,4.689540E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +778141,fr,1,4.050000E+00,-9.390900E-01,4.689540E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +778145,fr,1,4.050000E+00,-9.390900E-01,4.689540E+01,2.750000E+01,Active Shallow Crust,2.400060E+02,5.800583E+01,0.000000E+00 +778158,fr,1,4.150000E+00,-9.390900E-01,4.689540E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,-9.000000E+01 +778176,fr,3,4.350000E+00,-9.390900E-01,4.689540E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +778185,fr,1,4.350000E+00,-9.390900E-01,4.689540E+01,5.000000E+00,Active Shallow Crust,1.288978E+02,8.998273E+01,0.000000E+00 +778206,fr,1,4.550000E+00,-9.390900E-01,4.689540E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,-9.000000E+01 +778248,fr,1,4.950000E+00,-9.390900E-01,4.689540E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +778572,fr,1,3.650000E+00,-3.360000E-03,5.080930E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +778591,fr,1,3.750000E+00,-3.360000E-03,5.080930E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +778608,fr,1,3.950000E+00,-3.360000E-03,5.080930E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +778625,fr,1,4.050000E+00,-3.360000E-03,5.080930E+01,2.750000E+01,Active Shallow Crust,2.400067E+02,5.800594E+01,0.000000E+00 +778644,fr,1,4.250000E+00,-3.360000E-03,5.080930E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +779052,fr,1,3.650000E+00,-1.053770E+00,4.237485E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +779070,fr,1,3.750000E+00,-1.053770E+00,4.237485E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,-9.000000E+01 +779078,fr,1,3.850000E+00,-1.053770E+00,4.237485E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +779091,fr,1,3.950000E+00,-1.053770E+00,4.237485E+01,5.000000E+00,Active Shallow Crust,2.400193E+02,5.800484E+01,0.000000E+00 +779115,fr,1,4.150000E+00,-1.053770E+00,4.237485E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799726E+01,0.000000E+00 +779185,fr,1,4.750000E+00,-1.053770E+00,4.237485E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +779520,fr,1,3.550000E+00,1.599640E+00,4.852604E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +779544,fr,1,3.750000E+00,1.599640E+00,4.852604E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +779556,fr,1,3.850000E+00,1.599640E+00,4.852604E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +779568,fr,1,3.950000E+00,1.599640E+00,4.852604E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +779592,fr,1,4.150000E+00,1.599640E+00,4.852604E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +779614,fr,1,4.250000E+00,1.599640E+00,4.852604E+01,1.500000E+01,Active Shallow Crust,1.288939E+02,8.998090E+01,0.000000E+00 +780003,fr,1,3.550000E+00,-6.229120E+00,4.924578E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799852E+01,0.000000E+00 +780504,fr,1,3.750000E+00,-7.886000E-02,4.398248E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +780516,fr,1,3.850000E+00,-7.886000E-02,4.398248E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +780538,fr,1,3.950000E+00,-7.886000E-02,4.398248E+01,1.500000E+01,Active Shallow Crust,1.289007E+02,8.999371E+01,0.000000E+00 +780960,fr,1,3.550000E+00,-3.581280E+00,4.815464E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +780965,fr,1,3.550000E+00,-3.581280E+00,4.815464E+01,2.750000E+01,Active Shallow Crust,2.400125E+02,5.799855E+01,0.000000E+00 +780969,fr,1,3.550000E+00,-3.581280E+00,4.815464E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999327E+01,0.000000E+00 +780972,fr,2,3.650000E+00,-3.581280E+00,4.815464E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +780973,fr,1,3.650000E+00,-3.581280E+00,4.815464E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +780984,fr,1,3.750000E+00,-3.581280E+00,4.815464E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +780996,fr,1,3.850000E+00,-3.581280E+00,4.815464E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +781020,fr,1,4.050000E+00,-3.581280E+00,4.815464E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +781023,fr,1,4.050000E+00,-3.581280E+00,4.815464E+01,5.000000E+00,Active Shallow Crust,2.400062E+02,5.800597E+01,0.000000E+00 +781032,fr,1,4.150000E+00,-3.581280E+00,4.815464E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +781033,fr,1,4.150000E+00,-3.581280E+00,4.815464E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +781038,fr,1,4.150000E+00,-3.581280E+00,4.815464E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,-9.000000E+01 +781054,fr,1,4.250000E+00,-3.581280E+00,4.815464E+01,1.500000E+01,Active Shallow Crust,1.288944E+02,8.998076E+01,0.000000E+00 +781056,fr,1,4.350000E+00,-3.581280E+00,4.815464E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +781452,fr,2,3.650000E+00,1.440900E+00,4.505444E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +781453,fr,1,3.650000E+00,1.440900E+00,4.505444E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +781486,fr,1,3.850000E+00,1.440900E+00,4.505444E+01,1.500000E+01,Active Shallow Crust,1.288959E+02,8.999370E+01,0.000000E+00 +781642,fr,1,5.150000E+00,1.440900E+00,4.505444E+01,1.500000E+01,Active Shallow Crust,1.288845E+02,8.999099E+01,0.000000E+00 +781921,fr,1,3.550000E+00,-2.206600E+00,4.719431E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +781926,fr,1,3.550000E+00,-2.206600E+00,4.719431E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,-9.000000E+01 +781927,fr,1,3.550000E+00,-2.206600E+00,4.719431E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998960E+01,-9.000000E+01 +781932,fr,1,3.650000E+00,-2.206600E+00,4.719431E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +781933,fr,1,3.650000E+00,-2.206600E+00,4.719431E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +781942,fr,1,3.650000E+00,-2.206600E+00,4.719431E+01,1.500000E+01,Active Shallow Crust,1.289007E+02,8.996354E+01,0.000000E+00 +781945,fr,1,3.750000E+00,-2.206600E+00,4.719431E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +781956,fr,1,3.850000E+00,-2.206600E+00,4.719431E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +781959,fr,2,3.850000E+00,-2.206600E+00,4.719431E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799767E+01,0.000000E+00 +781968,fr,2,3.950000E+00,-2.206600E+00,4.719431E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998919E+01,0.000000E+00 +781969,fr,1,3.950000E+00,-2.206600E+00,4.719431E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998919E+01,0.000000E+00 +781980,fr,2,4.050000E+00,-2.206600E+00,4.719431E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +782004,fr,2,4.250000E+00,-2.206600E+00,4.719431E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +782018,fr,1,4.350000E+00,-2.206600E+00,4.719431E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +782078,fr,1,4.850000E+00,-2.206600E+00,4.719431E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +782137,fr,1,5.350000E+00,-2.206600E+00,4.719431E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +782401,fr,1,3.550000E+00,-4.654740E+00,4.722453E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999315E+01,0.000000E+00 +782452,fr,1,3.950000E+00,-4.654740E+00,4.722453E+01,1.500000E+01,Active Shallow Crust,2.400204E+02,5.800452E+01,0.000000E+00 +782625,fr,1,5.350000E+00,-4.654740E+00,4.722453E+01,5.000000E+00,Active Shallow Crust,1.288827E+02,8.998796E+01,0.000000E+00 +782892,fr,3,3.650000E+00,4.234080E+00,4.724822E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998780E+01,0.000000E+00 +782904,fr,1,3.750000E+00,4.234080E+00,4.724822E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998913E+01,0.000000E+00 +782916,fr,1,3.850000E+00,4.234080E+00,4.724822E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +782918,fr,1,3.850000E+00,4.234080E+00,4.724822E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +782952,fr,1,4.150000E+00,4.234080E+00,4.724822E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +783457,fr,1,4.350000E+00,5.331100E+00,4.992461E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +783840,fr,3,3.550000E+00,7.413710E+00,4.532154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999291E+01,0.000000E+00 +783841,fr,1,3.550000E+00,7.413710E+00,4.532154E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999291E+01,0.000000E+00 +783843,fr,1,3.550000E+00,7.413710E+00,4.532154E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799849E+01,0.000000E+00 +783849,fr,1,3.550000E+00,7.413710E+00,4.532154E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.999645E+01,0.000000E+00 +783852,fr,1,3.650000E+00,7.413710E+00,4.532154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998736E+01,0.000000E+00 +783854,fr,1,3.650000E+00,7.413710E+00,4.532154E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998736E+01,0.000000E+00 +783863,fr,1,3.650000E+00,7.413710E+00,4.532154E+01,2.750000E+01,Active Shallow Crust,1.289010E+02,8.996350E+01,0.000000E+00 +783864,fr,1,3.750000E+00,7.413710E+00,4.532154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998874E+01,0.000000E+00 +783867,fr,1,3.750000E+00,7.413710E+00,4.532154E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801748E+01,0.000000E+00 +783874,fr,1,3.750000E+00,7.413710E+00,4.532154E+01,1.500000E+01,Active Shallow Crust,1.288972E+02,8.996747E+01,0.000000E+00 +783876,fr,3,3.850000E+00,7.413710E+00,4.532154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +783877,fr,1,3.850000E+00,7.413710E+00,4.532154E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +783878,fr,1,3.850000E+00,7.413710E+00,4.532154E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +783888,fr,1,3.950000E+00,7.413710E+00,4.532154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999105E+01,0.000000E+00 +783889,fr,1,3.950000E+00,7.413710E+00,4.532154E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999105E+01,0.000000E+00 +783890,fr,1,3.950000E+00,7.413710E+00,4.532154E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999105E+01,0.000000E+00 +783911,fr,1,4.050000E+00,7.413710E+00,4.532154E+01,2.750000E+01,Active Shallow Crust,1.288906E+02,8.999402E+01,0.000000E+00 +783916,fr,1,4.150000E+00,7.413710E+00,4.532154E+01,1.500000E+01,Active Shallow Crust,2.400080E+02,5.799787E+01,0.000000E+00 +783930,fr,1,4.250000E+00,7.413710E+00,4.532154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,-9.000000E+01 +783939,fr,1,4.350000E+00,7.413710E+00,4.532154E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799631E+01,0.000000E+00 +783940,fr,1,4.350000E+00,7.413710E+00,4.532154E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.799631E+01,0.000000E+00 +783960,fr,1,4.550000E+00,7.413710E+00,4.532154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999103E+01,0.000000E+00 +783985,fr,1,4.750000E+00,7.413710E+00,4.532154E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +784800,fr,2,3.550000E+00,2.023320E+00,4.576342E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +784801,fr,1,3.550000E+00,2.023320E+00,4.576342E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +784812,fr,1,3.650000E+00,2.023320E+00,4.576342E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +784813,fr,1,3.650000E+00,2.023320E+00,4.576342E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +784824,fr,1,3.750000E+00,2.023320E+00,4.576342E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +784839,fr,1,3.850000E+00,2.023320E+00,4.576342E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799769E+01,0.000000E+00 +784872,fr,2,4.150000E+00,2.023320E+00,4.576342E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +784974,fr,1,4.950000E+00,2.023320E+00,4.576342E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +785172,fr,1,6.650000E+00,2.023333E+00,4.576342E+01,1.068981E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +785761,fr,1,3.550000E+00,6.912130E+00,4.950072E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998690E+01,0.000000E+00 +785772,fr,1,3.650000E+00,6.912130E+00,4.950072E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998833E+01,0.000000E+00 +785785,fr,1,3.750000E+00,6.912130E+00,4.950072E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +785787,fr,2,3.750000E+00,6.912130E+00,4.950072E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.801714E+01,0.000000E+00 +785789,fr,1,3.750000E+00,6.912130E+00,4.950072E+01,2.750000E+01,Active Shallow Crust,2.400090E+02,5.801714E+01,0.000000E+00 +785850,fr,1,4.250000E+00,6.912130E+00,4.950072E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999112E+01,-9.000000E+01 +786247,fr,1,3.550000E+00,3.330660E+00,4.901464E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +786720,fr,1,3.550000E+00,2.719880E+00,4.323415E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +786744,fr,1,3.750000E+00,2.719880E+00,4.323415E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999125E+01,0.000000E+00 +786756,fr,1,3.850000E+00,2.719880E+00,4.323415E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +786757,fr,1,3.850000E+00,2.719880E+00,4.323415E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +786758,fr,1,3.850000E+00,2.719880E+00,4.323415E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +786768,fr,1,3.950000E+00,2.719880E+00,4.323415E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999073E+01,0.000000E+00 +786780,fr,1,4.050000E+00,2.719880E+00,4.323415E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +786792,fr,1,4.150000E+00,2.719880E+00,4.323415E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999079E+01,0.000000E+00 +787200,fr,1,3.550000E+00,1.707850E+00,4.905686E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +787202,fr,1,3.550000E+00,1.707850E+00,4.905686E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +787209,fr,1,3.550000E+00,1.707850E+00,4.905686E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999422E+01,0.000000E+00 +787212,fr,1,3.650000E+00,1.707850E+00,4.905686E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +787213,fr,1,3.650000E+00,1.707850E+00,4.905686E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +787224,fr,1,3.750000E+00,1.707850E+00,4.905686E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +787263,fr,1,4.050000E+00,1.707850E+00,4.905686E+01,5.000000E+00,Active Shallow Crust,2.400065E+02,5.800592E+01,0.000000E+00 +787392,fr,1,5.150000E+00,1.707850E+00,4.905686E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +787692,fr,3,3.650000E+00,-2.640380E+00,4.218810E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +787698,fr,1,3.650000E+00,-2.640380E+00,4.218810E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,-9.000000E+01 +787704,fr,2,3.750000E+00,-2.640380E+00,4.218810E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +787707,fr,1,3.750000E+00,-2.640380E+00,4.218810E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.801790E+01,0.000000E+00 +787708,fr,2,3.750000E+00,-2.640380E+00,4.218810E+01,1.500000E+01,Active Shallow Crust,2.400074E+02,5.801790E+01,0.000000E+00 +787713,fr,1,3.750000E+00,-2.640380E+00,4.218810E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.996712E+01,0.000000E+00 +787717,fr,1,3.850000E+00,-2.640380E+00,4.218810E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +787728,fr,1,3.950000E+00,-2.640380E+00,4.218810E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +787753,fr,1,4.150000E+00,-2.640380E+00,4.218810E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +787764,fr,1,4.250000E+00,-2.640380E+00,4.218810E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +787779,fr,1,4.350000E+00,-2.640380E+00,4.218810E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799569E+01,0.000000E+00 +787788,fr,1,4.450000E+00,-2.640380E+00,4.218810E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +787797,fr,1,4.450000E+00,-2.640380E+00,4.218810E+01,5.000000E+00,Active Shallow Crust,1.288931E+02,8.999337E+01,0.000000E+00 +787813,fr,1,4.650000E+00,-2.640380E+00,4.218810E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +787830,fr,1,4.750000E+00,-2.640380E+00,4.218810E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,-9.000000E+01 +787848,fr,1,4.950000E+00,-2.640380E+00,4.218810E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +787884,fr,1,5.250000E+00,-2.640380E+00,4.218810E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +788160,fr,2,3.550000E+00,2.310820E+00,4.210271E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +788161,fr,1,3.550000E+00,2.310820E+00,4.210271E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +788162,fr,1,3.550000E+00,2.310820E+00,4.210271E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +788163,fr,1,3.550000E+00,2.310820E+00,4.210271E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799843E+01,0.000000E+00 +788164,fr,1,3.550000E+00,2.310820E+00,4.210271E+01,1.500000E+01,Active Shallow Crust,2.400114E+02,5.799843E+01,0.000000E+00 +788169,fr,1,3.550000E+00,2.310820E+00,4.210271E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999439E+01,0.000000E+00 +788172,fr,4,3.650000E+00,2.310820E+00,4.210271E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +788178,fr,2,3.650000E+00,2.310820E+00,4.210271E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +788181,fr,1,3.650000E+00,2.310820E+00,4.210271E+01,5.000000E+00,Active Shallow Crust,1.289015E+02,8.996344E+01,0.000000E+00 +788183,fr,1,3.650000E+00,2.310820E+00,4.210271E+01,2.750000E+01,Active Shallow Crust,1.289015E+02,8.996344E+01,0.000000E+00 +788186,fr,1,3.750000E+00,2.310820E+00,4.210271E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999109E+01,0.000000E+00 +788196,fr,1,3.850000E+00,2.310820E+00,4.210271E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998941E+01,0.000000E+00 +788199,fr,1,3.850000E+00,2.310820E+00,4.210271E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799746E+01,0.000000E+00 +788202,fr,1,3.850000E+00,2.310820E+00,4.210271E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998928E+01,-9.000000E+01 +788232,fr,1,4.150000E+00,2.310820E+00,4.210271E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +788244,fr,1,4.250000E+00,2.310820E+00,4.210271E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +788280,fr,2,4.550000E+00,2.310820E+00,4.210271E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +788364,fr,1,5.250000E+00,2.310820E+00,4.210271E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +788401,fr,1,5.550000E+00,2.310820E+00,4.210271E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +788676,fr,1,3.850000E+00,-5.649110E+00,4.821421E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +788736,fr,1,4.350000E+00,-5.649110E+00,4.821421E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +788751,fr,1,4.450000E+00,-5.649110E+00,4.821421E+01,5.000000E+00,Active Shallow Crust,2.400063E+02,5.799467E+01,0.000000E+00 +788809,fr,1,4.950000E+00,-5.649110E+00,4.821421E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +789120,fr,1,3.550000E+00,5.309510E+00,4.413869E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999276E+01,0.000000E+00 +789121,fr,2,3.550000E+00,5.309510E+00,4.413869E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999276E+01,0.000000E+00 +789122,fr,1,3.550000E+00,5.309510E+00,4.413869E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999276E+01,0.000000E+00 +789132,fr,2,3.650000E+00,5.309510E+00,4.413869E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998710E+01,0.000000E+00 +789133,fr,2,3.650000E+00,5.309510E+00,4.413869E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998710E+01,0.000000E+00 +789141,fr,1,3.650000E+00,5.309510E+00,4.413869E+01,5.000000E+00,Active Shallow Crust,1.288996E+02,8.996348E+01,0.000000E+00 +789144,fr,2,3.750000E+00,5.309510E+00,4.413869E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998850E+01,0.000000E+00 +789145,fr,1,3.750000E+00,5.309510E+00,4.413869E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998850E+01,0.000000E+00 +789156,fr,2,3.850000E+00,5.309510E+00,4.413869E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +789157,fr,1,3.850000E+00,5.309510E+00,4.413869E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +789170,fr,1,3.950000E+00,5.309510E+00,4.413869E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999087E+01,0.000000E+00 +789179,fr,1,3.950000E+00,5.309510E+00,4.413869E+01,2.750000E+01,Active Shallow Crust,1.289005E+02,8.999315E+01,0.000000E+00 +789180,fr,1,4.050000E+00,5.309510E+00,4.413869E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999186E+01,0.000000E+00 +789195,fr,1,4.150000E+00,5.309510E+00,4.413869E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799710E+01,0.000000E+00 +789216,fr,1,4.350000E+00,5.309510E+00,4.413869E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999136E+01,0.000000E+00 +789217,fr,1,4.350000E+00,5.309510E+00,4.413869E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999136E+01,0.000000E+00 +789219,fr,1,4.350000E+00,5.309510E+00,4.413869E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799585E+01,0.000000E+00 +789240,fr,2,4.550000E+00,5.309510E+00,4.413869E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +789252,fr,1,4.650000E+00,5.309510E+00,4.413869E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +789600,fr,1,3.550000E+00,9.415300E-01,4.447727E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +789601,fr,2,3.550000E+00,9.415300E-01,4.447727E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +789669,fr,1,4.050000E+00,9.415300E-01,4.447727E+01,5.000000E+00,Active Shallow Crust,1.288908E+02,8.999368E+01,0.000000E+00 +789813,fr,1,5.250000E+00,9.415300E-01,4.447727E+01,5.000000E+00,Active Shallow Crust,1.288843E+02,8.998701E+01,0.000000E+00 +790080,fr,1,3.550000E+00,-7.659000E-01,4.798464E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +790089,fr,1,3.550000E+00,-7.659000E-01,4.798464E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999409E+01,0.000000E+00 +790092,fr,1,3.650000E+00,-7.659000E-01,4.798464E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +790101,fr,1,3.650000E+00,-7.659000E-01,4.798464E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.996349E+01,0.000000E+00 +790104,fr,1,3.750000E+00,-7.659000E-01,4.798464E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +790105,fr,2,3.750000E+00,-7.659000E-01,4.798464E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +790116,fr,1,3.850000E+00,-7.659000E-01,4.798464E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +790142,fr,1,4.050000E+00,-7.659000E-01,4.798464E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +790189,fr,1,4.450000E+00,-7.659000E-01,4.798464E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +790197,fr,1,4.450000E+00,-7.659000E-01,4.798464E+01,5.000000E+00,Active Shallow Crust,1.288919E+02,8.999371E+01,0.000000E+00 +790572,fr,1,3.650000E+00,4.811580E+00,4.260528E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998677E+01,0.000000E+00 +790575,fr,1,3.650000E+00,4.811580E+00,4.260528E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801271E+01,0.000000E+00 +790620,fr,2,4.050000E+00,4.811580E+00,4.260528E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999165E+01,0.000000E+00 +791532,fr,1,3.650000E+00,3.414230E+00,4.106029E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +791535,fr,1,3.650000E+00,3.414230E+00,4.106029E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801274E+01,0.000000E+00 +791544,fr,1,3.750000E+00,3.414230E+00,4.106029E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +791547,fr,1,3.750000E+00,3.414230E+00,4.106029E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801699E+01,0.000000E+00 +791556,fr,1,3.850000E+00,3.414230E+00,4.106029E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +791619,fr,1,4.350000E+00,3.414230E+00,4.106029E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.799568E+01,0.000000E+00 +791622,fr,1,4.350000E+00,3.414230E+00,4.106029E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998928E+01,-9.000000E+01 +791647,fr,1,4.550000E+00,3.414230E+00,4.106029E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,-9.000000E+01 +791656,fr,1,4.650000E+00,3.414230E+00,4.106029E+01,1.500000E+01,Active Shallow Crust,2.400090E+02,5.799396E+01,0.000000E+00 +792004,fr,1,3.550000E+00,1.659020E+00,5.036036E+01,1.500000E+01,Active Shallow Crust,2.400124E+02,5.799842E+01,0.000000E+00 +792006,fr,1,3.550000E+00,1.659020E+00,5.036036E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,-9.000000E+01 +792007,fr,1,3.550000E+00,1.659020E+00,5.036036E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,-9.000000E+01 +792012,fr,1,3.650000E+00,1.659020E+00,5.036036E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +792039,fr,1,3.850000E+00,1.659020E+00,5.036036E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799791E+01,0.000000E+00 +792063,fr,1,4.050000E+00,1.659020E+00,5.036036E+01,5.000000E+00,Active Shallow Crust,2.400066E+02,5.800592E+01,0.000000E+00 +792084,fr,1,4.250000E+00,1.659020E+00,5.036036E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +792096,fr,1,4.350000E+00,1.659020E+00,5.036036E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +792492,fr,1,3.650000E+00,2.095270E+00,5.037597E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999140E+01,0.000000E+00 +792501,fr,1,3.650000E+00,2.095270E+00,5.037597E+01,5.000000E+00,Active Shallow Crust,1.288993E+02,8.996360E+01,0.000000E+00 +792540,fr,1,4.050000E+00,2.095270E+00,5.037597E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998915E+01,0.000000E+00 +792550,fr,1,4.050000E+00,2.095270E+00,5.037597E+01,1.500000E+01,Active Shallow Crust,1.288900E+02,8.999368E+01,0.000000E+00 +792961,fr,2,3.550000E+00,3.415400E-01,5.173454E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +792966,fr,1,3.550000E+00,3.415400E-01,5.173454E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,-9.000000E+01 +792972,fr,2,3.650000E+00,3.415400E-01,5.173454E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +792975,fr,1,3.650000E+00,3.415400E-01,5.173454E+01,5.000000E+00,Active Shallow Crust,2.400016E+02,5.801301E+01,0.000000E+00 +792984,fr,2,3.750000E+00,3.415400E-01,5.173454E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +793026,fr,1,4.050000E+00,3.415400E-01,5.173454E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +793045,fr,1,4.250000E+00,3.415400E-01,5.173454E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +793440,fr,2,3.550000E+00,1.517540E+00,4.626585E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +793441,fr,1,3.550000E+00,1.517540E+00,4.626585E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +793443,fr,1,3.550000E+00,1.517540E+00,4.626585E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799839E+01,0.000000E+00 +793456,fr,2,3.650000E+00,1.517540E+00,4.626585E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801297E+01,0.000000E+00 +793459,fr,1,3.650000E+00,1.517540E+00,4.626585E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999057E+01,-9.000000E+01 +793465,fr,1,3.750000E+00,1.517540E+00,4.626585E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +793468,fr,1,3.750000E+00,1.517540E+00,4.626585E+01,1.500000E+01,Active Shallow Crust,2.400083E+02,5.801764E+01,0.000000E+00 +793475,fr,1,3.750000E+00,1.517540E+00,4.626585E+01,2.750000E+01,Active Shallow Crust,1.288965E+02,8.996736E+01,0.000000E+00 +793498,fr,1,3.950000E+00,1.517540E+00,4.626585E+01,1.500000E+01,Active Shallow Crust,1.289003E+02,8.999395E+01,0.000000E+00 +793500,fr,2,4.050000E+00,1.517540E+00,4.626585E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +793502,fr,1,4.050000E+00,1.517540E+00,4.626585E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +793548,fr,1,4.450000E+00,1.517540E+00,4.626585E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +793576,fr,1,4.650000E+00,1.517540E+00,4.626585E+01,1.500000E+01,Active Shallow Crust,2.400108E+02,5.799427E+01,0.000000E+00 +793731,fr,1,5.950000E+00,1.517540E+00,4.626585E+01,5.000000E+00,Active Shallow Crust,2.400508E+02,5.800057E+01,0.000000E+00 +794101,fr,1,5.050000E+00,-3.690380E+00,5.043566E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +794112,fr,1,5.150000E+00,-3.690380E+00,5.043566E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +794413,fr,1,3.650000E+00,-8.003500E-01,4.446139E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +794532,fr,1,4.650000E+00,-8.003500E-01,4.446139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +794917,fr,1,3.850000E+00,6.012720E+00,5.001347E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999082E+01,0.000000E+00 +794925,fr,1,3.850000E+00,6.012720E+00,5.001347E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.999541E+01,0.000000E+00 +794952,fr,1,4.150000E+00,6.012720E+00,5.001347E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +795360,fr,1,3.550000E+00,-1.458900E-01,4.574266E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +795361,fr,2,3.550000E+00,-1.458900E-01,4.574266E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +795362,fr,1,3.550000E+00,-1.458900E-01,4.574266E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +795363,fr,1,3.550000E+00,-1.458900E-01,4.574266E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799816E+01,0.000000E+00 +795367,fr,3,3.550000E+00,-1.458900E-01,4.574266E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +795372,fr,2,3.650000E+00,-1.458900E-01,4.574266E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +795373,fr,1,3.650000E+00,-1.458900E-01,4.574266E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +795390,fr,1,3.750000E+00,-1.458900E-01,4.574266E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,-9.000000E+01 +795391,fr,1,3.750000E+00,-1.458900E-01,4.574266E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,-9.000000E+01 +795396,fr,3,3.850000E+00,-1.458900E-01,4.574266E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +795411,fr,1,3.950000E+00,-1.458900E-01,4.574266E+01,5.000000E+00,Active Shallow Crust,2.400197E+02,5.800495E+01,0.000000E+00 +795420,fr,1,4.050000E+00,-1.458900E-01,4.574266E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +795433,fr,1,4.150000E+00,-1.458900E-01,4.574266E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +795453,fr,1,4.250000E+00,-1.458900E-01,4.574266E+01,5.000000E+00,Active Shallow Crust,1.288944E+02,8.998092E+01,0.000000E+00 +795481,fr,1,4.550000E+00,-1.458900E-01,4.574266E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +795504,fr,1,4.750000E+00,-1.458900E-01,4.574266E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +795539,fr,1,4.950000E+00,-1.458900E-01,4.574266E+01,2.750000E+01,Active Shallow Crust,1.288902E+02,8.998978E+01,0.000000E+00 +795565,fr,1,5.250000E+00,-1.458900E-01,4.574266E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +795602,fr,1,5.550000E+00,-1.458900E-01,4.574266E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +795840,fr,1,3.550000E+00,-2.361860E+00,4.485425E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998928E+01,0.000000E+00 +795850,fr,1,3.550000E+00,-2.361860E+00,4.485425E+01,1.500000E+01,Active Shallow Crust,1.288962E+02,8.999464E+01,0.000000E+00 +796321,fr,1,3.550000E+00,-3.173310E+00,4.226014E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998881E+01,0.000000E+00 +796370,fr,1,3.950000E+00,-3.173310E+00,4.226014E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +796380,fr,1,4.050000E+00,-3.173310E+00,4.226014E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +796428,fr,1,4.450000E+00,-3.173310E+00,4.226014E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998941E+01,0.000000E+00 +796452,fr,1,4.650000E+00,-3.173310E+00,4.226014E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +796800,fr,1,3.550000E+00,7.215550E+00,4.595402E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999299E+01,0.000000E+00 +796801,fr,1,3.550000E+00,7.215550E+00,4.595402E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999299E+01,0.000000E+00 +796803,fr,1,3.550000E+00,7.215550E+00,4.595402E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799791E+01,0.000000E+00 +796805,fr,1,3.550000E+00,7.215550E+00,4.595402E+01,2.750000E+01,Active Shallow Crust,2.400123E+02,5.799781E+01,0.000000E+00 +796806,fr,2,3.550000E+00,7.215550E+00,4.595402E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999290E+01,-9.000000E+01 +796812,fr,2,3.650000E+00,7.215550E+00,4.595402E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998750E+01,0.000000E+00 +796814,fr,1,3.650000E+00,7.215550E+00,4.595402E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998750E+01,0.000000E+00 +796818,fr,1,3.650000E+00,7.215550E+00,4.595402E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998736E+01,-9.000000E+01 +796824,fr,4,3.750000E+00,7.215550E+00,4.595402E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998886E+01,0.000000E+00 +796825,fr,1,3.750000E+00,7.215550E+00,4.595402E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998886E+01,0.000000E+00 +796833,fr,1,3.750000E+00,7.215550E+00,4.595402E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.996748E+01,0.000000E+00 +796836,fr,1,3.850000E+00,7.215550E+00,4.595402E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +796837,fr,1,3.850000E+00,7.215550E+00,4.595402E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +796846,fr,1,3.850000E+00,7.215550E+00,4.595402E+01,1.500000E+01,Active Shallow Crust,1.288960E+02,8.999504E+01,0.000000E+00 +796848,fr,4,3.950000E+00,7.215550E+00,4.595402E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999115E+01,0.000000E+00 +796849,fr,1,3.950000E+00,7.215550E+00,4.595402E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999115E+01,0.000000E+00 +796851,fr,1,3.950000E+00,7.215550E+00,4.595402E+01,5.000000E+00,Active Shallow Crust,2.400193E+02,5.800469E+01,0.000000E+00 +796860,fr,2,4.050000E+00,7.215550E+00,4.595402E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998817E+01,0.000000E+00 +796861,fr,2,4.050000E+00,7.215550E+00,4.595402E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998817E+01,0.000000E+00 +796872,fr,1,4.150000E+00,7.215550E+00,4.595402E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +796875,fr,1,4.150000E+00,7.215550E+00,4.595402E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799784E+01,0.000000E+00 +796884,fr,1,4.250000E+00,7.215550E+00,4.595402E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999061E+01,0.000000E+00 +796896,fr,3,4.350000E+00,7.215550E+00,4.595402E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998884E+01,0.000000E+00 +796921,fr,1,4.550000E+00,7.215550E+00,4.595402E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +797280,fr,1,3.550000E+00,1.391330E+00,4.424248E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +797293,fr,1,3.650000E+00,1.391330E+00,4.424248E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +797313,fr,1,3.750000E+00,1.391330E+00,4.424248E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996732E+01,0.000000E+00 +797341,fr,1,4.050000E+00,1.391330E+00,4.424248E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +797365,fr,1,4.250000E+00,1.391330E+00,4.424248E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +797760,fr,2,3.550000E+00,1.616560E+00,4.252402E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999071E+01,0.000000E+00 +797762,fr,1,3.550000E+00,1.616560E+00,4.252402E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999071E+01,0.000000E+00 +797763,fr,1,3.550000E+00,1.616560E+00,4.252402E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799805E+01,0.000000E+00 +797766,fr,1,3.550000E+00,1.616560E+00,4.252402E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999060E+01,-9.000000E+01 +797769,fr,2,3.550000E+00,1.616560E+00,4.252402E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999350E+01,0.000000E+00 +797772,fr,1,3.650000E+00,1.616560E+00,4.252402E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +797773,fr,2,3.650000E+00,1.616560E+00,4.252402E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +797784,fr,3,3.750000E+00,1.616560E+00,4.252402E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +797785,fr,1,3.750000E+00,1.616560E+00,4.252402E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +797796,fr,2,3.850000E+00,1.616560E+00,4.252402E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +797798,fr,1,3.850000E+00,1.616560E+00,4.252402E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +797805,fr,1,3.850000E+00,1.616560E+00,4.252402E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999408E+01,0.000000E+00 +797808,fr,1,3.950000E+00,1.616560E+00,4.252402E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +797811,fr,1,3.950000E+00,1.616560E+00,4.252402E+01,5.000000E+00,Active Shallow Crust,2.400193E+02,5.800499E+01,0.000000E+00 +797820,fr,1,4.050000E+00,1.616560E+00,4.252402E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +797832,fr,1,4.150000E+00,1.616560E+00,4.252402E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +797835,fr,1,4.150000E+00,1.616560E+00,4.252402E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799717E+01,0.000000E+00 +797845,fr,1,4.250000E+00,1.616560E+00,4.252402E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +797859,fr,1,4.350000E+00,1.616560E+00,4.252402E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.799582E+01,0.000000E+00 +797907,fr,1,4.750000E+00,1.616560E+00,4.252402E+01,5.000000E+00,Active Shallow Crust,2.400061E+02,5.800422E+01,0.000000E+00 +797952,fr,1,5.150000E+00,1.616560E+00,4.252402E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +798096,fr,1,6.350000E+00,1.616565E+00,4.252402E+01,7.567806E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +798240,fr,1,3.550000E+00,4.973930E+00,4.488554E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999286E+01,0.000000E+00 +798246,fr,1,3.550000E+00,4.973930E+00,4.488554E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999277E+01,-9.000000E+01 +798252,fr,2,3.650000E+00,4.973930E+00,4.488554E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998727E+01,0.000000E+00 +798255,fr,1,3.650000E+00,4.973930E+00,4.488554E+01,5.000000E+00,Active Shallow Crust,2.400003E+02,5.801308E+01,0.000000E+00 +798264,fr,1,3.750000E+00,4.973930E+00,4.488554E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998865E+01,0.000000E+00 +798274,fr,1,3.750000E+00,4.973930E+00,4.488554E+01,1.500000E+01,Active Shallow Crust,1.288964E+02,8.996746E+01,0.000000E+00 +798276,fr,1,3.850000E+00,4.973930E+00,4.488554E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +798289,fr,1,3.950000E+00,4.973930E+00,4.488554E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999098E+01,0.000000E+00 +798291,fr,1,3.950000E+00,4.973930E+00,4.488554E+01,5.000000E+00,Active Shallow Crust,2.400186E+02,5.800499E+01,0.000000E+00 +798300,fr,1,4.050000E+00,4.973930E+00,4.488554E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999197E+01,0.000000E+00 +798324,fr,1,4.250000E+00,4.973930E+00,4.488554E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +798338,fr,1,4.350000E+00,4.973930E+00,4.488554E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +798387,fr,1,4.750000E+00,4.973930E+00,4.488554E+01,5.000000E+00,Active Shallow Crust,2.400070E+02,5.800431E+01,0.000000E+00 +798396,fr,1,4.850000E+00,4.973930E+00,4.488554E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +798410,fr,1,4.950000E+00,4.973930E+00,4.488554E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +798492,fr,1,5.650000E+00,4.973930E+00,4.488554E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +798576,fr,1,6.350000E+00,4.973936E+00,4.488554E+01,7.567806E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +798720,fr,1,3.550000E+00,6.082900E+00,4.542467E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999292E+01,0.000000E+00 +798721,fr,1,3.550000E+00,6.082900E+00,4.542467E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999292E+01,0.000000E+00 +798723,fr,1,3.550000E+00,6.082900E+00,4.542467E+01,5.000000E+00,Active Shallow Crust,2.400129E+02,5.799671E+01,0.000000E+00 +798724,fr,1,3.550000E+00,6.082900E+00,4.542467E+01,1.500000E+01,Active Shallow Crust,2.400129E+02,5.799671E+01,0.000000E+00 +798726,fr,1,3.550000E+00,6.082900E+00,4.542467E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999284E+01,-9.000000E+01 +798732,fr,3,3.650000E+00,6.082900E+00,4.542467E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998738E+01,0.000000E+00 +798733,fr,1,3.650000E+00,6.082900E+00,4.542467E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998738E+01,0.000000E+00 +798738,fr,1,3.650000E+00,6.082900E+00,4.542467E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998724E+01,-9.000000E+01 +798741,fr,1,3.650000E+00,6.082900E+00,4.542467E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.996350E+01,0.000000E+00 +798745,fr,1,3.750000E+00,6.082900E+00,4.542467E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +798756,fr,2,3.850000E+00,6.082900E+00,4.542467E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +798762,fr,1,3.850000E+00,6.082900E+00,4.542467E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,-9.000000E+01 +798770,fr,1,3.950000E+00,6.082900E+00,4.542467E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +798780,fr,2,4.050000E+00,6.082900E+00,4.542467E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998806E+01,0.000000E+00 +798781,fr,1,4.050000E+00,6.082900E+00,4.542467E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998806E+01,0.000000E+00 +798810,fr,1,4.250000E+00,6.082900E+00,4.542467E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,-9.000000E+01 +798828,fr,1,4.450000E+00,6.082900E+00,4.542467E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +798840,fr,1,4.550000E+00,6.082900E+00,4.542467E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +798849,fr,1,4.550000E+00,6.082900E+00,4.542467E+01,5.000000E+00,Active Shallow Crust,1.288942E+02,8.998607E+01,0.000000E+00 +798892,fr,1,4.950000E+00,6.082900E+00,4.542467E+01,1.500000E+01,Active Shallow Crust,2.400114E+02,5.800438E+01,0.000000E+00 +799056,fr,1,6.350000E+00,6.082906E+00,4.542467E+01,7.567806E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +799200,fr,1,3.550000E+00,-4.849400E-01,4.585029E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +799201,fr,1,3.550000E+00,-4.849400E-01,4.585029E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +799224,fr,3,3.750000E+00,-4.849400E-01,4.585029E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +799229,fr,1,3.750000E+00,-4.849400E-01,4.585029E+01,2.750000E+01,Active Shallow Crust,2.400083E+02,5.801757E+01,0.000000E+00 +799233,fr,1,3.750000E+00,-4.849400E-01,4.585029E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.996735E+01,0.000000E+00 +799237,fr,1,3.850000E+00,-4.849400E-01,4.585029E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +799239,fr,2,3.850000E+00,-4.849400E-01,4.585029E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799778E+01,0.000000E+00 +799243,fr,1,3.850000E+00,-4.849400E-01,4.585029E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +799248,fr,2,3.950000E+00,-4.849400E-01,4.585029E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +799269,fr,1,4.050000E+00,-4.849400E-01,4.585029E+01,5.000000E+00,Active Shallow Crust,1.288906E+02,8.999371E+01,0.000000E+00 +799326,fr,1,4.550000E+00,-4.849400E-01,4.585029E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +799333,fr,1,4.650000E+00,-4.849400E-01,4.585029E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +799362,fr,1,4.850000E+00,-4.849400E-01,4.585029E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +799398,fr,1,5.150000E+00,-4.849400E-01,4.585029E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +799680,fr,1,3.550000E+00,5.139070E+00,4.184154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999249E+01,0.000000E+00 +799763,fr,1,4.150000E+00,5.139070E+00,4.184154E+01,2.750000E+01,Active Shallow Crust,1.288993E+02,8.999247E+01,0.000000E+00 +800160,fr,2,3.550000E+00,6.787050E+00,4.809648E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999326E+01,0.000000E+00 +800161,fr,2,3.550000E+00,6.787050E+00,4.809648E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999326E+01,0.000000E+00 +800163,fr,1,3.550000E+00,6.787050E+00,4.809648E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799850E+01,0.000000E+00 +800164,fr,1,3.550000E+00,6.787050E+00,4.809648E+01,1.500000E+01,Active Shallow Crust,2.400111E+02,5.799850E+01,0.000000E+00 +800168,fr,1,3.550000E+00,6.787050E+00,4.809648E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999319E+01,-9.000000E+01 +800172,fr,1,3.650000E+00,6.787050E+00,4.809648E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998799E+01,0.000000E+00 +800173,fr,1,3.650000E+00,6.787050E+00,4.809648E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998799E+01,0.000000E+00 +800178,fr,1,3.650000E+00,6.787050E+00,4.809648E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998785E+01,-9.000000E+01 +800184,fr,2,3.750000E+00,6.787050E+00,4.809648E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +800190,fr,1,3.750000E+00,6.787050E+00,4.809648E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,-9.000000E+01 +800198,fr,1,3.850000E+00,6.787050E+00,4.809648E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +800199,fr,1,3.850000E+00,6.787050E+00,4.809648E+01,5.000000E+00,Active Shallow Crust,2.400115E+02,5.799772E+01,0.000000E+00 +800205,fr,3,3.850000E+00,6.787050E+00,4.809648E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999523E+01,0.000000E+00 +800208,fr,2,3.950000E+00,6.787050E+00,4.809648E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999150E+01,0.000000E+00 +800214,fr,1,3.950000E+00,6.787050E+00,4.809648E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999140E+01,-9.000000E+01 +800220,fr,2,4.050000E+00,6.787050E+00,4.809648E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998864E+01,0.000000E+00 +800221,fr,1,4.050000E+00,6.787050E+00,4.809648E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998864E+01,0.000000E+00 +800226,fr,1,4.050000E+00,6.787050E+00,4.809648E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998850E+01,-9.000000E+01 +800232,fr,1,4.150000E+00,6.787050E+00,4.809648E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +800235,fr,1,4.150000E+00,6.787050E+00,4.809648E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.799708E+01,0.000000E+00 +800244,fr,1,4.250000E+00,6.787050E+00,4.809648E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +800269,fr,1,4.450000E+00,6.787050E+00,4.809648E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +800301,fr,1,4.650000E+00,6.787050E+00,4.809648E+01,5.000000E+00,Active Shallow Crust,1.288909E+02,8.998683E+01,0.000000E+00 +800413,fr,1,5.650000E+00,6.787050E+00,4.809648E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +800653,fr,1,3.650000E+00,8.850710E+00,4.983937E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998841E+01,0.000000E+00 +800661,fr,1,3.650000E+00,8.850710E+00,4.983937E+01,5.000000E+00,Active Shallow Crust,1.289014E+02,8.996358E+01,0.000000E+00 +800666,fr,1,3.750000E+00,8.850710E+00,4.983937E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +800667,fr,1,3.750000E+00,8.850710E+00,4.983937E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.801910E+01,0.000000E+00 +800677,fr,1,3.850000E+00,8.850710E+00,4.983937E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999079E+01,0.000000E+00 +800679,fr,1,3.850000E+00,8.850710E+00,4.983937E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799633E+01,0.000000E+00 +800688,fr,1,3.950000E+00,8.850710E+00,4.983937E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999179E+01,0.000000E+00 +800697,fr,1,3.950000E+00,8.850710E+00,4.983937E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.999179E+01,0.000000E+00 +800702,fr,1,4.050000E+00,8.850710E+00,4.983937E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999268E+01,0.000000E+00 +800704,fr,1,4.050000E+00,8.850710E+00,4.983937E+01,1.500000E+01,Active Shallow Crust,2.400064E+02,5.800568E+01,0.000000E+00 +800709,fr,1,4.050000E+00,8.850710E+00,4.983937E+01,5.000000E+00,Active Shallow Crust,1.288904E+02,8.999268E+01,0.000000E+00 +800712,fr,1,4.150000E+00,8.850710E+00,4.983937E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998696E+01,0.000000E+00 +800772,fr,1,4.650000E+00,8.850710E+00,4.983937E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998900E+01,0.000000E+00 +801151,fr,1,3.750000E+00,-3.157830E+00,5.021158E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998963E+01,-9.000000E+01 +801165,fr,1,3.850000E+00,-3.157830E+00,5.021158E+01,5.000000E+00,Active Shallow Crust,1.288951E+02,8.999429E+01,0.000000E+00 +801600,fr,1,3.550000E+00,1.424610E+00,4.142199E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +801619,fr,1,3.650000E+00,1.424610E+00,4.142199E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,-9.000000E+01 +801624,fr,1,3.750000E+00,1.424610E+00,4.142199E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +801627,fr,1,3.750000E+00,1.424610E+00,4.142199E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.801751E+01,0.000000E+00 +801684,fr,1,4.250000E+00,1.424610E+00,4.142199E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +801696,fr,1,4.350000E+00,1.424610E+00,4.142199E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +801717,fr,1,4.450000E+00,1.424610E+00,4.142199E+01,5.000000E+00,Active Shallow Crust,1.288931E+02,8.999397E+01,0.000000E+00 +802140,fr,1,4.050000E+00,2.103560E+00,4.868079E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +802161,fr,1,4.150000E+00,2.103560E+00,4.868079E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.999332E+01,0.000000E+00 +802179,fr,1,4.350000E+00,2.103560E+00,4.868079E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.799601E+01,0.000000E+00 +802572,fr,2,3.650000E+00,-6.747400E-01,5.077439E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +802609,fr,1,3.950000E+00,-6.747400E-01,5.077439E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +802746,fr,1,5.050000E+00,-6.747400E-01,5.077439E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +803040,fr,1,3.550000E+00,2.815590E+00,4.716224E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +803060,fr,1,3.650000E+00,2.815590E+00,4.716224E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999073E+01,-9.000000E+01 +803106,fr,1,4.050000E+00,2.815590E+00,4.716224E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,-9.000000E+01 +803115,fr,1,4.150000E+00,2.815590E+00,4.716224E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799753E+01,0.000000E+00 +803234,fr,1,5.150000E+00,2.815590E+00,4.716224E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +803532,fr,1,3.650000E+00,1.983820E+00,4.709187E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +803535,fr,2,3.650000E+00,1.983820E+00,4.709187E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801302E+01,0.000000E+00 +803544,fr,1,3.750000E+00,1.983820E+00,4.709187E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +803553,fr,1,3.750000E+00,1.983820E+00,4.709187E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.996738E+01,0.000000E+00 +803556,fr,1,3.850000E+00,1.983820E+00,4.709187E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +803557,fr,1,3.850000E+00,1.983820E+00,4.709187E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +803563,fr,1,3.850000E+00,1.983820E+00,4.709187E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,-9.000000E+01 +803582,fr,1,4.050000E+00,1.983820E+00,4.709187E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +803592,fr,1,4.150000E+00,1.983820E+00,4.709187E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +803596,fr,2,4.150000E+00,1.983820E+00,4.709187E+01,1.500000E+01,Active Shallow Crust,2.400085E+02,5.799742E+01,0.000000E+00 +803606,fr,1,4.250000E+00,1.983820E+00,4.709187E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +803613,fr,1,4.250000E+00,1.983820E+00,4.709187E+01,5.000000E+00,Active Shallow Crust,1.288943E+02,8.998097E+01,0.000000E+00 +803628,fr,1,4.450000E+00,1.983820E+00,4.709187E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +803630,fr,1,4.450000E+00,1.983820E+00,4.709187E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +803664,fr,1,4.750000E+00,1.983820E+00,4.709187E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +803712,fr,1,5.150000E+00,1.983820E+00,4.709187E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +804012,fr,1,3.650000E+00,-4.751000E-02,4.816745E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +804013,fr,1,3.650000E+00,-4.751000E-02,4.816745E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +804024,fr,1,3.750000E+00,-4.751000E-02,4.816745E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +804085,fr,1,4.250000E+00,-4.751000E-02,4.816745E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +804133,fr,1,4.650000E+00,-4.751000E-02,4.816745E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +804229,fr,1,5.450000E+00,-4.751000E-02,4.816745E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +804481,fr,1,3.550000E+00,3.933810E+00,4.407990E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +804492,fr,1,3.650000E+00,3.933810E+00,4.407990E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +804493,fr,1,3.650000E+00,3.933810E+00,4.407990E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +804516,fr,1,3.850000E+00,3.933810E+00,4.407990E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +804537,fr,1,3.950000E+00,3.933810E+00,4.407990E+01,5.000000E+00,Active Shallow Crust,1.289006E+02,8.999429E+01,0.000000E+00 +804552,fr,1,4.150000E+00,3.933810E+00,4.407990E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +804966,fr,1,3.550000E+00,3.016590E+00,4.274753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998876E+01,-9.000000E+01 +804970,fr,1,3.550000E+00,3.016590E+00,4.274753E+01,1.500000E+01,Active Shallow Crust,1.288967E+02,8.999259E+01,0.000000E+00 +804972,fr,3,3.650000E+00,3.016590E+00,4.274753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +804975,fr,1,3.650000E+00,3.016590E+00,4.274753E+01,5.000000E+00,Active Shallow Crust,2.400005E+02,5.801274E+01,0.000000E+00 +804984,fr,1,3.750000E+00,3.016590E+00,4.274753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999118E+01,0.000000E+00 +804988,fr,1,3.750000E+00,3.016590E+00,4.274753E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.801780E+01,0.000000E+00 +804996,fr,1,3.850000E+00,3.016590E+00,4.274753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +804997,fr,1,3.850000E+00,3.016590E+00,4.274753E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +805003,fr,1,3.850000E+00,3.016590E+00,4.274753E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,-9.000000E+01 +805009,fr,1,3.950000E+00,3.016590E+00,4.274753E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +805018,fr,1,3.950000E+00,3.016590E+00,4.274753E+01,1.500000E+01,Active Shallow Crust,1.289005E+02,8.999416E+01,0.000000E+00 +805032,fr,1,4.150000E+00,3.016590E+00,4.274753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +805033,fr,1,4.150000E+00,3.016590E+00,4.274753E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +805046,fr,3,4.250000E+00,3.016590E+00,4.274753E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +805047,fr,1,4.250000E+00,3.016590E+00,4.274753E+01,5.000000E+00,Active Shallow Crust,2.400068E+02,5.799404E+01,0.000000E+00 +805056,fr,1,4.350000E+00,3.016590E+00,4.274753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +805059,fr,1,4.350000E+00,3.016590E+00,4.274753E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.799578E+01,0.000000E+00 +805108,fr,1,4.750000E+00,3.016590E+00,4.274753E+01,1.500000E+01,Active Shallow Crust,2.400063E+02,5.800423E+01,0.000000E+00 +805149,fr,1,5.050000E+00,3.016590E+00,4.274753E+01,5.000000E+00,Active Shallow Crust,1.288871E+02,8.999049E+01,0.000000E+00 +805210,fr,1,5.550000E+00,3.016590E+00,4.274753E+01,1.500000E+01,Active Shallow Crust,1.288789E+02,8.998977E+01,0.000000E+00 +805478,fr,1,3.850000E+00,-4.648620E+00,4.940914E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999071E+01,0.000000E+00 +805530,fr,1,4.250000E+00,-4.648620E+00,4.940914E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999110E+01,-9.000000E+01 +805536,fr,1,4.350000E+00,-4.648620E+00,4.940914E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +805597,fr,1,4.850000E+00,-4.648620E+00,4.940914E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +805968,fr,2,3.950000E+00,-2.252680E+00,5.067691E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +806475,fr,1,4.150000E+00,-1.074630E+00,4.429815E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799726E+01,0.000000E+00 +807361,fr,2,3.550000E+00,6.149920E+00,4.712168E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999314E+01,0.000000E+00 +807363,fr,1,3.550000E+00,6.149920E+00,4.712168E+01,5.000000E+00,Active Shallow Crust,2.400129E+02,5.799813E+01,0.000000E+00 +807365,fr,1,3.550000E+00,6.149920E+00,4.712168E+01,2.750000E+01,Active Shallow Crust,2.400129E+02,5.799804E+01,0.000000E+00 +807369,fr,1,3.550000E+00,6.149920E+00,4.712168E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999314E+01,0.000000E+00 +807372,fr,1,3.650000E+00,6.149920E+00,4.712168E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998777E+01,0.000000E+00 +807373,fr,1,3.650000E+00,6.149920E+00,4.712168E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998777E+01,0.000000E+00 +807374,fr,1,3.650000E+00,6.149920E+00,4.712168E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998777E+01,0.000000E+00 +807378,fr,2,3.650000E+00,6.149920E+00,4.712168E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998763E+01,-9.000000E+01 +807381,fr,1,3.650000E+00,6.149920E+00,4.712168E+01,5.000000E+00,Active Shallow Crust,1.288998E+02,8.996354E+01,0.000000E+00 +807384,fr,1,3.750000E+00,6.149920E+00,4.712168E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +807386,fr,1,3.750000E+00,6.149920E+00,4.712168E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +807387,fr,2,3.750000E+00,6.149920E+00,4.712168E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.801716E+01,0.000000E+00 +807390,fr,1,3.750000E+00,6.149920E+00,4.712168E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,-9.000000E+01 +807398,fr,1,3.850000E+00,6.149920E+00,4.712168E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +807408,fr,1,3.950000E+00,6.149920E+00,4.712168E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999134E+01,0.000000E+00 +807417,fr,1,3.950000E+00,6.149920E+00,4.712168E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.999351E+01,0.000000E+00 +807433,fr,1,4.150000E+00,6.149920E+00,4.712168E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +807507,fr,1,4.750000E+00,6.149920E+00,4.712168E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.800433E+01,0.000000E+00 +807624,fr,1,5.750000E+00,6.149920E+00,4.712168E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +807840,fr,3,3.550000E+00,7.507000E-01,4.594597E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +807843,fr,1,3.550000E+00,7.507000E-01,4.594597E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799809E+01,0.000000E+00 +807852,fr,7,3.650000E+00,7.507000E-01,4.594597E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +807858,fr,1,3.650000E+00,7.507000E-01,4.594597E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,-9.000000E+01 +807876,fr,2,3.850000E+00,7.507000E-01,4.594597E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +807894,fr,1,3.950000E+00,7.507000E-01,4.594597E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,-9.000000E+01 +807900,fr,1,4.050000E+00,7.507000E-01,4.594597E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +807936,fr,1,4.350000E+00,7.507000E-01,4.594597E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +807945,fr,1,4.350000E+00,7.507000E-01,4.594597E+01,5.000000E+00,Active Shallow Crust,1.288980E+02,8.998276E+01,0.000000E+00 +808057,fr,1,5.350000E+00,7.507000E-01,4.594597E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +808320,fr,2,3.550000E+00,-7.923600E-01,4.944900E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +808329,fr,1,3.550000E+00,-7.923600E-01,4.944900E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999385E+01,0.000000E+00 +808332,fr,1,3.650000E+00,-7.923600E-01,4.944900E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +808338,fr,1,3.650000E+00,-7.923600E-01,4.944900E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +808346,fr,1,3.750000E+00,-7.923600E-01,4.944900E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +808348,fr,1,3.750000E+00,-7.923600E-01,4.944900E+01,1.500000E+01,Active Shallow Crust,2.400088E+02,5.801766E+01,0.000000E+00 +808356,fr,1,3.850000E+00,-7.923600E-01,4.944900E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +808359,fr,1,3.850000E+00,-7.923600E-01,4.944900E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799788E+01,0.000000E+00 +808375,fr,1,3.950000E+00,-7.923600E-01,4.944900E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +808383,fr,1,4.050000E+00,-7.923600E-01,4.944900E+01,5.000000E+00,Active Shallow Crust,2.400064E+02,5.800595E+01,0.000000E+00 +808414,fr,1,4.250000E+00,-7.923600E-01,4.944900E+01,1.500000E+01,Active Shallow Crust,1.288938E+02,8.998094E+01,0.000000E+00 +808440,fr,1,4.550000E+00,-7.923600E-01,4.944900E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +808801,fr,1,3.550000E+00,-3.073590E+00,4.874244E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +808803,fr,1,3.550000E+00,-3.073590E+00,4.874244E+01,5.000000E+00,Active Shallow Crust,2.400130E+02,5.799800E+01,0.000000E+00 +808810,fr,1,3.550000E+00,-3.073590E+00,4.874244E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.999335E+01,0.000000E+00 +808812,fr,1,3.650000E+00,-3.073590E+00,4.874244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999111E+01,0.000000E+00 +808813,fr,1,3.650000E+00,-3.073590E+00,4.874244E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999111E+01,0.000000E+00 +808815,fr,1,3.650000E+00,-3.073590E+00,4.874244E+01,5.000000E+00,Active Shallow Crust,2.400018E+02,5.801287E+01,0.000000E+00 +808824,fr,1,3.750000E+00,-3.073590E+00,4.874244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +808827,fr,1,3.750000E+00,-3.073590E+00,4.874244E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.801762E+01,0.000000E+00 +808852,fr,1,3.950000E+00,-3.073590E+00,4.874244E+01,1.500000E+01,Active Shallow Crust,2.400196E+02,5.800519E+01,0.000000E+00 +808906,fr,1,4.350000E+00,-3.073590E+00,4.874244E+01,1.500000E+01,Active Shallow Crust,1.288974E+02,8.998287E+01,0.000000E+00 +808934,fr,1,4.650000E+00,-3.073590E+00,4.874244E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +809282,fr,1,3.550000E+00,4.247480E+00,4.596011E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999299E+01,0.000000E+00 +809285,fr,1,3.550000E+00,4.247480E+00,4.596011E+01,2.750000E+01,Active Shallow Crust,2.400131E+02,5.799703E+01,0.000000E+00 +809308,fr,1,3.750000E+00,4.247480E+00,4.596011E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.801842E+01,0.000000E+00 +809361,fr,1,4.150000E+00,4.247480E+00,4.596011E+01,5.000000E+00,Active Shallow Crust,1.288987E+02,8.999297E+01,0.000000E+00 +809382,fr,1,4.350000E+00,4.247480E+00,4.596011E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998871E+01,-9.000000E+01 +809388,fr,1,4.450000E+00,4.247480E+00,4.596011E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +809476,fr,1,5.150000E+00,4.247480E+00,4.596011E+01,1.500000E+01,Active Shallow Crust,2.400192E+02,5.800006E+01,0.000000E+00 +809760,fr,1,3.550000E+00,7.634700E-01,4.228792E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +809772,fr,1,3.650000E+00,7.634700E-01,4.228792E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +809773,fr,2,3.650000E+00,7.634700E-01,4.228792E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +809777,fr,1,3.650000E+00,7.634700E-01,4.228792E+01,2.750000E+01,Active Shallow Crust,2.400008E+02,5.801271E+01,0.000000E+00 +809782,fr,1,3.650000E+00,7.634700E-01,4.228792E+01,1.500000E+01,Active Shallow Crust,1.289007E+02,8.996352E+01,0.000000E+00 +809796,fr,1,3.850000E+00,7.634700E-01,4.228792E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +809797,fr,1,3.850000E+00,7.634700E-01,4.228792E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +809802,fr,1,3.850000E+00,7.634700E-01,4.228792E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +809904,fr,1,4.750000E+00,7.634700E-01,4.228792E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +809989,fr,1,5.450000E+00,7.634700E-01,4.228792E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +810240,fr,1,3.550000E+00,-8.937400E-01,4.349321E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +810252,fr,1,3.650000E+00,-8.937400E-01,4.349321E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +810253,fr,1,3.650000E+00,-8.937400E-01,4.349321E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +810258,fr,1,3.650000E+00,-8.937400E-01,4.349321E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +810267,fr,1,3.750000E+00,-8.937400E-01,4.349321E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801755E+01,0.000000E+00 +810276,fr,3,3.850000E+00,-8.937400E-01,4.349321E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +810304,fr,1,4.050000E+00,-8.937400E-01,4.349321E+01,1.500000E+01,Active Shallow Crust,2.400055E+02,5.800573E+01,0.000000E+00 +810362,fr,1,4.550000E+00,-8.937400E-01,4.349321E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +810384,fr,1,4.750000E+00,-8.937400E-01,4.349321E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +810774,fr,1,3.950000E+00,1.641740E+00,4.506869E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,-9.000000E+01 +810834,fr,1,4.450000E+00,1.641740E+00,4.506869E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,-9.000000E+01 +810912,fr,1,5.150000E+00,1.641740E+00,4.506869E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +811063,fr,1,6.350000E+00,1.641740E+00,4.506869E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999002E+01,-9.000000E+01 +811218,fr,1,3.650000E+00,1.136480E+00,4.557035E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,-9.000000E+01 +811224,fr,1,3.750000E+00,1.136480E+00,4.557035E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +811251,fr,1,3.950000E+00,1.136480E+00,4.557035E+01,5.000000E+00,Active Shallow Crust,2.400198E+02,5.800488E+01,0.000000E+00 +811273,fr,1,4.150000E+00,1.136480E+00,4.557035E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +811274,fr,1,4.150000E+00,1.136480E+00,4.557035E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +811296,fr,1,4.350000E+00,1.136480E+00,4.557035E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +811324,fr,1,4.550000E+00,1.136480E+00,4.557035E+01,1.500000E+01,Active Shallow Crust,2.400089E+02,5.799734E+01,0.000000E+00 +811381,fr,1,5.050000E+00,1.136480E+00,4.557035E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +811681,fr,1,3.550000E+00,5.971370E+00,4.684127E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999310E+01,0.000000E+00 +811687,fr,1,3.550000E+00,5.971370E+00,4.684127E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999302E+01,-9.000000E+01 +811692,fr,2,3.650000E+00,5.971370E+00,4.684127E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998770E+01,0.000000E+00 +811699,fr,1,3.650000E+00,5.971370E+00,4.684127E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998756E+01,-9.000000E+01 +811704,fr,2,3.750000E+00,5.971370E+00,4.684127E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +811707,fr,1,3.750000E+00,5.971370E+00,4.684127E+01,5.000000E+00,Active Shallow Crust,2.400094E+02,5.801699E+01,0.000000E+00 +811710,fr,1,3.750000E+00,5.971370E+00,4.684127E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,-9.000000E+01 +811714,fr,1,3.750000E+00,5.971370E+00,4.684127E+01,1.500000E+01,Active Shallow Crust,1.288959E+02,8.996750E+01,0.000000E+00 +811734,fr,1,3.950000E+00,5.971370E+00,4.684127E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999120E+01,-9.000000E+01 +811764,fr,1,4.250000E+00,5.971370E+00,4.684127E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +811902,fr,1,5.350000E+00,5.971370E+00,4.684127E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,-9.000000E+01 +812184,fr,1,3.750000E+00,5.829080E+00,4.138856E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998798E+01,0.000000E+00 +812640,fr,1,3.550000E+00,-2.781280E+00,5.010748E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +813133,fr,1,3.650000E+00,4.440310E+00,4.854944E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998810E+01,0.000000E+00 +813171,fr,1,3.950000E+00,4.440310E+00,4.854944E+01,5.000000E+00,Active Shallow Crust,2.400194E+02,5.800551E+01,0.000000E+00 +813600,fr,1,3.550000E+00,4.304670E+00,4.439734E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999280E+01,0.000000E+00 +813624,fr,2,3.750000E+00,4.304670E+00,4.439734E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +813625,fr,1,3.750000E+00,4.304670E+00,4.439734E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +813630,fr,1,3.750000E+00,4.304670E+00,4.439734E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998842E+01,-9.000000E+01 +813648,fr,1,3.950000E+00,4.304670E+00,4.439734E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +813651,fr,1,3.950000E+00,4.304670E+00,4.439734E+01,5.000000E+00,Active Shallow Crust,2.400191E+02,5.800456E+01,0.000000E+00 +813715,fr,1,4.450000E+00,4.304670E+00,4.439734E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +813720,fr,1,4.550000E+00,4.304670E+00,4.439734E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +813757,fr,1,4.850000E+00,4.304670E+00,4.439734E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +813913,fr,1,6.150000E+00,4.304670E+00,4.439734E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +814083,fr,1,3.550000E+00,2.299660E+00,4.488072E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799783E+01,0.000000E+00 +814093,fr,2,3.650000E+00,2.299660E+00,4.488072E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +814104,fr,1,3.750000E+00,2.299660E+00,4.488072E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998865E+01,0.000000E+00 +814116,fr,1,3.850000E+00,2.299660E+00,4.488072E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +814128,fr,2,3.950000E+00,2.299660E+00,4.488072E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999098E+01,0.000000E+00 +814164,fr,1,4.250000E+00,2.299660E+00,4.488072E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +814202,fr,1,4.550000E+00,2.299660E+00,4.488072E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +814294,fr,1,5.250000E+00,2.299660E+00,4.488072E+01,1.500000E+01,Active Shallow Crust,1.288841E+02,8.998710E+01,0.000000E+00 +814334,fr,1,5.650000E+00,2.299660E+00,4.488072E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +814560,fr,1,3.550000E+00,1.833770E+00,4.787813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +814570,fr,1,3.550000E+00,1.833770E+00,4.787813E+01,1.500000E+01,Active Shallow Crust,1.288959E+02,8.999408E+01,0.000000E+00 +814572,fr,1,3.650000E+00,1.833770E+00,4.787813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +814595,fr,1,3.750000E+00,1.833770E+00,4.787813E+01,2.750000E+01,Active Shallow Crust,1.288963E+02,8.996740E+01,0.000000E+00 +814620,fr,2,4.050000E+00,1.833770E+00,4.787813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +815040,fr,2,3.550000E+00,4.376850E+00,5.065783E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998721E+01,0.000000E+00 +815041,fr,2,3.550000E+00,4.376850E+00,5.065783E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998721E+01,0.000000E+00 +815044,fr,2,3.550000E+00,4.376850E+00,5.065783E+01,1.500000E+01,Active Shallow Crust,2.400121E+02,5.799887E+01,0.000000E+00 +815050,fr,1,3.550000E+00,4.376850E+00,5.065783E+01,1.500000E+01,Active Shallow Crust,1.288958E+02,8.999361E+01,0.000000E+00 +815052,fr,2,3.650000E+00,4.376850E+00,5.065783E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998860E+01,0.000000E+00 +815053,fr,1,3.650000E+00,4.376850E+00,5.065783E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998860E+01,0.000000E+00 +815055,fr,1,3.650000E+00,4.376850E+00,5.065783E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801292E+01,0.000000E+00 +815057,fr,1,3.650000E+00,4.376850E+00,5.065783E+01,2.750000E+01,Active Shallow Crust,2.400008E+02,5.801283E+01,0.000000E+00 +815058,fr,1,3.650000E+00,4.376850E+00,5.065783E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998847E+01,-9.000000E+01 +815061,fr,1,3.650000E+00,4.376850E+00,5.065783E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.996360E+01,0.000000E+00 +815064,fr,1,3.750000E+00,4.376850E+00,5.065783E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +815077,fr,1,3.850000E+00,4.376850E+00,5.065783E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999095E+01,0.000000E+00 +815088,fr,1,3.950000E+00,4.376850E+00,5.065783E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999194E+01,0.000000E+00 +815094,fr,1,3.950000E+00,4.376850E+00,5.065783E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999184E+01,-9.000000E+01 +815112,fr,1,4.150000E+00,4.376850E+00,5.065783E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +815127,fr,1,4.250000E+00,4.376850E+00,5.065783E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.799422E+01,0.000000E+00 +815148,fr,1,4.450000E+00,4.376850E+00,5.065783E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +815172,fr,1,4.650000E+00,4.376850E+00,5.065783E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998919E+01,0.000000E+00 +815173,fr,1,4.650000E+00,4.376850E+00,5.065783E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998919E+01,0.000000E+00 +815184,fr,1,4.750000E+00,4.376850E+00,5.065783E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +815185,fr,1,4.750000E+00,4.376850E+00,5.065783E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +815190,fr,1,4.750000E+00,4.376850E+00,5.065783E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,-9.000000E+01 +815520,fr,5,3.550000E+00,2.209490E+00,4.154997E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998868E+01,0.000000E+00 +815523,fr,2,3.550000E+00,2.209490E+00,4.154997E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799862E+01,0.000000E+00 +815524,fr,1,3.550000E+00,2.209490E+00,4.154997E+01,1.500000E+01,Active Shallow Crust,2.400114E+02,5.799862E+01,0.000000E+00 +815526,fr,4,3.550000E+00,2.209490E+00,4.154997E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998855E+01,-9.000000E+01 +815532,fr,2,3.650000E+00,2.209490E+00,4.154997E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +815533,fr,2,3.650000E+00,2.209490E+00,4.154997E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +815538,fr,1,3.650000E+00,2.209490E+00,4.154997E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,-9.000000E+01 +815539,fr,1,3.650000E+00,2.209490E+00,4.154997E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,-9.000000E+01 +815541,fr,1,3.650000E+00,2.209490E+00,4.154997E+01,5.000000E+00,Active Shallow Crust,1.289016E+02,8.996343E+01,0.000000E+00 +815544,fr,6,3.750000E+00,2.209490E+00,4.154997E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +815545,fr,2,3.750000E+00,2.209490E+00,4.154997E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +815549,fr,1,3.750000E+00,2.209490E+00,4.154997E+01,2.750000E+01,Active Shallow Crust,2.400075E+02,5.801750E+01,0.000000E+00 +815551,fr,1,3.750000E+00,2.209490E+00,4.154997E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999091E+01,-9.000000E+01 +815552,fr,1,3.750000E+00,2.209490E+00,4.154997E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999091E+01,-9.000000E+01 +815553,fr,1,3.750000E+00,2.209490E+00,4.154997E+01,5.000000E+00,Active Shallow Crust,1.288977E+02,8.996741E+01,0.000000E+00 +815562,fr,2,3.850000E+00,2.209490E+00,4.154997E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998919E+01,-9.000000E+01 +815565,fr,1,3.850000E+00,2.209490E+00,4.154997E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999332E+01,0.000000E+00 +815568,fr,2,3.950000E+00,2.209490E+00,4.154997E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +815569,fr,1,3.950000E+00,2.209490E+00,4.154997E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +815572,fr,1,3.950000E+00,2.209490E+00,4.154997E+01,1.500000E+01,Active Shallow Crust,2.400193E+02,5.800475E+01,0.000000E+00 +815596,fr,1,4.150000E+00,2.209490E+00,4.154997E+01,1.500000E+01,Active Shallow Crust,2.400078E+02,5.799699E+01,0.000000E+00 +815598,fr,1,4.150000E+00,2.209490E+00,4.154997E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,-9.000000E+01 +815601,fr,1,4.150000E+00,2.209490E+00,4.154997E+01,5.000000E+00,Active Shallow Crust,1.288980E+02,8.999432E+01,0.000000E+00 +815610,fr,1,4.250000E+00,2.209490E+00,4.154997E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,-9.000000E+01 +815616,fr,1,4.350000E+00,2.209490E+00,4.154997E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +815622,fr,1,4.350000E+00,2.209490E+00,4.154997E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,-9.000000E+01 +815628,fr,1,4.450000E+00,2.209490E+00,4.154997E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +815652,fr,1,4.650000E+00,2.209490E+00,4.154997E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +815664,fr,2,4.750000E+00,2.209490E+00,4.154997E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +815665,fr,1,4.750000E+00,2.209490E+00,4.154997E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +815689,fr,1,4.950000E+00,2.209490E+00,4.154997E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +815691,fr,1,4.950000E+00,2.209490E+00,4.154997E+01,5.000000E+00,Active Shallow Crust,2.400099E+02,5.800393E+01,0.000000E+00 +815907,fr,1,6.750000E+00,2.190066E+00,4.157514E+01,1.017163E+01,Active Shallow Crust,2.401080E+02,5.800009E+01,0.000000E+00 +816000,fr,1,3.550000E+00,9.281200E-01,4.298433E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +816002,fr,1,3.550000E+00,9.281200E-01,4.298433E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +816019,fr,1,3.650000E+00,9.281200E-01,4.298433E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +816024,fr,3,3.750000E+00,9.281200E-01,4.298433E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +816026,fr,1,3.750000E+00,9.281200E-01,4.298433E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +816033,fr,3,3.750000E+00,9.281200E-01,4.298433E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996736E+01,0.000000E+00 +816036,fr,1,3.850000E+00,9.281200E-01,4.298433E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +816048,fr,4,3.950000E+00,9.281200E-01,4.298433E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +816049,fr,2,3.950000E+00,9.281200E-01,4.298433E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +816108,fr,2,4.450000E+00,9.281200E-01,4.298433E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +816120,fr,1,4.550000E+00,9.281200E-01,4.298433E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +816140,fr,1,4.650000E+00,9.281200E-01,4.298433E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +816156,fr,1,4.850000E+00,9.281200E-01,4.298433E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +816169,fr,1,4.950000E+00,9.281200E-01,4.298433E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +816481,fr,1,3.550000E+00,4.626030E+00,4.691880E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999311E+01,0.000000E+00 +816492,fr,1,3.650000E+00,4.626030E+00,4.691880E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998772E+01,0.000000E+00 +816513,fr,1,3.750000E+00,4.626030E+00,4.691880E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.996750E+01,0.000000E+00 +816516,fr,2,3.850000E+00,4.626030E+00,4.691880E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +816517,fr,1,3.850000E+00,4.626030E+00,4.691880E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +816546,fr,1,4.050000E+00,4.626030E+00,4.691880E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998824E+01,-9.000000E+01 +816555,fr,1,4.150000E+00,4.626030E+00,4.691880E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799736E+01,0.000000E+00 +816588,fr,1,4.450000E+00,4.626030E+00,4.691880E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +816606,fr,1,4.550000E+00,4.626030E+00,4.691880E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,-9.000000E+01 +816609,fr,1,4.550000E+00,4.626030E+00,4.691880E+01,5.000000E+00,Active Shallow Crust,1.288942E+02,8.998567E+01,0.000000E+00 +816672,fr,1,5.150000E+00,4.626030E+00,4.691880E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +816972,fr,1,3.650000E+00,6.444760E+00,4.881555E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998817E+01,0.000000E+00 +816974,fr,1,3.650000E+00,6.444760E+00,4.881555E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998817E+01,0.000000E+00 +816975,fr,1,3.650000E+00,6.444760E+00,4.881555E+01,5.000000E+00,Active Shallow Crust,2.400005E+02,5.801346E+01,0.000000E+00 +817033,fr,1,4.150000E+00,6.444760E+00,4.881555E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +817056,fr,1,4.350000E+00,6.444760E+00,4.881555E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +817068,fr,1,4.450000E+00,6.444760E+00,4.881555E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +817443,fr,2,3.550000E+00,6.788610E+00,4.432444E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799783E+01,0.000000E+00 +817446,fr,1,3.550000E+00,6.788610E+00,4.432444E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999271E+01,-9.000000E+01 +817452,fr,1,3.650000E+00,6.788610E+00,4.432444E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998714E+01,0.000000E+00 +817455,fr,1,3.650000E+00,6.788610E+00,4.432444E+01,5.000000E+00,Active Shallow Crust,2.399999E+02,5.801331E+01,0.000000E+00 +817458,fr,1,3.650000E+00,6.788610E+00,4.432444E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998699E+01,-9.000000E+01 +817464,fr,2,3.750000E+00,6.788610E+00,4.432444E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998854E+01,0.000000E+00 +817469,fr,1,3.750000E+00,6.788610E+00,4.432444E+01,2.750000E+01,Active Shallow Crust,2.400081E+02,5.801815E+01,0.000000E+00 +817473,fr,1,3.750000E+00,6.788610E+00,4.432444E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.996745E+01,0.000000E+00 +817477,fr,1,3.850000E+00,6.788610E+00,4.432444E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +817488,fr,1,3.950000E+00,6.788610E+00,4.432444E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999090E+01,0.000000E+00 +817489,fr,3,3.950000E+00,6.788610E+00,4.432444E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999090E+01,0.000000E+00 +817494,fr,1,3.950000E+00,6.788610E+00,4.432444E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999079E+01,-9.000000E+01 +817501,fr,1,4.050000E+00,6.788610E+00,4.432444E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999189E+01,0.000000E+00 +817524,fr,1,4.250000E+00,6.788610E+00,4.432444E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +817525,fr,1,4.250000E+00,6.788610E+00,4.432444E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +817526,fr,1,4.250000E+00,6.788610E+00,4.432444E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +817563,fr,1,4.550000E+00,6.788610E+00,4.432444E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.799729E+01,0.000000E+00 +817657,fr,1,5.350000E+00,6.788610E+00,4.432444E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +817928,fr,1,3.550000E+00,2.172210E+00,5.217892E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,-9.000000E+01 +818044,fr,1,4.550000E+00,2.172210E+00,5.217892E+01,1.500000E+01,Active Shallow Crust,2.400111E+02,5.799785E+01,0.000000E+00 +818500,fr,1,4.350000E+00,6.428030E+00,4.308104E+01,1.500000E+01,Active Shallow Crust,2.400077E+02,5.799602E+01,0.000000E+00 +818886,fr,1,3.550000E+00,3.797680E+00,5.008076E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,-9.000000E+01 +818894,fr,1,3.650000E+00,3.797680E+00,5.008076E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999135E+01,0.000000E+00 +818925,fr,1,3.850000E+00,3.797680E+00,5.008076E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.999313E+01,0.000000E+00 +818940,fr,1,4.050000E+00,3.797680E+00,5.008076E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +819004,fr,1,4.550000E+00,3.797680E+00,5.008076E+01,1.500000E+01,Active Shallow Crust,2.400104E+02,5.799748E+01,0.000000E+00 +819373,fr,1,3.650000E+00,-4.179330E+00,4.864081E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998812E+01,0.000000E+00 +819384,fr,2,3.750000E+00,-4.179330E+00,4.864081E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +819432,fr,1,4.150000E+00,-4.179330E+00,4.864081E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +819433,fr,1,4.150000E+00,-4.179330E+00,4.864081E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +819438,fr,1,4.150000E+00,-4.179330E+00,4.864081E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,-9.000000E+01 +819474,fr,1,4.450000E+00,-4.179330E+00,4.864081E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,-9.000000E+01 +819516,fr,1,4.850000E+00,-4.179330E+00,4.864081E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +819517,fr,1,4.850000E+00,-4.179330E+00,4.864081E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +819854,fr,1,3.650000E+00,2.748940E+00,4.805220E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999099E+01,0.000000E+00 +819877,fr,1,3.850000E+00,2.748940E+00,4.805220E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +819901,fr,1,4.050000E+00,2.748940E+00,4.805220E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +819924,fr,1,4.250000E+00,2.748940E+00,4.805220E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +819948,fr,1,4.450000E+00,2.748940E+00,4.805220E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +820345,fr,1,3.750000E+00,4.722000E-02,4.870534E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +820356,fr,4,3.850000E+00,4.722000E-02,4.870534E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +820386,fr,1,4.050000E+00,4.722000E-02,4.870534E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +820392,fr,1,4.150000E+00,4.722000E-02,4.870534E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +820476,fr,1,4.850000E+00,4.722000E-02,4.870534E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +820801,fr,1,3.550000E+00,-1.770900E-01,4.492656E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +820812,fr,1,3.650000E+00,-1.770900E-01,4.492656E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +820814,fr,1,3.650000E+00,-1.770900E-01,4.492656E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +820825,fr,1,3.750000E+00,-1.770900E-01,4.492656E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +820848,fr,1,3.950000E+00,-1.770900E-01,4.492656E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +820849,fr,1,3.950000E+00,-1.770900E-01,4.492656E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +820851,fr,1,3.950000E+00,-1.770900E-01,4.492656E+01,5.000000E+00,Active Shallow Crust,2.400196E+02,5.800492E+01,0.000000E+00 +820861,fr,1,4.050000E+00,-1.770900E-01,4.492656E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +820920,fr,1,4.550000E+00,-1.770900E-01,4.492656E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +820962,fr,1,4.850000E+00,-1.770900E-01,4.492656E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +821292,fr,1,3.650000E+00,6.364050E+00,4.930879E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998828E+01,0.000000E+00 +821313,fr,1,3.750000E+00,6.364050E+00,4.930879E+01,5.000000E+00,Active Shallow Crust,1.288955E+02,8.996754E+01,0.000000E+00 +821328,fr,1,3.950000E+00,6.364050E+00,4.930879E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999171E+01,0.000000E+00 +821352,fr,1,4.150000E+00,6.364050E+00,4.930879E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +822240,fr,1,3.550000E+00,2.517810E+00,4.320236E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +822245,fr,1,3.550000E+00,2.517810E+00,4.320236E+01,2.750000E+01,Active Shallow Crust,2.400112E+02,5.799817E+01,0.000000E+00 +822297,fr,1,3.950000E+00,2.517810E+00,4.320236E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.999420E+01,0.000000E+00 +822324,fr,1,4.250000E+00,2.517810E+00,4.320236E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +822330,fr,1,4.250000E+00,2.517810E+00,4.320236E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +822336,fr,1,4.350000E+00,2.517810E+00,4.320236E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +822723,fr,1,3.550000E+00,5.790700E+00,4.165491E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799789E+01,0.000000E+00 +822732,fr,1,3.650000E+00,5.790700E+00,4.165491E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999329E+01,0.000000E+00 +822741,fr,1,3.650000E+00,5.790700E+00,4.165491E+01,5.000000E+00,Active Shallow Crust,1.289018E+02,8.996343E+01,0.000000E+00 +823200,fr,5,3.550000E+00,6.840090E+00,4.472771E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999284E+01,0.000000E+00 +823201,fr,1,3.550000E+00,6.840090E+00,4.472771E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999284E+01,0.000000E+00 +823202,fr,1,3.550000E+00,6.840090E+00,4.472771E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999284E+01,0.000000E+00 +823206,fr,1,3.550000E+00,6.840090E+00,4.472771E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999275E+01,-9.000000E+01 +823212,fr,1,3.650000E+00,6.840090E+00,4.472771E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998723E+01,0.000000E+00 +823213,fr,1,3.650000E+00,6.840090E+00,4.472771E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998723E+01,0.000000E+00 +823214,fr,1,3.650000E+00,6.840090E+00,4.472771E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998723E+01,0.000000E+00 +823222,fr,1,3.650000E+00,6.840090E+00,4.472771E+01,1.500000E+01,Active Shallow Crust,1.288997E+02,8.996349E+01,0.000000E+00 +823224,fr,5,3.750000E+00,6.840090E+00,4.472771E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +823225,fr,1,3.750000E+00,6.840090E+00,4.472771E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +823226,fr,1,3.750000E+00,6.840090E+00,4.472771E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +823236,fr,3,3.850000E+00,6.840090E+00,4.472771E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +823237,fr,1,3.850000E+00,6.840090E+00,4.472771E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +823239,fr,1,3.850000E+00,6.840090E+00,4.472771E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.799806E+01,0.000000E+00 +823240,fr,1,3.850000E+00,6.840090E+00,4.472771E+01,1.500000E+01,Active Shallow Crust,2.400104E+02,5.799806E+01,0.000000E+00 +823251,fr,2,3.950000E+00,6.840090E+00,4.472771E+01,5.000000E+00,Active Shallow Crust,2.400188E+02,5.800556E+01,0.000000E+00 +823254,fr,1,3.950000E+00,6.840090E+00,4.472771E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999085E+01,-9.000000E+01 +823257,fr,1,3.950000E+00,6.840090E+00,4.472771E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.999322E+01,0.000000E+00 +823260,fr,1,4.050000E+00,6.840090E+00,4.472771E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999194E+01,0.000000E+00 +823269,fr,1,4.050000E+00,6.840090E+00,4.472771E+01,5.000000E+00,Active Shallow Crust,1.288896E+02,8.999396E+01,0.000000E+00 +823272,fr,1,4.150000E+00,6.840090E+00,4.472771E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +823273,fr,1,4.150000E+00,6.840090E+00,4.472771E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +823275,fr,1,4.150000E+00,6.840090E+00,4.472771E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799771E+01,0.000000E+00 +823285,fr,1,4.250000E+00,6.840090E+00,4.472771E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +823287,fr,1,4.250000E+00,6.840090E+00,4.472771E+01,5.000000E+00,Active Shallow Crust,2.400068E+02,5.799417E+01,0.000000E+00 +823302,fr,2,4.350000E+00,6.840090E+00,4.472771E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999134E+01,-9.000000E+01 +823344,fr,1,4.750000E+00,6.840090E+00,4.472771E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +823404,fr,1,5.250000E+00,6.840090E+00,4.472771E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +823765,fr,1,4.250000E+00,-2.780810E+00,4.970702E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +823770,fr,1,4.250000E+00,-2.780810E+00,4.970702E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +824163,fr,1,3.550000E+00,-6.296640E+00,4.910151E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.799793E+01,0.000000E+00 +824640,fr,2,3.550000E+00,-1.223730E+00,4.673687E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +824641,fr,1,3.550000E+00,-1.223730E+00,4.673687E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +824645,fr,1,3.550000E+00,-1.223730E+00,4.673687E+01,2.750000E+01,Active Shallow Crust,2.400125E+02,5.799814E+01,0.000000E+00 +824650,fr,1,3.550000E+00,-1.223730E+00,4.673687E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.999395E+01,0.000000E+00 +824652,fr,1,3.650000E+00,-1.223730E+00,4.673687E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +824655,fr,1,3.650000E+00,-1.223730E+00,4.673687E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801300E+01,0.000000E+00 +824658,fr,1,3.650000E+00,-1.223730E+00,4.673687E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,-9.000000E+01 +824665,fr,1,3.750000E+00,-1.223730E+00,4.673687E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +824667,fr,1,3.750000E+00,-1.223730E+00,4.673687E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.801759E+01,0.000000E+00 +824676,fr,1,3.850000E+00,-1.223730E+00,4.673687E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +824679,fr,1,3.850000E+00,-1.223730E+00,4.673687E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799788E+01,0.000000E+00 +824682,fr,1,3.850000E+00,-1.223730E+00,4.673687E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +824683,fr,1,3.850000E+00,-1.223730E+00,4.673687E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +824688,fr,1,3.950000E+00,-1.223730E+00,4.673687E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +824748,fr,1,4.450000E+00,-1.223730E+00,4.673687E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +824784,fr,1,4.750000E+00,-1.223730E+00,4.673687E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +824796,fr,1,4.850000E+00,-1.223730E+00,4.673687E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +824808,fr,1,4.950000E+00,-1.223730E+00,4.673687E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +824880,fr,1,5.550000E+00,-1.223730E+00,4.673687E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +825780,fr,1,5.050000E+00,-5.638960E+00,4.958146E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +826108,fr,1,3.750000E+00,3.953090E+00,4.873113E+01,1.500000E+01,Active Shallow Crust,2.400092E+02,5.801729E+01,0.000000E+00 +826561,fr,1,3.550000E+00,1.589820E+00,4.425770E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +826565,fr,1,3.550000E+00,1.589820E+00,4.425770E+01,2.750000E+01,Active Shallow Crust,2.400122E+02,5.799807E+01,0.000000E+00 +826570,fr,1,3.550000E+00,1.589820E+00,4.425770E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.999368E+01,0.000000E+00 +826752,fr,1,5.150000E+00,1.589820E+00,4.425770E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +827040,fr,1,3.550000E+00,4.714630E+00,4.641510E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999305E+01,0.000000E+00 +827041,fr,2,3.550000E+00,4.714630E+00,4.641510E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999305E+01,0.000000E+00 +827042,fr,1,3.550000E+00,4.714630E+00,4.641510E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999305E+01,0.000000E+00 +827049,fr,1,3.550000E+00,4.714630E+00,4.641510E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.999305E+01,0.000000E+00 +827062,fr,1,3.650000E+00,4.714630E+00,4.641510E+01,1.500000E+01,Active Shallow Crust,1.288997E+02,8.996352E+01,0.000000E+00 +827088,fr,1,3.950000E+00,4.714630E+00,4.641510E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +827100,fr,1,4.050000E+00,4.714630E+00,4.641510E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998827E+01,0.000000E+00 +827113,fr,1,4.150000E+00,4.714630E+00,4.641510E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +827124,fr,1,4.250000E+00,4.714630E+00,4.641510E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +827140,fr,1,4.350000E+00,4.714630E+00,4.641510E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.799615E+01,0.000000E+00 +827172,fr,1,4.650000E+00,4.714630E+00,4.641510E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +827181,fr,1,4.650000E+00,4.714630E+00,4.641510E+01,5.000000E+00,Active Shallow Crust,1.288910E+02,8.998721E+01,0.000000E+00 +827220,fr,1,5.050000E+00,4.714630E+00,4.641510E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +827520,fr,1,3.550000E+00,6.833630E+00,4.999050E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998703E+01,0.000000E+00 +827532,fr,1,3.650000E+00,6.833630E+00,4.999050E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998844E+01,0.000000E+00 +827544,fr,1,3.750000E+00,6.833630E+00,4.999050E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +827580,fr,1,4.050000E+00,6.833630E+00,4.999050E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998906E+01,0.000000E+00 +827613,fr,1,4.250000E+00,6.833630E+00,4.999050E+01,5.000000E+00,Active Shallow Crust,1.288945E+02,8.998058E+01,0.000000E+00 +828000,fr,1,3.550000E+00,2.399170E+00,4.437240E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998919E+01,0.000000E+00 +828013,fr,1,3.650000E+00,2.399170E+00,4.437240E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +828018,fr,1,3.650000E+00,2.399170E+00,4.437240E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,-9.000000E+01 +828019,fr,1,3.650000E+00,2.399170E+00,4.437240E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,-9.000000E+01 +828024,fr,1,3.750000E+00,2.399170E+00,4.437240E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999141E+01,0.000000E+00 +828120,fr,1,4.550000E+00,2.399170E+00,4.437240E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +828144,fr,1,4.750000E+00,2.399170E+00,4.437240E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +828496,fr,1,3.650000E+00,2.979160E+00,4.744333E+01,1.500000E+01,Active Shallow Crust,2.400014E+02,5.801310E+01,0.000000E+00 +828525,fr,1,3.850000E+00,2.979160E+00,4.744333E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.999397E+01,0.000000E+00 +828529,fr,1,3.950000E+00,2.979160E+00,4.744333E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +828568,fr,1,4.250000E+00,2.979160E+00,4.744333E+01,1.500000E+01,Active Shallow Crust,2.400075E+02,5.799414E+01,0.000000E+00 +828672,fr,1,5.150000E+00,2.979160E+00,4.744333E+01,5.000000E+00,Active Shallow Crust,3.599997E+02,8.999027E+01,0.000000E+00 +828960,fr,1,3.550000E+00,5.014490E+00,5.037720E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998714E+01,0.000000E+00 +828984,fr,1,3.750000E+00,5.014490E+00,5.037720E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +828997,fr,1,3.850000E+00,5.014490E+00,5.037720E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999090E+01,0.000000E+00 +829020,fr,1,4.050000E+00,5.014490E+00,5.037720E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998915E+01,0.000000E+00 +829172,fr,1,5.250000E+00,5.014490E+00,5.037720E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,-9.000000E+01 +829440,fr,1,3.550000E+00,1.331840E+00,4.982586E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +829441,fr,1,3.550000E+00,1.331840E+00,4.982586E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +829443,fr,2,3.550000E+00,1.331840E+00,4.982586E+01,5.000000E+00,Active Shallow Crust,2.400126E+02,5.799828E+01,0.000000E+00 +829452,fr,2,3.650000E+00,1.331840E+00,4.982586E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +829464,fr,1,3.750000E+00,1.331840E+00,4.982586E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +829466,fr,1,3.750000E+00,1.331840E+00,4.982586E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +829489,fr,1,3.950000E+00,1.331840E+00,4.982586E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +829503,fr,1,4.050000E+00,1.331840E+00,4.982586E+01,5.000000E+00,Active Shallow Crust,2.400065E+02,5.800604E+01,0.000000E+00 +829512,fr,2,4.150000E+00,1.331840E+00,4.982586E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +829600,fr,1,4.850000E+00,1.331840E+00,4.982586E+01,1.500000E+01,Active Shallow Crust,2.400186E+02,5.800257E+01,0.000000E+00 +829956,fr,1,3.850000E+00,-6.604390E+00,4.796487E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +830447,fr,1,3.850000E+00,4.611620E+00,4.945244E+01,2.750000E+01,Active Shallow Crust,1.288944E+02,8.999304E+01,0.000000E+00 +830474,fr,1,4.150000E+00,4.611620E+00,4.945244E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +830892,fr,1,3.650000E+00,4.246450E+00,5.014615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998848E+01,0.000000E+00 +830904,fr,1,3.750000E+00,4.246450E+00,5.014615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +830905,fr,1,3.750000E+00,4.246450E+00,5.014615E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +830941,fr,1,4.050000E+00,4.246450E+00,5.014615E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +830955,fr,1,4.150000E+00,4.246450E+00,5.014615E+01,5.000000E+00,Active Shallow Crust,2.400092E+02,5.799754E+01,0.000000E+00 +830976,fr,1,4.350000E+00,4.246450E+00,5.014615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +831468,fr,1,4.450000E+00,1.637180E+00,5.203713E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +831555,fr,1,5.150000E+00,1.637180E+00,5.203713E+01,5.000000E+00,Active Shallow Crust,2.400233E+02,5.800060E+01,0.000000E+00 +831840,fr,3,3.550000E+00,3.869640E+00,4.564510E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +831843,fr,1,3.550000E+00,3.869640E+00,4.564510E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799799E+01,0.000000E+00 +831852,fr,1,3.650000E+00,3.869640E+00,4.564510E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +831858,fr,1,3.650000E+00,3.869640E+00,4.564510E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,-9.000000E+01 +831870,fr,1,3.750000E+00,3.869640E+00,4.564510E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998867E+01,-9.000000E+01 +831912,fr,1,4.150000E+00,3.869640E+00,4.564510E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +831924,fr,1,4.250000E+00,3.869640E+00,4.564510E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +831943,fr,1,4.350000E+00,3.869640E+00,4.564510E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +831954,fr,1,4.450000E+00,3.869640E+00,4.564510E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +832320,fr,1,3.550000E+00,7.699500E+00,4.482619E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999285E+01,0.000000E+00 +832322,fr,1,3.550000E+00,7.699500E+00,4.482619E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999285E+01,0.000000E+00 +832329,fr,1,3.550000E+00,7.699500E+00,4.482619E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999285E+01,0.000000E+00 +832332,fr,2,3.650000E+00,7.699500E+00,4.482619E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998725E+01,0.000000E+00 +832337,fr,1,3.650000E+00,7.699500E+00,4.482619E+01,2.750000E+01,Active Shallow Crust,2.400020E+02,5.801176E+01,0.000000E+00 +832340,fr,1,3.650000E+00,7.699500E+00,4.482619E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998711E+01,-9.000000E+01 +832344,fr,2,3.750000E+00,7.699500E+00,4.482619E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998864E+01,0.000000E+00 +832346,fr,1,3.750000E+00,7.699500E+00,4.482619E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998864E+01,0.000000E+00 +832353,fr,1,3.750000E+00,7.699500E+00,4.482619E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.996746E+01,0.000000E+00 +832354,fr,1,3.750000E+00,7.699500E+00,4.482619E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.996746E+01,0.000000E+00 +832359,fr,1,3.850000E+00,7.699500E+00,4.482619E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799722E+01,0.000000E+00 +832362,fr,1,3.850000E+00,7.699500E+00,4.482619E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,-9.000000E+01 +832368,fr,1,3.950000E+00,7.699500E+00,4.482619E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +832375,fr,1,3.950000E+00,7.699500E+00,4.482619E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999087E+01,-9.000000E+01 +832393,fr,1,4.150000E+00,7.699500E+00,4.482619E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +832400,fr,1,4.150000E+00,7.699500E+00,4.482619E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998912E+01,-9.000000E+01 +832466,fr,1,4.750000E+00,7.699500E+00,4.482619E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998922E+01,0.000000E+00 +832488,fr,1,4.950000E+00,7.699500E+00,4.482619E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +832526,fr,1,5.250000E+00,7.699500E+00,4.482619E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +833281,fr,1,3.550000E+00,3.768360E+00,4.138225E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998865E+01,0.000000E+00 +833292,fr,1,3.650000E+00,3.768360E+00,4.138225E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +833316,fr,1,3.850000E+00,3.768360E+00,4.138225E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +833329,fr,1,3.950000E+00,3.768360E+00,4.138225E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +833331,fr,1,3.950000E+00,3.768360E+00,4.138225E+01,5.000000E+00,Active Shallow Crust,2.400191E+02,5.800477E+01,0.000000E+00 +833376,fr,1,4.350000E+00,3.768360E+00,4.138225E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +833772,fr,1,3.650000E+00,4.192900E-01,4.899194E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +833785,fr,1,3.750000E+00,4.192900E-01,4.899194E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +833806,fr,1,3.850000E+00,4.192900E-01,4.899194E+01,1.500000E+01,Active Shallow Crust,1.288954E+02,8.999371E+01,0.000000E+00 +833811,fr,1,3.950000E+00,4.192900E-01,4.899194E+01,5.000000E+00,Active Shallow Crust,2.400202E+02,5.800507E+01,0.000000E+00 +833844,fr,2,4.250000E+00,4.192900E-01,4.899194E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +833930,fr,1,4.950000E+00,4.192900E-01,4.899194E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +833961,fr,2,5.150000E+00,4.192900E-01,4.899194E+01,5.000000E+00,Active Shallow Crust,1.288824E+02,8.999103E+01,0.000000E+00 +833964,fr,1,5.250000E+00,4.192900E-01,4.899194E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +834240,fr,1,3.550000E+00,8.985870E+00,5.059894E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998720E+01,0.000000E+00 +834252,fr,1,3.650000E+00,8.985870E+00,5.059894E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +834261,fr,1,3.650000E+00,8.985870E+00,5.059894E+01,5.000000E+00,Active Shallow Crust,1.288994E+02,8.996360E+01,0.000000E+00 +834276,fr,1,3.850000E+00,8.985870E+00,5.059894E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +834288,fr,1,3.950000E+00,8.985870E+00,5.059894E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999192E+01,0.000000E+00 +834432,fr,1,5.150000E+00,8.985870E+00,5.059894E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +834720,fr,1,3.550000E+00,4.845490E+00,4.565373E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999295E+01,0.000000E+00 +834735,fr,1,3.650000E+00,4.845490E+00,4.565373E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801305E+01,0.000000E+00 +834741,fr,1,3.650000E+00,4.845490E+00,4.565373E+01,5.000000E+00,Active Shallow Crust,1.288999E+02,8.996351E+01,0.000000E+00 +834756,fr,2,3.850000E+00,4.845490E+00,4.565373E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +834769,fr,1,3.950000E+00,4.845490E+00,4.565373E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +834777,fr,1,3.950000E+00,4.845490E+00,4.565373E+01,5.000000E+00,Active Shallow Crust,1.288996E+02,8.999333E+01,0.000000E+00 +834806,fr,1,4.250000E+00,4.845490E+00,4.565373E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +834818,fr,1,4.350000E+00,4.845490E+00,4.565373E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +834831,fr,1,4.450000E+00,4.845490E+00,4.565373E+01,5.000000E+00,Active Shallow Crust,2.400049E+02,5.799478E+01,0.000000E+00 +834845,fr,1,4.550000E+00,4.845490E+00,4.565373E+01,2.750000E+01,Active Shallow Crust,2.400092E+02,5.799743E+01,0.000000E+00 +834865,fr,1,4.750000E+00,4.845490E+00,4.565373E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +835200,fr,1,3.550000E+00,2.332140E+00,4.143494E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +835201,fr,4,3.550000E+00,2.332140E+00,4.143494E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +835203,fr,1,3.550000E+00,2.332140E+00,4.143494E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799839E+01,0.000000E+00 +835204,fr,2,3.550000E+00,2.332140E+00,4.143494E+01,1.500000E+01,Active Shallow Crust,2.400120E+02,5.799839E+01,0.000000E+00 +835212,fr,2,3.650000E+00,2.332140E+00,4.143494E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +835214,fr,1,3.650000E+00,2.332140E+00,4.143494E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +835216,fr,1,3.650000E+00,2.332140E+00,4.143494E+01,1.500000E+01,Active Shallow Crust,2.400004E+02,5.801241E+01,0.000000E+00 +835224,fr,4,3.750000E+00,2.332140E+00,4.143494E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999099E+01,0.000000E+00 +835233,fr,1,3.750000E+00,2.332140E+00,4.143494E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996741E+01,0.000000E+00 +835236,fr,1,3.850000E+00,2.332140E+00,4.143494E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +835246,fr,2,3.850000E+00,2.332140E+00,4.143494E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.999331E+01,0.000000E+00 +835248,fr,1,3.950000E+00,2.332140E+00,4.143494E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +835249,fr,2,3.950000E+00,2.332140E+00,4.143494E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +835254,fr,2,3.950000E+00,2.332140E+00,4.143494E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,-9.000000E+01 +835260,fr,1,4.050000E+00,2.332140E+00,4.143494E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +835272,fr,1,4.150000E+00,2.332140E+00,4.143494E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +835273,fr,1,4.150000E+00,2.332140E+00,4.143494E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +835285,fr,1,4.250000E+00,2.332140E+00,4.143494E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +835296,fr,1,4.350000E+00,2.332140E+00,4.143494E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +835326,fr,1,4.550000E+00,2.332140E+00,4.143494E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,-9.000000E+01 +835339,fr,1,4.650000E+00,2.332140E+00,4.143494E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,-9.000000E+01 +835356,fr,1,4.850000E+00,2.332140E+00,4.143494E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +835417,fr,1,5.350000E+00,2.332140E+00,4.143494E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +835680,fr,3,3.550000E+00,5.559800E+00,4.390619E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999274E+01,0.000000E+00 +835682,fr,1,3.550000E+00,5.559800E+00,4.390619E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999274E+01,0.000000E+00 +835683,fr,1,3.550000E+00,5.559800E+00,4.390619E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799831E+01,0.000000E+00 +835686,fr,2,3.550000E+00,5.559800E+00,4.390619E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999265E+01,-9.000000E+01 +835689,fr,2,3.550000E+00,5.559800E+00,4.390619E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.999274E+01,0.000000E+00 +835692,fr,3,3.650000E+00,5.559800E+00,4.390619E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998705E+01,0.000000E+00 +835694,fr,1,3.650000E+00,5.559800E+00,4.390619E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998705E+01,0.000000E+00 +835698,fr,2,3.650000E+00,5.559800E+00,4.390619E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998690E+01,-9.000000E+01 +835700,fr,1,3.650000E+00,5.559800E+00,4.390619E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998690E+01,-9.000000E+01 +835704,fr,4,3.750000E+00,5.559800E+00,4.390619E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998846E+01,0.000000E+00 +835707,fr,1,3.750000E+00,5.559800E+00,4.390619E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801770E+01,0.000000E+00 +835713,fr,1,3.750000E+00,5.559800E+00,4.390619E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.996745E+01,0.000000E+00 +835716,fr,1,3.850000E+00,5.559800E+00,4.390619E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +835718,fr,1,3.850000E+00,5.559800E+00,4.390619E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +835722,fr,1,3.850000E+00,5.559800E+00,4.390619E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +835728,fr,1,3.950000E+00,5.559800E+00,4.390619E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +835730,fr,1,3.950000E+00,5.559800E+00,4.390619E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +835741,fr,1,4.050000E+00,5.559800E+00,4.390619E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999183E+01,0.000000E+00 +835742,fr,1,4.050000E+00,5.559800E+00,4.390619E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999183E+01,0.000000E+00 +835753,fr,2,4.150000E+00,5.559800E+00,4.390619E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +835755,fr,2,4.150000E+00,5.559800E+00,4.390619E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799728E+01,0.000000E+00 +835791,fr,1,4.450000E+00,5.559800E+00,4.390619E+01,5.000000E+00,Active Shallow Crust,2.400046E+02,5.799477E+01,0.000000E+00 +835803,fr,1,4.550000E+00,5.559800E+00,4.390619E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.799735E+01,0.000000E+00 +835825,fr,1,4.750000E+00,5.559800E+00,4.390619E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +835882,fr,1,5.150000E+00,5.559800E+00,4.390619E+01,1.500000E+01,Active Shallow Crust,1.288851E+02,8.999100E+01,0.000000E+00 +835920,fr,1,5.550000E+00,5.559800E+00,4.390619E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +835924,fr,1,5.550000E+00,5.559800E+00,4.390619E+01,1.500000E+01,Active Shallow Crust,2.400269E+02,5.800209E+01,0.000000E+00 +836172,fr,1,3.650000E+00,-5.500120E+00,4.986693E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998841E+01,0.000000E+00 +836188,fr,1,3.750000E+00,-5.500120E+00,4.986693E+01,1.500000E+01,Active Shallow Crust,2.400087E+02,5.801729E+01,0.000000E+00 +836208,fr,1,3.950000E+00,-5.500120E+00,4.986693E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999180E+01,0.000000E+00 +836640,fr,1,3.550000E+00,-3.375120E+00,4.938999E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +836680,fr,1,3.850000E+00,-3.375120E+00,4.938999E+01,1.500000E+01,Active Shallow Crust,2.400109E+02,5.799826E+01,0.000000E+00 +836724,fr,1,4.250000E+00,-3.375120E+00,4.938999E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +837132,fr,1,3.650000E+00,5.194250E+00,4.940771E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998830E+01,0.000000E+00 +837204,fr,1,4.250000E+00,5.194250E+00,4.940771E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +837600,fr,1,3.550000E+00,4.636210E+00,4.497040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999287E+01,0.000000E+00 +837606,fr,1,3.550000E+00,4.636210E+00,4.497040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999278E+01,-9.000000E+01 +837612,fr,1,3.650000E+00,4.636210E+00,4.497040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998728E+01,0.000000E+00 +837624,fr,1,3.750000E+00,4.636210E+00,4.497040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +837636,fr,1,3.850000E+00,4.636210E+00,4.497040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +837648,fr,1,3.950000E+00,4.636210E+00,4.497040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +837649,fr,1,3.950000E+00,4.636210E+00,4.497040E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +837721,fr,1,4.550000E+00,4.636210E+00,4.497040E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +837737,fr,1,4.650000E+00,4.636210E+00,4.497040E+01,2.750000E+01,Active Shallow Crust,2.400101E+02,5.799449E+01,0.000000E+00 +837757,fr,1,4.850000E+00,4.636210E+00,4.497040E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +837762,fr,1,4.850000E+00,4.636210E+00,4.497040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,-9.000000E+01 +838080,fr,1,3.550000E+00,3.575760E+00,4.778947E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +838107,fr,1,3.750000E+00,3.575760E+00,4.778947E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.801740E+01,0.000000E+00 +838570,fr,1,3.550000E+00,-1.418560E+00,4.398915E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.999365E+01,0.000000E+00 +838596,fr,1,3.850000E+00,-1.418560E+00,4.398915E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +839040,fr,2,3.550000E+00,7.681590E+00,5.058444E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998720E+01,0.000000E+00 +839052,fr,1,3.650000E+00,7.681590E+00,5.058444E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +839054,fr,1,3.650000E+00,7.681590E+00,5.058444E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +839064,fr,2,3.750000E+00,7.681590E+00,5.058444E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +839065,fr,1,3.750000E+00,7.681590E+00,5.058444E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +839076,fr,1,3.850000E+00,7.681590E+00,5.058444E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +839079,fr,1,3.850000E+00,7.681590E+00,5.058444E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799807E+01,0.000000E+00 +839080,fr,1,3.850000E+00,7.681590E+00,5.058444E+01,1.500000E+01,Active Shallow Crust,2.400110E+02,5.799807E+01,0.000000E+00 +839088,fr,1,3.950000E+00,7.681590E+00,5.058444E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999192E+01,0.000000E+00 +839097,fr,1,3.950000E+00,7.681590E+00,5.058444E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.999394E+01,0.000000E+00 +839098,fr,1,3.950000E+00,7.681590E+00,5.058444E+01,1.500000E+01,Active Shallow Crust,1.289003E+02,8.999394E+01,0.000000E+00 +839100,fr,1,4.050000E+00,7.681590E+00,5.058444E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +839101,fr,1,4.050000E+00,7.681590E+00,5.058444E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +839112,fr,2,4.150000E+00,7.681590E+00,5.058444E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +839124,fr,1,4.250000E+00,7.681590E+00,5.058444E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +839136,fr,1,4.350000E+00,7.681590E+00,5.058444E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +839137,fr,1,4.350000E+00,7.681590E+00,5.058444E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +839162,fr,1,4.550000E+00,7.681590E+00,5.058444E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +839523,fr,1,3.550000E+00,-1.522610E+00,4.575937E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799808E+01,0.000000E+00 +839532,fr,1,3.650000E+00,-1.522610E+00,4.575937E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +839534,fr,1,3.650000E+00,-1.522610E+00,4.575937E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +839537,fr,1,3.650000E+00,-1.522610E+00,4.575937E+01,2.750000E+01,Active Shallow Crust,2.400012E+02,5.801282E+01,0.000000E+00 +839553,fr,1,3.750000E+00,-1.522610E+00,4.575937E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.996735E+01,0.000000E+00 +839556,fr,1,3.850000E+00,-1.522610E+00,4.575937E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +839557,fr,1,3.850000E+00,-1.522610E+00,4.575937E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +839607,fr,1,4.250000E+00,-1.522610E+00,4.575937E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.799410E+01,0.000000E+00 +839640,fr,1,4.550000E+00,-1.522610E+00,4.575937E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +839892,fr,1,6.650000E+00,-1.522597E+00,4.575937E+01,1.068981E+01,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +840000,fr,3,3.550000E+00,-2.044270E+00,4.909515E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +840001,fr,1,3.550000E+00,-2.044270E+00,4.909515E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +840003,fr,1,3.550000E+00,-2.044270E+00,4.909515E+01,5.000000E+00,Active Shallow Crust,2.400126E+02,5.799781E+01,0.000000E+00 +840004,fr,1,3.550000E+00,-2.044270E+00,4.909515E+01,1.500000E+01,Active Shallow Crust,2.400126E+02,5.799781E+01,0.000000E+00 +840006,fr,1,3.550000E+00,-2.044270E+00,4.909515E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +840009,fr,1,3.550000E+00,-2.044270E+00,4.909515E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999340E+01,0.000000E+00 +840011,fr,1,3.550000E+00,-2.044270E+00,4.909515E+01,2.750000E+01,Active Shallow Crust,1.288964E+02,8.999340E+01,0.000000E+00 +840012,fr,2,3.650000E+00,-2.044270E+00,4.909515E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +840013,fr,4,3.650000E+00,-2.044270E+00,4.909515E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +840015,fr,1,3.650000E+00,-2.044270E+00,4.909515E+01,5.000000E+00,Active Shallow Crust,2.400016E+02,5.801263E+01,0.000000E+00 +840017,fr,1,3.650000E+00,-2.044270E+00,4.909515E+01,2.750000E+01,Active Shallow Crust,2.400016E+02,5.801254E+01,0.000000E+00 +840036,fr,2,3.850000E+00,-2.044270E+00,4.909515E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +840045,fr,1,3.850000E+00,-2.044270E+00,4.909515E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999416E+01,0.000000E+00 +840048,fr,1,3.950000E+00,-2.044270E+00,4.909515E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +840049,fr,1,3.950000E+00,-2.044270E+00,4.909515E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +840061,fr,2,4.050000E+00,-2.044270E+00,4.909515E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +840063,fr,1,4.050000E+00,-2.044270E+00,4.909515E+01,5.000000E+00,Active Shallow Crust,2.400064E+02,5.800596E+01,0.000000E+00 +840072,fr,1,4.150000E+00,-2.044270E+00,4.909515E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +840096,fr,1,4.350000E+00,-2.044270E+00,4.909515E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +840109,fr,1,4.450000E+00,-2.044270E+00,4.909515E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +840114,fr,1,4.450000E+00,-2.044270E+00,4.909515E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,-9.000000E+01 +840180,fr,1,5.050000E+00,-2.044270E+00,4.909515E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +840480,fr,4,3.550000E+00,8.109220E+00,4.760798E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998640E+01,0.000000E+00 +840481,fr,4,3.550000E+00,8.109220E+00,4.760798E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998640E+01,0.000000E+00 +840484,fr,1,3.550000E+00,8.109220E+00,4.760798E+01,1.500000E+01,Active Shallow Crust,2.400130E+02,5.799811E+01,0.000000E+00 +840492,fr,1,3.650000E+00,8.109220E+00,4.760798E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998788E+01,0.000000E+00 +840493,fr,2,3.650000E+00,8.109220E+00,4.760798E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998788E+01,0.000000E+00 +840501,fr,2,3.650000E+00,8.109220E+00,4.760798E+01,5.000000E+00,Active Shallow Crust,1.289018E+02,8.996355E+01,0.000000E+00 +840504,fr,1,3.750000E+00,8.109220E+00,4.760798E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +840505,fr,1,3.750000E+00,8.109220E+00,4.760798E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +840506,fr,1,3.750000E+00,8.109220E+00,4.760798E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +840509,fr,1,3.750000E+00,8.109220E+00,4.760798E+01,2.750000E+01,Active Shallow Crust,2.400096E+02,5.801785E+01,0.000000E+00 +840510,fr,1,3.750000E+00,8.109220E+00,4.760798E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,-9.000000E+01 +840516,fr,1,3.850000E+00,8.109220E+00,4.760798E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +840528,fr,2,3.950000E+00,8.109220E+00,4.760798E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +840543,fr,1,4.050000E+00,8.109220E+00,4.760798E+01,5.000000E+00,Active Shallow Crust,2.400060E+02,5.800699E+01,0.000000E+00 +840552,fr,1,4.150000E+00,8.109220E+00,4.760798E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999319E+01,0.000000E+00 +840564,fr,2,4.250000E+00,8.109220E+00,4.760798E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998785E+01,0.000000E+00 +840576,fr,1,4.350000E+00,8.109220E+00,4.760798E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +840577,fr,1,4.350000E+00,8.109220E+00,4.760798E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +840588,fr,1,4.450000E+00,8.109220E+00,4.760798E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +840613,fr,1,4.650000E+00,8.109220E+00,4.760798E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998850E+01,0.000000E+00 +840624,fr,1,4.750000E+00,8.109220E+00,4.760798E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +840649,fr,1,4.950000E+00,8.109220E+00,4.760798E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +840674,fr,1,5.150000E+00,8.109220E+00,4.760798E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998922E+01,0.000000E+00 +840712,fr,1,5.450000E+00,8.109220E+00,4.760798E+01,1.500000E+01,Active Shallow Crust,2.400301E+02,5.799874E+01,0.000000E+00 +840960,fr,1,3.550000E+00,2.081670E+00,4.656624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +840961,fr,1,3.550000E+00,2.081670E+00,4.656624E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +840974,fr,1,3.650000E+00,2.081670E+00,4.656624E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999073E+01,0.000000E+00 +840981,fr,1,3.650000E+00,2.081670E+00,4.656624E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.996352E+01,0.000000E+00 +840984,fr,1,3.750000E+00,2.081670E+00,4.656624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +840996,fr,1,3.850000E+00,2.081670E+00,4.656624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +840997,fr,1,3.850000E+00,2.081670E+00,4.656624E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +841008,fr,1,3.950000E+00,2.081670E+00,4.656624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +841020,fr,2,4.050000E+00,2.081670E+00,4.656624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +841029,fr,1,4.050000E+00,2.081670E+00,4.656624E+01,5.000000E+00,Active Shallow Crust,1.288904E+02,8.999416E+01,0.000000E+00 +841057,fr,1,4.350000E+00,2.081670E+00,4.656624E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +841104,fr,1,4.750000E+00,2.081670E+00,4.656624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +841152,fr,1,5.150000E+00,2.081670E+00,4.656624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +841179,fr,1,5.350000E+00,2.081670E+00,4.656624E+01,5.000000E+00,Active Shallow Crust,2.400252E+02,5.799789E+01,0.000000E+00 +841440,fr,1,3.550000E+00,4.404990E+00,4.752854E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999319E+01,0.000000E+00 +841446,fr,1,3.550000E+00,4.404990E+00,4.752854E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999311E+01,-9.000000E+01 +841450,fr,1,3.550000E+00,4.404990E+00,4.752854E+01,1.500000E+01,Active Shallow Crust,1.288967E+02,8.999319E+01,0.000000E+00 +841452,fr,1,3.650000E+00,4.404990E+00,4.752854E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998786E+01,0.000000E+00 +841453,fr,1,3.650000E+00,4.404990E+00,4.752854E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998786E+01,0.000000E+00 +841464,fr,1,3.750000E+00,4.404990E+00,4.752854E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +841489,fr,1,3.950000E+00,4.404990E+00,4.752854E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999141E+01,0.000000E+00 +841500,fr,1,4.050000E+00,4.404990E+00,4.752854E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998851E+01,0.000000E+00 +841536,fr,1,4.350000E+00,4.404990E+00,4.752854E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +841920,fr,3,3.550000E+00,-1.242630E+00,4.276810E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +841921,fr,1,3.550000E+00,-1.242630E+00,4.276810E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +841923,fr,2,3.550000E+00,-1.242630E+00,4.276810E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799815E+01,0.000000E+00 +841924,fr,1,3.550000E+00,-1.242630E+00,4.276810E+01,1.500000E+01,Active Shallow Crust,2.400117E+02,5.799815E+01,0.000000E+00 +841929,fr,2,3.550000E+00,-1.242630E+00,4.276810E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999352E+01,0.000000E+00 +841932,fr,1,3.650000E+00,-1.242630E+00,4.276810E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +841933,fr,2,3.650000E+00,-1.242630E+00,4.276810E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +841936,fr,1,3.650000E+00,-1.242630E+00,4.276810E+01,1.500000E+01,Active Shallow Crust,2.400005E+02,5.801278E+01,0.000000E+00 +841938,fr,1,3.650000E+00,-1.242630E+00,4.276810E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +841944,fr,2,3.750000E+00,-1.242630E+00,4.276810E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +841946,fr,1,3.750000E+00,-1.242630E+00,4.276810E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +841947,fr,1,3.750000E+00,-1.242630E+00,4.276810E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801745E+01,0.000000E+00 +841957,fr,1,3.850000E+00,-1.242630E+00,4.276810E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +841959,fr,1,3.850000E+00,-1.242630E+00,4.276810E+01,5.000000E+00,Active Shallow Crust,2.400103E+02,5.799767E+01,0.000000E+00 +841966,fr,2,3.850000E+00,-1.242630E+00,4.276810E+01,1.500000E+01,Active Shallow Crust,1.288959E+02,8.999410E+01,0.000000E+00 +841972,fr,1,3.950000E+00,-1.242630E+00,4.276810E+01,1.500000E+01,Active Shallow Crust,2.400191E+02,5.800495E+01,0.000000E+00 +841973,fr,1,3.950000E+00,-1.242630E+00,4.276810E+01,2.750000E+01,Active Shallow Crust,2.400191E+02,5.800495E+01,0.000000E+00 +841976,fr,1,3.950000E+00,-1.242630E+00,4.276810E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,-9.000000E+01 +841992,fr,3,4.150000E+00,-1.242630E+00,4.276810E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +841997,fr,1,4.150000E+00,-1.242630E+00,4.276810E+01,2.750000E+01,Active Shallow Crust,2.400078E+02,5.799718E+01,0.000000E+00 +841998,fr,1,4.150000E+00,-1.242630E+00,4.276810E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,-9.000000E+01 +842004,fr,2,4.250000E+00,-1.242630E+00,4.276810E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +842006,fr,1,4.250000E+00,-1.242630E+00,4.276810E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +842019,fr,1,4.350000E+00,-1.242630E+00,4.276810E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799573E+01,0.000000E+00 +842027,fr,1,4.350000E+00,-1.242630E+00,4.276810E+01,2.750000E+01,Active Shallow Crust,1.288985E+02,8.998277E+01,0.000000E+00 +842035,fr,1,4.450000E+00,-1.242630E+00,4.276810E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +842036,fr,1,4.450000E+00,-1.242630E+00,4.276810E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +842040,fr,1,4.550000E+00,-1.242630E+00,4.276810E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +842054,fr,1,4.650000E+00,-1.242630E+00,4.276810E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +842400,fr,3,3.550000E+00,2.305130E+00,4.592248E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +842402,fr,1,3.550000E+00,2.305130E+00,4.592248E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +842413,fr,1,3.650000E+00,2.305130E+00,4.592248E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +842416,fr,1,3.650000E+00,2.305130E+00,4.592248E+01,1.500000E+01,Active Shallow Crust,2.400009E+02,5.801286E+01,0.000000E+00 +842421,fr,1,3.650000E+00,2.305130E+00,4.592248E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.996352E+01,0.000000E+00 +842424,fr,4,3.750000E+00,2.305130E+00,4.592248E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +842426,fr,1,3.750000E+00,2.305130E+00,4.592248E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +842438,fr,1,3.850000E+00,2.305130E+00,4.592248E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +842447,fr,1,3.850000E+00,2.305130E+00,4.592248E+01,2.750000E+01,Active Shallow Crust,1.288957E+02,8.999379E+01,0.000000E+00 +842473,fr,1,4.150000E+00,2.305130E+00,4.592248E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +842475,fr,1,4.150000E+00,2.305130E+00,4.592248E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.799715E+01,0.000000E+00 +842476,fr,1,4.150000E+00,2.305130E+00,4.592248E+01,1.500000E+01,Active Shallow Crust,2.400086E+02,5.799718E+01,0.000000E+00 +842498,fr,1,4.350000E+00,2.305130E+00,4.592248E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +842508,fr,1,4.450000E+00,2.305130E+00,4.592248E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +842548,fr,1,4.750000E+00,2.305130E+00,4.592248E+01,1.500000E+01,Active Shallow Crust,2.400072E+02,5.800447E+01,0.000000E+00 +842787,fr,1,6.750000E+00,2.284231E+00,4.594765E+01,1.017163E+01,Active Shallow Crust,2.401253E+02,5.800052E+01,0.000000E+00 +842893,fr,1,3.650000E+00,-1.678550E+00,4.464961E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +842904,fr,1,3.750000E+00,-1.678550E+00,4.464961E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +843360,fr,1,3.550000E+00,2.709240E+00,4.216534E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998879E+01,0.000000E+00 +843372,fr,1,3.650000E+00,2.709240E+00,4.216534E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +843374,fr,1,3.650000E+00,2.709240E+00,4.216534E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +843375,fr,1,3.650000E+00,2.709240E+00,4.216534E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801334E+01,0.000000E+00 +843387,fr,1,3.750000E+00,2.709240E+00,4.216534E+01,5.000000E+00,Active Shallow Crust,2.400075E+02,5.801747E+01,0.000000E+00 +843397,fr,1,3.850000E+00,2.709240E+00,4.216534E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +843399,fr,2,3.850000E+00,2.709240E+00,4.216534E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799765E+01,0.000000E+00 +843420,fr,1,4.050000E+00,2.709240E+00,4.216534E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +843423,fr,1,4.050000E+00,2.709240E+00,4.216534E+01,5.000000E+00,Active Shallow Crust,2.400053E+02,5.800574E+01,0.000000E+00 +843432,fr,1,4.150000E+00,2.709240E+00,4.216534E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +843465,fr,1,4.350000E+00,2.709240E+00,4.216534E+01,5.000000E+00,Active Shallow Crust,1.288988E+02,8.998287E+01,0.000000E+00 +843469,fr,1,4.450000E+00,2.709240E+00,4.216534E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +843472,fr,1,4.450000E+00,2.709240E+00,4.216534E+01,1.500000E+01,Active Shallow Crust,2.400041E+02,5.799451E+01,0.000000E+00 +843483,fr,1,4.550000E+00,2.709240E+00,4.216534E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799700E+01,0.000000E+00 +843492,fr,1,4.650000E+00,2.709240E+00,4.216534E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +843579,fr,1,5.350000E+00,2.709240E+00,4.216534E+01,5.000000E+00,Active Shallow Crust,2.400222E+02,5.800100E+01,0.000000E+00 +843840,fr,1,3.550000E+00,3.924500E+00,4.771407E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +843841,fr,1,3.550000E+00,3.924500E+00,4.771407E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +843864,fr,1,3.750000E+00,3.924500E+00,4.771407E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998922E+01,0.000000E+00 +843876,fr,1,3.850000E+00,3.924500E+00,4.771407E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +843895,fr,1,3.950000E+00,3.924500E+00,4.771407E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,-9.000000E+01 +843953,fr,1,4.450000E+00,3.924500E+00,4.771407E+01,2.750000E+01,Active Shallow Crust,2.400056E+02,5.799483E+01,0.000000E+00 +843972,fr,1,4.650000E+00,3.924500E+00,4.771407E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +844359,fr,1,3.850000E+00,-2.846950E+00,4.590406E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.799814E+01,0.000000E+00 +844800,fr,1,3.550000E+00,-1.311670E+00,4.262243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +844805,fr,1,3.550000E+00,-1.311670E+00,4.262243E+01,2.750000E+01,Active Shallow Crust,2.400115E+02,5.799827E+01,0.000000E+00 +844806,fr,1,3.550000E+00,-1.311670E+00,4.262243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,-9.000000E+01 +844809,fr,2,3.550000E+00,-1.311670E+00,4.262243E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.999351E+01,0.000000E+00 +844812,fr,2,3.650000E+00,-1.311670E+00,4.262243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +844816,fr,1,3.650000E+00,-1.311670E+00,4.262243E+01,1.500000E+01,Active Shallow Crust,2.400005E+02,5.801273E+01,0.000000E+00 +844818,fr,1,3.650000E+00,-1.311670E+00,4.262243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +844821,fr,1,3.650000E+00,-1.311670E+00,4.262243E+01,5.000000E+00,Active Shallow Crust,1.289006E+02,8.996345E+01,0.000000E+00 +844824,fr,4,3.750000E+00,-1.311670E+00,4.262243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +844836,fr,1,3.850000E+00,-1.311670E+00,4.262243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +844837,fr,1,3.850000E+00,-1.311670E+00,4.262243E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +844848,fr,2,3.950000E+00,-1.311670E+00,4.262243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +844849,fr,1,3.950000E+00,-1.311670E+00,4.262243E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +844860,fr,1,4.050000E+00,-1.311670E+00,4.262243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +844872,fr,2,4.150000E+00,-1.311670E+00,4.262243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +844879,fr,1,4.150000E+00,-1.311670E+00,4.262243E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +844884,fr,2,4.250000E+00,-1.311670E+00,4.262243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +844885,fr,1,4.250000E+00,-1.311670E+00,4.262243E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +844900,fr,1,4.350000E+00,-1.311670E+00,4.262243E+01,1.500000E+01,Active Shallow Crust,2.400077E+02,5.799580E+01,0.000000E+00 +844905,fr,1,4.350000E+00,-1.311670E+00,4.262243E+01,5.000000E+00,Active Shallow Crust,1.288986E+02,8.998276E+01,0.000000E+00 +844909,fr,1,4.450000E+00,-1.311670E+00,4.262243E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +844947,fr,1,4.750000E+00,-1.311670E+00,4.262243E+01,5.000000E+00,Active Shallow Crust,2.400061E+02,5.800429E+01,0.000000E+00 +844968,fr,1,4.950000E+00,-1.311670E+00,4.262243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +845280,fr,1,3.550000E+00,4.254010E+00,4.530944E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999290E+01,0.000000E+00 +845285,fr,1,3.550000E+00,4.254010E+00,4.530944E+01,2.750000E+01,Active Shallow Crust,2.400120E+02,5.799852E+01,0.000000E+00 +845298,fr,1,3.650000E+00,4.254010E+00,4.530944E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998721E+01,-9.000000E+01 +845328,fr,1,3.950000E+00,4.254010E+00,4.530944E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999105E+01,0.000000E+00 +845355,fr,1,4.150000E+00,4.254010E+00,4.530944E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.799723E+01,0.000000E+00 +845772,fr,1,3.650000E+00,3.275780E+00,5.346111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +846252,fr,1,3.650000E+00,1.390700E-01,5.068565E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +846264,fr,1,3.750000E+00,1.390700E-01,5.068565E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +846301,fr,1,4.050000E+00,1.390700E-01,5.068565E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +847213,fr,1,3.650000E+00,6.969800E+00,4.301111E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998685E+01,0.000000E+00 +847236,fr,1,3.850000E+00,6.969800E+00,4.301111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +847284,fr,1,4.250000E+00,6.969800E+00,4.301111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +847296,fr,1,4.350000E+00,6.969800E+00,4.301111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +847683,fr,1,3.550000E+00,-2.482380E+00,4.986353E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799812E+01,0.000000E+00 +847728,fr,1,3.950000E+00,-2.482380E+00,4.986353E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +848160,fr,1,3.550000E+00,5.199930E+00,5.186844E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998755E+01,0.000000E+00 +848184,fr,2,3.750000E+00,5.199930E+00,5.186844E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +848221,fr,1,4.050000E+00,5.199930E+00,5.186844E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +848642,fr,1,3.550000E+00,2.003780E+00,4.642876E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +848652,fr,1,3.650000E+00,2.003780E+00,4.642876E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999071E+01,0.000000E+00 +848653,fr,1,3.650000E+00,2.003780E+00,4.642876E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999071E+01,0.000000E+00 +848665,fr,1,3.750000E+00,2.003780E+00,4.642876E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998896E+01,0.000000E+00 +848680,fr,1,3.850000E+00,2.003780E+00,4.642876E+01,1.500000E+01,Active Shallow Crust,2.400108E+02,5.799822E+01,0.000000E+00 +848688,fr,1,3.950000E+00,2.003780E+00,4.642876E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +848692,fr,1,3.950000E+00,2.003780E+00,4.642876E+01,1.500000E+01,Active Shallow Crust,2.400198E+02,5.800520E+01,0.000000E+00 +848694,fr,1,3.950000E+00,2.003780E+00,4.642876E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,-9.000000E+01 +848701,fr,1,4.050000E+00,2.003780E+00,4.642876E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +848703,fr,1,4.050000E+00,2.003780E+00,4.642876E+01,5.000000E+00,Active Shallow Crust,2.400062E+02,5.800578E+01,0.000000E+00 +848709,fr,1,4.050000E+00,2.003780E+00,4.642876E+01,5.000000E+00,Active Shallow Crust,1.288907E+02,8.999365E+01,0.000000E+00 +848715,fr,1,4.150000E+00,2.003780E+00,4.642876E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.799744E+01,0.000000E+00 +848754,fr,1,4.450000E+00,2.003780E+00,4.642876E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +848760,fr,1,4.550000E+00,2.003780E+00,4.642876E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +848763,fr,1,4.550000E+00,2.003780E+00,4.642876E+01,5.000000E+00,Active Shallow Crust,2.400093E+02,5.799741E+01,0.000000E+00 +848769,fr,1,4.550000E+00,2.003780E+00,4.642876E+01,5.000000E+00,Active Shallow Crust,1.288937E+02,8.998589E+01,0.000000E+00 +848784,fr,1,4.750000E+00,2.003780E+00,4.642876E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +848820,fr,1,5.050000E+00,2.003780E+00,4.642876E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +849156,fr,1,3.850000E+00,1.490960E+00,4.478905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +849192,fr,1,4.150000E+00,1.490960E+00,4.478905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +849600,fr,1,3.550000E+00,5.370000E-02,4.723884E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +849601,fr,1,3.550000E+00,5.370000E-02,4.723884E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +849605,fr,1,3.550000E+00,5.370000E-02,4.723884E+01,2.750000E+01,Active Shallow Crust,2.400123E+02,5.799809E+01,0.000000E+00 +849606,fr,1,3.550000E+00,5.370000E-02,4.723884E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +849609,fr,1,3.550000E+00,5.370000E-02,4.723884E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999371E+01,0.000000E+00 +849613,fr,1,3.650000E+00,5.370000E-02,4.723884E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +849615,fr,1,3.650000E+00,5.370000E-02,4.723884E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801292E+01,0.000000E+00 +849619,fr,1,3.650000E+00,5.370000E-02,4.723884E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +849621,fr,1,3.650000E+00,5.370000E-02,4.723884E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.996351E+01,0.000000E+00 +849624,fr,1,3.750000E+00,5.370000E-02,4.723884E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +849626,fr,1,3.750000E+00,5.370000E-02,4.723884E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +849634,fr,1,3.750000E+00,5.370000E-02,4.723884E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.996735E+01,0.000000E+00 +849636,fr,1,3.850000E+00,5.370000E-02,4.723884E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +849661,fr,1,4.050000E+00,5.370000E-02,4.723884E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +849672,fr,1,4.150000E+00,5.370000E-02,4.723884E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +849709,fr,1,4.450000E+00,5.370000E-02,4.723884E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +849741,fr,1,4.650000E+00,5.370000E-02,4.723884E+01,5.000000E+00,Active Shallow Crust,1.288909E+02,8.998701E+01,0.000000E+00 +849756,fr,1,4.850000E+00,5.370000E-02,4.723884E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +849816,fr,1,5.350000E+00,5.370000E-02,4.723884E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +850094,fr,1,3.650000E+00,-2.569520E+00,4.441813E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +850587,fr,1,3.750000E+00,6.135070E+00,5.198953E+01,5.000000E+00,Active Shallow Crust,2.400094E+02,5.801800E+01,0.000000E+00 +850621,fr,1,4.050000E+00,6.135070E+00,5.198953E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +851040,fr,1,3.550000E+00,-2.976380E+00,4.312243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998896E+01,0.000000E+00 +851043,fr,1,3.550000E+00,-2.976380E+00,4.312243E+01,5.000000E+00,Active Shallow Crust,2.400115E+02,5.799842E+01,0.000000E+00 +851044,fr,1,3.550000E+00,-2.976380E+00,4.312243E+01,1.500000E+01,Active Shallow Crust,2.400115E+02,5.799842E+01,0.000000E+00 +851052,fr,3,3.650000E+00,-2.976380E+00,4.312243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +851062,fr,1,3.650000E+00,-2.976380E+00,4.312243E+01,1.500000E+01,Active Shallow Crust,1.289010E+02,8.996346E+01,0.000000E+00 +851064,fr,2,3.750000E+00,-2.976380E+00,4.312243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +851088,fr,1,3.950000E+00,-2.976380E+00,4.312243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +851100,fr,1,4.050000E+00,-2.976380E+00,4.312243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +851112,fr,1,4.150000E+00,-2.976380E+00,4.312243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +851126,fr,1,4.250000E+00,-2.976380E+00,4.312243E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +851133,fr,1,4.250000E+00,-2.976380E+00,4.312243E+01,5.000000E+00,Active Shallow Crust,1.288948E+02,8.998109E+01,0.000000E+00 +851139,fr,1,4.350000E+00,-2.976380E+00,4.312243E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799571E+01,0.000000E+00 +851524,fr,1,3.550000E+00,6.039330E+00,5.185654E+01,1.500000E+01,Active Shallow Crust,2.400120E+02,5.799817E+01,0.000000E+00 +851527,fr,1,3.550000E+00,6.039330E+00,5.185654E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998740E+01,-9.000000E+01 +851532,fr,1,3.650000E+00,6.039330E+00,5.185654E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998890E+01,0.000000E+00 +851536,fr,1,3.650000E+00,6.039330E+00,5.185654E+01,1.500000E+01,Active Shallow Crust,2.400021E+02,5.801268E+01,0.000000E+00 +851545,fr,1,3.750000E+00,6.039330E+00,5.185654E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +851568,fr,1,3.950000E+00,6.039330E+00,5.185654E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998821E+01,0.000000E+00 +852960,fr,1,3.550000E+00,-1.488570E+00,4.384434E+01,5.000000E+00,Active Shallow Crust,3.599991E+02,8.999091E+01,0.000000E+00 +852984,fr,1,3.750000E+00,-1.488570E+00,4.384434E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +852996,fr,1,3.850000E+00,-1.488570E+00,4.384434E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +853137,fr,1,4.950000E+00,-1.488570E+00,4.384434E+01,5.000000E+00,Active Shallow Crust,1.288909E+02,8.998975E+01,0.000000E+00 +853476,fr,1,3.850000E+00,4.727660E+00,4.312916E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +853488,fr,1,3.950000E+00,4.727660E+00,4.312916E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +853545,fr,1,4.350000E+00,4.727660E+00,4.312916E+01,5.000000E+00,Active Shallow Crust,1.288987E+02,8.998291E+01,0.000000E+00 +853564,fr,1,4.550000E+00,4.727660E+00,4.312916E+01,1.500000E+01,Active Shallow Crust,2.400085E+02,5.799732E+01,0.000000E+00 +853920,fr,1,3.550000E+00,2.543190E+00,4.634843E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +853921,fr,1,3.550000E+00,2.543190E+00,4.634843E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +853923,fr,2,3.550000E+00,2.543190E+00,4.634843E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799813E+01,0.000000E+00 +853926,fr,1,3.550000E+00,2.543190E+00,4.634843E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,-9.000000E+01 +853929,fr,2,3.550000E+00,2.543190E+00,4.634843E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999304E+01,0.000000E+00 +853944,fr,1,3.750000E+00,2.543190E+00,4.634843E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +853948,fr,1,3.750000E+00,2.543190E+00,4.634843E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.801796E+01,0.000000E+00 +853956,fr,1,3.850000E+00,2.543190E+00,4.634843E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +853968,fr,1,3.950000E+00,2.543190E+00,4.634843E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998902E+01,0.000000E+00 +853980,fr,1,4.050000E+00,2.543190E+00,4.634843E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +854007,fr,1,4.250000E+00,2.543190E+00,4.634843E+01,5.000000E+00,Active Shallow Crust,2.400072E+02,5.799417E+01,0.000000E+00 +854029,fr,1,4.450000E+00,2.543190E+00,4.634843E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +854071,fr,1,4.750000E+00,2.543190E+00,4.634843E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,-9.000000E+01 +854112,fr,1,5.150000E+00,2.543190E+00,4.634843E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +854145,fr,1,5.350000E+00,2.543190E+00,4.634843E+01,5.000000E+00,Active Shallow Crust,1.288832E+02,8.998814E+01,0.000000E+00 +854190,fr,1,5.750000E+00,2.543190E+00,4.634843E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,-9.000000E+01 +854417,fr,1,3.650000E+00,-3.806800E-01,4.490881E+01,2.750000E+01,Active Shallow Crust,2.400009E+02,5.801273E+01,0.000000E+00 +854451,fr,1,3.950000E+00,-3.806800E-01,4.490881E+01,5.000000E+00,Active Shallow Crust,2.400196E+02,5.800491E+01,0.000000E+00 +854511,fr,1,4.450000E+00,-3.806800E-01,4.490881E+01,5.000000E+00,Active Shallow Crust,2.400049E+02,5.799462E+01,0.000000E+00 +854616,fr,1,5.350000E+00,-3.806800E-01,4.490881E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +854926,fr,1,3.850000E+00,-1.402770E+00,4.481404E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.999367E+01,0.000000E+00 +855361,fr,1,3.550000E+00,4.496410E+00,4.067105E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999236E+01,0.000000E+00 +855369,fr,1,3.550000E+00,4.496410E+00,4.067105E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999618E+01,0.000000E+00 +855373,fr,1,3.650000E+00,4.496410E+00,4.067105E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999319E+01,0.000000E+00 +855384,fr,1,3.750000E+00,4.496410E+00,4.067105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998785E+01,0.000000E+00 +855468,fr,1,4.450000E+00,4.496410E+00,4.067105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +855841,fr,1,3.550000E+00,2.165740E+00,4.946831E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +855864,fr,1,3.750000E+00,2.165740E+00,4.946831E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +855981,fr,1,4.650000E+00,2.165740E+00,4.946831E+01,5.000000E+00,Active Shallow Crust,1.288903E+02,8.998714E+01,0.000000E+00 +856332,fr,1,3.650000E+00,-1.672210E+00,4.506167E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +856336,fr,1,3.650000E+00,-1.672210E+00,4.506167E+01,1.500000E+01,Active Shallow Crust,2.400008E+02,5.801297E+01,0.000000E+00 +857304,fr,1,3.750000E+00,3.683120E+00,4.665359E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +857328,fr,1,3.950000E+00,3.683120E+00,4.665359E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998908E+01,0.000000E+00 +857448,fr,1,4.950000E+00,3.683120E+00,4.665359E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +857760,fr,1,3.550000E+00,4.850170E+00,4.367881E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999271E+01,0.000000E+00 +857761,fr,1,3.550000E+00,4.850170E+00,4.367881E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999271E+01,0.000000E+00 +857762,fr,1,3.550000E+00,4.850170E+00,4.367881E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999271E+01,0.000000E+00 +857768,fr,1,3.550000E+00,4.850170E+00,4.367881E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999262E+01,-9.000000E+01 +857769,fr,1,3.550000E+00,4.850170E+00,4.367881E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999635E+01,0.000000E+00 +857772,fr,2,3.650000E+00,4.850170E+00,4.367881E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998700E+01,0.000000E+00 +857774,fr,1,3.650000E+00,4.850170E+00,4.367881E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998700E+01,0.000000E+00 +857793,fr,1,3.750000E+00,4.850170E+00,4.367881E+01,5.000000E+00,Active Shallow Crust,1.288974E+02,8.996745E+01,0.000000E+00 +857796,fr,3,3.850000E+00,4.850170E+00,4.367881E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +857808,fr,2,3.950000E+00,4.850170E+00,4.367881E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999080E+01,0.000000E+00 +857814,fr,1,3.950000E+00,4.850170E+00,4.367881E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999069E+01,-9.000000E+01 +857817,fr,1,3.950000E+00,4.850170E+00,4.367881E+01,5.000000E+00,Active Shallow Crust,1.289000E+02,8.999310E+01,0.000000E+00 +857820,fr,2,4.050000E+00,4.850170E+00,4.367881E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999180E+01,0.000000E+00 +857827,fr,1,4.050000E+00,4.850170E+00,4.367881E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999170E+01,-9.000000E+01 +857832,fr,1,4.150000E+00,4.850170E+00,4.367881E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +857846,fr,1,4.250000E+00,4.850170E+00,4.367881E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +857858,fr,1,4.350000E+00,4.850170E+00,4.367881E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +857880,fr,2,4.550000E+00,4.850170E+00,4.367881E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +857883,fr,1,4.550000E+00,4.850170E+00,4.367881E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.799726E+01,0.000000E+00 +857905,fr,1,4.750000E+00,4.850170E+00,4.367881E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +858003,fr,1,5.550000E+00,4.850170E+00,4.367881E+01,5.000000E+00,Active Shallow Crust,2.400266E+02,5.800213E+01,0.000000E+00 +858036,fr,1,5.850000E+00,4.850170E+00,4.367881E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +858240,fr,4,3.550000E+00,1.542820E+00,4.237844E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999069E+01,0.000000E+00 +858246,fr,1,3.550000E+00,1.542820E+00,4.237844E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999058E+01,-9.000000E+01 +858247,fr,1,3.550000E+00,1.542820E+00,4.237844E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999058E+01,-9.000000E+01 +858253,fr,1,3.650000E+00,1.542820E+00,4.237844E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +858264,fr,3,3.750000E+00,1.542820E+00,4.237844E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +858265,fr,1,3.750000E+00,1.542820E+00,4.237844E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +858276,fr,1,3.850000E+00,1.542820E+00,4.237844E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +858288,fr,1,3.950000E+00,1.542820E+00,4.237844E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +858300,fr,3,4.050000E+00,1.542820E+00,4.237844E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +858302,fr,1,4.050000E+00,1.542820E+00,4.237844E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +858303,fr,1,4.050000E+00,1.542820E+00,4.237844E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.800571E+01,0.000000E+00 +858327,fr,1,4.250000E+00,1.542820E+00,4.237844E+01,5.000000E+00,Active Shallow Crust,2.400067E+02,5.799393E+01,0.000000E+00 +858329,fr,1,4.250000E+00,1.542820E+00,4.237844E+01,2.750000E+01,Active Shallow Crust,2.400067E+02,5.799393E+01,0.000000E+00 +858336,fr,1,4.350000E+00,1.542820E+00,4.237844E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +858372,fr,2,4.650000E+00,1.542820E+00,4.237844E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +858385,fr,1,4.750000E+00,1.542820E+00,4.237844E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +858723,fr,1,3.550000E+00,5.633840E+00,4.820601E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799797E+01,0.000000E+00 +859200,fr,1,3.550000E+00,1.254220E+00,4.864058E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +859207,fr,1,3.550000E+00,1.254220E+00,4.864058E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,-9.000000E+01 +859230,fr,1,3.750000E+00,1.254220E+00,4.864058E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,-9.000000E+01 +859284,fr,1,4.250000E+00,1.254220E+00,4.864058E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +859680,fr,16,3.550000E+00,-1.810800E-01,4.301614E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +859681,fr,3,3.550000E+00,-1.810800E-01,4.301614E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +859682,fr,3,3.550000E+00,-1.810800E-01,4.301614E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +859683,fr,3,3.550000E+00,-1.810800E-01,4.301614E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799810E+01,0.000000E+00 +859684,fr,2,3.550000E+00,-1.810800E-01,4.301614E+01,1.500000E+01,Active Shallow Crust,2.400119E+02,5.799810E+01,0.000000E+00 +859689,fr,1,3.550000E+00,-1.810800E-01,4.301614E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999367E+01,0.000000E+00 +859691,fr,1,3.550000E+00,-1.810800E-01,4.301614E+01,2.750000E+01,Active Shallow Crust,1.288965E+02,8.999367E+01,0.000000E+00 +859692,fr,14,3.650000E+00,-1.810800E-01,4.301614E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +859693,fr,5,3.650000E+00,-1.810800E-01,4.301614E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +859695,fr,3,3.650000E+00,-1.810800E-01,4.301614E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801285E+01,0.000000E+00 +859696,fr,1,3.650000E+00,-1.810800E-01,4.301614E+01,1.500000E+01,Active Shallow Crust,2.400008E+02,5.801285E+01,0.000000E+00 +859698,fr,1,3.650000E+00,-1.810800E-01,4.301614E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +859699,fr,1,3.650000E+00,-1.810800E-01,4.301614E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +859700,fr,1,3.650000E+00,-1.810800E-01,4.301614E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +859701,fr,1,3.650000E+00,-1.810800E-01,4.301614E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996351E+01,0.000000E+00 +859702,fr,3,3.650000E+00,-1.810800E-01,4.301614E+01,1.500000E+01,Active Shallow Crust,1.289007E+02,8.996351E+01,0.000000E+00 +859704,fr,6,3.750000E+00,-1.810800E-01,4.301614E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +859705,fr,1,3.750000E+00,-1.810800E-01,4.301614E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +859706,fr,2,3.750000E+00,-1.810800E-01,4.301614E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +859707,fr,2,3.750000E+00,-1.810800E-01,4.301614E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801748E+01,0.000000E+00 +859710,fr,2,3.750000E+00,-1.810800E-01,4.301614E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +859713,fr,2,3.750000E+00,-1.810800E-01,4.301614E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.996735E+01,0.000000E+00 +859716,fr,3,3.850000E+00,-1.810800E-01,4.301614E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +859717,fr,1,3.850000E+00,-1.810800E-01,4.301614E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +859718,fr,1,3.850000E+00,-1.810800E-01,4.301614E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +859719,fr,2,3.850000E+00,-1.810800E-01,4.301614E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.799771E+01,0.000000E+00 +859725,fr,1,3.850000E+00,-1.810800E-01,4.301614E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999372E+01,0.000000E+00 +859726,fr,1,3.850000E+00,-1.810800E-01,4.301614E+01,1.500000E+01,Active Shallow Crust,1.288960E+02,8.999372E+01,0.000000E+00 +859728,fr,3,3.950000E+00,-1.810800E-01,4.301614E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +859729,fr,2,3.950000E+00,-1.810800E-01,4.301614E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +859740,fr,4,4.050000E+00,-1.810800E-01,4.301614E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +859741,fr,3,4.050000E+00,-1.810800E-01,4.301614E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +859743,fr,1,4.050000E+00,-1.810800E-01,4.301614E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.800572E+01,0.000000E+00 +859744,fr,2,4.050000E+00,-1.810800E-01,4.301614E+01,1.500000E+01,Active Shallow Crust,2.400054E+02,5.800570E+01,0.000000E+00 +859749,fr,1,4.050000E+00,-1.810800E-01,4.301614E+01,5.000000E+00,Active Shallow Crust,1.288909E+02,8.999371E+01,0.000000E+00 +859750,fr,1,4.050000E+00,-1.810800E-01,4.301614E+01,1.500000E+01,Active Shallow Crust,1.288909E+02,8.999371E+01,0.000000E+00 +859752,fr,5,4.150000E+00,-1.810800E-01,4.301614E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +859753,fr,2,4.150000E+00,-1.810800E-01,4.301614E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +859754,fr,1,4.150000E+00,-1.810800E-01,4.301614E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +859758,fr,1,4.150000E+00,-1.810800E-01,4.301614E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,-9.000000E+01 +859762,fr,1,4.150000E+00,-1.810800E-01,4.301614E+01,1.500000E+01,Active Shallow Crust,1.288980E+02,8.999377E+01,0.000000E+00 +859764,fr,1,4.250000E+00,-1.810800E-01,4.301614E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +859765,fr,2,4.250000E+00,-1.810800E-01,4.301614E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +859766,fr,1,4.250000E+00,-1.810800E-01,4.301614E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +859767,fr,3,4.250000E+00,-1.810800E-01,4.301614E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.799394E+01,0.000000E+00 +859776,fr,3,4.350000E+00,-1.810800E-01,4.301614E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +859780,fr,1,4.350000E+00,-1.810800E-01,4.301614E+01,1.500000E+01,Active Shallow Crust,2.400076E+02,5.799580E+01,0.000000E+00 +859781,fr,1,4.350000E+00,-1.810800E-01,4.301614E+01,2.750000E+01,Active Shallow Crust,2.400076E+02,5.799580E+01,0.000000E+00 +859788,fr,2,4.450000E+00,-1.810800E-01,4.301614E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +859789,fr,2,4.450000E+00,-1.810800E-01,4.301614E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +859791,fr,1,4.450000E+00,-1.810800E-01,4.301614E+01,5.000000E+00,Active Shallow Crust,2.400044E+02,5.799453E+01,0.000000E+00 +859799,fr,1,4.450000E+00,-1.810800E-01,4.301614E+01,2.750000E+01,Active Shallow Crust,1.288929E+02,8.999374E+01,0.000000E+00 +859800,fr,3,4.550000E+00,-1.810800E-01,4.301614E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +859801,fr,1,4.550000E+00,-1.810800E-01,4.301614E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +859803,fr,1,4.550000E+00,-1.810800E-01,4.301614E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799719E+01,0.000000E+00 +859812,fr,2,4.650000E+00,-1.810800E-01,4.301614E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +859813,fr,1,4.650000E+00,-1.810800E-01,4.301614E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +859818,fr,1,4.650000E+00,-1.810800E-01,4.301614E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +859820,fr,1,4.650000E+00,-1.810800E-01,4.301614E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +859824,fr,1,4.750000E+00,-1.810800E-01,4.301614E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +859830,fr,1,4.750000E+00,-1.810800E-01,4.301614E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +859836,fr,2,4.850000E+00,-1.810800E-01,4.301614E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +859840,fr,1,4.850000E+00,-1.810800E-01,4.301614E+01,1.500000E+01,Active Shallow Crust,2.400158E+02,5.800207E+01,0.000000E+00 +859849,fr,1,4.950000E+00,-1.810800E-01,4.301614E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999002E+01,0.000000E+00 +859854,fr,1,4.950000E+00,-1.810800E-01,4.301614E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +859862,fr,1,5.050000E+00,-1.810800E-01,4.301614E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +859908,fr,1,5.450000E+00,-1.810800E-01,4.301614E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +859910,fr,1,5.450000E+00,-1.810800E-01,4.301614E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +859932,fr,1,5.650000E+00,-1.810800E-01,4.301614E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +859959,fr,1,5.850000E+00,-1.810800E-01,4.301614E+01,5.000000E+00,Active Shallow Crust,2.400404E+02,5.799896E+01,0.000000E+00 +860041,fr,1,6.550000E+00,-1.810800E-01,4.301614E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +860160,fr,1,3.550000E+00,-1.601200E+00,4.520550E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +860184,fr,1,3.750000E+00,-1.601200E+00,4.520550E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +860640,fr,7,3.550000E+00,7.826090E+00,4.719106E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999315E+01,0.000000E+00 +860641,fr,2,3.550000E+00,7.826090E+00,4.719106E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999315E+01,0.000000E+00 +860642,fr,2,3.550000E+00,7.826090E+00,4.719106E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999315E+01,0.000000E+00 +860649,fr,1,3.550000E+00,7.826090E+00,4.719106E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999657E+01,0.000000E+00 +860652,fr,1,3.650000E+00,7.826090E+00,4.719106E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998779E+01,0.000000E+00 +860653,fr,2,3.650000E+00,7.826090E+00,4.719106E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998779E+01,0.000000E+00 +860654,fr,1,3.650000E+00,7.826090E+00,4.719106E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998779E+01,0.000000E+00 +860655,fr,1,3.650000E+00,7.826090E+00,4.719106E+01,5.000000E+00,Active Shallow Crust,2.400018E+02,5.801207E+01,0.000000E+00 +860664,fr,3,3.750000E+00,7.826090E+00,4.719106E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +860666,fr,2,3.750000E+00,7.826090E+00,4.719106E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +860676,fr,1,3.850000E+00,7.826090E+00,4.719106E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +860677,fr,1,3.850000E+00,7.826090E+00,4.719106E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +860688,fr,1,3.950000E+00,7.826090E+00,4.719106E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999136E+01,0.000000E+00 +860700,fr,1,4.050000E+00,7.826090E+00,4.719106E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998844E+01,0.000000E+00 +860703,fr,1,4.050000E+00,7.826090E+00,4.719106E+01,5.000000E+00,Active Shallow Crust,2.400064E+02,5.800569E+01,0.000000E+00 +860712,fr,2,4.150000E+00,7.826090E+00,4.719106E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +860713,fr,1,4.150000E+00,7.826090E+00,4.719106E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +860724,fr,2,4.250000E+00,7.826090E+00,4.719106E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +860727,fr,1,4.250000E+00,7.826090E+00,4.719106E+01,5.000000E+00,Active Shallow Crust,2.400072E+02,5.799448E+01,0.000000E+00 +860736,fr,2,4.350000E+00,7.826090E+00,4.719106E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +860737,fr,1,4.350000E+00,7.826090E+00,4.719106E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +860747,fr,1,4.350000E+00,7.826090E+00,4.719106E+01,2.750000E+01,Active Shallow Crust,1.288973E+02,8.998304E+01,0.000000E+00 +860748,fr,1,4.450000E+00,7.826090E+00,4.719106E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +860750,fr,1,4.450000E+00,7.826090E+00,4.719106E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +860784,fr,1,4.750000E+00,7.826090E+00,4.719106E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +860793,fr,1,4.750000E+00,7.826090E+00,4.719106E+01,5.000000E+00,Active Shallow Crust,1.288882E+02,8.998821E+01,0.000000E+00 +860803,fr,1,4.850000E+00,7.826090E+00,4.719106E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999068E+01,-9.000000E+01 +861120,fr,1,3.550000E+00,3.567600E-01,4.183745E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +861144,fr,1,3.750000E+00,3.567600E-01,4.183745E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +861195,fr,1,4.150000E+00,3.567600E-01,4.183745E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.799719E+01,0.000000E+00 +861204,fr,1,4.250000E+00,3.567600E-01,4.183745E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +861600,fr,1,3.550000E+00,2.915420E+00,5.065864E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +861601,fr,1,3.550000E+00,2.915420E+00,5.065864E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +861673,fr,1,4.150000E+00,2.915420E+00,5.065864E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +861775,fr,1,4.950000E+00,2.915420E+00,5.065864E+01,1.500000E+01,Active Shallow Crust,3.599997E+02,8.999032E+01,-9.000000E+01 +862080,fr,2,3.550000E+00,3.780800E-01,4.672524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +862083,fr,1,3.550000E+00,3.780800E-01,4.672524E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799822E+01,0.000000E+00 +862093,fr,4,3.650000E+00,3.780800E-01,4.672524E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +862094,fr,1,3.650000E+00,3.780800E-01,4.672524E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +862101,fr,1,3.650000E+00,3.780800E-01,4.672524E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.996349E+01,0.000000E+00 +862104,fr,1,3.750000E+00,3.780800E-01,4.672524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +862116,fr,2,3.850000E+00,3.780800E-01,4.672524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +862117,fr,1,3.850000E+00,3.780800E-01,4.672524E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +862125,fr,1,3.850000E+00,3.780800E-01,4.672524E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999358E+01,0.000000E+00 +862131,fr,1,3.950000E+00,3.780800E-01,4.672524E+01,5.000000E+00,Active Shallow Crust,2.400198E+02,5.800499E+01,0.000000E+00 +862132,fr,1,3.950000E+00,3.780800E-01,4.672524E+01,1.500000E+01,Active Shallow Crust,2.400198E+02,5.800499E+01,0.000000E+00 +862141,fr,1,4.050000E+00,3.780800E-01,4.672524E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +862152,fr,2,4.150000E+00,3.780800E-01,4.672524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +862162,fr,1,4.150000E+00,3.780800E-01,4.672524E+01,1.500000E+01,Active Shallow Crust,1.288975E+02,8.999372E+01,0.000000E+00 +862176,fr,1,4.350000E+00,3.780800E-01,4.672524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +862177,fr,2,4.350000E+00,3.780800E-01,4.672524E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +862211,fr,1,4.550000E+00,3.780800E-01,4.672524E+01,2.750000E+01,Active Shallow Crust,1.288938E+02,8.998578E+01,0.000000E+00 +862223,fr,1,4.650000E+00,3.780800E-01,4.672524E+01,2.750000E+01,Active Shallow Crust,1.288911E+02,8.998701E+01,0.000000E+00 +862250,fr,1,4.950000E+00,3.780800E-01,4.672524E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +862320,fr,1,5.550000E+00,3.780800E-01,4.672524E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +862581,fr,1,3.650000E+00,-3.834820E+00,4.593641E+01,5.000000E+00,Active Shallow Crust,1.289012E+02,8.996352E+01,0.000000E+00 +863040,fr,3,3.550000E+00,7.365500E+00,4.803701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999326E+01,0.000000E+00 +863041,fr,2,3.550000E+00,7.365500E+00,4.803701E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999326E+01,0.000000E+00 +863045,fr,1,3.550000E+00,7.365500E+00,4.803701E+01,2.750000E+01,Active Shallow Crust,2.400128E+02,5.799810E+01,0.000000E+00 +863050,fr,1,3.550000E+00,7.365500E+00,4.803701E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.999326E+01,0.000000E+00 +863052,fr,2,3.650000E+00,7.365500E+00,4.803701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998798E+01,0.000000E+00 +863055,fr,1,3.650000E+00,7.365500E+00,4.803701E+01,5.000000E+00,Active Shallow Crust,2.400018E+02,5.801219E+01,0.000000E+00 +863056,fr,1,3.650000E+00,7.365500E+00,4.803701E+01,1.500000E+01,Active Shallow Crust,2.400018E+02,5.801219E+01,0.000000E+00 +863058,fr,1,3.650000E+00,7.365500E+00,4.803701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998784E+01,-9.000000E+01 +863061,fr,1,3.650000E+00,7.365500E+00,4.803701E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.996355E+01,0.000000E+00 +863064,fr,1,3.750000E+00,7.365500E+00,4.803701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +863065,fr,1,3.750000E+00,7.365500E+00,4.803701E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +863076,fr,1,3.850000E+00,7.365500E+00,4.803701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +863079,fr,1,3.850000E+00,7.365500E+00,4.803701E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799837E+01,0.000000E+00 +863101,fr,2,4.050000E+00,7.365500E+00,4.803701E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +863112,fr,2,4.150000E+00,7.365500E+00,4.803701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +863130,fr,1,4.250000E+00,7.365500E+00,4.803701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999086E+01,-9.000000E+01 +863136,fr,1,4.350000E+00,7.365500E+00,4.803701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +863137,fr,1,4.350000E+00,7.365500E+00,4.803701E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +863151,fr,1,4.450000E+00,7.365500E+00,4.803701E+01,5.000000E+00,Active Shallow Crust,2.400058E+02,5.799474E+01,0.000000E+00 +863157,fr,1,4.450000E+00,7.365500E+00,4.803701E+01,5.000000E+00,Active Shallow Crust,1.288924E+02,8.999282E+01,0.000000E+00 +863160,fr,1,4.550000E+00,7.365500E+00,4.803701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +863184,fr,1,4.750000E+00,7.365500E+00,4.803701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +863198,fr,1,4.850000E+00,7.365500E+00,4.803701E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +863305,fr,1,5.750000E+00,7.365500E+00,4.803701E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +863539,fr,1,3.650000E+00,2.094310E+00,4.484729E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,-9.000000E+01 +863574,fr,1,3.950000E+00,2.094310E+00,4.484729E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,-9.000000E+01 +863745,fr,1,5.350000E+00,2.094310E+00,4.484729E+01,5.000000E+00,Active Shallow Crust,1.288841E+02,8.998805E+01,0.000000E+00 +864012,fr,1,3.650000E+00,3.586900E+00,4.942839E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +864074,fr,1,4.150000E+00,3.586900E+00,4.942839E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +864481,fr,1,3.550000E+00,6.972630E+00,4.837302E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999330E+01,0.000000E+00 +864492,fr,2,3.650000E+00,6.972630E+00,4.837302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998806E+01,0.000000E+00 +864505,fr,1,3.750000E+00,6.972630E+00,4.837302E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +864511,fr,1,3.750000E+00,6.972630E+00,4.837302E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998923E+01,-9.000000E+01 +864517,fr,1,3.850000E+00,6.972630E+00,4.837302E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +864531,fr,1,3.950000E+00,6.972630E+00,4.837302E+01,5.000000E+00,Active Shallow Crust,2.400202E+02,5.800460E+01,0.000000E+00 +864542,fr,1,4.050000E+00,6.972630E+00,4.837302E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998870E+01,0.000000E+00 +864543,fr,1,4.050000E+00,6.972630E+00,4.837302E+01,5.000000E+00,Active Shallow Crust,2.400064E+02,5.800587E+01,0.000000E+00 +864546,fr,1,4.050000E+00,6.972630E+00,4.837302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998857E+01,-9.000000E+01 +864612,fr,1,4.650000E+00,6.972630E+00,4.837302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +864960,fr,2,3.550000E+00,3.896690E+00,4.668524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +864961,fr,1,3.550000E+00,3.896690E+00,4.668524E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +864984,fr,1,3.750000E+00,3.896690E+00,4.668524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +865008,fr,1,3.950000E+00,3.896690E+00,4.668524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +865009,fr,1,3.950000E+00,3.896690E+00,4.668524E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +865020,fr,1,4.050000E+00,3.896690E+00,4.668524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +865029,fr,1,4.050000E+00,3.896690E+00,4.668524E+01,5.000000E+00,Active Shallow Crust,1.288908E+02,8.999319E+01,0.000000E+00 +865045,fr,1,4.250000E+00,3.896690E+00,4.668524E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999073E+01,0.000000E+00 +865176,fr,1,5.350000E+00,3.896690E+00,4.668524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +865188,fr,1,5.450000E+00,3.896690E+00,4.668524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +865440,fr,1,3.550000E+00,3.589400E-01,4.632095E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +865441,fr,1,3.550000E+00,3.589400E-01,4.632095E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +865446,fr,1,3.550000E+00,3.589400E-01,4.632095E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +865452,fr,3,3.650000E+00,3.589400E-01,4.632095E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +865455,fr,1,3.650000E+00,3.589400E-01,4.632095E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801295E+01,0.000000E+00 +865473,fr,1,3.750000E+00,3.589400E-01,4.632095E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.996736E+01,0.000000E+00 +865474,fr,1,3.750000E+00,3.589400E-01,4.632095E+01,1.500000E+01,Active Shallow Crust,1.288966E+02,8.996736E+01,0.000000E+00 +865500,fr,1,4.050000E+00,3.589400E-01,4.632095E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +865540,fr,1,4.350000E+00,3.589400E-01,4.632095E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.799591E+01,0.000000E+00 +865608,fr,1,4.950000E+00,3.589400E-01,4.632095E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +865644,fr,1,5.250000E+00,3.589400E-01,4.632095E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +865658,fr,1,5.350000E+00,3.589400E-01,4.632095E+01,2.750000E+01,Active Shallow Crust,3.600000E+02,8.999002E+01,0.000000E+00 +865935,fr,1,3.650000E+00,2.782580E+00,5.078397E+01,5.000000E+00,Active Shallow Crust,2.400016E+02,5.801275E+01,0.000000E+00 +865980,fr,1,4.050000E+00,2.782580E+00,5.078397E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +866001,fr,1,4.150000E+00,2.782580E+00,5.078397E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.999361E+01,0.000000E+00 +866028,fr,1,4.450000E+00,2.782580E+00,5.078397E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +866403,fr,2,3.550000E+00,7.275260E+00,5.090793E+01,5.000000E+00,Active Shallow Crust,2.400133E+02,5.799815E+01,0.000000E+00 +866412,fr,1,3.650000E+00,7.275260E+00,5.090793E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +866413,fr,1,3.650000E+00,7.275260E+00,5.090793E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +866436,fr,1,3.850000E+00,7.275260E+00,5.090793E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +866448,fr,2,3.950000E+00,7.275260E+00,5.090793E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999197E+01,0.000000E+00 +866454,fr,1,3.950000E+00,7.275260E+00,5.090793E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999188E+01,-9.000000E+01 +866510,fr,1,4.450000E+00,7.275260E+00,5.090793E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +867366,fr,2,3.550000E+00,8.379700E-01,4.755724E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,-9.000000E+01 +867373,fr,1,3.650000E+00,8.379700E-01,4.755724E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +867375,fr,1,3.650000E+00,8.379700E-01,4.755724E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801291E+01,0.000000E+00 +867410,fr,1,3.950000E+00,8.379700E-01,4.755724E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +867468,fr,1,4.450000E+00,8.379700E-01,4.755724E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +867480,fr,1,4.550000E+00,8.379700E-01,4.755724E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +867481,fr,1,4.550000E+00,8.379700E-01,4.755724E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +867840,fr,1,3.550000E+00,4.971750E+00,4.747995E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999319E+01,0.000000E+00 +867841,fr,2,3.550000E+00,4.971750E+00,4.747995E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999319E+01,0.000000E+00 +867843,fr,1,3.550000E+00,4.971750E+00,4.747995E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799826E+01,0.000000E+00 +867854,fr,1,3.650000E+00,4.971750E+00,4.747995E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998785E+01,0.000000E+00 +867945,fr,1,4.350000E+00,4.971750E+00,4.747995E+01,5.000000E+00,Active Shallow Crust,1.288984E+02,8.998257E+01,0.000000E+00 +867948,fr,1,4.450000E+00,4.971750E+00,4.747995E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +867974,fr,1,4.650000E+00,4.971750E+00,4.747995E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +867987,fr,1,4.750000E+00,4.971750E+00,4.747995E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.800462E+01,0.000000E+00 +868320,fr,2,3.550000E+00,6.018760E+00,4.369873E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999271E+01,0.000000E+00 +868326,fr,1,3.550000E+00,6.018760E+00,4.369873E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999262E+01,-9.000000E+01 +868327,fr,1,3.550000E+00,6.018760E+00,4.369873E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999262E+01,-9.000000E+01 +868335,fr,1,3.650000E+00,6.018760E+00,4.369873E+01,5.000000E+00,Active Shallow Crust,2.399998E+02,5.801391E+01,0.000000E+00 +868344,fr,2,3.750000E+00,6.018760E+00,4.369873E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998842E+01,0.000000E+00 +868353,fr,1,3.750000E+00,6.018760E+00,4.369873E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.996680E+01,0.000000E+00 +868356,fr,2,3.850000E+00,6.018760E+00,4.369873E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +868369,fr,1,3.950000E+00,6.018760E+00,4.369873E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999080E+01,0.000000E+00 +868370,fr,1,3.950000E+00,6.018760E+00,4.369873E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999080E+01,0.000000E+00 +868389,fr,1,4.050000E+00,6.018760E+00,4.369873E+01,5.000000E+00,Active Shallow Crust,1.288905E+02,8.999385E+01,0.000000E+00 +868418,fr,1,4.350000E+00,6.018760E+00,4.369873E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +868452,fr,1,4.650000E+00,6.018760E+00,4.369873E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +868462,fr,1,4.650000E+00,6.018760E+00,4.369873E+01,1.500000E+01,Active Shallow Crust,1.288920E+02,8.998707E+01,0.000000E+00 +868512,fr,1,5.150000E+00,6.018760E+00,4.369873E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +868525,fr,1,5.250000E+00,6.018760E+00,4.369873E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +868800,fr,6,3.550000E+00,7.105720E+00,4.672146E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999309E+01,0.000000E+00 +868802,fr,1,3.550000E+00,7.105720E+00,4.672146E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999309E+01,0.000000E+00 +868803,fr,1,3.550000E+00,7.105720E+00,4.672146E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799823E+01,0.000000E+00 +868806,fr,2,3.550000E+00,7.105720E+00,4.672146E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999300E+01,-9.000000E+01 +868812,fr,9,3.650000E+00,7.105720E+00,4.672146E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998768E+01,0.000000E+00 +868813,fr,2,3.650000E+00,7.105720E+00,4.672146E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998768E+01,0.000000E+00 +868816,fr,3,3.650000E+00,7.105720E+00,4.672146E+01,1.500000E+01,Active Shallow Crust,2.400017E+02,5.801280E+01,0.000000E+00 +868824,fr,4,3.750000E+00,7.105720E+00,4.672146E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998902E+01,0.000000E+00 +868827,fr,1,3.750000E+00,7.105720E+00,4.672146E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801779E+01,0.000000E+00 +868832,fr,1,3.750000E+00,7.105720E+00,4.672146E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998889E+01,-9.000000E+01 +868833,fr,1,3.750000E+00,7.105720E+00,4.672146E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.996749E+01,0.000000E+00 +868836,fr,3,3.850000E+00,7.105720E+00,4.672146E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +868837,fr,2,3.850000E+00,7.105720E+00,4.672146E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +868839,fr,4,3.850000E+00,7.105720E+00,4.672146E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.799863E+01,0.000000E+00 +868840,fr,1,3.850000E+00,7.105720E+00,4.672146E+01,1.500000E+01,Active Shallow Crust,2.400106E+02,5.799863E+01,0.000000E+00 +868845,fr,3,3.850000E+00,7.105720E+00,4.672146E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999511E+01,0.000000E+00 +868848,fr,2,3.950000E+00,7.105720E+00,4.672146E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999128E+01,0.000000E+00 +868849,fr,3,3.950000E+00,7.105720E+00,4.672146E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999128E+01,0.000000E+00 +868860,fr,5,4.050000E+00,7.105720E+00,4.672146E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998833E+01,0.000000E+00 +868864,fr,2,4.050000E+00,7.105720E+00,4.672146E+01,1.500000E+01,Active Shallow Crust,2.400064E+02,5.800579E+01,0.000000E+00 +868869,fr,1,4.050000E+00,7.105720E+00,4.672146E+01,5.000000E+00,Active Shallow Crust,1.288900E+02,8.999417E+01,0.000000E+00 +868872,fr,2,4.150000E+00,7.105720E+00,4.672146E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +868885,fr,1,4.250000E+00,7.105720E+00,4.672146E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +868890,fr,1,4.250000E+00,7.105720E+00,4.672146E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,-9.000000E+01 +868909,fr,1,4.450000E+00,7.105720E+00,4.672146E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +868917,fr,1,4.450000E+00,7.105720E+00,4.672146E+01,5.000000E+00,Active Shallow Crust,1.288922E+02,8.999387E+01,0.000000E+00 +868921,fr,4,4.550000E+00,7.105720E+00,4.672146E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +868932,fr,1,4.650000E+00,7.105720E+00,4.672146E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +868945,fr,1,4.750000E+00,7.105720E+00,4.672146E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +868956,fr,1,4.850000E+00,7.105720E+00,4.672146E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +869040,fr,1,5.550000E+00,7.105720E+00,4.672146E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +869281,fr,1,3.550000E+00,2.549470E+00,5.142045E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +869297,fr,1,3.650000E+00,2.549470E+00,5.142045E+01,2.750000E+01,Active Shallow Crust,2.400015E+02,5.801277E+01,0.000000E+00 +869304,fr,1,3.750000E+00,2.549470E+00,5.142045E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +869305,fr,1,3.750000E+00,2.549470E+00,5.142045E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +869316,fr,1,3.850000E+00,2.549470E+00,5.142045E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +869328,fr,1,3.950000E+00,2.549470E+00,5.142045E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +869412,fr,1,4.650000E+00,2.549470E+00,5.142045E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +869760,fr,2,3.550000E+00,2.604880E+00,4.161222E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +869761,fr,1,3.550000E+00,2.604880E+00,4.161222E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +869762,fr,1,3.550000E+00,2.604880E+00,4.161222E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +869766,fr,1,3.550000E+00,2.604880E+00,4.161222E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998856E+01,-9.000000E+01 +869772,fr,4,3.650000E+00,2.604880E+00,4.161222E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +869775,fr,1,3.650000E+00,2.604880E+00,4.161222E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801221E+01,0.000000E+00 +869781,fr,2,3.650000E+00,2.604880E+00,4.161222E+01,5.000000E+00,Active Shallow Crust,1.289012E+02,8.996343E+01,0.000000E+00 +869784,fr,3,3.750000E+00,2.604880E+00,4.161222E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999102E+01,0.000000E+00 +869785,fr,3,3.750000E+00,2.604880E+00,4.161222E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999102E+01,0.000000E+00 +869786,fr,1,3.750000E+00,2.604880E+00,4.161222E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999102E+01,0.000000E+00 +869795,fr,1,3.750000E+00,2.604880E+00,4.161222E+01,2.750000E+01,Active Shallow Crust,1.288964E+02,8.996741E+01,0.000000E+00 +869796,fr,1,3.850000E+00,2.604880E+00,4.161222E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +869797,fr,1,3.850000E+00,2.604880E+00,4.161222E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +869808,fr,4,3.950000E+00,2.604880E+00,4.161222E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +869809,fr,1,3.950000E+00,2.604880E+00,4.161222E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +869818,fr,1,3.950000E+00,2.604880E+00,4.161222E+01,1.500000E+01,Active Shallow Crust,1.289011E+02,8.999287E+01,0.000000E+00 +869820,fr,2,4.050000E+00,2.604880E+00,4.161222E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +869822,fr,1,4.050000E+00,2.604880E+00,4.161222E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +869832,fr,2,4.150000E+00,2.604880E+00,4.161222E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +869833,fr,1,4.150000E+00,2.604880E+00,4.161222E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +869834,fr,1,4.150000E+00,2.604880E+00,4.161222E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +869835,fr,1,4.150000E+00,2.604880E+00,4.161222E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799717E+01,0.000000E+00 +869838,fr,1,4.150000E+00,2.604880E+00,4.161222E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,-9.000000E+01 +869844,fr,1,4.250000E+00,2.604880E+00,4.161222E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +869847,fr,1,4.250000E+00,2.604880E+00,4.161222E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.799379E+01,0.000000E+00 +869856,fr,1,4.350000E+00,2.604880E+00,4.161222E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +869857,fr,2,4.350000E+00,2.604880E+00,4.161222E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +869858,fr,1,4.350000E+00,2.604880E+00,4.161222E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +869871,fr,1,4.450000E+00,2.604880E+00,4.161222E+01,5.000000E+00,Active Shallow Crust,2.400040E+02,5.799438E+01,0.000000E+00 +869884,fr,1,4.550000E+00,2.604880E+00,4.161222E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.799714E+01,0.000000E+00 +869886,fr,1,4.550000E+00,2.604880E+00,4.161222E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,-9.000000E+01 +869901,fr,1,4.650000E+00,2.604880E+00,4.161222E+01,5.000000E+00,Active Shallow Crust,1.288923E+02,8.998697E+01,0.000000E+00 +869916,fr,1,4.850000E+00,2.604880E+00,4.161222E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +869917,fr,1,4.850000E+00,2.604880E+00,4.161222E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +869928,fr,1,4.950000E+00,2.604880E+00,4.161222E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +869985,fr,1,5.350000E+00,2.604880E+00,4.161222E+01,5.000000E+00,Active Shallow Crust,1.288858E+02,8.999201E+01,0.000000E+00 +870013,fr,1,5.650000E+00,2.604880E+00,4.161222E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +870024,fr,1,5.750000E+00,2.604880E+00,4.161222E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +870084,fr,1,6.250000E+00,2.604884E+00,4.161222E+01,6.744814E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +870240,fr,2,3.550000E+00,-7.185000E-02,4.588380E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +870242,fr,1,3.550000E+00,-7.185000E-02,4.588380E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +870243,fr,1,3.550000E+00,-7.185000E-02,4.588380E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799815E+01,0.000000E+00 +870249,fr,1,3.550000E+00,-7.185000E-02,4.588380E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999369E+01,0.000000E+00 +870252,fr,1,3.650000E+00,-7.185000E-02,4.588380E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +870255,fr,1,3.650000E+00,-7.185000E-02,4.588380E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801289E+01,0.000000E+00 +870256,fr,2,3.650000E+00,-7.185000E-02,4.588380E+01,1.500000E+01,Active Shallow Crust,2.400010E+02,5.801289E+01,0.000000E+00 +870264,fr,1,3.750000E+00,-7.185000E-02,4.588380E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +870274,fr,2,3.750000E+00,-7.185000E-02,4.588380E+01,1.500000E+01,Active Shallow Crust,1.288967E+02,8.996735E+01,0.000000E+00 +870276,fr,1,3.850000E+00,-7.185000E-02,4.588380E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +870312,fr,1,4.150000E+00,-7.185000E-02,4.588380E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +870317,fr,1,4.150000E+00,-7.185000E-02,4.588380E+01,2.750000E+01,Active Shallow Crust,2.400083E+02,5.799726E+01,0.000000E+00 +870324,fr,1,4.250000E+00,-7.185000E-02,4.588380E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +870345,fr,1,4.350000E+00,-7.185000E-02,4.588380E+01,5.000000E+00,Active Shallow Crust,1.288979E+02,8.998276E+01,0.000000E+00 +870348,fr,2,4.450000E+00,-7.185000E-02,4.588380E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +870350,fr,1,4.450000E+00,-7.185000E-02,4.588380E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +870360,fr,1,4.550000E+00,-7.185000E-02,4.588380E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +870375,fr,1,4.650000E+00,-7.185000E-02,4.588380E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.799421E+01,0.000000E+00 +870384,fr,1,4.750000E+00,-7.185000E-02,4.588380E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +870783,fr,2,4.050000E+00,5.784980E+00,4.998426E+01,5.000000E+00,Active Shallow Crust,2.400068E+02,5.800569E+01,0.000000E+00 +871215,fr,1,3.650000E+00,-4.693000E-02,4.480192E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801287E+01,0.000000E+00 +871224,fr,1,3.750000E+00,-4.693000E-02,4.480192E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +871455,fr,1,5.650000E+00,-4.693000E-02,4.480192E+01,5.000000E+00,Active Shallow Crust,2.400325E+02,5.800160E+01,0.000000E+00 +871680,fr,2,3.550000E+00,5.963510E+00,4.619263E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999302E+01,0.000000E+00 +871681,fr,2,3.550000E+00,5.963510E+00,4.619263E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999302E+01,0.000000E+00 +871692,fr,1,3.650000E+00,5.963510E+00,4.619263E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998756E+01,0.000000E+00 +871693,fr,1,3.650000E+00,5.963510E+00,4.619263E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998756E+01,0.000000E+00 +871694,fr,1,3.650000E+00,5.963510E+00,4.619263E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998756E+01,0.000000E+00 +871704,fr,2,3.750000E+00,5.963510E+00,4.619263E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +871710,fr,1,3.750000E+00,5.963510E+00,4.619263E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998878E+01,-9.000000E+01 +871716,fr,3,3.850000E+00,5.963510E+00,4.619263E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +871728,fr,2,3.950000E+00,5.963510E+00,4.619263E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999119E+01,0.000000E+00 +871738,fr,1,3.950000E+00,5.963510E+00,4.619263E+01,1.500000E+01,Active Shallow Crust,1.289006E+02,8.999560E+01,0.000000E+00 +871740,fr,1,4.050000E+00,5.963510E+00,4.619263E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998822E+01,0.000000E+00 +871742,fr,1,4.050000E+00,5.963510E+00,4.619263E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998822E+01,0.000000E+00 +871752,fr,1,4.150000E+00,5.963510E+00,4.619263E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +871788,fr,1,4.450000E+00,5.963510E+00,4.619263E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +871791,fr,1,4.450000E+00,5.963510E+00,4.619263E+01,5.000000E+00,Active Shallow Crust,2.400055E+02,5.799452E+01,0.000000E+00 +871824,fr,1,4.750000E+00,5.963510E+00,4.619263E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +871860,fr,1,5.050000E+00,5.963510E+00,4.619263E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +872748,fr,1,4.450000E+00,-4.516590E+00,4.488543E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +873123,fr,1,3.550000E+00,-4.505990E+00,4.710321E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799881E+01,0.000000E+00 +873243,fr,1,4.550000E+00,-4.505990E+00,4.710321E+01,5.000000E+00,Active Shallow Crust,2.400097E+02,5.799721E+01,0.000000E+00 +873600,fr,1,3.550000E+00,-1.818290E+00,4.951249E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +873612,fr,1,3.650000E+00,-1.818290E+00,4.951249E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +873673,fr,1,4.150000E+00,-1.818290E+00,4.951249E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +873690,fr,1,4.250000E+00,-1.818290E+00,4.951249E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +873697,fr,1,4.350000E+00,-1.818290E+00,4.951249E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +874080,fr,4,3.550000E+00,6.447940E+00,4.664248E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999308E+01,0.000000E+00 +874081,fr,1,3.550000E+00,6.447940E+00,4.664248E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999308E+01,0.000000E+00 +874082,fr,1,3.550000E+00,6.447940E+00,4.664248E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999308E+01,0.000000E+00 +874083,fr,1,3.550000E+00,6.447940E+00,4.664248E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799762E+01,0.000000E+00 +874086,fr,1,3.550000E+00,6.447940E+00,4.664248E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999300E+01,-9.000000E+01 +874089,fr,3,3.550000E+00,6.447940E+00,4.664248E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.999308E+01,0.000000E+00 +874092,fr,5,3.650000E+00,6.447940E+00,4.664248E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998766E+01,0.000000E+00 +874093,fr,1,3.650000E+00,6.447940E+00,4.664248E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998766E+01,0.000000E+00 +874095,fr,1,3.650000E+00,6.447940E+00,4.664248E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801254E+01,0.000000E+00 +874097,fr,1,3.650000E+00,6.447940E+00,4.664248E+01,2.750000E+01,Active Shallow Crust,2.400009E+02,5.801245E+01,0.000000E+00 +874101,fr,1,3.650000E+00,6.447940E+00,4.664248E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.996352E+01,0.000000E+00 +874104,fr,4,3.750000E+00,6.447940E+00,4.664248E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998900E+01,0.000000E+00 +874106,fr,1,3.750000E+00,6.447940E+00,4.664248E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998900E+01,0.000000E+00 +874110,fr,1,3.750000E+00,6.447940E+00,4.664248E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998888E+01,-9.000000E+01 +874116,fr,2,3.850000E+00,6.447940E+00,4.664248E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +874118,fr,1,3.850000E+00,6.447940E+00,4.664248E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +874122,fr,1,3.850000E+00,6.447940E+00,4.664248E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,-9.000000E+01 +874125,fr,2,3.850000E+00,6.447940E+00,4.664248E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999265E+01,0.000000E+00 +874128,fr,3,3.950000E+00,6.447940E+00,4.664248E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +874129,fr,1,3.950000E+00,6.447940E+00,4.664248E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +874131,fr,1,3.950000E+00,6.447940E+00,4.664248E+01,5.000000E+00,Active Shallow Crust,2.400195E+02,5.800548E+01,0.000000E+00 +874137,fr,1,3.950000E+00,6.447940E+00,4.664248E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.999564E+01,0.000000E+00 +874152,fr,1,4.150000E+00,6.447940E+00,4.664248E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +874153,fr,1,4.150000E+00,6.447940E+00,4.664248E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +874164,fr,2,4.250000E+00,6.447940E+00,4.664248E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +874167,fr,1,4.250000E+00,6.447940E+00,4.664248E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799381E+01,0.000000E+00 +874177,fr,2,4.350000E+00,6.447940E+00,4.664248E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +874178,fr,1,4.350000E+00,6.447940E+00,4.664248E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +874189,fr,1,4.450000E+00,6.447940E+00,4.664248E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +874200,fr,1,4.550000E+00,6.447940E+00,4.664248E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998905E+01,0.000000E+00 +874201,fr,1,4.550000E+00,6.447940E+00,4.664248E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998905E+01,0.000000E+00 +874212,fr,2,4.650000E+00,6.447940E+00,4.664248E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +874213,fr,1,4.650000E+00,6.447940E+00,4.664248E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +874236,fr,1,4.850000E+00,6.447940E+00,4.664248E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +874251,fr,1,4.950000E+00,6.447940E+00,4.664248E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.800441E+01,0.000000E+00 +874260,fr,1,5.050000E+00,6.447940E+00,4.664248E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +874308,fr,1,5.450000E+00,6.447940E+00,4.664248E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +874560,fr,2,3.550000E+00,2.380080E+00,4.777282E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +874585,fr,1,3.750000E+00,2.380080E+00,4.777282E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +874601,fr,1,3.850000E+00,2.380080E+00,4.777282E+01,2.750000E+01,Active Shallow Crust,2.400113E+02,5.799799E+01,0.000000E+00 +874681,fr,1,4.550000E+00,2.380080E+00,4.777282E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +874718,fr,1,4.850000E+00,2.380080E+00,4.777282E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +875089,fr,1,3.950000E+00,1.465840E+00,4.438309E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +875102,fr,1,4.050000E+00,1.465840E+00,4.438309E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +875125,fr,1,4.250000E+00,1.465840E+00,4.438309E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +875127,fr,1,4.250000E+00,1.465840E+00,4.438309E+01,5.000000E+00,Active Shallow Crust,2.400070E+02,5.799416E+01,0.000000E+00 +875145,fr,1,4.350000E+00,1.465840E+00,4.438309E+01,5.000000E+00,Active Shallow Crust,1.288981E+02,8.998283E+01,0.000000E+00 +875172,fr,1,4.650000E+00,1.465840E+00,4.438309E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +875544,fr,1,3.750000E+00,6.644560E+00,4.971853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +875664,fr,1,4.750000E+00,6.644560E+00,4.971853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +875688,fr,1,4.950000E+00,6.644560E+00,4.971853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +875724,fr,1,5.250000E+00,6.644560E+00,4.971853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +876003,fr,1,3.550000E+00,7.644380E+00,5.082689E+01,5.000000E+00,Active Shallow Crust,2.400135E+02,5.799776E+01,0.000000E+00 +876055,fr,1,3.950000E+00,7.644380E+00,5.082689E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999187E+01,-9.000000E+01 +876072,fr,1,4.150000E+00,7.644380E+00,5.082689E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +876156,fr,1,4.850000E+00,7.644380E+00,5.082689E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +876493,fr,1,3.650000E+00,-1.214330E+00,4.714329E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +876498,fr,1,3.650000E+00,-1.214330E+00,4.714329E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,-9.000000E+01 +876505,fr,1,3.750000E+00,-1.214330E+00,4.714329E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +876511,fr,1,3.750000E+00,-1.214330E+00,4.714329E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,-9.000000E+01 +876525,fr,1,3.850000E+00,-1.214330E+00,4.714329E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999393E+01,0.000000E+00 +876528,fr,1,3.950000E+00,-1.214330E+00,4.714329E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +876549,fr,1,4.050000E+00,-1.214330E+00,4.714329E+01,5.000000E+00,Active Shallow Crust,1.288904E+02,8.999374E+01,0.000000E+00 +876553,fr,1,4.150000E+00,-1.214330E+00,4.714329E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +876564,fr,1,4.250000E+00,-1.214330E+00,4.714329E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +876696,fr,1,5.350000E+00,-1.214330E+00,4.714329E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +876984,fr,1,3.750000E+00,-6.682260E+00,4.919475E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +877452,fr,2,3.650000E+00,5.644300E+00,4.946750E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998832E+01,0.000000E+00 +877464,fr,1,3.750000E+00,5.644300E+00,4.946750E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +877560,fr,1,4.550000E+00,5.644300E+00,4.946750E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +877921,fr,1,3.550000E+00,3.624070E+00,4.041272E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998848E+01,0.000000E+00 +877922,fr,1,3.550000E+00,3.624070E+00,4.041272E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998848E+01,0.000000E+00 +877951,fr,1,3.750000E+00,3.624070E+00,4.041272E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,-9.000000E+01 +877959,fr,1,3.850000E+00,3.624070E+00,4.041272E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799752E+01,0.000000E+00 +877965,fr,1,3.850000E+00,3.624070E+00,4.041272E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999321E+01,0.000000E+00 +878400,fr,1,3.550000E+00,3.310680E+00,4.800323E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +878490,fr,1,4.250000E+00,3.310680E+00,4.800323E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,-9.000000E+01 +878882,fr,1,3.550000E+00,8.522650E+00,4.879934E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998672E+01,0.000000E+00 +878889,fr,1,3.550000E+00,8.522650E+00,4.879934E+01,5.000000E+00,Active Shallow Crust,1.288978E+02,8.999335E+01,0.000000E+00 +878892,fr,1,3.650000E+00,8.522650E+00,4.879934E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998816E+01,0.000000E+00 +878905,fr,1,3.750000E+00,8.522650E+00,4.879934E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +878907,fr,2,3.750000E+00,8.522650E+00,4.879934E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.801820E+01,0.000000E+00 +878914,fr,1,3.750000E+00,8.522650E+00,4.879934E+01,1.500000E+01,Active Shallow Crust,1.288987E+02,8.996627E+01,0.000000E+00 +878916,fr,3,3.850000E+00,8.522650E+00,4.879934E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +878928,fr,3,3.950000E+00,8.522650E+00,4.879934E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999162E+01,0.000000E+00 +878935,fr,1,3.950000E+00,8.522650E+00,4.879934E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999152E+01,-9.000000E+01 +878940,fr,1,4.050000E+00,8.522650E+00,4.879934E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999253E+01,0.000000E+00 +878968,fr,1,4.250000E+00,8.522650E+00,4.879934E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.799454E+01,0.000000E+00 +879360,fr,2,3.550000E+00,6.523470E+00,5.044886E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998716E+01,0.000000E+00 +879361,fr,1,3.550000E+00,6.523470E+00,5.044886E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998716E+01,0.000000E+00 +879370,fr,1,3.550000E+00,6.523470E+00,5.044886E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.999358E+01,0.000000E+00 +879374,fr,1,3.650000E+00,6.523470E+00,5.044886E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +879384,fr,2,3.750000E+00,6.523470E+00,5.044886E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +879387,fr,1,3.750000E+00,6.523470E+00,5.044886E+01,5.000000E+00,Active Shallow Crust,2.400096E+02,5.801732E+01,0.000000E+00 +879393,fr,1,3.750000E+00,6.523470E+00,5.044886E+01,5.000000E+00,Active Shallow Crust,1.288955E+02,8.996756E+01,0.000000E+00 +879399,fr,2,3.850000E+00,6.523470E+00,5.044886E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799787E+01,0.000000E+00 +879403,fr,1,3.850000E+00,6.523470E+00,5.044886E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999081E+01,-9.000000E+01 +879432,fr,1,4.150000E+00,6.523470E+00,5.044886E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +879444,fr,1,4.250000E+00,6.523470E+00,5.044886E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999139E+01,0.000000E+00 +879456,fr,1,4.350000E+00,6.523470E+00,5.044886E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +879459,fr,1,4.350000E+00,6.523470E+00,5.044886E+01,5.000000E+00,Active Shallow Crust,2.400095E+02,5.799630E+01,0.000000E+00 +879498,fr,1,4.650000E+00,6.523470E+00,5.044886E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,-9.000000E+01 +879513,fr,1,4.750000E+00,6.523470E+00,5.044886E+01,5.000000E+00,Active Shallow Crust,1.288875E+02,8.998799E+01,0.000000E+00 +879588,fr,1,5.450000E+00,6.523470E+00,5.044886E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +879840,fr,1,3.550000E+00,8.044000E-01,4.310922E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +879841,fr,1,3.550000E+00,8.044000E-01,4.310922E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +879849,fr,1,3.550000E+00,8.044000E-01,4.310922E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999402E+01,0.000000E+00 +879850,fr,1,3.550000E+00,8.044000E-01,4.310922E+01,1.500000E+01,Active Shallow Crust,1.288962E+02,8.999402E+01,0.000000E+00 +879853,fr,1,3.650000E+00,8.044000E-01,4.310922E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +879855,fr,1,3.650000E+00,8.044000E-01,4.310922E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801287E+01,0.000000E+00 +879859,fr,1,3.650000E+00,8.044000E-01,4.310922E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +879864,fr,1,3.750000E+00,8.044000E-01,4.310922E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +879865,fr,1,3.750000E+00,8.044000E-01,4.310922E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +879873,fr,1,3.750000E+00,8.044000E-01,4.310922E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.996736E+01,0.000000E+00 +879876,fr,1,3.850000E+00,8.044000E-01,4.310922E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +879879,fr,1,3.850000E+00,8.044000E-01,4.310922E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.799774E+01,0.000000E+00 +879900,fr,1,4.050000E+00,8.044000E-01,4.310922E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +879924,fr,1,4.250000E+00,8.044000E-01,4.310922E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +879958,fr,1,4.450000E+00,8.044000E-01,4.310922E+01,1.500000E+01,Active Shallow Crust,1.288929E+02,8.999380E+01,0.000000E+00 +880329,fr,1,3.550000E+00,3.910420E+00,5.182685E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.999377E+01,0.000000E+00 +880813,fr,1,3.650000E+00,4.815150E+00,4.125727E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999324E+01,0.000000E+00 +881280,fr,6,3.550000E+00,-6.055400E-01,4.638177E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +881281,fr,2,3.550000E+00,-6.055400E-01,4.638177E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +881307,fr,1,3.750000E+00,-6.055400E-01,4.638177E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801749E+01,0.000000E+00 +881341,fr,1,4.050000E+00,-6.055400E-01,4.638177E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +881352,fr,1,4.150000E+00,-6.055400E-01,4.638177E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +881376,fr,1,4.350000E+00,-6.055400E-01,4.638177E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +881388,fr,1,4.450000E+00,-6.055400E-01,4.638177E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +881436,fr,1,4.850000E+00,-6.055400E-01,4.638177E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +881592,fr,1,6.150000E+00,-6.055377E-01,4.638177E+01,6.011322E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +882288,fr,1,3.950000E+00,2.065520E+00,5.268592E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +882732,fr,1,3.650000E+00,-2.057120E+00,4.788417E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999096E+01,0.000000E+00 +882738,fr,1,3.650000E+00,-2.057120E+00,4.788417E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999085E+01,-9.000000E+01 +882744,fr,1,3.750000E+00,-2.057120E+00,4.788417E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +882747,fr,1,3.750000E+00,-2.057120E+00,4.788417E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.801775E+01,0.000000E+00 +882756,fr,3,3.850000E+00,-2.057120E+00,4.788417E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +882792,fr,1,4.150000E+00,-2.057120E+00,4.788417E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +882798,fr,1,4.150000E+00,-2.057120E+00,4.788417E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,-9.000000E+01 +882816,fr,2,4.350000E+00,-2.057120E+00,4.788417E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +883201,fr,1,3.550000E+00,7.553760E+00,4.831325E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999329E+01,0.000000E+00 +883202,fr,1,3.550000E+00,7.553760E+00,4.831325E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999329E+01,0.000000E+00 +883203,fr,1,3.550000E+00,7.553760E+00,4.831325E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799866E+01,0.000000E+00 +883213,fr,1,3.650000E+00,7.553760E+00,4.831325E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998804E+01,0.000000E+00 +883214,fr,2,3.650000E+00,7.553760E+00,4.831325E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998804E+01,0.000000E+00 +883216,fr,1,3.650000E+00,7.553760E+00,4.831325E+01,1.500000E+01,Active Shallow Crust,2.400015E+02,5.801257E+01,0.000000E+00 +883224,fr,3,3.750000E+00,7.553760E+00,4.831325E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +883225,fr,1,3.750000E+00,7.553760E+00,4.831325E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +883228,fr,1,3.750000E+00,7.553760E+00,4.831325E+01,1.500000E+01,Active Shallow Crust,2.400089E+02,5.801817E+01,0.000000E+00 +883230,fr,1,3.750000E+00,7.553760E+00,4.831325E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998922E+01,-9.000000E+01 +883233,fr,1,3.750000E+00,7.553760E+00,4.831325E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.996752E+01,0.000000E+00 +883236,fr,2,3.850000E+00,7.553760E+00,4.831325E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +883239,fr,1,3.850000E+00,7.553760E+00,4.831325E+01,5.000000E+00,Active Shallow Crust,2.400100E+02,5.799874E+01,0.000000E+00 +883245,fr,1,3.850000E+00,7.553760E+00,4.831325E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999288E+01,0.000000E+00 +883247,fr,1,3.850000E+00,7.553760E+00,4.831325E+01,2.750000E+01,Active Shallow Crust,1.288963E+02,8.999288E+01,0.000000E+00 +883248,fr,2,3.950000E+00,7.553760E+00,4.831325E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999154E+01,0.000000E+00 +883251,fr,1,3.950000E+00,7.553760E+00,4.831325E+01,5.000000E+00,Active Shallow Crust,2.400197E+02,5.800513E+01,0.000000E+00 +883252,fr,1,3.950000E+00,7.553760E+00,4.831325E+01,1.500000E+01,Active Shallow Crust,2.400197E+02,5.800513E+01,0.000000E+00 +883255,fr,1,3.950000E+00,7.553760E+00,4.831325E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999144E+01,-9.000000E+01 +883261,fr,1,4.050000E+00,7.553760E+00,4.831325E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +883264,fr,1,4.050000E+00,7.553760E+00,4.831325E+01,1.500000E+01,Active Shallow Crust,2.400063E+02,5.800548E+01,0.000000E+00 +883269,fr,1,4.050000E+00,7.553760E+00,4.831325E+01,5.000000E+00,Active Shallow Crust,1.288907E+02,8.999245E+01,0.000000E+00 +883272,fr,2,4.150000E+00,7.553760E+00,4.831325E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +883273,fr,1,4.150000E+00,7.553760E+00,4.831325E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +883274,fr,1,4.150000E+00,7.553760E+00,4.831325E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +883284,fr,1,4.250000E+00,7.553760E+00,4.831325E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999101E+01,0.000000E+00 +883286,fr,1,4.250000E+00,7.553760E+00,4.831325E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999101E+01,0.000000E+00 +883287,fr,1,4.250000E+00,7.553760E+00,4.831325E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.799400E+01,0.000000E+00 +883296,fr,1,4.350000E+00,7.553760E+00,4.831325E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +883309,fr,1,4.450000E+00,7.553760E+00,4.831325E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +883317,fr,1,4.450000E+00,7.553760E+00,4.831325E+01,5.000000E+00,Active Shallow Crust,1.288919E+02,8.999405E+01,0.000000E+00 +883326,fr,1,4.550000E+00,7.553760E+00,4.831325E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,-9.000000E+01 +883381,fr,1,5.050000E+00,7.553760E+00,4.831325E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +883387,fr,1,5.050000E+00,7.553760E+00,4.831325E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999035E+01,-9.000000E+01 +883410,fr,1,5.250000E+00,7.553760E+00,4.831325E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,-9.000000E+01 +883465,fr,1,5.750000E+00,7.553760E+00,4.831325E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +883680,fr,2,3.550000E+00,-3.447680E+00,4.292434E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998892E+01,0.000000E+00 +883681,fr,1,3.550000E+00,-3.447680E+00,4.292434E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998892E+01,0.000000E+00 +883683,fr,1,3.550000E+00,-3.447680E+00,4.292434E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799797E+01,0.000000E+00 +883689,fr,1,3.550000E+00,-3.447680E+00,4.292434E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999446E+01,0.000000E+00 +883691,fr,1,3.550000E+00,-3.447680E+00,4.292434E+01,2.750000E+01,Active Shallow Crust,1.288967E+02,8.999446E+01,0.000000E+00 +883692,fr,1,3.650000E+00,-3.447680E+00,4.292434E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +883693,fr,1,3.650000E+00,-3.447680E+00,4.292434E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +883705,fr,1,3.750000E+00,-3.447680E+00,4.292434E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +883716,fr,2,3.850000E+00,-3.447680E+00,4.292434E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +883731,fr,1,3.950000E+00,-3.447680E+00,4.292434E+01,5.000000E+00,Active Shallow Crust,2.400190E+02,5.800467E+01,0.000000E+00 +883733,fr,1,3.950000E+00,-3.447680E+00,4.292434E+01,2.750000E+01,Active Shallow Crust,2.400190E+02,5.800467E+01,0.000000E+00 +883749,fr,1,4.050000E+00,-3.447680E+00,4.292434E+01,5.000000E+00,Active Shallow Crust,1.288913E+02,8.999377E+01,0.000000E+00 +883752,fr,2,4.150000E+00,-3.447680E+00,4.292434E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +883767,fr,1,4.250000E+00,-3.447680E+00,4.292434E+01,5.000000E+00,Active Shallow Crust,2.400068E+02,5.799425E+01,0.000000E+00 +883865,fr,1,5.050000E+00,-3.447680E+00,4.292434E+01,2.750000E+01,Active Shallow Crust,2.400204E+02,5.799733E+01,0.000000E+00 +884160,fr,1,3.550000E+00,8.928500E-01,4.729420E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +884163,fr,2,3.550000E+00,8.928500E-01,4.729420E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799819E+01,0.000000E+00 +884184,fr,1,3.750000E+00,8.928500E-01,4.729420E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +884197,fr,1,3.850000E+00,8.928500E-01,4.729420E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +884199,fr,1,3.850000E+00,8.928500E-01,4.729420E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799786E+01,0.000000E+00 +884202,fr,1,3.850000E+00,8.928500E-01,4.729420E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,-9.000000E+01 +884241,fr,1,4.150000E+00,8.928500E-01,4.729420E+01,5.000000E+00,Active Shallow Crust,1.288973E+02,8.999379E+01,0.000000E+00 +884283,fr,1,4.550000E+00,8.928500E-01,4.729420E+01,5.000000E+00,Active Shallow Crust,2.400095E+02,5.799741E+01,0.000000E+00 +884640,fr,4,3.550000E+00,6.293360E+00,5.042046E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998715E+01,0.000000E+00 +884641,fr,1,3.550000E+00,6.293360E+00,5.042046E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998715E+01,0.000000E+00 +884646,fr,1,3.550000E+00,6.293360E+00,5.042046E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998700E+01,-9.000000E+01 +884652,fr,2,3.650000E+00,6.293360E+00,5.042046E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998855E+01,0.000000E+00 +884658,fr,1,3.650000E+00,6.293360E+00,5.042046E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998841E+01,-9.000000E+01 +884665,fr,2,3.750000E+00,6.293360E+00,5.042046E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +884667,fr,1,3.750000E+00,6.293360E+00,5.042046E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.801779E+01,0.000000E+00 +884670,fr,1,3.750000E+00,6.293360E+00,5.042046E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,-9.000000E+01 +884675,fr,1,3.750000E+00,6.293360E+00,5.042046E+01,2.750000E+01,Active Shallow Crust,1.288963E+02,8.996756E+01,0.000000E+00 +884677,fr,2,3.850000E+00,6.293360E+00,5.042046E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +884680,fr,1,3.850000E+00,6.293360E+00,5.042046E+01,1.500000E+01,Active Shallow Crust,2.400109E+02,5.799786E+01,0.000000E+00 +884688,fr,2,3.950000E+00,6.293360E+00,5.042046E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999189E+01,0.000000E+00 +884696,fr,1,3.950000E+00,6.293360E+00,5.042046E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999180E+01,-9.000000E+01 +884700,fr,2,4.050000E+00,6.293360E+00,5.042046E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +884743,fr,1,4.350000E+00,6.293360E+00,5.042046E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +884796,fr,1,4.850000E+00,6.293360E+00,5.042046E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +885144,fr,1,3.750000E+00,6.550480E+00,5.167733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +885167,fr,1,3.850000E+00,6.550480E+00,5.167733E+01,2.750000E+01,Active Shallow Crust,1.288947E+02,8.999557E+01,0.000000E+00 +885207,fr,1,4.250000E+00,6.550480E+00,5.167733E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.799403E+01,0.000000E+00 +885216,fr,1,4.350000E+00,6.550480E+00,5.167733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +885300,fr,1,5.050000E+00,6.550480E+00,5.167733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +885613,fr,1,3.650000E+00,4.056370E+00,4.760593E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998788E+01,0.000000E+00 +885708,fr,1,4.450000E+00,4.056370E+00,4.760593E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +886092,fr,1,3.650000E+00,-1.684000E-01,4.869201E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +886096,fr,1,3.650000E+00,-1.684000E-01,4.869201E+01,1.500000E+01,Active Shallow Crust,2.400013E+02,5.801294E+01,0.000000E+00 +886116,fr,1,3.850000E+00,-1.684000E-01,4.869201E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +886117,fr,1,3.850000E+00,-1.684000E-01,4.869201E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +886122,fr,1,3.850000E+00,-1.684000E-01,4.869201E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +886128,fr,1,3.950000E+00,-1.684000E-01,4.869201E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +886133,fr,1,3.950000E+00,-1.684000E-01,4.869201E+01,2.750000E+01,Active Shallow Crust,2.400201E+02,5.800502E+01,0.000000E+00 +886141,fr,1,4.050000E+00,-1.684000E-01,4.869201E+01,1.500000E+01,Active Shallow Crust,3.599999E+02,8.999006E+01,0.000000E+00 +886188,fr,1,4.450000E+00,-1.684000E-01,4.869201E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999004E+01,0.000000E+00 +886218,fr,1,4.650000E+00,-1.684000E-01,4.869201E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +886225,fr,1,4.750000E+00,-1.684000E-01,4.869201E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +886272,fr,1,5.150000E+00,-1.684000E-01,4.869201E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +886284,fr,1,5.250000E+00,-1.684000E-01,4.869201E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +886560,fr,2,3.550000E+00,5.444750E+00,4.599521E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999300E+01,0.000000E+00 +886566,fr,1,3.550000E+00,5.444750E+00,4.599521E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999291E+01,-9.000000E+01 +886572,fr,2,3.650000E+00,5.444750E+00,4.599521E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998751E+01,0.000000E+00 +886573,fr,2,3.650000E+00,5.444750E+00,4.599521E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998751E+01,0.000000E+00 +886583,fr,1,3.650000E+00,5.444750E+00,4.599521E+01,2.750000E+01,Active Shallow Crust,1.289006E+02,8.996352E+01,0.000000E+00 +886584,fr,1,3.750000E+00,5.444750E+00,4.599521E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998887E+01,0.000000E+00 +886596,fr,1,3.850000E+00,5.444750E+00,4.599521E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +886597,fr,1,3.850000E+00,5.444750E+00,4.599521E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +886598,fr,1,3.850000E+00,5.444750E+00,4.599521E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +886621,fr,2,4.050000E+00,5.444750E+00,4.599521E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998818E+01,0.000000E+00 +886623,fr,1,4.050000E+00,5.444750E+00,4.599521E+01,5.000000E+00,Active Shallow Crust,2.400063E+02,5.800571E+01,0.000000E+00 +886632,fr,1,4.150000E+00,5.444750E+00,4.599521E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +886633,fr,1,4.150000E+00,5.444750E+00,4.599521E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +886647,fr,1,4.250000E+00,5.444750E+00,4.599521E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.799416E+01,0.000000E+00 +886788,fr,1,5.450000E+00,5.444750E+00,4.599521E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +887061,fr,1,3.650000E+00,5.805360E+00,5.182678E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.996310E+01,0.000000E+00 +887551,fr,1,3.750000E+00,-3.235550E+00,5.047208E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +887553,fr,1,3.750000E+00,-3.235550E+00,5.047208E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.996733E+01,0.000000E+00 +888000,fr,1,3.550000E+00,1.921340E+00,4.906621E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +888006,fr,1,3.550000E+00,1.921340E+00,4.906621E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +888013,fr,2,3.650000E+00,1.921340E+00,4.906621E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +888027,fr,1,3.750000E+00,1.921340E+00,4.906621E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.801775E+01,0.000000E+00 +888048,fr,1,3.950000E+00,1.921340E+00,4.906621E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +888072,fr,1,4.150000E+00,1.921340E+00,4.906621E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +888082,fr,1,4.150000E+00,1.921340E+00,4.906621E+01,1.500000E+01,Active Shallow Crust,1.288973E+02,8.999338E+01,0.000000E+00 +888090,fr,1,4.250000E+00,1.921340E+00,4.906621E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,-9.000000E+01 +888600,fr,1,4.550000E+00,4.047940E+00,4.824010E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +889008,fr,1,3.950000E+00,-2.019170E+00,4.475231E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +889452,fr,1,3.650000E+00,4.930490E+00,4.579577E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998746E+01,0.000000E+00 +889455,fr,2,3.650000E+00,4.930490E+00,4.579577E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801345E+01,0.000000E+00 +889464,fr,1,3.750000E+00,4.930490E+00,4.579577E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998883E+01,0.000000E+00 +889466,fr,1,3.750000E+00,4.930490E+00,4.579577E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998883E+01,0.000000E+00 +889470,fr,1,3.750000E+00,4.930490E+00,4.579577E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998870E+01,-9.000000E+01 +889473,fr,1,3.750000E+00,4.930490E+00,4.579577E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.996748E+01,0.000000E+00 +889476,fr,1,3.850000E+00,4.930490E+00,4.579577E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +889479,fr,1,3.850000E+00,4.930490E+00,4.579577E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799773E+01,0.000000E+00 +889488,fr,1,3.950000E+00,4.930490E+00,4.579577E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999113E+01,0.000000E+00 +889500,fr,1,4.050000E+00,4.930490E+00,4.579577E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998814E+01,0.000000E+00 +889512,fr,1,4.150000E+00,4.930490E+00,4.579577E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +889537,fr,1,4.350000E+00,4.930490E+00,4.579577E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998880E+01,0.000000E+00 +889548,fr,1,4.450000E+00,4.930490E+00,4.579577E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +889549,fr,1,4.450000E+00,4.930490E+00,4.579577E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +889920,fr,1,3.550000E+00,4.829910E+00,5.133281E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998740E+01,0.000000E+00 +889946,fr,1,3.750000E+00,4.829910E+00,5.133281E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +889957,fr,1,3.850000E+00,4.829910E+00,5.133281E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999108E+01,0.000000E+00 +889968,fr,1,3.950000E+00,4.829910E+00,5.133281E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +889995,fr,1,4.150000E+00,4.829910E+00,5.133281E+01,5.000000E+00,Active Shallow Crust,2.400099E+02,5.799728E+01,0.000000E+00 +890109,fr,1,5.050000E+00,4.829910E+00,5.133281E+01,5.000000E+00,Active Shallow Crust,1.288830E+02,8.999055E+01,0.000000E+00 +890400,fr,1,3.550000E+00,1.251100E-01,4.884263E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +890401,fr,1,3.550000E+00,1.251100E-01,4.884263E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +890412,fr,1,3.650000E+00,1.251100E-01,4.884263E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +890413,fr,2,3.650000E+00,1.251100E-01,4.884263E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +890448,fr,1,3.950000E+00,1.251100E-01,4.884263E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +890460,fr,1,4.050000E+00,1.251100E-01,4.884263E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +890469,fr,1,4.050000E+00,1.251100E-01,4.884263E+01,5.000000E+00,Active Shallow Crust,1.288902E+02,8.999371E+01,0.000000E+00 +890508,fr,1,4.450000E+00,1.251100E-01,4.884263E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +890536,fr,1,4.650000E+00,1.251100E-01,4.884263E+01,1.500000E+01,Active Shallow Crust,2.400117E+02,5.799438E+01,0.000000E+00 +890610,fr,1,5.250000E+00,1.251100E-01,4.884263E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999001E+01,-9.000000E+01 +890880,fr,6,3.550000E+00,7.920070E+00,4.733025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999316E+01,0.000000E+00 +890881,fr,2,3.550000E+00,7.920070E+00,4.733025E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999316E+01,0.000000E+00 +890886,fr,1,3.550000E+00,7.920070E+00,4.733025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999309E+01,-9.000000E+01 +890892,fr,6,3.650000E+00,7.920070E+00,4.733025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998782E+01,0.000000E+00 +890893,fr,3,3.650000E+00,7.920070E+00,4.733025E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998782E+01,0.000000E+00 +890901,fr,3,3.650000E+00,7.920070E+00,4.733025E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996354E+01,0.000000E+00 +890904,fr,1,3.750000E+00,7.920070E+00,4.733025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +890908,fr,2,3.750000E+00,7.920070E+00,4.733025E+01,1.500000E+01,Active Shallow Crust,2.400080E+02,5.801712E+01,0.000000E+00 +890913,fr,1,3.750000E+00,7.920070E+00,4.733025E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.996751E+01,0.000000E+00 +890918,fr,1,3.850000E+00,7.920070E+00,4.733025E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +890919,fr,1,3.850000E+00,7.920070E+00,4.733025E+01,5.000000E+00,Active Shallow Crust,2.400100E+02,5.799776E+01,0.000000E+00 +890920,fr,1,3.850000E+00,7.920070E+00,4.733025E+01,1.500000E+01,Active Shallow Crust,2.400100E+02,5.799776E+01,0.000000E+00 +890928,fr,3,3.950000E+00,7.920070E+00,4.733025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999138E+01,0.000000E+00 +890931,fr,2,3.950000E+00,7.920070E+00,4.733025E+01,5.000000E+00,Active Shallow Crust,2.400205E+02,5.800458E+01,0.000000E+00 +890937,fr,1,3.950000E+00,7.920070E+00,4.733025E+01,5.000000E+00,Active Shallow Crust,1.288993E+02,8.999353E+01,0.000000E+00 +890940,fr,3,4.050000E+00,7.920070E+00,4.733025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998847E+01,0.000000E+00 +890943,fr,1,4.050000E+00,7.920070E+00,4.733025E+01,5.000000E+00,Active Shallow Crust,2.400057E+02,5.800629E+01,0.000000E+00 +890952,fr,3,4.150000E+00,7.920070E+00,4.733025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +890953,fr,2,4.150000E+00,7.920070E+00,4.733025E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +890954,fr,1,4.150000E+00,7.920070E+00,4.733025E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +890956,fr,1,4.150000E+00,7.920070E+00,4.733025E+01,1.500000E+01,Active Shallow Crust,2.400086E+02,5.799688E+01,0.000000E+00 +890961,fr,1,4.150000E+00,7.920070E+00,4.733025E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.999315E+01,0.000000E+00 +890976,fr,2,4.350000E+00,7.920070E+00,4.733025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +890988,fr,1,4.450000E+00,7.920070E+00,4.733025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +891006,fr,1,4.550000E+00,7.920070E+00,4.733025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,-9.000000E+01 +891049,fr,1,4.950000E+00,7.920070E+00,4.733025E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +891072,fr,1,5.150000E+00,7.920070E+00,4.733025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +891360,fr,3,3.550000E+00,-4.762360E+00,4.830986E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999329E+01,0.000000E+00 +891384,fr,2,3.750000E+00,-4.762360E+00,4.830986E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +891387,fr,1,3.750000E+00,-4.762360E+00,4.830986E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801774E+01,0.000000E+00 +891397,fr,1,3.850000E+00,-4.762360E+00,4.830986E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +891454,fr,1,4.250000E+00,-4.762360E+00,4.830986E+01,1.500000E+01,Active Shallow Crust,1.288936E+02,8.998101E+01,0.000000E+00 +891469,fr,1,4.450000E+00,-4.762360E+00,4.830986E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +891471,fr,1,4.450000E+00,-4.762360E+00,4.830986E+01,5.000000E+00,Active Shallow Crust,2.400058E+02,5.799510E+01,0.000000E+00 +891529,fr,1,4.950000E+00,-4.762360E+00,4.830986E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +891841,fr,1,3.550000E+00,-1.722800E+00,5.084386E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +891852,fr,1,3.650000E+00,-1.722800E+00,5.084386E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +891880,fr,1,3.850000E+00,-1.722800E+00,5.084386E+01,1.500000E+01,Active Shallow Crust,2.400116E+02,5.799776E+01,0.000000E+00 +892320,fr,2,3.550000E+00,-1.297010E+00,4.659522E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +892321,fr,1,3.550000E+00,-1.297010E+00,4.659522E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +892326,fr,1,3.550000E+00,-1.297010E+00,4.659522E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,-9.000000E+01 +892333,fr,1,3.650000E+00,-1.297010E+00,4.659522E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +892335,fr,2,3.650000E+00,-1.297010E+00,4.659522E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801281E+01,0.000000E+00 +892339,fr,1,3.650000E+00,-1.297010E+00,4.659522E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999063E+01,-9.000000E+01 +892345,fr,1,3.750000E+00,-1.297010E+00,4.659522E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +892347,fr,1,3.750000E+00,-1.297010E+00,4.659522E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801762E+01,0.000000E+00 +892351,fr,1,3.750000E+00,-1.297010E+00,4.659522E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,-9.000000E+01 +892356,fr,2,3.850000E+00,-1.297010E+00,4.659522E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +892357,fr,1,3.850000E+00,-1.297010E+00,4.659522E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +892358,fr,1,3.850000E+00,-1.297010E+00,4.659522E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +892365,fr,1,3.850000E+00,-1.297010E+00,4.659522E+01,5.000000E+00,Active Shallow Crust,1.288955E+02,8.999387E+01,0.000000E+00 +892368,fr,1,3.950000E+00,-1.297010E+00,4.659522E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +892375,fr,1,3.950000E+00,-1.297010E+00,4.659522E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,-9.000000E+01 +892380,fr,1,4.050000E+00,-1.297010E+00,4.659522E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +892390,fr,1,4.050000E+00,-1.297010E+00,4.659522E+01,1.500000E+01,Active Shallow Crust,1.288906E+02,8.999367E+01,0.000000E+00 +892392,fr,1,4.150000E+00,-1.297010E+00,4.659522E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +892417,fr,1,4.350000E+00,-1.297010E+00,4.659522E+01,1.500000E+01,Active Shallow Crust,3.599997E+02,8.999034E+01,0.000000E+00 +892429,fr,1,4.450000E+00,-1.297010E+00,4.659522E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +892431,fr,1,4.450000E+00,-1.297010E+00,4.659522E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.799466E+01,0.000000E+00 +892476,fr,1,4.850000E+00,-1.297010E+00,4.659522E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +892494,fr,1,4.950000E+00,-1.297010E+00,4.659522E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,-9.000000E+01 +892574,fr,1,5.650000E+00,-1.297010E+00,4.659522E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +892729,fr,1,6.950000E+00,-1.297010E+00,4.659522E+01,1.509976E+01,Active Shallow Crust,3.600000E+02,8.998999E+01,0.000000E+00 +892801,fr,1,3.550000E+00,6.803150E+00,4.498725E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999287E+01,0.000000E+00 +892812,fr,2,3.650000E+00,6.803150E+00,4.498725E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998729E+01,0.000000E+00 +892813,fr,1,3.650000E+00,6.803150E+00,4.498725E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998729E+01,0.000000E+00 +892814,fr,1,3.650000E+00,6.803150E+00,4.498725E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998729E+01,0.000000E+00 +892822,fr,1,3.650000E+00,6.803150E+00,4.498725E+01,1.500000E+01,Active Shallow Crust,1.288999E+02,8.996349E+01,0.000000E+00 +892824,fr,1,3.750000E+00,6.803150E+00,4.498725E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998867E+01,0.000000E+00 +892838,fr,1,3.850000E+00,6.803150E+00,4.498725E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +892840,fr,1,3.850000E+00,6.803150E+00,4.498725E+01,1.500000E+01,Active Shallow Crust,2.400112E+02,5.799811E+01,0.000000E+00 +892854,fr,1,3.950000E+00,6.803150E+00,4.498725E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999090E+01,-9.000000E+01 +892858,fr,1,3.950000E+00,6.803150E+00,4.498725E+01,1.500000E+01,Active Shallow Crust,1.289018E+02,8.999325E+01,0.000000E+00 +892864,fr,1,4.050000E+00,6.803150E+00,4.498725E+01,1.500000E+01,Active Shallow Crust,2.400060E+02,5.800592E+01,0.000000E+00 +892873,fr,1,4.150000E+00,6.803150E+00,4.498725E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +892922,fr,1,4.550000E+00,6.803150E+00,4.498725E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +892934,fr,1,4.650000E+00,6.803150E+00,4.498725E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +893004,fr,1,5.250000E+00,6.803150E+00,4.498725E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +893023,fr,1,5.350000E+00,6.803150E+00,4.498725E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +893760,fr,2,3.550000E+00,7.308870E+00,4.764686E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999321E+01,0.000000E+00 +893761,fr,1,3.550000E+00,7.308870E+00,4.764686E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999321E+01,0.000000E+00 +893764,fr,1,3.550000E+00,7.308870E+00,4.764686E+01,1.500000E+01,Active Shallow Crust,2.400116E+02,5.799857E+01,0.000000E+00 +893766,fr,1,3.550000E+00,7.308870E+00,4.764686E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999313E+01,-9.000000E+01 +893769,fr,1,3.550000E+00,7.308870E+00,4.764686E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999321E+01,0.000000E+00 +893772,fr,4,3.650000E+00,7.308870E+00,4.764686E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998789E+01,0.000000E+00 +893773,fr,2,3.650000E+00,7.308870E+00,4.764686E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998789E+01,0.000000E+00 +893774,fr,2,3.650000E+00,7.308870E+00,4.764686E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998789E+01,0.000000E+00 +893775,fr,1,3.650000E+00,7.308870E+00,4.764686E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801237E+01,0.000000E+00 +893776,fr,1,3.650000E+00,7.308870E+00,4.764686E+01,1.500000E+01,Active Shallow Crust,2.400014E+02,5.801237E+01,0.000000E+00 +893782,fr,1,3.650000E+00,7.308870E+00,4.764686E+01,1.500000E+01,Active Shallow Crust,1.288998E+02,8.996355E+01,0.000000E+00 +893784,fr,2,3.750000E+00,7.308870E+00,4.764686E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +893786,fr,1,3.750000E+00,7.308870E+00,4.764686E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +893791,fr,1,3.750000E+00,7.308870E+00,4.764686E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998908E+01,-9.000000E+01 +893793,fr,3,3.750000E+00,7.308870E+00,4.764686E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996751E+01,0.000000E+00 +893794,fr,1,3.750000E+00,7.308870E+00,4.764686E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.996751E+01,0.000000E+00 +893796,fr,2,3.850000E+00,7.308870E+00,4.764686E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +893797,fr,1,3.850000E+00,7.308870E+00,4.764686E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +893803,fr,1,3.850000E+00,7.308870E+00,4.764686E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,-9.000000E+01 +893805,fr,1,3.850000E+00,7.308870E+00,4.764686E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.999279E+01,0.000000E+00 +893808,fr,2,3.950000E+00,7.308870E+00,4.764686E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +893809,fr,1,3.950000E+00,7.308870E+00,4.764686E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +893817,fr,2,3.950000E+00,7.308870E+00,4.764686E+01,5.000000E+00,Active Shallow Crust,1.289006E+02,8.999357E+01,0.000000E+00 +893820,fr,2,4.050000E+00,7.308870E+00,4.764686E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998854E+01,0.000000E+00 +893821,fr,2,4.050000E+00,7.308870E+00,4.764686E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998854E+01,0.000000E+00 +893830,fr,1,4.050000E+00,7.308870E+00,4.764686E+01,1.500000E+01,Active Shallow Crust,1.288904E+02,8.999427E+01,0.000000E+00 +893832,fr,1,4.150000E+00,7.308870E+00,4.764686E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +893835,fr,1,4.150000E+00,7.308870E+00,4.764686E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799728E+01,0.000000E+00 +893844,fr,2,4.250000E+00,7.308870E+00,4.764686E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999090E+01,0.000000E+00 +893847,fr,2,4.250000E+00,7.308870E+00,4.764686E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.799464E+01,0.000000E+00 +893871,fr,1,4.450000E+00,7.308870E+00,4.764686E+01,5.000000E+00,Active Shallow Crust,2.400056E+02,5.799469E+01,0.000000E+00 +893877,fr,2,4.450000E+00,7.308870E+00,4.764686E+01,5.000000E+00,Active Shallow Crust,1.288915E+02,8.999397E+01,0.000000E+00 +893880,fr,1,4.550000E+00,7.308870E+00,4.764686E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +893882,fr,1,4.550000E+00,7.308870E+00,4.764686E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +893928,fr,1,4.950000E+00,7.308870E+00,4.764686E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +893941,fr,1,5.050000E+00,7.308870E+00,4.764686E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +893960,fr,1,5.150000E+00,7.308870E+00,4.764686E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,-9.000000E+01 +893964,fr,1,5.250000E+00,7.308870E+00,4.764686E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +893982,fr,1,5.350000E+00,7.308870E+00,4.764686E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,-9.000000E+01 +893991,fr,1,5.450000E+00,7.308870E+00,4.764686E+01,5.000000E+00,Active Shallow Crust,2.400300E+02,5.799868E+01,0.000000E+00 +894030,fr,1,5.750000E+00,7.308870E+00,4.764686E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,-9.000000E+01 +894052,fr,1,5.950000E+00,7.308870E+00,4.764686E+01,1.500000E+01,Active Shallow Crust,2.400550E+02,5.799912E+01,0.000000E+00 +894470,fr,1,5.450000E+00,-1.544300E+00,4.452584E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +894492,fr,1,5.650000E+00,-1.544300E+00,4.452584E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +894720,fr,1,3.550000E+00,-1.034040E+00,4.593930E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +894730,fr,1,3.550000E+00,-1.034040E+00,4.593930E+01,1.500000E+01,Active Shallow Crust,1.288964E+02,8.999387E+01,0.000000E+00 +894732,fr,2,3.650000E+00,-1.034040E+00,4.593930E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +894734,fr,1,3.650000E+00,-1.034040E+00,4.593930E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +894735,fr,1,3.650000E+00,-1.034040E+00,4.593930E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801283E+01,0.000000E+00 +894738,fr,1,3.650000E+00,-1.034040E+00,4.593930E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,-9.000000E+01 +894744,fr,1,3.750000E+00,-1.034040E+00,4.593930E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +894745,fr,3,3.750000E+00,-1.034040E+00,4.593930E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +894757,fr,1,3.850000E+00,-1.034040E+00,4.593930E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +894758,fr,1,3.850000E+00,-1.034040E+00,4.593930E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +894793,fr,1,4.150000E+00,-1.034040E+00,4.593930E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +894821,fr,1,4.350000E+00,-1.034040E+00,4.593930E+01,2.750000E+01,Active Shallow Crust,2.400083E+02,5.799599E+01,0.000000E+00 +894822,fr,1,4.350000E+00,-1.034040E+00,4.593930E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,-9.000000E+01 +894831,fr,1,4.450000E+00,-1.034040E+00,4.593930E+01,5.000000E+00,Active Shallow Crust,2.400052E+02,5.799458E+01,0.000000E+00 +894855,fr,1,4.650000E+00,-1.034040E+00,4.593930E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799416E+01,0.000000E+00 +894861,fr,1,4.650000E+00,-1.034040E+00,4.593930E+01,5.000000E+00,Active Shallow Crust,1.288913E+02,8.998695E+01,0.000000E+00 +894876,fr,1,4.850000E+00,-1.034040E+00,4.593930E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +894923,fr,1,5.150000E+00,-1.034040E+00,4.593930E+01,2.750000E+01,Active Shallow Crust,1.288839E+02,8.999106E+01,0.000000E+00 +894925,fr,1,5.250000E+00,-1.034040E+00,4.593930E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +895200,fr,4,3.550000E+00,-1.492390E+00,4.739073E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +895201,fr,1,3.550000E+00,-1.492390E+00,4.739073E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +895202,fr,1,3.550000E+00,-1.492390E+00,4.739073E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +895206,fr,1,3.550000E+00,-1.492390E+00,4.739073E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,-9.000000E+01 +895210,fr,1,3.550000E+00,-1.492390E+00,4.739073E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.999403E+01,0.000000E+00 +895212,fr,1,3.650000E+00,-1.492390E+00,4.739073E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +895213,fr,1,3.650000E+00,-1.492390E+00,4.739073E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +895219,fr,1,3.650000E+00,-1.492390E+00,4.739073E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999077E+01,-9.000000E+01 +895225,fr,1,3.750000E+00,-1.492390E+00,4.739073E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +895230,fr,1,3.750000E+00,-1.492390E+00,4.739073E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,-9.000000E+01 +895232,fr,1,3.750000E+00,-1.492390E+00,4.739073E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999040E+01,-9.000000E+01 +895236,fr,1,3.850000E+00,-1.492390E+00,4.739073E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +895245,fr,1,3.850000E+00,-1.492390E+00,4.739073E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999335E+01,0.000000E+00 +895250,fr,1,3.950000E+00,-1.492390E+00,4.739073E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +895255,fr,1,3.950000E+00,-1.492390E+00,4.739073E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,-9.000000E+01 +895260,fr,2,4.050000E+00,-1.492390E+00,4.739073E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +895269,fr,1,4.050000E+00,-1.492390E+00,4.739073E+01,5.000000E+00,Active Shallow Crust,1.288902E+02,8.999376E+01,0.000000E+00 +895285,fr,1,4.250000E+00,-1.492390E+00,4.739073E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +895291,fr,1,4.250000E+00,-1.492390E+00,4.739073E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +895308,fr,2,4.450000E+00,-1.492390E+00,4.739073E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +895320,fr,1,4.550000E+00,-1.492390E+00,4.739073E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +895333,fr,1,4.650000E+00,-1.492390E+00,4.739073E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +895372,fr,1,4.950000E+00,-1.492390E+00,4.739073E+01,1.500000E+01,Active Shallow Crust,2.400123E+02,5.800454E+01,0.000000E+00 +895393,fr,1,5.150000E+00,-1.492390E+00,4.739073E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +895395,fr,1,5.150000E+00,-1.492390E+00,4.739073E+01,5.000000E+00,Active Shallow Crust,2.400202E+02,5.800005E+01,0.000000E+00 +895402,fr,1,5.150000E+00,-1.492390E+00,4.739073E+01,1.500000E+01,Active Shallow Crust,1.288833E+02,8.999099E+01,0.000000E+00 +895441,fr,1,5.550000E+00,-1.492390E+00,4.739073E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +895680,fr,1,3.550000E+00,3.545150E+00,4.269349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +895681,fr,1,3.550000E+00,3.545150E+00,4.269349E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +895693,fr,1,3.650000E+00,3.545150E+00,4.269349E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +895704,fr,1,3.750000E+00,3.545150E+00,4.269349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +895707,fr,1,3.750000E+00,3.545150E+00,4.269349E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.801781E+01,0.000000E+00 +895729,fr,1,3.950000E+00,3.545150E+00,4.269349E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +895752,fr,1,4.150000E+00,3.545150E+00,4.269349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +896161,fr,1,3.550000E+00,2.159840E+00,4.670345E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +896172,fr,1,3.650000E+00,2.159840E+00,4.670345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +896177,fr,1,3.650000E+00,2.159840E+00,4.670345E+01,2.750000E+01,Active Shallow Crust,2.400007E+02,5.801318E+01,0.000000E+00 +896184,fr,1,3.750000E+00,2.159840E+00,4.670345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +896186,fr,1,3.750000E+00,2.159840E+00,4.670345E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +896211,fr,1,3.950000E+00,2.159840E+00,4.670345E+01,5.000000E+00,Active Shallow Crust,2.400194E+02,5.800534E+01,0.000000E+00 +896244,fr,1,4.250000E+00,2.159840E+00,4.670345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999073E+01,0.000000E+00 +896262,fr,1,4.350000E+00,2.159840E+00,4.670345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,-9.000000E+01 +896295,fr,1,4.650000E+00,2.159840E+00,4.670345E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799440E+01,0.000000E+00 +896358,fr,1,5.150000E+00,2.159840E+00,4.670345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +896394,fr,1,5.450000E+00,2.159840E+00,4.670345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,-9.000000E+01 +896652,fr,1,3.650000E+00,7.236540E+00,5.114884E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +896664,fr,1,3.750000E+00,7.236540E+00,5.114884E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +896689,fr,1,3.950000E+00,7.236540E+00,5.114884E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998803E+01,0.000000E+00 +897120,fr,2,3.550000E+00,5.835080E+00,4.630607E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999303E+01,0.000000E+00 +897123,fr,2,3.550000E+00,5.835080E+00,4.630607E+01,5.000000E+00,Active Shallow Crust,2.400128E+02,5.799757E+01,0.000000E+00 +897132,fr,1,3.650000E+00,5.835080E+00,4.630607E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998758E+01,0.000000E+00 +897133,fr,1,3.650000E+00,5.835080E+00,4.630607E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998758E+01,0.000000E+00 +897144,fr,1,3.750000E+00,5.835080E+00,4.630607E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998893E+01,0.000000E+00 +897145,fr,1,3.750000E+00,5.835080E+00,4.630607E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998893E+01,0.000000E+00 +897157,fr,1,3.850000E+00,5.835080E+00,4.630607E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +897165,fr,2,3.850000E+00,5.835080E+00,4.630607E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999261E+01,0.000000E+00 +897166,fr,1,3.850000E+00,5.835080E+00,4.630607E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.999261E+01,0.000000E+00 +897168,fr,1,3.950000E+00,5.835080E+00,4.630607E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999121E+01,0.000000E+00 +897171,fr,1,3.950000E+00,5.835080E+00,4.630607E+01,5.000000E+00,Active Shallow Crust,2.400195E+02,5.800471E+01,0.000000E+00 +897172,fr,1,3.950000E+00,5.835080E+00,4.630607E+01,1.500000E+01,Active Shallow Crust,2.400195E+02,5.800471E+01,0.000000E+00 +897184,fr,1,4.050000E+00,5.835080E+00,4.630607E+01,1.500000E+01,Active Shallow Crust,2.400057E+02,5.800623E+01,0.000000E+00 +897216,fr,1,4.350000E+00,5.835080E+00,4.630607E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +897228,fr,1,4.450000E+00,5.835080E+00,4.630607E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +897242,fr,1,4.550000E+00,5.835080E+00,4.630607E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +897265,fr,1,4.750000E+00,5.835080E+00,4.630607E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +897266,fr,1,4.750000E+00,5.835080E+00,4.630607E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +897312,fr,1,5.150000E+00,5.835080E+00,4.630607E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +897372,fr,1,5.650000E+00,5.835080E+00,4.630607E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +897396,fr,1,5.850000E+00,5.835080E+00,4.630607E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +897606,fr,1,3.550000E+00,-3.661640E+00,4.373552E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,-9.000000E+01 +897609,fr,1,3.550000E+00,-3.661640E+00,4.373552E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999271E+01,0.000000E+00 +897613,fr,1,3.650000E+00,-3.661640E+00,4.373552E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +898108,fr,1,3.750000E+00,4.879360E+00,4.986333E+01,1.500000E+01,Active Shallow Crust,2.400093E+02,5.801791E+01,0.000000E+00 +898560,fr,1,3.550000E+00,-1.401830E+00,4.833992E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +898562,fr,1,3.550000E+00,-1.401830E+00,4.833992E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +898564,fr,1,3.550000E+00,-1.401830E+00,4.833992E+01,1.500000E+01,Active Shallow Crust,2.400120E+02,5.799848E+01,0.000000E+00 +898566,fr,1,3.550000E+00,-1.401830E+00,4.833992E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,-9.000000E+01 +898569,fr,1,3.550000E+00,-1.401830E+00,4.833992E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999413E+01,0.000000E+00 +898572,fr,1,3.650000E+00,-1.401830E+00,4.833992E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +898574,fr,1,3.650000E+00,-1.401830E+00,4.833992E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +898602,fr,1,3.850000E+00,-1.401830E+00,4.833992E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,-9.000000E+01 +898622,fr,1,4.050000E+00,-1.401830E+00,4.833992E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +898644,fr,1,4.250000E+00,-1.401830E+00,4.833992E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +898648,fr,1,4.250000E+00,-1.401830E+00,4.833992E+01,1.500000E+01,Active Shallow Crust,2.400080E+02,5.799419E+01,0.000000E+00 +898650,fr,1,4.250000E+00,-1.401830E+00,4.833992E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,-9.000000E+01 +898656,fr,1,4.350000E+00,-1.401830E+00,4.833992E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +898663,fr,1,4.350000E+00,-1.401830E+00,4.833992E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +898680,fr,1,4.550000E+00,-1.401830E+00,4.833992E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +898690,fr,1,4.550000E+00,-1.401830E+00,4.833992E+01,1.500000E+01,Active Shallow Crust,1.288933E+02,8.998586E+01,0.000000E+00 +898716,fr,1,4.850000E+00,-1.401830E+00,4.833992E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +899076,fr,1,3.850000E+00,5.342980E+00,4.186823E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +900000,fr,2,3.550000E+00,2.623240E+00,4.649007E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +900012,fr,1,3.650000E+00,2.623240E+00,4.649007E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +900014,fr,1,3.650000E+00,2.623240E+00,4.649007E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +900037,fr,1,3.850000E+00,2.623240E+00,4.649007E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +900040,fr,1,3.850000E+00,2.623240E+00,4.649007E+01,1.500000E+01,Active Shallow Crust,2.400105E+02,5.799765E+01,0.000000E+00 +900061,fr,2,4.050000E+00,2.623240E+00,4.649007E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +900081,fr,1,4.150000E+00,2.623240E+00,4.649007E+01,5.000000E+00,Active Shallow Crust,1.288978E+02,8.999391E+01,0.000000E+00 +900082,fr,1,4.150000E+00,2.623240E+00,4.649007E+01,1.500000E+01,Active Shallow Crust,1.288978E+02,8.999391E+01,0.000000E+00 +900126,fr,1,4.550000E+00,2.623240E+00,4.649007E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +900154,fr,1,4.750000E+00,2.623240E+00,4.649007E+01,1.500000E+01,Active Shallow Crust,1.288887E+02,8.998795E+01,0.000000E+00 +900481,fr,1,3.550000E+00,3.076380E+00,5.155985E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +900504,fr,1,3.750000E+00,3.076380E+00,5.155985E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +900570,fr,1,4.250000E+00,3.076380E+00,5.155985E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,-9.000000E+01 +900672,fr,1,5.150000E+00,3.076380E+00,5.155985E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +900960,fr,7,3.550000E+00,6.666740E+00,4.666920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999308E+01,0.000000E+00 +900961,fr,4,3.550000E+00,6.666740E+00,4.666920E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999308E+01,0.000000E+00 +900963,fr,1,3.550000E+00,6.666740E+00,4.666920E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799786E+01,0.000000E+00 +900964,fr,2,3.550000E+00,6.666740E+00,4.666920E+01,1.500000E+01,Active Shallow Crust,2.400121E+02,5.799786E+01,0.000000E+00 +900965,fr,1,3.550000E+00,6.666740E+00,4.666920E+01,2.750000E+01,Active Shallow Crust,2.400121E+02,5.799777E+01,0.000000E+00 +900966,fr,1,3.550000E+00,6.666740E+00,4.666920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999300E+01,-9.000000E+01 +900969,fr,1,3.550000E+00,6.666740E+00,4.666920E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.999654E+01,0.000000E+00 +900971,fr,2,3.550000E+00,6.666740E+00,4.666920E+01,2.750000E+01,Active Shallow Crust,1.288952E+02,8.999654E+01,0.000000E+00 +900972,fr,9,3.650000E+00,6.666740E+00,4.666920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998766E+01,0.000000E+00 +900973,fr,2,3.650000E+00,6.666740E+00,4.666920E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998766E+01,0.000000E+00 +900974,fr,3,3.650000E+00,6.666740E+00,4.666920E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998766E+01,0.000000E+00 +900975,fr,1,3.650000E+00,6.666740E+00,4.666920E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801310E+01,0.000000E+00 +900977,fr,1,3.650000E+00,6.666740E+00,4.666920E+01,2.750000E+01,Active Shallow Crust,2.400010E+02,5.801302E+01,0.000000E+00 +900978,fr,3,3.650000E+00,6.666740E+00,4.666920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998753E+01,-9.000000E+01 +900981,fr,1,3.650000E+00,6.666740E+00,4.666920E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996352E+01,0.000000E+00 +900982,fr,1,3.650000E+00,6.666740E+00,4.666920E+01,1.500000E+01,Active Shallow Crust,1.289007E+02,8.996352E+01,0.000000E+00 +900983,fr,1,3.650000E+00,6.666740E+00,4.666920E+01,2.750000E+01,Active Shallow Crust,1.289007E+02,8.996352E+01,0.000000E+00 +900984,fr,5,3.750000E+00,6.666740E+00,4.666920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +900985,fr,2,3.750000E+00,6.666740E+00,4.666920E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +900986,fr,2,3.750000E+00,6.666740E+00,4.666920E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +900987,fr,3,3.750000E+00,6.666740E+00,4.666920E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.801738E+01,0.000000E+00 +900988,fr,1,3.750000E+00,6.666740E+00,4.666920E+01,1.500000E+01,Active Shallow Crust,2.400076E+02,5.801738E+01,0.000000E+00 +900990,fr,1,3.750000E+00,6.666740E+00,4.666920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998888E+01,-9.000000E+01 +900994,fr,1,3.750000E+00,6.666740E+00,4.666920E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.996749E+01,0.000000E+00 +900996,fr,3,3.850000E+00,6.666740E+00,4.666920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +900997,fr,1,3.850000E+00,6.666740E+00,4.666920E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +900998,fr,1,3.850000E+00,6.666740E+00,4.666920E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +900999,fr,1,3.850000E+00,6.666740E+00,4.666920E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799759E+01,0.000000E+00 +901002,fr,3,3.850000E+00,6.666740E+00,4.666920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +901003,fr,1,3.850000E+00,6.666740E+00,4.666920E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +901004,fr,1,3.850000E+00,6.666740E+00,4.666920E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +901005,fr,1,3.850000E+00,6.666740E+00,4.666920E+01,5.000000E+00,Active Shallow Crust,1.288949E+02,8.999510E+01,0.000000E+00 +901008,fr,4,3.950000E+00,6.666740E+00,4.666920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +901009,fr,1,3.950000E+00,6.666740E+00,4.666920E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +901010,fr,2,3.950000E+00,6.666740E+00,4.666920E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +901015,fr,1,3.950000E+00,6.666740E+00,4.666920E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999117E+01,-9.000000E+01 +901017,fr,1,3.950000E+00,6.666740E+00,4.666920E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.999564E+01,0.000000E+00 +901020,fr,2,4.050000E+00,6.666740E+00,4.666920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998833E+01,0.000000E+00 +901021,fr,1,4.050000E+00,6.666740E+00,4.666920E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998833E+01,0.000000E+00 +901023,fr,2,4.050000E+00,6.666740E+00,4.666920E+01,5.000000E+00,Active Shallow Crust,2.400061E+02,5.800618E+01,0.000000E+00 +901032,fr,1,4.150000E+00,6.666740E+00,4.666920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +901038,fr,1,4.150000E+00,6.666740E+00,4.666920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,-9.000000E+01 +901044,fr,1,4.250000E+00,6.666740E+00,4.666920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999073E+01,0.000000E+00 +901053,fr,1,4.250000E+00,6.666740E+00,4.666920E+01,5.000000E+00,Active Shallow Crust,1.288941E+02,8.998095E+01,0.000000E+00 +901056,fr,3,4.350000E+00,6.666740E+00,4.666920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +901065,fr,2,4.350000E+00,6.666740E+00,4.666920E+01,5.000000E+00,Active Shallow Crust,1.288983E+02,8.998253E+01,0.000000E+00 +901092,fr,1,4.650000E+00,6.666740E+00,4.666920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +901104,fr,1,4.750000E+00,6.666740E+00,4.666920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +901113,fr,1,4.750000E+00,6.666740E+00,4.666920E+01,5.000000E+00,Active Shallow Crust,1.288887E+02,8.998818E+01,0.000000E+00 +901128,fr,1,4.950000E+00,6.666740E+00,4.666920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +901129,fr,2,4.950000E+00,6.666740E+00,4.666920E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +901152,fr,1,5.150000E+00,6.666740E+00,4.666920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +901164,fr,2,5.250000E+00,6.666740E+00,4.666920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +901165,fr,1,5.250000E+00,6.666740E+00,4.666920E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +901176,fr,1,5.350000E+00,6.666740E+00,4.666920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +901200,fr,1,5.550000E+00,6.666740E+00,4.666920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +901464,fr,1,3.750000E+00,-1.458390E+00,4.549243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +901476,fr,2,3.850000E+00,-1.458390E+00,4.549243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +901478,fr,1,3.850000E+00,-1.458390E+00,4.549243E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +901541,fr,1,4.350000E+00,-1.458390E+00,4.549243E+01,2.750000E+01,Active Shallow Crust,2.400081E+02,5.799591E+01,0.000000E+00 +901945,fr,1,3.750000E+00,7.197550E+00,5.138888E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +902052,fr,1,4.650000E+00,7.197550E+00,5.138888E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +902919,fr,1,3.850000E+00,-5.756350E+00,4.888755E+01,5.000000E+00,Active Shallow Crust,2.400101E+02,5.799786E+01,0.000000E+00 +902932,fr,1,3.950000E+00,-5.756350E+00,4.888755E+01,1.500000E+01,Active Shallow Crust,2.400206E+02,5.800517E+01,0.000000E+00 +903384,fr,1,3.750000E+00,-2.077460E+00,4.584358E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998884E+01,0.000000E+00 +903438,fr,1,4.150000E+00,-2.077460E+00,4.584358E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998932E+01,-9.000000E+01 +903576,fr,1,5.350000E+00,-2.077460E+00,4.584358E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +903840,fr,2,3.550000E+00,6.600460E+00,4.336960E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999267E+01,0.000000E+00 +903858,fr,1,3.650000E+00,6.600460E+00,4.336960E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998679E+01,-9.000000E+01 +904362,fr,1,3.850000E+00,1.696860E+00,5.280461E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,-9.000000E+01 +904452,fr,1,4.650000E+00,1.696860E+00,5.280461E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +904800,fr,1,3.550000E+00,3.589250E+00,4.481930E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +904804,fr,2,3.550000E+00,3.589250E+00,4.481930E+01,1.500000E+01,Active Shallow Crust,2.400119E+02,5.799778E+01,0.000000E+00 +904812,fr,2,3.650000E+00,3.589250E+00,4.481930E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +904842,fr,1,3.850000E+00,3.589250E+00,4.481930E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,-9.000000E+01 +904848,fr,2,3.950000E+00,3.589250E+00,4.481930E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +904849,fr,1,3.950000E+00,3.589250E+00,4.481930E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +904869,fr,1,4.050000E+00,3.589250E+00,4.481930E+01,5.000000E+00,Active Shallow Crust,1.288911E+02,8.999296E+01,0.000000E+00 +904908,fr,1,4.450000E+00,3.589250E+00,4.481930E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +904912,fr,1,4.450000E+00,3.589250E+00,4.481930E+01,1.500000E+01,Active Shallow Crust,2.400050E+02,5.799454E+01,0.000000E+00 +904917,fr,1,4.450000E+00,3.589250E+00,4.481930E+01,5.000000E+00,Active Shallow Crust,1.288923E+02,8.999365E+01,0.000000E+00 +904950,fr,1,4.750000E+00,3.589250E+00,4.481930E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +905004,fr,1,5.250000E+00,3.589250E+00,4.481930E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +905161,fr,1,6.550000E+00,3.589250E+00,4.481930E+01,1.500000E+01,Active Shallow Crust,3.599999E+02,8.999004E+01,0.000000E+00 +905280,fr,1,3.550000E+00,-2.302190E+00,4.334097E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998900E+01,0.000000E+00 +905283,fr,1,3.550000E+00,-2.302190E+00,4.334097E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799814E+01,0.000000E+00 +905299,fr,1,3.650000E+00,-2.302190E+00,4.334097E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,-9.000000E+01 +905301,fr,1,3.650000E+00,-2.302190E+00,4.334097E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996346E+01,0.000000E+00 +905304,fr,1,3.750000E+00,-2.302190E+00,4.334097E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +905313,fr,1,3.750000E+00,-2.302190E+00,4.334097E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.996744E+01,0.000000E+00 +905316,fr,1,3.850000E+00,-2.302190E+00,4.334097E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +905322,fr,1,3.850000E+00,-2.302190E+00,4.334097E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,-9.000000E+01 +905328,fr,1,3.950000E+00,-2.302190E+00,4.334097E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +905377,fr,1,4.350000E+00,-2.302190E+00,4.334097E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +905422,fr,1,4.650000E+00,-2.302190E+00,4.334097E+01,1.500000E+01,Active Shallow Crust,1.288921E+02,8.998705E+01,0.000000E+00 +905439,fr,1,4.850000E+00,-2.302190E+00,4.334097E+01,5.000000E+00,Active Shallow Crust,2.400159E+02,5.800207E+01,0.000000E+00 +905616,fr,1,6.350000E+00,-2.302185E+00,4.334097E+01,7.567806E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +905809,fr,1,3.950000E+00,4.364880E+00,5.187435E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998821E+01,0.000000E+00 +905820,fr,1,4.050000E+00,4.364880E+00,5.187435E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +907680,fr,5,3.550000E+00,-1.712370E+00,4.696632E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +907683,fr,1,3.550000E+00,-1.712370E+00,4.696632E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799832E+01,0.000000E+00 +907684,fr,1,3.550000E+00,-1.712370E+00,4.696632E+01,1.500000E+01,Active Shallow Crust,2.400121E+02,5.799832E+01,0.000000E+00 +907686,fr,2,3.550000E+00,-1.712370E+00,4.696632E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,-9.000000E+01 +907688,fr,1,3.550000E+00,-1.712370E+00,4.696632E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,-9.000000E+01 +907689,fr,1,3.550000E+00,-1.712370E+00,4.696632E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999398E+01,0.000000E+00 +907692,fr,1,3.650000E+00,-1.712370E+00,4.696632E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +907695,fr,1,3.650000E+00,-1.712370E+00,4.696632E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801281E+01,0.000000E+00 +907696,fr,1,3.650000E+00,-1.712370E+00,4.696632E+01,1.500000E+01,Active Shallow Crust,2.400012E+02,5.801281E+01,0.000000E+00 +907699,fr,1,3.650000E+00,-1.712370E+00,4.696632E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999069E+01,-9.000000E+01 +907701,fr,1,3.650000E+00,-1.712370E+00,4.696632E+01,5.000000E+00,Active Shallow Crust,1.289000E+02,8.996353E+01,0.000000E+00 +907705,fr,1,3.750000E+00,-1.712370E+00,4.696632E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +907716,fr,1,3.850000E+00,-1.712370E+00,4.696632E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +907722,fr,1,3.850000E+00,-1.712370E+00,4.696632E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +907728,fr,1,3.950000E+00,-1.712370E+00,4.696632E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +907729,fr,1,3.950000E+00,-1.712370E+00,4.696632E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +907740,fr,2,4.050000E+00,-1.712370E+00,4.696632E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +907741,fr,1,4.050000E+00,-1.712370E+00,4.696632E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +907746,fr,1,4.050000E+00,-1.712370E+00,4.696632E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,-9.000000E+01 +907749,fr,1,4.050000E+00,-1.712370E+00,4.696632E+01,5.000000E+00,Active Shallow Crust,1.288903E+02,8.999371E+01,0.000000E+00 +907761,fr,1,4.150000E+00,-1.712370E+00,4.696632E+01,5.000000E+00,Active Shallow Crust,1.288975E+02,8.999353E+01,0.000000E+00 +907772,fr,1,4.250000E+00,-1.712370E+00,4.696632E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,-9.000000E+01 +907782,fr,1,4.350000E+00,-1.712370E+00,4.696632E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,-9.000000E+01 +907790,fr,1,4.450000E+00,-1.712370E+00,4.696632E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +907809,fr,1,4.550000E+00,-1.712370E+00,4.696632E+01,5.000000E+00,Active Shallow Crust,1.288937E+02,8.998579E+01,0.000000E+00 +908064,fr,1,6.750000E+00,-1.712354E+00,4.696632E+01,1.199416E+01,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +908160,fr,1,3.550000E+00,5.347920E+00,4.321239E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999265E+01,0.000000E+00 +908163,fr,1,3.550000E+00,5.347920E+00,4.321239E+01,5.000000E+00,Active Shallow Crust,2.400126E+02,5.799699E+01,0.000000E+00 +908169,fr,1,3.550000E+00,5.347920E+00,4.321239E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999265E+01,0.000000E+00 +908172,fr,1,3.650000E+00,5.347920E+00,4.321239E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998690E+01,0.000000E+00 +908179,fr,1,3.650000E+00,5.347920E+00,4.321239E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998675E+01,-9.000000E+01 +908196,fr,1,3.850000E+00,5.347920E+00,4.321239E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +908211,fr,1,3.950000E+00,5.347920E+00,4.321239E+01,5.000000E+00,Active Shallow Crust,2.400198E+02,5.800535E+01,0.000000E+00 +908216,fr,1,3.950000E+00,5.347920E+00,4.321239E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,-9.000000E+01 +908220,fr,1,4.050000E+00,5.347920E+00,4.321239E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999174E+01,0.000000E+00 +908226,fr,1,4.050000E+00,5.347920E+00,4.321239E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999164E+01,-9.000000E+01 +908646,fr,1,3.550000E+00,8.006810E+00,4.499191E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998557E+01,-9.000000E+01 +908652,fr,2,3.650000E+00,8.006810E+00,4.499191E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998729E+01,0.000000E+00 +908655,fr,1,3.650000E+00,8.006810E+00,4.499191E+01,5.000000E+00,Active Shallow Crust,2.400005E+02,5.801152E+01,0.000000E+00 +908677,fr,1,3.850000E+00,8.006810E+00,4.499191E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +908679,fr,1,3.850000E+00,8.006810E+00,4.499191E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799756E+01,0.000000E+00 +908686,fr,1,3.850000E+00,8.006810E+00,4.499191E+01,1.500000E+01,Active Shallow Crust,1.288943E+02,8.999495E+01,0.000000E+00 +908689,fr,1,3.950000E+00,8.006810E+00,4.499191E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +908700,fr,1,4.050000E+00,8.006810E+00,4.499191E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999198E+01,0.000000E+00 +908730,fr,1,4.250000E+00,8.006810E+00,4.499191E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998711E+01,-9.000000E+01 +908764,fr,1,4.550000E+00,8.006810E+00,4.499191E+01,1.500000E+01,Active Shallow Crust,2.400090E+02,5.799736E+01,0.000000E+00 +909120,fr,1,3.550000E+00,5.475290E+00,4.376226E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999271E+01,0.000000E+00 +909126,fr,1,3.550000E+00,5.475290E+00,4.376226E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999263E+01,-9.000000E+01 +909132,fr,4,3.650000E+00,5.475290E+00,4.376226E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998701E+01,0.000000E+00 +909146,fr,1,3.750000E+00,5.475290E+00,4.376226E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +909156,fr,2,3.850000E+00,5.475290E+00,4.376226E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +909157,fr,2,3.850000E+00,5.475290E+00,4.376226E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +909169,fr,2,3.950000E+00,5.475290E+00,4.376226E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +909180,fr,2,4.050000E+00,5.475290E+00,4.376226E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999181E+01,0.000000E+00 +909181,fr,1,4.050000E+00,5.475290E+00,4.376226E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999181E+01,0.000000E+00 +909191,fr,1,4.050000E+00,5.475290E+00,4.376226E+01,2.750000E+01,Active Shallow Crust,1.288918E+02,8.999386E+01,0.000000E+00 +909193,fr,2,4.150000E+00,5.475290E+00,4.376226E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998905E+01,0.000000E+00 +909205,fr,1,4.250000E+00,5.475290E+00,4.376226E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +909218,fr,1,4.350000E+00,5.475290E+00,4.376226E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999130E+01,0.000000E+00 +909224,fr,1,4.350000E+00,5.475290E+00,4.376226E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999120E+01,-9.000000E+01 +909241,fr,1,4.550000E+00,5.475290E+00,4.376226E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +909279,fr,1,4.850000E+00,5.475290E+00,4.376226E+01,5.000000E+00,Active Shallow Crust,2.400161E+02,5.800232E+01,0.000000E+00 +909312,fr,1,5.150000E+00,5.475290E+00,4.376226E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +909457,fr,1,6.350000E+00,5.475290E+00,4.376226E+01,1.500000E+01,Active Shallow Crust,3.599998E+02,8.999014E+01,0.000000E+00 +909606,fr,1,3.550000E+00,3.741040E+00,4.575623E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,-9.000000E+01 +909612,fr,1,3.650000E+00,3.741040E+00,4.575623E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +909624,fr,1,3.750000E+00,3.741040E+00,4.575623E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +909625,fr,1,3.750000E+00,3.741040E+00,4.575623E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +909635,fr,1,3.750000E+00,3.741040E+00,4.575623E+01,2.750000E+01,Active Shallow Crust,1.288961E+02,8.996748E+01,0.000000E+00 +909661,fr,1,4.050000E+00,3.741040E+00,4.575623E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +909663,fr,1,4.050000E+00,3.741040E+00,4.575623E+01,5.000000E+00,Active Shallow Crust,2.400059E+02,5.800564E+01,0.000000E+00 +909709,fr,1,4.450000E+00,3.741040E+00,4.575623E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +910102,fr,1,3.650000E+00,4.415590E+00,4.624356E+01,1.500000E+01,Active Shallow Crust,1.288996E+02,8.996352E+01,0.000000E+00 +910105,fr,1,3.750000E+00,4.415590E+00,4.624356E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998892E+01,0.000000E+00 +910117,fr,1,3.850000E+00,4.415590E+00,4.624356E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +910128,fr,1,3.950000E+00,4.415590E+00,4.624356E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +910129,fr,1,3.950000E+00,4.415590E+00,4.624356E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +910158,fr,1,4.150000E+00,4.415590E+00,4.624356E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,-9.000000E+01 +910176,fr,1,4.350000E+00,4.415590E+00,4.624356E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998889E+01,0.000000E+00 +910201,fr,1,4.550000E+00,4.415590E+00,4.624356E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +910232,fr,1,4.750000E+00,4.415590E+00,4.624356E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,-9.000000E+01 +910561,fr,1,3.550000E+00,-9.454000E-02,4.357159E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +910576,fr,1,3.650000E+00,-9.454000E-02,4.357159E+01,1.500000E+01,Active Shallow Crust,2.400008E+02,5.801284E+01,0.000000E+00 +910578,fr,1,3.650000E+00,-9.454000E-02,4.357159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +910584,fr,2,3.750000E+00,-9.454000E-02,4.357159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +910593,fr,1,3.750000E+00,-9.454000E-02,4.357159E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996735E+01,0.000000E+00 +910597,fr,1,3.850000E+00,-9.454000E-02,4.357159E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +910599,fr,1,3.850000E+00,-9.454000E-02,4.357159E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799775E+01,0.000000E+00 +910608,fr,1,3.950000E+00,-9.454000E-02,4.357159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +910644,fr,1,4.250000E+00,-9.454000E-02,4.357159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +911520,fr,10,3.550000E+00,7.568050E+00,4.741973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999318E+01,0.000000E+00 +911521,fr,6,3.550000E+00,7.568050E+00,4.741973E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999318E+01,0.000000E+00 +911522,fr,5,3.550000E+00,7.568050E+00,4.741973E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999318E+01,0.000000E+00 +911523,fr,3,3.550000E+00,7.568050E+00,4.741973E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799812E+01,0.000000E+00 +911526,fr,2,3.550000E+00,7.568050E+00,4.741973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999310E+01,-9.000000E+01 +911527,fr,1,3.550000E+00,7.568050E+00,4.741973E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999310E+01,-9.000000E+01 +911529,fr,1,3.550000E+00,7.568050E+00,4.741973E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999318E+01,0.000000E+00 +911530,fr,1,3.550000E+00,7.568050E+00,4.741973E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.999318E+01,0.000000E+00 +911532,fr,13,3.650000E+00,7.568050E+00,4.741973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998784E+01,0.000000E+00 +911533,fr,6,3.650000E+00,7.568050E+00,4.741973E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998784E+01,0.000000E+00 +911534,fr,1,3.650000E+00,7.568050E+00,4.741973E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998784E+01,0.000000E+00 +911535,fr,1,3.650000E+00,7.568050E+00,4.741973E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801279E+01,0.000000E+00 +911536,fr,2,3.650000E+00,7.568050E+00,4.741973E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801279E+01,0.000000E+00 +911538,fr,4,3.650000E+00,7.568050E+00,4.741973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998769E+01,-9.000000E+01 +911541,fr,1,3.650000E+00,7.568050E+00,4.741973E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.996354E+01,0.000000E+00 +911542,fr,1,3.650000E+00,7.568050E+00,4.741973E+01,1.500000E+01,Active Shallow Crust,1.289005E+02,8.996354E+01,0.000000E+00 +911543,fr,1,3.650000E+00,7.568050E+00,4.741973E+01,2.750000E+01,Active Shallow Crust,1.289005E+02,8.996354E+01,0.000000E+00 +911544,fr,8,3.750000E+00,7.568050E+00,4.741973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +911545,fr,5,3.750000E+00,7.568050E+00,4.741973E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +911546,fr,1,3.750000E+00,7.568050E+00,4.741973E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +911547,fr,5,3.750000E+00,7.568050E+00,4.741973E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801770E+01,0.000000E+00 +911549,fr,3,3.750000E+00,7.568050E+00,4.741973E+01,2.750000E+01,Active Shallow Crust,2.400080E+02,5.801770E+01,0.000000E+00 +911550,fr,1,3.750000E+00,7.568050E+00,4.741973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,-9.000000E+01 +911553,fr,2,3.750000E+00,7.568050E+00,4.741973E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.996751E+01,0.000000E+00 +911554,fr,1,3.750000E+00,7.568050E+00,4.741973E+01,1.500000E+01,Active Shallow Crust,1.288958E+02,8.996751E+01,0.000000E+00 +911556,fr,8,3.850000E+00,7.568050E+00,4.741973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +911557,fr,3,3.850000E+00,7.568050E+00,4.741973E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +911558,fr,2,3.850000E+00,7.568050E+00,4.741973E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +911559,fr,1,3.850000E+00,7.568050E+00,4.741973E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799844E+01,0.000000E+00 +911560,fr,2,3.850000E+00,7.568050E+00,4.741973E+01,1.500000E+01,Active Shallow Crust,2.400114E+02,5.799844E+01,0.000000E+00 +911568,fr,2,3.950000E+00,7.568050E+00,4.741973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999139E+01,0.000000E+00 +911569,fr,2,3.950000E+00,7.568050E+00,4.741973E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999139E+01,0.000000E+00 +911571,fr,2,3.950000E+00,7.568050E+00,4.741973E+01,5.000000E+00,Active Shallow Crust,2.400194E+02,5.800545E+01,0.000000E+00 +911580,fr,6,4.050000E+00,7.568050E+00,4.741973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998849E+01,0.000000E+00 +911581,fr,1,4.050000E+00,7.568050E+00,4.741973E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998849E+01,0.000000E+00 +911582,fr,1,4.050000E+00,7.568050E+00,4.741973E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998849E+01,0.000000E+00 +911583,fr,1,4.050000E+00,7.568050E+00,4.741973E+01,5.000000E+00,Active Shallow Crust,2.400059E+02,5.800582E+01,0.000000E+00 +911584,fr,1,4.050000E+00,7.568050E+00,4.741973E+01,1.500000E+01,Active Shallow Crust,2.400059E+02,5.800579E+01,0.000000E+00 +911586,fr,1,4.050000E+00,7.568050E+00,4.741973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998836E+01,-9.000000E+01 +911589,fr,1,4.050000E+00,7.568050E+00,4.741973E+01,5.000000E+00,Active Shallow Crust,1.288906E+02,8.999425E+01,0.000000E+00 +911592,fr,1,4.150000E+00,7.568050E+00,4.741973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +911595,fr,1,4.150000E+00,7.568050E+00,4.741973E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799689E+01,0.000000E+00 +911601,fr,1,4.150000E+00,7.568050E+00,4.741973E+01,5.000000E+00,Active Shallow Crust,1.288978E+02,8.999316E+01,0.000000E+00 +911604,fr,5,4.250000E+00,7.568050E+00,4.741973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +911605,fr,3,4.250000E+00,7.568050E+00,4.741973E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +911607,fr,1,4.250000E+00,7.568050E+00,4.741973E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799449E+01,0.000000E+00 +911609,fr,1,4.250000E+00,7.568050E+00,4.741973E+01,2.750000E+01,Active Shallow Crust,2.400076E+02,5.799449E+01,0.000000E+00 +911610,fr,2,4.250000E+00,7.568050E+00,4.741973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,-9.000000E+01 +911613,fr,2,4.250000E+00,7.568050E+00,4.741973E+01,5.000000E+00,Active Shallow Crust,1.288948E+02,8.998098E+01,0.000000E+00 +911616,fr,5,4.350000E+00,7.568050E+00,4.741973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +911617,fr,3,4.350000E+00,7.568050E+00,4.741973E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +911628,fr,4,4.450000E+00,7.568050E+00,4.741973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +911640,fr,2,4.550000E+00,7.568050E+00,4.741973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +911641,fr,1,4.550000E+00,7.568050E+00,4.741973E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +911652,fr,1,4.650000E+00,7.568050E+00,4.741973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +911659,fr,1,4.650000E+00,7.568050E+00,4.741973E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,-9.000000E+01 +911664,fr,1,4.750000E+00,7.568050E+00,4.741973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +911665,fr,1,4.750000E+00,7.568050E+00,4.741973E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +911676,fr,1,4.850000E+00,7.568050E+00,4.741973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +911679,fr,1,4.850000E+00,7.568050E+00,4.741973E+01,5.000000E+00,Active Shallow Crust,2.400176E+02,5.800229E+01,0.000000E+00 +911685,fr,1,4.850000E+00,7.568050E+00,4.741973E+01,5.000000E+00,Active Shallow Crust,1.288926E+02,8.998866E+01,0.000000E+00 +911688,fr,2,4.950000E+00,7.568050E+00,4.741973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +911690,fr,1,4.950000E+00,7.568050E+00,4.741973E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +911725,fr,1,5.250000E+00,7.568050E+00,4.741973E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +911734,fr,1,5.250000E+00,7.568050E+00,4.741973E+01,1.500000E+01,Active Shallow Crust,1.288829E+02,8.998700E+01,0.000000E+00 +911760,fr,1,5.550000E+00,7.568050E+00,4.741973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +911777,fr,1,5.650000E+00,7.568050E+00,4.741973E+01,2.750000E+01,Active Shallow Crust,2.400382E+02,5.799945E+01,0.000000E+00 +911806,fr,1,5.850000E+00,7.568050E+00,4.741973E+01,1.500000E+01,Active Shallow Crust,1.288664E+02,8.999152E+01,0.000000E+00 +911841,fr,1,6.150000E+00,7.568048E+00,4.741973E+01,6.011322E+00,Active Shallow Crust,1.288546E+02,8.998984E+01,0.000000E+00 +912122,fr,1,4.550000E+00,5.103800E+00,4.864169E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +912289,fr,1,5.950000E+00,5.103800E+00,4.864169E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +912480,fr,3,3.550000E+00,1.988700E+00,4.218476E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +912481,fr,1,3.550000E+00,1.988700E+00,4.218476E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +912486,fr,1,3.550000E+00,1.988700E+00,4.218476E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,-9.000000E+01 +912492,fr,2,3.650000E+00,1.988700E+00,4.218476E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +912495,fr,2,3.650000E+00,1.988700E+00,4.218476E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801285E+01,0.000000E+00 +912504,fr,1,3.750000E+00,1.988700E+00,4.218476E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +912510,fr,1,3.750000E+00,1.988700E+00,4.218476E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,-9.000000E+01 +912516,fr,2,3.850000E+00,1.988700E+00,4.218476E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +912517,fr,1,3.850000E+00,1.988700E+00,4.218476E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +912519,fr,1,3.850000E+00,1.988700E+00,4.218476E+01,5.000000E+00,Active Shallow Crust,2.400101E+02,5.799767E+01,0.000000E+00 +912528,fr,1,3.950000E+00,1.988700E+00,4.218476E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +912541,fr,1,4.050000E+00,1.988700E+00,4.218476E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +912552,fr,1,4.150000E+00,1.988700E+00,4.218476E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +912555,fr,1,4.150000E+00,1.988700E+00,4.218476E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799726E+01,0.000000E+00 +912562,fr,1,4.150000E+00,1.988700E+00,4.218476E+01,1.500000E+01,Active Shallow Crust,1.288983E+02,8.999391E+01,0.000000E+00 +912564,fr,1,4.250000E+00,1.988700E+00,4.218476E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +912571,fr,1,4.250000E+00,1.988700E+00,4.218476E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,-9.000000E+01 +912577,fr,1,4.350000E+00,1.988700E+00,4.218476E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +912673,fr,1,5.150000E+00,1.988700E+00,4.218476E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +912961,fr,2,3.550000E+00,2.012530E+00,4.151840E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998868E+01,0.000000E+00 +912967,fr,1,3.550000E+00,2.012530E+00,4.151840E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998854E+01,-9.000000E+01 +912972,fr,2,3.650000E+00,2.012530E+00,4.151840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +912973,fr,1,3.650000E+00,2.012530E+00,4.151840E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +912975,fr,1,3.650000E+00,2.012530E+00,4.151840E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801284E+01,0.000000E+00 +912984,fr,1,3.750000E+00,2.012530E+00,4.151840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +912985,fr,1,3.750000E+00,2.012530E+00,4.151840E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +912994,fr,1,3.750000E+00,2.012530E+00,4.151840E+01,1.500000E+01,Active Shallow Crust,1.288972E+02,8.996741E+01,0.000000E+00 +912996,fr,1,3.850000E+00,2.012530E+00,4.151840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +912997,fr,1,3.850000E+00,2.012530E+00,4.151840E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +913008,fr,1,3.950000E+00,2.012530E+00,4.151840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +913032,fr,1,4.150000E+00,2.012530E+00,4.151840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +913038,fr,1,4.150000E+00,2.012530E+00,4.151840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,-9.000000E+01 +913044,fr,1,4.250000E+00,2.012530E+00,4.151840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +913059,fr,1,4.350000E+00,2.012530E+00,4.151840E+01,5.000000E+00,Active Shallow Crust,2.400071E+02,5.799580E+01,0.000000E+00 +913117,fr,1,4.850000E+00,2.012530E+00,4.151840E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +913119,fr,1,4.850000E+00,2.012530E+00,4.151840E+01,5.000000E+00,Active Shallow Crust,2.400151E+02,5.800204E+01,0.000000E+00 +913138,fr,1,4.950000E+00,2.012530E+00,4.151840E+01,1.500000E+01,Active Shallow Crust,1.288917E+02,8.998983E+01,0.000000E+00 +913452,fr,1,3.650000E+00,7.685000E-02,4.125905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +913453,fr,1,3.650000E+00,7.685000E-02,4.125905E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +913524,fr,1,4.250000E+00,7.685000E-02,4.125905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +913562,fr,1,4.550000E+00,7.685000E-02,4.125905E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +913584,fr,1,4.750000E+00,7.685000E-02,4.125905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +913920,fr,6,3.550000E+00,7.233270E+00,4.503760E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999287E+01,0.000000E+00 +913921,fr,5,3.550000E+00,7.233270E+00,4.503760E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999287E+01,0.000000E+00 +913922,fr,3,3.550000E+00,7.233270E+00,4.503760E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999287E+01,0.000000E+00 +913923,fr,5,3.550000E+00,7.233270E+00,4.503760E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799803E+01,0.000000E+00 +913928,fr,1,3.550000E+00,7.233270E+00,4.503760E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999279E+01,-9.000000E+01 +913929,fr,1,3.550000E+00,7.233270E+00,4.503760E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999287E+01,0.000000E+00 +913932,fr,4,3.650000E+00,7.233270E+00,4.503760E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998730E+01,0.000000E+00 +913933,fr,2,3.650000E+00,7.233270E+00,4.503760E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998730E+01,0.000000E+00 +913935,fr,3,3.650000E+00,7.233270E+00,4.503760E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801262E+01,0.000000E+00 +913936,fr,1,3.650000E+00,7.233270E+00,4.503760E+01,1.500000E+01,Active Shallow Crust,2.400013E+02,5.801262E+01,0.000000E+00 +913938,fr,2,3.650000E+00,7.233270E+00,4.503760E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998715E+01,-9.000000E+01 +913939,fr,1,3.650000E+00,7.233270E+00,4.503760E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998715E+01,-9.000000E+01 +913941,fr,1,3.650000E+00,7.233270E+00,4.503760E+01,5.000000E+00,Active Shallow Crust,1.289006E+02,8.996349E+01,0.000000E+00 +913944,fr,6,3.750000E+00,7.233270E+00,4.503760E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998868E+01,0.000000E+00 +913945,fr,2,3.750000E+00,7.233270E+00,4.503760E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998868E+01,0.000000E+00 +913950,fr,1,3.750000E+00,7.233270E+00,4.503760E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998855E+01,-9.000000E+01 +913953,fr,3,3.750000E+00,7.233270E+00,4.503760E+01,5.000000E+00,Active Shallow Crust,1.288977E+02,8.996686E+01,0.000000E+00 +913955,fr,2,3.750000E+00,7.233270E+00,4.503760E+01,2.750000E+01,Active Shallow Crust,1.288977E+02,8.996686E+01,0.000000E+00 +913956,fr,3,3.850000E+00,7.233270E+00,4.503760E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +913957,fr,2,3.850000E+00,7.233270E+00,4.503760E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +913958,fr,1,3.850000E+00,7.233270E+00,4.503760E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +913959,fr,1,3.850000E+00,7.233270E+00,4.503760E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799842E+01,0.000000E+00 +913963,fr,1,3.850000E+00,7.233270E+00,4.503760E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,-9.000000E+01 +913964,fr,1,3.850000E+00,7.233270E+00,4.503760E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,-9.000000E+01 +913966,fr,1,3.850000E+00,7.233270E+00,4.503760E+01,1.500000E+01,Active Shallow Crust,1.288960E+02,8.999496E+01,0.000000E+00 +913968,fr,2,3.950000E+00,7.233270E+00,4.503760E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +913969,fr,1,3.950000E+00,7.233270E+00,4.503760E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +913971,fr,1,3.950000E+00,7.233270E+00,4.503760E+01,5.000000E+00,Active Shallow Crust,2.400204E+02,5.800487E+01,0.000000E+00 +913980,fr,2,4.050000E+00,7.233270E+00,4.503760E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999199E+01,0.000000E+00 +913986,fr,1,4.050000E+00,7.233270E+00,4.503760E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999189E+01,-9.000000E+01 +913989,fr,1,4.050000E+00,7.233270E+00,4.503760E+01,5.000000E+00,Active Shallow Crust,1.288916E+02,8.999399E+01,0.000000E+00 +913992,fr,2,4.150000E+00,7.233270E+00,4.503760E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +913993,fr,1,4.150000E+00,7.233270E+00,4.503760E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +913994,fr,1,4.150000E+00,7.233270E+00,4.503760E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +914000,fr,1,4.150000E+00,7.233270E+00,4.503760E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998916E+01,-9.000000E+01 +914001,fr,1,4.150000E+00,7.233270E+00,4.503760E+01,5.000000E+00,Active Shallow Crust,1.288982E+02,8.999286E+01,0.000000E+00 +914004,fr,3,4.250000E+00,7.233270E+00,4.503760E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +914008,fr,1,4.250000E+00,7.233270E+00,4.503760E+01,1.500000E+01,Active Shallow Crust,2.400073E+02,5.799367E+01,0.000000E+00 +914013,fr,1,4.250000E+00,7.233270E+00,4.503760E+01,5.000000E+00,Active Shallow Crust,1.288941E+02,8.998090E+01,0.000000E+00 +914019,fr,1,4.350000E+00,7.233270E+00,4.503760E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.799600E+01,0.000000E+00 +914025,fr,1,4.350000E+00,7.233270E+00,4.503760E+01,5.000000E+00,Active Shallow Crust,1.288985E+02,8.998244E+01,0.000000E+00 +914038,fr,2,4.450000E+00,7.233270E+00,4.503760E+01,1.500000E+01,Active Shallow Crust,1.288929E+02,8.999368E+01,0.000000E+00 +914040,fr,1,4.550000E+00,7.233270E+00,4.503760E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999098E+01,0.000000E+00 +914047,fr,1,4.550000E+00,7.233270E+00,4.503760E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,-9.000000E+01 +914064,fr,1,4.750000E+00,7.233270E+00,4.503760E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +914066,fr,1,4.750000E+00,7.233270E+00,4.503760E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +914078,fr,1,4.850000E+00,7.233270E+00,4.503760E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +914124,fr,1,5.250000E+00,7.233270E+00,4.503760E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +914197,fr,1,5.850000E+00,7.233270E+00,4.503760E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +914400,fr,2,3.550000E+00,-4.756300E-01,4.813885E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +914401,fr,1,3.550000E+00,-4.756300E-01,4.813885E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +914404,fr,1,3.550000E+00,-4.756300E-01,4.813885E+01,1.500000E+01,Active Shallow Crust,2.400123E+02,5.799818E+01,0.000000E+00 +914412,fr,2,3.650000E+00,-4.756300E-01,4.813885E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +914415,fr,1,3.650000E+00,-4.756300E-01,4.813885E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801293E+01,0.000000E+00 +914418,fr,1,3.650000E+00,-4.756300E-01,4.813885E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +914425,fr,1,3.750000E+00,-4.756300E-01,4.813885E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +914475,fr,1,4.150000E+00,-4.756300E-01,4.813885E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.799738E+01,0.000000E+00 +914478,fr,1,4.150000E+00,-4.756300E-01,4.813885E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +914481,fr,1,4.150000E+00,-4.756300E-01,4.813885E+01,5.000000E+00,Active Shallow Crust,1.288973E+02,8.999368E+01,0.000000E+00 +914496,fr,1,4.350000E+00,-4.756300E-01,4.813885E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +914506,fr,1,4.350000E+00,-4.756300E-01,4.813885E+01,1.500000E+01,Active Shallow Crust,1.288975E+02,8.998276E+01,0.000000E+00 +914640,fr,1,5.550000E+00,-4.756300E-01,4.813885E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +914880,fr,1,3.550000E+00,-3.149030E+00,4.900558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +914881,fr,1,3.550000E+00,-3.149030E+00,4.900558E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +914884,fr,1,3.550000E+00,-3.149030E+00,4.900558E+01,1.500000E+01,Active Shallow Crust,2.400118E+02,5.799812E+01,0.000000E+00 +914886,fr,1,3.550000E+00,-3.149030E+00,4.900558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +914887,fr,1,3.550000E+00,-3.149030E+00,4.900558E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +914892,fr,2,3.650000E+00,-3.149030E+00,4.900558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999116E+01,0.000000E+00 +914897,fr,1,3.650000E+00,-3.149030E+00,4.900558E+01,2.750000E+01,Active Shallow Crust,2.400014E+02,5.801281E+01,0.000000E+00 +914904,fr,1,3.750000E+00,-3.149030E+00,4.900558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +914916,fr,2,3.850000E+00,-3.149030E+00,4.900558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +914940,fr,1,4.050000E+00,-3.149030E+00,4.900558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +915375,fr,1,3.650000E+00,3.127960E+00,4.835468E+01,5.000000E+00,Active Shallow Crust,2.400015E+02,5.801274E+01,0.000000E+00 +915840,fr,1,3.550000E+00,4.787510E+00,5.034601E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998713E+01,0.000000E+00 +915841,fr,1,3.550000E+00,4.787510E+00,5.034601E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998713E+01,0.000000E+00 +915861,fr,1,3.650000E+00,4.787510E+00,5.034601E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.996304E+01,0.000000E+00 +915871,fr,1,3.750000E+00,4.787510E+00,5.034601E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +915886,fr,1,3.850000E+00,4.787510E+00,5.034601E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.999316E+01,0.000000E+00 +915889,fr,1,3.950000E+00,4.787510E+00,5.034601E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999188E+01,0.000000E+00 +915900,fr,1,4.050000E+00,4.787510E+00,5.034601E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +915901,fr,2,4.050000E+00,4.787510E+00,5.034601E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +915925,fr,1,4.250000E+00,4.787510E+00,5.034601E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999138E+01,0.000000E+00 +915966,fr,1,4.550000E+00,4.787510E+00,5.034601E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,-9.000000E+01 +915984,fr,1,4.750000E+00,4.787510E+00,5.034601E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +916035,fr,1,5.150000E+00,4.787510E+00,5.034601E+01,5.000000E+00,Active Shallow Crust,2.400220E+02,5.800038E+01,0.000000E+00 +916386,fr,1,4.050000E+00,2.865040E+00,4.858080E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999051E+01,-9.000000E+01 +916392,fr,1,4.150000E+00,2.865040E+00,4.858080E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +916800,fr,6,3.550000E+00,8.177270E+00,4.710025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998627E+01,0.000000E+00 +916801,fr,3,3.550000E+00,8.177270E+00,4.710025E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998627E+01,0.000000E+00 +916802,fr,1,3.550000E+00,8.177270E+00,4.710025E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998627E+01,0.000000E+00 +916807,fr,1,3.550000E+00,8.177270E+00,4.710025E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998611E+01,-9.000000E+01 +916809,fr,1,3.550000E+00,8.177270E+00,4.710025E+01,5.000000E+00,Active Shallow Crust,1.288973E+02,8.999313E+01,0.000000E+00 +916812,fr,6,3.650000E+00,8.177270E+00,4.710025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998776E+01,0.000000E+00 +916813,fr,4,3.650000E+00,8.177270E+00,4.710025E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998776E+01,0.000000E+00 +916814,fr,1,3.650000E+00,8.177270E+00,4.710025E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998776E+01,0.000000E+00 +916815,fr,1,3.650000E+00,8.177270E+00,4.710025E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801403E+01,0.000000E+00 +916816,fr,1,3.650000E+00,8.177270E+00,4.710025E+01,1.500000E+01,Active Shallow Crust,2.400013E+02,5.801403E+01,0.000000E+00 +916817,fr,1,3.650000E+00,8.177270E+00,4.710025E+01,2.750000E+01,Active Shallow Crust,2.400013E+02,5.801395E+01,0.000000E+00 +916818,fr,2,3.650000E+00,8.177270E+00,4.710025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998763E+01,-9.000000E+01 +916820,fr,1,3.650000E+00,8.177270E+00,4.710025E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998763E+01,-9.000000E+01 +916827,fr,1,3.750000E+00,8.177270E+00,4.710025E+01,5.000000E+00,Active Shallow Crust,2.400095E+02,5.801572E+01,0.000000E+00 +916831,fr,1,3.750000E+00,8.177270E+00,4.710025E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998897E+01,-9.000000E+01 +916833,fr,1,3.750000E+00,8.177270E+00,4.710025E+01,5.000000E+00,Active Shallow Crust,1.288942E+02,8.996750E+01,0.000000E+00 +916836,fr,3,3.850000E+00,8.177270E+00,4.710025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +916838,fr,1,3.850000E+00,8.177270E+00,4.710025E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +916851,fr,1,3.950000E+00,8.177270E+00,4.710025E+01,5.000000E+00,Active Shallow Crust,2.400201E+02,5.800506E+01,0.000000E+00 +916853,fr,1,3.950000E+00,8.177270E+00,4.710025E+01,2.750000E+01,Active Shallow Crust,2.400201E+02,5.800506E+01,0.000000E+00 +916860,fr,2,4.050000E+00,8.177270E+00,4.710025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999228E+01,0.000000E+00 +916862,fr,1,4.050000E+00,8.177270E+00,4.710025E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999228E+01,0.000000E+00 +916872,fr,1,4.150000E+00,8.177270E+00,4.710025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999312E+01,0.000000E+00 +916875,fr,2,4.150000E+00,8.177270E+00,4.710025E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799804E+01,0.000000E+00 +916884,fr,1,4.250000E+00,8.177270E+00,4.710025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998773E+01,0.000000E+00 +916887,fr,1,4.250000E+00,8.177270E+00,4.710025E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.799388E+01,0.000000E+00 +916894,fr,1,4.250000E+00,8.177270E+00,4.710025E+01,1.500000E+01,Active Shallow Crust,1.288948E+02,8.998097E+01,0.000000E+00 +916896,fr,1,4.350000E+00,8.177270E+00,4.710025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +916897,fr,1,4.350000E+00,8.177270E+00,4.710025E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +916899,fr,1,4.350000E+00,8.177270E+00,4.710025E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.799579E+01,0.000000E+00 +916908,fr,1,4.450000E+00,8.177270E+00,4.710025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +916909,fr,1,4.450000E+00,8.177270E+00,4.710025E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +916920,fr,1,4.550000E+00,8.177270E+00,4.710025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999132E+01,0.000000E+00 +916924,fr,1,4.550000E+00,8.177270E+00,4.710025E+01,1.500000E+01,Active Shallow Crust,2.400095E+02,5.799733E+01,0.000000E+00 +916938,fr,1,4.650000E+00,8.177270E+00,4.710025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998826E+01,-9.000000E+01 +916992,fr,1,5.150000E+00,8.177270E+00,4.710025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998912E+01,0.000000E+00 +917016,fr,1,5.350000E+00,8.177270E+00,4.710025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +917283,fr,1,3.550000E+00,2.489000E-01,4.387593E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799812E+01,0.000000E+00 +917340,fr,1,4.050000E+00,2.489000E-01,4.387593E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +917364,fr,1,4.250000E+00,2.489000E-01,4.387593E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +917390,fr,1,4.450000E+00,2.489000E-01,4.387593E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +917451,fr,1,4.950000E+00,2.489000E-01,4.387593E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.800424E+01,0.000000E+00 +917850,fr,1,4.250000E+00,1.666820E+00,5.242160E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,-9.000000E+01 +918240,fr,1,3.550000E+00,2.720700E+00,5.168038E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +918254,fr,1,3.650000E+00,2.720700E+00,5.168038E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +918349,fr,1,4.450000E+00,2.720700E+00,5.168038E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +918729,fr,1,3.550000E+00,1.491680E+00,4.586297E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999386E+01,0.000000E+00 +918734,fr,1,3.650000E+00,1.491680E+00,4.586297E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +918744,fr,1,3.750000E+00,1.491680E+00,4.586297E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +918747,fr,1,3.750000E+00,1.491680E+00,4.586297E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.801749E+01,0.000000E+00 +918750,fr,1,3.750000E+00,1.491680E+00,4.586297E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,-9.000000E+01 +918756,fr,2,3.850000E+00,1.491680E+00,4.586297E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +918757,fr,1,3.850000E+00,1.491680E+00,4.586297E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +918773,fr,1,3.950000E+00,1.491680E+00,4.586297E+01,2.750000E+01,Active Shallow Crust,2.400196E+02,5.800516E+01,0.000000E+00 +918782,fr,1,4.050000E+00,1.491680E+00,4.586297E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +918810,fr,1,4.250000E+00,1.491680E+00,4.586297E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +918816,fr,2,4.350000E+00,1.491680E+00,4.586297E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +918877,fr,1,4.850000E+00,1.491680E+00,4.586297E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +919224,fr,1,3.750000E+00,1.739660E+00,4.453811E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +919237,fr,1,3.850000E+00,1.739660E+00,4.453811E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +919251,fr,1,3.950000E+00,1.739660E+00,4.453811E+01,5.000000E+00,Active Shallow Crust,2.400195E+02,5.800493E+01,0.000000E+00 +919260,fr,1,4.050000E+00,1.739660E+00,4.453811E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +919261,fr,1,4.050000E+00,1.739660E+00,4.453811E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +919269,fr,1,4.050000E+00,1.739660E+00,4.453811E+01,5.000000E+00,Active Shallow Crust,1.288907E+02,8.999393E+01,0.000000E+00 +919272,fr,1,4.150000E+00,1.739660E+00,4.453811E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +919296,fr,2,4.350000E+00,1.739660E+00,4.453811E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +919681,fr,1,3.550000E+00,-3.510800E-01,4.382056E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +919683,fr,1,3.550000E+00,-3.510800E-01,4.382056E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799812E+01,0.000000E+00 +919705,fr,1,3.750000E+00,-3.510800E-01,4.382056E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +919729,fr,1,3.950000E+00,-3.510800E-01,4.382056E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +919862,fr,1,5.050000E+00,-3.510800E-01,4.382056E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +920199,fr,1,3.850000E+00,8.851800E+00,5.070904E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799787E+01,0.000000E+00 +920256,fr,1,4.350000E+00,8.851800E+00,5.070904E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +920653,fr,1,3.650000E+00,4.254590E+00,4.090948E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999321E+01,0.000000E+00 +920664,fr,1,3.750000E+00,4.254590E+00,4.090948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998789E+01,0.000000E+00 +920729,fr,1,4.250000E+00,4.254590E+00,4.090948E+01,2.750000E+01,Active Shallow Crust,2.400062E+02,5.799379E+01,0.000000E+00 +920734,fr,1,4.250000E+00,4.254590E+00,4.090948E+01,1.500000E+01,Active Shallow Crust,1.288952E+02,8.998074E+01,0.000000E+00 +921120,fr,1,3.550000E+00,3.698770E+00,5.055928E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +921121,fr,1,3.550000E+00,3.698770E+00,5.055928E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +921122,fr,1,3.550000E+00,3.698770E+00,5.055928E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +921123,fr,1,3.550000E+00,3.698770E+00,5.055928E+01,5.000000E+00,Active Shallow Crust,2.400128E+02,5.799827E+01,0.000000E+00 +921124,fr,1,3.550000E+00,3.698770E+00,5.055928E+01,1.500000E+01,Active Shallow Crust,2.400128E+02,5.799827E+01,0.000000E+00 +921129,fr,2,3.550000E+00,3.698770E+00,5.055928E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999359E+01,0.000000E+00 +921132,fr,3,3.650000E+00,3.698770E+00,5.055928E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998858E+01,0.000000E+00 +921135,fr,1,3.650000E+00,3.698770E+00,5.055928E+01,5.000000E+00,Active Shallow Crust,2.400021E+02,5.801273E+01,0.000000E+00 +921138,fr,1,3.650000E+00,3.698770E+00,5.055928E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999133E+01,-9.000000E+01 +921168,fr,2,3.950000E+00,3.698770E+00,5.055928E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +921174,fr,1,3.950000E+00,3.698770E+00,5.055928E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,-9.000000E+01 +921180,fr,1,4.050000E+00,3.698770E+00,5.055928E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998919E+01,0.000000E+00 +921186,fr,1,4.050000E+00,3.698770E+00,5.055928E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999089E+01,-9.000000E+01 +921193,fr,1,4.150000E+00,3.698770E+00,5.055928E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +921205,fr,1,4.250000E+00,3.698770E+00,5.055928E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +921331,fr,1,5.250000E+00,3.698770E+00,5.055928E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,-9.000000E+01 +921600,fr,1,3.550000E+00,5.178260E+00,4.089795E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999238E+01,0.000000E+00 +921618,fr,1,3.650000E+00,5.178260E+00,4.089795E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999313E+01,-9.000000E+01 +921648,fr,1,3.950000E+00,5.178260E+00,4.089795E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +922080,fr,2,3.550000E+00,8.148260E+00,5.063561E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998721E+01,0.000000E+00 +922091,fr,1,3.550000E+00,8.148260E+00,5.063561E+01,2.750000E+01,Active Shallow Crust,1.288967E+02,8.999361E+01,0.000000E+00 +922116,fr,1,3.850000E+00,8.148260E+00,5.063561E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +922129,fr,1,3.950000E+00,8.148260E+00,5.063561E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999193E+01,0.000000E+00 +922269,fr,1,5.050000E+00,8.148260E+00,5.063561E+01,5.000000E+00,Active Shallow Crust,1.288832E+02,8.999010E+01,0.000000E+00 +922581,fr,1,3.650000E+00,-1.145480E+00,4.415408E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.996348E+01,0.000000E+00 +922585,fr,1,3.750000E+00,-1.145480E+00,4.415408E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +922704,fr,1,4.750000E+00,-1.145480E+00,4.415408E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +923040,fr,1,3.550000E+00,-1.767280E+00,4.804274E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +923041,fr,1,3.550000E+00,-1.767280E+00,4.804274E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +923042,fr,1,3.550000E+00,-1.767280E+00,4.804274E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +923052,fr,1,3.650000E+00,-1.767280E+00,4.804274E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +923055,fr,2,3.650000E+00,-1.767280E+00,4.804274E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801291E+01,0.000000E+00 +923064,fr,3,3.750000E+00,-1.767280E+00,4.804274E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +923067,fr,1,3.750000E+00,-1.767280E+00,4.804274E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.801761E+01,0.000000E+00 +923076,fr,2,3.850000E+00,-1.767280E+00,4.804274E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +923079,fr,2,3.850000E+00,-1.767280E+00,4.804274E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799783E+01,0.000000E+00 +923089,fr,1,3.950000E+00,-1.767280E+00,4.804274E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +923102,fr,1,4.050000E+00,-1.767280E+00,4.804274E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +923124,fr,1,4.250000E+00,-1.767280E+00,4.804274E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +923148,fr,1,4.450000E+00,-1.767280E+00,4.804274E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +923161,fr,1,4.550000E+00,-1.767280E+00,4.804274E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +923178,fr,1,4.650000E+00,-1.767280E+00,4.804274E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +923259,fr,1,5.350000E+00,-1.767280E+00,4.804274E+01,5.000000E+00,Active Shallow Crust,2.400262E+02,5.799802E+01,0.000000E+00 +923421,fr,1,6.650000E+00,-1.767288E+00,4.804273E+01,1.068981E+01,Active Shallow Crust,1.288166E+02,8.998986E+01,0.000000E+00 +924000,fr,1,3.550000E+00,-1.164160E+00,4.332778E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +924002,fr,1,3.550000E+00,-1.164160E+00,4.332778E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +924006,fr,2,3.550000E+00,-1.164160E+00,4.332778E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,-9.000000E+01 +924012,fr,3,3.650000E+00,-1.164160E+00,4.332778E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +924014,fr,1,3.650000E+00,-1.164160E+00,4.332778E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +924019,fr,1,3.650000E+00,-1.164160E+00,4.332778E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,-9.000000E+01 +924027,fr,1,3.750000E+00,-1.164160E+00,4.332778E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.801755E+01,0.000000E+00 +924032,fr,1,3.750000E+00,-1.164160E+00,4.332778E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +924036,fr,2,3.850000E+00,-1.164160E+00,4.332778E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +924048,fr,1,3.950000E+00,-1.164160E+00,4.332778E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +924049,fr,2,3.950000E+00,-1.164160E+00,4.332778E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +924057,fr,1,3.950000E+00,-1.164160E+00,4.332778E+01,5.000000E+00,Active Shallow Crust,1.289006E+02,8.999422E+01,0.000000E+00 +924060,fr,1,4.050000E+00,-1.164160E+00,4.332778E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +924069,fr,1,4.050000E+00,-1.164160E+00,4.332778E+01,5.000000E+00,Active Shallow Crust,1.288907E+02,8.999381E+01,0.000000E+00 +924108,fr,1,4.450000E+00,-1.164160E+00,4.332778E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +924109,fr,1,4.450000E+00,-1.164160E+00,4.332778E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +924132,fr,1,4.650000E+00,-1.164160E+00,4.332778E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +924204,fr,2,5.250000E+00,-1.164160E+00,4.332778E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +924210,fr,1,5.250000E+00,-1.164160E+00,4.332778E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +924960,fr,2,3.550000E+00,6.613280E+00,4.403791E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999275E+01,0.000000E+00 +924961,fr,2,3.550000E+00,6.613280E+00,4.403791E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999275E+01,0.000000E+00 +924966,fr,2,3.550000E+00,6.613280E+00,4.403791E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999267E+01,-9.000000E+01 +924972,fr,4,3.650000E+00,6.613280E+00,4.403791E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998708E+01,0.000000E+00 +924978,fr,1,3.650000E+00,6.613280E+00,4.403791E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998693E+01,-9.000000E+01 +924979,fr,1,3.650000E+00,6.613280E+00,4.403791E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998693E+01,-9.000000E+01 +924984,fr,2,3.750000E+00,6.613280E+00,4.403791E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998849E+01,0.000000E+00 +924988,fr,1,3.750000E+00,6.613280E+00,4.403791E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.801731E+01,0.000000E+00 +925008,fr,1,3.950000E+00,6.613280E+00,4.403791E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999085E+01,0.000000E+00 +925021,fr,1,4.050000E+00,6.613280E+00,4.403791E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999184E+01,0.000000E+00 +925027,fr,1,4.050000E+00,6.613280E+00,4.403791E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999175E+01,-9.000000E+01 +925059,fr,1,4.350000E+00,6.613280E+00,4.403791E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799588E+01,0.000000E+00 +925081,fr,1,4.550000E+00,6.613280E+00,4.403791E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +925110,fr,1,4.750000E+00,6.613280E+00,4.403791E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999079E+01,-9.000000E+01 +925128,fr,1,4.950000E+00,6.613280E+00,4.403791E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +925296,fr,1,6.350000E+00,6.613285E+00,4.403791E+01,7.567806E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +925378,fr,1,6.950000E+00,6.613280E+00,4.403791E+01,1.509976E+01,Active Shallow Crust,1.287974E+02,8.999041E+01,0.000000E+00 +925440,fr,3,3.550000E+00,-4.466400E-01,4.894013E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +925458,fr,1,3.650000E+00,-4.466400E-01,4.894013E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,-9.000000E+01 +925459,fr,1,3.650000E+00,-4.466400E-01,4.894013E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,-9.000000E+01 +925464,fr,3,3.750000E+00,-4.466400E-01,4.894013E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +925465,fr,1,3.750000E+00,-4.466400E-01,4.894013E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +925470,fr,1,3.750000E+00,-4.466400E-01,4.894013E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +925476,fr,1,3.850000E+00,-4.466400E-01,4.894013E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +925478,fr,1,3.850000E+00,-4.466400E-01,4.894013E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +925489,fr,1,3.950000E+00,-4.466400E-01,4.894013E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +925490,fr,1,3.950000E+00,-4.466400E-01,4.894013E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +925503,fr,1,4.050000E+00,-4.466400E-01,4.894013E+01,5.000000E+00,Active Shallow Crust,2.400064E+02,5.800592E+01,0.000000E+00 +925525,fr,1,4.250000E+00,-4.466400E-01,4.894013E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +925596,fr,1,4.850000E+00,-4.466400E-01,4.894013E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +925656,fr,1,5.350000E+00,-4.466400E-01,4.894013E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +925727,fr,1,5.850000E+00,-4.466400E-01,4.894013E+01,2.750000E+01,Active Shallow Crust,1.288646E+02,8.999151E+01,0.000000E+00 +925920,fr,1,3.550000E+00,7.721800E+00,4.548752E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999293E+01,0.000000E+00 +925921,fr,2,3.550000E+00,7.721800E+00,4.548752E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999293E+01,0.000000E+00 +925931,fr,1,3.550000E+00,7.721800E+00,4.548752E+01,2.750000E+01,Active Shallow Crust,1.288973E+02,8.999293E+01,0.000000E+00 +925948,fr,1,3.750000E+00,7.721800E+00,4.548752E+01,1.500000E+01,Active Shallow Crust,2.400083E+02,5.801731E+01,0.000000E+00 +925950,fr,1,3.750000E+00,7.721800E+00,4.548752E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998864E+01,-9.000000E+01 +925956,fr,1,3.850000E+00,7.721800E+00,4.548752E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +925968,fr,1,3.950000E+00,7.721800E+00,4.548752E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999108E+01,0.000000E+00 +925971,fr,1,3.950000E+00,7.721800E+00,4.548752E+01,5.000000E+00,Active Shallow Crust,2.400198E+02,5.800556E+01,0.000000E+00 +925980,fr,3,4.050000E+00,7.721800E+00,4.548752E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +925991,fr,1,4.050000E+00,7.721800E+00,4.548752E+01,2.750000E+01,Active Shallow Crust,1.288904E+02,8.999403E+01,0.000000E+00 +926004,fr,1,4.250000E+00,7.721800E+00,4.548752E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +926012,fr,1,4.250000E+00,7.721800E+00,4.548752E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999042E+01,-9.000000E+01 +926016,fr,1,4.350000E+00,7.721800E+00,4.548752E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998874E+01,0.000000E+00 +926019,fr,1,4.350000E+00,7.721800E+00,4.548752E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799610E+01,0.000000E+00 +926022,fr,1,4.350000E+00,7.721800E+00,4.548752E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998861E+01,-9.000000E+01 +926037,fr,1,4.450000E+00,7.721800E+00,4.548752E+01,5.000000E+00,Active Shallow Crust,1.288917E+02,8.999373E+01,0.000000E+00 +926077,fr,1,4.850000E+00,7.721800E+00,4.548752E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +926443,fr,1,3.850000E+00,3.175820E+00,4.644779E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,-9.000000E+01 +926448,fr,1,3.950000E+00,3.175820E+00,4.644779E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +926906,fr,1,3.750000E+00,3.866590E+00,5.144508E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +926966,fr,1,4.250000E+00,3.866590E+00,5.144508E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +927840,fr,5,3.550000E+00,-1.503120E+00,4.301561E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +927841,fr,2,3.550000E+00,-1.503120E+00,4.301561E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +927842,fr,1,3.550000E+00,-1.503120E+00,4.301561E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +927846,fr,1,3.550000E+00,-1.503120E+00,4.301561E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,-9.000000E+01 +927852,fr,4,3.650000E+00,-1.503120E+00,4.301561E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +927853,fr,1,3.650000E+00,-1.503120E+00,4.301561E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +927859,fr,1,3.650000E+00,-1.503120E+00,4.301561E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +927864,fr,4,3.750000E+00,-1.503120E+00,4.301561E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +927865,fr,1,3.750000E+00,-1.503120E+00,4.301561E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +927867,fr,1,3.750000E+00,-1.503120E+00,4.301561E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.801778E+01,0.000000E+00 +927876,fr,1,3.850000E+00,-1.503120E+00,4.301561E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +927877,fr,1,3.850000E+00,-1.503120E+00,4.301561E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +927879,fr,1,3.850000E+00,-1.503120E+00,4.301561E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.799773E+01,0.000000E+00 +927888,fr,4,3.950000E+00,-1.503120E+00,4.301561E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +927889,fr,1,3.950000E+00,-1.503120E+00,4.301561E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +927890,fr,1,3.950000E+00,-1.503120E+00,4.301561E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +927901,fr,1,4.050000E+00,-1.503120E+00,4.301561E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +927903,fr,1,4.050000E+00,-1.503120E+00,4.301561E+01,5.000000E+00,Active Shallow Crust,2.400056E+02,5.800572E+01,0.000000E+00 +927906,fr,1,4.050000E+00,-1.503120E+00,4.301561E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,-9.000000E+01 +927910,fr,1,4.050000E+00,-1.503120E+00,4.301561E+01,1.500000E+01,Active Shallow Crust,1.288911E+02,8.999378E+01,0.000000E+00 +927912,fr,2,4.150000E+00,-1.503120E+00,4.301561E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +927924,fr,1,4.250000E+00,-1.503120E+00,4.301561E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +927936,fr,1,4.350000E+00,-1.503120E+00,4.301561E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +927973,fr,1,4.650000E+00,-1.503120E+00,4.301561E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +927975,fr,1,4.650000E+00,-1.503120E+00,4.301561E+01,5.000000E+00,Active Shallow Crust,2.400097E+02,5.799411E+01,0.000000E+00 +927996,fr,1,4.850000E+00,-1.503120E+00,4.301561E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +928050,fr,1,5.250000E+00,-1.503120E+00,4.301561E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +928188,fr,1,6.450000E+00,-1.503112E+00,4.301561E+01,8.491219E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +928212,fr,1,6.650000E+00,-1.503108E+00,4.301561E+01,1.068981E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +928329,fr,1,3.550000E+00,5.458860E+00,4.856305E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999332E+01,0.000000E+00 +928344,fr,1,3.750000E+00,5.458860E+00,4.856305E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +928356,fr,1,3.850000E+00,5.458860E+00,4.856305E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +928357,fr,1,3.850000E+00,5.458860E+00,4.856305E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +928810,fr,1,3.550000E+00,8.299980E+00,4.788479E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.999324E+01,0.000000E+00 +928824,fr,2,3.750000E+00,8.299980E+00,4.788479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +928825,fr,2,3.750000E+00,8.299980E+00,4.788479E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +928828,fr,1,3.750000E+00,8.299980E+00,4.788479E+01,1.500000E+01,Active Shallow Crust,2.400097E+02,5.801783E+01,0.000000E+00 +928842,fr,1,3.850000E+00,8.299980E+00,4.788479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,-9.000000E+01 +928848,fr,1,3.950000E+00,8.299980E+00,4.788479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999146E+01,0.000000E+00 +928849,fr,1,3.950000E+00,8.299980E+00,4.788479E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999146E+01,0.000000E+00 +928851,fr,2,3.950000E+00,8.299980E+00,4.788479E+01,5.000000E+00,Active Shallow Crust,2.400192E+02,5.800462E+01,0.000000E+00 +928912,fr,1,4.450000E+00,8.299980E+00,4.788479E+01,1.500000E+01,Active Shallow Crust,2.400058E+02,5.799509E+01,0.000000E+00 +929280,fr,1,3.550000E+00,3.443350E+00,4.789654E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +929304,fr,1,3.750000E+00,3.443350E+00,4.789654E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +929388,fr,1,4.450000E+00,3.443350E+00,4.789654E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +929772,fr,1,3.650000E+00,2.355680E+00,4.567144E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +929773,fr,2,3.650000E+00,2.355680E+00,4.567144E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +929787,fr,2,3.750000E+00,2.355680E+00,4.567144E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801760E+01,0.000000E+00 +929789,fr,1,3.750000E+00,2.355680E+00,4.567144E+01,2.750000E+01,Active Shallow Crust,2.400083E+02,5.801760E+01,0.000000E+00 +929790,fr,1,3.750000E+00,2.355680E+00,4.567144E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998868E+01,-9.000000E+01 +929820,fr,2,4.050000E+00,2.355680E+00,4.567144E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +929835,fr,1,4.150000E+00,2.355680E+00,4.567144E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.799729E+01,0.000000E+00 +929844,fr,1,4.250000E+00,2.355680E+00,4.567144E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +929917,fr,1,4.850000E+00,2.355680E+00,4.567144E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +929940,fr,1,5.050000E+00,2.355680E+00,4.567144E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +930264,fr,1,3.750000E+00,-7.769100E-01,4.528196E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +930288,fr,1,3.950000E+00,-7.769100E-01,4.528196E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +930406,fr,1,4.850000E+00,-7.769100E-01,4.528196E+01,1.500000E+01,Active Shallow Crust,1.288930E+02,8.998901E+01,0.000000E+00 +930720,fr,3,3.550000E+00,5.892660E+00,5.135193E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998740E+01,0.000000E+00 +930721,fr,1,3.550000E+00,5.892660E+00,5.135193E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998740E+01,0.000000E+00 +930732,fr,2,3.650000E+00,5.892660E+00,5.135193E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +930735,fr,1,3.650000E+00,5.892660E+00,5.135193E+01,5.000000E+00,Active Shallow Crust,2.400029E+02,5.801213E+01,0.000000E+00 +930745,fr,2,3.750000E+00,5.892660E+00,5.135193E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +930748,fr,1,3.750000E+00,5.892660E+00,5.135193E+01,1.500000E+01,Active Shallow Crust,2.400083E+02,5.801796E+01,0.000000E+00 +930754,fr,1,3.750000E+00,5.892660E+00,5.135193E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.996709E+01,0.000000E+00 +930758,fr,1,3.850000E+00,5.892660E+00,5.135193E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999108E+01,0.000000E+00 +930768,fr,2,3.950000E+00,5.892660E+00,5.135193E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +930775,fr,1,3.950000E+00,5.892660E+00,5.135193E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999196E+01,-9.000000E+01 +930780,fr,1,4.050000E+00,5.892660E+00,5.135193E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +930837,fr,1,4.450000E+00,5.892660E+00,5.135193E+01,5.000000E+00,Active Shallow Crust,1.288910E+02,8.999329E+01,0.000000E+00 +931200,fr,4,3.550000E+00,6.167630E+00,5.114247E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998735E+01,0.000000E+00 +931202,fr,1,3.550000E+00,6.167630E+00,5.114247E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998735E+01,0.000000E+00 +931203,fr,1,3.550000E+00,6.167630E+00,5.114247E+01,5.000000E+00,Active Shallow Crust,2.400115E+02,5.799845E+01,0.000000E+00 +931210,fr,1,3.550000E+00,6.167630E+00,5.114247E+01,1.500000E+01,Active Shallow Crust,1.288957E+02,8.999368E+01,0.000000E+00 +931212,fr,1,3.650000E+00,6.167630E+00,5.114247E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +931215,fr,1,3.650000E+00,6.167630E+00,5.114247E+01,5.000000E+00,Active Shallow Crust,2.400019E+02,5.801263E+01,0.000000E+00 +931217,fr,1,3.650000E+00,6.167630E+00,5.114247E+01,2.750000E+01,Active Shallow Crust,2.400019E+02,5.801254E+01,0.000000E+00 +931218,fr,1,3.650000E+00,6.167630E+00,5.114247E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,-9.000000E+01 +931225,fr,2,3.750000E+00,6.167630E+00,5.114247E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +931236,fr,2,3.850000E+00,6.167630E+00,5.114247E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +931245,fr,1,3.850000E+00,6.167630E+00,5.114247E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999329E+01,0.000000E+00 +931246,fr,1,3.850000E+00,6.167630E+00,5.114247E+01,1.500000E+01,Active Shallow Crust,1.288958E+02,8.999329E+01,0.000000E+00 +931248,fr,1,3.950000E+00,6.167630E+00,5.114247E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998802E+01,0.000000E+00 +931260,fr,1,4.050000E+00,6.167630E+00,5.114247E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +931263,fr,1,4.050000E+00,6.167630E+00,5.114247E+01,5.000000E+00,Active Shallow Crust,2.400068E+02,5.800662E+01,0.000000E+00 +931281,fr,1,4.150000E+00,6.167630E+00,5.114247E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999366E+01,0.000000E+00 +931284,fr,1,4.250000E+00,6.167630E+00,5.114247E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +931288,fr,1,4.250000E+00,6.167630E+00,5.114247E+01,1.500000E+01,Active Shallow Crust,2.400090E+02,5.799437E+01,0.000000E+00 +931344,fr,1,4.750000E+00,6.167630E+00,5.114247E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +931408,fr,1,5.250000E+00,6.167630E+00,5.114247E+01,1.500000E+01,Active Shallow Crust,2.400289E+02,5.800092E+01,0.000000E+00 +931566,fr,1,6.550000E+00,6.167641E+00,5.114247E+01,9.418245E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +931680,fr,19,3.550000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999304E+01,0.000000E+00 +931681,fr,8,3.550000E+00,7.270430E+00,4.635131E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999304E+01,0.000000E+00 +931682,fr,2,3.550000E+00,7.270430E+00,4.635131E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999304E+01,0.000000E+00 +931683,fr,4,3.550000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,2.400131E+02,5.799699E+01,0.000000E+00 +931686,fr,6,3.550000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999296E+01,-9.000000E+01 +931687,fr,1,3.550000E+00,7.270430E+00,4.635131E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999296E+01,-9.000000E+01 +931688,fr,1,3.550000E+00,7.270430E+00,4.635131E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999296E+01,-9.000000E+01 +931689,fr,1,3.550000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.999304E+01,0.000000E+00 +931690,fr,1,3.550000E+00,7.270430E+00,4.635131E+01,1.500000E+01,Active Shallow Crust,1.288970E+02,8.999304E+01,0.000000E+00 +931692,fr,17,3.650000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998759E+01,0.000000E+00 +931693,fr,3,3.650000E+00,7.270430E+00,4.635131E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998759E+01,0.000000E+00 +931694,fr,1,3.650000E+00,7.270430E+00,4.635131E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998759E+01,0.000000E+00 +931696,fr,1,3.650000E+00,7.270430E+00,4.635131E+01,1.500000E+01,Active Shallow Crust,2.400023E+02,5.801217E+01,0.000000E+00 +931698,fr,2,3.650000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998745E+01,-9.000000E+01 +931701,fr,3,3.650000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.996352E+01,0.000000E+00 +931702,fr,1,3.650000E+00,7.270430E+00,4.635131E+01,1.500000E+01,Active Shallow Crust,1.289001E+02,8.996352E+01,0.000000E+00 +931704,fr,13,3.750000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +931705,fr,2,3.750000E+00,7.270430E+00,4.635131E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +931706,fr,1,3.750000E+00,7.270430E+00,4.635131E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +931707,fr,2,3.750000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801830E+01,0.000000E+00 +931710,fr,1,3.750000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998882E+01,-9.000000E+01 +931711,fr,1,3.750000E+00,7.270430E+00,4.635131E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998882E+01,-9.000000E+01 +931713,fr,2,3.750000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.996749E+01,0.000000E+00 +931716,fr,10,3.850000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +931717,fr,4,3.850000E+00,7.270430E+00,4.635131E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +931718,fr,1,3.850000E+00,7.270430E+00,4.635131E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +931719,fr,2,3.850000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,2.400115E+02,5.799744E+01,0.000000E+00 +931720,fr,1,3.850000E+00,7.270430E+00,4.635131E+01,1.500000E+01,Active Shallow Crust,2.400115E+02,5.799744E+01,0.000000E+00 +931722,fr,3,3.850000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +931728,fr,6,3.950000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999122E+01,0.000000E+00 +931729,fr,3,3.950000E+00,7.270430E+00,4.635131E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999122E+01,0.000000E+00 +931730,fr,2,3.950000E+00,7.270430E+00,4.635131E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999122E+01,0.000000E+00 +931731,fr,1,3.950000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,2.400199E+02,5.800537E+01,0.000000E+00 +931732,fr,1,3.950000E+00,7.270430E+00,4.635131E+01,1.500000E+01,Active Shallow Crust,2.400199E+02,5.800537E+01,0.000000E+00 +931734,fr,1,3.950000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999111E+01,-9.000000E+01 +931735,fr,1,3.950000E+00,7.270430E+00,4.635131E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999111E+01,-9.000000E+01 +931736,fr,1,3.950000E+00,7.270430E+00,4.635131E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999111E+01,-9.000000E+01 +931737,fr,1,3.950000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.999342E+01,0.000000E+00 +931740,fr,3,4.050000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998826E+01,0.000000E+00 +931741,fr,1,4.050000E+00,7.270430E+00,4.635131E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998826E+01,0.000000E+00 +931743,fr,1,4.050000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,2.400057E+02,5.800576E+01,0.000000E+00 +931748,fr,1,4.050000E+00,7.270430E+00,4.635131E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998812E+01,-9.000000E+01 +931752,fr,3,4.150000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +931753,fr,5,4.150000E+00,7.270430E+00,4.635131E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +931754,fr,1,4.150000E+00,7.270430E+00,4.635131E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +931755,fr,1,4.150000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799754E+01,0.000000E+00 +931764,fr,3,4.250000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999067E+01,0.000000E+00 +931765,fr,2,4.250000E+00,7.270430E+00,4.635131E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999067E+01,0.000000E+00 +931766,fr,1,4.250000E+00,7.270430E+00,4.635131E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999067E+01,0.000000E+00 +931767,fr,1,4.250000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.799418E+01,0.000000E+00 +931768,fr,1,4.250000E+00,7.270430E+00,4.635131E+01,1.500000E+01,Active Shallow Crust,2.400074E+02,5.799418E+01,0.000000E+00 +931772,fr,1,4.250000E+00,7.270430E+00,4.635131E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999056E+01,-9.000000E+01 +931776,fr,3,4.350000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +931777,fr,2,4.350000E+00,7.270430E+00,4.635131E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +931779,fr,1,4.350000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799626E+01,0.000000E+00 +931781,fr,1,4.350000E+00,7.270430E+00,4.635131E+01,2.750000E+01,Active Shallow Crust,2.400085E+02,5.799626E+01,0.000000E+00 +931782,fr,1,4.350000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998878E+01,-9.000000E+01 +931788,fr,3,4.450000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +931795,fr,2,4.450000E+00,7.270430E+00,4.635131E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +931800,fr,1,4.550000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998899E+01,0.000000E+00 +931812,fr,2,4.650000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +931824,fr,1,4.750000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +931827,fr,2,4.750000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.800474E+01,0.000000E+00 +931828,fr,1,4.750000E+00,7.270430E+00,4.635131E+01,1.500000E+01,Active Shallow Crust,2.400073E+02,5.800474E+01,0.000000E+00 +931839,fr,1,4.850000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,2.400172E+02,5.800228E+01,0.000000E+00 +931848,fr,1,4.950000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +931857,fr,1,4.950000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,1.288899E+02,8.998981E+01,0.000000E+00 +931860,fr,1,5.050000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +931874,fr,1,5.150000E+00,7.270430E+00,4.635131E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +931875,fr,1,5.150000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,2.400194E+02,5.800005E+01,0.000000E+00 +931884,fr,1,5.250000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +931892,fr,1,5.250000E+00,7.270430E+00,4.635131E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,-9.000000E+01 +931908,fr,1,5.450000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +931913,fr,1,5.450000E+00,7.270430E+00,4.635131E+01,2.750000E+01,Active Shallow Crust,2.400287E+02,5.799846E+01,0.000000E+00 +931914,fr,1,5.450000E+00,7.270430E+00,4.635131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,-9.000000E+01 +931921,fr,1,5.550000E+00,7.270430E+00,4.635131E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +931969,fr,1,5.950000E+00,7.270430E+00,4.635131E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +931970,fr,1,5.950000E+00,7.270430E+00,4.635131E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +931992,fr,1,6.150000E+00,7.270432E+00,4.635131E+01,6.011322E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +932164,fr,1,3.550000E+00,-3.677350E+00,4.963286E+01,1.500000E+01,Active Shallow Crust,2.400130E+02,5.799790E+01,0.000000E+00 +932184,fr,1,3.750000E+00,-3.677350E+00,4.963286E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +932200,fr,1,3.850000E+00,-3.677350E+00,4.963286E+01,1.500000E+01,Active Shallow Crust,2.400112E+02,5.799780E+01,0.000000E+00 +932221,fr,1,4.050000E+00,-3.677350E+00,4.963286E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +932670,fr,1,3.750000E+00,-4.160330E+00,4.782521E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998912E+01,-9.000000E+01 +932728,fr,1,4.250000E+00,-4.160330E+00,4.782521E+01,1.500000E+01,Active Shallow Crust,2.400080E+02,5.799421E+01,0.000000E+00 +932772,fr,1,4.650000E+00,-4.160330E+00,4.782521E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +933132,fr,2,3.650000E+00,1.229000E+00,4.824309E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +933154,fr,1,3.750000E+00,1.229000E+00,4.824309E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.996728E+01,0.000000E+00 +933180,fr,2,4.050000E+00,1.229000E+00,4.824309E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +933195,fr,1,4.150000E+00,1.229000E+00,4.824309E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799744E+01,0.000000E+00 +933240,fr,1,4.550000E+00,1.229000E+00,4.824309E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +933253,fr,1,4.650000E+00,1.229000E+00,4.824309E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +933255,fr,1,4.650000E+00,1.229000E+00,4.824309E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799439E+01,0.000000E+00 +933603,fr,1,3.550000E+00,1.913240E+00,4.801412E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799820E+01,0.000000E+00 +933674,fr,1,4.150000E+00,1.913240E+00,4.801412E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +933864,fr,1,5.750000E+00,1.913240E+00,4.801412E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +934080,fr,1,3.550000E+00,8.348420E+00,4.489607E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998571E+01,0.000000E+00 +934083,fr,1,3.550000E+00,8.348420E+00,4.489607E+01,5.000000E+00,Active Shallow Crust,2.400137E+02,5.799879E+01,0.000000E+00 +934129,fr,1,3.950000E+00,8.348420E+00,4.489607E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999098E+01,0.000000E+00 +934131,fr,1,3.950000E+00,8.348420E+00,4.489607E+01,5.000000E+00,Active Shallow Crust,2.400186E+02,5.800521E+01,0.000000E+00 +934140,fr,1,4.050000E+00,8.348420E+00,4.489607E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999197E+01,0.000000E+00 +934182,fr,1,4.350000E+00,8.348420E+00,4.489607E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998849E+01,-9.000000E+01 +934614,fr,1,3.950000E+00,-9.779800E-01,5.062596E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,-9.000000E+01 +934638,fr,1,4.150000E+00,-9.779800E-01,5.062596E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,-9.000000E+01 +935187,fr,1,4.750000E+00,-3.006530E+00,5.009005E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.800471E+01,0.000000E+00 +935520,fr,1,3.550000E+00,5.908520E+00,4.514015E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999289E+01,0.000000E+00 +935522,fr,1,3.550000E+00,5.908520E+00,4.514015E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999289E+01,0.000000E+00 +935532,fr,1,3.650000E+00,5.908520E+00,4.514015E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998732E+01,0.000000E+00 +935533,fr,1,3.650000E+00,5.908520E+00,4.514015E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998732E+01,0.000000E+00 +935535,fr,1,3.650000E+00,5.908520E+00,4.514015E+01,5.000000E+00,Active Shallow Crust,2.399996E+02,5.801341E+01,0.000000E+00 +935538,fr,1,3.650000E+00,5.908520E+00,4.514015E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998717E+01,-9.000000E+01 +935544,fr,5,3.750000E+00,5.908520E+00,4.514015E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998870E+01,0.000000E+00 +935545,fr,1,3.750000E+00,5.908520E+00,4.514015E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998870E+01,0.000000E+00 +935546,fr,1,3.750000E+00,5.908520E+00,4.514015E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998870E+01,0.000000E+00 +935547,fr,1,3.750000E+00,5.908520E+00,4.514015E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.801726E+01,0.000000E+00 +935552,fr,1,3.750000E+00,5.908520E+00,4.514015E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998857E+01,-9.000000E+01 +935554,fr,1,3.750000E+00,5.908520E+00,4.514015E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.996747E+01,0.000000E+00 +935565,fr,1,3.850000E+00,5.908520E+00,4.514015E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999496E+01,0.000000E+00 +935569,fr,1,3.950000E+00,5.908520E+00,4.514015E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999102E+01,0.000000E+00 +935578,fr,1,3.950000E+00,5.908520E+00,4.514015E+01,1.500000E+01,Active Shallow Crust,1.289004E+02,8.999327E+01,0.000000E+00 +935580,fr,1,4.050000E+00,5.908520E+00,4.514015E+01,5.000000E+00,Active Shallow Crust,3.599980E+02,8.999200E+01,0.000000E+00 +935589,fr,1,4.050000E+00,5.908520E+00,4.514015E+01,5.000000E+00,Active Shallow Crust,1.288915E+02,8.999200E+01,0.000000E+00 +935593,fr,1,4.150000E+00,5.908520E+00,4.514015E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +935629,fr,1,4.450000E+00,5.908520E+00,4.514015E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +935647,fr,1,4.550000E+00,5.908520E+00,4.514015E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999090E+01,-9.000000E+01 +935664,fr,1,4.750000E+00,5.908520E+00,4.514015E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998928E+01,0.000000E+00 +935667,fr,1,4.750000E+00,5.908520E+00,4.514015E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.800407E+01,0.000000E+00 +935688,fr,1,4.950000E+00,5.908520E+00,4.514015E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +935700,fr,1,5.050000E+00,5.908520E+00,4.514015E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +936000,fr,2,3.550000E+00,7.779390E+00,4.833856E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999329E+01,0.000000E+00 +936001,fr,1,3.550000E+00,7.779390E+00,4.833856E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999329E+01,0.000000E+00 +936003,fr,1,3.550000E+00,7.779390E+00,4.833856E+01,5.000000E+00,Active Shallow Crust,2.400131E+02,5.799760E+01,0.000000E+00 +936004,fr,1,3.550000E+00,7.779390E+00,4.833856E+01,1.500000E+01,Active Shallow Crust,2.400131E+02,5.799760E+01,0.000000E+00 +936009,fr,1,3.550000E+00,7.779390E+00,4.833856E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999329E+01,0.000000E+00 +936010,fr,1,3.550000E+00,7.779390E+00,4.833856E+01,1.500000E+01,Active Shallow Crust,1.288962E+02,8.999329E+01,0.000000E+00 +936012,fr,3,3.650000E+00,7.779390E+00,4.833856E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998805E+01,0.000000E+00 +936021,fr,1,3.650000E+00,7.779390E+00,4.833856E+01,5.000000E+00,Active Shallow Crust,1.289012E+02,8.996295E+01,0.000000E+00 +936024,fr,1,3.750000E+00,7.779390E+00,4.833856E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +936025,fr,1,3.750000E+00,7.779390E+00,4.833856E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +936028,fr,1,3.750000E+00,7.779390E+00,4.833856E+01,1.500000E+01,Active Shallow Crust,2.400086E+02,5.801798E+01,0.000000E+00 +936032,fr,1,3.750000E+00,7.779390E+00,4.833856E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998923E+01,-9.000000E+01 +936033,fr,1,3.750000E+00,7.779390E+00,4.833856E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996698E+01,0.000000E+00 +936036,fr,5,3.850000E+00,7.779390E+00,4.833856E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +936042,fr,1,3.850000E+00,7.779390E+00,4.833856E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,-9.000000E+01 +936048,fr,1,3.950000E+00,7.779390E+00,4.833856E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999154E+01,0.000000E+00 +936055,fr,1,3.950000E+00,7.779390E+00,4.833856E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999144E+01,-9.000000E+01 +936060,fr,2,4.050000E+00,7.779390E+00,4.833856E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +936061,fr,2,4.050000E+00,7.779390E+00,4.833856E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +936071,fr,1,4.050000E+00,7.779390E+00,4.833856E+01,2.750000E+01,Active Shallow Crust,1.288904E+02,8.999435E+01,0.000000E+00 +936072,fr,1,4.150000E+00,7.779390E+00,4.833856E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +936079,fr,1,4.150000E+00,7.779390E+00,4.833856E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,-9.000000E+01 +936086,fr,1,4.250000E+00,7.779390E+00,4.833856E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999102E+01,0.000000E+00 +936095,fr,1,4.250000E+00,7.779390E+00,4.833856E+01,2.750000E+01,Active Shallow Crust,1.288943E+02,8.998102E+01,0.000000E+00 +936102,fr,1,4.350000E+00,7.779390E+00,4.833856E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,-9.000000E+01 +936109,fr,1,4.450000E+00,7.779390E+00,4.833856E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +936120,fr,3,4.550000E+00,7.779390E+00,4.833856E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +936123,fr,1,4.550000E+00,7.779390E+00,4.833856E+01,5.000000E+00,Active Shallow Crust,2.400100E+02,5.799708E+01,0.000000E+00 +936133,fr,1,4.650000E+00,7.779390E+00,4.833856E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +936144,fr,1,4.750000E+00,7.779390E+00,4.833856E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +936156,fr,1,4.850000E+00,7.779390E+00,4.833856E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +936165,fr,1,4.850000E+00,7.779390E+00,4.833856E+01,5.000000E+00,Active Shallow Crust,1.288922E+02,8.998916E+01,0.000000E+00 +936265,fr,1,5.750000E+00,7.779390E+00,4.833856E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +936279,fr,1,5.850000E+00,7.779390E+00,4.833856E+01,5.000000E+00,Active Shallow Crust,2.400497E+02,5.800012E+01,0.000000E+00 +936285,fr,1,5.850000E+00,7.779390E+00,4.833856E+01,5.000000E+00,Active Shallow Crust,1.288654E+02,8.999142E+01,0.000000E+00 +936489,fr,1,3.550000E+00,-4.816000E-02,5.145840E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999372E+01,0.000000E+00 +936499,fr,1,3.650000E+00,-4.816000E-02,5.145840E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +936506,fr,1,3.750000E+00,-4.816000E-02,5.145840E+01,2.750000E+01,Active Shallow Crust,3.600000E+02,8.999002E+01,0.000000E+00 +936529,fr,1,3.950000E+00,-4.816000E-02,5.145840E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +936588,fr,1,4.450000E+00,-4.816000E-02,5.145840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +936603,fr,1,4.550000E+00,-4.816000E-02,5.145840E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799765E+01,0.000000E+00 +936627,fr,1,4.750000E+00,-4.816000E-02,5.145840E+01,5.000000E+00,Active Shallow Crust,2.400095E+02,5.800486E+01,0.000000E+00 +936967,fr,1,3.550000E+00,1.972370E+00,4.880624E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,-9.000000E+01 +936973,fr,1,3.650000E+00,1.972370E+00,4.880624E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +937045,fr,1,4.250000E+00,1.972370E+00,4.880624E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +937297,fr,1,6.350000E+00,1.972370E+00,4.880624E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +937452,fr,3,3.650000E+00,7.899650E+00,4.911145E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998824E+01,0.000000E+00 +937464,fr,1,3.750000E+00,7.899650E+00,4.911145E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +937485,fr,1,3.850000E+00,7.899650E+00,4.911145E+01,5.000000E+00,Active Shallow Crust,1.288953E+02,8.999533E+01,0.000000E+00 +937488,fr,1,3.950000E+00,7.899650E+00,4.911145E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999167E+01,0.000000E+00 +937491,fr,1,3.950000E+00,7.899650E+00,4.911145E+01,5.000000E+00,Active Shallow Crust,2.400208E+02,5.800491E+01,0.000000E+00 +937500,fr,1,4.050000E+00,7.899650E+00,4.911145E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998886E+01,0.000000E+00 +937501,fr,1,4.050000E+00,7.899650E+00,4.911145E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998886E+01,0.000000E+00 +937503,fr,1,4.050000E+00,7.899650E+00,4.911145E+01,5.000000E+00,Active Shallow Crust,2.400057E+02,5.800611E+01,0.000000E+00 +937545,fr,2,4.350000E+00,7.899650E+00,4.911145E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.998265E+01,0.000000E+00 +937546,fr,1,4.350000E+00,7.899650E+00,4.911145E+01,1.500000E+01,Active Shallow Crust,1.288976E+02,8.998265E+01,0.000000E+00 +937621,fr,1,5.050000E+00,7.899650E+00,4.911145E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +937636,fr,1,5.150000E+00,7.899650E+00,4.911145E+01,1.500000E+01,Active Shallow Crust,2.400212E+02,5.800024E+01,0.000000E+00 +937668,fr,1,5.450000E+00,7.899650E+00,4.911145E+01,5.000000E+00,Active Shallow Crust,3.599996E+02,8.999036E+01,0.000000E+00 +937672,fr,1,5.450000E+00,7.899650E+00,4.911145E+01,1.500000E+01,Active Shallow Crust,2.400312E+02,5.799880E+01,0.000000E+00 +937932,fr,1,3.650000E+00,2.866920E+00,4.070777E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +937956,fr,1,3.850000E+00,2.866920E+00,4.070777E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +938088,fr,1,4.950000E+00,2.866920E+00,4.070777E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +938400,fr,1,3.550000E+00,3.724240E+00,4.164577E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +938407,fr,1,3.550000E+00,3.724240E+00,4.164577E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998856E+01,-9.000000E+01 +938418,fr,1,3.650000E+00,3.724240E+00,4.164577E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,-9.000000E+01 +938436,fr,1,3.850000E+00,3.724240E+00,4.164577E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +938443,fr,1,3.850000E+00,3.724240E+00,4.164577E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,-9.000000E+01 +938508,fr,1,4.450000E+00,3.724240E+00,4.164577E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +938529,fr,1,4.550000E+00,3.724240E+00,4.164577E+01,5.000000E+00,Active Shallow Crust,1.288949E+02,8.998592E+01,0.000000E+00 +938892,fr,1,3.650000E+00,3.361780E+00,4.373058E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +938904,fr,2,3.750000E+00,3.361780E+00,4.373058E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999132E+01,0.000000E+00 +938977,fr,1,4.350000E+00,3.361780E+00,4.373058E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +939435,fr,1,4.150000E+00,4.133890E+00,4.837911E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.799767E+01,0.000000E+00 +939844,fr,1,3.550000E+00,-1.007000E-01,4.165223E+01,1.500000E+01,Active Shallow Crust,2.400118E+02,5.799807E+01,0.000000E+00 +939849,fr,1,3.550000E+00,-1.007000E-01,4.165223E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999376E+01,0.000000E+00 +940320,fr,5,3.550000E+00,-6.407200E-01,4.745719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +940321,fr,5,3.550000E+00,-6.407200E-01,4.745719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +940322,fr,1,3.550000E+00,-6.407200E-01,4.745719E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +940323,fr,2,3.550000E+00,-6.407200E-01,4.745719E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799818E+01,0.000000E+00 +940324,fr,1,3.550000E+00,-6.407200E-01,4.745719E+01,1.500000E+01,Active Shallow Crust,2.400122E+02,5.799818E+01,0.000000E+00 +940331,fr,1,3.550000E+00,-6.407200E-01,4.745719E+01,2.750000E+01,Active Shallow Crust,1.288961E+02,8.999361E+01,0.000000E+00 +940332,fr,1,3.650000E+00,-6.407200E-01,4.745719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +940334,fr,1,3.650000E+00,-6.407200E-01,4.745719E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +940344,fr,4,3.750000E+00,-6.407200E-01,4.745719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +940348,fr,1,3.750000E+00,-6.407200E-01,4.745719E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.801754E+01,0.000000E+00 +940356,fr,3,3.850000E+00,-6.407200E-01,4.745719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +940357,fr,1,3.850000E+00,-6.407200E-01,4.745719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +940363,fr,1,3.850000E+00,-6.407200E-01,4.745719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,-9.000000E+01 +940368,fr,3,3.950000E+00,-6.407200E-01,4.745719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +940371,fr,1,3.950000E+00,-6.407200E-01,4.745719E+01,5.000000E+00,Active Shallow Crust,2.400200E+02,5.800502E+01,0.000000E+00 +940375,fr,1,3.950000E+00,-6.407200E-01,4.745719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,-9.000000E+01 +940380,fr,2,4.050000E+00,-6.407200E-01,4.745719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +940392,fr,2,4.150000E+00,-6.407200E-01,4.745719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +940393,fr,1,4.150000E+00,-6.407200E-01,4.745719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +940394,fr,1,4.150000E+00,-6.407200E-01,4.745719E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +940395,fr,1,4.150000E+00,-6.407200E-01,4.745719E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.799740E+01,0.000000E+00 +940398,fr,2,4.150000E+00,-6.407200E-01,4.745719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +940401,fr,1,4.150000E+00,-6.407200E-01,4.745719E+01,5.000000E+00,Active Shallow Crust,1.288974E+02,8.999380E+01,0.000000E+00 +940404,fr,2,4.250000E+00,-6.407200E-01,4.745719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +940408,fr,1,4.250000E+00,-6.407200E-01,4.745719E+01,1.500000E+01,Active Shallow Crust,2.400077E+02,5.799414E+01,0.000000E+00 +940416,fr,1,4.350000E+00,-6.407200E-01,4.745719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +940429,fr,1,4.450000E+00,-6.407200E-01,4.745719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +940440,fr,1,4.550000E+00,-6.407200E-01,4.745719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +940443,fr,1,4.550000E+00,-6.407200E-01,4.745719E+01,5.000000E+00,Active Shallow Crust,2.400096E+02,5.799739E+01,0.000000E+00 +940446,fr,1,4.550000E+00,-6.407200E-01,4.745719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +940452,fr,2,4.650000E+00,-6.407200E-01,4.745719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +940453,fr,1,4.650000E+00,-6.407200E-01,4.745719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +940459,fr,1,4.650000E+00,-6.407200E-01,4.745719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +940464,fr,1,4.750000E+00,-6.407200E-01,4.745719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +940467,fr,1,4.750000E+00,-6.407200E-01,4.745719E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.800455E+01,0.000000E+00 +940468,fr,1,4.750000E+00,-6.407200E-01,4.745719E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.800455E+01,0.000000E+00 +940513,fr,1,5.150000E+00,-6.407200E-01,4.745719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +940585,fr,1,5.750000E+00,-6.407200E-01,4.745719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +940840,fr,1,3.850000E+00,8.347370E+00,5.090342E+01,1.500000E+01,Active Shallow Crust,2.400115E+02,5.799788E+01,0.000000E+00 +940849,fr,1,3.950000E+00,8.347370E+00,5.090342E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999197E+01,0.000000E+00 +941304,fr,1,3.750000E+00,-3.822230E+00,4.935082E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +941307,fr,1,3.750000E+00,-3.822230E+00,4.935082E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.801791E+01,0.000000E+00 +941319,fr,2,3.850000E+00,-3.822230E+00,4.935082E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799806E+01,0.000000E+00 +941760,fr,14,3.550000E+00,8.271970E+00,4.723942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998631E+01,0.000000E+00 +941761,fr,2,3.550000E+00,8.271970E+00,4.723942E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998631E+01,0.000000E+00 +941762,fr,1,3.550000E+00,8.271970E+00,4.723942E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998631E+01,0.000000E+00 +941763,fr,1,3.550000E+00,8.271970E+00,4.723942E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.799643E+01,0.000000E+00 +941769,fr,1,3.550000E+00,8.271970E+00,4.723942E+01,5.000000E+00,Active Shallow Crust,1.288975E+02,8.999316E+01,0.000000E+00 +941771,fr,1,3.550000E+00,8.271970E+00,4.723942E+01,2.750000E+01,Active Shallow Crust,1.288975E+02,8.999316E+01,0.000000E+00 +941772,fr,2,3.650000E+00,8.271970E+00,4.723942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998779E+01,0.000000E+00 +941774,fr,1,3.650000E+00,8.271970E+00,4.723942E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998779E+01,0.000000E+00 +941779,fr,1,3.650000E+00,8.271970E+00,4.723942E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998766E+01,-9.000000E+01 +941784,fr,2,3.750000E+00,8.271970E+00,4.723942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998912E+01,0.000000E+00 +941785,fr,1,3.750000E+00,8.271970E+00,4.723942E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998912E+01,0.000000E+00 +941797,fr,1,3.850000E+00,8.271970E+00,4.723942E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +941799,fr,1,3.850000E+00,8.271970E+00,4.723942E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799800E+01,0.000000E+00 +941801,fr,1,3.850000E+00,8.271970E+00,4.723942E+01,2.750000E+01,Active Shallow Crust,2.400114E+02,5.799800E+01,0.000000E+00 +941808,fr,1,3.950000E+00,8.271970E+00,4.723942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999136E+01,0.000000E+00 +941809,fr,1,3.950000E+00,8.271970E+00,4.723942E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999136E+01,0.000000E+00 +941810,fr,1,3.950000E+00,8.271970E+00,4.723942E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999136E+01,0.000000E+00 +941811,fr,1,3.950000E+00,8.271970E+00,4.723942E+01,5.000000E+00,Active Shallow Crust,2.400199E+02,5.800542E+01,0.000000E+00 +941818,fr,1,3.950000E+00,8.271970E+00,4.723942E+01,1.500000E+01,Active Shallow Crust,1.289000E+02,8.999568E+01,0.000000E+00 +941820,fr,1,4.050000E+00,8.271970E+00,4.723942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999230E+01,0.000000E+00 +941822,fr,1,4.050000E+00,8.271970E+00,4.723942E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999230E+01,0.000000E+00 +941827,fr,1,4.050000E+00,8.271970E+00,4.723942E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999221E+01,-9.000000E+01 +941828,fr,1,4.050000E+00,8.271970E+00,4.723942E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999221E+01,-9.000000E+01 +941829,fr,2,4.050000E+00,8.271970E+00,4.723942E+01,5.000000E+00,Active Shallow Crust,1.288891E+02,8.999615E+01,0.000000E+00 +941856,fr,1,4.350000E+00,8.271970E+00,4.723942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +941858,fr,1,4.350000E+00,8.271970E+00,4.723942E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +941862,fr,1,4.350000E+00,8.271970E+00,4.723942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998897E+01,-9.000000E+01 +941869,fr,1,4.450000E+00,8.271970E+00,4.723942E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +941881,fr,1,4.550000E+00,8.271970E+00,4.723942E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999134E+01,0.000000E+00 +941916,fr,1,4.850000E+00,8.271970E+00,4.723942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999080E+01,0.000000E+00 +941937,fr,1,4.950000E+00,8.271970E+00,4.723942E+01,5.000000E+00,Active Shallow Crust,1.288894E+02,8.998945E+01,0.000000E+00 +941966,fr,1,5.250000E+00,8.271970E+00,4.723942E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +941976,fr,1,5.350000E+00,8.271970E+00,4.723942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +942240,fr,3,3.550000E+00,-2.518700E-01,4.287206E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +942241,fr,3,3.550000E+00,-2.518700E-01,4.287206E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +942242,fr,1,3.550000E+00,-2.518700E-01,4.287206E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +942243,fr,1,3.550000E+00,-2.518700E-01,4.287206E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799814E+01,0.000000E+00 +942246,fr,2,3.550000E+00,-2.518700E-01,4.287206E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,-9.000000E+01 +942247,fr,1,3.550000E+00,-2.518700E-01,4.287206E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,-9.000000E+01 +942252,fr,4,3.650000E+00,-2.518700E-01,4.287206E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +942253,fr,2,3.650000E+00,-2.518700E-01,4.287206E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +942254,fr,1,3.650000E+00,-2.518700E-01,4.287206E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +942261,fr,1,3.650000E+00,-2.518700E-01,4.287206E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996349E+01,0.000000E+00 +942264,fr,1,3.750000E+00,-2.518700E-01,4.287206E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +942270,fr,1,3.750000E+00,-2.518700E-01,4.287206E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +942271,fr,2,3.750000E+00,-2.518700E-01,4.287206E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +942276,fr,1,3.850000E+00,-2.518700E-01,4.287206E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +942286,fr,1,3.850000E+00,-2.518700E-01,4.287206E+01,1.500000E+01,Active Shallow Crust,1.288960E+02,8.999379E+01,0.000000E+00 +942288,fr,2,3.950000E+00,-2.518700E-01,4.287206E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +942289,fr,1,3.950000E+00,-2.518700E-01,4.287206E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +942300,fr,4,4.050000E+00,-2.518700E-01,4.287206E+01,5.000000E+00,Active Shallow Crust,3.599999E+02,8.999013E+01,0.000000E+00 +942312,fr,2,4.150000E+00,-2.518700E-01,4.287206E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +942335,fr,1,4.250000E+00,-2.518700E-01,4.287206E+01,2.750000E+01,Active Shallow Crust,1.288949E+02,8.998095E+01,0.000000E+00 +942342,fr,1,4.350000E+00,-2.518700E-01,4.287206E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,-9.000000E+01 +942350,fr,1,4.450000E+00,-2.518700E-01,4.287206E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +942370,fr,2,4.550000E+00,-2.518700E-01,4.287206E+01,1.500000E+01,Active Shallow Crust,1.288947E+02,8.998579E+01,0.000000E+00 +942393,fr,1,4.750000E+00,-2.518700E-01,4.287206E+01,5.000000E+00,Active Shallow Crust,1.288897E+02,8.998806E+01,0.000000E+00 +942432,fr,1,5.150000E+00,-2.518700E-01,4.287206E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +942605,fr,1,6.550000E+00,-2.496479E-01,4.286924E+01,2.692039E+01,Active Shallow Crust,2.400904E+02,5.799989E+01,0.000000E+00 +942721,fr,1,3.550000E+00,3.408420E+00,4.750945E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +942723,fr,1,3.550000E+00,3.408420E+00,4.750945E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799826E+01,0.000000E+00 +942738,fr,1,3.650000E+00,3.408420E+00,4.750945E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999079E+01,-9.000000E+01 +942744,fr,1,3.750000E+00,3.408420E+00,4.750945E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +942750,fr,1,3.750000E+00,3.408420E+00,4.750945E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998905E+01,-9.000000E+01 +942780,fr,1,4.050000E+00,3.408420E+00,4.750945E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +942853,fr,1,4.650000E+00,3.408420E+00,4.750945E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +943200,fr,1,3.550000E+00,4.090420E+00,4.129298E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999242E+01,0.000000E+00 +943201,fr,1,3.550000E+00,4.090420E+00,4.129298E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999242E+01,0.000000E+00 +943234,fr,1,3.750000E+00,4.090420E+00,4.129298E+01,1.500000E+01,Active Shallow Crust,1.288972E+02,8.996740E+01,0.000000E+00 +943248,fr,1,3.950000E+00,4.090420E+00,4.129298E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +943345,fr,1,4.750000E+00,4.090420E+00,4.129298E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +943362,fr,1,4.850000E+00,4.090420E+00,4.129298E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,-9.000000E+01 +943680,fr,1,3.550000E+00,4.471680E+00,5.017826E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998708E+01,0.000000E+00 +943683,fr,1,3.550000E+00,4.471680E+00,5.017826E+01,5.000000E+00,Active Shallow Crust,2.400126E+02,5.799771E+01,0.000000E+00 +943695,fr,1,3.650000E+00,4.471680E+00,5.017826E+01,5.000000E+00,Active Shallow Crust,2.400028E+02,5.801208E+01,0.000000E+00 +943696,fr,1,3.650000E+00,4.471680E+00,5.017826E+01,1.500000E+01,Active Shallow Crust,2.400028E+02,5.801208E+01,0.000000E+00 +943704,fr,2,3.750000E+00,4.471680E+00,5.017826E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +943716,fr,1,3.850000E+00,4.471680E+00,5.017826E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +943718,fr,1,3.850000E+00,4.471680E+00,5.017826E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +943725,fr,1,3.850000E+00,4.471680E+00,5.017826E+01,5.000000E+00,Active Shallow Crust,1.288949E+02,8.999314E+01,0.000000E+00 +943740,fr,1,4.050000E+00,4.471680E+00,5.017826E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +944042,fr,1,6.550000E+00,4.471675E+00,5.017826E+01,2.547270E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +944164,fr,1,3.550000E+00,4.734990E+00,4.111090E+01,1.500000E+01,Active Shallow Crust,2.400129E+02,5.799697E+01,0.000000E+00 +944166,fr,1,3.550000E+00,4.734990E+00,4.111090E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999232E+01,-9.000000E+01 +944198,fr,1,3.850000E+00,4.734990E+00,4.111090E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +944222,fr,1,4.050000E+00,4.734990E+00,4.111090E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999146E+01,0.000000E+00 +945135,fr,2,3.650000E+00,-3.863400E-01,5.052783E+01,5.000000E+00,Active Shallow Crust,2.400015E+02,5.801298E+01,0.000000E+00 +945611,fr,1,3.550000E+00,-1.660300E-01,4.342812E+01,2.750000E+01,Active Shallow Crust,1.288964E+02,8.999382E+01,0.000000E+00 +945612,fr,1,3.650000E+00,-1.660300E-01,4.342812E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +945615,fr,1,3.650000E+00,-1.660300E-01,4.342812E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801283E+01,0.000000E+00 +945648,fr,1,3.950000E+00,-1.660300E-01,4.342812E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +945652,fr,1,3.950000E+00,-1.660300E-01,4.342812E+01,1.500000E+01,Active Shallow Crust,2.400193E+02,5.800490E+01,0.000000E+00 +945684,fr,1,4.250000E+00,-1.660300E-01,4.342812E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +945702,fr,1,4.350000E+00,-1.660300E-01,4.342812E+01,5.000000E+00,Active Shallow Crust,3.599999E+02,8.999004E+01,-9.000000E+01 +945708,fr,1,4.450000E+00,-1.660300E-01,4.342812E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +945793,fr,1,5.150000E+00,-1.660300E-01,4.342812E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +946080,fr,1,3.550000E+00,-2.852240E+00,4.835658E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +946081,fr,2,3.550000E+00,-2.852240E+00,4.835658E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +946082,fr,2,3.550000E+00,-2.852240E+00,4.835658E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +946083,fr,1,3.550000E+00,-2.852240E+00,4.835658E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799845E+01,0.000000E+00 +946086,fr,1,3.550000E+00,-2.852240E+00,4.835658E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,-9.000000E+01 +946092,fr,1,3.650000E+00,-2.852240E+00,4.835658E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +946097,fr,1,3.650000E+00,-2.852240E+00,4.835658E+01,2.750000E+01,Active Shallow Crust,2.400014E+02,5.801289E+01,0.000000E+00 +946104,fr,2,3.750000E+00,-2.852240E+00,4.835658E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +946116,fr,1,3.850000E+00,-2.852240E+00,4.835658E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +946128,fr,1,3.950000E+00,-2.852240E+00,4.835658E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +946130,fr,1,3.950000E+00,-2.852240E+00,4.835658E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +946152,fr,1,4.150000E+00,-2.852240E+00,4.835658E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +946153,fr,1,4.150000E+00,-2.852240E+00,4.835658E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +946200,fr,1,4.550000E+00,-2.852240E+00,4.835658E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +946212,fr,1,4.650000E+00,-2.852240E+00,4.835658E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +946215,fr,1,4.650000E+00,-2.852240E+00,4.835658E+01,5.000000E+00,Active Shallow Crust,2.400115E+02,5.799437E+01,0.000000E+00 +946419,fr,1,6.350000E+00,-2.858236E+00,4.836348E+01,6.417864E+00,Active Shallow Crust,2.400870E+02,5.799937E+01,0.000000E+00 +946584,fr,1,3.750000E+00,-9.231700E-01,4.997025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +946596,fr,1,3.850000E+00,-9.231700E-01,4.997025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +946629,fr,1,4.050000E+00,-9.231700E-01,4.997025E+01,5.000000E+00,Active Shallow Crust,1.288899E+02,8.999384E+01,0.000000E+00 +946764,fr,1,5.250000E+00,-9.231700E-01,4.997025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +946776,fr,1,5.350000E+00,-9.231700E-01,4.997025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +947040,fr,1,3.550000E+00,-1.578750E+00,4.245407E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +947052,fr,1,3.650000E+00,-1.578750E+00,4.245407E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +947054,fr,1,3.650000E+00,-1.578750E+00,4.245407E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +947064,fr,1,3.750000E+00,-1.578750E+00,4.245407E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +947065,fr,1,3.750000E+00,-1.578750E+00,4.245407E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +947076,fr,1,3.850000E+00,-1.578750E+00,4.245407E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +947079,fr,1,3.850000E+00,-1.578750E+00,4.245407E+01,5.000000E+00,Active Shallow Crust,2.400102E+02,5.799780E+01,0.000000E+00 +947086,fr,1,3.850000E+00,-1.578750E+00,4.245407E+01,1.500000E+01,Active Shallow Crust,1.288958E+02,8.999407E+01,0.000000E+00 +947100,fr,1,4.050000E+00,-1.578750E+00,4.245407E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +947109,fr,1,4.050000E+00,-1.578750E+00,4.245407E+01,5.000000E+00,Active Shallow Crust,1.288910E+02,8.999372E+01,0.000000E+00 +947125,fr,1,4.250000E+00,-1.578750E+00,4.245407E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +947136,fr,1,4.350000E+00,-1.578750E+00,4.245407E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +947163,fr,1,4.550000E+00,-1.578750E+00,4.245407E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799716E+01,0.000000E+00 +947172,fr,1,4.650000E+00,-1.578750E+00,4.245407E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +947208,fr,1,4.950000E+00,-1.578750E+00,4.245407E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +947523,fr,1,3.550000E+00,-1.292900E-01,5.132462E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.799823E+01,0.000000E+00 +947532,fr,1,3.650000E+00,-1.292900E-01,5.132462E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +947544,fr,1,3.750000E+00,-1.292900E-01,5.132462E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +947556,fr,1,3.850000E+00,-1.292900E-01,5.132462E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +947559,fr,1,3.850000E+00,-1.292900E-01,5.132462E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799793E+01,0.000000E+00 +948000,fr,3,3.550000E+00,5.016220E+00,4.462800E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999282E+01,0.000000E+00 +948006,fr,1,3.550000E+00,5.016220E+00,4.462800E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999274E+01,-9.000000E+01 +948012,fr,3,3.650000E+00,5.016220E+00,4.462800E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998721E+01,0.000000E+00 +948024,fr,2,3.750000E+00,5.016220E+00,4.462800E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998860E+01,0.000000E+00 +948027,fr,1,3.750000E+00,5.016220E+00,4.462800E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.801770E+01,0.000000E+00 +948028,fr,1,3.750000E+00,5.016220E+00,4.462800E+01,1.500000E+01,Active Shallow Crust,2.400077E+02,5.801770E+01,0.000000E+00 +948033,fr,1,3.750000E+00,5.016220E+00,4.462800E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.996746E+01,0.000000E+00 +948034,fr,1,3.750000E+00,5.016220E+00,4.462800E+01,1.500000E+01,Active Shallow Crust,1.288967E+02,8.996746E+01,0.000000E+00 +948035,fr,1,3.750000E+00,5.016220E+00,4.462800E+01,2.750000E+01,Active Shallow Crust,1.288967E+02,8.996746E+01,0.000000E+00 +948036,fr,1,3.850000E+00,5.016220E+00,4.462800E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +948045,fr,1,3.850000E+00,5.016220E+00,4.462800E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999238E+01,0.000000E+00 +948048,fr,1,3.950000E+00,5.016220E+00,4.462800E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +948055,fr,1,3.950000E+00,5.016220E+00,4.462800E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999084E+01,-9.000000E+01 +948072,fr,1,4.150000E+00,5.016220E+00,4.462800E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +948230,fr,1,5.450000E+00,5.016220E+00,4.462800E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +948480,fr,2,3.550000E+00,-1.829900E+00,4.870967E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +948482,fr,1,3.550000E+00,-1.829900E+00,4.870967E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +948483,fr,1,3.550000E+00,-1.829900E+00,4.870967E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799804E+01,0.000000E+00 +948489,fr,1,3.550000E+00,-1.829900E+00,4.870967E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999418E+01,0.000000E+00 +948492,fr,2,3.650000E+00,-1.829900E+00,4.870967E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +948494,fr,2,3.650000E+00,-1.829900E+00,4.870967E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +948495,fr,1,3.650000E+00,-1.829900E+00,4.870967E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801308E+01,0.000000E+00 +948504,fr,1,3.750000E+00,-1.829900E+00,4.870967E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +948505,fr,1,3.750000E+00,-1.829900E+00,4.870967E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +948508,fr,1,3.750000E+00,-1.829900E+00,4.870967E+01,1.500000E+01,Active Shallow Crust,2.400085E+02,5.801762E+01,0.000000E+00 +948519,fr,1,3.850000E+00,-1.829900E+00,4.870967E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799796E+01,0.000000E+00 +948525,fr,1,3.850000E+00,-1.829900E+00,4.870967E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.999411E+01,0.000000E+00 +948528,fr,4,3.950000E+00,-1.829900E+00,4.870967E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +948540,fr,1,4.050000E+00,-1.829900E+00,4.870967E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +948564,fr,1,4.250000E+00,-1.829900E+00,4.870967E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +948612,fr,1,4.650000E+00,-1.829900E+00,4.870967E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +948624,fr,1,4.750000E+00,-1.829900E+00,4.870967E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +948793,fr,1,6.150000E+00,-1.829900E+00,4.870967E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +948963,fr,1,3.550000E+00,3.140750E+00,4.263292E+01,5.000000E+00,Active Shallow Crust,2.400115E+02,5.799827E+01,0.000000E+00 +948984,fr,1,3.750000E+00,3.140750E+00,4.263292E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999116E+01,0.000000E+00 +948985,fr,1,3.750000E+00,3.140750E+00,4.263292E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999116E+01,0.000000E+00 +948991,fr,1,3.750000E+00,3.140750E+00,4.263292E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999106E+01,-9.000000E+01 +948997,fr,1,3.850000E+00,3.140750E+00,4.263292E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +949023,fr,1,4.050000E+00,3.140750E+00,4.263292E+01,5.000000E+00,Active Shallow Crust,2.400053E+02,5.800577E+01,0.000000E+00 +949033,fr,1,4.150000E+00,3.140750E+00,4.263292E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999071E+01,0.000000E+00 +949068,fr,1,4.450000E+00,3.140750E+00,4.263292E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +949152,fr,1,5.150000E+00,3.140750E+00,4.263292E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +949920,fr,2,3.550000E+00,4.833590E+00,5.010510E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998707E+01,0.000000E+00 +949946,fr,1,3.750000E+00,4.833590E+00,5.010510E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +950403,fr,1,3.550000E+00,1.076650E+00,5.150454E+01,5.000000E+00,Active Shallow Crust,2.400130E+02,5.799817E+01,0.000000E+00 +950460,fr,1,4.050000E+00,1.076650E+00,5.150454E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +950461,fr,1,4.050000E+00,1.076650E+00,5.150454E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +950463,fr,1,4.050000E+00,1.076650E+00,5.150454E+01,5.000000E+00,Active Shallow Crust,2.400068E+02,5.800597E+01,0.000000E+00 +950487,fr,1,4.250000E+00,1.076650E+00,5.150454E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799432E+01,0.000000E+00 +950506,fr,1,4.350000E+00,1.076650E+00,5.150454E+01,1.500000E+01,Active Shallow Crust,1.288966E+02,8.998277E+01,0.000000E+00 +950640,fr,1,5.550000E+00,1.076650E+00,5.150454E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +950880,fr,2,3.550000E+00,6.424440E+00,4.533601E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999291E+01,0.000000E+00 +950882,fr,1,3.550000E+00,6.424440E+00,4.533601E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999291E+01,0.000000E+00 +950890,fr,1,3.550000E+00,6.424440E+00,4.533601E+01,1.500000E+01,Active Shallow Crust,1.288955E+02,8.999291E+01,0.000000E+00 +950892,fr,5,3.650000E+00,6.424440E+00,4.533601E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998737E+01,0.000000E+00 +950896,fr,2,3.650000E+00,6.424440E+00,4.533601E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801279E+01,0.000000E+00 +950898,fr,1,3.650000E+00,6.424440E+00,4.533601E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998722E+01,-9.000000E+01 +950904,fr,1,3.750000E+00,6.424440E+00,4.533601E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998874E+01,0.000000E+00 +950911,fr,1,3.750000E+00,6.424440E+00,4.533601E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998861E+01,-9.000000E+01 +950916,fr,2,3.850000E+00,6.424440E+00,4.533601E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +950918,fr,1,3.850000E+00,6.424440E+00,4.533601E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +950920,fr,1,3.850000E+00,6.424440E+00,4.533601E+01,1.500000E+01,Active Shallow Crust,2.400117E+02,5.799696E+01,0.000000E+00 +950928,fr,2,3.950000E+00,6.424440E+00,4.533601E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999106E+01,0.000000E+00 +950930,fr,1,3.950000E+00,6.424440E+00,4.533601E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999106E+01,0.000000E+00 +950931,fr,1,3.950000E+00,6.424440E+00,4.533601E+01,5.000000E+00,Active Shallow Crust,2.400193E+02,5.800534E+01,0.000000E+00 +950934,fr,1,3.950000E+00,6.424440E+00,4.533601E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999095E+01,-9.000000E+01 +950939,fr,1,3.950000E+00,6.424440E+00,4.533601E+01,2.750000E+01,Active Shallow Crust,1.289013E+02,8.999329E+01,0.000000E+00 +950940,fr,4,4.050000E+00,6.424440E+00,4.533601E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998804E+01,0.000000E+00 +950941,fr,1,4.050000E+00,6.424440E+00,4.533601E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998804E+01,0.000000E+00 +950952,fr,1,4.150000E+00,6.424440E+00,4.533601E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +951360,fr,1,3.550000E+00,1.297750E+00,5.253912E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +951372,fr,1,3.650000E+00,1.297750E+00,5.253912E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +951444,fr,1,4.250000E+00,1.297750E+00,5.253912E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +951840,fr,1,3.550000E+00,3.256740E+00,5.117981E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +951843,fr,1,3.550000E+00,3.256740E+00,5.117981E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.799830E+01,0.000000E+00 +951867,fr,2,3.750000E+00,3.256740E+00,5.117981E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.801776E+01,0.000000E+00 +951876,fr,1,3.850000E+00,3.256740E+00,5.117981E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999105E+01,0.000000E+00 +951900,fr,1,4.050000E+00,3.256740E+00,5.117981E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +951904,fr,1,4.050000E+00,3.256740E+00,5.117981E+01,1.500000E+01,Active Shallow Crust,2.400067E+02,5.800615E+01,0.000000E+00 +951906,fr,1,4.050000E+00,3.256740E+00,5.117981E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998921E+01,-9.000000E+01 +951962,fr,1,4.550000E+00,3.256740E+00,5.117981E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +951984,fr,1,4.750000E+00,3.256740E+00,5.117981E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +952020,fr,1,5.050000E+00,3.256740E+00,5.117981E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +952392,fr,1,4.150000E+00,-3.525850E+00,4.951151E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +952804,fr,1,3.550000E+00,6.312070E+00,4.892520E+01,1.500000E+01,Active Shallow Crust,2.400129E+02,5.799757E+01,0.000000E+00 +952815,fr,1,3.650000E+00,6.312070E+00,4.892520E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801378E+01,0.000000E+00 +952837,fr,1,3.850000E+00,6.312070E+00,4.892520E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +952908,fr,1,4.450000E+00,6.312070E+00,4.892520E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +953292,fr,2,3.650000E+00,3.010070E+00,5.014524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999136E+01,0.000000E+00 +953296,fr,1,3.650000E+00,3.010070E+00,5.014524E+01,1.500000E+01,Active Shallow Crust,2.400020E+02,5.801252E+01,0.000000E+00 +953304,fr,1,3.750000E+00,3.010070E+00,5.014524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +953306,fr,1,3.750000E+00,3.010070E+00,5.014524E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +953319,fr,1,3.850000E+00,3.010070E+00,5.014524E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799788E+01,0.000000E+00 +953340,fr,1,4.050000E+00,3.010070E+00,5.014524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +953368,fr,1,4.250000E+00,3.010070E+00,5.014524E+01,1.500000E+01,Active Shallow Crust,2.400087E+02,5.799399E+01,0.000000E+00 +953460,fr,1,5.050000E+00,3.010070E+00,5.014524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +953490,fr,1,5.250000E+00,3.010070E+00,5.014524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,-9.000000E+01 +953844,fr,1,4.250000E+00,-2.774880E+00,4.397995E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +954242,fr,1,3.550000E+00,2.537800E+00,4.253975E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +954252,fr,1,3.650000E+00,2.537800E+00,4.253975E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +954254,fr,1,3.650000E+00,2.537800E+00,4.253975E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +954258,fr,1,3.650000E+00,2.537800E+00,4.253975E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,-9.000000E+01 +954265,fr,1,3.750000E+00,2.537800E+00,4.253975E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999115E+01,0.000000E+00 +954270,fr,2,3.750000E+00,2.537800E+00,4.253975E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,-9.000000E+01 +954276,fr,3,3.850000E+00,2.537800E+00,4.253975E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +954279,fr,1,3.850000E+00,2.537800E+00,4.253975E+01,5.000000E+00,Active Shallow Crust,2.400098E+02,5.799797E+01,0.000000E+00 +954288,fr,1,3.950000E+00,2.537800E+00,4.253975E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +954291,fr,1,3.950000E+00,2.537800E+00,4.253975E+01,5.000000E+00,Active Shallow Crust,2.400192E+02,5.800487E+01,0.000000E+00 +954303,fr,1,4.050000E+00,2.537800E+00,4.253975E+01,5.000000E+00,Active Shallow Crust,2.400053E+02,5.800589E+01,0.000000E+00 +954309,fr,1,4.050000E+00,2.537800E+00,4.253975E+01,5.000000E+00,Active Shallow Crust,1.288916E+02,8.999269E+01,0.000000E+00 +954310,fr,1,4.050000E+00,2.537800E+00,4.253975E+01,1.500000E+01,Active Shallow Crust,1.288916E+02,8.999269E+01,0.000000E+00 +954312,fr,1,4.150000E+00,2.537800E+00,4.253975E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999069E+01,0.000000E+00 +954313,fr,1,4.150000E+00,2.537800E+00,4.253975E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999069E+01,0.000000E+00 +954324,fr,1,4.250000E+00,2.537800E+00,4.253975E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +954337,fr,1,4.350000E+00,2.537800E+00,4.253975E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +954351,fr,1,4.450000E+00,2.537800E+00,4.253975E+01,5.000000E+00,Active Shallow Crust,2.400041E+02,5.799445E+01,0.000000E+00 +954375,fr,1,4.650000E+00,2.537800E+00,4.253975E+01,5.000000E+00,Active Shallow Crust,2.400096E+02,5.799417E+01,0.000000E+00 +954420,fr,1,5.050000E+00,2.537800E+00,4.253975E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +954492,fr,1,5.650000E+00,2.537800E+00,4.253975E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +954745,fr,1,3.750000E+00,4.796090E+00,4.783865E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +954762,fr,1,3.850000E+00,4.796090E+00,4.783865E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,-9.000000E+01 +954769,fr,1,3.950000E+00,4.796090E+00,4.783865E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999146E+01,0.000000E+00 +954798,fr,1,4.150000E+00,4.796090E+00,4.783865E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,-9.000000E+01 +955159,fr,1,7.150000E+00,4.796096E+00,4.783865E+01,1.750000E+01,Active Shallow Crust,3.599999E+02,8.999001E+01,-9.000000E+01 +955212,fr,1,3.650000E+00,2.043560E+00,4.510013E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +955231,fr,1,3.750000E+00,2.043560E+00,4.510013E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999142E+01,-9.000000E+01 +955236,fr,1,3.850000E+00,2.043560E+00,4.510013E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +955252,fr,1,3.950000E+00,2.043560E+00,4.510013E+01,1.500000E+01,Active Shallow Crust,2.400197E+02,5.800477E+01,0.000000E+00 +955468,fr,1,5.750000E+00,2.043560E+00,4.510013E+01,1.500000E+01,Active Shallow Crust,2.400397E+02,5.799914E+01,0.000000E+00 +955680,fr,1,3.550000E+00,6.993780E+00,4.748180E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999319E+01,0.000000E+00 +955686,fr,1,3.550000E+00,6.993780E+00,4.748180E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999310E+01,-9.000000E+01 +955689,fr,1,3.550000E+00,6.993780E+00,4.748180E+01,5.000000E+00,Active Shallow Crust,1.288953E+02,8.999659E+01,0.000000E+00 +955692,fr,1,3.650000E+00,6.993780E+00,4.748180E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998785E+01,0.000000E+00 +955693,fr,1,3.650000E+00,6.993780E+00,4.748180E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998785E+01,0.000000E+00 +955711,fr,1,3.750000E+00,6.993780E+00,4.748180E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998904E+01,-9.000000E+01 +955714,fr,1,3.750000E+00,6.993780E+00,4.748180E+01,1.500000E+01,Active Shallow Crust,1.288966E+02,8.996751E+01,0.000000E+00 +955716,fr,1,3.850000E+00,6.993780E+00,4.748180E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +955728,fr,2,3.950000E+00,6.993780E+00,4.748180E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999140E+01,0.000000E+00 +955740,fr,1,4.050000E+00,6.993780E+00,4.748180E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998850E+01,0.000000E+00 +955754,fr,1,4.150000E+00,6.993780E+00,4.748180E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +955767,fr,1,4.250000E+00,6.993780E+00,4.748180E+01,5.000000E+00,Active Shallow Crust,2.400072E+02,5.799434E+01,0.000000E+00 +955770,fr,1,4.250000E+00,6.993780E+00,4.748180E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999076E+01,-9.000000E+01 +955785,fr,1,4.350000E+00,6.993780E+00,4.748180E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.998257E+01,0.000000E+00 +955824,fr,1,4.750000E+00,6.993780E+00,4.748180E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +955840,fr,1,4.850000E+00,6.993780E+00,4.748180E+01,1.500000E+01,Active Shallow Crust,2.400177E+02,5.800244E+01,0.000000E+00 +955860,fr,1,5.050000E+00,6.993780E+00,4.748180E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +955875,fr,1,5.150000E+00,6.993780E+00,4.748180E+01,5.000000E+00,Active Shallow Crust,2.400202E+02,5.800002E+01,0.000000E+00 +955923,fr,1,5.550000E+00,6.993780E+00,4.748180E+01,5.000000E+00,Active Shallow Crust,2.400336E+02,5.799961E+01,0.000000E+00 +955932,fr,1,5.650000E+00,6.993780E+00,4.748180E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +956160,fr,3,3.550000E+00,1.208200E+00,4.678042E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +956169,fr,1,3.550000E+00,1.208200E+00,4.678042E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999310E+01,0.000000E+00 +956172,fr,1,3.650000E+00,1.208200E+00,4.678042E+01,5.000000E+00,Active Shallow Crust,3.599992E+02,8.999077E+01,0.000000E+00 +956178,fr,2,3.650000E+00,1.208200E+00,4.678042E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999066E+01,-9.000000E+01 +956209,fr,1,3.950000E+00,1.208200E+00,4.678042E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +956221,fr,1,4.050000E+00,1.208200E+00,4.678042E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +956232,fr,1,4.150000E+00,1.208200E+00,4.678042E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +956247,fr,1,4.250000E+00,1.208200E+00,4.678042E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799422E+01,0.000000E+00 +956294,fr,1,4.650000E+00,1.208200E+00,4.678042E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +956376,fr,1,5.350000E+00,1.208200E+00,4.678042E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +956464,fr,1,6.050000E+00,1.208200E+00,4.678042E+01,1.500000E+01,Active Shallow Crust,2.400569E+02,5.800029E+01,0.000000E+00 +956676,fr,1,3.850000E+00,1.869840E+00,4.932582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +956679,fr,1,3.850000E+00,1.869840E+00,4.932582E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799775E+01,0.000000E+00 +956712,fr,1,4.150000E+00,1.869840E+00,4.932582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +956715,fr,1,4.150000E+00,1.869840E+00,4.932582E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.799744E+01,0.000000E+00 +956716,fr,1,4.150000E+00,1.869840E+00,4.932582E+01,1.500000E+01,Active Shallow Crust,2.400089E+02,5.799746E+01,0.000000E+00 +956833,fr,1,5.150000E+00,1.869840E+00,4.932582E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +957123,fr,1,3.550000E+00,8.256320E+00,4.475405E+01,5.000000E+00,Active Shallow Crust,2.400140E+02,5.799809E+01,0.000000E+00 +957144,fr,1,3.750000E+00,8.256320E+00,4.475405E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +957150,fr,1,3.750000E+00,8.256320E+00,4.475405E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998849E+01,-9.000000E+01 +957160,fr,1,3.850000E+00,8.256320E+00,4.475405E+01,1.500000E+01,Active Shallow Crust,2.400105E+02,5.799884E+01,0.000000E+00 +957171,fr,1,3.950000E+00,8.256320E+00,4.475405E+01,5.000000E+00,Active Shallow Crust,2.400188E+02,5.800658E+01,0.000000E+00 +957300,fr,1,5.050000E+00,8.256320E+00,4.475405E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +957600,fr,10,3.550000E+00,7.339640E+00,4.425571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999277E+01,0.000000E+00 +957601,fr,6,3.550000E+00,7.339640E+00,4.425571E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999277E+01,0.000000E+00 +957602,fr,1,3.550000E+00,7.339640E+00,4.425571E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999277E+01,0.000000E+00 +957603,fr,2,3.550000E+00,7.339640E+00,4.425571E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799795E+01,0.000000E+00 +957606,fr,1,3.550000E+00,7.339640E+00,4.425571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999269E+01,-9.000000E+01 +957611,fr,1,3.550000E+00,7.339640E+00,4.425571E+01,2.750000E+01,Active Shallow Crust,1.288970E+02,8.999277E+01,0.000000E+00 +957612,fr,8,3.650000E+00,7.339640E+00,4.425571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998713E+01,0.000000E+00 +957613,fr,1,3.650000E+00,7.339640E+00,4.425571E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998713E+01,0.000000E+00 +957616,fr,1,3.650000E+00,7.339640E+00,4.425571E+01,1.500000E+01,Active Shallow Crust,2.400000E+02,5.801396E+01,0.000000E+00 +957624,fr,3,3.750000E+00,7.339640E+00,4.425571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998853E+01,0.000000E+00 +957625,fr,1,3.750000E+00,7.339640E+00,4.425571E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998853E+01,0.000000E+00 +957626,fr,1,3.750000E+00,7.339640E+00,4.425571E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998853E+01,0.000000E+00 +957627,fr,2,3.750000E+00,7.339640E+00,4.425571E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801791E+01,0.000000E+00 +957630,fr,1,3.750000E+00,7.339640E+00,4.425571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998840E+01,-9.000000E+01 +957636,fr,4,3.850000E+00,7.339640E+00,4.425571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +957645,fr,1,3.850000E+00,7.339640E+00,4.425571E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999233E+01,0.000000E+00 +957648,fr,2,3.950000E+00,7.339640E+00,4.425571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +957650,fr,2,3.950000E+00,7.339640E+00,4.425571E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +957657,fr,1,3.950000E+00,7.339640E+00,4.425571E+01,5.000000E+00,Active Shallow Crust,1.289016E+02,8.999316E+01,0.000000E+00 +957660,fr,2,4.050000E+00,7.339640E+00,4.425571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999187E+01,0.000000E+00 +957669,fr,1,4.050000E+00,7.339640E+00,4.425571E+01,5.000000E+00,Active Shallow Crust,1.288917E+02,8.999391E+01,0.000000E+00 +957672,fr,1,4.150000E+00,7.339640E+00,4.425571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +957675,fr,1,4.150000E+00,7.339640E+00,4.425571E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799683E+01,0.000000E+00 +957684,fr,1,4.250000E+00,7.339640E+00,4.425571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +957689,fr,1,4.250000E+00,7.339640E+00,4.425571E+01,2.750000E+01,Active Shallow Crust,2.400067E+02,5.799385E+01,0.000000E+00 +957690,fr,1,4.250000E+00,7.339640E+00,4.425571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,-9.000000E+01 +957696,fr,1,4.350000E+00,7.339640E+00,4.425571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999137E+01,0.000000E+00 +957704,fr,1,4.350000E+00,7.339640E+00,4.425571E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999127E+01,-9.000000E+01 +957720,fr,1,4.550000E+00,7.339640E+00,4.425571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +957732,fr,1,4.650000E+00,7.339640E+00,4.425571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +957738,fr,1,4.650000E+00,7.339640E+00,4.425571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,-9.000000E+01 +957753,fr,1,4.750000E+00,7.339640E+00,4.425571E+01,5.000000E+00,Active Shallow Crust,1.288896E+02,8.998804E+01,0.000000E+00 +957757,fr,1,4.850000E+00,7.339640E+00,4.425571E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +957768,fr,1,4.950000E+00,7.339640E+00,4.425571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +957769,fr,1,4.950000E+00,7.339640E+00,4.425571E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +957799,fr,1,5.150000E+00,7.339640E+00,4.425571E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998958E+01,-9.000000E+01 +957820,fr,1,5.350000E+00,7.339640E+00,4.425571E+01,1.500000E+01,Active Shallow Crust,2.400234E+02,5.799754E+01,0.000000E+00 +957858,fr,1,5.650000E+00,7.339640E+00,4.425571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,-9.000000E+01 +957864,fr,2,5.750000E+00,7.339640E+00,4.425571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +957908,fr,1,6.050000E+00,7.339640E+00,4.425571E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +957951,fr,1,6.450000E+00,7.331004E+00,4.426642E+01,7.200962E+00,Active Shallow Crust,2.400844E+02,5.799957E+01,0.000000E+00 +958080,fr,1,3.550000E+00,2.014060E+00,4.258937E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998886E+01,0.000000E+00 +958081,fr,1,3.550000E+00,2.014060E+00,4.258937E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998886E+01,0.000000E+00 +958083,fr,2,3.550000E+00,2.014060E+00,4.258937E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799771E+01,0.000000E+00 +958086,fr,1,3.550000E+00,2.014060E+00,4.258937E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998873E+01,-9.000000E+01 +958089,fr,1,3.550000E+00,2.014060E+00,4.258937E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999443E+01,0.000000E+00 +958092,fr,1,3.650000E+00,2.014060E+00,4.258937E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +958094,fr,1,3.650000E+00,2.014060E+00,4.258937E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +958101,fr,2,3.650000E+00,2.014060E+00,4.258937E+01,5.000000E+00,Active Shallow Crust,1.289013E+02,8.996345E+01,0.000000E+00 +958104,fr,1,3.750000E+00,2.014060E+00,4.258937E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999116E+01,0.000000E+00 +958105,fr,3,3.750000E+00,2.014060E+00,4.258937E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999116E+01,0.000000E+00 +958113,fr,1,3.750000E+00,2.014060E+00,4.258937E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996742E+01,0.000000E+00 +958128,fr,2,3.950000E+00,2.014060E+00,4.258937E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +958131,fr,1,3.950000E+00,2.014060E+00,4.258937E+01,5.000000E+00,Active Shallow Crust,2.400193E+02,5.800502E+01,0.000000E+00 +958133,fr,1,3.950000E+00,2.014060E+00,4.258937E+01,2.750000E+01,Active Shallow Crust,2.400193E+02,5.800502E+01,0.000000E+00 +958137,fr,1,3.950000E+00,2.014060E+00,4.258937E+01,5.000000E+00,Active Shallow Crust,1.289013E+02,8.999297E+01,0.000000E+00 +958143,fr,2,4.050000E+00,2.014060E+00,4.258937E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.800570E+01,0.000000E+00 +958149,fr,1,4.050000E+00,2.014060E+00,4.258937E+01,5.000000E+00,Active Shallow Crust,1.288916E+02,8.999374E+01,0.000000E+00 +958153,fr,1,4.150000E+00,2.014060E+00,4.258937E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +958164,fr,1,4.250000E+00,2.014060E+00,4.258937E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +958176,fr,1,4.350000E+00,2.014060E+00,4.258937E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +958178,fr,1,4.350000E+00,2.014060E+00,4.258937E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +958200,fr,1,4.550000E+00,2.014060E+00,4.258937E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +958572,fr,1,3.650000E+00,6.802310E+00,4.873278E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998814E+01,0.000000E+00 +958573,fr,1,3.650000E+00,6.802310E+00,4.873278E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998814E+01,0.000000E+00 +958620,fr,1,4.050000E+00,6.802310E+00,4.873278E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +958644,fr,1,4.250000E+00,6.802310E+00,4.873278E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999109E+01,0.000000E+00 +959040,fr,1,3.550000E+00,1.440310E+00,5.035192E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +959041,fr,1,3.550000E+00,1.440310E+00,5.035192E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +959056,fr,1,3.650000E+00,1.440310E+00,5.035192E+01,1.500000E+01,Active Shallow Crust,2.400018E+02,5.801302E+01,0.000000E+00 +959066,fr,1,3.750000E+00,1.440310E+00,5.035192E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +959100,fr,1,4.050000E+00,1.440310E+00,5.035192E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +959160,fr,1,4.550000E+00,1.440310E+00,5.035192E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +959533,fr,1,3.650000E+00,1.545360E+00,4.773075E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +959544,fr,1,3.750000E+00,1.545360E+00,4.773075E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +959581,fr,1,4.050000E+00,1.545360E+00,4.773075E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +959664,fr,1,4.750000E+00,1.545360E+00,4.773075E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +960000,fr,1,3.550000E+00,5.448190E+00,4.664408E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999308E+01,0.000000E+00 +960001,fr,1,3.550000E+00,5.448190E+00,4.664408E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999308E+01,0.000000E+00 +960003,fr,1,3.550000E+00,5.448190E+00,4.664408E+01,5.000000E+00,Active Shallow Crust,2.400132E+02,5.799781E+01,0.000000E+00 +960024,fr,1,3.750000E+00,5.448190E+00,4.664408E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998900E+01,0.000000E+00 +960048,fr,1,3.950000E+00,5.448190E+00,4.664408E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +960058,fr,1,3.950000E+00,5.448190E+00,4.664408E+01,1.500000E+01,Active Shallow Crust,1.288996E+02,8.999345E+01,0.000000E+00 +960081,fr,1,4.150000E+00,5.448190E+00,4.664408E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.999306E+01,0.000000E+00 +960108,fr,1,4.450000E+00,5.448190E+00,4.664408E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +960120,fr,1,4.550000E+00,5.448190E+00,4.664408E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998905E+01,0.000000E+00 +960122,fr,1,4.550000E+00,5.448190E+00,4.664408E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998905E+01,0.000000E+00 +960192,fr,1,5.150000E+00,5.448190E+00,4.664408E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +960502,fr,1,3.650000E+00,4.636400E-01,5.122139E+01,1.500000E+01,Active Shallow Crust,1.288999E+02,8.996353E+01,0.000000E+00 +960505,fr,1,3.750000E+00,4.636400E-01,5.122139E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +960540,fr,1,4.050000E+00,4.636400E-01,5.122139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +960552,fr,1,4.150000E+00,4.636400E-01,5.122139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +960579,fr,1,4.350000E+00,4.636400E-01,5.122139E+01,5.000000E+00,Active Shallow Crust,2.400096E+02,5.799616E+01,0.000000E+00 +960636,fr,1,4.850000E+00,4.636400E-01,5.122139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +960964,fr,1,3.550000E+00,-9.257400E-01,4.225100E+01,1.500000E+01,Active Shallow Crust,2.400118E+02,5.799808E+01,0.000000E+00 +961068,fr,1,4.450000E+00,-9.257400E-01,4.225100E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +961440,fr,2,3.550000E+00,-2.119010E+00,4.895547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +961443,fr,1,3.550000E+00,-2.119010E+00,4.895547E+01,5.000000E+00,Active Shallow Crust,2.400128E+02,5.799796E+01,0.000000E+00 +961447,fr,1,3.550000E+00,-2.119010E+00,4.895547E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,-9.000000E+01 +961452,fr,3,3.650000E+00,-2.119010E+00,4.895547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999115E+01,0.000000E+00 +961453,fr,1,3.650000E+00,-2.119010E+00,4.895547E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999115E+01,0.000000E+00 +961464,fr,1,3.750000E+00,-2.119010E+00,4.895547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +961470,fr,1,3.750000E+00,-2.119010E+00,4.895547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,-9.000000E+01 +961471,fr,1,3.750000E+00,-2.119010E+00,4.895547E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,-9.000000E+01 +961477,fr,1,3.850000E+00,-2.119010E+00,4.895547E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +961488,fr,1,3.950000E+00,-2.119010E+00,4.895547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +961489,fr,2,3.950000E+00,-2.119010E+00,4.895547E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +961500,fr,1,4.050000E+00,-2.119010E+00,4.895547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999069E+01,0.000000E+00 +961524,fr,1,4.250000E+00,-2.119010E+00,4.895547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +961533,fr,1,4.250000E+00,-2.119010E+00,4.895547E+01,5.000000E+00,Active Shallow Crust,1.288938E+02,8.998104E+01,0.000000E+00 +961537,fr,1,4.350000E+00,-2.119010E+00,4.895547E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +961554,fr,1,4.450000E+00,-2.119010E+00,4.895547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,-9.000000E+01 +961569,fr,1,4.550000E+00,-2.119010E+00,4.895547E+01,5.000000E+00,Active Shallow Crust,1.288930E+02,8.998579E+01,0.000000E+00 +961572,fr,1,4.650000E+00,-2.119010E+00,4.895547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +961575,fr,1,4.650000E+00,-2.119010E+00,4.895547E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799443E+01,0.000000E+00 +961596,fr,1,4.850000E+00,-2.119010E+00,4.895547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +961645,fr,1,5.250000E+00,-2.119010E+00,4.895547E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +961674,fr,1,5.450000E+00,-2.119010E+00,4.895547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +961923,fr,2,3.550000E+00,3.974600E-01,4.712852E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799814E+01,0.000000E+00 +961926,fr,1,3.550000E+00,3.974600E-01,4.712852E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +961935,fr,1,3.650000E+00,3.974600E-01,4.712852E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801292E+01,0.000000E+00 +961944,fr,2,3.750000E+00,3.974600E-01,4.712852E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +961946,fr,1,3.750000E+00,3.974600E-01,4.712852E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +961956,fr,2,3.850000E+00,3.974600E-01,4.712852E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +961957,fr,2,3.850000E+00,3.974600E-01,4.712852E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +961963,fr,1,3.850000E+00,3.974600E-01,4.712852E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,-9.000000E+01 +961968,fr,1,3.950000E+00,3.974600E-01,4.712852E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +961969,fr,1,3.950000E+00,3.974600E-01,4.712852E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +961981,fr,1,4.050000E+00,3.974600E-01,4.712852E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +961993,fr,1,4.150000E+00,3.974600E-01,4.712852E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +962001,fr,1,4.150000E+00,3.974600E-01,4.712852E+01,5.000000E+00,Active Shallow Crust,1.288975E+02,8.999377E+01,0.000000E+00 +962009,fr,1,4.250000E+00,3.974600E-01,4.712852E+01,2.750000E+01,Active Shallow Crust,2.400077E+02,5.799409E+01,0.000000E+00 +962034,fr,1,4.450000E+00,3.974600E-01,4.712852E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +962041,fr,1,4.550000E+00,3.974600E-01,4.712852E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +962172,fr,1,5.650000E+00,3.974600E-01,4.712852E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +962894,fr,1,3.650000E+00,-6.793500E-01,4.624050E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +962898,fr,1,3.650000E+00,-6.793500E-01,4.624050E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,-9.000000E+01 +962904,fr,1,3.750000E+00,-6.793500E-01,4.624050E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +962917,fr,2,3.850000E+00,-6.793500E-01,4.624050E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +962919,fr,1,3.850000E+00,-6.793500E-01,4.624050E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799775E+01,0.000000E+00 +962922,fr,1,3.850000E+00,-6.793500E-01,4.624050E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +962926,fr,1,3.850000E+00,-6.793500E-01,4.624050E+01,1.500000E+01,Active Shallow Crust,1.288958E+02,8.999383E+01,0.000000E+00 +962940,fr,1,4.050000E+00,-6.793500E-01,4.624050E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +962947,fr,1,4.050000E+00,-6.793500E-01,4.624050E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,-9.000000E+01 +962979,fr,1,4.350000E+00,-6.793500E-01,4.624050E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799595E+01,0.000000E+00 +962988,fr,1,4.450000E+00,-6.793500E-01,4.624050E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +963001,fr,2,4.550000E+00,-6.793500E-01,4.624050E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +963052,fr,1,4.950000E+00,-6.793500E-01,4.624050E+01,1.500000E+01,Active Shallow Crust,2.400118E+02,5.800446E+01,0.000000E+00 +963183,fr,1,6.050000E+00,-6.793500E-01,4.624050E+01,5.000000E+00,Active Shallow Crust,2.400560E+02,5.800012E+01,0.000000E+00 +963360,fr,1,3.550000E+00,3.354790E+00,5.002519E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +963370,fr,1,3.550000E+00,3.354790E+00,5.002519E+01,1.500000E+01,Active Shallow Crust,1.288957E+02,8.999352E+01,0.000000E+00 +963372,fr,2,3.650000E+00,3.354790E+00,5.002519E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999134E+01,0.000000E+00 +963384,fr,1,3.750000E+00,3.354790E+00,5.002519E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +963420,fr,1,4.050000E+00,3.354790E+00,5.002519E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999089E+01,0.000000E+00 +963516,fr,1,4.850000E+00,3.354790E+00,5.002519E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +963841,fr,1,3.550000E+00,8.587040E+00,4.918494E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998682E+01,0.000000E+00 +963852,fr,1,3.650000E+00,8.587040E+00,4.918494E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998825E+01,0.000000E+00 +963853,fr,1,3.650000E+00,8.587040E+00,4.918494E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998825E+01,0.000000E+00 +963864,fr,3,3.750000E+00,8.587040E+00,4.918494E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +963885,fr,1,3.850000E+00,8.587040E+00,4.918494E+01,5.000000E+00,Active Shallow Crust,1.288943E+02,8.999533E+01,0.000000E+00 +963886,fr,1,3.850000E+00,8.587040E+00,4.918494E+01,1.500000E+01,Active Shallow Crust,1.288943E+02,8.999533E+01,0.000000E+00 +963887,fr,1,3.850000E+00,8.587040E+00,4.918494E+01,2.750000E+01,Active Shallow Crust,1.288943E+02,8.999533E+01,0.000000E+00 +963901,fr,1,4.050000E+00,8.587040E+00,4.918494E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999258E+01,0.000000E+00 +963912,fr,1,4.150000E+00,8.587040E+00,4.918494E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998679E+01,0.000000E+00 +963936,fr,1,4.350000E+00,8.587040E+00,4.918494E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +963938,fr,1,4.350000E+00,8.587040E+00,4.918494E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +963943,fr,1,4.350000E+00,8.587040E+00,4.918494E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998938E+01,-9.000000E+01 +963948,fr,1,4.450000E+00,8.587040E+00,4.918494E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +964351,fr,1,3.750000E+00,-3.385600E+00,4.349054E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999118E+01,-9.000000E+01 +964392,fr,1,4.150000E+00,-3.385600E+00,4.349054E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +964826,fr,1,3.750000E+00,5.406100E-01,4.444456E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +965280,fr,1,3.550000E+00,4.785270E+00,5.096035E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998730E+01,0.000000E+00 +965286,fr,1,3.550000E+00,4.785270E+00,5.096035E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998715E+01,-9.000000E+01 +965289,fr,1,3.550000E+00,4.785270E+00,5.096035E+01,5.000000E+00,Active Shallow Crust,1.288951E+02,8.999365E+01,0.000000E+00 +965293,fr,1,3.650000E+00,4.785270E+00,5.096035E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998868E+01,0.000000E+00 +965304,fr,1,3.750000E+00,4.785270E+00,5.096035E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +965328,fr,1,3.950000E+00,4.785270E+00,5.096035E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999198E+01,0.000000E+00 +965329,fr,1,3.950000E+00,4.785270E+00,5.096035E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999198E+01,0.000000E+00 +965331,fr,1,3.950000E+00,4.785270E+00,5.096035E+01,5.000000E+00,Active Shallow Crust,2.400205E+02,5.800513E+01,0.000000E+00 +965353,fr,1,4.150000E+00,4.785270E+00,5.096035E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +965424,fr,1,4.750000E+00,4.785270E+00,5.096035E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +965760,fr,1,3.550000E+00,-2.039710E+00,4.267798E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +965761,fr,1,3.550000E+00,-2.039710E+00,4.267798E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +965769,fr,1,3.550000E+00,-2.039710E+00,4.267798E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999444E+01,0.000000E+00 +965772,fr,1,3.650000E+00,-2.039710E+00,4.267798E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +965777,fr,1,3.650000E+00,-2.039710E+00,4.267798E+01,2.750000E+01,Active Shallow Crust,2.400011E+02,5.801244E+01,0.000000E+00 +965783,fr,1,3.650000E+00,-2.039710E+00,4.267798E+01,2.750000E+01,Active Shallow Crust,1.289007E+02,8.996371E+01,0.000000E+00 +965790,fr,1,3.750000E+00,-2.039710E+00,4.267798E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,-9.000000E+01 +965800,fr,1,3.850000E+00,-2.039710E+00,4.267798E+01,1.500000E+01,Active Shallow Crust,2.400106E+02,5.799777E+01,0.000000E+00 +965808,fr,2,3.950000E+00,-2.039710E+00,4.267798E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +965820,fr,1,4.050000E+00,-2.039710E+00,4.267798E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +965821,fr,1,4.050000E+00,-2.039710E+00,4.267798E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +965844,fr,1,4.250000E+00,-2.039710E+00,4.267798E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +965848,fr,1,4.250000E+00,-2.039710E+00,4.267798E+01,1.500000E+01,Active Shallow Crust,2.400068E+02,5.799419E+01,0.000000E+00 +965856,fr,1,4.350000E+00,-2.039710E+00,4.267798E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +965865,fr,1,4.350000E+00,-2.039710E+00,4.267798E+01,5.000000E+00,Active Shallow Crust,1.288988E+02,8.998263E+01,0.000000E+00 +965977,fr,1,5.350000E+00,-2.039710E+00,4.267798E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +965981,fr,1,5.350000E+00,-2.039710E+00,4.267798E+01,2.750000E+01,Active Shallow Crust,2.400269E+02,5.799735E+01,0.000000E+00 +966135,fr,1,6.650000E+00,-2.055253E+00,4.269776E+01,9.065474E+00,Active Shallow Crust,2.400998E+02,5.799995E+01,0.000000E+00 +966300,fr,1,4.050000E+00,-6.226510E+00,4.787210E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +966422,fr,1,5.050000E+00,-6.226510E+00,4.787210E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +966780,fr,1,4.050000E+00,4.615310E+00,4.882623E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998880E+01,0.000000E+00 +967201,fr,1,3.550000E+00,2.501960E+00,4.105726E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +967203,fr,1,3.550000E+00,2.501960E+00,4.105726E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799816E+01,0.000000E+00 +967224,fr,3,3.750000E+00,2.501960E+00,4.105726E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +967260,fr,1,4.050000E+00,2.501960E+00,4.105726E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +967275,fr,1,4.150000E+00,2.501960E+00,4.105726E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.799702E+01,0.000000E+00 +967305,fr,1,4.350000E+00,2.501960E+00,4.105726E+01,5.000000E+00,Active Shallow Crust,1.288990E+02,8.998256E+01,0.000000E+00 +967314,fr,1,4.450000E+00,2.501960E+00,4.105726E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999045E+01,-9.000000E+01 +967687,fr,1,3.550000E+00,6.737650E+00,4.391974E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999265E+01,-9.000000E+01 +967694,fr,1,3.650000E+00,6.737650E+00,4.391974E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998705E+01,0.000000E+00 +967704,fr,2,3.750000E+00,6.737650E+00,4.391974E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998846E+01,0.000000E+00 +967705,fr,1,3.750000E+00,6.737650E+00,4.391974E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998846E+01,0.000000E+00 +967719,fr,1,3.850000E+00,6.737650E+00,4.391974E+01,5.000000E+00,Active Shallow Crust,2.400099E+02,5.799818E+01,0.000000E+00 +967741,fr,2,4.050000E+00,6.737650E+00,4.391974E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999183E+01,0.000000E+00 +967749,fr,1,4.050000E+00,6.737650E+00,4.391974E+01,5.000000E+00,Active Shallow Crust,1.288913E+02,8.999387E+01,0.000000E+00 +967752,fr,1,4.150000E+00,6.737650E+00,4.391974E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +967753,fr,1,4.150000E+00,6.737650E+00,4.391974E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +967764,fr,1,4.250000E+00,6.737650E+00,4.391974E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +967800,fr,1,4.550000E+00,6.737650E+00,4.391974E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +967809,fr,1,4.550000E+00,6.737650E+00,4.391974E+01,5.000000E+00,Active Shallow Crust,1.288941E+02,8.998602E+01,0.000000E+00 +967812,fr,1,4.650000E+00,6.737650E+00,4.391974E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +967837,fr,1,4.850000E+00,6.737650E+00,4.391974E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +967860,fr,1,5.050000E+00,6.737650E+00,4.391974E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +968196,fr,1,3.850000E+00,1.414350E+00,4.785608E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +968223,fr,1,4.050000E+00,1.414350E+00,4.785608E+01,5.000000E+00,Active Shallow Crust,2.400063E+02,5.800591E+01,0.000000E+00 +968652,fr,1,3.650000E+00,-5.168970E+00,4.922200E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998826E+01,0.000000E+00 +968688,fr,1,3.950000E+00,-5.168970E+00,4.922200E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999169E+01,0.000000E+00 +968722,fr,1,4.150000E+00,-5.168970E+00,4.922200E+01,1.500000E+01,Active Shallow Crust,1.288976E+02,8.999340E+01,0.000000E+00 +969121,fr,1,3.550000E+00,4.923830E+00,5.024127E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998710E+01,0.000000E+00 +969129,fr,1,3.550000E+00,4.923830E+00,5.024127E+01,5.000000E+00,Active Shallow Crust,1.288953E+02,8.999355E+01,0.000000E+00 +969133,fr,1,3.650000E+00,4.923830E+00,5.024127E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998850E+01,0.000000E+00 +969186,fr,1,4.050000E+00,4.923830E+00,5.024127E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998899E+01,-9.000000E+01 +969279,fr,1,4.850000E+00,4.923830E+00,5.024127E+01,5.000000E+00,Active Shallow Crust,2.400189E+02,5.800262E+01,0.000000E+00 +969624,fr,1,3.750000E+00,4.078500E+00,4.925128E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +970094,fr,2,3.650000E+00,1.777020E+00,5.191295E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +970105,fr,1,3.750000E+00,1.777020E+00,5.191295E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +970110,fr,1,3.750000E+00,1.777020E+00,5.191295E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +970170,fr,1,4.250000E+00,1.777020E+00,5.191295E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,-9.000000E+01 +970599,fr,1,3.850000E+00,5.557770E+00,4.995464E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799807E+01,0.000000E+00 +970620,fr,1,4.050000E+00,5.557770E+00,4.995464E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998905E+01,0.000000E+00 +970668,fr,1,4.450000E+00,5.557770E+00,4.995464E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999079E+01,0.000000E+00 +970705,fr,1,4.750000E+00,5.557770E+00,4.995464E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +971040,fr,6,3.550000E+00,7.553440E+00,4.427978E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999278E+01,0.000000E+00 +971041,fr,3,3.550000E+00,7.553440E+00,4.427978E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999278E+01,0.000000E+00 +971042,fr,2,3.550000E+00,7.553440E+00,4.427978E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999278E+01,0.000000E+00 +971043,fr,2,3.550000E+00,7.553440E+00,4.427978E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799905E+01,0.000000E+00 +971046,fr,2,3.550000E+00,7.553440E+00,4.427978E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999270E+01,-9.000000E+01 +971047,fr,1,3.550000E+00,7.553440E+00,4.427978E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999270E+01,-9.000000E+01 +971049,fr,1,3.550000E+00,7.553440E+00,4.427978E+01,5.000000E+00,Active Shallow Crust,1.288971E+02,8.999278E+01,0.000000E+00 +971052,fr,8,3.650000E+00,7.553440E+00,4.427978E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998713E+01,0.000000E+00 +971056,fr,2,3.650000E+00,7.553440E+00,4.427978E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801250E+01,0.000000E+00 +971061,fr,1,3.650000E+00,7.553440E+00,4.427978E+01,5.000000E+00,Active Shallow Crust,1.288999E+02,8.996348E+01,0.000000E+00 +971064,fr,4,3.750000E+00,7.553440E+00,4.427978E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998853E+01,0.000000E+00 +971065,fr,3,3.750000E+00,7.553440E+00,4.427978E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998853E+01,0.000000E+00 +971068,fr,1,3.750000E+00,7.553440E+00,4.427978E+01,1.500000E+01,Active Shallow Crust,2.400069E+02,5.801811E+01,0.000000E+00 +971073,fr,1,3.750000E+00,7.553440E+00,4.427978E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.996745E+01,0.000000E+00 +971076,fr,3,3.850000E+00,7.553440E+00,4.427978E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +971078,fr,1,3.850000E+00,7.553440E+00,4.427978E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +971088,fr,1,3.950000E+00,7.553440E+00,4.427978E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999089E+01,0.000000E+00 +971089,fr,2,3.950000E+00,7.553440E+00,4.427978E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999089E+01,0.000000E+00 +971091,fr,1,3.950000E+00,7.553440E+00,4.427978E+01,5.000000E+00,Active Shallow Crust,2.400188E+02,5.800517E+01,0.000000E+00 +971094,fr,1,3.950000E+00,7.553440E+00,4.427978E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,-9.000000E+01 +971097,fr,1,3.950000E+00,7.553440E+00,4.427978E+01,5.000000E+00,Active Shallow Crust,1.289017E+02,8.999317E+01,0.000000E+00 +971100,fr,4,4.050000E+00,7.553440E+00,4.427978E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999188E+01,0.000000E+00 +971101,fr,1,4.050000E+00,7.553440E+00,4.427978E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999188E+01,0.000000E+00 +971109,fr,1,4.050000E+00,7.553440E+00,4.427978E+01,5.000000E+00,Active Shallow Crust,1.288904E+02,8.999391E+01,0.000000E+00 +971112,fr,1,4.150000E+00,7.553440E+00,4.427978E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +971113,fr,1,4.150000E+00,7.553440E+00,4.427978E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +971115,fr,2,4.150000E+00,7.553440E+00,4.427978E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799716E+01,0.000000E+00 +971116,fr,1,4.150000E+00,7.553440E+00,4.427978E+01,1.500000E+01,Active Shallow Crust,2.400076E+02,5.799719E+01,0.000000E+00 +971124,fr,2,4.250000E+00,7.553440E+00,4.427978E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +971125,fr,1,4.250000E+00,7.553440E+00,4.427978E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +971128,fr,1,4.250000E+00,7.553440E+00,4.427978E+01,1.500000E+01,Active Shallow Crust,2.400070E+02,5.799443E+01,0.000000E+00 +971136,fr,2,4.350000E+00,7.553440E+00,4.427978E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999138E+01,0.000000E+00 +971138,fr,2,4.350000E+00,7.553440E+00,4.427978E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999138E+01,0.000000E+00 +971148,fr,1,4.450000E+00,7.553440E+00,4.427978E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +971158,fr,1,4.450000E+00,7.553440E+00,4.427978E+01,1.500000E+01,Active Shallow Crust,1.288930E+02,8.999360E+01,0.000000E+00 +971184,fr,1,4.750000E+00,7.553440E+00,4.427978E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998912E+01,0.000000E+00 +971188,fr,1,4.750000E+00,7.553440E+00,4.427978E+01,1.500000E+01,Active Shallow Crust,2.400064E+02,5.800454E+01,0.000000E+00 +971194,fr,1,4.750000E+00,7.553440E+00,4.427978E+01,1.500000E+01,Active Shallow Crust,1.288896E+02,8.998804E+01,0.000000E+00 +971221,fr,2,5.050000E+00,7.553440E+00,4.427978E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +971222,fr,1,5.050000E+00,7.553440E+00,4.427978E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +971229,fr,1,5.050000E+00,7.553440E+00,4.427978E+01,5.000000E+00,Active Shallow Crust,1.288864E+02,8.999079E+01,0.000000E+00 +971251,fr,1,5.250000E+00,7.553440E+00,4.427978E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +971262,fr,1,5.350000E+00,7.553440E+00,4.427978E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +971520,fr,1,3.550000E+00,-5.707940E+00,4.943830E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998689E+01,0.000000E+00 +971580,fr,1,4.050000E+00,-5.707940E+00,4.943830E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998894E+01,0.000000E+00 +972012,fr,1,3.650000E+00,1.893180E+00,5.242735E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +972480,fr,1,3.550000E+00,1.679620E+00,4.866151E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +972504,fr,2,3.750000E+00,1.679620E+00,4.866151E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +972516,fr,1,3.850000E+00,1.679620E+00,4.866151E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +972960,fr,3,3.550000E+00,3.885220E+00,5.021725E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +972961,fr,1,3.550000E+00,3.885220E+00,5.021725E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +972984,fr,1,3.750000E+00,3.885220E+00,5.021725E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +972996,fr,1,3.850000E+00,3.885220E+00,5.021725E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +972997,fr,2,3.850000E+00,3.885220E+00,5.021725E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +973009,fr,1,3.950000E+00,3.885220E+00,5.021725E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +973020,fr,1,4.050000E+00,3.885220E+00,5.021725E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +973104,fr,1,4.750000E+00,3.885220E+00,5.021725E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +973440,fr,2,3.550000E+00,-7.782600E-01,4.758128E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +973442,fr,1,3.550000E+00,-7.782600E-01,4.758128E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +973443,fr,1,3.550000E+00,-7.782600E-01,4.758128E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799825E+01,0.000000E+00 +973454,fr,1,3.650000E+00,-7.782600E-01,4.758128E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +973458,fr,1,3.650000E+00,-7.782600E-01,4.758128E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +973471,fr,2,3.750000E+00,-7.782600E-01,4.758128E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,-9.000000E+01 +973474,fr,1,3.750000E+00,-7.782600E-01,4.758128E+01,1.500000E+01,Active Shallow Crust,1.288964E+02,8.996739E+01,0.000000E+00 +973479,fr,1,3.850000E+00,-7.782600E-01,4.758128E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799780E+01,0.000000E+00 +973490,fr,1,3.950000E+00,-7.782600E-01,4.758128E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +973503,fr,1,4.050000E+00,-7.782600E-01,4.758128E+01,5.000000E+00,Active Shallow Crust,2.400062E+02,5.800583E+01,0.000000E+00 +973512,fr,1,4.150000E+00,-7.782600E-01,4.758128E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +973521,fr,1,4.150000E+00,-7.782600E-01,4.758128E+01,5.000000E+00,Active Shallow Crust,1.288974E+02,8.999361E+01,0.000000E+00 +973524,fr,1,4.250000E+00,-7.782600E-01,4.758128E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +973526,fr,2,4.250000E+00,-7.782600E-01,4.758128E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +973536,fr,1,4.350000E+00,-7.782600E-01,4.758128E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +973537,fr,1,4.350000E+00,-7.782600E-01,4.758128E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +973545,fr,1,4.350000E+00,-7.782600E-01,4.758128E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.998277E+01,0.000000E+00 +973548,fr,1,4.450000E+00,-7.782600E-01,4.758128E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +973561,fr,1,4.550000E+00,-7.782600E-01,4.758128E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +973685,fr,1,5.550000E+00,-7.782600E-01,4.758128E+01,2.750000E+01,Active Shallow Crust,2.400337E+02,5.799972E+01,0.000000E+00 +973944,fr,1,3.750000E+00,4.536300E+00,4.741934E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +973972,fr,1,3.950000E+00,4.536300E+00,4.741934E+01,1.500000E+01,Active Shallow Crust,2.400195E+02,5.800541E+01,0.000000E+00 +974040,fr,1,4.550000E+00,4.536300E+00,4.741934E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +974076,fr,1,4.850000E+00,4.536300E+00,4.741934E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +974400,fr,1,3.550000E+00,4.310610E+00,4.373663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999271E+01,0.000000E+00 +974401,fr,1,3.550000E+00,4.310610E+00,4.373663E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999271E+01,0.000000E+00 +974421,fr,1,3.650000E+00,4.310610E+00,4.373663E+01,5.000000E+00,Active Shallow Crust,1.289013E+02,8.996347E+01,0.000000E+00 +974424,fr,1,3.750000E+00,4.310610E+00,4.373663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +974475,fr,1,4.150000E+00,4.310610E+00,4.373663E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.799678E+01,0.000000E+00 +974484,fr,1,4.250000E+00,4.310610E+00,4.373663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +974500,fr,1,4.350000E+00,4.310610E+00,4.373663E+01,1.500000E+01,Active Shallow Crust,2.400076E+02,5.799583E+01,0.000000E+00 +974526,fr,1,4.550000E+00,4.310610E+00,4.373663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,-9.000000E+01 +974583,fr,1,5.050000E+00,4.310610E+00,4.373663E+01,5.000000E+00,Active Shallow Crust,2.400208E+02,5.799715E+01,0.000000E+00 +974880,fr,1,3.550000E+00,7.725000E-02,5.094369E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +974894,fr,1,3.650000E+00,7.725000E-02,5.094369E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +974928,fr,1,3.950000E+00,7.725000E-02,5.094369E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +974959,fr,1,4.150000E+00,7.725000E-02,5.094369E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +974964,fr,1,4.250000E+00,7.725000E-02,5.094369E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999002E+01,0.000000E+00 +975024,fr,1,4.750000E+00,7.725000E-02,5.094369E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +975039,fr,1,4.850000E+00,7.725000E-02,5.094369E+01,5.000000E+00,Active Shallow Crust,2.400191E+02,5.800269E+01,0.000000E+00 +975360,fr,2,3.550000E+00,1.854590E+00,5.101480E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +975372,fr,1,3.650000E+00,1.854590E+00,5.101480E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +975384,fr,3,3.750000E+00,1.854590E+00,5.101480E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +975396,fr,1,3.850000E+00,1.854590E+00,5.101480E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +975408,fr,2,3.950000E+00,1.854590E+00,5.101480E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +975419,fr,1,3.950000E+00,1.854590E+00,5.101480E+01,2.750000E+01,Active Shallow Crust,1.288996E+02,8.999400E+01,0.000000E+00 +975444,fr,1,4.250000E+00,1.854590E+00,5.101480E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +975457,fr,1,4.350000E+00,1.854590E+00,5.101480E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +975468,fr,1,4.450000E+00,1.854590E+00,5.101480E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +975469,fr,1,4.450000E+00,1.854590E+00,5.101480E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +975518,fr,1,4.850000E+00,1.854590E+00,5.101480E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +975542,fr,1,5.050000E+00,1.854590E+00,5.101480E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +975564,fr,1,5.250000E+00,1.854590E+00,5.101480E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +975840,fr,4,3.550000E+00,2.337800E+00,4.250808E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +975841,fr,1,3.550000E+00,2.337800E+00,4.250808E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +975850,fr,1,3.550000E+00,2.337800E+00,4.250808E+01,1.500000E+01,Active Shallow Crust,1.288962E+02,8.999442E+01,0.000000E+00 +975852,fr,1,3.650000E+00,2.337800E+00,4.250808E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +975853,fr,1,3.650000E+00,2.337800E+00,4.250808E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +975856,fr,1,3.650000E+00,2.337800E+00,4.250808E+01,1.500000E+01,Active Shallow Crust,2.400009E+02,5.801251E+01,0.000000E+00 +975858,fr,1,3.650000E+00,2.337800E+00,4.250808E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +975864,fr,1,3.750000E+00,2.337800E+00,4.250808E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999114E+01,0.000000E+00 +975865,fr,1,3.750000E+00,2.337800E+00,4.250808E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999114E+01,0.000000E+00 +975873,fr,1,3.750000E+00,2.337800E+00,4.250808E+01,5.000000E+00,Active Shallow Crust,1.288975E+02,8.996742E+01,0.000000E+00 +975876,fr,2,3.850000E+00,2.337800E+00,4.250808E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +975882,fr,1,3.850000E+00,2.337800E+00,4.250808E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998935E+01,-9.000000E+01 +975896,fr,1,3.950000E+00,2.337800E+00,4.250808E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999051E+01,-9.000000E+01 +975912,fr,1,4.150000E+00,2.337800E+00,4.250808E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +975913,fr,1,4.150000E+00,2.337800E+00,4.250808E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +975914,fr,1,4.150000E+00,2.337800E+00,4.250808E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +975915,fr,1,4.150000E+00,2.337800E+00,4.250808E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799730E+01,0.000000E+00 +975960,fr,2,4.550000E+00,2.337800E+00,4.250808E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +976072,fr,1,5.450000E+00,2.337800E+00,4.250808E+01,1.500000E+01,Active Shallow Crust,2.400258E+02,5.799793E+01,0.000000E+00 +976122,fr,1,5.850000E+00,2.337800E+00,4.250808E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +976326,fr,1,3.550000E+00,7.124880E+00,4.581282E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999289E+01,-9.000000E+01 +976332,fr,1,3.650000E+00,7.124880E+00,4.581282E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998747E+01,0.000000E+00 +976338,fr,1,3.650000E+00,7.124880E+00,4.581282E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998733E+01,-9.000000E+01 +976344,fr,2,3.750000E+00,7.124880E+00,4.581282E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998883E+01,0.000000E+00 +976350,fr,2,3.750000E+00,7.124880E+00,4.581282E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998870E+01,-9.000000E+01 +976356,fr,1,3.850000E+00,7.124880E+00,4.581282E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +976363,fr,1,3.850000E+00,7.124880E+00,4.581282E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,-9.000000E+01 +976368,fr,2,3.950000E+00,7.124880E+00,4.581282E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999113E+01,0.000000E+00 +976609,fr,1,5.950000E+00,7.124880E+00,4.581282E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +976800,fr,2,3.550000E+00,2.121080E+00,4.524319E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +976804,fr,1,3.550000E+00,2.121080E+00,4.524319E+01,1.500000E+01,Active Shallow Crust,2.400117E+02,5.799862E+01,0.000000E+00 +976806,fr,1,3.550000E+00,2.121080E+00,4.524319E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,-9.000000E+01 +976812,fr,1,3.650000E+00,2.121080E+00,4.524319E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +976824,fr,1,3.750000E+00,2.121080E+00,4.524319E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +976887,fr,1,4.250000E+00,2.121080E+00,4.524319E+01,5.000000E+00,Active Shallow Crust,2.400072E+02,5.799398E+01,0.000000E+00 +976956,fr,1,4.850000E+00,2.121080E+00,4.524319E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +977333,fr,1,3.950000E+00,-2.162050E+00,4.404828E+01,2.750000E+01,Active Shallow Crust,2.400191E+02,5.800506E+01,0.000000E+00 +977787,fr,1,3.750000E+00,6.379710E+00,4.267237E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.801687E+01,0.000000E+00 +978240,fr,5,3.550000E+00,6.563640E+00,4.587662E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999298E+01,0.000000E+00 +978241,fr,1,3.550000E+00,6.563640E+00,4.587662E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999298E+01,0.000000E+00 +978249,fr,1,3.550000E+00,6.563640E+00,4.587662E+01,5.000000E+00,Active Shallow Crust,1.288973E+02,8.999298E+01,0.000000E+00 +978252,fr,2,3.650000E+00,6.563640E+00,4.587662E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998749E+01,0.000000E+00 +978258,fr,1,3.650000E+00,6.563640E+00,4.587662E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998734E+01,-9.000000E+01 +978264,fr,1,3.750000E+00,6.563640E+00,4.587662E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +978266,fr,1,3.750000E+00,6.563640E+00,4.587662E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +978271,fr,2,3.750000E+00,6.563640E+00,4.587662E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998872E+01,-9.000000E+01 +978273,fr,1,3.750000E+00,6.563640E+00,4.587662E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.996748E+01,0.000000E+00 +978288,fr,4,3.950000E+00,6.563640E+00,4.587662E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999114E+01,0.000000E+00 +978297,fr,2,3.950000E+00,6.563640E+00,4.587662E+01,5.000000E+00,Active Shallow Crust,1.289000E+02,8.999335E+01,0.000000E+00 +978298,fr,1,3.950000E+00,6.563640E+00,4.587662E+01,1.500000E+01,Active Shallow Crust,1.289000E+02,8.999335E+01,0.000000E+00 +978300,fr,1,4.050000E+00,6.563640E+00,4.587662E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998816E+01,0.000000E+00 +978301,fr,1,4.050000E+00,6.563640E+00,4.587662E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998816E+01,0.000000E+00 +978309,fr,1,4.050000E+00,6.563640E+00,4.587662E+01,5.000000E+00,Active Shallow Crust,1.288910E+02,8.999408E+01,0.000000E+00 +978317,fr,1,4.150000E+00,6.563640E+00,4.587662E+01,2.750000E+01,Active Shallow Crust,2.400084E+02,5.799703E+01,0.000000E+00 +978318,fr,1,4.150000E+00,6.563640E+00,4.587662E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998932E+01,-9.000000E+01 +978330,fr,1,4.250000E+00,6.563640E+00,4.587662E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,-9.000000E+01 +978336,fr,1,4.350000E+00,6.563640E+00,4.587662E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +978360,fr,1,4.550000E+00,6.563640E+00,4.587662E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998890E+01,0.000000E+00 +978366,fr,1,4.550000E+00,6.563640E+00,4.587662E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999101E+01,-9.000000E+01 +978375,fr,1,4.650000E+00,6.563640E+00,4.587662E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.799422E+01,0.000000E+00 +978413,fr,1,4.950000E+00,6.563640E+00,4.587662E+01,2.750000E+01,Active Shallow Crust,2.400118E+02,5.800416E+01,0.000000E+00 +978472,fr,1,5.450000E+00,6.563640E+00,4.587662E+01,1.500000E+01,Active Shallow Crust,2.400284E+02,5.799839E+01,0.000000E+00 +978720,fr,2,3.550000E+00,4.387030E+00,4.454085E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999281E+01,0.000000E+00 +978729,fr,1,3.550000E+00,4.387030E+00,4.454085E+01,5.000000E+00,Active Shallow Crust,1.288955E+02,8.999641E+01,0.000000E+00 +978736,fr,1,3.650000E+00,4.387030E+00,4.454085E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801265E+01,0.000000E+00 +978744,fr,1,3.750000E+00,4.387030E+00,4.454085E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998858E+01,0.000000E+00 +978750,fr,1,3.750000E+00,4.387030E+00,4.454085E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998845E+01,-9.000000E+01 +978763,fr,1,3.850000E+00,4.387030E+00,4.454085E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998971E+01,-9.000000E+01 +978769,fr,1,3.950000E+00,4.387030E+00,4.454085E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +978774,fr,1,3.950000E+00,4.387030E+00,4.454085E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999082E+01,-9.000000E+01 +978780,fr,1,4.050000E+00,4.387030E+00,4.454085E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999191E+01,0.000000E+00 +978795,fr,1,4.150000E+00,4.387030E+00,4.454085E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.799758E+01,0.000000E+00 +978927,fr,1,5.250000E+00,4.387030E+00,4.454085E+01,5.000000E+00,Active Shallow Crust,2.400242E+02,5.800007E+01,0.000000E+00 +979200,fr,2,3.550000E+00,-1.165460E+00,4.915867E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +979201,fr,1,3.550000E+00,-1.165460E+00,4.915867E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +979209,fr,1,3.550000E+00,-1.165460E+00,4.915867E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999341E+01,0.000000E+00 +979211,fr,1,3.550000E+00,-1.165460E+00,4.915867E+01,2.750000E+01,Active Shallow Crust,1.288960E+02,8.999341E+01,0.000000E+00 +979214,fr,1,3.650000E+00,-1.165460E+00,4.915867E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +979219,fr,1,3.650000E+00,-1.165460E+00,4.915867E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +979224,fr,2,3.750000E+00,-1.165460E+00,4.915867E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +979227,fr,1,3.750000E+00,-1.165460E+00,4.915867E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.801779E+01,0.000000E+00 +979233,fr,1,3.750000E+00,-1.165460E+00,4.915867E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.996730E+01,0.000000E+00 +979236,fr,2,3.850000E+00,-1.165460E+00,4.915867E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +979248,fr,2,3.950000E+00,-1.165460E+00,4.915867E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +979249,fr,1,3.950000E+00,-1.165460E+00,4.915867E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +979252,fr,1,3.950000E+00,-1.165460E+00,4.915867E+01,1.500000E+01,Active Shallow Crust,2.400203E+02,5.800486E+01,0.000000E+00 +979261,fr,1,4.050000E+00,-1.165460E+00,4.915867E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +979263,fr,1,4.050000E+00,-1.165460E+00,4.915867E+01,5.000000E+00,Active Shallow Crust,2.400064E+02,5.800595E+01,0.000000E+00 +979270,fr,1,4.050000E+00,-1.165460E+00,4.915867E+01,1.500000E+01,Active Shallow Crust,1.288900E+02,8.999351E+01,0.000000E+00 +979272,fr,1,4.150000E+00,-1.165460E+00,4.915867E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +979332,fr,1,4.650000E+00,-1.165460E+00,4.915867E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +979447,fr,1,5.550000E+00,-1.165460E+00,4.915867E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +979681,fr,3,3.550000E+00,9.371120E+00,4.850391E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998664E+01,0.000000E+00 +979684,fr,1,3.550000E+00,9.371120E+00,4.850391E+01,1.500000E+01,Active Shallow Crust,2.400127E+02,5.799584E+01,0.000000E+00 +979686,fr,1,3.550000E+00,9.371120E+00,4.850391E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998648E+01,-9.000000E+01 +979692,fr,3,3.650000E+00,9.371120E+00,4.850391E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998809E+01,0.000000E+00 +979698,fr,1,3.650000E+00,9.371120E+00,4.850391E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998795E+01,-9.000000E+01 +979704,fr,3,3.750000E+00,9.371120E+00,4.850391E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +979714,fr,1,3.750000E+00,9.371120E+00,4.850391E+01,1.500000E+01,Active Shallow Crust,1.288941E+02,8.996752E+01,0.000000E+00 +979716,fr,1,3.850000E+00,9.371120E+00,4.850391E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +979717,fr,1,3.850000E+00,9.371120E+00,4.850391E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +979718,fr,1,3.850000E+00,9.371120E+00,4.850391E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +979755,fr,1,4.150000E+00,9.371120E+00,4.850391E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799785E+01,0.000000E+00 +979805,fr,1,4.550000E+00,9.371120E+00,4.850391E+01,2.750000E+01,Active Shallow Crust,2.400098E+02,5.799781E+01,0.000000E+00 +980206,fr,1,3.850000E+00,4.853170E+00,4.234235E+01,1.500000E+01,Active Shallow Crust,1.288960E+02,8.999472E+01,0.000000E+00 +980280,fr,1,4.550000E+00,4.853170E+00,4.234235E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +980640,fr,1,3.550000E+00,-1.536180E+00,4.886557E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +980646,fr,1,3.550000E+00,-1.536180E+00,4.886557E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +980649,fr,1,3.550000E+00,-1.536180E+00,4.886557E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999337E+01,0.000000E+00 +980652,fr,1,3.650000E+00,-1.536180E+00,4.886557E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +980653,fr,1,3.650000E+00,-1.536180E+00,4.886557E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +980656,fr,1,3.650000E+00,-1.536180E+00,4.886557E+01,1.500000E+01,Active Shallow Crust,2.400013E+02,5.801299E+01,0.000000E+00 +980662,fr,1,3.650000E+00,-1.536180E+00,4.886557E+01,1.500000E+01,Active Shallow Crust,1.289004E+02,8.996344E+01,0.000000E+00 +980664,fr,1,3.750000E+00,-1.536180E+00,4.886557E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +980671,fr,1,3.750000E+00,-1.536180E+00,4.886557E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998934E+01,-9.000000E+01 +980676,fr,1,3.850000E+00,-1.536180E+00,4.886557E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +980688,fr,2,3.950000E+00,-1.536180E+00,4.886557E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +980700,fr,1,4.050000E+00,-1.536180E+00,4.886557E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +980702,fr,1,4.050000E+00,-1.536180E+00,4.886557E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +980703,fr,1,4.050000E+00,-1.536180E+00,4.886557E+01,5.000000E+00,Active Shallow Crust,2.400064E+02,5.800590E+01,0.000000E+00 +980769,fr,1,4.550000E+00,-1.536180E+00,4.886557E+01,5.000000E+00,Active Shallow Crust,1.288933E+02,8.998578E+01,0.000000E+00 +980811,fr,1,4.950000E+00,-1.536180E+00,4.886557E+01,5.000000E+00,Active Shallow Crust,2.400130E+02,5.800468E+01,0.000000E+00 +980868,fr,1,5.450000E+00,-1.536180E+00,4.886557E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +981120,fr,2,3.550000E+00,7.621120E+00,5.020615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998709E+01,0.000000E+00 +981121,fr,1,3.550000E+00,7.621120E+00,5.020615E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998709E+01,0.000000E+00 +981126,fr,1,3.550000E+00,7.621120E+00,5.020615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998695E+01,-9.000000E+01 +981129,fr,1,3.550000E+00,7.621120E+00,5.020615E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.999677E+01,0.000000E+00 +981130,fr,1,3.550000E+00,7.621120E+00,5.020615E+01,1.500000E+01,Active Shallow Crust,1.288950E+02,8.999677E+01,0.000000E+00 +981132,fr,5,3.650000E+00,7.621120E+00,5.020615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998849E+01,0.000000E+00 +981133,fr,1,3.650000E+00,7.621120E+00,5.020615E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998849E+01,0.000000E+00 +981135,fr,1,3.650000E+00,7.621120E+00,5.020615E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801340E+01,0.000000E+00 +981138,fr,1,3.650000E+00,7.621120E+00,5.020615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998837E+01,-9.000000E+01 +981144,fr,1,3.750000E+00,7.621120E+00,5.020615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +981156,fr,3,3.850000E+00,7.621120E+00,5.020615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +981157,fr,1,3.850000E+00,7.621120E+00,5.020615E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +981168,fr,4,3.950000E+00,7.621120E+00,5.020615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999185E+01,0.000000E+00 +981177,fr,1,3.950000E+00,7.621120E+00,5.020615E+01,5.000000E+00,Active Shallow Crust,1.288997E+02,8.999389E+01,0.000000E+00 +981180,fr,2,4.050000E+00,7.621120E+00,5.020615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +981181,fr,1,4.050000E+00,7.621120E+00,5.020615E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +981182,fr,1,4.050000E+00,7.621120E+00,5.020615E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +981193,fr,1,4.150000E+00,7.621120E+00,5.020615E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +981195,fr,3,4.150000E+00,7.621120E+00,5.020615E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.799739E+01,0.000000E+00 +981222,fr,1,4.350000E+00,7.621120E+00,5.020615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,-9.000000E+01 +981242,fr,1,4.550000E+00,7.621120E+00,5.020615E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +981246,fr,1,4.550000E+00,7.621120E+00,5.020615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,-9.000000E+01 +981270,fr,1,4.750000E+00,7.621120E+00,5.020615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,-9.000000E+01 +981612,fr,2,3.650000E+00,3.047430E+00,4.315193E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +981613,fr,1,3.650000E+00,3.047430E+00,4.315193E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +981636,fr,1,3.850000E+00,3.047430E+00,4.315193E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +981677,fr,1,4.150000E+00,3.047430E+00,4.315193E+01,2.750000E+01,Active Shallow Crust,2.400077E+02,5.799715E+01,0.000000E+00 +981768,fr,1,4.950000E+00,3.047430E+00,4.315193E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +982080,fr,2,3.550000E+00,-1.587380E+00,4.602604E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +982092,fr,1,3.650000E+00,-1.587380E+00,4.602604E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +982093,fr,1,3.650000E+00,-1.587380E+00,4.602604E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +982100,fr,1,3.650000E+00,-1.587380E+00,4.602604E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999053E+01,-9.000000E+01 +982104,fr,1,3.750000E+00,-1.587380E+00,4.602604E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +982107,fr,1,3.750000E+00,-1.587380E+00,4.602604E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801753E+01,0.000000E+00 +982116,fr,2,3.850000E+00,-1.587380E+00,4.602604E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +982119,fr,2,3.850000E+00,-1.587380E+00,4.602604E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799785E+01,0.000000E+00 +982128,fr,1,3.950000E+00,-1.587380E+00,4.602604E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +982135,fr,1,3.950000E+00,-1.587380E+00,4.602604E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +982137,fr,1,3.950000E+00,-1.587380E+00,4.602604E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.999338E+01,0.000000E+00 +982152,fr,1,4.150000E+00,-1.587380E+00,4.602604E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +982158,fr,1,4.150000E+00,-1.587380E+00,4.602604E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,-9.000000E+01 +982212,fr,2,4.650000E+00,-1.587380E+00,4.602604E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +982215,fr,1,4.650000E+00,-1.587380E+00,4.602604E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.799430E+01,0.000000E+00 +982272,fr,1,5.150000E+00,-1.587380E+00,4.602604E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +982575,fr,1,3.650000E+00,5.057920E+00,4.304028E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801189E+01,0.000000E+00 +982620,fr,1,4.050000E+00,5.057920E+00,4.304028E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999171E+01,0.000000E+00 +982621,fr,1,4.050000E+00,5.057920E+00,4.304028E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999171E+01,0.000000E+00 +983052,fr,1,3.650000E+00,-1.614680E+00,4.438139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +983532,fr,1,3.650000E+00,4.486300E+00,4.830314E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998804E+01,0.000000E+00 +983552,fr,1,3.750000E+00,4.486300E+00,4.830314E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998922E+01,-9.000000E+01 +983558,fr,1,3.850000E+00,4.486300E+00,4.830314E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +984000,fr,2,3.550000E+00,7.801410E+00,4.404105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999275E+01,0.000000E+00 +984012,fr,2,3.650000E+00,7.801410E+00,4.404105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998708E+01,0.000000E+00 +984015,fr,1,3.650000E+00,7.801410E+00,4.404105E+01,5.000000E+00,Active Shallow Crust,2.400015E+02,5.801242E+01,0.000000E+00 +984016,fr,1,3.650000E+00,7.801410E+00,4.404105E+01,1.500000E+01,Active Shallow Crust,2.400015E+02,5.801242E+01,0.000000E+00 +984024,fr,2,3.750000E+00,7.801410E+00,4.404105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998849E+01,0.000000E+00 +984045,fr,1,3.850000E+00,7.801410E+00,4.404105E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999487E+01,0.000000E+00 +984050,fr,1,3.950000E+00,7.801410E+00,4.404105E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999085E+01,0.000000E+00 +984060,fr,1,4.050000E+00,7.801410E+00,4.404105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999184E+01,0.000000E+00 +984061,fr,1,4.050000E+00,7.801410E+00,4.404105E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999184E+01,0.000000E+00 +984072,fr,1,4.150000E+00,7.801410E+00,4.404105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +984099,fr,1,4.350000E+00,7.801410E+00,4.404105E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.799622E+01,0.000000E+00 +984108,fr,1,4.450000E+00,7.801410E+00,4.404105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +984482,fr,2,3.550000E+00,-3.927200E-01,4.258328E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +984510,fr,1,3.750000E+00,-3.927200E-01,4.258328E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,-9.000000E+01 +984750,fr,1,5.750000E+00,-3.927200E-01,4.258328E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +984960,fr,2,3.550000E+00,1.869890E+00,4.548628E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +984972,fr,1,3.650000E+00,1.869890E+00,4.548628E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +984996,fr,1,3.850000E+00,1.869890E+00,4.548628E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +985000,fr,1,3.850000E+00,1.869890E+00,4.548628E+01,1.500000E+01,Active Shallow Crust,2.400105E+02,5.799789E+01,0.000000E+00 +985050,fr,1,4.250000E+00,1.869890E+00,4.548628E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,-9.000000E+01 +985482,fr,1,3.850000E+00,1.581800E-01,5.107778E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +985548,fr,1,4.450000E+00,1.581800E-01,5.107778E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +985920,fr,3,3.550000E+00,7.495870E+00,4.792422E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999324E+01,0.000000E+00 +985922,fr,1,3.550000E+00,7.495870E+00,4.792422E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999324E+01,0.000000E+00 +985923,fr,2,3.550000E+00,7.495870E+00,4.792422E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799845E+01,0.000000E+00 +985932,fr,1,3.650000E+00,7.495870E+00,4.792422E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998795E+01,0.000000E+00 +985933,fr,1,3.650000E+00,7.495870E+00,4.792422E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998795E+01,0.000000E+00 +985935,fr,2,3.650000E+00,7.495870E+00,4.792422E+01,5.000000E+00,Active Shallow Crust,2.400004E+02,5.801344E+01,0.000000E+00 +985941,fr,1,3.650000E+00,7.495870E+00,4.792422E+01,5.000000E+00,Active Shallow Crust,1.288994E+02,8.996355E+01,0.000000E+00 +985944,fr,4,3.750000E+00,7.495870E+00,4.792422E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +985945,fr,1,3.750000E+00,7.495870E+00,4.792422E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +985947,fr,1,3.750000E+00,7.495870E+00,4.792422E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.801818E+01,0.000000E+00 +985950,fr,1,3.750000E+00,7.495870E+00,4.792422E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,-9.000000E+01 +985956,fr,4,3.850000E+00,7.495870E+00,4.792422E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +985968,fr,1,3.950000E+00,7.495870E+00,4.792422E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999147E+01,0.000000E+00 +985970,fr,1,3.950000E+00,7.495870E+00,4.792422E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999147E+01,0.000000E+00 +985971,fr,1,3.950000E+00,7.495870E+00,4.792422E+01,5.000000E+00,Active Shallow Crust,2.400195E+02,5.800501E+01,0.000000E+00 +985972,fr,1,3.950000E+00,7.495870E+00,4.792422E+01,1.500000E+01,Active Shallow Crust,2.400195E+02,5.800501E+01,0.000000E+00 +985981,fr,2,4.050000E+00,7.495870E+00,4.792422E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998860E+01,0.000000E+00 +985992,fr,4,4.150000E+00,7.495870E+00,4.792422E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +985993,fr,1,4.150000E+00,7.495870E+00,4.792422E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +986002,fr,1,4.150000E+00,7.495870E+00,4.792422E+01,1.500000E+01,Active Shallow Crust,1.288970E+02,8.999323E+01,0.000000E+00 +986004,fr,1,4.250000E+00,7.495870E+00,4.792422E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +986008,fr,1,4.250000E+00,7.495870E+00,4.792422E+01,1.500000E+01,Active Shallow Crust,2.400082E+02,5.799370E+01,0.000000E+00 +986010,fr,1,4.250000E+00,7.495870E+00,4.792422E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,-9.000000E+01 +986019,fr,1,4.350000E+00,7.495870E+00,4.792422E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799627E+01,0.000000E+00 +986029,fr,1,4.450000E+00,7.495870E+00,4.792422E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +986065,fr,1,4.750000E+00,7.495870E+00,4.792422E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +986400,fr,4,3.550000E+00,1.633770E+00,5.100744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +986406,fr,1,3.550000E+00,1.633770E+00,5.100744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,-9.000000E+01 +986409,fr,1,3.550000E+00,1.633770E+00,5.100744E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999365E+01,0.000000E+00 +986412,fr,1,3.650000E+00,1.633770E+00,5.100744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +986421,fr,1,3.650000E+00,1.633770E+00,5.100744E+01,5.000000E+00,Active Shallow Crust,1.288999E+02,8.996349E+01,0.000000E+00 +986425,fr,2,3.750000E+00,1.633770E+00,5.100744E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +986436,fr,1,3.850000E+00,1.633770E+00,5.100744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +986439,fr,1,3.850000E+00,1.633770E+00,5.100744E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799798E+01,0.000000E+00 +986449,fr,1,3.950000E+00,1.633770E+00,5.100744E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +986451,fr,2,3.950000E+00,1.633770E+00,5.100744E+01,5.000000E+00,Active Shallow Crust,2.400206E+02,5.800508E+01,0.000000E+00 +986459,fr,2,3.950000E+00,1.633770E+00,5.100744E+01,2.750000E+01,Active Shallow Crust,1.288999E+02,8.999349E+01,0.000000E+00 +986461,fr,1,4.050000E+00,1.633770E+00,5.100744E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +986497,fr,1,4.350000E+00,1.633770E+00,5.100744E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +986508,fr,1,4.450000E+00,1.633770E+00,5.100744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +986592,fr,1,5.150000E+00,1.633770E+00,5.100744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +986617,fr,1,5.350000E+00,1.633770E+00,5.100744E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +986676,fr,1,5.850000E+00,1.633770E+00,5.100744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +986724,fr,1,6.250000E+00,1.633774E+00,5.100744E+01,6.744814E+00,Active Shallow Crust,3.600000E+02,8.999004E+01,0.000000E+00 +986880,fr,1,3.550000E+00,7.732500E+00,4.705164E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999313E+01,0.000000E+00 +986883,fr,2,3.550000E+00,7.732500E+00,4.705164E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799840E+01,0.000000E+00 +986889,fr,1,3.550000E+00,7.732500E+00,4.705164E+01,5.000000E+00,Active Shallow Crust,1.288955E+02,8.999657E+01,0.000000E+00 +986895,fr,1,3.650000E+00,7.732500E+00,4.705164E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801336E+01,0.000000E+00 +986896,fr,1,3.650000E+00,7.732500E+00,4.705164E+01,1.500000E+01,Active Shallow Crust,2.400010E+02,5.801336E+01,0.000000E+00 +986898,fr,1,3.650000E+00,7.732500E+00,4.705164E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998761E+01,-9.000000E+01 +986901,fr,1,3.650000E+00,7.732500E+00,4.705164E+01,5.000000E+00,Active Shallow Crust,1.288995E+02,8.996353E+01,0.000000E+00 +986902,fr,1,3.650000E+00,7.732500E+00,4.705164E+01,1.500000E+01,Active Shallow Crust,1.288995E+02,8.996353E+01,0.000000E+00 +986904,fr,2,3.750000E+00,7.732500E+00,4.705164E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998908E+01,0.000000E+00 +986915,fr,1,3.750000E+00,7.732500E+00,4.705164E+01,2.750000E+01,Active Shallow Crust,1.288960E+02,8.996750E+01,0.000000E+00 +986916,fr,1,3.850000E+00,7.732500E+00,4.705164E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +986917,fr,1,3.850000E+00,7.732500E+00,4.705164E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +986918,fr,1,3.850000E+00,7.732500E+00,4.705164E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +986926,fr,1,3.850000E+00,7.732500E+00,4.705164E+01,1.500000E+01,Active Shallow Crust,1.288951E+02,8.999271E+01,0.000000E+00 +986928,fr,2,3.950000E+00,7.732500E+00,4.705164E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +986942,fr,1,4.050000E+00,7.732500E+00,4.705164E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998841E+01,0.000000E+00 +986952,fr,2,4.150000E+00,7.732500E+00,4.705164E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +986962,fr,1,4.150000E+00,7.732500E+00,4.705164E+01,1.500000E+01,Active Shallow Crust,1.288973E+02,8.999311E+01,0.000000E+00 +986985,fr,1,4.350000E+00,7.732500E+00,4.705164E+01,5.000000E+00,Active Shallow Crust,1.288977E+02,8.998255E+01,0.000000E+00 +986991,fr,1,4.450000E+00,7.732500E+00,4.705164E+01,5.000000E+00,Active Shallow Crust,2.400052E+02,5.799508E+01,0.000000E+00 +986995,fr,1,4.450000E+00,7.732500E+00,4.705164E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +987002,fr,1,4.550000E+00,7.732500E+00,4.705164E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +987007,fr,1,4.550000E+00,7.732500E+00,4.705164E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998901E+01,-9.000000E+01 +987013,fr,1,4.650000E+00,7.732500E+00,4.705164E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +987015,fr,1,4.650000E+00,7.732500E+00,4.705164E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799416E+01,0.000000E+00 +987019,fr,1,4.650000E+00,7.732500E+00,4.705164E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,-9.000000E+01 +987073,fr,1,5.150000E+00,7.732500E+00,4.705164E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +987084,fr,1,5.250000E+00,7.732500E+00,4.705164E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +987408,fr,1,3.950000E+00,-2.638660E+00,4.385690E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999082E+01,0.000000E+00 +987470,fr,1,4.450000E+00,-2.638660E+00,4.385690E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +987504,fr,1,4.750000E+00,-2.638660E+00,4.385690E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +987840,fr,1,3.550000E+00,6.785320E+00,5.170563E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998750E+01,0.000000E+00 +987846,fr,1,3.550000E+00,6.785320E+00,5.170563E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998736E+01,-9.000000E+01 +987849,fr,1,3.550000E+00,6.785320E+00,5.170563E+01,5.000000E+00,Active Shallow Crust,1.288953E+02,8.999375E+01,0.000000E+00 +987993,fr,1,4.750000E+00,6.785320E+00,5.170563E+01,5.000000E+00,Active Shallow Crust,1.288868E+02,8.998808E+01,0.000000E+00 +988320,fr,3,3.550000E+00,8.525520E+00,4.790853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998648E+01,0.000000E+00 +988321,fr,1,3.550000E+00,8.525520E+00,4.790853E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998648E+01,0.000000E+00 +988323,fr,1,3.550000E+00,8.525520E+00,4.790853E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799793E+01,0.000000E+00 +988339,fr,1,3.650000E+00,8.525520E+00,4.790853E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998781E+01,-9.000000E+01 +988353,fr,1,3.750000E+00,8.525520E+00,4.790853E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.996751E+01,0.000000E+00 +988368,fr,2,3.950000E+00,8.525520E+00,4.790853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999147E+01,0.000000E+00 +988370,fr,1,3.950000E+00,8.525520E+00,4.790853E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999147E+01,0.000000E+00 +988381,fr,1,4.050000E+00,8.525520E+00,4.790853E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999240E+01,0.000000E+00 +988383,fr,2,4.050000E+00,8.525520E+00,4.790853E+01,5.000000E+00,Active Shallow Crust,2.400056E+02,5.800699E+01,0.000000E+00 +988386,fr,1,4.050000E+00,8.525520E+00,4.790853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999231E+01,-9.000000E+01 +988404,fr,2,4.250000E+00,8.525520E+00,4.790853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998792E+01,0.000000E+00 +988405,fr,1,4.250000E+00,8.525520E+00,4.790853E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998792E+01,0.000000E+00 +988428,fr,1,4.450000E+00,8.525520E+00,4.790853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +988432,fr,1,4.450000E+00,8.525520E+00,4.790853E+01,1.500000E+01,Active Shallow Crust,2.400053E+02,5.799499E+01,0.000000E+00 +988434,fr,1,4.450000E+00,8.525520E+00,4.790853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,-9.000000E+01 +988446,fr,1,4.550000E+00,8.525520E+00,4.790853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999135E+01,-9.000000E+01 +988453,fr,1,4.650000E+00,8.525520E+00,4.790853E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998857E+01,0.000000E+00 +988480,fr,1,4.850000E+00,8.525520E+00,4.790853E+01,1.500000E+01,Active Shallow Crust,2.400173E+02,5.800261E+01,0.000000E+00 +988572,fr,1,5.650000E+00,8.525520E+00,4.790853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +988800,fr,2,3.550000E+00,9.340420E+00,4.875496E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998670E+01,0.000000E+00 +988812,fr,3,3.650000E+00,9.340420E+00,4.875496E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998815E+01,0.000000E+00 +988813,fr,1,3.650000E+00,9.340420E+00,4.875496E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998815E+01,0.000000E+00 +988825,fr,1,3.750000E+00,9.340420E+00,4.875496E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +988827,fr,1,3.750000E+00,9.340420E+00,4.875496E+01,5.000000E+00,Active Shallow Crust,2.400099E+02,5.801698E+01,0.000000E+00 +988831,fr,1,3.750000E+00,9.340420E+00,4.875496E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998932E+01,-9.000000E+01 +988836,fr,1,3.850000E+00,9.340420E+00,4.875496E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +988863,fr,1,4.050000E+00,9.340420E+00,4.875496E+01,5.000000E+00,Active Shallow Crust,2.400067E+02,5.800674E+01,0.000000E+00 +988909,fr,1,4.450000E+00,9.340420E+00,4.875496E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +988932,fr,1,4.650000E+00,9.340420E+00,4.875496E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +988944,fr,1,4.750000E+00,9.340420E+00,4.875496E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +989760,fr,9,3.550000E+00,8.791000E-02,4.317908E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +989761,fr,2,3.550000E+00,8.791000E-02,4.317908E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +989762,fr,1,3.550000E+00,8.791000E-02,4.317908E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +989763,fr,1,3.550000E+00,8.791000E-02,4.317908E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799813E+01,0.000000E+00 +989764,fr,1,3.550000E+00,8.791000E-02,4.317908E+01,1.500000E+01,Active Shallow Crust,2.400119E+02,5.799813E+01,0.000000E+00 +989766,fr,2,3.550000E+00,8.791000E-02,4.317908E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +989767,fr,1,3.550000E+00,8.791000E-02,4.317908E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +989768,fr,1,3.550000E+00,8.791000E-02,4.317908E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +989769,fr,1,3.550000E+00,8.791000E-02,4.317908E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999374E+01,0.000000E+00 +989770,fr,1,3.550000E+00,8.791000E-02,4.317908E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.999374E+01,0.000000E+00 +989772,fr,4,3.650000E+00,8.791000E-02,4.317908E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +989773,fr,4,3.650000E+00,8.791000E-02,4.317908E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +989778,fr,1,3.650000E+00,8.791000E-02,4.317908E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,-9.000000E+01 +989781,fr,3,3.650000E+00,8.791000E-02,4.317908E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996352E+01,0.000000E+00 +989784,fr,3,3.750000E+00,8.791000E-02,4.317908E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +989785,fr,1,3.750000E+00,8.791000E-02,4.317908E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +989790,fr,1,3.750000E+00,8.791000E-02,4.317908E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +989791,fr,1,3.750000E+00,8.791000E-02,4.317908E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +989796,fr,6,3.850000E+00,8.791000E-02,4.317908E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +989797,fr,1,3.850000E+00,8.791000E-02,4.317908E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +989800,fr,1,3.850000E+00,8.791000E-02,4.317908E+01,1.500000E+01,Active Shallow Crust,2.400104E+02,5.799773E+01,0.000000E+00 +989802,fr,3,3.850000E+00,8.791000E-02,4.317908E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +989803,fr,1,3.850000E+00,8.791000E-02,4.317908E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +989805,fr,1,3.850000E+00,8.791000E-02,4.317908E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999370E+01,0.000000E+00 +989807,fr,2,3.850000E+00,8.791000E-02,4.317908E+01,2.750000E+01,Active Shallow Crust,1.288960E+02,8.999370E+01,0.000000E+00 +989808,fr,3,3.950000E+00,8.791000E-02,4.317908E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +989809,fr,2,3.950000E+00,8.791000E-02,4.317908E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +989810,fr,1,3.950000E+00,8.791000E-02,4.317908E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +989811,fr,1,3.950000E+00,8.791000E-02,4.317908E+01,5.000000E+00,Active Shallow Crust,2.400193E+02,5.800490E+01,0.000000E+00 +989816,fr,1,3.950000E+00,8.791000E-02,4.317908E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +989821,fr,2,4.050000E+00,8.791000E-02,4.317908E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +989829,fr,2,4.050000E+00,8.791000E-02,4.317908E+01,5.000000E+00,Active Shallow Crust,1.288910E+02,8.999370E+01,0.000000E+00 +989830,fr,1,4.050000E+00,8.791000E-02,4.317908E+01,1.500000E+01,Active Shallow Crust,1.288910E+02,8.999370E+01,0.000000E+00 +989832,fr,2,4.150000E+00,8.791000E-02,4.317908E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +989841,fr,1,4.150000E+00,8.791000E-02,4.317908E+01,5.000000E+00,Active Shallow Crust,1.288981E+02,8.999372E+01,0.000000E+00 +989843,fr,1,4.150000E+00,8.791000E-02,4.317908E+01,2.750000E+01,Active Shallow Crust,1.288981E+02,8.999372E+01,0.000000E+00 +989844,fr,1,4.250000E+00,8.791000E-02,4.317908E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +989845,fr,2,4.250000E+00,8.791000E-02,4.317908E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +989856,fr,2,4.350000E+00,8.791000E-02,4.317908E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +989860,fr,1,4.350000E+00,8.791000E-02,4.317908E+01,1.500000E+01,Active Shallow Crust,2.400077E+02,5.799582E+01,0.000000E+00 +989865,fr,1,4.350000E+00,8.791000E-02,4.317908E+01,5.000000E+00,Active Shallow Crust,1.288984E+02,8.998276E+01,0.000000E+00 +989868,fr,1,4.450000E+00,8.791000E-02,4.317908E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +989871,fr,2,4.450000E+00,8.791000E-02,4.317908E+01,5.000000E+00,Active Shallow Crust,2.400044E+02,5.799453E+01,0.000000E+00 +989874,fr,1,4.450000E+00,8.791000E-02,4.317908E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999002E+01,-9.000000E+01 +989892,fr,1,4.650000E+00,8.791000E-02,4.317908E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +990000,fr,1,5.550000E+00,8.791000E-02,4.317908E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +990012,fr,1,5.650000E+00,8.791000E-02,4.317908E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +990241,fr,1,3.550000E+00,-1.326680E+00,4.847953E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +990242,fr,1,3.550000E+00,-1.326680E+00,4.847953E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +990247,fr,1,3.550000E+00,-1.326680E+00,4.847953E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,-9.000000E+01 +990252,fr,1,3.650000E+00,-1.326680E+00,4.847953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +990253,fr,1,3.650000E+00,-1.326680E+00,4.847953E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +990264,fr,2,3.750000E+00,-1.326680E+00,4.847953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +990267,fr,1,3.750000E+00,-1.326680E+00,4.847953E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.801778E+01,0.000000E+00 +990268,fr,1,3.750000E+00,-1.326680E+00,4.847953E+01,1.500000E+01,Active Shallow Crust,2.400086E+02,5.801778E+01,0.000000E+00 +990276,fr,1,3.850000E+00,-1.326680E+00,4.847953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +990324,fr,1,4.250000E+00,-1.326680E+00,4.847953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +990372,fr,1,4.650000E+00,-1.326680E+00,4.847953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +991300,fr,1,4.350000E+00,1.869770E+00,5.306248E+01,1.500000E+01,Active Shallow Crust,2.400102E+02,5.799618E+01,0.000000E+00 +991687,fr,1,3.550000E+00,2.330180E+00,4.973492E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,-9.000000E+01 +991716,fr,1,3.850000E+00,2.330180E+00,4.973492E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999077E+01,0.000000E+00 +991769,fr,1,4.250000E+00,2.330180E+00,4.973492E+01,2.750000E+01,Active Shallow Crust,2.400083E+02,5.799417E+01,0.000000E+00 +992160,fr,1,3.550000E+00,6.639570E+00,4.536221E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999291E+01,0.000000E+00 +992161,fr,1,3.550000E+00,6.639570E+00,4.536221E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999291E+01,0.000000E+00 +992164,fr,1,3.550000E+00,6.639570E+00,4.536221E+01,1.500000E+01,Active Shallow Crust,2.400120E+02,5.799860E+01,0.000000E+00 +992167,fr,1,3.550000E+00,6.639570E+00,4.536221E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999284E+01,-9.000000E+01 +992172,fr,2,3.650000E+00,6.639570E+00,4.536221E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998737E+01,0.000000E+00 +992180,fr,1,3.650000E+00,6.639570E+00,4.536221E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998722E+01,-9.000000E+01 +992183,fr,1,3.650000E+00,6.639570E+00,4.536221E+01,2.750000E+01,Active Shallow Crust,1.289012E+02,8.996350E+01,0.000000E+00 +992185,fr,1,3.750000E+00,6.639570E+00,4.536221E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +992191,fr,1,3.750000E+00,6.639570E+00,4.536221E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998862E+01,-9.000000E+01 +992202,fr,1,3.850000E+00,6.639570E+00,4.536221E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +992205,fr,1,3.850000E+00,6.639570E+00,4.536221E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999248E+01,0.000000E+00 +992220,fr,1,4.050000E+00,6.639570E+00,4.536221E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998804E+01,0.000000E+00 +992221,fr,1,4.050000E+00,6.639570E+00,4.536221E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998804E+01,0.000000E+00 +992232,fr,1,4.150000E+00,6.639570E+00,4.536221E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +992244,fr,1,4.250000E+00,6.639570E+00,4.536221E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +992257,fr,1,4.350000E+00,6.639570E+00,4.536221E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +992258,fr,1,4.350000E+00,6.639570E+00,4.536221E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +992259,fr,1,4.350000E+00,6.639570E+00,4.536221E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.799555E+01,0.000000E+00 +992283,fr,1,4.550000E+00,6.639570E+00,4.536221E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.799727E+01,0.000000E+00 +992306,fr,1,4.750000E+00,6.639570E+00,4.536221E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +992652,fr,1,3.650000E+00,-2.573710E+00,4.233579E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +992653,fr,2,3.650000E+00,-2.573710E+00,4.233579E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +992680,fr,1,3.850000E+00,-2.573710E+00,4.233579E+01,1.500000E+01,Active Shallow Crust,2.400102E+02,5.799768E+01,0.000000E+00 +992724,fr,1,4.250000E+00,-2.573710E+00,4.233579E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +992811,fr,1,4.950000E+00,-2.573710E+00,4.233579E+01,5.000000E+00,Active Shallow Crust,2.400101E+02,5.800412E+01,0.000000E+00 +992851,fr,1,5.250000E+00,-2.573710E+00,4.233579E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +993145,fr,1,3.750000E+00,-3.083330E+00,5.035073E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +993600,fr,1,3.550000E+00,1.297900E-01,4.737798E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +993601,fr,1,3.550000E+00,1.297900E-01,4.737798E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +993604,fr,1,3.550000E+00,1.297900E-01,4.737798E+01,1.500000E+01,Active Shallow Crust,2.400122E+02,5.799817E+01,0.000000E+00 +993612,fr,1,3.650000E+00,1.297900E-01,4.737798E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +993613,fr,1,3.650000E+00,1.297900E-01,4.737798E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +993621,fr,1,3.650000E+00,1.297900E-01,4.737798E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.996351E+01,0.000000E+00 +993625,fr,1,3.750000E+00,1.297900E-01,4.737798E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +993627,fr,2,3.750000E+00,1.297900E-01,4.737798E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801759E+01,0.000000E+00 +993673,fr,2,4.150000E+00,1.297900E-01,4.737798E+01,1.500000E+01,Active Shallow Crust,3.599999E+02,8.999005E+01,0.000000E+00 +993768,fr,1,4.950000E+00,1.297900E-01,4.737798E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +994080,fr,1,3.550000E+00,-2.304630E+00,4.292455E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998892E+01,0.000000E+00 +994092,fr,1,3.650000E+00,-2.304630E+00,4.292455E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +994093,fr,1,3.650000E+00,-2.304630E+00,4.292455E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +994095,fr,2,3.650000E+00,-2.304630E+00,4.292455E+01,5.000000E+00,Active Shallow Crust,2.400003E+02,5.801302E+01,0.000000E+00 +994105,fr,1,3.750000E+00,-2.304630E+00,4.292455E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +994117,fr,1,3.850000E+00,-2.304630E+00,4.292455E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +994119,fr,1,3.850000E+00,-2.304630E+00,4.292455E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.799733E+01,0.000000E+00 +994142,fr,1,4.050000E+00,-2.304630E+00,4.292455E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +994164,fr,1,4.250000E+00,-2.304630E+00,4.292455E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +994176,fr,1,4.350000E+00,-2.304630E+00,4.292455E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +994195,fr,1,4.450000E+00,-2.304630E+00,4.292455E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,-9.000000E+01 +994238,fr,1,4.850000E+00,-2.304630E+00,4.292455E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +995052,fr,1,3.650000E+00,6.514070E+00,4.322540E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998690E+01,0.000000E+00 +995054,fr,1,3.650000E+00,6.514070E+00,4.322540E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998690E+01,0.000000E+00 +995056,fr,1,3.650000E+00,6.514070E+00,4.322540E+01,1.500000E+01,Active Shallow Crust,2.400016E+02,5.801192E+01,0.000000E+00 +995118,fr,1,4.150000E+00,6.514070E+00,4.322540E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998882E+01,-9.000000E+01 +995250,fr,1,5.250000E+00,6.514070E+00,4.322540E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,-9.000000E+01 +995520,fr,1,3.550000E+00,3.201570E+00,4.170340E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998871E+01,0.000000E+00 +995527,fr,1,3.550000E+00,3.201570E+00,4.170340E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998858E+01,-9.000000E+01 +995530,fr,1,3.550000E+00,3.201570E+00,4.170340E+01,1.500000E+01,Active Shallow Crust,1.288966E+02,8.999435E+01,0.000000E+00 +995540,fr,1,3.650000E+00,3.201570E+00,4.170340E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,-9.000000E+01 +995544,fr,1,3.750000E+00,3.201570E+00,4.170340E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999103E+01,0.000000E+00 +995545,fr,2,3.750000E+00,3.201570E+00,4.170340E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999103E+01,0.000000E+00 +995568,fr,1,3.950000E+00,3.201570E+00,4.170340E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +995580,fr,1,4.050000E+00,3.201570E+00,4.170340E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +995604,fr,1,4.250000E+00,3.201570E+00,4.170340E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +995616,fr,1,4.350000E+00,3.201570E+00,4.170340E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +995629,fr,1,4.450000E+00,3.201570E+00,4.170340E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +995652,fr,1,4.650000E+00,3.201570E+00,4.170340E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +996013,fr,1,3.650000E+00,2.779140E+00,4.403764E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +996018,fr,1,3.650000E+00,2.779140E+00,4.403764E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,-9.000000E+01 +996044,fr,1,3.850000E+00,2.779140E+00,4.403764E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,-9.000000E+01 +996052,fr,1,3.950000E+00,2.779140E+00,4.403764E+01,1.500000E+01,Active Shallow Crust,2.400190E+02,5.800488E+01,0.000000E+00 +996060,fr,1,4.050000E+00,2.779140E+00,4.403764E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +996084,fr,1,4.250000E+00,2.779140E+00,4.403764E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +996096,fr,1,4.350000E+00,2.779140E+00,4.403764E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +996207,fr,1,5.250000E+00,2.779140E+00,4.403764E+01,5.000000E+00,Active Shallow Crust,2.400189E+02,5.800004E+01,0.000000E+00 +996492,fr,1,3.650000E+00,4.359680E+00,4.281083E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998682E+01,0.000000E+00 +996961,fr,1,3.550000E+00,2.998430E+00,4.512215E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +996970,fr,1,3.550000E+00,2.998430E+00,4.512215E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.999288E+01,0.000000E+00 +996973,fr,1,3.650000E+00,2.998430E+00,4.512215E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +996984,fr,3,3.750000E+00,2.998430E+00,4.512215E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +996986,fr,1,3.750000E+00,2.998430E+00,4.512215E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +996987,fr,1,3.750000E+00,2.998430E+00,4.512215E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801763E+01,0.000000E+00 +997008,fr,1,3.950000E+00,2.998430E+00,4.512215E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999102E+01,0.000000E+00 +997014,fr,1,3.950000E+00,2.998430E+00,4.512215E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,-9.000000E+01 +997032,fr,2,4.150000E+00,2.998430E+00,4.512215E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +997044,fr,1,4.250000E+00,2.998430E+00,4.512215E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +997054,fr,1,4.250000E+00,2.998430E+00,4.512215E+01,1.500000E+01,Active Shallow Crust,1.288945E+02,8.998090E+01,0.000000E+00 +997065,fr,1,4.350000E+00,2.998430E+00,4.512215E+01,5.000000E+00,Active Shallow Crust,1.288980E+02,8.998273E+01,0.000000E+00 +997116,fr,1,4.850000E+00,2.998430E+00,4.512215E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +997173,fr,1,5.250000E+00,2.998430E+00,4.512215E+01,5.000000E+00,Active Shallow Crust,1.288840E+02,8.998699E+01,0.000000E+00 +997440,fr,2,3.550000E+00,1.125860E+00,4.770730E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +997441,fr,1,3.550000E+00,1.125860E+00,4.770730E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +997452,fr,1,3.650000E+00,1.125860E+00,4.770730E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +997476,fr,1,3.850000E+00,1.125860E+00,4.770730E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +997478,fr,1,3.850000E+00,1.125860E+00,4.770730E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +997512,fr,1,4.150000E+00,1.125860E+00,4.770730E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +997526,fr,1,4.250000E+00,1.125860E+00,4.770730E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +997920,fr,1,3.550000E+00,-1.971680E+00,4.282453E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +997921,fr,1,3.550000E+00,-1.971680E+00,4.282453E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +997922,fr,1,3.550000E+00,-1.971680E+00,4.282453E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +997923,fr,1,3.550000E+00,-1.971680E+00,4.282453E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799813E+01,0.000000E+00 +997924,fr,1,3.550000E+00,-1.971680E+00,4.282453E+01,1.500000E+01,Active Shallow Crust,2.400117E+02,5.799813E+01,0.000000E+00 +997925,fr,1,3.550000E+00,-1.971680E+00,4.282453E+01,2.750000E+01,Active Shallow Crust,2.400117E+02,5.799804E+01,0.000000E+00 +997927,fr,1,3.550000E+00,-1.971680E+00,4.282453E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,-9.000000E+01 +997929,fr,1,3.550000E+00,-1.971680E+00,4.282453E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999353E+01,0.000000E+00 +997932,fr,2,3.650000E+00,-1.971680E+00,4.282453E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +997933,fr,2,3.650000E+00,-1.971680E+00,4.282453E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +997944,fr,1,3.750000E+00,-1.971680E+00,4.282453E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +997945,fr,1,3.750000E+00,-1.971680E+00,4.282453E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +997946,fr,2,3.750000E+00,-1.971680E+00,4.282453E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +997947,fr,1,3.750000E+00,-1.971680E+00,4.282453E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.801771E+01,0.000000E+00 +997953,fr,1,3.750000E+00,-1.971680E+00,4.282453E+01,5.000000E+00,Active Shallow Crust,1.288971E+02,8.996729E+01,0.000000E+00 +997956,fr,3,3.850000E+00,-1.971680E+00,4.282453E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +997957,fr,2,3.850000E+00,-1.971680E+00,4.282453E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +997958,fr,1,3.850000E+00,-1.971680E+00,4.282453E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +997968,fr,3,3.950000E+00,-1.971680E+00,4.282453E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +997969,fr,1,3.950000E+00,-1.971680E+00,4.282453E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +997971,fr,1,3.950000E+00,-1.971680E+00,4.282453E+01,5.000000E+00,Active Shallow Crust,2.400192E+02,5.800488E+01,0.000000E+00 +997974,fr,1,3.950000E+00,-1.971680E+00,4.282453E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999056E+01,-9.000000E+01 +997980,fr,2,4.050000E+00,-1.971680E+00,4.282453E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +997983,fr,1,4.050000E+00,-1.971680E+00,4.282453E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.800579E+01,0.000000E+00 +997992,fr,1,4.150000E+00,-1.971680E+00,4.282453E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +998019,fr,1,4.350000E+00,-1.971680E+00,4.282453E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799582E+01,0.000000E+00 +998026,fr,1,4.350000E+00,-1.971680E+00,4.282453E+01,1.500000E+01,Active Shallow Crust,1.288985E+02,8.998277E+01,0.000000E+00 +998028,fr,1,4.450000E+00,-1.971680E+00,4.282453E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +998031,fr,1,4.450000E+00,-1.971680E+00,4.282453E+01,5.000000E+00,Active Shallow Crust,2.400044E+02,5.799454E+01,0.000000E+00 +998040,fr,1,4.550000E+00,-1.971680E+00,4.282453E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +998077,fr,1,4.850000E+00,-1.971680E+00,4.282453E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +998082,fr,1,4.850000E+00,-1.971680E+00,4.282453E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,-9.000000E+01 +998088,fr,1,4.950000E+00,-1.971680E+00,4.282453E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +998157,fr,1,5.450000E+00,-1.971680E+00,4.282453E+01,5.000000E+00,Active Shallow Crust,1.288812E+02,8.999231E+01,0.000000E+00 +998400,fr,1,3.550000E+00,7.159080E+00,5.015323E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998708E+01,0.000000E+00 +998406,fr,1,3.550000E+00,7.159080E+00,5.015323E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998693E+01,-9.000000E+01 +998412,fr,1,3.650000E+00,7.159080E+00,5.015323E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998848E+01,0.000000E+00 +998425,fr,1,3.750000E+00,7.159080E+00,5.015323E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +998436,fr,1,3.850000E+00,7.159080E+00,5.015323E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999085E+01,0.000000E+00 +998451,fr,1,3.950000E+00,7.159080E+00,5.015323E+01,5.000000E+00,Active Shallow Crust,2.400198E+02,5.800544E+01,0.000000E+00 +998472,fr,1,4.150000E+00,7.159080E+00,5.015323E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +998497,fr,1,4.350000E+00,7.159080E+00,5.015323E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +998499,fr,1,4.350000E+00,7.159080E+00,5.015323E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.799597E+01,0.000000E+00 +998526,fr,1,4.550000E+00,7.159080E+00,5.015323E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,-9.000000E+01 +998568,fr,1,4.950000E+00,7.159080E+00,5.015323E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +999374,fr,1,3.650000E+00,8.252300E-01,4.351889E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +999423,fr,1,4.050000E+00,8.252300E-01,4.351889E+01,5.000000E+00,Active Shallow Crust,2.400055E+02,5.800577E+01,0.000000E+00 +999444,fr,1,4.250000E+00,8.252300E-01,4.351889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +999517,fr,1,4.850000E+00,8.252300E-01,4.351889E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +999537,fr,1,4.950000E+00,8.252300E-01,4.351889E+01,5.000000E+00,Active Shallow Crust,1.288910E+02,8.998984E+01,0.000000E+00 +999636,fr,1,5.850000E+00,8.252300E-01,4.351889E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999003E+01,0.000000E+00 +999841,fr,2,3.550000E+00,1.933000E-02,4.643040E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +999853,fr,1,3.650000E+00,1.933000E-02,4.643040E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +999858,fr,1,3.650000E+00,1.933000E-02,4.643040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +999878,fr,1,3.850000E+00,1.933000E-02,4.643040E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +999900,fr,1,4.050000E+00,1.933000E-02,4.643040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +999912,fr,1,4.150000E+00,1.933000E-02,4.643040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +999993,fr,1,4.750000E+00,1.933000E-02,4.643040E+01,5.000000E+00,Active Shallow Crust,1.288887E+02,8.998808E+01,0.000000E+00 +999996,fr,1,4.850000E+00,1.933000E-02,4.643040E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +1000347,fr,1,3.750000E+00,1.266750E+00,4.436779E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.801744E+01,0.000000E+00 +1000368,fr,1,3.950000E+00,1.266750E+00,4.436779E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1000380,fr,1,4.050000E+00,1.266750E+00,4.436779E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1000429,fr,1,4.450000E+00,1.266750E+00,4.436779E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1000805,fr,1,3.550000E+00,-1.812370E+00,4.991201E+01,2.750000E+01,Active Shallow Crust,2.400126E+02,5.799829E+01,0.000000E+00 +1000812,fr,1,3.650000E+00,-1.812370E+00,4.991201E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1000822,fr,1,3.650000E+00,-1.812370E+00,4.991201E+01,1.500000E+01,Active Shallow Crust,1.288999E+02,8.996359E+01,0.000000E+00 +1001304,fr,1,3.750000E+00,3.614400E-01,5.069624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1001328,fr,1,3.950000E+00,3.614400E-01,5.069624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1001355,fr,1,4.150000E+00,3.614400E-01,5.069624E+01,5.000000E+00,Active Shallow Crust,2.400093E+02,5.799747E+01,0.000000E+00 +1001376,fr,1,4.350000E+00,3.614400E-01,5.069624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1001472,fr,1,5.150000E+00,3.614400E-01,5.069624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1001487,fr,1,5.250000E+00,3.614400E-01,5.069624E+01,5.000000E+00,Active Shallow Crust,2.400285E+02,5.800081E+01,0.000000E+00 +1001760,fr,2,3.550000E+00,-3.211940E+00,4.764563E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1001763,fr,2,3.550000E+00,-3.211940E+00,4.764563E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799770E+01,0.000000E+00 +1001772,fr,1,3.650000E+00,-3.211940E+00,4.764563E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999092E+01,0.000000E+00 +1001775,fr,1,3.650000E+00,-3.211940E+00,4.764563E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801286E+01,0.000000E+00 +1001778,fr,1,3.650000E+00,-3.211940E+00,4.764563E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,-9.000000E+01 +1001784,fr,2,3.750000E+00,-3.211940E+00,4.764563E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1001785,fr,2,3.750000E+00,-3.211940E+00,4.764563E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1001786,fr,1,3.750000E+00,-3.211940E+00,4.764563E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1001796,fr,1,3.850000E+00,-3.211940E+00,4.764563E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +1001808,fr,1,3.950000E+00,-3.211940E+00,4.764563E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998928E+01,0.000000E+00 +1001832,fr,1,4.150000E+00,-3.211940E+00,4.764563E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1001856,fr,1,4.350000E+00,-3.211940E+00,4.764563E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +1001868,fr,1,4.450000E+00,-3.211940E+00,4.764563E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1001952,fr,1,5.150000E+00,-3.211940E+00,4.764563E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1002025,fr,1,5.750000E+00,-3.211940E+00,4.764563E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1002241,fr,1,3.550000E+00,5.434780E+00,4.402262E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999275E+01,0.000000E+00 +1002250,fr,1,3.550000E+00,5.434780E+00,4.402262E+01,1.500000E+01,Active Shallow Crust,1.288955E+02,8.999275E+01,0.000000E+00 +1002252,fr,1,3.650000E+00,5.434780E+00,4.402262E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998708E+01,0.000000E+00 +1002253,fr,2,3.650000E+00,5.434780E+00,4.402262E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998708E+01,0.000000E+00 +1002255,fr,1,3.650000E+00,5.434780E+00,4.402262E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801316E+01,0.000000E+00 +1002261,fr,1,3.650000E+00,5.434780E+00,4.402262E+01,5.000000E+00,Active Shallow Crust,1.289014E+02,8.996348E+01,0.000000E+00 +1002264,fr,2,3.750000E+00,5.434780E+00,4.402262E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998848E+01,0.000000E+00 +1002266,fr,1,3.750000E+00,5.434780E+00,4.402262E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998848E+01,0.000000E+00 +1002268,fr,1,3.750000E+00,5.434780E+00,4.402262E+01,1.500000E+01,Active Shallow Crust,2.400073E+02,5.801809E+01,0.000000E+00 +1002276,fr,1,3.850000E+00,5.434780E+00,4.402262E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +1002282,fr,2,3.850000E+00,5.434780E+00,4.402262E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,-9.000000E+01 +1002289,fr,1,3.950000E+00,5.434780E+00,4.402262E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999085E+01,0.000000E+00 +1002294,fr,1,3.950000E+00,5.434780E+00,4.402262E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,-9.000000E+01 +1002300,fr,1,4.050000E+00,5.434780E+00,4.402262E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999184E+01,0.000000E+00 +1002302,fr,1,4.050000E+00,5.434780E+00,4.402262E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999184E+01,0.000000E+00 +1002303,fr,1,4.050000E+00,5.434780E+00,4.402262E+01,5.000000E+00,Active Shallow Crust,2.400059E+02,5.800573E+01,0.000000E+00 +1002312,fr,1,4.150000E+00,5.434780E+00,4.402262E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +1002313,fr,1,4.150000E+00,5.434780E+00,4.402262E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +1002324,fr,1,4.250000E+00,5.434780E+00,4.402262E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +1002351,fr,1,4.450000E+00,5.434780E+00,4.402262E+01,5.000000E+00,Active Shallow Crust,2.400049E+02,5.799429E+01,0.000000E+00 +1002360,fr,2,4.550000E+00,5.434780E+00,4.402262E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +1002433,fr,1,5.150000E+00,5.434780E+00,4.402262E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1002444,fr,1,5.250000E+00,5.434780E+00,4.402262E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1002720,fr,1,3.550000E+00,6.670010E+00,4.884311E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998672E+01,0.000000E+00 +1002744,fr,1,3.750000E+00,6.670010E+00,4.884311E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1002768,fr,1,3.950000E+00,6.670010E+00,4.884311E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999162E+01,0.000000E+00 +1002840,fr,1,4.550000E+00,6.670010E+00,4.884311E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +1003285,fr,1,4.250000E+00,2.683970E+00,4.726920E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +1003312,fr,1,4.450000E+00,2.683970E+00,4.726920E+01,1.500000E+01,Active Shallow Crust,2.400056E+02,5.799463E+01,0.000000E+00 +1003368,fr,1,4.950000E+00,2.683970E+00,4.726920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +1003680,fr,3,3.550000E+00,-5.654300E-01,4.759697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1003683,fr,1,3.550000E+00,-5.654300E-01,4.759697E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799820E+01,0.000000E+00 +1003689,fr,1,3.550000E+00,-5.654300E-01,4.759697E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999362E+01,0.000000E+00 +1003692,fr,2,3.650000E+00,-5.654300E-01,4.759697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1003695,fr,2,3.650000E+00,-5.654300E-01,4.759697E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801281E+01,0.000000E+00 +1003696,fr,1,3.650000E+00,-5.654300E-01,4.759697E+01,1.500000E+01,Active Shallow Crust,2.400012E+02,5.801281E+01,0.000000E+00 +1003704,fr,2,3.750000E+00,-5.654300E-01,4.759697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1003711,fr,1,3.750000E+00,-5.654300E-01,4.759697E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,-9.000000E+01 +1003716,fr,3,3.850000E+00,-5.654300E-01,4.759697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1003717,fr,3,3.850000E+00,-5.654300E-01,4.759697E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1003728,fr,1,3.950000E+00,-5.654300E-01,4.759697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1003741,fr,1,4.050000E+00,-5.654300E-01,4.759697E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1003764,fr,2,4.250000E+00,-5.654300E-01,4.759697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1003765,fr,1,4.250000E+00,-5.654300E-01,4.759697E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1003774,fr,1,4.250000E+00,-5.654300E-01,4.759697E+01,1.500000E+01,Active Shallow Crust,1.288940E+02,8.998093E+01,0.000000E+00 +1003777,fr,1,4.350000E+00,-5.654300E-01,4.759697E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1003788,fr,1,4.450000E+00,-5.654300E-01,4.759697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1003801,fr,1,4.550000E+00,-5.654300E-01,4.759697E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1003836,fr,1,4.850000E+00,-5.654300E-01,4.759697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1003884,fr,1,5.250000E+00,-5.654300E-01,4.759697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1004160,fr,2,3.550000E+00,4.760840E+00,4.551151E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999294E+01,0.000000E+00 +1004164,fr,1,3.550000E+00,4.760840E+00,4.551151E+01,1.500000E+01,Active Shallow Crust,2.400135E+02,5.799763E+01,0.000000E+00 +1004172,fr,1,3.650000E+00,4.760840E+00,4.551151E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998740E+01,0.000000E+00 +1004173,fr,1,3.650000E+00,4.760840E+00,4.551151E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998740E+01,0.000000E+00 +1004184,fr,1,3.750000E+00,4.760840E+00,4.551151E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +1004197,fr,1,3.850000E+00,4.760840E+00,4.551151E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1004220,fr,2,4.050000E+00,4.760840E+00,4.551151E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +1004249,fr,1,4.250000E+00,4.760840E+00,4.551151E+01,2.750000E+01,Active Shallow Crust,2.400078E+02,5.799367E+01,0.000000E+00 +1004284,fr,1,4.550000E+00,4.760840E+00,4.551151E+01,1.500000E+01,Active Shallow Crust,2.400089E+02,5.799724E+01,0.000000E+00 +1004676,fr,1,3.850000E+00,2.569710E+00,5.244196E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998912E+01,0.000000E+00 +1004704,fr,1,4.050000E+00,2.569710E+00,5.244196E+01,1.500000E+01,Active Shallow Crust,2.400070E+02,5.800585E+01,0.000000E+00 +1005600,fr,1,3.550000E+00,-1.450610E+00,4.590226E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +1005601,fr,1,3.550000E+00,-1.450610E+00,4.590226E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +1005612,fr,1,3.650000E+00,-1.450610E+00,4.590226E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1005613,fr,1,3.650000E+00,-1.450610E+00,4.590226E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1005614,fr,1,3.650000E+00,-1.450610E+00,4.590226E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1005615,fr,1,3.650000E+00,-1.450610E+00,4.590226E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801284E+01,0.000000E+00 +1005619,fr,1,3.650000E+00,-1.450610E+00,4.590226E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999051E+01,-9.000000E+01 +1005624,fr,1,3.750000E+00,-1.450610E+00,4.590226E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +1005627,fr,1,3.750000E+00,-1.450610E+00,4.590226E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801731E+01,0.000000E+00 +1005628,fr,1,3.750000E+00,-1.450610E+00,4.590226E+01,1.500000E+01,Active Shallow Crust,2.400083E+02,5.801731E+01,0.000000E+00 +1005630,fr,1,3.750000E+00,-1.450610E+00,4.590226E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +1005636,fr,1,3.850000E+00,-1.450610E+00,4.590226E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1005637,fr,1,3.850000E+00,-1.450610E+00,4.590226E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1005648,fr,1,3.950000E+00,-1.450610E+00,4.590226E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1005651,fr,1,3.950000E+00,-1.450610E+00,4.590226E+01,5.000000E+00,Active Shallow Crust,2.400197E+02,5.800502E+01,0.000000E+00 +1005654,fr,1,3.950000E+00,-1.450610E+00,4.590226E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,-9.000000E+01 +1005661,fr,1,4.050000E+00,-1.450610E+00,4.590226E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1005673,fr,1,4.150000E+00,-1.450610E+00,4.590226E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1005684,fr,1,4.250000E+00,-1.450610E+00,4.590226E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1005708,fr,1,4.450000E+00,-1.450610E+00,4.590226E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1005711,fr,1,4.450000E+00,-1.450610E+00,4.590226E+01,5.000000E+00,Active Shallow Crust,2.400052E+02,5.799464E+01,0.000000E+00 +1005735,fr,1,4.650000E+00,-1.450610E+00,4.590226E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799426E+01,0.000000E+00 +1005770,fr,1,4.950000E+00,-1.450610E+00,4.590226E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1006083,fr,1,3.550000E+00,4.051630E+00,4.462451E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.799889E+01,0.000000E+00 +1006093,fr,1,3.650000E+00,4.051630E+00,4.462451E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998721E+01,0.000000E+00 +1006146,fr,1,4.050000E+00,4.051630E+00,4.462451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999184E+01,-9.000000E+01 +1006198,fr,1,4.450000E+00,4.051630E+00,4.462451E+01,1.500000E+01,Active Shallow Crust,1.288930E+02,8.999364E+01,0.000000E+00 +1006254,fr,1,4.950000E+00,4.051630E+00,4.462451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,-9.000000E+01 +1006593,fr,1,3.750000E+00,4.382680E+00,5.004187E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.996755E+01,0.000000E+00 +1006654,fr,1,4.250000E+00,4.382680E+00,5.004187E+01,1.500000E+01,Active Shallow Crust,1.288935E+02,8.998108E+01,0.000000E+00 +1006692,fr,1,4.650000E+00,4.382680E+00,5.004187E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1007532,fr,2,3.650000E+00,7.863910E+00,4.935910E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998830E+01,0.000000E+00 +1007544,fr,1,3.750000E+00,7.863910E+00,4.935910E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1007557,fr,1,3.850000E+00,7.863910E+00,4.935910E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +1007568,fr,1,3.950000E+00,7.863910E+00,4.935910E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999171E+01,0.000000E+00 +1007581,fr,1,4.050000E+00,7.863910E+00,4.935910E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998892E+01,0.000000E+00 +1007604,fr,1,4.250000E+00,7.863910E+00,4.935910E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +1007628,fr,1,4.450000E+00,7.863910E+00,4.935910E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +1008001,fr,1,3.550000E+00,1.413770E+00,4.891187E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1008039,fr,1,3.850000E+00,1.413770E+00,4.891187E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799776E+01,0.000000E+00 +1008072,fr,1,4.150000E+00,1.413770E+00,4.891187E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1008480,fr,1,3.550000E+00,4.104060E+00,4.370719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999271E+01,0.000000E+00 +1008481,fr,1,3.550000E+00,4.104060E+00,4.370719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999271E+01,0.000000E+00 +1008493,fr,2,3.650000E+00,4.104060E+00,4.370719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998701E+01,0.000000E+00 +1008517,fr,1,3.850000E+00,4.104060E+00,4.370719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1008535,fr,1,3.950000E+00,4.104060E+00,4.370719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999069E+01,-9.000000E+01 +1008537,fr,1,3.950000E+00,4.104060E+00,4.370719E+01,5.000000E+00,Active Shallow Crust,1.289017E+02,8.999310E+01,0.000000E+00 +1008540,fr,1,4.050000E+00,4.104060E+00,4.370719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999180E+01,0.000000E+00 +1008549,fr,1,4.050000E+00,4.104060E+00,4.370719E+01,5.000000E+00,Active Shallow Crust,1.288918E+02,8.999385E+01,0.000000E+00 +1008576,fr,1,4.350000E+00,4.104060E+00,4.370719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +1008961,fr,1,3.550000E+00,9.205200E-01,5.019966E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +1008969,fr,1,3.550000E+00,9.205200E-01,5.019966E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999395E+01,0.000000E+00 +1008972,fr,2,3.650000E+00,9.205200E-01,5.019966E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1008978,fr,1,3.650000E+00,9.205200E-01,5.019966E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,-9.000000E+01 +1008997,fr,1,3.850000E+00,9.205200E-01,5.019966E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1009041,fr,1,4.150000E+00,9.205200E-01,5.019966E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.999374E+01,0.000000E+00 +1009099,fr,1,4.650000E+00,9.205200E-01,5.019966E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +1009180,fr,1,5.350000E+00,9.205200E-01,5.019966E+01,1.500000E+01,Active Shallow Crust,2.400280E+02,5.799836E+01,0.000000E+00 +1009441,fr,1,3.550000E+00,2.013200E+00,4.749075E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1009464,fr,1,3.750000E+00,2.013200E+00,4.749075E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +1009498,fr,1,3.950000E+00,2.013200E+00,4.749075E+01,1.500000E+01,Active Shallow Crust,1.289001E+02,8.999463E+01,0.000000E+00 +1009524,fr,1,4.250000E+00,2.013200E+00,4.749075E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +1009572,fr,1,4.650000E+00,2.013200E+00,4.749075E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1009929,fr,1,3.550000E+00,1.612940E+00,4.358473E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999361E+01,0.000000E+00 +1009956,fr,1,3.850000E+00,1.612940E+00,4.358473E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1010400,fr,2,3.550000E+00,5.841850E+00,4.695363E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999312E+01,0.000000E+00 +1010401,fr,1,3.550000E+00,5.841850E+00,4.695363E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999312E+01,0.000000E+00 +1010404,fr,1,3.550000E+00,5.841850E+00,4.695363E+01,1.500000E+01,Active Shallow Crust,2.400120E+02,5.799826E+01,0.000000E+00 +1010409,fr,1,3.550000E+00,5.841850E+00,4.695363E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999312E+01,0.000000E+00 +1010412,fr,1,3.650000E+00,5.841850E+00,4.695363E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998773E+01,0.000000E+00 +1010413,fr,1,3.650000E+00,5.841850E+00,4.695363E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998773E+01,0.000000E+00 +1010420,fr,1,3.650000E+00,5.841850E+00,4.695363E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998759E+01,-9.000000E+01 +1010443,fr,1,3.850000E+00,5.841850E+00,4.695363E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +1010445,fr,1,3.850000E+00,5.841850E+00,4.695363E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999269E+01,0.000000E+00 +1010460,fr,2,4.050000E+00,5.841850E+00,4.695363E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998839E+01,0.000000E+00 +1010526,fr,1,4.550000E+00,5.841850E+00,4.695363E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998899E+01,-9.000000E+01 +1010535,fr,1,4.650000E+00,5.841850E+00,4.695363E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799427E+01,0.000000E+00 +1010547,fr,1,4.750000E+00,5.841850E+00,4.695363E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.800455E+01,0.000000E+00 +1010886,fr,1,3.550000E+00,2.867430E+00,5.091473E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,-9.000000E+01 +1010892,fr,1,3.650000E+00,2.867430E+00,5.091473E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998867E+01,0.000000E+00 +1010898,fr,1,3.650000E+00,2.867430E+00,5.091473E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999140E+01,-9.000000E+01 +1010902,fr,1,3.650000E+00,2.867430E+00,5.091473E+01,1.500000E+01,Active Shallow Crust,1.289000E+02,8.996361E+01,0.000000E+00 +1010904,fr,2,3.750000E+00,2.867430E+00,5.091473E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1010943,fr,1,4.050000E+00,2.867430E+00,5.091473E+01,5.000000E+00,Active Shallow Crust,2.400065E+02,5.800599E+01,0.000000E+00 +1010947,fr,1,4.050000E+00,2.867430E+00,5.091473E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998915E+01,-9.000000E+01 +1010952,fr,1,4.150000E+00,2.867430E+00,5.091473E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +1011373,fr,1,3.650000E+00,7.465800E-01,5.097366E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1011374,fr,1,3.650000E+00,7.465800E-01,5.097366E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1011378,fr,1,3.650000E+00,7.465800E-01,5.097366E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +1011381,fr,1,3.650000E+00,7.465800E-01,5.097366E+01,5.000000E+00,Active Shallow Crust,1.289000E+02,8.996355E+01,0.000000E+00 +1011401,fr,1,3.850000E+00,7.465800E-01,5.097366E+01,2.750000E+01,Active Shallow Crust,2.400116E+02,5.799794E+01,0.000000E+00 +1011432,fr,1,4.150000E+00,7.465800E-01,5.097366E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1011456,fr,1,4.350000E+00,7.465800E-01,5.097366E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1011459,fr,1,4.350000E+00,7.465800E-01,5.097366E+01,5.000000E+00,Active Shallow Crust,2.400096E+02,5.799614E+01,0.000000E+00 +1011549,fr,1,5.050000E+00,7.465800E-01,5.097366E+01,5.000000E+00,Active Shallow Crust,1.288833E+02,8.999047E+01,0.000000E+00 +1011843,fr,1,3.550000E+00,2.118090E+00,4.419547E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799826E+01,0.000000E+00 +1011852,fr,1,3.650000E+00,2.118090E+00,4.419547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1011855,fr,1,3.650000E+00,2.118090E+00,4.419547E+01,5.000000E+00,Active Shallow Crust,2.400004E+02,5.801283E+01,0.000000E+00 +1011878,fr,1,3.850000E+00,2.118090E+00,4.419547E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +1011897,fr,1,3.950000E+00,2.118090E+00,4.419547E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.999430E+01,0.000000E+00 +1011912,fr,1,4.150000E+00,2.118090E+00,4.419547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998913E+01,0.000000E+00 +1011924,fr,1,4.250000E+00,2.118090E+00,4.419547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +1011936,fr,1,4.350000E+00,2.118090E+00,4.419547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1011939,fr,1,4.350000E+00,2.118090E+00,4.419547E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799594E+01,0.000000E+00 +1012323,fr,1,3.550000E+00,5.704650E+00,5.108345E+01,5.000000E+00,Active Shallow Crust,2.400131E+02,5.799828E+01,0.000000E+00 +1012332,fr,2,3.650000E+00,5.704650E+00,5.108345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998871E+01,0.000000E+00 +1012334,fr,1,3.650000E+00,5.704650E+00,5.108345E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998871E+01,0.000000E+00 +1012344,fr,1,3.750000E+00,5.704650E+00,5.108345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1012356,fr,1,3.850000E+00,5.704650E+00,5.108345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999103E+01,0.000000E+00 +1012380,fr,3,4.050000E+00,5.704650E+00,5.108345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +1012399,fr,1,4.150000E+00,5.704650E+00,5.108345E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,-9.000000E+01 +1012413,fr,1,4.250000E+00,5.704650E+00,5.108345E+01,5.000000E+00,Active Shallow Crust,1.288933E+02,8.998112E+01,0.000000E+00 +1012418,fr,1,4.350000E+00,5.704650E+00,5.108345E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1012453,fr,1,4.650000E+00,5.704650E+00,5.108345E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +1012499,fr,1,4.950000E+00,5.704650E+00,5.108345E+01,2.750000E+01,Active Shallow Crust,1.288879E+02,8.999014E+01,0.000000E+00 +1012500,fr,2,5.050000E+00,5.704650E+00,5.108345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1012539,fr,1,5.350000E+00,5.704650E+00,5.108345E+01,5.000000E+00,Active Shallow Crust,2.400288E+02,5.799849E+01,0.000000E+00 +1012540,fr,1,5.350000E+00,5.704650E+00,5.108345E+01,1.500000E+01,Active Shallow Crust,2.400288E+02,5.799849E+01,0.000000E+00 +1012800,fr,2,3.550000E+00,-2.052890E+00,4.828902E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1012801,fr,1,3.550000E+00,-2.052890E+00,4.828902E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1012802,fr,1,3.550000E+00,-2.052890E+00,4.828902E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1012812,fr,1,3.650000E+00,-2.052890E+00,4.828902E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999103E+01,0.000000E+00 +1012825,fr,1,3.750000E+00,-2.052890E+00,4.828902E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +1012826,fr,1,3.750000E+00,-2.052890E+00,4.828902E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +1012830,fr,1,3.750000E+00,-2.052890E+00,4.828902E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998922E+01,-9.000000E+01 +1012836,fr,1,3.850000E+00,-2.052890E+00,4.828902E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +1012842,fr,1,3.850000E+00,-2.052890E+00,4.828902E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,-9.000000E+01 +1012845,fr,1,3.850000E+00,-2.052890E+00,4.828902E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999406E+01,0.000000E+00 +1012853,fr,1,3.950000E+00,-2.052890E+00,4.828902E+01,2.750000E+01,Active Shallow Crust,2.400198E+02,5.800521E+01,0.000000E+00 +1012854,fr,1,3.950000E+00,-2.052890E+00,4.828902E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,-9.000000E+01 +1012869,fr,1,4.050000E+00,-2.052890E+00,4.828902E+01,5.000000E+00,Active Shallow Crust,1.288904E+02,8.999340E+01,0.000000E+00 +1012886,fr,1,4.250000E+00,-2.052890E+00,4.828902E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1012899,fr,1,4.350000E+00,-2.052890E+00,4.828902E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.799593E+01,0.000000E+00 +1013027,fr,1,5.350000E+00,-2.052890E+00,4.828902E+01,2.750000E+01,Active Shallow Crust,1.288820E+02,8.998803E+01,0.000000E+00 +1013760,fr,1,3.550000E+00,3.015030E+00,4.446941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1013761,fr,1,3.550000E+00,3.015030E+00,4.446941E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1013762,fr,1,3.550000E+00,3.015030E+00,4.446941E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1013766,fr,1,3.550000E+00,3.015030E+00,4.446941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998908E+01,-9.000000E+01 +1013772,fr,1,3.650000E+00,3.015030E+00,4.446941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +1013784,fr,2,3.750000E+00,3.015030E+00,4.446941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +1013786,fr,2,3.750000E+00,3.015030E+00,4.446941E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +1013799,fr,1,3.850000E+00,3.015030E+00,4.446941E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799746E+01,0.000000E+00 +1013839,fr,1,4.150000E+00,3.015030E+00,4.446941E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,-9.000000E+01 +1013847,fr,1,4.250000E+00,3.015030E+00,4.446941E+01,5.000000E+00,Active Shallow Crust,2.400072E+02,5.799412E+01,0.000000E+00 +1013937,fr,1,4.950000E+00,3.015030E+00,4.446941E+01,5.000000E+00,Active Shallow Crust,1.288907E+02,8.998968E+01,0.000000E+00 +1014240,fr,1,3.550000E+00,2.828000E-01,4.765547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1014243,fr,1,3.550000E+00,2.828000E-01,4.765547E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799820E+01,0.000000E+00 +1014246,fr,1,3.550000E+00,2.828000E-01,4.765547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,-9.000000E+01 +1014336,fr,1,4.350000E+00,2.828000E-01,4.765547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1014348,fr,1,4.450000E+00,2.828000E-01,4.765547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1014358,fr,1,4.450000E+00,2.828000E-01,4.765547E+01,1.500000E+01,Active Shallow Crust,1.288919E+02,8.999375E+01,0.000000E+00 +1014415,fr,1,4.950000E+00,2.828000E-01,4.765547E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1014721,fr,1,3.550000E+00,3.210900E-01,4.990888E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1014729,fr,1,3.550000E+00,3.210900E-01,4.990888E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999371E+01,0.000000E+00 +1014744,fr,2,3.750000E+00,3.210900E-01,4.990888E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1014745,fr,1,3.750000E+00,3.210900E-01,4.990888E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1014762,fr,1,3.850000E+00,3.210900E-01,4.990888E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,-9.000000E+01 +1014781,fr,1,4.050000E+00,3.210900E-01,4.990888E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1014792,fr,1,4.150000E+00,3.210900E-01,4.990888E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1014876,fr,1,4.850000E+00,3.210900E-01,4.990888E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1015213,fr,1,3.650000E+00,3.371600E+00,5.295921E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +1015680,fr,2,3.550000E+00,8.093320E+00,4.938417E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998687E+01,0.000000E+00 +1015694,fr,1,3.650000E+00,8.093320E+00,4.938417E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998830E+01,0.000000E+00 +1015695,fr,1,3.650000E+00,8.093320E+00,4.938417E+01,5.000000E+00,Active Shallow Crust,2.400003E+02,5.801236E+01,0.000000E+00 +1015697,fr,1,3.650000E+00,8.093320E+00,4.938417E+01,2.750000E+01,Active Shallow Crust,2.400003E+02,5.801228E+01,0.000000E+00 +1015704,fr,1,3.750000E+00,8.093320E+00,4.938417E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +1015705,fr,1,3.750000E+00,8.093320E+00,4.938417E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +1015738,fr,1,3.950000E+00,8.093320E+00,4.938417E+01,1.500000E+01,Active Shallow Crust,1.288978E+02,8.999586E+01,0.000000E+00 +1015747,fr,1,4.050000E+00,8.093320E+00,4.938417E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999253E+01,-9.000000E+01 +1015752,fr,1,4.150000E+00,8.093320E+00,4.938417E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998684E+01,0.000000E+00 +1015755,fr,1,4.150000E+00,8.093320E+00,4.938417E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.799740E+01,0.000000E+00 +1015768,fr,1,4.250000E+00,8.093320E+00,4.938417E+01,1.500000E+01,Active Shallow Crust,2.400078E+02,5.799408E+01,0.000000E+00 +1015800,fr,1,4.550000E+00,8.093320E+00,4.938417E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999170E+01,0.000000E+00 +1015824,fr,1,4.750000E+00,8.093320E+00,4.938417E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1015860,fr,1,5.050000E+00,8.093320E+00,4.938417E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +1016160,fr,1,3.550000E+00,5.058590E+00,4.568287E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999296E+01,0.000000E+00 +1016163,fr,1,3.550000E+00,5.058590E+00,4.568287E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799785E+01,0.000000E+00 +1016167,fr,1,3.550000E+00,5.058590E+00,4.568287E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999287E+01,-9.000000E+01 +1016169,fr,1,3.550000E+00,5.058590E+00,4.568287E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.999296E+01,0.000000E+00 +1016173,fr,1,3.650000E+00,5.058590E+00,4.568287E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998744E+01,0.000000E+00 +1016184,fr,2,3.750000E+00,5.058590E+00,4.568287E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998881E+01,0.000000E+00 +1016211,fr,1,3.950000E+00,5.058590E+00,4.568287E+01,5.000000E+00,Active Shallow Crust,2.400192E+02,5.800531E+01,0.000000E+00 +1016218,fr,1,3.950000E+00,5.058590E+00,4.568287E+01,1.500000E+01,Active Shallow Crust,1.289002E+02,8.999333E+01,0.000000E+00 +1016220,fr,1,4.050000E+00,5.058590E+00,4.568287E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998811E+01,0.000000E+00 +1016222,fr,1,4.050000E+00,5.058590E+00,4.568287E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998811E+01,0.000000E+00 +1016244,fr,1,4.250000E+00,5.058590E+00,4.568287E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +1016292,fr,1,4.650000E+00,5.058590E+00,4.568287E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1016301,fr,1,4.650000E+00,5.058590E+00,4.568287E+01,5.000000E+00,Active Shallow Crust,1.288915E+02,8.998717E+01,0.000000E+00 +1016640,fr,1,3.550000E+00,2.194920E+00,4.433943E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +1016641,fr,1,3.550000E+00,2.194920E+00,4.433943E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +1016646,fr,1,3.550000E+00,2.194920E+00,4.433943E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998906E+01,-9.000000E+01 +1016649,fr,1,3.550000E+00,2.194920E+00,4.433943E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999459E+01,0.000000E+00 +1016658,fr,1,3.650000E+00,2.194920E+00,4.433943E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,-9.000000E+01 +1016681,fr,1,3.850000E+00,2.194920E+00,4.433943E+01,2.750000E+01,Active Shallow Crust,2.400104E+02,5.799776E+01,0.000000E+00 +1016688,fr,1,3.950000E+00,2.194920E+00,4.433943E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999090E+01,0.000000E+00 +1016689,fr,1,3.950000E+00,2.194920E+00,4.433943E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999090E+01,0.000000E+00 +1016703,fr,1,4.050000E+00,2.194920E+00,4.433943E+01,5.000000E+00,Active Shallow Crust,2.400053E+02,5.800583E+01,0.000000E+00 +1016810,fr,1,4.950000E+00,2.194920E+00,4.433943E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1017600,fr,1,3.550000E+00,6.432590E+00,4.818056E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999328E+01,0.000000E+00 +1017603,fr,1,3.550000E+00,6.432590E+00,4.818056E+01,5.000000E+00,Active Shallow Crust,2.400126E+02,5.799762E+01,0.000000E+00 +1017612,fr,2,3.650000E+00,6.432590E+00,4.818056E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998801E+01,0.000000E+00 +1017624,fr,1,3.750000E+00,6.432590E+00,4.818056E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +1017626,fr,1,3.750000E+00,6.432590E+00,4.818056E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +1017634,fr,1,3.750000E+00,6.432590E+00,4.818056E+01,1.500000E+01,Active Shallow Crust,1.288971E+02,8.996697E+01,0.000000E+00 +1017636,fr,1,3.850000E+00,6.432590E+00,4.818056E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +1017637,fr,1,3.850000E+00,6.432590E+00,4.818056E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +1017638,fr,1,3.850000E+00,6.432590E+00,4.818056E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +1017649,fr,1,3.950000E+00,6.432590E+00,4.818056E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999152E+01,0.000000E+00 +1017660,fr,1,4.050000E+00,6.432590E+00,4.818056E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +1017664,fr,1,4.050000E+00,6.432590E+00,4.818056E+01,1.500000E+01,Active Shallow Crust,2.400064E+02,5.800559E+01,0.000000E+00 +1017673,fr,1,4.150000E+00,6.432590E+00,4.818056E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1017678,fr,2,4.150000E+00,6.432590E+00,4.818056E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,-9.000000E+01 +1017684,fr,1,4.250000E+00,6.432590E+00,4.818056E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999099E+01,0.000000E+00 +1017696,fr,1,4.350000E+00,6.432590E+00,4.818056E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +1017699,fr,1,4.350000E+00,6.432590E+00,4.818056E+01,5.000000E+00,Active Shallow Crust,2.400093E+02,5.799589E+01,0.000000E+00 +1017744,fr,1,4.750000E+00,6.432590E+00,4.818056E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1017821,fr,1,5.350000E+00,6.432590E+00,4.818056E+01,2.750000E+01,Active Shallow Crust,2.400262E+02,5.799817E+01,0.000000E+00 +1018080,fr,2,3.550000E+00,6.550790E+00,4.742851E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999318E+01,0.000000E+00 +1018081,fr,1,3.550000E+00,6.550790E+00,4.742851E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999318E+01,0.000000E+00 +1018082,fr,1,3.550000E+00,6.550790E+00,4.742851E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999318E+01,0.000000E+00 +1018086,fr,1,3.550000E+00,6.550790E+00,4.742851E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999310E+01,-9.000000E+01 +1018089,fr,1,3.550000E+00,6.550790E+00,4.742851E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.999318E+01,0.000000E+00 +1018092,fr,1,3.650000E+00,6.550790E+00,4.742851E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998784E+01,0.000000E+00 +1018097,fr,1,3.650000E+00,6.550790E+00,4.742851E+01,2.750000E+01,Active Shallow Crust,2.400015E+02,5.801249E+01,0.000000E+00 +1018116,fr,1,3.850000E+00,6.550790E+00,4.742851E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +1018128,fr,1,3.950000E+00,6.550790E+00,4.742851E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999139E+01,0.000000E+00 +1018140,fr,1,4.050000E+00,6.550790E+00,4.742851E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998849E+01,0.000000E+00 +1018150,fr,1,4.050000E+00,6.550790E+00,4.742851E+01,1.500000E+01,Active Shallow Crust,1.288904E+02,8.999425E+01,0.000000E+00 +1018153,fr,1,4.150000E+00,6.550790E+00,4.742851E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1018182,fr,1,4.350000E+00,6.550790E+00,4.742851E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998901E+01,-9.000000E+01 +1018185,fr,1,4.350000E+00,6.550790E+00,4.742851E+01,5.000000E+00,Active Shallow Crust,1.288983E+02,8.998257E+01,0.000000E+00 +1018212,fr,1,4.650000E+00,6.550790E+00,4.742851E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1018560,fr,2,3.550000E+00,-2.376250E+00,4.194218E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +1018572,fr,1,3.650000E+00,-2.376250E+00,4.194218E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1018578,fr,1,3.650000E+00,-2.376250E+00,4.194218E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +1018584,fr,2,3.750000E+00,-2.376250E+00,4.194218E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +1018588,fr,1,3.750000E+00,-2.376250E+00,4.194218E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.801755E+01,0.000000E+00 +1018603,fr,1,3.850000E+00,-2.376250E+00,4.194218E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998926E+01,-9.000000E+01 +1018608,fr,2,3.950000E+00,-2.376250E+00,4.194218E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +1018615,fr,1,3.950000E+00,-2.376250E+00,4.194218E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,-9.000000E+01 +1018812,fr,1,5.650000E+00,-2.376250E+00,4.194218E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1019076,fr,1,3.850000E+00,4.606880E+00,4.257730E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +1019103,fr,1,4.050000E+00,4.606880E+00,4.257730E+01,5.000000E+00,Active Shallow Crust,2.400055E+02,5.800578E+01,0.000000E+00 +1020000,fr,6,3.550000E+00,-1.834880E+00,4.311699E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999080E+01,0.000000E+00 +1020003,fr,1,3.550000E+00,-1.834880E+00,4.311699E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799824E+01,0.000000E+00 +1020008,fr,1,3.550000E+00,-1.834880E+00,4.311699E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999069E+01,-9.000000E+01 +1020012,fr,3,3.650000E+00,-1.834880E+00,4.311699E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1020013,fr,1,3.650000E+00,-1.834880E+00,4.311699E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1020014,fr,1,3.650000E+00,-1.834880E+00,4.311699E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1020016,fr,1,3.650000E+00,-1.834880E+00,4.311699E+01,1.500000E+01,Active Shallow Crust,2.400006E+02,5.801300E+01,0.000000E+00 +1020020,fr,1,3.650000E+00,-1.834880E+00,4.311699E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +1020024,fr,1,3.750000E+00,-1.834880E+00,4.311699E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1020027,fr,1,3.750000E+00,-1.834880E+00,4.311699E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.801726E+01,0.000000E+00 +1020032,fr,1,3.750000E+00,-1.834880E+00,4.311699E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +1020041,fr,1,3.850000E+00,-1.834880E+00,4.311699E+01,2.750000E+01,Active Shallow Crust,2.400105E+02,5.799787E+01,0.000000E+00 +1020048,fr,2,3.950000E+00,-1.834880E+00,4.311699E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +1020049,fr,1,3.950000E+00,-1.834880E+00,4.311699E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +1020051,fr,1,3.950000E+00,-1.834880E+00,4.311699E+01,5.000000E+00,Active Shallow Crust,2.400194E+02,5.800489E+01,0.000000E+00 +1020072,fr,1,4.150000E+00,-1.834880E+00,4.311699E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1020109,fr,1,4.450000E+00,-1.834880E+00,4.311699E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1020168,fr,1,4.950000E+00,-1.834880E+00,4.311699E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1020192,fr,1,5.150000E+00,-1.834880E+00,4.311699E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1020480,fr,2,3.550000E+00,-6.370100E-01,4.972341E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1020492,fr,1,3.650000E+00,-6.370100E-01,4.972341E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1020495,fr,1,3.650000E+00,-6.370100E-01,4.972341E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801289E+01,0.000000E+00 +1020498,fr,1,3.650000E+00,-6.370100E-01,4.972341E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,-9.000000E+01 +1020508,fr,1,3.750000E+00,-6.370100E-01,4.972341E+01,1.500000E+01,Active Shallow Crust,2.400087E+02,5.801767E+01,0.000000E+00 +1020510,fr,1,3.750000E+00,-6.370100E-01,4.972341E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,-9.000000E+01 +1020517,fr,1,3.850000E+00,-6.370100E-01,4.972341E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1020528,fr,1,3.950000E+00,-6.370100E-01,4.972341E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1020552,fr,1,4.150000E+00,-6.370100E-01,4.972341E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1020577,fr,1,4.350000E+00,-6.370100E-01,4.972341E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1020603,fr,1,4.550000E+00,-6.370100E-01,4.972341E+01,5.000000E+00,Active Shallow Crust,2.400103E+02,5.799757E+01,0.000000E+00 +1020663,fr,1,5.050000E+00,-6.370100E-01,4.972341E+01,5.000000E+00,Active Shallow Crust,2.400239E+02,5.799790E+01,0.000000E+00 +1021035,fr,1,4.150000E+00,5.016740E+00,4.263294E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799678E+01,0.000000E+00 +1021477,fr,1,3.850000E+00,4.222050E+00,5.258728E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +1021920,fr,1,3.550000E+00,5.186440E+00,4.556960E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999294E+01,0.000000E+00 +1021921,fr,2,3.550000E+00,5.186440E+00,4.556960E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999294E+01,0.000000E+00 +1021929,fr,1,3.550000E+00,5.186440E+00,4.556960E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999294E+01,0.000000E+00 +1021932,fr,2,3.650000E+00,5.186440E+00,4.556960E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998742E+01,0.000000E+00 +1021933,fr,1,3.650000E+00,5.186440E+00,4.556960E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998742E+01,0.000000E+00 +1021935,fr,1,3.650000E+00,5.186440E+00,4.556960E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801272E+01,0.000000E+00 +1021945,fr,1,3.750000E+00,5.186440E+00,4.556960E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +1021956,fr,2,3.850000E+00,5.186440E+00,4.556960E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1021958,fr,1,3.850000E+00,5.186440E+00,4.556960E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1021962,fr,1,3.850000E+00,5.186440E+00,4.556960E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,-9.000000E+01 +1021968,fr,2,3.950000E+00,5.186440E+00,4.556960E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999109E+01,0.000000E+00 +1021969,fr,1,3.950000E+00,5.186440E+00,4.556960E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999109E+01,0.000000E+00 +1021995,fr,1,4.150000E+00,5.186440E+00,4.556960E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.799684E+01,0.000000E+00 +1022004,fr,1,4.250000E+00,5.186440E+00,4.556960E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +1022007,fr,1,4.250000E+00,5.186440E+00,4.556960E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.799363E+01,0.000000E+00 +1022017,fr,1,4.350000E+00,5.186440E+00,4.556960E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +1022019,fr,2,4.350000E+00,5.186440E+00,4.556960E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799595E+01,0.000000E+00 +1022030,fr,1,4.450000E+00,5.186440E+00,4.556960E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1022109,fr,1,5.050000E+00,5.186440E+00,4.556960E+01,5.000000E+00,Active Shallow Crust,1.288856E+02,8.999047E+01,0.000000E+00 +1022138,fr,1,5.350000E+00,5.186440E+00,4.556960E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1022186,fr,1,5.750000E+00,5.186440E+00,4.556960E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1022400,fr,2,3.550000E+00,7.954670E+00,4.707615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999313E+01,0.000000E+00 +1022409,fr,1,3.550000E+00,7.954670E+00,4.707615E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.999657E+01,0.000000E+00 +1022412,fr,4,3.650000E+00,7.954670E+00,4.707615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998776E+01,0.000000E+00 +1022413,fr,1,3.650000E+00,7.954670E+00,4.707615E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998776E+01,0.000000E+00 +1022417,fr,1,3.650000E+00,7.954670E+00,4.707615E+01,2.750000E+01,Active Shallow Crust,2.400019E+02,5.801233E+01,0.000000E+00 +1022421,fr,3,3.650000E+00,7.954670E+00,4.707615E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.996354E+01,0.000000E+00 +1022424,fr,1,3.750000E+00,7.954670E+00,4.707615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +1022430,fr,1,3.750000E+00,7.954670E+00,4.707615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998896E+01,-9.000000E+01 +1022436,fr,2,3.850000E+00,7.954670E+00,4.707615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +1022444,fr,1,3.850000E+00,7.954670E+00,4.707615E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,-9.000000E+01 +1022466,fr,1,4.050000E+00,7.954670E+00,4.707615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998828E+01,-9.000000E+01 +1022469,fr,1,4.050000E+00,7.954670E+00,4.707615E+01,5.000000E+00,Active Shallow Crust,1.288903E+02,8.999421E+01,0.000000E+00 +1022472,fr,2,4.150000E+00,7.954670E+00,4.707615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1022473,fr,1,4.150000E+00,7.954670E+00,4.707615E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1022475,fr,1,4.150000E+00,7.954670E+00,4.707615E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799732E+01,0.000000E+00 +1022510,fr,1,4.450000E+00,7.954670E+00,4.707615E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1022518,fr,1,4.450000E+00,7.954670E+00,4.707615E+01,1.500000E+01,Active Shallow Crust,1.288916E+02,8.999391E+01,0.000000E+00 +1022532,fr,1,4.650000E+00,7.954670E+00,4.707615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +1022544,fr,2,4.750000E+00,7.954670E+00,4.707615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1022880,fr,1,3.550000E+00,-3.529100E-01,4.761222E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1022881,fr,2,3.550000E+00,-3.529100E-01,4.761222E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1022898,fr,1,3.650000E+00,-3.529100E-01,4.761222E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +1022901,fr,1,3.650000E+00,-3.529100E-01,4.761222E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.996348E+01,0.000000E+00 +1022904,fr,2,3.750000E+00,-3.529100E-01,4.761222E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1022910,fr,1,3.750000E+00,-3.529100E-01,4.761222E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +1022911,fr,2,3.750000E+00,-3.529100E-01,4.761222E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +1022919,fr,1,3.850000E+00,-3.529100E-01,4.761222E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799784E+01,0.000000E+00 +1022928,fr,1,3.950000E+00,-3.529100E-01,4.761222E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1022938,fr,1,3.950000E+00,-3.529100E-01,4.761222E+01,1.500000E+01,Active Shallow Crust,1.289003E+02,8.999370E+01,0.000000E+00 +1022940,fr,1,4.050000E+00,-3.529100E-01,4.761222E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1022949,fr,1,4.050000E+00,-3.529100E-01,4.761222E+01,5.000000E+00,Active Shallow Crust,1.288904E+02,8.999367E+01,0.000000E+00 +1022956,fr,1,4.150000E+00,-3.529100E-01,4.761222E+01,1.500000E+01,Active Shallow Crust,2.400087E+02,5.799738E+01,0.000000E+00 +1022988,fr,1,4.450000E+00,-3.529100E-01,4.761222E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1022989,fr,1,4.450000E+00,-3.529100E-01,4.761222E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1023027,fr,1,4.750000E+00,-3.529100E-01,4.761222E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.800455E+01,0.000000E+00 +1023038,fr,1,4.850000E+00,-3.529100E-01,4.761222E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1023387,fr,1,3.750000E+00,4.086880E+00,5.208184E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.801771E+01,0.000000E+00 +1023429,fr,1,4.050000E+00,4.086880E+00,5.208184E+01,5.000000E+00,Active Shallow Crust,1.288902E+02,8.999303E+01,0.000000E+00 +1023840,fr,1,3.550000E+00,-3.793560E+00,4.772550E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1023846,fr,1,3.550000E+00,-3.793560E+00,4.772550E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,-9.000000E+01 +1023852,fr,1,3.650000E+00,-3.793560E+00,4.772550E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +1023870,fr,1,3.750000E+00,-3.793560E+00,4.772550E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998910E+01,-9.000000E+01 +1023876,fr,3,3.850000E+00,-3.793560E+00,4.772550E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1023877,fr,1,3.850000E+00,-3.793560E+00,4.772550E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1023890,fr,1,3.950000E+00,-3.793560E+00,4.772550E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +1024008,fr,1,4.950000E+00,-3.793560E+00,4.772550E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1025280,fr,2,3.550000E+00,4.229240E+00,4.359231E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999270E+01,0.000000E+00 +1025281,fr,1,3.550000E+00,4.229240E+00,4.359231E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999270E+01,0.000000E+00 +1025292,fr,1,3.650000E+00,4.229240E+00,4.359231E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998698E+01,0.000000E+00 +1025293,fr,1,3.650000E+00,4.229240E+00,4.359231E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998698E+01,0.000000E+00 +1025296,fr,1,3.650000E+00,4.229240E+00,4.359231E+01,1.500000E+01,Active Shallow Crust,2.400015E+02,5.801216E+01,0.000000E+00 +1025299,fr,1,3.650000E+00,4.229240E+00,4.359231E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998683E+01,-9.000000E+01 +1025301,fr,1,3.650000E+00,4.229240E+00,4.359231E+01,5.000000E+00,Active Shallow Crust,1.289014E+02,8.996347E+01,0.000000E+00 +1025323,fr,1,3.850000E+00,4.229240E+00,4.359231E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998954E+01,-9.000000E+01 +1025390,fr,1,4.450000E+00,4.229240E+00,4.359231E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +1025406,fr,1,4.550000E+00,4.229240E+00,4.359231E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,-9.000000E+01 +1025796,fr,1,3.850000E+00,3.276420E+00,4.761675E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +1026252,fr,1,3.650000E+00,2.518410E+00,5.269486E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +1026300,fr,1,4.050000E+00,2.518410E+00,5.269486E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1026720,fr,1,3.550000E+00,1.594900E-01,4.332244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1026729,fr,1,3.550000E+00,1.594900E-01,4.332244E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999370E+01,0.000000E+00 +1026732,fr,1,3.650000E+00,1.594900E-01,4.332244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1026750,fr,1,3.750000E+00,1.594900E-01,4.332244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,-9.000000E+01 +1026758,fr,1,3.850000E+00,1.594900E-01,4.332244E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1026759,fr,1,3.850000E+00,1.594900E-01,4.332244E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.799774E+01,0.000000E+00 +1026774,fr,1,3.950000E+00,1.594900E-01,4.332244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,-9.000000E+01 +1026780,fr,2,4.050000E+00,1.594900E-01,4.332244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1026781,fr,1,4.050000E+00,1.594900E-01,4.332244E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1026829,fr,1,4.450000E+00,1.594900E-01,4.332244E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1026830,fr,1,4.450000E+00,1.594900E-01,4.332244E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1026881,fr,1,4.850000E+00,1.594900E-01,4.332244E+01,2.750000E+01,Active Shallow Crust,2.400159E+02,5.800210E+01,0.000000E+00 +1026894,fr,1,4.950000E+00,1.594900E-01,4.332244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1026901,fr,1,5.050000E+00,1.594900E-01,4.332244E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1026915,fr,1,5.150000E+00,1.594900E-01,4.332244E+01,5.000000E+00,Active Shallow Crust,2.400179E+02,5.799965E+01,0.000000E+00 +1027056,fr,1,6.350000E+00,1.594955E-01,4.332244E+01,7.567806E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +1027200,fr,2,3.550000E+00,5.396960E+00,4.494229E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999286E+01,0.000000E+00 +1027201,fr,1,3.550000E+00,5.396960E+00,4.494229E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999286E+01,0.000000E+00 +1027202,fr,1,3.550000E+00,5.396960E+00,4.494229E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999286E+01,0.000000E+00 +1027206,fr,1,3.550000E+00,5.396960E+00,4.494229E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999278E+01,-9.000000E+01 +1027209,fr,1,3.550000E+00,5.396960E+00,4.494229E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999287E+01,0.000000E+00 +1027214,fr,1,3.650000E+00,5.396960E+00,4.494229E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998727E+01,0.000000E+00 +1027215,fr,1,3.650000E+00,5.396960E+00,4.494229E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801269E+01,0.000000E+00 +1027218,fr,1,3.650000E+00,5.396960E+00,4.494229E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998713E+01,-9.000000E+01 +1027236,fr,2,3.850000E+00,5.396960E+00,4.494229E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1027249,fr,1,3.950000E+00,5.396960E+00,4.494229E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999099E+01,0.000000E+00 +1027272,fr,2,4.150000E+00,5.396960E+00,4.494229E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1027284,fr,1,4.250000E+00,5.396960E+00,4.494229E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1027287,fr,1,4.250000E+00,5.396960E+00,4.494229E+01,5.000000E+00,Active Shallow Crust,2.400071E+02,5.799377E+01,0.000000E+00 +1027356,fr,1,4.850000E+00,5.396960E+00,4.494229E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +1027452,fr,1,5.650000E+00,5.396960E+00,4.494229E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1027501,fr,1,6.050000E+00,5.396960E+00,4.494229E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1027680,fr,6,3.550000E+00,-5.451000E-02,4.289171E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1027681,fr,3,3.550000E+00,-5.451000E-02,4.289171E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1027682,fr,2,3.550000E+00,-5.451000E-02,4.289171E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1027684,fr,1,3.550000E+00,-5.451000E-02,4.289171E+01,1.500000E+01,Active Shallow Crust,2.400119E+02,5.799810E+01,0.000000E+00 +1027687,fr,1,3.550000E+00,-5.451000E-02,4.289171E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1027689,fr,3,3.550000E+00,-5.451000E-02,4.289171E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999371E+01,0.000000E+00 +1027690,fr,1,3.550000E+00,-5.451000E-02,4.289171E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.999371E+01,0.000000E+00 +1027692,fr,5,3.650000E+00,-5.451000E-02,4.289171E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1027693,fr,2,3.650000E+00,-5.451000E-02,4.289171E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1027695,fr,1,3.650000E+00,-5.451000E-02,4.289171E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801283E+01,0.000000E+00 +1027701,fr,1,3.650000E+00,-5.451000E-02,4.289171E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996350E+01,0.000000E+00 +1027704,fr,3,3.750000E+00,-5.451000E-02,4.289171E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1027705,fr,4,3.750000E+00,-5.451000E-02,4.289171E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1027706,fr,1,3.750000E+00,-5.451000E-02,4.289171E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1027708,fr,1,3.750000E+00,-5.451000E-02,4.289171E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.801751E+01,0.000000E+00 +1027713,fr,1,3.750000E+00,-5.451000E-02,4.289171E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996735E+01,0.000000E+00 +1027714,fr,2,3.750000E+00,-5.451000E-02,4.289171E+01,1.500000E+01,Active Shallow Crust,1.288969E+02,8.996735E+01,0.000000E+00 +1027716,fr,2,3.850000E+00,-5.451000E-02,4.289171E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1027717,fr,1,3.850000E+00,-5.451000E-02,4.289171E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1027724,fr,1,3.850000E+00,-5.451000E-02,4.289171E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +1027725,fr,1,3.850000E+00,-5.451000E-02,4.289171E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999371E+01,0.000000E+00 +1027728,fr,4,3.950000E+00,-5.451000E-02,4.289171E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1027729,fr,1,3.950000E+00,-5.451000E-02,4.289171E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1027731,fr,1,3.950000E+00,-5.451000E-02,4.289171E+01,5.000000E+00,Active Shallow Crust,2.400193E+02,5.800488E+01,0.000000E+00 +1027737,fr,2,3.950000E+00,-5.451000E-02,4.289171E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.999372E+01,0.000000E+00 +1027740,fr,4,4.050000E+00,-5.451000E-02,4.289171E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1027741,fr,1,4.050000E+00,-5.451000E-02,4.289171E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1027746,fr,1,4.050000E+00,-5.451000E-02,4.289171E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +1027749,fr,2,4.050000E+00,-5.451000E-02,4.289171E+01,5.000000E+00,Active Shallow Crust,1.288910E+02,8.999372E+01,0.000000E+00 +1027752,fr,2,4.150000E+00,-5.451000E-02,4.289171E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1027753,fr,1,4.150000E+00,-5.451000E-02,4.289171E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1027756,fr,1,4.150000E+00,-5.451000E-02,4.289171E+01,1.500000E+01,Active Shallow Crust,2.400078E+02,5.799722E+01,0.000000E+00 +1027758,fr,2,4.150000E+00,-5.451000E-02,4.289171E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +1027764,fr,2,4.250000E+00,-5.451000E-02,4.289171E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1027789,fr,2,4.450000E+00,-5.451000E-02,4.289171E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1027801,fr,1,4.550000E+00,-5.451000E-02,4.289171E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1027805,fr,1,4.550000E+00,-5.451000E-02,4.289171E+01,2.750000E+01,Active Shallow Crust,2.400083E+02,5.799717E+01,0.000000E+00 +1027806,fr,1,4.550000E+00,-5.451000E-02,4.289171E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +1027824,fr,1,4.750000E+00,-5.451000E-02,4.289171E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1027826,fr,1,4.750000E+00,-5.451000E-02,4.289171E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1027851,fr,1,4.950000E+00,-5.451000E-02,4.289171E+01,5.000000E+00,Active Shallow Crust,2.400103E+02,5.800418E+01,0.000000E+00 +1027860,fr,1,5.050000E+00,-5.451000E-02,4.289171E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +1027861,fr,1,5.050000E+00,-5.451000E-02,4.289171E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +1027872,fr,1,5.150000E+00,-5.451000E-02,4.289171E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +1027884,fr,1,5.250000E+00,-5.451000E-02,4.289171E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +1027885,fr,1,5.250000E+00,-5.451000E-02,4.289171E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +1027898,fr,1,5.350000E+00,-5.451000E-02,4.289171E+01,2.750000E+01,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +1027932,fr,1,5.650000E+00,-5.451000E-02,4.289171E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +1028160,fr,1,3.550000E+00,5.912040E+00,4.153455E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999245E+01,0.000000E+00 +1028184,fr,1,3.750000E+00,5.912040E+00,4.153455E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998801E+01,0.000000E+00 +1028643,fr,1,3.550000E+00,9.278390E+00,4.925453E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799688E+01,0.000000E+00 +1029192,fr,1,4.150000E+00,3.591330E+00,3.999959E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +1029615,fr,1,3.650000E+00,-3.863760E+00,4.758192E+01,5.000000E+00,Active Shallow Crust,2.400019E+02,5.801273E+01,0.000000E+00 +1029618,fr,1,3.650000E+00,-3.863760E+00,4.758192E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999080E+01,-9.000000E+01 +1029664,fr,1,4.050000E+00,-3.863760E+00,4.758192E+01,1.500000E+01,Active Shallow Crust,2.400059E+02,5.800578E+01,0.000000E+00 +1029792,fr,1,5.150000E+00,-3.863760E+00,4.758192E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1029867,fr,1,5.750000E+00,-3.863760E+00,4.758192E+01,5.000000E+00,Active Shallow Crust,2.400398E+02,5.800209E+01,0.000000E+00 +1030080,fr,1,3.550000E+00,-3.043190E+00,4.297490E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998893E+01,0.000000E+00 +1030089,fr,2,3.550000E+00,-3.043190E+00,4.297490E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999447E+01,0.000000E+00 +1030092,fr,2,3.650000E+00,-3.043190E+00,4.297490E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1030093,fr,1,3.650000E+00,-3.043190E+00,4.297490E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1030095,fr,1,3.650000E+00,-3.043190E+00,4.297490E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801271E+01,0.000000E+00 +1030101,fr,1,3.650000E+00,-3.043190E+00,4.297490E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996371E+01,0.000000E+00 +1030104,fr,2,3.750000E+00,-3.043190E+00,4.297490E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999121E+01,0.000000E+00 +1030107,fr,1,3.750000E+00,-3.043190E+00,4.297490E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801724E+01,0.000000E+00 +1030116,fr,3,3.850000E+00,-3.043190E+00,4.297490E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1030117,fr,1,3.850000E+00,-3.043190E+00,4.297490E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1030137,fr,1,3.950000E+00,-3.043190E+00,4.297490E+01,5.000000E+00,Active Shallow Crust,1.289011E+02,8.999302E+01,0.000000E+00 +1030140,fr,3,4.050000E+00,-3.043190E+00,4.297490E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +1030560,fr,1,3.550000E+00,6.239770E+00,4.726158E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999316E+01,0.000000E+00 +1030561,fr,2,3.550000E+00,6.239770E+00,4.726158E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999316E+01,0.000000E+00 +1030563,fr,1,3.550000E+00,6.239770E+00,4.726158E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799912E+01,0.000000E+00 +1030575,fr,1,3.650000E+00,6.239770E+00,4.726158E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801287E+01,0.000000E+00 +1030590,fr,1,3.750000E+00,6.239770E+00,4.726158E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998900E+01,-9.000000E+01 +1030591,fr,1,3.750000E+00,6.239770E+00,4.726158E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998900E+01,-9.000000E+01 +1030596,fr,1,3.850000E+00,6.239770E+00,4.726158E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +1030597,fr,1,3.850000E+00,6.239770E+00,4.726158E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +1030602,fr,1,3.850000E+00,6.239770E+00,4.726158E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,-9.000000E+01 +1030605,fr,1,3.850000E+00,6.239770E+00,4.726158E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999274E+01,0.000000E+00 +1030622,fr,1,4.050000E+00,6.239770E+00,4.726158E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998846E+01,0.000000E+00 +1030644,fr,3,4.250000E+00,6.239770E+00,4.726158E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +1030645,fr,1,4.250000E+00,6.239770E+00,4.726158E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +1030653,fr,1,4.250000E+00,6.239770E+00,4.726158E+01,5.000000E+00,Active Shallow Crust,1.288934E+02,8.998097E+01,0.000000E+00 +1030657,fr,2,4.350000E+00,6.239770E+00,4.726158E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +1030687,fr,1,4.550000E+00,6.239770E+00,4.726158E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998905E+01,-9.000000E+01 +1030932,fr,1,6.650000E+00,6.239783E+00,4.726158E+01,1.068981E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1031172,fr,1,4.650000E+00,5.238450E+00,4.916320E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999071E+01,0.000000E+00 +1031199,fr,1,4.850000E+00,5.238450E+00,4.916320E+01,5.000000E+00,Active Shallow Crust,2.400185E+02,5.800246E+01,0.000000E+00 +1031233,fr,1,5.150000E+00,5.238450E+00,4.916320E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +1031526,fr,1,3.550000E+00,4.696370E+00,4.069813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999226E+01,-9.000000E+01 +1031546,fr,1,3.750000E+00,4.696370E+00,4.069813E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998785E+01,0.000000E+00 +1031556,fr,1,3.850000E+00,4.696370E+00,4.069813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +1031583,fr,1,4.050000E+00,4.696370E+00,4.069813E+01,5.000000E+00,Active Shallow Crust,2.400053E+02,5.800487E+01,0.000000E+00 +1031685,fr,1,4.850000E+00,4.696370E+00,4.069813E+01,5.000000E+00,Active Shallow Crust,1.288943E+02,8.998917E+01,0.000000E+00 +1031883,fr,1,6.550000E+00,4.684954E+00,4.071312E+01,8.079612E+00,Active Shallow Crust,2.400828E+02,5.799987E+01,0.000000E+00 +1032002,fr,2,3.550000E+00,2.109570E+00,4.099540E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +1032012,fr,1,3.650000E+00,2.109570E+00,4.099540E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1032018,fr,1,3.650000E+00,2.109570E+00,4.099540E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,-9.000000E+01 +1032026,fr,1,3.750000E+00,2.109570E+00,4.099540E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +1032036,fr,1,3.850000E+00,2.109570E+00,4.099540E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +1032048,fr,1,3.950000E+00,2.109570E+00,4.099540E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1032072,fr,1,4.150000E+00,2.109570E+00,4.099540E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1032101,fr,1,4.350000E+00,2.109570E+00,4.099540E+01,2.750000E+01,Active Shallow Crust,2.400072E+02,5.799576E+01,0.000000E+00 +1032513,fr,1,3.750000E+00,2.141490E+00,4.353968E+01,5.000000E+00,Active Shallow Crust,1.288973E+02,8.996744E+01,0.000000E+00 +1032960,fr,1,3.550000E+00,-1.076360E+00,4.701940E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1032961,fr,1,3.550000E+00,-1.076360E+00,4.701940E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1032964,fr,1,3.550000E+00,-1.076360E+00,4.701940E+01,1.500000E+01,Active Shallow Crust,2.400124E+02,5.799815E+01,0.000000E+00 +1032978,fr,1,3.650000E+00,-1.076360E+00,4.701940E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,-9.000000E+01 +1032979,fr,1,3.650000E+00,-1.076360E+00,4.701940E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999070E+01,-9.000000E+01 +1032981,fr,1,3.650000E+00,-1.076360E+00,4.701940E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.996339E+01,0.000000E+00 +1032984,fr,3,3.750000E+00,-1.076360E+00,4.701940E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +1032985,fr,1,3.750000E+00,-1.076360E+00,4.701940E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +1033006,fr,1,3.850000E+00,-1.076360E+00,4.701940E+01,1.500000E+01,Active Shallow Crust,1.288954E+02,8.999392E+01,0.000000E+00 +1033008,fr,1,3.950000E+00,-1.076360E+00,4.701940E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +1033011,fr,1,3.950000E+00,-1.076360E+00,4.701940E+01,5.000000E+00,Active Shallow Crust,2.400200E+02,5.800494E+01,0.000000E+00 +1033021,fr,1,4.050000E+00,-1.076360E+00,4.701940E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1033044,fr,1,4.250000E+00,-1.076360E+00,4.701940E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1033045,fr,1,4.250000E+00,-1.076360E+00,4.701940E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1033056,fr,1,4.350000E+00,-1.076360E+00,4.701940E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +1033068,fr,1,4.450000E+00,-1.076360E+00,4.701940E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +1033080,fr,1,4.550000E+00,-1.076360E+00,4.701940E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1033440,fr,2,3.550000E+00,4.455400E+00,4.663706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999307E+01,0.000000E+00 +1033447,fr,1,3.550000E+00,4.455400E+00,4.663706E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999300E+01,-9.000000E+01 +1033452,fr,3,3.650000E+00,4.455400E+00,4.663706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998766E+01,0.000000E+00 +1033453,fr,2,3.650000E+00,4.455400E+00,4.663706E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998766E+01,0.000000E+00 +1033458,fr,1,3.650000E+00,4.455400E+00,4.663706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998752E+01,-9.000000E+01 +1033488,fr,1,3.950000E+00,4.455400E+00,4.663706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +1033513,fr,1,4.150000E+00,4.455400E+00,4.663706E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1033539,fr,1,4.350000E+00,4.455400E+00,4.663706E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799610E+01,0.000000E+00 +1033540,fr,1,4.350000E+00,4.455400E+00,4.663706E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.799610E+01,0.000000E+00 +1033543,fr,1,4.350000E+00,4.455400E+00,4.663706E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998885E+01,-9.000000E+01 +1033545,fr,1,4.350000E+00,4.455400E+00,4.663706E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.998302E+01,0.000000E+00 +1033560,fr,1,4.550000E+00,4.455400E+00,4.663706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998905E+01,0.000000E+00 +1033572,fr,1,4.650000E+00,4.455400E+00,4.663706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +1033623,fr,1,5.050000E+00,4.455400E+00,4.663706E+01,5.000000E+00,Active Shallow Crust,2.400220E+02,5.799758E+01,0.000000E+00 +1033921,fr,1,3.550000E+00,-3.957720E+00,4.866206E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1033933,fr,1,3.650000E+00,-3.957720E+00,4.866206E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +1033944,fr,2,3.750000E+00,-3.957720E+00,4.866206E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +1033948,fr,1,3.750000E+00,-3.957720E+00,4.866206E+01,1.500000E+01,Active Shallow Crust,2.400088E+02,5.801743E+01,0.000000E+00 +1033969,fr,1,3.950000E+00,-3.957720E+00,4.866206E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +1033971,fr,1,3.950000E+00,-3.957720E+00,4.866206E+01,5.000000E+00,Active Shallow Crust,2.400199E+02,5.800515E+01,0.000000E+00 +1033974,fr,1,3.950000E+00,-3.957720E+00,4.866206E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998937E+01,-9.000000E+01 +1033975,fr,1,3.950000E+00,-3.957720E+00,4.866206E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998937E+01,-9.000000E+01 +1034016,fr,1,4.350000E+00,-3.957720E+00,4.866206E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +1034124,fr,1,5.250000E+00,-3.957720E+00,4.866206E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1034403,fr,1,3.550000E+00,-3.071500E-01,4.881613E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799812E+01,0.000000E+00 +1034410,fr,1,3.550000E+00,-3.071500E-01,4.881613E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.999377E+01,0.000000E+00 +1034412,fr,1,3.650000E+00,-3.071500E-01,4.881613E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1034413,fr,1,3.650000E+00,-3.071500E-01,4.881613E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1034436,fr,1,3.850000E+00,-3.071500E-01,4.881613E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1034448,fr,2,3.950000E+00,-3.071500E-01,4.881613E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1034453,fr,1,3.950000E+00,-3.071500E-01,4.881613E+01,2.750000E+01,Active Shallow Crust,2.400202E+02,5.800503E+01,0.000000E+00 +1034461,fr,1,4.050000E+00,-3.071500E-01,4.881613E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1034475,fr,1,4.150000E+00,-3.071500E-01,4.881613E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.799738E+01,0.000000E+00 +1034484,fr,1,4.250000E+00,-3.071500E-01,4.881613E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1034493,fr,1,4.250000E+00,-3.071500E-01,4.881613E+01,5.000000E+00,Active Shallow Crust,1.288939E+02,8.998094E+01,0.000000E+00 +1034500,fr,1,4.350000E+00,-3.071500E-01,4.881613E+01,1.500000E+01,Active Shallow Crust,2.400090E+02,5.799606E+01,0.000000E+00 +1034503,fr,1,4.350000E+00,-3.071500E-01,4.881613E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1034508,fr,1,4.450000E+00,-3.071500E-01,4.881613E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1034880,fr,1,3.550000E+00,7.144600E+00,4.329951E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999266E+01,0.000000E+00 +1034883,fr,1,3.550000E+00,7.144600E+00,4.329951E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799842E+01,0.000000E+00 +1034892,fr,1,3.650000E+00,7.144600E+00,4.329951E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998692E+01,0.000000E+00 +1034937,fr,1,3.950000E+00,7.144600E+00,4.329951E+01,5.000000E+00,Active Shallow Crust,1.289010E+02,8.999306E+01,0.000000E+00 +1034989,fr,1,4.450000E+00,7.144600E+00,4.329951E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1035004,fr,1,4.550000E+00,7.144600E+00,4.329951E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.799707E+01,0.000000E+00 +1035108,fr,1,5.450000E+00,7.144600E+00,4.329951E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1035360,fr,2,3.550000E+00,-1.510270E+00,4.260021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +1035361,fr,1,3.550000E+00,-1.510270E+00,4.260021E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +1035362,fr,1,3.550000E+00,-1.510270E+00,4.260021E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +1035363,fr,1,3.550000E+00,-1.510270E+00,4.260021E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799804E+01,0.000000E+00 +1035372,fr,3,3.650000E+00,-1.510270E+00,4.260021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1035378,fr,1,3.650000E+00,-1.510270E+00,4.260021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +1035384,fr,1,3.750000E+00,-1.510270E+00,4.260021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1035420,fr,1,4.050000E+00,-1.510270E+00,4.260021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1035444,fr,1,4.250000E+00,-1.510270E+00,4.260021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1035445,fr,1,4.250000E+00,-1.510270E+00,4.260021E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1035450,fr,1,4.250000E+00,-1.510270E+00,4.260021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +1035453,fr,1,4.250000E+00,-1.510270E+00,4.260021E+01,5.000000E+00,Active Shallow Crust,1.288949E+02,8.998094E+01,0.000000E+00 +1035456,fr,1,4.350000E+00,-1.510270E+00,4.260021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1035468,fr,1,4.450000E+00,-1.510270E+00,4.260021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1035498,fr,1,4.650000E+00,-1.510270E+00,4.260021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +1035520,fr,1,4.850000E+00,-1.510270E+00,4.260021E+01,1.500000E+01,Active Shallow Crust,2.400156E+02,5.800201E+01,0.000000E+00 +1036011,fr,1,4.950000E+00,3.106300E+00,5.257742E+01,5.000000E+00,Active Shallow Crust,2.400151E+02,5.800507E+01,0.000000E+00 +1036332,fr,2,3.650000E+00,4.492140E+00,4.134888E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999326E+01,0.000000E+00 +1036333,fr,1,3.650000E+00,4.492140E+00,4.134888E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999326E+01,0.000000E+00 +1036347,fr,1,3.750000E+00,4.492140E+00,4.134888E+01,5.000000E+00,Active Shallow Crust,2.400071E+02,5.801791E+01,0.000000E+00 +1036381,fr,1,4.050000E+00,4.492140E+00,4.134888E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999149E+01,0.000000E+00 +1036800,fr,8,3.550000E+00,8.210960E+00,4.684518E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998621E+01,0.000000E+00 +1036801,fr,3,3.550000E+00,8.210960E+00,4.684518E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998621E+01,0.000000E+00 +1036802,fr,1,3.550000E+00,8.210960E+00,4.684518E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998621E+01,0.000000E+00 +1036803,fr,4,3.550000E+00,8.210960E+00,4.684518E+01,5.000000E+00,Active Shallow Crust,2.400139E+02,5.799838E+01,0.000000E+00 +1036806,fr,1,3.550000E+00,8.210960E+00,4.684518E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998605E+01,-9.000000E+01 +1036807,fr,1,3.550000E+00,8.210960E+00,4.684518E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998605E+01,-9.000000E+01 +1036809,fr,2,3.550000E+00,8.210960E+00,4.684518E+01,5.000000E+00,Active Shallow Crust,1.288977E+02,8.999310E+01,0.000000E+00 +1036810,fr,2,3.550000E+00,8.210960E+00,4.684518E+01,1.500000E+01,Active Shallow Crust,1.288977E+02,8.999310E+01,0.000000E+00 +1036812,fr,5,3.650000E+00,8.210960E+00,4.684518E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998771E+01,0.000000E+00 +1036813,fr,3,3.650000E+00,8.210960E+00,4.684518E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998771E+01,0.000000E+00 +1036814,fr,1,3.650000E+00,8.210960E+00,4.684518E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998771E+01,0.000000E+00 +1036815,fr,3,3.650000E+00,8.210960E+00,4.684518E+01,5.000000E+00,Active Shallow Crust,2.400001E+02,5.801454E+01,0.000000E+00 +1036816,fr,1,3.650000E+00,8.210960E+00,4.684518E+01,1.500000E+01,Active Shallow Crust,2.400001E+02,5.801454E+01,0.000000E+00 +1036818,fr,1,3.650000E+00,8.210960E+00,4.684518E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998756E+01,-9.000000E+01 +1036822,fr,2,3.650000E+00,8.210960E+00,4.684518E+01,1.500000E+01,Active Shallow Crust,1.288974E+02,8.996353E+01,0.000000E+00 +1036824,fr,6,3.750000E+00,8.210960E+00,4.684518E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +1036825,fr,2,3.750000E+00,8.210960E+00,4.684518E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +1036826,fr,1,3.750000E+00,8.210960E+00,4.684518E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +1036827,fr,2,3.750000E+00,8.210960E+00,4.684518E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.801746E+01,0.000000E+00 +1036830,fr,2,3.750000E+00,8.210960E+00,4.684518E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,-9.000000E+01 +1036833,fr,2,3.750000E+00,8.210960E+00,4.684518E+01,5.000000E+00,Active Shallow Crust,1.288979E+02,8.996750E+01,0.000000E+00 +1036836,fr,7,3.850000E+00,8.210960E+00,4.684518E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1036838,fr,1,3.850000E+00,8.210960E+00,4.684518E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1036839,fr,2,3.850000E+00,8.210960E+00,4.684518E+01,5.000000E+00,Active Shallow Crust,2.400098E+02,5.799788E+01,0.000000E+00 +1036842,fr,1,3.850000E+00,8.210960E+00,4.684518E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,-9.000000E+01 +1036843,fr,1,3.850000E+00,8.210960E+00,4.684518E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,-9.000000E+01 +1036845,fr,1,3.850000E+00,8.210960E+00,4.684518E+01,5.000000E+00,Active Shallow Crust,1.288942E+02,8.999512E+01,0.000000E+00 +1036848,fr,3,3.950000E+00,8.210960E+00,4.684518E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +1036853,fr,1,3.950000E+00,8.210960E+00,4.684518E+01,2.750000E+01,Active Shallow Crust,2.400211E+02,5.800381E+01,0.000000E+00 +1036859,fr,1,3.950000E+00,8.210960E+00,4.684518E+01,2.750000E+01,Active Shallow Crust,1.289000E+02,8.999565E+01,0.000000E+00 +1036860,fr,1,4.050000E+00,8.210960E+00,4.684518E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999224E+01,0.000000E+00 +1036867,fr,1,4.050000E+00,8.210960E+00,4.684518E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999215E+01,-9.000000E+01 +1036872,fr,1,4.150000E+00,8.210960E+00,4.684518E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999309E+01,0.000000E+00 +1036875,fr,1,4.150000E+00,8.210960E+00,4.684518E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.799659E+01,0.000000E+00 +1036884,fr,3,4.250000E+00,8.210960E+00,4.684518E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998768E+01,0.000000E+00 +1036885,fr,1,4.250000E+00,8.210960E+00,4.684518E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998768E+01,0.000000E+00 +1036887,fr,1,4.250000E+00,8.210960E+00,4.684518E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.799446E+01,0.000000E+00 +1036897,fr,1,4.350000E+00,8.210960E+00,4.684518E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +1036899,fr,1,4.350000E+00,8.210960E+00,4.684518E+01,5.000000E+00,Active Shallow Crust,2.400094E+02,5.799529E+01,0.000000E+00 +1036911,fr,1,4.450000E+00,8.210960E+00,4.684518E+01,5.000000E+00,Active Shallow Crust,2.400062E+02,5.799458E+01,0.000000E+00 +1036915,fr,1,4.450000E+00,8.210960E+00,4.684518E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +1036916,fr,1,4.450000E+00,8.210960E+00,4.684518E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +1036920,fr,1,4.550000E+00,8.210960E+00,4.684518E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999127E+01,0.000000E+00 +1036921,fr,2,4.550000E+00,8.210960E+00,4.684518E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999127E+01,0.000000E+00 +1036924,fr,1,4.550000E+00,8.210960E+00,4.684518E+01,1.500000E+01,Active Shallow Crust,2.400091E+02,5.799799E+01,0.000000E+00 +1036932,fr,1,4.650000E+00,8.210960E+00,4.684518E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998833E+01,0.000000E+00 +1036939,fr,1,4.650000E+00,8.210960E+00,4.684518E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998820E+01,-9.000000E+01 +1036944,fr,1,4.750000E+00,8.210960E+00,4.684518E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +1036948,fr,1,4.750000E+00,8.210960E+00,4.684518E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.800474E+01,0.000000E+00 +1036956,fr,1,4.850000E+00,8.210960E+00,4.684518E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999073E+01,0.000000E+00 +1036968,fr,2,4.950000E+00,8.210960E+00,4.684518E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998899E+01,0.000000E+00 +1036975,fr,1,4.950000E+00,8.210960E+00,4.684518E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998886E+01,-9.000000E+01 +1036980,fr,1,5.050000E+00,8.210960E+00,4.684518E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1036995,fr,1,5.150000E+00,8.210960E+00,4.684518E+01,5.000000E+00,Active Shallow Crust,2.400196E+02,5.800005E+01,0.000000E+00 +1037029,fr,2,5.450000E+00,8.210960E+00,4.684518E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999071E+01,0.000000E+00 +1037065,fr,1,5.750000E+00,8.210960E+00,4.684518E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1037067,fr,1,5.750000E+00,8.210960E+00,4.684518E+01,5.000000E+00,Active Shallow Crust,2.400391E+02,5.800183E+01,0.000000E+00 +1037293,fr,1,3.650000E+00,5.385480E+00,4.227836E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998670E+01,0.000000E+00 +1037808,fr,1,3.950000E+00,-1.040100E-01,4.506860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1037902,fr,1,4.650000E+00,-1.040100E-01,4.506860E+01,1.500000E+01,Active Shallow Crust,1.288915E+02,8.998701E+01,0.000000E+00 +1038244,fr,1,3.550000E+00,3.334260E+00,4.504295E+01,1.500000E+01,Active Shallow Crust,2.400117E+02,5.799863E+01,0.000000E+00 +1038252,fr,2,3.650000E+00,3.334260E+00,4.504295E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +1038253,fr,1,3.650000E+00,3.334260E+00,4.504295E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +1038255,fr,1,3.650000E+00,3.334260E+00,4.504295E+01,5.000000E+00,Active Shallow Crust,2.400006E+02,5.801322E+01,0.000000E+00 +1038258,fr,1,3.650000E+00,3.334260E+00,4.504295E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,-9.000000E+01 +1038264,fr,1,3.750000E+00,3.334260E+00,4.504295E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998868E+01,0.000000E+00 +1038312,fr,1,4.150000E+00,3.334260E+00,4.504295E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +1038314,fr,1,4.150000E+00,3.334260E+00,4.504295E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +1038326,fr,1,4.250000E+00,3.334260E+00,4.504295E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +1038370,fr,1,4.550000E+00,3.334260E+00,4.504295E+01,1.500000E+01,Active Shallow Crust,1.288944E+02,8.998557E+01,0.000000E+00 +1038373,fr,1,4.650000E+00,3.334260E+00,4.504295E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1038445,fr,1,5.250000E+00,3.334260E+00,4.504295E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1038770,fr,1,3.950000E+00,-3.255110E+00,4.420192E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1039200,fr,2,3.550000E+00,6.524420E+00,4.831896E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999329E+01,0.000000E+00 +1039212,fr,2,3.650000E+00,6.524420E+00,4.831896E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998804E+01,0.000000E+00 +1039248,fr,1,3.950000E+00,6.524420E+00,4.831896E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999154E+01,0.000000E+00 +1039260,fr,2,4.050000E+00,6.524420E+00,4.831896E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +1039273,fr,1,4.150000E+00,6.524420E+00,4.831896E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1039321,fr,1,4.550000E+00,6.524420E+00,4.831896E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +1039681,fr,1,3.550000E+00,-1.002250E+00,4.716027E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1039682,fr,1,3.550000E+00,-1.002250E+00,4.716027E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1039690,fr,1,3.550000E+00,-1.002250E+00,4.716027E+01,1.500000E+01,Active Shallow Crust,1.288960E+02,8.999400E+01,0.000000E+00 +1039692,fr,3,3.650000E+00,-1.002250E+00,4.716027E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +1039695,fr,1,3.650000E+00,-1.002250E+00,4.716027E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801287E+01,0.000000E+00 +1039704,fr,2,3.750000E+00,-1.002250E+00,4.716027E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +1039716,fr,2,3.850000E+00,-1.002250E+00,4.716027E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1039719,fr,1,3.850000E+00,-1.002250E+00,4.716027E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799779E+01,0.000000E+00 +1039729,fr,1,3.950000E+00,-1.002250E+00,4.716027E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1039741,fr,1,4.050000E+00,-1.002250E+00,4.716027E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1039752,fr,1,4.150000E+00,-1.002250E+00,4.716027E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1039777,fr,1,4.350000E+00,-1.002250E+00,4.716027E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +1039789,fr,1,4.450000E+00,-1.002250E+00,4.716027E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1039792,fr,1,4.450000E+00,-1.002250E+00,4.716027E+01,1.500000E+01,Active Shallow Crust,2.400055E+02,5.799474E+01,0.000000E+00 +1039807,fr,1,4.550000E+00,-1.002250E+00,4.716027E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,-9.000000E+01 +1039820,fr,1,4.650000E+00,-1.002250E+00,4.716027E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,-9.000000E+01 +1039861,fr,1,5.050000E+00,-1.002250E+00,4.716027E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1039944,fr,1,5.750000E+00,-1.002250E+00,4.716027E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1040160,fr,2,3.550000E+00,8.116890E+00,4.670547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998617E+01,0.000000E+00 +1040161,fr,1,3.550000E+00,8.116890E+00,4.670547E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998617E+01,0.000000E+00 +1040168,fr,1,3.550000E+00,8.116890E+00,4.670547E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998601E+01,-9.000000E+01 +1040169,fr,1,3.550000E+00,8.116890E+00,4.670547E+01,5.000000E+00,Active Shallow Crust,1.288944E+02,8.999309E+01,0.000000E+00 +1040172,fr,2,3.650000E+00,8.116890E+00,4.670547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998767E+01,0.000000E+00 +1040173,fr,2,3.650000E+00,8.116890E+00,4.670547E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998767E+01,0.000000E+00 +1040175,fr,1,3.650000E+00,8.116890E+00,4.670547E+01,5.000000E+00,Active Shallow Crust,2.399998E+02,5.801350E+01,0.000000E+00 +1040178,fr,2,3.650000E+00,8.116890E+00,4.670547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998753E+01,-9.000000E+01 +1040184,fr,6,3.750000E+00,8.116890E+00,4.670547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +1040186,fr,1,3.750000E+00,8.116890E+00,4.670547E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +1040188,fr,1,3.750000E+00,8.116890E+00,4.670547E+01,1.500000E+01,Active Shallow Crust,2.400088E+02,5.801704E+01,0.000000E+00 +1040196,fr,1,3.850000E+00,8.116890E+00,4.670547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1040197,fr,1,3.850000E+00,8.116890E+00,4.670547E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1040199,fr,2,3.850000E+00,8.116890E+00,4.670547E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.799776E+01,0.000000E+00 +1040205,fr,2,3.850000E+00,8.116890E+00,4.670547E+01,5.000000E+00,Active Shallow Crust,1.288953E+02,8.999510E+01,0.000000E+00 +1040208,fr,6,3.950000E+00,8.116890E+00,4.670547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999127E+01,0.000000E+00 +1040209,fr,1,3.950000E+00,8.116890E+00,4.670547E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999127E+01,0.000000E+00 +1040218,fr,1,3.950000E+00,8.116890E+00,4.670547E+01,1.500000E+01,Active Shallow Crust,1.288985E+02,8.999564E+01,0.000000E+00 +1040220,fr,2,4.050000E+00,8.116890E+00,4.670547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999223E+01,0.000000E+00 +1040221,fr,2,4.050000E+00,8.116890E+00,4.670547E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999223E+01,0.000000E+00 +1040232,fr,1,4.150000E+00,8.116890E+00,4.670547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999306E+01,0.000000E+00 +1040233,fr,1,4.150000E+00,8.116890E+00,4.670547E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999306E+01,0.000000E+00 +1040234,fr,1,4.150000E+00,8.116890E+00,4.670547E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999306E+01,0.000000E+00 +1040236,fr,1,4.150000E+00,8.116890E+00,4.670547E+01,1.500000E+01,Active Shallow Crust,2.400076E+02,5.799752E+01,0.000000E+00 +1040280,fr,1,4.550000E+00,8.116890E+00,4.670547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999125E+01,0.000000E+00 +1040304,fr,1,4.750000E+00,8.116890E+00,4.670547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +1040307,fr,1,4.750000E+00,8.116890E+00,4.670547E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.800496E+01,0.000000E+00 +1040331,fr,1,4.950000E+00,8.116890E+00,4.670547E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.800489E+01,0.000000E+00 +1040341,fr,1,5.050000E+00,8.116890E+00,4.670547E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1040346,fr,1,5.050000E+00,8.116890E+00,4.670547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +1040436,fr,1,5.850000E+00,8.116890E+00,4.670547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1040652,fr,1,3.650000E+00,4.613670E+00,4.123006E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999324E+01,0.000000E+00 +1040676,fr,1,3.850000E+00,4.613670E+00,4.123006E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1040677,fr,1,3.850000E+00,4.613670E+00,4.123006E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1040736,fr,1,4.350000E+00,4.613670E+00,4.123006E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +1041121,fr,2,3.550000E+00,4.540300E-01,4.686458E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1041126,fr,1,3.550000E+00,4.540300E-01,4.686458E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1041132,fr,3,3.650000E+00,4.540300E-01,4.686458E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1041133,fr,1,3.650000E+00,4.540300E-01,4.686458E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1041144,fr,2,3.750000E+00,4.540300E-01,4.686458E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1041147,fr,2,3.750000E+00,4.540300E-01,4.686458E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801754E+01,0.000000E+00 +1041150,fr,1,3.750000E+00,4.540300E-01,4.686458E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +1041157,fr,2,3.850000E+00,4.540300E-01,4.686458E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1041168,fr,1,3.950000E+00,4.540300E-01,4.686458E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1041180,fr,1,4.050000E+00,4.540300E-01,4.686458E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1041216,fr,1,4.350000E+00,4.540300E-01,4.686458E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1041218,fr,1,4.350000E+00,4.540300E-01,4.686458E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1041219,fr,1,4.350000E+00,4.540300E-01,4.686458E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799597E+01,0.000000E+00 +1041237,fr,1,4.450000E+00,4.540300E-01,4.686458E+01,5.000000E+00,Active Shallow Crust,1.288921E+02,8.999373E+01,0.000000E+00 +1041240,fr,1,4.550000E+00,4.540300E-01,4.686458E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1041264,fr,1,4.750000E+00,4.540300E-01,4.686458E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1041327,fr,1,5.250000E+00,4.540300E-01,4.686458E+01,5.000000E+00,Active Shallow Crust,2.400257E+02,5.800031E+01,0.000000E+00 +1041346,fr,1,5.350000E+00,4.540300E-01,4.686458E+01,1.500000E+01,Active Shallow Crust,1.288829E+02,8.998805E+01,0.000000E+00 +1041600,fr,2,3.550000E+00,5.147820E+00,4.839485E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999330E+01,0.000000E+00 +1041607,fr,1,3.550000E+00,5.147820E+00,4.839485E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999323E+01,-9.000000E+01 +1041612,fr,1,3.650000E+00,5.147820E+00,4.839485E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998807E+01,0.000000E+00 +1041624,fr,1,3.750000E+00,5.147820E+00,4.839485E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +1041675,fr,1,4.150000E+00,5.147820E+00,4.839485E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799753E+01,0.000000E+00 +1041726,fr,1,4.550000E+00,5.147820E+00,4.839485E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998929E+01,-9.000000E+01 +1041768,fr,1,4.950000E+00,5.147820E+00,4.839485E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +1042080,fr,3,3.550000E+00,8.031540E+00,4.899979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998677E+01,0.000000E+00 +1042084,fr,1,3.550000E+00,8.031540E+00,4.899979E+01,1.500000E+01,Active Shallow Crust,2.400139E+02,5.799737E+01,0.000000E+00 +1042086,fr,1,3.550000E+00,8.031540E+00,4.899979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998662E+01,-9.000000E+01 +1042090,fr,1,3.550000E+00,8.031540E+00,4.899979E+01,1.500000E+01,Active Shallow Crust,1.288935E+02,8.999339E+01,0.000000E+00 +1042092,fr,2,3.650000E+00,8.031540E+00,4.899979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998820E+01,0.000000E+00 +1042098,fr,1,3.650000E+00,8.031540E+00,4.899979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998807E+01,-9.000000E+01 +1042099,fr,1,3.650000E+00,8.031540E+00,4.899979E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998807E+01,-9.000000E+01 +1042104,fr,1,3.750000E+00,8.031540E+00,4.899979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +1042107,fr,1,3.750000E+00,8.031540E+00,4.899979E+01,5.000000E+00,Active Shallow Crust,2.400097E+02,5.801722E+01,0.000000E+00 +1042113,fr,1,3.750000E+00,8.031540E+00,4.899979E+01,5.000000E+00,Active Shallow Crust,1.288985E+02,8.996629E+01,0.000000E+00 +1042116,fr,1,3.850000E+00,8.031540E+00,4.899979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +1042119,fr,2,3.850000E+00,8.031540E+00,4.899979E+01,5.000000E+00,Active Shallow Crust,2.400094E+02,5.799842E+01,0.000000E+00 +1042120,fr,1,3.850000E+00,8.031540E+00,4.899979E+01,1.500000E+01,Active Shallow Crust,2.400094E+02,5.799842E+01,0.000000E+00 +1042128,fr,2,3.950000E+00,8.031540E+00,4.899979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999165E+01,0.000000E+00 +1042137,fr,1,3.950000E+00,8.031540E+00,4.899979E+01,5.000000E+00,Active Shallow Crust,1.288996E+02,8.999583E+01,0.000000E+00 +1042140,fr,2,4.050000E+00,8.031540E+00,4.899979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999256E+01,0.000000E+00 +1042154,fr,1,4.150000E+00,8.031540E+00,4.899979E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998674E+01,0.000000E+00 +1042158,fr,1,4.150000E+00,8.031540E+00,4.899979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999329E+01,-9.000000E+01 +1042165,fr,1,4.250000E+00,8.031540E+00,4.899979E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998818E+01,0.000000E+00 +1042168,fr,1,4.250000E+00,8.031540E+00,4.899979E+01,1.500000E+01,Active Shallow Crust,2.400091E+02,5.799399E+01,0.000000E+00 +1042176,fr,1,4.350000E+00,8.031540E+00,4.899979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1042212,fr,1,4.650000E+00,8.031540E+00,4.899979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998881E+01,0.000000E+00 +1042285,fr,1,5.250000E+00,8.031540E+00,4.899979E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +1042608,fr,1,3.950000E+00,-4.146190E+00,5.039732E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999189E+01,0.000000E+00 +1042641,fr,1,4.150000E+00,-4.146190E+00,5.039732E+01,5.000000E+00,Active Shallow Crust,1.288975E+02,8.999356E+01,0.000000E+00 +1043066,fr,1,3.750000E+00,4.118060E+00,4.963134E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +1043100,fr,1,4.050000E+00,4.118060E+00,4.963134E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +1043136,fr,1,4.350000E+00,4.118060E+00,4.963134E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +1043521,fr,1,3.550000E+00,-4.011680E+00,4.770365E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999322E+01,0.000000E+00 +1043532,fr,1,3.650000E+00,-4.011680E+00,4.770365E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998791E+01,0.000000E+00 +1043544,fr,1,3.750000E+00,-4.011680E+00,4.770365E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998922E+01,0.000000E+00 +1043554,fr,1,3.750000E+00,-4.011680E+00,4.770365E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.996751E+01,0.000000E+00 +1043556,fr,1,3.850000E+00,-4.011680E+00,4.770365E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1043557,fr,1,3.850000E+00,-4.011680E+00,4.770365E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1043592,fr,1,4.150000E+00,-4.011680E+00,4.770365E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1043604,fr,1,4.250000E+00,-4.011680E+00,4.770365E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +1044055,fr,1,3.950000E+00,5.548740E+00,4.870124E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999150E+01,-9.000000E+01 +1044134,fr,1,4.650000E+00,5.548740E+00,4.870124E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1044145,fr,1,4.750000E+00,5.548740E+00,4.870124E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1044168,fr,1,4.950000E+00,5.548740E+00,4.870124E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +1044492,fr,1,3.650000E+00,1.552510E+00,5.190642E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1044498,fr,1,3.650000E+00,1.552510E+00,5.190642E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,-9.000000E+01 +1044519,fr,1,3.850000E+00,1.552510E+00,5.190642E+01,5.000000E+00,Active Shallow Crust,2.400115E+02,5.799794E+01,0.000000E+00 +1044528,fr,2,3.950000E+00,1.552510E+00,5.190642E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1044542,fr,1,4.050000E+00,1.552510E+00,5.190642E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +1044565,fr,1,4.250000E+00,1.552510E+00,5.190642E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +1044968,fr,1,3.550000E+00,-7.797100E-01,4.984690E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +1044972,fr,3,3.650000E+00,-7.797100E-01,4.984690E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1044996,fr,1,3.850000E+00,-7.797100E-01,4.984690E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1045008,fr,2,3.950000E+00,-7.797100E-01,4.984690E+01,5.000000E+00,Active Shallow Crust,3.599998E+02,8.999026E+01,0.000000E+00 +1045044,fr,1,4.250000E+00,-7.797100E-01,4.984690E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1045104,fr,1,4.750000E+00,-7.797100E-01,4.984690E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1045920,fr,1,3.550000E+00,5.455900E-01,5.135456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1045923,fr,1,3.550000E+00,5.455900E-01,5.135456E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.799820E+01,0.000000E+00 +1045950,fr,1,3.750000E+00,5.455900E-01,5.135456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +1045956,fr,1,3.850000E+00,5.455900E-01,5.135456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1045977,fr,1,3.950000E+00,5.455900E-01,5.135456E+01,5.000000E+00,Active Shallow Crust,1.288998E+02,8.999355E+01,0.000000E+00 +1045982,fr,1,4.050000E+00,5.455900E-01,5.135456E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1046074,fr,1,4.750000E+00,5.455900E-01,5.135456E+01,1.500000E+01,Active Shallow Crust,1.288871E+02,8.998805E+01,0.000000E+00 +1046088,fr,1,4.950000E+00,5.455900E-01,5.135456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1046460,fr,1,4.050000E+00,-1.944320E+00,4.530895E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1046880,fr,7,3.550000E+00,8.367070E+00,4.737837E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998634E+01,0.000000E+00 +1046881,fr,3,3.550000E+00,8.367070E+00,4.737837E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998634E+01,0.000000E+00 +1046883,fr,1,3.550000E+00,8.367070E+00,4.737837E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799885E+01,0.000000E+00 +1046884,fr,1,3.550000E+00,8.367070E+00,4.737837E+01,1.500000E+01,Active Shallow Crust,2.400125E+02,5.799885E+01,0.000000E+00 +1046886,fr,3,3.550000E+00,8.367070E+00,4.737837E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998618E+01,-9.000000E+01 +1046888,fr,1,3.550000E+00,8.367070E+00,4.737837E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998618E+01,-9.000000E+01 +1046889,fr,3,3.550000E+00,8.367070E+00,4.737837E+01,5.000000E+00,Active Shallow Crust,1.288938E+02,8.999317E+01,0.000000E+00 +1046892,fr,3,3.650000E+00,8.367070E+00,4.737837E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998783E+01,0.000000E+00 +1046893,fr,2,3.650000E+00,8.367070E+00,4.737837E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998783E+01,0.000000E+00 +1046904,fr,5,3.750000E+00,8.367070E+00,4.737837E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998915E+01,0.000000E+00 +1046905,fr,1,3.750000E+00,8.367070E+00,4.737837E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998915E+01,0.000000E+00 +1046906,fr,1,3.750000E+00,8.367070E+00,4.737837E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998915E+01,0.000000E+00 +1046910,fr,3,3.750000E+00,8.367070E+00,4.737837E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998903E+01,-9.000000E+01 +1046911,fr,1,3.750000E+00,8.367070E+00,4.737837E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998903E+01,-9.000000E+01 +1046912,fr,1,3.750000E+00,8.367070E+00,4.737837E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998903E+01,-9.000000E+01 +1046916,fr,1,3.850000E+00,8.367070E+00,4.737837E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1046920,fr,1,3.850000E+00,8.367070E+00,4.737837E+01,1.500000E+01,Active Shallow Crust,2.400116E+02,5.799646E+01,0.000000E+00 +1046922,fr,1,3.850000E+00,8.367070E+00,4.737837E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,-9.000000E+01 +1046928,fr,2,3.950000E+00,8.367070E+00,4.737837E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999139E+01,0.000000E+00 +1046929,fr,1,3.950000E+00,8.367070E+00,4.737837E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999139E+01,0.000000E+00 +1046933,fr,1,3.950000E+00,8.367070E+00,4.737837E+01,2.750000E+01,Active Shallow Crust,2.400216E+02,5.800405E+01,0.000000E+00 +1046934,fr,1,3.950000E+00,8.367070E+00,4.737837E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999128E+01,-9.000000E+01 +1046935,fr,1,3.950000E+00,8.367070E+00,4.737837E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999128E+01,-9.000000E+01 +1046938,fr,1,3.950000E+00,8.367070E+00,4.737837E+01,1.500000E+01,Active Shallow Crust,1.289004E+02,8.999569E+01,0.000000E+00 +1046940,fr,2,4.050000E+00,8.367070E+00,4.737837E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999232E+01,0.000000E+00 +1046942,fr,1,4.050000E+00,8.367070E+00,4.737837E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999232E+01,0.000000E+00 +1046944,fr,1,4.050000E+00,8.367070E+00,4.737837E+01,1.500000E+01,Active Shallow Crust,2.400052E+02,5.800644E+01,0.000000E+00 +1046952,fr,1,4.150000E+00,8.367070E+00,4.737837E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999316E+01,0.000000E+00 +1046962,fr,1,4.150000E+00,8.367070E+00,4.737837E+01,1.500000E+01,Active Shallow Crust,1.288995E+02,8.999316E+01,0.000000E+00 +1046965,fr,1,4.250000E+00,8.367070E+00,4.737837E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998780E+01,0.000000E+00 +1046977,fr,1,4.350000E+00,8.367070E+00,4.737837E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998913E+01,0.000000E+00 +1046982,fr,1,4.350000E+00,8.367070E+00,4.737837E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998900E+01,-9.000000E+01 +1046988,fr,1,4.450000E+00,8.367070E+00,4.737837E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +1046991,fr,1,4.450000E+00,8.367070E+00,4.737837E+01,5.000000E+00,Active Shallow Crust,2.400062E+02,5.799506E+01,0.000000E+00 +1047008,fr,1,4.550000E+00,8.367070E+00,4.737837E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999126E+01,-9.000000E+01 +1047013,fr,1,4.650000E+00,8.367070E+00,4.737837E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998845E+01,0.000000E+00 +1047018,fr,1,4.650000E+00,8.367070E+00,4.737837E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998832E+01,-9.000000E+01 +1047024,fr,1,4.750000E+00,8.367070E+00,4.737837E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +1047030,fr,1,4.750000E+00,8.367070E+00,4.737837E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +1047032,fr,1,4.750000E+00,8.367070E+00,4.737837E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +1047036,fr,2,4.850000E+00,8.367070E+00,4.737837E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +1047037,fr,1,4.850000E+00,8.367070E+00,4.737837E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +1047085,fr,1,5.250000E+00,8.367070E+00,4.737837E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +1047111,fr,1,5.450000E+00,8.367070E+00,4.737837E+01,5.000000E+00,Active Shallow Crust,2.400294E+02,5.799879E+01,0.000000E+00 +1047114,fr,1,5.450000E+00,8.367070E+00,4.737837E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999069E+01,-9.000000E+01 +1047132,fr,1,5.650000E+00,8.367070E+00,4.737837E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1047189,fr,1,6.050000E+00,8.367069E+00,4.737837E+01,5.357596E+00,Active Shallow Crust,1.288589E+02,8.998904E+01,0.000000E+00 +1047372,fr,1,3.650000E+00,4.413350E+00,5.163922E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +1047840,fr,1,3.550000E+00,1.974950E+00,4.602734E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +1047846,fr,1,3.550000E+00,1.974950E+00,4.602734E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998938E+01,-9.000000E+01 +1047856,fr,1,3.650000E+00,1.974950E+00,4.602734E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801280E+01,0.000000E+00 +1047864,fr,1,3.750000E+00,1.974950E+00,4.602734E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1047867,fr,2,3.750000E+00,1.974950E+00,4.602734E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801739E+01,0.000000E+00 +1047873,fr,1,3.750000E+00,1.974950E+00,4.602734E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.996735E+01,0.000000E+00 +1047889,fr,1,3.950000E+00,1.974950E+00,4.602734E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1047939,fr,1,4.350000E+00,1.974950E+00,4.602734E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799588E+01,0.000000E+00 +1047966,fr,2,4.550000E+00,1.974950E+00,4.602734E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,-9.000000E+01 +1048032,fr,1,5.150000E+00,1.974950E+00,4.602734E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1048320,fr,3,3.550000E+00,-2.853170E+00,4.876139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1048326,fr,2,3.550000E+00,-2.853170E+00,4.876139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +1048333,fr,1,3.650000E+00,-2.853170E+00,4.876139E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999111E+01,0.000000E+00 +1048344,fr,2,3.750000E+00,-2.853170E+00,4.876139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +1048359,fr,3,3.850000E+00,-2.853170E+00,4.876139E+01,5.000000E+00,Active Shallow Crust,2.400115E+02,5.799760E+01,0.000000E+00 +1048361,fr,1,3.850000E+00,-2.853170E+00,4.876139E+01,2.750000E+01,Active Shallow Crust,2.400115E+02,5.799760E+01,0.000000E+00 +1048365,fr,1,3.850000E+00,-2.853170E+00,4.876139E+01,5.000000E+00,Active Shallow Crust,1.288955E+02,8.999412E+01,0.000000E+00 +1048368,fr,1,3.950000E+00,-2.853170E+00,4.876139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1048370,fr,1,3.950000E+00,-2.853170E+00,4.876139E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1048371,fr,1,3.950000E+00,-2.853170E+00,4.876139E+01,5.000000E+00,Active Shallow Crust,2.400202E+02,5.800495E+01,0.000000E+00 +1048382,fr,1,4.050000E+00,-2.853170E+00,4.876139E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +1048386,fr,1,4.050000E+00,-2.853170E+00,4.876139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,-9.000000E+01 +1048393,fr,1,4.150000E+00,-2.853170E+00,4.876139E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1048416,fr,1,4.350000E+00,-2.853170E+00,4.876139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998941E+01,0.000000E+00 +1048470,fr,1,4.750000E+00,-2.853170E+00,4.876139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,-9.000000E+01 +1048837,fr,1,3.850000E+00,7.433600E-01,4.187636E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1048845,fr,1,3.850000E+00,7.433600E-01,4.187636E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999369E+01,0.000000E+00 +1048854,fr,1,3.950000E+00,7.433600E-01,4.187636E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,-9.000000E+01 +1049319,fr,1,3.850000E+00,3.953990E+00,5.157336E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799829E+01,0.000000E+00 +1049364,fr,1,4.250000E+00,3.953990E+00,5.157336E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1049366,fr,1,4.250000E+00,3.953990E+00,5.157336E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1049400,fr,1,4.550000E+00,3.953990E+00,5.157336E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1049474,fr,1,5.150000E+00,3.953990E+00,5.157336E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1050240,fr,1,3.550000E+00,2.075020E+00,5.102172E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1050243,fr,1,3.550000E+00,2.075020E+00,5.102172E+01,5.000000E+00,Active Shallow Crust,2.400129E+02,5.799844E+01,0.000000E+00 +1050253,fr,1,3.650000E+00,2.075020E+00,5.102172E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +1050264,fr,1,3.750000E+00,2.075020E+00,5.102172E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1050288,fr,2,3.950000E+00,2.075020E+00,5.102172E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1050300,fr,2,4.050000E+00,2.075020E+00,5.102172E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +1050757,fr,1,3.850000E+00,7.841530E+00,5.109457E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +1051241,fr,1,3.850000E+00,-3.078390E+00,4.954917E+01,2.750000E+01,Active Shallow Crust,2.400115E+02,5.799803E+01,0.000000E+00 +1051251,fr,1,3.950000E+00,-3.078390E+00,4.954917E+01,5.000000E+00,Active Shallow Crust,2.400206E+02,5.800500E+01,0.000000E+00 +1051680,fr,1,3.550000E+00,6.087330E+00,4.250203E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999257E+01,0.000000E+00 +1051705,fr,1,3.750000E+00,6.087330E+00,4.250203E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998819E+01,0.000000E+00 +1051747,fr,1,4.050000E+00,6.087330E+00,4.250203E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999154E+01,-9.000000E+01 +1052232,fr,1,4.150000E+00,-1.615900E-01,4.533506E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1052233,fr,1,4.150000E+00,-1.615900E-01,4.533506E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1052646,fr,1,3.550000E+00,2.327530E+00,4.527679E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,-9.000000E+01 +1052649,fr,1,3.550000E+00,2.327530E+00,4.527679E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999290E+01,0.000000E+00 +1052652,fr,2,3.650000E+00,2.327530E+00,4.527679E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +1052664,fr,2,3.750000E+00,2.327530E+00,4.527679E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +1052666,fr,2,3.750000E+00,2.327530E+00,4.527679E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +1052700,fr,1,4.050000E+00,2.327530E+00,4.527679E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1052734,fr,1,4.250000E+00,2.327530E+00,4.527679E+01,1.500000E+01,Active Shallow Crust,1.288949E+02,8.998090E+01,0.000000E+00 +1052772,fr,1,4.650000E+00,2.327530E+00,4.527679E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1053144,fr,1,3.750000E+00,-3.135100E+00,4.697111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +1053601,fr,1,3.550000E+00,-4.108490E+00,4.878337E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998671E+01,0.000000E+00 +1053606,fr,1,3.550000E+00,-4.108490E+00,4.878337E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999328E+01,-9.000000E+01 +1053613,fr,1,3.650000E+00,-4.108490E+00,4.878337E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998816E+01,0.000000E+00 +1053618,fr,1,3.650000E+00,-4.108490E+00,4.878337E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998802E+01,-9.000000E+01 +1053622,fr,1,3.650000E+00,-4.108490E+00,4.878337E+01,1.500000E+01,Active Shallow Crust,1.289009E+02,8.996297E+01,0.000000E+00 +1053633,fr,1,3.750000E+00,-4.108490E+00,4.878337E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.996700E+01,0.000000E+00 +1053660,fr,1,4.050000E+00,-4.108490E+00,4.878337E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998879E+01,0.000000E+00 +1053661,fr,1,4.050000E+00,-4.108490E+00,4.878337E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998879E+01,0.000000E+00 +1053674,fr,1,4.150000E+00,-4.108490E+00,4.878337E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1053696,fr,1,4.350000E+00,-4.108490E+00,4.878337E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +1053737,fr,1,4.650000E+00,-4.108490E+00,4.878337E+01,2.750000E+01,Active Shallow Crust,2.400117E+02,5.799448E+01,0.000000E+00 +1054090,fr,1,3.550000E+00,5.505780E+00,4.894760E+01,1.500000E+01,Active Shallow Crust,1.288954E+02,8.999338E+01,0.000000E+00 +1054215,fr,1,4.650000E+00,5.505780E+00,4.894760E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799421E+01,0.000000E+00 +1054560,fr,2,3.550000E+00,6.279530E+00,4.700914E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999313E+01,0.000000E+00 +1054561,fr,2,3.550000E+00,6.279530E+00,4.700914E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999313E+01,0.000000E+00 +1054562,fr,1,3.550000E+00,6.279530E+00,4.700914E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999313E+01,0.000000E+00 +1054566,fr,1,3.550000E+00,6.279530E+00,4.700914E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999304E+01,-9.000000E+01 +1054572,fr,2,3.650000E+00,6.279530E+00,4.700914E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998774E+01,0.000000E+00 +1054578,fr,1,3.650000E+00,6.279530E+00,4.700914E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998760E+01,-9.000000E+01 +1054584,fr,2,3.750000E+00,6.279530E+00,4.700914E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +1054585,fr,1,3.750000E+00,6.279530E+00,4.700914E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +1054597,fr,1,3.850000E+00,6.279530E+00,4.700914E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1054598,fr,1,3.850000E+00,6.279530E+00,4.700914E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1054608,fr,2,3.950000E+00,6.279530E+00,4.700914E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +1054643,fr,1,4.150000E+00,6.279530E+00,4.700914E+01,2.750000E+01,Active Shallow Crust,1.288966E+02,8.999483E+01,0.000000E+00 +1054644,fr,1,4.250000E+00,6.279530E+00,4.700914E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +1054651,fr,1,4.250000E+00,6.279530E+00,4.700914E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999068E+01,-9.000000E+01 +1054656,fr,1,4.350000E+00,6.279530E+00,4.700914E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998905E+01,0.000000E+00 +1055040,fr,1,3.550000E+00,3.426830E+00,4.038411E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998848E+01,0.000000E+00 +1055053,fr,1,3.650000E+00,3.426830E+00,4.038411E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +1055064,fr,1,3.750000E+00,3.426830E+00,4.038411E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +1055160,fr,1,4.550000E+00,3.426830E+00,4.038411E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +1055520,fr,1,3.550000E+00,-3.749940E+00,4.949198E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1055575,fr,1,3.950000E+00,-3.749940E+00,4.949198E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998955E+01,-9.000000E+01 +1055608,fr,1,4.250000E+00,-3.749940E+00,4.949198E+01,1.500000E+01,Active Shallow Crust,2.400082E+02,5.799426E+01,0.000000E+00 +1056000,fr,1,3.550000E+00,5.595350E+00,4.297702E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999262E+01,0.000000E+00 +1056003,fr,1,3.550000E+00,5.595350E+00,4.297702E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799722E+01,0.000000E+00 +1056024,fr,1,3.750000E+00,5.595350E+00,4.297702E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998828E+01,0.000000E+00 +1056025,fr,1,3.750000E+00,5.595350E+00,4.297702E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998828E+01,0.000000E+00 +1056036,fr,1,3.850000E+00,5.595350E+00,4.297702E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1056040,fr,1,3.850000E+00,5.595350E+00,4.297702E+01,1.500000E+01,Active Shallow Crust,2.400103E+02,5.799784E+01,0.000000E+00 +1056105,fr,1,4.350000E+00,5.595350E+00,4.297702E+01,5.000000E+00,Active Shallow Crust,1.288992E+02,8.998235E+01,0.000000E+00 +1056180,fr,1,5.050000E+00,5.595350E+00,4.297702E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +1056967,fr,1,3.550000E+00,-4.299420E+00,4.753720E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999311E+01,-9.000000E+01 +1056984,fr,1,3.750000E+00,-4.299420E+00,4.753720E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +1057008,fr,1,3.950000E+00,-4.299420E+00,4.753720E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999141E+01,0.000000E+00 +1057440,fr,1,3.550000E+00,4.273920E+00,5.174055E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998751E+01,0.000000E+00 +1057512,fr,1,4.150000E+00,4.273920E+00,5.174055E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999061E+01,0.000000E+00 +1057932,fr,1,3.650000E+00,9.215530E+00,4.975069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998839E+01,0.000000E+00 +1057969,fr,1,3.950000E+00,9.215530E+00,4.975069E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999178E+01,0.000000E+00 +1058400,fr,2,3.550000E+00,8.046200E-01,4.568089E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +1058424,fr,1,3.750000E+00,8.046200E-01,4.568089E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1058425,fr,1,3.750000E+00,8.046200E-01,4.568089E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1058430,fr,1,3.750000E+00,8.046200E-01,4.568089E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +1058436,fr,1,3.850000E+00,8.046200E-01,4.568089E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1058449,fr,2,3.950000E+00,8.046200E-01,4.568089E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1058460,fr,2,4.050000E+00,8.046200E-01,4.568089E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1058486,fr,1,4.250000E+00,8.046200E-01,4.568089E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1058496,fr,1,4.350000E+00,8.046200E-01,4.568089E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1058544,fr,1,4.750000E+00,8.046200E-01,4.568089E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1058587,fr,1,5.050000E+00,8.046200E-01,4.568089E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +1059375,fr,1,3.650000E+00,-3.579220E+00,4.262758E+01,5.000000E+00,Active Shallow Crust,2.400005E+02,5.801292E+01,0.000000E+00 +1059483,fr,1,4.550000E+00,-3.579220E+00,4.262758E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799724E+01,0.000000E+00 +1059492,fr,1,4.650000E+00,-3.579220E+00,4.262758E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +1059840,fr,3,3.550000E+00,8.882030E+00,4.870956E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998669E+01,0.000000E+00 +1059841,fr,1,3.550000E+00,8.882030E+00,4.870956E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998669E+01,0.000000E+00 +1059842,fr,1,3.550000E+00,8.882030E+00,4.870956E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998669E+01,0.000000E+00 +1059846,fr,1,3.550000E+00,8.882030E+00,4.870956E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998653E+01,-9.000000E+01 +1059853,fr,1,3.650000E+00,8.882030E+00,4.870956E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998814E+01,0.000000E+00 +1059876,fr,1,3.850000E+00,8.882030E+00,4.870956E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +1059879,fr,2,3.850000E+00,8.882030E+00,4.870956E+01,5.000000E+00,Active Shallow Crust,2.400099E+02,5.799895E+01,0.000000E+00 +1059889,fr,2,3.950000E+00,8.882030E+00,4.870956E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999160E+01,0.000000E+00 +1059894,fr,1,3.950000E+00,8.882030E+00,4.870956E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999151E+01,-9.000000E+01 +1059900,fr,1,4.050000E+00,8.882030E+00,4.870956E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999252E+01,0.000000E+00 +1059924,fr,1,4.250000E+00,8.882030E+00,4.870956E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998811E+01,0.000000E+00 +1059948,fr,1,4.450000E+00,8.882030E+00,4.870956E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +1059998,fr,1,4.850000E+00,8.882030E+00,4.870956E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999106E+01,0.000000E+00 +1060803,fr,1,3.550000E+00,9.156000E-01,4.769496E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799821E+01,0.000000E+00 +1060851,fr,1,3.950000E+00,9.156000E-01,4.769496E+01,5.000000E+00,Active Shallow Crust,2.400199E+02,5.800501E+01,0.000000E+00 +1060885,fr,1,4.250000E+00,9.156000E-01,4.769496E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1060920,fr,1,4.550000E+00,9.156000E-01,4.769496E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1061175,fr,1,6.650000E+00,8.986220E-01,4.771474E+01,9.065474E+00,Active Shallow Crust,2.401196E+02,5.800032E+01,0.000000E+00 +1061289,fr,1,3.550000E+00,2.980010E+00,5.206794E+01,5.000000E+00,Active Shallow Crust,1.288953E+02,8.999380E+01,0.000000E+00 +1061292,fr,1,3.650000E+00,2.980010E+00,5.206794E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +1061305,fr,1,3.750000E+00,2.980010E+00,5.206794E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1061376,fr,1,4.350000E+00,2.980010E+00,5.206794E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1061403,fr,1,4.550000E+00,2.980010E+00,5.206794E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799757E+01,0.000000E+00 +1061425,fr,1,4.750000E+00,2.980010E+00,5.206794E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1061773,fr,1,3.650000E+00,6.404530E+00,4.906259E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998822E+01,0.000000E+00 +1061778,fr,1,3.650000E+00,6.404530E+00,4.906259E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998808E+01,-9.000000E+01 +1061785,fr,1,3.750000E+00,6.404530E+00,4.906259E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +1061791,fr,1,3.750000E+00,6.404530E+00,4.906259E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998938E+01,-9.000000E+01 +1061833,fr,1,4.150000E+00,6.404530E+00,4.906259E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1061870,fr,1,4.450000E+00,6.404530E+00,4.906259E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1062242,fr,1,3.550000E+00,3.635490E+00,4.456347E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998922E+01,0.000000E+00 +1062246,fr,1,3.550000E+00,3.635490E+00,4.456347E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998910E+01,-9.000000E+01 +1062249,fr,1,3.550000E+00,3.635490E+00,4.456347E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999281E+01,0.000000E+00 +1062252,fr,1,3.650000E+00,3.635490E+00,4.456347E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1062255,fr,1,3.650000E+00,3.635490E+00,4.456347E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801312E+01,0.000000E+00 +1062285,fr,1,3.850000E+00,3.635490E+00,4.456347E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999364E+01,0.000000E+00 +1062360,fr,1,4.550000E+00,3.635490E+00,4.456347E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1062720,fr,1,3.550000E+00,-1.113310E+00,4.264427E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999073E+01,0.000000E+00 +1062721,fr,1,3.550000E+00,-1.113310E+00,4.264427E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999073E+01,0.000000E+00 +1062725,fr,1,3.550000E+00,-1.113310E+00,4.264427E+01,2.750000E+01,Active Shallow Crust,2.400121E+02,5.799778E+01,0.000000E+00 +1062732,fr,2,3.650000E+00,-1.113310E+00,4.264427E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1062735,fr,1,3.650000E+00,-1.113310E+00,4.264427E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801289E+01,0.000000E+00 +1062737,fr,1,3.650000E+00,-1.113310E+00,4.264427E+01,2.750000E+01,Active Shallow Crust,2.400009E+02,5.801281E+01,0.000000E+00 +1062744,fr,3,3.750000E+00,-1.113310E+00,4.264427E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1062748,fr,2,3.750000E+00,-1.113310E+00,4.264427E+01,1.500000E+01,Active Shallow Crust,2.400077E+02,5.801771E+01,0.000000E+00 +1062750,fr,1,3.750000E+00,-1.113310E+00,4.264427E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,-9.000000E+01 +1062753,fr,2,3.750000E+00,-1.113310E+00,4.264427E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.996729E+01,0.000000E+00 +1062759,fr,2,3.850000E+00,-1.113310E+00,4.264427E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.799762E+01,0.000000E+00 +1062761,fr,1,3.850000E+00,-1.113310E+00,4.264427E+01,2.750000E+01,Active Shallow Crust,2.400106E+02,5.799762E+01,0.000000E+00 +1062768,fr,1,3.950000E+00,-1.113310E+00,4.264427E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +1062769,fr,1,3.950000E+00,-1.113310E+00,4.264427E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +1062771,fr,1,3.950000E+00,-1.113310E+00,4.264427E+01,5.000000E+00,Active Shallow Crust,2.400191E+02,5.800475E+01,0.000000E+00 +1062772,fr,1,3.950000E+00,-1.113310E+00,4.264427E+01,1.500000E+01,Active Shallow Crust,2.400191E+02,5.800475E+01,0.000000E+00 +1062974,fr,1,5.650000E+00,-1.113310E+00,4.264427E+01,2.750000E+01,Active Shallow Crust,3.599999E+02,8.999008E+01,0.000000E+00 +1063207,fr,1,3.550000E+00,4.011910E+00,4.114655E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999232E+01,-9.000000E+01 +1063221,fr,1,3.650000E+00,4.011910E+00,4.114655E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.996342E+01,0.000000E+00 +1063224,fr,1,3.750000E+00,4.011910E+00,4.114655E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998794E+01,0.000000E+00 +1063321,fr,1,4.550000E+00,4.011910E+00,4.114655E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1063680,fr,4,3.550000E+00,7.313710E+00,5.066613E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998721E+01,0.000000E+00 +1063684,fr,1,3.550000E+00,7.313710E+00,5.066613E+01,1.500000E+01,Active Shallow Crust,2.400125E+02,5.799865E+01,0.000000E+00 +1063688,fr,1,3.550000E+00,7.313710E+00,5.066613E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998707E+01,-9.000000E+01 +1063692,fr,2,3.650000E+00,7.313710E+00,5.066613E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998861E+01,0.000000E+00 +1063694,fr,1,3.650000E+00,7.313710E+00,5.066613E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998861E+01,0.000000E+00 +1063704,fr,1,3.750000E+00,7.313710E+00,5.066613E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1063705,fr,1,3.750000E+00,7.313710E+00,5.066613E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1063709,fr,1,3.750000E+00,7.313710E+00,5.066613E+01,2.750000E+01,Active Shallow Crust,2.400085E+02,5.801787E+01,0.000000E+00 +1063719,fr,2,3.850000E+00,7.313710E+00,5.066613E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799774E+01,0.000000E+00 +1063728,fr,1,3.950000E+00,7.313710E+00,5.066613E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999194E+01,0.000000E+00 +1063737,fr,1,3.950000E+00,7.313710E+00,5.066613E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.999194E+01,0.000000E+00 +1063746,fr,1,4.050000E+00,7.313710E+00,5.066613E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998909E+01,-9.000000E+01 +1063750,fr,1,4.050000E+00,7.313710E+00,5.066613E+01,1.500000E+01,Active Shallow Crust,1.288889E+02,8.999461E+01,0.000000E+00 +1063776,fr,2,4.350000E+00,7.313710E+00,5.066613E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1063788,fr,1,4.450000E+00,7.313710E+00,5.066613E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +1063803,fr,1,4.550000E+00,7.313710E+00,5.066613E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.799799E+01,0.000000E+00 +1063825,fr,1,4.750000E+00,7.313710E+00,5.066613E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1064172,fr,1,3.650000E+00,2.864300E-01,4.169315E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1064208,fr,1,3.950000E+00,2.864300E-01,4.169315E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1064211,fr,1,3.950000E+00,2.864300E-01,4.169315E+01,5.000000E+00,Active Shallow Crust,2.400191E+02,5.800486E+01,0.000000E+00 +1064268,fr,1,4.450000E+00,2.864300E-01,4.169315E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1064712,fr,1,4.150000E+00,-3.667440E+00,4.415294E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998912E+01,0.000000E+00 +1065123,fr,1,3.550000E+00,6.495620E+00,5.130530E+01,5.000000E+00,Active Shallow Crust,2.400137E+02,5.799712E+01,0.000000E+00 +1065132,fr,1,3.650000E+00,6.495620E+00,5.130530E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998876E+01,0.000000E+00 +1065138,fr,1,3.650000E+00,6.495620E+00,5.130530E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998863E+01,-9.000000E+01 +1065150,fr,1,3.750000E+00,6.495620E+00,5.130530E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,-9.000000E+01 +1065168,fr,1,3.950000E+00,6.495620E+00,5.130530E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998807E+01,0.000000E+00 +1065169,fr,1,3.950000E+00,6.495620E+00,5.130530E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998807E+01,0.000000E+00 +1065193,fr,1,4.150000E+00,6.495620E+00,5.130530E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +1065204,fr,1,4.250000E+00,6.495620E+00,5.130530E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998873E+01,0.000000E+00 +1065288,fr,1,4.950000E+00,6.495620E+00,5.130530E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1065323,fr,1,5.150000E+00,6.495620E+00,5.130530E+01,2.750000E+01,Active Shallow Crust,1.288811E+02,8.999123E+01,0.000000E+00 +1065600,fr,1,3.550000E+00,4.571960E+00,4.149511E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999245E+01,0.000000E+00 +1065612,fr,1,3.650000E+00,4.571960E+00,4.149511E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999327E+01,0.000000E+00 +1065613,fr,1,3.650000E+00,4.571960E+00,4.149511E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999327E+01,0.000000E+00 +1065636,fr,1,3.850000E+00,4.571960E+00,4.149511E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +1065640,fr,1,3.850000E+00,4.571960E+00,4.149511E+01,1.500000E+01,Active Shallow Crust,2.400102E+02,5.799791E+01,0.000000E+00 +1065690,fr,1,4.250000E+00,4.571960E+00,4.149511E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,-9.000000E+01 +1066082,fr,1,3.550000E+00,7.598270E+00,4.958023E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998692E+01,0.000000E+00 +1066092,fr,1,3.650000E+00,7.598270E+00,4.958023E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998834E+01,0.000000E+00 +1066113,fr,1,3.750000E+00,7.598270E+00,4.958023E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.996703E+01,0.000000E+00 +1066169,fr,1,4.250000E+00,7.598270E+00,4.958023E+01,2.750000E+01,Active Shallow Crust,2.400080E+02,5.799442E+01,0.000000E+00 +1066194,fr,1,4.450000E+00,7.598270E+00,4.958023E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,-9.000000E+01 +1066569,fr,2,3.550000E+00,2.746660E+00,5.039623E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.999358E+01,0.000000E+00 +1066586,fr,1,3.750000E+00,2.746660E+00,5.039623E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1066596,fr,1,3.850000E+00,2.746660E+00,5.039623E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999090E+01,0.000000E+00 +1066609,fr,1,3.950000E+00,2.746660E+00,5.039623E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1066613,fr,1,3.950000E+00,2.746660E+00,5.039623E+01,2.750000E+01,Active Shallow Crust,2.400203E+02,5.800511E+01,0.000000E+00 +1066618,fr,1,3.950000E+00,2.746660E+00,5.039623E+01,1.500000E+01,Active Shallow Crust,1.289000E+02,8.999392E+01,0.000000E+00 +1066644,fr,1,4.250000E+00,2.746660E+00,5.039623E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1066668,fr,1,4.450000E+00,2.746660E+00,5.039623E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +1066706,fr,1,4.750000E+00,2.746660E+00,5.039623E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +1067040,fr,2,3.550000E+00,-2.276090E+00,4.745949E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1067069,fr,1,3.750000E+00,-2.276090E+00,4.745949E+01,2.750000E+01,Active Shallow Crust,2.400082E+02,5.801797E+01,0.000000E+00 +1067119,fr,2,4.150000E+00,-2.276090E+00,4.745949E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998963E+01,-9.000000E+01 +1067124,fr,1,4.250000E+00,-2.276090E+00,4.745949E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +1067148,fr,1,4.450000E+00,-2.276090E+00,4.745949E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1067163,fr,1,4.550000E+00,-2.276090E+00,4.745949E+01,5.000000E+00,Active Shallow Crust,2.400096E+02,5.799722E+01,0.000000E+00 +1067199,fr,1,4.850000E+00,-2.276090E+00,4.745949E+01,5.000000E+00,Active Shallow Crust,2.400175E+02,5.800230E+01,0.000000E+00 +1067202,fr,1,4.850000E+00,-2.276090E+00,4.745949E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +1067536,fr,1,3.650000E+00,4.220220E+00,4.851792E+01,1.500000E+01,Active Shallow Crust,2.400016E+02,5.801320E+01,0.000000E+00 +1067583,fr,1,4.050000E+00,4.220220E+00,4.851792E+01,5.000000E+00,Active Shallow Crust,2.400062E+02,5.800589E+01,0.000000E+00 +1067592,fr,1,4.150000E+00,4.220220E+00,4.851792E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1067604,fr,1,4.250000E+00,4.220220E+00,4.851792E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999105E+01,0.000000E+00 +1067662,fr,1,4.650000E+00,4.220220E+00,4.851792E+01,1.500000E+01,Active Shallow Crust,1.288905E+02,8.998686E+01,0.000000E+00 +1068000,fr,1,3.550000E+00,-3.143350E+00,4.819529E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1068006,fr,1,3.550000E+00,-3.143350E+00,4.819529E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,-9.000000E+01 +1068012,fr,2,3.650000E+00,-3.143350E+00,4.819529E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999101E+01,0.000000E+00 +1068021,fr,1,3.650000E+00,-3.143350E+00,4.819529E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996355E+01,0.000000E+00 +1068060,fr,2,4.050000E+00,-3.143350E+00,4.819529E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +1068084,fr,1,4.250000E+00,-3.143350E+00,4.819529E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +1068096,fr,1,4.350000E+00,-3.143350E+00,4.819529E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +1068109,fr,1,4.450000E+00,-3.143350E+00,4.819529E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1068121,fr,1,4.550000E+00,-3.143350E+00,4.819529E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1068124,fr,1,4.550000E+00,-3.143350E+00,4.819529E+01,1.500000E+01,Active Shallow Crust,2.400098E+02,5.799750E+01,0.000000E+00 +1068267,fr,1,5.750000E+00,-3.143350E+00,4.819529E+01,5.000000E+00,Active Shallow Crust,2.400433E+02,5.799985E+01,0.000000E+00 +1068481,fr,1,3.550000E+00,5.105560E+00,5.051289E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998717E+01,0.000000E+00 +1068484,fr,1,3.550000E+00,5.105560E+00,5.051289E+01,1.500000E+01,Active Shallow Crust,2.400132E+02,5.799805E+01,0.000000E+00 +1068493,fr,1,3.650000E+00,5.105560E+00,5.051289E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998857E+01,0.000000E+00 +1068504,fr,1,3.750000E+00,5.105560E+00,5.051289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1068516,fr,1,3.850000E+00,5.105560E+00,5.051289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999092E+01,0.000000E+00 +1068529,fr,1,3.950000E+00,5.105560E+00,5.051289E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999191E+01,0.000000E+00 +1068537,fr,1,3.950000E+00,5.105560E+00,5.051289E+01,5.000000E+00,Active Shallow Crust,1.288997E+02,8.999393E+01,0.000000E+00 +1068540,fr,1,4.050000E+00,5.105560E+00,5.051289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +1068541,fr,1,4.050000E+00,5.105560E+00,5.051289E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +1068542,fr,1,4.050000E+00,5.105560E+00,5.051289E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +1068543,fr,1,4.050000E+00,5.105560E+00,5.051289E+01,5.000000E+00,Active Shallow Crust,2.400063E+02,5.800637E+01,0.000000E+00 +1068579,fr,1,4.350000E+00,5.105560E+00,5.051289E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.799635E+01,0.000000E+00 +1068662,fr,1,5.050000E+00,5.105560E+00,5.051289E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +1068960,fr,4,3.550000E+00,2.489670E+00,4.279889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998890E+01,0.000000E+00 +1068966,fr,1,3.550000E+00,2.489670E+00,4.279889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998877E+01,-9.000000E+01 +1068972,fr,5,3.650000E+00,2.489670E+00,4.279889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1068975,fr,1,3.650000E+00,2.489670E+00,4.279889E+01,5.000000E+00,Active Shallow Crust,2.400005E+02,5.801319E+01,0.000000E+00 +1068981,fr,1,3.650000E+00,2.489670E+00,4.279889E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.996346E+01,0.000000E+00 +1068984,fr,1,3.750000E+00,2.489670E+00,4.279889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999118E+01,0.000000E+00 +1068985,fr,2,3.750000E+00,2.489670E+00,4.279889E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999118E+01,0.000000E+00 +1068996,fr,1,3.850000E+00,2.489670E+00,4.279889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1069008,fr,3,3.950000E+00,2.489670E+00,4.279889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +1069014,fr,2,3.950000E+00,2.489670E+00,4.279889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,-9.000000E+01 +1069020,fr,1,4.050000E+00,2.489670E+00,4.279889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +1069030,fr,1,4.050000E+00,2.489670E+00,4.279889E+01,1.500000E+01,Active Shallow Crust,1.288905E+02,8.999376E+01,0.000000E+00 +1069032,fr,1,4.150000E+00,2.489670E+00,4.279889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999073E+01,0.000000E+00 +1069035,fr,1,4.150000E+00,2.489670E+00,4.279889E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.799707E+01,0.000000E+00 +1069044,fr,1,4.250000E+00,2.489670E+00,4.279889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1069107,fr,1,4.750000E+00,2.489670E+00,4.279889E+01,5.000000E+00,Active Shallow Crust,2.400062E+02,5.800425E+01,0.000000E+00 +1069123,fr,1,4.850000E+00,2.489670E+00,4.279889E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +1069143,fr,1,5.050000E+00,2.489670E+00,4.279889E+01,5.000000E+00,Active Shallow Crust,2.400203E+02,5.799720E+01,0.000000E+00 +1069443,fr,1,3.550000E+00,5.689890E+00,4.445313E+01,5.000000E+00,Active Shallow Crust,2.400115E+02,5.799823E+01,0.000000E+00 +1069449,fr,1,3.550000E+00,5.689890E+00,4.445313E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999281E+01,0.000000E+00 +1069452,fr,1,3.650000E+00,5.689890E+00,4.445313E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998717E+01,0.000000E+00 +1069458,fr,1,3.650000E+00,5.689890E+00,4.445313E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998702E+01,-9.000000E+01 +1069465,fr,1,3.750000E+00,5.689890E+00,4.445313E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +1069479,fr,1,3.850000E+00,5.689890E+00,4.445313E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799783E+01,0.000000E+00 +1069482,fr,1,3.850000E+00,5.689890E+00,4.445313E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +1069512,fr,1,4.150000E+00,5.689890E+00,4.445313E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +1069549,fr,1,4.450000E+00,5.689890E+00,4.445313E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1069920,fr,1,3.550000E+00,-9.050000E-01,4.810855E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1069924,fr,1,3.550000E+00,-9.050000E-01,4.810855E+01,1.500000E+01,Active Shallow Crust,2.400125E+02,5.799822E+01,0.000000E+00 +1069932,fr,1,3.650000E+00,-9.050000E-01,4.810855E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1069933,fr,1,3.650000E+00,-9.050000E-01,4.810855E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1069934,fr,1,3.650000E+00,-9.050000E-01,4.810855E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1069935,fr,2,3.650000E+00,-9.050000E-01,4.810855E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801287E+01,0.000000E+00 +1069938,fr,1,3.650000E+00,-9.050000E-01,4.810855E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +1069947,fr,1,3.750000E+00,-9.050000E-01,4.810855E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.801762E+01,0.000000E+00 +1069948,fr,1,3.750000E+00,-9.050000E-01,4.810855E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.801762E+01,0.000000E+00 +1069956,fr,1,3.850000E+00,-9.050000E-01,4.810855E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1069960,fr,1,3.850000E+00,-9.050000E-01,4.810855E+01,1.500000E+01,Active Shallow Crust,2.400111E+02,5.799784E+01,0.000000E+00 +1069993,fr,1,4.150000E+00,-9.050000E-01,4.810855E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1070004,fr,1,4.250000E+00,-9.050000E-01,4.810855E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1070065,fr,1,4.750000E+00,-9.050000E-01,4.810855E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1070400,fr,1,3.550000E+00,7.658070E+00,4.996158E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998702E+01,0.000000E+00 +1070403,fr,1,3.550000E+00,7.658070E+00,4.996158E+01,5.000000E+00,Active Shallow Crust,2.400130E+02,5.799744E+01,0.000000E+00 +1070409,fr,1,3.550000E+00,7.658070E+00,4.996158E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999352E+01,0.000000E+00 +1070412,fr,3,3.650000E+00,7.658070E+00,4.996158E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +1070418,fr,1,3.650000E+00,7.658070E+00,4.996158E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998830E+01,-9.000000E+01 +1070427,fr,1,3.750000E+00,7.658070E+00,4.996158E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.801790E+01,0.000000E+00 +1070433,fr,1,3.750000E+00,7.658070E+00,4.996158E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.996704E+01,0.000000E+00 +1070436,fr,2,3.850000E+00,7.658070E+00,4.996158E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +1070449,fr,1,3.950000E+00,7.658070E+00,4.996158E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999181E+01,0.000000E+00 +1070469,fr,1,4.050000E+00,7.658070E+00,4.996158E+01,5.000000E+00,Active Shallow Crust,1.288902E+02,8.999271E+01,0.000000E+00 +1070472,fr,2,4.150000E+00,7.658070E+00,4.996158E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +1070484,fr,1,4.250000E+00,7.658070E+00,4.996158E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999131E+01,0.000000E+00 +1070496,fr,1,4.350000E+00,7.658070E+00,4.996158E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +1070513,fr,1,4.450000E+00,7.658070E+00,4.996158E+01,2.750000E+01,Active Shallow Crust,2.400061E+02,5.799482E+01,0.000000E+00 +1070543,fr,1,4.650000E+00,7.658070E+00,4.996158E+01,2.750000E+01,Active Shallow Crust,1.288898E+02,8.998695E+01,0.000000E+00 +1070544,fr,1,4.750000E+00,7.658070E+00,4.996158E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1070653,fr,1,5.650000E+00,7.658070E+00,4.996158E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1070787,fr,1,6.750000E+00,7.635469E+00,4.998674E+01,1.017163E+01,Active Shallow Crust,2.401456E+02,5.799968E+01,0.000000E+00 +1070880,fr,1,3.550000E+00,5.104960E+00,4.989417E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998701E+01,0.000000E+00 +1070884,fr,1,3.550000E+00,5.104960E+00,4.989417E+01,1.500000E+01,Active Shallow Crust,2.400120E+02,5.799807E+01,0.000000E+00 +1070892,fr,1,3.650000E+00,5.104960E+00,4.989417E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998842E+01,0.000000E+00 +1070898,fr,1,3.650000E+00,5.104960E+00,4.989417E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998829E+01,-9.000000E+01 +1071360,fr,1,3.550000E+00,2.089130E+00,4.273478E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998889E+01,0.000000E+00 +1071361,fr,2,3.550000E+00,2.089130E+00,4.273478E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998889E+01,0.000000E+00 +1071363,fr,1,3.550000E+00,2.089130E+00,4.273478E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799783E+01,0.000000E+00 +1071366,fr,1,3.550000E+00,2.089130E+00,4.273478E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998876E+01,-9.000000E+01 +1071369,fr,2,3.550000E+00,2.089130E+00,4.273478E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.999445E+01,0.000000E+00 +1071372,fr,1,3.650000E+00,2.089130E+00,4.273478E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1071373,fr,1,3.650000E+00,2.089130E+00,4.273478E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1071378,fr,1,3.650000E+00,2.089130E+00,4.273478E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +1071384,fr,1,3.750000E+00,2.089130E+00,4.273478E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +1071385,fr,1,3.750000E+00,2.089130E+00,4.273478E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +1071387,fr,1,3.750000E+00,2.089130E+00,4.273478E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801711E+01,0.000000E+00 +1071390,fr,1,3.750000E+00,2.089130E+00,4.273478E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,-9.000000E+01 +1071393,fr,1,3.750000E+00,2.089130E+00,4.273478E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.996712E+01,0.000000E+00 +1071396,fr,1,3.850000E+00,2.089130E+00,4.273478E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1071408,fr,1,3.950000E+00,2.089130E+00,4.273478E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +1071415,fr,1,3.950000E+00,2.089130E+00,4.273478E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,-9.000000E+01 +1071565,fr,1,5.250000E+00,2.089130E+00,4.273478E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1071660,fr,1,6.050000E+00,2.089131E+00,4.273478E+01,5.357596E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1071877,fr,1,3.850000E+00,-1.004720E+00,4.168968E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1072333,fr,2,3.650000E+00,4.370380E+00,4.146736E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999326E+01,0.000000E+00 +1072489,fr,1,4.950000E+00,4.370380E+00,4.146736E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +1072800,fr,1,3.550000E+00,5.473980E+00,5.105330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998732E+01,0.000000E+00 +1072803,fr,1,3.550000E+00,5.473980E+00,5.105330E+01,5.000000E+00,Active Shallow Crust,2.400134E+02,5.799812E+01,0.000000E+00 +1072804,fr,1,3.550000E+00,5.473980E+00,5.105330E+01,1.500000E+01,Active Shallow Crust,2.400134E+02,5.799812E+01,0.000000E+00 +1072825,fr,1,3.750000E+00,5.473980E+00,5.105330E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1072826,fr,1,3.750000E+00,5.473980E+00,5.105330E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1072830,fr,2,3.750000E+00,5.473980E+00,5.105330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,-9.000000E+01 +1072831,fr,1,3.750000E+00,5.473980E+00,5.105330E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,-9.000000E+01 +1072833,fr,2,3.750000E+00,5.473980E+00,5.105330E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.996757E+01,0.000000E+00 +1072836,fr,2,3.850000E+00,5.473980E+00,5.105330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999103E+01,0.000000E+00 +1072837,fr,1,3.850000E+00,5.473980E+00,5.105330E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999103E+01,0.000000E+00 +1072839,fr,1,3.850000E+00,5.473980E+00,5.105330E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799769E+01,0.000000E+00 +1072845,fr,1,3.850000E+00,5.473980E+00,5.105330E+01,5.000000E+00,Active Shallow Crust,1.288953E+02,8.999327E+01,0.000000E+00 +1072848,fr,1,3.950000E+00,5.473980E+00,5.105330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998800E+01,0.000000E+00 +1072857,fr,1,3.950000E+00,5.473980E+00,5.105330E+01,5.000000E+00,Active Shallow Crust,1.288999E+02,8.999400E+01,0.000000E+00 +1072860,fr,2,4.050000E+00,5.473980E+00,5.105330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +1072884,fr,2,4.250000E+00,5.473980E+00,5.105330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998867E+01,0.000000E+00 +1072887,fr,1,4.250000E+00,5.473980E+00,5.105330E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799395E+01,0.000000E+00 +1072908,fr,1,4.450000E+00,5.473980E+00,5.105330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +1072945,fr,1,4.750000E+00,5.473980E+00,5.105330E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +1072989,fr,1,5.050000E+00,5.473980E+00,5.105330E+01,5.000000E+00,Active Shallow Crust,1.288830E+02,8.999052E+01,0.000000E+00 +1073004,fr,1,5.250000E+00,5.473980E+00,5.105330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1073304,fr,1,3.750000E+00,4.840560E+00,4.758971E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1073325,fr,1,3.850000E+00,4.840560E+00,4.758971E+01,5.000000E+00,Active Shallow Crust,1.288946E+02,8.999519E+01,0.000000E+00 +1073330,fr,1,3.950000E+00,4.840560E+00,4.758971E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +1073341,fr,1,4.050000E+00,4.840560E+00,4.758971E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998853E+01,0.000000E+00 +1073355,fr,1,4.150000E+00,4.840560E+00,4.758971E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.799747E+01,0.000000E+00 +1073382,fr,1,4.350000E+00,4.840560E+00,4.758971E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,-9.000000E+01 +1073616,fr,1,6.350000E+00,4.840566E+00,4.758971E+01,7.567806E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1073760,fr,3,3.550000E+00,-1.852230E+00,4.708979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1073763,fr,1,3.550000E+00,-1.852230E+00,4.708979E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799791E+01,0.000000E+00 +1073767,fr,1,3.550000E+00,-1.852230E+00,4.708979E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +1073769,fr,1,3.550000E+00,-1.852230E+00,4.708979E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999400E+01,0.000000E+00 +1073770,fr,1,3.550000E+00,-1.852230E+00,4.708979E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.999400E+01,0.000000E+00 +1073772,fr,4,3.650000E+00,-1.852230E+00,4.708979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +1073773,fr,1,3.650000E+00,-1.852230E+00,4.708979E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +1073775,fr,1,3.650000E+00,-1.852230E+00,4.708979E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801310E+01,0.000000E+00 +1073778,fr,1,3.650000E+00,-1.852230E+00,4.708979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,-9.000000E+01 +1073780,fr,1,3.650000E+00,-1.852230E+00,4.708979E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999072E+01,-9.000000E+01 +1073784,fr,3,3.750000E+00,-1.852230E+00,4.708979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1073786,fr,1,3.750000E+00,-1.852230E+00,4.708979E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1073788,fr,1,3.750000E+00,-1.852230E+00,4.708979E+01,1.500000E+01,Active Shallow Crust,2.400082E+02,5.801764E+01,0.000000E+00 +1073796,fr,1,3.850000E+00,-1.852230E+00,4.708979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +1073799,fr,1,3.850000E+00,-1.852230E+00,4.708979E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799788E+01,0.000000E+00 +1073808,fr,1,3.950000E+00,-1.852230E+00,4.708979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1073818,fr,1,3.950000E+00,-1.852230E+00,4.708979E+01,1.500000E+01,Active Shallow Crust,1.289002E+02,8.999404E+01,0.000000E+00 +1073844,fr,1,4.250000E+00,-1.852230E+00,4.708979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1073854,fr,1,4.250000E+00,-1.852230E+00,4.708979E+01,1.500000E+01,Active Shallow Crust,1.288941E+02,8.998096E+01,0.000000E+00 +1073868,fr,1,4.450000E+00,-1.852230E+00,4.708979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1073880,fr,2,4.550000E+00,-1.852230E+00,4.708979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1073892,fr,1,4.650000E+00,-1.852230E+00,4.708979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +1073895,fr,1,4.650000E+00,-1.852230E+00,4.708979E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799435E+01,0.000000E+00 +1073900,fr,1,4.650000E+00,-1.852230E+00,4.708979E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,-9.000000E+01 +1073917,fr,1,4.850000E+00,-1.852230E+00,4.708979E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1073947,fr,1,5.050000E+00,-1.852230E+00,4.708979E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,-9.000000E+01 +1074003,fr,1,5.550000E+00,-1.852230E+00,4.708979E+01,5.000000E+00,Active Shallow Crust,2.400332E+02,5.799961E+01,0.000000E+00 +1074013,fr,1,5.650000E+00,-1.852230E+00,4.708979E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1074241,fr,1,3.550000E+00,2.576830E+00,4.120383E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +1074264,fr,2,3.750000E+00,2.576830E+00,4.120383E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999096E+01,0.000000E+00 +1074265,fr,1,3.750000E+00,2.576830E+00,4.120383E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999096E+01,0.000000E+00 +1074279,fr,2,3.850000E+00,2.576830E+00,4.120383E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.799752E+01,0.000000E+00 +1074285,fr,1,3.850000E+00,2.576830E+00,4.120383E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999329E+01,0.000000E+00 +1074288,fr,1,3.950000E+00,2.576830E+00,4.120383E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1074289,fr,1,3.950000E+00,2.576830E+00,4.120383E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1074315,fr,1,4.150000E+00,2.576830E+00,4.120383E+01,5.000000E+00,Active Shallow Crust,2.400075E+02,5.799688E+01,0.000000E+00 +1074325,fr,1,4.250000E+00,2.576830E+00,4.120383E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1074326,fr,1,4.250000E+00,2.576830E+00,4.120383E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1074349,fr,1,4.450000E+00,2.576830E+00,4.120383E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +1074721,fr,1,3.550000E+00,6.209790E+00,4.815281E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999327E+01,0.000000E+00 +1074723,fr,2,3.550000E+00,6.209790E+00,4.815281E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799842E+01,0.000000E+00 +1074726,fr,1,3.550000E+00,6.209790E+00,4.815281E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999319E+01,-9.000000E+01 +1074732,fr,2,3.650000E+00,6.209790E+00,4.815281E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998801E+01,0.000000E+00 +1074747,fr,1,3.750000E+00,6.209790E+00,4.815281E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801722E+01,0.000000E+00 +1074756,fr,1,3.850000E+00,6.209790E+00,4.815281E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +1074771,fr,1,3.950000E+00,6.209790E+00,4.815281E+01,5.000000E+00,Active Shallow Crust,2.400201E+02,5.800471E+01,0.000000E+00 +1074799,fr,1,4.150000E+00,6.209790E+00,4.815281E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,-9.000000E+01 +1074804,fr,1,4.250000E+00,6.209790E+00,4.815281E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999098E+01,0.000000E+00 +1074822,fr,1,4.350000E+00,6.209790E+00,4.815281E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998916E+01,-9.000000E+01 +1074829,fr,1,4.450000E+00,6.209790E+00,4.815281E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +1074955,fr,1,5.450000E+00,6.209790E+00,4.815281E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +1076184,fr,1,3.750000E+00,1.139640E+00,5.020926E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1076196,fr,1,3.850000E+00,1.139640E+00,5.020926E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1076643,fr,1,3.550000E+00,-3.221790E+00,4.886445E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799818E+01,0.000000E+00 +1076652,fr,1,3.650000E+00,-3.221790E+00,4.886445E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999113E+01,0.000000E+00 +1076664,fr,1,3.750000E+00,-3.221790E+00,4.886445E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1076667,fr,1,3.750000E+00,-3.221790E+00,4.886445E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801762E+01,0.000000E+00 +1076676,fr,1,3.850000E+00,-3.221790E+00,4.886445E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999061E+01,0.000000E+00 +1076688,fr,1,3.950000E+00,-3.221790E+00,4.886445E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +1076690,fr,1,3.950000E+00,-3.221790E+00,4.886445E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +1076700,fr,1,4.050000E+00,-3.221790E+00,4.886445E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +1076711,fr,1,4.050000E+00,-3.221790E+00,4.886445E+01,2.750000E+01,Active Shallow Crust,1.288898E+02,8.999347E+01,0.000000E+00 +1076714,fr,1,4.150000E+00,-3.221790E+00,4.886445E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1076778,fr,1,4.650000E+00,-3.221790E+00,4.886445E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +1076919,fr,2,5.850000E+00,-3.221790E+00,4.886445E+01,5.000000E+00,Active Shallow Crust,2.400504E+02,5.800033E+01,0.000000E+00 +1077177,fr,1,3.950000E+00,-5.059810E+00,4.634954E+01,5.000000E+00,Active Shallow Crust,1.288992E+02,8.999342E+01,0.000000E+00 +1077252,fr,1,4.650000E+00,-5.059810E+00,4.634954E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1077600,fr,2,3.550000E+00,7.539120E+00,4.919708E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998682E+01,0.000000E+00 +1077601,fr,1,3.550000E+00,7.539120E+00,4.919708E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998682E+01,0.000000E+00 +1077605,fr,1,3.550000E+00,7.539120E+00,4.919708E+01,2.750000E+01,Active Shallow Crust,2.400127E+02,5.799767E+01,0.000000E+00 +1077609,fr,1,3.550000E+00,7.539120E+00,4.919708E+01,5.000000E+00,Active Shallow Crust,1.288949E+02,8.999670E+01,0.000000E+00 +1077630,fr,1,3.750000E+00,7.539120E+00,4.919708E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998941E+01,-9.000000E+01 +1077639,fr,1,3.850000E+00,7.539120E+00,4.919708E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799725E+01,0.000000E+00 +1077649,fr,1,3.950000E+00,7.539120E+00,4.919708E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999168E+01,0.000000E+00 +1077684,fr,1,4.250000E+00,7.539120E+00,4.919708E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +1077716,fr,1,4.450000E+00,7.539120E+00,4.919708E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999054E+01,-9.000000E+01 +1077742,fr,1,4.650000E+00,7.539120E+00,4.919708E+01,1.500000E+01,Active Shallow Crust,1.288899E+02,8.998734E+01,0.000000E+00 +1078092,fr,1,3.650000E+00,6.684380E+00,4.947337E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998832E+01,0.000000E+00 +1078146,fr,1,4.050000E+00,6.684380E+00,4.947337E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998882E+01,-9.000000E+01 +1078560,fr,1,3.550000E+00,9.051010E+00,5.010898E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998707E+01,0.000000E+00 +1078578,fr,1,3.650000E+00,9.051010E+00,5.010898E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998834E+01,-9.000000E+01 +1078620,fr,1,4.050000E+00,9.051010E+00,5.010898E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999273E+01,0.000000E+00 +1078752,fr,1,5.150000E+00,9.051010E+00,5.010898E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1079072,fr,1,3.750000E+00,2.363810E+00,4.842961E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998925E+01,-9.000000E+01 +1079078,fr,1,3.850000E+00,2.363810E+00,4.842961E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +1079088,fr,1,3.950000E+00,2.363810E+00,4.842961E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +1079151,fr,1,4.450000E+00,2.363810E+00,4.842961E+01,5.000000E+00,Active Shallow Crust,2.400057E+02,5.799487E+01,0.000000E+00 +1079520,fr,1,3.550000E+00,-1.558330E+00,4.369931E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999089E+01,0.000000E+00 +1079529,fr,1,3.550000E+00,-1.558330E+00,4.369931E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999362E+01,0.000000E+00 +1079568,fr,1,3.950000E+00,-1.558330E+00,4.369931E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1079599,fr,1,4.150000E+00,-1.558330E+00,4.369931E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,-9.000000E+01 +1079604,fr,1,4.250000E+00,-1.558330E+00,4.369931E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1079610,fr,1,4.250000E+00,-1.558330E+00,4.369931E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,-9.000000E+01 +1080025,fr,1,3.750000E+00,3.735260E+00,5.157061E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1080038,fr,1,3.850000E+00,3.735260E+00,5.157061E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +1080103,fr,1,4.350000E+00,3.735260E+00,5.157061E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +1080483,fr,1,3.550000E+00,2.593800E-01,5.160169E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.799829E+01,0.000000E+00 +1081441,fr,1,3.550000E+00,-1.520690E+00,4.966641E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1081443,fr,1,3.550000E+00,-1.520690E+00,4.966641E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799818E+01,0.000000E+00 +1081452,fr,1,3.650000E+00,-1.520690E+00,4.966641E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1081456,fr,1,3.650000E+00,-1.520690E+00,4.966641E+01,1.500000E+01,Active Shallow Crust,2.400014E+02,5.801273E+01,0.000000E+00 +1081476,fr,1,3.850000E+00,-1.520690E+00,4.966641E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +1081551,fr,1,4.450000E+00,-1.520690E+00,4.966641E+01,5.000000E+00,Active Shallow Crust,2.400061E+02,5.799494E+01,0.000000E+00 +1081710,fr,1,5.750000E+00,-1.520690E+00,4.966641E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +1081930,fr,1,3.550000E+00,3.487630E+00,4.991065E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.999351E+01,0.000000E+00 +1081944,fr,1,3.750000E+00,3.487630E+00,4.991065E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1081946,fr,1,3.750000E+00,3.487630E+00,4.991065E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1081974,fr,1,3.950000E+00,3.487630E+00,4.991065E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,-9.000000E+01 +1081978,fr,1,3.950000E+00,3.487630E+00,4.991065E+01,1.500000E+01,Active Shallow Crust,1.288998E+02,8.999386E+01,0.000000E+00 +1081992,fr,1,4.150000E+00,3.487630E+00,4.991065E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1082030,fr,1,4.450000E+00,3.487630E+00,4.991065E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +1082401,fr,1,3.550000E+00,4.292480E+00,4.570643E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999296E+01,0.000000E+00 +1082407,fr,1,3.550000E+00,4.292480E+00,4.570643E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999287E+01,-9.000000E+01 +1082412,fr,1,3.650000E+00,4.292480E+00,4.570643E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998745E+01,0.000000E+00 +1082418,fr,1,3.650000E+00,4.292480E+00,4.570643E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998730E+01,-9.000000E+01 +1082430,fr,1,3.750000E+00,4.292480E+00,4.570643E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,-9.000000E+01 +1082461,fr,1,4.050000E+00,4.292480E+00,4.570643E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998812E+01,0.000000E+00 +1082484,fr,1,4.250000E+00,4.292480E+00,4.570643E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +1082889,fr,1,3.550000E+00,-1.289940E+00,5.007941E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999353E+01,0.000000E+00 +1082892,fr,1,3.650000E+00,-1.289940E+00,5.007941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1082904,fr,1,3.750000E+00,-1.289940E+00,5.007941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1082922,fr,1,3.850000E+00,-1.289940E+00,5.007941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,-9.000000E+01 +1082931,fr,1,3.950000E+00,-1.289940E+00,5.007941E+01,5.000000E+00,Active Shallow Crust,2.400203E+02,5.800504E+01,0.000000E+00 +1082940,fr,1,4.050000E+00,-1.289940E+00,5.007941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1083649,fr,1,5.950000E+00,1.128840E+00,4.191382E+01,1.500000E+01,Active Shallow Crust,3.599999E+02,8.999005E+01,0.000000E+00 +1083840,fr,3,3.550000E+00,8.260080E+00,4.902442E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998678E+01,0.000000E+00 +1083841,fr,1,3.550000E+00,8.260080E+00,4.902442E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998678E+01,0.000000E+00 +1083842,fr,1,3.550000E+00,8.260080E+00,4.902442E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998678E+01,0.000000E+00 +1083847,fr,1,3.550000E+00,8.260080E+00,4.902442E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998663E+01,-9.000000E+01 +1083848,fr,1,3.550000E+00,8.260080E+00,4.902442E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998663E+01,-9.000000E+01 +1083852,fr,2,3.650000E+00,8.260080E+00,4.902442E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998821E+01,0.000000E+00 +1083855,fr,2,3.650000E+00,8.260080E+00,4.902442E+01,5.000000E+00,Active Shallow Crust,2.400016E+02,5.801283E+01,0.000000E+00 +1083862,fr,1,3.650000E+00,8.260080E+00,4.902442E+01,1.500000E+01,Active Shallow Crust,1.288987E+02,8.996357E+01,0.000000E+00 +1083864,fr,1,3.750000E+00,8.260080E+00,4.902442E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +1083865,fr,1,3.750000E+00,8.260080E+00,4.902442E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +1083876,fr,2,3.850000E+00,8.260080E+00,4.902442E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +1083878,fr,1,3.850000E+00,8.260080E+00,4.902442E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +1083888,fr,2,3.950000E+00,8.260080E+00,4.902442E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999165E+01,0.000000E+00 +1083889,fr,3,3.950000E+00,8.260080E+00,4.902442E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999165E+01,0.000000E+00 +1083890,fr,2,3.950000E+00,8.260080E+00,4.902442E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999165E+01,0.000000E+00 +1083894,fr,1,3.950000E+00,8.260080E+00,4.902442E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999156E+01,-9.000000E+01 +1083895,fr,1,3.950000E+00,8.260080E+00,4.902442E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999156E+01,-9.000000E+01 +1083901,fr,1,4.050000E+00,8.260080E+00,4.902442E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999256E+01,0.000000E+00 +1083903,fr,1,4.050000E+00,8.260080E+00,4.902442E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.800507E+01,0.000000E+00 +1083912,fr,2,4.150000E+00,8.260080E+00,4.902442E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998674E+01,0.000000E+00 +1083913,fr,1,4.150000E+00,8.260080E+00,4.902442E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998674E+01,0.000000E+00 +1083914,fr,1,4.150000E+00,8.260080E+00,4.902442E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998674E+01,0.000000E+00 +1083924,fr,2,4.250000E+00,8.260080E+00,4.902442E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998818E+01,0.000000E+00 +1083927,fr,1,4.250000E+00,8.260080E+00,4.902442E+01,5.000000E+00,Active Shallow Crust,2.400072E+02,5.799467E+01,0.000000E+00 +1083928,fr,1,4.250000E+00,8.260080E+00,4.902442E+01,1.500000E+01,Active Shallow Crust,2.400072E+02,5.799467E+01,0.000000E+00 +1083934,fr,1,4.250000E+00,8.260080E+00,4.902442E+01,1.500000E+01,Active Shallow Crust,1.288945E+02,8.998104E+01,0.000000E+00 +1083939,fr,1,4.350000E+00,8.260080E+00,4.902442E+01,5.000000E+00,Active Shallow Crust,2.400098E+02,5.799539E+01,0.000000E+00 +1083977,fr,1,4.650000E+00,8.260080E+00,4.902442E+01,2.750000E+01,Active Shallow Crust,2.400117E+02,5.799424E+01,0.000000E+00 +1084011,fr,1,4.950000E+00,8.260080E+00,4.902442E+01,5.000000E+00,Active Shallow Crust,2.400132E+02,5.800465E+01,0.000000E+00 +1084026,fr,1,5.050000E+00,8.260080E+00,4.902442E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,-9.000000E+01 +1084320,fr,3,3.550000E+00,2.887990E+00,4.458107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +1084321,fr,1,3.550000E+00,2.887990E+00,4.458107E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +1084331,fr,1,3.550000E+00,2.887990E+00,4.458107E+01,2.750000E+01,Active Shallow Crust,1.288956E+02,8.999461E+01,0.000000E+00 +1084335,fr,1,3.650000E+00,2.887990E+00,4.458107E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801303E+01,0.000000E+00 +1084341,fr,1,3.650000E+00,2.887990E+00,4.458107E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.996349E+01,0.000000E+00 +1084344,fr,1,3.750000E+00,2.887990E+00,4.458107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +1084350,fr,1,3.750000E+00,2.887990E+00,4.458107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999134E+01,-9.000000E+01 +1084356,fr,1,3.850000E+00,2.887990E+00,4.458107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1084364,fr,1,3.850000E+00,2.887990E+00,4.458107E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,-9.000000E+01 +1084404,fr,2,4.250000E+00,2.887990E+00,4.458107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +1084406,fr,1,4.250000E+00,2.887990E+00,4.458107E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +1084428,fr,1,4.450000E+00,2.887990E+00,4.458107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1084431,fr,1,4.450000E+00,2.887990E+00,4.458107E+01,5.000000E+00,Active Shallow Crust,2.400050E+02,5.799445E+01,0.000000E+00 +1084512,fr,1,5.150000E+00,2.887990E+00,4.458107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1084802,fr,1,3.550000E+00,4.670470E+00,4.666734E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999308E+01,0.000000E+00 +1084812,fr,1,3.650000E+00,4.670470E+00,4.666734E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998766E+01,0.000000E+00 +1084813,fr,1,3.650000E+00,4.670470E+00,4.666734E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998766E+01,0.000000E+00 +1084815,fr,1,3.650000E+00,4.670470E+00,4.666734E+01,5.000000E+00,Active Shallow Crust,2.400019E+02,5.801288E+01,0.000000E+00 +1084824,fr,1,3.750000E+00,4.670470E+00,4.666734E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +1084825,fr,1,3.750000E+00,4.670470E+00,4.666734E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +1084826,fr,1,3.750000E+00,4.670470E+00,4.666734E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +1084836,fr,1,3.850000E+00,4.670470E+00,4.666734E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1084850,fr,1,3.950000E+00,4.670470E+00,4.666734E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +1084871,fr,1,4.050000E+00,4.670470E+00,4.666734E+01,2.750000E+01,Active Shallow Crust,1.288913E+02,8.999222E+01,0.000000E+00 +1084874,fr,1,4.150000E+00,4.670470E+00,4.666734E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1084888,fr,1,4.250000E+00,4.670470E+00,4.666734E+01,1.500000E+01,Active Shallow Crust,2.400074E+02,5.799415E+01,0.000000E+00 +1084945,fr,1,4.750000E+00,4.670470E+00,4.666734E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +1084983,fr,1,5.050000E+00,4.670470E+00,4.666734E+01,5.000000E+00,Active Shallow Crust,2.400222E+02,5.799753E+01,0.000000E+00 +1085281,fr,1,3.550000E+00,7.704000E-02,4.616531E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1085295,fr,1,3.650000E+00,7.704000E-02,4.616531E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801289E+01,0.000000E+00 +1085322,fr,2,3.850000E+00,7.704000E-02,4.616531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +1085324,fr,1,3.850000E+00,7.704000E-02,4.616531E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +1085338,fr,1,3.950000E+00,7.704000E-02,4.616531E+01,1.500000E+01,Active Shallow Crust,1.289004E+02,8.999370E+01,0.000000E+00 +1085424,fr,1,4.750000E+00,7.704000E-02,4.616531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1085532,fr,1,5.650000E+00,7.704000E-02,4.616531E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +1085760,fr,1,3.550000E+00,-7.529000E-01,4.609897E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1085764,fr,1,3.550000E+00,-7.529000E-01,4.609897E+01,1.500000E+01,Active Shallow Crust,2.400123E+02,5.799809E+01,0.000000E+00 +1085772,fr,2,3.650000E+00,-7.529000E-01,4.609897E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1085778,fr,1,3.650000E+00,-7.529000E-01,4.609897E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,-9.000000E+01 +1085786,fr,1,3.750000E+00,-7.529000E-01,4.609897E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +1085808,fr,1,3.950000E+00,-7.529000E-01,4.609897E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1085832,fr,1,4.150000E+00,-7.529000E-01,4.609897E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1085863,fr,1,4.350000E+00,-7.529000E-01,4.609897E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +1085955,fr,1,5.150000E+00,-7.529000E-01,4.609897E+01,5.000000E+00,Active Shallow Crust,2.400194E+02,5.799994E+01,0.000000E+00 +1086240,fr,1,3.550000E+00,4.673540E+00,4.602042E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999300E+01,0.000000E+00 +1086243,fr,1,3.550000E+00,4.673540E+00,4.602042E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799820E+01,0.000000E+00 +1086252,fr,1,3.650000E+00,4.673540E+00,4.602042E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998752E+01,0.000000E+00 +1086261,fr,1,3.650000E+00,4.673540E+00,4.602042E+01,5.000000E+00,Active Shallow Crust,1.288996E+02,8.996352E+01,0.000000E+00 +1086262,fr,1,3.650000E+00,4.673540E+00,4.602042E+01,1.500000E+01,Active Shallow Crust,1.288996E+02,8.996352E+01,0.000000E+00 +1086276,fr,1,3.850000E+00,4.673540E+00,4.602042E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1086278,fr,1,3.850000E+00,4.673540E+00,4.602042E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1086300,fr,1,4.050000E+00,4.673540E+00,4.602042E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998819E+01,0.000000E+00 +1086301,fr,2,4.050000E+00,4.673540E+00,4.602042E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998819E+01,0.000000E+00 +1086312,fr,1,4.150000E+00,4.673540E+00,4.602042E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +1086313,fr,1,4.150000E+00,4.673540E+00,4.602042E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +1086315,fr,1,4.150000E+00,4.673540E+00,4.602042E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.799662E+01,0.000000E+00 +1086325,fr,1,4.250000E+00,4.673540E+00,4.602042E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1086498,fr,1,5.650000E+00,4.673540E+00,4.602042E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,-9.000000E+01 +1086667,fr,1,7.050000E+00,4.673544E+00,4.602042E+01,1.674827E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +1086741,fr,1,3.650000E+00,-3.457810E+00,5.005378E+01,5.000000E+00,Active Shallow Crust,1.288998E+02,8.996359E+01,0.000000E+00 +1087680,fr,4,3.550000E+00,3.797650E+00,4.485021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1087686,fr,1,3.550000E+00,3.797650E+00,4.485021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998915E+01,-9.000000E+01 +1087693,fr,1,3.650000E+00,3.797650E+00,4.485021E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +1087705,fr,1,3.750000E+00,3.797650E+00,4.485021E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998864E+01,0.000000E+00 +1087716,fr,2,3.850000E+00,3.797650E+00,4.485021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1087720,fr,1,3.850000E+00,3.797650E+00,4.485021E+01,1.500000E+01,Active Shallow Crust,2.400110E+02,5.799776E+01,0.000000E+00 +1087740,fr,1,4.050000E+00,3.797650E+00,4.485021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1087744,fr,1,4.050000E+00,3.797650E+00,4.485021E+01,1.500000E+01,Active Shallow Crust,2.400054E+02,5.800589E+01,0.000000E+00 +1087764,fr,1,4.250000E+00,3.797650E+00,4.485021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +1087776,fr,1,4.350000E+00,3.797650E+00,4.485021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1087871,fr,1,5.050000E+00,3.797650E+00,4.485021E+01,2.750000E+01,Active Shallow Crust,1.288862E+02,8.999042E+01,0.000000E+00 +1088173,fr,1,3.650000E+00,3.401500E+00,4.977361E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +1088190,fr,1,3.750000E+00,3.401500E+00,4.977361E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,-9.000000E+01 +1088205,fr,1,3.850000E+00,3.401500E+00,4.977361E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.999424E+01,0.000000E+00 +1088218,fr,1,3.950000E+00,3.401500E+00,4.977361E+01,1.500000E+01,Active Shallow Crust,1.288997E+02,8.999384E+01,0.000000E+00 +1088641,fr,1,3.550000E+00,-7.173500E-01,4.268678E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1088643,fr,1,3.550000E+00,-7.173500E-01,4.268678E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799815E+01,0.000000E+00 +1088652,fr,2,3.650000E+00,-7.173500E-01,4.268678E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1088655,fr,1,3.650000E+00,-7.173500E-01,4.268678E+01,5.000000E+00,Active Shallow Crust,2.400006E+02,5.801292E+01,0.000000E+00 +1088667,fr,1,3.750000E+00,-7.173500E-01,4.268678E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801743E+01,0.000000E+00 +1088676,fr,1,3.850000E+00,-7.173500E-01,4.268678E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1088677,fr,1,3.850000E+00,-7.173500E-01,4.268678E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1088688,fr,1,3.950000E+00,-7.173500E-01,4.268678E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1089156,fr,1,3.850000E+00,3.028420E+00,5.181412E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998897E+01,0.000000E+00 +1089157,fr,1,3.850000E+00,3.028420E+00,5.181412E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998897E+01,0.000000E+00 +1089180,fr,1,4.050000E+00,3.028420E+00,5.181412E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +1090080,fr,1,3.550000E+00,-1.735930E+00,5.004997E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +1090092,fr,1,3.650000E+00,-1.735930E+00,5.004997E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1090095,fr,1,3.650000E+00,-1.735930E+00,5.004997E+01,5.000000E+00,Active Shallow Crust,2.400015E+02,5.801286E+01,0.000000E+00 +1090101,fr,1,3.650000E+00,-1.735930E+00,5.004997E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.996347E+01,0.000000E+00 +1090128,fr,1,3.950000E+00,-1.735930E+00,5.004997E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1090597,fr,1,3.850000E+00,5.778430E+00,4.935983E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +1090600,fr,1,3.850000E+00,5.778430E+00,4.935983E+01,1.500000E+01,Active Shallow Crust,2.400122E+02,5.799776E+01,0.000000E+00 +1090737,fr,1,4.950000E+00,5.778430E+00,4.935983E+01,5.000000E+00,Active Shallow Crust,1.288884E+02,8.999002E+01,0.000000E+00 +1092000,fr,1,3.550000E+00,4.560650E+00,4.350596E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999268E+01,0.000000E+00 +1092003,fr,1,3.550000E+00,4.560650E+00,4.350596E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799861E+01,0.000000E+00 +1092031,fr,1,3.750000E+00,4.560650E+00,4.350596E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998824E+01,-9.000000E+01 +1092075,fr,1,4.150000E+00,4.560650E+00,4.350596E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.799690E+01,0.000000E+00 +1092084,fr,1,4.250000E+00,4.560650E+00,4.350596E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1092108,fr,1,4.450000E+00,4.560650E+00,4.350596E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +1092240,fr,1,5.550000E+00,4.560650E+00,4.350596E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1092486,fr,1,3.550000E+00,5.877500E+00,5.012029E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998692E+01,-9.000000E+01 +1092492,fr,1,3.650000E+00,5.877500E+00,5.012029E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998847E+01,0.000000E+00 +1092495,fr,1,3.650000E+00,5.877500E+00,5.012029E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801283E+01,0.000000E+00 +1092498,fr,1,3.650000E+00,5.877500E+00,5.012029E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998834E+01,-9.000000E+01 +1092528,fr,1,3.950000E+00,5.877500E+00,5.012029E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999184E+01,0.000000E+00 +1092535,fr,1,3.950000E+00,5.877500E+00,5.012029E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999174E+01,-9.000000E+01 +1092554,fr,1,4.150000E+00,5.877500E+00,5.012029E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +1092576,fr,1,4.350000E+00,5.877500E+00,5.012029E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1092876,fr,1,6.850000E+00,5.877521E+00,5.012029E+01,1.345767E+01,Active Shallow Crust,3.599999E+02,8.999006E+01,0.000000E+00 +1092973,fr,1,3.650000E+00,2.313300E-01,4.346557E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1092978,fr,1,3.650000E+00,2.313300E-01,4.346557E+01,5.000000E+00,Active Shallow Crust,3.599999E+02,8.999010E+01,-9.000000E+01 +1093002,fr,1,3.850000E+00,2.313300E-01,4.346557E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1093047,fr,1,4.250000E+00,2.313300E-01,4.346557E+01,5.000000E+00,Active Shallow Crust,2.400070E+02,5.799397E+01,0.000000E+00 +1093056,fr,1,4.350000E+00,2.313300E-01,4.346557E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1093320,fr,1,6.550000E+00,2.313398E-01,4.346557E+01,9.527304E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +1093441,fr,1,3.550000E+00,4.495630E+00,4.702899E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999313E+01,0.000000E+00 +1093443,fr,1,3.550000E+00,4.495630E+00,4.702899E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799858E+01,0.000000E+00 +1093445,fr,1,3.550000E+00,4.495630E+00,4.702899E+01,2.750000E+01,Active Shallow Crust,2.400114E+02,5.799849E+01,0.000000E+00 +1093452,fr,1,3.650000E+00,4.495630E+00,4.702899E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998775E+01,0.000000E+00 +1093465,fr,1,3.750000E+00,4.495630E+00,4.702899E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998908E+01,0.000000E+00 +1093476,fr,1,3.850000E+00,4.495630E+00,4.702899E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1093499,fr,1,3.950000E+00,4.495630E+00,4.702899E+01,2.750000E+01,Active Shallow Crust,1.289006E+02,8.999349E+01,0.000000E+00 +1093500,fr,1,4.050000E+00,4.495630E+00,4.702899E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998840E+01,0.000000E+00 +1093536,fr,1,4.350000E+00,4.495630E+00,4.702899E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998905E+01,0.000000E+00 +1094437,fr,1,3.850000E+00,2.693530E+00,5.295092E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +1094880,fr,1,3.550000E+00,-1.421000E-02,4.561800E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1094881,fr,1,3.550000E+00,-1.421000E-02,4.561800E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1094887,fr,1,3.550000E+00,-1.421000E-02,4.561800E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +1094889,fr,1,3.550000E+00,-1.421000E-02,4.561800E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999374E+01,0.000000E+00 +1094905,fr,1,3.750000E+00,-1.421000E-02,4.561800E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1094914,fr,1,3.750000E+00,-1.421000E-02,4.561800E+01,1.500000E+01,Active Shallow Crust,1.288967E+02,8.996735E+01,0.000000E+00 +1094916,fr,1,3.850000E+00,-1.421000E-02,4.561800E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +1094928,fr,3,3.950000E+00,-1.421000E-02,4.561800E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +1094934,fr,1,3.950000E+00,-1.421000E-02,4.561800E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1094940,fr,1,4.050000E+00,-1.421000E-02,4.561800E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1094949,fr,1,4.050000E+00,-1.421000E-02,4.561800E+01,5.000000E+00,Active Shallow Crust,1.288906E+02,8.999372E+01,0.000000E+00 +1094952,fr,2,4.150000E+00,-1.421000E-02,4.561800E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +1094953,fr,1,4.150000E+00,-1.421000E-02,4.561800E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +1094977,fr,3,4.350000E+00,-1.421000E-02,4.561800E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +1094979,fr,1,4.350000E+00,-1.421000E-02,4.561800E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799591E+01,0.000000E+00 +1094988,fr,1,4.450000E+00,-1.421000E-02,4.561800E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1094992,fr,1,4.450000E+00,-1.421000E-02,4.561800E+01,1.500000E+01,Active Shallow Crust,2.400050E+02,5.799465E+01,0.000000E+00 +1095000,fr,1,4.550000E+00,-1.421000E-02,4.561800E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +1095073,fr,1,5.150000E+00,-1.421000E-02,4.561800E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +1095360,fr,6,3.550000E+00,7.755740E+00,4.769750E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999321E+01,0.000000E+00 +1095361,fr,3,3.550000E+00,7.755740E+00,4.769750E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999321E+01,0.000000E+00 +1095363,fr,3,3.550000E+00,7.755740E+00,4.769750E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799906E+01,0.000000E+00 +1095364,fr,1,3.550000E+00,7.755740E+00,4.769750E+01,1.500000E+01,Active Shallow Crust,2.400113E+02,5.799906E+01,0.000000E+00 +1095369,fr,3,3.550000E+00,7.755740E+00,4.769750E+01,5.000000E+00,Active Shallow Crust,1.288953E+02,8.999660E+01,0.000000E+00 +1095370,fr,2,3.550000E+00,7.755740E+00,4.769750E+01,1.500000E+01,Active Shallow Crust,1.288953E+02,8.999660E+01,0.000000E+00 +1095372,fr,7,3.650000E+00,7.755740E+00,4.769750E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998790E+01,0.000000E+00 +1095375,fr,2,3.650000E+00,7.755740E+00,4.769750E+01,5.000000E+00,Active Shallow Crust,2.400000E+02,5.801348E+01,0.000000E+00 +1095376,fr,2,3.650000E+00,7.755740E+00,4.769750E+01,1.500000E+01,Active Shallow Crust,2.400000E+02,5.801348E+01,0.000000E+00 +1095384,fr,7,3.750000E+00,7.755740E+00,4.769750E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998922E+01,0.000000E+00 +1095385,fr,4,3.750000E+00,7.755740E+00,4.769750E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998922E+01,0.000000E+00 +1095386,fr,2,3.750000E+00,7.755740E+00,4.769750E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998922E+01,0.000000E+00 +1095387,fr,3,3.750000E+00,7.755740E+00,4.769750E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.801744E+01,0.000000E+00 +1095390,fr,1,3.750000E+00,7.755740E+00,4.769750E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998909E+01,-9.000000E+01 +1095392,fr,1,3.750000E+00,7.755740E+00,4.769750E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998909E+01,-9.000000E+01 +1095396,fr,4,3.850000E+00,7.755740E+00,4.769750E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1095397,fr,2,3.850000E+00,7.755740E+00,4.769750E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1095399,fr,1,3.850000E+00,7.755740E+00,4.769750E+01,5.000000E+00,Active Shallow Crust,2.400100E+02,5.799784E+01,0.000000E+00 +1095402,fr,1,3.850000E+00,7.755740E+00,4.769750E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,-9.000000E+01 +1095405,fr,1,3.850000E+00,7.755740E+00,4.769750E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.999279E+01,0.000000E+00 +1095410,fr,1,3.950000E+00,7.755740E+00,4.769750E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999143E+01,0.000000E+00 +1095411,fr,1,3.950000E+00,7.755740E+00,4.769750E+01,5.000000E+00,Active Shallow Crust,2.400199E+02,5.800499E+01,0.000000E+00 +1095420,fr,2,4.050000E+00,7.755740E+00,4.769750E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998855E+01,0.000000E+00 +1095421,fr,3,4.050000E+00,7.755740E+00,4.769750E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998855E+01,0.000000E+00 +1095424,fr,1,4.050000E+00,7.755740E+00,4.769750E+01,1.500000E+01,Active Shallow Crust,2.400064E+02,5.800585E+01,0.000000E+00 +1095426,fr,1,4.050000E+00,7.755740E+00,4.769750E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998842E+01,-9.000000E+01 +1095432,fr,4,4.150000E+00,7.755740E+00,4.769750E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1095442,fr,1,4.150000E+00,7.755740E+00,4.769750E+01,1.500000E+01,Active Shallow Crust,1.288974E+02,8.999490E+01,0.000000E+00 +1095444,fr,2,4.250000E+00,7.755740E+00,4.769750E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +1095456,fr,1,4.350000E+00,7.755740E+00,4.769750E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998919E+01,0.000000E+00 +1095457,fr,1,4.350000E+00,7.755740E+00,4.769750E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998919E+01,0.000000E+00 +1095465,fr,1,4.350000E+00,7.755740E+00,4.769750E+01,5.000000E+00,Active Shallow Crust,1.288974E+02,8.998258E+01,0.000000E+00 +1095469,fr,1,4.450000E+00,7.755740E+00,4.769750E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1095471,fr,1,4.450000E+00,7.755740E+00,4.769750E+01,5.000000E+00,Active Shallow Crust,2.400056E+02,5.799481E+01,0.000000E+00 +1095480,fr,1,4.550000E+00,7.755740E+00,4.769750E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1095492,fr,1,4.650000E+00,7.755740E+00,4.769750E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1095501,fr,1,4.650000E+00,7.755740E+00,4.769750E+01,5.000000E+00,Active Shallow Crust,1.288906E+02,8.998727E+01,0.000000E+00 +1095531,fr,1,4.950000E+00,7.755740E+00,4.769750E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.800442E+01,0.000000E+00 +1095639,fr,1,5.850000E+00,7.755740E+00,4.769750E+01,5.000000E+00,Active Shallow Crust,2.400488E+02,5.800006E+01,0.000000E+00 +1095648,fr,1,5.950000E+00,7.755740E+00,4.769750E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1095840,fr,1,3.550000E+00,1.123780E+00,4.300173E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +1095843,fr,1,3.550000E+00,1.123780E+00,4.300173E+01,5.000000E+00,Active Shallow Crust,2.400115E+02,5.799825E+01,0.000000E+00 +1095846,fr,1,3.550000E+00,1.123780E+00,4.300173E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,-9.000000E+01 +1095852,fr,1,3.650000E+00,1.123780E+00,4.300173E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1095853,fr,1,3.650000E+00,1.123780E+00,4.300173E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1095865,fr,1,3.750000E+00,1.123780E+00,4.300173E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1095879,fr,1,3.850000E+00,1.123780E+00,4.300173E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799765E+01,0.000000E+00 +1095889,fr,1,3.950000E+00,1.123780E+00,4.300173E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +1095897,fr,1,3.950000E+00,1.123780E+00,4.300173E+01,5.000000E+00,Active Shallow Crust,1.289009E+02,8.999360E+01,0.000000E+00 +1095900,fr,2,4.050000E+00,1.123780E+00,4.300173E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +1095909,fr,1,4.050000E+00,1.123780E+00,4.300173E+01,5.000000E+00,Active Shallow Crust,1.288910E+02,8.999378E+01,0.000000E+00 +1095928,fr,1,4.250000E+00,1.123780E+00,4.300173E+01,1.500000E+01,Active Shallow Crust,2.400069E+02,5.799396E+01,0.000000E+00 +1095978,fr,1,4.650000E+00,1.123780E+00,4.300173E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1096069,fr,1,5.450000E+00,1.123780E+00,4.300173E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1096344,fr,1,3.750000E+00,-2.706480E+00,4.701242E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +1096371,fr,1,3.950000E+00,-2.706480E+00,4.701242E+01,5.000000E+00,Active Shallow Crust,2.400197E+02,5.800502E+01,0.000000E+00 +1096437,fr,1,4.450000E+00,-2.706480E+00,4.701242E+01,5.000000E+00,Active Shallow Crust,1.288922E+02,8.999390E+01,0.000000E+00 +1096488,fr,1,4.950000E+00,-2.706480E+00,4.701242E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +1096800,fr,1,3.550000E+00,-2.492540E+00,4.703241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1096803,fr,1,3.550000E+00,-2.492540E+00,4.703241E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799826E+01,0.000000E+00 +1096806,fr,1,3.550000E+00,-2.492540E+00,4.703241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,-9.000000E+01 +1096813,fr,1,3.650000E+00,-2.492540E+00,4.703241E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +1096815,fr,1,3.650000E+00,-2.492540E+00,4.703241E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801298E+01,0.000000E+00 +1096818,fr,1,3.650000E+00,-2.492540E+00,4.703241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999071E+01,-9.000000E+01 +1096825,fr,2,3.750000E+00,-2.492540E+00,4.703241E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998908E+01,0.000000E+00 +1096833,fr,1,3.750000E+00,-2.492540E+00,4.703241E+01,5.000000E+00,Active Shallow Crust,1.288971E+02,8.996725E+01,0.000000E+00 +1096836,fr,1,3.850000E+00,-2.492540E+00,4.703241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1096884,fr,1,4.250000E+00,-2.492540E+00,4.703241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +1096899,fr,1,4.350000E+00,-2.492540E+00,4.703241E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799600E+01,0.000000E+00 +1096909,fr,1,4.450000E+00,-2.492540E+00,4.703241E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +1096920,fr,1,4.550000E+00,-2.492540E+00,4.703241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1097281,fr,1,3.550000E+00,6.551070E+00,4.296173E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999262E+01,0.000000E+00 +1097295,fr,1,3.650000E+00,6.551070E+00,4.296173E+01,5.000000E+00,Active Shallow Crust,2.400001E+02,5.801342E+01,0.000000E+00 +1097297,fr,1,3.650000E+00,6.551070E+00,4.296173E+01,2.750000E+01,Active Shallow Crust,2.400001E+02,5.801334E+01,0.000000E+00 +1097317,fr,1,3.850000E+00,6.551070E+00,4.296173E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +1097760,fr,2,3.550000E+00,5.987200E-01,4.966035E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1097769,fr,1,3.550000E+00,5.987200E-01,4.966035E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999388E+01,0.000000E+00 +1097772,fr,1,3.650000E+00,5.987200E-01,4.966035E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1097781,fr,2,3.650000E+00,5.987200E-01,4.966035E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.996352E+01,0.000000E+00 +1097784,fr,1,3.750000E+00,5.987200E-01,4.966035E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +1097802,fr,1,3.850000E+00,5.987200E-01,4.966035E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +1097820,fr,1,4.050000E+00,5.987200E-01,4.966035E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1097824,fr,1,4.050000E+00,5.987200E-01,4.966035E+01,1.500000E+01,Active Shallow Crust,2.400065E+02,5.800590E+01,0.000000E+00 +1097832,fr,2,4.150000E+00,5.987200E-01,4.966035E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1097833,fr,1,4.150000E+00,5.987200E-01,4.966035E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1097835,fr,1,4.150000E+00,5.987200E-01,4.966035E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.799741E+01,0.000000E+00 +1097862,fr,1,4.350000E+00,5.987200E-01,4.966035E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +1097883,fr,1,4.550000E+00,5.987200E-01,4.966035E+01,5.000000E+00,Active Shallow Crust,2.400102E+02,5.799759E+01,0.000000E+00 +1097892,fr,1,4.650000E+00,5.987200E-01,4.966035E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1098244,fr,1,3.550000E+00,1.929720E+00,5.011053E+01,1.500000E+01,Active Shallow Crust,2.400126E+02,5.799819E+01,0.000000E+00 +1098265,fr,1,3.750000E+00,1.929720E+00,5.011053E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1098267,fr,1,3.750000E+00,1.929720E+00,5.011053E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.801769E+01,0.000000E+00 +1098294,fr,1,3.950000E+00,1.929720E+00,5.011053E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,-9.000000E+01 +1098315,fr,1,4.150000E+00,1.929720E+00,5.011053E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.799756E+01,0.000000E+00 +1098324,fr,1,4.250000E+00,1.929720E+00,5.011053E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1098330,fr,1,4.250000E+00,1.929720E+00,5.011053E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,-9.000000E+01 +1098336,fr,1,4.350000E+00,1.929720E+00,5.011053E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1098737,fr,1,3.650000E+00,9.152700E-01,4.148363E+01,2.750000E+01,Active Shallow Crust,2.400007E+02,5.801269E+01,0.000000E+00 +1098741,fr,1,3.650000E+00,9.152700E-01,4.148363E+01,5.000000E+00,Active Shallow Crust,1.289009E+02,8.996350E+01,0.000000E+00 +1098772,fr,1,3.950000E+00,9.152700E-01,4.148363E+01,1.500000E+01,Active Shallow Crust,2.400191E+02,5.800484E+01,0.000000E+00 +1098804,fr,1,4.250000E+00,9.152700E-01,4.148363E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1098840,fr,1,4.550000E+00,9.152700E-01,4.148363E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1098846,fr,1,4.550000E+00,9.152700E-01,4.148363E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +1099200,fr,8,3.550000E+00,6.960770E+00,4.618502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999302E+01,0.000000E+00 +1099201,fr,2,3.550000E+00,6.960770E+00,4.618502E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999302E+01,0.000000E+00 +1099203,fr,4,3.550000E+00,6.960770E+00,4.618502E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799815E+01,0.000000E+00 +1099206,fr,2,3.550000E+00,6.960770E+00,4.618502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999294E+01,-9.000000E+01 +1099207,fr,1,3.550000E+00,6.960770E+00,4.618502E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999294E+01,-9.000000E+01 +1099209,fr,2,3.550000E+00,6.960770E+00,4.618502E+01,5.000000E+00,Active Shallow Crust,1.288953E+02,8.999651E+01,0.000000E+00 +1099210,fr,1,3.550000E+00,6.960770E+00,4.618502E+01,1.500000E+01,Active Shallow Crust,1.288953E+02,8.999651E+01,0.000000E+00 +1099212,fr,10,3.650000E+00,6.960770E+00,4.618502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998756E+01,0.000000E+00 +1099213,fr,2,3.650000E+00,6.960770E+00,4.618502E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998756E+01,0.000000E+00 +1099214,fr,2,3.650000E+00,6.960770E+00,4.618502E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998756E+01,0.000000E+00 +1099215,fr,2,3.650000E+00,6.960770E+00,4.618502E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801239E+01,0.000000E+00 +1099221,fr,1,3.650000E+00,6.960770E+00,4.618502E+01,5.000000E+00,Active Shallow Crust,1.289010E+02,8.996352E+01,0.000000E+00 +1099224,fr,2,3.750000E+00,6.960770E+00,4.618502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +1099225,fr,2,3.750000E+00,6.960770E+00,4.618502E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +1099227,fr,2,3.750000E+00,6.960770E+00,4.618502E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801756E+01,0.000000E+00 +1099230,fr,1,3.750000E+00,6.960770E+00,4.618502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998878E+01,-9.000000E+01 +1099236,fr,3,3.850000E+00,6.960770E+00,4.618502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1099237,fr,3,3.850000E+00,6.960770E+00,4.618502E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1099244,fr,1,3.850000E+00,6.960770E+00,4.618502E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +1099248,fr,4,3.950000E+00,6.960770E+00,4.618502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999119E+01,0.000000E+00 +1099250,fr,1,3.950000E+00,6.960770E+00,4.618502E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999119E+01,0.000000E+00 +1099257,fr,1,3.950000E+00,6.960770E+00,4.618502E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.999339E+01,0.000000E+00 +1099260,fr,1,4.050000E+00,6.960770E+00,4.618502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998822E+01,0.000000E+00 +1099266,fr,1,4.050000E+00,6.960770E+00,4.618502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998808E+01,-9.000000E+01 +1099270,fr,1,4.050000E+00,6.960770E+00,4.618502E+01,1.500000E+01,Active Shallow Crust,1.288915E+02,8.999215E+01,0.000000E+00 +1099272,fr,3,4.150000E+00,6.960770E+00,4.618502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +1099274,fr,1,4.150000E+00,6.960770E+00,4.618502E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +1099276,fr,1,4.150000E+00,6.960770E+00,4.618502E+01,1.500000E+01,Active Shallow Crust,2.400086E+02,5.799730E+01,0.000000E+00 +1099281,fr,1,4.150000E+00,6.960770E+00,4.618502E+01,5.000000E+00,Active Shallow Crust,1.288983E+02,8.999300E+01,0.000000E+00 +1099284,fr,3,4.250000E+00,6.960770E+00,4.618502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +1099285,fr,1,4.250000E+00,6.960770E+00,4.618502E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +1099293,fr,2,4.250000E+00,6.960770E+00,4.618502E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.998093E+01,0.000000E+00 +1099302,fr,2,4.350000E+00,6.960770E+00,4.618502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998875E+01,-9.000000E+01 +1099308,fr,4,4.450000E+00,6.960770E+00,4.618502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1099310,fr,1,4.450000E+00,6.960770E+00,4.618502E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1099311,fr,1,4.450000E+00,6.960770E+00,4.618502E+01,5.000000E+00,Active Shallow Crust,2.400052E+02,5.799468E+01,0.000000E+00 +1099320,fr,1,4.550000E+00,6.960770E+00,4.618502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998896E+01,0.000000E+00 +1099324,fr,1,4.550000E+00,6.960770E+00,4.618502E+01,1.500000E+01,Active Shallow Crust,2.400097E+02,5.799702E+01,0.000000E+00 +1099326,fr,2,4.550000E+00,6.960770E+00,4.618502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,-9.000000E+01 +1099332,fr,1,4.650000E+00,6.960770E+00,4.618502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1099333,fr,1,4.650000E+00,6.960770E+00,4.618502E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1099338,fr,1,4.650000E+00,6.960770E+00,4.618502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +1099344,fr,1,4.750000E+00,6.960770E+00,4.618502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +1099350,fr,1,4.750000E+00,6.960770E+00,4.618502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,-9.000000E+01 +1099356,fr,1,4.850000E+00,6.960770E+00,4.618502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1099369,fr,1,4.950000E+00,6.960770E+00,4.618502E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1099389,fr,1,5.050000E+00,6.960770E+00,4.618502E+01,5.000000E+00,Active Shallow Crust,1.288855E+02,8.999052E+01,0.000000E+00 +1099458,fr,1,5.650000E+00,6.960770E+00,4.618502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,-9.000000E+01 +1099681,fr,1,3.550000E+00,2.774240E+00,4.123431E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +1099686,fr,1,3.550000E+00,2.774240E+00,4.123431E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998849E+01,-9.000000E+01 +1099704,fr,1,3.750000E+00,2.774240E+00,4.123431E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +1099716,fr,1,3.850000E+00,2.774240E+00,4.123431E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1099728,fr,1,3.950000E+00,2.774240E+00,4.123431E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1099803,fr,1,4.550000E+00,2.774240E+00,4.123431E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799717E+01,0.000000E+00 +1099812,fr,1,4.650000E+00,2.774240E+00,4.123431E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +1099815,fr,1,4.650000E+00,2.774240E+00,4.123431E+01,5.000000E+00,Active Shallow Crust,2.400093E+02,5.799403E+01,0.000000E+00 +1100160,fr,1,3.550000E+00,-6.595200E-01,4.241771E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +1100174,fr,1,3.650000E+00,-6.595200E-01,4.241771E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1100208,fr,1,3.950000E+00,-6.595200E-01,4.241771E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1100282,fr,1,4.550000E+00,-6.595200E-01,4.241771E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1100380,fr,1,5.350000E+00,-6.595200E-01,4.241771E+01,1.500000E+01,Active Shallow Crust,2.400223E+02,5.800106E+01,0.000000E+00 +1100640,fr,1,3.550000E+00,4.354200E+00,4.347706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999268E+01,0.000000E+00 +1100653,fr,1,3.650000E+00,4.354200E+00,4.347706E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998695E+01,0.000000E+00 +1100664,fr,1,3.750000E+00,4.354200E+00,4.347706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998837E+01,0.000000E+00 +1100676,fr,1,3.850000E+00,4.354200E+00,4.347706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +1100689,fr,1,3.950000E+00,4.354200E+00,4.347706E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999077E+01,0.000000E+00 +1100700,fr,1,4.050000E+00,4.354200E+00,4.347706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999177E+01,0.000000E+00 +1100724,fr,2,4.250000E+00,4.354200E+00,4.347706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1101600,fr,1,3.550000E+00,5.644660E+00,4.404995E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999275E+01,0.000000E+00 +1101602,fr,1,3.550000E+00,5.644660E+00,4.404995E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999275E+01,0.000000E+00 +1101610,fr,1,3.550000E+00,5.644660E+00,4.404995E+01,1.500000E+01,Active Shallow Crust,1.288971E+02,8.999275E+01,0.000000E+00 +1101615,fr,1,3.650000E+00,5.644660E+00,4.404995E+01,5.000000E+00,Active Shallow Crust,2.399994E+02,5.801339E+01,0.000000E+00 +1101624,fr,2,3.750000E+00,5.644660E+00,4.404995E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998849E+01,0.000000E+00 +1101627,fr,1,3.750000E+00,5.644660E+00,4.404995E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.801740E+01,0.000000E+00 +1101632,fr,1,3.750000E+00,5.644660E+00,4.404995E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998835E+01,-9.000000E+01 +1101637,fr,1,3.850000E+00,5.644660E+00,4.404995E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +1101639,fr,1,3.850000E+00,5.644660E+00,4.404995E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799815E+01,0.000000E+00 +1101654,fr,1,3.950000E+00,5.644660E+00,4.404995E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,-9.000000E+01 +1101660,fr,2,4.050000E+00,5.644660E+00,4.404995E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999185E+01,0.000000E+00 +1101672,fr,1,4.150000E+00,5.644660E+00,4.404995E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +1101684,fr,1,4.250000E+00,5.644660E+00,4.404995E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +1101688,fr,1,4.250000E+00,5.644660E+00,4.404995E+01,1.500000E+01,Active Shallow Crust,2.400067E+02,5.799401E+01,0.000000E+00 +1101696,fr,1,4.350000E+00,5.644660E+00,4.404995E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999134E+01,0.000000E+00 +1101809,fr,1,5.250000E+00,5.644660E+00,4.404995E+01,2.750000E+01,Active Shallow Crust,2.400191E+02,5.799986E+01,0.000000E+00 +1102081,fr,1,3.550000E+00,2.392580E+00,4.331516E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998900E+01,0.000000E+00 +1102092,fr,1,3.650000E+00,2.392580E+00,4.331516E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1102107,fr,1,3.750000E+00,2.392580E+00,4.331516E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.801776E+01,0.000000E+00 +1102152,fr,1,4.150000E+00,2.392580E+00,4.331516E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +1102201,fr,1,4.550000E+00,2.392580E+00,4.331516E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1102572,fr,1,3.650000E+00,4.921780E+00,5.146709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998880E+01,0.000000E+00 +1102608,fr,1,3.950000E+00,4.921780E+00,5.146709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998811E+01,0.000000E+00 +1102623,fr,1,4.050000E+00,4.921780E+00,5.146709E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.800555E+01,0.000000E+00 +1102687,fr,1,4.550000E+00,4.921780E+00,5.146709E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,-9.000000E+01 +1102764,fr,1,5.250000E+00,4.921780E+00,5.146709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1103065,fr,1,3.750000E+00,-1.868250E+00,4.586356E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +1103521,fr,1,3.550000E+00,1.572330E+00,4.812896E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1103533,fr,1,3.650000E+00,1.572330E+00,4.812896E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +1103535,fr,1,3.650000E+00,1.572330E+00,4.812896E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801288E+01,0.000000E+00 +1103544,fr,1,3.750000E+00,1.572330E+00,4.812896E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +1103570,fr,1,3.950000E+00,1.572330E+00,4.812896E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +1103583,fr,1,4.050000E+00,1.572330E+00,4.812896E+01,5.000000E+00,Active Shallow Crust,2.400060E+02,5.800596E+01,0.000000E+00 +1103592,fr,1,4.150000E+00,1.572330E+00,4.812896E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1103733,fr,1,5.250000E+00,1.572330E+00,4.812896E+01,5.000000E+00,Active Shallow Crust,1.288823E+02,8.998704E+01,0.000000E+00 +1104000,fr,2,3.550000E+00,-9.535300E-01,4.376171E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1104001,fr,1,3.550000E+00,-9.535300E-01,4.376171E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1104075,fr,1,4.150000E+00,-9.535300E-01,4.376171E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799725E+01,0.000000E+00 +1104480,fr,2,3.550000E+00,7.031330E+00,4.722915E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999315E+01,0.000000E+00 +1104482,fr,1,3.550000E+00,7.031330E+00,4.722915E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999315E+01,0.000000E+00 +1104483,fr,1,3.550000E+00,7.031330E+00,4.722915E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799808E+01,0.000000E+00 +1104492,fr,3,3.650000E+00,7.031330E+00,4.722915E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998779E+01,0.000000E+00 +1104493,fr,1,3.650000E+00,7.031330E+00,4.722915E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998779E+01,0.000000E+00 +1104495,fr,1,3.650000E+00,7.031330E+00,4.722915E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801281E+01,0.000000E+00 +1104501,fr,1,3.650000E+00,7.031330E+00,4.722915E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.996354E+01,0.000000E+00 +1104504,fr,5,3.750000E+00,7.031330E+00,4.722915E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998912E+01,0.000000E+00 +1104505,fr,2,3.750000E+00,7.031330E+00,4.722915E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998912E+01,0.000000E+00 +1104507,fr,1,3.750000E+00,7.031330E+00,4.722915E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801749E+01,0.000000E+00 +1104516,fr,1,3.850000E+00,7.031330E+00,4.722915E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1104517,fr,2,3.850000E+00,7.031330E+00,4.722915E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1104519,fr,1,3.850000E+00,7.031330E+00,4.722915E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799779E+01,0.000000E+00 +1104523,fr,1,3.850000E+00,7.031330E+00,4.722915E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,-9.000000E+01 +1104528,fr,3,3.950000E+00,7.031330E+00,4.722915E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999136E+01,0.000000E+00 +1104529,fr,1,3.950000E+00,7.031330E+00,4.722915E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999136E+01,0.000000E+00 +1104537,fr,1,3.950000E+00,7.031330E+00,4.722915E+01,5.000000E+00,Active Shallow Crust,1.289000E+02,8.999352E+01,0.000000E+00 +1104540,fr,1,4.050000E+00,7.031330E+00,4.722915E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998845E+01,0.000000E+00 +1104543,fr,1,4.050000E+00,7.031330E+00,4.722915E+01,5.000000E+00,Active Shallow Crust,2.400060E+02,5.800623E+01,0.000000E+00 +1104544,fr,1,4.050000E+00,7.031330E+00,4.722915E+01,1.500000E+01,Active Shallow Crust,2.400060E+02,5.800620E+01,0.000000E+00 +1104552,fr,2,4.150000E+00,7.031330E+00,4.722915E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1104553,fr,1,4.150000E+00,7.031330E+00,4.722915E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1104565,fr,1,4.250000E+00,7.031330E+00,4.722915E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999082E+01,0.000000E+00 +1104571,fr,1,4.250000E+00,7.031330E+00,4.722915E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999072E+01,-9.000000E+01 +1104733,fr,1,5.650000E+00,7.031330E+00,4.722915E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1105008,fr,1,3.950000E+00,5.462540E+00,4.919313E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999168E+01,0.000000E+00 +1105020,fr,1,4.050000E+00,5.462540E+00,4.919313E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +1105469,fr,1,3.750000E+00,5.899800E-01,5.213123E+01,2.750000E+01,Active Shallow Crust,2.400091E+02,5.801767E+01,0.000000E+00 +1105482,fr,1,3.850000E+00,5.899800E-01,5.213123E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +1105497,fr,1,3.950000E+00,5.899800E-01,5.213123E+01,5.000000E+00,Active Shallow Crust,1.288996E+02,8.999365E+01,0.000000E+00 +1105525,fr,1,4.250000E+00,5.899800E-01,5.213123E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1105920,fr,1,3.550000E+00,1.905420E+00,4.695486E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1105926,fr,1,3.550000E+00,1.905420E+00,4.695486E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,-9.000000E+01 +1105962,fr,1,3.850000E+00,1.905420E+00,4.695486E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +1105992,fr,1,4.150000E+00,1.905420E+00,4.695486E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1106028,fr,1,4.450000E+00,1.905420E+00,4.695486E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1106029,fr,1,4.450000E+00,1.905420E+00,4.695486E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1106058,fr,1,4.650000E+00,1.905420E+00,4.695486E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,-9.000000E+01 +1106460,fr,1,4.050000E+00,3.942300E+00,4.032205E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998919E+01,0.000000E+00 +1107363,fr,1,3.550000E+00,-1.120140E+00,4.809275E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799839E+01,0.000000E+00 +1107372,fr,1,3.650000E+00,-1.120140E+00,4.809275E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +1107384,fr,3,3.750000E+00,-1.120140E+00,4.809275E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +1107396,fr,1,3.850000E+00,-1.120140E+00,4.809275E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1107409,fr,1,3.950000E+00,-1.120140E+00,4.809275E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +1107420,fr,1,4.050000E+00,-1.120140E+00,4.809275E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1107433,fr,2,4.150000E+00,-1.120140E+00,4.809275E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1107435,fr,1,4.150000E+00,-1.120140E+00,4.809275E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799733E+01,0.000000E+00 +1107504,fr,1,4.750000E+00,-1.120140E+00,4.809275E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1107843,fr,1,3.550000E+00,6.010820E+00,4.302972E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799805E+01,0.000000E+00 +1107864,fr,1,3.750000E+00,6.010820E+00,4.302972E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998829E+01,0.000000E+00 +1107866,fr,1,3.750000E+00,6.010820E+00,4.302972E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998829E+01,0.000000E+00 +1107937,fr,1,4.350000E+00,6.010820E+00,4.302972E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +1108332,fr,2,3.650000E+00,4.649030E+00,4.231458E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998671E+01,0.000000E+00 +1108333,fr,1,3.650000E+00,4.649030E+00,4.231458E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998671E+01,0.000000E+00 +1108800,fr,1,3.550000E+00,4.682450E+00,4.405380E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999275E+01,0.000000E+00 +1108802,fr,1,3.550000E+00,4.682450E+00,4.405380E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999275E+01,0.000000E+00 +1108803,fr,1,3.550000E+00,4.682450E+00,4.405380E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799739E+01,0.000000E+00 +1108812,fr,1,3.650000E+00,4.682450E+00,4.405380E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998708E+01,0.000000E+00 +1108824,fr,1,3.750000E+00,4.682450E+00,4.405380E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998849E+01,0.000000E+00 +1108827,fr,1,3.750000E+00,4.682450E+00,4.405380E+01,5.000000E+00,Active Shallow Crust,2.400072E+02,5.801781E+01,0.000000E+00 +1108828,fr,1,3.750000E+00,4.682450E+00,4.405380E+01,1.500000E+01,Active Shallow Crust,2.400072E+02,5.801781E+01,0.000000E+00 +1108830,fr,1,3.750000E+00,4.682450E+00,4.405380E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998835E+01,-9.000000E+01 +1108833,fr,1,3.750000E+00,4.682450E+00,4.405380E+01,5.000000E+00,Active Shallow Crust,1.288977E+02,8.996682E+01,0.000000E+00 +1108847,fr,1,3.850000E+00,4.682450E+00,4.405380E+01,2.750000E+01,Active Shallow Crust,1.288956E+02,8.999487E+01,0.000000E+00 +1108848,fr,2,3.950000E+00,4.682450E+00,4.405380E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999085E+01,0.000000E+00 +1108860,fr,1,4.050000E+00,4.682450E+00,4.405380E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999185E+01,0.000000E+00 +1108863,fr,1,4.050000E+00,4.682450E+00,4.405380E+01,5.000000E+00,Active Shallow Crust,2.400051E+02,5.800566E+01,0.000000E+00 +1108873,fr,1,4.150000E+00,4.682450E+00,4.405380E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +1108897,fr,1,4.350000E+00,4.682450E+00,4.405380E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999134E+01,0.000000E+00 +1108907,fr,1,4.350000E+00,4.682450E+00,4.405380E+01,2.750000E+01,Active Shallow Crust,1.288978E+02,8.998294E+01,0.000000E+00 +1108908,fr,2,4.450000E+00,4.682450E+00,4.405380E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1108945,fr,1,4.750000E+00,4.682450E+00,4.405380E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999090E+01,0.000000E+00 +1108947,fr,1,4.750000E+00,4.682450E+00,4.405380E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.800415E+01,0.000000E+00 +1108958,fr,1,4.850000E+00,4.682450E+00,4.405380E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1109010,fr,1,5.250000E+00,4.682450E+00,4.405380E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,-9.000000E+01 +1109040,fr,1,5.550000E+00,4.682450E+00,4.405380E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1109280,fr,2,3.550000E+00,-1.233020E+00,4.632942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1109281,fr,1,3.550000E+00,-1.233020E+00,4.632942E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1109282,fr,1,3.550000E+00,-1.233020E+00,4.632942E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1109283,fr,1,3.550000E+00,-1.233020E+00,4.632942E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799810E+01,0.000000E+00 +1109292,fr,1,3.650000E+00,-1.233020E+00,4.632942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999069E+01,0.000000E+00 +1109329,fr,1,3.950000E+00,-1.233020E+00,4.632942E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1109330,fr,1,3.950000E+00,-1.233020E+00,4.632942E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1109341,fr,1,4.050000E+00,-1.233020E+00,4.632942E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1109361,fr,1,4.150000E+00,-1.233020E+00,4.632942E+01,5.000000E+00,Active Shallow Crust,1.288974E+02,8.999390E+01,0.000000E+00 +1109362,fr,1,4.150000E+00,-1.233020E+00,4.632942E+01,1.500000E+01,Active Shallow Crust,1.288974E+02,8.999390E+01,0.000000E+00 +1109370,fr,1,4.250000E+00,-1.233020E+00,4.632942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,-9.000000E+01 +1109413,fr,1,4.650000E+00,-1.233020E+00,4.632942E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1109438,fr,1,4.850000E+00,-1.233020E+00,4.632942E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1109473,fr,1,5.150000E+00,-1.233020E+00,4.632942E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1109799,fr,1,3.850000E+00,-4.062800E-01,4.216954E+01,5.000000E+00,Active Shallow Crust,2.400103E+02,5.799766E+01,0.000000E+00 +1109844,fr,1,4.250000E+00,-4.062800E-01,4.216954E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1110253,fr,1,3.650000E+00,3.866420E+00,5.207990E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +1110724,fr,1,3.550000E+00,6.861750E+00,4.380121E+01,1.500000E+01,Active Shallow Crust,2.400120E+02,5.799777E+01,0.000000E+00 +1110733,fr,1,3.650000E+00,6.861750E+00,4.380121E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998703E+01,0.000000E+00 +1110744,fr,1,3.750000E+00,6.861750E+00,4.380121E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +1110747,fr,1,3.750000E+00,6.861750E+00,4.380121E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.801738E+01,0.000000E+00 +1110759,fr,1,3.850000E+00,6.861750E+00,4.380121E+01,5.000000E+00,Active Shallow Crust,2.400103E+02,5.799848E+01,0.000000E+00 +1110771,fr,1,3.950000E+00,6.861750E+00,4.380121E+01,5.000000E+00,Active Shallow Crust,2.400190E+02,5.800455E+01,0.000000E+00 +1110777,fr,1,3.950000E+00,6.861750E+00,4.380121E+01,5.000000E+00,Active Shallow Crust,1.288995E+02,8.999541E+01,0.000000E+00 +1110780,fr,3,4.050000E+00,6.861750E+00,4.380121E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999181E+01,0.000000E+00 +1110802,fr,1,4.150000E+00,6.861750E+00,4.380121E+01,1.500000E+01,Active Shallow Crust,1.288978E+02,8.999453E+01,0.000000E+00 +1110834,fr,1,4.450000E+00,6.861750E+00,4.380121E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,-9.000000E+01 +1110840,fr,2,4.550000E+00,6.861750E+00,4.380121E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999079E+01,0.000000E+00 +1110841,fr,1,4.550000E+00,6.861750E+00,4.380121E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999079E+01,0.000000E+00 +1110904,fr,1,5.050000E+00,6.861750E+00,4.380121E+01,1.500000E+01,Active Shallow Crust,2.400209E+02,5.799724E+01,0.000000E+00 +1111021,fr,1,6.050000E+00,6.861750E+00,4.380121E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1111092,fr,1,6.650000E+00,6.861763E+00,4.380121E+01,1.068981E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1111200,fr,1,3.550000E+00,-4.429100E-01,4.706867E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1111201,fr,1,3.550000E+00,-4.429100E-01,4.706867E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1111208,fr,1,3.550000E+00,-4.429100E-01,4.706867E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1111209,fr,1,3.550000E+00,-4.429100E-01,4.706867E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999377E+01,0.000000E+00 +1111212,fr,3,3.650000E+00,-4.429100E-01,4.706867E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1111213,fr,1,3.650000E+00,-4.429100E-01,4.706867E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1111214,fr,1,3.650000E+00,-4.429100E-01,4.706867E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1111215,fr,1,3.650000E+00,-4.429100E-01,4.706867E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801298E+01,0.000000E+00 +1111224,fr,1,3.750000E+00,-4.429100E-01,4.706867E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1111225,fr,1,3.750000E+00,-4.429100E-01,4.706867E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1111236,fr,3,3.850000E+00,-4.429100E-01,4.706867E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1111243,fr,1,3.850000E+00,-4.429100E-01,4.706867E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +1111248,fr,2,3.950000E+00,-4.429100E-01,4.706867E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1111251,fr,1,3.950000E+00,-4.429100E-01,4.706867E+01,5.000000E+00,Active Shallow Crust,2.400199E+02,5.800503E+01,0.000000E+00 +1111254,fr,1,3.950000E+00,-4.429100E-01,4.706867E+01,5.000000E+00,Active Shallow Crust,3.599999E+02,8.999014E+01,-9.000000E+01 +1111257,fr,1,3.950000E+00,-4.429100E-01,4.706867E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.999364E+01,0.000000E+00 +1111260,fr,1,4.050000E+00,-4.429100E-01,4.706867E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1111262,fr,1,4.050000E+00,-4.429100E-01,4.706867E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1111306,fr,1,4.350000E+00,-4.429100E-01,4.706867E+01,1.500000E+01,Active Shallow Crust,1.288977E+02,8.998274E+01,0.000000E+00 +1111320,fr,2,4.550000E+00,-4.429100E-01,4.706867E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1111334,fr,1,4.650000E+00,-4.429100E-01,4.706867E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1111370,fr,1,4.950000E+00,-4.429100E-01,4.706867E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1111388,fr,1,5.050000E+00,-4.429100E-01,4.706867E+01,2.750000E+01,Active Shallow Crust,3.600000E+02,8.999004E+01,-9.000000E+01 +1111680,fr,1,3.550000E+00,-3.721840E+00,4.316916E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998897E+01,0.000000E+00 +1111681,fr,2,3.550000E+00,-3.721840E+00,4.316916E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998897E+01,0.000000E+00 +1111683,fr,1,3.550000E+00,-3.721840E+00,4.316916E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799789E+01,0.000000E+00 +1111689,fr,2,3.550000E+00,-3.721840E+00,4.316916E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999448E+01,0.000000E+00 +1111692,fr,1,3.650000E+00,-3.721840E+00,4.316916E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1111693,fr,1,3.650000E+00,-3.721840E+00,4.316916E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1111704,fr,1,3.750000E+00,-3.721840E+00,4.316916E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +1111707,fr,1,3.750000E+00,-3.721840E+00,4.316916E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.801717E+01,0.000000E+00 +1111710,fr,1,3.750000E+00,-3.721840E+00,4.316916E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999113E+01,-9.000000E+01 +1111713,fr,1,3.750000E+00,-3.721840E+00,4.316916E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.996743E+01,0.000000E+00 +1111731,fr,1,3.950000E+00,-3.721840E+00,4.316916E+01,5.000000E+00,Active Shallow Crust,2.400194E+02,5.800522E+01,0.000000E+00 +1111749,fr,1,4.050000E+00,-3.721840E+00,4.316916E+01,5.000000E+00,Active Shallow Crust,1.288911E+02,8.999380E+01,0.000000E+00 +1111754,fr,1,4.150000E+00,-3.721840E+00,4.316916E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +1111764,fr,1,4.250000E+00,-3.721840E+00,4.316916E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1111765,fr,1,4.250000E+00,-3.721840E+00,4.316916E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1111782,fr,1,4.350000E+00,-3.721840E+00,4.316916E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,-9.000000E+01 +1111789,fr,1,4.450000E+00,-3.721840E+00,4.316916E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1111812,fr,1,4.650000E+00,-3.721840E+00,4.316916E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +1111839,fr,1,4.850000E+00,-3.721840E+00,4.316916E+01,5.000000E+00,Active Shallow Crust,2.400159E+02,5.800203E+01,0.000000E+00 +1111860,fr,1,5.050000E+00,-3.721840E+00,4.316916E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1112161,fr,1,3.550000E+00,3.802900E+00,4.718521E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1112184,fr,1,3.750000E+00,3.802900E+00,4.718521E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +1112187,fr,1,3.750000E+00,3.802900E+00,4.718521E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801793E+01,0.000000E+00 +1112195,fr,1,3.750000E+00,3.802900E+00,4.718521E+01,2.750000E+01,Active Shallow Crust,1.288970E+02,8.996725E+01,0.000000E+00 +1112196,fr,1,3.850000E+00,3.802900E+00,4.718521E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1112220,fr,1,4.050000E+00,3.802900E+00,4.718521E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1112233,fr,1,4.150000E+00,3.802900E+00,4.718521E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1112269,fr,1,4.450000E+00,3.802900E+00,4.718521E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +1112274,fr,1,4.450000E+00,3.802900E+00,4.718521E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,-9.000000E+01 +1112645,fr,2,3.550000E+00,5.922600E-01,4.820715E+01,2.750000E+01,Active Shallow Crust,2.400123E+02,5.799802E+01,0.000000E+00 +1112649,fr,1,3.550000E+00,5.922600E-01,4.820715E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999370E+01,0.000000E+00 +1112658,fr,1,3.650000E+00,5.922600E-01,4.820715E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,-9.000000E+01 +1112671,fr,1,3.750000E+00,5.922600E-01,4.820715E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +1112724,fr,1,4.250000E+00,5.922600E-01,4.820715E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1112775,fr,1,4.650000E+00,5.922600E-01,4.820715E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799434E+01,0.000000E+00 +1113122,fr,1,3.550000E+00,3.867180E+00,4.859254E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1113134,fr,1,3.650000E+00,3.867180E+00,4.859254E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999108E+01,0.000000E+00 +1113600,fr,1,3.550000E+00,1.899580E+00,4.971880E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1113604,fr,1,3.550000E+00,1.899580E+00,4.971880E+01,1.500000E+01,Active Shallow Crust,2.400124E+02,5.799821E+01,0.000000E+00 +1113642,fr,1,3.850000E+00,1.899580E+00,4.971880E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,-9.000000E+01 +1113648,fr,1,3.950000E+00,1.899580E+00,4.971880E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1113651,fr,1,3.950000E+00,1.899580E+00,4.971880E+01,5.000000E+00,Active Shallow Crust,2.400202E+02,5.800515E+01,0.000000E+00 +1113681,fr,1,4.150000E+00,1.899580E+00,4.971880E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.999387E+01,0.000000E+00 +1113699,fr,1,4.350000E+00,1.899580E+00,4.971880E+01,5.000000E+00,Active Shallow Crust,2.400092E+02,5.799614E+01,0.000000E+00 +1113747,fr,1,4.750000E+00,1.899580E+00,4.971880E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.800471E+01,0.000000E+00 +1114080,fr,2,3.550000E+00,-1.785140E+00,4.682432E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1114086,fr,1,3.550000E+00,-1.785140E+00,4.682432E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,-9.000000E+01 +1114092,fr,2,3.650000E+00,-1.785140E+00,4.682432E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +1114104,fr,1,3.750000E+00,-1.785140E+00,4.682432E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +1114131,fr,1,3.950000E+00,-1.785140E+00,4.682432E+01,5.000000E+00,Active Shallow Crust,2.400196E+02,5.800500E+01,0.000000E+00 +1114156,fr,1,4.150000E+00,-1.785140E+00,4.682432E+01,1.500000E+01,Active Shallow Crust,2.400083E+02,5.799741E+01,0.000000E+00 +1114168,fr,1,4.250000E+00,-1.785140E+00,4.682432E+01,1.500000E+01,Active Shallow Crust,2.400076E+02,5.799408E+01,0.000000E+00 +1114185,fr,1,4.350000E+00,-1.785140E+00,4.682432E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.998280E+01,0.000000E+00 +1114200,fr,2,4.550000E+00,-1.785140E+00,4.682432E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1114201,fr,1,4.550000E+00,-1.785140E+00,4.682432E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1114563,fr,1,3.550000E+00,-4.117730E+00,4.918880E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799809E+01,0.000000E+00 +1114576,fr,1,3.650000E+00,-4.117730E+00,4.918880E+01,1.500000E+01,Active Shallow Crust,2.400018E+02,5.801295E+01,0.000000E+00 +1114598,fr,1,3.850000E+00,-4.117730E+00,4.918880E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999067E+01,0.000000E+00 +1114620,fr,1,4.050000E+00,-4.117730E+00,4.918880E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +1115106,fr,1,4.050000E+00,1.814970E+00,4.467796E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,-9.000000E+01 +1115220,fr,1,5.050000E+00,1.814970E+00,4.467796E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1115561,fr,1,3.850000E+00,4.316460E+00,4.307200E+01,2.750000E+01,Active Shallow Crust,2.400111E+02,5.799784E+01,0.000000E+00 +1115568,fr,1,3.950000E+00,4.316460E+00,4.307200E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999071E+01,0.000000E+00 +1116492,fr,1,3.650000E+00,6.219210E+00,4.305555E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998687E+01,0.000000E+00 +1116528,fr,1,3.950000E+00,6.219210E+00,4.305555E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +1116962,fr,1,3.550000E+00,-1.496660E+00,5.085795E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +1117279,fr,1,6.150000E+00,-1.496660E+00,5.085795E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +1117920,fr,1,3.550000E+00,-4.087100E-01,4.408838E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1117932,fr,2,3.650000E+00,-4.087100E-01,4.408838E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1117995,fr,1,4.150000E+00,-4.087100E-01,4.408838E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799725E+01,0.000000E+00 +1118400,fr,2,3.550000E+00,2.054300E+00,5.166418E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1118418,fr,1,3.650000E+00,2.054300E+00,5.166418E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,-9.000000E+01 +1118442,fr,1,3.850000E+00,2.054300E+00,5.166418E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,-9.000000E+01 +1118485,fr,1,4.250000E+00,2.054300E+00,5.166418E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1118493,fr,1,4.250000E+00,2.054300E+00,5.166418E+01,5.000000E+00,Active Shallow Crust,1.288935E+02,8.998092E+01,0.000000E+00 +1118570,fr,1,4.950000E+00,2.054300E+00,5.166418E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1118880,fr,2,3.550000E+00,-1.044830E+00,4.823234E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1118882,fr,1,3.550000E+00,-1.044830E+00,4.823234E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1118887,fr,1,3.550000E+00,-1.044830E+00,4.823234E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,-9.000000E+01 +1118919,fr,1,3.850000E+00,-1.044830E+00,4.823234E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799786E+01,0.000000E+00 +1118976,fr,2,4.350000E+00,-1.044830E+00,4.823234E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1119003,fr,1,4.550000E+00,-1.044830E+00,4.823234E+01,5.000000E+00,Active Shallow Crust,2.400099E+02,5.799741E+01,0.000000E+00 +1119036,fr,1,4.850000E+00,-1.044830E+00,4.823234E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1119360,fr,2,3.550000E+00,5.060070E+00,5.075276E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998724E+01,0.000000E+00 +1119372,fr,1,3.650000E+00,5.060070E+00,5.075276E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +1119405,fr,1,3.850000E+00,5.060070E+00,5.075276E+01,5.000000E+00,Active Shallow Crust,1.288955E+02,8.999323E+01,0.000000E+00 +1119408,fr,1,3.950000E+00,5.060070E+00,5.075276E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999195E+01,0.000000E+00 +1119432,fr,1,4.150000E+00,5.060070E+00,5.075276E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +1119456,fr,1,4.350000E+00,5.060070E+00,5.075276E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +1119463,fr,1,4.350000E+00,5.060070E+00,5.075276E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,-9.000000E+01 +1119471,fr,1,4.450000E+00,5.060070E+00,5.075276E+01,5.000000E+00,Active Shallow Crust,2.400066E+02,5.799466E+01,0.000000E+00 +1119495,fr,1,4.650000E+00,5.060070E+00,5.075276E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799466E+01,0.000000E+00 +1120332,fr,1,3.650000E+00,1.831320E+00,5.165791E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +1120345,fr,2,3.750000E+00,1.831320E+00,5.165791E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1120393,fr,1,4.150000E+00,1.831320E+00,5.165791E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1120824,fr,1,3.750000E+00,3.146040E+00,5.295688E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +1120827,fr,1,3.750000E+00,3.146040E+00,5.295688E+01,5.000000E+00,Active Shallow Crust,2.400093E+02,5.801781E+01,0.000000E+00 +1120863,fr,1,4.050000E+00,3.146040E+00,5.295688E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.800605E+01,0.000000E+00 +1120932,fr,1,4.650000E+00,3.146040E+00,5.295688E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1121280,fr,1,3.550000E+00,-9.803800E-01,4.796898E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1121292,fr,1,3.650000E+00,-9.803800E-01,4.796898E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1121304,fr,1,3.750000E+00,-9.803800E-01,4.796898E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1121316,fr,3,3.850000E+00,-9.803800E-01,4.796898E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1121319,fr,1,3.850000E+00,-9.803800E-01,4.796898E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799786E+01,0.000000E+00 +1121328,fr,2,3.950000E+00,-9.803800E-01,4.796898E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1121355,fr,1,4.150000E+00,-9.803800E-01,4.796898E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799736E+01,0.000000E+00 +1121385,fr,1,4.350000E+00,-9.803800E-01,4.796898E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.998278E+01,0.000000E+00 +1121389,fr,1,4.450000E+00,-9.803800E-01,4.796898E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1121760,fr,3,3.550000E+00,8.553490E+00,4.943302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998689E+01,0.000000E+00 +1121762,fr,1,3.550000E+00,8.553490E+00,4.943302E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998689E+01,0.000000E+00 +1121763,fr,1,3.550000E+00,8.553490E+00,4.943302E+01,5.000000E+00,Active Shallow Crust,2.400138E+02,5.799794E+01,0.000000E+00 +1121766,fr,1,3.550000E+00,8.553490E+00,4.943302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998673E+01,-9.000000E+01 +1121772,fr,1,3.650000E+00,8.553490E+00,4.943302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998831E+01,0.000000E+00 +1121773,fr,1,3.650000E+00,8.553490E+00,4.943302E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998831E+01,0.000000E+00 +1121775,fr,1,3.650000E+00,8.553490E+00,4.943302E+01,5.000000E+00,Active Shallow Crust,2.400019E+02,5.801133E+01,0.000000E+00 +1121784,fr,1,3.750000E+00,8.553490E+00,4.943302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +1121785,fr,1,3.750000E+00,8.553490E+00,4.943302E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +1121796,fr,1,3.850000E+00,8.553490E+00,4.943302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +1121805,fr,1,3.850000E+00,8.553490E+00,4.943302E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.999536E+01,0.000000E+00 +1121808,fr,1,3.950000E+00,8.553490E+00,4.943302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999172E+01,0.000000E+00 +1121820,fr,1,4.050000E+00,8.553490E+00,4.943302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999262E+01,0.000000E+00 +1121844,fr,1,4.250000E+00,8.553490E+00,4.943302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998828E+01,0.000000E+00 +1121856,fr,1,4.350000E+00,8.553490E+00,4.943302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1121880,fr,1,4.550000E+00,8.553490E+00,4.943302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999171E+01,0.000000E+00 +1121914,fr,1,4.750000E+00,8.553490E+00,4.943302E+01,1.500000E+01,Active Shallow Crust,1.288880E+02,8.998792E+01,0.000000E+00 +1121916,fr,1,4.850000E+00,8.553490E+00,4.943302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999119E+01,0.000000E+00 +1122242,fr,1,3.550000E+00,2.842520E+00,4.988163E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1122258,fr,1,3.650000E+00,2.842520E+00,4.988163E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999121E+01,-9.000000E+01 +1122273,fr,1,3.750000E+00,2.842520E+00,4.988163E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.996755E+01,0.000000E+00 +1122276,fr,1,3.850000E+00,2.842520E+00,4.988163E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999080E+01,0.000000E+00 +1122303,fr,2,4.050000E+00,2.842520E+00,4.988163E+01,5.000000E+00,Active Shallow Crust,2.400067E+02,5.800591E+01,0.000000E+00 +1122720,fr,2,3.550000E+00,2.443250E+00,4.685122E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1122780,fr,1,4.050000E+00,2.443250E+00,4.685122E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1122793,fr,1,4.150000E+00,2.443250E+00,4.685122E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +1122798,fr,1,4.150000E+00,2.443250E+00,4.685122E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,-9.000000E+01 +1122888,fr,1,4.950000E+00,2.443250E+00,4.685122E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1122916,fr,1,5.150000E+00,2.443250E+00,4.685122E+01,1.500000E+01,Active Shallow Crust,2.400199E+02,5.799997E+01,0.000000E+00 +1123213,fr,1,3.650000E+00,-6.975210E+00,4.902341E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998821E+01,0.000000E+00 +1123776,fr,1,4.350000E+00,8.176480E+00,5.125351E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1123826,fr,1,4.750000E+00,8.176480E+00,5.125351E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1124160,fr,1,3.550000E+00,3.115190E+00,5.194300E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +1124208,fr,1,3.950000E+00,3.115190E+00,5.194300E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1124316,fr,1,4.850000E+00,3.115190E+00,5.194300E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1125120,fr,1,3.550000E+00,-1.551280E+00,4.805985E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1125122,fr,1,3.550000E+00,-1.551280E+00,4.805985E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1125123,fr,1,3.550000E+00,-1.551280E+00,4.805985E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799820E+01,0.000000E+00 +1125151,fr,1,3.750000E+00,-1.551280E+00,4.805985E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,-9.000000E+01 +1125156,fr,1,3.850000E+00,-1.551280E+00,4.805985E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1125157,fr,2,3.850000E+00,-1.551280E+00,4.805985E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1125164,fr,1,3.850000E+00,-1.551280E+00,4.805985E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999035E+01,-9.000000E+01 +1125174,fr,1,3.950000E+00,-1.551280E+00,4.805985E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,-9.000000E+01 +1125183,fr,1,4.050000E+00,-1.551280E+00,4.805985E+01,5.000000E+00,Active Shallow Crust,2.400062E+02,5.800594E+01,0.000000E+00 +1125200,fr,1,4.150000E+00,-1.551280E+00,4.805985E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,-9.000000E+01 +1125264,fr,1,4.750000E+00,-1.551280E+00,4.805985E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +1125600,fr,1,3.550000E+00,9.852500E-01,5.240167E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1125624,fr,1,3.750000E+00,9.852500E-01,5.240167E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1126080,fr,1,3.550000E+00,7.342520E+00,4.583795E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999297E+01,0.000000E+00 +1126081,fr,3,3.550000E+00,7.342520E+00,4.583795E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999297E+01,0.000000E+00 +1126083,fr,1,3.550000E+00,7.342520E+00,4.583795E+01,5.000000E+00,Active Shallow Crust,2.400115E+02,5.799784E+01,0.000000E+00 +1126086,fr,1,3.550000E+00,7.342520E+00,4.583795E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999290E+01,-9.000000E+01 +1126093,fr,2,3.650000E+00,7.342520E+00,4.583795E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998748E+01,0.000000E+00 +1126095,fr,2,3.650000E+00,7.342520E+00,4.583795E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801302E+01,0.000000E+00 +1126098,fr,1,3.650000E+00,7.342520E+00,4.583795E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998734E+01,-9.000000E+01 +1126104,fr,1,3.750000E+00,7.342520E+00,4.583795E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998884E+01,0.000000E+00 +1126106,fr,2,3.750000E+00,7.342520E+00,4.583795E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998884E+01,0.000000E+00 +1126114,fr,1,3.750000E+00,7.342520E+00,4.583795E+01,1.500000E+01,Active Shallow Crust,1.288960E+02,8.996748E+01,0.000000E+00 +1126116,fr,1,3.850000E+00,7.342520E+00,4.583795E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1126122,fr,1,3.850000E+00,7.342520E+00,4.583795E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +1126125,fr,1,3.850000E+00,7.342520E+00,4.583795E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.999503E+01,0.000000E+00 +1126128,fr,1,3.950000E+00,7.342520E+00,4.583795E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999113E+01,0.000000E+00 +1126131,fr,2,3.950000E+00,7.342520E+00,4.583795E+01,5.000000E+00,Active Shallow Crust,2.400202E+02,5.800438E+01,0.000000E+00 +1126179,fr,1,4.350000E+00,7.342520E+00,4.583795E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799594E+01,0.000000E+00 +1126214,fr,1,4.650000E+00,7.342520E+00,4.583795E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1126249,fr,1,4.950000E+00,7.342520E+00,4.583795E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1126323,fr,1,5.550000E+00,7.342520E+00,4.583795E+01,5.000000E+00,Active Shallow Crust,2.400286E+02,5.800237E+01,0.000000E+00 +1126395,fr,1,6.150000E+00,7.342125E+00,4.583843E+01,5.097890E+00,Active Shallow Crust,2.400638E+02,5.799980E+01,0.000000E+00 +1126560,fr,1,3.550000E+00,7.524120E+00,5.007094E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998705E+01,0.000000E+00 +1126563,fr,1,3.550000E+00,7.524120E+00,5.007094E+01,5.000000E+00,Active Shallow Crust,2.400133E+02,5.799836E+01,0.000000E+00 +1126572,fr,2,3.650000E+00,7.524120E+00,5.007094E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998846E+01,0.000000E+00 +1126573,fr,2,3.650000E+00,7.524120E+00,5.007094E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998846E+01,0.000000E+00 +1126578,fr,1,3.650000E+00,7.524120E+00,5.007094E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998833E+01,-9.000000E+01 +1126584,fr,1,3.750000E+00,7.524120E+00,5.007094E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1126596,fr,3,3.850000E+00,7.524120E+00,5.007094E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +1126598,fr,1,3.850000E+00,7.524120E+00,5.007094E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +1126599,fr,1,3.850000E+00,7.524120E+00,5.007094E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799808E+01,0.000000E+00 +1126608,fr,2,3.950000E+00,7.524120E+00,5.007094E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999183E+01,0.000000E+00 +1126620,fr,1,4.050000E+00,7.524120E+00,5.007094E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998908E+01,0.000000E+00 +1126635,fr,1,4.150000E+00,7.524120E+00,5.007094E+01,5.000000E+00,Active Shallow Crust,2.400093E+02,5.799706E+01,0.000000E+00 +1126645,fr,1,4.250000E+00,7.524120E+00,5.007094E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +1126669,fr,1,4.450000E+00,7.524120E+00,5.007094E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +1126677,fr,1,4.450000E+00,7.524120E+00,5.007094E+01,5.000000E+00,Active Shallow Crust,1.288914E+02,8.999311E+01,0.000000E+00 +1126680,fr,1,4.550000E+00,7.524120E+00,5.007094E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +1126694,fr,1,4.650000E+00,7.524120E+00,5.007094E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1127520,fr,1,3.550000E+00,1.466140E+00,4.545915E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +1127521,fr,1,3.550000E+00,1.466140E+00,4.545915E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +1127568,fr,1,3.950000E+00,1.466140E+00,4.545915E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1127592,fr,1,4.150000E+00,1.466140E+00,4.545915E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1127649,fr,1,4.550000E+00,1.466140E+00,4.545915E+01,5.000000E+00,Active Shallow Crust,1.288943E+02,8.998572E+01,0.000000E+00 +1128000,fr,1,3.550000E+00,3.454010E+00,4.321340E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +1128017,fr,2,3.650000E+00,3.454010E+00,4.321340E+01,2.750000E+01,Active Shallow Crust,2.400008E+02,5.801334E+01,0.000000E+00 +1128024,fr,1,3.750000E+00,3.454010E+00,4.321340E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999124E+01,0.000000E+00 +1128036,fr,1,3.850000E+00,3.454010E+00,4.321340E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1128120,fr,1,4.550000E+00,3.454010E+00,4.321340E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +1128504,fr,1,3.750000E+00,2.865500E+00,4.691395E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998906E+01,0.000000E+00 +1128505,fr,1,3.750000E+00,2.865500E+00,4.691395E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998906E+01,0.000000E+00 +1128513,fr,1,3.750000E+00,2.865500E+00,4.691395E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.996724E+01,0.000000E+00 +1128518,fr,1,3.850000E+00,2.865500E+00,4.691395E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1128535,fr,1,3.950000E+00,2.865500E+00,4.691395E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998901E+01,-9.000000E+01 +1128960,fr,1,3.550000E+00,7.871400E+00,4.602794E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999300E+01,0.000000E+00 +1128961,fr,1,3.550000E+00,7.871400E+00,4.602794E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999300E+01,0.000000E+00 +1128962,fr,1,3.550000E+00,7.871400E+00,4.602794E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999300E+01,0.000000E+00 +1128965,fr,1,3.550000E+00,7.871400E+00,4.602794E+01,2.750000E+01,Active Shallow Crust,2.400125E+02,5.799750E+01,0.000000E+00 +1128967,fr,1,3.550000E+00,7.871400E+00,4.602794E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999292E+01,-9.000000E+01 +1128971,fr,1,3.550000E+00,7.871400E+00,4.602794E+01,2.750000E+01,Active Shallow Crust,1.288967E+02,8.999300E+01,0.000000E+00 +1128972,fr,3,3.650000E+00,7.871400E+00,4.602794E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998752E+01,0.000000E+00 +1128973,fr,1,3.650000E+00,7.871400E+00,4.602794E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998752E+01,0.000000E+00 +1128975,fr,1,3.650000E+00,7.871400E+00,4.602794E+01,5.000000E+00,Active Shallow Crust,2.400005E+02,5.801387E+01,0.000000E+00 +1128977,fr,1,3.650000E+00,7.871400E+00,4.602794E+01,2.750000E+01,Active Shallow Crust,2.400005E+02,5.801378E+01,0.000000E+00 +1128984,fr,1,3.750000E+00,7.871400E+00,4.602794E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +1128986,fr,1,3.750000E+00,7.871400E+00,4.602794E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +1128987,fr,2,3.750000E+00,7.871400E+00,4.602794E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801687E+01,0.000000E+00 +1128992,fr,1,3.750000E+00,7.871400E+00,4.602794E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998875E+01,-9.000000E+01 +1128999,fr,1,3.850000E+00,7.871400E+00,4.602794E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.799833E+01,0.000000E+00 +1129005,fr,2,3.850000E+00,7.871400E+00,4.602794E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999504E+01,0.000000E+00 +1129011,fr,1,3.950000E+00,7.871400E+00,4.602794E+01,5.000000E+00,Active Shallow Crust,2.400204E+02,5.800485E+01,0.000000E+00 +1129012,fr,1,3.950000E+00,7.871400E+00,4.602794E+01,1.500000E+01,Active Shallow Crust,2.400204E+02,5.800485E+01,0.000000E+00 +1129013,fr,1,3.950000E+00,7.871400E+00,4.602794E+01,2.750000E+01,Active Shallow Crust,2.400204E+02,5.800485E+01,0.000000E+00 +1129021,fr,1,4.050000E+00,7.871400E+00,4.602794E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998819E+01,0.000000E+00 +1129022,fr,1,4.050000E+00,7.871400E+00,4.602794E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998819E+01,0.000000E+00 +1129023,fr,1,4.050000E+00,7.871400E+00,4.602794E+01,5.000000E+00,Active Shallow Crust,2.400064E+02,5.800534E+01,0.000000E+00 +1129027,fr,1,4.050000E+00,7.871400E+00,4.602794E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998805E+01,-9.000000E+01 +1129030,fr,1,4.050000E+00,7.871400E+00,4.602794E+01,1.500000E+01,Active Shallow Crust,1.288907E+02,8.999409E+01,0.000000E+00 +1129032,fr,1,4.150000E+00,7.871400E+00,4.602794E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +1129043,fr,1,4.150000E+00,7.871400E+00,4.602794E+01,2.750000E+01,Active Shallow Crust,1.288977E+02,8.999298E+01,0.000000E+00 +1129044,fr,1,4.250000E+00,7.871400E+00,4.602794E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1129046,fr,1,4.250000E+00,7.871400E+00,4.602794E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1129066,fr,1,4.350000E+00,7.871400E+00,4.602794E+01,1.500000E+01,Active Shallow Crust,1.288987E+02,8.998250E+01,0.000000E+00 +1129158,fr,1,5.150000E+00,7.871400E+00,4.602794E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,-9.000000E+01 +1129166,fr,1,5.250000E+00,7.871400E+00,4.602794E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1129188,fr,1,5.450000E+00,7.871400E+00,4.602794E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1129191,fr,1,5.450000E+00,7.871400E+00,4.602794E+01,5.000000E+00,Active Shallow Crust,2.400284E+02,5.799845E+01,0.000000E+00 +1129228,fr,1,5.750000E+00,7.871400E+00,4.602794E+01,1.500000E+01,Active Shallow Crust,2.400407E+02,5.799936E+01,0.000000E+00 +1129440,fr,1,3.550000E+00,4.156640E+00,4.646517E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999306E+01,0.000000E+00 +1129452,fr,1,3.650000E+00,4.156640E+00,4.646517E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998762E+01,0.000000E+00 +1129512,fr,1,4.150000E+00,4.156640E+00,4.646517E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1129614,fr,1,4.950000E+00,4.156640E+00,4.646517E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,-9.000000E+01 +1129921,fr,1,3.550000E+00,6.161260E+00,4.490893E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999286E+01,0.000000E+00 +1129926,fr,1,3.550000E+00,6.161260E+00,4.490893E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999277E+01,-9.000000E+01 +1129934,fr,1,3.650000E+00,6.161260E+00,4.490893E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998727E+01,0.000000E+00 +1129941,fr,1,3.650000E+00,6.161260E+00,4.490893E+01,5.000000E+00,Active Shallow Crust,1.288996E+02,8.996349E+01,0.000000E+00 +1129956,fr,1,3.850000E+00,6.161260E+00,4.490893E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1129972,fr,1,3.950000E+00,6.161260E+00,4.490893E+01,1.500000E+01,Active Shallow Crust,2.400187E+02,5.800570E+01,0.000000E+00 +1130011,fr,1,4.250000E+00,6.161260E+00,4.490893E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,-9.000000E+01 +1130064,fr,1,4.750000E+00,6.161260E+00,4.490893E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +1130076,fr,1,4.850000E+00,6.161260E+00,4.490893E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +1130400,fr,2,3.550000E+00,4.968180E+00,5.122986E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998737E+01,0.000000E+00 +1130463,fr,1,4.050000E+00,4.968180E+00,5.122986E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.800601E+01,0.000000E+00 +1130482,fr,1,4.150000E+00,4.968180E+00,5.122986E+01,1.500000E+01,Active Shallow Crust,1.288973E+02,8.999367E+01,0.000000E+00 +1130484,fr,1,4.250000E+00,4.968180E+00,5.122986E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +1130901,fr,1,3.650000E+00,-3.051340E+00,4.464121E+01,5.000000E+00,Active Shallow Crust,1.289010E+02,8.996349E+01,0.000000E+00 +1131360,fr,1,3.550000E+00,5.406090E+00,4.689660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999311E+01,0.000000E+00 +1131361,fr,1,3.550000E+00,5.406090E+00,4.689660E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999311E+01,0.000000E+00 +1131372,fr,1,3.650000E+00,5.406090E+00,4.689660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998772E+01,0.000000E+00 +1131384,fr,1,3.750000E+00,5.406090E+00,4.689660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998905E+01,0.000000E+00 +1131393,fr,1,3.750000E+00,5.406090E+00,4.689660E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.996693E+01,0.000000E+00 +1131421,fr,1,4.050000E+00,5.406090E+00,4.689660E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998837E+01,0.000000E+00 +1131456,fr,1,4.350000E+00,5.406090E+00,4.689660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998903E+01,0.000000E+00 +1131493,fr,1,4.650000E+00,5.406090E+00,4.689660E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +1131540,fr,1,5.050000E+00,5.406090E+00,4.689660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1132321,fr,1,3.550000E+00,4.410330E+00,4.688832E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999311E+01,0.000000E+00 +1132328,fr,1,3.550000E+00,4.410330E+00,4.688832E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999303E+01,-9.000000E+01 +1132331,fr,1,3.550000E+00,4.410330E+00,4.688832E+01,2.750000E+01,Active Shallow Crust,1.288964E+02,8.999311E+01,0.000000E+00 +1132332,fr,2,3.650000E+00,4.410330E+00,4.688832E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998772E+01,0.000000E+00 +1132333,fr,1,3.650000E+00,4.410330E+00,4.688832E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998772E+01,0.000000E+00 +1132335,fr,1,3.650000E+00,4.410330E+00,4.688832E+01,5.000000E+00,Active Shallow Crust,2.400016E+02,5.801320E+01,0.000000E+00 +1132347,fr,1,3.750000E+00,4.410330E+00,4.688832E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.801799E+01,0.000000E+00 +1132353,fr,1,3.750000E+00,4.410330E+00,4.688832E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.996750E+01,0.000000E+00 +1132357,fr,1,3.850000E+00,4.410330E+00,4.688832E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +1132360,fr,2,3.850000E+00,4.410330E+00,4.688832E+01,1.500000E+01,Active Shallow Crust,2.400119E+02,5.799788E+01,0.000000E+00 +1132362,fr,1,3.850000E+00,4.410330E+00,4.688832E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,-9.000000E+01 +1132369,fr,1,3.950000E+00,4.410330E+00,4.688832E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999130E+01,0.000000E+00 +1132381,fr,1,4.050000E+00,4.410330E+00,4.688832E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998837E+01,0.000000E+00 +1132393,fr,1,4.150000E+00,4.410330E+00,4.688832E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +1132407,fr,1,4.250000E+00,4.410330E+00,4.688832E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799376E+01,0.000000E+00 +1132464,fr,1,4.750000E+00,4.410330E+00,4.688832E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +1132800,fr,1,3.550000E+00,7.756200E+00,4.522830E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999290E+01,0.000000E+00 +1132809,fr,1,3.550000E+00,7.756200E+00,4.522830E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999290E+01,0.000000E+00 +1132812,fr,1,3.650000E+00,7.756200E+00,4.522830E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998734E+01,0.000000E+00 +1132813,fr,1,3.650000E+00,7.756200E+00,4.522830E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998734E+01,0.000000E+00 +1132822,fr,1,3.650000E+00,7.756200E+00,4.522830E+01,1.500000E+01,Active Shallow Crust,1.289006E+02,8.996350E+01,0.000000E+00 +1132824,fr,1,3.750000E+00,7.756200E+00,4.522830E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +1132825,fr,1,3.750000E+00,7.756200E+00,4.522830E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +1132836,fr,1,3.850000E+00,7.756200E+00,4.522830E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1132866,fr,1,4.050000E+00,7.756200E+00,4.522830E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999192E+01,-9.000000E+01 +1132885,fr,1,4.250000E+00,7.756200E+00,4.522830E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1132980,fr,1,5.050000E+00,7.756200E+00,4.522830E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1133280,fr,4,3.550000E+00,8.333630E+00,4.763198E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998641E+01,0.000000E+00 +1133281,fr,4,3.550000E+00,8.333630E+00,4.763198E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998641E+01,0.000000E+00 +1133282,fr,3,3.550000E+00,8.333630E+00,4.763198E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998641E+01,0.000000E+00 +1133283,fr,2,3.550000E+00,8.333630E+00,4.763198E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799818E+01,0.000000E+00 +1133284,fr,1,3.550000E+00,8.333630E+00,4.763198E+01,1.500000E+01,Active Shallow Crust,2.400118E+02,5.799818E+01,0.000000E+00 +1133285,fr,1,3.550000E+00,8.333630E+00,4.763198E+01,2.750000E+01,Active Shallow Crust,2.400118E+02,5.799809E+01,0.000000E+00 +1133286,fr,1,3.550000E+00,8.333630E+00,4.763198E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998625E+01,-9.000000E+01 +1133287,fr,1,3.550000E+00,8.333630E+00,4.763198E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998625E+01,-9.000000E+01 +1133289,fr,1,3.550000E+00,8.333630E+00,4.763198E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999320E+01,0.000000E+00 +1133290,fr,1,3.550000E+00,8.333630E+00,4.763198E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.999320E+01,0.000000E+00 +1133291,fr,1,3.550000E+00,8.333630E+00,4.763198E+01,2.750000E+01,Active Shallow Crust,1.288965E+02,8.999320E+01,0.000000E+00 +1133292,fr,6,3.650000E+00,8.333630E+00,4.763198E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998788E+01,0.000000E+00 +1133293,fr,3,3.650000E+00,8.333630E+00,4.763198E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998788E+01,0.000000E+00 +1133296,fr,1,3.650000E+00,8.333630E+00,4.763198E+01,1.500000E+01,Active Shallow Crust,2.400009E+02,5.801182E+01,0.000000E+00 +1133301,fr,1,3.650000E+00,8.333630E+00,4.763198E+01,5.000000E+00,Active Shallow Crust,1.288994E+02,8.996355E+01,0.000000E+00 +1133304,fr,7,3.750000E+00,8.333630E+00,4.763198E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1133305,fr,2,3.750000E+00,8.333630E+00,4.763198E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1133307,fr,1,3.750000E+00,8.333630E+00,4.763198E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.801622E+01,0.000000E+00 +1133316,fr,3,3.850000E+00,8.333630E+00,4.763198E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +1133317,fr,2,3.850000E+00,8.333630E+00,4.763198E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +1133318,fr,1,3.850000E+00,8.333630E+00,4.763198E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +1133319,fr,1,3.850000E+00,8.333630E+00,4.763198E+01,5.000000E+00,Active Shallow Crust,2.400099E+02,5.799893E+01,0.000000E+00 +1133328,fr,2,3.950000E+00,8.333630E+00,4.763198E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +1133329,fr,1,3.950000E+00,8.333630E+00,4.763198E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +1133331,fr,1,3.950000E+00,8.333630E+00,4.763198E+01,5.000000E+00,Active Shallow Crust,2.400200E+02,5.800599E+01,0.000000E+00 +1133334,fr,1,3.950000E+00,8.333630E+00,4.763198E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999133E+01,-9.000000E+01 +1133335,fr,1,3.950000E+00,8.333630E+00,4.763198E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999133E+01,-9.000000E+01 +1133336,fr,1,3.950000E+00,8.333630E+00,4.763198E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999133E+01,-9.000000E+01 +1133337,fr,1,3.950000E+00,8.333630E+00,4.763198E+01,5.000000E+00,Active Shallow Crust,1.288980E+02,8.999571E+01,0.000000E+00 +1133340,fr,3,4.050000E+00,8.333630E+00,4.763198E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999236E+01,0.000000E+00 +1133341,fr,1,4.050000E+00,8.333630E+00,4.763198E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999236E+01,0.000000E+00 +1133346,fr,1,4.050000E+00,8.333630E+00,4.763198E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999227E+01,-9.000000E+01 +1133347,fr,1,4.050000E+00,8.333630E+00,4.763198E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999227E+01,-9.000000E+01 +1133352,fr,1,4.150000E+00,8.333630E+00,4.763198E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999319E+01,0.000000E+00 +1133355,fr,1,4.150000E+00,8.333630E+00,4.763198E+01,5.000000E+00,Active Shallow Crust,2.400096E+02,5.799762E+01,0.000000E+00 +1133364,fr,1,4.250000E+00,8.333630E+00,4.763198E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998785E+01,0.000000E+00 +1133365,fr,1,4.250000E+00,8.333630E+00,4.763198E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998785E+01,0.000000E+00 +1133370,fr,1,4.250000E+00,8.333630E+00,4.763198E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998772E+01,-9.000000E+01 +1133388,fr,1,4.450000E+00,8.333630E+00,4.763198E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1133389,fr,1,4.450000E+00,8.333630E+00,4.763198E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1133390,fr,1,4.450000E+00,8.333630E+00,4.763198E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1133391,fr,1,4.450000E+00,8.333630E+00,4.763198E+01,5.000000E+00,Active Shallow Crust,2.400060E+02,5.799439E+01,0.000000E+00 +1133394,fr,1,4.450000E+00,8.333630E+00,4.763198E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,-9.000000E+01 +1133397,fr,1,4.450000E+00,8.333630E+00,4.763198E+01,5.000000E+00,Active Shallow Crust,1.288911E+02,8.999518E+01,0.000000E+00 +1133400,fr,1,4.550000E+00,8.333630E+00,4.763198E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999140E+01,0.000000E+00 +1133412,fr,1,4.650000E+00,8.333630E+00,4.763198E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998851E+01,0.000000E+00 +1133436,fr,1,4.850000E+00,8.333630E+00,4.763198E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999087E+01,0.000000E+00 +1133520,fr,1,5.550000E+00,8.333630E+00,4.763198E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +1133556,fr,1,5.850000E+00,8.333630E+00,4.763198E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +1133760,fr,4,3.550000E+00,6.965380E+00,4.461025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999282E+01,0.000000E+00 +1133761,fr,1,3.550000E+00,6.965380E+00,4.461025E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999282E+01,0.000000E+00 +1133762,fr,1,3.550000E+00,6.965380E+00,4.461025E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999282E+01,0.000000E+00 +1133766,fr,1,3.550000E+00,6.965380E+00,4.461025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999274E+01,-9.000000E+01 +1133772,fr,1,3.650000E+00,6.965380E+00,4.461025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998721E+01,0.000000E+00 +1133773,fr,3,3.650000E+00,6.965380E+00,4.461025E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998721E+01,0.000000E+00 +1133774,fr,1,3.650000E+00,6.965380E+00,4.461025E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998721E+01,0.000000E+00 +1133776,fr,1,3.650000E+00,6.965380E+00,4.461025E+01,1.500000E+01,Active Shallow Crust,2.400019E+02,5.801219E+01,0.000000E+00 +1133784,fr,1,3.750000E+00,6.965380E+00,4.461025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +1133785,fr,1,3.750000E+00,6.965380E+00,4.461025E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +1133786,fr,1,3.750000E+00,6.965380E+00,4.461025E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +1133790,fr,2,3.750000E+00,6.965380E+00,4.461025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998846E+01,-9.000000E+01 +1133793,fr,1,3.750000E+00,6.965380E+00,4.461025E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.996746E+01,0.000000E+00 +1133796,fr,1,3.850000E+00,6.965380E+00,4.461025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +1133797,fr,1,3.850000E+00,6.965380E+00,4.461025E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +1133799,fr,1,3.850000E+00,6.965380E+00,4.461025E+01,5.000000E+00,Active Shallow Crust,2.400099E+02,5.799793E+01,0.000000E+00 +1133805,fr,1,3.850000E+00,6.965380E+00,4.461025E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999238E+01,0.000000E+00 +1133806,fr,1,3.850000E+00,6.965380E+00,4.461025E+01,1.500000E+01,Active Shallow Crust,1.288967E+02,8.999238E+01,0.000000E+00 +1133808,fr,2,3.950000E+00,6.965380E+00,4.461025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +1133820,fr,4,4.050000E+00,6.965380E+00,4.461025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999193E+01,0.000000E+00 +1133823,fr,1,4.050000E+00,6.965380E+00,4.461025E+01,5.000000E+00,Active Shallow Crust,2.400061E+02,5.800568E+01,0.000000E+00 +1133826,fr,1,4.050000E+00,6.965380E+00,4.461025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999183E+01,-9.000000E+01 +1133833,fr,1,4.150000E+00,6.965380E+00,4.461025E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1133844,fr,2,4.250000E+00,6.965380E+00,4.461025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +1133856,fr,1,4.350000E+00,6.965380E+00,4.461025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +1133857,fr,1,4.350000E+00,6.965380E+00,4.461025E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +1133874,fr,1,4.450000E+00,6.965380E+00,4.461025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +1133880,fr,1,4.550000E+00,6.965380E+00,4.461025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999092E+01,0.000000E+00 +1133892,fr,1,4.650000E+00,6.965380E+00,4.461025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1133965,fr,1,5.250000E+00,6.965380E+00,4.461025E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1133973,fr,1,5.250000E+00,6.965380E+00,4.461025E+01,5.000000E+00,Active Shallow Crust,1.288843E+02,8.998684E+01,0.000000E+00 +1134264,fr,1,3.750000E+00,5.995740E+00,4.875920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +1134276,fr,2,3.850000E+00,5.995740E+00,4.875920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +1134298,fr,1,3.950000E+00,5.995740E+00,4.875920E+01,1.500000E+01,Active Shallow Crust,1.289002E+02,8.999371E+01,0.000000E+00 +1134720,fr,1,3.550000E+00,-4.936000E-01,4.353318E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1134723,fr,2,3.550000E+00,-4.936000E-01,4.353318E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799812E+01,0.000000E+00 +1134749,fr,1,3.750000E+00,-4.936000E-01,4.353318E+01,2.750000E+01,Active Shallow Crust,2.400080E+02,5.801751E+01,0.000000E+00 +1134755,fr,1,3.750000E+00,-4.936000E-01,4.353318E+01,2.750000E+01,Active Shallow Crust,1.288968E+02,8.996738E+01,0.000000E+00 +1134756,fr,1,3.850000E+00,-4.936000E-01,4.353318E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1134759,fr,1,3.850000E+00,-4.936000E-01,4.353318E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799773E+01,0.000000E+00 +1134765,fr,1,3.850000E+00,-4.936000E-01,4.353318E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999369E+01,0.000000E+00 +1134852,fr,1,4.650000E+00,-4.936000E-01,4.353318E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1134909,fr,1,5.050000E+00,-4.936000E-01,4.353318E+01,5.000000E+00,Active Shallow Crust,1.288867E+02,8.999049E+01,0.000000E+00 +1134972,fr,1,5.650000E+00,-4.936000E-01,4.353318E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999002E+01,0.000000E+00 +1135200,fr,1,3.550000E+00,8.343610E+00,4.581705E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998595E+01,0.000000E+00 +1135212,fr,1,3.650000E+00,8.343610E+00,4.581705E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998747E+01,0.000000E+00 +1135222,fr,1,3.650000E+00,8.343610E+00,4.581705E+01,1.500000E+01,Active Shallow Crust,1.289010E+02,8.996351E+01,0.000000E+00 +1135245,fr,1,3.850000E+00,8.343610E+00,4.581705E+01,5.000000E+00,Active Shallow Crust,1.288941E+02,8.999503E+01,0.000000E+00 +1135380,fr,1,5.050000E+00,8.343610E+00,4.581705E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1135680,fr,1,3.550000E+00,2.897190E+00,4.730287E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1135695,fr,1,3.650000E+00,2.897190E+00,4.730287E+01,5.000000E+00,Active Shallow Crust,2.400005E+02,5.801337E+01,0.000000E+00 +1135704,fr,1,3.750000E+00,2.897190E+00,4.730287E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +1135788,fr,1,4.450000E+00,2.897190E+00,4.730287E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1136160,fr,1,3.550000E+00,7.718540E+00,5.034110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998713E+01,0.000000E+00 +1136167,fr,1,3.550000E+00,7.718540E+00,5.034110E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998698E+01,-9.000000E+01 +1136169,fr,1,3.550000E+00,7.718540E+00,5.034110E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.999357E+01,0.000000E+00 +1136172,fr,1,3.650000E+00,7.718540E+00,5.034110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998853E+01,0.000000E+00 +1136173,fr,2,3.650000E+00,7.718540E+00,5.034110E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998853E+01,0.000000E+00 +1136182,fr,1,3.650000E+00,7.718540E+00,5.034110E+01,1.500000E+01,Active Shallow Crust,1.288994E+02,8.996360E+01,0.000000E+00 +1136184,fr,1,3.750000E+00,7.718540E+00,5.034110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1136190,fr,1,3.750000E+00,7.718540E+00,5.034110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +1136197,fr,1,3.850000E+00,7.718540E+00,5.034110E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999089E+01,0.000000E+00 +1136204,fr,1,3.850000E+00,7.718540E+00,5.034110E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999078E+01,-9.000000E+01 +1136207,fr,2,3.850000E+00,7.718540E+00,5.034110E+01,2.750000E+01,Active Shallow Crust,1.288961E+02,8.999316E+01,0.000000E+00 +1136212,fr,1,3.950000E+00,7.718540E+00,5.034110E+01,1.500000E+01,Active Shallow Crust,2.400207E+02,5.800494E+01,0.000000E+00 +1136214,fr,1,3.950000E+00,7.718540E+00,5.034110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999178E+01,-9.000000E+01 +1136217,fr,1,3.950000E+00,7.718540E+00,5.034110E+01,5.000000E+00,Active Shallow Crust,1.288999E+02,8.999391E+01,0.000000E+00 +1136221,fr,1,4.050000E+00,7.718540E+00,5.034110E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +1136232,fr,1,4.150000E+00,7.718540E+00,5.034110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1136237,fr,1,4.150000E+00,7.718540E+00,5.034110E+01,2.750000E+01,Active Shallow Crust,2.400088E+02,5.799781E+01,0.000000E+00 +1136245,fr,1,4.250000E+00,7.718540E+00,5.034110E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999138E+01,0.000000E+00 +1136261,fr,1,4.350000E+00,7.718540E+00,5.034110E+01,2.750000E+01,Active Shallow Crust,2.400089E+02,5.799631E+01,0.000000E+00 +1136487,fr,1,6.250000E+00,7.715371E+00,5.034460E+01,5.719927E+00,Active Shallow Crust,2.400823E+02,5.800004E+01,0.000000E+00 +1136640,fr,2,3.550000E+00,9.210050E+00,4.886895E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998673E+01,0.000000E+00 +1136650,fr,1,3.550000E+00,9.210050E+00,4.886895E+01,1.500000E+01,Active Shallow Crust,1.288950E+02,8.999337E+01,0.000000E+00 +1136655,fr,1,3.650000E+00,9.210050E+00,4.886895E+01,5.000000E+00,Active Shallow Crust,2.400022E+02,5.801280E+01,0.000000E+00 +1136676,fr,1,3.850000E+00,9.210050E+00,4.886895E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999061E+01,0.000000E+00 +1136724,fr,1,4.250000E+00,9.210050E+00,4.886895E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998814E+01,0.000000E+00 +1136760,fr,1,4.550000E+00,9.210050E+00,4.886895E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999161E+01,0.000000E+00 +1136785,fr,1,4.750000E+00,9.210050E+00,4.886895E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1136802,fr,1,4.850000E+00,9.210050E+00,4.886895E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999098E+01,-9.000000E+01 +1137120,fr,1,3.550000E+00,8.073250E+00,4.446942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998561E+01,0.000000E+00 +1137132,fr,1,3.650000E+00,8.073250E+00,4.446942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998717E+01,0.000000E+00 +1137157,fr,1,3.850000E+00,8.073250E+00,4.446942E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1137181,fr,1,4.050000E+00,8.073250E+00,4.446942E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999191E+01,0.000000E+00 +1137193,fr,1,4.150000E+00,8.073250E+00,4.446942E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999279E+01,0.000000E+00 +1137205,fr,1,4.250000E+00,8.073250E+00,4.446942E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998714E+01,0.000000E+00 +1137247,fr,1,4.550000E+00,8.073250E+00,4.446942E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999079E+01,-9.000000E+01 +1137276,fr,1,4.850000E+00,8.073250E+00,4.446942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1137288,fr,1,4.950000E+00,8.073250E+00,4.446942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999139E+01,0.000000E+00 +1138086,fr,1,3.550000E+00,7.779690E+00,5.071877E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998708E+01,-9.000000E+01 +1138095,fr,2,3.650000E+00,7.779690E+00,5.071877E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801283E+01,0.000000E+00 +1138116,fr,1,3.850000E+00,7.779690E+00,5.071877E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999096E+01,0.000000E+00 +1138140,fr,1,4.050000E+00,7.779690E+00,5.071877E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +1138146,fr,1,4.050000E+00,7.779690E+00,5.071877E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,-9.000000E+01 +1138490,fr,1,6.950000E+00,7.779671E+00,5.071877E+01,1.990024E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1138560,fr,1,3.550000E+00,2.676200E+00,4.961683E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1138572,fr,1,3.650000E+00,2.676200E+00,4.961683E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +1138613,fr,1,3.950000E+00,2.676200E+00,4.961683E+01,2.750000E+01,Active Shallow Crust,2.400202E+02,5.800518E+01,0.000000E+00 +1138621,fr,1,4.050000E+00,2.676200E+00,4.961683E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +1138632,fr,1,4.150000E+00,2.676200E+00,4.961683E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1138657,fr,1,4.350000E+00,2.676200E+00,4.961683E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1139040,fr,4,3.550000E+00,5.741400E+00,4.551204E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999294E+01,0.000000E+00 +1139041,fr,2,3.550000E+00,5.741400E+00,4.551204E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999294E+01,0.000000E+00 +1139043,fr,1,3.550000E+00,5.741400E+00,4.551204E+01,5.000000E+00,Active Shallow Crust,2.400133E+02,5.799770E+01,0.000000E+00 +1139046,fr,1,3.550000E+00,5.741400E+00,4.551204E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999285E+01,-9.000000E+01 +1139050,fr,1,3.550000E+00,5.741400E+00,4.551204E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.999294E+01,0.000000E+00 +1139052,fr,4,3.650000E+00,5.741400E+00,4.551204E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998740E+01,0.000000E+00 +1139062,fr,1,3.650000E+00,5.741400E+00,4.551204E+01,1.500000E+01,Active Shallow Crust,1.289003E+02,8.996351E+01,0.000000E+00 +1139064,fr,1,3.750000E+00,5.741400E+00,4.551204E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +1139077,fr,1,3.850000E+00,5.741400E+00,4.551204E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1139091,fr,1,3.950000E+00,5.741400E+00,4.551204E+01,5.000000E+00,Active Shallow Crust,2.400202E+02,5.800459E+01,0.000000E+00 +1139092,fr,1,3.950000E+00,5.741400E+00,4.551204E+01,1.500000E+01,Active Shallow Crust,2.400202E+02,5.800459E+01,0.000000E+00 +1139097,fr,1,3.950000E+00,5.741400E+00,4.551204E+01,5.000000E+00,Active Shallow Crust,1.289016E+02,8.999331E+01,0.000000E+00 +1139100,fr,1,4.050000E+00,5.741400E+00,4.551204E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +1139113,fr,1,4.150000E+00,5.741400E+00,4.551204E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +1139139,fr,1,4.350000E+00,5.741400E+00,4.551204E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799592E+01,0.000000E+00 +1139148,fr,1,4.450000E+00,5.741400E+00,4.551204E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1139176,fr,1,4.650000E+00,5.741400E+00,4.551204E+01,1.500000E+01,Active Shallow Crust,2.400104E+02,5.799434E+01,0.000000E+00 +1139184,fr,1,4.750000E+00,5.741400E+00,4.551204E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +1139199,fr,1,4.850000E+00,5.741400E+00,4.551204E+01,5.000000E+00,Active Shallow Crust,2.400166E+02,5.800240E+01,0.000000E+00 +1139220,fr,1,5.050000E+00,5.741400E+00,4.551204E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1139268,fr,1,5.450000E+00,5.741400E+00,4.551204E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1139319,fr,1,5.850000E+00,5.741400E+00,4.551204E+01,5.000000E+00,Active Shallow Crust,2.400433E+02,5.799952E+01,0.000000E+00 +1139355,fr,1,6.150000E+00,5.741007E+00,4.551252E+01,5.097890E+00,Active Shallow Crust,2.400632E+02,5.799974E+01,0.000000E+00 +1139521,fr,1,3.550000E+00,3.588110E+00,4.715316E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1139619,fr,1,4.350000E+00,3.588110E+00,4.715316E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799611E+01,0.000000E+00 +1140006,fr,1,3.550000E+00,6.604460E+00,4.996284E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998688E+01,-9.000000E+01 +1140024,fr,1,3.750000E+00,6.604460E+00,4.996284E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1140037,fr,1,3.850000E+00,6.604460E+00,4.996284E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +1140064,fr,1,4.050000E+00,6.604460E+00,4.996284E+01,1.500000E+01,Active Shallow Crust,2.400060E+02,5.800589E+01,0.000000E+00 +1140480,fr,4,3.550000E+00,7.381950E+00,4.714107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999314E+01,0.000000E+00 +1140481,fr,3,3.550000E+00,7.381950E+00,4.714107E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999314E+01,0.000000E+00 +1140482,fr,1,3.550000E+00,7.381950E+00,4.714107E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999314E+01,0.000000E+00 +1140485,fr,1,3.550000E+00,7.381950E+00,4.714107E+01,2.750000E+01,Active Shallow Crust,2.400124E+02,5.799747E+01,0.000000E+00 +1140486,fr,1,3.550000E+00,7.381950E+00,4.714107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999306E+01,-9.000000E+01 +1140487,fr,1,3.550000E+00,7.381950E+00,4.714107E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999306E+01,-9.000000E+01 +1140492,fr,3,3.650000E+00,7.381950E+00,4.714107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998777E+01,0.000000E+00 +1140493,fr,3,3.650000E+00,7.381950E+00,4.714107E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998777E+01,0.000000E+00 +1140495,fr,5,3.650000E+00,7.381950E+00,4.714107E+01,5.000000E+00,Active Shallow Crust,2.400022E+02,5.801249E+01,0.000000E+00 +1140497,fr,1,3.650000E+00,7.381950E+00,4.714107E+01,2.750000E+01,Active Shallow Crust,2.400022E+02,5.801241E+01,0.000000E+00 +1140500,fr,1,3.650000E+00,7.381950E+00,4.714107E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998763E+01,-9.000000E+01 +1140504,fr,1,3.750000E+00,7.381950E+00,4.714107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +1140505,fr,2,3.750000E+00,7.381950E+00,4.714107E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +1140506,fr,1,3.750000E+00,7.381950E+00,4.714107E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +1140507,fr,1,3.750000E+00,7.381950E+00,4.714107E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.801836E+01,0.000000E+00 +1140511,fr,1,3.750000E+00,7.381950E+00,4.714107E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998898E+01,-9.000000E+01 +1140516,fr,1,3.850000E+00,7.381950E+00,4.714107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +1140517,fr,1,3.850000E+00,7.381950E+00,4.714107E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +1140520,fr,1,3.850000E+00,7.381950E+00,4.714107E+01,1.500000E+01,Active Shallow Crust,2.400113E+02,5.799739E+01,0.000000E+00 +1140522,fr,1,3.850000E+00,7.381950E+00,4.714107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,-9.000000E+01 +1140528,fr,3,3.950000E+00,7.381950E+00,4.714107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999134E+01,0.000000E+00 +1140534,fr,2,3.950000E+00,7.381950E+00,4.714107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999124E+01,-9.000000E+01 +1140537,fr,1,3.950000E+00,7.381950E+00,4.714107E+01,5.000000E+00,Active Shallow Crust,1.288997E+02,8.999351E+01,0.000000E+00 +1140540,fr,2,4.050000E+00,7.381950E+00,4.714107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +1140541,fr,2,4.050000E+00,7.381950E+00,4.714107E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +1140542,fr,1,4.050000E+00,7.381950E+00,4.714107E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +1140552,fr,2,4.150000E+00,7.381950E+00,4.714107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1140558,fr,1,4.150000E+00,7.381950E+00,4.714107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,-9.000000E+01 +1140570,fr,1,4.250000E+00,7.381950E+00,4.714107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,-9.000000E+01 +1140573,fr,1,4.250000E+00,7.381950E+00,4.714107E+01,5.000000E+00,Active Shallow Crust,1.288951E+02,8.998042E+01,0.000000E+00 +1140576,fr,2,4.350000E+00,7.381950E+00,4.714107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +1140577,fr,1,4.350000E+00,7.381950E+00,4.714107E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +1140579,fr,1,4.350000E+00,7.381950E+00,4.714107E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799610E+01,0.000000E+00 +1140586,fr,1,4.350000E+00,7.381950E+00,4.714107E+01,1.500000E+01,Active Shallow Crust,1.288984E+02,8.998255E+01,0.000000E+00 +1140588,fr,1,4.450000E+00,7.381950E+00,4.714107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1140591,fr,1,4.450000E+00,7.381950E+00,4.714107E+01,5.000000E+00,Active Shallow Crust,2.400056E+02,5.799453E+01,0.000000E+00 +1140597,fr,1,4.450000E+00,7.381950E+00,4.714107E+01,5.000000E+00,Active Shallow Crust,1.288921E+02,8.999392E+01,0.000000E+00 +1140601,fr,1,4.550000E+00,7.381950E+00,4.714107E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998915E+01,0.000000E+00 +1140612,fr,2,4.650000E+00,7.381950E+00,4.714107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1140618,fr,1,4.650000E+00,7.381950E+00,4.714107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,-9.000000E+01 +1140622,fr,1,4.650000E+00,7.381950E+00,4.714107E+01,1.500000E+01,Active Shallow Crust,1.288907E+02,8.998724E+01,0.000000E+00 +1140624,fr,1,4.750000E+00,7.381950E+00,4.714107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +1140627,fr,1,4.750000E+00,7.381950E+00,4.714107E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.800449E+01,0.000000E+00 +1140640,fr,1,4.850000E+00,7.381950E+00,4.714107E+01,1.500000E+01,Active Shallow Crust,2.400175E+02,5.800248E+01,0.000000E+00 +1140681,fr,1,5.150000E+00,7.381950E+00,4.714107E+01,5.000000E+00,Active Shallow Crust,1.288831E+02,8.999125E+01,0.000000E+00 +1140708,fr,1,5.450000E+00,7.381950E+00,4.714107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1140721,fr,1,5.550000E+00,7.381950E+00,4.714107E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +1140960,fr,1,3.550000E+00,-2.348800E-01,4.519322E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1140972,fr,1,3.650000E+00,-2.348800E-01,4.519322E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1140984,fr,1,3.750000E+00,-2.348800E-01,4.519322E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1140997,fr,1,3.850000E+00,-2.348800E-01,4.519322E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1141028,fr,1,4.050000E+00,-2.348800E-01,4.519322E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +1141032,fr,1,4.150000E+00,-2.348800E-01,4.519322E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1141107,fr,1,4.750000E+00,-2.348800E-01,4.519322E+01,5.000000E+00,Active Shallow Crust,2.400070E+02,5.800440E+01,0.000000E+00 +1141441,fr,1,3.550000E+00,1.031430E+00,4.609994E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1141444,fr,1,3.550000E+00,1.031430E+00,4.609994E+01,1.500000E+01,Active Shallow Crust,2.400120E+02,5.799820E+01,0.000000E+00 +1141450,fr,1,3.550000E+00,1.031430E+00,4.609994E+01,1.500000E+01,Active Shallow Crust,1.288964E+02,8.999388E+01,0.000000E+00 +1141458,fr,1,3.650000E+00,1.031430E+00,4.609994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,-9.000000E+01 +1141476,fr,1,3.850000E+00,1.031430E+00,4.609994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1141488,fr,1,3.950000E+00,1.031430E+00,4.609994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1141500,fr,1,4.050000E+00,1.031430E+00,4.609994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1141503,fr,1,4.050000E+00,1.031430E+00,4.609994E+01,5.000000E+00,Active Shallow Crust,2.400060E+02,5.800581E+01,0.000000E+00 +1141525,fr,1,4.250000E+00,1.031430E+00,4.609994E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1141549,fr,1,4.450000E+00,1.031430E+00,4.609994E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1141554,fr,1,4.450000E+00,1.031430E+00,4.609994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +1142497,fr,1,4.350000E+00,-1.574560E+00,5.072146E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1142520,fr,1,4.550000E+00,-1.574560E+00,5.072146E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1142784,fr,1,6.750000E+00,-1.574543E+00,5.072146E+01,1.199416E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +1142880,fr,3,3.550000E+00,-2.137740E+00,4.692879E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +1142881,fr,3,3.550000E+00,-2.137740E+00,4.692879E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +1142883,fr,2,3.550000E+00,-2.137740E+00,4.692879E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799819E+01,0.000000E+00 +1142892,fr,2,3.650000E+00,-2.137740E+00,4.692879E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999079E+01,0.000000E+00 +1142893,fr,1,3.650000E+00,-2.137740E+00,4.692879E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999079E+01,0.000000E+00 +1142895,fr,1,3.650000E+00,-2.137740E+00,4.692879E+01,5.000000E+00,Active Shallow Crust,2.400005E+02,5.801350E+01,0.000000E+00 +1142898,fr,1,3.650000E+00,-2.137740E+00,4.692879E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,-9.000000E+01 +1142905,fr,1,3.750000E+00,-2.137740E+00,4.692879E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998906E+01,0.000000E+00 +1142908,fr,1,3.750000E+00,-2.137740E+00,4.692879E+01,1.500000E+01,Active Shallow Crust,2.400086E+02,5.801763E+01,0.000000E+00 +1142938,fr,1,3.950000E+00,-2.137740E+00,4.692879E+01,1.500000E+01,Active Shallow Crust,1.289000E+02,8.999348E+01,0.000000E+00 +1142940,fr,1,4.050000E+00,-2.137740E+00,4.692879E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +1142944,fr,1,4.050000E+00,-2.137740E+00,4.692879E+01,1.500000E+01,Active Shallow Crust,2.400063E+02,5.800594E+01,0.000000E+00 +1142962,fr,1,4.150000E+00,-2.137740E+00,4.692879E+01,1.500000E+01,Active Shallow Crust,1.288979E+02,8.999310E+01,0.000000E+00 +1142967,fr,1,4.250000E+00,-2.137740E+00,4.692879E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799405E+01,0.000000E+00 +1142975,fr,1,4.250000E+00,-2.137740E+00,4.692879E+01,2.750000E+01,Active Shallow Crust,1.288946E+02,8.998070E+01,0.000000E+00 +1142976,fr,1,4.350000E+00,-2.137740E+00,4.692879E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +1142986,fr,1,4.350000E+00,-2.137740E+00,4.692879E+01,1.500000E+01,Active Shallow Crust,1.288978E+02,8.998280E+01,0.000000E+00 +1143000,fr,1,4.550000E+00,-2.137740E+00,4.692879E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1143078,fr,1,5.150000E+00,-2.137740E+00,4.692879E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +1143366,fr,1,3.550000E+00,4.532000E+00,4.805602E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999318E+01,-9.000000E+01 +1143382,fr,1,3.650000E+00,4.532000E+00,4.805602E+01,1.500000E+01,Active Shallow Crust,1.289010E+02,8.996294E+01,0.000000E+00 +1143385,fr,1,3.750000E+00,4.532000E+00,4.805602E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +1143408,fr,1,3.950000E+00,4.532000E+00,4.805602E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999149E+01,0.000000E+00 +1143450,fr,1,4.250000E+00,4.532000E+00,4.805602E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999086E+01,-9.000000E+01 +1143456,fr,1,4.350000E+00,4.532000E+00,4.805602E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1143501,fr,1,4.650000E+00,4.532000E+00,4.805602E+01,5.000000E+00,Active Shallow Crust,1.288904E+02,8.998728E+01,0.000000E+00 +1143840,fr,1,3.550000E+00,1.683700E+00,4.971012E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1143843,fr,1,3.550000E+00,1.683700E+00,4.971012E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799809E+01,0.000000E+00 +1143865,fr,2,3.750000E+00,1.683700E+00,4.971012E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +1143880,fr,1,3.850000E+00,1.683700E+00,4.971012E+01,1.500000E+01,Active Shallow Crust,2.400110E+02,5.799798E+01,0.000000E+00 +1143900,fr,1,4.050000E+00,1.683700E+00,4.971012E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1143912,fr,1,4.150000E+00,1.683700E+00,4.971012E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1143918,fr,1,4.150000E+00,1.683700E+00,4.971012E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,-9.000000E+01 +1143922,fr,1,4.150000E+00,1.683700E+00,4.971012E+01,1.500000E+01,Active Shallow Crust,1.288970E+02,8.999387E+01,0.000000E+00 +1144044,fr,1,5.250000E+00,1.683700E+00,4.971012E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1144323,fr,1,3.550000E+00,-8.574600E-01,4.970984E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799823E+01,0.000000E+00 +1144344,fr,1,3.750000E+00,-8.574600E-01,4.970984E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +1144380,fr,1,4.050000E+00,-8.574600E-01,4.970984E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1144398,fr,1,4.150000E+00,-8.574600E-01,4.970984E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,-9.000000E+01 +1144442,fr,1,4.550000E+00,-8.574600E-01,4.970984E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1144573,fr,1,5.650000E+00,-8.574600E-01,4.970984E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1144843,fr,1,3.850000E+00,-4.872280E+00,4.720047E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,-9.000000E+01 +1145280,fr,3,3.550000E+00,7.429050E+00,4.439860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999280E+01,0.000000E+00 +1145281,fr,3,3.550000E+00,7.429050E+00,4.439860E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999280E+01,0.000000E+00 +1145283,fr,3,3.550000E+00,7.429050E+00,4.439860E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799834E+01,0.000000E+00 +1145284,fr,1,3.550000E+00,7.429050E+00,4.439860E+01,1.500000E+01,Active Shallow Crust,2.400112E+02,5.799834E+01,0.000000E+00 +1145285,fr,1,3.550000E+00,7.429050E+00,4.439860E+01,2.750000E+01,Active Shallow Crust,2.400112E+02,5.799824E+01,0.000000E+00 +1145286,fr,1,3.550000E+00,7.429050E+00,4.439860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999271E+01,-9.000000E+01 +1145289,fr,3,3.550000E+00,7.429050E+00,4.439860E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.999640E+01,0.000000E+00 +1145290,fr,1,3.550000E+00,7.429050E+00,4.439860E+01,1.500000E+01,Active Shallow Crust,1.288950E+02,8.999640E+01,0.000000E+00 +1145292,fr,8,3.650000E+00,7.429050E+00,4.439860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998716E+01,0.000000E+00 +1145293,fr,1,3.650000E+00,7.429050E+00,4.439860E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998716E+01,0.000000E+00 +1145294,fr,1,3.650000E+00,7.429050E+00,4.439860E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998716E+01,0.000000E+00 +1145300,fr,1,3.650000E+00,7.429050E+00,4.439860E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998701E+01,-9.000000E+01 +1145301,fr,1,3.650000E+00,7.429050E+00,4.439860E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.996349E+01,0.000000E+00 +1145304,fr,6,3.750000E+00,7.429050E+00,4.439860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +1145305,fr,4,3.750000E+00,7.429050E+00,4.439860E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +1145307,fr,3,3.750000E+00,7.429050E+00,4.439860E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.801780E+01,0.000000E+00 +1145308,fr,1,3.750000E+00,7.429050E+00,4.439860E+01,1.500000E+01,Active Shallow Crust,2.400082E+02,5.801780E+01,0.000000E+00 +1145309,fr,1,3.750000E+00,7.429050E+00,4.439860E+01,2.750000E+01,Active Shallow Crust,2.400082E+02,5.801780E+01,0.000000E+00 +1145310,fr,1,3.750000E+00,7.429050E+00,4.439860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998842E+01,-9.000000E+01 +1145316,fr,4,3.850000E+00,7.429050E+00,4.439860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1145317,fr,1,3.850000E+00,7.429050E+00,4.439860E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1145318,fr,1,3.850000E+00,7.429050E+00,4.439860E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1145325,fr,2,3.850000E+00,7.429050E+00,4.439860E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999490E+01,0.000000E+00 +1145328,fr,4,3.950000E+00,7.429050E+00,4.439860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +1145329,fr,1,3.950000E+00,7.429050E+00,4.439860E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +1145331,fr,3,3.950000E+00,7.429050E+00,4.439860E+01,5.000000E+00,Active Shallow Crust,2.400186E+02,5.800566E+01,0.000000E+00 +1145334,fr,1,3.950000E+00,7.429050E+00,4.439860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999080E+01,-9.000000E+01 +1145340,fr,3,4.050000E+00,7.429050E+00,4.439860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999190E+01,0.000000E+00 +1145341,fr,1,4.050000E+00,7.429050E+00,4.439860E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999190E+01,0.000000E+00 +1145352,fr,5,4.150000E+00,7.429050E+00,4.439860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +1145354,fr,1,4.150000E+00,7.429050E+00,4.439860E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +1145355,fr,2,4.150000E+00,7.429050E+00,4.439860E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.799718E+01,0.000000E+00 +1145361,fr,1,4.150000E+00,7.429050E+00,4.439860E+01,5.000000E+00,Active Shallow Crust,1.288980E+02,8.999278E+01,0.000000E+00 +1145364,fr,2,4.250000E+00,7.429050E+00,4.439860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +1145365,fr,1,4.250000E+00,7.429050E+00,4.439860E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +1145366,fr,1,4.250000E+00,7.429050E+00,4.439860E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +1145373,fr,1,4.250000E+00,7.429050E+00,4.439860E+01,5.000000E+00,Active Shallow Crust,1.288944E+02,8.998087E+01,0.000000E+00 +1145376,fr,2,4.350000E+00,7.429050E+00,4.439860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999139E+01,0.000000E+00 +1145378,fr,1,4.350000E+00,7.429050E+00,4.439860E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999139E+01,0.000000E+00 +1145387,fr,1,4.350000E+00,7.429050E+00,4.439860E+01,2.750000E+01,Active Shallow Crust,1.288974E+02,8.998295E+01,0.000000E+00 +1145388,fr,3,4.450000E+00,7.429050E+00,4.439860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1145400,fr,1,4.550000E+00,7.429050E+00,4.439860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1145401,fr,2,4.550000E+00,7.429050E+00,4.439860E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1145412,fr,1,4.650000E+00,7.429050E+00,4.439860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1145416,fr,1,4.650000E+00,7.429050E+00,4.439860E+01,1.500000E+01,Active Shallow Crust,2.400103E+02,5.799392E+01,0.000000E+00 +1145421,fr,1,4.650000E+00,7.429050E+00,4.439860E+01,5.000000E+00,Active Shallow Crust,1.288918E+02,8.998711E+01,0.000000E+00 +1145424,fr,1,4.750000E+00,7.429050E+00,4.439860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +1145436,fr,1,4.850000E+00,7.429050E+00,4.439860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +1145448,fr,1,4.950000E+00,7.429050E+00,4.439860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1145472,fr,1,5.150000E+00,7.429050E+00,4.439860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1145496,fr,1,5.350000E+00,7.429050E+00,4.439860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1145619,fr,1,6.350000E+00,7.423473E+00,4.440550E+01,6.417864E+00,Active Shallow Crust,2.400763E+02,5.800008E+01,0.000000E+00 +1145766,fr,1,3.550000E+00,1.214400E-01,4.400065E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +1145778,fr,1,3.650000E+00,1.214400E-01,4.400065E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +1145784,fr,2,3.750000E+00,1.214400E-01,4.400065E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1145826,fr,1,4.050000E+00,1.214400E-01,4.400065E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1145838,fr,1,4.150000E+00,1.214400E-01,4.400065E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +1145844,fr,1,4.250000E+00,1.214400E-01,4.400065E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1146276,fr,1,3.850000E+00,5.219430E+00,4.131075E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1146297,fr,1,3.950000E+00,5.219430E+00,4.131075E+01,5.000000E+00,Active Shallow Crust,1.288997E+02,8.999522E+01,0.000000E+00 +1146318,fr,1,4.150000E+00,5.219430E+00,4.131075E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998848E+01,-9.000000E+01 +1146409,fr,1,4.950000E+00,5.219430E+00,4.131075E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +1146732,fr,1,3.650000E+00,-2.845270E+00,4.507842E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +1146733,fr,1,3.650000E+00,-2.845270E+00,4.507842E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +1147200,fr,2,3.550000E+00,2.673270E+00,4.624014E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +1147201,fr,1,3.550000E+00,2.673270E+00,4.624014E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +1147202,fr,1,3.550000E+00,2.673270E+00,4.624014E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +1147204,fr,1,3.550000E+00,2.673270E+00,4.624014E+01,1.500000E+01,Active Shallow Crust,2.400121E+02,5.799870E+01,0.000000E+00 +1147209,fr,2,3.550000E+00,2.673270E+00,4.624014E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999303E+01,0.000000E+00 +1147212,fr,2,3.650000E+00,2.673270E+00,4.624014E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +1147215,fr,1,3.650000E+00,2.673270E+00,4.624014E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801292E+01,0.000000E+00 +1147225,fr,1,3.750000E+00,2.673270E+00,4.624014E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998892E+01,0.000000E+00 +1147236,fr,1,3.850000E+00,2.673270E+00,4.624014E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1147248,fr,1,3.950000E+00,2.673270E+00,4.624014E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998900E+01,0.000000E+00 +1147250,fr,1,3.950000E+00,2.673270E+00,4.624014E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998900E+01,0.000000E+00 +1147253,fr,1,3.950000E+00,2.673270E+00,4.624014E+01,2.750000E+01,Active Shallow Crust,2.400197E+02,5.800489E+01,0.000000E+00 +1147272,fr,2,4.150000E+00,2.673270E+00,4.624014E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1147273,fr,1,4.150000E+00,2.673270E+00,4.624014E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1147275,fr,1,4.150000E+00,2.673270E+00,4.624014E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799706E+01,0.000000E+00 +1147278,fr,1,4.150000E+00,2.673270E+00,4.624014E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,-9.000000E+01 +1147288,fr,1,4.250000E+00,2.673270E+00,4.624014E+01,1.500000E+01,Active Shallow Crust,2.400076E+02,5.799398E+01,0.000000E+00 +1147298,fr,1,4.350000E+00,2.673270E+00,4.624014E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +1147303,fr,1,4.350000E+00,2.673270E+00,4.624014E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,-9.000000E+01 +1147356,fr,1,4.850000E+00,2.673270E+00,4.624014E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1147369,fr,1,4.950000E+00,2.673270E+00,4.624014E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1147682,fr,1,3.550000E+00,2.627890E+00,4.987491E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1147692,fr,1,3.650000E+00,2.627890E+00,4.987491E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999131E+01,0.000000E+00 +1147704,fr,1,3.750000E+00,2.627890E+00,4.987491E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1147719,fr,1,3.850000E+00,2.627890E+00,4.987491E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799814E+01,0.000000E+00 +1147742,fr,1,4.050000E+00,2.627890E+00,4.987491E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +1147743,fr,1,4.050000E+00,2.627890E+00,4.987491E+01,5.000000E+00,Active Shallow Crust,2.400065E+02,5.800579E+01,0.000000E+00 +1147750,fr,1,4.050000E+00,2.627890E+00,4.987491E+01,1.500000E+01,Active Shallow Crust,1.288903E+02,8.999361E+01,0.000000E+00 +1147765,fr,1,4.250000E+00,2.627890E+00,4.987491E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +1148196,fr,1,3.850000E+00,2.011400E+00,5.293868E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +1148640,fr,2,3.550000E+00,-1.528490E+00,4.926662E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1148652,fr,1,3.650000E+00,-1.528490E+00,4.926662E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +1148653,fr,1,3.650000E+00,-1.528490E+00,4.926662E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +1148660,fr,1,3.650000E+00,-1.528490E+00,4.926662E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,-9.000000E+01 +1148685,fr,2,3.850000E+00,-1.528490E+00,4.926662E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999360E+01,0.000000E+00 +1148742,fr,1,4.350000E+00,-1.528490E+00,4.926662E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +1148754,fr,1,4.450000E+00,-1.528490E+00,4.926662E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +1148761,fr,1,4.550000E+00,-1.528490E+00,4.926662E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1148922,fr,1,5.850000E+00,-1.528490E+00,4.926662E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +1148953,fr,1,6.150000E+00,-1.528490E+00,4.926662E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1149120,fr,2,3.550000E+00,3.487300E+00,4.361688E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998905E+01,0.000000E+00 +1149138,fr,1,3.650000E+00,3.487300E+00,4.361688E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,-9.000000E+01 +1149159,fr,1,3.850000E+00,3.487300E+00,4.361688E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.799783E+01,0.000000E+00 +1149210,fr,1,4.250000E+00,3.487300E+00,4.361688E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +1149216,fr,1,4.350000E+00,3.487300E+00,4.361688E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1149672,fr,1,4.150000E+00,8.164600E+00,4.461183E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999281E+01,0.000000E+00 +1150082,fr,1,3.550000E+00,1.987500E+00,4.111067E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +1150083,fr,1,3.550000E+00,1.987500E+00,4.111067E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799815E+01,0.000000E+00 +1150086,fr,1,3.550000E+00,1.987500E+00,4.111067E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,-9.000000E+01 +1150092,fr,1,3.650000E+00,1.987500E+00,4.111067E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1150094,fr,1,3.650000E+00,1.987500E+00,4.111067E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1150102,fr,1,3.650000E+00,1.987500E+00,4.111067E+01,1.500000E+01,Active Shallow Crust,1.289009E+02,8.996357E+01,0.000000E+00 +1150105,fr,1,3.750000E+00,1.987500E+00,4.111067E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +1150106,fr,1,3.750000E+00,1.987500E+00,4.111067E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +1150141,fr,2,4.050000E+00,1.987500E+00,4.111067E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1150155,fr,1,4.150000E+00,1.987500E+00,4.111067E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.799721E+01,0.000000E+00 +1150176,fr,1,4.350000E+00,1.987500E+00,4.111067E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1150177,fr,1,4.350000E+00,1.987500E+00,4.111067E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1150187,fr,1,4.350000E+00,1.987500E+00,4.111067E+01,2.750000E+01,Active Shallow Crust,1.288987E+02,8.998284E+01,0.000000E+00 +1150188,fr,1,4.450000E+00,1.987500E+00,4.111067E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1150207,fr,1,4.550000E+00,1.987500E+00,4.111067E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,-9.000000E+01 +1150213,fr,1,4.650000E+00,1.987500E+00,4.111067E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1150311,fr,1,5.450000E+00,1.987500E+00,4.111067E+01,5.000000E+00,Active Shallow Crust,2.400208E+02,5.800115E+01,0.000000E+00 +1150609,fr,1,3.950000E+00,5.706380E+00,4.641912E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +1150782,fr,1,5.350000E+00,5.706380E+00,4.641912E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,-9.000000E+01 +1151041,fr,1,3.550000E+00,8.916040E+00,4.934448E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998686E+01,0.000000E+00 +1151052,fr,2,3.650000E+00,8.916040E+00,4.934448E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998829E+01,0.000000E+00 +1151061,fr,1,3.650000E+00,8.916040E+00,4.934448E+01,5.000000E+00,Active Shallow Crust,1.289027E+02,8.996220E+01,0.000000E+00 +1151076,fr,1,3.850000E+00,8.916040E+00,4.934448E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +1151082,fr,1,3.850000E+00,8.916040E+00,4.934448E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,-9.000000E+01 +1151126,fr,1,4.250000E+00,8.916040E+00,4.934448E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998826E+01,0.000000E+00 +1151244,fr,2,5.250000E+00,8.916040E+00,4.934448E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +1151520,fr,1,3.550000E+00,8.170280E+00,4.799881E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998650E+01,0.000000E+00 +1151526,fr,1,3.550000E+00,8.170280E+00,4.799881E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998635E+01,-9.000000E+01 +1151529,fr,1,3.550000E+00,8.170280E+00,4.799881E+01,5.000000E+00,Active Shallow Crust,1.288944E+02,8.999326E+01,0.000000E+00 +1151532,fr,2,3.650000E+00,8.170280E+00,4.799881E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998797E+01,0.000000E+00 +1151535,fr,1,3.650000E+00,8.170280E+00,4.799881E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801380E+01,0.000000E+00 +1151540,fr,1,3.650000E+00,8.170280E+00,4.799881E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998783E+01,-9.000000E+01 +1151544,fr,1,3.750000E+00,8.170280E+00,4.799881E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998928E+01,0.000000E+00 +1151545,fr,1,3.750000E+00,8.170280E+00,4.799881E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998928E+01,0.000000E+00 +1151556,fr,1,3.850000E+00,8.170280E+00,4.799881E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +1151558,fr,1,3.850000E+00,8.170280E+00,4.799881E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +1151560,fr,1,3.850000E+00,8.170280E+00,4.799881E+01,1.500000E+01,Active Shallow Crust,2.400120E+02,5.799766E+01,0.000000E+00 +1151568,fr,1,3.950000E+00,8.170280E+00,4.799881E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999149E+01,0.000000E+00 +1151578,fr,1,3.950000E+00,8.170280E+00,4.799881E+01,1.500000E+01,Active Shallow Crust,1.289026E+02,8.999149E+01,0.000000E+00 +1151628,fr,2,4.450000E+00,8.170280E+00,4.799881E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1151652,fr,1,4.650000E+00,8.170280E+00,4.799881E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +1151749,fr,1,5.450000E+00,8.170280E+00,4.799881E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +1152000,fr,1,3.550000E+00,5.841830E+00,4.274023E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999259E+01,0.000000E+00 +1152480,fr,1,3.550000E+00,-1.308550E+00,4.928198E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1152492,fr,1,3.650000E+00,-1.308550E+00,4.928198E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +1152506,fr,1,3.750000E+00,-1.308550E+00,4.928198E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +1152513,fr,1,3.750000E+00,-1.308550E+00,4.928198E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.996730E+01,0.000000E+00 +1152516,fr,1,3.850000E+00,-1.308550E+00,4.928198E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1152532,fr,1,3.950000E+00,-1.308550E+00,4.928198E+01,1.500000E+01,Active Shallow Crust,2.400203E+02,5.800506E+01,0.000000E+00 +1152534,fr,1,3.950000E+00,-1.308550E+00,4.928198E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,-9.000000E+01 +1152537,fr,1,3.950000E+00,-1.308550E+00,4.928198E+01,5.000000E+00,Active Shallow Crust,1.288998E+02,8.999377E+01,0.000000E+00 +1152540,fr,1,4.050000E+00,-1.308550E+00,4.928198E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1152552,fr,1,4.150000E+00,-1.308550E+00,4.928198E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1152555,fr,1,4.150000E+00,-1.308550E+00,4.928198E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.799747E+01,0.000000E+00 +1152576,fr,1,4.350000E+00,-1.308550E+00,4.928198E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1152960,fr,4,3.550000E+00,6.825560E+00,4.784595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999323E+01,0.000000E+00 +1152966,fr,1,3.550000E+00,6.825560E+00,4.784595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999316E+01,-9.000000E+01 +1152972,fr,1,3.650000E+00,6.825560E+00,4.784595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998794E+01,0.000000E+00 +1152977,fr,1,3.650000E+00,6.825560E+00,4.784595E+01,2.750000E+01,Active Shallow Crust,2.400017E+02,5.801257E+01,0.000000E+00 +1152984,fr,2,3.750000E+00,6.825560E+00,4.784595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +1152991,fr,1,3.750000E+00,6.825560E+00,4.784595E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998912E+01,-9.000000E+01 +1152999,fr,1,3.850000E+00,6.825560E+00,4.784595E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799791E+01,0.000000E+00 +1153000,fr,1,3.850000E+00,6.825560E+00,4.784595E+01,1.500000E+01,Active Shallow Crust,2.400112E+02,5.799791E+01,0.000000E+00 +1153006,fr,1,3.850000E+00,6.825560E+00,4.784595E+01,1.500000E+01,Active Shallow Crust,1.288966E+02,8.999281E+01,0.000000E+00 +1153012,fr,1,3.950000E+00,6.825560E+00,4.784595E+01,1.500000E+01,Active Shallow Crust,2.400197E+02,5.800523E+01,0.000000E+00 +1153017,fr,1,3.950000E+00,6.825560E+00,4.784595E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.999360E+01,0.000000E+00 +1153020,fr,1,4.050000E+00,6.825560E+00,4.784595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998858E+01,0.000000E+00 +1153032,fr,1,4.150000E+00,6.825560E+00,4.784595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1153034,fr,1,4.150000E+00,6.825560E+00,4.784595E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1153037,fr,1,4.150000E+00,6.825560E+00,4.784595E+01,2.750000E+01,Active Shallow Crust,2.400088E+02,5.799739E+01,0.000000E+00 +1153069,fr,1,4.450000E+00,6.825560E+00,4.784595E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1153080,fr,1,4.550000E+00,6.825560E+00,4.784595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +1153095,fr,1,4.650000E+00,6.825560E+00,4.784595E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799441E+01,0.000000E+00 +1153218,fr,1,5.650000E+00,6.825560E+00,4.784595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,-9.000000E+01 +1153312,fr,1,6.450000E+00,6.825560E+00,4.784595E+01,1.500000E+01,Active Shallow Crust,2.400962E+02,5.799911E+01,0.000000E+00 +1153920,fr,2,3.550000E+00,4.222650E+00,4.425366E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999277E+01,0.000000E+00 +1153923,fr,1,3.550000E+00,4.222650E+00,4.425366E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799926E+01,0.000000E+00 +1153951,fr,1,3.750000E+00,4.222650E+00,4.425366E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998840E+01,-9.000000E+01 +1153956,fr,3,3.850000E+00,4.222650E+00,4.425366E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1153960,fr,1,3.850000E+00,4.222650E+00,4.425366E+01,1.500000E+01,Active Shallow Crust,2.400109E+02,5.799756E+01,0.000000E+00 +1154004,fr,2,4.250000E+00,4.222650E+00,4.425366E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +1154028,fr,1,4.450000E+00,4.222650E+00,4.425366E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1154031,fr,1,4.450000E+00,4.222650E+00,4.425366E+01,5.000000E+00,Active Shallow Crust,2.400042E+02,5.799498E+01,0.000000E+00 +1154037,fr,1,4.450000E+00,4.222650E+00,4.425366E+01,5.000000E+00,Active Shallow Crust,1.288926E+02,8.999359E+01,0.000000E+00 +1154412,fr,1,3.650000E+00,4.596160E+00,5.190683E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +1154449,fr,1,3.950000E+00,4.596160E+00,5.190683E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998822E+01,0.000000E+00 +1154937,fr,1,3.950000E+00,5.862870E+00,4.886827E+01,5.000000E+00,Active Shallow Crust,1.288993E+02,8.999372E+01,0.000000E+00 +1154996,fr,1,4.450000E+00,5.862870E+00,4.886827E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999048E+01,-9.000000E+01 +1155036,fr,1,4.850000E+00,5.862870E+00,4.886827E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +1155037,fr,1,4.850000E+00,5.862870E+00,4.886827E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +1155360,fr,1,3.550000E+00,4.561090E+00,5.031442E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998712E+01,0.000000E+00 +1155363,fr,1,3.550000E+00,4.561090E+00,5.031442E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.799833E+01,0.000000E+00 +1155364,fr,1,3.550000E+00,4.561090E+00,5.031442E+01,1.500000E+01,Active Shallow Crust,2.400127E+02,5.799833E+01,0.000000E+00 +1155366,fr,1,3.550000E+00,4.561090E+00,5.031442E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998697E+01,-9.000000E+01 +1155372,fr,3,3.650000E+00,4.561090E+00,5.031442E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998853E+01,0.000000E+00 +1155373,fr,1,3.650000E+00,4.561090E+00,5.031442E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998853E+01,0.000000E+00 +1155385,fr,1,3.750000E+00,4.561090E+00,5.031442E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1155387,fr,1,3.750000E+00,4.561090E+00,5.031442E+01,5.000000E+00,Active Shallow Crust,2.400096E+02,5.801749E+01,0.000000E+00 +1155397,fr,1,3.850000E+00,4.561090E+00,5.031442E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1155398,fr,1,3.850000E+00,4.561090E+00,5.031442E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1155408,fr,1,3.950000E+00,4.561090E+00,5.031442E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999187E+01,0.000000E+00 +1155414,fr,2,3.950000E+00,4.561090E+00,5.031442E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999178E+01,-9.000000E+01 +1155420,fr,1,4.050000E+00,4.561090E+00,5.031442E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +1155423,fr,1,4.050000E+00,4.561090E+00,5.031442E+01,5.000000E+00,Active Shallow Crust,2.400064E+02,5.800622E+01,0.000000E+00 +1155433,fr,1,4.150000E+00,4.561090E+00,5.031442E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +1155456,fr,1,4.350000E+00,4.561090E+00,5.031442E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1155480,fr,1,4.550000E+00,4.561090E+00,5.031442E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1155493,fr,1,4.650000E+00,4.561090E+00,5.031442E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +1155516,fr,1,4.850000E+00,4.561090E+00,5.031442E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1155840,fr,1,3.550000E+00,2.144770E+00,4.459372E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +1155841,fr,1,3.550000E+00,2.144770E+00,4.459372E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +1155864,fr,1,3.750000E+00,2.144770E+00,4.459372E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +1155868,fr,1,3.750000E+00,2.144770E+00,4.459372E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.801753E+01,0.000000E+00 +1155913,fr,1,4.150000E+00,2.144770E+00,4.459372E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1156008,fr,1,4.950000E+00,2.144770E+00,4.459372E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1156059,fr,1,5.350000E+00,2.144770E+00,4.459372E+01,5.000000E+00,Active Shallow Crust,2.400237E+02,5.799767E+01,0.000000E+00 +1156137,fr,1,5.950000E+00,2.144770E+00,4.459372E+01,5.000000E+00,Active Shallow Crust,1.288669E+02,8.999015E+01,0.000000E+00 +1156320,fr,2,3.550000E+00,6.401710E+00,4.401228E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999274E+01,0.000000E+00 +1156321,fr,1,3.550000E+00,6.401710E+00,4.401228E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999274E+01,0.000000E+00 +1156326,fr,1,3.550000E+00,6.401710E+00,4.401228E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999266E+01,-9.000000E+01 +1156329,fr,1,3.550000E+00,6.401710E+00,4.401228E+01,5.000000E+00,Active Shallow Crust,1.288975E+02,8.999275E+01,0.000000E+00 +1156332,fr,2,3.650000E+00,6.401710E+00,4.401228E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998708E+01,0.000000E+00 +1156339,fr,1,3.650000E+00,6.401710E+00,4.401228E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998692E+01,-9.000000E+01 +1156344,fr,1,3.750000E+00,6.401710E+00,4.401228E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998848E+01,0.000000E+00 +1156347,fr,1,3.750000E+00,6.401710E+00,4.401228E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.801819E+01,0.000000E+00 +1156365,fr,1,3.850000E+00,6.401710E+00,4.401228E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.999230E+01,0.000000E+00 +1156368,fr,2,3.950000E+00,6.401710E+00,4.401228E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +1156392,fr,1,4.150000E+00,6.401710E+00,4.401228E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +1156398,fr,1,4.150000E+00,6.401710E+00,4.401228E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998897E+01,-9.000000E+01 +1156401,fr,1,4.150000E+00,6.401710E+00,4.401228E+01,5.000000E+00,Active Shallow Crust,1.288987E+02,8.999273E+01,0.000000E+00 +1156411,fr,1,4.250000E+00,6.401710E+00,4.401228E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,-9.000000E+01 +1156458,fr,1,4.650000E+00,6.401710E+00,4.401228E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,-9.000000E+01 +1156500,fr,1,5.050000E+00,6.401710E+00,4.401228E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1156510,fr,1,5.050000E+00,6.401710E+00,4.401228E+01,1.500000E+01,Active Shallow Crust,1.288864E+02,8.999078E+01,0.000000E+00 +1156574,fr,1,5.650000E+00,6.401710E+00,4.401228E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1156824,fr,1,3.750000E+00,4.359240E+00,4.777711E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +1156872,fr,1,4.150000E+00,4.359240E+00,4.777711E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1156896,fr,1,4.350000E+00,4.359240E+00,4.777711E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1157011,fr,1,5.250000E+00,4.359240E+00,4.777711E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999031E+01,-9.000000E+01 +1157280,fr,2,3.550000E+00,2.482050E+00,4.172744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998871E+01,0.000000E+00 +1157281,fr,1,3.550000E+00,2.482050E+00,4.172744E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998871E+01,0.000000E+00 +1157282,fr,1,3.550000E+00,2.482050E+00,4.172744E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998871E+01,0.000000E+00 +1157284,fr,1,3.550000E+00,2.482050E+00,4.172744E+01,1.500000E+01,Active Shallow Crust,2.400118E+02,5.799797E+01,0.000000E+00 +1157289,fr,1,3.550000E+00,2.482050E+00,4.172744E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999435E+01,0.000000E+00 +1157292,fr,1,3.650000E+00,2.482050E+00,4.172744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1157295,fr,1,3.650000E+00,2.482050E+00,4.172744E+01,5.000000E+00,Active Shallow Crust,2.400006E+02,5.801306E+01,0.000000E+00 +1157298,fr,2,3.650000E+00,2.482050E+00,4.172744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,-9.000000E+01 +1157303,fr,1,3.650000E+00,2.482050E+00,4.172744E+01,2.750000E+01,Active Shallow Crust,1.289007E+02,8.996343E+01,0.000000E+00 +1157304,fr,1,3.750000E+00,2.482050E+00,4.172744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +1157305,fr,2,3.750000E+00,2.482050E+00,4.172744E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +1157314,fr,1,3.750000E+00,2.482050E+00,4.172744E+01,1.500000E+01,Active Shallow Crust,1.288977E+02,8.996741E+01,0.000000E+00 +1157328,fr,1,3.950000E+00,2.482050E+00,4.172744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +1157329,fr,2,3.950000E+00,2.482050E+00,4.172744E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +1157330,fr,1,3.950000E+00,2.482050E+00,4.172744E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +1157334,fr,1,3.950000E+00,2.482050E+00,4.172744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,-9.000000E+01 +1157335,fr,1,3.950000E+00,2.482050E+00,4.172744E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,-9.000000E+01 +1157337,fr,1,3.950000E+00,2.482050E+00,4.172744E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.999406E+01,0.000000E+00 +1157340,fr,4,4.050000E+00,2.482050E+00,4.172744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +1157343,fr,1,4.050000E+00,2.482050E+00,4.172744E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.800579E+01,0.000000E+00 +1157349,fr,1,4.050000E+00,2.482050E+00,4.172744E+01,5.000000E+00,Active Shallow Crust,1.288917E+02,8.999365E+01,0.000000E+00 +1157352,fr,1,4.150000E+00,2.482050E+00,4.172744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +1157353,fr,3,4.150000E+00,2.482050E+00,4.172744E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +1157361,fr,1,4.150000E+00,2.482050E+00,4.172744E+01,5.000000E+00,Active Shallow Crust,1.288980E+02,8.999435E+01,0.000000E+00 +1157365,fr,1,4.250000E+00,2.482050E+00,4.172744E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1157373,fr,1,4.250000E+00,2.482050E+00,4.172744E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.998105E+01,0.000000E+00 +1157374,fr,1,4.250000E+00,2.482050E+00,4.172744E+01,1.500000E+01,Active Shallow Crust,1.288950E+02,8.998105E+01,0.000000E+00 +1157376,fr,1,4.350000E+00,2.482050E+00,4.172744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1157377,fr,1,4.350000E+00,2.482050E+00,4.172744E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1157406,fr,1,4.550000E+00,2.482050E+00,4.172744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,-9.000000E+01 +1157412,fr,1,4.650000E+00,2.482050E+00,4.172744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1157436,fr,1,4.850000E+00,2.482050E+00,4.172744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1157478,fr,1,5.150000E+00,2.482050E+00,4.172744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,-9.000000E+01 +1157511,fr,1,5.450000E+00,2.482050E+00,4.172744E+01,5.000000E+00,Active Shallow Crust,2.400213E+02,5.800122E+01,0.000000E+00 +1157844,fr,1,4.250000E+00,3.249600E+00,5.181793E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1157943,fr,1,5.050000E+00,3.249600E+00,5.181793E+01,5.000000E+00,Active Shallow Crust,2.400252E+02,5.799815E+01,0.000000E+00 +1158240,fr,1,3.550000E+00,2.952590E+00,5.104517E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1158241,fr,1,3.550000E+00,2.952590E+00,5.104517E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1158244,fr,1,3.550000E+00,2.952590E+00,5.104517E+01,1.500000E+01,Active Shallow Crust,2.400122E+02,5.799833E+01,0.000000E+00 +1158255,fr,1,3.650000E+00,2.952590E+00,5.104517E+01,5.000000E+00,Active Shallow Crust,2.400019E+02,5.801284E+01,0.000000E+00 +1158265,fr,1,3.750000E+00,2.952590E+00,5.104517E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1158300,fr,1,4.050000E+00,2.952590E+00,5.104517E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +1158504,fr,1,5.750000E+00,2.952590E+00,5.104517E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1158528,fr,1,5.950000E+00,2.952590E+00,5.104517E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1158720,fr,1,3.550000E+00,3.772530E+00,4.379166E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998908E+01,0.000000E+00 +1158747,fr,1,3.750000E+00,3.772530E+00,4.379166E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801697E+01,0.000000E+00 +1158756,fr,1,3.850000E+00,3.772530E+00,4.379166E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1158759,fr,1,3.850000E+00,3.772530E+00,4.379166E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799745E+01,0.000000E+00 +1158871,fr,1,4.750000E+00,3.772530E+00,4.379166E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,-9.000000E+01 +1159200,fr,4,3.550000E+00,7.252840E+00,4.725503E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999316E+01,0.000000E+00 +1159201,fr,1,3.550000E+00,7.252840E+00,4.725503E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999316E+01,0.000000E+00 +1159203,fr,1,3.550000E+00,7.252840E+00,4.725503E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799832E+01,0.000000E+00 +1159212,fr,3,3.650000E+00,7.252840E+00,4.725503E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998780E+01,0.000000E+00 +1159213,fr,1,3.650000E+00,7.252840E+00,4.725503E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998780E+01,0.000000E+00 +1159215,fr,1,3.650000E+00,7.252840E+00,4.725503E+01,5.000000E+00,Active Shallow Crust,2.400023E+02,5.801208E+01,0.000000E+00 +1159219,fr,1,3.650000E+00,7.252840E+00,4.725503E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998766E+01,-9.000000E+01 +1159224,fr,2,3.750000E+00,7.252840E+00,4.725503E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998913E+01,0.000000E+00 +1159225,fr,1,3.750000E+00,7.252840E+00,4.725503E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998913E+01,0.000000E+00 +1159226,fr,1,3.750000E+00,7.252840E+00,4.725503E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998913E+01,0.000000E+00 +1159230,fr,1,3.750000E+00,7.252840E+00,4.725503E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998900E+01,-9.000000E+01 +1159232,fr,1,3.750000E+00,7.252840E+00,4.725503E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998900E+01,-9.000000E+01 +1159234,fr,1,3.750000E+00,7.252840E+00,4.725503E+01,1.500000E+01,Active Shallow Crust,1.288971E+02,8.996694E+01,0.000000E+00 +1159236,fr,2,3.850000E+00,7.252840E+00,4.725503E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +1159242,fr,1,3.850000E+00,7.252840E+00,4.725503E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,-9.000000E+01 +1159243,fr,1,3.850000E+00,7.252840E+00,4.725503E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,-9.000000E+01 +1159248,fr,3,3.950000E+00,7.252840E+00,4.725503E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999136E+01,0.000000E+00 +1159249,fr,1,3.950000E+00,7.252840E+00,4.725503E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999136E+01,0.000000E+00 +1159251,fr,1,3.950000E+00,7.252840E+00,4.725503E+01,5.000000E+00,Active Shallow Crust,2.400191E+02,5.800549E+01,0.000000E+00 +1159254,fr,1,3.950000E+00,7.252840E+00,4.725503E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999126E+01,-9.000000E+01 +1159260,fr,1,4.050000E+00,7.252840E+00,4.725503E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998846E+01,0.000000E+00 +1159261,fr,1,4.050000E+00,7.252840E+00,4.725503E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998846E+01,0.000000E+00 +1159263,fr,1,4.050000E+00,7.252840E+00,4.725503E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.800611E+01,0.000000E+00 +1159264,fr,2,4.050000E+00,7.252840E+00,4.725503E+01,1.500000E+01,Active Shallow Crust,2.400054E+02,5.800608E+01,0.000000E+00 +1159267,fr,1,4.050000E+00,7.252840E+00,4.725503E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998832E+01,-9.000000E+01 +1159272,fr,1,4.150000E+00,7.252840E+00,4.725503E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +1159278,fr,1,4.150000E+00,7.252840E+00,4.725503E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +1159279,fr,1,4.150000E+00,7.252840E+00,4.725503E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +1159284,fr,2,4.250000E+00,7.252840E+00,4.725503E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +1159293,fr,1,4.250000E+00,7.252840E+00,4.725503E+01,5.000000E+00,Active Shallow Crust,1.288937E+02,8.998097E+01,0.000000E+00 +1159296,fr,2,4.350000E+00,7.252840E+00,4.725503E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +1159297,fr,1,4.350000E+00,7.252840E+00,4.725503E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +1159303,fr,1,4.350000E+00,7.252840E+00,4.725503E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998898E+01,-9.000000E+01 +1159320,fr,2,4.550000E+00,7.252840E+00,4.725503E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +1159332,fr,1,4.650000E+00,7.252840E+00,4.725503E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1159335,fr,1,4.650000E+00,7.252840E+00,4.725503E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799421E+01,0.000000E+00 +1159357,fr,1,4.850000E+00,7.252840E+00,4.725503E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1159419,fr,1,5.350000E+00,7.252840E+00,4.725503E+01,5.000000E+00,Active Shallow Crust,2.400256E+02,5.799807E+01,0.000000E+00 +1159443,fr,1,5.550000E+00,7.252840E+00,4.725503E+01,5.000000E+00,Active Shallow Crust,2.400334E+02,5.799958E+01,0.000000E+00 +1159519,fr,1,6.150000E+00,7.252840E+00,4.725503E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,-9.000000E+01 +1159680,fr,2,3.550000E+00,-4.254200E-01,4.558415E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1159682,fr,1,3.550000E+00,-4.254200E-01,4.558415E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1159686,fr,1,3.550000E+00,-4.254200E-01,4.558415E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,-9.000000E+01 +1159692,fr,2,3.650000E+00,-4.254200E-01,4.558415E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1159701,fr,1,3.650000E+00,-4.254200E-01,4.558415E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.996351E+01,0.000000E+00 +1159716,fr,1,3.850000E+00,-4.254200E-01,4.558415E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1159728,fr,1,3.950000E+00,-4.254200E-01,4.558415E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1159773,fr,1,4.250000E+00,-4.254200E-01,4.558415E+01,5.000000E+00,Active Shallow Crust,1.288944E+02,8.998094E+01,0.000000E+00 +1159833,fr,1,4.750000E+00,-4.254200E-01,4.558415E+01,5.000000E+00,Active Shallow Crust,1.288890E+02,8.998806E+01,0.000000E+00 +1159860,fr,1,5.050000E+00,-4.254200E-01,4.558415E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999004E+01,0.000000E+00 +1159885,fr,1,5.250000E+00,-4.254200E-01,4.558415E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999003E+01,0.000000E+00 +1160163,fr,1,3.550000E+00,4.629480E+00,4.627373E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799820E+01,0.000000E+00 +1160173,fr,1,3.650000E+00,4.629480E+00,4.627373E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998758E+01,0.000000E+00 +1160196,fr,1,3.850000E+00,4.629480E+00,4.627373E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1160199,fr,1,3.850000E+00,4.629480E+00,4.627373E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799772E+01,0.000000E+00 +1160206,fr,1,3.850000E+00,4.629480E+00,4.627373E+01,1.500000E+01,Active Shallow Crust,1.288953E+02,8.999260E+01,0.000000E+00 +1160208,fr,1,3.950000E+00,4.629480E+00,4.627373E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +1160245,fr,1,4.250000E+00,4.629480E+00,4.627373E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +1160256,fr,1,4.350000E+00,4.629480E+00,4.627373E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998890E+01,0.000000E+00 +1161120,fr,2,3.550000E+00,5.060270E+00,5.136425E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998741E+01,0.000000E+00 +1161135,fr,1,3.650000E+00,5.060270E+00,5.136425E+01,5.000000E+00,Active Shallow Crust,2.400018E+02,5.801268E+01,0.000000E+00 +1161150,fr,1,3.750000E+00,5.060270E+00,5.136425E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +1161157,fr,1,3.850000E+00,5.060270E+00,5.136425E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999109E+01,0.000000E+00 +1161205,fr,1,4.250000E+00,5.060270E+00,5.136425E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +1161333,fr,1,5.250000E+00,5.060270E+00,5.136425E+01,5.000000E+00,Active Shallow Crust,1.288846E+02,8.998701E+01,0.000000E+00 +1161607,fr,1,3.550000E+00,4.454500E-01,5.225452E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +1161660,fr,1,4.050000E+00,4.454500E-01,5.225452E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1162080,fr,2,3.550000E+00,1.607940E+00,5.165121E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1162092,fr,2,3.650000E+00,1.607940E+00,5.165121E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +1162095,fr,1,3.650000E+00,1.607940E+00,5.165121E+01,5.000000E+00,Active Shallow Crust,2.400019E+02,5.801290E+01,0.000000E+00 +1162104,fr,1,3.750000E+00,1.607940E+00,5.165121E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1162116,fr,1,3.850000E+00,1.607940E+00,5.165121E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1162120,fr,1,3.850000E+00,1.607940E+00,5.165121E+01,1.500000E+01,Active Shallow Crust,2.400116E+02,5.799805E+01,0.000000E+00 +1162135,fr,1,3.950000E+00,1.607940E+00,5.165121E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1162213,fr,1,4.650000E+00,1.607940E+00,5.165121E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1162260,fr,1,5.050000E+00,1.607940E+00,5.165121E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1162560,fr,3,3.550000E+00,1.876940E+00,4.655444E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +1162566,fr,1,3.550000E+00,1.876940E+00,4.655444E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,-9.000000E+01 +1162574,fr,1,3.650000E+00,1.876940E+00,4.655444E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999073E+01,0.000000E+00 +1162579,fr,1,3.650000E+00,1.876940E+00,4.655444E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,-9.000000E+01 +1162584,fr,2,3.750000E+00,1.876940E+00,4.655444E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1162587,fr,1,3.750000E+00,1.876940E+00,4.655444E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801774E+01,0.000000E+00 +1162613,fr,1,3.950000E+00,1.876940E+00,4.655444E+01,2.750000E+01,Active Shallow Crust,2.400199E+02,5.800499E+01,0.000000E+00 +1162621,fr,2,4.050000E+00,1.876940E+00,4.655444E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1162650,fr,1,4.250000E+00,1.876940E+00,4.655444E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,-9.000000E+01 +1162653,fr,1,4.250000E+00,1.876940E+00,4.655444E+01,5.000000E+00,Active Shallow Crust,1.288943E+02,8.998082E+01,0.000000E+00 +1162680,fr,1,4.550000E+00,1.876940E+00,4.655444E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1162704,fr,1,4.750000E+00,1.876940E+00,4.655444E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1162852,fr,1,5.950000E+00,1.876940E+00,4.655444E+01,1.500000E+01,Active Shallow Crust,2.400512E+02,5.800066E+01,0.000000E+00 +1163040,fr,1,3.550000E+00,5.634890E+00,4.271391E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999259E+01,0.000000E+00 +1163052,fr,1,3.650000E+00,5.634890E+00,4.271391E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998679E+01,0.000000E+00 +1163100,fr,1,4.050000E+00,5.634890E+00,4.271391E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999167E+01,0.000000E+00 +1163104,fr,1,4.050000E+00,5.634890E+00,4.271391E+01,1.500000E+01,Active Shallow Crust,2.400053E+02,5.800574E+01,0.000000E+00 +1163520,fr,1,3.550000E+00,6.180180E+00,4.622003E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999303E+01,0.000000E+00 +1163521,fr,3,3.550000E+00,6.180180E+00,4.622003E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999303E+01,0.000000E+00 +1163532,fr,3,3.650000E+00,6.180180E+00,4.622003E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998756E+01,0.000000E+00 +1163538,fr,1,3.650000E+00,6.180180E+00,4.622003E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998742E+01,-9.000000E+01 +1163544,fr,2,3.750000E+00,6.180180E+00,4.622003E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +1163557,fr,1,3.850000E+00,6.180180E+00,4.622003E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1163562,fr,1,3.850000E+00,6.180180E+00,4.622003E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1163575,fr,1,3.950000E+00,6.180180E+00,4.622003E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999110E+01,-9.000000E+01 +1163580,fr,3,4.050000E+00,6.180180E+00,4.622003E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998823E+01,0.000000E+00 +1163583,fr,1,4.050000E+00,6.180180E+00,4.622003E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.800612E+01,0.000000E+00 +1163587,fr,1,4.050000E+00,6.180180E+00,4.622003E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998809E+01,-9.000000E+01 +1163592,fr,2,4.150000E+00,6.180180E+00,4.622003E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1163605,fr,1,4.250000E+00,6.180180E+00,4.622003E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +1163617,fr,1,4.350000E+00,6.180180E+00,4.622003E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998889E+01,0.000000E+00 +1163618,fr,1,4.350000E+00,6.180180E+00,4.622003E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998889E+01,0.000000E+00 +1163628,fr,1,4.450000E+00,6.180180E+00,4.622003E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1163653,fr,1,4.650000E+00,6.180180E+00,4.622003E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1163679,fr,1,4.850000E+00,6.180180E+00,4.622003E+01,5.000000E+00,Active Shallow Crust,2.400169E+02,5.800240E+01,0.000000E+00 +1163724,fr,1,5.250000E+00,6.180180E+00,4.622003E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1163738,fr,1,5.350000E+00,6.180180E+00,4.622003E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1163749,fr,1,5.450000E+00,6.180180E+00,4.622003E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1164000,fr,2,3.550000E+00,-2.633000E+00,4.877988E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1164001,fr,1,3.550000E+00,-2.633000E+00,4.877988E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1164007,fr,1,3.550000E+00,-2.633000E+00,4.877988E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +1164012,fr,1,3.650000E+00,-2.633000E+00,4.877988E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999112E+01,0.000000E+00 +1164025,fr,1,3.750000E+00,-2.633000E+00,4.877988E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +1164034,fr,1,3.750000E+00,-2.633000E+00,4.877988E+01,1.500000E+01,Active Shallow Crust,1.288969E+02,8.996729E+01,0.000000E+00 +1164085,fr,1,4.250000E+00,-2.633000E+00,4.877988E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +1164097,fr,1,4.350000E+00,-2.633000E+00,4.877988E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +1164099,fr,1,4.350000E+00,-2.633000E+00,4.877988E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.799606E+01,0.000000E+00 +1164146,fr,1,4.750000E+00,-2.633000E+00,4.877988E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1164147,fr,1,4.750000E+00,-2.633000E+00,4.877988E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.800452E+01,0.000000E+00 +1164492,fr,1,3.650000E+00,1.365670E+00,4.491446E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1164516,fr,1,3.850000E+00,1.365670E+00,4.491446E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1164540,fr,1,4.050000E+00,1.365670E+00,4.491446E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1164552,fr,1,4.150000E+00,1.365670E+00,4.491446E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1164555,fr,1,4.150000E+00,1.365670E+00,4.491446E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799729E+01,0.000000E+00 +1164592,fr,1,4.450000E+00,1.365670E+00,4.491446E+01,1.500000E+01,Active Shallow Crust,2.400049E+02,5.799469E+01,0.000000E+00 +1164688,fr,1,5.250000E+00,1.365670E+00,4.491446E+01,1.500000E+01,Active Shallow Crust,2.400245E+02,5.800008E+01,0.000000E+00 +1164961,fr,2,3.550000E+00,3.461870E+00,4.493132E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +1164972,fr,2,3.650000E+00,3.461870E+00,4.493132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1164974,fr,1,3.650000E+00,3.461870E+00,4.493132E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1164981,fr,1,3.650000E+00,3.461870E+00,4.493132E+01,5.000000E+00,Active Shallow Crust,1.289006E+02,8.996349E+01,0.000000E+00 +1164984,fr,2,3.750000E+00,3.461870E+00,4.493132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +1164987,fr,1,3.750000E+00,3.461870E+00,4.493132E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.801717E+01,0.000000E+00 +1164996,fr,1,3.850000E+00,3.461870E+00,4.493132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1164997,fr,1,3.850000E+00,3.461870E+00,4.493132E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1165006,fr,1,3.850000E+00,3.461870E+00,4.493132E+01,1.500000E+01,Active Shallow Crust,1.288956E+02,8.999368E+01,0.000000E+00 +1165023,fr,1,4.050000E+00,3.461870E+00,4.493132E+01,5.000000E+00,Active Shallow Crust,2.400056E+02,5.800563E+01,0.000000E+00 +1165045,fr,1,4.250000E+00,3.461870E+00,4.493132E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1165065,fr,1,4.350000E+00,3.461870E+00,4.493132E+01,5.000000E+00,Active Shallow Crust,1.288983E+02,8.998272E+01,0.000000E+00 +1165116,fr,1,4.850000E+00,3.461870E+00,4.493132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +1165192,fr,1,5.450000E+00,3.461870E+00,4.493132E+01,1.500000E+01,Active Shallow Crust,2.400276E+02,5.799819E+01,0.000000E+00 +1165449,fr,1,3.550000E+00,3.821760E+00,4.044104E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.999232E+01,0.000000E+00 +1165926,fr,1,3.550000E+00,5.723720E+00,4.834464E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999322E+01,-9.000000E+01 +1165935,fr,1,3.650000E+00,5.723720E+00,4.834464E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801273E+01,0.000000E+00 +1165968,fr,2,3.950000E+00,5.723720E+00,4.834464E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999154E+01,0.000000E+00 +1165981,fr,1,4.050000E+00,5.723720E+00,4.834464E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +1166007,fr,1,4.250000E+00,5.723720E+00,4.834464E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799415E+01,0.000000E+00 +1166088,fr,1,4.950000E+00,5.723720E+00,4.834464E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +1166400,fr,2,3.550000E+00,7.104400E-01,5.161998E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1166402,fr,1,3.550000E+00,7.104400E-01,5.161998E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1166496,fr,1,4.350000E+00,7.104400E-01,5.161998E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1166880,fr,1,3.550000E+00,5.059120E+00,4.761973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999320E+01,0.000000E+00 +1166895,fr,1,3.650000E+00,5.059120E+00,4.761973E+01,5.000000E+00,Active Shallow Crust,2.400006E+02,5.801416E+01,0.000000E+00 +1166906,fr,1,3.750000E+00,5.059120E+00,4.761973E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1166919,fr,1,3.850000E+00,5.059120E+00,4.761973E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799844E+01,0.000000E+00 +1166924,fr,1,3.850000E+00,5.059120E+00,4.761973E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,-9.000000E+01 +1166952,fr,1,4.150000E+00,5.059120E+00,4.761973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1167009,fr,1,4.550000E+00,5.059120E+00,4.761973E+01,5.000000E+00,Active Shallow Crust,1.288939E+02,8.998571E+01,0.000000E+00 +1167072,fr,1,5.150000E+00,5.059120E+00,4.761973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1167360,fr,1,3.550000E+00,-1.073050E+00,4.154347E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +1167864,fr,1,3.750000E+00,-3.225160E+00,4.926830E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +1167873,fr,1,3.750000E+00,-3.225160E+00,4.926830E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.996730E+01,0.000000E+00 +1167949,fr,1,4.450000E+00,-3.225160E+00,4.926830E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +1168380,fr,2,4.050000E+00,9.284740E+00,5.013200E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999273E+01,0.000000E+00 +1168800,fr,1,3.550000E+00,3.669030E+00,4.257799E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998886E+01,0.000000E+00 +1168837,fr,1,3.850000E+00,3.669030E+00,4.257799E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +1168861,fr,1,4.050000E+00,3.669030E+00,4.257799E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1169292,fr,1,3.650000E+00,8.212160E+00,5.101202E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +1169797,fr,1,3.850000E+00,8.832700E-01,4.835648E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1169808,fr,1,3.950000E+00,8.832700E-01,4.835648E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1169810,fr,1,3.950000E+00,8.832700E-01,4.835648E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1170249,fr,1,3.550000E+00,7.767470E+00,4.922272E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.999342E+01,0.000000E+00 +1170264,fr,2,3.750000E+00,7.767470E+00,4.922272E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +1170273,fr,2,3.750000E+00,7.767470E+00,4.922272E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.996754E+01,0.000000E+00 +1170291,fr,1,3.950000E+00,7.767470E+00,4.922272E+01,5.000000E+00,Active Shallow Crust,2.400202E+02,5.800526E+01,0.000000E+00 +1170312,fr,1,4.150000E+00,7.767470E+00,4.922272E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1170324,fr,1,4.250000E+00,7.767470E+00,4.922272E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +1170327,fr,1,4.250000E+00,7.767470E+00,4.922272E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799416E+01,0.000000E+00 +1170337,fr,1,4.350000E+00,7.767470E+00,4.922272E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1170381,fr,1,4.650000E+00,7.767470E+00,4.922272E+01,5.000000E+00,Active Shallow Crust,1.288904E+02,8.998691E+01,0.000000E+00 +1170444,fr,1,5.250000E+00,7.767470E+00,4.922272E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +1170468,fr,1,5.450000E+00,7.767470E+00,4.922272E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1170729,fr,1,3.550000E+00,2.361450E+00,5.345060E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.999400E+01,0.000000E+00 +1171200,fr,3,3.550000E+00,-4.028690E+00,4.851952E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999332E+01,0.000000E+00 +1171203,fr,1,3.550000E+00,-4.028690E+00,4.851952E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799924E+01,0.000000E+00 +1171215,fr,1,3.650000E+00,-4.028690E+00,4.851952E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801340E+01,0.000000E+00 +1171225,fr,1,3.750000E+00,-4.028690E+00,4.851952E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +1171236,fr,1,3.850000E+00,-4.028690E+00,4.851952E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +1171237,fr,1,3.850000E+00,-4.028690E+00,4.851952E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +1171251,fr,1,3.950000E+00,-4.028690E+00,4.851952E+01,5.000000E+00,Active Shallow Crust,2.400204E+02,5.800528E+01,0.000000E+00 +1171254,fr,1,3.950000E+00,-4.028690E+00,4.851952E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999147E+01,-9.000000E+01 +1171261,fr,1,4.050000E+00,-4.028690E+00,4.851952E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998873E+01,0.000000E+00 +1171264,fr,1,4.050000E+00,-4.028690E+00,4.851952E+01,1.500000E+01,Active Shallow Crust,2.400063E+02,5.800607E+01,0.000000E+00 +1171273,fr,1,4.150000E+00,-4.028690E+00,4.851952E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1171274,fr,1,4.150000E+00,-4.028690E+00,4.851952E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1171297,fr,1,4.350000E+00,-4.028690E+00,4.851952E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +1171299,fr,1,4.350000E+00,-4.028690E+00,4.851952E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799628E+01,0.000000E+00 +1171309,fr,1,4.450000E+00,-4.028690E+00,4.851952E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +1171320,fr,1,4.550000E+00,-4.028690E+00,4.851952E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +1171407,fr,1,5.250000E+00,-4.028690E+00,4.851952E+01,5.000000E+00,Active Shallow Crust,2.400269E+02,5.800049E+01,0.000000E+00 +1171437,fr,1,5.450000E+00,-4.028690E+00,4.851952E+01,5.000000E+00,Active Shallow Crust,1.288772E+02,8.998914E+01,0.000000E+00 +1171443,fr,1,5.550000E+00,-4.028690E+00,4.851952E+01,5.000000E+00,Active Shallow Crust,2.400346E+02,5.799994E+01,0.000000E+00 +1171465,fr,1,5.750000E+00,-4.028690E+00,4.851952E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1171497,fr,1,5.950000E+00,-4.028690E+00,4.851952E+01,5.000000E+00,Active Shallow Crust,1.288621E+02,8.999009E+01,0.000000E+00 +1171682,fr,2,3.550000E+00,1.719120E+00,4.093240E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +1171687,fr,1,3.550000E+00,1.719120E+00,4.093240E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,-9.000000E+01 +1171692,fr,3,3.650000E+00,1.719120E+00,4.093240E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1171704,fr,2,3.750000E+00,1.719120E+00,4.093240E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998941E+01,0.000000E+00 +1171717,fr,1,3.850000E+00,1.719120E+00,4.093240E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +1171728,fr,2,3.950000E+00,1.719120E+00,4.093240E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1171764,fr,1,4.250000E+00,1.719120E+00,4.093240E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1171776,fr,1,4.350000E+00,1.719120E+00,4.093240E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1171797,fr,1,4.450000E+00,1.719120E+00,4.093240E+01,5.000000E+00,Active Shallow Crust,1.288931E+02,8.999392E+01,0.000000E+00 +1171807,fr,1,4.550000E+00,1.719120E+00,4.093240E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,-9.000000E+01 +1171828,fr,1,4.750000E+00,1.719120E+00,4.093240E+01,1.500000E+01,Active Shallow Crust,2.400057E+02,5.800409E+01,0.000000E+00 +1172160,fr,3,3.550000E+00,3.833460E+00,4.524838E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +1172166,fr,1,3.550000E+00,3.833460E+00,4.524838E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,-9.000000E+01 +1172169,fr,1,3.550000E+00,3.833460E+00,4.524838E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999467E+01,0.000000E+00 +1172173,fr,1,3.650000E+00,3.833460E+00,4.524838E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +1172184,fr,2,3.750000E+00,3.833460E+00,4.524838E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +1172185,fr,1,3.750000E+00,3.833460E+00,4.524838E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +1172244,fr,1,4.250000E+00,3.833460E+00,4.524838E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1172256,fr,1,4.350000E+00,3.833460E+00,4.524838E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1172257,fr,1,4.350000E+00,3.833460E+00,4.524838E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1172280,fr,1,4.550000E+00,3.833460E+00,4.524838E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1172281,fr,1,4.550000E+00,3.833460E+00,4.524838E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1172288,fr,1,4.550000E+00,3.833460E+00,4.524838E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,-9.000000E+01 +1172640,fr,1,3.550000E+00,3.141850E+00,4.435737E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +1172651,fr,1,3.550000E+00,3.141850E+00,4.435737E+01,2.750000E+01,Active Shallow Crust,1.288968E+02,8.999279E+01,0.000000E+00 +1172652,fr,2,3.650000E+00,3.141850E+00,4.435737E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1172666,fr,1,3.750000E+00,3.141850E+00,4.435737E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999141E+01,0.000000E+00 +1172677,fr,1,3.850000E+00,3.141850E+00,4.435737E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1172688,fr,1,3.950000E+00,3.141850E+00,4.435737E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999090E+01,0.000000E+00 +1172748,fr,1,4.450000E+00,3.141850E+00,4.435737E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1172763,fr,1,4.550000E+00,3.141850E+00,4.435737E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799728E+01,0.000000E+00 +1172765,fr,1,4.550000E+00,3.141850E+00,4.435737E+01,2.750000E+01,Active Shallow Crust,2.400087E+02,5.799726E+01,0.000000E+00 +1172880,fr,1,5.550000E+00,3.141850E+00,4.435737E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1173132,fr,1,3.650000E+00,7.287610E+00,4.543854E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998739E+01,0.000000E+00 +1173156,fr,2,3.850000E+00,7.287610E+00,4.543854E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1173157,fr,1,3.850000E+00,7.287610E+00,4.543854E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1173168,fr,1,3.950000E+00,7.287610E+00,4.543854E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +1173189,fr,2,4.050000E+00,7.287610E+00,4.543854E+01,5.000000E+00,Active Shallow Crust,1.288910E+02,8.999403E+01,0.000000E+00 +1173230,fr,1,4.450000E+00,7.287610E+00,4.543854E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1173600,fr,5,3.550000E+00,7.463870E+00,4.413680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999276E+01,0.000000E+00 +1173601,fr,3,3.550000E+00,7.463870E+00,4.413680E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999276E+01,0.000000E+00 +1173607,fr,1,3.550000E+00,7.463870E+00,4.413680E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999268E+01,-9.000000E+01 +1173609,fr,2,3.550000E+00,7.463870E+00,4.413680E+01,5.000000E+00,Active Shallow Crust,1.288973E+02,8.999277E+01,0.000000E+00 +1173612,fr,2,3.650000E+00,7.463870E+00,4.413680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998710E+01,0.000000E+00 +1173613,fr,1,3.650000E+00,7.463870E+00,4.413680E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998710E+01,0.000000E+00 +1173615,fr,2,3.650000E+00,7.463870E+00,4.413680E+01,5.000000E+00,Active Shallow Crust,2.400001E+02,5.801326E+01,0.000000E+00 +1173622,fr,1,3.650000E+00,7.463870E+00,4.413680E+01,1.500000E+01,Active Shallow Crust,1.289007E+02,8.996348E+01,0.000000E+00 +1173624,fr,2,3.750000E+00,7.463870E+00,4.413680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998850E+01,0.000000E+00 +1173633,fr,1,3.750000E+00,7.463870E+00,4.413680E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.996745E+01,0.000000E+00 +1173634,fr,1,3.750000E+00,7.463870E+00,4.413680E+01,1.500000E+01,Active Shallow Crust,1.288972E+02,8.996745E+01,0.000000E+00 +1173636,fr,1,3.850000E+00,7.463870E+00,4.413680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1173637,fr,1,3.850000E+00,7.463870E+00,4.413680E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1173639,fr,1,3.850000E+00,7.463870E+00,4.413680E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799781E+01,0.000000E+00 +1173642,fr,1,3.850000E+00,7.463870E+00,4.413680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,-9.000000E+01 +1173648,fr,1,3.950000E+00,7.463870E+00,4.413680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999087E+01,0.000000E+00 +1173652,fr,1,3.950000E+00,7.463870E+00,4.413680E+01,1.500000E+01,Active Shallow Crust,2.400197E+02,5.800501E+01,0.000000E+00 +1173660,fr,3,4.050000E+00,7.463870E+00,4.413680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999186E+01,0.000000E+00 +1173661,fr,1,4.050000E+00,7.463870E+00,4.413680E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999186E+01,0.000000E+00 +1173662,fr,1,4.050000E+00,7.463870E+00,4.413680E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999186E+01,0.000000E+00 +1173672,fr,1,4.150000E+00,7.463870E+00,4.413680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998912E+01,0.000000E+00 +1173699,fr,1,4.350000E+00,7.463870E+00,4.413680E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.799564E+01,0.000000E+00 +1173705,fr,1,4.350000E+00,7.463870E+00,4.413680E+01,5.000000E+00,Active Shallow Crust,1.288982E+02,8.998240E+01,0.000000E+00 +1173708,fr,1,4.450000E+00,7.463870E+00,4.413680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +1173720,fr,1,4.550000E+00,7.463870E+00,4.413680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +1173723,fr,1,4.550000E+00,7.463870E+00,4.413680E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.799711E+01,0.000000E+00 +1173744,fr,2,4.750000E+00,7.463870E+00,4.413680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +1173745,fr,1,4.750000E+00,7.463870E+00,4.413680E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +1173780,fr,1,5.050000E+00,7.463870E+00,4.413680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1173787,fr,1,5.050000E+00,7.463870E+00,4.413680E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +1174123,fr,1,3.850000E+00,-2.035420E+00,4.989631E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999069E+01,-9.000000E+01 +1174130,fr,1,3.950000E+00,-2.035420E+00,4.989631E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1174584,fr,1,3.750000E+00,7.464990E+00,4.969021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +1174593,fr,1,3.750000E+00,7.464990E+00,4.969021E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996754E+01,0.000000E+00 +1174629,fr,1,4.050000E+00,7.464990E+00,4.969021E+01,5.000000E+00,Active Shallow Crust,1.288893E+02,8.999450E+01,0.000000E+00 +1174634,fr,1,4.150000E+00,7.464990E+00,4.969021E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1174645,fr,1,4.250000E+00,7.464990E+00,4.969021E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +1174656,fr,1,4.350000E+00,7.464990E+00,4.969021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +1174716,fr,1,4.850000E+00,7.464990E+00,4.969021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1174737,fr,1,4.950000E+00,7.464990E+00,4.969021E+01,5.000000E+00,Active Shallow Crust,1.288885E+02,8.999004E+01,0.000000E+00 +1175047,fr,1,3.550000E+00,2.855870E+00,5.155542E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,-9.000000E+01 +1175052,fr,1,3.650000E+00,2.855870E+00,5.155542E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +1175100,fr,1,4.050000E+00,2.855870E+00,5.155542E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1175121,fr,1,4.150000E+00,2.855870E+00,5.155542E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999371E+01,0.000000E+00 +1175520,fr,1,3.550000E+00,4.794000E+00,4.847282E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999332E+01,0.000000E+00 +1176010,fr,1,3.550000E+00,-7.904600E-01,4.717682E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.999358E+01,0.000000E+00 +1176013,fr,2,3.650000E+00,-7.904600E-01,4.717682E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1176015,fr,1,3.650000E+00,-7.904600E-01,4.717682E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801277E+01,0.000000E+00 +1176024,fr,1,3.750000E+00,-7.904600E-01,4.717682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1176028,fr,1,3.750000E+00,-7.904600E-01,4.717682E+01,1.500000E+01,Active Shallow Crust,2.400083E+02,5.801764E+01,0.000000E+00 +1176030,fr,1,3.750000E+00,-7.904600E-01,4.717682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,-9.000000E+01 +1176036,fr,1,3.850000E+00,-7.904600E-01,4.717682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1176048,fr,1,3.950000E+00,-7.904600E-01,4.717682E+01,5.000000E+00,Active Shallow Crust,3.599997E+02,8.999027E+01,0.000000E+00 +1176051,fr,2,3.950000E+00,-7.904600E-01,4.717682E+01,5.000000E+00,Active Shallow Crust,2.400199E+02,5.800504E+01,0.000000E+00 +1176058,fr,1,3.950000E+00,-7.904600E-01,4.717682E+01,1.500000E+01,Active Shallow Crust,1.289003E+02,8.999378E+01,0.000000E+00 +1176064,fr,1,4.050000E+00,-7.904600E-01,4.717682E+01,1.500000E+01,Active Shallow Crust,2.400061E+02,5.800578E+01,0.000000E+00 +1176079,fr,1,4.150000E+00,-7.904600E-01,4.717682E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1176084,fr,1,4.250000E+00,-7.904600E-01,4.717682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1176085,fr,1,4.250000E+00,-7.904600E-01,4.717682E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1176096,fr,1,4.350000E+00,-7.904600E-01,4.717682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1176120,fr,1,4.550000E+00,-7.904600E-01,4.717682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1176150,fr,1,4.750000E+00,-7.904600E-01,4.717682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +1176151,fr,1,4.750000E+00,-7.904600E-01,4.717682E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +1176495,fr,1,3.650000E+00,-3.800630E+00,4.385787E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801316E+01,0.000000E+00 +1176505,fr,1,3.750000E+00,-3.800630E+00,4.385787E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +1176960,fr,1,3.550000E+00,5.870120E+00,4.949679E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998690E+01,0.000000E+00 +1176972,fr,1,3.650000E+00,5.870120E+00,4.949679E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998833E+01,0.000000E+00 +1176984,fr,1,3.750000E+00,5.870120E+00,4.949679E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1177440,fr,1,3.550000E+00,6.981450E+00,4.527159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999290E+01,0.000000E+00 +1177441,fr,2,3.550000E+00,6.981450E+00,4.527159E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999290E+01,0.000000E+00 +1177452,fr,1,3.650000E+00,6.981450E+00,4.527159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998735E+01,0.000000E+00 +1177453,fr,1,3.650000E+00,6.981450E+00,4.527159E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998735E+01,0.000000E+00 +1177458,fr,1,3.650000E+00,6.981450E+00,4.527159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998721E+01,-9.000000E+01 +1177464,fr,2,3.750000E+00,6.981450E+00,4.527159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +1177467,fr,1,3.750000E+00,6.981450E+00,4.527159E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.801778E+01,0.000000E+00 +1177486,fr,1,3.850000E+00,6.981450E+00,4.527159E+01,1.500000E+01,Active Shallow Crust,1.288956E+02,8.999246E+01,0.000000E+00 +1177488,fr,1,3.950000E+00,6.981450E+00,4.527159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +1177490,fr,1,3.950000E+00,6.981450E+00,4.527159E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +1177513,fr,2,4.150000E+00,6.981450E+00,4.527159E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1177525,fr,1,4.250000E+00,6.981450E+00,4.527159E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1177536,fr,1,4.350000E+00,6.981450E+00,4.527159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998870E+01,0.000000E+00 +1177569,fr,1,4.550000E+00,6.981450E+00,4.527159E+01,5.000000E+00,Active Shallow Crust,1.288938E+02,8.998607E+01,0.000000E+00 +1177920,fr,1,3.550000E+00,5.286710E+00,5.016672E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998708E+01,0.000000E+00 +1177921,fr,1,3.550000E+00,5.286710E+00,5.016672E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998708E+01,0.000000E+00 +1177956,fr,1,3.850000E+00,5.286710E+00,5.016672E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999085E+01,0.000000E+00 +1178413,fr,2,3.650000E+00,-1.344340E+00,4.767235E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998941E+01,0.000000E+00 +1178414,fr,1,3.650000E+00,-1.344340E+00,4.767235E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998941E+01,0.000000E+00 +1178438,fr,1,3.850000E+00,-1.344340E+00,4.767235E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1178440,fr,1,3.850000E+00,-1.344340E+00,4.767235E+01,1.500000E+01,Active Shallow Crust,2.400111E+02,5.799779E+01,0.000000E+00 +1178444,fr,1,3.850000E+00,-1.344340E+00,4.767235E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,-9.000000E+01 +1178448,fr,2,3.950000E+00,-1.344340E+00,4.767235E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1178450,fr,1,3.950000E+00,-1.344340E+00,4.767235E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1178463,fr,1,4.050000E+00,-1.344340E+00,4.767235E+01,5.000000E+00,Active Shallow Crust,2.400062E+02,5.800581E+01,0.000000E+00 +1178466,fr,1,4.050000E+00,-1.344340E+00,4.767235E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,-9.000000E+01 +1178487,fr,1,4.250000E+00,-1.344340E+00,4.767235E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799425E+01,0.000000E+00 +1178496,fr,1,4.350000E+00,-1.344340E+00,4.767235E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1178557,fr,1,4.850000E+00,-1.344340E+00,4.767235E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1178592,fr,1,5.150000E+00,-1.344340E+00,4.767235E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1178894,fr,1,3.650000E+00,-2.614100E-01,4.815336E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1178928,fr,1,3.950000E+00,-2.614100E-01,4.815336E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1178967,fr,1,4.250000E+00,-2.614100E-01,4.815336E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.799416E+01,0.000000E+00 +1179177,fr,1,5.950000E+00,-2.614100E-01,4.815336E+01,5.000000E+00,Active Shallow Crust,1.288626E+02,8.999012E+01,0.000000E+00 +1179360,fr,1,3.550000E+00,-1.512790E+00,5.006492E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +1179384,fr,1,3.750000E+00,-1.512790E+00,5.006492E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1179840,fr,1,3.550000E+00,1.799340E+00,4.641666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +1179843,fr,1,3.550000E+00,1.799340E+00,4.641666E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799806E+01,0.000000E+00 +1179846,fr,2,3.550000E+00,1.799340E+00,4.641666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998945E+01,-9.000000E+01 +1179848,fr,1,3.550000E+00,1.799340E+00,4.641666E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998945E+01,-9.000000E+01 +1179862,fr,1,3.650000E+00,1.799340E+00,4.641666E+01,1.500000E+01,Active Shallow Crust,1.289005E+02,8.996352E+01,0.000000E+00 +1179864,fr,2,3.750000E+00,1.799340E+00,4.641666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1179873,fr,1,3.750000E+00,1.799340E+00,4.641666E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.996736E+01,0.000000E+00 +1179891,fr,1,3.950000E+00,1.799340E+00,4.641666E+01,5.000000E+00,Active Shallow Crust,2.400198E+02,5.800494E+01,0.000000E+00 +1179894,fr,1,3.950000E+00,1.799340E+00,4.641666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1179900,fr,1,4.050000E+00,1.799340E+00,4.641666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1179972,fr,1,4.650000E+00,1.799340E+00,4.641666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1180014,fr,1,4.950000E+00,1.799340E+00,4.641666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,-9.000000E+01 +1180320,fr,1,3.550000E+00,-1.702300E-01,4.150718E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1180356,fr,1,3.850000E+00,-1.702300E-01,4.150718E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1180381,fr,1,4.050000E+00,-1.702300E-01,4.150718E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1180818,fr,1,3.650000E+00,2.353130E+00,4.076381E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,-9.000000E+01 +1180833,fr,1,3.750000E+00,2.353130E+00,4.076381E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.996739E+01,0.000000E+00 +1180886,fr,1,4.250000E+00,2.353130E+00,4.076381E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +1181760,fr,2,3.550000E+00,1.570140E+00,4.171449E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +1181784,fr,2,3.750000E+00,1.570140E+00,4.171449E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +1181796,fr,1,3.850000E+00,1.570140E+00,4.171449E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +1181799,fr,1,3.850000E+00,1.570140E+00,4.171449E+01,5.000000E+00,Active Shallow Crust,2.400103E+02,5.799773E+01,0.000000E+00 +1182240,fr,2,3.550000E+00,4.730140E+00,4.246000E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999256E+01,0.000000E+00 +1182243,fr,1,3.550000E+00,4.730140E+00,4.246000E+01,5.000000E+00,Active Shallow Crust,2.400115E+02,5.799855E+01,0.000000E+00 +1182259,fr,1,3.650000E+00,4.730140E+00,4.246000E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999329E+01,-9.000000E+01 +1182276,fr,1,3.850000E+00,4.730140E+00,4.246000E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1182300,fr,1,4.050000E+00,4.730140E+00,4.246000E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999163E+01,0.000000E+00 +1182720,fr,1,3.550000E+00,5.518340E+00,5.081398E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998726E+01,0.000000E+00 +1182722,fr,1,3.550000E+00,5.518340E+00,5.081398E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998726E+01,0.000000E+00 +1182731,fr,1,3.550000E+00,5.518340E+00,5.081398E+01,2.750000E+01,Active Shallow Crust,1.288950E+02,8.999363E+01,0.000000E+00 +1182732,fr,4,3.650000E+00,5.518340E+00,5.081398E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998864E+01,0.000000E+00 +1182733,fr,1,3.650000E+00,5.518340E+00,5.081398E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998864E+01,0.000000E+00 +1182745,fr,1,3.750000E+00,5.518340E+00,5.081398E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1182747,fr,1,3.750000E+00,5.518340E+00,5.081398E+01,5.000000E+00,Active Shallow Crust,2.400100E+02,5.801777E+01,0.000000E+00 +1182756,fr,1,3.850000E+00,5.518340E+00,5.081398E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999098E+01,0.000000E+00 +1182760,fr,1,3.850000E+00,5.518340E+00,5.081398E+01,1.500000E+01,Active Shallow Crust,2.400117E+02,5.799795E+01,0.000000E+00 +1182765,fr,1,3.850000E+00,5.518340E+00,5.081398E+01,5.000000E+00,Active Shallow Crust,1.288953E+02,8.999323E+01,0.000000E+00 +1182768,fr,1,3.950000E+00,5.518340E+00,5.081398E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999196E+01,0.000000E+00 +1182775,fr,1,3.950000E+00,5.518340E+00,5.081398E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999187E+01,-9.000000E+01 +1182781,fr,1,4.050000E+00,5.518340E+00,5.081398E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +1182782,fr,1,4.050000E+00,5.518340E+00,5.081398E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +1182789,fr,1,4.050000E+00,5.518340E+00,5.081398E+01,5.000000E+00,Active Shallow Crust,1.288894E+02,8.999463E+01,0.000000E+00 +1182792,fr,1,4.150000E+00,5.518340E+00,5.081398E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +1182793,fr,1,4.150000E+00,5.518340E+00,5.081398E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +1182801,fr,2,4.150000E+00,5.518340E+00,5.081398E+01,5.000000E+00,Active Shallow Crust,1.288977E+02,8.999361E+01,0.000000E+00 +1182804,fr,2,4.250000E+00,5.518340E+00,5.081398E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +1182817,fr,1,4.350000E+00,5.518340E+00,5.081398E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1182831,fr,1,4.450000E+00,5.518340E+00,5.081398E+01,5.000000E+00,Active Shallow Crust,2.400064E+02,5.799494E+01,0.000000E+00 +1182864,fr,2,4.750000E+00,5.518340E+00,5.081398E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1182878,fr,1,4.850000E+00,5.518340E+00,5.081398E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1182888,fr,1,4.950000E+00,5.518340E+00,5.081398E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1183203,fr,1,3.550000E+00,4.843870E+00,4.630355E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799875E+01,0.000000E+00 +1183204,fr,1,3.550000E+00,4.843870E+00,4.630355E+01,1.500000E+01,Active Shallow Crust,2.400122E+02,5.799875E+01,0.000000E+00 +1183206,fr,1,3.550000E+00,4.843870E+00,4.630355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999295E+01,-9.000000E+01 +1183214,fr,1,3.650000E+00,4.843870E+00,4.630355E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998758E+01,0.000000E+00 +1183216,fr,1,3.650000E+00,4.843870E+00,4.630355E+01,1.500000E+01,Active Shallow Crust,2.400022E+02,5.801181E+01,0.000000E+00 +1183266,fr,1,4.050000E+00,4.843870E+00,4.630355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998811E+01,-9.000000E+01 +1183287,fr,1,4.250000E+00,4.843870E+00,4.630355E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799384E+01,0.000000E+00 +1183299,fr,1,4.350000E+00,4.843870E+00,4.630355E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799593E+01,0.000000E+00 +1183382,fr,1,5.050000E+00,4.843870E+00,4.630355E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1183392,fr,1,5.150000E+00,4.843870E+00,4.630355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1183682,fr,1,3.550000E+00,3.648170E+00,5.144202E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +1183694,fr,1,3.650000E+00,3.648170E+00,5.144202E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998879E+01,0.000000E+00 +1183704,fr,1,3.750000E+00,3.648170E+00,5.144202E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1183713,fr,1,3.750000E+00,3.648170E+00,5.144202E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.996736E+01,0.000000E+00 +1183722,fr,1,3.850000E+00,3.648170E+00,5.144202E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,-9.000000E+01 +1183740,fr,1,4.050000E+00,3.648170E+00,5.144202E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +1183753,fr,1,4.150000E+00,3.648170E+00,5.144202E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +1183777,fr,1,4.350000E+00,3.648170E+00,5.144202E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1183808,fr,1,4.550000E+00,3.648170E+00,5.144202E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +1183848,fr,1,4.950000E+00,3.648170E+00,5.144202E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1183872,fr,1,5.150000E+00,3.648170E+00,5.144202E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1184163,fr,1,3.550000E+00,8.157400E-01,4.715596E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799810E+01,0.000000E+00 +1184172,fr,3,3.650000E+00,8.157400E-01,4.715596E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1184173,fr,1,3.650000E+00,8.157400E-01,4.715596E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1184190,fr,1,3.750000E+00,8.157400E-01,4.715596E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,-9.000000E+01 +1184256,fr,1,4.350000E+00,8.157400E-01,4.715596E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1184258,fr,1,4.350000E+00,8.157400E-01,4.715596E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1184292,fr,1,4.650000E+00,8.157400E-01,4.715596E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1184295,fr,1,4.650000E+00,8.157400E-01,4.715596E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799427E+01,0.000000E+00 +1184327,fr,1,4.850000E+00,8.157400E-01,4.715596E+01,2.750000E+01,Active Shallow Crust,1.288924E+02,8.998903E+01,0.000000E+00 +1184640,fr,1,3.550000E+00,2.226460E+00,4.578016E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +1184643,fr,1,3.550000E+00,2.226460E+00,4.578016E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799862E+01,0.000000E+00 +1184645,fr,1,3.550000E+00,2.226460E+00,4.578016E+01,2.750000E+01,Active Shallow Crust,2.400118E+02,5.799852E+01,0.000000E+00 +1184653,fr,1,3.650000E+00,2.226460E+00,4.578016E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +1184664,fr,1,3.750000E+00,2.226460E+00,4.578016E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998883E+01,0.000000E+00 +1184679,fr,1,3.850000E+00,2.226460E+00,4.578016E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799804E+01,0.000000E+00 +1184694,fr,1,3.950000E+00,2.226460E+00,4.578016E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999102E+01,-9.000000E+01 +1184716,fr,1,4.150000E+00,2.226460E+00,4.578016E+01,1.500000E+01,Active Shallow Crust,2.400087E+02,5.799712E+01,0.000000E+00 +1185123,fr,1,3.550000E+00,1.752460E+00,5.255135E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.799828E+01,0.000000E+00 +1185132,fr,2,3.650000E+00,1.752460E+00,5.255135E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1186080,fr,1,3.550000E+00,1.576760E+00,5.022719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1186128,fr,1,3.950000E+00,1.576760E+00,5.022719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1186176,fr,1,4.350000E+00,1.576760E+00,5.022719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1186225,fr,1,4.750000E+00,1.576760E+00,5.022719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1186371,fr,1,5.950000E+00,1.576760E+00,5.022719E+01,5.000000E+00,Active Shallow Crust,2.400592E+02,5.799984E+01,0.000000E+00 +1186566,fr,1,3.550000E+00,2.359020E+00,4.184230E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998860E+01,-9.000000E+01 +1186572,fr,1,3.650000E+00,2.359020E+00,4.184230E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1186574,fr,1,3.650000E+00,2.359020E+00,4.184230E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1186585,fr,1,3.750000E+00,2.359020E+00,4.184230E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999105E+01,0.000000E+00 +1186587,fr,1,3.750000E+00,2.359020E+00,4.184230E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.801759E+01,0.000000E+00 +1186593,fr,1,3.750000E+00,2.359020E+00,4.184230E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.996741E+01,0.000000E+00 +1186596,fr,1,3.850000E+00,2.359020E+00,4.184230E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +1186608,fr,2,3.950000E+00,2.359020E+00,4.184230E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +1186620,fr,1,4.050000E+00,2.359020E+00,4.184230E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +1186635,fr,1,4.150000E+00,2.359020E+00,4.184230E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799703E+01,0.000000E+00 +1186638,fr,1,4.150000E+00,2.359020E+00,4.184230E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,-9.000000E+01 +1186641,fr,1,4.150000E+00,2.359020E+00,4.184230E+01,5.000000E+00,Active Shallow Crust,1.288985E+02,8.999341E+01,0.000000E+00 +1186656,fr,1,4.350000E+00,2.359020E+00,4.184230E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +1186681,fr,1,4.550000E+00,2.359020E+00,4.184230E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1186692,fr,1,4.650000E+00,2.359020E+00,4.184230E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +1186709,fr,1,4.750000E+00,2.359020E+00,4.184230E+01,2.750000E+01,Active Shallow Crust,2.400057E+02,5.800423E+01,0.000000E+00 +1186716,fr,1,4.850000E+00,2.359020E+00,4.184230E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1187041,fr,1,3.550000E+00,8.282800E+00,5.052639E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998717E+01,0.000000E+00 +1187052,fr,1,3.650000E+00,8.282800E+00,5.052639E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998857E+01,0.000000E+00 +1187109,fr,1,4.050000E+00,8.282800E+00,5.052639E+01,5.000000E+00,Active Shallow Crust,1.288917E+02,8.999279E+01,0.000000E+00 +1187112,fr,1,4.150000E+00,8.282800E+00,5.052639E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998714E+01,0.000000E+00 +1187121,fr,1,4.150000E+00,8.282800E+00,5.052639E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.999358E+01,0.000000E+00 +1187148,fr,1,4.450000E+00,8.282800E+00,5.052639E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999090E+01,0.000000E+00 +1187149,fr,2,4.450000E+00,8.282800E+00,5.052639E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999090E+01,0.000000E+00 +1187269,fr,1,5.450000E+00,8.282800E+00,5.052639E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1187353,fr,1,6.150000E+00,8.282800E+00,5.052639E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +1187521,fr,1,3.550000E+00,-3.286730E+00,4.791060E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1187536,fr,1,3.650000E+00,-3.286730E+00,4.791060E+01,1.500000E+01,Active Shallow Crust,2.400016E+02,5.801302E+01,0.000000E+00 +1187539,fr,1,3.650000E+00,-3.286730E+00,4.791060E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999086E+01,-9.000000E+01 +1187541,fr,1,3.650000E+00,-3.286730E+00,4.791060E+01,5.000000E+00,Active Shallow Crust,1.289006E+02,8.996355E+01,0.000000E+00 +1187545,fr,1,3.750000E+00,-3.286730E+00,4.791060E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1187546,fr,1,3.750000E+00,-3.286730E+00,4.791060E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1187554,fr,1,3.750000E+00,-3.286730E+00,4.791060E+01,1.500000E+01,Active Shallow Crust,1.288966E+02,8.996727E+01,0.000000E+00 +1187556,fr,1,3.850000E+00,-3.286730E+00,4.791060E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1187557,fr,2,3.850000E+00,-3.286730E+00,4.791060E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1187580,fr,1,4.050000E+00,-3.286730E+00,4.791060E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1187583,fr,1,4.050000E+00,-3.286730E+00,4.791060E+01,5.000000E+00,Active Shallow Crust,2.400061E+02,5.800604E+01,0.000000E+00 +1187592,fr,1,4.150000E+00,-3.286730E+00,4.791060E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +1187602,fr,1,4.150000E+00,-3.286730E+00,4.791060E+01,1.500000E+01,Active Shallow Crust,1.288971E+02,8.999407E+01,0.000000E+00 +1187607,fr,1,4.250000E+00,-3.286730E+00,4.791060E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799425E+01,0.000000E+00 +1187640,fr,1,4.550000E+00,-3.286730E+00,4.791060E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +1188000,fr,1,3.550000E+00,1.236280E+00,4.611380E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1188013,fr,2,3.650000E+00,1.236280E+00,4.611380E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +1188014,fr,1,3.650000E+00,1.236280E+00,4.611380E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +1188015,fr,1,3.650000E+00,1.236280E+00,4.611380E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801297E+01,0.000000E+00 +1188018,fr,1,3.650000E+00,1.236280E+00,4.611380E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,-9.000000E+01 +1188024,fr,1,3.750000E+00,1.236280E+00,4.611380E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +1188025,fr,1,3.750000E+00,1.236280E+00,4.611380E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +1188048,fr,1,3.950000E+00,1.236280E+00,4.611380E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1188055,fr,1,3.950000E+00,1.236280E+00,4.611380E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +1188094,fr,1,4.250000E+00,1.236280E+00,4.611380E+01,1.500000E+01,Active Shallow Crust,1.288946E+02,8.998093E+01,0.000000E+00 +1188501,fr,1,3.650000E+00,-3.773010E+00,4.649440E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996352E+01,0.000000E+00 +1188960,fr,1,3.550000E+00,1.766620E+00,4.174687E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +1188972,fr,3,3.650000E+00,1.766620E+00,4.174687E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1188996,fr,1,3.850000E+00,1.766620E+00,4.174687E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +1188997,fr,1,3.850000E+00,1.766620E+00,4.174687E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +1189044,fr,1,4.250000E+00,1.766620E+00,4.174687E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1189440,fr,4,3.550000E+00,-2.236750E+00,4.307121E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +1189456,fr,1,3.650000E+00,-2.236750E+00,4.307121E+01,1.500000E+01,Active Shallow Crust,2.400003E+02,5.801305E+01,0.000000E+00 +1189458,fr,1,3.650000E+00,-2.236750E+00,4.307121E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +1189464,fr,2,3.750000E+00,-2.236750E+00,4.307121E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +1189465,fr,1,3.750000E+00,-2.236750E+00,4.307121E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +1189478,fr,1,3.850000E+00,-2.236750E+00,4.307121E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +1189488,fr,1,3.950000E+00,-2.236750E+00,4.307121E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999071E+01,0.000000E+00 +1189489,fr,1,3.950000E+00,-2.236750E+00,4.307121E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999071E+01,0.000000E+00 +1189498,fr,1,3.950000E+00,-2.236750E+00,4.307121E+01,1.500000E+01,Active Shallow Crust,1.289012E+02,8.999303E+01,0.000000E+00 +1189500,fr,1,4.050000E+00,-2.236750E+00,4.307121E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1189501,fr,2,4.050000E+00,-2.236750E+00,4.307121E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1189515,fr,1,4.150000E+00,-2.236750E+00,4.307121E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.799729E+01,0.000000E+00 +1189534,fr,1,4.250000E+00,-2.236750E+00,4.307121E+01,1.500000E+01,Active Shallow Crust,1.288951E+02,8.998082E+01,0.000000E+00 +1189560,fr,1,4.550000E+00,-2.236750E+00,4.307121E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1189573,fr,1,4.650000E+00,-2.236750E+00,4.307121E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +1189593,fr,1,4.750000E+00,-2.236750E+00,4.307121E+01,5.000000E+00,Active Shallow Crust,1.288899E+02,8.998798E+01,0.000000E+00 +1189656,fr,1,5.350000E+00,-2.236750E+00,4.307121E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1189934,fr,1,3.650000E+00,-4.189020E+00,4.904679E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998822E+01,0.000000E+00 +1189954,fr,1,3.750000E+00,-4.189020E+00,4.904679E+01,1.500000E+01,Active Shallow Crust,1.288953E+02,8.996754E+01,0.000000E+00 +1189956,fr,1,3.850000E+00,-4.189020E+00,4.904679E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +1190088,fr,1,4.950000E+00,-4.189020E+00,4.904679E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +1190409,fr,1,3.550000E+00,4.556830E+00,5.092854E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999364E+01,0.000000E+00 +1190413,fr,2,3.650000E+00,4.556830E+00,5.092854E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998867E+01,0.000000E+00 +1190415,fr,2,3.650000E+00,4.556830E+00,5.092854E+01,5.000000E+00,Active Shallow Crust,2.400020E+02,5.801286E+01,0.000000E+00 +1190439,fr,1,3.850000E+00,4.556830E+00,5.092854E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799849E+01,0.000000E+00 +1190592,fr,1,5.150000E+00,4.556830E+00,5.092854E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1190895,fr,1,3.650000E+00,-9.931200E-01,4.485315E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801284E+01,0.000000E+00 +1190929,fr,1,3.950000E+00,-9.931200E-01,4.485315E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1190953,fr,1,4.150000E+00,-9.931200E-01,4.485315E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1191840,fr,1,3.550000E+00,-3.366450E+00,4.858135E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1191853,fr,4,3.650000E+00,-3.366450E+00,4.858135E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999108E+01,0.000000E+00 +1191857,fr,1,3.650000E+00,-3.366450E+00,4.858135E+01,2.750000E+01,Active Shallow Crust,2.400010E+02,5.801298E+01,0.000000E+00 +1191864,fr,2,3.750000E+00,-3.366450E+00,4.858135E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +1191876,fr,2,3.850000E+00,-3.366450E+00,4.858135E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +1191895,fr,1,3.950000E+00,-3.366450E+00,4.858135E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,-9.000000E+01 +1191900,fr,2,4.050000E+00,-3.366450E+00,4.858135E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1191921,fr,1,4.150000E+00,-3.366450E+00,4.858135E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.999332E+01,0.000000E+00 +1191924,fr,1,4.250000E+00,-3.366450E+00,4.858135E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +1191941,fr,1,4.350000E+00,-3.366450E+00,4.858135E+01,2.750000E+01,Active Shallow Crust,2.400087E+02,5.799598E+01,0.000000E+00 +1191945,fr,1,4.350000E+00,-3.366450E+00,4.858135E+01,5.000000E+00,Active Shallow Crust,1.288974E+02,8.998263E+01,0.000000E+00 +1192320,fr,1,3.550000E+00,7.234840E+00,4.814940E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999327E+01,0.000000E+00 +1192335,fr,1,3.650000E+00,7.234840E+00,4.814940E+01,5.000000E+00,Active Shallow Crust,2.400001E+02,5.801354E+01,0.000000E+00 +1192347,fr,1,3.750000E+00,7.234840E+00,4.814940E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801792E+01,0.000000E+00 +1192350,fr,1,3.750000E+00,7.234840E+00,4.814940E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998919E+01,-9.000000E+01 +1192356,fr,1,3.850000E+00,7.234840E+00,4.814940E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +1192368,fr,1,3.950000E+00,7.234840E+00,4.814940E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999151E+01,0.000000E+00 +1192373,fr,1,3.950000E+00,7.234840E+00,4.814940E+01,2.750000E+01,Active Shallow Crust,2.400196E+02,5.800518E+01,0.000000E+00 +1192380,fr,1,4.050000E+00,7.234840E+00,4.814940E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998865E+01,0.000000E+00 +1192385,fr,1,4.050000E+00,7.234840E+00,4.814940E+01,2.750000E+01,Active Shallow Crust,2.400063E+02,5.800569E+01,0.000000E+00 +1192425,fr,1,4.350000E+00,7.234840E+00,4.814940E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.998307E+01,0.000000E+00 +1192455,fr,1,4.650000E+00,7.234840E+00,4.814940E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799437E+01,0.000000E+00 +1192488,fr,1,4.950000E+00,7.234840E+00,4.814940E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +1192801,fr,2,3.550000E+00,-7.009000E-02,4.247915E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1192810,fr,1,3.550000E+00,-7.009000E-02,4.247915E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.999373E+01,0.000000E+00 +1192836,fr,1,3.850000E+00,-7.009000E-02,4.247915E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1192854,fr,1,3.950000E+00,-7.009000E-02,4.247915E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +1192862,fr,1,4.050000E+00,-7.009000E-02,4.247915E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1193280,fr,2,3.550000E+00,4.739200E-01,4.726734E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1193283,fr,1,3.550000E+00,4.739200E-01,4.726734E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799819E+01,0.000000E+00 +1193293,fr,2,3.650000E+00,4.739200E-01,4.726734E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1193295,fr,1,3.650000E+00,4.739200E-01,4.726734E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801293E+01,0.000000E+00 +1193304,fr,1,3.750000E+00,4.739200E-01,4.726734E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1193311,fr,1,3.750000E+00,4.739200E-01,4.726734E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +1193316,fr,1,3.850000E+00,4.739200E-01,4.726734E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1193338,fr,1,3.950000E+00,4.739200E-01,4.726734E+01,1.500000E+01,Active Shallow Crust,1.289003E+02,8.999366E+01,0.000000E+00 +1193382,fr,1,4.350000E+00,4.739200E-01,4.726734E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1193388,fr,1,4.450000E+00,4.739200E-01,4.726734E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1193414,fr,1,4.650000E+00,4.739200E-01,4.726734E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1193760,fr,1,3.550000E+00,-1.280450E+00,5.047617E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +1193766,fr,1,3.550000E+00,-1.280450E+00,5.047617E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,-9.000000E+01 +1193772,fr,1,3.650000E+00,-1.280450E+00,5.047617E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1193785,fr,1,3.750000E+00,-1.280450E+00,5.047617E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1194240,fr,1,3.550000E+00,1.967900E-01,4.264276E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1194241,fr,1,3.550000E+00,1.967900E-01,4.264276E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1194252,fr,2,3.650000E+00,1.967900E-01,4.264276E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1194261,fr,1,3.650000E+00,1.967900E-01,4.264276E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.996350E+01,0.000000E+00 +1194264,fr,3,3.750000E+00,1.967900E-01,4.264276E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1194300,fr,2,4.050000E+00,1.967900E-01,4.264276E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1194303,fr,1,4.050000E+00,1.967900E-01,4.264276E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.800571E+01,0.000000E+00 +1194324,fr,1,4.250000E+00,1.967900E-01,4.264276E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1194327,fr,1,4.250000E+00,1.967900E-01,4.264276E+01,5.000000E+00,Active Shallow Crust,2.400068E+02,5.799392E+01,0.000000E+00 +1194360,fr,1,4.550000E+00,1.967900E-01,4.264276E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1194726,fr,1,3.550000E+00,1.435500E-01,4.924065E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1194732,fr,1,3.650000E+00,1.435500E-01,4.924065E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1194734,fr,1,3.650000E+00,1.435500E-01,4.924065E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1194735,fr,2,3.650000E+00,1.435500E-01,4.924065E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801294E+01,0.000000E+00 +1194747,fr,1,3.750000E+00,1.435500E-01,4.924065E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.801764E+01,0.000000E+00 +1194753,fr,1,3.750000E+00,1.435500E-01,4.924065E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.996735E+01,0.000000E+00 +1194756,fr,2,3.850000E+00,1.435500E-01,4.924065E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1194773,fr,1,3.950000E+00,1.435500E-01,4.924065E+01,2.750000E+01,Active Shallow Crust,2.400202E+02,5.800506E+01,0.000000E+00 +1194792,fr,1,4.150000E+00,1.435500E-01,4.924065E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1194793,fr,1,4.150000E+00,1.435500E-01,4.924065E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1194840,fr,1,4.550000E+00,1.435500E-01,4.924065E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1194987,fr,1,5.750000E+00,1.435500E-01,4.924065E+01,5.000000E+00,Active Shallow Crust,2.400447E+02,5.800010E+01,0.000000E+00 +1195200,fr,2,3.550000E+00,8.784500E+00,5.033080E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998713E+01,0.000000E+00 +1195236,fr,1,3.850000E+00,8.784500E+00,5.033080E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1195248,fr,3,3.950000E+00,8.784500E+00,5.033080E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999187E+01,0.000000E+00 +1195251,fr,1,3.950000E+00,8.784500E+00,5.033080E+01,5.000000E+00,Active Shallow Crust,2.400200E+02,5.800441E+01,0.000000E+00 +1195284,fr,1,4.250000E+00,8.784500E+00,5.033080E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998849E+01,0.000000E+00 +1195350,fr,1,4.750000E+00,8.784500E+00,5.033080E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,-9.000000E+01 +1195353,fr,1,4.750000E+00,8.784500E+00,5.033080E+01,5.000000E+00,Active Shallow Crust,1.288878E+02,8.998798E+01,0.000000E+00 +1195680,fr,3,3.550000E+00,5.307310E+00,4.347393E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999268E+01,0.000000E+00 +1195681,fr,1,3.550000E+00,5.307310E+00,4.347393E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999268E+01,0.000000E+00 +1195692,fr,1,3.650000E+00,5.307310E+00,4.347393E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998695E+01,0.000000E+00 +1195695,fr,1,3.650000E+00,5.307310E+00,4.347393E+01,5.000000E+00,Active Shallow Crust,2.399997E+02,5.801334E+01,0.000000E+00 +1195696,fr,1,3.650000E+00,5.307310E+00,4.347393E+01,1.500000E+01,Active Shallow Crust,2.399997E+02,5.801334E+01,0.000000E+00 +1195697,fr,1,3.650000E+00,5.307310E+00,4.347393E+01,2.750000E+01,Active Shallow Crust,2.399997E+02,5.801325E+01,0.000000E+00 +1195704,fr,2,3.750000E+00,5.307310E+00,4.347393E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998837E+01,0.000000E+00 +1195716,fr,1,3.850000E+00,5.307310E+00,4.347393E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +1195728,fr,1,3.950000E+00,5.307310E+00,4.347393E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999077E+01,0.000000E+00 +1195752,fr,1,4.150000E+00,5.307310E+00,4.347393E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998900E+01,0.000000E+00 +1195764,fr,1,4.250000E+00,5.307310E+00,4.347393E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1195767,fr,1,4.250000E+00,5.307310E+00,4.347393E+01,5.000000E+00,Active Shallow Crust,2.400063E+02,5.799411E+01,0.000000E+00 +1195779,fr,1,4.350000E+00,5.307310E+00,4.347393E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799545E+01,0.000000E+00 +1195800,fr,1,4.550000E+00,5.307310E+00,4.347393E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +1195801,fr,1,4.550000E+00,5.307310E+00,4.347393E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +1195825,fr,2,4.750000E+00,5.307310E+00,4.347393E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +1195845,fr,1,4.850000E+00,5.307310E+00,4.347393E+01,5.000000E+00,Active Shallow Crust,1.288936E+02,8.998885E+01,0.000000E+00 +1195848,fr,1,4.950000E+00,5.307310E+00,4.347393E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1195969,fr,1,5.950000E+00,5.307310E+00,4.347393E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +1196196,fr,1,3.850000E+00,2.267140E+00,4.342760E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +1196205,fr,1,3.850000E+00,2.267140E+00,4.342760E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999352E+01,0.000000E+00 +1196220,fr,1,4.050000E+00,2.267140E+00,4.342760E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1196232,fr,1,4.150000E+00,2.267140E+00,4.342760E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999082E+01,0.000000E+00 +1196329,fr,1,4.950000E+00,2.267140E+00,4.342760E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1196641,fr,1,3.550000E+00,-8.695800E-01,4.931136E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1196652,fr,1,3.650000E+00,-8.695800E-01,4.931136E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1196655,fr,1,3.650000E+00,-8.695800E-01,4.931136E+01,5.000000E+00,Active Shallow Crust,2.400015E+02,5.801292E+01,0.000000E+00 +1196656,fr,1,3.650000E+00,-8.695800E-01,4.931136E+01,1.500000E+01,Active Shallow Crust,2.400015E+02,5.801292E+01,0.000000E+00 +1196659,fr,1,3.650000E+00,-8.695800E-01,4.931136E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,-9.000000E+01 +1196664,fr,2,3.750000E+00,-8.695800E-01,4.931136E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1196666,fr,1,3.750000E+00,-8.695800E-01,4.931136E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1196676,fr,1,3.850000E+00,-8.695800E-01,4.931136E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1196677,fr,2,3.850000E+00,-8.695800E-01,4.931136E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1196679,fr,1,3.850000E+00,-8.695800E-01,4.931136E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799783E+01,0.000000E+00 +1196691,fr,1,3.950000E+00,-8.695800E-01,4.931136E+01,5.000000E+00,Active Shallow Crust,2.400203E+02,5.800505E+01,0.000000E+00 +1196701,fr,1,4.050000E+00,-8.695800E-01,4.931136E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1196712,fr,1,4.150000E+00,-8.695800E-01,4.931136E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1196724,fr,2,4.250000E+00,-8.695800E-01,4.931136E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1196761,fr,1,4.550000E+00,-8.695800E-01,4.931136E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1196767,fr,1,4.550000E+00,-8.695800E-01,4.931136E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1196808,fr,1,4.950000E+00,-8.695800E-01,4.931136E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1196820,fr,1,5.050000E+00,-8.695800E-01,4.931136E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1197132,fr,1,3.650000E+00,-4.888310E+00,4.979180E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998840E+01,0.000000E+00 +1197193,fr,1,4.150000E+00,-4.888310E+00,4.979180E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1197324,fr,1,5.250000E+00,-4.888310E+00,4.979180E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1198080,fr,1,3.550000E+00,3.658030E+00,4.324366E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +1198083,fr,1,3.550000E+00,3.658030E+00,4.324366E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799874E+01,0.000000E+00 +1198093,fr,1,3.650000E+00,3.658030E+00,4.324366E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1198096,fr,1,3.650000E+00,3.658030E+00,4.324366E+01,1.500000E+01,Active Shallow Crust,2.400007E+02,5.801315E+01,0.000000E+00 +1198101,fr,1,3.650000E+00,3.658030E+00,4.324366E+01,5.000000E+00,Active Shallow Crust,1.289010E+02,8.996346E+01,0.000000E+00 +1198560,fr,2,3.550000E+00,4.655140E+00,4.096440E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999239E+01,0.000000E+00 +1198575,fr,1,3.650000E+00,4.655140E+00,4.096440E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801272E+01,0.000000E+00 +1198609,fr,1,3.950000E+00,4.655140E+00,4.096440E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1199048,fr,1,3.550000E+00,-6.644200E+00,4.740556E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999310E+01,-9.000000E+01 +1199520,fr,1,3.550000E+00,-6.537600E-01,4.705267E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1199521,fr,1,3.550000E+00,-6.537600E-01,4.705267E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1199522,fr,1,3.550000E+00,-6.537600E-01,4.705267E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1199529,fr,1,3.550000E+00,-6.537600E-01,4.705267E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999356E+01,0.000000E+00 +1199532,fr,2,3.650000E+00,-6.537600E-01,4.705267E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1199533,fr,1,3.650000E+00,-6.537600E-01,4.705267E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1199544,fr,3,3.750000E+00,-6.537600E-01,4.705267E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1199545,fr,2,3.750000E+00,-6.537600E-01,4.705267E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1199547,fr,1,3.750000E+00,-6.537600E-01,4.705267E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801749E+01,0.000000E+00 +1199556,fr,2,3.850000E+00,-6.537600E-01,4.705267E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +1199557,fr,1,3.850000E+00,-6.537600E-01,4.705267E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +1199559,fr,1,3.850000E+00,-6.537600E-01,4.705267E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799778E+01,0.000000E+00 +1199566,fr,1,3.850000E+00,-6.537600E-01,4.705267E+01,1.500000E+01,Active Shallow Crust,1.288957E+02,8.999361E+01,0.000000E+00 +1199568,fr,1,3.950000E+00,-6.537600E-01,4.705267E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1199570,fr,1,3.950000E+00,-6.537600E-01,4.705267E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1199589,fr,1,4.050000E+00,-6.537600E-01,4.705267E+01,5.000000E+00,Active Shallow Crust,1.288904E+02,8.999372E+01,0.000000E+00 +1199592,fr,1,4.150000E+00,-6.537600E-01,4.705267E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1199604,fr,1,4.250000E+00,-6.537600E-01,4.705267E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1199619,fr,1,4.350000E+00,-6.537600E-01,4.705267E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.799591E+01,0.000000E+00 +1199634,fr,1,4.450000E+00,-6.537600E-01,4.705267E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +1199637,fr,1,4.450000E+00,-6.537600E-01,4.705267E+01,5.000000E+00,Active Shallow Crust,1.288921E+02,8.999360E+01,0.000000E+00 +1199667,fr,1,4.750000E+00,-6.537600E-01,4.705267E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.800454E+01,0.000000E+00 +1199787,fr,1,5.750000E+00,-6.537600E-01,4.705267E+01,5.000000E+00,Active Shallow Crust,2.400392E+02,5.800196E+01,0.000000E+00 +1199871,fr,1,6.450000E+00,-6.628386E-01,4.706338E+01,7.200962E+00,Active Shallow Crust,2.400928E+02,5.799979E+01,0.000000E+00 +1200001,fr,1,3.550000E+00,4.888570E+00,4.539841E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999292E+01,0.000000E+00 +1200003,fr,1,3.550000E+00,4.888570E+00,4.539841E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799822E+01,0.000000E+00 +1200025,fr,1,3.750000E+00,4.888570E+00,4.539841E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +1200043,fr,1,3.850000E+00,4.888570E+00,4.539841E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,-9.000000E+01 +1200480,fr,1,3.550000E+00,-1.597000E+00,4.952817E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1200486,fr,1,3.550000E+00,-1.597000E+00,4.952817E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +1200489,fr,1,3.550000E+00,-1.597000E+00,4.952817E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999345E+01,0.000000E+00 +1200495,fr,1,3.650000E+00,-1.597000E+00,4.952817E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801301E+01,0.000000E+00 +1200508,fr,1,3.750000E+00,-1.597000E+00,4.952817E+01,1.500000E+01,Active Shallow Crust,2.400087E+02,5.801773E+01,0.000000E+00 +1200612,fr,1,4.650000E+00,-1.597000E+00,4.952817E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1200962,fr,1,3.550000E+00,3.995540E+00,4.249140E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +1201008,fr,1,3.950000E+00,3.995540E+00,4.249140E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1201440,fr,1,3.550000E+00,2.269080E+00,4.723932E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +1201453,fr,2,3.650000E+00,2.269080E+00,4.723932E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +1201464,fr,1,3.750000E+00,2.269080E+00,4.723932E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998912E+01,0.000000E+00 +1201465,fr,1,3.750000E+00,2.269080E+00,4.723932E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998912E+01,0.000000E+00 +1201509,fr,1,4.050000E+00,2.269080E+00,4.723932E+01,5.000000E+00,Active Shallow Crust,1.288903E+02,8.999422E+01,0.000000E+00 +1201524,fr,1,4.250000E+00,2.269080E+00,4.723932E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +1201536,fr,1,4.350000E+00,2.269080E+00,4.723932E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1201585,fr,1,4.750000E+00,2.269080E+00,4.723932E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1201921,fr,2,3.550000E+00,1.467800E+00,5.074259E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1201944,fr,1,3.750000E+00,1.467800E+00,5.074259E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1201953,fr,1,3.750000E+00,1.467800E+00,5.074259E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.996734E+01,0.000000E+00 +1201968,fr,2,3.950000E+00,1.467800E+00,5.074259E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1201986,fr,1,4.050000E+00,1.467800E+00,5.074259E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +1202004,fr,1,4.250000E+00,1.467800E+00,5.074259E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1202064,fr,1,4.750000E+00,1.467800E+00,5.074259E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1202400,fr,2,3.550000E+00,4.509320E+00,5.116631E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998735E+01,0.000000E+00 +1202401,fr,2,3.550000E+00,4.509320E+00,5.116631E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998735E+01,0.000000E+00 +1202411,fr,1,3.550000E+00,4.509320E+00,5.116631E+01,2.750000E+01,Active Shallow Crust,1.288963E+02,8.999368E+01,0.000000E+00 +1202436,fr,1,3.850000E+00,4.509320E+00,5.116631E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +1202448,fr,2,3.950000E+00,4.509320E+00,5.116631E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998803E+01,0.000000E+00 +1202449,fr,1,3.950000E+00,4.509320E+00,5.116631E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998803E+01,0.000000E+00 +1202464,fr,1,4.050000E+00,4.509320E+00,5.116631E+01,1.500000E+01,Active Shallow Crust,2.400073E+02,5.800615E+01,0.000000E+00 +1202481,fr,1,4.150000E+00,4.509320E+00,5.116631E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999366E+01,0.000000E+00 +1202520,fr,1,4.550000E+00,4.509320E+00,5.116631E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1202892,fr,1,3.650000E+00,1.165120E+00,5.060101E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1203108,fr,1,5.450000E+00,1.165120E+00,5.060101E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1203864,fr,1,3.750000E+00,-1.959380E+00,5.003457E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +1203903,fr,1,4.050000E+00,-1.959380E+00,5.003457E+01,5.000000E+00,Active Shallow Crust,2.400066E+02,5.800586E+01,0.000000E+00 +1203912,fr,1,4.150000E+00,-1.959380E+00,5.003457E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1204320,fr,3,3.550000E+00,4.650910E+00,5.045036E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998716E+01,0.000000E+00 +1204321,fr,1,3.550000E+00,4.650910E+00,5.045036E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998716E+01,0.000000E+00 +1204323,fr,1,3.550000E+00,4.650910E+00,5.045036E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799770E+01,0.000000E+00 +1204324,fr,1,3.550000E+00,4.650910E+00,5.045036E+01,1.500000E+01,Active Shallow Crust,2.400123E+02,5.799770E+01,0.000000E+00 +1204326,fr,2,3.550000E+00,4.650910E+00,5.045036E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998701E+01,-9.000000E+01 +1204332,fr,2,3.650000E+00,4.650910E+00,5.045036E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +1204334,fr,2,3.650000E+00,4.650910E+00,5.045036E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +1204338,fr,2,3.650000E+00,4.650910E+00,5.045036E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998842E+01,-9.000000E+01 +1204345,fr,1,3.750000E+00,4.650910E+00,5.045036E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1204347,fr,1,3.750000E+00,4.650910E+00,5.045036E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.801753E+01,0.000000E+00 +1204350,fr,1,3.750000E+00,4.650910E+00,5.045036E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,-9.000000E+01 +1204356,fr,3,3.850000E+00,4.650910E+00,5.045036E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +1204357,fr,2,3.850000E+00,4.650910E+00,5.045036E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +1204368,fr,2,3.950000E+00,4.650910E+00,5.045036E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999190E+01,0.000000E+00 +1204369,fr,1,3.950000E+00,4.650910E+00,5.045036E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999190E+01,0.000000E+00 +1204375,fr,1,3.950000E+00,4.650910E+00,5.045036E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999181E+01,-9.000000E+01 +1204376,fr,1,3.950000E+00,4.650910E+00,5.045036E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999181E+01,-9.000000E+01 +1204377,fr,1,3.950000E+00,4.650910E+00,5.045036E+01,5.000000E+00,Active Shallow Crust,1.288995E+02,8.999393E+01,0.000000E+00 +1204380,fr,1,4.050000E+00,4.650910E+00,5.045036E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +1204382,fr,1,4.050000E+00,4.650910E+00,5.045036E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +1204386,fr,1,4.050000E+00,4.650910E+00,5.045036E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,-9.000000E+01 +1204392,fr,1,4.150000E+00,4.650910E+00,5.045036E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +1204404,fr,1,4.250000E+00,4.650910E+00,5.045036E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999139E+01,0.000000E+00 +1204408,fr,1,4.250000E+00,4.650910E+00,5.045036E+01,1.500000E+01,Active Shallow Crust,2.400090E+02,5.799380E+01,0.000000E+00 +1204417,fr,1,4.350000E+00,4.650910E+00,5.045036E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1204441,fr,1,4.550000E+00,4.650910E+00,5.045036E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1204455,fr,1,4.650000E+00,4.650910E+00,5.045036E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799460E+01,0.000000E+00 +1204822,fr,1,3.650000E+00,1.374170E+00,4.168182E+01,1.500000E+01,Active Shallow Crust,1.289008E+02,8.996343E+01,0.000000E+00 +1204824,fr,1,3.750000E+00,1.374170E+00,4.168182E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +1204848,fr,2,3.950000E+00,1.374170E+00,4.168182E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1204850,fr,1,3.950000E+00,1.374170E+00,4.168182E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1204851,fr,1,3.950000E+00,1.374170E+00,4.168182E+01,5.000000E+00,Active Shallow Crust,2.400192E+02,5.800480E+01,0.000000E+00 +1204861,fr,1,4.050000E+00,1.374170E+00,4.168182E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +1204872,fr,1,4.150000E+00,1.374170E+00,4.168182E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +1204885,fr,1,4.250000E+00,1.374170E+00,4.168182E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1204886,fr,1,4.250000E+00,1.374170E+00,4.168182E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1204944,fr,1,4.750000E+00,1.374170E+00,4.168182E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1205280,fr,1,3.550000E+00,4.280760E+00,5.113392E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998734E+01,0.000000E+00 +1205292,fr,1,3.650000E+00,4.280760E+00,5.113392E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +1205298,fr,1,3.650000E+00,4.280760E+00,5.113392E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,-9.000000E+01 +1205304,fr,1,3.750000E+00,4.280760E+00,5.113392E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1205316,fr,1,3.850000E+00,4.280760E+00,5.113392E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +1205317,fr,1,3.850000E+00,4.280760E+00,5.113392E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +1205388,fr,1,4.450000E+00,4.280760E+00,5.113392E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999102E+01,0.000000E+00 +1205401,fr,1,4.550000E+00,4.280760E+00,5.113392E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1205761,fr,1,3.550000E+00,-6.049840E+00,4.733998E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999316E+01,0.000000E+00 +1205859,fr,1,4.350000E+00,-6.049840E+00,4.733998E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.799599E+01,0.000000E+00 +1206240,fr,1,3.550000E+00,5.311750E+00,4.479941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999284E+01,0.000000E+00 +1206241,fr,1,3.550000E+00,5.311750E+00,4.479941E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999284E+01,0.000000E+00 +1206246,fr,1,3.550000E+00,5.311750E+00,4.479941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999276E+01,-9.000000E+01 +1206252,fr,3,3.650000E+00,5.311750E+00,4.479941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998724E+01,0.000000E+00 +1206253,fr,1,3.650000E+00,5.311750E+00,4.479941E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998724E+01,0.000000E+00 +1206254,fr,1,3.650000E+00,5.311750E+00,4.479941E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998724E+01,0.000000E+00 +1206264,fr,3,3.750000E+00,5.311750E+00,4.479941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998863E+01,0.000000E+00 +1206270,fr,1,3.750000E+00,5.311750E+00,4.479941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998850E+01,-9.000000E+01 +1206276,fr,1,3.850000E+00,5.311750E+00,4.479941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1206278,fr,1,3.850000E+00,5.311750E+00,4.479941E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1206279,fr,1,3.850000E+00,5.311750E+00,4.479941E+01,5.000000E+00,Active Shallow Crust,2.400101E+02,5.799745E+01,0.000000E+00 +1206300,fr,1,4.050000E+00,5.311750E+00,4.479941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999195E+01,0.000000E+00 +1206338,fr,1,4.350000E+00,5.311750E+00,4.479941E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998860E+01,0.000000E+00 +1206345,fr,1,4.350000E+00,5.311750E+00,4.479941E+01,5.000000E+00,Active Shallow Crust,1.288985E+02,8.998244E+01,0.000000E+00 +1206372,fr,1,4.650000E+00,5.311750E+00,4.479941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1206547,fr,1,6.050000E+00,5.311750E+00,4.479941E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,-9.000000E+01 +1206720,fr,2,3.550000E+00,1.308080E+00,4.837943E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1206723,fr,1,3.550000E+00,1.308080E+00,4.837943E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799815E+01,0.000000E+00 +1206744,fr,1,3.750000E+00,1.308080E+00,4.837943E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +1206780,fr,1,4.050000E+00,1.308080E+00,4.837943E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +1206793,fr,1,4.150000E+00,1.308080E+00,4.837943E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1206813,fr,1,4.250000E+00,1.308080E+00,4.837943E+01,5.000000E+00,Active Shallow Crust,1.288942E+02,8.998090E+01,0.000000E+00 +1207213,fr,1,3.650000E+00,-2.030910E+00,5.029494E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999139E+01,0.000000E+00 +1207272,fr,1,4.150000E+00,-2.030910E+00,5.029494E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +1207548,fr,1,6.450000E+00,-2.030901E+00,5.029494E+01,8.491219E+00,Active Shallow Crust,3.599999E+02,8.999004E+01,0.000000E+00 +1207716,fr,1,3.850000E+00,-1.340000E+00,4.454616E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1208172,fr,1,3.650000E+00,4.811900E-01,5.017914E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1208205,fr,1,3.850000E+00,4.811900E-01,5.017914E+01,5.000000E+00,Active Shallow Crust,1.288953E+02,8.999371E+01,0.000000E+00 +1208208,fr,1,3.950000E+00,4.811900E-01,5.017914E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1208209,fr,1,3.950000E+00,4.811900E-01,5.017914E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1208271,fr,1,4.450000E+00,4.811900E-01,5.017914E+01,5.000000E+00,Active Shallow Crust,2.400063E+02,5.799488E+01,0.000000E+00 +1208341,fr,1,5.050000E+00,4.811900E-01,5.017914E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1208353,fr,1,5.150000E+00,4.811900E-01,5.017914E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1208664,fr,1,3.750000E+00,5.796740E+00,4.233105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998816E+01,0.000000E+00 +1209120,fr,2,3.550000E+00,-6.006000E-01,4.866406E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1209121,fr,1,3.550000E+00,-6.006000E-01,4.866406E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1209123,fr,1,3.550000E+00,-6.006000E-01,4.866406E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799821E+01,0.000000E+00 +1209126,fr,1,3.550000E+00,-6.006000E-01,4.866406E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,-9.000000E+01 +1209130,fr,1,3.550000E+00,-6.006000E-01,4.866406E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.999376E+01,0.000000E+00 +1209141,fr,1,3.650000E+00,-6.006000E-01,4.866406E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.996357E+01,0.000000E+00 +1209144,fr,3,3.750000E+00,-6.006000E-01,4.866406E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1209222,fr,1,4.350000E+00,-6.006000E-01,4.866406E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +1209240,fr,1,4.550000E+00,-6.006000E-01,4.866406E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1209244,fr,1,4.550000E+00,-6.006000E-01,4.866406E+01,1.500000E+01,Active Shallow Crust,2.400100E+02,5.799750E+01,0.000000E+00 +1209252,fr,1,4.650000E+00,-6.006000E-01,4.866406E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1209268,fr,1,4.750000E+00,-6.006000E-01,4.866406E+01,1.500000E+01,Active Shallow Crust,2.400083E+02,5.800467E+01,0.000000E+00 +1209290,fr,1,4.950000E+00,-6.006000E-01,4.866406E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1209312,fr,1,5.150000E+00,-6.006000E-01,4.866406E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1209600,fr,5,3.550000E+00,4.198500E+00,5.038620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998714E+01,0.000000E+00 +1209601,fr,2,3.550000E+00,4.198500E+00,5.038620E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998714E+01,0.000000E+00 +1209603,fr,1,3.550000E+00,4.198500E+00,5.038620E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799852E+01,0.000000E+00 +1209606,fr,1,3.550000E+00,4.198500E+00,5.038620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998699E+01,-9.000000E+01 +1209609,fr,1,3.550000E+00,4.198500E+00,5.038620E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999357E+01,0.000000E+00 +1209612,fr,4,3.650000E+00,4.198500E+00,5.038620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998854E+01,0.000000E+00 +1209613,fr,5,3.650000E+00,4.198500E+00,5.038620E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998854E+01,0.000000E+00 +1209615,fr,2,3.650000E+00,4.198500E+00,5.038620E+01,5.000000E+00,Active Shallow Crust,2.400021E+02,5.801220E+01,0.000000E+00 +1209616,fr,1,3.650000E+00,4.198500E+00,5.038620E+01,1.500000E+01,Active Shallow Crust,2.400021E+02,5.801220E+01,0.000000E+00 +1209618,fr,1,3.650000E+00,4.198500E+00,5.038620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998840E+01,-9.000000E+01 +1209621,fr,1,3.650000E+00,4.198500E+00,5.038620E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.996360E+01,0.000000E+00 +1209624,fr,2,3.750000E+00,4.198500E+00,5.038620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1209626,fr,1,3.750000E+00,4.198500E+00,5.038620E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1209630,fr,1,3.750000E+00,4.198500E+00,5.038620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,-9.000000E+01 +1209633,fr,2,3.750000E+00,4.198500E+00,5.038620E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996706E+01,0.000000E+00 +1209638,fr,1,3.850000E+00,4.198500E+00,5.038620E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999090E+01,0.000000E+00 +1209642,fr,1,3.850000E+00,4.198500E+00,5.038620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999079E+01,-9.000000E+01 +1209648,fr,1,3.950000E+00,4.198500E+00,5.038620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999188E+01,0.000000E+00 +1209649,fr,2,3.950000E+00,4.198500E+00,5.038620E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999188E+01,0.000000E+00 +1209650,fr,1,3.950000E+00,4.198500E+00,5.038620E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999188E+01,0.000000E+00 +1209654,fr,1,3.950000E+00,4.198500E+00,5.038620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999179E+01,-9.000000E+01 +1209659,fr,2,3.950000E+00,4.198500E+00,5.038620E+01,2.750000E+01,Active Shallow Crust,1.288998E+02,8.999391E+01,0.000000E+00 +1209660,fr,2,4.050000E+00,4.198500E+00,5.038620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998915E+01,0.000000E+00 +1209662,fr,1,4.050000E+00,4.198500E+00,5.038620E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998915E+01,0.000000E+00 +1209663,fr,1,4.050000E+00,4.198500E+00,5.038620E+01,5.000000E+00,Active Shallow Crust,2.400060E+02,5.800598E+01,0.000000E+00 +1209672,fr,1,4.150000E+00,4.198500E+00,5.038620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1209675,fr,1,4.150000E+00,4.198500E+00,5.038620E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.799780E+01,0.000000E+00 +1209693,fr,1,4.250000E+00,4.198500E+00,5.038620E+01,5.000000E+00,Active Shallow Crust,1.288928E+02,8.998109E+01,0.000000E+00 +1209696,fr,1,4.350000E+00,4.198500E+00,5.038620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +1209708,fr,1,4.450000E+00,4.198500E+00,5.038620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1209710,fr,1,4.450000E+00,4.198500E+00,5.038620E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1209720,fr,1,4.550000E+00,4.198500E+00,5.038620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1209721,fr,1,4.550000E+00,4.198500E+00,5.038620E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1209733,fr,1,4.650000E+00,4.198500E+00,5.038620E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998913E+01,0.000000E+00 +1209734,fr,2,4.650000E+00,4.198500E+00,5.038620E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998913E+01,0.000000E+00 +1209744,fr,1,4.750000E+00,4.198500E+00,5.038620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +1209768,fr,1,4.950000E+00,4.198500E+00,5.038620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +1209780,fr,1,5.050000E+00,4.198500E+00,5.038620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +1209786,fr,1,5.050000E+00,4.198500E+00,5.038620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +1209828,fr,1,5.450000E+00,4.198500E+00,5.038620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1209874,fr,1,5.750000E+00,4.198500E+00,5.038620E+01,1.500000E+01,Active Shallow Crust,1.288674E+02,8.999096E+01,0.000000E+00 +1210080,fr,1,3.550000E+00,5.596260E+00,4.908524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998679E+01,0.000000E+00 +1210104,fr,1,3.750000E+00,5.596260E+00,4.908524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1210560,fr,8,3.550000E+00,7.510770E+00,4.702672E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999313E+01,0.000000E+00 +1210561,fr,4,3.550000E+00,7.510770E+00,4.702672E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999313E+01,0.000000E+00 +1210562,fr,2,3.550000E+00,7.510770E+00,4.702672E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999313E+01,0.000000E+00 +1210563,fr,2,3.550000E+00,7.510770E+00,4.702672E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799831E+01,0.000000E+00 +1210564,fr,1,3.550000E+00,7.510770E+00,4.702672E+01,1.500000E+01,Active Shallow Crust,2.400125E+02,5.799831E+01,0.000000E+00 +1210572,fr,3,3.650000E+00,7.510770E+00,4.702672E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998775E+01,0.000000E+00 +1210573,fr,1,3.650000E+00,7.510770E+00,4.702672E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998775E+01,0.000000E+00 +1210575,fr,2,3.650000E+00,7.510770E+00,4.702672E+01,5.000000E+00,Active Shallow Crust,2.400004E+02,5.801294E+01,0.000000E+00 +1210577,fr,1,3.650000E+00,7.510770E+00,4.702672E+01,2.750000E+01,Active Shallow Crust,2.400004E+02,5.801286E+01,0.000000E+00 +1210584,fr,3,3.750000E+00,7.510770E+00,4.702672E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998908E+01,0.000000E+00 +1210585,fr,1,3.750000E+00,7.510770E+00,4.702672E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998908E+01,0.000000E+00 +1210587,fr,1,3.750000E+00,7.510770E+00,4.702672E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801726E+01,0.000000E+00 +1210591,fr,1,3.750000E+00,7.510770E+00,4.702672E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998895E+01,-9.000000E+01 +1210594,fr,2,3.750000E+00,7.510770E+00,4.702672E+01,1.500000E+01,Active Shallow Crust,1.288967E+02,8.996693E+01,0.000000E+00 +1210596,fr,1,3.850000E+00,7.510770E+00,4.702672E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1210609,fr,6,3.950000E+00,7.510770E+00,4.702672E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +1210610,fr,1,3.950000E+00,7.510770E+00,4.702672E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +1210613,fr,1,3.950000E+00,7.510770E+00,4.702672E+01,2.750000E+01,Active Shallow Crust,2.400196E+02,5.800537E+01,0.000000E+00 +1210614,fr,1,3.950000E+00,7.510770E+00,4.702672E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999123E+01,-9.000000E+01 +1210620,fr,2,4.050000E+00,7.510770E+00,4.702672E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998840E+01,0.000000E+00 +1210621,fr,2,4.050000E+00,7.510770E+00,4.702672E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998840E+01,0.000000E+00 +1210625,fr,1,4.050000E+00,7.510770E+00,4.702672E+01,2.750000E+01,Active Shallow Crust,2.400058E+02,5.800624E+01,0.000000E+00 +1210626,fr,1,4.050000E+00,7.510770E+00,4.702672E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998827E+01,-9.000000E+01 +1210629,fr,1,4.050000E+00,7.510770E+00,4.702672E+01,5.000000E+00,Active Shallow Crust,1.288910E+02,8.999227E+01,0.000000E+00 +1210632,fr,1,4.150000E+00,7.510770E+00,4.702672E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +1210634,fr,1,4.150000E+00,7.510770E+00,4.702672E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +1210644,fr,1,4.250000E+00,7.510770E+00,4.702672E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999079E+01,0.000000E+00 +1210645,fr,1,4.250000E+00,7.510770E+00,4.702672E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999079E+01,0.000000E+00 +1210646,fr,1,4.250000E+00,7.510770E+00,4.702672E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999079E+01,0.000000E+00 +1210649,fr,1,4.250000E+00,7.510770E+00,4.702672E+01,2.750000E+01,Active Shallow Crust,2.400079E+02,5.799411E+01,0.000000E+00 +1210659,fr,1,4.350000E+00,7.510770E+00,4.702672E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799619E+01,0.000000E+00 +1210667,fr,1,4.350000E+00,7.510770E+00,4.702672E+01,2.750000E+01,Active Shallow Crust,1.288984E+02,8.998254E+01,0.000000E+00 +1210668,fr,1,4.450000E+00,7.510770E+00,4.702672E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +1210677,fr,1,4.450000E+00,7.510770E+00,4.702672E+01,5.000000E+00,Active Shallow Crust,1.288916E+02,8.999390E+01,0.000000E+00 +1210691,fr,1,4.550000E+00,7.510770E+00,4.702672E+01,2.750000E+01,Active Shallow Crust,1.288940E+02,8.998567E+01,0.000000E+00 +1210695,fr,1,4.650000E+00,7.510770E+00,4.702672E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799444E+01,0.000000E+00 +1210701,fr,1,4.650000E+00,7.510770E+00,4.702672E+01,5.000000E+00,Active Shallow Crust,1.288914E+02,8.998676E+01,0.000000E+00 +1210722,fr,1,4.850000E+00,7.510770E+00,4.702672E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999066E+01,-9.000000E+01 +1210730,fr,1,4.950000E+00,7.510770E+00,4.702672E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1210752,fr,1,5.150000E+00,7.510770E+00,4.702672E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1210860,fr,1,6.050000E+00,7.510771E+00,4.702672E+01,5.357596E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1211042,fr,1,3.550000E+00,-1.159950E+00,4.647131E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1211052,fr,1,3.650000E+00,-1.159950E+00,4.647131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +1211064,fr,3,3.750000E+00,-1.159950E+00,4.647131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +1211076,fr,2,3.850000E+00,-1.159950E+00,4.647131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1211077,fr,1,3.850000E+00,-1.159950E+00,4.647131E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1211078,fr,1,3.850000E+00,-1.159950E+00,4.647131E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1211087,fr,1,3.850000E+00,-1.159950E+00,4.647131E+01,2.750000E+01,Active Shallow Crust,1.288956E+02,8.999386E+01,0.000000E+00 +1211088,fr,1,3.950000E+00,-1.159950E+00,4.647131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1211089,fr,1,3.950000E+00,-1.159950E+00,4.647131E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1211103,fr,1,4.050000E+00,-1.159950E+00,4.647131E+01,5.000000E+00,Active Shallow Crust,2.400059E+02,5.800584E+01,0.000000E+00 +1211114,fr,1,4.150000E+00,-1.159950E+00,4.647131E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1211121,fr,1,4.150000E+00,-1.159950E+00,4.647131E+01,5.000000E+00,Active Shallow Crust,1.288974E+02,8.999391E+01,0.000000E+00 +1211125,fr,1,4.250000E+00,-1.159950E+00,4.647131E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1211130,fr,1,4.250000E+00,-1.159950E+00,4.647131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,-9.000000E+01 +1211136,fr,1,4.350000E+00,-1.159950E+00,4.647131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1211160,fr,1,4.550000E+00,-1.159950E+00,4.647131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1211172,fr,1,4.650000E+00,-1.159950E+00,4.647131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1211190,fr,1,4.750000E+00,-1.159950E+00,4.647131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +1211199,fr,1,4.850000E+00,-1.159950E+00,4.647131E+01,5.000000E+00,Active Shallow Crust,2.400172E+02,5.800226E+01,0.000000E+00 +1211329,fr,1,5.950000E+00,-1.159950E+00,4.647131E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1211520,fr,1,3.550000E+00,1.312730E+00,4.625268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +1211522,fr,1,3.550000E+00,1.312730E+00,4.625268E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +1211526,fr,1,3.550000E+00,1.312730E+00,4.625268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,-9.000000E+01 +1211530,fr,1,3.550000E+00,1.312730E+00,4.625268E+01,1.500000E+01,Active Shallow Crust,1.288964E+02,8.999390E+01,0.000000E+00 +1211533,fr,1,3.650000E+00,1.312730E+00,4.625268E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +1211544,fr,1,3.750000E+00,1.312730E+00,4.625268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +1211547,fr,1,3.750000E+00,1.312730E+00,4.625268E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.801756E+01,0.000000E+00 +1211548,fr,1,3.750000E+00,1.312730E+00,4.625268E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.801756E+01,0.000000E+00 +1211559,fr,1,3.850000E+00,1.312730E+00,4.625268E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799787E+01,0.000000E+00 +1211577,fr,1,3.950000E+00,1.312730E+00,4.625268E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.999395E+01,0.000000E+00 +1211583,fr,1,4.050000E+00,1.312730E+00,4.625268E+01,5.000000E+00,Active Shallow Crust,2.400059E+02,5.800579E+01,0.000000E+00 +1211592,fr,1,4.150000E+00,1.312730E+00,4.625268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1211601,fr,1,4.150000E+00,1.312730E+00,4.625268E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.999388E+01,0.000000E+00 +1211604,fr,1,4.250000E+00,1.312730E+00,4.625268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1211680,fr,1,4.850000E+00,1.312730E+00,4.625268E+01,1.500000E+01,Active Shallow Crust,2.400171E+02,5.800226E+01,0.000000E+00 +1212012,fr,2,3.650000E+00,3.942710E+00,4.341827E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1212014,fr,1,3.650000E+00,3.942710E+00,4.341827E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1212063,fr,1,4.050000E+00,3.942710E+00,4.341827E+01,5.000000E+00,Active Shallow Crust,2.400056E+02,5.800552E+01,0.000000E+00 +1212496,fr,1,3.650000E+00,2.724050E+00,4.935836E+01,1.500000E+01,Active Shallow Crust,2.400008E+02,5.801332E+01,0.000000E+00 +1212504,fr,1,3.750000E+00,2.724050E+00,4.935836E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1212505,fr,1,3.750000E+00,2.724050E+00,4.935836E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1212530,fr,1,3.950000E+00,2.724050E+00,4.935836E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +1212552,fr,1,4.150000E+00,2.724050E+00,4.935836E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1212564,fr,2,4.250000E+00,2.724050E+00,4.935836E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +1212997,fr,1,3.850000E+00,2.448030E+00,5.192992E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998899E+01,0.000000E+00 +1213057,fr,1,4.350000E+00,2.448030E+00,5.192992E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1213563,fr,1,4.550000E+00,-3.873910E+00,4.412782E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.799735E+01,0.000000E+00 +1213923,fr,1,3.550000E+00,7.336900E-01,5.200777E+01,5.000000E+00,Active Shallow Crust,2.400128E+02,5.799828E+01,0.000000E+00 +1213933,fr,1,3.650000E+00,7.336900E-01,5.200777E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +1213990,fr,1,4.050000E+00,7.336900E-01,5.200777E+01,1.500000E+01,Active Shallow Crust,1.288897E+02,8.999368E+01,0.000000E+00 +1214886,fr,1,3.550000E+00,-3.389700E+00,4.390794E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,-9.000000E+01 +1214889,fr,1,3.550000E+00,-3.389700E+00,4.390794E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999455E+01,0.000000E+00 +1214893,fr,2,3.650000E+00,-3.389700E+00,4.390794E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +1215360,fr,1,3.550000E+00,8.135930E+00,4.825030E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998657E+01,0.000000E+00 +1215361,fr,1,3.550000E+00,8.135930E+00,4.825030E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998657E+01,0.000000E+00 +1215362,fr,1,3.550000E+00,8.135930E+00,4.825030E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998657E+01,0.000000E+00 +1215372,fr,2,3.650000E+00,8.135930E+00,4.825030E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998803E+01,0.000000E+00 +1215385,fr,1,3.750000E+00,8.135930E+00,4.825030E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1215393,fr,1,3.750000E+00,8.135930E+00,4.825030E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.996752E+01,0.000000E+00 +1215396,fr,1,3.850000E+00,8.135930E+00,4.825030E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1215397,fr,1,3.850000E+00,8.135930E+00,4.825030E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1215402,fr,1,3.850000E+00,8.135930E+00,4.825030E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,-9.000000E+01 +1215411,fr,1,3.950000E+00,8.135930E+00,4.825030E+01,5.000000E+00,Active Shallow Crust,2.400195E+02,5.800527E+01,0.000000E+00 +1215432,fr,1,4.150000E+00,8.135930E+00,4.825030E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999327E+01,0.000000E+00 +1215444,fr,2,4.250000E+00,8.135930E+00,4.825030E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998800E+01,0.000000E+00 +1215453,fr,1,4.250000E+00,8.135930E+00,4.825030E+01,5.000000E+00,Active Shallow Crust,1.288948E+02,8.998101E+01,0.000000E+00 +1215480,fr,1,4.550000E+00,8.135930E+00,4.825030E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999151E+01,0.000000E+00 +1215492,fr,1,4.650000E+00,8.135930E+00,4.825030E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998865E+01,0.000000E+00 +1215540,fr,1,5.050000E+00,8.135930E+00,4.825030E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +1215744,fr,1,6.750000E+00,8.135946E+00,4.825030E+01,1.199416E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1215876,fr,2,3.850000E+00,2.837860E+00,4.029652E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +1216320,fr,1,3.550000E+00,2.247810E+00,4.960176E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1216335,fr,1,3.650000E+00,2.247810E+00,4.960176E+01,5.000000E+00,Active Shallow Crust,2.400016E+02,5.801252E+01,0.000000E+00 +1216356,fr,1,3.850000E+00,2.247810E+00,4.960176E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +1216430,fr,1,4.450000E+00,2.247810E+00,4.960176E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1216801,fr,2,3.550000E+00,-1.173340E+00,4.291355E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999077E+01,0.000000E+00 +1216803,fr,1,3.550000E+00,-1.173340E+00,4.291355E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799802E+01,0.000000E+00 +1216806,fr,1,3.550000E+00,-1.173340E+00,4.291355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999066E+01,-9.000000E+01 +1216810,fr,1,3.550000E+00,-1.173340E+00,4.291355E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.999354E+01,0.000000E+00 +1216812,fr,2,3.650000E+00,-1.173340E+00,4.291355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1216813,fr,1,3.650000E+00,-1.173340E+00,4.291355E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1216815,fr,1,3.650000E+00,-1.173340E+00,4.291355E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801292E+01,0.000000E+00 +1216824,fr,4,3.750000E+00,-1.173340E+00,4.291355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +1216830,fr,1,3.750000E+00,-1.173340E+00,4.291355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,-9.000000E+01 +1216832,fr,1,3.750000E+00,-1.173340E+00,4.291355E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,-9.000000E+01 +1216836,fr,5,3.850000E+00,-1.173340E+00,4.291355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +1216854,fr,1,3.950000E+00,-1.173340E+00,4.291355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999057E+01,-9.000000E+01 +1216860,fr,1,4.050000E+00,-1.173340E+00,4.291355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +1216980,fr,1,5.050000E+00,-1.173340E+00,4.291355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1217283,fr,1,3.550000E+00,4.059640E+00,4.396584E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799707E+01,0.000000E+00 +1217286,fr,1,3.550000E+00,4.059640E+00,4.396584E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999266E+01,-9.000000E+01 +1217292,fr,2,3.650000E+00,4.059640E+00,4.396584E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998706E+01,0.000000E+00 +1217302,fr,1,3.650000E+00,4.059640E+00,4.396584E+01,1.500000E+01,Active Shallow Crust,1.289010E+02,8.996348E+01,0.000000E+00 +1217304,fr,1,3.750000E+00,4.059640E+00,4.396584E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998847E+01,0.000000E+00 +1217322,fr,1,3.850000E+00,4.059640E+00,4.396584E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,-9.000000E+01 +1217329,fr,1,3.950000E+00,4.059640E+00,4.396584E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +1217344,fr,1,4.050000E+00,4.059640E+00,4.396584E+01,1.500000E+01,Active Shallow Crust,2.400062E+02,5.800560E+01,0.000000E+00 +1217349,fr,1,4.050000E+00,4.059640E+00,4.396584E+01,5.000000E+00,Active Shallow Crust,1.288899E+02,8.999388E+01,0.000000E+00 +1217352,fr,2,4.150000E+00,4.059640E+00,4.396584E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +1217355,fr,1,4.150000E+00,4.059640E+00,4.396584E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799757E+01,0.000000E+00 +1217385,fr,1,4.350000E+00,4.059640E+00,4.396584E+01,5.000000E+00,Active Shallow Crust,1.288980E+02,8.998293E+01,0.000000E+00 +1217406,fr,1,4.550000E+00,4.059640E+00,4.396584E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,-9.000000E+01 +1217436,fr,1,4.850000E+00,4.059640E+00,4.396584E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1217774,fr,1,3.650000E+00,5.775630E+00,4.459629E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998720E+01,0.000000E+00 +1217775,fr,1,3.650000E+00,5.775630E+00,4.459629E+01,5.000000E+00,Active Shallow Crust,2.399999E+02,5.801336E+01,0.000000E+00 +1217801,fr,1,3.850000E+00,5.775630E+00,4.459629E+01,2.750000E+01,Active Shallow Crust,2.400108E+02,5.799746E+01,0.000000E+00 +1217952,fr,1,5.150000E+00,5.775630E+00,4.459629E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1218240,fr,1,3.550000E+00,4.450940E+00,5.260734E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998775E+01,0.000000E+00 +1218253,fr,1,3.650000E+00,4.450940E+00,5.260734E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998908E+01,0.000000E+00 +1218258,fr,1,3.650000E+00,4.450940E+00,5.260734E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998896E+01,-9.000000E+01 +1218820,fr,1,4.350000E+00,4.883440E+00,4.797802E+01,1.500000E+01,Active Shallow Crust,2.400091E+02,5.799556E+01,0.000000E+00 +1218834,fr,1,4.450000E+00,4.883440E+00,4.797802E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,-9.000000E+01 +1219207,fr,1,3.550000E+00,8.502300E-01,4.901526E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1219212,fr,1,3.650000E+00,8.502300E-01,4.901526E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1219214,fr,1,3.650000E+00,8.502300E-01,4.901526E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1219225,fr,1,3.750000E+00,8.502300E-01,4.901526E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1219236,fr,1,3.850000E+00,8.502300E-01,4.901526E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1219248,fr,1,3.950000E+00,8.502300E-01,4.901526E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1219264,fr,1,4.050000E+00,8.502300E-01,4.901526E+01,1.500000E+01,Active Shallow Crust,2.400064E+02,5.800593E+01,0.000000E+00 +1219276,fr,1,4.150000E+00,8.502300E-01,4.901526E+01,1.500000E+01,Active Shallow Crust,2.400090E+02,5.799745E+01,0.000000E+00 +1219392,fr,1,5.150000E+00,8.502300E-01,4.901526E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1219680,fr,2,3.550000E+00,-1.565220E+00,4.328491E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999082E+01,0.000000E+00 +1219687,fr,1,3.550000E+00,-1.565220E+00,4.328491E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999072E+01,-9.000000E+01 +1219689,fr,1,3.550000E+00,-1.565220E+00,4.328491E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999358E+01,0.000000E+00 +1219692,fr,3,3.650000E+00,-1.565220E+00,4.328491E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1219701,fr,1,3.650000E+00,-1.565220E+00,4.328491E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.996346E+01,0.000000E+00 +1219702,fr,1,3.650000E+00,-1.565220E+00,4.328491E+01,1.500000E+01,Active Shallow Crust,1.289005E+02,8.996346E+01,0.000000E+00 +1219707,fr,1,3.750000E+00,-1.565220E+00,4.328491E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.801733E+01,0.000000E+00 +1219710,fr,1,3.750000E+00,-1.565220E+00,4.328491E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,-9.000000E+01 +1219719,fr,1,3.850000E+00,-1.565220E+00,4.328491E+01,5.000000E+00,Active Shallow Crust,2.400102E+02,5.799793E+01,0.000000E+00 +1219722,fr,1,3.850000E+00,-1.565220E+00,4.328491E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,-9.000000E+01 +1219725,fr,1,3.850000E+00,-1.565220E+00,4.328491E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999416E+01,0.000000E+00 +1219728,fr,3,3.950000E+00,-1.565220E+00,4.328491E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +1219734,fr,2,3.950000E+00,-1.565220E+00,4.328491E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,-9.000000E+01 +1219737,fr,2,3.950000E+00,-1.565220E+00,4.328491E+01,5.000000E+00,Active Shallow Crust,1.289009E+02,8.999363E+01,0.000000E+00 +1219743,fr,1,4.050000E+00,-1.565220E+00,4.328491E+01,5.000000E+00,Active Shallow Crust,2.400055E+02,5.800558E+01,0.000000E+00 +1219752,fr,1,4.150000E+00,-1.565220E+00,4.328491E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1219764,fr,1,4.250000E+00,-1.565220E+00,4.328491E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1219767,fr,1,4.250000E+00,-1.565220E+00,4.328491E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.799399E+01,0.000000E+00 +1219782,fr,1,4.350000E+00,-1.565220E+00,4.328491E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +1219785,fr,1,4.350000E+00,-1.565220E+00,4.328491E+01,5.000000E+00,Active Shallow Crust,1.288985E+02,8.998278E+01,0.000000E+00 +1219789,fr,1,4.450000E+00,-1.565220E+00,4.328491E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1219824,fr,1,4.750000E+00,-1.565220E+00,4.328491E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1219884,fr,1,5.250000E+00,-1.565220E+00,4.328491E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1220161,fr,1,3.550000E+00,1.134070E+00,5.124821E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +1220162,fr,1,3.550000E+00,1.134070E+00,5.124821E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +1220172,fr,1,3.650000E+00,1.134070E+00,5.124821E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1220205,fr,1,3.850000E+00,1.134070E+00,5.124821E+01,5.000000E+00,Active Shallow Crust,1.288951E+02,8.999386E+01,0.000000E+00 +1220208,fr,1,3.950000E+00,1.134070E+00,5.124821E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1220220,fr,1,4.050000E+00,1.134070E+00,5.124821E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +1220226,fr,1,4.050000E+00,1.134070E+00,5.124821E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,-9.000000E+01 +1220244,fr,1,4.250000E+00,1.134070E+00,5.124821E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1220256,fr,1,4.350000E+00,1.134070E+00,5.124821E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1220281,fr,1,4.550000E+00,1.134070E+00,5.124821E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1220284,fr,1,4.550000E+00,1.134070E+00,5.124821E+01,1.500000E+01,Active Shallow Crust,2.400108E+02,5.799773E+01,0.000000E+00 +1220328,fr,1,4.950000E+00,1.134070E+00,5.124821E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1220640,fr,1,3.550000E+00,7.081470E+00,5.063915E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998721E+01,0.000000E+00 +1220642,fr,1,3.550000E+00,7.081470E+00,5.063915E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998721E+01,0.000000E+00 +1220650,fr,1,3.550000E+00,7.081470E+00,5.063915E+01,1.500000E+01,Active Shallow Crust,1.288968E+02,8.999361E+01,0.000000E+00 +1220652,fr,1,3.650000E+00,7.081470E+00,5.063915E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998860E+01,0.000000E+00 +1220659,fr,1,3.650000E+00,7.081470E+00,5.063915E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998847E+01,-9.000000E+01 +1220665,fr,1,3.750000E+00,7.081470E+00,5.063915E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +1220673,fr,2,3.750000E+00,7.081470E+00,5.063915E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.996707E+01,0.000000E+00 +1220676,fr,1,3.850000E+00,7.081470E+00,5.063915E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +1220677,fr,1,3.850000E+00,7.081470E+00,5.063915E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +1220679,fr,1,3.850000E+00,7.081470E+00,5.063915E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799884E+01,0.000000E+00 +1220721,fr,1,4.150000E+00,7.081470E+00,5.063915E+01,5.000000E+00,Active Shallow Crust,1.288977E+02,8.999359E+01,0.000000E+00 +1220731,fr,2,4.250000E+00,7.081470E+00,5.063915E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999133E+01,-9.000000E+01 +1220736,fr,1,4.350000E+00,7.081470E+00,5.063915E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1220739,fr,1,4.350000E+00,7.081470E+00,5.063915E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.799631E+01,0.000000E+00 +1220748,fr,1,4.450000E+00,7.081470E+00,5.063915E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999092E+01,0.000000E+00 +1220749,fr,1,4.450000E+00,7.081470E+00,5.063915E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999092E+01,0.000000E+00 +1220751,fr,1,4.450000E+00,7.081470E+00,5.063915E+01,5.000000E+00,Active Shallow Crust,2.400060E+02,5.799492E+01,0.000000E+00 +1220761,fr,1,4.550000E+00,7.081470E+00,5.063915E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1220809,fr,1,4.950000E+00,7.081470E+00,5.063915E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1220892,fr,1,5.650000E+00,7.081470E+00,5.063915E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +1221144,fr,1,3.750000E+00,1.605080E+00,5.061798E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +1221216,fr,1,4.350000E+00,1.605080E+00,5.061798E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1221240,fr,1,4.550000E+00,1.605080E+00,5.061798E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1221612,fr,1,3.650000E+00,-6.497490E+00,4.866706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998813E+01,0.000000E+00 +1222128,fr,1,3.950000E+00,-6.563890E+00,4.852170E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999157E+01,0.000000E+00 +1222140,fr,1,4.050000E+00,-6.563890E+00,4.852170E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998873E+01,0.000000E+00 +1222248,fr,1,4.950000E+00,-6.563890E+00,4.852170E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1222573,fr,1,3.650000E+00,-4.943990E+00,4.924466E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998827E+01,0.000000E+00 +1222579,fr,1,3.650000E+00,-4.943990E+00,4.924466E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998813E+01,-9.000000E+01 +1222585,fr,1,3.750000E+00,-4.943990E+00,4.924466E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +1222596,fr,1,3.850000E+00,-4.943990E+00,4.924466E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +1222598,fr,1,3.850000E+00,-4.943990E+00,4.924466E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +1223042,fr,1,3.550000E+00,3.603180E+00,5.169602E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1223136,fr,1,4.350000E+00,3.603180E+00,5.169602E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1223526,fr,1,3.550000E+00,1.884230E+00,4.761635E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +1223569,fr,1,3.950000E+00,1.884230E+00,4.761635E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +1223571,fr,1,3.950000E+00,1.884230E+00,4.761635E+01,5.000000E+00,Active Shallow Crust,2.400202E+02,5.800498E+01,0.000000E+00 +1223616,fr,1,4.350000E+00,1.884230E+00,4.761635E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1224000,fr,3,3.550000E+00,2.772400E+00,4.573797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +1224001,fr,2,3.550000E+00,2.772400E+00,4.573797E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +1224016,fr,1,3.650000E+00,2.772400E+00,4.573797E+01,1.500000E+01,Active Shallow Crust,2.400017E+02,5.801276E+01,0.000000E+00 +1224018,fr,1,3.650000E+00,2.772400E+00,4.573797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,-9.000000E+01 +1224024,fr,2,3.750000E+00,2.772400E+00,4.573797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +1224036,fr,1,3.850000E+00,2.772400E+00,4.573797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1224045,fr,1,3.850000E+00,2.772400E+00,4.573797E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999377E+01,0.000000E+00 +1224060,fr,2,4.050000E+00,2.772400E+00,4.573797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1224094,fr,1,4.250000E+00,2.772400E+00,4.573797E+01,1.500000E+01,Active Shallow Crust,1.288943E+02,8.998092E+01,0.000000E+00 +1224097,fr,1,4.350000E+00,2.772400E+00,4.573797E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1224181,fr,1,5.050000E+00,2.772400E+00,4.573797E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1224253,fr,1,5.650000E+00,2.772400E+00,4.573797E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1224288,fr,1,5.950000E+00,2.772400E+00,4.573797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1224300,fr,1,6.050000E+00,2.772401E+00,4.573797E+01,5.357596E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1224960,fr,1,3.550000E+00,-2.346190E+00,4.772432E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1224972,fr,1,3.650000E+00,-2.346190E+00,4.772432E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +1224973,fr,1,3.650000E+00,-2.346190E+00,4.772432E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +1224984,fr,2,3.750000E+00,-2.346190E+00,4.772432E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998922E+01,0.000000E+00 +1224997,fr,1,3.850000E+00,-2.346190E+00,4.772432E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1225005,fr,1,3.850000E+00,-2.346190E+00,4.772432E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999280E+01,0.000000E+00 +1225011,fr,1,3.950000E+00,-2.346190E+00,4.772432E+01,5.000000E+00,Active Shallow Crust,2.400200E+02,5.800512E+01,0.000000E+00 +1225020,fr,1,4.050000E+00,-2.346190E+00,4.772432E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1225022,fr,1,4.050000E+00,-2.346190E+00,4.772432E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1225920,fr,1,3.550000E+00,1.914630E+00,4.310515E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999080E+01,0.000000E+00 +1225932,fr,1,3.650000E+00,1.914630E+00,4.310515E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1225935,fr,1,3.650000E+00,1.914630E+00,4.310515E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801279E+01,0.000000E+00 +1225944,fr,1,3.750000E+00,1.914630E+00,4.310515E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1225982,fr,1,4.050000E+00,1.914630E+00,4.310515E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1225992,fr,1,4.150000E+00,1.914630E+00,4.310515E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1226400,fr,2,3.550000E+00,5.659920E+00,4.602345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999300E+01,0.000000E+00 +1226401,fr,2,3.550000E+00,5.659920E+00,4.602345E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999300E+01,0.000000E+00 +1226410,fr,1,3.550000E+00,5.659920E+00,4.602345E+01,1.500000E+01,Active Shallow Crust,1.288966E+02,8.999300E+01,0.000000E+00 +1226412,fr,1,3.650000E+00,5.659920E+00,4.602345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998752E+01,0.000000E+00 +1226413,fr,1,3.650000E+00,5.659920E+00,4.602345E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998752E+01,0.000000E+00 +1226422,fr,1,3.650000E+00,5.659920E+00,4.602345E+01,1.500000E+01,Active Shallow Crust,1.289011E+02,8.996352E+01,0.000000E+00 +1226424,fr,2,3.750000E+00,5.659920E+00,4.602345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +1226425,fr,2,3.750000E+00,5.659920E+00,4.602345E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +1226428,fr,1,3.750000E+00,5.659920E+00,4.602345E+01,1.500000E+01,Active Shallow Crust,2.400090E+02,5.801753E+01,0.000000E+00 +1226435,fr,1,3.750000E+00,5.659920E+00,4.602345E+01,2.750000E+01,Active Shallow Crust,1.288969E+02,8.996748E+01,0.000000E+00 +1226436,fr,1,3.850000E+00,5.659920E+00,4.602345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1226445,fr,1,3.850000E+00,5.659920E+00,4.602345E+01,5.000000E+00,Active Shallow Crust,1.288953E+02,8.999257E+01,0.000000E+00 +1226448,fr,2,3.950000E+00,5.659920E+00,4.602345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +1226449,fr,1,3.950000E+00,5.659920E+00,4.602345E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +1226463,fr,1,4.050000E+00,5.659920E+00,4.602345E+01,5.000000E+00,Active Shallow Crust,2.400055E+02,5.800649E+01,0.000000E+00 +1226472,fr,1,4.150000E+00,5.659920E+00,4.602345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +1226481,fr,1,4.150000E+00,5.659920E+00,4.602345E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.999298E+01,0.000000E+00 +1226482,fr,1,4.150000E+00,5.659920E+00,4.602345E+01,1.500000E+01,Active Shallow Crust,1.288976E+02,8.999298E+01,0.000000E+00 +1226484,fr,1,4.250000E+00,5.659920E+00,4.602345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1226485,fr,1,4.250000E+00,5.659920E+00,4.602345E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1226494,fr,1,4.250000E+00,5.659920E+00,4.602345E+01,1.500000E+01,Active Shallow Crust,1.288944E+02,8.998093E+01,0.000000E+00 +1226503,fr,1,4.350000E+00,5.659920E+00,4.602345E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998872E+01,-9.000000E+01 +1226532,fr,1,4.650000E+00,5.659920E+00,4.602345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1226534,fr,1,4.650000E+00,5.659920E+00,4.602345E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1226536,fr,1,4.650000E+00,5.659920E+00,4.602345E+01,1.500000E+01,Active Shallow Crust,2.400106E+02,5.799410E+01,0.000000E+00 +1226565,fr,1,4.850000E+00,5.659920E+00,4.602345E+01,5.000000E+00,Active Shallow Crust,1.288927E+02,8.998901E+01,0.000000E+00 +1226628,fr,1,5.450000E+00,5.659920E+00,4.602345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1226884,fr,1,3.550000E+00,4.804090E+00,4.525591E+01,1.500000E+01,Active Shallow Crust,2.400124E+02,5.799856E+01,0.000000E+00 +1226892,fr,2,3.650000E+00,4.804090E+00,4.525591E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998735E+01,0.000000E+00 +1226893,fr,1,3.650000E+00,4.804090E+00,4.525591E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998735E+01,0.000000E+00 +1226916,fr,1,3.850000E+00,4.804090E+00,4.525591E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1226918,fr,1,3.850000E+00,4.804090E+00,4.525591E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1227388,fr,1,3.750000E+00,-2.010600E+00,4.557640E+01,1.500000E+01,Active Shallow Crust,2.400083E+02,5.801738E+01,0.000000E+00 +1227432,fr,1,4.150000E+00,-2.010600E+00,4.557640E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +1228320,fr,3,3.550000E+00,7.054310E+00,4.475289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999284E+01,0.000000E+00 +1228326,fr,1,3.550000E+00,7.054310E+00,4.475289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999276E+01,-9.000000E+01 +1228331,fr,1,3.550000E+00,7.054310E+00,4.475289E+01,2.750000E+01,Active Shallow Crust,1.288964E+02,8.999284E+01,0.000000E+00 +1228332,fr,3,3.650000E+00,7.054310E+00,4.475289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998724E+01,0.000000E+00 +1228335,fr,1,3.650000E+00,7.054310E+00,4.475289E+01,5.000000E+00,Active Shallow Crust,2.400016E+02,5.801179E+01,0.000000E+00 +1228341,fr,1,3.650000E+00,7.054310E+00,4.475289E+01,5.000000E+00,Active Shallow Crust,1.288999E+02,8.996349E+01,0.000000E+00 +1228344,fr,1,3.750000E+00,7.054310E+00,4.475289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +1228348,fr,1,3.750000E+00,7.054310E+00,4.475289E+01,1.500000E+01,Active Shallow Crust,2.400083E+02,5.801710E+01,0.000000E+00 +1228350,fr,2,3.750000E+00,7.054310E+00,4.475289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998849E+01,-9.000000E+01 +1228356,fr,2,3.850000E+00,7.054310E+00,4.475289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1228357,fr,2,3.850000E+00,7.054310E+00,4.475289E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1228359,fr,1,3.850000E+00,7.054310E+00,4.475289E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799764E+01,0.000000E+00 +1228369,fr,1,3.950000E+00,7.054310E+00,4.475289E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +1228371,fr,1,3.950000E+00,7.054310E+00,4.475289E+01,5.000000E+00,Active Shallow Crust,2.400193E+02,5.800549E+01,0.000000E+00 +1228380,fr,2,4.050000E+00,7.054310E+00,4.475289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999194E+01,0.000000E+00 +1228381,fr,1,4.050000E+00,7.054310E+00,4.475289E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999194E+01,0.000000E+00 +1228392,fr,1,4.150000E+00,7.054310E+00,4.475289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +1228395,fr,1,4.150000E+00,7.054310E+00,4.475289E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799747E+01,0.000000E+00 +1228404,fr,3,4.250000E+00,7.054310E+00,4.475289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +1228413,fr,1,4.250000E+00,7.054310E+00,4.475289E+01,5.000000E+00,Active Shallow Crust,1.288937E+02,8.998135E+01,0.000000E+00 +1228416,fr,1,4.350000E+00,7.054310E+00,4.475289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +1228417,fr,1,4.350000E+00,7.054310E+00,4.475289E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +1228425,fr,1,4.350000E+00,7.054310E+00,4.475289E+01,5.000000E+00,Active Shallow Crust,1.288974E+02,8.998296E+01,0.000000E+00 +1228426,fr,1,4.350000E+00,7.054310E+00,4.475289E+01,1.500000E+01,Active Shallow Crust,1.288974E+02,8.998296E+01,0.000000E+00 +1228476,fr,1,4.850000E+00,7.054310E+00,4.475289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +1228480,fr,1,4.850000E+00,7.054310E+00,4.475289E+01,1.500000E+01,Active Shallow Crust,2.400164E+02,5.800213E+01,0.000000E+00 +1228524,fr,1,5.250000E+00,7.054310E+00,4.475289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1228848,fr,1,3.950000E+00,2.730780E+00,5.332986E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +1228908,fr,1,4.450000E+00,2.730780E+00,5.332986E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1229770,fr,1,3.550000E+00,3.013100E-01,4.951324E+01,1.500000E+01,Active Shallow Crust,1.288959E+02,8.999387E+01,0.000000E+00 +1229772,fr,1,3.650000E+00,3.013100E-01,4.951324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1229773,fr,1,3.650000E+00,3.013100E-01,4.951324E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1229780,fr,1,3.650000E+00,3.013100E-01,4.951324E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +1229781,fr,1,3.650000E+00,3.013100E-01,4.951324E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.996352E+01,0.000000E+00 +1229790,fr,1,3.750000E+00,3.013100E-01,4.951324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +1229794,fr,1,3.750000E+00,3.013100E-01,4.951324E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.996734E+01,0.000000E+00 +1229796,fr,1,3.850000E+00,3.013100E-01,4.951324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1229808,fr,1,3.950000E+00,3.013100E-01,4.951324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1229809,fr,1,3.950000E+00,3.013100E-01,4.951324E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1229826,fr,1,4.050000E+00,3.013100E-01,4.951324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +1229868,fr,1,4.450000E+00,3.013100E-01,4.951324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1229880,fr,1,4.550000E+00,3.013100E-01,4.951324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1229904,fr,1,4.750000E+00,3.013100E-01,4.951324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1229961,fr,1,5.150000E+00,3.013100E-01,4.951324E+01,5.000000E+00,Active Shallow Crust,1.288822E+02,8.999104E+01,0.000000E+00 +1229989,fr,1,5.450000E+00,3.013100E-01,4.951324E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1230269,fr,1,3.750000E+00,-5.255270E+00,4.948489E+01,2.750000E+01,Active Shallow Crust,2.400092E+02,5.801727E+01,0.000000E+00 +1230720,fr,1,3.550000E+00,-1.435650E+00,5.020230E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +1230732,fr,1,3.650000E+00,-1.435650E+00,5.020230E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1230741,fr,1,3.650000E+00,-1.435650E+00,5.020230E+01,5.000000E+00,Active Shallow Crust,1.288999E+02,8.996359E+01,0.000000E+00 +1230816,fr,1,4.350000E+00,-1.435650E+00,5.020230E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1231104,fr,1,6.750000E+00,-1.435633E+00,5.020230E+01,1.199416E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +1231215,fr,1,3.650000E+00,-2.407140E+00,5.000238E+01,5.000000E+00,Active Shallow Crust,2.400016E+02,5.801291E+01,0.000000E+00 +1231272,fr,1,4.150000E+00,-2.407140E+00,5.000238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1231300,fr,1,4.350000E+00,-2.407140E+00,5.000238E+01,1.500000E+01,Active Shallow Crust,2.400092E+02,5.799620E+01,0.000000E+00 +1231320,fr,1,4.550000E+00,-2.407140E+00,5.000238E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1231680,fr,3,3.550000E+00,-1.155300E+00,4.955815E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1231692,fr,1,3.650000E+00,-1.155300E+00,4.955815E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1231704,fr,1,3.750000E+00,-1.155300E+00,4.955815E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +1231716,fr,1,3.850000E+00,-1.155300E+00,4.955815E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +1231729,fr,1,3.950000E+00,-1.155300E+00,4.955815E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1231733,fr,1,3.950000E+00,-1.155300E+00,4.955815E+01,2.750000E+01,Active Shallow Crust,2.400204E+02,5.800488E+01,0.000000E+00 +1231765,fr,1,4.250000E+00,-1.155300E+00,4.955815E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1231833,fr,1,4.750000E+00,-1.155300E+00,4.955815E+01,5.000000E+00,Active Shallow Crust,1.288877E+02,8.998814E+01,0.000000E+00 +1232160,fr,1,3.550000E+00,3.550430E+00,4.904796E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1233178,fr,1,3.950000E+00,4.703400E+00,4.896431E+01,1.500000E+01,Active Shallow Crust,1.289006E+02,8.999374E+01,0.000000E+00 +1233187,fr,1,4.050000E+00,4.703400E+00,4.896431E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998870E+01,-9.000000E+01 +1233759,fr,1,4.850000E+00,-2.918040E+00,4.617129E+01,5.000000E+00,Active Shallow Crust,2.400170E+02,5.800232E+01,0.000000E+00 +1234116,fr,2,3.850000E+00,1.592150E+00,4.533367E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1234140,fr,1,4.050000E+00,1.592150E+00,4.533367E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1234176,fr,1,4.350000E+00,1.592150E+00,4.533367E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1234212,fr,1,4.650000E+00,1.592150E+00,4.533367E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1234260,fr,1,5.050000E+00,1.592150E+00,4.533367E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1234560,fr,3,3.550000E+00,-3.878800E+00,4.839805E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1234561,fr,1,3.550000E+00,-3.878800E+00,4.839805E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1234572,fr,2,3.650000E+00,-3.878800E+00,4.839805E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999105E+01,0.000000E+00 +1234575,fr,1,3.650000E+00,-3.878800E+00,4.839805E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801316E+01,0.000000E+00 +1234584,fr,1,3.750000E+00,-3.878800E+00,4.839805E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +1234624,fr,1,4.050000E+00,-3.878800E+00,4.839805E+01,1.500000E+01,Active Shallow Crust,2.400060E+02,5.800621E+01,0.000000E+00 +1234644,fr,1,4.250000E+00,-3.878800E+00,4.839805E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +1234669,fr,1,4.450000E+00,-3.878800E+00,4.839805E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1234681,fr,1,4.550000E+00,-3.878800E+00,4.839805E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +1234730,fr,1,4.950000E+00,-3.878800E+00,4.839805E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1234747,fr,1,5.050000E+00,-3.878800E+00,4.839805E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,-9.000000E+01 +1234779,fr,1,5.350000E+00,-3.878800E+00,4.839805E+01,5.000000E+00,Active Shallow Crust,2.400265E+02,5.799818E+01,0.000000E+00 +1235040,fr,2,3.550000E+00,5.182820E+00,4.359063E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999270E+01,0.000000E+00 +1235043,fr,1,3.550000E+00,5.182820E+00,4.359063E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799835E+01,0.000000E+00 +1235044,fr,1,3.550000E+00,5.182820E+00,4.359063E+01,1.500000E+01,Active Shallow Crust,2.400116E+02,5.799835E+01,0.000000E+00 +1235046,fr,1,3.550000E+00,5.182820E+00,4.359063E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999261E+01,-9.000000E+01 +1235052,fr,2,3.650000E+00,5.182820E+00,4.359063E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998698E+01,0.000000E+00 +1235065,fr,1,3.750000E+00,5.182820E+00,4.359063E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998840E+01,0.000000E+00 +1235097,fr,1,3.950000E+00,5.182820E+00,4.359063E+01,5.000000E+00,Active Shallow Crust,1.289009E+02,8.999539E+01,0.000000E+00 +1235108,fr,1,4.050000E+00,5.182820E+00,4.359063E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999169E+01,-9.000000E+01 +1235130,fr,1,4.250000E+00,5.182820E+00,4.359063E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +1235131,fr,1,4.250000E+00,5.182820E+00,4.359063E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +1235152,fr,1,4.450000E+00,5.182820E+00,4.359063E+01,1.500000E+01,Active Shallow Crust,2.400041E+02,5.799483E+01,0.000000E+00 +1235157,fr,1,4.450000E+00,5.182820E+00,4.359063E+01,5.000000E+00,Active Shallow Crust,1.288922E+02,8.999482E+01,0.000000E+00 +1235199,fr,1,4.850000E+00,5.182820E+00,4.359063E+01,5.000000E+00,Active Shallow Crust,2.400159E+02,5.800191E+01,0.000000E+00 +1235532,fr,1,3.650000E+00,2.379810E+00,4.947635E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999124E+01,0.000000E+00 +1235544,fr,1,3.750000E+00,2.379810E+00,4.947635E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1235556,fr,1,3.850000E+00,2.379810E+00,4.947635E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +1235565,fr,1,3.850000E+00,2.379810E+00,4.947635E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.999420E+01,0.000000E+00 +1235580,fr,1,4.050000E+00,2.379810E+00,4.947635E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999079E+01,0.000000E+00 +1235737,fr,1,5.350000E+00,2.379810E+00,4.947635E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1236492,fr,1,3.650000E+00,-1.078230E+00,4.969581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1236504,fr,1,3.750000E+00,-1.078230E+00,4.969581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +1236565,fr,1,4.250000E+00,-1.078230E+00,4.969581E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1236621,fr,1,4.650000E+00,-1.078230E+00,4.969581E+01,5.000000E+00,Active Shallow Crust,1.288901E+02,8.998705E+01,0.000000E+00 +1236960,fr,3,3.550000E+00,6.308270E+00,4.610594E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999301E+01,0.000000E+00 +1236961,fr,3,3.550000E+00,6.308270E+00,4.610594E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999301E+01,0.000000E+00 +1236962,fr,1,3.550000E+00,6.308270E+00,4.610594E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999301E+01,0.000000E+00 +1236963,fr,1,3.550000E+00,6.308270E+00,4.610594E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799779E+01,0.000000E+00 +1236965,fr,1,3.550000E+00,6.308270E+00,4.610594E+01,2.750000E+01,Active Shallow Crust,2.400124E+02,5.799770E+01,0.000000E+00 +1236966,fr,2,3.550000E+00,6.308270E+00,4.610594E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999293E+01,-9.000000E+01 +1236971,fr,1,3.550000E+00,6.308270E+00,4.610594E+01,2.750000E+01,Active Shallow Crust,1.288967E+02,8.999301E+01,0.000000E+00 +1236972,fr,2,3.650000E+00,6.308270E+00,4.610594E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998754E+01,0.000000E+00 +1236973,fr,1,3.650000E+00,6.308270E+00,4.610594E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998754E+01,0.000000E+00 +1236984,fr,3,3.750000E+00,6.308270E+00,4.610594E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998889E+01,0.000000E+00 +1236986,fr,2,3.750000E+00,6.308270E+00,4.610594E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998889E+01,0.000000E+00 +1236991,fr,1,3.750000E+00,6.308270E+00,4.610594E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998876E+01,-9.000000E+01 +1236993,fr,1,3.750000E+00,6.308270E+00,4.610594E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996748E+01,0.000000E+00 +1236996,fr,1,3.850000E+00,6.308270E+00,4.610594E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1236999,fr,1,3.850000E+00,6.308270E+00,4.610594E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799798E+01,0.000000E+00 +1237008,fr,2,3.950000E+00,6.308270E+00,4.610594E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999118E+01,0.000000E+00 +1237009,fr,1,3.950000E+00,6.308270E+00,4.610594E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999118E+01,0.000000E+00 +1237010,fr,1,3.950000E+00,6.308270E+00,4.610594E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999118E+01,0.000000E+00 +1237018,fr,1,3.950000E+00,6.308270E+00,4.610594E+01,1.500000E+01,Active Shallow Crust,1.288994E+02,8.999339E+01,0.000000E+00 +1237019,fr,1,3.950000E+00,6.308270E+00,4.610594E+01,2.750000E+01,Active Shallow Crust,1.288994E+02,8.999339E+01,0.000000E+00 +1237022,fr,1,4.050000E+00,6.308270E+00,4.610594E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998820E+01,0.000000E+00 +1237045,fr,1,4.250000E+00,6.308270E+00,4.610594E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +1237080,fr,1,4.550000E+00,6.308270E+00,4.610594E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +1237105,fr,1,4.750000E+00,6.308270E+00,4.610594E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1237116,fr,1,4.850000E+00,6.308270E+00,4.610594E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999061E+01,0.000000E+00 +1237146,fr,1,5.050000E+00,6.308270E+00,4.610594E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +1237440,fr,1,3.550000E+00,5.256100E-01,4.552528E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +1237449,fr,1,3.550000E+00,5.256100E-01,4.552528E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999382E+01,0.000000E+00 +1237455,fr,1,3.650000E+00,5.256100E-01,4.552528E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801299E+01,0.000000E+00 +1237461,fr,1,3.650000E+00,5.256100E-01,4.552528E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.996351E+01,0.000000E+00 +1237476,fr,1,3.850000E+00,5.256100E-01,4.552528E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1237480,fr,1,3.850000E+00,5.256100E-01,4.552528E+01,1.500000E+01,Active Shallow Crust,2.400107E+02,5.799784E+01,0.000000E+00 +1237549,fr,1,4.450000E+00,5.256100E-01,4.552528E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1237621,fr,1,5.050000E+00,5.256100E-01,4.552528E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1237922,fr,1,3.550000E+00,3.692400E+00,4.364731E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998905E+01,0.000000E+00 +1237959,fr,1,3.850000E+00,3.692400E+00,4.364731E+01,5.000000E+00,Active Shallow Crust,2.400101E+02,5.799781E+01,0.000000E+00 +1237989,fr,1,4.050000E+00,3.692400E+00,4.364731E+01,5.000000E+00,Active Shallow Crust,1.288909E+02,8.999384E+01,0.000000E+00 +1237992,fr,1,4.150000E+00,3.692400E+00,4.364731E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +1238125,fr,1,5.250000E+00,3.692400E+00,4.364731E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1238400,fr,1,3.550000E+00,-2.850430E+00,4.754344E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1238424,fr,1,3.750000E+00,-2.850430E+00,4.754344E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998919E+01,0.000000E+00 +1238427,fr,1,3.750000E+00,-2.850430E+00,4.754344E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.801736E+01,0.000000E+00 +1238436,fr,2,3.850000E+00,-2.850430E+00,4.754344E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1238439,fr,1,3.850000E+00,-2.850430E+00,4.754344E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799825E+01,0.000000E+00 +1238445,fr,1,3.850000E+00,-2.850430E+00,4.754344E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999398E+01,0.000000E+00 +1238449,fr,1,3.950000E+00,-2.850430E+00,4.754344E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1238453,fr,1,3.950000E+00,-2.850430E+00,4.754344E+01,2.750000E+01,Active Shallow Crust,2.400195E+02,5.800511E+01,0.000000E+00 +1238460,fr,2,4.050000E+00,-2.850430E+00,4.754344E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1238474,fr,1,4.150000E+00,-2.850430E+00,4.754344E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +1238493,fr,1,4.250000E+00,-2.850430E+00,4.754344E+01,5.000000E+00,Active Shallow Crust,1.288938E+02,8.998099E+01,0.000000E+00 +1238499,fr,1,4.350000E+00,-2.850430E+00,4.754344E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799585E+01,0.000000E+00 +1238628,fr,1,5.450000E+00,-2.850430E+00,4.754344E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1238883,fr,1,3.550000E+00,1.333850E+00,4.877637E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799848E+01,0.000000E+00 +1238892,fr,1,3.650000E+00,1.333850E+00,4.877637E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +1238905,fr,1,3.750000E+00,1.333850E+00,4.877637E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +1238994,fr,1,4.450000E+00,1.333850E+00,4.877637E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,-9.000000E+01 +1239854,fr,1,3.650000E+00,3.339660E+00,4.673049E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +1239874,fr,1,3.750000E+00,3.339660E+00,4.673049E+01,1.500000E+01,Active Shallow Crust,1.288968E+02,8.996723E+01,0.000000E+00 +1239876,fr,1,3.850000E+00,3.339660E+00,4.673049E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1239914,fr,1,4.150000E+00,3.339660E+00,4.673049E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +1239985,fr,1,4.750000E+00,3.339660E+00,4.673049E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +1240320,fr,3,3.550000E+00,5.486250E+00,4.574007E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999297E+01,0.000000E+00 +1240321,fr,1,3.550000E+00,5.486250E+00,4.574007E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999297E+01,0.000000E+00 +1240323,fr,2,3.550000E+00,5.486250E+00,4.574007E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799846E+01,0.000000E+00 +1240332,fr,3,3.650000E+00,5.486250E+00,4.574007E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998746E+01,0.000000E+00 +1240333,fr,2,3.650000E+00,5.486250E+00,4.574007E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998746E+01,0.000000E+00 +1240341,fr,1,3.650000E+00,5.486250E+00,4.574007E+01,5.000000E+00,Active Shallow Crust,1.288998E+02,8.996351E+01,0.000000E+00 +1240344,fr,1,3.750000E+00,5.486250E+00,4.574007E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +1240345,fr,1,3.750000E+00,5.486250E+00,4.574007E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +1240350,fr,1,3.750000E+00,5.486250E+00,4.574007E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,-9.000000E+01 +1240368,fr,1,3.950000E+00,5.486250E+00,4.574007E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999112E+01,0.000000E+00 +1240377,fr,1,3.950000E+00,5.486250E+00,4.574007E+01,5.000000E+00,Active Shallow Crust,1.289010E+02,8.999334E+01,0.000000E+00 +1240380,fr,1,4.050000E+00,5.486250E+00,4.574007E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998813E+01,0.000000E+00 +1240400,fr,1,4.150000E+00,5.486250E+00,4.574007E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998930E+01,-9.000000E+01 +1240407,fr,1,4.250000E+00,5.486250E+00,4.574007E+01,5.000000E+00,Active Shallow Crust,2.400067E+02,5.799454E+01,0.000000E+00 +1240431,fr,1,4.450000E+00,5.486250E+00,4.574007E+01,5.000000E+00,Active Shallow Crust,2.400048E+02,5.799465E+01,0.000000E+00 +1240465,fr,1,4.750000E+00,5.486250E+00,4.574007E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +1240488,fr,1,4.950000E+00,5.486250E+00,4.574007E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1240502,fr,1,5.050000E+00,5.486250E+00,4.574007E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1240681,fr,1,6.550000E+00,5.486250E+00,4.574007E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1240800,fr,1,3.550000E+00,-2.706800E+00,4.204020E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998877E+01,0.000000E+00 +1240806,fr,1,3.550000E+00,-2.706800E+00,4.204020E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998864E+01,-9.000000E+01 +1240812,fr,1,3.650000E+00,-2.706800E+00,4.204020E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1240819,fr,1,3.650000E+00,-2.706800E+00,4.204020E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +1240824,fr,2,3.750000E+00,-2.706800E+00,4.204020E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +1240836,fr,1,3.850000E+00,-2.706800E+00,4.204020E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +1240845,fr,1,3.850000E+00,-2.706800E+00,4.204020E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999470E+01,0.000000E+00 +1240846,fr,1,3.850000E+00,-2.706800E+00,4.204020E+01,1.500000E+01,Active Shallow Crust,1.288959E+02,8.999470E+01,0.000000E+00 +1240857,fr,1,3.950000E+00,-2.706800E+00,4.204020E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.999409E+01,0.000000E+00 +1240861,fr,1,4.050000E+00,-2.706800E+00,4.204020E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +1240946,fr,1,4.750000E+00,-2.706800E+00,4.204020E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1241088,fr,1,5.950000E+00,-2.706800E+00,4.204020E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1241281,fr,1,3.550000E+00,8.783990E+00,4.857270E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998666E+01,0.000000E+00 +1241283,fr,2,3.550000E+00,8.783990E+00,4.857270E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799893E+01,0.000000E+00 +1241289,fr,1,3.550000E+00,8.783990E+00,4.857270E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.999333E+01,0.000000E+00 +1241292,fr,1,3.650000E+00,8.783990E+00,4.857270E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998811E+01,0.000000E+00 +1241293,fr,1,3.650000E+00,8.783990E+00,4.857270E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998811E+01,0.000000E+00 +1241300,fr,1,3.650000E+00,8.783990E+00,4.857270E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998797E+01,-9.000000E+01 +1241305,fr,1,3.750000E+00,8.783990E+00,4.857270E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +1241317,fr,3,3.850000E+00,8.783990E+00,4.857270E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +1241331,fr,1,3.950000E+00,8.783990E+00,4.857270E+01,5.000000E+00,Active Shallow Crust,2.400207E+02,5.800490E+01,0.000000E+00 +1241334,fr,2,3.950000E+00,8.783990E+00,4.857270E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999149E+01,-9.000000E+01 +1241340,fr,1,4.050000E+00,8.783990E+00,4.857270E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999249E+01,0.000000E+00 +1241347,fr,1,4.050000E+00,8.783990E+00,4.857270E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999241E+01,-9.000000E+01 +1241354,fr,1,4.150000E+00,8.783990E+00,4.857270E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999331E+01,0.000000E+00 +1241364,fr,1,4.250000E+00,8.783990E+00,4.857270E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +1241409,fr,1,4.550000E+00,8.783990E+00,4.857270E+01,5.000000E+00,Active Shallow Crust,1.288925E+02,8.998576E+01,0.000000E+00 +1241514,fr,1,5.450000E+00,8.783990E+00,4.857270E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,-9.000000E+01 +1241772,fr,1,3.650000E+00,4.782990E+00,5.156952E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998883E+01,0.000000E+00 +1241786,fr,1,3.750000E+00,4.782990E+00,5.156952E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1242282,fr,1,3.850000E+00,4.092200E-01,4.156883E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,-9.000000E+01 +1242312,fr,1,4.150000E+00,4.092200E-01,4.156883E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1242349,fr,1,4.450000E+00,4.092200E-01,4.156883E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1242720,fr,4,3.550000E+00,-1.441540E+00,4.274615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +1242721,fr,2,3.550000E+00,-1.441540E+00,4.274615E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +1242723,fr,1,3.550000E+00,-1.441540E+00,4.274615E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799822E+01,0.000000E+00 +1242725,fr,1,3.550000E+00,-1.441540E+00,4.274615E+01,2.750000E+01,Active Shallow Crust,2.400117E+02,5.799813E+01,0.000000E+00 +1242726,fr,1,3.550000E+00,-1.441540E+00,4.274615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,-9.000000E+01 +1242730,fr,1,3.550000E+00,-1.441540E+00,4.274615E+01,1.500000E+01,Active Shallow Crust,1.288967E+02,8.999352E+01,0.000000E+00 +1242732,fr,4,3.650000E+00,-1.441540E+00,4.274615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1242735,fr,1,3.650000E+00,-1.441540E+00,4.274615E+01,5.000000E+00,Active Shallow Crust,2.400006E+02,5.801295E+01,0.000000E+00 +1242738,fr,1,3.650000E+00,-1.441540E+00,4.274615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +1242741,fr,1,3.650000E+00,-1.441540E+00,4.274615E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.996359E+01,0.000000E+00 +1242744,fr,3,3.750000E+00,-1.441540E+00,4.274615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +1242745,fr,1,3.750000E+00,-1.441540E+00,4.274615E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +1242750,fr,2,3.750000E+00,-1.441540E+00,4.274615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +1242759,fr,1,3.850000E+00,-1.441540E+00,4.274615E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799762E+01,0.000000E+00 +1242765,fr,1,3.850000E+00,-1.441540E+00,4.274615E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999410E+01,0.000000E+00 +1242774,fr,1,3.950000E+00,-1.441540E+00,4.274615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,-9.000000E+01 +1242778,fr,1,3.950000E+00,-1.441540E+00,4.274615E+01,1.500000E+01,Active Shallow Crust,1.289010E+02,8.999358E+01,0.000000E+00 +1242792,fr,3,4.150000E+00,-1.441540E+00,4.274615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1242794,fr,1,4.150000E+00,-1.441540E+00,4.274615E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1242795,fr,1,4.150000E+00,-1.441540E+00,4.274615E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799729E+01,0.000000E+00 +1242806,fr,1,4.250000E+00,-1.441540E+00,4.274615E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1242814,fr,1,4.250000E+00,-1.441540E+00,4.274615E+01,1.500000E+01,Active Shallow Crust,1.288948E+02,8.998095E+01,0.000000E+00 +1242816,fr,2,4.350000E+00,-1.441540E+00,4.274615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1242817,fr,1,4.350000E+00,-1.441540E+00,4.274615E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1242840,fr,1,4.550000E+00,-1.441540E+00,4.274615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1242864,fr,1,4.750000E+00,-1.441540E+00,4.274615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1242879,fr,1,4.850000E+00,-1.441540E+00,4.274615E+01,5.000000E+00,Active Shallow Crust,2.400156E+02,5.800209E+01,0.000000E+00 +1242882,fr,1,4.850000E+00,-1.441540E+00,4.274615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +1242889,fr,1,4.950000E+00,-1.441540E+00,4.274615E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1242900,fr,1,5.050000E+00,-1.441540E+00,4.274615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1243200,fr,1,3.550000E+00,2.511090E+00,4.935084E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1243242,fr,1,3.850000E+00,2.511090E+00,4.935084E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,-9.000000E+01 +1243298,fr,1,4.350000E+00,2.511090E+00,4.935084E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +1243315,fr,1,4.450000E+00,2.511090E+00,4.935084E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999057E+01,-9.000000E+01 +1243680,fr,1,3.550000E+00,3.125520E+00,4.329680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998899E+01,0.000000E+00 +1243683,fr,1,3.550000E+00,3.125520E+00,4.329680E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799813E+01,0.000000E+00 +1243701,fr,1,3.650000E+00,3.125520E+00,4.329680E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.996346E+01,0.000000E+00 +1243704,fr,1,3.750000E+00,3.125520E+00,4.329680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +1243725,fr,1,3.850000E+00,3.125520E+00,4.329680E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999351E+01,0.000000E+00 +1243730,fr,1,3.950000E+00,3.125520E+00,4.329680E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +1243776,fr,1,4.350000E+00,3.125520E+00,4.329680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1243802,fr,1,4.550000E+00,3.125520E+00,4.329680E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1244174,fr,1,3.650000E+00,4.322220E+00,4.240360E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998672E+01,0.000000E+00 +1244220,fr,1,4.050000E+00,4.322220E+00,4.240360E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999162E+01,0.000000E+00 +1244654,fr,1,3.650000E+00,3.000350E+00,4.341041E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1244678,fr,1,3.850000E+00,3.000350E+00,4.341041E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +1244722,fr,1,4.150000E+00,3.000350E+00,4.341041E+01,1.500000E+01,Active Shallow Crust,1.288980E+02,8.999358E+01,0.000000E+00 +1244726,fr,1,4.250000E+00,3.000350E+00,4.341041E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1244734,fr,1,4.250000E+00,3.000350E+00,4.341041E+01,1.500000E+01,Active Shallow Crust,1.288949E+02,8.998083E+01,0.000000E+00 +1245120,fr,1,3.550000E+00,5.378190E+00,5.030265E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998712E+01,0.000000E+00 +1245132,fr,3,3.650000E+00,5.378190E+00,5.030265E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998852E+01,0.000000E+00 +1245150,fr,1,3.750000E+00,5.378190E+00,5.030265E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +1245156,fr,2,3.850000E+00,5.378190E+00,5.030265E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1245158,fr,1,3.850000E+00,5.378190E+00,5.030265E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1245180,fr,1,4.050000E+00,5.378190E+00,5.030265E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +1245181,fr,1,4.050000E+00,5.378190E+00,5.030265E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +1245193,fr,1,4.150000E+00,5.378190E+00,5.030265E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +1245216,fr,1,4.350000E+00,5.378190E+00,5.030265E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1245234,fr,1,4.450000E+00,5.378190E+00,5.030265E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,-9.000000E+01 +1245252,fr,1,4.650000E+00,5.378190E+00,5.030265E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +1245390,fr,1,5.750000E+00,5.378190E+00,5.030265E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,-9.000000E+01 +1245610,fr,1,3.550000E+00,1.597040E+00,4.104714E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.999429E+01,0.000000E+00 +1245612,fr,2,3.650000E+00,1.597040E+00,4.104714E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1245615,fr,1,3.650000E+00,1.597040E+00,4.104714E+01,5.000000E+00,Active Shallow Crust,2.400006E+02,5.801289E+01,0.000000E+00 +1245624,fr,1,3.750000E+00,1.597040E+00,4.104714E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1245627,fr,1,3.750000E+00,1.597040E+00,4.104714E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801730E+01,0.000000E+00 +1245628,fr,1,3.750000E+00,1.597040E+00,4.104714E+01,1.500000E+01,Active Shallow Crust,2.400080E+02,5.801730E+01,0.000000E+00 +1245629,fr,1,3.750000E+00,1.597040E+00,4.104714E+01,2.750000E+01,Active Shallow Crust,2.400080E+02,5.801730E+01,0.000000E+00 +1245630,fr,1,3.750000E+00,1.597040E+00,4.104714E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,-9.000000E+01 +1245636,fr,2,3.850000E+00,1.597040E+00,4.104714E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +1245637,fr,1,3.850000E+00,1.597040E+00,4.104714E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +1245648,fr,1,3.950000E+00,1.597040E+00,4.104714E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +1245661,fr,1,4.050000E+00,1.597040E+00,4.104714E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +1245684,fr,1,4.250000E+00,1.597040E+00,4.104714E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1245700,fr,1,4.350000E+00,1.597040E+00,4.104714E+01,1.500000E+01,Active Shallow Crust,2.400072E+02,5.799568E+01,0.000000E+00 +1246081,fr,1,3.550000E+00,1.150220E+00,4.810647E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1246092,fr,2,3.650000E+00,1.150220E+00,4.810647E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +1246093,fr,1,3.650000E+00,1.150220E+00,4.810647E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +1246134,fr,1,3.950000E+00,1.150220E+00,4.810647E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,-9.000000E+01 +1246142,fr,1,4.050000E+00,1.150220E+00,4.810647E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1246153,fr,1,4.150000E+00,1.150220E+00,4.810647E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1246179,fr,1,4.350000E+00,1.150220E+00,4.810647E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.799596E+01,0.000000E+00 +1246198,fr,1,4.450000E+00,1.150220E+00,4.810647E+01,1.500000E+01,Active Shallow Crust,1.288917E+02,8.999373E+01,0.000000E+00 +1246212,fr,1,4.650000E+00,1.150220E+00,4.810647E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1246560,fr,1,3.550000E+00,4.369600E-01,4.793186E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1246572,fr,1,3.650000E+00,4.369600E-01,4.793186E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +1246577,fr,1,3.650000E+00,4.369600E-01,4.793186E+01,2.750000E+01,Active Shallow Crust,2.400012E+02,5.801286E+01,0.000000E+00 +1246584,fr,2,3.750000E+00,4.369600E-01,4.793186E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1246596,fr,1,3.850000E+00,4.369600E-01,4.793186E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1246665,fr,1,4.350000E+00,4.369600E-01,4.793186E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.998275E+01,0.000000E+00 +1246692,fr,1,4.650000E+00,4.369600E-01,4.793186E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1246712,fr,1,4.750000E+00,4.369600E-01,4.793186E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +1247040,fr,1,3.550000E+00,5.506600E-01,4.740590E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +1247042,fr,1,3.550000E+00,5.506600E-01,4.740590E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +1247049,fr,1,3.550000E+00,5.506600E-01,4.740590E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999360E+01,0.000000E+00 +1247052,fr,1,3.650000E+00,5.506600E-01,4.740590E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1247053,fr,2,3.650000E+00,5.506600E-01,4.740590E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1247055,fr,1,3.650000E+00,5.506600E-01,4.740590E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801287E+01,0.000000E+00 +1247080,fr,1,3.850000E+00,5.506600E-01,4.740590E+01,1.500000E+01,Active Shallow Crust,2.400110E+02,5.799777E+01,0.000000E+00 +1247089,fr,1,3.950000E+00,5.506600E-01,4.740590E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1247099,fr,1,3.950000E+00,5.506600E-01,4.740590E+01,2.750000E+01,Active Shallow Crust,1.289003E+02,8.999354E+01,0.000000E+00 +1247100,fr,1,4.050000E+00,5.506600E-01,4.740590E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1247191,fr,1,4.750000E+00,5.506600E-01,4.740590E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +1247196,fr,1,4.850000E+00,5.506600E-01,4.740590E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1247520,fr,4,3.550000E+00,7.546510E+00,4.677214E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999310E+01,0.000000E+00 +1247521,fr,1,3.550000E+00,7.546510E+00,4.677214E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999310E+01,0.000000E+00 +1247522,fr,1,3.550000E+00,7.546510E+00,4.677214E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999310E+01,0.000000E+00 +1247523,fr,2,3.550000E+00,7.546510E+00,4.677214E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799842E+01,0.000000E+00 +1247532,fr,4,3.650000E+00,7.546510E+00,4.677214E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998769E+01,0.000000E+00 +1247533,fr,1,3.650000E+00,7.546510E+00,4.677214E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998769E+01,0.000000E+00 +1247538,fr,1,3.650000E+00,7.546510E+00,4.677214E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998755E+01,-9.000000E+01 +1247544,fr,2,3.750000E+00,7.546510E+00,4.677214E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998903E+01,0.000000E+00 +1247545,fr,1,3.750000E+00,7.546510E+00,4.677214E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998903E+01,0.000000E+00 +1247550,fr,1,3.750000E+00,7.546510E+00,4.677214E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998890E+01,-9.000000E+01 +1247556,fr,1,3.850000E+00,7.546510E+00,4.677214E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1247558,fr,1,3.850000E+00,7.546510E+00,4.677214E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1247559,fr,1,3.850000E+00,7.546510E+00,4.677214E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799743E+01,0.000000E+00 +1247560,fr,1,3.850000E+00,7.546510E+00,4.677214E+01,1.500000E+01,Active Shallow Crust,2.400105E+02,5.799743E+01,0.000000E+00 +1247562,fr,1,3.850000E+00,7.546510E+00,4.677214E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +1247568,fr,2,3.950000E+00,7.546510E+00,4.677214E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +1247569,fr,1,3.950000E+00,7.546510E+00,4.677214E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +1247580,fr,1,4.050000E+00,7.546510E+00,4.677214E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998835E+01,0.000000E+00 +1247592,fr,1,4.150000E+00,7.546510E+00,4.677214E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +1247593,fr,1,4.150000E+00,7.546510E+00,4.677214E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +1247604,fr,1,4.250000E+00,7.546510E+00,4.677214E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +1247606,fr,1,4.250000E+00,7.546510E+00,4.677214E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +1247612,fr,1,4.250000E+00,7.546510E+00,4.677214E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999064E+01,-9.000000E+01 +1247613,fr,1,4.250000E+00,7.546510E+00,4.677214E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.998040E+01,0.000000E+00 +1247616,fr,1,4.350000E+00,7.546510E+00,4.677214E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998900E+01,0.000000E+00 +1247618,fr,1,4.350000E+00,7.546510E+00,4.677214E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998900E+01,0.000000E+00 +1247626,fr,1,4.350000E+00,7.546510E+00,4.677214E+01,1.500000E+01,Active Shallow Crust,1.288981E+02,8.998254E+01,0.000000E+00 +1247628,fr,1,4.450000E+00,7.546510E+00,4.677214E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1247634,fr,1,4.450000E+00,7.546510E+00,4.677214E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,-9.000000E+01 +1247665,fr,1,4.750000E+00,7.546510E+00,4.677214E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1247673,fr,1,4.750000E+00,7.546510E+00,4.677214E+01,5.000000E+00,Active Shallow Crust,1.288887E+02,8.998819E+01,0.000000E+00 +1247676,fr,1,4.850000E+00,7.546510E+00,4.677214E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +1247739,fr,1,5.350000E+00,7.546510E+00,4.677214E+01,5.000000E+00,Active Shallow Crust,2.400251E+02,5.799803E+01,0.000000E+00 +1247751,fr,1,5.450000E+00,7.546510E+00,4.677214E+01,5.000000E+00,Active Shallow Crust,2.400290E+02,5.799858E+01,0.000000E+00 +1247778,fr,1,5.650000E+00,7.546510E+00,4.677214E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +1248000,fr,1,3.550000E+00,-1.699590E+00,4.777869E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +1248002,fr,1,3.550000E+00,-1.699590E+00,4.777869E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +1248003,fr,1,3.550000E+00,-1.699590E+00,4.777869E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799832E+01,0.000000E+00 +1248025,fr,1,3.750000E+00,-1.699590E+00,4.777869E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +1248036,fr,1,3.850000E+00,-1.699590E+00,4.777869E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +1248037,fr,1,3.850000E+00,-1.699590E+00,4.777869E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +1248051,fr,1,3.950000E+00,-1.699590E+00,4.777869E+01,5.000000E+00,Active Shallow Crust,2.400200E+02,5.800505E+01,0.000000E+00 +1248132,fr,1,4.650000E+00,-1.699590E+00,4.777869E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1248160,fr,1,4.850000E+00,-1.699590E+00,4.777869E+01,1.500000E+01,Active Shallow Crust,2.400176E+02,5.800248E+01,0.000000E+00 +1248480,fr,1,3.550000E+00,-4.517560E+00,4.751415E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999319E+01,0.000000E+00 +1248537,fr,1,3.950000E+00,-4.517560E+00,4.751415E+01,5.000000E+00,Active Shallow Crust,1.288997E+02,8.999355E+01,0.000000E+00 +1248912,fr,1,7.150000E+00,-4.517531E+00,4.751415E+01,1.750000E+01,Active Shallow Crust,3.599999E+02,8.999000E+01,0.000000E+00 +1248976,fr,1,3.650000E+00,1.840470E+00,4.893160E+01,1.500000E+01,Active Shallow Crust,2.400014E+02,5.801304E+01,0.000000E+00 +1248979,fr,1,3.650000E+00,1.840470E+00,4.893160E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998955E+01,-9.000000E+01 +1248984,fr,1,3.750000E+00,1.840470E+00,4.893160E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +1249020,fr,1,4.050000E+00,1.840470E+00,4.893160E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1249920,fr,2,3.550000E+00,6.228860E+00,4.372488E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999271E+01,0.000000E+00 +1249932,fr,1,3.650000E+00,6.228860E+00,4.372488E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998701E+01,0.000000E+00 +1249944,fr,1,3.750000E+00,6.228860E+00,4.372488E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +1249956,fr,1,3.850000E+00,6.228860E+00,4.372488E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1249958,fr,1,3.850000E+00,6.228860E+00,4.372488E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1249969,fr,1,3.950000E+00,6.228860E+00,4.372488E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +1249971,fr,1,3.950000E+00,6.228860E+00,4.372488E+01,5.000000E+00,Active Shallow Crust,2.400196E+02,5.800511E+01,0.000000E+00 +1249980,fr,1,4.050000E+00,6.228860E+00,4.372488E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999181E+01,0.000000E+00 +1249981,fr,1,4.050000E+00,6.228860E+00,4.372488E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999181E+01,0.000000E+00 +1250004,fr,1,4.250000E+00,6.228860E+00,4.372488E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1250130,fr,1,5.250000E+00,6.228860E+00,4.372488E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +1250197,fr,1,5.850000E+00,6.228860E+00,4.372488E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1250412,fr,1,3.650000E+00,2.745470E+00,4.082461E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1250413,fr,1,3.650000E+00,2.745470E+00,4.082461E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1250451,fr,1,3.950000E+00,2.745470E+00,4.082461E+01,5.000000E+00,Active Shallow Crust,2.400194E+02,5.800448E+01,0.000000E+00 +1250509,fr,1,4.450000E+00,2.745470E+00,4.082461E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +1250880,fr,1,3.550000E+00,4.842230E+00,4.694891E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999312E+01,0.000000E+00 +1250890,fr,1,3.550000E+00,4.842230E+00,4.694891E+01,1.500000E+01,Active Shallow Crust,1.288956E+02,8.999312E+01,0.000000E+00 +1250892,fr,1,3.650000E+00,4.842230E+00,4.694891E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998773E+01,0.000000E+00 +1250904,fr,1,3.750000E+00,4.842230E+00,4.694891E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +1250905,fr,1,3.750000E+00,4.842230E+00,4.694891E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +1250910,fr,1,3.750000E+00,4.842230E+00,4.694891E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998894E+01,-9.000000E+01 +1250917,fr,1,3.850000E+00,4.842230E+00,4.694891E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1250928,fr,2,3.950000E+00,4.842230E+00,4.694891E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999131E+01,0.000000E+00 +1250943,fr,1,4.050000E+00,4.842230E+00,4.694891E+01,5.000000E+00,Active Shallow Crust,2.400061E+02,5.800592E+01,0.000000E+00 +1250946,fr,1,4.050000E+00,4.842230E+00,4.694891E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998825E+01,-9.000000E+01 +1250952,fr,1,4.150000E+00,4.842230E+00,4.694891E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1250955,fr,1,4.150000E+00,4.842230E+00,4.694891E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.799732E+01,0.000000E+00 +1250976,fr,1,4.350000E+00,4.842230E+00,4.694891E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +1250982,fr,1,4.350000E+00,4.842230E+00,4.694891E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,-9.000000E+01 +1250985,fr,1,4.350000E+00,4.842230E+00,4.694891E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.998303E+01,0.000000E+00 +1250988,fr,1,4.450000E+00,4.842230E+00,4.694891E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1251084,fr,1,5.250000E+00,4.842230E+00,4.694891E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +1251360,fr,1,3.550000E+00,-5.083460E+00,4.895864E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998676E+01,0.000000E+00 +1251363,fr,1,3.550000E+00,-5.083460E+00,4.895864E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799907E+01,0.000000E+00 +1251364,fr,1,3.550000E+00,-5.083460E+00,4.895864E+01,1.500000E+01,Active Shallow Crust,2.400112E+02,5.799907E+01,0.000000E+00 +1251385,fr,1,3.750000E+00,-5.083460E+00,4.895864E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +1251840,fr,1,3.550000E+00,5.339080E+00,5.176596E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998752E+01,0.000000E+00 +1251864,fr,1,3.750000E+00,5.339080E+00,5.176596E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1251868,fr,1,3.750000E+00,5.339080E+00,5.176596E+01,1.500000E+01,Active Shallow Crust,2.400091E+02,5.801744E+01,0.000000E+00 +1251956,fr,1,4.450000E+00,5.339080E+00,5.176596E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999104E+01,-9.000000E+01 +1252320,fr,1,3.550000E+00,-5.357900E+00,4.659143E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999307E+01,0.000000E+00 +1252330,fr,1,3.550000E+00,-5.357900E+00,4.659143E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.999307E+01,0.000000E+00 +1252812,fr,2,3.650000E+00,-2.706780E+00,4.245873E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1252813,fr,1,3.650000E+00,-2.706780E+00,4.245873E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1252824,fr,1,3.750000E+00,-2.706780E+00,4.245873E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999113E+01,0.000000E+00 +1252836,fr,1,3.850000E+00,-2.706780E+00,4.245873E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1252858,fr,1,3.950000E+00,-2.706780E+00,4.245873E+01,1.500000E+01,Active Shallow Crust,1.289009E+02,8.999413E+01,0.000000E+00 +1252876,fr,1,4.150000E+00,-2.706780E+00,4.245873E+01,1.500000E+01,Active Shallow Crust,2.400075E+02,5.799739E+01,0.000000E+00 +1252910,fr,1,4.450000E+00,-2.706780E+00,4.245873E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +1253284,fr,1,3.550000E+00,-3.634380E+00,4.678375E+01,1.500000E+01,Active Shallow Crust,2.400121E+02,5.799834E+01,0.000000E+00 +1253340,fr,1,4.050000E+00,-3.634380E+00,4.678375E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1253760,fr,1,3.550000E+00,8.183720E+00,5.039199E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998714E+01,0.000000E+00 +1253762,fr,2,3.550000E+00,8.183720E+00,5.039199E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998714E+01,0.000000E+00 +1253772,fr,1,3.650000E+00,8.183720E+00,5.039199E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998854E+01,0.000000E+00 +1253785,fr,1,3.750000E+00,8.183720E+00,5.039199E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1253786,fr,2,3.750000E+00,8.183720E+00,5.039199E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1253791,fr,1,3.750000E+00,8.183720E+00,5.039199E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,-9.000000E+01 +1253793,fr,2,3.750000E+00,8.183720E+00,5.039199E+01,5.000000E+00,Active Shallow Crust,1.288939E+02,8.996756E+01,0.000000E+00 +1253796,fr,2,3.850000E+00,8.183720E+00,5.039199E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999090E+01,0.000000E+00 +1253810,fr,1,3.950000E+00,8.183720E+00,5.039199E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999189E+01,0.000000E+00 +1253820,fr,1,4.050000E+00,8.183720E+00,5.039199E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999277E+01,0.000000E+00 +1253832,fr,1,4.150000E+00,8.183720E+00,5.039199E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998711E+01,0.000000E+00 +1253838,fr,1,4.150000E+00,8.183720E+00,5.039199E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998696E+01,-9.000000E+01 +1253844,fr,1,4.250000E+00,8.183720E+00,5.039199E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998851E+01,0.000000E+00 +1253940,fr,1,5.050000E+00,8.183720E+00,5.039199E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999085E+01,0.000000E+00 +1253964,fr,1,5.250000E+00,8.183720E+00,5.039199E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +1254240,fr,1,3.550000E+00,-2.639960E+00,4.260629E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998887E+01,0.000000E+00 +1254269,fr,1,3.750000E+00,-2.639960E+00,4.260629E+01,2.750000E+01,Active Shallow Crust,2.400078E+02,5.801753E+01,0.000000E+00 +1254288,fr,1,3.950000E+00,-2.639960E+00,4.260629E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +1254300,fr,1,4.050000E+00,-2.639960E+00,4.260629E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1254306,fr,1,4.050000E+00,-2.639960E+00,4.260629E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,-9.000000E+01 +1254318,fr,1,4.150000E+00,-2.639960E+00,4.260629E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,-9.000000E+01 +1254360,fr,1,4.550000E+00,-2.639960E+00,4.260629E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +1254480,fr,1,5.550000E+00,-2.639960E+00,4.260629E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1254510,fr,1,5.750000E+00,-2.639960E+00,4.260629E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +1255200,fr,1,3.550000E+00,-4.898600E-01,4.773647E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1255209,fr,1,3.550000E+00,-4.898600E-01,4.773647E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999364E+01,0.000000E+00 +1255212,fr,1,3.650000E+00,-4.898600E-01,4.773647E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1255224,fr,1,3.750000E+00,-4.898600E-01,4.773647E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1255236,fr,5,3.850000E+00,-4.898600E-01,4.773647E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1255272,fr,1,4.150000E+00,-4.898600E-01,4.773647E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1255356,fr,1,4.850000E+00,-4.898600E-01,4.773647E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1255358,fr,1,4.850000E+00,-4.898600E-01,4.773647E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1255380,fr,1,5.050000E+00,-4.898600E-01,4.773647E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1256160,fr,3,3.550000E+00,2.722990E+00,4.598944E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +1256161,fr,1,3.550000E+00,2.722990E+00,4.598944E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +1256184,fr,1,3.750000E+00,2.722990E+00,4.598944E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998887E+01,0.000000E+00 +1256185,fr,1,3.750000E+00,2.722990E+00,4.598944E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998887E+01,0.000000E+00 +1256189,fr,1,3.750000E+00,2.722990E+00,4.598944E+01,2.750000E+01,Active Shallow Crust,2.400082E+02,5.801770E+01,0.000000E+00 +1256202,fr,1,3.850000E+00,2.722990E+00,4.598944E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1256203,fr,1,3.850000E+00,2.722990E+00,4.598944E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1256208,fr,1,3.950000E+00,2.722990E+00,4.598944E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +1256211,fr,1,3.950000E+00,2.722990E+00,4.598944E+01,5.000000E+00,Active Shallow Crust,2.400195E+02,5.800506E+01,0.000000E+00 +1256221,fr,1,4.050000E+00,2.722990E+00,4.598944E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1256238,fr,1,4.150000E+00,2.722990E+00,4.598944E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998934E+01,-9.000000E+01 +1256244,fr,2,4.250000E+00,2.722990E+00,4.598944E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999061E+01,0.000000E+00 +1256258,fr,1,4.350000E+00,2.722990E+00,4.598944E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1256262,fr,1,4.350000E+00,2.722990E+00,4.598944E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,-9.000000E+01 +1256320,fr,1,4.850000E+00,2.722990E+00,4.598944E+01,1.500000E+01,Active Shallow Crust,2.400170E+02,5.800219E+01,0.000000E+00 +1256340,fr,1,5.050000E+00,2.722990E+00,4.598944E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1256352,fr,1,5.150000E+00,2.722990E+00,4.598944E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1256385,fr,1,5.350000E+00,2.722990E+00,4.598944E+01,5.000000E+00,Active Shallow Crust,1.288835E+02,8.998800E+01,0.000000E+00 +1256652,fr,2,3.650000E+00,2.091690E+00,4.379587E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +1256664,fr,1,3.750000E+00,2.091690E+00,4.379587E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +1256683,fr,1,3.850000E+00,2.091690E+00,4.379587E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998958E+01,-9.000000E+01 +1256688,fr,1,3.950000E+00,2.091690E+00,4.379587E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +1256712,fr,1,4.150000E+00,2.091690E+00,4.379587E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1256744,fr,1,4.350000E+00,2.091690E+00,4.379587E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,-9.000000E+01 +1258080,fr,1,3.550000E+00,2.770080E+00,5.142561E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +1258095,fr,1,3.650000E+00,2.770080E+00,5.142561E+01,5.000000E+00,Active Shallow Crust,2.400015E+02,5.801299E+01,0.000000E+00 +1258152,fr,1,4.150000E+00,2.770080E+00,5.142561E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +1258207,fr,1,4.550000E+00,2.770080E+00,5.142561E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +1258560,fr,2,3.550000E+00,7.086110E+00,4.762093E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999320E+01,0.000000E+00 +1258562,fr,1,3.550000E+00,7.086110E+00,4.762093E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999320E+01,0.000000E+00 +1258563,fr,1,3.550000E+00,7.086110E+00,4.762093E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799826E+01,0.000000E+00 +1258568,fr,1,3.550000E+00,7.086110E+00,4.762093E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999313E+01,-9.000000E+01 +1258572,fr,1,3.650000E+00,7.086110E+00,4.762093E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998788E+01,0.000000E+00 +1258574,fr,2,3.650000E+00,7.086110E+00,4.762093E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998788E+01,0.000000E+00 +1258578,fr,1,3.650000E+00,7.086110E+00,4.762093E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998775E+01,-9.000000E+01 +1258584,fr,1,3.750000E+00,7.086110E+00,4.762093E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1258585,fr,1,3.750000E+00,7.086110E+00,4.762093E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1258586,fr,1,3.750000E+00,7.086110E+00,4.762093E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1258596,fr,2,3.850000E+00,7.086110E+00,4.762093E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +1258598,fr,1,3.850000E+00,7.086110E+00,4.762093E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +1258599,fr,1,3.850000E+00,7.086110E+00,4.762093E+01,5.000000E+00,Active Shallow Crust,2.400115E+02,5.799757E+01,0.000000E+00 +1258618,fr,2,3.950000E+00,7.086110E+00,4.762093E+01,1.500000E+01,Active Shallow Crust,1.289002E+02,8.999357E+01,0.000000E+00 +1258620,fr,1,4.050000E+00,7.086110E+00,4.762093E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998853E+01,0.000000E+00 +1258632,fr,2,4.150000E+00,7.086110E+00,4.762093E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1258636,fr,1,4.150000E+00,7.086110E+00,4.762093E+01,1.500000E+01,Active Shallow Crust,2.400089E+02,5.799700E+01,0.000000E+00 +1258660,fr,1,4.350000E+00,7.086110E+00,4.762093E+01,1.500000E+01,Active Shallow Crust,2.400083E+02,5.799591E+01,0.000000E+00 +1258668,fr,1,4.450000E+00,7.086110E+00,4.762093E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +1258693,fr,1,4.650000E+00,7.086110E+00,4.762093E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +1258716,fr,1,4.850000E+00,7.086110E+00,4.762093E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +1258717,fr,1,4.850000E+00,7.086110E+00,4.762093E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +1258731,fr,1,4.950000E+00,7.086110E+00,4.762093E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.800475E+01,0.000000E+00 +1258749,fr,1,5.050000E+00,7.086110E+00,4.762093E+01,5.000000E+00,Active Shallow Crust,1.288849E+02,8.999062E+01,0.000000E+00 +1259040,fr,1,3.550000E+00,1.565960E+00,4.278176E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +1259044,fr,1,3.550000E+00,1.565960E+00,4.278176E+01,1.500000E+01,Active Shallow Crust,2.400118E+02,5.799800E+01,0.000000E+00 +1259046,fr,1,3.550000E+00,1.565960E+00,4.278176E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,-9.000000E+01 +1259049,fr,1,3.550000E+00,1.565960E+00,4.278176E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999352E+01,0.000000E+00 +1259052,fr,2,3.650000E+00,1.565960E+00,4.278176E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1259053,fr,1,3.650000E+00,1.565960E+00,4.278176E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1259054,fr,1,3.650000E+00,1.565960E+00,4.278176E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1259056,fr,2,3.650000E+00,1.565960E+00,4.278176E+01,1.500000E+01,Active Shallow Crust,2.400008E+02,5.801280E+01,0.000000E+00 +1259061,fr,1,3.650000E+00,1.565960E+00,4.278176E+01,5.000000E+00,Active Shallow Crust,1.289009E+02,8.996346E+01,0.000000E+00 +1259064,fr,1,3.750000E+00,1.565960E+00,4.278176E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1259066,fr,1,3.750000E+00,1.565960E+00,4.278176E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1259076,fr,2,3.850000E+00,1.565960E+00,4.278176E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1259090,fr,1,3.950000E+00,1.565960E+00,4.278176E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +1259094,fr,1,3.950000E+00,1.565960E+00,4.278176E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,-9.000000E+01 +1259116,fr,1,4.150000E+00,1.565960E+00,4.278176E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.799708E+01,0.000000E+00 +1259118,fr,1,4.150000E+00,1.565960E+00,4.278176E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,-9.000000E+01 +1259148,fr,1,4.450000E+00,1.565960E+00,4.278176E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1259160,fr,1,4.550000E+00,1.565960E+00,4.278176E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1259184,fr,1,4.750000E+00,1.565960E+00,4.278176E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1259283,fr,1,5.550000E+00,1.565960E+00,4.278176E+01,5.000000E+00,Active Shallow Crust,2.400259E+02,5.800188E+01,0.000000E+00 +1259292,fr,1,5.650000E+00,1.565960E+00,4.278176E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1259522,fr,1,3.550000E+00,9.771030E+00,4.904909E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998678E+01,0.000000E+00 +1259539,fr,1,3.650000E+00,9.771030E+00,4.904909E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998808E+01,-9.000000E+01 +1259542,fr,1,3.650000E+00,9.771030E+00,4.904909E+01,1.500000E+01,Active Shallow Crust,1.288978E+02,8.996357E+01,0.000000E+00 +1259572,fr,1,3.950000E+00,9.771030E+00,4.904909E+01,1.500000E+01,Active Shallow Crust,2.400197E+02,5.800566E+01,0.000000E+00 +1260480,fr,1,3.550000E+00,2.240220E+00,4.302523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +1260489,fr,1,3.550000E+00,2.240220E+00,4.302523E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999447E+01,0.000000E+00 +1260490,fr,1,3.550000E+00,2.240220E+00,4.302523E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.999447E+01,0.000000E+00 +1260492,fr,2,3.650000E+00,2.240220E+00,4.302523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1260495,fr,1,3.650000E+00,2.240220E+00,4.302523E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801241E+01,0.000000E+00 +1260501,fr,1,3.650000E+00,2.240220E+00,4.302523E+01,5.000000E+00,Active Shallow Crust,1.288999E+02,8.996371E+01,0.000000E+00 +1260504,fr,1,3.750000E+00,2.240220E+00,4.302523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999122E+01,0.000000E+00 +1260513,fr,1,3.750000E+00,2.240220E+00,4.302523E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.996743E+01,0.000000E+00 +1260528,fr,1,3.950000E+00,2.240220E+00,4.302523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +1260529,fr,1,3.950000E+00,2.240220E+00,4.302523E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +1260556,fr,1,4.150000E+00,2.240220E+00,4.302523E+01,1.500000E+01,Active Shallow Crust,2.400083E+02,5.799719E+01,0.000000E+00 +1260650,fr,1,4.950000E+00,2.240220E+00,4.302523E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1260651,fr,1,4.950000E+00,2.240220E+00,4.302523E+01,5.000000E+00,Active Shallow Crust,2.400102E+02,5.800421E+01,0.000000E+00 +1260666,fr,1,5.050000E+00,2.240220E+00,4.302523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,-9.000000E+01 +1260684,fr,1,5.250000E+00,2.240220E+00,4.302523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1261440,fr,2,3.550000E+00,2.427380E+00,4.477045E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1261441,fr,1,3.550000E+00,2.427380E+00,4.477045E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1261442,fr,1,3.550000E+00,2.427380E+00,4.477045E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1261449,fr,1,3.550000E+00,2.427380E+00,4.477045E+01,5.000000E+00,Active Shallow Crust,1.288971E+02,8.999284E+01,0.000000E+00 +1261452,fr,2,3.650000E+00,2.427380E+00,4.477045E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1261453,fr,1,3.650000E+00,2.427380E+00,4.477045E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1261454,fr,1,3.650000E+00,2.427380E+00,4.477045E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1261476,fr,1,3.850000E+00,2.427380E+00,4.477045E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1261479,fr,1,3.850000E+00,2.427380E+00,4.477045E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799798E+01,0.000000E+00 +1261488,fr,1,3.950000E+00,2.427380E+00,4.477045E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +1261497,fr,1,3.950000E+00,2.427380E+00,4.477045E+01,5.000000E+00,Active Shallow Crust,1.289010E+02,8.999323E+01,0.000000E+00 +1261506,fr,2,4.050000E+00,2.427380E+00,4.477045E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,-9.000000E+01 +1261527,fr,1,4.250000E+00,2.427380E+00,4.477045E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.799385E+01,0.000000E+00 +1261560,fr,1,4.550000E+00,2.427380E+00,4.477045E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1261587,fr,1,4.750000E+00,2.427380E+00,4.477045E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.800440E+01,0.000000E+00 +1261596,fr,1,4.850000E+00,2.427380E+00,4.477045E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +1261969,fr,1,3.950000E+00,4.735760E+00,5.180533E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998820E+01,0.000000E+00 +1262040,fr,1,4.550000E+00,4.735760E+00,5.180533E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1262400,fr,2,3.550000E+00,2.161060E+00,4.181078E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +1262410,fr,1,3.550000E+00,2.161060E+00,4.181078E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.999436E+01,0.000000E+00 +1262413,fr,2,3.650000E+00,2.161060E+00,4.181078E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1262436,fr,3,3.850000E+00,2.161060E+00,4.181078E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +1262438,fr,1,3.850000E+00,2.161060E+00,4.181078E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +1262448,fr,1,3.950000E+00,2.161060E+00,4.181078E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +1262460,fr,1,4.050000E+00,2.161060E+00,4.181078E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1262472,fr,2,4.150000E+00,2.161060E+00,4.181078E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +1262484,fr,1,4.250000E+00,2.161060E+00,4.181078E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1262502,fr,1,4.350000E+00,2.161060E+00,4.181078E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,-9.000000E+01 +1262880,fr,1,3.550000E+00,4.504660E+00,4.573656E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999296E+01,0.000000E+00 +1262917,fr,1,3.850000E+00,4.504660E+00,4.573656E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1262928,fr,1,3.950000E+00,4.504660E+00,4.573656E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999112E+01,0.000000E+00 +1262929,fr,1,3.950000E+00,4.504660E+00,4.573656E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999112E+01,0.000000E+00 +1262976,fr,2,4.350000E+00,4.504660E+00,4.573656E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998879E+01,0.000000E+00 +1263360,fr,5,3.550000E+00,2.790970E+00,4.508976E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +1263366,fr,1,3.550000E+00,2.790970E+00,4.508976E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,-9.000000E+01 +1263396,fr,1,3.850000E+00,2.790970E+00,4.508976E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1263399,fr,1,3.850000E+00,2.790970E+00,4.508976E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799788E+01,0.000000E+00 +1263417,fr,1,3.950000E+00,2.790970E+00,4.508976E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.999438E+01,0.000000E+00 +1263423,fr,2,4.050000E+00,2.790970E+00,4.508976E+01,5.000000E+00,Active Shallow Crust,2.400056E+02,5.800601E+01,0.000000E+00 +1263456,fr,1,4.350000E+00,2.790970E+00,4.508976E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1263471,fr,1,4.450000E+00,2.790970E+00,4.508976E+01,5.000000E+00,Active Shallow Crust,2.400049E+02,5.799453E+01,0.000000E+00 +1263850,fr,1,3.550000E+00,4.600130E+00,5.130096E+01,1.500000E+01,Active Shallow Crust,1.288950E+02,8.999370E+01,0.000000E+00 +1263864,fr,1,3.750000E+00,4.600130E+00,5.130096E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1263924,fr,1,4.250000E+00,4.600130E+00,5.130096E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998873E+01,0.000000E+00 +1264020,fr,1,5.050000E+00,4.600130E+00,5.130096E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1264327,fr,1,3.550000E+00,-2.595800E-01,5.000920E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,-9.000000E+01 +1264356,fr,1,3.850000E+00,-2.595800E-01,5.000920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1264368,fr,1,3.950000E+00,-2.595800E-01,5.000920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1264536,fr,1,5.350000E+00,-2.595800E-01,5.000920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1265283,fr,1,3.550000E+00,1.386390E+00,4.956666E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799817E+01,0.000000E+00 +1265289,fr,1,3.550000E+00,1.386390E+00,4.956666E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999346E+01,0.000000E+00 +1265293,fr,1,3.650000E+00,1.386390E+00,4.956666E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1265295,fr,1,3.650000E+00,1.386390E+00,4.956666E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801313E+01,0.000000E+00 +1265304,fr,1,3.750000E+00,1.386390E+00,4.956666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +1265305,fr,1,3.750000E+00,1.386390E+00,4.956666E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +1265316,fr,1,3.850000E+00,1.386390E+00,4.956666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1265322,fr,1,3.850000E+00,1.386390E+00,4.956666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,-9.000000E+01 +1265329,fr,1,3.950000E+00,1.386390E+00,4.956666E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1265337,fr,1,3.950000E+00,1.386390E+00,4.956666E+01,5.000000E+00,Active Shallow Crust,1.288998E+02,8.999381E+01,0.000000E+00 +1265347,fr,1,4.050000E+00,1.386390E+00,4.956666E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,-9.000000E+01 +1265366,fr,1,4.250000E+00,1.386390E+00,4.956666E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1265377,fr,1,4.350000E+00,1.386390E+00,4.956666E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1265460,fr,1,5.050000E+00,1.386390E+00,4.956666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1265814,fr,1,3.950000E+00,-3.062110E+00,4.670483E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998897E+01,-9.000000E+01 +1266240,fr,2,3.550000E+00,5.568460E+00,4.522752E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999290E+01,0.000000E+00 +1266242,fr,1,3.550000E+00,5.568460E+00,4.522752E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999290E+01,0.000000E+00 +1266243,fr,1,3.550000E+00,5.568460E+00,4.522752E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799836E+01,0.000000E+00 +1266249,fr,1,3.550000E+00,5.568460E+00,4.522752E+01,5.000000E+00,Active Shallow Crust,1.288977E+02,8.999290E+01,0.000000E+00 +1266252,fr,2,3.650000E+00,5.568460E+00,4.522752E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998734E+01,0.000000E+00 +1266255,fr,1,3.650000E+00,5.568460E+00,4.522752E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801255E+01,0.000000E+00 +1266259,fr,1,3.650000E+00,5.568460E+00,4.522752E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998719E+01,-9.000000E+01 +1266261,fr,2,3.650000E+00,5.568460E+00,4.522752E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.996350E+01,0.000000E+00 +1266264,fr,2,3.750000E+00,5.568460E+00,4.522752E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +1266268,fr,1,3.750000E+00,5.568460E+00,4.522752E+01,1.500000E+01,Active Shallow Crust,2.400083E+02,5.801757E+01,0.000000E+00 +1266276,fr,1,3.850000E+00,5.568460E+00,4.522752E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1266279,fr,1,3.850000E+00,5.568460E+00,4.522752E+01,5.000000E+00,Active Shallow Crust,2.400101E+02,5.799743E+01,0.000000E+00 +1266285,fr,1,3.850000E+00,5.568460E+00,4.522752E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999246E+01,0.000000E+00 +1266288,fr,1,3.950000E+00,5.568460E+00,4.522752E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +1266294,fr,1,3.950000E+00,5.568460E+00,4.522752E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,-9.000000E+01 +1266297,fr,1,3.950000E+00,5.568460E+00,4.522752E+01,5.000000E+00,Active Shallow Crust,1.289012E+02,8.999328E+01,0.000000E+00 +1266300,fr,1,4.050000E+00,5.568460E+00,4.522752E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998802E+01,0.000000E+00 +1266301,fr,1,4.050000E+00,5.568460E+00,4.522752E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998802E+01,0.000000E+00 +1266312,fr,1,4.150000E+00,5.568460E+00,4.522752E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +1266324,fr,1,4.250000E+00,5.568460E+00,4.522752E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1266336,fr,1,4.350000E+00,5.568460E+00,4.522752E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +1266349,fr,1,4.450000E+00,5.568460E+00,4.522752E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1266386,fr,1,4.750000E+00,5.568460E+00,4.522752E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +1266528,fr,1,5.950000E+00,5.568460E+00,4.522752E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1266720,fr,1,3.550000E+00,-4.817790E+00,4.775638E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999322E+01,0.000000E+00 +1266732,fr,1,3.650000E+00,-4.817790E+00,4.775638E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998792E+01,0.000000E+00 +1266769,fr,1,3.950000E+00,-4.817790E+00,4.775638E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999145E+01,0.000000E+00 +1266804,fr,1,4.250000E+00,-4.817790E+00,4.775638E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +1266879,fr,1,4.850000E+00,-4.817790E+00,4.775638E+01,5.000000E+00,Active Shallow Crust,2.400180E+02,5.800238E+01,0.000000E+00 +1267203,fr,1,3.550000E+00,-4.112700E-01,4.599175E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799821E+01,0.000000E+00 +1267212,fr,3,3.650000E+00,-4.112700E-01,4.599175E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1267215,fr,1,3.650000E+00,-4.112700E-01,4.599175E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801288E+01,0.000000E+00 +1267218,fr,1,3.650000E+00,-4.112700E-01,4.599175E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,-9.000000E+01 +1267225,fr,1,3.750000E+00,-4.112700E-01,4.599175E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1267227,fr,2,3.750000E+00,-4.112700E-01,4.599175E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801752E+01,0.000000E+00 +1267237,fr,1,3.850000E+00,-4.112700E-01,4.599175E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1267248,fr,1,3.950000E+00,-4.112700E-01,4.599175E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1267254,fr,1,3.950000E+00,-4.112700E-01,4.599175E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +1267259,fr,1,3.950000E+00,-4.112700E-01,4.599175E+01,2.750000E+01,Active Shallow Crust,1.289004E+02,8.999364E+01,0.000000E+00 +1267260,fr,3,4.050000E+00,-4.112700E-01,4.599175E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1267308,fr,1,4.450000E+00,-4.112700E-01,4.599175E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1267344,fr,1,4.750000E+00,-4.112700E-01,4.599175E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1267368,fr,1,4.950000E+00,-4.112700E-01,4.599175E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1267692,fr,1,3.650000E+00,1.630480E+00,4.996886E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1267695,fr,1,3.650000E+00,1.630480E+00,4.996886E+01,5.000000E+00,Active Shallow Crust,2.400015E+02,5.801301E+01,0.000000E+00 +1267707,fr,1,3.750000E+00,1.630480E+00,4.996886E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801778E+01,0.000000E+00 +1267752,fr,1,4.150000E+00,1.630480E+00,4.996886E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1267753,fr,1,4.150000E+00,1.630480E+00,4.996886E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1267824,fr,1,4.750000E+00,1.630480E+00,4.996886E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1267896,fr,1,5.350000E+00,1.630480E+00,4.996886E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1268163,fr,1,3.550000E+00,6.923050E+00,5.160045E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799878E+01,0.000000E+00 +1268173,fr,1,3.650000E+00,6.923050E+00,5.160045E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998884E+01,0.000000E+00 +1268220,fr,1,4.050000E+00,6.923050E+00,5.160045E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1268256,fr,1,4.350000E+00,6.923050E+00,5.160045E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1268642,fr,1,3.550000E+00,2.623820E+00,4.094111E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998857E+01,0.000000E+00 +1268652,fr,1,3.650000E+00,2.623820E+00,4.094111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1268664,fr,1,3.750000E+00,2.623820E+00,4.094111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999092E+01,0.000000E+00 +1268688,fr,2,3.950000E+00,2.623820E+00,4.094111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1268844,fr,1,5.250000E+00,2.623820E+00,4.094111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1269168,fr,1,3.950000E+00,5.059490E+00,4.888771E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999163E+01,0.000000E+00 +1269330,fr,1,5.250000E+00,5.059490E+00,4.888771E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,-9.000000E+01 +1270080,fr,2,3.550000E+00,8.197670E+00,4.863825E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998667E+01,0.000000E+00 +1270092,fr,1,3.650000E+00,8.197670E+00,4.863825E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998812E+01,0.000000E+00 +1270101,fr,2,3.650000E+00,8.197670E+00,4.863825E+01,5.000000E+00,Active Shallow Crust,1.288983E+02,8.996356E+01,0.000000E+00 +1270104,fr,3,3.750000E+00,8.197670E+00,4.863825E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998941E+01,0.000000E+00 +1270107,fr,1,3.750000E+00,8.197670E+00,4.863825E+01,5.000000E+00,Active Shallow Crust,2.400093E+02,5.801775E+01,0.000000E+00 +1270116,fr,2,3.850000E+00,8.197670E+00,4.863825E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +1270128,fr,1,3.950000E+00,8.197670E+00,4.863825E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999159E+01,0.000000E+00 +1270152,fr,1,4.150000E+00,8.197670E+00,4.863825E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999332E+01,0.000000E+00 +1270164,fr,3,4.250000E+00,8.197670E+00,4.863825E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998809E+01,0.000000E+00 +1270173,fr,1,4.250000E+00,8.197670E+00,4.863825E+01,5.000000E+00,Active Shallow Crust,1.288947E+02,8.998103E+01,0.000000E+00 +1270237,fr,1,4.850000E+00,8.197670E+00,4.863825E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999105E+01,0.000000E+00 +1270242,fr,1,4.850000E+00,8.197670E+00,4.863825E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,-9.000000E+01 +1270326,fr,1,5.550000E+00,8.197670E+00,4.863825E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,-9.000000E+01 +1270333,fr,1,5.650000E+00,8.197670E+00,4.863825E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1270561,fr,2,3.550000E+00,7.197320E+00,4.370676E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999271E+01,0.000000E+00 +1270562,fr,1,3.550000E+00,7.197320E+00,4.370676E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999271E+01,0.000000E+00 +1270569,fr,1,3.550000E+00,7.197320E+00,4.370676E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999635E+01,0.000000E+00 +1270573,fr,1,3.650000E+00,7.197320E+00,4.370676E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998701E+01,0.000000E+00 +1270584,fr,1,3.750000E+00,7.197320E+00,4.370676E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998842E+01,0.000000E+00 +1270593,fr,1,3.750000E+00,7.197320E+00,4.370676E+01,5.000000E+00,Active Shallow Crust,1.288977E+02,8.996680E+01,0.000000E+00 +1270594,fr,1,3.750000E+00,7.197320E+00,4.370676E+01,1.500000E+01,Active Shallow Crust,1.288977E+02,8.996680E+01,0.000000E+00 +1270596,fr,1,3.850000E+00,7.197320E+00,4.370676E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1270599,fr,1,3.850000E+00,7.197320E+00,4.370676E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799707E+01,0.000000E+00 +1270605,fr,1,3.850000E+00,7.197320E+00,4.370676E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999484E+01,0.000000E+00 +1270608,fr,2,3.950000E+00,7.197320E+00,4.370676E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999080E+01,0.000000E+00 +1270621,fr,2,4.050000E+00,7.197320E+00,4.370676E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999180E+01,0.000000E+00 +1270635,fr,1,4.150000E+00,7.197320E+00,4.370676E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.799744E+01,0.000000E+00 +1270648,fr,1,4.250000E+00,7.197320E+00,4.370676E+01,1.500000E+01,Active Shallow Crust,2.400067E+02,5.799411E+01,0.000000E+00 +1270653,fr,1,4.250000E+00,7.197320E+00,4.370676E+01,5.000000E+00,Active Shallow Crust,1.288947E+02,8.998084E+01,0.000000E+00 +1270654,fr,1,4.250000E+00,7.197320E+00,4.370676E+01,1.500000E+01,Active Shallow Crust,1.288947E+02,8.998084E+01,0.000000E+00 +1270656,fr,1,4.350000E+00,7.197320E+00,4.370676E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +1270728,fr,1,4.950000E+00,7.197320E+00,4.370676E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1271077,fr,1,3.850000E+00,2.475290E+00,4.724963E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +1271102,fr,1,4.050000E+00,2.475290E+00,4.724963E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +1271522,fr,1,3.550000E+00,-8.377800E-01,4.554869E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +1271556,fr,1,3.850000E+00,-8.377800E-01,4.554869E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1271574,fr,1,3.950000E+00,-8.377800E-01,4.554869E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,-9.000000E+01 +1272000,fr,2,3.550000E+00,6.809780E+00,5.085324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998727E+01,0.000000E+00 +1272001,fr,1,3.550000E+00,6.809780E+00,5.085324E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998727E+01,0.000000E+00 +1272003,fr,1,3.550000E+00,6.809780E+00,5.085324E+01,5.000000E+00,Active Shallow Crust,2.400138E+02,5.799734E+01,0.000000E+00 +1272004,fr,1,3.550000E+00,6.809780E+00,5.085324E+01,1.500000E+01,Active Shallow Crust,2.400138E+02,5.799734E+01,0.000000E+00 +1272012,fr,4,3.650000E+00,6.809780E+00,5.085324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +1272013,fr,1,3.650000E+00,6.809780E+00,5.085324E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +1272014,fr,1,3.650000E+00,6.809780E+00,5.085324E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +1272024,fr,1,3.750000E+00,6.809780E+00,5.085324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1272027,fr,1,3.750000E+00,6.809780E+00,5.085324E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.801783E+01,0.000000E+00 +1272030,fr,1,3.750000E+00,6.809780E+00,5.085324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,-9.000000E+01 +1272033,fr,1,3.750000E+00,6.809780E+00,5.085324E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.996757E+01,0.000000E+00 +1272034,fr,1,3.750000E+00,6.809780E+00,5.085324E+01,1.500000E+01,Active Shallow Crust,1.288957E+02,8.996757E+01,0.000000E+00 +1272049,fr,1,3.950000E+00,6.809780E+00,5.085324E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999197E+01,0.000000E+00 +1272050,fr,1,3.950000E+00,6.809780E+00,5.085324E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999197E+01,0.000000E+00 +1272052,fr,1,3.950000E+00,6.809780E+00,5.085324E+01,1.500000E+01,Active Shallow Crust,2.400204E+02,5.800478E+01,0.000000E+00 +1272060,fr,1,4.050000E+00,6.809780E+00,5.085324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +1272063,fr,1,4.050000E+00,6.809780E+00,5.085324E+01,5.000000E+00,Active Shallow Crust,2.400061E+02,5.800584E+01,0.000000E+00 +1272081,fr,2,4.150000E+00,6.809780E+00,5.085324E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.999362E+01,0.000000E+00 +1272093,fr,1,4.250000E+00,6.809780E+00,5.085324E+01,5.000000E+00,Active Shallow Crust,1.288935E+02,8.998111E+01,0.000000E+00 +1272097,fr,1,4.350000E+00,6.809780E+00,5.085324E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1272108,fr,1,4.450000E+00,6.809780E+00,5.085324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +1272109,fr,1,4.450000E+00,6.809780E+00,5.085324E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +1272141,fr,1,4.650000E+00,6.809780E+00,5.085324E+01,5.000000E+00,Active Shallow Crust,1.288899E+02,8.998701E+01,0.000000E+00 +1272146,fr,1,4.750000E+00,6.809780E+00,5.085324E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +1272180,fr,1,5.050000E+00,6.809780E+00,5.085324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1272219,fr,1,5.350000E+00,6.809780E+00,5.085324E+01,5.000000E+00,Active Shallow Crust,2.400286E+02,5.799845E+01,0.000000E+00 +1272242,fr,1,5.550000E+00,6.809780E+00,5.085324E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1272480,fr,1,3.550000E+00,-3.763910E+00,5.029593E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1272966,fr,1,3.550000E+00,7.668060E+00,5.144239E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998728E+01,-9.000000E+01 +1273468,fr,1,3.750000E+00,1.000640E+00,4.312672E+01,1.500000E+01,Active Shallow Crust,2.400080E+02,5.801735E+01,0.000000E+00 +1273486,fr,1,3.850000E+00,1.000640E+00,4.312672E+01,1.500000E+01,Active Shallow Crust,1.288960E+02,8.999348E+01,0.000000E+00 +1273488,fr,1,3.950000E+00,1.000640E+00,4.312672E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1273720,fr,1,5.850000E+00,1.000640E+00,4.312672E+01,1.500000E+01,Active Shallow Crust,2.400405E+02,5.799898E+01,0.000000E+00 +1274053,fr,1,4.650000E+00,-3.494670E+00,4.707208E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +1274400,fr,1,3.550000E+00,3.140670E+00,5.001959E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +1274439,fr,1,3.850000E+00,3.140670E+00,5.001959E+01,5.000000E+00,Active Shallow Crust,2.400115E+02,5.799800E+01,0.000000E+00 +1274596,fr,1,5.150000E+00,3.140670E+00,5.001959E+01,1.500000E+01,Active Shallow Crust,2.400219E+02,5.800033E+01,0.000000E+00 +1274886,fr,1,3.550000E+00,4.607850E+00,5.007368E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998691E+01,-9.000000E+01 +1274928,fr,1,3.950000E+00,4.607850E+00,5.007368E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999183E+01,0.000000E+00 +1274949,fr,1,4.050000E+00,4.607850E+00,5.007368E+01,5.000000E+00,Active Shallow Crust,1.288891E+02,8.999454E+01,0.000000E+00 +1275360,fr,2,3.550000E+00,-8.803000E-02,4.547665E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1275396,fr,2,3.850000E+00,-8.803000E-02,4.547665E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1275397,fr,1,3.850000E+00,-8.803000E-02,4.547665E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1275408,fr,1,3.950000E+00,-8.803000E-02,4.547665E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1275410,fr,1,3.950000E+00,-8.803000E-02,4.547665E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1275422,fr,1,4.050000E+00,-8.803000E-02,4.547665E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1275432,fr,1,4.150000E+00,-8.803000E-02,4.547665E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1275468,fr,1,4.450000E+00,-8.803000E-02,4.547665E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1275483,fr,1,4.550000E+00,-8.803000E-02,4.547665E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.799732E+01,0.000000E+00 +1275576,fr,2,5.350000E+00,-8.803000E-02,4.547665E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1275849,fr,1,3.550000E+00,-5.189160E+00,4.785320E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999323E+01,0.000000E+00 +1275854,fr,1,3.650000E+00,-5.189160E+00,4.785320E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998794E+01,0.000000E+00 +1275888,fr,1,3.950000E+00,-5.189160E+00,4.785320E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999146E+01,0.000000E+00 +1275893,fr,1,3.950000E+00,-5.189160E+00,4.785320E+01,2.750000E+01,Active Shallow Crust,2.400205E+02,5.800432E+01,0.000000E+00 +1275957,fr,1,4.450000E+00,-5.189160E+00,4.785320E+01,5.000000E+00,Active Shallow Crust,1.288922E+02,8.999280E+01,0.000000E+00 +1276344,fr,1,3.750000E+00,-1.964340E+00,4.963521E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +1276368,fr,1,3.950000E+00,-1.964340E+00,4.963521E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1276429,fr,1,4.450000E+00,-1.964340E+00,4.963521E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1277292,fr,2,3.650000E+00,2.178520E+00,5.050824E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +1277388,fr,1,4.450000E+00,2.178520E+00,5.050824E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +1277389,fr,1,4.450000E+00,2.178520E+00,5.050824E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +1277553,fr,1,5.750000E+00,2.178520E+00,5.050824E+01,5.000000E+00,Active Shallow Crust,1.288672E+02,8.999097E+01,0.000000E+00 +1277760,fr,3,3.550000E+00,-1.204800E+00,4.754864E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1277766,fr,1,3.550000E+00,-1.204800E+00,4.754864E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,-9.000000E+01 +1277772,fr,2,3.650000E+00,-1.204800E+00,4.754864E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +1277784,fr,1,3.750000E+00,-1.204800E+00,4.754864E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +1277791,fr,1,3.750000E+00,-1.204800E+00,4.754864E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,-9.000000E+01 +1277796,fr,1,3.850000E+00,-1.204800E+00,4.754864E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1277811,fr,1,3.950000E+00,-1.204800E+00,4.754864E+01,5.000000E+00,Active Shallow Crust,2.400198E+02,5.800507E+01,0.000000E+00 +1277822,fr,1,4.050000E+00,-1.204800E+00,4.754864E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1277845,fr,1,4.250000E+00,-1.204800E+00,4.754864E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1277865,fr,1,4.350000E+00,-1.204800E+00,4.754864E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.998283E+01,0.000000E+00 +1277870,fr,1,4.450000E+00,-1.204800E+00,4.754864E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +1277883,fr,1,4.550000E+00,-1.204800E+00,4.754864E+01,5.000000E+00,Active Shallow Crust,2.400095E+02,5.799742E+01,0.000000E+00 +1277916,fr,1,4.850000E+00,-1.204800E+00,4.754864E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1278240,fr,1,3.550000E+00,2.197430E+00,4.986023E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1278257,fr,1,3.650000E+00,2.197430E+00,4.986023E+01,2.750000E+01,Active Shallow Crust,2.400017E+02,5.801284E+01,0.000000E+00 +1278264,fr,3,3.750000E+00,2.197430E+00,4.986023E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +1278289,fr,1,3.950000E+00,2.197430E+00,4.986023E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1278432,fr,1,5.150000E+00,2.197430E+00,4.986023E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1278720,fr,1,3.550000E+00,-4.680030E+00,4.804503E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999326E+01,0.000000E+00 +1278723,fr,1,3.550000E+00,-4.680030E+00,4.804503E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799777E+01,0.000000E+00 +1278732,fr,1,3.650000E+00,-4.680030E+00,4.804503E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998798E+01,0.000000E+00 +1278733,fr,1,3.650000E+00,-4.680030E+00,4.804503E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998798E+01,0.000000E+00 +1278735,fr,1,3.650000E+00,-4.680030E+00,4.804503E+01,5.000000E+00,Active Shallow Crust,2.400025E+02,5.801192E+01,0.000000E+00 +1278747,fr,1,3.750000E+00,-4.680030E+00,4.804503E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.801733E+01,0.000000E+00 +1278756,fr,2,3.850000E+00,-4.680030E+00,4.804503E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1278780,fr,1,4.050000E+00,-4.680030E+00,4.804503E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +1278781,fr,1,4.050000E+00,-4.680030E+00,4.804503E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +1279680,fr,1,3.550000E+00,4.028800E-01,5.147820E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1279824,fr,1,4.750000E+00,4.028800E-01,5.147820E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1280199,fr,2,3.850000E+00,6.476850E+00,4.348839E+01,5.000000E+00,Active Shallow Crust,2.400103E+02,5.799782E+01,0.000000E+00 +1280208,fr,1,3.950000E+00,6.476850E+00,4.348839E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999077E+01,0.000000E+00 +1280220,fr,1,4.050000E+00,6.476850E+00,4.348839E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999177E+01,0.000000E+00 +1280640,fr,3,3.550000E+00,7.518830E+00,4.454132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999281E+01,0.000000E+00 +1280641,fr,4,3.550000E+00,7.518830E+00,4.454132E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999281E+01,0.000000E+00 +1280643,fr,1,3.550000E+00,7.518830E+00,4.454132E+01,5.000000E+00,Active Shallow Crust,2.400135E+02,5.799730E+01,0.000000E+00 +1280644,fr,1,3.550000E+00,7.518830E+00,4.454132E+01,1.500000E+01,Active Shallow Crust,2.400135E+02,5.799730E+01,0.000000E+00 +1280647,fr,1,3.550000E+00,7.518830E+00,4.454132E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999273E+01,-9.000000E+01 +1280649,fr,1,3.550000E+00,7.518830E+00,4.454132E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999641E+01,0.000000E+00 +1280650,fr,2,3.550000E+00,7.518830E+00,4.454132E+01,1.500000E+01,Active Shallow Crust,1.288957E+02,8.999641E+01,0.000000E+00 +1280652,fr,9,3.650000E+00,7.518830E+00,4.454132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998719E+01,0.000000E+00 +1280653,fr,2,3.650000E+00,7.518830E+00,4.454132E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998719E+01,0.000000E+00 +1280655,fr,3,3.650000E+00,7.518830E+00,4.454132E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801271E+01,0.000000E+00 +1280656,fr,2,3.650000E+00,7.518830E+00,4.454132E+01,1.500000E+01,Active Shallow Crust,2.400009E+02,5.801271E+01,0.000000E+00 +1280662,fr,1,3.650000E+00,7.518830E+00,4.454132E+01,1.500000E+01,Active Shallow Crust,1.289001E+02,8.996349E+01,0.000000E+00 +1280664,fr,5,3.750000E+00,7.518830E+00,4.454132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998858E+01,0.000000E+00 +1280665,fr,2,3.750000E+00,7.518830E+00,4.454132E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998858E+01,0.000000E+00 +1280667,fr,2,3.750000E+00,7.518830E+00,4.454132E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.801778E+01,0.000000E+00 +1280670,fr,1,3.750000E+00,7.518830E+00,4.454132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998845E+01,-9.000000E+01 +1280671,fr,1,3.750000E+00,7.518830E+00,4.454132E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998845E+01,-9.000000E+01 +1280673,fr,1,3.750000E+00,7.518830E+00,4.454132E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.996746E+01,0.000000E+00 +1280676,fr,3,3.850000E+00,7.518830E+00,4.454132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1280688,fr,1,3.950000E+00,7.518830E+00,4.454132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +1280689,fr,1,3.950000E+00,7.518830E+00,4.454132E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +1280700,fr,2,4.050000E+00,7.518830E+00,4.454132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999191E+01,0.000000E+00 +1280702,fr,1,4.050000E+00,7.518830E+00,4.454132E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999191E+01,0.000000E+00 +1280703,fr,2,4.050000E+00,7.518830E+00,4.454132E+01,5.000000E+00,Active Shallow Crust,2.400062E+02,5.800576E+01,0.000000E+00 +1280712,fr,2,4.150000E+00,7.518830E+00,4.454132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1280718,fr,1,4.150000E+00,7.518830E+00,4.454132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,-9.000000E+01 +1280724,fr,2,4.250000E+00,7.518830E+00,4.454132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +1280728,fr,1,4.250000E+00,7.518830E+00,4.454132E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.799389E+01,0.000000E+00 +1280736,fr,1,4.350000E+00,7.518830E+00,4.454132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +1280737,fr,1,4.350000E+00,7.518830E+00,4.454132E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +1280742,fr,1,4.350000E+00,7.518830E+00,4.454132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999132E+01,-9.000000E+01 +1280752,fr,1,4.450000E+00,7.518830E+00,4.454132E+01,1.500000E+01,Active Shallow Crust,2.400050E+02,5.799466E+01,0.000000E+00 +1280763,fr,2,4.550000E+00,7.518830E+00,4.454132E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.799704E+01,0.000000E+00 +1280772,fr,1,4.650000E+00,7.518830E+00,4.454132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1280778,fr,1,4.650000E+00,7.518830E+00,4.454132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,-9.000000E+01 +1280784,fr,2,4.750000E+00,7.518830E+00,4.454132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +1280787,fr,1,4.750000E+00,7.518830E+00,4.454132E+01,5.000000E+00,Active Shallow Crust,2.400068E+02,5.800418E+01,0.000000E+00 +1280799,fr,1,4.850000E+00,7.518830E+00,4.454132E+01,5.000000E+00,Active Shallow Crust,2.400165E+02,5.800214E+01,0.000000E+00 +1281145,fr,1,3.750000E+00,4.924840E+00,4.962070E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +1281204,fr,1,4.250000E+00,4.924840E+00,4.962070E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999124E+01,0.000000E+00 +1281601,fr,2,3.550000E+00,-5.290520E+00,4.852756E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999332E+01,0.000000E+00 +1281606,fr,1,3.550000E+00,-5.290520E+00,4.852756E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999325E+01,-9.000000E+01 +1281624,fr,1,3.750000E+00,-5.290520E+00,4.852756E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +1281630,fr,1,3.750000E+00,-5.290520E+00,4.852756E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,-9.000000E+01 +1281638,fr,1,3.850000E+00,-5.290520E+00,4.852756E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +1281672,fr,1,4.150000E+00,-5.290520E+00,4.852756E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1281685,fr,1,4.250000E+00,-5.290520E+00,4.852756E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999105E+01,0.000000E+00 +1281711,fr,1,4.450000E+00,-5.290520E+00,4.852756E+01,5.000000E+00,Active Shallow Crust,2.400058E+02,5.799498E+01,0.000000E+00 +1281720,fr,1,4.550000E+00,-5.290520E+00,4.852756E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +1282080,fr,1,3.550000E+00,3.291250E+00,4.697998E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1282561,fr,3,3.550000E+00,-3.438340E+00,4.843939E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1282562,fr,1,3.550000E+00,-3.438340E+00,4.843939E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1282572,fr,1,3.650000E+00,-3.438340E+00,4.843939E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999106E+01,0.000000E+00 +1282573,fr,1,3.650000E+00,-3.438340E+00,4.843939E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999106E+01,0.000000E+00 +1282583,fr,1,3.650000E+00,-3.438340E+00,4.843939E+01,2.750000E+01,Active Shallow Crust,1.288995E+02,8.996356E+01,0.000000E+00 +1282585,fr,1,3.750000E+00,-3.438340E+00,4.843939E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +1282587,fr,1,3.750000E+00,-3.438340E+00,4.843939E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.801776E+01,0.000000E+00 +1282590,fr,2,3.750000E+00,-3.438340E+00,4.843939E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998925E+01,-9.000000E+01 +1282596,fr,3,3.850000E+00,-3.438340E+00,4.843939E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +1282599,fr,1,3.850000E+00,-3.438340E+00,4.843939E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799760E+01,0.000000E+00 +1282600,fr,2,3.850000E+00,-3.438340E+00,4.843939E+01,1.500000E+01,Active Shallow Crust,2.400114E+02,5.799760E+01,0.000000E+00 +1282602,fr,1,3.850000E+00,-3.438340E+00,4.843939E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,-9.000000E+01 +1282605,fr,1,3.850000E+00,-3.438340E+00,4.843939E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999290E+01,0.000000E+00 +1282609,fr,1,3.950000E+00,-3.438340E+00,4.843939E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +1282611,fr,1,3.950000E+00,-3.438340E+00,4.843939E+01,5.000000E+00,Active Shallow Crust,2.400200E+02,5.800495E+01,0.000000E+00 +1282623,fr,1,4.050000E+00,-3.438340E+00,4.843939E+01,5.000000E+00,Active Shallow Crust,2.400060E+02,5.800589E+01,0.000000E+00 +1282626,fr,1,4.050000E+00,-3.438340E+00,4.843939E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,-9.000000E+01 +1282644,fr,1,4.250000E+00,-3.438340E+00,4.843939E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +1282645,fr,1,4.250000E+00,-3.438340E+00,4.843939E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +1282680,fr,1,4.550000E+00,-3.438340E+00,4.843939E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +1282692,fr,1,4.650000E+00,-3.438340E+00,4.843939E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +1282704,fr,1,4.750000E+00,-3.438340E+00,4.843939E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1282731,fr,1,4.950000E+00,-3.438340E+00,4.843939E+01,5.000000E+00,Active Shallow Crust,2.400129E+02,5.800459E+01,0.000000E+00 +1283556,fr,1,3.850000E+00,2.969520E+00,5.270206E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +1284009,fr,1,3.550000E+00,1.044060E+00,5.214709E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.999381E+01,0.000000E+00 +1284036,fr,1,3.850000E+00,1.044060E+00,5.214709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1284072,fr,1,4.150000E+00,1.044060E+00,5.214709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1284163,fr,1,4.850000E+00,1.044060E+00,5.214709E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,-9.000000E+01 +1284397,fr,1,6.850000E+00,1.044060E+00,5.214709E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +1284483,fr,1,3.550000E+00,6.949560E+00,4.394473E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799786E+01,0.000000E+00 +1284484,fr,1,3.550000E+00,6.949560E+00,4.394473E+01,1.500000E+01,Active Shallow Crust,2.400123E+02,5.799786E+01,0.000000E+00 +1284495,fr,1,3.650000E+00,6.949560E+00,4.394473E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801294E+01,0.000000E+00 +1284504,fr,1,3.750000E+00,6.949560E+00,4.394473E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998846E+01,0.000000E+00 +1284510,fr,1,3.750000E+00,6.949560E+00,4.394473E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998833E+01,-9.000000E+01 +1284516,fr,2,3.850000E+00,6.949560E+00,4.394473E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1284528,fr,1,3.950000E+00,6.949560E+00,4.394473E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +1284529,fr,1,3.950000E+00,6.949560E+00,4.394473E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +1284540,fr,1,4.050000E+00,6.949560E+00,4.394473E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999184E+01,0.000000E+00 +1284552,fr,1,4.150000E+00,6.949560E+00,4.394473E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998908E+01,0.000000E+00 +1284960,fr,1,3.550000E+00,6.142960E+00,4.358094E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999270E+01,0.000000E+00 +1284961,fr,1,3.550000E+00,6.142960E+00,4.358094E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999270E+01,0.000000E+00 +1284962,fr,1,3.550000E+00,6.142960E+00,4.358094E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999270E+01,0.000000E+00 +1284964,fr,1,3.550000E+00,6.142960E+00,4.358094E+01,1.500000E+01,Active Shallow Crust,2.400120E+02,5.799886E+01,0.000000E+00 +1284972,fr,1,3.650000E+00,6.142960E+00,4.358094E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998698E+01,0.000000E+00 +1284973,fr,1,3.650000E+00,6.142960E+00,4.358094E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998698E+01,0.000000E+00 +1285001,fr,2,3.850000E+00,6.142960E+00,4.358094E+01,2.750000E+01,Active Shallow Crust,2.400097E+02,5.799782E+01,0.000000E+00 +1285008,fr,1,3.950000E+00,6.142960E+00,4.358094E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +1285022,fr,1,4.050000E+00,6.142960E+00,4.358094E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999178E+01,0.000000E+00 +1285120,fr,1,4.850000E+00,6.142960E+00,4.358094E+01,1.500000E+01,Active Shallow Crust,2.400158E+02,5.800226E+01,0.000000E+00 +1285272,fr,1,6.150000E+00,6.142962E+00,4.358094E+01,6.011322E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1285440,fr,2,3.550000E+00,3.535780E+00,4.094273E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998857E+01,0.000000E+00 +1285464,fr,2,3.750000E+00,3.535780E+00,4.094273E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999092E+01,0.000000E+00 +1285466,fr,1,3.750000E+00,3.535780E+00,4.094273E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999092E+01,0.000000E+00 +1285477,fr,1,3.850000E+00,3.535780E+00,4.094273E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +1285518,fr,1,4.150000E+00,3.535780E+00,4.094273E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,-9.000000E+01 +1285920,fr,1,3.550000E+00,6.128340E+00,4.864973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998668E+01,0.000000E+00 +1285933,fr,1,3.650000E+00,6.128340E+00,4.864973E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998812E+01,0.000000E+00 +1285945,fr,1,3.750000E+00,6.128340E+00,4.864973E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +1285956,fr,1,3.850000E+00,6.128340E+00,4.864973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +1285968,fr,1,3.950000E+00,6.128340E+00,4.864973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999159E+01,0.000000E+00 +1286400,fr,1,3.550000E+00,7.010400E-01,5.018962E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +1286412,fr,1,3.650000E+00,7.010400E-01,5.018962E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1286416,fr,1,3.650000E+00,7.010400E-01,5.018962E+01,1.500000E+01,Active Shallow Crust,2.400016E+02,5.801300E+01,0.000000E+00 +1286425,fr,1,3.750000E+00,7.010400E-01,5.018962E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1286427,fr,1,3.750000E+00,7.010400E-01,5.018962E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.801773E+01,0.000000E+00 +1286448,fr,2,3.950000E+00,7.010400E-01,5.018962E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1286458,fr,1,3.950000E+00,7.010400E-01,5.018962E+01,1.500000E+01,Active Shallow Crust,1.288998E+02,8.999364E+01,0.000000E+00 +1286484,fr,1,4.250000E+00,7.010400E-01,5.018962E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1286522,fr,1,4.550000E+00,7.010400E-01,5.018962E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1286527,fr,1,4.550000E+00,7.010400E-01,5.018962E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,-9.000000E+01 +1286607,fr,1,5.250000E+00,7.010400E-01,5.018962E+01,5.000000E+00,Active Shallow Crust,2.400281E+02,5.800074E+01,0.000000E+00 +1286895,fr,1,3.650000E+00,1.811400E-01,5.003295E+01,5.000000E+00,Active Shallow Crust,2.400015E+02,5.801299E+01,0.000000E+00 +1286898,fr,1,3.650000E+00,1.811400E-01,5.003295E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +1286909,fr,1,3.750000E+00,1.811400E-01,5.003295E+01,2.750000E+01,Active Shallow Crust,2.400088E+02,5.801763E+01,0.000000E+00 +1286916,fr,1,3.850000E+00,1.811400E-01,5.003295E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1286929,fr,1,3.950000E+00,1.811400E-01,5.003295E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1286964,fr,1,4.250000E+00,1.811400E-01,5.003295E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1287025,fr,1,4.750000E+00,1.811400E-01,5.003295E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1287361,fr,1,3.550000E+00,4.070080E+00,4.987292E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998700E+01,0.000000E+00 +1287374,fr,1,3.650000E+00,4.070080E+00,4.987292E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998842E+01,0.000000E+00 +1287378,fr,1,3.650000E+00,4.070080E+00,4.987292E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998828E+01,-9.000000E+01 +1287386,fr,1,3.750000E+00,4.070080E+00,4.987292E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1287396,fr,1,3.850000E+00,4.070080E+00,4.987292E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999080E+01,0.000000E+00 +1287444,fr,1,4.250000E+00,4.070080E+00,4.987292E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +1287493,fr,1,4.650000E+00,4.070080E+00,4.987292E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +1287840,fr,8,3.550000E+00,8.946150E+00,4.820719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998656E+01,0.000000E+00 +1287841,fr,6,3.550000E+00,8.946150E+00,4.820719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998656E+01,0.000000E+00 +1287842,fr,1,3.550000E+00,8.946150E+00,4.820719E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998656E+01,0.000000E+00 +1287843,fr,5,3.550000E+00,8.946150E+00,4.820719E+01,5.000000E+00,Active Shallow Crust,2.400131E+02,5.799812E+01,0.000000E+00 +1287846,fr,3,3.550000E+00,8.946150E+00,4.820719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998640E+01,-9.000000E+01 +1287847,fr,1,3.550000E+00,8.946150E+00,4.820719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998640E+01,-9.000000E+01 +1287849,fr,1,3.550000E+00,8.946150E+00,4.820719E+01,5.000000E+00,Active Shallow Crust,1.288979E+02,8.999328E+01,0.000000E+00 +1287850,fr,1,3.550000E+00,8.946150E+00,4.820719E+01,1.500000E+01,Active Shallow Crust,1.288979E+02,8.999328E+01,0.000000E+00 +1287851,fr,1,3.550000E+00,8.946150E+00,4.820719E+01,2.750000E+01,Active Shallow Crust,1.288979E+02,8.999328E+01,0.000000E+00 +1287852,fr,10,3.650000E+00,8.946150E+00,4.820719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998802E+01,0.000000E+00 +1287853,fr,4,3.650000E+00,8.946150E+00,4.820719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998802E+01,0.000000E+00 +1287854,fr,2,3.650000E+00,8.946150E+00,4.820719E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998802E+01,0.000000E+00 +1287855,fr,5,3.650000E+00,8.946150E+00,4.820719E+01,5.000000E+00,Active Shallow Crust,2.400021E+02,5.801190E+01,0.000000E+00 +1287861,fr,2,3.650000E+00,8.946150E+00,4.820719E+01,5.000000E+00,Active Shallow Crust,1.289006E+02,8.996355E+01,0.000000E+00 +1287864,fr,6,3.750000E+00,8.946150E+00,4.820719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1287865,fr,2,3.750000E+00,8.946150E+00,4.820719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1287867,fr,1,3.750000E+00,8.946150E+00,4.820719E+01,5.000000E+00,Active Shallow Crust,2.400097E+02,5.801725E+01,0.000000E+00 +1287870,fr,1,3.750000E+00,8.946150E+00,4.820719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,-9.000000E+01 +1287873,fr,2,3.750000E+00,8.946150E+00,4.820719E+01,5.000000E+00,Active Shallow Crust,1.288982E+02,8.996623E+01,0.000000E+00 +1287875,fr,2,3.750000E+00,8.946150E+00,4.820719E+01,2.750000E+01,Active Shallow Crust,1.288982E+02,8.996623E+01,0.000000E+00 +1287876,fr,9,3.850000E+00,8.946150E+00,4.820719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1287877,fr,3,3.850000E+00,8.946150E+00,4.820719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1287878,fr,1,3.850000E+00,8.946150E+00,4.820719E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1287880,fr,3,3.850000E+00,8.946150E+00,4.820719E+01,1.500000E+01,Active Shallow Crust,2.400116E+02,5.799747E+01,0.000000E+00 +1287883,fr,1,3.850000E+00,8.946150E+00,4.820719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,-9.000000E+01 +1287886,fr,1,3.850000E+00,8.946150E+00,4.820719E+01,1.500000E+01,Active Shallow Crust,1.288949E+02,8.999524E+01,0.000000E+00 +1287888,fr,4,3.950000E+00,8.946150E+00,4.820719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999152E+01,0.000000E+00 +1287889,fr,2,3.950000E+00,8.946150E+00,4.820719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999152E+01,0.000000E+00 +1287891,fr,1,3.950000E+00,8.946150E+00,4.820719E+01,5.000000E+00,Active Shallow Crust,2.400214E+02,5.800344E+01,0.000000E+00 +1287897,fr,1,3.950000E+00,8.946150E+00,4.820719E+01,5.000000E+00,Active Shallow Crust,1.288987E+02,8.999576E+01,0.000000E+00 +1287900,fr,8,4.050000E+00,8.946150E+00,4.820719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999244E+01,0.000000E+00 +1287901,fr,1,4.050000E+00,8.946150E+00,4.820719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999244E+01,0.000000E+00 +1287902,fr,1,4.050000E+00,8.946150E+00,4.820719E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999244E+01,0.000000E+00 +1287903,fr,1,4.050000E+00,8.946150E+00,4.820719E+01,5.000000E+00,Active Shallow Crust,2.400058E+02,5.800576E+01,0.000000E+00 +1287907,fr,2,4.050000E+00,8.946150E+00,4.820719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999236E+01,-9.000000E+01 +1287909,fr,2,4.050000E+00,8.946150E+00,4.820719E+01,5.000000E+00,Active Shallow Crust,1.288919E+02,8.999244E+01,0.000000E+00 +1287910,fr,2,4.050000E+00,8.946150E+00,4.820719E+01,1.500000E+01,Active Shallow Crust,1.288919E+02,8.999244E+01,0.000000E+00 +1287912,fr,1,4.150000E+00,8.946150E+00,4.820719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999326E+01,0.000000E+00 +1287924,fr,4,4.250000E+00,8.946150E+00,4.820719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998799E+01,0.000000E+00 +1287927,fr,2,4.250000E+00,8.946150E+00,4.820719E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799400E+01,0.000000E+00 +1287929,fr,1,4.250000E+00,8.946150E+00,4.820719E+01,2.750000E+01,Active Shallow Crust,2.400081E+02,5.799400E+01,0.000000E+00 +1287930,fr,1,4.250000E+00,8.946150E+00,4.820719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998785E+01,-9.000000E+01 +1287943,fr,1,4.350000E+00,8.946150E+00,4.820719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,-9.000000E+01 +1287944,fr,1,4.350000E+00,8.946150E+00,4.820719E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,-9.000000E+01 +1287950,fr,1,4.450000E+00,8.946150E+00,4.820719E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1287960,fr,3,4.550000E+00,8.946150E+00,4.820719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999150E+01,0.000000E+00 +1287969,fr,1,4.550000E+00,8.946150E+00,4.820719E+01,5.000000E+00,Active Shallow Crust,1.288936E+02,8.998574E+01,0.000000E+00 +1287972,fr,1,4.650000E+00,8.946150E+00,4.820719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998863E+01,0.000000E+00 +1287974,fr,1,4.650000E+00,8.946150E+00,4.820719E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998863E+01,0.000000E+00 +1287977,fr,1,4.650000E+00,8.946150E+00,4.820719E+01,2.750000E+01,Active Shallow Crust,2.400109E+02,5.799439E+01,0.000000E+00 +1287978,fr,1,4.650000E+00,8.946150E+00,4.820719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998850E+01,-9.000000E+01 +1287985,fr,1,4.750000E+00,8.946150E+00,4.820719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1287995,fr,1,4.750000E+00,8.946150E+00,4.820719E+01,2.750000E+01,Active Shallow Crust,1.288883E+02,8.998782E+01,0.000000E+00 +1287996,fr,1,4.850000E+00,8.946150E+00,4.820719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +1288005,fr,1,4.850000E+00,8.946150E+00,4.820719E+01,5.000000E+00,Active Shallow Crust,1.288915E+02,8.998915E+01,0.000000E+00 +1288008,fr,1,4.950000E+00,8.946150E+00,4.820719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1288017,fr,1,4.950000E+00,8.946150E+00,4.820719E+01,5.000000E+00,Active Shallow Crust,1.288892E+02,8.998952E+01,0.000000E+00 +1288033,fr,1,5.150000E+00,8.946150E+00,4.820719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +1288046,fr,1,5.250000E+00,8.946150E+00,4.820719E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +1288057,fr,2,5.350000E+00,8.946150E+00,4.820719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1288141,fr,1,6.050000E+00,8.946150E+00,4.820719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1288320,fr,1,3.550000E+00,8.273900E-01,4.861800E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1288322,fr,1,3.550000E+00,8.273900E-01,4.861800E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1288345,fr,1,3.750000E+00,8.273900E-01,4.861800E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1288474,fr,1,4.750000E+00,8.273900E-01,4.861800E+01,1.500000E+01,Active Shallow Crust,1.288880E+02,8.998808E+01,0.000000E+00 +1288525,fr,1,5.250000E+00,8.273900E-01,4.861800E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1288800,fr,1,3.550000E+00,5.897210E+00,4.798582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999325E+01,0.000000E+00 +1288813,fr,1,3.650000E+00,5.897210E+00,4.798582E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998797E+01,0.000000E+00 +1288824,fr,1,3.750000E+00,5.897210E+00,4.798582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998928E+01,0.000000E+00 +1288864,fr,1,4.050000E+00,5.897210E+00,4.798582E+01,1.500000E+01,Active Shallow Crust,2.400056E+02,5.800612E+01,0.000000E+00 +1288884,fr,1,4.250000E+00,5.897210E+00,4.798582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999095E+01,0.000000E+00 +1288911,fr,1,4.450000E+00,5.897210E+00,4.798582E+01,5.000000E+00,Active Shallow Crust,2.400059E+02,5.799495E+01,0.000000E+00 +1288942,fr,1,4.650000E+00,5.897210E+00,4.798582E+01,1.500000E+01,Active Shallow Crust,1.288905E+02,8.998728E+01,0.000000E+00 +1288944,fr,1,4.750000E+00,5.897210E+00,4.798582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1289760,fr,1,3.550000E+00,5.687140E+00,4.922265E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998683E+01,0.000000E+00 +1289784,fr,1,3.750000E+00,5.687140E+00,4.922265E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +1289844,fr,1,4.250000E+00,5.687140E+00,4.922265E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +1290240,fr,4,3.550000E+00,8.204400E+00,4.774650E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998644E+01,0.000000E+00 +1290241,fr,1,3.550000E+00,8.204400E+00,4.774650E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998644E+01,0.000000E+00 +1290243,fr,1,3.550000E+00,8.204400E+00,4.774650E+01,5.000000E+00,Active Shallow Crust,2.400151E+02,5.799792E+01,0.000000E+00 +1290249,fr,1,3.550000E+00,8.204400E+00,4.774650E+01,5.000000E+00,Active Shallow Crust,1.288940E+02,8.999322E+01,0.000000E+00 +1290252,fr,4,3.650000E+00,8.204400E+00,4.774650E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998792E+01,0.000000E+00 +1290253,fr,1,3.650000E+00,8.204400E+00,4.774650E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998792E+01,0.000000E+00 +1290264,fr,1,3.750000E+00,8.204400E+00,4.774650E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +1290266,fr,1,3.750000E+00,8.204400E+00,4.774650E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +1290280,fr,1,3.850000E+00,8.204400E+00,4.774650E+01,1.500000E+01,Active Shallow Crust,2.400107E+02,5.799880E+01,0.000000E+00 +1290286,fr,1,3.850000E+00,8.204400E+00,4.774650E+01,1.500000E+01,Active Shallow Crust,1.288972E+02,8.999040E+01,0.000000E+00 +1290288,fr,3,3.950000E+00,8.204400E+00,4.774650E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999144E+01,0.000000E+00 +1290289,fr,2,3.950000E+00,8.204400E+00,4.774650E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999144E+01,0.000000E+00 +1290300,fr,1,4.050000E+00,8.204400E+00,4.774650E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999237E+01,0.000000E+00 +1290301,fr,1,4.050000E+00,8.204400E+00,4.774650E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999237E+01,0.000000E+00 +1290303,fr,1,4.050000E+00,8.204400E+00,4.774650E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.800627E+01,0.000000E+00 +1290309,fr,1,4.050000E+00,8.204400E+00,4.774650E+01,5.000000E+00,Active Shallow Crust,1.288900E+02,8.999238E+01,0.000000E+00 +1290312,fr,1,4.150000E+00,8.204400E+00,4.774650E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999320E+01,0.000000E+00 +1290321,fr,1,4.150000E+00,8.204400E+00,4.774650E+01,5.000000E+00,Active Shallow Crust,1.288992E+02,8.999320E+01,0.000000E+00 +1290327,fr,1,4.250000E+00,8.204400E+00,4.774650E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799409E+01,0.000000E+00 +1290360,fr,1,4.550000E+00,8.204400E+00,4.774650E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +1290372,fr,1,4.650000E+00,8.204400E+00,4.774650E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998853E+01,0.000000E+00 +1290405,fr,1,4.850000E+00,8.204400E+00,4.774650E+01,5.000000E+00,Active Shallow Crust,1.288923E+02,8.998912E+01,0.000000E+00 +1290408,fr,1,4.950000E+00,8.204400E+00,4.774650E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +1290410,fr,1,4.950000E+00,8.204400E+00,4.774650E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +1290528,fr,1,5.950000E+00,8.204400E+00,4.774650E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1290720,fr,1,3.550000E+00,4.286240E+00,4.635455E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999304E+01,0.000000E+00 +1290721,fr,1,3.550000E+00,4.286240E+00,4.635455E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999304E+01,0.000000E+00 +1290744,fr,1,3.750000E+00,4.286240E+00,4.635455E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +1290756,fr,1,3.850000E+00,4.286240E+00,4.635455E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1290768,fr,1,3.950000E+00,4.286240E+00,4.635455E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999122E+01,0.000000E+00 +1290798,fr,1,4.150000E+00,4.286240E+00,4.635455E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998941E+01,-9.000000E+01 +1290807,fr,1,4.250000E+00,4.286240E+00,4.635455E+01,5.000000E+00,Active Shallow Crust,2.400075E+02,5.799390E+01,0.000000E+00 +1291205,fr,1,3.550000E+00,3.890240E+00,4.126457E+01,2.750000E+01,Active Shallow Crust,2.400116E+02,5.799831E+01,0.000000E+00 +1291210,fr,1,3.550000E+00,3.890240E+00,4.126457E+01,1.500000E+01,Active Shallow Crust,1.288968E+02,8.999432E+01,0.000000E+00 +1291227,fr,1,3.750000E+00,3.890240E+00,4.126457E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801724E+01,0.000000E+00 +1291246,fr,1,3.850000E+00,3.890240E+00,4.126457E+01,1.500000E+01,Active Shallow Crust,1.288962E+02,8.999329E+01,0.000000E+00 +1291266,fr,1,4.050000E+00,3.890240E+00,4.126457E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998922E+01,-9.000000E+01 +1291275,fr,1,4.150000E+00,3.890240E+00,4.126457E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.799722E+01,0.000000E+00 +1291325,fr,1,4.550000E+00,3.890240E+00,4.126457E+01,2.750000E+01,Active Shallow Crust,2.400077E+02,5.799709E+01,0.000000E+00 +1291364,fr,1,4.850000E+00,3.890240E+00,4.126457E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,-9.000000E+01 +1291680,fr,5,3.550000E+00,7.234040E+00,4.660682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999307E+01,0.000000E+00 +1291681,fr,4,3.550000E+00,7.234040E+00,4.660682E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999307E+01,0.000000E+00 +1291685,fr,1,3.550000E+00,7.234040E+00,4.660682E+01,2.750000E+01,Active Shallow Crust,2.400112E+02,5.799915E+01,0.000000E+00 +1291686,fr,1,3.550000E+00,7.234040E+00,4.660682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999299E+01,-9.000000E+01 +1291692,fr,4,3.650000E+00,7.234040E+00,4.660682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998765E+01,0.000000E+00 +1291693,fr,1,3.650000E+00,7.234040E+00,4.660682E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998765E+01,0.000000E+00 +1291694,fr,2,3.650000E+00,7.234040E+00,4.660682E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998765E+01,0.000000E+00 +1291695,fr,1,3.650000E+00,7.234040E+00,4.660682E+01,5.000000E+00,Active Shallow Crust,2.400018E+02,5.801222E+01,0.000000E+00 +1291696,fr,2,3.650000E+00,7.234040E+00,4.660682E+01,1.500000E+01,Active Shallow Crust,2.400018E+02,5.801222E+01,0.000000E+00 +1291698,fr,2,3.650000E+00,7.234040E+00,4.660682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998751E+01,-9.000000E+01 +1291704,fr,2,3.750000E+00,7.234040E+00,4.660682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998899E+01,0.000000E+00 +1291705,fr,5,3.750000E+00,7.234040E+00,4.660682E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998899E+01,0.000000E+00 +1291706,fr,4,3.750000E+00,7.234040E+00,4.660682E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998899E+01,0.000000E+00 +1291716,fr,4,3.850000E+00,7.234040E+00,4.660682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1291722,fr,1,3.850000E+00,7.234040E+00,4.660682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +1291724,fr,1,3.850000E+00,7.234040E+00,4.660682E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +1291728,fr,1,3.950000E+00,7.234040E+00,4.660682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +1291729,fr,2,3.950000E+00,7.234040E+00,4.660682E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +1291731,fr,1,3.950000E+00,7.234040E+00,4.660682E+01,5.000000E+00,Active Shallow Crust,2.400206E+02,5.800495E+01,0.000000E+00 +1291734,fr,1,3.950000E+00,7.234040E+00,4.660682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999116E+01,-9.000000E+01 +1291737,fr,1,3.950000E+00,7.234040E+00,4.660682E+01,5.000000E+00,Active Shallow Crust,1.288996E+02,8.999345E+01,0.000000E+00 +1291740,fr,2,4.050000E+00,7.234040E+00,4.660682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998831E+01,0.000000E+00 +1291741,fr,1,4.050000E+00,7.234040E+00,4.660682E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998831E+01,0.000000E+00 +1291743,fr,1,4.050000E+00,7.234040E+00,4.660682E+01,5.000000E+00,Active Shallow Crust,2.400064E+02,5.800536E+01,0.000000E+00 +1291746,fr,2,4.050000E+00,7.234040E+00,4.660682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998817E+01,-9.000000E+01 +1291752,fr,2,4.150000E+00,7.234040E+00,4.660682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1291755,fr,1,4.150000E+00,7.234040E+00,4.660682E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799752E+01,0.000000E+00 +1291759,fr,1,4.150000E+00,7.234040E+00,4.660682E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,-9.000000E+01 +1291765,fr,1,4.250000E+00,7.234040E+00,4.660682E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +1291766,fr,1,4.250000E+00,7.234040E+00,4.660682E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +1291767,fr,2,4.250000E+00,7.234040E+00,4.660682E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.799416E+01,0.000000E+00 +1291776,fr,4,4.350000E+00,7.234040E+00,4.660682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998897E+01,0.000000E+00 +1291788,fr,1,4.450000E+00,7.234040E+00,4.660682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1291800,fr,2,4.550000E+00,7.234040E+00,4.660682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +1291812,fr,1,4.650000E+00,7.234040E+00,4.660682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1291848,fr,2,4.950000E+00,7.234040E+00,4.660682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1291849,fr,1,4.950000E+00,7.234040E+00,4.660682E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1291872,fr,1,5.150000E+00,7.234040E+00,4.660682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1291905,fr,1,5.350000E+00,7.234040E+00,4.660682E+01,5.000000E+00,Active Shallow Crust,1.288831E+02,8.998792E+01,0.000000E+00 +1292050,fr,1,6.550000E+00,7.234040E+00,4.660682E+01,1.500000E+01,Active Shallow Crust,1.288293E+02,8.999013E+01,0.000000E+00 +1292160,fr,1,3.550000E+00,5.848360E+00,4.341052E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999268E+01,0.000000E+00 +1292163,fr,1,3.550000E+00,5.848360E+00,4.341052E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799931E+01,0.000000E+00 +1292184,fr,2,3.750000E+00,5.848360E+00,4.341052E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998837E+01,0.000000E+00 +1292197,fr,1,3.850000E+00,5.848360E+00,4.341052E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +1292202,fr,1,3.850000E+00,5.848360E+00,4.341052E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,-9.000000E+01 +1292241,fr,1,4.150000E+00,5.848360E+00,4.341052E+01,5.000000E+00,Active Shallow Crust,1.288975E+02,8.999449E+01,0.000000E+00 +1292260,fr,1,4.350000E+00,5.848360E+00,4.341052E+01,1.500000E+01,Active Shallow Crust,2.400073E+02,5.799612E+01,0.000000E+00 +1292268,fr,1,4.450000E+00,5.848360E+00,4.341052E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +1292652,fr,1,3.650000E+00,4.789710E+00,4.972659E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998838E+01,0.000000E+00 +1292654,fr,1,3.650000E+00,4.789710E+00,4.972659E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998838E+01,0.000000E+00 +1292688,fr,1,3.950000E+00,4.789710E+00,4.972659E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999178E+01,0.000000E+00 +1292788,fr,1,4.750000E+00,4.789710E+00,4.972659E+01,1.500000E+01,Active Shallow Crust,2.400089E+02,5.800462E+01,0.000000E+00 +1293121,fr,1,3.550000E+00,2.662740E+00,5.026456E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1293132,fr,1,3.650000E+00,2.662740E+00,5.026456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999138E+01,0.000000E+00 +1293204,fr,1,4.250000E+00,2.662740E+00,5.026456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1293252,fr,1,4.650000E+00,2.662740E+00,5.026456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1293618,fr,1,3.650000E+00,4.333460E+00,4.105607E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999314E+01,-9.000000E+01 +1293642,fr,1,3.850000E+00,4.333460E+00,4.105607E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,-9.000000E+01 +1293702,fr,1,4.350000E+00,4.333460E+00,4.105607E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,-9.000000E+01 +1294128,fr,1,3.950000E+00,1.355100E+00,5.228503E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +1294130,fr,1,3.950000E+00,1.355100E+00,5.228503E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +1294159,fr,1,4.150000E+00,1.355100E+00,5.228503E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,-9.000000E+01 +1294561,fr,1,3.550000E+00,1.280280E+00,4.112910E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +1294563,fr,1,3.550000E+00,1.280280E+00,4.112910E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799795E+01,0.000000E+00 +1294569,fr,1,3.550000E+00,1.280280E+00,4.112910E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.999430E+01,0.000000E+00 +1294584,fr,3,3.750000E+00,1.280280E+00,4.112910E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +1294597,fr,1,3.850000E+00,1.280280E+00,4.112910E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +1294632,fr,1,4.150000E+00,1.280280E+00,4.112910E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +1294644,fr,1,4.250000E+00,1.280280E+00,4.112910E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1294689,fr,1,4.550000E+00,1.280280E+00,4.112910E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.998577E+01,0.000000E+00 +1294705,fr,1,4.750000E+00,1.280280E+00,4.112910E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1294836,fr,1,5.850000E+00,1.280280E+00,4.112910E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1295046,fr,1,3.550000E+00,5.415700E+00,4.880974E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999328E+01,-9.000000E+01 +1295050,fr,1,3.550000E+00,5.415700E+00,4.880974E+01,1.500000E+01,Active Shallow Crust,1.288952E+02,8.999336E+01,0.000000E+00 +1295531,fr,1,3.550000E+00,4.802140E+00,4.590828E+01,2.750000E+01,Active Shallow Crust,1.288956E+02,8.999649E+01,0.000000E+00 +1295532,fr,1,3.650000E+00,4.802140E+00,4.590828E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998750E+01,0.000000E+00 +1295537,fr,1,3.650000E+00,4.802140E+00,4.590828E+01,2.750000E+01,Active Shallow Crust,2.400009E+02,5.801312E+01,0.000000E+00 +1295544,fr,4,3.750000E+00,4.802140E+00,4.590828E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +1295545,fr,1,3.750000E+00,4.802140E+00,4.590828E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +1295560,fr,1,3.850000E+00,4.802140E+00,4.590828E+01,1.500000E+01,Active Shallow Crust,2.400106E+02,5.799810E+01,0.000000E+00 +1295568,fr,1,3.950000E+00,4.802140E+00,4.590828E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999114E+01,0.000000E+00 +1295580,fr,2,4.050000E+00,4.802140E+00,4.590828E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998816E+01,0.000000E+00 +1295604,fr,3,4.250000E+00,4.802140E+00,4.590828E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +1295605,fr,1,4.250000E+00,4.802140E+00,4.590828E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +1295629,fr,1,4.450000E+00,4.802140E+00,4.590828E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1295637,fr,1,4.450000E+00,4.802140E+00,4.590828E+01,5.000000E+00,Active Shallow Crust,1.288921E+02,8.999377E+01,0.000000E+00 +1296980,fr,1,3.650000E+00,3.246010E+00,4.887631E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999103E+01,-9.000000E+01 +1297026,fr,1,4.050000E+00,3.246010E+00,4.887631E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999057E+01,-9.000000E+01 +1297032,fr,1,4.150000E+00,3.246010E+00,4.887631E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1297061,fr,1,4.350000E+00,3.246010E+00,4.887631E+01,2.750000E+01,Active Shallow Crust,2.400089E+02,5.799612E+01,0.000000E+00 +1297920,fr,3,3.550000E+00,5.854990E+00,4.407692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999275E+01,0.000000E+00 +1297922,fr,1,3.550000E+00,5.854990E+00,4.407692E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999275E+01,0.000000E+00 +1297924,fr,1,3.550000E+00,5.854990E+00,4.407692E+01,1.500000E+01,Active Shallow Crust,2.400114E+02,5.799837E+01,0.000000E+00 +1297926,fr,1,3.550000E+00,5.854990E+00,4.407692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999267E+01,-9.000000E+01 +1297932,fr,2,3.650000E+00,5.854990E+00,4.407692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998708E+01,0.000000E+00 +1297933,fr,1,3.650000E+00,5.854990E+00,4.407692E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998708E+01,0.000000E+00 +1297934,fr,1,3.650000E+00,5.854990E+00,4.407692E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998708E+01,0.000000E+00 +1297944,fr,1,3.750000E+00,5.854990E+00,4.407692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998849E+01,0.000000E+00 +1297950,fr,1,3.750000E+00,5.854990E+00,4.407692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998836E+01,-9.000000E+01 +1297951,fr,1,3.750000E+00,5.854990E+00,4.407692E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998836E+01,-9.000000E+01 +1297956,fr,1,3.850000E+00,5.854990E+00,4.407692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1297966,fr,1,3.850000E+00,5.854990E+00,4.407692E+01,1.500000E+01,Active Shallow Crust,1.288953E+02,8.999487E+01,0.000000E+00 +1297968,fr,1,3.950000E+00,5.854990E+00,4.407692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +1297970,fr,1,3.950000E+00,5.854990E+00,4.407692E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +1298041,fr,1,4.550000E+00,5.854990E+00,4.407692E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +1298064,fr,1,4.750000E+00,5.854990E+00,4.407692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999090E+01,0.000000E+00 +1298106,fr,1,5.050000E+00,5.854990E+00,4.407692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,-9.000000E+01 +1298403,fr,1,3.550000E+00,-2.559330E+00,4.892043E+01,5.000000E+00,Active Shallow Crust,2.400128E+02,5.799836E+01,0.000000E+00 +1298412,fr,3,3.650000E+00,-2.559330E+00,4.892043E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999114E+01,0.000000E+00 +1298424,fr,1,3.750000E+00,-2.559330E+00,4.892043E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +1298425,fr,1,3.750000E+00,-2.559330E+00,4.892043E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +1298427,fr,1,3.750000E+00,-2.559330E+00,4.892043E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.801813E+01,0.000000E+00 +1298430,fr,1,3.750000E+00,-2.559330E+00,4.892043E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998935E+01,-9.000000E+01 +1298470,fr,1,4.050000E+00,-2.559330E+00,4.892043E+01,1.500000E+01,Active Shallow Crust,1.288902E+02,8.999441E+01,0.000000E+00 +1298511,fr,1,4.450000E+00,-2.559330E+00,4.892043E+01,5.000000E+00,Active Shallow Crust,2.400060E+02,5.799472E+01,0.000000E+00 +1298515,fr,1,4.450000E+00,-2.559330E+00,4.892043E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,-9.000000E+01 +1298619,fr,1,5.350000E+00,-2.559330E+00,4.892043E+01,5.000000E+00,Active Shallow Crust,2.400270E+02,5.799823E+01,0.000000E+00 +1298695,fr,1,5.950000E+00,-2.559330E+00,4.892043E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,-9.000000E+01 +1298880,fr,1,3.550000E+00,-8.113000E-02,4.736340E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1298883,fr,1,3.550000E+00,-8.113000E-02,4.736340E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799818E+01,0.000000E+00 +1298899,fr,1,3.650000E+00,-8.113000E-02,4.736340E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +1298904,fr,1,3.750000E+00,-8.113000E-02,4.736340E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1298916,fr,1,3.850000E+00,-8.113000E-02,4.736340E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1298929,fr,1,3.950000E+00,-8.113000E-02,4.736340E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999004E+01,0.000000E+00 +1298981,fr,1,4.350000E+00,-8.113000E-02,4.736340E+01,2.750000E+01,Active Shallow Crust,2.400086E+02,5.799598E+01,0.000000E+00 +1298986,fr,1,4.350000E+00,-8.113000E-02,4.736340E+01,1.500000E+01,Active Shallow Crust,1.288977E+02,8.998277E+01,0.000000E+00 +1299000,fr,1,4.550000E+00,-8.113000E-02,4.736340E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1299027,fr,1,4.750000E+00,-8.113000E-02,4.736340E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.800455E+01,0.000000E+00 +1299036,fr,1,4.850000E+00,-8.113000E-02,4.736340E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +1299037,fr,1,4.850000E+00,-8.113000E-02,4.736340E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +1299055,fr,1,4.950000E+00,-8.113000E-02,4.736340E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1299097,fr,1,5.350000E+00,-8.113000E-02,4.736340E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +1299361,fr,1,3.550000E+00,6.375800E+00,4.993475E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998702E+01,0.000000E+00 +1299372,fr,1,3.650000E+00,6.375800E+00,4.993475E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +1299373,fr,1,3.650000E+00,6.375800E+00,4.993475E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +1299408,fr,1,3.950000E+00,6.375800E+00,4.993475E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999181E+01,0.000000E+00 +1299410,fr,1,3.950000E+00,6.375800E+00,4.993475E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999181E+01,0.000000E+00 +1299421,fr,1,4.050000E+00,6.375800E+00,4.993475E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998905E+01,0.000000E+00 +1299429,fr,1,4.050000E+00,6.375800E+00,4.993475E+01,5.000000E+00,Active Shallow Crust,1.288906E+02,8.999270E+01,0.000000E+00 +1299456,fr,1,4.350000E+00,6.375800E+00,4.993475E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +1299840,fr,1,3.550000E+00,3.211700E+00,4.849375E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1300325,fr,1,3.550000E+00,8.580700E-01,4.541556E+01,2.750000E+01,Active Shallow Crust,2.400120E+02,5.799820E+01,0.000000E+00 +1300368,fr,1,3.950000E+00,8.580700E-01,4.541556E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1300800,fr,1,3.550000E+00,4.889790E+00,4.474250E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999284E+01,0.000000E+00 +1300804,fr,1,3.550000E+00,4.889790E+00,4.474250E+01,1.500000E+01,Active Shallow Crust,2.400118E+02,5.799833E+01,0.000000E+00 +1300812,fr,1,3.650000E+00,4.889790E+00,4.474250E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998724E+01,0.000000E+00 +1300813,fr,3,3.650000E+00,4.889790E+00,4.474250E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998724E+01,0.000000E+00 +1300816,fr,1,3.650000E+00,4.889790E+00,4.474250E+01,1.500000E+01,Active Shallow Crust,2.400013E+02,5.801198E+01,0.000000E+00 +1300824,fr,1,3.750000E+00,4.889790E+00,4.474250E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +1300827,fr,1,3.750000E+00,4.889790E+00,4.474250E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801715E+01,0.000000E+00 +1300833,fr,1,3.750000E+00,4.889790E+00,4.474250E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.996746E+01,0.000000E+00 +1300836,fr,2,3.850000E+00,4.889790E+00,4.474250E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1300837,fr,1,3.850000E+00,4.889790E+00,4.474250E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1300839,fr,1,3.850000E+00,4.889790E+00,4.474250E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.799863E+01,0.000000E+00 +1300851,fr,1,3.950000E+00,4.889790E+00,4.474250E+01,5.000000E+00,Active Shallow Crust,2.400192E+02,5.800433E+01,0.000000E+00 +1300870,fr,1,4.050000E+00,4.889790E+00,4.474250E+01,1.500000E+01,Active Shallow Crust,1.288917E+02,8.999194E+01,0.000000E+00 +1300872,fr,1,4.150000E+00,4.889790E+00,4.474250E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +1300884,fr,1,4.250000E+00,4.889790E+00,4.474250E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +1300896,fr,1,4.350000E+00,4.889790E+00,4.474250E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +1300897,fr,1,4.350000E+00,4.889790E+00,4.474250E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +1300908,fr,2,4.450000E+00,4.889790E+00,4.474250E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +1301004,fr,1,5.250000E+00,4.889790E+00,4.474250E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1301760,fr,2,3.550000E+00,-2.908150E+00,4.285210E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +1301761,fr,1,3.550000E+00,-2.908150E+00,4.285210E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +1301767,fr,1,3.550000E+00,-2.908150E+00,4.285210E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998878E+01,-9.000000E+01 +1301772,fr,1,3.650000E+00,-2.908150E+00,4.285210E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1301781,fr,1,3.650000E+00,-2.908150E+00,4.285210E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996371E+01,0.000000E+00 +1301785,fr,1,3.750000E+00,-2.908150E+00,4.285210E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999119E+01,0.000000E+00 +1301796,fr,1,3.850000E+00,-2.908150E+00,4.285210E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +1301808,fr,1,3.950000E+00,-2.908150E+00,4.285210E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999067E+01,0.000000E+00 +1301811,fr,1,3.950000E+00,-2.908150E+00,4.285210E+01,5.000000E+00,Active Shallow Crust,2.400189E+02,5.800503E+01,0.000000E+00 +1301820,fr,1,4.050000E+00,-2.908150E+00,4.285210E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +1301827,fr,1,4.050000E+00,-2.908150E+00,4.285210E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,-9.000000E+01 +1301832,fr,1,4.150000E+00,-2.908150E+00,4.285210E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +1301844,fr,1,4.250000E+00,-2.908150E+00,4.285210E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1301845,fr,1,4.250000E+00,-2.908150E+00,4.285210E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1301857,fr,1,4.350000E+00,-2.908150E+00,4.285210E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1301925,fr,1,4.850000E+00,-2.908150E+00,4.285210E+01,5.000000E+00,Active Shallow Crust,1.288937E+02,8.998904E+01,0.000000E+00 +1301953,fr,1,5.150000E+00,-2.908150E+00,4.285210E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1301991,fr,1,5.450000E+00,-2.908150E+00,4.285210E+01,5.000000E+00,Active Shallow Crust,2.400261E+02,5.799796E+01,0.000000E+00 +1302240,fr,1,3.550000E+00,-2.115110E+00,4.935725E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1302241,fr,1,3.550000E+00,-2.115110E+00,4.935725E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1302244,fr,1,3.550000E+00,-2.115110E+00,4.935725E+01,1.500000E+01,Active Shallow Crust,2.400127E+02,5.799845E+01,0.000000E+00 +1302252,fr,3,3.650000E+00,-2.115110E+00,4.935725E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999122E+01,0.000000E+00 +1302253,fr,1,3.650000E+00,-2.115110E+00,4.935725E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999122E+01,0.000000E+00 +1302255,fr,1,3.650000E+00,-2.115110E+00,4.935725E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801318E+01,0.000000E+00 +1302258,fr,1,3.650000E+00,-2.115110E+00,4.935725E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999112E+01,-9.000000E+01 +1302261,fr,1,3.650000E+00,-2.115110E+00,4.935725E+01,5.000000E+00,Active Shallow Crust,1.288999E+02,8.996358E+01,0.000000E+00 +1302263,fr,1,3.650000E+00,-2.115110E+00,4.935725E+01,2.750000E+01,Active Shallow Crust,1.288999E+02,8.996358E+01,0.000000E+00 +1302266,fr,1,3.750000E+00,-2.115110E+00,4.935725E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1302273,fr,1,3.750000E+00,-2.115110E+00,4.935725E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.996754E+01,0.000000E+00 +1302277,fr,1,3.850000E+00,-2.115110E+00,4.935725E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +1302289,fr,1,3.950000E+00,-2.115110E+00,4.935725E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +1302300,fr,1,4.050000E+00,-2.115110E+00,4.935725E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999077E+01,0.000000E+00 +1302321,fr,1,4.150000E+00,-2.115110E+00,4.935725E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.999424E+01,0.000000E+00 +1302361,fr,1,4.550000E+00,-2.115110E+00,4.935725E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +1302369,fr,1,4.550000E+00,-2.115110E+00,4.935725E+01,5.000000E+00,Active Shallow Crust,1.288932E+02,8.998580E+01,0.000000E+00 +1302720,fr,2,3.550000E+00,-3.068910E+00,4.793082E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1302721,fr,1,3.550000E+00,-3.068910E+00,4.793082E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1302724,fr,1,3.550000E+00,-3.068910E+00,4.793082E+01,1.500000E+01,Active Shallow Crust,2.400124E+02,5.799784E+01,0.000000E+00 +1302730,fr,1,3.550000E+00,-3.068910E+00,4.793082E+01,1.500000E+01,Active Shallow Crust,1.288968E+02,8.999324E+01,0.000000E+00 +1302732,fr,1,3.650000E+00,-3.068910E+00,4.793082E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +1302735,fr,1,3.650000E+00,-3.068910E+00,4.793082E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801298E+01,0.000000E+00 +1302745,fr,1,3.750000E+00,-3.068910E+00,4.793082E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1302747,fr,1,3.750000E+00,-3.068910E+00,4.793082E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.801729E+01,0.000000E+00 +1302758,fr,1,3.850000E+00,-3.068910E+00,4.793082E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1302768,fr,1,3.950000E+00,-3.068910E+00,4.793082E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +1302769,fr,1,3.950000E+00,-3.068910E+00,4.793082E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +1302792,fr,1,4.150000E+00,-3.068910E+00,4.793082E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +1302793,fr,1,4.150000E+00,-3.068910E+00,4.793082E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +1302796,fr,1,4.150000E+00,-3.068910E+00,4.793082E+01,1.500000E+01,Active Shallow Crust,2.400089E+02,5.799720E+01,0.000000E+00 +1302805,fr,1,4.250000E+00,-3.068910E+00,4.793082E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1302829,fr,1,4.450000E+00,-3.068910E+00,4.793082E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +1302878,fr,1,4.850000E+00,-3.068910E+00,4.793082E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1302912,fr,1,5.150000E+00,-3.068910E+00,4.793082E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1302934,fr,1,5.250000E+00,-3.068910E+00,4.793082E+01,1.500000E+01,Active Shallow Crust,1.288824E+02,8.998703E+01,0.000000E+00 +1303201,fr,1,3.550000E+00,-1.012060E+00,4.943483E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1303203,fr,1,3.550000E+00,-1.012060E+00,4.943483E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799818E+01,0.000000E+00 +1303216,fr,1,3.650000E+00,-1.012060E+00,4.943483E+01,1.500000E+01,Active Shallow Crust,2.400013E+02,5.801281E+01,0.000000E+00 +1303224,fr,2,3.750000E+00,-1.012060E+00,4.943483E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +1303236,fr,1,3.850000E+00,-1.012060E+00,4.943483E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1303257,fr,1,3.950000E+00,-1.012060E+00,4.943483E+01,5.000000E+00,Active Shallow Crust,1.289000E+02,8.999380E+01,0.000000E+00 +1303261,fr,1,4.050000E+00,-1.012060E+00,4.943483E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1303284,fr,1,4.250000E+00,-1.012060E+00,4.943483E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1303296,fr,1,4.350000E+00,-1.012060E+00,4.943483E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1303297,fr,1,4.350000E+00,-1.012060E+00,4.943483E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1303311,fr,1,4.450000E+00,-1.012060E+00,4.943483E+01,5.000000E+00,Active Shallow Crust,2.400060E+02,5.799481E+01,0.000000E+00 +1303416,fr,1,5.350000E+00,-1.012060E+00,4.943483E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1303680,fr,1,3.550000E+00,6.530400E-01,4.132017E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1303692,fr,1,3.650000E+00,6.530400E-01,4.132017E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1303719,fr,1,3.850000E+00,6.530400E-01,4.132017E+01,5.000000E+00,Active Shallow Crust,2.400102E+02,5.799775E+01,0.000000E+00 +1303752,fr,1,4.150000E+00,6.530400E-01,4.132017E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1304160,fr,2,3.550000E+00,1.991190E+00,4.430614E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +1304167,fr,1,3.550000E+00,1.991190E+00,4.430614E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,-9.000000E+01 +1304172,fr,1,3.650000E+00,1.991190E+00,4.430614E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1304176,fr,1,3.650000E+00,1.991190E+00,4.430614E+01,1.500000E+01,Active Shallow Crust,2.400008E+02,5.801300E+01,0.000000E+00 +1304178,fr,1,3.650000E+00,1.991190E+00,4.430614E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,-9.000000E+01 +1304185,fr,1,3.750000E+00,1.991190E+00,4.430614E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1304208,fr,1,3.950000E+00,1.991190E+00,4.430614E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1304217,fr,1,3.950000E+00,1.991190E+00,4.430614E+01,5.000000E+00,Active Shallow Crust,1.289006E+02,8.999374E+01,0.000000E+00 +1304640,fr,3,3.550000E+00,1.865220E+00,4.122560E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +1304642,fr,1,3.550000E+00,1.865220E+00,4.122560E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +1304644,fr,1,3.550000E+00,1.865220E+00,4.122560E+01,1.500000E+01,Active Shallow Crust,2.400117E+02,5.799818E+01,0.000000E+00 +1304650,fr,2,3.550000E+00,1.865220E+00,4.122560E+01,1.500000E+01,Active Shallow Crust,1.288967E+02,8.999336E+01,0.000000E+00 +1304653,fr,1,3.650000E+00,1.865220E+00,4.122560E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1304682,fr,1,3.850000E+00,1.865220E+00,4.122560E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,-9.000000E+01 +1304688,fr,1,3.950000E+00,1.865220E+00,4.122560E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1304691,fr,1,3.950000E+00,1.865220E+00,4.122560E+01,5.000000E+00,Active Shallow Crust,2.400190E+02,5.800501E+01,0.000000E+00 +1304700,fr,1,4.050000E+00,1.865220E+00,4.122560E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +1304727,fr,1,4.250000E+00,1.865220E+00,4.122560E+01,5.000000E+00,Active Shallow Crust,2.400065E+02,5.799396E+01,0.000000E+00 +1304733,fr,1,4.250000E+00,1.865220E+00,4.122560E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.998090E+01,0.000000E+00 +1304748,fr,1,4.450000E+00,1.865220E+00,4.122560E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1304749,fr,1,4.450000E+00,1.865220E+00,4.122560E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1305012,fr,1,6.650000E+00,1.865232E+00,4.122560E+01,1.068981E+01,Active Shallow Crust,3.600000E+02,8.999002E+01,0.000000E+00 +1305120,fr,1,3.550000E+00,1.864080E+00,4.441645E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1305129,fr,1,3.550000E+00,1.864080E+00,4.441645E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999370E+01,0.000000E+00 +1305134,fr,1,3.650000E+00,1.864080E+00,4.441645E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +1305157,fr,1,3.850000E+00,1.864080E+00,4.441645E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1305160,fr,1,3.850000E+00,1.864080E+00,4.441645E+01,1.500000E+01,Active Shallow Crust,2.400106E+02,5.799757E+01,0.000000E+00 +1305257,fr,1,4.650000E+00,1.864080E+00,4.441645E+01,2.750000E+01,Active Shallow Crust,2.400101E+02,5.799417E+01,0.000000E+00 +1305266,fr,1,4.750000E+00,1.864080E+00,4.441645E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1305302,fr,1,5.050000E+00,1.864080E+00,4.441645E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1305603,fr,1,3.550000E+00,-5.307910E+00,4.715098E+01,5.000000E+00,Active Shallow Crust,2.400130E+02,5.799731E+01,0.000000E+00 +1306080,fr,2,3.550000E+00,-1.857640E+00,4.668206E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +1306084,fr,1,3.550000E+00,-1.857640E+00,4.668206E+01,1.500000E+01,Active Shallow Crust,2.400122E+02,5.799793E+01,0.000000E+00 +1306092,fr,1,3.650000E+00,-1.857640E+00,4.668206E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +1306103,fr,1,3.650000E+00,-1.857640E+00,4.668206E+01,2.750000E+01,Active Shallow Crust,1.289006E+02,8.996353E+01,0.000000E+00 +1306104,fr,1,3.750000E+00,-1.857640E+00,4.668206E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1306130,fr,1,3.950000E+00,-1.857640E+00,4.668206E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1306152,fr,1,4.150000E+00,-1.857640E+00,4.668206E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +1306575,fr,1,3.650000E+00,9.347480E+00,4.963828E+01,5.000000E+00,Active Shallow Crust,2.399998E+02,5.801364E+01,0.000000E+00 +1306669,fr,1,4.450000E+00,9.347480E+00,4.963828E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999073E+01,0.000000E+00 +1307533,fr,1,3.650000E+00,4.851680E+00,4.301247E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998685E+01,0.000000E+00 +1307703,fr,1,5.050000E+00,4.851680E+00,4.301247E+01,5.000000E+00,Active Shallow Crust,2.400205E+02,5.799709E+01,0.000000E+00 +1307772,fr,1,5.650000E+00,4.851680E+00,4.301247E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1308006,fr,1,3.550000E+00,-4.950800E-01,4.959978E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,-9.000000E+01 +1308012,fr,1,3.650000E+00,-4.950800E-01,4.959978E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1308026,fr,1,3.750000E+00,-4.950800E-01,4.959978E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1308037,fr,1,3.850000E+00,-4.950800E-01,4.959978E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1308058,fr,1,3.950000E+00,-4.950800E-01,4.959978E+01,1.500000E+01,Active Shallow Crust,1.289000E+02,8.999381E+01,0.000000E+00 +1308060,fr,1,4.050000E+00,-4.950800E-01,4.959978E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1308065,fr,1,4.050000E+00,-4.950800E-01,4.959978E+01,2.750000E+01,Active Shallow Crust,2.400066E+02,5.800588E+01,0.000000E+00 +1308106,fr,1,4.350000E+00,-4.950800E-01,4.959978E+01,1.500000E+01,Active Shallow Crust,1.288971E+02,8.998280E+01,0.000000E+00 +1308198,fr,1,5.150000E+00,-4.950800E-01,4.959978E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1308480,fr,2,3.550000E+00,2.690700E+00,4.283049E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +1308481,fr,1,3.550000E+00,2.690700E+00,4.283049E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +1308482,fr,1,3.550000E+00,2.690700E+00,4.283049E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +1308483,fr,1,3.550000E+00,2.690700E+00,4.283049E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799836E+01,0.000000E+00 +1308487,fr,1,3.550000E+00,2.690700E+00,4.283049E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998878E+01,-9.000000E+01 +1308492,fr,4,3.650000E+00,2.690700E+00,4.283049E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1308493,fr,1,3.650000E+00,2.690700E+00,4.283049E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1308495,fr,2,3.650000E+00,2.690700E+00,4.283049E+01,5.000000E+00,Active Shallow Crust,2.400002E+02,5.801298E+01,0.000000E+00 +1308502,fr,1,3.650000E+00,2.690700E+00,4.283049E+01,1.500000E+01,Active Shallow Crust,1.289002E+02,8.996346E+01,0.000000E+00 +1308504,fr,3,3.750000E+00,2.690700E+00,4.283049E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999119E+01,0.000000E+00 +1308505,fr,1,3.750000E+00,2.690700E+00,4.283049E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999119E+01,0.000000E+00 +1308510,fr,1,3.750000E+00,2.690700E+00,4.283049E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999109E+01,-9.000000E+01 +1308511,fr,1,3.750000E+00,2.690700E+00,4.283049E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999109E+01,-9.000000E+01 +1308513,fr,1,3.750000E+00,2.690700E+00,4.283049E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.996743E+01,0.000000E+00 +1308516,fr,1,3.850000E+00,2.690700E+00,4.283049E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +1308529,fr,1,3.950000E+00,2.690700E+00,4.283049E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999067E+01,0.000000E+00 +1308537,fr,1,3.950000E+00,2.690700E+00,4.283049E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.999417E+01,0.000000E+00 +1308540,fr,1,4.050000E+00,2.690700E+00,4.283049E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +1308541,fr,1,4.050000E+00,2.690700E+00,4.283049E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +1308555,fr,1,4.150000E+00,2.690700E+00,4.283049E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799721E+01,0.000000E+00 +1308565,fr,1,4.250000E+00,2.690700E+00,4.283049E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1308600,fr,1,4.550000E+00,2.690700E+00,4.283049E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +1308624,fr,1,4.750000E+00,2.690700E+00,4.283049E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1308626,fr,1,4.750000E+00,2.690700E+00,4.283049E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1308998,fr,1,3.850000E+00,3.636060E+00,4.918599E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999067E+01,0.000000E+00 +1309033,fr,1,4.150000E+00,3.636060E+00,4.918599E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1309153,fr,1,5.150000E+00,3.636060E+00,4.918599E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1309446,fr,1,3.550000E+00,4.273420E+00,4.763735E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999313E+01,-9.000000E+01 +1309452,fr,1,3.650000E+00,4.273420E+00,4.763735E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998788E+01,0.000000E+00 +1309454,fr,1,3.650000E+00,4.273420E+00,4.763735E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998788E+01,0.000000E+00 +1309464,fr,1,3.750000E+00,4.273420E+00,4.763735E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1309479,fr,1,3.850000E+00,4.273420E+00,4.763735E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799755E+01,0.000000E+00 +1309488,fr,1,3.950000E+00,4.273420E+00,4.763735E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +1309920,fr,2,3.550000E+00,7.024390E+00,5.026150E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998711E+01,0.000000E+00 +1309930,fr,1,3.550000E+00,7.024390E+00,5.026150E+01,1.500000E+01,Active Shallow Crust,1.288951E+02,8.999355E+01,0.000000E+00 +1309932,fr,1,3.650000E+00,7.024390E+00,5.026150E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998851E+01,0.000000E+00 +1309935,fr,2,3.650000E+00,7.024390E+00,5.026150E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801356E+01,0.000000E+00 +1309938,fr,1,3.650000E+00,7.024390E+00,5.026150E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998837E+01,-9.000000E+01 +1309944,fr,1,3.750000E+00,7.024390E+00,5.026150E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +1309945,fr,1,3.750000E+00,7.024390E+00,5.026150E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +1309956,fr,2,3.850000E+00,7.024390E+00,5.026150E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1309957,fr,1,3.850000E+00,7.024390E+00,5.026150E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1309959,fr,1,3.850000E+00,7.024390E+00,5.026150E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799757E+01,0.000000E+00 +1309980,fr,1,4.050000E+00,7.024390E+00,5.026150E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998912E+01,0.000000E+00 +1309992,fr,2,4.150000E+00,7.024390E+00,5.026150E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1310005,fr,1,4.250000E+00,7.024390E+00,5.026150E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999136E+01,0.000000E+00 +1310028,fr,1,4.450000E+00,7.024390E+00,5.026150E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999085E+01,0.000000E+00 +1310088,fr,2,4.950000E+00,7.024390E+00,5.026150E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +1310101,fr,1,5.050000E+00,7.024390E+00,5.026150E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1310400,fr,1,3.550000E+00,2.249450E+00,4.513378E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1310412,fr,1,3.650000E+00,2.249450E+00,4.513378E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1310418,fr,1,3.650000E+00,2.249450E+00,4.513378E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,-9.000000E+01 +1310424,fr,1,3.750000E+00,2.249450E+00,4.513378E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998870E+01,0.000000E+00 +1310425,fr,2,3.750000E+00,2.249450E+00,4.513378E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998870E+01,0.000000E+00 +1310430,fr,1,3.750000E+00,2.249450E+00,4.513378E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999142E+01,-9.000000E+01 +1310448,fr,2,3.950000E+00,2.249450E+00,4.513378E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999102E+01,0.000000E+00 +1310460,fr,1,4.050000E+00,2.249450E+00,4.513378E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1310496,fr,1,4.350000E+00,2.249450E+00,4.513378E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1310526,fr,1,4.550000E+00,2.249450E+00,4.513378E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,-9.000000E+01 +1310880,fr,1,3.550000E+00,3.155730E+00,4.196540E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +1310881,fr,1,3.550000E+00,3.155730E+00,4.196540E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +1310919,fr,1,3.850000E+00,3.155730E+00,4.196540E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.799760E+01,0.000000E+00 +1311372,fr,1,3.650000E+00,-2.706340E+00,4.904278E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +1311373,fr,1,3.650000E+00,-2.706340E+00,4.904278E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +1311381,fr,1,3.650000E+00,-2.706340E+00,4.904278E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996357E+01,0.000000E+00 +1311396,fr,1,3.850000E+00,-2.706340E+00,4.904278E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +1311408,fr,1,3.950000E+00,-2.706340E+00,4.904278E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +1311420,fr,1,4.050000E+00,-2.706340E+00,4.904278E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999071E+01,0.000000E+00 +1311432,fr,1,4.150000E+00,-2.706340E+00,4.904278E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1311447,fr,1,4.250000E+00,-2.706340E+00,4.904278E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799423E+01,0.000000E+00 +1311483,fr,1,4.550000E+00,-2.706340E+00,4.904278E+01,5.000000E+00,Active Shallow Crust,2.400101E+02,5.799764E+01,0.000000E+00 +1311486,fr,1,4.550000E+00,-2.706340E+00,4.904278E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,-9.000000E+01 +1311492,fr,1,4.650000E+00,-2.706340E+00,4.904278E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1311843,fr,1,3.550000E+00,-5.029220E+00,4.950746E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799800E+01,0.000000E+00 +1311864,fr,1,3.750000E+00,-5.029220E+00,4.950746E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1312320,fr,2,3.550000E+00,8.184100E+00,4.619234E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998604E+01,0.000000E+00 +1312321,fr,3,3.550000E+00,8.184100E+00,4.619234E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998604E+01,0.000000E+00 +1312322,fr,1,3.550000E+00,8.184100E+00,4.619234E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998604E+01,0.000000E+00 +1312323,fr,3,3.550000E+00,8.184100E+00,4.619234E+01,5.000000E+00,Active Shallow Crust,2.400136E+02,5.799753E+01,0.000000E+00 +1312324,fr,2,3.550000E+00,8.184100E+00,4.619234E+01,1.500000E+01,Active Shallow Crust,2.400136E+02,5.799753E+01,0.000000E+00 +1312332,fr,1,3.650000E+00,8.184100E+00,4.619234E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998756E+01,0.000000E+00 +1312333,fr,2,3.650000E+00,8.184100E+00,4.619234E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998756E+01,0.000000E+00 +1312356,fr,4,3.850000E+00,8.184100E+00,4.619234E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1312357,fr,1,3.850000E+00,8.184100E+00,4.619234E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1312365,fr,1,3.850000E+00,8.184100E+00,4.619234E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.999012E+01,0.000000E+00 +1312368,fr,1,3.950000E+00,8.184100E+00,4.619234E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999119E+01,0.000000E+00 +1312398,fr,1,4.150000E+00,8.184100E+00,4.619234E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999292E+01,-9.000000E+01 +1312404,fr,1,4.250000E+00,8.184100E+00,4.619234E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998753E+01,0.000000E+00 +1312407,fr,1,4.250000E+00,8.184100E+00,4.619234E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799333E+01,0.000000E+00 +1312416,fr,1,4.350000E+00,8.184100E+00,4.619234E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +1312419,fr,1,4.350000E+00,8.184100E+00,4.619234E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.799524E+01,0.000000E+00 +1312461,fr,1,4.650000E+00,8.184100E+00,4.619234E+01,5.000000E+00,Active Shallow Crust,1.288911E+02,8.998719E+01,0.000000E+00 +1312524,fr,1,5.250000E+00,8.184100E+00,4.619234E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1312716,fr,1,6.850000E+00,8.184119E+00,4.619234E+01,1.345767E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1312848,fr,1,3.950000E+00,1.215990E+00,4.463376E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1312898,fr,1,4.350000E+00,1.215990E+00,4.463376E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1312908,fr,1,4.450000E+00,1.215990E+00,4.463376E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1313294,fr,1,3.650000E+00,2.106980E+00,5.140886E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +1313328,fr,1,3.950000E+00,2.106980E+00,5.140886E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1313343,fr,1,4.050000E+00,2.106980E+00,5.140886E+01,5.000000E+00,Active Shallow Crust,2.400071E+02,5.800596E+01,0.000000E+00 +1313353,fr,1,4.150000E+00,2.106980E+00,5.140886E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +1313368,fr,1,4.250000E+00,2.106980E+00,5.140886E+01,1.500000E+01,Active Shallow Crust,2.400086E+02,5.799436E+01,0.000000E+00 +1313382,fr,1,4.350000E+00,2.106980E+00,5.140886E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,-9.000000E+01 +1313760,fr,1,3.550000E+00,5.190400E-01,4.952478E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1313772,fr,1,3.650000E+00,5.190400E-01,4.952478E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1313793,fr,1,3.750000E+00,5.190400E-01,4.952478E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.996737E+01,0.000000E+00 +1313798,fr,1,3.850000E+00,5.190400E-01,4.952478E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1313813,fr,1,3.950000E+00,5.190400E-01,4.952478E+01,2.750000E+01,Active Shallow Crust,2.400203E+02,5.800496E+01,0.000000E+00 +1313815,fr,1,3.950000E+00,5.190400E-01,4.952478E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +1313817,fr,1,3.950000E+00,5.190400E-01,4.952478E+01,5.000000E+00,Active Shallow Crust,1.289000E+02,8.999380E+01,0.000000E+00 +1313823,fr,1,4.050000E+00,5.190400E-01,4.952478E+01,5.000000E+00,Active Shallow Crust,2.400065E+02,5.800596E+01,0.000000E+00 +1313931,fr,1,4.950000E+00,5.190400E-01,4.952478E+01,5.000000E+00,Active Shallow Crust,2.400134E+02,5.800472E+01,0.000000E+00 +1314075,fr,1,6.150000E+00,5.186163E-01,4.952526E+01,5.097890E+00,Active Shallow Crust,2.400709E+02,5.799961E+01,0.000000E+00 +1314136,fr,1,6.650000E+00,5.190400E-01,4.952478E+01,1.500000E+01,Active Shallow Crust,2.401280E+02,5.799982E+01,0.000000E+00 +1314240,fr,2,3.550000E+00,4.981200E-01,4.912836E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1314241,fr,1,3.550000E+00,4.981200E-01,4.912836E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1314242,fr,1,3.550000E+00,4.981200E-01,4.912836E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1314244,fr,1,3.550000E+00,4.981200E-01,4.912836E+01,1.500000E+01,Active Shallow Crust,2.400124E+02,5.799827E+01,0.000000E+00 +1314252,fr,1,3.650000E+00,4.981200E-01,4.912836E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1314253,fr,1,3.650000E+00,4.981200E-01,4.912836E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1314256,fr,1,3.650000E+00,4.981200E-01,4.912836E+01,1.500000E+01,Active Shallow Crust,2.400014E+02,5.801289E+01,0.000000E+00 +1314270,fr,1,3.750000E+00,4.981200E-01,4.912836E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +1314272,fr,1,3.750000E+00,4.981200E-01,4.912836E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +1314276,fr,1,3.850000E+00,4.981200E-01,4.912836E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1314283,fr,1,3.850000E+00,4.981200E-01,4.912836E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +1314289,fr,1,3.950000E+00,4.981200E-01,4.912836E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1314291,fr,1,3.950000E+00,4.981200E-01,4.912836E+01,5.000000E+00,Active Shallow Crust,2.400202E+02,5.800500E+01,0.000000E+00 +1314379,fr,1,4.650000E+00,4.981200E-01,4.912836E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1314412,fr,1,4.950000E+00,4.981200E-01,4.912836E+01,1.500000E+01,Active Shallow Crust,2.400132E+02,5.800467E+01,0.000000E+00 +1314722,fr,1,3.550000E+00,-3.807300E+00,4.427529E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +1314763,fr,1,3.850000E+00,-3.807300E+00,4.427529E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998966E+01,-9.000000E+01 +1315716,fr,2,3.850000E+00,4.370920E+00,5.126869E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +1315740,fr,1,4.050000E+00,4.370920E+00,5.126869E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +1315764,fr,1,4.250000E+00,4.370920E+00,5.126869E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +1316161,fr,1,3.550000E+00,4.478920E+00,4.336145E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999267E+01,0.000000E+00 +1316172,fr,1,3.650000E+00,4.478920E+00,4.336145E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998693E+01,0.000000E+00 +1316173,fr,1,3.650000E+00,4.478920E+00,4.336145E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998693E+01,0.000000E+00 +1316175,fr,1,3.650000E+00,4.478920E+00,4.336145E+01,5.000000E+00,Active Shallow Crust,2.400017E+02,5.801245E+01,0.000000E+00 +1316233,fr,1,4.150000E+00,4.478920E+00,4.336145E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +1316256,fr,1,4.350000E+00,4.478920E+00,4.336145E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999124E+01,0.000000E+00 +1316318,fr,1,4.850000E+00,4.478920E+00,4.336145E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1316685,fr,1,3.850000E+00,-1.953660E+00,4.448398E+01,5.000000E+00,Active Shallow Crust,1.288955E+02,8.999427E+01,0.000000E+00 +1317121,fr,1,3.550000E+00,-4.998720E+00,4.869484E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998669E+01,0.000000E+00 +1317123,fr,1,3.550000E+00,-4.998720E+00,4.869484E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799897E+01,0.000000E+00 +1317132,fr,1,3.650000E+00,-4.998720E+00,4.869484E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998814E+01,0.000000E+00 +1317157,fr,1,3.850000E+00,-4.998720E+00,4.869484E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +1317180,fr,1,4.050000E+00,-4.998720E+00,4.869484E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998877E+01,0.000000E+00 +1317230,fr,1,4.450000E+00,-4.998720E+00,4.869484E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +1317251,fr,1,4.550000E+00,-4.998720E+00,4.869484E+01,2.750000E+01,Active Shallow Crust,1.288934E+02,8.998577E+01,0.000000E+00 +1317602,fr,1,3.550000E+00,4.828030E+00,5.193889E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998756E+01,0.000000E+00 +1317612,fr,1,3.650000E+00,4.828030E+00,5.193889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998892E+01,0.000000E+00 +1317636,fr,1,3.850000E+00,4.828030E+00,5.193889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +1317733,fr,1,4.650000E+00,4.828030E+00,5.193889E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +1317780,fr,1,5.050000E+00,4.828030E+00,5.193889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1318131,fr,1,3.950000E+00,2.134450E+00,4.907516E+01,5.000000E+00,Active Shallow Crust,2.400202E+02,5.800506E+01,0.000000E+00 +1318140,fr,1,4.050000E+00,2.134450E+00,4.907516E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +1318560,fr,1,3.550000E+00,7.813500E+00,4.562890E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999295E+01,0.000000E+00 +1318561,fr,1,3.550000E+00,7.813500E+00,4.562890E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999295E+01,0.000000E+00 +1318563,fr,1,3.550000E+00,7.813500E+00,4.562890E+01,5.000000E+00,Active Shallow Crust,2.400129E+02,5.799762E+01,0.000000E+00 +1318572,fr,3,3.650000E+00,7.813500E+00,4.562890E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998743E+01,0.000000E+00 +1318574,fr,1,3.650000E+00,7.813500E+00,4.562890E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998743E+01,0.000000E+00 +1318584,fr,2,3.750000E+00,7.813500E+00,4.562890E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998880E+01,0.000000E+00 +1318587,fr,1,3.750000E+00,7.813500E+00,4.562890E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.801805E+01,0.000000E+00 +1318596,fr,1,3.850000E+00,7.813500E+00,4.562890E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1318598,fr,1,3.850000E+00,7.813500E+00,4.562890E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1318605,fr,1,3.850000E+00,7.813500E+00,4.562890E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.999252E+01,0.000000E+00 +1318606,fr,1,3.850000E+00,7.813500E+00,4.562890E+01,1.500000E+01,Active Shallow Crust,1.288968E+02,8.999252E+01,0.000000E+00 +1318608,fr,1,3.950000E+00,7.813500E+00,4.562890E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +1318612,fr,1,3.950000E+00,7.813500E+00,4.562890E+01,1.500000E+01,Active Shallow Crust,2.400198E+02,5.800476E+01,0.000000E+00 +1318620,fr,2,4.050000E+00,7.813500E+00,4.562890E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998811E+01,0.000000E+00 +1318622,fr,1,4.050000E+00,7.813500E+00,4.562890E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998811E+01,0.000000E+00 +1318629,fr,1,4.050000E+00,7.813500E+00,4.562890E+01,5.000000E+00,Active Shallow Crust,1.288910E+02,8.999405E+01,0.000000E+00 +1318647,fr,1,4.250000E+00,7.813500E+00,4.562890E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799376E+01,0.000000E+00 +1318650,fr,1,4.250000E+00,7.813500E+00,4.562890E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,-9.000000E+01 +1318656,fr,1,4.350000E+00,7.813500E+00,4.562890E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998877E+01,0.000000E+00 +1318660,fr,1,4.350000E+00,7.813500E+00,4.562890E+01,1.500000E+01,Active Shallow Crust,2.400086E+02,5.799561E+01,0.000000E+00 +1318666,fr,1,4.350000E+00,7.813500E+00,4.562890E+01,1.500000E+01,Active Shallow Crust,1.288983E+02,8.998248E+01,0.000000E+00 +1318668,fr,1,4.450000E+00,7.813500E+00,4.562890E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1318680,fr,1,4.550000E+00,7.813500E+00,4.562890E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999108E+01,0.000000E+00 +1318681,fr,1,4.550000E+00,7.813500E+00,4.562890E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999108E+01,0.000000E+00 +1318728,fr,1,4.950000E+00,7.813500E+00,4.562890E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1318743,fr,1,5.050000E+00,7.813500E+00,4.562890E+01,5.000000E+00,Active Shallow Crust,2.400217E+02,5.799749E+01,0.000000E+00 +1318758,fr,1,5.150000E+00,7.813500E+00,4.562890E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,-9.000000E+01 +1318881,fr,1,6.150000E+00,7.813498E+00,4.562890E+01,6.011322E+00,Active Shallow Crust,1.288574E+02,8.998972E+01,0.000000E+00 +1319016,fr,1,7.350000E+00,7.813528E+00,4.562890E+01,1.750000E+01,Active Shallow Crust,3.600000E+02,8.998999E+01,0.000000E+00 +1320576,fr,1,4.350000E+00,9.010700E-01,5.227068E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1320960,fr,1,3.550000E+00,5.660710E+00,5.132205E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998740E+01,0.000000E+00 +1320970,fr,1,3.550000E+00,5.660710E+00,5.132205E+01,1.500000E+01,Active Shallow Crust,1.288960E+02,8.999370E+01,0.000000E+00 +1320984,fr,1,3.750000E+00,5.660710E+00,5.132205E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1320985,fr,1,3.750000E+00,5.660710E+00,5.132205E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1320996,fr,3,3.850000E+00,5.660710E+00,5.132205E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +1321020,fr,1,4.050000E+00,5.660710E+00,5.132205E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +1321058,fr,1,4.350000E+00,5.660710E+00,5.132205E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1321086,fr,1,4.550000E+00,5.660710E+00,5.132205E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,-9.000000E+01 +1321104,fr,1,4.750000E+00,5.660710E+00,5.132205E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +1321128,fr,1,4.950000E+00,5.660710E+00,5.132205E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1321272,fr,1,6.150000E+00,5.660712E+00,5.132205E+01,6.011322E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1321445,fr,1,3.550000E+00,2.084210E+00,4.058609E+01,2.750000E+01,Active Shallow Crust,2.400110E+02,5.799844E+01,0.000000E+00 +1321921,fr,1,3.550000E+00,2.305530E+00,4.102647E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +1321932,fr,1,3.650000E+00,2.305530E+00,4.102647E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1321933,fr,1,3.650000E+00,2.305530E+00,4.102647E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1321944,fr,1,3.750000E+00,2.305530E+00,4.102647E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +1321945,fr,1,3.750000E+00,2.305530E+00,4.102647E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +1321962,fr,1,3.850000E+00,2.305530E+00,4.102647E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,-9.000000E+01 +1321966,fr,1,3.850000E+00,2.305530E+00,4.102647E+01,1.500000E+01,Active Shallow Crust,1.288959E+02,8.999327E+01,0.000000E+00 +1321980,fr,1,4.050000E+00,2.305530E+00,4.102647E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +1321992,fr,1,4.150000E+00,2.305530E+00,4.102647E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +1322016,fr,2,4.350000E+00,2.305530E+00,4.102647E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +1322034,fr,1,4.450000E+00,2.305530E+00,4.102647E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,-9.000000E+01 +1322070,fr,1,4.750000E+00,2.305530E+00,4.102647E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,-9.000000E+01 +1322136,fr,1,5.350000E+00,2.305530E+00,4.102647E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1322196,fr,1,5.850000E+00,2.305530E+00,4.102647E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1322412,fr,1,3.650000E+00,-2.395300E-01,4.136193E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1322415,fr,1,3.650000E+00,-2.395300E-01,4.136193E+01,5.000000E+00,Active Shallow Crust,2.400006E+02,5.801277E+01,0.000000E+00 +1322880,fr,3,3.550000E+00,5.399960E+00,4.559810E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999294E+01,0.000000E+00 +1322881,fr,1,3.550000E+00,5.399960E+00,4.559810E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999294E+01,0.000000E+00 +1322883,fr,1,3.550000E+00,5.399960E+00,4.559810E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799707E+01,0.000000E+00 +1322885,fr,1,3.550000E+00,5.399960E+00,4.559810E+01,2.750000E+01,Active Shallow Crust,2.400124E+02,5.799698E+01,0.000000E+00 +1322886,fr,1,3.550000E+00,5.399960E+00,4.559810E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999287E+01,-9.000000E+01 +1322905,fr,1,3.750000E+00,5.399960E+00,4.559810E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998879E+01,0.000000E+00 +1322907,fr,2,3.750000E+00,5.399960E+00,4.559810E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.801808E+01,0.000000E+00 +1322916,fr,4,3.850000E+00,5.399960E+00,4.559810E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1322922,fr,1,3.850000E+00,5.399960E+00,4.559810E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,-9.000000E+01 +1322928,fr,1,3.950000E+00,5.399960E+00,4.559810E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +1322934,fr,1,3.950000E+00,5.399960E+00,4.559810E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999099E+01,-9.000000E+01 +1322940,fr,1,4.050000E+00,5.399960E+00,4.559810E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998810E+01,0.000000E+00 +1322941,fr,1,4.050000E+00,5.399960E+00,4.559810E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998810E+01,0.000000E+00 +1322943,fr,1,4.050000E+00,5.399960E+00,4.559810E+01,5.000000E+00,Active Shallow Crust,2.400061E+02,5.800593E+01,0.000000E+00 +1322955,fr,1,4.150000E+00,5.399960E+00,4.559810E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.799710E+01,0.000000E+00 +1322964,fr,1,4.250000E+00,5.399960E+00,4.559810E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +1322977,fr,1,4.350000E+00,5.399960E+00,4.559810E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998876E+01,0.000000E+00 +1323000,fr,2,4.550000E+00,5.399960E+00,4.559810E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +1323012,fr,1,4.650000E+00,5.399960E+00,4.559810E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1323360,fr,2,3.550000E+00,1.208560E+00,4.098251E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1323361,fr,1,3.550000E+00,1.208560E+00,4.098251E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1323377,fr,1,3.650000E+00,1.208560E+00,4.098251E+01,2.750000E+01,Active Shallow Crust,2.400007E+02,5.801260E+01,0.000000E+00 +1323385,fr,1,3.750000E+00,1.208560E+00,4.098251E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +1323386,fr,1,3.750000E+00,1.208560E+00,4.098251E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +1323435,fr,1,4.150000E+00,1.208560E+00,4.098251E+01,5.000000E+00,Active Shallow Crust,2.400075E+02,5.799720E+01,0.000000E+00 +1323444,fr,1,4.250000E+00,1.208560E+00,4.098251E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1323840,fr,2,3.550000E+00,2.585640E+00,4.227994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998881E+01,0.000000E+00 +1323847,fr,1,3.550000E+00,2.585640E+00,4.227994E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998868E+01,-9.000000E+01 +1323852,fr,1,3.650000E+00,2.585640E+00,4.227994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1323856,fr,1,3.650000E+00,2.585640E+00,4.227994E+01,1.500000E+01,Active Shallow Crust,2.400006E+02,5.801233E+01,0.000000E+00 +1323864,fr,1,3.750000E+00,2.585640E+00,4.227994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999111E+01,0.000000E+00 +1323868,fr,1,3.750000E+00,2.585640E+00,4.227994E+01,1.500000E+01,Active Shallow Crust,2.400077E+02,5.801721E+01,0.000000E+00 +1323873,fr,1,3.750000E+00,2.585640E+00,4.227994E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996712E+01,0.000000E+00 +1323876,fr,2,3.850000E+00,2.585640E+00,4.227994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1323877,fr,1,3.850000E+00,2.585640E+00,4.227994E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1323885,fr,1,3.850000E+00,2.585640E+00,4.227994E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999340E+01,0.000000E+00 +1323888,fr,1,3.950000E+00,2.585640E+00,4.227994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +1323889,fr,1,3.950000E+00,2.585640E+00,4.227994E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +1323890,fr,1,3.950000E+00,2.585640E+00,4.227994E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +1323900,fr,1,4.050000E+00,2.585640E+00,4.227994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1323902,fr,1,4.050000E+00,2.585640E+00,4.227994E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1323912,fr,4,4.150000E+00,2.585640E+00,4.227994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +1323924,fr,1,4.250000E+00,2.585640E+00,4.227994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1323945,fr,1,4.350000E+00,2.585640E+00,4.227994E+01,5.000000E+00,Active Shallow Crust,1.288987E+02,8.998260E+01,0.000000E+00 +1323951,fr,1,4.450000E+00,2.585640E+00,4.227994E+01,5.000000E+00,Active Shallow Crust,2.400041E+02,5.799438E+01,0.000000E+00 +1323972,fr,1,4.650000E+00,2.585640E+00,4.227994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +1323975,fr,1,4.650000E+00,2.585640E+00,4.227994E+01,5.000000E+00,Active Shallow Crust,2.400095E+02,5.799397E+01,0.000000E+00 +1324080,fr,1,5.550000E+00,2.585640E+00,4.227994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1324176,fr,1,6.350000E+00,2.585645E+00,4.227994E+01,7.567806E+00,Active Shallow Crust,3.599999E+02,8.999004E+01,0.000000E+00 +1324344,fr,1,3.750000E+00,1.169340E+00,4.381923E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1324353,fr,1,3.750000E+00,1.169340E+00,4.381923E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.996745E+01,0.000000E+00 +1324357,fr,1,3.850000E+00,1.169340E+00,4.381923E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1324440,fr,1,4.550000E+00,1.169340E+00,4.381923E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1324812,fr,1,3.650000E+00,3.325290E+00,4.736916E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999087E+01,0.000000E+00 +1324833,fr,1,3.750000E+00,3.325290E+00,4.736916E+01,5.000000E+00,Active Shallow Crust,1.288971E+02,8.996725E+01,0.000000E+00 +1324837,fr,1,3.850000E+00,3.325290E+00,4.736916E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1324939,fr,1,4.650000E+00,3.325290E+00,4.736916E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,-9.000000E+01 +1324968,fr,1,4.950000E+00,3.325290E+00,4.736916E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1325280,fr,1,3.550000E+00,8.880620E+00,4.781688E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998646E+01,0.000000E+00 +1325281,fr,1,3.550000E+00,8.880620E+00,4.781688E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998646E+01,0.000000E+00 +1325284,fr,1,3.550000E+00,8.880620E+00,4.781688E+01,1.500000E+01,Active Shallow Crust,2.400120E+02,5.799802E+01,0.000000E+00 +1325292,fr,1,3.650000E+00,8.880620E+00,4.781688E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998793E+01,0.000000E+00 +1325293,fr,1,3.650000E+00,8.880620E+00,4.781688E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998793E+01,0.000000E+00 +1325294,fr,1,3.650000E+00,8.880620E+00,4.781688E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998793E+01,0.000000E+00 +1325298,fr,1,3.650000E+00,8.880620E+00,4.781688E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998779E+01,-9.000000E+01 +1325304,fr,2,3.750000E+00,8.880620E+00,4.781688E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +1325306,fr,1,3.750000E+00,8.880620E+00,4.781688E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +1325310,fr,1,3.750000E+00,8.880620E+00,4.781688E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998912E+01,-9.000000E+01 +1325316,fr,3,3.850000E+00,8.880620E+00,4.781688E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +1325318,fr,1,3.850000E+00,8.880620E+00,4.781688E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +1325319,fr,1,3.850000E+00,8.880620E+00,4.781688E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799735E+01,0.000000E+00 +1325322,fr,1,3.850000E+00,8.880620E+00,4.781688E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,-9.000000E+01 +1325341,fr,1,4.050000E+00,8.880620E+00,4.781688E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999239E+01,0.000000E+00 +1325346,fr,1,4.050000E+00,8.880620E+00,4.781688E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999229E+01,-9.000000E+01 +1325352,fr,1,4.150000E+00,8.880620E+00,4.781688E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999321E+01,0.000000E+00 +1325353,fr,1,4.150000E+00,8.880620E+00,4.781688E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999321E+01,0.000000E+00 +1325364,fr,1,4.250000E+00,8.880620E+00,4.781688E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998790E+01,0.000000E+00 +1325376,fr,1,4.350000E+00,8.880620E+00,4.781688E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998922E+01,0.000000E+00 +1325393,fr,1,4.450000E+00,8.880620E+00,4.781688E+01,2.750000E+01,Active Shallow Crust,2.400047E+02,5.799481E+01,0.000000E+00 +1325760,fr,2,3.550000E+00,5.754720E+00,5.145605E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998743E+01,0.000000E+00 +1325766,fr,1,3.550000E+00,5.754720E+00,5.145605E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998729E+01,-9.000000E+01 +1325772,fr,1,3.650000E+00,5.754720E+00,5.145605E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998880E+01,0.000000E+00 +1325784,fr,2,3.750000E+00,5.754720E+00,5.145605E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1326273,fr,1,3.750000E+00,5.148770E+00,4.902557E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996701E+01,0.000000E+00 +1326336,fr,1,4.350000E+00,5.148770E+00,4.902557E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +1326720,fr,2,3.550000E+00,3.837050E+00,4.220029E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998879E+01,0.000000E+00 +1326760,fr,1,3.850000E+00,3.837050E+00,4.220029E+01,1.500000E+01,Active Shallow Crust,2.400107E+02,5.799728E+01,0.000000E+00 +1326761,fr,1,3.850000E+00,3.837050E+00,4.220029E+01,2.750000E+01,Active Shallow Crust,2.400107E+02,5.799728E+01,0.000000E+00 +1326768,fr,1,3.950000E+00,3.837050E+00,4.220029E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +1326810,fr,1,4.250000E+00,3.837050E+00,4.220029E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +1326846,fr,1,4.550000E+00,3.837050E+00,4.220029E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,-9.000000E+01 +1326900,fr,1,5.050000E+00,3.837050E+00,4.220029E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1327200,fr,1,3.550000E+00,-2.774110E+00,4.314684E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998897E+01,0.000000E+00 +1327201,fr,1,3.550000E+00,-2.774110E+00,4.314684E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998897E+01,0.000000E+00 +1327224,fr,1,3.750000E+00,-2.774110E+00,4.314684E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +1327225,fr,1,3.750000E+00,-2.774110E+00,4.314684E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +1327227,fr,1,3.750000E+00,-2.774110E+00,4.314684E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.801730E+01,0.000000E+00 +1327228,fr,1,3.750000E+00,-2.774110E+00,4.314684E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.801730E+01,0.000000E+00 +1327238,fr,1,3.850000E+00,-2.774110E+00,4.314684E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1327260,fr,1,4.050000E+00,-2.774110E+00,4.314684E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1327320,fr,1,4.550000E+00,-2.774110E+00,4.314684E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +1327321,fr,1,4.550000E+00,-2.774110E+00,4.314684E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +1327371,fr,1,4.950000E+00,-2.774110E+00,4.314684E+01,5.000000E+00,Active Shallow Crust,2.400103E+02,5.800422E+01,0.000000E+00 +1327680,fr,4,3.550000E+00,6.325640E+00,4.453333E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999281E+01,0.000000E+00 +1327689,fr,1,3.550000E+00,6.325640E+00,4.453333E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999281E+01,0.000000E+00 +1327690,fr,1,3.550000E+00,6.325640E+00,4.453333E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.999281E+01,0.000000E+00 +1327692,fr,1,3.650000E+00,6.325640E+00,4.453333E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998719E+01,0.000000E+00 +1327695,fr,1,3.650000E+00,6.325640E+00,4.453333E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801318E+01,0.000000E+00 +1327704,fr,1,3.750000E+00,6.325640E+00,4.453333E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998858E+01,0.000000E+00 +1327706,fr,1,3.750000E+00,6.325640E+00,4.453333E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998858E+01,0.000000E+00 +1327716,fr,1,3.850000E+00,6.325640E+00,4.453333E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1327717,fr,1,3.850000E+00,6.325640E+00,4.453333E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1327741,fr,1,4.050000E+00,6.325640E+00,4.453333E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999191E+01,0.000000E+00 +1327768,fr,1,4.250000E+00,6.325640E+00,4.453333E+01,1.500000E+01,Active Shallow Crust,2.400073E+02,5.799368E+01,0.000000E+00 +1327773,fr,1,4.250000E+00,6.325640E+00,4.453333E+01,5.000000E+00,Active Shallow Crust,1.288945E+02,8.998087E+01,0.000000E+00 +1327788,fr,1,4.450000E+00,6.325640E+00,4.453333E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1327896,fr,1,5.350000E+00,6.325640E+00,4.453333E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1327944,fr,1,5.750000E+00,6.325640E+00,4.453333E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1328160,fr,1,3.550000E+00,8.733500E-01,4.941132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1328164,fr,1,3.550000E+00,8.733500E-01,4.941132E+01,1.500000E+01,Active Shallow Crust,2.400125E+02,5.799822E+01,0.000000E+00 +1328169,fr,1,3.550000E+00,8.733500E-01,4.941132E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999385E+01,0.000000E+00 +1328175,fr,2,3.650000E+00,8.733500E-01,4.941132E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801298E+01,0.000000E+00 +1328179,fr,1,3.650000E+00,8.733500E-01,4.941132E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +1328184,fr,1,3.750000E+00,8.733500E-01,4.941132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1328198,fr,1,3.850000E+00,8.733500E-01,4.941132E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1328208,fr,2,3.950000E+00,8.733500E-01,4.941132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1328253,fr,1,4.250000E+00,8.733500E-01,4.941132E+01,5.000000E+00,Active Shallow Crust,1.288938E+02,8.998093E+01,0.000000E+00 +1328256,fr,1,4.350000E+00,8.733500E-01,4.941132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1328268,fr,1,4.450000E+00,8.733500E-01,4.941132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1328304,fr,1,4.750000E+00,8.733500E-01,4.941132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1328448,fr,1,5.950000E+00,8.733500E-01,4.941132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1328461,fr,1,6.050000E+00,8.733500E-01,4.941132E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1328640,fr,1,3.550000E+00,4.026790E+00,4.657539E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999306E+01,0.000000E+00 +1328666,fr,1,3.750000E+00,4.026790E+00,4.657539E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998899E+01,0.000000E+00 +1328676,fr,1,3.850000E+00,4.026790E+00,4.657539E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1328695,fr,1,3.950000E+00,4.026790E+00,4.657539E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999115E+01,-9.000000E+01 +1328727,fr,1,4.250000E+00,4.026790E+00,4.657539E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799371E+01,0.000000E+00 +1328736,fr,1,4.350000E+00,4.026790E+00,4.657539E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998896E+01,0.000000E+00 +1328739,fr,1,4.350000E+00,4.026790E+00,4.657539E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.799578E+01,0.000000E+00 +1329129,fr,1,3.550000E+00,-9.429200E-01,4.417404E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999368E+01,0.000000E+00 +1329264,fr,1,4.750000E+00,-9.429200E-01,4.417404E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1329600,fr,11,3.550000E+00,1.425800E-01,4.291099E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1329601,fr,3,3.550000E+00,1.425800E-01,4.291099E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1329602,fr,2,3.550000E+00,1.425800E-01,4.291099E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1329603,fr,1,3.550000E+00,1.425800E-01,4.291099E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799814E+01,0.000000E+00 +1329604,fr,1,3.550000E+00,1.425800E-01,4.291099E+01,1.500000E+01,Active Shallow Crust,2.400118E+02,5.799814E+01,0.000000E+00 +1329605,fr,1,3.550000E+00,1.425800E-01,4.291099E+01,2.750000E+01,Active Shallow Crust,2.400118E+02,5.799805E+01,0.000000E+00 +1329606,fr,1,3.550000E+00,1.425800E-01,4.291099E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +1329607,fr,1,3.550000E+00,1.425800E-01,4.291099E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +1329608,fr,1,3.550000E+00,1.425800E-01,4.291099E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +1329609,fr,1,3.550000E+00,1.425800E-01,4.291099E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999377E+01,0.000000E+00 +1329612,fr,5,3.650000E+00,1.425800E-01,4.291099E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1329613,fr,2,3.650000E+00,1.425800E-01,4.291099E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1329616,fr,1,3.650000E+00,1.425800E-01,4.291099E+01,1.500000E+01,Active Shallow Crust,2.400007E+02,5.801283E+01,0.000000E+00 +1329619,fr,4,3.650000E+00,1.425800E-01,4.291099E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1329621,fr,2,3.650000E+00,1.425800E-01,4.291099E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996351E+01,0.000000E+00 +1329622,fr,1,3.650000E+00,1.425800E-01,4.291099E+01,1.500000E+01,Active Shallow Crust,1.289007E+02,8.996351E+01,0.000000E+00 +1329624,fr,14,3.750000E+00,1.425800E-01,4.291099E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1329626,fr,1,3.750000E+00,1.425800E-01,4.291099E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1329627,fr,2,3.750000E+00,1.425800E-01,4.291099E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801751E+01,0.000000E+00 +1329631,fr,1,3.750000E+00,1.425800E-01,4.291099E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +1329636,fr,1,3.850000E+00,1.425800E-01,4.291099E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1329637,fr,2,3.850000E+00,1.425800E-01,4.291099E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1329641,fr,2,3.850000E+00,1.425800E-01,4.291099E+01,2.750000E+01,Active Shallow Crust,2.400104E+02,5.799772E+01,0.000000E+00 +1329642,fr,2,3.850000E+00,1.425800E-01,4.291099E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +1329645,fr,2,3.850000E+00,1.425800E-01,4.291099E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999371E+01,0.000000E+00 +1329646,fr,3,3.850000E+00,1.425800E-01,4.291099E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.999371E+01,0.000000E+00 +1329648,fr,7,3.950000E+00,1.425800E-01,4.291099E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1329649,fr,2,3.950000E+00,1.425800E-01,4.291099E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1329650,fr,1,3.950000E+00,1.425800E-01,4.291099E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1329654,fr,2,3.950000E+00,1.425800E-01,4.291099E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +1329660,fr,10,4.050000E+00,1.425800E-01,4.291099E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1329661,fr,1,4.050000E+00,1.425800E-01,4.291099E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1329664,fr,3,4.050000E+00,1.425800E-01,4.291099E+01,1.500000E+01,Active Shallow Crust,2.400054E+02,5.800569E+01,0.000000E+00 +1329672,fr,4,4.150000E+00,1.425800E-01,4.291099E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1329673,fr,2,4.150000E+00,1.425800E-01,4.291099E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1329675,fr,1,4.150000E+00,1.425800E-01,4.291099E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799719E+01,0.000000E+00 +1329677,fr,1,4.150000E+00,1.425800E-01,4.291099E+01,2.750000E+01,Active Shallow Crust,2.400078E+02,5.799717E+01,0.000000E+00 +1329679,fr,1,4.150000E+00,1.425800E-01,4.291099E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,-9.000000E+01 +1329684,fr,2,4.250000E+00,1.425800E-01,4.291099E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1329685,fr,1,4.250000E+00,1.425800E-01,4.291099E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1329686,fr,1,4.250000E+00,1.425800E-01,4.291099E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1329689,fr,1,4.250000E+00,1.425800E-01,4.291099E+01,2.750000E+01,Active Shallow Crust,2.400069E+02,5.799395E+01,0.000000E+00 +1329690,fr,1,4.250000E+00,1.425800E-01,4.291099E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +1329696,fr,3,4.350000E+00,1.425800E-01,4.291099E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1329698,fr,1,4.350000E+00,1.425800E-01,4.291099E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1329699,fr,2,4.350000E+00,1.425800E-01,4.291099E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799579E+01,0.000000E+00 +1329708,fr,1,4.450000E+00,1.425800E-01,4.291099E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1329709,fr,1,4.450000E+00,1.425800E-01,4.291099E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1329715,fr,1,4.450000E+00,1.425800E-01,4.291099E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1329717,fr,1,4.450000E+00,1.425800E-01,4.291099E+01,5.000000E+00,Active Shallow Crust,1.288929E+02,8.999370E+01,0.000000E+00 +1329718,fr,1,4.450000E+00,1.425800E-01,4.291099E+01,1.500000E+01,Active Shallow Crust,1.288929E+02,8.999370E+01,0.000000E+00 +1329721,fr,1,4.550000E+00,1.425800E-01,4.291099E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1329726,fr,1,4.550000E+00,1.425800E-01,4.291099E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +1329732,fr,2,4.650000E+00,1.425800E-01,4.291099E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1329763,fr,1,4.850000E+00,1.425800E-01,4.291099E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1329769,fr,1,4.950000E+00,1.425800E-01,4.291099E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1329780,fr,3,5.050000E+00,1.425800E-01,4.291099E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1329792,fr,1,5.150000E+00,1.425800E-01,4.291099E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1329852,fr,1,5.650000E+00,1.425800E-01,4.291099E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1329864,fr,1,5.750000E+00,1.425800E-01,4.291099E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +1330068,fr,1,7.450000E+00,1.426068E-01,4.291099E+01,1.750000E+01,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +1330081,fr,1,3.550000E+00,3.564980E+00,5.067333E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +1330087,fr,1,3.550000E+00,3.564980E+00,5.067333E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,-9.000000E+01 +1330093,fr,1,3.650000E+00,3.564980E+00,5.067333E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998861E+01,0.000000E+00 +1330128,fr,2,3.950000E+00,3.564980E+00,5.067333E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1330224,fr,1,4.750000E+00,3.564980E+00,5.067333E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1330272,fr,1,5.150000E+00,3.564980E+00,5.067333E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1330368,fr,1,5.950000E+00,3.564980E+00,5.067333E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1330560,fr,1,3.550000E+00,-1.914850E+00,4.776100E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1330569,fr,3,3.550000E+00,-1.914850E+00,4.776100E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999323E+01,0.000000E+00 +1330584,fr,1,3.750000E+00,-1.914850E+00,4.776100E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +1330585,fr,1,3.750000E+00,-1.914850E+00,4.776100E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +1330610,fr,1,3.950000E+00,-1.914850E+00,4.776100E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +1330624,fr,1,4.050000E+00,-1.914850E+00,4.776100E+01,1.500000E+01,Active Shallow Crust,2.400062E+02,5.800581E+01,0.000000E+00 +1330680,fr,1,4.550000E+00,-1.914850E+00,4.776100E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1331532,fr,2,3.650000E+00,2.477710E+00,4.895810E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999115E+01,0.000000E+00 +1331533,fr,1,3.650000E+00,2.477710E+00,4.895810E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999115E+01,0.000000E+00 +1331545,fr,1,3.750000E+00,2.477710E+00,4.895810E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +1331547,fr,1,3.750000E+00,2.477710E+00,4.895810E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.801741E+01,0.000000E+00 +1332133,fr,1,4.650000E+00,-2.183120E+00,5.001871E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1332483,fr,1,3.550000E+00,7.707660E+00,4.883776E+01,5.000000E+00,Active Shallow Crust,2.400132E+02,5.799756E+01,0.000000E+00 +1332492,fr,1,3.650000E+00,7.707660E+00,4.883776E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998817E+01,0.000000E+00 +1332493,fr,1,3.650000E+00,7.707660E+00,4.883776E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998817E+01,0.000000E+00 +1332495,fr,1,3.650000E+00,7.707660E+00,4.883776E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801255E+01,0.000000E+00 +1332499,fr,1,3.650000E+00,7.707660E+00,4.883776E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998803E+01,-9.000000E+01 +1332504,fr,2,3.750000E+00,7.707660E+00,4.883776E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1332505,fr,1,3.750000E+00,7.707660E+00,4.883776E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1332522,fr,1,3.850000E+00,7.707660E+00,4.883776E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,-9.000000E+01 +1332528,fr,1,3.950000E+00,7.707660E+00,4.883776E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999162E+01,0.000000E+00 +1332541,fr,1,4.050000E+00,7.707660E+00,4.883776E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998880E+01,0.000000E+00 +1332546,fr,1,4.050000E+00,7.707660E+00,4.883776E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998867E+01,-9.000000E+01 +1332960,fr,2,3.550000E+00,5.809100E+00,4.367223E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999271E+01,0.000000E+00 +1332961,fr,1,3.550000E+00,5.809100E+00,4.367223E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999271E+01,0.000000E+00 +1332962,fr,1,3.550000E+00,5.809100E+00,4.367223E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999271E+01,0.000000E+00 +1332966,fr,1,3.550000E+00,5.809100E+00,4.367223E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999262E+01,-9.000000E+01 +1332967,fr,1,3.550000E+00,5.809100E+00,4.367223E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999262E+01,-9.000000E+01 +1332968,fr,2,3.550000E+00,5.809100E+00,4.367223E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999262E+01,-9.000000E+01 +1332972,fr,2,3.650000E+00,5.809100E+00,4.367223E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998700E+01,0.000000E+00 +1332984,fr,4,3.750000E+00,5.809100E+00,4.367223E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998841E+01,0.000000E+00 +1332985,fr,2,3.750000E+00,5.809100E+00,4.367223E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998841E+01,0.000000E+00 +1332996,fr,2,3.850000E+00,5.809100E+00,4.367223E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +1333008,fr,4,3.950000E+00,5.809100E+00,4.367223E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999080E+01,0.000000E+00 +1333009,fr,1,3.950000E+00,5.809100E+00,4.367223E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999080E+01,0.000000E+00 +1333018,fr,1,3.950000E+00,5.809100E+00,4.367223E+01,1.500000E+01,Active Shallow Crust,1.288999E+02,8.999310E+01,0.000000E+00 +1333020,fr,2,4.050000E+00,5.809100E+00,4.367223E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999180E+01,0.000000E+00 +1333023,fr,1,4.050000E+00,5.809100E+00,4.367223E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.800606E+01,0.000000E+00 +1333056,fr,1,4.350000E+00,5.809100E+00,4.367223E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +1333069,fr,1,4.450000E+00,5.809100E+00,4.367223E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1333082,fr,1,4.550000E+00,5.809100E+00,4.367223E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +1333248,fr,1,5.950000E+00,5.809100E+00,4.367223E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1333440,fr,1,3.550000E+00,-1.886600E-01,4.641460E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1333443,fr,1,3.550000E+00,-1.886600E-01,4.641460E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799814E+01,0.000000E+00 +1333453,fr,3,3.650000E+00,-1.886600E-01,4.641460E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1333462,fr,1,3.650000E+00,-1.886600E-01,4.641460E+01,1.500000E+01,Active Shallow Crust,1.289004E+02,8.996351E+01,0.000000E+00 +1333464,fr,1,3.750000E+00,-1.886600E-01,4.641460E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1333465,fr,1,3.750000E+00,-1.886600E-01,4.641460E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1333477,fr,1,3.850000E+00,-1.886600E-01,4.641460E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1333503,fr,1,4.050000E+00,-1.886600E-01,4.641460E+01,5.000000E+00,Active Shallow Crust,2.400059E+02,5.800584E+01,0.000000E+00 +1333558,fr,1,4.450000E+00,-1.886600E-01,4.641460E+01,1.500000E+01,Active Shallow Crust,1.288922E+02,8.999372E+01,0.000000E+00 +1333563,fr,2,4.550000E+00,-1.886600E-01,4.641460E+01,5.000000E+00,Active Shallow Crust,2.400093E+02,5.799736E+01,0.000000E+00 +1333592,fr,1,4.750000E+00,-1.886600E-01,4.641460E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1333594,fr,1,4.750000E+00,-1.886600E-01,4.641460E+01,1.500000E+01,Active Shallow Crust,1.288887E+02,8.998807E+01,0.000000E+00 +1333920,fr,1,3.550000E+00,5.243850E+00,5.102273E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998731E+01,0.000000E+00 +1333932,fr,1,3.650000E+00,5.243850E+00,5.102273E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +1333944,fr,1,3.750000E+00,5.243850E+00,5.102273E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1333965,fr,1,3.850000E+00,5.243850E+00,5.102273E+01,5.000000E+00,Active Shallow Crust,1.288951E+02,8.999551E+01,0.000000E+00 +1334028,fr,1,4.450000E+00,5.243850E+00,5.102273E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +1334052,fr,1,4.650000E+00,5.243850E+00,5.102273E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1334085,fr,1,4.850000E+00,5.243850E+00,5.102273E+01,5.000000E+00,Active Shallow Crust,1.288839E+02,8.999361E+01,0.000000E+00 +1334160,fr,1,5.550000E+00,5.243850E+00,5.102273E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1334400,fr,3,3.550000E+00,2.187180E+00,4.221678E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998880E+01,0.000000E+00 +1334401,fr,1,3.550000E+00,2.187180E+00,4.221678E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998880E+01,0.000000E+00 +1334403,fr,1,3.550000E+00,2.187180E+00,4.221678E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799815E+01,0.000000E+00 +1334412,fr,3,3.650000E+00,2.187180E+00,4.221678E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1334413,fr,2,3.650000E+00,2.187180E+00,4.221678E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1334415,fr,1,3.650000E+00,2.187180E+00,4.221678E+01,5.000000E+00,Active Shallow Crust,2.400005E+02,5.801294E+01,0.000000E+00 +1334419,fr,1,3.650000E+00,2.187180E+00,4.221678E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,-9.000000E+01 +1334421,fr,1,3.650000E+00,2.187180E+00,4.221678E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996371E+01,0.000000E+00 +1334424,fr,4,3.750000E+00,2.187180E+00,4.221678E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +1334425,fr,1,3.750000E+00,2.187180E+00,4.221678E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +1334430,fr,1,3.750000E+00,2.187180E+00,4.221678E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,-9.000000E+01 +1334436,fr,2,3.850000E+00,2.187180E+00,4.221678E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1334437,fr,2,3.850000E+00,2.187180E+00,4.221678E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1334448,fr,2,3.950000E+00,2.187180E+00,4.221678E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +1334453,fr,1,3.950000E+00,2.187180E+00,4.221678E+01,2.750000E+01,Active Shallow Crust,2.400192E+02,5.800515E+01,0.000000E+00 +1334469,fr,1,4.050000E+00,2.187180E+00,4.221678E+01,5.000000E+00,Active Shallow Crust,1.288910E+02,8.999370E+01,0.000000E+00 +1334472,fr,2,4.150000E+00,2.187180E+00,4.221678E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +1334473,fr,1,4.150000E+00,2.187180E+00,4.221678E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +1334487,fr,1,4.250000E+00,2.187180E+00,4.221678E+01,5.000000E+00,Active Shallow Crust,2.400066E+02,5.799401E+01,0.000000E+00 +1334508,fr,1,4.450000E+00,2.187180E+00,4.221678E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +1334520,fr,1,4.550000E+00,2.187180E+00,4.221678E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +1334526,fr,1,4.550000E+00,2.187180E+00,4.221678E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,-9.000000E+01 +1334539,fr,1,4.650000E+00,2.187180E+00,4.221678E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999042E+01,-9.000000E+01 +1334550,fr,1,4.750000E+00,2.187180E+00,4.221678E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,-9.000000E+01 +1334880,fr,2,3.550000E+00,9.297400E-01,4.915109E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1334892,fr,1,3.650000E+00,9.297400E-01,4.915109E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1334904,fr,1,3.750000E+00,9.297400E-01,4.915109E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1334916,fr,1,3.850000E+00,9.297400E-01,4.915109E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1334921,fr,1,3.850000E+00,9.297400E-01,4.915109E+01,2.750000E+01,Active Shallow Crust,2.400112E+02,5.799795E+01,0.000000E+00 +1334922,fr,1,3.850000E+00,9.297400E-01,4.915109E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +1334958,fr,1,4.150000E+00,9.297400E-01,4.915109E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1334976,fr,1,4.350000E+00,9.297400E-01,4.915109E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1334993,fr,1,4.450000E+00,9.297400E-01,4.915109E+01,2.750000E+01,Active Shallow Crust,2.400060E+02,5.799482E+01,0.000000E+00 +1335372,fr,1,3.650000E+00,7.092410E+00,4.289091E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998683E+01,0.000000E+00 +1335396,fr,1,3.850000E+00,7.092410E+00,4.289091E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +1335840,fr,1,3.550000E+00,4.685320E+00,4.339008E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999268E+01,0.000000E+00 +1335843,fr,1,3.550000E+00,4.685320E+00,4.339008E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799869E+01,0.000000E+00 +1335849,fr,1,3.550000E+00,4.685320E+00,4.339008E+01,5.000000E+00,Active Shallow Crust,1.288953E+02,8.999634E+01,0.000000E+00 +1335852,fr,1,3.650000E+00,4.685320E+00,4.339008E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998694E+01,0.000000E+00 +1335888,fr,1,3.950000E+00,4.685320E+00,4.339008E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +1335889,fr,1,3.950000E+00,4.685320E+00,4.339008E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +1335891,fr,1,3.950000E+00,4.685320E+00,4.339008E+01,5.000000E+00,Active Shallow Crust,2.400191E+02,5.800453E+01,0.000000E+00 +1335901,fr,1,4.050000E+00,4.685320E+00,4.339008E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999176E+01,0.000000E+00 +1335914,fr,1,4.150000E+00,4.685320E+00,4.339008E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +1336320,fr,4,3.550000E+00,8.244440E+00,4.658932E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998614E+01,0.000000E+00 +1336321,fr,2,3.550000E+00,8.244440E+00,4.658932E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998614E+01,0.000000E+00 +1336327,fr,1,3.550000E+00,8.244440E+00,4.658932E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998598E+01,-9.000000E+01 +1336329,fr,1,3.550000E+00,8.244440E+00,4.658932E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.999307E+01,0.000000E+00 +1336330,fr,1,3.550000E+00,8.244440E+00,4.658932E+01,1.500000E+01,Active Shallow Crust,1.288952E+02,8.999307E+01,0.000000E+00 +1336334,fr,1,3.650000E+00,8.244440E+00,4.658932E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998765E+01,0.000000E+00 +1336344,fr,4,3.750000E+00,8.244440E+00,4.658932E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998899E+01,0.000000E+00 +1336358,fr,1,3.850000E+00,8.244440E+00,4.658932E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1336362,fr,2,3.850000E+00,8.244440E+00,4.658932E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +1336369,fr,1,3.950000E+00,8.244440E+00,4.658932E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +1336381,fr,1,4.050000E+00,8.244440E+00,4.658932E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999220E+01,0.000000E+00 +1336386,fr,1,4.050000E+00,8.244440E+00,4.658932E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999212E+01,-9.000000E+01 +1336404,fr,1,4.250000E+00,8.244440E+00,4.658932E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998762E+01,0.000000E+00 +1336405,fr,2,4.250000E+00,8.244440E+00,4.658932E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998762E+01,0.000000E+00 +1336416,fr,1,4.350000E+00,8.244440E+00,4.658932E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998896E+01,0.000000E+00 +1336560,fr,1,5.550000E+00,8.244440E+00,4.658932E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1336800,fr,1,3.550000E+00,4.556760E+00,4.416868E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999277E+01,0.000000E+00 +1336804,fr,1,3.550000E+00,4.556760E+00,4.416868E+01,1.500000E+01,Active Shallow Crust,2.400108E+02,5.799916E+01,0.000000E+00 +1336807,fr,1,3.550000E+00,4.556760E+00,4.416868E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999268E+01,-9.000000E+01 +1336809,fr,1,3.550000E+00,4.556760E+00,4.416868E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999277E+01,0.000000E+00 +1336812,fr,1,3.650000E+00,4.556760E+00,4.416868E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998711E+01,0.000000E+00 +1336824,fr,1,3.750000E+00,4.556760E+00,4.416868E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998851E+01,0.000000E+00 +1336825,fr,1,3.750000E+00,4.556760E+00,4.416868E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998851E+01,0.000000E+00 +1336842,fr,1,3.850000E+00,4.556760E+00,4.416868E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,-9.000000E+01 +1336847,fr,1,3.850000E+00,4.556760E+00,4.416868E+01,2.750000E+01,Active Shallow Crust,1.288970E+02,8.999232E+01,0.000000E+00 +1336848,fr,1,3.950000E+00,4.556760E+00,4.416868E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1336849,fr,1,3.950000E+00,4.556760E+00,4.416868E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1336851,fr,1,3.950000E+00,4.556760E+00,4.416868E+01,5.000000E+00,Active Shallow Crust,2.400200E+02,5.800462E+01,0.000000E+00 +1336856,fr,1,3.950000E+00,4.556760E+00,4.416868E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999077E+01,-9.000000E+01 +1336857,fr,1,3.950000E+00,4.556760E+00,4.416868E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.999316E+01,0.000000E+00 +1336858,fr,1,3.950000E+00,4.556760E+00,4.416868E+01,1.500000E+01,Active Shallow Crust,1.289004E+02,8.999316E+01,0.000000E+00 +1336861,fr,1,4.050000E+00,4.556760E+00,4.416868E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999187E+01,0.000000E+00 +1336872,fr,1,4.150000E+00,4.556760E+00,4.416868E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998912E+01,0.000000E+00 +1336875,fr,1,4.150000E+00,4.556760E+00,4.416868E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799730E+01,0.000000E+00 +1336884,fr,1,4.250000E+00,4.556760E+00,4.416868E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1336885,fr,1,4.250000E+00,4.556760E+00,4.416868E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1336890,fr,1,4.250000E+00,4.556760E+00,4.416868E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,-9.000000E+01 +1337005,fr,1,5.250000E+00,4.556760E+00,4.416868E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1337078,fr,1,5.850000E+00,4.556760E+00,4.416868E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1337176,fr,1,6.650000E+00,4.556760E+00,4.416868E+01,1.500000E+01,Active Shallow Crust,2.401051E+02,5.799993E+01,0.000000E+00 +1337280,fr,1,3.550000E+00,-6.882900E-01,5.037970E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1337292,fr,1,3.650000E+00,-6.882900E-01,5.037970E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1337294,fr,1,3.650000E+00,-6.882900E-01,5.037970E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1337295,fr,1,3.650000E+00,-6.882900E-01,5.037970E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801299E+01,0.000000E+00 +1337306,fr,1,3.750000E+00,-6.882900E-01,5.037970E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1337316,fr,1,3.850000E+00,-6.882900E-01,5.037970E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1337319,fr,1,3.850000E+00,-6.882900E-01,5.037970E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799800E+01,0.000000E+00 +1337343,fr,1,4.050000E+00,-6.882900E-01,5.037970E+01,5.000000E+00,Active Shallow Crust,2.400066E+02,5.800596E+01,0.000000E+00 +1337364,fr,1,4.250000E+00,-6.882900E-01,5.037970E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1337764,fr,1,3.550000E+00,-3.428990E+00,4.762484E+01,1.500000E+01,Active Shallow Crust,2.400118E+02,5.799802E+01,0.000000E+00 +1337766,fr,2,3.550000E+00,-3.428990E+00,4.762484E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +1337773,fr,1,3.650000E+00,-3.428990E+00,4.762484E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +1337784,fr,1,3.750000E+00,-3.428990E+00,4.762484E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1337796,fr,1,3.850000E+00,-3.428990E+00,4.762484E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +1337797,fr,1,3.850000E+00,-3.428990E+00,4.762484E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +1337803,fr,1,3.850000E+00,-3.428990E+00,4.762484E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,-9.000000E+01 +1337832,fr,1,4.150000E+00,-3.428990E+00,4.762484E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1337845,fr,1,4.250000E+00,-3.428990E+00,4.762484E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +1337899,fr,1,4.650000E+00,-3.428990E+00,4.762484E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999031E+01,-9.000000E+01 +1337916,fr,1,4.850000E+00,-3.428990E+00,4.762484E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1337929,fr,1,4.950000E+00,-3.428990E+00,4.762484E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1338720,fr,1,3.550000E+00,3.048290E+00,4.141091E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +1338726,fr,1,3.550000E+00,3.048290E+00,4.141091E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998853E+01,-9.000000E+01 +1338733,fr,1,3.650000E+00,3.048290E+00,4.141091E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1338738,fr,1,3.650000E+00,3.048290E+00,4.141091E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,-9.000000E+01 +1338756,fr,1,3.850000E+00,3.048290E+00,4.141091E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +1338758,fr,1,3.850000E+00,3.048290E+00,4.141091E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +1338781,fr,1,4.050000E+00,3.048290E+00,4.141091E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +1338806,fr,1,4.250000E+00,3.048290E+00,4.141091E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1338852,fr,1,4.650000E+00,3.048290E+00,4.141091E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +1338855,fr,1,4.650000E+00,3.048290E+00,4.141091E+01,5.000000E+00,Active Shallow Crust,2.400093E+02,5.799383E+01,0.000000E+00 +1338856,fr,1,4.650000E+00,3.048290E+00,4.141091E+01,1.500000E+01,Active Shallow Crust,2.400093E+02,5.799383E+01,0.000000E+00 +1338912,fr,1,5.150000E+00,3.048290E+00,4.141091E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1338914,fr,1,5.150000E+00,3.048290E+00,4.141091E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1339200,fr,1,3.550000E+00,2.521570E+00,4.038382E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998848E+01,0.000000E+00 +1339202,fr,1,3.550000E+00,2.521570E+00,4.038382E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998848E+01,0.000000E+00 +1339680,fr,1,3.550000E+00,4.690930E+00,4.205121E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999252E+01,0.000000E+00 +1339681,fr,1,3.550000E+00,4.690930E+00,4.205121E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999252E+01,0.000000E+00 +1339692,fr,1,3.650000E+00,4.690930E+00,4.205121E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999332E+01,0.000000E+00 +1339696,fr,1,3.650000E+00,4.690930E+00,4.205121E+01,1.500000E+01,Active Shallow Crust,2.400020E+02,5.801236E+01,0.000000E+00 +1339704,fr,1,3.750000E+00,4.690930E+00,4.205121E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998811E+01,0.000000E+00 +1339707,fr,1,3.750000E+00,4.690930E+00,4.205121E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801722E+01,0.000000E+00 +1339896,fr,1,5.350000E+00,4.690930E+00,4.205121E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +1340160,fr,2,3.550000E+00,2.112340E+00,4.207096E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998877E+01,0.000000E+00 +1340164,fr,2,3.550000E+00,2.112340E+00,4.207096E+01,1.500000E+01,Active Shallow Crust,2.400125E+02,5.799759E+01,0.000000E+00 +1340172,fr,2,3.650000E+00,2.112340E+00,4.207096E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1340184,fr,1,3.750000E+00,2.112340E+00,4.207096E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999108E+01,0.000000E+00 +1340191,fr,1,3.750000E+00,2.112340E+00,4.207096E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999097E+01,-9.000000E+01 +1340216,fr,1,3.950000E+00,2.112340E+00,4.207096E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999045E+01,-9.000000E+01 +1340233,fr,1,4.150000E+00,2.112340E+00,4.207096E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1340244,fr,1,4.250000E+00,2.112340E+00,4.207096E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1340257,fr,1,4.350000E+00,2.112340E+00,4.207096E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +1340647,fr,2,3.550000E+00,5.591430E+00,4.845404E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999323E+01,-9.000000E+01 +1340663,fr,1,3.650000E+00,5.591430E+00,4.845404E+01,2.750000E+01,Active Shallow Crust,1.289010E+02,8.996296E+01,0.000000E+00 +1340676,fr,1,3.850000E+00,5.591430E+00,4.845404E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +1340703,fr,1,4.050000E+00,5.591430E+00,4.845404E+01,5.000000E+00,Active Shallow Crust,2.400064E+02,5.800575E+01,0.000000E+00 +1341120,fr,4,3.550000E+00,8.101360E+00,4.850097E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998663E+01,0.000000E+00 +1341127,fr,1,3.550000E+00,8.101360E+00,4.850097E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998648E+01,-9.000000E+01 +1341130,fr,1,3.550000E+00,8.101360E+00,4.850097E+01,1.500000E+01,Active Shallow Crust,1.288953E+02,9.000000E+01,0.000000E+00 +1341132,fr,2,3.650000E+00,8.101360E+00,4.850097E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998809E+01,0.000000E+00 +1341133,fr,1,3.650000E+00,8.101360E+00,4.850097E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998809E+01,0.000000E+00 +1341135,fr,1,3.650000E+00,8.101360E+00,4.850097E+01,5.000000E+00,Active Shallow Crust,2.400024E+02,5.801357E+01,0.000000E+00 +1341139,fr,1,3.650000E+00,8.101360E+00,4.850097E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998795E+01,-9.000000E+01 +1341144,fr,1,3.750000E+00,8.101360E+00,4.850097E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +1341145,fr,1,3.750000E+00,8.101360E+00,4.850097E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +1341146,fr,1,3.750000E+00,8.101360E+00,4.850097E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +1341156,fr,2,3.850000E+00,8.101360E+00,4.850097E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +1341169,fr,2,3.950000E+00,8.101360E+00,4.850097E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999157E+01,0.000000E+00 +1341180,fr,1,4.050000E+00,8.101360E+00,4.850097E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999249E+01,0.000000E+00 +1341206,fr,1,4.250000E+00,8.101360E+00,4.850097E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998806E+01,0.000000E+00 +1341216,fr,1,4.350000E+00,8.101360E+00,4.850097E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +1341217,fr,1,4.350000E+00,8.101360E+00,4.850097E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +1341609,fr,1,3.550000E+00,-3.640280E+00,4.719423E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999315E+01,0.000000E+00 +1342080,fr,1,3.550000E+00,6.724800E-01,4.173261E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1342083,fr,1,3.550000E+00,6.724800E-01,4.173261E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799809E+01,0.000000E+00 +1342092,fr,1,3.650000E+00,6.724800E-01,4.173261E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1342094,fr,1,3.650000E+00,6.724800E-01,4.173261E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1342102,fr,1,3.650000E+00,6.724800E-01,4.173261E+01,1.500000E+01,Active Shallow Crust,1.289008E+02,8.996351E+01,0.000000E+00 +1342117,fr,1,3.850000E+00,6.724800E-01,4.173261E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1342140,fr,2,4.050000E+00,6.724800E-01,4.173261E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1342152,fr,1,4.150000E+00,6.724800E-01,4.173261E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1342206,fr,1,4.550000E+00,6.724800E-01,4.173261E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +1343040,fr,2,3.550000E+00,-6.639300E-01,4.892610E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1343052,fr,1,3.650000E+00,-6.639300E-01,4.892610E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +1343053,fr,1,3.650000E+00,-6.639300E-01,4.892610E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +1343055,fr,1,3.650000E+00,-6.639300E-01,4.892610E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801295E+01,0.000000E+00 +1343064,fr,1,3.750000E+00,-6.639300E-01,4.892610E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1343067,fr,1,3.750000E+00,-6.639300E-01,4.892610E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801760E+01,0.000000E+00 +1343073,fr,1,3.750000E+00,-6.639300E-01,4.892610E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.996736E+01,0.000000E+00 +1343089,fr,1,3.950000E+00,-6.639300E-01,4.892610E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1343090,fr,1,3.950000E+00,-6.639300E-01,4.892610E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1343094,fr,1,3.950000E+00,-6.639300E-01,4.892610E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +1343101,fr,1,4.050000E+00,-6.639300E-01,4.892610E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1343112,fr,2,4.150000E+00,-6.639300E-01,4.892610E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1343154,fr,1,4.450000E+00,-6.639300E-01,4.892610E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,-9.000000E+01 +1343175,fr,1,4.650000E+00,-6.639300E-01,4.892610E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799440E+01,0.000000E+00 +1343184,fr,1,4.750000E+00,-6.639300E-01,4.892610E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1343520,fr,1,3.550000E+00,-5.307570E+00,4.893542E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998675E+01,0.000000E+00 +1343532,fr,1,3.650000E+00,-5.307570E+00,4.893542E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998819E+01,0.000000E+00 +1343569,fr,1,3.950000E+00,-5.307570E+00,4.893542E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999164E+01,0.000000E+00 +1343580,fr,1,4.050000E+00,-5.307570E+00,4.893542E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +1343586,fr,1,4.050000E+00,-5.307570E+00,4.893542E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,-9.000000E+01 +1343622,fr,1,4.350000E+00,-5.307570E+00,4.893542E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,-9.000000E+01 +1343712,fr,1,5.150000E+00,-5.307570E+00,4.893542E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +1344084,fr,1,4.250000E+00,5.551400E-01,4.335892E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1344494,fr,1,3.650000E+00,-1.055470E+00,4.782914E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +1344504,fr,1,3.750000E+00,-1.055470E+00,4.782914E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +1344505,fr,1,3.750000E+00,-1.055470E+00,4.782914E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +1344507,fr,1,3.750000E+00,-1.055470E+00,4.782914E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.801747E+01,0.000000E+00 +1344513,fr,1,3.750000E+00,-1.055470E+00,4.782914E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996739E+01,0.000000E+00 +1344528,fr,1,3.950000E+00,-1.055470E+00,4.782914E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1344541,fr,1,4.050000E+00,-1.055470E+00,4.782914E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +1344542,fr,1,4.050000E+00,-1.055470E+00,4.782914E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +1344570,fr,1,4.250000E+00,-1.055470E+00,4.782914E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +1344577,fr,1,4.350000E+00,-1.055470E+00,4.782914E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1344579,fr,1,4.350000E+00,-1.055470E+00,4.782914E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799602E+01,0.000000E+00 +1344589,fr,1,4.450000E+00,-1.055470E+00,4.782914E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1344591,fr,1,4.450000E+00,-1.055470E+00,4.782914E+01,5.000000E+00,Active Shallow Crust,2.400056E+02,5.799479E+01,0.000000E+00 +1344961,fr,1,3.550000E+00,2.893240E+00,5.193907E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +1344972,fr,1,3.650000E+00,2.893240E+00,5.193907E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998892E+01,0.000000E+00 +1344975,fr,1,3.650000E+00,2.893240E+00,5.193907E+01,5.000000E+00,Active Shallow Crust,2.400016E+02,5.801333E+01,0.000000E+00 +1344984,fr,1,3.750000E+00,2.893240E+00,5.193907E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1345009,fr,1,3.950000E+00,2.893240E+00,5.193907E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1345453,fr,1,3.650000E+00,7.832300E-01,4.527516E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1345456,fr,1,3.650000E+00,7.832300E-01,4.527516E+01,1.500000E+01,Active Shallow Crust,2.400009E+02,5.801292E+01,0.000000E+00 +1345573,fr,1,4.650000E+00,7.832300E-01,4.527516E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1345920,fr,1,3.550000E+00,2.905360E+00,4.392531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +1345923,fr,1,3.550000E+00,2.905360E+00,4.392531E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799807E+01,0.000000E+00 +1345926,fr,1,3.550000E+00,2.905360E+00,4.392531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,-9.000000E+01 +1345932,fr,2,3.650000E+00,2.905360E+00,4.392531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +1345944,fr,2,3.750000E+00,2.905360E+00,4.392531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999135E+01,0.000000E+00 +1345968,fr,1,3.950000E+00,2.905360E+00,4.392531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +1346010,fr,1,4.250000E+00,2.905360E+00,4.392531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,-9.000000E+01 +1346018,fr,1,4.350000E+00,2.905360E+00,4.392531E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1346028,fr,1,4.450000E+00,2.905360E+00,4.392531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1346064,fr,1,4.750000E+00,2.905360E+00,4.392531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1346881,fr,1,3.550000E+00,7.066030E+00,4.851094E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999332E+01,0.000000E+00 +1346886,fr,1,3.550000E+00,7.066030E+00,4.851094E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999324E+01,-9.000000E+01 +1346893,fr,1,3.650000E+00,7.066030E+00,4.851094E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998809E+01,0.000000E+00 +1346918,fr,1,3.850000E+00,7.066030E+00,4.851094E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +1346928,fr,1,3.950000E+00,7.066030E+00,4.851094E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999157E+01,0.000000E+00 +1346940,fr,1,4.050000E+00,7.066030E+00,4.851094E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998873E+01,0.000000E+00 +1347090,fr,1,5.250000E+00,7.066030E+00,4.851094E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999045E+01,-9.000000E+01 +1347384,fr,1,3.750000E+00,3.991800E-01,4.859373E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1347424,fr,1,4.050000E+00,3.991800E-01,4.859373E+01,1.500000E+01,Active Shallow Crust,2.400063E+02,5.800586E+01,0.000000E+00 +1347441,fr,1,4.150000E+00,3.991800E-01,4.859373E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.999374E+01,0.000000E+00 +1347841,fr,1,3.550000E+00,4.003550E+00,5.133769E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998740E+01,0.000000E+00 +1347843,fr,1,3.550000E+00,4.003550E+00,5.133769E+01,5.000000E+00,Active Shallow Crust,2.400135E+02,5.799766E+01,0.000000E+00 +1347864,fr,1,3.750000E+00,4.003550E+00,5.133769E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1347865,fr,1,3.750000E+00,4.003550E+00,5.133769E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1347866,fr,1,3.750000E+00,4.003550E+00,5.133769E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1347879,fr,1,3.850000E+00,4.003550E+00,5.133769E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799759E+01,0.000000E+00 +1347888,fr,1,3.950000E+00,4.003550E+00,5.133769E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +1348325,fr,1,3.550000E+00,7.502170E+00,4.944407E+01,2.750000E+01,Active Shallow Crust,2.400132E+02,5.799791E+01,0.000000E+00 +1348329,fr,1,3.550000E+00,7.502170E+00,4.944407E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.999672E+01,0.000000E+00 +1348332,fr,1,3.650000E+00,7.502170E+00,4.944407E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998831E+01,0.000000E+00 +1348335,fr,1,3.650000E+00,7.502170E+00,4.944407E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801278E+01,0.000000E+00 +1348359,fr,1,3.850000E+00,7.502170E+00,4.944407E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799699E+01,0.000000E+00 +1348404,fr,1,4.250000E+00,7.502170E+00,4.944407E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999121E+01,0.000000E+00 +1348800,fr,1,3.550000E+00,-3.829640E+00,4.975403E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1348849,fr,1,3.950000E+00,-3.829640E+00,4.975403E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1349280,fr,1,3.550000E+00,4.445350E+00,4.228649E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999254E+01,0.000000E+00 +1349292,fr,1,3.650000E+00,4.445350E+00,4.228649E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998670E+01,0.000000E+00 +1349293,fr,1,3.650000E+00,4.445350E+00,4.228649E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998670E+01,0.000000E+00 +1349443,fr,1,4.850000E+00,4.445350E+00,4.228649E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,-9.000000E+01 +1349772,fr,1,3.650000E+00,-5.100000E-03,4.750257E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1349773,fr,1,3.650000E+00,-5.100000E-03,4.750257E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1349784,fr,1,3.750000E+00,-5.100000E-03,4.750257E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +1349796,fr,2,3.850000E+00,-5.100000E-03,4.750257E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +1349800,fr,1,3.850000E+00,-5.100000E-03,4.750257E+01,1.500000E+01,Active Shallow Crust,2.400110E+02,5.799783E+01,0.000000E+00 +1349816,fr,1,3.950000E+00,-5.100000E-03,4.750257E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +1349832,fr,1,4.150000E+00,-5.100000E-03,4.750257E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +1349844,fr,2,4.250000E+00,-5.100000E-03,4.750257E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +1349892,fr,1,4.650000E+00,-5.100000E-03,4.750257E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +1350240,fr,1,3.550000E+00,-3.318830E+00,4.363803E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998905E+01,0.000000E+00 +1350281,fr,1,3.850000E+00,-3.318830E+00,4.363803E+01,2.750000E+01,Active Shallow Crust,2.400101E+02,5.799791E+01,0.000000E+00 +1350313,fr,1,4.150000E+00,-3.318830E+00,4.363803E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999085E+01,0.000000E+00 +1350382,fr,1,4.650000E+00,-3.318830E+00,4.363803E+01,1.500000E+01,Active Shallow Crust,1.288918E+02,8.998707E+01,0.000000E+00 +1350393,fr,1,4.750000E+00,-3.318830E+00,4.363803E+01,5.000000E+00,Active Shallow Crust,1.288893E+02,8.998801E+01,0.000000E+00 +1350724,fr,1,3.550000E+00,-3.176070E+00,4.267920E+01,1.500000E+01,Active Shallow Crust,2.400116E+02,5.799835E+01,0.000000E+00 +1350732,fr,1,3.650000E+00,-3.176070E+00,4.267920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1350750,fr,1,3.750000E+00,-3.176070E+00,4.267920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,-9.000000E+01 +1350756,fr,1,3.850000E+00,-3.176070E+00,4.267920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +1350771,fr,1,3.950000E+00,-3.176070E+00,4.267920E+01,5.000000E+00,Active Shallow Crust,2.400192E+02,5.800489E+01,0.000000E+00 +1350780,fr,1,4.050000E+00,-3.176070E+00,4.267920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +1350792,fr,1,4.150000E+00,-3.176070E+00,4.267920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999071E+01,0.000000E+00 +1350801,fr,1,4.150000E+00,-3.176070E+00,4.267920E+01,5.000000E+00,Active Shallow Crust,1.288978E+02,8.999443E+01,0.000000E+00 +1350843,fr,1,4.550000E+00,-3.176070E+00,4.267920E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799711E+01,0.000000E+00 +1351200,fr,4,3.550000E+00,7.948940E+00,4.458870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999282E+01,0.000000E+00 +1351212,fr,2,3.650000E+00,7.948940E+00,4.458870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998720E+01,0.000000E+00 +1351216,fr,1,3.650000E+00,7.948940E+00,4.458870E+01,1.500000E+01,Active Shallow Crust,2.400015E+02,5.801252E+01,0.000000E+00 +1351224,fr,1,3.750000E+00,7.948940E+00,4.458870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +1351225,fr,1,3.750000E+00,7.948940E+00,4.458870E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +1351226,fr,1,3.750000E+00,7.948940E+00,4.458870E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +1351227,fr,1,3.750000E+00,7.948940E+00,4.458870E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.801818E+01,0.000000E+00 +1351237,fr,1,3.850000E+00,7.948940E+00,4.458870E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1351240,fr,1,3.850000E+00,7.948940E+00,4.458870E+01,1.500000E+01,Active Shallow Crust,2.400115E+02,5.799770E+01,0.000000E+00 +1351249,fr,1,3.950000E+00,7.948940E+00,4.458870E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +1351260,fr,1,4.050000E+00,7.948940E+00,4.458870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999192E+01,0.000000E+00 +1351263,fr,1,4.050000E+00,7.948940E+00,4.458870E+01,5.000000E+00,Active Shallow Crust,2.400062E+02,5.800586E+01,0.000000E+00 +1351266,fr,1,4.050000E+00,7.948940E+00,4.458870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999183E+01,-9.000000E+01 +1351272,fr,1,4.150000E+00,7.948940E+00,4.458870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1351287,fr,1,4.250000E+00,7.948940E+00,4.458870E+01,5.000000E+00,Active Shallow Crust,2.400070E+02,5.799369E+01,0.000000E+00 +1351296,fr,2,4.350000E+00,7.948940E+00,4.458870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +1351518,fr,1,6.150000E+00,7.948942E+00,4.458870E+01,5.942511E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +1351704,fr,1,3.750000E+00,2.428980E+00,4.921741E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +1351740,fr,1,4.050000E+00,2.428980E+00,4.921741E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +1352160,fr,1,3.550000E+00,5.106160E+00,5.112650E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998734E+01,0.000000E+00 +1352161,fr,2,3.550000E+00,5.106160E+00,5.112650E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998734E+01,0.000000E+00 +1352162,fr,1,3.550000E+00,5.106160E+00,5.112650E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998734E+01,0.000000E+00 +1352172,fr,1,3.650000E+00,5.106160E+00,5.112650E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +1352184,fr,1,3.750000E+00,5.106160E+00,5.112650E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1352193,fr,1,3.750000E+00,5.106160E+00,5.112650E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.996757E+01,0.000000E+00 +1352203,fr,1,3.850000E+00,5.106160E+00,5.112650E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999094E+01,-9.000000E+01 +1352208,fr,1,3.950000E+00,5.106160E+00,5.112650E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998802E+01,0.000000E+00 +1352209,fr,1,3.950000E+00,5.106160E+00,5.112650E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998802E+01,0.000000E+00 +1352210,fr,1,3.950000E+00,5.106160E+00,5.112650E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998802E+01,0.000000E+00 +1352244,fr,1,4.250000E+00,5.106160E+00,5.112650E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +1352259,fr,1,4.350000E+00,5.106160E+00,5.112650E+01,5.000000E+00,Active Shallow Crust,2.400098E+02,5.799599E+01,0.000000E+00 +1352260,fr,1,4.350000E+00,5.106160E+00,5.112650E+01,1.500000E+01,Active Shallow Crust,2.400098E+02,5.799599E+01,0.000000E+00 +1352292,fr,1,4.650000E+00,5.106160E+00,5.112650E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +1352641,fr,1,3.550000E+00,1.789370E+00,4.321714E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +1352670,fr,1,3.750000E+00,1.789370E+00,4.321714E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,-9.000000E+01 +1352761,fr,1,4.550000E+00,1.789370E+00,4.321714E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1352797,fr,1,4.850000E+00,1.789370E+00,4.321714E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1352930,fr,1,5.950000E+00,1.789370E+00,4.321714E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1353120,fr,1,3.550000E+00,6.459990E+00,4.728893E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999316E+01,0.000000E+00 +1353121,fr,2,3.550000E+00,6.459990E+00,4.728893E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999316E+01,0.000000E+00 +1353123,fr,1,3.550000E+00,6.459990E+00,4.728893E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799809E+01,0.000000E+00 +1353129,fr,1,3.550000E+00,6.459990E+00,4.728893E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999316E+01,0.000000E+00 +1353132,fr,1,3.650000E+00,6.459990E+00,4.728893E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998781E+01,0.000000E+00 +1353133,fr,2,3.650000E+00,6.459990E+00,4.728893E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998781E+01,0.000000E+00 +1353134,fr,1,3.650000E+00,6.459990E+00,4.728893E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998781E+01,0.000000E+00 +1353141,fr,1,3.650000E+00,6.459990E+00,4.728893E+01,5.000000E+00,Active Shallow Crust,1.288999E+02,8.996354E+01,0.000000E+00 +1353145,fr,2,3.750000E+00,6.459990E+00,4.728893E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +1353156,fr,2,3.850000E+00,6.459990E+00,4.728893E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +1353168,fr,1,3.950000E+00,6.459990E+00,4.728893E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999137E+01,0.000000E+00 +1353179,fr,1,3.950000E+00,6.459990E+00,4.728893E+01,2.750000E+01,Active Shallow Crust,1.289004E+02,8.999353E+01,0.000000E+00 +1353180,fr,1,4.050000E+00,6.459990E+00,4.728893E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998846E+01,0.000000E+00 +1353190,fr,1,4.050000E+00,6.459990E+00,4.728893E+01,1.500000E+01,Active Shallow Crust,1.288911E+02,8.999231E+01,0.000000E+00 +1353192,fr,1,4.150000E+00,6.459990E+00,4.728893E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1353199,fr,1,4.150000E+00,6.459990E+00,4.728893E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +1353204,fr,1,4.250000E+00,6.459990E+00,4.728893E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +1353228,fr,1,4.450000E+00,6.459990E+00,4.728893E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +1353252,fr,1,4.650000E+00,6.459990E+00,4.728893E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1353264,fr,1,4.750000E+00,6.459990E+00,4.728893E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1353266,fr,1,4.750000E+00,6.459990E+00,4.728893E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1353277,fr,1,4.850000E+00,6.459990E+00,4.728893E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998928E+01,0.000000E+00 +1353288,fr,1,4.950000E+00,6.459990E+00,4.728893E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +1353297,fr,1,4.950000E+00,6.459990E+00,4.728893E+01,5.000000E+00,Active Shallow Crust,1.288895E+02,8.998988E+01,0.000000E+00 +1353375,fr,1,5.650000E+00,6.459990E+00,4.728893E+01,5.000000E+00,Active Shallow Crust,2.400380E+02,5.799950E+01,0.000000E+00 +1353456,fr,1,6.350000E+00,6.459996E+00,4.728893E+01,7.567806E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1353492,fr,1,6.650000E+00,6.460003E+00,4.728893E+01,1.068981E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1353605,fr,1,3.550000E+00,4.185240E+00,4.385142E+01,2.750000E+01,Active Shallow Crust,2.400130E+02,5.799692E+01,0.000000E+00 +1353612,fr,3,3.650000E+00,4.185240E+00,4.385142E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998704E+01,0.000000E+00 +1353621,fr,2,3.650000E+00,4.185240E+00,4.385142E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.996347E+01,0.000000E+00 +1353636,fr,1,3.850000E+00,4.185240E+00,4.385142E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1353638,fr,1,3.850000E+00,4.185240E+00,4.385142E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1353640,fr,1,3.850000E+00,4.185240E+00,4.385142E+01,1.500000E+01,Active Shallow Crust,2.400100E+02,5.799734E+01,0.000000E+00 +1353661,fr,1,4.050000E+00,4.185240E+00,4.385142E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999182E+01,0.000000E+00 +1353753,fr,1,4.750000E+00,4.185240E+00,4.385142E+01,5.000000E+00,Active Shallow Crust,1.288894E+02,8.998802E+01,0.000000E+00 +1354560,fr,1,3.550000E+00,-1.754990E+00,4.884933E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1354566,fr,1,3.550000E+00,-1.754990E+00,4.884933E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,-9.000000E+01 +1354567,fr,1,3.550000E+00,-1.754990E+00,4.884933E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,-9.000000E+01 +1354574,fr,1,3.650000E+00,-1.754990E+00,4.884933E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1354584,fr,2,3.750000E+00,-1.754990E+00,4.884933E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1354588,fr,1,3.750000E+00,-1.754990E+00,4.884933E+01,1.500000E+01,Active Shallow Crust,2.400088E+02,5.801763E+01,0.000000E+00 +1354596,fr,2,3.850000E+00,-1.754990E+00,4.884933E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1354597,fr,1,3.850000E+00,-1.754990E+00,4.884933E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1354608,fr,1,3.950000E+00,-1.754990E+00,4.884933E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +1354620,fr,2,4.050000E+00,-1.754990E+00,4.884933E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +1354641,fr,1,4.150000E+00,-1.754990E+00,4.884933E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.999377E+01,0.000000E+00 +1354644,fr,1,4.250000E+00,-1.754990E+00,4.884933E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1354656,fr,1,4.350000E+00,-1.754990E+00,4.884933E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1354669,fr,1,4.450000E+00,-1.754990E+00,4.884933E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1354681,fr,1,4.550000E+00,-1.754990E+00,4.884933E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1354691,fr,1,4.550000E+00,-1.754990E+00,4.884933E+01,2.750000E+01,Active Shallow Crust,1.288933E+02,8.998578E+01,0.000000E+00 +1354716,fr,1,4.850000E+00,-1.754990E+00,4.884933E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1354728,fr,1,4.950000E+00,-1.754990E+00,4.884933E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1354729,fr,1,4.950000E+00,-1.754990E+00,4.884933E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1355067,fr,1,3.750000E+00,-5.688070E+00,4.903154E+01,5.000000E+00,Active Shallow Crust,2.400096E+02,5.801687E+01,0.000000E+00 +1355593,fr,1,4.150000E+00,4.660940E+00,4.858058E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1355640,fr,1,4.550000E+00,4.660940E+00,4.858058E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +1356047,fr,1,3.850000E+00,1.638620E+00,4.399175E+01,2.750000E+01,Active Shallow Crust,1.288958E+02,8.999358E+01,0.000000E+00 +1356105,fr,1,4.350000E+00,1.638620E+00,4.399175E+01,5.000000E+00,Active Shallow Crust,1.288982E+02,8.998268E+01,0.000000E+00 +1356480,fr,1,3.550000E+00,3.268440E+00,4.424497E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +1356531,fr,1,3.950000E+00,3.268440E+00,4.424497E+01,5.000000E+00,Active Shallow Crust,2.400192E+02,5.800473E+01,0.000000E+00 +1356543,fr,1,4.050000E+00,3.268440E+00,4.424497E+01,5.000000E+00,Active Shallow Crust,2.400057E+02,5.800581E+01,0.000000E+00 +1356625,fr,1,4.750000E+00,3.268440E+00,4.424497E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1357447,fr,1,3.550000E+00,4.756170E+00,4.680822E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999302E+01,-9.000000E+01 +1357452,fr,1,3.650000E+00,4.756170E+00,4.680822E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998769E+01,0.000000E+00 +1357453,fr,1,3.650000E+00,4.756170E+00,4.680822E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998769E+01,0.000000E+00 +1357456,fr,1,3.650000E+00,4.756170E+00,4.680822E+01,1.500000E+01,Active Shallow Crust,2.400017E+02,5.801272E+01,0.000000E+00 +1357464,fr,1,3.750000E+00,4.756170E+00,4.680822E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +1357467,fr,2,3.750000E+00,4.756170E+00,4.680822E+01,5.000000E+00,Active Shallow Crust,2.400096E+02,5.801652E+01,0.000000E+00 +1357476,fr,1,3.850000E+00,4.756170E+00,4.680822E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1357480,fr,1,3.850000E+00,4.756170E+00,4.680822E+01,1.500000E+01,Active Shallow Crust,2.400110E+02,5.799760E+01,0.000000E+00 +1357481,fr,1,3.850000E+00,4.756170E+00,4.680822E+01,2.750000E+01,Active Shallow Crust,2.400110E+02,5.799760E+01,0.000000E+00 +1357504,fr,1,4.050000E+00,4.756170E+00,4.680822E+01,1.500000E+01,Active Shallow Crust,2.400063E+02,5.800545E+01,0.000000E+00 +1357521,fr,1,4.150000E+00,4.756170E+00,4.680822E+01,5.000000E+00,Active Shallow Crust,1.288979E+02,8.999308E+01,0.000000E+00 +1357524,fr,1,4.250000E+00,4.756170E+00,4.680822E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +1357536,fr,1,4.350000E+00,4.756170E+00,4.680822E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +1357619,fr,1,4.950000E+00,4.756170E+00,4.680822E+01,2.750000E+01,Active Shallow Crust,1.288895E+02,8.998985E+01,0.000000E+00 +1357920,fr,3,3.550000E+00,-3.215180E+00,4.805308E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1357925,fr,1,3.550000E+00,-3.215180E+00,4.805308E+01,2.750000E+01,Active Shallow Crust,2.400118E+02,5.799797E+01,0.000000E+00 +1357932,fr,1,3.650000E+00,-3.215180E+00,4.805308E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999099E+01,0.000000E+00 +1357933,fr,2,3.650000E+00,-3.215180E+00,4.805308E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999099E+01,0.000000E+00 +1357936,fr,1,3.650000E+00,-3.215180E+00,4.805308E+01,1.500000E+01,Active Shallow Crust,2.400008E+02,5.801293E+01,0.000000E+00 +1357942,fr,1,3.650000E+00,-3.215180E+00,4.805308E+01,1.500000E+01,Active Shallow Crust,1.289004E+02,8.996355E+01,0.000000E+00 +1357944,fr,1,3.750000E+00,-3.215180E+00,4.805308E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +1357946,fr,1,3.750000E+00,-3.215180E+00,4.805308E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +1357948,fr,1,3.750000E+00,-3.215180E+00,4.805308E+01,1.500000E+01,Active Shallow Crust,2.400086E+02,5.801777E+01,0.000000E+00 +1357953,fr,1,3.750000E+00,-3.215180E+00,4.805308E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.996727E+01,0.000000E+00 +1357957,fr,3,3.850000E+00,-3.215180E+00,4.805308E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1357968,fr,1,3.950000E+00,-3.215180E+00,4.805308E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +1357969,fr,1,3.950000E+00,-3.215180E+00,4.805308E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +1357980,fr,1,4.050000E+00,-3.215180E+00,4.805308E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +1358016,fr,1,4.350000E+00,-3.215180E+00,4.805308E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999061E+01,0.000000E+00 +1358052,fr,1,4.650000E+00,-3.215180E+00,4.805308E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +1358066,fr,1,4.750000E+00,-3.215180E+00,4.805308E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +1358424,fr,1,3.750000E+00,-7.273900E-01,5.142527E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1358425,fr,1,3.750000E+00,-7.273900E-01,5.142527E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1358880,fr,2,3.550000E+00,6.618480E+00,5.058390E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998720E+01,0.000000E+00 +1358890,fr,1,3.550000E+00,6.618480E+00,5.058390E+01,1.500000E+01,Active Shallow Crust,1.288960E+02,8.999360E+01,0.000000E+00 +1358892,fr,3,3.650000E+00,6.618480E+00,5.058390E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +1358893,fr,1,3.650000E+00,6.618480E+00,5.058390E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +1358896,fr,1,3.650000E+00,6.618480E+00,5.058390E+01,1.500000E+01,Active Shallow Crust,2.400013E+02,5.801368E+01,0.000000E+00 +1358905,fr,1,3.750000E+00,6.618480E+00,5.058390E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1358916,fr,1,3.850000E+00,6.618480E+00,5.058390E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +1358917,fr,2,3.850000E+00,6.618480E+00,5.058390E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +1358928,fr,1,3.950000E+00,6.618480E+00,5.058390E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999192E+01,0.000000E+00 +1358929,fr,1,3.950000E+00,6.618480E+00,5.058390E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999192E+01,0.000000E+00 +1358940,fr,1,4.050000E+00,6.618480E+00,5.058390E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1358941,fr,1,4.050000E+00,6.618480E+00,5.058390E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1358952,fr,1,4.150000E+00,6.618480E+00,5.058390E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +1358988,fr,1,4.450000E+00,6.618480E+00,5.058390E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +1359000,fr,1,4.550000E+00,6.618480E+00,5.058390E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1359048,fr,1,4.950000E+00,6.618480E+00,5.058390E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1359108,fr,1,5.450000E+00,6.618480E+00,5.058390E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1359360,fr,2,3.550000E+00,2.086640E+00,4.166464E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998870E+01,0.000000E+00 +1359361,fr,2,3.550000E+00,2.086640E+00,4.166464E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998870E+01,0.000000E+00 +1359372,fr,3,3.650000E+00,2.086640E+00,4.166464E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1359375,fr,1,3.650000E+00,2.086640E+00,4.166464E+01,5.000000E+00,Active Shallow Crust,2.400005E+02,5.801318E+01,0.000000E+00 +1359384,fr,2,3.750000E+00,2.086640E+00,4.166464E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999103E+01,0.000000E+00 +1359396,fr,2,3.850000E+00,2.086640E+00,4.166464E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1359397,fr,1,3.850000E+00,2.086640E+00,4.166464E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1359408,fr,1,3.950000E+00,2.086640E+00,4.166464E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1359427,fr,1,4.050000E+00,2.086640E+00,4.166464E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998929E+01,-9.000000E+01 +1359438,fr,1,4.150000E+00,2.086640E+00,4.166464E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999045E+01,-9.000000E+01 +1359441,fr,1,4.150000E+00,2.086640E+00,4.166464E+01,5.000000E+00,Active Shallow Crust,1.288979E+02,8.999434E+01,0.000000E+00 +1359456,fr,2,4.350000E+00,2.086640E+00,4.166464E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +1359504,fr,1,4.750000E+00,2.086640E+00,4.166464E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1359541,fr,1,5.050000E+00,2.086640E+00,4.166464E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1360176,fr,1,6.350000E+00,5.464855E+00,4.174883E+01,7.567806E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1360320,fr,1,3.550000E+00,5.098540E+00,4.210599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999252E+01,0.000000E+00 +1360800,fr,2,3.550000E+00,2.844880E+00,4.312072E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998896E+01,0.000000E+00 +1360815,fr,1,3.650000E+00,2.844880E+00,4.312072E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801339E+01,0.000000E+00 +1360821,fr,1,3.650000E+00,2.844880E+00,4.312072E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.996346E+01,0.000000E+00 +1360836,fr,1,3.850000E+00,2.844880E+00,4.312072E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +1360845,fr,1,3.850000E+00,2.844880E+00,4.312072E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999348E+01,0.000000E+00 +1360872,fr,1,4.150000E+00,2.844880E+00,4.312072E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +1361293,fr,1,3.650000E+00,3.411300E-01,5.030322E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1361305,fr,1,3.750000E+00,3.411300E-01,5.030322E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1361316,fr,1,3.850000E+00,3.411300E-01,5.030322E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1361328,fr,1,3.950000E+00,3.411300E-01,5.030322E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1361341,fr,1,4.050000E+00,3.411300E-01,5.030322E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1361389,fr,1,4.450000E+00,3.411300E-01,5.030322E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1361760,fr,2,3.550000E+00,4.968810E+00,5.061741E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998721E+01,0.000000E+00 +1361781,fr,1,3.650000E+00,4.968810E+00,5.061741E+01,5.000000E+00,Active Shallow Crust,1.288997E+02,8.996360E+01,0.000000E+00 +1361790,fr,1,3.750000E+00,4.968810E+00,5.061741E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,-9.000000E+01 +1361793,fr,2,3.750000E+00,4.968810E+00,5.061741E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.996706E+01,0.000000E+00 +1361795,fr,1,3.750000E+00,4.968810E+00,5.061741E+01,2.750000E+01,Active Shallow Crust,1.288964E+02,8.996706E+01,0.000000E+00 +1361796,fr,2,3.850000E+00,4.968810E+00,5.061741E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +1361798,fr,1,3.850000E+00,4.968810E+00,5.061741E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +1361808,fr,1,3.950000E+00,4.968810E+00,5.061741E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999193E+01,0.000000E+00 +1361809,fr,1,3.950000E+00,4.968810E+00,5.061741E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999193E+01,0.000000E+00 +1361820,fr,1,4.050000E+00,4.968810E+00,5.061741E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1361824,fr,1,4.050000E+00,4.968810E+00,5.061741E+01,1.500000E+01,Active Shallow Crust,2.400063E+02,5.800611E+01,0.000000E+00 +1361835,fr,2,4.150000E+00,4.968810E+00,5.061741E+01,5.000000E+00,Active Shallow Crust,2.400093E+02,5.799728E+01,0.000000E+00 +1361845,fr,1,4.250000E+00,4.968810E+00,5.061741E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +1361880,fr,1,4.550000E+00,4.968810E+00,5.061741E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1361890,fr,1,4.550000E+00,4.968810E+00,5.061741E+01,1.500000E+01,Active Shallow Crust,1.288928E+02,8.998588E+01,0.000000E+00 +1361904,fr,1,4.750000E+00,4.968810E+00,5.061741E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1361964,fr,1,5.250000E+00,4.968810E+00,5.061741E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1362003,fr,1,5.550000E+00,4.968810E+00,5.061741E+01,5.000000E+00,Active Shallow Crust,2.400368E+02,5.800029E+01,0.000000E+00 +1362240,fr,1,3.550000E+00,2.061190E+00,4.125721E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998863E+01,0.000000E+00 +1362241,fr,2,3.550000E+00,2.061190E+00,4.125721E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998863E+01,0.000000E+00 +1362244,fr,1,3.550000E+00,2.061190E+00,4.125721E+01,1.500000E+01,Active Shallow Crust,2.400116E+02,5.799848E+01,0.000000E+00 +1362252,fr,2,3.650000E+00,2.061190E+00,4.125721E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1362254,fr,1,3.650000E+00,2.061190E+00,4.125721E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1362258,fr,1,3.650000E+00,2.061190E+00,4.125721E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,-9.000000E+01 +1362264,fr,1,3.750000E+00,2.061190E+00,4.125721E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +1362265,fr,3,3.750000E+00,2.061190E+00,4.125721E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +1362288,fr,1,3.950000E+00,2.061190E+00,4.125721E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1362297,fr,1,3.950000E+00,2.061190E+00,4.125721E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.999402E+01,0.000000E+00 +1362324,fr,1,4.250000E+00,2.061190E+00,4.125721E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +1362360,fr,1,4.550000E+00,2.061190E+00,4.125721E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +1362385,fr,1,4.750000E+00,2.061190E+00,4.125721E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1362388,fr,1,4.750000E+00,2.061190E+00,4.125721E+01,1.500000E+01,Active Shallow Crust,2.400059E+02,5.800405E+01,0.000000E+00 +1362540,fr,1,6.050000E+00,2.061191E+00,4.125721E+01,5.357596E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1363234,fr,1,3.750000E+00,8.382310E+00,5.066054E+01,1.500000E+01,Active Shallow Crust,1.288966E+02,8.996756E+01,0.000000E+00 +1363245,fr,1,3.850000E+00,8.382310E+00,5.066054E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.999095E+01,0.000000E+00 +1363287,fr,1,4.250000E+00,8.382310E+00,5.066054E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.799459E+01,0.000000E+00 +1363681,fr,2,3.550000E+00,4.396500E-01,4.938893E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1363682,fr,1,3.550000E+00,4.396500E-01,4.938893E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1363686,fr,1,3.550000E+00,4.396500E-01,4.938893E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +1363692,fr,2,3.650000E+00,4.396500E-01,4.938893E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1363698,fr,1,3.650000E+00,4.396500E-01,4.938893E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1363700,fr,1,3.650000E+00,4.396500E-01,4.938893E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1363711,fr,1,3.750000E+00,4.396500E-01,4.938893E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,-9.000000E+01 +1363728,fr,1,3.950000E+00,4.396500E-01,4.938893E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1363741,fr,1,4.050000E+00,4.396500E-01,4.938893E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1363752,fr,2,4.150000E+00,4.396500E-01,4.938893E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1363773,fr,1,4.250000E+00,4.396500E-01,4.938893E+01,5.000000E+00,Active Shallow Crust,1.288938E+02,8.998090E+01,0.000000E+00 +1363779,fr,1,4.350000E+00,4.396500E-01,4.938893E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.799607E+01,0.000000E+00 +1363824,fr,2,4.750000E+00,4.396500E-01,4.938893E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1363872,fr,1,5.150000E+00,4.396500E-01,4.938893E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1364213,fr,1,3.950000E+00,6.273850E+00,5.188587E+01,2.750000E+01,Active Shallow Crust,2.400210E+02,5.800514E+01,0.000000E+00 +1364281,fr,1,4.550000E+00,6.273850E+00,5.188587E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1365120,fr,1,3.550000E+00,3.038800E-01,4.210598E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1365128,fr,1,3.550000E+00,3.038800E-01,4.210598E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +1365132,fr,1,3.650000E+00,3.038800E-01,4.210598E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1365135,fr,1,3.650000E+00,3.038800E-01,4.210598E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801279E+01,0.000000E+00 +1365636,fr,1,3.850000E+00,-2.778140E+00,4.727810E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +1365684,fr,1,4.250000E+00,-2.778140E+00,4.727810E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +1365691,fr,1,4.250000E+00,-2.778140E+00,4.727810E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999072E+01,-9.000000E+01 +1365723,fr,1,4.550000E+00,-2.778140E+00,4.727810E+01,5.000000E+00,Active Shallow Crust,2.400096E+02,5.799752E+01,0.000000E+00 +1365744,fr,1,4.750000E+00,-2.778140E+00,4.727810E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1366080,fr,1,3.550000E+00,5.302600E-01,4.700364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1366083,fr,1,3.550000E+00,5.302600E-01,4.700364E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799826E+01,0.000000E+00 +1366089,fr,1,3.550000E+00,5.302600E-01,4.700364E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999355E+01,0.000000E+00 +1366092,fr,1,3.650000E+00,5.302600E-01,4.700364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1366101,fr,1,3.650000E+00,5.302600E-01,4.700364E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.996353E+01,0.000000E+00 +1366104,fr,1,3.750000E+00,5.302600E-01,4.700364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +1366116,fr,1,3.850000E+00,5.302600E-01,4.700364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1366140,fr,1,4.050000E+00,5.302600E-01,4.700364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1366153,fr,1,4.150000E+00,5.302600E-01,4.700364E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1366159,fr,1,4.150000E+00,5.302600E-01,4.700364E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1366167,fr,1,4.250000E+00,5.302600E-01,4.700364E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.799409E+01,0.000000E+00 +1366296,fr,1,5.350000E+00,5.302600E-01,4.700364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1366428,fr,1,6.450000E+00,5.302681E-01,4.700364E+01,8.491219E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +1366572,fr,1,3.650000E+00,-5.224480E+00,4.688420E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998772E+01,0.000000E+00 +1367040,fr,1,3.550000E+00,6.189150E+00,4.966227E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998695E+01,0.000000E+00 +1367041,fr,1,3.550000E+00,6.189150E+00,4.966227E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998695E+01,0.000000E+00 +1367053,fr,1,3.650000E+00,6.189150E+00,4.966227E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998837E+01,0.000000E+00 +1367070,fr,1,3.750000E+00,6.189150E+00,4.966227E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,-9.000000E+01 +1367076,fr,1,3.850000E+00,6.189150E+00,4.966227E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +1367091,fr,1,3.950000E+00,6.189150E+00,4.966227E+01,5.000000E+00,Active Shallow Crust,2.400202E+02,5.800508E+01,0.000000E+00 +1367124,fr,1,4.250000E+00,6.189150E+00,4.966227E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999125E+01,0.000000E+00 +1367520,fr,4,3.550000E+00,-2.307040E+00,4.250746E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +1367532,fr,2,3.650000E+00,-2.307040E+00,4.250746E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1367534,fr,1,3.650000E+00,-2.307040E+00,4.250746E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1367537,fr,1,3.650000E+00,-2.307040E+00,4.250746E+01,2.750000E+01,Active Shallow Crust,2.400003E+02,5.801307E+01,0.000000E+00 +1367544,fr,1,3.750000E+00,-2.307040E+00,4.250746E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999114E+01,0.000000E+00 +1367556,fr,1,3.850000E+00,-2.307040E+00,4.250746E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +1367600,fr,1,4.150000E+00,-2.307040E+00,4.250746E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999058E+01,-9.000000E+01 +1367616,fr,1,4.350000E+00,-2.307040E+00,4.250746E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +1367617,fr,1,4.350000E+00,-2.307040E+00,4.250746E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +1367640,fr,1,4.550000E+00,-2.307040E+00,4.250746E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +1367641,fr,1,4.550000E+00,-2.307040E+00,4.250746E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +1367652,fr,1,4.650000E+00,-2.307040E+00,4.250746E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1367666,fr,1,4.750000E+00,-2.307040E+00,4.250746E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +1367679,fr,1,4.850000E+00,-2.307040E+00,4.250746E+01,5.000000E+00,Active Shallow Crust,2.400157E+02,5.800206E+01,0.000000E+00 +1368000,fr,1,3.550000E+00,4.831770E+00,5.072152E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998723E+01,0.000000E+00 +1368003,fr,1,3.550000E+00,4.831770E+00,5.072152E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799812E+01,0.000000E+00 +1368021,fr,1,3.650000E+00,4.831770E+00,5.072152E+01,5.000000E+00,Active Shallow Crust,1.289010E+02,8.996305E+01,0.000000E+00 +1368033,fr,1,3.750000E+00,4.831770E+00,5.072152E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.996756E+01,0.000000E+00 +1368036,fr,1,3.850000E+00,4.831770E+00,5.072152E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999096E+01,0.000000E+00 +1368054,fr,1,3.950000E+00,4.831770E+00,5.072152E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999185E+01,-9.000000E+01 +1368096,fr,1,4.350000E+00,4.831770E+00,5.072152E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1368156,fr,1,4.850000E+00,4.831770E+00,5.072152E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1368180,fr,1,5.050000E+00,4.831770E+00,5.072152E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1368270,fr,1,5.750000E+00,4.831770E+00,5.072152E+01,5.000000E+00,Active Shallow Crust,3.599998E+02,8.999025E+01,-9.000000E+01 +1368291,fr,1,5.950000E+00,4.831770E+00,5.072152E+01,5.000000E+00,Active Shallow Crust,2.400579E+02,5.799993E+01,0.000000E+00 +1368564,fr,1,4.250000E+00,-3.004560E+00,4.968918E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1368962,fr,1,3.550000E+00,6.078140E+00,4.826328E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999329E+01,0.000000E+00 +1368972,fr,1,3.650000E+00,6.078140E+00,4.826328E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998804E+01,0.000000E+00 +1368975,fr,1,3.650000E+00,6.078140E+00,4.826328E+01,5.000000E+00,Active Shallow Crust,2.400004E+02,5.801388E+01,0.000000E+00 +1368984,fr,1,3.750000E+00,6.078140E+00,4.826328E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1369002,fr,1,3.850000E+00,6.078140E+00,4.826328E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,-9.000000E+01 +1369045,fr,1,4.250000E+00,6.078140E+00,4.826328E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +1369047,fr,1,4.250000E+00,6.078140E+00,4.826328E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.799405E+01,0.000000E+00 +1369056,fr,1,4.350000E+00,6.078140E+00,4.826328E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +1369440,fr,1,3.550000E+00,-3.067300E-01,5.066312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1369920,fr,1,3.550000E+00,1.766100E-01,4.373319E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1369946,fr,1,3.750000E+00,1.766100E-01,4.373319E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1370053,fr,1,4.650000E+00,1.766100E-01,4.373319E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1370070,fr,1,4.750000E+00,1.766100E-01,4.373319E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +1370404,fr,1,3.550000E+00,-1.508000E-01,4.383940E+01,1.500000E+01,Active Shallow Crust,2.400119E+02,5.799813E+01,0.000000E+00 +1370424,fr,1,3.750000E+00,-1.508000E-01,4.383940E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1370425,fr,1,3.750000E+00,-1.508000E-01,4.383940E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1370881,fr,1,3.550000E+00,1.732600E-01,4.522718E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1370895,fr,1,3.650000E+00,1.732600E-01,4.522718E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801289E+01,0.000000E+00 +1370931,fr,1,3.950000E+00,1.732600E-01,4.522718E+01,5.000000E+00,Active Shallow Crust,2.400196E+02,5.800495E+01,0.000000E+00 +1370951,fr,1,4.050000E+00,1.732600E-01,4.522718E+01,2.750000E+01,Active Shallow Crust,1.288907E+02,8.999370E+01,0.000000E+00 +1371372,fr,1,3.650000E+00,3.474690E+00,4.427610E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +1371396,fr,1,3.850000E+00,3.474690E+00,4.427610E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1371420,fr,1,4.050000E+00,3.474690E+00,4.427610E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1371433,fr,1,4.150000E+00,3.474690E+00,4.427610E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +1371444,fr,1,4.250000E+00,3.474690E+00,4.427610E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1371492,fr,1,4.650000E+00,3.474690E+00,4.427610E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1371504,fr,1,4.750000E+00,3.474690E+00,4.427610E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1371520,fr,1,4.850000E+00,3.474690E+00,4.427610E+01,1.500000E+01,Active Shallow Crust,2.400164E+02,5.800219E+01,0.000000E+00 +1371540,fr,1,5.050000E+00,3.474690E+00,4.427610E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1371552,fr,1,5.150000E+00,3.474690E+00,4.427610E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +1371840,fr,1,3.550000E+00,4.936410E+00,4.113784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999241E+01,0.000000E+00 +1371852,fr,2,3.650000E+00,4.936410E+00,4.113784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999323E+01,0.000000E+00 +1371864,fr,1,3.750000E+00,4.936410E+00,4.113784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998794E+01,0.000000E+00 +1371891,fr,1,3.950000E+00,4.936410E+00,4.113784E+01,5.000000E+00,Active Shallow Crust,2.400193E+02,5.800502E+01,0.000000E+00 +1372320,fr,4,3.550000E+00,8.328470E+00,4.852530E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998664E+01,0.000000E+00 +1372324,fr,1,3.550000E+00,8.328470E+00,4.852530E+01,1.500000E+01,Active Shallow Crust,2.400123E+02,5.799856E+01,0.000000E+00 +1372329,fr,1,3.550000E+00,8.328470E+00,4.852530E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999332E+01,0.000000E+00 +1372332,fr,3,3.650000E+00,8.328470E+00,4.852530E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998810E+01,0.000000E+00 +1372341,fr,1,3.650000E+00,8.328470E+00,4.852530E+01,5.000000E+00,Active Shallow Crust,1.289030E+02,8.996214E+01,0.000000E+00 +1372347,fr,1,3.750000E+00,8.328470E+00,4.852530E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.801685E+01,0.000000E+00 +1372351,fr,1,3.750000E+00,8.328470E+00,4.852530E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,-9.000000E+01 +1372356,fr,1,3.850000E+00,8.328470E+00,4.852530E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +1372368,fr,2,3.950000E+00,8.328470E+00,4.852530E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999157E+01,0.000000E+00 +1372383,fr,2,4.050000E+00,8.328470E+00,4.852530E+01,5.000000E+00,Active Shallow Crust,2.400072E+02,5.800603E+01,0.000000E+00 +1372392,fr,1,4.150000E+00,8.328470E+00,4.852530E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999331E+01,0.000000E+00 +1372393,fr,1,4.150000E+00,8.328470E+00,4.852530E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999331E+01,0.000000E+00 +1372800,fr,1,3.550000E+00,-2.493920E+00,4.662341E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +1372813,fr,1,3.650000E+00,-2.493920E+00,4.662341E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +1372824,fr,1,3.750000E+00,-2.493920E+00,4.662341E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998900E+01,0.000000E+00 +1372869,fr,1,4.050000E+00,-2.493920E+00,4.662341E+01,5.000000E+00,Active Shallow Crust,1.288905E+02,8.999319E+01,0.000000E+00 +1372885,fr,1,4.250000E+00,-2.493920E+00,4.662341E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +1372917,fr,1,4.450000E+00,-2.493920E+00,4.662341E+01,5.000000E+00,Active Shallow Crust,1.288922E+02,8.999386E+01,0.000000E+00 +1373281,fr,1,3.550000E+00,6.917930E+00,4.798466E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999325E+01,0.000000E+00 +1373310,fr,1,3.750000E+00,6.917930E+00,4.798466E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998915E+01,-9.000000E+01 +1373328,fr,2,3.950000E+00,6.917930E+00,4.798466E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999149E+01,0.000000E+00 +1373330,fr,1,3.950000E+00,6.917930E+00,4.798466E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999149E+01,0.000000E+00 +1373331,fr,1,3.950000E+00,6.917930E+00,4.798466E+01,5.000000E+00,Active Shallow Crust,2.400203E+02,5.800531E+01,0.000000E+00 +1373335,fr,1,3.950000E+00,6.917930E+00,4.798466E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999139E+01,-9.000000E+01 +1373341,fr,1,4.050000E+00,6.917930E+00,4.798466E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998861E+01,0.000000E+00 +1373364,fr,1,4.250000E+00,6.917930E+00,4.798466E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999095E+01,0.000000E+00 +1373365,fr,1,4.250000E+00,6.917930E+00,4.798466E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999095E+01,0.000000E+00 +1373377,fr,1,4.350000E+00,6.917930E+00,4.798466E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +1373388,fr,1,4.450000E+00,6.917930E+00,4.798466E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +1373401,fr,1,4.550000E+00,6.917930E+00,4.798466E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1373580,fr,1,6.050000E+00,6.917931E+00,4.798466E+01,5.357596E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1373760,fr,6,3.550000E+00,6.655880E+00,4.820791E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999328E+01,0.000000E+00 +1373762,fr,2,3.550000E+00,6.655880E+00,4.820791E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999328E+01,0.000000E+00 +1373763,fr,2,3.550000E+00,6.655880E+00,4.820791E+01,5.000000E+00,Active Shallow Crust,2.400128E+02,5.799821E+01,0.000000E+00 +1373772,fr,4,3.650000E+00,6.655880E+00,4.820791E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998802E+01,0.000000E+00 +1373773,fr,1,3.650000E+00,6.655880E+00,4.820791E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998802E+01,0.000000E+00 +1373781,fr,1,3.650000E+00,6.655880E+00,4.820791E+01,5.000000E+00,Active Shallow Crust,1.289010E+02,8.996294E+01,0.000000E+00 +1373784,fr,1,3.750000E+00,6.655880E+00,4.820791E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1373796,fr,3,3.850000E+00,6.655880E+00,4.820791E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1373802,fr,1,3.850000E+00,6.655880E+00,4.820791E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,-9.000000E+01 +1373810,fr,1,3.950000E+00,6.655880E+00,4.820791E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999152E+01,0.000000E+00 +1373811,fr,2,3.950000E+00,6.655880E+00,4.820791E+01,5.000000E+00,Active Shallow Crust,2.400200E+02,5.800533E+01,0.000000E+00 +1373820,fr,1,4.050000E+00,6.655880E+00,4.820791E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +1373823,fr,1,4.050000E+00,6.655880E+00,4.820791E+01,5.000000E+00,Active Shallow Crust,2.400064E+02,5.800585E+01,0.000000E+00 +1373829,fr,1,4.050000E+00,6.655880E+00,4.820791E+01,5.000000E+00,Active Shallow Crust,1.288899E+02,8.999433E+01,0.000000E+00 +1373832,fr,1,4.150000E+00,6.655880E+00,4.820791E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1373833,fr,1,4.150000E+00,6.655880E+00,4.820791E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1373868,fr,2,4.450000E+00,6.655880E+00,4.820791E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1373882,fr,1,4.550000E+00,6.655880E+00,4.820791E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +1373905,fr,1,4.750000E+00,6.655880E+00,4.820791E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1373932,fr,1,4.950000E+00,6.655880E+00,4.820791E+01,1.500000E+01,Active Shallow Crust,2.400130E+02,5.800459E+01,0.000000E+00 +1373940,fr,1,5.050000E+00,6.655880E+00,4.820791E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +1374072,fr,1,6.150000E+00,6.655882E+00,4.820791E+01,6.011322E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1374241,fr,1,3.550000E+00,1.114500E+00,4.981621E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +1374249,fr,1,3.550000E+00,1.114500E+00,4.981621E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999349E+01,0.000000E+00 +1374250,fr,1,3.550000E+00,1.114500E+00,4.981621E+01,1.500000E+01,Active Shallow Crust,1.288957E+02,8.999349E+01,0.000000E+00 +1374252,fr,1,3.650000E+00,1.114500E+00,4.981621E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1374253,fr,1,3.650000E+00,1.114500E+00,4.981621E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1374258,fr,1,3.650000E+00,1.114500E+00,4.981621E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,-9.000000E+01 +1374264,fr,1,3.750000E+00,1.114500E+00,4.981621E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +1374306,fr,1,4.050000E+00,1.114500E+00,4.981621E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,-9.000000E+01 +1374312,fr,1,4.150000E+00,1.114500E+00,4.981621E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1374528,fr,1,5.950000E+00,1.114500E+00,4.981621E+01,5.000000E+00,Active Shallow Crust,3.599999E+02,8.999004E+01,0.000000E+00 +1374720,fr,1,3.550000E+00,-3.723080E+00,4.786882E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1374729,fr,1,3.550000E+00,-3.723080E+00,4.786882E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999493E+01,0.000000E+00 +1374732,fr,1,3.650000E+00,-3.723080E+00,4.786882E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999096E+01,0.000000E+00 +1374738,fr,1,3.650000E+00,-3.723080E+00,4.786882E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999085E+01,-9.000000E+01 +1374744,fr,1,3.750000E+00,-3.723080E+00,4.786882E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +1374750,fr,1,3.750000E+00,-3.723080E+00,4.786882E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998913E+01,-9.000000E+01 +1374756,fr,1,3.850000E+00,-3.723080E+00,4.786882E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1374780,fr,2,4.050000E+00,-3.723080E+00,4.786882E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1374789,fr,1,4.050000E+00,-3.723080E+00,4.786882E+01,5.000000E+00,Active Shallow Crust,1.288902E+02,8.999335E+01,0.000000E+00 +1374792,fr,1,4.150000E+00,-3.723080E+00,4.786882E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1374805,fr,1,4.250000E+00,-3.723080E+00,4.786882E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1374816,fr,1,4.350000E+00,-3.723080E+00,4.786882E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +1374840,fr,1,4.550000E+00,-3.723080E+00,4.786882E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +1374901,fr,1,5.050000E+00,-3.723080E+00,4.786882E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1374924,fr,1,5.250000E+00,-3.723080E+00,4.786882E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1375200,fr,1,3.550000E+00,3.813260E+00,4.654402E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1375206,fr,1,3.550000E+00,3.813260E+00,4.654402E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,-9.000000E+01 +1375215,fr,1,3.650000E+00,3.813260E+00,4.654402E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801328E+01,0.000000E+00 +1375224,fr,1,3.750000E+00,3.813260E+00,4.654402E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +1375229,fr,2,3.750000E+00,3.813260E+00,4.654402E+01,2.750000E+01,Active Shallow Crust,2.400085E+02,5.801767E+01,0.000000E+00 +1375249,fr,1,3.950000E+00,3.813260E+00,4.654402E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998906E+01,0.000000E+00 +1375255,fr,1,3.950000E+00,3.813260E+00,4.654402E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998893E+01,-9.000000E+01 +1375681,fr,1,3.550000E+00,7.334330E+00,5.128248E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998739E+01,0.000000E+00 +1375704,fr,1,3.750000E+00,7.334330E+00,5.128248E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1376160,fr,1,3.550000E+00,9.378540E+00,4.939014E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998687E+01,0.000000E+00 +1376184,fr,1,3.750000E+00,9.378540E+00,4.939014E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +1376191,fr,1,3.750000E+00,9.378540E+00,4.939014E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998945E+01,-9.000000E+01 +1376257,fr,1,4.350000E+00,9.378540E+00,4.939014E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +1376377,fr,1,5.350000E+00,9.378540E+00,4.939014E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1376640,fr,4,3.550000E+00,-7.756600E-01,4.295574E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1376641,fr,2,3.550000E+00,-7.756600E-01,4.295574E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1376642,fr,1,3.550000E+00,-7.756600E-01,4.295574E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1376652,fr,4,3.650000E+00,-7.756600E-01,4.295574E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1376655,fr,1,3.650000E+00,-7.756600E-01,4.295574E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801297E+01,0.000000E+00 +1376656,fr,1,3.650000E+00,-7.756600E-01,4.295574E+01,1.500000E+01,Active Shallow Crust,2.400007E+02,5.801297E+01,0.000000E+00 +1376657,fr,1,3.650000E+00,-7.756600E-01,4.295574E+01,2.750000E+01,Active Shallow Crust,2.400007E+02,5.801288E+01,0.000000E+00 +1376661,fr,1,3.650000E+00,-7.756600E-01,4.295574E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996352E+01,0.000000E+00 +1376664,fr,3,3.750000E+00,-7.756600E-01,4.295574E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +1376665,fr,1,3.750000E+00,-7.756600E-01,4.295574E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +1376666,fr,1,3.750000E+00,-7.756600E-01,4.295574E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +1376677,fr,2,3.850000E+00,-7.756600E-01,4.295574E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1376688,fr,1,3.950000E+00,-7.756600E-01,4.295574E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1376694,fr,1,3.950000E+00,-7.756600E-01,4.295574E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +1376696,fr,1,3.950000E+00,-7.756600E-01,4.295574E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +1376698,fr,1,3.950000E+00,-7.756600E-01,4.295574E+01,1.500000E+01,Active Shallow Crust,1.289006E+02,8.999389E+01,0.000000E+00 +1376701,fr,1,4.050000E+00,-7.756600E-01,4.295574E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1376712,fr,3,4.150000E+00,-7.756600E-01,4.295574E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1376718,fr,1,4.150000E+00,-7.756600E-01,4.295574E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,-9.000000E+01 +1376725,fr,1,4.250000E+00,-7.756600E-01,4.295574E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1376745,fr,1,4.350000E+00,-7.756600E-01,4.295574E+01,5.000000E+00,Active Shallow Crust,1.288984E+02,8.998277E+01,0.000000E+00 +1376749,fr,1,4.450000E+00,-7.756600E-01,4.295574E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1376774,fr,1,4.650000E+00,-7.756600E-01,4.295574E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1376784,fr,1,4.750000E+00,-7.756600E-01,4.295574E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1376802,fr,1,4.850000E+00,-7.756600E-01,4.295574E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1376844,fr,1,5.250000E+00,-7.756600E-01,4.295574E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1376882,fr,1,5.550000E+00,-7.756600E-01,4.295574E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1377120,fr,1,3.550000E+00,-2.779900E+00,4.890222E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1377144,fr,1,3.750000E+00,-2.779900E+00,4.890222E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +1377145,fr,1,3.750000E+00,-2.779900E+00,4.890222E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +1377168,fr,1,3.950000E+00,-2.779900E+00,4.890222E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +1377180,fr,1,4.050000E+00,-2.779900E+00,4.890222E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +1377192,fr,1,4.150000E+00,-2.779900E+00,4.890222E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1377601,fr,1,3.550000E+00,3.520940E+00,4.401905E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998912E+01,0.000000E+00 +1377619,fr,1,3.650000E+00,3.520940E+00,4.401905E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,-9.000000E+01 +1377628,fr,1,3.750000E+00,3.520940E+00,4.401905E+01,1.500000E+01,Active Shallow Crust,2.400080E+02,5.801770E+01,0.000000E+00 +1377648,fr,1,3.950000E+00,3.520940E+00,4.401905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999085E+01,0.000000E+00 +1377654,fr,1,3.950000E+00,3.520940E+00,4.401905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,-9.000000E+01 +1377673,fr,1,4.150000E+00,3.520940E+00,4.401905E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +1377696,fr,1,4.350000E+00,3.520940E+00,4.401905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1377735,fr,1,4.650000E+00,3.520940E+00,4.401905E+01,5.000000E+00,Active Shallow Crust,2.400101E+02,5.799412E+01,0.000000E+00 +1378098,fr,1,3.650000E+00,3.733440E+00,4.869866E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,-9.000000E+01 +1378113,fr,1,3.750000E+00,3.733440E+00,4.869866E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996729E+01,0.000000E+00 +1378140,fr,1,4.050000E+00,3.733440E+00,4.869866E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +1378560,fr,1,3.550000E+00,1.994670E+00,4.536061E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +1378563,fr,1,3.550000E+00,1.994670E+00,4.536061E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799805E+01,0.000000E+00 +1378566,fr,1,3.550000E+00,1.994670E+00,4.536061E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998925E+01,-9.000000E+01 +1378572,fr,1,3.650000E+00,1.994670E+00,4.536061E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +1378581,fr,1,3.650000E+00,1.994670E+00,4.536061E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.996350E+01,0.000000E+00 +1378584,fr,1,3.750000E+00,1.994670E+00,4.536061E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1378591,fr,1,3.750000E+00,1.994670E+00,4.536061E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +1378656,fr,1,4.350000E+00,1.994670E+00,4.536061E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1379706,fr,1,5.050000E+00,6.760230E+00,4.298660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998938E+01,-9.000000E+01 +1379881,fr,1,6.550000E+00,6.760230E+00,4.298660E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1380000,fr,1,3.550000E+00,-2.420670E+00,4.717503E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1380001,fr,1,3.550000E+00,-2.420670E+00,4.717503E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1380012,fr,1,3.650000E+00,-2.420670E+00,4.717503E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +1380018,fr,1,3.650000E+00,-2.420670E+00,4.717503E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999073E+01,-9.000000E+01 +1380024,fr,1,3.750000E+00,-2.420670E+00,4.717503E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +1380049,fr,1,3.950000E+00,-2.420670E+00,4.717503E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998919E+01,0.000000E+00 +1380093,fr,1,4.250000E+00,-2.420670E+00,4.717503E+01,5.000000E+00,Active Shallow Crust,1.288938E+02,8.998097E+01,0.000000E+00 +1380111,fr,1,4.450000E+00,-2.420670E+00,4.717503E+01,5.000000E+00,Active Shallow Crust,2.400053E+02,5.799477E+01,0.000000E+00 +1380144,fr,1,4.750000E+00,-2.420670E+00,4.717503E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +1380148,fr,1,4.750000E+00,-2.420670E+00,4.717503E+01,1.500000E+01,Active Shallow Crust,2.400078E+02,5.800440E+01,0.000000E+00 +1380482,fr,1,3.550000E+00,-1.088910E+00,4.929689E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1380483,fr,1,3.550000E+00,-1.088910E+00,4.929689E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.799822E+01,0.000000E+00 +1380488,fr,1,3.550000E+00,-1.088910E+00,4.929689E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +1380492,fr,2,3.650000E+00,-1.088910E+00,4.929689E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1380495,fr,1,3.650000E+00,-1.088910E+00,4.929689E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801305E+01,0.000000E+00 +1380540,fr,1,4.050000E+00,-1.088910E+00,4.929689E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1380552,fr,2,4.150000E+00,-1.088910E+00,4.929689E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1380576,fr,1,4.350000E+00,-1.088910E+00,4.929689E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1380588,fr,1,4.450000E+00,-1.088910E+00,4.929689E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1380612,fr,1,4.650000E+00,-1.088910E+00,4.929689E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1380624,fr,1,4.750000E+00,-1.088910E+00,4.929689E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1380672,fr,1,5.150000E+00,-1.088910E+00,4.929689E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1380804,fr,1,6.250000E+00,-1.088906E+00,4.929689E+01,6.744814E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1380979,fr,1,3.650000E+00,-4.759100E-01,4.202448E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,-9.000000E+01 +1381446,fr,1,3.550000E+00,3.613000E+00,4.108935E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998846E+01,-9.000000E+01 +1381449,fr,1,3.550000E+00,3.613000E+00,4.108935E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.999240E+01,0.000000E+00 +1381452,fr,1,3.650000E+00,3.613000E+00,4.108935E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +1381477,fr,1,3.850000E+00,3.613000E+00,4.108935E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +1381560,fr,1,4.550000E+00,3.613000E+00,4.108935E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1381921,fr,1,3.550000E+00,8.414000E-01,5.252509E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1381929,fr,1,3.550000E+00,8.414000E-01,5.252509E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999348E+01,0.000000E+00 +1381957,fr,1,3.850000E+00,8.414000E-01,5.252509E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1382016,fr,1,4.350000E+00,8.414000E-01,5.252509E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1382052,fr,1,4.650000E+00,8.414000E-01,5.252509E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1382425,fr,1,3.750000E+00,-5.952700E-01,5.090968E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1382544,fr,1,4.750000E+00,-5.952700E-01,5.090968E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1382910,fr,1,3.750000E+00,4.618950E+00,4.819516E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,-9.000000E+01 +1382919,fr,1,3.850000E+00,4.618950E+00,4.819516E+01,5.000000E+00,Active Shallow Crust,2.400115E+02,5.799798E+01,0.000000E+00 +1382954,fr,1,4.150000E+00,4.618950E+00,4.819516E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1383360,fr,3,3.550000E+00,5.058080E+00,4.370697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999271E+01,0.000000E+00 +1383361,fr,3,3.550000E+00,5.058080E+00,4.370697E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999271E+01,0.000000E+00 +1383364,fr,1,3.550000E+00,5.058080E+00,4.370697E+01,1.500000E+01,Active Shallow Crust,2.400110E+02,5.799844E+01,0.000000E+00 +1383366,fr,1,3.550000E+00,5.058080E+00,4.370697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999262E+01,-9.000000E+01 +1383372,fr,2,3.650000E+00,5.058080E+00,4.370697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998701E+01,0.000000E+00 +1383381,fr,1,3.650000E+00,5.058080E+00,4.370697E+01,5.000000E+00,Active Shallow Crust,1.288997E+02,8.996347E+01,0.000000E+00 +1383384,fr,3,3.750000E+00,5.058080E+00,4.370697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998842E+01,0.000000E+00 +1383390,fr,1,3.750000E+00,5.058080E+00,4.370697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998829E+01,-9.000000E+01 +1383393,fr,1,3.750000E+00,5.058080E+00,4.370697E+01,5.000000E+00,Active Shallow Crust,1.288978E+02,8.996680E+01,0.000000E+00 +1383396,fr,2,3.850000E+00,5.058080E+00,4.370697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1383397,fr,3,3.850000E+00,5.058080E+00,4.370697E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1383405,fr,1,3.850000E+00,5.058080E+00,4.370697E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999226E+01,0.000000E+00 +1383406,fr,1,3.850000E+00,5.058080E+00,4.370697E+01,1.500000E+01,Active Shallow Crust,1.288958E+02,8.999226E+01,0.000000E+00 +1383408,fr,1,3.950000E+00,5.058080E+00,4.370697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999080E+01,0.000000E+00 +1383420,fr,1,4.050000E+00,5.058080E+00,4.370697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999180E+01,0.000000E+00 +1383421,fr,1,4.050000E+00,5.058080E+00,4.370697E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999180E+01,0.000000E+00 +1383431,fr,1,4.050000E+00,5.058080E+00,4.370697E+01,2.750000E+01,Active Shallow Crust,1.288917E+02,8.999385E+01,0.000000E+00 +1383432,fr,2,4.150000E+00,5.058080E+00,4.370697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +1383492,fr,1,4.650000E+00,5.058080E+00,4.370697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1383516,fr,1,4.850000E+00,5.058080E+00,4.370697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1383528,fr,1,4.950000E+00,5.058080E+00,4.370697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1383531,fr,1,4.950000E+00,5.058080E+00,4.370697E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.800415E+01,0.000000E+00 +1383540,fr,1,5.050000E+00,5.058080E+00,4.370697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +1383841,fr,1,3.550000E+00,1.358390E+00,5.021844E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +1383852,fr,1,3.650000E+00,1.358390E+00,5.021844E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1383868,fr,1,3.750000E+00,1.358390E+00,5.021844E+01,1.500000E+01,Active Shallow Crust,2.400087E+02,5.801781E+01,0.000000E+00 +1383872,fr,1,3.750000E+00,1.358390E+00,5.021844E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998963E+01,-9.000000E+01 +1383882,fr,1,3.850000E+00,1.358390E+00,5.021844E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,-9.000000E+01 +1383888,fr,1,3.950000E+00,1.358390E+00,5.021844E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1383906,fr,1,4.050000E+00,1.358390E+00,5.021844E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +1383913,fr,1,4.150000E+00,1.358390E+00,5.021844E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1384320,fr,3,3.550000E+00,-5.772000E-01,4.297625E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1384322,fr,4,3.550000E+00,-5.772000E-01,4.297625E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1384323,fr,3,3.550000E+00,-5.772000E-01,4.297625E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799812E+01,0.000000E+00 +1384325,fr,1,3.550000E+00,-5.772000E-01,4.297625E+01,2.750000E+01,Active Shallow Crust,2.400119E+02,5.799802E+01,0.000000E+00 +1384327,fr,1,3.550000E+00,-5.772000E-01,4.297625E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,-9.000000E+01 +1384329,fr,1,3.550000E+00,-5.772000E-01,4.297625E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999400E+01,0.000000E+00 +1384330,fr,1,3.550000E+00,-5.772000E-01,4.297625E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.999400E+01,0.000000E+00 +1384332,fr,5,3.650000E+00,-5.772000E-01,4.297625E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1384333,fr,3,3.650000E+00,-5.772000E-01,4.297625E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1384338,fr,1,3.650000E+00,-5.772000E-01,4.297625E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +1384341,fr,1,3.650000E+00,-5.772000E-01,4.297625E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.996353E+01,0.000000E+00 +1384344,fr,5,3.750000E+00,-5.772000E-01,4.297625E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1384345,fr,2,3.750000E+00,-5.772000E-01,4.297625E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1384347,fr,2,3.750000E+00,-5.772000E-01,4.297625E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801754E+01,0.000000E+00 +1384348,fr,1,3.750000E+00,-5.772000E-01,4.297625E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.801754E+01,0.000000E+00 +1384349,fr,1,3.750000E+00,-5.772000E-01,4.297625E+01,2.750000E+01,Active Shallow Crust,2.400079E+02,5.801754E+01,0.000000E+00 +1384353,fr,1,3.750000E+00,-5.772000E-01,4.297625E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996736E+01,0.000000E+00 +1384356,fr,4,3.850000E+00,-5.772000E-01,4.297625E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1384357,fr,1,3.850000E+00,-5.772000E-01,4.297625E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1384358,fr,1,3.850000E+00,-5.772000E-01,4.297625E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1384359,fr,1,3.850000E+00,-5.772000E-01,4.297625E+01,5.000000E+00,Active Shallow Crust,2.400103E+02,5.799775E+01,0.000000E+00 +1384360,fr,1,3.850000E+00,-5.772000E-01,4.297625E+01,1.500000E+01,Active Shallow Crust,2.400103E+02,5.799775E+01,0.000000E+00 +1384363,fr,1,3.850000E+00,-5.772000E-01,4.297625E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +1384368,fr,1,3.950000E+00,-5.772000E-01,4.297625E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1384372,fr,1,3.950000E+00,-5.772000E-01,4.297625E+01,1.500000E+01,Active Shallow Crust,2.400193E+02,5.800491E+01,0.000000E+00 +1384380,fr,1,4.050000E+00,-5.772000E-01,4.297625E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1384381,fr,1,4.050000E+00,-5.772000E-01,4.297625E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1384392,fr,2,4.150000E+00,-5.772000E-01,4.297625E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1384393,fr,1,4.150000E+00,-5.772000E-01,4.297625E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1384395,fr,1,4.150000E+00,-5.772000E-01,4.297625E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799723E+01,0.000000E+00 +1384400,fr,1,4.150000E+00,-5.772000E-01,4.297625E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,-9.000000E+01 +1384405,fr,1,4.250000E+00,-5.772000E-01,4.297625E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1384417,fr,2,4.350000E+00,-5.772000E-01,4.297625E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1384425,fr,1,4.350000E+00,-5.772000E-01,4.297625E+01,5.000000E+00,Active Shallow Crust,1.288985E+02,8.998277E+01,0.000000E+00 +1384430,fr,1,4.450000E+00,-5.772000E-01,4.297625E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1384433,fr,1,4.450000E+00,-5.772000E-01,4.297625E+01,2.750000E+01,Active Shallow Crust,2.400044E+02,5.799456E+01,0.000000E+00 +1384438,fr,1,4.450000E+00,-5.772000E-01,4.297625E+01,1.500000E+01,Active Shallow Crust,1.288930E+02,8.999362E+01,0.000000E+00 +1384440,fr,2,4.550000E+00,-5.772000E-01,4.297625E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1384441,fr,2,4.550000E+00,-5.772000E-01,4.297625E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1384453,fr,1,4.650000E+00,-5.772000E-01,4.297625E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1384476,fr,1,4.850000E+00,-5.772000E-01,4.297625E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1384485,fr,1,4.850000E+00,-5.772000E-01,4.297625E+01,5.000000E+00,Active Shallow Crust,1.288938E+02,8.998899E+01,0.000000E+00 +1384488,fr,1,4.950000E+00,-5.772000E-01,4.297625E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1384656,fr,1,6.350000E+00,-5.771945E-01,4.297625E+01,7.567806E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1384837,fr,1,3.850000E+00,-8.094600E-01,4.171190E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1385280,fr,1,3.550000E+00,-3.224200E-01,4.272778E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1385284,fr,1,3.550000E+00,-3.224200E-01,4.272778E+01,1.500000E+01,Active Shallow Crust,2.400119E+02,5.799808E+01,0.000000E+00 +1385290,fr,1,3.550000E+00,-3.224200E-01,4.272778E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.999375E+01,0.000000E+00 +1385304,fr,1,3.750000E+00,-3.224200E-01,4.272778E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1385305,fr,1,3.750000E+00,-3.224200E-01,4.272778E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1385313,fr,1,3.750000E+00,-3.224200E-01,4.272778E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.996732E+01,0.000000E+00 +1385328,fr,1,3.950000E+00,-3.224200E-01,4.272778E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1385330,fr,1,3.950000E+00,-3.224200E-01,4.272778E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1385343,fr,1,4.050000E+00,-3.224200E-01,4.272778E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.800571E+01,0.000000E+00 +1385349,fr,1,4.050000E+00,-3.224200E-01,4.272778E+01,5.000000E+00,Active Shallow Crust,1.288910E+02,8.999375E+01,0.000000E+00 +1385353,fr,1,4.150000E+00,-3.224200E-01,4.272778E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1385376,fr,1,4.350000E+00,-3.224200E-01,4.272778E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1385389,fr,1,4.450000E+00,-3.224200E-01,4.272778E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1385414,fr,1,4.650000E+00,-3.224200E-01,4.272778E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1385485,fr,1,5.250000E+00,-3.224200E-01,4.272778E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1385760,fr,7,3.550000E+00,8.654790E+00,4.779384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998645E+01,0.000000E+00 +1385761,fr,2,3.550000E+00,8.654790E+00,4.779384E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998645E+01,0.000000E+00 +1385763,fr,1,3.550000E+00,8.654790E+00,4.779384E+01,5.000000E+00,Active Shallow Crust,2.400128E+02,5.799804E+01,0.000000E+00 +1385766,fr,1,3.550000E+00,8.654790E+00,4.779384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998630E+01,-9.000000E+01 +1385770,fr,1,3.550000E+00,8.654790E+00,4.779384E+01,1.500000E+01,Active Shallow Crust,1.288939E+02,8.999323E+01,0.000000E+00 +1385772,fr,2,3.650000E+00,8.654790E+00,4.779384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998792E+01,0.000000E+00 +1385773,fr,3,3.650000E+00,8.654790E+00,4.779384E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998792E+01,0.000000E+00 +1385775,fr,1,3.650000E+00,8.654790E+00,4.779384E+01,5.000000E+00,Active Shallow Crust,2.400024E+02,5.801131E+01,0.000000E+00 +1385780,fr,1,3.650000E+00,8.654790E+00,4.779384E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998779E+01,-9.000000E+01 +1385783,fr,1,3.650000E+00,8.654790E+00,4.779384E+01,2.750000E+01,Active Shallow Crust,1.289028E+02,8.996355E+01,0.000000E+00 +1385784,fr,5,3.750000E+00,8.654790E+00,4.779384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +1385785,fr,1,3.750000E+00,8.654790E+00,4.779384E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +1385786,fr,1,3.750000E+00,8.654790E+00,4.779384E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +1385787,fr,1,3.750000E+00,8.654790E+00,4.779384E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.801794E+01,0.000000E+00 +1385790,fr,1,3.750000E+00,8.654790E+00,4.779384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,-9.000000E+01 +1385796,fr,4,3.850000E+00,8.654790E+00,4.779384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +1385797,fr,3,3.850000E+00,8.654790E+00,4.779384E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +1385802,fr,1,3.850000E+00,8.654790E+00,4.779384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,-9.000000E+01 +1385808,fr,4,3.950000E+00,8.654790E+00,4.779384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999145E+01,0.000000E+00 +1385810,fr,1,3.950000E+00,8.654790E+00,4.779384E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999145E+01,0.000000E+00 +1385811,fr,1,3.950000E+00,8.654790E+00,4.779384E+01,5.000000E+00,Active Shallow Crust,2.400200E+02,5.800420E+01,0.000000E+00 +1385820,fr,1,4.050000E+00,8.654790E+00,4.779384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999238E+01,0.000000E+00 +1385823,fr,2,4.050000E+00,8.654790E+00,4.779384E+01,5.000000E+00,Active Shallow Crust,2.400072E+02,5.800566E+01,0.000000E+00 +1385824,fr,1,4.050000E+00,8.654790E+00,4.779384E+01,1.500000E+01,Active Shallow Crust,2.400072E+02,5.800563E+01,0.000000E+00 +1385829,fr,1,4.050000E+00,8.654790E+00,4.779384E+01,5.000000E+00,Active Shallow Crust,1.288915E+02,8.999238E+01,0.000000E+00 +1385845,fr,1,4.250000E+00,8.654790E+00,4.779384E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998789E+01,0.000000E+00 +1385853,fr,1,4.250000E+00,8.654790E+00,4.779384E+01,5.000000E+00,Active Shallow Crust,1.288929E+02,8.998100E+01,0.000000E+00 +1385856,fr,1,4.350000E+00,8.654790E+00,4.779384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +1385857,fr,2,4.350000E+00,8.654790E+00,4.779384E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +1385868,fr,1,4.450000E+00,8.654790E+00,4.779384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1385877,fr,1,4.450000E+00,8.654790E+00,4.779384E+01,5.000000E+00,Active Shallow Crust,1.288919E+02,8.999519E+01,0.000000E+00 +1385880,fr,2,4.550000E+00,8.654790E+00,4.779384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999143E+01,0.000000E+00 +1385883,fr,1,4.550000E+00,8.654790E+00,4.779384E+01,5.000000E+00,Active Shallow Crust,2.400092E+02,5.799807E+01,0.000000E+00 +1385892,fr,2,4.650000E+00,8.654790E+00,4.779384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998854E+01,0.000000E+00 +1385903,fr,1,4.650000E+00,8.654790E+00,4.779384E+01,2.750000E+01,Active Shallow Crust,1.288914E+02,8.998631E+01,0.000000E+00 +1385908,fr,1,4.750000E+00,8.654790E+00,4.779384E+01,1.500000E+01,Active Shallow Crust,2.400085E+02,5.800457E+01,0.000000E+00 +1385913,fr,1,4.750000E+00,8.654790E+00,4.779384E+01,5.000000E+00,Active Shallow Crust,1.288876E+02,8.998866E+01,0.000000E+00 +1385929,fr,1,4.950000E+00,8.654790E+00,4.779384E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +1385930,fr,1,4.950000E+00,8.654790E+00,4.779384E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +1385937,fr,1,4.950000E+00,8.654790E+00,4.779384E+01,5.000000E+00,Active Shallow Crust,1.288890E+02,8.999030E+01,0.000000E+00 +1385941,fr,1,5.050000E+00,8.654790E+00,4.779384E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1385976,fr,1,5.350000E+00,8.654790E+00,4.779384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +1385979,fr,1,5.350000E+00,8.654790E+00,4.779384E+01,5.000000E+00,Active Shallow Crust,2.400257E+02,5.799803E+01,0.000000E+00 +1385980,fr,1,5.350000E+00,8.654790E+00,4.779384E+01,1.500000E+01,Active Shallow Crust,2.400257E+02,5.799803E+01,0.000000E+00 +1386156,fr,1,6.850000E+00,8.654810E+00,4.779384E+01,1.345767E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1386240,fr,1,3.550000E+00,4.733000E+00,5.240712E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998769E+01,0.000000E+00 +1386720,fr,1,3.550000E+00,3.859880E+00,4.629257E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +1386721,fr,1,3.550000E+00,3.859880E+00,4.629257E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +1386786,fr,1,4.050000E+00,3.859880E+00,4.629257E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +1386829,fr,1,4.450000E+00,3.859880E+00,4.629257E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1386841,fr,1,4.550000E+00,3.859880E+00,4.629257E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1387201,fr,1,3.550000E+00,3.823440E+00,4.589837E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +1387204,fr,1,3.550000E+00,3.823440E+00,4.589837E+01,1.500000E+01,Active Shallow Crust,2.400126E+02,5.799814E+01,0.000000E+00 +1387212,fr,1,3.650000E+00,3.823440E+00,4.589837E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1387215,fr,1,3.650000E+00,3.823440E+00,4.589837E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801272E+01,0.000000E+00 +1387224,fr,1,3.750000E+00,3.823440E+00,4.589837E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +1387226,fr,1,3.750000E+00,3.823440E+00,4.589837E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +1387230,fr,1,3.750000E+00,3.823440E+00,4.589837E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,-9.000000E+01 +1387236,fr,1,3.850000E+00,3.823440E+00,4.589837E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1387251,fr,1,3.950000E+00,3.823440E+00,4.589837E+01,5.000000E+00,Active Shallow Crust,2.400198E+02,5.800480E+01,0.000000E+00 +1387260,fr,1,4.050000E+00,3.823440E+00,4.589837E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1387270,fr,1,4.050000E+00,3.823440E+00,4.589837E+01,1.500000E+01,Active Shallow Crust,1.288908E+02,8.999310E+01,0.000000E+00 +1387285,fr,1,4.250000E+00,3.823440E+00,4.589837E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +1387329,fr,1,4.550000E+00,3.823440E+00,4.589837E+01,5.000000E+00,Active Shallow Crust,1.288941E+02,8.998586E+01,0.000000E+00 +1387680,fr,1,3.550000E+00,1.627300E+00,4.892194E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1388196,fr,2,3.850000E+00,3.748070E+00,4.272331E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1388292,fr,1,4.650000E+00,3.748070E+00,4.272331E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1388640,fr,3,3.550000E+00,8.352480E+00,5.003726E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998705E+01,0.000000E+00 +1388641,fr,1,3.550000E+00,8.352480E+00,5.003726E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998705E+01,0.000000E+00 +1388643,fr,1,3.550000E+00,8.352480E+00,5.003726E+01,5.000000E+00,Active Shallow Crust,2.400145E+02,5.799796E+01,0.000000E+00 +1388649,fr,2,3.550000E+00,8.352480E+00,5.003726E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999352E+01,0.000000E+00 +1388652,fr,5,3.650000E+00,8.352480E+00,5.003726E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998846E+01,0.000000E+00 +1388658,fr,1,3.650000E+00,8.352480E+00,5.003726E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998832E+01,-9.000000E+01 +1388661,fr,1,3.650000E+00,8.352480E+00,5.003726E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.996359E+01,0.000000E+00 +1388670,fr,1,3.750000E+00,8.352480E+00,5.003726E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +1388676,fr,1,3.850000E+00,8.352480E+00,5.003726E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +1388677,fr,1,3.850000E+00,8.352480E+00,5.003726E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +1388688,fr,2,3.950000E+00,8.352480E+00,5.003726E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999183E+01,0.000000E+00 +1388689,fr,1,3.950000E+00,8.352480E+00,5.003726E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999183E+01,0.000000E+00 +1388700,fr,1,4.050000E+00,8.352480E+00,5.003726E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999271E+01,0.000000E+00 +1388701,fr,1,4.050000E+00,8.352480E+00,5.003726E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999271E+01,0.000000E+00 +1388704,fr,1,4.050000E+00,8.352480E+00,5.003726E+01,1.500000E+01,Active Shallow Crust,2.400068E+02,5.800581E+01,0.000000E+00 +1388713,fr,1,4.150000E+00,8.352480E+00,5.003726E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998701E+01,0.000000E+00 +1388724,fr,2,4.250000E+00,8.352480E+00,5.003726E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +1388736,fr,1,4.350000E+00,8.352480E+00,5.003726E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1388739,fr,1,4.350000E+00,8.352480E+00,5.003726E+01,5.000000E+00,Active Shallow Crust,2.400092E+02,5.799622E+01,0.000000E+00 +1388760,fr,2,4.550000E+00,8.352480E+00,5.003726E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999181E+01,0.000000E+00 +1388784,fr,1,4.750000E+00,8.352480E+00,5.003726E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1388787,fr,1,4.750000E+00,8.352480E+00,5.003726E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.800452E+01,0.000000E+00 +1388800,fr,1,4.850000E+00,8.352480E+00,5.003726E+01,1.500000E+01,Active Shallow Crust,2.400186E+02,5.800247E+01,0.000000E+00 +1388818,fr,1,4.950000E+00,8.352480E+00,5.003726E+01,1.500000E+01,Active Shallow Crust,1.288879E+02,8.998968E+01,0.000000E+00 +1388868,fr,1,5.450000E+00,8.352480E+00,5.003726E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1389120,fr,1,3.550000E+00,1.225180E+00,4.929705E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1389135,fr,1,3.650000E+00,1.225180E+00,4.929705E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801276E+01,0.000000E+00 +1389144,fr,1,3.750000E+00,1.225180E+00,4.929705E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1389214,fr,1,4.250000E+00,1.225180E+00,4.929705E+01,1.500000E+01,Active Shallow Crust,1.288937E+02,8.998093E+01,0.000000E+00 +1389229,fr,2,4.450000E+00,1.225180E+00,4.929705E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1389312,fr,1,5.150000E+00,1.225180E+00,4.929705E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1389612,fr,1,3.650000E+00,4.180700E+00,4.813268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998801E+01,0.000000E+00 +1389639,fr,1,3.850000E+00,4.180700E+00,4.813268E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799821E+01,0.000000E+00 +1389648,fr,1,3.950000E+00,4.180700E+00,4.813268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999151E+01,0.000000E+00 +1390080,fr,1,3.550000E+00,-1.618570E+00,4.832339E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1390093,fr,1,3.650000E+00,-1.618570E+00,4.832339E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +1390105,fr,1,3.750000E+00,-1.618570E+00,4.832339E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +1390106,fr,1,3.750000E+00,-1.618570E+00,4.832339E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +1390116,fr,1,3.850000E+00,-1.618570E+00,4.832339E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +1390117,fr,1,3.850000E+00,-1.618570E+00,4.832339E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +1390129,fr,1,3.950000E+00,-1.618570E+00,4.832339E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +1390140,fr,1,4.050000E+00,-1.618570E+00,4.832339E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +1390154,fr,1,4.150000E+00,-1.618570E+00,4.832339E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1390164,fr,3,4.250000E+00,-1.618570E+00,4.832339E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1390176,fr,1,4.350000E+00,-1.618570E+00,4.832339E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1390177,fr,1,4.350000E+00,-1.618570E+00,4.832339E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1390182,fr,1,4.350000E+00,-1.618570E+00,4.832339E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +1390191,fr,1,4.450000E+00,-1.618570E+00,4.832339E+01,5.000000E+00,Active Shallow Crust,2.400059E+02,5.799467E+01,0.000000E+00 +1390214,fr,1,4.650000E+00,-1.618570E+00,4.832339E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1390225,fr,1,4.750000E+00,-1.618570E+00,4.832339E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1390272,fr,1,5.150000E+00,-1.618570E+00,4.832339E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1390572,fr,1,3.650000E+00,-1.465800E-01,5.093281E+01,5.000000E+00,Active Shallow Crust,3.599999E+02,8.999009E+01,0.000000E+00 +1390584,fr,1,3.750000E+00,-1.465800E-01,5.093281E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1390596,fr,1,3.850000E+00,-1.465800E-01,5.093281E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1390644,fr,1,4.250000E+00,-1.465800E-01,5.093281E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1391040,fr,1,3.550000E+00,5.100540E+00,4.477113E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999284E+01,0.000000E+00 +1391042,fr,1,3.550000E+00,5.100540E+00,4.477113E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999284E+01,0.000000E+00 +1391051,fr,1,3.550000E+00,5.100540E+00,4.477113E+01,2.750000E+01,Active Shallow Crust,1.288963E+02,8.999284E+01,0.000000E+00 +1391052,fr,2,3.650000E+00,5.100540E+00,4.477113E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998724E+01,0.000000E+00 +1391053,fr,1,3.650000E+00,5.100540E+00,4.477113E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998724E+01,0.000000E+00 +1391054,fr,1,3.650000E+00,5.100540E+00,4.477113E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998724E+01,0.000000E+00 +1391055,fr,1,3.650000E+00,5.100540E+00,4.477113E+01,5.000000E+00,Active Shallow Crust,2.400017E+02,5.801247E+01,0.000000E+00 +1391065,fr,1,3.750000E+00,5.100540E+00,4.477113E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +1391076,fr,1,3.850000E+00,5.100540E+00,4.477113E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1391077,fr,1,3.850000E+00,5.100540E+00,4.477113E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1391079,fr,1,3.850000E+00,5.100540E+00,4.477113E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799752E+01,0.000000E+00 +1391088,fr,1,3.950000E+00,5.100540E+00,4.477113E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +1391095,fr,1,3.950000E+00,5.100540E+00,4.477113E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999086E+01,-9.000000E+01 +1391100,fr,1,4.050000E+00,5.100540E+00,4.477113E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999195E+01,0.000000E+00 +1391124,fr,1,4.250000E+00,5.100540E+00,4.477113E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +1391137,fr,1,4.350000E+00,5.100540E+00,4.477113E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998860E+01,0.000000E+00 +1391148,fr,1,4.450000E+00,5.100540E+00,4.477113E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +1391206,fr,1,4.850000E+00,5.100540E+00,4.477113E+01,1.500000E+01,Active Shallow Crust,1.288931E+02,8.998937E+01,0.000000E+00 +1391209,fr,1,4.950000E+00,5.100540E+00,4.477113E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1391268,fr,1,5.450000E+00,5.100540E+00,4.477113E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1391535,fr,1,3.650000E+00,3.394800E+00,4.413219E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801276E+01,0.000000E+00 +1391547,fr,1,3.750000E+00,3.394800E+00,4.413219E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.801781E+01,0.000000E+00 +1391562,fr,2,3.850000E+00,3.394800E+00,4.413219E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,-9.000000E+01 +1391580,fr,3,4.050000E+00,3.394800E+00,4.413219E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1391586,fr,1,4.050000E+00,3.394800E+00,4.413219E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,-9.000000E+01 +1391592,fr,1,4.150000E+00,3.394800E+00,4.413219E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998912E+01,0.000000E+00 +1391685,fr,1,4.850000E+00,3.394800E+00,4.413219E+01,5.000000E+00,Active Shallow Crust,1.288932E+02,8.998912E+01,0.000000E+00 +1392003,fr,1,3.550000E+00,-1.394730E+00,4.522523E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799810E+01,0.000000E+00 +1392480,fr,1,3.550000E+00,7.139180E+00,5.101495E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998731E+01,0.000000E+00 +1392486,fr,1,3.550000E+00,7.139180E+00,5.101495E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998717E+01,-9.000000E+01 +1392489,fr,2,3.550000E+00,7.139180E+00,5.101495E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999366E+01,0.000000E+00 +1392526,fr,1,3.850000E+00,7.139180E+00,5.101495E+01,1.500000E+01,Active Shallow Crust,1.288947E+02,8.999326E+01,0.000000E+00 +1392528,fr,1,3.950000E+00,7.139180E+00,5.101495E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999200E+01,0.000000E+00 +1392529,fr,1,3.950000E+00,7.139180E+00,5.101495E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999200E+01,0.000000E+00 +1392552,fr,2,4.150000E+00,7.139180E+00,5.101495E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1392558,fr,1,4.150000E+00,7.139180E+00,5.101495E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,-9.000000E+01 +1392576,fr,1,4.350000E+00,7.139180E+00,5.101495E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1392693,fr,1,5.250000E+00,7.139180E+00,5.101495E+01,5.000000E+00,Active Shallow Crust,1.288850E+02,8.998699E+01,0.000000E+00 +1392960,fr,2,3.550000E+00,7.179170E+00,4.621061E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999302E+01,0.000000E+00 +1392961,fr,4,3.550000E+00,7.179170E+00,4.621061E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999302E+01,0.000000E+00 +1392962,fr,2,3.550000E+00,7.179170E+00,4.621061E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999302E+01,0.000000E+00 +1392963,fr,1,3.550000E+00,7.179170E+00,4.621061E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799819E+01,0.000000E+00 +1392964,fr,1,3.550000E+00,7.179170E+00,4.621061E+01,1.500000E+01,Active Shallow Crust,2.400124E+02,5.799819E+01,0.000000E+00 +1392966,fr,2,3.550000E+00,7.179170E+00,4.621061E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999294E+01,-9.000000E+01 +1392970,fr,1,3.550000E+00,7.179170E+00,4.621061E+01,1.500000E+01,Active Shallow Crust,1.288952E+02,8.999651E+01,0.000000E+00 +1392972,fr,5,3.650000E+00,7.179170E+00,4.621061E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998756E+01,0.000000E+00 +1392973,fr,4,3.650000E+00,7.179170E+00,4.621061E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998756E+01,0.000000E+00 +1392974,fr,2,3.650000E+00,7.179170E+00,4.621061E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998756E+01,0.000000E+00 +1392975,fr,5,3.650000E+00,7.179170E+00,4.621061E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801275E+01,0.000000E+00 +1392978,fr,3,3.650000E+00,7.179170E+00,4.621061E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998742E+01,-9.000000E+01 +1392981,fr,1,3.650000E+00,7.179170E+00,4.621061E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.996352E+01,0.000000E+00 +1392984,fr,7,3.750000E+00,7.179170E+00,4.621061E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +1392985,fr,3,3.750000E+00,7.179170E+00,4.621061E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +1392987,fr,2,3.750000E+00,7.179170E+00,4.621061E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801820E+01,0.000000E+00 +1392989,fr,1,3.750000E+00,7.179170E+00,4.621061E+01,2.750000E+01,Active Shallow Crust,2.400080E+02,5.801820E+01,0.000000E+00 +1392990,fr,1,3.750000E+00,7.179170E+00,4.621061E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998878E+01,-9.000000E+01 +1392991,fr,1,3.750000E+00,7.179170E+00,4.621061E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998878E+01,-9.000000E+01 +1392993,fr,1,3.750000E+00,7.179170E+00,4.621061E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.996748E+01,0.000000E+00 +1392994,fr,2,3.750000E+00,7.179170E+00,4.621061E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.996748E+01,0.000000E+00 +1392996,fr,5,3.850000E+00,7.179170E+00,4.621061E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1392997,fr,2,3.850000E+00,7.179170E+00,4.621061E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1392998,fr,1,3.850000E+00,7.179170E+00,4.621061E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1392999,fr,2,3.850000E+00,7.179170E+00,4.621061E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799765E+01,0.000000E+00 +1393002,fr,1,3.850000E+00,7.179170E+00,4.621061E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1393005,fr,3,3.850000E+00,7.179170E+00,4.621061E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999506E+01,0.000000E+00 +1393008,fr,5,3.950000E+00,7.179170E+00,4.621061E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +1393009,fr,3,3.950000E+00,7.179170E+00,4.621061E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +1393013,fr,1,3.950000E+00,7.179170E+00,4.621061E+01,2.750000E+01,Active Shallow Crust,2.400198E+02,5.800562E+01,0.000000E+00 +1393014,fr,1,3.950000E+00,7.179170E+00,4.621061E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999109E+01,-9.000000E+01 +1393019,fr,1,3.950000E+00,7.179170E+00,4.621061E+01,2.750000E+01,Active Shallow Crust,1.289001E+02,8.999339E+01,0.000000E+00 +1393020,fr,3,4.050000E+00,7.179170E+00,4.621061E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998823E+01,0.000000E+00 +1393021,fr,3,4.050000E+00,7.179170E+00,4.621061E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998823E+01,0.000000E+00 +1393022,fr,2,4.050000E+00,7.179170E+00,4.621061E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998823E+01,0.000000E+00 +1393023,fr,1,4.050000E+00,7.179170E+00,4.621061E+01,5.000000E+00,Active Shallow Crust,2.400058E+02,5.800585E+01,0.000000E+00 +1393029,fr,2,4.050000E+00,7.179170E+00,4.621061E+01,5.000000E+00,Active Shallow Crust,1.288897E+02,8.999412E+01,0.000000E+00 +1393030,fr,2,4.050000E+00,7.179170E+00,4.621061E+01,1.500000E+01,Active Shallow Crust,1.288897E+02,8.999412E+01,0.000000E+00 +1393032,fr,1,4.150000E+00,7.179170E+00,4.621061E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1393036,fr,1,4.150000E+00,7.179170E+00,4.621061E+01,1.500000E+01,Active Shallow Crust,2.400085E+02,5.799733E+01,0.000000E+00 +1393038,fr,1,4.150000E+00,7.179170E+00,4.621061E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998939E+01,-9.000000E+01 +1393044,fr,5,4.250000E+00,7.179170E+00,4.621061E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +1393045,fr,2,4.250000E+00,7.179170E+00,4.621061E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +1393056,fr,2,4.350000E+00,7.179170E+00,4.621061E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +1393057,fr,3,4.350000E+00,7.179170E+00,4.621061E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +1393058,fr,1,4.350000E+00,7.179170E+00,4.621061E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +1393065,fr,1,4.350000E+00,7.179170E+00,4.621061E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.998301E+01,0.000000E+00 +1393083,fr,2,4.550000E+00,7.179170E+00,4.621061E+01,5.000000E+00,Active Shallow Crust,2.400092E+02,5.799766E+01,0.000000E+00 +1393086,fr,1,4.550000E+00,7.179170E+00,4.621061E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,-9.000000E+01 +1393092,fr,2,4.650000E+00,7.179170E+00,4.621061E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1393093,fr,1,4.650000E+00,7.179170E+00,4.621061E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1393104,fr,1,4.750000E+00,7.179170E+00,4.621061E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +1393107,fr,2,4.750000E+00,7.179170E+00,4.621061E+01,5.000000E+00,Active Shallow Crust,2.400075E+02,5.800454E+01,0.000000E+00 +1393116,fr,2,4.850000E+00,7.179170E+00,4.621061E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1393129,fr,1,4.950000E+00,7.179170E+00,4.621061E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1393130,fr,1,4.950000E+00,7.179170E+00,4.621061E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1393131,fr,2,4.950000E+00,7.179170E+00,4.621061E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.800457E+01,0.000000E+00 +1393133,fr,1,4.950000E+00,7.179170E+00,4.621061E+01,2.750000E+01,Active Shallow Crust,2.400118E+02,5.800459E+01,0.000000E+00 +1393134,fr,1,4.950000E+00,7.179170E+00,4.621061E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +1393152,fr,1,5.150000E+00,7.179170E+00,4.621061E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1393176,fr,1,5.350000E+00,7.179170E+00,4.621061E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1393269,fr,1,6.050000E+00,7.179170E+00,4.621061E+01,5.357596E+00,Active Shallow Crust,1.288607E+02,8.998897E+01,0.000000E+00 +1393452,fr,1,3.650000E+00,3.465580E+00,5.245534E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +1393955,fr,1,3.750000E+00,8.447590E+00,5.103693E+01,2.750000E+01,Active Shallow Crust,1.288970E+02,8.996757E+01,0.000000E+00 +1394400,fr,1,3.550000E+00,-3.677700E-01,4.720867E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1394403,fr,1,3.550000E+00,-3.677700E-01,4.720867E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799823E+01,0.000000E+00 +1394404,fr,1,3.550000E+00,-3.677700E-01,4.720867E+01,1.500000E+01,Active Shallow Crust,2.400123E+02,5.799823E+01,0.000000E+00 +1394412,fr,3,3.650000E+00,-3.677700E-01,4.720867E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1394427,fr,1,3.750000E+00,-3.677700E-01,4.720867E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.801760E+01,0.000000E+00 +1394433,fr,1,3.750000E+00,-3.677700E-01,4.720867E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.996735E+01,0.000000E+00 +1394437,fr,1,3.850000E+00,-3.677700E-01,4.720867E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1394439,fr,1,3.850000E+00,-3.677700E-01,4.720867E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799781E+01,0.000000E+00 +1394449,fr,1,3.950000E+00,-3.677700E-01,4.720867E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1394460,fr,1,4.050000E+00,-3.677700E-01,4.720867E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1394466,fr,1,4.050000E+00,-3.677700E-01,4.720867E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1394472,fr,1,4.150000E+00,-3.677700E-01,4.720867E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1394490,fr,1,4.250000E+00,-3.677700E-01,4.720867E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +1394505,fr,1,4.350000E+00,-3.677700E-01,4.720867E+01,5.000000E+00,Active Shallow Crust,1.288977E+02,8.998275E+01,0.000000E+00 +1394520,fr,1,4.550000E+00,-3.677700E-01,4.720867E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1394521,fr,1,4.550000E+00,-3.677700E-01,4.720867E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1394532,fr,1,4.650000E+00,-3.677700E-01,4.720867E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1394544,fr,1,4.750000E+00,-3.677700E-01,4.720867E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1394558,fr,1,4.850000E+00,-3.677700E-01,4.720867E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1394881,fr,1,3.550000E+00,6.416850E+00,4.240756E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999255E+01,0.000000E+00 +1395367,fr,1,3.550000E+00,5.466280E+00,4.981825E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998684E+01,-9.000000E+01 +1395458,fr,1,4.350000E+00,5.466280E+00,4.981825E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +1395468,fr,1,4.450000E+00,5.466280E+00,4.981825E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999077E+01,0.000000E+00 +1395897,fr,1,3.950000E+00,-5.783780E+00,4.792385E+01,5.000000E+00,Active Shallow Crust,1.288995E+02,8.999361E+01,0.000000E+00 +1395906,fr,1,4.050000E+00,-5.783780E+00,4.792385E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998846E+01,-9.000000E+01 +1396320,fr,5,3.550000E+00,1.101400E+00,4.259197E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +1396321,fr,2,3.550000E+00,1.101400E+00,4.259197E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +1396323,fr,2,3.550000E+00,1.101400E+00,4.259197E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799837E+01,0.000000E+00 +1396325,fr,1,3.550000E+00,1.101400E+00,4.259197E+01,2.750000E+01,Active Shallow Crust,2.400116E+02,5.799827E+01,0.000000E+00 +1396332,fr,4,3.650000E+00,1.101400E+00,4.259197E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1396333,fr,4,3.650000E+00,1.101400E+00,4.259197E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1396341,fr,1,3.650000E+00,1.101400E+00,4.259197E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.996359E+01,0.000000E+00 +1396344,fr,4,3.750000E+00,1.101400E+00,4.259197E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1396345,fr,2,3.750000E+00,1.101400E+00,4.259197E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1396349,fr,1,3.750000E+00,1.101400E+00,4.259197E+01,2.750000E+01,Active Shallow Crust,2.400079E+02,5.801761E+01,0.000000E+00 +1396356,fr,1,3.850000E+00,1.101400E+00,4.259197E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +1396359,fr,1,3.850000E+00,1.101400E+00,4.259197E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.799778E+01,0.000000E+00 +1396360,fr,1,3.850000E+00,1.101400E+00,4.259197E+01,1.500000E+01,Active Shallow Crust,2.400104E+02,5.799778E+01,0.000000E+00 +1396368,fr,2,3.950000E+00,1.101400E+00,4.259197E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1396371,fr,1,3.950000E+00,1.101400E+00,4.259197E+01,5.000000E+00,Active Shallow Crust,2.400192E+02,5.800505E+01,0.000000E+00 +1396377,fr,1,3.950000E+00,1.101400E+00,4.259197E+01,5.000000E+00,Active Shallow Crust,1.289010E+02,8.999356E+01,0.000000E+00 +1396383,fr,2,4.050000E+00,1.101400E+00,4.259197E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.800574E+01,0.000000E+00 +1396392,fr,3,4.150000E+00,1.101400E+00,4.259197E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1396395,fr,1,4.150000E+00,1.101400E+00,4.259197E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.799727E+01,0.000000E+00 +1396416,fr,1,4.350000E+00,1.101400E+00,4.259197E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1396428,fr,1,4.450000E+00,1.101400E+00,4.259197E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1396440,fr,1,4.550000E+00,1.101400E+00,4.259197E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1396442,fr,1,4.550000E+00,1.101400E+00,4.259197E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1396453,fr,1,4.650000E+00,1.101400E+00,4.259197E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1396459,fr,1,4.650000E+00,1.101400E+00,4.259197E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +1396475,fr,1,4.750000E+00,1.101400E+00,4.259197E+01,2.750000E+01,Active Shallow Crust,1.288898E+02,8.998808E+01,0.000000E+00 +1396560,fr,1,5.550000E+00,1.101400E+00,4.259197E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1396764,fr,1,7.250000E+00,1.101427E+00,4.259197E+01,1.750000E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +1396884,fr,1,4.250000E+00,2.300260E+00,4.763718E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +1397304,fr,1,3.750000E+00,-3.703830E+00,4.663920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998900E+01,0.000000E+00 +1397773,fr,1,3.650000E+00,1.938400E+00,5.114646E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1397774,fr,1,3.650000E+00,1.938400E+00,5.114646E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1397784,fr,1,3.750000E+00,1.938400E+00,5.114646E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1397787,fr,1,3.750000E+00,1.938400E+00,5.114646E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.801789E+01,0.000000E+00 +1397796,fr,2,3.850000E+00,1.938400E+00,5.114646E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1397820,fr,2,4.050000E+00,1.938400E+00,5.114646E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1397880,fr,1,4.550000E+00,1.938400E+00,5.114646E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1397902,fr,1,4.650000E+00,1.938400E+00,5.114646E+01,1.500000E+01,Active Shallow Crust,1.288898E+02,8.998692E+01,0.000000E+00 +1398006,fr,1,5.550000E+00,1.938400E+00,5.114646E+01,5.000000E+00,Active Shallow Crust,3.599999E+02,8.999007E+01,-9.000000E+01 +1398219,fr,1,7.350000E+00,1.882339E+00,5.120728E+01,1.750000E+01,Active Shallow Crust,2.403304E+02,5.800006E+01,0.000000E+00 +1398244,fr,1,3.550000E+00,4.195150E+00,4.685748E+01,1.500000E+01,Active Shallow Crust,2.400117E+02,5.799839E+01,0.000000E+00 +1398261,fr,1,3.650000E+00,4.195150E+00,4.685748E+01,5.000000E+00,Active Shallow Crust,1.289000E+02,8.996353E+01,0.000000E+00 +1398280,fr,1,3.850000E+00,4.195150E+00,4.685748E+01,1.500000E+01,Active Shallow Crust,2.400115E+02,5.799728E+01,0.000000E+00 +1398299,fr,1,3.950000E+00,4.195150E+00,4.685748E+01,2.750000E+01,Active Shallow Crust,1.289010E+02,8.999348E+01,0.000000E+00 +1398302,fr,1,4.050000E+00,4.195150E+00,4.685748E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998837E+01,0.000000E+00 +1398312,fr,1,4.150000E+00,4.195150E+00,4.685748E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +1398314,fr,1,4.150000E+00,4.195150E+00,4.685748E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +1398322,fr,1,4.150000E+00,4.195150E+00,4.685748E+01,1.500000E+01,Active Shallow Crust,1.288976E+02,8.999309E+01,0.000000E+00 +1398340,fr,1,4.350000E+00,4.195150E+00,4.685748E+01,1.500000E+01,Active Shallow Crust,2.400085E+02,5.799559E+01,0.000000E+00 +1398360,fr,1,4.550000E+00,4.195150E+00,4.685748E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +1398723,fr,2,3.550000E+00,-2.995130E+00,4.766597E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799805E+01,0.000000E+00 +1398730,fr,2,3.550000E+00,-2.995130E+00,4.766597E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.999321E+01,0.000000E+00 +1398732,fr,6,3.650000E+00,-2.995130E+00,4.766597E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999092E+01,0.000000E+00 +1398738,fr,1,3.650000E+00,-2.995130E+00,4.766597E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,-9.000000E+01 +1398742,fr,1,3.650000E+00,-2.995130E+00,4.766597E+01,1.500000E+01,Active Shallow Crust,1.288996E+02,8.996355E+01,0.000000E+00 +1398744,fr,2,3.750000E+00,-2.995130E+00,4.766597E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +1398748,fr,1,3.750000E+00,-2.995130E+00,4.766597E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.801756E+01,0.000000E+00 +1398756,fr,1,3.850000E+00,-2.995130E+00,4.766597E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1398758,fr,1,3.850000E+00,-2.995130E+00,4.766597E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1398759,fr,1,3.850000E+00,-2.995130E+00,4.766597E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799752E+01,0.000000E+00 +1398769,fr,2,3.950000E+00,-2.995130E+00,4.766597E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +1398780,fr,1,4.050000E+00,-2.995130E+00,4.766597E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1398781,fr,2,4.050000E+00,-2.995130E+00,4.766597E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1398789,fr,1,4.050000E+00,-2.995130E+00,4.766597E+01,5.000000E+00,Active Shallow Crust,1.288899E+02,8.999427E+01,0.000000E+00 +1398792,fr,2,4.150000E+00,-2.995130E+00,4.766597E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1398804,fr,1,4.250000E+00,-2.995130E+00,4.766597E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +1398816,fr,1,4.350000E+00,-2.995130E+00,4.766597E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +1398829,fr,1,4.450000E+00,-2.995130E+00,4.766597E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1398838,fr,1,4.450000E+00,-2.995130E+00,4.766597E+01,1.500000E+01,Active Shallow Crust,1.288919E+02,8.999338E+01,0.000000E+00 +1398842,fr,1,4.550000E+00,-2.995130E+00,4.766597E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1399044,fr,1,6.250000E+00,-2.995126E+00,4.766597E+01,6.744814E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1399200,fr,1,3.550000E+00,2.114700E-01,4.455245E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1399214,fr,1,3.650000E+00,2.114700E-01,4.455245E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1399274,fr,1,4.150000E+00,2.114700E-01,4.455245E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1399288,fr,1,4.250000E+00,2.114700E-01,4.455245E+01,1.500000E+01,Active Shallow Crust,2.400072E+02,5.799399E+01,0.000000E+00 +1399686,fr,1,3.550000E+00,3.471110E+00,4.011846E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998830E+01,-9.000000E+01 +1399740,fr,1,4.050000E+00,3.471110E+00,4.011846E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +1399800,fr,1,4.550000E+00,3.471110E+00,4.011846E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +1400640,fr,1,3.550000E+00,9.241230E+00,4.861838E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998666E+01,0.000000E+00 +1400653,fr,2,3.650000E+00,9.241230E+00,4.861838E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998812E+01,0.000000E+00 +1400661,fr,1,3.650000E+00,9.241230E+00,4.861838E+01,5.000000E+00,Active Shallow Crust,1.289022E+02,8.996356E+01,0.000000E+00 +1400667,fr,1,3.750000E+00,9.241230E+00,4.861838E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801746E+01,0.000000E+00 +1400670,fr,1,3.750000E+00,9.241230E+00,4.861838E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998929E+01,-9.000000E+01 +1400674,fr,1,3.750000E+00,9.241230E+00,4.861838E+01,1.500000E+01,Active Shallow Crust,1.288976E+02,8.996753E+01,0.000000E+00 +1400688,fr,1,3.950000E+00,9.241230E+00,4.861838E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999158E+01,0.000000E+00 +1400694,fr,1,3.950000E+00,9.241230E+00,4.861838E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999149E+01,-9.000000E+01 +1400701,fr,1,4.050000E+00,9.241230E+00,4.861838E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999250E+01,0.000000E+00 +1400709,fr,1,4.050000E+00,9.241230E+00,4.861838E+01,5.000000E+00,Active Shallow Crust,1.288913E+02,8.999250E+01,0.000000E+00 +1400713,fr,1,4.150000E+00,9.241230E+00,4.861838E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999332E+01,0.000000E+00 +1400895,fr,1,5.650000E+00,9.241230E+00,4.861838E+01,5.000000E+00,Active Shallow Crust,2.400396E+02,5.799965E+01,0.000000E+00 +1401120,fr,1,3.550000E+00,7.827930E+00,4.960589E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998693E+01,0.000000E+00 +1401121,fr,1,3.550000E+00,7.827930E+00,4.960589E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998693E+01,0.000000E+00 +1401123,fr,1,3.550000E+00,7.827930E+00,4.960589E+01,5.000000E+00,Active Shallow Crust,2.400129E+02,5.799849E+01,0.000000E+00 +1401132,fr,1,3.650000E+00,7.827930E+00,4.960589E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998835E+01,0.000000E+00 +1401135,fr,1,3.650000E+00,7.827930E+00,4.960589E+01,5.000000E+00,Active Shallow Crust,2.400017E+02,5.801306E+01,0.000000E+00 +1401141,fr,1,3.650000E+00,7.827930E+00,4.960589E+01,5.000000E+00,Active Shallow Crust,1.288999E+02,8.996358E+01,0.000000E+00 +1401170,fr,1,3.950000E+00,7.827930E+00,4.960589E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999175E+01,0.000000E+00 +1401190,fr,1,4.050000E+00,7.827930E+00,4.960589E+01,1.500000E+01,Active Shallow Crust,1.288893E+02,8.999449E+01,0.000000E+00 +1401207,fr,1,4.250000E+00,7.827930E+00,4.960589E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799409E+01,0.000000E+00 +1401226,fr,1,4.350000E+00,7.827930E+00,4.960589E+01,1.500000E+01,Active Shallow Crust,1.288966E+02,8.998267E+01,0.000000E+00 +1401266,fr,1,4.750000E+00,7.827930E+00,4.960589E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1401624,fr,1,3.750000E+00,3.261350E+00,4.824890E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1401732,fr,1,4.650000E+00,3.261350E+00,4.824890E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1401777,fr,1,4.950000E+00,3.261350E+00,4.824890E+01,5.000000E+00,Active Shallow Crust,1.288893E+02,8.998974E+01,0.000000E+00 +1401830,fr,1,5.450000E+00,3.261350E+00,4.824890E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1401864,fr,1,5.750000E+00,3.261350E+00,4.824890E+01,5.000000E+00,Active Shallow Crust,3.599999E+02,8.999013E+01,0.000000E+00 +1402584,fr,2,3.750000E+00,3.263720E+00,5.053840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1403040,fr,1,3.550000E+00,6.428880E+00,5.031357E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998712E+01,0.000000E+00 +1403042,fr,1,3.550000E+00,6.428880E+00,5.031357E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998712E+01,0.000000E+00 +1403043,fr,2,3.550000E+00,6.428880E+00,5.031357E+01,5.000000E+00,Active Shallow Crust,2.400131E+02,5.799822E+01,0.000000E+00 +1403052,fr,2,3.650000E+00,6.428880E+00,5.031357E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998852E+01,0.000000E+00 +1403073,fr,1,3.750000E+00,6.428880E+00,5.031357E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.996706E+01,0.000000E+00 +1403100,fr,1,4.050000E+00,6.428880E+00,5.031357E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +1403112,fr,1,4.150000E+00,6.428880E+00,5.031357E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +1403130,fr,1,4.250000E+00,6.428880E+00,5.031357E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999127E+01,-9.000000E+01 +1403247,fr,1,5.250000E+00,6.428880E+00,5.031357E+01,5.000000E+00,Active Shallow Crust,2.400283E+02,5.800076E+01,0.000000E+00 +1403385,fr,1,6.350000E+00,6.428876E+00,5.031356E+01,7.567806E+00,Active Shallow Crust,1.288357E+02,8.999102E+01,0.000000E+00 +1403524,fr,1,3.550000E+00,6.210500E-01,4.200090E+01,1.500000E+01,Active Shallow Crust,2.400118E+02,5.799824E+01,0.000000E+00 +1403533,fr,1,3.650000E+00,6.210500E-01,4.200090E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1403544,fr,1,3.750000E+00,6.210500E-01,4.200090E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1403598,fr,1,4.150000E+00,6.210500E-01,4.200090E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +1403640,fr,1,4.550000E+00,6.210500E-01,4.200090E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1404001,fr,1,3.550000E+00,3.206420E+00,4.515422E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1404003,fr,1,3.550000E+00,3.206420E+00,4.515422E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799835E+01,0.000000E+00 +1404022,fr,1,3.650000E+00,3.206420E+00,4.515422E+01,1.500000E+01,Active Shallow Crust,1.289010E+02,8.996350E+01,0.000000E+00 +1404034,fr,1,3.750000E+00,3.206420E+00,4.515422E+01,1.500000E+01,Active Shallow Crust,1.288972E+02,8.996719E+01,0.000000E+00 +1404048,fr,1,3.950000E+00,3.206420E+00,4.515422E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999103E+01,0.000000E+00 +1404054,fr,2,3.950000E+00,3.206420E+00,4.515422E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999092E+01,-9.000000E+01 +1404060,fr,1,4.050000E+00,3.206420E+00,4.515422E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1404066,fr,1,4.050000E+00,3.206420E+00,4.515422E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +1404072,fr,1,4.150000E+00,3.206420E+00,4.515422E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +1404100,fr,1,4.350000E+00,3.206420E+00,4.515422E+01,1.500000E+01,Active Shallow Crust,2.400083E+02,5.799563E+01,0.000000E+00 +1404108,fr,1,4.450000E+00,3.206420E+00,4.515422E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1404120,fr,1,4.550000E+00,3.206420E+00,4.515422E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1404121,fr,1,4.550000E+00,3.206420E+00,4.515422E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1404480,fr,2,3.550000E+00,6.939600E+00,4.708948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999313E+01,0.000000E+00 +1404481,fr,4,3.550000E+00,6.939600E+00,4.708948E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999313E+01,0.000000E+00 +1404482,fr,2,3.550000E+00,6.939600E+00,4.708948E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999313E+01,0.000000E+00 +1404483,fr,1,3.550000E+00,6.939600E+00,4.708948E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799860E+01,0.000000E+00 +1404484,fr,1,3.550000E+00,6.939600E+00,4.708948E+01,1.500000E+01,Active Shallow Crust,2.400125E+02,5.799860E+01,0.000000E+00 +1404486,fr,1,3.550000E+00,6.939600E+00,4.708948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999306E+01,-9.000000E+01 +1404489,fr,2,3.550000E+00,6.939600E+00,4.708948E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999313E+01,0.000000E+00 +1404492,fr,7,3.650000E+00,6.939600E+00,4.708948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998776E+01,0.000000E+00 +1404493,fr,5,3.650000E+00,6.939600E+00,4.708948E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998776E+01,0.000000E+00 +1404495,fr,1,3.650000E+00,6.939600E+00,4.708948E+01,5.000000E+00,Active Shallow Crust,2.400018E+02,5.801273E+01,0.000000E+00 +1404496,fr,1,3.650000E+00,6.939600E+00,4.708948E+01,1.500000E+01,Active Shallow Crust,2.400018E+02,5.801273E+01,0.000000E+00 +1404501,fr,2,3.650000E+00,6.939600E+00,4.708948E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.996354E+01,0.000000E+00 +1404503,fr,1,3.650000E+00,6.939600E+00,4.708948E+01,2.750000E+01,Active Shallow Crust,1.289002E+02,8.996354E+01,0.000000E+00 +1404504,fr,3,3.750000E+00,6.939600E+00,4.708948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +1404505,fr,1,3.750000E+00,6.939600E+00,4.708948E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +1404507,fr,2,3.750000E+00,6.939600E+00,4.708948E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.801789E+01,0.000000E+00 +1404510,fr,1,3.750000E+00,6.939600E+00,4.708948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998897E+01,-9.000000E+01 +1404513,fr,1,3.750000E+00,6.939600E+00,4.708948E+01,5.000000E+00,Active Shallow Crust,1.288971E+02,8.996750E+01,0.000000E+00 +1404514,fr,1,3.750000E+00,6.939600E+00,4.708948E+01,1.500000E+01,Active Shallow Crust,1.288971E+02,8.996750E+01,0.000000E+00 +1404516,fr,4,3.850000E+00,6.939600E+00,4.708948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +1404517,fr,4,3.850000E+00,6.939600E+00,4.708948E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +1404519,fr,2,3.850000E+00,6.939600E+00,4.708948E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799733E+01,0.000000E+00 +1404522,fr,2,3.850000E+00,6.939600E+00,4.708948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,-9.000000E+01 +1404523,fr,1,3.850000E+00,6.939600E+00,4.708948E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,-9.000000E+01 +1404525,fr,3,3.850000E+00,6.939600E+00,4.708948E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999271E+01,0.000000E+00 +1404526,fr,1,3.850000E+00,6.939600E+00,4.708948E+01,1.500000E+01,Active Shallow Crust,1.288967E+02,8.999271E+01,0.000000E+00 +1404528,fr,1,3.950000E+00,6.939600E+00,4.708948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +1404529,fr,1,3.950000E+00,6.939600E+00,4.708948E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +1404530,fr,2,3.950000E+00,6.939600E+00,4.708948E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +1404534,fr,1,3.950000E+00,6.939600E+00,4.708948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999123E+01,-9.000000E+01 +1404540,fr,4,4.050000E+00,6.939600E+00,4.708948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998842E+01,0.000000E+00 +1404552,fr,1,4.150000E+00,6.939600E+00,4.708948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1404554,fr,1,4.150000E+00,6.939600E+00,4.708948E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1404555,fr,1,4.150000E+00,6.939600E+00,4.708948E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799747E+01,0.000000E+00 +1404559,fr,1,4.150000E+00,6.939600E+00,4.708948E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,-9.000000E+01 +1404564,fr,3,4.250000E+00,6.939600E+00,4.708948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999080E+01,0.000000E+00 +1404570,fr,1,4.250000E+00,6.939600E+00,4.708948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999069E+01,-9.000000E+01 +1404576,fr,4,4.350000E+00,6.939600E+00,4.708948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +1404577,fr,1,4.350000E+00,6.939600E+00,4.708948E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +1404588,fr,2,4.450000E+00,6.939600E+00,4.708948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1404589,fr,1,4.450000E+00,6.939600E+00,4.708948E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1404591,fr,1,4.450000E+00,6.939600E+00,4.708948E+01,5.000000E+00,Active Shallow Crust,2.400053E+02,5.799500E+01,0.000000E+00 +1404600,fr,1,4.550000E+00,6.939600E+00,4.708948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +1404612,fr,1,4.650000E+00,6.939600E+00,4.708948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1404621,fr,1,4.650000E+00,6.939600E+00,4.708948E+01,5.000000E+00,Active Shallow Crust,1.288909E+02,8.998677E+01,0.000000E+00 +1404624,fr,1,4.750000E+00,6.939600E+00,4.708948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1404633,fr,1,4.750000E+00,6.939600E+00,4.708948E+01,5.000000E+00,Active Shallow Crust,1.288889E+02,8.998775E+01,0.000000E+00 +1404636,fr,1,4.850000E+00,6.939600E+00,4.708948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +1404639,fr,1,4.850000E+00,6.939600E+00,4.708948E+01,5.000000E+00,Active Shallow Crust,2.400174E+02,5.800243E+01,0.000000E+00 +1404661,fr,1,5.050000E+00,6.939600E+00,4.708948E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1404678,fr,2,5.150000E+00,6.939600E+00,4.708948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +1404780,fr,1,6.050000E+00,6.939601E+00,4.708948E+01,5.357596E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1404783,fr,1,6.050000E+00,6.939600E+00,4.708948E+01,5.000000E+00,Active Shallow Crust,2.400573E+02,5.800042E+01,0.000000E+00 +1405441,fr,1,3.550000E+00,1.792020E+00,4.107905E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +1405446,fr,1,3.550000E+00,1.792020E+00,4.107905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,-9.000000E+01 +1405455,fr,1,3.650000E+00,1.792020E+00,4.107905E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801278E+01,0.000000E+00 +1405488,fr,1,3.950000E+00,1.792020E+00,4.107905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +1405500,fr,1,4.050000E+00,1.792020E+00,4.107905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +1405527,fr,1,4.250000E+00,1.792020E+00,4.107905E+01,5.000000E+00,Active Shallow Crust,2.400066E+02,5.799395E+01,0.000000E+00 +1405549,fr,1,4.450000E+00,1.792020E+00,4.107905E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1405550,fr,1,4.450000E+00,1.792020E+00,4.107905E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1405554,fr,1,4.450000E+00,1.792020E+00,4.107905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,-9.000000E+01 +1405573,fr,1,4.650000E+00,1.792020E+00,4.107905E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1405575,fr,1,4.650000E+00,1.792020E+00,4.107905E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.799398E+01,0.000000E+00 +1405620,fr,1,5.050000E+00,1.792020E+00,4.107905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1405621,fr,1,5.050000E+00,1.792020E+00,4.107905E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1405927,fr,1,3.550000E+00,-2.639100E+00,4.344074E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998889E+01,-9.000000E+01 +1405932,fr,1,3.650000E+00,-2.639100E+00,4.344074E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1405959,fr,1,3.850000E+00,-2.639100E+00,4.344074E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.799769E+01,0.000000E+00 +1405969,fr,1,3.950000E+00,-2.639100E+00,4.344074E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +1406020,fr,1,4.350000E+00,-2.639100E+00,4.344074E+01,1.500000E+01,Active Shallow Crust,2.400077E+02,5.799562E+01,0.000000E+00 +1406032,fr,1,4.450000E+00,-2.639100E+00,4.344074E+01,1.500000E+01,Active Shallow Crust,2.400044E+02,5.799451E+01,0.000000E+00 +1406401,fr,1,3.550000E+00,2.453800E-01,4.685006E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1406403,fr,2,3.550000E+00,2.453800E-01,4.685006E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799819E+01,0.000000E+00 +1406412,fr,2,3.650000E+00,2.453800E-01,4.685006E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1406413,fr,1,3.650000E+00,2.453800E-01,4.685006E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1406424,fr,2,3.750000E+00,2.453800E-01,4.685006E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1406425,fr,2,3.750000E+00,2.453800E-01,4.685006E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1406432,fr,1,3.750000E+00,2.453800E-01,4.685006E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,-9.000000E+01 +1406439,fr,1,3.850000E+00,2.453800E-01,4.685006E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799782E+01,0.000000E+00 +1406448,fr,2,3.950000E+00,2.453800E-01,4.685006E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1406452,fr,1,3.950000E+00,2.453800E-01,4.685006E+01,1.500000E+01,Active Shallow Crust,2.400198E+02,5.800500E+01,0.000000E+00 +1406460,fr,1,4.050000E+00,2.453800E-01,4.685006E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1406469,fr,1,4.050000E+00,2.453800E-01,4.685006E+01,5.000000E+00,Active Shallow Crust,1.288904E+02,8.999376E+01,0.000000E+00 +1406484,fr,1,4.250000E+00,2.453800E-01,4.685006E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1406505,fr,1,4.350000E+00,2.453800E-01,4.685006E+01,5.000000E+00,Active Shallow Crust,1.288977E+02,8.998275E+01,0.000000E+00 +1406521,fr,1,4.550000E+00,2.453800E-01,4.685006E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1406880,fr,6,3.550000E+00,6.751690E+00,4.458498E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999282E+01,0.000000E+00 +1406881,fr,3,3.550000E+00,6.751690E+00,4.458498E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999282E+01,0.000000E+00 +1406882,fr,1,3.550000E+00,6.751690E+00,4.458498E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999282E+01,0.000000E+00 +1406883,fr,1,3.550000E+00,6.751690E+00,4.458498E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799908E+01,0.000000E+00 +1406886,fr,1,3.550000E+00,6.751690E+00,4.458498E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999274E+01,-9.000000E+01 +1406889,fr,2,3.550000E+00,6.751690E+00,4.458498E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999282E+01,0.000000E+00 +1406892,fr,6,3.650000E+00,6.751690E+00,4.458498E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998720E+01,0.000000E+00 +1406893,fr,3,3.650000E+00,6.751690E+00,4.458498E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998720E+01,0.000000E+00 +1406896,fr,1,3.650000E+00,6.751690E+00,4.458498E+01,1.500000E+01,Active Shallow Crust,2.399999E+02,5.801347E+01,0.000000E+00 +1406899,fr,1,3.650000E+00,6.751690E+00,4.458498E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998705E+01,-9.000000E+01 +1406901,fr,2,3.650000E+00,6.751690E+00,4.458498E+01,5.000000E+00,Active Shallow Crust,1.289011E+02,8.996349E+01,0.000000E+00 +1406904,fr,4,3.750000E+00,6.751690E+00,4.458498E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +1406906,fr,1,3.750000E+00,6.751690E+00,4.458498E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +1406910,fr,2,3.750000E+00,6.751690E+00,4.458498E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998846E+01,-9.000000E+01 +1406911,fr,1,3.750000E+00,6.751690E+00,4.458498E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998846E+01,-9.000000E+01 +1406912,fr,1,3.750000E+00,6.751690E+00,4.458498E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998846E+01,-9.000000E+01 +1406914,fr,1,3.750000E+00,6.751690E+00,4.458498E+01,1.500000E+01,Active Shallow Crust,1.288974E+02,8.996746E+01,0.000000E+00 +1406916,fr,3,3.850000E+00,6.751690E+00,4.458498E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1406917,fr,1,3.850000E+00,6.751690E+00,4.458498E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1406918,fr,1,3.850000E+00,6.751690E+00,4.458498E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1406922,fr,1,3.850000E+00,6.751690E+00,4.458498E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,-9.000000E+01 +1406925,fr,1,3.850000E+00,6.751690E+00,4.458498E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999492E+01,0.000000E+00 +1406928,fr,3,3.950000E+00,6.751690E+00,4.458498E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +1406929,fr,1,3.950000E+00,6.751690E+00,4.458498E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +1406931,fr,1,3.950000E+00,6.751690E+00,4.458498E+01,5.000000E+00,Active Shallow Crust,2.400199E+02,5.800507E+01,0.000000E+00 +1406940,fr,3,4.050000E+00,6.751690E+00,4.458498E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999192E+01,0.000000E+00 +1406946,fr,1,4.050000E+00,6.751690E+00,4.458498E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999183E+01,-9.000000E+01 +1406952,fr,1,4.150000E+00,6.751690E+00,4.458498E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1406956,fr,1,4.150000E+00,6.751690E+00,4.458498E+01,1.500000E+01,Active Shallow Crust,2.400080E+02,5.799714E+01,0.000000E+00 +1406958,fr,1,4.150000E+00,6.751690E+00,4.458498E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,-9.000000E+01 +1406982,fr,1,4.350000E+00,6.751690E+00,4.458498E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999133E+01,-9.000000E+01 +1407015,fr,1,4.650000E+00,6.751690E+00,4.458498E+01,5.000000E+00,Active Shallow Crust,2.400101E+02,5.799430E+01,0.000000E+00 +1407072,fr,1,5.150000E+00,6.751690E+00,4.458498E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1407084,fr,1,5.250000E+00,6.751690E+00,4.458498E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1407120,fr,1,5.550000E+00,6.751690E+00,4.458498E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1407360,fr,3,3.550000E+00,-1.406900E-01,4.762706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1407362,fr,1,3.550000E+00,-1.406900E-01,4.762706E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1407377,fr,1,3.650000E+00,-1.406900E-01,4.762706E+01,2.750000E+01,Active Shallow Crust,2.400012E+02,5.801281E+01,0.000000E+00 +1407378,fr,1,3.650000E+00,-1.406900E-01,4.762706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +1407381,fr,1,3.650000E+00,-1.406900E-01,4.762706E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.996352E+01,0.000000E+00 +1407385,fr,1,3.750000E+00,-1.406900E-01,4.762706E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1407408,fr,1,3.950000E+00,-1.406900E-01,4.762706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1407417,fr,1,3.950000E+00,-1.406900E-01,4.762706E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.999371E+01,0.000000E+00 +1407420,fr,1,4.050000E+00,-1.406900E-01,4.762706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1407430,fr,1,4.050000E+00,-1.406900E-01,4.762706E+01,1.500000E+01,Active Shallow Crust,1.288904E+02,8.999367E+01,0.000000E+00 +1407441,fr,1,4.150000E+00,-1.406900E-01,4.762706E+01,5.000000E+00,Active Shallow Crust,1.288974E+02,8.999372E+01,0.000000E+00 +1407468,fr,1,4.450000E+00,-1.406900E-01,4.762706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1407474,fr,1,4.450000E+00,-1.406900E-01,4.762706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1407576,fr,1,5.350000E+00,-1.406900E-01,4.762706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1407840,fr,1,3.550000E+00,-7.668900E-01,5.024351E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1407955,fr,1,4.450000E+00,-7.668900E-01,5.024351E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +1407960,fr,1,4.550000E+00,-7.668900E-01,5.024351E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1408320,fr,1,3.550000E+00,9.063600E-01,4.875438E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1408323,fr,1,3.550000E+00,9.063600E-01,4.875438E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799813E+01,0.000000E+00 +1408344,fr,1,3.750000E+00,9.063600E-01,4.875438E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1408354,fr,1,3.750000E+00,9.063600E-01,4.875438E+01,1.500000E+01,Active Shallow Crust,1.288964E+02,8.996735E+01,0.000000E+00 +1408405,fr,1,4.250000E+00,9.063600E-01,4.875438E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1408415,fr,1,4.250000E+00,9.063600E-01,4.875438E+01,2.750000E+01,Active Shallow Crust,1.288940E+02,8.998091E+01,0.000000E+00 +1408800,fr,1,3.550000E+00,1.727320E+00,5.318613E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1408803,fr,1,3.550000E+00,1.727320E+00,5.318613E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.799827E+01,0.000000E+00 +1408827,fr,1,3.750000E+00,1.727320E+00,5.318613E+01,5.000000E+00,Active Shallow Crust,2.400093E+02,5.801764E+01,0.000000E+00 +1408992,fr,1,5.150000E+00,1.727320E+00,5.318613E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1409280,fr,2,3.550000E+00,-9.152000E-01,4.266572E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1409286,fr,3,3.550000E+00,-9.152000E-01,4.266572E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +1409291,fr,1,3.550000E+00,-9.152000E-01,4.266572E+01,2.750000E+01,Active Shallow Crust,1.288967E+02,8.999352E+01,0.000000E+00 +1409294,fr,1,3.650000E+00,-9.152000E-01,4.266572E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1409295,fr,1,3.650000E+00,-9.152000E-01,4.266572E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801284E+01,0.000000E+00 +1409304,fr,2,3.750000E+00,-9.152000E-01,4.266572E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1409313,fr,1,3.750000E+00,-9.152000E-01,4.266572E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.996735E+01,0.000000E+00 +1409315,fr,1,3.750000E+00,-9.152000E-01,4.266572E+01,2.750000E+01,Active Shallow Crust,1.288968E+02,8.996735E+01,0.000000E+00 +1409316,fr,3,3.850000E+00,-9.152000E-01,4.266572E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1409317,fr,2,3.850000E+00,-9.152000E-01,4.266572E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1409326,fr,1,3.850000E+00,-9.152000E-01,4.266572E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.999377E+01,0.000000E+00 +1409340,fr,1,4.050000E+00,-9.152000E-01,4.266572E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1409365,fr,1,4.250000E+00,-9.152000E-01,4.266572E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1409388,fr,1,4.450000E+00,-9.152000E-01,4.266572E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1409431,fr,1,4.750000E+00,-9.152000E-01,4.266572E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +1409760,fr,2,3.550000E+00,2.434240E+00,4.198829E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +1409761,fr,1,3.550000E+00,2.434240E+00,4.198829E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +1409762,fr,1,3.550000E+00,2.434240E+00,4.198829E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +1409766,fr,1,3.550000E+00,2.434240E+00,4.198829E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998862E+01,-9.000000E+01 +1409772,fr,2,3.650000E+00,2.434240E+00,4.198829E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1409773,fr,1,3.650000E+00,2.434240E+00,4.198829E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1409784,fr,2,3.750000E+00,2.434240E+00,4.198829E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +1409785,fr,1,3.750000E+00,2.434240E+00,4.198829E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +1409796,fr,1,3.850000E+00,2.434240E+00,4.198829E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +1409797,fr,1,3.850000E+00,2.434240E+00,4.198829E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +1409798,fr,1,3.850000E+00,2.434240E+00,4.198829E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +1409802,fr,1,3.850000E+00,2.434240E+00,4.198829E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,-9.000000E+01 +1409809,fr,1,3.950000E+00,2.434240E+00,4.198829E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +1409820,fr,1,4.050000E+00,2.434240E+00,4.198829E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1409821,fr,1,4.050000E+00,2.434240E+00,4.198829E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1409823,fr,1,4.050000E+00,2.434240E+00,4.198829E+01,5.000000E+00,Active Shallow Crust,2.400050E+02,5.800608E+01,0.000000E+00 +1409853,fr,1,4.250000E+00,2.434240E+00,4.198829E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.998078E+01,0.000000E+00 +1409861,fr,1,4.350000E+00,2.434240E+00,4.198829E+01,2.750000E+01,Active Shallow Crust,2.400075E+02,5.799562E+01,0.000000E+00 +1409918,fr,1,4.850000E+00,2.434240E+00,4.198829E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1410241,fr,1,3.550000E+00,8.085070E+00,5.025733E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998711E+01,0.000000E+00 +1410252,fr,1,3.650000E+00,8.085070E+00,5.025733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998851E+01,0.000000E+00 +1410253,fr,1,3.650000E+00,8.085070E+00,5.025733E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998851E+01,0.000000E+00 +1410258,fr,1,3.650000E+00,8.085070E+00,5.025733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998837E+01,-9.000000E+01 +1410264,fr,1,3.750000E+00,8.085070E+00,5.025733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +1410267,fr,2,3.750000E+00,8.085070E+00,5.025733E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.801844E+01,0.000000E+00 +1410270,fr,1,3.750000E+00,8.085070E+00,5.025733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,-9.000000E+01 +1410276,fr,1,3.850000E+00,8.085070E+00,5.025733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999087E+01,0.000000E+00 +1410288,fr,1,3.950000E+00,8.085070E+00,5.025733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999187E+01,0.000000E+00 +1410289,fr,1,3.950000E+00,8.085070E+00,5.025733E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999187E+01,0.000000E+00 +1410294,fr,1,3.950000E+00,8.085070E+00,5.025733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999177E+01,-9.000000E+01 +1410306,fr,1,4.050000E+00,8.085070E+00,5.025733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999267E+01,-9.000000E+01 +1410312,fr,1,4.150000E+00,8.085070E+00,5.025733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998708E+01,0.000000E+00 +1410323,fr,1,4.150000E+00,8.085070E+00,5.025733E+01,2.750000E+01,Active Shallow Crust,1.288961E+02,8.999354E+01,0.000000E+00 +1410324,fr,1,4.250000E+00,8.085070E+00,5.025733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998848E+01,0.000000E+00 +1410326,fr,1,4.250000E+00,8.085070E+00,5.025733E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998848E+01,0.000000E+00 +1410342,fr,1,4.350000E+00,8.085070E+00,5.025733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,-9.000000E+01 +1410348,fr,1,4.450000E+00,8.085070E+00,5.025733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999085E+01,0.000000E+00 +1410352,fr,1,4.450000E+00,8.085070E+00,5.025733E+01,1.500000E+01,Active Shallow Crust,2.400068E+02,5.799468E+01,0.000000E+00 +1410371,fr,1,4.550000E+00,8.085070E+00,5.025733E+01,2.750000E+01,Active Shallow Crust,1.288922E+02,8.998586E+01,0.000000E+00 +1410382,fr,1,4.650000E+00,8.085070E+00,5.025733E+01,1.500000E+01,Active Shallow Crust,1.288904E+02,8.998651E+01,0.000000E+00 +1410444,fr,1,5.250000E+00,8.085070E+00,5.025733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999089E+01,0.000000E+00 +1410732,fr,1,3.650000E+00,2.122720E+00,4.802424E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999098E+01,0.000000E+00 +1410855,fr,1,4.650000E+00,2.122720E+00,4.802424E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799440E+01,0.000000E+00 +1410902,fr,1,5.050000E+00,2.122720E+00,4.802424E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1411201,fr,1,3.550000E+00,3.272340E+00,4.594533E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +1411202,fr,1,3.550000E+00,3.272340E+00,4.594533E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +1411206,fr,1,3.550000E+00,3.272340E+00,4.594533E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,-9.000000E+01 +1411210,fr,1,3.550000E+00,3.272340E+00,4.594533E+01,1.500000E+01,Active Shallow Crust,1.288956E+02,8.999474E+01,0.000000E+00 +1411211,fr,1,3.550000E+00,3.272340E+00,4.594533E+01,2.750000E+01,Active Shallow Crust,1.288956E+02,8.999474E+01,0.000000E+00 +1411212,fr,2,3.650000E+00,3.272340E+00,4.594533E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1411213,fr,1,3.650000E+00,3.272340E+00,4.594533E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1411218,fr,1,3.650000E+00,3.272340E+00,4.594533E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,-9.000000E+01 +1411221,fr,1,3.650000E+00,3.272340E+00,4.594533E+01,5.000000E+00,Active Shallow Crust,1.288999E+02,8.996352E+01,0.000000E+00 +1411224,fr,2,3.750000E+00,3.272340E+00,4.594533E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998886E+01,0.000000E+00 +1411225,fr,1,3.750000E+00,3.272340E+00,4.594533E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998886E+01,0.000000E+00 +1411226,fr,1,3.750000E+00,3.272340E+00,4.594533E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998886E+01,0.000000E+00 +1411236,fr,1,3.850000E+00,3.272340E+00,4.594533E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1411238,fr,1,3.850000E+00,3.272340E+00,4.594533E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1411239,fr,1,3.850000E+00,3.272340E+00,4.594533E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799767E+01,0.000000E+00 +1411242,fr,1,3.850000E+00,3.272340E+00,4.594533E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +1411259,fr,1,3.950000E+00,3.272340E+00,4.594533E+01,2.750000E+01,Active Shallow Crust,1.289006E+02,8.999447E+01,0.000000E+00 +1411260,fr,2,4.050000E+00,3.272340E+00,4.594533E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1411261,fr,1,4.050000E+00,3.272340E+00,4.594533E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1411272,fr,1,4.150000E+00,3.272340E+00,4.594533E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1411275,fr,1,4.150000E+00,3.272340E+00,4.594533E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799720E+01,0.000000E+00 +1411276,fr,1,4.150000E+00,3.272340E+00,4.594533E+01,1.500000E+01,Active Shallow Crust,2.400085E+02,5.799722E+01,0.000000E+00 +1411284,fr,1,4.250000E+00,3.272340E+00,4.594533E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +1411303,fr,1,4.350000E+00,3.272340E+00,4.594533E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,-9.000000E+01 +1411320,fr,1,4.550000E+00,3.272340E+00,4.594533E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1411321,fr,1,4.550000E+00,3.272340E+00,4.594533E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1411323,fr,2,4.550000E+00,3.272340E+00,4.594533E+01,5.000000E+00,Active Shallow Crust,2.400092E+02,5.799720E+01,0.000000E+00 +1411329,fr,1,4.550000E+00,3.272340E+00,4.594533E+01,5.000000E+00,Active Shallow Crust,1.288941E+02,8.998586E+01,0.000000E+00 +1411684,fr,1,3.550000E+00,2.171720E+00,4.499061E+01,1.500000E+01,Active Shallow Crust,2.400121E+02,5.799804E+01,0.000000E+00 +1411692,fr,1,3.650000E+00,2.171720E+00,4.499061E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1411693,fr,1,3.650000E+00,2.171720E+00,4.499061E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1411752,fr,1,4.150000E+00,2.171720E+00,4.499061E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1411789,fr,1,4.450000E+00,2.171720E+00,4.499061E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1411819,fr,1,4.650000E+00,2.171720E+00,4.499061E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,-9.000000E+01 +1412160,fr,1,3.550000E+00,6.043360E+00,4.568142E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999296E+01,0.000000E+00 +1412163,fr,3,3.550000E+00,6.043360E+00,4.568142E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799917E+01,0.000000E+00 +1412167,fr,1,3.550000E+00,6.043360E+00,4.568142E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999287E+01,-9.000000E+01 +1412173,fr,1,3.650000E+00,6.043360E+00,4.568142E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998744E+01,0.000000E+00 +1412174,fr,1,3.650000E+00,6.043360E+00,4.568142E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998744E+01,0.000000E+00 +1412178,fr,1,3.650000E+00,6.043360E+00,4.568142E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998730E+01,-9.000000E+01 +1412184,fr,4,3.750000E+00,6.043360E+00,4.568142E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998881E+01,0.000000E+00 +1412186,fr,2,3.750000E+00,6.043360E+00,4.568142E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998881E+01,0.000000E+00 +1412193,fr,1,3.750000E+00,6.043360E+00,4.568142E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.996748E+01,0.000000E+00 +1412196,fr,2,3.850000E+00,6.043360E+00,4.568142E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1412201,fr,1,3.850000E+00,6.043360E+00,4.568142E+01,2.750000E+01,Active Shallow Crust,2.400108E+02,5.799828E+01,0.000000E+00 +1412208,fr,2,3.950000E+00,6.043360E+00,4.568142E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999111E+01,0.000000E+00 +1412213,fr,1,3.950000E+00,6.043360E+00,4.568142E+01,2.750000E+01,Active Shallow Crust,2.400199E+02,5.800420E+01,0.000000E+00 +1412219,fr,1,3.950000E+00,6.043360E+00,4.568142E+01,2.750000E+01,Active Shallow Crust,1.288995E+02,8.999333E+01,0.000000E+00 +1412220,fr,1,4.050000E+00,6.043360E+00,4.568142E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998811E+01,0.000000E+00 +1412221,fr,1,4.050000E+00,6.043360E+00,4.568142E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998811E+01,0.000000E+00 +1412224,fr,1,4.050000E+00,6.043360E+00,4.568142E+01,1.500000E+01,Active Shallow Crust,2.400049E+02,5.800623E+01,0.000000E+00 +1412280,fr,1,4.550000E+00,6.043360E+00,4.568142E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999109E+01,0.000000E+00 +1412292,fr,1,4.650000E+00,6.043360E+00,4.568142E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1412383,fr,1,5.350000E+00,6.043360E+00,4.568142E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,-9.000000E+01 +1412400,fr,1,5.550000E+00,6.043360E+00,4.568142E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1412664,fr,1,3.750000E+00,3.491910E+00,4.764956E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1413120,fr,3,3.550000E+00,-1.279040E+00,4.740799E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +1413121,fr,1,3.550000E+00,-1.279040E+00,4.740799E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +1413123,fr,1,3.550000E+00,-1.279040E+00,4.740799E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799813E+01,0.000000E+00 +1413124,fr,1,3.550000E+00,-1.279040E+00,4.740799E+01,1.500000E+01,Active Shallow Crust,2.400122E+02,5.799813E+01,0.000000E+00 +1413127,fr,1,3.550000E+00,-1.279040E+00,4.740799E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +1413135,fr,1,3.650000E+00,-1.279040E+00,4.740799E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801264E+01,0.000000E+00 +1413145,fr,1,3.750000E+00,-1.279040E+00,4.740799E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +1413156,fr,1,3.850000E+00,-1.279040E+00,4.740799E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1413159,fr,1,3.850000E+00,-1.279040E+00,4.740799E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799803E+01,0.000000E+00 +1413168,fr,1,3.950000E+00,-1.279040E+00,4.740799E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +1413170,fr,1,3.950000E+00,-1.279040E+00,4.740799E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +1413171,fr,2,3.950000E+00,-1.279040E+00,4.740799E+01,5.000000E+00,Active Shallow Crust,2.400198E+02,5.800493E+01,0.000000E+00 +1413174,fr,1,3.950000E+00,-1.279040E+00,4.740799E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,-9.000000E+01 +1413180,fr,3,4.050000E+00,-1.279040E+00,4.740799E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +1413192,fr,1,4.150000E+00,-1.279040E+00,4.740799E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +1413198,fr,1,4.150000E+00,-1.279040E+00,4.740799E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,-9.000000E+01 +1413204,fr,1,4.250000E+00,-1.279040E+00,4.740799E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1413240,fr,1,4.550000E+00,-1.279040E+00,4.740799E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1413315,fr,1,5.150000E+00,-1.279040E+00,4.740799E+01,5.000000E+00,Active Shallow Crust,2.400201E+02,5.800010E+01,0.000000E+00 +1413661,fr,1,4.050000E+00,-4.280690E+00,4.971376E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998900E+01,0.000000E+00 +1414080,fr,1,3.550000E+00,6.547500E-01,4.540025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1414148,fr,1,4.050000E+00,6.547500E-01,4.540025E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,-9.000000E+01 +1414203,fr,1,4.550000E+00,6.547500E-01,4.540025E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.799726E+01,0.000000E+00 +1414560,fr,1,3.550000E+00,7.348650E+00,4.892333E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998675E+01,0.000000E+00 +1415061,fr,1,3.650000E+00,-1.730950E+00,4.573995E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996351E+01,0.000000E+00 +1415076,fr,1,3.850000E+00,-1.730950E+00,4.573995E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1415124,fr,1,4.250000E+00,-1.730950E+00,4.573995E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1415520,fr,3,3.550000E+00,1.086290E+00,4.109638E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +1415521,fr,2,3.550000E+00,1.086290E+00,4.109638E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +1415522,fr,2,3.550000E+00,1.086290E+00,4.109638E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +1415529,fr,1,3.550000E+00,1.086290E+00,4.109638E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999335E+01,0.000000E+00 +1415537,fr,1,3.650000E+00,1.086290E+00,4.109638E+01,2.750000E+01,Active Shallow Crust,2.400006E+02,5.801260E+01,0.000000E+00 +1415544,fr,2,3.750000E+00,1.086290E+00,4.109638E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1415547,fr,1,3.750000E+00,1.086290E+00,4.109638E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801733E+01,0.000000E+00 +1415550,fr,1,3.750000E+00,1.086290E+00,4.109638E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998931E+01,-9.000000E+01 +1415580,fr,1,4.050000E+00,1.086290E+00,4.109638E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1415583,fr,1,4.050000E+00,1.086290E+00,4.109638E+01,5.000000E+00,Active Shallow Crust,2.400052E+02,5.800569E+01,0.000000E+00 +1415589,fr,1,4.050000E+00,1.086290E+00,4.109638E+01,5.000000E+00,Active Shallow Crust,1.288915E+02,8.999359E+01,0.000000E+00 +1415592,fr,1,4.150000E+00,1.086290E+00,4.109638E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1415604,fr,1,4.250000E+00,1.086290E+00,4.109638E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1415626,fr,1,4.350000E+00,1.086290E+00,4.109638E+01,1.500000E+01,Active Shallow Crust,1.288988E+02,8.998270E+01,0.000000E+00 +1415637,fr,1,4.450000E+00,1.086290E+00,4.109638E+01,5.000000E+00,Active Shallow Crust,1.288933E+02,8.999360E+01,0.000000E+00 +1415734,fr,1,5.250000E+00,1.086290E+00,4.109638E+01,1.500000E+01,Active Shallow Crust,1.288859E+02,8.998698E+01,0.000000E+00 +1416000,fr,1,3.550000E+00,-1.335560E+00,4.807652E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1416001,fr,1,3.550000E+00,-1.335560E+00,4.807652E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1416012,fr,1,3.650000E+00,-1.335560E+00,4.807652E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +1416013,fr,1,3.650000E+00,-1.335560E+00,4.807652E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +1416015,fr,1,3.650000E+00,-1.335560E+00,4.807652E+01,5.000000E+00,Active Shallow Crust,2.400016E+02,5.801268E+01,0.000000E+00 +1416037,fr,2,3.850000E+00,-1.335560E+00,4.807652E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1416057,fr,1,3.950000E+00,-1.335560E+00,4.807652E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.999362E+01,0.000000E+00 +1416060,fr,1,4.050000E+00,-1.335560E+00,4.807652E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +1416073,fr,1,4.150000E+00,-1.335560E+00,4.807652E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1416082,fr,1,4.150000E+00,-1.335560E+00,4.807652E+01,1.500000E+01,Active Shallow Crust,1.288974E+02,8.999367E+01,0.000000E+00 +1416084,fr,1,4.250000E+00,-1.335560E+00,4.807652E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1416144,fr,1,4.750000E+00,-1.335560E+00,4.807652E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1416504,fr,1,3.750000E+00,-2.986290E+00,4.561458E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998879E+01,0.000000E+00 +1417080,fr,1,4.550000E+00,-7.172000E+00,4.858650E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +1417479,fr,1,3.850000E+00,1.095850E+00,5.291609E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799807E+01,0.000000E+00 +1417920,fr,2,3.550000E+00,8.849650E+00,4.895949E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998676E+01,0.000000E+00 +1417924,fr,1,3.550000E+00,8.849650E+00,4.895949E+01,1.500000E+01,Active Shallow Crust,2.400141E+02,5.799778E+01,0.000000E+00 +1417932,fr,4,3.650000E+00,8.849650E+00,4.895949E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998820E+01,0.000000E+00 +1417956,fr,3,3.850000E+00,8.849650E+00,4.895949E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1417962,fr,1,3.850000E+00,8.849650E+00,4.895949E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,-9.000000E+01 +1417969,fr,1,3.950000E+00,8.849650E+00,4.895949E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999165E+01,0.000000E+00 +1417971,fr,1,3.950000E+00,8.849650E+00,4.895949E+01,5.000000E+00,Active Shallow Crust,2.400204E+02,5.800469E+01,0.000000E+00 +1417972,fr,1,3.950000E+00,8.849650E+00,4.895949E+01,1.500000E+01,Active Shallow Crust,2.400204E+02,5.800469E+01,0.000000E+00 +1417992,fr,1,4.150000E+00,8.849650E+00,4.895949E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998672E+01,0.000000E+00 +1417995,fr,1,4.150000E+00,8.849650E+00,4.895949E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799822E+01,0.000000E+00 +1418016,fr,1,4.350000E+00,8.849650E+00,4.895949E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1418400,fr,3,3.550000E+00,-3.518400E+00,4.319492E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +1418401,fr,1,3.550000E+00,-3.518400E+00,4.319492E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +1418402,fr,1,3.550000E+00,-3.518400E+00,4.319492E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +1418403,fr,1,3.550000E+00,-3.518400E+00,4.319492E+01,5.000000E+00,Active Shallow Crust,2.400115E+02,5.799826E+01,0.000000E+00 +1418412,fr,1,3.650000E+00,-3.518400E+00,4.319492E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1418418,fr,1,3.650000E+00,-3.518400E+00,4.319492E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +1418421,fr,1,3.650000E+00,-3.518400E+00,4.319492E+01,5.000000E+00,Active Shallow Crust,1.289013E+02,8.996346E+01,0.000000E+00 +1418423,fr,1,3.650000E+00,-3.518400E+00,4.319492E+01,2.750000E+01,Active Shallow Crust,1.289013E+02,8.996346E+01,0.000000E+00 +1418424,fr,3,3.750000E+00,-3.518400E+00,4.319492E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999124E+01,0.000000E+00 +1418425,fr,1,3.750000E+00,-3.518400E+00,4.319492E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999124E+01,0.000000E+00 +1418436,fr,3,3.850000E+00,-3.518400E+00,4.319492E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1418484,fr,1,4.250000E+00,-3.518400E+00,4.319492E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1418495,fr,1,4.250000E+00,-3.518400E+00,4.319492E+01,2.750000E+01,Active Shallow Crust,1.288950E+02,8.998083E+01,0.000000E+00 +1418496,fr,1,4.350000E+00,-3.518400E+00,4.319492E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1418517,fr,1,4.450000E+00,-3.518400E+00,4.319492E+01,5.000000E+00,Active Shallow Crust,1.288931E+02,8.999348E+01,0.000000E+00 +1418640,fr,1,5.550000E+00,-3.518400E+00,4.319492E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1418880,fr,3,3.550000E+00,5.359200E-01,4.294840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1418881,fr,2,3.550000E+00,5.359200E-01,4.294840E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1418882,fr,1,3.550000E+00,5.359200E-01,4.294840E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1418883,fr,1,3.550000E+00,5.359200E-01,4.294840E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799814E+01,0.000000E+00 +1418892,fr,5,3.650000E+00,5.359200E-01,4.294840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1418893,fr,3,3.650000E+00,5.359200E-01,4.294840E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1418902,fr,1,3.650000E+00,5.359200E-01,4.294840E+01,1.500000E+01,Active Shallow Crust,1.289005E+02,8.996352E+01,0.000000E+00 +1418904,fr,2,3.750000E+00,5.359200E-01,4.294840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +1418905,fr,1,3.750000E+00,5.359200E-01,4.294840E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +1418906,fr,2,3.750000E+00,5.359200E-01,4.294840E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +1418916,fr,2,3.850000E+00,5.359200E-01,4.294840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1418923,fr,1,3.850000E+00,5.359200E-01,4.294840E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +1418929,fr,2,3.950000E+00,5.359200E-01,4.294840E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1418939,fr,1,3.950000E+00,5.359200E-01,4.294840E+01,2.750000E+01,Active Shallow Crust,1.289009E+02,8.999360E+01,0.000000E+00 +1418940,fr,2,4.050000E+00,5.359200E-01,4.294840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1418941,fr,1,4.050000E+00,5.359200E-01,4.294840E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1418952,fr,1,4.150000E+00,5.359200E-01,4.294840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1418953,fr,1,4.150000E+00,5.359200E-01,4.294840E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1418961,fr,2,4.150000E+00,5.359200E-01,4.294840E+01,5.000000E+00,Active Shallow Crust,1.288981E+02,8.999376E+01,0.000000E+00 +1418964,fr,2,4.250000E+00,5.359200E-01,4.294840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1418976,fr,1,4.350000E+00,5.359200E-01,4.294840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1418978,fr,1,4.350000E+00,5.359200E-01,4.294840E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1418979,fr,2,4.350000E+00,5.359200E-01,4.294840E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.799581E+01,0.000000E+00 +1418982,fr,1,4.350000E+00,5.359200E-01,4.294840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1418988,fr,1,4.450000E+00,5.359200E-01,4.294840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1419012,fr,1,4.650000E+00,5.359200E-01,4.294840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1419021,fr,1,4.650000E+00,5.359200E-01,4.294840E+01,5.000000E+00,Active Shallow Crust,1.288920E+02,8.998703E+01,0.000000E+00 +1419024,fr,1,4.750000E+00,5.359200E-01,4.294840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1419086,fr,1,5.250000E+00,5.359200E-01,4.294840E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1419156,fr,1,5.850000E+00,5.359200E-01,4.294840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1419173,fr,1,5.950000E+00,5.359200E-01,4.294840E+01,2.750000E+01,Active Shallow Crust,2.400462E+02,5.799974E+01,0.000000E+00 +1419381,fr,1,3.650000E+00,6.882930E+00,4.286667E+01,5.000000E+00,Active Shallow Crust,1.289011E+02,8.996346E+01,0.000000E+00 +1419840,fr,1,3.550000E+00,2.430130E+00,5.090324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1419844,fr,1,3.550000E+00,2.430130E+00,5.090324E+01,1.500000E+01,Active Shallow Crust,2.400126E+02,5.799818E+01,0.000000E+00 +1419865,fr,1,3.750000E+00,2.430130E+00,5.090324E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1419869,fr,1,3.750000E+00,2.430130E+00,5.090324E+01,2.750000E+01,Active Shallow Crust,2.400086E+02,5.801777E+01,0.000000E+00 +1419876,fr,2,3.850000E+00,2.430130E+00,5.090324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +1419912,fr,1,4.150000E+00,2.430130E+00,5.090324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +1419913,fr,1,4.150000E+00,2.430130E+00,5.090324E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +1419939,fr,1,4.350000E+00,2.430130E+00,5.090324E+01,5.000000E+00,Active Shallow Crust,2.400096E+02,5.799605E+01,0.000000E+00 +1419948,fr,1,4.450000E+00,2.430130E+00,5.090324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1420345,fr,1,3.750000E+00,-6.205830E+00,4.883776E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1420800,fr,1,3.550000E+00,4.564480E+00,4.283936E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999261E+01,0.000000E+00 +1421280,fr,1,3.550000E+00,-2.915000E-01,4.921507E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1421292,fr,1,3.650000E+00,-2.915000E-01,4.921507E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1421301,fr,1,3.650000E+00,-2.915000E-01,4.921507E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.996349E+01,0.000000E+00 +1421304,fr,1,3.750000E+00,-2.915000E-01,4.921507E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1421310,fr,1,3.750000E+00,-2.915000E-01,4.921507E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +1421316,fr,2,3.850000E+00,-2.915000E-01,4.921507E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1421318,fr,1,3.850000E+00,-2.915000E-01,4.921507E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1421328,fr,1,3.950000E+00,-2.915000E-01,4.921507E+01,5.000000E+00,Active Shallow Crust,3.599999E+02,8.999013E+01,0.000000E+00 +1421341,fr,1,4.050000E+00,-2.915000E-01,4.921507E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1421352,fr,2,4.150000E+00,-2.915000E-01,4.921507E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1421385,fr,1,4.350000E+00,-2.915000E-01,4.921507E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.998275E+01,0.000000E+00 +1421520,fr,1,5.550000E+00,-2.915000E-01,4.921507E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1421760,fr,3,3.550000E+00,5.948200E+00,4.488209E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999285E+01,0.000000E+00 +1421761,fr,1,3.550000E+00,5.948200E+00,4.488209E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999285E+01,0.000000E+00 +1421767,fr,1,3.550000E+00,5.948200E+00,4.488209E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999277E+01,-9.000000E+01 +1421786,fr,1,3.750000E+00,5.948200E+00,4.488209E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998865E+01,0.000000E+00 +1421790,fr,1,3.750000E+00,5.948200E+00,4.488209E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998852E+01,-9.000000E+01 +1421797,fr,1,3.850000E+00,5.948200E+00,4.488209E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1421808,fr,1,3.950000E+00,5.948200E+00,4.488209E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999098E+01,0.000000E+00 +1421820,fr,1,4.050000E+00,5.948200E+00,4.488209E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999197E+01,0.000000E+00 +1421867,fr,1,4.350000E+00,5.948200E+00,4.488209E+01,2.750000E+01,Active Shallow Crust,1.288975E+02,8.998296E+01,0.000000E+00 +1421871,fr,1,4.450000E+00,5.948200E+00,4.488209E+01,5.000000E+00,Active Shallow Crust,2.400046E+02,5.799482E+01,0.000000E+00 +1421922,fr,1,4.850000E+00,5.948200E+00,4.488209E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,-9.000000E+01 +1422240,fr,1,3.550000E+00,-1.106710E+00,4.579698E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1422246,fr,1,3.550000E+00,-1.106710E+00,4.579698E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,-9.000000E+01 +1422250,fr,1,3.550000E+00,-1.106710E+00,4.579698E+01,1.500000E+01,Active Shallow Crust,1.288964E+02,8.999385E+01,0.000000E+00 +1422252,fr,1,3.650000E+00,-1.106710E+00,4.579698E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +1422253,fr,1,3.650000E+00,-1.106710E+00,4.579698E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +1422264,fr,1,3.750000E+00,-1.106710E+00,4.579698E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1422267,fr,1,3.750000E+00,-1.106710E+00,4.579698E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801755E+01,0.000000E+00 +1422269,fr,1,3.750000E+00,-1.106710E+00,4.579698E+01,2.750000E+01,Active Shallow Crust,2.400085E+02,5.801755E+01,0.000000E+00 +1422276,fr,1,3.850000E+00,-1.106710E+00,4.579698E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1422286,fr,1,3.850000E+00,-1.106710E+00,4.579698E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.999316E+01,0.000000E+00 +1422300,fr,1,4.050000E+00,-1.106710E+00,4.579698E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1422312,fr,1,4.150000E+00,-1.106710E+00,4.579698E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +1422314,fr,1,4.150000E+00,-1.106710E+00,4.579698E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +1422806,fr,1,4.250000E+00,-4.817410E+00,4.993354E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999130E+01,0.000000E+00 +1423200,fr,1,3.550000E+00,4.758520E+00,4.616208E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999302E+01,0.000000E+00 +1423204,fr,1,3.550000E+00,4.758520E+00,4.616208E+01,1.500000E+01,Active Shallow Crust,2.400116E+02,5.799843E+01,0.000000E+00 +1423215,fr,1,3.650000E+00,4.758520E+00,4.616208E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801235E+01,0.000000E+00 +1423224,fr,1,3.750000E+00,4.758520E+00,4.616208E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +1423233,fr,1,3.750000E+00,4.758520E+00,4.616208E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.996748E+01,0.000000E+00 +1423236,fr,2,3.850000E+00,4.758520E+00,4.616208E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1423274,fr,1,4.150000E+00,4.758520E+00,4.616208E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +1423280,fr,1,4.150000E+00,4.758520E+00,4.616208E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998938E+01,-9.000000E+01 +1423287,fr,1,4.250000E+00,4.758520E+00,4.616208E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.799376E+01,0.000000E+00 +1423392,fr,1,5.150000E+00,4.758520E+00,4.616208E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1424160,fr,1,3.550000E+00,5.752100E+00,4.192063E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999250E+01,0.000000E+00 +1424220,fr,1,4.050000E+00,5.752100E+00,4.192063E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999156E+01,0.000000E+00 +1425120,fr,1,3.550000E+00,5.577420E+00,4.653179E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999306E+01,0.000000E+00 +1425121,fr,1,3.550000E+00,5.577420E+00,4.653179E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999306E+01,0.000000E+00 +1425123,fr,1,3.550000E+00,5.577420E+00,4.653179E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799916E+01,0.000000E+00 +1425132,fr,2,3.650000E+00,5.577420E+00,4.653179E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998763E+01,0.000000E+00 +1425135,fr,1,3.650000E+00,5.577420E+00,4.653179E+01,5.000000E+00,Active Shallow Crust,2.400006E+02,5.801380E+01,0.000000E+00 +1425144,fr,1,3.750000E+00,5.577420E+00,4.653179E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +1425145,fr,1,3.750000E+00,5.577420E+00,4.653179E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +1425157,fr,1,3.850000E+00,5.577420E+00,4.653179E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1425192,fr,1,4.150000E+00,5.577420E+00,4.653179E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +1425261,fr,1,4.650000E+00,5.577420E+00,4.653179E+01,5.000000E+00,Active Shallow Crust,1.288908E+02,8.998721E+01,0.000000E+00 +1425633,fr,1,3.750000E+00,9.509690E+00,4.927684E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.996754E+01,0.000000E+00 +1425636,fr,1,3.850000E+00,9.509690E+00,4.927684E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +1425649,fr,1,3.950000E+00,9.509690E+00,4.927684E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999170E+01,0.000000E+00 +1425673,fr,1,4.150000E+00,9.509690E+00,4.927684E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998681E+01,0.000000E+00 +1425684,fr,1,4.250000E+00,9.509690E+00,4.927684E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998824E+01,0.000000E+00 +1426080,fr,2,3.550000E+00,-3.381550E+00,4.307241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +1426081,fr,1,3.550000E+00,-3.381550E+00,4.307241E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +1426104,fr,1,3.750000E+00,-3.381550E+00,4.307241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +1426113,fr,1,3.750000E+00,-3.381550E+00,4.307241E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.996743E+01,0.000000E+00 +1426116,fr,1,3.850000E+00,-3.381550E+00,4.307241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +1426119,fr,1,3.850000E+00,-3.381550E+00,4.307241E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799733E+01,0.000000E+00 +1426131,fr,1,3.950000E+00,-3.381550E+00,4.307241E+01,5.000000E+00,Active Shallow Crust,2.400192E+02,5.800489E+01,0.000000E+00 +1426132,fr,1,3.950000E+00,-3.381550E+00,4.307241E+01,1.500000E+01,Active Shallow Crust,2.400192E+02,5.800489E+01,0.000000E+00 +1426140,fr,1,4.050000E+00,-3.381550E+00,4.307241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1426188,fr,1,4.450000E+00,-3.381550E+00,4.307241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +1426215,fr,1,4.650000E+00,-3.381550E+00,4.307241E+01,5.000000E+00,Active Shallow Crust,2.400096E+02,5.799412E+01,0.000000E+00 +1426227,fr,1,4.750000E+00,-3.381550E+00,4.307241E+01,5.000000E+00,Active Shallow Crust,2.400062E+02,5.800433E+01,0.000000E+00 +1426260,fr,1,5.050000E+00,-3.381550E+00,4.307241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1426332,fr,1,5.650000E+00,-3.381550E+00,4.307241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1426560,fr,1,3.550000E+00,2.037810E+00,4.192502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +1426570,fr,1,3.550000E+00,2.037810E+00,4.192502E+01,1.500000E+01,Active Shallow Crust,1.288968E+02,8.999438E+01,0.000000E+00 +1426573,fr,2,3.650000E+00,2.037810E+00,4.192502E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1426576,fr,1,3.650000E+00,2.037810E+00,4.192502E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801305E+01,0.000000E+00 +1426585,fr,2,3.750000E+00,2.037810E+00,4.192502E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999106E+01,0.000000E+00 +1426596,fr,2,3.850000E+00,2.037810E+00,4.192502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +1426644,fr,1,4.250000E+00,2.037810E+00,4.192502E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1426669,fr,1,4.450000E+00,2.037810E+00,4.192502E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +1427044,fr,1,3.550000E+00,-1.845220E+00,4.228456E+01,1.500000E+01,Active Shallow Crust,2.400114E+02,5.799834E+01,0.000000E+00 +1427063,fr,1,3.650000E+00,-1.845220E+00,4.228456E+01,2.750000E+01,Active Shallow Crust,1.289005E+02,8.996358E+01,0.000000E+00 +1427064,fr,1,3.750000E+00,-1.845220E+00,4.228456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +1427076,fr,1,3.850000E+00,-1.845220E+00,4.228456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1427082,fr,1,3.850000E+00,-1.845220E+00,4.228456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,-9.000000E+01 +1427100,fr,1,4.050000E+00,-1.845220E+00,4.228456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1427136,fr,1,4.350000E+00,-1.845220E+00,4.228456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +1427571,fr,1,3.950000E+00,4.603410E+00,4.324549E+01,5.000000E+00,Active Shallow Crust,2.400203E+02,5.800492E+01,0.000000E+00 +1427610,fr,1,4.250000E+00,4.603410E+00,4.324549E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +1427688,fr,1,4.950000E+00,4.603410E+00,4.324549E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +1428001,fr,1,3.550000E+00,9.362500E-01,4.189527E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1428012,fr,1,3.650000E+00,9.362500E-01,4.189527E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1428073,fr,1,4.150000E+00,9.362500E-01,4.189527E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1428080,fr,1,4.150000E+00,9.362500E-01,4.189527E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1428960,fr,2,3.550000E+00,1.622200E-01,4.963743E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1428972,fr,1,3.650000E+00,1.622200E-01,4.963743E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1428984,fr,1,3.750000E+00,1.622200E-01,4.963743E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1428987,fr,1,3.750000E+00,1.622200E-01,4.963743E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.801762E+01,0.000000E+00 +1428997,fr,1,3.850000E+00,1.622200E-01,4.963743E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1428999,fr,1,3.850000E+00,1.622200E-01,4.963743E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799788E+01,0.000000E+00 +1429005,fr,1,3.850000E+00,1.622200E-01,4.963743E+01,5.000000E+00,Active Shallow Crust,1.288953E+02,8.999371E+01,0.000000E+00 +1429020,fr,1,4.050000E+00,1.622200E-01,4.963743E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1429041,fr,1,4.150000E+00,1.622200E-01,4.963743E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.999371E+01,0.000000E+00 +1429044,fr,1,4.250000E+00,1.622200E-01,4.963743E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1429047,fr,1,4.250000E+00,1.622200E-01,4.963743E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799420E+01,0.000000E+00 +1429059,fr,1,4.350000E+00,1.622200E-01,4.963743E+01,5.000000E+00,Active Shallow Crust,2.400092E+02,5.799607E+01,0.000000E+00 +1429071,fr,1,4.450000E+00,1.622200E-01,4.963743E+01,5.000000E+00,Active Shallow Crust,2.400061E+02,5.799483E+01,0.000000E+00 +1429082,fr,1,4.550000E+00,1.622200E-01,4.963743E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1429092,fr,1,4.650000E+00,1.622200E-01,4.963743E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1429440,fr,2,3.550000E+00,5.861000E-01,4.673964E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +1429443,fr,1,3.550000E+00,5.861000E-01,4.673964E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799820E+01,0.000000E+00 +1429453,fr,1,3.650000E+00,5.861000E-01,4.673964E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1429456,fr,1,3.650000E+00,5.861000E-01,4.673964E+01,1.500000E+01,Active Shallow Crust,2.400010E+02,5.801284E+01,0.000000E+00 +1429461,fr,1,3.650000E+00,5.861000E-01,4.673964E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.996353E+01,0.000000E+00 +1429462,fr,1,3.650000E+00,5.861000E-01,4.673964E+01,1.500000E+01,Active Shallow Crust,1.289005E+02,8.996353E+01,0.000000E+00 +1429464,fr,1,3.750000E+00,5.861000E-01,4.673964E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +1429476,fr,1,3.850000E+00,5.861000E-01,4.673964E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1429477,fr,1,3.850000E+00,5.861000E-01,4.673964E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1429485,fr,1,3.850000E+00,5.861000E-01,4.673964E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999358E+01,0.000000E+00 +1429489,fr,1,3.950000E+00,5.861000E-01,4.673964E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1429500,fr,1,4.050000E+00,5.861000E-01,4.673964E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1429503,fr,1,4.050000E+00,5.861000E-01,4.673964E+01,5.000000E+00,Active Shallow Crust,2.400059E+02,5.800592E+01,0.000000E+00 +1429537,fr,1,4.350000E+00,5.861000E-01,4.673964E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1429561,fr,1,4.550000E+00,5.861000E-01,4.673964E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1429576,fr,1,4.650000E+00,5.861000E-01,4.673964E+01,1.500000E+01,Active Shallow Crust,2.400109E+02,5.799422E+01,0.000000E+00 +1429593,fr,1,4.750000E+00,5.861000E-01,4.673964E+01,5.000000E+00,Active Shallow Crust,1.288886E+02,8.998813E+01,0.000000E+00 +1429595,fr,1,4.750000E+00,5.861000E-01,4.673964E+01,2.750000E+01,Active Shallow Crust,1.288886E+02,8.998813E+01,0.000000E+00 +1429645,fr,1,5.250000E+00,5.861000E-01,4.673964E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1429920,fr,4,3.550000E+00,1.960250E+00,5.050096E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +1429950,fr,1,3.750000E+00,1.960250E+00,5.050096E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +1429967,fr,1,3.850000E+00,1.960250E+00,5.050096E+01,2.750000E+01,Active Shallow Crust,1.288952E+02,8.999376E+01,0.000000E+00 +1429992,fr,1,4.150000E+00,1.960250E+00,5.050096E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1430006,fr,1,4.250000E+00,1.960250E+00,5.050096E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1430124,fr,1,5.250000E+00,1.960250E+00,5.050096E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1430400,fr,1,3.550000E+00,-1.724840E+00,4.614973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1430401,fr,1,3.550000E+00,-1.724840E+00,4.614973E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1430482,fr,1,4.150000E+00,-1.724840E+00,4.614973E+01,1.500000E+01,Active Shallow Crust,1.288976E+02,8.999344E+01,0.000000E+00 +1431379,fr,1,3.650000E+00,4.082910E+00,4.196663E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999324E+01,-9.000000E+01 +1431396,fr,1,3.850000E+00,4.082910E+00,4.196663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +1431417,fr,1,3.950000E+00,4.082910E+00,4.196663E+01,5.000000E+00,Active Shallow Crust,1.289010E+02,8.999290E+01,0.000000E+00 +1431433,fr,1,4.150000E+00,4.082910E+00,4.196663E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +1431540,fr,1,5.050000E+00,4.082910E+00,4.196663E+01,5.000000E+00,Active Shallow Crust,3.599993E+02,8.999066E+01,0.000000E+00 +1431840,fr,2,3.550000E+00,-4.330730E+00,4.876194E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998670E+01,0.000000E+00 +1431841,fr,1,3.550000E+00,-4.330730E+00,4.876194E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998670E+01,0.000000E+00 +1431852,fr,1,3.650000E+00,-4.330730E+00,4.876194E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998815E+01,0.000000E+00 +1431861,fr,1,3.650000E+00,-4.330730E+00,4.876194E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.996357E+01,0.000000E+00 +1431864,fr,2,3.750000E+00,-4.330730E+00,4.876194E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +1431865,fr,1,3.750000E+00,-4.330730E+00,4.876194E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +1431870,fr,1,3.750000E+00,-4.330730E+00,4.876194E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998932E+01,-9.000000E+01 +1431877,fr,1,3.850000E+00,-4.330730E+00,4.876194E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +1431878,fr,1,3.850000E+00,-4.330730E+00,4.876194E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +1431906,fr,1,4.050000E+00,-4.330730E+00,4.876194E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,-9.000000E+01 +1431912,fr,1,4.150000E+00,-4.330730E+00,4.876194E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1431925,fr,1,4.250000E+00,-4.330730E+00,4.876194E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999109E+01,0.000000E+00 +1431974,fr,1,4.650000E+00,-4.330730E+00,4.876194E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +1432350,fr,1,3.750000E+00,5.713300E-01,4.780708E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,-9.000000E+01 +1432354,fr,1,3.750000E+00,5.713300E-01,4.780708E+01,1.500000E+01,Active Shallow Crust,1.288966E+02,8.996733E+01,0.000000E+00 +1432357,fr,1,3.850000E+00,5.713300E-01,4.780708E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1432362,fr,1,3.850000E+00,5.713300E-01,4.780708E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,-9.000000E+01 +1432368,fr,1,3.950000E+00,5.713300E-01,4.780708E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1432380,fr,1,4.050000E+00,5.713300E-01,4.780708E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1432383,fr,1,4.050000E+00,5.713300E-01,4.780708E+01,5.000000E+00,Active Shallow Crust,2.400063E+02,5.800589E+01,0.000000E+00 +1432429,fr,1,4.450000E+00,5.713300E-01,4.780708E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1432807,fr,1,3.550000E+00,2.244780E+00,4.408442E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998901E+01,-9.000000E+01 +1432857,fr,1,3.950000E+00,2.244780E+00,4.408442E+01,5.000000E+00,Active Shallow Crust,1.289006E+02,8.999315E+01,0.000000E+00 +1432861,fr,1,4.050000E+00,2.244780E+00,4.408442E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1432872,fr,1,4.150000E+00,2.244780E+00,4.408442E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +1432896,fr,1,4.350000E+00,2.244780E+00,4.408442E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1432980,fr,1,5.050000E+00,2.244780E+00,4.408442E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1433280,fr,2,3.550000E+00,1.771740E+00,4.601476E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +1433292,fr,1,3.650000E+00,1.771740E+00,4.601476E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +1433293,fr,2,3.650000E+00,1.771740E+00,4.601476E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +1433304,fr,1,3.750000E+00,1.771740E+00,4.601476E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1433318,fr,1,3.850000E+00,1.771740E+00,4.601476E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1433320,fr,1,3.850000E+00,1.771740E+00,4.601476E+01,1.500000E+01,Active Shallow Crust,2.400107E+02,5.799785E+01,0.000000E+00 +1433328,fr,1,3.950000E+00,1.771740E+00,4.601476E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1433341,fr,1,4.050000E+00,1.771740E+00,4.601476E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1433352,fr,1,4.150000E+00,1.771740E+00,4.601476E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +1433424,fr,1,4.750000E+00,1.771740E+00,4.601476E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1433436,fr,1,4.850000E+00,1.771740E+00,4.601476E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1433449,fr,1,4.950000E+00,1.771740E+00,4.601476E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1433472,fr,1,5.150000E+00,1.771740E+00,4.601476E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1433772,fr,1,3.650000E+00,3.348890E+00,5.066885E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998861E+01,0.000000E+00 +1433775,fr,1,3.650000E+00,3.348890E+00,5.066885E+01,5.000000E+00,Active Shallow Crust,2.400021E+02,5.801262E+01,0.000000E+00 +1433784,fr,1,3.750000E+00,3.348890E+00,5.066885E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1433832,fr,1,4.150000E+00,3.348890E+00,5.066885E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1433844,fr,1,4.250000E+00,3.348890E+00,5.066885E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1433892,fr,1,4.650000E+00,3.348890E+00,5.066885E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1434000,fr,1,5.550000E+00,3.348890E+00,5.066885E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1434732,fr,1,3.650000E+00,-6.048570E+00,4.871836E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998814E+01,0.000000E+00 +1434757,fr,1,3.850000E+00,-6.048570E+00,4.871836E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +1434768,fr,1,3.950000E+00,-6.048570E+00,4.871836E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999161E+01,0.000000E+00 +1435210,fr,1,3.550000E+00,1.022610E+00,4.353591E+01,1.500000E+01,Active Shallow Crust,1.288962E+02,8.999361E+01,0.000000E+00 +1435221,fr,1,3.650000E+00,1.022610E+00,4.353591E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996347E+01,0.000000E+00 +1435227,fr,1,3.750000E+00,1.022610E+00,4.353591E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.801749E+01,0.000000E+00 +1435285,fr,1,4.250000E+00,1.022610E+00,4.353591E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1435680,fr,3,3.550000E+00,2.821520E+00,4.548574E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +1435681,fr,2,3.550000E+00,2.821520E+00,4.548574E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +1435692,fr,1,3.650000E+00,2.821520E+00,4.548574E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +1435695,fr,1,3.650000E+00,2.821520E+00,4.548574E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801247E+01,0.000000E+00 +1435704,fr,1,3.750000E+00,2.821520E+00,4.548574E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998877E+01,0.000000E+00 +1435708,fr,1,3.750000E+00,2.821520E+00,4.548574E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.801711E+01,0.000000E+00 +1435713,fr,1,3.750000E+00,2.821520E+00,4.548574E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996748E+01,0.000000E+00 +1435728,fr,1,3.950000E+00,2.821520E+00,4.548574E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999108E+01,0.000000E+00 +1435740,fr,1,4.050000E+00,2.821520E+00,4.548574E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1435758,fr,1,4.150000E+00,2.821520E+00,4.548574E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998925E+01,-9.000000E+01 +1435777,fr,1,4.350000E+00,2.821520E+00,4.548574E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1435824,fr,1,4.750000E+00,2.821520E+00,4.548574E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1435867,fr,1,5.050000E+00,2.821520E+00,4.548574E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,-9.000000E+01 +1435958,fr,1,5.850000E+00,2.821520E+00,4.548574E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1437145,fr,1,3.750000E+00,-3.918160E+00,5.041673E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1437330,fr,1,5.250000E+00,-3.918160E+00,5.041673E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,-9.000000E+01 +1438080,fr,1,3.550000E+00,3.537430E+00,4.966995E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1438104,fr,1,3.750000E+00,3.537430E+00,4.966995E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +1438135,fr,1,3.950000E+00,3.537430E+00,4.966995E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +1438176,fr,1,4.350000E+00,3.537430E+00,4.966995E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +1438560,fr,9,3.550000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998660E+01,0.000000E+00 +1438561,fr,6,3.550000E+00,9.044090E+00,4.834450E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998660E+01,0.000000E+00 +1438562,fr,1,3.550000E+00,9.044090E+00,4.834450E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998660E+01,0.000000E+00 +1438563,fr,1,3.550000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,2.400102E+02,5.799835E+01,0.000000E+00 +1438564,fr,1,3.550000E+00,9.044090E+00,4.834450E+01,1.500000E+01,Active Shallow Crust,2.400102E+02,5.799835E+01,0.000000E+00 +1438565,fr,1,3.550000E+00,9.044090E+00,4.834450E+01,2.750000E+01,Active Shallow Crust,2.400102E+02,5.799825E+01,0.000000E+00 +1438566,fr,3,3.550000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998644E+01,-9.000000E+01 +1438567,fr,2,3.550000E+00,9.044090E+00,4.834450E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998644E+01,-9.000000E+01 +1438569,fr,2,3.550000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,1.288973E+02,8.999330E+01,0.000000E+00 +1438572,fr,14,3.650000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998805E+01,0.000000E+00 +1438573,fr,4,3.650000E+00,9.044090E+00,4.834450E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998805E+01,0.000000E+00 +1438574,fr,1,3.650000E+00,9.044090E+00,4.834450E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998805E+01,0.000000E+00 +1438575,fr,1,3.650000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801398E+01,0.000000E+00 +1438578,fr,1,3.650000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998792E+01,-9.000000E+01 +1438579,fr,2,3.650000E+00,9.044090E+00,4.834450E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998792E+01,-9.000000E+01 +1438580,fr,1,3.650000E+00,9.044090E+00,4.834450E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998792E+01,-9.000000E+01 +1438581,fr,2,3.650000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996356E+01,0.000000E+00 +1438584,fr,10,3.750000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +1438585,fr,2,3.750000E+00,9.044090E+00,4.834450E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +1438587,fr,3,3.750000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,2.400070E+02,5.801873E+01,0.000000E+00 +1438588,fr,2,3.750000E+00,9.044090E+00,4.834450E+01,1.500000E+01,Active Shallow Crust,2.400070E+02,5.801873E+01,0.000000E+00 +1438590,fr,2,3.750000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,-9.000000E+01 +1438591,fr,1,3.750000E+00,9.044090E+00,4.834450E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998923E+01,-9.000000E+01 +1438594,fr,1,3.750000E+00,9.044090E+00,4.834450E+01,1.500000E+01,Active Shallow Crust,1.288964E+02,8.996752E+01,0.000000E+00 +1438596,fr,5,3.850000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +1438597,fr,1,3.850000E+00,9.044090E+00,4.834450E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +1438598,fr,4,3.850000E+00,9.044090E+00,4.834450E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +1438599,fr,2,3.850000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799665E+01,0.000000E+00 +1438602,fr,1,3.850000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,-9.000000E+01 +1438603,fr,1,3.850000E+00,9.044090E+00,4.834450E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999040E+01,-9.000000E+01 +1438605,fr,1,3.850000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999525E+01,0.000000E+00 +1438606,fr,1,3.850000E+00,9.044090E+00,4.834450E+01,1.500000E+01,Active Shallow Crust,1.288956E+02,8.999525E+01,0.000000E+00 +1438608,fr,5,3.950000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999154E+01,0.000000E+00 +1438609,fr,5,3.950000E+00,9.044090E+00,4.834450E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999154E+01,0.000000E+00 +1438611,fr,2,3.950000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,2.400203E+02,5.800459E+01,0.000000E+00 +1438614,fr,1,3.950000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999145E+01,-9.000000E+01 +1438615,fr,1,3.950000E+00,9.044090E+00,4.834450E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999145E+01,-9.000000E+01 +1438616,fr,1,3.950000E+00,9.044090E+00,4.834450E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999145E+01,-9.000000E+01 +1438617,fr,1,3.950000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,1.288995E+02,8.999577E+01,0.000000E+00 +1438620,fr,8,4.050000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999246E+01,0.000000E+00 +1438622,fr,1,4.050000E+00,9.044090E+00,4.834450E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999246E+01,0.000000E+00 +1438623,fr,1,4.050000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,2.400071E+02,5.800546E+01,0.000000E+00 +1438632,fr,5,4.150000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999328E+01,0.000000E+00 +1438633,fr,2,4.150000E+00,9.044090E+00,4.834450E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999328E+01,0.000000E+00 +1438634,fr,1,4.150000E+00,9.044090E+00,4.834450E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999328E+01,0.000000E+00 +1438635,fr,2,4.150000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.799757E+01,0.000000E+00 +1438637,fr,1,4.150000E+00,9.044090E+00,4.834450E+01,2.750000E+01,Active Shallow Crust,2.400089E+02,5.799754E+01,0.000000E+00 +1438638,fr,1,4.150000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999320E+01,-9.000000E+01 +1438641,fr,2,4.150000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,1.288974E+02,8.999329E+01,0.000000E+00 +1438642,fr,1,4.150000E+00,9.044090E+00,4.834450E+01,1.500000E+01,Active Shallow Crust,1.288974E+02,8.999329E+01,0.000000E+00 +1438643,fr,1,4.150000E+00,9.044090E+00,4.834450E+01,2.750000E+01,Active Shallow Crust,1.288974E+02,8.999329E+01,0.000000E+00 +1438644,fr,3,4.250000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998802E+01,0.000000E+00 +1438647,fr,1,4.250000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.799477E+01,0.000000E+00 +1438650,fr,1,4.250000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998788E+01,-9.000000E+01 +1438654,fr,1,4.250000E+00,9.044090E+00,4.834450E+01,1.500000E+01,Active Shallow Crust,1.288938E+02,8.998102E+01,0.000000E+00 +1438655,fr,1,4.250000E+00,9.044090E+00,4.834450E+01,2.750000E+01,Active Shallow Crust,1.288938E+02,8.998102E+01,0.000000E+00 +1438656,fr,2,4.350000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1438658,fr,2,4.350000E+00,9.044090E+00,4.834450E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1438659,fr,2,4.350000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,2.400093E+02,5.799614E+01,0.000000E+00 +1438668,fr,2,4.450000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1438673,fr,1,4.450000E+00,9.044090E+00,4.834450E+01,2.750000E+01,Active Shallow Crust,2.400050E+02,5.799495E+01,0.000000E+00 +1438680,fr,4,4.550000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999152E+01,0.000000E+00 +1438682,fr,1,4.550000E+00,9.044090E+00,4.834450E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999152E+01,0.000000E+00 +1438689,fr,1,4.550000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,1.288942E+02,8.998575E+01,0.000000E+00 +1438692,fr,1,4.650000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +1438693,fr,1,4.650000E+00,9.044090E+00,4.834450E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +1438695,fr,1,4.650000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799485E+01,0.000000E+00 +1438701,fr,1,4.650000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,1.288904E+02,8.998730E+01,0.000000E+00 +1438704,fr,1,4.750000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1438710,fr,1,4.750000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,-9.000000E+01 +1438716,fr,1,4.850000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +1438717,fr,1,4.850000E+00,9.044090E+00,4.834450E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +1438728,fr,1,4.950000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +1438729,fr,1,4.950000E+00,9.044090E+00,4.834450E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +1438767,fr,1,5.250000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,2.400269E+02,5.800056E+01,0.000000E+00 +1438770,fr,1,5.250000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,-9.000000E+01 +1438788,fr,1,5.450000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1438797,fr,1,5.450000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,1.288777E+02,8.998870E+01,0.000000E+00 +1438800,fr,1,5.550000E+00,9.044090E+00,4.834450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1438837,fr,1,5.850000E+00,9.044090E+00,4.834450E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1439040,fr,1,3.550000E+00,-8.492400E-01,4.513927E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1439064,fr,1,3.750000E+00,-8.492400E-01,4.513927E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1439065,fr,1,3.750000E+00,-8.492400E-01,4.513927E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1439571,fr,1,3.950000E+00,2.466600E+00,5.294728E+01,5.000000E+00,Active Shallow Crust,2.400206E+02,5.800544E+01,0.000000E+00 +1440041,fr,1,3.850000E+00,2.258250E+00,5.230838E+01,2.750000E+01,Active Shallow Crust,2.400118E+02,5.799787E+01,0.000000E+00 +1440481,fr,1,3.550000E+00,7.889070E+00,4.998724E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998703E+01,0.000000E+00 +1440482,fr,1,3.550000E+00,7.889070E+00,4.998724E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998703E+01,0.000000E+00 +1440492,fr,2,3.650000E+00,7.889070E+00,4.998724E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998844E+01,0.000000E+00 +1440493,fr,2,3.650000E+00,7.889070E+00,4.998724E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998844E+01,0.000000E+00 +1440505,fr,1,3.750000E+00,7.889070E+00,4.998724E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1440516,fr,1,3.850000E+00,7.889070E+00,4.998724E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999082E+01,0.000000E+00 +1440517,fr,1,3.850000E+00,7.889070E+00,4.998724E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999082E+01,0.000000E+00 +1440520,fr,1,3.850000E+00,7.889070E+00,4.998724E+01,1.500000E+01,Active Shallow Crust,2.400121E+02,5.799756E+01,0.000000E+00 +1440541,fr,1,4.050000E+00,7.889070E+00,4.998724E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998906E+01,0.000000E+00 +1440542,fr,1,4.050000E+00,7.889070E+00,4.998724E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998906E+01,0.000000E+00 +1440548,fr,1,4.050000E+00,7.889070E+00,4.998724E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998894E+01,-9.000000E+01 +1440552,fr,1,4.150000E+00,7.889070E+00,4.998724E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1440553,fr,1,4.150000E+00,7.889070E+00,4.998724E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1440564,fr,1,4.250000E+00,7.889070E+00,4.998724E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999131E+01,0.000000E+00 +1440585,fr,1,4.350000E+00,7.889070E+00,4.998724E+01,5.000000E+00,Active Shallow Crust,1.288974E+02,8.998270E+01,0.000000E+00 +1440600,fr,1,4.550000E+00,7.889070E+00,4.998724E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1440622,fr,1,4.650000E+00,7.889070E+00,4.998724E+01,1.500000E+01,Active Shallow Crust,1.288898E+02,8.998695E+01,0.000000E+00 +1440708,fr,1,5.450000E+00,7.889070E+00,4.998724E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1440972,fr,1,3.650000E+00,3.289720E+00,5.219981E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +1440984,fr,1,3.750000E+00,3.289720E+00,5.219981E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1441478,fr,1,3.850000E+00,-1.117700E-01,5.171504E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1441482,fr,1,3.850000E+00,-1.117700E-01,5.171504E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1441495,fr,1,3.950000E+00,-1.117700E-01,5.171504E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999003E+01,-9.000000E+01 +1441921,fr,1,3.550000E+00,2.347180E+00,4.908369E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1441926,fr,1,3.550000E+00,2.347180E+00,4.908369E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1441950,fr,1,3.750000E+00,2.347180E+00,4.908369E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998939E+01,-9.000000E+01 +1442400,fr,1,3.550000E+00,1.047910E+00,4.756987E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1442404,fr,1,3.550000E+00,1.047910E+00,4.756987E+01,1.500000E+01,Active Shallow Crust,2.400120E+02,5.799811E+01,0.000000E+00 +1442407,fr,1,3.550000E+00,1.047910E+00,4.756987E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998968E+01,-9.000000E+01 +1442413,fr,1,3.650000E+00,1.047910E+00,4.756987E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +1442415,fr,1,3.650000E+00,1.047910E+00,4.756987E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801285E+01,0.000000E+00 +1442439,fr,1,3.850000E+00,1.047910E+00,4.756987E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799792E+01,0.000000E+00 +1442462,fr,1,4.050000E+00,1.047910E+00,4.756987E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1442473,fr,1,4.150000E+00,1.047910E+00,4.756987E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1442571,fr,1,4.950000E+00,1.047910E+00,4.756987E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.800458E+01,0.000000E+00 +1442892,fr,1,3.650000E+00,1.044840E+00,4.394438E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1442898,fr,1,3.650000E+00,1.044840E+00,4.394438E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,-9.000000E+01 +1442958,fr,1,4.150000E+00,1.044840E+00,4.394438E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +1442968,fr,1,4.250000E+00,1.044840E+00,4.394438E+01,1.500000E+01,Active Shallow Crust,2.400070E+02,5.799390E+01,0.000000E+00 +1442991,fr,1,4.450000E+00,1.044840E+00,4.394438E+01,5.000000E+00,Active Shallow Crust,2.400046E+02,5.799453E+01,0.000000E+00 +1443384,fr,1,3.750000E+00,-5.705720E+00,4.627107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998893E+01,0.000000E+00 +1443396,fr,1,3.850000E+00,-5.705720E+00,4.627107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1443865,fr,1,3.750000E+00,-1.251250E+00,4.551159E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1443876,fr,1,3.850000E+00,-1.251250E+00,4.551159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1443915,fr,1,4.150000E+00,-1.251250E+00,4.551159E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799714E+01,0.000000E+00 +1444060,fr,1,5.350000E+00,-1.251250E+00,4.551159E+01,1.500000E+01,Active Shallow Crust,2.400243E+02,5.799775E+01,0.000000E+00 +1444320,fr,1,3.550000E+00,8.848620E+00,4.806965E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998653E+01,0.000000E+00 +1444321,fr,1,3.550000E+00,8.848620E+00,4.806965E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998653E+01,0.000000E+00 +1444333,fr,1,3.650000E+00,8.848620E+00,4.806965E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998799E+01,0.000000E+00 +1444346,fr,1,3.750000E+00,8.848620E+00,4.806965E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +1444348,fr,1,3.750000E+00,8.848620E+00,4.806965E+01,1.500000E+01,Active Shallow Crust,2.400093E+02,5.801587E+01,0.000000E+00 +1444353,fr,1,3.750000E+00,8.848620E+00,4.806965E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.996752E+01,0.000000E+00 +1444359,fr,1,3.850000E+00,8.848620E+00,4.806965E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799841E+01,0.000000E+00 +1444365,fr,1,3.850000E+00,8.848620E+00,4.806965E+01,5.000000E+00,Active Shallow Crust,1.288977E+02,8.999046E+01,0.000000E+00 +1444368,fr,1,3.950000E+00,8.848620E+00,4.806965E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999149E+01,0.000000E+00 +1444389,fr,1,4.050000E+00,8.848620E+00,4.806965E+01,5.000000E+00,Active Shallow Crust,1.288882E+02,8.999621E+01,0.000000E+00 +1444404,fr,1,4.250000E+00,8.848620E+00,4.806965E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998796E+01,0.000000E+00 +1444423,fr,1,4.350000E+00,8.848620E+00,4.806965E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998914E+01,-9.000000E+01 +1444441,fr,1,4.550000E+00,8.848620E+00,4.806965E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999148E+01,0.000000E+00 +1444464,fr,1,4.750000E+00,8.848620E+00,4.806965E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1444722,fr,1,6.850000E+00,8.848639E+00,4.806965E+01,1.330363E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +1444801,fr,1,3.550000E+00,-3.039250E+00,4.213752E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +1444803,fr,1,3.550000E+00,-3.039250E+00,4.213752E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799800E+01,0.000000E+00 +1444819,fr,1,3.650000E+00,-3.039250E+00,4.213752E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,-9.000000E+01 +1444873,fr,1,4.150000E+00,-3.039250E+00,4.213752E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +1445767,fr,1,3.550000E+00,-3.370750E+00,4.898629E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +1445772,fr,1,3.650000E+00,-3.370750E+00,4.898629E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999115E+01,0.000000E+00 +1445796,fr,1,3.850000E+00,-3.370750E+00,4.898629E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +1445832,fr,2,4.150000E+00,-3.370750E+00,4.898629E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1445913,fr,1,4.750000E+00,-3.370750E+00,4.898629E+01,5.000000E+00,Active Shallow Crust,1.288879E+02,8.998811E+01,0.000000E+00 +1446240,fr,1,3.550000E+00,2.415000E-01,4.977330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1446244,fr,1,3.550000E+00,2.415000E-01,4.977330E+01,1.500000E+01,Active Shallow Crust,2.400125E+02,5.799823E+01,0.000000E+00 +1446251,fr,1,3.550000E+00,2.415000E-01,4.977330E+01,2.750000E+01,Active Shallow Crust,1.288960E+02,8.999369E+01,0.000000E+00 +1446253,fr,1,3.650000E+00,2.415000E-01,4.977330E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1446262,fr,1,3.650000E+00,2.415000E-01,4.977330E+01,1.500000E+01,Active Shallow Crust,1.289001E+02,8.996351E+01,0.000000E+00 +1446264,fr,1,3.750000E+00,2.415000E-01,4.977330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1446270,fr,1,3.750000E+00,2.415000E-01,4.977330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +1446273,fr,1,3.750000E+00,2.415000E-01,4.977330E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.996735E+01,0.000000E+00 +1446276,fr,1,3.850000E+00,2.415000E-01,4.977330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1446288,fr,1,3.950000E+00,2.415000E-01,4.977330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1446446,fr,1,5.250000E+00,2.415000E-01,4.977330E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1446744,fr,1,3.750000E+00,2.634920E+00,5.155057E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1446745,fr,1,3.750000E+00,2.634920E+00,5.155057E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1446750,fr,1,3.750000E+00,2.634920E+00,5.155057E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,-9.000000E+01 +1446762,fr,1,3.850000E+00,2.634920E+00,5.155057E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999102E+01,-9.000000E+01 +1446766,fr,1,3.850000E+00,2.634920E+00,5.155057E+01,1.500000E+01,Active Shallow Crust,1.288952E+02,8.999445E+01,0.000000E+00 +1446784,fr,1,4.050000E+00,2.634920E+00,5.155057E+01,1.500000E+01,Active Shallow Crust,2.400069E+02,5.800572E+01,0.000000E+00 +1446793,fr,1,4.150000E+00,2.634920E+00,5.155057E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +1446816,fr,1,4.350000E+00,2.634920E+00,5.155057E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1446897,fr,1,4.950000E+00,2.634920E+00,5.155057E+01,5.000000E+00,Active Shallow Crust,1.288878E+02,8.998962E+01,0.000000E+00 +1447211,fr,1,3.550000E+00,6.630480E+00,4.909032E+01,2.750000E+01,Active Shallow Crust,1.288968E+02,8.999340E+01,0.000000E+00 +1447225,fr,2,3.750000E+00,6.630480E+00,4.909032E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1447230,fr,1,3.750000E+00,6.630480E+00,4.909032E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998939E+01,-9.000000E+01 +1447251,fr,1,3.950000E+00,6.630480E+00,4.909032E+01,5.000000E+00,Active Shallow Crust,2.400199E+02,5.800481E+01,0.000000E+00 +1447262,fr,1,4.050000E+00,6.630480E+00,4.909032E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998886E+01,0.000000E+00 +1447266,fr,1,4.050000E+00,6.630480E+00,4.909032E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998873E+01,-9.000000E+01 +1447272,fr,1,4.150000E+00,6.630480E+00,4.909032E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1447308,fr,1,4.450000E+00,6.630480E+00,4.909032E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1448160,fr,1,3.550000E+00,4.273400E-01,4.198154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1448242,fr,1,4.150000E+00,4.273400E-01,4.198154E+01,1.500000E+01,Active Shallow Crust,1.288982E+02,8.999378E+01,0.000000E+00 +1448641,fr,1,3.550000E+00,2.797260E+00,4.337898E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +1448653,fr,1,3.650000E+00,2.797260E+00,4.337898E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1448655,fr,1,3.650000E+00,2.797260E+00,4.337898E+01,5.000000E+00,Active Shallow Crust,2.400003E+02,5.801293E+01,0.000000E+00 +1448676,fr,1,3.850000E+00,2.797260E+00,4.337898E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +1448679,fr,1,3.850000E+00,2.797260E+00,4.337898E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.799772E+01,0.000000E+00 +1448688,fr,1,3.950000E+00,2.797260E+00,4.337898E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +1448714,fr,1,4.150000E+00,2.797260E+00,4.337898E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +1448773,fr,1,4.650000E+00,2.797260E+00,4.337898E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +1449120,fr,2,3.550000E+00,-1.182410E+00,4.249867E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999071E+01,0.000000E+00 +1449123,fr,1,3.550000E+00,-1.182410E+00,4.249867E+01,5.000000E+00,Active Shallow Crust,2.400115E+02,5.799820E+01,0.000000E+00 +1449130,fr,1,3.550000E+00,-1.182410E+00,4.249867E+01,1.500000E+01,Active Shallow Crust,1.288966E+02,8.999349E+01,0.000000E+00 +1449132,fr,1,3.650000E+00,-1.182410E+00,4.249867E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1449141,fr,1,3.650000E+00,-1.182410E+00,4.249867E+01,5.000000E+00,Active Shallow Crust,1.289012E+02,8.996345E+01,0.000000E+00 +1449144,fr,1,3.750000E+00,-1.182410E+00,4.249867E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +1449146,fr,1,3.750000E+00,-1.182410E+00,4.249867E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +1449147,fr,1,3.750000E+00,-1.182410E+00,4.249867E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.801738E+01,0.000000E+00 +1449151,fr,1,3.750000E+00,-1.182410E+00,4.249867E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998955E+01,-9.000000E+01 +1449156,fr,1,3.850000E+00,-1.182410E+00,4.249867E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +1449157,fr,2,3.850000E+00,-1.182410E+00,4.249867E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +1449158,fr,1,3.850000E+00,-1.182410E+00,4.249867E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +1449166,fr,1,3.850000E+00,-1.182410E+00,4.249867E+01,1.500000E+01,Active Shallow Crust,1.288959E+02,8.999408E+01,0.000000E+00 +1449170,fr,1,3.950000E+00,-1.182410E+00,4.249867E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +1449171,fr,1,3.950000E+00,-1.182410E+00,4.249867E+01,5.000000E+00,Active Shallow Crust,2.400193E+02,5.800487E+01,0.000000E+00 +1449181,fr,1,4.050000E+00,-1.182410E+00,4.249867E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +1449188,fr,1,4.050000E+00,-1.182410E+00,4.249867E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,-9.000000E+01 +1449204,fr,2,4.250000E+00,-1.182410E+00,4.249867E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1449217,fr,2,4.350000E+00,-1.182410E+00,4.249867E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +1449236,fr,1,4.450000E+00,-1.182410E+00,4.249867E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +1449372,fr,1,5.650000E+00,-1.182410E+00,4.249867E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1449609,fr,1,3.550000E+00,4.039360E+00,4.222934E+01,5.000000E+00,Active Shallow Crust,1.288971E+02,8.999253E+01,0.000000E+00 +1449639,fr,1,3.850000E+00,4.039360E+00,4.222934E+01,5.000000E+00,Active Shallow Crust,2.400098E+02,5.799856E+01,0.000000E+00 +1449648,fr,2,3.950000E+00,4.039360E+00,4.222934E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +1449661,fr,1,4.050000E+00,4.039360E+00,4.222934E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999160E+01,0.000000E+00 +1450080,fr,1,3.550000E+00,-2.993320E+00,4.725780E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +1450092,fr,1,3.650000E+00,-2.993320E+00,4.725780E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999085E+01,0.000000E+00 +1450095,fr,1,3.650000E+00,-2.993320E+00,4.725780E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801306E+01,0.000000E+00 +1450105,fr,2,3.750000E+00,-2.993320E+00,4.725780E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998913E+01,0.000000E+00 +1450170,fr,1,4.250000E+00,-2.993320E+00,4.725780E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,-9.000000E+01 +1450190,fr,1,4.450000E+00,-2.993320E+00,4.725780E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +1450479,fr,1,6.850000E+00,-3.019884E+00,4.728901E+01,1.141276E+01,Active Shallow Crust,2.401485E+02,5.799971E+01,0.000000E+00 +1451049,fr,1,3.550000E+00,-5.358970E+00,4.838333E+01,5.000000E+00,Active Shallow Crust,1.288955E+02,8.999330E+01,0.000000E+00 +1451052,fr,1,3.650000E+00,-5.358970E+00,4.838333E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998806E+01,0.000000E+00 +1451062,fr,1,3.650000E+00,-5.358970E+00,4.838333E+01,1.500000E+01,Active Shallow Crust,1.288996E+02,8.996356E+01,0.000000E+00 +1451094,fr,1,3.950000E+00,-5.358970E+00,4.838333E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999145E+01,-9.000000E+01 +1452000,fr,1,3.550000E+00,1.589330E+00,4.318387E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +1452006,fr,1,3.550000E+00,1.589330E+00,4.318387E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,-9.000000E+01 +1452012,fr,2,3.650000E+00,1.589330E+00,4.318387E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1452024,fr,1,3.750000E+00,1.589330E+00,4.318387E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1452030,fr,1,3.750000E+00,1.589330E+00,4.318387E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,-9.000000E+01 +1452037,fr,1,3.850000E+00,1.589330E+00,4.318387E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1452108,fr,1,4.450000E+00,1.589330E+00,4.318387E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1452480,fr,1,3.550000E+00,1.310440E+00,4.731944E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1452484,fr,1,3.550000E+00,1.310440E+00,4.731944E+01,1.500000E+01,Active Shallow Crust,2.400120E+02,5.799818E+01,0.000000E+00 +1452516,fr,1,3.850000E+00,1.310440E+00,4.731944E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +1452518,fr,1,3.850000E+00,1.310440E+00,4.731944E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +1452528,fr,1,3.950000E+00,1.310440E+00,4.731944E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1452543,fr,1,4.050000E+00,1.310440E+00,4.731944E+01,5.000000E+00,Active Shallow Crust,2.400060E+02,5.800600E+01,0.000000E+00 +1452960,fr,1,3.550000E+00,3.574600E-01,4.334087E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1452972,fr,1,3.650000E+00,3.574600E-01,4.334087E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1452974,fr,1,3.650000E+00,3.574600E-01,4.334087E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1452978,fr,1,3.650000E+00,3.574600E-01,4.334087E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,-9.000000E+01 +1453020,fr,1,4.050000E+00,3.574600E-01,4.334087E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1453057,fr,1,4.350000E+00,3.574600E-01,4.334087E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1453092,fr,2,4.650000E+00,3.574600E-01,4.334087E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1453442,fr,1,3.550000E+00,3.961190E+00,4.513629E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1453454,fr,1,3.650000E+00,3.961190E+00,4.513629E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1453464,fr,1,3.750000E+00,3.961190E+00,4.513629E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998870E+01,0.000000E+00 +1453465,fr,1,3.750000E+00,3.961190E+00,4.513629E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998870E+01,0.000000E+00 +1453476,fr,1,3.850000E+00,3.961190E+00,4.513629E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1453489,fr,1,3.950000E+00,3.961190E+00,4.513629E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999102E+01,0.000000E+00 +1453500,fr,3,4.050000E+00,3.961190E+00,4.513629E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1453524,fr,1,4.250000E+00,3.961190E+00,4.513629E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +1453527,fr,1,4.250000E+00,3.961190E+00,4.513629E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.799400E+01,0.000000E+00 +1453572,fr,1,4.650000E+00,3.961190E+00,4.513629E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1453584,fr,1,4.750000E+00,3.961190E+00,4.513629E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1453605,fr,1,4.850000E+00,3.961190E+00,4.513629E+01,5.000000E+00,Active Shallow Crust,1.288930E+02,8.998917E+01,0.000000E+00 +1454400,fr,2,3.550000E+00,-8.171700E-01,4.864944E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1454401,fr,1,3.550000E+00,-8.171700E-01,4.864944E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1454412,fr,2,3.650000E+00,-8.171700E-01,4.864944E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +1454413,fr,1,3.650000E+00,-8.171700E-01,4.864944E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +1454421,fr,1,3.650000E+00,-8.171700E-01,4.864944E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.996350E+01,0.000000E+00 +1454442,fr,1,3.850000E+00,-8.171700E-01,4.864944E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,-9.000000E+01 +1454463,fr,1,4.050000E+00,-8.171700E-01,4.864944E+01,5.000000E+00,Active Shallow Crust,2.400063E+02,5.800594E+01,0.000000E+00 +1454486,fr,1,4.250000E+00,-8.171700E-01,4.864944E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1454529,fr,1,4.550000E+00,-8.171700E-01,4.864944E+01,5.000000E+00,Active Shallow Crust,1.288934E+02,8.998576E+01,0.000000E+00 +1454544,fr,1,4.750000E+00,-8.171700E-01,4.864944E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1454881,fr,1,3.550000E+00,-4.873830E+00,4.938724E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998687E+01,0.000000E+00 +1454899,fr,1,3.650000E+00,-4.873830E+00,4.938724E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998817E+01,-9.000000E+01 +1455012,fr,1,4.650000E+00,-4.873830E+00,4.938724E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +1455360,fr,1,3.550000E+00,3.517740E+00,4.637082E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1455372,fr,1,3.650000E+00,3.517740E+00,4.637082E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +1455384,fr,1,3.750000E+00,3.517740E+00,4.637082E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +1455385,fr,1,3.750000E+00,3.517740E+00,4.637082E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +1455420,fr,1,4.050000E+00,3.517740E+00,4.637082E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1455865,fr,1,3.750000E+00,3.755570E+00,4.743401E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +1455876,fr,1,3.850000E+00,3.755570E+00,4.743401E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +1455877,fr,1,3.850000E+00,3.755570E+00,4.743401E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +1455907,fr,1,4.050000E+00,3.755570E+00,4.743401E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,-9.000000E+01 +1456368,fr,1,3.950000E+00,3.194400E+00,5.270500E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1456800,fr,1,3.550000E+00,-2.225000E-01,4.369610E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1456813,fr,1,3.650000E+00,-2.225000E-01,4.369610E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1456828,fr,1,3.750000E+00,-2.225000E-01,4.369610E+01,1.500000E+01,Active Shallow Crust,2.400080E+02,5.801750E+01,0.000000E+00 +1456836,fr,1,3.850000E+00,-2.225000E-01,4.369610E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1456909,fr,1,4.450000E+00,-2.225000E-01,4.369610E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1457281,fr,1,3.550000E+00,4.376190E+00,4.584853E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999297E+01,0.000000E+00 +1457283,fr,1,3.550000E+00,4.376190E+00,4.584853E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799758E+01,0.000000E+00 +1457292,fr,2,3.650000E+00,4.376190E+00,4.584853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998748E+01,0.000000E+00 +1457316,fr,1,3.850000E+00,4.376190E+00,4.584853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1457321,fr,1,3.850000E+00,4.376190E+00,4.584853E+01,2.750000E+01,Active Shallow Crust,2.400112E+02,5.799751E+01,0.000000E+00 +1457328,fr,1,3.950000E+00,4.376190E+00,4.584853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999113E+01,0.000000E+00 +1457337,fr,1,3.950000E+00,4.376190E+00,4.584853E+01,5.000000E+00,Active Shallow Crust,1.288997E+02,8.999335E+01,0.000000E+00 +1457354,fr,1,4.150000E+00,4.376190E+00,4.584853E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +1457358,fr,1,4.150000E+00,4.376190E+00,4.584853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998932E+01,-9.000000E+01 +1457364,fr,1,4.250000E+00,4.376190E+00,4.584853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +1457400,fr,1,4.550000E+00,4.376190E+00,4.584853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998889E+01,0.000000E+00 +1457610,fr,1,6.250000E+00,4.376194E+00,4.584853E+01,6.667607E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +1457869,fr,1,4.450000E+00,-5.744250E+00,4.709967E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1458241,fr,1,3.550000E+00,-3.933690E+00,4.743808E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1458251,fr,1,3.550000E+00,-3.933690E+00,4.743808E+01,2.750000E+01,Active Shallow Crust,1.288966E+02,8.999318E+01,0.000000E+00 +1458264,fr,1,3.750000E+00,-3.933690E+00,4.743808E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +1458265,fr,1,3.750000E+00,-3.933690E+00,4.743808E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +1458274,fr,1,3.750000E+00,-3.933690E+00,4.743808E+01,1.500000E+01,Active Shallow Crust,1.288962E+02,8.996751E+01,0.000000E+00 +1458290,fr,1,3.950000E+00,-3.933690E+00,4.743808E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +1458370,fr,1,4.550000E+00,-3.933690E+00,4.743808E+01,1.500000E+01,Active Shallow Crust,1.288937E+02,8.998569E+01,0.000000E+00 +1459308,fr,1,4.450000E+00,5.630130E+00,4.204022E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +1459689,fr,1,3.550000E+00,3.971510E+00,4.746589E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999319E+01,0.000000E+00 +1459692,fr,2,3.650000E+00,3.971510E+00,4.746589E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1459693,fr,1,3.650000E+00,3.971510E+00,4.746589E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1459701,fr,1,3.650000E+00,3.971510E+00,4.746589E+01,5.000000E+00,Active Shallow Crust,1.289012E+02,8.996326E+01,0.000000E+00 +1459704,fr,1,3.750000E+00,3.971510E+00,4.746589E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +1459717,fr,1,3.850000E+00,3.971510E+00,4.746589E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +1459752,fr,1,4.150000E+00,3.971510E+00,4.746589E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1459776,fr,1,4.350000E+00,3.971510E+00,4.746589E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +1459788,fr,1,4.450000E+00,3.971510E+00,4.746589E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1460161,fr,1,3.550000E+00,1.382980E+00,5.266916E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +1460172,fr,1,3.650000E+00,1.382980E+00,5.266916E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1460187,fr,1,3.750000E+00,1.382980E+00,5.266916E+01,5.000000E+00,Active Shallow Crust,2.400092E+02,5.801754E+01,0.000000E+00 +1460256,fr,1,4.350000E+00,1.382980E+00,5.266916E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1460328,fr,1,4.950000E+00,1.382980E+00,5.266916E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1460808,fr,1,4.950000E+00,2.431350E+00,5.256636E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1460874,fr,1,5.450000E+00,2.431350E+00,5.256636E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +1461132,fr,2,3.650000E+00,2.666900E-01,4.428554E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1461150,fr,1,3.750000E+00,2.666900E-01,4.428554E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +1461182,fr,1,4.050000E+00,2.666900E-01,4.428554E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1461612,fr,1,3.650000E+00,3.600250E+00,4.651230E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +1461697,fr,1,4.350000E+00,3.600250E+00,4.651230E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1461705,fr,1,4.350000E+00,3.600250E+00,4.651230E+01,5.000000E+00,Active Shallow Crust,1.288978E+02,8.998278E+01,0.000000E+00 +1462152,fr,2,4.150000E+00,8.676300E-01,4.433603E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1462172,fr,1,4.250000E+00,8.676300E-01,4.433603E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,-9.000000E+01 +1462177,fr,1,4.350000E+00,8.676300E-01,4.433603E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1462599,fr,1,3.850000E+00,-6.441800E-01,4.515765E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799766E+01,0.000000E+00 +1463040,fr,2,3.550000E+00,6.626320E+00,4.470215E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999284E+01,0.000000E+00 +1463041,fr,2,3.550000E+00,6.626320E+00,4.470215E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999284E+01,0.000000E+00 +1463044,fr,1,3.550000E+00,6.626320E+00,4.470215E+01,1.500000E+01,Active Shallow Crust,2.400130E+02,5.799687E+01,0.000000E+00 +1463046,fr,2,3.550000E+00,6.626320E+00,4.470215E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999275E+01,-9.000000E+01 +1463052,fr,5,3.650000E+00,6.626320E+00,4.470215E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998722E+01,0.000000E+00 +1463053,fr,2,3.650000E+00,6.626320E+00,4.470215E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998722E+01,0.000000E+00 +1463055,fr,1,3.650000E+00,6.626320E+00,4.470215E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801291E+01,0.000000E+00 +1463058,fr,2,3.650000E+00,6.626320E+00,4.470215E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998708E+01,-9.000000E+01 +1463061,fr,1,3.650000E+00,6.626320E+00,4.470215E+01,5.000000E+00,Active Shallow Crust,1.289014E+02,8.996349E+01,0.000000E+00 +1463064,fr,3,3.750000E+00,6.626320E+00,4.470215E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +1463065,fr,1,3.750000E+00,6.626320E+00,4.470215E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +1463067,fr,1,3.750000E+00,6.626320E+00,4.470215E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.801748E+01,0.000000E+00 +1463070,fr,2,3.750000E+00,6.626320E+00,4.470215E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998848E+01,-9.000000E+01 +1463079,fr,1,3.850000E+00,6.626320E+00,4.470215E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799737E+01,0.000000E+00 +1463098,fr,1,3.950000E+00,6.626320E+00,4.470215E+01,1.500000E+01,Active Shallow Crust,1.289006E+02,8.999548E+01,0.000000E+00 +1463100,fr,1,4.050000E+00,6.626320E+00,4.470215E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999194E+01,0.000000E+00 +1463101,fr,1,4.050000E+00,6.626320E+00,4.470215E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999194E+01,0.000000E+00 +1463106,fr,2,4.050000E+00,6.626320E+00,4.470215E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999184E+01,-9.000000E+01 +1463115,fr,1,4.150000E+00,6.626320E+00,4.470215E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799716E+01,0.000000E+00 +1463118,fr,1,4.150000E+00,6.626320E+00,4.470215E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998910E+01,-9.000000E+01 +1463124,fr,2,4.250000E+00,6.626320E+00,4.470215E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1463125,fr,1,4.250000E+00,6.626320E+00,4.470215E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1463127,fr,1,4.250000E+00,6.626320E+00,4.470215E+01,5.000000E+00,Active Shallow Crust,2.400066E+02,5.799405E+01,0.000000E+00 +1463136,fr,1,4.350000E+00,6.626320E+00,4.470215E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +1463139,fr,1,4.350000E+00,6.626320E+00,4.470215E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799588E+01,0.000000E+00 +1463140,fr,1,4.350000E+00,6.626320E+00,4.470215E+01,1.500000E+01,Active Shallow Crust,2.400080E+02,5.799588E+01,0.000000E+00 +1463145,fr,1,4.350000E+00,6.626320E+00,4.470215E+01,5.000000E+00,Active Shallow Crust,1.288979E+02,8.998296E+01,0.000000E+00 +1463150,fr,1,4.450000E+00,6.626320E+00,4.470215E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1463151,fr,1,4.450000E+00,6.626320E+00,4.470215E+01,5.000000E+00,Active Shallow Crust,2.400051E+02,5.799412E+01,0.000000E+00 +1463165,fr,1,4.550000E+00,6.626320E+00,4.470215E+01,2.750000E+01,Active Shallow Crust,2.400088E+02,5.799706E+01,0.000000E+00 +1463198,fr,1,4.850000E+00,6.626320E+00,4.470215E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +1463208,fr,1,4.950000E+00,6.626320E+00,4.470215E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1463246,fr,1,5.250000E+00,6.626320E+00,4.470215E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1463256,fr,1,5.350000E+00,6.626320E+00,4.470215E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1463268,fr,1,5.450000E+00,6.626320E+00,4.470215E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +1463304,fr,1,5.750000E+00,6.626320E+00,4.470215E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1463328,fr,1,5.950000E+00,6.626320E+00,4.470215E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1463520,fr,1,3.550000E+00,4.456600E-01,4.239369E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1463522,fr,1,3.550000E+00,4.456600E-01,4.239369E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1463532,fr,3,3.650000E+00,4.456600E-01,4.239369E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1463544,fr,1,3.750000E+00,4.456600E-01,4.239369E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1463556,fr,2,3.850000E+00,4.456600E-01,4.239369E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1463568,fr,1,3.950000E+00,4.456600E-01,4.239369E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1463577,fr,1,3.950000E+00,4.456600E-01,4.239369E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.999368E+01,0.000000E+00 +1463582,fr,1,4.050000E+00,4.456600E-01,4.239369E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1463586,fr,1,4.050000E+00,4.456600E-01,4.239369E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +1463589,fr,1,4.050000E+00,4.456600E-01,4.239369E+01,5.000000E+00,Active Shallow Crust,1.288910E+02,8.999372E+01,0.000000E+00 +1463590,fr,1,4.050000E+00,4.456600E-01,4.239369E+01,1.500000E+01,Active Shallow Crust,1.288910E+02,8.999372E+01,0.000000E+00 +1463592,fr,1,4.150000E+00,4.456600E-01,4.239369E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1463595,fr,1,4.150000E+00,4.456600E-01,4.239369E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799716E+01,0.000000E+00 +1463616,fr,1,4.350000E+00,4.456600E-01,4.239369E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1463652,fr,1,4.650000E+00,4.456600E-01,4.239369E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1463661,fr,1,4.650000E+00,4.456600E-01,4.239369E+01,5.000000E+00,Active Shallow Crust,1.288922E+02,8.998701E+01,0.000000E+00 +1463676,fr,2,4.850000E+00,4.456600E-01,4.239369E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1463712,fr,1,5.150000E+00,4.456600E-01,4.239369E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1464000,fr,1,3.550000E+00,8.250450E+00,4.567611E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998591E+01,0.000000E+00 +1464010,fr,1,3.550000E+00,8.250450E+00,4.567611E+01,1.500000E+01,Active Shallow Crust,1.288960E+02,8.999296E+01,0.000000E+00 +1464012,fr,2,3.650000E+00,8.250450E+00,4.567611E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998744E+01,0.000000E+00 +1464020,fr,1,3.650000E+00,8.250450E+00,4.567611E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998730E+01,-9.000000E+01 +1464048,fr,1,3.950000E+00,8.250450E+00,4.567611E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999111E+01,0.000000E+00 +1464057,fr,1,3.950000E+00,8.250450E+00,4.567611E+01,5.000000E+00,Active Shallow Crust,1.288996E+02,8.999555E+01,0.000000E+00 +1464060,fr,1,4.050000E+00,8.250450E+00,4.567611E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999207E+01,0.000000E+00 +1464073,fr,1,4.150000E+00,8.250450E+00,4.567611E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999294E+01,0.000000E+00 +1464096,fr,1,4.350000E+00,8.250450E+00,4.567611E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +1464133,fr,2,4.650000E+00,8.250450E+00,4.567611E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +1464167,fr,1,4.850000E+00,8.250450E+00,4.567611E+01,2.750000E+01,Active Shallow Crust,1.288932E+02,8.998898E+01,0.000000E+00 +1464250,fr,1,5.550000E+00,8.250450E+00,4.567611E+01,1.500000E+01,Active Shallow Crust,1.288766E+02,8.998974E+01,0.000000E+00 +1464480,fr,1,3.550000E+00,-4.954440E+00,4.746669E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999318E+01,0.000000E+00 +1464963,fr,1,3.550000E+00,3.217540E+00,5.079440E+01,5.000000E+00,Active Shallow Crust,2.400132E+02,5.799800E+01,0.000000E+00 +1465032,fr,1,4.150000E+00,3.217540E+00,5.079440E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +1465176,fr,1,5.350000E+00,3.217540E+00,5.079440E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1465188,fr,1,5.450000E+00,3.217540E+00,5.079440E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1465440,fr,3,3.550000E+00,2.879410E+00,4.178905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +1465441,fr,2,3.550000E+00,2.879410E+00,4.178905E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +1465442,fr,1,3.550000E+00,2.879410E+00,4.178905E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +1465443,fr,4,3.550000E+00,2.879410E+00,4.178905E+01,5.000000E+00,Active Shallow Crust,2.400115E+02,5.799857E+01,0.000000E+00 +1465444,fr,1,3.550000E+00,2.879410E+00,4.178905E+01,1.500000E+01,Active Shallow Crust,2.400115E+02,5.799857E+01,0.000000E+00 +1465448,fr,1,3.550000E+00,2.879410E+00,4.178905E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998859E+01,-9.000000E+01 +1465449,fr,1,3.550000E+00,2.879410E+00,4.178905E+01,5.000000E+00,Active Shallow Crust,1.288974E+02,8.999249E+01,0.000000E+00 +1465452,fr,1,3.650000E+00,2.879410E+00,4.178905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1465453,fr,1,3.650000E+00,2.879410E+00,4.178905E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1465454,fr,1,3.650000E+00,2.879410E+00,4.178905E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1465455,fr,1,3.650000E+00,2.879410E+00,4.178905E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801284E+01,0.000000E+00 +1465456,fr,1,3.650000E+00,2.879410E+00,4.178905E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801284E+01,0.000000E+00 +1465464,fr,2,3.750000E+00,2.879410E+00,4.178905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +1465465,fr,2,3.750000E+00,2.879410E+00,4.178905E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +1465470,fr,1,3.750000E+00,2.879410E+00,4.178905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,-9.000000E+01 +1465473,fr,2,3.750000E+00,2.879410E+00,4.178905E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.996741E+01,0.000000E+00 +1465476,fr,1,3.850000E+00,2.879410E+00,4.178905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +1465477,fr,2,3.850000E+00,2.879410E+00,4.178905E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +1465482,fr,1,3.850000E+00,2.879410E+00,4.178905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,-9.000000E+01 +1465488,fr,1,3.950000E+00,2.879410E+00,4.178905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +1465489,fr,1,3.950000E+00,2.879410E+00,4.178905E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +1465491,fr,1,3.950000E+00,2.879410E+00,4.178905E+01,5.000000E+00,Active Shallow Crust,2.400193E+02,5.800497E+01,0.000000E+00 +1465494,fr,1,3.950000E+00,2.879410E+00,4.178905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,-9.000000E+01 +1465500,fr,1,4.050000E+00,2.879410E+00,4.178905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1465503,fr,1,4.050000E+00,2.879410E+00,4.178905E+01,5.000000E+00,Active Shallow Crust,2.400053E+02,5.800569E+01,0.000000E+00 +1465506,fr,1,4.050000E+00,2.879410E+00,4.178905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,-9.000000E+01 +1465508,fr,1,4.050000E+00,2.879410E+00,4.178905E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998930E+01,-9.000000E+01 +1465510,fr,1,4.050000E+00,2.879410E+00,4.178905E+01,1.500000E+01,Active Shallow Crust,1.288907E+02,8.999366E+01,0.000000E+00 +1465513,fr,1,4.150000E+00,2.879410E+00,4.178905E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +1465539,fr,1,4.350000E+00,2.879410E+00,4.178905E+01,5.000000E+00,Active Shallow Crust,2.400075E+02,5.799582E+01,0.000000E+00 +1465560,fr,1,4.550000E+00,2.879410E+00,4.178905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1465579,fr,1,4.650000E+00,2.879410E+00,4.178905E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,-9.000000E+01 +1465598,fr,1,4.850000E+00,2.879410E+00,4.178905E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1465605,fr,1,4.850000E+00,2.879410E+00,4.178905E+01,5.000000E+00,Active Shallow Crust,1.288941E+02,8.998898E+01,0.000000E+00 +1465665,fr,1,5.350000E+00,2.879410E+00,4.178905E+01,5.000000E+00,Active Shallow Crust,1.288858E+02,8.999203E+01,0.000000E+00 +1465669,fr,1,5.450000E+00,2.879410E+00,4.178905E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1465948,fr,1,3.750000E+00,-2.769900E-01,4.775144E+01,1.500000E+01,Active Shallow Crust,2.400085E+02,5.801761E+01,0.000000E+00 +1465950,fr,1,3.750000E+00,-2.769900E-01,4.775144E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,-9.000000E+01 +1465953,fr,1,3.750000E+00,-2.769900E-01,4.775144E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.996736E+01,0.000000E+00 +1465956,fr,2,3.850000E+00,-2.769900E-01,4.775144E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1465960,fr,1,3.850000E+00,-2.769900E-01,4.775144E+01,1.500000E+01,Active Shallow Crust,2.400110E+02,5.799789E+01,0.000000E+00 +1466013,fr,1,4.250000E+00,-2.769900E-01,4.775144E+01,5.000000E+00,Active Shallow Crust,1.288941E+02,8.998093E+01,0.000000E+00 +1466016,fr,1,4.350000E+00,-2.769900E-01,4.775144E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1466019,fr,1,4.350000E+00,-2.769900E-01,4.775144E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799601E+01,0.000000E+00 +1466028,fr,1,4.450000E+00,-2.769900E-01,4.775144E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1466040,fr,1,4.550000E+00,-2.769900E-01,4.775144E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1466400,fr,1,3.550000E+00,-3.650230E+00,4.289846E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998892E+01,0.000000E+00 +1466405,fr,1,3.550000E+00,-3.650230E+00,4.289846E+01,2.750000E+01,Active Shallow Crust,2.400116E+02,5.799831E+01,0.000000E+00 +1466409,fr,1,3.550000E+00,-3.650230E+00,4.289846E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.999446E+01,0.000000E+00 +1466412,fr,1,3.650000E+00,-3.650230E+00,4.289846E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1466413,fr,1,3.650000E+00,-3.650230E+00,4.289846E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1466423,fr,1,3.650000E+00,-3.650230E+00,4.289846E+01,2.750000E+01,Active Shallow Crust,1.289000E+02,8.996371E+01,0.000000E+00 +1466424,fr,2,3.750000E+00,-3.650230E+00,4.289846E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +1466425,fr,1,3.750000E+00,-3.650230E+00,4.289846E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +1466460,fr,1,4.050000E+00,-3.650230E+00,4.289846E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +1466469,fr,1,4.050000E+00,-3.650230E+00,4.289846E+01,5.000000E+00,Active Shallow Crust,1.288913E+02,8.999377E+01,0.000000E+00 +1466496,fr,1,4.350000E+00,-3.650230E+00,4.289846E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +1466521,fr,1,4.550000E+00,-3.650230E+00,4.289846E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +1466880,fr,1,3.550000E+00,-1.904520E+00,4.856973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1466881,fr,1,3.550000E+00,-1.904520E+00,4.856973E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1466884,fr,1,3.550000E+00,-1.904520E+00,4.856973E+01,1.500000E+01,Active Shallow Crust,2.400126E+02,5.799820E+01,0.000000E+00 +1466892,fr,2,3.650000E+00,-1.904520E+00,4.856973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1466893,fr,1,3.650000E+00,-1.904520E+00,4.856973E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1466895,fr,1,3.650000E+00,-1.904520E+00,4.856973E+01,5.000000E+00,Active Shallow Crust,2.400015E+02,5.801284E+01,0.000000E+00 +1466909,fr,1,3.750000E+00,-1.904520E+00,4.856973E+01,2.750000E+01,Active Shallow Crust,2.400085E+02,5.801772E+01,0.000000E+00 +1466914,fr,1,3.750000E+00,-1.904520E+00,4.856973E+01,1.500000E+01,Active Shallow Crust,1.288964E+02,8.996741E+01,0.000000E+00 +1466919,fr,1,3.850000E+00,-1.904520E+00,4.856973E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799786E+01,0.000000E+00 +1466928,fr,2,3.950000E+00,-1.904520E+00,4.856973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +1466941,fr,1,4.050000E+00,-1.904520E+00,4.856973E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1466946,fr,1,4.050000E+00,-1.904520E+00,4.856973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,-9.000000E+01 +1466953,fr,1,4.150000E+00,-1.904520E+00,4.856973E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1466964,fr,1,4.250000E+00,-1.904520E+00,4.856973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +1466968,fr,1,4.250000E+00,-1.904520E+00,4.856973E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.799404E+01,0.000000E+00 +1466989,fr,1,4.450000E+00,-1.904520E+00,4.856973E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1467010,fr,1,4.550000E+00,-1.904520E+00,4.856973E+01,1.500000E+01,Active Shallow Crust,1.288934E+02,8.998588E+01,0.000000E+00 +1467045,fr,1,4.850000E+00,-1.904520E+00,4.856973E+01,5.000000E+00,Active Shallow Crust,1.288919E+02,8.998896E+01,0.000000E+00 +1467063,fr,1,5.050000E+00,-1.904520E+00,4.856973E+01,5.000000E+00,Active Shallow Crust,2.400232E+02,5.799779E+01,0.000000E+00 +1467363,fr,1,3.550000E+00,1.468170E+00,5.177540E+01,5.000000E+00,Active Shallow Crust,2.400126E+02,5.799847E+01,0.000000E+00 +1467382,fr,1,3.650000E+00,1.468170E+00,5.177540E+01,1.500000E+01,Active Shallow Crust,1.288998E+02,8.996351E+01,0.000000E+00 +1467387,fr,1,3.750000E+00,1.468170E+00,5.177540E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.801773E+01,0.000000E+00 +1467393,fr,1,3.750000E+00,1.468170E+00,5.177540E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.996737E+01,0.000000E+00 +1467396,fr,1,3.850000E+00,1.468170E+00,5.177540E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1467417,fr,1,3.950000E+00,1.468170E+00,5.177540E+01,5.000000E+00,Active Shallow Crust,1.288995E+02,8.999409E+01,0.000000E+00 +1467433,fr,1,4.150000E+00,1.468170E+00,5.177540E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +1467486,fr,1,4.550000E+00,1.468170E+00,5.177540E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +1467492,fr,1,4.650000E+00,1.468170E+00,5.177540E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1467840,fr,1,3.550000E+00,5.848730E+00,4.759660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999320E+01,0.000000E+00 +1467842,fr,1,3.550000E+00,5.848730E+00,4.759660E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999320E+01,0.000000E+00 +1467846,fr,1,3.550000E+00,5.848730E+00,4.759660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999312E+01,-9.000000E+01 +1467849,fr,1,3.550000E+00,5.848730E+00,4.759660E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999320E+01,0.000000E+00 +1467852,fr,1,3.650000E+00,5.848730E+00,4.759660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998788E+01,0.000000E+00 +1467876,fr,1,3.850000E+00,5.848730E+00,4.759660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +1467877,fr,1,3.850000E+00,5.848730E+00,4.759660E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +1467923,fr,1,4.150000E+00,5.848730E+00,4.759660E+01,2.750000E+01,Active Shallow Crust,1.288978E+02,8.999319E+01,0.000000E+00 +1467928,fr,1,4.250000E+00,5.848730E+00,4.759660E+01,1.500000E+01,Active Shallow Crust,2.400077E+02,5.799425E+01,0.000000E+00 +1467936,fr,1,4.350000E+00,5.848730E+00,4.759660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +1467948,fr,1,4.450000E+00,5.848730E+00,4.759660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +1467984,fr,1,4.750000E+00,5.848730E+00,4.759660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1468320,fr,1,3.550000E+00,-7.290400E-01,4.227251E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +1468323,fr,1,3.550000E+00,-7.290400E-01,4.227251E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799810E+01,0.000000E+00 +1468332,fr,1,3.650000E+00,-7.290400E-01,4.227251E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1468344,fr,1,3.750000E+00,-7.290400E-01,4.227251E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +1468380,fr,1,4.050000E+00,-7.290400E-01,4.227251E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1468405,fr,1,4.250000E+00,-7.290400E-01,4.227251E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1468464,fr,1,4.750000E+00,-7.290400E-01,4.227251E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1468800,fr,1,3.550000E+00,5.023700E-01,5.057230E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1468824,fr,1,3.750000E+00,5.023700E-01,5.057230E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1468836,fr,1,3.850000E+00,5.023700E-01,5.057230E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1468872,fr,2,4.150000E+00,5.023700E-01,5.057230E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1468884,fr,1,4.250000E+00,5.023700E-01,5.057230E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1468896,fr,1,4.350000E+00,5.023700E-01,5.057230E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1469314,fr,1,3.750000E+00,-2.706510E+00,4.660300E+01,1.500000E+01,Active Shallow Crust,1.288964E+02,8.996723E+01,0.000000E+00 +1469365,fr,1,4.250000E+00,-2.706510E+00,4.660300E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +1469436,fr,1,4.850000E+00,-2.706510E+00,4.660300E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1470244,fr,1,3.550000E+00,-1.761180E+00,4.844663E+01,1.500000E+01,Active Shallow Crust,2.400127E+02,5.799814E+01,0.000000E+00 +1470252,fr,3,3.650000E+00,-1.761180E+00,4.844663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +1470255,fr,2,3.650000E+00,-1.761180E+00,4.844663E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801299E+01,0.000000E+00 +1470264,fr,2,3.750000E+00,-1.761180E+00,4.844663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +1470276,fr,1,3.850000E+00,-1.761180E+00,4.844663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +1470280,fr,1,3.850000E+00,-1.761180E+00,4.844663E+01,1.500000E+01,Active Shallow Crust,2.400111E+02,5.799776E+01,0.000000E+00 +1470282,fr,1,3.850000E+00,-1.761180E+00,4.844663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,-9.000000E+01 +1470289,fr,1,3.950000E+00,-1.761180E+00,4.844663E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +1470300,fr,1,4.050000E+00,-1.761180E+00,4.844663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1470304,fr,1,4.050000E+00,-1.761180E+00,4.844663E+01,1.500000E+01,Active Shallow Crust,2.400063E+02,5.800578E+01,0.000000E+00 +1470327,fr,1,4.250000E+00,-1.761180E+00,4.844663E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799406E+01,0.000000E+00 +1470350,fr,1,4.450000E+00,-1.761180E+00,4.844663E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1470361,fr,1,4.550000E+00,-1.761180E+00,4.844663E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1470376,fr,1,4.650000E+00,-1.761180E+00,4.844663E+01,1.500000E+01,Active Shallow Crust,2.400116E+02,5.799427E+01,0.000000E+00 +1470408,fr,1,4.950000E+00,-1.761180E+00,4.844663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1470517,fr,1,5.850000E+00,-1.761180E+00,4.844663E+01,1.500000E+01,Active Shallow Crust,3.599999E+02,8.999005E+01,0.000000E+00 +1470720,fr,1,3.550000E+00,2.222800E-01,4.937709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1470721,fr,1,3.550000E+00,2.222800E-01,4.937709E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1470732,fr,1,3.650000E+00,2.222800E-01,4.937709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1470734,fr,1,3.650000E+00,2.222800E-01,4.937709E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1470735,fr,1,3.650000E+00,2.222800E-01,4.937709E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801295E+01,0.000000E+00 +1470739,fr,1,3.650000E+00,2.222800E-01,4.937709E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1470740,fr,1,3.650000E+00,2.222800E-01,4.937709E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1470741,fr,1,3.650000E+00,2.222800E-01,4.937709E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.996350E+01,0.000000E+00 +1470757,fr,1,3.850000E+00,2.222800E-01,4.937709E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1470758,fr,1,3.850000E+00,2.222800E-01,4.937709E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1470771,fr,1,3.950000E+00,2.222800E-01,4.937709E+01,5.000000E+00,Active Shallow Crust,2.400202E+02,5.800505E+01,0.000000E+00 +1470774,fr,1,3.950000E+00,2.222800E-01,4.937709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +1470779,fr,1,3.950000E+00,2.222800E-01,4.937709E+01,2.750000E+01,Active Shallow Crust,1.289000E+02,8.999372E+01,0.000000E+00 +1470792,fr,1,4.150000E+00,2.222800E-01,4.937709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1470793,fr,1,4.150000E+00,2.222800E-01,4.937709E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1470804,fr,2,4.250000E+00,2.222800E-01,4.937709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1470816,fr,1,4.350000E+00,2.222800E-01,4.937709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1470825,fr,1,4.350000E+00,2.222800E-01,4.937709E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.998277E+01,0.000000E+00 +1471200,fr,1,3.550000E+00,-6.715100E-01,4.200318E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1471680,fr,1,3.550000E+00,-2.264690E+00,4.907815E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1471681,fr,1,3.550000E+00,-2.264690E+00,4.907815E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1471683,fr,1,3.550000E+00,-2.264690E+00,4.907815E+01,5.000000E+00,Active Shallow Crust,2.400128E+02,5.799841E+01,0.000000E+00 +1471689,fr,1,3.550000E+00,-2.264690E+00,4.907815E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999505E+01,0.000000E+00 +1471692,fr,2,3.650000E+00,-2.264690E+00,4.907815E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +1471693,fr,2,3.650000E+00,-2.264690E+00,4.907815E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +1471695,fr,1,3.650000E+00,-2.264690E+00,4.907815E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801292E+01,0.000000E+00 +1471698,fr,1,3.650000E+00,-2.264690E+00,4.907815E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,-9.000000E+01 +1471702,fr,1,3.650000E+00,-2.264690E+00,4.907815E+01,1.500000E+01,Active Shallow Crust,1.289003E+02,8.996358E+01,0.000000E+00 +1471704,fr,1,3.750000E+00,-2.264690E+00,4.907815E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1471705,fr,1,3.750000E+00,-2.264690E+00,4.907815E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1471706,fr,1,3.750000E+00,-2.264690E+00,4.907815E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1471710,fr,1,3.750000E+00,-2.264690E+00,4.907815E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998939E+01,-9.000000E+01 +1471717,fr,1,3.850000E+00,-2.264690E+00,4.907815E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +1471731,fr,1,3.950000E+00,-2.264690E+00,4.907815E+01,5.000000E+00,Active Shallow Crust,2.400203E+02,5.800500E+01,0.000000E+00 +1471740,fr,1,4.050000E+00,-2.264690E+00,4.907815E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +1471754,fr,1,4.150000E+00,-2.264690E+00,4.907815E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1471765,fr,1,4.250000E+00,-2.264690E+00,4.907815E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +1471776,fr,1,4.350000E+00,-2.264690E+00,4.907815E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +1471777,fr,2,4.350000E+00,-2.264690E+00,4.907815E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +1471818,fr,1,4.650000E+00,-2.264690E+00,4.907815E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,-9.000000E+01 +1472160,fr,2,3.550000E+00,6.131290E+00,4.582312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999297E+01,0.000000E+00 +1472161,fr,3,3.550000E+00,6.131290E+00,4.582312E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999297E+01,0.000000E+00 +1472163,fr,2,3.550000E+00,6.131290E+00,4.582312E+01,5.000000E+00,Active Shallow Crust,2.400129E+02,5.799762E+01,0.000000E+00 +1472172,fr,1,3.650000E+00,6.131290E+00,4.582312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998747E+01,0.000000E+00 +1472173,fr,5,3.650000E+00,6.131290E+00,4.582312E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998747E+01,0.000000E+00 +1472175,fr,1,3.650000E+00,6.131290E+00,4.582312E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801263E+01,0.000000E+00 +1472178,fr,1,3.650000E+00,6.131290E+00,4.582312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998733E+01,-9.000000E+01 +1472181,fr,1,3.650000E+00,6.131290E+00,4.582312E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.996351E+01,0.000000E+00 +1472184,fr,1,3.750000E+00,6.131290E+00,4.582312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998884E+01,0.000000E+00 +1472190,fr,1,3.750000E+00,6.131290E+00,4.582312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998871E+01,-9.000000E+01 +1472193,fr,1,3.750000E+00,6.131290E+00,4.582312E+01,5.000000E+00,Active Shallow Crust,1.288973E+02,8.996748E+01,0.000000E+00 +1472196,fr,3,3.850000E+00,6.131290E+00,4.582312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1472197,fr,1,3.850000E+00,6.131290E+00,4.582312E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1472202,fr,1,3.850000E+00,6.131290E+00,4.582312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +1472208,fr,2,3.950000E+00,6.131290E+00,4.582312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999113E+01,0.000000E+00 +1472209,fr,2,3.950000E+00,6.131290E+00,4.582312E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999113E+01,0.000000E+00 +1472210,fr,1,3.950000E+00,6.131290E+00,4.582312E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999113E+01,0.000000E+00 +1472220,fr,2,4.050000E+00,6.131290E+00,4.582312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998814E+01,0.000000E+00 +1472221,fr,2,4.050000E+00,6.131290E+00,4.582312E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998814E+01,0.000000E+00 +1472232,fr,1,4.150000E+00,6.131290E+00,4.582312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1472233,fr,1,4.150000E+00,6.131290E+00,4.582312E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1472244,fr,1,4.250000E+00,6.131290E+00,4.582312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +1472268,fr,1,4.450000E+00,6.131290E+00,4.582312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1472271,fr,1,4.450000E+00,6.131290E+00,4.582312E+01,5.000000E+00,Active Shallow Crust,2.400053E+02,5.799472E+01,0.000000E+00 +1472272,fr,1,4.450000E+00,6.131290E+00,4.582312E+01,1.500000E+01,Active Shallow Crust,2.400053E+02,5.799474E+01,0.000000E+00 +1472289,fr,1,4.550000E+00,6.131290E+00,4.582312E+01,5.000000E+00,Active Shallow Crust,1.288936E+02,8.998609E+01,0.000000E+00 +1472292,fr,1,4.650000E+00,6.131290E+00,4.582312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1472294,fr,1,4.650000E+00,6.131290E+00,4.582312E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1472311,fr,1,4.750000E+00,6.131290E+00,4.582312E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998929E+01,-9.000000E+01 +1472335,fr,1,4.950000E+00,6.131290E+00,4.582312E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +1472364,fr,1,5.250000E+00,6.131290E+00,4.582312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1472400,fr,1,5.550000E+00,6.131290E+00,4.582312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1472640,fr,2,3.550000E+00,-6.771300E-01,4.852560E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1472641,fr,1,3.550000E+00,-6.771300E-01,4.852560E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1472652,fr,1,3.650000E+00,-6.771300E-01,4.852560E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1472653,fr,1,3.650000E+00,-6.771300E-01,4.852560E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1472664,fr,1,3.750000E+00,-6.771300E-01,4.852560E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1472688,fr,1,3.950000E+00,-6.771300E-01,4.852560E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1472700,fr,1,4.050000E+00,-6.771300E-01,4.852560E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1472712,fr,1,4.150000E+00,-6.771300E-01,4.852560E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1472739,fr,1,4.350000E+00,-6.771300E-01,4.852560E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.799600E+01,0.000000E+00 +1473120,fr,1,3.550000E+00,1.452520E+00,4.075372E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +1473132,fr,1,3.650000E+00,1.452520E+00,4.075372E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1473134,fr,2,3.650000E+00,1.452520E+00,4.075372E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1473144,fr,1,3.750000E+00,1.452520E+00,4.075372E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +1473145,fr,1,3.750000E+00,1.452520E+00,4.075372E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +1473153,fr,1,3.750000E+00,1.452520E+00,4.075372E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.996724E+01,0.000000E+00 +1473170,fr,1,3.950000E+00,1.452520E+00,4.075372E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1473192,fr,1,4.150000E+00,1.452520E+00,4.075372E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1473216,fr,1,4.350000E+00,1.452520E+00,4.075372E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1473240,fr,1,4.550000E+00,1.452520E+00,4.075372E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +1474156,fr,1,4.150000E+00,5.139890E+00,4.251510E+01,1.500000E+01,Active Shallow Crust,2.400076E+02,5.799726E+01,0.000000E+00 +1474560,fr,4,3.550000E+00,6.385960E+00,4.559341E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999294E+01,0.000000E+00 +1474563,fr,1,3.550000E+00,6.385960E+00,4.559341E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.799803E+01,0.000000E+00 +1474584,fr,6,3.750000E+00,6.385960E+00,4.559341E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998879E+01,0.000000E+00 +1474585,fr,1,3.750000E+00,6.385960E+00,4.559341E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998879E+01,0.000000E+00 +1474593,fr,1,3.750000E+00,6.385960E+00,4.559341E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.996748E+01,0.000000E+00 +1474596,fr,3,3.850000E+00,6.385960E+00,4.559341E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1474598,fr,1,3.850000E+00,6.385960E+00,4.559341E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1474608,fr,1,3.950000E+00,6.385960E+00,4.559341E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +1474615,fr,1,3.950000E+00,6.385960E+00,4.559341E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999099E+01,-9.000000E+01 +1474620,fr,3,4.050000E+00,6.385960E+00,4.559341E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998810E+01,0.000000E+00 +1474623,fr,2,4.050000E+00,6.385960E+00,4.559341E+01,5.000000E+00,Active Shallow Crust,2.400062E+02,5.800539E+01,0.000000E+00 +1474632,fr,1,4.150000E+00,6.385960E+00,4.559341E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +1474645,fr,1,4.250000E+00,6.385960E+00,4.559341E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +1474669,fr,1,4.450000E+00,6.385960E+00,4.559341E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1474692,fr,1,4.650000E+00,6.385960E+00,4.559341E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1474849,fr,1,5.950000E+00,6.385960E+00,4.559341E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1475568,fr,1,3.950000E+00,3.189080E+00,4.410100E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +1475580,fr,1,4.050000E+00,3.189080E+00,4.410100E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1475640,fr,1,4.550000E+00,3.189080E+00,4.410100E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1476480,fr,1,3.550000E+00,7.721100E-01,4.635029E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1476506,fr,1,3.750000E+00,7.721100E-01,4.635029E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1476507,fr,1,3.750000E+00,7.721100E-01,4.635029E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801759E+01,0.000000E+00 +1476516,fr,1,3.850000E+00,7.721100E-01,4.635029E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1476520,fr,1,3.850000E+00,7.721100E-01,4.635029E+01,1.500000E+01,Active Shallow Crust,2.400107E+02,5.799784E+01,0.000000E+00 +1476554,fr,1,4.150000E+00,7.721100E-01,4.635029E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1476564,fr,1,4.250000E+00,7.721100E-01,4.635029E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1476964,fr,1,3.550000E+00,-3.433630E+00,4.803270E+01,1.500000E+01,Active Shallow Crust,2.400124E+02,5.799766E+01,0.000000E+00 +1476965,fr,1,3.550000E+00,-3.433630E+00,4.803270E+01,2.750000E+01,Active Shallow Crust,2.400124E+02,5.799757E+01,0.000000E+00 +1476966,fr,1,3.550000E+00,-3.433630E+00,4.803270E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,-9.000000E+01 +1476972,fr,2,3.650000E+00,-3.433630E+00,4.803270E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999098E+01,0.000000E+00 +1476973,fr,1,3.650000E+00,-3.433630E+00,4.803270E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999098E+01,0.000000E+00 +1476984,fr,2,3.750000E+00,-3.433630E+00,4.803270E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +1476996,fr,1,3.850000E+00,-3.433630E+00,4.803270E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1476999,fr,1,3.850000E+00,-3.433630E+00,4.803270E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799784E+01,0.000000E+00 +1477011,fr,1,3.950000E+00,-3.433630E+00,4.803270E+01,5.000000E+00,Active Shallow Crust,2.400201E+02,5.800499E+01,0.000000E+00 +1477044,fr,1,4.250000E+00,-3.433630E+00,4.803270E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1477053,fr,1,4.250000E+00,-3.433630E+00,4.803270E+01,5.000000E+00,Active Shallow Crust,1.288941E+02,8.998100E+01,0.000000E+00 +1477070,fr,1,4.450000E+00,-3.433630E+00,4.803270E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1477077,fr,1,4.450000E+00,-3.433630E+00,4.803270E+01,5.000000E+00,Active Shallow Crust,1.288919E+02,8.999402E+01,0.000000E+00 +1477452,fr,1,3.650000E+00,5.504190E+00,4.148312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999327E+01,0.000000E+00 +1477920,fr,1,3.550000E+00,2.222050E+00,4.473730E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +1477921,fr,1,3.550000E+00,2.222050E+00,4.473730E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +1477922,fr,1,3.550000E+00,2.222050E+00,4.473730E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +1477923,fr,1,3.550000E+00,2.222050E+00,4.473730E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799850E+01,0.000000E+00 +1477926,fr,1,3.550000E+00,2.222050E+00,4.473730E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998913E+01,-9.000000E+01 +1477933,fr,2,3.650000E+00,2.222050E+00,4.473730E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1477938,fr,1,3.650000E+00,2.222050E+00,4.473730E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,-9.000000E+01 +1477960,fr,1,3.850000E+00,2.222050E+00,4.473730E+01,1.500000E+01,Active Shallow Crust,2.400107E+02,5.799751E+01,0.000000E+00 +1477969,fr,1,3.950000E+00,2.222050E+00,4.473730E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999096E+01,0.000000E+00 +1477980,fr,2,4.050000E+00,2.222050E+00,4.473730E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1478007,fr,1,4.250000E+00,2.222050E+00,4.473730E+01,5.000000E+00,Active Shallow Crust,2.400075E+02,5.799389E+01,0.000000E+00 +1478400,fr,1,3.550000E+00,1.467450E+00,4.970102E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1478404,fr,1,3.550000E+00,1.467450E+00,4.970102E+01,1.500000E+01,Active Shallow Crust,2.400125E+02,5.799827E+01,0.000000E+00 +1478412,fr,2,3.650000E+00,1.467450E+00,4.970102E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1478425,fr,1,3.750000E+00,1.467450E+00,4.970102E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +1478433,fr,1,3.750000E+00,1.467450E+00,4.970102E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.996744E+01,0.000000E+00 +1478436,fr,1,3.850000E+00,1.467450E+00,4.970102E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +1478448,fr,1,3.950000E+00,1.467450E+00,4.970102E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1478461,fr,1,4.050000E+00,1.467450E+00,4.970102E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1478928,fr,1,3.950000E+00,-2.706680E+00,4.412624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999087E+01,0.000000E+00 +1479360,fr,1,3.550000E+00,5.471750E+00,4.309488E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999264E+01,0.000000E+00 +1479372,fr,1,3.650000E+00,5.471750E+00,4.309488E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998688E+01,0.000000E+00 +1479379,fr,1,3.650000E+00,5.471750E+00,4.309488E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998672E+01,-9.000000E+01 +1479427,fr,1,4.050000E+00,5.471750E+00,4.309488E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999162E+01,-9.000000E+01 +1479444,fr,1,4.250000E+00,5.471750E+00,4.309488E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1479459,fr,1,4.350000E+00,5.471750E+00,4.309488E+01,5.000000E+00,Active Shallow Crust,2.400072E+02,5.799623E+01,0.000000E+00 +1479496,fr,1,4.650000E+00,5.471750E+00,4.309488E+01,1.500000E+01,Active Shallow Crust,2.400099E+02,5.799428E+01,0.000000E+00 +1479516,fr,1,4.850000E+00,5.471750E+00,4.309488E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1480800,fr,12,3.550000E+00,8.305430E+00,4.698468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998624E+01,0.000000E+00 +1480801,fr,3,3.550000E+00,8.305430E+00,4.698468E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998624E+01,0.000000E+00 +1480802,fr,1,3.550000E+00,8.305430E+00,4.698468E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998624E+01,0.000000E+00 +1480803,fr,3,3.550000E+00,8.305430E+00,4.698468E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799762E+01,0.000000E+00 +1480805,fr,1,3.550000E+00,8.305430E+00,4.698468E+01,2.750000E+01,Active Shallow Crust,2.400114E+02,5.799752E+01,0.000000E+00 +1480807,fr,1,3.550000E+00,8.305430E+00,4.698468E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998608E+01,-9.000000E+01 +1480812,fr,7,3.650000E+00,8.305430E+00,4.698468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998774E+01,0.000000E+00 +1480813,fr,2,3.650000E+00,8.305430E+00,4.698468E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998774E+01,0.000000E+00 +1480814,fr,2,3.650000E+00,8.305430E+00,4.698468E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998774E+01,0.000000E+00 +1480817,fr,1,3.650000E+00,8.305430E+00,4.698468E+01,2.750000E+01,Active Shallow Crust,2.400030E+02,5.801299E+01,0.000000E+00 +1480818,fr,2,3.650000E+00,8.305430E+00,4.698468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998759E+01,-9.000000E+01 +1480819,fr,1,3.650000E+00,8.305430E+00,4.698468E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998759E+01,-9.000000E+01 +1480822,fr,1,3.650000E+00,8.305430E+00,4.698468E+01,1.500000E+01,Active Shallow Crust,1.289009E+02,8.996353E+01,0.000000E+00 +1480824,fr,5,3.750000E+00,8.305430E+00,4.698468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +1480825,fr,2,3.750000E+00,8.305430E+00,4.698468E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +1480829,fr,1,3.750000E+00,8.305430E+00,4.698468E+01,2.750000E+01,Active Shallow Crust,2.400087E+02,5.801798E+01,0.000000E+00 +1480830,fr,1,3.750000E+00,8.305430E+00,4.698468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,-9.000000E+01 +1480834,fr,1,3.750000E+00,8.305430E+00,4.698468E+01,1.500000E+01,Active Shallow Crust,1.288952E+02,8.996750E+01,0.000000E+00 +1480836,fr,5,3.850000E+00,8.305430E+00,4.698468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1480837,fr,2,3.850000E+00,8.305430E+00,4.698468E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1480839,fr,1,3.850000E+00,8.305430E+00,4.698468E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799810E+01,0.000000E+00 +1480841,fr,1,3.850000E+00,8.305430E+00,4.698468E+01,2.750000E+01,Active Shallow Crust,2.400111E+02,5.799810E+01,0.000000E+00 +1480848,fr,4,3.950000E+00,8.305430E+00,4.698468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999132E+01,0.000000E+00 +1480849,fr,1,3.950000E+00,8.305430E+00,4.698468E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999132E+01,0.000000E+00 +1480851,fr,1,3.950000E+00,8.305430E+00,4.698468E+01,5.000000E+00,Active Shallow Crust,2.400196E+02,5.800582E+01,0.000000E+00 +1480852,fr,1,3.950000E+00,8.305430E+00,4.698468E+01,1.500000E+01,Active Shallow Crust,2.400196E+02,5.800582E+01,0.000000E+00 +1480860,fr,4,4.050000E+00,8.305430E+00,4.698468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999226E+01,0.000000E+00 +1480861,fr,1,4.050000E+00,8.305430E+00,4.698468E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999226E+01,0.000000E+00 +1480863,fr,1,4.050000E+00,8.305430E+00,4.698468E+01,5.000000E+00,Active Shallow Crust,2.400060E+02,5.800612E+01,0.000000E+00 +1480872,fr,3,4.150000E+00,8.305430E+00,4.698468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999310E+01,0.000000E+00 +1480873,fr,1,4.150000E+00,8.305430E+00,4.698468E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999310E+01,0.000000E+00 +1480877,fr,1,4.150000E+00,8.305430E+00,4.698468E+01,2.750000E+01,Active Shallow Crust,2.400084E+02,5.799722E+01,0.000000E+00 +1480878,fr,1,4.150000E+00,8.305430E+00,4.698468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999303E+01,-9.000000E+01 +1480881,fr,1,4.150000E+00,8.305430E+00,4.698468E+01,5.000000E+00,Active Shallow Crust,1.288990E+02,8.999310E+01,0.000000E+00 +1480885,fr,1,4.250000E+00,8.305430E+00,4.698468E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998771E+01,0.000000E+00 +1480887,fr,1,4.250000E+00,8.305430E+00,4.698468E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.799425E+01,0.000000E+00 +1480890,fr,1,4.250000E+00,8.305430E+00,4.698468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998756E+01,-9.000000E+01 +1480893,fr,1,4.250000E+00,8.305430E+00,4.698468E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.998096E+01,0.000000E+00 +1480897,fr,1,4.350000E+00,8.305430E+00,4.698468E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +1480903,fr,1,4.350000E+00,8.305430E+00,4.698468E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998891E+01,-9.000000E+01 +1480909,fr,1,4.450000E+00,8.305430E+00,4.698468E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1480918,fr,1,4.450000E+00,8.305430E+00,4.698468E+01,1.500000E+01,Active Shallow Crust,1.288926E+02,8.999268E+01,0.000000E+00 +1480921,fr,1,4.550000E+00,8.305430E+00,4.698468E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +1480929,fr,1,4.550000E+00,8.305430E+00,4.698468E+01,5.000000E+00,Active Shallow Crust,1.288931E+02,8.998567E+01,0.000000E+00 +1480932,fr,1,4.650000E+00,8.305430E+00,4.698468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998837E+01,0.000000E+00 +1480933,fr,1,4.650000E+00,8.305430E+00,4.698468E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998837E+01,0.000000E+00 +1480941,fr,1,4.650000E+00,8.305430E+00,4.698468E+01,5.000000E+00,Active Shallow Crust,1.288906E+02,8.998723E+01,0.000000E+00 +1480944,fr,1,4.750000E+00,8.305430E+00,4.698468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +1480949,fr,1,4.750000E+00,8.305430E+00,4.698468E+01,2.750000E+01,Active Shallow Crust,2.400084E+02,5.800388E+01,0.000000E+00 +1480970,fr,1,4.950000E+00,8.305430E+00,4.698468E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +1480981,fr,1,5.050000E+00,8.305430E+00,4.698468E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1480983,fr,1,5.050000E+00,8.305430E+00,4.698468E+01,5.000000E+00,Active Shallow Crust,2.400223E+02,5.799755E+01,0.000000E+00 +1481222,fr,1,7.050000E+00,8.305408E+00,4.698468E+01,1.805779E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1482240,fr,10,3.550000E+00,6.848260E+00,4.694960E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999312E+01,0.000000E+00 +1482241,fr,2,3.550000E+00,6.848260E+00,4.694960E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999312E+01,0.000000E+00 +1482242,fr,2,3.550000E+00,6.848260E+00,4.694960E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999312E+01,0.000000E+00 +1482243,fr,1,3.550000E+00,6.848260E+00,4.694960E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799777E+01,0.000000E+00 +1482244,fr,1,3.550000E+00,6.848260E+00,4.694960E+01,1.500000E+01,Active Shallow Crust,2.400121E+02,5.799777E+01,0.000000E+00 +1482247,fr,2,3.550000E+00,6.848260E+00,4.694960E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999303E+01,-9.000000E+01 +1482248,fr,1,3.550000E+00,6.848260E+00,4.694960E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999303E+01,-9.000000E+01 +1482252,fr,7,3.650000E+00,6.848260E+00,4.694960E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998773E+01,0.000000E+00 +1482253,fr,2,3.650000E+00,6.848260E+00,4.694960E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998773E+01,0.000000E+00 +1482256,fr,1,3.650000E+00,6.848260E+00,4.694960E+01,1.500000E+01,Active Shallow Crust,2.400009E+02,5.801275E+01,0.000000E+00 +1482258,fr,2,3.650000E+00,6.848260E+00,4.694960E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998759E+01,-9.000000E+01 +1482264,fr,10,3.750000E+00,6.848260E+00,4.694960E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +1482265,fr,3,3.750000E+00,6.848260E+00,4.694960E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +1482266,fr,1,3.750000E+00,6.848260E+00,4.694960E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +1482267,fr,2,3.750000E+00,6.848260E+00,4.694960E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801723E+01,0.000000E+00 +1482270,fr,1,3.750000E+00,6.848260E+00,4.694960E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998894E+01,-9.000000E+01 +1482273,fr,2,3.750000E+00,6.848260E+00,4.694960E+01,5.000000E+00,Active Shallow Crust,1.288974E+02,8.996693E+01,0.000000E+00 +1482274,fr,2,3.750000E+00,6.848260E+00,4.694960E+01,1.500000E+01,Active Shallow Crust,1.288974E+02,8.996693E+01,0.000000E+00 +1482276,fr,6,3.850000E+00,6.848260E+00,4.694960E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1482277,fr,1,3.850000E+00,6.848260E+00,4.694960E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1482279,fr,1,3.850000E+00,6.848260E+00,4.694960E+01,5.000000E+00,Active Shallow Crust,2.400115E+02,5.799800E+01,0.000000E+00 +1482280,fr,2,3.850000E+00,6.848260E+00,4.694960E+01,1.500000E+01,Active Shallow Crust,2.400115E+02,5.799800E+01,0.000000E+00 +1482288,fr,1,3.950000E+00,6.848260E+00,4.694960E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999131E+01,0.000000E+00 +1482289,fr,1,3.950000E+00,6.848260E+00,4.694960E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999131E+01,0.000000E+00 +1482291,fr,2,3.950000E+00,6.848260E+00,4.694960E+01,5.000000E+00,Active Shallow Crust,2.400196E+02,5.800528E+01,0.000000E+00 +1482294,fr,2,3.950000E+00,6.848260E+00,4.694960E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999121E+01,-9.000000E+01 +1482298,fr,1,3.950000E+00,6.848260E+00,4.694960E+01,1.500000E+01,Active Shallow Crust,1.288999E+02,8.999348E+01,0.000000E+00 +1482300,fr,2,4.050000E+00,6.848260E+00,4.694960E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998839E+01,0.000000E+00 +1482301,fr,1,4.050000E+00,6.848260E+00,4.694960E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998839E+01,0.000000E+00 +1482303,fr,1,4.050000E+00,6.848260E+00,4.694960E+01,5.000000E+00,Active Shallow Crust,2.400058E+02,5.800600E+01,0.000000E+00 +1482304,fr,1,4.050000E+00,6.848260E+00,4.694960E+01,1.500000E+01,Active Shallow Crust,2.400058E+02,5.800598E+01,0.000000E+00 +1482310,fr,1,4.050000E+00,6.848260E+00,4.694960E+01,1.500000E+01,Active Shallow Crust,1.288895E+02,8.999419E+01,0.000000E+00 +1482312,fr,6,4.150000E+00,6.848260E+00,4.694960E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1482313,fr,1,4.150000E+00,6.848260E+00,4.694960E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1482314,fr,1,4.150000E+00,6.848260E+00,4.694960E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1482315,fr,2,4.150000E+00,6.848260E+00,4.694960E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.799741E+01,0.000000E+00 +1482318,fr,2,4.150000E+00,6.848260E+00,4.694960E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,-9.000000E+01 +1482324,fr,3,4.250000E+00,6.848260E+00,4.694960E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +1482333,fr,2,4.250000E+00,6.848260E+00,4.694960E+01,5.000000E+00,Active Shallow Crust,1.288949E+02,8.998096E+01,0.000000E+00 +1482336,fr,2,4.350000E+00,6.848260E+00,4.694960E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +1482337,fr,1,4.350000E+00,6.848260E+00,4.694960E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +1482341,fr,1,4.350000E+00,6.848260E+00,4.694960E+01,2.750000E+01,Active Shallow Crust,2.400084E+02,5.799619E+01,0.000000E+00 +1482345,fr,1,4.350000E+00,6.848260E+00,4.694960E+01,5.000000E+00,Active Shallow Crust,1.288975E+02,8.998303E+01,0.000000E+00 +1482348,fr,2,4.450000E+00,6.848260E+00,4.694960E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1482349,fr,1,4.450000E+00,6.848260E+00,4.694960E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1482357,fr,1,4.450000E+00,6.848260E+00,4.694960E+01,5.000000E+00,Active Shallow Crust,1.288926E+02,8.999268E+01,0.000000E+00 +1482369,fr,1,4.550000E+00,6.848260E+00,4.694960E+01,5.000000E+00,Active Shallow Crust,1.288939E+02,8.998567E+01,0.000000E+00 +1482373,fr,1,4.650000E+00,6.848260E+00,4.694960E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1482381,fr,2,4.650000E+00,6.848260E+00,4.694960E+01,5.000000E+00,Active Shallow Crust,1.288912E+02,8.998723E+01,0.000000E+00 +1482384,fr,1,4.750000E+00,6.848260E+00,4.694960E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +1482405,fr,1,4.850000E+00,6.848260E+00,4.694960E+01,5.000000E+00,Active Shallow Crust,1.288924E+02,8.998907E+01,0.000000E+00 +1482413,fr,1,4.950000E+00,6.848260E+00,4.694960E+01,2.750000E+01,Active Shallow Crust,2.400122E+02,5.800437E+01,0.000000E+00 +1482427,fr,1,5.050000E+00,6.848260E+00,4.694960E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +1482432,fr,1,5.150000E+00,6.848260E+00,4.694960E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1482433,fr,1,5.150000E+00,6.848260E+00,4.694960E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1482441,fr,1,5.150000E+00,6.848260E+00,4.694960E+01,5.000000E+00,Active Shallow Crust,1.288832E+02,8.999123E+01,0.000000E+00 +1482456,fr,1,5.350000E+00,6.848260E+00,4.694960E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1482492,fr,1,5.650000E+00,6.848260E+00,4.694960E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1482505,fr,1,5.750000E+00,6.848260E+00,4.694960E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1482721,fr,1,3.550000E+00,1.293210E+00,4.369404E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1482732,fr,1,3.650000E+00,1.293210E+00,4.369404E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1482765,fr,1,3.850000E+00,1.293210E+00,4.369404E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999355E+01,0.000000E+00 +1483201,fr,1,3.550000E+00,-1.653240E+00,4.189101E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1483251,fr,1,3.950000E+00,-1.653240E+00,4.189101E+01,5.000000E+00,Active Shallow Crust,2.400192E+02,5.800493E+01,0.000000E+00 +1483296,fr,1,4.350000E+00,-1.653240E+00,4.189101E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +1483375,fr,1,4.950000E+00,-1.653240E+00,4.189101E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,-9.000000E+01 +1483734,fr,1,3.950000E+00,1.493990E+00,4.904709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999051E+01,-9.000000E+01 +1483803,fr,1,4.550000E+00,1.493990E+00,4.904709E+01,5.000000E+00,Active Shallow Crust,2.400100E+02,5.799753E+01,0.000000E+00 +1483848,fr,1,4.950000E+00,1.493990E+00,4.904709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1484160,fr,2,3.550000E+00,7.161240E+00,4.555517E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999294E+01,0.000000E+00 +1484172,fr,1,3.650000E+00,7.161240E+00,4.555517E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998741E+01,0.000000E+00 +1484176,fr,1,3.650000E+00,7.161240E+00,4.555517E+01,1.500000E+01,Active Shallow Crust,2.400009E+02,5.801240E+01,0.000000E+00 +1484179,fr,1,3.650000E+00,7.161240E+00,4.555517E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998727E+01,-9.000000E+01 +1484187,fr,1,3.750000E+00,7.161240E+00,4.555517E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801791E+01,0.000000E+00 +1484190,fr,1,3.750000E+00,7.161240E+00,4.555517E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,-9.000000E+01 +1484193,fr,1,3.750000E+00,7.161240E+00,4.555517E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.996748E+01,0.000000E+00 +1484233,fr,1,4.150000E+00,7.161240E+00,4.555517E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +1484269,fr,1,4.450000E+00,7.161240E+00,4.555517E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1484388,fr,1,5.450000E+00,7.161240E+00,4.555517E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1484640,fr,1,3.550000E+00,7.251690E+00,4.569666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999296E+01,0.000000E+00 +1484642,fr,1,3.550000E+00,7.251690E+00,4.569666E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999296E+01,0.000000E+00 +1484647,fr,1,3.550000E+00,7.251690E+00,4.569666E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999287E+01,-9.000000E+01 +1484652,fr,2,3.650000E+00,7.251690E+00,4.569666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998744E+01,0.000000E+00 +1484665,fr,1,3.750000E+00,7.251690E+00,4.569666E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998881E+01,0.000000E+00 +1484700,fr,2,4.050000E+00,7.251690E+00,4.569666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998812E+01,0.000000E+00 +1484754,fr,1,4.450000E+00,7.251690E+00,4.569666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,-9.000000E+01 +1485600,fr,1,3.550000E+00,4.215940E+00,4.491099E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999286E+01,0.000000E+00 +1485603,fr,1,3.550000E+00,4.215940E+00,4.491099E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799894E+01,0.000000E+00 +1485614,fr,1,3.650000E+00,4.215940E+00,4.491099E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998727E+01,0.000000E+00 +1485672,fr,1,4.150000E+00,4.215940E+00,4.491099E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1485673,fr,1,4.150000E+00,4.215940E+00,4.491099E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1485687,fr,1,4.250000E+00,4.215940E+00,4.491099E+01,5.000000E+00,Active Shallow Crust,2.400071E+02,5.799364E+01,0.000000E+00 +1485768,fr,1,4.950000E+00,4.215940E+00,4.491099E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1485774,fr,1,4.950000E+00,4.215940E+00,4.491099E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +1486572,fr,1,3.650000E+00,-3.965940E+00,4.906765E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +1486635,fr,1,4.150000E+00,-3.965940E+00,4.906765E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.799745E+01,0.000000E+00 +1486637,fr,1,4.150000E+00,-3.965940E+00,4.906765E+01,2.750000E+01,Active Shallow Crust,2.400089E+02,5.799742E+01,0.000000E+00 +1486644,fr,1,4.250000E+00,-3.965940E+00,4.906765E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +1487040,fr,4,3.550000E+00,7.950890E+00,5.036677E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998714E+01,0.000000E+00 +1487042,fr,1,3.550000E+00,7.950890E+00,5.036677E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998714E+01,0.000000E+00 +1487043,fr,1,3.550000E+00,7.950890E+00,5.036677E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.799861E+01,0.000000E+00 +1487049,fr,1,3.550000E+00,7.950890E+00,5.036677E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999357E+01,0.000000E+00 +1487064,fr,1,3.750000E+00,7.950890E+00,5.036677E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1487077,fr,2,3.850000E+00,7.950890E+00,5.036677E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999089E+01,0.000000E+00 +1487078,fr,1,3.850000E+00,7.950890E+00,5.036677E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999089E+01,0.000000E+00 +1487082,fr,1,3.850000E+00,7.950890E+00,5.036677E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,-9.000000E+01 +1487083,fr,2,3.850000E+00,7.950890E+00,5.036677E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999078E+01,-9.000000E+01 +1487089,fr,1,3.950000E+00,7.950890E+00,5.036677E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999188E+01,0.000000E+00 +1487100,fr,1,4.050000E+00,7.950890E+00,5.036677E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998915E+01,0.000000E+00 +1487112,fr,1,4.150000E+00,7.950890E+00,5.036677E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1487113,fr,1,4.150000E+00,7.950890E+00,5.036677E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1487117,fr,1,4.150000E+00,7.950890E+00,5.036677E+01,2.750000E+01,Active Shallow Crust,2.400091E+02,5.799718E+01,0.000000E+00 +1487137,fr,1,4.350000E+00,7.950890E+00,5.036677E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1487149,fr,1,4.450000E+00,7.950890E+00,5.036677E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999087E+01,0.000000E+00 +1487172,fr,1,4.650000E+00,7.950890E+00,5.036677E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998912E+01,0.000000E+00 +1487185,fr,1,4.750000E+00,7.950890E+00,5.036677E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1487197,fr,1,4.850000E+00,7.950890E+00,5.036677E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1487281,fr,1,5.550000E+00,7.950890E+00,5.036677E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1487520,fr,1,3.550000E+00,3.969990E+00,4.448103E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1487523,fr,1,3.550000E+00,3.969990E+00,4.448103E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799826E+01,0.000000E+00 +1487535,fr,1,3.650000E+00,3.969990E+00,4.448103E+01,5.000000E+00,Active Shallow Crust,2.400002E+02,5.801284E+01,0.000000E+00 +1487568,fr,1,3.950000E+00,3.969990E+00,4.448103E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999092E+01,0.000000E+00 +1487570,fr,1,3.950000E+00,3.969990E+00,4.448103E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999092E+01,0.000000E+00 +1487607,fr,1,4.250000E+00,3.969990E+00,4.448103E+01,5.000000E+00,Active Shallow Crust,2.400071E+02,5.799404E+01,0.000000E+00 +1487617,fr,1,4.350000E+00,3.969990E+00,4.448103E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1487642,fr,1,4.550000E+00,3.969990E+00,4.448103E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +1487689,fr,1,4.950000E+00,3.969990E+00,4.448103E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1488108,fr,1,4.450000E+00,-5.240670E+00,4.729676E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1488483,fr,1,3.550000E+00,3.242530E+00,4.722867E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799802E+01,0.000000E+00 +1488517,fr,1,3.850000E+00,3.242530E+00,4.722867E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1488524,fr,1,3.850000E+00,3.242530E+00,4.722867E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,-9.000000E+01 +1488612,fr,1,4.650000E+00,3.242530E+00,4.722867E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +1489440,fr,1,3.550000E+00,6.275500E-01,4.350149E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1489443,fr,1,3.550000E+00,6.275500E-01,4.350149E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799813E+01,0.000000E+00 +1489444,fr,1,3.550000E+00,6.275500E-01,4.350149E+01,1.500000E+01,Active Shallow Crust,2.400120E+02,5.799813E+01,0.000000E+00 +1489446,fr,1,3.550000E+00,6.275500E-01,4.350149E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,-9.000000E+01 +1489454,fr,1,3.650000E+00,6.275500E-01,4.350149E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1489474,fr,1,3.750000E+00,6.275500E-01,4.350149E+01,1.500000E+01,Active Shallow Crust,1.288967E+02,8.996737E+01,0.000000E+00 +1489475,fr,1,3.750000E+00,6.275500E-01,4.350149E+01,2.750000E+01,Active Shallow Crust,1.288967E+02,8.996737E+01,0.000000E+00 +1489509,fr,1,4.050000E+00,6.275500E-01,4.350149E+01,5.000000E+00,Active Shallow Crust,1.288909E+02,8.999383E+01,0.000000E+00 +1489513,fr,1,4.150000E+00,6.275500E-01,4.350149E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1489934,fr,2,3.650000E+00,6.179090E+00,4.903445E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998821E+01,0.000000E+00 +1489980,fr,1,4.050000E+00,6.179090E+00,4.903445E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +1489992,fr,1,4.150000E+00,6.179090E+00,4.903445E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1490064,fr,1,4.750000E+00,6.179090E+00,4.903445E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1490128,fr,1,5.250000E+00,6.179090E+00,4.903445E+01,1.500000E+01,Active Shallow Crust,2.400272E+02,5.800066E+01,0.000000E+00 +1490427,fr,1,3.750000E+00,-7.165700E-01,4.501500E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.801755E+01,0.000000E+00 +1490460,fr,1,4.050000E+00,-7.165700E-01,4.501500E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1490462,fr,1,4.050000E+00,-7.165700E-01,4.501500E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1490478,fr,1,4.150000E+00,-7.165700E-01,4.501500E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +1490496,fr,1,4.350000E+00,-7.165700E-01,4.501500E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1490520,fr,1,4.550000E+00,-7.165700E-01,4.501500E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1490885,fr,1,3.550000E+00,4.521830E+00,4.310074E+01,2.750000E+01,Active Shallow Crust,2.400120E+02,5.799761E+01,0.000000E+00 +1491399,fr,1,3.850000E+00,4.399560E+00,4.816411E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799711E+01,0.000000E+00 +1491840,fr,8,3.550000E+00,-6.351300E-01,4.324489E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1491841,fr,3,3.550000E+00,-6.351300E-01,4.324489E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1491843,fr,1,3.550000E+00,-6.351300E-01,4.324489E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799809E+01,0.000000E+00 +1491846,fr,1,3.550000E+00,-6.351300E-01,4.324489E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,-9.000000E+01 +1491847,fr,1,3.550000E+00,-6.351300E-01,4.324489E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,-9.000000E+01 +1491852,fr,3,3.650000E+00,-6.351300E-01,4.324489E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1491853,fr,3,3.650000E+00,-6.351300E-01,4.324489E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1491855,fr,1,3.650000E+00,-6.351300E-01,4.324489E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801276E+01,0.000000E+00 +1491858,fr,1,3.650000E+00,-6.351300E-01,4.324489E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +1491862,fr,1,3.650000E+00,-6.351300E-01,4.324489E+01,1.500000E+01,Active Shallow Crust,1.289006E+02,8.996353E+01,0.000000E+00 +1491864,fr,2,3.750000E+00,-6.351300E-01,4.324489E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1491865,fr,2,3.750000E+00,-6.351300E-01,4.324489E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1491867,fr,3,3.750000E+00,-6.351300E-01,4.324489E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801759E+01,0.000000E+00 +1491876,fr,3,3.850000E+00,-6.351300E-01,4.324489E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1491877,fr,1,3.850000E+00,-6.351300E-01,4.324489E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1491879,fr,1,3.850000E+00,-6.351300E-01,4.324489E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.799770E+01,0.000000E+00 +1491883,fr,1,3.850000E+00,-6.351300E-01,4.324489E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +1491885,fr,1,3.850000E+00,-6.351300E-01,4.324489E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999383E+01,0.000000E+00 +1491888,fr,1,3.950000E+00,-6.351300E-01,4.324489E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1491889,fr,1,3.950000E+00,-6.351300E-01,4.324489E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1491891,fr,1,3.950000E+00,-6.351300E-01,4.324489E+01,5.000000E+00,Active Shallow Crust,2.400193E+02,5.800485E+01,0.000000E+00 +1491894,fr,1,3.950000E+00,-6.351300E-01,4.324489E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +1491897,fr,1,3.950000E+00,-6.351300E-01,4.324489E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.999363E+01,0.000000E+00 +1491900,fr,5,4.050000E+00,-6.351300E-01,4.324489E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1491903,fr,3,4.050000E+00,-6.351300E-01,4.324489E+01,5.000000E+00,Active Shallow Crust,2.400055E+02,5.800573E+01,0.000000E+00 +1491913,fr,1,4.150000E+00,-6.351300E-01,4.324489E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1491918,fr,1,4.150000E+00,-6.351300E-01,4.324489E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,-9.000000E+01 +1491921,fr,1,4.150000E+00,-6.351300E-01,4.324489E+01,5.000000E+00,Active Shallow Crust,1.288981E+02,8.999356E+01,0.000000E+00 +1491924,fr,2,4.250000E+00,-6.351300E-01,4.324489E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1491935,fr,1,4.250000E+00,-6.351300E-01,4.324489E+01,2.750000E+01,Active Shallow Crust,1.288948E+02,8.998090E+01,0.000000E+00 +1491948,fr,1,4.450000E+00,-6.351300E-01,4.324489E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1491949,fr,1,4.450000E+00,-6.351300E-01,4.324489E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1491973,fr,1,4.650000E+00,-6.351300E-01,4.324489E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1491984,fr,1,4.750000E+00,-6.351300E-01,4.324489E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1491985,fr,1,4.750000E+00,-6.351300E-01,4.324489E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1492000,fr,1,4.850000E+00,-6.351300E-01,4.324489E+01,1.500000E+01,Active Shallow Crust,2.400159E+02,5.800209E+01,0.000000E+00 +1492032,fr,1,5.150000E+00,-6.351300E-01,4.324489E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1492113,fr,1,5.750000E+00,-6.351300E-01,4.324489E+01,5.000000E+00,Active Shallow Crust,1.288744E+02,8.998853E+01,0.000000E+00 +1492321,fr,1,3.550000E+00,-9.894900E-01,5.023023E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1492323,fr,1,3.550000E+00,-9.894900E-01,5.023023E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799823E+01,0.000000E+00 +1492356,fr,1,3.850000E+00,-9.894900E-01,5.023023E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1492359,fr,1,3.850000E+00,-9.894900E-01,5.023023E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799795E+01,0.000000E+00 +1492371,fr,1,3.950000E+00,-9.894900E-01,5.023023E+01,5.000000E+00,Active Shallow Crust,2.400204E+02,5.800503E+01,0.000000E+00 +1492801,fr,1,3.550000E+00,7.385820E+00,4.867481E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998668E+01,0.000000E+00 +1492807,fr,1,3.550000E+00,7.385820E+00,4.867481E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999326E+01,-9.000000E+01 +1492815,fr,1,3.650000E+00,7.385820E+00,4.867481E+01,5.000000E+00,Active Shallow Crust,2.400018E+02,5.801302E+01,0.000000E+00 +1492824,fr,1,3.750000E+00,7.385820E+00,4.867481E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +1492836,fr,2,3.850000E+00,7.385820E+00,4.867481E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +1492845,fr,1,3.850000E+00,7.385820E+00,4.867481E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.999529E+01,0.000000E+00 +1492846,fr,1,3.850000E+00,7.385820E+00,4.867481E+01,1.500000E+01,Active Shallow Crust,1.288954E+02,8.999529E+01,0.000000E+00 +1492900,fr,1,4.350000E+00,7.385820E+00,4.867481E+01,1.500000E+01,Active Shallow Crust,2.400086E+02,5.799637E+01,0.000000E+00 +1493280,fr,2,3.550000E+00,9.115270E+00,4.961554E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998693E+01,0.000000E+00 +1493286,fr,1,3.550000E+00,9.115270E+00,4.961554E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998678E+01,-9.000000E+01 +1493304,fr,1,3.750000E+00,9.115270E+00,4.961554E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +1493322,fr,1,3.850000E+00,9.115270E+00,4.961554E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,-9.000000E+01 +1493328,fr,1,3.950000E+00,9.115270E+00,4.961554E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999175E+01,0.000000E+00 +1493420,fr,1,4.650000E+00,9.115270E+00,4.961554E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998882E+01,-9.000000E+01 +1493764,fr,1,3.550000E+00,7.671430E+00,4.908610E+01,1.500000E+01,Active Shallow Crust,2.400138E+02,5.799733E+01,0.000000E+00 +1493785,fr,1,3.750000E+00,7.671430E+00,4.908610E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1493796,fr,1,3.850000E+00,7.671430E+00,4.908610E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +1493820,fr,1,4.050000E+00,7.671430E+00,4.908610E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998886E+01,0.000000E+00 +1493844,fr,1,4.250000E+00,7.671430E+00,4.908610E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999115E+01,0.000000E+00 +1493941,fr,1,5.050000E+00,7.671430E+00,4.908610E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1493956,fr,1,5.150000E+00,7.671430E+00,4.908610E+01,1.500000E+01,Active Shallow Crust,2.400213E+02,5.800028E+01,0.000000E+00 +1494242,fr,1,3.550000E+00,-3.856390E+00,4.717215E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1494249,fr,1,3.550000E+00,-3.856390E+00,4.717215E+01,5.000000E+00,Active Shallow Crust,1.288953E+02,8.999486E+01,0.000000E+00 +1494299,fr,1,3.950000E+00,-3.856390E+00,4.717215E+01,2.750000E+01,Active Shallow Crust,1.289004E+02,8.999352E+01,0.000000E+00 +1494723,fr,1,3.550000E+00,6.074270E+00,4.476620E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799793E+01,0.000000E+00 +1494747,fr,1,3.750000E+00,6.074270E+00,4.476620E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801738E+01,0.000000E+00 +1494804,fr,1,4.250000E+00,6.074270E+00,4.476620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +1494807,fr,1,4.250000E+00,6.074270E+00,4.476620E+01,5.000000E+00,Active Shallow Crust,2.400071E+02,5.799372E+01,0.000000E+00 +1494853,fr,1,4.650000E+00,6.074270E+00,4.476620E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1494909,fr,1,5.050000E+00,6.074270E+00,4.476620E+01,5.000000E+00,Active Shallow Crust,1.288863E+02,8.999041E+01,0.000000E+00 +1495205,fr,1,3.550000E+00,5.815430E+00,4.433697E+01,2.750000E+01,Active Shallow Crust,2.400121E+02,5.799758E+01,0.000000E+00 +1495209,fr,1,3.550000E+00,5.815430E+00,4.433697E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.999279E+01,0.000000E+00 +1495224,fr,2,3.750000E+00,5.815430E+00,4.433697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998854E+01,0.000000E+00 +1495230,fr,1,3.750000E+00,5.815430E+00,4.433697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998841E+01,-9.000000E+01 +1495302,fr,1,4.350000E+00,5.815430E+00,4.433697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999129E+01,-9.000000E+01 +1495333,fr,1,4.650000E+00,5.815430E+00,4.433697E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +1495362,fr,1,4.850000E+00,5.815430E+00,4.433697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,-9.000000E+01 +1495374,fr,1,4.950000E+00,5.815430E+00,4.433697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,-9.000000E+01 +1496160,fr,1,3.550000E+00,3.705490E+00,4.536009E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +1496162,fr,1,3.550000E+00,3.705490E+00,4.536009E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +1496172,fr,2,3.650000E+00,3.705490E+00,4.536009E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +1496177,fr,1,3.650000E+00,3.705490E+00,4.536009E+01,2.750000E+01,Active Shallow Crust,2.400009E+02,5.801277E+01,0.000000E+00 +1496197,fr,1,3.850000E+00,3.705490E+00,4.536009E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1496232,fr,1,4.150000E+00,3.705490E+00,4.536009E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +1496246,fr,1,4.250000E+00,3.705490E+00,4.536009E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +1496251,fr,1,4.250000E+00,3.705490E+00,4.536009E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,-9.000000E+01 +1496640,fr,1,3.550000E+00,-2.779010E+00,4.809249E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1496646,fr,1,3.550000E+00,-2.779010E+00,4.809249E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,-9.000000E+01 +1496649,fr,1,3.550000E+00,-2.779010E+00,4.809249E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999326E+01,0.000000E+00 +1496652,fr,2,3.650000E+00,-2.779010E+00,4.809249E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +1496653,fr,2,3.650000E+00,-2.779010E+00,4.809249E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +1496658,fr,1,3.650000E+00,-2.779010E+00,4.809249E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999089E+01,-9.000000E+01 +1496664,fr,1,3.750000E+00,-2.779010E+00,4.809249E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +1496675,fr,1,3.750000E+00,-2.779010E+00,4.809249E+01,2.750000E+01,Active Shallow Crust,1.288969E+02,8.996727E+01,0.000000E+00 +1496676,fr,1,3.850000E+00,-2.779010E+00,4.809249E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1496728,fr,1,4.250000E+00,-2.779010E+00,4.809249E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.799394E+01,0.000000E+00 +1496751,fr,1,4.450000E+00,-2.779010E+00,4.809249E+01,5.000000E+00,Active Shallow Crust,2.400057E+02,5.799483E+01,0.000000E+00 +1497120,fr,3,3.550000E+00,8.048810E+00,4.721544E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998630E+01,0.000000E+00 +1497121,fr,1,3.550000E+00,8.048810E+00,4.721544E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998630E+01,0.000000E+00 +1497122,fr,2,3.550000E+00,8.048810E+00,4.721544E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998630E+01,0.000000E+00 +1497127,fr,1,3.550000E+00,8.048810E+00,4.721544E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998615E+01,-9.000000E+01 +1497132,fr,2,3.650000E+00,8.048810E+00,4.721544E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998779E+01,0.000000E+00 +1497135,fr,1,3.650000E+00,8.048810E+00,4.721544E+01,5.000000E+00,Active Shallow Crust,2.400026E+02,5.801244E+01,0.000000E+00 +1497144,fr,1,3.750000E+00,8.048810E+00,4.721544E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998912E+01,0.000000E+00 +1497151,fr,1,3.750000E+00,8.048810E+00,4.721544E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998899E+01,-9.000000E+01 +1497156,fr,2,3.850000E+00,8.048810E+00,4.721544E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1497162,fr,1,3.850000E+00,8.048810E+00,4.721544E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,-9.000000E+01 +1497165,fr,1,3.850000E+00,8.048810E+00,4.721544E+01,5.000000E+00,Active Shallow Crust,1.288929E+02,8.999515E+01,0.000000E+00 +1497169,fr,1,3.950000E+00,8.048810E+00,4.721544E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999136E+01,0.000000E+00 +1497177,fr,1,3.950000E+00,8.048810E+00,4.721544E+01,5.000000E+00,Active Shallow Crust,1.288982E+02,8.999568E+01,0.000000E+00 +1497179,fr,1,3.950000E+00,8.048810E+00,4.721544E+01,2.750000E+01,Active Shallow Crust,1.288982E+02,8.999568E+01,0.000000E+00 +1497180,fr,2,4.050000E+00,8.048810E+00,4.721544E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999229E+01,0.000000E+00 +1497184,fr,1,4.050000E+00,8.048810E+00,4.721544E+01,1.500000E+01,Active Shallow Crust,2.400047E+02,5.800617E+01,0.000000E+00 +1497204,fr,1,4.250000E+00,8.048810E+00,4.721544E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998776E+01,0.000000E+00 +1497216,fr,2,4.350000E+00,8.048810E+00,4.721544E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +1497228,fr,1,4.450000E+00,8.048810E+00,4.721544E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +1497285,fr,1,4.850000E+00,8.048810E+00,4.721544E+01,5.000000E+00,Active Shallow Crust,1.288930E+02,8.998908E+01,0.000000E+00 +1497319,fr,1,5.150000E+00,8.048810E+00,4.721544E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998901E+01,-9.000000E+01 +1497468,fr,1,6.450000E+00,8.048818E+00,4.721544E+01,8.491219E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1497600,fr,1,3.550000E+00,8.058070E+00,4.963111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998694E+01,0.000000E+00 +1497601,fr,2,3.550000E+00,8.058070E+00,4.963111E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998694E+01,0.000000E+00 +1497610,fr,1,3.550000E+00,8.058070E+00,4.963111E+01,1.500000E+01,Active Shallow Crust,1.288974E+02,8.999347E+01,0.000000E+00 +1497612,fr,1,3.650000E+00,8.058070E+00,4.963111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998836E+01,0.000000E+00 +1497614,fr,1,3.650000E+00,8.058070E+00,4.963111E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998836E+01,0.000000E+00 +1497617,fr,1,3.650000E+00,8.058070E+00,4.963111E+01,2.750000E+01,Active Shallow Crust,2.400005E+02,5.801260E+01,0.000000E+00 +1497624,fr,2,3.750000E+00,8.058070E+00,4.963111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +1497649,fr,1,3.950000E+00,8.058070E+00,4.963111E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999176E+01,0.000000E+00 +1497660,fr,1,4.050000E+00,8.058070E+00,4.963111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999265E+01,0.000000E+00 +1497690,fr,1,4.250000E+00,8.058070E+00,4.963111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998820E+01,-9.000000E+01 +1497698,fr,1,4.350000E+00,8.058070E+00,4.963111E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +1497699,fr,1,4.350000E+00,8.058070E+00,4.963111E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.799596E+01,0.000000E+00 +1497711,fr,1,4.450000E+00,8.058070E+00,4.963111E+01,5.000000E+00,Active Shallow Crust,2.400067E+02,5.799494E+01,0.000000E+00 +1497721,fr,1,4.550000E+00,8.058070E+00,4.963111E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999174E+01,0.000000E+00 +1497762,fr,1,4.850000E+00,8.058070E+00,4.963111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999113E+01,-9.000000E+01 +1497813,fr,1,5.250000E+00,8.058070E+00,4.963111E+01,5.000000E+00,Active Shallow Crust,1.288858E+02,8.998734E+01,0.000000E+00 +1498125,fr,1,3.850000E+00,5.106780E+00,5.173491E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999337E+01,0.000000E+00 +1498143,fr,1,4.050000E+00,5.106780E+00,5.173491E+01,5.000000E+00,Active Shallow Crust,2.400068E+02,5.800618E+01,0.000000E+00 +1498593,fr,1,3.750000E+00,-2.647700E-01,4.437450E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996732E+01,0.000000E+00 +1499040,fr,2,3.550000E+00,8.253920E+00,4.990213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998701E+01,0.000000E+00 +1499041,fr,1,3.550000E+00,8.253920E+00,4.990213E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998701E+01,0.000000E+00 +1499043,fr,2,3.550000E+00,8.253920E+00,4.990213E+01,5.000000E+00,Active Shallow Crust,2.400128E+02,5.799638E+01,0.000000E+00 +1499052,fr,1,3.650000E+00,8.253920E+00,4.990213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +1499053,fr,2,3.650000E+00,8.253920E+00,4.990213E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +1499055,fr,1,3.650000E+00,8.253920E+00,4.990213E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801422E+01,0.000000E+00 +1499058,fr,1,3.650000E+00,8.253920E+00,4.990213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998829E+01,-9.000000E+01 +1499064,fr,1,3.750000E+00,8.253920E+00,4.990213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1499066,fr,2,3.750000E+00,8.253920E+00,4.990213E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1499070,fr,1,3.750000E+00,8.253920E+00,4.990213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,-9.000000E+01 +1499076,fr,2,3.850000E+00,8.253920E+00,4.990213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +1499077,fr,1,3.850000E+00,8.253920E+00,4.990213E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +1499088,fr,4,3.950000E+00,8.253920E+00,4.990213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999181E+01,0.000000E+00 +1499089,fr,1,3.950000E+00,8.253920E+00,4.990213E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999181E+01,0.000000E+00 +1499094,fr,1,3.950000E+00,8.253920E+00,4.990213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999171E+01,-9.000000E+01 +1499099,fr,1,3.950000E+00,8.253920E+00,4.990213E+01,2.750000E+01,Active Shallow Crust,1.289007E+02,8.999181E+01,0.000000E+00 +1499100,fr,1,4.050000E+00,8.253920E+00,4.990213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999269E+01,0.000000E+00 +1499102,fr,1,4.050000E+00,8.253920E+00,4.990213E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999269E+01,0.000000E+00 +1499114,fr,1,4.150000E+00,8.253920E+00,4.990213E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998698E+01,0.000000E+00 +1499148,fr,2,4.450000E+00,8.253920E+00,4.990213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +1499160,fr,1,4.550000E+00,8.253920E+00,4.990213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999178E+01,0.000000E+00 +1499209,fr,1,4.950000E+00,8.253920E+00,4.990213E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +1499520,fr,1,3.550000E+00,8.417010E+00,5.041677E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998715E+01,0.000000E+00 +1499526,fr,1,3.550000E+00,8.417010E+00,5.041677E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998700E+01,-9.000000E+01 +1499544,fr,3,3.750000E+00,8.417010E+00,5.041677E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1499549,fr,1,3.750000E+00,8.417010E+00,5.041677E+01,2.750000E+01,Active Shallow Crust,2.400085E+02,5.801837E+01,0.000000E+00 +1499551,fr,1,3.750000E+00,8.417010E+00,5.041677E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998968E+01,-9.000000E+01 +1499555,fr,1,3.750000E+00,8.417010E+00,5.041677E+01,2.750000E+01,Active Shallow Crust,1.288958E+02,8.996756E+01,0.000000E+00 +1499556,fr,1,3.850000E+00,8.417010E+00,5.041677E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +1499557,fr,1,3.850000E+00,8.417010E+00,5.041677E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +1499616,fr,1,4.350000E+00,8.417010E+00,5.041677E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1500072,fr,1,4.150000E+00,3.202290E+00,5.207156E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +1500099,fr,1,4.350000E+00,3.202290E+00,5.207156E+01,5.000000E+00,Active Shallow Crust,2.400099E+02,5.799621E+01,0.000000E+00 +1500480,fr,1,3.550000E+00,3.646260E+00,4.149957E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998867E+01,0.000000E+00 +1500483,fr,1,3.550000E+00,3.646260E+00,4.149957E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799840E+01,0.000000E+00 +1500504,fr,1,3.750000E+00,3.646260E+00,4.149957E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +1500507,fr,1,3.750000E+00,3.646260E+00,4.149957E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.801757E+01,0.000000E+00 +1500541,fr,2,4.050000E+00,3.646260E+00,4.149957E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +1500960,fr,2,3.550000E+00,7.945030E+00,4.797436E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999325E+01,0.000000E+00 +1500961,fr,1,3.550000E+00,7.945030E+00,4.797436E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999325E+01,0.000000E+00 +1500963,fr,1,3.550000E+00,7.945030E+00,4.797436E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799897E+01,0.000000E+00 +1500969,fr,1,3.550000E+00,7.945030E+00,4.797436E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999325E+01,0.000000E+00 +1500972,fr,2,3.650000E+00,7.945030E+00,4.797436E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998797E+01,0.000000E+00 +1500982,fr,1,3.650000E+00,7.945030E+00,4.797436E+01,1.500000E+01,Active Shallow Crust,1.289001E+02,8.996355E+01,0.000000E+00 +1500984,fr,3,3.750000E+00,7.945030E+00,4.797436E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1500987,fr,1,3.750000E+00,7.945030E+00,4.797436E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801760E+01,0.000000E+00 +1500996,fr,1,3.850000E+00,7.945030E+00,4.797436E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +1501008,fr,1,3.950000E+00,7.945030E+00,4.797436E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999148E+01,0.000000E+00 +1501009,fr,1,3.950000E+00,7.945030E+00,4.797436E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999148E+01,0.000000E+00 +1501012,fr,1,3.950000E+00,7.945030E+00,4.797436E+01,1.500000E+01,Active Shallow Crust,2.400200E+02,5.800493E+01,0.000000E+00 +1501021,fr,1,4.050000E+00,7.945030E+00,4.797436E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998861E+01,0.000000E+00 +1501023,fr,1,4.050000E+00,7.945030E+00,4.797436E+01,5.000000E+00,Active Shallow Crust,2.400063E+02,5.800552E+01,0.000000E+00 +1501033,fr,1,4.150000E+00,7.945030E+00,4.797436E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1501035,fr,1,4.150000E+00,7.945030E+00,4.797436E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799758E+01,0.000000E+00 +1501038,fr,1,4.150000E+00,7.945030E+00,4.797436E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,-9.000000E+01 +1501056,fr,2,4.350000E+00,7.945030E+00,4.797436E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +1501057,fr,1,4.350000E+00,7.945030E+00,4.797436E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +1501063,fr,1,4.350000E+00,7.945030E+00,4.797436E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998913E+01,-9.000000E+01 +1501065,fr,1,4.350000E+00,7.945030E+00,4.797436E+01,5.000000E+00,Active Shallow Crust,1.288978E+02,8.998260E+01,0.000000E+00 +1501094,fr,1,4.650000E+00,7.945030E+00,4.797436E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1501101,fr,1,4.650000E+00,7.945030E+00,4.797436E+01,5.000000E+00,Active Shallow Crust,1.288902E+02,8.998728E+01,0.000000E+00 +1501440,fr,1,3.550000E+00,2.505500E-01,4.237442E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1501453,fr,1,3.650000E+00,2.505500E-01,4.237442E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1501465,fr,1,3.750000E+00,2.505500E-01,4.237442E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1501468,fr,1,3.750000E+00,2.505500E-01,4.237442E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.801754E+01,0.000000E+00 +1501470,fr,1,3.750000E+00,2.505500E-01,4.237442E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,-9.000000E+01 +1501478,fr,1,3.850000E+00,2.505500E-01,4.237442E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1501485,fr,1,3.850000E+00,2.505500E-01,4.237442E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999374E+01,0.000000E+00 +1501494,fr,1,3.950000E+00,2.505500E-01,4.237442E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,-9.000000E+01 +1501608,fr,1,4.950000E+00,2.505500E-01,4.237442E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1501657,fr,1,5.350000E+00,2.505500E-01,4.237442E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1501741,fr,1,6.050000E+00,2.505500E-01,4.237442E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1501932,fr,1,3.650000E+00,-1.426310E+00,4.357553E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1501933,fr,1,3.650000E+00,-1.426310E+00,4.357553E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1501944,fr,1,3.750000E+00,-1.426310E+00,4.357553E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1501946,fr,1,3.750000E+00,-1.426310E+00,4.357553E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1501959,fr,1,3.850000E+00,-1.426310E+00,4.357553E+01,5.000000E+00,Active Shallow Crust,2.400103E+02,5.799779E+01,0.000000E+00 +1502004,fr,3,4.250000E+00,-1.426310E+00,4.357553E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1502020,fr,1,4.350000E+00,-1.426310E+00,4.357553E+01,1.500000E+01,Active Shallow Crust,2.400077E+02,5.799580E+01,0.000000E+00 +1502052,fr,1,4.650000E+00,-1.426310E+00,4.357553E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1502413,fr,1,3.650000E+00,-9.361600E-01,4.183569E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1502425,fr,1,3.750000E+00,-9.361600E-01,4.183569E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1502484,fr,1,4.250000E+00,-9.361600E-01,4.183569E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1503372,fr,1,3.650000E+00,3.329090E+00,4.332765E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1503373,fr,1,3.650000E+00,3.329090E+00,4.332765E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1503374,fr,2,3.650000E+00,3.329090E+00,4.332765E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1503405,fr,1,3.850000E+00,3.329090E+00,4.332765E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999351E+01,0.000000E+00 +1503408,fr,1,3.950000E+00,3.329090E+00,4.332765E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +1503412,fr,1,3.950000E+00,3.329090E+00,4.332765E+01,1.500000E+01,Active Shallow Crust,2.400192E+02,5.800477E+01,0.000000E+00 +1503413,fr,1,3.950000E+00,3.329090E+00,4.332765E+01,2.750000E+01,Active Shallow Crust,2.400192E+02,5.800477E+01,0.000000E+00 +1503421,fr,1,4.050000E+00,3.329090E+00,4.332765E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1503436,fr,1,4.150000E+00,3.329090E+00,4.332765E+01,1.500000E+01,Active Shallow Crust,2.400080E+02,5.799704E+01,0.000000E+00 +1503444,fr,1,4.250000E+00,3.329090E+00,4.332765E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1503480,fr,1,4.550000E+00,3.329090E+00,4.332765E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1503552,fr,1,5.150000E+00,3.329090E+00,4.332765E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1504321,fr,1,3.550000E+00,9.021100E-01,4.622515E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +1504331,fr,1,3.550000E+00,9.021100E-01,4.622515E+01,2.750000E+01,Active Shallow Crust,1.288963E+02,8.999390E+01,0.000000E+00 +1504345,fr,1,3.750000E+00,9.021100E-01,4.622515E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1504357,fr,1,3.850000E+00,9.021100E-01,4.622515E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1504381,fr,1,4.050000E+00,9.021100E-01,4.622515E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1504402,fr,1,4.150000E+00,9.021100E-01,4.622515E+01,1.500000E+01,Active Shallow Crust,1.288976E+02,8.999366E+01,0.000000E+00 +1504500,fr,1,5.050000E+00,9.021100E-01,4.622515E+01,5.000000E+00,Active Shallow Crust,3.599999E+02,8.999007E+01,0.000000E+00 +1504833,fr,1,3.750000E+00,-8.073500E-01,5.129059E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.996735E+01,0.000000E+00 +1504884,fr,1,4.250000E+00,-8.073500E-01,5.129059E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1505280,fr,1,3.550000E+00,-1.452390E+00,4.940515E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1505289,fr,1,3.550000E+00,-1.452390E+00,4.940515E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999426E+01,0.000000E+00 +1505292,fr,1,3.650000E+00,-1.452390E+00,4.940515E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1505293,fr,1,3.650000E+00,-1.452390E+00,4.940515E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1505304,fr,1,3.750000E+00,-1.452390E+00,4.940515E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +1505316,fr,1,3.850000E+00,-1.452390E+00,4.940515E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +1505340,fr,1,4.050000E+00,-1.452390E+00,4.940515E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1505364,fr,2,4.250000E+00,-1.452390E+00,4.940515E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +1505367,fr,1,4.250000E+00,-1.452390E+00,4.940515E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799419E+01,0.000000E+00 +1505371,fr,1,4.250000E+00,-1.452390E+00,4.940515E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,-9.000000E+01 +1505418,fr,1,4.650000E+00,-1.452390E+00,4.940515E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,-9.000000E+01 +1505442,fr,1,4.850000E+00,-1.452390E+00,4.940515E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1505785,fr,1,3.750000E+00,9.247060E+00,4.950303E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1506240,fr,6,3.550000E+00,2.680490E+00,4.175839E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +1506241,fr,1,3.550000E+00,2.680490E+00,4.175839E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +1506243,fr,1,3.550000E+00,2.680490E+00,4.175839E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799788E+01,0.000000E+00 +1506244,fr,1,3.550000E+00,2.680490E+00,4.175839E+01,1.500000E+01,Active Shallow Crust,2.400121E+02,5.799788E+01,0.000000E+00 +1506249,fr,1,3.550000E+00,2.680490E+00,4.175839E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999436E+01,0.000000E+00 +1506252,fr,2,3.650000E+00,2.680490E+00,4.175839E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1506253,fr,3,3.650000E+00,2.680490E+00,4.175839E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1506258,fr,1,3.650000E+00,2.680490E+00,4.175839E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,-9.000000E+01 +1506262,fr,1,3.650000E+00,2.680490E+00,4.175839E+01,1.500000E+01,Active Shallow Crust,1.289015E+02,8.996343E+01,0.000000E+00 +1506271,fr,1,3.750000E+00,2.680490E+00,4.175839E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999094E+01,-9.000000E+01 +1506273,fr,1,3.750000E+00,2.680490E+00,4.175839E+01,5.000000E+00,Active Shallow Crust,1.288971E+02,8.996710E+01,0.000000E+00 +1506276,fr,1,3.850000E+00,2.680490E+00,4.175839E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +1506277,fr,2,3.850000E+00,2.680490E+00,4.175839E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +1506279,fr,2,3.850000E+00,2.680490E+00,4.175839E+01,5.000000E+00,Active Shallow Crust,2.400103E+02,5.799761E+01,0.000000E+00 +1506282,fr,3,3.850000E+00,2.680490E+00,4.175839E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,-9.000000E+01 +1506286,fr,1,3.850000E+00,2.680490E+00,4.175839E+01,1.500000E+01,Active Shallow Crust,1.288958E+02,8.999467E+01,0.000000E+00 +1506288,fr,1,3.950000E+00,2.680490E+00,4.175839E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +1506291,fr,1,3.950000E+00,2.680490E+00,4.175839E+01,5.000000E+00,Active Shallow Crust,2.400193E+02,5.800491E+01,0.000000E+00 +1506292,fr,1,3.950000E+00,2.680490E+00,4.175839E+01,1.500000E+01,Active Shallow Crust,2.400193E+02,5.800491E+01,0.000000E+00 +1506294,fr,1,3.950000E+00,2.680490E+00,4.175839E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,-9.000000E+01 +1506300,fr,1,4.050000E+00,2.680490E+00,4.175839E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1506302,fr,1,4.050000E+00,2.680490E+00,4.175839E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1506303,fr,1,4.050000E+00,2.680490E+00,4.175839E+01,5.000000E+00,Active Shallow Crust,2.400050E+02,5.800575E+01,0.000000E+00 +1506312,fr,1,4.150000E+00,2.680490E+00,4.175839E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +1506313,fr,1,4.150000E+00,2.680490E+00,4.175839E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +1506324,fr,1,4.250000E+00,2.680490E+00,4.175839E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1506336,fr,2,4.350000E+00,2.680490E+00,4.175839E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1506348,fr,1,4.450000E+00,2.680490E+00,4.175839E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +1506352,fr,1,4.450000E+00,2.680490E+00,4.175839E+01,1.500000E+01,Active Shallow Crust,2.400041E+02,5.799458E+01,0.000000E+00 +1506375,fr,1,4.650000E+00,2.680490E+00,4.175839E+01,5.000000E+00,Active Shallow Crust,2.400093E+02,5.799399E+01,0.000000E+00 +1506411,fr,1,4.950000E+00,2.680490E+00,4.175839E+01,5.000000E+00,Active Shallow Crust,2.400099E+02,5.800405E+01,0.000000E+00 +1506429,fr,1,5.050000E+00,2.680490E+00,4.175839E+01,5.000000E+00,Active Shallow Crust,1.288873E+02,8.999042E+01,0.000000E+00 +1506468,fr,1,5.450000E+00,2.680490E+00,4.175839E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1506489,fr,1,5.550000E+00,2.680490E+00,4.175839E+01,5.000000E+00,Active Shallow Crust,1.288796E+02,8.998982E+01,0.000000E+00 +1506495,fr,1,5.650000E+00,2.680490E+00,4.175839E+01,5.000000E+00,Active Shallow Crust,2.400296E+02,5.800112E+01,0.000000E+00 +1506720,fr,1,3.550000E+00,-2.633500E+00,4.837549E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1506722,fr,1,3.550000E+00,-2.633500E+00,4.837549E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1506725,fr,1,3.550000E+00,-2.633500E+00,4.837549E+01,2.750000E+01,Active Shallow Crust,2.400127E+02,5.799791E+01,0.000000E+00 +1506733,fr,1,3.650000E+00,-2.633500E+00,4.837549E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +1506741,fr,1,3.650000E+00,-2.633500E+00,4.837549E+01,5.000000E+00,Active Shallow Crust,1.288999E+02,8.996356E+01,0.000000E+00 +1506744,fr,2,3.750000E+00,-2.633500E+00,4.837549E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +1506753,fr,1,3.750000E+00,-2.633500E+00,4.837549E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.996752E+01,0.000000E+00 +1506756,fr,1,3.850000E+00,-2.633500E+00,4.837549E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +1506768,fr,1,3.950000E+00,-2.633500E+00,4.837549E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1506769,fr,1,3.950000E+00,-2.633500E+00,4.837549E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1506780,fr,1,4.050000E+00,-2.633500E+00,4.837549E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +1506795,fr,1,4.150000E+00,-2.633500E+00,4.837549E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.799721E+01,0.000000E+00 +1506804,fr,1,4.250000E+00,-2.633500E+00,4.837549E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1506823,fr,1,4.350000E+00,-2.633500E+00,4.837549E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,-9.000000E+01 +1507200,fr,1,3.550000E+00,6.126300E-01,5.251739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1507221,fr,1,3.650000E+00,6.126300E-01,5.251739E+01,5.000000E+00,Active Shallow Crust,1.288999E+02,8.996347E+01,0.000000E+00 +1507236,fr,1,3.850000E+00,6.126300E-01,5.251739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1507684,fr,1,3.550000E+00,4.570000E-03,4.936482E+01,1.500000E+01,Active Shallow Crust,2.400125E+02,5.799821E+01,0.000000E+00 +1507693,fr,2,3.650000E+00,4.570000E-03,4.936482E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1507696,fr,1,3.650000E+00,4.569999E-03,4.936482E+01,1.500000E+01,Active Shallow Crust,2.400014E+02,5.801295E+01,0.000000E+00 +1507701,fr,1,3.650000E+00,4.570000E-03,4.936482E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.996351E+01,0.000000E+00 +1507704,fr,1,3.750000E+00,4.570000E-03,4.936482E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1507722,fr,1,3.850000E+00,4.570000E-03,4.936482E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,-9.000000E+01 +1507728,fr,2,3.950000E+00,4.570000E-03,4.936482E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +1507729,fr,1,3.950000E+00,4.570000E-03,4.936482E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +1507752,fr,1,4.150000E+00,4.570000E-03,4.936482E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +1507755,fr,1,4.150000E+00,4.570000E-03,4.936482E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.799741E+01,0.000000E+00 +1507764,fr,1,4.250000E+00,4.570000E-03,4.936482E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1507836,fr,1,4.850000E+00,4.570000E-03,4.936482E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +1507848,fr,1,4.950000E+00,4.570000E-03,4.936482E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +1508160,fr,1,3.550000E+00,7.141480E+00,4.801103E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999326E+01,0.000000E+00 +1508161,fr,1,3.550000E+00,7.141480E+00,4.801103E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999326E+01,0.000000E+00 +1508166,fr,1,3.550000E+00,7.141480E+00,4.801103E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999318E+01,-9.000000E+01 +1508172,fr,1,3.650000E+00,7.141480E+00,4.801103E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998798E+01,0.000000E+00 +1508173,fr,1,3.650000E+00,7.141480E+00,4.801103E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998798E+01,0.000000E+00 +1508184,fr,1,3.750000E+00,7.141480E+00,4.801103E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998928E+01,0.000000E+00 +1508185,fr,1,3.750000E+00,7.141480E+00,4.801103E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998928E+01,0.000000E+00 +1508221,fr,1,4.050000E+00,7.141480E+00,4.801103E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +1508233,fr,1,4.150000E+00,7.141480E+00,4.801103E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1508274,fr,1,4.450000E+00,7.141480E+00,4.801103E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,-9.000000E+01 +1508284,fr,1,4.550000E+00,7.141480E+00,4.801103E+01,1.500000E+01,Active Shallow Crust,2.400100E+02,5.799745E+01,0.000000E+00 +1508304,fr,1,4.750000E+00,7.141480E+00,4.801103E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1508316,fr,1,4.850000E+00,7.141480E+00,4.801103E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1508640,fr,1,3.550000E+00,4.920720E+00,5.207219E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998760E+01,0.000000E+00 +1508655,fr,1,3.650000E+00,4.920720E+00,5.207219E+01,5.000000E+00,Active Shallow Crust,2.400018E+02,5.801313E+01,0.000000E+00 +1508736,fr,1,4.350000E+00,4.920720E+00,5.207219E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1509121,fr,1,3.550000E+00,7.698100E-01,5.136364E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1509132,fr,1,3.650000E+00,7.698100E-01,5.136364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1509135,fr,1,3.650000E+00,7.698100E-01,5.136364E+01,5.000000E+00,Active Shallow Crust,2.400016E+02,5.801303E+01,0.000000E+00 +1509158,fr,1,3.850000E+00,7.698100E-01,5.136364E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1509183,fr,1,4.050000E+00,7.698100E-01,5.136364E+01,5.000000E+00,Active Shallow Crust,2.400068E+02,5.800598E+01,0.000000E+00 +1509216,fr,1,4.350000E+00,7.698100E-01,5.136364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1509217,fr,1,4.350000E+00,7.698100E-01,5.136364E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1509603,fr,1,3.550000E+00,3.671660E+00,4.729368E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799867E+01,0.000000E+00 +1509612,fr,1,3.650000E+00,3.671660E+00,4.729368E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +1509624,fr,2,3.750000E+00,3.671660E+00,4.729368E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +1509627,fr,1,3.750000E+00,3.671660E+00,4.729368E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.801785E+01,0.000000E+00 +1509724,fr,1,4.550000E+00,3.671660E+00,4.729368E+01,1.500000E+01,Active Shallow Crust,2.400096E+02,5.799736E+01,0.000000E+00 +1510081,fr,1,3.550000E+00,2.603940E+00,4.440506E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1510086,fr,1,3.550000E+00,2.603940E+00,4.440506E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,-9.000000E+01 +1510104,fr,3,3.750000E+00,2.603940E+00,4.440506E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +1510125,fr,1,3.850000E+00,2.603940E+00,4.440506E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999362E+01,0.000000E+00 +1510128,fr,1,3.950000E+00,2.603940E+00,4.440506E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +1510140,fr,1,4.050000E+00,2.603940E+00,4.440506E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1510144,fr,1,4.050000E+00,2.603940E+00,4.440506E+01,1.500000E+01,Active Shallow Crust,2.400054E+02,5.800572E+01,0.000000E+00 +1510149,fr,1,4.050000E+00,2.603940E+00,4.440506E+01,5.000000E+00,Active Shallow Crust,1.288904E+02,8.999393E+01,0.000000E+00 +1510164,fr,1,4.250000E+00,2.603940E+00,4.440506E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +1510368,fr,1,5.950000E+00,2.603940E+00,4.440506E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1511040,fr,1,3.550000E+00,2.317010E+00,4.697708E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1511053,fr,1,3.650000E+00,2.317010E+00,4.697708E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999080E+01,0.000000E+00 +1511058,fr,1,3.650000E+00,2.317010E+00,4.697708E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999069E+01,-9.000000E+01 +1511065,fr,1,3.750000E+00,2.317010E+00,4.697708E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +1511074,fr,1,3.750000E+00,2.317010E+00,4.697708E+01,1.500000E+01,Active Shallow Crust,1.288964E+02,8.996724E+01,0.000000E+00 +1511089,fr,1,3.950000E+00,2.317010E+00,4.697708E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +1511100,fr,2,4.050000E+00,2.317010E+00,4.697708E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1511160,fr,1,4.550000E+00,2.317010E+00,4.697708E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1511256,fr,1,5.350000E+00,2.317010E+00,4.697708E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1511301,fr,1,5.650000E+00,2.317010E+00,4.697708E+01,5.000000E+00,Active Shallow Crust,1.288747E+02,8.999046E+01,0.000000E+00 +1511520,fr,1,3.550000E+00,-6.115850E+00,4.857355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999332E+01,0.000000E+00 +1511616,fr,1,4.350000E+00,-6.115850E+00,4.857355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +1512000,fr,3,3.550000E+00,4.500180E+00,4.638501E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999304E+01,0.000000E+00 +1512001,fr,1,3.550000E+00,4.500180E+00,4.638501E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999304E+01,0.000000E+00 +1512012,fr,1,3.650000E+00,4.500180E+00,4.638501E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998760E+01,0.000000E+00 +1512024,fr,1,3.750000E+00,4.500180E+00,4.638501E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +1512031,fr,1,3.750000E+00,4.500180E+00,4.638501E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998882E+01,-9.000000E+01 +1512036,fr,1,3.850000E+00,4.500180E+00,4.638501E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1512039,fr,1,3.850000E+00,4.500180E+00,4.638501E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799723E+01,0.000000E+00 +1512045,fr,1,3.850000E+00,4.500180E+00,4.638501E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999261E+01,0.000000E+00 +1512087,fr,1,4.250000E+00,4.500180E+00,4.638501E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.799354E+01,0.000000E+00 +1512108,fr,1,4.450000E+00,4.500180E+00,4.638501E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1512131,fr,1,4.550000E+00,4.500180E+00,4.638501E+01,2.750000E+01,Active Shallow Crust,1.288942E+02,8.998564E+01,0.000000E+00 +1512192,fr,1,5.150000E+00,4.500180E+00,4.638501E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1512973,fr,1,3.650000E+00,3.160140E+00,4.708800E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999082E+01,0.000000E+00 +1513020,fr,1,4.050000E+00,3.160140E+00,4.708800E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +1513032,fr,1,4.150000E+00,3.160140E+00,4.708800E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1513056,fr,1,4.350000E+00,3.160140E+00,4.708800E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1513440,fr,1,3.550000E+00,-8.232200E-01,4.363757E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1513446,fr,1,3.550000E+00,-8.232200E-01,4.363757E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +1513468,fr,1,3.750000E+00,-8.232200E-01,4.363757E+01,1.500000E+01,Active Shallow Crust,2.400080E+02,5.801744E+01,0.000000E+00 +1513488,fr,1,3.950000E+00,-8.232200E-01,4.363757E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1513515,fr,1,4.150000E+00,-8.232200E-01,4.363757E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799729E+01,0.000000E+00 +1513527,fr,1,4.250000E+00,-8.232200E-01,4.363757E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.799403E+01,0.000000E+00 +1513549,fr,1,4.450000E+00,-8.232200E-01,4.363757E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1513920,fr,3,3.550000E+00,-1.140290E+00,4.728419E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +1513921,fr,2,3.550000E+00,-1.140290E+00,4.728419E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +1513924,fr,1,3.550000E+00,-1.140290E+00,4.728419E+01,1.500000E+01,Active Shallow Crust,2.400123E+02,5.799824E+01,0.000000E+00 +1513932,fr,2,3.650000E+00,-1.140290E+00,4.728419E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1513933,fr,1,3.650000E+00,-1.140290E+00,4.728419E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1513944,fr,1,3.750000E+00,-1.140290E+00,4.728419E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1513956,fr,1,3.850000E+00,-1.140290E+00,4.728419E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +1513968,fr,1,3.950000E+00,-1.140290E+00,4.728419E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +1513988,fr,1,4.050000E+00,-1.140290E+00,4.728419E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,-9.000000E+01 +1513993,fr,1,4.150000E+00,-1.140290E+00,4.728419E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1514000,fr,1,4.150000E+00,-1.140290E+00,4.728419E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +1514028,fr,1,4.450000E+00,-1.140290E+00,4.728419E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +1514052,fr,2,4.650000E+00,-1.140290E+00,4.728419E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1514124,fr,1,5.250000E+00,-1.140290E+00,4.728419E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1514400,fr,1,3.550000E+00,6.579000E-02,4.426793E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1514407,fr,1,3.550000E+00,6.579000E-02,4.426793E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +1514444,fr,1,3.850000E+00,6.579000E-02,4.426793E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +1514460,fr,1,4.050000E+00,6.579000E-02,4.426793E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1514472,fr,1,4.150000E+00,6.579000E-02,4.426793E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1514880,fr,5,3.550000E+00,-1.433970E+00,4.316118E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +1514881,fr,1,3.550000E+00,-1.433970E+00,4.316118E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +1514883,fr,1,3.550000E+00,-1.433970E+00,4.316118E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799821E+01,0.000000E+00 +1514892,fr,1,3.650000E+00,-1.433970E+00,4.316118E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1514893,fr,1,3.650000E+00,-1.433970E+00,4.316118E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1514894,fr,1,3.650000E+00,-1.433970E+00,4.316118E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1514898,fr,2,3.650000E+00,-1.433970E+00,4.316118E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,-9.000000E+01 +1514904,fr,3,3.750000E+00,-1.433970E+00,4.316118E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1514905,fr,3,3.750000E+00,-1.433970E+00,4.316118E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1514906,fr,1,3.750000E+00,-1.433970E+00,4.316118E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1514907,fr,1,3.750000E+00,-1.433970E+00,4.316118E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.801757E+01,0.000000E+00 +1514908,fr,2,3.750000E+00,-1.433970E+00,4.316118E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.801757E+01,0.000000E+00 +1514910,fr,1,3.750000E+00,-1.433970E+00,4.316118E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +1514913,fr,1,3.750000E+00,-1.433970E+00,4.316118E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996729E+01,0.000000E+00 +1514916,fr,1,3.850000E+00,-1.433970E+00,4.316118E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1514917,fr,2,3.850000E+00,-1.433970E+00,4.316118E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1514919,fr,1,3.850000E+00,-1.433970E+00,4.316118E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799783E+01,0.000000E+00 +1514924,fr,1,3.850000E+00,-1.433970E+00,4.316118E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,-9.000000E+01 +1514928,fr,1,3.950000E+00,-1.433970E+00,4.316118E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1514929,fr,2,3.950000E+00,-1.433970E+00,4.316118E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1514930,fr,2,3.950000E+00,-1.433970E+00,4.316118E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1514934,fr,1,3.950000E+00,-1.433970E+00,4.316118E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,-9.000000E+01 +1514940,fr,1,4.050000E+00,-1.433970E+00,4.316118E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +1514949,fr,2,4.050000E+00,-1.433970E+00,4.316118E+01,5.000000E+00,Active Shallow Crust,1.288907E+02,8.999380E+01,0.000000E+00 +1514953,fr,1,4.150000E+00,-1.433970E+00,4.316118E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1514955,fr,1,4.150000E+00,-1.433970E+00,4.316118E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.799718E+01,0.000000E+00 +1514961,fr,1,4.150000E+00,-1.433970E+00,4.316118E+01,5.000000E+00,Active Shallow Crust,1.288980E+02,8.999355E+01,0.000000E+00 +1514965,fr,1,4.250000E+00,-1.433970E+00,4.316118E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1514976,fr,2,4.350000E+00,-1.433970E+00,4.316118E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1514988,fr,1,4.450000E+00,-1.433970E+00,4.316118E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1515000,fr,1,4.550000E+00,-1.433970E+00,4.316118E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1515001,fr,1,4.550000E+00,-1.433970E+00,4.316118E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1515002,fr,1,4.550000E+00,-1.433970E+00,4.316118E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1515004,fr,1,4.550000E+00,-1.433970E+00,4.316118E+01,1.500000E+01,Active Shallow Crust,2.400083E+02,5.799723E+01,0.000000E+00 +1515012,fr,2,4.650000E+00,-1.433970E+00,4.316118E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1515376,fr,1,3.650000E+00,-8.869900E-01,5.115561E+01,1.500000E+01,Active Shallow Crust,2.400016E+02,5.801297E+01,0.000000E+00 +1515381,fr,1,3.650000E+00,-8.869900E-01,5.115561E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.996350E+01,0.000000E+00 +1515456,fr,1,4.350000E+00,-8.869900E-01,5.115561E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1515488,fr,1,4.550000E+00,-8.869900E-01,5.115561E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +1515504,fr,1,4.750000E+00,-8.869900E-01,5.115561E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1515851,fr,1,3.550000E+00,-1.126330E+00,4.497726E+01,2.750000E+01,Active Shallow Crust,1.288962E+02,8.999376E+01,0.000000E+00 +1515854,fr,1,3.650000E+00,-1.126330E+00,4.497726E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1516320,fr,2,3.550000E+00,2.207860E+00,4.644046E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +1516321,fr,1,3.550000E+00,2.207860E+00,4.644046E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +1516326,fr,2,3.550000E+00,2.207860E+00,4.644046E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,-9.000000E+01 +1516331,fr,1,3.550000E+00,2.207860E+00,4.644046E+01,2.750000E+01,Active Shallow Crust,1.288958E+02,8.999305E+01,0.000000E+00 +1516332,fr,2,3.650000E+00,2.207860E+00,4.644046E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999071E+01,0.000000E+00 +1516344,fr,1,3.750000E+00,2.207860E+00,4.644046E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998896E+01,0.000000E+00 +1516345,fr,2,3.750000E+00,2.207860E+00,4.644046E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998896E+01,0.000000E+00 +1516356,fr,1,3.850000E+00,2.207860E+00,4.644046E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1516362,fr,1,3.850000E+00,2.207860E+00,4.644046E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +1516366,fr,1,3.850000E+00,2.207860E+00,4.644046E+01,1.500000E+01,Active Shallow Crust,1.288956E+02,8.999385E+01,0.000000E+00 +1516369,fr,3,3.950000E+00,2.207860E+00,4.644046E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +1516393,fr,1,4.150000E+00,2.207860E+00,4.644046E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +1516428,fr,1,4.450000E+00,2.207860E+00,4.644046E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1516441,fr,1,4.550000E+00,2.207860E+00,4.644046E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1516550,fr,1,5.450000E+00,2.207860E+00,4.644046E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1516833,fr,1,3.750000E+00,3.382300E+00,4.064917E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996739E+01,0.000000E+00 +1517280,fr,1,3.550000E+00,6.065770E+00,4.410354E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999276E+01,0.000000E+00 +1517281,fr,2,3.550000E+00,6.065770E+00,4.410354E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999276E+01,0.000000E+00 +1517282,fr,1,3.550000E+00,6.065770E+00,4.410354E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999276E+01,0.000000E+00 +1517292,fr,3,3.650000E+00,6.065770E+00,4.410354E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998709E+01,0.000000E+00 +1517295,fr,1,3.650000E+00,6.065770E+00,4.410354E+01,5.000000E+00,Active Shallow Crust,2.399996E+02,5.801374E+01,0.000000E+00 +1517297,fr,1,3.650000E+00,6.065770E+00,4.410354E+01,2.750000E+01,Active Shallow Crust,2.399996E+02,5.801366E+01,0.000000E+00 +1517299,fr,1,3.650000E+00,6.065770E+00,4.410354E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998695E+01,-9.000000E+01 +1517304,fr,2,3.750000E+00,6.065770E+00,4.410354E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998849E+01,0.000000E+00 +1517313,fr,1,3.750000E+00,6.065770E+00,4.410354E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.996745E+01,0.000000E+00 +1517316,fr,4,3.850000E+00,6.065770E+00,4.410354E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1517322,fr,1,3.850000E+00,6.065770E+00,4.410354E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,-9.000000E+01 +1517328,fr,3,3.950000E+00,6.065770E+00,4.410354E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +1517340,fr,1,4.050000E+00,6.065770E+00,4.410354E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999186E+01,0.000000E+00 +1517341,fr,2,4.050000E+00,6.065770E+00,4.410354E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999186E+01,0.000000E+00 +1517343,fr,1,4.050000E+00,6.065770E+00,4.410354E+01,5.000000E+00,Active Shallow Crust,2.400057E+02,5.800589E+01,0.000000E+00 +1517362,fr,1,4.150000E+00,6.065770E+00,4.410354E+01,1.500000E+01,Active Shallow Crust,1.288985E+02,8.999274E+01,0.000000E+00 +1517364,fr,4,4.250000E+00,6.065770E+00,4.410354E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1517365,fr,1,4.250000E+00,6.065770E+00,4.410354E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1517379,fr,1,4.350000E+00,6.065770E+00,4.410354E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.799568E+01,0.000000E+00 +1517388,fr,2,4.450000E+00,6.065770E+00,4.410354E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1517391,fr,1,4.450000E+00,6.065770E+00,4.410354E+01,5.000000E+00,Active Shallow Crust,2.400044E+02,5.799491E+01,0.000000E+00 +1517451,fr,1,4.950000E+00,6.065770E+00,4.410354E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.800432E+01,0.000000E+00 +1517461,fr,1,5.050000E+00,6.065770E+00,4.410354E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1517472,fr,1,5.150000E+00,6.065770E+00,4.410354E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +1517499,fr,1,5.350000E+00,6.065770E+00,4.410354E+01,5.000000E+00,Active Shallow Crust,2.400234E+02,5.799753E+01,0.000000E+00 +1517832,fr,1,4.150000E+00,-4.746210E+00,5.007500E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +1518240,fr,1,3.550000E+00,8.190780E+00,4.952016E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998691E+01,0.000000E+00 +1518243,fr,1,3.550000E+00,8.190780E+00,4.952016E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799828E+01,0.000000E+00 +1518246,fr,2,3.550000E+00,8.190780E+00,4.952016E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998676E+01,-9.000000E+01 +1518252,fr,1,3.650000E+00,8.190780E+00,4.952016E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998833E+01,0.000000E+00 +1518274,fr,1,3.750000E+00,8.190780E+00,4.952016E+01,1.500000E+01,Active Shallow Crust,1.288983E+02,8.996632E+01,0.000000E+00 +1518279,fr,1,3.850000E+00,8.190780E+00,4.952016E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799716E+01,0.000000E+00 +1518288,fr,1,3.950000E+00,8.190780E+00,4.952016E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999174E+01,0.000000E+00 +1518300,fr,3,4.050000E+00,8.190780E+00,4.952016E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999264E+01,0.000000E+00 +1518301,fr,1,4.050000E+00,8.190780E+00,4.952016E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999264E+01,0.000000E+00 +1518310,fr,1,4.050000E+00,8.190780E+00,4.952016E+01,1.500000E+01,Active Shallow Crust,1.288909E+02,8.999264E+01,0.000000E+00 +1518312,fr,1,4.150000E+00,8.190780E+00,4.952016E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998688E+01,0.000000E+00 +1518325,fr,1,4.250000E+00,8.190780E+00,4.952016E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998830E+01,0.000000E+00 +1518495,fr,1,5.650000E+00,8.190780E+00,4.952016E+01,5.000000E+00,Active Shallow Crust,2.400406E+02,5.799990E+01,0.000000E+00 +1518806,fr,1,4.250000E+00,3.985160E+00,4.005552E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1519350,fr,1,4.750000E+00,5.507920E+00,4.215946E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999050E+01,-9.000000E+01 +1519680,fr,2,3.550000E+00,5.930750E+00,4.709384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999313E+01,0.000000E+00 +1519687,fr,1,3.550000E+00,5.930750E+00,4.709384E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999306E+01,-9.000000E+01 +1519689,fr,1,3.550000E+00,5.930750E+00,4.709384E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999313E+01,0.000000E+00 +1519692,fr,1,3.650000E+00,5.930750E+00,4.709384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998776E+01,0.000000E+00 +1519699,fr,1,3.650000E+00,5.930750E+00,4.709384E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998762E+01,-9.000000E+01 +1519706,fr,1,3.750000E+00,5.930750E+00,4.709384E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +1519710,fr,1,3.750000E+00,5.930750E+00,4.709384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998897E+01,-9.000000E+01 +1519716,fr,1,3.850000E+00,5.930750E+00,4.709384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +1519717,fr,1,3.850000E+00,5.930750E+00,4.709384E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +1519718,fr,1,3.850000E+00,5.930750E+00,4.709384E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +1519725,fr,1,3.850000E+00,5.930750E+00,4.709384E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999271E+01,0.000000E+00 +1519753,fr,1,4.150000E+00,5.930750E+00,4.709384E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1519765,fr,2,4.250000E+00,5.930750E+00,4.709384E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999080E+01,0.000000E+00 +1519779,fr,1,4.350000E+00,5.930750E+00,4.709384E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799617E+01,0.000000E+00 +1519833,fr,1,4.750000E+00,5.930750E+00,4.709384E+01,5.000000E+00,Active Shallow Crust,1.288884E+02,8.998820E+01,0.000000E+00 +1520262,fr,1,4.350000E+00,3.139700E+00,4.088426E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998925E+01,-9.000000E+01 +1520640,fr,1,3.550000E+00,1.889670E+00,4.163281E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +1520652,fr,3,3.650000E+00,1.889670E+00,4.163281E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1520661,fr,1,3.650000E+00,1.889670E+00,4.163281E+01,5.000000E+00,Active Shallow Crust,1.289006E+02,8.996358E+01,0.000000E+00 +1520671,fr,1,3.750000E+00,1.889670E+00,4.163281E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,-9.000000E+01 +1520685,fr,1,3.850000E+00,1.889670E+00,4.163281E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999400E+01,0.000000E+00 +1520688,fr,1,3.950000E+00,1.889670E+00,4.163281E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1520700,fr,2,4.050000E+00,1.889670E+00,4.163281E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1520703,fr,1,4.050000E+00,1.889670E+00,4.163281E+01,5.000000E+00,Active Shallow Crust,2.400050E+02,5.800575E+01,0.000000E+00 +1520712,fr,1,4.150000E+00,1.889670E+00,4.163281E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +1520763,fr,1,4.550000E+00,1.889670E+00,4.163281E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.799716E+01,0.000000E+00 +1520775,fr,1,4.650000E+00,1.889670E+00,4.163281E+01,5.000000E+00,Active Shallow Crust,2.400093E+02,5.799402E+01,0.000000E+00 +1520846,fr,1,5.250000E+00,1.889670E+00,4.163281E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1521120,fr,1,3.550000E+00,6.462680E+00,4.507786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999288E+01,0.000000E+00 +1521121,fr,1,3.550000E+00,6.462680E+00,4.507786E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999288E+01,0.000000E+00 +1521132,fr,3,3.650000E+00,6.462680E+00,4.507786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998730E+01,0.000000E+00 +1521144,fr,1,3.750000E+00,6.462680E+00,4.507786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +1521146,fr,1,3.750000E+00,6.462680E+00,4.507786E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +1521157,fr,1,3.850000E+00,6.462680E+00,4.507786E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1521165,fr,1,3.850000E+00,6.462680E+00,4.507786E+01,5.000000E+00,Active Shallow Crust,1.288951E+02,8.999496E+01,0.000000E+00 +1521168,fr,1,3.950000E+00,6.462680E+00,4.507786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999101E+01,0.000000E+00 +1521183,fr,1,4.050000E+00,6.462680E+00,4.507786E+01,5.000000E+00,Active Shallow Crust,2.400058E+02,5.800594E+01,0.000000E+00 +1521192,fr,1,4.150000E+00,6.462680E+00,4.507786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +1521193,fr,1,4.150000E+00,6.462680E+00,4.507786E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +1521204,fr,1,4.250000E+00,6.462680E+00,4.507786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1521207,fr,1,4.250000E+00,6.462680E+00,4.507786E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.799415E+01,0.000000E+00 +1521216,fr,1,4.350000E+00,6.462680E+00,4.507786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +1521240,fr,2,4.550000E+00,6.462680E+00,4.507786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999099E+01,0.000000E+00 +1521262,fr,1,4.650000E+00,6.462680E+00,4.507786E+01,1.500000E+01,Active Shallow Crust,1.288916E+02,8.998714E+01,0.000000E+00 +1521264,fr,1,4.750000E+00,6.462680E+00,4.507786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1521600,fr,2,3.550000E+00,-2.441250E+00,4.221280E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998880E+01,0.000000E+00 +1521611,fr,1,3.550000E+00,-2.441250E+00,4.221280E+01,2.750000E+01,Active Shallow Crust,1.288968E+02,8.999440E+01,0.000000E+00 +1521615,fr,1,3.650000E+00,-2.441250E+00,4.221280E+01,5.000000E+00,Active Shallow Crust,2.400004E+02,5.801253E+01,0.000000E+00 +1521616,fr,1,3.650000E+00,-2.441250E+00,4.221280E+01,1.500000E+01,Active Shallow Crust,2.400004E+02,5.801253E+01,0.000000E+00 +1521625,fr,1,3.750000E+00,-2.441250E+00,4.221280E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +1521637,fr,1,3.850000E+00,-2.441250E+00,4.221280E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1521640,fr,1,3.850000E+00,-2.441250E+00,4.221280E+01,1.500000E+01,Active Shallow Crust,2.400097E+02,5.799800E+01,0.000000E+00 +1521651,fr,1,3.950000E+00,-2.441250E+00,4.221280E+01,5.000000E+00,Active Shallow Crust,2.400190E+02,5.800524E+01,0.000000E+00 +1521654,fr,1,3.950000E+00,-2.441250E+00,4.221280E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,-9.000000E+01 +1521660,fr,1,4.050000E+00,-2.441250E+00,4.221280E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +1521661,fr,1,4.050000E+00,-2.441250E+00,4.221280E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +1521685,fr,1,4.250000E+00,-2.441250E+00,4.221280E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1521686,fr,1,4.250000E+00,-2.441250E+00,4.221280E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1521721,fr,1,4.550000E+00,-2.441250E+00,4.221280E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +1521792,fr,1,5.150000E+00,-2.441250E+00,4.221280E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1522152,fr,1,4.150000E+00,2.670530E+00,4.067778E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +1522190,fr,1,4.450000E+00,2.670530E+00,4.067778E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +1522573,fr,1,3.650000E+00,6.250120E+00,4.790311E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998795E+01,0.000000E+00 +1522577,fr,1,3.650000E+00,6.250120E+00,4.790311E+01,2.750000E+01,Active Shallow Crust,2.400014E+02,5.801328E+01,0.000000E+00 +1522581,fr,1,3.650000E+00,6.250120E+00,4.790311E+01,5.000000E+00,Active Shallow Crust,1.289012E+02,8.996294E+01,0.000000E+00 +1522584,fr,1,3.750000E+00,6.250120E+00,4.790311E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +1522596,fr,1,3.850000E+00,6.250120E+00,4.790311E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1522608,fr,1,3.950000E+00,6.250120E+00,4.790311E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999147E+01,0.000000E+00 +1522617,fr,1,3.950000E+00,6.250120E+00,4.790311E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.999360E+01,0.000000E+00 +1522621,fr,1,4.050000E+00,6.250120E+00,4.790311E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +1522641,fr,1,4.150000E+00,6.250120E+00,4.790311E+01,5.000000E+00,Active Shallow Crust,1.288973E+02,8.999492E+01,0.000000E+00 +1522644,fr,1,4.250000E+00,6.250120E+00,4.790311E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +1522667,fr,1,4.350000E+00,6.250120E+00,4.790311E+01,2.750000E+01,Active Shallow Crust,1.288981E+02,8.998259E+01,0.000000E+00 +1522706,fr,1,4.750000E+00,6.250120E+00,4.790311E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1523649,fr,1,4.550000E+00,-2.495280E+00,4.621338E+01,5.000000E+00,Active Shallow Crust,1.288940E+02,8.998588E+01,0.000000E+00 +1524072,fr,1,4.150000E+00,5.326010E+00,4.867166E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1524200,fr,1,5.150000E+00,5.326010E+00,4.867166E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,-9.000000E+01 +1524480,fr,1,3.550000E+00,7.122000E-02,4.764147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1524483,fr,1,3.550000E+00,7.122000E-02,4.764147E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799818E+01,0.000000E+00 +1524484,fr,1,3.550000E+00,7.122000E-02,4.764147E+01,1.500000E+01,Active Shallow Crust,2.400123E+02,5.799818E+01,0.000000E+00 +1524495,fr,1,3.650000E+00,7.122000E-02,4.764147E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801293E+01,0.000000E+00 +1524498,fr,1,3.650000E+00,7.122000E-02,4.764147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +1524504,fr,1,3.750000E+00,7.122000E-02,4.764147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1524516,fr,1,3.850000E+00,7.122000E-02,4.764147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1524528,fr,2,3.950000E+00,7.122000E-02,4.764147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1524529,fr,1,3.950000E+00,7.122000E-02,4.764147E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1524540,fr,1,4.050000E+00,7.122000E-02,4.764147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1524660,fr,1,5.050000E+00,7.122000E-02,4.764147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1525008,fr,1,3.950000E+00,2.253080E+00,4.020637E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +1525011,fr,1,3.950000E+00,2.253080E+00,4.020637E+01,5.000000E+00,Active Shallow Crust,2.400189E+02,5.800460E+01,0.000000E+00 +1525440,fr,2,3.550000E+00,9.111010E+00,4.873248E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998669E+01,0.000000E+00 +1525442,fr,1,3.550000E+00,9.111010E+00,4.873248E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998669E+01,0.000000E+00 +1525446,fr,2,3.550000E+00,9.111010E+00,4.873248E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998654E+01,-9.000000E+01 +1525449,fr,1,3.550000E+00,9.111010E+00,4.873248E+01,5.000000E+00,Active Shallow Crust,1.288939E+02,8.999335E+01,0.000000E+00 +1525452,fr,1,3.650000E+00,9.111010E+00,4.873248E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998814E+01,0.000000E+00 +1525453,fr,1,3.650000E+00,9.111010E+00,4.873248E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998814E+01,0.000000E+00 +1525459,fr,1,3.650000E+00,9.111010E+00,4.873248E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998801E+01,-9.000000E+01 +1525460,fr,1,3.650000E+00,9.111010E+00,4.873248E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998801E+01,-9.000000E+01 +1525465,fr,1,3.750000E+00,9.111010E+00,4.873248E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1525474,fr,1,3.750000E+00,9.111010E+00,4.873248E+01,1.500000E+01,Active Shallow Crust,1.288945E+02,8.996753E+01,0.000000E+00 +1525482,fr,1,3.850000E+00,9.111010E+00,4.873248E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999047E+01,-9.000000E+01 +1525488,fr,2,3.950000E+00,9.111010E+00,4.873248E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999161E+01,0.000000E+00 +1525500,fr,1,4.050000E+00,9.111010E+00,4.873248E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999252E+01,0.000000E+00 +1525512,fr,1,4.150000E+00,9.111010E+00,4.873248E+01,5.000000E+00,Active Shallow Crust,3.599967E+02,8.999333E+01,0.000000E+00 +1525514,fr,1,4.150000E+00,9.111010E+00,4.873248E+01,2.750000E+01,Active Shallow Crust,3.599967E+02,8.999333E+01,0.000000E+00 +1525554,fr,1,4.450000E+00,9.111010E+00,4.873248E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999045E+01,-9.000000E+01 +1525920,fr,1,3.550000E+00,5.522680E+00,5.142587E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998743E+01,0.000000E+00 +1525922,fr,2,3.550000E+00,5.522680E+00,5.142587E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998743E+01,0.000000E+00 +1525923,fr,1,3.550000E+00,5.522680E+00,5.142587E+01,5.000000E+00,Active Shallow Crust,2.400129E+02,5.799806E+01,0.000000E+00 +1525932,fr,1,3.650000E+00,5.522680E+00,5.142587E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998879E+01,0.000000E+00 +1525944,fr,1,3.750000E+00,5.522680E+00,5.142587E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1525953,fr,1,3.750000E+00,5.522680E+00,5.142587E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.996758E+01,0.000000E+00 +1525956,fr,1,3.850000E+00,5.522680E+00,5.142587E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +1525966,fr,1,3.850000E+00,5.522680E+00,5.142587E+01,1.500000E+01,Active Shallow Crust,1.288947E+02,8.999332E+01,0.000000E+00 +1525980,fr,1,4.050000E+00,5.522680E+00,5.142587E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +1526007,fr,1,4.250000E+00,5.522680E+00,5.142587E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.799408E+01,0.000000E+00 +1526028,fr,1,4.450000E+00,5.522680E+00,5.142587E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +1526413,fr,1,3.650000E+00,-1.949250E+00,5.082931E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1526437,fr,1,3.850000E+00,-1.949250E+00,5.082931E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1526508,fr,1,4.450000E+00,-1.949250E+00,5.082931E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1526641,fr,1,5.550000E+00,-1.949250E+00,5.082931E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1526880,fr,1,3.550000E+00,2.620530E+00,5.218857E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999073E+01,0.000000E+00 +1526883,fr,1,3.550000E+00,2.620530E+00,5.218857E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799860E+01,0.000000E+00 +1526904,fr,1,3.750000E+00,2.620530E+00,5.218857E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1526905,fr,1,3.750000E+00,2.620530E+00,5.218857E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1526990,fr,1,4.450000E+00,2.620530E+00,5.218857E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1527042,fr,1,4.850000E+00,2.620530E+00,5.218857E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,-9.000000E+01 +1527387,fr,1,3.750000E+00,1.390400E+00,4.531962E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.801756E+01,0.000000E+00 +1527393,fr,1,3.750000E+00,1.390400E+00,4.531962E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.996734E+01,0.000000E+00 +1527394,fr,1,3.750000E+00,1.390400E+00,4.531962E+01,1.500000E+01,Active Shallow Crust,1.288967E+02,8.996734E+01,0.000000E+00 +1527408,fr,1,3.950000E+00,1.390400E+00,4.531962E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1527420,fr,1,4.050000E+00,1.390400E+00,4.531962E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1527444,fr,1,4.250000E+00,1.390400E+00,4.531962E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +1527840,fr,1,3.550000E+00,1.016100E-01,4.989736E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1527841,fr,1,3.550000E+00,1.016100E-01,4.989736E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1527865,fr,1,3.750000E+00,1.016100E-01,4.989736E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1527870,fr,1,3.750000E+00,1.016100E-01,4.989736E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1527876,fr,1,3.850000E+00,1.016100E-01,4.989736E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1527949,fr,1,4.450000E+00,1.016100E-01,4.989736E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1528321,fr,1,3.550000E+00,-9.103100E-01,4.540620E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1528372,fr,1,3.950000E+00,-9.103100E-01,4.540620E+01,1.500000E+01,Active Shallow Crust,2.400196E+02,5.800492E+01,0.000000E+00 +1528380,fr,1,4.050000E+00,-9.103100E-01,4.540620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1528424,fr,1,4.350000E+00,-9.103100E-01,4.540620E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +1528431,fr,1,4.450000E+00,-9.103100E-01,4.540620E+01,5.000000E+00,Active Shallow Crust,2.400050E+02,5.799461E+01,0.000000E+00 +1528488,fr,1,4.950000E+00,-9.103100E-01,4.540620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1528800,fr,2,3.550000E+00,8.074860E+00,4.786062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998647E+01,0.000000E+00 +1528801,fr,2,3.550000E+00,8.074860E+00,4.786062E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998647E+01,0.000000E+00 +1528804,fr,1,3.550000E+00,8.074860E+00,4.786062E+01,1.500000E+01,Active Shallow Crust,2.400114E+02,5.799771E+01,0.000000E+00 +1528810,fr,1,3.550000E+00,8.074860E+00,4.786062E+01,1.500000E+01,Active Shallow Crust,1.288960E+02,8.999323E+01,0.000000E+00 +1528819,fr,1,3.650000E+00,8.074860E+00,4.786062E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998780E+01,-9.000000E+01 +1528821,fr,1,3.650000E+00,8.074860E+00,4.786062E+01,5.000000E+00,Active Shallow Crust,1.289010E+02,8.996355E+01,0.000000E+00 +1528824,fr,3,3.750000E+00,8.074860E+00,4.786062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +1528826,fr,1,3.750000E+00,8.074860E+00,4.786062E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +1528834,fr,1,3.750000E+00,8.074860E+00,4.786062E+01,1.500000E+01,Active Shallow Crust,1.288983E+02,8.996621E+01,0.000000E+00 +1528836,fr,4,3.850000E+00,8.074860E+00,4.786062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +1528848,fr,1,3.950000E+00,8.074860E+00,4.786062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999146E+01,0.000000E+00 +1528872,fr,2,4.150000E+00,8.074860E+00,4.786062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999322E+01,0.000000E+00 +1528897,fr,1,4.350000E+00,8.074860E+00,4.786062E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +1528912,fr,1,4.450000E+00,8.074860E+00,4.786062E+01,1.500000E+01,Active Shallow Crust,2.400054E+02,5.799413E+01,0.000000E+00 +1528944,fr,1,4.750000E+00,8.074860E+00,4.786062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1528982,fr,1,5.050000E+00,8.074860E+00,4.786062E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +1529286,fr,1,3.550000E+00,6.577160E+00,4.870550E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999327E+01,-9.000000E+01 +1529316,fr,1,3.850000E+00,6.577160E+00,4.870550E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +1529329,fr,1,3.950000E+00,6.577160E+00,4.870550E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999160E+01,0.000000E+00 +1529340,fr,1,4.050000E+00,6.577160E+00,4.870550E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998877E+01,0.000000E+00 +1529364,fr,1,4.250000E+00,6.577160E+00,4.870550E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999108E+01,0.000000E+00 +1529760,fr,2,3.550000E+00,7.271970E+00,4.789854E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999324E+01,0.000000E+00 +1529761,fr,2,3.550000E+00,7.271970E+00,4.789854E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999324E+01,0.000000E+00 +1529763,fr,1,3.550000E+00,7.271970E+00,4.789854E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799812E+01,0.000000E+00 +1529771,fr,1,3.550000E+00,7.271970E+00,4.789854E+01,2.750000E+01,Active Shallow Crust,1.288952E+02,8.999324E+01,0.000000E+00 +1529772,fr,1,3.650000E+00,7.271970E+00,4.789854E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998795E+01,0.000000E+00 +1529778,fr,1,3.650000E+00,7.271970E+00,4.789854E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998781E+01,-9.000000E+01 +1529781,fr,1,3.650000E+00,7.271970E+00,4.789854E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996355E+01,0.000000E+00 +1529782,fr,1,3.650000E+00,7.271970E+00,4.789854E+01,1.500000E+01,Active Shallow Crust,1.289007E+02,8.996355E+01,0.000000E+00 +1529785,fr,3,3.750000E+00,7.271970E+00,4.789854E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +1529787,fr,1,3.750000E+00,7.271970E+00,4.789854E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.801840E+01,0.000000E+00 +1529793,fr,2,3.750000E+00,7.271970E+00,4.789854E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.996751E+01,0.000000E+00 +1529796,fr,2,3.850000E+00,7.271970E+00,4.789854E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1529798,fr,1,3.850000E+00,7.271970E+00,4.789854E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1529799,fr,1,3.850000E+00,7.271970E+00,4.789854E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799733E+01,0.000000E+00 +1529816,fr,1,3.950000E+00,7.271970E+00,4.789854E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999137E+01,-9.000000E+01 +1529836,fr,1,4.150000E+00,7.271970E+00,4.789854E+01,1.500000E+01,Active Shallow Crust,2.400082E+02,5.799750E+01,0.000000E+00 +1529846,fr,1,4.250000E+00,7.271970E+00,4.789854E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +1529847,fr,1,4.250000E+00,7.271970E+00,4.789854E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.799435E+01,0.000000E+00 +1529850,fr,1,4.250000E+00,7.271970E+00,4.789854E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,-9.000000E+01 +1529851,fr,1,4.250000E+00,7.271970E+00,4.789854E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999084E+01,-9.000000E+01 +1529868,fr,1,4.450000E+00,7.271970E+00,4.789854E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +1529883,fr,1,4.550000E+00,7.271970E+00,4.789854E+01,5.000000E+00,Active Shallow Crust,2.400100E+02,5.799745E+01,0.000000E+00 +1529892,fr,1,4.650000E+00,7.271970E+00,4.789854E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +1529904,fr,1,4.750000E+00,7.271970E+00,4.789854E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1529917,fr,1,4.850000E+00,7.271970E+00,4.789854E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +1530240,fr,1,3.550000E+00,-2.572890E+00,4.275365E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998889E+01,0.000000E+00 +1530241,fr,2,3.550000E+00,-2.572890E+00,4.275365E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998889E+01,0.000000E+00 +1530252,fr,2,3.650000E+00,-2.572890E+00,4.275365E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1530253,fr,1,3.650000E+00,-2.572890E+00,4.275365E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1530265,fr,1,3.750000E+00,-2.572890E+00,4.275365E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999118E+01,0.000000E+00 +1530272,fr,1,3.750000E+00,-2.572890E+00,4.275365E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999107E+01,-9.000000E+01 +1530276,fr,1,3.850000E+00,-2.572890E+00,4.275365E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1530288,fr,1,3.950000E+00,-2.572890E+00,4.275365E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +1530302,fr,1,4.050000E+00,-2.572890E+00,4.275365E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1530303,fr,1,4.050000E+00,-2.572890E+00,4.275365E+01,5.000000E+00,Active Shallow Crust,2.400050E+02,5.800592E+01,0.000000E+00 +1530331,fr,1,4.250000E+00,-2.572890E+00,4.275365E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +1530360,fr,1,4.550000E+00,-2.572890E+00,4.275365E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1530385,fr,1,4.750000E+00,-2.572890E+00,4.275365E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1530410,fr,1,4.950000E+00,-2.572890E+00,4.275365E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1530418,fr,1,4.950000E+00,-2.572890E+00,4.275365E+01,1.500000E+01,Active Shallow Crust,1.288912E+02,8.998979E+01,0.000000E+00 +1530756,fr,2,3.850000E+00,3.552740E+00,4.676277E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1530759,fr,1,3.850000E+00,3.552740E+00,4.676277E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.799786E+01,0.000000E+00 +1530816,fr,1,4.350000E+00,3.552740E+00,4.676277E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +1530889,fr,1,4.950000E+00,3.552740E+00,4.676277E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +1531212,fr,1,3.650000E+00,2.961600E+00,4.807596E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999099E+01,0.000000E+00 +1531251,fr,1,3.950000E+00,2.961600E+00,4.807596E+01,5.000000E+00,Active Shallow Crust,2.400200E+02,5.800499E+01,0.000000E+00 +1531344,fr,1,4.750000E+00,2.961600E+00,4.807596E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1531390,fr,1,5.050000E+00,2.961600E+00,4.807596E+01,1.500000E+01,Active Shallow Crust,1.288848E+02,8.999046E+01,0.000000E+00 +1531681,fr,1,3.550000E+00,5.102130E+00,4.672681E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999309E+01,0.000000E+00 +1531686,fr,1,3.550000E+00,5.102130E+00,4.672681E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999300E+01,-9.000000E+01 +1531692,fr,1,3.650000E+00,5.102130E+00,4.672681E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998768E+01,0.000000E+00 +1531697,fr,1,3.650000E+00,5.102130E+00,4.672681E+01,2.750000E+01,Active Shallow Crust,2.400007E+02,5.801335E+01,0.000000E+00 +1531704,fr,1,3.750000E+00,5.102130E+00,4.672681E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998902E+01,0.000000E+00 +1531710,fr,1,3.750000E+00,5.102130E+00,4.672681E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998889E+01,-9.000000E+01 +1531729,fr,1,3.950000E+00,5.102130E+00,4.672681E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999128E+01,0.000000E+00 +1531740,fr,1,4.050000E+00,5.102130E+00,4.672681E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998833E+01,0.000000E+00 +1531788,fr,1,4.450000E+00,5.102130E+00,4.672681E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1532172,fr,1,3.650000E+00,2.599460E+00,5.116504E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998873E+01,0.000000E+00 +1532175,fr,1,3.650000E+00,2.599460E+00,5.116504E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801339E+01,0.000000E+00 +1532250,fr,1,4.250000E+00,2.599460E+00,5.116504E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +1532293,fr,1,4.650000E+00,2.599460E+00,5.116504E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1532665,fr,1,3.750000E+00,-1.804700E-01,5.014508E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1532673,fr,1,3.750000E+00,-1.804700E-01,5.014508E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.996735E+01,0.000000E+00 +1532700,fr,1,4.050000E+00,-1.804700E-01,5.014508E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1532748,fr,1,4.450000E+00,-1.804700E-01,5.014508E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1532820,fr,1,5.050000E+00,-1.804700E-01,5.014508E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +1533129,fr,1,3.550000E+00,-3.093000E-02,4.179707E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.999371E+01,0.000000E+00 +1533168,fr,1,3.950000E+00,-3.093000E-02,4.179707E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1533241,fr,1,4.550000E+00,-3.093000E-02,4.179707E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1533600,fr,1,3.550000E+00,4.622520E+00,4.755931E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999319E+01,0.000000E+00 +1533601,fr,1,3.550000E+00,4.622520E+00,4.755931E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999319E+01,0.000000E+00 +1533604,fr,1,3.550000E+00,4.622520E+00,4.755931E+01,1.500000E+01,Active Shallow Crust,2.400123E+02,5.799789E+01,0.000000E+00 +1533636,fr,1,3.850000E+00,4.622520E+00,4.755931E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1533648,fr,1,3.950000E+00,4.622520E+00,4.755931E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999141E+01,0.000000E+00 +1533661,fr,1,4.050000E+00,4.622520E+00,4.755931E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998852E+01,0.000000E+00 +1533666,fr,1,4.050000E+00,4.622520E+00,4.755931E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998839E+01,-9.000000E+01 +1533723,fr,1,4.550000E+00,4.622520E+00,4.755931E+01,5.000000E+00,Active Shallow Crust,2.400096E+02,5.799736E+01,0.000000E+00 +1533741,fr,1,4.650000E+00,4.622520E+00,4.755931E+01,5.000000E+00,Active Shallow Crust,1.288912E+02,8.998680E+01,0.000000E+00 +1533942,fr,1,6.350000E+00,4.622526E+00,4.755931E+01,7.481178E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +1534080,fr,1,3.550000E+00,5.794330E+00,4.656004E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999306E+01,0.000000E+00 +1534083,fr,2,3.550000E+00,5.794330E+00,4.656004E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799810E+01,0.000000E+00 +1534094,fr,1,3.650000E+00,5.794330E+00,4.656004E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998764E+01,0.000000E+00 +1534095,fr,1,3.650000E+00,5.794330E+00,4.656004E+01,5.000000E+00,Active Shallow Crust,2.400016E+02,5.801321E+01,0.000000E+00 +1534101,fr,1,3.650000E+00,5.794330E+00,4.656004E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.996352E+01,0.000000E+00 +1534104,fr,1,3.750000E+00,5.794330E+00,4.656004E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +1534129,fr,1,3.950000E+00,5.794330E+00,4.656004E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999125E+01,0.000000E+00 +1534143,fr,1,4.050000E+00,5.794330E+00,4.656004E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.800642E+01,0.000000E+00 +1534212,fr,1,4.650000E+00,5.794330E+00,4.656004E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1534274,fr,1,5.150000E+00,5.794330E+00,4.656004E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1534590,fr,1,3.750000E+00,4.179030E+00,5.283854E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,-9.000000E+01 +1534686,fr,1,4.550000E+00,4.179030E+00,5.283854E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,-9.000000E+01 +1535040,fr,1,3.550000E+00,1.878400E-01,4.711417E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1535041,fr,1,3.550000E+00,1.878400E-01,4.711417E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1535043,fr,1,3.550000E+00,1.878400E-01,4.711417E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799818E+01,0.000000E+00 +1535046,fr,1,3.550000E+00,1.878400E-01,4.711417E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +1535053,fr,1,3.650000E+00,1.878400E-01,4.711417E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1535061,fr,1,3.650000E+00,1.878400E-01,4.711417E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.996350E+01,0.000000E+00 +1535062,fr,1,3.650000E+00,1.878400E-01,4.711417E+01,1.500000E+01,Active Shallow Crust,1.289004E+02,8.996350E+01,0.000000E+00 +1535067,fr,1,3.750000E+00,1.878400E-01,4.711417E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.801759E+01,0.000000E+00 +1535074,fr,1,3.750000E+00,1.878400E-01,4.711417E+01,1.500000E+01,Active Shallow Crust,1.288966E+02,8.996735E+01,0.000000E+00 +1535076,fr,2,3.850000E+00,1.878400E-01,4.711417E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1535079,fr,1,3.850000E+00,1.878400E-01,4.711417E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799784E+01,0.000000E+00 +1535086,fr,1,3.850000E+00,1.878400E-01,4.711417E+01,1.500000E+01,Active Shallow Crust,1.288956E+02,8.999370E+01,0.000000E+00 +1535088,fr,1,3.950000E+00,1.878400E-01,4.711417E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1535100,fr,1,4.050000E+00,1.878400E-01,4.711417E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1535109,fr,1,4.050000E+00,1.878400E-01,4.711417E+01,5.000000E+00,Active Shallow Crust,1.288904E+02,8.999373E+01,0.000000E+00 +1535112,fr,2,4.150000E+00,1.878400E-01,4.711417E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1535118,fr,1,4.150000E+00,1.878400E-01,4.711417E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +1535124,fr,1,4.250000E+00,1.878400E-01,4.711417E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1535136,fr,1,4.350000E+00,1.878400E-01,4.711417E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1535137,fr,1,4.350000E+00,1.878400E-01,4.711417E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1535215,fr,1,4.950000E+00,1.878400E-01,4.711417E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +1535268,fr,1,5.450000E+00,1.878400E-01,4.711417E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +1535520,fr,1,3.550000E+00,2.653600E-01,4.577513E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1535524,fr,1,3.550000E+00,2.653600E-01,4.577513E+01,1.500000E+01,Active Shallow Crust,2.400120E+02,5.799822E+01,0.000000E+00 +1535528,fr,1,3.550000E+00,2.653600E-01,4.577513E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999022E+01,-9.000000E+01 +1535529,fr,1,3.550000E+00,2.653600E-01,4.577513E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999384E+01,0.000000E+00 +1535533,fr,1,3.650000E+00,2.653600E-01,4.577513E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1535535,fr,1,3.650000E+00,2.653600E-01,4.577513E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801281E+01,0.000000E+00 +1535544,fr,1,3.750000E+00,2.653600E-01,4.577513E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1535547,fr,1,3.750000E+00,2.653600E-01,4.577513E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.801754E+01,0.000000E+00 +1535556,fr,3,3.850000E+00,2.653600E-01,4.577513E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1535558,fr,1,3.850000E+00,2.653600E-01,4.577513E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1535568,fr,1,3.950000E+00,2.653600E-01,4.577513E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1535569,fr,1,3.950000E+00,2.653600E-01,4.577513E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1535580,fr,2,4.050000E+00,2.653600E-01,4.577513E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1535590,fr,1,4.050000E+00,2.653600E-01,4.577513E+01,1.500000E+01,Active Shallow Crust,1.288906E+02,8.999370E+01,0.000000E+00 +1535601,fr,1,4.150000E+00,2.653600E-01,4.577513E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.999372E+01,0.000000E+00 +1535604,fr,1,4.250000E+00,2.653600E-01,4.577513E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1535612,fr,1,4.250000E+00,2.653600E-01,4.577513E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +1535640,fr,2,4.550000E+00,2.653600E-01,4.577513E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1535652,fr,1,4.650000E+00,2.653600E-01,4.577513E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1535676,fr,1,4.850000E+00,2.653600E-01,4.577513E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1535685,fr,1,4.850000E+00,2.653600E-01,4.577513E+01,5.000000E+00,Active Shallow Crust,1.288929E+02,8.998899E+01,0.000000E+00 +1535688,fr,1,4.950000E+00,2.653600E-01,4.577513E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1535703,fr,1,5.050000E+00,2.653600E-01,4.577513E+01,5.000000E+00,Active Shallow Crust,2.400218E+02,5.799750E+01,0.000000E+00 +1535772,fr,1,5.650000E+00,2.653600E-01,4.577513E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1536960,fr,2,3.550000E+00,4.430830E+00,4.428319E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999278E+01,0.000000E+00 +1536961,fr,1,3.550000E+00,4.430830E+00,4.428319E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999278E+01,0.000000E+00 +1536964,fr,1,3.550000E+00,4.430830E+00,4.428319E+01,1.500000E+01,Active Shallow Crust,2.400132E+02,5.799790E+01,0.000000E+00 +1536972,fr,1,3.650000E+00,4.430830E+00,4.428319E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998713E+01,0.000000E+00 +1537005,fr,1,3.850000E+00,4.430830E+00,4.428319E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.999233E+01,0.000000E+00 +1537032,fr,1,4.150000E+00,4.430830E+00,4.428319E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +1537044,fr,1,4.250000E+00,4.430830E+00,4.428319E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1537047,fr,1,4.250000E+00,4.430830E+00,4.428319E+01,5.000000E+00,Active Shallow Crust,2.400072E+02,5.799344E+01,0.000000E+00 +1537065,fr,1,4.350000E+00,4.430830E+00,4.428319E+01,5.000000E+00,Active Shallow Crust,1.288982E+02,8.998295E+01,0.000000E+00 +1537072,fr,1,4.450000E+00,4.430830E+00,4.428319E+01,1.500000E+01,Active Shallow Crust,2.400045E+02,5.799443E+01,0.000000E+00 +1537440,fr,1,3.550000E+00,1.146420E+00,4.341083E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +1537441,fr,1,3.550000E+00,1.146420E+00,4.341083E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +1537443,fr,1,3.550000E+00,1.146420E+00,4.341083E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799818E+01,0.000000E+00 +1537464,fr,2,3.750000E+00,1.146420E+00,4.341083E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1538433,fr,1,3.750000E+00,-3.536800E+00,5.031468E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.996756E+01,0.000000E+00 +1538881,fr,1,3.550000E+00,-1.251270E+00,4.235286E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +1538905,fr,1,3.750000E+00,-1.251270E+00,4.235286E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +1538916,fr,2,3.850000E+00,-1.251270E+00,4.235286E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +1538924,fr,1,3.850000E+00,-1.251270E+00,4.235286E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999066E+01,-9.000000E+01 +1538967,fr,1,4.250000E+00,-1.251270E+00,4.235286E+01,5.000000E+00,Active Shallow Crust,2.400068E+02,5.799396E+01,0.000000E+00 +1539840,fr,18,3.550000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999304E+01,0.000000E+00 +1539841,fr,4,3.550000E+00,7.489820E+00,4.637640E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999304E+01,0.000000E+00 +1539842,fr,1,3.550000E+00,7.489820E+00,4.637640E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999304E+01,0.000000E+00 +1539843,fr,5,3.550000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799847E+01,0.000000E+00 +1539845,fr,1,3.550000E+00,7.489820E+00,4.637640E+01,2.750000E+01,Active Shallow Crust,2.400122E+02,5.799838E+01,0.000000E+00 +1539846,fr,2,3.550000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999297E+01,-9.000000E+01 +1539847,fr,2,3.550000E+00,7.489820E+00,4.637640E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999297E+01,-9.000000E+01 +1539849,fr,2,3.550000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.999304E+01,0.000000E+00 +1539850,fr,2,3.550000E+00,7.489820E+00,4.637640E+01,1.500000E+01,Active Shallow Crust,1.288968E+02,8.999304E+01,0.000000E+00 +1539852,fr,13,3.650000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998760E+01,0.000000E+00 +1539853,fr,3,3.650000E+00,7.489820E+00,4.637640E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998760E+01,0.000000E+00 +1539855,fr,1,3.650000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,2.400002E+02,5.801381E+01,0.000000E+00 +1539857,fr,1,3.650000E+00,7.489820E+00,4.637640E+01,2.750000E+01,Active Shallow Crust,2.400002E+02,5.801372E+01,0.000000E+00 +1539858,fr,2,3.650000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998746E+01,-9.000000E+01 +1539863,fr,3,3.650000E+00,7.489820E+00,4.637640E+01,2.750000E+01,Active Shallow Crust,1.289013E+02,8.996352E+01,0.000000E+00 +1539864,fr,11,3.750000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +1539865,fr,3,3.750000E+00,7.489820E+00,4.637640E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +1539867,fr,4,3.750000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.801774E+01,0.000000E+00 +1539869,fr,1,3.750000E+00,7.489820E+00,4.637640E+01,2.750000E+01,Active Shallow Crust,2.400090E+02,5.801774E+01,0.000000E+00 +1539870,fr,1,3.750000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998882E+01,-9.000000E+01 +1539873,fr,1,3.750000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,1.288975E+02,8.996690E+01,0.000000E+00 +1539874,fr,1,3.750000E+00,7.489820E+00,4.637640E+01,1.500000E+01,Active Shallow Crust,1.288975E+02,8.996690E+01,0.000000E+00 +1539876,fr,12,3.850000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1539877,fr,3,3.850000E+00,7.489820E+00,4.637640E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1539879,fr,1,3.850000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799726E+01,0.000000E+00 +1539880,fr,1,3.850000E+00,7.489820E+00,4.637640E+01,1.500000E+01,Active Shallow Crust,2.400112E+02,5.799726E+01,0.000000E+00 +1539883,fr,2,3.850000E+00,7.489820E+00,4.637640E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +1539884,fr,1,3.850000E+00,7.489820E+00,4.637640E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +1539885,fr,4,3.850000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.999261E+01,0.000000E+00 +1539888,fr,13,3.950000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999122E+01,0.000000E+00 +1539889,fr,1,3.950000E+00,7.489820E+00,4.637640E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999122E+01,0.000000E+00 +1539890,fr,4,3.950000E+00,7.489820E+00,4.637640E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999122E+01,0.000000E+00 +1539892,fr,2,3.950000E+00,7.489820E+00,4.637640E+01,1.500000E+01,Active Shallow Crust,2.400194E+02,5.800460E+01,0.000000E+00 +1539893,fr,1,3.950000E+00,7.489820E+00,4.637640E+01,2.750000E+01,Active Shallow Crust,2.400194E+02,5.800460E+01,0.000000E+00 +1539897,fr,1,3.950000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,1.288992E+02,8.999342E+01,0.000000E+00 +1539898,fr,1,3.950000E+00,7.489820E+00,4.637640E+01,1.500000E+01,Active Shallow Crust,1.288992E+02,8.999342E+01,0.000000E+00 +1539900,fr,5,4.050000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998827E+01,0.000000E+00 +1539901,fr,2,4.050000E+00,7.489820E+00,4.637640E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998827E+01,0.000000E+00 +1539903,fr,2,4.050000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,2.400051E+02,5.800623E+01,0.000000E+00 +1539909,fr,1,4.050000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,1.288908E+02,8.999413E+01,0.000000E+00 +1539912,fr,8,4.150000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +1539914,fr,1,4.150000E+00,7.489820E+00,4.637640E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +1539918,fr,2,4.150000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,-9.000000E+01 +1539919,fr,1,4.150000E+00,7.489820E+00,4.637640E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998942E+01,-9.000000E+01 +1539923,fr,1,4.150000E+00,7.489820E+00,4.637640E+01,2.750000E+01,Active Shallow Crust,1.288973E+02,8.999477E+01,0.000000E+00 +1539924,fr,9,4.250000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +1539925,fr,1,4.250000E+00,7.489820E+00,4.637640E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +1539927,fr,1,4.250000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.799450E+01,0.000000E+00 +1539928,fr,1,4.250000E+00,7.489820E+00,4.637640E+01,1.500000E+01,Active Shallow Crust,2.400069E+02,5.799450E+01,0.000000E+00 +1539929,fr,1,4.250000E+00,7.489820E+00,4.637640E+01,2.750000E+01,Active Shallow Crust,2.400069E+02,5.799450E+01,0.000000E+00 +1539930,fr,1,4.250000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999057E+01,-9.000000E+01 +1539933,fr,3,4.250000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,1.288951E+02,8.998094E+01,0.000000E+00 +1539936,fr,5,4.350000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998892E+01,0.000000E+00 +1539937,fr,2,4.350000E+00,7.489820E+00,4.637640E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998892E+01,0.000000E+00 +1539942,fr,2,4.350000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998879E+01,-9.000000E+01 +1539943,fr,1,4.350000E+00,7.489820E+00,4.637640E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998879E+01,-9.000000E+01 +1539945,fr,1,4.350000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,1.288983E+02,8.998251E+01,0.000000E+00 +1539948,fr,1,4.450000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1539949,fr,1,4.450000E+00,7.489820E+00,4.637640E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1539952,fr,1,4.450000E+00,7.489820E+00,4.637640E+01,1.500000E+01,Active Shallow Crust,2.400052E+02,5.799464E+01,0.000000E+00 +1539960,fr,2,4.550000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998900E+01,0.000000E+00 +1539961,fr,2,4.550000E+00,7.489820E+00,4.637640E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998900E+01,0.000000E+00 +1539962,fr,1,4.550000E+00,7.489820E+00,4.637640E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998900E+01,0.000000E+00 +1539972,fr,1,4.650000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1539973,fr,1,4.650000E+00,7.489820E+00,4.637640E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1539975,fr,1,4.650000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799458E+01,0.000000E+00 +1539981,fr,1,4.650000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,1.288908E+02,8.998720E+01,0.000000E+00 +1539984,fr,2,4.750000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1539987,fr,1,4.750000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.800473E+01,0.000000E+00 +1539991,fr,1,4.750000E+00,7.489820E+00,4.637640E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,-9.000000E+01 +1539992,fr,1,4.750000E+00,7.489820E+00,4.637640E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,-9.000000E+01 +1540005,fr,1,4.850000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,1.288924E+02,8.998903E+01,0.000000E+00 +1540017,fr,1,4.950000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,1.288897E+02,8.998981E+01,0.000000E+00 +1540020,fr,1,5.050000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1540030,fr,1,5.050000E+00,7.489820E+00,4.637640E+01,1.500000E+01,Active Shallow Crust,1.288855E+02,8.999053E+01,0.000000E+00 +1540044,fr,1,5.250000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1540050,fr,1,5.250000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +1540053,fr,1,5.250000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,1.288835E+02,8.998694E+01,0.000000E+00 +1540095,fr,1,5.650000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,2.400340E+02,5.800194E+01,0.000000E+00 +1540098,fr,1,5.650000E+00,7.489820E+00,4.637640E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +1540105,fr,1,5.750000E+00,7.489820E+00,4.637640E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1540133,fr,1,5.950000E+00,7.489820E+00,4.637640E+01,2.750000E+01,Active Shallow Crust,2.400509E+02,5.800061E+01,0.000000E+00 +1540140,fr,1,6.050000E+00,7.489820E+00,4.637640E+01,5.357596E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1540156,fr,1,6.150000E+00,7.489820E+00,4.637640E+01,1.500000E+01,Active Shallow Crust,2.400648E+02,5.799993E+01,0.000000E+00 +1540333,fr,1,3.650000E+00,1.777200E+00,4.708047E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +1540344,fr,2,3.750000E+00,1.777200E+00,4.708047E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1540357,fr,2,3.850000E+00,1.777200E+00,4.708047E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +1540372,fr,1,3.950000E+00,1.777200E+00,4.708047E+01,1.500000E+01,Active Shallow Crust,2.400198E+02,5.800496E+01,0.000000E+00 +1540416,fr,1,4.350000E+00,1.777200E+00,4.708047E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1540440,fr,1,4.550000E+00,1.777200E+00,4.708047E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1540485,fr,1,4.850000E+00,1.777200E+00,4.708047E+01,5.000000E+00,Active Shallow Crust,1.288923E+02,8.998897E+01,0.000000E+00 +1540834,fr,1,3.750000E+00,4.176050E+00,4.076279E+01,1.500000E+01,Active Shallow Crust,1.288975E+02,8.996739E+01,0.000000E+00 +1540872,fr,1,4.150000E+00,4.176050E+00,4.076279E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998852E+01,0.000000E+00 +1541796,fr,1,3.850000E+00,3.696520E+00,4.831475E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +1542012,fr,1,5.650000E+00,3.696520E+00,4.831475E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1542240,fr,1,3.550000E+00,8.492350E+00,4.816067E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998655E+01,0.000000E+00 +1542253,fr,2,3.650000E+00,8.492350E+00,4.816067E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998801E+01,0.000000E+00 +1542261,fr,1,3.650000E+00,8.492350E+00,4.816067E+01,5.000000E+00,Active Shallow Crust,1.288978E+02,8.996355E+01,0.000000E+00 +1542264,fr,2,3.750000E+00,8.492350E+00,4.816067E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +1542265,fr,1,3.750000E+00,8.492350E+00,4.816067E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +1542279,fr,1,3.850000E+00,8.492350E+00,4.816067E+01,5.000000E+00,Active Shallow Crust,2.400103E+02,5.799769E+01,0.000000E+00 +1542291,fr,1,3.950000E+00,8.492350E+00,4.816067E+01,5.000000E+00,Active Shallow Crust,2.400205E+02,5.800480E+01,0.000000E+00 +1542352,fr,1,4.450000E+00,8.492350E+00,4.816067E+01,1.500000E+01,Active Shallow Crust,2.400060E+02,5.799403E+01,0.000000E+00 +1542372,fr,1,4.650000E+00,8.492350E+00,4.816067E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +1542373,fr,1,4.650000E+00,8.492350E+00,4.816067E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +1542408,fr,1,4.950000E+00,8.492350E+00,4.816067E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +1542457,fr,1,5.350000E+00,8.492350E+00,4.816067E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +1542588,fr,1,6.450000E+00,8.492358E+00,4.816067E+01,8.491219E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1542720,fr,1,3.550000E+00,2.427400E+00,4.091058E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998857E+01,0.000000E+00 +1542724,fr,1,3.550000E+00,2.427400E+00,4.091058E+01,1.500000E+01,Active Shallow Crust,2.400113E+02,5.799837E+01,0.000000E+00 +1542744,fr,1,3.750000E+00,2.427400E+00,4.091058E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999092E+01,0.000000E+00 +1542766,fr,1,3.850000E+00,2.427400E+00,4.091058E+01,1.500000E+01,Active Shallow Crust,1.288966E+02,8.999326E+01,0.000000E+00 +1542769,fr,1,3.950000E+00,2.427400E+00,4.091058E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +1542774,fr,1,3.950000E+00,2.427400E+00,4.091058E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,-9.000000E+01 +1542817,fr,1,4.350000E+00,2.427400E+00,4.091058E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +1542828,fr,1,4.450000E+00,2.427400E+00,4.091058E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +1543202,fr,1,3.550000E+00,2.834140E+00,4.652347E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1543206,fr,1,3.550000E+00,2.834140E+00,4.652347E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,-9.000000E+01 +1543229,fr,1,3.750000E+00,2.834140E+00,4.652347E+01,2.750000E+01,Active Shallow Crust,2.400083E+02,5.801757E+01,0.000000E+00 +1543270,fr,1,4.050000E+00,2.834140E+00,4.652347E+01,1.500000E+01,Active Shallow Crust,1.288903E+02,8.999415E+01,0.000000E+00 +1543287,fr,1,4.250000E+00,2.834140E+00,4.652347E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.799379E+01,0.000000E+00 +1543311,fr,1,4.450000E+00,2.834140E+00,4.652347E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.799450E+01,0.000000E+00 +1543321,fr,1,4.550000E+00,2.834140E+00,4.652347E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1543681,fr,1,3.550000E+00,-2.418810E+00,4.758246E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1543690,fr,1,3.550000E+00,-2.418810E+00,4.758246E+01,1.500000E+01,Active Shallow Crust,1.288966E+02,8.999320E+01,0.000000E+00 +1543704,fr,1,3.750000E+00,-2.418810E+00,4.758246E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1543716,fr,1,3.850000E+00,-2.418810E+00,4.758246E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +1543718,fr,1,3.850000E+00,-2.418810E+00,4.758246E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +1543730,fr,1,3.950000E+00,-2.418810E+00,4.758246E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1543752,fr,1,4.150000E+00,-2.418810E+00,4.758246E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1543753,fr,1,4.150000E+00,-2.418810E+00,4.758246E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1543777,fr,1,4.350000E+00,-2.418810E+00,4.758246E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +1543968,fr,1,5.950000E+00,-2.418810E+00,4.758246E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1544160,fr,1,3.550000E+00,2.111390E+00,4.696617E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1544167,fr,1,3.550000E+00,2.111390E+00,4.696617E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,-9.000000E+01 +1544175,fr,1,3.650000E+00,2.111390E+00,4.696617E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801280E+01,0.000000E+00 +1544181,fr,1,3.650000E+00,2.111390E+00,4.696617E+01,5.000000E+00,Active Shallow Crust,1.288999E+02,8.996353E+01,0.000000E+00 +1544186,fr,1,3.750000E+00,2.111390E+00,4.696617E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +1544193,fr,1,3.750000E+00,2.111390E+00,4.696617E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.996724E+01,0.000000E+00 +1544244,fr,1,4.250000E+00,2.111390E+00,4.696617E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +1544256,fr,1,4.350000E+00,2.111390E+00,4.696617E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +1544376,fr,1,5.350000E+00,2.111390E+00,4.696617E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1544640,fr,1,3.550000E+00,1.170090E+00,4.955683E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1544659,fr,1,3.650000E+00,1.170090E+00,4.955683E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998968E+01,-9.000000E+01 +1544661,fr,1,3.650000E+00,1.170090E+00,4.955683E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.996346E+01,0.000000E+00 +1544674,fr,2,3.750000E+00,1.170090E+00,4.955683E+01,1.500000E+01,Active Shallow Crust,1.288960E+02,8.996731E+01,0.000000E+00 +1544676,fr,1,3.850000E+00,1.170090E+00,4.955683E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +1544679,fr,1,3.850000E+00,1.170090E+00,4.955683E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799781E+01,0.000000E+00 +1544724,fr,1,4.250000E+00,1.170090E+00,4.955683E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1544736,fr,1,4.350000E+00,1.170090E+00,4.955683E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1544772,fr,1,4.650000E+00,1.170090E+00,4.955683E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1545130,fr,1,3.550000E+00,4.886050E+00,4.669726E+01,1.500000E+01,Active Shallow Crust,1.288967E+02,8.999309E+01,0.000000E+00 +1545132,fr,1,3.650000E+00,4.886050E+00,4.669726E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998767E+01,0.000000E+00 +1545142,fr,1,3.650000E+00,4.886050E+00,4.669726E+01,1.500000E+01,Active Shallow Crust,1.288998E+02,8.996353E+01,0.000000E+00 +1545150,fr,1,3.750000E+00,4.886050E+00,4.669726E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998888E+01,-9.000000E+01 +1545165,fr,1,3.850000E+00,4.886050E+00,4.669726E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999510E+01,0.000000E+00 +1545180,fr,1,4.050000E+00,4.886050E+00,4.669726E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998833E+01,0.000000E+00 +1545184,fr,1,4.050000E+00,4.886050E+00,4.669726E+01,1.500000E+01,Active Shallow Crust,2.400068E+02,5.800537E+01,0.000000E+00 +1545190,fr,1,4.050000E+00,4.886050E+00,4.669726E+01,1.500000E+01,Active Shallow Crust,1.288897E+02,8.999416E+01,0.000000E+00 +1545192,fr,2,4.150000E+00,4.886050E+00,4.669726E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +1545612,fr,1,3.650000E+00,6.825290E+00,4.406318E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998708E+01,0.000000E+00 +1545618,fr,1,3.650000E+00,6.825290E+00,4.406318E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998693E+01,-9.000000E+01 +1545625,fr,3,3.750000E+00,6.825290E+00,4.406318E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998849E+01,0.000000E+00 +1545637,fr,1,3.850000E+00,6.825290E+00,4.406318E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +1545642,fr,1,3.850000E+00,6.825290E+00,4.406318E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,-9.000000E+01 +1545648,fr,1,3.950000E+00,6.825290E+00,4.406318E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999085E+01,0.000000E+00 +1545649,fr,1,3.950000E+00,6.825290E+00,4.406318E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999085E+01,0.000000E+00 +1545651,fr,1,3.950000E+00,6.825290E+00,4.406318E+01,5.000000E+00,Active Shallow Crust,2.400186E+02,5.800474E+01,0.000000E+00 +1545657,fr,1,3.950000E+00,6.825290E+00,4.406318E+01,5.000000E+00,Active Shallow Crust,1.289006E+02,8.999543E+01,0.000000E+00 +1545660,fr,1,4.050000E+00,6.825290E+00,4.406318E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999185E+01,0.000000E+00 +1545666,fr,2,4.050000E+00,6.825290E+00,4.406318E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999175E+01,-9.000000E+01 +1545674,fr,1,4.150000E+00,6.825290E+00,4.406318E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +1545675,fr,2,4.150000E+00,6.825290E+00,4.406318E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799734E+01,0.000000E+00 +1545681,fr,1,4.150000E+00,6.825290E+00,4.406318E+01,5.000000E+00,Active Shallow Crust,1.288977E+02,8.999455E+01,0.000000E+00 +1545702,fr,1,4.350000E+00,6.825290E+00,4.406318E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999124E+01,-9.000000E+01 +1545722,fr,1,4.550000E+00,6.825290E+00,4.406318E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +1545733,fr,1,4.650000E+00,6.825290E+00,4.406318E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1546560,fr,1,3.550000E+00,1.352290E+00,4.127559E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +1546566,fr,1,3.550000E+00,1.352290E+00,4.127559E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,-9.000000E+01 +1546572,fr,3,3.650000E+00,1.352290E+00,4.127559E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1546596,fr,2,3.850000E+00,1.352290E+00,4.127559E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999061E+01,0.000000E+00 +1546599,fr,1,3.850000E+00,1.352290E+00,4.127559E+01,5.000000E+00,Active Shallow Crust,2.400102E+02,5.799747E+01,0.000000E+00 +1546608,fr,3,3.950000E+00,1.352290E+00,4.127559E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1546620,fr,3,4.050000E+00,1.352290E+00,4.127559E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +1546621,fr,2,4.050000E+00,1.352290E+00,4.127559E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +1546622,fr,1,4.050000E+00,1.352290E+00,4.127559E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +1546692,fr,1,4.650000E+00,1.352290E+00,4.127559E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1547040,fr,1,3.550000E+00,-2.343840E+00,4.813011E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1547041,fr,1,3.550000E+00,-2.343840E+00,4.813011E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1547043,fr,1,3.550000E+00,-2.343840E+00,4.813011E+01,5.000000E+00,Active Shallow Crust,2.400126E+02,5.799843E+01,0.000000E+00 +1547046,fr,1,3.550000E+00,-2.343840E+00,4.813011E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,-9.000000E+01 +1547052,fr,3,3.650000E+00,-2.343840E+00,4.813011E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +1547067,fr,1,3.750000E+00,-2.343840E+00,4.813011E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.801777E+01,0.000000E+00 +1547076,fr,1,3.850000E+00,-2.343840E+00,4.813011E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +1547079,fr,1,3.850000E+00,-2.343840E+00,4.813011E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799789E+01,0.000000E+00 +1547083,fr,1,3.850000E+00,-2.343840E+00,4.813011E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,-9.000000E+01 +1547088,fr,1,3.950000E+00,-2.343840E+00,4.813011E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +1547089,fr,1,3.950000E+00,-2.343840E+00,4.813011E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +1547100,fr,1,4.050000E+00,-2.343840E+00,4.813011E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +1547101,fr,2,4.050000E+00,-2.343840E+00,4.813011E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +1547136,fr,1,4.350000E+00,-2.343840E+00,4.813011E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1547148,fr,2,4.450000E+00,-2.343840E+00,4.813011E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +1547160,fr,1,4.550000E+00,-2.343840E+00,4.813011E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1547184,fr,1,4.750000E+00,-2.343840E+00,4.813011E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1547328,fr,1,5.950000E+00,-2.343840E+00,4.813011E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1547590,fr,1,4.050000E+00,-4.577730E+00,4.955117E+01,1.500000E+01,Active Shallow Crust,1.288902E+02,8.999265E+01,0.000000E+00 +1548003,fr,1,3.550000E+00,3.574150E+00,5.004747E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799864E+01,0.000000E+00 +1548026,fr,1,3.750000E+00,3.574150E+00,5.004747E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1548066,fr,1,4.050000E+00,3.574150E+00,5.004747E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999079E+01,-9.000000E+01 +1548087,fr,1,4.250000E+00,3.574150E+00,5.004747E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.799433E+01,0.000000E+00 +1548096,fr,1,4.350000E+00,3.574150E+00,5.004747E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1548492,fr,1,3.650000E+00,9.603000E-02,5.133506E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1548528,fr,1,3.950000E+00,9.603000E-02,5.133506E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1548541,fr,1,4.050000E+00,9.603000E-02,5.133506E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1548588,fr,1,4.450000E+00,9.603000E-02,5.133506E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1548960,fr,1,3.550000E+00,6.028480E+00,4.787513E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999323E+01,0.000000E+00 +1548964,fr,1,3.550000E+00,6.028480E+00,4.787513E+01,1.500000E+01,Active Shallow Crust,2.400129E+02,5.799808E+01,0.000000E+00 +1548984,fr,1,3.750000E+00,6.028480E+00,4.787513E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +1549008,fr,1,3.950000E+00,6.028480E+00,4.787513E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999146E+01,0.000000E+00 +1549032,fr,1,4.150000E+00,6.028480E+00,4.787513E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1549044,fr,1,4.250000E+00,6.028480E+00,4.787513E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +1549054,fr,1,4.250000E+00,6.028480E+00,4.787513E+01,1.500000E+01,Active Shallow Crust,1.288949E+02,8.998046E+01,0.000000E+00 +1549452,fr,1,3.650000E+00,3.132370E+00,5.066395E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998861E+01,0.000000E+00 +1549455,fr,1,3.650000E+00,3.132370E+00,5.066395E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801315E+01,0.000000E+00 +1549476,fr,2,3.850000E+00,3.132370E+00,5.066395E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999095E+01,0.000000E+00 +1549477,fr,2,3.850000E+00,3.132370E+00,5.066395E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999095E+01,0.000000E+00 +1549478,fr,1,3.850000E+00,3.132370E+00,5.066395E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999095E+01,0.000000E+00 +1549497,fr,1,3.950000E+00,3.132370E+00,5.066395E+01,5.000000E+00,Active Shallow Crust,1.288994E+02,8.999395E+01,0.000000E+00 +1549980,fr,1,4.050000E+00,-1.636400E-01,5.053962E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1549986,fr,1,4.050000E+00,-1.636400E-01,5.053962E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1550400,fr,2,3.550000E+00,5.375200E+00,4.968164E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998695E+01,0.000000E+00 +1551426,fr,1,4.050000E+00,3.908000E-02,4.194172E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +1551846,fr,1,3.550000E+00,2.784390E+00,4.677284E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,-9.000000E+01 +1551930,fr,1,4.250000E+00,2.784390E+00,4.677284E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,-9.000000E+01 +1552322,fr,1,3.550000E+00,3.757400E-01,4.375116E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1552325,fr,1,3.550000E+00,3.757400E-01,4.375116E+01,2.750000E+01,Active Shallow Crust,2.400120E+02,5.799798E+01,0.000000E+00 +1552332,fr,1,3.650000E+00,3.757400E-01,4.375116E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1552350,fr,1,3.750000E+00,3.757400E-01,4.375116E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,-9.000000E+01 +1552356,fr,1,3.850000E+00,3.757400E-01,4.375116E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1552371,fr,1,3.950000E+00,3.757400E-01,4.375116E+01,5.000000E+00,Active Shallow Crust,2.400194E+02,5.800495E+01,0.000000E+00 +1552392,fr,1,4.150000E+00,3.757400E-01,4.375116E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1552404,fr,1,4.250000E+00,3.757400E-01,4.375116E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1552429,fr,1,4.450000E+00,3.757400E-01,4.375116E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1552800,fr,2,3.550000E+00,2.950050E+00,4.537561E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +1552801,fr,1,3.550000E+00,2.950050E+00,4.537561E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +1552812,fr,1,3.650000E+00,2.950050E+00,4.537561E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +1552827,fr,1,3.750000E+00,2.950050E+00,4.537561E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801766E+01,0.000000E+00 +1552833,fr,1,3.750000E+00,2.950050E+00,4.537561E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.996747E+01,0.000000E+00 +1552836,fr,1,3.850000E+00,2.950050E+00,4.537561E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1552848,fr,1,3.950000E+00,2.950050E+00,4.537561E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999106E+01,0.000000E+00 +1552852,fr,1,3.950000E+00,2.950050E+00,4.537561E+01,1.500000E+01,Active Shallow Crust,2.400193E+02,5.800511E+01,0.000000E+00 +1552854,fr,1,3.950000E+00,2.950050E+00,4.537561E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999096E+01,-9.000000E+01 +1552893,fr,1,4.250000E+00,2.950050E+00,4.537561E+01,5.000000E+00,Active Shallow Crust,1.288945E+02,8.998090E+01,0.000000E+00 +1552909,fr,1,4.450000E+00,2.950050E+00,4.537561E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1552959,fr,1,4.850000E+00,2.950050E+00,4.537561E+01,5.000000E+00,Active Shallow Crust,2.400167E+02,5.800228E+01,0.000000E+00 +1553080,fr,1,5.850000E+00,2.950050E+00,4.537561E+01,1.500000E+01,Active Shallow Crust,2.400432E+02,5.799945E+01,0.000000E+00 +1553389,fr,1,4.450000E+00,6.880100E-01,4.472747E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1553390,fr,1,4.450000E+00,6.880100E-01,4.472747E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1553460,fr,1,5.050000E+00,6.880100E-01,4.472747E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1553761,fr,2,3.550000E+00,-1.044380E+00,4.553034E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +1553784,fr,1,3.750000E+00,-1.044380E+00,4.553034E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1553785,fr,1,3.750000E+00,-1.044380E+00,4.553034E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1553821,fr,1,4.050000E+00,-1.044380E+00,4.553034E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1554264,fr,1,3.750000E+00,5.057760E+00,4.236979E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998817E+01,0.000000E+00 +1554825,fr,1,4.350000E+00,-1.356480E+00,4.372050E+01,5.000000E+00,Active Shallow Crust,1.288984E+02,8.998280E+01,0.000000E+00 +1555202,fr,1,3.550000E+00,6.125240E+00,4.223719E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999253E+01,0.000000E+00 +1555258,fr,1,3.950000E+00,6.125240E+00,4.223719E+01,1.500000E+01,Active Shallow Crust,1.289019E+02,8.999294E+01,0.000000E+00 +1555261,fr,1,4.050000E+00,6.125240E+00,4.223719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999160E+01,0.000000E+00 +1555276,fr,1,4.150000E+00,6.125240E+00,4.223719E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.799727E+01,0.000000E+00 +1555296,fr,1,4.350000E+00,6.125240E+00,4.223719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999108E+01,0.000000E+00 +1555692,fr,1,3.650000E+00,4.534000E+00,4.108364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999323E+01,0.000000E+00 +1555701,fr,1,3.650000E+00,4.534000E+00,4.108364E+01,5.000000E+00,Active Shallow Crust,1.289016E+02,8.996342E+01,0.000000E+00 +1555702,fr,1,3.650000E+00,4.534000E+00,4.108364E+01,1.500000E+01,Active Shallow Crust,1.289016E+02,8.996342E+01,0.000000E+00 +1555704,fr,1,3.750000E+00,4.534000E+00,4.108364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998792E+01,0.000000E+00 +1555717,fr,1,3.850000E+00,4.534000E+00,4.108364E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +1555720,fr,1,3.850000E+00,4.534000E+00,4.108364E+01,1.500000E+01,Active Shallow Crust,2.400097E+02,5.799825E+01,0.000000E+00 +1555779,fr,1,4.350000E+00,4.534000E+00,4.108364E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.799604E+01,0.000000E+00 +1556649,fr,1,3.550000E+00,4.577400E+00,4.780807E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.999661E+01,0.000000E+00 +1556664,fr,1,3.750000E+00,4.577400E+00,4.780807E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +1556682,fr,1,3.850000E+00,4.577400E+00,4.780807E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,-9.000000E+01 +1556688,fr,1,3.950000E+00,4.577400E+00,4.780807E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999146E+01,0.000000E+00 +1556694,fr,1,3.950000E+00,4.577400E+00,4.780807E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999136E+01,-9.000000E+01 +1556700,fr,1,4.050000E+00,4.577400E+00,4.780807E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998857E+01,0.000000E+00 +1556731,fr,1,4.250000E+00,4.577400E+00,4.780807E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999082E+01,-9.000000E+01 +1557127,fr,1,3.550000E+00,-3.452120E+00,4.334284E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998887E+01,-9.000000E+01 +1557132,fr,1,3.650000E+00,-3.452120E+00,4.334284E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1557138,fr,1,3.650000E+00,-3.452120E+00,4.334284E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,-9.000000E+01 +1557144,fr,1,3.750000E+00,-3.452120E+00,4.334284E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +1557156,fr,1,3.850000E+00,-3.452120E+00,4.334284E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +1557168,fr,3,3.950000E+00,-3.452120E+00,4.334284E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +1557189,fr,1,4.050000E+00,-3.452120E+00,4.334284E+01,5.000000E+00,Active Shallow Crust,1.288906E+02,8.999381E+01,0.000000E+00 +1557194,fr,1,4.150000E+00,-3.452120E+00,4.334284E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +1557197,fr,1,4.150000E+00,-3.452120E+00,4.334284E+01,2.750000E+01,Active Shallow Crust,2.400082E+02,5.799704E+01,0.000000E+00 +1557232,fr,1,4.450000E+00,-3.452120E+00,4.334284E+01,1.500000E+01,Active Shallow Crust,2.400045E+02,5.799459E+01,0.000000E+00 +1557245,fr,1,4.550000E+00,-3.452120E+00,4.334284E+01,2.750000E+01,Active Shallow Crust,2.400084E+02,5.799696E+01,0.000000E+00 +1557426,fr,1,6.050000E+00,-3.452119E+00,4.334284E+01,5.296268E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +1557697,fr,1,4.350000E+00,-5.544210E+00,4.753786E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +1558081,fr,1,3.550000E+00,-6.474000E-01,4.283162E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1558092,fr,1,3.650000E+00,-6.474000E-01,4.283162E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1558094,fr,1,3.650000E+00,-6.474000E-01,4.283162E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1558106,fr,1,3.750000E+00,-6.474000E-01,4.283162E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1558107,fr,2,3.750000E+00,-6.474000E-01,4.283162E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801751E+01,0.000000E+00 +1558120,fr,1,3.850000E+00,-6.474000E-01,4.283162E+01,1.500000E+01,Active Shallow Crust,2.400103E+02,5.799776E+01,0.000000E+00 +1558141,fr,1,4.050000E+00,-6.474000E-01,4.283162E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1558166,fr,1,4.250000E+00,-6.474000E-01,4.283162E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1558170,fr,1,4.250000E+00,-6.474000E-01,4.283162E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1558190,fr,1,4.450000E+00,-6.474000E-01,4.283162E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1558207,fr,1,4.550000E+00,-6.474000E-01,4.283162E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +1558251,fr,1,4.950000E+00,-6.474000E-01,4.283162E+01,5.000000E+00,Active Shallow Crust,2.400103E+02,5.800420E+01,0.000000E+00 +1558260,fr,1,5.050000E+00,-6.474000E-01,4.283162E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1558309,fr,1,5.450000E+00,-6.474000E-01,4.283162E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1558563,fr,1,3.550000E+00,-3.005000E-02,5.184818E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.799826E+01,0.000000E+00 +1558587,fr,1,3.750000E+00,-3.005000E-02,5.184818E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.801770E+01,0.000000E+00 +1558603,fr,1,3.850000E+00,-3.005000E-02,5.184818E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +1558608,fr,1,3.950000E+00,-3.005000E-02,5.184818E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1558618,fr,1,3.950000E+00,-3.005000E-02,5.184818E+01,1.500000E+01,Active Shallow Crust,1.288996E+02,8.999372E+01,0.000000E+00 +1558633,fr,1,4.150000E+00,-3.005000E-02,5.184818E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1559043,fr,1,3.550000E+00,4.511200E-01,4.538455E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799814E+01,0.000000E+00 +1559056,fr,1,3.650000E+00,4.511200E-01,4.538455E+01,1.500000E+01,Active Shallow Crust,2.400010E+02,5.801287E+01,0.000000E+00 +1559062,fr,1,3.650000E+00,4.511200E-01,4.538455E+01,1.500000E+01,Active Shallow Crust,1.289005E+02,8.996350E+01,0.000000E+00 +1559064,fr,1,3.750000E+00,4.511200E-01,4.538455E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1559088,fr,1,3.950000E+00,4.511200E-01,4.538455E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1559112,fr,1,4.150000E+00,4.511200E-01,4.538455E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1559113,fr,2,4.150000E+00,4.511200E-01,4.538455E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1559520,fr,2,3.550000E+00,8.013410E+00,5.074443E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998724E+01,0.000000E+00 +1559544,fr,1,3.750000E+00,8.013410E+00,5.074443E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1559568,fr,1,3.950000E+00,8.013410E+00,5.074443E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999195E+01,0.000000E+00 +1559580,fr,3,4.050000E+00,8.013410E+00,5.074443E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999282E+01,0.000000E+00 +1559676,fr,1,4.850000E+00,8.013410E+00,5.074443E+01,5.000000E+00,Active Shallow Crust,3.599986E+02,8.999142E+01,0.000000E+00 +1560000,fr,1,3.550000E+00,7.121960E+00,4.889701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998674E+01,0.000000E+00 +1560006,fr,1,3.550000E+00,7.121960E+00,4.889701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999329E+01,-9.000000E+01 +1560012,fr,1,3.650000E+00,7.121960E+00,4.889701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998818E+01,0.000000E+00 +1560016,fr,1,3.650000E+00,7.121960E+00,4.889701E+01,1.500000E+01,Active Shallow Crust,2.400015E+02,5.801265E+01,0.000000E+00 +1560048,fr,1,3.950000E+00,7.121960E+00,4.889701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999163E+01,0.000000E+00 +1560078,fr,1,4.150000E+00,7.121960E+00,4.889701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +1560506,fr,1,3.750000E+00,-2.186600E+00,4.961892E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +1560963,fr,1,3.550000E+00,7.073570E+00,4.382593E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.799735E+01,0.000000E+00 +1560970,fr,1,3.550000E+00,7.073570E+00,4.382593E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.999273E+01,0.000000E+00 +1560972,fr,2,3.650000E+00,7.073570E+00,4.382593E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998703E+01,0.000000E+00 +1560973,fr,1,3.650000E+00,7.073570E+00,4.382593E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998703E+01,0.000000E+00 +1560984,fr,1,3.750000E+00,7.073570E+00,4.382593E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998844E+01,0.000000E+00 +1560985,fr,2,3.750000E+00,7.073570E+00,4.382593E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998844E+01,0.000000E+00 +1560996,fr,1,3.850000E+00,7.073570E+00,4.382593E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1561024,fr,1,4.050000E+00,7.073570E+00,4.382593E+01,1.500000E+01,Active Shallow Crust,2.400052E+02,5.800607E+01,0.000000E+00 +1561032,fr,1,4.150000E+00,7.073570E+00,4.382593E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998906E+01,0.000000E+00 +1561045,fr,1,4.250000E+00,7.073570E+00,4.382593E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1561068,fr,1,4.450000E+00,7.073570E+00,4.382593E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1561073,fr,1,4.450000E+00,7.073570E+00,4.382593E+01,2.750000E+01,Active Shallow Crust,2.400051E+02,5.799433E+01,0.000000E+00 +1561074,fr,1,4.450000E+00,7.073570E+00,4.382593E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,-9.000000E+01 +1561081,fr,1,4.550000E+00,7.073570E+00,4.382593E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999080E+01,0.000000E+00 +1561096,fr,1,4.650000E+00,7.073570E+00,4.382593E+01,1.500000E+01,Active Shallow Crust,2.400098E+02,5.799427E+01,0.000000E+00 +1561122,fr,1,4.850000E+00,7.073570E+00,4.382593E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,-9.000000E+01 +1561440,fr,1,3.550000E+00,2.587850E+00,4.778234E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +1561488,fr,1,3.950000E+00,2.587850E+00,4.778234E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +1561597,fr,1,4.850000E+00,2.587850E+00,4.778234E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1561936,fr,1,3.650000E+00,2.202790E+00,4.815964E+01,1.500000E+01,Active Shallow Crust,2.400012E+02,5.801292E+01,0.000000E+00 +1561945,fr,1,3.750000E+00,2.202790E+00,4.815964E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +1562040,fr,1,4.550000E+00,2.202790E+00,4.815964E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1562403,fr,1,3.550000E+00,6.723950E+00,4.922735E+01,5.000000E+00,Active Shallow Crust,2.400139E+02,5.799752E+01,0.000000E+00 +1562412,fr,2,3.650000E+00,6.723950E+00,4.922735E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998826E+01,0.000000E+00 +1562460,fr,1,4.050000E+00,6.723950E+00,4.922735E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998889E+01,0.000000E+00 +1562880,fr,1,3.550000E+00,8.131710E+00,4.487316E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998571E+01,0.000000E+00 +1562881,fr,1,3.550000E+00,8.131710E+00,4.487316E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998571E+01,0.000000E+00 +1562904,fr,2,3.750000E+00,8.131710E+00,4.487316E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998865E+01,0.000000E+00 +1562913,fr,1,3.750000E+00,8.131710E+00,4.487316E+01,5.000000E+00,Active Shallow Crust,1.288993E+02,8.996601E+01,0.000000E+00 +1562917,fr,1,3.850000E+00,8.131710E+00,4.487316E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1562920,fr,1,3.850000E+00,8.131710E+00,4.487316E+01,1.500000E+01,Active Shallow Crust,2.400125E+02,5.799710E+01,0.000000E+00 +1562926,fr,1,3.850000E+00,8.131710E+00,4.487316E+01,1.500000E+01,Active Shallow Crust,1.288935E+02,8.999494E+01,0.000000E+00 +1562937,fr,1,3.950000E+00,8.131710E+00,4.487316E+01,5.000000E+00,Active Shallow Crust,1.289027E+02,8.999098E+01,0.000000E+00 +1562946,fr,1,4.050000E+00,8.131710E+00,4.487316E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999187E+01,-9.000000E+01 +1562952,fr,1,4.150000E+00,8.131710E+00,4.487316E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999284E+01,0.000000E+00 +1562989,fr,1,4.450000E+00,8.131710E+00,4.487316E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1563073,fr,1,5.150000E+00,8.131710E+00,4.487316E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +1563396,fr,1,3.850000E+00,3.274840E+00,4.008980E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +1563841,fr,2,3.550000E+00,8.558400E-01,4.284171E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1563852,fr,1,3.650000E+00,8.558400E-01,4.284171E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1563853,fr,1,3.650000E+00,8.558400E-01,4.284171E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1563855,fr,1,3.650000E+00,8.558400E-01,4.284171E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801275E+01,0.000000E+00 +1563858,fr,1,3.650000E+00,8.558400E-01,4.284171E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +1563864,fr,1,3.750000E+00,8.558400E-01,4.284171E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1563870,fr,1,3.750000E+00,8.558400E-01,4.284171E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,-9.000000E+01 +1563876,fr,1,3.850000E+00,8.558400E-01,4.284171E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1563877,fr,1,3.850000E+00,8.558400E-01,4.284171E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1563879,fr,2,3.850000E+00,8.558400E-01,4.284171E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.799770E+01,0.000000E+00 +1563888,fr,1,3.950000E+00,8.558400E-01,4.284171E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1563901,fr,1,4.050000E+00,8.558400E-01,4.284171E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1563902,fr,1,4.050000E+00,8.558400E-01,4.284171E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1563912,fr,1,4.150000E+00,8.558400E-01,4.284171E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1563915,fr,1,4.150000E+00,8.558400E-01,4.284171E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799720E+01,0.000000E+00 +1563917,fr,1,4.150000E+00,8.558400E-01,4.284171E+01,2.750000E+01,Active Shallow Crust,2.400078E+02,5.799718E+01,0.000000E+00 +1563924,fr,1,4.250000E+00,8.558400E-01,4.284171E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1563960,fr,1,4.550000E+00,8.558400E-01,4.284171E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1563966,fr,1,4.550000E+00,8.558400E-01,4.284171E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +1564017,fr,1,4.950000E+00,8.558400E-01,4.284171E+01,5.000000E+00,Active Shallow Crust,1.288912E+02,8.998980E+01,0.000000E+00 +1564035,fr,1,5.150000E+00,8.558400E-01,4.284171E+01,5.000000E+00,Active Shallow Crust,2.400176E+02,5.799958E+01,0.000000E+00 +1564326,fr,1,3.550000E+00,-1.958250E+00,4.407025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,-9.000000E+01 +1564330,fr,1,3.550000E+00,-1.958250E+00,4.407025E+01,1.500000E+01,Active Shallow Crust,1.288964E+02,8.999366E+01,0.000000E+00 +1565280,fr,1,3.550000E+00,3.978650E+00,4.382170E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +1565292,fr,1,3.650000E+00,3.978650E+00,4.382170E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +1565297,fr,1,3.650000E+00,3.978650E+00,4.382170E+01,2.750000E+01,Active Shallow Crust,2.400008E+02,5.801261E+01,0.000000E+00 +1565301,fr,1,3.650000E+00,3.978650E+00,4.382170E+01,5.000000E+00,Active Shallow Crust,1.289014E+02,8.996347E+01,0.000000E+00 +1565310,fr,1,3.750000E+00,3.978650E+00,4.382170E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999123E+01,-9.000000E+01 +1565352,fr,1,4.150000E+00,3.978650E+00,4.382170E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1565368,fr,1,4.250000E+00,3.978650E+00,4.382170E+01,1.500000E+01,Active Shallow Crust,2.400070E+02,5.799406E+01,0.000000E+00 +1565760,fr,4,3.550000E+00,8.082960E+00,4.696086E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998624E+01,0.000000E+00 +1565761,fr,4,3.550000E+00,8.082960E+00,4.696086E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998624E+01,0.000000E+00 +1565769,fr,1,3.550000E+00,8.082960E+00,4.696086E+01,5.000000E+00,Active Shallow Crust,1.288975E+02,8.999312E+01,0.000000E+00 +1565772,fr,6,3.650000E+00,8.082960E+00,4.696086E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998773E+01,0.000000E+00 +1565773,fr,1,3.650000E+00,8.082960E+00,4.696086E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998773E+01,0.000000E+00 +1565778,fr,1,3.650000E+00,8.082960E+00,4.696086E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998759E+01,-9.000000E+01 +1565781,fr,4,3.650000E+00,8.082960E+00,4.696086E+01,5.000000E+00,Active Shallow Crust,1.289000E+02,8.996353E+01,0.000000E+00 +1565784,fr,1,3.750000E+00,8.082960E+00,4.696086E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +1565785,fr,3,3.750000E+00,8.082960E+00,4.696086E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +1565787,fr,1,3.750000E+00,8.082960E+00,4.696086E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.801743E+01,0.000000E+00 +1565788,fr,1,3.750000E+00,8.082960E+00,4.696086E+01,1.500000E+01,Active Shallow Crust,2.400088E+02,5.801743E+01,0.000000E+00 +1565790,fr,1,3.750000E+00,8.082960E+00,4.696086E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998894E+01,-9.000000E+01 +1565796,fr,4,3.850000E+00,8.082960E+00,4.696086E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1565798,fr,1,3.850000E+00,8.082960E+00,4.696086E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1565808,fr,3,3.950000E+00,8.082960E+00,4.696086E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999132E+01,0.000000E+00 +1565809,fr,1,3.950000E+00,8.082960E+00,4.696086E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999132E+01,0.000000E+00 +1565810,fr,2,3.950000E+00,8.082960E+00,4.696086E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999132E+01,0.000000E+00 +1565814,fr,1,3.950000E+00,8.082960E+00,4.696086E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999121E+01,-9.000000E+01 +1565821,fr,2,4.050000E+00,8.082960E+00,4.696086E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999226E+01,0.000000E+00 +1565823,fr,1,4.050000E+00,8.082960E+00,4.696086E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.800654E+01,0.000000E+00 +1565832,fr,2,4.150000E+00,8.082960E+00,4.696086E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999310E+01,0.000000E+00 +1565833,fr,1,4.150000E+00,8.082960E+00,4.696086E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999310E+01,0.000000E+00 +1565835,fr,1,4.150000E+00,8.082960E+00,4.696086E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.799730E+01,0.000000E+00 +1565836,fr,1,4.150000E+00,8.082960E+00,4.696086E+01,1.500000E+01,Active Shallow Crust,2.400091E+02,5.799732E+01,0.000000E+00 +1565844,fr,2,4.250000E+00,8.082960E+00,4.696086E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998770E+01,0.000000E+00 +1565850,fr,2,4.250000E+00,8.082960E+00,4.696086E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998756E+01,-9.000000E+01 +1565853,fr,1,4.250000E+00,8.082960E+00,4.696086E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.998096E+01,0.000000E+00 +1565857,fr,1,4.350000E+00,8.082960E+00,4.696086E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +1565869,fr,1,4.450000E+00,8.082960E+00,4.696086E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1565872,fr,1,4.450000E+00,8.082960E+00,4.696086E+01,1.500000E+01,Active Shallow Crust,2.400053E+02,5.799501E+01,0.000000E+00 +1565880,fr,2,4.550000E+00,8.082960E+00,4.696086E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +1565883,fr,1,4.550000E+00,8.082960E+00,4.696086E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.799801E+01,0.000000E+00 +1565892,fr,1,4.650000E+00,8.082960E+00,4.696086E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998836E+01,0.000000E+00 +1565895,fr,1,4.650000E+00,8.082960E+00,4.696086E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799390E+01,0.000000E+00 +1565934,fr,1,4.950000E+00,8.082960E+00,4.696086E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998888E+01,-9.000000E+01 +1566240,fr,1,3.550000E+00,1.713180E+00,4.413226E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +1566336,fr,1,4.350000E+00,1.713180E+00,4.413226E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1566732,fr,1,3.650000E+00,4.412640E+00,4.120253E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999324E+01,0.000000E+00 +1566744,fr,1,3.750000E+00,4.412640E+00,4.120253E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998795E+01,0.000000E+00 +1567200,fr,5,3.550000E+00,4.110600E-01,4.307312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1567201,fr,4,3.550000E+00,4.110600E-01,4.307312E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1567203,fr,2,3.550000E+00,4.110600E-01,4.307312E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799812E+01,0.000000E+00 +1567209,fr,3,3.550000E+00,4.110600E-01,4.307312E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999378E+01,0.000000E+00 +1567212,fr,2,3.650000E+00,4.110600E-01,4.307312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1567213,fr,2,3.650000E+00,4.110600E-01,4.307312E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1567214,fr,1,3.650000E+00,4.110600E-01,4.307312E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1567224,fr,2,3.750000E+00,4.110600E-01,4.307312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1567225,fr,1,3.750000E+00,4.110600E-01,4.307312E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1567227,fr,1,3.750000E+00,4.110600E-01,4.307312E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801745E+01,0.000000E+00 +1567231,fr,2,3.750000E+00,4.110600E-01,4.307312E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1567233,fr,1,3.750000E+00,4.110600E-01,4.307312E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.996733E+01,0.000000E+00 +1567234,fr,1,3.750000E+00,4.110600E-01,4.307312E+01,1.500000E+01,Active Shallow Crust,1.288970E+02,8.996733E+01,0.000000E+00 +1567245,fr,1,3.850000E+00,4.110600E-01,4.307312E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999364E+01,0.000000E+00 +1567248,fr,2,3.950000E+00,4.110600E-01,4.307312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1567249,fr,1,3.950000E+00,4.110600E-01,4.307312E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1567250,fr,1,3.950000E+00,4.110600E-01,4.307312E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1567260,fr,2,4.050000E+00,4.110600E-01,4.307312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1567261,fr,2,4.050000E+00,4.110600E-01,4.307312E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1567263,fr,1,4.050000E+00,4.110600E-01,4.307312E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.800572E+01,0.000000E+00 +1567272,fr,1,4.150000E+00,4.110600E-01,4.307312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1567291,fr,1,4.250000E+00,4.110600E-01,4.307312E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1567296,fr,1,4.350000E+00,4.110600E-01,4.307312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1567299,fr,1,4.350000E+00,4.110600E-01,4.307312E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.799581E+01,0.000000E+00 +1567308,fr,1,4.450000E+00,4.110600E-01,4.307312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1567320,fr,2,4.550000E+00,4.110600E-01,4.307312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1567344,fr,1,4.750000E+00,4.110600E-01,4.307312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1567368,fr,1,4.950000E+00,4.110600E-01,4.307312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1567381,fr,1,5.050000E+00,4.110600E-01,4.307312E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1567382,fr,1,5.050000E+00,4.110600E-01,4.307312E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1567383,fr,1,5.050000E+00,4.110600E-01,4.307312E+01,5.000000E+00,Active Shallow Crust,2.400204E+02,5.799727E+01,0.000000E+00 +1567392,fr,1,5.150000E+00,4.110600E-01,4.307312E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1567480,fr,1,5.850000E+00,4.110600E-01,4.307312E+01,1.500000E+01,Active Shallow Crust,2.400404E+02,5.799898E+01,0.000000E+00 +1567680,fr,1,3.550000E+00,2.526050E+00,4.426119E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +1567681,fr,1,3.550000E+00,2.526050E+00,4.426119E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +1567803,fr,1,4.550000E+00,2.526050E+00,4.426119E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799738E+01,0.000000E+00 +1568256,fr,1,4.350000E+00,1.464800E-01,4.140395E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1568641,fr,1,3.550000E+00,7.755250E+00,5.009690E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998706E+01,0.000000E+00 +1568643,fr,1,3.550000E+00,7.755250E+00,5.009690E+01,5.000000E+00,Active Shallow Crust,2.400128E+02,5.799773E+01,0.000000E+00 +1568652,fr,1,3.650000E+00,7.755250E+00,5.009690E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998847E+01,0.000000E+00 +1568653,fr,1,3.650000E+00,7.755250E+00,5.009690E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998847E+01,0.000000E+00 +1568654,fr,1,3.650000E+00,7.755250E+00,5.009690E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998847E+01,0.000000E+00 +1568664,fr,2,3.750000E+00,7.755250E+00,5.009690E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1568673,fr,2,3.750000E+00,7.755250E+00,5.009690E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.996755E+01,0.000000E+00 +1568678,fr,1,3.850000E+00,7.755250E+00,5.009690E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +1568679,fr,1,3.850000E+00,7.755250E+00,5.009690E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799768E+01,0.000000E+00 +1568697,fr,1,3.950000E+00,7.755250E+00,5.009690E+01,5.000000E+00,Active Shallow Crust,1.288998E+02,8.999388E+01,0.000000E+00 +1568700,fr,1,4.050000E+00,7.755250E+00,5.009690E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +1568701,fr,1,4.050000E+00,7.755250E+00,5.009690E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +1568702,fr,1,4.050000E+00,7.755250E+00,5.009690E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +1568709,fr,1,4.050000E+00,7.755250E+00,5.009690E+01,5.000000E+00,Active Shallow Crust,1.288890E+02,8.999454E+01,0.000000E+00 +1568721,fr,2,4.150000E+00,7.755250E+00,5.009690E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.999352E+01,0.000000E+00 +1568724,fr,3,4.250000E+00,7.755250E+00,5.009690E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +1568736,fr,1,4.350000E+00,7.755250E+00,5.009690E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1568745,fr,1,4.350000E+00,7.755250E+00,5.009690E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.998270E+01,0.000000E+00 +1568747,fr,1,4.350000E+00,7.755250E+00,5.009690E+01,2.750000E+01,Active Shallow Crust,1.288966E+02,8.998270E+01,0.000000E+00 +1568760,fr,1,4.550000E+00,7.755250E+00,5.009690E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1568809,fr,1,4.950000E+00,7.755250E+00,5.009690E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +1568811,fr,1,4.950000E+00,7.755250E+00,5.009690E+01,5.000000E+00,Active Shallow Crust,2.400137E+02,5.800467E+01,0.000000E+00 +1569120,fr,6,3.550000E+00,6.346350E+00,5.079682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998725E+01,0.000000E+00 +1569121,fr,5,3.550000E+00,6.346350E+00,5.079682E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998725E+01,0.000000E+00 +1569125,fr,1,3.550000E+00,6.346350E+00,5.079682E+01,2.750000E+01,Active Shallow Crust,2.400119E+02,5.799892E+01,0.000000E+00 +1569126,fr,4,3.550000E+00,6.346350E+00,5.079682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998711E+01,-9.000000E+01 +1569127,fr,1,3.550000E+00,6.346350E+00,5.079682E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998711E+01,-9.000000E+01 +1569129,fr,1,3.550000E+00,6.346350E+00,5.079682E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999363E+01,0.000000E+00 +1569132,fr,3,3.650000E+00,6.346350E+00,5.079682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998864E+01,0.000000E+00 +1569133,fr,1,3.650000E+00,6.346350E+00,5.079682E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998864E+01,0.000000E+00 +1569134,fr,1,3.650000E+00,6.346350E+00,5.079682E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998864E+01,0.000000E+00 +1569138,fr,2,3.650000E+00,6.346350E+00,5.079682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998851E+01,-9.000000E+01 +1569139,fr,1,3.650000E+00,6.346350E+00,5.079682E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998851E+01,-9.000000E+01 +1569142,fr,1,3.650000E+00,6.346350E+00,5.079682E+01,1.500000E+01,Active Shallow Crust,1.288996E+02,8.996361E+01,0.000000E+00 +1569144,fr,2,3.750000E+00,6.346350E+00,5.079682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1569147,fr,2,3.750000E+00,6.346350E+00,5.079682E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.801756E+01,0.000000E+00 +1569148,fr,1,3.750000E+00,6.346350E+00,5.079682E+01,1.500000E+01,Active Shallow Crust,2.400090E+02,5.801756E+01,0.000000E+00 +1569151,fr,2,3.750000E+00,6.346350E+00,5.079682E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,-9.000000E+01 +1569156,fr,3,3.850000E+00,6.346350E+00,5.079682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +1569157,fr,1,3.850000E+00,6.346350E+00,5.079682E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +1569159,fr,1,3.850000E+00,6.346350E+00,5.079682E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799750E+01,0.000000E+00 +1569160,fr,1,3.850000E+00,6.346350E+00,5.079682E+01,1.500000E+01,Active Shallow Crust,2.400118E+02,5.799750E+01,0.000000E+00 +1569162,fr,1,3.850000E+00,6.346350E+00,5.079682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999087E+01,-9.000000E+01 +1569169,fr,1,3.950000E+00,6.346350E+00,5.079682E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999196E+01,0.000000E+00 +1569174,fr,1,3.950000E+00,6.346350E+00,5.079682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999187E+01,-9.000000E+01 +1569178,fr,1,3.950000E+00,6.346350E+00,5.079682E+01,1.500000E+01,Active Shallow Crust,1.289005E+02,8.999397E+01,0.000000E+00 +1569180,fr,2,4.050000E+00,6.346350E+00,5.079682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +1569189,fr,1,4.050000E+00,6.346350E+00,5.079682E+01,5.000000E+00,Active Shallow Crust,1.288904E+02,8.999284E+01,0.000000E+00 +1569192,fr,1,4.150000E+00,6.346350E+00,5.079682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +1569195,fr,1,4.150000E+00,6.346350E+00,5.079682E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.799749E+01,0.000000E+00 +1569228,fr,1,4.450000E+00,6.346350E+00,5.079682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999095E+01,0.000000E+00 +1569229,fr,1,4.450000E+00,6.346350E+00,5.079682E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999095E+01,0.000000E+00 +1569264,fr,1,4.750000E+00,6.346350E+00,5.079682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1569288,fr,1,4.950000E+00,6.346350E+00,5.079682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1569441,fr,1,6.150000E+00,6.346349E+00,5.079682E+01,6.011322E+00,Active Shallow Crust,1.288488E+02,8.998980E+01,0.000000E+00 +1569600,fr,1,3.550000E+00,2.806810E+00,5.180988E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +1569726,fr,1,4.550000E+00,2.806810E+00,5.180988E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +1570092,fr,1,3.650000E+00,-5.205360E+00,4.826297E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998804E+01,0.000000E+00 +1570102,fr,1,3.650000E+00,-5.205360E+00,4.826297E+01,1.500000E+01,Active Shallow Crust,1.289010E+02,8.996295E+01,0.000000E+00 +1570140,fr,1,4.050000E+00,-5.205360E+00,4.826297E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998868E+01,0.000000E+00 +1570212,fr,1,4.650000E+00,-5.205360E+00,4.826297E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +1570224,fr,1,4.750000E+00,-5.205360E+00,4.826297E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1570332,fr,1,5.650000E+00,-5.205360E+00,4.826297E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1570560,fr,3,3.550000E+00,-1.442740E+00,4.631114E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1570562,fr,1,3.550000E+00,-1.442740E+00,4.631114E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1570569,fr,1,3.550000E+00,-1.442740E+00,4.631114E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999390E+01,0.000000E+00 +1570572,fr,3,3.650000E+00,-1.442740E+00,4.631114E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +1570573,fr,1,3.650000E+00,-1.442740E+00,4.631114E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +1570582,fr,1,3.650000E+00,-1.442740E+00,4.631114E+01,1.500000E+01,Active Shallow Crust,1.289000E+02,8.996352E+01,0.000000E+00 +1570585,fr,2,3.750000E+00,-1.442740E+00,4.631114E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +1570593,fr,1,3.750000E+00,-1.442740E+00,4.631114E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.996736E+01,0.000000E+00 +1570597,fr,1,3.850000E+00,-1.442740E+00,4.631114E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1570609,fr,1,3.950000E+00,-1.442740E+00,4.631114E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1570622,fr,1,4.050000E+00,-1.442740E+00,4.631114E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1570644,fr,1,4.250000E+00,-1.442740E+00,4.631114E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1570716,fr,1,4.850000E+00,-1.442740E+00,4.631114E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1570729,fr,1,4.950000E+00,-1.442740E+00,4.631114E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1571040,fr,1,3.550000E+00,5.753330E+00,4.681322E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999310E+01,0.000000E+00 +1571044,fr,1,3.550000E+00,5.753330E+00,4.681322E+01,1.500000E+01,Active Shallow Crust,2.400114E+02,5.799894E+01,0.000000E+00 +1571049,fr,1,3.550000E+00,5.753330E+00,4.681322E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999310E+01,0.000000E+00 +1571064,fr,1,3.750000E+00,5.753330E+00,4.681322E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +1571068,fr,1,3.750000E+00,5.753330E+00,4.681322E+01,1.500000E+01,Active Shallow Crust,2.400086E+02,5.801712E+01,0.000000E+00 +1571139,fr,1,4.350000E+00,5.753330E+00,4.681322E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799612E+01,0.000000E+00 +1571184,fr,1,4.750000E+00,5.753330E+00,4.681322E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +1571222,fr,1,5.050000E+00,5.753330E+00,4.681322E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1571238,fr,1,5.150000E+00,5.753330E+00,4.681322E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +1571274,fr,1,5.450000E+00,5.753330E+00,4.681322E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,-9.000000E+01 +1571520,fr,2,3.550000E+00,7.677560E+00,4.416060E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999277E+01,0.000000E+00 +1571521,fr,2,3.550000E+00,7.677560E+00,4.416060E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999277E+01,0.000000E+00 +1571523,fr,1,3.550000E+00,7.677560E+00,4.416060E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799828E+01,0.000000E+00 +1571526,fr,1,3.550000E+00,7.677560E+00,4.416060E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999268E+01,-9.000000E+01 +1571529,fr,1,3.550000E+00,7.677560E+00,4.416060E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.999277E+01,0.000000E+00 +1571532,fr,6,3.650000E+00,7.677560E+00,4.416060E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998711E+01,0.000000E+00 +1571533,fr,1,3.650000E+00,7.677560E+00,4.416060E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998711E+01,0.000000E+00 +1571538,fr,1,3.650000E+00,7.677560E+00,4.416060E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998695E+01,-9.000000E+01 +1571541,fr,1,3.650000E+00,7.677560E+00,4.416060E+01,5.000000E+00,Active Shallow Crust,1.288999E+02,8.996348E+01,0.000000E+00 +1571544,fr,1,3.750000E+00,7.677560E+00,4.416060E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998851E+01,0.000000E+00 +1571545,fr,2,3.750000E+00,7.677560E+00,4.416060E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998851E+01,0.000000E+00 +1571556,fr,3,3.850000E+00,7.677560E+00,4.416060E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1571569,fr,1,3.950000E+00,7.677560E+00,4.416060E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999087E+01,0.000000E+00 +1571570,fr,1,3.950000E+00,7.677560E+00,4.416060E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999087E+01,0.000000E+00 +1571592,fr,4,4.150000E+00,7.677560E+00,4.416060E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998912E+01,0.000000E+00 +1571596,fr,1,4.150000E+00,7.677560E+00,4.416060E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.799721E+01,0.000000E+00 +1571605,fr,2,4.250000E+00,7.677560E+00,4.416060E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1571620,fr,1,4.350000E+00,7.677560E+00,4.416060E+01,1.500000E+01,Active Shallow Crust,2.400078E+02,5.799579E+01,0.000000E+00 +1571643,fr,1,4.550000E+00,7.677560E+00,4.416060E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799728E+01,0.000000E+00 +1571647,fr,1,4.550000E+00,7.677560E+00,4.416060E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,-9.000000E+01 +1571653,fr,1,4.650000E+00,7.677560E+00,4.416060E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1571676,fr,2,4.850000E+00,7.677560E+00,4.416060E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +1571688,fr,1,4.950000E+00,7.677560E+00,4.416060E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1572002,fr,1,3.550000E+00,-1.802340E+00,4.559652E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +1572507,fr,1,3.750000E+00,4.407680E+00,4.187751E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.801735E+01,0.000000E+00 +1572528,fr,1,3.950000E+00,4.407680E+00,4.187751E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +1572591,fr,1,4.450000E+00,4.407680E+00,4.187751E+01,5.000000E+00,Active Shallow Crust,2.400040E+02,5.799409E+01,0.000000E+00 +1572972,fr,1,3.650000E+00,4.316080E+00,5.210859E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998896E+01,0.000000E+00 +1573008,fr,1,3.950000E+00,4.316080E+00,5.210859E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998827E+01,0.000000E+00 +1573440,fr,2,3.550000E+00,8.323180E+00,4.940881E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998688E+01,0.000000E+00 +1573452,fr,1,3.650000E+00,8.323180E+00,4.940881E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998830E+01,0.000000E+00 +1573455,fr,1,3.650000E+00,8.323180E+00,4.940881E+01,5.000000E+00,Active Shallow Crust,2.400024E+02,5.801311E+01,0.000000E+00 +1573464,fr,2,3.750000E+00,8.323180E+00,4.940881E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +1573467,fr,1,3.750000E+00,8.323180E+00,4.940881E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.801722E+01,0.000000E+00 +1573468,fr,1,3.750000E+00,8.323180E+00,4.940881E+01,1.500000E+01,Active Shallow Crust,2.400086E+02,5.801722E+01,0.000000E+00 +1573470,fr,1,3.750000E+00,8.323180E+00,4.940881E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,-9.000000E+01 +1573471,fr,1,3.750000E+00,8.323180E+00,4.940881E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,-9.000000E+01 +1573488,fr,1,3.950000E+00,8.323180E+00,4.940881E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999172E+01,0.000000E+00 +1573489,fr,1,3.950000E+00,8.323180E+00,4.940881E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999172E+01,0.000000E+00 +1573497,fr,1,3.950000E+00,8.323180E+00,4.940881E+01,5.000000E+00,Active Shallow Crust,1.289014E+02,8.999172E+01,0.000000E+00 +1573519,fr,1,4.150000E+00,8.323180E+00,4.940881E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998669E+01,-9.000000E+01 +1573524,fr,1,4.250000E+00,8.323180E+00,4.940881E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998827E+01,0.000000E+00 +1573529,fr,1,4.250000E+00,8.323180E+00,4.940881E+01,2.750000E+01,Active Shallow Crust,2.400085E+02,5.799358E+01,0.000000E+00 +1573941,fr,1,3.650000E+00,-2.574520E+00,4.191733E+01,5.000000E+00,Active Shallow Crust,1.289017E+02,8.996343E+01,0.000000E+00 +1573944,fr,1,3.750000E+00,-2.574520E+00,4.191733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999106E+01,0.000000E+00 +1573945,fr,1,3.750000E+00,-2.574520E+00,4.191733E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999106E+01,0.000000E+00 +1573947,fr,1,3.750000E+00,-2.574520E+00,4.191733E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.801757E+01,0.000000E+00 +1573980,fr,1,4.050000E+00,-2.574520E+00,4.191733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +1574027,fr,1,4.350000E+00,-2.574520E+00,4.191733E+01,2.750000E+01,Active Shallow Crust,1.288986E+02,8.998259E+01,0.000000E+00 +1574076,fr,1,4.850000E+00,-2.574520E+00,4.191733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1574954,fr,1,4.150000E+00,-1.063470E+00,4.195944E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +1575362,fr,1,3.550000E+00,6.018300E-01,4.158866E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +1575363,fr,1,3.550000E+00,6.018300E-01,4.158866E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799807E+01,0.000000E+00 +1575384,fr,1,3.750000E+00,6.018300E-01,4.158866E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1575386,fr,1,3.750000E+00,6.018300E-01,4.158866E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1575390,fr,1,3.750000E+00,6.018300E-01,4.158866E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,-9.000000E+01 +1575396,fr,1,3.850000E+00,6.018300E-01,4.158866E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1575460,fr,1,4.350000E+00,6.018300E-01,4.158866E+01,1.500000E+01,Active Shallow Crust,2.400073E+02,5.799579E+01,0.000000E+00 +1575578,fr,1,5.350000E+00,6.018300E-01,4.158866E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1576320,fr,1,3.550000E+00,3.778350E+00,5.195225E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +1576368,fr,1,3.950000E+00,3.778350E+00,5.195225E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1576398,fr,1,4.150000E+00,3.778350E+00,5.195225E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,-9.000000E+01 +1576800,fr,4,3.550000E+00,7.816400E+00,5.047580E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998717E+01,0.000000E+00 +1576809,fr,1,3.550000E+00,7.816400E+00,5.047580E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999358E+01,0.000000E+00 +1576812,fr,3,3.650000E+00,7.816400E+00,5.047580E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +1576818,fr,1,3.650000E+00,7.816400E+00,5.047580E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998843E+01,-9.000000E+01 +1576821,fr,1,3.650000E+00,7.816400E+00,5.047580E+01,5.000000E+00,Active Shallow Crust,1.288999E+02,8.996360E+01,0.000000E+00 +1576824,fr,1,3.750000E+00,7.816400E+00,5.047580E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1576825,fr,1,3.750000E+00,7.816400E+00,5.047580E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1576830,fr,1,3.750000E+00,7.816400E+00,5.047580E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +1576836,fr,2,3.850000E+00,7.816400E+00,5.047580E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +1576843,fr,1,3.850000E+00,7.816400E+00,5.047580E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999081E+01,-9.000000E+01 +1576844,fr,1,3.850000E+00,7.816400E+00,5.047580E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999081E+01,-9.000000E+01 +1576896,fr,1,4.350000E+00,7.816400E+00,5.047580E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1576897,fr,1,4.350000E+00,7.816400E+00,5.047580E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1576903,fr,1,4.350000E+00,7.816400E+00,5.047580E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998966E+01,-9.000000E+01 +1576908,fr,1,4.450000E+00,7.816400E+00,5.047580E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999089E+01,0.000000E+00 +1576910,fr,1,4.450000E+00,7.816400E+00,5.047580E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999089E+01,0.000000E+00 +1576920,fr,1,4.550000E+00,7.816400E+00,5.047580E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1576938,fr,1,4.650000E+00,7.816400E+00,5.047580E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999085E+01,-9.000000E+01 +1576972,fr,1,4.950000E+00,7.816400E+00,5.047580E+01,1.500000E+01,Active Shallow Crust,2.400141E+02,5.800468E+01,0.000000E+00 +1577280,fr,1,3.550000E+00,2.936630E+00,4.936548E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1577292,fr,1,3.650000E+00,2.936630E+00,4.936548E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999122E+01,0.000000E+00 +1577760,fr,1,3.550000E+00,7.847680E+00,4.536997E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999291E+01,0.000000E+00 +1577772,fr,2,3.650000E+00,7.847680E+00,4.536997E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998737E+01,0.000000E+00 +1577781,fr,1,3.650000E+00,7.847680E+00,4.536997E+01,5.000000E+00,Active Shallow Crust,1.289011E+02,8.996350E+01,0.000000E+00 +1577783,fr,1,3.650000E+00,7.847680E+00,4.536997E+01,2.750000E+01,Active Shallow Crust,1.289011E+02,8.996350E+01,0.000000E+00 +1577784,fr,2,3.750000E+00,7.847680E+00,4.536997E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +1577791,fr,1,3.750000E+00,7.847680E+00,4.536997E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998862E+01,-9.000000E+01 +1577793,fr,1,3.750000E+00,7.847680E+00,4.536997E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996747E+01,0.000000E+00 +1577797,fr,1,3.850000E+00,7.847680E+00,4.536997E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1577809,fr,1,3.950000E+00,7.847680E+00,4.536997E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999106E+01,0.000000E+00 +1577811,fr,1,3.950000E+00,7.847680E+00,4.536997E+01,5.000000E+00,Active Shallow Crust,2.400190E+02,5.800541E+01,0.000000E+00 +1577815,fr,1,3.950000E+00,7.847680E+00,4.536997E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999096E+01,-9.000000E+01 +1577818,fr,1,3.950000E+00,7.847680E+00,4.536997E+01,1.500000E+01,Active Shallow Crust,1.289012E+02,8.999329E+01,0.000000E+00 +1577820,fr,1,4.050000E+00,7.847680E+00,4.536997E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998804E+01,0.000000E+00 +1577826,fr,1,4.050000E+00,7.847680E+00,4.536997E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999194E+01,-9.000000E+01 +1577847,fr,2,4.250000E+00,7.847680E+00,4.536997E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799427E+01,0.000000E+00 +1577853,fr,1,4.250000E+00,7.847680E+00,4.536997E+01,5.000000E+00,Active Shallow Crust,1.288942E+02,8.998090E+01,0.000000E+00 +1577901,fr,1,4.650000E+00,7.847680E+00,4.536997E+01,5.000000E+00,Active Shallow Crust,1.288915E+02,8.998666E+01,0.000000E+00 +1577904,fr,1,4.750000E+00,7.847680E+00,4.536997E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +1577923,fr,1,4.850000E+00,7.847680E+00,4.536997E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,-9.000000E+01 +1578264,fr,1,3.750000E+00,4.552500E+00,5.153749E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1578336,fr,1,4.350000E+00,4.552500E+00,5.153749E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1578492,fr,1,5.650000E+00,4.552500E+00,5.153749E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1578726,fr,1,3.550000E+00,8.967800E-01,4.980613E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,-9.000000E+01 +1578732,fr,1,3.650000E+00,8.967800E-01,4.980613E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1578741,fr,1,3.650000E+00,8.967800E-01,4.980613E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.996346E+01,0.000000E+00 +1578744,fr,1,3.750000E+00,8.967800E-01,4.980613E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +1578747,fr,1,3.750000E+00,8.967800E-01,4.980613E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.801769E+01,0.000000E+00 +1578768,fr,1,3.950000E+00,8.967800E-01,4.980613E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1578792,fr,1,4.150000E+00,8.967800E-01,4.980613E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1578816,fr,1,4.350000E+00,8.967800E-01,4.980613E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1578889,fr,1,4.950000E+00,8.967800E-01,4.980613E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1579695,fr,1,3.650000E+00,4.973400E+00,4.554073E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801342E+01,0.000000E+00 +1579701,fr,1,3.650000E+00,4.973400E+00,4.554073E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.996351E+01,0.000000E+00 +1579705,fr,3,3.750000E+00,4.973400E+00,4.554073E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +1579707,fr,1,3.750000E+00,4.973400E+00,4.554073E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.801745E+01,0.000000E+00 +1579716,fr,1,3.850000E+00,4.973400E+00,4.554073E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1579718,fr,1,3.850000E+00,4.973400E+00,4.554073E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1579720,fr,1,3.850000E+00,4.973400E+00,4.554073E+01,1.500000E+01,Active Shallow Crust,2.400106E+02,5.799696E+01,0.000000E+00 +1579729,fr,1,3.950000E+00,4.973400E+00,4.554073E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999109E+01,0.000000E+00 +1579740,fr,1,4.050000E+00,4.973400E+00,4.554073E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +1579741,fr,1,4.050000E+00,4.973400E+00,4.554073E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +1579743,fr,1,4.050000E+00,4.973400E+00,4.554073E+01,5.000000E+00,Active Shallow Crust,2.400057E+02,5.800609E+01,0.000000E+00 +1579752,fr,1,4.150000E+00,4.973400E+00,4.554073E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +1579764,fr,1,4.250000E+00,4.973400E+00,4.554073E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +1579794,fr,1,4.450000E+00,4.973400E+00,4.554073E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,-9.000000E+01 +1579800,fr,1,4.550000E+00,4.973400E+00,4.554073E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +1579815,fr,1,4.650000E+00,4.973400E+00,4.554073E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799425E+01,0.000000E+00 +1579824,fr,1,4.750000E+00,4.973400E+00,4.554073E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +1579893,fr,1,5.250000E+00,4.973400E+00,4.554073E+01,5.000000E+00,Active Shallow Crust,1.288837E+02,8.998713E+01,0.000000E+00 +1579896,fr,1,5.350000E+00,4.973400E+00,4.554073E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1579899,fr,1,5.350000E+00,4.973400E+00,4.554073E+01,5.000000E+00,Active Shallow Crust,2.400245E+02,5.799769E+01,0.000000E+00 +1580163,fr,1,3.550000E+00,4.588920E+00,4.587858E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.799808E+01,0.000000E+00 +1580184,fr,1,3.750000E+00,4.588920E+00,4.587858E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +1580194,fr,1,3.750000E+00,4.588920E+00,4.587858E+01,1.500000E+01,Active Shallow Crust,1.288972E+02,8.996748E+01,0.000000E+00 +1580202,fr,1,3.850000E+00,4.588920E+00,4.587858E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +1580217,fr,1,3.950000E+00,4.588920E+00,4.587858E+01,5.000000E+00,Active Shallow Crust,1.289010E+02,8.999335E+01,0.000000E+00 +1580221,fr,1,4.050000E+00,4.588920E+00,4.587858E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998816E+01,0.000000E+00 +1580233,fr,1,4.150000E+00,4.588920E+00,4.587858E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +1580264,fr,1,4.350000E+00,4.588920E+00,4.587858E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998869E+01,-9.000000E+01 +1580268,fr,1,4.450000E+00,4.588920E+00,4.587858E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1580271,fr,1,4.450000E+00,4.588920E+00,4.587858E+01,5.000000E+00,Active Shallow Crust,2.400055E+02,5.799427E+01,0.000000E+00 +1580287,fr,1,4.550000E+00,4.588920E+00,4.587858E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999101E+01,-9.000000E+01 +1580292,fr,1,4.650000E+00,4.588920E+00,4.587858E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1580640,fr,1,3.550000E+00,-2.331590E+00,5.014094E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1580646,fr,1,3.550000E+00,-2.331590E+00,5.014094E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,-9.000000E+01 +1580676,fr,1,3.850000E+00,-2.331590E+00,5.014094E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999085E+01,0.000000E+00 +1580680,fr,1,3.850000E+00,-2.331590E+00,5.014094E+01,1.500000E+01,Active Shallow Crust,2.400117E+02,5.799778E+01,0.000000E+00 +1580701,fr,1,4.050000E+00,-2.331590E+00,5.014094E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +1581134,fr,1,3.650000E+00,4.266850E+00,4.827181E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998804E+01,0.000000E+00 +1581196,fr,1,4.150000E+00,4.266850E+00,4.827181E+01,1.500000E+01,Active Shallow Crust,2.400089E+02,5.799697E+01,0.000000E+00 +1581264,fr,1,4.750000E+00,4.266850E+00,4.827181E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1581300,fr,1,5.050000E+00,4.266850E+00,4.827181E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +1581328,fr,1,5.250000E+00,4.266850E+00,4.827181E+01,1.500000E+01,Active Shallow Crust,2.400267E+02,5.800063E+01,0.000000E+00 +1581625,fr,1,3.750000E+00,-4.259510E+00,4.588856E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +1582080,fr,3,3.550000E+00,6.628340E+00,4.692310E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999311E+01,0.000000E+00 +1582081,fr,1,3.550000E+00,6.628340E+00,4.692310E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999311E+01,0.000000E+00 +1582086,fr,2,3.550000E+00,6.628340E+00,4.692310E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999303E+01,-9.000000E+01 +1582092,fr,5,3.650000E+00,6.628340E+00,4.692310E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998772E+01,0.000000E+00 +1582093,fr,2,3.650000E+00,6.628340E+00,4.692310E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998772E+01,0.000000E+00 +1582094,fr,1,3.650000E+00,6.628340E+00,4.692310E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998772E+01,0.000000E+00 +1582098,fr,1,3.650000E+00,6.628340E+00,4.692310E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998758E+01,-9.000000E+01 +1582099,fr,1,3.650000E+00,6.628340E+00,4.692310E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998758E+01,-9.000000E+01 +1582102,fr,1,3.650000E+00,6.628340E+00,4.692310E+01,1.500000E+01,Active Shallow Crust,1.288995E+02,8.996353E+01,0.000000E+00 +1582104,fr,7,3.750000E+00,6.628340E+00,4.692310E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998906E+01,0.000000E+00 +1582105,fr,2,3.750000E+00,6.628340E+00,4.692310E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998906E+01,0.000000E+00 +1582107,fr,4,3.750000E+00,6.628340E+00,4.692310E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801753E+01,0.000000E+00 +1582108,fr,1,3.750000E+00,6.628340E+00,4.692310E+01,1.500000E+01,Active Shallow Crust,2.400085E+02,5.801753E+01,0.000000E+00 +1582110,fr,2,3.750000E+00,6.628340E+00,4.692310E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998893E+01,-9.000000E+01 +1582111,fr,1,3.750000E+00,6.628340E+00,4.692310E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998893E+01,-9.000000E+01 +1582116,fr,5,3.850000E+00,6.628340E+00,4.692310E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1582117,fr,2,3.850000E+00,6.628340E+00,4.692310E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1582118,fr,1,3.850000E+00,6.628340E+00,4.692310E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1582122,fr,2,3.850000E+00,6.628340E+00,4.692310E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +1582123,fr,1,3.850000E+00,6.628340E+00,4.692310E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +1582125,fr,1,3.850000E+00,6.628340E+00,4.692310E+01,5.000000E+00,Active Shallow Crust,1.288951E+02,8.999268E+01,0.000000E+00 +1582126,fr,1,3.850000E+00,6.628340E+00,4.692310E+01,1.500000E+01,Active Shallow Crust,1.288951E+02,8.999268E+01,0.000000E+00 +1582129,fr,1,3.950000E+00,6.628340E+00,4.692310E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999131E+01,0.000000E+00 +1582132,fr,1,3.950000E+00,6.628340E+00,4.692310E+01,1.500000E+01,Active Shallow Crust,2.400199E+02,5.800486E+01,0.000000E+00 +1582135,fr,2,3.950000E+00,6.628340E+00,4.692310E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999121E+01,-9.000000E+01 +1582140,fr,3,4.050000E+00,6.628340E+00,4.692310E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998838E+01,0.000000E+00 +1582141,fr,1,4.050000E+00,6.628340E+00,4.692310E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998838E+01,0.000000E+00 +1582152,fr,1,4.150000E+00,6.628340E+00,4.692310E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1582155,fr,1,4.150000E+00,6.628340E+00,4.692310E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.799788E+01,0.000000E+00 +1582158,fr,1,4.150000E+00,6.628340E+00,4.692310E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,-9.000000E+01 +1582164,fr,4,4.250000E+00,6.628340E+00,4.692310E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999077E+01,0.000000E+00 +1582170,fr,1,4.250000E+00,6.628340E+00,4.692310E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999066E+01,-9.000000E+01 +1582171,fr,1,4.250000E+00,6.628340E+00,4.692310E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999066E+01,-9.000000E+01 +1582176,fr,1,4.350000E+00,6.628340E+00,4.692310E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998903E+01,0.000000E+00 +1582178,fr,1,4.350000E+00,6.628340E+00,4.692310E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998903E+01,0.000000E+00 +1582179,fr,1,4.350000E+00,6.628340E+00,4.692310E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.799591E+01,0.000000E+00 +1582188,fr,2,4.450000E+00,6.628340E+00,4.692310E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1582210,fr,1,4.550000E+00,6.628340E+00,4.692310E+01,1.500000E+01,Active Shallow Crust,1.288937E+02,8.998567E+01,0.000000E+00 +1582212,fr,1,4.650000E+00,6.628340E+00,4.692310E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1582213,fr,2,4.650000E+00,6.628340E+00,4.692310E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1582224,fr,2,4.750000E+00,6.628340E+00,4.692310E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +1582228,fr,1,4.750000E+00,6.628340E+00,4.692310E+01,1.500000E+01,Active Shallow Crust,2.400075E+02,5.800455E+01,0.000000E+00 +1582238,fr,1,4.850000E+00,6.628340E+00,4.692310E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +1582248,fr,2,4.950000E+00,6.628340E+00,4.692310E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +1582308,fr,1,5.450000E+00,6.628340E+00,4.692310E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1582560,fr,1,3.550000E+00,3.670310E+00,4.496249E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +1582561,fr,1,3.550000E+00,3.670310E+00,4.496249E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +1582563,fr,1,3.550000E+00,3.670310E+00,4.496249E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799791E+01,0.000000E+00 +1582572,fr,1,3.650000E+00,3.670310E+00,4.496249E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1582573,fr,2,3.650000E+00,3.670310E+00,4.496249E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1582584,fr,1,3.750000E+00,3.670310E+00,4.496249E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +1582596,fr,2,3.850000E+00,3.670310E+00,4.496249E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1582597,fr,1,3.850000E+00,3.670310E+00,4.496249E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1582602,fr,1,3.850000E+00,3.670310E+00,4.496249E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,-9.000000E+01 +1582617,fr,1,3.950000E+00,3.670310E+00,4.496249E+01,5.000000E+00,Active Shallow Crust,1.289010E+02,8.999325E+01,0.000000E+00 +1582620,fr,1,4.050000E+00,3.670310E+00,4.496249E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1582644,fr,1,4.250000E+00,3.670310E+00,4.496249E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +1582668,fr,1,4.450000E+00,3.670310E+00,4.496249E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1582692,fr,1,4.650000E+00,3.670310E+00,4.496249E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1583040,fr,3,3.550000E+00,4.972860E+00,4.619161E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999302E+01,0.000000E+00 +1583044,fr,1,3.550000E+00,4.972860E+00,4.619161E+01,1.500000E+01,Active Shallow Crust,2.400105E+02,5.799892E+01,0.000000E+00 +1583049,fr,1,3.550000E+00,4.972860E+00,4.619161E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999302E+01,0.000000E+00 +1583052,fr,1,3.650000E+00,4.972860E+00,4.619161E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998756E+01,0.000000E+00 +1583076,fr,1,3.850000E+00,4.972860E+00,4.619161E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1583077,fr,1,3.850000E+00,4.972860E+00,4.619161E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1583130,fr,1,4.250000E+00,4.972860E+00,4.619161E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,-9.000000E+01 +1583138,fr,1,4.350000E+00,4.972860E+00,4.619161E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +1583155,fr,1,4.450000E+00,4.972860E+00,4.619161E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1583161,fr,1,4.550000E+00,4.972860E+00,4.619161E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998896E+01,0.000000E+00 +1583181,fr,1,4.650000E+00,4.972860E+00,4.619161E+01,5.000000E+00,Active Shallow Crust,1.288914E+02,8.998719E+01,0.000000E+00 +1583221,fr,1,5.050000E+00,4.972860E+00,4.619161E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1583520,fr,1,3.550000E+00,3.933900E+00,4.707635E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1583524,fr,1,3.550000E+00,3.933900E+00,4.707635E+01,1.500000E+01,Active Shallow Crust,2.400126E+02,5.799847E+01,0.000000E+00 +1583568,fr,1,3.950000E+00,3.933900E+00,4.707635E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +1583664,fr,1,4.750000E+00,3.933900E+00,4.707635E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1583665,fr,1,4.750000E+00,3.933900E+00,4.707635E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1583787,fr,1,5.750000E+00,3.933900E+00,4.707635E+01,5.000000E+00,Active Shallow Crust,2.400392E+02,5.800194E+01,0.000000E+00 +1584012,fr,1,3.650000E+00,9.713900E-01,4.380278E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +1584048,fr,1,3.950000E+00,9.713900E-01,4.380278E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +1584491,fr,1,3.550000E+00,-5.850700E+00,4.777827E+01,2.750000E+01,Active Shallow Crust,1.288962E+02,8.999323E+01,0.000000E+00 +1584960,fr,3,3.550000E+00,-2.035700E+00,4.309430E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +1584961,fr,1,3.550000E+00,-2.035700E+00,4.309430E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +1584963,fr,2,3.550000E+00,-2.035700E+00,4.309430E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799859E+01,0.000000E+00 +1584966,fr,1,3.550000E+00,-2.035700E+00,4.309430E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998883E+01,-9.000000E+01 +1584969,fr,1,3.550000E+00,-2.035700E+00,4.309430E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.999264E+01,0.000000E+00 +1584970,fr,2,3.550000E+00,-2.035700E+00,4.309430E+01,1.500000E+01,Active Shallow Crust,1.288966E+02,8.999264E+01,0.000000E+00 +1584972,fr,4,3.650000E+00,-2.035700E+00,4.309430E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1584974,fr,1,3.650000E+00,-2.035700E+00,4.309430E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1584984,fr,2,3.750000E+00,-2.035700E+00,4.309430E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +1584985,fr,1,3.750000E+00,-2.035700E+00,4.309430E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +1584991,fr,1,3.750000E+00,-2.035700E+00,4.309430E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999113E+01,-9.000000E+01 +1584996,fr,1,3.850000E+00,-2.035700E+00,4.309430E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +1585011,fr,1,3.950000E+00,-2.035700E+00,4.309430E+01,5.000000E+00,Active Shallow Crust,2.400190E+02,5.800472E+01,0.000000E+00 +1585014,fr,1,3.950000E+00,-2.035700E+00,4.309430E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999060E+01,-9.000000E+01 +1585020,fr,2,4.050000E+00,-2.035700E+00,4.309430E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1585021,fr,1,4.050000E+00,-2.035700E+00,4.309430E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1585048,fr,1,4.250000E+00,-2.035700E+00,4.309430E+01,1.500000E+01,Active Shallow Crust,2.400066E+02,5.799390E+01,0.000000E+00 +1585064,fr,1,4.350000E+00,-2.035700E+00,4.309430E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,-9.000000E+01 +1585070,fr,1,4.450000E+00,-2.035700E+00,4.309430E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +1585128,fr,1,4.950000E+00,-2.035700E+00,4.309430E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1585129,fr,1,4.950000E+00,-2.035700E+00,4.309430E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1585152,fr,1,5.150000E+00,-2.035700E+00,4.309430E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1585440,fr,3,3.550000E+00,5.654750E+00,4.536987E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999291E+01,0.000000E+00 +1585441,fr,1,3.550000E+00,5.654750E+00,4.536987E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999291E+01,0.000000E+00 +1585443,fr,2,3.550000E+00,5.654750E+00,4.536987E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799797E+01,0.000000E+00 +1585449,fr,1,3.550000E+00,5.654750E+00,4.536987E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999292E+01,0.000000E+00 +1585451,fr,1,3.550000E+00,5.654750E+00,4.536987E+01,2.750000E+01,Active Shallow Crust,1.288967E+02,8.999292E+01,0.000000E+00 +1585452,fr,2,3.650000E+00,5.654750E+00,4.536987E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998737E+01,0.000000E+00 +1585453,fr,1,3.650000E+00,5.654750E+00,4.536987E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998737E+01,0.000000E+00 +1585454,fr,1,3.650000E+00,5.654750E+00,4.536987E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998737E+01,0.000000E+00 +1585457,fr,1,3.650000E+00,5.654750E+00,4.536987E+01,2.750000E+01,Active Shallow Crust,2.400005E+02,5.801254E+01,0.000000E+00 +1585458,fr,1,3.650000E+00,5.654750E+00,4.536987E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998723E+01,-9.000000E+01 +1585464,fr,1,3.750000E+00,5.654750E+00,4.536987E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +1585465,fr,1,3.750000E+00,5.654750E+00,4.536987E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +1585466,fr,1,3.750000E+00,5.654750E+00,4.536987E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +1585470,fr,1,3.750000E+00,5.654750E+00,4.536987E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998862E+01,-9.000000E+01 +1585476,fr,3,3.850000E+00,5.654750E+00,4.536987E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1585479,fr,1,3.850000E+00,5.654750E+00,4.536987E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.799868E+01,0.000000E+00 +1585488,fr,1,3.950000E+00,5.654750E+00,4.536987E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999106E+01,0.000000E+00 +1585494,fr,1,3.950000E+00,5.654750E+00,4.536987E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999096E+01,-9.000000E+01 +1585497,fr,1,3.950000E+00,5.654750E+00,4.536987E+01,5.000000E+00,Active Shallow Crust,1.289012E+02,8.999329E+01,0.000000E+00 +1585500,fr,2,4.050000E+00,5.654750E+00,4.536987E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998804E+01,0.000000E+00 +1585503,fr,2,4.050000E+00,5.654750E+00,4.536987E+01,5.000000E+00,Active Shallow Crust,2.400052E+02,5.800598E+01,0.000000E+00 +1585512,fr,1,4.150000E+00,5.654750E+00,4.536987E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +1585536,fr,2,4.350000E+00,5.654750E+00,4.536987E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +1585572,fr,1,4.650000E+00,5.654750E+00,4.536987E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1585644,fr,1,5.250000E+00,5.654750E+00,4.536987E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1585758,fr,1,6.150000E+00,5.654752E+00,4.536987E+01,5.942511E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,-9.000000E+01 +1585932,fr,1,3.650000E+00,5.366520E+00,4.778885E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998792E+01,0.000000E+00 +1585944,fr,1,3.750000E+00,5.366520E+00,4.778885E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +1585995,fr,1,4.150000E+00,5.366520E+00,4.778885E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.799752E+01,0.000000E+00 +1586028,fr,1,4.450000E+00,5.366520E+00,4.778885E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1586030,fr,1,4.450000E+00,5.366520E+00,4.778885E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1586112,fr,1,5.150000E+00,5.366520E+00,4.778885E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1586400,fr,1,3.550000E+00,6.266910E+00,4.346278E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999268E+01,0.000000E+00 +1586428,fr,1,3.750000E+00,6.266910E+00,4.346278E+01,1.500000E+01,Active Shallow Crust,2.400092E+02,5.801677E+01,0.000000E+00 +1586442,fr,1,3.850000E+00,6.266910E+00,4.346278E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,-9.000000E+01 +1586508,fr,1,4.450000E+00,6.266910E+00,4.346278E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +1586882,fr,1,3.550000E+00,2.191000E+00,4.328280E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998899E+01,0.000000E+00 +1586888,fr,1,3.550000E+00,2.191000E+00,4.328280E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998886E+01,-9.000000E+01 +1586889,fr,1,3.550000E+00,2.191000E+00,4.328280E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999449E+01,0.000000E+00 +1586976,fr,1,4.350000E+00,2.191000E+00,4.328280E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1587362,fr,1,3.550000E+00,1.768220E+00,4.067048E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +1587363,fr,1,3.550000E+00,1.768220E+00,4.067048E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799815E+01,0.000000E+00 +1587385,fr,1,3.750000E+00,1.768220E+00,4.067048E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +1587421,fr,1,4.050000E+00,1.768220E+00,4.067048E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1587483,fr,1,4.550000E+00,1.768220E+00,4.067048E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.799696E+01,0.000000E+00 +1587840,fr,1,3.550000E+00,5.540020E+00,4.742832E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999318E+01,0.000000E+00 +1587841,fr,1,3.550000E+00,5.540020E+00,4.742832E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999318E+01,0.000000E+00 +1587846,fr,1,3.550000E+00,5.540020E+00,4.742832E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999310E+01,-9.000000E+01 +1587853,fr,1,3.650000E+00,5.540020E+00,4.742832E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998784E+01,0.000000E+00 +1587864,fr,2,3.750000E+00,5.540020E+00,4.742832E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +1587877,fr,1,3.850000E+00,5.540020E+00,4.742832E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +1587888,fr,1,3.950000E+00,5.540020E+00,4.742832E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999139E+01,0.000000E+00 +1587891,fr,1,3.950000E+00,5.540020E+00,4.742832E+01,5.000000E+00,Active Shallow Crust,2.400207E+02,5.800468E+01,0.000000E+00 +1587912,fr,2,4.150000E+00,5.540020E+00,4.742832E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1587915,fr,1,4.150000E+00,5.540020E+00,4.742832E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799722E+01,0.000000E+00 +1587931,fr,1,4.250000E+00,5.540020E+00,4.742832E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,-9.000000E+01 +1588808,fr,1,3.550000E+00,3.018080E+00,4.100129E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998845E+01,-9.000000E+01 +1588814,fr,1,3.650000E+00,3.018080E+00,4.100129E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1588825,fr,1,3.750000E+00,3.018080E+00,4.100129E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +1588837,fr,1,3.850000E+00,3.018080E+00,4.100129E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +1588860,fr,1,4.050000E+00,3.018080E+00,4.100129E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +1588870,fr,1,4.050000E+00,3.018080E+00,4.100129E+01,1.500000E+01,Active Shallow Crust,1.288906E+02,8.999465E+01,0.000000E+00 +1588886,fr,1,4.250000E+00,3.018080E+00,4.100129E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1588890,fr,1,4.250000E+00,3.018080E+00,4.100129E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +1589331,fr,1,3.950000E+00,4.407670E+00,5.224179E+01,5.000000E+00,Active Shallow Crust,2.400209E+02,5.800503E+01,0.000000E+00 +1589760,fr,1,3.550000E+00,-2.368180E+00,4.361055E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998905E+01,0.000000E+00 +1589763,fr,1,3.550000E+00,-2.368180E+00,4.361055E+01,5.000000E+00,Active Shallow Crust,2.400126E+02,5.799816E+01,0.000000E+00 +1589817,fr,1,3.950000E+00,-2.368180E+00,4.361055E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.999424E+01,0.000000E+00 +1589820,fr,1,4.050000E+00,-2.368180E+00,4.361055E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +1589880,fr,1,4.550000E+00,-2.368180E+00,4.361055E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +1589881,fr,1,4.550000E+00,-2.368180E+00,4.361055E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +1590253,fr,1,3.650000E+00,3.227250E+00,4.786354E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999096E+01,0.000000E+00 +1590336,fr,1,4.350000E+00,3.227250E+00,4.786354E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +1590727,fr,1,3.550000E+00,5.057600E+00,4.169567E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999239E+01,-9.000000E+01 +1590834,fr,1,4.450000E+00,5.057600E+00,4.169567E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998919E+01,-9.000000E+01 +1590853,fr,1,4.650000E+00,5.057600E+00,4.169567E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +1591200,fr,1,3.550000E+00,2.817900E-01,4.911635E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1591204,fr,1,3.550000E+00,2.817900E-01,4.911635E+01,1.500000E+01,Active Shallow Crust,2.400124E+02,5.799828E+01,0.000000E+00 +1591218,fr,1,3.650000E+00,2.817900E-01,4.911635E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +1591224,fr,1,3.750000E+00,2.817900E-01,4.911635E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1591233,fr,1,3.750000E+00,2.817900E-01,4.911635E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.996736E+01,0.000000E+00 +1591236,fr,1,3.850000E+00,2.817900E-01,4.911635E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1591250,fr,1,3.950000E+00,2.817900E-01,4.911635E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1591251,fr,2,3.950000E+00,2.817900E-01,4.911635E+01,5.000000E+00,Active Shallow Crust,2.400202E+02,5.800510E+01,0.000000E+00 +1591272,fr,1,4.150000E+00,2.817900E-01,4.911635E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1591273,fr,1,4.150000E+00,2.817900E-01,4.911635E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1591285,fr,1,4.250000E+00,2.817900E-01,4.911635E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1591308,fr,1,4.450000E+00,2.817900E-01,4.911635E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1591356,fr,1,4.850000E+00,2.817900E-01,4.911635E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1591719,fr,1,3.850000E+00,2.444750E+00,4.856416E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799790E+01,0.000000E+00 +1592172,fr,1,3.650000E+00,-2.706750E+00,4.287665E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1592173,fr,1,3.650000E+00,-2.706750E+00,4.287665E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1592175,fr,1,3.650000E+00,-2.706750E+00,4.287665E+01,5.000000E+00,Active Shallow Crust,2.400006E+02,5.801291E+01,0.000000E+00 +1592181,fr,1,3.650000E+00,-2.706750E+00,4.287665E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.996346E+01,0.000000E+00 +1592185,fr,1,3.750000E+00,-2.706750E+00,4.287665E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +1592187,fr,1,3.750000E+00,-2.706750E+00,4.287665E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.801754E+01,0.000000E+00 +1592194,fr,1,3.750000E+00,-2.706750E+00,4.287665E+01,1.500000E+01,Active Shallow Crust,1.288973E+02,8.996743E+01,0.000000E+00 +1592197,fr,1,3.850000E+00,-2.706750E+00,4.287665E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +1592205,fr,1,3.850000E+00,-2.706750E+00,4.287665E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999346E+01,0.000000E+00 +1592221,fr,1,4.050000E+00,-2.706750E+00,4.287665E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +1592238,fr,1,4.150000E+00,-2.706750E+00,4.287665E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,-9.000000E+01 +1592258,fr,1,4.350000E+00,-2.706750E+00,4.287665E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1592329,fr,1,4.950000E+00,-2.706750E+00,4.287665E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1592665,fr,1,3.750000E+00,-1.328020E+00,4.179066E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +1592865,fr,1,5.350000E+00,-1.328020E+00,4.179066E+01,5.000000E+00,Active Shallow Crust,1.288858E+02,8.999194E+01,0.000000E+00 +1593120,fr,1,3.550000E+00,3.874960E+00,5.083066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +1593127,fr,1,3.550000E+00,3.874960E+00,5.083066E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,-9.000000E+01 +1593140,fr,1,3.650000E+00,3.874960E+00,5.083066E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999139E+01,-9.000000E+01 +1593147,fr,1,3.750000E+00,3.874960E+00,5.083066E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.801793E+01,0.000000E+00 +1593157,fr,1,3.850000E+00,3.874960E+00,5.083066E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999098E+01,0.000000E+00 +1593165,fr,1,3.850000E+00,3.874960E+00,5.083066E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.999324E+01,0.000000E+00 +1593168,fr,1,3.950000E+00,3.874960E+00,5.083066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1593180,fr,2,4.050000E+00,3.874960E+00,5.083066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +1593186,fr,1,4.050000E+00,3.874960E+00,5.083066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998913E+01,-9.000000E+01 +1593193,fr,1,4.150000E+00,3.874960E+00,5.083066E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1593213,fr,1,4.250000E+00,3.874960E+00,5.083066E+01,5.000000E+00,Active Shallow Crust,1.288934E+02,8.998088E+01,0.000000E+00 +1593244,fr,1,4.550000E+00,3.874960E+00,5.083066E+01,1.500000E+01,Active Shallow Crust,2.400107E+02,5.799753E+01,0.000000E+00 +1593265,fr,1,4.750000E+00,3.874960E+00,5.083066E+01,1.500000E+01,Active Shallow Crust,3.599996E+02,8.999040E+01,0.000000E+00 +1593612,fr,1,3.650000E+00,1.525310E+00,5.254546E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1593624,fr,1,3.750000E+00,1.525310E+00,5.254546E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1593636,fr,1,3.850000E+00,1.525310E+00,5.254546E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1594081,fr,1,3.550000E+00,3.511930E+00,4.228696E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998881E+01,0.000000E+00 +1594103,fr,1,3.650000E+00,3.511930E+00,4.228696E+01,2.750000E+01,Active Shallow Crust,1.289016E+02,8.996344E+01,0.000000E+00 +1594118,fr,1,3.850000E+00,3.511930E+00,4.228696E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +1594139,fr,1,3.950000E+00,3.511930E+00,4.228696E+01,2.750000E+01,Active Shallow Crust,1.289011E+02,8.999412E+01,0.000000E+00 +1594140,fr,1,4.050000E+00,3.511930E+00,4.228696E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1594141,fr,1,4.050000E+00,3.511930E+00,4.228696E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1594154,fr,1,4.150000E+00,3.511930E+00,4.228696E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +1594164,fr,1,4.250000E+00,3.511930E+00,4.228696E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1594189,fr,1,4.450000E+00,3.511930E+00,4.228696E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998941E+01,0.000000E+00 +1594560,fr,5,3.550000E+00,3.401460E+00,4.583524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1594563,fr,1,3.550000E+00,3.401460E+00,4.583524E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.799828E+01,0.000000E+00 +1594575,fr,2,3.650000E+00,3.401460E+00,4.583524E+01,5.000000E+00,Active Shallow Crust,2.400015E+02,5.801270E+01,0.000000E+00 +1594588,fr,1,3.750000E+00,3.401460E+00,4.583524E+01,1.500000E+01,Active Shallow Crust,2.400082E+02,5.801754E+01,0.000000E+00 +1594593,fr,1,3.750000E+00,3.401460E+00,4.583524E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.996721E+01,0.000000E+00 +1594596,fr,1,3.850000E+00,3.401460E+00,4.583524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1594608,fr,1,3.950000E+00,3.401460E+00,4.583524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +1594609,fr,2,3.950000E+00,3.401460E+00,4.583524E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +1594621,fr,1,4.050000E+00,3.401460E+00,4.583524E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1594623,fr,1,4.050000E+00,3.401460E+00,4.583524E+01,5.000000E+00,Active Shallow Crust,2.400058E+02,5.800597E+01,0.000000E+00 +1594630,fr,1,4.050000E+00,3.401460E+00,4.583524E+01,1.500000E+01,Active Shallow Crust,1.288906E+02,8.999407E+01,0.000000E+00 +1594632,fr,1,4.150000E+00,3.401460E+00,4.583524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1594635,fr,1,4.150000E+00,3.401460E+00,4.583524E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.799749E+01,0.000000E+00 +1594704,fr,1,4.750000E+00,3.401460E+00,4.583524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1594718,fr,1,4.850000E+00,3.401460E+00,4.583524E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1594862,fr,1,6.050000E+00,3.401460E+00,4.583524E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1595040,fr,1,3.550000E+00,2.032960E+00,4.682919E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1595046,fr,1,3.550000E+00,2.032960E+00,4.682919E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,-9.000000E+01 +1595056,fr,1,3.650000E+00,2.032960E+00,4.682919E+01,1.500000E+01,Active Shallow Crust,2.400005E+02,5.801328E+01,0.000000E+00 +1595064,fr,1,3.750000E+00,2.032960E+00,4.682919E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +1595066,fr,1,3.750000E+00,2.032960E+00,4.682919E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +1595076,fr,1,3.850000E+00,2.032960E+00,4.682919E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1595078,fr,1,3.850000E+00,2.032960E+00,4.682919E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1595086,fr,1,3.850000E+00,2.032960E+00,4.682919E+01,1.500000E+01,Active Shallow Crust,1.288959E+02,8.999390E+01,0.000000E+00 +1595101,fr,1,4.050000E+00,2.032960E+00,4.682919E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1595136,fr,1,4.350000E+00,2.032960E+00,4.682919E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1595160,fr,1,4.550000E+00,2.032960E+00,4.682919E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1595181,fr,1,4.650000E+00,2.032960E+00,4.682919E+01,5.000000E+00,Active Shallow Crust,1.288911E+02,8.998699E+01,0.000000E+00 +1595544,fr,1,3.750000E+00,-6.947020E+00,4.861383E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998941E+01,0.000000E+00 +1595565,fr,1,3.850000E+00,-6.947020E+00,4.861383E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999292E+01,0.000000E+00 +1596000,fr,6,3.550000E+00,6.482570E+00,5.069056E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998722E+01,0.000000E+00 +1596001,fr,2,3.550000E+00,6.482570E+00,5.069056E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998722E+01,0.000000E+00 +1596002,fr,1,3.550000E+00,6.482570E+00,5.069056E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998722E+01,0.000000E+00 +1596006,fr,3,3.550000E+00,6.482570E+00,5.069056E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998708E+01,-9.000000E+01 +1596012,fr,6,3.650000E+00,6.482570E+00,5.069056E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998861E+01,0.000000E+00 +1596013,fr,1,3.650000E+00,6.482570E+00,5.069056E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998861E+01,0.000000E+00 +1596027,fr,1,3.750000E+00,6.482570E+00,5.069056E+01,5.000000E+00,Active Shallow Crust,2.400095E+02,5.801799E+01,0.000000E+00 +1596028,fr,1,3.750000E+00,6.482570E+00,5.069056E+01,1.500000E+01,Active Shallow Crust,2.400095E+02,5.801799E+01,0.000000E+00 +1596036,fr,2,3.850000E+00,6.482570E+00,5.069056E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999095E+01,0.000000E+00 +1596039,fr,1,3.850000E+00,6.482570E+00,5.069056E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799821E+01,0.000000E+00 +1596042,fr,1,3.850000E+00,6.482570E+00,5.069056E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999085E+01,-9.000000E+01 +1596049,fr,1,3.950000E+00,6.482570E+00,5.069056E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999194E+01,0.000000E+00 +1596050,fr,1,3.950000E+00,6.482570E+00,5.069056E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999194E+01,0.000000E+00 +1596051,fr,1,3.950000E+00,6.482570E+00,5.069056E+01,5.000000E+00,Active Shallow Crust,2.400211E+02,5.800457E+01,0.000000E+00 +1596052,fr,1,3.950000E+00,6.482570E+00,5.069056E+01,1.500000E+01,Active Shallow Crust,2.400211E+02,5.800457E+01,0.000000E+00 +1596073,fr,1,4.150000E+00,6.482570E+00,5.069056E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1596074,fr,1,4.150000E+00,6.482570E+00,5.069056E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1596084,fr,1,4.250000E+00,6.482570E+00,5.069056E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +1596086,fr,1,4.250000E+00,6.482570E+00,5.069056E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +1596088,fr,1,4.250000E+00,6.482570E+00,5.069056E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.799448E+01,0.000000E+00 +1596097,fr,1,4.350000E+00,6.482570E+00,5.069056E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1596114,fr,1,4.450000E+00,6.482570E+00,5.069056E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999083E+01,-9.000000E+01 +1596120,fr,1,4.550000E+00,6.482570E+00,5.069056E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1596132,fr,1,4.650000E+00,6.482570E+00,5.069056E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1596141,fr,1,4.650000E+00,6.482570E+00,5.069056E+01,5.000000E+00,Active Shallow Crust,1.288896E+02,8.998700E+01,0.000000E+00 +1596150,fr,1,4.750000E+00,6.482570E+00,5.069056E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,-9.000000E+01 +1596156,fr,1,4.850000E+00,6.482570E+00,5.069056E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1596178,fr,1,4.950000E+00,6.482570E+00,5.069056E+01,1.500000E+01,Active Shallow Crust,1.288882E+02,8.998974E+01,0.000000E+00 +1596480,fr,1,3.550000E+00,8.150600E+00,4.644930E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998611E+01,0.000000E+00 +1596481,fr,2,3.550000E+00,8.150600E+00,4.644930E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998611E+01,0.000000E+00 +1596490,fr,1,3.550000E+00,8.150600E+00,4.644930E+01,1.500000E+01,Active Shallow Crust,1.288971E+02,8.999305E+01,0.000000E+00 +1596492,fr,2,3.650000E+00,8.150600E+00,4.644930E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998762E+01,0.000000E+00 +1596495,fr,1,3.650000E+00,8.150600E+00,4.644930E+01,5.000000E+00,Active Shallow Crust,2.400027E+02,5.801190E+01,0.000000E+00 +1596496,fr,1,3.650000E+00,8.150600E+00,4.644930E+01,1.500000E+01,Active Shallow Crust,2.400027E+02,5.801190E+01,0.000000E+00 +1596504,fr,2,3.750000E+00,8.150600E+00,4.644930E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998896E+01,0.000000E+00 +1596507,fr,1,3.750000E+00,8.150600E+00,4.644930E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.801698E+01,0.000000E+00 +1596516,fr,2,3.850000E+00,8.150600E+00,4.644930E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1596519,fr,1,3.850000E+00,8.150600E+00,4.644930E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799648E+01,0.000000E+00 +1596520,fr,1,3.850000E+00,8.150600E+00,4.644930E+01,1.500000E+01,Active Shallow Crust,2.400125E+02,5.799648E+01,0.000000E+00 +1596522,fr,1,3.850000E+00,8.150600E+00,4.644930E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,-9.000000E+01 +1596540,fr,1,4.050000E+00,8.150600E+00,4.644930E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999219E+01,0.000000E+00 +1596543,fr,1,4.050000E+00,8.150600E+00,4.644930E+01,5.000000E+00,Active Shallow Crust,2.400052E+02,5.800655E+01,0.000000E+00 +1596552,fr,1,4.150000E+00,8.150600E+00,4.644930E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999303E+01,0.000000E+00 +1596564,fr,1,4.250000E+00,8.150600E+00,4.644930E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998759E+01,0.000000E+00 +1596566,fr,1,4.250000E+00,8.150600E+00,4.644930E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998759E+01,0.000000E+00 +1596577,fr,1,4.350000E+00,8.150600E+00,4.644930E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998894E+01,0.000000E+00 +1596650,fr,1,4.950000E+00,8.150600E+00,4.644930E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +1596708,fr,1,5.450000E+00,8.150600E+00,4.644930E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +1596960,fr,1,3.550000E+00,6.159480E+00,4.776406E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999323E+01,0.000000E+00 +1596961,fr,1,3.550000E+00,6.159480E+00,4.776406E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999323E+01,0.000000E+00 +1596966,fr,1,3.550000E+00,6.159480E+00,4.776406E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999314E+01,-9.000000E+01 +1596972,fr,1,3.650000E+00,6.159480E+00,4.776406E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998792E+01,0.000000E+00 +1596974,fr,1,3.650000E+00,6.159480E+00,4.776406E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998792E+01,0.000000E+00 +1596991,fr,1,3.750000E+00,6.159480E+00,4.776406E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998911E+01,-9.000000E+01 +1596994,fr,1,3.750000E+00,6.159480E+00,4.776406E+01,1.500000E+01,Active Shallow Crust,1.288969E+02,8.996696E+01,0.000000E+00 +1596996,fr,1,3.850000E+00,6.159480E+00,4.776406E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +1597008,fr,1,3.950000E+00,6.159480E+00,4.776406E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999145E+01,0.000000E+00 +1597021,fr,1,4.050000E+00,6.159480E+00,4.776406E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +1597440,fr,1,3.550000E+00,2.379910E+00,4.117307E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +1597446,fr,1,3.550000E+00,2.379910E+00,4.117307E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998848E+01,-9.000000E+01 +1597453,fr,1,3.650000E+00,2.379910E+00,4.117307E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1597454,fr,1,3.650000E+00,2.379910E+00,4.117307E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1597462,fr,1,3.650000E+00,2.379910E+00,4.117307E+01,1.500000E+01,Active Shallow Crust,1.289004E+02,8.996342E+01,0.000000E+00 +1597464,fr,1,3.750000E+00,2.379910E+00,4.117307E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999096E+01,0.000000E+00 +1597465,fr,1,3.750000E+00,2.379910E+00,4.117307E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999096E+01,0.000000E+00 +1597470,fr,1,3.750000E+00,2.379910E+00,4.117307E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999085E+01,-9.000000E+01 +1597476,fr,1,3.850000E+00,2.379910E+00,4.117307E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +1597485,fr,1,3.850000E+00,2.379910E+00,4.117307E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999329E+01,0.000000E+00 +1597486,fr,1,3.850000E+00,2.379910E+00,4.117307E+01,1.500000E+01,Active Shallow Crust,1.288959E+02,8.999329E+01,0.000000E+00 +1597488,fr,2,3.950000E+00,2.379910E+00,4.117307E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1597491,fr,1,3.950000E+00,2.379910E+00,4.117307E+01,5.000000E+00,Active Shallow Crust,2.400185E+02,5.800492E+01,0.000000E+00 +1597501,fr,1,4.050000E+00,2.379910E+00,4.117307E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1597505,fr,1,4.050000E+00,2.379910E+00,4.117307E+01,2.750000E+01,Active Shallow Crust,2.400053E+02,5.800526E+01,0.000000E+00 +1597544,fr,1,4.350000E+00,2.379910E+00,4.117307E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998930E+01,-9.000000E+01 +1597670,fr,1,5.450000E+00,2.379910E+00,4.117307E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1597920,fr,2,3.550000E+00,6.895740E+00,4.887027E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998673E+01,0.000000E+00 +1597932,fr,1,3.650000E+00,6.895740E+00,4.887027E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998817E+01,0.000000E+00 +1597945,fr,1,3.750000E+00,6.895740E+00,4.887027E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1597968,fr,1,3.950000E+00,6.895740E+00,4.887027E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999163E+01,0.000000E+00 +1597980,fr,1,4.050000E+00,6.895740E+00,4.887027E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998881E+01,0.000000E+00 +1597989,fr,1,4.050000E+00,6.895740E+00,4.887027E+01,5.000000E+00,Active Shallow Crust,1.288908E+02,8.999254E+01,0.000000E+00 +1598005,fr,1,4.250000E+00,6.895740E+00,4.887027E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999111E+01,0.000000E+00 +1598880,fr,1,3.550000E+00,1.524630E+00,4.090048E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +1598881,fr,1,3.550000E+00,1.524630E+00,4.090048E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +1598883,fr,2,3.550000E+00,1.524630E+00,4.090048E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799819E+01,0.000000E+00 +1598893,fr,1,3.650000E+00,1.524630E+00,4.090048E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1598904,fr,2,3.750000E+00,1.524630E+00,4.090048E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +1598916,fr,2,3.850000E+00,1.524630E+00,4.090048E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +1598952,fr,2,4.150000E+00,1.524630E+00,4.090048E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +1598965,fr,1,4.250000E+00,1.524630E+00,4.090048E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1598991,fr,1,4.450000E+00,1.524630E+00,4.090048E+01,5.000000E+00,Active Shallow Crust,2.400040E+02,5.799437E+01,0.000000E+00 +1599360,fr,2,3.550000E+00,1.415440E+00,4.572390E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +1599363,fr,1,3.550000E+00,1.415440E+00,4.572390E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799809E+01,0.000000E+00 +1599386,fr,1,3.750000E+00,1.415440E+00,4.572390E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1599444,fr,1,4.250000E+00,1.415440E+00,4.572390E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1599445,fr,1,4.250000E+00,1.415440E+00,4.572390E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1599840,fr,1,3.550000E+00,-2.196700E-01,4.560128E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1599852,fr,1,3.650000E+00,-2.196700E-01,4.560128E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1599864,fr,1,3.750000E+00,-2.196700E-01,4.560128E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1599865,fr,1,3.750000E+00,-2.196700E-01,4.560128E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1599867,fr,1,3.750000E+00,-2.196700E-01,4.560128E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801756E+01,0.000000E+00 +1599868,fr,1,3.750000E+00,-2.196700E-01,4.560128E+01,1.500000E+01,Active Shallow Crust,2.400083E+02,5.801756E+01,0.000000E+00 +1599879,fr,1,3.850000E+00,-2.196700E-01,4.560128E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799777E+01,0.000000E+00 +1599888,fr,3,3.950000E+00,-2.196700E-01,4.560128E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1599901,fr,1,4.050000E+00,-2.196700E-01,4.560128E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1599909,fr,1,4.050000E+00,-2.196700E-01,4.560128E+01,5.000000E+00,Active Shallow Crust,1.288906E+02,8.999374E+01,0.000000E+00 +1599913,fr,1,4.150000E+00,-2.196700E-01,4.560128E+01,1.500000E+01,Active Shallow Crust,3.599999E+02,8.999005E+01,0.000000E+00 +1599936,fr,1,4.350000E+00,-2.196700E-01,4.560128E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1599948,fr,1,4.450000E+00,-2.196700E-01,4.560128E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1599958,fr,1,4.450000E+00,-2.196700E-01,4.560128E+01,1.500000E+01,Active Shallow Crust,1.288924E+02,8.999374E+01,0.000000E+00 +1599960,fr,1,4.550000E+00,-2.196700E-01,4.560128E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1599972,fr,1,4.650000E+00,-2.196700E-01,4.560128E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1599990,fr,1,4.750000E+00,-2.196700E-01,4.560128E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999003E+01,-9.000000E+01 +1600044,fr,1,5.250000E+00,-2.196700E-01,4.560128E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1600141,fr,1,6.050000E+00,-2.196700E-01,4.560128E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +1600322,fr,1,3.550000E+00,-2.242350E+00,4.223711E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998880E+01,0.000000E+00 +1600347,fr,1,3.750000E+00,-2.242350E+00,4.223711E+01,5.000000E+00,Active Shallow Crust,2.400075E+02,5.801786E+01,0.000000E+00 +1600369,fr,1,3.950000E+00,-2.242350E+00,4.223711E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +1600394,fr,1,4.150000E+00,-2.242350E+00,4.223711E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +1600404,fr,1,4.250000E+00,-2.242350E+00,4.223711E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1600428,fr,1,4.450000E+00,-2.242350E+00,4.223711E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +1600491,fr,1,4.950000E+00,-2.242350E+00,4.223711E+01,5.000000E+00,Active Shallow Crust,2.400102E+02,5.800413E+01,0.000000E+00 +1600800,fr,1,3.550000E+00,5.185210E+00,4.491409E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999286E+01,0.000000E+00 +1600801,fr,2,3.550000E+00,5.185210E+00,4.491409E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999286E+01,0.000000E+00 +1600812,fr,3,3.650000E+00,5.185210E+00,4.491409E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998727E+01,0.000000E+00 +1600813,fr,1,3.650000E+00,5.185210E+00,4.491409E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998727E+01,0.000000E+00 +1600815,fr,1,3.650000E+00,5.185210E+00,4.491409E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801358E+01,0.000000E+00 +1600824,fr,2,3.750000E+00,5.185210E+00,4.491409E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +1600831,fr,1,3.750000E+00,5.185210E+00,4.491409E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998853E+01,-9.000000E+01 +1600836,fr,2,3.850000E+00,5.185210E+00,4.491409E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1600837,fr,1,3.850000E+00,5.185210E+00,4.491409E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1600842,fr,1,3.850000E+00,5.185210E+00,4.491409E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,-9.000000E+01 +1600848,fr,4,3.950000E+00,5.185210E+00,4.491409E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999099E+01,0.000000E+00 +1600851,fr,1,3.950000E+00,5.185210E+00,4.491409E+01,5.000000E+00,Active Shallow Crust,2.400199E+02,5.800436E+01,0.000000E+00 +1600854,fr,1,3.950000E+00,5.185210E+00,4.491409E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,-9.000000E+01 +1600856,fr,1,3.950000E+00,5.185210E+00,4.491409E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,-9.000000E+01 +1600860,fr,1,4.050000E+00,5.185210E+00,4.491409E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999197E+01,0.000000E+00 +1600863,fr,1,4.050000E+00,5.185210E+00,4.491409E+01,5.000000E+00,Active Shallow Crust,2.400065E+02,5.800540E+01,0.000000E+00 +1600898,fr,1,4.350000E+00,5.185210E+00,4.491409E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +1600920,fr,3,4.550000E+00,5.185210E+00,4.491409E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +1600944,fr,2,4.750000E+00,5.185210E+00,4.491409E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +1600958,fr,1,4.850000E+00,5.185210E+00,4.491409E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +1601328,fr,1,3.950000E+00,-3.075980E+00,4.914644E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1601436,fr,1,4.850000E+00,-3.075980E+00,4.914644E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +1601443,fr,1,4.850000E+00,-3.075980E+00,4.914644E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999029E+01,-9.000000E+01 +1601760,fr,2,3.550000E+00,2.849920E+00,4.138075E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998865E+01,0.000000E+00 +1601761,fr,1,3.550000E+00,2.849920E+00,4.138075E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998865E+01,0.000000E+00 +1601762,fr,1,3.550000E+00,2.849920E+00,4.138075E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998865E+01,0.000000E+00 +1601763,fr,1,3.550000E+00,2.849920E+00,4.138075E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799784E+01,0.000000E+00 +1601766,fr,1,3.550000E+00,2.849920E+00,4.138075E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998852E+01,-9.000000E+01 +1601772,fr,1,3.650000E+00,2.849920E+00,4.138075E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1601775,fr,2,3.650000E+00,2.849920E+00,4.138075E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801276E+01,0.000000E+00 +1601778,fr,1,3.650000E+00,2.849920E+00,4.138075E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,-9.000000E+01 +1601784,fr,1,3.750000E+00,2.849920E+00,4.138075E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999098E+01,0.000000E+00 +1601793,fr,1,3.750000E+00,2.849920E+00,4.138075E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.996709E+01,0.000000E+00 +1601794,fr,1,3.750000E+00,2.849920E+00,4.138075E+01,1.500000E+01,Active Shallow Crust,1.288972E+02,8.996709E+01,0.000000E+00 +1601796,fr,3,3.850000E+00,2.849920E+00,4.138075E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +1601841,fr,1,4.150000E+00,2.849920E+00,4.138075E+01,5.000000E+00,Active Shallow Crust,1.288987E+02,8.999336E+01,0.000000E+00 +1601844,fr,1,4.250000E+00,2.849920E+00,4.138075E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1601845,fr,1,4.250000E+00,2.849920E+00,4.138075E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1601871,fr,1,4.450000E+00,2.849920E+00,4.138075E+01,5.000000E+00,Active Shallow Crust,2.400042E+02,5.799438E+01,0.000000E+00 +1601940,fr,1,5.050000E+00,2.849920E+00,4.138075E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1601958,fr,1,5.150000E+00,2.849920E+00,4.138075E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,-9.000000E+01 +1602076,fr,1,6.150000E+00,2.849920E+00,4.138075E+01,1.500000E+01,Active Shallow Crust,2.400528E+02,5.799992E+01,0.000000E+00 +1602242,fr,1,3.550000E+00,1.621270E+00,4.680560E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1602244,fr,1,3.550000E+00,1.621270E+00,4.680560E+01,1.500000E+01,Active Shallow Crust,2.400124E+02,5.799803E+01,0.000000E+00 +1602253,fr,1,3.650000E+00,1.621270E+00,4.680560E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +1602256,fr,1,3.650000E+00,1.621270E+00,4.680560E+01,1.500000E+01,Active Shallow Crust,2.400010E+02,5.801306E+01,0.000000E+00 +1602264,fr,1,3.750000E+00,1.621270E+00,4.680560E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +1602276,fr,1,3.850000E+00,1.621270E+00,4.680560E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1602288,fr,2,3.950000E+00,1.621270E+00,4.680560E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1602369,fr,1,4.550000E+00,1.621270E+00,4.680560E+01,5.000000E+00,Active Shallow Crust,1.288939E+02,8.998579E+01,0.000000E+00 +1602720,fr,1,3.550000E+00,5.649680E+00,5.009079E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998706E+01,0.000000E+00 +1602729,fr,1,3.550000E+00,5.649680E+00,5.009079E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999353E+01,0.000000E+00 +1602744,fr,1,3.750000E+00,5.649680E+00,5.009079E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1602780,fr,1,4.050000E+00,5.649680E+00,5.009079E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998908E+01,0.000000E+00 +1602796,fr,1,4.150000E+00,5.649680E+00,5.009079E+01,1.500000E+01,Active Shallow Crust,2.400087E+02,5.799768E+01,0.000000E+00 +1602798,fr,1,4.150000E+00,5.649680E+00,5.009079E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,-9.000000E+01 +1602960,fr,1,5.550000E+00,5.649680E+00,5.009079E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +1603200,fr,2,3.550000E+00,-2.270460E+00,4.827117E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1603201,fr,1,3.550000E+00,-2.270460E+00,4.827117E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1603208,fr,1,3.550000E+00,-2.270460E+00,4.827117E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,-9.000000E+01 +1603209,fr,1,3.550000E+00,-2.270460E+00,4.827117E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999329E+01,0.000000E+00 +1603212,fr,1,3.650000E+00,-2.270460E+00,4.827117E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999103E+01,0.000000E+00 +1603213,fr,1,3.650000E+00,-2.270460E+00,4.827117E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999103E+01,0.000000E+00 +1603224,fr,1,3.750000E+00,-2.270460E+00,4.827117E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1603225,fr,1,3.750000E+00,-2.270460E+00,4.827117E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1603228,fr,1,3.750000E+00,-2.270460E+00,4.827117E+01,1.500000E+01,Active Shallow Crust,2.400087E+02,5.801738E+01,0.000000E+00 +1603236,fr,1,3.850000E+00,-2.270460E+00,4.827117E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1603260,fr,1,4.050000E+00,-2.270460E+00,4.827117E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +1603284,fr,2,4.250000E+00,-2.270460E+00,4.827117E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1603296,fr,1,4.350000E+00,-2.270460E+00,4.827117E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +1603302,fr,1,4.350000E+00,-2.270460E+00,4.827117E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,-9.000000E+01 +1603320,fr,1,4.550000E+00,-2.270460E+00,4.827117E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +1603335,fr,1,4.650000E+00,-2.270460E+00,4.827117E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799442E+01,0.000000E+00 +1603681,fr,1,3.550000E+00,4.187990E+00,4.749740E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999319E+01,0.000000E+00 +1603689,fr,1,3.550000E+00,4.187990E+00,4.749740E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.999660E+01,0.000000E+00 +1603693,fr,2,3.650000E+00,4.187990E+00,4.749740E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998785E+01,0.000000E+00 +1603704,fr,1,3.750000E+00,4.187990E+00,4.749740E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +1603717,fr,1,3.850000E+00,4.187990E+00,4.749740E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1603749,fr,1,4.050000E+00,4.187990E+00,4.749740E+01,5.000000E+00,Active Shallow Crust,1.288910E+02,8.999234E+01,0.000000E+00 +1603779,fr,1,4.350000E+00,4.187990E+00,4.749740E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799566E+01,0.000000E+00 +1603866,fr,1,5.050000E+00,4.187990E+00,4.749740E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,-9.000000E+01 +1604160,fr,1,3.550000E+00,4.170800E-01,4.753073E+01,5.000000E+00,Active Shallow Crust,3.599998E+02,8.999021E+01,0.000000E+00 +1604172,fr,2,3.650000E+00,4.170800E-01,4.753073E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1604248,fr,1,4.250000E+00,4.170800E-01,4.753073E+01,1.500000E+01,Active Shallow Crust,2.400078E+02,5.799409E+01,0.000000E+00 +1604292,fr,1,4.650000E+00,4.170800E-01,4.753073E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1604640,fr,1,3.550000E+00,-3.710170E+00,4.705017E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1604664,fr,1,3.750000E+00,-3.710170E+00,4.705017E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998908E+01,0.000000E+00 +1605156,fr,1,3.850000E+00,8.892200E-01,4.474344E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1605159,fr,1,3.850000E+00,8.892200E-01,4.474344E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799780E+01,0.000000E+00 +1605168,fr,1,3.950000E+00,8.892200E-01,4.474344E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1605202,fr,1,4.150000E+00,8.892200E-01,4.474344E+01,1.500000E+01,Active Shallow Crust,1.288978E+02,8.999372E+01,0.000000E+00 +1605351,fr,1,5.450000E+00,8.892200E-01,4.474344E+01,5.000000E+00,Active Shallow Crust,2.400274E+02,5.799825E+01,0.000000E+00 +1605600,fr,3,3.550000E+00,-1.353000E+00,4.726707E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +1605612,fr,2,3.650000E+00,-1.353000E+00,4.726707E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1605613,fr,2,3.650000E+00,-1.353000E+00,4.726707E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1605614,fr,1,3.650000E+00,-1.353000E+00,4.726707E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1605618,fr,1,3.650000E+00,-1.353000E+00,4.726707E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,-9.000000E+01 +1605623,fr,1,3.650000E+00,-1.353000E+00,4.726707E+01,2.750000E+01,Active Shallow Crust,1.289003E+02,8.996340E+01,0.000000E+00 +1605624,fr,2,3.750000E+00,-1.353000E+00,4.726707E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1605625,fr,2,3.750000E+00,-1.353000E+00,4.726707E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1605635,fr,1,3.750000E+00,-1.353000E+00,4.726707E+01,2.750000E+01,Active Shallow Crust,1.288967E+02,8.996738E+01,0.000000E+00 +1605636,fr,1,3.850000E+00,-1.353000E+00,4.726707E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +1605637,fr,1,3.850000E+00,-1.353000E+00,4.726707E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +1605699,fr,2,4.350000E+00,-1.353000E+00,4.726707E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.799592E+01,0.000000E+00 +1605721,fr,1,4.550000E+00,-1.353000E+00,4.726707E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1605732,fr,1,4.650000E+00,-1.353000E+00,4.726707E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1605792,fr,1,5.150000E+00,-1.353000E+00,4.726707E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1606104,fr,1,3.750000E+00,1.282630E+00,4.798133E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1606109,fr,1,3.750000E+00,1.282630E+00,4.798133E+01,2.750000E+01,Active Shallow Crust,2.400083E+02,5.801761E+01,0.000000E+00 +1606116,fr,1,3.850000E+00,1.282630E+00,4.798133E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +1606144,fr,1,4.050000E+00,1.282630E+00,4.798133E+01,1.500000E+01,Active Shallow Crust,2.400061E+02,5.800596E+01,0.000000E+00 +1606560,fr,1,3.550000E+00,-1.835590E+00,4.830643E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1606561,fr,1,3.550000E+00,-1.835590E+00,4.830643E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1606572,fr,1,3.650000E+00,-1.835590E+00,4.830643E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +1606574,fr,2,3.650000E+00,-1.835590E+00,4.830643E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +1606576,fr,1,3.650000E+00,-1.835590E+00,4.830643E+01,1.500000E+01,Active Shallow Crust,2.400015E+02,5.801266E+01,0.000000E+00 +1606586,fr,1,3.750000E+00,-1.835590E+00,4.830643E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +1606593,fr,1,3.750000E+00,-1.835590E+00,4.830643E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996741E+01,0.000000E+00 +1606596,fr,1,3.850000E+00,-1.835590E+00,4.830643E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +1606601,fr,1,3.850000E+00,-1.835590E+00,4.830643E+01,2.750000E+01,Active Shallow Crust,2.400110E+02,5.799788E+01,0.000000E+00 +1606605,fr,1,3.850000E+00,-1.835590E+00,4.830643E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.999406E+01,0.000000E+00 +1606608,fr,1,3.950000E+00,-1.835590E+00,4.830643E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +1606629,fr,1,4.050000E+00,-1.835590E+00,4.830643E+01,5.000000E+00,Active Shallow Crust,1.288902E+02,8.999387E+01,0.000000E+00 +1606644,fr,2,4.250000E+00,-1.835590E+00,4.830643E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1606645,fr,1,4.250000E+00,-1.835590E+00,4.830643E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1606656,fr,2,4.350000E+00,-1.835590E+00,4.830643E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1606683,fr,1,4.550000E+00,-1.835590E+00,4.830643E+01,5.000000E+00,Active Shallow Crust,2.400099E+02,5.799752E+01,0.000000E+00 +1606767,fr,1,5.250000E+00,-1.835590E+00,4.830643E+01,5.000000E+00,Active Shallow Crust,2.400267E+02,5.800053E+01,0.000000E+00 +1607040,fr,1,3.550000E+00,5.016040E+00,4.528494E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999290E+01,0.000000E+00 +1607043,fr,1,3.550000E+00,5.016040E+00,4.528494E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799734E+01,0.000000E+00 +1607052,fr,2,3.650000E+00,5.016040E+00,4.528494E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998735E+01,0.000000E+00 +1607053,fr,1,3.650000E+00,5.016040E+00,4.528494E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998735E+01,0.000000E+00 +1607064,fr,1,3.750000E+00,5.016040E+00,4.528494E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998873E+01,0.000000E+00 +1607089,fr,3,3.950000E+00,5.016040E+00,4.528494E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +1607112,fr,2,4.150000E+00,5.016040E+00,4.528494E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1607124,fr,1,4.250000E+00,5.016040E+00,4.528494E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1607130,fr,1,4.250000E+00,5.016040E+00,4.528494E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,-9.000000E+01 +1607160,fr,1,4.550000E+00,5.016040E+00,4.528494E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999103E+01,0.000000E+00 +1607173,fr,1,4.650000E+00,5.016040E+00,4.528494E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1607175,fr,1,4.650000E+00,5.016040E+00,4.528494E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799385E+01,0.000000E+00 +1607520,fr,7,3.550000E+00,6.537950E+00,4.678289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999310E+01,0.000000E+00 +1607521,fr,1,3.550000E+00,6.537950E+00,4.678289E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999310E+01,0.000000E+00 +1607522,fr,1,3.550000E+00,6.537950E+00,4.678289E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999310E+01,0.000000E+00 +1607529,fr,1,3.550000E+00,6.537950E+00,4.678289E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999310E+01,0.000000E+00 +1607532,fr,5,3.650000E+00,6.537950E+00,4.678289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998769E+01,0.000000E+00 +1607533,fr,2,3.650000E+00,6.537950E+00,4.678289E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998769E+01,0.000000E+00 +1607534,fr,1,3.650000E+00,6.537950E+00,4.678289E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998769E+01,0.000000E+00 +1607535,fr,3,3.650000E+00,6.537950E+00,4.678289E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801361E+01,0.000000E+00 +1607536,fr,1,3.650000E+00,6.537950E+00,4.678289E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801361E+01,0.000000E+00 +1607537,fr,1,3.650000E+00,6.537950E+00,4.678289E+01,2.750000E+01,Active Shallow Crust,2.400011E+02,5.801352E+01,0.000000E+00 +1607541,fr,2,3.650000E+00,6.537950E+00,4.678289E+01,5.000000E+00,Active Shallow Crust,1.288998E+02,8.996353E+01,0.000000E+00 +1607544,fr,1,3.750000E+00,6.537950E+00,4.678289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998903E+01,0.000000E+00 +1607545,fr,1,3.750000E+00,6.537950E+00,4.678289E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998903E+01,0.000000E+00 +1607546,fr,3,3.750000E+00,6.537950E+00,4.678289E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998903E+01,0.000000E+00 +1607547,fr,2,3.750000E+00,6.537950E+00,4.678289E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.801698E+01,0.000000E+00 +1607549,fr,1,3.750000E+00,6.537950E+00,4.678289E+01,2.750000E+01,Active Shallow Crust,2.400089E+02,5.801698E+01,0.000000E+00 +1607550,fr,1,3.750000E+00,6.537950E+00,4.678289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998890E+01,-9.000000E+01 +1607553,fr,2,3.750000E+00,6.537950E+00,4.678289E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996750E+01,0.000000E+00 +1607554,fr,1,3.750000E+00,6.537950E+00,4.678289E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.996750E+01,0.000000E+00 +1607556,fr,2,3.850000E+00,6.537950E+00,4.678289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1607557,fr,2,3.850000E+00,6.537950E+00,4.678289E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1607558,fr,2,3.850000E+00,6.537950E+00,4.678289E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1607560,fr,2,3.850000E+00,6.537950E+00,4.678289E+01,1.500000E+01,Active Shallow Crust,2.400117E+02,5.799767E+01,0.000000E+00 +1607568,fr,5,3.950000E+00,6.537950E+00,4.678289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +1607569,fr,1,3.950000E+00,6.537950E+00,4.678289E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +1607570,fr,1,3.950000E+00,6.537950E+00,4.678289E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +1607572,fr,1,3.950000E+00,6.537950E+00,4.678289E+01,1.500000E+01,Active Shallow Crust,2.400194E+02,5.800466E+01,0.000000E+00 +1607574,fr,1,3.950000E+00,6.537950E+00,4.678289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999119E+01,-9.000000E+01 +1607577,fr,1,3.950000E+00,6.537950E+00,4.678289E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.999346E+01,0.000000E+00 +1607580,fr,4,4.050000E+00,6.537950E+00,4.678289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998835E+01,0.000000E+00 +1607583,fr,1,4.050000E+00,6.537950E+00,4.678289E+01,5.000000E+00,Active Shallow Crust,2.400063E+02,5.800574E+01,0.000000E+00 +1607584,fr,1,4.050000E+00,6.537950E+00,4.678289E+01,1.500000E+01,Active Shallow Crust,2.400063E+02,5.800571E+01,0.000000E+00 +1607586,fr,1,4.050000E+00,6.537950E+00,4.678289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998821E+01,-9.000000E+01 +1607592,fr,1,4.150000E+00,6.537950E+00,4.678289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +1607599,fr,1,4.150000E+00,6.537950E+00,4.678289E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,-9.000000E+01 +1607604,fr,1,4.250000E+00,6.537950E+00,4.678289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +1607608,fr,1,4.250000E+00,6.537950E+00,4.678289E+01,1.500000E+01,Active Shallow Crust,2.400076E+02,5.799419E+01,0.000000E+00 +1607613,fr,2,4.250000E+00,6.537950E+00,4.678289E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.998096E+01,0.000000E+00 +1607628,fr,2,4.450000E+00,6.537950E+00,4.678289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1607637,fr,1,4.450000E+00,6.537950E+00,4.678289E+01,5.000000E+00,Active Shallow Crust,1.288917E+02,8.999387E+01,0.000000E+00 +1607640,fr,3,4.550000E+00,6.537950E+00,4.678289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998908E+01,0.000000E+00 +1607664,fr,1,4.750000E+00,6.537950E+00,4.678289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1607693,fr,1,4.950000E+00,6.537950E+00,4.678289E+01,2.750000E+01,Active Shallow Crust,2.400117E+02,5.800450E+01,0.000000E+00 +1607701,fr,1,5.050000E+00,6.537950E+00,4.678289E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1607724,fr,1,5.250000E+00,6.537950E+00,4.678289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +1607781,fr,1,5.650000E+00,6.537950E+00,4.678289E+01,5.000000E+00,Active Shallow Crust,1.288749E+02,8.999054E+01,0.000000E+00 +1607784,fr,1,5.750000E+00,6.537950E+00,4.678289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1607818,fr,1,5.950000E+00,6.537950E+00,4.678289E+01,1.500000E+01,Active Shallow Crust,1.288644E+02,8.999009E+01,0.000000E+00 +1608000,fr,1,3.550000E+00,-5.095200E-01,4.920163E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1608003,fr,1,3.550000E+00,-5.095200E-01,4.920163E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799818E+01,0.000000E+00 +1608004,fr,1,3.550000E+00,-5.095200E-01,4.920163E+01,1.500000E+01,Active Shallow Crust,2.400125E+02,5.799818E+01,0.000000E+00 +1608014,fr,2,3.650000E+00,-5.095200E-01,4.920163E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1608019,fr,1,3.650000E+00,-5.095200E-01,4.920163E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999035E+01,-9.000000E+01 +1608021,fr,1,3.650000E+00,-5.095200E-01,4.920163E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.996352E+01,0.000000E+00 +1608024,fr,2,3.750000E+00,-5.095200E-01,4.920163E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1608034,fr,1,3.750000E+00,-5.095200E-01,4.920163E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.996736E+01,0.000000E+00 +1608036,fr,1,3.850000E+00,-5.095200E-01,4.920163E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1608039,fr,1,3.850000E+00,-5.095200E-01,4.920163E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799784E+01,0.000000E+00 +1608042,fr,1,3.850000E+00,-5.095200E-01,4.920163E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1608048,fr,1,3.950000E+00,-5.095200E-01,4.920163E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1608049,fr,1,3.950000E+00,-5.095200E-01,4.920163E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1608061,fr,2,4.050000E+00,-5.095200E-01,4.920163E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1608073,fr,1,4.150000E+00,-5.095200E-01,4.920163E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1608085,fr,1,4.250000E+00,-5.095200E-01,4.920163E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1608099,fr,1,4.350000E+00,-5.095200E-01,4.920163E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.799604E+01,0.000000E+00 +1608228,fr,1,5.450000E+00,-5.095200E-01,4.920163E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1608492,fr,1,3.650000E+00,3.109620E+00,4.222676E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1608494,fr,1,3.650000E+00,3.109620E+00,4.222676E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1608510,fr,1,3.750000E+00,3.109620E+00,4.222676E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,-9.000000E+01 +1608516,fr,1,3.850000E+00,3.109620E+00,4.222676E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1608522,fr,1,3.850000E+00,3.109620E+00,4.222676E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,-9.000000E+01 +1608536,fr,1,3.950000E+00,3.109620E+00,4.222676E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999047E+01,-9.000000E+01 +1608564,fr,1,4.250000E+00,3.109620E+00,4.222676E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1608566,fr,1,4.250000E+00,3.109620E+00,4.222676E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1608588,fr,1,4.450000E+00,3.109620E+00,4.222676E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +1608600,fr,1,4.550000E+00,3.109620E+00,4.222676E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +1608960,fr,2,3.550000E+00,-9.165100E-01,4.770527E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1608961,fr,2,3.550000E+00,-9.165100E-01,4.770527E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1608969,fr,1,3.550000E+00,-9.165100E-01,4.770527E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999406E+01,0.000000E+00 +1608971,fr,1,3.550000E+00,-9.165100E-01,4.770527E+01,2.750000E+01,Active Shallow Crust,1.288961E+02,8.999406E+01,0.000000E+00 +1608975,fr,1,3.650000E+00,-9.165100E-01,4.770527E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801300E+01,0.000000E+00 +1608984,fr,2,3.750000E+00,-9.165100E-01,4.770527E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1608987,fr,2,3.750000E+00,-9.165100E-01,4.770527E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.801755E+01,0.000000E+00 +1609003,fr,1,3.850000E+00,-9.165100E-01,4.770527E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,-9.000000E+01 +1609032,fr,1,4.150000E+00,-9.165100E-01,4.770527E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1609046,fr,1,4.250000E+00,-9.165100E-01,4.770527E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1609080,fr,1,4.550000E+00,-9.165100E-01,4.770527E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1609095,fr,1,4.650000E+00,-9.165100E-01,4.770527E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799430E+01,0.000000E+00 +1609441,fr,1,3.550000E+00,5.245710E+00,5.163230E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998748E+01,0.000000E+00 +1609449,fr,1,3.550000E+00,5.245710E+00,5.163230E+01,5.000000E+00,Active Shallow Crust,1.288951E+02,8.999374E+01,0.000000E+00 +1609476,fr,1,3.850000E+00,5.245710E+00,5.163230E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999113E+01,0.000000E+00 +1609488,fr,1,3.950000E+00,5.245710E+00,5.163230E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998815E+01,0.000000E+00 +1609519,fr,1,4.150000E+00,5.245710E+00,5.163230E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999048E+01,-9.000000E+01 +1609555,fr,1,4.450000E+00,5.245710E+00,5.163230E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999101E+01,-9.000000E+01 +1609920,fr,1,3.550000E+00,9.012400E+00,4.859576E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998666E+01,0.000000E+00 +1609921,fr,1,3.550000E+00,9.012400E+00,4.859576E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998666E+01,0.000000E+00 +1609923,fr,1,3.550000E+00,9.012400E+00,4.859576E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799903E+01,0.000000E+00 +1609924,fr,1,3.550000E+00,9.012400E+00,4.859576E+01,1.500000E+01,Active Shallow Crust,2.400111E+02,5.799903E+01,0.000000E+00 +1609926,fr,2,3.550000E+00,9.012400E+00,4.859576E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998650E+01,-9.000000E+01 +1609932,fr,3,3.650000E+00,9.012400E+00,4.859576E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998811E+01,0.000000E+00 +1609941,fr,2,3.650000E+00,9.012400E+00,4.859576E+01,5.000000E+00,Active Shallow Crust,1.289009E+02,8.996356E+01,0.000000E+00 +1609945,fr,1,3.750000E+00,9.012400E+00,4.859576E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +1609956,fr,1,3.850000E+00,9.012400E+00,4.859576E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +1609957,fr,1,3.850000E+00,9.012400E+00,4.859576E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +1609981,fr,1,4.050000E+00,9.012400E+00,4.859576E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999250E+01,0.000000E+00 +1609992,fr,1,4.150000E+00,9.012400E+00,4.859576E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999332E+01,0.000000E+00 +1610004,fr,1,4.250000E+00,9.012400E+00,4.859576E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +1610005,fr,1,4.250000E+00,9.012400E+00,4.859576E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +1610017,fr,1,4.350000E+00,9.012400E+00,4.859576E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +1610028,fr,1,4.450000E+00,9.012400E+00,4.859576E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +1610041,fr,1,4.550000E+00,9.012400E+00,4.859576E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999156E+01,0.000000E+00 +1610052,fr,1,4.650000E+00,9.012400E+00,4.859576E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +1610064,fr,1,4.750000E+00,9.012400E+00,4.859576E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1610086,fr,1,4.850000E+00,9.012400E+00,4.859576E+01,1.500000E+01,Active Shallow Crust,1.288916E+02,8.998917E+01,0.000000E+00 +1610151,fr,1,5.450000E+00,9.012400E+00,4.859576E+01,5.000000E+00,Active Shallow Crust,2.400307E+02,5.799878E+01,0.000000E+00 +1610172,fr,1,5.650000E+00,9.012400E+00,4.859576E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1610448,fr,1,3.950000E+00,-7.085230E+00,4.734936E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999138E+01,0.000000E+00 +1610880,fr,1,3.550000E+00,2.213570E+00,4.262161E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998887E+01,0.000000E+00 +1610883,fr,1,3.550000E+00,2.213570E+00,4.262161E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799789E+01,0.000000E+00 +1610884,fr,1,3.550000E+00,2.213570E+00,4.262161E+01,1.500000E+01,Active Shallow Crust,2.400114E+02,5.799789E+01,0.000000E+00 +1610890,fr,1,3.550000E+00,2.213570E+00,4.262161E+01,1.500000E+01,Active Shallow Crust,1.288958E+02,8.999444E+01,0.000000E+00 +1610891,fr,1,3.550000E+00,2.213570E+00,4.262161E+01,2.750000E+01,Active Shallow Crust,1.288958E+02,8.999444E+01,0.000000E+00 +1610892,fr,2,3.650000E+00,2.213570E+00,4.262161E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1610894,fr,2,3.650000E+00,2.213570E+00,4.262161E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1610898,fr,1,3.650000E+00,2.213570E+00,4.262161E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1610904,fr,2,3.750000E+00,2.213570E+00,4.262161E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999116E+01,0.000000E+00 +1610906,fr,1,3.750000E+00,2.213570E+00,4.262161E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999116E+01,0.000000E+00 +1610922,fr,1,3.850000E+00,2.213570E+00,4.262161E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998937E+01,-9.000000E+01 +1610928,fr,3,3.950000E+00,2.213570E+00,4.262161E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +1610930,fr,1,3.950000E+00,2.213570E+00,4.262161E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +1610940,fr,1,4.050000E+00,2.213570E+00,4.262161E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +1610943,fr,1,4.050000E+00,2.213570E+00,4.262161E+01,5.000000E+00,Active Shallow Crust,2.400051E+02,5.800593E+01,0.000000E+00 +1610955,fr,1,4.150000E+00,2.213570E+00,4.262161E+01,5.000000E+00,Active Shallow Crust,2.400075E+02,5.799718E+01,0.000000E+00 +1610957,fr,1,4.150000E+00,2.213570E+00,4.262161E+01,2.750000E+01,Active Shallow Crust,2.400075E+02,5.799716E+01,0.000000E+00 +1611003,fr,1,4.550000E+00,2.213570E+00,4.262161E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799712E+01,0.000000E+00 +1611026,fr,1,4.750000E+00,2.213570E+00,4.262161E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1611378,fr,1,3.650000E+00,1.010690E+00,5.278608E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,-9.000000E+01 +1611389,fr,1,3.750000E+00,1.010690E+00,5.278608E+01,2.750000E+01,Active Shallow Crust,2.400091E+02,5.801783E+01,0.000000E+00 +1611396,fr,1,3.850000E+00,1.010690E+00,5.278608E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +1611420,fr,1,4.050000E+00,1.010690E+00,5.278608E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +1611867,fr,1,3.750000E+00,1.317080E+00,4.410163E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801753E+01,0.000000E+00 +1611876,fr,1,3.850000E+00,1.317080E+00,4.410163E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1611888,fr,1,3.950000E+00,1.317080E+00,4.410163E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1611912,fr,1,4.150000E+00,1.317080E+00,4.410163E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1611927,fr,1,4.250000E+00,1.317080E+00,4.410163E+01,5.000000E+00,Active Shallow Crust,2.400071E+02,5.799398E+01,0.000000E+00 +1611941,fr,1,4.350000E+00,1.317080E+00,4.410163E+01,2.750000E+01,Active Shallow Crust,2.400080E+02,5.799578E+01,0.000000E+00 +1611985,fr,1,4.750000E+00,1.317080E+00,4.410163E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1612321,fr,1,3.550000E+00,8.481900E-01,4.648953E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1612323,fr,1,3.550000E+00,8.481900E-01,4.648953E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799802E+01,0.000000E+00 +1612327,fr,2,3.550000E+00,8.481900E-01,4.648953E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999034E+01,-9.000000E+01 +1612329,fr,1,3.550000E+00,8.481900E-01,4.648953E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999393E+01,0.000000E+00 +1612345,fr,1,3.750000E+00,8.481900E-01,4.648953E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +1612356,fr,1,3.850000E+00,8.481900E-01,4.648953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1612357,fr,1,3.850000E+00,8.481900E-01,4.648953E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1612370,fr,1,3.950000E+00,8.481900E-01,4.648953E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1612383,fr,1,4.050000E+00,8.481900E-01,4.648953E+01,5.000000E+00,Active Shallow Crust,2.400060E+02,5.800582E+01,0.000000E+00 +1612392,fr,1,4.150000E+00,8.481900E-01,4.648953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1612398,fr,1,4.150000E+00,8.481900E-01,4.648953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +1612407,fr,1,4.250000E+00,8.481900E-01,4.648953E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799404E+01,0.000000E+00 +1612452,fr,1,4.650000E+00,8.481900E-01,4.648953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1612488,fr,1,4.950000E+00,8.481900E-01,4.648953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1612827,fr,1,3.750000E+00,3.077850E+00,4.859902E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801780E+01,0.000000E+00 +1612908,fr,1,4.450000E+00,3.077850E+00,4.859902E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +1613280,fr,2,3.550000E+00,1.285410E+00,4.691858E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +1613281,fr,1,3.550000E+00,1.285410E+00,4.691858E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +1613284,fr,1,3.550000E+00,1.285410E+00,4.691858E+01,1.500000E+01,Active Shallow Crust,2.400123E+02,5.799805E+01,0.000000E+00 +1613286,fr,1,3.550000E+00,1.285410E+00,4.691858E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,-9.000000E+01 +1613290,fr,1,3.550000E+00,1.285410E+00,4.691858E+01,1.500000E+01,Active Shallow Crust,1.288960E+02,8.999397E+01,0.000000E+00 +1613292,fr,1,3.650000E+00,1.285410E+00,4.691858E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +1613294,fr,1,3.650000E+00,1.285410E+00,4.691858E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +1613304,fr,1,3.750000E+00,1.285410E+00,4.691858E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1613316,fr,1,3.850000E+00,1.285410E+00,4.691858E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1613329,fr,1,3.950000E+00,1.285410E+00,4.691858E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1613337,fr,1,3.950000E+00,1.285410E+00,4.691858E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.999348E+01,0.000000E+00 +1613353,fr,3,4.150000E+00,1.285410E+00,4.691858E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1613424,fr,1,4.750000E+00,1.285410E+00,4.691858E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1613443,fr,1,4.850000E+00,1.285410E+00,4.691858E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,-9.000000E+01 +1613760,fr,3,3.550000E+00,-4.570900E-01,4.666355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1613761,fr,1,3.550000E+00,-4.570900E-01,4.666355E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1613764,fr,1,3.550000E+00,-4.570900E-01,4.666355E+01,1.500000E+01,Active Shallow Crust,2.400122E+02,5.799820E+01,0.000000E+00 +1613765,fr,1,3.550000E+00,-4.570900E-01,4.666355E+01,2.750000E+01,Active Shallow Crust,2.400122E+02,5.799810E+01,0.000000E+00 +1613772,fr,4,3.650000E+00,-4.570900E-01,4.666355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1613775,fr,1,3.650000E+00,-4.570900E-01,4.666355E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801292E+01,0.000000E+00 +1613787,fr,1,3.750000E+00,-4.570900E-01,4.666355E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801758E+01,0.000000E+00 +1613791,fr,1,3.750000E+00,-4.570900E-01,4.666355E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,-9.000000E+01 +1613796,fr,1,3.850000E+00,-4.570900E-01,4.666355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1613803,fr,1,3.850000E+00,-4.570900E-01,4.666355E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +1613809,fr,1,3.950000E+00,-4.570900E-01,4.666355E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1613814,fr,1,3.950000E+00,-4.570900E-01,4.666355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +1613823,fr,1,4.050000E+00,-4.570900E-01,4.666355E+01,5.000000E+00,Active Shallow Crust,2.400060E+02,5.800582E+01,0.000000E+00 +1613844,fr,1,4.250000E+00,-4.570900E-01,4.666355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1613857,fr,1,4.350000E+00,-4.570900E-01,4.666355E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1613883,fr,1,4.550000E+00,-4.570900E-01,4.666355E+01,5.000000E+00,Active Shallow Crust,2.400093E+02,5.799739E+01,0.000000E+00 +1613905,fr,1,4.750000E+00,-4.570900E-01,4.666355E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1613988,fr,1,5.450000E+00,-4.570900E-01,4.666355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1614307,fr,1,4.050000E+00,3.659990E+00,4.792918E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,-9.000000E+01 +1614720,fr,3,3.550000E+00,6.251740E+00,5.066201E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998721E+01,0.000000E+00 +1614721,fr,2,3.550000E+00,6.251740E+00,5.066201E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998721E+01,0.000000E+00 +1614722,fr,1,3.550000E+00,6.251740E+00,5.066201E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998721E+01,0.000000E+00 +1614723,fr,1,3.550000E+00,6.251740E+00,5.066201E+01,5.000000E+00,Active Shallow Crust,2.400131E+02,5.799809E+01,0.000000E+00 +1614724,fr,1,3.550000E+00,6.251740E+00,5.066201E+01,1.500000E+01,Active Shallow Crust,2.400131E+02,5.799809E+01,0.000000E+00 +1614727,fr,1,3.550000E+00,6.251740E+00,5.066201E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998707E+01,-9.000000E+01 +1614730,fr,2,3.550000E+00,6.251740E+00,5.066201E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.999361E+01,0.000000E+00 +1614732,fr,3,3.650000E+00,6.251740E+00,5.066201E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998861E+01,0.000000E+00 +1614733,fr,2,3.650000E+00,6.251740E+00,5.066201E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998861E+01,0.000000E+00 +1614735,fr,2,3.650000E+00,6.251740E+00,5.066201E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801349E+01,0.000000E+00 +1614744,fr,1,3.750000E+00,6.251740E+00,5.066201E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1614745,fr,3,3.750000E+00,6.251740E+00,5.066201E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1614747,fr,2,3.750000E+00,6.251740E+00,5.066201E+01,5.000000E+00,Active Shallow Crust,2.400094E+02,5.801730E+01,0.000000E+00 +1614748,fr,1,3.750000E+00,6.251740E+00,5.066201E+01,1.500000E+01,Active Shallow Crust,2.400094E+02,5.801730E+01,0.000000E+00 +1614756,fr,2,3.850000E+00,6.251740E+00,5.066201E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999095E+01,0.000000E+00 +1614757,fr,1,3.850000E+00,6.251740E+00,5.066201E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999095E+01,0.000000E+00 +1614760,fr,1,3.850000E+00,6.251740E+00,5.066201E+01,1.500000E+01,Active Shallow Crust,2.400109E+02,5.799813E+01,0.000000E+00 +1614761,fr,1,3.850000E+00,6.251740E+00,5.066201E+01,2.750000E+01,Active Shallow Crust,2.400109E+02,5.799813E+01,0.000000E+00 +1614762,fr,1,3.850000E+00,6.251740E+00,5.066201E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,-9.000000E+01 +1614768,fr,1,3.950000E+00,6.251740E+00,5.066201E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999194E+01,0.000000E+00 +1614769,fr,1,3.950000E+00,6.251740E+00,5.066201E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999194E+01,0.000000E+00 +1614774,fr,1,3.950000E+00,6.251740E+00,5.066201E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999184E+01,-9.000000E+01 +1614780,fr,1,4.050000E+00,6.251740E+00,5.066201E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +1614781,fr,1,4.050000E+00,6.251740E+00,5.066201E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +1614786,fr,1,4.050000E+00,6.251740E+00,5.066201E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998909E+01,-9.000000E+01 +1614792,fr,1,4.150000E+00,6.251740E+00,5.066201E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1614801,fr,1,4.150000E+00,6.251740E+00,5.066201E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.999359E+01,0.000000E+00 +1614804,fr,2,4.250000E+00,6.251740E+00,5.066201E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998858E+01,0.000000E+00 +1614807,fr,1,4.250000E+00,6.251740E+00,5.066201E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799480E+01,0.000000E+00 +1614810,fr,1,4.250000E+00,6.251740E+00,5.066201E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999133E+01,-9.000000E+01 +1614816,fr,1,4.350000E+00,6.251740E+00,5.066201E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1614819,fr,1,4.350000E+00,6.251740E+00,5.066201E+01,5.000000E+00,Active Shallow Crust,2.400096E+02,5.799620E+01,0.000000E+00 +1614825,fr,1,4.350000E+00,6.251740E+00,5.066201E+01,5.000000E+00,Active Shallow Crust,1.288973E+02,8.998273E+01,0.000000E+00 +1614828,fr,1,4.450000E+00,6.251740E+00,5.066201E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +1614841,fr,1,4.550000E+00,6.251740E+00,5.066201E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1614865,fr,1,4.750000E+00,6.251740E+00,5.066201E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1614873,fr,1,4.750000E+00,6.251740E+00,5.066201E+01,5.000000E+00,Active Shallow Crust,1.288872E+02,8.998842E+01,0.000000E+00 +1614876,fr,2,4.850000E+00,6.251740E+00,5.066201E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1614880,fr,1,4.850000E+00,6.251740E+00,5.066201E+01,1.500000E+01,Active Shallow Crust,2.400192E+02,5.800257E+01,0.000000E+00 +1614914,fr,1,5.150000E+00,6.251740E+00,5.066201E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1615020,fr,1,6.050000E+00,6.251741E+00,5.066201E+01,5.357596E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1615200,fr,1,3.550000E+00,1.939890E+00,4.350677E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +1615203,fr,1,3.550000E+00,1.939890E+00,4.350677E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799831E+01,0.000000E+00 +1615212,fr,1,3.650000E+00,1.939890E+00,4.350677E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1615254,fr,1,3.950000E+00,1.939890E+00,4.350677E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,-9.000000E+01 +1615693,fr,1,3.650000E+00,2.958540E+00,4.017885E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1615699,fr,1,3.650000E+00,2.958540E+00,4.017885E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998958E+01,-9.000000E+01 +1615711,fr,1,3.750000E+00,2.958540E+00,4.017885E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999072E+01,-9.000000E+01 +1615752,fr,1,4.150000E+00,2.958540E+00,4.017885E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +1616162,fr,1,3.550000E+00,7.881640E+00,4.511029E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999288E+01,0.000000E+00 +1616169,fr,1,3.550000E+00,7.881640E+00,4.511029E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999288E+01,0.000000E+00 +1616170,fr,1,3.550000E+00,7.881640E+00,4.511029E+01,1.500000E+01,Active Shallow Crust,1.288958E+02,8.999288E+01,0.000000E+00 +1616173,fr,2,3.650000E+00,7.881640E+00,4.511029E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998731E+01,0.000000E+00 +1616184,fr,1,3.750000E+00,7.881640E+00,4.511029E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +1616186,fr,1,3.750000E+00,7.881640E+00,4.511029E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +1616190,fr,1,3.750000E+00,7.881640E+00,4.511029E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998856E+01,-9.000000E+01 +1616208,fr,1,3.950000E+00,7.881640E+00,4.511029E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999102E+01,0.000000E+00 +1616216,fr,1,3.950000E+00,7.881640E+00,4.511029E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999091E+01,-9.000000E+01 +1616232,fr,1,4.150000E+00,7.881640E+00,4.511029E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +1616256,fr,1,4.350000E+00,7.881640E+00,4.511029E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +1616266,fr,1,4.350000E+00,7.881640E+00,4.511029E+01,1.500000E+01,Active Shallow Crust,1.288985E+02,8.998245E+01,0.000000E+00 +1616304,fr,1,4.750000E+00,7.881640E+00,4.511029E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1616436,fr,1,5.850000E+00,7.881640E+00,4.511029E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1616640,fr,2,3.550000E+00,3.221340E+00,4.450109E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +1616641,fr,2,3.550000E+00,3.221340E+00,4.450109E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +1616650,fr,1,3.550000E+00,3.221340E+00,4.450109E+01,1.500000E+01,Active Shallow Crust,1.288955E+02,8.999461E+01,0.000000E+00 +1616662,fr,1,3.650000E+00,3.221340E+00,4.450109E+01,1.500000E+01,Active Shallow Crust,1.288999E+02,8.996349E+01,0.000000E+00 +1616676,fr,1,3.850000E+00,3.221340E+00,4.450109E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1616688,fr,1,3.950000E+00,3.221340E+00,4.450109E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999092E+01,0.000000E+00 +1616784,fr,1,4.750000E+00,3.221340E+00,4.450109E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1616788,fr,1,4.750000E+00,3.221340E+00,4.450109E+01,1.500000E+01,Active Shallow Crust,2.400068E+02,5.800433E+01,0.000000E+00 +1616846,fr,1,5.250000E+00,3.221340E+00,4.450109E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +1617159,fr,1,3.850000E+00,-1.806380E+00,5.031021E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799788E+01,0.000000E+00 +1617204,fr,1,4.250000E+00,-1.806380E+00,5.031021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1617601,fr,1,3.550000E+00,8.765900E-01,5.188416E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1617625,fr,1,3.750000E+00,8.765900E-01,5.188416E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1617636,fr,1,3.850000E+00,8.765900E-01,5.188416E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1617645,fr,1,3.850000E+00,8.765900E-01,5.188416E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.999367E+01,0.000000E+00 +1617662,fr,1,4.050000E+00,8.765900E-01,5.188416E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1617701,fr,1,4.350000E+00,8.765900E-01,5.188416E+01,2.750000E+01,Active Shallow Crust,2.400098E+02,5.799622E+01,0.000000E+00 +1617762,fr,1,4.850000E+00,8.765900E-01,5.188416E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,-9.000000E+01 +1618080,fr,1,3.550000E+00,1.848810E+00,4.615302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1618083,fr,1,3.550000E+00,1.848810E+00,4.615302E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799811E+01,0.000000E+00 +1618095,fr,1,3.650000E+00,1.848810E+00,4.615302E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801294E+01,0.000000E+00 +1618097,fr,1,3.650000E+00,1.848810E+00,4.615302E+01,2.750000E+01,Active Shallow Crust,2.400011E+02,5.801285E+01,0.000000E+00 +1618104,fr,2,3.750000E+00,1.848810E+00,4.615302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +1618117,fr,1,3.850000E+00,1.848810E+00,4.615302E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1618140,fr,1,4.050000E+00,1.848810E+00,4.615302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1618162,fr,1,4.150000E+00,1.848810E+00,4.615302E+01,1.500000E+01,Active Shallow Crust,1.288974E+02,8.999387E+01,0.000000E+00 +1618221,fr,1,4.650000E+00,1.848810E+00,4.615302E+01,5.000000E+00,Active Shallow Crust,1.288912E+02,8.998695E+01,0.000000E+00 +1618633,fr,1,4.150000E+00,4.925820E+00,4.899513E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1618705,fr,1,4.750000E+00,4.925820E+00,4.899513E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1619088,fr,1,3.950000E+00,4.347440E+00,4.903955E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999166E+01,0.000000E+00 +1619520,fr,1,3.550000E+00,6.536850E+00,5.106571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998733E+01,0.000000E+00 +1619521,fr,1,3.550000E+00,6.536850E+00,5.106571E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998733E+01,0.000000E+00 +1619529,fr,1,3.550000E+00,6.536850E+00,5.106571E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.999366E+01,0.000000E+00 +1619532,fr,1,3.650000E+00,6.536850E+00,5.106571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998870E+01,0.000000E+00 +1619533,fr,2,3.650000E+00,6.536850E+00,5.106571E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998870E+01,0.000000E+00 +1619534,fr,1,3.650000E+00,6.536850E+00,5.106571E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998870E+01,0.000000E+00 +1619541,fr,1,3.650000E+00,6.536850E+00,5.106571E+01,5.000000E+00,Active Shallow Crust,1.288996E+02,8.996362E+01,0.000000E+00 +1619544,fr,2,3.750000E+00,6.536850E+00,5.106571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1619547,fr,1,3.750000E+00,6.536850E+00,5.106571E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.801731E+01,0.000000E+00 +1619554,fr,1,3.750000E+00,6.536850E+00,5.106571E+01,1.500000E+01,Active Shallow Crust,1.288954E+02,8.996757E+01,0.000000E+00 +1619557,fr,1,3.850000E+00,6.536850E+00,5.106571E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999103E+01,0.000000E+00 +1619567,fr,1,3.850000E+00,6.536850E+00,5.106571E+01,2.750000E+01,Active Shallow Crust,1.288943E+02,8.999327E+01,0.000000E+00 +1619571,fr,1,3.950000E+00,6.536850E+00,5.106571E+01,5.000000E+00,Active Shallow Crust,2.400212E+02,5.800448E+01,0.000000E+00 +1619574,fr,1,3.950000E+00,6.536850E+00,5.106571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999191E+01,-9.000000E+01 +1619580,fr,2,4.050000E+00,6.536850E+00,5.106571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +1619588,fr,1,4.050000E+00,6.536850E+00,5.106571E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998918E+01,-9.000000E+01 +1619601,fr,1,4.150000E+00,6.536850E+00,5.106571E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.999365E+01,0.000000E+00 +1619602,fr,1,4.150000E+00,6.536850E+00,5.106571E+01,1.500000E+01,Active Shallow Crust,1.288972E+02,8.999365E+01,0.000000E+00 +1619616,fr,1,4.350000E+00,6.536850E+00,5.106571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1619641,fr,1,4.550000E+00,6.536850E+00,5.106571E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1619665,fr,1,4.750000E+00,6.536850E+00,5.106571E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +1619700,fr,1,5.050000E+00,6.536850E+00,5.106571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1619736,fr,1,5.350000E+00,6.536850E+00,5.106571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +1619798,fr,1,5.850000E+00,6.536850E+00,5.106571E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1620000,fr,2,3.550000E+00,1.897850E+00,4.588912E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +1620013,fr,1,3.650000E+00,1.897850E+00,4.588912E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1620021,fr,1,3.650000E+00,1.897850E+00,4.588912E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.996351E+01,0.000000E+00 +1620025,fr,1,3.750000E+00,1.897850E+00,4.588912E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +1620036,fr,1,3.850000E+00,1.897850E+00,4.588912E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1620039,fr,1,3.850000E+00,1.897850E+00,4.588912E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799773E+01,0.000000E+00 +1620048,fr,2,3.950000E+00,1.897850E+00,4.588912E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1620072,fr,1,4.150000E+00,1.897850E+00,4.588912E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1620169,fr,1,4.950000E+00,1.897850E+00,4.588912E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1620480,fr,1,3.550000E+00,7.126260E+00,4.423126E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999277E+01,0.000000E+00 +1620481,fr,1,3.550000E+00,7.126260E+00,4.423126E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999277E+01,0.000000E+00 +1620482,fr,1,3.550000E+00,7.126260E+00,4.423126E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999277E+01,0.000000E+00 +1620484,fr,1,3.550000E+00,7.126260E+00,4.423126E+01,1.500000E+01,Active Shallow Crust,2.400116E+02,5.799834E+01,0.000000E+00 +1620489,fr,1,3.550000E+00,7.126260E+00,4.423126E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999277E+01,0.000000E+00 +1620492,fr,2,3.650000E+00,7.126260E+00,4.423126E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998712E+01,0.000000E+00 +1620493,fr,1,3.650000E+00,7.126260E+00,4.423126E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998712E+01,0.000000E+00 +1620504,fr,1,3.750000E+00,7.126260E+00,4.423126E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998852E+01,0.000000E+00 +1620510,fr,1,3.750000E+00,7.126260E+00,4.423126E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998839E+01,-9.000000E+01 +1620516,fr,1,3.850000E+00,7.126260E+00,4.423126E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1620517,fr,1,3.850000E+00,7.126260E+00,4.423126E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1620518,fr,1,3.850000E+00,7.126260E+00,4.423126E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1620526,fr,1,3.850000E+00,7.126260E+00,4.423126E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.999489E+01,0.000000E+00 +1620528,fr,1,3.950000E+00,7.126260E+00,4.423126E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1620529,fr,1,3.950000E+00,7.126260E+00,4.423126E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1620531,fr,2,3.950000E+00,7.126260E+00,4.423126E+01,5.000000E+00,Active Shallow Crust,2.400199E+02,5.800468E+01,0.000000E+00 +1620532,fr,1,3.950000E+00,7.126260E+00,4.423126E+01,1.500000E+01,Active Shallow Crust,2.400199E+02,5.800468E+01,0.000000E+00 +1620543,fr,1,4.050000E+00,7.126260E+00,4.423126E+01,5.000000E+00,Active Shallow Crust,2.400059E+02,5.800603E+01,0.000000E+00 +1620552,fr,1,4.150000E+00,7.126260E+00,4.423126E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +1620556,fr,1,4.150000E+00,7.126260E+00,4.423126E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.799725E+01,0.000000E+00 +1620559,fr,1,4.150000E+00,7.126260E+00,4.423126E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998901E+01,-9.000000E+01 +1620561,fr,1,4.150000E+00,7.126260E+00,4.423126E+01,5.000000E+00,Active Shallow Crust,1.288977E+02,8.999457E+01,0.000000E+00 +1620564,fr,1,4.250000E+00,7.126260E+00,4.423126E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +1620573,fr,1,4.250000E+00,7.126260E+00,4.423126E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.998087E+01,0.000000E+00 +1620576,fr,1,4.350000E+00,7.126260E+00,4.423126E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999137E+01,0.000000E+00 +1620577,fr,2,4.350000E+00,7.126260E+00,4.423126E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999137E+01,0.000000E+00 +1620579,fr,1,4.350000E+00,7.126260E+00,4.423126E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799558E+01,0.000000E+00 +1620592,fr,1,4.450000E+00,7.126260E+00,4.423126E+01,1.500000E+01,Active Shallow Crust,2.400047E+02,5.799472E+01,0.000000E+00 +1620960,fr,1,3.550000E+00,-1.434760E+00,4.671903E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +1620961,fr,2,3.550000E+00,-1.434760E+00,4.671903E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +1620972,fr,2,3.650000E+00,-1.434760E+00,4.671903E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +1620973,fr,2,3.650000E+00,-1.434760E+00,4.671903E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +1620977,fr,1,3.650000E+00,-1.434760E+00,4.671903E+01,2.750000E+01,Active Shallow Crust,2.400009E+02,5.801307E+01,0.000000E+00 +1620985,fr,1,3.750000E+00,-1.434760E+00,4.671903E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1620994,fr,1,3.750000E+00,-1.434760E+00,4.671903E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.996737E+01,0.000000E+00 +1621008,fr,1,3.950000E+00,-1.434760E+00,4.671903E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1621032,fr,3,4.150000E+00,-1.434760E+00,4.671903E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +1621033,fr,1,4.150000E+00,-1.434760E+00,4.671903E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +1621044,fr,3,4.250000E+00,-1.434760E+00,4.671903E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1621047,fr,1,4.250000E+00,-1.434760E+00,4.671903E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799409E+01,0.000000E+00 +1621081,fr,1,4.550000E+00,-1.434760E+00,4.671903E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1621116,fr,1,4.850000E+00,-1.434760E+00,4.671903E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1621140,fr,1,5.050000E+00,-1.434760E+00,4.671903E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1621506,fr,1,4.050000E+00,4.047230E+00,4.155716E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999142E+01,-9.000000E+01 +1621524,fr,1,4.250000E+00,4.047230E+00,4.155716E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1621934,fr,1,3.650000E+00,4.298620E+00,4.505398E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998730E+01,0.000000E+00 +1621959,fr,1,3.850000E+00,4.298620E+00,4.505398E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799812E+01,0.000000E+00 +1621989,fr,1,4.050000E+00,4.298620E+00,4.505398E+01,5.000000E+00,Active Shallow Crust,1.288895E+02,8.999399E+01,0.000000E+00 +1622001,fr,1,4.150000E+00,4.298620E+00,4.505398E+01,5.000000E+00,Active Shallow Crust,1.288973E+02,8.999464E+01,0.000000E+00 +1622031,fr,1,4.450000E+00,4.298620E+00,4.505398E+01,5.000000E+00,Active Shallow Crust,2.400050E+02,5.799479E+01,0.000000E+00 +1622052,fr,1,4.650000E+00,4.298620E+00,4.505398E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1622093,fr,1,4.950000E+00,4.298620E+00,4.505398E+01,2.750000E+01,Active Shallow Crust,2.400112E+02,5.800444E+01,0.000000E+00 +1622400,fr,1,3.550000E+00,6.220000E+00,4.878758E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998671E+01,0.000000E+00 +1622412,fr,3,3.650000E+00,6.220000E+00,4.878758E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998816E+01,0.000000E+00 +1622418,fr,1,3.650000E+00,6.220000E+00,4.878758E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998802E+01,-9.000000E+01 +1622436,fr,2,3.850000E+00,6.220000E+00,4.878758E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +1622462,fr,1,4.050000E+00,6.220000E+00,4.878758E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998879E+01,0.000000E+00 +1622466,fr,1,4.050000E+00,6.220000E+00,4.878758E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,-9.000000E+01 +1623009,fr,1,4.550000E+00,-2.931910E+00,5.022919E+01,5.000000E+00,Active Shallow Crust,1.288930E+02,8.998586E+01,0.000000E+00 +1623037,fr,1,4.850000E+00,-2.931910E+00,5.022919E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1623612,fr,1,5.650000E+00,1.325370E+00,5.292242E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1624320,fr,1,3.550000E+00,3.158610E+00,4.540789E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +1624321,fr,2,3.550000E+00,3.158610E+00,4.540789E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +1624324,fr,1,3.550000E+00,3.158610E+00,4.540789E+01,1.500000E+01,Active Shallow Crust,2.400123E+02,5.799780E+01,0.000000E+00 +1624328,fr,1,3.550000E+00,3.158610E+00,4.540789E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998926E+01,-9.000000E+01 +1624332,fr,1,3.650000E+00,3.158610E+00,4.540789E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +1624338,fr,1,3.650000E+00,3.158610E+00,4.540789E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,-9.000000E+01 +1624344,fr,1,3.750000E+00,3.158610E+00,4.540789E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +1624345,fr,1,3.750000E+00,3.158610E+00,4.540789E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +1624356,fr,1,3.850000E+00,3.158610E+00,4.540789E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1624357,fr,2,3.850000E+00,3.158610E+00,4.540789E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1624368,fr,1,3.950000E+00,3.158610E+00,4.540789E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +1624375,fr,1,3.950000E+00,3.158610E+00,4.540789E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999096E+01,-9.000000E+01 +1624380,fr,2,4.050000E+00,3.158610E+00,4.540789E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1624402,fr,1,4.150000E+00,3.158610E+00,4.540789E+01,1.500000E+01,Active Shallow Crust,1.288973E+02,8.999379E+01,0.000000E+00 +1624404,fr,1,4.250000E+00,3.158610E+00,4.540789E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +1624440,fr,1,4.550000E+00,3.158610E+00,4.540789E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1624447,fr,1,4.550000E+00,3.158610E+00,4.540789E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,-9.000000E+01 +1624800,fr,2,3.550000E+00,4.021770E+00,5.011365E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998707E+01,0.000000E+00 +1624812,fr,2,3.650000E+00,4.021770E+00,5.011365E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998847E+01,0.000000E+00 +1624815,fr,1,3.650000E+00,4.021770E+00,5.011365E+01,5.000000E+00,Active Shallow Crust,2.400003E+02,5.801315E+01,0.000000E+00 +1624818,fr,1,3.650000E+00,4.021770E+00,5.011365E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998834E+01,-9.000000E+01 +1624821,fr,1,3.650000E+00,4.021770E+00,5.011365E+01,5.000000E+00,Active Shallow Crust,1.288995E+02,8.996359E+01,0.000000E+00 +1624827,fr,1,3.750000E+00,4.021770E+00,5.011365E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.801757E+01,0.000000E+00 +1625280,fr,7,3.550000E+00,6.742820E+00,4.615904E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999302E+01,0.000000E+00 +1625281,fr,1,3.550000E+00,6.742820E+00,4.615904E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999302E+01,0.000000E+00 +1625282,fr,2,3.550000E+00,6.742820E+00,4.615904E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999301E+01,0.000000E+00 +1625292,fr,3,3.650000E+00,6.742820E+00,4.615904E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998755E+01,0.000000E+00 +1625295,fr,1,3.650000E+00,6.742820E+00,4.615904E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801331E+01,0.000000E+00 +1625298,fr,1,3.650000E+00,6.742820E+00,4.615904E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998740E+01,-9.000000E+01 +1625302,fr,2,3.650000E+00,6.742820E+00,4.615904E+01,1.500000E+01,Active Shallow Crust,1.288995E+02,8.996352E+01,0.000000E+00 +1625304,fr,1,3.750000E+00,6.742820E+00,4.615904E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +1625305,fr,3,3.750000E+00,6.742820E+00,4.615904E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +1625311,fr,1,3.750000E+00,6.742820E+00,4.615904E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998878E+01,-9.000000E+01 +1625316,fr,2,3.850000E+00,6.742820E+00,4.615904E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1625317,fr,1,3.850000E+00,6.742820E+00,4.615904E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1625328,fr,1,3.950000E+00,6.742820E+00,4.615904E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999119E+01,0.000000E+00 +1625329,fr,2,3.950000E+00,6.742820E+00,4.615904E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999119E+01,0.000000E+00 +1625332,fr,1,3.950000E+00,6.742820E+00,4.615904E+01,1.500000E+01,Active Shallow Crust,2.400199E+02,5.800425E+01,0.000000E+00 +1625340,fr,2,4.050000E+00,6.742820E+00,4.615904E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998821E+01,0.000000E+00 +1625341,fr,1,4.050000E+00,6.742820E+00,4.615904E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998821E+01,0.000000E+00 +1625349,fr,1,4.050000E+00,6.742820E+00,4.615904E+01,5.000000E+00,Active Shallow Crust,1.288906E+02,8.999411E+01,0.000000E+00 +1625352,fr,2,4.150000E+00,6.742820E+00,4.615904E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +1625376,fr,2,4.350000E+00,6.742820E+00,4.615904E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +1625379,fr,1,4.350000E+00,6.742820E+00,4.615904E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799605E+01,0.000000E+00 +1625388,fr,1,4.450000E+00,6.742820E+00,4.615904E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1625390,fr,1,4.450000E+00,6.742820E+00,4.615904E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1625448,fr,1,4.950000E+00,6.742820E+00,4.615904E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +1625460,fr,1,5.050000E+00,6.742820E+00,4.615904E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1625526,fr,1,5.550000E+00,6.742820E+00,4.615904E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +1625776,fr,1,3.650000E+00,7.295500E-01,4.554069E+01,1.500000E+01,Active Shallow Crust,2.400010E+02,5.801291E+01,0.000000E+00 +1625784,fr,1,3.750000E+00,7.295500E-01,4.554069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1625794,fr,1,3.750000E+00,7.295500E-01,4.554069E+01,1.500000E+01,Active Shallow Crust,1.288967E+02,8.996735E+01,0.000000E+00 +1625808,fr,1,3.950000E+00,7.295500E-01,4.554069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1626240,fr,1,3.550000E+00,7.406500E+00,4.930766E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998685E+01,0.000000E+00 +1626241,fr,1,3.550000E+00,7.406500E+00,4.930766E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998685E+01,0.000000E+00 +1626276,fr,4,3.850000E+00,7.406500E+00,4.930766E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999069E+01,0.000000E+00 +1626301,fr,1,4.050000E+00,7.406500E+00,4.930766E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +1626360,fr,1,4.550000E+00,7.406500E+00,4.930766E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +1626482,fr,1,5.550000E+00,7.406500E+00,4.930766E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1626720,fr,1,3.550000E+00,-8.879000E-01,4.622318E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +1626721,fr,1,3.550000E+00,-8.879000E-01,4.622318E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +1626723,fr,1,3.550000E+00,-8.879000E-01,4.622318E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799818E+01,0.000000E+00 +1626729,fr,2,3.550000E+00,-8.879000E-01,4.622318E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999346E+01,0.000000E+00 +1626730,fr,1,3.550000E+00,-8.879000E-01,4.622318E+01,1.500000E+01,Active Shallow Crust,1.288964E+02,8.999346E+01,0.000000E+00 +1626732,fr,4,3.650000E+00,-8.879000E-01,4.622318E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1626733,fr,2,3.650000E+00,-8.879000E-01,4.622318E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1626735,fr,1,3.650000E+00,-8.879000E-01,4.622318E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801291E+01,0.000000E+00 +1626757,fr,1,3.850000E+00,-8.879000E-01,4.622318E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1626768,fr,1,3.950000E+00,-8.879000E-01,4.622318E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1626777,fr,1,3.950000E+00,-8.879000E-01,4.622318E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.999368E+01,0.000000E+00 +1626780,fr,1,4.050000E+00,-8.879000E-01,4.622318E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1626781,fr,1,4.050000E+00,-8.879000E-01,4.622318E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1626794,fr,1,4.150000E+00,-8.879000E-01,4.622318E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1626795,fr,1,4.150000E+00,-8.879000E-01,4.622318E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799729E+01,0.000000E+00 +1626857,fr,1,4.650000E+00,-8.879000E-01,4.622318E+01,2.750000E+01,Active Shallow Crust,2.400108E+02,5.799421E+01,0.000000E+00 +1626859,fr,1,4.650000E+00,-8.879000E-01,4.622318E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,-9.000000E+01 +1627200,fr,3,3.550000E+00,-9.640100E-01,4.334862E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1627212,fr,1,3.650000E+00,-9.640100E-01,4.334862E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1627215,fr,1,3.650000E+00,-9.640100E-01,4.334862E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801282E+01,0.000000E+00 +1627224,fr,2,3.750000E+00,-9.640100E-01,4.334862E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1627236,fr,2,3.850000E+00,-9.640100E-01,4.334862E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1627242,fr,1,3.850000E+00,-9.640100E-01,4.334862E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,-9.000000E+01 +1627260,fr,2,4.050000E+00,-9.640100E-01,4.334862E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1627269,fr,1,4.050000E+00,-9.640100E-01,4.334862E+01,5.000000E+00,Active Shallow Crust,1.288910E+02,8.999356E+01,0.000000E+00 +1627276,fr,1,4.150000E+00,-9.640100E-01,4.334862E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.799722E+01,0.000000E+00 +1627308,fr,1,4.450000E+00,-9.640100E-01,4.334862E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1627338,fr,1,4.650000E+00,-9.640100E-01,4.334862E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +1627341,fr,1,4.650000E+00,-9.640100E-01,4.334862E+01,5.000000E+00,Active Shallow Crust,1.288919E+02,8.998699E+01,0.000000E+00 +1627407,fr,1,5.250000E+00,-9.640100E-01,4.334862E+01,5.000000E+00,Active Shallow Crust,2.400186E+02,5.799993E+01,0.000000E+00 +1627693,fr,1,3.650000E+00,-2.299720E+00,4.375668E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1627704,fr,1,3.750000E+00,-2.299720E+00,4.375668E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +1627706,fr,1,3.750000E+00,-2.299720E+00,4.375668E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +1628208,fr,1,3.950000E+00,3.345300E+00,4.838807E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1628317,fr,1,4.850000E+00,3.345300E+00,4.838807E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1628335,fr,1,4.950000E+00,3.345300E+00,4.838807E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,-9.000000E+01 +1628664,fr,1,3.750000E+00,-3.275790E+00,4.668339E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +1629125,fr,1,3.550000E+00,2.559520E+00,4.909181E+01,2.750000E+01,Active Shallow Crust,2.400118E+02,5.799868E+01,0.000000E+00 +1629135,fr,1,3.650000E+00,2.559520E+00,4.909181E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801282E+01,0.000000E+00 +1629168,fr,1,3.950000E+00,2.559520E+00,4.909181E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1629174,fr,1,3.950000E+00,2.559520E+00,4.909181E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,-9.000000E+01 +1629615,fr,1,3.650000E+00,-5.776630E+00,4.929486E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801310E+01,0.000000E+00 +1629646,fr,1,3.850000E+00,-5.776630E+00,4.929486E+01,1.500000E+01,Active Shallow Crust,1.288952E+02,8.999302E+01,0.000000E+00 +1630107,fr,1,3.750000E+00,3.250470E+00,4.318282E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.801738E+01,0.000000E+00 +1630128,fr,1,3.950000E+00,3.250470E+00,4.318282E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +1630140,fr,1,4.050000E+00,3.250470E+00,4.318282E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +1630146,fr,1,4.050000E+00,3.250470E+00,4.318282E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,-9.000000E+01 +1630317,fr,1,5.450000E+00,3.250470E+00,4.318282E+01,5.000000E+00,Active Shallow Crust,1.288810E+02,8.999216E+01,0.000000E+00 +1630575,fr,1,3.650000E+00,-6.071560E+00,4.775236E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801257E+01,0.000000E+00 +1631040,fr,2,3.550000E+00,5.868600E+00,4.539746E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999292E+01,0.000000E+00 +1631041,fr,1,3.550000E+00,5.868600E+00,4.539746E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999292E+01,0.000000E+00 +1631048,fr,1,3.550000E+00,5.868600E+00,4.539746E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999284E+01,-9.000000E+01 +1631052,fr,2,3.650000E+00,5.868600E+00,4.539746E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998738E+01,0.000000E+00 +1631053,fr,2,3.650000E+00,5.868600E+00,4.539746E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998738E+01,0.000000E+00 +1631059,fr,2,3.650000E+00,5.868600E+00,4.539746E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998724E+01,-9.000000E+01 +1631062,fr,1,3.650000E+00,5.868600E+00,4.539746E+01,1.500000E+01,Active Shallow Crust,1.289008E+02,8.996350E+01,0.000000E+00 +1631064,fr,1,3.750000E+00,5.868600E+00,4.539746E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +1631065,fr,1,3.750000E+00,5.868600E+00,4.539746E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +1631070,fr,1,3.750000E+00,5.868600E+00,4.539746E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998862E+01,-9.000000E+01 +1631076,fr,2,3.850000E+00,5.868600E+00,4.539746E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1631082,fr,1,3.850000E+00,5.868600E+00,4.539746E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,-9.000000E+01 +1631089,fr,1,3.950000E+00,5.868600E+00,4.539746E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +1631100,fr,1,4.050000E+00,5.868600E+00,4.539746E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998805E+01,0.000000E+00 +1631102,fr,1,4.050000E+00,5.868600E+00,4.539746E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998805E+01,0.000000E+00 +1631124,fr,1,4.250000E+00,5.868600E+00,4.539746E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +1631131,fr,1,4.250000E+00,5.868600E+00,4.539746E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999040E+01,-9.000000E+01 +1631156,fr,1,4.450000E+00,5.868600E+00,4.539746E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,-9.000000E+01 +1631174,fr,1,4.650000E+00,5.868600E+00,4.539746E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1631183,fr,1,4.650000E+00,5.868600E+00,4.539746E+01,2.750000E+01,Active Shallow Crust,1.288913E+02,8.998715E+01,0.000000E+00 +1631223,fr,1,5.050000E+00,5.868600E+00,4.539746E+01,5.000000E+00,Active Shallow Crust,2.400218E+02,5.799739E+01,0.000000E+00 +1631532,fr,3,3.650000E+00,6.780490E+00,4.590280E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998750E+01,0.000000E+00 +1631534,fr,1,3.650000E+00,6.780490E+00,4.590280E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998750E+01,0.000000E+00 +1631535,fr,1,3.650000E+00,6.780490E+00,4.590280E+01,5.000000E+00,Active Shallow Crust,2.400018E+02,5.801257E+01,0.000000E+00 +1631538,fr,1,3.650000E+00,6.780490E+00,4.590280E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998735E+01,-9.000000E+01 +1631544,fr,2,3.750000E+00,6.780490E+00,4.590280E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +1631546,fr,1,3.750000E+00,6.780490E+00,4.590280E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +1631556,fr,2,3.850000E+00,6.780490E+00,4.590280E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1631557,fr,1,3.850000E+00,6.780490E+00,4.590280E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1631558,fr,1,3.850000E+00,6.780490E+00,4.590280E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1631568,fr,1,3.950000E+00,6.780490E+00,4.590280E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999114E+01,0.000000E+00 +1631571,fr,1,3.950000E+00,6.780490E+00,4.590280E+01,5.000000E+00,Active Shallow Crust,2.400201E+02,5.800438E+01,0.000000E+00 +1631575,fr,1,3.950000E+00,6.780490E+00,4.590280E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999104E+01,-9.000000E+01 +1631580,fr,1,4.050000E+00,6.780490E+00,4.590280E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998816E+01,0.000000E+00 +1631592,fr,1,4.150000E+00,6.780490E+00,4.590280E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +1631604,fr,1,4.250000E+00,6.780490E+00,4.590280E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +1631609,fr,1,4.250000E+00,6.780490E+00,4.590280E+01,2.750000E+01,Active Shallow Crust,2.400072E+02,5.799405E+01,0.000000E+00 +1631622,fr,1,4.350000E+00,6.780490E+00,4.590280E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,-9.000000E+01 +1631631,fr,1,4.450000E+00,6.780490E+00,4.590280E+01,5.000000E+00,Active Shallow Crust,2.400052E+02,5.799443E+01,0.000000E+00 +1631652,fr,1,4.650000E+00,6.780490E+00,4.590280E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1631691,fr,1,4.950000E+00,6.780490E+00,4.590280E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.800451E+01,0.000000E+00 +1632013,fr,1,3.650000E+00,3.365880E+00,4.939499E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +1632036,fr,2,3.850000E+00,3.365880E+00,4.939499E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999071E+01,0.000000E+00 +1632084,fr,1,4.250000E+00,3.365880E+00,4.939499E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +1632480,fr,5,3.550000E+00,7.051480E+00,4.632582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999303E+01,0.000000E+00 +1632481,fr,2,3.550000E+00,7.051480E+00,4.632582E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999303E+01,0.000000E+00 +1632482,fr,2,3.550000E+00,7.051480E+00,4.632582E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999303E+01,0.000000E+00 +1632483,fr,1,3.550000E+00,7.051480E+00,4.632582E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799842E+01,0.000000E+00 +1632485,fr,1,3.550000E+00,7.051480E+00,4.632582E+01,2.750000E+01,Active Shallow Crust,2.400125E+02,5.799832E+01,0.000000E+00 +1632486,fr,1,3.550000E+00,7.051480E+00,4.632582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999296E+01,-9.000000E+01 +1632489,fr,1,3.550000E+00,7.051480E+00,4.632582E+01,5.000000E+00,Active Shallow Crust,1.288971E+02,8.999303E+01,0.000000E+00 +1632492,fr,10,3.650000E+00,7.051480E+00,4.632582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998759E+01,0.000000E+00 +1632493,fr,2,3.650000E+00,7.051480E+00,4.632582E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998759E+01,0.000000E+00 +1632496,fr,1,3.650000E+00,7.051480E+00,4.632582E+01,1.500000E+01,Active Shallow Crust,2.400014E+02,5.801311E+01,0.000000E+00 +1632501,fr,1,3.650000E+00,7.051480E+00,4.632582E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996352E+01,0.000000E+00 +1632503,fr,1,3.650000E+00,7.051480E+00,4.632582E+01,2.750000E+01,Active Shallow Crust,1.289007E+02,8.996352E+01,0.000000E+00 +1632504,fr,9,3.750000E+00,7.051480E+00,4.632582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998894E+01,0.000000E+00 +1632505,fr,1,3.750000E+00,7.051480E+00,4.632582E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998894E+01,0.000000E+00 +1632506,fr,1,3.750000E+00,7.051480E+00,4.632582E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998894E+01,0.000000E+00 +1632507,fr,3,3.750000E+00,7.051480E+00,4.632582E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801764E+01,0.000000E+00 +1632510,fr,4,3.750000E+00,7.051480E+00,4.632582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998881E+01,-9.000000E+01 +1632514,fr,1,3.750000E+00,7.051480E+00,4.632582E+01,1.500000E+01,Active Shallow Crust,1.288959E+02,8.996749E+01,0.000000E+00 +1632515,fr,1,3.750000E+00,7.051480E+00,4.632582E+01,2.750000E+01,Active Shallow Crust,1.288959E+02,8.996749E+01,0.000000E+00 +1632516,fr,3,3.850000E+00,7.051480E+00,4.632582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1632517,fr,3,3.850000E+00,7.051480E+00,4.632582E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1632518,fr,2,3.850000E+00,7.051480E+00,4.632582E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1632519,fr,2,3.850000E+00,7.051480E+00,4.632582E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799862E+01,0.000000E+00 +1632520,fr,1,3.850000E+00,7.051480E+00,4.632582E+01,1.500000E+01,Active Shallow Crust,2.400107E+02,5.799862E+01,0.000000E+00 +1632522,fr,1,3.850000E+00,7.051480E+00,4.632582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +1632525,fr,2,3.850000E+00,7.051480E+00,4.632582E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999507E+01,0.000000E+00 +1632527,fr,1,3.850000E+00,7.051480E+00,4.632582E+01,2.750000E+01,Active Shallow Crust,1.288956E+02,8.999507E+01,0.000000E+00 +1632528,fr,1,3.950000E+00,7.051480E+00,4.632582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999121E+01,0.000000E+00 +1632529,fr,2,3.950000E+00,7.051480E+00,4.632582E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999121E+01,0.000000E+00 +1632533,fr,1,3.950000E+00,7.051480E+00,4.632582E+01,2.750000E+01,Active Shallow Crust,2.400193E+02,5.800517E+01,0.000000E+00 +1632535,fr,1,3.950000E+00,7.051480E+00,4.632582E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999111E+01,-9.000000E+01 +1632537,fr,1,3.950000E+00,7.051480E+00,4.632582E+01,5.000000E+00,Active Shallow Crust,1.289009E+02,8.999341E+01,0.000000E+00 +1632540,fr,4,4.050000E+00,7.051480E+00,4.632582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998825E+01,0.000000E+00 +1632542,fr,1,4.050000E+00,7.051480E+00,4.632582E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998825E+01,0.000000E+00 +1632543,fr,1,4.050000E+00,7.051480E+00,4.632582E+01,5.000000E+00,Active Shallow Crust,2.400056E+02,5.800608E+01,0.000000E+00 +1632544,fr,1,4.050000E+00,7.051480E+00,4.632582E+01,1.500000E+01,Active Shallow Crust,2.400056E+02,5.800606E+01,0.000000E+00 +1632546,fr,1,4.050000E+00,7.051480E+00,4.632582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998811E+01,-9.000000E+01 +1632552,fr,1,4.150000E+00,7.051480E+00,4.632582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +1632554,fr,1,4.150000E+00,7.051480E+00,4.632582E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +1632555,fr,2,4.150000E+00,7.051480E+00,4.632582E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.799750E+01,0.000000E+00 +1632558,fr,2,4.150000E+00,7.051480E+00,4.632582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998941E+01,-9.000000E+01 +1632564,fr,3,4.250000E+00,7.051480E+00,4.632582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999067E+01,0.000000E+00 +1632567,fr,1,4.250000E+00,7.051480E+00,4.632582E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.799382E+01,0.000000E+00 +1632573,fr,1,4.250000E+00,7.051480E+00,4.632582E+01,5.000000E+00,Active Shallow Crust,1.288945E+02,8.998094E+01,0.000000E+00 +1632576,fr,2,4.350000E+00,7.051480E+00,4.632582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +1632577,fr,1,4.350000E+00,7.051480E+00,4.632582E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +1632588,fr,2,4.450000E+00,7.051480E+00,4.632582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1632596,fr,1,4.450000E+00,7.051480E+00,4.632582E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +1632600,fr,3,4.550000E+00,7.051480E+00,4.632582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998899E+01,0.000000E+00 +1632606,fr,1,4.550000E+00,7.051480E+00,4.632582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999109E+01,-9.000000E+01 +1632613,fr,1,4.650000E+00,7.051480E+00,4.632582E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1632624,fr,1,4.750000E+00,7.051480E+00,4.632582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +1632625,fr,1,4.750000E+00,7.051480E+00,4.632582E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +1632636,fr,1,4.850000E+00,7.051480E+00,4.632582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +1632644,fr,1,4.850000E+00,7.051480E+00,4.632582E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999054E+01,-9.000000E+01 +1632654,fr,1,4.950000E+00,7.051480E+00,4.632582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,-9.000000E+01 +1632660,fr,2,5.050000E+00,7.051480E+00,4.632582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1632662,fr,1,5.050000E+00,7.051480E+00,4.632582E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1632681,fr,1,5.150000E+00,7.051480E+00,4.632582E+01,5.000000E+00,Active Shallow Crust,1.288839E+02,8.999119E+01,0.000000E+00 +1632697,fr,1,5.350000E+00,7.051480E+00,4.632582E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1632708,fr,1,5.450000E+00,7.051480E+00,4.632582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +1632733,fr,1,5.650000E+00,7.051480E+00,4.632582E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1632759,fr,1,5.850000E+00,7.051480E+00,4.632582E+01,5.000000E+00,Active Shallow Crust,2.400444E+02,5.800180E+01,0.000000E+00 +1632769,fr,1,5.950000E+00,7.051480E+00,4.632582E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1632972,fr,1,3.650000E+00,9.354000E-01,5.162846E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1633020,fr,1,4.050000E+00,9.354000E-01,5.162846E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1633033,fr,1,4.150000E+00,9.354000E-01,5.162846E+01,1.500000E+01,Active Shallow Crust,3.599998E+02,8.999020E+01,0.000000E+00 +1633440,fr,1,3.550000E+00,3.270550E+00,4.989384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1633456,fr,1,3.650000E+00,3.270550E+00,4.989384E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801311E+01,0.000000E+00 +1633476,fr,1,3.850000E+00,3.270550E+00,4.989384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999080E+01,0.000000E+00 +1633483,fr,1,3.850000E+00,3.270550E+00,4.989384E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999069E+01,-9.000000E+01 +1633488,fr,1,3.950000E+00,3.270550E+00,4.989384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1633527,fr,1,4.250000E+00,3.270550E+00,4.989384E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799436E+01,0.000000E+00 +1633549,fr,1,4.450000E+00,3.270550E+00,4.989384E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +1633593,fr,1,4.750000E+00,3.270550E+00,4.989384E+01,5.000000E+00,Active Shallow Crust,1.288874E+02,8.998817E+01,0.000000E+00 +1633921,fr,1,3.550000E+00,-7.043200E-01,4.542442E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1633932,fr,1,3.650000E+00,-7.043200E-01,4.542442E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1633945,fr,1,3.750000E+00,-7.043200E-01,4.542442E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1633948,fr,1,3.750000E+00,-7.043200E-01,4.542442E+01,1.500000E+01,Active Shallow Crust,2.400083E+02,5.801756E+01,0.000000E+00 +1634065,fr,1,4.750000E+00,-7.043200E-01,4.542442E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1634400,fr,1,3.550000E+00,1.035800E+00,4.135912E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +1634401,fr,1,3.550000E+00,1.035800E+00,4.135912E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +1634403,fr,1,3.550000E+00,1.035800E+00,4.135912E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799810E+01,0.000000E+00 +1634407,fr,1,3.550000E+00,1.035800E+00,4.135912E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,-9.000000E+01 +1634412,fr,2,3.650000E+00,1.035800E+00,4.135912E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1634425,fr,1,3.750000E+00,1.035800E+00,4.135912E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +1634445,fr,1,3.850000E+00,1.035800E+00,4.135912E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999397E+01,0.000000E+00 +1634449,fr,1,3.950000E+00,1.035800E+00,4.135912E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +1634469,fr,1,4.050000E+00,1.035800E+00,4.135912E+01,5.000000E+00,Active Shallow Crust,1.288912E+02,8.999415E+01,0.000000E+00 +1634484,fr,1,4.250000E+00,1.035800E+00,4.135912E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1634544,fr,1,4.750000E+00,1.035800E+00,4.135912E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1634556,fr,1,4.850000E+00,1.035800E+00,4.135912E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1634568,fr,1,4.950000E+00,1.035800E+00,4.135912E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1634880,fr,1,3.550000E+00,-7.870600E-01,4.254173E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1634881,fr,1,3.550000E+00,-7.870600E-01,4.254173E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1634902,fr,1,3.650000E+00,-7.870600E-01,4.254173E+01,1.500000E+01,Active Shallow Crust,1.289007E+02,8.996352E+01,0.000000E+00 +1634917,fr,1,3.850000E+00,-7.870600E-01,4.254173E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1634928,fr,3,3.950000E+00,-7.870600E-01,4.254173E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1634940,fr,1,4.050000E+00,-7.870600E-01,4.254173E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1634941,fr,1,4.050000E+00,-7.870600E-01,4.254173E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1634982,fr,1,4.350000E+00,-7.870600E-01,4.254173E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,-9.000000E+01 +1634988,fr,1,4.450000E+00,-7.870600E-01,4.254173E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1635360,fr,2,3.550000E+00,6.078700E-01,4.309136E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1635362,fr,1,3.550000E+00,6.078700E-01,4.309136E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1635363,fr,1,3.550000E+00,6.078700E-01,4.309136E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799828E+01,0.000000E+00 +1635373,fr,1,3.650000E+00,6.078700E-01,4.309136E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1635375,fr,1,3.650000E+00,6.078700E-01,4.309136E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801274E+01,0.000000E+00 +1635382,fr,1,3.650000E+00,6.078700E-01,4.309136E+01,1.500000E+01,Active Shallow Crust,1.289007E+02,8.996353E+01,0.000000E+00 +1635384,fr,2,3.750000E+00,6.078700E-01,4.309136E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +1635387,fr,1,3.750000E+00,6.078700E-01,4.309136E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801751E+01,0.000000E+00 +1635388,fr,2,3.750000E+00,6.078700E-01,4.309136E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.801751E+01,0.000000E+00 +1635396,fr,1,3.850000E+00,6.078700E-01,4.309136E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1635402,fr,1,3.850000E+00,6.078700E-01,4.309136E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,-9.000000E+01 +1635418,fr,1,3.950000E+00,6.078700E-01,4.309136E+01,1.500000E+01,Active Shallow Crust,1.289008E+02,8.999361E+01,0.000000E+00 +1635420,fr,1,4.050000E+00,6.078700E-01,4.309136E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1635433,fr,2,4.150000E+00,6.078700E-01,4.309136E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1635444,fr,1,4.250000E+00,6.078700E-01,4.309136E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1635470,fr,1,4.450000E+00,6.078700E-01,4.309136E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1635495,fr,1,4.650000E+00,6.078700E-01,4.309136E+01,5.000000E+00,Active Shallow Crust,2.400098E+02,5.799408E+01,0.000000E+00 +1635517,fr,1,4.850000E+00,6.078700E-01,4.309136E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1635526,fr,1,4.850000E+00,6.078700E-01,4.309136E+01,1.500000E+01,Active Shallow Crust,1.288937E+02,8.998900E+01,0.000000E+00 +1635962,fr,1,4.550000E+00,3.916140E+00,4.234591E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +1636008,fr,1,4.950000E+00,3.916140E+00,4.234591E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1636320,fr,1,3.550000E+00,-2.930440E+00,4.982890E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +1636359,fr,1,3.850000E+00,-2.930440E+00,4.982890E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799787E+01,0.000000E+00 +1636809,fr,1,3.550000E+00,3.897990E+00,4.367741E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999271E+01,0.000000E+00 +1636824,fr,1,3.750000E+00,3.897990E+00,4.367741E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999131E+01,0.000000E+00 +1636836,fr,2,3.850000E+00,3.897990E+00,4.367741E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1637301,fr,1,3.650000E+00,9.183770E+00,4.999747E+01,5.000000E+00,Active Shallow Crust,1.288987E+02,8.996359E+01,0.000000E+00 +1637304,fr,1,3.750000E+00,9.183770E+00,4.999747E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1637311,fr,1,3.750000E+00,9.183770E+00,4.999747E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +1637340,fr,1,4.050000E+00,9.183770E+00,4.999747E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999271E+01,0.000000E+00 +1637772,fr,2,3.650000E+00,-1.376000E+00,4.954339E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1637775,fr,1,3.650000E+00,-1.376000E+00,4.954339E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801316E+01,0.000000E+00 +1637781,fr,1,3.650000E+00,-1.376000E+00,4.954339E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.996346E+01,0.000000E+00 +1637787,fr,1,3.750000E+00,-1.376000E+00,4.954339E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.801752E+01,0.000000E+00 +1637808,fr,1,3.950000E+00,-1.376000E+00,4.954339E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1637817,fr,1,3.950000E+00,-1.376000E+00,4.954339E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.999380E+01,0.000000E+00 +1637820,fr,1,4.050000E+00,-1.376000E+00,4.954339E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1637844,fr,1,4.250000E+00,-1.376000E+00,4.954339E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1637845,fr,1,4.250000E+00,-1.376000E+00,4.954339E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1637872,fr,1,4.450000E+00,-1.376000E+00,4.954339E+01,1.500000E+01,Active Shallow Crust,2.400061E+02,5.799493E+01,0.000000E+00 +1638240,fr,1,3.550000E+00,5.692880E+00,4.984800E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998699E+01,0.000000E+00 +1638252,fr,1,3.650000E+00,5.692880E+00,4.984800E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998841E+01,0.000000E+00 +1638729,fr,1,3.550000E+00,2.621000E-02,4.494392E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999373E+01,0.000000E+00 +1638770,fr,1,3.950000E+00,2.621000E-02,4.494392E+01,2.750000E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +1638792,fr,1,4.150000E+00,2.621000E-02,4.494392E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1638804,fr,1,4.250000E+00,2.621000E-02,4.494392E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1638829,fr,1,4.450000E+00,2.621000E-02,4.494392E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1639200,fr,2,3.550000E+00,7.622010E+00,4.375456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999271E+01,0.000000E+00 +1639201,fr,2,3.550000E+00,7.622010E+00,4.375456E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999271E+01,0.000000E+00 +1639204,fr,1,3.550000E+00,7.622010E+00,4.375456E+01,1.500000E+01,Active Shallow Crust,2.400114E+02,5.799892E+01,0.000000E+00 +1639206,fr,3,3.550000E+00,7.622010E+00,4.375456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999263E+01,-9.000000E+01 +1639209,fr,2,3.550000E+00,7.622010E+00,4.375456E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.999636E+01,0.000000E+00 +1639212,fr,8,3.650000E+00,7.622010E+00,4.375456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998701E+01,0.000000E+00 +1639217,fr,1,3.650000E+00,7.622010E+00,4.375456E+01,2.750000E+01,Active Shallow Crust,2.400011E+02,5.801294E+01,0.000000E+00 +1639221,fr,1,3.650000E+00,7.622010E+00,4.375456E+01,5.000000E+00,Active Shallow Crust,1.289015E+02,8.996347E+01,0.000000E+00 +1639222,fr,2,3.650000E+00,7.622010E+00,4.375456E+01,1.500000E+01,Active Shallow Crust,1.289015E+02,8.996347E+01,0.000000E+00 +1639224,fr,1,3.750000E+00,7.622010E+00,4.375456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +1639225,fr,2,3.750000E+00,7.622010E+00,4.375456E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +1639226,fr,2,3.750000E+00,7.622010E+00,4.375456E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +1639230,fr,1,3.750000E+00,7.622010E+00,4.375456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998830E+01,-9.000000E+01 +1639231,fr,1,3.750000E+00,7.622010E+00,4.375456E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998830E+01,-9.000000E+01 +1639234,fr,1,3.750000E+00,7.622010E+00,4.375456E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.996745E+01,0.000000E+00 +1639237,fr,1,3.850000E+00,7.622010E+00,4.375456E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1639248,fr,1,3.950000E+00,7.622010E+00,4.375456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +1639249,fr,1,3.950000E+00,7.622010E+00,4.375456E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +1639255,fr,1,3.950000E+00,7.622010E+00,4.375456E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999070E+01,-9.000000E+01 +1639258,fr,1,3.950000E+00,7.622010E+00,4.375456E+01,1.500000E+01,Active Shallow Crust,1.289008E+02,8.999311E+01,0.000000E+00 +1639260,fr,1,4.050000E+00,7.622010E+00,4.375456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999181E+01,0.000000E+00 +1639261,fr,1,4.050000E+00,7.622010E+00,4.375456E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999181E+01,0.000000E+00 +1639272,fr,2,4.150000E+00,7.622010E+00,4.375456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998905E+01,0.000000E+00 +1639275,fr,1,4.150000E+00,7.622010E+00,4.375456E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799716E+01,0.000000E+00 +1639276,fr,1,4.150000E+00,7.622010E+00,4.375456E+01,1.500000E+01,Active Shallow Crust,2.400082E+02,5.799718E+01,0.000000E+00 +1639281,fr,1,4.150000E+00,7.622010E+00,4.375456E+01,5.000000E+00,Active Shallow Crust,1.288988E+02,8.999270E+01,0.000000E+00 +1639284,fr,1,4.250000E+00,7.622010E+00,4.375456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +1639296,fr,2,4.350000E+00,7.622010E+00,4.375456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999130E+01,0.000000E+00 +1639298,fr,1,4.350000E+00,7.622010E+00,4.375456E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999130E+01,0.000000E+00 +1639300,fr,1,4.350000E+00,7.622010E+00,4.375456E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.799530E+01,0.000000E+00 +1639308,fr,2,4.450000E+00,7.622010E+00,4.375456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +1639311,fr,1,4.450000E+00,7.622010E+00,4.375456E+01,5.000000E+00,Active Shallow Crust,2.400050E+02,5.799429E+01,0.000000E+00 +1639313,fr,1,4.450000E+00,7.622010E+00,4.375456E+01,2.750000E+01,Active Shallow Crust,2.400050E+02,5.799430E+01,0.000000E+00 +1639314,fr,1,4.450000E+00,7.622010E+00,4.375456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,-9.000000E+01 +1639320,fr,2,4.550000E+00,7.622010E+00,4.375456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +1639338,fr,1,4.650000E+00,7.622010E+00,4.375456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,-9.000000E+01 +1639347,fr,1,4.750000E+00,7.622010E+00,4.375456E+01,5.000000E+00,Active Shallow Crust,2.400065E+02,5.800429E+01,0.000000E+00 +1639366,fr,1,4.850000E+00,7.622010E+00,4.375456E+01,1.500000E+01,Active Shallow Crust,1.288939E+02,8.998886E+01,0.000000E+00 +1639370,fr,1,4.950000E+00,7.622010E+00,4.375456E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1639380,fr,1,5.050000E+00,7.622010E+00,4.375456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +1639404,fr,1,5.250000E+00,7.622010E+00,4.375456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +1639429,fr,1,5.450000E+00,7.622010E+00,4.375456E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1639443,fr,1,5.550000E+00,7.622010E+00,4.375456E+01,5.000000E+00,Active Shallow Crust,2.400267E+02,5.800208E+01,0.000000E+00 +1639454,fr,1,5.650000E+00,7.622010E+00,4.375456E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1639551,fr,1,6.450000E+00,7.613447E+00,4.376527E+01,7.200962E+00,Active Shallow Crust,2.400820E+02,5.800038E+01,0.000000E+00 +1639683,fr,1,3.550000E+00,6.793990E+00,5.023410E+01,5.000000E+00,Active Shallow Crust,2.400126E+02,5.799841E+01,0.000000E+00 +1639693,fr,1,3.650000E+00,6.793990E+00,5.023410E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998850E+01,0.000000E+00 +1639699,fr,1,3.650000E+00,6.793990E+00,5.023410E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998837E+01,-9.000000E+01 +1639718,fr,1,3.850000E+00,6.793990E+00,5.023410E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999087E+01,0.000000E+00 +1639729,fr,1,3.950000E+00,6.793990E+00,5.023410E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999186E+01,0.000000E+00 +1639731,fr,1,3.950000E+00,6.793990E+00,5.023410E+01,5.000000E+00,Active Shallow Crust,2.400206E+02,5.800512E+01,0.000000E+00 +1639776,fr,1,4.350000E+00,6.793990E+00,5.023410E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +1640160,fr,3,3.550000E+00,-9.763000E-02,4.695974E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1640161,fr,1,3.550000E+00,-9.763000E-02,4.695974E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1640172,fr,2,3.650000E+00,-9.763000E-02,4.695974E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1640173,fr,2,3.650000E+00,-9.763000E-02,4.695974E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1640184,fr,2,3.750000E+00,-9.763000E-02,4.695974E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1640185,fr,2,3.750000E+00,-9.763000E-02,4.695974E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1640196,fr,1,3.850000E+00,-9.763000E-02,4.695974E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1640197,fr,1,3.850000E+00,-9.763000E-02,4.695974E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1640202,fr,1,3.850000E+00,-9.763000E-02,4.695974E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +1640209,fr,2,3.950000E+00,-9.763000E-02,4.695974E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1640223,fr,1,4.050000E+00,-9.763000E-02,4.695974E+01,5.000000E+00,Active Shallow Crust,2.400060E+02,5.800585E+01,0.000000E+00 +1640232,fr,1,4.150000E+00,-9.763000E-02,4.695974E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1640244,fr,1,4.250000E+00,-9.763000E-02,4.695974E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1640251,fr,1,4.250000E+00,-9.763000E-02,4.695974E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +1640268,fr,1,4.450000E+00,-9.763000E-02,4.695974E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1640311,fr,1,4.750000E+00,-9.763000E-02,4.695974E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +1640342,fr,1,5.050000E+00,-9.763000E-02,4.695974E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1640385,fr,1,5.350000E+00,-9.763000E-02,4.695974E+01,5.000000E+00,Active Shallow Crust,1.288828E+02,8.998806E+01,0.000000E+00 +1640640,fr,3,3.550000E+00,-1.109860E+00,4.849533E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1640642,fr,2,3.550000E+00,-1.109860E+00,4.849533E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1640646,fr,1,3.550000E+00,-1.109860E+00,4.849533E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,-9.000000E+01 +1640649,fr,1,3.550000E+00,-1.109860E+00,4.849533E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999332E+01,0.000000E+00 +1640652,fr,1,3.650000E+00,-1.109860E+00,4.849533E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +1640661,fr,1,3.650000E+00,-1.109860E+00,4.849533E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.996343E+01,0.000000E+00 +1640664,fr,1,3.750000E+00,-1.109860E+00,4.849533E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +1640668,fr,2,3.750000E+00,-1.109860E+00,4.849533E+01,1.500000E+01,Active Shallow Crust,2.400088E+02,5.801754E+01,0.000000E+00 +1640676,fr,1,3.850000E+00,-1.109860E+00,4.849533E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +1640677,fr,1,3.850000E+00,-1.109860E+00,4.849533E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +1640706,fr,1,4.050000E+00,-1.109860E+00,4.849533E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,-9.000000E+01 +1640736,fr,1,4.350000E+00,-1.109860E+00,4.849533E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1640757,fr,1,4.450000E+00,-1.109860E+00,4.849533E+01,5.000000E+00,Active Shallow Crust,1.288916E+02,8.999377E+01,0.000000E+00 +1640794,fr,1,4.750000E+00,-1.109860E+00,4.849533E+01,1.500000E+01,Active Shallow Crust,1.288880E+02,8.998808E+01,0.000000E+00 +1641600,fr,1,3.550000E+00,-4.020130E+00,4.811217E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999327E+01,0.000000E+00 +1641601,fr,1,3.550000E+00,-4.020130E+00,4.811217E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999327E+01,0.000000E+00 +1641612,fr,2,3.650000E+00,-4.020130E+00,4.811217E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998800E+01,0.000000E+00 +1641625,fr,1,3.750000E+00,-4.020130E+00,4.811217E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +1641636,fr,1,3.850000E+00,-4.020130E+00,4.811217E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1641663,fr,1,4.050000E+00,-4.020130E+00,4.811217E+01,5.000000E+00,Active Shallow Crust,2.400063E+02,5.800587E+01,0.000000E+00 +1641665,fr,1,4.050000E+00,-4.020130E+00,4.811217E+01,2.750000E+01,Active Shallow Crust,2.400063E+02,5.800584E+01,0.000000E+00 +1641744,fr,1,4.750000E+00,-4.020130E+00,4.811217E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1642080,fr,3,3.550000E+00,6.104480E+00,4.384259E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999273E+01,0.000000E+00 +1642086,fr,1,3.550000E+00,6.104480E+00,4.384259E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999265E+01,-9.000000E+01 +1642087,fr,1,3.550000E+00,6.104480E+00,4.384259E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999265E+01,-9.000000E+01 +1642092,fr,1,3.650000E+00,6.104480E+00,4.384259E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998704E+01,0.000000E+00 +1642104,fr,3,3.750000E+00,6.104480E+00,4.384259E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998845E+01,0.000000E+00 +1642105,fr,2,3.750000E+00,6.104480E+00,4.384259E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998845E+01,0.000000E+00 +1642116,fr,1,3.850000E+00,6.104480E+00,4.384259E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1642122,fr,1,3.850000E+00,6.104480E+00,4.384259E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +1642128,fr,2,3.950000E+00,6.104480E+00,4.384259E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999082E+01,0.000000E+00 +1642131,fr,1,3.950000E+00,6.104480E+00,4.384259E+01,5.000000E+00,Active Shallow Crust,2.400202E+02,5.800513E+01,0.000000E+00 +1642140,fr,1,4.050000E+00,6.104480E+00,4.384259E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999182E+01,0.000000E+00 +1642147,fr,1,4.050000E+00,6.104480E+00,4.384259E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999172E+01,-9.000000E+01 +1642152,fr,2,4.150000E+00,6.104480E+00,4.384259E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +1642153,fr,1,4.150000E+00,6.104480E+00,4.384259E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +1642165,fr,1,4.250000E+00,6.104480E+00,4.384259E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1642167,fr,1,4.250000E+00,6.104480E+00,4.384259E+01,5.000000E+00,Active Shallow Crust,2.400072E+02,5.799356E+01,0.000000E+00 +1642173,fr,1,4.250000E+00,6.104480E+00,4.384259E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.998085E+01,0.000000E+00 +1642218,fr,1,4.650000E+00,6.104480E+00,4.384259E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,-9.000000E+01 +1642560,fr,1,3.550000E+00,1.839640E+00,4.296005E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +1642569,fr,1,3.550000E+00,1.839640E+00,4.296005E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999355E+01,0.000000E+00 +1642572,fr,1,3.650000E+00,1.839640E+00,4.296005E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1642596,fr,3,3.850000E+00,1.839640E+00,4.296005E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +1642597,fr,1,3.850000E+00,1.839640E+00,4.296005E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +1642608,fr,1,3.950000E+00,1.839640E+00,4.296005E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1642620,fr,1,4.050000E+00,1.839640E+00,4.296005E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +1642641,fr,1,4.150000E+00,1.839640E+00,4.296005E+01,5.000000E+00,Active Shallow Crust,1.288980E+02,8.999399E+01,0.000000E+00 +1642668,fr,1,4.450000E+00,1.839640E+00,4.296005E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1642752,fr,1,5.150000E+00,1.839640E+00,4.296005E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1643064,fr,1,3.750000E+00,7.939900E-01,4.419456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1643073,fr,1,3.750000E+00,7.939900E-01,4.419456E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996732E+01,0.000000E+00 +1643112,fr,1,4.150000E+00,7.939900E-01,4.419456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1643173,fr,1,4.650000E+00,7.939900E-01,4.419456E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1643520,fr,2,3.550000E+00,7.986860E+00,5.012241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998707E+01,0.000000E+00 +1643533,fr,1,3.650000E+00,7.986860E+00,5.012241E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998847E+01,0.000000E+00 +1643534,fr,1,3.650000E+00,7.986860E+00,5.012241E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998847E+01,0.000000E+00 +1643536,fr,1,3.650000E+00,7.986860E+00,5.012241E+01,1.500000E+01,Active Shallow Crust,2.400015E+02,5.801311E+01,0.000000E+00 +1643544,fr,1,3.750000E+00,7.986860E+00,5.012241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +1643556,fr,1,3.850000E+00,7.986860E+00,5.012241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +1643566,fr,1,3.850000E+00,7.986860E+00,5.012241E+01,1.500000E+01,Active Shallow Crust,1.288953E+02,8.999542E+01,0.000000E+00 +1643568,fr,1,3.950000E+00,7.986860E+00,5.012241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999184E+01,0.000000E+00 +1643570,fr,1,3.950000E+00,7.986860E+00,5.012241E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999184E+01,0.000000E+00 +1643592,fr,1,4.150000E+00,7.986860E+00,5.012241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +1643596,fr,1,4.150000E+00,7.986860E+00,5.012241E+01,1.500000E+01,Active Shallow Crust,2.400086E+02,5.799781E+01,0.000000E+00 +1643605,fr,1,4.250000E+00,7.986860E+00,5.012241E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +1643612,fr,1,4.250000E+00,7.986860E+00,5.012241E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999123E+01,-9.000000E+01 +1643706,fr,1,5.050000E+00,7.986860E+00,5.012241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,-9.000000E+01 +1644013,fr,1,3.650000E+00,2.344640E+00,5.243753E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +1644483,fr,1,3.550000E+00,-5.067880E+00,4.855115E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799902E+01,0.000000E+00 +1644492,fr,1,3.650000E+00,-5.067880E+00,4.855115E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998810E+01,0.000000E+00 +1644493,fr,1,3.650000E+00,-5.067880E+00,4.855115E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998810E+01,0.000000E+00 +1644513,fr,1,3.750000E+00,-5.067880E+00,4.855115E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996699E+01,0.000000E+00 +1644528,fr,1,3.950000E+00,-5.067880E+00,4.855115E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999158E+01,0.000000E+00 +1644540,fr,1,4.050000E+00,-5.067880E+00,4.855115E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998874E+01,0.000000E+00 +1644576,fr,1,4.350000E+00,-5.067880E+00,4.855115E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +1644696,fr,1,5.350000E+00,-5.067880E+00,4.855115E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1644966,fr,1,3.550000E+00,6.390620E+00,4.334427E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999258E+01,-9.000000E+01 +1644986,fr,1,3.750000E+00,6.390620E+00,4.334427E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998835E+01,0.000000E+00 +1645008,fr,1,3.950000E+00,6.390620E+00,4.334427E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +1645036,fr,1,4.150000E+00,6.390620E+00,4.334427E+01,1.500000E+01,Active Shallow Crust,2.400086E+02,5.799685E+01,0.000000E+00 +1645440,fr,1,3.550000E+00,-1.270830E+00,5.087157E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1645477,fr,1,3.850000E+00,-1.270830E+00,5.087157E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1645933,fr,1,3.650000E+00,2.796000E-01,5.199039E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1645968,fr,2,3.950000E+00,2.796000E-01,5.199039E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1645980,fr,1,4.050000E+00,2.796000E-01,5.199039E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1645984,fr,1,4.050000E+00,2.796000E-01,5.199039E+01,1.500000E+01,Active Shallow Crust,2.400070E+02,5.800600E+01,0.000000E+00 +1646016,fr,1,4.350000E+00,2.796000E-01,5.199039E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1646418,fr,1,3.650000E+00,4.763120E+00,4.485664E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998711E+01,-9.000000E+01 +1646424,fr,2,3.750000E+00,4.763120E+00,4.485664E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998865E+01,0.000000E+00 +1646427,fr,1,3.750000E+00,4.763120E+00,4.485664E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.801783E+01,0.000000E+00 +1646428,fr,1,3.750000E+00,4.763120E+00,4.485664E+01,1.500000E+01,Active Shallow Crust,2.400078E+02,5.801783E+01,0.000000E+00 +1646436,fr,1,3.850000E+00,4.763120E+00,4.485664E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1646439,fr,1,3.850000E+00,4.763120E+00,4.485664E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799740E+01,0.000000E+00 +1646447,fr,1,3.850000E+00,4.763120E+00,4.485664E+01,2.750000E+01,Active Shallow Crust,1.288950E+02,8.999494E+01,0.000000E+00 +1646448,fr,1,3.950000E+00,4.763120E+00,4.485664E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999098E+01,0.000000E+00 +1646449,fr,1,3.950000E+00,4.763120E+00,4.485664E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999098E+01,0.000000E+00 +1646454,fr,1,3.950000E+00,4.763120E+00,4.485664E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,-9.000000E+01 +1646484,fr,1,4.250000E+00,4.763120E+00,4.485664E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +1646519,fr,1,4.450000E+00,4.763120E+00,4.485664E+01,2.750000E+01,Active Shallow Crust,1.288921E+02,8.999366E+01,0.000000E+00 +1646880,fr,1,3.550000E+00,-2.910530E+00,4.368671E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998906E+01,0.000000E+00 +1646892,fr,1,3.650000E+00,-2.910530E+00,4.368671E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1646965,fr,1,4.250000E+00,-2.910530E+00,4.368671E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1647409,fr,1,3.950000E+00,-7.113770E+00,4.776294E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999145E+01,0.000000E+00 +1647840,fr,5,3.550000E+00,7.838200E-01,4.269889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1647841,fr,4,3.550000E+00,7.838200E-01,4.269889E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1647843,fr,1,3.550000E+00,7.838200E-01,4.269889E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799803E+01,0.000000E+00 +1647844,fr,2,3.550000E+00,7.838200E-01,4.269889E+01,1.500000E+01,Active Shallow Crust,2.400119E+02,5.799803E+01,0.000000E+00 +1647849,fr,1,3.550000E+00,7.838200E-01,4.269889E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.999352E+01,0.000000E+00 +1647852,fr,2,3.650000E+00,7.838200E-01,4.269889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1647855,fr,1,3.650000E+00,7.838200E-01,4.269889E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801277E+01,0.000000E+00 +1647857,fr,1,3.650000E+00,7.838200E-01,4.269889E+01,2.750000E+01,Active Shallow Crust,2.400008E+02,5.801268E+01,0.000000E+00 +1647858,fr,1,3.650000E+00,7.838200E-01,4.269889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1647861,fr,1,3.650000E+00,7.838200E-01,4.269889E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.996352E+01,0.000000E+00 +1647864,fr,1,3.750000E+00,7.838200E-01,4.269889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1647865,fr,1,3.750000E+00,7.838200E-01,4.269889E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1647866,fr,1,3.750000E+00,7.838200E-01,4.269889E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1647867,fr,1,3.750000E+00,7.838200E-01,4.269889E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.801744E+01,0.000000E+00 +1647870,fr,2,3.750000E+00,7.838200E-01,4.269889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,-9.000000E+01 +1647871,fr,1,3.750000E+00,7.838200E-01,4.269889E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,-9.000000E+01 +1647876,fr,3,3.850000E+00,7.838200E-01,4.269889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1647877,fr,1,3.850000E+00,7.838200E-01,4.269889E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1647878,fr,1,3.850000E+00,7.838200E-01,4.269889E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1647882,fr,1,3.850000E+00,7.838200E-01,4.269889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,-9.000000E+01 +1647888,fr,1,3.950000E+00,7.838200E-01,4.269889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1647893,fr,1,3.950000E+00,7.838200E-01,4.269889E+01,2.750000E+01,Active Shallow Crust,2.400193E+02,5.800495E+01,0.000000E+00 +1647894,fr,2,3.950000E+00,7.838200E-01,4.269889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +1647900,fr,1,4.050000E+00,7.838200E-01,4.269889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1647901,fr,2,4.050000E+00,7.838200E-01,4.269889E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1647909,fr,1,4.050000E+00,7.838200E-01,4.269889E+01,5.000000E+00,Active Shallow Crust,1.288911E+02,8.999349E+01,0.000000E+00 +1647912,fr,2,4.150000E+00,7.838200E-01,4.269889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1647924,fr,1,4.250000E+00,7.838200E-01,4.269889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1647925,fr,1,4.250000E+00,7.838200E-01,4.269889E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1647926,fr,1,4.250000E+00,7.838200E-01,4.269889E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1647940,fr,1,4.350000E+00,7.838200E-01,4.269889E+01,1.500000E+01,Active Shallow Crust,2.400075E+02,5.799581E+01,0.000000E+00 +1647960,fr,2,4.550000E+00,7.838200E-01,4.269889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1647972,fr,1,4.650000E+00,7.838200E-01,4.269889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1647984,fr,1,4.750000E+00,7.838200E-01,4.269889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1648022,fr,1,5.050000E+00,7.838200E-01,4.269889E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1648356,fr,1,3.850000E+00,-6.722180E+00,4.864069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +1648392,fr,1,4.150000E+00,-6.722180E+00,4.864069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1648812,fr,1,3.650000E+00,3.479040E+00,4.187922E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1648836,fr,1,3.850000E+00,3.479040E+00,4.187922E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +1648899,fr,1,4.350000E+00,3.479040E+00,4.187922E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.799570E+01,0.000000E+00 +1648933,fr,1,4.650000E+00,3.479040E+00,4.187922E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +1649781,fr,1,3.650000E+00,2.983040E+00,4.910685E+01,5.000000E+00,Active Shallow Crust,1.288998E+02,8.996358E+01,0.000000E+00 +1649784,fr,1,3.750000E+00,2.983040E+00,4.910685E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1649797,fr,1,3.850000E+00,2.983040E+00,4.910685E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +1649832,fr,1,4.150000E+00,2.983040E+00,4.910685E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1650264,fr,1,3.750000E+00,5.900450E+00,5.195991E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1650720,fr,3,3.550000E+00,7.874700E+00,4.847621E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999332E+01,0.000000E+00 +1650722,fr,2,3.550000E+00,7.874700E+00,4.847621E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999332E+01,0.000000E+00 +1650727,fr,1,3.550000E+00,7.874700E+00,4.847621E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999324E+01,-9.000000E+01 +1650732,fr,2,3.650000E+00,7.874700E+00,4.847621E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +1650733,fr,2,3.650000E+00,7.874700E+00,4.847621E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +1650735,fr,3,3.650000E+00,7.874700E+00,4.847621E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801295E+01,0.000000E+00 +1650739,fr,2,3.650000E+00,7.874700E+00,4.847621E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998795E+01,-9.000000E+01 +1650744,fr,2,3.750000E+00,7.874700E+00,4.847621E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +1650747,fr,1,3.750000E+00,7.874700E+00,4.847621E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801736E+01,0.000000E+00 +1650754,fr,1,3.750000E+00,7.874700E+00,4.847621E+01,1.500000E+01,Active Shallow Crust,1.288955E+02,8.996752E+01,0.000000E+00 +1650756,fr,2,3.850000E+00,7.874700E+00,4.847621E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +1650759,fr,1,3.850000E+00,7.874700E+00,4.847621E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799825E+01,0.000000E+00 +1650760,fr,1,3.850000E+00,7.874700E+00,4.847621E+01,1.500000E+01,Active Shallow Crust,2.400112E+02,5.799825E+01,0.000000E+00 +1650765,fr,1,3.850000E+00,7.874700E+00,4.847621E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.999527E+01,0.000000E+00 +1650768,fr,1,3.950000E+00,7.874700E+00,4.847621E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999156E+01,0.000000E+00 +1650780,fr,1,4.050000E+00,7.874700E+00,4.847621E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +1650781,fr,2,4.050000E+00,7.874700E+00,4.847621E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +1650786,fr,1,4.050000E+00,7.874700E+00,4.847621E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,-9.000000E+01 +1650792,fr,1,4.150000E+00,7.874700E+00,4.847621E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1650793,fr,2,4.150000E+00,7.874700E+00,4.847621E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1650798,fr,1,4.150000E+00,7.874700E+00,4.847621E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,-9.000000E+01 +1650804,fr,1,4.250000E+00,7.874700E+00,4.847621E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +1650807,fr,1,4.250000E+00,7.874700E+00,4.847621E+01,5.000000E+00,Active Shallow Crust,2.400075E+02,5.799433E+01,0.000000E+00 +1650828,fr,1,4.450000E+00,7.874700E+00,4.847621E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +1650829,fr,2,4.450000E+00,7.874700E+00,4.847621E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +1650834,fr,1,4.450000E+00,7.874700E+00,4.847621E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,-9.000000E+01 +1650852,fr,2,4.650000E+00,7.874700E+00,4.847621E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +1651200,fr,1,3.550000E+00,6.997800E+00,4.592860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999299E+01,0.000000E+00 +1651201,fr,2,3.550000E+00,6.997800E+00,4.592860E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999299E+01,0.000000E+00 +1651203,fr,1,3.550000E+00,6.997800E+00,4.592860E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799942E+01,0.000000E+00 +1651210,fr,2,3.550000E+00,6.997800E+00,4.592860E+01,1.500000E+01,Active Shallow Crust,1.288971E+02,8.999299E+01,0.000000E+00 +1651212,fr,1,3.650000E+00,6.997800E+00,4.592860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998750E+01,0.000000E+00 +1651215,fr,2,3.650000E+00,6.997800E+00,4.592860E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801291E+01,0.000000E+00 +1651218,fr,1,3.650000E+00,6.997800E+00,4.592860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998735E+01,-9.000000E+01 +1651220,fr,1,3.650000E+00,6.997800E+00,4.592860E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998735E+01,-9.000000E+01 +1651224,fr,1,3.750000E+00,6.997800E+00,4.592860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +1651225,fr,2,3.750000E+00,6.997800E+00,4.592860E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +1651233,fr,1,3.750000E+00,6.997800E+00,4.592860E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.996748E+01,0.000000E+00 +1651236,fr,1,3.850000E+00,6.997800E+00,4.592860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1651245,fr,1,3.850000E+00,6.997800E+00,4.592860E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999503E+01,0.000000E+00 +1651248,fr,1,3.950000E+00,6.997800E+00,4.592860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999115E+01,0.000000E+00 +1651249,fr,1,3.950000E+00,6.997800E+00,4.592860E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999115E+01,0.000000E+00 +1651251,fr,1,3.950000E+00,6.997800E+00,4.592860E+01,5.000000E+00,Active Shallow Crust,2.400196E+02,5.800549E+01,0.000000E+00 +1651260,fr,1,4.050000E+00,6.997800E+00,4.592860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998817E+01,0.000000E+00 +1651261,fr,1,4.050000E+00,6.997800E+00,4.592860E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998817E+01,0.000000E+00 +1651272,fr,1,4.150000E+00,6.997800E+00,4.592860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1651297,fr,1,4.350000E+00,6.997800E+00,4.592860E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998883E+01,0.000000E+00 +1651320,fr,1,4.550000E+00,6.997800E+00,4.592860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +1651395,fr,1,5.150000E+00,6.997800E+00,4.592860E+01,5.000000E+00,Active Shallow Crust,2.400194E+02,5.799993E+01,0.000000E+00 +1651680,fr,10,3.550000E+00,7.160550E+00,4.711547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999314E+01,0.000000E+00 +1651683,fr,2,3.550000E+00,7.160550E+00,4.711547E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799883E+01,0.000000E+00 +1651686,fr,1,3.550000E+00,7.160550E+00,4.711547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999306E+01,-9.000000E+01 +1651689,fr,1,3.550000E+00,7.160550E+00,4.711547E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999314E+01,0.000000E+00 +1651692,fr,6,3.650000E+00,7.160550E+00,4.711547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998777E+01,0.000000E+00 +1651693,fr,2,3.650000E+00,7.160550E+00,4.711547E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998777E+01,0.000000E+00 +1651703,fr,1,3.650000E+00,7.160550E+00,4.711547E+01,2.750000E+01,Active Shallow Crust,1.289004E+02,8.996354E+01,0.000000E+00 +1651704,fr,4,3.750000E+00,7.160550E+00,4.711547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +1651705,fr,1,3.750000E+00,7.160550E+00,4.711547E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +1651707,fr,1,3.750000E+00,7.160550E+00,4.711547E+01,5.000000E+00,Active Shallow Crust,2.400092E+02,5.801757E+01,0.000000E+00 +1651710,fr,1,3.750000E+00,7.160550E+00,4.711547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,-9.000000E+01 +1651713,fr,1,3.750000E+00,7.160550E+00,4.711547E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.996750E+01,0.000000E+00 +1651716,fr,3,3.850000E+00,7.160550E+00,4.711547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +1651718,fr,1,3.850000E+00,7.160550E+00,4.711547E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +1651719,fr,1,3.850000E+00,7.160550E+00,4.711547E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799841E+01,0.000000E+00 +1651728,fr,1,3.950000E+00,7.160550E+00,4.711547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999134E+01,0.000000E+00 +1651729,fr,3,3.950000E+00,7.160550E+00,4.711547E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999134E+01,0.000000E+00 +1651731,fr,2,3.950000E+00,7.160550E+00,4.711547E+01,5.000000E+00,Active Shallow Crust,2.400205E+02,5.800506E+01,0.000000E+00 +1651737,fr,1,3.950000E+00,7.160550E+00,4.711547E+01,5.000000E+00,Active Shallow Crust,1.288998E+02,8.999351E+01,0.000000E+00 +1651740,fr,4,4.050000E+00,7.160550E+00,4.711547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +1651741,fr,4,4.050000E+00,7.160550E+00,4.711547E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +1651744,fr,1,4.050000E+00,7.160550E+00,4.711547E+01,1.500000E+01,Active Shallow Crust,2.400060E+02,5.800550E+01,0.000000E+00 +1651752,fr,2,4.150000E+00,7.160550E+00,4.711547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1651755,fr,1,4.150000E+00,7.160550E+00,4.711547E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799770E+01,0.000000E+00 +1651763,fr,1,4.150000E+00,7.160550E+00,4.711547E+01,2.750000E+01,Active Shallow Crust,1.288984E+02,8.999313E+01,0.000000E+00 +1651776,fr,2,4.350000E+00,7.160550E+00,4.711547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +1651788,fr,2,4.450000E+00,7.160550E+00,4.711547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1651807,fr,1,4.550000E+00,7.160550E+00,4.711547E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998902E+01,-9.000000E+01 +1651812,fr,1,4.650000E+00,7.160550E+00,4.711547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1651813,fr,1,4.650000E+00,7.160550E+00,4.711547E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1651822,fr,1,4.650000E+00,7.160550E+00,4.711547E+01,1.500000E+01,Active Shallow Crust,1.288906E+02,8.998724E+01,0.000000E+00 +1651842,fr,1,4.850000E+00,7.160550E+00,4.711547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,-9.000000E+01 +1651849,fr,1,4.950000E+00,7.160550E+00,4.711547E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +1651861,fr,1,5.050000E+00,7.160550E+00,4.711547E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1651866,fr,1,5.050000E+00,7.160550E+00,4.711547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,-9.000000E+01 +1651920,fr,1,5.550000E+00,7.160550E+00,4.711547E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1652160,fr,1,3.550000E+00,5.150740E+00,5.027216E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998711E+01,0.000000E+00 +1652196,fr,1,3.850000E+00,5.150740E+00,5.027216E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1652197,fr,1,3.850000E+00,5.150740E+00,5.027216E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1652244,fr,2,4.250000E+00,5.150740E+00,5.027216E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999136E+01,0.000000E+00 +1652251,fr,1,4.250000E+00,5.150740E+00,5.027216E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999126E+01,-9.000000E+01 +1652329,fr,1,4.950000E+00,5.150740E+00,5.027216E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +1652653,fr,1,3.650000E+00,-5.581360E+00,4.835899E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998806E+01,0.000000E+00 +1652676,fr,1,3.850000E+00,-5.581360E+00,4.835899E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +1652688,fr,1,3.950000E+00,-5.581360E+00,4.835899E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999155E+01,0.000000E+00 +1652709,fr,1,4.050000E+00,-5.581360E+00,4.835899E+01,5.000000E+00,Active Shallow Crust,1.288898E+02,8.999435E+01,0.000000E+00 +1652713,fr,1,4.150000E+00,-5.581360E+00,4.835899E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1652748,fr,1,4.450000E+00,-5.581360E+00,4.835899E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1653642,fr,1,3.850000E+00,-2.251700E-01,4.177634E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +1653672,fr,1,4.150000E+00,-2.251700E-01,4.177634E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1653757,fr,1,4.850000E+00,-2.251700E-01,4.177634E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1654080,fr,1,3.550000E+00,-2.130390E+00,4.774288E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1654081,fr,1,3.550000E+00,-2.130390E+00,4.774288E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1654086,fr,1,3.550000E+00,-2.130390E+00,4.774288E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,-9.000000E+01 +1654097,fr,1,3.650000E+00,-2.130390E+00,4.774288E+01,2.750000E+01,Active Shallow Crust,2.400018E+02,5.801260E+01,0.000000E+00 +1654104,fr,1,3.750000E+00,-2.130390E+00,4.774288E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +1654106,fr,1,3.750000E+00,-2.130390E+00,4.774288E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +1654107,fr,1,3.750000E+00,-2.130390E+00,4.774288E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.801791E+01,0.000000E+00 +1654125,fr,1,3.850000E+00,-2.130390E+00,4.774288E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.999400E+01,0.000000E+00 +1654128,fr,1,3.950000E+00,-2.130390E+00,4.774288E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +1654130,fr,1,3.950000E+00,-2.130390E+00,4.774288E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +1654140,fr,1,4.050000E+00,-2.130390E+00,4.774288E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1654141,fr,1,4.050000E+00,-2.130390E+00,4.774288E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1654155,fr,1,4.150000E+00,-2.130390E+00,4.774288E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.799760E+01,0.000000E+00 +1654164,fr,1,4.250000E+00,-2.130390E+00,4.774288E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +1654189,fr,1,4.450000E+00,-2.130390E+00,4.774288E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +1654235,fr,1,4.750000E+00,-2.130390E+00,4.774288E+01,2.750000E+01,Active Shallow Crust,1.288882E+02,8.998802E+01,0.000000E+00 +1654568,fr,1,3.550000E+00,1.040980E+00,4.862950E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +1654595,fr,1,3.750000E+00,1.040980E+00,4.862950E+01,2.750000E+01,Active Shallow Crust,1.288963E+02,8.996741E+01,0.000000E+00 +1654608,fr,1,3.950000E+00,1.040980E+00,4.862950E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +1654668,fr,1,4.450000E+00,1.040980E+00,4.862950E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1654729,fr,1,4.950000E+00,1.040980E+00,4.862950E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1655040,fr,1,3.550000E+00,4.509060E+00,4.508379E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999288E+01,0.000000E+00 +1655051,fr,1,3.550000E+00,4.509060E+00,4.508379E+01,2.750000E+01,Active Shallow Crust,1.288963E+02,8.999288E+01,0.000000E+00 +1655055,fr,1,3.650000E+00,4.509060E+00,4.508379E+01,5.000000E+00,Active Shallow Crust,2.400003E+02,5.801378E+01,0.000000E+00 +1655064,fr,2,3.750000E+00,4.509060E+00,4.508379E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +1655079,fr,1,3.850000E+00,4.509060E+00,4.508379E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799720E+01,0.000000E+00 +1655083,fr,1,3.850000E+00,4.509060E+00,4.508379E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,-9.000000E+01 +1655101,fr,1,4.050000E+00,4.509060E+00,4.508379E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999199E+01,0.000000E+00 +1655124,fr,1,4.250000E+00,4.509060E+00,4.508379E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1655173,fr,1,4.650000E+00,4.509060E+00,4.508379E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1656013,fr,1,3.650000E+00,7.099960E+00,5.125535E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +1656017,fr,1,3.650000E+00,7.099960E+00,5.125535E+01,2.750000E+01,Active Shallow Crust,2.400017E+02,5.801279E+01,0.000000E+00 +1656048,fr,1,3.950000E+00,7.099960E+00,5.125535E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998805E+01,0.000000E+00 +1656050,fr,1,3.950000E+00,7.099960E+00,5.125535E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998805E+01,0.000000E+00 +1656146,fr,1,4.750000E+00,7.099960E+00,5.125535E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1656505,fr,1,3.750000E+00,5.586500E+00,4.162909E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998803E+01,0.000000E+00 +1656984,fr,1,3.750000E+00,-2.931700E-01,4.545964E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1657020,fr,2,4.050000E+00,-2.931700E-01,4.545964E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1657050,fr,1,4.250000E+00,-2.931700E-01,4.545964E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1657176,fr,1,5.350000E+00,-2.931700E-01,4.545964E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1657920,fr,5,3.550000E+00,-1.639320E+00,4.710805E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +1657929,fr,1,3.550000E+00,-1.639320E+00,4.710805E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999400E+01,0.000000E+00 +1657930,fr,1,3.550000E+00,-1.639320E+00,4.710805E+01,1.500000E+01,Active Shallow Crust,1.288960E+02,8.999400E+01,0.000000E+00 +1657932,fr,1,3.650000E+00,-1.639320E+00,4.710805E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +1657934,fr,1,3.650000E+00,-1.639320E+00,4.710805E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +1657935,fr,1,3.650000E+00,-1.639320E+00,4.710805E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801303E+01,0.000000E+00 +1657942,fr,1,3.650000E+00,-1.639320E+00,4.710805E+01,1.500000E+01,Active Shallow Crust,1.289003E+02,8.996354E+01,0.000000E+00 +1657944,fr,3,3.750000E+00,-1.639320E+00,4.710805E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1657945,fr,1,3.750000E+00,-1.639320E+00,4.710805E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1657947,fr,1,3.750000E+00,-1.639320E+00,4.710805E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.801754E+01,0.000000E+00 +1657953,fr,1,3.750000E+00,-1.639320E+00,4.710805E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996738E+01,0.000000E+00 +1657956,fr,4,3.850000E+00,-1.639320E+00,4.710805E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +1657962,fr,1,3.850000E+00,-1.639320E+00,4.710805E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,-9.000000E+01 +1657964,fr,1,3.850000E+00,-1.639320E+00,4.710805E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,-9.000000E+01 +1657965,fr,1,3.850000E+00,-1.639320E+00,4.710805E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.999393E+01,0.000000E+00 +1657969,fr,1,3.950000E+00,-1.639320E+00,4.710805E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1657980,fr,4,4.050000E+00,-1.639320E+00,4.710805E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +1657981,fr,1,4.050000E+00,-1.639320E+00,4.710805E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +1657983,fr,1,4.050000E+00,-1.639320E+00,4.710805E+01,5.000000E+00,Active Shallow Crust,2.400061E+02,5.800586E+01,0.000000E+00 +1657987,fr,1,4.050000E+00,-1.639320E+00,4.710805E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,-9.000000E+01 +1658001,fr,1,4.150000E+00,-1.639320E+00,4.710805E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.999398E+01,0.000000E+00 +1658005,fr,2,4.250000E+00,-1.639320E+00,4.710805E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1658016,fr,1,4.350000E+00,-1.639320E+00,4.710805E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1658017,fr,3,4.350000E+00,-1.639320E+00,4.710805E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1658022,fr,1,4.350000E+00,-1.639320E+00,4.710805E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,-9.000000E+01 +1658028,fr,2,4.450000E+00,-1.639320E+00,4.710805E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1658030,fr,1,4.450000E+00,-1.639320E+00,4.710805E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1658091,fr,1,4.950000E+00,-1.639320E+00,4.710805E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.800457E+01,0.000000E+00 +1658094,fr,1,4.950000E+00,-1.639320E+00,4.710805E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,-9.000000E+01 +1658125,fr,1,5.250000E+00,-1.639320E+00,4.710805E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1658136,fr,1,5.350000E+00,-1.639320E+00,4.710805E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1658242,fr,1,6.150000E+00,-1.639320E+00,4.710805E+01,1.500000E+01,Active Shallow Crust,1.288551E+02,8.998977E+01,0.000000E+00 +1658400,fr,3,3.550000E+00,7.803450E+00,4.897472E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998676E+01,0.000000E+00 +1658424,fr,4,3.750000E+00,7.803450E+00,4.897472E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +1658436,fr,1,3.850000E+00,7.803450E+00,4.897472E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +1658437,fr,1,3.850000E+00,7.803450E+00,4.897472E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +1658439,fr,1,3.850000E+00,7.803450E+00,4.897472E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799717E+01,0.000000E+00 +1658461,fr,1,4.050000E+00,7.803450E+00,4.897472E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998883E+01,0.000000E+00 +1658487,fr,1,4.250000E+00,7.803450E+00,4.897472E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799451E+01,0.000000E+00 +1658488,fr,1,4.250000E+00,7.803450E+00,4.897472E+01,1.500000E+01,Active Shallow Crust,2.400076E+02,5.799451E+01,0.000000E+00 +1658509,fr,1,4.450000E+00,7.803450E+00,4.897472E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999061E+01,0.000000E+00 +1658553,fr,1,4.750000E+00,7.803450E+00,4.897472E+01,5.000000E+00,Active Shallow Crust,1.288879E+02,8.998788E+01,0.000000E+00 +1658893,fr,1,3.650000E+00,-1.179110E+00,4.565441E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +1658909,fr,1,3.750000E+00,-1.179110E+00,4.565441E+01,2.750000E+01,Active Shallow Crust,2.400082E+02,5.801772E+01,0.000000E+00 +1658971,fr,1,4.250000E+00,-1.179110E+00,4.565441E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +1659360,fr,1,3.550000E+00,-1.568800E-01,4.722396E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1659384,fr,1,3.750000E+00,-1.568800E-01,4.722396E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1659393,fr,2,3.750000E+00,-1.568800E-01,4.722396E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.996735E+01,0.000000E+00 +1659396,fr,1,3.850000E+00,-1.568800E-01,4.722396E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1659406,fr,1,3.850000E+00,-1.568800E-01,4.722396E+01,1.500000E+01,Active Shallow Crust,1.288956E+02,8.999371E+01,0.000000E+00 +1659408,fr,2,3.950000E+00,-1.568800E-01,4.722396E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1659420,fr,3,4.050000E+00,-1.568800E-01,4.722396E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1659427,fr,1,4.050000E+00,-1.568800E-01,4.722396E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1659505,fr,1,4.750000E+00,-1.568800E-01,4.722396E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1659519,fr,1,4.850000E+00,-1.568800E-01,4.722396E+01,5.000000E+00,Active Shallow Crust,2.400174E+02,5.800238E+01,0.000000E+00 +1659564,fr,1,5.250000E+00,-1.568800E-01,4.722396E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1659840,fr,2,3.550000E+00,3.172190E+00,4.303786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +1659882,fr,1,3.850000E+00,3.172190E+00,4.303786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,-9.000000E+01 +1659908,fr,1,4.050000E+00,3.172190E+00,4.303786E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,-9.000000E+01 +1659936,fr,1,4.350000E+00,3.172190E+00,4.303786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +1659966,fr,1,4.550000E+00,3.172190E+00,4.303786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999057E+01,-9.000000E+01 +1660323,fr,1,3.550000E+00,-3.305940E+00,4.993242E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.799767E+01,0.000000E+00 +1660382,fr,1,4.050000E+00,-3.305940E+00,4.993242E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1660824,fr,1,3.750000E+00,-2.496620E+00,4.580236E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998883E+01,0.000000E+00 +1660884,fr,1,4.250000E+00,-2.496620E+00,4.580236E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +1661280,fr,1,3.550000E+00,-8.548000E-02,4.206597E+01,5.000000E+00,Active Shallow Crust,3.599999E+02,8.999006E+01,0.000000E+00 +1661292,fr,1,3.650000E+00,-8.548000E-02,4.206597E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1661328,fr,1,3.950000E+00,-8.548000E-02,4.206597E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999004E+01,0.000000E+00 +1661457,fr,1,4.950000E+00,-8.548000E-02,4.206597E+01,5.000000E+00,Active Shallow Crust,1.288915E+02,8.998979E+01,0.000000E+00 +1661762,fr,1,3.550000E+00,6.414500E-01,4.647536E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1661773,fr,1,3.650000E+00,6.414500E-01,4.647536E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1661779,fr,1,3.650000E+00,6.414500E-01,4.647536E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,-9.000000E+01 +1661793,fr,1,3.750000E+00,6.414500E-01,4.647536E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996737E+01,0.000000E+00 +1661799,fr,1,3.850000E+00,6.414500E-01,4.647536E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799773E+01,0.000000E+00 +1661809,fr,1,3.950000E+00,6.414500E-01,4.647536E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1661820,fr,3,4.050000E+00,6.414500E-01,4.647536E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1661832,fr,1,4.150000E+00,6.414500E-01,4.647536E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1661835,fr,1,4.150000E+00,6.414500E-01,4.647536E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799732E+01,0.000000E+00 +1661857,fr,1,4.350000E+00,6.414500E-01,4.647536E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1661863,fr,1,4.350000E+00,6.414500E-01,4.647536E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,-9.000000E+01 +1661880,fr,1,4.550000E+00,6.414500E-01,4.647536E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1661885,fr,1,4.550000E+00,6.414500E-01,4.647536E+01,2.750000E+01,Active Shallow Crust,2.400093E+02,5.799738E+01,0.000000E+00 +1661904,fr,1,4.750000E+00,6.414500E-01,4.647536E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1662253,fr,1,3.650000E+00,-1.580340E+00,4.643489E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999071E+01,0.000000E+00 +1662264,fr,2,3.750000E+00,-1.580340E+00,4.643489E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +1662266,fr,1,3.750000E+00,-1.580340E+00,4.643489E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +1662271,fr,1,3.750000E+00,-1.580340E+00,4.643489E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,-9.000000E+01 +1662282,fr,1,3.850000E+00,-1.580340E+00,4.643489E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +1662309,fr,1,4.050000E+00,-1.580340E+00,4.643489E+01,5.000000E+00,Active Shallow Crust,1.288907E+02,8.999365E+01,0.000000E+00 +1662326,fr,1,4.250000E+00,-1.580340E+00,4.643489E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1662736,fr,1,3.650000E+00,5.351200E-01,4.846911E+01,1.500000E+01,Active Shallow Crust,2.400013E+02,5.801299E+01,0.000000E+00 +1662756,fr,1,3.850000E+00,5.351200E-01,4.846911E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1662816,fr,1,4.350000E+00,5.351200E-01,4.846911E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1662882,fr,1,4.850000E+00,5.351200E-01,4.846911E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1663200,fr,3,3.550000E+00,-3.992600E-01,4.827756E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1663202,fr,1,3.550000E+00,-3.992600E-01,4.827756E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1663212,fr,1,3.650000E+00,-3.992600E-01,4.827756E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1663218,fr,1,3.650000E+00,-3.992600E-01,4.827756E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,-9.000000E+01 +1663225,fr,1,3.750000E+00,-3.992600E-01,4.827756E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1663236,fr,1,3.850000E+00,-3.992600E-01,4.827756E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1663248,fr,2,3.950000E+00,-3.992600E-01,4.827756E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1663251,fr,1,3.950000E+00,-3.992600E-01,4.827756E+01,5.000000E+00,Active Shallow Crust,2.400200E+02,5.800500E+01,0.000000E+00 +1663269,fr,1,4.050000E+00,-3.992600E-01,4.827756E+01,5.000000E+00,Active Shallow Crust,1.288903E+02,8.999375E+01,0.000000E+00 +1663275,fr,1,4.150000E+00,-3.992600E-01,4.827756E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.799736E+01,0.000000E+00 +1663680,fr,3,3.550000E+00,6.170640E+00,4.556666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999294E+01,0.000000E+00 +1663681,fr,3,3.550000E+00,6.170640E+00,4.556666E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999294E+01,0.000000E+00 +1663682,fr,1,3.550000E+00,6.170640E+00,4.556666E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999294E+01,0.000000E+00 +1663692,fr,2,3.650000E+00,6.170640E+00,4.556666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998742E+01,0.000000E+00 +1663693,fr,1,3.650000E+00,6.170640E+00,4.556666E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998742E+01,0.000000E+00 +1663696,fr,1,3.650000E+00,6.170640E+00,4.556666E+01,1.500000E+01,Active Shallow Crust,2.400022E+02,5.801239E+01,0.000000E+00 +1663701,fr,1,3.650000E+00,6.170640E+00,4.556666E+01,5.000000E+00,Active Shallow Crust,1.288999E+02,8.996351E+01,0.000000E+00 +1663704,fr,1,3.750000E+00,6.170640E+00,4.556666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +1663706,fr,1,3.750000E+00,6.170640E+00,4.556666E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +1663713,fr,2,3.750000E+00,6.170640E+00,4.556666E+01,5.000000E+00,Active Shallow Crust,1.288971E+02,8.996687E+01,0.000000E+00 +1663716,fr,2,3.850000E+00,6.170640E+00,4.556666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1663717,fr,1,3.850000E+00,6.170640E+00,4.556666E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1663728,fr,2,3.950000E+00,6.170640E+00,4.556666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999109E+01,0.000000E+00 +1663730,fr,1,3.950000E+00,6.170640E+00,4.556666E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999109E+01,0.000000E+00 +1663740,fr,2,4.050000E+00,6.170640E+00,4.556666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998809E+01,0.000000E+00 +1663752,fr,1,4.150000E+00,6.170640E+00,4.556666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +1663816,fr,1,4.650000E+00,6.170640E+00,4.556666E+01,1.500000E+01,Active Shallow Crust,2.400107E+02,5.799427E+01,0.000000E+00 +1663825,fr,1,4.750000E+00,6.170640E+00,4.556666E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +1663828,fr,1,4.750000E+00,6.170640E+00,4.556666E+01,1.500000E+01,Active Shallow Crust,2.400070E+02,5.800429E+01,0.000000E+00 +1663836,fr,1,4.850000E+00,6.170640E+00,4.556666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +1663863,fr,1,5.050000E+00,6.170640E+00,4.556666E+01,5.000000E+00,Active Shallow Crust,2.400216E+02,5.799753E+01,0.000000E+00 +1664160,fr,2,3.550000E+00,2.507730E+00,4.764700E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1664172,fr,1,3.650000E+00,2.507730E+00,4.764700E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999092E+01,0.000000E+00 +1664175,fr,1,3.650000E+00,2.507730E+00,4.764700E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801303E+01,0.000000E+00 +1664191,fr,1,3.750000E+00,2.507730E+00,4.764700E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998908E+01,-9.000000E+01 +1664196,fr,1,3.850000E+00,2.507730E+00,4.764700E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +1664209,fr,1,3.950000E+00,2.507730E+00,4.764700E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998928E+01,0.000000E+00 +1664232,fr,1,4.150000E+00,2.507730E+00,4.764700E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1664299,fr,1,4.650000E+00,2.507730E+00,4.764700E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,-9.000000E+01 +1664640,fr,3,3.550000E+00,5.425820E+00,5.067889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998722E+01,0.000000E+00 +1664641,fr,1,3.550000E+00,5.425820E+00,5.067889E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998722E+01,0.000000E+00 +1664642,fr,1,3.550000E+00,5.425820E+00,5.067889E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998722E+01,0.000000E+00 +1664643,fr,3,3.550000E+00,5.425820E+00,5.067889E+01,5.000000E+00,Active Shallow Crust,2.400137E+02,5.799769E+01,0.000000E+00 +1664646,fr,2,3.550000E+00,5.425820E+00,5.067889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998708E+01,-9.000000E+01 +1664649,fr,2,3.550000E+00,5.425820E+00,5.067889E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999361E+01,0.000000E+00 +1664652,fr,1,3.650000E+00,5.425820E+00,5.067889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998861E+01,0.000000E+00 +1664653,fr,1,3.650000E+00,5.425820E+00,5.067889E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998861E+01,0.000000E+00 +1664656,fr,1,3.650000E+00,5.425820E+00,5.067889E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801339E+01,0.000000E+00 +1664664,fr,1,3.750000E+00,5.425820E+00,5.067889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1664665,fr,1,3.750000E+00,5.425820E+00,5.067889E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1664667,fr,1,3.750000E+00,5.425820E+00,5.067889E+01,5.000000E+00,Active Shallow Crust,2.400093E+02,5.801746E+01,0.000000E+00 +1664682,fr,1,3.850000E+00,5.425820E+00,5.067889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,-9.000000E+01 +1664692,fr,1,3.950000E+00,5.425820E+00,5.067889E+01,1.500000E+01,Active Shallow Crust,2.400213E+02,5.800468E+01,0.000000E+00 +1664694,fr,1,3.950000E+00,5.425820E+00,5.067889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999184E+01,-9.000000E+01 +1664700,fr,1,4.050000E+00,5.425820E+00,5.067889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998922E+01,0.000000E+00 +1664712,fr,2,4.150000E+00,5.425820E+00,5.067889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1664724,fr,1,4.250000E+00,5.425820E+00,5.067889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998858E+01,0.000000E+00 +1664734,fr,1,4.250000E+00,5.425820E+00,5.067889E+01,1.500000E+01,Active Shallow Crust,1.288939E+02,8.998062E+01,0.000000E+00 +1664742,fr,1,4.350000E+00,5.425820E+00,5.067889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,-9.000000E+01 +1664750,fr,1,4.450000E+00,5.425820E+00,5.067889E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +1664760,fr,1,4.550000E+00,5.425820E+00,5.067889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1664761,fr,1,4.550000E+00,5.425820E+00,5.067889E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1664809,fr,1,4.950000E+00,5.425820E+00,5.067889E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1664829,fr,1,5.050000E+00,5.425820E+00,5.067889E+01,5.000000E+00,Active Shallow Crust,1.288836E+02,8.999049E+01,0.000000E+00 +1664832,fr,1,5.150000E+00,5.425820E+00,5.067889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1665144,fr,2,3.750000E+00,-1.873460E+00,4.545286E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1665600,fr,1,3.550000E+00,6.381020E+00,4.779175E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999323E+01,0.000000E+00 +1665601,fr,1,3.550000E+00,6.381020E+00,4.779175E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999323E+01,0.000000E+00 +1665603,fr,1,3.550000E+00,6.381020E+00,4.779175E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799778E+01,0.000000E+00 +1665606,fr,1,3.550000E+00,6.381020E+00,4.779175E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999315E+01,-9.000000E+01 +1665613,fr,1,3.650000E+00,6.381020E+00,4.779175E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998792E+01,0.000000E+00 +1665625,fr,2,3.750000E+00,6.381020E+00,4.779175E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +1665627,fr,1,3.750000E+00,6.381020E+00,4.779175E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.801768E+01,0.000000E+00 +1665636,fr,1,3.850000E+00,6.381020E+00,4.779175E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +1665643,fr,1,3.850000E+00,6.381020E+00,4.779175E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,-9.000000E+01 +1665645,fr,1,3.850000E+00,6.381020E+00,4.779175E+01,5.000000E+00,Active Shallow Crust,1.288944E+02,8.999520E+01,0.000000E+00 +1665660,fr,2,4.050000E+00,6.381020E+00,4.779175E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998857E+01,0.000000E+00 +1665672,fr,1,4.150000E+00,6.381020E+00,4.779175E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1665693,fr,1,4.250000E+00,6.381020E+00,4.779175E+01,5.000000E+00,Active Shallow Crust,1.288936E+02,8.998100E+01,0.000000E+00 +1665744,fr,1,4.750000E+00,6.381020E+00,4.779175E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1665745,fr,1,4.750000E+00,6.381020E+00,4.779175E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1666086,fr,1,3.550000E+00,2.771480E+00,4.909953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +1666095,fr,1,3.650000E+00,2.771480E+00,4.909953E+01,5.000000E+00,Active Shallow Crust,2.400017E+02,5.801257E+01,0.000000E+00 +1666176,fr,1,4.350000E+00,2.771480E+00,4.909953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +1666560,fr,2,3.550000E+00,6.488660E+00,4.415571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999277E+01,0.000000E+00 +1666561,fr,1,3.550000E+00,6.488660E+00,4.415571E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999277E+01,0.000000E+00 +1666562,fr,1,3.550000E+00,6.488660E+00,4.415571E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999277E+01,0.000000E+00 +1666572,fr,2,3.650000E+00,6.488660E+00,4.415571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998711E+01,0.000000E+00 +1666578,fr,1,3.650000E+00,6.488660E+00,4.415571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998695E+01,-9.000000E+01 +1666584,fr,2,3.750000E+00,6.488660E+00,4.415571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998851E+01,0.000000E+00 +1666588,fr,1,3.750000E+00,6.488660E+00,4.415571E+01,1.500000E+01,Active Shallow Crust,2.400090E+02,5.801672E+01,0.000000E+00 +1666597,fr,1,3.850000E+00,6.488660E+00,4.415571E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1666608,fr,2,3.950000E+00,6.488660E+00,4.415571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999087E+01,0.000000E+00 +1666609,fr,1,3.950000E+00,6.488660E+00,4.415571E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999087E+01,0.000000E+00 +1666614,fr,2,3.950000E+00,6.488660E+00,4.415571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999076E+01,-9.000000E+01 +1666622,fr,1,4.050000E+00,6.488660E+00,4.415571E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999186E+01,0.000000E+00 +1666632,fr,1,4.150000E+00,6.488660E+00,4.415571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998912E+01,0.000000E+00 +1666646,fr,1,4.250000E+00,6.488660E+00,4.415571E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1666653,fr,1,4.250000E+00,6.488660E+00,4.415571E+01,5.000000E+00,Active Shallow Crust,1.288941E+02,8.998086E+01,0.000000E+00 +1666689,fr,1,4.550000E+00,6.488660E+00,4.415571E+01,5.000000E+00,Active Shallow Crust,1.288947E+02,8.998552E+01,0.000000E+00 +1666740,fr,1,5.050000E+00,6.488660E+00,4.415571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +1666755,fr,1,5.150000E+00,6.488660E+00,4.415571E+01,5.000000E+00,Active Shallow Crust,2.400184E+02,5.799979E+01,0.000000E+00 +1666794,fr,1,5.450000E+00,6.488660E+00,4.415571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +1667043,fr,1,3.550000E+00,-1.122690E+00,4.222911E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799822E+01,0.000000E+00 +1667102,fr,1,4.050000E+00,-1.122690E+00,4.222911E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +1667135,fr,1,4.250000E+00,-1.122690E+00,4.222911E+01,2.750000E+01,Active Shallow Crust,1.288950E+02,8.998093E+01,0.000000E+00 +1667528,fr,1,3.550000E+00,7.694780E+00,4.971615E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998681E+01,-9.000000E+01 +1667532,fr,1,3.650000E+00,7.694780E+00,4.971615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998838E+01,0.000000E+00 +1667535,fr,1,3.650000E+00,7.694780E+00,4.971615E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801285E+01,0.000000E+00 +1667562,fr,1,3.850000E+00,7.694780E+00,4.971615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999066E+01,-9.000000E+01 +1667582,fr,1,4.050000E+00,7.694780E+00,4.971615E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998900E+01,0.000000E+00 +1667606,fr,1,4.250000E+00,7.694780E+00,4.971615E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +1668003,fr,1,3.550000E+00,1.342400E-01,4.589994E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799814E+01,0.000000E+00 +1668006,fr,1,3.550000E+00,1.342400E-01,4.589994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +1668012,fr,3,3.650000E+00,1.342400E-01,4.589994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1668014,fr,1,3.650000E+00,1.342400E-01,4.589994E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1668021,fr,1,3.650000E+00,1.342400E-01,4.589994E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.996352E+01,0.000000E+00 +1668024,fr,1,3.750000E+00,1.342400E-01,4.589994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1668025,fr,2,3.750000E+00,1.342400E-01,4.589994E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1668029,fr,1,3.750000E+00,1.342400E-01,4.589994E+01,2.750000E+01,Active Shallow Crust,2.400083E+02,5.801756E+01,0.000000E+00 +1668030,fr,1,3.750000E+00,1.342400E-01,4.589994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,-9.000000E+01 +1668036,fr,1,3.850000E+00,1.342400E-01,4.589994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1668037,fr,1,3.850000E+00,1.342400E-01,4.589994E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1668039,fr,1,3.850000E+00,1.342400E-01,4.589994E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799776E+01,0.000000E+00 +1668048,fr,4,3.950000E+00,1.342400E-01,4.589994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1668049,fr,1,3.950000E+00,1.342400E-01,4.589994E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1668061,fr,3,4.050000E+00,1.342400E-01,4.589994E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1668072,fr,1,4.150000E+00,1.342400E-01,4.589994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1668097,fr,1,4.350000E+00,1.342400E-01,4.589994E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1668108,fr,1,4.450000E+00,1.342400E-01,4.589994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1668109,fr,1,4.450000E+00,1.342400E-01,4.589994E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1668132,fr,1,4.650000E+00,1.342400E-01,4.589994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1668480,fr,1,3.550000E+00,9.636000E-01,4.488424E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1668484,fr,1,3.550000E+00,9.636000E-01,4.488424E+01,1.500000E+01,Active Shallow Crust,2.400121E+02,5.799803E+01,0.000000E+00 +1668493,fr,1,3.650000E+00,9.636000E-01,4.488424E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1668516,fr,1,3.850000E+00,9.636000E-01,4.488424E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1668531,fr,1,3.950000E+00,9.636000E-01,4.488424E+01,5.000000E+00,Active Shallow Crust,2.400195E+02,5.800496E+01,0.000000E+00 +1668540,fr,1,4.050000E+00,9.636000E-01,4.488424E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1668579,fr,1,4.350000E+00,9.636000E-01,4.488424E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799588E+01,0.000000E+00 +1668588,fr,1,4.450000E+00,9.636000E-01,4.488424E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1668681,fr,1,5.150000E+00,9.636000E-01,4.488424E+01,5.000000E+00,Active Shallow Crust,1.288845E+02,8.999103E+01,0.000000E+00 +1669440,fr,2,3.550000E+00,-4.789520E+00,4.912425E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998680E+01,0.000000E+00 +1669454,fr,1,3.650000E+00,-4.789520E+00,4.912425E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998824E+01,0.000000E+00 +1669920,fr,1,3.550000E+00,5.101060E+00,4.542736E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999292E+01,0.000000E+00 +1669921,fr,1,3.550000E+00,5.101060E+00,4.542736E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999292E+01,0.000000E+00 +1669923,fr,1,3.550000E+00,5.101060E+00,4.542736E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799852E+01,0.000000E+00 +1669926,fr,1,3.550000E+00,5.101060E+00,4.542736E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999284E+01,-9.000000E+01 +1669946,fr,1,3.750000E+00,5.101060E+00,4.542736E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +1669951,fr,1,3.750000E+00,5.101060E+00,4.542736E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998862E+01,-9.000000E+01 +1669957,fr,1,3.850000E+00,5.101060E+00,4.542736E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1669958,fr,1,3.850000E+00,5.101060E+00,4.542736E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1669966,fr,1,3.850000E+00,5.101060E+00,4.542736E+01,1.500000E+01,Active Shallow Crust,1.288954E+02,8.999499E+01,0.000000E+00 +1669968,fr,2,3.950000E+00,5.101060E+00,4.542736E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +1669977,fr,2,3.950000E+00,5.101060E+00,4.542736E+01,5.000000E+00,Active Shallow Crust,1.289016E+02,8.999330E+01,0.000000E+00 +1669981,fr,2,4.050000E+00,5.101060E+00,4.542736E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998806E+01,0.000000E+00 +1669991,fr,1,4.050000E+00,5.101060E+00,4.542736E+01,2.750000E+01,Active Shallow Crust,1.288905E+02,8.999403E+01,0.000000E+00 +1670010,fr,1,4.250000E+00,5.101060E+00,4.542736E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,-9.000000E+01 +1670031,fr,1,4.450000E+00,5.101060E+00,4.542736E+01,5.000000E+00,Active Shallow Crust,2.400051E+02,5.799436E+01,0.000000E+00 +1670041,fr,1,4.550000E+00,5.101060E+00,4.542736E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999105E+01,0.000000E+00 +1670076,fr,1,4.850000E+00,5.101060E+00,4.542736E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1670100,fr,1,5.050000E+00,5.101060E+00,4.542736E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1670400,fr,1,3.550000E+00,3.305820E+00,4.633867E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1670401,fr,1,3.550000E+00,3.305820E+00,4.633867E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1670439,fr,1,3.850000E+00,3.305820E+00,4.633867E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799804E+01,0.000000E+00 +1670508,fr,1,4.450000E+00,3.305820E+00,4.633867E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1670517,fr,1,4.450000E+00,3.305820E+00,4.633867E+01,5.000000E+00,Active Shallow Crust,1.288920E+02,8.999383E+01,0.000000E+00 +1670544,fr,1,4.750000E+00,3.305820E+00,4.633867E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +1670880,fr,2,3.550000E+00,1.223280E+00,4.246707E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +1670882,fr,2,3.550000E+00,1.223280E+00,4.246707E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +1670889,fr,1,3.550000E+00,1.223280E+00,4.246707E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999349E+01,0.000000E+00 +1670892,fr,1,3.650000E+00,1.223280E+00,4.246707E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1670893,fr,1,3.650000E+00,1.223280E+00,4.246707E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1670894,fr,2,3.650000E+00,1.223280E+00,4.246707E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1670895,fr,1,3.650000E+00,1.223280E+00,4.246707E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801286E+01,0.000000E+00 +1670896,fr,1,3.650000E+00,1.223280E+00,4.246707E+01,1.500000E+01,Active Shallow Crust,2.400010E+02,5.801286E+01,0.000000E+00 +1670904,fr,2,3.750000E+00,1.223280E+00,4.246707E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +1670907,fr,2,3.750000E+00,1.223280E+00,4.246707E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.801725E+01,0.000000E+00 +1670910,fr,2,3.750000E+00,1.223280E+00,4.246707E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,-9.000000E+01 +1670914,fr,1,3.750000E+00,1.223280E+00,4.246707E+01,1.500000E+01,Active Shallow Crust,1.288967E+02,8.996742E+01,0.000000E+00 +1670916,fr,1,3.850000E+00,1.223280E+00,4.246707E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +1670917,fr,1,3.850000E+00,1.223280E+00,4.246707E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +1670928,fr,1,3.950000E+00,1.223280E+00,4.246707E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +1670940,fr,2,4.050000E+00,1.223280E+00,4.246707E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +1670941,fr,1,4.050000E+00,1.223280E+00,4.246707E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +1670952,fr,1,4.150000E+00,1.223280E+00,4.246707E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1670965,fr,1,4.250000E+00,1.223280E+00,4.246707E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1670988,fr,1,4.450000E+00,1.223280E+00,4.246707E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1671010,fr,1,4.550000E+00,1.223280E+00,4.246707E+01,1.500000E+01,Active Shallow Crust,1.288949E+02,8.998583E+01,0.000000E+00 +1671085,fr,1,5.250000E+00,1.223280E+00,4.246707E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1671108,fr,1,5.450000E+00,1.223280E+00,4.246707E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1671112,fr,1,5.450000E+00,1.223280E+00,4.246707E+01,1.500000E+01,Active Shallow Crust,2.400257E+02,5.799791E+01,0.000000E+00 +1671144,fr,1,5.750000E+00,1.223280E+00,4.246707E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1671366,fr,1,3.550000E+00,-2.039880E+00,4.949637E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +1671372,fr,1,3.650000E+00,-2.039880E+00,4.949637E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999124E+01,0.000000E+00 +1671397,fr,1,3.850000E+00,-2.039880E+00,4.949637E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +1671406,fr,1,3.850000E+00,-2.039880E+00,4.949637E+01,1.500000E+01,Active Shallow Crust,1.288955E+02,8.999420E+01,0.000000E+00 +1671445,fr,1,4.250000E+00,-2.039880E+00,4.949637E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +1671492,fr,1,4.650000E+00,-2.039880E+00,4.949637E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1671840,fr,4,3.550000E+00,7.120300E-01,4.255584E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1671841,fr,1,3.550000E+00,7.120300E-01,4.255584E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1671843,fr,1,3.550000E+00,7.120300E-01,4.255584E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799818E+01,0.000000E+00 +1671845,fr,1,3.550000E+00,7.120300E-01,4.255584E+01,2.750000E+01,Active Shallow Crust,2.400118E+02,5.799809E+01,0.000000E+00 +1671847,fr,1,3.550000E+00,7.120300E-01,4.255584E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,-9.000000E+01 +1671850,fr,1,3.550000E+00,7.120300E-01,4.255584E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.999397E+01,0.000000E+00 +1671852,fr,5,3.650000E+00,7.120300E-01,4.255584E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1671854,fr,2,3.650000E+00,7.120300E-01,4.255584E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1671855,fr,1,3.650000E+00,7.120300E-01,4.255584E+01,5.000000E+00,Active Shallow Crust,2.400005E+02,5.801287E+01,0.000000E+00 +1671861,fr,2,3.650000E+00,7.120300E-01,4.255584E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.996352E+01,0.000000E+00 +1671862,fr,1,3.650000E+00,7.120300E-01,4.255584E+01,1.500000E+01,Active Shallow Crust,1.289008E+02,8.996352E+01,0.000000E+00 +1671864,fr,4,3.750000E+00,7.120300E-01,4.255584E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1671865,fr,2,3.750000E+00,7.120300E-01,4.255584E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1671867,fr,1,3.750000E+00,7.120300E-01,4.255584E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801748E+01,0.000000E+00 +1671876,fr,2,3.850000E+00,7.120300E-01,4.255584E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1671879,fr,1,3.850000E+00,7.120300E-01,4.255584E+01,5.000000E+00,Active Shallow Crust,2.400103E+02,5.799768E+01,0.000000E+00 +1671882,fr,1,3.850000E+00,7.120300E-01,4.255584E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +1671891,fr,1,3.950000E+00,7.120300E-01,4.255584E+01,5.000000E+00,Active Shallow Crust,2.400194E+02,5.800479E+01,0.000000E+00 +1671906,fr,1,4.050000E+00,7.120300E-01,4.255584E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1671912,fr,2,4.150000E+00,7.120300E-01,4.255584E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1671913,fr,1,4.150000E+00,7.120300E-01,4.255584E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1671914,fr,2,4.150000E+00,7.120300E-01,4.255584E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1671924,fr,4,4.250000E+00,7.120300E-01,4.255584E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1671933,fr,2,4.250000E+00,7.120300E-01,4.255584E+01,5.000000E+00,Active Shallow Crust,1.288949E+02,8.998094E+01,0.000000E+00 +1671948,fr,1,4.450000E+00,7.120300E-01,4.255584E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1671969,fr,1,4.550000E+00,7.120300E-01,4.255584E+01,5.000000E+00,Active Shallow Crust,1.288948E+02,8.998583E+01,0.000000E+00 +1672001,fr,1,4.850000E+00,7.120300E-01,4.255584E+01,2.750000E+01,Active Shallow Crust,2.400156E+02,5.800202E+01,0.000000E+00 +1672803,fr,1,3.550000E+00,-5.495050E+00,4.809405E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799819E+01,0.000000E+00 +1672813,fr,1,3.650000E+00,-5.495050E+00,4.809405E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998799E+01,0.000000E+00 +1672829,fr,1,3.750000E+00,-5.495050E+00,4.809405E+01,2.750000E+01,Active Shallow Crust,2.400083E+02,5.801779E+01,0.000000E+00 +1672852,fr,1,3.950000E+00,-5.495050E+00,4.809405E+01,1.500000E+01,Active Shallow Crust,2.400198E+02,5.800545E+01,0.000000E+00 +1672896,fr,1,4.350000E+00,-5.495050E+00,4.809405E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1672980,fr,1,5.050000E+00,-5.495050E+00,4.809405E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +1673307,fr,1,3.750000E+00,3.612610E+00,4.350282E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801735E+01,0.000000E+00 +1673340,fr,1,4.050000E+00,3.612610E+00,4.350282E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1673760,fr,4,3.550000E+00,2.738290E+00,4.257111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998886E+01,0.000000E+00 +1673764,fr,1,3.550000E+00,2.738290E+00,4.257111E+01,1.500000E+01,Active Shallow Crust,2.400120E+02,5.799818E+01,0.000000E+00 +1673772,fr,3,3.650000E+00,2.738290E+00,4.257111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1673773,fr,2,3.650000E+00,2.738290E+00,4.257111E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1673775,fr,1,3.650000E+00,2.738290E+00,4.257111E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801340E+01,0.000000E+00 +1673784,fr,3,3.750000E+00,2.738290E+00,4.257111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999115E+01,0.000000E+00 +1673785,fr,1,3.750000E+00,2.738290E+00,4.257111E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999115E+01,0.000000E+00 +1673793,fr,1,3.750000E+00,2.738290E+00,4.257111E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.996712E+01,0.000000E+00 +1673802,fr,1,3.850000E+00,2.738290E+00,4.257111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,-9.000000E+01 +1673803,fr,1,3.850000E+00,2.738290E+00,4.257111E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,-9.000000E+01 +1673808,fr,2,3.950000E+00,2.738290E+00,4.257111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +1673812,fr,1,3.950000E+00,2.738290E+00,4.257111E+01,1.500000E+01,Active Shallow Crust,2.400190E+02,5.800463E+01,0.000000E+00 +1673820,fr,1,4.050000E+00,2.738290E+00,4.257111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1673833,fr,1,4.150000E+00,2.738290E+00,4.257111E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999069E+01,0.000000E+00 +1673868,fr,2,4.450000E+00,2.738290E+00,4.257111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1673877,fr,1,4.450000E+00,2.738290E+00,4.257111E+01,5.000000E+00,Active Shallow Crust,1.288932E+02,8.999342E+01,0.000000E+00 +1673905,fr,1,4.750000E+00,2.738290E+00,4.257111E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +1673916,fr,1,4.850000E+00,2.738290E+00,4.257111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1673917,fr,1,4.850000E+00,2.738290E+00,4.257111E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1673943,fr,1,5.050000E+00,2.738290E+00,4.257111E+01,5.000000E+00,Active Shallow Crust,2.400202E+02,5.799722E+01,0.000000E+00 +1674105,fr,1,6.350000E+00,2.738287E+00,4.257111E+01,7.567806E+00,Active Shallow Crust,1.288510E+02,8.998981E+01,0.000000E+00 +1674240,fr,8,3.550000E+00,6.704900E+00,4.641451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999305E+01,0.000000E+00 +1674241,fr,2,3.550000E+00,6.704900E+00,4.641451E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999305E+01,0.000000E+00 +1674242,fr,3,3.550000E+00,6.704900E+00,4.641451E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999305E+01,0.000000E+00 +1674245,fr,1,3.550000E+00,6.704900E+00,4.641451E+01,2.750000E+01,Active Shallow Crust,2.400122E+02,5.799845E+01,0.000000E+00 +1674246,fr,1,3.550000E+00,6.704900E+00,4.641451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999297E+01,-9.000000E+01 +1674248,fr,1,3.550000E+00,6.704900E+00,4.641451E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999297E+01,-9.000000E+01 +1674249,fr,2,3.550000E+00,6.704900E+00,4.641451E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999305E+01,0.000000E+00 +1674252,fr,9,3.650000E+00,6.704900E+00,4.641451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998761E+01,0.000000E+00 +1674253,fr,2,3.650000E+00,6.704900E+00,4.641451E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998761E+01,0.000000E+00 +1674261,fr,1,3.650000E+00,6.704900E+00,4.641451E+01,5.000000E+00,Active Shallow Crust,1.288994E+02,8.996352E+01,0.000000E+00 +1674262,fr,1,3.650000E+00,6.704900E+00,4.641451E+01,1.500000E+01,Active Shallow Crust,1.288994E+02,8.996352E+01,0.000000E+00 +1674263,fr,1,3.650000E+00,6.704900E+00,4.641451E+01,2.750000E+01,Active Shallow Crust,1.288994E+02,8.996352E+01,0.000000E+00 +1674264,fr,1,3.750000E+00,6.704900E+00,4.641451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +1674265,fr,1,3.750000E+00,6.704900E+00,4.641451E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +1674266,fr,2,3.750000E+00,6.704900E+00,4.641451E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +1674276,fr,4,3.850000E+00,6.704900E+00,4.641451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1674277,fr,1,3.850000E+00,6.704900E+00,4.641451E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1674282,fr,2,3.850000E+00,6.704900E+00,4.641451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +1674285,fr,1,3.850000E+00,6.704900E+00,4.641451E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999261E+01,0.000000E+00 +1674288,fr,3,3.950000E+00,6.704900E+00,4.641451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +1674293,fr,1,3.950000E+00,6.704900E+00,4.641451E+01,2.750000E+01,Active Shallow Crust,2.400197E+02,5.800538E+01,0.000000E+00 +1674294,fr,1,3.950000E+00,6.704900E+00,4.641451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999113E+01,-9.000000E+01 +1674297,fr,1,3.950000E+00,6.704900E+00,4.641451E+01,5.000000E+00,Active Shallow Crust,1.288995E+02,8.999342E+01,0.000000E+00 +1674300,fr,1,4.050000E+00,6.704900E+00,4.641451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998827E+01,0.000000E+00 +1674301,fr,1,4.050000E+00,6.704900E+00,4.641451E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998827E+01,0.000000E+00 +1674303,fr,1,4.050000E+00,6.704900E+00,4.641451E+01,5.000000E+00,Active Shallow Crust,2.400064E+02,5.800575E+01,0.000000E+00 +1674305,fr,2,4.050000E+00,6.704900E+00,4.641451E+01,2.750000E+01,Active Shallow Crust,2.400064E+02,5.800573E+01,0.000000E+00 +1674321,fr,1,4.150000E+00,6.704900E+00,4.641451E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.999477E+01,0.000000E+00 +1674322,fr,1,4.150000E+00,6.704900E+00,4.641451E+01,1.500000E+01,Active Shallow Crust,1.288972E+02,8.999477E+01,0.000000E+00 +1674324,fr,1,4.250000E+00,6.704900E+00,4.641451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +1674343,fr,1,4.350000E+00,6.704900E+00,4.641451E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998880E+01,-9.000000E+01 +1674345,fr,1,4.350000E+00,6.704900E+00,4.641451E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.998302E+01,0.000000E+00 +1674348,fr,2,4.450000E+00,6.704900E+00,4.641451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1674350,fr,2,4.450000E+00,6.704900E+00,4.641451E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1674355,fr,1,4.450000E+00,6.704900E+00,4.641451E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +1674356,fr,1,4.450000E+00,6.704900E+00,4.641451E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +1674357,fr,1,4.450000E+00,6.704900E+00,4.641451E+01,5.000000E+00,Active Shallow Crust,1.288929E+02,8.999260E+01,0.000000E+00 +1674363,fr,1,4.550000E+00,6.704900E+00,4.641451E+01,5.000000E+00,Active Shallow Crust,2.400093E+02,5.799736E+01,0.000000E+00 +1674372,fr,1,4.650000E+00,6.704900E+00,4.641451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1674385,fr,1,4.750000E+00,6.704900E+00,4.641451E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1674390,fr,1,4.750000E+00,6.704900E+00,4.641451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,-9.000000E+01 +1674397,fr,1,4.850000E+00,6.704900E+00,4.641451E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +1674408,fr,1,4.950000E+00,6.704900E+00,4.641451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +1674418,fr,1,4.950000E+00,6.704900E+00,4.641451E+01,1.500000E+01,Active Shallow Crust,1.288901E+02,8.998981E+01,0.000000E+00 +1674420,fr,1,5.050000E+00,6.704900E+00,4.641451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1674422,fr,1,5.050000E+00,6.704900E+00,4.641451E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1674435,fr,1,5.150000E+00,6.704900E+00,4.641451E+01,5.000000E+00,Active Shallow Crust,2.400194E+02,5.800002E+01,0.000000E+00 +1674462,fr,1,5.350000E+00,6.704900E+00,4.641451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,-9.000000E+01 +1674721,fr,2,3.550000E+00,2.749360E+00,4.363655E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998905E+01,0.000000E+00 +1674801,fr,1,4.150000E+00,2.749360E+00,4.363655E+01,5.000000E+00,Active Shallow Crust,1.288977E+02,8.999360E+01,0.000000E+00 +1675200,fr,2,3.550000E+00,5.391130E+00,4.361818E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999270E+01,0.000000E+00 +1675204,fr,1,3.550000E+00,5.391130E+00,4.361818E+01,1.500000E+01,Active Shallow Crust,2.400112E+02,5.799820E+01,0.000000E+00 +1675209,fr,1,3.550000E+00,5.391130E+00,4.361818E+01,5.000000E+00,Active Shallow Crust,1.288955E+02,8.999635E+01,0.000000E+00 +1675212,fr,2,3.650000E+00,5.391130E+00,4.361818E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998698E+01,0.000000E+00 +1675213,fr,1,3.650000E+00,5.391130E+00,4.361818E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998698E+01,0.000000E+00 +1675215,fr,1,3.650000E+00,5.391130E+00,4.361818E+01,5.000000E+00,Active Shallow Crust,2.400006E+02,5.801355E+01,0.000000E+00 +1675218,fr,1,3.650000E+00,5.391130E+00,4.361818E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998684E+01,-9.000000E+01 +1675221,fr,1,3.650000E+00,5.391130E+00,4.361818E+01,5.000000E+00,Active Shallow Crust,1.289011E+02,8.996347E+01,0.000000E+00 +1675222,fr,1,3.650000E+00,5.391130E+00,4.361818E+01,1.500000E+01,Active Shallow Crust,1.289011E+02,8.996347E+01,0.000000E+00 +1675228,fr,1,3.750000E+00,5.391130E+00,4.361818E+01,1.500000E+01,Active Shallow Crust,2.400077E+02,5.801860E+01,0.000000E+00 +1675230,fr,1,3.750000E+00,5.391130E+00,4.361818E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998827E+01,-9.000000E+01 +1675231,fr,1,3.750000E+00,5.391130E+00,4.361818E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998827E+01,-9.000000E+01 +1675233,fr,1,3.750000E+00,5.391130E+00,4.361818E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996744E+01,0.000000E+00 +1675237,fr,1,3.850000E+00,5.391130E+00,4.361818E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +1675239,fr,1,3.850000E+00,5.391130E+00,4.361818E+01,5.000000E+00,Active Shallow Crust,2.400099E+02,5.799743E+01,0.000000E+00 +1675246,fr,1,3.850000E+00,5.391130E+00,4.361818E+01,1.500000E+01,Active Shallow Crust,1.288966E+02,8.999225E+01,0.000000E+00 +1675249,fr,1,3.950000E+00,5.391130E+00,4.361818E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +1675253,fr,1,3.950000E+00,5.391130E+00,4.361818E+01,2.750000E+01,Active Shallow Crust,2.400188E+02,5.800440E+01,0.000000E+00 +1675255,fr,1,3.950000E+00,5.391130E+00,4.361818E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999068E+01,-9.000000E+01 +1675260,fr,1,4.050000E+00,5.391130E+00,4.361818E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999179E+01,0.000000E+00 +1675272,fr,1,4.150000E+00,5.391130E+00,4.361818E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998902E+01,0.000000E+00 +1675273,fr,1,4.150000E+00,5.391130E+00,4.361818E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998902E+01,0.000000E+00 +1675275,fr,1,4.150000E+00,5.391130E+00,4.361818E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799725E+01,0.000000E+00 +1675295,fr,1,4.250000E+00,5.391130E+00,4.361818E+01,2.750000E+01,Active Shallow Crust,1.288943E+02,8.998084E+01,0.000000E+00 +1675341,fr,1,4.650000E+00,5.391130E+00,4.361818E+01,5.000000E+00,Active Shallow Crust,1.288919E+02,8.998707E+01,0.000000E+00 +1675345,fr,1,4.750000E+00,5.391130E+00,4.361818E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +1675680,fr,2,3.550000E+00,2.918860E+00,4.497905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +1675686,fr,1,3.550000E+00,2.918860E+00,4.497905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,-9.000000E+01 +1675689,fr,1,3.550000E+00,2.918860E+00,4.497905E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999465E+01,0.000000E+00 +1675695,fr,1,3.650000E+00,2.918860E+00,4.497905E+01,5.000000E+00,Active Shallow Crust,2.400005E+02,5.801277E+01,0.000000E+00 +1675704,fr,1,3.750000E+00,2.918860E+00,4.497905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998867E+01,0.000000E+00 +1675710,fr,1,3.750000E+00,2.918860E+00,4.497905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999140E+01,-9.000000E+01 +1675717,fr,1,3.850000E+00,2.918860E+00,4.497905E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1675725,fr,1,3.850000E+00,2.918860E+00,4.497905E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999369E+01,0.000000E+00 +1675729,fr,1,3.950000E+00,2.918860E+00,4.497905E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +1675746,fr,1,4.050000E+00,2.918860E+00,4.497905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +1675753,fr,1,4.150000E+00,2.918860E+00,4.497905E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1675754,fr,1,4.150000E+00,2.918860E+00,4.497905E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1675765,fr,1,4.250000E+00,2.918860E+00,4.497905E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +1675779,fr,1,4.350000E+00,2.918860E+00,4.497905E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799574E+01,0.000000E+00 +1675788,fr,1,4.450000E+00,2.918860E+00,4.497905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1675800,fr,1,4.550000E+00,2.918860E+00,4.497905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1675920,fr,1,5.550000E+00,2.918860E+00,4.497905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1676160,fr,1,3.550000E+00,6.648600E-01,5.084018E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1676173,fr,1,3.650000E+00,6.648600E-01,5.084018E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1676176,fr,1,3.650000E+00,6.648600E-01,5.084018E+01,1.500000E+01,Active Shallow Crust,2.400015E+02,5.801297E+01,0.000000E+00 +1676184,fr,2,3.750000E+00,6.648600E-01,5.084018E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1676196,fr,1,3.850000E+00,6.648600E-01,5.084018E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1676208,fr,1,3.950000E+00,6.648600E-01,5.084018E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1676211,fr,1,3.950000E+00,6.648600E-01,5.084018E+01,5.000000E+00,Active Shallow Crust,2.400206E+02,5.800511E+01,0.000000E+00 +1676246,fr,1,4.250000E+00,6.648600E-01,5.084018E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1676247,fr,1,4.250000E+00,6.648600E-01,5.084018E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799422E+01,0.000000E+00 +1676280,fr,1,4.550000E+00,6.648600E-01,5.084018E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1676328,fr,1,4.950000E+00,6.648600E-01,5.084018E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1676641,fr,1,3.550000E+00,-1.269040E+00,4.469010E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +1676772,fr,1,4.650000E+00,-1.269040E+00,4.469010E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1677120,fr,1,3.550000E+00,4.061500E+00,5.048957E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998717E+01,0.000000E+00 +1677121,fr,1,3.550000E+00,4.061500E+00,5.048957E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998717E+01,0.000000E+00 +1677122,fr,2,3.550000E+00,4.061500E+00,5.048957E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998717E+01,0.000000E+00 +1677123,fr,1,3.550000E+00,4.061500E+00,5.048957E+01,5.000000E+00,Active Shallow Crust,2.400126E+02,5.799895E+01,0.000000E+00 +1677130,fr,1,3.550000E+00,4.061500E+00,5.048957E+01,1.500000E+01,Active Shallow Crust,1.288964E+02,8.999358E+01,0.000000E+00 +1677132,fr,2,3.650000E+00,4.061500E+00,5.048957E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +1677133,fr,2,3.650000E+00,4.061500E+00,5.048957E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +1677135,fr,1,3.650000E+00,4.061500E+00,5.048957E+01,5.000000E+00,Active Shallow Crust,2.400023E+02,5.801291E+01,0.000000E+00 +1677136,fr,1,3.650000E+00,4.061500E+00,5.048957E+01,1.500000E+01,Active Shallow Crust,2.400023E+02,5.801291E+01,0.000000E+00 +1677141,fr,1,3.650000E+00,4.061500E+00,5.048957E+01,5.000000E+00,Active Shallow Crust,1.288991E+02,8.996360E+01,0.000000E+00 +1677144,fr,2,3.750000E+00,4.061500E+00,5.048957E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1677145,fr,1,3.750000E+00,4.061500E+00,5.048957E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1677146,fr,1,3.750000E+00,4.061500E+00,5.048957E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1677153,fr,2,3.750000E+00,4.061500E+00,5.048957E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.996706E+01,0.000000E+00 +1677156,fr,4,3.850000E+00,4.061500E+00,5.048957E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +1677157,fr,1,3.850000E+00,4.061500E+00,5.048957E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +1677159,fr,1,3.850000E+00,4.061500E+00,5.048957E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799763E+01,0.000000E+00 +1677165,fr,1,3.850000E+00,4.061500E+00,5.048957E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.999319E+01,0.000000E+00 +1677168,fr,1,3.950000E+00,4.061500E+00,5.048957E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999191E+01,0.000000E+00 +1677169,fr,1,3.950000E+00,4.061500E+00,5.048957E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999191E+01,0.000000E+00 +1677174,fr,1,3.950000E+00,4.061500E+00,5.048957E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999181E+01,-9.000000E+01 +1677177,fr,2,3.950000E+00,4.061500E+00,5.048957E+01,5.000000E+00,Active Shallow Crust,1.288998E+02,8.999393E+01,0.000000E+00 +1677180,fr,2,4.050000E+00,4.061500E+00,5.048957E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +1677185,fr,2,4.050000E+00,4.061500E+00,5.048957E+01,2.750000E+01,Active Shallow Crust,2.400069E+02,5.800546E+01,0.000000E+00 +1677186,fr,1,4.050000E+00,4.061500E+00,5.048957E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998905E+01,-9.000000E+01 +1677190,fr,1,4.050000E+00,4.061500E+00,5.048957E+01,1.500000E+01,Active Shallow Crust,1.288903E+02,8.999278E+01,0.000000E+00 +1677192,fr,1,4.150000E+00,4.061500E+00,5.048957E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1677193,fr,1,4.150000E+00,4.061500E+00,5.048957E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1677198,fr,1,4.150000E+00,4.061500E+00,5.048957E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,-9.000000E+01 +1677204,fr,2,4.250000E+00,4.061500E+00,5.048957E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999140E+01,0.000000E+00 +1677216,fr,1,4.350000E+00,4.061500E+00,5.048957E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1677230,fr,1,4.450000E+00,4.061500E+00,5.048957E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999089E+01,0.000000E+00 +1677232,fr,1,4.450000E+00,4.061500E+00,5.048957E+01,1.500000E+01,Active Shallow Crust,2.400063E+02,5.799475E+01,0.000000E+00 +1677264,fr,1,4.750000E+00,4.061500E+00,5.048957E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1677267,fr,1,4.750000E+00,4.061500E+00,5.048957E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.800489E+01,0.000000E+00 +1677274,fr,1,4.750000E+00,4.061500E+00,5.048957E+01,1.500000E+01,Active Shallow Crust,1.288873E+02,8.998799E+01,0.000000E+00 +1677282,fr,1,4.850000E+00,4.061500E+00,5.048957E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,-9.000000E+01 +1677288,fr,1,4.950000E+00,4.061500E+00,5.048957E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1677324,fr,1,5.250000E+00,4.061500E+00,5.048957E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1677384,fr,1,5.750000E+00,4.061500E+00,5.048957E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1677468,fr,1,6.450000E+00,4.061509E+00,5.048957E+01,8.491219E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1677601,fr,1,3.550000E+00,4.148210E+00,4.344783E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999268E+01,0.000000E+00 +1677613,fr,1,3.650000E+00,4.148210E+00,4.344783E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998695E+01,0.000000E+00 +1677621,fr,1,3.650000E+00,4.148210E+00,4.344783E+01,5.000000E+00,Active Shallow Crust,1.288998E+02,8.996391E+01,0.000000E+00 +1677624,fr,2,3.750000E+00,4.148210E+00,4.344783E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998837E+01,0.000000E+00 +1677660,fr,1,4.050000E+00,4.148210E+00,4.344783E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999177E+01,0.000000E+00 +1677672,fr,1,4.150000E+00,4.148210E+00,4.344783E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998899E+01,0.000000E+00 +1678080,fr,2,3.550000E+00,6.408880E+00,4.689621E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999311E+01,0.000000E+00 +1678081,fr,1,3.550000E+00,6.408880E+00,4.689621E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999311E+01,0.000000E+00 +1678082,fr,1,3.550000E+00,6.408880E+00,4.689621E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999311E+01,0.000000E+00 +1678092,fr,3,3.650000E+00,6.408880E+00,4.689621E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998772E+01,0.000000E+00 +1678093,fr,2,3.650000E+00,6.408880E+00,4.689621E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998772E+01,0.000000E+00 +1678095,fr,1,3.650000E+00,6.408880E+00,4.689621E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801284E+01,0.000000E+00 +1678101,fr,1,3.650000E+00,6.408880E+00,4.689621E+01,5.000000E+00,Active Shallow Crust,1.289009E+02,8.996353E+01,0.000000E+00 +1678104,fr,2,3.750000E+00,6.408880E+00,4.689621E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998905E+01,0.000000E+00 +1678106,fr,1,3.750000E+00,6.408880E+00,4.689621E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998905E+01,0.000000E+00 +1678116,fr,2,3.850000E+00,6.408880E+00,4.689621E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +1678128,fr,1,3.950000E+00,6.408880E+00,4.689621E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999130E+01,0.000000E+00 +1678140,fr,2,4.050000E+00,6.408880E+00,4.689621E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998837E+01,0.000000E+00 +1678143,fr,2,4.050000E+00,6.408880E+00,4.689621E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.800616E+01,0.000000E+00 +1678164,fr,2,4.250000E+00,6.408880E+00,4.689621E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999077E+01,0.000000E+00 +1678165,fr,1,4.250000E+00,6.408880E+00,4.689621E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999077E+01,0.000000E+00 +1678171,fr,1,4.250000E+00,6.408880E+00,4.689621E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999066E+01,-9.000000E+01 +1678173,fr,1,4.250000E+00,6.408880E+00,4.689621E+01,5.000000E+00,Active Shallow Crust,1.288940E+02,8.998096E+01,0.000000E+00 +1678201,fr,1,4.550000E+00,6.408880E+00,4.689621E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +1678207,fr,1,4.550000E+00,6.408880E+00,4.689621E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998898E+01,-9.000000E+01 +1678212,fr,1,4.650000E+00,6.408880E+00,4.689621E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +1678216,fr,1,4.650000E+00,6.408880E+00,4.689621E+01,1.500000E+01,Active Shallow Crust,2.400107E+02,5.799436E+01,0.000000E+00 +1678224,fr,1,4.750000E+00,6.408880E+00,4.689621E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +1678237,fr,1,4.850000E+00,6.408880E+00,4.689621E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +1678272,fr,1,5.150000E+00,6.408880E+00,4.689621E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1678347,fr,1,5.750000E+00,6.408880E+00,4.689621E+01,5.000000E+00,Active Shallow Crust,2.400390E+02,5.800191E+01,0.000000E+00 +1678572,fr,1,3.650000E+00,2.573840E+00,4.843843E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999106E+01,0.000000E+00 +1679046,fr,1,3.550000E+00,4.435110E+00,4.917740E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999333E+01,-9.000000E+01 +1679100,fr,1,4.050000E+00,4.435110E+00,4.917740E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +1679568,fr,1,3.950000E+00,5.293500E+00,5.200173E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998825E+01,0.000000E+00 +1680001,fr,1,3.550000E+00,2.540580E+00,4.804327E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1680012,fr,1,3.650000E+00,2.540580E+00,4.804327E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999099E+01,0.000000E+00 +1680099,fr,1,4.350000E+00,2.540580E+00,4.804327E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.799602E+01,0.000000E+00 +1680492,fr,1,3.650000E+00,8.817720E+00,5.008552E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998846E+01,0.000000E+00 +1680517,fr,1,3.850000E+00,8.817720E+00,5.008552E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +1680528,fr,1,3.950000E+00,8.817720E+00,5.008552E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999184E+01,0.000000E+00 +1680540,fr,1,4.050000E+00,8.817720E+00,5.008552E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999272E+01,0.000000E+00 +1680544,fr,1,4.050000E+00,8.817720E+00,5.008552E+01,1.500000E+01,Active Shallow Crust,2.400055E+02,5.800611E+01,0.000000E+00 +1680552,fr,1,4.150000E+00,8.817720E+00,5.008552E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998703E+01,0.000000E+00 +1680561,fr,1,4.150000E+00,8.817720E+00,5.008552E+01,5.000000E+00,Active Shallow Crust,1.288971E+02,8.999352E+01,0.000000E+00 +1680567,fr,1,4.250000E+00,8.817720E+00,5.008552E+01,5.000000E+00,Active Shallow Crust,2.400075E+02,5.799454E+01,0.000000E+00 +1680576,fr,1,4.350000E+00,8.817720E+00,5.008552E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1680577,fr,1,4.350000E+00,8.817720E+00,5.008552E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1680609,fr,1,4.550000E+00,8.817720E+00,5.008552E+01,5.000000E+00,Active Shallow Crust,1.288929E+02,8.998585E+01,0.000000E+00 +1680617,fr,1,4.650000E+00,8.817720E+00,5.008552E+01,2.750000E+01,Active Shallow Crust,2.400123E+02,5.799419E+01,0.000000E+00 +1681452,fr,1,3.650000E+00,2.572910E+00,4.673923E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +1681467,fr,1,3.750000E+00,2.572910E+00,4.673923E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.801758E+01,0.000000E+00 +1681476,fr,2,3.850000E+00,2.572910E+00,4.673923E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1681479,fr,1,3.850000E+00,2.572910E+00,4.673923E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799764E+01,0.000000E+00 +1681492,fr,1,3.950000E+00,2.572910E+00,4.673923E+01,1.500000E+01,Active Shallow Crust,2.400199E+02,5.800499E+01,0.000000E+00 +1681500,fr,1,4.050000E+00,2.572910E+00,4.673923E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +1681548,fr,1,4.450000E+00,2.572910E+00,4.673923E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1681920,fr,1,3.550000E+00,8.266100E+00,4.813677E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998654E+01,0.000000E+00 +1681921,fr,1,3.550000E+00,8.266100E+00,4.813677E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998654E+01,0.000000E+00 +1681971,fr,1,3.950000E+00,8.266100E+00,4.813677E+01,5.000000E+00,Active Shallow Crust,2.400193E+02,5.800540E+01,0.000000E+00 +1682004,fr,1,4.250000E+00,8.266100E+00,4.813677E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998798E+01,0.000000E+00 +1682019,fr,1,4.350000E+00,8.266100E+00,4.813677E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.799607E+01,0.000000E+00 +1682030,fr,1,4.450000E+00,8.266100E+00,4.813677E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +1682041,fr,1,4.550000E+00,8.266100E+00,4.813677E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999149E+01,0.000000E+00 +1682042,fr,1,4.550000E+00,8.266100E+00,4.813677E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999149E+01,0.000000E+00 +1682089,fr,1,4.950000E+00,8.266100E+00,4.813677E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +1682100,fr,1,5.050000E+00,8.266100E+00,4.813677E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1682229,fr,1,6.050000E+00,8.266100E+00,4.813677E+01,5.357596E+00,Active Shallow Crust,1.288598E+02,8.998888E+01,0.000000E+00 +1682400,fr,2,3.550000E+00,2.855800E-01,4.319779E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1682401,fr,1,3.550000E+00,2.855800E-01,4.319779E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1682403,fr,1,3.550000E+00,2.855800E-01,4.319779E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799818E+01,0.000000E+00 +1682406,fr,1,3.550000E+00,2.855800E-01,4.319779E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,-9.000000E+01 +1682410,fr,1,3.550000E+00,2.855800E-01,4.319779E+01,1.500000E+01,Active Shallow Crust,1.288964E+02,8.999380E+01,0.000000E+00 +1682412,fr,3,3.650000E+00,2.855800E-01,4.319779E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1682424,fr,2,3.750000E+00,2.855800E-01,4.319779E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1682427,fr,1,3.750000E+00,2.855800E-01,4.319779E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801756E+01,0.000000E+00 +1682431,fr,1,3.750000E+00,2.855800E-01,4.319779E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +1682432,fr,1,3.750000E+00,2.855800E-01,4.319779E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +1682436,fr,1,3.850000E+00,2.855800E-01,4.319779E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1682438,fr,1,3.850000E+00,2.855800E-01,4.319779E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1682441,fr,1,3.850000E+00,2.855800E-01,4.319779E+01,2.750000E+01,Active Shallow Crust,2.400104E+02,5.799776E+01,0.000000E+00 +1682445,fr,1,3.850000E+00,2.855800E-01,4.319779E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999366E+01,0.000000E+00 +1682448,fr,1,3.950000E+00,2.855800E-01,4.319779E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1682449,fr,1,3.950000E+00,2.855800E-01,4.319779E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1682454,fr,1,3.950000E+00,2.855800E-01,4.319779E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +1682469,fr,1,4.050000E+00,2.855800E-01,4.319779E+01,5.000000E+00,Active Shallow Crust,1.288909E+02,8.999367E+01,0.000000E+00 +1682477,fr,1,4.150000E+00,2.855800E-01,4.319779E+01,2.750000E+01,Active Shallow Crust,2.400079E+02,5.799720E+01,0.000000E+00 +1682479,fr,1,4.150000E+00,2.855800E-01,4.319779E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +1682497,fr,1,4.350000E+00,2.855800E-01,4.319779E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1682516,fr,1,4.450000E+00,2.855800E-01,4.319779E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +1682521,fr,1,4.550000E+00,2.855800E-01,4.319779E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1682568,fr,1,4.950000E+00,2.855800E-01,4.319779E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1682721,fr,1,6.150000E+00,2.855786E-01,4.319779E+01,6.011322E+00,Active Shallow Crust,1.288609E+02,8.998977E+01,0.000000E+00 +1682880,fr,1,3.550000E+00,3.523950E+00,4.161655E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +1682892,fr,2,3.650000E+00,3.523950E+00,4.161655E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1682904,fr,2,3.750000E+00,3.523950E+00,4.161655E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999102E+01,0.000000E+00 +1682916,fr,1,3.850000E+00,3.523950E+00,4.161655E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1682922,fr,1,3.850000E+00,3.523950E+00,4.161655E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,-9.000000E+01 +1682953,fr,1,4.150000E+00,3.523950E+00,4.161655E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +1683366,fr,1,3.550000E+00,1.907670E+00,5.075809E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,-9.000000E+01 +1683384,fr,3,3.750000E+00,1.907670E+00,5.075809E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1683397,fr,1,3.850000E+00,1.907670E+00,5.075809E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +1683405,fr,1,3.850000E+00,1.907670E+00,5.075809E+01,5.000000E+00,Active Shallow Crust,1.288951E+02,8.999323E+01,0.000000E+00 +1683434,fr,1,4.150000E+00,1.907670E+00,5.075809E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +1683438,fr,1,4.150000E+00,1.907670E+00,5.075809E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,-9.000000E+01 +1683463,fr,1,4.350000E+00,1.907670E+00,5.075809E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,-9.000000E+01 +1683564,fr,1,5.250000E+00,1.907670E+00,5.075809E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1683846,fr,1,3.550000E+00,3.692750E+00,5.118757E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,-9.000000E+01 +1683852,fr,1,3.650000E+00,3.692750E+00,5.118757E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998873E+01,0.000000E+00 +1683878,fr,1,3.850000E+00,3.692750E+00,5.118757E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999105E+01,0.000000E+00 +1683901,fr,1,4.050000E+00,3.692750E+00,5.118757E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1683921,fr,1,4.150000E+00,3.692750E+00,5.118757E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999367E+01,0.000000E+00 +1683938,fr,1,4.350000E+00,3.692750E+00,5.118757E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1683960,fr,1,4.550000E+00,3.692750E+00,5.118757E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1683987,fr,1,4.750000E+00,3.692750E+00,5.118757E+01,5.000000E+00,Active Shallow Crust,2.400095E+02,5.800470E+01,0.000000E+00 +1684032,fr,1,5.150000E+00,3.692750E+00,5.118757E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1684320,fr,3,3.550000E+00,7.684480E+00,4.820068E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999328E+01,0.000000E+00 +1684321,fr,4,3.550000E+00,7.684480E+00,4.820068E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999328E+01,0.000000E+00 +1684323,fr,1,3.550000E+00,7.684480E+00,4.820068E+01,5.000000E+00,Active Shallow Crust,2.400129E+02,5.799730E+01,0.000000E+00 +1684324,fr,1,3.550000E+00,7.684480E+00,4.820068E+01,1.500000E+01,Active Shallow Crust,2.400129E+02,5.799730E+01,0.000000E+00 +1684329,fr,1,3.550000E+00,7.684480E+00,4.820068E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999328E+01,0.000000E+00 +1684332,fr,3,3.650000E+00,7.684480E+00,4.820068E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998802E+01,0.000000E+00 +1684333,fr,1,3.650000E+00,7.684480E+00,4.820068E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998802E+01,0.000000E+00 +1684344,fr,5,3.750000E+00,7.684480E+00,4.820068E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +1684345,fr,2,3.750000E+00,7.684480E+00,4.820068E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +1684346,fr,2,3.750000E+00,7.684480E+00,4.820068E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +1684347,fr,1,3.750000E+00,7.684480E+00,4.820068E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.801756E+01,0.000000E+00 +1684351,fr,1,3.750000E+00,7.684480E+00,4.820068E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,-9.000000E+01 +1684353,fr,1,3.750000E+00,7.684480E+00,4.820068E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.996752E+01,0.000000E+00 +1684356,fr,2,3.850000E+00,7.684480E+00,4.820068E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1684357,fr,2,3.850000E+00,7.684480E+00,4.820068E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1684358,fr,1,3.850000E+00,7.684480E+00,4.820068E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1684359,fr,2,3.850000E+00,7.684480E+00,4.820068E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799867E+01,0.000000E+00 +1684365,fr,1,3.850000E+00,7.684480E+00,4.820068E+01,5.000000E+00,Active Shallow Crust,1.288943E+02,8.999524E+01,0.000000E+00 +1684368,fr,2,3.950000E+00,7.684480E+00,4.820068E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999152E+01,0.000000E+00 +1684369,fr,2,3.950000E+00,7.684480E+00,4.820068E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999152E+01,0.000000E+00 +1684380,fr,1,4.050000E+00,7.684480E+00,4.820068E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +1684381,fr,2,4.050000E+00,7.684480E+00,4.820068E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +1684388,fr,1,4.050000E+00,7.684480E+00,4.820068E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998853E+01,-9.000000E+01 +1684389,fr,1,4.050000E+00,7.684480E+00,4.820068E+01,5.000000E+00,Active Shallow Crust,1.288907E+02,8.999244E+01,0.000000E+00 +1684392,fr,2,4.150000E+00,7.684480E+00,4.820068E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1684395,fr,1,4.150000E+00,7.684480E+00,4.820068E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.799728E+01,0.000000E+00 +1684401,fr,1,4.150000E+00,7.684480E+00,4.820068E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.999326E+01,0.000000E+00 +1684405,fr,1,4.250000E+00,7.684480E+00,4.820068E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999099E+01,0.000000E+00 +1684408,fr,2,4.250000E+00,7.684480E+00,4.820068E+01,1.500000E+01,Active Shallow Crust,2.400075E+02,5.799445E+01,0.000000E+00 +1684416,fr,2,4.350000E+00,7.684480E+00,4.820068E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +1684444,fr,1,4.550000E+00,7.684480E+00,4.820068E+01,1.500000E+01,Active Shallow Crust,2.400095E+02,5.799772E+01,0.000000E+00 +1684445,fr,1,4.550000E+00,7.684480E+00,4.820068E+01,2.750000E+01,Active Shallow Crust,2.400095E+02,5.799769E+01,0.000000E+00 +1684500,fr,1,5.050000E+00,7.684480E+00,4.820068E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1684526,fr,2,5.250000E+00,7.684480E+00,4.820068E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1684531,fr,1,5.250000E+00,7.684480E+00,4.820068E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,-9.000000E+01 +1684549,fr,1,5.450000E+00,7.684480E+00,4.820068E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1685286,fr,1,3.550000E+00,6.650360E+00,4.377612E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999264E+01,-9.000000E+01 +1685288,fr,1,3.550000E+00,6.650360E+00,4.377612E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999264E+01,-9.000000E+01 +1685290,fr,1,3.550000E+00,6.650360E+00,4.377612E+01,1.500000E+01,Active Shallow Crust,1.288960E+02,8.999636E+01,0.000000E+00 +1685292,fr,1,3.650000E+00,6.650360E+00,4.377612E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998702E+01,0.000000E+00 +1685293,fr,2,3.650000E+00,6.650360E+00,4.377612E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998702E+01,0.000000E+00 +1685304,fr,3,3.750000E+00,6.650360E+00,4.377612E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +1685305,fr,1,3.750000E+00,6.650360E+00,4.377612E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +1685321,fr,1,3.850000E+00,6.650360E+00,4.377612E+01,2.750000E+01,Active Shallow Crust,2.400104E+02,5.799797E+01,0.000000E+00 +1685325,fr,1,3.850000E+00,6.650360E+00,4.377612E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999227E+01,0.000000E+00 +1685328,fr,1,3.950000E+00,6.650360E+00,4.377612E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +1685334,fr,1,3.950000E+00,6.650360E+00,4.377612E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999071E+01,-9.000000E+01 +1685342,fr,1,4.050000E+00,6.650360E+00,4.377612E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999181E+01,0.000000E+00 +1685349,fr,1,4.050000E+00,6.650360E+00,4.377612E+01,5.000000E+00,Active Shallow Crust,1.288906E+02,8.999386E+01,0.000000E+00 +1685352,fr,1,4.150000E+00,6.650360E+00,4.377612E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998905E+01,0.000000E+00 +1685376,fr,1,4.350000E+00,6.650360E+00,4.377612E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999130E+01,0.000000E+00 +1685385,fr,1,4.350000E+00,6.650360E+00,4.377612E+01,5.000000E+00,Active Shallow Crust,1.288980E+02,8.998293E+01,0.000000E+00 +1685450,fr,1,4.950000E+00,6.650360E+00,4.377612E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1685482,fr,1,5.150000E+00,6.650360E+00,4.377612E+01,1.500000E+01,Active Shallow Crust,1.288849E+02,8.999099E+01,0.000000E+00 +1685763,fr,1,3.550000E+00,2.996430E+00,4.680610E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799809E+01,0.000000E+00 +1685796,fr,1,3.850000E+00,2.996430E+00,4.680610E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1685809,fr,1,3.950000E+00,2.996430E+00,4.680610E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +1685823,fr,1,4.050000E+00,2.996430E+00,4.680610E+01,5.000000E+00,Active Shallow Crust,2.400063E+02,5.800563E+01,0.000000E+00 +1685833,fr,1,4.150000E+00,2.996430E+00,4.680610E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +1685868,fr,1,4.450000E+00,2.996430E+00,4.680610E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1685910,fr,1,4.750000E+00,2.996430E+00,4.680610E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,-9.000000E+01 +1686253,fr,1,3.650000E+00,-1.358200E+00,5.033938E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1686271,fr,1,3.750000E+00,-1.358200E+00,5.033938E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +1686337,fr,1,4.350000E+00,-1.358200E+00,5.033938E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1686360,fr,1,4.550000E+00,-1.358200E+00,5.033938E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1686720,fr,1,3.550000E+00,-7.407000E-01,4.878791E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1686741,fr,1,3.650000E+00,-7.407000E-01,4.878791E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.996351E+01,0.000000E+00 +1686744,fr,1,3.750000E+00,-7.407000E-01,4.878791E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1686768,fr,1,3.950000E+00,-7.407000E-01,4.878791E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1686769,fr,1,3.950000E+00,-7.407000E-01,4.878791E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1686781,fr,1,4.050000E+00,-7.407000E-01,4.878791E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1686792,fr,2,4.150000E+00,-7.407000E-01,4.878791E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1686794,fr,1,4.150000E+00,-7.407000E-01,4.878791E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1686804,fr,1,4.250000E+00,-7.407000E-01,4.878791E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1686823,fr,1,4.350000E+00,-7.407000E-01,4.878791E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1686828,fr,1,4.450000E+00,-7.407000E-01,4.878791E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1686832,fr,1,4.450000E+00,-7.407000E-01,4.878791E+01,1.500000E+01,Active Shallow Crust,2.400058E+02,5.799480E+01,0.000000E+00 +1687440,fr,1,5.550000E+00,-1.551360E+00,4.411297E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1687680,fr,7,3.550000E+00,-1.500090E+00,4.698444E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1687681,fr,1,3.550000E+00,-1.500090E+00,4.698444E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1687682,fr,1,3.550000E+00,-1.500090E+00,4.698444E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1687683,fr,1,3.550000E+00,-1.500090E+00,4.698444E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799832E+01,0.000000E+00 +1687686,fr,1,3.550000E+00,-1.500090E+00,4.698444E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,-9.000000E+01 +1687692,fr,3,3.650000E+00,-1.500090E+00,4.698444E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1687693,fr,1,3.650000E+00,-1.500090E+00,4.698444E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1687702,fr,1,3.650000E+00,-1.500090E+00,4.698444E+01,1.500000E+01,Active Shallow Crust,1.289003E+02,8.996339E+01,0.000000E+00 +1687704,fr,2,3.750000E+00,-1.500090E+00,4.698444E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +1687705,fr,1,3.750000E+00,-1.500090E+00,4.698444E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +1687706,fr,2,3.750000E+00,-1.500090E+00,4.698444E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +1687728,fr,1,3.950000E+00,-1.500090E+00,4.698444E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1687737,fr,1,3.950000E+00,-1.500090E+00,4.698444E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.999349E+01,0.000000E+00 +1687741,fr,1,4.050000E+00,-1.500090E+00,4.698444E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1687742,fr,1,4.050000E+00,-1.500090E+00,4.698444E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1687752,fr,2,4.150000E+00,-1.500090E+00,4.698444E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1687776,fr,1,4.350000E+00,-1.500090E+00,4.698444E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +1687812,fr,1,4.650000E+00,-1.500090E+00,4.698444E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1687830,fr,1,4.750000E+00,-1.500090E+00,4.698444E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +1687849,fr,1,4.950000E+00,-1.500090E+00,4.698444E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1687875,fr,1,5.150000E+00,-1.500090E+00,4.698444E+01,5.000000E+00,Active Shallow Crust,2.400200E+02,5.800000E+01,0.000000E+00 +1688165,fr,1,3.550000E+00,4.610310E+00,4.190544E+01,2.750000E+01,Active Shallow Crust,2.400124E+02,5.799744E+01,0.000000E+00 +1688176,fr,1,3.650000E+00,4.610310E+00,4.190544E+01,1.500000E+01,Active Shallow Crust,2.400003E+02,5.801320E+01,0.000000E+00 +1688232,fr,1,4.150000E+00,4.610310E+00,4.190544E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +1688304,fr,1,4.750000E+00,4.610310E+00,4.190544E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +1688640,fr,1,3.550000E+00,2.314960E+00,4.868982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1688652,fr,1,3.650000E+00,2.314960E+00,4.868982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +1688686,fr,1,3.850000E+00,2.314960E+00,4.868982E+01,1.500000E+01,Active Shallow Crust,1.288956E+02,8.999411E+01,0.000000E+00 +1688778,fr,1,4.650000E+00,2.314960E+00,4.868982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,-9.000000E+01 +1689120,fr,1,3.550000E+00,-2.436390E+00,4.346420E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998902E+01,0.000000E+00 +1689127,fr,1,3.550000E+00,-2.436390E+00,4.346420E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998889E+01,-9.000000E+01 +1689149,fr,1,3.750000E+00,-2.436390E+00,4.346420E+01,2.750000E+01,Active Shallow Crust,2.400079E+02,5.801754E+01,0.000000E+00 +1689153,fr,1,3.750000E+00,-2.436390E+00,4.346420E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.996744E+01,0.000000E+00 +1689172,fr,1,3.950000E+00,-2.436390E+00,4.346420E+01,1.500000E+01,Active Shallow Crust,2.400193E+02,5.800507E+01,0.000000E+00 +1689204,fr,1,4.250000E+00,-2.436390E+00,4.346420E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1689205,fr,1,4.250000E+00,-2.436390E+00,4.346420E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1689360,fr,1,5.550000E+00,-2.436390E+00,4.346420E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1689600,fr,1,3.550000E+00,3.806500E-01,4.964911E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1689603,fr,1,3.550000E+00,3.806500E-01,4.964911E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799823E+01,0.000000E+00 +1689607,fr,2,3.550000E+00,3.806500E-01,4.964911E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +1689615,fr,1,3.650000E+00,3.806500E-01,4.964911E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801291E+01,0.000000E+00 +1689625,fr,1,3.750000E+00,3.806500E-01,4.964911E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1689633,fr,1,3.750000E+00,3.806500E-01,4.964911E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.996735E+01,0.000000E+00 +1689636,fr,1,3.850000E+00,3.806500E-01,4.964911E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1689639,fr,1,3.850000E+00,3.806500E-01,4.964911E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799786E+01,0.000000E+00 +1689645,fr,1,3.850000E+00,3.806500E-01,4.964911E+01,5.000000E+00,Active Shallow Crust,1.288953E+02,8.999364E+01,0.000000E+00 +1689648,fr,2,3.950000E+00,3.806500E-01,4.964911E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1689672,fr,1,4.150000E+00,3.806500E-01,4.964911E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1689723,fr,1,4.550000E+00,3.806500E-01,4.964911E+01,5.000000E+00,Active Shallow Crust,2.400103E+02,5.799752E+01,0.000000E+00 +1689816,fr,1,5.350000E+00,3.806500E-01,4.964911E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1690560,fr,2,3.550000E+00,9.440000E-02,4.657055E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1690561,fr,1,3.550000E+00,9.440000E-02,4.657055E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1690563,fr,1,3.550000E+00,9.440000E-02,4.657055E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799818E+01,0.000000E+00 +1690572,fr,1,3.650000E+00,9.440000E-02,4.657055E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1690574,fr,1,3.650000E+00,9.440000E-02,4.657055E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1690584,fr,1,3.750000E+00,9.440000E-02,4.657055E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1690587,fr,2,3.750000E+00,9.440000E-02,4.657055E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801757E+01,0.000000E+00 +1690608,fr,1,3.950000E+00,9.440000E-02,4.657055E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1690611,fr,1,3.950000E+00,9.440000E-02,4.657055E+01,5.000000E+00,Active Shallow Crust,2.400198E+02,5.800499E+01,0.000000E+00 +1690612,fr,1,3.950000E+00,9.440000E-02,4.657055E+01,1.500000E+01,Active Shallow Crust,2.400198E+02,5.800499E+01,0.000000E+00 +1690620,fr,1,4.050000E+00,9.440000E-02,4.657055E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1690634,fr,1,4.150000E+00,9.440000E-02,4.657055E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1691521,fr,1,3.550000E+00,1.731470E+00,4.840072E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1691545,fr,1,3.750000E+00,1.731470E+00,4.840072E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +1692000,fr,1,3.550000E+00,8.604700E-01,4.795742E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1692012,fr,1,3.650000E+00,8.604700E-01,4.795742E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1692045,fr,1,3.850000E+00,8.604700E-01,4.795742E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999373E+01,0.000000E+00 +1692084,fr,1,4.250000E+00,8.604700E-01,4.795742E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1692085,fr,1,4.250000E+00,8.604700E-01,4.795742E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1692480,fr,3,3.550000E+00,7.970430E+00,4.861362E+01,5.000000E+00,Active Shallow Crust,3.599967E+02,8.999333E+01,0.000000E+00 +1692481,fr,1,3.550000E+00,7.970430E+00,4.861362E+01,1.500000E+01,Active Shallow Crust,3.599967E+02,8.999333E+01,0.000000E+00 +1692483,fr,1,3.550000E+00,7.970430E+00,4.861362E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799849E+01,0.000000E+00 +1692484,fr,1,3.550000E+00,7.970430E+00,4.861362E+01,1.500000E+01,Active Shallow Crust,2.400123E+02,5.799849E+01,0.000000E+00 +1692489,fr,1,3.550000E+00,7.970430E+00,4.861362E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.999333E+01,0.000000E+00 +1692492,fr,3,3.650000E+00,7.970430E+00,4.861362E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998811E+01,0.000000E+00 +1692493,fr,1,3.650000E+00,7.970430E+00,4.861362E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998811E+01,0.000000E+00 +1692502,fr,1,3.650000E+00,7.970430E+00,4.861362E+01,1.500000E+01,Active Shallow Crust,1.288996E+02,8.996356E+01,0.000000E+00 +1692504,fr,2,3.750000E+00,7.970430E+00,4.861362E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998941E+01,0.000000E+00 +1692506,fr,1,3.750000E+00,7.970430E+00,4.861362E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998941E+01,0.000000E+00 +1692516,fr,2,3.850000E+00,7.970430E+00,4.861362E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +1692518,fr,1,3.850000E+00,7.970430E+00,4.861362E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +1692520,fr,2,3.850000E+00,7.970430E+00,4.861362E+01,1.500000E+01,Active Shallow Crust,2.400112E+02,5.799869E+01,0.000000E+00 +1692525,fr,1,3.850000E+00,7.970430E+00,4.861362E+01,5.000000E+00,Active Shallow Crust,1.288955E+02,8.999292E+01,0.000000E+00 +1692528,fr,2,3.950000E+00,7.970430E+00,4.861362E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999158E+01,0.000000E+00 +1692529,fr,1,3.950000E+00,7.970430E+00,4.861362E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999158E+01,0.000000E+00 +1692550,fr,1,4.050000E+00,7.970430E+00,4.861362E+01,1.500000E+01,Active Shallow Crust,1.288911E+02,8.999250E+01,0.000000E+00 +1692552,fr,1,4.150000E+00,7.970430E+00,4.861362E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1692567,fr,1,4.250000E+00,7.970430E+00,4.861362E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799410E+01,0.000000E+00 +1692576,fr,1,4.350000E+00,7.970430E+00,4.861362E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +1692579,fr,1,4.350000E+00,7.970430E+00,4.861362E+01,5.000000E+00,Active Shallow Crust,2.400095E+02,5.799587E+01,0.000000E+00 +1692594,fr,1,4.450000E+00,7.970430E+00,4.861362E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,-9.000000E+01 +1692643,fr,1,4.850000E+00,7.970430E+00,4.861362E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,-9.000000E+01 +1692702,fr,1,5.350000E+00,7.970430E+00,4.861362E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,-9.000000E+01 +1692962,fr,1,3.550000E+00,3.373860E+00,4.712076E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +1692972,fr,1,3.650000E+00,3.373860E+00,4.712076E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +1693044,fr,1,4.250000E+00,3.373860E+00,4.712076E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1693080,fr,1,4.550000E+00,3.373860E+00,4.712076E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1693560,fr,1,4.550000E+00,4.089270E+00,5.271251E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +1693920,fr,2,3.550000E+00,2.492720E+00,4.659787E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +1693932,fr,1,3.650000E+00,2.492720E+00,4.659787E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +1693945,fr,1,3.750000E+00,2.492720E+00,4.659787E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998899E+01,0.000000E+00 +1693948,fr,1,3.750000E+00,2.492720E+00,4.659787E+01,1.500000E+01,Active Shallow Crust,2.400080E+02,5.801764E+01,0.000000E+00 +1694028,fr,1,4.450000E+00,2.492720E+00,4.659787E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1694106,fr,1,5.050000E+00,2.492720E+00,4.659787E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +1694400,fr,3,3.550000E+00,-1.380460E+00,4.247656E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +1694401,fr,1,3.550000E+00,-1.380460E+00,4.247656E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +1694402,fr,1,3.550000E+00,-1.380460E+00,4.247656E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +1694406,fr,1,3.550000E+00,-1.380460E+00,4.247656E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,-9.000000E+01 +1694415,fr,1,3.650000E+00,-1.380460E+00,4.247656E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801278E+01,0.000000E+00 +1694441,fr,1,3.850000E+00,-1.380460E+00,4.247656E+01,2.750000E+01,Active Shallow Crust,2.400102E+02,5.799760E+01,0.000000E+00 +1694445,fr,1,3.850000E+00,-1.380460E+00,4.247656E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999408E+01,0.000000E+00 +1694448,fr,3,3.950000E+00,-1.380460E+00,4.247656E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +1694452,fr,1,3.950000E+00,-1.380460E+00,4.247656E+01,1.500000E+01,Active Shallow Crust,2.400193E+02,5.800483E+01,0.000000E+00 +1694457,fr,1,3.950000E+00,-1.380460E+00,4.247656E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.999355E+01,0.000000E+00 +1694463,fr,1,4.050000E+00,-1.380460E+00,4.247656E+01,5.000000E+00,Active Shallow Crust,2.400053E+02,5.800581E+01,0.000000E+00 +1694469,fr,1,4.050000E+00,-1.380460E+00,4.247656E+01,5.000000E+00,Active Shallow Crust,1.288909E+02,8.999373E+01,0.000000E+00 +1694472,fr,1,4.150000E+00,-1.380460E+00,4.247656E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1694484,fr,1,4.250000E+00,-1.380460E+00,4.247656E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1694523,fr,1,4.550000E+00,-1.380460E+00,4.247656E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799710E+01,0.000000E+00 +1694571,fr,1,4.950000E+00,-1.380460E+00,4.247656E+01,5.000000E+00,Active Shallow Crust,2.400102E+02,5.800415E+01,0.000000E+00 +1694574,fr,1,4.950000E+00,-1.380460E+00,4.247656E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,-9.000000E+01 +1694915,fr,1,3.750000E+00,9.580120E+00,4.966058E+01,2.750000E+01,Active Shallow Crust,1.288941E+02,8.996754E+01,0.000000E+00 +1695360,fr,1,3.550000E+00,-3.107380E+00,4.240843E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998883E+01,0.000000E+00 +1695362,fr,1,3.550000E+00,-3.107380E+00,4.240843E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998883E+01,0.000000E+00 +1695366,fr,1,3.550000E+00,-3.107380E+00,4.240843E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998870E+01,-9.000000E+01 +1695369,fr,1,3.550000E+00,-3.107380E+00,4.240843E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999442E+01,0.000000E+00 +1695468,fr,1,4.450000E+00,-3.107380E+00,4.240843E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1695482,fr,1,4.550000E+00,-3.107380E+00,4.240843E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +1696326,fr,1,3.550000E+00,2.231450E+00,4.087977E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998843E+01,-9.000000E+01 +1696332,fr,1,3.650000E+00,2.231450E+00,4.087977E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1696344,fr,1,3.750000E+00,2.231450E+00,4.087977E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +1696356,fr,1,3.850000E+00,2.231450E+00,4.087977E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1696368,fr,1,3.950000E+00,2.231450E+00,4.087977E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +1696371,fr,1,3.950000E+00,2.231450E+00,4.087977E+01,5.000000E+00,Active Shallow Crust,2.400192E+02,5.800474E+01,0.000000E+00 +1696429,fr,1,4.450000E+00,2.231450E+00,4.087977E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +1696483,fr,1,4.850000E+00,2.231450E+00,4.087977E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998964E+01,-9.000000E+01 +1696836,fr,1,3.850000E+00,6.134030E+00,4.291096E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +1696887,fr,1,4.250000E+00,6.134030E+00,4.291096E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.799460E+01,0.000000E+00 +1697412,fr,1,4.650000E+00,3.516080E+00,5.156744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +1698241,fr,1,3.550000E+00,3.578710E+00,4.309879E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +1698252,fr,1,3.650000E+00,3.578710E+00,4.309879E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1698255,fr,1,3.650000E+00,3.578710E+00,4.309879E+01,5.000000E+00,Active Shallow Crust,2.400006E+02,5.801317E+01,0.000000E+00 +1698265,fr,2,3.750000E+00,3.578710E+00,4.309879E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +1698276,fr,1,3.850000E+00,3.578710E+00,4.309879E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +1698288,fr,1,3.950000E+00,3.578710E+00,4.309879E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999071E+01,0.000000E+00 +1698292,fr,1,3.950000E+00,3.578710E+00,4.309879E+01,1.500000E+01,Active Shallow Crust,2.400195E+02,5.800520E+01,0.000000E+00 +1698315,fr,1,4.150000E+00,3.578710E+00,4.309879E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799706E+01,0.000000E+00 +1698381,fr,1,4.650000E+00,3.578710E+00,4.309879E+01,5.000000E+00,Active Shallow Crust,1.288921E+02,8.998704E+01,0.000000E+00 +1698781,fr,1,4.050000E+00,4.569390E+00,4.907105E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +1699209,fr,1,3.550000E+00,6.200080E+00,4.464995E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999283E+01,0.000000E+00 +1699218,fr,1,3.650000E+00,6.200080E+00,4.464995E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998707E+01,-9.000000E+01 +1699246,fr,1,3.850000E+00,6.200080E+00,4.464995E+01,1.500000E+01,Active Shallow Crust,1.288967E+02,8.999239E+01,0.000000E+00 +1699264,fr,1,4.050000E+00,6.200080E+00,4.464995E+01,1.500000E+01,Active Shallow Crust,2.400063E+02,5.800578E+01,0.000000E+00 +1699272,fr,1,4.150000E+00,6.200080E+00,4.464995E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +1699296,fr,1,4.350000E+00,6.200080E+00,4.464995E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998858E+01,0.000000E+00 +1699472,fr,1,5.750000E+00,6.200080E+00,4.464995E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,-9.000000E+01 +1699702,fr,1,3.650000E+00,4.052770E+00,5.110113E+01,1.500000E+01,Active Shallow Crust,1.288998E+02,8.996362E+01,0.000000E+00 +1699716,fr,1,3.850000E+00,4.052770E+00,5.110113E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +1699729,fr,1,3.950000E+00,4.052770E+00,5.110113E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998801E+01,0.000000E+00 +1699801,fr,1,4.550000E+00,4.052770E+00,5.110113E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1700167,fr,1,3.550000E+00,7.291440E+00,4.853724E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999325E+01,-9.000000E+01 +1700172,fr,1,3.650000E+00,7.291440E+00,4.853724E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998810E+01,0.000000E+00 +1700176,fr,1,3.650000E+00,7.291440E+00,4.853724E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801313E+01,0.000000E+00 +1700196,fr,2,3.850000E+00,7.291440E+00,4.853724E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +1700208,fr,1,3.950000E+00,7.291440E+00,4.853724E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999158E+01,0.000000E+00 +1700211,fr,1,3.950000E+00,7.291440E+00,4.853724E+01,5.000000E+00,Active Shallow Crust,2.400201E+02,5.800485E+01,0.000000E+00 +1700212,fr,1,3.950000E+00,7.291440E+00,4.853724E+01,1.500000E+01,Active Shallow Crust,2.400201E+02,5.800485E+01,0.000000E+00 +1700229,fr,1,4.050000E+00,7.291440E+00,4.853724E+01,5.000000E+00,Active Shallow Crust,1.288912E+02,8.999249E+01,0.000000E+00 +1700256,fr,1,4.350000E+00,7.291440E+00,4.853724E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +1700640,fr,1,3.550000E+00,1.168200E-01,4.549326E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1700643,fr,1,3.550000E+00,1.168200E-01,4.549326E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799815E+01,0.000000E+00 +1700647,fr,1,3.550000E+00,1.168200E-01,4.549326E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +1700652,fr,1,3.650000E+00,1.168200E-01,4.549326E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1700664,fr,2,3.750000E+00,1.168200E-01,4.549326E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1700680,fr,1,3.850000E+00,1.168200E-01,4.549326E+01,1.500000E+01,Active Shallow Crust,2.400107E+02,5.799777E+01,0.000000E+00 +1700700,fr,1,4.050000E+00,1.168200E-01,4.549326E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1700737,fr,1,4.350000E+00,1.168200E-01,4.549326E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1700754,fr,1,4.450000E+00,1.168200E-01,4.549326E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1700871,fr,1,5.450000E+00,1.168200E-01,4.549326E+01,5.000000E+00,Active Shallow Crust,2.400280E+02,5.799834E+01,0.000000E+00 +1701132,fr,1,3.650000E+00,-2.273290E+00,4.786590E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999096E+01,0.000000E+00 +1701135,fr,1,3.650000E+00,-2.273290E+00,4.786590E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801321E+01,0.000000E+00 +1701144,fr,1,3.750000E+00,-2.273290E+00,4.786590E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +1701165,fr,1,3.850000E+00,-2.273290E+00,4.786590E+01,5.000000E+00,Active Shallow Crust,1.288953E+02,8.999401E+01,0.000000E+00 +1701206,fr,1,4.250000E+00,-2.273290E+00,4.786590E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1701217,fr,1,4.350000E+00,-2.273290E+00,4.786590E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +1701229,fr,1,4.450000E+00,-2.273290E+00,4.786590E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1701606,fr,1,3.550000E+00,6.921400E-01,4.214451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,-9.000000E+01 +1701610,fr,1,3.550000E+00,6.921400E-01,4.214451E+01,1.500000E+01,Active Shallow Crust,1.288967E+02,8.999346E+01,0.000000E+00 +1701615,fr,1,3.650000E+00,6.921400E-01,4.214451E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801281E+01,0.000000E+00 +1701648,fr,1,3.950000E+00,6.921400E-01,4.214451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1701650,fr,1,3.950000E+00,6.921400E-01,4.214451E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1701660,fr,2,4.050000E+00,6.921400E-01,4.214451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1701738,fr,1,4.650000E+00,6.921400E-01,4.214451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +1702101,fr,1,3.650000E+00,6.260650E+00,4.853986E+01,5.000000E+00,Active Shallow Crust,1.288998E+02,8.996356E+01,0.000000E+00 +1702106,fr,1,3.750000E+00,6.260650E+00,4.853986E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +1702117,fr,1,3.850000E+00,6.260650E+00,4.853986E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +1702170,fr,1,4.250000E+00,6.260650E+00,4.853986E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999095E+01,-9.000000E+01 +1702201,fr,1,4.550000E+00,6.260650E+00,4.853986E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +1702236,fr,1,4.850000E+00,6.260650E+00,4.853986E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +1702560,fr,1,3.550000E+00,8.868700E-01,5.084958E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1702564,fr,1,3.550000E+00,8.868700E-01,5.084958E+01,1.500000E+01,Active Shallow Crust,2.400125E+02,5.799835E+01,0.000000E+00 +1702575,fr,1,3.650000E+00,8.868700E-01,5.084958E+01,5.000000E+00,Active Shallow Crust,2.400015E+02,5.801307E+01,0.000000E+00 +1702610,fr,1,3.950000E+00,8.868700E-01,5.084958E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1702732,fr,1,4.950000E+00,8.868700E-01,5.084958E+01,1.500000E+01,Active Shallow Crust,2.400141E+02,5.800486E+01,0.000000E+00 +1703520,fr,2,3.550000E+00,9.075580E+00,4.809241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998653E+01,0.000000E+00 +1703521,fr,3,3.550000E+00,9.075580E+00,4.809241E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998653E+01,0.000000E+00 +1703523,fr,1,3.550000E+00,9.075580E+00,4.809241E+01,5.000000E+00,Active Shallow Crust,2.400148E+02,5.799799E+01,0.000000E+00 +1703528,fr,1,3.550000E+00,9.075580E+00,4.809241E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998637E+01,-9.000000E+01 +1703529,fr,1,3.550000E+00,9.075580E+00,4.809241E+01,5.000000E+00,Active Shallow Crust,1.288945E+02,8.999326E+01,0.000000E+00 +1703532,fr,2,3.650000E+00,9.075580E+00,4.809241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998799E+01,0.000000E+00 +1703533,fr,1,3.650000E+00,9.075580E+00,4.809241E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998799E+01,0.000000E+00 +1703537,fr,1,3.650000E+00,9.075580E+00,4.809241E+01,2.750000E+01,Active Shallow Crust,2.400006E+02,5.801267E+01,0.000000E+00 +1703538,fr,1,3.650000E+00,9.075580E+00,4.809241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998785E+01,-9.000000E+01 +1703541,fr,2,3.650000E+00,9.075580E+00,4.809241E+01,5.000000E+00,Active Shallow Crust,1.288982E+02,8.996355E+01,0.000000E+00 +1703545,fr,1,3.750000E+00,9.075580E+00,4.809241E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +1703557,fr,1,3.850000E+00,9.075580E+00,4.809241E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1703558,fr,1,3.850000E+00,9.075580E+00,4.809241E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1703574,fr,1,3.950000E+00,9.075580E+00,4.809241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999140E+01,-9.000000E+01 +1703580,fr,1,4.050000E+00,9.075580E+00,4.809241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999242E+01,0.000000E+00 +1703592,fr,1,4.150000E+00,9.075580E+00,4.809241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999325E+01,0.000000E+00 +1703604,fr,1,4.250000E+00,9.075580E+00,4.809241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998797E+01,0.000000E+00 +1703617,fr,1,4.350000E+00,9.075580E+00,4.809241E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1703618,fr,1,4.350000E+00,9.075580E+00,4.809241E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1703619,fr,1,4.350000E+00,9.075580E+00,4.809241E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.799619E+01,0.000000E+00 +1703628,fr,1,4.450000E+00,9.075580E+00,4.809241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +1703631,fr,1,4.450000E+00,9.075580E+00,4.809241E+01,5.000000E+00,Active Shallow Crust,2.400067E+02,5.799457E+01,0.000000E+00 +1703640,fr,1,4.550000E+00,9.075580E+00,4.809241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999148E+01,0.000000E+00 +1703652,fr,1,4.650000E+00,9.075580E+00,4.809241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998861E+01,0.000000E+00 +1703653,fr,1,4.650000E+00,9.075580E+00,4.809241E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998861E+01,0.000000E+00 +1703681,fr,1,4.850000E+00,9.075580E+00,4.809241E+01,2.750000E+01,Active Shallow Crust,2.400181E+02,5.800250E+01,0.000000E+00 +1703736,fr,1,5.350000E+00,9.075580E+00,4.809241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1704008,fr,1,3.550000E+00,-3.002630E+00,4.928701E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +1704019,fr,1,3.650000E+00,-3.002630E+00,4.928701E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999110E+01,-9.000000E+01 +1704097,fr,1,4.350000E+00,-3.002630E+00,4.928701E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1704228,fr,1,5.450000E+00,-3.002630E+00,4.928701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1704444,fr,1,7.250000E+00,-3.002600E+00,4.928701E+01,1.750000E+01,Active Shallow Crust,3.600000E+02,8.998999E+01,0.000000E+00 +1704480,fr,2,3.550000E+00,2.135190E+00,4.140364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +1704481,fr,1,3.550000E+00,2.135190E+00,4.140364E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +1704489,fr,1,3.550000E+00,2.135190E+00,4.140364E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999433E+01,0.000000E+00 +1704492,fr,4,3.650000E+00,2.135190E+00,4.140364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1704493,fr,2,3.650000E+00,2.135190E+00,4.140364E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1704494,fr,1,3.650000E+00,2.135190E+00,4.140364E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1704507,fr,1,3.750000E+00,2.135190E+00,4.140364E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801696E+01,0.000000E+00 +1704516,fr,1,3.850000E+00,2.135190E+00,4.140364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +1704518,fr,1,3.850000E+00,2.135190E+00,4.140364E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +1704528,fr,1,3.950000E+00,2.135190E+00,4.140364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1704529,fr,1,3.950000E+00,2.135190E+00,4.140364E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1704541,fr,1,4.050000E+00,2.135190E+00,4.140364E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +1704555,fr,1,4.150000E+00,2.135190E+00,4.140364E+01,5.000000E+00,Active Shallow Crust,2.400075E+02,5.799729E+01,0.000000E+00 +1704573,fr,1,4.250000E+00,2.135190E+00,4.140364E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.998076E+01,0.000000E+00 +1704577,fr,1,4.350000E+00,2.135190E+00,4.140364E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1704583,fr,1,4.350000E+00,2.135190E+00,4.140364E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998934E+01,-9.000000E+01 +1704614,fr,1,4.650000E+00,2.135190E+00,4.140364E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +1704628,fr,1,4.750000E+00,2.135190E+00,4.140364E+01,1.500000E+01,Active Shallow Crust,2.400058E+02,5.800420E+01,0.000000E+00 +1704643,fr,1,4.850000E+00,2.135190E+00,4.140364E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,-9.000000E+01 +1704650,fr,1,4.950000E+00,2.135190E+00,4.140364E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1704960,fr,2,3.550000E+00,6.341160E+00,4.804195E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999326E+01,0.000000E+00 +1704963,fr,1,3.550000E+00,6.341160E+00,4.804195E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799882E+01,0.000000E+00 +1704972,fr,2,3.650000E+00,6.341160E+00,4.804195E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998798E+01,0.000000E+00 +1704973,fr,1,3.650000E+00,6.341160E+00,4.804195E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998798E+01,0.000000E+00 +1704975,fr,1,3.650000E+00,6.341160E+00,4.804195E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801281E+01,0.000000E+00 +1704981,fr,1,3.650000E+00,6.341160E+00,4.804195E+01,5.000000E+00,Active Shallow Crust,1.289009E+02,8.996355E+01,0.000000E+00 +1704996,fr,2,3.850000E+00,6.341160E+00,4.804195E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1705006,fr,1,3.850000E+00,6.341160E+00,4.804195E+01,1.500000E+01,Active Shallow Crust,1.288946E+02,8.999522E+01,0.000000E+00 +1705011,fr,1,3.950000E+00,6.341160E+00,4.804195E+01,5.000000E+00,Active Shallow Crust,2.400205E+02,5.800524E+01,0.000000E+00 +1705017,fr,1,3.950000E+00,6.341160E+00,4.804195E+01,5.000000E+00,Active Shallow Crust,1.288994E+02,8.999362E+01,0.000000E+00 +1705020,fr,1,4.050000E+00,6.341160E+00,4.804195E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +1705032,fr,1,4.150000E+00,6.341160E+00,4.804195E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1705035,fr,1,4.150000E+00,6.341160E+00,4.804195E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799670E+01,0.000000E+00 +1705047,fr,1,4.250000E+00,6.341160E+00,4.804195E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799368E+01,0.000000E+00 +1705056,fr,1,4.350000E+00,6.341160E+00,4.804195E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1705069,fr,2,4.450000E+00,6.341160E+00,4.804195E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1705083,fr,1,4.550000E+00,6.341160E+00,4.804195E+01,5.000000E+00,Active Shallow Crust,2.400095E+02,5.799768E+01,0.000000E+00 +1705086,fr,1,4.550000E+00,6.341160E+00,4.804195E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998921E+01,-9.000000E+01 +1705092,fr,1,4.650000E+00,6.341160E+00,4.804195E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +1705143,fr,1,5.050000E+00,6.341160E+00,4.804195E+01,5.000000E+00,Active Shallow Crust,2.400229E+02,5.799760E+01,0.000000E+00 +1705203,fr,1,5.550000E+00,6.341160E+00,4.804195E+01,5.000000E+00,Active Shallow Crust,2.400341E+02,5.799979E+01,0.000000E+00 +1705204,fr,1,5.550000E+00,6.341160E+00,4.804195E+01,1.500000E+01,Active Shallow Crust,2.400341E+02,5.799980E+01,0.000000E+00 +1705440,fr,4,3.550000E+00,7.697210E+00,4.730558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999316E+01,0.000000E+00 +1705441,fr,3,3.550000E+00,7.697210E+00,4.730558E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999316E+01,0.000000E+00 +1705442,fr,1,3.550000E+00,7.697210E+00,4.730558E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999316E+01,0.000000E+00 +1705443,fr,4,3.550000E+00,7.697210E+00,4.730558E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799867E+01,0.000000E+00 +1705444,fr,2,3.550000E+00,7.697210E+00,4.730558E+01,1.500000E+01,Active Shallow Crust,2.400125E+02,5.799867E+01,0.000000E+00 +1705446,fr,2,3.550000E+00,7.697210E+00,4.730558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999308E+01,-9.000000E+01 +1705449,fr,3,3.550000E+00,7.697210E+00,4.730558E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999316E+01,0.000000E+00 +1705452,fr,10,3.650000E+00,7.697210E+00,4.730558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998781E+01,0.000000E+00 +1705453,fr,1,3.650000E+00,7.697210E+00,4.730558E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998781E+01,0.000000E+00 +1705454,fr,1,3.650000E+00,7.697210E+00,4.730558E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998781E+01,0.000000E+00 +1705455,fr,1,3.650000E+00,7.697210E+00,4.730558E+01,5.000000E+00,Active Shallow Crust,2.400015E+02,5.801306E+01,0.000000E+00 +1705464,fr,3,3.750000E+00,7.697210E+00,4.730558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +1705465,fr,1,3.750000E+00,7.697210E+00,4.730558E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +1705469,fr,1,3.750000E+00,7.697210E+00,4.730558E+01,2.750000E+01,Active Shallow Crust,2.400087E+02,5.801757E+01,0.000000E+00 +1705471,fr,2,3.750000E+00,7.697210E+00,4.730558E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998901E+01,-9.000000E+01 +1705473,fr,1,3.750000E+00,7.697210E+00,4.730558E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.996694E+01,0.000000E+00 +1705476,fr,2,3.850000E+00,7.697210E+00,4.730558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +1705477,fr,3,3.850000E+00,7.697210E+00,4.730558E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +1705478,fr,1,3.850000E+00,7.697210E+00,4.730558E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +1705482,fr,2,3.850000E+00,7.697210E+00,4.730558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,-9.000000E+01 +1705488,fr,2,3.950000E+00,7.697210E+00,4.730558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999137E+01,0.000000E+00 +1705497,fr,1,3.950000E+00,7.697210E+00,4.730558E+01,5.000000E+00,Active Shallow Crust,1.288997E+02,8.999353E+01,0.000000E+00 +1705500,fr,1,4.050000E+00,7.697210E+00,4.730558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998846E+01,0.000000E+00 +1705516,fr,1,4.150000E+00,7.697210E+00,4.730558E+01,1.500000E+01,Active Shallow Crust,2.400090E+02,5.799750E+01,0.000000E+00 +1705524,fr,1,4.250000E+00,7.697210E+00,4.730558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +1705536,fr,1,4.350000E+00,7.697210E+00,4.730558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +1705537,fr,1,4.350000E+00,7.697210E+00,4.730558E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +1705539,fr,1,4.350000E+00,7.697210E+00,4.730558E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.799584E+01,0.000000E+00 +1705543,fr,1,4.350000E+00,7.697210E+00,4.730558E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998898E+01,-9.000000E+01 +1705551,fr,2,4.450000E+00,7.697210E+00,4.730558E+01,5.000000E+00,Active Shallow Crust,2.400058E+02,5.799441E+01,0.000000E+00 +1705560,fr,1,4.550000E+00,7.697210E+00,4.730558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998919E+01,0.000000E+00 +1705572,fr,1,4.650000E+00,7.697210E+00,4.730558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1705581,fr,1,4.650000E+00,7.697210E+00,4.730558E+01,5.000000E+00,Active Shallow Crust,1.288909E+02,8.998679E+01,0.000000E+00 +1705590,fr,1,4.750000E+00,7.697210E+00,4.730558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,-9.000000E+01 +1705603,fr,1,4.850000E+00,7.697210E+00,4.730558E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999071E+01,-9.000000E+01 +1705608,fr,1,4.950000E+00,7.697210E+00,4.730558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +1705620,fr,1,5.050000E+00,7.697210E+00,4.730558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +1705621,fr,1,5.050000E+00,7.697210E+00,4.730558E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +1705638,fr,1,5.150000E+00,7.697210E+00,4.730558E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,-9.000000E+01 +1705690,fr,1,5.550000E+00,7.697210E+00,4.730558E+01,1.500000E+01,Active Shallow Crust,1.288756E+02,8.998965E+01,0.000000E+00 +1705765,fr,1,6.250000E+00,7.697210E+00,4.730558E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1705921,fr,1,3.550000E+00,-7.149190E+00,4.720166E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999315E+01,0.000000E+00 +1706400,fr,1,3.550000E+00,1.697500E-01,4.671044E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1706412,fr,2,3.650000E+00,1.697500E-01,4.671044E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1706413,fr,1,3.650000E+00,1.697500E-01,4.671044E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1706424,fr,2,3.750000E+00,1.697500E-01,4.671044E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1706425,fr,1,3.750000E+00,1.697500E-01,4.671044E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1706430,fr,1,3.750000E+00,1.697500E-01,4.671044E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,-9.000000E+01 +1706436,fr,1,3.850000E+00,1.697500E-01,4.671044E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1706448,fr,1,3.950000E+00,1.697500E-01,4.671044E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1706466,fr,1,4.050000E+00,1.697500E-01,4.671044E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +1706472,fr,1,4.150000E+00,1.697500E-01,4.671044E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1706485,fr,1,4.250000E+00,1.697500E-01,4.671044E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1706496,fr,1,4.350000E+00,1.697500E-01,4.671044E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1706497,fr,1,4.350000E+00,1.697500E-01,4.671044E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1706502,fr,1,4.350000E+00,1.697500E-01,4.671044E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +1706520,fr,2,4.550000E+00,1.697500E-01,4.671044E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1706532,fr,1,4.650000E+00,1.697500E-01,4.671044E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1706640,fr,1,5.550000E+00,1.697500E-01,4.671044E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1706679,fr,1,5.850000E+00,1.697500E-01,4.671044E+01,5.000000E+00,Active Shallow Crust,2.400450E+02,5.800189E+01,0.000000E+00 +1706680,fr,1,5.850000E+00,1.697500E-01,4.671044E+01,1.500000E+01,Active Shallow Crust,2.400450E+02,5.800189E+01,0.000000E+00 +1706904,fr,1,3.750000E+00,1.342920E+00,4.342739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1706928,fr,2,3.950000E+00,1.342920E+00,4.342739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +1706929,fr,1,3.950000E+00,1.342920E+00,4.342739E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +1707397,fr,2,3.850000E+00,7.063300E+00,5.001775E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999082E+01,0.000000E+00 +1707408,fr,1,3.950000E+00,7.063300E+00,5.001775E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999182E+01,0.000000E+00 +1707415,fr,1,3.950000E+00,7.063300E+00,5.001775E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999173E+01,-9.000000E+01 +1707444,fr,1,4.250000E+00,7.063300E+00,5.001775E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999132E+01,0.000000E+00 +1707462,fr,1,4.350000E+00,7.063300E+00,5.001775E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,-9.000000E+01 +1707492,fr,1,4.650000E+00,7.063300E+00,5.001775E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999087E+01,0.000000E+00 +1707516,fr,1,4.850000E+00,7.063300E+00,5.001775E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1707840,fr,2,3.550000E+00,7.891650E+00,4.418403E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999277E+01,0.000000E+00 +1707841,fr,1,3.550000E+00,7.891650E+00,4.418403E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999277E+01,0.000000E+00 +1707844,fr,1,3.550000E+00,7.891650E+00,4.418403E+01,1.500000E+01,Active Shallow Crust,2.400134E+02,5.799777E+01,0.000000E+00 +1707846,fr,1,3.550000E+00,7.891650E+00,4.418403E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999268E+01,-9.000000E+01 +1707852,fr,1,3.650000E+00,7.891650E+00,4.418403E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998711E+01,0.000000E+00 +1707864,fr,1,3.750000E+00,7.891650E+00,4.418403E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998851E+01,0.000000E+00 +1707866,fr,1,3.750000E+00,7.891650E+00,4.418403E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998851E+01,0.000000E+00 +1707870,fr,1,3.750000E+00,7.891650E+00,4.418403E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998838E+01,-9.000000E+01 +1707877,fr,1,3.850000E+00,7.891650E+00,4.418403E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +1707888,fr,1,3.950000E+00,7.891650E+00,4.418403E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1707898,fr,1,3.950000E+00,7.891650E+00,4.418403E+01,1.500000E+01,Active Shallow Crust,1.289005E+02,8.999544E+01,0.000000E+00 +1707900,fr,1,4.050000E+00,7.891650E+00,4.418403E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999187E+01,0.000000E+00 +1707925,fr,1,4.250000E+00,7.891650E+00,4.418403E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +1708134,fr,1,5.950000E+00,7.891650E+00,4.418403E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,-9.000000E+01 +1708811,fr,1,3.550000E+00,3.094330E+00,4.461303E+01,2.750000E+01,Active Shallow Crust,1.288964E+02,8.999461E+01,0.000000E+00 +1708812,fr,3,3.650000E+00,3.094330E+00,4.461303E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +1708813,fr,1,3.650000E+00,3.094330E+00,4.461303E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +1708815,fr,1,3.650000E+00,3.094330E+00,4.461303E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801318E+01,0.000000E+00 +1708824,fr,1,3.750000E+00,3.094330E+00,4.461303E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +1708825,fr,1,3.750000E+00,3.094330E+00,4.461303E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +1708872,fr,1,4.150000E+00,3.094330E+00,4.461303E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1708914,fr,1,4.450000E+00,3.094330E+00,4.461303E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +1708959,fr,1,4.850000E+00,3.094330E+00,4.461303E+01,5.000000E+00,Active Shallow Crust,2.400163E+02,5.800224E+01,0.000000E+00 +1709028,fr,1,5.450000E+00,3.094330E+00,4.461303E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1709077,fr,1,5.850000E+00,3.094330E+00,4.461303E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1709280,fr,9,3.550000E+00,7.068650E+00,4.697570E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999312E+01,0.000000E+00 +1709282,fr,2,3.550000E+00,7.068650E+00,4.697570E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999312E+01,0.000000E+00 +1709283,fr,1,3.550000E+00,7.068650E+00,4.697570E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799799E+01,0.000000E+00 +1709286,fr,1,3.550000E+00,7.068650E+00,4.697570E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999304E+01,-9.000000E+01 +1709287,fr,1,3.550000E+00,7.068650E+00,4.697570E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999304E+01,-9.000000E+01 +1709289,fr,1,3.550000E+00,7.068650E+00,4.697570E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999312E+01,0.000000E+00 +1709292,fr,11,3.650000E+00,7.068650E+00,4.697570E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998773E+01,0.000000E+00 +1709293,fr,3,3.650000E+00,7.068650E+00,4.697570E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998773E+01,0.000000E+00 +1709295,fr,2,3.650000E+00,7.068650E+00,4.697570E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801329E+01,0.000000E+00 +1709296,fr,1,3.650000E+00,7.068650E+00,4.697570E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801329E+01,0.000000E+00 +1709298,fr,1,3.650000E+00,7.068650E+00,4.697570E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998759E+01,-9.000000E+01 +1709299,fr,1,3.650000E+00,7.068650E+00,4.697570E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998759E+01,-9.000000E+01 +1709301,fr,1,3.650000E+00,7.068650E+00,4.697570E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.996353E+01,0.000000E+00 +1709302,fr,1,3.650000E+00,7.068650E+00,4.697570E+01,1.500000E+01,Active Shallow Crust,1.289001E+02,8.996353E+01,0.000000E+00 +1709304,fr,6,3.750000E+00,7.068650E+00,4.697570E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +1709305,fr,4,3.750000E+00,7.068650E+00,4.697570E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +1709307,fr,1,3.750000E+00,7.068650E+00,4.697570E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.801806E+01,0.000000E+00 +1709308,fr,1,3.750000E+00,7.068650E+00,4.697570E+01,1.500000E+01,Active Shallow Crust,2.400074E+02,5.801806E+01,0.000000E+00 +1709309,fr,1,3.750000E+00,7.068650E+00,4.697570E+01,2.750000E+01,Active Shallow Crust,2.400074E+02,5.801806E+01,0.000000E+00 +1709310,fr,1,3.750000E+00,7.068650E+00,4.697570E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,-9.000000E+01 +1709313,fr,1,3.750000E+00,7.068650E+00,4.697570E+01,5.000000E+00,Active Shallow Crust,1.288974E+02,8.996693E+01,0.000000E+00 +1709315,fr,1,3.750000E+00,7.068650E+00,4.697570E+01,2.750000E+01,Active Shallow Crust,1.288974E+02,8.996693E+01,0.000000E+00 +1709316,fr,5,3.850000E+00,7.068650E+00,4.697570E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1709317,fr,2,3.850000E+00,7.068650E+00,4.697570E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1709318,fr,1,3.850000E+00,7.068650E+00,4.697570E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1709328,fr,5,3.950000E+00,7.068650E+00,4.697570E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999132E+01,0.000000E+00 +1709329,fr,1,3.950000E+00,7.068650E+00,4.697570E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999132E+01,0.000000E+00 +1709330,fr,2,3.950000E+00,7.068650E+00,4.697570E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999132E+01,0.000000E+00 +1709331,fr,2,3.950000E+00,7.068650E+00,4.697570E+01,5.000000E+00,Active Shallow Crust,2.400205E+02,5.800474E+01,0.000000E+00 +1709332,fr,2,3.950000E+00,7.068650E+00,4.697570E+01,1.500000E+01,Active Shallow Crust,2.400205E+02,5.800474E+01,0.000000E+00 +1709334,fr,1,3.950000E+00,7.068650E+00,4.697570E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999122E+01,-9.000000E+01 +1709335,fr,1,3.950000E+00,7.068650E+00,4.697570E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999122E+01,-9.000000E+01 +1709340,fr,2,4.050000E+00,7.068650E+00,4.697570E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998840E+01,0.000000E+00 +1709341,fr,2,4.050000E+00,7.068650E+00,4.697570E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998840E+01,0.000000E+00 +1709352,fr,4,4.150000E+00,7.068650E+00,4.697570E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1709353,fr,1,4.150000E+00,7.068650E+00,4.697570E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1709354,fr,1,4.150000E+00,7.068650E+00,4.697570E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1709355,fr,1,4.150000E+00,7.068650E+00,4.697570E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.799689E+01,0.000000E+00 +1709361,fr,1,4.150000E+00,7.068650E+00,4.697570E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999483E+01,0.000000E+00 +1709364,fr,3,4.250000E+00,7.068650E+00,4.697570E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +1709365,fr,2,4.250000E+00,7.068650E+00,4.697570E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +1709374,fr,1,4.250000E+00,7.068650E+00,4.697570E+01,1.500000E+01,Active Shallow Crust,1.288950E+02,8.998096E+01,0.000000E+00 +1709376,fr,5,4.350000E+00,7.068650E+00,4.697570E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +1709377,fr,1,4.350000E+00,7.068650E+00,4.697570E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +1709379,fr,3,4.350000E+00,7.068650E+00,4.697570E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799585E+01,0.000000E+00 +1709382,fr,1,4.350000E+00,7.068650E+00,4.697570E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,-9.000000E+01 +1709386,fr,1,4.350000E+00,7.068650E+00,4.697570E+01,1.500000E+01,Active Shallow Crust,1.288974E+02,8.998303E+01,0.000000E+00 +1709388,fr,2,4.450000E+00,7.068650E+00,4.697570E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1709389,fr,1,4.450000E+00,7.068650E+00,4.697570E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1709390,fr,1,4.450000E+00,7.068650E+00,4.697570E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1709400,fr,3,4.550000E+00,7.068650E+00,4.697570E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998912E+01,0.000000E+00 +1709401,fr,4,4.550000E+00,7.068650E+00,4.697570E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998912E+01,0.000000E+00 +1709405,fr,1,4.550000E+00,7.068650E+00,4.697570E+01,2.750000E+01,Active Shallow Crust,2.400098E+02,5.799747E+01,0.000000E+00 +1709412,fr,1,4.650000E+00,7.068650E+00,4.697570E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1709415,fr,1,4.650000E+00,7.068650E+00,4.697570E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799445E+01,0.000000E+00 +1709433,fr,1,4.750000E+00,7.068650E+00,4.697570E+01,5.000000E+00,Active Shallow Crust,1.288888E+02,8.998773E+01,0.000000E+00 +1709436,fr,1,4.850000E+00,7.068650E+00,4.697570E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +1709449,fr,1,4.950000E+00,7.068650E+00,4.697570E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1709496,fr,1,5.350000E+00,7.068650E+00,4.697570E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +1709497,fr,1,5.350000E+00,7.068650E+00,4.697570E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +1709498,fr,1,5.350000E+00,7.068650E+00,4.697570E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +1709508,fr,1,5.450000E+00,7.068650E+00,4.697570E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1709571,fr,1,5.950000E+00,7.068650E+00,4.697570E+01,5.000000E+00,Active Shallow Crust,2.400518E+02,5.800082E+01,0.000000E+00 +1709628,fr,1,6.450000E+00,7.068658E+00,4.697570E+01,8.491219E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1709630,fr,1,6.450000E+00,7.068647E+00,4.697570E+01,2.650878E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1710240,fr,1,3.550000E+00,2.911180E+00,4.832093E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1710277,fr,1,3.850000E+00,2.911180E+00,4.832093E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +1710720,fr,4,3.550000E+00,7.358770E+00,4.492005E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999286E+01,0.000000E+00 +1710721,fr,3,3.550000E+00,7.358770E+00,4.492005E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999286E+01,0.000000E+00 +1710722,fr,1,3.550000E+00,7.358770E+00,4.492005E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999286E+01,0.000000E+00 +1710723,fr,1,3.550000E+00,7.358770E+00,4.492005E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799844E+01,0.000000E+00 +1710726,fr,1,3.550000E+00,7.358770E+00,4.492005E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999277E+01,-9.000000E+01 +1710729,fr,1,3.550000E+00,7.358770E+00,4.492005E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.999286E+01,0.000000E+00 +1710730,fr,1,3.550000E+00,7.358770E+00,4.492005E+01,1.500000E+01,Active Shallow Crust,1.288968E+02,8.999286E+01,0.000000E+00 +1710732,fr,3,3.650000E+00,7.358770E+00,4.492005E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998727E+01,0.000000E+00 +1710733,fr,4,3.650000E+00,7.358770E+00,4.492005E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998727E+01,0.000000E+00 +1710735,fr,1,3.650000E+00,7.358770E+00,4.492005E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801290E+01,0.000000E+00 +1710736,fr,1,3.650000E+00,7.358770E+00,4.492005E+01,1.500000E+01,Active Shallow Crust,2.400013E+02,5.801290E+01,0.000000E+00 +1710741,fr,1,3.650000E+00,7.358770E+00,4.492005E+01,5.000000E+00,Active Shallow Crust,1.289011E+02,8.996349E+01,0.000000E+00 +1710744,fr,9,3.750000E+00,7.358770E+00,4.492005E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +1710747,fr,2,3.750000E+00,7.358770E+00,4.492005E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.801771E+01,0.000000E+00 +1710748,fr,1,3.750000E+00,7.358770E+00,4.492005E+01,1.500000E+01,Active Shallow Crust,2.400088E+02,5.801771E+01,0.000000E+00 +1710753,fr,1,3.750000E+00,7.358770E+00,4.492005E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.996685E+01,0.000000E+00 +1710756,fr,4,3.850000E+00,7.358770E+00,4.492005E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1710758,fr,1,3.850000E+00,7.358770E+00,4.492005E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1710766,fr,1,3.850000E+00,7.358770E+00,4.492005E+01,1.500000E+01,Active Shallow Crust,1.288957E+02,8.999494E+01,0.000000E+00 +1710768,fr,3,3.950000E+00,7.358770E+00,4.492005E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999099E+01,0.000000E+00 +1710769,fr,1,3.950000E+00,7.358770E+00,4.492005E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999099E+01,0.000000E+00 +1710770,fr,1,3.950000E+00,7.358770E+00,4.492005E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999099E+01,0.000000E+00 +1710771,fr,1,3.950000E+00,7.358770E+00,4.492005E+01,5.000000E+00,Active Shallow Crust,2.400195E+02,5.800503E+01,0.000000E+00 +1710774,fr,1,3.950000E+00,7.358770E+00,4.492005E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,-9.000000E+01 +1710777,fr,1,3.950000E+00,7.358770E+00,4.492005E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.999324E+01,0.000000E+00 +1710780,fr,4,4.050000E+00,7.358770E+00,4.492005E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999197E+01,0.000000E+00 +1710781,fr,2,4.050000E+00,7.358770E+00,4.492005E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999197E+01,0.000000E+00 +1710786,fr,1,4.050000E+00,7.358770E+00,4.492005E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999187E+01,-9.000000E+01 +1710789,fr,1,4.050000E+00,7.358770E+00,4.492005E+01,5.000000E+00,Active Shallow Crust,1.288896E+02,8.999398E+01,0.000000E+00 +1710790,fr,1,4.050000E+00,7.358770E+00,4.492005E+01,1.500000E+01,Active Shallow Crust,1.288896E+02,8.999398E+01,0.000000E+00 +1710792,fr,2,4.150000E+00,7.358770E+00,4.492005E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1710793,fr,1,4.150000E+00,7.358770E+00,4.492005E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1710795,fr,1,4.150000E+00,7.358770E+00,4.492005E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799715E+01,0.000000E+00 +1710804,fr,2,4.250000E+00,7.358770E+00,4.492005E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1710805,fr,2,4.250000E+00,7.358770E+00,4.492005E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1710813,fr,2,4.250000E+00,7.358770E+00,4.492005E+01,5.000000E+00,Active Shallow Crust,1.288947E+02,8.998089E+01,0.000000E+00 +1710825,fr,1,4.350000E+00,7.358770E+00,4.492005E+01,5.000000E+00,Active Shallow Crust,1.288981E+02,8.998296E+01,0.000000E+00 +1710837,fr,1,4.450000E+00,7.358770E+00,4.492005E+01,5.000000E+00,Active Shallow Crust,1.288927E+02,8.999367E+01,0.000000E+00 +1710838,fr,1,4.450000E+00,7.358770E+00,4.492005E+01,1.500000E+01,Active Shallow Crust,1.288927E+02,8.999367E+01,0.000000E+00 +1710852,fr,3,4.650000E+00,7.358770E+00,4.492005E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1710853,fr,1,4.650000E+00,7.358770E+00,4.492005E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1710855,fr,1,4.650000E+00,7.358770E+00,4.492005E+01,5.000000E+00,Active Shallow Crust,2.400102E+02,5.799439E+01,0.000000E+00 +1710864,fr,1,4.750000E+00,7.358770E+00,4.492005E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +1710876,fr,2,4.850000E+00,7.358770E+00,4.492005E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +1710888,fr,1,4.950000E+00,7.358770E+00,4.492005E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1710972,fr,1,5.650000E+00,7.358770E+00,4.492005E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1711015,fr,1,5.950000E+00,7.358770E+00,4.492005E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1711200,fr,1,3.550000E+00,-1.647000E+00,4.230771E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +1711212,fr,1,3.650000E+00,-1.647000E+00,4.230771E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1711260,fr,1,4.050000E+00,-1.647000E+00,4.230771E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1711428,fr,1,5.450000E+00,-1.647000E+00,4.230771E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1711680,fr,1,3.550000E+00,4.209130E+00,4.556415E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999294E+01,0.000000E+00 +1711692,fr,1,3.650000E+00,4.209130E+00,4.556415E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998742E+01,0.000000E+00 +1711707,fr,1,3.750000E+00,4.209130E+00,4.556415E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.801775E+01,0.000000E+00 +1711717,fr,1,3.850000E+00,4.209130E+00,4.556415E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1711725,fr,1,3.850000E+00,4.209130E+00,4.556415E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999250E+01,0.000000E+00 +1711752,fr,1,4.150000E+00,4.209130E+00,4.556415E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +1711764,fr,1,4.250000E+00,4.209130E+00,4.556415E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +1711773,fr,1,4.250000E+00,4.209130E+00,4.556415E+01,5.000000E+00,Active Shallow Crust,1.288944E+02,8.998091E+01,0.000000E+00 +1711776,fr,1,4.350000E+00,4.209130E+00,4.556415E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +1711809,fr,1,4.550000E+00,4.209130E+00,4.556415E+01,5.000000E+00,Active Shallow Crust,1.288940E+02,8.998560E+01,0.000000E+00 +1711968,fr,1,5.950000E+00,4.209130E+00,4.556415E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1712160,fr,1,3.550000E+00,3.375200E+00,4.306848E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +1712161,fr,1,3.550000E+00,3.375200E+00,4.306848E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +1712162,fr,1,3.550000E+00,3.375200E+00,4.306848E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +1712184,fr,1,3.750000E+00,3.375200E+00,4.306848E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +1712199,fr,1,3.850000E+00,3.375200E+00,4.306848E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.799747E+01,0.000000E+00 +1712244,fr,1,4.250000E+00,3.375200E+00,4.306848E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1712268,fr,1,4.450000E+00,3.375200E+00,4.306848E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +1712666,fr,1,3.750000E+00,3.733590E+00,5.220517E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1712710,fr,1,4.050000E+00,3.733590E+00,5.220517E+01,1.500000E+01,Active Shallow Crust,1.288896E+02,8.999392E+01,0.000000E+00 +1712724,fr,1,4.250000E+00,3.733590E+00,5.220517E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +1713133,fr,1,3.650000E+00,7.050000E-01,4.768221E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1713159,fr,1,3.850000E+00,7.050000E-01,4.768221E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799786E+01,0.000000E+00 +1713192,fr,1,4.150000E+00,7.050000E-01,4.768221E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1713217,fr,1,4.350000E+00,7.050000E-01,4.768221E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1713218,fr,1,4.350000E+00,7.050000E-01,4.768221E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1713600,fr,2,3.550000E+00,8.684470E+00,5.019633E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998709E+01,0.000000E+00 +1713602,fr,1,3.550000E+00,8.684470E+00,5.019633E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998709E+01,0.000000E+00 +1713603,fr,1,3.550000E+00,8.684470E+00,5.019633E+01,5.000000E+00,Active Shallow Crust,2.400097E+02,5.800015E+01,0.000000E+00 +1713604,fr,1,3.550000E+00,8.684470E+00,5.019633E+01,1.500000E+01,Active Shallow Crust,2.400097E+02,5.800015E+01,0.000000E+00 +1713606,fr,1,3.550000E+00,8.684470E+00,5.019633E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998694E+01,-9.000000E+01 +1713610,fr,1,3.550000E+00,8.684470E+00,5.019633E+01,1.500000E+01,Active Shallow Crust,1.288953E+02,8.999355E+01,0.000000E+00 +1713618,fr,1,3.650000E+00,8.684470E+00,5.019633E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998836E+01,-9.000000E+01 +1713624,fr,1,3.750000E+00,8.684470E+00,5.019633E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1713636,fr,1,3.850000E+00,8.684470E+00,5.019633E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +1713637,fr,2,3.850000E+00,8.684470E+00,5.019633E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +1713651,fr,1,3.950000E+00,8.684470E+00,5.019633E+01,5.000000E+00,Active Shallow Crust,2.400188E+02,5.800520E+01,0.000000E+00 +1713666,fr,1,4.050000E+00,8.684470E+00,5.019633E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999265E+01,-9.000000E+01 +1713674,fr,1,4.150000E+00,8.684470E+00,5.019633E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998706E+01,0.000000E+00 +1713696,fr,2,4.350000E+00,8.684470E+00,5.019633E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1713705,fr,1,4.350000E+00,8.684470E+00,5.019633E+01,5.000000E+00,Active Shallow Crust,1.288982E+02,8.998219E+01,0.000000E+00 +1713780,fr,1,5.050000E+00,8.684470E+00,5.019633E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +1714080,fr,1,3.550000E+00,5.188950E+00,4.686751E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999310E+01,0.000000E+00 +1714083,fr,1,3.550000E+00,5.188950E+00,4.686751E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799813E+01,0.000000E+00 +1714095,fr,1,3.650000E+00,5.188950E+00,4.686751E+01,5.000000E+00,Active Shallow Crust,2.400020E+02,5.801200E+01,0.000000E+00 +1714105,fr,1,3.750000E+00,5.188950E+00,4.686751E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +1714108,fr,1,3.750000E+00,5.188950E+00,4.686751E+01,1.500000E+01,Active Shallow Crust,2.400096E+02,5.801665E+01,0.000000E+00 +1714113,fr,1,3.750000E+00,5.188950E+00,4.686751E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.996750E+01,0.000000E+00 +1714132,fr,1,3.950000E+00,5.188950E+00,4.686751E+01,1.500000E+01,Active Shallow Crust,2.400206E+02,5.800464E+01,0.000000E+00 +1714143,fr,1,4.050000E+00,5.188950E+00,4.686751E+01,5.000000E+00,Active Shallow Crust,2.400060E+02,5.800600E+01,0.000000E+00 +1714149,fr,1,4.050000E+00,5.188950E+00,4.686751E+01,5.000000E+00,Active Shallow Crust,1.288904E+02,8.999419E+01,0.000000E+00 +1714150,fr,1,4.050000E+00,5.188950E+00,4.686751E+01,1.500000E+01,Active Shallow Crust,1.288904E+02,8.999419E+01,0.000000E+00 +1714161,fr,1,4.150000E+00,5.188950E+00,4.686751E+01,5.000000E+00,Active Shallow Crust,1.288984E+02,8.999309E+01,0.000000E+00 +1714176,fr,1,4.350000E+00,5.188950E+00,4.686751E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998902E+01,0.000000E+00 +1714224,fr,1,4.750000E+00,5.188950E+00,4.686751E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +1714264,fr,1,5.050000E+00,5.188950E+00,4.686751E+01,1.500000E+01,Active Shallow Crust,2.400223E+02,5.799750E+01,0.000000E+00 +1714560,fr,4,3.550000E+00,8.719040E+00,4.818414E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998656E+01,0.000000E+00 +1714578,fr,1,3.650000E+00,8.719040E+00,4.818414E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998788E+01,-9.000000E+01 +1714584,fr,1,3.750000E+00,8.719040E+00,4.818414E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +1714585,fr,2,3.750000E+00,8.719040E+00,4.818414E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +1714596,fr,1,3.850000E+00,8.719040E+00,4.818414E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +1714597,fr,1,3.850000E+00,8.719040E+00,4.818414E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +1714608,fr,1,3.950000E+00,8.719040E+00,4.818414E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999152E+01,0.000000E+00 +1714620,fr,1,4.050000E+00,8.719040E+00,4.818414E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999244E+01,0.000000E+00 +1714624,fr,1,4.050000E+00,8.719040E+00,4.818414E+01,1.500000E+01,Active Shallow Crust,2.400056E+02,5.800604E+01,0.000000E+00 +1714632,fr,2,4.150000E+00,8.719040E+00,4.818414E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999326E+01,0.000000E+00 +1714633,fr,1,4.150000E+00,8.719040E+00,4.818414E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999326E+01,0.000000E+00 +1714636,fr,1,4.150000E+00,8.719040E+00,4.818414E+01,1.500000E+01,Active Shallow Crust,2.400093E+02,5.799737E+01,0.000000E+00 +1714644,fr,2,4.250000E+00,8.719040E+00,4.818414E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998798E+01,0.000000E+00 +1714729,fr,1,4.950000E+00,8.719040E+00,4.818414E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1715043,fr,1,3.550000E+00,-2.706310E+00,4.944525E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799885E+01,0.000000E+00 +1715064,fr,1,3.750000E+00,-2.706310E+00,4.944525E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1715160,fr,1,4.550000E+00,-2.706310E+00,4.944525E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +1715196,fr,1,4.850000E+00,-2.706310E+00,4.944525E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1715401,fr,1,6.550000E+00,-2.706310E+00,4.944525E+01,1.500000E+01,Active Shallow Crust,3.599999E+02,8.999003E+01,0.000000E+00 +1715521,fr,1,3.550000E+00,-2.486850E+00,4.865739E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1715522,fr,1,3.550000E+00,-2.486850E+00,4.865739E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1715523,fr,1,3.550000E+00,-2.486850E+00,4.865739E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799771E+01,0.000000E+00 +1715532,fr,1,3.650000E+00,-2.486850E+00,4.865739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +1715538,fr,1,3.650000E+00,-2.486850E+00,4.865739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999099E+01,-9.000000E+01 +1715539,fr,1,3.650000E+00,-2.486850E+00,4.865739E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999099E+01,-9.000000E+01 +1715544,fr,2,3.750000E+00,-2.486850E+00,4.865739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +1715545,fr,1,3.750000E+00,-2.486850E+00,4.865739E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +1715557,fr,1,3.850000E+00,-2.486850E+00,4.865739E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +1715570,fr,1,3.950000E+00,-2.486850E+00,4.865739E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +1715604,fr,1,4.250000E+00,-2.486850E+00,4.865739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1715606,fr,1,4.250000E+00,-2.486850E+00,4.865739E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1716000,fr,3,3.550000E+00,6.907680E+00,4.578730E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999297E+01,0.000000E+00 +1716011,fr,1,3.550000E+00,6.907680E+00,4.578730E+01,2.750000E+01,Active Shallow Crust,1.288965E+02,8.999297E+01,0.000000E+00 +1716015,fr,1,3.650000E+00,6.907680E+00,4.578730E+01,5.000000E+00,Active Shallow Crust,2.400001E+02,5.801381E+01,0.000000E+00 +1716018,fr,1,3.650000E+00,6.907680E+00,4.578730E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998732E+01,-9.000000E+01 +1716024,fr,1,3.750000E+00,6.907680E+00,4.578730E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998883E+01,0.000000E+00 +1716025,fr,1,3.750000E+00,6.907680E+00,4.578730E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998883E+01,0.000000E+00 +1716036,fr,1,3.850000E+00,6.907680E+00,4.578730E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1716037,fr,1,3.850000E+00,6.907680E+00,4.578730E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1716058,fr,1,3.950000E+00,6.907680E+00,4.578730E+01,1.500000E+01,Active Shallow Crust,1.288996E+02,8.999335E+01,0.000000E+00 +1716088,fr,1,4.250000E+00,6.907680E+00,4.578730E+01,1.500000E+01,Active Shallow Crust,2.400077E+02,5.799399E+01,0.000000E+00 +1716096,fr,1,4.350000E+00,6.907680E+00,4.578730E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998880E+01,0.000000E+00 +1716099,fr,1,4.350000E+00,6.907680E+00,4.578730E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799602E+01,0.000000E+00 +1716480,fr,1,3.550000E+00,-2.564140E+00,4.688953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +1716481,fr,1,3.550000E+00,-2.564140E+00,4.688953E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +1716489,fr,2,3.550000E+00,-2.564140E+00,4.688953E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999311E+01,0.000000E+00 +1716506,fr,1,3.750000E+00,-2.564140E+00,4.688953E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998905E+01,0.000000E+00 +1716514,fr,1,3.750000E+00,-2.564140E+00,4.688953E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.996750E+01,0.000000E+00 +1716525,fr,1,3.850000E+00,-2.564140E+00,4.688953E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999268E+01,0.000000E+00 +1716544,fr,1,4.050000E+00,-2.564140E+00,4.688953E+01,1.500000E+01,Active Shallow Crust,2.400060E+02,5.800615E+01,0.000000E+00 +1716564,fr,2,4.250000E+00,-2.564140E+00,4.688953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +1716566,fr,1,4.250000E+00,-2.564140E+00,4.688953E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +1716642,fr,1,4.850000E+00,-2.564140E+00,4.688953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +1716972,fr,1,3.650000E+00,4.717330E+00,4.576634E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998746E+01,0.000000E+00 +1717002,fr,2,3.850000E+00,4.717330E+00,4.576634E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,-9.000000E+01 +1717008,fr,1,3.950000E+00,4.717330E+00,4.576634E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999112E+01,0.000000E+00 +1717009,fr,1,3.950000E+00,4.717330E+00,4.576634E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999112E+01,0.000000E+00 +1717017,fr,1,3.950000E+00,4.717330E+00,4.576634E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.999334E+01,0.000000E+00 +1717056,fr,1,4.350000E+00,4.717330E+00,4.576634E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998880E+01,0.000000E+00 +1717058,fr,1,4.350000E+00,4.717330E+00,4.576634E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998880E+01,0.000000E+00 +1717080,fr,1,4.550000E+00,4.717330E+00,4.576634E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +1717104,fr,1,4.750000E+00,4.717330E+00,4.576634E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +1717440,fr,2,3.550000E+00,5.935870E+00,5.111317E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998734E+01,0.000000E+00 +1717441,fr,2,3.550000E+00,5.935870E+00,5.111317E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998734E+01,0.000000E+00 +1717443,fr,1,3.550000E+00,5.935870E+00,5.111317E+01,5.000000E+00,Active Shallow Crust,2.400130E+02,5.799839E+01,0.000000E+00 +1717452,fr,6,3.650000E+00,5.935870E+00,5.111317E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +1717453,fr,1,3.650000E+00,5.935870E+00,5.111317E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +1717461,fr,1,3.650000E+00,5.935870E+00,5.111317E+01,5.000000E+00,Active Shallow Crust,1.289000E+02,8.996362E+01,0.000000E+00 +1717464,fr,4,3.750000E+00,5.935870E+00,5.111317E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1717465,fr,1,3.750000E+00,5.935870E+00,5.111317E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1717467,fr,1,3.750000E+00,5.935870E+00,5.111317E+01,5.000000E+00,Active Shallow Crust,2.400092E+02,5.801752E+01,0.000000E+00 +1717468,fr,1,3.750000E+00,5.935870E+00,5.111317E+01,1.500000E+01,Active Shallow Crust,2.400092E+02,5.801752E+01,0.000000E+00 +1717470,fr,1,3.750000E+00,5.935870E+00,5.111317E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,-9.000000E+01 +1717476,fr,1,3.850000E+00,5.935870E+00,5.111317E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +1717477,fr,1,3.850000E+00,5.935870E+00,5.111317E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +1717478,fr,1,3.850000E+00,5.935870E+00,5.111317E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +1717480,fr,1,3.850000E+00,5.935870E+00,5.111317E+01,1.500000E+01,Active Shallow Crust,2.400116E+02,5.799746E+01,0.000000E+00 +1717485,fr,1,3.850000E+00,5.935870E+00,5.111317E+01,5.000000E+00,Active Shallow Crust,1.288949E+02,8.999328E+01,0.000000E+00 +1717500,fr,3,4.050000E+00,5.935870E+00,5.111317E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +1717501,fr,1,4.050000E+00,5.935870E+00,5.111317E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +1717502,fr,1,4.050000E+00,5.935870E+00,5.111317E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +1717524,fr,1,4.250000E+00,5.935870E+00,5.111317E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +1717527,fr,1,4.250000E+00,5.935870E+00,5.111317E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799449E+01,0.000000E+00 +1717533,fr,1,4.250000E+00,5.935870E+00,5.111317E+01,5.000000E+00,Active Shallow Crust,1.288936E+02,8.998112E+01,0.000000E+00 +1717581,fr,1,4.650000E+00,5.935870E+00,5.111317E+01,5.000000E+00,Active Shallow Crust,1.288898E+02,8.998703E+01,0.000000E+00 +1717584,fr,1,4.750000E+00,5.935870E+00,5.111317E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1717597,fr,1,4.850000E+00,5.935870E+00,5.111317E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1717692,fr,1,5.650000E+00,5.935870E+00,5.111317E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +1717776,fr,1,6.350000E+00,5.935876E+00,5.111317E+01,7.567806E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1718412,fr,1,3.650000E+00,-5.044780E+00,4.991182E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +1718430,fr,1,3.750000E+00,-5.044780E+00,4.991182E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,-9.000000E+01 +1718883,fr,1,3.550000E+00,1.497230E+00,4.156829E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799804E+01,0.000000E+00 +1718893,fr,2,3.650000E+00,1.497230E+00,4.156829E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1718898,fr,1,3.650000E+00,1.497230E+00,4.156829E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,-9.000000E+01 +1718904,fr,1,3.750000E+00,1.497230E+00,4.156829E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1718917,fr,1,3.850000E+00,1.497230E+00,4.156829E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +1718920,fr,1,3.850000E+00,1.497230E+00,4.156829E+01,1.500000E+01,Active Shallow Crust,2.400102E+02,5.799755E+01,0.000000E+00 +1718926,fr,1,3.850000E+00,1.497230E+00,4.156829E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.999332E+01,0.000000E+00 +1718928,fr,1,3.950000E+00,1.497230E+00,4.156829E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +1718934,fr,1,3.950000E+00,1.497230E+00,4.156829E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,-9.000000E+01 +1718938,fr,1,3.950000E+00,1.497230E+00,4.156829E+01,1.500000E+01,Active Shallow Crust,1.289011E+02,8.999345E+01,0.000000E+00 +1718964,fr,1,4.250000E+00,1.497230E+00,4.156829E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1718977,fr,1,4.350000E+00,1.497230E+00,4.156829E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1719360,fr,2,3.550000E+00,7.433730E+00,4.597905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999300E+01,0.000000E+00 +1719361,fr,1,3.550000E+00,7.433730E+00,4.597905E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999300E+01,0.000000E+00 +1719363,fr,1,3.550000E+00,7.433730E+00,4.597905E+01,5.000000E+00,Active Shallow Crust,2.400134E+02,5.799784E+01,0.000000E+00 +1719369,fr,1,3.550000E+00,7.433730E+00,4.597905E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999300E+01,0.000000E+00 +1719370,fr,1,3.550000E+00,7.433730E+00,4.597905E+01,1.500000E+01,Active Shallow Crust,1.288962E+02,8.999300E+01,0.000000E+00 +1719372,fr,2,3.650000E+00,7.433730E+00,4.597905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998751E+01,0.000000E+00 +1719373,fr,1,3.650000E+00,7.433730E+00,4.597905E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998751E+01,0.000000E+00 +1719375,fr,1,3.650000E+00,7.433730E+00,4.597905E+01,5.000000E+00,Active Shallow Crust,2.400005E+02,5.801347E+01,0.000000E+00 +1719382,fr,1,3.650000E+00,7.433730E+00,4.597905E+01,1.500000E+01,Active Shallow Crust,1.289002E+02,8.996352E+01,0.000000E+00 +1719384,fr,2,3.750000E+00,7.433730E+00,4.597905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998887E+01,0.000000E+00 +1719386,fr,1,3.750000E+00,7.433730E+00,4.597905E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998887E+01,0.000000E+00 +1719396,fr,2,3.850000E+00,7.433730E+00,4.597905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1719397,fr,3,3.850000E+00,7.433730E+00,4.597905E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1719408,fr,2,3.950000E+00,7.433730E+00,4.597905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999116E+01,0.000000E+00 +1719420,fr,1,4.050000E+00,7.433730E+00,4.597905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998817E+01,0.000000E+00 +1719433,fr,1,4.150000E+00,7.433730E+00,4.597905E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1719447,fr,1,4.250000E+00,7.433730E+00,4.597905E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799427E+01,0.000000E+00 +1719457,fr,1,4.350000E+00,7.433730E+00,4.597905E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998884E+01,0.000000E+00 +1719492,fr,1,4.650000E+00,7.433730E+00,4.597905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1719529,fr,1,4.950000E+00,7.433730E+00,4.597905E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1719530,fr,1,4.950000E+00,7.433730E+00,4.597905E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1719542,fr,1,5.050000E+00,7.433730E+00,4.597905E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1719553,fr,1,5.150000E+00,7.433730E+00,4.597905E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1719600,fr,1,5.550000E+00,7.433730E+00,4.597905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1719852,fr,5,3.650000E+00,4.604030E+00,5.068988E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998861E+01,0.000000E+00 +1719855,fr,1,3.650000E+00,4.604030E+00,5.068988E+01,5.000000E+00,Active Shallow Crust,2.400023E+02,5.801248E+01,0.000000E+00 +1719857,fr,1,3.650000E+00,4.604030E+00,5.068988E+01,2.750000E+01,Active Shallow Crust,2.400023E+02,5.801240E+01,0.000000E+00 +1719864,fr,1,3.750000E+00,4.604030E+00,5.068988E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1719865,fr,1,3.750000E+00,4.604030E+00,5.068988E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1719870,fr,1,3.750000E+00,4.604030E+00,5.068988E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,-9.000000E+01 +1719876,fr,2,3.850000E+00,4.604030E+00,5.068988E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999095E+01,0.000000E+00 +1719897,fr,1,3.950000E+00,4.604030E+00,5.068988E+01,5.000000E+00,Active Shallow Crust,1.288997E+02,8.999396E+01,0.000000E+00 +1719914,fr,1,4.150000E+00,4.604030E+00,5.068988E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1719924,fr,1,4.250000E+00,4.604030E+00,5.068988E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +1719948,fr,1,4.450000E+00,4.604030E+00,5.068988E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +1719960,fr,1,4.550000E+00,4.604030E+00,5.068988E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1719961,fr,1,4.550000E+00,4.604030E+00,5.068988E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1720031,fr,1,5.050000E+00,4.604030E+00,5.068988E+01,2.750000E+01,Active Shallow Crust,1.288838E+02,8.999049E+01,0.000000E+00 +1720320,fr,1,3.550000E+00,3.253940E+00,4.489980E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +1720326,fr,1,3.550000E+00,3.253940E+00,4.489980E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998916E+01,-9.000000E+01 +1720338,fr,1,3.650000E+00,3.253940E+00,4.489980E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,-9.000000E+01 +1720369,fr,2,3.950000E+00,3.253940E+00,4.489980E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999099E+01,0.000000E+00 +1720383,fr,1,4.050000E+00,3.253940E+00,4.489980E+01,5.000000E+00,Active Shallow Crust,2.400056E+02,5.800592E+01,0.000000E+00 +1720393,fr,1,4.150000E+00,3.253940E+00,4.489980E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +1720409,fr,1,4.250000E+00,3.253940E+00,4.489980E+01,2.750000E+01,Active Shallow Crust,2.400071E+02,5.799408E+01,0.000000E+00 +1720416,fr,1,4.350000E+00,3.253940E+00,4.489980E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1720485,fr,1,4.850000E+00,3.253940E+00,4.489980E+01,5.000000E+00,Active Shallow Crust,1.288929E+02,8.998916E+01,0.000000E+00 +1720804,fr,2,3.550000E+00,-1.898560E+00,4.338644E+01,1.500000E+01,Active Shallow Crust,2.400123E+02,5.799792E+01,0.000000E+00 +1720812,fr,1,3.650000E+00,-1.898560E+00,4.338644E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1720817,fr,1,3.650000E+00,-1.898560E+00,4.338644E+01,2.750000E+01,Active Shallow Crust,2.400009E+02,5.801260E+01,0.000000E+00 +1720836,fr,1,3.850000E+00,-1.898560E+00,4.338644E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +1720840,fr,1,3.850000E+00,-1.898560E+00,4.338644E+01,1.500000E+01,Active Shallow Crust,2.400106E+02,5.799769E+01,0.000000E+00 +1720854,fr,1,3.950000E+00,-1.898560E+00,4.338644E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,-9.000000E+01 +1720863,fr,1,4.050000E+00,-1.898560E+00,4.338644E+01,5.000000E+00,Active Shallow Crust,2.400055E+02,5.800563E+01,0.000000E+00 +1720865,fr,1,4.050000E+00,-1.898560E+00,4.338644E+01,2.750000E+01,Active Shallow Crust,2.400055E+02,5.800561E+01,0.000000E+00 +1720872,fr,1,4.150000E+00,-1.898560E+00,4.338644E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1720920,fr,1,4.550000E+00,-1.898560E+00,4.338644E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1721088,fr,1,5.950000E+00,-1.898560E+00,4.338644E+01,5.000000E+00,Active Shallow Crust,3.599999E+02,8.999005E+01,0.000000E+00 +1721316,fr,2,3.850000E+00,3.296450E+00,5.156385E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +1721760,fr,1,3.550000E+00,2.639700E-01,4.725330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1721761,fr,1,3.550000E+00,2.639700E-01,4.725330E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1721766,fr,1,3.550000E+00,2.639700E-01,4.725330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +1721770,fr,1,3.550000E+00,2.639700E-01,4.725330E+01,1.500000E+01,Active Shallow Crust,1.288962E+02,8.999380E+01,0.000000E+00 +1721772,fr,4,3.650000E+00,2.639700E-01,4.725330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1721773,fr,1,3.650000E+00,2.639700E-01,4.725330E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1721779,fr,1,3.650000E+00,2.639700E-01,4.725330E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1721784,fr,1,3.750000E+00,2.639700E-01,4.725330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1721809,fr,1,3.950000E+00,2.639700E-01,4.725330E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1721811,fr,2,3.950000E+00,2.639700E-01,4.725330E+01,5.000000E+00,Active Shallow Crust,2.400199E+02,5.800499E+01,0.000000E+00 +1721828,fr,1,4.050000E+00,2.639700E-01,4.725330E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +1722050,fr,1,5.950000E+00,2.639700E-01,4.725330E+01,2.750000E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +1722720,fr,1,3.550000E+00,6.091690E+00,4.607882E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999300E+01,0.000000E+00 +1722722,fr,1,3.550000E+00,6.091690E+00,4.607882E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999300E+01,0.000000E+00 +1722726,fr,1,3.550000E+00,6.091690E+00,4.607882E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999293E+01,-9.000000E+01 +1722729,fr,1,3.550000E+00,6.091690E+00,4.607882E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999300E+01,0.000000E+00 +1722732,fr,3,3.650000E+00,6.091690E+00,4.607882E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998753E+01,0.000000E+00 +1722733,fr,1,3.650000E+00,6.091690E+00,4.607882E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998753E+01,0.000000E+00 +1722735,fr,1,3.650000E+00,6.091690E+00,4.607882E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801318E+01,0.000000E+00 +1722742,fr,1,3.650000E+00,6.091690E+00,4.607882E+01,1.500000E+01,Active Shallow Crust,1.288998E+02,8.996352E+01,0.000000E+00 +1722750,fr,1,3.750000E+00,6.091690E+00,4.607882E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998876E+01,-9.000000E+01 +1722756,fr,1,3.850000E+00,6.091690E+00,4.607882E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1722758,fr,1,3.850000E+00,6.091690E+00,4.607882E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1722768,fr,1,3.950000E+00,6.091690E+00,4.607882E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +1722780,fr,1,4.050000E+00,6.091690E+00,4.607882E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998820E+01,0.000000E+00 +1722783,fr,1,4.050000E+00,6.091690E+00,4.607882E+01,5.000000E+00,Active Shallow Crust,2.400062E+02,5.800543E+01,0.000000E+00 +1722788,fr,1,4.050000E+00,6.091690E+00,4.607882E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998806E+01,-9.000000E+01 +1722792,fr,1,4.150000E+00,6.091690E+00,4.607882E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +1722816,fr,1,4.350000E+00,6.091690E+00,4.607882E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998886E+01,0.000000E+00 +1722817,fr,1,4.350000E+00,6.091690E+00,4.607882E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998886E+01,0.000000E+00 +1722822,fr,1,4.350000E+00,6.091690E+00,4.607882E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998873E+01,-9.000000E+01 +1722840,fr,2,4.550000E+00,6.091690E+00,4.607882E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998894E+01,0.000000E+00 +1722865,fr,1,4.750000E+00,6.091690E+00,4.607882E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1722960,fr,1,5.550000E+00,6.091690E+00,4.607882E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1723201,fr,1,3.550000E+00,1.877340E+00,5.036838E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +1723210,fr,1,3.550000E+00,1.877340E+00,5.036838E+01,1.500000E+01,Active Shallow Crust,1.288958E+02,8.999437E+01,0.000000E+00 +1723245,fr,1,3.850000E+00,1.877340E+00,5.036838E+01,5.000000E+00,Active Shallow Crust,1.288953E+02,8.999374E+01,0.000000E+00 +1723248,fr,1,3.950000E+00,1.877340E+00,5.036838E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1723254,fr,1,3.950000E+00,1.877340E+00,5.036838E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,-9.000000E+01 +1723260,fr,1,4.050000E+00,1.877340E+00,5.036838E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1723298,fr,1,4.350000E+00,1.877340E+00,5.036838E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1723365,fr,1,4.850000E+00,1.877340E+00,5.036838E+01,5.000000E+00,Active Shallow Crust,1.288912E+02,8.998899E+01,0.000000E+00 +1723740,fr,1,4.050000E+00,-3.600470E+00,4.430014E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1723753,fr,1,4.150000E+00,-3.600470E+00,4.430014E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998915E+01,0.000000E+00 +1724160,fr,4,3.550000E+00,-5.039000E-01,4.733298E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1724161,fr,1,3.550000E+00,-5.039000E-01,4.733298E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1724162,fr,1,3.550000E+00,-5.039000E-01,4.733298E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1724164,fr,1,3.550000E+00,-5.039000E-01,4.733298E+01,1.500000E+01,Active Shallow Crust,2.400123E+02,5.799820E+01,0.000000E+00 +1724167,fr,1,3.550000E+00,-5.039000E-01,4.733298E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998963E+01,-9.000000E+01 +1724172,fr,3,3.650000E+00,-5.039000E-01,4.733298E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1724179,fr,1,3.650000E+00,-5.039000E-01,4.733298E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +1724184,fr,1,3.750000E+00,-5.039000E-01,4.733298E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1724185,fr,2,3.750000E+00,-5.039000E-01,4.733298E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1724187,fr,2,3.750000E+00,-5.039000E-01,4.733298E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801767E+01,0.000000E+00 +1724190,fr,1,3.750000E+00,-5.039000E-01,4.733298E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,-9.000000E+01 +1724198,fr,1,3.850000E+00,-5.039000E-01,4.733298E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1724200,fr,1,3.850000E+00,-5.039000E-01,4.733298E+01,1.500000E+01,Active Shallow Crust,2.400109E+02,5.799778E+01,0.000000E+00 +1724204,fr,1,3.850000E+00,-5.039000E-01,4.733298E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,-9.000000E+01 +1724209,fr,2,3.950000E+00,-5.039000E-01,4.733298E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +1724211,fr,1,3.950000E+00,-5.039000E-01,4.733298E+01,5.000000E+00,Active Shallow Crust,2.400199E+02,5.800502E+01,0.000000E+00 +1724215,fr,1,3.950000E+00,-5.039000E-01,4.733298E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,-9.000000E+01 +1724232,fr,1,4.150000E+00,-5.039000E-01,4.733298E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1724233,fr,2,4.150000E+00,-5.039000E-01,4.733298E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1724235,fr,1,4.150000E+00,-5.039000E-01,4.733298E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.799736E+01,0.000000E+00 +1724272,fr,1,4.450000E+00,-5.039000E-01,4.733298E+01,1.500000E+01,Active Shallow Crust,2.400055E+02,5.799471E+01,0.000000E+00 +1724304,fr,1,4.750000E+00,-5.039000E-01,4.733298E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1724376,fr,1,5.350000E+00,-5.039000E-01,4.733298E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1724640,fr,1,3.550000E+00,5.712060E+00,4.706561E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999313E+01,0.000000E+00 +1724641,fr,1,3.550000E+00,5.712060E+00,4.706561E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999313E+01,0.000000E+00 +1724664,fr,2,3.750000E+00,5.712060E+00,4.706561E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +1724665,fr,1,3.750000E+00,5.712060E+00,4.706561E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +1724668,fr,1,3.750000E+00,5.712060E+00,4.706561E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.801848E+01,0.000000E+00 +1724676,fr,1,3.850000E+00,5.712060E+00,4.706561E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +1724689,fr,1,3.950000E+00,5.712060E+00,4.706561E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +1724691,fr,1,3.950000E+00,5.712060E+00,4.706561E+01,5.000000E+00,Active Shallow Crust,2.400199E+02,5.800455E+01,0.000000E+00 +1724694,fr,1,3.950000E+00,5.712060E+00,4.706561E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999123E+01,-9.000000E+01 +1724709,fr,1,4.050000E+00,5.712060E+00,4.706561E+01,5.000000E+00,Active Shallow Crust,1.288896E+02,8.999421E+01,0.000000E+00 +1724712,fr,1,4.150000E+00,5.712060E+00,4.706561E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +1724724,fr,3,4.250000E+00,5.712060E+00,4.706561E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999079E+01,0.000000E+00 +1724848,fr,1,5.250000E+00,5.712060E+00,4.706561E+01,1.500000E+01,Active Shallow Crust,2.400258E+02,5.800029E+01,0.000000E+00 +1725600,fr,2,3.550000E+00,2.870340E+00,4.523277E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +1725601,fr,2,3.550000E+00,2.870340E+00,4.523277E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +1725602,fr,1,3.550000E+00,2.870340E+00,4.523277E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +1725613,fr,1,3.650000E+00,2.870340E+00,4.523277E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +1725614,fr,1,3.650000E+00,2.870340E+00,4.523277E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +1725615,fr,1,3.650000E+00,2.870340E+00,4.523277E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801314E+01,0.000000E+00 +1725624,fr,1,3.750000E+00,2.870340E+00,4.523277E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +1725626,fr,1,3.750000E+00,2.870340E+00,4.523277E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +1725628,fr,1,3.750000E+00,2.870340E+00,4.523277E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.801756E+01,0.000000E+00 +1725633,fr,1,3.750000E+00,2.870340E+00,4.523277E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.996747E+01,0.000000E+00 +1725636,fr,2,3.850000E+00,2.870340E+00,4.523277E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1725641,fr,1,3.850000E+00,2.870340E+00,4.523277E+01,2.750000E+01,Active Shallow Crust,2.400103E+02,5.799802E+01,0.000000E+00 +1725650,fr,1,3.950000E+00,2.870340E+00,4.523277E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +1725672,fr,1,4.150000E+00,2.870340E+00,4.523277E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +1725684,fr,1,4.250000E+00,2.870340E+00,4.523277E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1725720,fr,1,4.550000E+00,2.870340E+00,4.523277E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1726080,fr,1,3.550000E+00,2.146590E+00,5.011830E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1726082,fr,1,3.550000E+00,2.146590E+00,5.011830E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1726117,fr,1,3.850000E+00,2.146590E+00,5.011830E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +1726140,fr,1,4.050000E+00,2.146590E+00,5.011830E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +1726149,fr,1,4.050000E+00,2.146590E+00,5.011830E+01,5.000000E+00,Active Shallow Crust,1.288901E+02,8.999364E+01,0.000000E+00 +1726164,fr,1,4.250000E+00,2.146590E+00,5.011830E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1726214,fr,1,4.650000E+00,2.146590E+00,5.011830E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1726560,fr,2,3.550000E+00,2.022940E+00,4.854591E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1726575,fr,1,3.650000E+00,2.022940E+00,4.854591E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801297E+01,0.000000E+00 +1726596,fr,1,3.850000E+00,2.022940E+00,4.854591E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +1726645,fr,1,4.250000E+00,2.022940E+00,4.854591E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1726647,fr,1,4.250000E+00,2.022940E+00,4.854591E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.799432E+01,0.000000E+00 +1727040,fr,2,3.550000E+00,1.570220E+00,4.706867E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1727043,fr,1,3.550000E+00,1.570220E+00,4.706867E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799791E+01,0.000000E+00 +1727054,fr,1,3.650000E+00,1.570220E+00,4.706867E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +1727061,fr,1,3.650000E+00,1.570220E+00,4.706867E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996340E+01,0.000000E+00 +1727066,fr,1,3.750000E+00,1.570220E+00,4.706867E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1727067,fr,1,3.750000E+00,1.570220E+00,4.706867E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801740E+01,0.000000E+00 +1727076,fr,1,3.850000E+00,1.570220E+00,4.706867E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +1727088,fr,1,3.950000E+00,1.570220E+00,4.706867E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1727114,fr,1,4.150000E+00,1.570220E+00,4.706867E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +1727136,fr,1,4.350000E+00,1.570220E+00,4.706867E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1727247,fr,1,5.250000E+00,1.570220E+00,4.706867E+01,5.000000E+00,Active Shallow Crust,2.400259E+02,5.800035E+01,0.000000E+00 +1727520,fr,1,3.550000E+00,3.257560E+00,4.658923E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +1727580,fr,1,4.050000E+00,3.257560E+00,4.658923E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1728000,fr,1,3.550000E+00,5.419010E+00,4.943781E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998689E+01,0.000000E+00 +1728036,fr,1,3.850000E+00,5.419010E+00,4.943781E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +1728051,fr,1,3.950000E+00,5.419010E+00,4.943781E+01,5.000000E+00,Active Shallow Crust,2.400196E+02,5.800525E+01,0.000000E+00 +1728542,fr,1,4.050000E+00,1.712460E+00,5.010233E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1728553,fr,1,4.150000E+00,1.712460E+00,5.010233E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +1728961,fr,1,3.550000E+00,2.464330E+00,5.129002E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +1728966,fr,1,3.550000E+00,2.464330E+00,5.129002E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,-9.000000E+01 +1728970,fr,1,3.550000E+00,2.464330E+00,5.129002E+01,1.500000E+01,Active Shallow Crust,1.288952E+02,8.999369E+01,0.000000E+00 +1729002,fr,1,3.850000E+00,2.464330E+00,5.129002E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,-9.000000E+01 +1729080,fr,1,4.550000E+00,2.464330E+00,5.129002E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1729083,fr,1,4.550000E+00,2.464330E+00,5.129002E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799765E+01,0.000000E+00 +1729440,fr,2,3.550000E+00,-8.933500E-01,4.851068E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1729441,fr,1,3.550000E+00,-8.933500E-01,4.851068E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1729447,fr,1,3.550000E+00,-8.933500E-01,4.851068E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,-9.000000E+01 +1729455,fr,1,3.650000E+00,-8.933500E-01,4.851068E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801291E+01,0.000000E+00 +1729488,fr,1,3.950000E+00,-8.933500E-01,4.851068E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1729490,fr,1,3.950000E+00,-8.933500E-01,4.851068E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1729512,fr,1,4.150000E+00,-8.933500E-01,4.851068E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1729515,fr,1,4.150000E+00,-8.933500E-01,4.851068E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.799738E+01,0.000000E+00 +1729540,fr,1,4.350000E+00,-8.933500E-01,4.851068E+01,1.500000E+01,Active Shallow Crust,2.400089E+02,5.799601E+01,0.000000E+00 +1729620,fr,1,5.050000E+00,-8.933500E-01,4.851068E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1729920,fr,1,3.550000E+00,1.717530E+00,4.520813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +1729924,fr,1,3.550000E+00,1.717530E+00,4.520813E+01,1.500000E+01,Active Shallow Crust,2.400119E+02,5.799842E+01,0.000000E+00 +1729926,fr,1,3.550000E+00,1.717530E+00,4.520813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998922E+01,-9.000000E+01 +1729935,fr,1,3.650000E+00,1.717530E+00,4.520813E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801304E+01,0.000000E+00 +1729944,fr,1,3.750000E+00,1.717530E+00,4.520813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1729992,fr,1,4.150000E+00,1.717530E+00,4.520813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1729993,fr,1,4.150000E+00,1.717530E+00,4.520813E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1730016,fr,1,4.350000E+00,1.717530E+00,4.520813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1730028,fr,1,4.450000E+00,1.717530E+00,4.520813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1730208,fr,1,5.950000E+00,1.717530E+00,4.520813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1730445,fr,1,3.850000E+00,6.004160E+00,4.938883E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999303E+01,0.000000E+00 +1730472,fr,1,4.150000E+00,6.004160E+00,4.938883E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1730503,fr,1,4.350000E+00,6.004160E+00,4.938883E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,-9.000000E+01 +1730568,fr,1,4.950000E+00,6.004160E+00,4.938883E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1730880,fr,2,3.550000E+00,6.109700E+00,4.737364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999317E+01,0.000000E+00 +1730890,fr,1,3.550000E+00,6.109700E+00,4.737364E+01,1.500000E+01,Active Shallow Crust,1.288956E+02,8.999317E+01,0.000000E+00 +1730893,fr,1,3.650000E+00,6.109700E+00,4.737364E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998782E+01,0.000000E+00 +1730908,fr,1,3.750000E+00,6.109700E+00,4.737364E+01,1.500000E+01,Active Shallow Crust,2.400093E+02,5.801666E+01,0.000000E+00 +1730911,fr,1,3.750000E+00,6.109700E+00,4.737364E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998903E+01,-9.000000E+01 +1730916,fr,1,3.850000E+00,6.109700E+00,4.737364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1730930,fr,1,3.950000E+00,6.109700E+00,4.737364E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999138E+01,0.000000E+00 +1730938,fr,1,3.950000E+00,6.109700E+00,4.737364E+01,1.500000E+01,Active Shallow Crust,1.289006E+02,8.999354E+01,0.000000E+00 +1730941,fr,1,4.050000E+00,6.109700E+00,4.737364E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998848E+01,0.000000E+00 +1730949,fr,1,4.050000E+00,6.109700E+00,4.737364E+01,5.000000E+00,Active Shallow Crust,1.288902E+02,8.999424E+01,0.000000E+00 +1730955,fr,1,4.150000E+00,6.109700E+00,4.737364E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.799779E+01,0.000000E+00 +1730964,fr,1,4.250000E+00,6.109700E+00,4.737364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +1730965,fr,1,4.250000E+00,6.109700E+00,4.737364E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +1730991,fr,1,4.450000E+00,6.109700E+00,4.737364E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.799500E+01,0.000000E+00 +1731000,fr,1,4.550000E+00,6.109700E+00,4.737364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1731841,fr,1,3.550000E+00,5.553220E+00,4.933043E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998685E+01,0.000000E+00 +1731888,fr,1,3.950000E+00,5.553220E+00,4.933043E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999171E+01,0.000000E+00 +1732416,fr,1,4.350000E+00,-5.803930E+00,4.833418E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1732440,fr,1,4.550000E+00,-5.803930E+00,4.833418E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +1732800,fr,1,3.550000E+00,6.011730E+00,4.658790E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999307E+01,0.000000E+00 +1732812,fr,2,3.650000E+00,6.011730E+00,4.658790E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998765E+01,0.000000E+00 +1732825,fr,1,3.750000E+00,6.011730E+00,4.658790E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998899E+01,0.000000E+00 +1732833,fr,1,3.750000E+00,6.011730E+00,4.658790E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.996749E+01,0.000000E+00 +1732837,fr,1,3.850000E+00,6.011730E+00,4.658790E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1732845,fr,1,3.850000E+00,6.011730E+00,4.658790E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999265E+01,0.000000E+00 +1732848,fr,1,3.950000E+00,6.011730E+00,4.658790E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +1732849,fr,2,3.950000E+00,6.011730E+00,4.658790E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +1732860,fr,1,4.050000E+00,6.011730E+00,4.658790E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998831E+01,0.000000E+00 +1732921,fr,1,4.550000E+00,6.011730E+00,4.658790E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +1732935,fr,1,4.650000E+00,6.011730E+00,4.658790E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799430E+01,0.000000E+00 +1732944,fr,1,4.750000E+00,6.011730E+00,4.658790E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1732957,fr,1,4.850000E+00,6.011730E+00,4.658790E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999069E+01,0.000000E+00 +1733281,fr,1,3.550000E+00,-1.728700E-01,4.681980E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1733283,fr,1,3.550000E+00,-1.728700E-01,4.681980E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799818E+01,0.000000E+00 +1733289,fr,2,3.550000E+00,-1.728700E-01,4.681980E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999374E+01,0.000000E+00 +1733291,fr,1,3.550000E+00,-1.728700E-01,4.681980E+01,2.750000E+01,Active Shallow Crust,1.288962E+02,8.999374E+01,0.000000E+00 +1733292,fr,3,3.650000E+00,-1.728700E-01,4.681980E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1733294,fr,1,3.650000E+00,-1.728700E-01,4.681980E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1733295,fr,1,3.650000E+00,-1.728700E-01,4.681980E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801289E+01,0.000000E+00 +1733304,fr,1,3.750000E+00,-1.728700E-01,4.681980E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1733307,fr,2,3.750000E+00,-1.728700E-01,4.681980E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.801755E+01,0.000000E+00 +1733310,fr,1,3.750000E+00,-1.728700E-01,4.681980E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,-9.000000E+01 +1733328,fr,1,3.950000E+00,-1.728700E-01,4.681980E+01,5.000000E+00,Active Shallow Crust,3.599999E+02,8.999007E+01,0.000000E+00 +1733331,fr,1,3.950000E+00,-1.728700E-01,4.681980E+01,5.000000E+00,Active Shallow Crust,2.400198E+02,5.800498E+01,0.000000E+00 +1733334,fr,1,3.950000E+00,-1.728700E-01,4.681980E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,-9.000000E+01 +1733337,fr,1,3.950000E+00,-1.728700E-01,4.681980E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.999374E+01,0.000000E+00 +1733340,fr,2,4.050000E+00,-1.728700E-01,4.681980E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1733342,fr,1,4.050000E+00,-1.728700E-01,4.681980E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1733364,fr,1,4.250000E+00,-1.728700E-01,4.681980E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1733365,fr,1,4.250000E+00,-1.728700E-01,4.681980E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1733380,fr,1,4.350000E+00,-1.728700E-01,4.681980E+01,1.500000E+01,Active Shallow Crust,2.400085E+02,5.799596E+01,0.000000E+00 +1733400,fr,1,4.550000E+00,-1.728700E-01,4.681980E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1733403,fr,1,4.550000E+00,-1.728700E-01,4.681980E+01,5.000000E+00,Active Shallow Crust,2.400094E+02,5.799738E+01,0.000000E+00 +1733414,fr,1,4.650000E+00,-1.728700E-01,4.681980E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1733472,fr,1,5.150000E+00,-1.728700E-01,4.681980E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1733691,fr,1,6.950000E+00,-2.049422E-01,4.685778E+01,1.280532E+01,Active Shallow Crust,2.401642E+02,5.799987E+01,0.000000E+00 +1733760,fr,4,3.550000E+00,7.362070E+00,4.649180E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999306E+01,0.000000E+00 +1733761,fr,5,3.550000E+00,7.362070E+00,4.649180E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999306E+01,0.000000E+00 +1733762,fr,1,3.550000E+00,7.362070E+00,4.649180E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999306E+01,0.000000E+00 +1733763,fr,3,3.550000E+00,7.362070E+00,4.649180E+01,5.000000E+00,Active Shallow Crust,2.400135E+02,5.799737E+01,0.000000E+00 +1733764,fr,3,3.550000E+00,7.362070E+00,4.649180E+01,1.500000E+01,Active Shallow Crust,2.400135E+02,5.799737E+01,0.000000E+00 +1733765,fr,1,3.550000E+00,7.362070E+00,4.649180E+01,2.750000E+01,Active Shallow Crust,2.400135E+02,5.799728E+01,0.000000E+00 +1733767,fr,2,3.550000E+00,7.362070E+00,4.649180E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999298E+01,-9.000000E+01 +1733772,fr,5,3.650000E+00,7.362070E+00,4.649180E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998763E+01,0.000000E+00 +1733773,fr,1,3.650000E+00,7.362070E+00,4.649180E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998763E+01,0.000000E+00 +1733775,fr,2,3.650000E+00,7.362070E+00,4.649180E+01,5.000000E+00,Active Shallow Crust,2.400019E+02,5.801299E+01,0.000000E+00 +1733782,fr,1,3.650000E+00,7.362070E+00,4.649180E+01,1.500000E+01,Active Shallow Crust,1.289003E+02,8.996352E+01,0.000000E+00 +1733784,fr,8,3.750000E+00,7.362070E+00,4.649180E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998897E+01,0.000000E+00 +1733785,fr,2,3.750000E+00,7.362070E+00,4.649180E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998897E+01,0.000000E+00 +1733786,fr,1,3.750000E+00,7.362070E+00,4.649180E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998897E+01,0.000000E+00 +1733787,fr,1,3.750000E+00,7.362070E+00,4.649180E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.801733E+01,0.000000E+00 +1733790,fr,1,3.750000E+00,7.362070E+00,4.649180E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998885E+01,-9.000000E+01 +1733796,fr,4,3.850000E+00,7.362070E+00,4.649180E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1733797,fr,3,3.850000E+00,7.362070E+00,4.649180E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1733798,fr,1,3.850000E+00,7.362070E+00,4.649180E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1733799,fr,1,3.850000E+00,7.362070E+00,4.649180E+01,5.000000E+00,Active Shallow Crust,2.400103E+02,5.799838E+01,0.000000E+00 +1733802,fr,1,3.850000E+00,7.362070E+00,4.649180E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +1733803,fr,1,3.850000E+00,7.362070E+00,4.649180E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +1733805,fr,1,3.850000E+00,7.362070E+00,4.649180E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999263E+01,0.000000E+00 +1733806,fr,1,3.850000E+00,7.362070E+00,4.649180E+01,1.500000E+01,Active Shallow Crust,1.288958E+02,8.999263E+01,0.000000E+00 +1733808,fr,6,3.950000E+00,7.362070E+00,4.649180E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999124E+01,0.000000E+00 +1733809,fr,1,3.950000E+00,7.362070E+00,4.649180E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999124E+01,0.000000E+00 +1733812,fr,1,3.950000E+00,7.362070E+00,4.649180E+01,1.500000E+01,Active Shallow Crust,2.400195E+02,5.800522E+01,0.000000E+00 +1733815,fr,2,3.950000E+00,7.362070E+00,4.649180E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999113E+01,-9.000000E+01 +1733820,fr,5,4.050000E+00,7.362070E+00,4.649180E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998829E+01,0.000000E+00 +1733822,fr,1,4.050000E+00,7.362070E+00,4.649180E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998829E+01,0.000000E+00 +1733823,fr,1,4.050000E+00,7.362070E+00,4.649180E+01,5.000000E+00,Active Shallow Crust,2.400063E+02,5.800578E+01,0.000000E+00 +1733826,fr,1,4.050000E+00,7.362070E+00,4.649180E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998815E+01,-9.000000E+01 +1733829,fr,1,4.050000E+00,7.362070E+00,4.649180E+01,5.000000E+00,Active Shallow Crust,1.288912E+02,8.999220E+01,0.000000E+00 +1733832,fr,1,4.150000E+00,7.362070E+00,4.649180E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1733833,fr,2,4.150000E+00,7.362070E+00,4.649180E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1733838,fr,1,4.150000E+00,7.362070E+00,4.649180E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,-9.000000E+01 +1733839,fr,1,4.150000E+00,7.362070E+00,4.649180E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998944E+01,-9.000000E+01 +1733841,fr,1,4.150000E+00,7.362070E+00,4.649180E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.999304E+01,0.000000E+00 +1733844,fr,1,4.250000E+00,7.362070E+00,4.649180E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +1733846,fr,2,4.250000E+00,7.362070E+00,4.649180E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +1733847,fr,2,4.250000E+00,7.362070E+00,4.649180E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799365E+01,0.000000E+00 +1733851,fr,1,4.250000E+00,7.362070E+00,4.649180E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,-9.000000E+01 +1733856,fr,4,4.350000E+00,7.362070E+00,4.649180E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +1733857,fr,2,4.350000E+00,7.362070E+00,4.649180E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +1733859,fr,1,4.350000E+00,7.362070E+00,4.649180E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799642E+01,0.000000E+00 +1733862,fr,1,4.350000E+00,7.362070E+00,4.649180E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998882E+01,-9.000000E+01 +1733868,fr,4,4.450000E+00,7.362070E+00,4.649180E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1733871,fr,1,4.450000E+00,7.362070E+00,4.649180E+01,5.000000E+00,Active Shallow Crust,2.400057E+02,5.799466E+01,0.000000E+00 +1733872,fr,1,4.450000E+00,7.362070E+00,4.649180E+01,1.500000E+01,Active Shallow Crust,2.400057E+02,5.799467E+01,0.000000E+00 +1733880,fr,3,4.550000E+00,7.362070E+00,4.649180E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998902E+01,0.000000E+00 +1733886,fr,1,4.550000E+00,7.362070E+00,4.649180E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998889E+01,-9.000000E+01 +1733889,fr,1,4.550000E+00,7.362070E+00,4.649180E+01,5.000000E+00,Active Shallow Crust,1.288939E+02,8.998565E+01,0.000000E+00 +1733892,fr,1,4.650000E+00,7.362070E+00,4.649180E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1733908,fr,1,4.750000E+00,7.362070E+00,4.649180E+01,1.500000E+01,Active Shallow Crust,2.400076E+02,5.800430E+01,0.000000E+00 +1733916,fr,1,4.850000E+00,7.362070E+00,4.649180E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +1733928,fr,2,4.950000E+00,7.362070E+00,4.649180E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1733929,fr,1,4.950000E+00,7.362070E+00,4.649180E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1733971,fr,1,5.250000E+00,7.362070E+00,4.649180E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +1733979,fr,2,5.350000E+00,7.362070E+00,4.649180E+01,5.000000E+00,Active Shallow Crust,2.400251E+02,5.799795E+01,0.000000E+00 +1734240,fr,3,3.550000E+00,2.333400E+00,4.631463E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1734241,fr,1,3.550000E+00,2.333400E+00,4.631463E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1734252,fr,1,3.650000E+00,2.333400E+00,4.631463E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999069E+01,0.000000E+00 +1734264,fr,1,3.750000E+00,2.333400E+00,4.631463E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998894E+01,0.000000E+00 +1734273,fr,1,3.750000E+00,2.333400E+00,4.631463E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.996749E+01,0.000000E+00 +1734286,fr,1,3.850000E+00,2.333400E+00,4.631463E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.999261E+01,0.000000E+00 +1734288,fr,1,3.950000E+00,2.333400E+00,4.631463E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +1734325,fr,1,4.250000E+00,2.333400E+00,4.631463E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999067E+01,0.000000E+00 +1734345,fr,1,4.350000E+00,2.333400E+00,4.631463E+01,5.000000E+00,Active Shallow Crust,1.288980E+02,8.998277E+01,0.000000E+00 +1734395,fr,1,4.750000E+00,2.333400E+00,4.631463E+01,2.750000E+01,Active Shallow Crust,1.288886E+02,8.998816E+01,0.000000E+00 +1734721,fr,1,3.550000E+00,2.247000E-01,4.791845E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1734726,fr,1,3.550000E+00,2.247000E-01,4.791845E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +1734738,fr,1,3.650000E+00,2.247000E-01,4.791845E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +1734746,fr,1,3.750000E+00,2.247000E-01,4.791845E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1734768,fr,1,3.950000E+00,2.247000E-01,4.791845E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1734782,fr,1,4.050000E+00,2.247000E-01,4.791845E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1734805,fr,1,4.250000E+00,2.247000E-01,4.791845E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1734807,fr,1,4.250000E+00,2.247000E-01,4.791845E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.799412E+01,0.000000E+00 +1735680,fr,1,3.550000E+00,-3.294260E+00,4.872304E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1735683,fr,1,3.550000E+00,-3.294260E+00,4.872304E+01,5.000000E+00,Active Shallow Crust,2.400126E+02,5.799834E+01,0.000000E+00 +1735684,fr,1,3.550000E+00,-3.294260E+00,4.872304E+01,1.500000E+01,Active Shallow Crust,2.400126E+02,5.799834E+01,0.000000E+00 +1735692,fr,4,3.650000E+00,-3.294260E+00,4.872304E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +1735701,fr,1,3.650000E+00,-3.294260E+00,4.872304E+01,5.000000E+00,Active Shallow Crust,1.288998E+02,8.996357E+01,0.000000E+00 +1735704,fr,1,3.750000E+00,-3.294260E+00,4.872304E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1735707,fr,1,3.750000E+00,-3.294260E+00,4.872304E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801738E+01,0.000000E+00 +1735725,fr,1,3.850000E+00,-3.294260E+00,4.872304E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999294E+01,0.000000E+00 +1735728,fr,2,3.950000E+00,-3.294260E+00,4.872304E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1735732,fr,1,3.950000E+00,-3.294260E+00,4.872304E+01,1.500000E+01,Active Shallow Crust,2.400203E+02,5.800493E+01,0.000000E+00 +1735743,fr,1,4.050000E+00,-3.294260E+00,4.872304E+01,5.000000E+00,Active Shallow Crust,2.400061E+02,5.800622E+01,0.000000E+00 +1735764,fr,1,4.250000E+00,-3.294260E+00,4.872304E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +1735884,fr,1,5.250000E+00,-3.294260E+00,4.872304E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1736160,fr,2,3.550000E+00,5.146870E+00,4.775931E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999322E+01,0.000000E+00 +1736166,fr,2,3.550000E+00,5.146870E+00,4.775931E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999314E+01,-9.000000E+01 +1736178,fr,1,3.650000E+00,5.146870E+00,4.775931E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998778E+01,-9.000000E+01 +1736187,fr,1,3.750000E+00,5.146870E+00,4.775931E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.801709E+01,0.000000E+00 +1736211,fr,1,3.950000E+00,5.146870E+00,4.775931E+01,5.000000E+00,Active Shallow Crust,2.400194E+02,5.800537E+01,0.000000E+00 +1736232,fr,1,4.150000E+00,5.146870E+00,4.775931E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1736304,fr,1,4.750000E+00,5.146870E+00,4.775931E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1736340,fr,1,5.050000E+00,5.146870E+00,4.775931E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1736641,fr,1,3.550000E+00,1.660700E-01,4.818110E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1736646,fr,1,3.550000E+00,1.660700E-01,4.818110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1736652,fr,1,3.650000E+00,1.660700E-01,4.818110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1736736,fr,1,4.350000E+00,1.660700E-01,4.818110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1736808,fr,1,4.950000E+00,1.660700E-01,4.818110E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999002E+01,0.000000E+00 +1737120,fr,3,3.550000E+00,4.974970E+00,4.356275E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999269E+01,0.000000E+00 +1737132,fr,1,3.650000E+00,4.974970E+00,4.356275E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998698E+01,0.000000E+00 +1737134,fr,1,3.650000E+00,4.974970E+00,4.356275E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998698E+01,0.000000E+00 +1737148,fr,1,3.750000E+00,4.974970E+00,4.356275E+01,1.500000E+01,Active Shallow Crust,2.400073E+02,5.801759E+01,0.000000E+00 +1737150,fr,1,3.750000E+00,4.974970E+00,4.356275E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998826E+01,-9.000000E+01 +1737153,fr,1,3.750000E+00,4.974970E+00,4.356275E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.996744E+01,0.000000E+00 +1737156,fr,1,3.850000E+00,4.974970E+00,4.356275E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1737168,fr,1,3.950000E+00,4.974970E+00,4.356275E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +1737169,fr,1,3.950000E+00,4.974970E+00,4.356275E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +1737170,fr,1,3.950000E+00,4.974970E+00,4.356275E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +1737174,fr,1,3.950000E+00,4.974970E+00,4.356275E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999067E+01,-9.000000E+01 +1737192,fr,1,4.150000E+00,4.974970E+00,4.356275E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +1737204,fr,1,4.250000E+00,4.974970E+00,4.356275E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1737207,fr,1,4.250000E+00,4.974970E+00,4.356275E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.799389E+01,0.000000E+00 +1737241,fr,1,4.550000E+00,4.974970E+00,4.356275E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +1737276,fr,1,4.850000E+00,4.974970E+00,4.356275E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1737301,fr,1,5.050000E+00,4.974970E+00,4.356275E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +1737600,fr,1,3.550000E+00,-6.227100E-01,4.365747E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1737612,fr,1,3.650000E+00,-6.227100E-01,4.365747E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1737614,fr,1,3.650000E+00,-6.227100E-01,4.365747E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1737624,fr,1,3.750000E+00,-6.227100E-01,4.365747E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1737645,fr,1,3.850000E+00,-6.227100E-01,4.365747E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999387E+01,0.000000E+00 +1737650,fr,1,3.950000E+00,-6.227100E-01,4.365747E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1738080,fr,1,3.550000E+00,2.852390E+00,4.588027E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +1738083,fr,1,3.550000E+00,2.852390E+00,4.588027E+01,5.000000E+00,Active Shallow Crust,2.400128E+02,5.799753E+01,0.000000E+00 +1738084,fr,1,3.550000E+00,2.852390E+00,4.588027E+01,1.500000E+01,Active Shallow Crust,2.400128E+02,5.799753E+01,0.000000E+00 +1738092,fr,2,3.650000E+00,2.852390E+00,4.588027E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1738095,fr,1,3.650000E+00,2.852390E+00,4.588027E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801328E+01,0.000000E+00 +1738101,fr,1,3.650000E+00,2.852390E+00,4.588027E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.996351E+01,0.000000E+00 +1738104,fr,2,3.750000E+00,2.852390E+00,4.588027E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +1738106,fr,1,3.750000E+00,2.852390E+00,4.588027E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +1738116,fr,1,3.850000E+00,2.852390E+00,4.588027E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1738117,fr,1,3.850000E+00,2.852390E+00,4.588027E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1738128,fr,1,3.950000E+00,2.852390E+00,4.588027E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998893E+01,0.000000E+00 +1738131,fr,1,3.950000E+00,2.852390E+00,4.588027E+01,5.000000E+00,Active Shallow Crust,2.400196E+02,5.800505E+01,0.000000E+00 +1738153,fr,1,4.150000E+00,2.852390E+00,4.588027E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +1738183,fr,1,4.350000E+00,2.852390E+00,4.588027E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +1738185,fr,1,4.350000E+00,2.852390E+00,4.588027E+01,5.000000E+00,Active Shallow Crust,1.288978E+02,8.998276E+01,0.000000E+00 +1738188,fr,2,4.450000E+00,2.852390E+00,4.588027E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1738212,fr,1,4.650000E+00,2.852390E+00,4.588027E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1738320,fr,1,5.550000E+00,2.852390E+00,4.588027E+01,5.000000E+00,Active Shallow Crust,3.599998E+02,8.999017E+01,0.000000E+00 +1738562,fr,1,3.550000E+00,3.650790E+00,5.080317E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +1738563,fr,1,3.550000E+00,3.650790E+00,5.080317E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799854E+01,0.000000E+00 +1738577,fr,1,3.650000E+00,3.650790E+00,5.080317E+01,2.750000E+01,Active Shallow Crust,2.400013E+02,5.801290E+01,0.000000E+00 +1738581,fr,1,3.650000E+00,3.650790E+00,5.080317E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996336E+01,0.000000E+00 +1738584,fr,1,3.750000E+00,3.650790E+00,5.080317E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1738608,fr,1,3.950000E+00,3.650790E+00,5.080317E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1738620,fr,1,4.050000E+00,3.650790E+00,5.080317E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +1738632,fr,1,4.150000E+00,3.650790E+00,5.080317E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +1738908,fr,1,6.450000E+00,3.650799E+00,5.080317E+01,8.491219E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1739050,fr,1,3.550000E+00,6.913300E+00,4.420644E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.999277E+01,0.000000E+00 +1739052,fr,3,3.650000E+00,6.913300E+00,4.420644E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998711E+01,0.000000E+00 +1739053,fr,1,3.650000E+00,6.913300E+00,4.420644E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998711E+01,0.000000E+00 +1739058,fr,1,3.650000E+00,6.913300E+00,4.420644E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998697E+01,-9.000000E+01 +1739067,fr,1,3.750000E+00,6.913300E+00,4.420644E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.801860E+01,0.000000E+00 +1739068,fr,1,3.750000E+00,6.913300E+00,4.420644E+01,1.500000E+01,Active Shallow Crust,2.400077E+02,5.801860E+01,0.000000E+00 +1739070,fr,1,3.750000E+00,6.913300E+00,4.420644E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998838E+01,-9.000000E+01 +1739072,fr,1,3.750000E+00,6.913300E+00,4.420644E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998838E+01,-9.000000E+01 +1739076,fr,2,3.850000E+00,6.913300E+00,4.420644E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +1739088,fr,1,3.950000E+00,6.913300E+00,4.420644E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1739113,fr,1,4.150000E+00,6.913300E+00,4.420644E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998913E+01,0.000000E+00 +1739115,fr,1,4.150000E+00,6.913300E+00,4.420644E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.799681E+01,0.000000E+00 +1739172,fr,1,4.650000E+00,6.913300E+00,4.420644E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1739196,fr,1,4.850000E+00,6.913300E+00,4.420644E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +1739208,fr,1,4.950000E+00,6.913300E+00,4.420644E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1739218,fr,2,4.950000E+00,6.913300E+00,4.420644E+01,1.500000E+01,Active Shallow Crust,1.288908E+02,8.998966E+01,0.000000E+00 +1739413,fr,1,6.650000E+00,6.913300E+00,4.420644E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1739539,fr,1,3.650000E+00,2.783480E+00,4.844685E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999095E+01,-9.000000E+01 +1739608,fr,1,4.250000E+00,2.783480E+00,4.844685E+01,1.500000E+01,Active Shallow Crust,2.400076E+02,5.799440E+01,0.000000E+00 +1740000,fr,1,3.550000E+00,3.407500E-01,4.885523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1740003,fr,1,3.550000E+00,3.407500E-01,4.885523E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799822E+01,0.000000E+00 +1740012,fr,1,3.650000E+00,3.407500E-01,4.885523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1740013,fr,1,3.650000E+00,3.407500E-01,4.885523E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1740024,fr,1,3.750000E+00,3.407500E-01,4.885523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1740036,fr,1,3.850000E+00,3.407500E-01,4.885523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1740087,fr,1,4.250000E+00,3.407500E-01,4.885523E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799417E+01,0.000000E+00 +1740088,fr,1,4.250000E+00,3.407500E-01,4.885523E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.799417E+01,0.000000E+00 +1740120,fr,1,4.550000E+00,3.407500E-01,4.885523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1740126,fr,1,4.550000E+00,3.407500E-01,4.885523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,-9.000000E+01 +1740145,fr,1,4.750000E+00,3.407500E-01,4.885523E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1740168,fr,1,4.950000E+00,3.407500E-01,4.885523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1740480,fr,1,3.550000E+00,-1.302000E-02,4.896690E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1740486,fr,1,3.550000E+00,-1.302000E-02,4.896690E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +1740492,fr,2,3.650000E+00,-1.302000E-02,4.896690E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1740497,fr,1,3.650000E+00,-1.302000E-02,4.896690E+01,2.750000E+01,Active Shallow Crust,2.400014E+02,5.801286E+01,0.000000E+00 +1740499,fr,1,3.650000E+00,-1.302000E-02,4.896690E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +1740504,fr,1,3.750000E+00,-1.302000E-02,4.896690E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1740505,fr,1,3.750000E+00,-1.302000E-02,4.896690E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1740516,fr,2,3.850000E+00,-1.302000E-02,4.896690E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +1740528,fr,1,3.950000E+00,-1.302000E-02,4.896690E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1740534,fr,1,3.950000E+00,-1.302000E-02,4.896690E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +1740553,fr,1,4.150000E+00,-1.302000E-02,4.896690E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1740576,fr,1,4.350000E+00,-1.302000E-02,4.896690E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1740580,fr,1,4.350000E+00,-1.302000E-02,4.896690E+01,1.500000E+01,Active Shallow Crust,2.400090E+02,5.799605E+01,0.000000E+00 +1740960,fr,1,3.550000E+00,-1.573220E+00,4.684273E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1740961,fr,1,3.550000E+00,-1.573220E+00,4.684273E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1740962,fr,1,3.550000E+00,-1.573220E+00,4.684273E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1740963,fr,1,3.550000E+00,-1.573220E+00,4.684273E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799809E+01,0.000000E+00 +1740964,fr,1,3.550000E+00,-1.573220E+00,4.684273E+01,1.500000E+01,Active Shallow Crust,2.400125E+02,5.799809E+01,0.000000E+00 +1740972,fr,1,3.650000E+00,-1.573220E+00,4.684273E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +1740973,fr,1,3.650000E+00,-1.573220E+00,4.684273E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +1740978,fr,1,3.650000E+00,-1.573220E+00,4.684273E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999067E+01,-9.000000E+01 +1740985,fr,1,3.750000E+00,-1.573220E+00,4.684273E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +1740986,fr,1,3.750000E+00,-1.573220E+00,4.684273E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +1740990,fr,1,3.750000E+00,-1.573220E+00,4.684273E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,-9.000000E+01 +1740996,fr,1,3.850000E+00,-1.573220E+00,4.684273E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1740999,fr,1,3.850000E+00,-1.573220E+00,4.684273E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799784E+01,0.000000E+00 +1741008,fr,3,3.950000E+00,-1.573220E+00,4.684273E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1741056,fr,1,4.350000E+00,-1.573220E+00,4.684273E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1741130,fr,1,4.950000E+00,-1.573220E+00,4.684273E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1741224,fr,1,5.750000E+00,-1.573220E+00,4.684273E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1741440,fr,1,3.550000E+00,-1.777290E+00,4.243119E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +1741446,fr,1,3.550000E+00,-1.777290E+00,4.243119E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,-9.000000E+01 +1741447,fr,1,3.550000E+00,-1.777290E+00,4.243119E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,-9.000000E+01 +1741452,fr,1,3.650000E+00,-1.777290E+00,4.243119E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1741464,fr,1,3.750000E+00,-1.777290E+00,4.243119E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1741467,fr,1,3.750000E+00,-1.777290E+00,4.243119E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801764E+01,0.000000E+00 +1741471,fr,1,3.750000E+00,-1.777290E+00,4.243119E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998953E+01,-9.000000E+01 +1741488,fr,2,3.950000E+00,-1.777290E+00,4.243119E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1741507,fr,1,4.050000E+00,-1.777290E+00,4.243119E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999047E+01,-9.000000E+01 +1741512,fr,1,4.150000E+00,-1.777290E+00,4.243119E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +1741513,fr,1,4.150000E+00,-1.777290E+00,4.243119E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +1741560,fr,1,4.550000E+00,-1.777290E+00,4.243119E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1741572,fr,1,4.650000E+00,-1.777290E+00,4.243119E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1741694,fr,1,5.650000E+00,-1.777290E+00,4.243119E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1741920,fr,7,3.550000E+00,5.885010E+00,5.073870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998724E+01,0.000000E+00 +1741921,fr,3,3.550000E+00,5.885010E+00,5.073870E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998724E+01,0.000000E+00 +1741922,fr,1,3.550000E+00,5.885010E+00,5.073870E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998724E+01,0.000000E+00 +1741923,fr,2,3.550000E+00,5.885010E+00,5.073870E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799778E+01,0.000000E+00 +1741926,fr,1,3.550000E+00,5.885010E+00,5.073870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998709E+01,-9.000000E+01 +1741927,fr,1,3.550000E+00,5.885010E+00,5.073870E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998709E+01,-9.000000E+01 +1741928,fr,1,3.550000E+00,5.885010E+00,5.073870E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998709E+01,-9.000000E+01 +1741932,fr,3,3.650000E+00,5.885010E+00,5.073870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +1741933,fr,1,3.650000E+00,5.885010E+00,5.073870E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +1741937,fr,1,3.650000E+00,5.885010E+00,5.073870E+01,2.750000E+01,Active Shallow Crust,2.400021E+02,5.801307E+01,0.000000E+00 +1741938,fr,1,3.650000E+00,5.885010E+00,5.073870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998849E+01,-9.000000E+01 +1741944,fr,2,3.750000E+00,5.885010E+00,5.073870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1741945,fr,3,3.750000E+00,5.885010E+00,5.073870E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1741946,fr,2,3.750000E+00,5.885010E+00,5.073870E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1741951,fr,1,3.750000E+00,5.885010E+00,5.073870E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,-9.000000E+01 +1741954,fr,1,3.750000E+00,5.885010E+00,5.073870E+01,1.500000E+01,Active Shallow Crust,1.288955E+02,8.996756E+01,0.000000E+00 +1741956,fr,3,3.850000E+00,5.885010E+00,5.073870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +1741957,fr,2,3.850000E+00,5.885010E+00,5.073870E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +1741958,fr,2,3.850000E+00,5.885010E+00,5.073870E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +1741960,fr,2,3.850000E+00,5.885010E+00,5.073870E+01,1.500000E+01,Active Shallow Crust,2.400110E+02,5.799812E+01,0.000000E+00 +1741961,fr,1,3.850000E+00,5.885010E+00,5.073870E+01,2.750000E+01,Active Shallow Crust,2.400110E+02,5.799812E+01,0.000000E+00 +1741962,fr,1,3.850000E+00,5.885010E+00,5.073870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999086E+01,-9.000000E+01 +1741968,fr,2,3.950000E+00,5.885010E+00,5.073870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999194E+01,0.000000E+00 +1741969,fr,1,3.950000E+00,5.885010E+00,5.073870E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999194E+01,0.000000E+00 +1741970,fr,1,3.950000E+00,5.885010E+00,5.073870E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999194E+01,0.000000E+00 +1741976,fr,1,3.950000E+00,5.885010E+00,5.073870E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999185E+01,-9.000000E+01 +1741980,fr,2,4.050000E+00,5.885010E+00,5.073870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +1741982,fr,1,4.050000E+00,5.885010E+00,5.073870E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +1741983,fr,1,4.050000E+00,5.885010E+00,5.073870E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.800602E+01,0.000000E+00 +1741986,fr,1,4.050000E+00,5.885010E+00,5.073870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,-9.000000E+01 +1741987,fr,2,4.050000E+00,5.885010E+00,5.073870E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998911E+01,-9.000000E+01 +1741990,fr,1,4.050000E+00,5.885010E+00,5.073870E+01,1.500000E+01,Active Shallow Crust,1.288894E+02,8.999462E+01,0.000000E+00 +1741992,fr,1,4.150000E+00,5.885010E+00,5.073870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +1741993,fr,1,4.150000E+00,5.885010E+00,5.073870E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +1741996,fr,1,4.150000E+00,5.885010E+00,5.073870E+01,1.500000E+01,Active Shallow Crust,2.400093E+02,5.799765E+01,0.000000E+00 +1742004,fr,3,4.250000E+00,5.885010E+00,5.073870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +1742005,fr,1,4.250000E+00,5.885010E+00,5.073870E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +1742007,fr,1,4.250000E+00,5.885010E+00,5.073870E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.799383E+01,0.000000E+00 +1742010,fr,1,4.250000E+00,5.885010E+00,5.073870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999135E+01,-9.000000E+01 +1742016,fr,1,4.350000E+00,5.885010E+00,5.073870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +1742052,fr,4,4.650000E+00,5.885010E+00,5.073870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1742064,fr,2,4.750000E+00,5.885010E+00,5.073870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +1742088,fr,1,4.950000E+00,5.885010E+00,5.073870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1742097,fr,1,4.950000E+00,5.885010E+00,5.073870E+01,5.000000E+00,Active Shallow Crust,1.288882E+02,8.998974E+01,0.000000E+00 +1742149,fr,1,5.450000E+00,5.885010E+00,5.073870E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1742412,fr,1,3.650000E+00,-5.452900E-01,4.187922E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1742421,fr,1,3.650000E+00,-5.452900E-01,4.187922E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996351E+01,0.000000E+00 +1742520,fr,1,4.550000E+00,-5.452900E-01,4.187922E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1742899,fr,1,3.650000E+00,6.616650E+00,4.845712E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998794E+01,-9.000000E+01 +1742913,fr,1,3.750000E+00,6.616650E+00,4.845712E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.996752E+01,0.000000E+00 +1742917,fr,2,3.850000E+00,6.616650E+00,4.845712E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +1742928,fr,2,3.950000E+00,6.616650E+00,4.845712E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999156E+01,0.000000E+00 +1742940,fr,1,4.050000E+00,6.616650E+00,4.845712E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +1742966,fr,1,4.250000E+00,6.616650E+00,4.845712E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +1742988,fr,1,4.450000E+00,6.616650E+00,4.845712E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +1742992,fr,1,4.450000E+00,6.616650E+00,4.845712E+01,1.500000E+01,Active Shallow Crust,2.400059E+02,5.799510E+01,0.000000E+00 +1743360,fr,1,3.550000E+00,1.749440E+00,4.668005E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +1743363,fr,1,3.550000E+00,1.749440E+00,4.668005E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799842E+01,0.000000E+00 +1743367,fr,1,3.550000E+00,1.749440E+00,4.668005E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998950E+01,-9.000000E+01 +1743368,fr,1,3.550000E+00,1.749440E+00,4.668005E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998950E+01,-9.000000E+01 +1743371,fr,1,3.550000E+00,1.749440E+00,4.668005E+01,2.750000E+01,Active Shallow Crust,1.288965E+02,8.999308E+01,0.000000E+00 +1743372,fr,4,3.650000E+00,1.749440E+00,4.668005E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +1743385,fr,1,3.750000E+00,1.749440E+00,4.668005E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +1743387,fr,1,3.750000E+00,1.749440E+00,4.668005E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801751E+01,0.000000E+00 +1743396,fr,2,3.850000E+00,1.749440E+00,4.668005E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1743408,fr,1,3.950000E+00,1.749440E+00,4.668005E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1743414,fr,1,3.950000E+00,1.749440E+00,4.668005E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +1743444,fr,1,4.250000E+00,1.749440E+00,4.668005E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1743445,fr,1,4.250000E+00,1.749440E+00,4.668005E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1743456,fr,1,4.350000E+00,1.749440E+00,4.668005E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +1743470,fr,1,4.450000E+00,1.749440E+00,4.668005E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1743476,fr,1,4.450000E+00,1.749440E+00,4.668005E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +1743495,fr,1,4.650000E+00,1.749440E+00,4.668005E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799430E+01,0.000000E+00 +1743531,fr,1,4.950000E+00,1.749440E+00,4.668005E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.800442E+01,0.000000E+00 +1743565,fr,1,5.250000E+00,1.749440E+00,4.668005E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1743840,fr,2,3.550000E+00,6.694850E+00,4.795788E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999325E+01,0.000000E+00 +1743842,fr,1,3.550000E+00,6.694850E+00,4.795788E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999325E+01,0.000000E+00 +1743843,fr,1,3.550000E+00,6.694850E+00,4.795788E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799834E+01,0.000000E+00 +1743846,fr,1,3.550000E+00,6.694850E+00,4.795788E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999317E+01,-9.000000E+01 +1743847,fr,1,3.550000E+00,6.694850E+00,4.795788E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999317E+01,-9.000000E+01 +1743852,fr,1,3.650000E+00,6.694850E+00,4.795788E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998796E+01,0.000000E+00 +1743855,fr,1,3.650000E+00,6.694850E+00,4.795788E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801380E+01,0.000000E+00 +1743856,fr,1,3.650000E+00,6.694850E+00,4.795788E+01,1.500000E+01,Active Shallow Crust,2.400008E+02,5.801380E+01,0.000000E+00 +1743858,fr,1,3.650000E+00,6.694850E+00,4.795788E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998782E+01,-9.000000E+01 +1743864,fr,1,3.750000E+00,6.694850E+00,4.795788E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1743868,fr,1,3.750000E+00,6.694850E+00,4.795788E+01,1.500000E+01,Active Shallow Crust,2.400082E+02,5.801781E+01,0.000000E+00 +1743878,fr,1,3.850000E+00,6.694850E+00,4.795788E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +1743879,fr,1,3.850000E+00,6.694850E+00,4.795788E+01,5.000000E+00,Active Shallow Crust,2.400102E+02,5.799762E+01,0.000000E+00 +1743888,fr,1,3.950000E+00,6.694850E+00,4.795788E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999148E+01,0.000000E+00 +1743900,fr,2,4.050000E+00,6.694850E+00,4.795788E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998861E+01,0.000000E+00 +1743906,fr,1,4.050000E+00,6.694850E+00,4.795788E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998847E+01,-9.000000E+01 +1743912,fr,2,4.150000E+00,6.694850E+00,4.795788E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1743913,fr,1,4.150000E+00,6.694850E+00,4.795788E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1743915,fr,1,4.150000E+00,6.694850E+00,4.795788E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.799768E+01,0.000000E+00 +1743924,fr,1,4.250000E+00,6.694850E+00,4.795788E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999095E+01,0.000000E+00 +1743936,fr,2,4.350000E+00,6.694850E+00,4.795788E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +1743949,fr,1,4.450000E+00,6.694850E+00,4.795788E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +1743951,fr,1,4.450000E+00,6.694850E+00,4.795788E+01,5.000000E+00,Active Shallow Crust,2.400056E+02,5.799502E+01,0.000000E+00 +1743964,fr,1,4.550000E+00,6.694850E+00,4.795788E+01,1.500000E+01,Active Shallow Crust,2.400099E+02,5.799715E+01,0.000000E+00 +1743984,fr,2,4.750000E+00,6.694850E+00,4.795788E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1743996,fr,1,4.850000E+00,6.694850E+00,4.795788E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +1744056,fr,1,5.350000E+00,6.694850E+00,4.795788E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1744321,fr,1,3.550000E+00,-1.154880E+00,4.374130E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999089E+01,0.000000E+00 +1744332,fr,2,3.650000E+00,-1.154880E+00,4.374130E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1744341,fr,1,3.650000E+00,-1.154880E+00,4.374130E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.996347E+01,0.000000E+00 +1744381,fr,1,4.050000E+00,-1.154880E+00,4.374130E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +1744382,fr,1,4.050000E+00,-1.154880E+00,4.374130E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +1744388,fr,1,4.050000E+00,-1.154880E+00,4.374130E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998964E+01,-9.000000E+01 +1744800,fr,1,3.550000E+00,3.782690E+00,4.312878E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998896E+01,0.000000E+00 +1744803,fr,1,3.550000E+00,3.782690E+00,4.312878E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799831E+01,0.000000E+00 +1744823,fr,1,3.650000E+00,3.782690E+00,4.312878E+01,2.750000E+01,Active Shallow Crust,1.288998E+02,8.996371E+01,0.000000E+00 +1744824,fr,1,3.750000E+00,3.782690E+00,4.312878E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +1744840,fr,1,3.850000E+00,3.782690E+00,4.312878E+01,1.500000E+01,Active Shallow Crust,2.400103E+02,5.799773E+01,0.000000E+00 +1744862,fr,1,4.050000E+00,3.782690E+00,4.312878E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1744921,fr,1,4.550000E+00,3.782690E+00,4.312878E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1745280,fr,2,3.550000E+00,1.914110E+00,4.096404E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +1745286,fr,1,3.550000E+00,1.914110E+00,4.096404E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,-9.000000E+01 +1745287,fr,1,3.550000E+00,1.914110E+00,4.096404E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,-9.000000E+01 +1745292,fr,2,3.650000E+00,1.914110E+00,4.096404E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1745295,fr,1,3.650000E+00,1.914110E+00,4.096404E+01,5.000000E+00,Active Shallow Crust,2.400005E+02,5.801268E+01,0.000000E+00 +1745298,fr,1,3.650000E+00,1.914110E+00,4.096404E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,-9.000000E+01 +1745305,fr,1,3.750000E+00,1.914110E+00,4.096404E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +1745306,fr,2,3.750000E+00,1.914110E+00,4.096404E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +1745325,fr,1,3.850000E+00,1.914110E+00,4.096404E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999393E+01,0.000000E+00 +1745328,fr,1,3.950000E+00,1.914110E+00,4.096404E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1745332,fr,1,3.950000E+00,1.914110E+00,4.096404E+01,1.500000E+01,Active Shallow Crust,2.400191E+02,5.800480E+01,0.000000E+00 +1745338,fr,1,3.950000E+00,1.914110E+00,4.096404E+01,1.500000E+01,Active Shallow Crust,1.289011E+02,8.999400E+01,0.000000E+00 +1745472,fr,1,5.150000E+00,1.914110E+00,4.096404E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1745796,fr,1,3.850000E+00,1.736440E+00,4.945099E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1745798,fr,1,3.850000E+00,1.736440E+00,4.945099E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1745931,fr,1,4.950000E+00,1.736440E+00,4.945099E+01,5.000000E+00,Active Shallow Crust,2.400134E+02,5.800475E+01,0.000000E+00 +1746240,fr,3,3.550000E+00,7.929910E+00,4.642539E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999305E+01,0.000000E+00 +1746241,fr,5,3.550000E+00,7.929910E+00,4.642539E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999305E+01,0.000000E+00 +1746243,fr,2,3.550000E+00,7.929910E+00,4.642539E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799836E+01,0.000000E+00 +1746249,fr,2,3.550000E+00,7.929910E+00,4.642539E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999653E+01,0.000000E+00 +1746252,fr,3,3.650000E+00,7.929910E+00,4.642539E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998761E+01,0.000000E+00 +1746254,fr,1,3.650000E+00,7.929910E+00,4.642539E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998761E+01,0.000000E+00 +1746261,fr,1,3.650000E+00,7.929910E+00,4.642539E+01,5.000000E+00,Active Shallow Crust,1.289011E+02,8.996352E+01,0.000000E+00 +1746264,fr,2,3.750000E+00,7.929910E+00,4.642539E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998896E+01,0.000000E+00 +1746267,fr,1,3.750000E+00,7.929910E+00,4.642539E+01,5.000000E+00,Active Shallow Crust,2.400075E+02,5.801767E+01,0.000000E+00 +1746270,fr,2,3.750000E+00,7.929910E+00,4.642539E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998883E+01,-9.000000E+01 +1746276,fr,1,3.850000E+00,7.929910E+00,4.642539E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1746277,fr,4,3.850000E+00,7.929910E+00,4.642539E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1746279,fr,1,3.850000E+00,7.929910E+00,4.642539E+01,5.000000E+00,Active Shallow Crust,2.400098E+02,5.799783E+01,0.000000E+00 +1746288,fr,2,3.950000E+00,7.929910E+00,4.642539E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +1746289,fr,2,3.950000E+00,7.929910E+00,4.642539E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +1746297,fr,1,3.950000E+00,7.929910E+00,4.642539E+01,5.000000E+00,Active Shallow Crust,1.288996E+02,8.999342E+01,0.000000E+00 +1746303,fr,1,4.050000E+00,7.929910E+00,4.642539E+01,5.000000E+00,Active Shallow Crust,2.400053E+02,5.800621E+01,0.000000E+00 +1746312,fr,1,4.150000E+00,7.929910E+00,4.642539E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +1746314,fr,2,4.150000E+00,7.929910E+00,4.642539E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +1746322,fr,1,4.150000E+00,7.929910E+00,4.642539E+01,1.500000E+01,Active Shallow Crust,1.288984E+02,8.999303E+01,0.000000E+00 +1746325,fr,1,4.250000E+00,7.929910E+00,4.642539E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +1746345,fr,1,4.350000E+00,7.929910E+00,4.642539E+01,5.000000E+00,Active Shallow Crust,1.288974E+02,8.998302E+01,0.000000E+00 +1746348,fr,1,4.450000E+00,7.929910E+00,4.642539E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1746378,fr,1,4.650000E+00,7.929910E+00,4.642539E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +1747200,fr,1,3.550000E+00,9.601600E-01,5.201578E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1747222,fr,1,3.650000E+00,9.601600E-01,5.201578E+01,1.500000E+01,Active Shallow Crust,1.289000E+02,8.996346E+01,0.000000E+00 +1747224,fr,1,3.750000E+00,9.601600E-01,5.201578E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1747236,fr,1,3.850000E+00,9.601600E-01,5.201578E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1748245,fr,1,4.250000E+00,4.657660E+00,4.920880E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +1748640,fr,1,3.550000E+00,8.286100E-01,5.110684E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +1748649,fr,1,3.550000E+00,8.286100E-01,5.110684E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999367E+01,0.000000E+00 +1748650,fr,1,3.550000E+00,8.286100E-01,5.110684E+01,1.500000E+01,Active Shallow Crust,1.288960E+02,8.999367E+01,0.000000E+00 +1748676,fr,1,3.850000E+00,8.286100E-01,5.110684E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1748684,fr,1,3.850000E+00,8.286100E-01,5.110684E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,-9.000000E+01 +1748690,fr,1,3.950000E+00,8.286100E-01,5.110684E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1748724,fr,1,4.250000E+00,8.286100E-01,5.110684E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1748760,fr,1,4.550000E+00,8.286100E-01,5.110684E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1749120,fr,1,3.550000E+00,2.168070E+00,4.394021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +1749126,fr,1,3.550000E+00,2.168070E+00,4.394021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,-9.000000E+01 +1749144,fr,1,3.750000E+00,2.168070E+00,4.394021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999135E+01,0.000000E+00 +1749170,fr,1,3.950000E+00,2.168070E+00,4.394021E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +1749180,fr,1,4.050000E+00,2.168070E+00,4.394021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1749185,fr,1,4.050000E+00,2.168070E+00,4.394021E+01,2.750000E+01,Active Shallow Crust,2.400057E+02,5.800585E+01,0.000000E+00 +1749372,fr,1,5.650000E+00,2.168070E+00,4.394021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1749600,fr,5,3.550000E+00,7.215150E+00,4.437425E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999279E+01,0.000000E+00 +1749601,fr,2,3.550000E+00,7.215150E+00,4.437425E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999279E+01,0.000000E+00 +1749606,fr,1,3.550000E+00,7.215150E+00,4.437425E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999271E+01,-9.000000E+01 +1749612,fr,3,3.650000E+00,7.215150E+00,4.437425E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998715E+01,0.000000E+00 +1749615,fr,1,3.650000E+00,7.215150E+00,4.437425E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801196E+01,0.000000E+00 +1749618,fr,2,3.650000E+00,7.215150E+00,4.437425E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998700E+01,-9.000000E+01 +1749624,fr,3,3.750000E+00,7.215150E+00,4.437425E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998855E+01,0.000000E+00 +1749626,fr,1,3.750000E+00,7.215150E+00,4.437425E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998855E+01,0.000000E+00 +1749629,fr,1,3.750000E+00,7.215150E+00,4.437425E+01,2.750000E+01,Active Shallow Crust,2.400085E+02,5.801754E+01,0.000000E+00 +1749636,fr,3,3.850000E+00,7.215150E+00,4.437425E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1749637,fr,2,3.850000E+00,7.215150E+00,4.437425E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1749638,fr,1,3.850000E+00,7.215150E+00,4.437425E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1749639,fr,1,3.850000E+00,7.215150E+00,4.437425E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799780E+01,0.000000E+00 +1749643,fr,1,3.850000E+00,7.215150E+00,4.437425E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998968E+01,-9.000000E+01 +1749644,fr,2,3.850000E+00,7.215150E+00,4.437425E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998968E+01,-9.000000E+01 +1749645,fr,1,3.850000E+00,7.215150E+00,4.437425E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.999490E+01,0.000000E+00 +1749649,fr,1,3.950000E+00,7.215150E+00,4.437425E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +1749650,fr,1,3.950000E+00,7.215150E+00,4.437425E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +1749658,fr,1,3.950000E+00,7.215150E+00,4.437425E+01,1.500000E+01,Active Shallow Crust,1.289010E+02,8.999318E+01,0.000000E+00 +1749659,fr,1,3.950000E+00,7.215150E+00,4.437425E+01,2.750000E+01,Active Shallow Crust,1.289010E+02,8.999318E+01,0.000000E+00 +1749660,fr,4,4.050000E+00,7.215150E+00,4.437425E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999189E+01,0.000000E+00 +1749661,fr,1,4.050000E+00,7.215150E+00,4.437425E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999189E+01,0.000000E+00 +1749666,fr,1,4.050000E+00,7.215150E+00,4.437425E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999180E+01,-9.000000E+01 +1749669,fr,2,4.050000E+00,7.215150E+00,4.437425E+01,5.000000E+00,Active Shallow Crust,1.288896E+02,8.999392E+01,0.000000E+00 +1749672,fr,2,4.150000E+00,7.215150E+00,4.437425E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +1749673,fr,1,4.150000E+00,7.215150E+00,4.437425E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +1749684,fr,2,4.250000E+00,7.215150E+00,4.437425E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +1749685,fr,1,4.250000E+00,7.215150E+00,4.437425E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +1749687,fr,2,4.250000E+00,7.215150E+00,4.437425E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.799387E+01,0.000000E+00 +1749696,fr,1,4.350000E+00,7.215150E+00,4.437425E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999139E+01,0.000000E+00 +1749702,fr,1,4.350000E+00,7.215150E+00,4.437425E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999129E+01,-9.000000E+01 +1749717,fr,1,4.450000E+00,7.215150E+00,4.437425E+01,5.000000E+00,Active Shallow Crust,1.288931E+02,8.999361E+01,0.000000E+00 +1749729,fr,1,4.550000E+00,7.215150E+00,4.437425E+01,5.000000E+00,Active Shallow Crust,1.288941E+02,8.998603E+01,0.000000E+00 +1749732,fr,1,4.650000E+00,7.215150E+00,4.437425E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1749737,fr,1,4.650000E+00,7.215150E+00,4.437425E+01,2.750000E+01,Active Shallow Crust,2.400105E+02,5.799383E+01,0.000000E+00 +1749744,fr,2,4.750000E+00,7.215150E+00,4.437425E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +1749746,fr,1,4.750000E+00,7.215150E+00,4.437425E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +1749756,fr,2,4.850000E+00,7.215150E+00,4.437425E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +1749768,fr,1,4.950000E+00,7.215150E+00,4.437425E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1749769,fr,1,4.950000E+00,7.215150E+00,4.437425E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1749781,fr,1,5.050000E+00,7.215150E+00,4.437425E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1749793,fr,1,5.150000E+00,7.215150E+00,4.437425E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1749794,fr,1,5.150000E+00,7.215150E+00,4.437425E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1749799,fr,1,5.150000E+00,7.215150E+00,4.437425E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +1749861,fr,1,5.650000E+00,7.215150E+00,4.437425E+01,5.000000E+00,Active Shallow Crust,1.288770E+02,8.999057E+01,0.000000E+00 +1749900,fr,2,6.050000E+00,7.215150E+00,4.437425E+01,5.357596E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1750101,fr,2,3.650000E+00,3.759670E+00,4.970315E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.996358E+01,0.000000E+00 +1750140,fr,1,4.050000E+00,3.759670E+00,4.970315E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +1750212,fr,1,4.650000E+00,3.759670E+00,4.970315E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1750261,fr,1,5.050000E+00,3.759670E+00,4.970315E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1750449,fr,1,6.550000E+00,3.759663E+00,4.970314E+01,9.527304E+00,Active Shallow Crust,1.288212E+02,8.999013E+01,0.000000E+00 +1750620,fr,1,4.050000E+00,3.161740E+00,4.873777E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +1750683,fr,1,4.550000E+00,3.161740E+00,4.873777E+01,5.000000E+00,Active Shallow Crust,2.400098E+02,5.799749E+01,0.000000E+00 +1750764,fr,1,5.250000E+00,3.161740E+00,4.873777E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1751049,fr,1,3.550000E+00,-5.600310E+00,4.876775E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.999335E+01,0.000000E+00 +1751112,fr,1,4.150000E+00,-5.600310E+00,4.876775E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1751172,fr,1,4.650000E+00,-5.600310E+00,4.876775E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +1751520,fr,1,3.550000E+00,-5.654000E-02,4.962532E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1751535,fr,1,3.650000E+00,-5.654000E-02,4.962532E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801297E+01,0.000000E+00 +1751545,fr,1,3.750000E+00,-5.654000E-02,4.962532E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1751550,fr,1,3.750000E+00,-5.654000E-02,4.962532E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +1751552,fr,1,3.750000E+00,-5.654000E-02,4.962532E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +1751556,fr,1,3.850000E+00,-5.654000E-02,4.962532E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1751568,fr,1,3.950000E+00,-5.654000E-02,4.962532E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1751602,fr,1,4.150000E+00,-5.654000E-02,4.962532E+01,1.500000E+01,Active Shallow Crust,1.288970E+02,8.999371E+01,0.000000E+00 +1751616,fr,1,4.350000E+00,-5.654000E-02,4.962532E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1751617,fr,1,4.350000E+00,-5.654000E-02,4.962532E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1751628,fr,1,4.450000E+00,-5.654000E-02,4.962532E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1751652,fr,1,4.650000E+00,-5.654000E-02,4.962532E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1751727,fr,1,5.250000E+00,-5.654000E-02,4.962532E+01,5.000000E+00,Active Shallow Crust,2.400277E+02,5.800067E+01,0.000000E+00 +1752000,fr,1,3.550000E+00,4.110790E+00,4.671653E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999309E+01,0.000000E+00 +1752004,fr,1,3.550000E+00,4.110790E+00,4.671653E+01,1.500000E+01,Active Shallow Crust,2.400111E+02,5.799910E+01,0.000000E+00 +1752012,fr,1,3.650000E+00,4.110790E+00,4.671653E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998768E+01,0.000000E+00 +1752024,fr,1,3.750000E+00,4.110790E+00,4.671653E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +1752085,fr,1,4.250000E+00,4.110790E+00,4.671653E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +1752090,fr,1,4.250000E+00,4.110790E+00,4.671653E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,-9.000000E+01 +1752097,fr,1,4.350000E+00,4.110790E+00,4.671653E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998899E+01,0.000000E+00 +1752108,fr,1,4.450000E+00,4.110790E+00,4.671653E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1752144,fr,1,4.750000E+00,4.110790E+00,4.671653E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +1752480,fr,2,3.550000E+00,2.039680E+00,4.299279E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998894E+01,0.000000E+00 +1752492,fr,1,3.650000E+00,2.039680E+00,4.299279E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1752504,fr,2,3.750000E+00,2.039680E+00,4.299279E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999121E+01,0.000000E+00 +1752505,fr,1,3.750000E+00,2.039680E+00,4.299279E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999121E+01,0.000000E+00 +1752516,fr,1,3.850000E+00,2.039680E+00,4.299279E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1752530,fr,1,3.950000E+00,2.039680E+00,4.299279E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999069E+01,0.000000E+00 +1752537,fr,1,3.950000E+00,2.039680E+00,4.299279E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.999419E+01,0.000000E+00 +1752540,fr,2,4.050000E+00,2.039680E+00,4.299279E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +1752576,fr,1,4.350000E+00,2.039680E+00,4.299279E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1752601,fr,2,4.550000E+00,2.039680E+00,4.299279E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +1752612,fr,1,4.650000E+00,2.039680E+00,4.299279E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +1752960,fr,1,3.550000E+00,6.729080E+00,5.133360E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998740E+01,0.000000E+00 +1752962,fr,1,3.550000E+00,6.729080E+00,5.133360E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998740E+01,0.000000E+00 +1752985,fr,1,3.750000E+00,6.729080E+00,5.133360E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1753466,fr,1,3.750000E+00,-6.292570E+00,4.772598E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +1753920,fr,1,3.550000E+00,-5.562670E+00,4.794901E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999325E+01,0.000000E+00 +1753921,fr,1,3.550000E+00,-5.562670E+00,4.794901E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999325E+01,0.000000E+00 +1753981,fr,1,4.050000E+00,-5.562670E+00,4.794901E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998860E+01,0.000000E+00 +1753993,fr,1,4.150000E+00,-5.562670E+00,4.794901E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1753994,fr,1,4.150000E+00,-5.562670E+00,4.794901E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1754016,fr,1,4.350000E+00,-5.562670E+00,4.794901E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +1754106,fr,1,5.050000E+00,-5.562670E+00,4.794901E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,-9.000000E+01 +1754400,fr,1,3.550000E+00,7.086500E-01,4.513451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1754402,fr,1,3.550000E+00,7.086500E-01,4.513451E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1754403,fr,1,3.550000E+00,7.086500E-01,4.513451E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799801E+01,0.000000E+00 +1754520,fr,1,4.550000E+00,7.086500E-01,4.513451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1754533,fr,1,4.650000E+00,7.086500E-01,4.513451E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1754880,fr,1,3.550000E+00,2.292180E+00,5.269061E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +1754882,fr,1,3.550000E+00,2.292180E+00,5.269061E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +1754935,fr,1,3.950000E+00,2.292180E+00,5.269061E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,-9.000000E+01 +1754944,fr,1,4.050000E+00,2.292180E+00,5.269061E+01,1.500000E+01,Active Shallow Crust,2.400069E+02,5.800617E+01,0.000000E+00 +1755366,fr,1,3.550000E+00,-3.353860E+00,4.735938E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,-9.000000E+01 +1755372,fr,1,3.650000E+00,-3.353860E+00,4.735938E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999087E+01,0.000000E+00 +1755384,fr,2,3.750000E+00,-3.353860E+00,4.735938E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998915E+01,0.000000E+00 +1755395,fr,1,3.750000E+00,-3.353860E+00,4.735938E+01,2.750000E+01,Active Shallow Crust,1.288970E+02,8.996725E+01,0.000000E+00 +1755420,fr,2,4.050000E+00,-3.353860E+00,4.735938E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1755444,fr,1,4.250000E+00,-3.353860E+00,4.735938E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +1755468,fr,1,4.450000E+00,-3.353860E+00,4.735938E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1755516,fr,1,4.850000E+00,-3.353860E+00,4.735938E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1755852,fr,1,3.650000E+00,2.847000E-01,4.469436E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1755864,fr,1,3.750000E+00,2.847000E-01,4.469436E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1755865,fr,1,3.750000E+00,2.847000E-01,4.469436E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1755876,fr,1,3.850000E+00,2.847000E-01,4.469436E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1755891,fr,1,3.950000E+00,2.847000E-01,4.469436E+01,5.000000E+00,Active Shallow Crust,2.400195E+02,5.800491E+01,0.000000E+00 +1755912,fr,1,4.150000E+00,2.847000E-01,4.469436E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1755924,fr,1,4.250000E+00,2.847000E-01,4.469436E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1755936,fr,1,4.350000E+00,2.847000E-01,4.469436E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1756329,fr,1,3.550000E+00,-4.017100E-01,5.013285E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999374E+01,0.000000E+00 +1756332,fr,1,3.650000E+00,-4.017100E-01,5.013285E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1756338,fr,1,3.650000E+00,-4.017100E-01,5.013285E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,-9.000000E+01 +1756341,fr,1,3.650000E+00,-4.017100E-01,5.013285E+01,5.000000E+00,Active Shallow Crust,1.289000E+02,8.996353E+01,0.000000E+00 +1756344,fr,1,3.750000E+00,-4.017100E-01,5.013285E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1756346,fr,2,3.750000E+00,-4.017100E-01,5.013285E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1756356,fr,1,3.850000E+00,-4.017100E-01,5.013285E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1756598,fr,1,5.850000E+00,-4.017100E-01,5.013285E+01,2.750000E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +1756800,fr,5,3.550000E+00,6.810280E+00,4.720287E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999315E+01,0.000000E+00 +1756801,fr,1,3.550000E+00,6.810280E+00,4.720287E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999315E+01,0.000000E+00 +1756803,fr,1,3.550000E+00,6.810280E+00,4.720287E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.799780E+01,0.000000E+00 +1756806,fr,1,3.550000E+00,6.810280E+00,4.720287E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999307E+01,-9.000000E+01 +1756809,fr,1,3.550000E+00,6.810280E+00,4.720287E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.999315E+01,0.000000E+00 +1756810,fr,1,3.550000E+00,6.810280E+00,4.720287E+01,1.500000E+01,Active Shallow Crust,1.288954E+02,8.999315E+01,0.000000E+00 +1756812,fr,3,3.650000E+00,6.810280E+00,4.720287E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998779E+01,0.000000E+00 +1756814,fr,1,3.650000E+00,6.810280E+00,4.720287E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998779E+01,0.000000E+00 +1756815,fr,1,3.650000E+00,6.810280E+00,4.720287E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801350E+01,0.000000E+00 +1756818,fr,1,3.650000E+00,6.810280E+00,4.720287E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998765E+01,-9.000000E+01 +1756821,fr,1,3.650000E+00,6.810280E+00,4.720287E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.996354E+01,0.000000E+00 +1756824,fr,2,3.750000E+00,6.810280E+00,4.720287E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +1756827,fr,2,3.750000E+00,6.810280E+00,4.720287E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801777E+01,0.000000E+00 +1756833,fr,1,3.750000E+00,6.810280E+00,4.720287E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996694E+01,0.000000E+00 +1756836,fr,2,3.850000E+00,6.810280E+00,4.720287E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1756839,fr,1,3.850000E+00,6.810280E+00,4.720287E+01,5.000000E+00,Active Shallow Crust,2.400103E+02,5.799768E+01,0.000000E+00 +1756848,fr,4,3.950000E+00,6.810280E+00,4.720287E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999136E+01,0.000000E+00 +1756854,fr,1,3.950000E+00,6.810280E+00,4.720287E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999126E+01,-9.000000E+01 +1756860,fr,3,4.050000E+00,6.810280E+00,4.720287E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998844E+01,0.000000E+00 +1756861,fr,1,4.050000E+00,6.810280E+00,4.720287E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998844E+01,0.000000E+00 +1756872,fr,1,4.150000E+00,6.810280E+00,4.720287E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1756878,fr,1,4.150000E+00,6.810280E+00,4.720287E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,-9.000000E+01 +1756884,fr,4,4.250000E+00,6.810280E+00,4.720287E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999082E+01,0.000000E+00 +1756895,fr,1,4.250000E+00,6.810280E+00,4.720287E+01,2.750000E+01,Active Shallow Crust,1.288950E+02,8.998043E+01,0.000000E+00 +1756897,fr,1,4.350000E+00,6.810280E+00,4.720287E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +1756917,fr,1,4.450000E+00,6.810280E+00,4.720287E+01,5.000000E+00,Active Shallow Crust,1.288925E+02,8.999271E+01,0.000000E+00 +1756926,fr,1,4.550000E+00,6.810280E+00,4.720287E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,-9.000000E+01 +1756944,fr,3,4.750000E+00,6.810280E+00,4.720287E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +1756955,fr,1,4.750000E+00,6.810280E+00,4.720287E+01,2.750000E+01,Active Shallow Crust,1.288885E+02,8.998821E+01,0.000000E+00 +1756957,fr,1,4.850000E+00,6.810280E+00,4.720287E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1756969,fr,1,4.950000E+00,6.810280E+00,4.720287E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1757016,fr,1,5.350000E+00,6.810280E+00,4.720287E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1757292,fr,1,3.650000E+00,-4.090370E+00,4.796883E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998797E+01,0.000000E+00 +1757297,fr,2,3.650000E+00,-4.090370E+00,4.796883E+01,2.750000E+01,Active Shallow Crust,2.400015E+02,5.801252E+01,0.000000E+00 +1757306,fr,1,3.750000E+00,-4.090370E+00,4.796883E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1757314,fr,1,3.750000E+00,-4.090370E+00,4.796883E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.996751E+01,0.000000E+00 +1757316,fr,1,3.850000E+00,-4.090370E+00,4.796883E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +1757317,fr,1,3.850000E+00,-4.090370E+00,4.796883E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +1757340,fr,1,4.050000E+00,-4.090370E+00,4.796883E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998861E+01,0.000000E+00 +1757388,fr,1,4.450000E+00,-4.090370E+00,4.796883E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +1757392,fr,1,4.450000E+00,-4.090370E+00,4.796883E+01,1.500000E+01,Active Shallow Crust,2.400057E+02,5.799488E+01,0.000000E+00 +1758264,fr,1,3.750000E+00,-6.891750E+00,4.779094E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +1758721,fr,2,3.550000E+00,3.479500E+00,5.054319E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1758750,fr,1,3.750000E+00,3.479500E+00,5.054319E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,-9.000000E+01 +1758768,fr,1,3.950000E+00,3.479500E+00,5.054319E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1758792,fr,1,4.150000E+00,3.479500E+00,5.054319E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1758852,fr,1,4.650000E+00,3.479500E+00,5.054319E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1758864,fr,1,4.750000E+00,3.479500E+00,5.054319E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +1758894,fr,1,4.950000E+00,3.479500E+00,5.054319E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,-9.000000E+01 +1759685,fr,1,3.550000E+00,6.817830E+00,4.936416E+01,2.750000E+01,Active Shallow Crust,2.400125E+02,5.799856E+01,0.000000E+00 +1759717,fr,1,3.850000E+00,6.817830E+00,4.936416E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +1759728,fr,1,3.950000E+00,6.817830E+00,4.936416E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999171E+01,0.000000E+00 +1759789,fr,1,4.450000E+00,6.817830E+00,4.936416E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +1760172,fr,1,3.650000E+00,3.744600E+00,4.806869E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999099E+01,0.000000E+00 +1760178,fr,2,3.650000E+00,3.744600E+00,4.806869E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999089E+01,-9.000000E+01 +1760640,fr,1,3.550000E+00,1.885120E+00,5.140241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +1760652,fr,1,3.650000E+00,1.885120E+00,5.140241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1760689,fr,1,3.950000E+00,1.885120E+00,5.140241E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1760821,fr,1,5.050000E+00,1.885120E+00,5.140241E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1761120,fr,3,3.550000E+00,2.614090E+00,4.268518E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +1761124,fr,1,3.550000E+00,2.614090E+00,4.268518E+01,1.500000E+01,Active Shallow Crust,2.400120E+02,5.799818E+01,0.000000E+00 +1761127,fr,1,3.550000E+00,2.614090E+00,4.268518E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998875E+01,-9.000000E+01 +1761129,fr,1,3.550000E+00,2.614090E+00,4.268518E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999258E+01,0.000000E+00 +1761132,fr,4,3.650000E+00,2.614090E+00,4.268518E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1761133,fr,1,3.650000E+00,2.614090E+00,4.268518E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1761138,fr,1,3.650000E+00,2.614090E+00,4.268518E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1761139,fr,1,3.650000E+00,2.614090E+00,4.268518E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1761144,fr,2,3.750000E+00,2.614090E+00,4.268518E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +1761145,fr,1,3.750000E+00,2.614090E+00,4.268518E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +1761146,fr,1,3.750000E+00,2.614090E+00,4.268518E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +1761153,fr,1,3.750000E+00,2.614090E+00,4.268518E+01,5.000000E+00,Active Shallow Crust,1.288974E+02,8.996742E+01,0.000000E+00 +1761154,fr,1,3.750000E+00,2.614090E+00,4.268518E+01,1.500000E+01,Active Shallow Crust,1.288974E+02,8.996742E+01,0.000000E+00 +1761163,fr,1,3.850000E+00,2.614090E+00,4.268518E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998938E+01,-9.000000E+01 +1761165,fr,1,3.850000E+00,2.614090E+00,4.268518E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999344E+01,0.000000E+00 +1761168,fr,1,3.950000E+00,2.614090E+00,4.268518E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +1761169,fr,1,3.950000E+00,2.614090E+00,4.268518E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +1761170,fr,1,3.950000E+00,2.614090E+00,4.268518E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +1761180,fr,1,4.050000E+00,2.614090E+00,4.268518E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +1761183,fr,1,4.050000E+00,2.614090E+00,4.268518E+01,5.000000E+00,Active Shallow Crust,2.400053E+02,5.800588E+01,0.000000E+00 +1761193,fr,1,4.150000E+00,2.614090E+00,4.268518E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +1761205,fr,1,4.250000E+00,2.614090E+00,4.268518E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1761225,fr,1,4.350000E+00,2.614090E+00,4.268518E+01,5.000000E+00,Active Shallow Crust,1.288983E+02,8.998289E+01,0.000000E+00 +1761252,fr,1,4.650000E+00,2.614090E+00,4.268518E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1761408,fr,1,5.950000E+00,2.614090E+00,4.268518E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1761601,fr,2,3.550000E+00,-7.406600E-01,4.650605E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1761603,fr,1,3.550000E+00,-7.406600E-01,4.650605E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799814E+01,0.000000E+00 +1761612,fr,3,3.650000E+00,-7.406600E-01,4.650605E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1761613,fr,1,3.650000E+00,-7.406600E-01,4.650605E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1761618,fr,1,3.650000E+00,-7.406600E-01,4.650605E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,-9.000000E+01 +1761624,fr,2,3.750000E+00,-7.406600E-01,4.650605E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +1761625,fr,1,3.750000E+00,-7.406600E-01,4.650605E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +1761627,fr,1,3.750000E+00,-7.406600E-01,4.650605E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801756E+01,0.000000E+00 +1761636,fr,2,3.850000E+00,-7.406600E-01,4.650605E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1761638,fr,1,3.850000E+00,-7.406600E-01,4.650605E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1761639,fr,1,3.850000E+00,-7.406600E-01,4.650605E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799785E+01,0.000000E+00 +1761642,fr,1,3.850000E+00,-7.406600E-01,4.650605E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +1761648,fr,1,3.950000E+00,-7.406600E-01,4.650605E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1761652,fr,1,3.950000E+00,-7.406600E-01,4.650605E+01,1.500000E+01,Active Shallow Crust,2.400199E+02,5.800494E+01,0.000000E+00 +1761657,fr,1,3.950000E+00,-7.406600E-01,4.650605E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.999371E+01,0.000000E+00 +1761660,fr,4,4.050000E+00,-7.406600E-01,4.650605E+01,5.000000E+00,Active Shallow Crust,3.599998E+02,8.999024E+01,0.000000E+00 +1761674,fr,1,4.150000E+00,-7.406600E-01,4.650605E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1761675,fr,1,4.150000E+00,-7.406600E-01,4.650605E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.799726E+01,0.000000E+00 +1761720,fr,1,4.550000E+00,-7.406600E-01,4.650605E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1761726,fr,1,4.550000E+00,-7.406600E-01,4.650605E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1761757,fr,1,4.850000E+00,-7.406600E-01,4.650605E+01,1.500000E+01,Active Shallow Crust,3.599999E+02,8.999009E+01,0.000000E+00 +1762093,fr,1,3.650000E+00,1.440670E+00,4.719409E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +1762099,fr,1,3.650000E+00,1.440670E+00,4.719409E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999073E+01,-9.000000E+01 +1762105,fr,1,3.750000E+00,1.440670E+00,4.719409E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +1762126,fr,1,3.850000E+00,1.440670E+00,4.719409E+01,1.500000E+01,Active Shallow Crust,1.288957E+02,8.999333E+01,0.000000E+00 +1762152,fr,1,4.150000E+00,1.440670E+00,4.719409E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1762158,fr,1,4.150000E+00,1.440670E+00,4.719409E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,-9.000000E+01 +1762159,fr,1,4.150000E+00,1.440670E+00,4.719409E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998958E+01,-9.000000E+01 +1762392,fr,1,6.150000E+00,1.440672E+00,4.719409E+01,6.011322E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1762578,fr,1,3.650000E+00,6.469740E+00,5.007064E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998833E+01,-9.000000E+01 +1762584,fr,2,3.750000E+00,6.469740E+00,5.007064E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1762611,fr,1,3.950000E+00,6.469740E+00,5.007064E+01,5.000000E+00,Active Shallow Crust,2.400207E+02,5.800472E+01,0.000000E+00 +1762620,fr,1,4.050000E+00,6.469740E+00,5.007064E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998908E+01,0.000000E+00 +1762621,fr,1,4.050000E+00,6.469740E+00,5.007064E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998908E+01,0.000000E+00 +1762836,fr,1,5.850000E+00,6.469740E+00,5.007064E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1763048,fr,1,3.550000E+00,6.152040E+00,4.424698E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999269E+01,-9.000000E+01 +1763052,fr,4,3.650000E+00,6.152040E+00,4.424698E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998712E+01,0.000000E+00 +1763055,fr,1,3.650000E+00,6.152040E+00,4.424698E+01,5.000000E+00,Active Shallow Crust,2.400005E+02,5.801300E+01,0.000000E+00 +1763067,fr,2,3.750000E+00,6.152040E+00,4.424698E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801817E+01,0.000000E+00 +1763070,fr,1,3.750000E+00,6.152040E+00,4.424698E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998839E+01,-9.000000E+01 +1763076,fr,1,3.850000E+00,6.152040E+00,4.424698E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1763078,fr,1,3.850000E+00,6.152040E+00,4.424698E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1763088,fr,2,3.950000E+00,6.152040E+00,4.424698E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1763091,fr,1,3.950000E+00,6.152040E+00,4.424698E+01,5.000000E+00,Active Shallow Crust,2.400201E+02,5.800447E+01,0.000000E+00 +1763097,fr,1,3.950000E+00,6.152040E+00,4.424698E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.999316E+01,0.000000E+00 +1763112,fr,1,4.150000E+00,6.152040E+00,4.424698E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +1763115,fr,1,4.150000E+00,6.152040E+00,4.424698E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799741E+01,0.000000E+00 +1763118,fr,1,4.150000E+00,6.152040E+00,4.424698E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998901E+01,-9.000000E+01 +1763124,fr,2,4.250000E+00,6.152040E+00,4.424698E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +1763133,fr,1,4.250000E+00,6.152040E+00,4.424698E+01,5.000000E+00,Active Shallow Crust,1.288949E+02,8.998087E+01,0.000000E+00 +1763173,fr,1,4.650000E+00,6.152040E+00,4.424698E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1763184,fr,1,4.750000E+00,6.152040E+00,4.424698E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +1763196,fr,1,4.850000E+00,6.152040E+00,4.424698E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1763577,fr,1,3.950000E+00,-2.069480E+00,4.666294E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.999454E+01,0.000000E+00 +1763592,fr,1,4.150000E+00,-2.069480E+00,4.666294E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1763607,fr,1,4.250000E+00,-2.069480E+00,4.666294E+01,5.000000E+00,Active Shallow Crust,2.400075E+02,5.799428E+01,0.000000E+00 +1763710,fr,1,5.050000E+00,-2.069480E+00,4.666294E+01,1.500000E+01,Active Shallow Crust,1.288853E+02,8.999055E+01,0.000000E+00 +1764009,fr,1,3.550000E+00,2.584020E+00,4.505704E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.999466E+01,0.000000E+00 +1764012,fr,1,3.650000E+00,2.584020E+00,4.505704E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +1764014,fr,1,3.650000E+00,2.584020E+00,4.505704E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +1764015,fr,1,3.650000E+00,2.584020E+00,4.505704E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801279E+01,0.000000E+00 +1764024,fr,1,3.750000E+00,2.584020E+00,4.505704E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +1764025,fr,1,3.750000E+00,2.584020E+00,4.505704E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +1764037,fr,1,3.850000E+00,2.584020E+00,4.505704E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1764049,fr,1,3.950000E+00,2.584020E+00,4.505704E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999101E+01,0.000000E+00 +1764168,fr,1,4.950000E+00,2.584020E+00,4.505704E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1764180,fr,2,5.050000E+00,2.584020E+00,4.505704E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1764255,fr,1,5.650000E+00,2.584020E+00,4.505704E+01,5.000000E+00,Active Shallow Crust,2.400327E+02,5.800164E+01,0.000000E+00 +1764481,fr,1,3.550000E+00,-8.992100E-01,5.076185E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +1764508,fr,1,3.750000E+00,-8.992100E-01,5.076185E+01,1.500000E+01,Active Shallow Crust,2.400090E+02,5.801757E+01,0.000000E+00 +1764973,fr,3,3.650000E+00,1.073410E+00,4.326889E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1764984,fr,1,3.750000E+00,1.073410E+00,4.326889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1764993,fr,1,3.750000E+00,1.073410E+00,4.326889E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996730E+01,0.000000E+00 +1765017,fr,1,3.950000E+00,1.073410E+00,4.326889E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.999363E+01,0.000000E+00 +1765059,fr,1,4.350000E+00,1.073410E+00,4.326889E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.799580E+01,0.000000E+00 +1765446,fr,1,3.550000E+00,1.539120E+00,4.344358E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,-9.000000E+01 +1765452,fr,1,3.650000E+00,1.539120E+00,4.344358E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1765453,fr,1,3.650000E+00,1.539120E+00,4.344358E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1765572,fr,1,4.650000E+00,1.539120E+00,4.344358E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1765956,fr,1,3.850000E+00,-8.605700E-01,4.472897E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1765968,fr,1,3.950000E+00,-8.605700E-01,4.472897E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1765972,fr,1,3.950000E+00,-8.605700E-01,4.472897E+01,1.500000E+01,Active Shallow Crust,2.400195E+02,5.800498E+01,0.000000E+00 +1766040,fr,1,4.550000E+00,-8.605700E-01,4.472897E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1766076,fr,1,4.850000E+00,-8.605700E-01,4.472897E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1766442,fr,1,3.850000E+00,-7.520300E-01,4.144222E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +1766641,fr,1,5.550000E+00,-7.520300E-01,4.144222E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1766880,fr,11,3.550000E+00,7.837010E+00,4.628504E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999303E+01,0.000000E+00 +1766881,fr,6,3.550000E+00,7.837010E+00,4.628504E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999303E+01,0.000000E+00 +1766882,fr,1,3.550000E+00,7.837010E+00,4.628504E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999303E+01,0.000000E+00 +1766883,fr,4,3.550000E+00,7.837010E+00,4.628504E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799805E+01,0.000000E+00 +1766886,fr,1,3.550000E+00,7.837010E+00,4.628504E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999295E+01,-9.000000E+01 +1766887,fr,2,3.550000E+00,7.837010E+00,4.628504E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999295E+01,-9.000000E+01 +1766889,fr,1,3.550000E+00,7.837010E+00,4.628504E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999303E+01,0.000000E+00 +1766892,fr,7,3.650000E+00,7.837010E+00,4.628504E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998758E+01,0.000000E+00 +1766893,fr,1,3.650000E+00,7.837010E+00,4.628504E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998758E+01,0.000000E+00 +1766894,fr,1,3.650000E+00,7.837010E+00,4.628504E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998758E+01,0.000000E+00 +1766895,fr,1,3.650000E+00,7.837010E+00,4.628504E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801226E+01,0.000000E+00 +1766898,fr,2,3.650000E+00,7.837010E+00,4.628504E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998743E+01,-9.000000E+01 +1766901,fr,1,3.650000E+00,7.837010E+00,4.628504E+01,5.000000E+00,Active Shallow Crust,1.289013E+02,8.996352E+01,0.000000E+00 +1766904,fr,1,3.750000E+00,7.837010E+00,4.628504E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998893E+01,0.000000E+00 +1766905,fr,5,3.750000E+00,7.837010E+00,4.628504E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998893E+01,0.000000E+00 +1766907,fr,1,3.750000E+00,7.837010E+00,4.628504E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.801754E+01,0.000000E+00 +1766913,fr,3,3.750000E+00,7.837010E+00,4.628504E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.996748E+01,0.000000E+00 +1766916,fr,3,3.850000E+00,7.837010E+00,4.628504E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1766920,fr,1,3.850000E+00,7.837010E+00,4.628504E+01,1.500000E+01,Active Shallow Crust,2.400107E+02,5.799696E+01,0.000000E+00 +1766922,fr,1,3.850000E+00,7.837010E+00,4.628504E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +1766923,fr,1,3.850000E+00,7.837010E+00,4.628504E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +1766924,fr,1,3.850000E+00,7.837010E+00,4.628504E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +1766925,fr,1,3.850000E+00,7.837010E+00,4.628504E+01,5.000000E+00,Active Shallow Crust,1.288949E+02,8.999506E+01,0.000000E+00 +1766928,fr,3,3.950000E+00,7.837010E+00,4.628504E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +1766929,fr,1,3.950000E+00,7.837010E+00,4.628504E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +1766934,fr,2,3.950000E+00,7.837010E+00,4.628504E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999110E+01,-9.000000E+01 +1766937,fr,1,3.950000E+00,7.837010E+00,4.628504E+01,5.000000E+00,Active Shallow Crust,1.288994E+02,8.999341E+01,0.000000E+00 +1766938,fr,2,3.950000E+00,7.837010E+00,4.628504E+01,1.500000E+01,Active Shallow Crust,1.288994E+02,8.999341E+01,0.000000E+00 +1766940,fr,3,4.050000E+00,7.837010E+00,4.628504E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998824E+01,0.000000E+00 +1766941,fr,1,4.050000E+00,7.837010E+00,4.628504E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998824E+01,0.000000E+00 +1766952,fr,3,4.150000E+00,7.837010E+00,4.628504E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1766955,fr,1,4.150000E+00,7.837010E+00,4.628504E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.799715E+01,0.000000E+00 +1766957,fr,1,4.150000E+00,7.837010E+00,4.628504E+01,2.750000E+01,Active Shallow Crust,2.400089E+02,5.799712E+01,0.000000E+00 +1766958,fr,1,4.150000E+00,7.837010E+00,4.628504E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,-9.000000E+01 +1766960,fr,1,4.150000E+00,7.837010E+00,4.628504E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,-9.000000E+01 +1766961,fr,1,4.150000E+00,7.837010E+00,4.628504E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.999476E+01,0.000000E+00 +1766964,fr,6,4.250000E+00,7.837010E+00,4.628504E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +1766965,fr,1,4.250000E+00,7.837010E+00,4.628504E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +1766976,fr,1,4.350000E+00,7.837010E+00,4.628504E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998890E+01,0.000000E+00 +1766985,fr,1,4.350000E+00,7.837010E+00,4.628504E+01,5.000000E+00,Active Shallow Crust,1.288985E+02,8.998251E+01,0.000000E+00 +1766988,fr,1,4.450000E+00,7.837010E+00,4.628504E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1766989,fr,1,4.450000E+00,7.837010E+00,4.628504E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1766995,fr,1,4.450000E+00,7.837010E+00,4.628504E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +1767004,fr,1,4.550000E+00,7.837010E+00,4.628504E+01,1.500000E+01,Active Shallow Crust,2.400092E+02,5.799753E+01,0.000000E+00 +1767012,fr,2,4.650000E+00,7.837010E+00,4.628504E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1767024,fr,1,4.750000E+00,7.837010E+00,4.628504E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +1767036,fr,1,4.850000E+00,7.837010E+00,4.628504E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +1767048,fr,1,4.950000E+00,7.837010E+00,4.628504E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1767072,fr,3,5.150000E+00,7.837010E+00,4.628504E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1767084,fr,1,5.250000E+00,7.837010E+00,4.628504E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1767120,fr,1,5.550000E+00,7.837010E+00,4.628504E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +1767193,fr,1,6.150000E+00,7.837010E+00,4.628504E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1767360,fr,1,3.550000E+00,3.907140E+00,4.301354E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998894E+01,0.000000E+00 +1767397,fr,1,3.850000E+00,3.907140E+00,4.301354E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1767398,fr,1,3.850000E+00,3.907140E+00,4.301354E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1767585,fr,1,5.350000E+00,3.907140E+00,4.301354E+01,5.000000E+00,Active Shallow Crust,1.288851E+02,8.999194E+01,0.000000E+00 +1767840,fr,1,3.550000E+00,4.149180E+00,4.710776E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999313E+01,0.000000E+00 +1767876,fr,1,3.850000E+00,4.149180E+00,4.710776E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +1767877,fr,1,3.850000E+00,4.149180E+00,4.710776E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +1767906,fr,1,4.050000E+00,4.149180E+00,4.710776E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998829E+01,-9.000000E+01 +1767913,fr,1,4.150000E+00,4.149180E+00,4.710776E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1767939,fr,1,4.350000E+00,4.149180E+00,4.710776E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799612E+01,0.000000E+00 +1767991,fr,1,4.750000E+00,4.149180E+00,4.710776E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998953E+01,-9.000000E+01 +1767996,fr,1,4.850000E+00,4.149180E+00,4.710776E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +1768011,fr,1,4.950000E+00,4.149180E+00,4.710776E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.800454E+01,0.000000E+00 +1768800,fr,1,3.550000E+00,3.866080E+00,5.333907E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +1768824,fr,1,3.750000E+00,3.866080E+00,5.333907E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1768860,fr,1,4.050000E+00,3.866080E+00,5.333907E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1769280,fr,6,3.550000E+00,2.557470E+00,4.187352E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998874E+01,0.000000E+00 +1769281,fr,1,3.550000E+00,2.557470E+00,4.187352E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998874E+01,0.000000E+00 +1769282,fr,2,3.550000E+00,2.557470E+00,4.187352E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998874E+01,0.000000E+00 +1769292,fr,2,3.650000E+00,2.557470E+00,4.187352E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1769293,fr,1,3.650000E+00,2.557470E+00,4.187352E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1769304,fr,2,3.750000E+00,2.557470E+00,4.187352E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999105E+01,0.000000E+00 +1769305,fr,2,3.750000E+00,2.557470E+00,4.187352E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999105E+01,0.000000E+00 +1769308,fr,1,3.750000E+00,2.557470E+00,4.187352E+01,1.500000E+01,Active Shallow Crust,2.400075E+02,5.801757E+01,0.000000E+00 +1769310,fr,2,3.750000E+00,2.557470E+00,4.187352E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999095E+01,-9.000000E+01 +1769316,fr,3,3.850000E+00,2.557470E+00,4.187352E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +1769328,fr,1,3.950000E+00,2.557470E+00,4.187352E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +1769330,fr,1,3.950000E+00,2.557470E+00,4.187352E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +1769331,fr,1,3.950000E+00,2.557470E+00,4.187352E+01,5.000000E+00,Active Shallow Crust,2.400192E+02,5.800492E+01,0.000000E+00 +1769332,fr,1,3.950000E+00,2.557470E+00,4.187352E+01,1.500000E+01,Active Shallow Crust,2.400192E+02,5.800492E+01,0.000000E+00 +1769340,fr,2,4.050000E+00,2.557470E+00,4.187352E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +1769342,fr,1,4.050000E+00,2.557470E+00,4.187352E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +1769352,fr,1,4.150000E+00,2.557470E+00,4.187352E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +1769365,fr,1,4.250000E+00,2.557470E+00,4.187352E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1769377,fr,1,4.350000E+00,2.557470E+00,4.187352E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +1769388,fr,1,4.450000E+00,2.557470E+00,4.187352E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +1769397,fr,1,4.450000E+00,2.557470E+00,4.187352E+01,5.000000E+00,Active Shallow Crust,1.288930E+02,8.999334E+01,0.000000E+00 +1769400,fr,2,4.550000E+00,2.557470E+00,4.187352E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +1769404,fr,1,4.550000E+00,2.557470E+00,4.187352E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.799710E+01,0.000000E+00 +1769475,fr,1,5.150000E+00,2.557470E+00,4.187352E+01,5.000000E+00,Active Shallow Crust,2.400172E+02,5.799947E+01,0.000000E+00 +1769484,fr,1,5.250000E+00,2.557470E+00,4.187352E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1769508,fr,1,5.450000E+00,2.557470E+00,4.187352E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1769763,fr,1,3.550000E+00,5.555570E+00,4.323945E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.799673E+01,0.000000E+00 +1769772,fr,1,3.650000E+00,5.555570E+00,4.323945E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998691E+01,0.000000E+00 +1769786,fr,2,3.750000E+00,5.555570E+00,4.323945E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998833E+01,0.000000E+00 +1769791,fr,1,3.750000E+00,5.555570E+00,4.323945E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998820E+01,-9.000000E+01 +1769808,fr,1,3.950000E+00,5.555570E+00,4.323945E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999073E+01,0.000000E+00 +1769942,fr,1,5.050000E+00,5.555570E+00,4.323945E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +1770255,fr,1,3.650000E+00,2.593490E+00,4.948398E+01,5.000000E+00,Active Shallow Crust,2.400016E+02,5.801307E+01,0.000000E+00 +1770720,fr,1,3.550000E+00,6.336350E+00,4.519384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999290E+01,0.000000E+00 +1770721,fr,2,3.550000E+00,6.336350E+00,4.519384E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999290E+01,0.000000E+00 +1770723,fr,1,3.550000E+00,6.336350E+00,4.519384E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799906E+01,0.000000E+00 +1770730,fr,1,3.550000E+00,6.336350E+00,4.519384E+01,1.500000E+01,Active Shallow Crust,1.288967E+02,8.999290E+01,0.000000E+00 +1770732,fr,1,3.650000E+00,6.336350E+00,4.519384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998734E+01,0.000000E+00 +1770735,fr,1,3.650000E+00,6.336350E+00,4.519384E+01,5.000000E+00,Active Shallow Crust,2.400016E+02,5.801276E+01,0.000000E+00 +1770744,fr,1,3.750000E+00,6.336350E+00,4.519384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998871E+01,0.000000E+00 +1770746,fr,1,3.750000E+00,6.336350E+00,4.519384E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998871E+01,0.000000E+00 +1770748,fr,1,3.750000E+00,6.336350E+00,4.519384E+01,1.500000E+01,Active Shallow Crust,2.400089E+02,5.801734E+01,0.000000E+00 +1770751,fr,1,3.750000E+00,6.336350E+00,4.519384E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998858E+01,-9.000000E+01 +1770756,fr,1,3.850000E+00,6.336350E+00,4.519384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1770760,fr,1,3.850000E+00,6.336350E+00,4.519384E+01,1.500000E+01,Active Shallow Crust,2.400097E+02,5.799788E+01,0.000000E+00 +1770769,fr,2,3.950000E+00,6.336350E+00,4.519384E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +1770780,fr,1,4.050000E+00,6.336350E+00,4.519384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998801E+01,0.000000E+00 +1770828,fr,1,4.450000E+00,6.336350E+00,4.519384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1770829,fr,1,4.450000E+00,6.336350E+00,4.519384E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1770842,fr,1,4.550000E+00,6.336350E+00,4.519384E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999101E+01,0.000000E+00 +1770856,fr,1,4.650000E+00,6.336350E+00,4.519384E+01,1.500000E+01,Active Shallow Crust,2.400105E+02,5.799414E+01,0.000000E+00 +1770867,fr,1,4.750000E+00,6.336350E+00,4.519384E+01,5.000000E+00,Active Shallow Crust,2.400072E+02,5.800446E+01,0.000000E+00 +1770972,fr,1,5.650000E+00,6.336350E+00,4.519384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1770988,fr,1,5.750000E+00,6.336350E+00,4.519384E+01,1.500000E+01,Active Shallow Crust,2.400397E+02,5.799924E+01,0.000000E+00 +1771680,fr,1,3.550000E+00,8.516700E+00,5.055102E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998718E+01,0.000000E+00 +1771690,fr,1,3.550000E+00,8.516700E+00,5.055102E+01,1.500000E+01,Active Shallow Crust,1.288986E+02,8.999359E+01,0.000000E+00 +1771692,fr,1,3.650000E+00,8.516700E+00,5.055102E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998858E+01,0.000000E+00 +1771722,fr,1,3.850000E+00,8.516700E+00,5.055102E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999082E+01,-9.000000E+01 +1771728,fr,1,3.950000E+00,8.516700E+00,5.055102E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999191E+01,0.000000E+00 +1771836,fr,1,4.850000E+00,8.516700E+00,5.055102E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999139E+01,0.000000E+00 +1772640,fr,3,3.550000E+00,2.257650E+00,4.128853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998863E+01,0.000000E+00 +1772645,fr,1,3.550000E+00,2.257650E+00,4.128853E+01,2.750000E+01,Active Shallow Crust,2.400110E+02,5.799826E+01,0.000000E+00 +1772646,fr,1,3.550000E+00,2.257650E+00,4.128853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998850E+01,-9.000000E+01 +1772652,fr,2,3.650000E+00,2.257650E+00,4.128853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1772655,fr,1,3.650000E+00,2.257650E+00,4.128853E+01,5.000000E+00,Active Shallow Crust,2.400005E+02,5.801222E+01,0.000000E+00 +1772661,fr,1,3.650000E+00,2.257650E+00,4.128853E+01,5.000000E+00,Active Shallow Crust,1.289010E+02,8.996342E+01,0.000000E+00 +1772662,fr,1,3.650000E+00,2.257650E+00,4.128853E+01,1.500000E+01,Active Shallow Crust,1.289010E+02,8.996342E+01,0.000000E+00 +1772664,fr,2,3.750000E+00,2.257650E+00,4.128853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +1772667,fr,1,3.750000E+00,2.257650E+00,4.128853E+01,5.000000E+00,Active Shallow Crust,2.400075E+02,5.801769E+01,0.000000E+00 +1772670,fr,1,3.750000E+00,2.257650E+00,4.128853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999087E+01,-9.000000E+01 +1772676,fr,1,3.850000E+00,2.257650E+00,4.128853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1772713,fr,1,4.150000E+00,2.257650E+00,4.128853E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +1772724,fr,1,4.250000E+00,2.257650E+00,4.128853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1772727,fr,1,4.250000E+00,2.257650E+00,4.128853E+01,5.000000E+00,Active Shallow Crust,2.400065E+02,5.799388E+01,0.000000E+00 +1772728,fr,1,4.250000E+00,2.257650E+00,4.128853E+01,1.500000E+01,Active Shallow Crust,2.400065E+02,5.799388E+01,0.000000E+00 +1772750,fr,1,4.450000E+00,2.257650E+00,4.128853E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +1772774,fr,1,4.650000E+00,2.257650E+00,4.128853E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1772775,fr,1,4.650000E+00,2.257650E+00,4.128853E+01,5.000000E+00,Active Shallow Crust,2.400095E+02,5.799394E+01,0.000000E+00 +1772784,fr,1,4.750000E+00,2.257650E+00,4.128853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +1772910,fr,1,5.750000E+00,2.257650E+00,4.128853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,-9.000000E+01 +1773612,fr,1,3.650000E+00,7.937900E-01,4.675364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1773613,fr,1,3.650000E+00,7.937900E-01,4.675364E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1773618,fr,1,3.650000E+00,7.937900E-01,4.675364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +1773624,fr,3,3.750000E+00,7.937900E-01,4.675364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +1773630,fr,1,3.750000E+00,7.937900E-01,4.675364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,-9.000000E+01 +1773636,fr,1,3.850000E+00,7.937900E-01,4.675364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1773648,fr,3,3.950000E+00,7.937900E-01,4.675364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1773652,fr,1,3.950000E+00,7.937900E-01,4.675364E+01,1.500000E+01,Active Shallow Crust,2.400199E+02,5.800497E+01,0.000000E+00 +1773660,fr,2,4.050000E+00,7.937900E-01,4.675364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1773670,fr,1,4.050000E+00,7.937900E-01,4.675364E+01,1.500000E+01,Active Shallow Crust,1.288905E+02,8.999369E+01,0.000000E+00 +1773672,fr,2,4.150000E+00,7.937900E-01,4.675364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1773721,fr,1,4.550000E+00,7.937900E-01,4.675364E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1773936,fr,1,6.350000E+00,7.937959E-01,4.675364E+01,7.567806E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +1774089,fr,1,3.550000E+00,6.778490E+00,4.960983E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.999347E+01,0.000000E+00 +1774113,fr,1,3.750000E+00,6.778490E+00,4.960983E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.996754E+01,0.000000E+00 +1774117,fr,1,3.850000E+00,6.778490E+00,4.960983E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +1774141,fr,1,4.050000E+00,6.778490E+00,4.960983E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +1774561,fr,1,3.550000E+00,2.331840E+00,4.803395E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1774632,fr,1,4.150000E+00,2.331840E+00,4.803395E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1775103,fr,1,4.050000E+00,-6.203730E+00,4.745988E+01,5.000000E+00,Active Shallow Crust,2.400061E+02,5.800585E+01,0.000000E+00 +1775617,fr,1,4.350000E+00,3.829580E+00,4.820801E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +1776030,fr,1,3.750000E+00,-3.307990E+00,4.238269E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999102E+01,-9.000000E+01 +1776036,fr,1,3.850000E+00,-3.307990E+00,4.238269E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1776060,fr,1,4.050000E+00,-3.307990E+00,4.238269E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1776120,fr,1,4.550000E+00,-3.307990E+00,4.238269E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +1776480,fr,1,3.550000E+00,4.135580E+00,5.308932E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998788E+01,0.000000E+00 +1776961,fr,1,3.550000E+00,3.408030E+00,4.347234E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998902E+01,0.000000E+00 +1776975,fr,1,3.650000E+00,3.408030E+00,4.347234E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801317E+01,0.000000E+00 +1776984,fr,1,3.750000E+00,3.408030E+00,4.347234E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999128E+01,0.000000E+00 +1777020,fr,1,4.050000E+00,3.408030E+00,4.347234E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +1777440,fr,1,3.550000E+00,9.711580E+00,4.954750E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998692E+01,0.000000E+00 +1777446,fr,1,3.550000E+00,9.711580E+00,4.954750E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998676E+01,-9.000000E+01 +1777518,fr,1,4.150000E+00,9.711580E+00,4.954750E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998673E+01,-9.000000E+01 +1777920,fr,1,3.550000E+00,6.343400E-01,4.499362E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1777935,fr,1,3.650000E+00,6.343400E-01,4.499362E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801289E+01,0.000000E+00 +1777956,fr,1,3.850000E+00,6.343400E-01,4.499362E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1777957,fr,1,3.850000E+00,6.343400E-01,4.499362E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1778091,fr,1,4.950000E+00,6.343400E-01,4.499362E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.800431E+01,0.000000E+00 +1778151,fr,1,5.450000E+00,6.343400E-01,4.499362E+01,5.000000E+00,Active Shallow Crust,2.400276E+02,5.799826E+01,0.000000E+00 +1778413,fr,1,3.650000E+00,-3.378500E-01,4.801467E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1778426,fr,1,3.750000E+00,-3.378500E-01,4.801467E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1778443,fr,1,3.850000E+00,-3.378500E-01,4.801467E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +1778445,fr,1,3.850000E+00,-3.378500E-01,4.801467E+01,5.000000E+00,Active Shallow Crust,1.288955E+02,8.999374E+01,0.000000E+00 +1778457,fr,1,3.950000E+00,-3.378500E-01,4.801467E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.999361E+01,0.000000E+00 +1778472,fr,1,4.150000E+00,-3.378500E-01,4.801467E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1778484,fr,1,4.250000E+00,-3.378500E-01,4.801467E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1778492,fr,1,4.250000E+00,-3.378500E-01,4.801467E+01,2.750000E+01,Active Shallow Crust,3.599999E+02,8.999010E+01,-9.000000E+01 +1778736,fr,1,6.350000E+00,-3.378440E-01,4.801467E+01,7.567806E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +1778892,fr,2,3.650000E+00,2.484690E+00,4.556234E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +1778904,fr,1,3.750000E+00,2.484690E+00,4.556234E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +1778907,fr,1,3.750000E+00,2.484690E+00,4.556234E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801755E+01,0.000000E+00 +1778916,fr,2,3.850000E+00,2.484690E+00,4.556234E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1778932,fr,1,3.950000E+00,2.484690E+00,4.556234E+01,1.500000E+01,Active Shallow Crust,2.400197E+02,5.800515E+01,0.000000E+00 +1778944,fr,1,4.050000E+00,2.484690E+00,4.556234E+01,1.500000E+01,Active Shallow Crust,2.400056E+02,5.800601E+01,0.000000E+00 +1779037,fr,1,4.850000E+00,2.484690E+00,4.556234E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1779384,fr,1,3.750000E+00,-1.665800E+00,4.547285E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1780340,fr,1,3.650000E+00,4.875060E+00,5.170343E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998873E+01,-9.000000E+01 +1780800,fr,2,3.550000E+00,2.509780E+00,4.213418E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +1780801,fr,1,3.550000E+00,2.509780E+00,4.213418E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +1780802,fr,1,3.550000E+00,2.509780E+00,4.213418E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +1780803,fr,2,3.550000E+00,2.509780E+00,4.213418E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799767E+01,0.000000E+00 +1780815,fr,1,3.650000E+00,2.509780E+00,4.213418E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801229E+01,0.000000E+00 +1780821,fr,2,3.650000E+00,2.509780E+00,4.213418E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.996344E+01,0.000000E+00 +1780825,fr,1,3.750000E+00,2.509780E+00,4.213418E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999109E+01,0.000000E+00 +1780836,fr,2,3.850000E+00,2.509780E+00,4.213418E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998941E+01,0.000000E+00 +1780860,fr,2,4.050000E+00,2.509780E+00,4.213418E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +1780866,fr,1,4.050000E+00,2.509780E+00,4.213418E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,-9.000000E+01 +1780872,fr,2,4.150000E+00,2.509780E+00,4.213418E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +1780911,fr,1,4.450000E+00,2.509780E+00,4.213418E+01,5.000000E+00,Active Shallow Crust,2.400040E+02,5.799442E+01,0.000000E+00 +1780920,fr,1,4.550000E+00,2.509780E+00,4.213418E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +1780965,fr,1,4.850000E+00,2.509780E+00,4.213418E+01,5.000000E+00,Active Shallow Crust,1.288939E+02,8.998901E+01,0.000000E+00 +1780992,fr,1,5.150000E+00,2.509780E+00,4.213418E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1781762,fr,1,3.550000E+00,3.495930E+00,4.532877E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +1781769,fr,2,3.550000E+00,3.495930E+00,4.532877E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999468E+01,0.000000E+00 +1781784,fr,1,3.750000E+00,3.495930E+00,4.532877E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998874E+01,0.000000E+00 +1781787,fr,1,3.750000E+00,3.495930E+00,4.532877E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.801710E+01,0.000000E+00 +1781806,fr,1,3.850000E+00,3.495930E+00,4.532877E+01,1.500000E+01,Active Shallow Crust,1.288954E+02,8.999373E+01,0.000000E+00 +1781811,fr,1,3.950000E+00,3.495930E+00,4.532877E+01,5.000000E+00,Active Shallow Crust,2.400197E+02,5.800499E+01,0.000000E+00 +1781814,fr,1,3.950000E+00,3.495930E+00,4.532877E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999095E+01,-9.000000E+01 +1781830,fr,1,4.050000E+00,3.495930E+00,4.532877E+01,1.500000E+01,Active Shallow Crust,1.288904E+02,8.999402E+01,0.000000E+00 +1781853,fr,1,4.250000E+00,3.495930E+00,4.532877E+01,5.000000E+00,Active Shallow Crust,1.288947E+02,8.998090E+01,0.000000E+00 +1781871,fr,1,4.450000E+00,3.495930E+00,4.532877E+01,5.000000E+00,Active Shallow Crust,2.400050E+02,5.799459E+01,0.000000E+00 +1781888,fr,1,4.550000E+00,3.495930E+00,4.532877E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,-9.000000E+01 +1781928,fr,1,4.950000E+00,3.495930E+00,4.532877E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1782271,fr,1,3.750000E+00,2.153400E+00,4.842038E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998924E+01,-9.000000E+01 +1782720,fr,1,3.550000E+00,-6.021700E-01,4.214851E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1782721,fr,2,3.550000E+00,-6.021700E-01,4.214851E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1782781,fr,1,4.050000E+00,-6.021700E-01,4.214851E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1782864,fr,1,4.750000E+00,-6.021700E-01,4.214851E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1783200,fr,6,3.550000E+00,7.107490E+00,4.515478E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999289E+01,0.000000E+00 +1783202,fr,1,3.550000E+00,7.107490E+00,4.515478E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999289E+01,0.000000E+00 +1783206,fr,2,3.550000E+00,7.107490E+00,4.515478E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999281E+01,-9.000000E+01 +1783209,fr,2,3.550000E+00,7.107490E+00,4.515478E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.999289E+01,0.000000E+00 +1783210,fr,1,3.550000E+00,7.107490E+00,4.515478E+01,1.500000E+01,Active Shallow Crust,1.288976E+02,8.999289E+01,0.000000E+00 +1783211,fr,1,3.550000E+00,7.107490E+00,4.515478E+01,2.750000E+01,Active Shallow Crust,1.288976E+02,8.999289E+01,0.000000E+00 +1783212,fr,3,3.650000E+00,7.107490E+00,4.515478E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998733E+01,0.000000E+00 +1783215,fr,1,3.650000E+00,7.107490E+00,4.515478E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801238E+01,0.000000E+00 +1783221,fr,2,3.650000E+00,7.107490E+00,4.515478E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.996350E+01,0.000000E+00 +1783224,fr,4,3.750000E+00,7.107490E+00,4.515478E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998870E+01,0.000000E+00 +1783225,fr,1,3.750000E+00,7.107490E+00,4.515478E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998870E+01,0.000000E+00 +1783227,fr,2,3.750000E+00,7.107490E+00,4.515478E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.801772E+01,0.000000E+00 +1783236,fr,1,3.850000E+00,7.107490E+00,4.515478E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1783238,fr,1,3.850000E+00,7.107490E+00,4.515478E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1783239,fr,1,3.850000E+00,7.107490E+00,4.515478E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799773E+01,0.000000E+00 +1783248,fr,2,3.950000E+00,7.107490E+00,4.515478E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999103E+01,0.000000E+00 +1783253,fr,1,3.950000E+00,7.107490E+00,4.515478E+01,2.750000E+01,Active Shallow Crust,2.400190E+02,5.800475E+01,0.000000E+00 +1783260,fr,3,4.050000E+00,7.107490E+00,4.515478E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998801E+01,0.000000E+00 +1783261,fr,1,4.050000E+00,7.107490E+00,4.515478E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998801E+01,0.000000E+00 +1783263,fr,1,4.050000E+00,7.107490E+00,4.515478E+01,5.000000E+00,Active Shallow Crust,2.400064E+02,5.800529E+01,0.000000E+00 +1783296,fr,1,4.350000E+00,7.107490E+00,4.515478E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998868E+01,0.000000E+00 +1783297,fr,1,4.350000E+00,7.107490E+00,4.515478E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998868E+01,0.000000E+00 +1783301,fr,1,4.350000E+00,7.107490E+00,4.515478E+01,2.750000E+01,Active Shallow Crust,2.400080E+02,5.799599E+01,0.000000E+00 +1783308,fr,1,4.450000E+00,7.107490E+00,4.515478E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1783320,fr,1,4.550000E+00,7.107490E+00,4.515478E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +1783345,fr,1,4.750000E+00,7.107490E+00,4.515478E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998928E+01,0.000000E+00 +1783369,fr,1,4.950000E+00,7.107490E+00,4.515478E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1783381,fr,1,5.050000E+00,7.107490E+00,4.515478E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1783419,fr,1,5.350000E+00,7.107490E+00,4.515478E+01,5.000000E+00,Active Shallow Crust,2.400243E+02,5.799749E+01,0.000000E+00 +1783476,fr,1,5.850000E+00,7.107490E+00,4.515478E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1783683,fr,2,3.550000E+00,4.240200E-01,5.186708E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.799828E+01,0.000000E+00 +1783692,fr,1,3.650000E+00,4.240200E-01,5.186708E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1783703,fr,1,3.650000E+00,4.240200E-01,5.186708E+01,2.750000E+01,Active Shallow Crust,1.288999E+02,8.996352E+01,0.000000E+00 +1783824,fr,1,4.750000E+00,4.240200E-01,5.186708E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1784172,fr,1,3.650000E+00,-1.796680E+00,4.600677E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +1784196,fr,1,3.850000E+00,-1.796680E+00,4.600677E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1784641,fr,1,3.550000E+00,4.375610E+00,4.079044E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999236E+01,0.000000E+00 +1784664,fr,1,3.750000E+00,4.375610E+00,4.079044E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998787E+01,0.000000E+00 +1784680,fr,1,3.850000E+00,4.375610E+00,4.079044E+01,1.500000E+01,Active Shallow Crust,2.400106E+02,5.799712E+01,0.000000E+00 +1784700,fr,3,4.050000E+00,4.375610E+00,4.079044E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +1784760,fr,1,4.550000E+00,4.375610E+00,4.079044E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +1785120,fr,2,3.550000E+00,5.016570E+00,4.330185E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999266E+01,0.000000E+00 +1785126,fr,1,3.550000E+00,5.016570E+00,4.330185E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999258E+01,-9.000000E+01 +1785211,fr,1,4.250000E+00,5.016570E+00,4.330185E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,-9.000000E+01 +1785219,fr,1,4.350000E+00,5.016570E+00,4.330185E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799573E+01,0.000000E+00 +1785600,fr,1,3.550000E+00,1.389450E+00,4.639130E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +1785612,fr,1,3.650000E+00,1.389450E+00,4.639130E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +1785626,fr,2,3.750000E+00,1.389450E+00,4.639130E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1785642,fr,1,3.850000E+00,1.389450E+00,4.639130E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +1785647,fr,1,3.850000E+00,1.389450E+00,4.639130E+01,2.750000E+01,Active Shallow Crust,1.288955E+02,8.999384E+01,0.000000E+00 +1785648,fr,1,3.950000E+00,1.389450E+00,4.639130E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1785684,fr,1,4.250000E+00,1.389450E+00,4.639130E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1785732,fr,1,4.650000E+00,1.389450E+00,4.639130E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1785744,fr,1,4.750000E+00,1.389450E+00,4.639130E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1786085,fr,1,3.550000E+00,-5.531870E+00,4.891173E+01,2.750000E+01,Active Shallow Crust,2.400113E+02,5.799855E+01,0.000000E+00 +1786164,fr,1,4.250000E+00,-5.531870E+00,4.891173E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999112E+01,0.000000E+00 +1786560,fr,1,3.550000E+00,2.033030E+00,4.959361E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1786575,fr,2,3.650000E+00,2.033030E+00,4.959361E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801268E+01,0.000000E+00 +1786579,fr,1,3.650000E+00,2.033030E+00,4.959361E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999116E+01,-9.000000E+01 +1786597,fr,1,3.850000E+00,2.033030E+00,4.959361E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +1786630,fr,1,4.050000E+00,2.033030E+00,4.959361E+01,1.500000E+01,Active Shallow Crust,1.288903E+02,8.999357E+01,0.000000E+00 +1786668,fr,1,4.450000E+00,2.033030E+00,4.959361E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1787040,fr,1,3.550000E+00,-4.610730E+00,4.818895E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999328E+01,0.000000E+00 +1787050,fr,1,3.550000E+00,-4.610730E+00,4.818895E+01,1.500000E+01,Active Shallow Crust,1.288964E+02,8.999328E+01,0.000000E+00 +1787059,fr,1,3.650000E+00,-4.610730E+00,4.818895E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998788E+01,-9.000000E+01 +1787064,fr,1,3.750000E+00,-4.610730E+00,4.818895E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +1787066,fr,1,3.750000E+00,-4.610730E+00,4.818895E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +1787067,fr,1,3.750000E+00,-4.610730E+00,4.818895E+01,5.000000E+00,Active Shallow Crust,2.400092E+02,5.801722E+01,0.000000E+00 +1787070,fr,1,3.750000E+00,-4.610730E+00,4.818895E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,-9.000000E+01 +1787089,fr,1,3.950000E+00,-4.610730E+00,4.818895E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999152E+01,0.000000E+00 +1787097,fr,1,3.950000E+00,-4.610730E+00,4.818895E+01,5.000000E+00,Active Shallow Crust,1.288994E+02,8.999364E+01,0.000000E+00 +1787100,fr,1,4.050000E+00,-4.610730E+00,4.818895E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +1787114,fr,1,4.150000E+00,-4.610730E+00,4.818895E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1787124,fr,1,4.250000E+00,-4.610730E+00,4.818895E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999099E+01,0.000000E+00 +1787125,fr,1,4.250000E+00,-4.610730E+00,4.818895E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999099E+01,0.000000E+00 +1787545,fr,2,3.750000E+00,5.015670E+00,4.658592E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998899E+01,0.000000E+00 +1787556,fr,1,3.850000E+00,5.015670E+00,4.658592E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1787568,fr,1,3.950000E+00,5.015670E+00,4.658592E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +1787569,fr,1,3.950000E+00,5.015670E+00,4.658592E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +1787605,fr,1,4.250000E+00,5.015670E+00,4.658592E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +1787637,fr,1,4.450000E+00,5.015670E+00,4.658592E+01,5.000000E+00,Active Shallow Crust,1.288922E+02,8.999385E+01,0.000000E+00 +1787654,fr,1,4.650000E+00,5.015670E+00,4.658592E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1788048,fr,1,3.950000E+00,-1.084480E+00,4.388578E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1788075,fr,1,4.150000E+00,-1.084480E+00,4.388578E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799720E+01,0.000000E+00 +1788504,fr,1,3.750000E+00,2.733830E+00,5.103994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1788505,fr,1,3.750000E+00,2.733830E+00,5.103994E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1788514,fr,1,3.750000E+00,2.733830E+00,5.103994E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.996735E+01,0.000000E+00 +1788541,fr,1,4.050000E+00,2.733830E+00,5.103994E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +1788543,fr,1,4.050000E+00,2.733830E+00,5.103994E+01,5.000000E+00,Active Shallow Crust,2.400066E+02,5.800594E+01,0.000000E+00 +1788555,fr,1,4.150000E+00,2.733830E+00,5.103994E+01,5.000000E+00,Active Shallow Crust,2.400095E+02,5.799734E+01,0.000000E+00 +1788589,fr,1,4.450000E+00,2.733830E+00,5.103994E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1788601,fr,1,4.550000E+00,2.733830E+00,5.103994E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1788612,fr,1,4.650000E+00,2.733830E+00,5.103994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1788657,fr,1,4.950000E+00,2.733830E+00,5.103994E+01,5.000000E+00,Active Shallow Crust,1.288878E+02,8.998976E+01,0.000000E+00 +1788661,fr,1,5.050000E+00,2.733830E+00,5.103994E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1788963,fr,1,3.550000E+00,4.753770E+00,4.744983E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799891E+01,0.000000E+00 +1788973,fr,1,3.650000E+00,4.753770E+00,4.744983E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998785E+01,0.000000E+00 +1788984,fr,1,3.750000E+00,4.753770E+00,4.744983E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +1788985,fr,1,3.750000E+00,4.753770E+00,4.744983E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +1789012,fr,1,3.950000E+00,4.753770E+00,4.744983E+01,1.500000E+01,Active Shallow Crust,2.400202E+02,5.800457E+01,0.000000E+00 +1789455,fr,1,3.650000E+00,-1.954350E+00,5.043262E+01,5.000000E+00,Active Shallow Crust,2.400018E+02,5.801274E+01,0.000000E+00 +1789476,fr,1,3.850000E+00,-1.954350E+00,5.043262E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1789503,fr,1,4.050000E+00,-1.954350E+00,5.043262E+01,5.000000E+00,Active Shallow Crust,2.400067E+02,5.800597E+01,0.000000E+00 +1790400,fr,2,3.550000E+00,8.247600E+00,5.076965E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998724E+01,0.000000E+00 +1790401,fr,1,3.550000E+00,8.247600E+00,5.076965E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998724E+01,0.000000E+00 +1790403,fr,1,3.550000E+00,8.247600E+00,5.076965E+01,5.000000E+00,Active Shallow Crust,2.400136E+02,5.799662E+01,0.000000E+00 +1790406,fr,1,3.550000E+00,8.247600E+00,5.076965E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998710E+01,-9.000000E+01 +1790436,fr,1,3.850000E+00,8.247600E+00,5.076965E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +1790448,fr,1,3.950000E+00,8.247600E+00,5.076965E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999195E+01,0.000000E+00 +1790484,fr,1,4.250000E+00,8.247600E+00,5.076965E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998860E+01,0.000000E+00 +1791362,fr,2,3.550000E+00,3.561410E+00,5.131311E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +1791366,fr,1,3.550000E+00,3.561410E+00,5.131311E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,-9.000000E+01 +1791378,fr,1,3.650000E+00,3.561410E+00,5.131311E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998863E+01,-9.000000E+01 +1791384,fr,1,3.750000E+00,3.561410E+00,5.131311E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1791422,fr,1,4.050000E+00,3.561410E+00,5.131311E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +1791840,fr,1,3.550000E+00,-3.443110E+00,4.884487E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1791888,fr,2,3.950000E+00,-3.443110E+00,4.884487E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +1791891,fr,1,3.950000E+00,-3.443110E+00,4.884487E+01,5.000000E+00,Active Shallow Crust,2.400203E+02,5.800500E+01,0.000000E+00 +1791900,fr,2,4.050000E+00,-3.443110E+00,4.884487E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999067E+01,0.000000E+00 +1791901,fr,1,4.050000E+00,-3.443110E+00,4.884487E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999067E+01,0.000000E+00 +1793280,fr,1,3.550000E+00,5.887370E+00,4.314813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999265E+01,0.000000E+00 +1793293,fr,1,3.650000E+00,5.887370E+00,4.314813E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998689E+01,0.000000E+00 +1793296,fr,1,3.650000E+00,5.887370E+00,4.314813E+01,1.500000E+01,Active Shallow Crust,2.400002E+02,5.801349E+01,0.000000E+00 +1793300,fr,1,3.650000E+00,5.887370E+00,4.314813E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998673E+01,-9.000000E+01 +1793317,fr,1,3.850000E+00,5.887370E+00,4.314813E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1793328,fr,1,3.950000E+00,5.887370E+00,4.314813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +1793760,fr,1,3.550000E+00,7.459430E+00,4.817524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999328E+01,0.000000E+00 +1793761,fr,2,3.550000E+00,7.459430E+00,4.817524E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999328E+01,0.000000E+00 +1793763,fr,1,3.550000E+00,7.459430E+00,4.817524E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799838E+01,0.000000E+00 +1793766,fr,2,3.550000E+00,7.459430E+00,4.817524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999319E+01,-9.000000E+01 +1793772,fr,1,3.650000E+00,7.459430E+00,4.817524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998801E+01,0.000000E+00 +1793773,fr,2,3.650000E+00,7.459430E+00,4.817524E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998801E+01,0.000000E+00 +1793776,fr,1,3.650000E+00,7.459430E+00,4.817524E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801297E+01,0.000000E+00 +1793788,fr,1,3.750000E+00,7.459430E+00,4.817524E+01,1.500000E+01,Active Shallow Crust,2.400078E+02,5.801777E+01,0.000000E+00 +1793796,fr,1,3.850000E+00,7.459430E+00,4.817524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +1793798,fr,1,3.850000E+00,7.459430E+00,4.817524E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +1793799,fr,2,3.850000E+00,7.459430E+00,4.817524E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799750E+01,0.000000E+00 +1793817,fr,1,3.950000E+00,7.459430E+00,4.817524E+01,5.000000E+00,Active Shallow Crust,1.288999E+02,8.999364E+01,0.000000E+00 +1793820,fr,1,4.050000E+00,7.459430E+00,4.817524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +1793832,fr,1,4.150000E+00,7.459430E+00,4.817524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1793834,fr,1,4.150000E+00,7.459430E+00,4.817524E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1793835,fr,1,4.150000E+00,7.459430E+00,4.817524E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799765E+01,0.000000E+00 +1793838,fr,1,4.150000E+00,7.459430E+00,4.817524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,-9.000000E+01 +1793856,fr,1,4.350000E+00,7.459430E+00,4.817524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +1793871,fr,1,4.450000E+00,7.459430E+00,4.817524E+01,5.000000E+00,Active Shallow Crust,2.400061E+02,5.799483E+01,0.000000E+00 +1793881,fr,1,4.550000E+00,7.459430E+00,4.817524E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +1793898,fr,1,4.650000E+00,7.459430E+00,4.817524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,-9.000000E+01 +1793928,fr,1,4.950000E+00,7.459430E+00,4.817524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999061E+01,0.000000E+00 +1793930,fr,1,4.950000E+00,7.459430E+00,4.817524E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999061E+01,0.000000E+00 +1793940,fr,1,5.050000E+00,7.459430E+00,4.817524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1793961,fr,1,5.150000E+00,7.459430E+00,4.817524E+01,5.000000E+00,Active Shallow Crust,1.288827E+02,8.999133E+01,0.000000E+00 +1793997,fr,1,5.450000E+00,7.459430E+00,4.817524E+01,5.000000E+00,Active Shallow Crust,1.288776E+02,8.998912E+01,0.000000E+00 +1794240,fr,1,3.550000E+00,4.260680E+00,4.023020E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999230E+01,0.000000E+00 +1794241,fr,1,3.550000E+00,4.260680E+00,4.023020E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999230E+01,0.000000E+00 +1794252,fr,1,3.650000E+00,4.260680E+00,4.023020E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999314E+01,0.000000E+00 +1794313,fr,1,4.150000E+00,4.260680E+00,4.023020E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +1794336,fr,1,4.350000E+00,4.260680E+00,4.023020E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +1794734,fr,1,3.650000E+00,-6.833500E-01,4.158809E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1794802,fr,1,4.150000E+00,-6.833500E-01,4.158809E+01,1.500000E+01,Active Shallow Crust,1.288983E+02,8.999362E+01,0.000000E+00 +1794938,fr,1,5.350000E+00,-6.833500E-01,4.158809E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1795200,fr,1,3.550000E+00,-6.666400E-01,4.664709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +1795201,fr,1,3.550000E+00,-6.666400E-01,4.664709E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +1795202,fr,1,3.550000E+00,-6.666400E-01,4.664709E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +1795206,fr,2,3.550000E+00,-6.666400E-01,4.664709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,-9.000000E+01 +1795207,fr,1,3.550000E+00,-6.666400E-01,4.664709E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,-9.000000E+01 +1795212,fr,4,3.650000E+00,-6.666400E-01,4.664709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1795224,fr,4,3.750000E+00,-6.666400E-01,4.664709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1795227,fr,1,3.750000E+00,-6.666400E-01,4.664709E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801752E+01,0.000000E+00 +1795228,fr,1,3.750000E+00,-6.666400E-01,4.664709E+01,1.500000E+01,Active Shallow Crust,2.400083E+02,5.801752E+01,0.000000E+00 +1795236,fr,1,3.850000E+00,-6.666400E-01,4.664709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1795240,fr,1,3.850000E+00,-6.666400E-01,4.664709E+01,1.500000E+01,Active Shallow Crust,2.400108E+02,5.799782E+01,0.000000E+00 +1795248,fr,1,3.950000E+00,-6.666400E-01,4.664709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1795278,fr,1,4.150000E+00,-6.666400E-01,4.664709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +1795291,fr,1,4.250000E+00,-6.666400E-01,4.664709E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,-9.000000E+01 +1795296,fr,1,4.350000E+00,-6.666400E-01,4.664709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1795332,fr,1,4.650000E+00,-6.666400E-01,4.664709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1795340,fr,1,4.650000E+00,-6.666400E-01,4.664709E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +1795359,fr,1,4.850000E+00,-6.666400E-01,4.664709E+01,5.000000E+00,Active Shallow Crust,2.400172E+02,5.800234E+01,0.000000E+00 +1795362,fr,1,4.850000E+00,-6.666400E-01,4.664709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1795476,fr,1,5.850000E+00,-6.666400E-01,4.664709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1795692,fr,1,3.650000E+00,5.412440E+00,4.817679E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998801E+01,0.000000E+00 +1795722,fr,1,3.850000E+00,5.412440E+00,4.817679E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,-9.000000E+01 +1795812,fr,1,4.650000E+00,5.412440E+00,4.817679E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +1795830,fr,1,4.750000E+00,5.412440E+00,4.817679E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,-9.000000E+01 +1796161,fr,1,3.550000E+00,4.067520E+00,4.330321E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999266E+01,0.000000E+00 +1796172,fr,1,3.650000E+00,4.067520E+00,4.330321E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998692E+01,0.000000E+00 +1796377,fr,1,5.350000E+00,4.067520E+00,4.330321E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +1796640,fr,1,3.550000E+00,1.644970E+00,4.614033E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1796641,fr,1,3.550000E+00,1.644970E+00,4.614033E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1796642,fr,2,3.550000E+00,1.644970E+00,4.614033E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1796644,fr,1,3.550000E+00,1.644970E+00,4.614033E+01,1.500000E+01,Active Shallow Crust,2.400122E+02,5.799810E+01,0.000000E+00 +1796652,fr,1,3.650000E+00,1.644970E+00,4.614033E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +1796653,fr,1,3.650000E+00,1.644970E+00,4.614033E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +1796655,fr,2,3.650000E+00,1.644970E+00,4.614033E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801277E+01,0.000000E+00 +1796656,fr,1,3.650000E+00,1.644970E+00,4.614033E+01,1.500000E+01,Active Shallow Crust,2.400010E+02,5.801277E+01,0.000000E+00 +1796664,fr,2,3.750000E+00,1.644970E+00,4.614033E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +1796675,fr,1,3.750000E+00,1.644970E+00,4.614033E+01,2.750000E+01,Active Shallow Crust,1.288965E+02,8.996736E+01,0.000000E+00 +1796676,fr,1,3.850000E+00,1.644970E+00,4.614033E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1796685,fr,1,3.850000E+00,1.644970E+00,4.614033E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999382E+01,0.000000E+00 +1796700,fr,1,4.050000E+00,1.644970E+00,4.614033E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1796733,fr,1,4.250000E+00,1.644970E+00,4.614033E+01,5.000000E+00,Active Shallow Crust,1.288943E+02,8.998093E+01,0.000000E+00 +1796737,fr,1,4.350000E+00,1.644970E+00,4.614033E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1796738,fr,2,4.350000E+00,1.644970E+00,4.614033E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1796747,fr,1,4.350000E+00,1.644970E+00,4.614033E+01,2.750000E+01,Active Shallow Crust,1.288981E+02,8.998277E+01,0.000000E+00 +1796748,fr,1,4.450000E+00,1.644970E+00,4.614033E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1796772,fr,1,4.650000E+00,1.644970E+00,4.614033E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1796784,fr,1,4.750000E+00,1.644970E+00,4.614033E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1796824,fr,1,5.050000E+00,1.644970E+00,4.614033E+01,1.500000E+01,Active Shallow Crust,2.400220E+02,5.799747E+01,0.000000E+00 +1797120,fr,1,3.550000E+00,-1.232070E+00,4.942021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1797123,fr,1,3.550000E+00,-1.232070E+00,4.942021E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799800E+01,0.000000E+00 +1797135,fr,1,3.650000E+00,-1.232070E+00,4.942021E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801275E+01,0.000000E+00 +1797136,fr,1,3.650000E+00,-1.232070E+00,4.942021E+01,1.500000E+01,Active Shallow Crust,2.400014E+02,5.801275E+01,0.000000E+00 +1797138,fr,1,3.650000E+00,-1.232070E+00,4.942021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +1797144,fr,1,3.750000E+00,-1.232070E+00,4.942021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +1797150,fr,2,3.750000E+00,-1.232070E+00,4.942021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,-9.000000E+01 +1797168,fr,1,3.950000E+00,-1.232070E+00,4.942021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1797178,fr,1,3.950000E+00,-1.232070E+00,4.942021E+01,1.500000E+01,Active Shallow Crust,1.289001E+02,8.999328E+01,0.000000E+00 +1797180,fr,1,4.050000E+00,-1.232070E+00,4.942021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1797216,fr,1,4.350000E+00,-1.232070E+00,4.942021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1797224,fr,1,4.350000E+00,-1.232070E+00,4.942021E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +1797276,fr,2,4.850000E+00,-1.232070E+00,4.942021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1797292,fr,1,4.950000E+00,-1.232070E+00,4.942021E+01,1.500000E+01,Active Shallow Crust,2.400134E+02,5.800474E+01,0.000000E+00 +1797600,fr,5,3.550000E+00,6.441390E+00,5.093139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998729E+01,0.000000E+00 +1797601,fr,1,3.550000E+00,6.441390E+00,5.093139E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998729E+01,0.000000E+00 +1797603,fr,1,3.550000E+00,6.441390E+00,5.093139E+01,5.000000E+00,Active Shallow Crust,2.400135E+02,5.799736E+01,0.000000E+00 +1797609,fr,1,3.550000E+00,6.441390E+00,5.093139E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999364E+01,0.000000E+00 +1797612,fr,4,3.650000E+00,6.441390E+00,5.093139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998867E+01,0.000000E+00 +1797615,fr,1,3.650000E+00,6.441390E+00,5.093139E+01,5.000000E+00,Active Shallow Crust,2.400019E+02,5.801326E+01,0.000000E+00 +1797621,fr,1,3.650000E+00,6.441390E+00,5.093139E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.996361E+01,0.000000E+00 +1797624,fr,4,3.750000E+00,6.441390E+00,5.093139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1797629,fr,1,3.750000E+00,6.441390E+00,5.093139E+01,2.750000E+01,Active Shallow Crust,2.400094E+02,5.801791E+01,0.000000E+00 +1797636,fr,3,3.850000E+00,6.441390E+00,5.093139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +1797639,fr,1,3.850000E+00,6.441390E+00,5.093139E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799793E+01,0.000000E+00 +1797641,fr,1,3.850000E+00,6.441390E+00,5.093139E+01,2.750000E+01,Active Shallow Crust,2.400112E+02,5.799793E+01,0.000000E+00 +1797651,fr,1,3.950000E+00,6.441390E+00,5.093139E+01,5.000000E+00,Active Shallow Crust,2.400209E+02,5.800452E+01,0.000000E+00 +1797657,fr,1,3.950000E+00,6.441390E+00,5.093139E+01,5.000000E+00,Active Shallow Crust,1.289006E+02,8.999198E+01,0.000000E+00 +1797660,fr,1,4.050000E+00,6.441390E+00,5.093139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998928E+01,0.000000E+00 +1797674,fr,1,4.150000E+00,6.441390E+00,5.093139E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +1797686,fr,1,4.250000E+00,6.441390E+00,5.093139E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998865E+01,0.000000E+00 +1797696,fr,1,4.350000E+00,6.441390E+00,5.093139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1797697,fr,1,4.350000E+00,6.441390E+00,5.093139E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1797715,fr,1,4.450000E+00,6.441390E+00,5.093139E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,-9.000000E+01 +1797733,fr,1,4.650000E+00,6.441390E+00,5.093139E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +1797748,fr,1,4.750000E+00,6.441390E+00,5.093139E+01,1.500000E+01,Active Shallow Crust,2.400093E+02,5.800469E+01,0.000000E+00 +1797763,fr,1,4.850000E+00,6.441390E+00,5.093139E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,-9.000000E+01 +1798080,fr,1,3.550000E+00,-1.314520E+00,4.577838E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +1798081,fr,1,3.550000E+00,-1.314520E+00,4.577838E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +1798152,fr,1,4.150000E+00,-1.314520E+00,4.577838E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1798176,fr,1,4.350000E+00,-1.314520E+00,4.577838E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1798197,fr,1,4.450000E+00,-1.314520E+00,4.577838E+01,5.000000E+00,Active Shallow Crust,1.288925E+02,8.999376E+01,0.000000E+00 +1798320,fr,1,5.550000E+00,-1.314520E+00,4.577838E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1798560,fr,3,3.550000E+00,9.245400E-01,4.662851E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +1798566,fr,1,3.550000E+00,9.245400E-01,4.662851E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,-9.000000E+01 +1798569,fr,1,3.550000E+00,9.245400E-01,4.662851E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999394E+01,0.000000E+00 +1798570,fr,1,3.550000E+00,9.245400E-01,4.662851E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.999394E+01,0.000000E+00 +1798574,fr,2,3.650000E+00,9.245400E-01,4.662851E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1798578,fr,1,3.650000E+00,9.245400E-01,4.662851E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +1798584,fr,1,3.750000E+00,9.245400E-01,4.662851E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1798586,fr,1,3.750000E+00,9.245400E-01,4.662851E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1798588,fr,1,3.750000E+00,9.245400E-01,4.662851E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.801749E+01,0.000000E+00 +1798608,fr,2,3.950000E+00,9.245400E-01,4.662851E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1798613,fr,1,3.950000E+00,9.245400E-01,4.662851E+01,2.750000E+01,Active Shallow Crust,2.400198E+02,5.800498E+01,0.000000E+00 +1798617,fr,1,3.950000E+00,9.245400E-01,4.662851E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.999372E+01,0.000000E+00 +1798644,fr,1,4.250000E+00,9.245400E-01,4.662851E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1798645,fr,1,4.250000E+00,9.245400E-01,4.662851E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1798647,fr,1,4.250000E+00,9.245400E-01,4.662851E+01,5.000000E+00,Active Shallow Crust,2.400075E+02,5.799411E+01,0.000000E+00 +1798656,fr,1,4.350000E+00,9.245400E-01,4.662851E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1798657,fr,1,4.350000E+00,9.245400E-01,4.662851E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1798726,fr,1,4.850000E+00,9.245400E-01,4.662851E+01,1.500000E+01,Active Shallow Crust,1.288925E+02,8.998904E+01,0.000000E+00 +1799052,fr,1,3.650000E+00,2.857440E+00,4.418171E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1799053,fr,1,3.650000E+00,2.857440E+00,4.418171E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1799061,fr,2,3.650000E+00,2.857440E+00,4.418171E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.996348E+01,0.000000E+00 +1799076,fr,2,3.850000E+00,2.857440E+00,4.418171E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +1799086,fr,1,3.850000E+00,2.857440E+00,4.418171E+01,1.500000E+01,Active Shallow Crust,1.288959E+02,8.999360E+01,0.000000E+00 +1799088,fr,2,3.950000E+00,2.857440E+00,4.418171E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1799100,fr,2,4.050000E+00,2.857440E+00,4.418171E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1799136,fr,1,4.350000E+00,2.857440E+00,4.418171E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1799520,fr,5,3.550000E+00,7.179490E+00,4.463516E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999282E+01,0.000000E+00 +1799521,fr,3,3.550000E+00,7.179490E+00,4.463516E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999282E+01,0.000000E+00 +1799522,fr,2,3.550000E+00,7.179490E+00,4.463516E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999282E+01,0.000000E+00 +1799529,fr,1,3.550000E+00,7.179490E+00,4.463516E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999641E+01,0.000000E+00 +1799530,fr,1,3.550000E+00,7.179490E+00,4.463516E+01,1.500000E+01,Active Shallow Crust,1.288958E+02,8.999641E+01,0.000000E+00 +1799532,fr,3,3.650000E+00,7.179490E+00,4.463516E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998721E+01,0.000000E+00 +1799533,fr,1,3.650000E+00,7.179490E+00,4.463516E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998721E+01,0.000000E+00 +1799536,fr,1,3.650000E+00,7.179490E+00,4.463516E+01,1.500000E+01,Active Shallow Crust,2.400009E+02,5.801224E+01,0.000000E+00 +1799538,fr,3,3.650000E+00,7.179490E+00,4.463516E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998706E+01,-9.000000E+01 +1799541,fr,1,3.650000E+00,7.179490E+00,4.463516E+01,5.000000E+00,Active Shallow Crust,1.289011E+02,8.996349E+01,0.000000E+00 +1799543,fr,1,3.650000E+00,7.179490E+00,4.463516E+01,2.750000E+01,Active Shallow Crust,1.289011E+02,8.996349E+01,0.000000E+00 +1799544,fr,2,3.750000E+00,7.179490E+00,4.463516E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998860E+01,0.000000E+00 +1799556,fr,3,3.850000E+00,7.179490E+00,4.463516E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +1799568,fr,3,3.950000E+00,7.179490E+00,4.463516E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +1799569,fr,1,3.950000E+00,7.179490E+00,4.463516E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +1799570,fr,1,3.950000E+00,7.179490E+00,4.463516E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +1799571,fr,1,3.950000E+00,7.179490E+00,4.463516E+01,5.000000E+00,Active Shallow Crust,2.400188E+02,5.800487E+01,0.000000E+00 +1799583,fr,1,4.050000E+00,7.179490E+00,4.463516E+01,5.000000E+00,Active Shallow Crust,2.400055E+02,5.800588E+01,0.000000E+00 +1799586,fr,1,4.050000E+00,7.179490E+00,4.463516E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999184E+01,-9.000000E+01 +1799592,fr,5,4.150000E+00,7.179490E+00,4.463516E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +1799595,fr,2,4.150000E+00,7.179490E+00,4.463516E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799734E+01,0.000000E+00 +1799596,fr,1,4.150000E+00,7.179490E+00,4.463516E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.799736E+01,0.000000E+00 +1799598,fr,1,4.150000E+00,7.179490E+00,4.463516E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998908E+01,-9.000000E+01 +1799601,fr,2,4.150000E+00,7.179490E+00,4.463516E+01,5.000000E+00,Active Shallow Crust,1.288985E+02,8.999281E+01,0.000000E+00 +1799604,fr,2,4.250000E+00,7.179490E+00,4.463516E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1799608,fr,1,4.250000E+00,7.179490E+00,4.463516E+01,1.500000E+01,Active Shallow Crust,2.400072E+02,5.799408E+01,0.000000E+00 +1799620,fr,1,4.350000E+00,7.179490E+00,4.463516E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.799570E+01,0.000000E+00 +1799634,fr,1,4.450000E+00,7.179490E+00,4.463516E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,-9.000000E+01 +1799652,fr,1,4.650000E+00,7.179490E+00,4.463516E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1799653,fr,1,4.650000E+00,7.179490E+00,4.463516E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1799667,fr,1,4.750000E+00,7.179490E+00,4.463516E+01,5.000000E+00,Active Shallow Crust,2.400070E+02,5.800425E+01,0.000000E+00 +1799694,fr,1,4.950000E+00,7.179490E+00,4.463516E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,-9.000000E+01 +1799703,fr,1,5.050000E+00,7.179490E+00,4.463516E+01,5.000000E+00,Active Shallow Crust,2.400211E+02,5.799742E+01,0.000000E+00 +1799708,fr,1,5.050000E+00,7.179490E+00,4.463516E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,-9.000000E+01 +1799736,fr,1,5.350000E+00,7.179490E+00,4.463516E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1800000,fr,1,3.550000E+00,7.574370E+00,4.494438E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999286E+01,0.000000E+00 +1800001,fr,2,3.550000E+00,7.574370E+00,4.494438E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999286E+01,0.000000E+00 +1800002,fr,1,3.550000E+00,7.574370E+00,4.494438E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999286E+01,0.000000E+00 +1800006,fr,1,3.550000E+00,7.574370E+00,4.494438E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999278E+01,-9.000000E+01 +1800007,fr,1,3.550000E+00,7.574370E+00,4.494438E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999278E+01,-9.000000E+01 +1800013,fr,1,3.650000E+00,7.574370E+00,4.494438E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998727E+01,0.000000E+00 +1800014,fr,1,3.650000E+00,7.574370E+00,4.494438E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998727E+01,0.000000E+00 +1800018,fr,1,3.650000E+00,7.574370E+00,4.494438E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998713E+01,-9.000000E+01 +1800021,fr,1,3.650000E+00,7.574370E+00,4.494438E+01,5.000000E+00,Active Shallow Crust,1.289009E+02,8.996349E+01,0.000000E+00 +1800024,fr,2,3.750000E+00,7.574370E+00,4.494438E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +1800025,fr,1,3.750000E+00,7.574370E+00,4.494438E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +1800027,fr,1,3.750000E+00,7.574370E+00,4.494438E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.801683E+01,0.000000E+00 +1800036,fr,1,3.850000E+00,7.574370E+00,4.494438E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1800037,fr,2,3.850000E+00,7.574370E+00,4.494438E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1800038,fr,1,3.850000E+00,7.574370E+00,4.494438E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1800058,fr,1,3.950000E+00,7.574370E+00,4.494438E+01,1.500000E+01,Active Shallow Crust,1.289006E+02,8.999325E+01,0.000000E+00 +1800060,fr,2,4.050000E+00,7.574370E+00,4.494438E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999197E+01,0.000000E+00 +1800061,fr,1,4.050000E+00,7.574370E+00,4.494438E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999197E+01,0.000000E+00 +1800072,fr,1,4.150000E+00,7.574370E+00,4.494438E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1800073,fr,1,4.150000E+00,7.574370E+00,4.494438E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1800076,fr,1,4.150000E+00,7.574370E+00,4.494438E+01,1.500000E+01,Active Shallow Crust,2.400080E+02,5.799763E+01,0.000000E+00 +1800082,fr,2,4.150000E+00,7.574370E+00,4.494438E+01,1.500000E+01,Active Shallow Crust,1.288976E+02,8.999464E+01,0.000000E+00 +1800085,fr,1,4.250000E+00,7.574370E+00,4.494438E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1800089,fr,1,4.250000E+00,7.574370E+00,4.494438E+01,2.750000E+01,Active Shallow Crust,2.400078E+02,5.799400E+01,0.000000E+00 +1800096,fr,1,4.350000E+00,7.574370E+00,4.494438E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998863E+01,0.000000E+00 +1800098,fr,1,4.350000E+00,7.574370E+00,4.494438E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998863E+01,0.000000E+00 +1800108,fr,1,4.450000E+00,7.574370E+00,4.494438E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1800133,fr,1,4.650000E+00,7.574370E+00,4.494438E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1800205,fr,1,5.250000E+00,7.574370E+00,4.494438E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1800489,fr,1,3.550000E+00,7.293470E+00,5.004456E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999352E+01,0.000000E+00 +1800504,fr,2,3.750000E+00,7.293470E+00,5.004456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1800510,fr,1,3.750000E+00,7.293470E+00,5.004456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +1800531,fr,1,3.950000E+00,7.293470E+00,5.004456E+01,5.000000E+00,Active Shallow Crust,2.400199E+02,5.800555E+01,0.000000E+00 +1800534,fr,1,3.950000E+00,7.293470E+00,5.004456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999173E+01,-9.000000E+01 +1800541,fr,1,4.050000E+00,7.293470E+00,5.004456E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +1800555,fr,1,4.150000E+00,7.293470E+00,5.004456E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.799764E+01,0.000000E+00 +1800582,fr,1,4.350000E+00,7.293470E+00,5.004456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,-9.000000E+01 +1800975,fr,1,3.650000E+00,1.981610E+00,4.985227E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801279E+01,0.000000E+00 +1801008,fr,1,3.950000E+00,1.981610E+00,4.985227E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1801149,fr,1,5.050000E+00,1.981610E+00,4.985227E+01,5.000000E+00,Active Shallow Crust,1.288839E+02,8.999042E+01,0.000000E+00 +1801443,fr,1,3.550000E+00,3.954830E+00,5.220722E+01,5.000000E+00,Active Shallow Crust,2.400129E+02,5.799802E+01,0.000000E+00 +1801453,fr,1,3.650000E+00,3.954830E+00,5.220722E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +1801487,fr,1,3.850000E+00,3.954830E+00,5.220722E+01,2.750000E+01,Active Shallow Crust,1.288952E+02,8.999344E+01,0.000000E+00 +1801572,fr,1,4.650000E+00,3.954830E+00,5.220722E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +1801576,fr,1,4.650000E+00,3.954830E+00,5.220722E+01,1.500000E+01,Active Shallow Crust,2.400129E+02,5.799457E+01,0.000000E+00 +1801813,fr,1,6.650000E+00,3.954830E+00,5.220722E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1801920,fr,2,3.550000E+00,1.440430E+00,4.930706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1801921,fr,1,3.550000E+00,1.440430E+00,4.930706E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1801932,fr,1,3.650000E+00,1.440430E+00,4.930706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1801945,fr,1,3.750000E+00,1.440430E+00,4.930706E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1801968,fr,1,3.950000E+00,1.440430E+00,4.930706E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +1802404,fr,2,3.550000E+00,1.663910E+00,4.332878E+01,1.500000E+01,Active Shallow Crust,2.400120E+02,5.799802E+01,0.000000E+00 +1802414,fr,1,3.650000E+00,1.663910E+00,4.332878E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1802466,fr,1,4.050000E+00,1.663910E+00,4.332878E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,-9.000000E+01 +1802581,fr,1,5.050000E+00,1.663910E+00,4.332878E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1802989,fr,1,4.450000E+00,2.819540E+00,5.345674E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +1803384,fr,1,3.750000E+00,3.470320E+00,5.182132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1803387,fr,1,3.750000E+00,3.470320E+00,5.182132E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.801746E+01,0.000000E+00 +1803852,fr,2,3.650000E+00,8.223650E+00,4.501509E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998730E+01,0.000000E+00 +1803855,fr,1,3.650000E+00,8.223650E+00,4.501509E+01,5.000000E+00,Active Shallow Crust,2.400000E+02,5.801413E+01,0.000000E+00 +1803867,fr,1,3.750000E+00,8.223650E+00,4.501509E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.801756E+01,0.000000E+00 +1803876,fr,2,3.850000E+00,8.223650E+00,4.501509E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1803937,fr,1,4.350000E+00,8.223650E+00,4.501509E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998865E+01,0.000000E+00 +1803960,fr,2,4.550000E+00,8.223650E+00,4.501509E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999098E+01,0.000000E+00 +1804332,fr,1,3.650000E+00,3.434380E+00,5.079899E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998864E+01,0.000000E+00 +1804345,fr,1,3.750000E+00,3.434380E+00,5.079899E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1804383,fr,1,4.050000E+00,3.434380E+00,5.079899E+01,5.000000E+00,Active Shallow Crust,2.400067E+02,5.800595E+01,0.000000E+00 +1804405,fr,1,4.250000E+00,3.434380E+00,5.079899E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1804800,fr,2,3.550000E+00,2.904460E+00,5.130052E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +1804812,fr,1,3.650000E+00,2.904460E+00,5.130052E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998876E+01,0.000000E+00 +1804813,fr,1,3.650000E+00,2.904460E+00,5.130052E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998876E+01,0.000000E+00 +1804827,fr,1,3.750000E+00,2.904460E+00,5.130052E+01,5.000000E+00,Active Shallow Crust,2.400092E+02,5.801764E+01,0.000000E+00 +1804836,fr,2,3.850000E+00,2.904460E+00,5.130052E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +1804861,fr,1,4.050000E+00,2.904460E+00,5.130052E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +1804909,fr,1,4.450000E+00,2.904460E+00,5.130052E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1805178,fr,1,6.650000E+00,2.904474E+00,5.130052E+01,1.056744E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,-9.000000E+01 +1805281,fr,2,3.550000E+00,9.015440E+00,4.948014E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998690E+01,0.000000E+00 +1805286,fr,1,3.550000E+00,9.015440E+00,4.948014E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998675E+01,-9.000000E+01 +1805292,fr,1,3.650000E+00,9.015440E+00,4.948014E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998832E+01,0.000000E+00 +1805304,fr,1,3.750000E+00,9.015440E+00,4.948014E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1805305,fr,1,3.750000E+00,9.015440E+00,4.948014E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1805316,fr,2,3.850000E+00,9.015440E+00,4.948014E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +1805328,fr,1,3.950000E+00,9.015440E+00,4.948014E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999173E+01,0.000000E+00 +1805340,fr,1,4.050000E+00,9.015440E+00,4.948014E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999263E+01,0.000000E+00 +1805388,fr,1,4.450000E+00,9.015440E+00,4.948014E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +1805391,fr,1,4.450000E+00,9.015440E+00,4.948014E+01,5.000000E+00,Active Shallow Crust,2.400068E+02,5.799472E+01,0.000000E+00 +1805671,fr,1,6.750000E+00,9.015440E+00,4.948014E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +1805760,fr,2,3.550000E+00,4.260440E+00,4.465453E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999283E+01,0.000000E+00 +1805770,fr,1,3.550000E+00,4.260440E+00,4.465453E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.999283E+01,0.000000E+00 +1805772,fr,1,3.650000E+00,4.260440E+00,4.465453E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998721E+01,0.000000E+00 +1805777,fr,1,3.650000E+00,4.260440E+00,4.465453E+01,2.750000E+01,Active Shallow Crust,2.400006E+02,5.801295E+01,0.000000E+00 +1805784,fr,2,3.750000E+00,4.260440E+00,4.465453E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998860E+01,0.000000E+00 +1805796,fr,1,3.850000E+00,4.260440E+00,4.465453E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1805799,fr,1,3.850000E+00,4.260440E+00,4.465453E+01,5.000000E+00,Active Shallow Crust,2.400100E+02,5.799746E+01,0.000000E+00 +1805808,fr,1,3.950000E+00,4.260440E+00,4.465453E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +1805821,fr,1,4.050000E+00,4.260440E+00,4.465453E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999194E+01,0.000000E+00 +1805832,fr,1,4.150000E+00,4.260440E+00,4.465453E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +1805836,fr,1,4.150000E+00,4.260440E+00,4.465453E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.799722E+01,0.000000E+00 +1805843,fr,1,4.150000E+00,4.260440E+00,4.465453E+01,2.750000E+01,Active Shallow Crust,1.288988E+02,8.999281E+01,0.000000E+00 +1805848,fr,1,4.250000E+00,4.260440E+00,4.465453E+01,1.500000E+01,Active Shallow Crust,2.400069E+02,5.799419E+01,0.000000E+00 +1805881,fr,1,4.550000E+00,4.260440E+00,4.465453E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +1805890,fr,1,4.550000E+00,4.260440E+00,4.465453E+01,1.500000E+01,Active Shallow Crust,1.288945E+02,8.998554E+01,0.000000E+00 +1805950,fr,1,5.050000E+00,4.260440E+00,4.465453E+01,1.500000E+01,Active Shallow Crust,1.288860E+02,8.999081E+01,0.000000E+00 +1806282,fr,1,3.850000E+00,1.243080E+00,4.396055E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,-9.000000E+01 +1806296,fr,1,3.950000E+00,1.243080E+00,4.396055E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998958E+01,-9.000000E+01 +1806336,fr,1,4.350000E+00,1.243080E+00,4.396055E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1806729,fr,1,3.550000E+00,3.862540E+00,4.327360E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999449E+01,0.000000E+00 +1806732,fr,1,3.650000E+00,3.862540E+00,4.327360E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1806742,fr,1,3.650000E+00,3.862540E+00,4.327360E+01,1.500000E+01,Active Shallow Crust,1.289004E+02,8.996346E+01,0.000000E+00 +1806744,fr,2,3.750000E+00,3.862540E+00,4.327360E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999125E+01,0.000000E+00 +1806780,fr,1,4.050000E+00,3.862540E+00,4.327360E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1806784,fr,1,4.050000E+00,3.862540E+00,4.327360E+01,1.500000E+01,Active Shallow Crust,2.400054E+02,5.800589E+01,0.000000E+00 +1807202,fr,1,3.550000E+00,3.232970E+00,4.211127E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +1807206,fr,1,3.550000E+00,3.232970E+00,4.211127E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998865E+01,-9.000000E+01 +1807213,fr,1,3.650000E+00,3.232970E+00,4.211127E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1807221,fr,1,3.650000E+00,3.232970E+00,4.211127E+01,5.000000E+00,Active Shallow Crust,1.289011E+02,8.996344E+01,0.000000E+00 +1807225,fr,1,3.750000E+00,3.232970E+00,4.211127E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999109E+01,0.000000E+00 +1807261,fr,1,4.050000E+00,3.232970E+00,4.211127E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +1807281,fr,1,4.150000E+00,3.232970E+00,4.211127E+01,5.000000E+00,Active Shallow Crust,1.288981E+02,8.999344E+01,0.000000E+00 +1807299,fr,1,4.350000E+00,3.232970E+00,4.211127E+01,5.000000E+00,Active Shallow Crust,2.400072E+02,5.799576E+01,0.000000E+00 +1807308,fr,1,4.450000E+00,3.232970E+00,4.211127E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +1807705,fr,1,3.750000E+00,-4.640000E-02,4.138312E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1807729,fr,1,3.950000E+00,-4.640000E-02,4.138312E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1808160,fr,1,3.550000E+00,7.935160E+00,4.886296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998673E+01,0.000000E+00 +1808163,fr,1,3.550000E+00,7.935160E+00,4.886296E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799799E+01,0.000000E+00 +1808166,fr,1,3.550000E+00,7.935160E+00,4.886296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999329E+01,-9.000000E+01 +1808172,fr,2,3.650000E+00,7.935160E+00,4.886296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998817E+01,0.000000E+00 +1808176,fr,1,3.650000E+00,7.935160E+00,4.886296E+01,1.500000E+01,Active Shallow Crust,2.400022E+02,5.801203E+01,0.000000E+00 +1808178,fr,1,3.650000E+00,7.935160E+00,4.886296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998804E+01,-9.000000E+01 +1808190,fr,1,3.750000E+00,7.935160E+00,4.886296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998934E+01,-9.000000E+01 +1808196,fr,1,3.850000E+00,7.935160E+00,4.886296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999061E+01,0.000000E+00 +1808206,fr,2,3.850000E+00,7.935160E+00,4.886296E+01,1.500000E+01,Active Shallow Crust,1.288954E+02,8.999296E+01,0.000000E+00 +1808220,fr,3,4.050000E+00,7.935160E+00,4.886296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998881E+01,0.000000E+00 +1808232,fr,1,4.150000E+00,7.935160E+00,4.886296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1808241,fr,1,4.150000E+00,7.935160E+00,4.886296E+01,5.000000E+00,Active Shallow Crust,1.288973E+02,8.999335E+01,0.000000E+00 +1808256,fr,2,4.350000E+00,7.935160E+00,4.886296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1808262,fr,1,4.350000E+00,7.935160E+00,4.886296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998931E+01,-9.000000E+01 +1808280,fr,1,4.550000E+00,7.935160E+00,4.886296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1808317,fr,1,4.850000E+00,7.935160E+00,4.886296E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +1808376,fr,1,5.350000E+00,7.935160E+00,4.886296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1808640,fr,1,3.550000E+00,4.592630E+00,4.522653E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999290E+01,0.000000E+00 +1808652,fr,1,3.650000E+00,4.592630E+00,4.522653E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998734E+01,0.000000E+00 +1808655,fr,1,3.650000E+00,4.592630E+00,4.522653E+01,5.000000E+00,Active Shallow Crust,2.400016E+02,5.801244E+01,0.000000E+00 +1808658,fr,2,3.650000E+00,4.592630E+00,4.522653E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998719E+01,-9.000000E+01 +1808664,fr,1,3.750000E+00,4.592630E+00,4.522653E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +1808670,fr,1,3.750000E+00,4.592630E+00,4.522653E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,-9.000000E+01 +1808676,fr,1,3.850000E+00,4.592630E+00,4.522653E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1808678,fr,1,3.850000E+00,4.592630E+00,4.522653E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1808701,fr,1,4.050000E+00,4.592630E+00,4.522653E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998802E+01,0.000000E+00 +1808718,fr,1,4.150000E+00,4.592630E+00,4.522653E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,-9.000000E+01 +1808731,fr,1,4.250000E+00,4.592630E+00,4.522653E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,-9.000000E+01 +1808742,fr,1,4.350000E+00,4.592630E+00,4.522653E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999142E+01,-9.000000E+01 +1808748,fr,1,4.450000E+00,4.592630E+00,4.522653E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1808784,fr,1,4.750000E+00,4.592630E+00,4.522653E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +1809120,fr,4,3.550000E+00,8.014440E+00,4.746923E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998637E+01,0.000000E+00 +1809121,fr,1,3.550000E+00,8.014440E+00,4.746923E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998637E+01,0.000000E+00 +1809122,fr,1,3.550000E+00,8.014440E+00,4.746923E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998637E+01,0.000000E+00 +1809123,fr,1,3.550000E+00,8.014440E+00,4.746923E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.799839E+01,0.000000E+00 +1809125,fr,1,3.550000E+00,8.014440E+00,4.746923E+01,2.750000E+01,Active Shallow Crust,2.400106E+02,5.799829E+01,0.000000E+00 +1809126,fr,1,3.550000E+00,8.014440E+00,4.746923E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998621E+01,-9.000000E+01 +1809127,fr,1,3.550000E+00,8.014440E+00,4.746923E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998621E+01,-9.000000E+01 +1809129,fr,2,3.550000E+00,8.014440E+00,4.746923E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,9.000000E+01,0.000000E+00 +1809132,fr,8,3.650000E+00,8.014440E+00,4.746923E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998785E+01,0.000000E+00 +1809135,fr,2,3.650000E+00,8.014440E+00,4.746923E+01,5.000000E+00,Active Shallow Crust,2.399990E+02,5.801498E+01,0.000000E+00 +1809144,fr,4,3.750000E+00,8.014440E+00,4.746923E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +1809146,fr,1,3.750000E+00,8.014440E+00,4.746923E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +1809147,fr,1,3.750000E+00,8.014440E+00,4.746923E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.801916E+01,0.000000E+00 +1809150,fr,2,3.750000E+00,8.014440E+00,4.746923E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,-9.000000E+01 +1809156,fr,1,3.850000E+00,8.014440E+00,4.746923E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +1809165,fr,1,3.850000E+00,8.014440E+00,4.746923E+01,5.000000E+00,Active Shallow Crust,1.288939E+02,8.999518E+01,0.000000E+00 +1809168,fr,3,3.950000E+00,8.014440E+00,4.746923E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999139E+01,0.000000E+00 +1809178,fr,1,3.950000E+00,8.014440E+00,4.746923E+01,1.500000E+01,Active Shallow Crust,1.289001E+02,8.999570E+01,0.000000E+00 +1809180,fr,5,4.050000E+00,8.014440E+00,4.746923E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999233E+01,0.000000E+00 +1809181,fr,3,4.050000E+00,8.014440E+00,4.746923E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999233E+01,0.000000E+00 +1809183,fr,1,4.050000E+00,8.014440E+00,4.746923E+01,5.000000E+00,Active Shallow Crust,2.400065E+02,5.800619E+01,0.000000E+00 +1809190,fr,1,4.050000E+00,8.014440E+00,4.746923E+01,1.500000E+01,Active Shallow Crust,1.288904E+02,8.999233E+01,0.000000E+00 +1809192,fr,3,4.150000E+00,8.014440E+00,4.746923E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999316E+01,0.000000E+00 +1809193,fr,1,4.150000E+00,8.014440E+00,4.746923E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999316E+01,0.000000E+00 +1809203,fr,1,4.150000E+00,8.014440E+00,4.746923E+01,2.750000E+01,Active Shallow Crust,1.288963E+02,8.999317E+01,0.000000E+00 +1809216,fr,4,4.350000E+00,8.014440E+00,4.746923E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +1809222,fr,1,4.350000E+00,8.014440E+00,4.746923E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998902E+01,-9.000000E+01 +1809228,fr,1,4.450000E+00,8.014440E+00,4.746923E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1809240,fr,1,4.550000E+00,8.014440E+00,4.746923E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999138E+01,0.000000E+00 +1809253,fr,2,4.650000E+00,8.014440E+00,4.746923E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998847E+01,0.000000E+00 +1809266,fr,1,4.750000E+00,8.014440E+00,4.746923E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1809273,fr,1,4.750000E+00,8.014440E+00,4.746923E+01,5.000000E+00,Active Shallow Crust,1.288885E+02,8.998777E+01,0.000000E+00 +1809600,fr,1,3.550000E+00,-1.558690E+00,4.765524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1809601,fr,1,3.550000E+00,-1.558690E+00,4.765524E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1809612,fr,1,3.650000E+00,-1.558690E+00,4.765524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +1809624,fr,2,3.750000E+00,-1.558690E+00,4.765524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +1809628,fr,1,3.750000E+00,-1.558690E+00,4.765524E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.801766E+01,0.000000E+00 +1809633,fr,1,3.750000E+00,-1.558690E+00,4.765524E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.996739E+01,0.000000E+00 +1809636,fr,1,3.850000E+00,-1.558690E+00,4.765524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +1809648,fr,1,3.950000E+00,-1.558690E+00,4.765524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1809650,fr,1,3.950000E+00,-1.558690E+00,4.765524E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1809684,fr,2,4.250000E+00,-1.558690E+00,4.765524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1809804,fr,1,5.250000E+00,-1.558690E+00,4.765524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1810080,fr,2,3.550000E+00,-6.249580E+00,4.828314E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999329E+01,0.000000E+00 +1810095,fr,1,3.650000E+00,-6.249580E+00,4.828314E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801258E+01,0.000000E+00 +1810602,fr,1,3.850000E+00,-2.096570E+00,4.377920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,-9.000000E+01 +1810603,fr,1,3.850000E+00,-2.096570E+00,4.377920E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998957E+01,-9.000000E+01 +1811041,fr,1,3.550000E+00,1.971700E-01,5.185786E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1811052,fr,1,3.650000E+00,1.971700E-01,5.185786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1811064,fr,1,3.750000E+00,1.971700E-01,5.185786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1811077,fr,1,3.850000E+00,1.971700E-01,5.185786E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1811118,fr,1,4.150000E+00,1.971700E-01,5.185786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +1811158,fr,1,4.450000E+00,1.971700E-01,5.185786E+01,1.500000E+01,Active Shallow Crust,1.288909E+02,8.999371E+01,0.000000E+00 +1811520,fr,1,3.550000E+00,-1.351600E-01,4.948886E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1811530,fr,1,3.550000E+00,-1.351600E-01,4.948886E+01,1.500000E+01,Active Shallow Crust,1.288959E+02,8.999376E+01,0.000000E+00 +1811532,fr,3,3.650000E+00,-1.351600E-01,4.948886E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1811535,fr,1,3.650000E+00,-1.351600E-01,4.948886E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801298E+01,0.000000E+00 +1811536,fr,1,3.650000E+00,-1.351600E-01,4.948886E+01,1.500000E+01,Active Shallow Crust,2.400014E+02,5.801298E+01,0.000000E+00 +1811538,fr,1,3.650000E+00,-1.351600E-01,4.948886E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +1811544,fr,1,3.750000E+00,-1.351600E-01,4.948886E+01,5.000000E+00,Active Shallow Crust,3.599999E+02,8.999008E+01,0.000000E+00 +1811569,fr,1,3.950000E+00,-1.351600E-01,4.948886E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1811571,fr,1,3.950000E+00,-1.351600E-01,4.948886E+01,5.000000E+00,Active Shallow Crust,2.400203E+02,5.800505E+01,0.000000E+00 +1811580,fr,1,4.050000E+00,-1.351600E-01,4.948886E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1811590,fr,1,4.050000E+00,-1.351600E-01,4.948886E+01,1.500000E+01,Active Shallow Crust,1.288901E+02,8.999373E+01,0.000000E+00 +1811628,fr,1,4.450000E+00,-1.351600E-01,4.948886E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1811679,fr,1,4.850000E+00,-1.351600E-01,4.948886E+01,5.000000E+00,Active Shallow Crust,2.400184E+02,5.800256E+01,0.000000E+00 +1812012,fr,2,3.650000E+00,4.003790E+00,4.182072E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999330E+01,0.000000E+00 +1812016,fr,1,3.650000E+00,4.003790E+00,4.182072E+01,1.500000E+01,Active Shallow Crust,2.400014E+02,5.801176E+01,0.000000E+00 +1812018,fr,1,3.650000E+00,4.003790E+00,4.182072E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999323E+01,-9.000000E+01 +1812024,fr,1,3.750000E+00,4.003790E+00,4.182072E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998806E+01,0.000000E+00 +1812073,fr,1,4.150000E+00,4.003790E+00,4.182072E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998870E+01,0.000000E+00 +1812096,fr,1,4.350000E+00,4.003790E+00,4.182072E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999103E+01,0.000000E+00 +1812097,fr,1,4.350000E+00,4.003790E+00,4.182072E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999103E+01,0.000000E+00 +1812516,fr,1,3.850000E+00,5.211700E-01,4.403584E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +1813440,fr,8,3.550000E+00,5.978790E+00,5.087354E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998727E+01,0.000000E+00 +1813441,fr,1,3.550000E+00,5.978790E+00,5.087354E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998727E+01,0.000000E+00 +1813442,fr,1,3.550000E+00,5.978790E+00,5.087354E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998727E+01,0.000000E+00 +1813446,fr,3,3.550000E+00,5.978790E+00,5.087354E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998713E+01,-9.000000E+01 +1813449,fr,2,3.550000E+00,5.978790E+00,5.087354E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.999364E+01,0.000000E+00 +1813450,fr,1,3.550000E+00,5.978790E+00,5.087354E+01,1.500000E+01,Active Shallow Crust,1.288968E+02,8.999364E+01,0.000000E+00 +1813452,fr,8,3.650000E+00,5.978790E+00,5.087354E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +1813453,fr,3,3.650000E+00,5.978790E+00,5.087354E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +1813454,fr,1,3.650000E+00,5.978790E+00,5.087354E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +1813455,fr,2,3.650000E+00,5.978790E+00,5.087354E+01,5.000000E+00,Active Shallow Crust,2.400015E+02,5.801247E+01,0.000000E+00 +1813458,fr,1,3.650000E+00,5.978790E+00,5.087354E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998853E+01,-9.000000E+01 +1813462,fr,1,3.650000E+00,5.978790E+00,5.087354E+01,1.500000E+01,Active Shallow Crust,1.288993E+02,8.996361E+01,0.000000E+00 +1813464,fr,5,3.750000E+00,5.978790E+00,5.087354E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1813465,fr,1,3.750000E+00,5.978790E+00,5.087354E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1813467,fr,2,3.750000E+00,5.978790E+00,5.087354E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.801741E+01,0.000000E+00 +1813468,fr,1,3.750000E+00,5.978790E+00,5.087354E+01,1.500000E+01,Active Shallow Crust,2.400087E+02,5.801741E+01,0.000000E+00 +1813470,fr,1,3.750000E+00,5.978790E+00,5.087354E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,-9.000000E+01 +1813473,fr,1,3.750000E+00,5.978790E+00,5.087354E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.996708E+01,0.000000E+00 +1813474,fr,1,3.750000E+00,5.978790E+00,5.087354E+01,1.500000E+01,Active Shallow Crust,1.288968E+02,8.996708E+01,0.000000E+00 +1813476,fr,3,3.850000E+00,5.978790E+00,5.087354E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999099E+01,0.000000E+00 +1813477,fr,1,3.850000E+00,5.978790E+00,5.087354E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999099E+01,0.000000E+00 +1813478,fr,1,3.850000E+00,5.978790E+00,5.087354E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999099E+01,0.000000E+00 +1813485,fr,2,3.850000E+00,5.978790E+00,5.087354E+01,5.000000E+00,Active Shallow Crust,1.288942E+02,8.999324E+01,0.000000E+00 +1813488,fr,1,3.950000E+00,5.978790E+00,5.087354E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999197E+01,0.000000E+00 +1813500,fr,1,4.050000E+00,5.978790E+00,5.087354E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1813501,fr,1,4.050000E+00,5.978790E+00,5.087354E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1813502,fr,1,4.050000E+00,5.978790E+00,5.087354E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1813509,fr,1,4.050000E+00,5.978790E+00,5.087354E+01,5.000000E+00,Active Shallow Crust,1.288892E+02,8.999464E+01,0.000000E+00 +1813513,fr,2,4.150000E+00,5.978790E+00,5.087354E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1813514,fr,1,4.150000E+00,5.978790E+00,5.087354E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1813515,fr,1,4.150000E+00,5.978790E+00,5.087354E+01,5.000000E+00,Active Shallow Crust,2.400096E+02,5.799724E+01,0.000000E+00 +1813524,fr,3,4.250000E+00,5.978790E+00,5.087354E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998863E+01,0.000000E+00 +1813533,fr,1,4.250000E+00,5.978790E+00,5.087354E+01,5.000000E+00,Active Shallow Crust,1.288941E+02,8.998064E+01,0.000000E+00 +1813548,fr,1,4.450000E+00,5.978790E+00,5.087354E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +1813551,fr,1,4.450000E+00,5.978790E+00,5.087354E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.799453E+01,0.000000E+00 +1813571,fr,1,4.550000E+00,5.978790E+00,5.087354E+01,2.750000E+01,Active Shallow Crust,1.288926E+02,8.998589E+01,0.000000E+00 +1813572,fr,1,4.650000E+00,5.978790E+00,5.087354E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +1813574,fr,1,4.650000E+00,5.978790E+00,5.087354E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +1813579,fr,1,4.650000E+00,5.978790E+00,5.087354E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998911E+01,-9.000000E+01 +1813581,fr,1,4.650000E+00,5.978790E+00,5.087354E+01,5.000000E+00,Active Shallow Crust,1.288897E+02,8.998701E+01,0.000000E+00 +1813584,fr,1,4.750000E+00,5.978790E+00,5.087354E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +1813586,fr,1,4.750000E+00,5.978790E+00,5.087354E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +1813596,fr,1,4.850000E+00,5.978790E+00,5.087354E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1813651,fr,1,5.250000E+00,5.978790E+00,5.087354E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +1813920,fr,3,3.550000E+00,-3.794040E+00,4.343968E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +1813932,fr,1,3.650000E+00,-3.794040E+00,4.343968E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1813944,fr,1,3.750000E+00,-3.794040E+00,4.343968E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999128E+01,0.000000E+00 +1813945,fr,1,3.750000E+00,-3.794040E+00,4.343968E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999128E+01,0.000000E+00 +1813958,fr,1,3.850000E+00,-3.794040E+00,4.343968E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +1814004,fr,1,4.250000E+00,-3.794040E+00,4.343968E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1814028,fr,1,4.450000E+00,-3.794040E+00,4.343968E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +1814409,fr,1,3.550000E+00,4.175610E+00,5.220885E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.999382E+01,0.000000E+00 +1814424,fr,1,3.750000E+00,4.175610E+00,5.220885E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1815360,fr,6,3.550000E+00,8.914200E+00,4.845880E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998663E+01,0.000000E+00 +1815362,fr,2,3.550000E+00,8.914200E+00,4.845880E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998663E+01,0.000000E+00 +1815364,fr,1,3.550000E+00,8.914200E+00,4.845880E+01,1.500000E+01,Active Shallow Crust,2.400114E+02,5.799862E+01,0.000000E+00 +1815366,fr,1,3.550000E+00,8.914200E+00,4.845880E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998647E+01,-9.000000E+01 +1815369,fr,4,3.550000E+00,8.914200E+00,4.845880E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.999332E+01,0.000000E+00 +1815370,fr,1,3.550000E+00,8.914200E+00,4.845880E+01,1.500000E+01,Active Shallow Crust,1.288972E+02,8.999332E+01,0.000000E+00 +1815372,fr,3,3.650000E+00,8.914200E+00,4.845880E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +1815373,fr,1,3.650000E+00,8.914200E+00,4.845880E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +1815374,fr,1,3.650000E+00,8.914200E+00,4.845880E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +1815376,fr,1,3.650000E+00,8.914200E+00,4.845880E+01,1.500000E+01,Active Shallow Crust,2.400022E+02,5.801074E+01,0.000000E+00 +1815378,fr,1,3.650000E+00,8.914200E+00,4.845880E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998795E+01,-9.000000E+01 +1815381,fr,1,3.650000E+00,8.914200E+00,4.845880E+01,5.000000E+00,Active Shallow Crust,1.288999E+02,8.996356E+01,0.000000E+00 +1815384,fr,5,3.750000E+00,8.914200E+00,4.845880E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +1815385,fr,2,3.750000E+00,8.914200E+00,4.845880E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +1815386,fr,1,3.750000E+00,8.914200E+00,4.845880E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +1815387,fr,3,3.750000E+00,8.914200E+00,4.845880E+01,5.000000E+00,Active Shallow Crust,2.400098E+02,5.801741E+01,0.000000E+00 +1815389,fr,1,3.750000E+00,8.914200E+00,4.845880E+01,2.750000E+01,Active Shallow Crust,2.400098E+02,5.801741E+01,0.000000E+00 +1815396,fr,2,3.850000E+00,8.914200E+00,4.845880E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +1815397,fr,1,3.850000E+00,8.914200E+00,4.845880E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +1815402,fr,1,3.850000E+00,8.914200E+00,4.845880E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,-9.000000E+01 +1815403,fr,1,3.850000E+00,8.914200E+00,4.845880E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,-9.000000E+01 +1815420,fr,1,4.050000E+00,8.914200E+00,4.845880E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999248E+01,0.000000E+00 +1815422,fr,2,4.050000E+00,8.914200E+00,4.845880E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999248E+01,0.000000E+00 +1815430,fr,1,4.050000E+00,8.914200E+00,4.845880E+01,1.500000E+01,Active Shallow Crust,1.288880E+02,8.999624E+01,0.000000E+00 +1815432,fr,1,4.150000E+00,8.914200E+00,4.845880E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999329E+01,0.000000E+00 +1815433,fr,1,4.150000E+00,8.914200E+00,4.845880E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999329E+01,0.000000E+00 +1815438,fr,1,4.150000E+00,8.914200E+00,4.845880E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999322E+01,-9.000000E+01 +1815456,fr,1,4.350000E+00,8.914200E+00,4.845880E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +1815461,fr,1,4.350000E+00,8.914200E+00,4.845880E+01,2.750000E+01,Active Shallow Crust,2.400082E+02,5.799591E+01,0.000000E+00 +1815469,fr,1,4.450000E+00,8.914200E+00,4.845880E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +1815480,fr,2,4.550000E+00,8.914200E+00,4.845880E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999154E+01,0.000000E+00 +1815482,fr,1,4.550000E+00,8.914200E+00,4.845880E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999154E+01,0.000000E+00 +1815494,fr,1,4.650000E+00,8.914200E+00,4.845880E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +1815497,fr,1,4.650000E+00,8.914200E+00,4.845880E+01,2.750000E+01,Active Shallow Crust,2.400114E+02,5.799411E+01,0.000000E+00 +1815517,fr,1,4.850000E+00,8.914200E+00,4.845880E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999101E+01,0.000000E+00 +1815541,fr,1,5.050000E+00,8.914200E+00,4.845880E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1815552,fr,1,5.150000E+00,8.914200E+00,4.845880E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +1815842,fr,1,3.550000E+00,-2.456400E-01,4.855414E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1815852,fr,2,3.650000E+00,-2.456400E-01,4.855414E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1815865,fr,2,3.750000E+00,-2.456400E-01,4.855414E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1815876,fr,1,3.850000E+00,-2.456400E-01,4.855414E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1815882,fr,1,3.850000E+00,-2.456400E-01,4.855414E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +1815888,fr,1,3.950000E+00,-2.456400E-01,4.855414E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1815921,fr,1,4.150000E+00,-2.456400E-01,4.855414E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.999373E+01,0.000000E+00 +1815936,fr,1,4.350000E+00,-2.456400E-01,4.855414E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1815945,fr,1,4.350000E+00,-2.456400E-01,4.855414E+01,5.000000E+00,Active Shallow Crust,1.288974E+02,8.998278E+01,0.000000E+00 +1815951,fr,1,4.450000E+00,-2.456400E-01,4.855414E+01,5.000000E+00,Active Shallow Crust,2.400058E+02,5.799478E+01,0.000000E+00 +1815996,fr,1,4.850000E+00,-2.456400E-01,4.855414E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1816042,fr,1,5.150000E+00,-2.456400E-01,4.855414E+01,1.500000E+01,Active Shallow Crust,1.288827E+02,8.999104E+01,0.000000E+00 +1816332,fr,1,3.650000E+00,7.804570E+00,5.133540E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998877E+01,0.000000E+00 +1816368,fr,1,3.950000E+00,7.804570E+00,5.133540E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +1816397,fr,1,4.150000E+00,7.804570E+00,5.133540E+01,2.750000E+01,Active Shallow Crust,2.400093E+02,5.799762E+01,0.000000E+00 +1816800,fr,1,3.550000E+00,4.975470E+00,4.289542E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999261E+01,0.000000E+00 +1816806,fr,1,3.550000E+00,4.975470E+00,4.289542E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999253E+01,-9.000000E+01 +1816818,fr,1,3.650000E+00,4.975470E+00,4.289542E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998668E+01,-9.000000E+01 +1816827,fr,1,3.750000E+00,4.975470E+00,4.289542E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.801639E+01,0.000000E+00 +1816848,fr,1,3.950000E+00,4.975470E+00,4.289542E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +1816861,fr,1,4.050000E+00,4.975470E+00,4.289542E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999169E+01,0.000000E+00 +1817349,fr,1,4.050000E+00,-4.080580E+00,4.410228E+01,5.000000E+00,Active Shallow Crust,1.288903E+02,8.999389E+01,0.000000E+00 +1817760,fr,2,3.550000E+00,7.042260E+00,5.088080E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998727E+01,0.000000E+00 +1817779,fr,1,3.650000E+00,7.042260E+00,5.088080E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998853E+01,-9.000000E+01 +1817787,fr,1,3.750000E+00,7.042260E+00,5.088080E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.801734E+01,0.000000E+00 +1817788,fr,1,3.750000E+00,7.042260E+00,5.088080E+01,1.500000E+01,Active Shallow Crust,2.400086E+02,5.801734E+01,0.000000E+00 +1817790,fr,1,3.750000E+00,7.042260E+00,5.088080E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,-9.000000E+01 +1817799,fr,1,3.850000E+00,7.042260E+00,5.088080E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799761E+01,0.000000E+00 +1817808,fr,1,3.950000E+00,7.042260E+00,5.088080E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999197E+01,0.000000E+00 +1817820,fr,1,4.050000E+00,7.042260E+00,5.088080E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1817844,fr,1,4.250000E+00,7.042260E+00,5.088080E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998863E+01,0.000000E+00 +1817847,fr,1,4.250000E+00,7.042260E+00,5.088080E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.799410E+01,0.000000E+00 +1817856,fr,1,4.350000E+00,7.042260E+00,5.088080E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1817869,fr,1,4.450000E+00,7.042260E+00,5.088080E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +1818252,fr,1,3.650000E+00,2.642820E+00,4.308920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1818253,fr,1,3.650000E+00,2.642820E+00,4.308920E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1818254,fr,1,3.650000E+00,2.642820E+00,4.308920E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1818265,fr,1,3.750000E+00,2.642820E+00,4.308920E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +1818266,fr,1,3.750000E+00,2.642820E+00,4.308920E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +1818278,fr,1,3.850000E+00,2.642820E+00,4.308920E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +1818300,fr,1,4.050000E+00,2.642820E+00,4.308920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1818342,fr,2,4.350000E+00,2.642820E+00,4.308920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,-9.000000E+01 +1818384,fr,1,4.750000E+00,2.642820E+00,4.308920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1818402,fr,1,4.850000E+00,2.642820E+00,4.308920E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +1818720,fr,1,3.550000E+00,-4.983770E+00,4.828665E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999329E+01,0.000000E+00 +1818723,fr,1,3.550000E+00,-4.983770E+00,4.828665E+01,5.000000E+00,Active Shallow Crust,2.400132E+02,5.799816E+01,0.000000E+00 +1818768,fr,1,3.950000E+00,-4.983770E+00,4.828665E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999153E+01,0.000000E+00 +1818783,fr,1,4.050000E+00,-4.983770E+00,4.828665E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.800536E+01,0.000000E+00 +1818792,fr,1,4.150000E+00,-4.983770E+00,4.828665E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1818833,fr,1,4.450000E+00,-4.983770E+00,4.828665E+01,2.750000E+01,Active Shallow Crust,2.400057E+02,5.799472E+01,0.000000E+00 +1819239,fr,1,3.850000E+00,3.822010E+00,5.233248E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799814E+01,0.000000E+00 +1819248,fr,1,3.950000E+00,3.822010E+00,5.233248E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +1819287,fr,1,4.250000E+00,3.822010E+00,5.233248E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.799421E+01,0.000000E+00 +1820161,fr,1,3.550000E+00,-5.789700E-01,4.719296E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1820162,fr,1,3.550000E+00,-5.789700E-01,4.719296E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1820163,fr,1,3.550000E+00,-5.789700E-01,4.719296E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799804E+01,0.000000E+00 +1820166,fr,1,3.550000E+00,-5.789700E-01,4.719296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,-9.000000E+01 +1820168,fr,1,3.550000E+00,-5.789700E-01,4.719296E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998960E+01,-9.000000E+01 +1820172,fr,2,3.650000E+00,-5.789700E-01,4.719296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1820173,fr,1,3.650000E+00,-5.789700E-01,4.719296E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1820184,fr,2,3.750000E+00,-5.789700E-01,4.719296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1820186,fr,1,3.750000E+00,-5.789700E-01,4.719296E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1820196,fr,2,3.850000E+00,-5.789700E-01,4.719296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1820197,fr,1,3.850000E+00,-5.789700E-01,4.719296E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1820199,fr,1,3.850000E+00,-5.789700E-01,4.719296E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799789E+01,0.000000E+00 +1820202,fr,2,3.850000E+00,-5.789700E-01,4.719296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,-9.000000E+01 +1820203,fr,1,3.850000E+00,-5.789700E-01,4.719296E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,-9.000000E+01 +1820208,fr,1,3.950000E+00,-5.789700E-01,4.719296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +1820209,fr,2,3.950000E+00,-5.789700E-01,4.719296E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +1820220,fr,2,4.050000E+00,-5.789700E-01,4.719296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1820232,fr,1,4.150000E+00,-5.789700E-01,4.719296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1820257,fr,1,4.350000E+00,-5.789700E-01,4.719296E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1820268,fr,2,4.450000E+00,-5.789700E-01,4.719296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1820304,fr,1,4.750000E+00,-5.789700E-01,4.719296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1820328,fr,1,4.950000E+00,-5.789700E-01,4.719296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1820340,fr,1,5.050000E+00,-5.789700E-01,4.719296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1820712,fr,1,4.150000E+00,9.640520E+00,4.916316E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998678E+01,0.000000E+00 +1821120,fr,2,3.550000E+00,6.399930E+00,5.117134E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998736E+01,0.000000E+00 +1821121,fr,2,3.550000E+00,6.399930E+00,5.117134E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998736E+01,0.000000E+00 +1821132,fr,2,3.650000E+00,6.399930E+00,5.117134E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998873E+01,0.000000E+00 +1821133,fr,2,3.650000E+00,6.399930E+00,5.117134E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998873E+01,0.000000E+00 +1821144,fr,1,3.750000E+00,6.399930E+00,5.117134E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1821150,fr,1,3.750000E+00,6.399930E+00,5.117134E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,-9.000000E+01 +1821157,fr,1,3.850000E+00,6.399930E+00,5.117134E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999105E+01,0.000000E+00 +1821172,fr,1,3.950000E+00,6.399930E+00,5.117134E+01,1.500000E+01,Active Shallow Crust,2.400204E+02,5.800481E+01,0.000000E+00 +1821180,fr,1,4.050000E+00,6.399930E+00,5.117134E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1821192,fr,1,4.150000E+00,6.399930E+00,5.117134E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1821289,fr,1,4.950000E+00,6.399930E+00,5.117134E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1821314,fr,1,5.150000E+00,6.399930E+00,5.117134E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1821351,fr,1,5.450000E+00,6.399930E+00,5.117134E+01,5.000000E+00,Active Shallow Crust,2.400331E+02,5.799931E+01,0.000000E+00 +1821388,fr,1,5.750000E+00,6.399930E+00,5.117134E+01,1.500000E+01,Active Shallow Crust,2.400473E+02,5.800060E+01,0.000000E+00 +1821600,fr,1,3.550000E+00,6.897990E+00,4.353853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999269E+01,0.000000E+00 +1821603,fr,1,3.550000E+00,6.897990E+00,4.353853E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799898E+01,0.000000E+00 +1821612,fr,1,3.650000E+00,6.897990E+00,4.353853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998697E+01,0.000000E+00 +1821615,fr,1,3.650000E+00,6.897990E+00,4.353853E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801332E+01,0.000000E+00 +1821622,fr,1,3.650000E+00,6.897990E+00,4.353853E+01,1.500000E+01,Active Shallow Crust,1.289009E+02,8.996347E+01,0.000000E+00 +1821630,fr,1,3.750000E+00,6.897990E+00,4.353853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998825E+01,-9.000000E+01 +1821660,fr,1,4.050000E+00,6.897990E+00,4.353853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999178E+01,0.000000E+00 +1821713,fr,1,4.450000E+00,6.897990E+00,4.353853E+01,2.750000E+01,Active Shallow Crust,2.400048E+02,5.799421E+01,0.000000E+00 +1821723,fr,1,4.550000E+00,6.897990E+00,4.353853E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.799742E+01,0.000000E+00 +1822093,fr,1,3.650000E+00,3.987160E+00,4.315845E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1822126,fr,1,3.850000E+00,3.987160E+00,4.315845E+01,1.500000E+01,Active Shallow Crust,1.288960E+02,8.999349E+01,0.000000E+00 +1822127,fr,1,3.850000E+00,3.987160E+00,4.315845E+01,2.750000E+01,Active Shallow Crust,1.288960E+02,8.999349E+01,0.000000E+00 +1822560,fr,1,3.550000E+00,5.333710E+00,5.054355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998718E+01,0.000000E+00 +1822561,fr,2,3.550000E+00,5.333710E+00,5.054355E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998718E+01,0.000000E+00 +1822584,fr,1,3.750000E+00,5.333710E+00,5.054355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1822596,fr,1,3.850000E+00,5.333710E+00,5.054355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +1822597,fr,2,3.850000E+00,5.333710E+00,5.054355E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +1822609,fr,1,3.950000E+00,5.333710E+00,5.054355E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999191E+01,0.000000E+00 +1822620,fr,2,4.050000E+00,5.333710E+00,5.054355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998919E+01,0.000000E+00 +1822656,fr,1,4.350000E+00,5.333710E+00,5.054355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1822657,fr,1,4.350000E+00,5.333710E+00,5.054355E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1822666,fr,1,4.350000E+00,5.333710E+00,5.054355E+01,1.500000E+01,Active Shallow Crust,1.288972E+02,8.998272E+01,0.000000E+00 +1822668,fr,1,4.450000E+00,5.333710E+00,5.054355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +1822681,fr,1,4.550000E+00,5.333710E+00,5.054355E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1822789,fr,1,5.450000E+00,5.333710E+00,5.054355E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1823055,fr,1,3.650000E+00,3.209000E+00,4.683901E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801315E+01,0.000000E+00 +1823062,fr,1,3.650000E+00,3.209000E+00,4.683901E+01,1.500000E+01,Active Shallow Crust,1.289010E+02,8.996353E+01,0.000000E+00 +1823074,fr,1,3.750000E+00,3.209000E+00,4.683901E+01,1.500000E+01,Active Shallow Crust,1.288964E+02,8.996724E+01,0.000000E+00 +1823135,fr,1,4.250000E+00,3.209000E+00,4.683901E+01,2.750000E+01,Active Shallow Crust,1.288942E+02,8.998096E+01,0.000000E+00 +1823533,fr,1,3.650000E+00,-4.586290E+00,4.736947E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998782E+01,0.000000E+00 +1823643,fr,1,4.550000E+00,-4.586290E+00,4.736947E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.799742E+01,0.000000E+00 +1824007,fr,1,3.550000E+00,3.264690E+00,4.251796E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998872E+01,-9.000000E+01 +1824014,fr,1,3.650000E+00,3.264690E+00,4.251796E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1824020,fr,1,3.650000E+00,3.264690E+00,4.251796E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,-9.000000E+01 +1824024,fr,1,3.750000E+00,3.264690E+00,4.251796E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999114E+01,0.000000E+00 +1824028,fr,1,3.750000E+00,3.264690E+00,4.251796E+01,1.500000E+01,Active Shallow Crust,2.400075E+02,5.801780E+01,0.000000E+00 +1824033,fr,1,3.750000E+00,3.264690E+00,4.251796E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.996742E+01,0.000000E+00 +1824067,fr,1,4.050000E+00,3.264690E+00,4.251796E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,-9.000000E+01 +1824072,fr,1,4.150000E+00,3.264690E+00,4.251796E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +1824085,fr,2,4.250000E+00,3.264690E+00,4.251796E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1824144,fr,2,4.750000E+00,3.264690E+00,4.251796E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +1824156,fr,1,4.850000E+00,3.264690E+00,4.251796E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1824480,fr,5,3.550000E+00,-1.169590E+00,4.606334E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +1824481,fr,1,3.550000E+00,-1.169590E+00,4.606334E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +1824484,fr,1,3.550000E+00,-1.169590E+00,4.606334E+01,1.500000E+01,Active Shallow Crust,2.400123E+02,5.799801E+01,0.000000E+00 +1824492,fr,4,3.650000E+00,-1.169590E+00,4.606334E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +1824493,fr,1,3.650000E+00,-1.169590E+00,4.606334E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +1824506,fr,1,3.750000E+00,-1.169590E+00,4.606334E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +1824512,fr,1,3.750000E+00,-1.169590E+00,4.606334E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,-9.000000E+01 +1824515,fr,1,3.750000E+00,-1.169590E+00,4.606334E+01,2.750000E+01,Active Shallow Crust,1.288966E+02,8.996735E+01,0.000000E+00 +1824516,fr,4,3.850000E+00,-1.169590E+00,4.606334E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1824517,fr,2,3.850000E+00,-1.169590E+00,4.606334E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1824518,fr,1,3.850000E+00,-1.169590E+00,4.606334E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1824519,fr,1,3.850000E+00,-1.169590E+00,4.606334E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799773E+01,0.000000E+00 +1824520,fr,1,3.850000E+00,-1.169590E+00,4.606334E+01,1.500000E+01,Active Shallow Crust,2.400109E+02,5.799773E+01,0.000000E+00 +1824522,fr,1,3.850000E+00,-1.169590E+00,4.606334E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1824523,fr,1,3.850000E+00,-1.169590E+00,4.606334E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1824528,fr,1,3.950000E+00,-1.169590E+00,4.606334E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1824529,fr,1,3.950000E+00,-1.169590E+00,4.606334E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1824543,fr,1,4.050000E+00,-1.169590E+00,4.606334E+01,5.000000E+00,Active Shallow Crust,2.400060E+02,5.800571E+01,0.000000E+00 +1824549,fr,1,4.050000E+00,-1.169590E+00,4.606334E+01,5.000000E+00,Active Shallow Crust,1.288907E+02,8.999361E+01,0.000000E+00 +1824552,fr,1,4.150000E+00,-1.169590E+00,4.606334E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1824561,fr,1,4.150000E+00,-1.169590E+00,4.606334E+01,5.000000E+00,Active Shallow Crust,1.288975E+02,8.999387E+01,0.000000E+00 +1824564,fr,1,4.250000E+00,-1.169590E+00,4.606334E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1824589,fr,1,4.450000E+00,-1.169590E+00,4.606334E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1824610,fr,1,4.550000E+00,-1.169590E+00,4.606334E+01,1.500000E+01,Active Shallow Crust,1.288939E+02,8.998587E+01,0.000000E+00 +1824624,fr,1,4.750000E+00,-1.169590E+00,4.606334E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1824636,fr,1,4.850000E+00,-1.169590E+00,4.606334E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1824672,fr,1,5.150000E+00,-1.169590E+00,4.606334E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1824966,fr,1,3.550000E+00,8.040280E+00,4.811245E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998638E+01,-9.000000E+01 +1824974,fr,1,3.650000E+00,8.040280E+00,4.811245E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998800E+01,0.000000E+00 +1824984,fr,1,3.750000E+00,8.040280E+00,4.811245E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +1824987,fr,1,3.750000E+00,8.040280E+00,4.811245E+01,5.000000E+00,Active Shallow Crust,2.400101E+02,5.801669E+01,0.000000E+00 +1824995,fr,1,3.750000E+00,8.040280E+00,4.811245E+01,2.750000E+01,Active Shallow Crust,1.288968E+02,8.996752E+01,0.000000E+00 +1824996,fr,1,3.850000E+00,8.040280E+00,4.811245E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1825000,fr,1,3.850000E+00,8.040280E+00,4.811245E+01,1.500000E+01,Active Shallow Crust,2.400122E+02,5.799770E+01,0.000000E+00 +1825010,fr,1,3.950000E+00,8.040280E+00,4.811245E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999150E+01,0.000000E+00 +1825011,fr,1,3.950000E+00,8.040280E+00,4.811245E+01,5.000000E+00,Active Shallow Crust,2.400184E+02,5.800595E+01,0.000000E+00 +1825012,fr,1,3.950000E+00,8.040280E+00,4.811245E+01,1.500000E+01,Active Shallow Crust,2.400184E+02,5.800595E+01,0.000000E+00 +1825017,fr,1,3.950000E+00,8.040280E+00,4.811245E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.999151E+01,0.000000E+00 +1825022,fr,1,4.050000E+00,8.040280E+00,4.811245E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999242E+01,0.000000E+00 +1825032,fr,3,4.150000E+00,8.040280E+00,4.811245E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999325E+01,0.000000E+00 +1825056,fr,1,4.350000E+00,8.040280E+00,4.811245E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998928E+01,0.000000E+00 +1825086,fr,1,4.550000E+00,8.040280E+00,4.811245E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999139E+01,-9.000000E+01 +1825153,fr,1,5.150000E+00,8.040280E+00,4.811245E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1825160,fr,1,5.150000E+00,8.040280E+00,4.811245E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,-9.000000E+01 +1825443,fr,1,3.550000E+00,-1.202390E+00,5.061266E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.799810E+01,0.000000E+00 +1825453,fr,1,3.650000E+00,-1.202390E+00,5.061266E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1825470,fr,1,3.750000E+00,-1.202390E+00,5.061266E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,-9.000000E+01 +1825503,fr,1,4.050000E+00,-1.202390E+00,5.061266E+01,5.000000E+00,Active Shallow Crust,2.400068E+02,5.800587E+01,0.000000E+00 +1825920,fr,1,3.550000E+00,8.652140E+00,4.956873E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998692E+01,0.000000E+00 +1825921,fr,1,3.550000E+00,8.652140E+00,4.956873E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998692E+01,0.000000E+00 +1825922,fr,1,3.550000E+00,8.652140E+00,4.956873E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998692E+01,0.000000E+00 +1825926,fr,1,3.550000E+00,8.652140E+00,4.956873E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998677E+01,-9.000000E+01 +1825930,fr,1,3.550000E+00,8.652140E+00,4.956873E+01,1.500000E+01,Active Shallow Crust,1.288944E+02,8.999346E+01,0.000000E+00 +1825932,fr,2,3.650000E+00,8.652140E+00,4.956873E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998834E+01,0.000000E+00 +1825933,fr,1,3.650000E+00,8.652140E+00,4.956873E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998834E+01,0.000000E+00 +1825934,fr,1,3.650000E+00,8.652140E+00,4.956873E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998834E+01,0.000000E+00 +1825936,fr,1,3.650000E+00,8.652140E+00,4.956873E+01,1.500000E+01,Active Shallow Crust,2.400002E+02,5.801434E+01,0.000000E+00 +1825941,fr,2,3.650000E+00,8.652140E+00,4.956873E+01,5.000000E+00,Active Shallow Crust,1.288987E+02,8.996358E+01,0.000000E+00 +1825944,fr,1,3.750000E+00,8.652140E+00,4.956873E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +1825945,fr,1,3.750000E+00,8.652140E+00,4.956873E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +1825956,fr,1,3.850000E+00,8.652140E+00,4.956873E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +1825960,fr,1,3.850000E+00,8.652140E+00,4.956873E+01,1.500000E+01,Active Shallow Crust,2.400120E+02,5.799767E+01,0.000000E+00 +1825968,fr,1,3.950000E+00,8.652140E+00,4.956873E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999174E+01,0.000000E+00 +1825984,fr,1,4.050000E+00,8.652140E+00,4.956873E+01,1.500000E+01,Active Shallow Crust,2.400071E+02,5.800558E+01,0.000000E+00 +1826025,fr,1,4.350000E+00,8.652140E+00,4.956873E+01,5.000000E+00,Active Shallow Crust,1.288982E+02,8.998215E+01,0.000000E+00 +1826040,fr,1,4.550000E+00,8.652140E+00,4.956873E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999173E+01,0.000000E+00 +1826041,fr,1,4.550000E+00,8.652140E+00,4.956873E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999173E+01,0.000000E+00 +1826042,fr,1,4.550000E+00,8.652140E+00,4.956873E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999173E+01,0.000000E+00 +1826043,fr,1,4.550000E+00,8.652140E+00,4.956873E+01,5.000000E+00,Active Shallow Crust,2.400100E+02,5.799737E+01,0.000000E+00 +1826076,fr,1,4.850000E+00,8.652140E+00,4.956873E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999121E+01,0.000000E+00 +1826077,fr,1,4.850000E+00,8.652140E+00,4.956873E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999121E+01,0.000000E+00 +1826082,fr,1,4.850000E+00,8.652140E+00,4.956873E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999111E+01,-9.000000E+01 +1826085,fr,1,4.850000E+00,8.652140E+00,4.956873E+01,5.000000E+00,Active Shallow Crust,1.288912E+02,8.998923E+01,0.000000E+00 +1826088,fr,1,4.950000E+00,8.652140E+00,4.956873E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1826100,fr,1,5.050000E+00,8.652140E+00,4.956873E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999069E+01,0.000000E+00 +1826400,fr,1,3.550000E+00,-2.203380E+00,4.760132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1826412,fr,1,3.650000E+00,-2.203380E+00,4.760132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +1826423,fr,1,3.650000E+00,-2.203380E+00,4.760132E+01,2.750000E+01,Active Shallow Crust,1.289011E+02,8.996326E+01,0.000000E+00 +1826424,fr,1,3.750000E+00,-2.203380E+00,4.760132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1826430,fr,1,3.750000E+00,-2.203380E+00,4.760132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,-9.000000E+01 +1826449,fr,1,3.950000E+00,-2.203380E+00,4.760132E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1826451,fr,1,3.950000E+00,-2.203380E+00,4.760132E+01,5.000000E+00,Active Shallow Crust,2.400200E+02,5.800494E+01,0.000000E+00 +1826460,fr,1,4.050000E+00,-2.203380E+00,4.760132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +1826476,fr,1,4.150000E+00,-2.203380E+00,4.760132E+01,1.500000E+01,Active Shallow Crust,2.400089E+02,5.799748E+01,0.000000E+00 +1826483,fr,1,4.150000E+00,-2.203380E+00,4.760132E+01,2.750000E+01,Active Shallow Crust,1.288971E+02,8.999403E+01,0.000000E+00 +1826495,fr,1,4.250000E+00,-2.203380E+00,4.760132E+01,2.750000E+01,Active Shallow Crust,1.288942E+02,8.998099E+01,0.000000E+00 +1826532,fr,1,4.650000E+00,-2.203380E+00,4.760132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +1826580,fr,1,5.050000E+00,-2.203380E+00,4.760132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1826881,fr,1,3.550000E+00,3.170930E+00,5.104998E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1826889,fr,1,3.550000E+00,3.170930E+00,5.104998E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999366E+01,0.000000E+00 +1826893,fr,1,3.650000E+00,3.170930E+00,5.104998E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998870E+01,0.000000E+00 +1826895,fr,1,3.650000E+00,3.170930E+00,5.104998E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801291E+01,0.000000E+00 +1826900,fr,1,3.650000E+00,3.170930E+00,5.104998E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999142E+01,-9.000000E+01 +1826904,fr,1,3.750000E+00,3.170930E+00,5.104998E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1827016,fr,1,4.650000E+00,3.170930E+00,5.104998E+01,1.500000E+01,Active Shallow Crust,2.400125E+02,5.799452E+01,0.000000E+00 +1827036,fr,1,4.850000E+00,3.170930E+00,5.104998E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1827128,fr,1,5.550000E+00,3.170930E+00,5.104998E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +1827360,fr,4,3.550000E+00,2.909190E+00,4.219620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998879E+01,0.000000E+00 +1827361,fr,2,3.550000E+00,2.909190E+00,4.219620E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998879E+01,0.000000E+00 +1827376,fr,1,3.650000E+00,2.909190E+00,4.219620E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801295E+01,0.000000E+00 +1827384,fr,2,3.750000E+00,2.909190E+00,4.219620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +1827385,fr,1,3.750000E+00,2.909190E+00,4.219620E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +1827396,fr,2,3.850000E+00,2.909190E+00,4.219620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1827397,fr,1,3.850000E+00,2.909190E+00,4.219620E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1827420,fr,2,4.050000E+00,2.909190E+00,4.219620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +1827445,fr,1,4.250000E+00,2.909190E+00,4.219620E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1827465,fr,1,4.350000E+00,2.909190E+00,4.219620E+01,5.000000E+00,Active Shallow Crust,1.288984E+02,8.998288E+01,0.000000E+00 +1827516,fr,1,4.850000E+00,2.909190E+00,4.219620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1827540,fr,1,5.050000E+00,2.909190E+00,4.219620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1827564,fr,1,5.250000E+00,2.909190E+00,4.219620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1827840,fr,1,3.550000E+00,2.349560E+00,4.462692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +1827849,fr,1,3.550000E+00,2.349560E+00,4.462692E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999462E+01,0.000000E+00 +1827853,fr,1,3.650000E+00,2.349560E+00,4.462692E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +1827872,fr,1,3.750000E+00,2.349560E+00,4.462692E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999135E+01,-9.000000E+01 +1827876,fr,2,3.850000E+00,2.349560E+00,4.462692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +1827898,fr,1,3.950000E+00,2.349560E+00,4.462692E+01,1.500000E+01,Active Shallow Crust,1.289005E+02,8.999434E+01,0.000000E+00 +1827924,fr,1,4.250000E+00,2.349560E+00,4.462692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +1827936,fr,1,4.350000E+00,2.349560E+00,4.462692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1827961,fr,1,4.550000E+00,2.349560E+00,4.462692E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1828335,fr,1,3.650000E+00,2.326630E+00,4.035350E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801303E+01,0.000000E+00 +1828379,fr,1,3.950000E+00,2.326630E+00,4.035350E+01,2.750000E+01,Active Shallow Crust,1.289006E+02,8.999394E+01,0.000000E+00 +1828381,fr,1,4.050000E+00,2.326630E+00,4.035350E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1828430,fr,1,4.450000E+00,2.326630E+00,4.035350E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1828800,fr,3,3.550000E+00,1.173740E+00,4.273445E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +1828801,fr,1,3.550000E+00,1.173740E+00,4.273445E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +1828802,fr,1,3.550000E+00,1.173740E+00,4.273445E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +1828812,fr,2,3.650000E+00,1.173740E+00,4.273445E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1828813,fr,1,3.650000E+00,1.173740E+00,4.273445E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1828818,fr,1,3.650000E+00,1.173740E+00,4.273445E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +1828821,fr,1,3.650000E+00,1.173740E+00,4.273445E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.996359E+01,0.000000E+00 +1828824,fr,1,3.750000E+00,1.173740E+00,4.273445E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1828836,fr,1,3.850000E+00,1.173740E+00,4.273445E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1828839,fr,1,3.850000E+00,1.173740E+00,4.273445E+01,5.000000E+00,Active Shallow Crust,2.400103E+02,5.799779E+01,0.000000E+00 +1828848,fr,1,3.950000E+00,1.173740E+00,4.273445E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +1828850,fr,1,3.950000E+00,1.173740E+00,4.273445E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +1828851,fr,1,3.950000E+00,1.173740E+00,4.273445E+01,5.000000E+00,Active Shallow Crust,2.400191E+02,5.800492E+01,0.000000E+00 +1828860,fr,1,4.050000E+00,1.173740E+00,4.273445E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1828861,fr,1,4.050000E+00,1.173740E+00,4.273445E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1828862,fr,1,4.050000E+00,1.173740E+00,4.273445E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1828872,fr,1,4.150000E+00,1.173740E+00,4.273445E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1828873,fr,1,4.150000E+00,1.173740E+00,4.273445E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1828874,fr,1,4.150000E+00,1.173740E+00,4.273445E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1828885,fr,1,4.250000E+00,1.173740E+00,4.273445E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1828922,fr,1,4.550000E+00,1.173740E+00,4.273445E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1828947,fr,1,4.750000E+00,1.173740E+00,4.273445E+01,5.000000E+00,Active Shallow Crust,2.400062E+02,5.800425E+01,0.000000E+00 +1828956,fr,1,4.850000E+00,1.173740E+00,4.273445E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1829292,fr,1,3.650000E+00,7.083840E+00,4.914453E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998824E+01,0.000000E+00 +1829313,fr,1,3.750000E+00,7.083840E+00,4.914453E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.996754E+01,0.000000E+00 +1829322,fr,1,3.850000E+00,7.083840E+00,4.914453E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,-9.000000E+01 +1829409,fr,1,4.550000E+00,7.083840E+00,4.914453E+01,5.000000E+00,Active Shallow Crust,1.288928E+02,8.998579E+01,0.000000E+00 +1829449,fr,1,4.950000E+00,7.083840E+00,4.914453E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +1829761,fr,1,3.550000E+00,1.392220E+00,4.316060E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +1829786,fr,1,3.750000E+00,1.392220E+00,4.316060E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1829797,fr,1,3.850000E+00,1.392220E+00,4.316060E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1829808,fr,1,3.950000E+00,1.392220E+00,4.316060E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1829832,fr,1,4.150000E+00,1.392220E+00,4.316060E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1829848,fr,1,4.250000E+00,1.392220E+00,4.316060E+01,1.500000E+01,Active Shallow Crust,2.400068E+02,5.799391E+01,0.000000E+00 +1829871,fr,1,4.450000E+00,1.392220E+00,4.316060E+01,5.000000E+00,Active Shallow Crust,2.400044E+02,5.799451E+01,0.000000E+00 +1829899,fr,1,4.650000E+00,1.392220E+00,4.316060E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +1829964,fr,1,5.250000E+00,1.392220E+00,4.316060E+01,5.000000E+00,Active Shallow Crust,3.599999E+02,8.999013E+01,0.000000E+00 +1830252,fr,2,3.650000E+00,1.940500E+00,4.456021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1830261,fr,1,3.650000E+00,1.940500E+00,4.456021E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.996362E+01,0.000000E+00 +1830265,fr,1,3.750000E+00,1.940500E+00,4.456021E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1830276,fr,1,3.850000E+00,1.940500E+00,4.456021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1830288,fr,1,3.950000E+00,1.940500E+00,4.456021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1830310,fr,1,4.050000E+00,1.940500E+00,4.456021E+01,1.500000E+01,Active Shallow Crust,1.288905E+02,8.999394E+01,0.000000E+00 +1830348,fr,1,4.450000E+00,1.940500E+00,4.456021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1830770,fr,1,3.950000E+00,-6.093240E+00,4.953349E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999174E+01,0.000000E+00 +1832160,fr,2,3.550000E+00,7.939540E+00,4.551143E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999294E+01,0.000000E+00 +1832163,fr,1,3.550000E+00,7.939540E+00,4.551143E+01,5.000000E+00,Active Shallow Crust,2.400136E+02,5.799762E+01,0.000000E+00 +1832165,fr,1,3.550000E+00,7.939540E+00,4.551143E+01,2.750000E+01,Active Shallow Crust,2.400136E+02,5.799753E+01,0.000000E+00 +1832166,fr,1,3.550000E+00,7.939540E+00,4.551143E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999285E+01,-9.000000E+01 +1832167,fr,1,3.550000E+00,7.939540E+00,4.551143E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999285E+01,-9.000000E+01 +1832168,fr,1,3.550000E+00,7.939540E+00,4.551143E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999285E+01,-9.000000E+01 +1832173,fr,1,3.650000E+00,7.939540E+00,4.551143E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998740E+01,0.000000E+00 +1832175,fr,1,3.650000E+00,7.939540E+00,4.551143E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801274E+01,0.000000E+00 +1832184,fr,3,3.750000E+00,7.939540E+00,4.551143E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +1832185,fr,1,3.750000E+00,7.939540E+00,4.551143E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +1832187,fr,1,3.750000E+00,7.939540E+00,4.551143E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.801767E+01,0.000000E+00 +1832190,fr,1,3.750000E+00,7.939540E+00,4.551143E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998865E+01,-9.000000E+01 +1832196,fr,2,3.850000E+00,7.939540E+00,4.551143E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1832199,fr,1,3.850000E+00,7.939540E+00,4.551143E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799784E+01,0.000000E+00 +1832208,fr,1,3.950000E+00,7.939540E+00,4.551143E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999108E+01,0.000000E+00 +1832212,fr,1,3.950000E+00,7.939540E+00,4.551143E+01,1.500000E+01,Active Shallow Crust,2.400193E+02,5.800546E+01,0.000000E+00 +1832220,fr,1,4.050000E+00,7.939540E+00,4.551143E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +1832226,fr,2,4.050000E+00,7.939540E+00,4.551143E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999196E+01,-9.000000E+01 +1832232,fr,1,4.150000E+00,7.939540E+00,4.551143E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +1832234,fr,1,4.150000E+00,7.939540E+00,4.551143E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +1832236,fr,1,4.150000E+00,7.939540E+00,4.551143E+01,1.500000E+01,Active Shallow Crust,2.400089E+02,5.799695E+01,0.000000E+00 +1832239,fr,1,4.150000E+00,7.939540E+00,4.551143E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998925E+01,-9.000000E+01 +1832245,fr,1,4.250000E+00,7.939540E+00,4.551143E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +1832247,fr,1,4.250000E+00,7.939540E+00,4.551143E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799366E+01,0.000000E+00 +1832254,fr,1,4.250000E+00,7.939540E+00,4.551143E+01,1.500000E+01,Active Shallow Crust,1.288949E+02,8.998091E+01,0.000000E+00 +1832257,fr,1,4.350000E+00,7.939540E+00,4.551143E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +1832268,fr,2,4.450000E+00,7.939540E+00,4.551143E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1832280,fr,1,4.550000E+00,7.939540E+00,4.551143E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999106E+01,0.000000E+00 +1832282,fr,1,4.550000E+00,7.939540E+00,4.551143E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999106E+01,0.000000E+00 +1832285,fr,1,4.550000E+00,7.939540E+00,4.551143E+01,2.750000E+01,Active Shallow Crust,2.400089E+02,5.799720E+01,0.000000E+00 +1832318,fr,1,4.850000E+00,7.939540E+00,4.551143E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +1832340,fr,1,5.050000E+00,7.939540E+00,4.551143E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1832346,fr,1,5.050000E+00,7.939540E+00,4.551143E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,-9.000000E+01 +1832652,fr,2,3.650000E+00,8.112560E+00,5.087836E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +1832676,fr,1,3.850000E+00,8.112560E+00,5.087836E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999099E+01,0.000000E+00 +1832740,fr,1,4.350000E+00,8.112560E+00,5.087836E+01,1.500000E+01,Active Shallow Crust,2.400092E+02,5.799583E+01,0.000000E+00 +1832784,fr,1,4.750000E+00,8.112560E+00,5.087836E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +1833144,fr,1,3.750000E+00,4.926790E+00,4.836466E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +1833601,fr,1,3.550000E+00,-1.212410E+00,5.021649E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +1833654,fr,1,3.950000E+00,-1.212410E+00,5.021649E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,-9.000000E+01 +1833783,fr,1,5.050000E+00,-1.212410E+00,5.021649E+01,5.000000E+00,Active Shallow Crust,2.400243E+02,5.799792E+01,0.000000E+00 +1834080,fr,2,3.550000E+00,-1.912920E+00,4.213774E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +1834086,fr,1,3.550000E+00,-1.912920E+00,4.213774E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,-9.000000E+01 +1834092,fr,1,3.650000E+00,-1.912920E+00,4.213774E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1834122,fr,1,3.850000E+00,-1.912920E+00,4.213774E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,-9.000000E+01 +1834128,fr,1,3.950000E+00,-1.912920E+00,4.213774E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +1834560,fr,1,3.550000E+00,6.240970E+00,5.004226E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998705E+01,0.000000E+00 +1834561,fr,1,3.550000E+00,6.240970E+00,5.004226E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998705E+01,0.000000E+00 +1834569,fr,1,3.550000E+00,6.240970E+00,5.004226E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999352E+01,0.000000E+00 +1834572,fr,1,3.650000E+00,6.240970E+00,5.004226E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998846E+01,0.000000E+00 +1834573,fr,1,3.650000E+00,6.240970E+00,5.004226E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998846E+01,0.000000E+00 +1834597,fr,1,3.850000E+00,6.240970E+00,5.004226E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +1834606,fr,1,3.850000E+00,6.240970E+00,5.004226E+01,1.500000E+01,Active Shallow Crust,1.288959E+02,8.999313E+01,0.000000E+00 +1834614,fr,1,3.950000E+00,6.240970E+00,5.004226E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999173E+01,-9.000000E+01 +1835520,fr,1,3.550000E+00,3.142990E+00,4.605505E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +1835521,fr,1,3.550000E+00,3.142990E+00,4.605505E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +1835524,fr,1,3.550000E+00,3.142990E+00,4.605505E+01,1.500000E+01,Active Shallow Crust,2.400125E+02,5.799778E+01,0.000000E+00 +1835532,fr,1,3.650000E+00,3.142990E+00,4.605505E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +1835533,fr,1,3.650000E+00,3.142990E+00,4.605505E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +1835538,fr,1,3.650000E+00,3.142990E+00,4.605505E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,-9.000000E+01 +1835544,fr,1,3.750000E+00,3.142990E+00,4.605505E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +1835545,fr,1,3.750000E+00,3.142990E+00,4.605505E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +1835556,fr,3,3.850000E+00,3.142990E+00,4.605505E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1835560,fr,1,3.850000E+00,3.142990E+00,4.605505E+01,1.500000E+01,Active Shallow Crust,2.400112E+02,5.799782E+01,0.000000E+00 +1835565,fr,1,3.850000E+00,3.142990E+00,4.605505E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999380E+01,0.000000E+00 +1835568,fr,1,3.950000E+00,3.142990E+00,4.605505E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998896E+01,0.000000E+00 +1835571,fr,1,3.950000E+00,3.142990E+00,4.605505E+01,5.000000E+00,Active Shallow Crust,2.400198E+02,5.800473E+01,0.000000E+00 +1835577,fr,1,3.950000E+00,3.142990E+00,4.605505E+01,5.000000E+00,Active Shallow Crust,1.289006E+02,8.999448E+01,0.000000E+00 +1835581,fr,1,4.050000E+00,3.142990E+00,4.605505E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1835598,fr,1,4.150000E+00,3.142990E+00,4.605505E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,-9.000000E+01 +1835601,fr,1,4.150000E+00,3.142990E+00,4.605505E+01,5.000000E+00,Active Shallow Crust,1.288971E+02,8.999387E+01,0.000000E+00 +1835604,fr,1,4.250000E+00,3.142990E+00,4.605505E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1835605,fr,1,4.250000E+00,3.142990E+00,4.605505E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1835610,fr,1,4.250000E+00,3.142990E+00,4.605505E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,-9.000000E+01 +1835613,fr,1,4.250000E+00,3.142990E+00,4.605505E+01,5.000000E+00,Active Shallow Crust,1.288947E+02,8.998093E+01,0.000000E+00 +1835812,fr,1,5.950000E+00,3.142990E+00,4.605505E+01,1.500000E+01,Active Shallow Crust,2.400504E+02,5.800055E+01,0.000000E+00 +1836006,fr,1,3.550000E+00,-3.707600E-01,5.092147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,-9.000000E+01 +1836015,fr,1,3.650000E+00,-3.707600E-01,5.092147E+01,5.000000E+00,Active Shallow Crust,2.400016E+02,5.801301E+01,0.000000E+00 +1836027,fr,1,3.750000E+00,-3.707600E-01,5.092147E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.801768E+01,0.000000E+00 +1836036,fr,1,3.850000E+00,-3.707600E-01,5.092147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1836048,fr,2,3.950000E+00,-3.707600E-01,5.092147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1836073,fr,1,4.150000E+00,-3.707600E-01,5.092147E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1836105,fr,1,4.350000E+00,-3.707600E-01,5.092147E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.998274E+01,0.000000E+00 +1836492,fr,1,3.650000E+00,6.045820E+00,4.914331E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998824E+01,0.000000E+00 +1836504,fr,1,3.750000E+00,6.045820E+00,4.914331E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1836552,fr,2,4.150000E+00,6.045820E+00,4.914331E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1836588,fr,1,4.450000E+00,6.045820E+00,4.914331E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +1836654,fr,1,4.950000E+00,6.045820E+00,4.914331E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998935E+01,-9.000000E+01 +1836960,fr,1,3.550000E+00,4.807900E+00,4.393856E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999274E+01,0.000000E+00 +1836962,fr,2,3.550000E+00,4.807900E+00,4.393856E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999274E+01,0.000000E+00 +1836964,fr,1,3.550000E+00,4.807900E+00,4.393856E+01,1.500000E+01,Active Shallow Crust,2.400130E+02,5.799720E+01,0.000000E+00 +1836969,fr,1,3.550000E+00,4.807900E+00,4.393856E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.999274E+01,0.000000E+00 +1836972,fr,6,3.650000E+00,4.807900E+00,4.393856E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998706E+01,0.000000E+00 +1836984,fr,2,3.750000E+00,4.807900E+00,4.393856E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998846E+01,0.000000E+00 +1836985,fr,2,3.750000E+00,4.807900E+00,4.393856E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998846E+01,0.000000E+00 +1836990,fr,1,3.750000E+00,4.807900E+00,4.393856E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998833E+01,-9.000000E+01 +1836996,fr,1,3.850000E+00,4.807900E+00,4.393856E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1836997,fr,1,3.850000E+00,4.807900E+00,4.393856E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1836998,fr,1,3.850000E+00,4.807900E+00,4.393856E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1837000,fr,1,3.850000E+00,4.807900E+00,4.393856E+01,1.500000E+01,Active Shallow Crust,2.400097E+02,5.799804E+01,0.000000E+00 +1837008,fr,1,3.950000E+00,4.807900E+00,4.393856E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +1837009,fr,1,3.950000E+00,4.807900E+00,4.393856E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +1837021,fr,1,4.050000E+00,4.807900E+00,4.393856E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999184E+01,0.000000E+00 +1837032,fr,1,4.150000E+00,4.807900E+00,4.393856E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998908E+01,0.000000E+00 +1837042,fr,1,4.150000E+00,4.807900E+00,4.393856E+01,1.500000E+01,Active Shallow Crust,1.288982E+02,8.999272E+01,0.000000E+00 +1837044,fr,1,4.250000E+00,4.807900E+00,4.393856E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +1837057,fr,1,4.350000E+00,4.807900E+00,4.393856E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +1837068,fr,1,4.450000E+00,4.807900E+00,4.393856E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1837081,fr,1,4.550000E+00,4.807900E+00,4.393856E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +1837129,fr,1,4.950000E+00,4.807900E+00,4.393856E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1837141,fr,1,5.050000E+00,4.807900E+00,4.393856E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +1837164,fr,1,5.250000E+00,4.807900E+00,4.393856E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +1837440,fr,3,3.550000E+00,5.798440E+00,5.121781E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998737E+01,0.000000E+00 +1837441,fr,1,3.550000E+00,5.798440E+00,5.121781E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998737E+01,0.000000E+00 +1837446,fr,1,3.550000E+00,5.798440E+00,5.121781E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998722E+01,-9.000000E+01 +1837452,fr,1,3.650000E+00,5.798440E+00,5.121781E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998874E+01,0.000000E+00 +1837453,fr,2,3.650000E+00,5.798440E+00,5.121781E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998874E+01,0.000000E+00 +1837454,fr,1,3.650000E+00,5.798440E+00,5.121781E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998874E+01,0.000000E+00 +1837456,fr,1,3.650000E+00,5.798440E+00,5.121781E+01,1.500000E+01,Active Shallow Crust,2.400022E+02,5.801240E+01,0.000000E+00 +1837464,fr,1,3.750000E+00,5.798440E+00,5.121781E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1837465,fr,1,3.750000E+00,5.798440E+00,5.121781E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1837466,fr,2,3.750000E+00,5.798440E+00,5.121781E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1837471,fr,1,3.750000E+00,5.798440E+00,5.121781E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +1837476,fr,1,3.850000E+00,5.798440E+00,5.121781E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999106E+01,0.000000E+00 +1837477,fr,1,3.850000E+00,5.798440E+00,5.121781E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999106E+01,0.000000E+00 +1837479,fr,1,3.850000E+00,5.798440E+00,5.121781E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799783E+01,0.000000E+00 +1837486,fr,1,3.850000E+00,5.798440E+00,5.121781E+01,1.500000E+01,Active Shallow Crust,1.288952E+02,8.999553E+01,0.000000E+00 +1837488,fr,1,3.950000E+00,5.798440E+00,5.121781E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998804E+01,0.000000E+00 +1837500,fr,1,4.050000E+00,5.798440E+00,5.121781E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +1837513,fr,1,4.150000E+00,5.798440E+00,5.121781E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +1837514,fr,2,4.150000E+00,5.798440E+00,5.121781E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +1837525,fr,1,4.250000E+00,5.798440E+00,5.121781E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +1837549,fr,1,4.450000E+00,5.798440E+00,5.121781E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +1837555,fr,1,4.450000E+00,5.798440E+00,5.121781E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999093E+01,-9.000000E+01 +1837609,fr,1,4.950000E+00,5.798440E+00,5.121781E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1837632,fr,1,5.150000E+00,5.798440E+00,5.121781E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1839370,fr,1,3.550000E+00,-1.652140E+00,5.058468E+01,1.500000E+01,Active Shallow Crust,1.288955E+02,8.999360E+01,0.000000E+00 +1839840,fr,1,3.550000E+00,3.998480E+00,5.195450E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +1839843,fr,1,3.550000E+00,3.998480E+00,5.195450E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799902E+01,0.000000E+00 +1839884,fr,1,3.850000E+00,3.998480E+00,5.195450E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999110E+01,-9.000000E+01 +1840332,fr,1,3.650000E+00,-2.939400E-01,4.355258E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1840342,fr,1,3.650000E+00,-2.939400E-01,4.355258E+01,1.500000E+01,Active Shallow Crust,1.289008E+02,8.996350E+01,0.000000E+00 +1840356,fr,2,3.850000E+00,-2.939400E-01,4.355258E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1840357,fr,1,3.850000E+00,-2.939400E-01,4.355258E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1840380,fr,1,4.050000E+00,-2.939400E-01,4.355258E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1840392,fr,1,4.150000E+00,-2.939400E-01,4.355258E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1840572,fr,1,5.650000E+00,-2.939400E-01,4.355258E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1840803,fr,1,3.550000E+00,3.185000E+00,4.062003E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799775E+01,0.000000E+00 +1840804,fr,2,3.550000E+00,3.185000E+00,4.062003E+01,1.500000E+01,Active Shallow Crust,2.400118E+02,5.799775E+01,0.000000E+00 +1840872,fr,1,4.150000E+00,3.185000E+00,4.062003E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +1840873,fr,1,4.150000E+00,3.185000E+00,4.062003E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +1841280,fr,3,3.550000E+00,6.855140E+00,4.538803E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999292E+01,0.000000E+00 +1841281,fr,1,3.550000E+00,6.855140E+00,4.538803E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999292E+01,0.000000E+00 +1841313,fr,1,3.750000E+00,6.855140E+00,4.538803E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.996747E+01,0.000000E+00 +1841314,fr,1,3.750000E+00,6.855140E+00,4.538803E+01,1.500000E+01,Active Shallow Crust,1.288966E+02,8.996747E+01,0.000000E+00 +1841316,fr,3,3.850000E+00,6.855140E+00,4.538803E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1841319,fr,1,3.850000E+00,6.855140E+00,4.538803E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799756E+01,0.000000E+00 +1841358,fr,1,4.150000E+00,6.855140E+00,4.538803E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,-9.000000E+01 +1841377,fr,1,4.350000E+00,6.855140E+00,4.538803E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +1841388,fr,1,4.450000E+00,6.855140E+00,4.538803E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1841434,fr,1,4.750000E+00,6.855140E+00,4.538803E+01,1.500000E+01,Active Shallow Crust,1.288887E+02,8.998811E+01,0.000000E+00 +1841445,fr,1,4.850000E+00,6.855140E+00,4.538803E+01,5.000000E+00,Active Shallow Crust,1.288929E+02,8.998897E+01,0.000000E+00 +1841765,fr,1,3.550000E+00,-7.278500E-01,4.918775E+01,2.750000E+01,Active Shallow Crust,2.400126E+02,5.799803E+01,0.000000E+00 +1841766,fr,1,3.550000E+00,-7.278500E-01,4.918775E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +1841784,fr,1,3.750000E+00,-7.278500E-01,4.918775E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1841796,fr,1,3.850000E+00,-7.278500E-01,4.918775E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1841802,fr,1,3.850000E+00,-7.278500E-01,4.918775E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1841810,fr,1,3.950000E+00,-7.278500E-01,4.918775E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1841815,fr,1,3.950000E+00,-7.278500E-01,4.918775E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1841838,fr,1,4.150000E+00,-7.278500E-01,4.918775E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1841846,fr,2,4.250000E+00,-7.278500E-01,4.918775E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1841856,fr,1,4.350000E+00,-7.278500E-01,4.918775E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1841857,fr,1,4.350000E+00,-7.278500E-01,4.918775E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1841868,fr,1,4.450000E+00,-7.278500E-01,4.918775E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1841908,fr,1,4.750000E+00,-7.278500E-01,4.918775E+01,1.500000E+01,Active Shallow Crust,2.400085E+02,5.800470E+01,0.000000E+00 +1841930,fr,1,4.950000E+00,-7.278500E-01,4.918775E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1841956,fr,1,5.150000E+00,-7.278500E-01,4.918775E+01,1.500000E+01,Active Shallow Crust,2.400213E+02,5.800026E+01,0.000000E+00 +1842255,fr,1,3.650000E+00,5.382720E+00,4.160294E+01,5.000000E+00,Active Shallow Crust,2.400016E+02,5.801271E+01,0.000000E+00 +1842265,fr,1,3.750000E+00,5.382720E+00,4.160294E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998802E+01,0.000000E+00 +1842304,fr,1,4.050000E+00,5.382720E+00,4.160294E+01,1.500000E+01,Active Shallow Crust,2.400057E+02,5.800589E+01,0.000000E+00 +1842312,fr,1,4.150000E+00,5.382720E+00,4.160294E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +1842720,fr,1,3.550000E+00,6.663660E+00,4.444207E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999280E+01,0.000000E+00 +1842721,fr,1,3.550000E+00,6.663660E+00,4.444207E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999280E+01,0.000000E+00 +1842722,fr,2,3.550000E+00,6.663660E+00,4.444207E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999280E+01,0.000000E+00 +1842724,fr,1,3.550000E+00,6.663660E+00,4.444207E+01,1.500000E+01,Active Shallow Crust,2.400108E+02,5.799854E+01,0.000000E+00 +1842726,fr,1,3.550000E+00,6.663660E+00,4.444207E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999271E+01,-9.000000E+01 +1842729,fr,1,3.550000E+00,6.663660E+00,4.444207E+01,5.000000E+00,Active Shallow Crust,1.288977E+02,8.999280E+01,0.000000E+00 +1842732,fr,5,3.650000E+00,6.663660E+00,4.444207E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998717E+01,0.000000E+00 +1842735,fr,1,3.650000E+00,6.663660E+00,4.444207E+01,5.000000E+00,Active Shallow Crust,2.399999E+02,5.801398E+01,0.000000E+00 +1842738,fr,1,3.650000E+00,6.663660E+00,4.444207E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998701E+01,-9.000000E+01 +1842742,fr,2,3.650000E+00,6.663660E+00,4.444207E+01,1.500000E+01,Active Shallow Crust,1.289008E+02,8.996349E+01,0.000000E+00 +1842744,fr,1,3.750000E+00,6.663660E+00,4.444207E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +1842745,fr,2,3.750000E+00,6.663660E+00,4.444207E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +1842746,fr,1,3.750000E+00,6.663660E+00,4.444207E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +1842753,fr,2,3.750000E+00,6.663660E+00,4.444207E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996745E+01,0.000000E+00 +1842756,fr,2,3.850000E+00,6.663660E+00,4.444207E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1842759,fr,1,3.850000E+00,6.663660E+00,4.444207E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799769E+01,0.000000E+00 +1842760,fr,1,3.850000E+00,6.663660E+00,4.444207E+01,1.500000E+01,Active Shallow Crust,2.400116E+02,5.799769E+01,0.000000E+00 +1842762,fr,1,3.850000E+00,6.663660E+00,4.444207E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +1842777,fr,1,3.950000E+00,6.663660E+00,4.444207E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.999546E+01,0.000000E+00 +1842780,fr,1,4.050000E+00,6.663660E+00,4.444207E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999191E+01,0.000000E+00 +1842798,fr,2,4.150000E+00,6.663660E+00,4.444207E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998905E+01,-9.000000E+01 +1842804,fr,2,4.250000E+00,6.663660E+00,4.444207E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +1842817,fr,1,4.350000E+00,6.663660E+00,4.444207E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999140E+01,0.000000E+00 +1842819,fr,1,4.350000E+00,6.663660E+00,4.444207E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799559E+01,0.000000E+00 +1842826,fr,1,4.350000E+00,6.663660E+00,4.444207E+01,1.500000E+01,Active Shallow Crust,1.288984E+02,8.998295E+01,0.000000E+00 +1842834,fr,1,4.450000E+00,6.663660E+00,4.444207E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,-9.000000E+01 +1842837,fr,1,4.450000E+00,6.663660E+00,4.444207E+01,5.000000E+00,Active Shallow Crust,1.288926E+02,8.999361E+01,0.000000E+00 +1842840,fr,2,4.550000E+00,6.663660E+00,4.444207E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999089E+01,0.000000E+00 +1842867,fr,1,4.750000E+00,6.663660E+00,4.444207E+01,5.000000E+00,Active Shallow Crust,2.400070E+02,5.800433E+01,0.000000E+00 +1843200,fr,2,3.550000E+00,6.603050E+00,4.781905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999323E+01,0.000000E+00 +1843202,fr,1,3.550000E+00,6.603050E+00,4.781905E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999323E+01,0.000000E+00 +1843203,fr,2,3.550000E+00,6.603050E+00,4.781905E+01,5.000000E+00,Active Shallow Crust,2.400126E+02,5.799829E+01,0.000000E+00 +1843212,fr,2,3.650000E+00,6.603050E+00,4.781905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998793E+01,0.000000E+00 +1843213,fr,2,3.650000E+00,6.603050E+00,4.781905E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998793E+01,0.000000E+00 +1843222,fr,1,3.650000E+00,6.603050E+00,4.781905E+01,1.500000E+01,Active Shallow Crust,1.289013E+02,8.996293E+01,0.000000E+00 +1843227,fr,1,3.750000E+00,6.603050E+00,4.781905E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.801764E+01,0.000000E+00 +1843242,fr,1,3.850000E+00,6.603050E+00,4.781905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,-9.000000E+01 +1843248,fr,1,3.950000E+00,6.603050E+00,4.781905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999146E+01,0.000000E+00 +1843250,fr,1,3.950000E+00,6.603050E+00,4.781905E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999146E+01,0.000000E+00 +1843260,fr,2,4.050000E+00,6.603050E+00,4.781905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998858E+01,0.000000E+00 +1843296,fr,1,4.350000E+00,6.603050E+00,4.781905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998922E+01,0.000000E+00 +1843329,fr,1,4.550000E+00,6.603050E+00,4.781905E+01,5.000000E+00,Active Shallow Crust,1.288932E+02,8.998572E+01,0.000000E+00 +1843358,fr,1,4.850000E+00,6.603050E+00,4.781905E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +1843369,fr,1,4.950000E+00,6.603050E+00,4.781905E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +1843461,fr,1,5.650000E+00,6.603050E+00,4.781905E+01,5.000000E+00,Active Shallow Crust,1.288740E+02,8.999042E+01,0.000000E+00 +1843500,fr,1,6.050000E+00,6.603051E+00,4.781905E+01,5.357596E+00,Active Shallow Crust,3.599998E+02,8.999009E+01,0.000000E+00 +1843680,fr,1,3.550000E+00,5.230060E+00,4.596660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999299E+01,0.000000E+00 +1843693,fr,1,3.650000E+00,5.230060E+00,4.596660E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998750E+01,0.000000E+00 +1843705,fr,2,3.750000E+00,5.230060E+00,4.596660E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998886E+01,0.000000E+00 +1843716,fr,1,3.850000E+00,5.230060E+00,4.596660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1843728,fr,1,3.950000E+00,5.230060E+00,4.596660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999116E+01,0.000000E+00 +1843729,fr,1,3.950000E+00,5.230060E+00,4.596660E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999116E+01,0.000000E+00 +1843734,fr,1,3.950000E+00,5.230060E+00,4.596660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999105E+01,-9.000000E+01 +1843758,fr,1,4.150000E+00,5.230060E+00,4.596660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998934E+01,-9.000000E+01 +1843783,fr,1,4.350000E+00,5.230060E+00,4.596660E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998871E+01,-9.000000E+01 +1843789,fr,1,4.450000E+00,5.230060E+00,4.596660E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1843849,fr,1,4.950000E+00,5.230060E+00,4.596660E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1844234,fr,1,4.150000E+00,-4.859540E+00,4.898139E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1844677,fr,1,3.850000E+00,-5.668460E+00,4.862349E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +1845129,fr,1,3.550000E+00,2.002500E+00,4.920054E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999341E+01,0.000000E+00 +1845145,fr,1,3.750000E+00,2.002500E+00,4.920054E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +1845154,fr,1,3.750000E+00,2.002500E+00,4.920054E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.996742E+01,0.000000E+00 +1845180,fr,1,4.050000E+00,2.002500E+00,4.920054E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +1845192,fr,1,4.150000E+00,2.002500E+00,4.920054E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1845600,fr,1,3.550000E+00,3.394330E+00,5.041274E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1845612,fr,2,3.650000E+00,3.394330E+00,5.041274E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999141E+01,0.000000E+00 +1845624,fr,2,3.750000E+00,3.394330E+00,5.041274E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1845648,fr,4,3.950000E+00,3.394330E+00,5.041274E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1845660,fr,2,4.050000E+00,3.394330E+00,5.041274E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +1845672,fr,1,4.150000E+00,3.394330E+00,5.041274E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +1845681,fr,1,4.150000E+00,3.394330E+00,5.041274E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999356E+01,0.000000E+00 +1845684,fr,1,4.250000E+00,3.394330E+00,5.041274E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1845723,fr,1,4.550000E+00,3.394330E+00,5.041274E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799756E+01,0.000000E+00 +1845732,fr,1,4.650000E+00,3.394330E+00,5.041274E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1845746,fr,1,4.750000E+00,3.394330E+00,5.041274E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +1846082,fr,1,3.550000E+00,3.377480E+00,5.232773E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +1846165,fr,1,4.250000E+00,3.377480E+00,5.232773E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1846166,fr,1,4.250000E+00,3.377480E+00,5.232773E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1846177,fr,1,4.350000E+00,3.377480E+00,5.232773E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1846560,fr,2,3.550000E+00,7.109200E+00,4.356307E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999269E+01,0.000000E+00 +1846574,fr,1,3.650000E+00,7.109200E+00,4.356307E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998698E+01,0.000000E+00 +1846584,fr,1,3.750000E+00,7.109200E+00,4.356307E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998839E+01,0.000000E+00 +1846589,fr,1,3.750000E+00,7.109200E+00,4.356307E+01,2.750000E+01,Active Shallow Crust,2.400072E+02,5.801762E+01,0.000000E+00 +1846596,fr,1,3.850000E+00,7.109200E+00,4.356307E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1846599,fr,1,3.850000E+00,7.109200E+00,4.356307E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.799701E+01,0.000000E+00 +1846608,fr,2,3.950000E+00,7.109200E+00,4.356307E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +1846614,fr,1,3.950000E+00,7.109200E+00,4.356307E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999067E+01,-9.000000E+01 +1846623,fr,1,4.050000E+00,7.109200E+00,4.356307E+01,5.000000E+00,Active Shallow Crust,2.400053E+02,5.800569E+01,0.000000E+00 +1846645,fr,1,4.250000E+00,7.109200E+00,4.356307E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1846678,fr,1,4.450000E+00,7.109200E+00,4.356307E+01,1.500000E+01,Active Shallow Crust,1.288924E+02,8.999352E+01,0.000000E+00 +1846704,fr,1,4.750000E+00,7.109200E+00,4.356307E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999082E+01,0.000000E+00 +1847040,fr,3,3.550000E+00,1.179520E+00,4.744470E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1847052,fr,1,3.650000E+00,1.179520E+00,4.744470E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +1847064,fr,1,3.750000E+00,1.179520E+00,4.744470E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +1847065,fr,1,3.750000E+00,1.179520E+00,4.744470E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +1847068,fr,1,3.750000E+00,1.179520E+00,4.744470E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.801759E+01,0.000000E+00 +1847124,fr,1,4.250000E+00,1.179520E+00,4.744470E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1847136,fr,1,4.350000E+00,1.179520E+00,4.744470E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1847148,fr,1,4.450000E+00,1.179520E+00,4.744470E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1847179,fr,1,4.650000E+00,1.179520E+00,4.744470E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,-9.000000E+01 +1847215,fr,1,4.950000E+00,1.179520E+00,4.744470E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +1847568,fr,1,3.950000E+00,3.067100E+00,5.219649E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1847584,fr,1,4.050000E+00,3.067100E+00,5.219649E+01,1.500000E+01,Active Shallow Crust,2.400068E+02,5.800615E+01,0.000000E+00 +1848000,fr,5,3.550000E+00,-7.641200E-01,4.336908E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1848001,fr,1,3.550000E+00,-7.641200E-01,4.336908E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1848012,fr,2,3.650000E+00,-7.641200E-01,4.336908E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1848013,fr,1,3.650000E+00,-7.641200E-01,4.336908E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1848021,fr,1,3.650000E+00,-7.641200E-01,4.336908E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.996346E+01,0.000000E+00 +1848022,fr,1,3.650000E+00,-7.641200E-01,4.336908E+01,1.500000E+01,Active Shallow Crust,1.289008E+02,8.996346E+01,0.000000E+00 +1848024,fr,2,3.750000E+00,-7.641200E-01,4.336908E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1848036,fr,4,3.850000E+00,-7.641200E-01,4.336908E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +1848037,fr,1,3.850000E+00,-7.641200E-01,4.336908E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +1848038,fr,1,3.850000E+00,-7.641200E-01,4.336908E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +1848039,fr,1,3.850000E+00,-7.641200E-01,4.336908E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.799777E+01,0.000000E+00 +1848043,fr,1,3.850000E+00,-7.641200E-01,4.336908E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,-9.000000E+01 +1848048,fr,1,3.950000E+00,-7.641200E-01,4.336908E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1848051,fr,1,3.950000E+00,-7.641200E-01,4.336908E+01,5.000000E+00,Active Shallow Crust,2.400195E+02,5.800488E+01,0.000000E+00 +1848060,fr,1,4.050000E+00,-7.641200E-01,4.336908E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1848061,fr,1,4.050000E+00,-7.641200E-01,4.336908E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1848062,fr,1,4.050000E+00,-7.641200E-01,4.336908E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1848072,fr,2,4.150000E+00,-7.641200E-01,4.336908E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1848081,fr,1,4.150000E+00,-7.641200E-01,4.336908E+01,5.000000E+00,Active Shallow Crust,1.288980E+02,8.999380E+01,0.000000E+00 +1848084,fr,1,4.250000E+00,-7.641200E-01,4.336908E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1848086,fr,1,4.250000E+00,-7.641200E-01,4.336908E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1848097,fr,1,4.350000E+00,-7.641200E-01,4.336908E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1848108,fr,1,4.450000E+00,-7.641200E-01,4.336908E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1848115,fr,1,4.450000E+00,-7.641200E-01,4.336908E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +1848146,fr,1,4.750000E+00,-7.641200E-01,4.336908E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1848175,fr,1,4.950000E+00,-7.641200E-01,4.336908E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1848226,fr,1,5.350000E+00,-7.641200E-01,4.336908E+01,1.500000E+01,Active Shallow Crust,1.288849E+02,8.999192E+01,0.000000E+00 +1848504,fr,2,3.750000E+00,7.480610E+00,4.881214E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +1848535,fr,1,3.950000E+00,7.480610E+00,4.881214E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999152E+01,-9.000000E+01 +1848552,fr,1,4.150000E+00,7.480610E+00,4.881214E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1848576,fr,1,4.350000E+00,7.480610E+00,4.881214E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1848592,fr,1,4.450000E+00,7.480610E+00,4.881214E+01,1.500000E+01,Active Shallow Crust,2.400058E+02,5.799478E+01,0.000000E+00 +1848961,fr,1,3.550000E+00,6.454120E+00,5.154400E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998746E+01,0.000000E+00 +1848969,fr,1,3.550000E+00,6.454120E+00,5.154400E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999373E+01,0.000000E+00 +1848996,fr,1,3.850000E+00,6.454120E+00,5.154400E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999112E+01,0.000000E+00 +1849968,fr,1,3.950000E+00,-2.842830E+00,4.383344E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999082E+01,0.000000E+00 +1849980,fr,1,4.050000E+00,-2.842830E+00,4.383344E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1850075,fr,1,4.750000E+00,-2.842830E+00,4.383344E+01,2.750000E+01,Active Shallow Crust,1.288893E+02,8.998802E+01,0.000000E+00 +1850400,fr,4,3.550000E+00,6.795260E+00,4.655512E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999306E+01,0.000000E+00 +1850401,fr,3,3.550000E+00,6.795260E+00,4.655512E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999306E+01,0.000000E+00 +1850402,fr,1,3.550000E+00,6.795260E+00,4.655512E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999306E+01,0.000000E+00 +1850403,fr,1,3.550000E+00,6.795260E+00,4.655512E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.799899E+01,0.000000E+00 +1850404,fr,2,3.550000E+00,6.795260E+00,4.655512E+01,1.500000E+01,Active Shallow Crust,2.400106E+02,5.799899E+01,0.000000E+00 +1850406,fr,2,3.550000E+00,6.795260E+00,4.655512E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999299E+01,-9.000000E+01 +1850409,fr,1,3.550000E+00,6.795260E+00,4.655512E+01,5.000000E+00,Active Shallow Crust,1.288971E+02,8.999306E+01,0.000000E+00 +1850410,fr,1,3.550000E+00,6.795260E+00,4.655512E+01,1.500000E+01,Active Shallow Crust,1.288971E+02,8.999306E+01,0.000000E+00 +1850412,fr,9,3.650000E+00,6.795260E+00,4.655512E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998764E+01,0.000000E+00 +1850413,fr,2,3.650000E+00,6.795260E+00,4.655512E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998764E+01,0.000000E+00 +1850415,fr,1,3.650000E+00,6.795260E+00,4.655512E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801263E+01,0.000000E+00 +1850418,fr,1,3.650000E+00,6.795260E+00,4.655512E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998750E+01,-9.000000E+01 +1850419,fr,1,3.650000E+00,6.795260E+00,4.655512E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998750E+01,-9.000000E+01 +1850424,fr,6,3.750000E+00,6.795260E+00,4.655512E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +1850425,fr,3,3.750000E+00,6.795260E+00,4.655512E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +1850426,fr,1,3.750000E+00,6.795260E+00,4.655512E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +1850429,fr,2,3.750000E+00,6.795260E+00,4.655512E+01,2.750000E+01,Active Shallow Crust,2.400076E+02,5.801782E+01,0.000000E+00 +1850430,fr,1,3.750000E+00,6.795260E+00,4.655512E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998885E+01,-9.000000E+01 +1850436,fr,3,3.850000E+00,6.795260E+00,4.655512E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1850437,fr,2,3.850000E+00,6.795260E+00,4.655512E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1850438,fr,1,3.850000E+00,6.795260E+00,4.655512E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1850439,fr,1,3.850000E+00,6.795260E+00,4.655512E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799755E+01,0.000000E+00 +1850440,fr,2,3.850000E+00,6.795260E+00,4.655512E+01,1.500000E+01,Active Shallow Crust,2.400109E+02,5.799755E+01,0.000000E+00 +1850448,fr,6,3.950000E+00,6.795260E+00,4.655512E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999125E+01,0.000000E+00 +1850449,fr,2,3.950000E+00,6.795260E+00,4.655512E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999125E+01,0.000000E+00 +1850450,fr,1,3.950000E+00,6.795260E+00,4.655512E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999125E+01,0.000000E+00 +1850455,fr,1,3.950000E+00,6.795260E+00,4.655512E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999115E+01,-9.000000E+01 +1850458,fr,1,3.950000E+00,6.795260E+00,4.655512E+01,1.500000E+01,Active Shallow Crust,1.289003E+02,8.999344E+01,0.000000E+00 +1850460,fr,1,4.050000E+00,6.795260E+00,4.655512E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998830E+01,0.000000E+00 +1850467,fr,1,4.050000E+00,6.795260E+00,4.655512E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998817E+01,-9.000000E+01 +1850472,fr,2,4.150000E+00,6.795260E+00,4.655512E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +1850484,fr,1,4.250000E+00,6.795260E+00,4.655512E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999071E+01,0.000000E+00 +1850485,fr,1,4.250000E+00,6.795260E+00,4.655512E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999071E+01,0.000000E+00 +1850496,fr,2,4.350000E+00,6.795260E+00,4.655512E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998896E+01,0.000000E+00 +1850498,fr,1,4.350000E+00,6.795260E+00,4.655512E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998896E+01,0.000000E+00 +1850511,fr,1,4.450000E+00,6.795260E+00,4.655512E+01,5.000000E+00,Active Shallow Crust,2.400051E+02,5.799485E+01,0.000000E+00 +1850517,fr,1,4.450000E+00,6.795260E+00,4.655512E+01,5.000000E+00,Active Shallow Crust,1.288925E+02,8.999385E+01,0.000000E+00 +1850519,fr,1,4.450000E+00,6.795260E+00,4.655512E+01,2.750000E+01,Active Shallow Crust,1.288925E+02,8.999385E+01,0.000000E+00 +1850533,fr,1,4.650000E+00,6.795260E+00,4.655512E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1850544,fr,1,4.750000E+00,6.795260E+00,4.655512E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +1850556,fr,1,4.850000E+00,6.795260E+00,4.655512E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +1850559,fr,1,4.850000E+00,6.795260E+00,4.655512E+01,5.000000E+00,Active Shallow Crust,2.400173E+02,5.800230E+01,0.000000E+00 +1850568,fr,1,4.950000E+00,6.795260E+00,4.655512E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +1850603,fr,1,5.150000E+00,6.795260E+00,4.655512E+01,2.750000E+01,Active Shallow Crust,1.288837E+02,8.999081E+01,0.000000E+00 +1850617,fr,1,5.350000E+00,6.795260E+00,4.655512E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1850688,fr,1,5.950000E+00,6.795260E+00,4.655512E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1850704,fr,1,6.050000E+00,6.795260E+00,4.655512E+01,1.500000E+01,Active Shallow Crust,2.400565E+02,5.800027E+01,0.000000E+00 +1850712,fr,1,6.150000E+00,6.795262E+00,4.655512E+01,6.011322E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1850880,fr,3,3.550000E+00,7.720230E+00,4.794950E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999325E+01,0.000000E+00 +1850881,fr,3,3.550000E+00,7.720230E+00,4.794950E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999325E+01,0.000000E+00 +1850882,fr,1,3.550000E+00,7.720230E+00,4.794950E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999325E+01,0.000000E+00 +1850883,fr,1,3.550000E+00,7.720230E+00,4.794950E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.799730E+01,0.000000E+00 +1850886,fr,1,3.550000E+00,7.720230E+00,4.794950E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999316E+01,-9.000000E+01 +1850889,fr,1,3.550000E+00,7.720230E+00,4.794950E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.999662E+01,0.000000E+00 +1850892,fr,2,3.650000E+00,7.720230E+00,4.794950E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998796E+01,0.000000E+00 +1850893,fr,3,3.650000E+00,7.720230E+00,4.794950E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998796E+01,0.000000E+00 +1850895,fr,1,3.650000E+00,7.720230E+00,4.794950E+01,5.000000E+00,Active Shallow Crust,2.400018E+02,5.801275E+01,0.000000E+00 +1850896,fr,1,3.650000E+00,7.720230E+00,4.794950E+01,1.500000E+01,Active Shallow Crust,2.400018E+02,5.801275E+01,0.000000E+00 +1850901,fr,1,3.650000E+00,7.720230E+00,4.794950E+01,5.000000E+00,Active Shallow Crust,1.288999E+02,8.996355E+01,0.000000E+00 +1850902,fr,1,3.650000E+00,7.720230E+00,4.794950E+01,1.500000E+01,Active Shallow Crust,1.288999E+02,8.996355E+01,0.000000E+00 +1850904,fr,5,3.750000E+00,7.720230E+00,4.794950E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1850907,fr,1,3.750000E+00,7.720230E+00,4.794950E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.801791E+01,0.000000E+00 +1850917,fr,1,3.850000E+00,7.720230E+00,4.794950E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +1850925,fr,1,3.850000E+00,7.720230E+00,4.794950E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.999283E+01,0.000000E+00 +1850928,fr,1,3.950000E+00,7.720230E+00,4.794950E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999148E+01,0.000000E+00 +1850940,fr,1,4.050000E+00,7.720230E+00,4.794950E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998860E+01,0.000000E+00 +1850941,fr,1,4.050000E+00,7.720230E+00,4.794950E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998860E+01,0.000000E+00 +1850952,fr,1,4.150000E+00,7.720230E+00,4.794950E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1850953,fr,1,4.150000E+00,7.720230E+00,4.794950E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1850954,fr,1,4.150000E+00,7.720230E+00,4.794950E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1850967,fr,1,4.250000E+00,7.720230E+00,4.794950E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.799429E+01,0.000000E+00 +1850968,fr,1,4.250000E+00,7.720230E+00,4.794950E+01,1.500000E+01,Active Shallow Crust,2.400074E+02,5.799429E+01,0.000000E+00 +1850976,fr,1,4.350000E+00,7.720230E+00,4.794950E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +1850986,fr,1,4.350000E+00,7.720230E+00,4.794950E+01,1.500000E+01,Active Shallow Crust,1.288979E+02,8.998259E+01,0.000000E+00 +1850989,fr,1,4.450000E+00,7.720230E+00,4.794950E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +1850992,fr,1,4.450000E+00,7.720230E+00,4.794950E+01,1.500000E+01,Active Shallow Crust,2.400054E+02,5.799501E+01,0.000000E+00 +1851009,fr,1,4.550000E+00,7.720230E+00,4.794950E+01,5.000000E+00,Active Shallow Crust,1.288932E+02,8.998618E+01,0.000000E+00 +1851096,fr,2,5.350000E+00,7.720230E+00,4.794950E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1851360,fr,1,3.550000E+00,6.030300E+00,5.124740E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998737E+01,0.000000E+00 +1851361,fr,3,3.550000E+00,6.030300E+00,5.124740E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998737E+01,0.000000E+00 +1851366,fr,1,3.550000E+00,6.030300E+00,5.124740E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998723E+01,-9.000000E+01 +1851370,fr,1,3.550000E+00,6.030300E+00,5.124740E+01,1.500000E+01,Active Shallow Crust,1.288960E+02,8.999369E+01,0.000000E+00 +1851372,fr,2,3.650000E+00,6.030300E+00,5.124740E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +1851390,fr,1,3.750000E+00,6.030300E+00,5.124740E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +1851396,fr,1,3.850000E+00,6.030300E+00,5.124740E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +1851397,fr,2,3.850000E+00,6.030300E+00,5.124740E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +1851399,fr,2,3.850000E+00,6.030300E+00,5.124740E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799818E+01,0.000000E+00 +1851402,fr,1,3.850000E+00,6.030300E+00,5.124740E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999096E+01,-9.000000E+01 +1851408,fr,2,3.950000E+00,6.030300E+00,5.124740E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998805E+01,0.000000E+00 +1851411,fr,1,3.950000E+00,6.030300E+00,5.124740E+01,5.000000E+00,Active Shallow Crust,2.400213E+02,5.800445E+01,0.000000E+00 +1851421,fr,1,4.050000E+00,6.030300E+00,5.124740E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +1851429,fr,1,4.050000E+00,6.030300E+00,5.124740E+01,5.000000E+00,Active Shallow Crust,1.288892E+02,8.999467E+01,0.000000E+00 +1851432,fr,2,4.150000E+00,6.030300E+00,5.124740E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +1851433,fr,2,4.150000E+00,6.030300E+00,5.124740E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +1851456,fr,2,4.350000E+00,6.030300E+00,5.124740E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1851457,fr,1,4.350000E+00,6.030300E+00,5.124740E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1851483,fr,1,4.550000E+00,6.030300E+00,5.124740E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799760E+01,0.000000E+00 +1851484,fr,1,4.550000E+00,6.030300E+00,5.124740E+01,1.500000E+01,Active Shallow Crust,2.400108E+02,5.799762E+01,0.000000E+00 +1851493,fr,1,4.650000E+00,6.030300E+00,5.124740E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1851510,fr,1,4.750000E+00,6.030300E+00,5.124740E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,-9.000000E+01 +1851601,fr,1,5.550000E+00,6.030300E+00,5.124740E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1851843,fr,1,3.550000E+00,-1.686470E+00,4.858656E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.799821E+01,0.000000E+00 +1851850,fr,1,3.550000E+00,-1.686470E+00,4.858656E+01,1.500000E+01,Active Shallow Crust,1.288960E+02,8.999416E+01,0.000000E+00 +1851851,fr,1,3.550000E+00,-1.686470E+00,4.858656E+01,2.750000E+01,Active Shallow Crust,1.288960E+02,8.999416E+01,0.000000E+00 +1851852,fr,3,3.650000E+00,-1.686470E+00,4.858656E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1851856,fr,1,3.650000E+00,-1.686470E+00,4.858656E+01,1.500000E+01,Active Shallow Crust,2.400010E+02,5.801310E+01,0.000000E+00 +1851860,fr,1,3.650000E+00,-1.686470E+00,4.858656E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998948E+01,-9.000000E+01 +1851861,fr,1,3.650000E+00,-1.686470E+00,4.858656E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.996343E+01,0.000000E+00 +1851868,fr,1,3.750000E+00,-1.686470E+00,4.858656E+01,1.500000E+01,Active Shallow Crust,2.400085E+02,5.801762E+01,0.000000E+00 +1851873,fr,1,3.750000E+00,-1.686470E+00,4.858656E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.996741E+01,0.000000E+00 +1851876,fr,1,3.850000E+00,-1.686470E+00,4.858656E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +1851877,fr,1,3.850000E+00,-1.686470E+00,4.858656E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +1851888,fr,1,3.950000E+00,-1.686470E+00,4.858656E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +1851892,fr,1,3.950000E+00,-1.686470E+00,4.858656E+01,1.500000E+01,Active Shallow Crust,2.400202E+02,5.800510E+01,0.000000E+00 +1851894,fr,1,3.950000E+00,-1.686470E+00,4.858656E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,-9.000000E+01 +1851897,fr,1,3.950000E+00,-1.686470E+00,4.858656E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.999369E+01,0.000000E+00 +1851912,fr,2,4.150000E+00,-1.686470E+00,4.858656E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1851921,fr,1,4.150000E+00,-1.686470E+00,4.858656E+01,5.000000E+00,Active Shallow Crust,1.288973E+02,8.999373E+01,0.000000E+00 +1851933,fr,1,4.250000E+00,-1.686470E+00,4.858656E+01,5.000000E+00,Active Shallow Crust,1.288941E+02,8.998090E+01,0.000000E+00 +1851948,fr,2,4.450000E+00,-1.686470E+00,4.858656E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1851949,fr,1,4.450000E+00,-1.686470E+00,4.858656E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1851973,fr,1,4.650000E+00,-1.686470E+00,4.858656E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1851987,fr,1,4.750000E+00,-1.686470E+00,4.858656E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.800463E+01,0.000000E+00 +1851998,fr,1,4.850000E+00,-1.686470E+00,4.858656E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1852320,fr,2,3.550000E+00,5.613950E+00,4.562624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999295E+01,0.000000E+00 +1852323,fr,1,3.550000E+00,5.613950E+00,4.562624E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799881E+01,0.000000E+00 +1852327,fr,1,3.550000E+00,5.613950E+00,4.562624E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999287E+01,-9.000000E+01 +1852332,fr,5,3.650000E+00,5.613950E+00,4.562624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998743E+01,0.000000E+00 +1852333,fr,1,3.650000E+00,5.613950E+00,4.562624E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998743E+01,0.000000E+00 +1852338,fr,1,3.650000E+00,5.613950E+00,4.562624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998728E+01,-9.000000E+01 +1852343,fr,1,3.650000E+00,5.613950E+00,4.562624E+01,2.750000E+01,Active Shallow Crust,1.289000E+02,8.996351E+01,0.000000E+00 +1852344,fr,3,3.750000E+00,5.613950E+00,4.562624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998880E+01,0.000000E+00 +1852350,fr,1,3.750000E+00,5.613950E+00,4.562624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998867E+01,-9.000000E+01 +1852357,fr,1,3.850000E+00,5.613950E+00,4.562624E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1852359,fr,1,3.850000E+00,5.613950E+00,4.562624E+01,5.000000E+00,Active Shallow Crust,2.400103E+02,5.799829E+01,0.000000E+00 +1852362,fr,1,3.850000E+00,5.613950E+00,4.562624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,-9.000000E+01 +1852380,fr,2,4.050000E+00,5.613950E+00,4.562624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998811E+01,0.000000E+00 +1852389,fr,1,4.050000E+00,5.613950E+00,4.562624E+01,5.000000E+00,Active Shallow Crust,1.288896E+02,8.999405E+01,0.000000E+00 +1852392,fr,1,4.150000E+00,5.613950E+00,4.562624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +1852404,fr,1,4.250000E+00,5.613950E+00,4.562624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +1852405,fr,1,4.250000E+00,5.613950E+00,4.562624E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +1852431,fr,1,4.450000E+00,5.613950E+00,4.562624E+01,5.000000E+00,Active Shallow Crust,2.400046E+02,5.799480E+01,0.000000E+00 +1852452,fr,1,4.650000E+00,5.613950E+00,4.562624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1852492,fr,1,4.950000E+00,5.613950E+00,4.562624E+01,1.500000E+01,Active Shallow Crust,2.400114E+02,5.800444E+01,0.000000E+00 +1852512,fr,1,5.150000E+00,5.613950E+00,4.562624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1852524,fr,1,5.250000E+00,5.613950E+00,4.562624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1852812,fr,1,3.650000E+00,1.192520E+00,4.422689E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +1852836,fr,1,3.850000E+00,1.192520E+00,4.422689E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1852920,fr,1,4.550000E+00,1.192520E+00,4.422689E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1853281,fr,1,3.550000E+00,6.229600E+00,4.661538E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999307E+01,0.000000E+00 +1853289,fr,1,3.550000E+00,6.229600E+00,4.661538E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999307E+01,0.000000E+00 +1853292,fr,5,3.650000E+00,6.229600E+00,4.661538E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998766E+01,0.000000E+00 +1853295,fr,1,3.650000E+00,6.229600E+00,4.661538E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801324E+01,0.000000E+00 +1853298,fr,1,3.650000E+00,6.229600E+00,4.661538E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998751E+01,-9.000000E+01 +1853307,fr,1,3.750000E+00,6.229600E+00,4.661538E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.801797E+01,0.000000E+00 +1853316,fr,2,3.850000E+00,6.229600E+00,4.661538E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1853329,fr,2,3.950000E+00,6.229600E+00,4.661538E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +1853340,fr,1,4.050000E+00,6.229600E+00,4.661538E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998831E+01,0.000000E+00 +1853341,fr,2,4.050000E+00,6.229600E+00,4.661538E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998831E+01,0.000000E+00 +1853343,fr,1,4.050000E+00,6.229600E+00,4.661538E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.800638E+01,0.000000E+00 +1853346,fr,1,4.050000E+00,6.229600E+00,4.661538E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998818E+01,-9.000000E+01 +1853364,fr,1,4.250000E+00,6.229600E+00,4.661538E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +1853402,fr,1,4.550000E+00,6.229600E+00,4.661538E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +1853604,fr,1,6.250000E+00,6.229604E+00,4.661538E+01,6.744814E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1853760,fr,1,3.550000E+00,-2.134090E+00,4.733638E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1853779,fr,1,3.650000E+00,-2.134090E+00,4.733638E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999076E+01,-9.000000E+01 +1853785,fr,2,3.750000E+00,-2.134090E+00,4.733638E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +1853791,fr,1,3.750000E+00,-2.134090E+00,4.733638E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998902E+01,-9.000000E+01 +1853796,fr,1,3.850000E+00,-2.134090E+00,4.733638E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1853835,fr,1,4.150000E+00,-2.134090E+00,4.733638E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799723E+01,0.000000E+00 +1853868,fr,1,4.450000E+00,-2.134090E+00,4.733638E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1853880,fr,1,4.550000E+00,-2.134090E+00,4.733638E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +1853908,fr,1,4.750000E+00,-2.134090E+00,4.733638E+01,1.500000E+01,Active Shallow Crust,2.400077E+02,5.800470E+01,0.000000E+00 +1853930,fr,1,4.950000E+00,-2.134090E+00,4.733638E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1853932,fr,1,4.950000E+00,-2.134090E+00,4.733638E+01,1.500000E+01,Active Shallow Crust,2.400123E+02,5.800449E+01,0.000000E+00 +1854728,fr,1,3.550000E+00,1.090110E+00,4.475903E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998914E+01,-9.000000E+01 +1854732,fr,1,3.650000E+00,1.090110E+00,4.475903E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1854735,fr,1,3.650000E+00,1.090110E+00,4.475903E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801281E+01,0.000000E+00 +1854780,fr,2,4.050000E+00,1.090110E+00,4.475903E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1855212,fr,1,3.650000E+00,-2.431340E+00,4.470911E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +1855680,fr,1,3.550000E+00,3.542730E+00,4.507440E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +1855682,fr,1,3.550000E+00,3.542730E+00,4.507440E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +1855683,fr,1,3.550000E+00,3.542730E+00,4.507440E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799840E+01,0.000000E+00 +1855692,fr,1,3.650000E+00,3.542730E+00,4.507440E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +1855694,fr,1,3.650000E+00,3.542730E+00,4.507440E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +1855704,fr,2,3.750000E+00,3.542730E+00,4.507440E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +1855717,fr,1,3.850000E+00,3.542730E+00,4.507440E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1855725,fr,1,3.850000E+00,3.542730E+00,4.507440E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999370E+01,0.000000E+00 +1855728,fr,1,3.950000E+00,3.542730E+00,4.507440E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999101E+01,0.000000E+00 +1855741,fr,1,4.050000E+00,3.542730E+00,4.507440E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1855764,fr,1,4.250000E+00,3.542730E+00,4.507440E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1855833,fr,1,4.750000E+00,3.542730E+00,4.507440E+01,5.000000E+00,Active Shallow Crust,1.288892E+02,8.998785E+01,0.000000E+00 +1855837,fr,1,4.850000E+00,3.542730E+00,4.507440E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +1856196,fr,1,3.850000E+00,4.487800E+00,4.202333E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +1856212,fr,1,3.950000E+00,4.487800E+00,4.202333E+01,1.500000E+01,Active Shallow Crust,2.400194E+02,5.800450E+01,0.000000E+00 +1856256,fr,1,4.350000E+00,4.487800E+00,4.202333E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999105E+01,0.000000E+00 +1856342,fr,1,5.050000E+00,4.487800E+00,4.202333E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +1857121,fr,2,3.550000E+00,6.723830E+00,4.325046E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999265E+01,0.000000E+00 +1857124,fr,1,3.550000E+00,6.723830E+00,4.325046E+01,1.500000E+01,Active Shallow Crust,2.400119E+02,5.799790E+01,0.000000E+00 +1857134,fr,1,3.650000E+00,6.723830E+00,4.325046E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998691E+01,0.000000E+00 +1857144,fr,1,3.750000E+00,6.723830E+00,4.325046E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998833E+01,0.000000E+00 +1857160,fr,1,3.850000E+00,6.723830E+00,4.325046E+01,1.500000E+01,Active Shallow Crust,2.400103E+02,5.799787E+01,0.000000E+00 +1857229,fr,1,4.450000E+00,6.723830E+00,4.325046E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +1857419,fr,1,5.950000E+00,6.723830E+00,4.325046E+01,2.750000E+01,Active Shallow Crust,1.288685E+02,8.999014E+01,0.000000E+00 +1857612,fr,1,3.650000E+00,1.219690E+00,4.355255E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1857639,fr,1,3.850000E+00,1.219690E+00,4.355255E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.799781E+01,0.000000E+00 +1858152,fr,1,4.150000E+00,-3.837150E+00,5.015592E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +1859040,fr,1,3.550000E+00,-1.319890E+00,4.220684E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +1859070,fr,1,3.750000E+00,-1.319890E+00,4.220684E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,-9.000000E+01 +1859100,fr,1,4.050000E+00,-1.319890E+00,4.220684E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +1859124,fr,1,4.250000E+00,-1.319890E+00,4.220684E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1859127,fr,1,4.250000E+00,-1.319890E+00,4.220684E+01,5.000000E+00,Active Shallow Crust,2.400067E+02,5.799388E+01,0.000000E+00 +1859215,fr,1,4.950000E+00,-1.319890E+00,4.220684E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,-9.000000E+01 +1859521,fr,1,3.550000E+00,3.008440E+00,5.308135E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +1859534,fr,1,3.650000E+00,3.008440E+00,5.308135E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1859628,fr,1,4.450000E+00,3.008440E+00,5.308135E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1859643,fr,1,4.550000E+00,3.008440E+00,5.308135E+01,5.000000E+00,Active Shallow Crust,2.400115E+02,5.799766E+01,0.000000E+00 +1860027,fr,3,3.750000E+00,4.319350E+00,4.738848E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.801733E+01,0.000000E+00 +1860062,fr,1,4.050000E+00,4.319350E+00,4.738848E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998848E+01,0.000000E+00 +1860063,fr,1,4.050000E+00,4.319350E+00,4.738848E+01,5.000000E+00,Active Shallow Crust,2.400062E+02,5.800607E+01,0.000000E+00 +1860480,fr,1,3.550000E+00,2.071270E+00,4.549927E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +1860492,fr,1,3.650000E+00,2.071270E+00,4.549927E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +1860493,fr,1,3.650000E+00,2.071270E+00,4.549927E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +1860497,fr,1,3.650000E+00,2.071270E+00,4.549927E+01,2.750000E+01,Active Shallow Crust,2.400012E+02,5.801260E+01,0.000000E+00 +1860505,fr,1,3.750000E+00,2.071270E+00,4.549927E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998877E+01,0.000000E+00 +1860516,fr,1,3.850000E+00,2.071270E+00,4.549927E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1860530,fr,1,3.950000E+00,2.071270E+00,4.549927E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999108E+01,0.000000E+00 +1860558,fr,1,4.150000E+00,2.071270E+00,4.549927E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998925E+01,-9.000000E+01 +1860565,fr,1,4.250000E+00,2.071270E+00,4.549927E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +1860577,fr,1,4.350000E+00,2.071270E+00,4.549927E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1861009,fr,1,3.950000E+00,-3.377550E+00,4.265359E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +1861032,fr,1,4.150000E+00,-3.377550E+00,4.265359E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999071E+01,0.000000E+00 +1861440,fr,4,3.550000E+00,7.484010E+00,4.480213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999284E+01,0.000000E+00 +1861444,fr,1,3.550000E+00,7.484010E+00,4.480213E+01,1.500000E+01,Active Shallow Crust,2.400113E+02,5.799890E+01,0.000000E+00 +1861446,fr,1,3.550000E+00,7.484010E+00,4.480213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999276E+01,-9.000000E+01 +1861448,fr,1,3.550000E+00,7.484010E+00,4.480213E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999276E+01,-9.000000E+01 +1861451,fr,1,3.550000E+00,7.484010E+00,4.480213E+01,2.750000E+01,Active Shallow Crust,1.288956E+02,8.999642E+01,0.000000E+00 +1861452,fr,6,3.650000E+00,7.484010E+00,4.480213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998724E+01,0.000000E+00 +1861453,fr,3,3.650000E+00,7.484010E+00,4.480213E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998724E+01,0.000000E+00 +1861455,fr,1,3.650000E+00,7.484010E+00,4.480213E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801322E+01,0.000000E+00 +1861456,fr,1,3.650000E+00,7.484010E+00,4.480213E+01,1.500000E+01,Active Shallow Crust,2.400012E+02,5.801322E+01,0.000000E+00 +1861464,fr,1,3.750000E+00,7.484010E+00,4.480213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998863E+01,0.000000E+00 +1861465,fr,1,3.750000E+00,7.484010E+00,4.480213E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998863E+01,0.000000E+00 +1861466,fr,1,3.750000E+00,7.484010E+00,4.480213E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998863E+01,0.000000E+00 +1861467,fr,2,3.750000E+00,7.484010E+00,4.480213E+01,5.000000E+00,Active Shallow Crust,2.400071E+02,5.801777E+01,0.000000E+00 +1861470,fr,1,3.750000E+00,7.484010E+00,4.480213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998850E+01,-9.000000E+01 +1861479,fr,2,3.850000E+00,7.484010E+00,4.480213E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799776E+01,0.000000E+00 +1861482,fr,1,3.850000E+00,7.484010E+00,4.480213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,-9.000000E+01 +1861488,fr,1,3.950000E+00,7.484010E+00,4.480213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +1861489,fr,2,3.950000E+00,7.484010E+00,4.480213E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +1861495,fr,2,3.950000E+00,7.484010E+00,4.480213E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999087E+01,-9.000000E+01 +1861500,fr,3,4.050000E+00,7.484010E+00,4.480213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999195E+01,0.000000E+00 +1861503,fr,3,4.050000E+00,7.484010E+00,4.480213E+01,5.000000E+00,Active Shallow Crust,2.400055E+02,5.800566E+01,0.000000E+00 +1861506,fr,2,4.050000E+00,7.484010E+00,4.480213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999186E+01,-9.000000E+01 +1861509,fr,1,4.050000E+00,7.484010E+00,4.480213E+01,5.000000E+00,Active Shallow Crust,1.288903E+02,8.999397E+01,0.000000E+00 +1861512,fr,2,4.150000E+00,7.484010E+00,4.480213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +1861524,fr,1,4.250000E+00,7.484010E+00,4.480213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +1861525,fr,1,4.250000E+00,7.484010E+00,4.480213E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +1861526,fr,2,4.250000E+00,7.484010E+00,4.480213E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +1861527,fr,1,4.250000E+00,7.484010E+00,4.480213E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799366E+01,0.000000E+00 +1861536,fr,2,4.350000E+00,7.484010E+00,4.480213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998860E+01,0.000000E+00 +1861554,fr,1,4.450000E+00,7.484010E+00,4.480213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,-9.000000E+01 +1861596,fr,1,4.850000E+00,7.484010E+00,4.480213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1861603,fr,1,4.850000E+00,7.484010E+00,4.480213E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,-9.000000E+01 +1861660,fr,1,5.350000E+00,7.484010E+00,4.480213E+01,1.500000E+01,Active Shallow Crust,2.400239E+02,5.799750E+01,0.000000E+00 +1861668,fr,1,5.450000E+00,7.484010E+00,4.480213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1861860,fr,1,7.050000E+00,7.484036E+00,4.480213E+01,1.694221E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1861971,fr,1,3.950000E+00,-5.697090E+00,4.765815E+01,5.000000E+00,Active Shallow Crust,2.400204E+02,5.800467E+01,0.000000E+00 +1862895,fr,1,3.650000E+00,-1.929860E+00,4.653955E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801308E+01,0.000000E+00 +1862905,fr,1,3.750000E+00,-1.929860E+00,4.653955E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1862906,fr,2,3.750000E+00,-1.929860E+00,4.653955E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1862925,fr,1,3.850000E+00,-1.929860E+00,4.653955E+01,5.000000E+00,Active Shallow Crust,1.288953E+02,8.999387E+01,0.000000E+00 +1862929,fr,1,3.950000E+00,-1.929860E+00,4.653955E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1862943,fr,1,4.050000E+00,-1.929860E+00,4.653955E+01,5.000000E+00,Active Shallow Crust,2.400058E+02,5.800585E+01,0.000000E+00 +1862978,fr,1,4.350000E+00,-1.929860E+00,4.653955E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1863003,fr,1,4.550000E+00,-1.929860E+00,4.653955E+01,5.000000E+00,Active Shallow Crust,2.400093E+02,5.799725E+01,0.000000E+00 +1863015,fr,1,4.650000E+00,-1.929860E+00,4.653955E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799416E+01,0.000000E+00 +1863840,fr,1,3.550000E+00,-1.666140E+00,4.978929E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1863844,fr,1,3.550000E+00,-1.666140E+00,4.978929E+01,1.500000E+01,Active Shallow Crust,2.400126E+02,5.799824E+01,0.000000E+00 +1863882,fr,1,3.850000E+00,-1.666140E+00,4.978929E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,-9.000000E+01 +1863927,fr,1,4.250000E+00,-1.666140E+00,4.978929E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799414E+01,0.000000E+00 +1864320,fr,2,3.550000E+00,8.022580E+00,4.987719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998700E+01,0.000000E+00 +1864338,fr,1,3.650000E+00,8.022580E+00,4.987719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998828E+01,-9.000000E+01 +1864344,fr,1,3.750000E+00,8.022580E+00,4.987719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1864356,fr,1,3.850000E+00,8.022580E+00,4.987719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999080E+01,0.000000E+00 +1864357,fr,3,3.850000E+00,8.022580E+00,4.987719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999080E+01,0.000000E+00 +1864361,fr,1,3.850000E+00,8.022580E+00,4.987719E+01,2.750000E+01,Active Shallow Crust,2.400113E+02,5.799747E+01,0.000000E+00 +1864380,fr,1,4.050000E+00,8.022580E+00,4.987719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999269E+01,0.000000E+00 +1864381,fr,1,4.050000E+00,8.022580E+00,4.987719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999269E+01,0.000000E+00 +1864404,fr,1,4.250000E+00,8.022580E+00,4.987719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998839E+01,0.000000E+00 +1864413,fr,1,4.250000E+00,8.022580E+00,4.987719E+01,5.000000E+00,Active Shallow Crust,1.288924E+02,8.998107E+01,0.000000E+00 +1864431,fr,1,4.450000E+00,8.022580E+00,4.987719E+01,5.000000E+00,Active Shallow Crust,2.400058E+02,5.799525E+01,0.000000E+00 +1864440,fr,1,4.550000E+00,8.022580E+00,4.987719E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999178E+01,0.000000E+00 +1864443,fr,1,4.550000E+00,8.022580E+00,4.987719E+01,5.000000E+00,Active Shallow Crust,2.400102E+02,5.799718E+01,0.000000E+00 +1864453,fr,1,4.650000E+00,8.022580E+00,4.987719E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +1864814,fr,1,3.650000E+00,1.763280E+00,4.387370E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +1864815,fr,1,3.650000E+00,1.763280E+00,4.387370E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801281E+01,0.000000E+00 +1864827,fr,1,3.750000E+00,1.763280E+00,4.387370E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.801755E+01,0.000000E+00 +1864920,fr,1,4.550000E+00,1.763280E+00,4.387370E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1865281,fr,2,3.550000E+00,6.800700E-01,4.323409E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1865283,fr,1,3.550000E+00,6.800700E-01,4.323409E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799812E+01,0.000000E+00 +1865290,fr,1,3.550000E+00,6.800700E-01,4.323409E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.999403E+01,0.000000E+00 +1865292,fr,2,3.650000E+00,6.800700E-01,4.323409E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1865293,fr,1,3.650000E+00,6.800700E-01,4.323409E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1865304,fr,2,3.750000E+00,6.800700E-01,4.323409E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1865316,fr,1,3.850000E+00,6.800700E-01,4.323409E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1865340,fr,1,4.050000E+00,6.800700E-01,4.323409E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1865376,fr,1,4.350000E+00,6.800700E-01,4.323409E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1865397,fr,1,4.450000E+00,6.800700E-01,4.323409E+01,5.000000E+00,Active Shallow Crust,1.288930E+02,8.999364E+01,0.000000E+00 +1865400,fr,1,4.550000E+00,6.800700E-01,4.323409E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1865763,fr,1,3.550000E+00,-2.839710E+00,4.216300E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799822E+01,0.000000E+00 +1865772,fr,1,3.650000E+00,-2.839710E+00,4.216300E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1865796,fr,1,3.850000E+00,-2.839710E+00,4.216300E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +1865817,fr,1,3.950000E+00,-2.839710E+00,4.216300E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.999410E+01,0.000000E+00 +1865823,fr,1,4.050000E+00,-2.839710E+00,4.216300E+01,5.000000E+00,Active Shallow Crust,2.400052E+02,5.800595E+01,0.000000E+00 +1865832,fr,1,4.150000E+00,-2.839710E+00,4.216300E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +1865856,fr,1,4.350000E+00,-2.839710E+00,4.216300E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1866240,fr,1,3.550000E+00,-4.309720E+00,4.794662E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999325E+01,0.000000E+00 +1866246,fr,1,3.550000E+00,-4.309720E+00,4.794662E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999316E+01,-9.000000E+01 +1866253,fr,1,3.650000E+00,-4.309720E+00,4.794662E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998796E+01,0.000000E+00 +1866261,fr,1,3.650000E+00,-4.309720E+00,4.794662E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.996355E+01,0.000000E+00 +1866264,fr,1,3.750000E+00,-4.309720E+00,4.794662E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1866303,fr,1,4.050000E+00,-4.309720E+00,4.794662E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.800609E+01,0.000000E+00 +1866324,fr,1,4.250000E+00,-4.309720E+00,4.794662E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999095E+01,0.000000E+00 +1866325,fr,1,4.250000E+00,-4.309720E+00,4.794662E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999095E+01,0.000000E+00 +1866377,fr,1,4.650000E+00,-4.309720E+00,4.794662E+01,2.750000E+01,Active Shallow Crust,2.400111E+02,5.799440E+01,0.000000E+00 +1866720,fr,3,3.550000E+00,-4.401160E+00,4.861910E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998667E+01,0.000000E+00 +1866744,fr,1,3.750000E+00,-4.401160E+00,4.861910E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998941E+01,0.000000E+00 +1866750,fr,1,3.750000E+00,-4.401160E+00,4.861910E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998929E+01,-9.000000E+01 +1866780,fr,1,4.050000E+00,-4.401160E+00,4.861910E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +1866781,fr,1,4.050000E+00,-4.401160E+00,4.861910E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +1866805,fr,1,4.250000E+00,-4.401160E+00,4.861910E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +1866817,fr,1,4.350000E+00,-4.401160E+00,4.861910E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +1866843,fr,1,4.550000E+00,-4.401160E+00,4.861910E+01,5.000000E+00,Active Shallow Crust,2.400098E+02,5.799772E+01,0.000000E+00 +1866864,fr,1,4.750000E+00,-4.401160E+00,4.861910E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1866881,fr,1,4.850000E+00,-4.401160E+00,4.861910E+01,2.750000E+01,Active Shallow Crust,2.400181E+02,5.800258E+01,0.000000E+00 +1866888,fr,1,4.950000E+00,-4.401160E+00,4.861910E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +1867017,fr,1,5.950000E+00,-4.401160E+00,4.861910E+01,5.000000E+00,Active Shallow Crust,1.288620E+02,8.999010E+01,0.000000E+00 +1867680,fr,1,3.550000E+00,8.718500E+00,4.907241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998679E+01,0.000000E+00 +1867685,fr,1,3.550000E+00,8.718500E+00,4.907241E+01,2.750000E+01,Active Shallow Crust,2.400140E+02,5.799826E+01,0.000000E+00 +1867686,fr,1,3.550000E+00,8.718500E+00,4.907241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998663E+01,-9.000000E+01 +1867694,fr,1,3.650000E+00,8.718500E+00,4.907241E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998823E+01,0.000000E+00 +1867695,fr,1,3.650000E+00,8.718500E+00,4.907241E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801405E+01,0.000000E+00 +1867705,fr,1,3.750000E+00,8.718500E+00,4.907241E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +1867749,fr,1,4.050000E+00,8.718500E+00,4.907241E+01,5.000000E+00,Active Shallow Crust,1.288921E+02,8.999257E+01,0.000000E+00 +1867800,fr,2,4.550000E+00,8.718500E+00,4.907241E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999165E+01,0.000000E+00 +1868041,fr,1,6.550000E+00,8.718500E+00,4.907241E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1868160,fr,2,3.550000E+00,3.024100E-01,4.658565E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1868161,fr,2,3.550000E+00,3.024100E-01,4.658565E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1868163,fr,1,3.550000E+00,3.024100E-01,4.658565E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799811E+01,0.000000E+00 +1868173,fr,1,3.650000E+00,3.024100E-01,4.658565E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1868182,fr,1,3.650000E+00,3.024100E-01,4.658565E+01,1.500000E+01,Active Shallow Crust,1.289004E+02,8.996352E+01,0.000000E+00 +1868187,fr,1,3.750000E+00,3.024100E-01,4.658565E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801758E+01,0.000000E+00 +1868197,fr,1,3.850000E+00,3.024100E-01,4.658565E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1868208,fr,1,3.950000E+00,3.024100E-01,4.658565E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1868217,fr,1,3.950000E+00,3.024100E-01,4.658565E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.999371E+01,0.000000E+00 +1868220,fr,1,4.050000E+00,3.024100E-01,4.658565E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1868232,fr,1,4.150000E+00,3.024100E-01,4.658565E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1868262,fr,1,4.350000E+00,3.024100E-01,4.658565E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +1868376,fr,1,5.350000E+00,3.024100E-01,4.658565E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1869120,fr,2,3.550000E+00,9.047510E+00,4.923177E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998683E+01,0.000000E+00 +1869132,fr,1,3.650000E+00,9.047510E+00,4.923177E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998827E+01,0.000000E+00 +1869161,fr,1,3.850000E+00,9.047510E+00,4.923177E+01,2.750000E+01,Active Shallow Crust,2.400126E+02,5.799683E+01,0.000000E+00 +1869171,fr,2,3.950000E+00,9.047510E+00,4.923177E+01,5.000000E+00,Active Shallow Crust,2.400198E+02,5.800468E+01,0.000000E+00 +1869206,fr,1,4.250000E+00,9.047510E+00,4.923177E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998824E+01,0.000000E+00 +1869229,fr,1,4.450000E+00,9.047510E+00,4.923177E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +1869236,fr,1,4.450000E+00,9.047510E+00,4.923177E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,-9.000000E+01 +1870086,fr,1,3.550000E+00,1.102290E+00,5.189203E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,-9.000000E+01 +1870090,fr,1,3.550000E+00,1.102290E+00,5.189203E+01,1.500000E+01,Active Shallow Crust,1.288955E+02,8.999377E+01,0.000000E+00 +1870128,fr,1,3.950000E+00,1.102290E+00,5.189203E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1870572,fr,1,3.650000E+00,2.328430E+00,5.141487E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998879E+01,0.000000E+00 +1870609,fr,1,3.950000E+00,2.328430E+00,5.141487E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1870659,fr,1,4.350000E+00,2.328430E+00,5.141487E+01,5.000000E+00,Active Shallow Crust,2.400096E+02,5.799618E+01,0.000000E+00 +1870680,fr,1,4.550000E+00,2.328430E+00,5.141487E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1870693,fr,1,4.650000E+00,2.328430E+00,5.141487E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1870713,fr,1,4.750000E+00,2.328430E+00,5.141487E+01,5.000000E+00,Active Shallow Crust,1.288871E+02,8.998806E+01,0.000000E+00 +1871042,fr,1,3.550000E+00,-7.406300E-01,4.419361E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1871052,fr,1,3.650000E+00,-7.406300E-01,4.419361E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1871148,fr,1,4.450000E+00,-7.406300E-01,4.419361E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1871175,fr,1,4.650000E+00,-7.406300E-01,4.419361E+01,5.000000E+00,Active Shallow Crust,2.400101E+02,5.799409E+01,0.000000E+00 +1871497,fr,1,7.350000E+00,-7.406245E-01,4.419361E+01,1.750000E+01,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +1871548,fr,1,3.750000E+00,5.547320E+00,4.189459E+01,1.500000E+01,Active Shallow Crust,2.400082E+02,5.801780E+01,0.000000E+00 +1872060,fr,1,4.050000E+00,3.722080E+00,4.932381E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +1872108,fr,1,4.450000E+00,3.722080E+00,4.932381E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +1872481,fr,1,3.550000E+00,2.679700E-01,4.278643E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1872483,fr,1,3.550000E+00,2.679700E-01,4.278643E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799819E+01,0.000000E+00 +1872484,fr,1,3.550000E+00,2.679700E-01,4.278643E+01,1.500000E+01,Active Shallow Crust,2.400118E+02,5.799819E+01,0.000000E+00 +1872486,fr,1,3.550000E+00,2.679700E-01,4.278643E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,-9.000000E+01 +1872489,fr,1,3.550000E+00,2.679700E-01,4.278643E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.999352E+01,0.000000E+00 +1872492,fr,1,3.650000E+00,2.679700E-01,4.278643E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1872494,fr,2,3.650000E+00,2.679700E-01,4.278643E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1872495,fr,1,3.650000E+00,2.679700E-01,4.278643E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801285E+01,0.000000E+00 +1872498,fr,1,3.650000E+00,2.679700E-01,4.278643E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +1872504,fr,1,3.750000E+00,2.679700E-01,4.278643E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1872505,fr,3,3.750000E+00,2.679700E-01,4.278643E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1872506,fr,1,3.750000E+00,2.679700E-01,4.278643E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1872507,fr,1,3.750000E+00,2.679700E-01,4.278643E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801748E+01,0.000000E+00 +1872510,fr,1,3.750000E+00,2.679700E-01,4.278643E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1872516,fr,4,3.850000E+00,2.679700E-01,4.278643E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1872517,fr,1,3.850000E+00,2.679700E-01,4.278643E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1872528,fr,1,3.950000E+00,2.679700E-01,4.278643E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1872532,fr,1,3.950000E+00,2.679700E-01,4.278643E+01,1.500000E+01,Active Shallow Crust,2.400193E+02,5.800487E+01,0.000000E+00 +1872538,fr,1,3.950000E+00,2.679700E-01,4.278643E+01,1.500000E+01,Active Shallow Crust,1.289008E+02,8.999373E+01,0.000000E+00 +1872540,fr,1,4.050000E+00,2.679700E-01,4.278643E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1872550,fr,1,4.050000E+00,2.679700E-01,4.278643E+01,1.500000E+01,Active Shallow Crust,1.288910E+02,8.999376E+01,0.000000E+00 +1872558,fr,1,4.150000E+00,2.679700E-01,4.278643E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +1872567,fr,1,4.250000E+00,2.679700E-01,4.278643E+01,5.000000E+00,Active Shallow Crust,2.400068E+02,5.799396E+01,0.000000E+00 +1872580,fr,1,4.350000E+00,2.679700E-01,4.278643E+01,1.500000E+01,Active Shallow Crust,2.400076E+02,5.799580E+01,0.000000E+00 +1872583,fr,1,4.350000E+00,2.679700E-01,4.278643E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +1872609,fr,1,4.550000E+00,2.679700E-01,4.278643E+01,5.000000E+00,Active Shallow Crust,1.288948E+02,8.998578E+01,0.000000E+00 +1872618,fr,1,4.650000E+00,2.679700E-01,4.278643E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1872624,fr,1,4.750000E+00,2.679700E-01,4.278643E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1872648,fr,1,4.950000E+00,2.679700E-01,4.278643E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1872969,fr,1,3.550000E+00,6.095840E+00,4.317423E+01,5.000000E+00,Active Shallow Crust,1.288974E+02,8.999265E+01,0.000000E+00 +1873440,fr,1,3.550000E+00,-2.267590E+00,4.867526E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1873447,fr,1,3.550000E+00,-2.267590E+00,4.867526E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,-9.000000E+01 +1873452,fr,1,3.650000E+00,-2.267590E+00,4.867526E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +1873456,fr,1,3.650000E+00,-2.267590E+00,4.867526E+01,1.500000E+01,Active Shallow Crust,2.400016E+02,5.801245E+01,0.000000E+00 +1873464,fr,1,3.750000E+00,-2.267590E+00,4.867526E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +1873465,fr,2,3.750000E+00,-2.267590E+00,4.867526E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +1873476,fr,1,3.850000E+00,-2.267590E+00,4.867526E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +1873491,fr,1,3.950000E+00,-2.267590E+00,4.867526E+01,5.000000E+00,Active Shallow Crust,2.400202E+02,5.800505E+01,0.000000E+00 +1873502,fr,1,4.050000E+00,-2.267590E+00,4.867526E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +1873524,fr,3,4.250000E+00,-2.267590E+00,4.867526E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1873548,fr,1,4.450000E+00,-2.267590E+00,4.867526E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +1873920,fr,1,3.550000E+00,-2.928990E+00,4.942730E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1873932,fr,1,3.650000E+00,-2.928990E+00,4.942730E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +1873944,fr,1,3.750000E+00,-2.928990E+00,4.942730E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +1874148,fr,1,5.450000E+00,-2.928990E+00,4.942730E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1874403,fr,1,3.550000E+00,3.679860E+00,4.190867E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799786E+01,0.000000E+00 +1874425,fr,1,3.750000E+00,3.679860E+00,4.190867E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999106E+01,0.000000E+00 +1874431,fr,1,3.750000E+00,3.679860E+00,4.190867E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999095E+01,-9.000000E+01 +1874486,fr,1,4.250000E+00,3.679860E+00,4.190867E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1874508,fr,1,4.450000E+00,3.679860E+00,4.190867E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +1874902,fr,1,3.650000E+00,6.141800E-01,4.458613E+01,1.500000E+01,Active Shallow Crust,1.289006E+02,8.996349E+01,0.000000E+00 +1874976,fr,1,4.350000E+00,6.141800E-01,4.458613E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1874978,fr,1,4.350000E+00,6.141800E-01,4.458613E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1875372,fr,1,3.650000E+00,-8.413500E-01,4.784509E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1875374,fr,1,3.650000E+00,-8.413500E-01,4.784509E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1875385,fr,1,3.750000E+00,-8.413500E-01,4.784509E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1875390,fr,1,3.750000E+00,-8.413500E-01,4.784509E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,-9.000000E+01 +1875399,fr,1,3.850000E+00,-8.413500E-01,4.784509E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799780E+01,0.000000E+00 +1875434,fr,1,4.150000E+00,-8.413500E-01,4.784509E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1875456,fr,1,4.350000E+00,-8.413500E-01,4.784509E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1875846,fr,1,3.550000E+00,3.458890E+00,4.079600E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998842E+01,-9.000000E+01 +1875854,fr,1,3.650000E+00,3.458890E+00,4.079600E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1875864,fr,1,3.750000E+00,3.458890E+00,4.079600E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +1875879,fr,1,3.850000E+00,3.458890E+00,4.079600E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799766E+01,0.000000E+00 +1876349,fr,1,3.750000E+00,3.127110E+00,4.669786E+01,2.750000E+01,Active Shallow Crust,2.400089E+02,5.801730E+01,0.000000E+00 +1876359,fr,1,3.850000E+00,3.127110E+00,4.669786E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.799789E+01,0.000000E+00 +1876370,fr,1,3.950000E+00,3.127110E+00,4.669786E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +1876380,fr,1,4.050000E+00,3.127110E+00,4.669786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +1876803,fr,1,3.550000E+00,-5.809900E-01,5.130239E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799822E+01,0.000000E+00 +1876825,fr,1,3.750000E+00,-5.809900E-01,5.130239E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1876836,fr,1,3.850000E+00,-5.809900E-01,5.130239E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1876860,fr,1,4.050000E+00,-5.809900E-01,5.130239E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1876910,fr,1,4.450000E+00,-5.809900E-01,5.130239E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1877292,fr,1,3.650000E+00,1.754580E+00,4.774187E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1877298,fr,1,3.650000E+00,1.754580E+00,4.774187E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,-9.000000E+01 +1877391,fr,1,4.450000E+00,1.754580E+00,4.774187E+01,5.000000E+00,Active Shallow Crust,2.400056E+02,5.799468E+01,0.000000E+00 +1877613,fr,1,6.250000E+00,1.754577E+00,4.774187E+01,6.744814E+00,Active Shallow Crust,1.288473E+02,8.999044E+01,0.000000E+00 +1877760,fr,1,3.550000E+00,7.998030E+00,4.591103E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999298E+01,0.000000E+00 +1877762,fr,1,3.550000E+00,7.998030E+00,4.591103E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999298E+01,0.000000E+00 +1877770,fr,1,3.550000E+00,7.998030E+00,4.591103E+01,1.500000E+01,Active Shallow Crust,1.288948E+02,8.999298E+01,0.000000E+00 +1877772,fr,1,3.650000E+00,7.998030E+00,4.591103E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998750E+01,0.000000E+00 +1877773,fr,1,3.650000E+00,7.998030E+00,4.591103E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998750E+01,0.000000E+00 +1877775,fr,1,3.650000E+00,7.998030E+00,4.591103E+01,5.000000E+00,Active Shallow Crust,2.399997E+02,5.801220E+01,0.000000E+00 +1877820,fr,1,4.050000E+00,7.998030E+00,4.591103E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998817E+01,0.000000E+00 +1877824,fr,1,4.050000E+00,7.998030E+00,4.591103E+01,1.500000E+01,Active Shallow Crust,2.400055E+02,5.800510E+01,0.000000E+00 +1877835,fr,1,4.150000E+00,7.998030E+00,4.591103E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799732E+01,0.000000E+00 +1877892,fr,1,4.650000E+00,7.998030E+00,4.591103E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1877917,fr,1,4.850000E+00,7.998030E+00,4.591103E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +1877952,fr,1,5.150000E+00,7.998030E+00,4.591103E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1878252,fr,1,3.650000E+00,-3.925880E+00,4.702780E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +1878722,fr,3,3.550000E+00,4.513380E+00,4.442680E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999280E+01,0.000000E+00 +1878723,fr,1,3.550000E+00,4.513380E+00,4.442680E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799839E+01,0.000000E+00 +1878732,fr,2,3.650000E+00,4.513380E+00,4.442680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998716E+01,0.000000E+00 +1878739,fr,2,3.650000E+00,4.513380E+00,4.442680E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998701E+01,-9.000000E+01 +1878749,fr,1,3.750000E+00,4.513380E+00,4.442680E+01,2.750000E+01,Active Shallow Crust,2.400077E+02,5.801726E+01,0.000000E+00 +1878760,fr,1,3.850000E+00,4.513380E+00,4.442680E+01,1.500000E+01,Active Shallow Crust,2.400104E+02,5.799817E+01,0.000000E+00 +1878762,fr,1,3.850000E+00,4.513380E+00,4.442680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +1878766,fr,1,3.850000E+00,4.513380E+00,4.442680E+01,1.500000E+01,Active Shallow Crust,1.288949E+02,8.999490E+01,0.000000E+00 +1878767,fr,1,3.850000E+00,4.513380E+00,4.442680E+01,2.750000E+01,Active Shallow Crust,1.288949E+02,8.999490E+01,0.000000E+00 +1878768,fr,1,3.950000E+00,4.513380E+00,4.442680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +1878780,fr,1,4.050000E+00,4.513380E+00,4.442680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999190E+01,0.000000E+00 +1878791,fr,1,4.050000E+00,4.513380E+00,4.442680E+01,2.750000E+01,Active Shallow Crust,1.288919E+02,8.999191E+01,0.000000E+00 +1878794,fr,1,4.150000E+00,4.513380E+00,4.442680E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +1878810,fr,1,4.250000E+00,4.513380E+00,4.442680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,-9.000000E+01 +1878819,fr,1,4.350000E+00,4.513380E+00,4.442680E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799573E+01,0.000000E+00 +1878843,fr,1,4.550000E+00,4.513380E+00,4.442680E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.799743E+01,0.000000E+00 +1878863,fr,1,4.650000E+00,4.513380E+00,4.442680E+01,2.750000E+01,Active Shallow Crust,1.288913E+02,8.998711E+01,0.000000E+00 +1878867,fr,1,4.750000E+00,4.513380E+00,4.442680E+01,5.000000E+00,Active Shallow Crust,2.400067E+02,5.800457E+01,0.000000E+00 +1878984,fr,1,5.750000E+00,4.513380E+00,4.442680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +1879200,fr,1,3.550000E+00,2.563770E+00,4.570487E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1879201,fr,1,3.550000E+00,2.563770E+00,4.570487E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1879202,fr,1,3.550000E+00,2.563770E+00,4.570487E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1879211,fr,1,3.550000E+00,2.563770E+00,4.570487E+01,2.750000E+01,Active Shallow Crust,1.288960E+02,8.999296E+01,0.000000E+00 +1879212,fr,3,3.650000E+00,2.563770E+00,4.570487E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +1879215,fr,1,3.650000E+00,2.563770E+00,4.570487E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801294E+01,0.000000E+00 +1879219,fr,1,3.650000E+00,2.563770E+00,4.570487E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999048E+01,-9.000000E+01 +1879240,fr,1,3.850000E+00,2.563770E+00,4.570487E+01,1.500000E+01,Active Shallow Crust,2.400104E+02,5.799781E+01,0.000000E+00 +1879243,fr,1,3.850000E+00,2.563770E+00,4.570487E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +1879248,fr,2,3.950000E+00,2.563770E+00,4.570487E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998889E+01,0.000000E+00 +1879249,fr,1,3.950000E+00,2.563770E+00,4.570487E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998889E+01,0.000000E+00 +1879260,fr,1,4.050000E+00,2.563770E+00,4.570487E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1879261,fr,1,4.050000E+00,2.563770E+00,4.570487E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1879296,fr,1,4.350000E+00,2.563770E+00,4.570487E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1879347,fr,1,4.750000E+00,2.563770E+00,4.570487E+01,5.000000E+00,Active Shallow Crust,2.400072E+02,5.800439E+01,0.000000E+00 +1879689,fr,1,3.550000E+00,3.713800E+00,4.231659E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.999255E+01,0.000000E+00 +1879693,fr,1,3.650000E+00,3.713800E+00,4.231659E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1879704,fr,1,3.750000E+00,3.713800E+00,4.231659E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999112E+01,0.000000E+00 +1879705,fr,1,3.750000E+00,3.713800E+00,4.231659E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999112E+01,0.000000E+00 +1879740,fr,1,4.050000E+00,3.713800E+00,4.231659E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1879743,fr,1,4.050000E+00,3.713800E+00,4.231659E+01,5.000000E+00,Active Shallow Crust,2.400051E+02,5.800604E+01,0.000000E+00 +1879767,fr,1,4.250000E+00,3.713800E+00,4.231659E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.799395E+01,0.000000E+00 +1880673,fr,1,3.750000E+00,-3.456620E+00,4.376062E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.996745E+01,0.000000E+00 +1880674,fr,1,3.750000E+00,-3.456620E+00,4.376062E+01,1.500000E+01,Active Shallow Crust,1.288966E+02,8.996745E+01,0.000000E+00 +1880688,fr,1,3.950000E+00,-3.456620E+00,4.376062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +1880712,fr,1,4.150000E+00,-3.456620E+00,4.376062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1880715,fr,1,4.150000E+00,-3.456620E+00,4.376062E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799704E+01,0.000000E+00 +1880725,fr,1,4.250000E+00,-3.456620E+00,4.376062E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +1880736,fr,1,4.350000E+00,-3.456620E+00,4.376062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1881132,fr,1,3.650000E+00,6.658880E+00,5.034168E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998853E+01,0.000000E+00 +1881136,fr,1,3.650000E+00,6.658880E+00,5.034168E+01,1.500000E+01,Active Shallow Crust,2.400010E+02,5.801346E+01,0.000000E+00 +1881139,fr,1,3.650000E+00,6.658880E+00,5.034168E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998840E+01,-9.000000E+01 +1881144,fr,1,3.750000E+00,6.658880E+00,5.034168E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1881145,fr,1,3.750000E+00,6.658880E+00,5.034168E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1881154,fr,1,3.750000E+00,6.658880E+00,5.034168E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.996706E+01,0.000000E+00 +1881169,fr,1,3.950000E+00,6.658880E+00,5.034168E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999187E+01,0.000000E+00 +1881600,fr,1,3.550000E+00,-1.222310E+00,4.981900E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +1881601,fr,2,3.550000E+00,-1.222310E+00,4.981900E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +1881606,fr,1,3.550000E+00,-1.222310E+00,4.981900E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,-9.000000E+01 +1881615,fr,1,3.650000E+00,-1.222310E+00,4.981900E+01,5.000000E+00,Active Shallow Crust,2.400015E+02,5.801297E+01,0.000000E+00 +1881624,fr,1,3.750000E+00,-1.222310E+00,4.981900E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +1881633,fr,1,3.750000E+00,-1.222310E+00,4.981900E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996732E+01,0.000000E+00 +1881648,fr,1,3.950000E+00,-1.222310E+00,4.981900E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +1881664,fr,1,4.050000E+00,-1.222310E+00,4.981900E+01,1.500000E+01,Active Shallow Crust,2.400064E+02,5.800607E+01,0.000000E+00 +1881665,fr,1,4.050000E+00,-1.222310E+00,4.981900E+01,2.750000E+01,Active Shallow Crust,2.400064E+02,5.800607E+01,0.000000E+00 +1881768,fr,1,4.950000E+00,-1.222310E+00,4.981900E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1882080,fr,4,3.550000E+00,2.463490E+00,4.620661E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +1882081,fr,1,3.550000E+00,2.463490E+00,4.620661E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +1882083,fr,1,3.550000E+00,2.463490E+00,4.620661E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799846E+01,0.000000E+00 +1882087,fr,1,3.550000E+00,2.463490E+00,4.620661E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998941E+01,-9.000000E+01 +1882088,fr,1,3.550000E+00,2.463490E+00,4.620661E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998941E+01,-9.000000E+01 +1882089,fr,1,3.550000E+00,2.463490E+00,4.620661E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999302E+01,0.000000E+00 +1882092,fr,2,3.650000E+00,2.463490E+00,4.620661E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999067E+01,0.000000E+00 +1882093,fr,1,3.650000E+00,2.463490E+00,4.620661E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999067E+01,0.000000E+00 +1882095,fr,1,3.650000E+00,2.463490E+00,4.620661E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801294E+01,0.000000E+00 +1882104,fr,3,3.750000E+00,2.463490E+00,4.620661E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +1882128,fr,2,3.950000E+00,2.463490E+00,4.620661E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998899E+01,0.000000E+00 +1882129,fr,1,3.950000E+00,2.463490E+00,4.620661E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998899E+01,0.000000E+00 +1882137,fr,1,3.950000E+00,2.463490E+00,4.620661E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.999339E+01,0.000000E+00 +1882142,fr,1,4.050000E+00,2.463490E+00,4.620661E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1882152,fr,2,4.150000E+00,2.463490E+00,4.620661E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1882153,fr,1,4.150000E+00,2.463490E+00,4.620661E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1882167,fr,1,4.250000E+00,2.463490E+00,4.620661E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799401E+01,0.000000E+00 +1882180,fr,1,4.350000E+00,2.463490E+00,4.620661E+01,1.500000E+01,Active Shallow Crust,2.400085E+02,5.799603E+01,0.000000E+00 +1882188,fr,1,4.450000E+00,2.463490E+00,4.620661E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1882236,fr,1,4.850000E+00,2.463490E+00,4.620661E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1882248,fr,1,4.950000E+00,2.463490E+00,4.620661E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1882323,fr,1,5.550000E+00,2.463490E+00,4.620661E+01,5.000000E+00,Active Shallow Crust,2.400289E+02,5.800239E+01,0.000000E+00 +1882562,fr,1,3.550000E+00,1.738810E+00,4.347356E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999085E+01,0.000000E+00 +1882573,fr,1,3.650000E+00,1.738810E+00,4.347356E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1882585,fr,1,3.750000E+00,1.738810E+00,4.347356E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1882596,fr,1,3.850000E+00,1.738810E+00,4.347356E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +1882674,fr,1,4.450000E+00,1.738810E+00,4.347356E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,-9.000000E+01 +1883268,fr,1,5.450000E+00,-3.205580E+00,4.682738E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1883676,fr,1,4.850000E+00,-5.412080E+00,4.960471E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1884014,fr,1,3.650000E+00,-6.005060E+00,4.789821E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998795E+01,0.000000E+00 +1884096,fr,1,4.350000E+00,-6.005060E+00,4.789821E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +1884480,fr,1,3.550000E+00,4.202200E+00,4.621302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999302E+01,0.000000E+00 +1884481,fr,1,3.550000E+00,4.202200E+00,4.621302E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999302E+01,0.000000E+00 +1884482,fr,1,3.550000E+00,4.202200E+00,4.621302E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999302E+01,0.000000E+00 +1884501,fr,1,3.650000E+00,4.202200E+00,4.621302E+01,5.000000E+00,Active Shallow Crust,1.288996E+02,8.996352E+01,0.000000E+00 +1884504,fr,2,3.750000E+00,4.202200E+00,4.621302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +1884505,fr,1,3.750000E+00,4.202200E+00,4.621302E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +1884516,fr,2,3.850000E+00,4.202200E+00,4.621302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1884537,fr,1,3.950000E+00,4.202200E+00,4.621302E+01,5.000000E+00,Active Shallow Crust,1.289013E+02,8.999339E+01,0.000000E+00 +1884576,fr,1,4.350000E+00,4.202200E+00,4.621302E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +1884731,fr,1,5.550000E+00,4.202200E+00,4.621302E+01,2.750000E+01,Active Shallow Crust,1.288764E+02,8.998978E+01,0.000000E+00 +1884973,fr,1,3.650000E+00,-4.448560E+00,4.765857E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998789E+01,0.000000E+00 +1884991,fr,1,3.750000E+00,-4.448560E+00,4.765857E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998908E+01,-9.000000E+01 +1885082,fr,1,4.550000E+00,-4.448560E+00,4.765857E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +1885920,fr,1,3.550000E+00,-5.583300E-01,4.570858E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +1885924,fr,1,3.550000E+00,-5.583300E-01,4.570858E+01,1.500000E+01,Active Shallow Crust,2.400119E+02,5.799820E+01,0.000000E+00 +1885932,fr,2,3.650000E+00,-5.583300E-01,4.570858E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1885933,fr,1,3.650000E+00,-5.583300E-01,4.570858E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1885935,fr,1,3.650000E+00,-5.583300E-01,4.570858E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801287E+01,0.000000E+00 +1885938,fr,1,3.650000E+00,-5.583300E-01,4.570858E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +1885944,fr,3,3.750000E+00,-5.583300E-01,4.570858E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1885968,fr,1,3.950000E+00,-5.583300E-01,4.570858E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1885992,fr,2,4.150000E+00,-5.583300E-01,4.570858E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1886023,fr,1,4.350000E+00,-5.583300E-01,4.570858E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +1886030,fr,1,4.450000E+00,-5.583300E-01,4.570858E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1886052,fr,1,4.650000E+00,-5.583300E-01,4.570858E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1886074,fr,1,4.750000E+00,-5.583300E-01,4.570858E+01,1.500000E+01,Active Shallow Crust,1.288889E+02,8.998807E+01,0.000000E+00 +1886077,fr,1,4.850000E+00,-5.583300E-01,4.570858E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1886400,fr,1,3.550000E+00,3.078350E+00,4.526510E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +1886402,fr,1,3.550000E+00,3.078350E+00,4.526510E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +1886404,fr,1,3.550000E+00,3.078350E+00,4.526510E+01,1.500000E+01,Active Shallow Crust,2.400119E+02,5.799885E+01,0.000000E+00 +1886424,fr,1,3.750000E+00,3.078350E+00,4.526510E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +1886429,fr,1,3.750000E+00,3.078350E+00,4.526510E+01,2.750000E+01,Active Shallow Crust,2.400081E+02,5.801764E+01,0.000000E+00 +1886445,fr,1,3.850000E+00,3.078350E+00,4.526510E+01,5.000000E+00,Active Shallow Crust,1.288955E+02,8.999372E+01,0.000000E+00 +1886448,fr,3,3.950000E+00,3.078350E+00,4.526510E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +1886466,fr,1,4.050000E+00,3.078350E+00,4.526510E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +1886473,fr,1,4.150000E+00,3.078350E+00,4.526510E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1886496,fr,1,4.350000E+00,3.078350E+00,4.526510E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1886511,fr,1,4.450000E+00,3.078350E+00,4.526510E+01,5.000000E+00,Active Shallow Crust,2.400049E+02,5.799457E+01,0.000000E+00 +1886538,fr,1,4.650000E+00,3.078350E+00,4.526510E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +1886544,fr,1,4.750000E+00,3.078350E+00,4.526510E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1886665,fr,1,5.750000E+00,3.078350E+00,4.526510E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1886724,fr,1,6.250000E+00,3.078354E+00,4.526510E+01,6.744814E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1887360,fr,6,3.550000E+00,8.238290E+00,4.749336E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998637E+01,0.000000E+00 +1887361,fr,4,3.550000E+00,8.238290E+00,4.749336E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998637E+01,0.000000E+00 +1887363,fr,2,3.550000E+00,8.238290E+00,4.749336E+01,5.000000E+00,Active Shallow Crust,2.400128E+02,5.799557E+01,0.000000E+00 +1887372,fr,1,3.650000E+00,8.238290E+00,4.749336E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998785E+01,0.000000E+00 +1887373,fr,4,3.650000E+00,8.238290E+00,4.749336E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998785E+01,0.000000E+00 +1887375,fr,1,3.650000E+00,8.238290E+00,4.749336E+01,5.000000E+00,Active Shallow Crust,2.400028E+02,5.801278E+01,0.000000E+00 +1887385,fr,2,3.750000E+00,8.238290E+00,4.749336E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +1887388,fr,1,3.750000E+00,8.238290E+00,4.749336E+01,1.500000E+01,Active Shallow Crust,2.400098E+02,5.801752E+01,0.000000E+00 +1887396,fr,2,3.850000E+00,8.238290E+00,4.749336E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1887399,fr,1,3.850000E+00,8.238290E+00,4.749336E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799824E+01,0.000000E+00 +1887402,fr,1,3.850000E+00,8.238290E+00,4.749336E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,-9.000000E+01 +1887405,fr,1,3.850000E+00,8.238290E+00,4.749336E+01,5.000000E+00,Active Shallow Crust,1.288946E+02,8.999518E+01,0.000000E+00 +1887408,fr,1,3.950000E+00,8.238290E+00,4.749336E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999140E+01,0.000000E+00 +1887411,fr,2,3.950000E+00,8.238290E+00,4.749336E+01,5.000000E+00,Active Shallow Crust,2.400191E+02,5.800534E+01,0.000000E+00 +1887415,fr,1,3.950000E+00,8.238290E+00,4.749336E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999130E+01,-9.000000E+01 +1887417,fr,1,3.950000E+00,8.238290E+00,4.749336E+01,5.000000E+00,Active Shallow Crust,1.288994E+02,8.999570E+01,0.000000E+00 +1887420,fr,3,4.050000E+00,8.238290E+00,4.749336E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999234E+01,0.000000E+00 +1887421,fr,1,4.050000E+00,8.238290E+00,4.749336E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999234E+01,0.000000E+00 +1887422,fr,1,4.050000E+00,8.238290E+00,4.749336E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999234E+01,0.000000E+00 +1887432,fr,3,4.150000E+00,8.238290E+00,4.749336E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999317E+01,0.000000E+00 +1887433,fr,1,4.150000E+00,8.238290E+00,4.749336E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999317E+01,0.000000E+00 +1887434,fr,1,4.150000E+00,8.238290E+00,4.749336E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999317E+01,0.000000E+00 +1887441,fr,1,4.150000E+00,8.238290E+00,4.749336E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999317E+01,0.000000E+00 +1887444,fr,2,4.250000E+00,8.238290E+00,4.749336E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998782E+01,0.000000E+00 +1887456,fr,1,4.350000E+00,8.238290E+00,4.749336E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998915E+01,0.000000E+00 +1887468,fr,1,4.450000E+00,8.238290E+00,4.749336E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1887475,fr,1,4.450000E+00,8.238290E+00,4.749336E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999022E+01,-9.000000E+01 +1887484,fr,1,4.550000E+00,8.238290E+00,4.749336E+01,1.500000E+01,Active Shallow Crust,2.400101E+02,5.799659E+01,0.000000E+00 +1887510,fr,1,4.750000E+00,8.238290E+00,4.749336E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,-9.000000E+01 +1887516,fr,2,4.850000E+00,8.238290E+00,4.749336E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +1887528,fr,1,4.950000E+00,8.238290E+00,4.749336E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998912E+01,0.000000E+00 +1887531,fr,1,4.950000E+00,8.238290E+00,4.749336E+01,5.000000E+00,Active Shallow Crust,2.400128E+02,5.800433E+01,0.000000E+00 +1887541,fr,1,5.050000E+00,8.238290E+00,4.749336E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1887577,fr,1,5.350000E+00,8.238290E+00,4.749336E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1887840,fr,1,3.550000E+00,7.027930E+00,4.875965E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998670E+01,0.000000E+00 +1887850,fr,1,3.550000E+00,7.027930E+00,4.875965E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.999335E+01,0.000000E+00 +1887897,fr,1,3.950000E+00,7.027930E+00,4.875965E+01,5.000000E+00,Active Shallow Crust,1.288991E+02,8.999371E+01,0.000000E+00 +1887900,fr,1,4.050000E+00,7.027930E+00,4.875965E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +1888321,fr,1,3.550000E+00,3.690520E+00,4.123585E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +1888324,fr,1,3.550000E+00,3.690520E+00,4.123585E+01,1.500000E+01,Active Shallow Crust,2.400121E+02,5.799798E+01,0.000000E+00 +1888349,fr,1,3.750000E+00,3.690520E+00,4.123585E+01,2.750000E+01,Active Shallow Crust,2.400079E+02,5.801760E+01,0.000000E+00 +1888395,fr,1,4.150000E+00,3.690520E+00,4.123585E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.799721E+01,0.000000E+00 +1888416,fr,1,4.350000E+00,3.690520E+00,4.123585E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1888429,fr,1,4.450000E+00,3.690520E+00,4.123585E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +1888815,fr,1,3.650000E+00,-5.037330E+00,4.773252E+01,5.000000E+00,Active Shallow Crust,2.400015E+02,5.801268E+01,0.000000E+00 +1888871,fr,1,4.050000E+00,-5.037330E+00,4.773252E+01,2.750000E+01,Active Shallow Crust,1.288896E+02,8.999428E+01,0.000000E+00 +1888884,fr,1,4.250000E+00,-5.037330E+00,4.773252E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +1889280,fr,1,3.550000E+00,5.280260E+00,4.828601E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999329E+01,0.000000E+00 +1889290,fr,1,3.550000E+00,5.280260E+00,4.828601E+01,1.500000E+01,Active Shallow Crust,1.288968E+02,8.999329E+01,0.000000E+00 +1889320,fr,1,3.850000E+00,5.280260E+00,4.828601E+01,1.500000E+01,Active Shallow Crust,2.400114E+02,5.799833E+01,0.000000E+00 +1889334,fr,1,3.950000E+00,5.280260E+00,4.828601E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999143E+01,-9.000000E+01 +1889760,fr,9,3.550000E+00,-1.572030E+00,4.286982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +1889762,fr,2,3.550000E+00,-1.572030E+00,4.286982E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +1889763,fr,2,3.550000E+00,-1.572030E+00,4.286982E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799815E+01,0.000000E+00 +1889769,fr,1,3.550000E+00,-1.572030E+00,4.286982E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999353E+01,0.000000E+00 +1889772,fr,1,3.650000E+00,-1.572030E+00,4.286982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1889773,fr,1,3.650000E+00,-1.572030E+00,4.286982E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1889775,fr,2,3.650000E+00,-1.572030E+00,4.286982E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801289E+01,0.000000E+00 +1889778,fr,1,3.650000E+00,-1.572030E+00,4.286982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1889782,fr,1,3.650000E+00,-1.572030E+00,4.286982E+01,1.500000E+01,Active Shallow Crust,1.289005E+02,8.996359E+01,0.000000E+00 +1889784,fr,2,3.750000E+00,-1.572030E+00,4.286982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1889787,fr,1,3.750000E+00,-1.572030E+00,4.286982E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801745E+01,0.000000E+00 +1889789,fr,1,3.750000E+00,-1.572030E+00,4.286982E+01,2.750000E+01,Active Shallow Crust,2.400079E+02,5.801745E+01,0.000000E+00 +1889793,fr,1,3.750000E+00,-1.572030E+00,4.286982E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996743E+01,0.000000E+00 +1889796,fr,2,3.850000E+00,-1.572030E+00,4.286982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +1889798,fr,1,3.850000E+00,-1.572030E+00,4.286982E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +1889803,fr,1,3.850000E+00,-1.572030E+00,4.286982E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998942E+01,-9.000000E+01 +1889805,fr,1,3.850000E+00,-1.572030E+00,4.286982E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999346E+01,0.000000E+00 +1889808,fr,4,3.950000E+00,-1.572030E+00,4.286982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1889809,fr,1,3.950000E+00,-1.572030E+00,4.286982E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1889811,fr,1,3.950000E+00,-1.572030E+00,4.286982E+01,5.000000E+00,Active Shallow Crust,2.400194E+02,5.800490E+01,0.000000E+00 +1889814,fr,1,3.950000E+00,-1.572030E+00,4.286982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999056E+01,-9.000000E+01 +1889818,fr,1,3.950000E+00,-1.572030E+00,4.286982E+01,1.500000E+01,Active Shallow Crust,1.289009E+02,8.999359E+01,0.000000E+00 +1889820,fr,2,4.050000E+00,-1.572030E+00,4.286982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +1889822,fr,1,4.050000E+00,-1.572030E+00,4.286982E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +1889835,fr,1,4.150000E+00,-1.572030E+00,4.286982E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799719E+01,0.000000E+00 +1889841,fr,1,4.150000E+00,-1.572030E+00,4.286982E+01,5.000000E+00,Active Shallow Crust,1.288980E+02,8.999352E+01,0.000000E+00 +1889844,fr,1,4.250000E+00,-1.572030E+00,4.286982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1889845,fr,1,4.250000E+00,-1.572030E+00,4.286982E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1889846,fr,1,4.250000E+00,-1.572030E+00,4.286982E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1889913,fr,1,4.750000E+00,-1.572030E+00,4.286982E+01,5.000000E+00,Active Shallow Crust,1.288896E+02,8.998809E+01,0.000000E+00 +1890240,fr,1,3.550000E+00,8.620370E+00,4.893600E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998676E+01,0.000000E+00 +1890249,fr,1,3.550000E+00,8.620370E+00,4.893600E+01,5.000000E+00,Active Shallow Crust,1.288951E+02,9.000000E+01,0.000000E+00 +1890252,fr,1,3.650000E+00,8.620370E+00,4.893600E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998819E+01,0.000000E+00 +1890264,fr,1,3.750000E+00,8.620370E+00,4.893600E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +1890272,fr,1,3.750000E+00,8.620370E+00,4.893600E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,-9.000000E+01 +1890293,fr,1,3.950000E+00,8.620370E+00,4.893600E+01,2.750000E+01,Active Shallow Crust,2.400217E+02,5.800343E+01,0.000000E+00 +1890301,fr,1,4.050000E+00,8.620370E+00,4.893600E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999255E+01,0.000000E+00 +1890312,fr,1,4.150000E+00,8.620370E+00,4.893600E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998672E+01,0.000000E+00 +1890325,fr,1,4.250000E+00,8.620370E+00,4.893600E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998817E+01,0.000000E+00 +1890732,fr,1,3.650000E+00,4.970600E+00,4.874963E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998815E+01,0.000000E+00 +1890735,fr,1,3.650000E+00,4.970600E+00,4.874963E+01,5.000000E+00,Active Shallow Crust,2.400020E+02,5.801254E+01,0.000000E+00 +1890818,fr,1,4.350000E+00,4.970600E+00,4.874963E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998941E+01,0.000000E+00 +1891209,fr,1,3.550000E+00,3.605700E-01,4.925279E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999383E+01,0.000000E+00 +1891212,fr,2,3.650000E+00,3.605700E-01,4.925279E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1891224,fr,1,3.750000E+00,3.605700E-01,4.925279E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1891226,fr,1,3.750000E+00,3.605700E-01,4.925279E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1891236,fr,1,3.850000E+00,3.605700E-01,4.925279E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1891239,fr,1,3.850000E+00,3.605700E-01,4.925279E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799784E+01,0.000000E+00 +1891241,fr,1,3.850000E+00,3.605700E-01,4.925279E+01,2.750000E+01,Active Shallow Crust,2.400113E+02,5.799784E+01,0.000000E+00 +1891257,fr,1,3.950000E+00,3.605700E-01,4.925279E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.999364E+01,0.000000E+00 +1891274,fr,1,4.150000E+00,3.605700E-01,4.925279E+01,2.750000E+01,Active Shallow Crust,3.599999E+02,8.999010E+01,0.000000E+00 +1891278,fr,1,4.150000E+00,3.605700E-01,4.925279E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +1891308,fr,1,4.450000E+00,3.605700E-01,4.925279E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1891335,fr,1,4.650000E+00,3.605700E-01,4.925279E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799439E+01,0.000000E+00 +1891339,fr,1,4.650000E+00,3.605700E-01,4.925279E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +1891392,fr,2,5.150000E+00,3.605700E-01,4.925279E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1891704,fr,1,3.750000E+00,-4.888800E-01,4.160984E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1892167,fr,1,3.550000E+00,5.060470E+00,5.197052E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998743E+01,-9.000000E+01 +1892170,fr,1,3.550000E+00,5.060470E+00,5.197052E+01,1.500000E+01,Active Shallow Crust,1.288957E+02,8.999379E+01,0.000000E+00 +1892172,fr,1,3.650000E+00,5.060470E+00,5.197052E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998893E+01,0.000000E+00 +1892640,fr,1,3.550000E+00,4.829700E-01,4.321613E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1892647,fr,1,3.550000E+00,4.829700E-01,4.321613E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,-9.000000E+01 +1892652,fr,1,3.650000E+00,4.829700E-01,4.321613E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1892653,fr,1,3.650000E+00,4.829700E-01,4.321613E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1892673,fr,1,3.750000E+00,4.829700E-01,4.321613E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996737E+01,0.000000E+00 +1892688,fr,2,3.950000E+00,4.829700E-01,4.321613E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1892716,fr,1,4.150000E+00,4.829700E-01,4.321613E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.799723E+01,0.000000E+00 +1892726,fr,1,4.250000E+00,4.829700E-01,4.321613E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1892730,fr,1,4.250000E+00,4.829700E-01,4.321613E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +1892772,fr,1,4.650000E+00,4.829700E-01,4.321613E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1892778,fr,1,4.650000E+00,4.829700E-01,4.321613E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +1892808,fr,1,4.950000E+00,4.829700E-01,4.321613E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1893120,fr,1,3.550000E+00,3.924760E+00,4.473755E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +1893144,fr,1,3.750000E+00,3.924760E+00,4.473755E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +1893147,fr,1,3.750000E+00,3.924760E+00,4.473755E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.801780E+01,0.000000E+00 +1893157,fr,2,3.850000E+00,3.924760E+00,4.473755E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1893168,fr,1,3.950000E+00,3.924760E+00,4.473755E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999096E+01,0.000000E+00 +1893205,fr,1,4.250000E+00,3.924760E+00,4.473755E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +1893228,fr,1,4.450000E+00,3.924760E+00,4.473755E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1894104,fr,1,3.750000E+00,-3.311560E+00,4.280181E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999119E+01,0.000000E+00 +1894105,fr,1,3.750000E+00,-3.311560E+00,4.280181E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999119E+01,0.000000E+00 +1894108,fr,1,3.750000E+00,-3.311560E+00,4.280181E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.801721E+01,0.000000E+00 +1894116,fr,1,3.850000E+00,-3.311560E+00,4.280181E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1894165,fr,1,4.250000E+00,-3.311560E+00,4.280181E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1894166,fr,1,4.250000E+00,-3.311560E+00,4.280181E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1894188,fr,1,4.450000E+00,-3.311560E+00,4.280181E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +1894279,fr,1,5.150000E+00,-3.311560E+00,4.280181E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +1894323,fr,1,5.550000E+00,-3.311560E+00,4.280181E+01,5.000000E+00,Active Shallow Crust,2.400260E+02,5.800189E+01,0.000000E+00 +1895056,fr,1,3.650000E+00,3.779510E+00,5.131648E+01,1.500000E+01,Active Shallow Crust,2.400017E+02,5.801311E+01,0.000000E+00 +1895079,fr,1,3.850000E+00,3.779510E+00,5.131648E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799792E+01,0.000000E+00 +1895142,fr,1,4.350000E+00,3.779510E+00,5.131648E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +1895287,fr,1,5.550000E+00,3.779510E+00,5.131648E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,-9.000000E+01 +1895520,fr,2,3.550000E+00,4.296890E+00,4.064367E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999235E+01,0.000000E+00 +1895524,fr,1,3.550000E+00,4.296890E+00,4.064367E+01,1.500000E+01,Active Shallow Crust,2.400126E+02,5.799678E+01,0.000000E+00 +1895553,fr,1,3.750000E+00,4.296890E+00,4.064367E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.996739E+01,0.000000E+00 +1895631,fr,1,4.450000E+00,4.296890E+00,4.064367E+01,5.000000E+00,Active Shallow Crust,2.400038E+02,5.799448E+01,0.000000E+00 +1896000,fr,1,3.550000E+00,-2.190050E+00,4.921784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1896002,fr,1,3.550000E+00,-2.190050E+00,4.921784E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1896003,fr,1,3.550000E+00,-2.190050E+00,4.921784E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799837E+01,0.000000E+00 +1896009,fr,1,3.550000E+00,-2.190050E+00,4.921784E+01,5.000000E+00,Active Shallow Crust,1.288953E+02,8.999342E+01,0.000000E+00 +1896012,fr,1,3.650000E+00,-2.190050E+00,4.921784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +1896024,fr,2,3.750000E+00,-2.190050E+00,4.921784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +1896025,fr,1,3.750000E+00,-2.190050E+00,4.921784E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +1896028,fr,1,3.750000E+00,-2.190050E+00,4.921784E+01,1.500000E+01,Active Shallow Crust,2.400082E+02,5.801772E+01,0.000000E+00 +1896036,fr,1,3.850000E+00,-2.190050E+00,4.921784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +1896046,fr,1,3.850000E+00,-2.190050E+00,4.921784E+01,1.500000E+01,Active Shallow Crust,1.288954E+02,8.999300E+01,0.000000E+00 +1896048,fr,1,3.950000E+00,-2.190050E+00,4.921784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +1896049,fr,1,3.950000E+00,-2.190050E+00,4.921784E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +1896051,fr,1,3.950000E+00,-2.190050E+00,4.921784E+01,5.000000E+00,Active Shallow Crust,2.400206E+02,5.800506E+01,0.000000E+00 +1896060,fr,1,4.050000E+00,-2.190050E+00,4.921784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +1896072,fr,1,4.150000E+00,-2.190050E+00,4.921784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1896085,fr,1,4.250000E+00,-2.190050E+00,4.921784E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1896102,fr,2,4.350000E+00,-2.190050E+00,4.921784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998939E+01,-9.000000E+01 +1896108,fr,1,4.450000E+00,-2.190050E+00,4.921784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +1896132,fr,1,4.650000E+00,-2.190050E+00,4.921784E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1896217,fr,1,5.350000E+00,-2.190050E+00,4.921784E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1896480,fr,2,3.550000E+00,2.434560E+00,4.581386E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1896481,fr,2,3.550000E+00,2.434560E+00,4.581386E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1896492,fr,1,3.650000E+00,2.434560E+00,4.581386E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +1896493,fr,2,3.650000E+00,2.434560E+00,4.581386E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +1896504,fr,1,3.750000E+00,2.434560E+00,4.581386E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998883E+01,0.000000E+00 +1896520,fr,1,3.850000E+00,2.434560E+00,4.581386E+01,1.500000E+01,Active Shallow Crust,2.400105E+02,5.799771E+01,0.000000E+00 +1896576,fr,2,4.350000E+00,2.434560E+00,4.581386E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1896589,fr,1,4.450000E+00,2.434560E+00,4.581386E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1896626,fr,1,4.750000E+00,2.434560E+00,4.581386E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +1896660,fr,1,5.050000E+00,2.434560E+00,4.581386E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1896673,fr,1,5.150000E+00,2.434560E+00,4.581386E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1896960,fr,1,3.550000E+00,2.273420E+00,5.332311E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +1896996,fr,1,3.850000E+00,2.273420E+00,5.332311E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +1897020,fr,1,4.050000E+00,2.273420E+00,5.332311E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +1897117,fr,1,4.850000E+00,2.273420E+00,5.332311E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1897449,fr,2,3.550000E+00,1.615630E+00,4.466360E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.999373E+01,0.000000E+00 +1897461,fr,1,3.650000E+00,1.615630E+00,4.466360E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.996349E+01,0.000000E+00 +1897489,fr,1,3.950000E+00,1.615630E+00,4.466360E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1897516,fr,1,4.150000E+00,1.615630E+00,4.466360E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.799728E+01,0.000000E+00 +1897528,fr,1,4.250000E+00,1.615630E+00,4.466360E+01,1.500000E+01,Active Shallow Crust,2.400072E+02,5.799401E+01,0.000000E+00 +1897560,fr,1,4.550000E+00,1.615630E+00,4.466360E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1897920,fr,1,3.550000E+00,-1.988210E+00,4.761973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1897955,fr,1,3.750000E+00,-1.988210E+00,4.761973E+01,2.750000E+01,Active Shallow Crust,1.288964E+02,8.996739E+01,0.000000E+00 +1897956,fr,1,3.850000E+00,-1.988210E+00,4.761973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +1897969,fr,1,3.950000E+00,-1.988210E+00,4.761973E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +1898007,fr,1,4.250000E+00,-1.988210E+00,4.761973E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.799419E+01,0.000000E+00 +1898076,fr,1,4.850000E+00,-1.988210E+00,4.761973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1898412,fr,1,3.650000E+00,-2.974800E+00,4.270442E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1898448,fr,2,3.950000E+00,-2.974800E+00,4.270442E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +1898460,fr,1,4.050000E+00,-2.974800E+00,4.270442E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +1898484,fr,1,4.250000E+00,-2.974800E+00,4.270442E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1898532,fr,1,4.650000E+00,-2.974800E+00,4.270442E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1898570,fr,1,4.950000E+00,-2.974800E+00,4.270442E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1898889,fr,1,3.550000E+00,5.099030E+00,4.277802E+01,5.000000E+00,Active Shallow Crust,1.288977E+02,8.999260E+01,0.000000E+00 +1898928,fr,1,3.950000E+00,5.099030E+00,4.277802E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +1898930,fr,1,3.950000E+00,5.099030E+00,4.277802E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +1899360,fr,2,3.550000E+00,3.191250E+00,4.580316E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1899361,fr,1,3.550000E+00,3.191250E+00,4.580316E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1899362,fr,1,3.550000E+00,3.191250E+00,4.580316E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1899372,fr,4,3.650000E+00,3.191250E+00,4.580316E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +1899373,fr,4,3.650000E+00,3.191250E+00,4.580316E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +1899375,fr,1,3.650000E+00,3.191250E+00,4.580316E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801298E+01,0.000000E+00 +1899384,fr,3,3.750000E+00,3.191250E+00,4.580316E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998883E+01,0.000000E+00 +1899385,fr,2,3.750000E+00,3.191250E+00,4.580316E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998883E+01,0.000000E+00 +1899386,fr,2,3.750000E+00,3.191250E+00,4.580316E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998883E+01,0.000000E+00 +1899387,fr,1,3.750000E+00,3.191250E+00,4.580316E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801738E+01,0.000000E+00 +1899396,fr,2,3.850000E+00,3.191250E+00,4.580316E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1899399,fr,1,3.850000E+00,3.191250E+00,4.580316E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799806E+01,0.000000E+00 +1899400,fr,1,3.850000E+00,3.191250E+00,4.580316E+01,1.500000E+01,Active Shallow Crust,2.400109E+02,5.799806E+01,0.000000E+00 +1899402,fr,1,3.850000E+00,3.191250E+00,4.580316E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,-9.000000E+01 +1899410,fr,1,3.950000E+00,3.191250E+00,4.580316E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +1899411,fr,1,3.950000E+00,3.191250E+00,4.580316E+01,5.000000E+00,Active Shallow Crust,2.400196E+02,5.800505E+01,0.000000E+00 +1899414,fr,1,3.950000E+00,3.191250E+00,4.580316E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999103E+01,-9.000000E+01 +1899417,fr,1,3.950000E+00,3.191250E+00,4.580316E+01,5.000000E+00,Active Shallow Crust,1.289006E+02,8.999335E+01,0.000000E+00 +1899420,fr,3,4.050000E+00,3.191250E+00,4.580316E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1899425,fr,1,4.050000E+00,3.191250E+00,4.580316E+01,2.750000E+01,Active Shallow Crust,2.400058E+02,5.800600E+01,0.000000E+00 +1899437,fr,1,4.150000E+00,3.191250E+00,4.580316E+01,2.750000E+01,Active Shallow Crust,2.400086E+02,5.799712E+01,0.000000E+00 +1899439,fr,1,4.150000E+00,3.191250E+00,4.580316E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998931E+01,-9.000000E+01 +1899447,fr,1,4.250000E+00,3.191250E+00,4.580316E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.799383E+01,0.000000E+00 +1899453,fr,1,4.250000E+00,3.191250E+00,4.580316E+01,5.000000E+00,Active Shallow Crust,1.288945E+02,8.998092E+01,0.000000E+00 +1899469,fr,1,4.450000E+00,3.191250E+00,4.580316E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1899474,fr,1,4.450000E+00,3.191250E+00,4.580316E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +1899481,fr,1,4.550000E+00,3.191250E+00,4.580316E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1899483,fr,1,4.550000E+00,3.191250E+00,4.580316E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.799744E+01,0.000000E+00 +1899517,fr,1,4.850000E+00,3.191250E+00,4.580316E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1899588,fr,1,5.450000E+00,3.191250E+00,4.580316E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1899867,fr,1,3.750000E+00,-6.182850E+00,4.842848E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.801694E+01,0.000000E+00 +1899894,fr,1,3.950000E+00,-6.182850E+00,4.842848E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999146E+01,-9.000000E+01 +1899948,fr,1,4.450000E+00,-6.182850E+00,4.842848E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +1900320,fr,2,3.550000E+00,5.384350E+00,5.152929E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998745E+01,0.000000E+00 +1900321,fr,1,3.550000E+00,5.384350E+00,5.152929E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998745E+01,0.000000E+00 +1900354,fr,1,3.750000E+00,5.384350E+00,5.152929E+01,1.500000E+01,Active Shallow Crust,1.288951E+02,8.996758E+01,0.000000E+00 +1900356,fr,1,3.850000E+00,5.384350E+00,5.152929E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999112E+01,0.000000E+00 +1900369,fr,1,3.950000E+00,5.384350E+00,5.152929E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998812E+01,0.000000E+00 +1900431,fr,1,4.450000E+00,5.384350E+00,5.152929E+01,5.000000E+00,Active Shallow Crust,2.400065E+02,5.799492E+01,0.000000E+00 +1900812,fr,2,3.650000E+00,6.835500E-01,4.728098E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1900813,fr,1,3.650000E+00,6.835500E-01,4.728098E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1900827,fr,1,3.750000E+00,6.835500E-01,4.728098E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.801760E+01,0.000000E+00 +1900848,fr,2,3.950000E+00,6.835500E-01,4.728098E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1900872,fr,1,4.150000E+00,6.835500E-01,4.728098E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1900914,fr,1,4.450000E+00,6.835500E-01,4.728098E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,-9.000000E+01 +1900944,fr,1,4.750000E+00,6.835500E-01,4.728098E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1901172,fr,1,6.650000E+00,6.835632E-01,4.728098E+01,1.068981E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +1901316,fr,1,3.850000E+00,-5.588800E-01,4.986018E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1901361,fr,1,4.150000E+00,-5.588800E-01,4.986018E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.999369E+01,0.000000E+00 +1901400,fr,1,4.550000E+00,-5.588800E-01,4.986018E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1901422,fr,1,4.650000E+00,-5.588800E-01,4.986018E+01,1.500000E+01,Active Shallow Crust,1.288902E+02,8.998701E+01,0.000000E+00 +1901774,fr,1,3.650000E+00,-3.079100E-01,4.505113E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1901796,fr,1,3.850000E+00,-3.079100E-01,4.505113E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1902072,fr,1,6.150000E+00,-3.079077E-01,4.505113E+01,6.011322E+00,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +1902253,fr,1,3.650000E+00,3.688400E+00,5.245762E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +1902721,fr,1,3.550000E+00,-2.175050E+00,4.238427E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998883E+01,0.000000E+00 +1902726,fr,1,3.550000E+00,-2.175050E+00,4.238427E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998870E+01,-9.000000E+01 +1902728,fr,1,3.550000E+00,-2.175050E+00,4.238427E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998870E+01,-9.000000E+01 +1902732,fr,1,3.650000E+00,-2.175050E+00,4.238427E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1902733,fr,1,3.650000E+00,-2.175050E+00,4.238427E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1902744,fr,1,3.750000E+00,-2.175050E+00,4.238427E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999113E+01,0.000000E+00 +1902769,fr,1,3.950000E+00,-2.175050E+00,4.238427E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +1902888,fr,1,4.950000E+00,-2.175050E+00,4.238427E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +1902897,fr,1,4.950000E+00,-2.175050E+00,4.238427E+01,5.000000E+00,Active Shallow Crust,1.288914E+02,8.998977E+01,0.000000E+00 +1903200,fr,1,3.550000E+00,-3.146170E+00,4.860104E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1903206,fr,1,3.550000E+00,-3.146170E+00,4.860104E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +1903210,fr,2,3.550000E+00,-3.146170E+00,4.860104E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.999500E+01,0.000000E+00 +1903212,fr,1,3.650000E+00,-3.146170E+00,4.860104E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999108E+01,0.000000E+00 +1903215,fr,1,3.650000E+00,-3.146170E+00,4.860104E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801305E+01,0.000000E+00 +1903219,fr,1,3.650000E+00,-3.146170E+00,4.860104E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999098E+01,-9.000000E+01 +1903224,fr,5,3.750000E+00,-3.146170E+00,4.860104E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +1903225,fr,2,3.750000E+00,-3.146170E+00,4.860104E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +1903229,fr,1,3.750000E+00,-3.146170E+00,4.860104E+01,2.750000E+01,Active Shallow Crust,2.400084E+02,5.801806E+01,0.000000E+00 +1903236,fr,2,3.850000E+00,-3.146170E+00,4.860104E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +1903241,fr,1,3.850000E+00,-3.146170E+00,4.860104E+01,2.750000E+01,Active Shallow Crust,2.400109E+02,5.799809E+01,0.000000E+00 +1903242,fr,1,3.850000E+00,-3.146170E+00,4.860104E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999045E+01,-9.000000E+01 +1903245,fr,1,3.850000E+00,-3.146170E+00,4.860104E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.999410E+01,0.000000E+00 +1903249,fr,2,3.950000E+00,-3.146170E+00,4.860104E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +1903260,fr,2,4.050000E+00,-3.146170E+00,4.860104E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1903269,fr,1,4.050000E+00,-3.146170E+00,4.860104E+01,5.000000E+00,Active Shallow Crust,1.288900E+02,8.999344E+01,0.000000E+00 +1903272,fr,1,4.150000E+00,-3.146170E+00,4.860104E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1903275,fr,1,4.150000E+00,-3.146170E+00,4.860104E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799744E+01,0.000000E+00 +1903287,fr,1,4.250000E+00,-3.146170E+00,4.860104E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799408E+01,0.000000E+00 +1903319,fr,1,4.450000E+00,-3.146170E+00,4.860104E+01,2.750000E+01,Active Shallow Crust,1.288919E+02,8.999349E+01,0.000000E+00 +1903686,fr,1,3.550000E+00,1.478200E-01,4.778010E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,-9.000000E+01 +1903692,fr,1,3.650000E+00,1.478200E-01,4.778010E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1903704,fr,1,3.750000E+00,1.478200E-01,4.778010E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1903722,fr,1,3.850000E+00,1.478200E-01,4.778010E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +1903728,fr,1,3.950000E+00,1.478200E-01,4.778010E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1903741,fr,1,4.050000E+00,1.478200E-01,4.778010E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1903761,fr,1,4.150000E+00,1.478200E-01,4.778010E+01,5.000000E+00,Active Shallow Crust,1.288973E+02,8.999374E+01,0.000000E+00 +1904163,fr,1,3.550000E+00,-3.859870E+00,4.329144E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799834E+01,0.000000E+00 +1904178,fr,1,3.650000E+00,-3.859870E+00,4.329144E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +1904185,fr,1,3.750000E+00,-3.859870E+00,4.329144E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +1904190,fr,1,3.750000E+00,-3.859870E+00,4.329144E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999115E+01,-9.000000E+01 +1904202,fr,1,3.850000E+00,-3.859870E+00,4.329144E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,-9.000000E+01 +1904208,fr,1,3.950000E+00,-3.859870E+00,4.329144E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +1904211,fr,1,3.950000E+00,-3.859870E+00,4.329144E+01,5.000000E+00,Active Shallow Crust,2.400189E+02,5.800486E+01,0.000000E+00 +1904220,fr,1,4.050000E+00,-3.859870E+00,4.329144E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1904238,fr,1,4.150000E+00,-3.859870E+00,4.329144E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,-9.000000E+01 +1904241,fr,1,4.150000E+00,-3.859870E+00,4.329144E+01,5.000000E+00,Active Shallow Crust,1.288980E+02,8.999356E+01,0.000000E+00 +1904250,fr,1,4.250000E+00,-3.859870E+00,4.329144E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,-9.000000E+01 +1904256,fr,1,4.350000E+00,-3.859870E+00,4.329144E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1904265,fr,1,4.350000E+00,-3.859870E+00,4.329144E+01,5.000000E+00,Active Shallow Crust,1.288987E+02,8.998265E+01,0.000000E+00 +1904268,fr,1,4.450000E+00,-3.859870E+00,4.329144E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1904377,fr,1,5.350000E+00,-3.859870E+00,4.329144E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1904640,fr,1,3.550000E+00,8.150900E-01,4.460239E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1904643,fr,1,3.550000E+00,8.150900E-01,4.460239E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799815E+01,0.000000E+00 +1904724,fr,1,4.250000E+00,8.150900E-01,4.460239E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1904808,fr,1,4.950000E+00,8.150900E-01,4.460239E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1905144,fr,1,3.750000E+00,1.058380E+00,5.007518E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1905228,fr,1,4.450000E+00,1.058380E+00,5.007518E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +1905237,fr,1,4.450000E+00,1.058380E+00,5.007518E+01,5.000000E+00,Active Shallow Crust,1.288913E+02,8.999368E+01,0.000000E+00 +1905360,fr,1,5.550000E+00,1.058380E+00,5.007518E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1905603,fr,1,3.550000E+00,-3.800590E+00,4.813364E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799815E+01,0.000000E+00 +1905612,fr,1,3.650000E+00,-3.800590E+00,4.813364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +1905624,fr,2,3.750000E+00,-3.800590E+00,4.813364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +1905666,fr,1,4.050000E+00,-3.800590E+00,4.813364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,-9.000000E+01 +1905682,fr,1,4.150000E+00,-3.800590E+00,4.813364E+01,1.500000E+01,Active Shallow Crust,1.288972E+02,8.999409E+01,0.000000E+00 +1905708,fr,1,4.450000E+00,-3.800590E+00,4.813364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +1905722,fr,1,4.550000E+00,-3.800590E+00,4.813364E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1905746,fr,1,4.750000E+00,-3.800590E+00,4.813364E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1905885,fr,1,5.850000E+00,-3.800590E+00,4.813364E+01,5.000000E+00,Active Shallow Crust,1.288656E+02,8.999149E+01,0.000000E+00 +1906117,fr,1,3.850000E+00,9.409390E+00,4.914113E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +1906140,fr,2,4.050000E+00,9.409390E+00,4.914113E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999258E+01,0.000000E+00 +1906272,fr,1,5.150000E+00,9.409390E+00,4.914113E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +1906584,fr,1,3.750000E+00,-1.444080E+00,4.980437E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +1906620,fr,1,4.050000E+00,-1.444080E+00,4.980437E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1907043,fr,1,3.550000E+00,-1.673010E+00,4.938963E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799816E+01,0.000000E+00 +1907050,fr,1,3.550000E+00,-1.673010E+00,4.938963E+01,1.500000E+01,Active Shallow Crust,1.288959E+02,8.999344E+01,0.000000E+00 +1907052,fr,3,3.650000E+00,-1.673010E+00,4.938963E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +1907064,fr,1,3.750000E+00,-1.673010E+00,4.938963E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +1907076,fr,1,3.850000E+00,-1.673010E+00,4.938963E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +1908492,fr,1,3.650000E+00,-1.591970E+00,4.162076E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1908496,fr,1,3.650000E+00,-1.591970E+00,4.162076E+01,1.500000E+01,Active Shallow Crust,2.400006E+02,5.801307E+01,0.000000E+00 +1908501,fr,1,3.650000E+00,-1.591970E+00,4.162076E+01,5.000000E+00,Active Shallow Crust,1.289006E+02,8.996358E+01,0.000000E+00 +1908708,fr,1,5.450000E+00,-1.591970E+00,4.162076E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1908974,fr,1,3.650000E+00,-5.409500E+00,4.782869E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998793E+01,0.000000E+00 +1908988,fr,1,3.750000E+00,-5.409500E+00,4.782869E+01,1.500000E+01,Active Shallow Crust,2.400083E+02,5.801770E+01,0.000000E+00 +1909045,fr,1,4.250000E+00,-5.409500E+00,4.782869E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +1909476,fr,1,3.850000E+00,2.844040E+00,5.219274E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998906E+01,0.000000E+00 +1909565,fr,1,4.550000E+00,2.844040E+00,5.219274E+01,2.750000E+01,Active Shallow Crust,2.400112E+02,5.799775E+01,0.000000E+00 +1909609,fr,1,4.950000E+00,2.844040E+00,5.219274E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1909920,fr,1,3.550000E+00,-5.136760E+00,4.840720E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999331E+01,0.000000E+00 +1909922,fr,1,3.550000E+00,-5.136760E+00,4.840720E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999331E+01,0.000000E+00 +1909937,fr,1,3.650000E+00,-5.136760E+00,4.840720E+01,2.750000E+01,Active Shallow Crust,2.400006E+02,5.801297E+01,0.000000E+00 +1909975,fr,1,3.950000E+00,-5.136760E+00,4.840720E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999146E+01,-9.000000E+01 +1910106,fr,1,5.050000E+00,-5.136760E+00,4.840720E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,-9.000000E+01 +1910112,fr,1,5.150000E+00,-5.136760E+00,4.840720E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +1910115,fr,1,5.150000E+00,-5.136760E+00,4.840720E+01,5.000000E+00,Active Shallow Crust,2.400209E+02,5.800021E+01,0.000000E+00 +1910410,fr,1,3.550000E+00,3.007200E-01,5.095413E+01,1.500000E+01,Active Shallow Crust,1.288958E+02,8.999364E+01,0.000000E+00 +1910437,fr,1,3.850000E+00,3.007200E-01,5.095413E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1910474,fr,1,4.150000E+00,3.007200E-01,5.095413E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1910880,fr,1,3.550000E+00,5.355630E+00,4.519949E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999290E+01,0.000000E+00 +1910883,fr,1,3.550000E+00,5.355630E+00,4.519949E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799819E+01,0.000000E+00 +1910892,fr,4,3.650000E+00,5.355630E+00,4.519949E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998734E+01,0.000000E+00 +1910896,fr,1,3.650000E+00,5.355630E+00,4.519949E+01,1.500000E+01,Active Shallow Crust,2.400007E+02,5.801340E+01,0.000000E+00 +1910905,fr,1,3.750000E+00,5.355630E+00,4.519949E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998871E+01,0.000000E+00 +1910907,fr,1,3.750000E+00,5.355630E+00,4.519949E+01,5.000000E+00,Active Shallow Crust,2.400092E+02,5.801678E+01,0.000000E+00 +1910925,fr,1,3.850000E+00,5.355630E+00,4.519949E+01,5.000000E+00,Active Shallow Crust,1.288948E+02,8.999497E+01,0.000000E+00 +1910928,fr,2,3.950000E+00,5.355630E+00,4.519949E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +1910952,fr,2,4.150000E+00,5.355630E+00,4.519949E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +1910964,fr,5,4.250000E+00,5.355630E+00,4.519949E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +1910976,fr,1,4.350000E+00,5.355630E+00,4.519949E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +1910977,fr,1,4.350000E+00,5.355630E+00,4.519949E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +1910993,fr,1,4.450000E+00,5.355630E+00,4.519949E+01,2.750000E+01,Active Shallow Crust,2.400048E+02,5.799463E+01,0.000000E+00 +1911000,fr,1,4.550000E+00,5.355630E+00,4.519949E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999101E+01,0.000000E+00 +1911001,fr,1,4.550000E+00,5.355630E+00,4.519949E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999101E+01,0.000000E+00 +1911026,fr,1,4.750000E+00,5.355630E+00,4.519949E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +1911225,fr,1,6.350000E+00,5.355627E+00,4.519949E+01,7.567806E+00,Active Shallow Crust,1.288463E+02,8.998976E+01,0.000000E+00 +1911360,fr,2,3.550000E+00,7.351910E+00,5.042345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998715E+01,0.000000E+00 +1911361,fr,4,3.550000E+00,7.351910E+00,5.042345E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998715E+01,0.000000E+00 +1911372,fr,2,3.650000E+00,7.351910E+00,5.042345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998855E+01,0.000000E+00 +1911373,fr,3,3.650000E+00,7.351910E+00,5.042345E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998855E+01,0.000000E+00 +1911381,fr,1,3.650000E+00,7.351910E+00,5.042345E+01,5.000000E+00,Active Shallow Crust,1.288995E+02,8.996360E+01,0.000000E+00 +1911385,fr,1,3.750000E+00,7.351910E+00,5.042345E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1911387,fr,1,3.750000E+00,7.351910E+00,5.042345E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.801711E+01,0.000000E+00 +1911390,fr,1,3.750000E+00,7.351910E+00,5.042345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,-9.000000E+01 +1911392,fr,1,3.750000E+00,7.351910E+00,5.042345E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998968E+01,-9.000000E+01 +1911396,fr,2,3.850000E+00,7.351910E+00,5.042345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +1911397,fr,1,3.850000E+00,7.351910E+00,5.042345E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +1911398,fr,1,3.850000E+00,7.351910E+00,5.042345E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +1911408,fr,1,3.950000E+00,7.351910E+00,5.042345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999189E+01,0.000000E+00 +1911409,fr,1,3.950000E+00,7.351910E+00,5.042345E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999189E+01,0.000000E+00 +1911411,fr,1,3.950000E+00,7.351910E+00,5.042345E+01,5.000000E+00,Active Shallow Crust,2.400202E+02,5.800494E+01,0.000000E+00 +1911420,fr,2,4.050000E+00,7.351910E+00,5.042345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +1911421,fr,1,4.050000E+00,7.351910E+00,5.042345E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +1911432,fr,1,4.150000E+00,7.351910E+00,5.042345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +1911450,fr,1,4.250000E+00,7.351910E+00,5.042345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999129E+01,-9.000000E+01 +1911456,fr,1,4.350000E+00,7.351910E+00,5.042345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1911458,fr,1,4.350000E+00,7.351910E+00,5.042345E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1911460,fr,1,4.350000E+00,7.351910E+00,5.042345E+01,1.500000E+01,Active Shallow Crust,2.400094E+02,5.799609E+01,0.000000E+00 +1911462,fr,1,4.350000E+00,7.351910E+00,5.042345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +1911469,fr,1,4.450000E+00,7.351910E+00,5.042345E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1911504,fr,1,4.750000E+00,7.351910E+00,5.042345E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +1911543,fr,1,5.050000E+00,7.351910E+00,5.042345E+01,5.000000E+00,Active Shallow Crust,2.400244E+02,5.799791E+01,0.000000E+00 +1911841,fr,1,3.550000E+00,-9.085000E-02,4.882960E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1911842,fr,1,3.550000E+00,-9.085000E-02,4.882960E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1911843,fr,1,3.550000E+00,-9.085000E-02,4.882960E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799820E+01,0.000000E+00 +1911844,fr,1,3.550000E+00,-9.085000E-02,4.882960E+01,1.500000E+01,Active Shallow Crust,2.400124E+02,5.799820E+01,0.000000E+00 +1911853,fr,1,3.650000E+00,-9.085000E-02,4.882960E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1911858,fr,1,3.650000E+00,-9.085000E-02,4.882960E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +1911864,fr,1,3.750000E+00,-9.085000E-02,4.882960E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1911876,fr,1,3.850000E+00,-9.085000E-02,4.882960E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1911877,fr,2,3.850000E+00,-9.085000E-02,4.882960E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1911883,fr,1,3.850000E+00,-9.085000E-02,4.882960E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1911888,fr,1,3.950000E+00,-9.085000E-02,4.882960E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1911903,fr,1,4.050000E+00,-9.085000E-02,4.882960E+01,5.000000E+00,Active Shallow Crust,2.400064E+02,5.800590E+01,0.000000E+00 +1911913,fr,1,4.150000E+00,-9.085000E-02,4.882960E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1911996,fr,1,4.850000E+00,-9.085000E-02,4.882960E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1912404,fr,1,4.250000E+00,-1.877480E+00,5.057000E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1912405,fr,1,4.250000E+00,-1.877480E+00,5.057000E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1912802,fr,1,3.550000E+00,1.694940E+00,4.587624E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +1912824,fr,2,3.750000E+00,1.694940E+00,4.587624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +1912825,fr,1,3.750000E+00,1.694940E+00,4.587624E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +1912836,fr,1,3.850000E+00,1.694940E+00,4.587624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1912845,fr,1,3.850000E+00,1.694940E+00,4.587624E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.999379E+01,0.000000E+00 +1912848,fr,1,3.950000E+00,1.694940E+00,4.587624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1912860,fr,1,4.050000E+00,1.694940E+00,4.587624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +1912872,fr,1,4.150000E+00,1.694940E+00,4.587624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1912873,fr,1,4.150000E+00,1.694940E+00,4.587624E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1913280,fr,1,3.550000E+00,-1.824130E+00,4.911170E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1913281,fr,2,3.550000E+00,-1.824130E+00,4.911170E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1913282,fr,2,3.550000E+00,-1.824130E+00,4.911170E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1913284,fr,1,3.550000E+00,-1.824130E+00,4.911170E+01,1.500000E+01,Active Shallow Crust,2.400121E+02,5.799820E+01,0.000000E+00 +1913289,fr,1,3.550000E+00,-1.824130E+00,4.911170E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999340E+01,0.000000E+00 +1913292,fr,1,3.650000E+00,-1.824130E+00,4.911170E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +1913293,fr,1,3.650000E+00,-1.824130E+00,4.911170E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +1913305,fr,1,3.750000E+00,-1.824130E+00,4.911170E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1913310,fr,1,3.750000E+00,-1.824130E+00,4.911170E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,-9.000000E+01 +1913316,fr,2,3.850000E+00,-1.824130E+00,4.911170E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +1913326,fr,1,3.850000E+00,-1.824130E+00,4.911170E+01,1.500000E+01,Active Shallow Crust,1.288951E+02,8.999416E+01,0.000000E+00 +1913328,fr,1,3.950000E+00,-1.824130E+00,4.911170E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1913335,fr,1,3.950000E+00,-1.824130E+00,4.911170E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,-9.000000E+01 +1913364,fr,1,4.250000E+00,-1.824130E+00,4.911170E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1913368,fr,1,4.250000E+00,-1.824130E+00,4.911170E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.799409E+01,0.000000E+00 +1913380,fr,1,4.350000E+00,-1.824130E+00,4.911170E+01,1.500000E+01,Active Shallow Crust,2.400090E+02,5.799611E+01,0.000000E+00 +1913424,fr,1,4.750000E+00,-1.824130E+00,4.911170E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1913513,fr,1,5.450000E+00,-1.824130E+00,4.911170E+01,2.750000E+01,Active Shallow Crust,2.400311E+02,5.799891E+01,0.000000E+00 +1913809,fr,1,3.950000E+00,-1.348290E+00,4.413372E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1913898,fr,1,4.650000E+00,-1.348290E+00,4.413372E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,-9.000000E+01 +1914252,fr,1,3.650000E+00,7.006830E+00,4.963704E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998836E+01,0.000000E+00 +1914256,fr,1,3.650000E+00,7.006830E+00,4.963704E+01,1.500000E+01,Active Shallow Crust,2.400019E+02,5.801224E+01,0.000000E+00 +1914337,fr,1,4.350000E+00,7.006830E+00,4.963704E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +1914348,fr,1,4.450000E+00,7.006830E+00,4.963704E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999073E+01,0.000000E+00 +1914720,fr,1,3.550000E+00,5.242020E+00,5.040797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998714E+01,0.000000E+00 +1914723,fr,1,3.550000E+00,5.242020E+00,5.040797E+01,5.000000E+00,Active Shallow Crust,2.400137E+02,5.799738E+01,0.000000E+00 +1914732,fr,2,3.650000E+00,5.242020E+00,5.040797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998854E+01,0.000000E+00 +1914744,fr,3,3.750000E+00,5.242020E+00,5.040797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1914750,fr,1,3.750000E+00,5.242020E+00,5.040797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,-9.000000E+01 +1914754,fr,1,3.750000E+00,5.242020E+00,5.040797E+01,1.500000E+01,Active Shallow Crust,1.288970E+02,8.996706E+01,0.000000E+00 +1914756,fr,2,3.850000E+00,5.242020E+00,5.040797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999090E+01,0.000000E+00 +1914763,fr,1,3.850000E+00,5.242020E+00,5.040797E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999079E+01,-9.000000E+01 +1914769,fr,1,3.950000E+00,5.242020E+00,5.040797E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999189E+01,0.000000E+00 +1914777,fr,1,3.950000E+00,5.242020E+00,5.040797E+01,5.000000E+00,Active Shallow Crust,1.288999E+02,8.999392E+01,0.000000E+00 +1914811,fr,1,4.250000E+00,5.242020E+00,5.040797E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999129E+01,-9.000000E+01 +1914828,fr,1,4.450000E+00,5.242020E+00,5.040797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1915206,fr,1,3.550000E+00,2.682170E+00,4.454878E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998910E+01,-9.000000E+01 +1915212,fr,3,3.650000E+00,2.682170E+00,4.454878E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1915215,fr,1,3.650000E+00,2.682170E+00,4.454878E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801285E+01,0.000000E+00 +1915237,fr,1,3.850000E+00,2.682170E+00,4.454878E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +1915246,fr,1,3.850000E+00,2.682170E+00,4.454878E+01,1.500000E+01,Active Shallow Crust,1.288959E+02,8.999364E+01,0.000000E+00 +1915254,fr,1,3.950000E+00,2.682170E+00,4.454878E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999083E+01,-9.000000E+01 +1915273,fr,1,4.150000E+00,2.682170E+00,4.454878E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1915378,fr,1,4.950000E+00,2.682170E+00,4.454878E+01,1.500000E+01,Active Shallow Crust,1.288907E+02,8.998969E+01,0.000000E+00 +1915414,fr,1,5.250000E+00,2.682170E+00,4.454878E+01,1.500000E+01,Active Shallow Crust,1.288843E+02,8.998696E+01,0.000000E+00 +1915680,fr,1,3.550000E+00,3.474960E+00,5.118390E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +1915701,fr,1,3.650000E+00,3.474960E+00,5.118390E+01,5.000000E+00,Active Shallow Crust,1.288995E+02,8.996362E+01,0.000000E+00 +1915705,fr,1,3.750000E+00,3.474960E+00,5.118390E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1915716,fr,1,3.850000E+00,3.474960E+00,5.118390E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999105E+01,0.000000E+00 +1915740,fr,1,4.050000E+00,3.474960E+00,5.118390E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1915742,fr,1,4.050000E+00,3.474960E+00,5.118390E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1915749,fr,1,4.050000E+00,3.474960E+00,5.118390E+01,5.000000E+00,Active Shallow Crust,1.288896E+02,8.999378E+01,0.000000E+00 +1915752,fr,1,4.150000E+00,3.474960E+00,5.118390E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1915812,fr,1,4.650000E+00,3.474960E+00,5.118390E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1915873,fr,1,5.150000E+00,3.474960E+00,5.118390E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1915878,fr,1,5.150000E+00,3.474960E+00,5.118390E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,-9.000000E+01 +1916160,fr,1,3.550000E+00,-4.804500E-01,4.999666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1916208,fr,1,3.950000E+00,-4.804500E-01,4.999666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1916232,fr,2,4.150000E+00,-4.804500E-01,4.999666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1916258,fr,1,4.350000E+00,-4.804500E-01,4.999666E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1916259,fr,1,4.350000E+00,-4.804500E-01,4.999666E+01,5.000000E+00,Active Shallow Crust,2.400093E+02,5.799608E+01,0.000000E+00 +1916358,fr,1,5.150000E+00,-4.804500E-01,4.999666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +1916640,fr,2,3.550000E+00,3.063240E+00,4.248747E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +1916643,fr,1,3.550000E+00,3.063240E+00,4.248747E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799823E+01,0.000000E+00 +1916646,fr,1,3.550000E+00,3.063240E+00,4.248747E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,-9.000000E+01 +1916652,fr,1,3.650000E+00,3.063240E+00,4.248747E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1916659,fr,1,3.650000E+00,3.063240E+00,4.248747E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +1916661,fr,2,3.650000E+00,3.063240E+00,4.248747E+01,5.000000E+00,Active Shallow Crust,1.289014E+02,8.996345E+01,0.000000E+00 +1916664,fr,1,3.750000E+00,3.063240E+00,4.248747E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999114E+01,0.000000E+00 +1916666,fr,1,3.750000E+00,3.063240E+00,4.248747E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999114E+01,0.000000E+00 +1916673,fr,1,3.750000E+00,3.063240E+00,4.248747E+01,5.000000E+00,Active Shallow Crust,1.288975E+02,8.996742E+01,0.000000E+00 +1916676,fr,1,3.850000E+00,3.063240E+00,4.248747E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +1916677,fr,1,3.850000E+00,3.063240E+00,4.248747E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +1916688,fr,1,3.950000E+00,3.063240E+00,4.248747E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1916724,fr,1,4.250000E+00,3.063240E+00,4.248747E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1916725,fr,1,4.250000E+00,3.063240E+00,4.248747E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1916736,fr,1,4.350000E+00,3.063240E+00,4.248747E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +1916748,fr,1,4.450000E+00,3.063240E+00,4.248747E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +1916749,fr,1,4.450000E+00,3.063240E+00,4.248747E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +1916805,fr,1,4.850000E+00,3.063240E+00,4.248747E+01,5.000000E+00,Active Shallow Crust,1.288937E+02,8.998902E+01,0.000000E+00 +1917135,fr,1,3.650000E+00,6.874900E-01,5.123078E+01,5.000000E+00,Active Shallow Crust,2.400016E+02,5.801302E+01,0.000000E+00 +1917150,fr,1,3.750000E+00,6.874900E-01,5.123078E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +1917170,fr,1,3.950000E+00,6.874900E-01,5.123078E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1917216,fr,1,4.350000E+00,6.874900E-01,5.123078E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1917600,fr,2,3.550000E+00,-3.652320E+00,4.801186E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1917601,fr,1,3.550000E+00,-3.652320E+00,4.801186E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1917612,fr,1,3.650000E+00,-3.652320E+00,4.801186E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999098E+01,0.000000E+00 +1917649,fr,1,3.950000E+00,-3.652320E+00,4.801186E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +1917669,fr,1,4.050000E+00,-3.652320E+00,4.801186E+01,5.000000E+00,Active Shallow Crust,1.288901E+02,8.999336E+01,0.000000E+00 +1917708,fr,2,4.450000E+00,-3.652320E+00,4.801186E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1917732,fr,1,4.650000E+00,-3.652320E+00,4.801186E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +1918080,fr,5,3.550000E+00,2.284100E+00,4.169619E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998871E+01,0.000000E+00 +1918081,fr,2,3.550000E+00,2.284100E+00,4.169619E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998871E+01,0.000000E+00 +1918082,fr,1,3.550000E+00,2.284100E+00,4.169619E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998871E+01,0.000000E+00 +1918092,fr,1,3.650000E+00,2.284100E+00,4.169619E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1918093,fr,1,3.650000E+00,2.284100E+00,4.169619E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1918104,fr,2,3.750000E+00,2.284100E+00,4.169619E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999103E+01,0.000000E+00 +1918128,fr,2,3.950000E+00,2.284100E+00,4.169619E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +1918129,fr,2,3.950000E+00,2.284100E+00,4.169619E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +1918138,fr,1,3.950000E+00,2.284100E+00,4.169619E+01,1.500000E+01,Active Shallow Crust,1.289011E+02,8.999406E+01,0.000000E+00 +1918141,fr,1,4.050000E+00,2.284100E+00,4.169619E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +1918154,fr,1,4.150000E+00,2.284100E+00,4.169619E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +1918176,fr,1,4.350000E+00,2.284100E+00,4.169619E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1918178,fr,1,4.350000E+00,2.284100E+00,4.169619E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1918209,fr,1,4.550000E+00,2.284100E+00,4.169619E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.998566E+01,0.000000E+00 +1918212,fr,1,4.650000E+00,2.284100E+00,4.169619E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +1918225,fr,1,4.750000E+00,2.284100E+00,4.169619E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1918248,fr,1,4.950000E+00,2.284100E+00,4.169619E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1918353,fr,1,5.750000E+00,2.284100E+00,4.169619E+01,5.000000E+00,Active Shallow Crust,1.288757E+02,8.998852E+01,0.000000E+00 +1918560,fr,1,3.550000E+00,3.403900E-01,4.739215E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1918562,fr,1,3.550000E+00,3.403900E-01,4.739215E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1918566,fr,1,3.550000E+00,3.403900E-01,4.739215E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +1918572,fr,1,3.650000E+00,3.403900E-01,4.739215E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1918584,fr,1,3.750000E+00,3.403900E-01,4.739215E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1918588,fr,1,3.750000E+00,3.403900E-01,4.739215E+01,1.500000E+01,Active Shallow Crust,2.400085E+02,5.801756E+01,0.000000E+00 +1918597,fr,1,3.850000E+00,3.403900E-01,4.739215E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +1918620,fr,1,4.050000E+00,3.403900E-01,4.739215E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1918656,fr,1,4.350000E+00,3.403900E-01,4.739215E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1919520,fr,2,3.550000E+00,5.915810E+00,4.579581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999297E+01,0.000000E+00 +1919521,fr,1,3.550000E+00,5.915810E+00,4.579581E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999297E+01,0.000000E+00 +1919523,fr,2,3.550000E+00,5.915810E+00,4.579581E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799893E+01,0.000000E+00 +1919526,fr,1,3.550000E+00,5.915810E+00,4.579581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999289E+01,-9.000000E+01 +1919529,fr,1,3.550000E+00,5.915810E+00,4.579581E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999297E+01,0.000000E+00 +1919532,fr,3,3.650000E+00,5.915810E+00,4.579581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998746E+01,0.000000E+00 +1919538,fr,1,3.650000E+00,5.915810E+00,4.579581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998732E+01,-9.000000E+01 +1919541,fr,1,3.650000E+00,5.915810E+00,4.579581E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.996351E+01,0.000000E+00 +1919544,fr,3,3.750000E+00,5.915810E+00,4.579581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998883E+01,0.000000E+00 +1919545,fr,1,3.750000E+00,5.915810E+00,4.579581E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998883E+01,0.000000E+00 +1919546,fr,1,3.750000E+00,5.915810E+00,4.579581E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998883E+01,0.000000E+00 +1919550,fr,1,3.750000E+00,5.915810E+00,4.579581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998870E+01,-9.000000E+01 +1919553,fr,1,3.750000E+00,5.915810E+00,4.579581E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.996748E+01,0.000000E+00 +1919556,fr,1,3.850000E+00,5.915810E+00,4.579581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1919559,fr,1,3.850000E+00,5.915810E+00,4.579581E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799774E+01,0.000000E+00 +1919568,fr,1,3.950000E+00,5.915810E+00,4.579581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999113E+01,0.000000E+00 +1919569,fr,1,3.950000E+00,5.915810E+00,4.579581E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999113E+01,0.000000E+00 +1919571,fr,1,3.950000E+00,5.915810E+00,4.579581E+01,5.000000E+00,Active Shallow Crust,2.400190E+02,5.800515E+01,0.000000E+00 +1919572,fr,1,3.950000E+00,5.915810E+00,4.579581E+01,1.500000E+01,Active Shallow Crust,2.400190E+02,5.800515E+01,0.000000E+00 +1919580,fr,1,4.050000E+00,5.915810E+00,4.579581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998814E+01,0.000000E+00 +1919581,fr,1,4.050000E+00,5.915810E+00,4.579581E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998814E+01,0.000000E+00 +1919582,fr,1,4.050000E+00,5.915810E+00,4.579581E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998814E+01,0.000000E+00 +1919604,fr,1,4.250000E+00,5.915810E+00,4.579581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +1919610,fr,1,4.250000E+00,5.915810E+00,4.579581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999047E+01,-9.000000E+01 +1919617,fr,1,4.350000E+00,5.915810E+00,4.579581E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998880E+01,0.000000E+00 +1919630,fr,1,4.450000E+00,5.915810E+00,4.579581E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1919641,fr,1,4.550000E+00,5.915810E+00,4.579581E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +1919660,fr,1,4.650000E+00,5.915810E+00,4.579581E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1919664,fr,1,4.750000E+00,5.915810E+00,4.579581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +1919681,fr,1,4.850000E+00,5.915810E+00,4.579581E+01,2.750000E+01,Active Shallow Crust,2.400172E+02,5.800223E+01,0.000000E+00 +1919772,fr,2,5.650000E+00,5.915810E+00,4.579581E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1920480,fr,2,3.550000E+00,2.413580E+00,4.265355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +1920481,fr,1,3.550000E+00,2.413580E+00,4.265355E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +1920482,fr,1,3.550000E+00,2.413580E+00,4.265355E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +1920483,fr,1,3.550000E+00,2.413580E+00,4.265355E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799805E+01,0.000000E+00 +1920486,fr,1,3.550000E+00,2.413580E+00,4.265355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998875E+01,-9.000000E+01 +1920494,fr,1,3.650000E+00,2.413580E+00,4.265355E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1920496,fr,1,3.650000E+00,2.413580E+00,4.265355E+01,1.500000E+01,Active Shallow Crust,2.400001E+02,5.801280E+01,0.000000E+00 +1920498,fr,1,3.650000E+00,2.413580E+00,4.265355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1920504,fr,1,3.750000E+00,2.413580E+00,4.265355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +1920516,fr,1,3.850000E+00,2.413580E+00,4.265355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +1920517,fr,1,3.850000E+00,2.413580E+00,4.265355E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +1920525,fr,1,3.850000E+00,2.413580E+00,4.265355E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999475E+01,0.000000E+00 +1920528,fr,2,3.950000E+00,2.413580E+00,4.265355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +1920534,fr,1,3.950000E+00,2.413580E+00,4.265355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,-9.000000E+01 +1920546,fr,1,4.050000E+00,2.413580E+00,4.265355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,-9.000000E+01 +1920558,fr,2,4.150000E+00,2.413580E+00,4.265355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999060E+01,-9.000000E+01 +1920564,fr,1,4.250000E+00,2.413580E+00,4.265355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1920624,fr,1,4.750000E+00,2.413580E+00,4.265355E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1921453,fr,1,3.650000E+00,-3.080840E+00,4.995061E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +1921929,fr,1,3.550000E+00,-5.273690E+00,4.811848E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999327E+01,0.000000E+00 +1921956,fr,1,3.850000E+00,-5.273690E+00,4.811848E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +1921968,fr,1,3.950000E+00,-5.273690E+00,4.811848E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999150E+01,0.000000E+00 +1921969,fr,1,3.950000E+00,-5.273690E+00,4.811848E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999150E+01,0.000000E+00 +1921992,fr,1,4.150000E+00,-5.273690E+00,4.811848E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1922004,fr,1,4.250000E+00,-5.273690E+00,4.811848E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +1922400,fr,1,3.550000E+00,2.544890E+00,4.974235E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1922466,fr,1,4.050000E+00,2.544890E+00,4.974235E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999073E+01,-9.000000E+01 +1922472,fr,1,4.150000E+00,2.544890E+00,4.974235E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1922532,fr,1,4.650000E+00,2.544890E+00,4.974235E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1922929,fr,1,3.950000E+00,-5.301500E-01,5.065119E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1923429,fr,1,4.050000E+00,8.952970E+00,5.084261E+01,5.000000E+00,Active Shallow Crust,1.288909E+02,8.999284E+01,0.000000E+00 +1923543,fr,1,5.050000E+00,8.952970E+00,5.084261E+01,5.000000E+00,Active Shallow Crust,2.400247E+02,5.799816E+01,0.000000E+00 +1923840,fr,1,3.550000E+00,6.304660E+00,5.103714E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998732E+01,0.000000E+00 +1923841,fr,2,3.550000E+00,6.304660E+00,5.103714E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998732E+01,0.000000E+00 +1923842,fr,2,3.550000E+00,6.304660E+00,5.103714E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998732E+01,0.000000E+00 +1923843,fr,1,3.550000E+00,6.304660E+00,5.103714E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799856E+01,0.000000E+00 +1923846,fr,1,3.550000E+00,6.304660E+00,5.103714E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998717E+01,-9.000000E+01 +1923852,fr,3,3.650000E+00,6.304660E+00,5.103714E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998870E+01,0.000000E+00 +1923854,fr,1,3.650000E+00,6.304660E+00,5.103714E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998870E+01,0.000000E+00 +1923856,fr,1,3.650000E+00,6.304660E+00,5.103714E+01,1.500000E+01,Active Shallow Crust,2.400020E+02,5.801353E+01,0.000000E+00 +1923864,fr,1,3.750000E+00,6.304660E+00,5.103714E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1923876,fr,3,3.850000E+00,6.304660E+00,5.103714E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999102E+01,0.000000E+00 +1923878,fr,1,3.850000E+00,6.304660E+00,5.103714E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999102E+01,0.000000E+00 +1923885,fr,1,3.850000E+00,6.304660E+00,5.103714E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.999327E+01,0.000000E+00 +1923888,fr,1,3.950000E+00,6.304660E+00,5.103714E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999200E+01,0.000000E+00 +1923899,fr,1,3.950000E+00,6.304660E+00,5.103714E+01,2.750000E+01,Active Shallow Crust,1.288989E+02,8.999400E+01,0.000000E+00 +1923901,fr,1,4.050000E+00,6.304660E+00,5.103714E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +1923912,fr,2,4.150000E+00,6.304660E+00,5.103714E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1923924,fr,2,4.250000E+00,6.304660E+00,5.103714E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998867E+01,0.000000E+00 +1923925,fr,1,4.250000E+00,6.304660E+00,5.103714E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998867E+01,0.000000E+00 +1923940,fr,1,4.350000E+00,6.304660E+00,5.103714E+01,1.500000E+01,Active Shallow Crust,2.400092E+02,5.799638E+01,0.000000E+00 +1923984,fr,1,4.750000E+00,6.304660E+00,5.103714E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +1923999,fr,1,4.850000E+00,6.304660E+00,5.103714E+01,5.000000E+00,Active Shallow Crust,2.400191E+02,5.800267E+01,0.000000E+00 +1924008,fr,1,4.950000E+00,6.304660E+00,5.103714E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1924049,fr,1,5.250000E+00,6.304660E+00,5.103714E+01,2.750000E+01,Active Shallow Crust,2.400287E+02,5.800087E+01,0.000000E+00 +1924359,fr,1,3.850000E+00,4.896760E+00,4.072490E+01,5.000000E+00,Active Shallow Crust,2.400094E+02,5.799765E+01,0.000000E+00 +1924800,fr,4,3.550000E+00,3.927500E-01,4.266184E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1924801,fr,2,3.550000E+00,3.927500E-01,4.266184E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1924803,fr,1,3.550000E+00,3.927500E-01,4.266184E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799812E+01,0.000000E+00 +1924804,fr,1,3.550000E+00,3.927500E-01,4.266184E+01,1.500000E+01,Active Shallow Crust,2.400118E+02,5.799812E+01,0.000000E+00 +1924806,fr,1,3.550000E+00,3.927500E-01,4.266184E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,-9.000000E+01 +1924812,fr,1,3.650000E+00,3.927500E-01,4.266184E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1924813,fr,2,3.650000E+00,3.927500E-01,4.266184E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1924816,fr,2,3.650000E+00,3.927500E-01,4.266184E+01,1.500000E+01,Active Shallow Crust,2.400007E+02,5.801278E+01,0.000000E+00 +1924824,fr,1,3.750000E+00,3.927500E-01,4.266184E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1924825,fr,1,3.750000E+00,3.927500E-01,4.266184E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1924833,fr,1,3.750000E+00,3.927500E-01,4.266184E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.996735E+01,0.000000E+00 +1924836,fr,3,3.850000E+00,3.927500E-01,4.266184E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1924837,fr,1,3.850000E+00,3.927500E-01,4.266184E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1924839,fr,1,3.850000E+00,3.927500E-01,4.266184E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.799770E+01,0.000000E+00 +1924848,fr,1,3.950000E+00,3.927500E-01,4.266184E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1924849,fr,1,3.950000E+00,3.927500E-01,4.266184E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1924851,fr,1,3.950000E+00,3.927500E-01,4.266184E+01,5.000000E+00,Active Shallow Crust,2.400192E+02,5.800489E+01,0.000000E+00 +1924860,fr,1,4.050000E+00,3.927500E-01,4.266184E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1924861,fr,1,4.050000E+00,3.927500E-01,4.266184E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1924865,fr,1,4.050000E+00,3.927500E-01,4.266184E+01,2.750000E+01,Active Shallow Crust,2.400054E+02,5.800570E+01,0.000000E+00 +1924868,fr,1,4.050000E+00,3.927500E-01,4.266184E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +1924873,fr,1,4.150000E+00,3.927500E-01,4.266184E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1924880,fr,1,4.150000E+00,3.927500E-01,4.266184E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,-9.000000E+01 +1924896,fr,1,4.350000E+00,3.927500E-01,4.266184E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1924908,fr,1,4.450000E+00,3.927500E-01,4.266184E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1924920,fr,1,4.550000E+00,3.927500E-01,4.266184E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1924932,fr,1,4.650000E+00,3.927500E-01,4.266184E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1924942,fr,1,4.650000E+00,3.927500E-01,4.266184E+01,1.500000E+01,Active Shallow Crust,1.288921E+02,8.998701E+01,0.000000E+00 +1924944,fr,1,4.750000E+00,3.927500E-01,4.266184E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1924953,fr,1,4.750000E+00,3.927500E-01,4.266184E+01,5.000000E+00,Active Shallow Crust,1.288898E+02,8.998808E+01,0.000000E+00 +1924994,fr,1,5.150000E+00,3.927500E-01,4.266184E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1925292,fr,1,3.650000E+00,5.835400E+00,4.206619E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999332E+01,0.000000E+00 +1925461,fr,1,5.050000E+00,5.835400E+00,4.206619E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +1925760,fr,2,3.550000E+00,9.142450E+00,4.848157E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998663E+01,0.000000E+00 +1925762,fr,1,3.550000E+00,9.142450E+00,4.848157E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998663E+01,0.000000E+00 +1925766,fr,1,3.550000E+00,9.142450E+00,4.848157E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998647E+01,-9.000000E+01 +1925769,fr,1,3.550000E+00,9.142450E+00,4.848157E+01,5.000000E+00,Active Shallow Crust,1.288971E+02,8.999332E+01,0.000000E+00 +1925772,fr,4,3.650000E+00,9.142450E+00,4.848157E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +1925773,fr,2,3.650000E+00,9.142450E+00,4.848157E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +1925775,fr,1,3.650000E+00,9.142450E+00,4.848157E+01,5.000000E+00,Active Shallow Crust,2.400000E+02,5.801363E+01,0.000000E+00 +1925777,fr,1,3.650000E+00,9.142450E+00,4.848157E+01,2.750000E+01,Active Shallow Crust,2.400000E+02,5.801354E+01,0.000000E+00 +1925779,fr,1,3.650000E+00,9.142450E+00,4.848157E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998795E+01,-9.000000E+01 +1925781,fr,1,3.650000E+00,9.142450E+00,4.848157E+01,5.000000E+00,Active Shallow Crust,1.289013E+02,8.996356E+01,0.000000E+00 +1925784,fr,2,3.750000E+00,9.142450E+00,4.848157E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +1925785,fr,1,3.750000E+00,9.142450E+00,4.848157E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +1925786,fr,1,3.750000E+00,9.142450E+00,4.848157E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +1925796,fr,2,3.850000E+00,9.142450E+00,4.848157E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +1925800,fr,1,3.850000E+00,9.142450E+00,4.848157E+01,1.500000E+01,Active Shallow Crust,2.400109E+02,5.799793E+01,0.000000E+00 +1925802,fr,2,3.850000E+00,9.142450E+00,4.848157E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,-9.000000E+01 +1925818,fr,1,3.950000E+00,9.142450E+00,4.848157E+01,1.500000E+01,Active Shallow Crust,1.289007E+02,8.999157E+01,0.000000E+00 +1925821,fr,1,4.050000E+00,9.142450E+00,4.848157E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999249E+01,0.000000E+00 +1925822,fr,1,4.050000E+00,9.142450E+00,4.848157E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999249E+01,0.000000E+00 +1925833,fr,1,4.150000E+00,9.142450E+00,4.848157E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999330E+01,0.000000E+00 +1925835,fr,1,4.150000E+00,9.142450E+00,4.848157E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.799785E+01,0.000000E+00 +1925868,fr,2,4.450000E+00,9.142450E+00,4.848157E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +1925869,fr,1,4.450000E+00,9.142450E+00,4.848157E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +1925871,fr,1,4.450000E+00,9.142450E+00,4.848157E+01,5.000000E+00,Active Shallow Crust,2.400058E+02,5.799517E+01,0.000000E+00 +1925880,fr,2,4.550000E+00,9.142450E+00,4.848157E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999155E+01,0.000000E+00 +1925895,fr,2,4.650000E+00,9.142450E+00,4.848157E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799381E+01,0.000000E+00 +1925908,fr,1,4.750000E+00,9.142450E+00,4.848157E+01,1.500000E+01,Active Shallow Crust,2.400078E+02,5.800480E+01,0.000000E+00 +1925913,fr,1,4.750000E+00,9.142450E+00,4.848157E+01,5.000000E+00,Active Shallow Crust,1.288889E+02,8.998785E+01,0.000000E+00 +1925940,fr,1,5.050000E+00,9.142450E+00,4.848157E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1925977,fr,1,5.350000E+00,9.142450E+00,4.848157E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1926001,fr,1,5.550000E+00,9.142450E+00,4.848157E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +1926240,fr,4,3.550000E+00,4.848640E+00,4.434123E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999279E+01,0.000000E+00 +1926241,fr,5,3.550000E+00,4.848640E+00,4.434123E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999279E+01,0.000000E+00 +1926243,fr,2,3.550000E+00,4.848640E+00,4.434123E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799815E+01,0.000000E+00 +1926246,fr,1,3.550000E+00,4.848640E+00,4.434123E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999271E+01,-9.000000E+01 +1926249,fr,2,3.550000E+00,4.848640E+00,4.434123E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.999279E+01,0.000000E+00 +1926251,fr,1,3.550000E+00,4.848640E+00,4.434123E+01,2.750000E+01,Active Shallow Crust,1.288970E+02,8.999279E+01,0.000000E+00 +1926252,fr,8,3.650000E+00,4.848640E+00,4.434123E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998714E+01,0.000000E+00 +1926253,fr,2,3.650000E+00,4.848640E+00,4.434123E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998714E+01,0.000000E+00 +1926254,fr,1,3.650000E+00,4.848640E+00,4.434123E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998714E+01,0.000000E+00 +1926258,fr,1,3.650000E+00,4.848640E+00,4.434123E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998700E+01,-9.000000E+01 +1926264,fr,6,3.750000E+00,4.848640E+00,4.434123E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998854E+01,0.000000E+00 +1926265,fr,1,3.750000E+00,4.848640E+00,4.434123E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998854E+01,0.000000E+00 +1926266,fr,1,3.750000E+00,4.848640E+00,4.434123E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998854E+01,0.000000E+00 +1926269,fr,1,3.750000E+00,4.848640E+00,4.434123E+01,2.750000E+01,Active Shallow Crust,2.400082E+02,5.801756E+01,0.000000E+00 +1926270,fr,2,3.750000E+00,4.848640E+00,4.434123E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998841E+01,-9.000000E+01 +1926276,fr,4,3.850000E+00,4.848640E+00,4.434123E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1926279,fr,3,3.850000E+00,4.848640E+00,4.434123E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799741E+01,0.000000E+00 +1926288,fr,1,3.950000E+00,4.848640E+00,4.434123E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999090E+01,0.000000E+00 +1926295,fr,1,3.950000E+00,4.848640E+00,4.434123E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999079E+01,-9.000000E+01 +1926300,fr,3,4.050000E+00,4.848640E+00,4.434123E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999189E+01,0.000000E+00 +1926302,fr,1,4.050000E+00,4.848640E+00,4.434123E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999189E+01,0.000000E+00 +1926305,fr,1,4.050000E+00,4.848640E+00,4.434123E+01,2.750000E+01,Active Shallow Crust,2.400051E+02,5.800600E+01,0.000000E+00 +1926312,fr,1,4.150000E+00,4.848640E+00,4.434123E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +1926313,fr,1,4.150000E+00,4.848640E+00,4.434123E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +1926324,fr,1,4.250000E+00,4.848640E+00,4.434123E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1926337,fr,1,4.350000E+00,4.848640E+00,4.434123E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999139E+01,0.000000E+00 +1926357,fr,1,4.450000E+00,4.848640E+00,4.434123E+01,5.000000E+00,Active Shallow Crust,1.288934E+02,8.999361E+01,0.000000E+00 +1926363,fr,1,4.550000E+00,4.848640E+00,4.434123E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799720E+01,0.000000E+00 +1926373,fr,1,4.650000E+00,4.848640E+00,4.434123E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +1926429,fr,1,5.050000E+00,4.848640E+00,4.434123E+01,5.000000E+00,Active Shallow Crust,1.288862E+02,8.999038E+01,0.000000E+00 +1926468,fr,1,5.450000E+00,4.848640E+00,4.434123E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +1926541,fr,1,6.050000E+00,4.848640E+00,4.434123E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1926732,fr,1,3.650000E+00,2.862280E+00,4.245668E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1926733,fr,1,3.650000E+00,2.862280E+00,4.245668E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1926744,fr,2,3.750000E+00,2.862280E+00,4.245668E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999113E+01,0.000000E+00 +1926745,fr,1,3.750000E+00,2.862280E+00,4.245668E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999113E+01,0.000000E+00 +1926747,fr,1,3.750000E+00,2.862280E+00,4.245668E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.801713E+01,0.000000E+00 +1926750,fr,1,3.750000E+00,2.862280E+00,4.245668E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,-9.000000E+01 +1926756,fr,1,3.850000E+00,2.862280E+00,4.245668E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1926758,fr,1,3.850000E+00,2.862280E+00,4.245668E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1926783,fr,1,4.050000E+00,2.862280E+00,4.245668E+01,5.000000E+00,Active Shallow Crust,2.400053E+02,5.800576E+01,0.000000E+00 +1926792,fr,1,4.150000E+00,2.862280E+00,4.245668E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +1926793,fr,1,4.150000E+00,2.862280E+00,4.245668E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +1926818,fr,1,4.350000E+00,2.862280E+00,4.245668E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +1926838,fr,1,4.450000E+00,2.862280E+00,4.245668E+01,1.500000E+01,Active Shallow Crust,1.288929E+02,8.999340E+01,0.000000E+00 +1926843,fr,1,4.550000E+00,2.862280E+00,4.245668E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799705E+01,0.000000E+00 +1926859,fr,1,4.650000E+00,2.862280E+00,4.245668E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,-9.000000E+01 +1926936,fr,1,5.350000E+00,2.862280E+00,4.245668E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1927200,fr,1,3.550000E+00,-2.706460E+00,4.742077E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1927218,fr,1,3.650000E+00,-2.706460E+00,4.742077E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,-9.000000E+01 +1927266,fr,1,4.050000E+00,-2.706460E+00,4.742077E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,-9.000000E+01 +1927269,fr,1,4.050000E+00,-2.706460E+00,4.742077E+01,5.000000E+00,Active Shallow Crust,1.288899E+02,8.999425E+01,0.000000E+00 +1927515,fr,1,6.150000E+00,-2.706867E+00,4.742125E+01,5.097890E+00,Active Shallow Crust,2.400667E+02,5.800034E+01,0.000000E+00 +1927680,fr,2,3.550000E+00,1.101810E+00,4.730702E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1927712,fr,1,3.750000E+00,1.101810E+00,4.730702E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,-9.000000E+01 +1927725,fr,1,3.850000E+00,1.101810E+00,4.730702E+01,5.000000E+00,Active Shallow Crust,1.288953E+02,8.999395E+01,0.000000E+00 +1927734,fr,1,3.950000E+00,1.101810E+00,4.730702E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,-9.000000E+01 +1927765,fr,1,4.250000E+00,1.101810E+00,4.730702E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1927812,fr,1,4.650000E+00,1.101810E+00,4.730702E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1927860,fr,1,5.050000E+00,1.101810E+00,4.730702E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1928640,fr,4,3.550000E+00,5.875570E+00,4.605132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999300E+01,0.000000E+00 +1928652,fr,1,3.650000E+00,5.875570E+00,4.605132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998753E+01,0.000000E+00 +1928653,fr,1,3.650000E+00,5.875570E+00,4.605132E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998753E+01,0.000000E+00 +1928670,fr,1,3.750000E+00,5.875570E+00,4.605132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998875E+01,-9.000000E+01 +1928679,fr,1,3.850000E+00,5.875570E+00,4.605132E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799791E+01,0.000000E+00 +1928691,fr,2,3.950000E+00,5.875570E+00,4.605132E+01,5.000000E+00,Active Shallow Crust,2.400199E+02,5.800477E+01,0.000000E+00 +1928701,fr,1,4.050000E+00,5.875570E+00,4.605132E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998819E+01,0.000000E+00 +1928706,fr,1,4.050000E+00,5.875570E+00,4.605132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998806E+01,-9.000000E+01 +1928712,fr,2,4.150000E+00,5.875570E+00,4.605132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +1928714,fr,1,4.150000E+00,5.875570E+00,4.605132E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +1928715,fr,1,4.150000E+00,5.875570E+00,4.605132E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.799725E+01,0.000000E+00 +1928724,fr,1,4.250000E+00,5.875570E+00,4.605132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1928748,fr,1,4.450000E+00,5.875570E+00,4.605132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1928751,fr,1,4.450000E+00,5.875570E+00,4.605132E+01,5.000000E+00,Active Shallow Crust,2.400052E+02,5.799483E+01,0.000000E+00 +1928784,fr,1,4.750000E+00,5.875570E+00,4.605132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +1928845,fr,1,5.250000E+00,5.875570E+00,4.605132E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1929122,fr,1,3.550000E+00,2.059090E+00,4.017576E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998844E+01,0.000000E+00 +1929132,fr,1,3.650000E+00,2.059090E+00,4.017576E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1930086,fr,1,3.550000E+00,3.623930E+00,4.521733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998922E+01,-9.000000E+01 +1930092,fr,1,3.650000E+00,3.623930E+00,4.521733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +1930095,fr,1,3.650000E+00,3.623930E+00,4.521733E+01,5.000000E+00,Active Shallow Crust,2.400016E+02,5.801274E+01,0.000000E+00 +1930104,fr,1,3.750000E+00,3.623930E+00,4.521733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +1930105,fr,1,3.750000E+00,3.623930E+00,4.521733E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +1930165,fr,1,4.250000E+00,3.623930E+00,4.521733E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +1930168,fr,1,4.250000E+00,3.623930E+00,4.521733E+01,1.500000E+01,Active Shallow Crust,2.400074E+02,5.799408E+01,0.000000E+00 +1930248,fr,1,4.950000E+00,3.623930E+00,4.521733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1930260,fr,1,5.050000E+00,3.623930E+00,4.521733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1930344,fr,1,5.750000E+00,3.623930E+00,4.521733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1930560,fr,1,3.550000E+00,6.512000E-02,4.910392E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1930562,fr,1,3.550000E+00,6.512000E-02,4.910392E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1930564,fr,1,3.550000E+00,6.512000E-02,4.910392E+01,1.500000E+01,Active Shallow Crust,2.400125E+02,5.799820E+01,0.000000E+00 +1930578,fr,1,3.650000E+00,6.512000E-02,4.910392E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,-9.000000E+01 +1930584,fr,1,3.750000E+00,6.512000E-02,4.910392E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1930593,fr,2,3.750000E+00,6.512000E-02,4.910392E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.996735E+01,0.000000E+00 +1930605,fr,1,3.850000E+00,6.512000E-02,4.910392E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.999372E+01,0.000000E+00 +1930608,fr,1,3.950000E+00,6.512000E-02,4.910392E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1930613,fr,1,3.950000E+00,6.512000E-02,4.910392E+01,2.750000E+01,Active Shallow Crust,2.400202E+02,5.800506E+01,0.000000E+00 +1930614,fr,1,3.950000E+00,6.512000E-02,4.910392E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +1930645,fr,1,4.250000E+00,6.512000E-02,4.910392E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1930680,fr,1,4.550000E+00,6.512000E-02,4.910392E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1930731,fr,1,4.950000E+00,6.512000E-02,4.910392E+01,5.000000E+00,Active Shallow Crust,2.400132E+02,5.800470E+01,0.000000E+00 +1931040,fr,2,3.550000E+00,-1.361560E+00,4.686071E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1931041,fr,1,3.550000E+00,-1.361560E+00,4.686071E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1931049,fr,1,3.550000E+00,-1.361560E+00,4.686071E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999397E+01,0.000000E+00 +1931052,fr,1,3.650000E+00,-1.361560E+00,4.686071E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +1931064,fr,1,3.750000E+00,-1.361560E+00,4.686071E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +1931065,fr,2,3.750000E+00,-1.361560E+00,4.686071E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +1931076,fr,2,3.850000E+00,-1.361560E+00,4.686071E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1931082,fr,1,3.850000E+00,-1.361560E+00,4.686071E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,-9.000000E+01 +1931100,fr,1,4.050000E+00,-1.361560E+00,4.686071E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +1931116,fr,1,4.150000E+00,-1.361560E+00,4.686071E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.799737E+01,0.000000E+00 +1931133,fr,1,4.250000E+00,-1.361560E+00,4.686071E+01,5.000000E+00,Active Shallow Crust,1.288943E+02,8.998096E+01,0.000000E+00 +1931172,fr,2,4.650000E+00,-1.361560E+00,4.686071E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1931202,fr,1,4.850000E+00,-1.361560E+00,4.686071E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +1931206,fr,1,4.850000E+00,-1.361560E+00,4.686071E+01,1.500000E+01,Active Shallow Crust,1.288925E+02,8.998895E+01,0.000000E+00 +1931220,fr,1,5.050000E+00,-1.361560E+00,4.686071E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1931262,fr,1,5.350000E+00,-1.361560E+00,4.686071E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,-9.000000E+01 +1931520,fr,1,3.550000E+00,3.094310E+00,5.027659E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1931521,fr,1,3.550000E+00,3.094310E+00,5.027659E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1931523,fr,1,3.550000E+00,3.094310E+00,5.027659E+01,5.000000E+00,Active Shallow Crust,2.400131E+02,5.799800E+01,0.000000E+00 +1931532,fr,1,3.650000E+00,3.094310E+00,5.027659E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999139E+01,0.000000E+00 +1931559,fr,1,3.850000E+00,3.094310E+00,5.027659E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799816E+01,0.000000E+00 +1931677,fr,1,4.850000E+00,3.094310E+00,5.027659E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1932000,fr,4,3.550000E+00,1.113160E+00,4.516512E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1932002,fr,1,3.550000E+00,1.113160E+00,4.516512E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1932065,fr,1,4.050000E+00,1.113160E+00,4.516512E+01,2.750000E+01,Active Shallow Crust,2.400056E+02,5.800579E+01,0.000000E+00 +1932088,fr,1,4.250000E+00,1.113160E+00,4.516512E+01,1.500000E+01,Active Shallow Crust,2.400071E+02,5.799406E+01,0.000000E+00 +1932091,fr,1,4.250000E+00,1.113160E+00,4.516512E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,-9.000000E+01 +1932096,fr,1,4.350000E+00,1.113160E+00,4.516512E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1933020,fr,1,4.050000E+00,-3.499700E+00,4.748157E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +1933021,fr,1,4.050000E+00,-3.499700E+00,4.748157E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +1933440,fr,1,3.550000E+00,-2.571220E+00,4.358736E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +1933446,fr,1,3.550000E+00,-2.571220E+00,4.358736E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,-9.000000E+01 +1933465,fr,1,3.750000E+00,-2.571220E+00,4.358736E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +1933476,fr,1,3.850000E+00,-2.571220E+00,4.358736E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1933496,fr,1,3.950000E+00,-2.571220E+00,4.358736E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999068E+01,-9.000000E+01 +1933524,fr,1,4.250000E+00,-2.571220E+00,4.358736E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1933591,fr,1,4.750000E+00,-2.571220E+00,4.358736E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,-9.000000E+01 +1933938,fr,1,3.650000E+00,4.706280E+00,4.833409E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998792E+01,-9.000000E+01 +1933969,fr,1,3.950000E+00,4.706280E+00,4.833409E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999154E+01,0.000000E+00 +1934400,fr,3,3.550000E+00,6.577800E+00,5.082525E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998726E+01,0.000000E+00 +1934401,fr,1,3.550000E+00,6.577800E+00,5.082525E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998726E+01,0.000000E+00 +1934402,fr,2,3.550000E+00,6.577800E+00,5.082525E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998726E+01,0.000000E+00 +1934404,fr,1,3.550000E+00,6.577800E+00,5.082525E+01,1.500000E+01,Active Shallow Crust,2.400111E+02,5.799888E+01,0.000000E+00 +1934409,fr,1,3.550000E+00,6.577800E+00,5.082525E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999363E+01,0.000000E+00 +1934411,fr,1,3.550000E+00,6.577800E+00,5.082525E+01,2.750000E+01,Active Shallow Crust,1.288958E+02,8.999363E+01,0.000000E+00 +1934412,fr,2,3.650000E+00,6.577800E+00,5.082525E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998865E+01,0.000000E+00 +1934414,fr,1,3.650000E+00,6.577800E+00,5.082525E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998865E+01,0.000000E+00 +1934415,fr,1,3.650000E+00,6.577800E+00,5.082525E+01,5.000000E+00,Active Shallow Crust,2.400017E+02,5.801302E+01,0.000000E+00 +1934421,fr,1,3.650000E+00,6.577800E+00,5.082525E+01,5.000000E+00,Active Shallow Crust,1.289006E+02,8.996361E+01,0.000000E+00 +1934424,fr,4,3.750000E+00,6.577800E+00,5.082525E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1934425,fr,1,3.750000E+00,6.577800E+00,5.082525E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1934427,fr,1,3.750000E+00,6.577800E+00,5.082525E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.801718E+01,0.000000E+00 +1934431,fr,1,3.750000E+00,6.577800E+00,5.082525E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,-9.000000E+01 +1934433,fr,1,3.750000E+00,6.577800E+00,5.082525E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.996707E+01,0.000000E+00 +1934436,fr,2,3.850000E+00,6.577800E+00,5.082525E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999098E+01,0.000000E+00 +1934442,fr,1,3.850000E+00,6.577800E+00,5.082525E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,-9.000000E+01 +1934448,fr,1,3.950000E+00,6.577800E+00,5.082525E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999196E+01,0.000000E+00 +1934454,fr,1,3.950000E+00,6.577800E+00,5.082525E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999187E+01,-9.000000E+01 +1934463,fr,2,4.050000E+00,6.577800E+00,5.082525E+01,5.000000E+00,Active Shallow Crust,2.400067E+02,5.800653E+01,0.000000E+00 +1934481,fr,1,4.150000E+00,6.577800E+00,5.082525E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999361E+01,0.000000E+00 +1934485,fr,2,4.250000E+00,6.577800E+00,5.082525E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +1934508,fr,1,4.450000E+00,6.577800E+00,5.082525E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999096E+01,0.000000E+00 +1934514,fr,2,4.450000E+00,6.577800E+00,5.082525E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999085E+01,-9.000000E+01 +1934532,fr,1,4.650000E+00,6.577800E+00,5.082525E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +1934556,fr,1,4.850000E+00,6.577800E+00,5.082525E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1934568,fr,1,4.950000E+00,6.577800E+00,5.082525E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1934578,fr,1,4.950000E+00,6.577800E+00,5.082525E+01,1.500000E+01,Active Shallow Crust,1.288880E+02,8.998975E+01,0.000000E+00 +1934581,fr,1,5.050000E+00,6.577800E+00,5.082525E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1934707,fr,1,6.050000E+00,6.577800E+00,5.082525E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +1934713,fr,1,6.150000E+00,6.577800E+00,5.082525E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1934883,fr,1,3.550000E+00,4.751330E+00,4.808678E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799871E+01,0.000000E+00 +1934886,fr,1,3.550000E+00,4.751330E+00,4.808678E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999319E+01,-9.000000E+01 +1934917,fr,1,3.850000E+00,4.751330E+00,4.808678E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1934933,fr,1,3.950000E+00,4.751330E+00,4.808678E+01,2.750000E+01,Active Shallow Crust,2.400201E+02,5.800544E+01,0.000000E+00 +1934961,fr,1,4.150000E+00,4.751330E+00,4.808678E+01,5.000000E+00,Active Shallow Crust,1.288982E+02,8.999325E+01,0.000000E+00 +1935360,fr,1,3.550000E+00,5.187680E+00,4.622078E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999303E+01,0.000000E+00 +1935361,fr,2,3.550000E+00,5.187680E+00,4.622078E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999303E+01,0.000000E+00 +1935372,fr,1,3.650000E+00,5.187680E+00,4.622078E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998756E+01,0.000000E+00 +1935374,fr,1,3.650000E+00,5.187680E+00,4.622078E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998756E+01,0.000000E+00 +1935397,fr,1,3.850000E+00,5.187680E+00,4.622078E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1935398,fr,1,3.850000E+00,5.187680E+00,4.622078E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1935408,fr,1,3.950000E+00,5.187680E+00,4.622078E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +1935420,fr,1,4.050000E+00,5.187680E+00,4.622078E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998823E+01,0.000000E+00 +1935685,fr,1,6.250000E+00,5.187680E+00,4.622078E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1935840,fr,1,3.550000E+00,-3.786620E+00,4.731623E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1935894,fr,1,3.950000E+00,-3.786620E+00,4.731623E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998909E+01,-9.000000E+01 +1936320,fr,1,3.550000E+00,8.489070E+00,4.904863E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998678E+01,0.000000E+00 +1936321,fr,1,3.550000E+00,8.489070E+00,4.904863E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998678E+01,0.000000E+00 +1936323,fr,1,3.550000E+00,8.489070E+00,4.904863E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.799808E+01,0.000000E+00 +1936324,fr,1,3.550000E+00,8.489070E+00,4.904863E+01,1.500000E+01,Active Shallow Crust,2.400127E+02,5.799808E+01,0.000000E+00 +1936332,fr,2,3.650000E+00,8.489070E+00,4.904863E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998822E+01,0.000000E+00 +1936341,fr,1,3.650000E+00,8.489070E+00,4.904863E+01,5.000000E+00,Active Shallow Crust,1.288975E+02,8.996357E+01,0.000000E+00 +1936347,fr,3,3.750000E+00,8.489070E+00,4.904863E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.801686E+01,0.000000E+00 +1936359,fr,2,3.850000E+00,8.489070E+00,4.904863E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799878E+01,0.000000E+00 +1936380,fr,1,4.050000E+00,8.489070E+00,4.904863E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999257E+01,0.000000E+00 +1936383,fr,1,4.050000E+00,8.489070E+00,4.904863E+01,5.000000E+00,Active Shallow Crust,2.400064E+02,5.800663E+01,0.000000E+00 +1936392,fr,1,4.150000E+00,8.489070E+00,4.904863E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998675E+01,0.000000E+00 +1936405,fr,1,4.250000E+00,8.489070E+00,4.904863E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998819E+01,0.000000E+00 +1936416,fr,1,4.350000E+00,8.489070E+00,4.904863E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +1936453,fr,1,4.650000E+00,8.489070E+00,4.904863E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +1936512,fr,1,5.150000E+00,8.489070E+00,4.904863E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1936809,fr,1,3.550000E+00,1.699090E+00,4.694316E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999397E+01,0.000000E+00 +1936810,fr,1,3.550000E+00,1.699090E+00,4.694316E+01,1.500000E+01,Active Shallow Crust,1.288958E+02,8.999397E+01,0.000000E+00 +1936812,fr,4,3.650000E+00,1.699090E+00,4.694316E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1936813,fr,2,3.650000E+00,1.699090E+00,4.694316E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1936824,fr,1,3.750000E+00,1.699090E+00,4.694316E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1936842,fr,1,3.850000E+00,1.699090E+00,4.694316E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +1936849,fr,1,3.950000E+00,1.699090E+00,4.694316E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1936864,fr,1,4.050000E+00,1.699090E+00,4.694316E+01,1.500000E+01,Active Shallow Crust,2.400061E+02,5.800582E+01,0.000000E+00 +1936908,fr,1,4.450000E+00,1.699090E+00,4.694316E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1937007,fr,1,5.250000E+00,1.699090E+00,4.694316E+01,5.000000E+00,Active Shallow Crust,2.400258E+02,5.800031E+01,0.000000E+00 +1937280,fr,1,3.550000E+00,-1.679780E+00,4.898871E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1937281,fr,2,3.550000E+00,-1.679780E+00,4.898871E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1937290,fr,1,3.550000E+00,-1.679780E+00,4.898871E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.999421E+01,0.000000E+00 +1937294,fr,1,3.650000E+00,-1.679780E+00,4.898871E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +1937304,fr,1,3.750000E+00,-1.679780E+00,4.898871E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +1937316,fr,1,3.850000E+00,-1.679780E+00,4.898871E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1937317,fr,1,3.850000E+00,-1.679780E+00,4.898871E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1937330,fr,1,3.950000E+00,-1.679780E+00,4.898871E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1937355,fr,1,4.150000E+00,-1.679780E+00,4.898871E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.799742E+01,0.000000E+00 +1937370,fr,1,4.250000E+00,-1.679780E+00,4.898871E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,-9.000000E+01 +1937385,fr,1,4.350000E+00,-1.679780E+00,4.898871E+01,5.000000E+00,Active Shallow Crust,1.288973E+02,8.998277E+01,0.000000E+00 +1937398,fr,1,4.450000E+00,-1.679780E+00,4.898871E+01,1.500000E+01,Active Shallow Crust,1.288915E+02,8.999384E+01,0.000000E+00 +1937400,fr,1,4.550000E+00,-1.679780E+00,4.898871E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +1937412,fr,1,4.650000E+00,-1.679780E+00,4.898871E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1937414,fr,1,4.650000E+00,-1.679780E+00,4.898871E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1937454,fr,1,4.950000E+00,-1.679780E+00,4.898871E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +1937760,fr,2,3.550000E+00,8.049360E+00,5.050132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998717E+01,0.000000E+00 +1937761,fr,1,3.550000E+00,8.049360E+00,5.050132E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998717E+01,0.000000E+00 +1937772,fr,1,3.650000E+00,8.049360E+00,5.050132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +1937773,fr,1,3.650000E+00,8.049360E+00,5.050132E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +1937775,fr,1,3.650000E+00,8.049360E+00,5.050132E+01,5.000000E+00,Active Shallow Crust,2.400005E+02,5.801451E+01,0.000000E+00 +1937790,fr,1,3.750000E+00,8.049360E+00,5.050132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +1937820,fr,1,4.050000E+00,8.049360E+00,5.050132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999278E+01,0.000000E+00 +1937824,fr,1,4.050000E+00,8.049360E+00,5.050132E+01,1.500000E+01,Active Shallow Crust,2.400061E+02,5.800706E+01,0.000000E+00 +1937832,fr,1,4.150000E+00,8.049360E+00,5.050132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998714E+01,0.000000E+00 +1937833,fr,1,4.150000E+00,8.049360E+00,5.050132E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998714E+01,0.000000E+00 +1937848,fr,1,4.250000E+00,8.049360E+00,5.050132E+01,1.500000E+01,Active Shallow Crust,2.400095E+02,5.799345E+01,0.000000E+00 +1937857,fr,1,4.350000E+00,8.049360E+00,5.050132E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1937905,fr,1,4.750000E+00,8.049360E+00,5.050132E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1937916,fr,1,4.850000E+00,8.049360E+00,5.050132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999139E+01,0.000000E+00 +1937928,fr,1,4.950000E+00,8.049360E+00,5.050132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +1937933,fr,1,4.950000E+00,8.049360E+00,5.050132E+01,2.750000E+01,Active Shallow Crust,2.400138E+02,5.800465E+01,0.000000E+00 +1938261,fr,1,3.650000E+00,2.590720E+00,5.345389E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.996343E+01,0.000000E+00 +1938720,fr,3,3.550000E+00,7.418140E+00,4.688697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999311E+01,0.000000E+00 +1938721,fr,2,3.550000E+00,7.418140E+00,4.688697E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999311E+01,0.000000E+00 +1938723,fr,3,3.550000E+00,7.418140E+00,4.688697E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799901E+01,0.000000E+00 +1938726,fr,1,3.550000E+00,7.418140E+00,4.688697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999303E+01,-9.000000E+01 +1938727,fr,1,3.550000E+00,7.418140E+00,4.688697E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999303E+01,-9.000000E+01 +1938729,fr,1,3.550000E+00,7.418140E+00,4.688697E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999655E+01,0.000000E+00 +1938732,fr,6,3.650000E+00,7.418140E+00,4.688697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998772E+01,0.000000E+00 +1938733,fr,2,3.650000E+00,7.418140E+00,4.688697E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998772E+01,0.000000E+00 +1938736,fr,1,3.650000E+00,7.418140E+00,4.688697E+01,1.500000E+01,Active Shallow Crust,2.400007E+02,5.801304E+01,0.000000E+00 +1938744,fr,1,3.750000E+00,7.418140E+00,4.688697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998905E+01,0.000000E+00 +1938745,fr,2,3.750000E+00,7.418140E+00,4.688697E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998905E+01,0.000000E+00 +1938747,fr,1,3.750000E+00,7.418140E+00,4.688697E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.801783E+01,0.000000E+00 +1938750,fr,2,3.750000E+00,7.418140E+00,4.688697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998892E+01,-9.000000E+01 +1938756,fr,3,3.850000E+00,7.418140E+00,4.688697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +1938757,fr,1,3.850000E+00,7.418140E+00,4.688697E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +1938758,fr,1,3.850000E+00,7.418140E+00,4.688697E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +1938765,fr,2,3.850000E+00,7.418140E+00,4.688697E+01,5.000000E+00,Active Shallow Crust,1.288946E+02,8.999512E+01,0.000000E+00 +1938768,fr,2,3.950000E+00,7.418140E+00,4.688697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999130E+01,0.000000E+00 +1938769,fr,3,3.950000E+00,7.418140E+00,4.688697E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999130E+01,0.000000E+00 +1938771,fr,1,3.950000E+00,7.418140E+00,4.688697E+01,5.000000E+00,Active Shallow Crust,2.400203E+02,5.800513E+01,0.000000E+00 +1938775,fr,1,3.950000E+00,7.418140E+00,4.688697E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999120E+01,-9.000000E+01 +1938778,fr,1,3.950000E+00,7.418140E+00,4.688697E+01,1.500000E+01,Active Shallow Crust,1.288999E+02,8.999348E+01,0.000000E+00 +1938780,fr,1,4.050000E+00,7.418140E+00,4.688697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998837E+01,0.000000E+00 +1938781,fr,1,4.050000E+00,7.418140E+00,4.688697E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998837E+01,0.000000E+00 +1938786,fr,1,4.050000E+00,7.418140E+00,4.688697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998824E+01,-9.000000E+01 +1938790,fr,1,4.050000E+00,7.418140E+00,4.688697E+01,1.500000E+01,Active Shallow Crust,1.288908E+02,8.999419E+01,0.000000E+00 +1938792,fr,2,4.150000E+00,7.418140E+00,4.688697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +1938793,fr,1,4.150000E+00,7.418140E+00,4.688697E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +1938804,fr,1,4.250000E+00,7.418140E+00,4.688697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +1938805,fr,1,4.250000E+00,7.418140E+00,4.688697E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +1938807,fr,1,4.250000E+00,7.418140E+00,4.688697E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.799424E+01,0.000000E+00 +1938816,fr,1,4.350000E+00,7.418140E+00,4.688697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998902E+01,0.000000E+00 +1938817,fr,1,4.350000E+00,7.418140E+00,4.688697E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998902E+01,0.000000E+00 +1938820,fr,1,4.350000E+00,7.418140E+00,4.688697E+01,1.500000E+01,Active Shallow Crust,2.400086E+02,5.799564E+01,0.000000E+00 +1938828,fr,1,4.450000E+00,7.418140E+00,4.688697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1938840,fr,1,4.550000E+00,7.418140E+00,4.688697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +1938846,fr,1,4.550000E+00,7.418140E+00,4.688697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,-9.000000E+01 +1938853,fr,1,4.650000E+00,7.418140E+00,4.688697E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +1938864,fr,1,4.750000E+00,7.418140E+00,4.688697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +1938871,fr,1,4.750000E+00,7.418140E+00,4.688697E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,-9.000000E+01 +1938877,fr,1,4.850000E+00,7.418140E+00,4.688697E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +1938924,fr,1,5.250000E+00,7.418140E+00,4.688697E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1939093,fr,1,6.650000E+00,7.418140E+00,4.688697E+01,1.500000E+01,Active Shallow Crust,3.599999E+02,8.999007E+01,0.000000E+00 +1939200,fr,1,3.550000E+00,3.296730E+00,4.292343E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998892E+01,0.000000E+00 +1939210,fr,1,3.550000E+00,3.296730E+00,4.292343E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.999446E+01,0.000000E+00 +1939224,fr,1,3.750000E+00,3.296730E+00,4.292343E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +1939249,fr,1,3.950000E+00,3.296730E+00,4.292343E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +1939296,fr,1,4.350000E+00,3.296730E+00,4.292343E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +1939308,fr,2,4.450000E+00,3.296730E+00,4.292343E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1939380,fr,1,5.050000E+00,3.296730E+00,4.292343E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1939720,fr,1,3.850000E+00,-3.388560E+00,5.059325E+01,1.500000E+01,Active Shallow Crust,2.400115E+02,5.799784E+01,0.000000E+00 +1939740,fr,1,4.050000E+00,-3.388560E+00,5.059325E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1940161,fr,1,3.550000E+00,8.980490E+00,4.884618E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998672E+01,0.000000E+00 +1940164,fr,1,3.550000E+00,8.980490E+00,4.884618E+01,1.500000E+01,Active Shallow Crust,2.400140E+02,5.799723E+01,0.000000E+00 +1940173,fr,2,3.650000E+00,8.980490E+00,4.884618E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998817E+01,0.000000E+00 +1940197,fr,1,3.850000E+00,8.980490E+00,4.884618E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +1940205,fr,1,3.850000E+00,8.980490E+00,4.884618E+01,5.000000E+00,Active Shallow Crust,1.288978E+02,8.999061E+01,0.000000E+00 +1940209,fr,1,3.950000E+00,8.980490E+00,4.884618E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999162E+01,0.000000E+00 +1940220,fr,1,4.050000E+00,8.980490E+00,4.884618E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999254E+01,0.000000E+00 +1940233,fr,1,4.150000E+00,8.980490E+00,4.884618E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998669E+01,0.000000E+00 +1940256,fr,1,4.350000E+00,8.980490E+00,4.884618E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +1940292,fr,1,4.650000E+00,8.980490E+00,4.884618E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +1940340,fr,1,5.050000E+00,8.980490E+00,4.884618E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +1940640,fr,1,3.550000E+00,4.694440E+00,5.082523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998726E+01,0.000000E+00 +1940652,fr,1,3.650000E+00,4.694440E+00,5.082523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998865E+01,0.000000E+00 +1940655,fr,1,3.650000E+00,4.694440E+00,5.082523E+01,5.000000E+00,Active Shallow Crust,2.400017E+02,5.801302E+01,0.000000E+00 +1940664,fr,1,3.750000E+00,4.694440E+00,5.082523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1940670,fr,1,3.750000E+00,4.694440E+00,5.082523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,-9.000000E+01 +1940674,fr,1,3.750000E+00,4.694440E+00,5.082523E+01,1.500000E+01,Active Shallow Crust,1.288964E+02,8.996707E+01,0.000000E+00 +1940676,fr,2,3.850000E+00,4.694440E+00,5.082523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999098E+01,0.000000E+00 +1940688,fr,1,3.950000E+00,4.694440E+00,5.082523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999196E+01,0.000000E+00 +1940701,fr,1,4.050000E+00,4.694440E+00,5.082523E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +1940726,fr,2,4.250000E+00,4.694440E+00,5.082523E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +1940736,fr,1,4.350000E+00,4.694440E+00,5.082523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1940799,fr,1,4.850000E+00,4.694440E+00,5.082523E+01,5.000000E+00,Active Shallow Crust,2.400192E+02,5.800260E+01,0.000000E+00 +1940809,fr,1,4.950000E+00,4.694440E+00,5.082523E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1941120,fr,4,3.550000E+00,6.575980E+00,4.429898E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999278E+01,0.000000E+00 +1941121,fr,1,3.550000E+00,6.575980E+00,4.429898E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999278E+01,0.000000E+00 +1941122,fr,1,3.550000E+00,6.575980E+00,4.429898E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999278E+01,0.000000E+00 +1941127,fr,1,3.550000E+00,6.575980E+00,4.429898E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999270E+01,-9.000000E+01 +1941132,fr,1,3.650000E+00,6.575980E+00,4.429898E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998714E+01,0.000000E+00 +1941133,fr,1,3.650000E+00,6.575980E+00,4.429898E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998714E+01,0.000000E+00 +1941157,fr,1,3.850000E+00,6.575980E+00,4.429898E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1941168,fr,5,3.950000E+00,6.575980E+00,4.429898E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999089E+01,0.000000E+00 +1941186,fr,1,4.050000E+00,6.575980E+00,4.429898E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999179E+01,-9.000000E+01 +1941187,fr,2,4.050000E+00,6.575980E+00,4.429898E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999179E+01,-9.000000E+01 +1941195,fr,1,4.150000E+00,6.575980E+00,4.429898E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799697E+01,0.000000E+00 +1941199,fr,1,4.150000E+00,6.575980E+00,4.429898E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998902E+01,-9.000000E+01 +1941213,fr,1,4.250000E+00,6.575980E+00,4.429898E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.998087E+01,0.000000E+00 +1941228,fr,1,4.450000E+00,6.575980E+00,4.429898E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1941300,fr,1,5.050000E+00,6.575980E+00,4.429898E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +1941302,fr,1,5.050000E+00,6.575980E+00,4.429898E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +1941313,fr,1,5.150000E+00,6.575980E+00,4.429898E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1941434,fr,1,6.150000E+00,6.575980E+00,4.429898E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1941600,fr,6,3.550000E+00,7.394020E+00,4.465969E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999283E+01,0.000000E+00 +1941601,fr,1,3.550000E+00,7.394020E+00,4.465969E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999283E+01,0.000000E+00 +1941603,fr,2,3.550000E+00,7.394020E+00,4.465969E+01,5.000000E+00,Active Shallow Crust,2.400115E+02,5.799823E+01,0.000000E+00 +1941606,fr,2,3.550000E+00,7.394020E+00,4.465969E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999274E+01,-9.000000E+01 +1941607,fr,1,3.550000E+00,7.394020E+00,4.465969E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999274E+01,-9.000000E+01 +1941609,fr,1,3.550000E+00,7.394020E+00,4.465969E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999283E+01,0.000000E+00 +1941612,fr,4,3.650000E+00,7.394020E+00,4.465969E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998721E+01,0.000000E+00 +1941615,fr,2,3.650000E+00,7.394020E+00,4.465969E+01,5.000000E+00,Active Shallow Crust,2.400000E+02,5.801361E+01,0.000000E+00 +1941618,fr,1,3.650000E+00,7.394020E+00,4.465969E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998707E+01,-9.000000E+01 +1941620,fr,1,3.650000E+00,7.394020E+00,4.465969E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998707E+01,-9.000000E+01 +1941622,fr,1,3.650000E+00,7.394020E+00,4.465969E+01,1.500000E+01,Active Shallow Crust,1.289009E+02,8.996349E+01,0.000000E+00 +1941624,fr,2,3.750000E+00,7.394020E+00,4.465969E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998860E+01,0.000000E+00 +1941630,fr,1,3.750000E+00,7.394020E+00,4.465969E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998847E+01,-9.000000E+01 +1941636,fr,2,3.850000E+00,7.394020E+00,4.465969E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1941641,fr,1,3.850000E+00,7.394020E+00,4.465969E+01,2.750000E+01,Active Shallow Crust,2.400104E+02,5.799803E+01,0.000000E+00 +1941648,fr,1,3.950000E+00,7.394020E+00,4.465969E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999095E+01,0.000000E+00 +1941651,fr,1,3.950000E+00,7.394020E+00,4.465969E+01,5.000000E+00,Active Shallow Crust,2.400197E+02,5.800567E+01,0.000000E+00 +1941655,fr,1,3.950000E+00,7.394020E+00,4.465969E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999084E+01,-9.000000E+01 +1941658,fr,1,3.950000E+00,7.394020E+00,4.465969E+01,1.500000E+01,Active Shallow Crust,1.289014E+02,8.999321E+01,0.000000E+00 +1941660,fr,2,4.050000E+00,7.394020E+00,4.465969E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999194E+01,0.000000E+00 +1941672,fr,1,4.150000E+00,7.394020E+00,4.465969E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +1941678,fr,1,4.150000E+00,7.394020E+00,4.465969E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998909E+01,-9.000000E+01 +1941681,fr,1,4.150000E+00,7.394020E+00,4.465969E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.999461E+01,0.000000E+00 +1941685,fr,2,4.250000E+00,7.394020E+00,4.465969E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +1941696,fr,2,4.350000E+00,7.394020E+00,4.465969E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998858E+01,0.000000E+00 +1941711,fr,1,4.450000E+00,7.394020E+00,4.465969E+01,5.000000E+00,Active Shallow Crust,2.400048E+02,5.799480E+01,0.000000E+00 +1941732,fr,2,4.650000E+00,7.394020E+00,4.465969E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +1941747,fr,1,4.750000E+00,7.394020E+00,4.465969E+01,5.000000E+00,Active Shallow Crust,2.400068E+02,5.800429E+01,0.000000E+00 +1941757,fr,1,4.850000E+00,7.394020E+00,4.465969E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1941768,fr,1,4.950000E+00,7.394020E+00,4.465969E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1941801,fr,1,5.150000E+00,7.394020E+00,4.465969E+01,5.000000E+00,Active Shallow Crust,1.288847E+02,8.999106E+01,0.000000E+00 +1941840,fr,1,5.550000E+00,7.394020E+00,4.465969E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1941938,fr,1,6.350000E+00,7.394020E+00,4.465969E+01,2.743219E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1941972,fr,1,6.650000E+00,7.394032E+00,4.465969E+01,1.068981E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1942003,fr,1,6.850000E+00,7.394020E+00,4.465969E+01,1.500000E+01,Active Shallow Crust,3.599999E+02,8.999007E+01,-9.000000E+01 +1942166,fr,1,4.250000E+00,2.912860E+00,4.044360E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1942560,fr,3,3.550000E+00,5.314030E+00,4.545595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999293E+01,0.000000E+00 +1942572,fr,1,3.650000E+00,5.314030E+00,4.545595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998739E+01,0.000000E+00 +1942573,fr,1,3.650000E+00,5.314030E+00,4.545595E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998739E+01,0.000000E+00 +1942585,fr,1,3.750000E+00,5.314030E+00,4.545595E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998876E+01,0.000000E+00 +1942600,fr,1,3.850000E+00,5.314030E+00,4.545595E+01,1.500000E+01,Active Shallow Crust,2.400104E+02,5.799787E+01,0.000000E+00 +1942608,fr,1,3.950000E+00,5.314030E+00,4.545595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +1942609,fr,1,3.950000E+00,5.314030E+00,4.545595E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +1942622,fr,1,4.050000E+00,5.314030E+00,4.545595E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998807E+01,0.000000E+00 +1942632,fr,2,4.150000E+00,5.314030E+00,4.545595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +1942633,fr,1,4.150000E+00,5.314030E+00,4.545595E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +1942641,fr,1,4.150000E+00,5.314030E+00,4.545595E+01,5.000000E+00,Active Shallow Crust,1.288977E+02,8.999291E+01,0.000000E+00 +1942644,fr,3,4.250000E+00,5.314030E+00,4.545595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +1942656,fr,1,4.350000E+00,5.314030E+00,4.545595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998874E+01,0.000000E+00 +1942824,fr,1,5.750000E+00,5.314030E+00,4.545595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1943040,fr,4,3.550000E+00,-1.372560E+00,4.289188E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999077E+01,0.000000E+00 +1943041,fr,2,3.550000E+00,-1.372560E+00,4.289188E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999077E+01,0.000000E+00 +1943043,fr,2,3.550000E+00,-1.372560E+00,4.289188E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799810E+01,0.000000E+00 +1943046,fr,1,3.550000E+00,-1.372560E+00,4.289188E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999066E+01,-9.000000E+01 +1943049,fr,1,3.550000E+00,-1.372560E+00,4.289188E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999354E+01,0.000000E+00 +1943054,fr,1,3.650000E+00,-1.372560E+00,4.289188E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1943058,fr,2,3.650000E+00,-1.372560E+00,4.289188E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1943064,fr,2,3.750000E+00,-1.372560E+00,4.289188E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +1943065,fr,1,3.750000E+00,-1.372560E+00,4.289188E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +1943066,fr,1,3.750000E+00,-1.372560E+00,4.289188E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +1943073,fr,1,3.750000E+00,-1.372560E+00,4.289188E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.996743E+01,0.000000E+00 +1943076,fr,2,3.850000E+00,-1.372560E+00,4.289188E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +1943078,fr,1,3.850000E+00,-1.372560E+00,4.289188E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +1943079,fr,1,3.850000E+00,-1.372560E+00,4.289188E+01,5.000000E+00,Active Shallow Crust,2.400103E+02,5.799780E+01,0.000000E+00 +1943088,fr,1,3.950000E+00,-1.372560E+00,4.289188E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1943089,fr,1,3.950000E+00,-1.372560E+00,4.289188E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1943113,fr,2,4.150000E+00,-1.372560E+00,4.289188E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1943121,fr,1,4.150000E+00,-1.372560E+00,4.289188E+01,5.000000E+00,Active Shallow Crust,1.288981E+02,8.999352E+01,0.000000E+00 +1943124,fr,1,4.250000E+00,-1.372560E+00,4.289188E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1943126,fr,1,4.250000E+00,-1.372560E+00,4.289188E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1943136,fr,1,4.350000E+00,-1.372560E+00,4.289188E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +1943138,fr,1,4.350000E+00,-1.372560E+00,4.289188E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +1943149,fr,1,4.450000E+00,-1.372560E+00,4.289188E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1943172,fr,1,4.650000E+00,-1.372560E+00,4.289188E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1943181,fr,1,4.650000E+00,-1.372560E+00,4.289188E+01,5.000000E+00,Active Shallow Crust,1.288920E+02,8.998703E+01,0.000000E+00 +1943184,fr,1,4.750000E+00,-1.372560E+00,4.289188E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +1943220,fr,2,5.050000E+00,-1.372560E+00,4.289188E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1943224,fr,1,5.050000E+00,-1.372560E+00,4.289188E+01,1.500000E+01,Active Shallow Crust,2.400204E+02,5.799721E+01,0.000000E+00 +1943316,fr,1,5.850000E+00,-1.372560E+00,4.289188E+01,5.000000E+00,Active Shallow Crust,3.599999E+02,8.999006E+01,0.000000E+00 +1943520,fr,4,3.550000E+00,7.909980E+00,4.822570E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999328E+01,0.000000E+00 +1943521,fr,1,3.550000E+00,7.909980E+00,4.822570E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999328E+01,0.000000E+00 +1943530,fr,1,3.550000E+00,7.909980E+00,4.822570E+01,1.500000E+01,Active Shallow Crust,1.288954E+02,8.999329E+01,0.000000E+00 +1943532,fr,1,3.650000E+00,7.909980E+00,4.822570E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998802E+01,0.000000E+00 +1943542,fr,1,3.650000E+00,7.909980E+00,4.822570E+01,1.500000E+01,Active Shallow Crust,1.288994E+02,8.996355E+01,0.000000E+00 +1943545,fr,1,3.750000E+00,7.909980E+00,4.822570E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1943547,fr,2,3.750000E+00,7.909980E+00,4.822570E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.801731E+01,0.000000E+00 +1943551,fr,1,3.750000E+00,7.909980E+00,4.822570E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,-9.000000E+01 +1943554,fr,1,3.750000E+00,7.909980E+00,4.822570E+01,1.500000E+01,Active Shallow Crust,1.288966E+02,8.996752E+01,0.000000E+00 +1943556,fr,1,3.850000E+00,7.909980E+00,4.822570E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +1943559,fr,1,3.850000E+00,7.909980E+00,4.822570E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799779E+01,0.000000E+00 +1943568,fr,3,3.950000E+00,7.909980E+00,4.822570E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999152E+01,0.000000E+00 +1943569,fr,1,3.950000E+00,7.909980E+00,4.822570E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999152E+01,0.000000E+00 +1943571,fr,1,3.950000E+00,7.909980E+00,4.822570E+01,5.000000E+00,Active Shallow Crust,2.400209E+02,5.800487E+01,0.000000E+00 +1943572,fr,2,3.950000E+00,7.909980E+00,4.822570E+01,1.500000E+01,Active Shallow Crust,2.400209E+02,5.800487E+01,0.000000E+00 +1943577,fr,1,3.950000E+00,7.909980E+00,4.822570E+01,5.000000E+00,Active Shallow Crust,1.289009E+02,8.999364E+01,0.000000E+00 +1943579,fr,1,3.950000E+00,7.909980E+00,4.822570E+01,2.750000E+01,Active Shallow Crust,1.289009E+02,8.999364E+01,0.000000E+00 +1943580,fr,1,4.050000E+00,7.909980E+00,4.822570E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +1943593,fr,1,4.150000E+00,7.909980E+00,4.822570E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1943595,fr,1,4.150000E+00,7.909980E+00,4.822570E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799757E+01,0.000000E+00 +1943617,fr,1,4.350000E+00,7.909980E+00,4.822570E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +1943626,fr,1,4.350000E+00,7.909980E+00,4.822570E+01,1.500000E+01,Active Shallow Crust,1.288975E+02,8.998308E+01,0.000000E+00 +1943627,fr,1,4.350000E+00,7.909980E+00,4.822570E+01,2.750000E+01,Active Shallow Crust,1.288975E+02,8.998308E+01,0.000000E+00 +1943628,fr,2,4.450000E+00,7.909980E+00,4.822570E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1943652,fr,1,4.650000E+00,7.909980E+00,4.822570E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +1943664,fr,1,4.750000E+00,7.909980E+00,4.822570E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1943851,fr,1,6.250000E+00,7.909980E+00,4.822570E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1944000,fr,3,3.550000E+00,4.343900E-01,4.646078E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1944001,fr,1,3.550000E+00,4.343900E-01,4.646078E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1944005,fr,1,3.550000E+00,4.343900E-01,4.646078E+01,2.750000E+01,Active Shallow Crust,2.400121E+02,5.799812E+01,0.000000E+00 +1944012,fr,1,3.650000E+00,4.343900E-01,4.646078E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1944018,fr,1,3.650000E+00,4.343900E-01,4.646078E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,-9.000000E+01 +1944036,fr,2,3.850000E+00,4.343900E-01,4.646078E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1944037,fr,1,3.850000E+00,4.343900E-01,4.646078E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1944042,fr,1,3.850000E+00,4.343900E-01,4.646078E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,-9.000000E+01 +1944045,fr,1,3.850000E+00,4.343900E-01,4.646078E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999370E+01,0.000000E+00 +1944051,fr,1,3.950000E+00,4.343900E-01,4.646078E+01,5.000000E+00,Active Shallow Crust,2.400198E+02,5.800492E+01,0.000000E+00 +1944057,fr,1,3.950000E+00,4.343900E-01,4.646078E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.999370E+01,0.000000E+00 +1944060,fr,3,4.050000E+00,4.343900E-01,4.646078E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1944061,fr,1,4.050000E+00,4.343900E-01,4.646078E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1944096,fr,1,4.350000E+00,4.343900E-01,4.646078E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1944108,fr,2,4.450000E+00,4.343900E-01,4.646078E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1944120,fr,1,4.550000E+00,4.343900E-01,4.646078E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1944121,fr,1,4.550000E+00,4.343900E-01,4.646078E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1944144,fr,1,4.750000E+00,4.343900E-01,4.646078E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1944209,fr,1,5.250000E+00,4.343900E-01,4.646078E+01,2.750000E+01,Active Shallow Crust,2.400254E+02,5.800027E+01,0.000000E+00 +1944237,fr,1,5.450000E+00,4.343900E-01,4.646078E+01,5.000000E+00,Active Shallow Crust,1.288788E+02,8.998898E+01,0.000000E+00 +1944265,fr,1,5.750000E+00,4.343900E-01,4.646078E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1944528,fr,1,3.950000E+00,-5.324850E+00,4.934202E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999171E+01,0.000000E+00 +1944960,fr,1,3.550000E+00,7.731240E+00,4.946986E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998689E+01,0.000000E+00 +1944966,fr,1,3.550000E+00,7.731240E+00,4.946986E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998674E+01,-9.000000E+01 +1944969,fr,1,3.550000E+00,7.731240E+00,4.946986E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.999345E+01,0.000000E+00 +1944981,fr,1,3.650000E+00,7.731240E+00,4.946986E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996300E+01,0.000000E+00 +1944984,fr,1,3.750000E+00,7.731240E+00,4.946986E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1944990,fr,1,3.750000E+00,7.731240E+00,4.946986E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,-9.000000E+01 +1944996,fr,1,3.850000E+00,7.731240E+00,4.946986E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +1945027,fr,1,4.050000E+00,7.731240E+00,4.946986E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998882E+01,-9.000000E+01 +1945032,fr,1,4.150000E+00,7.731240E+00,4.946986E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1945050,fr,1,4.250000E+00,7.731240E+00,4.946986E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999112E+01,-9.000000E+01 +1945944,fr,1,3.750000E+00,8.408670E+00,4.529837E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998873E+01,0.000000E+00 +1945968,fr,1,3.950000E+00,8.408670E+00,4.529837E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999105E+01,0.000000E+00 +1945992,fr,2,4.150000E+00,8.408670E+00,4.529837E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999289E+01,0.000000E+00 +1946006,fr,1,4.250000E+00,8.408670E+00,4.529837E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998733E+01,0.000000E+00 +1946029,fr,1,4.450000E+00,8.408670E+00,4.529837E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1946046,fr,1,4.550000E+00,8.408670E+00,4.529837E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999092E+01,-9.000000E+01 +1946400,fr,3,3.550000E+00,8.120550E+00,5.001247E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998704E+01,0.000000E+00 +1946401,fr,1,3.550000E+00,8.120550E+00,5.001247E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998704E+01,0.000000E+00 +1946409,fr,1,3.550000E+00,8.120550E+00,5.001247E+01,5.000000E+00,Active Shallow Crust,1.288975E+02,8.999352E+01,0.000000E+00 +1946412,fr,3,3.650000E+00,8.120550E+00,5.001247E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998845E+01,0.000000E+00 +1946413,fr,1,3.650000E+00,8.120550E+00,5.001247E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998845E+01,0.000000E+00 +1946414,fr,1,3.650000E+00,8.120550E+00,5.001247E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998845E+01,0.000000E+00 +1946422,fr,1,3.650000E+00,8.120550E+00,5.001247E+01,1.500000E+01,Active Shallow Crust,1.289002E+02,8.996359E+01,0.000000E+00 +1946424,fr,2,3.750000E+00,8.120550E+00,5.001247E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +1946427,fr,2,3.750000E+00,8.120550E+00,5.001247E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801816E+01,0.000000E+00 +1946428,fr,1,3.750000E+00,8.120550E+00,5.001247E+01,1.500000E+01,Active Shallow Crust,2.400085E+02,5.801816E+01,0.000000E+00 +1946442,fr,1,3.850000E+00,8.120550E+00,5.001247E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,-9.000000E+01 +1946448,fr,1,3.950000E+00,8.120550E+00,5.001247E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999182E+01,0.000000E+00 +1946454,fr,1,3.950000E+00,8.120550E+00,5.001247E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999173E+01,-9.000000E+01 +1946460,fr,1,4.050000E+00,8.120550E+00,5.001247E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999271E+01,0.000000E+00 +1946484,fr,1,4.250000E+00,8.120550E+00,5.001247E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998842E+01,0.000000E+00 +1946510,fr,1,4.450000E+00,8.120550E+00,5.001247E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999080E+01,0.000000E+00 +1946534,fr,1,4.650000E+00,8.120550E+00,5.001247E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +1946544,fr,1,4.750000E+00,8.120550E+00,5.001247E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1946592,fr,1,5.150000E+00,8.120550E+00,5.001247E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1946661,fr,1,5.650000E+00,8.120550E+00,5.001247E+01,5.000000E+00,Active Shallow Crust,1.288720E+02,8.999041E+01,0.000000E+00 +1946884,fr,1,3.550000E+00,3.846640E+00,4.984021E+01,1.500000E+01,Active Shallow Crust,2.400121E+02,5.799846E+01,0.000000E+00 +1946886,fr,1,3.550000E+00,3.846640E+00,4.984021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +1946889,fr,1,3.550000E+00,3.846640E+00,4.984021E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999350E+01,0.000000E+00 +1946892,fr,1,3.650000E+00,3.846640E+00,4.984021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999130E+01,0.000000E+00 +1946907,fr,1,3.750000E+00,3.846640E+00,4.984021E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.801757E+01,0.000000E+00 +1946916,fr,1,3.850000E+00,3.846640E+00,4.984021E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999079E+01,0.000000E+00 +1946954,fr,1,4.150000E+00,3.846640E+00,4.984021E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1947372,fr,1,3.650000E+00,2.554850E+00,4.738550E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1947373,fr,1,3.650000E+00,2.554850E+00,4.738550E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1947432,fr,1,4.150000E+00,2.554850E+00,4.738550E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +1947433,fr,1,4.150000E+00,2.554850E+00,4.738550E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +1947840,fr,1,3.550000E+00,5.944030E+00,5.172330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998750E+01,0.000000E+00 +1947853,fr,1,3.650000E+00,5.944030E+00,5.172330E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998887E+01,0.000000E+00 +1947855,fr,1,3.650000E+00,5.944030E+00,5.172330E+01,5.000000E+00,Active Shallow Crust,2.400017E+02,5.801370E+01,0.000000E+00 +1947861,fr,1,3.650000E+00,5.944030E+00,5.172330E+01,5.000000E+00,Active Shallow Crust,1.288989E+02,8.996362E+01,0.000000E+00 +1947889,fr,1,3.950000E+00,5.944030E+00,5.172330E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998817E+01,0.000000E+00 +1947900,fr,1,4.050000E+00,5.944030E+00,5.172330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1948336,fr,1,3.650000E+00,3.193510E+00,4.747657E+01,1.500000E+01,Active Shallow Crust,2.400016E+02,5.801266E+01,0.000000E+00 +1948392,fr,1,4.150000E+00,3.193510E+00,4.747657E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1948405,fr,1,4.250000E+00,3.193510E+00,4.747657E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +1948464,fr,1,4.750000E+00,3.193510E+00,4.747657E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1948512,fr,1,5.150000E+00,3.193510E+00,4.747657E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +1948800,fr,2,3.550000E+00,6.772050E+00,4.745535E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999318E+01,0.000000E+00 +1948812,fr,5,3.650000E+00,6.772050E+00,4.745535E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998785E+01,0.000000E+00 +1948815,fr,1,3.650000E+00,6.772050E+00,4.745535E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801328E+01,0.000000E+00 +1948821,fr,1,3.650000E+00,6.772050E+00,4.745535E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.996354E+01,0.000000E+00 +1948824,fr,2,3.750000E+00,6.772050E+00,4.745535E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +1948827,fr,1,3.750000E+00,6.772050E+00,4.745535E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.801746E+01,0.000000E+00 +1948833,fr,1,3.750000E+00,6.772050E+00,4.745535E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.996751E+01,0.000000E+00 +1948837,fr,1,3.850000E+00,6.772050E+00,4.745535E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +1948838,fr,1,3.850000E+00,6.772050E+00,4.745535E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +1948848,fr,1,3.950000E+00,6.772050E+00,4.745535E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999139E+01,0.000000E+00 +1948857,fr,1,3.950000E+00,6.772050E+00,4.745535E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.999355E+01,0.000000E+00 +1948860,fr,1,4.050000E+00,6.772050E+00,4.745535E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998849E+01,0.000000E+00 +1948874,fr,1,4.150000E+00,6.772050E+00,4.745535E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1948899,fr,1,4.350000E+00,6.772050E+00,4.745535E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799569E+01,0.000000E+00 +1948905,fr,1,4.350000E+00,6.772050E+00,4.745535E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.998305E+01,0.000000E+00 +1948906,fr,1,4.350000E+00,6.772050E+00,4.745535E+01,1.500000E+01,Active Shallow Crust,1.288972E+02,8.998305E+01,0.000000E+00 +1948944,fr,2,4.750000E+00,6.772050E+00,4.745535E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1949304,fr,1,3.750000E+00,3.825370E+00,5.106793E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1949313,fr,1,3.750000E+00,3.825370E+00,5.106793E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.996735E+01,0.000000E+00 +1949321,fr,1,3.850000E+00,3.825370E+00,5.106793E+01,2.750000E+01,Active Shallow Crust,2.400112E+02,5.799829E+01,0.000000E+00 +1949322,fr,1,3.850000E+00,3.825370E+00,5.106793E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999092E+01,-9.000000E+01 +1949358,fr,1,4.150000E+00,3.825370E+00,5.106793E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,-9.000000E+01 +1949364,fr,1,4.250000E+00,3.825370E+00,5.106793E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1950240,fr,3,3.550000E+00,3.612190E+00,4.586698E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1950243,fr,1,3.550000E+00,3.612190E+00,4.586698E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799823E+01,0.000000E+00 +1950252,fr,1,3.650000E+00,3.612190E+00,4.586698E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1950253,fr,1,3.650000E+00,3.612190E+00,4.586698E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1950264,fr,3,3.750000E+00,3.612190E+00,4.586698E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +1950283,fr,1,3.850000E+00,3.612190E+00,4.586698E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +1950303,fr,1,4.050000E+00,3.612190E+00,4.586698E+01,5.000000E+00,Active Shallow Crust,2.400060E+02,5.800587E+01,0.000000E+00 +1950309,fr,1,4.050000E+00,3.612190E+00,4.586698E+01,5.000000E+00,Active Shallow Crust,1.288911E+02,8.999309E+01,0.000000E+00 +1950349,fr,1,4.450000E+00,3.612190E+00,4.586698E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1950351,fr,1,4.450000E+00,3.612190E+00,4.586698E+01,5.000000E+00,Active Shallow Crust,2.400053E+02,5.799451E+01,0.000000E+00 +1950372,fr,2,4.650000E+00,3.612190E+00,4.586698E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1950398,fr,1,4.850000E+00,3.612190E+00,4.586698E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1950525,fr,1,5.850000E+00,3.612190E+00,4.586698E+01,5.000000E+00,Active Shallow Crust,1.288703E+02,8.998942E+01,0.000000E+00 +1950745,fr,1,3.750000E+00,-4.529280E+00,4.792396E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1950756,fr,2,3.850000E+00,-4.529280E+00,4.792396E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1950769,fr,1,3.950000E+00,-4.529280E+00,4.792396E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999147E+01,0.000000E+00 +1950770,fr,1,3.950000E+00,-4.529280E+00,4.792396E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999147E+01,0.000000E+00 +1950780,fr,2,4.050000E+00,-4.529280E+00,4.792396E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998860E+01,0.000000E+00 +1950841,fr,1,4.550000E+00,-4.529280E+00,4.792396E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +1950888,fr,1,4.950000E+00,-4.529280E+00,4.792396E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +1951224,fr,2,3.750000E+00,2.420390E+00,4.371682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999132E+01,0.000000E+00 +1951258,fr,1,3.950000E+00,2.420390E+00,4.371682E+01,1.500000E+01,Active Shallow Crust,1.289005E+02,8.999426E+01,0.000000E+00 +1951284,fr,1,4.250000E+00,2.420390E+00,4.371682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1951285,fr,1,4.250000E+00,2.420390E+00,4.371682E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1951286,fr,2,4.250000E+00,2.420390E+00,4.371682E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1951686,fr,1,3.550000E+00,5.923210E+00,4.644708E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999297E+01,-9.000000E+01 +1951695,fr,1,3.650000E+00,5.923210E+00,4.644708E+01,5.000000E+00,Active Shallow Crust,2.400006E+02,5.801295E+01,0.000000E+00 +1951704,fr,1,3.750000E+00,5.923210E+00,4.644708E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998896E+01,0.000000E+00 +1951716,fr,1,3.850000E+00,5.923210E+00,4.644708E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1951719,fr,1,3.850000E+00,5.923210E+00,4.644708E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799726E+01,0.000000E+00 +1951728,fr,2,3.950000E+00,5.923210E+00,4.644708E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +1951729,fr,1,3.950000E+00,5.923210E+00,4.644708E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +1951731,fr,1,3.950000E+00,5.923210E+00,4.644708E+01,5.000000E+00,Active Shallow Crust,2.400191E+02,5.800551E+01,0.000000E+00 +1951740,fr,1,4.050000E+00,5.923210E+00,4.644708E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998828E+01,0.000000E+00 +1951770,fr,1,4.250000E+00,5.923210E+00,4.644708E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999058E+01,-9.000000E+01 +1951777,fr,1,4.350000E+00,5.923210E+00,4.644708E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998894E+01,0.000000E+00 +1951825,fr,1,4.750000E+00,5.923210E+00,4.644708E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1952160,fr,1,3.550000E+00,5.849160E+00,5.158980E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998747E+01,0.000000E+00 +1952163,fr,2,3.550000E+00,5.849160E+00,5.158980E+01,5.000000E+00,Active Shallow Crust,2.400131E+02,5.799860E+01,0.000000E+00 +1952175,fr,1,3.650000E+00,5.849160E+00,5.158980E+01,5.000000E+00,Active Shallow Crust,2.400023E+02,5.801247E+01,0.000000E+00 +1952184,fr,1,3.750000E+00,5.849160E+00,5.158980E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1952187,fr,1,3.750000E+00,5.849160E+00,5.158980E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.801767E+01,0.000000E+00 +1952197,fr,1,3.850000E+00,5.849160E+00,5.158980E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999113E+01,0.000000E+00 +1952199,fr,1,3.850000E+00,5.849160E+00,5.158980E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799826E+01,0.000000E+00 +1952642,fr,1,3.550000E+00,-2.255740E+00,5.027920E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +1953120,fr,2,3.550000E+00,1.744470E+00,4.561190E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +1953132,fr,1,3.650000E+00,1.744470E+00,4.561190E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +1953135,fr,1,3.650000E+00,1.744470E+00,4.561190E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801291E+01,0.000000E+00 +1953144,fr,1,3.750000E+00,1.744470E+00,4.561190E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1953147,fr,1,3.750000E+00,1.744470E+00,4.561190E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.801759E+01,0.000000E+00 +1953228,fr,1,4.450000E+00,1.744470E+00,4.561190E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1953609,fr,1,3.550000E+00,4.575620E+00,4.081778E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.999619E+01,0.000000E+00 +1953672,fr,1,4.150000E+00,4.575620E+00,4.081778E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998853E+01,0.000000E+00 +1953696,fr,1,4.350000E+00,4.575620E+00,4.081778E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1953744,fr,1,4.750000E+00,4.575620E+00,4.081778E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +1954080,fr,1,3.550000E+00,4.895640E+00,4.140353E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999244E+01,0.000000E+00 +1954082,fr,1,3.550000E+00,4.895640E+00,4.140353E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999244E+01,0.000000E+00 +1954101,fr,1,3.650000E+00,4.895640E+00,4.140353E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996342E+01,0.000000E+00 +1954104,fr,1,3.750000E+00,4.895640E+00,4.140353E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998798E+01,0.000000E+00 +1954116,fr,1,3.850000E+00,4.895640E+00,4.140353E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +1954128,fr,1,3.950000E+00,4.895640E+00,4.140353E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1954176,fr,1,4.350000E+00,4.895640E+00,4.140353E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +1954565,fr,1,3.550000E+00,2.662850E+00,4.520010E+01,2.750000E+01,Active Shallow Crust,2.400128E+02,5.799741E+01,0.000000E+00 +1954585,fr,1,3.750000E+00,2.662850E+00,4.520010E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998871E+01,0.000000E+00 +1954608,fr,2,3.950000E+00,2.662850E+00,4.520010E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +1954621,fr,2,4.050000E+00,2.662850E+00,4.520010E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1954633,fr,1,4.150000E+00,2.662850E+00,4.520010E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +1954634,fr,1,4.150000E+00,2.662850E+00,4.520010E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +1954830,fr,1,5.750000E+00,2.662850E+00,4.520010E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1955042,fr,1,3.550000E+00,-4.199600E-01,5.157084E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1955065,fr,1,3.750000E+00,-4.199600E-01,5.157084E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1955100,fr,1,4.050000E+00,-4.199600E-01,5.157084E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1955538,fr,1,3.650000E+00,2.462200E+00,4.960950E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999117E+01,-9.000000E+01 +1955595,fr,1,4.150000E+00,2.462200E+00,4.960950E+01,5.000000E+00,Active Shallow Crust,2.400092E+02,5.799746E+01,0.000000E+00 +1955705,fr,1,5.050000E+00,2.462200E+00,4.960950E+01,2.750000E+01,Active Shallow Crust,2.400240E+02,5.799781E+01,0.000000E+00 +1956000,fr,2,3.550000E+00,1.579090E+00,5.126388E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +1956012,fr,1,3.650000E+00,1.579090E+00,5.126388E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1956027,fr,1,3.750000E+00,1.579090E+00,5.126388E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.801781E+01,0.000000E+00 +1956048,fr,1,3.950000E+00,1.579090E+00,5.126388E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1956049,fr,1,3.950000E+00,1.579090E+00,5.126388E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1956133,fr,1,4.650000E+00,1.579090E+00,5.126388E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1956141,fr,1,4.650000E+00,1.579090E+00,5.126388E+01,5.000000E+00,Active Shallow Crust,1.288896E+02,8.998704E+01,0.000000E+00 +1956480,fr,4,3.550000E+00,1.441110E+00,4.289367E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999077E+01,0.000000E+00 +1956489,fr,1,3.550000E+00,1.441110E+00,4.289367E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999354E+01,0.000000E+00 +1956492,fr,1,3.650000E+00,1.441110E+00,4.289367E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1956493,fr,1,3.650000E+00,1.441110E+00,4.289367E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +1956504,fr,1,3.750000E+00,1.441110E+00,4.289367E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +1956507,fr,1,3.750000E+00,1.441110E+00,4.289367E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.801745E+01,0.000000E+00 +1956516,fr,1,3.850000E+00,1.441110E+00,4.289367E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +1956519,fr,1,3.850000E+00,1.441110E+00,4.289367E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.799771E+01,0.000000E+00 +1956528,fr,1,3.950000E+00,1.441110E+00,4.289367E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +1956547,fr,1,4.050000E+00,1.441110E+00,4.289367E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,-9.000000E+01 +1956579,fr,1,4.350000E+00,1.441110E+00,4.289367E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799570E+01,0.000000E+00 +1956594,fr,1,4.450000E+00,1.441110E+00,4.289367E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +1956615,fr,1,4.650000E+00,1.441110E+00,4.289367E+01,5.000000E+00,Active Shallow Crust,2.400097E+02,5.799414E+01,0.000000E+00 +1956637,fr,1,4.850000E+00,1.441110E+00,4.289367E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1956972,fr,1,3.650000E+00,5.013850E+00,5.220524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +1956984,fr,1,3.750000E+00,5.013850E+00,5.220524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1956990,fr,1,3.750000E+00,5.013850E+00,5.220524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +1956996,fr,1,3.850000E+00,5.013850E+00,5.220524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999125E+01,0.000000E+00 +1957442,fr,1,3.550000E+00,6.125160E+00,5.138138E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998741E+01,0.000000E+00 +1957476,fr,2,3.850000E+00,6.125160E+00,5.138138E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999109E+01,0.000000E+00 +1957479,fr,1,3.850000E+00,6.125160E+00,5.138138E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799806E+01,0.000000E+00 +1957488,fr,2,3.950000E+00,6.125160E+00,5.138138E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +1957512,fr,1,4.150000E+00,6.125160E+00,5.138138E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +1957518,fr,1,4.150000E+00,6.125160E+00,5.138138E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,-9.000000E+01 +1957587,fr,1,4.750000E+00,6.125160E+00,5.138138E+01,5.000000E+00,Active Shallow Crust,2.400094E+02,5.800483E+01,0.000000E+00 +1957717,fr,1,5.850000E+00,6.125160E+00,5.138138E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1957944,fr,1,3.750000E+00,-6.529500E+00,4.672423E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998902E+01,0.000000E+00 +1958032,fr,1,4.450000E+00,-6.529500E+00,4.672423E+01,1.500000E+01,Active Shallow Crust,2.400056E+02,5.799468E+01,0.000000E+00 +1958400,fr,3,3.550000E+00,7.289480E+00,4.700141E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999313E+01,0.000000E+00 +1958401,fr,2,3.550000E+00,7.289480E+00,4.700141E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999313E+01,0.000000E+00 +1958402,fr,2,3.550000E+00,7.289480E+00,4.700141E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999313E+01,0.000000E+00 +1958403,fr,1,3.550000E+00,7.289480E+00,4.700141E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799817E+01,0.000000E+00 +1958404,fr,2,3.550000E+00,7.289480E+00,4.700141E+01,1.500000E+01,Active Shallow Crust,2.400122E+02,5.799817E+01,0.000000E+00 +1958406,fr,1,3.550000E+00,7.289480E+00,4.700141E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999304E+01,-9.000000E+01 +1958412,fr,1,3.650000E+00,7.289480E+00,4.700141E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998774E+01,0.000000E+00 +1958413,fr,1,3.650000E+00,7.289480E+00,4.700141E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998774E+01,0.000000E+00 +1958415,fr,1,3.650000E+00,7.289480E+00,4.700141E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801249E+01,0.000000E+00 +1958424,fr,2,3.750000E+00,7.289480E+00,4.700141E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +1958426,fr,1,3.750000E+00,7.289480E+00,4.700141E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +1958428,fr,1,3.750000E+00,7.289480E+00,4.700141E+01,1.500000E+01,Active Shallow Crust,2.400077E+02,5.801768E+01,0.000000E+00 +1958433,fr,1,3.750000E+00,7.289480E+00,4.700141E+01,5.000000E+00,Active Shallow Crust,1.288971E+02,8.996693E+01,0.000000E+00 +1958434,fr,1,3.750000E+00,7.289480E+00,4.700141E+01,1.500000E+01,Active Shallow Crust,1.288971E+02,8.996693E+01,0.000000E+00 +1958436,fr,2,3.850000E+00,7.289480E+00,4.700141E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1958438,fr,1,3.850000E+00,7.289480E+00,4.700141E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1958448,fr,4,3.950000E+00,7.289480E+00,4.700141E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999132E+01,0.000000E+00 +1958449,fr,1,3.950000E+00,7.289480E+00,4.700141E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999132E+01,0.000000E+00 +1958457,fr,1,3.950000E+00,7.289480E+00,4.700141E+01,5.000000E+00,Active Shallow Crust,1.288998E+02,8.999349E+01,0.000000E+00 +1958461,fr,2,4.050000E+00,7.289480E+00,4.700141E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998840E+01,0.000000E+00 +1958462,fr,1,4.050000E+00,7.289480E+00,4.700141E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998840E+01,0.000000E+00 +1958472,fr,1,4.150000E+00,7.289480E+00,4.700141E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +1958473,fr,2,4.150000E+00,7.289480E+00,4.700141E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +1958475,fr,1,4.150000E+00,7.289480E+00,4.700141E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.799706E+01,0.000000E+00 +1958477,fr,1,4.150000E+00,7.289480E+00,4.700141E+01,2.750000E+01,Active Shallow Crust,2.400084E+02,5.799704E+01,0.000000E+00 +1958488,fr,1,4.250000E+00,7.289480E+00,4.700141E+01,1.500000E+01,Active Shallow Crust,2.400073E+02,5.799431E+01,0.000000E+00 +1958490,fr,1,4.250000E+00,7.289480E+00,4.700141E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,-9.000000E+01 +1958494,fr,1,4.250000E+00,7.289480E+00,4.700141E+01,1.500000E+01,Active Shallow Crust,1.288950E+02,8.998096E+01,0.000000E+00 +1958496,fr,1,4.350000E+00,7.289480E+00,4.700141E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +1958510,fr,1,4.450000E+00,7.289480E+00,4.700141E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +1958511,fr,2,4.450000E+00,7.289480E+00,4.700141E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.799471E+01,0.000000E+00 +1958520,fr,1,4.550000E+00,7.289480E+00,4.700141E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998913E+01,0.000000E+00 +1958533,fr,1,4.650000E+00,7.289480E+00,4.700141E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +1958534,fr,1,4.650000E+00,7.289480E+00,4.700141E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +1958541,fr,1,4.650000E+00,7.289480E+00,4.700141E+01,5.000000E+00,Active Shallow Crust,1.288909E+02,8.998676E+01,0.000000E+00 +1958542,fr,1,4.650000E+00,7.289480E+00,4.700141E+01,1.500000E+01,Active Shallow Crust,1.288909E+02,8.998676E+01,0.000000E+00 +1958557,fr,1,4.850000E+00,7.289480E+00,4.700141E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +1958588,fr,1,5.050000E+00,7.289480E+00,4.700141E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +1958880,fr,1,3.550000E+00,1.057420E+00,4.177062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +1958904,fr,1,3.750000E+00,1.057420E+00,4.177062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +1958953,fr,1,4.150000E+00,1.057420E+00,4.177062E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +1959372,fr,1,3.650000E+00,-6.093560E+00,4.816356E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998801E+01,0.000000E+00 +1959384,fr,1,3.750000E+00,-6.093560E+00,4.816356E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +1959404,fr,1,3.850000E+00,-6.093560E+00,4.816356E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,-9.000000E+01 +1959411,fr,1,3.950000E+00,-6.093560E+00,4.816356E+01,5.000000E+00,Active Shallow Crust,2.400202E+02,5.800516E+01,0.000000E+00 +1959924,fr,1,4.250000E+00,9.197300E-01,4.406949E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1959925,fr,2,4.250000E+00,9.197300E-01,4.406949E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1960836,fr,1,3.850000E+00,-6.538650E+00,4.811102E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1961282,fr,1,3.550000E+00,-1.259820E+00,4.193701E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1961760,fr,1,3.550000E+00,7.560600E+00,4.586270E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999298E+01,0.000000E+00 +1961761,fr,1,3.550000E+00,7.560600E+00,4.586270E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999298E+01,0.000000E+00 +1961769,fr,1,3.550000E+00,7.560600E+00,4.586270E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.999298E+01,0.000000E+00 +1961772,fr,2,3.650000E+00,7.560600E+00,4.586270E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998748E+01,0.000000E+00 +1961783,fr,1,3.650000E+00,7.560600E+00,4.586270E+01,2.750000E+01,Active Shallow Crust,1.289004E+02,8.996351E+01,0.000000E+00 +1961784,fr,2,3.750000E+00,7.560600E+00,4.586270E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +1961805,fr,1,3.850000E+00,7.560600E+00,4.586270E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.999503E+01,0.000000E+00 +1961808,fr,2,3.950000E+00,7.560600E+00,4.586270E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999113E+01,0.000000E+00 +1961821,fr,1,4.050000E+00,7.560600E+00,4.586270E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998815E+01,0.000000E+00 +1961855,fr,1,4.250000E+00,7.560600E+00,4.586270E+01,2.750000E+01,Active Shallow Crust,1.288949E+02,8.998093E+01,0.000000E+00 +1961928,fr,1,4.950000E+00,7.560600E+00,4.586270E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +1961954,fr,1,5.150000E+00,7.560600E+00,4.586270E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1961976,fr,1,5.350000E+00,7.560600E+00,4.586270E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +1962006,fr,1,5.550000E+00,7.560600E+00,4.586270E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,-9.000000E+01 +1962240,fr,1,3.550000E+00,1.441010E+00,4.397634E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +1962720,fr,1,3.550000E+00,5.970430E+00,5.025608E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998711E+01,0.000000E+00 +1962732,fr,3,3.650000E+00,5.970430E+00,5.025608E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998851E+01,0.000000E+00 +1962733,fr,1,3.650000E+00,5.970430E+00,5.025608E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998851E+01,0.000000E+00 +1962750,fr,1,3.750000E+00,5.970430E+00,5.025608E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,-9.000000E+01 +1962756,fr,1,3.850000E+00,5.970430E+00,5.025608E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999087E+01,0.000000E+00 +1962757,fr,1,3.850000E+00,5.970430E+00,5.025608E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999087E+01,0.000000E+00 +1962762,fr,1,3.850000E+00,5.970430E+00,5.025608E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999077E+01,-9.000000E+01 +1962769,fr,1,3.950000E+00,5.970430E+00,5.025608E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999187E+01,0.000000E+00 +1962817,fr,1,4.350000E+00,5.970430E+00,5.025608E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +1962822,fr,1,4.350000E+00,5.970430E+00,5.025608E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,-9.000000E+01 +1962838,fr,1,4.450000E+00,5.970430E+00,5.025608E+01,1.500000E+01,Active Shallow Crust,1.288911E+02,8.999429E+01,0.000000E+00 +1962840,fr,1,4.550000E+00,5.970430E+00,5.025608E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1962846,fr,1,4.550000E+00,5.970430E+00,5.025608E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +1962925,fr,1,5.250000E+00,5.970430E+00,5.025608E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1962981,fr,1,5.650000E+00,5.970430E+00,5.025608E+01,5.000000E+00,Active Shallow Crust,1.288716E+02,8.999062E+01,0.000000E+00 +1963200,fr,1,3.550000E+00,3.466620E+00,4.254813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +1963213,fr,2,3.650000E+00,3.466620E+00,4.254813E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1963251,fr,1,3.950000E+00,3.466620E+00,4.254813E+01,5.000000E+00,Active Shallow Crust,2.400193E+02,5.800474E+01,0.000000E+00 +1963266,fr,1,4.050000E+00,3.466620E+00,4.254813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,-9.000000E+01 +1963268,fr,1,4.050000E+00,3.466620E+00,4.254813E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,-9.000000E+01 +1963279,fr,1,4.150000E+00,3.466620E+00,4.254813E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,-9.000000E+01 +1963680,fr,5,3.550000E+00,-1.903400E+00,4.297086E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +1963681,fr,2,3.550000E+00,-1.903400E+00,4.297086E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +1963684,fr,1,3.550000E+00,-1.903400E+00,4.297086E+01,1.500000E+01,Active Shallow Crust,2.400120E+02,5.799814E+01,0.000000E+00 +1963686,fr,2,3.550000E+00,-1.903400E+00,4.297086E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999067E+01,-9.000000E+01 +1963687,fr,1,3.550000E+00,-1.903400E+00,4.297086E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999067E+01,-9.000000E+01 +1963690,fr,1,3.550000E+00,-1.903400E+00,4.297086E+01,1.500000E+01,Active Shallow Crust,1.288964E+02,8.999355E+01,0.000000E+00 +1963692,fr,2,3.650000E+00,-1.903400E+00,4.297086E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1963696,fr,1,3.650000E+00,-1.903400E+00,4.297086E+01,1.500000E+01,Active Shallow Crust,2.400005E+02,5.801298E+01,0.000000E+00 +1963703,fr,1,3.650000E+00,-1.903400E+00,4.297086E+01,2.750000E+01,Active Shallow Crust,1.289009E+02,8.996346E+01,0.000000E+00 +1963704,fr,3,3.750000E+00,-1.903400E+00,4.297086E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1963705,fr,1,3.750000E+00,-1.903400E+00,4.297086E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1963713,fr,1,3.750000E+00,-1.903400E+00,4.297086E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.996743E+01,0.000000E+00 +1963716,fr,1,3.850000E+00,-1.903400E+00,4.297086E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1963729,fr,1,3.950000E+00,-1.903400E+00,4.297086E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1963740,fr,4,4.050000E+00,-1.903400E+00,4.297086E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +1963748,fr,1,4.050000E+00,-1.903400E+00,4.297086E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998951E+01,-9.000000E+01 +1963750,fr,1,4.050000E+00,-1.903400E+00,4.297086E+01,1.500000E+01,Active Shallow Crust,1.288909E+02,8.999377E+01,0.000000E+00 +1963752,fr,1,4.150000E+00,-1.903400E+00,4.297086E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1963765,fr,1,4.250000E+00,-1.903400E+00,4.297086E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1963767,fr,2,4.250000E+00,-1.903400E+00,4.297086E+01,5.000000E+00,Active Shallow Crust,2.400068E+02,5.799405E+01,0.000000E+00 +1963788,fr,1,4.450000E+00,-1.903400E+00,4.297086E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1963791,fr,1,4.450000E+00,-1.903400E+00,4.297086E+01,5.000000E+00,Active Shallow Crust,2.400044E+02,5.799453E+01,0.000000E+00 +1963796,fr,1,4.450000E+00,-1.903400E+00,4.297086E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +1963824,fr,1,4.750000E+00,-1.903400E+00,4.297086E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1964064,fr,1,6.750000E+00,-1.903385E+00,4.297086E+01,1.199416E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1964174,fr,1,3.650000E+00,4.450030E+00,4.161351E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999328E+01,0.000000E+00 +1964184,fr,2,3.750000E+00,4.450030E+00,4.161351E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998802E+01,0.000000E+00 +1964317,fr,1,4.850000E+00,4.450030E+00,4.161351E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1964645,fr,1,3.550000E+00,2.514640E+00,5.103429E+01,2.750000E+01,Active Shallow Crust,2.400133E+02,5.799807E+01,0.000000E+00 +1964648,fr,1,3.550000E+00,2.514640E+00,5.103429E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999038E+01,-9.000000E+01 +1964654,fr,1,3.650000E+00,2.514640E+00,5.103429E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +1964675,fr,1,3.750000E+00,2.514640E+00,5.103429E+01,2.750000E+01,Active Shallow Crust,1.288962E+02,8.996735E+01,0.000000E+00 +1964678,fr,1,3.850000E+00,2.514640E+00,5.103429E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999102E+01,0.000000E+00 +1964726,fr,1,4.250000E+00,2.514640E+00,5.103429E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1964778,fr,1,4.650000E+00,2.514640E+00,5.103429E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,-9.000000E+01 +1965120,fr,8,3.550000E+00,-4.360700E-01,4.326485E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1965121,fr,2,3.550000E+00,-4.360700E-01,4.326485E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1965127,fr,1,3.550000E+00,-4.360700E-01,4.326485E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,-9.000000E+01 +1965132,fr,4,3.650000E+00,-4.360700E-01,4.326485E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1965133,fr,2,3.650000E+00,-4.360700E-01,4.326485E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1965134,fr,1,3.650000E+00,-4.360700E-01,4.326485E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +1965144,fr,3,3.750000E+00,-4.360700E-01,4.326485E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1965145,fr,1,3.750000E+00,-4.360700E-01,4.326485E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1965147,fr,1,3.750000E+00,-4.360700E-01,4.326485E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801753E+01,0.000000E+00 +1965148,fr,1,3.750000E+00,-4.360700E-01,4.326485E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.801753E+01,0.000000E+00 +1965157,fr,1,3.850000E+00,-4.360700E-01,4.326485E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1965159,fr,2,3.850000E+00,-4.360700E-01,4.326485E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799767E+01,0.000000E+00 +1965168,fr,2,3.950000E+00,-4.360700E-01,4.326485E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1965178,fr,1,3.950000E+00,-4.360700E-01,4.326485E+01,1.500000E+01,Active Shallow Crust,1.289007E+02,8.999377E+01,0.000000E+00 +1965184,fr,1,4.050000E+00,-4.360700E-01,4.326485E+01,1.500000E+01,Active Shallow Crust,2.400054E+02,5.800573E+01,0.000000E+00 +1965192,fr,2,4.150000E+00,-4.360700E-01,4.326485E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1965193,fr,1,4.150000E+00,-4.360700E-01,4.326485E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1965196,fr,1,4.150000E+00,-4.360700E-01,4.326485E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.799721E+01,0.000000E+00 +1965197,fr,1,4.150000E+00,-4.360700E-01,4.326485E+01,2.750000E+01,Active Shallow Crust,2.400079E+02,5.799716E+01,0.000000E+00 +1965220,fr,1,4.350000E+00,-4.360700E-01,4.326485E+01,1.500000E+01,Active Shallow Crust,2.400077E+02,5.799584E+01,0.000000E+00 +1965228,fr,1,4.450000E+00,-4.360700E-01,4.326485E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1965252,fr,1,4.650000E+00,-4.360700E-01,4.326485E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1965253,fr,2,4.650000E+00,-4.360700E-01,4.326485E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1965270,fr,1,4.750000E+00,-4.360700E-01,4.326485E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +1965277,fr,1,4.850000E+00,-4.360700E-01,4.326485E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1965326,fr,1,5.250000E+00,-4.360700E-01,4.326485E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1965349,fr,1,5.450000E+00,-4.360700E-01,4.326485E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1965600,fr,1,3.550000E+00,5.523440E+00,4.482733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999285E+01,0.000000E+00 +1965601,fr,2,3.550000E+00,5.523440E+00,4.482733E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999285E+01,0.000000E+00 +1965604,fr,1,3.550000E+00,5.523440E+00,4.482733E+01,1.500000E+01,Active Shallow Crust,2.400112E+02,5.799868E+01,0.000000E+00 +1965612,fr,3,3.650000E+00,5.523440E+00,4.482733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998725E+01,0.000000E+00 +1965636,fr,1,3.850000E+00,5.523440E+00,4.482733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1965639,fr,1,3.850000E+00,5.523440E+00,4.482733E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799842E+01,0.000000E+00 +1965684,fr,1,4.250000E+00,5.523440E+00,4.482733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +1965687,fr,1,4.250000E+00,5.523440E+00,4.482733E+01,5.000000E+00,Active Shallow Crust,2.400072E+02,5.799443E+01,0.000000E+00 +1965696,fr,1,4.350000E+00,5.523440E+00,4.482733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998861E+01,0.000000E+00 +1965702,fr,1,4.350000E+00,5.523440E+00,4.482733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999136E+01,-9.000000E+01 +1965732,fr,1,4.650000E+00,5.523440E+00,4.482733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1965768,fr,1,4.950000E+00,5.523440E+00,4.482733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1965802,fr,1,5.150000E+00,5.523440E+00,4.482733E+01,1.500000E+01,Active Shallow Crust,1.288846E+02,8.999107E+01,0.000000E+00 +1965828,fr,1,5.450000E+00,5.523440E+00,4.482733E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1966107,fr,1,3.750000E+00,3.533140E+00,4.335818E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.801738E+01,0.000000E+00 +1966122,fr,1,3.850000E+00,3.533140E+00,4.335818E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,-9.000000E+01 +1966236,fr,1,4.850000E+00,3.533140E+00,4.335818E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1966560,fr,1,3.550000E+00,-4.064070E+00,5.013641E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998708E+01,0.000000E+00 +1966572,fr,1,3.650000E+00,-4.064070E+00,5.013641E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998848E+01,0.000000E+00 +1967124,fr,1,4.250000E+00,5.861740E+00,4.473928E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +1967185,fr,1,4.750000E+00,5.861740E+00,4.473928E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1967202,fr,1,4.850000E+00,5.861740E+00,4.473928E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,-9.000000E+01 +1968000,fr,1,3.550000E+00,-4.541160E+00,4.833260E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999329E+01,0.000000E+00 +1968009,fr,1,3.550000E+00,-4.541160E+00,4.833260E+01,5.000000E+00,Active Shallow Crust,1.288971E+02,8.999329E+01,0.000000E+00 +1968014,fr,1,3.650000E+00,-4.541160E+00,4.833260E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998805E+01,0.000000E+00 +1968018,fr,2,3.650000E+00,-4.541160E+00,4.833260E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998792E+01,-9.000000E+01 +1968025,fr,1,3.750000E+00,-4.541160E+00,4.833260E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +1968030,fr,1,3.750000E+00,-4.541160E+00,4.833260E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,-9.000000E+01 +1968036,fr,1,3.850000E+00,-4.541160E+00,4.833260E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +1968048,fr,1,3.950000E+00,-4.541160E+00,4.833260E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999154E+01,0.000000E+00 +1968049,fr,1,3.950000E+00,-4.541160E+00,4.833260E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999154E+01,0.000000E+00 +1968078,fr,1,4.150000E+00,-4.541160E+00,4.833260E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,-9.000000E+01 +1968084,fr,1,4.250000E+00,-4.541160E+00,4.833260E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999101E+01,0.000000E+00 +1968085,fr,1,4.250000E+00,-4.541160E+00,4.833260E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999101E+01,0.000000E+00 +1968096,fr,1,4.350000E+00,-4.541160E+00,4.833260E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1968099,fr,1,4.350000E+00,-4.541160E+00,4.833260E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.799576E+01,0.000000E+00 +1968206,fr,1,5.250000E+00,-4.541160E+00,4.833260E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +1968480,fr,1,3.550000E+00,5.787990E+00,4.590982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999298E+01,0.000000E+00 +1968481,fr,1,3.550000E+00,5.787990E+00,4.590982E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999298E+01,0.000000E+00 +1968483,fr,2,3.550000E+00,5.787990E+00,4.590982E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799873E+01,0.000000E+00 +1968484,fr,1,3.550000E+00,5.787990E+00,4.590982E+01,1.500000E+01,Active Shallow Crust,2.400110E+02,5.799873E+01,0.000000E+00 +1968490,fr,1,3.550000E+00,5.787990E+00,4.590982E+01,1.500000E+01,Active Shallow Crust,1.288964E+02,8.999298E+01,0.000000E+00 +1968494,fr,2,3.650000E+00,5.787990E+00,4.590982E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998750E+01,0.000000E+00 +1968504,fr,3,3.750000E+00,5.787990E+00,4.590982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +1968516,fr,1,3.850000E+00,5.787990E+00,4.590982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1968528,fr,3,3.950000E+00,5.787990E+00,4.590982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999114E+01,0.000000E+00 +1968537,fr,1,3.950000E+00,5.787990E+00,4.590982E+01,5.000000E+00,Active Shallow Crust,1.289000E+02,8.999336E+01,0.000000E+00 +1968541,fr,1,4.050000E+00,5.787990E+00,4.590982E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998816E+01,0.000000E+00 +1968543,fr,1,4.050000E+00,5.787990E+00,4.590982E+01,5.000000E+00,Active Shallow Crust,2.400061E+02,5.800582E+01,0.000000E+00 +1968546,fr,1,4.050000E+00,5.787990E+00,4.590982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998803E+01,-9.000000E+01 +1968552,fr,1,4.150000E+00,5.787990E+00,4.590982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +1968559,fr,1,4.150000E+00,5.787990E+00,4.590982E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,-9.000000E+01 +1968560,fr,1,4.150000E+00,5.787990E+00,4.590982E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,-9.000000E+01 +1968564,fr,1,4.250000E+00,5.787990E+00,4.590982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +1968569,fr,1,4.250000E+00,5.787990E+00,4.590982E+01,2.750000E+01,Active Shallow Crust,2.400072E+02,5.799420E+01,0.000000E+00 +1968577,fr,1,4.350000E+00,5.787990E+00,4.590982E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +1968588,fr,1,4.450000E+00,5.787990E+00,4.590982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1968648,fr,1,4.950000E+00,5.787990E+00,4.590982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1968657,fr,1,4.950000E+00,5.787990E+00,4.590982E+01,5.000000E+00,Active Shallow Crust,1.288898E+02,8.998978E+01,0.000000E+00 +1968660,fr,2,5.050000E+00,5.787990E+00,4.590982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1968780,fr,1,6.050000E+00,5.787991E+00,4.590982E+01,5.357596E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1968963,fr,1,3.550000E+00,8.128330E+00,4.913637E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799826E+01,0.000000E+00 +1968971,fr,1,3.550000E+00,8.128330E+00,4.913637E+01,2.750000E+01,Active Shallow Crust,1.288958E+02,8.999340E+01,0.000000E+00 +1968972,fr,1,3.650000E+00,8.128330E+00,4.913637E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998824E+01,0.000000E+00 +1968973,fr,1,3.650000E+00,8.128330E+00,4.913637E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998824E+01,0.000000E+00 +1968975,fr,1,3.650000E+00,8.128330E+00,4.913637E+01,5.000000E+00,Active Shallow Crust,2.400016E+02,5.801237E+01,0.000000E+00 +1968978,fr,1,3.650000E+00,8.128330E+00,4.913637E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998811E+01,-9.000000E+01 +1968984,fr,2,3.750000E+00,8.128330E+00,4.913637E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1968986,fr,1,3.750000E+00,8.128330E+00,4.913637E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1968995,fr,1,3.750000E+00,8.128330E+00,4.913637E+01,2.750000E+01,Active Shallow Crust,1.288964E+02,8.996754E+01,0.000000E+00 +1968996,fr,1,3.850000E+00,8.128330E+00,4.913637E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +1969014,fr,1,3.950000E+00,8.128330E+00,4.913637E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999158E+01,-9.000000E+01 +1969032,fr,1,4.150000E+00,8.128330E+00,4.913637E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998677E+01,0.000000E+00 +1969033,fr,1,4.150000E+00,8.128330E+00,4.913637E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998677E+01,0.000000E+00 +1969038,fr,1,4.150000E+00,8.128330E+00,4.913637E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999331E+01,-9.000000E+01 +1969047,fr,1,4.250000E+00,8.128330E+00,4.913637E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.799417E+01,0.000000E+00 +1969104,fr,1,4.750000E+00,8.128330E+00,4.913637E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1969105,fr,1,4.750000E+00,8.128330E+00,4.913637E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +1969440,fr,1,3.550000E+00,-1.034040E+00,4.320382E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +1969441,fr,1,3.550000E+00,-1.034040E+00,4.320382E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +1969442,fr,2,3.550000E+00,-1.034040E+00,4.320382E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +1969452,fr,2,3.650000E+00,-1.034040E+00,4.320382E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1969453,fr,1,3.650000E+00,-1.034040E+00,4.320382E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1969456,fr,1,3.650000E+00,-1.034040E+00,4.320382E+01,1.500000E+01,Active Shallow Crust,2.400010E+02,5.801276E+01,0.000000E+00 +1969464,fr,2,3.750000E+00,-1.034040E+00,4.320382E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +1969476,fr,3,3.850000E+00,-1.034040E+00,4.320382E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +1969485,fr,1,3.850000E+00,-1.034040E+00,4.320382E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999350E+01,0.000000E+00 +1969488,fr,2,3.950000E+00,-1.034040E+00,4.320382E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1969489,fr,3,3.950000E+00,-1.034040E+00,4.320382E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +1969500,fr,1,4.050000E+00,-1.034040E+00,4.320382E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +1969507,fr,1,4.050000E+00,-1.034040E+00,4.320382E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998955E+01,-9.000000E+01 +1969510,fr,1,4.050000E+00,-1.034040E+00,4.320382E+01,1.500000E+01,Active Shallow Crust,1.288908E+02,8.999380E+01,0.000000E+00 +1969522,fr,1,4.150000E+00,-1.034040E+00,4.320382E+01,1.500000E+01,Active Shallow Crust,1.288982E+02,8.999355E+01,0.000000E+00 +1969536,fr,1,4.350000E+00,-1.034040E+00,4.320382E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1969572,fr,1,4.650000E+00,-1.034040E+00,4.320382E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1969573,fr,1,4.650000E+00,-1.034040E+00,4.320382E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1969587,fr,1,4.750000E+00,-1.034040E+00,4.320382E+01,5.000000E+00,Active Shallow Crust,2.400063E+02,5.800426E+01,0.000000E+00 +1969593,fr,1,4.750000E+00,-1.034040E+00,4.320382E+01,5.000000E+00,Active Shallow Crust,1.288896E+02,8.998811E+01,0.000000E+00 +1969647,fr,1,5.250000E+00,-1.034040E+00,4.320382E+01,5.000000E+00,Active Shallow Crust,2.400185E+02,5.799989E+01,0.000000E+00 +1969920,fr,1,3.550000E+00,4.709110E+00,4.769909E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999321E+01,0.000000E+00 +1969929,fr,1,3.550000E+00,4.709110E+00,4.769909E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999322E+01,0.000000E+00 +1969932,fr,1,3.650000E+00,4.709110E+00,4.769909E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998790E+01,0.000000E+00 +1969933,fr,2,3.650000E+00,4.709110E+00,4.769909E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998790E+01,0.000000E+00 +1969934,fr,1,3.650000E+00,4.709110E+00,4.769909E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998790E+01,0.000000E+00 +1970016,fr,1,4.350000E+00,4.709110E+00,4.769909E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998919E+01,0.000000E+00 +1970411,fr,1,3.550000E+00,3.968580E+00,4.141093E+01,2.750000E+01,Active Shallow Crust,1.288967E+02,8.999244E+01,0.000000E+00 +1970425,fr,1,3.750000E+00,3.968580E+00,4.141093E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999099E+01,0.000000E+00 +1970448,fr,1,3.950000E+00,3.968580E+00,4.141093E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1970460,fr,1,4.050000E+00,3.968580E+00,4.141093E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +1970472,fr,1,4.150000E+00,3.968580E+00,4.141093E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +1971429,fr,1,4.050000E+00,-4.151010E+00,4.741566E+01,5.000000E+00,Active Shallow Crust,1.288908E+02,8.999425E+01,0.000000E+00 +1971445,fr,1,4.250000E+00,-4.151010E+00,4.741566E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999085E+01,0.000000E+00 +1971840,fr,2,3.550000E+00,2.177820E+00,4.603954E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +1971852,fr,1,3.650000E+00,2.177820E+00,4.603954E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +1971864,fr,2,3.750000E+00,2.177820E+00,4.603954E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +1971865,fr,1,3.750000E+00,2.177820E+00,4.603954E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +1971876,fr,1,3.850000E+00,2.177820E+00,4.603954E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +1971900,fr,1,4.050000E+00,2.177820E+00,4.603954E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +1971965,fr,1,4.550000E+00,2.177820E+00,4.603954E+01,2.750000E+01,Active Shallow Crust,2.400091E+02,5.799733E+01,0.000000E+00 +1972000,fr,1,4.850000E+00,2.177820E+00,4.603954E+01,1.500000E+01,Active Shallow Crust,2.400171E+02,5.800220E+01,0.000000E+00 +1972074,fr,1,5.450000E+00,2.177820E+00,4.603954E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +1972320,fr,1,3.550000E+00,2.405940E+00,4.541964E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +1972321,fr,1,3.550000E+00,2.405940E+00,4.541964E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +1972322,fr,1,3.550000E+00,2.405940E+00,4.541964E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +1972329,fr,1,3.550000E+00,2.405940E+00,4.541964E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999469E+01,0.000000E+00 +1972332,fr,1,3.650000E+00,2.405940E+00,4.541964E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +1972335,fr,2,3.650000E+00,2.405940E+00,4.541964E+01,5.000000E+00,Active Shallow Crust,2.400015E+02,5.801294E+01,0.000000E+00 +1972360,fr,1,3.850000E+00,2.405940E+00,4.541964E+01,1.500000E+01,Active Shallow Crust,2.400107E+02,5.799745E+01,0.000000E+00 +1972385,fr,1,4.050000E+00,2.405940E+00,4.541964E+01,2.750000E+01,Active Shallow Crust,2.400058E+02,5.800571E+01,0.000000E+00 +1972405,fr,1,4.250000E+00,2.405940E+00,4.541964E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +1972416,fr,1,4.350000E+00,2.405940E+00,4.541964E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +1972732,fr,1,6.950000E+00,2.405940E+00,4.541964E+01,1.500000E+01,Active Shallow Crust,2.401562E+02,5.799986E+01,0.000000E+00 +1972812,fr,1,3.650000E+00,3.061490E+00,4.758359E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +1972824,fr,1,3.750000E+00,3.061490E+00,4.758359E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1972842,fr,1,3.850000E+00,3.061490E+00,4.758359E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,-9.000000E+01 +1972860,fr,1,4.050000E+00,3.061490E+00,4.758359E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +1973304,fr,1,3.750000E+00,9.386400E-01,4.809461E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1973325,fr,1,3.850000E+00,9.386400E-01,4.809461E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999374E+01,0.000000E+00 +1973760,fr,5,3.550000E+00,5.748300E+00,5.084397E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998727E+01,0.000000E+00 +1973761,fr,2,3.550000E+00,5.748300E+00,5.084397E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998727E+01,0.000000E+00 +1973762,fr,1,3.550000E+00,5.748300E+00,5.084397E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998727E+01,0.000000E+00 +1973763,fr,1,3.550000E+00,5.748300E+00,5.084397E+01,5.000000E+00,Active Shallow Crust,2.400139E+02,5.799741E+01,0.000000E+00 +1973769,fr,2,3.550000E+00,5.748300E+00,5.084397E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.999363E+01,0.000000E+00 +1973772,fr,8,3.650000E+00,5.748300E+00,5.084397E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998865E+01,0.000000E+00 +1973773,fr,1,3.650000E+00,5.748300E+00,5.084397E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998865E+01,0.000000E+00 +1973774,fr,1,3.650000E+00,5.748300E+00,5.084397E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998865E+01,0.000000E+00 +1973775,fr,1,3.650000E+00,5.748300E+00,5.084397E+01,5.000000E+00,Active Shallow Crust,2.400017E+02,5.801320E+01,0.000000E+00 +1973776,fr,1,3.650000E+00,5.748300E+00,5.084397E+01,1.500000E+01,Active Shallow Crust,2.400017E+02,5.801320E+01,0.000000E+00 +1973778,fr,1,3.650000E+00,5.748300E+00,5.084397E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998852E+01,-9.000000E+01 +1973781,fr,1,3.650000E+00,5.748300E+00,5.084397E+01,5.000000E+00,Active Shallow Crust,1.288994E+02,8.996361E+01,0.000000E+00 +1973784,fr,4,3.750000E+00,5.748300E+00,5.084397E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1973785,fr,1,3.750000E+00,5.748300E+00,5.084397E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1973786,fr,1,3.750000E+00,5.748300E+00,5.084397E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1973790,fr,3,3.750000E+00,5.748300E+00,5.084397E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,-9.000000E+01 +1973796,fr,1,3.850000E+00,5.748300E+00,5.084397E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999098E+01,0.000000E+00 +1973798,fr,1,3.850000E+00,5.748300E+00,5.084397E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999098E+01,0.000000E+00 +1973804,fr,1,3.850000E+00,5.748300E+00,5.084397E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,-9.000000E+01 +1973808,fr,1,3.950000E+00,5.748300E+00,5.084397E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999197E+01,0.000000E+00 +1973810,fr,1,3.950000E+00,5.748300E+00,5.084397E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999197E+01,0.000000E+00 +1973820,fr,1,4.050000E+00,5.748300E+00,5.084397E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +1973821,fr,2,4.050000E+00,5.748300E+00,5.084397E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +1973832,fr,2,4.150000E+00,5.748300E+00,5.084397E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1973833,fr,1,4.150000E+00,5.748300E+00,5.084397E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1973834,fr,1,4.150000E+00,5.748300E+00,5.084397E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1973839,fr,1,4.150000E+00,5.748300E+00,5.084397E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,-9.000000E+01 +1973844,fr,1,4.250000E+00,5.748300E+00,5.084397E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +1973847,fr,1,4.250000E+00,5.748300E+00,5.084397E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.799444E+01,0.000000E+00 +1973856,fr,1,4.350000E+00,5.748300E+00,5.084397E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1973857,fr,1,4.350000E+00,5.748300E+00,5.084397E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1973859,fr,1,4.350000E+00,5.748300E+00,5.084397E+01,5.000000E+00,Active Shallow Crust,2.400097E+02,5.799592E+01,0.000000E+00 +1973868,fr,1,4.450000E+00,5.748300E+00,5.084397E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999096E+01,0.000000E+00 +1973916,fr,2,4.850000E+00,5.748300E+00,5.084397E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1973948,fr,1,5.050000E+00,5.748300E+00,5.084397E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +1973949,fr,1,5.050000E+00,5.748300E+00,5.084397E+01,5.000000E+00,Active Shallow Crust,1.288833E+02,8.999050E+01,0.000000E+00 +1973965,fr,1,5.250000E+00,5.748300E+00,5.084397E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1973980,fr,1,5.350000E+00,5.748300E+00,5.084397E+01,1.500000E+01,Active Shallow Crust,2.400285E+02,5.799836E+01,0.000000E+00 +1974015,fr,1,5.650000E+00,5.748300E+00,5.084397E+01,5.000000E+00,Active Shallow Crust,2.400422E+02,5.800021E+01,0.000000E+00 +1974240,fr,1,3.550000E+00,3.388420E+00,4.240264E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998883E+01,0.000000E+00 +1974241,fr,1,3.550000E+00,3.388420E+00,4.240264E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998883E+01,0.000000E+00 +1974246,fr,1,3.550000E+00,3.388420E+00,4.240264E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998870E+01,-9.000000E+01 +1974252,fr,1,3.650000E+00,3.388420E+00,4.240264E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1974264,fr,1,3.750000E+00,3.388420E+00,4.240264E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999113E+01,0.000000E+00 +1974270,fr,1,3.750000E+00,3.388420E+00,4.240264E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999103E+01,-9.000000E+01 +1974288,fr,2,3.950000E+00,3.388420E+00,4.240264E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +1974327,fr,1,4.250000E+00,3.388420E+00,4.240264E+01,5.000000E+00,Active Shallow Crust,2.400067E+02,5.799395E+01,0.000000E+00 +1974328,fr,1,4.250000E+00,3.388420E+00,4.240264E+01,1.500000E+01,Active Shallow Crust,2.400067E+02,5.799395E+01,0.000000E+00 +1974345,fr,1,4.350000E+00,3.388420E+00,4.240264E+01,5.000000E+00,Active Shallow Crust,1.288988E+02,8.998261E+01,0.000000E+00 +1974721,fr,1,3.550000E+00,1.564320E+00,4.385101E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +1974728,fr,1,3.550000E+00,1.564320E+00,4.385101E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999081E+01,-9.000000E+01 +1974735,fr,1,3.650000E+00,1.564320E+00,4.385101E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801311E+01,0.000000E+00 +1974832,fr,1,4.450000E+00,1.564320E+00,4.385101E+01,1.500000E+01,Active Shallow Crust,2.400045E+02,5.799457E+01,0.000000E+00 +1974865,fr,1,4.750000E+00,1.564320E+00,4.385101E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1975200,fr,5,3.550000E+00,5.841870E+00,5.097870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998730E+01,0.000000E+00 +1975201,fr,2,3.550000E+00,5.841870E+00,5.097870E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998730E+01,0.000000E+00 +1975203,fr,1,3.550000E+00,5.841870E+00,5.097870E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799852E+01,0.000000E+00 +1975206,fr,1,3.550000E+00,5.841870E+00,5.097870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998715E+01,-9.000000E+01 +1975209,fr,1,3.550000E+00,5.841870E+00,5.097870E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999365E+01,0.000000E+00 +1975212,fr,6,3.650000E+00,5.841870E+00,5.097870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +1975217,fr,1,3.650000E+00,5.841870E+00,5.097870E+01,2.750000E+01,Active Shallow Crust,2.400021E+02,5.801252E+01,0.000000E+00 +1975224,fr,3,3.750000E+00,5.841870E+00,5.097870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1975225,fr,2,3.750000E+00,5.841870E+00,5.097870E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1975227,fr,1,3.750000E+00,5.841870E+00,5.097870E+01,5.000000E+00,Active Shallow Crust,2.400094E+02,5.801805E+01,0.000000E+00 +1975228,fr,1,3.750000E+00,5.841870E+00,5.097870E+01,1.500000E+01,Active Shallow Crust,2.400094E+02,5.801805E+01,0.000000E+00 +1975236,fr,1,3.850000E+00,5.841870E+00,5.097870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999101E+01,0.000000E+00 +1975242,fr,1,3.850000E+00,5.841870E+00,5.097870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,-9.000000E+01 +1975245,fr,1,3.850000E+00,5.841870E+00,5.097870E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.999326E+01,0.000000E+00 +1975248,fr,3,3.950000E+00,5.841870E+00,5.097870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999199E+01,0.000000E+00 +1975251,fr,2,3.950000E+00,5.841870E+00,5.097870E+01,5.000000E+00,Active Shallow Crust,2.400207E+02,5.800513E+01,0.000000E+00 +1975257,fr,1,3.950000E+00,5.841870E+00,5.097870E+01,5.000000E+00,Active Shallow Crust,1.288989E+02,8.999399E+01,0.000000E+00 +1975260,fr,1,4.050000E+00,5.841870E+00,5.097870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +1975272,fr,1,4.150000E+00,5.841870E+00,5.097870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1975273,fr,2,4.150000E+00,5.841870E+00,5.097870E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1975284,fr,1,4.250000E+00,5.841870E+00,5.097870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +1975308,fr,1,4.450000E+00,5.841870E+00,5.097870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999099E+01,0.000000E+00 +1975320,fr,1,4.550000E+00,5.841870E+00,5.097870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1975332,fr,1,4.650000E+00,5.841870E+00,5.097870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1975344,fr,2,4.750000E+00,5.841870E+00,5.097870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1975360,fr,1,4.850000E+00,5.841870E+00,5.097870E+01,1.500000E+01,Active Shallow Crust,2.400194E+02,5.800269E+01,0.000000E+00 +1975368,fr,1,4.950000E+00,5.841870E+00,5.097870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +1975447,fr,1,5.550000E+00,5.841870E+00,5.097870E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,-9.000000E+01 +1975500,fr,1,6.050000E+00,5.841871E+00,5.097870E+01,5.357596E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1976160,fr,4,3.550000E+00,6.985220E+00,5.050439E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998717E+01,0.000000E+00 +1976161,fr,2,3.550000E+00,6.985220E+00,5.050439E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998717E+01,0.000000E+00 +1976172,fr,3,3.650000E+00,6.985220E+00,5.050439E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998857E+01,0.000000E+00 +1976184,fr,1,3.750000E+00,6.985220E+00,5.050439E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1976187,fr,1,3.750000E+00,6.985220E+00,5.050439E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801840E+01,0.000000E+00 +1976197,fr,1,3.850000E+00,6.985220E+00,5.050439E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999092E+01,0.000000E+00 +1976208,fr,1,3.950000E+00,6.985220E+00,5.050439E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999191E+01,0.000000E+00 +1976211,fr,1,3.950000E+00,6.985220E+00,5.050439E+01,5.000000E+00,Active Shallow Crust,2.400203E+02,5.800480E+01,0.000000E+00 +1976221,fr,1,4.050000E+00,6.985220E+00,5.050439E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +1976247,fr,1,4.250000E+00,6.985220E+00,5.050439E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.799387E+01,0.000000E+00 +1976322,fr,1,4.850000E+00,6.985220E+00,5.050439E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,-9.000000E+01 +1976448,fr,1,5.950000E+00,6.985220E+00,5.050439E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1976641,fr,1,3.550000E+00,-2.491140E+00,4.744035E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +1976644,fr,1,3.550000E+00,-2.491140E+00,4.744035E+01,1.500000E+01,Active Shallow Crust,2.400123E+02,5.799847E+01,0.000000E+00 +1976653,fr,1,3.650000E+00,-2.491140E+00,4.744035E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1976664,fr,1,3.750000E+00,-2.491140E+00,4.744035E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +1976720,fr,1,4.150000E+00,-2.491140E+00,4.744035E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,-9.000000E+01 +1976725,fr,1,4.250000E+00,-2.491140E+00,4.744035E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1976727,fr,1,4.250000E+00,-2.491140E+00,4.744035E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799410E+01,0.000000E+00 +1976733,fr,1,4.250000E+00,-2.491140E+00,4.744035E+01,5.000000E+00,Active Shallow Crust,1.288943E+02,8.998098E+01,0.000000E+00 +1976763,fr,1,4.550000E+00,-2.491140E+00,4.744035E+01,5.000000E+00,Active Shallow Crust,2.400097E+02,5.799739E+01,0.000000E+00 +1976812,fr,1,4.950000E+00,-2.491140E+00,4.744035E+01,1.500000E+01,Active Shallow Crust,2.400123E+02,5.800462E+01,0.000000E+00 +1977120,fr,1,3.550000E+00,4.248410E+00,4.158549E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999245E+01,0.000000E+00 +1977144,fr,1,3.750000E+00,4.248410E+00,4.158549E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998801E+01,0.000000E+00 +1977192,fr,1,4.150000E+00,4.248410E+00,4.158549E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +1977193,fr,1,4.150000E+00,4.248410E+00,4.158549E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +1977254,fr,1,4.650000E+00,4.248410E+00,4.158549E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +1977624,fr,1,3.750000E+00,9.258800E-01,5.265574E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +1977685,fr,1,4.250000E+00,9.258800E-01,5.265574E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +1978092,fr,1,3.650000E+00,-3.225300E-01,4.653912E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +1978098,fr,1,3.650000E+00,-3.225300E-01,4.653912E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,-9.000000E+01 +1978099,fr,1,3.650000E+00,-3.225300E-01,4.653912E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,-9.000000E+01 +1978113,fr,1,3.750000E+00,-3.225300E-01,4.653912E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.996733E+01,0.000000E+00 +1978116,fr,1,3.850000E+00,-3.225300E-01,4.653912E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1978128,fr,1,3.950000E+00,-3.225300E-01,4.653912E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1978131,fr,1,3.950000E+00,-3.225300E-01,4.653912E+01,5.000000E+00,Active Shallow Crust,2.400198E+02,5.800497E+01,0.000000E+00 +1978140,fr,1,4.050000E+00,-3.225300E-01,4.653912E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1978155,fr,1,4.150000E+00,-3.225300E-01,4.653912E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.799731E+01,0.000000E+00 +1978164,fr,1,4.250000E+00,-3.225300E-01,4.653912E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1978167,fr,1,4.250000E+00,-3.225300E-01,4.653912E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799408E+01,0.000000E+00 +1978203,fr,1,4.550000E+00,-3.225300E-01,4.653912E+01,5.000000E+00,Active Shallow Crust,2.400093E+02,5.799738E+01,0.000000E+00 +1978224,fr,1,4.750000E+00,-3.225300E-01,4.653912E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1978236,fr,1,4.850000E+00,-3.225300E-01,4.653912E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1979040,fr,1,3.550000E+00,2.692760E+00,4.559550E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +1979041,fr,1,3.550000E+00,2.692760E+00,4.559550E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +1979042,fr,1,3.550000E+00,2.692760E+00,4.559550E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +1979052,fr,1,3.650000E+00,2.692760E+00,4.559550E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +1979055,fr,1,3.650000E+00,2.692760E+00,4.559550E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801303E+01,0.000000E+00 +1979064,fr,1,3.750000E+00,2.692760E+00,4.559550E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998879E+01,0.000000E+00 +1979065,fr,3,3.750000E+00,2.692760E+00,4.559550E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998879E+01,0.000000E+00 +1979077,fr,1,3.850000E+00,2.692760E+00,4.559550E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1979092,fr,1,3.950000E+00,2.692760E+00,4.559550E+01,1.500000E+01,Active Shallow Crust,2.400195E+02,5.800517E+01,0.000000E+00 +1979101,fr,2,4.050000E+00,2.692760E+00,4.559550E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1979103,fr,1,4.050000E+00,2.692760E+00,4.559550E+01,5.000000E+00,Active Shallow Crust,2.400058E+02,5.800563E+01,0.000000E+00 +1979112,fr,1,4.150000E+00,2.692760E+00,4.559550E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +1979148,fr,1,4.450000E+00,2.692760E+00,4.559550E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1979522,fr,1,3.550000E+00,6.049190E+00,4.276621E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999260E+01,0.000000E+00 +1979604,fr,1,4.250000E+00,6.049190E+00,4.276621E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +1980480,fr,1,3.550000E+00,4.919000E-02,4.385786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1980511,fr,1,3.750000E+00,4.919000E-02,4.385786E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +1980516,fr,1,3.850000E+00,4.919000E-02,4.385786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1980528,fr,1,3.950000E+00,4.919000E-02,4.385786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1980543,fr,1,4.050000E+00,4.919000E-02,4.385786E+01,5.000000E+00,Active Shallow Crust,2.400056E+02,5.800576E+01,0.000000E+00 +1980960,fr,1,3.550000E+00,5.938410E+00,4.773597E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999322E+01,0.000000E+00 +1980961,fr,1,3.550000E+00,5.938410E+00,4.773597E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999322E+01,0.000000E+00 +1980972,fr,1,3.650000E+00,5.938410E+00,4.773597E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998791E+01,0.000000E+00 +1980973,fr,1,3.650000E+00,5.938410E+00,4.773597E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998791E+01,0.000000E+00 +1980974,fr,1,3.650000E+00,5.938410E+00,4.773597E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998791E+01,0.000000E+00 +1980975,fr,1,3.650000E+00,5.938410E+00,4.773597E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801311E+01,0.000000E+00 +1980984,fr,2,3.750000E+00,5.938410E+00,4.773597E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +1980985,fr,1,3.750000E+00,5.938410E+00,4.773597E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +1981002,fr,1,3.850000E+00,5.938410E+00,4.773597E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,-9.000000E+01 +1981009,fr,1,3.950000E+00,5.938410E+00,4.773597E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999144E+01,0.000000E+00 +1981032,fr,1,4.150000E+00,5.938410E+00,4.773597E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1981057,fr,1,4.350000E+00,5.938410E+00,4.773597E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1981452,fr,1,3.650000E+00,2.073060E+00,4.828524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999103E+01,0.000000E+00 +1981490,fr,1,3.950000E+00,2.073060E+00,4.828524E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +1981512,fr,1,4.150000E+00,2.073060E+00,4.828524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1981513,fr,1,4.150000E+00,2.073060E+00,4.828524E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1981536,fr,1,4.350000E+00,2.073060E+00,4.828524E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +1981920,fr,1,3.550000E+00,7.320820E+00,4.358724E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999270E+01,0.000000E+00 +1981921,fr,1,3.550000E+00,7.320820E+00,4.358724E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999270E+01,0.000000E+00 +1981932,fr,4,3.650000E+00,7.320820E+00,4.358724E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998698E+01,0.000000E+00 +1981933,fr,1,3.650000E+00,7.320820E+00,4.358724E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998698E+01,0.000000E+00 +1981938,fr,1,3.650000E+00,7.320820E+00,4.358724E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998683E+01,-9.000000E+01 +1981941,fr,1,3.650000E+00,7.320820E+00,4.358724E+01,5.000000E+00,Active Shallow Crust,1.289010E+02,8.996347E+01,0.000000E+00 +1981944,fr,1,3.750000E+00,7.320820E+00,4.358724E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998840E+01,0.000000E+00 +1981973,fr,1,3.950000E+00,7.320820E+00,4.358724E+01,2.750000E+01,Active Shallow Crust,2.400201E+02,5.800499E+01,0.000000E+00 +1981980,fr,3,4.050000E+00,7.320820E+00,4.358724E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999178E+01,0.000000E+00 +1982098,fr,1,4.950000E+00,7.320820E+00,4.358724E+01,1.500000E+01,Active Shallow Crust,1.288912E+02,8.998962E+01,0.000000E+00 +1982167,fr,1,5.550000E+00,7.320820E+00,4.358724E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +1982401,fr,1,3.550000E+00,-3.664670E+00,4.882484E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1982410,fr,1,3.550000E+00,-3.664670E+00,4.882484E+01,1.500000E+01,Active Shallow Crust,1.288964E+02,8.999336E+01,0.000000E+00 +1982412,fr,1,3.650000E+00,-3.664670E+00,4.882484E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999113E+01,0.000000E+00 +1982418,fr,1,3.650000E+00,-3.664670E+00,4.882484E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999102E+01,-9.000000E+01 +1982424,fr,1,3.750000E+00,-3.664670E+00,4.882484E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1982426,fr,1,3.750000E+00,-3.664670E+00,4.882484E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +1982472,fr,1,4.150000E+00,-3.664670E+00,4.882484E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1982529,fr,1,4.550000E+00,-3.664670E+00,4.882484E+01,5.000000E+00,Active Shallow Crust,1.288933E+02,8.998578E+01,0.000000E+00 +1982652,fr,1,5.650000E+00,-3.664670E+00,4.882484E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1982881,fr,1,3.550000E+00,9.774300E-01,4.994080E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1982908,fr,1,3.750000E+00,9.774300E-01,4.994080E+01,1.500000E+01,Active Shallow Crust,2.400088E+02,5.801772E+01,0.000000E+00 +1982917,fr,1,3.850000E+00,9.774300E-01,4.994080E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +1982928,fr,1,3.950000E+00,9.774300E-01,4.994080E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +1982941,fr,1,4.050000E+00,9.774300E-01,4.994080E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +1982952,fr,1,4.150000E+00,9.774300E-01,4.994080E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +1982953,fr,1,4.150000E+00,9.774300E-01,4.994080E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +1982970,fr,1,4.250000E+00,9.774300E-01,4.994080E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +1982976,fr,1,4.350000E+00,9.774300E-01,4.994080E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1983035,fr,1,4.750000E+00,9.774300E-01,4.994080E+01,2.750000E+01,Active Shallow Crust,1.288875E+02,8.998811E+01,0.000000E+00 +1983046,fr,1,4.850000E+00,9.774300E-01,4.994080E+01,1.500000E+01,Active Shallow Crust,1.288913E+02,8.998901E+01,0.000000E+00 +1983360,fr,1,3.550000E+00,-5.516300E-01,4.380133E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1983361,fr,1,3.550000E+00,-5.516300E-01,4.380133E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +1983373,fr,1,3.650000E+00,-5.516300E-01,4.380133E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +1983381,fr,1,3.650000E+00,-5.516300E-01,4.380133E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.996354E+01,0.000000E+00 +1983384,fr,1,3.750000E+00,-5.516300E-01,4.380133E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1983409,fr,1,3.950000E+00,-5.516300E-01,4.380133E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +1983444,fr,1,4.250000E+00,-5.516300E-01,4.380133E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +1984320,fr,1,3.550000E+00,4.602800E-01,4.978468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1984332,fr,1,3.650000E+00,4.602800E-01,4.978468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1984334,fr,1,3.650000E+00,4.602800E-01,4.978468E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +1984338,fr,1,3.650000E+00,4.602800E-01,4.978468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +1984345,fr,1,3.750000E+00,4.602800E-01,4.978468E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1984347,fr,1,3.750000E+00,4.602800E-01,4.978468E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.801765E+01,0.000000E+00 +1984354,fr,1,3.750000E+00,4.602800E-01,4.978468E+01,1.500000E+01,Active Shallow Crust,1.288962E+02,8.996735E+01,0.000000E+00 +1984360,fr,1,3.850000E+00,4.602800E-01,4.978468E+01,1.500000E+01,Active Shallow Crust,2.400113E+02,5.799791E+01,0.000000E+00 +1984380,fr,1,4.050000E+00,4.602800E-01,4.978468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1984419,fr,1,4.350000E+00,4.602800E-01,4.978468E+01,5.000000E+00,Active Shallow Crust,2.400092E+02,5.799608E+01,0.000000E+00 +1984449,fr,1,4.550000E+00,4.602800E-01,4.978468E+01,5.000000E+00,Active Shallow Crust,1.288930E+02,8.998577E+01,0.000000E+00 +1984453,fr,1,4.650000E+00,4.602800E-01,4.978468E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +1984521,fr,1,5.150000E+00,4.602800E-01,4.978468E+01,5.000000E+00,Active Shallow Crust,1.288820E+02,8.999104E+01,0.000000E+00 +1984969,fr,1,4.950000E+00,-2.111170E+00,4.975776E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +1985763,fr,1,3.550000E+00,8.051000E-01,5.071610E+01,5.000000E+00,Active Shallow Crust,2.400126E+02,5.799823E+01,0.000000E+00 +1985796,fr,1,3.850000E+00,8.051000E-01,5.071610E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1985808,fr,2,3.950000E+00,8.051000E-01,5.071610E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1985889,fr,1,4.550000E+00,8.051000E-01,5.071610E+01,5.000000E+00,Active Shallow Crust,1.288927E+02,8.998577E+01,0.000000E+00 +1985896,fr,1,4.650000E+00,8.051000E-01,5.071610E+01,1.500000E+01,Active Shallow Crust,2.400124E+02,5.799453E+01,0.000000E+00 +1986240,fr,1,3.550000E+00,-1.260620E+00,4.821640E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1986252,fr,1,3.650000E+00,-1.260620E+00,4.821640E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1986255,fr,1,3.650000E+00,-1.260620E+00,4.821640E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801306E+01,0.000000E+00 +1986263,fr,1,3.650000E+00,-1.260620E+00,4.821640E+01,2.750000E+01,Active Shallow Crust,1.289000E+02,8.996355E+01,0.000000E+00 +1986267,fr,1,3.750000E+00,-1.260620E+00,4.821640E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.801756E+01,0.000000E+00 +1986288,fr,1,3.950000E+00,-1.260620E+00,4.821640E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +1986303,fr,1,4.050000E+00,-1.260620E+00,4.821640E+01,5.000000E+00,Active Shallow Crust,2.400063E+02,5.800592E+01,0.000000E+00 +1986312,fr,1,4.150000E+00,-1.260620E+00,4.821640E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +1986354,fr,1,4.450000E+00,-1.260620E+00,4.821640E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,-9.000000E+01 +1986408,fr,1,4.950000E+00,-1.260620E+00,4.821640E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +1986519,fr,1,5.850000E+00,-1.260620E+00,4.821640E+01,5.000000E+00,Active Shallow Crust,2.400495E+02,5.800016E+01,0.000000E+00 +1987200,fr,5,3.550000E+00,2.063340E+00,4.233049E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +1987201,fr,4,3.550000E+00,2.063340E+00,4.233049E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +1987203,fr,1,3.550000E+00,2.063340E+00,4.233049E+01,5.000000E+00,Active Shallow Crust,2.400115E+02,5.799790E+01,0.000000E+00 +1987209,fr,1,3.550000E+00,2.063340E+00,4.233049E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999441E+01,0.000000E+00 +1987210,fr,1,3.550000E+00,2.063340E+00,4.233049E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.999441E+01,0.000000E+00 +1987212,fr,8,3.650000E+00,2.063340E+00,4.233049E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1987213,fr,1,3.650000E+00,2.063340E+00,4.233049E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1987214,fr,1,3.650000E+00,2.063340E+00,4.233049E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1987215,fr,1,3.650000E+00,2.063340E+00,4.233049E+01,5.000000E+00,Active Shallow Crust,2.400006E+02,5.801327E+01,0.000000E+00 +1987219,fr,1,3.650000E+00,2.063340E+00,4.233049E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,-9.000000E+01 +1987221,fr,1,3.650000E+00,2.063340E+00,4.233049E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.996371E+01,0.000000E+00 +1987224,fr,3,3.750000E+00,2.063340E+00,4.233049E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999112E+01,0.000000E+00 +1987225,fr,2,3.750000E+00,2.063340E+00,4.233049E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999112E+01,0.000000E+00 +1987226,fr,1,3.750000E+00,2.063340E+00,4.233049E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999112E+01,0.000000E+00 +1987230,fr,1,3.750000E+00,2.063340E+00,4.233049E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999101E+01,-9.000000E+01 +1987236,fr,1,3.850000E+00,2.063340E+00,4.233049E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +1987237,fr,1,3.850000E+00,2.063340E+00,4.233049E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +1987248,fr,2,3.950000E+00,2.063340E+00,4.233049E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +1987249,fr,1,3.950000E+00,2.063340E+00,4.233049E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +1987254,fr,1,3.950000E+00,2.063340E+00,4.233049E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,-9.000000E+01 +1987257,fr,1,3.950000E+00,2.063340E+00,4.233049E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.999412E+01,0.000000E+00 +1987260,fr,1,4.050000E+00,2.063340E+00,4.233049E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1987261,fr,1,4.050000E+00,2.063340E+00,4.233049E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1987262,fr,2,4.050000E+00,2.063340E+00,4.233049E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +1987263,fr,1,4.050000E+00,2.063340E+00,4.233049E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.800569E+01,0.000000E+00 +1987272,fr,1,4.150000E+00,2.063340E+00,4.233049E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +1987273,fr,3,4.150000E+00,2.063340E+00,4.233049E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +1987279,fr,1,4.150000E+00,2.063340E+00,4.233049E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,-9.000000E+01 +1987284,fr,1,4.250000E+00,2.063340E+00,4.233049E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1987285,fr,1,4.250000E+00,2.063340E+00,4.233049E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1987287,fr,1,4.250000E+00,2.063340E+00,4.233049E+01,5.000000E+00,Active Shallow Crust,2.400064E+02,5.799397E+01,0.000000E+00 +1987290,fr,1,4.250000E+00,2.063340E+00,4.233049E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,-9.000000E+01 +1987297,fr,1,4.350000E+00,2.063340E+00,4.233049E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +1987300,fr,1,4.350000E+00,2.063340E+00,4.233049E+01,1.500000E+01,Active Shallow Crust,2.400077E+02,5.799574E+01,0.000000E+00 +1987314,fr,1,4.450000E+00,2.063340E+00,4.233049E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,-9.000000E+01 +1987335,fr,1,4.650000E+00,2.063340E+00,4.233049E+01,5.000000E+00,Active Shallow Crust,2.400095E+02,5.799401E+01,0.000000E+00 +1987344,fr,1,4.750000E+00,2.063340E+00,4.233049E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +1987354,fr,1,4.750000E+00,2.063340E+00,4.233049E+01,1.500000E+01,Active Shallow Crust,1.288897E+02,8.998818E+01,0.000000E+00 +1987355,fr,1,4.750000E+00,2.063340E+00,4.233049E+01,2.750000E+01,Active Shallow Crust,1.288897E+02,8.998818E+01,0.000000E+00 +1987372,fr,1,4.950000E+00,2.063340E+00,4.233049E+01,1.500000E+01,Active Shallow Crust,2.400101E+02,5.800405E+01,0.000000E+00 +1987427,fr,1,5.350000E+00,2.063340E+00,4.233049E+01,2.750000E+01,Active Shallow Crust,1.288855E+02,8.999188E+01,0.000000E+00 +1987527,fr,1,6.250000E+00,2.060604E+00,4.233399E+01,5.719927E+00,Active Shallow Crust,2.400624E+02,5.799967E+01,0.000000E+00 +1987716,fr,1,3.850000E+00,2.042940E+00,4.788855E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1987728,fr,2,3.950000E+00,2.042940E+00,4.788855E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1987729,fr,1,3.950000E+00,2.042940E+00,4.788855E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +1987812,fr,1,4.650000E+00,2.042940E+00,4.788855E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +1988160,fr,1,3.550000E+00,-1.094200E+00,4.347264E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999085E+01,0.000000E+00 +1988161,fr,2,3.550000E+00,-1.094200E+00,4.347264E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999085E+01,0.000000E+00 +1988173,fr,1,3.650000E+00,-1.094200E+00,4.347264E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1988184,fr,1,3.750000E+00,-1.094200E+00,4.347264E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1988186,fr,1,3.750000E+00,-1.094200E+00,4.347264E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +1988193,fr,1,3.750000E+00,-1.094200E+00,4.347264E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.996730E+01,0.000000E+00 +1988196,fr,2,3.850000E+00,-1.094200E+00,4.347264E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +1988214,fr,1,3.950000E+00,-1.094200E+00,4.347264E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,-9.000000E+01 +1988221,fr,1,4.050000E+00,-1.094200E+00,4.347264E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +1988224,fr,1,4.050000E+00,-1.094200E+00,4.347264E+01,1.500000E+01,Active Shallow Crust,2.400054E+02,5.800583E+01,0.000000E+00 +1988247,fr,1,4.250000E+00,-1.094200E+00,4.347264E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.799397E+01,0.000000E+00 +1988675,fr,1,3.750000E+00,-2.026340E+00,5.069223E+01,2.750000E+01,Active Shallow Crust,1.288964E+02,8.996734E+01,0.000000E+00 +1989600,fr,2,3.550000E+00,5.101590E+00,4.607930E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999300E+01,0.000000E+00 +1989613,fr,1,3.650000E+00,5.101590E+00,4.607930E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998753E+01,0.000000E+00 +1989625,fr,1,3.750000E+00,5.101590E+00,4.607930E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +1989648,fr,1,3.950000E+00,5.101590E+00,4.607930E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +1989652,fr,1,3.950000E+00,5.101590E+00,4.607930E+01,1.500000E+01,Active Shallow Crust,2.400194E+02,5.800522E+01,0.000000E+00 +1989684,fr,1,4.250000E+00,5.101590E+00,4.607930E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +1990080,fr,2,3.550000E+00,-5.644900E-01,4.338915E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1990081,fr,1,3.550000E+00,-5.644900E-01,4.338915E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +1990083,fr,1,3.550000E+00,-5.644900E-01,4.338915E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799820E+01,0.000000E+00 +1990084,fr,1,3.550000E+00,-5.644900E-01,4.338915E+01,1.500000E+01,Active Shallow Crust,2.400119E+02,5.799820E+01,0.000000E+00 +1990086,fr,1,3.550000E+00,-5.644900E-01,4.338915E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,-9.000000E+01 +1990090,fr,1,3.550000E+00,-5.644900E-01,4.338915E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.999359E+01,0.000000E+00 +1990092,fr,2,3.650000E+00,-5.644900E-01,4.338915E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1990093,fr,2,3.650000E+00,-5.644900E-01,4.338915E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +1990095,fr,1,3.650000E+00,-5.644900E-01,4.338915E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801279E+01,0.000000E+00 +1990096,fr,1,3.650000E+00,-5.644900E-01,4.338915E+01,1.500000E+01,Active Shallow Crust,2.400008E+02,5.801279E+01,0.000000E+00 +1990098,fr,1,3.650000E+00,-5.644900E-01,4.338915E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +1990104,fr,2,3.750000E+00,-5.644900E-01,4.338915E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1990105,fr,2,3.750000E+00,-5.644900E-01,4.338915E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1990108,fr,1,3.750000E+00,-5.644900E-01,4.338915E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.801743E+01,0.000000E+00 +1990117,fr,1,3.850000E+00,-5.644900E-01,4.338915E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +1990122,fr,1,3.850000E+00,-5.644900E-01,4.338915E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,-9.000000E+01 +1990128,fr,1,3.950000E+00,-5.644900E-01,4.338915E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1990130,fr,1,3.950000E+00,-5.644900E-01,4.338915E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1990140,fr,1,4.050000E+00,-5.644900E-01,4.338915E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1990141,fr,1,4.050000E+00,-5.644900E-01,4.338915E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +1990143,fr,1,4.050000E+00,-5.644900E-01,4.338915E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.800570E+01,0.000000E+00 +1990159,fr,1,4.150000E+00,-5.644900E-01,4.338915E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,-9.000000E+01 +1990176,fr,1,4.350000E+00,-5.644900E-01,4.338915E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +1990186,fr,1,4.350000E+00,-5.644900E-01,4.338915E+01,1.500000E+01,Active Shallow Crust,1.288984E+02,8.998272E+01,0.000000E+00 +1990206,fr,1,4.550000E+00,-5.644900E-01,4.338915E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +1990212,fr,1,4.650000E+00,-5.644900E-01,4.338915E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +1990233,fr,1,4.750000E+00,-5.644900E-01,4.338915E+01,5.000000E+00,Active Shallow Crust,1.288896E+02,8.998805E+01,0.000000E+00 +1990362,fr,1,5.850000E+00,-5.644900E-01,4.338915E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999002E+01,-9.000000E+01 +1990392,fr,1,6.150000E+00,-5.644878E-01,4.338915E+01,6.011322E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1990564,fr,1,3.550000E+00,-4.055050E+00,4.973413E+01,1.500000E+01,Active Shallow Crust,2.400127E+02,5.799748E+01,0.000000E+00 +1991040,fr,1,3.550000E+00,5.987310E+00,5.148579E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998744E+01,0.000000E+00 +1991047,fr,1,3.550000E+00,5.987310E+00,5.148579E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998730E+01,-9.000000E+01 +1991052,fr,1,3.650000E+00,5.987310E+00,5.148579E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998881E+01,0.000000E+00 +1991054,fr,1,3.650000E+00,5.987310E+00,5.148579E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998881E+01,0.000000E+00 +1991056,fr,1,3.650000E+00,5.987310E+00,5.148579E+01,1.500000E+01,Active Shallow Crust,2.400017E+02,5.801316E+01,0.000000E+00 +1991058,fr,1,3.650000E+00,5.987310E+00,5.148579E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998868E+01,-9.000000E+01 +1991067,fr,1,3.750000E+00,5.987310E+00,5.148579E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.801775E+01,0.000000E+00 +1991076,fr,1,3.850000E+00,5.987310E+00,5.148579E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999111E+01,0.000000E+00 +1991157,fr,1,4.450000E+00,5.987310E+00,5.148579E+01,5.000000E+00,Active Shallow Crust,1.288910E+02,8.999443E+01,0.000000E+00 +1991208,fr,1,4.950000E+00,5.987310E+00,5.148579E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1992022,fr,1,3.650000E+00,2.377600E+00,4.502399E+01,1.500000E+01,Active Shallow Crust,1.289009E+02,8.996349E+01,0.000000E+00 +1992027,fr,1,3.750000E+00,2.377600E+00,4.502399E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801736E+01,0.000000E+00 +1992036,fr,2,3.850000E+00,2.377600E+00,4.502399E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1992037,fr,2,3.850000E+00,2.377600E+00,4.502399E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +1992051,fr,1,3.950000E+00,2.377600E+00,4.502399E+01,5.000000E+00,Active Shallow Crust,2.400196E+02,5.800525E+01,0.000000E+00 +1992087,fr,1,4.250000E+00,2.377600E+00,4.502399E+01,5.000000E+00,Active Shallow Crust,2.400072E+02,5.799416E+01,0.000000E+00 +1992480,fr,1,3.550000E+00,4.425830E+00,4.494087E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999286E+01,0.000000E+00 +1992481,fr,1,3.550000E+00,4.425830E+00,4.494087E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999286E+01,0.000000E+00 +1992486,fr,1,3.550000E+00,4.425830E+00,4.494087E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999278E+01,-9.000000E+01 +1992501,fr,1,3.650000E+00,4.425830E+00,4.494087E+01,5.000000E+00,Active Shallow Crust,1.289012E+02,8.996349E+01,0.000000E+00 +1992545,fr,1,4.050000E+00,4.425830E+00,4.494087E+01,2.750000E+01,Active Shallow Crust,2.400060E+02,5.800582E+01,0.000000E+00 +1992552,fr,1,4.150000E+00,4.425830E+00,4.494087E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +1992590,fr,1,4.450000E+00,4.425830E+00,4.494087E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +1992624,fr,1,4.750000E+00,4.425830E+00,4.494087E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +1992960,fr,1,3.550000E+00,7.590100E-01,4.993059E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1992961,fr,1,3.550000E+00,7.590100E-01,4.993059E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +1992972,fr,1,3.650000E+00,7.590100E-01,4.993059E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1992973,fr,1,3.650000E+00,7.590100E-01,4.993059E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1992999,fr,1,3.850000E+00,7.590100E-01,4.993059E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799789E+01,0.000000E+00 +1993004,fr,1,3.850000E+00,7.590100E-01,4.993059E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,-9.000000E+01 +1993011,fr,1,3.950000E+00,7.590100E-01,4.993059E+01,5.000000E+00,Active Shallow Crust,2.400203E+02,5.800515E+01,0.000000E+00 +1993057,fr,1,4.350000E+00,7.590100E-01,4.993059E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1993058,fr,1,4.350000E+00,7.590100E-01,4.993059E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1993059,fr,1,4.350000E+00,7.590100E-01,4.993059E+01,5.000000E+00,Active Shallow Crust,2.400092E+02,5.799611E+01,0.000000E+00 +1993442,fr,1,3.550000E+00,-1.449020E+00,4.233048E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +1993449,fr,1,3.550000E+00,-1.449020E+00,4.233048E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999348E+01,0.000000E+00 +1993452,fr,1,3.650000E+00,-1.449020E+00,4.233048E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +1993464,fr,1,3.750000E+00,-1.449020E+00,4.233048E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +1993470,fr,1,3.750000E+00,-1.449020E+00,4.233048E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,-9.000000E+01 +1993531,fr,1,4.250000E+00,-1.449020E+00,4.233048E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,-9.000000E+01 +1993536,fr,1,4.350000E+00,-1.449020E+00,4.233048E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +1993920,fr,1,3.550000E+00,5.501740E+00,4.831552E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999329E+01,0.000000E+00 +1993953,fr,1,3.750000E+00,5.501740E+00,4.831552E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.996698E+01,0.000000E+00 +1993962,fr,1,3.850000E+00,5.501740E+00,4.831552E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,-9.000000E+01 +1994429,fr,1,3.750000E+00,-2.165360E+00,4.363334E+01,2.750000E+01,Active Shallow Crust,2.400079E+02,5.801776E+01,0.000000E+00 +1994485,fr,1,4.250000E+00,-2.165360E+00,4.363334E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +1994568,fr,1,4.950000E+00,-2.165360E+00,4.363334E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +1994882,fr,1,3.550000E+00,-1.206990E+00,4.442219E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +1995366,fr,1,3.550000E+00,5.068400E-01,5.199931E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,-9.000000E+01 +1995457,fr,1,4.350000E+00,5.068400E-01,5.199931E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +1995512,fr,1,4.750000E+00,5.068400E-01,5.199931E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +1995861,fr,1,3.650000E+00,2.251750E+00,4.789857E+01,5.000000E+00,Active Shallow Crust,1.288997E+02,8.996355E+01,0.000000E+00 +1995864,fr,1,3.750000E+00,2.251750E+00,4.789857E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +1995876,fr,1,3.850000E+00,2.251750E+00,4.789857E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +1995885,fr,1,3.850000E+00,2.251750E+00,4.789857E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999402E+01,0.000000E+00 +1995892,fr,1,3.950000E+00,2.251750E+00,4.789857E+01,1.500000E+01,Active Shallow Crust,2.400201E+02,5.800498E+01,0.000000E+00 +1996320,fr,3,3.550000E+00,4.765370E+00,4.419759E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999277E+01,0.000000E+00 +1996323,fr,1,3.550000E+00,4.765370E+00,4.419759E+01,5.000000E+00,Active Shallow Crust,2.400132E+02,5.799772E+01,0.000000E+00 +1996326,fr,2,3.550000E+00,4.765370E+00,4.419759E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999268E+01,-9.000000E+01 +1996333,fr,1,3.650000E+00,4.765370E+00,4.419759E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998711E+01,0.000000E+00 +1996336,fr,1,3.650000E+00,4.765370E+00,4.419759E+01,1.500000E+01,Active Shallow Crust,2.400004E+02,5.801307E+01,0.000000E+00 +1996338,fr,1,3.650000E+00,4.765370E+00,4.419759E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998696E+01,-9.000000E+01 +1996344,fr,2,3.750000E+00,4.765370E+00,4.419759E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998852E+01,0.000000E+00 +1996345,fr,1,3.750000E+00,4.765370E+00,4.419759E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998852E+01,0.000000E+00 +1996346,fr,1,3.750000E+00,4.765370E+00,4.419759E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998852E+01,0.000000E+00 +1996356,fr,5,3.850000E+00,4.765370E+00,4.419759E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +1996357,fr,1,3.850000E+00,4.765370E+00,4.419759E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +1996368,fr,1,3.950000E+00,4.765370E+00,4.419759E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1996369,fr,2,3.950000E+00,4.765370E+00,4.419759E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +1996371,fr,1,3.950000E+00,4.765370E+00,4.419759E+01,5.000000E+00,Active Shallow Crust,2.400204E+02,5.800487E+01,0.000000E+00 +1996372,fr,1,3.950000E+00,4.765370E+00,4.419759E+01,1.500000E+01,Active Shallow Crust,2.400204E+02,5.800487E+01,0.000000E+00 +1996374,fr,1,3.950000E+00,4.765370E+00,4.419759E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999077E+01,-9.000000E+01 +1996377,fr,1,3.950000E+00,4.765370E+00,4.419759E+01,5.000000E+00,Active Shallow Crust,1.288998E+02,8.999316E+01,0.000000E+00 +1996380,fr,1,4.050000E+00,4.765370E+00,4.419759E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999187E+01,0.000000E+00 +1996383,fr,1,4.050000E+00,4.765370E+00,4.419759E+01,5.000000E+00,Active Shallow Crust,2.400058E+02,5.800579E+01,0.000000E+00 +1996386,fr,1,4.050000E+00,4.765370E+00,4.419759E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999178E+01,-9.000000E+01 +1996401,fr,1,4.150000E+00,4.765370E+00,4.419759E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.999457E+01,0.000000E+00 +1996404,fr,1,4.250000E+00,4.765370E+00,4.419759E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +1996416,fr,1,4.350000E+00,4.765370E+00,4.419759E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999136E+01,0.000000E+00 +1996438,fr,1,4.450000E+00,4.765370E+00,4.419759E+01,1.500000E+01,Active Shallow Crust,1.288925E+02,8.999359E+01,0.000000E+00 +1996443,fr,1,4.550000E+00,4.765370E+00,4.419759E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.799744E+01,0.000000E+00 +1996513,fr,1,5.150000E+00,4.765370E+00,4.419759E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +1996614,fr,1,5.950000E+00,4.765370E+00,4.419759E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +1996807,fr,1,3.550000E+00,5.100030E+00,4.411074E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999268E+01,-9.000000E+01 +1996816,fr,1,3.650000E+00,5.100030E+00,4.411074E+01,1.500000E+01,Active Shallow Crust,2.400014E+02,5.801179E+01,0.000000E+00 +1996824,fr,2,3.750000E+00,5.100030E+00,4.411074E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998849E+01,0.000000E+00 +1996834,fr,1,3.750000E+00,5.100030E+00,4.411074E+01,1.500000E+01,Active Shallow Crust,1.288975E+02,8.996745E+01,0.000000E+00 +1996838,fr,1,3.850000E+00,5.100030E+00,4.411074E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +1996839,fr,1,3.850000E+00,5.100030E+00,4.411074E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799824E+01,0.000000E+00 +1996845,fr,1,3.850000E+00,5.100030E+00,4.411074E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.999487E+01,0.000000E+00 +1996869,fr,1,4.050000E+00,5.100030E+00,4.411074E+01,5.000000E+00,Active Shallow Crust,1.288918E+02,8.999390E+01,0.000000E+00 +1996874,fr,1,4.150000E+00,5.100030E+00,4.411074E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +1996878,fr,1,4.150000E+00,5.100030E+00,4.411074E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998899E+01,-9.000000E+01 +1996899,fr,1,4.350000E+00,5.100030E+00,4.411074E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799585E+01,0.000000E+00 +1996905,fr,1,4.350000E+00,5.100030E+00,4.411074E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.998294E+01,0.000000E+00 +1996923,fr,1,4.550000E+00,5.100030E+00,4.411074E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799718E+01,0.000000E+00 +1996928,fr,1,4.550000E+00,5.100030E+00,4.411074E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999074E+01,-9.000000E+01 +1996933,fr,1,4.650000E+00,5.100030E+00,4.411074E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +1996957,fr,1,4.850000E+00,5.100030E+00,4.411074E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +1997019,fr,1,5.350000E+00,5.100030E+00,4.411074E+01,5.000000E+00,Active Shallow Crust,2.400233E+02,5.799754E+01,0.000000E+00 +1997283,fr,1,3.550000E+00,4.525950E+00,4.243196E+01,5.000000E+00,Active Shallow Crust,2.400115E+02,5.799883E+01,0.000000E+00 +1998240,fr,3,3.550000E+00,8.155780E+00,4.976675E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998698E+01,0.000000E+00 +1998242,fr,1,3.550000E+00,8.155780E+00,4.976675E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998698E+01,0.000000E+00 +1998247,fr,1,3.550000E+00,8.155780E+00,4.976675E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998682E+01,-9.000000E+01 +1998248,fr,2,3.550000E+00,8.155780E+00,4.976675E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998682E+01,-9.000000E+01 +1998249,fr,1,3.550000E+00,8.155780E+00,4.976675E+01,5.000000E+00,Active Shallow Crust,1.288936E+02,8.999348E+01,0.000000E+00 +1998250,fr,1,3.550000E+00,8.155780E+00,4.976675E+01,1.500000E+01,Active Shallow Crust,1.288936E+02,8.999348E+01,0.000000E+00 +1998252,fr,4,3.650000E+00,8.155780E+00,4.976675E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998839E+01,0.000000E+00 +1998254,fr,1,3.650000E+00,8.155780E+00,4.976675E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998839E+01,0.000000E+00 +1998255,fr,1,3.650000E+00,8.155780E+00,4.976675E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801340E+01,0.000000E+00 +1998257,fr,1,3.650000E+00,8.155780E+00,4.976675E+01,2.750000E+01,Active Shallow Crust,2.400011E+02,5.801332E+01,0.000000E+00 +1998265,fr,1,3.750000E+00,8.155780E+00,4.976675E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1998266,fr,1,3.750000E+00,8.155780E+00,4.976675E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +1998276,fr,1,3.850000E+00,8.155780E+00,4.976675E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +1998278,fr,1,3.850000E+00,8.155780E+00,4.976675E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +1998285,fr,1,3.850000E+00,8.155780E+00,4.976675E+01,5.000000E+00,Active Shallow Crust,1.288948E+02,8.999539E+01,0.000000E+00 +1998288,fr,1,3.950000E+00,8.155780E+00,4.976675E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999178E+01,0.000000E+00 +1998289,fr,1,3.950000E+00,8.155780E+00,4.976675E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999178E+01,0.000000E+00 +1998297,fr,1,3.950000E+00,8.155780E+00,4.976675E+01,5.000000E+00,Active Shallow Crust,1.288996E+02,8.999589E+01,0.000000E+00 +1998300,fr,1,4.050000E+00,8.155780E+00,4.976675E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999268E+01,0.000000E+00 +1998318,fr,1,4.150000E+00,8.155780E+00,4.976675E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998679E+01,-9.000000E+01 +1998348,fr,1,4.450000E+00,8.155780E+00,4.976675E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +1998393,fr,1,4.750000E+00,8.155780E+00,4.976675E+01,5.000000E+00,Active Shallow Crust,1.288878E+02,8.998794E+01,0.000000E+00 +1998405,fr,1,4.850000E+00,8.155780E+00,4.976675E+01,5.000000E+00,Active Shallow Crust,1.288913E+02,8.998925E+01,0.000000E+00 +1998439,fr,1,5.150000E+00,8.155780E+00,4.976675E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,-9.000000E+01 +1998744,fr,1,3.750000E+00,-1.182200E-01,4.988541E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1998745,fr,1,3.750000E+00,-1.182200E-01,4.988541E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +1998757,fr,1,3.850000E+00,-1.182200E-01,4.988541E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1998768,fr,1,3.950000E+00,-1.182200E-01,4.988541E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1998792,fr,2,4.150000E+00,-1.182200E-01,4.988541E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +1998817,fr,1,4.350000E+00,-1.182200E-01,4.988541E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +1998828,fr,1,4.450000E+00,-1.182200E-01,4.988541E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +1998831,fr,1,4.450000E+00,-1.182200E-01,4.988541E+01,5.000000E+00,Active Shallow Crust,2.400062E+02,5.799485E+01,0.000000E+00 +1998840,fr,1,4.550000E+00,-1.182200E-01,4.988541E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +1998909,fr,1,5.050000E+00,-1.182200E-01,4.988541E+01,5.000000E+00,Active Shallow Crust,1.288839E+02,8.999046E+01,0.000000E+00 +1999200,fr,1,3.550000E+00,2.115180E+00,4.313786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998896E+01,0.000000E+00 +1999203,fr,1,3.550000E+00,2.115180E+00,4.313786E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799771E+01,0.000000E+00 +1999212,fr,1,3.650000E+00,2.115180E+00,4.313786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1999213,fr,1,3.650000E+00,2.115180E+00,4.313786E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +1999215,fr,1,3.650000E+00,2.115180E+00,4.313786E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801311E+01,0.000000E+00 +1999237,fr,1,3.850000E+00,2.115180E+00,4.313786E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +1999326,fr,1,4.550000E+00,2.115180E+00,4.313786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,-9.000000E+01 +1999692,fr,1,3.650000E+00,4.319300E-01,4.497744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +1999701,fr,1,3.650000E+00,4.319300E-01,4.497744E+01,5.000000E+00,Active Shallow Crust,1.289006E+02,8.996349E+01,0.000000E+00 +1999722,fr,1,3.850000E+00,4.319300E-01,4.497744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +1999728,fr,1,3.950000E+00,4.319300E-01,4.497744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +1999731,fr,1,3.950000E+00,4.319300E-01,4.497744E+01,5.000000E+00,Active Shallow Crust,2.400196E+02,5.800490E+01,0.000000E+00 +1999836,fr,1,4.850000E+00,4.319300E-01,4.497744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2000640,fr,1,3.550000E+00,4.972310E+00,4.683806E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999310E+01,0.000000E+00 +2000652,fr,3,3.650000E+00,4.972310E+00,4.683806E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998770E+01,0.000000E+00 +2000657,fr,1,3.650000E+00,4.972310E+00,4.683806E+01,2.750000E+01,Active Shallow Crust,2.400018E+02,5.801230E+01,0.000000E+00 +2000661,fr,1,3.650000E+00,4.972310E+00,4.683806E+01,5.000000E+00,Active Shallow Crust,1.288995E+02,8.996353E+01,0.000000E+00 +2000665,fr,1,3.750000E+00,4.972310E+00,4.683806E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +2000677,fr,1,3.850000E+00,4.972310E+00,4.683806E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2000685,fr,1,3.850000E+00,4.972310E+00,4.683806E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999268E+01,0.000000E+00 +2000689,fr,1,3.950000E+00,4.972310E+00,4.683806E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +2000700,fr,2,4.050000E+00,4.972310E+00,4.683806E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998837E+01,0.000000E+00 +2000701,fr,1,4.050000E+00,4.972310E+00,4.683806E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998837E+01,0.000000E+00 +2000704,fr,1,4.050000E+00,4.972310E+00,4.683806E+01,1.500000E+01,Active Shallow Crust,2.400061E+02,5.800573E+01,0.000000E+00 +2000724,fr,1,4.250000E+00,4.972310E+00,4.683806E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +2000760,fr,2,4.550000E+00,4.972310E+00,4.683806E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +2000772,fr,1,4.650000E+00,4.972310E+00,4.683806E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +2000781,fr,1,4.650000E+00,4.972310E+00,4.683806E+01,5.000000E+00,Active Shallow Crust,1.288909E+02,8.998676E+01,0.000000E+00 +2000928,fr,1,5.950000E+00,4.972310E+00,4.683806E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2001120,fr,1,3.550000E+00,-4.735900E+00,4.749065E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999319E+01,0.000000E+00 +2001601,fr,1,3.550000E+00,-1.883030E+00,5.017254E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +2001607,fr,1,3.550000E+00,-1.883030E+00,5.017254E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,-9.000000E+01 +2001612,fr,1,3.650000E+00,-1.883030E+00,5.017254E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2001684,fr,1,4.250000E+00,-1.883030E+00,5.017254E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +2001780,fr,1,5.050000E+00,-1.883030E+00,5.017254E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2002080,fr,1,3.550000E+00,3.958200E-01,4.565024E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +2002092,fr,1,3.650000E+00,3.958200E-01,4.565024E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +2002093,fr,1,3.650000E+00,3.958200E-01,4.565024E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +2002094,fr,1,3.650000E+00,3.958200E-01,4.565024E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +2002111,fr,1,3.750000E+00,3.958200E-01,4.565024E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +2002140,fr,1,4.050000E+00,3.958200E-01,4.565024E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +2002143,fr,1,4.050000E+00,3.958200E-01,4.565024E+01,5.000000E+00,Active Shallow Crust,2.400058E+02,5.800583E+01,0.000000E+00 +2002146,fr,1,4.050000E+00,3.958200E-01,4.565024E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +2002152,fr,1,4.150000E+00,3.958200E-01,4.565024E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2002164,fr,1,4.250000E+00,3.958200E-01,4.565024E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2002200,fr,1,4.550000E+00,3.958200E-01,4.565024E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2002573,fr,1,3.650000E+00,-2.126640E+00,4.814825E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +2002574,fr,1,3.650000E+00,-2.126640E+00,4.814825E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +2002593,fr,1,3.750000E+00,-2.126640E+00,4.814825E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.996727E+01,0.000000E+00 +2002596,fr,1,3.850000E+00,-2.126640E+00,4.814825E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +2002608,fr,1,3.950000E+00,-2.126640E+00,4.814825E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +2002617,fr,1,3.950000E+00,-2.126640E+00,4.814825E+01,5.000000E+00,Active Shallow Crust,1.288999E+02,8.999363E+01,0.000000E+00 +2002620,fr,1,4.050000E+00,-2.126640E+00,4.814825E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +2002724,fr,1,4.850000E+00,-2.126640E+00,4.814825E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +2002755,fr,1,5.150000E+00,-2.126640E+00,4.814825E+01,5.000000E+00,Active Shallow Crust,2.400207E+02,5.800017E+01,0.000000E+00 +2002945,fr,1,6.750000E+00,-2.126640E+00,4.814825E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +2003040,fr,2,3.550000E+00,-1.460600E+00,4.900466E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2003041,fr,3,3.550000E+00,-1.460600E+00,4.900466E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2003043,fr,2,3.550000E+00,-1.460600E+00,4.900466E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799835E+01,0.000000E+00 +2003049,fr,1,3.550000E+00,-1.460600E+00,4.900466E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999339E+01,0.000000E+00 +2003052,fr,1,3.650000E+00,-1.460600E+00,4.900466E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2003055,fr,1,3.650000E+00,-1.460600E+00,4.900466E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801309E+01,0.000000E+00 +2003064,fr,3,3.750000E+00,-1.460600E+00,4.900466E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +2003066,fr,1,3.750000E+00,-1.460600E+00,4.900466E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +2003067,fr,1,3.750000E+00,-1.460600E+00,4.900466E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.801757E+01,0.000000E+00 +2003085,fr,1,3.850000E+00,-1.460600E+00,4.900466E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.999356E+01,0.000000E+00 +2003088,fr,2,3.950000E+00,-1.460600E+00,4.900466E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +2003097,fr,1,3.950000E+00,-1.460600E+00,4.900466E+01,5.000000E+00,Active Shallow Crust,1.289000E+02,8.999374E+01,0.000000E+00 +2003100,fr,1,4.050000E+00,-1.460600E+00,4.900466E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +2003102,fr,1,4.050000E+00,-1.460600E+00,4.900466E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +2003106,fr,1,4.050000E+00,-1.460600E+00,4.900466E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +2003118,fr,1,4.150000E+00,-1.460600E+00,4.900466E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +2003136,fr,3,4.350000E+00,-1.460600E+00,4.900466E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +2003137,fr,1,4.350000E+00,-1.460600E+00,4.900466E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +2003149,fr,1,4.450000E+00,-1.460600E+00,4.900466E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2003167,fr,1,4.550000E+00,-1.460600E+00,4.900466E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +2003268,fr,1,5.450000E+00,-1.460600E+00,4.900466E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2003295,fr,1,5.650000E+00,-1.460600E+00,4.900466E+01,5.000000E+00,Active Shallow Crust,2.400401E+02,5.799974E+01,0.000000E+00 +2003520,fr,1,3.550000E+00,6.057420E+00,4.343683E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999268E+01,0.000000E+00 +2003526,fr,1,3.550000E+00,6.057420E+00,4.343683E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999259E+01,-9.000000E+01 +2003533,fr,1,3.650000E+00,6.057420E+00,4.343683E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998695E+01,0.000000E+00 +2003544,fr,2,3.750000E+00,6.057420E+00,4.343683E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998837E+01,0.000000E+00 +2003556,fr,1,3.850000E+00,6.057420E+00,4.343683E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +2003653,fr,1,4.650000E+00,6.057420E+00,4.343683E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +2004016,fr,1,3.650000E+00,4.592120E+00,5.250743E+01,1.500000E+01,Active Shallow Crust,2.400027E+02,5.801228E+01,0.000000E+00 +2004061,fr,1,4.050000E+00,4.592120E+00,5.250743E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +2004109,fr,1,4.450000E+00,4.592120E+00,5.250743E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +2004120,fr,1,4.550000E+00,4.592120E+00,5.250743E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +2004483,fr,1,3.550000E+00,3.499710E+00,4.295378E+01,5.000000E+00,Active Shallow Crust,2.400115E+02,5.799792E+01,0.000000E+00 +2004504,fr,1,3.750000E+00,3.499710E+00,4.295378E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +2004529,fr,1,3.950000E+00,3.499710E+00,4.295378E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +2004960,fr,5,3.550000E+00,5.515550E+00,4.350120E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999268E+01,0.000000E+00 +2004964,fr,1,3.550000E+00,5.515550E+00,4.350120E+01,1.500000E+01,Active Shallow Crust,2.400119E+02,5.799810E+01,0.000000E+00 +2004966,fr,1,3.550000E+00,5.515550E+00,4.350120E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999260E+01,-9.000000E+01 +2004969,fr,1,3.550000E+00,5.515550E+00,4.350120E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999635E+01,0.000000E+00 +2004972,fr,1,3.650000E+00,5.515550E+00,4.350120E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998696E+01,0.000000E+00 +2004975,fr,1,3.650000E+00,5.515550E+00,4.350120E+01,5.000000E+00,Active Shallow Crust,2.400016E+02,5.801210E+01,0.000000E+00 +2004978,fr,1,3.650000E+00,5.515550E+00,4.350120E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998681E+01,-9.000000E+01 +2004984,fr,2,3.750000E+00,5.515550E+00,4.350120E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998838E+01,0.000000E+00 +2004985,fr,1,3.750000E+00,5.515550E+00,4.350120E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998838E+01,0.000000E+00 +2004986,fr,2,3.750000E+00,5.515550E+00,4.350120E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998838E+01,0.000000E+00 +2004989,fr,1,3.750000E+00,5.515550E+00,4.350120E+01,2.750000E+01,Active Shallow Crust,2.400079E+02,5.801717E+01,0.000000E+00 +2004996,fr,2,3.850000E+00,5.515550E+00,4.350120E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +2005001,fr,1,3.850000E+00,5.515550E+00,4.350120E+01,2.750000E+01,Active Shallow Crust,2.400115E+02,5.799699E+01,0.000000E+00 +2005002,fr,1,3.850000E+00,5.515550E+00,4.350120E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,-9.000000E+01 +2005005,fr,1,3.850000E+00,5.515550E+00,4.350120E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999482E+01,0.000000E+00 +2005020,fr,1,4.050000E+00,5.515550E+00,4.350120E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999178E+01,0.000000E+00 +2005033,fr,1,4.150000E+00,5.515550E+00,4.350120E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998900E+01,0.000000E+00 +2005047,fr,1,4.250000E+00,5.515550E+00,4.350120E+01,5.000000E+00,Active Shallow Crust,2.400066E+02,5.799424E+01,0.000000E+00 +2005058,fr,1,4.350000E+00,5.515550E+00,4.350120E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +2005188,fr,1,5.450000E+00,5.515550E+00,4.350120E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +2005305,fr,1,6.350000E+00,5.515547E+00,4.350120E+01,7.567806E+00,Active Shallow Crust,1.288493E+02,8.998982E+01,0.000000E+00 +2005922,fr,1,3.550000E+00,-1.003540E+00,4.444199E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +2006061,fr,1,4.650000E+00,-1.003540E+00,4.444199E+01,5.000000E+00,Active Shallow Crust,1.288917E+02,8.998698E+01,0.000000E+00 +2006400,fr,1,3.550000E+00,3.429310E+00,5.143854E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +2006430,fr,1,3.750000E+00,3.429310E+00,5.143854E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,-9.000000E+01 +2006448,fr,1,3.950000E+00,3.429310E+00,5.143854E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +2006472,fr,1,4.150000E+00,3.429310E+00,5.143854E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +2006907,fr,1,3.750000E+00,5.765660E+00,4.809611E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.801691E+01,0.000000E+00 +2006912,fr,1,3.750000E+00,5.765660E+00,4.809611E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,-9.000000E+01 +2006929,fr,1,3.950000E+00,5.765660E+00,4.809611E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999150E+01,0.000000E+00 +2006940,fr,1,4.050000E+00,5.765660E+00,4.809611E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998864E+01,0.000000E+00 +2006977,fr,1,4.350000E+00,5.765660E+00,4.809611E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +2007002,fr,1,4.550000E+00,5.765660E+00,4.809611E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +2007360,fr,1,3.550000E+00,-6.567400E-01,4.474780E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +2007432,fr,1,4.150000E+00,-6.567400E-01,4.474780E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2007457,fr,1,4.350000E+00,-6.567400E-01,4.474780E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2007841,fr,1,3.550000E+00,5.470100E+00,5.043834E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998715E+01,0.000000E+00 +2007846,fr,2,3.550000E+00,5.470100E+00,5.043834E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998701E+01,-9.000000E+01 +2007855,fr,1,3.650000E+00,5.470100E+00,5.043834E+01,5.000000E+00,Active Shallow Crust,2.400006E+02,5.801322E+01,0.000000E+00 +2007865,fr,3,3.750000E+00,5.470100E+00,5.043834E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +2007868,fr,1,3.750000E+00,5.470100E+00,5.043834E+01,1.500000E+01,Active Shallow Crust,2.400087E+02,5.801697E+01,0.000000E+00 +2007877,fr,1,3.850000E+00,5.470100E+00,5.043834E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +2007882,fr,1,3.850000E+00,5.470100E+00,5.043834E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999080E+01,-9.000000E+01 +2007888,fr,2,3.950000E+00,5.470100E+00,5.043834E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999190E+01,0.000000E+00 +2007892,fr,1,3.950000E+00,5.470100E+00,5.043834E+01,1.500000E+01,Active Shallow Crust,2.400205E+02,5.800525E+01,0.000000E+00 +2007900,fr,1,4.050000E+00,5.470100E+00,5.043834E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +2007903,fr,1,4.050000E+00,5.470100E+00,5.043834E+01,5.000000E+00,Active Shallow Crust,2.400067E+02,5.800617E+01,0.000000E+00 +2007906,fr,1,4.050000E+00,5.470100E+00,5.043834E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,-9.000000E+01 +2007909,fr,1,4.050000E+00,5.470100E+00,5.043834E+01,5.000000E+00,Active Shallow Crust,1.288894E+02,8.999458E+01,0.000000E+00 +2007911,fr,1,4.050000E+00,5.470100E+00,5.043834E+01,2.750000E+01,Active Shallow Crust,1.288894E+02,8.999458E+01,0.000000E+00 +2007925,fr,1,4.250000E+00,5.470100E+00,5.043834E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999139E+01,0.000000E+00 +2007960,fr,1,4.550000E+00,5.470100E+00,5.043834E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2007972,fr,1,4.650000E+00,5.470100E+00,5.043834E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +2008017,fr,1,4.950000E+00,5.470100E+00,5.043834E+01,5.000000E+00,Active Shallow Crust,1.288882E+02,8.998972E+01,0.000000E+00 +2008321,fr,1,3.550000E+00,6.499090E+00,4.703631E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999313E+01,0.000000E+00 +2008323,fr,1,3.550000E+00,6.499090E+00,4.703631E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799947E+01,0.000000E+00 +2008332,fr,1,3.650000E+00,6.499090E+00,4.703631E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998775E+01,0.000000E+00 +2008335,fr,2,3.650000E+00,6.499090E+00,4.703631E+01,5.000000E+00,Active Shallow Crust,2.400005E+02,5.801280E+01,0.000000E+00 +2008341,fr,2,3.650000E+00,6.499090E+00,4.703631E+01,5.000000E+00,Active Shallow Crust,1.289011E+02,8.996353E+01,0.000000E+00 +2008344,fr,1,3.750000E+00,6.499090E+00,4.703631E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998908E+01,0.000000E+00 +2008345,fr,1,3.750000E+00,6.499090E+00,4.703631E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998908E+01,0.000000E+00 +2008347,fr,2,3.750000E+00,6.499090E+00,4.703631E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801725E+01,0.000000E+00 +2008348,fr,1,3.750000E+00,6.499090E+00,4.703631E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.801725E+01,0.000000E+00 +2008349,fr,1,3.750000E+00,6.499090E+00,4.703631E+01,2.750000E+01,Active Shallow Crust,2.400079E+02,5.801725E+01,0.000000E+00 +2008350,fr,1,3.750000E+00,6.499090E+00,4.703631E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,-9.000000E+01 +2008354,fr,1,3.750000E+00,6.499090E+00,4.703631E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.996750E+01,0.000000E+00 +2008368,fr,1,3.950000E+00,6.499090E+00,4.703631E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +2008369,fr,1,3.950000E+00,6.499090E+00,4.703631E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +2008370,fr,1,3.950000E+00,6.499090E+00,4.703631E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +2008380,fr,2,4.050000E+00,6.499090E+00,4.703631E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998840E+01,0.000000E+00 +2008392,fr,1,4.150000E+00,6.499090E+00,4.703631E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +2008393,fr,1,4.150000E+00,6.499090E+00,4.703631E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +2008429,fr,1,4.450000E+00,6.499090E+00,4.703631E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +2008476,fr,3,4.850000E+00,6.499090E+00,4.703631E+01,5.000000E+00,Active Shallow Crust,3.599992E+02,8.999077E+01,0.000000E+00 +2008492,fr,1,4.950000E+00,6.499090E+00,4.703631E+01,1.500000E+01,Active Shallow Crust,2.400121E+02,5.800462E+01,0.000000E+00 +2008518,fr,1,5.150000E+00,6.499090E+00,4.703631E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,-9.000000E+01 +2008521,fr,1,5.150000E+00,6.499090E+00,4.703631E+01,5.000000E+00,Active Shallow Crust,1.288834E+02,8.999124E+01,0.000000E+00 +2008644,fr,1,6.250000E+00,6.499094E+00,4.703631E+01,6.744814E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2008677,fr,1,6.450000E+00,6.499085E+00,4.703630E+01,8.491219E+00,Active Shallow Crust,1.288368E+02,8.998933E+01,0.000000E+00 +2008800,fr,1,3.550000E+00,2.964410E+00,4.641501E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +2008815,fr,1,3.650000E+00,2.964410E+00,4.641501E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801245E+01,0.000000E+00 +2008818,fr,1,3.650000E+00,2.964410E+00,4.641501E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999060E+01,-9.000000E+01 +2008825,fr,1,3.750000E+00,2.964410E+00,4.641501E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +2008840,fr,1,3.850000E+00,2.964410E+00,4.641501E+01,1.500000E+01,Active Shallow Crust,2.400109E+02,5.799764E+01,0.000000E+00 +2008849,fr,1,3.950000E+00,2.964410E+00,4.641501E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +2008872,fr,1,4.150000E+00,2.964410E+00,4.641501E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +2009320,fr,1,3.850000E+00,3.424120E+00,5.207476E+01,1.500000E+01,Active Shallow Crust,2.400114E+02,5.799837E+01,0.000000E+00 +2009789,fr,1,3.750000E+00,3.433860E+00,4.214125E+01,2.750000E+01,Active Shallow Crust,2.400080E+02,5.801754E+01,0.000000E+00 +2010259,fr,1,3.650000E+00,-5.677840E+00,4.724599E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998766E+01,-9.000000E+01 +2010292,fr,1,3.950000E+00,-5.677840E+00,4.724599E+01,1.500000E+01,Active Shallow Crust,2.400201E+02,5.800439E+01,0.000000E+00 +2011200,fr,1,3.550000E+00,3.034100E-01,4.360848E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2011204,fr,1,3.550000E+00,3.034100E-01,4.360848E+01,1.500000E+01,Active Shallow Crust,2.400119E+02,5.799813E+01,0.000000E+00 +2011212,fr,1,3.650000E+00,3.034100E-01,4.360848E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +2011215,fr,1,3.650000E+00,3.034100E-01,4.360848E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801286E+01,0.000000E+00 +2011221,fr,1,3.650000E+00,3.034100E-01,4.360848E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996350E+01,0.000000E+00 +2011278,fr,1,4.150000E+00,3.034100E-01,4.360848E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,-9.000000E+01 +2011321,fr,1,4.550000E+00,3.034100E-01,4.360848E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2011334,fr,1,4.650000E+00,3.034100E-01,4.360848E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2011680,fr,1,3.550000E+00,8.884970E+00,5.046500E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998716E+01,0.000000E+00 +2011681,fr,1,3.550000E+00,8.884970E+00,5.046500E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998716E+01,0.000000E+00 +2011704,fr,1,3.750000E+00,8.884970E+00,5.046500E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +2011801,fr,1,4.550000E+00,8.884970E+00,5.046500E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999188E+01,0.000000E+00 +2012172,fr,1,3.650000E+00,-4.635820E+00,4.900366E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998820E+01,0.000000E+00 +2012265,fr,1,4.350000E+00,-4.635820E+00,4.900366E+01,5.000000E+00,Active Shallow Crust,1.288980E+02,8.998264E+01,0.000000E+00 +2012640,fr,4,3.550000E+00,6.817940E+00,4.564580E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999295E+01,0.000000E+00 +2012643,fr,1,3.550000E+00,6.817940E+00,4.564580E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799807E+01,0.000000E+00 +2012664,fr,1,3.750000E+00,6.817940E+00,4.564580E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998880E+01,0.000000E+00 +2012676,fr,1,3.850000E+00,6.817940E+00,4.564580E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2012679,fr,1,3.850000E+00,6.817940E+00,4.564580E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.799736E+01,0.000000E+00 +2012684,fr,1,3.850000E+00,6.817940E+00,4.564580E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +2012692,fr,1,3.950000E+00,6.817940E+00,4.564580E+01,1.500000E+01,Active Shallow Crust,2.400190E+02,5.800481E+01,0.000000E+00 +2012733,fr,1,4.250000E+00,6.817940E+00,4.564580E+01,5.000000E+00,Active Shallow Crust,1.288946E+02,8.998091E+01,0.000000E+00 +2012761,fr,1,4.550000E+00,6.817940E+00,4.564580E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999108E+01,0.000000E+00 +2012986,fr,1,6.350000E+00,6.817940E+00,4.564580E+01,1.500000E+01,Active Shallow Crust,1.288454E+02,8.999110E+01,0.000000E+00 +2013141,fr,1,3.650000E+00,7.621000E-01,4.486856E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.996349E+01,0.000000E+00 +2013144,fr,1,3.750000E+00,7.621000E-01,4.486856E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2013145,fr,1,3.750000E+00,7.621000E-01,4.486856E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2013240,fr,1,4.550000E+00,7.621000E-01,4.486856E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +2014080,fr,1,3.550000E+00,5.628740E+00,4.756801E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999319E+01,0.000000E+00 +2014086,fr,1,3.550000E+00,5.628740E+00,4.756801E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999312E+01,-9.000000E+01 +2014104,fr,1,3.750000E+00,5.628740E+00,4.756801E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998919E+01,0.000000E+00 +2014116,fr,1,3.850000E+00,5.628740E+00,4.756801E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +2014122,fr,1,3.850000E+00,5.628740E+00,4.756801E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,-9.000000E+01 +2014134,fr,1,3.950000E+00,5.628740E+00,4.756801E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999132E+01,-9.000000E+01 +2014142,fr,1,4.050000E+00,5.628740E+00,4.756801E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998852E+01,0.000000E+00 +2014164,fr,1,4.250000E+00,5.628740E+00,4.756801E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +2014194,fr,1,4.450000E+00,5.628740E+00,4.756801E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,-9.000000E+01 +2014214,fr,1,4.650000E+00,5.628740E+00,4.756801E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +2014332,fr,1,5.650000E+00,5.628740E+00,4.756801E+01,5.000000E+00,Active Shallow Crust,3.599997E+02,8.999030E+01,0.000000E+00 +2014578,fr,1,3.650000E+00,2.396580E+00,5.218396E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998885E+01,-9.000000E+01 +2014608,fr,1,3.950000E+00,2.396580E+00,5.218396E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +2014620,fr,1,4.050000E+00,2.396580E+00,5.218396E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +2014632,fr,1,4.150000E+00,2.396580E+00,5.218396E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +2014670,fr,1,4.450000E+00,2.396580E+00,5.218396E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2015040,fr,1,3.550000E+00,-1.242900E-01,4.802905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2015049,fr,1,3.550000E+00,-1.242900E-01,4.802905E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999378E+01,0.000000E+00 +2015052,fr,1,3.650000E+00,-1.242900E-01,4.802905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2015073,fr,1,3.750000E+00,-1.242900E-01,4.802905E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.996735E+01,0.000000E+00 +2015100,fr,1,4.050000E+00,-1.242900E-01,4.802905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2015107,fr,1,4.050000E+00,-1.242900E-01,4.802905E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +2015161,fr,1,4.550000E+00,-1.242900E-01,4.802905E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2015170,fr,1,4.550000E+00,-1.242900E-01,4.802905E+01,1.500000E+01,Active Shallow Crust,1.288935E+02,8.998579E+01,0.000000E+00 +2015520,fr,3,3.550000E+00,5.698710E+00,5.046829E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998716E+01,0.000000E+00 +2015521,fr,2,3.550000E+00,5.698710E+00,5.046829E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998716E+01,0.000000E+00 +2015528,fr,2,3.550000E+00,5.698710E+00,5.046829E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998701E+01,-9.000000E+01 +2015530,fr,1,3.550000E+00,5.698710E+00,5.046829E+01,1.500000E+01,Active Shallow Crust,1.288959E+02,8.999358E+01,0.000000E+00 +2015533,fr,1,3.650000E+00,5.698710E+00,5.046829E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +2015536,fr,1,3.650000E+00,5.698710E+00,5.046829E+01,1.500000E+01,Active Shallow Crust,2.400006E+02,5.801365E+01,0.000000E+00 +2015541,fr,1,3.650000E+00,5.698710E+00,5.046829E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.996304E+01,0.000000E+00 +2015544,fr,1,3.750000E+00,5.698710E+00,5.046829E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +2015545,fr,3,3.750000E+00,5.698710E+00,5.046829E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +2015551,fr,1,3.750000E+00,5.698710E+00,5.046829E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +2015553,fr,1,3.750000E+00,5.698710E+00,5.046829E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.996756E+01,0.000000E+00 +2015556,fr,1,3.850000E+00,5.698710E+00,5.046829E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +2015568,fr,2,3.950000E+00,5.698710E+00,5.046829E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999190E+01,0.000000E+00 +2015575,fr,1,3.950000E+00,5.698710E+00,5.046829E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999181E+01,-9.000000E+01 +2015583,fr,1,4.050000E+00,5.698710E+00,5.046829E+01,5.000000E+00,Active Shallow Crust,2.400063E+02,5.800642E+01,0.000000E+00 +2015596,fr,1,4.150000E+00,5.698710E+00,5.046829E+01,1.500000E+01,Active Shallow Crust,2.400091E+02,5.799738E+01,0.000000E+00 +2015601,fr,1,4.150000E+00,5.698710E+00,5.046829E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.999357E+01,0.000000E+00 +2015605,fr,2,4.250000E+00,5.698710E+00,5.046829E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999140E+01,0.000000E+00 +2015628,fr,1,4.450000E+00,5.698710E+00,5.046829E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999089E+01,0.000000E+00 +2015640,fr,1,4.550000E+00,5.698710E+00,5.046829E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2015677,fr,1,4.850000E+00,5.698710E+00,5.046829E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2015820,fr,1,6.050000E+00,5.698711E+00,5.046829E+01,5.357596E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2016483,fr,1,3.550000E+00,-3.064350E+00,4.711459E+01,5.000000E+00,Active Shallow Crust,2.400128E+02,5.799800E+01,0.000000E+00 +2016492,fr,1,3.650000E+00,-3.064350E+00,4.711459E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +2016504,fr,1,3.750000E+00,-3.064350E+00,4.711459E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +2016505,fr,1,3.750000E+00,-3.064350E+00,4.711459E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +2016960,fr,4,3.550000E+00,3.393900E-01,4.292988E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2016961,fr,1,3.550000E+00,3.393900E-01,4.292988E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2016963,fr,2,3.550000E+00,3.393900E-01,4.292988E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799816E+01,0.000000E+00 +2016967,fr,1,3.550000E+00,3.393900E-01,4.292988E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,-9.000000E+01 +2016968,fr,1,3.550000E+00,3.393900E-01,4.292988E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,-9.000000E+01 +2016969,fr,2,3.550000E+00,3.393900E-01,4.292988E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999377E+01,0.000000E+00 +2016972,fr,5,3.650000E+00,3.393900E-01,4.292988E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2016974,fr,1,3.650000E+00,3.393900E-01,4.292988E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2016975,fr,1,3.650000E+00,3.393900E-01,4.292988E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801279E+01,0.000000E+00 +2016976,fr,1,3.650000E+00,3.393900E-01,4.292988E+01,1.500000E+01,Active Shallow Crust,2.400007E+02,5.801279E+01,0.000000E+00 +2016978,fr,1,3.650000E+00,3.393900E-01,4.292988E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +2016979,fr,1,3.650000E+00,3.393900E-01,4.292988E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +2016984,fr,2,3.750000E+00,3.393900E-01,4.292988E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2016986,fr,1,3.750000E+00,3.393900E-01,4.292988E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2016987,fr,1,3.750000E+00,3.393900E-01,4.292988E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801750E+01,0.000000E+00 +2016988,fr,1,3.750000E+00,3.393900E-01,4.292988E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.801750E+01,0.000000E+00 +2016990,fr,1,3.750000E+00,3.393900E-01,4.292988E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +2016993,fr,1,3.750000E+00,3.393900E-01,4.292988E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.996732E+01,0.000000E+00 +2016996,fr,2,3.850000E+00,3.393900E-01,4.292988E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2016997,fr,2,3.850000E+00,3.393900E-01,4.292988E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2016999,fr,1,3.850000E+00,3.393900E-01,4.292988E+01,5.000000E+00,Active Shallow Crust,2.400103E+02,5.799775E+01,0.000000E+00 +2017002,fr,1,3.850000E+00,3.393900E-01,4.292988E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +2017005,fr,1,3.850000E+00,3.393900E-01,4.292988E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999380E+01,0.000000E+00 +2017008,fr,3,3.950000E+00,3.393900E-01,4.292988E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2017014,fr,1,3.950000E+00,3.393900E-01,4.292988E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +2017020,fr,3,4.050000E+00,3.393900E-01,4.292988E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2017021,fr,1,4.050000E+00,3.393900E-01,4.292988E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2017026,fr,1,4.050000E+00,3.393900E-01,4.292988E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +2017032,fr,1,4.150000E+00,3.393900E-01,4.292988E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +2017044,fr,1,4.250000E+00,3.393900E-01,4.292988E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +2017050,fr,2,4.250000E+00,3.393900E-01,4.292988E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +2017068,fr,4,4.450000E+00,3.393900E-01,4.292988E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2017078,fr,1,4.450000E+00,3.393900E-01,4.292988E+01,1.500000E+01,Active Shallow Crust,1.288930E+02,8.999370E+01,0.000000E+00 +2017080,fr,1,4.550000E+00,3.393900E-01,4.292988E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2017085,fr,1,4.550000E+00,3.393900E-01,4.292988E+01,2.750000E+01,Active Shallow Crust,2.400083E+02,5.799717E+01,0.000000E+00 +2017106,fr,1,4.750000E+00,3.393900E-01,4.292988E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2017107,fr,1,4.750000E+00,3.393900E-01,4.292988E+01,5.000000E+00,Active Shallow Crust,2.400062E+02,5.800428E+01,0.000000E+00 +2017116,fr,2,4.850000E+00,3.393900E-01,4.292988E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2017117,fr,1,4.850000E+00,3.393900E-01,4.292988E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2017164,fr,1,5.250000E+00,3.393900E-01,4.292988E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2017200,fr,1,5.550000E+00,3.393900E-01,4.292988E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2017203,fr,1,5.550000E+00,3.393900E-01,4.292988E+01,5.000000E+00,Active Shallow Crust,2.400260E+02,5.800191E+01,0.000000E+00 +2017440,fr,3,3.550000E+00,6.576550E+00,4.652869E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999306E+01,0.000000E+00 +2017442,fr,1,3.550000E+00,6.576550E+00,4.652869E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999306E+01,0.000000E+00 +2017443,fr,1,3.550000E+00,6.576550E+00,4.652869E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799733E+01,0.000000E+00 +2017446,fr,1,3.550000E+00,6.576550E+00,4.652869E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999298E+01,-9.000000E+01 +2017447,fr,1,3.550000E+00,6.576550E+00,4.652869E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999298E+01,-9.000000E+01 +2017449,fr,1,3.550000E+00,6.576550E+00,4.652869E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.999306E+01,0.000000E+00 +2017453,fr,2,3.650000E+00,6.576550E+00,4.652869E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998763E+01,0.000000E+00 +2017454,fr,3,3.650000E+00,6.576550E+00,4.652869E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998763E+01,0.000000E+00 +2017459,fr,1,3.650000E+00,6.576550E+00,4.652869E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998749E+01,-9.000000E+01 +2017460,fr,1,3.650000E+00,6.576550E+00,4.652869E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998749E+01,-9.000000E+01 +2017461,fr,1,3.650000E+00,6.576550E+00,4.652869E+01,5.000000E+00,Active Shallow Crust,1.288999E+02,8.996352E+01,0.000000E+00 +2017463,fr,1,3.650000E+00,6.576550E+00,4.652869E+01,2.750000E+01,Active Shallow Crust,1.288999E+02,8.996352E+01,0.000000E+00 +2017464,fr,4,3.750000E+00,6.576550E+00,4.652869E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +2017467,fr,1,3.750000E+00,6.576550E+00,4.652869E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.801702E+01,0.000000E+00 +2017473,fr,1,3.750000E+00,6.576550E+00,4.652869E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.996749E+01,0.000000E+00 +2017476,fr,6,3.850000E+00,6.576550E+00,4.652869E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2017478,fr,2,3.850000E+00,6.576550E+00,4.652869E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2017479,fr,1,3.850000E+00,6.576550E+00,4.652869E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799858E+01,0.000000E+00 +2017480,fr,1,3.850000E+00,6.576550E+00,4.652869E+01,1.500000E+01,Active Shallow Crust,2.400107E+02,5.799858E+01,0.000000E+00 +2017489,fr,1,3.950000E+00,6.576550E+00,4.652869E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999124E+01,0.000000E+00 +2017491,fr,1,3.950000E+00,6.576550E+00,4.652869E+01,5.000000E+00,Active Shallow Crust,2.400191E+02,5.800495E+01,0.000000E+00 +2017494,fr,2,3.950000E+00,6.576550E+00,4.652869E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999114E+01,-9.000000E+01 +2017497,fr,1,3.950000E+00,6.576550E+00,4.652869E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.999343E+01,0.000000E+00 +2017500,fr,2,4.050000E+00,6.576550E+00,4.652869E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998830E+01,0.000000E+00 +2017504,fr,1,4.050000E+00,6.576550E+00,4.652869E+01,1.500000E+01,Active Shallow Crust,2.400061E+02,5.800598E+01,0.000000E+00 +2017515,fr,1,4.150000E+00,6.576550E+00,4.652869E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799709E+01,0.000000E+00 +2017519,fr,1,4.150000E+00,6.576550E+00,4.652869E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998945E+01,-9.000000E+01 +2017524,fr,1,4.250000E+00,6.576550E+00,4.652869E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +2017527,fr,2,4.250000E+00,6.576550E+00,4.652869E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.799408E+01,0.000000E+00 +2017536,fr,2,4.350000E+00,6.576550E+00,4.652869E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +2017549,fr,2,4.450000E+00,6.576550E+00,4.652869E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +2017560,fr,2,4.550000E+00,6.576550E+00,4.652869E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998903E+01,0.000000E+00 +2017584,fr,1,4.750000E+00,6.576550E+00,4.652869E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +2017597,fr,1,4.850000E+00,6.576550E+00,4.652869E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +2017608,fr,1,4.950000E+00,6.576550E+00,4.652869E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +2017611,fr,1,4.950000E+00,6.576550E+00,4.652869E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.800439E+01,0.000000E+00 +2017704,fr,1,5.750000E+00,6.576550E+00,4.652869E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2017713,fr,1,5.750000E+00,6.576550E+00,4.652869E+01,5.000000E+00,Active Shallow Crust,1.288739E+02,8.998849E+01,0.000000E+00 +2017921,fr,1,3.550000E+00,1.788000E+00,4.427254E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +2017932,fr,1,3.650000E+00,1.788000E+00,4.427254E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +2017945,fr,1,3.750000E+00,1.788000E+00,4.427254E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2018028,fr,1,4.450000E+00,1.788000E+00,4.427254E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2018412,fr,1,3.650000E+00,3.566910E+00,4.376128E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +2018460,fr,1,4.050000E+00,3.566910E+00,4.376128E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +2018484,fr,1,4.250000E+00,3.566910E+00,4.376128E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +2018533,fr,1,4.650000E+00,3.566910E+00,4.376128E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +2019366,fr,1,3.550000E+00,3.768900E-01,4.524357E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,-9.000000E+01 +2019420,fr,1,4.050000E+00,3.768900E-01,4.524357E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2019661,fr,1,6.050000E+00,3.768900E-01,4.524357E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +2019841,fr,2,3.550000E+00,7.409460E+00,4.373084E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999271E+01,0.000000E+00 +2019849,fr,1,3.550000E+00,7.409460E+00,4.373084E+01,5.000000E+00,Active Shallow Crust,1.288977E+02,8.999271E+01,0.000000E+00 +2019851,fr,1,3.550000E+00,7.409460E+00,4.373084E+01,2.750000E+01,Active Shallow Crust,1.288977E+02,8.999271E+01,0.000000E+00 +2019852,fr,2,3.650000E+00,7.409460E+00,4.373084E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998701E+01,0.000000E+00 +2019855,fr,1,3.650000E+00,7.409460E+00,4.373084E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801323E+01,0.000000E+00 +2019856,fr,1,3.650000E+00,7.409460E+00,4.373084E+01,1.500000E+01,Active Shallow Crust,2.400012E+02,5.801323E+01,0.000000E+00 +2019861,fr,1,3.650000E+00,7.409460E+00,4.373084E+01,5.000000E+00,Active Shallow Crust,1.289006E+02,8.996347E+01,0.000000E+00 +2019862,fr,1,3.650000E+00,7.409460E+00,4.373084E+01,1.500000E+01,Active Shallow Crust,1.289006E+02,8.996347E+01,0.000000E+00 +2019864,fr,1,3.750000E+00,7.409460E+00,4.373084E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +2019876,fr,1,3.850000E+00,7.409460E+00,4.373084E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2019877,fr,1,3.850000E+00,7.409460E+00,4.373084E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2019879,fr,1,3.850000E+00,7.409460E+00,4.373084E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799747E+01,0.000000E+00 +2019886,fr,1,3.850000E+00,7.409460E+00,4.373084E+01,1.500000E+01,Active Shallow Crust,1.288957E+02,8.999484E+01,0.000000E+00 +2019888,fr,1,3.950000E+00,7.409460E+00,4.373084E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +2019900,fr,1,4.050000E+00,7.409460E+00,4.373084E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999181E+01,0.000000E+00 +2019911,fr,1,4.050000E+00,7.409460E+00,4.373084E+01,2.750000E+01,Active Shallow Crust,1.288900E+02,8.999385E+01,0.000000E+00 +2019912,fr,1,4.150000E+00,7.409460E+00,4.373084E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +2019914,fr,1,4.150000E+00,7.409460E+00,4.373084E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +2019918,fr,1,4.150000E+00,7.409460E+00,4.373084E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,-9.000000E+01 +2019921,fr,1,4.150000E+00,7.409460E+00,4.373084E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.999452E+01,0.000000E+00 +2019931,fr,2,4.250000E+00,7.409460E+00,4.373084E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,-9.000000E+01 +2019938,fr,1,4.350000E+00,7.409460E+00,4.373084E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +2019939,fr,1,4.350000E+00,7.409460E+00,4.373084E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799582E+01,0.000000E+00 +2019942,fr,1,4.350000E+00,7.409460E+00,4.373084E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999120E+01,-9.000000E+01 +2019948,fr,2,4.450000E+00,7.409460E+00,4.373084E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +2019949,fr,1,4.450000E+00,7.409460E+00,4.373084E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +2020081,fr,1,5.550000E+00,7.409460E+00,4.373084E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +2020320,fr,1,3.550000E+00,-1.924100E-01,4.451721E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +2020363,fr,1,3.850000E+00,-1.924100E-01,4.451721E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +2020368,fr,1,3.950000E+00,-1.924100E-01,4.451721E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2020824,fr,1,3.750000E+00,4.009900E-01,5.004416E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2020873,fr,1,4.150000E+00,4.009900E-01,5.004416E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2020887,fr,1,4.250000E+00,4.009900E-01,5.004416E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799419E+01,0.000000E+00 +2020933,fr,1,4.650000E+00,4.009900E-01,5.004416E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2021284,fr,2,3.550000E+00,2.495850E+00,5.000034E+01,1.500000E+01,Active Shallow Crust,2.400125E+02,5.799782E+01,0.000000E+00 +2021293,fr,1,3.650000E+00,2.495850E+00,5.000034E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +2021313,fr,1,3.750000E+00,2.495850E+00,5.000034E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.996732E+01,0.000000E+00 +2021316,fr,1,3.850000E+00,2.495850E+00,5.000034E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999082E+01,0.000000E+00 +2021340,fr,1,4.050000E+00,2.495850E+00,5.000034E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999089E+01,0.000000E+00 +2021352,fr,1,4.150000E+00,2.495850E+00,5.000034E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +2021355,fr,1,4.150000E+00,2.495850E+00,5.000034E+01,5.000000E+00,Active Shallow Crust,2.400092E+02,5.799757E+01,0.000000E+00 +2021364,fr,1,4.250000E+00,2.495850E+00,5.000034E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +2021376,fr,1,4.350000E+00,2.495850E+00,5.000034E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +2021760,fr,1,3.550000E+00,-4.224700E-01,4.367698E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2021796,fr,2,3.850000E+00,-4.224700E-01,4.367698E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2021808,fr,1,3.950000E+00,-4.224700E-01,4.367698E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2021832,fr,1,4.150000E+00,-4.224700E-01,4.367698E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2022259,fr,1,3.650000E+00,6.873010E+00,4.974604E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998825E+01,-9.000000E+01 +2022276,fr,2,3.850000E+00,6.873010E+00,4.974604E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +2022771,fr,1,3.950000E+00,6.508920E+00,5.191477E+01,5.000000E+00,Active Shallow Crust,2.400208E+02,5.800512E+01,0.000000E+00 +2022780,fr,1,4.050000E+00,6.508920E+00,5.191477E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +2022817,fr,1,4.350000E+00,6.508920E+00,5.191477E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2024161,fr,1,3.550000E+00,6.069220E+00,4.762479E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999320E+01,0.000000E+00 +2024162,fr,1,3.550000E+00,6.069220E+00,4.762479E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999320E+01,0.000000E+00 +2024169,fr,1,3.550000E+00,6.069220E+00,4.762479E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.999320E+01,0.000000E+00 +2024178,fr,1,3.650000E+00,6.069220E+00,4.762479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998775E+01,-9.000000E+01 +2024182,fr,1,3.650000E+00,6.069220E+00,4.762479E+01,1.500000E+01,Active Shallow Crust,1.288994E+02,8.996355E+01,0.000000E+00 +2024184,fr,1,3.750000E+00,6.069220E+00,4.762479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +2024187,fr,1,3.750000E+00,6.069220E+00,4.762479E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.801763E+01,0.000000E+00 +2024193,fr,1,3.750000E+00,6.069220E+00,4.762479E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.996696E+01,0.000000E+00 +2024196,fr,2,3.850000E+00,6.069220E+00,4.762479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +2024204,fr,1,3.850000E+00,6.069220E+00,4.762479E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,-9.000000E+01 +2024220,fr,1,4.050000E+00,6.069220E+00,4.762479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998853E+01,0.000000E+00 +2024232,fr,2,4.150000E+00,6.069220E+00,4.762479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +2024256,fr,1,4.350000E+00,6.069220E+00,4.762479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +2024268,fr,1,4.450000E+00,6.069220E+00,4.762479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +2024281,fr,1,4.550000E+00,6.069220E+00,4.762479E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +2024316,fr,1,4.850000E+00,6.069220E+00,4.762479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +2024640,fr,2,3.550000E+00,5.381240E+00,5.091856E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998728E+01,0.000000E+00 +2024652,fr,2,3.650000E+00,5.381240E+00,5.091856E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998867E+01,0.000000E+00 +2024657,fr,1,3.650000E+00,5.381240E+00,5.091856E+01,2.750000E+01,Active Shallow Crust,2.400016E+02,5.801260E+01,0.000000E+00 +2024659,fr,1,3.650000E+00,5.381240E+00,5.091856E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998854E+01,-9.000000E+01 +2024662,fr,1,3.650000E+00,5.381240E+00,5.091856E+01,1.500000E+01,Active Shallow Crust,1.288997E+02,8.996361E+01,0.000000E+00 +2024664,fr,1,3.750000E+00,5.381240E+00,5.091856E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +2024672,fr,1,3.750000E+00,5.381240E+00,5.091856E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,-9.000000E+01 +2024676,fr,1,3.850000E+00,5.381240E+00,5.091856E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +2024686,fr,1,3.850000E+00,5.381240E+00,5.091856E+01,1.500000E+01,Active Shallow Crust,1.288959E+02,8.999325E+01,0.000000E+00 +2024697,fr,1,3.950000E+00,5.381240E+00,5.091856E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.999398E+01,0.000000E+00 +2024700,fr,1,4.050000E+00,5.381240E+00,5.091856E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +2024712,fr,1,4.150000E+00,5.381240E+00,5.091856E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +2024724,fr,1,4.250000E+00,5.381240E+00,5.091856E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998864E+01,0.000000E+00 +2024755,fr,1,4.450000E+00,5.381240E+00,5.091856E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,-9.000000E+01 +2024874,fr,1,5.450000E+00,5.381240E+00,5.091856E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,-9.000000E+01 +2025156,fr,1,3.850000E+00,3.719150E+00,4.704459E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +2025174,fr,1,3.950000E+00,3.719150E+00,4.704459E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,-9.000000E+01 +2025180,fr,1,4.050000E+00,3.719150E+00,4.704459E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +2025231,fr,1,4.450000E+00,3.719150E+00,4.704459E+01,5.000000E+00,Active Shallow Crust,2.400055E+02,5.799474E+01,0.000000E+00 +2025600,fr,1,3.550000E+00,6.220440E+00,5.151511E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998745E+01,0.000000E+00 +2025601,fr,1,3.550000E+00,6.220440E+00,5.151511E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998745E+01,0.000000E+00 +2025602,fr,1,3.550000E+00,6.220440E+00,5.151511E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998745E+01,0.000000E+00 +2025612,fr,1,3.650000E+00,6.220440E+00,5.151511E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +2025618,fr,1,3.650000E+00,6.220440E+00,5.151511E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,-9.000000E+01 +2025625,fr,1,3.750000E+00,6.220440E+00,5.151511E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2025649,fr,1,3.950000E+00,6.220440E+00,5.151511E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998812E+01,0.000000E+00 +2025667,fr,1,4.050000E+00,6.220440E+00,5.151511E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998929E+01,-9.000000E+01 +2025684,fr,1,4.250000E+00,6.220440E+00,5.151511E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +2025686,fr,1,4.250000E+00,6.220440E+00,5.151511E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +2026560,fr,2,3.550000E+00,6.035020E+00,4.502472E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999287E+01,0.000000E+00 +2026573,fr,1,3.650000E+00,6.035020E+00,4.502472E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998730E+01,0.000000E+00 +2026574,fr,1,3.650000E+00,6.035020E+00,4.502472E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998730E+01,0.000000E+00 +2026581,fr,1,3.650000E+00,6.035020E+00,4.502472E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.996349E+01,0.000000E+00 +2026582,fr,1,3.650000E+00,6.035020E+00,4.502472E+01,1.500000E+01,Active Shallow Crust,1.289003E+02,8.996349E+01,0.000000E+00 +2026584,fr,3,3.750000E+00,6.035020E+00,4.502472E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998868E+01,0.000000E+00 +2026586,fr,1,3.750000E+00,6.035020E+00,4.502472E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998868E+01,0.000000E+00 +2026596,fr,2,3.850000E+00,6.035020E+00,4.502472E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2026597,fr,1,3.850000E+00,6.035020E+00,4.502472E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2026608,fr,2,3.950000E+00,6.035020E+00,4.502472E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +2026620,fr,1,4.050000E+00,6.035020E+00,4.502472E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999198E+01,0.000000E+00 +2026622,fr,1,4.050000E+00,6.035020E+00,4.502472E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999198E+01,0.000000E+00 +2026628,fr,1,4.050000E+00,6.035020E+00,4.502472E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999189E+01,-9.000000E+01 +2026631,fr,1,4.050000E+00,6.035020E+00,4.502472E+01,2.750000E+01,Active Shallow Crust,1.288903E+02,8.999399E+01,0.000000E+00 +2026638,fr,1,4.150000E+00,6.035020E+00,4.502472E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998916E+01,-9.000000E+01 +2026721,fr,1,4.850000E+00,6.035020E+00,4.502472E+01,2.750000E+01,Active Shallow Crust,2.400164E+02,5.800237E+01,0.000000E+00 +2026836,fr,1,5.850000E+00,6.035020E+00,4.502472E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +2027061,fr,1,3.650000E+00,-2.920670E+00,4.699198E+01,5.000000E+00,Active Shallow Crust,1.288999E+02,8.996353E+01,0.000000E+00 +2027124,fr,1,4.250000E+00,-2.920670E+00,4.699198E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +2027148,fr,1,4.450000E+00,-2.920670E+00,4.699198E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2027544,fr,1,3.750000E+00,1.128280E+00,5.227808E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2027616,fr,1,4.350000E+00,1.128280E+00,5.227808E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2027958,fr,1,7.150000E+00,1.128312E+00,5.227808E+01,1.750000E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,-9.000000E+01 +2028036,fr,1,3.850000E+00,3.707930E+00,4.768200E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +2028196,fr,1,5.150000E+00,3.707930E+00,4.768200E+01,1.500000E+01,Active Shallow Crust,2.400204E+02,5.800008E+01,0.000000E+00 +2028482,fr,1,3.550000E+00,1.855580E+00,4.721750E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +2028492,fr,3,3.650000E+00,1.855580E+00,4.721750E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +2028534,fr,1,3.950000E+00,1.855580E+00,4.721750E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,-9.000000E+01 +2028552,fr,1,4.150000E+00,1.855580E+00,4.721750E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +2028631,fr,1,4.750000E+00,1.855580E+00,4.721750E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +2028646,fr,1,4.850000E+00,1.855580E+00,4.721750E+01,1.500000E+01,Active Shallow Crust,1.288923E+02,8.998908E+01,0.000000E+00 +2028672,fr,1,5.150000E+00,1.855580E+00,4.721750E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2028960,fr,4,3.550000E+00,4.461500E+00,5.140321E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998742E+01,0.000000E+00 +2028978,fr,1,3.650000E+00,4.461500E+00,5.140321E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,-9.000000E+01 +2029008,fr,1,3.950000E+00,4.461500E+00,5.140321E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998809E+01,0.000000E+00 +2029056,fr,1,4.350000E+00,4.461500E+00,5.140321E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2029440,fr,1,3.550000E+00,-9.846100E-01,4.252039E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +2029452,fr,3,3.650000E+00,-9.846100E-01,4.252039E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2029458,fr,1,3.650000E+00,-9.846100E-01,4.252039E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,-9.000000E+01 +2029464,fr,1,3.750000E+00,-9.846100E-01,4.252039E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +2029465,fr,1,3.750000E+00,-9.846100E-01,4.252039E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +2029475,fr,1,3.750000E+00,-9.846100E-01,4.252039E+01,2.750000E+01,Active Shallow Crust,1.288970E+02,8.996735E+01,0.000000E+00 +2029488,fr,3,3.950000E+00,-9.846100E-01,4.252039E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2029490,fr,1,3.950000E+00,-9.846100E-01,4.252039E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2029491,fr,1,3.950000E+00,-9.846100E-01,4.252039E+01,5.000000E+00,Active Shallow Crust,2.400192E+02,5.800486E+01,0.000000E+00 +2029558,fr,1,4.450000E+00,-9.846100E-01,4.252039E+01,1.500000E+01,Active Shallow Crust,1.288930E+02,8.999374E+01,0.000000E+00 +2029584,fr,1,4.750000E+00,-9.846100E-01,4.252039E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2029601,fr,1,4.850000E+00,-9.846100E-01,4.252039E+01,2.750000E+01,Active Shallow Crust,2.400156E+02,5.800202E+01,0.000000E+00 +2029608,fr,1,4.950000E+00,-9.846100E-01,4.252039E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2029638,fr,1,5.150000E+00,-9.846100E-01,4.252039E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +2029921,fr,1,3.550000E+00,6.349300E-01,4.900381E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2029938,fr,1,3.650000E+00,6.349300E-01,4.900381E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,-9.000000E+01 +2029944,fr,1,3.750000E+00,6.349300E-01,4.900381E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +2029948,fr,1,3.750000E+00,6.349300E-01,4.900381E+01,1.500000E+01,Active Shallow Crust,2.400087E+02,5.801760E+01,0.000000E+00 +2029956,fr,2,3.850000E+00,6.349300E-01,4.900381E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +2029968,fr,1,3.950000E+00,6.349300E-01,4.900381E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +2029992,fr,1,4.150000E+00,6.349300E-01,4.900381E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +2030004,fr,2,4.250000E+00,6.349300E-01,4.900381E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2030025,fr,1,4.350000E+00,6.349300E-01,4.900381E+01,5.000000E+00,Active Shallow Crust,1.288974E+02,8.998270E+01,0.000000E+00 +2030026,fr,1,4.350000E+00,6.349300E-01,4.900381E+01,1.500000E+01,Active Shallow Crust,1.288974E+02,8.998270E+01,0.000000E+00 +2030040,fr,1,4.550000E+00,6.349300E-01,4.900381E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2030401,fr,1,3.550000E+00,-4.775850E+00,4.871768E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998669E+01,0.000000E+00 +2030406,fr,1,3.550000E+00,-4.775850E+00,4.871768E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999327E+01,-9.000000E+01 +2030424,fr,1,3.750000E+00,-4.775850E+00,4.871768E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +2030442,fr,1,3.850000E+00,-4.775850E+00,4.871768E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999047E+01,-9.000000E+01 +2030472,fr,1,4.150000E+00,-4.775850E+00,4.871768E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2030493,fr,1,4.250000E+00,-4.775850E+00,4.871768E+01,5.000000E+00,Active Shallow Crust,1.288940E+02,8.998103E+01,0.000000E+00 +2030521,fr,1,4.550000E+00,-4.775850E+00,4.871768E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +2030541,fr,1,4.650000E+00,-4.775850E+00,4.871768E+01,5.000000E+00,Active Shallow Crust,1.288904E+02,8.998688E+01,0.000000E+00 +2030577,fr,1,4.950000E+00,-4.775850E+00,4.871768E+01,5.000000E+00,Active Shallow Crust,1.288891E+02,8.998957E+01,0.000000E+00 +2030676,fr,1,5.850000E+00,-4.775850E+00,4.871768E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2031361,fr,2,3.550000E+00,9.689500E-01,5.098276E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2031362,fr,1,3.550000E+00,9.689500E-01,5.098276E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2031370,fr,1,3.550000E+00,9.689500E-01,5.098276E+01,1.500000E+01,Active Shallow Crust,1.288959E+02,8.999365E+01,0.000000E+00 +2031381,fr,1,3.650000E+00,9.689500E-01,5.098276E+01,5.000000E+00,Active Shallow Crust,1.288999E+02,8.996349E+01,0.000000E+00 +2031431,fr,1,4.050000E+00,9.689500E-01,5.098276E+01,2.750000E+01,Active Shallow Crust,1.288898E+02,8.999353E+01,0.000000E+00 +2031444,fr,1,4.250000E+00,9.689500E-01,5.098276E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2031457,fr,1,4.350000E+00,9.689500E-01,5.098276E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +2031480,fr,1,4.550000E+00,9.689500E-01,5.098276E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2031493,fr,1,4.650000E+00,9.689500E-01,5.098276E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2031840,fr,1,3.550000E+00,4.178270E+00,4.451111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999281E+01,0.000000E+00 +2031841,fr,1,3.550000E+00,4.178270E+00,4.451111E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999281E+01,0.000000E+00 +2031882,fr,1,3.850000E+00,4.178270E+00,4.451111E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,-9.000000E+01 +2032328,fr,1,3.550000E+00,-2.047590E+00,4.184348E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998860E+01,-9.000000E+01 +2032368,fr,1,3.950000E+00,-2.047590E+00,4.184348E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +2032449,fr,1,4.550000E+00,-2.047590E+00,4.184348E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.998567E+01,0.000000E+00 +2032801,fr,1,3.550000E+00,3.394480E+00,4.814272E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2032810,fr,1,3.550000E+00,3.394480E+00,4.814272E+01,1.500000E+01,Active Shallow Crust,1.288955E+02,8.999327E+01,0.000000E+00 +2033760,fr,2,3.550000E+00,1.515070E+00,4.303883E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +2033784,fr,1,3.750000E+00,1.515070E+00,4.303883E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2033785,fr,1,3.750000E+00,1.515070E+00,4.303883E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2033796,fr,1,3.850000E+00,1.515070E+00,4.303883E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +2033806,fr,1,3.850000E+00,1.515070E+00,4.303883E+01,1.500000E+01,Active Shallow Crust,1.288957E+02,8.999413E+01,0.000000E+00 +2033856,fr,1,4.350000E+00,1.515070E+00,4.303883E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +2034242,fr,1,3.550000E+00,1.250920E+00,4.179500E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +2034253,fr,2,3.650000E+00,1.250920E+00,4.179500E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +2034276,fr,1,3.850000E+00,1.250920E+00,4.179500E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +2034290,fr,1,3.950000E+00,1.250920E+00,4.179500E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +2034327,fr,1,4.250000E+00,1.250920E+00,4.179500E+01,5.000000E+00,Active Shallow Crust,2.400066E+02,5.799391E+01,0.000000E+00 +2034349,fr,1,4.450000E+00,1.250920E+00,4.179500E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2034409,fr,1,4.950000E+00,1.250920E+00,4.179500E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2034721,fr,1,3.550000E+00,6.392680E+00,4.842961E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999331E+01,0.000000E+00 +2034746,fr,1,3.750000E+00,6.392680E+00,4.842961E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +2034750,fr,2,3.750000E+00,6.392680E+00,4.842961E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998925E+01,-9.000000E+01 +2034780,fr,1,4.050000E+00,6.392680E+00,4.842961E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998871E+01,0.000000E+00 +2034782,fr,1,4.050000E+00,6.392680E+00,4.842961E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998871E+01,0.000000E+00 +2034840,fr,1,4.550000E+00,6.392680E+00,4.842961E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +2034897,fr,1,4.950000E+00,6.392680E+00,4.842961E+01,5.000000E+00,Active Shallow Crust,1.288893E+02,8.998955E+01,0.000000E+00 +2034960,fr,1,5.550000E+00,6.392680E+00,4.842961E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2036644,fr,1,3.550000E+00,-4.230010E+00,4.768134E+01,1.500000E+01,Active Shallow Crust,2.400122E+02,5.799850E+01,0.000000E+00 +2036646,fr,1,3.550000E+00,-4.230010E+00,4.768134E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999313E+01,-9.000000E+01 +2036670,fr,1,3.750000E+00,-4.230010E+00,4.768134E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998909E+01,-9.000000E+01 +2037120,fr,1,3.550000E+00,2.767630E+00,4.297567E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998893E+01,0.000000E+00 +2037121,fr,1,3.550000E+00,2.767630E+00,4.297567E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998893E+01,0.000000E+00 +2037123,fr,2,3.550000E+00,2.767630E+00,4.297567E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799865E+01,0.000000E+00 +2037124,fr,1,3.550000E+00,2.767630E+00,4.297567E+01,1.500000E+01,Active Shallow Crust,2.400119E+02,5.799865E+01,0.000000E+00 +2037132,fr,1,3.650000E+00,2.767630E+00,4.297567E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2037134,fr,1,3.650000E+00,2.767630E+00,4.297567E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2037145,fr,1,3.750000E+00,2.767630E+00,4.297567E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999121E+01,0.000000E+00 +2037154,fr,1,3.750000E+00,2.767630E+00,4.297567E+01,1.500000E+01,Active Shallow Crust,1.288962E+02,8.996743E+01,0.000000E+00 +2037168,fr,3,3.950000E+00,2.767630E+00,4.297567E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999069E+01,0.000000E+00 +2037177,fr,1,3.950000E+00,2.767630E+00,4.297567E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.999418E+01,0.000000E+00 +2037192,fr,1,4.150000E+00,2.767630E+00,4.297567E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +2037324,fr,1,5.250000E+00,2.767630E+00,4.297567E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2038081,fr,1,3.550000E+00,-1.268260E+00,4.152061E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +2038117,fr,1,3.850000E+00,-1.268260E+00,4.152061E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +2038118,fr,1,3.850000E+00,-1.268260E+00,4.152061E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +2038141,fr,1,4.050000E+00,-1.268260E+00,4.152061E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +2038560,fr,1,3.550000E+00,1.093300E-01,4.208616E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2038584,fr,1,3.750000E+00,1.093300E-01,4.208616E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2038665,fr,1,4.350000E+00,1.093300E-01,4.208616E+01,5.000000E+00,Active Shallow Crust,1.288986E+02,8.998276E+01,0.000000E+00 +2039052,fr,1,3.650000E+00,-2.906970E+00,4.243378E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +2039058,fr,1,3.650000E+00,-2.906970E+00,4.243378E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +2039073,fr,1,3.750000E+00,-2.906970E+00,4.243378E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.996742E+01,0.000000E+00 +2039082,fr,1,3.850000E+00,-2.906970E+00,4.243378E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998934E+01,-9.000000E+01 +2039088,fr,1,3.950000E+00,-2.906970E+00,4.243378E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999061E+01,0.000000E+00 +2039106,fr,1,4.050000E+00,-2.906970E+00,4.243378E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,-9.000000E+01 +2039170,fr,1,4.550000E+00,-2.906970E+00,4.243378E+01,1.500000E+01,Active Shallow Crust,1.288948E+02,8.998569E+01,0.000000E+00 +2039184,fr,1,4.750000E+00,-2.906970E+00,4.243378E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +2039520,fr,4,3.550000E+00,2.727500E+00,4.149666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998867E+01,0.000000E+00 +2039523,fr,3,3.550000E+00,2.727500E+00,4.149666E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799812E+01,0.000000E+00 +2039532,fr,7,3.650000E+00,2.727500E+00,4.149666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2039534,fr,1,3.650000E+00,2.727500E+00,4.149666E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2039538,fr,1,3.650000E+00,2.727500E+00,4.149666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,-9.000000E+01 +2039541,fr,1,3.650000E+00,2.727500E+00,4.149666E+01,5.000000E+00,Active Shallow Crust,1.289018E+02,8.996342E+01,0.000000E+00 +2039544,fr,4,3.750000E+00,2.727500E+00,4.149666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +2039545,fr,2,3.750000E+00,2.727500E+00,4.149666E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +2039549,fr,1,3.750000E+00,2.727500E+00,4.149666E+01,2.750000E+01,Active Shallow Crust,2.400084E+02,5.801728E+01,0.000000E+00 +2039550,fr,1,3.750000E+00,2.727500E+00,4.149666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999090E+01,-9.000000E+01 +2039553,fr,1,3.750000E+00,2.727500E+00,4.149666E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.996741E+01,0.000000E+00 +2039554,fr,1,3.750000E+00,2.727500E+00,4.149666E+01,1.500000E+01,Active Shallow Crust,1.288972E+02,8.996741E+01,0.000000E+00 +2039557,fr,1,3.850000E+00,2.727500E+00,4.149666E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +2039560,fr,1,3.850000E+00,2.727500E+00,4.149666E+01,1.500000E+01,Active Shallow Crust,2.400103E+02,5.799750E+01,0.000000E+00 +2039562,fr,1,3.850000E+00,2.727500E+00,4.149666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998918E+01,-9.000000E+01 +2039565,fr,1,3.850000E+00,2.727500E+00,4.149666E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999465E+01,0.000000E+00 +2039568,fr,1,3.950000E+00,2.727500E+00,4.149666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +2039569,fr,1,3.950000E+00,2.727500E+00,4.149666E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +2039580,fr,3,4.050000E+00,2.727500E+00,4.149666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +2039593,fr,1,4.150000E+00,2.727500E+00,4.149666E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +2039604,fr,3,4.250000E+00,2.727500E+00,4.149666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2039628,fr,1,4.450000E+00,2.727500E+00,4.149666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +2039637,fr,1,4.450000E+00,2.727500E+00,4.149666E+01,5.000000E+00,Active Shallow Crust,1.288931E+02,8.999397E+01,0.000000E+00 +2039688,fr,1,4.950000E+00,2.727500E+00,4.149666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2039689,fr,1,4.950000E+00,2.727500E+00,4.149666E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2039748,fr,1,5.450000E+00,2.727500E+00,4.149666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +2040000,fr,2,3.550000E+00,5.482530E+00,4.508500E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999288E+01,0.000000E+00 +2040005,fr,1,3.550000E+00,5.482530E+00,4.508500E+01,2.750000E+01,Active Shallow Crust,2.400122E+02,5.799723E+01,0.000000E+00 +2040006,fr,1,3.550000E+00,5.482530E+00,4.508500E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999280E+01,-9.000000E+01 +2040008,fr,1,3.550000E+00,5.482530E+00,4.508500E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999280E+01,-9.000000E+01 +2040009,fr,1,3.550000E+00,5.482530E+00,4.508500E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.999288E+01,0.000000E+00 +2040012,fr,2,3.650000E+00,5.482530E+00,4.508500E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998731E+01,0.000000E+00 +2040016,fr,1,3.650000E+00,5.482530E+00,4.508500E+01,1.500000E+01,Active Shallow Crust,2.400014E+02,5.801257E+01,0.000000E+00 +2040018,fr,2,3.650000E+00,5.482530E+00,4.508500E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998716E+01,-9.000000E+01 +2040022,fr,1,3.650000E+00,5.482530E+00,4.508500E+01,1.500000E+01,Active Shallow Crust,1.288999E+02,8.996349E+01,0.000000E+00 +2040024,fr,2,3.750000E+00,5.482530E+00,4.508500E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +2040025,fr,1,3.750000E+00,5.482530E+00,4.508500E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +2040029,fr,1,3.750000E+00,5.482530E+00,4.508500E+01,2.750000E+01,Active Shallow Crust,2.400082E+02,5.801703E+01,0.000000E+00 +2040036,fr,4,3.850000E+00,5.482530E+00,4.508500E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +2040041,fr,1,3.850000E+00,5.482530E+00,4.508500E+01,2.750000E+01,Active Shallow Crust,2.400105E+02,5.799734E+01,0.000000E+00 +2040048,fr,2,3.950000E+00,5.482530E+00,4.508500E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999101E+01,0.000000E+00 +2040049,fr,1,3.950000E+00,5.482530E+00,4.508500E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999101E+01,0.000000E+00 +2040051,fr,2,3.950000E+00,5.482530E+00,4.508500E+01,5.000000E+00,Active Shallow Crust,2.400201E+02,5.800449E+01,0.000000E+00 +2040084,fr,1,4.250000E+00,5.482530E+00,4.508500E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +2040085,fr,1,4.250000E+00,5.482530E+00,4.508500E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +2040096,fr,1,4.350000E+00,5.482530E+00,4.508500E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +2040102,fr,1,4.350000E+00,5.482530E+00,4.508500E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999139E+01,-9.000000E+01 +2040114,fr,1,4.450000E+00,5.482530E+00,4.508500E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,-9.000000E+01 +2040117,fr,1,4.450000E+00,5.482530E+00,4.508500E+01,5.000000E+00,Active Shallow Crust,1.288923E+02,8.999368E+01,0.000000E+00 +2040133,fr,1,4.650000E+00,5.482530E+00,4.508500E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2040157,fr,1,4.850000E+00,5.482530E+00,4.508500E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +2040181,fr,1,5.050000E+00,5.482530E+00,4.508500E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +2040960,fr,1,3.550000E+00,2.061500E-01,4.751686E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2040976,fr,1,3.650000E+00,2.061500E-01,4.751686E+01,1.500000E+01,Active Shallow Crust,2.400012E+02,5.801293E+01,0.000000E+00 +2040978,fr,1,3.650000E+00,2.061500E-01,4.751686E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +2040984,fr,2,3.750000E+00,2.061500E-01,4.751686E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2040985,fr,1,3.750000E+00,2.061500E-01,4.751686E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2040987,fr,1,3.750000E+00,2.061500E-01,4.751686E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801757E+01,0.000000E+00 +2041080,fr,2,4.550000E+00,2.061500E-01,4.751686E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2041452,fr,1,3.650000E+00,5.873830E+00,4.180069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999330E+01,0.000000E+00 +2041464,fr,1,3.750000E+00,5.873830E+00,4.180069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998806E+01,0.000000E+00 +2041575,fr,1,4.650000E+00,5.873830E+00,4.180069E+01,5.000000E+00,Active Shallow Crust,2.400094E+02,5.799375E+01,0.000000E+00 +2041620,fr,1,5.050000E+00,5.873830E+00,4.180069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +2041932,fr,1,3.650000E+00,5.625430E+00,4.136295E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999326E+01,0.000000E+00 +2041946,fr,1,3.750000E+00,5.625430E+00,4.136295E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998798E+01,0.000000E+00 +2041947,fr,1,3.750000E+00,5.625430E+00,4.136295E+01,5.000000E+00,Active Shallow Crust,2.400092E+02,5.801675E+01,0.000000E+00 +2041968,fr,1,3.950000E+00,5.625430E+00,4.136295E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +2042070,fr,1,4.750000E+00,5.625430E+00,4.136295E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,-9.000000E+01 +2042400,fr,2,3.550000E+00,5.684570E+00,4.378939E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999272E+01,0.000000E+00 +2042401,fr,1,3.550000E+00,5.684570E+00,4.378939E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999272E+01,0.000000E+00 +2042404,fr,1,3.550000E+00,5.684570E+00,4.378939E+01,1.500000E+01,Active Shallow Crust,2.400115E+02,5.799804E+01,0.000000E+00 +2042410,fr,1,3.550000E+00,5.684570E+00,4.378939E+01,1.500000E+01,Active Shallow Crust,1.288976E+02,8.999272E+01,0.000000E+00 +2042412,fr,2,3.650000E+00,5.684570E+00,4.378939E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998702E+01,0.000000E+00 +2042413,fr,1,3.650000E+00,5.684570E+00,4.378939E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998702E+01,0.000000E+00 +2042419,fr,1,3.650000E+00,5.684570E+00,4.378939E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998688E+01,-9.000000E+01 +2042424,fr,3,3.750000E+00,5.684570E+00,4.378939E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +2042425,fr,1,3.750000E+00,5.684570E+00,4.378939E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +2042427,fr,1,3.750000E+00,5.684570E+00,4.378939E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.801734E+01,0.000000E+00 +2042428,fr,2,3.750000E+00,5.684570E+00,4.378939E+01,1.500000E+01,Active Shallow Crust,2.400078E+02,5.801734E+01,0.000000E+00 +2042433,fr,1,3.750000E+00,5.684570E+00,4.378939E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.996745E+01,0.000000E+00 +2042436,fr,2,3.850000E+00,5.684570E+00,4.378939E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2042437,fr,2,3.850000E+00,5.684570E+00,4.378939E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2042442,fr,1,3.850000E+00,5.684570E+00,4.378939E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,-9.000000E+01 +2042448,fr,2,3.950000E+00,5.684570E+00,4.378939E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +2042451,fr,1,3.950000E+00,5.684570E+00,4.378939E+01,5.000000E+00,Active Shallow Crust,2.400193E+02,5.800523E+01,0.000000E+00 +2042460,fr,2,4.050000E+00,5.684570E+00,4.378939E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999181E+01,0.000000E+00 +2042466,fr,2,4.050000E+00,5.684570E+00,4.378939E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999171E+01,-9.000000E+01 +2042472,fr,1,4.150000E+00,5.684570E+00,4.378939E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998905E+01,0.000000E+00 +2042473,fr,1,4.150000E+00,5.684570E+00,4.378939E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998905E+01,0.000000E+00 +2042476,fr,1,4.150000E+00,5.684570E+00,4.378939E+01,1.500000E+01,Active Shallow Crust,2.400075E+02,5.799784E+01,0.000000E+00 +2042478,fr,1,4.150000E+00,5.684570E+00,4.378939E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998893E+01,-9.000000E+01 +2042484,fr,2,4.250000E+00,5.684570E+00,4.378939E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +2042496,fr,1,4.350000E+00,5.684570E+00,4.378939E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999130E+01,0.000000E+00 +2042508,fr,1,4.450000E+00,5.684570E+00,4.378939E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +2042509,fr,1,4.450000E+00,5.684570E+00,4.378939E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +2042512,fr,1,4.450000E+00,5.684570E+00,4.378939E+01,1.500000E+01,Active Shallow Crust,2.400047E+02,5.799477E+01,0.000000E+00 +2042514,fr,1,4.450000E+00,5.684570E+00,4.378939E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,-9.000000E+01 +2042522,fr,1,4.550000E+00,5.684570E+00,4.378939E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999079E+01,0.000000E+00 +2042532,fr,1,4.650000E+00,5.684570E+00,4.378939E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +2042544,fr,1,4.750000E+00,5.684570E+00,4.378939E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +2042556,fr,2,4.850000E+00,5.684570E+00,4.378939E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +2042581,fr,1,5.050000E+00,5.684570E+00,4.378939E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +2042676,fr,1,5.850000E+00,5.684570E+00,4.378939E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2042931,fr,1,3.950000E+00,4.688150E+00,4.272250E+01,5.000000E+00,Active Shallow Crust,2.400195E+02,5.800541E+01,0.000000E+00 +2042953,fr,1,4.150000E+00,4.688150E+00,4.272250E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998886E+01,0.000000E+00 +2042988,fr,1,4.450000E+00,4.688150E+00,4.272250E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +2043840,fr,1,3.550000E+00,6.412980E+00,4.467623E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999283E+01,0.000000E+00 +2043849,fr,1,3.550000E+00,6.412980E+00,4.467623E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.999283E+01,0.000000E+00 +2043852,fr,3,3.650000E+00,6.412980E+00,4.467623E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998722E+01,0.000000E+00 +2043864,fr,1,3.750000E+00,6.412980E+00,4.467623E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998861E+01,0.000000E+00 +2043865,fr,1,3.750000E+00,6.412980E+00,4.467623E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998861E+01,0.000000E+00 +2043866,fr,1,3.750000E+00,6.412980E+00,4.467623E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998861E+01,0.000000E+00 +2043867,fr,2,3.750000E+00,6.412980E+00,4.467623E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801702E+01,0.000000E+00 +2043876,fr,2,3.850000E+00,6.412980E+00,4.467623E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2043877,fr,1,3.850000E+00,6.412980E+00,4.467623E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2043888,fr,2,3.950000E+00,6.412980E+00,4.467623E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999095E+01,0.000000E+00 +2043889,fr,1,3.950000E+00,6.412980E+00,4.467623E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999095E+01,0.000000E+00 +2043925,fr,1,4.250000E+00,6.412980E+00,4.467623E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +2043932,fr,1,4.250000E+00,6.412980E+00,4.467623E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,-9.000000E+01 +2043948,fr,1,4.450000E+00,6.412980E+00,4.467623E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +2043960,fr,1,4.550000E+00,6.412980E+00,4.467623E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +2043973,fr,1,4.650000E+00,6.412980E+00,4.467623E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +2043998,fr,1,4.850000E+00,6.412980E+00,4.467623E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +2044008,fr,1,4.950000E+00,6.412980E+00,4.467623E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2044009,fr,1,4.950000E+00,6.412980E+00,4.467623E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2044092,fr,1,5.650000E+00,6.412980E+00,4.467623E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +2044333,fr,1,3.650000E+00,5.828300E-01,4.117589E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2044344,fr,1,3.750000E+00,5.828300E-01,4.117589E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2044356,fr,1,3.850000E+00,5.828300E-01,4.117589E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +2044372,fr,1,3.950000E+00,5.828300E-01,4.117589E+01,1.500000E+01,Active Shallow Crust,2.400189E+02,5.800494E+01,0.000000E+00 +2044392,fr,1,4.150000E+00,5.828300E-01,4.117589E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2044429,fr,1,4.450000E+00,5.828300E-01,4.117589E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +2044443,fr,1,4.550000E+00,5.828300E-01,4.117589E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.799709E+01,0.000000E+00 +2044800,fr,1,3.550000E+00,-9.112700E-01,5.036672E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +2044803,fr,1,3.550000E+00,-9.112700E-01,5.036672E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799826E+01,0.000000E+00 +2044813,fr,1,3.650000E+00,-9.112700E-01,5.036672E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2045280,fr,1,3.550000E+00,-9.278700E-01,4.730087E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2045281,fr,1,3.550000E+00,-9.278700E-01,4.730087E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2045292,fr,1,3.650000E+00,-9.278700E-01,4.730087E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2045293,fr,1,3.650000E+00,-9.278700E-01,4.730087E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2045297,fr,1,3.650000E+00,-9.278700E-01,4.730087E+01,2.750000E+01,Active Shallow Crust,2.400011E+02,5.801288E+01,0.000000E+00 +2045316,fr,2,3.850000E+00,-9.278700E-01,4.730087E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +2045329,fr,1,3.950000E+00,-9.278700E-01,4.730087E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2045341,fr,1,4.050000E+00,-9.278700E-01,4.730087E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2045350,fr,1,4.050000E+00,-9.278700E-01,4.730087E+01,1.500000E+01,Active Shallow Crust,1.288904E+02,8.999375E+01,0.000000E+00 +2045352,fr,1,4.150000E+00,-9.278700E-01,4.730087E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2045355,fr,1,4.150000E+00,-9.278700E-01,4.730087E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.799736E+01,0.000000E+00 +2045370,fr,1,4.250000E+00,-9.278700E-01,4.730087E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +2045376,fr,2,4.350000E+00,-9.278700E-01,4.730087E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2045450,fr,1,4.950000E+00,-9.278700E-01,4.730087E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2045484,fr,1,5.250000E+00,-9.278700E-01,4.730087E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2045768,fr,1,3.550000E+00,7.960780E+00,4.949523E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998675E+01,-9.000000E+01 +2045785,fr,1,3.750000E+00,7.960780E+00,4.949523E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +2045787,fr,1,3.750000E+00,7.960780E+00,4.949523E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801752E+01,0.000000E+00 +2045796,fr,1,3.850000E+00,7.960780E+00,4.949523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +2045802,fr,1,3.850000E+00,7.960780E+00,4.949523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,-9.000000E+01 +2045810,fr,1,3.950000E+00,7.960780E+00,4.949523E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999174E+01,0.000000E+00 +2045813,fr,1,3.950000E+00,7.960780E+00,4.949523E+01,2.750000E+01,Active Shallow Crust,2.400195E+02,5.800578E+01,0.000000E+00 +2045817,fr,1,3.950000E+00,7.960780E+00,4.949523E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.999380E+01,0.000000E+00 +2045868,fr,2,4.450000E+00,7.960780E+00,4.949523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +2045913,fr,1,4.750000E+00,7.960780E+00,4.949523E+01,5.000000E+00,Active Shallow Crust,1.288873E+02,8.998835E+01,0.000000E+00 +2046243,fr,1,3.550000E+00,4.239400E+00,5.076096E+01,5.000000E+00,Active Shallow Crust,2.400134E+02,5.799813E+01,0.000000E+00 +2046249,fr,2,3.550000E+00,4.239400E+00,5.076096E+01,5.000000E+00,Active Shallow Crust,1.288953E+02,8.999362E+01,0.000000E+00 +2046253,fr,1,3.650000E+00,4.239400E+00,5.076096E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998863E+01,0.000000E+00 +2046255,fr,1,3.650000E+00,4.239400E+00,5.076096E+01,5.000000E+00,Active Shallow Crust,2.400017E+02,5.801260E+01,0.000000E+00 +2046265,fr,1,3.750000E+00,4.239400E+00,5.076096E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +2046267,fr,1,3.750000E+00,4.239400E+00,5.076096E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.801799E+01,0.000000E+00 +2046270,fr,1,3.750000E+00,4.239400E+00,5.076096E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,-9.000000E+01 +2046277,fr,1,3.850000E+00,4.239400E+00,5.076096E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +2046288,fr,1,3.950000E+00,4.239400E+00,5.076096E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999195E+01,0.000000E+00 +2046289,fr,1,3.950000E+00,4.239400E+00,5.076096E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999195E+01,0.000000E+00 +2046307,fr,1,4.050000E+00,4.239400E+00,5.076096E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998911E+01,-9.000000E+01 +2046325,fr,1,4.250000E+00,4.239400E+00,5.076096E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998860E+01,0.000000E+00 +2046327,fr,1,4.250000E+00,4.239400E+00,5.076096E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799448E+01,0.000000E+00 +2046348,fr,1,4.450000E+00,4.239400E+00,5.076096E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +2046366,fr,1,4.550000E+00,4.239400E+00,5.076096E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,-9.000000E+01 +2046369,fr,1,4.550000E+00,4.239400E+00,5.076096E+01,5.000000E+00,Active Shallow Crust,1.288928E+02,8.998542E+01,0.000000E+00 +2046409,fr,1,4.950000E+00,4.239400E+00,5.076096E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2046517,fr,1,5.850000E+00,4.239400E+00,5.076096E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2046765,fr,1,3.850000E+00,5.880550E+00,4.247625E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999210E+01,0.000000E+00 +2046769,fr,1,3.950000E+00,5.880550E+00,4.247625E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +2047202,fr,1,3.550000E+00,3.963660E+00,5.096601E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +2047212,fr,1,3.650000E+00,3.963660E+00,5.096601E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998868E+01,0.000000E+00 +2047248,fr,1,3.950000E+00,3.963660E+00,5.096601E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2047249,fr,1,3.950000E+00,3.963660E+00,5.096601E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2047273,fr,1,4.150000E+00,3.963660E+00,5.096601E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +2047285,fr,1,4.250000E+00,3.963660E+00,5.096601E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2047286,fr,1,4.250000E+00,3.963660E+00,5.096601E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2047323,fr,1,4.550000E+00,3.963660E+00,5.096601E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799767E+01,0.000000E+00 +2047362,fr,1,4.850000E+00,3.963660E+00,5.096601E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,-9.000000E+01 +2047681,fr,1,3.550000E+00,3.915560E+00,4.539107E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +2047692,fr,1,3.650000E+00,3.915560E+00,4.539107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +2047713,fr,1,3.750000E+00,3.915560E+00,4.539107E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.996720E+01,0.000000E+00 +2047719,fr,1,3.850000E+00,3.915560E+00,4.539107E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799738E+01,0.000000E+00 +2047740,fr,1,4.050000E+00,3.915560E+00,4.539107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2047770,fr,1,4.250000E+00,3.915560E+00,4.539107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,-9.000000E+01 +2047821,fr,1,4.650000E+00,3.915560E+00,4.539107E+01,5.000000E+00,Active Shallow Crust,1.288916E+02,8.998692E+01,0.000000E+00 +2047824,fr,2,4.750000E+00,3.915560E+00,4.539107E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +2048640,fr,10,3.550000E+00,8.495560E+00,4.726299E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998631E+01,0.000000E+00 +2048641,fr,2,3.550000E+00,8.495560E+00,4.726299E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998631E+01,0.000000E+00 +2048642,fr,3,3.550000E+00,8.495560E+00,4.726299E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998631E+01,0.000000E+00 +2048643,fr,1,3.550000E+00,8.495560E+00,4.726299E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799639E+01,0.000000E+00 +2048651,fr,1,3.550000E+00,8.495560E+00,4.726299E+01,2.750000E+01,Active Shallow Crust,1.288970E+02,8.999316E+01,0.000000E+00 +2048652,fr,2,3.650000E+00,8.495560E+00,4.726299E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998780E+01,0.000000E+00 +2048653,fr,2,3.650000E+00,8.495560E+00,4.726299E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998780E+01,0.000000E+00 +2048654,fr,1,3.650000E+00,8.495560E+00,4.726299E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998780E+01,0.000000E+00 +2048655,fr,1,3.650000E+00,8.495560E+00,4.726299E+01,5.000000E+00,Active Shallow Crust,2.400017E+02,5.801305E+01,0.000000E+00 +2048658,fr,1,3.650000E+00,8.495560E+00,4.726299E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998766E+01,-9.000000E+01 +2048664,fr,4,3.750000E+00,8.495560E+00,4.726299E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998913E+01,0.000000E+00 +2048665,fr,2,3.750000E+00,8.495560E+00,4.726299E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998913E+01,0.000000E+00 +2048666,fr,1,3.750000E+00,8.495560E+00,4.726299E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998913E+01,0.000000E+00 +2048667,fr,1,3.750000E+00,8.495560E+00,4.726299E+01,5.000000E+00,Active Shallow Crust,2.400097E+02,5.801699E+01,0.000000E+00 +2048670,fr,1,3.750000E+00,8.495560E+00,4.726299E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998901E+01,-9.000000E+01 +2048679,fr,1,3.850000E+00,8.495560E+00,4.726299E+01,5.000000E+00,Active Shallow Crust,2.400101E+02,5.799881E+01,0.000000E+00 +2048681,fr,1,3.850000E+00,8.495560E+00,4.726299E+01,2.750000E+01,Active Shallow Crust,2.400101E+02,5.799881E+01,0.000000E+00 +2048685,fr,2,3.850000E+00,8.495560E+00,4.726299E+01,5.000000E+00,Active Shallow Crust,1.288937E+02,8.999516E+01,0.000000E+00 +2048686,fr,1,3.850000E+00,8.495560E+00,4.726299E+01,1.500000E+01,Active Shallow Crust,1.288937E+02,8.999516E+01,0.000000E+00 +2048688,fr,2,3.950000E+00,8.495560E+00,4.726299E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999136E+01,0.000000E+00 +2048700,fr,1,4.050000E+00,8.495560E+00,4.726299E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999230E+01,0.000000E+00 +2048701,fr,1,4.050000E+00,8.495560E+00,4.726299E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999230E+01,0.000000E+00 +2048716,fr,1,4.150000E+00,8.495560E+00,4.726299E+01,1.500000E+01,Active Shallow Crust,2.400076E+02,5.799741E+01,0.000000E+00 +2048724,fr,2,4.250000E+00,8.495560E+00,4.726299E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998777E+01,0.000000E+00 +2048734,fr,1,4.250000E+00,8.495560E+00,4.726299E+01,1.500000E+01,Active Shallow Crust,1.288960E+02,8.997978E+01,0.000000E+00 +2048737,fr,1,4.350000E+00,8.495560E+00,4.726299E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +2048749,fr,1,4.450000E+00,8.495560E+00,4.726299E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +2048772,fr,2,4.650000E+00,8.495560E+00,4.726299E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +2048773,fr,1,4.650000E+00,8.495560E+00,4.726299E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +2048778,fr,1,4.650000E+00,8.495560E+00,4.726299E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998829E+01,-9.000000E+01 +2048795,fr,1,4.750000E+00,8.495560E+00,4.726299E+01,2.750000E+01,Active Shallow Crust,1.288879E+02,8.998863E+01,0.000000E+00 +2048827,fr,1,5.050000E+00,8.495560E+00,4.726299E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,-9.000000E+01 +2049132,fr,2,3.650000E+00,8.817060E+00,4.920857E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998826E+01,0.000000E+00 +2049133,fr,1,3.650000E+00,8.817060E+00,4.920857E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998826E+01,0.000000E+00 +2049151,fr,1,3.750000E+00,8.817060E+00,4.920857E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998941E+01,-9.000000E+01 +2049157,fr,1,3.850000E+00,8.817060E+00,4.920857E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999067E+01,0.000000E+00 +2049170,fr,1,3.950000E+00,8.817060E+00,4.920857E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999168E+01,0.000000E+00 +2049174,fr,1,3.950000E+00,8.817060E+00,4.920857E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999159E+01,-9.000000E+01 +2049180,fr,2,4.050000E+00,8.817060E+00,4.920857E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999259E+01,0.000000E+00 +2049198,fr,1,4.150000E+00,8.817060E+00,4.920857E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999332E+01,-9.000000E+01 +2049201,fr,1,4.150000E+00,8.817060E+00,4.920857E+01,5.000000E+00,Active Shallow Crust,1.288983E+02,8.999340E+01,0.000000E+00 +2049206,fr,1,4.250000E+00,8.817060E+00,4.920857E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998823E+01,0.000000E+00 +2049241,fr,1,4.550000E+00,8.817060E+00,4.920857E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999167E+01,0.000000E+00 +2049315,fr,1,5.150000E+00,8.817060E+00,4.920857E+01,5.000000E+00,Active Shallow Crust,2.400210E+02,5.800044E+01,0.000000E+00 +2049600,fr,2,3.550000E+00,8.386970E+00,4.979139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998698E+01,0.000000E+00 +2049601,fr,2,3.550000E+00,8.386970E+00,4.979139E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998698E+01,0.000000E+00 +2049607,fr,1,3.550000E+00,8.386970E+00,4.979139E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998683E+01,-9.000000E+01 +2049612,fr,3,3.650000E+00,8.386970E+00,4.979139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998840E+01,0.000000E+00 +2049613,fr,1,3.650000E+00,8.386970E+00,4.979139E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998840E+01,0.000000E+00 +2049615,fr,1,3.650000E+00,8.386970E+00,4.979139E+01,5.000000E+00,Active Shallow Crust,2.400029E+02,5.801176E+01,0.000000E+00 +2049618,fr,1,3.650000E+00,8.386970E+00,4.979139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998826E+01,-9.000000E+01 +2049624,fr,4,3.750000E+00,8.386970E+00,4.979139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +2049625,fr,1,3.750000E+00,8.386970E+00,4.979139E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +2049630,fr,1,3.750000E+00,8.386970E+00,4.979139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,-9.000000E+01 +2049635,fr,1,3.750000E+00,8.386970E+00,4.979139E+01,2.750000E+01,Active Shallow Crust,1.288980E+02,8.996633E+01,0.000000E+00 +2049636,fr,4,3.850000E+00,8.386970E+00,4.979139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +2049637,fr,1,3.850000E+00,8.386970E+00,4.979139E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +2049639,fr,1,3.850000E+00,8.386970E+00,4.979139E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799776E+01,0.000000E+00 +2049648,fr,4,3.950000E+00,8.386970E+00,4.979139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999178E+01,0.000000E+00 +2049649,fr,1,3.950000E+00,8.386970E+00,4.979139E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999178E+01,0.000000E+00 +2049651,fr,1,3.950000E+00,8.386970E+00,4.979139E+01,5.000000E+00,Active Shallow Crust,2.400211E+02,5.800476E+01,0.000000E+00 +2049652,fr,1,3.950000E+00,8.386970E+00,4.979139E+01,1.500000E+01,Active Shallow Crust,2.400211E+02,5.800476E+01,0.000000E+00 +2049655,fr,1,3.950000E+00,8.386970E+00,4.979139E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999169E+01,-9.000000E+01 +2049661,fr,2,4.050000E+00,8.386970E+00,4.979139E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999268E+01,0.000000E+00 +2049662,fr,1,4.050000E+00,8.386970E+00,4.979139E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999268E+01,0.000000E+00 +2049671,fr,1,4.050000E+00,8.386970E+00,4.979139E+01,2.750000E+01,Active Shallow Crust,1.288902E+02,8.999268E+01,0.000000E+00 +2049674,fr,1,4.150000E+00,8.386970E+00,4.979139E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998695E+01,0.000000E+00 +2049678,fr,1,4.150000E+00,8.386970E+00,4.979139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998680E+01,-9.000000E+01 +2049684,fr,3,4.250000E+00,8.386970E+00,4.979139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998837E+01,0.000000E+00 +2049686,fr,1,4.250000E+00,8.386970E+00,4.979139E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998837E+01,0.000000E+00 +2049690,fr,1,4.250000E+00,8.386970E+00,4.979139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998824E+01,-9.000000E+01 +2049691,fr,1,4.250000E+00,8.386970E+00,4.979139E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998824E+01,-9.000000E+01 +2049696,fr,3,4.350000E+00,8.386970E+00,4.979139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +2049708,fr,1,4.450000E+00,8.386970E+00,4.979139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +2049714,fr,1,4.450000E+00,8.386970E+00,4.979139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,-9.000000E+01 +2049720,fr,1,4.550000E+00,8.386970E+00,4.979139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999177E+01,0.000000E+00 +2049740,fr,1,4.650000E+00,8.386970E+00,4.979139E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998886E+01,-9.000000E+01 +2049867,fr,1,5.750000E+00,8.386970E+00,4.979139E+01,5.000000E+00,Active Shallow Crust,2.400455E+02,5.800019E+01,0.000000E+00 +2049961,fr,1,6.550000E+00,8.386970E+00,4.979139E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2050080,fr,1,3.550000E+00,-2.168630E+00,4.321767E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +2050082,fr,1,3.550000E+00,-2.168630E+00,4.321767E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +2050083,fr,1,3.550000E+00,-2.168630E+00,4.321767E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799833E+01,0.000000E+00 +2050092,fr,1,3.650000E+00,-2.168630E+00,4.321767E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2050094,fr,1,3.650000E+00,-2.168630E+00,4.321767E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2050119,fr,1,3.850000E+00,-2.168630E+00,4.321767E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.799771E+01,0.000000E+00 +2050125,fr,1,3.850000E+00,-2.168630E+00,4.321767E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999350E+01,0.000000E+00 +2050140,fr,1,4.050000E+00,-2.168630E+00,4.321767E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +2050141,fr,2,4.050000E+00,-2.168630E+00,4.321767E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +2050164,fr,1,4.250000E+00,-2.168630E+00,4.321767E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +2050176,fr,1,4.350000E+00,-2.168630E+00,4.321767E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +2050225,fr,1,4.750000E+00,-2.168630E+00,4.321767E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2050560,fr,1,3.550000E+00,-4.353900E-01,5.117936E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +2050569,fr,1,3.550000E+00,-4.353900E-01,5.117936E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999368E+01,0.000000E+00 +2050704,fr,1,4.750000E+00,-4.353900E-01,5.117936E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2050738,fr,1,4.950000E+00,-4.353900E-01,5.117936E+01,1.500000E+01,Active Shallow Crust,1.288879E+02,8.998978E+01,0.000000E+00 +2051040,fr,4,3.550000E+00,6.892120E+00,4.512951E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999289E+01,0.000000E+00 +2051043,fr,2,3.550000E+00,6.892120E+00,4.512951E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799782E+01,0.000000E+00 +2051046,fr,1,3.550000E+00,6.892120E+00,4.512951E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999281E+01,-9.000000E+01 +2051052,fr,2,3.650000E+00,6.892120E+00,4.512951E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998732E+01,0.000000E+00 +2051064,fr,2,3.750000E+00,6.892120E+00,4.512951E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998870E+01,0.000000E+00 +2051076,fr,2,3.850000E+00,6.892120E+00,4.512951E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2051077,fr,1,3.850000E+00,6.892120E+00,4.512951E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2051081,fr,1,3.850000E+00,6.892120E+00,4.512951E+01,2.750000E+01,Active Shallow Crust,2.400113E+02,5.799809E+01,0.000000E+00 +2051084,fr,1,3.850000E+00,6.892120E+00,4.512951E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,-9.000000E+01 +2051091,fr,1,3.950000E+00,6.892120E+00,4.512951E+01,5.000000E+00,Active Shallow Crust,2.400199E+02,5.800475E+01,0.000000E+00 +2051097,fr,1,3.950000E+00,6.892120E+00,4.512951E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.999327E+01,0.000000E+00 +2051100,fr,1,4.050000E+00,6.892120E+00,4.512951E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999200E+01,0.000000E+00 +2051115,fr,1,4.150000E+00,6.892120E+00,4.512951E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799723E+01,0.000000E+00 +2051116,fr,2,4.150000E+00,6.892120E+00,4.512951E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.799726E+01,0.000000E+00 +2051121,fr,1,4.150000E+00,6.892120E+00,4.512951E+01,5.000000E+00,Active Shallow Crust,1.288985E+02,8.999287E+01,0.000000E+00 +2051126,fr,1,4.250000E+00,6.892120E+00,4.512951E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +2051127,fr,1,4.250000E+00,6.892120E+00,4.512951E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.799391E+01,0.000000E+00 +2051135,fr,1,4.250000E+00,6.892120E+00,4.512951E+01,2.750000E+01,Active Shallow Crust,1.288952E+02,8.998090E+01,0.000000E+00 +2051137,fr,1,4.350000E+00,6.892120E+00,4.512951E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998867E+01,0.000000E+00 +2051148,fr,1,4.450000E+00,6.892120E+00,4.512951E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +2051154,fr,1,4.450000E+00,6.892120E+00,4.512951E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,-9.000000E+01 +2051166,fr,1,4.550000E+00,6.892120E+00,4.512951E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999090E+01,-9.000000E+01 +2051184,fr,1,4.750000E+00,6.892120E+00,4.512951E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +2051258,fr,1,5.350000E+00,6.892120E+00,4.512951E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2051520,fr,1,3.550000E+00,-1.384720E+00,4.914346E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2051532,fr,1,3.650000E+00,-1.384720E+00,4.914346E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +2051533,fr,1,3.650000E+00,-1.384720E+00,4.914346E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +2051556,fr,1,3.850000E+00,-1.384720E+00,4.914346E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +2051563,fr,1,3.850000E+00,-1.384720E+00,4.914346E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,-9.000000E+01 +2051568,fr,2,3.950000E+00,-1.384720E+00,4.914346E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +2051604,fr,1,4.250000E+00,-1.384720E+00,4.914346E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2051640,fr,1,4.550000E+00,-1.384720E+00,4.914346E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +2051664,fr,1,4.750000E+00,-1.384720E+00,4.914346E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2051690,fr,1,4.950000E+00,-1.384720E+00,4.914346E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2052480,fr,2,3.550000E+00,8.262700E-01,4.608569E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +2052482,fr,1,3.550000E+00,8.262700E-01,4.608569E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +2052483,fr,1,3.550000E+00,8.262700E-01,4.608569E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799821E+01,0.000000E+00 +2052492,fr,1,3.650000E+00,8.262700E-01,4.608569E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +2052510,fr,1,3.750000E+00,8.262700E-01,4.608569E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,-9.000000E+01 +2052518,fr,1,3.850000E+00,8.262700E-01,4.608569E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2052528,fr,1,3.950000E+00,8.262700E-01,4.608569E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2052540,fr,1,4.050000E+00,8.262700E-01,4.608569E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2052542,fr,1,4.050000E+00,8.262700E-01,4.608569E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2052567,fr,1,4.250000E+00,8.262700E-01,4.608569E+01,5.000000E+00,Active Shallow Crust,2.400075E+02,5.799401E+01,0.000000E+00 +2052624,fr,1,4.750000E+00,8.262700E-01,4.608569E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +2052684,fr,1,5.250000E+00,8.262700E-01,4.608569E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2052972,fr,1,3.650000E+00,2.364510E+00,4.671456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +2052990,fr,1,3.750000E+00,2.364510E+00,4.671456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998889E+01,-9.000000E+01 +2052996,fr,2,3.850000E+00,2.364510E+00,4.671456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +2052997,fr,1,3.850000E+00,2.364510E+00,4.671456E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +2053006,fr,1,3.850000E+00,2.364510E+00,4.671456E+01,1.500000E+01,Active Shallow Crust,1.288954E+02,8.999388E+01,0.000000E+00 +2053044,fr,1,4.250000E+00,2.364510E+00,4.671456E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +2053045,fr,1,4.250000E+00,2.364510E+00,4.671456E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +2053083,fr,1,4.550000E+00,2.364510E+00,4.671456E+01,5.000000E+00,Active Shallow Crust,2.400095E+02,5.799718E+01,0.000000E+00 +2053112,fr,1,4.750000E+00,2.364510E+00,4.671456E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,-9.000000E+01 +2053440,fr,2,3.550000E+00,8.519710E+00,4.968026E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998695E+01,0.000000E+00 +2053442,fr,1,3.550000E+00,8.519710E+00,4.968026E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998695E+01,0.000000E+00 +2053452,fr,3,3.650000E+00,8.519710E+00,4.968026E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998837E+01,0.000000E+00 +2053453,fr,2,3.650000E+00,8.519710E+00,4.968026E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998837E+01,0.000000E+00 +2053459,fr,1,3.650000E+00,8.519710E+00,4.968026E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998824E+01,-9.000000E+01 +2053462,fr,1,3.650000E+00,8.519710E+00,4.968026E+01,1.500000E+01,Active Shallow Crust,1.289007E+02,8.996358E+01,0.000000E+00 +2053464,fr,1,3.750000E+00,8.519710E+00,4.968026E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +2053470,fr,1,3.750000E+00,8.519710E+00,4.968026E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,-9.000000E+01 +2053486,fr,1,3.850000E+00,8.519710E+00,4.968026E+01,1.500000E+01,Active Shallow Crust,1.288971E+02,8.999076E+01,0.000000E+00 +2053489,fr,1,3.950000E+00,8.519710E+00,4.968026E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999177E+01,0.000000E+00 +2053500,fr,3,4.050000E+00,8.519710E+00,4.968026E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999266E+01,0.000000E+00 +2053512,fr,2,4.150000E+00,8.519710E+00,4.968026E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998692E+01,0.000000E+00 +2053522,fr,1,4.150000E+00,8.519710E+00,4.968026E+01,1.500000E+01,Active Shallow Crust,1.288952E+02,8.999673E+01,0.000000E+00 +2053524,fr,1,4.250000E+00,8.519710E+00,4.968026E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998834E+01,0.000000E+00 +2053525,fr,1,4.250000E+00,8.519710E+00,4.968026E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998834E+01,0.000000E+00 +2053548,fr,1,4.450000E+00,8.519710E+00,4.968026E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +2053554,fr,1,4.450000E+00,8.519710E+00,4.968026E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,-9.000000E+01 +2053584,fr,1,4.750000E+00,8.519710E+00,4.968026E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2053815,fr,1,6.650000E+00,8.502048E+00,4.970004E+01,9.065474E+00,Active Shallow Crust,2.401277E+02,5.800076E+01,0.000000E+00 +2053922,fr,1,3.550000E+00,-3.736340E+00,4.868285E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2053926,fr,1,3.550000E+00,-3.736340E+00,4.868285E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,-9.000000E+01 +2053930,fr,1,3.550000E+00,-3.736340E+00,4.868285E+01,1.500000E+01,Active Shallow Crust,1.288966E+02,8.999334E+01,0.000000E+00 +2053944,fr,1,3.750000E+00,-3.736340E+00,4.868285E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +2053968,fr,1,3.950000E+00,-3.736340E+00,4.868285E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +2053974,fr,2,3.950000E+00,-3.736340E+00,4.868285E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998938E+01,-9.000000E+01 +2053992,fr,1,4.150000E+00,-3.736340E+00,4.868285E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2054028,fr,1,4.450000E+00,-3.736340E+00,4.868285E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +2054400,fr,1,3.550000E+00,3.002200E+00,4.167330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998870E+01,0.000000E+00 +2054403,fr,1,3.550000E+00,3.002200E+00,4.167330E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799813E+01,0.000000E+00 +2054404,fr,1,3.550000E+00,3.002200E+00,4.167330E+01,1.500000E+01,Active Shallow Crust,2.400110E+02,5.799813E+01,0.000000E+00 +2054409,fr,1,3.550000E+00,3.002200E+00,4.167330E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999435E+01,0.000000E+00 +2054410,fr,1,3.550000E+00,3.002200E+00,4.167330E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.999435E+01,0.000000E+00 +2054412,fr,1,3.650000E+00,3.002200E+00,4.167330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2054413,fr,1,3.650000E+00,3.002200E+00,4.167330E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2054414,fr,1,3.650000E+00,3.002200E+00,4.167330E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2054416,fr,2,3.650000E+00,3.002200E+00,4.167330E+01,1.500000E+01,Active Shallow Crust,2.400005E+02,5.801262E+01,0.000000E+00 +2054424,fr,3,3.750000E+00,3.002200E+00,4.167330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999103E+01,0.000000E+00 +2054428,fr,1,3.750000E+00,3.002200E+00,4.167330E+01,1.500000E+01,Active Shallow Crust,2.400080E+02,5.801711E+01,0.000000E+00 +2054430,fr,1,3.750000E+00,3.002200E+00,4.167330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999092E+01,-9.000000E+01 +2054431,fr,1,3.750000E+00,3.002200E+00,4.167330E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999092E+01,-9.000000E+01 +2054433,fr,1,3.750000E+00,3.002200E+00,4.167330E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.996741E+01,0.000000E+00 +2054436,fr,3,3.850000E+00,3.002200E+00,4.167330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +2054438,fr,1,3.850000E+00,3.002200E+00,4.167330E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +2054447,fr,1,3.850000E+00,3.002200E+00,4.167330E+01,2.750000E+01,Active Shallow Crust,1.288964E+02,8.999333E+01,0.000000E+00 +2054448,fr,1,3.950000E+00,3.002200E+00,4.167330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +2054451,fr,1,3.950000E+00,3.002200E+00,4.167330E+01,5.000000E+00,Active Shallow Crust,2.400195E+02,5.800495E+01,0.000000E+00 +2054454,fr,1,3.950000E+00,3.002200E+00,4.167330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,-9.000000E+01 +2054460,fr,2,4.050000E+00,3.002200E+00,4.167330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998941E+01,0.000000E+00 +2054463,fr,1,4.050000E+00,3.002200E+00,4.167330E+01,5.000000E+00,Active Shallow Crust,2.400051E+02,5.800575E+01,0.000000E+00 +2054472,fr,2,4.150000E+00,3.002200E+00,4.167330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +2054476,fr,1,4.150000E+00,3.002200E+00,4.167330E+01,1.500000E+01,Active Shallow Crust,2.400076E+02,5.799728E+01,0.000000E+00 +2054484,fr,1,4.250000E+00,3.002200E+00,4.167330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2054487,fr,1,4.250000E+00,3.002200E+00,4.167330E+01,5.000000E+00,Active Shallow Crust,2.400065E+02,5.799418E+01,0.000000E+00 +2054496,fr,2,4.350000E+00,3.002200E+00,4.167330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +2054529,fr,1,4.550000E+00,3.002200E+00,4.167330E+01,5.000000E+00,Active Shallow Crust,1.288949E+02,8.998592E+01,0.000000E+00 +2054532,fr,1,4.650000E+00,3.002200E+00,4.167330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +2054556,fr,2,4.850000E+00,3.002200E+00,4.167330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2054571,fr,1,4.950000E+00,3.002200E+00,4.167330E+01,5.000000E+00,Active Shallow Crust,2.400099E+02,5.800412E+01,0.000000E+00 +2054880,fr,1,3.550000E+00,5.820790E+00,4.911448E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998680E+01,0.000000E+00 +2055360,fr,1,3.550000E+00,3.214500E-01,4.401843E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2055372,fr,1,3.650000E+00,3.214500E-01,4.401843E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +2055378,fr,1,3.650000E+00,3.214500E-01,4.401843E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,-9.000000E+01 +2055398,fr,1,3.850000E+00,3.214500E-01,4.401843E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +2055600,fr,1,5.550000E+00,3.214500E-01,4.401843E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2055612,fr,1,5.650000E+00,3.214500E-01,4.401843E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999002E+01,0.000000E+00 +2055840,fr,3,3.550000E+00,6.020030E+00,4.723384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999316E+01,0.000000E+00 +2055841,fr,1,3.550000E+00,6.020030E+00,4.723384E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999316E+01,0.000000E+00 +2055852,fr,1,3.650000E+00,6.020030E+00,4.723384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998779E+01,0.000000E+00 +2055854,fr,1,3.650000E+00,6.020030E+00,4.723384E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998779E+01,0.000000E+00 +2055864,fr,1,3.750000E+00,6.020030E+00,4.723384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998912E+01,0.000000E+00 +2055873,fr,1,3.750000E+00,6.020030E+00,4.723384E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.996751E+01,0.000000E+00 +2055877,fr,2,3.850000E+00,6.020030E+00,4.723384E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +2055878,fr,1,3.850000E+00,6.020030E+00,4.723384E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +2055879,fr,1,3.850000E+00,6.020030E+00,4.723384E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.799733E+01,0.000000E+00 +2055900,fr,1,4.050000E+00,6.020030E+00,4.723384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998845E+01,0.000000E+00 +2055906,fr,1,4.050000E+00,6.020030E+00,4.723384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998831E+01,-9.000000E+01 +2055951,fr,1,4.450000E+00,6.020030E+00,4.723384E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.799443E+01,0.000000E+00 +2055960,fr,1,4.550000E+00,6.020030E+00,4.723384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +2055979,fr,1,4.650000E+00,6.020030E+00,4.723384E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,-9.000000E+01 +2055990,fr,1,4.750000E+00,6.020030E+00,4.723384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,-9.000000E+01 +2056008,fr,1,4.950000E+00,6.020030E+00,4.723384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +2056320,fr,1,3.550000E+00,-3.592720E+00,4.896654E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2056324,fr,1,3.550000E+00,-3.592720E+00,4.896654E+01,1.500000E+01,Active Shallow Crust,2.400122E+02,5.799799E+01,0.000000E+00 +2056332,fr,1,3.650000E+00,-3.592720E+00,4.896654E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999115E+01,0.000000E+00 +2056380,fr,1,4.050000E+00,-3.592720E+00,4.896654E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999069E+01,0.000000E+00 +2056425,fr,1,4.350000E+00,-3.592720E+00,4.896654E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.998288E+01,0.000000E+00 +2056470,fr,1,4.750000E+00,-3.592720E+00,4.896654E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +2056552,fr,1,5.450000E+00,-3.592720E+00,4.896654E+01,1.500000E+01,Active Shallow Crust,2.400310E+02,5.799892E+01,0.000000E+00 +2057280,fr,2,3.550000E+00,6.387750E+00,5.055563E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998719E+01,0.000000E+00 +2057285,fr,1,3.550000E+00,6.387750E+00,5.055563E+01,2.750000E+01,Active Shallow Crust,2.400116E+02,5.799836E+01,0.000000E+00 +2057289,fr,1,3.550000E+00,6.387750E+00,5.055563E+01,5.000000E+00,Active Shallow Crust,1.288953E+02,8.999359E+01,0.000000E+00 +2057292,fr,1,3.650000E+00,6.387750E+00,5.055563E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998858E+01,0.000000E+00 +2057301,fr,1,3.650000E+00,6.387750E+00,5.055563E+01,5.000000E+00,Active Shallow Crust,1.289006E+02,8.996360E+01,0.000000E+00 +2057302,fr,1,3.650000E+00,6.387750E+00,5.055563E+01,1.500000E+01,Active Shallow Crust,1.289006E+02,8.996360E+01,0.000000E+00 +2057314,fr,1,3.750000E+00,6.387750E+00,5.055563E+01,1.500000E+01,Active Shallow Crust,1.288964E+02,8.996756E+01,0.000000E+00 +2057315,fr,1,3.750000E+00,6.387750E+00,5.055563E+01,2.750000E+01,Active Shallow Crust,1.288964E+02,8.996756E+01,0.000000E+00 +2057316,fr,2,3.850000E+00,6.387750E+00,5.055563E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +2057317,fr,1,3.850000E+00,6.387750E+00,5.055563E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +2057325,fr,1,3.850000E+00,6.387750E+00,5.055563E+01,5.000000E+00,Active Shallow Crust,1.288945E+02,8.999319E+01,0.000000E+00 +2057329,fr,2,3.950000E+00,6.387750E+00,5.055563E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999191E+01,0.000000E+00 +2057334,fr,1,3.950000E+00,6.387750E+00,5.055563E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999182E+01,-9.000000E+01 +2057340,fr,1,4.050000E+00,6.387750E+00,5.055563E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998919E+01,0.000000E+00 +2057343,fr,1,4.050000E+00,6.387750E+00,5.055563E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.800609E+01,0.000000E+00 +2057352,fr,2,4.150000E+00,6.387750E+00,5.055563E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +2057364,fr,2,4.250000E+00,6.387750E+00,5.055563E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +2057376,fr,1,4.350000E+00,6.387750E+00,5.055563E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +2057388,fr,2,4.450000E+00,6.387750E+00,5.055563E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +2057397,fr,1,4.450000E+00,6.387750E+00,5.055563E+01,5.000000E+00,Active Shallow Crust,1.288912E+02,8.999318E+01,0.000000E+00 +2057530,fr,1,5.550000E+00,6.387750E+00,5.055563E+01,1.500000E+01,Active Shallow Crust,1.288760E+02,8.998970E+01,0.000000E+00 +2057542,fr,1,5.650000E+00,6.387750E+00,5.055563E+01,1.500000E+01,Active Shallow Crust,1.288714E+02,8.999046E+01,0.000000E+00 +2057773,fr,1,3.650000E+00,4.212050E+00,4.117470E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999323E+01,0.000000E+00 +2057785,fr,1,3.750000E+00,4.212050E+00,4.117470E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998794E+01,0.000000E+00 +2057881,fr,1,4.550000E+00,4.212050E+00,4.117470E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +2057895,fr,1,4.650000E+00,4.212050E+00,4.117470E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.799429E+01,0.000000E+00 +2058297,fr,1,3.950000E+00,2.098390E+00,5.306714E+01,5.000000E+00,Active Shallow Crust,1.288992E+02,8.999331E+01,0.000000E+00 +2058744,fr,1,3.750000E+00,1.341230E+00,4.450845E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2058745,fr,1,3.750000E+00,1.341230E+00,4.450845E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2058771,fr,1,3.950000E+00,1.341230E+00,4.450845E+01,5.000000E+00,Active Shallow Crust,2.400196E+02,5.800478E+01,0.000000E+00 +2058772,fr,1,3.950000E+00,1.341230E+00,4.450845E+01,1.500000E+01,Active Shallow Crust,2.400196E+02,5.800478E+01,0.000000E+00 +2059020,fr,1,6.050000E+00,1.341231E+00,4.450845E+01,5.357596E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2059248,fr,1,3.950000E+00,4.030650E+00,4.949405E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999174E+01,0.000000E+00 +2059308,fr,1,4.450000E+00,4.030650E+00,4.949405E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +2059680,fr,1,3.550000E+00,1.759900E+00,4.879670E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2059704,fr,2,3.750000E+00,1.759900E+00,4.879670E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +2059717,fr,1,3.850000E+00,1.759900E+00,4.879670E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +2060160,fr,1,3.550000E+00,-4.239880E+00,4.809025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999326E+01,0.000000E+00 +2060161,fr,1,3.550000E+00,-4.239880E+00,4.809025E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999326E+01,0.000000E+00 +2060197,fr,1,3.850000E+00,-4.239880E+00,4.809025E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +2060221,fr,1,4.050000E+00,-4.239880E+00,4.809025E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998864E+01,0.000000E+00 +2060224,fr,1,4.050000E+00,-4.239880E+00,4.809025E+01,1.500000E+01,Active Shallow Crust,2.400065E+02,5.800550E+01,0.000000E+00 +2060229,fr,1,4.050000E+00,-4.239880E+00,4.809025E+01,5.000000E+00,Active Shallow Crust,1.288898E+02,8.999432E+01,0.000000E+00 +2060257,fr,1,4.350000E+00,-4.239880E+00,4.809025E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +2060354,fr,1,5.150000E+00,-4.239880E+00,4.809025E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +2060640,fr,2,3.550000E+00,-2.489730E+00,4.784718E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2060652,fr,1,3.650000E+00,-2.489730E+00,4.784718E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999095E+01,0.000000E+00 +2060654,fr,1,3.650000E+00,-2.489730E+00,4.784718E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999095E+01,0.000000E+00 +2060660,fr,1,3.650000E+00,-2.489730E+00,4.784718E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999084E+01,-9.000000E+01 +2060664,fr,1,3.750000E+00,-2.489730E+00,4.784718E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +2060669,fr,1,3.750000E+00,-2.489730E+00,4.784718E+01,2.750000E+01,Active Shallow Crust,2.400088E+02,5.801714E+01,0.000000E+00 +2060670,fr,1,3.750000E+00,-2.489730E+00,4.784718E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998912E+01,-9.000000E+01 +2060685,fr,1,3.850000E+00,-2.489730E+00,4.784718E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999281E+01,0.000000E+00 +2060688,fr,1,3.950000E+00,-2.489730E+00,4.784718E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +2060724,fr,1,4.250000E+00,-2.489730E+00,4.784718E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +2060742,fr,1,4.350000E+00,-2.489730E+00,4.784718E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,-9.000000E+01 +2060796,fr,1,4.850000E+00,-2.489730E+00,4.784718E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +2061120,fr,1,3.550000E+00,-3.071240E+00,4.833723E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2061121,fr,1,3.550000E+00,-3.071240E+00,4.833723E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2061126,fr,2,3.550000E+00,-3.071240E+00,4.833723E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,-9.000000E+01 +2061129,fr,1,3.550000E+00,-3.071240E+00,4.833723E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999329E+01,0.000000E+00 +2061132,fr,1,3.650000E+00,-3.071240E+00,4.833723E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +2061135,fr,2,3.650000E+00,-3.071240E+00,4.833723E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801307E+01,0.000000E+00 +2061144,fr,2,3.750000E+00,-3.071240E+00,4.833723E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +2061146,fr,1,3.750000E+00,-3.071240E+00,4.833723E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +2061147,fr,2,3.750000E+00,-3.071240E+00,4.833723E+01,5.000000E+00,Active Shallow Crust,2.400092E+02,5.801725E+01,0.000000E+00 +2061159,fr,1,3.850000E+00,-3.071240E+00,4.833723E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799774E+01,0.000000E+00 +2061166,fr,1,3.850000E+00,-3.071240E+00,4.833723E+01,1.500000E+01,Active Shallow Crust,1.288953E+02,8.999407E+01,0.000000E+00 +2061168,fr,1,3.950000E+00,-3.071240E+00,4.833723E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +2061180,fr,1,4.050000E+00,-3.071240E+00,4.833723E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +2061181,fr,1,4.050000E+00,-3.071240E+00,4.833723E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +2061189,fr,1,4.050000E+00,-3.071240E+00,4.833723E+01,5.000000E+00,Active Shallow Crust,1.288902E+02,8.999435E+01,0.000000E+00 +2061192,fr,2,4.150000E+00,-3.071240E+00,4.833723E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +2061228,fr,1,4.450000E+00,-3.071240E+00,4.833723E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +2061259,fr,1,4.650000E+00,-3.071240E+00,4.833723E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999044E+01,-9.000000E+01 +2061264,fr,2,4.750000E+00,-3.071240E+00,4.833723E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +2061276,fr,1,4.850000E+00,-3.071240E+00,4.833723E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +2061388,fr,1,5.750000E+00,-3.071240E+00,4.833723E+01,1.500000E+01,Active Shallow Crust,2.400435E+02,5.799992E+01,0.000000E+00 +2061600,fr,3,3.550000E+00,-8.025100E-01,4.677130E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +2061601,fr,1,3.550000E+00,-8.025100E-01,4.677130E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +2061603,fr,1,3.550000E+00,-8.025100E-01,4.677130E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799814E+01,0.000000E+00 +2061607,fr,1,3.550000E+00,-8.025100E-01,4.677130E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,-9.000000E+01 +2061609,fr,2,3.550000E+00,-8.025100E-01,4.677130E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999352E+01,0.000000E+00 +2061612,fr,1,3.650000E+00,-8.025100E-01,4.677130E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2061613,fr,1,3.650000E+00,-8.025100E-01,4.677130E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2061615,fr,1,3.650000E+00,-8.025100E-01,4.677130E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801304E+01,0.000000E+00 +2061618,fr,2,3.650000E+00,-8.025100E-01,4.677130E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +2061621,fr,1,3.650000E+00,-8.025100E-01,4.677130E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.996353E+01,0.000000E+00 +2061624,fr,2,3.750000E+00,-8.025100E-01,4.677130E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +2061636,fr,1,3.850000E+00,-8.025100E-01,4.677130E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +2061637,fr,1,3.850000E+00,-8.025100E-01,4.677130E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +2061642,fr,2,3.850000E+00,-8.025100E-01,4.677130E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +2061646,fr,1,3.850000E+00,-8.025100E-01,4.677130E+01,1.500000E+01,Active Shallow Crust,1.288957E+02,8.999358E+01,0.000000E+00 +2061654,fr,1,3.950000E+00,-8.025100E-01,4.677130E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,-9.000000E+01 +2061663,fr,1,4.050000E+00,-8.025100E-01,4.677130E+01,5.000000E+00,Active Shallow Crust,2.400060E+02,5.800579E+01,0.000000E+00 +2061678,fr,1,4.150000E+00,-8.025100E-01,4.677130E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,-9.000000E+01 +2061687,fr,2,4.250000E+00,-8.025100E-01,4.677130E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799411E+01,0.000000E+00 +2061696,fr,1,4.350000E+00,-8.025100E-01,4.677130E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2061708,fr,1,4.450000E+00,-8.025100E-01,4.677130E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +2061721,fr,1,4.550000E+00,-8.025100E-01,4.677130E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +2061735,fr,1,4.650000E+00,-8.025100E-01,4.677130E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799424E+01,0.000000E+00 +2061750,fr,1,4.750000E+00,-8.025100E-01,4.677130E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +2061780,fr,1,5.050000E+00,-8.025100E-01,4.677130E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2061826,fr,1,5.350000E+00,-8.025100E-01,4.677130E+01,1.500000E+01,Active Shallow Crust,1.288829E+02,8.998808E+01,0.000000E+00 +2061864,fr,1,5.750000E+00,-8.025100E-01,4.677130E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2062083,fr,1,3.550000E+00,3.793300E-01,4.819434E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799820E+01,0.000000E+00 +2062097,fr,1,3.650000E+00,3.793300E-01,4.819434E+01,2.750000E+01,Active Shallow Crust,2.400013E+02,5.801282E+01,0.000000E+00 +2062128,fr,1,3.950000E+00,3.793300E-01,4.819434E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2062160,fr,1,4.150000E+00,3.793300E-01,4.819434E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +2062164,fr,1,4.250000E+00,3.793300E-01,4.819434E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +2062176,fr,1,4.350000E+00,3.793300E-01,4.819434E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2062200,fr,1,4.550000E+00,3.793300E-01,4.819434E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2062261,fr,1,5.050000E+00,3.793300E-01,4.819434E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2062272,fr,1,5.150000E+00,3.793300E-01,4.819434E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2062319,fr,1,5.450000E+00,3.793300E-01,4.819434E+01,2.750000E+01,Active Shallow Crust,1.288776E+02,8.998899E+01,0.000000E+00 +2062561,fr,1,3.550000E+00,-3.692200E-01,4.907775E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +2062563,fr,1,3.550000E+00,-3.692200E-01,4.907775E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799826E+01,0.000000E+00 +2062572,fr,1,3.650000E+00,-3.692200E-01,4.907775E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2062573,fr,1,3.650000E+00,-3.692200E-01,4.907775E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2062575,fr,1,3.650000E+00,-3.692200E-01,4.907775E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801295E+01,0.000000E+00 +2062585,fr,1,3.750000E+00,-3.692200E-01,4.907775E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2062586,fr,1,3.750000E+00,-3.692200E-01,4.907775E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2062587,fr,1,3.750000E+00,-3.692200E-01,4.907775E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.801764E+01,0.000000E+00 +2062591,fr,1,3.750000E+00,-3.692200E-01,4.907775E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,-9.000000E+01 +2062596,fr,3,3.850000E+00,-3.692200E-01,4.907775E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2062611,fr,1,3.950000E+00,-3.692200E-01,4.907775E+01,5.000000E+00,Active Shallow Crust,2.400202E+02,5.800506E+01,0.000000E+00 +2062618,fr,1,3.950000E+00,-3.692200E-01,4.907775E+01,1.500000E+01,Active Shallow Crust,1.289001E+02,8.999375E+01,0.000000E+00 +2062620,fr,1,4.050000E+00,-3.692200E-01,4.907775E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2062644,fr,1,4.250000E+00,-3.692200E-01,4.907775E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2062656,fr,1,4.350000E+00,-3.692200E-01,4.907775E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2062681,fr,1,4.550000E+00,-3.692200E-01,4.907775E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2063046,fr,1,3.550000E+00,-4.732620E+00,4.967158E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998679E+01,-9.000000E+01 +2063100,fr,1,4.050000E+00,-4.732620E+00,4.967158E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998899E+01,0.000000E+00 +2064003,fr,1,3.550000E+00,2.471800E-01,4.536845E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799814E+01,0.000000E+00 +2064012,fr,1,3.650000E+00,2.471800E-01,4.536845E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2064024,fr,1,3.750000E+00,2.471800E-01,4.536845E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2064036,fr,1,3.850000E+00,2.471800E-01,4.536845E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2064064,fr,1,4.050000E+00,2.471800E-01,4.536845E+01,1.500000E+01,Active Shallow Crust,2.400058E+02,5.800574E+01,0.000000E+00 +2064102,fr,1,4.350000E+00,2.471800E-01,4.536845E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +2064961,fr,2,3.550000E+00,8.883480E+00,4.959235E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998692E+01,0.000000E+00 +2064963,fr,1,3.550000E+00,8.883480E+00,4.959235E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799948E+01,0.000000E+00 +2064981,fr,1,3.650000E+00,8.883480E+00,4.959235E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.996358E+01,0.000000E+00 +2064997,fr,1,3.850000E+00,8.883480E+00,4.959235E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +2065017,fr,1,3.950000E+00,8.883480E+00,4.959235E+01,5.000000E+00,Active Shallow Crust,1.289000E+02,8.999587E+01,0.000000E+00 +2065020,fr,2,4.050000E+00,8.883480E+00,4.959235E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999265E+01,0.000000E+00 +2065021,fr,1,4.050000E+00,8.883480E+00,4.959235E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999265E+01,0.000000E+00 +2065025,fr,1,4.050000E+00,8.883480E+00,4.959235E+01,2.750000E+01,Active Shallow Crust,2.400061E+02,5.800558E+01,0.000000E+00 +2065093,fr,1,4.650000E+00,8.883480E+00,4.959235E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +2065440,fr,6,3.550000E+00,7.486670E+00,5.031500E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998712E+01,0.000000E+00 +2065442,fr,2,3.550000E+00,7.486670E+00,5.031500E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998712E+01,0.000000E+00 +2065444,fr,1,3.550000E+00,7.486670E+00,5.031500E+01,1.500000E+01,Active Shallow Crust,2.400124E+02,5.799841E+01,0.000000E+00 +2065445,fr,1,3.550000E+00,7.486670E+00,5.031500E+01,2.750000E+01,Active Shallow Crust,2.400124E+02,5.799832E+01,0.000000E+00 +2065452,fr,3,3.650000E+00,7.486670E+00,5.031500E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998853E+01,0.000000E+00 +2065453,fr,2,3.650000E+00,7.486670E+00,5.031500E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998853E+01,0.000000E+00 +2065454,fr,1,3.650000E+00,7.486670E+00,5.031500E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998853E+01,0.000000E+00 +2065455,fr,1,3.650000E+00,7.486670E+00,5.031500E+01,5.000000E+00,Active Shallow Crust,2.400020E+02,5.801228E+01,0.000000E+00 +2065458,fr,2,3.650000E+00,7.486670E+00,5.031500E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998839E+01,-9.000000E+01 +2065459,fr,1,3.650000E+00,7.486670E+00,5.031500E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998839E+01,-9.000000E+01 +2065464,fr,5,3.750000E+00,7.486670E+00,5.031500E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +2065465,fr,1,3.750000E+00,7.486670E+00,5.031500E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +2065467,fr,1,3.750000E+00,7.486670E+00,5.031500E+01,5.000000E+00,Active Shallow Crust,2.400093E+02,5.801756E+01,0.000000E+00 +2065470,fr,2,3.750000E+00,7.486670E+00,5.031500E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +2065478,fr,1,3.850000E+00,7.486670E+00,5.031500E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +2065479,fr,2,3.850000E+00,7.486670E+00,5.031500E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799804E+01,0.000000E+00 +2065485,fr,1,3.850000E+00,7.486670E+00,5.031500E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.999316E+01,0.000000E+00 +2065486,fr,1,3.850000E+00,7.486670E+00,5.031500E+01,1.500000E+01,Active Shallow Crust,1.288950E+02,8.999316E+01,0.000000E+00 +2065488,fr,5,3.950000E+00,7.486670E+00,5.031500E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999187E+01,0.000000E+00 +2065491,fr,1,3.950000E+00,7.486670E+00,5.031500E+01,5.000000E+00,Active Shallow Crust,2.400201E+02,5.800571E+01,0.000000E+00 +2065501,fr,1,4.050000E+00,7.486670E+00,5.031500E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +2065512,fr,2,4.150000E+00,7.486670E+00,5.031500E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +2065515,fr,1,4.150000E+00,7.486670E+00,5.031500E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799771E+01,0.000000E+00 +2065519,fr,1,4.150000E+00,7.486670E+00,5.031500E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,-9.000000E+01 +2065520,fr,1,4.150000E+00,7.486670E+00,5.031500E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,-9.000000E+01 +2065528,fr,1,4.250000E+00,7.486670E+00,5.031500E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.799430E+01,0.000000E+00 +2065548,fr,1,4.450000E+00,7.486670E+00,5.031500E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +2065554,fr,1,4.450000E+00,7.486670E+00,5.031500E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,-9.000000E+01 +2065561,fr,1,4.550000E+00,7.486670E+00,5.031500E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2065566,fr,2,4.550000E+00,7.486670E+00,5.031500E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,-9.000000E+01 +2065572,fr,2,4.650000E+00,7.486670E+00,5.031500E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +2065588,fr,1,4.750000E+00,7.486670E+00,5.031500E+01,1.500000E+01,Active Shallow Crust,2.400088E+02,5.800480E+01,0.000000E+00 +2065609,fr,1,4.950000E+00,7.486670E+00,5.031500E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +2065645,fr,1,5.250000E+00,7.486670E+00,5.031500E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2065680,fr,1,5.550000E+00,7.486670E+00,5.031500E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2065926,fr,1,3.550000E+00,-3.242150E+00,4.253105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,-9.000000E+01 +2065932,fr,2,3.650000E+00,-3.242150E+00,4.253105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2065935,fr,1,3.650000E+00,-3.242150E+00,4.253105E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801277E+01,0.000000E+00 +2065970,fr,1,3.950000E+00,-3.242150E+00,4.253105E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +2066437,fr,1,3.850000E+00,-8.118500E-01,4.404987E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +2066488,fr,1,4.250000E+00,-8.118500E-01,4.404987E+01,1.500000E+01,Active Shallow Crust,2.400070E+02,5.799401E+01,0.000000E+00 +2066880,fr,2,3.550000E+00,6.278500E-01,5.148743E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +2066905,fr,1,3.750000E+00,6.278500E-01,5.148743E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2066913,fr,1,3.750000E+00,6.278500E-01,5.148743E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.996736E+01,0.000000E+00 +2066929,fr,1,3.950000E+00,6.278500E-01,5.148743E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2066940,fr,1,4.050000E+00,6.278500E-01,5.148743E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2067120,fr,1,5.550000E+00,6.278500E-01,5.148743E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2067375,fr,1,3.650000E+00,5.582010E+00,4.717721E+01,5.000000E+00,Active Shallow Crust,2.400006E+02,5.801298E+01,0.000000E+00 +2067384,fr,2,3.750000E+00,5.582010E+00,4.717721E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +2067408,fr,2,3.950000E+00,5.582010E+00,4.717721E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999135E+01,0.000000E+00 +2067409,fr,1,3.950000E+00,5.582010E+00,4.717721E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999135E+01,0.000000E+00 +2067412,fr,1,3.950000E+00,5.582010E+00,4.717721E+01,1.500000E+01,Active Shallow Crust,2.400199E+02,5.800520E+01,0.000000E+00 +2067420,fr,1,4.050000E+00,5.582010E+00,4.717721E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +2067422,fr,1,4.050000E+00,5.582010E+00,4.717721E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +2067432,fr,1,4.150000E+00,5.582010E+00,4.717721E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2067444,fr,1,4.250000E+00,5.582010E+00,4.717721E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +2067445,fr,1,4.250000E+00,5.582010E+00,4.717721E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +2067450,fr,1,4.250000E+00,5.582010E+00,4.717721E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999071E+01,-9.000000E+01 +2067480,fr,1,4.550000E+00,5.582010E+00,4.717721E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +2067494,fr,1,4.650000E+00,5.582010E+00,4.717721E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +2067849,fr,1,3.550000E+00,-2.909330E+00,4.326976E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999449E+01,0.000000E+00 +2067853,fr,1,3.650000E+00,-2.909330E+00,4.326976E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +2067864,fr,1,3.750000E+00,-2.909330E+00,4.326976E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999125E+01,0.000000E+00 +2067865,fr,1,3.750000E+00,-2.909330E+00,4.326976E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999125E+01,0.000000E+00 +2067866,fr,1,3.750000E+00,-2.909330E+00,4.326976E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999125E+01,0.000000E+00 +2067870,fr,1,3.750000E+00,-2.909330E+00,4.326976E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999115E+01,-9.000000E+01 +2067873,fr,1,3.750000E+00,-2.909330E+00,4.326976E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.996744E+01,0.000000E+00 +2067922,fr,2,4.150000E+00,-2.909330E+00,4.326976E+01,1.500000E+01,Active Shallow Crust,1.288984E+02,8.999356E+01,0.000000E+00 +2067926,fr,1,4.250000E+00,-2.909330E+00,4.326976E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +2067972,fr,1,4.650000E+00,-2.909330E+00,4.326976E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +2067986,fr,1,4.750000E+00,-2.909330E+00,4.326976E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2068075,fr,1,5.450000E+00,-2.909330E+00,4.326976E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +2068113,fr,1,5.750000E+00,-2.909330E+00,4.326976E+01,5.000000E+00,Active Shallow Crust,1.288744E+02,8.998853E+01,0.000000E+00 +2068320,fr,1,3.550000E+00,4.072800E+00,4.632374E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999303E+01,0.000000E+00 +2068357,fr,1,3.850000E+00,4.072800E+00,4.632374E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2068368,fr,1,3.950000E+00,4.072800E+00,4.632374E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999121E+01,0.000000E+00 +2068404,fr,1,4.250000E+00,4.072800E+00,4.632374E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999067E+01,0.000000E+00 +2068608,fr,1,5.950000E+00,4.072800E+00,4.632374E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2068800,fr,1,3.550000E+00,5.763680E+00,4.326618E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999266E+01,0.000000E+00 +2068831,fr,1,3.750000E+00,5.763680E+00,4.326618E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998820E+01,-9.000000E+01 +2068836,fr,1,3.850000E+00,5.763680E+00,4.326618E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +2068872,fr,1,4.150000E+00,5.763680E+00,4.326618E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998896E+01,0.000000E+00 +2068945,fr,1,4.750000E+00,5.763680E+00,4.326618E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +2069292,fr,1,3.650000E+00,5.328530E+00,4.930062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998828E+01,0.000000E+00 +2070252,fr,1,3.650000E+00,-5.254400E-01,4.462344E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +2070277,fr,1,3.850000E+00,-5.254400E-01,4.462344E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +2070726,fr,1,3.550000E+00,3.031360E+00,4.381262E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998896E+01,-9.000000E+01 +2070732,fr,1,3.650000E+00,3.031360E+00,4.381262E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +2070744,fr,1,3.750000E+00,3.031360E+00,4.381262E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +2070804,fr,1,4.250000E+00,3.031360E+00,4.381262E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +2071680,fr,3,3.550000E+00,7.743640E+00,4.858858E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999333E+01,0.000000E+00 +2071683,fr,2,3.550000E+00,7.743640E+00,4.858858E+01,5.000000E+00,Active Shallow Crust,2.400129E+02,5.799812E+01,0.000000E+00 +2071686,fr,2,3.550000E+00,7.743640E+00,4.858858E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999326E+01,-9.000000E+01 +2071692,fr,4,3.650000E+00,7.743640E+00,4.858858E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998811E+01,0.000000E+00 +2071693,fr,1,3.650000E+00,7.743640E+00,4.858858E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998811E+01,0.000000E+00 +2071695,fr,1,3.650000E+00,7.743640E+00,4.858858E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801336E+01,0.000000E+00 +2071696,fr,1,3.650000E+00,7.743640E+00,4.858858E+01,1.500000E+01,Active Shallow Crust,2.400012E+02,5.801336E+01,0.000000E+00 +2071701,fr,1,3.650000E+00,7.743640E+00,4.858858E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996356E+01,0.000000E+00 +2071704,fr,1,3.750000E+00,7.743640E+00,4.858858E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +2071705,fr,2,3.750000E+00,7.743640E+00,4.858858E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +2071707,fr,1,3.750000E+00,7.743640E+00,4.858858E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801815E+01,0.000000E+00 +2071716,fr,2,3.850000E+00,7.743640E+00,4.858858E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +2071720,fr,2,3.850000E+00,7.743640E+00,4.858858E+01,1.500000E+01,Active Shallow Crust,2.400117E+02,5.799751E+01,0.000000E+00 +2071725,fr,2,3.850000E+00,7.743640E+00,4.858858E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999292E+01,0.000000E+00 +2071726,fr,1,3.850000E+00,7.743640E+00,4.858858E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.999292E+01,0.000000E+00 +2071728,fr,3,3.950000E+00,7.743640E+00,4.858858E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999158E+01,0.000000E+00 +2071729,fr,1,3.950000E+00,7.743640E+00,4.858858E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999158E+01,0.000000E+00 +2071732,fr,1,3.950000E+00,7.743640E+00,4.858858E+01,1.500000E+01,Active Shallow Crust,2.400202E+02,5.800514E+01,0.000000E+00 +2071737,fr,1,3.950000E+00,7.743640E+00,4.858858E+01,5.000000E+00,Active Shallow Crust,1.288991E+02,8.999369E+01,0.000000E+00 +2071740,fr,5,4.050000E+00,7.743640E+00,4.858858E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +2071743,fr,1,4.050000E+00,7.743640E+00,4.858858E+01,5.000000E+00,Active Shallow Crust,2.400062E+02,5.800613E+01,0.000000E+00 +2071750,fr,1,4.050000E+00,7.743640E+00,4.858858E+01,1.500000E+01,Active Shallow Crust,1.288901E+02,8.999438E+01,0.000000E+00 +2071752,fr,5,4.150000E+00,7.743640E+00,4.858858E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2071753,fr,2,4.150000E+00,7.743640E+00,4.858858E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2071762,fr,1,4.150000E+00,7.743640E+00,4.858858E+01,1.500000E+01,Active Shallow Crust,1.288974E+02,8.999332E+01,0.000000E+00 +2071764,fr,1,4.250000E+00,7.743640E+00,4.858858E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999106E+01,0.000000E+00 +2071768,fr,1,4.250000E+00,7.743640E+00,4.858858E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.799407E+01,0.000000E+00 +2071778,fr,1,4.350000E+00,7.743640E+00,4.858858E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +2071786,fr,1,4.350000E+00,7.743640E+00,4.858858E+01,1.500000E+01,Active Shallow Crust,1.288972E+02,8.998263E+01,0.000000E+00 +2071788,fr,1,4.450000E+00,7.743640E+00,4.858858E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +2071790,fr,1,4.450000E+00,7.743640E+00,4.858858E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +2071794,fr,1,4.450000E+00,7.743640E+00,4.858858E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,-9.000000E+01 +2071801,fr,1,4.550000E+00,7.743640E+00,4.858858E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +2071812,fr,1,4.650000E+00,7.743640E+00,4.858858E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +2071825,fr,1,4.750000E+00,7.743640E+00,4.858858E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2071839,fr,1,4.850000E+00,7.743640E+00,4.858858E+01,5.000000E+00,Active Shallow Crust,2.400181E+02,5.800249E+01,0.000000E+00 +2071848,fr,1,4.950000E+00,7.743640E+00,4.858858E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +2072160,fr,1,3.550000E+00,1.269630E+00,4.328573E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999082E+01,0.000000E+00 +2072175,fr,1,3.650000E+00,1.269630E+00,4.328573E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801274E+01,0.000000E+00 +2072184,fr,1,3.750000E+00,1.269630E+00,4.328573E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +2072196,fr,1,3.850000E+00,1.269630E+00,4.328573E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +2072211,fr,1,3.950000E+00,1.269630E+00,4.328573E+01,5.000000E+00,Active Shallow Crust,2.400192E+02,5.800500E+01,0.000000E+00 +2072212,fr,1,3.950000E+00,1.269630E+00,4.328573E+01,1.500000E+01,Active Shallow Crust,2.400192E+02,5.800500E+01,0.000000E+00 +2072220,fr,1,4.050000E+00,1.269630E+00,4.328573E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +2072284,fr,1,4.550000E+00,1.269630E+00,4.328573E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.799721E+01,0.000000E+00 +2072400,fr,1,5.550000E+00,1.269630E+00,4.328573E+01,5.000000E+00,Active Shallow Crust,3.599999E+02,8.999009E+01,0.000000E+00 +2072656,fr,1,3.650000E+00,2.063950E+00,4.998543E+01,1.500000E+01,Active Shallow Crust,2.400017E+02,5.801247E+01,0.000000E+00 +2073204,fr,1,4.250000E+00,2.653450E+00,4.688041E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +2073600,fr,3,3.550000E+00,1.051230E+00,4.285940E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +2073601,fr,1,3.550000E+00,1.051230E+00,4.285940E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +2073624,fr,2,3.750000E+00,1.051230E+00,4.285940E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +2073625,fr,1,3.750000E+00,1.051230E+00,4.285940E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +2073628,fr,1,3.750000E+00,1.051230E+00,4.285940E+01,1.500000E+01,Active Shallow Crust,2.400077E+02,5.801761E+01,0.000000E+00 +2073630,fr,1,3.750000E+00,1.051230E+00,4.285940E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,-9.000000E+01 +2073633,fr,1,3.750000E+00,1.051230E+00,4.285940E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.996743E+01,0.000000E+00 +2073635,fr,1,3.750000E+00,1.051230E+00,4.285940E+01,2.750000E+01,Active Shallow Crust,1.288968E+02,8.996743E+01,0.000000E+00 +2073636,fr,2,3.850000E+00,1.051230E+00,4.285940E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +2073637,fr,2,3.850000E+00,1.051230E+00,4.285940E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +2073639,fr,1,3.850000E+00,1.051230E+00,4.285940E+01,5.000000E+00,Active Shallow Crust,2.400103E+02,5.799774E+01,0.000000E+00 +2073648,fr,2,3.950000E+00,1.051230E+00,4.285940E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +2073649,fr,1,3.950000E+00,1.051230E+00,4.285940E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +2073651,fr,1,3.950000E+00,1.051230E+00,4.285940E+01,5.000000E+00,Active Shallow Crust,2.400192E+02,5.800505E+01,0.000000E+00 +2073661,fr,1,4.050000E+00,1.051230E+00,4.285940E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +2073672,fr,1,4.150000E+00,1.051230E+00,4.285940E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2073673,fr,1,4.150000E+00,1.051230E+00,4.285940E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2073674,fr,1,4.150000E+00,1.051230E+00,4.285940E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2073678,fr,1,4.150000E+00,1.051230E+00,4.285940E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +2073688,fr,1,4.250000E+00,1.051230E+00,4.285940E+01,1.500000E+01,Active Shallow Crust,2.400067E+02,5.799394E+01,0.000000E+00 +2073709,fr,1,4.450000E+00,1.051230E+00,4.285940E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2073710,fr,1,4.450000E+00,1.051230E+00,4.285940E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2073717,fr,1,4.450000E+00,1.051230E+00,4.285940E+01,5.000000E+00,Active Shallow Crust,1.288931E+02,8.999345E+01,0.000000E+00 +2073746,fr,1,4.750000E+00,1.051230E+00,4.285940E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +2073747,fr,1,4.750000E+00,1.051230E+00,4.285940E+01,5.000000E+00,Active Shallow Crust,2.400062E+02,5.800425E+01,0.000000E+00 +2073757,fr,1,4.850000E+00,1.051230E+00,4.285940E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2073769,fr,1,4.950000E+00,1.051230E+00,4.285940E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2073795,fr,1,5.150000E+00,1.051230E+00,4.285940E+01,5.000000E+00,Active Shallow Crust,2.400177E+02,5.799956E+01,0.000000E+00 +2075064,fr,1,3.750000E+00,3.734520E+00,4.097152E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +2075124,fr,1,4.250000E+00,3.734520E+00,4.097152E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +2075220,fr,1,5.050000E+00,3.734520E+00,4.097152E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2075526,fr,1,3.550000E+00,3.001000E-01,5.237765E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +2075533,fr,1,3.650000E+00,3.001000E-01,5.237765E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2075550,fr,1,3.750000E+00,3.001000E-01,5.237765E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +2075653,fr,1,4.650000E+00,3.001000E-01,5.237765E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2076024,fr,1,3.750000E+00,-6.455610E+00,4.922051E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +2076482,fr,1,3.550000E+00,6.199750E+00,4.751322E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999319E+01,0.000000E+00 +2076495,fr,1,3.650000E+00,6.199750E+00,4.751322E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801265E+01,0.000000E+00 +2076498,fr,1,3.650000E+00,6.199750E+00,4.751322E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998772E+01,-9.000000E+01 +2076501,fr,1,3.650000E+00,6.199750E+00,4.751322E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996355E+01,0.000000E+00 +2076504,fr,1,3.750000E+00,6.199750E+00,4.751322E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +2076506,fr,2,3.750000E+00,6.199750E+00,4.751322E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +2076507,fr,1,3.750000E+00,6.199750E+00,4.751322E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801767E+01,0.000000E+00 +2076510,fr,1,3.750000E+00,6.199750E+00,4.751322E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998905E+01,-9.000000E+01 +2076516,fr,1,3.850000E+00,6.199750E+00,4.751322E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +2076517,fr,1,3.850000E+00,6.199750E+00,4.751322E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +2076519,fr,1,3.850000E+00,6.199750E+00,4.751322E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799761E+01,0.000000E+00 +2076544,fr,1,4.050000E+00,6.199750E+00,4.751322E+01,1.500000E+01,Active Shallow Crust,2.400058E+02,5.800586E+01,0.000000E+00 +2076549,fr,1,4.050000E+00,6.199750E+00,4.751322E+01,5.000000E+00,Active Shallow Crust,1.288898E+02,8.999426E+01,0.000000E+00 +2076588,fr,1,4.450000E+00,6.199750E+00,4.751322E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +2076610,fr,1,4.550000E+00,6.199750E+00,4.751322E+01,1.500000E+01,Active Shallow Crust,1.288938E+02,8.998570E+01,0.000000E+00 +2076645,fr,1,4.850000E+00,6.199750E+00,4.751322E+01,5.000000E+00,Active Shallow Crust,1.288925E+02,8.998866E+01,0.000000E+00 +2076660,fr,1,5.050000E+00,6.199750E+00,4.751322E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +2076960,fr,3,3.550000E+00,4.741130E+00,5.058606E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998720E+01,0.000000E+00 +2076961,fr,1,3.550000E+00,4.741130E+00,5.058606E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998720E+01,0.000000E+00 +2076972,fr,1,3.650000E+00,4.741130E+00,5.058606E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +2076975,fr,1,3.650000E+00,4.741130E+00,5.058606E+01,5.000000E+00,Active Shallow Crust,2.400016E+02,5.801276E+01,0.000000E+00 +2076984,fr,2,3.750000E+00,4.741130E+00,5.058606E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +2076996,fr,1,3.850000E+00,4.741130E+00,5.058606E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +2077023,fr,1,4.050000E+00,4.741130E+00,5.058606E+01,5.000000E+00,Active Shallow Crust,2.400066E+02,5.800643E+01,0.000000E+00 +2077032,fr,1,4.150000E+00,4.741130E+00,5.058606E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +2077033,fr,1,4.150000E+00,4.741130E+00,5.058606E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +2077038,fr,1,4.150000E+00,4.741130E+00,5.058606E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,-9.000000E+01 +2077043,fr,1,4.150000E+00,4.741130E+00,5.058606E+01,2.750000E+01,Active Shallow Crust,1.288963E+02,8.999358E+01,0.000000E+00 +2077047,fr,1,4.250000E+00,4.741130E+00,5.058606E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.799409E+01,0.000000E+00 +2077048,fr,1,4.250000E+00,4.741130E+00,5.058606E+01,1.500000E+01,Active Shallow Crust,2.400086E+02,5.799409E+01,0.000000E+00 +2077059,fr,1,4.350000E+00,4.741130E+00,5.058606E+01,5.000000E+00,Active Shallow Crust,2.400095E+02,5.799606E+01,0.000000E+00 +2077477,fr,1,3.850000E+00,-2.151890E+00,4.528826E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +2077491,fr,1,3.950000E+00,-2.151890E+00,4.528826E+01,5.000000E+00,Active Shallow Crust,2.400195E+02,5.800513E+01,0.000000E+00 +2078400,fr,1,3.550000E+00,3.110500E+00,4.566081E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +2078401,fr,1,3.550000E+00,3.110500E+00,4.566081E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +2078404,fr,1,3.550000E+00,3.110500E+00,4.566081E+01,1.500000E+01,Active Shallow Crust,2.400120E+02,5.799830E+01,0.000000E+00 +2078406,fr,1,3.550000E+00,3.110500E+00,4.566081E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,-9.000000E+01 +2078409,fr,2,3.550000E+00,3.110500E+00,4.566081E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999295E+01,0.000000E+00 +2078413,fr,1,3.650000E+00,3.110500E+00,4.566081E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +2078415,fr,1,3.650000E+00,3.110500E+00,4.566081E+01,5.000000E+00,Active Shallow Crust,2.400006E+02,5.801320E+01,0.000000E+00 +2078416,fr,1,3.650000E+00,3.110500E+00,4.566081E+01,1.500000E+01,Active Shallow Crust,2.400006E+02,5.801320E+01,0.000000E+00 +2078424,fr,1,3.750000E+00,3.110500E+00,4.566081E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998880E+01,0.000000E+00 +2078425,fr,2,3.750000E+00,3.110500E+00,4.566081E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998880E+01,0.000000E+00 +2078433,fr,1,3.750000E+00,3.110500E+00,4.566081E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.996721E+01,0.000000E+00 +2078436,fr,2,3.850000E+00,3.110500E+00,4.566081E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2078437,fr,1,3.850000E+00,3.110500E+00,4.566081E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2078438,fr,1,3.850000E+00,3.110500E+00,4.566081E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2078442,fr,1,3.850000E+00,3.110500E+00,4.566081E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +2078448,fr,2,3.950000E+00,3.110500E+00,4.566081E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +2078451,fr,1,3.950000E+00,3.110500E+00,4.566081E+01,5.000000E+00,Active Shallow Crust,2.400195E+02,5.800513E+01,0.000000E+00 +2078460,fr,1,4.050000E+00,3.110500E+00,4.566081E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +2078463,fr,1,4.050000E+00,3.110500E+00,4.566081E+01,5.000000E+00,Active Shallow Crust,2.400061E+02,5.800557E+01,0.000000E+00 +2078472,fr,1,4.150000E+00,3.110500E+00,4.566081E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +2078473,fr,1,4.150000E+00,3.110500E+00,4.566081E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +2078477,fr,1,4.150000E+00,3.110500E+00,4.566081E+01,2.750000E+01,Active Shallow Crust,2.400083E+02,5.799717E+01,0.000000E+00 +2078484,fr,1,4.250000E+00,3.110500E+00,4.566081E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +2078496,fr,1,4.350000E+00,3.110500E+00,4.566081E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +2078524,fr,1,4.550000E+00,3.110500E+00,4.566081E+01,1.500000E+01,Active Shallow Crust,2.400091E+02,5.799733E+01,0.000000E+00 +2078783,fr,1,6.650000E+00,3.110505E+00,4.566081E+01,2.431019E+01,Active Shallow Crust,1.288233E+02,8.998985E+01,0.000000E+00 +2078913,fr,1,3.750000E+00,6.673870E+00,4.284207E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.996743E+01,0.000000E+00 +2078946,fr,1,4.050000E+00,6.673870E+00,4.284207E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999158E+01,-9.000000E+01 +2079480,fr,1,4.550000E+00,8.717390E+00,5.081874E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999194E+01,0.000000E+00 +2079520,fr,1,4.850000E+00,8.717390E+00,5.081874E+01,1.500000E+01,Active Shallow Crust,2.400194E+02,5.800261E+01,0.000000E+00 +2079841,fr,1,3.550000E+00,-3.651300E-01,4.340883E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2079852,fr,1,3.650000E+00,-3.651300E-01,4.340883E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +2079853,fr,1,3.650000E+00,-3.651300E-01,4.340883E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +2079864,fr,1,3.750000E+00,-3.651300E-01,4.340883E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +2079865,fr,2,3.750000E+00,-3.651300E-01,4.340883E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +2079909,fr,1,4.050000E+00,-3.651300E-01,4.340883E+01,5.000000E+00,Active Shallow Crust,1.288909E+02,8.999369E+01,0.000000E+00 +2079916,fr,1,4.150000E+00,-3.651300E-01,4.340883E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.799723E+01,0.000000E+00 +2079937,fr,1,4.350000E+00,-3.651300E-01,4.340883E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2079949,fr,1,4.450000E+00,-3.651300E-01,4.340883E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2080329,fr,1,3.550000E+00,4.645900E+00,4.298433E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999262E+01,0.000000E+00 +2080344,fr,1,3.750000E+00,4.645900E+00,4.298433E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998828E+01,0.000000E+00 +2080356,fr,1,3.850000E+00,4.645900E+00,4.298433E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +2080422,fr,1,4.350000E+00,4.645900E+00,4.298433E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999109E+01,-9.000000E+01 +2080824,fr,1,3.750000E+00,7.531230E+00,5.154897E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2081287,fr,1,3.550000E+00,4.876520E+00,5.109522E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998719E+01,-9.000000E+01 +2081304,fr,1,3.750000E+00,4.876520E+00,5.109522E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2081358,fr,1,4.150000E+00,4.876520E+00,5.109522E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,-9.000000E+01 +2081361,fr,1,4.150000E+00,4.876520E+00,5.109522E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.999365E+01,0.000000E+00 +2081384,fr,1,4.350000E+00,4.876520E+00,5.109522E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,-9.000000E+01 +2081400,fr,1,4.550000E+00,4.876520E+00,5.109522E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2081473,fr,1,5.150000E+00,4.876520E+00,5.109522E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2081809,fr,2,3.950000E+00,1.270500E+00,5.215435E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +2081814,fr,1,3.950000E+00,1.270500E+00,5.215435E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,-9.000000E+01 +2082240,fr,1,3.550000E+00,-2.905820E+00,4.201484E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998876E+01,0.000000E+00 +2082254,fr,1,3.650000E+00,-2.905820E+00,4.201484E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2082255,fr,1,3.650000E+00,-2.905820E+00,4.201484E+01,5.000000E+00,Active Shallow Crust,2.400004E+02,5.801292E+01,0.000000E+00 +2082264,fr,1,3.750000E+00,-2.905820E+00,4.201484E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +2082277,fr,1,3.850000E+00,-2.905820E+00,4.201484E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +2082278,fr,1,3.850000E+00,-2.905820E+00,4.201484E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +2082288,fr,1,3.950000E+00,-2.905820E+00,4.201484E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +2082297,fr,1,3.950000E+00,-2.905820E+00,4.201484E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.999409E+01,0.000000E+00 +2082301,fr,1,4.050000E+00,-2.905820E+00,4.201484E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +2082720,fr,1,3.550000E+00,3.658980E+00,4.561391E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +2082721,fr,2,3.550000E+00,3.658980E+00,4.561391E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +2082732,fr,1,3.650000E+00,3.658980E+00,4.561391E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +2082733,fr,1,3.650000E+00,3.658980E+00,4.561391E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +2082744,fr,1,3.750000E+00,3.658980E+00,4.561391E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998879E+01,0.000000E+00 +2082745,fr,1,3.750000E+00,3.658980E+00,4.561391E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998879E+01,0.000000E+00 +2082757,fr,1,3.850000E+00,3.658980E+00,4.561391E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2082759,fr,1,3.850000E+00,3.658980E+00,4.561391E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799793E+01,0.000000E+00 +2082768,fr,1,3.950000E+00,3.658980E+00,4.561391E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +2082828,fr,1,4.450000E+00,3.658980E+00,4.561391E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2082865,fr,1,4.750000E+00,3.658980E+00,4.561391E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +2082979,fr,1,5.650000E+00,3.658980E+00,4.561391E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +2083202,fr,1,3.550000E+00,-3.504790E+00,4.788994E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +2083212,fr,1,3.650000E+00,-3.504790E+00,4.788994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999096E+01,0.000000E+00 +2083218,fr,1,3.650000E+00,-3.504790E+00,4.788994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999085E+01,-9.000000E+01 +2083224,fr,1,3.750000E+00,-3.504790E+00,4.788994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +2083238,fr,1,3.850000E+00,-3.504790E+00,4.788994E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +2083260,fr,1,4.050000E+00,-3.504790E+00,4.788994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +2083286,fr,1,4.250000E+00,-3.504790E+00,4.788994E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +2083293,fr,1,4.250000E+00,-3.504790E+00,4.788994E+01,5.000000E+00,Active Shallow Crust,1.288944E+02,8.998074E+01,0.000000E+00 +2083320,fr,1,4.550000E+00,-3.504790E+00,4.788994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +2083344,fr,1,4.750000E+00,-3.504790E+00,4.788994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2083347,fr,1,4.750000E+00,-3.504790E+00,4.788994E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.800460E+01,0.000000E+00 +2083680,fr,1,3.550000E+00,7.740800E-01,4.119582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +2083681,fr,1,3.550000E+00,7.740800E-01,4.119582E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +2083693,fr,1,3.650000E+00,7.740800E-01,4.119582E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2083707,fr,1,3.750000E+00,7.740800E-01,4.119582E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801750E+01,0.000000E+00 +2083728,fr,2,3.950000E+00,7.740800E-01,4.119582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +2083875,fr,1,5.150000E+00,7.740800E-01,4.119582E+01,5.000000E+00,Active Shallow Crust,2.400168E+02,5.799945E+01,0.000000E+00 +2084160,fr,1,3.550000E+00,1.568190E+00,4.600178E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +2084161,fr,1,3.550000E+00,1.568190E+00,4.600178E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +2084166,fr,1,3.550000E+00,1.568190E+00,4.600178E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998937E+01,-9.000000E+01 +2084167,fr,1,3.550000E+00,1.568190E+00,4.600178E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998937E+01,-9.000000E+01 +2084172,fr,1,3.650000E+00,1.568190E+00,4.600178E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +2084184,fr,2,3.750000E+00,1.568190E+00,4.600178E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +2084188,fr,1,3.750000E+00,1.568190E+00,4.600178E+01,1.500000E+01,Active Shallow Crust,2.400083E+02,5.801766E+01,0.000000E+00 +2084208,fr,1,3.950000E+00,1.568190E+00,4.600178E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2084214,fr,1,3.950000E+00,1.568190E+00,4.600178E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +2084217,fr,1,3.950000E+00,1.568190E+00,4.600178E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.999393E+01,0.000000E+00 +2084219,fr,1,3.950000E+00,1.568190E+00,4.600178E+01,2.750000E+01,Active Shallow Crust,1.289003E+02,8.999393E+01,0.000000E+00 +2084237,fr,1,4.150000E+00,1.568190E+00,4.600178E+01,2.750000E+01,Active Shallow Crust,2.400082E+02,5.799741E+01,0.000000E+00 +2084653,fr,1,3.650000E+00,1.178700E+00,4.164888E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2084654,fr,1,3.650000E+00,1.178700E+00,4.164888E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2084713,fr,1,4.150000E+00,1.178700E+00,4.164888E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +2085120,fr,2,3.550000E+00,-5.445030E+00,4.864775E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998668E+01,0.000000E+00 +2085132,fr,1,3.650000E+00,-5.445030E+00,4.864775E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998812E+01,0.000000E+00 +2085216,fr,1,4.350000E+00,-5.445030E+00,4.864775E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +2085624,fr,1,3.750000E+00,3.849950E+00,4.693562E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998906E+01,0.000000E+00 +2085625,fr,1,3.750000E+00,3.849950E+00,4.693562E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998906E+01,0.000000E+00 +2085637,fr,2,3.850000E+00,3.849950E+00,4.693562E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +2085663,fr,1,4.050000E+00,3.849950E+00,4.693562E+01,5.000000E+00,Active Shallow Crust,2.400060E+02,5.800596E+01,0.000000E+00 +2085672,fr,1,4.150000E+00,3.849950E+00,4.693562E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +2085718,fr,1,4.450000E+00,3.849950E+00,4.693562E+01,1.500000E+01,Active Shallow Crust,1.288922E+02,8.999329E+01,0.000000E+00 +2086093,fr,1,3.650000E+00,1.229630E+00,4.138930E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2086104,fr,1,3.750000E+00,1.229630E+00,4.138930E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +2086116,fr,1,3.850000E+00,1.229630E+00,4.138930E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +2086118,fr,1,3.850000E+00,1.229630E+00,4.138930E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +2086122,fr,1,3.850000E+00,1.229630E+00,4.138930E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,-9.000000E+01 +2086129,fr,1,3.950000E+00,1.229630E+00,4.138930E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +2086130,fr,1,3.950000E+00,1.229630E+00,4.138930E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +2086140,fr,1,4.050000E+00,1.229630E+00,4.138930E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +2086164,fr,1,4.250000E+00,1.229630E+00,4.138930E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +2086176,fr,1,4.350000E+00,1.229630E+00,4.138930E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +2086177,fr,1,4.350000E+00,1.229630E+00,4.138930E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +2086188,fr,1,4.450000E+00,1.229630E+00,4.138930E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2086200,fr,1,4.550000E+00,1.229630E+00,4.138930E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +2086201,fr,1,4.550000E+00,1.229630E+00,4.138930E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +2086225,fr,1,4.750000E+00,1.229630E+00,4.138930E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2086251,fr,1,4.950000E+00,1.229630E+00,4.138930E+01,5.000000E+00,Active Shallow Crust,2.400098E+02,5.800404E+01,0.000000E+00 +2086565,fr,1,3.550000E+00,-5.736340E+00,4.847897E+01,2.750000E+01,Active Shallow Crust,2.400132E+02,5.799683E+01,0.000000E+00 +2086584,fr,1,3.750000E+00,-5.736340E+00,4.847897E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +2086645,fr,1,4.250000E+00,-5.736340E+00,4.847897E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +2087064,fr,1,3.750000E+00,-4.437400E+00,4.724813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998913E+01,0.000000E+00 +2087068,fr,1,3.750000E+00,-4.437400E+00,4.724813E+01,1.500000E+01,Active Shallow Crust,2.400085E+02,5.801749E+01,0.000000E+00 +2087526,fr,1,3.550000E+00,3.110050E+00,4.395688E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,-9.000000E+01 +2087536,fr,1,3.650000E+00,3.110050E+00,4.395688E+01,1.500000E+01,Active Shallow Crust,2.400004E+02,5.801289E+01,0.000000E+00 +2087605,fr,1,4.250000E+00,3.110050E+00,4.395688E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +2087676,fr,2,4.850000E+00,3.110050E+00,4.395688E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +2088011,fr,1,3.550000E+00,2.286050E+00,4.657765E+01,2.750000E+01,Active Shallow Crust,1.288968E+02,8.999307E+01,0.000000E+00 +2088012,fr,2,3.650000E+00,2.286050E+00,4.657765E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999073E+01,0.000000E+00 +2088024,fr,1,3.750000E+00,2.286050E+00,4.657765E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998899E+01,0.000000E+00 +2088028,fr,1,3.750000E+00,2.286050E+00,4.657765E+01,1.500000E+01,Active Shallow Crust,2.400083E+02,5.801757E+01,0.000000E+00 +2088043,fr,1,3.850000E+00,2.286050E+00,4.657765E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +2088048,fr,2,3.950000E+00,2.286050E+00,4.657765E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +2088060,fr,1,4.050000E+00,2.286050E+00,4.657765E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +2088124,fr,1,4.550000E+00,2.286050E+00,4.657765E+01,1.500000E+01,Active Shallow Crust,2.400093E+02,5.799738E+01,0.000000E+00 +2088156,fr,1,4.850000E+00,2.286050E+00,4.657765E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2088210,fr,1,5.250000E+00,2.286050E+00,4.657765E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +2088216,fr,1,5.350000E+00,2.286050E+00,4.657765E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2088481,fr,1,3.550000E+00,2.730800E+00,4.429357E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +2088483,fr,1,3.550000E+00,2.730800E+00,4.429357E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799827E+01,0.000000E+00 +2088501,fr,1,3.650000E+00,2.730800E+00,4.429357E+01,5.000000E+00,Active Shallow Crust,1.289014E+02,8.996348E+01,0.000000E+00 +2088507,fr,1,3.750000E+00,2.730800E+00,4.429357E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.801780E+01,0.000000E+00 +2088516,fr,1,3.850000E+00,2.730800E+00,4.429357E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +2088540,fr,1,4.050000E+00,2.730800E+00,4.429357E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2088545,fr,1,4.050000E+00,2.730800E+00,4.429357E+01,2.750000E+01,Active Shallow Crust,2.400055E+02,5.800594E+01,0.000000E+00 +2088552,fr,1,4.150000E+00,2.730800E+00,4.429357E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +2088576,fr,1,4.350000E+00,2.730800E+00,4.429357E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2088601,fr,1,4.550000E+00,2.730800E+00,4.429357E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +2088621,fr,1,4.650000E+00,2.730800E+00,4.429357E+01,5.000000E+00,Active Shallow Crust,1.288918E+02,8.998710E+01,0.000000E+00 +2088969,fr,1,3.550000E+00,5.814000E+00,4.848305E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999332E+01,0.000000E+00 +2088973,fr,1,3.650000E+00,5.814000E+00,4.848305E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +2088998,fr,1,3.850000E+00,5.814000E+00,4.848305E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +2089010,fr,1,3.950000E+00,5.814000E+00,4.848305E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999156E+01,0.000000E+00 +2089056,fr,1,4.350000E+00,5.814000E+00,4.848305E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +2089080,fr,1,4.550000E+00,5.814000E+00,4.848305E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +2089440,fr,1,3.550000E+00,1.646520E+00,4.078565E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +2089444,fr,1,3.550000E+00,1.646520E+00,4.078565E+01,1.500000E+01,Active Shallow Crust,2.400113E+02,5.799836E+01,0.000000E+00 +2089461,fr,1,3.650000E+00,1.646520E+00,4.078565E+01,5.000000E+00,Active Shallow Crust,1.289011E+02,8.996342E+01,0.000000E+00 +2089475,fr,1,3.750000E+00,1.646520E+00,4.078565E+01,2.750000E+01,Active Shallow Crust,1.288972E+02,8.996725E+01,0.000000E+00 +2089476,fr,1,3.850000E+00,1.646520E+00,4.078565E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +2089477,fr,1,3.850000E+00,1.646520E+00,4.078565E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +2089492,fr,2,3.950000E+00,1.646520E+00,4.078565E+01,1.500000E+01,Active Shallow Crust,2.400192E+02,5.800479E+01,0.000000E+00 +2089525,fr,1,4.250000E+00,1.646520E+00,4.078565E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +2089543,fr,1,4.350000E+00,1.646520E+00,4.078565E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +2089953,fr,1,3.750000E+00,3.596700E+00,5.296111E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.996740E+01,0.000000E+00 +2090412,fr,1,3.650000E+00,2.414280E+00,5.319919E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +2090425,fr,1,3.750000E+00,2.414280E+00,5.319919E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +2090448,fr,1,3.950000E+00,2.414280E+00,5.319919E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +2090880,fr,5,3.550000E+00,7.639310E+00,4.691200E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999311E+01,0.000000E+00 +2090881,fr,1,3.550000E+00,7.639310E+00,4.691200E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999311E+01,0.000000E+00 +2090882,fr,1,3.550000E+00,7.639310E+00,4.691200E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999311E+01,0.000000E+00 +2090886,fr,1,3.550000E+00,7.639310E+00,4.691200E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999303E+01,-9.000000E+01 +2090889,fr,1,3.550000E+00,7.639310E+00,4.691200E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999311E+01,0.000000E+00 +2090890,fr,1,3.550000E+00,7.639310E+00,4.691200E+01,1.500000E+01,Active Shallow Crust,1.288958E+02,8.999311E+01,0.000000E+00 +2090891,fr,1,3.550000E+00,7.639310E+00,4.691200E+01,2.750000E+01,Active Shallow Crust,1.288958E+02,8.999311E+01,0.000000E+00 +2090892,fr,2,3.650000E+00,7.639310E+00,4.691200E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998772E+01,0.000000E+00 +2090895,fr,2,3.650000E+00,7.639310E+00,4.691200E+01,5.000000E+00,Active Shallow Crust,2.399999E+02,5.801344E+01,0.000000E+00 +2090896,fr,1,3.650000E+00,7.639310E+00,4.691200E+01,1.500000E+01,Active Shallow Crust,2.399999E+02,5.801344E+01,0.000000E+00 +2090898,fr,2,3.650000E+00,7.639310E+00,4.691200E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998758E+01,-9.000000E+01 +2090907,fr,1,3.750000E+00,7.639310E+00,4.691200E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.801852E+01,0.000000E+00 +2090911,fr,1,3.750000E+00,7.639310E+00,4.691200E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998893E+01,-9.000000E+01 +2090913,fr,1,3.750000E+00,7.639310E+00,4.691200E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.996750E+01,0.000000E+00 +2090916,fr,1,3.850000E+00,7.639310E+00,4.691200E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +2090920,fr,1,3.850000E+00,7.639310E+00,4.691200E+01,1.500000E+01,Active Shallow Crust,2.400107E+02,5.799865E+01,0.000000E+00 +2090925,fr,1,3.850000E+00,7.639310E+00,4.691200E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.999268E+01,0.000000E+00 +2090928,fr,4,3.950000E+00,7.639310E+00,4.691200E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999131E+01,0.000000E+00 +2090931,fr,1,3.950000E+00,7.639310E+00,4.691200E+01,5.000000E+00,Active Shallow Crust,2.400196E+02,5.800537E+01,0.000000E+00 +2090935,fr,1,3.950000E+00,7.639310E+00,4.691200E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999120E+01,-9.000000E+01 +2090940,fr,1,4.050000E+00,7.639310E+00,4.691200E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998838E+01,0.000000E+00 +2090953,fr,1,4.150000E+00,7.639310E+00,4.691200E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +2090964,fr,1,4.250000E+00,7.639310E+00,4.691200E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999077E+01,0.000000E+00 +2090967,fr,1,4.250000E+00,7.639310E+00,4.691200E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799399E+01,0.000000E+00 +2090969,fr,1,4.250000E+00,7.639310E+00,4.691200E+01,2.750000E+01,Active Shallow Crust,2.400080E+02,5.799399E+01,0.000000E+00 +2090977,fr,1,4.350000E+00,7.639310E+00,4.691200E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998903E+01,0.000000E+00 +2090992,fr,1,4.450000E+00,7.639310E+00,4.691200E+01,1.500000E+01,Active Shallow Crust,2.400053E+02,5.799484E+01,0.000000E+00 +2091006,fr,1,4.550000E+00,7.639310E+00,4.691200E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,-9.000000E+01 +2091009,fr,1,4.550000E+00,7.639310E+00,4.691200E+01,5.000000E+00,Active Shallow Crust,1.288934E+02,8.998567E+01,0.000000E+00 +2091012,fr,2,4.650000E+00,7.639310E+00,4.691200E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +2091062,fr,1,5.050000E+00,7.639310E+00,4.691200E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2091360,fr,1,3.550000E+00,7.767650E+00,4.430349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999278E+01,0.000000E+00 +2091372,fr,3,3.650000E+00,7.767650E+00,4.430349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998714E+01,0.000000E+00 +2091373,fr,1,3.650000E+00,7.767650E+00,4.430349E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998714E+01,0.000000E+00 +2091375,fr,2,3.650000E+00,7.767650E+00,4.430349E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801237E+01,0.000000E+00 +2091379,fr,1,3.650000E+00,7.767650E+00,4.430349E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998698E+01,-9.000000E+01 +2091384,fr,4,3.750000E+00,7.767650E+00,4.430349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998853E+01,0.000000E+00 +2091395,fr,1,3.750000E+00,7.767650E+00,4.430349E+01,2.750000E+01,Active Shallow Crust,1.288972E+02,8.996745E+01,0.000000E+00 +2091405,fr,1,3.850000E+00,7.767650E+00,4.430349E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.999234E+01,0.000000E+00 +2091408,fr,2,3.950000E+00,7.767650E+00,4.430349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999089E+01,0.000000E+00 +2091420,fr,3,4.050000E+00,7.767650E+00,4.430349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999188E+01,0.000000E+00 +2091424,fr,1,4.050000E+00,7.767650E+00,4.430349E+01,1.500000E+01,Active Shallow Crust,2.400058E+02,5.800530E+01,0.000000E+00 +2091432,fr,1,4.150000E+00,7.767650E+00,4.430349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998915E+01,0.000000E+00 +2091433,fr,1,4.150000E+00,7.767650E+00,4.430349E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998915E+01,0.000000E+00 +2091456,fr,1,4.350000E+00,7.767650E+00,4.430349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999138E+01,0.000000E+00 +2091466,fr,1,4.350000E+00,7.767650E+00,4.430349E+01,1.500000E+01,Active Shallow Crust,1.288989E+02,8.998241E+01,0.000000E+00 +2091470,fr,1,4.450000E+00,7.767650E+00,4.430349E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2091480,fr,1,4.550000E+00,7.767650E+00,4.430349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999087E+01,0.000000E+00 +2091517,fr,1,4.850000E+00,7.767650E+00,4.430349E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +2091552,fr,1,5.150000E+00,7.767650E+00,4.430349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +2091609,fr,1,5.550000E+00,7.767650E+00,4.430349E+01,5.000000E+00,Active Shallow Crust,1.288779E+02,8.998987E+01,0.000000E+00 +2091626,fr,1,5.750000E+00,7.767650E+00,4.430349E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +2091840,fr,2,3.550000E+00,-4.495000E-01,4.285203E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +2091841,fr,2,3.550000E+00,-4.495000E-01,4.285203E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +2091844,fr,1,3.550000E+00,-4.495000E-01,4.285203E+01,1.500000E+01,Active Shallow Crust,2.400118E+02,5.799816E+01,0.000000E+00 +2091852,fr,2,3.650000E+00,-4.495000E-01,4.285203E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +2091855,fr,1,3.650000E+00,-4.495000E-01,4.285203E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801287E+01,0.000000E+00 +2091873,fr,1,3.750000E+00,-4.495000E-01,4.285203E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996736E+01,0.000000E+00 +2091876,fr,3,3.850000E+00,-4.495000E-01,4.285203E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +2091877,fr,1,3.850000E+00,-4.495000E-01,4.285203E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +2091891,fr,1,3.950000E+00,-4.495000E-01,4.285203E+01,5.000000E+00,Active Shallow Crust,2.400192E+02,5.800490E+01,0.000000E+00 +2091894,fr,1,3.950000E+00,-4.495000E-01,4.285203E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +2091900,fr,1,4.050000E+00,-4.495000E-01,4.285203E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2091904,fr,1,4.050000E+00,-4.495000E-01,4.285203E+01,1.500000E+01,Active Shallow Crust,2.400054E+02,5.800571E+01,0.000000E+00 +2091906,fr,1,4.050000E+00,-4.495000E-01,4.285203E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +2091924,fr,1,4.250000E+00,-4.495000E-01,4.285203E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +2091939,fr,1,4.350000E+00,-4.495000E-01,4.285203E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799580E+01,0.000000E+00 +2092068,fr,1,5.450000E+00,-4.495000E-01,4.285203E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2092105,fr,1,5.750000E+00,-4.495000E-01,4.285203E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +2092332,fr,1,3.650000E+00,6.113270E+00,4.450695E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998718E+01,0.000000E+00 +2092344,fr,1,3.750000E+00,6.113270E+00,4.450695E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998858E+01,0.000000E+00 +2092357,fr,1,3.850000E+00,6.113270E+00,4.450695E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2092368,fr,1,3.950000E+00,6.113270E+00,4.450695E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999092E+01,0.000000E+00 +2092380,fr,1,4.050000E+00,6.113270E+00,4.450695E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999191E+01,0.000000E+00 +2092384,fr,1,4.050000E+00,6.113270E+00,4.450695E+01,1.500000E+01,Active Shallow Crust,2.400057E+02,5.800622E+01,0.000000E+00 +2092440,fr,1,4.550000E+00,6.113270E+00,4.450695E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +2092467,fr,1,4.750000E+00,6.113270E+00,4.450695E+01,5.000000E+00,Active Shallow Crust,2.400066E+02,5.800459E+01,0.000000E+00 +2092800,fr,1,3.550000E+00,2.973110E+00,4.975599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2092802,fr,1,3.550000E+00,2.973110E+00,4.975599E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2092822,fr,1,3.650000E+00,2.973110E+00,4.975599E+01,1.500000E+01,Active Shallow Crust,1.288996E+02,8.996358E+01,0.000000E+00 +2092837,fr,1,3.850000E+00,2.973110E+00,4.975599E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +2092870,fr,1,4.050000E+00,2.973110E+00,4.975599E+01,1.500000E+01,Active Shallow Crust,1.288904E+02,8.999359E+01,0.000000E+00 +2092896,fr,1,4.350000E+00,2.973110E+00,4.975599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +2092992,fr,1,5.150000E+00,2.973110E+00,4.975599E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +2093030,fr,1,5.450000E+00,2.973110E+00,4.975599E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2093039,fr,1,5.450000E+00,2.973110E+00,4.975599E+01,2.750000E+01,Active Shallow Crust,1.288763E+02,8.998902E+01,0.000000E+00 +2093280,fr,2,3.550000E+00,1.523900E+00,5.151987E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +2093289,fr,1,3.550000E+00,1.523900E+00,5.151987E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999373E+01,0.000000E+00 +2093304,fr,1,3.750000E+00,1.523900E+00,5.151987E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2093307,fr,1,3.750000E+00,1.523900E+00,5.151987E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.801780E+01,0.000000E+00 +2093328,fr,1,3.950000E+00,1.523900E+00,5.151987E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2093786,fr,1,3.750000E+00,-8.451800E-01,5.010703E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +2094240,fr,3,3.550000E+00,4.514020E+00,5.055430E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998718E+01,0.000000E+00 +2094241,fr,1,3.550000E+00,4.514020E+00,5.055430E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998718E+01,0.000000E+00 +2094243,fr,1,3.550000E+00,4.514020E+00,5.055430E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799827E+01,0.000000E+00 +2094252,fr,2,3.650000E+00,4.514020E+00,5.055430E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998858E+01,0.000000E+00 +2094254,fr,1,3.650000E+00,4.514020E+00,5.055430E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998858E+01,0.000000E+00 +2094255,fr,2,3.650000E+00,4.514020E+00,5.055430E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801326E+01,0.000000E+00 +2094258,fr,1,3.650000E+00,4.514020E+00,5.055430E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998845E+01,-9.000000E+01 +2094264,fr,5,3.750000E+00,4.514020E+00,5.055430E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +2094265,fr,3,3.750000E+00,4.514020E+00,5.055430E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +2094268,fr,1,3.750000E+00,4.514020E+00,5.055430E+01,1.500000E+01,Active Shallow Crust,2.400090E+02,5.801765E+01,0.000000E+00 +2094269,fr,1,3.750000E+00,4.514020E+00,5.055430E+01,2.750000E+01,Active Shallow Crust,2.400090E+02,5.801765E+01,0.000000E+00 +2094273,fr,1,3.750000E+00,4.514020E+00,5.055430E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.996706E+01,0.000000E+00 +2094276,fr,1,3.850000E+00,4.514020E+00,5.055430E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +2094288,fr,2,3.950000E+00,4.514020E+00,5.055430E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999191E+01,0.000000E+00 +2094289,fr,1,3.950000E+00,4.514020E+00,5.055430E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999191E+01,0.000000E+00 +2094291,fr,1,3.950000E+00,4.514020E+00,5.055430E+01,5.000000E+00,Active Shallow Crust,2.400204E+02,5.800475E+01,0.000000E+00 +2094294,fr,1,3.950000E+00,4.514020E+00,5.055430E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999182E+01,-9.000000E+01 +2094303,fr,1,4.050000E+00,4.514020E+00,5.055430E+01,5.000000E+00,Active Shallow Crust,2.400062E+02,5.800591E+01,0.000000E+00 +2094312,fr,1,4.150000E+00,4.514020E+00,5.055430E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +2094317,fr,1,4.150000E+00,4.514020E+00,5.055430E+01,2.750000E+01,Active Shallow Crust,2.400097E+02,5.799747E+01,0.000000E+00 +2094322,fr,1,4.150000E+00,4.514020E+00,5.055430E+01,1.500000E+01,Active Shallow Crust,1.288976E+02,8.999358E+01,0.000000E+00 +2094324,fr,1,4.250000E+00,4.514020E+00,5.055430E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +2094331,fr,1,4.250000E+00,4.514020E+00,5.055430E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999132E+01,-9.000000E+01 +2094336,fr,1,4.350000E+00,4.514020E+00,5.055430E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +2094339,fr,1,4.350000E+00,4.514020E+00,5.055430E+01,5.000000E+00,Active Shallow Crust,2.400097E+02,5.799605E+01,0.000000E+00 +2094345,fr,1,4.350000E+00,4.514020E+00,5.055430E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.998273E+01,0.000000E+00 +2094360,fr,1,4.550000E+00,4.514020E+00,5.055430E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +2094528,fr,1,5.950000E+00,4.514020E+00,5.055430E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2094726,fr,2,3.550000E+00,5.692000E-01,4.226911E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,-9.000000E+01 +2094747,fr,1,3.750000E+00,5.692000E-01,4.226911E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801751E+01,0.000000E+00 +2094757,fr,1,3.850000E+00,5.692000E-01,4.226911E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2094768,fr,1,3.950000E+00,5.692000E-01,4.226911E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2094780,fr,1,4.050000E+00,5.692000E-01,4.226911E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2094781,fr,1,4.050000E+00,5.692000E-01,4.226911E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2094811,fr,1,4.250000E+00,5.692000E-01,4.226911E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +2094890,fr,1,4.950000E+00,5.692000E-01,4.226911E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +2095200,fr,1,3.550000E+00,1.807520E+00,5.229759E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +2095236,fr,1,3.850000E+00,1.807520E+00,5.229759E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2095359,fr,1,4.850000E+00,1.807520E+00,5.229759E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.800275E+01,0.000000E+00 +2095704,fr,1,3.750000E+00,-1.931500E-01,5.158158E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2095729,fr,1,3.950000E+00,-1.931500E-01,5.158158E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2096168,fr,1,3.550000E+00,5.153830E+00,5.210369E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998746E+01,-9.000000E+01 +2096194,fr,1,3.750000E+00,5.153830E+00,5.210369E+01,1.500000E+01,Active Shallow Crust,1.288960E+02,8.996758E+01,0.000000E+00 +2096196,fr,1,3.850000E+00,5.153830E+00,5.210369E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +2096202,fr,1,3.850000E+00,5.153830E+00,5.210369E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999113E+01,-9.000000E+01 +2096233,fr,1,4.150000E+00,5.153830E+00,5.210369E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +2096640,fr,1,3.550000E+00,3.491260E+00,4.120683E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +2096641,fr,1,3.550000E+00,3.491260E+00,4.120683E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +2096664,fr,1,3.750000E+00,3.491260E+00,4.120683E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999096E+01,0.000000E+00 +2096695,fr,1,3.950000E+00,3.491260E+00,4.120683E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,-9.000000E+01 +2096700,fr,1,4.050000E+00,3.491260E+00,4.120683E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +2096757,fr,1,4.450000E+00,3.491260E+00,4.120683E+01,5.000000E+00,Active Shallow Crust,1.288933E+02,8.999394E+01,0.000000E+00 +2096820,fr,1,5.050000E+00,3.491260E+00,4.120683E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2097120,fr,6,3.550000E+00,7.178840E+00,4.775985E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999322E+01,0.000000E+00 +2097121,fr,2,3.550000E+00,7.178840E+00,4.775985E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999322E+01,0.000000E+00 +2097127,fr,1,3.550000E+00,7.178840E+00,4.775985E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999314E+01,-9.000000E+01 +2097132,fr,3,3.650000E+00,7.178840E+00,4.775985E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998792E+01,0.000000E+00 +2097134,fr,1,3.650000E+00,7.178840E+00,4.775985E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998792E+01,0.000000E+00 +2097137,fr,1,3.650000E+00,7.178840E+00,4.775985E+01,2.750000E+01,Active Shallow Crust,2.400005E+02,5.801342E+01,0.000000E+00 +2097144,fr,1,3.750000E+00,7.178840E+00,4.775985E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +2097145,fr,1,3.750000E+00,7.178840E+00,4.775985E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +2097146,fr,1,3.750000E+00,7.178840E+00,4.775985E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +2097151,fr,1,3.750000E+00,7.178840E+00,4.775985E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998911E+01,-9.000000E+01 +2097153,fr,2,3.750000E+00,7.178840E+00,4.775985E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.996751E+01,0.000000E+00 +2097156,fr,1,3.850000E+00,7.178840E+00,4.775985E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +2097159,fr,2,3.850000E+00,7.178840E+00,4.775985E+01,5.000000E+00,Active Shallow Crust,2.400115E+02,5.799740E+01,0.000000E+00 +2097162,fr,1,3.850000E+00,7.178840E+00,4.775985E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,-9.000000E+01 +2097166,fr,1,3.850000E+00,7.178840E+00,4.775985E+01,1.500000E+01,Active Shallow Crust,1.288953E+02,8.999281E+01,0.000000E+00 +2097168,fr,2,3.950000E+00,7.178840E+00,4.775985E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999145E+01,0.000000E+00 +2097169,fr,1,3.950000E+00,7.178840E+00,4.775985E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999145E+01,0.000000E+00 +2097180,fr,1,4.050000E+00,7.178840E+00,4.775985E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +2097181,fr,1,4.050000E+00,7.178840E+00,4.775985E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +2097186,fr,1,4.050000E+00,7.178840E+00,4.775985E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998843E+01,-9.000000E+01 +2097192,fr,1,4.150000E+00,7.178840E+00,4.775985E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2097204,fr,1,4.250000E+00,7.178840E+00,4.775985E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +2097210,fr,1,4.250000E+00,7.178840E+00,4.775985E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,-9.000000E+01 +2097228,fr,4,4.450000E+00,7.178840E+00,4.775985E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +2097229,fr,1,4.450000E+00,7.178840E+00,4.775985E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +2097240,fr,1,4.550000E+00,7.178840E+00,4.775985E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998928E+01,0.000000E+00 +2097243,fr,1,4.550000E+00,7.178840E+00,4.775985E+01,5.000000E+00,Active Shallow Crust,2.400099E+02,5.799750E+01,0.000000E+00 +2097277,fr,1,4.850000E+00,7.178840E+00,4.775985E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +2097324,fr,1,5.250000E+00,7.178840E+00,4.775985E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +2097337,fr,1,5.350000E+00,7.178840E+00,4.775985E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2097600,fr,2,3.550000E+00,2.829920E+00,4.818670E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2097616,fr,1,3.650000E+00,2.829920E+00,4.818670E+01,1.500000E+01,Active Shallow Crust,2.400016E+02,5.801250E+01,0.000000E+00 +2097660,fr,1,4.050000E+00,2.829920E+00,4.818670E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +2098081,fr,1,3.550000E+00,-1.299310E+00,4.968134E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +2098140,fr,1,4.050000E+00,-1.299310E+00,4.968134E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2098213,fr,1,4.650000E+00,-1.299310E+00,4.968134E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2098227,fr,1,4.750000E+00,-1.299310E+00,4.968134E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.800479E+01,0.000000E+00 +2098236,fr,1,4.850000E+00,-1.299310E+00,4.968134E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2098278,fr,1,5.150000E+00,-1.299310E+00,4.968134E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +2098378,fr,1,5.950000E+00,-1.299310E+00,4.968134E+01,1.500000E+01,Active Shallow Crust,1.288605E+02,8.998804E+01,0.000000E+00 +2098585,fr,1,3.750000E+00,1.934250E+00,4.735426E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +2098599,fr,1,3.850000E+00,1.934250E+00,4.735426E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799787E+01,0.000000E+00 +2098621,fr,1,4.050000E+00,1.934250E+00,4.735426E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +2098632,fr,2,4.150000E+00,1.934250E+00,4.735426E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +2098692,fr,1,4.650000E+00,1.934250E+00,4.735426E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +2098856,fr,1,5.950000E+00,1.934250E+00,4.735426E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +2099052,fr,1,3.650000E+00,-2.176000E+00,5.081429E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998864E+01,0.000000E+00 +2099089,fr,1,3.950000E+00,-2.176000E+00,5.081429E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +2099160,fr,1,4.550000E+00,-2.176000E+00,5.081429E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +2099527,fr,1,3.550000E+00,-7.016500E-01,4.998368E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,-9.000000E+01 +2100012,fr,1,3.650000E+00,6.177900E+00,5.175277E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998887E+01,0.000000E+00 +2100099,fr,1,4.350000E+00,6.177900E+00,5.175277E+01,5.000000E+00,Active Shallow Crust,2.400095E+02,5.799619E+01,0.000000E+00 +2100145,fr,1,4.750000E+00,6.177900E+00,5.175277E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +2100417,fr,1,6.950000E+00,6.177884E+00,5.175275E+01,1.509976E+01,Active Shallow Crust,1.287655E+02,8.999042E+01,0.000000E+00 +2100480,fr,1,3.550000E+00,2.853900E+00,4.923265E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +2100481,fr,1,3.550000E+00,2.853900E+00,4.923265E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +2100552,fr,1,4.150000E+00,2.853900E+00,4.923265E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2100960,fr,2,3.550000E+00,-3.729670E+00,4.827643E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2100966,fr,1,3.550000E+00,-3.729670E+00,4.827643E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,-9.000000E+01 +2100972,fr,2,3.650000E+00,-3.729670E+00,4.827643E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999103E+01,0.000000E+00 +2100996,fr,1,3.850000E+00,-3.729670E+00,4.827643E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +2101005,fr,1,3.850000E+00,-3.729670E+00,4.827643E+01,5.000000E+00,Active Shallow Crust,1.288955E+02,8.999287E+01,0.000000E+00 +2101008,fr,1,3.950000E+00,-3.729670E+00,4.827643E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998941E+01,0.000000E+00 +2101020,fr,2,4.050000E+00,-3.729670E+00,4.827643E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +2101056,fr,2,4.350000E+00,-3.729670E+00,4.827643E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +2101071,fr,1,4.450000E+00,-3.729670E+00,4.827643E+01,5.000000E+00,Active Shallow Crust,2.400056E+02,5.799493E+01,0.000000E+00 +2101107,fr,1,4.750000E+00,-3.729670E+00,4.827643E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.800471E+01,0.000000E+00 +2101116,fr,1,4.850000E+00,-3.729670E+00,4.827643E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2101117,fr,1,4.850000E+00,-3.729670E+00,4.827643E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2101443,fr,1,3.550000E+00,6.352980E+00,4.360682E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799854E+01,0.000000E+00 +2101447,fr,1,3.550000E+00,6.352980E+00,4.360682E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999261E+01,-9.000000E+01 +2101465,fr,2,3.750000E+00,6.352980E+00,4.360682E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998840E+01,0.000000E+00 +2101476,fr,1,3.850000E+00,6.352980E+00,4.360682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +2101488,fr,1,3.950000E+00,6.352980E+00,4.360682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +2101494,fr,1,3.950000E+00,6.352980E+00,4.360682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,-9.000000E+01 +2101500,fr,3,4.050000E+00,6.352980E+00,4.360682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999179E+01,0.000000E+00 +2101506,fr,1,4.050000E+00,6.352980E+00,4.360682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999169E+01,-9.000000E+01 +2101518,fr,1,4.150000E+00,6.352980E+00,4.360682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998889E+01,-9.000000E+01 +2101533,fr,1,4.250000E+00,6.352980E+00,4.360682E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.998084E+01,0.000000E+00 +2101680,fr,1,5.550000E+00,6.352980E+00,4.360682E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +2101923,fr,2,3.550000E+00,8.260000E-02,4.467722E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799812E+01,0.000000E+00 +2101941,fr,1,3.650000E+00,8.260000E-02,4.467722E+01,5.000000E+00,Active Shallow Crust,1.289006E+02,8.996352E+01,0.000000E+00 +2101956,fr,1,3.850000E+00,8.260000E-02,4.467722E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2101980,fr,1,4.050000E+00,8.260000E-02,4.467722E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2102073,fr,1,4.750000E+00,8.260000E-02,4.467722E+01,5.000000E+00,Active Shallow Crust,1.288892E+02,8.998808E+01,0.000000E+00 +2102893,fr,1,3.650000E+00,9.440030E+00,4.889128E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998818E+01,0.000000E+00 +2102904,fr,1,3.750000E+00,9.440030E+00,4.889128E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +2102928,fr,1,3.950000E+00,9.440030E+00,4.889128E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999163E+01,0.000000E+00 +2102932,fr,1,3.950000E+00,9.440030E+00,4.889128E+01,1.500000E+01,Active Shallow Crust,2.400209E+02,5.800476E+01,0.000000E+00 +2102940,fr,1,4.050000E+00,9.440030E+00,4.889128E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999255E+01,0.000000E+00 +2103112,fr,1,5.450000E+00,9.440030E+00,4.889128E+01,1.500000E+01,Active Shallow Crust,2.400310E+02,5.799899E+01,0.000000E+00 +2103456,fr,1,4.350000E+00,-6.430820E+00,4.881215E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +2104320,fr,2,3.550000E+00,-3.589720E+00,4.346532E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998902E+01,0.000000E+00 +2104321,fr,1,3.550000E+00,-3.589720E+00,4.346532E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998902E+01,0.000000E+00 +2104325,fr,1,3.550000E+00,-3.589720E+00,4.346532E+01,2.750000E+01,Active Shallow Crust,2.400120E+02,5.799806E+01,0.000000E+00 +2104326,fr,1,3.550000E+00,-3.589720E+00,4.346532E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998889E+01,-9.000000E+01 +2104327,fr,1,3.550000E+00,-3.589720E+00,4.346532E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998889E+01,-9.000000E+01 +2104344,fr,1,3.750000E+00,-3.589720E+00,4.346532E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999128E+01,0.000000E+00 +2104347,fr,2,3.750000E+00,-3.589720E+00,4.346532E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.801766E+01,0.000000E+00 +2104381,fr,1,4.050000E+00,-3.589720E+00,4.346532E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +2104407,fr,1,4.250000E+00,-3.589720E+00,4.346532E+01,5.000000E+00,Active Shallow Crust,2.400070E+02,5.799423E+01,0.000000E+00 +2104423,fr,1,4.350000E+00,-3.589720E+00,4.346532E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +2104452,fr,1,4.650000E+00,-3.589720E+00,4.346532E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2104808,fr,1,3.550000E+00,1.411240E+00,5.305181E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,-9.000000E+01 +2104836,fr,1,3.850000E+00,1.411240E+00,5.305181E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +2104848,fr,1,3.950000E+00,1.411240E+00,5.305181E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +2105760,fr,1,3.550000E+00,8.858500E-01,4.216323E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +2105773,fr,1,3.650000E+00,8.858500E-01,4.216323E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2105784,fr,1,3.750000E+00,8.858500E-01,4.216323E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +2105809,fr,1,3.950000E+00,8.858500E-01,4.216323E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2105844,fr,1,4.250000E+00,8.858500E-01,4.216323E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2106252,fr,1,3.650000E+00,2.239220E+00,5.294320E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +2106255,fr,1,3.650000E+00,2.239220E+00,5.294320E+01,5.000000E+00,Active Shallow Crust,2.400018E+02,5.801314E+01,0.000000E+00 +2106721,fr,1,3.550000E+00,3.242290E+00,5.245264E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +2106744,fr,1,3.750000E+00,3.242290E+00,5.245264E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2107200,fr,5,3.550000E+00,6.614920E+00,4.627370E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999303E+01,0.000000E+00 +2107201,fr,2,3.550000E+00,6.614920E+00,4.627370E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999303E+01,0.000000E+00 +2107202,fr,1,3.550000E+00,6.614920E+00,4.627370E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999303E+01,0.000000E+00 +2107209,fr,1,3.550000E+00,6.614920E+00,4.627370E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999303E+01,0.000000E+00 +2107212,fr,2,3.650000E+00,6.614920E+00,4.627370E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998758E+01,0.000000E+00 +2107213,fr,1,3.650000E+00,6.614920E+00,4.627370E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998758E+01,0.000000E+00 +2107214,fr,1,3.650000E+00,6.614920E+00,4.627370E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998758E+01,0.000000E+00 +2107215,fr,1,3.650000E+00,6.614920E+00,4.627370E+01,5.000000E+00,Active Shallow Crust,2.400018E+02,5.801225E+01,0.000000E+00 +2107222,fr,1,3.650000E+00,6.614920E+00,4.627370E+01,1.500000E+01,Active Shallow Crust,1.289013E+02,8.996352E+01,0.000000E+00 +2107224,fr,1,3.750000E+00,6.614920E+00,4.627370E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998893E+01,0.000000E+00 +2107225,fr,1,3.750000E+00,6.614920E+00,4.627370E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998893E+01,0.000000E+00 +2107230,fr,1,3.750000E+00,6.614920E+00,4.627370E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998880E+01,-9.000000E+01 +2107233,fr,2,3.750000E+00,6.614920E+00,4.627370E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.996690E+01,0.000000E+00 +2107236,fr,2,3.850000E+00,6.614920E+00,4.627370E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2107237,fr,1,3.850000E+00,6.614920E+00,4.627370E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2107248,fr,3,3.950000E+00,6.614920E+00,4.627370E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +2107252,fr,1,3.950000E+00,6.614920E+00,4.627370E+01,1.500000E+01,Active Shallow Crust,2.400199E+02,5.800556E+01,0.000000E+00 +2107254,fr,1,3.950000E+00,6.614920E+00,4.627370E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999110E+01,-9.000000E+01 +2107265,fr,1,4.050000E+00,6.614920E+00,4.627370E+01,2.750000E+01,Active Shallow Crust,2.400057E+02,5.800574E+01,0.000000E+00 +2107272,fr,1,4.150000E+00,6.614920E+00,4.627370E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +2107273,fr,1,4.150000E+00,6.614920E+00,4.627370E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +2107274,fr,1,4.150000E+00,6.614920E+00,4.627370E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +2107285,fr,1,4.250000E+00,6.614920E+00,4.627370E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +2107297,fr,1,4.350000E+00,6.614920E+00,4.627370E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998890E+01,0.000000E+00 +2107308,fr,1,4.450000E+00,6.614920E+00,4.627370E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2107309,fr,1,4.450000E+00,6.614920E+00,4.627370E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2107310,fr,1,4.450000E+00,6.614920E+00,4.627370E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2107320,fr,1,4.550000E+00,6.614920E+00,4.627370E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +2107326,fr,1,4.550000E+00,6.614920E+00,4.627370E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999108E+01,-9.000000E+01 +2107332,fr,1,4.650000E+00,6.614920E+00,4.627370E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2107393,fr,1,5.150000E+00,6.614920E+00,4.627370E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2107394,fr,1,5.150000E+00,6.614920E+00,4.627370E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2107441,fr,1,5.550000E+00,6.614920E+00,4.627370E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2107572,fr,1,6.650000E+00,6.614933E+00,4.627370E+01,1.068981E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2107683,fr,1,3.550000E+00,6.754090E+00,5.047684E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799858E+01,0.000000E+00 +2107692,fr,1,3.650000E+00,6.754090E+00,5.047684E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +2107700,fr,1,3.650000E+00,6.754090E+00,5.047684E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998843E+01,-9.000000E+01 +2107704,fr,1,3.750000E+00,6.754090E+00,5.047684E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2107741,fr,2,4.050000E+00,6.754090E+00,5.047684E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +2107752,fr,1,4.150000E+00,6.754090E+00,5.047684E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +2107776,fr,1,4.350000E+00,6.754090E+00,5.047684E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +2107788,fr,1,4.450000E+00,6.754090E+00,5.047684E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999089E+01,0.000000E+00 +2107812,fr,1,4.650000E+00,6.754090E+00,5.047684E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +2107860,fr,1,5.050000E+00,6.754090E+00,5.047684E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +2108161,fr,1,3.550000E+00,-2.780350E+00,4.930526E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2108172,fr,1,3.650000E+00,-2.780350E+00,4.930526E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999121E+01,0.000000E+00 +2108185,fr,1,3.750000E+00,-2.780350E+00,4.930526E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +2108201,fr,1,3.850000E+00,-2.780350E+00,4.930526E+01,2.750000E+01,Active Shallow Crust,2.400112E+02,5.799802E+01,0.000000E+00 +2108220,fr,1,4.050000E+00,-2.780350E+00,4.930526E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +2108281,fr,1,4.550000E+00,-2.780350E+00,4.930526E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +2108641,fr,1,3.550000E+00,5.014700E+00,4.975755E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998697E+01,0.000000E+00 +2108700,fr,1,4.050000E+00,5.014700E+00,4.975755E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +2108718,fr,1,4.150000E+00,5.014700E+00,4.975755E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +2109120,fr,1,3.550000E+00,-7.381000E-02,4.922808E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2109121,fr,1,3.550000E+00,-7.381000E-02,4.922808E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2109136,fr,2,3.650000E+00,-7.381000E-02,4.922808E+01,1.500000E+01,Active Shallow Crust,2.400014E+02,5.801295E+01,0.000000E+00 +2109156,fr,1,3.850000E+00,-7.381000E-02,4.922808E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2109187,fr,1,4.050000E+00,-7.381000E-02,4.922808E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +2109205,fr,1,4.250000E+00,-7.381000E-02,4.922808E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2109226,fr,1,4.350000E+00,-7.381000E-02,4.922808E+01,1.500000E+01,Active Shallow Crust,1.288973E+02,8.998276E+01,0.000000E+00 +2109230,fr,1,4.450000E+00,-7.381000E-02,4.922808E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2109253,fr,1,4.650000E+00,-7.381000E-02,4.922808E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2109277,fr,1,4.850000E+00,-7.381000E-02,4.922808E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2109288,fr,1,4.950000E+00,-7.381000E-02,4.922808E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2109313,fr,1,5.150000E+00,-7.381000E-02,4.922808E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2109600,fr,2,3.550000E+00,4.126130E+00,4.542170E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999292E+01,0.000000E+00 +2109612,fr,1,3.650000E+00,4.126130E+00,4.542170E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998738E+01,0.000000E+00 +2109627,fr,1,3.750000E+00,4.126130E+00,4.542170E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.801694E+01,0.000000E+00 +2109628,fr,1,3.750000E+00,4.126130E+00,4.542170E+01,1.500000E+01,Active Shallow Crust,2.400091E+02,5.801694E+01,0.000000E+00 +2109648,fr,1,3.950000E+00,4.126130E+00,4.542170E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +2109649,fr,1,3.950000E+00,4.126130E+00,4.542170E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +2109672,fr,1,4.150000E+00,4.126130E+00,4.542170E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +2109722,fr,1,4.550000E+00,4.126130E+00,4.542170E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +2109768,fr,1,4.950000E+00,4.126130E+00,4.542170E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +2109787,fr,1,5.050000E+00,4.126130E+00,4.542170E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,-9.000000E+01 +2110080,fr,2,3.550000E+00,1.597060E+00,4.746853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +2110092,fr,1,3.650000E+00,1.597060E+00,4.746853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +2110116,fr,1,3.850000E+00,1.597060E+00,4.746853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +2110117,fr,1,3.850000E+00,1.597060E+00,4.746853E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +2110135,fr,1,3.950000E+00,1.597060E+00,4.746853E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,-9.000000E+01 +2110165,fr,1,4.250000E+00,1.597060E+00,4.746853E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2110176,fr,1,4.350000E+00,1.597060E+00,4.746853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +2110560,fr,1,3.550000E+00,4.337210E+00,4.545199E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999293E+01,0.000000E+00 +2110596,fr,1,3.850000E+00,4.337210E+00,4.545199E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2110608,fr,1,3.950000E+00,4.337210E+00,4.545199E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +2110629,fr,1,4.050000E+00,4.337210E+00,4.545199E+01,5.000000E+00,Active Shallow Crust,1.288902E+02,8.999403E+01,0.000000E+00 +2110662,fr,1,4.350000E+00,4.337210E+00,4.545199E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998860E+01,-9.000000E+01 +2112024,fr,1,3.750000E+00,1.891780E+00,4.867135E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +2112217,fr,1,5.350000E+00,1.891780E+00,4.867135E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2112480,fr,1,3.550000E+00,6.363790E+00,4.427316E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999278E+01,0.000000E+00 +2112481,fr,1,3.550000E+00,6.363790E+00,4.427316E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999278E+01,0.000000E+00 +2112483,fr,1,3.550000E+00,6.363790E+00,4.427316E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799833E+01,0.000000E+00 +2112492,fr,3,3.650000E+00,6.363790E+00,4.427316E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998713E+01,0.000000E+00 +2112494,fr,1,3.650000E+00,6.363790E+00,4.427316E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998713E+01,0.000000E+00 +2112504,fr,3,3.750000E+00,6.363790E+00,4.427316E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998853E+01,0.000000E+00 +2112523,fr,1,3.850000E+00,6.363790E+00,4.427316E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +2112526,fr,1,3.850000E+00,6.363790E+00,4.427316E+01,1.500000E+01,Active Shallow Crust,1.288952E+02,8.999489E+01,0.000000E+00 +2112528,fr,2,3.950000E+00,6.363790E+00,4.427316E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999089E+01,0.000000E+00 +2112541,fr,2,4.050000E+00,6.363790E+00,4.427316E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999188E+01,0.000000E+00 +2112550,fr,1,4.050000E+00,6.363790E+00,4.427316E+01,1.500000E+01,Active Shallow Crust,1.288898E+02,8.999391E+01,0.000000E+00 +2112559,fr,1,4.150000E+00,6.363790E+00,4.427316E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998902E+01,-9.000000E+01 +2112576,fr,1,4.350000E+00,6.363790E+00,4.427316E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999138E+01,0.000000E+00 +2112642,fr,1,4.850000E+00,6.363790E+00,4.427316E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,-9.000000E+01 +2112648,fr,1,4.950000E+00,6.363790E+00,4.427316E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2112657,fr,1,4.950000E+00,6.363790E+00,4.427316E+01,5.000000E+00,Active Shallow Crust,1.288909E+02,8.998967E+01,0.000000E+00 +2112723,fr,1,5.550000E+00,6.363790E+00,4.427316E+01,5.000000E+00,Active Shallow Crust,2.400271E+02,5.800210E+01,0.000000E+00 +2112807,fr,1,6.250000E+00,6.360965E+00,4.427666E+01,5.719927E+00,Active Shallow Crust,2.400676E+02,5.800036E+01,0.000000E+00 +2113440,fr,2,3.550000E+00,-1.331610E+00,4.495778E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +2113464,fr,1,3.750000E+00,-1.331610E+00,4.495778E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +2113487,fr,1,3.850000E+00,-1.331610E+00,4.495778E+01,2.750000E+01,Active Shallow Crust,1.288958E+02,8.999432E+01,0.000000E+00 +2113503,fr,1,4.050000E+00,-1.331610E+00,4.495778E+01,5.000000E+00,Active Shallow Crust,2.400057E+02,5.800583E+01,0.000000E+00 +2113920,fr,1,3.550000E+00,2.363070E+00,5.012566E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +2113924,fr,1,3.550000E+00,2.363070E+00,5.012566E+01,1.500000E+01,Active Shallow Crust,2.400125E+02,5.799817E+01,0.000000E+00 +2113932,fr,1,3.650000E+00,2.363070E+00,5.012566E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999136E+01,0.000000E+00 +2113945,fr,1,3.750000E+00,2.363070E+00,5.012566E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +2113956,fr,1,3.850000E+00,2.363070E+00,5.012566E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +2113989,fr,1,4.050000E+00,2.363070E+00,5.012566E+01,5.000000E+00,Active Shallow Crust,1.288898E+02,8.999364E+01,0.000000E+00 +2113992,fr,1,4.150000E+00,2.363070E+00,5.012566E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +2114098,fr,1,4.950000E+00,2.363070E+00,5.012566E+01,1.500000E+01,Active Shallow Crust,1.288882E+02,8.998988E+01,0.000000E+00 +2114400,fr,2,3.550000E+00,-1.023580E+00,4.634729E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +2114401,fr,1,3.550000E+00,-1.023580E+00,4.634729E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +2114402,fr,2,3.550000E+00,-1.023580E+00,4.634729E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +2114405,fr,1,3.550000E+00,-1.023580E+00,4.634729E+01,2.750000E+01,Active Shallow Crust,2.400123E+02,5.799790E+01,0.000000E+00 +2114406,fr,1,3.550000E+00,-1.023580E+00,4.634729E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,-9.000000E+01 +2114412,fr,1,3.650000E+00,-1.023580E+00,4.634729E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999069E+01,0.000000E+00 +2114414,fr,1,3.650000E+00,-1.023580E+00,4.634729E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999069E+01,0.000000E+00 +2114416,fr,2,3.650000E+00,-1.023580E+00,4.634729E+01,1.500000E+01,Active Shallow Crust,2.400010E+02,5.801301E+01,0.000000E+00 +2114418,fr,1,3.650000E+00,-1.023580E+00,4.634729E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,-9.000000E+01 +2114419,fr,1,3.650000E+00,-1.023580E+00,4.634729E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,-9.000000E+01 +2114428,fr,1,3.750000E+00,-1.023580E+00,4.634729E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.801753E+01,0.000000E+00 +2114430,fr,1,3.750000E+00,-1.023580E+00,4.634729E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,-9.000000E+01 +2114431,fr,1,3.750000E+00,-1.023580E+00,4.634729E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,-9.000000E+01 +2114437,fr,1,3.850000E+00,-1.023580E+00,4.634729E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2114448,fr,1,3.950000E+00,-1.023580E+00,4.634729E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +2114460,fr,2,4.050000E+00,-1.023580E+00,4.634729E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +2114466,fr,1,4.050000E+00,-1.023580E+00,4.634729E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +2114482,fr,1,4.150000E+00,-1.023580E+00,4.634729E+01,1.500000E+01,Active Shallow Crust,1.288978E+02,8.999346E+01,0.000000E+00 +2114496,fr,1,4.350000E+00,-1.023580E+00,4.634729E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +2114498,fr,1,4.350000E+00,-1.023580E+00,4.634729E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +2114505,fr,1,4.350000E+00,-1.023580E+00,4.634729E+01,5.000000E+00,Active Shallow Crust,1.288977E+02,8.998277E+01,0.000000E+00 +2114547,fr,1,4.750000E+00,-1.023580E+00,4.634729E+01,5.000000E+00,Active Shallow Crust,2.400075E+02,5.800445E+01,0.000000E+00 +2114880,fr,2,3.550000E+00,-6.505600E-01,4.932538E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2114881,fr,1,3.550000E+00,-6.505600E-01,4.932538E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2114883,fr,2,3.550000E+00,-6.505600E-01,4.932538E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799828E+01,0.000000E+00 +2114889,fr,2,3.550000E+00,-6.505600E-01,4.932538E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999384E+01,0.000000E+00 +2114892,fr,2,3.650000E+00,-6.505600E-01,4.932538E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2114893,fr,1,3.650000E+00,-6.505600E-01,4.932538E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2114904,fr,1,3.750000E+00,-6.505600E-01,4.932538E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +2114923,fr,1,3.850000E+00,-6.505600E-01,4.932538E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +2114985,fr,1,4.350000E+00,-6.505600E-01,4.932538E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.998278E+01,0.000000E+00 +2115013,fr,1,4.650000E+00,-6.505600E-01,4.932538E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2115072,fr,2,5.150000E+00,-6.505600E-01,4.932538E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2115360,fr,1,3.550000E+00,2.265680E+00,4.894968E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2115414,fr,1,3.950000E+00,2.265680E+00,4.894968E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,-9.000000E+01 +2115432,fr,1,4.150000E+00,2.265680E+00,4.894968E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2116320,fr,3,3.550000E+00,6.207800E-01,4.607104E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +2116332,fr,1,3.650000E+00,6.207800E-01,4.607104E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +2116344,fr,1,3.750000E+00,6.207800E-01,4.607104E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +2116345,fr,1,3.750000E+00,6.207800E-01,4.607104E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +2116377,fr,1,3.950000E+00,6.207800E-01,4.607104E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.999365E+01,0.000000E+00 +2116392,fr,1,4.150000E+00,6.207800E-01,4.607104E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +2116402,fr,1,4.150000E+00,6.207800E-01,4.607104E+01,1.500000E+01,Active Shallow Crust,1.288975E+02,8.999387E+01,0.000000E+00 +2116440,fr,1,4.550000E+00,6.207800E-01,4.607104E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2116452,fr,1,4.650000E+00,6.207800E-01,4.607104E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +2116467,fr,1,4.750000E+00,6.207800E-01,4.607104E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.800445E+01,0.000000E+00 +2116571,fr,1,5.550000E+00,6.207800E-01,4.607104E+01,2.750000E+01,Active Shallow Crust,1.288765E+02,8.998979E+01,0.000000E+00 +2116800,fr,1,3.550000E+00,3.648130E+00,4.855998E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2116801,fr,1,3.550000E+00,3.648130E+00,4.855998E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2116824,fr,1,3.750000E+00,3.648130E+00,4.855998E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +2116848,fr,1,3.950000E+00,3.648130E+00,4.855998E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +2116884,fr,1,4.250000E+00,3.648130E+00,4.855998E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +2116885,fr,1,4.250000E+00,3.648130E+00,4.855998E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +2117292,fr,1,3.650000E+00,6.889390E+00,5.036937E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998853E+01,0.000000E+00 +2117305,fr,2,3.750000E+00,6.889390E+00,5.036937E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +2117316,fr,1,3.850000E+00,6.889390E+00,5.036937E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999089E+01,0.000000E+00 +2117324,fr,1,3.850000E+00,6.889390E+00,5.036937E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999078E+01,-9.000000E+01 +2117328,fr,1,3.950000E+00,6.889390E+00,5.036937E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999188E+01,0.000000E+00 +2117329,fr,1,3.950000E+00,6.889390E+00,5.036937E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999188E+01,0.000000E+00 +2117350,fr,1,4.050000E+00,6.889390E+00,5.036937E+01,1.500000E+01,Active Shallow Crust,1.288895E+02,8.999458E+01,0.000000E+00 +2117407,fr,1,4.550000E+00,6.889390E+00,5.036937E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998971E+01,-9.000000E+01 +2117410,fr,1,4.550000E+00,6.889390E+00,5.036937E+01,1.500000E+01,Active Shallow Crust,1.288930E+02,8.998540E+01,0.000000E+00 +2117760,fr,1,3.550000E+00,-2.560320E+00,4.851658E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2117761,fr,1,3.550000E+00,-2.560320E+00,4.851658E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2117784,fr,2,3.750000E+00,-2.560320E+00,4.851658E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +2117787,fr,1,3.750000E+00,-2.560320E+00,4.851658E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.801743E+01,0.000000E+00 +2117809,fr,1,3.950000E+00,-2.560320E+00,4.851658E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +2117811,fr,1,3.950000E+00,-2.560320E+00,4.851658E+01,5.000000E+00,Active Shallow Crust,2.400203E+02,5.800491E+01,0.000000E+00 +2117827,fr,1,4.050000E+00,-2.560320E+00,4.851658E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999050E+01,-9.000000E+01 +2117847,fr,1,4.250000E+00,-2.560320E+00,4.851658E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.799407E+01,0.000000E+00 +2117849,fr,1,4.250000E+00,-2.560320E+00,4.851658E+01,2.750000E+01,Active Shallow Crust,2.400079E+02,5.799407E+01,0.000000E+00 +2117856,fr,2,4.350000E+00,-2.560320E+00,4.851658E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +2117905,fr,1,4.750000E+00,-2.560320E+00,4.851658E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2117964,fr,1,5.250000E+00,-2.560320E+00,4.851658E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +2118264,fr,1,3.750000E+00,4.388400E+00,4.942087E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +2118720,fr,3,3.550000E+00,7.048530E+00,4.787245E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999323E+01,0.000000E+00 +2118721,fr,1,3.550000E+00,7.048530E+00,4.787245E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999323E+01,0.000000E+00 +2118722,fr,1,3.550000E+00,7.048530E+00,4.787245E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999323E+01,0.000000E+00 +2118723,fr,1,3.550000E+00,7.048530E+00,4.787245E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799775E+01,0.000000E+00 +2118732,fr,2,3.650000E+00,7.048530E+00,4.787245E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998795E+01,0.000000E+00 +2118733,fr,1,3.650000E+00,7.048530E+00,4.787245E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998795E+01,0.000000E+00 +2118735,fr,1,3.650000E+00,7.048530E+00,4.787245E+01,5.000000E+00,Active Shallow Crust,2.400026E+02,5.801211E+01,0.000000E+00 +2118738,fr,1,3.650000E+00,7.048530E+00,4.787245E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998780E+01,-9.000000E+01 +2118741,fr,1,3.650000E+00,7.048530E+00,4.787245E+01,5.000000E+00,Active Shallow Crust,1.288998E+02,8.996355E+01,0.000000E+00 +2118744,fr,3,3.750000E+00,7.048530E+00,4.787245E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +2118745,fr,1,3.750000E+00,7.048530E+00,4.787245E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +2118756,fr,3,3.850000E+00,7.048530E+00,4.787245E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +2118765,fr,1,3.850000E+00,7.048530E+00,4.787245E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999282E+01,0.000000E+00 +2118771,fr,1,3.950000E+00,7.048530E+00,4.787245E+01,5.000000E+00,Active Shallow Crust,2.400198E+02,5.800490E+01,0.000000E+00 +2118772,fr,1,3.950000E+00,7.048530E+00,4.787245E+01,1.500000E+01,Active Shallow Crust,2.400198E+02,5.800490E+01,0.000000E+00 +2118780,fr,1,4.050000E+00,7.048530E+00,4.787245E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +2118783,fr,1,4.050000E+00,7.048530E+00,4.787245E+01,5.000000E+00,Active Shallow Crust,2.400058E+02,5.800573E+01,0.000000E+00 +2118793,fr,2,4.150000E+00,7.048530E+00,4.787245E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +2118805,fr,1,4.250000E+00,7.048530E+00,4.787245E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +2118820,fr,1,4.350000E+00,7.048530E+00,4.787245E+01,1.500000E+01,Active Shallow Crust,2.400086E+02,5.799611E+01,0.000000E+00 +2118834,fr,1,4.450000E+00,7.048530E+00,4.787245E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,-9.000000E+01 +2118844,fr,1,4.550000E+00,7.048530E+00,4.787245E+01,1.500000E+01,Active Shallow Crust,2.400102E+02,5.799740E+01,0.000000E+00 +2118864,fr,1,4.750000E+00,7.048530E+00,4.787245E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2118865,fr,1,4.750000E+00,7.048530E+00,4.787245E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2118888,fr,1,4.950000E+00,7.048530E+00,4.787245E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +2118913,fr,1,5.150000E+00,7.048530E+00,4.787245E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +2118921,fr,1,5.150000E+00,7.048530E+00,4.787245E+01,5.000000E+00,Active Shallow Crust,1.288831E+02,8.999094E+01,0.000000E+00 +2118924,fr,1,5.250000E+00,7.048530E+00,4.787245E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +2119044,fr,1,6.250000E+00,7.048534E+00,4.787245E+01,6.744814E+00,Active Shallow Crust,3.599998E+02,8.999002E+01,0.000000E+00 +2119250,fr,1,3.950000E+00,2.492880E+00,4.830388E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +2119296,fr,1,4.350000E+00,2.492880E+00,4.830388E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +2119308,fr,1,4.450000E+00,2.492880E+00,4.830388E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +2119680,fr,2,3.550000E+00,6.810730E+00,4.339458E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999268E+01,0.000000E+00 +2119693,fr,1,3.650000E+00,6.810730E+00,4.339458E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998694E+01,0.000000E+00 +2119812,fr,1,4.650000E+00,6.810730E+00,4.339458E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +2120163,fr,1,3.550000E+00,1.693200E+00,4.160069E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799807E+01,0.000000E+00 +2120169,fr,1,3.550000E+00,1.693200E+00,4.160069E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999435E+01,0.000000E+00 +2120173,fr,1,3.650000E+00,1.693200E+00,4.160069E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +2120176,fr,1,3.650000E+00,1.693200E+00,4.160069E+01,1.500000E+01,Active Shallow Crust,2.400003E+02,5.801284E+01,0.000000E+00 +2120181,fr,1,3.650000E+00,1.693200E+00,4.160069E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.996358E+01,0.000000E+00 +2120184,fr,2,3.750000E+00,1.693200E+00,4.160069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +2120196,fr,1,3.850000E+00,1.693200E+00,4.160069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +2120206,fr,1,3.850000E+00,1.693200E+00,4.160069E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.999332E+01,0.000000E+00 +2120210,fr,1,3.950000E+00,1.693200E+00,4.160069E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +2120289,fr,1,4.550000E+00,1.693200E+00,4.160069E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.998579E+01,0.000000E+00 +2120640,fr,1,3.550000E+00,-2.998830E+00,4.847889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2120641,fr,1,3.550000E+00,-2.998830E+00,4.847889E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2120652,fr,2,3.650000E+00,-2.998830E+00,4.847889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +2120653,fr,1,3.650000E+00,-2.998830E+00,4.847889E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +2120659,fr,1,3.650000E+00,-2.998830E+00,4.847889E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999096E+01,-9.000000E+01 +2120662,fr,1,3.650000E+00,-2.998830E+00,4.847889E+01,1.500000E+01,Active Shallow Crust,1.289007E+02,8.996356E+01,0.000000E+00 +2120664,fr,1,3.750000E+00,-2.998830E+00,4.847889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +2120670,fr,2,3.750000E+00,-2.998830E+00,4.847889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998926E+01,-9.000000E+01 +2120688,fr,1,3.950000E+00,-2.998830E+00,4.847889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +2120700,fr,1,4.050000E+00,-2.998830E+00,4.847889E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +2120710,fr,1,4.050000E+00,-2.998830E+00,4.847889E+01,1.500000E+01,Active Shallow Crust,1.288902E+02,8.999436E+01,0.000000E+00 +2120713,fr,1,4.150000E+00,-2.998830E+00,4.847889E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +2120745,fr,1,4.350000E+00,-2.998830E+00,4.847889E+01,5.000000E+00,Active Shallow Crust,1.288975E+02,8.998262E+01,0.000000E+00 +2120749,fr,1,4.450000E+00,-2.998830E+00,4.847889E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +2120751,fr,1,4.450000E+00,-2.998830E+00,4.847889E+01,5.000000E+00,Active Shallow Crust,2.400056E+02,5.799483E+01,0.000000E+00 +2121129,fr,1,3.550000E+00,1.009560E+00,4.928663E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999342E+01,0.000000E+00 +2121144,fr,2,3.750000E+00,1.009560E+00,4.928663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +2121147,fr,1,3.750000E+00,1.009560E+00,4.928663E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.801755E+01,0.000000E+00 +2121602,fr,1,3.550000E+00,-3.419870E+00,4.680579E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +2121613,fr,1,3.650000E+00,-3.419870E+00,4.680579E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +2121652,fr,1,3.950000E+00,-3.419870E+00,4.680579E+01,1.500000E+01,Active Shallow Crust,2.400197E+02,5.800509E+01,0.000000E+00 +2122560,fr,1,3.550000E+00,4.424800E-01,5.083033E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +2122572,fr,1,3.650000E+00,4.424800E-01,5.083033E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2122584,fr,1,3.750000E+00,4.424800E-01,5.083033E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2122587,fr,1,3.750000E+00,4.424800E-01,5.083033E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.801768E+01,0.000000E+00 +2123040,fr,2,3.550000E+00,2.969660E+00,4.300692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998894E+01,0.000000E+00 +2123045,fr,1,3.550000E+00,2.969660E+00,4.300692E+01,2.750000E+01,Active Shallow Crust,2.400113E+02,5.799791E+01,0.000000E+00 +2123064,fr,1,3.750000E+00,2.969660E+00,4.300692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999121E+01,0.000000E+00 +2123065,fr,1,3.750000E+00,2.969660E+00,4.300692E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999121E+01,0.000000E+00 +2123091,fr,1,3.950000E+00,2.969660E+00,4.300692E+01,5.000000E+00,Active Shallow Crust,2.400189E+02,5.800492E+01,0.000000E+00 +2123113,fr,2,4.150000E+00,2.969660E+00,4.300692E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +2123218,fr,1,4.950000E+00,2.969660E+00,4.300692E+01,1.500000E+01,Active Shallow Crust,1.288913E+02,8.998981E+01,0.000000E+00 +2123523,fr,1,3.550000E+00,2.441270E+00,4.305737E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799783E+01,0.000000E+00 +2123532,fr,2,3.650000E+00,2.441270E+00,4.305737E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +2123539,fr,1,3.650000E+00,2.441270E+00,4.305737E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +2123544,fr,1,3.750000E+00,2.441270E+00,4.305737E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999122E+01,0.000000E+00 +2123547,fr,1,3.750000E+00,2.441270E+00,4.305737E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.801781E+01,0.000000E+00 +2123550,fr,1,3.750000E+00,2.441270E+00,4.305737E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999112E+01,-9.000000E+01 +2123568,fr,1,3.950000E+00,2.441270E+00,4.305737E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +2123569,fr,1,3.950000E+00,2.441270E+00,4.305737E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +2123577,fr,1,3.950000E+00,2.441270E+00,4.305737E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.999303E+01,0.000000E+00 +2123584,fr,1,4.050000E+00,2.441270E+00,4.305737E+01,1.500000E+01,Active Shallow Crust,2.400053E+02,5.800590E+01,0.000000E+00 +2123589,fr,1,4.050000E+00,2.441270E+00,4.305737E+01,5.000000E+00,Active Shallow Crust,1.288907E+02,8.999378E+01,0.000000E+00 +2123604,fr,1,4.250000E+00,2.441270E+00,4.305737E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2123607,fr,1,4.250000E+00,2.441270E+00,4.305737E+01,5.000000E+00,Active Shallow Crust,2.400071E+02,5.799386E+01,0.000000E+00 +2123643,fr,1,4.550000E+00,2.441270E+00,4.305737E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799716E+01,0.000000E+00 +2123677,fr,1,4.850000E+00,2.441270E+00,4.305737E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2123688,fr,1,4.950000E+00,2.441270E+00,4.305737E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +2123784,fr,1,5.750000E+00,2.441270E+00,4.305737E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2124000,fr,3,3.550000E+00,1.889620E+00,4.270228E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +2124003,fr,2,3.550000E+00,1.889620E+00,4.270228E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799838E+01,0.000000E+00 +2124006,fr,1,3.550000E+00,1.889620E+00,4.270228E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,-9.000000E+01 +2124012,fr,1,3.650000E+00,1.889620E+00,4.270228E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +2124016,fr,1,3.650000E+00,1.889620E+00,4.270228E+01,1.500000E+01,Active Shallow Crust,2.400004E+02,5.801295E+01,0.000000E+00 +2124024,fr,1,3.750000E+00,1.889620E+00,4.270228E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +2124025,fr,1,3.750000E+00,1.889620E+00,4.270228E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +2124036,fr,1,3.850000E+00,1.889620E+00,4.270228E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +2124038,fr,1,3.850000E+00,1.889620E+00,4.270228E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +2124046,fr,1,3.850000E+00,1.889620E+00,4.270228E+01,1.500000E+01,Active Shallow Crust,1.288958E+02,8.999409E+01,0.000000E+00 +2124048,fr,2,3.950000E+00,1.889620E+00,4.270228E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +2124050,fr,1,3.950000E+00,1.889620E+00,4.270228E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +2124060,fr,1,4.050000E+00,1.889620E+00,4.270228E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +2124061,fr,1,4.050000E+00,1.889620E+00,4.270228E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +2124064,fr,1,4.050000E+00,1.889620E+00,4.270228E+01,1.500000E+01,Active Shallow Crust,2.400052E+02,5.800563E+01,0.000000E+00 +2124480,fr,2,3.550000E+00,-9.611000E-01,4.608136E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +2124489,fr,1,3.550000E+00,-9.611000E-01,4.608136E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999388E+01,0.000000E+00 +2124492,fr,4,3.650000E+00,-9.611000E-01,4.608136E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +2124493,fr,2,3.650000E+00,-9.611000E-01,4.608136E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +2124504,fr,2,3.750000E+00,-9.611000E-01,4.608136E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +2124506,fr,1,3.750000E+00,-9.611000E-01,4.608136E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +2124516,fr,2,3.850000E+00,-9.611000E-01,4.608136E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2124517,fr,1,3.850000E+00,-9.611000E-01,4.608136E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2124519,fr,1,3.850000E+00,-9.611000E-01,4.608136E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799787E+01,0.000000E+00 +2124534,fr,1,3.950000E+00,-9.611000E-01,4.608136E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,-9.000000E+01 +2124540,fr,1,4.050000E+00,-9.611000E-01,4.608136E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2124555,fr,1,4.150000E+00,-9.611000E-01,4.608136E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799722E+01,0.000000E+00 +2124564,fr,1,4.250000E+00,-9.611000E-01,4.608136E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2124577,fr,1,4.350000E+00,-9.611000E-01,4.608136E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2124615,fr,1,4.650000E+00,-9.611000E-01,4.608136E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799421E+01,0.000000E+00 +2124709,fr,1,5.450000E+00,-9.611000E-01,4.608136E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2124960,fr,2,3.550000E+00,-2.488300E+00,4.825287E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2124972,fr,1,3.650000E+00,-2.488300E+00,4.825287E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999102E+01,0.000000E+00 +2124974,fr,2,3.650000E+00,-2.488300E+00,4.825287E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999102E+01,0.000000E+00 +2124987,fr,1,3.750000E+00,-2.488300E+00,4.825287E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.801791E+01,0.000000E+00 +2124989,fr,1,3.750000E+00,-2.488300E+00,4.825287E+01,2.750000E+01,Active Shallow Crust,2.400082E+02,5.801791E+01,0.000000E+00 +2125008,fr,1,3.950000E+00,-2.488300E+00,4.825287E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998941E+01,0.000000E+00 +2125027,fr,1,4.050000E+00,-2.488300E+00,4.825287E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999045E+01,-9.000000E+01 +2125056,fr,1,4.350000E+00,-2.488300E+00,4.825287E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +2125074,fr,1,4.450000E+00,-2.488300E+00,4.825287E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,-9.000000E+01 +2125082,fr,1,4.550000E+00,-2.488300E+00,4.825287E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +2125128,fr,1,4.950000E+00,-2.488300E+00,4.825287E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +2125245,fr,1,5.850000E+00,-2.488300E+00,4.825287E+01,5.000000E+00,Active Shallow Crust,1.288654E+02,8.999150E+01,0.000000E+00 +2125261,fr,1,6.050000E+00,-2.488300E+00,4.825287E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2125448,fr,1,3.550000E+00,-1.917590E+00,4.172028E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,-9.000000E+01 +2125452,fr,1,3.650000E+00,-1.917590E+00,4.172028E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2125524,fr,1,4.250000E+00,-1.917590E+00,4.172028E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2125920,fr,2,3.550000E+00,3.943150E+00,4.643407E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +2125921,fr,1,3.550000E+00,3.943150E+00,4.643407E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +2125923,fr,1,3.550000E+00,3.943150E+00,4.643407E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799865E+01,0.000000E+00 +2125933,fr,1,3.650000E+00,3.943150E+00,4.643407E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999071E+01,0.000000E+00 +2125957,fr,1,3.850000E+00,3.943150E+00,4.643407E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +2125977,fr,1,3.950000E+00,3.943150E+00,4.643407E+01,5.000000E+00,Active Shallow Crust,1.288999E+02,8.999342E+01,0.000000E+00 +2126004,fr,1,4.250000E+00,3.943150E+00,4.643407E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +2126016,fr,1,4.350000E+00,3.943150E+00,4.643407E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +2126400,fr,2,3.550000E+00,-1.967260E+00,4.324048E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +2126406,fr,1,3.550000E+00,-1.967260E+00,4.324048E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,-9.000000E+01 +2126407,fr,1,3.550000E+00,-1.967260E+00,4.324048E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999072E+01,-9.000000E+01 +2126412,fr,1,3.650000E+00,-1.967260E+00,4.324048E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +2126413,fr,1,3.650000E+00,-1.967260E+00,4.324048E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +2126414,fr,1,3.650000E+00,-1.967260E+00,4.324048E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +2126418,fr,1,3.650000E+00,-1.967260E+00,4.324048E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +2126424,fr,1,3.750000E+00,-1.967260E+00,4.324048E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +2126427,fr,1,3.750000E+00,-1.967260E+00,4.324048E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801758E+01,0.000000E+00 +2126436,fr,2,3.850000E+00,-1.967260E+00,4.324048E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +2126440,fr,1,3.850000E+00,-1.967260E+00,4.324048E+01,1.500000E+01,Active Shallow Crust,2.400104E+02,5.799764E+01,0.000000E+00 +2126442,fr,1,3.850000E+00,-1.967260E+00,4.324048E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,-9.000000E+01 +2126448,fr,1,3.950000E+00,-1.967260E+00,4.324048E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +2126453,fr,1,3.950000E+00,-1.967260E+00,4.324048E+01,2.750000E+01,Active Shallow Crust,2.400194E+02,5.800488E+01,0.000000E+00 +2126457,fr,1,3.950000E+00,-1.967260E+00,4.324048E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.999363E+01,0.000000E+00 +2126461,fr,2,4.050000E+00,-1.967260E+00,4.324048E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +2126469,fr,1,4.050000E+00,-1.967260E+00,4.324048E+01,5.000000E+00,Active Shallow Crust,1.288907E+02,8.999380E+01,0.000000E+00 +2126472,fr,2,4.150000E+00,-1.967260E+00,4.324048E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2126479,fr,1,4.150000E+00,-1.967260E+00,4.324048E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,-9.000000E+01 +2126484,fr,1,4.250000E+00,-1.967260E+00,4.324048E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +2126490,fr,1,4.250000E+00,-1.967260E+00,4.324048E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +2126556,fr,3,4.850000E+00,-1.967260E+00,4.324048E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2126664,fr,1,5.750000E+00,-1.967260E+00,4.324048E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2126754,fr,1,6.450000E+00,-1.967253E+00,4.324048E+01,8.394020E+00,Active Shallow Crust,3.600000E+02,8.999001E+01,-9.000000E+01 +2126892,fr,1,3.650000E+00,2.092430E+00,4.762696E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +2126904,fr,2,3.750000E+00,2.092430E+00,4.762696E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +2126940,fr,1,4.050000E+00,2.092430E+00,4.762696E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +2126949,fr,1,4.050000E+00,2.092430E+00,4.762696E+01,5.000000E+00,Active Shallow Crust,1.288905E+02,8.999331E+01,0.000000E+00 +2126988,fr,1,4.450000E+00,2.092430E+00,4.762696E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +2127003,fr,1,4.550000E+00,2.092430E+00,4.762696E+01,5.000000E+00,Active Shallow Crust,2.400098E+02,5.799747E+01,0.000000E+00 +2127360,fr,3,3.550000E+00,-4.249880E+00,4.849798E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999332E+01,0.000000E+00 +2127362,fr,1,3.550000E+00,-4.249880E+00,4.849798E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999332E+01,0.000000E+00 +2127373,fr,1,3.650000E+00,-4.249880E+00,4.849798E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998809E+01,0.000000E+00 +2127387,fr,2,3.750000E+00,-4.249880E+00,4.849798E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801788E+01,0.000000E+00 +2127408,fr,1,3.950000E+00,-4.249880E+00,4.849798E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999157E+01,0.000000E+00 +2127414,fr,1,3.950000E+00,-4.249880E+00,4.849798E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999147E+01,-9.000000E+01 +2127417,fr,1,3.950000E+00,-4.249880E+00,4.849798E+01,5.000000E+00,Active Shallow Crust,1.288992E+02,8.999368E+01,0.000000E+00 +2127429,fr,1,4.050000E+00,-4.249880E+00,4.849798E+01,5.000000E+00,Active Shallow Crust,1.288907E+02,8.999249E+01,0.000000E+00 +2127468,fr,1,4.450000E+00,-4.249880E+00,4.849798E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +2127492,fr,1,4.650000E+00,-4.249880E+00,4.849798E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +2127505,fr,1,4.750000E+00,-4.249880E+00,4.849798E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2127600,fr,1,5.550000E+00,-4.249880E+00,4.849798E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2127840,fr,1,3.550000E+00,5.802100E-01,4.525956E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +2127876,fr,1,3.850000E+00,5.802100E-01,4.525956E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +2127888,fr,1,3.950000E+00,5.802100E-01,4.525956E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +2127901,fr,1,4.050000E+00,5.802100E-01,4.525956E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2127937,fr,1,4.350000E+00,5.802100E-01,4.525956E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +2128800,fr,1,3.550000E+00,-2.756500E-01,4.961277E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2128804,fr,1,3.550000E+00,-2.756500E-01,4.961277E+01,1.500000E+01,Active Shallow Crust,2.400125E+02,5.799819E+01,0.000000E+00 +2128807,fr,1,3.550000E+00,-2.756500E-01,4.961277E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +2128814,fr,1,3.650000E+00,-2.756500E-01,4.961277E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2128815,fr,1,3.650000E+00,-2.756500E-01,4.961277E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801297E+01,0.000000E+00 +2128824,fr,1,3.750000E+00,-2.756500E-01,4.961277E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2128831,fr,1,3.750000E+00,-2.756500E-01,4.961277E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,-9.000000E+01 +2128836,fr,1,3.850000E+00,-2.756500E-01,4.961277E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2128849,fr,1,3.950000E+00,-2.756500E-01,4.961277E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +2128855,fr,1,3.950000E+00,-2.756500E-01,4.961277E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +2128862,fr,1,4.050000E+00,-2.756500E-01,4.961277E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +2128877,fr,1,4.150000E+00,-2.756500E-01,4.961277E+01,2.750000E+01,Active Shallow Crust,2.400090E+02,5.799739E+01,0.000000E+00 +2128879,fr,1,4.150000E+00,-2.756500E-01,4.961277E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +2128881,fr,1,4.150000E+00,-2.756500E-01,4.961277E+01,5.000000E+00,Active Shallow Crust,1.288971E+02,8.999376E+01,0.000000E+00 +2128921,fr,1,4.550000E+00,-2.756500E-01,4.961277E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2128922,fr,1,4.550000E+00,-2.756500E-01,4.961277E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2128956,fr,1,4.850000E+00,-2.756500E-01,4.961277E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2129029,fr,1,5.450000E+00,-2.756500E-01,4.961277E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2129327,fr,1,3.850000E+00,-1.191370E+00,4.208316E+01,2.750000E+01,Active Shallow Crust,1.288961E+02,8.999338E+01,0.000000E+00 +2129334,fr,1,3.950000E+00,-1.191370E+00,4.208316E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999045E+01,-9.000000E+01 +2129340,fr,1,4.050000E+00,-1.191370E+00,4.208316E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +2129760,fr,1,3.550000E+00,8.040130E+00,4.473103E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998567E+01,0.000000E+00 +2129784,fr,1,3.750000E+00,8.040130E+00,4.473103E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +2129787,fr,1,3.750000E+00,8.040130E+00,4.473103E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.801707E+01,0.000000E+00 +2129799,fr,1,3.850000E+00,8.040130E+00,4.473103E+01,5.000000E+00,Active Shallow Crust,2.400103E+02,5.799843E+01,0.000000E+00 +2129808,fr,1,3.950000E+00,8.040130E+00,4.473103E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999096E+01,0.000000E+00 +2129821,fr,1,4.050000E+00,8.040130E+00,4.473103E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999194E+01,0.000000E+00 +2129940,fr,1,5.050000E+00,8.040130E+00,4.473103E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2129976,fr,1,5.350000E+00,8.040130E+00,4.473103E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +2130240,fr,2,3.550000E+00,-2.210000E-02,4.709942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2130241,fr,2,3.550000E+00,-2.210000E-02,4.709942E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2130244,fr,1,3.550000E+00,-2.210000E-02,4.709942E+01,1.500000E+01,Active Shallow Crust,2.400122E+02,5.799817E+01,0.000000E+00 +2130249,fr,1,3.550000E+00,-2.210000E-02,4.709942E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999373E+01,0.000000E+00 +2130252,fr,1,3.650000E+00,-2.210000E-02,4.709942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2130254,fr,1,3.650000E+00,-2.210000E-02,4.709942E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2130255,fr,1,3.650000E+00,-2.210000E-02,4.709942E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801291E+01,0.000000E+00 +2130256,fr,1,3.650000E+00,-2.210000E-02,4.709942E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801291E+01,0.000000E+00 +2130258,fr,1,3.650000E+00,-2.210000E-02,4.709942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +2130276,fr,2,3.850000E+00,-2.210000E-02,4.709942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2130278,fr,2,3.850000E+00,-2.210000E-02,4.709942E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2130294,fr,1,3.950000E+00,-2.210000E-02,4.709942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +2130297,fr,1,3.950000E+00,-2.210000E-02,4.709942E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.999372E+01,0.000000E+00 +2130300,fr,2,4.050000E+00,-2.210000E-02,4.709942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2130312,fr,1,4.150000E+00,-2.210000E-02,4.709942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2130348,fr,2,4.450000E+00,-2.210000E-02,4.709942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2130494,fr,1,5.650000E+00,-2.210000E-02,4.709942E+01,2.750000E+01,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +2130720,fr,6,3.550000E+00,7.674590E+00,4.665694E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999308E+01,0.000000E+00 +2130727,fr,1,3.550000E+00,7.674590E+00,4.665694E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999300E+01,-9.000000E+01 +2130729,fr,1,3.550000E+00,7.674590E+00,4.665694E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.999308E+01,0.000000E+00 +2130732,fr,4,3.650000E+00,7.674590E+00,4.665694E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998766E+01,0.000000E+00 +2130735,fr,1,3.650000E+00,7.674590E+00,4.665694E+01,5.000000E+00,Active Shallow Crust,2.400020E+02,5.801164E+01,0.000000E+00 +2130742,fr,1,3.650000E+00,7.674590E+00,4.665694E+01,1.500000E+01,Active Shallow Crust,1.289002E+02,8.996352E+01,0.000000E+00 +2130744,fr,2,3.750000E+00,7.674590E+00,4.665694E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +2130745,fr,1,3.750000E+00,7.674590E+00,4.665694E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +2130746,fr,2,3.750000E+00,7.674590E+00,4.665694E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +2130747,fr,1,3.750000E+00,7.674590E+00,4.665694E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.801825E+01,0.000000E+00 +2130755,fr,1,3.750000E+00,7.674590E+00,4.665694E+01,2.750000E+01,Active Shallow Crust,1.288966E+02,8.996749E+01,0.000000E+00 +2130756,fr,2,3.850000E+00,7.674590E+00,4.665694E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2130759,fr,2,3.850000E+00,7.674590E+00,4.665694E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799717E+01,0.000000E+00 +2130761,fr,1,3.850000E+00,7.674590E+00,4.665694E+01,2.750000E+01,Active Shallow Crust,2.400108E+02,5.799717E+01,0.000000E+00 +2130762,fr,1,3.850000E+00,7.674590E+00,4.665694E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +2130765,fr,2,3.850000E+00,7.674590E+00,4.665694E+01,5.000000E+00,Active Shallow Crust,1.288947E+02,8.999510E+01,0.000000E+00 +2130768,fr,1,3.950000E+00,7.674590E+00,4.665694E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +2130769,fr,1,3.950000E+00,7.674590E+00,4.665694E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +2130775,fr,1,3.950000E+00,7.674590E+00,4.665694E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999117E+01,-9.000000E+01 +2130780,fr,1,4.050000E+00,7.674590E+00,4.665694E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998833E+01,0.000000E+00 +2130782,fr,1,4.050000E+00,7.674590E+00,4.665694E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998833E+01,0.000000E+00 +2130783,fr,1,4.050000E+00,7.674590E+00,4.665694E+01,5.000000E+00,Active Shallow Crust,2.400059E+02,5.800637E+01,0.000000E+00 +2130792,fr,2,4.150000E+00,7.674590E+00,4.665694E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +2130793,fr,1,4.150000E+00,7.674590E+00,4.665694E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +2130804,fr,1,4.250000E+00,7.674590E+00,4.665694E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +2130805,fr,1,4.250000E+00,7.674590E+00,4.665694E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +2130816,fr,1,4.350000E+00,7.674590E+00,4.665694E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +2130828,fr,1,4.450000E+00,7.674590E+00,4.665694E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2130831,fr,1,4.450000E+00,7.674590E+00,4.665694E+01,5.000000E+00,Active Shallow Crust,2.400052E+02,5.799445E+01,0.000000E+00 +2130846,fr,1,4.550000E+00,7.674590E+00,4.665694E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998893E+01,-9.000000E+01 +2130864,fr,1,4.750000E+00,7.674590E+00,4.665694E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +2130865,fr,1,4.750000E+00,7.674590E+00,4.665694E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +2130939,fr,1,5.350000E+00,7.674590E+00,4.665694E+01,5.000000E+00,Active Shallow Crust,2.400251E+02,5.799794E+01,0.000000E+00 +2131212,fr,1,3.650000E+00,2.941980E+00,5.168493E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +2131230,fr,1,3.750000E+00,2.941980E+00,5.168493E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,-9.000000E+01 +2131686,fr,1,3.550000E+00,8.225550E+00,4.927272E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998669E+01,-9.000000E+01 +2131689,fr,1,3.550000E+00,8.225550E+00,4.927272E+01,5.000000E+00,Active Shallow Crust,1.288985E+02,8.999342E+01,0.000000E+00 +2131717,fr,1,3.850000E+00,8.225550E+00,4.927272E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +2131722,fr,1,3.850000E+00,8.225550E+00,4.927272E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999058E+01,-9.000000E+01 +2131728,fr,1,3.950000E+00,8.225550E+00,4.927272E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999170E+01,0.000000E+00 +2131753,fr,1,4.150000E+00,8.225550E+00,4.927272E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998681E+01,0.000000E+00 +2131764,fr,1,4.250000E+00,8.225550E+00,4.927272E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998824E+01,0.000000E+00 +2131765,fr,1,4.250000E+00,8.225550E+00,4.927272E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998824E+01,0.000000E+00 +2131778,fr,1,4.350000E+00,8.225550E+00,4.927272E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +2131790,fr,1,4.450000E+00,8.225550E+00,4.927272E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +2131792,fr,1,4.450000E+00,8.225550E+00,4.927272E+01,1.500000E+01,Active Shallow Crust,2.400054E+02,5.799523E+01,0.000000E+00 +2131797,fr,1,4.450000E+00,8.225550E+00,4.927272E+01,5.000000E+00,Active Shallow Crust,1.288914E+02,8.999533E+01,0.000000E+00 +2131800,fr,1,4.550000E+00,8.225550E+00,4.927272E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999168E+01,0.000000E+00 +2131801,fr,1,4.550000E+00,8.225550E+00,4.927272E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999168E+01,0.000000E+00 +2131805,fr,1,4.550000E+00,8.225550E+00,4.927272E+01,2.750000E+01,Active Shallow Crust,2.400102E+02,5.799722E+01,0.000000E+00 +2131812,fr,1,4.650000E+00,8.225550E+00,4.927272E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998887E+01,0.000000E+00 +2131921,fr,1,5.550000E+00,8.225550E+00,4.927272E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +2132181,fr,1,3.650000E+00,3.018700E-01,4.805653E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.996349E+01,0.000000E+00 +2132184,fr,1,3.750000E+00,3.018700E-01,4.805653E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2132213,fr,1,3.950000E+00,3.018700E-01,4.805653E+01,2.750000E+01,Active Shallow Crust,2.400200E+02,5.800504E+01,0.000000E+00 +2132232,fr,2,4.150000E+00,3.018700E-01,4.805653E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2132243,fr,1,4.150000E+00,3.018700E-01,4.805653E+01,2.750000E+01,Active Shallow Crust,1.288973E+02,8.999377E+01,0.000000E+00 +2132245,fr,1,4.250000E+00,3.018700E-01,4.805653E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2132253,fr,2,4.250000E+00,3.018700E-01,4.805653E+01,5.000000E+00,Active Shallow Crust,1.288941E+02,8.998091E+01,0.000000E+00 +2132278,fr,1,4.450000E+00,3.018700E-01,4.805653E+01,1.500000E+01,Active Shallow Crust,1.288918E+02,8.999372E+01,0.000000E+00 +2132280,fr,1,4.550000E+00,3.018700E-01,4.805653E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2132310,fr,1,4.750000E+00,3.018700E-01,4.805653E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +2132449,fr,1,5.950000E+00,3.018700E-01,4.805653E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +2132640,fr,1,3.550000E+00,5.771990E+00,4.873042E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998669E+01,0.000000E+00 +2132664,fr,1,3.750000E+00,5.771990E+00,4.873042E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +2132688,fr,1,3.950000E+00,5.771990E+00,4.873042E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999161E+01,0.000000E+00 +2133120,fr,1,3.550000E+00,3.601750E+00,4.176267E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +2133121,fr,1,3.550000E+00,3.601750E+00,4.176267E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +2133129,fr,1,3.550000E+00,3.601750E+00,4.176267E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999436E+01,0.000000E+00 +2133133,fr,1,3.650000E+00,3.601750E+00,4.176267E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2133134,fr,1,3.650000E+00,3.601750E+00,4.176267E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2133192,fr,1,4.150000E+00,3.601750E+00,4.176267E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +2133264,fr,1,4.750000E+00,3.601750E+00,4.176267E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +2134080,fr,2,3.550000E+00,4.198860E+00,4.252035E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999257E+01,0.000000E+00 +2134083,fr,1,3.550000E+00,4.198860E+00,4.252035E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799846E+01,0.000000E+00 +2134161,fr,1,4.150000E+00,4.198860E+00,4.252035E+01,5.000000E+00,Active Shallow Crust,1.288988E+02,8.999255E+01,0.000000E+00 +2134572,fr,1,3.650000E+00,5.519460E+00,4.416629E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998711E+01,0.000000E+00 +2134604,fr,1,3.850000E+00,5.519460E+00,4.416629E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998964E+01,-9.000000E+01 +2134608,fr,1,3.950000E+00,5.519460E+00,4.416629E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +2134609,fr,1,3.950000E+00,5.519460E+00,4.416629E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +2134657,fr,1,4.350000E+00,5.519460E+00,4.416629E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999136E+01,0.000000E+00 +2134663,fr,1,4.350000E+00,5.519460E+00,4.416629E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999126E+01,-9.000000E+01 +2134670,fr,1,4.450000E+00,5.519460E+00,4.416629E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +2134671,fr,1,4.450000E+00,5.519460E+00,4.416629E+01,5.000000E+00,Active Shallow Crust,2.400044E+02,5.799467E+01,0.000000E+00 +2134692,fr,1,4.650000E+00,5.519460E+00,4.416629E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2134745,fr,1,5.050000E+00,5.519460E+00,4.416629E+01,2.750000E+01,Active Shallow Crust,2.400211E+02,5.799717E+01,0.000000E+00 +2134804,fr,1,5.550000E+00,5.519460E+00,4.416629E+01,1.500000E+01,Active Shallow Crust,2.400270E+02,5.800222E+01,0.000000E+00 +2135520,fr,3,3.550000E+00,-1.139200E-01,4.655504E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2135532,fr,1,3.650000E+00,-1.139200E-01,4.655504E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2135535,fr,1,3.650000E+00,-1.139200E-01,4.655504E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801289E+01,0.000000E+00 +2135538,fr,1,3.650000E+00,-1.139200E-01,4.655504E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +2135556,fr,2,3.850000E+00,-1.139200E-01,4.655504E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2135557,fr,1,3.850000E+00,-1.139200E-01,4.655504E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2135559,fr,1,3.850000E+00,-1.139200E-01,4.655504E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799782E+01,0.000000E+00 +2135569,fr,1,3.950000E+00,-1.139200E-01,4.655504E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2135571,fr,1,3.950000E+00,-1.139200E-01,4.655504E+01,5.000000E+00,Active Shallow Crust,2.400198E+02,5.800499E+01,0.000000E+00 +2135592,fr,1,4.150000E+00,-1.139200E-01,4.655504E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2135641,fr,1,4.550000E+00,-1.139200E-01,4.655504E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2135652,fr,1,4.650000E+00,-1.139200E-01,4.655504E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +2136000,fr,6,3.550000E+00,8.288660E+00,4.965590E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998695E+01,0.000000E+00 +2136001,fr,1,3.550000E+00,8.288660E+00,4.965590E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998695E+01,0.000000E+00 +2136002,fr,1,3.550000E+00,8.288660E+00,4.965590E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998695E+01,0.000000E+00 +2136009,fr,1,3.550000E+00,8.288660E+00,4.965590E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.999347E+01,0.000000E+00 +2136013,fr,1,3.650000E+00,8.288660E+00,4.965590E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998837E+01,0.000000E+00 +2136021,fr,2,3.650000E+00,8.288660E+00,4.965590E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.996358E+01,0.000000E+00 +2136024,fr,3,3.750000E+00,8.288660E+00,4.965590E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +2136025,fr,1,3.750000E+00,8.288660E+00,4.965590E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +2136031,fr,1,3.750000E+00,8.288660E+00,4.965590E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998951E+01,-9.000000E+01 +2136033,fr,1,3.750000E+00,8.288660E+00,4.965590E+01,5.000000E+00,Active Shallow Crust,1.288979E+02,8.996632E+01,0.000000E+00 +2136036,fr,2,3.850000E+00,8.288660E+00,4.965590E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +2136037,fr,1,3.850000E+00,8.288660E+00,4.965590E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +2136072,fr,1,4.150000E+00,8.288660E+00,4.965590E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998692E+01,0.000000E+00 +2136075,fr,2,4.150000E+00,8.288660E+00,4.965590E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.799839E+01,0.000000E+00 +2136094,fr,1,4.250000E+00,8.288660E+00,4.965590E+01,1.500000E+01,Active Shallow Crust,1.288925E+02,8.998106E+01,0.000000E+00 +2136110,fr,1,4.450000E+00,8.288660E+00,4.965590E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999073E+01,0.000000E+00 +2136122,fr,1,4.550000E+00,8.288660E+00,4.965590E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999174E+01,0.000000E+00 +2136144,fr,1,4.750000E+00,8.288660E+00,4.965590E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +2136160,fr,1,4.850000E+00,8.288660E+00,4.965590E+01,1.500000E+01,Active Shallow Crust,2.400184E+02,5.800291E+01,0.000000E+00 +2136193,fr,1,5.150000E+00,8.288660E+00,4.965590E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +2136204,fr,1,5.250000E+00,8.288660E+00,4.965590E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +2136493,fr,1,3.650000E+00,6.304740E+00,4.319999E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998690E+01,0.000000E+00 +2136505,fr,1,3.750000E+00,6.304740E+00,4.319999E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998832E+01,0.000000E+00 +2136960,fr,2,3.550000E+00,-6.691600E-01,4.433712E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +2136973,fr,1,3.650000E+00,-6.691600E-01,4.433712E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +2136974,fr,1,3.650000E+00,-6.691600E-01,4.433712E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +2137022,fr,1,4.050000E+00,-6.691600E-01,4.433712E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +2137446,fr,1,3.550000E+00,-1.970900E-01,4.974924E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +2137452,fr,1,3.650000E+00,-1.970900E-01,4.974924E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2137458,fr,1,3.650000E+00,-1.970900E-01,4.974924E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +2137464,fr,2,3.750000E+00,-1.970900E-01,4.974924E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2137465,fr,1,3.750000E+00,-1.970900E-01,4.974924E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2137466,fr,2,3.750000E+00,-1.970900E-01,4.974924E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2137467,fr,1,3.750000E+00,-1.970900E-01,4.974924E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.801764E+01,0.000000E+00 +2137499,fr,1,3.950000E+00,-1.970900E-01,4.974924E+01,2.750000E+01,Active Shallow Crust,1.288999E+02,8.999371E+01,0.000000E+00 +2137500,fr,1,4.050000E+00,-1.970900E-01,4.974924E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2137502,fr,1,4.050000E+00,-1.970900E-01,4.974924E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2137572,fr,1,4.650000E+00,-1.970900E-01,4.974924E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2137716,fr,1,5.850000E+00,-1.970900E-01,4.974924E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +2137921,fr,2,3.550000E+00,-9.349100E-01,4.957248E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +2137932,fr,2,3.650000E+00,-9.349100E-01,4.957248E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +2137935,fr,1,3.650000E+00,-9.349100E-01,4.957248E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801297E+01,0.000000E+00 +2137951,fr,1,3.750000E+00,-9.349100E-01,4.957248E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,-9.000000E+01 +2137968,fr,1,3.950000E+00,-9.349100E-01,4.957248E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2137992,fr,1,4.150000E+00,-9.349100E-01,4.957248E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2138001,fr,1,4.150000E+00,-9.349100E-01,4.957248E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.999365E+01,0.000000E+00 +2138014,fr,1,4.250000E+00,-9.349100E-01,4.957248E+01,1.500000E+01,Active Shallow Crust,1.288937E+02,8.998094E+01,0.000000E+00 +2138016,fr,1,4.350000E+00,-9.349100E-01,4.957248E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2138055,fr,1,4.650000E+00,-9.349100E-01,4.957248E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799442E+01,0.000000E+00 +2138093,fr,1,4.950000E+00,-9.349100E-01,4.957248E+01,2.750000E+01,Active Shallow Crust,2.400134E+02,5.800476E+01,0.000000E+00 +2138222,fr,1,6.050000E+00,-9.349100E-01,4.957248E+01,2.750000E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +2138401,fr,1,3.550000E+00,7.973280E+00,4.525204E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999290E+01,0.000000E+00 +2138407,fr,1,3.550000E+00,7.973280E+00,4.525204E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999282E+01,-9.000000E+01 +2138412,fr,2,3.650000E+00,7.973280E+00,4.525204E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998734E+01,0.000000E+00 +2138413,fr,1,3.650000E+00,7.973280E+00,4.525204E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998734E+01,0.000000E+00 +2138425,fr,1,3.750000E+00,7.973280E+00,4.525204E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +2138448,fr,1,3.950000E+00,7.973280E+00,4.525204E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +2138454,fr,1,3.950000E+00,7.973280E+00,4.525204E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,-9.000000E+01 +2138472,fr,1,4.150000E+00,7.973280E+00,4.525204E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +2138475,fr,1,4.150000E+00,7.973280E+00,4.525204E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799750E+01,0.000000E+00 +2138482,fr,1,4.150000E+00,7.973280E+00,4.525204E+01,1.500000E+01,Active Shallow Crust,1.288983E+02,8.999288E+01,0.000000E+00 +2138520,fr,1,4.550000E+00,7.973280E+00,4.525204E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999102E+01,0.000000E+00 +2138544,fr,1,4.750000E+00,7.973280E+00,4.525204E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +2138917,fr,1,3.850000E+00,2.595900E+00,4.053085E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998915E+01,0.000000E+00 +2139360,fr,1,3.550000E+00,-2.350810E+00,4.690938E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +2139361,fr,1,3.550000E+00,-2.350810E+00,4.690938E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +2139362,fr,1,3.550000E+00,-2.350810E+00,4.690938E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +2139378,fr,1,3.650000E+00,-2.350810E+00,4.690938E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,-9.000000E+01 +2139381,fr,1,3.650000E+00,-2.350810E+00,4.690938E+01,5.000000E+00,Active Shallow Crust,1.289010E+02,8.996353E+01,0.000000E+00 +2139384,fr,1,3.750000E+00,-2.350810E+00,4.690938E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998906E+01,0.000000E+00 +2139397,fr,1,3.850000E+00,-2.350810E+00,4.690938E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +2139408,fr,1,3.950000E+00,-2.350810E+00,4.690938E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +2139438,fr,1,4.150000E+00,-2.350810E+00,4.690938E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,-9.000000E+01 +2139504,fr,1,4.750000E+00,-2.350810E+00,4.690938E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +2139528,fr,1,4.950000E+00,-2.350810E+00,4.690938E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2139588,fr,1,5.450000E+00,-2.350810E+00,4.690938E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2139636,fr,1,5.850000E+00,-2.350810E+00,4.690938E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2139849,fr,1,3.550000E+00,4.224930E+00,5.197515E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.999379E+01,0.000000E+00 +2140332,fr,2,3.650000E+00,-3.315170E+00,4.322027E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2140333,fr,1,3.650000E+00,-3.315170E+00,4.322027E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2140346,fr,1,3.750000E+00,-3.315170E+00,4.322027E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999124E+01,0.000000E+00 +2140358,fr,1,3.850000E+00,-3.315170E+00,4.322027E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +2140368,fr,1,3.950000E+00,-3.315170E+00,4.322027E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999073E+01,0.000000E+00 +2140369,fr,1,3.950000E+00,-3.315170E+00,4.322027E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999073E+01,0.000000E+00 +2140404,fr,1,4.250000E+00,-3.315170E+00,4.322027E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +2140431,fr,1,4.450000E+00,-3.315170E+00,4.322027E+01,5.000000E+00,Active Shallow Crust,2.400046E+02,5.799430E+01,0.000000E+00 +2140456,fr,1,4.650000E+00,-3.315170E+00,4.322027E+01,1.500000E+01,Active Shallow Crust,2.400098E+02,5.799408E+01,0.000000E+00 +2140473,fr,1,4.750000E+00,-3.315170E+00,4.322027E+01,5.000000E+00,Active Shallow Crust,1.288896E+02,8.998798E+01,0.000000E+00 +2140476,fr,1,4.850000E+00,-3.315170E+00,4.322027E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2140488,fr,1,4.950000E+00,-3.315170E+00,4.322027E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +2140551,fr,1,5.450000E+00,-3.315170E+00,4.322027E+01,5.000000E+00,Active Shallow Crust,2.400263E+02,5.799800E+01,0.000000E+00 +2140608,fr,1,5.950000E+00,-3.315170E+00,4.322027E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2140803,fr,1,3.550000E+00,-2.478400E-01,4.667959E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799818E+01,0.000000E+00 +2140804,fr,1,3.550000E+00,-2.478400E-01,4.667959E+01,1.500000E+01,Active Shallow Crust,2.400121E+02,5.799818E+01,0.000000E+00 +2140809,fr,1,3.550000E+00,-2.478400E-01,4.667959E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999373E+01,0.000000E+00 +2140813,fr,1,3.650000E+00,-2.478400E-01,4.667959E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2140824,fr,2,3.750000E+00,-2.478400E-01,4.667959E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2140825,fr,1,3.750000E+00,-2.478400E-01,4.667959E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2140827,fr,1,3.750000E+00,-2.478400E-01,4.667959E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801756E+01,0.000000E+00 +2140836,fr,2,3.850000E+00,-2.478400E-01,4.667959E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +2140842,fr,1,3.850000E+00,-2.478400E-01,4.667959E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +2140848,fr,1,3.950000E+00,-2.478400E-01,4.667959E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2140854,fr,1,3.950000E+00,-2.478400E-01,4.667959E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +2140857,fr,1,3.950000E+00,-2.478400E-01,4.667959E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.999373E+01,0.000000E+00 +2140860,fr,2,4.050000E+00,-2.478400E-01,4.667959E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2140861,fr,1,4.050000E+00,-2.478400E-01,4.667959E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2140862,fr,1,4.050000E+00,-2.478400E-01,4.667959E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2140865,fr,1,4.050000E+00,-2.478400E-01,4.667959E+01,2.750000E+01,Active Shallow Crust,2.400060E+02,5.800582E+01,0.000000E+00 +2140872,fr,1,4.150000E+00,-2.478400E-01,4.667959E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2140893,fr,1,4.250000E+00,-2.478400E-01,4.667959E+01,5.000000E+00,Active Shallow Crust,1.288943E+02,8.998092E+01,0.000000E+00 +2140896,fr,1,4.350000E+00,-2.478400E-01,4.667959E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2140905,fr,1,4.350000E+00,-2.478400E-01,4.667959E+01,5.000000E+00,Active Shallow Crust,1.288978E+02,8.998276E+01,0.000000E+00 +2140933,fr,1,4.650000E+00,-2.478400E-01,4.667959E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2140968,fr,1,4.950000E+00,-2.478400E-01,4.667959E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2140996,fr,1,5.150000E+00,-2.478400E-01,4.667959E+01,1.500000E+01,Active Shallow Crust,2.400198E+02,5.799999E+01,0.000000E+00 +2141016,fr,1,5.350000E+00,-2.478400E-01,4.667959E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +2141289,fr,1,3.550000E+00,4.253370E+00,4.952630E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.999345E+01,0.000000E+00 +2141316,fr,1,3.850000E+00,4.253370E+00,4.952630E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999073E+01,0.000000E+00 +2141329,fr,1,3.950000E+00,4.253370E+00,4.952630E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999174E+01,0.000000E+00 +2141340,fr,1,4.050000E+00,4.253370E+00,4.952630E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998896E+01,0.000000E+00 +2142240,fr,1,3.550000E+00,5.586680E+00,4.781800E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999323E+01,0.000000E+00 +2142252,fr,1,3.650000E+00,5.586680E+00,4.781800E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998793E+01,0.000000E+00 +2142294,fr,1,3.950000E+00,5.586680E+00,4.781800E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999136E+01,-9.000000E+01 +2142300,fr,1,4.050000E+00,5.586680E+00,4.781800E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998858E+01,0.000000E+00 +2142348,fr,1,4.450000E+00,5.586680E+00,4.781800E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +2142380,fr,1,4.650000E+00,5.586680E+00,4.781800E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999035E+01,-9.000000E+01 +2142756,fr,1,3.850000E+00,1.916050E+00,5.178864E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2142773,fr,1,3.950000E+00,1.916050E+00,5.178864E+01,2.750000E+01,Active Shallow Crust,2.400205E+02,5.800520E+01,0.000000E+00 +2142782,fr,1,4.050000E+00,1.916050E+00,5.178864E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +2142795,fr,1,4.150000E+00,1.916050E+00,5.178864E+01,5.000000E+00,Active Shallow Crust,2.400096E+02,5.799753E+01,0.000000E+00 +2143200,fr,1,3.550000E+00,8.622080E+00,4.804646E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998652E+01,0.000000E+00 +2143209,fr,1,3.550000E+00,8.622080E+00,4.804646E+01,5.000000E+00,Active Shallow Crust,1.288949E+02,8.999326E+01,0.000000E+00 +2143224,fr,1,3.750000E+00,8.622080E+00,4.804646E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +2143242,fr,1,3.850000E+00,8.622080E+00,4.804646E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,-9.000000E+01 +2143248,fr,2,3.950000E+00,8.622080E+00,4.804646E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999149E+01,0.000000E+00 +2143257,fr,1,3.950000E+00,8.622080E+00,4.804646E+01,5.000000E+00,Active Shallow Crust,1.289018E+02,8.999149E+01,0.000000E+00 +2143269,fr,1,4.050000E+00,8.622080E+00,4.804646E+01,5.000000E+00,Active Shallow Crust,1.288898E+02,8.999242E+01,0.000000E+00 +2143320,fr,1,4.550000E+00,8.622080E+00,4.804646E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999147E+01,0.000000E+00 +2143443,fr,1,5.550000E+00,8.622080E+00,4.804646E+01,5.000000E+00,Active Shallow Crust,2.400340E+02,5.799993E+01,0.000000E+00 +2143686,fr,1,3.550000E+00,2.953000E+00,4.366821E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998893E+01,-9.000000E+01 +2143694,fr,1,3.650000E+00,2.953000E+00,4.366821E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +2143704,fr,1,3.750000E+00,2.953000E+00,4.366821E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999131E+01,0.000000E+00 +2143755,fr,1,4.150000E+00,2.953000E+00,4.366821E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.799718E+01,0.000000E+00 +2143932,fr,1,5.650000E+00,2.953000E+00,4.366821E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +2145120,fr,1,3.550000E+00,1.396260E+00,4.208694E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +2145126,fr,1,3.550000E+00,1.396260E+00,4.208694E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,-9.000000E+01 +2145131,fr,1,3.550000E+00,1.396260E+00,4.208694E+01,2.750000E+01,Active Shallow Crust,1.288969E+02,8.999345E+01,0.000000E+00 +2145132,fr,1,3.650000E+00,1.396260E+00,4.208694E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2145147,fr,1,3.750000E+00,1.396260E+00,4.208694E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.801738E+01,0.000000E+00 +2145151,fr,1,3.750000E+00,1.396260E+00,4.208694E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998948E+01,-9.000000E+01 +2145157,fr,1,3.850000E+00,1.396260E+00,4.208694E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +2145190,fr,1,4.050000E+00,1.396260E+00,4.208694E+01,1.500000E+01,Active Shallow Crust,1.288910E+02,8.999369E+01,0.000000E+00 +2145264,fr,1,4.750000E+00,1.396260E+00,4.208694E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2145273,fr,1,4.750000E+00,1.396260E+00,4.208694E+01,5.000000E+00,Active Shallow Crust,1.288899E+02,8.998817E+01,0.000000E+00 +2145600,fr,4,3.550000E+00,1.319150E+00,4.301877E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +2145601,fr,2,3.550000E+00,1.319150E+00,4.301877E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +2145612,fr,1,3.650000E+00,1.319150E+00,4.301877E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2145618,fr,1,3.650000E+00,1.319150E+00,4.301877E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +2145624,fr,2,3.750000E+00,1.319150E+00,4.301877E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2145648,fr,1,3.950000E+00,1.319150E+00,4.301877E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +2145660,fr,1,4.050000E+00,1.319150E+00,4.301877E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +2145661,fr,1,4.050000E+00,1.319150E+00,4.301877E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +2145672,fr,1,4.150000E+00,1.319150E+00,4.301877E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +2146080,fr,3,3.550000E+00,6.700770E+00,4.418126E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999277E+01,0.000000E+00 +2146086,fr,1,3.550000E+00,6.700770E+00,4.418126E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999268E+01,-9.000000E+01 +2146107,fr,1,3.750000E+00,6.700770E+00,4.418126E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801707E+01,0.000000E+00 +2146120,fr,1,3.850000E+00,6.700770E+00,4.418126E+01,1.500000E+01,Active Shallow Crust,2.400107E+02,5.799832E+01,0.000000E+00 +2146140,fr,1,4.050000E+00,6.700770E+00,4.418126E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999187E+01,0.000000E+00 +2146162,fr,1,4.150000E+00,6.700770E+00,4.418126E+01,1.500000E+01,Active Shallow Crust,1.288989E+02,8.999275E+01,0.000000E+00 +2146171,fr,1,4.250000E+00,6.700770E+00,4.418126E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,-9.000000E+01 +2146201,fr,1,4.550000E+00,6.700770E+00,4.418126E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999085E+01,0.000000E+00 +2146212,fr,1,4.650000E+00,6.700770E+00,4.418126E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2146260,fr,1,5.050000E+00,6.700770E+00,4.418126E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +2146356,fr,1,5.850000E+00,6.700770E+00,4.418126E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2146560,fr,4,3.550000E+00,-2.309420E+00,4.208974E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +2146572,fr,1,3.650000E+00,-2.309420E+00,4.208974E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2146584,fr,1,3.750000E+00,-2.309420E+00,4.208974E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999108E+01,0.000000E+00 +2146590,fr,1,3.750000E+00,-2.309420E+00,4.208974E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999098E+01,-9.000000E+01 +2146633,fr,1,4.150000E+00,-2.309420E+00,4.208974E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +2146680,fr,1,4.550000E+00,-2.309420E+00,4.208974E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +2146779,fr,1,5.350000E+00,-2.309420E+00,4.208974E+01,5.000000E+00,Active Shallow Crust,2.400221E+02,5.800100E+01,0.000000E+00 +2147040,fr,2,3.550000E+00,3.387770E+00,4.648022E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +2147044,fr,1,3.550000E+00,3.387770E+00,4.648022E+01,1.500000E+01,Active Shallow Crust,2.400118E+02,5.799821E+01,0.000000E+00 +2147052,fr,1,3.650000E+00,3.387770E+00,4.648022E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +2147064,fr,1,3.750000E+00,3.387770E+00,4.648022E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998897E+01,0.000000E+00 +2147070,fr,1,3.750000E+00,3.387770E+00,4.648022E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998884E+01,-9.000000E+01 +2147112,fr,1,4.150000E+00,3.387770E+00,4.648022E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +2147544,fr,2,3.750000E+00,-5.324710E+00,4.756292E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998919E+01,0.000000E+00 +2147613,fr,1,4.250000E+00,-5.324710E+00,4.756292E+01,5.000000E+00,Active Shallow Crust,1.288947E+02,8.998099E+01,0.000000E+00 +2148480,fr,1,3.550000E+00,3.673090E+00,4.956588E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +2148489,fr,1,3.550000E+00,3.673090E+00,4.956588E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999346E+01,0.000000E+00 +2148517,fr,1,3.850000E+00,3.673090E+00,4.956588E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +2148564,fr,1,4.250000E+00,3.673090E+00,4.956588E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +2148960,fr,1,3.550000E+00,8.232000E+00,4.838792E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998661E+01,0.000000E+00 +2148964,fr,1,3.550000E+00,8.232000E+00,4.838792E+01,1.500000E+01,Active Shallow Crust,2.400125E+02,5.799815E+01,0.000000E+00 +2148972,fr,1,3.650000E+00,8.232000E+00,4.838792E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998806E+01,0.000000E+00 +2148975,fr,1,3.650000E+00,8.232000E+00,4.838792E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801188E+01,0.000000E+00 +2148984,fr,3,3.750000E+00,8.232000E+00,4.838792E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +2149001,fr,1,3.850000E+00,8.232000E+00,4.838792E+01,2.750000E+01,Active Shallow Crust,2.400116E+02,5.799811E+01,0.000000E+00 +2149006,fr,1,3.850000E+00,8.232000E+00,4.838792E+01,1.500000E+01,Active Shallow Crust,1.288956E+02,8.999526E+01,0.000000E+00 +2149008,fr,2,3.950000E+00,8.232000E+00,4.838792E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999155E+01,0.000000E+00 +2149017,fr,1,3.950000E+00,8.232000E+00,4.838792E+01,5.000000E+00,Active Shallow Crust,1.289022E+02,8.999155E+01,0.000000E+00 +2149018,fr,1,3.950000E+00,8.232000E+00,4.838792E+01,1.500000E+01,Active Shallow Crust,1.289022E+02,8.999155E+01,0.000000E+00 +2149020,fr,2,4.050000E+00,8.232000E+00,4.838792E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999247E+01,0.000000E+00 +2149032,fr,1,4.150000E+00,8.232000E+00,4.838792E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999329E+01,0.000000E+00 +2149038,fr,1,4.150000E+00,8.232000E+00,4.838792E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999321E+01,-9.000000E+01 +2149047,fr,1,4.250000E+00,8.232000E+00,4.838792E+01,5.000000E+00,Active Shallow Crust,2.400072E+02,5.799391E+01,0.000000E+00 +2149057,fr,1,4.350000E+00,8.232000E+00,4.838792E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +2149188,fr,1,5.450000E+00,8.232000E+00,4.838792E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +2150410,fr,1,3.550000E+00,7.933500E-01,5.175223E+01,1.500000E+01,Active Shallow Crust,1.288957E+02,8.999376E+01,0.000000E+00 +2150427,fr,1,3.750000E+00,7.933500E-01,5.175223E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.801772E+01,0.000000E+00 +2150436,fr,1,3.850000E+00,7.933500E-01,5.175223E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2150448,fr,1,3.950000E+00,7.933500E-01,5.175223E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +2150462,fr,1,4.050000E+00,7.933500E-01,5.175223E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2150463,fr,1,4.050000E+00,7.933500E-01,5.175223E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.800604E+01,0.000000E+00 +2150509,fr,1,4.450000E+00,7.933500E-01,5.175223E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2150520,fr,1,4.550000E+00,7.933500E-01,5.175223E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2150880,fr,2,3.550000E+00,-3.949610E+00,4.825525E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2150882,fr,1,3.550000E+00,-3.949610E+00,4.825525E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2150885,fr,1,3.550000E+00,-3.949610E+00,4.825525E+01,2.750000E+01,Active Shallow Crust,2.400125E+02,5.799837E+01,0.000000E+00 +2150892,fr,2,3.650000E+00,-3.949610E+00,4.825525E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999103E+01,0.000000E+00 +2150904,fr,3,3.750000E+00,-3.949610E+00,4.825525E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +2150906,fr,1,3.750000E+00,-3.949610E+00,4.825525E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +2150920,fr,1,3.850000E+00,-3.949610E+00,4.825525E+01,1.500000E+01,Active Shallow Crust,2.400109E+02,5.799797E+01,0.000000E+00 +2150925,fr,1,3.850000E+00,-3.949610E+00,4.825525E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999287E+01,0.000000E+00 +2150931,fr,1,3.950000E+00,-3.949610E+00,4.825525E+01,5.000000E+00,Active Shallow Crust,2.400198E+02,5.800500E+01,0.000000E+00 +2150935,fr,1,3.950000E+00,-3.949610E+00,4.825525E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998929E+01,-9.000000E+01 +2150940,fr,1,4.050000E+00,-3.949610E+00,4.825525E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +2150978,fr,1,4.350000E+00,-3.949610E+00,4.825525E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +2151024,fr,1,4.750000E+00,-3.949610E+00,4.825525E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2151048,fr,2,4.950000E+00,-3.949610E+00,4.825525E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +2151360,fr,1,3.550000E+00,4.565280E+00,4.969523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998695E+01,0.000000E+00 +2151384,fr,1,3.750000E+00,4.565280E+00,4.969523E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +2151852,fr,2,3.650000E+00,-3.727960E+00,4.358771E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2151864,fr,2,3.750000E+00,-3.727960E+00,4.358771E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +2151874,fr,1,3.750000E+00,-3.727960E+00,4.358771E+01,1.500000E+01,Active Shallow Crust,1.288969E+02,8.996715E+01,0.000000E+00 +2151948,fr,1,4.450000E+00,-3.727960E+00,4.358771E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +2152320,fr,1,3.550000E+00,3.186320E+00,5.333485E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +2152332,fr,1,3.650000E+00,3.186320E+00,5.333485E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +2152800,fr,1,3.550000E+00,5.145040E+00,4.647419E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999306E+01,0.000000E+00 +2152801,fr,1,3.550000E+00,5.145040E+00,4.647419E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999306E+01,0.000000E+00 +2152803,fr,1,3.550000E+00,5.145040E+00,4.647419E+01,5.000000E+00,Active Shallow Crust,2.400129E+02,5.799823E+01,0.000000E+00 +2152812,fr,1,3.650000E+00,5.145040E+00,4.647419E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998762E+01,0.000000E+00 +2152824,fr,1,3.750000E+00,5.145040E+00,4.647419E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998897E+01,0.000000E+00 +2152836,fr,1,3.850000E+00,5.145040E+00,4.647419E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2152860,fr,1,4.050000E+00,5.145040E+00,4.647419E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998828E+01,0.000000E+00 +2152992,fr,1,5.150000E+00,5.145040E+00,4.647419E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +2153004,fr,1,5.250000E+00,5.145040E+00,4.647419E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +2153283,fr,1,3.550000E+00,3.295820E+00,4.863261E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799808E+01,0.000000E+00 +2153304,fr,1,3.750000E+00,3.295820E+00,4.863261E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998941E+01,0.000000E+00 +2153308,fr,1,3.750000E+00,3.295820E+00,4.863261E+01,1.500000E+01,Active Shallow Crust,2.400088E+02,5.801759E+01,0.000000E+00 +2153328,fr,1,3.950000E+00,3.295820E+00,4.863261E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +2153438,fr,1,4.850000E+00,3.295820E+00,4.863261E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +2154240,fr,3,3.550000E+00,5.190240E+00,4.750968E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999319E+01,0.000000E+00 +2154247,fr,1,3.550000E+00,5.190240E+00,4.750968E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999311E+01,-9.000000E+01 +2154252,fr,1,3.650000E+00,5.190240E+00,4.750968E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998786E+01,0.000000E+00 +2154261,fr,1,3.650000E+00,5.190240E+00,4.750968E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996355E+01,0.000000E+00 +2154264,fr,2,3.750000E+00,5.190240E+00,4.750968E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +2154285,fr,1,3.850000E+00,5.190240E+00,4.750968E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999518E+01,0.000000E+00 +2154304,fr,1,4.050000E+00,5.190240E+00,4.750968E+01,1.500000E+01,Active Shallow Crust,2.400066E+02,5.800543E+01,0.000000E+00 +2154720,fr,1,3.550000E+00,1.402550E+00,4.101496E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +2154721,fr,2,3.550000E+00,1.402550E+00,4.101496E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +2154722,fr,1,3.550000E+00,1.402550E+00,4.101496E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +2154732,fr,2,3.650000E+00,1.402550E+00,4.101496E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +2154733,fr,1,3.650000E+00,1.402550E+00,4.101496E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +2154734,fr,1,3.650000E+00,1.402550E+00,4.101496E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +2154738,fr,1,3.650000E+00,1.402550E+00,4.101496E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,-9.000000E+01 +2154741,fr,1,3.650000E+00,1.402550E+00,4.101496E+01,5.000000E+00,Active Shallow Crust,1.289011E+02,8.996342E+01,0.000000E+00 +2154744,fr,1,3.750000E+00,1.402550E+00,4.101496E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +2154756,fr,1,3.850000E+00,1.402550E+00,4.101496E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +2154783,fr,1,4.050000E+00,1.402550E+00,4.101496E+01,5.000000E+00,Active Shallow Crust,2.400052E+02,5.800565E+01,0.000000E+00 +2154792,fr,1,4.150000E+00,1.402550E+00,4.101496E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +2154798,fr,1,4.150000E+00,1.402550E+00,4.101496E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,-9.000000E+01 +2154804,fr,1,4.250000E+00,1.402550E+00,4.101496E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2154816,fr,1,4.350000E+00,1.402550E+00,4.101496E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +2154817,fr,1,4.350000E+00,1.402550E+00,4.101496E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +2154825,fr,1,4.350000E+00,1.402550E+00,4.101496E+01,5.000000E+00,Active Shallow Crust,1.288988E+02,8.998270E+01,0.000000E+00 +2154915,fr,1,5.150000E+00,1.402550E+00,4.101496E+01,5.000000E+00,Active Shallow Crust,2.400167E+02,5.799944E+01,0.000000E+00 +2155204,fr,1,3.550000E+00,6.204800E-01,5.005493E+01,1.500000E+01,Active Shallow Crust,2.400125E+02,5.799827E+01,0.000000E+00 +2155209,fr,2,3.550000E+00,6.204800E-01,5.005493E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999393E+01,0.000000E+00 +2155212,fr,1,3.650000E+00,6.204800E-01,5.005493E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +2155227,fr,1,3.750000E+00,6.204800E-01,5.005493E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.801772E+01,0.000000E+00 +2155230,fr,1,3.750000E+00,6.204800E-01,5.005493E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,-9.000000E+01 +2155232,fr,1,3.750000E+00,6.204800E-01,5.005493E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,-9.000000E+01 +2155234,fr,1,3.750000E+00,6.204800E-01,5.005493E+01,1.500000E+01,Active Shallow Crust,1.288962E+02,8.996738E+01,0.000000E+00 +2155260,fr,1,4.050000E+00,6.204800E-01,5.005493E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2155261,fr,1,4.050000E+00,6.204800E-01,5.005493E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2155284,fr,1,4.250000E+00,6.204800E-01,5.005493E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2155692,fr,1,3.650000E+00,3.144190E+00,4.772366E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +2155717,fr,1,3.850000E+00,3.144190E+00,4.772366E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +2155749,fr,1,4.050000E+00,3.144190E+00,4.772366E+01,5.000000E+00,Active Shallow Crust,1.288903E+02,8.999428E+01,0.000000E+00 +2155765,fr,1,4.250000E+00,3.144190E+00,4.772366E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +2155766,fr,1,4.250000E+00,3.144190E+00,4.772366E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +2155776,fr,1,4.350000E+00,3.144190E+00,4.772366E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +2155860,fr,1,5.050000E+00,3.144190E+00,4.772366E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2156161,fr,1,3.550000E+00,3.383220E+00,5.169275E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +2156233,fr,1,4.150000E+00,3.383220E+00,5.169275E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +2156412,fr,1,5.650000E+00,3.383220E+00,5.169275E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2156640,fr,4,3.550000E+00,5.016400E+00,4.396692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999274E+01,0.000000E+00 +2156641,fr,2,3.550000E+00,5.016400E+00,4.396692E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999274E+01,0.000000E+00 +2156643,fr,3,3.550000E+00,5.016400E+00,4.396692E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799719E+01,0.000000E+00 +2156649,fr,1,3.550000E+00,5.016400E+00,4.396692E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.999274E+01,0.000000E+00 +2156651,fr,1,3.550000E+00,5.016400E+00,4.396692E+01,2.750000E+01,Active Shallow Crust,1.288966E+02,8.999274E+01,0.000000E+00 +2156652,fr,2,3.650000E+00,5.016400E+00,4.396692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998706E+01,0.000000E+00 +2156659,fr,1,3.650000E+00,5.016400E+00,4.396692E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998692E+01,-9.000000E+01 +2156663,fr,1,3.650000E+00,5.016400E+00,4.396692E+01,2.750000E+01,Active Shallow Crust,1.289016E+02,8.996348E+01,0.000000E+00 +2156664,fr,3,3.750000E+00,5.016400E+00,4.396692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998847E+01,0.000000E+00 +2156665,fr,2,3.750000E+00,5.016400E+00,4.396692E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998847E+01,0.000000E+00 +2156668,fr,1,3.750000E+00,5.016400E+00,4.396692E+01,1.500000E+01,Active Shallow Crust,2.400089E+02,5.801693E+01,0.000000E+00 +2156670,fr,1,3.750000E+00,5.016400E+00,4.396692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998833E+01,-9.000000E+01 +2156673,fr,1,3.750000E+00,5.016400E+00,4.396692E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.996745E+01,0.000000E+00 +2156677,fr,2,3.850000E+00,5.016400E+00,4.396692E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +2156688,fr,2,3.950000E+00,5.016400E+00,4.396692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +2156706,fr,1,4.050000E+00,5.016400E+00,4.396692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999174E+01,-9.000000E+01 +2156707,fr,1,4.050000E+00,5.016400E+00,4.396692E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999174E+01,-9.000000E+01 +2156713,fr,2,4.150000E+00,5.016400E+00,4.396692E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +2156715,fr,1,4.150000E+00,5.016400E+00,4.396692E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.799768E+01,0.000000E+00 +2156716,fr,1,4.150000E+00,5.016400E+00,4.396692E+01,1.500000E+01,Active Shallow Crust,2.400074E+02,5.799771E+01,0.000000E+00 +2156718,fr,2,4.150000E+00,5.016400E+00,4.396692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998896E+01,-9.000000E+01 +2156724,fr,1,4.250000E+00,5.016400E+00,4.396692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +2156730,fr,1,4.250000E+00,5.016400E+00,4.396692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,-9.000000E+01 +2156736,fr,3,4.350000E+00,5.016400E+00,4.396692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +2156737,fr,1,4.350000E+00,5.016400E+00,4.396692E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +2156758,fr,1,4.450000E+00,5.016400E+00,4.396692E+01,1.500000E+01,Active Shallow Crust,1.288932E+02,8.999356E+01,0.000000E+00 +2156760,fr,1,4.550000E+00,5.016400E+00,4.396692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999082E+01,0.000000E+00 +2156772,fr,1,4.650000E+00,5.016400E+00,4.396692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +2156774,fr,1,4.650000E+00,5.016400E+00,4.396692E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +2156820,fr,1,5.050000E+00,5.016400E+00,4.396692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +2156844,fr,2,5.250000E+00,5.016400E+00,4.396692E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2157175,fr,1,3.950000E+00,3.465180E+00,4.890971E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,-9.000000E+01 +2157243,fr,1,4.550000E+00,3.465180E+00,4.890971E+01,5.000000E+00,Active Shallow Crust,2.400101E+02,5.799754E+01,0.000000E+00 +2157600,fr,1,3.550000E+00,4.932250E+00,4.448470E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999281E+01,0.000000E+00 +2157603,fr,1,3.550000E+00,4.932250E+00,4.448470E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799714E+01,0.000000E+00 +2157612,fr,3,3.650000E+00,4.932250E+00,4.448470E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998717E+01,0.000000E+00 +2157613,fr,3,3.650000E+00,4.932250E+00,4.448470E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998717E+01,0.000000E+00 +2157615,fr,1,3.650000E+00,4.932250E+00,4.448470E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801324E+01,0.000000E+00 +2157618,fr,1,3.650000E+00,4.932250E+00,4.448470E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998703E+01,-9.000000E+01 +2157624,fr,6,3.750000E+00,4.932250E+00,4.448470E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998857E+01,0.000000E+00 +2157636,fr,1,3.850000E+00,4.932250E+00,4.448470E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2157637,fr,2,3.850000E+00,4.932250E+00,4.448470E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2157639,fr,1,3.850000E+00,4.932250E+00,4.448470E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799807E+01,0.000000E+00 +2157640,fr,1,3.850000E+00,4.932250E+00,4.448470E+01,1.500000E+01,Active Shallow Crust,2.400113E+02,5.799807E+01,0.000000E+00 +2157648,fr,2,3.950000E+00,4.932250E+00,4.448470E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999092E+01,0.000000E+00 +2157650,fr,1,3.950000E+00,4.932250E+00,4.448470E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999092E+01,0.000000E+00 +2157672,fr,1,4.150000E+00,4.932250E+00,4.448470E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +2157675,fr,1,4.150000E+00,4.932250E+00,4.448470E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799749E+01,0.000000E+00 +2157686,fr,1,4.250000E+00,4.932250E+00,4.448470E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +2157723,fr,1,4.550000E+00,4.932250E+00,4.448470E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799754E+01,0.000000E+00 +2158080,fr,2,3.550000E+00,2.633200E+00,4.201949E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998876E+01,0.000000E+00 +2158081,fr,1,3.550000E+00,2.633200E+00,4.201949E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998876E+01,0.000000E+00 +2158092,fr,2,3.650000E+00,2.633200E+00,4.201949E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2158093,fr,2,3.650000E+00,2.633200E+00,4.201949E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2158098,fr,1,3.650000E+00,2.633200E+00,4.201949E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,-9.000000E+01 +2158102,fr,1,3.650000E+00,2.633200E+00,4.201949E+01,1.500000E+01,Active Shallow Crust,1.289004E+02,8.996344E+01,0.000000E+00 +2158113,fr,1,3.750000E+00,2.633200E+00,4.201949E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.996741E+01,0.000000E+00 +2158118,fr,1,3.850000E+00,2.633200E+00,4.201949E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +2158119,fr,1,3.850000E+00,2.633200E+00,4.201949E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.799745E+01,0.000000E+00 +2158134,fr,1,3.950000E+00,2.633200E+00,4.201949E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,-9.000000E+01 +2158141,fr,1,4.050000E+00,2.633200E+00,4.201949E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +2158144,fr,1,4.050000E+00,2.633200E+00,4.201949E+01,1.500000E+01,Active Shallow Crust,2.400050E+02,5.800608E+01,0.000000E+00 +2158150,fr,1,4.050000E+00,2.633200E+00,4.201949E+01,1.500000E+01,Active Shallow Crust,1.288910E+02,8.999368E+01,0.000000E+00 +2158155,fr,1,4.150000E+00,2.633200E+00,4.201949E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799737E+01,0.000000E+00 +2158164,fr,2,4.250000E+00,2.633200E+00,4.201949E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2158188,fr,1,4.450000E+00,2.633200E+00,4.201949E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +2158224,fr,1,4.750000E+00,2.633200E+00,4.201949E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +2158236,fr,1,4.850000E+00,2.633200E+00,4.201949E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2158563,fr,1,3.550000E+00,-1.697100E+00,4.340859E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799794E+01,0.000000E+00 +2158564,fr,1,3.550000E+00,-1.697100E+00,4.340859E+01,1.500000E+01,Active Shallow Crust,2.400119E+02,5.799794E+01,0.000000E+00 +2158566,fr,1,3.550000E+00,-1.697100E+00,4.340859E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999074E+01,-9.000000E+01 +2158572,fr,1,3.650000E+00,-1.697100E+00,4.340859E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2158573,fr,1,3.650000E+00,-1.697100E+00,4.340859E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2158575,fr,1,3.650000E+00,-1.697100E+00,4.340859E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801296E+01,0.000000E+00 +2158578,fr,1,3.650000E+00,-1.697100E+00,4.340859E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +2158584,fr,2,3.750000E+00,-1.697100E+00,4.340859E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2158585,fr,1,3.750000E+00,-1.697100E+00,4.340859E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2158586,fr,1,3.750000E+00,-1.697100E+00,4.340859E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2158590,fr,1,3.750000E+00,-1.697100E+00,4.340859E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,-9.000000E+01 +2158656,fr,1,4.350000E+00,-1.697100E+00,4.340859E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +2158662,fr,1,4.350000E+00,-1.697100E+00,4.340859E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,-9.000000E+01 +2158666,fr,1,4.350000E+00,-1.697100E+00,4.340859E+01,1.500000E+01,Active Shallow Crust,1.288984E+02,8.998265E+01,0.000000E+00 +2158668,fr,1,4.450000E+00,-1.697100E+00,4.340859E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +2158678,fr,1,4.450000E+00,-1.697100E+00,4.340859E+01,1.500000E+01,Active Shallow Crust,1.288928E+02,8.999383E+01,0.000000E+00 +2159040,fr,1,3.550000E+00,-4.169770E+00,4.823361E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999329E+01,0.000000E+00 +2159041,fr,1,3.550000E+00,-4.169770E+00,4.823361E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999329E+01,0.000000E+00 +2159045,fr,1,3.550000E+00,-4.169770E+00,4.823361E+01,2.750000E+01,Active Shallow Crust,2.400121E+02,5.799850E+01,0.000000E+00 +2159046,fr,1,3.550000E+00,-4.169770E+00,4.823361E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999320E+01,-9.000000E+01 +2159052,fr,1,3.650000E+00,-4.169770E+00,4.823361E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998803E+01,0.000000E+00 +2159053,fr,1,3.650000E+00,-4.169770E+00,4.823361E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998803E+01,0.000000E+00 +2159055,fr,1,3.650000E+00,-4.169770E+00,4.823361E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801268E+01,0.000000E+00 +2159062,fr,1,3.650000E+00,-4.169770E+00,4.823361E+01,1.500000E+01,Active Shallow Crust,1.289000E+02,8.996355E+01,0.000000E+00 +2159064,fr,2,3.750000E+00,-4.169770E+00,4.823361E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +2159080,fr,1,3.850000E+00,-4.169770E+00,4.823361E+01,1.500000E+01,Active Shallow Crust,2.400107E+02,5.799777E+01,0.000000E+00 +2159089,fr,1,3.950000E+00,-4.169770E+00,4.823361E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999152E+01,0.000000E+00 +2159094,fr,1,3.950000E+00,-4.169770E+00,4.823361E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999142E+01,-9.000000E+01 +2159104,fr,1,4.050000E+00,-4.169770E+00,4.823361E+01,1.500000E+01,Active Shallow Crust,2.400062E+02,5.800585E+01,0.000000E+00 +2159106,fr,1,4.050000E+00,-4.169770E+00,4.823361E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998853E+01,-9.000000E+01 +2159112,fr,1,4.150000E+00,-4.169770E+00,4.823361E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +2159124,fr,2,4.250000E+00,-4.169770E+00,4.823361E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +2159169,fr,1,4.550000E+00,-4.169770E+00,4.823361E+01,5.000000E+00,Active Shallow Crust,1.288934E+02,8.998574E+01,0.000000E+00 +2159172,fr,1,4.650000E+00,-4.169770E+00,4.823361E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +2159520,fr,1,3.550000E+00,-6.788130E+00,4.849506E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999332E+01,0.000000E+00 +2160480,fr,1,3.550000E+00,2.698050E+00,5.065292E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +2160482,fr,1,3.550000E+00,2.698050E+00,5.065292E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +2160493,fr,1,3.650000E+00,2.698050E+00,5.065292E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998860E+01,0.000000E+00 +2160502,fr,1,3.650000E+00,2.698050E+00,5.065292E+01,1.500000E+01,Active Shallow Crust,1.289003E+02,8.996360E+01,0.000000E+00 +2160504,fr,1,3.750000E+00,2.698050E+00,5.065292E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2160511,fr,1,3.750000E+00,2.698050E+00,5.065292E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,-9.000000E+01 +2160672,fr,1,5.150000E+00,2.698050E+00,5.065292E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +2161038,fr,1,4.150000E+00,2.001110E+00,5.191904E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,-9.000000E+01 +2161056,fr,1,4.350000E+00,2.001110E+00,5.191904E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2161092,fr,1,4.650000E+00,2.001110E+00,5.191904E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +2161440,fr,2,3.550000E+00,2.832640E+00,4.205038E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998877E+01,0.000000E+00 +2161442,fr,1,3.550000E+00,2.832640E+00,4.205038E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998877E+01,0.000000E+00 +2161453,fr,1,3.650000E+00,2.832640E+00,4.205038E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2161454,fr,1,3.650000E+00,2.832640E+00,4.205038E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2161455,fr,1,3.650000E+00,2.832640E+00,4.205038E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801298E+01,0.000000E+00 +2161464,fr,3,3.750000E+00,2.832640E+00,4.205038E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999108E+01,0.000000E+00 +2161476,fr,1,3.850000E+00,2.832640E+00,4.205038E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +2161483,fr,1,3.850000E+00,2.832640E+00,4.205038E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,-9.000000E+01 +2161500,fr,2,4.050000E+00,2.832640E+00,4.205038E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +2161504,fr,1,4.050000E+00,2.832640E+00,4.205038E+01,1.500000E+01,Active Shallow Crust,2.400051E+02,5.800564E+01,0.000000E+00 +2161512,fr,1,4.150000E+00,2.832640E+00,4.205038E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +2161533,fr,2,4.250000E+00,2.832640E+00,4.205038E+01,5.000000E+00,Active Shallow Crust,1.288949E+02,8.998078E+01,0.000000E+00 +2161560,fr,1,4.550000E+00,2.832640E+00,4.205038E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +2161566,fr,1,4.550000E+00,2.832640E+00,4.205038E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,-9.000000E+01 +2161572,fr,1,4.650000E+00,2.832640E+00,4.205038E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +2161921,fr,1,3.550000E+00,3.527360E+00,4.803615E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2161934,fr,1,3.650000E+00,3.527360E+00,4.803615E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999098E+01,0.000000E+00 +2161992,fr,1,4.150000E+00,3.527360E+00,4.803615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +2162013,fr,1,4.250000E+00,3.527360E+00,4.803615E+01,5.000000E+00,Active Shallow Crust,1.288941E+02,8.998100E+01,0.000000E+00 +2162412,fr,1,3.650000E+00,3.524200E+00,5.028698E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999139E+01,0.000000E+00 +2162413,fr,1,3.650000E+00,3.524200E+00,5.028698E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999139E+01,0.000000E+00 +2162425,fr,1,3.750000E+00,3.524200E+00,5.028698E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +2162448,fr,1,3.950000E+00,3.524200E+00,5.028698E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +2162463,fr,1,4.050000E+00,3.524200E+00,5.028698E+01,5.000000E+00,Active Shallow Crust,2.400066E+02,5.800596E+01,0.000000E+00 +2162477,fr,1,4.150000E+00,3.524200E+00,5.028698E+01,2.750000E+01,Active Shallow Crust,2.400092E+02,5.799732E+01,0.000000E+00 +2162484,fr,1,4.250000E+00,3.524200E+00,5.028698E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2162538,fr,1,4.650000E+00,3.524200E+00,5.028698E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,-9.000000E+01 +2162544,fr,1,4.750000E+00,3.524200E+00,5.028698E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +2162569,fr,1,4.950000E+00,3.524200E+00,5.028698E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +2162629,fr,1,5.450000E+00,3.524200E+00,5.028698E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2163360,fr,1,3.550000E+00,3.157140E+00,4.369956E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +2163370,fr,1,3.550000E+00,3.157140E+00,4.369956E+01,1.500000E+01,Active Shallow Crust,1.288956E+02,8.999453E+01,0.000000E+00 +2163385,fr,1,3.750000E+00,3.157140E+00,4.369956E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999131E+01,0.000000E+00 +2163409,fr,1,3.950000E+00,3.157140E+00,4.369956E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999080E+01,0.000000E+00 +2163420,fr,1,4.050000E+00,3.157140E+00,4.369956E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2163421,fr,2,4.050000E+00,3.157140E+00,4.369956E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2163432,fr,1,4.150000E+00,3.157140E+00,4.369956E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999087E+01,0.000000E+00 +2163840,fr,1,3.550000E+00,-1.908190E+00,4.255461E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +2163855,fr,1,3.650000E+00,-1.908190E+00,4.255461E+01,5.000000E+00,Active Shallow Crust,2.400006E+02,5.801310E+01,0.000000E+00 +2163864,fr,1,3.750000E+00,-1.908190E+00,4.255461E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +2163873,fr,1,3.750000E+00,-1.908190E+00,4.255461E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.996742E+01,0.000000E+00 +2163888,fr,1,3.950000E+00,-1.908190E+00,4.255461E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +2163931,fr,1,4.250000E+00,-1.908190E+00,4.255461E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,-9.000000E+01 +2163948,fr,1,4.450000E+00,-1.908190E+00,4.255461E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +2163958,fr,1,4.450000E+00,-1.908190E+00,4.255461E+01,1.500000E+01,Active Shallow Crust,1.288931E+02,8.999374E+01,0.000000E+00 +2163969,fr,1,4.550000E+00,-1.908190E+00,4.255461E+01,5.000000E+00,Active Shallow Crust,1.288948E+02,8.998570E+01,0.000000E+00 +2163988,fr,1,4.750000E+00,-1.908190E+00,4.255461E+01,1.500000E+01,Active Shallow Crust,2.400061E+02,5.800421E+01,0.000000E+00 +2164321,fr,2,3.550000E+00,7.546460E+00,5.069267E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998722E+01,0.000000E+00 +2164323,fr,1,3.550000E+00,7.546460E+00,5.069267E+01,5.000000E+00,Active Shallow Crust,2.400128E+02,5.799822E+01,0.000000E+00 +2164326,fr,1,3.550000E+00,7.546460E+00,5.069267E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998708E+01,-9.000000E+01 +2164334,fr,1,3.650000E+00,7.546460E+00,5.069267E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +2164352,fr,1,3.750000E+00,7.546460E+00,5.069267E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,-9.000000E+01 +2164371,fr,1,3.950000E+00,7.546460E+00,5.069267E+01,5.000000E+00,Active Shallow Crust,2.400200E+02,5.800571E+01,0.000000E+00 +2164380,fr,2,4.050000E+00,7.546460E+00,5.069267E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998922E+01,0.000000E+00 +2164404,fr,2,4.250000E+00,7.546460E+00,5.069267E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +2164446,fr,1,4.550000E+00,7.546460E+00,5.069267E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,-9.000000E+01 +2164801,fr,2,3.550000E+00,1.909600E-01,4.563432E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +2164812,fr,1,3.650000E+00,1.909600E-01,4.563432E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2164818,fr,2,3.650000E+00,1.909600E-01,4.563432E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +2164824,fr,1,3.750000E+00,1.909600E-01,4.563432E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2164825,fr,1,3.750000E+00,1.909600E-01,4.563432E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2164836,fr,1,3.850000E+00,1.909600E-01,4.563432E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2164848,fr,1,3.950000E+00,1.909600E-01,4.563432E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2164862,fr,1,4.050000E+00,1.909600E-01,4.563432E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2164865,fr,1,4.050000E+00,1.909600E-01,4.563432E+01,2.750000E+01,Active Shallow Crust,2.400058E+02,5.800578E+01,0.000000E+00 +2164869,fr,1,4.050000E+00,1.909600E-01,4.563432E+01,5.000000E+00,Active Shallow Crust,1.288906E+02,8.999374E+01,0.000000E+00 +2164872,fr,1,4.150000E+00,1.909600E-01,4.563432E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +2164897,fr,1,4.350000E+00,1.909600E-01,4.563432E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2164932,fr,1,4.650000E+00,1.909600E-01,4.563432E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2164944,fr,1,4.750000E+00,1.909600E-01,4.563432E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2164945,fr,1,4.750000E+00,1.909600E-01,4.563432E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2164995,fr,1,5.150000E+00,1.909600E-01,4.563432E+01,5.000000E+00,Active Shallow Crust,2.400191E+02,5.799987E+01,0.000000E+00 +2165136,fr,1,6.350000E+00,1.909658E-01,4.563432E+01,7.567806E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +2165307,fr,1,3.750000E+00,8.482260E+00,5.079442E+01,5.000000E+00,Active Shallow Crust,2.400102E+02,5.801615E+01,0.000000E+00 +2165784,fr,1,3.750000E+00,3.456830E+00,4.726135E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998913E+01,0.000000E+00 +2165832,fr,1,4.150000E+00,3.456830E+00,4.726135E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +2166240,fr,1,3.550000E+00,1.838930E+00,4.401799E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998912E+01,0.000000E+00 +2166360,fr,1,4.550000E+00,1.838930E+00,4.401799E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +2166420,fr,1,5.050000E+00,1.838930E+00,4.401799E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2166724,fr,1,3.550000E+00,1.574220E+00,4.063882E+01,1.500000E+01,Active Shallow Crust,2.400120E+02,5.799794E+01,0.000000E+00 +2166732,fr,2,3.650000E+00,1.574220E+00,4.063882E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +2166753,fr,1,3.750000E+00,1.574220E+00,4.063882E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996739E+01,0.000000E+00 +2166756,fr,2,3.850000E+00,1.574220E+00,4.063882E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +2167011,fr,1,5.950000E+00,1.574220E+00,4.063882E+01,5.000000E+00,Active Shallow Crust,2.400411E+02,5.800109E+01,0.000000E+00 +2167206,fr,1,3.550000E+00,4.279100E+00,4.266566E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999250E+01,-9.000000E+01 +2167236,fr,1,3.850000E+00,4.279100E+00,4.266566E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +2167272,fr,1,4.150000E+00,4.279100E+00,4.266566E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +2167321,fr,1,4.550000E+00,4.279100E+00,4.266566E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +2167684,fr,1,3.550000E+00,1.566220E+00,4.492899E+01,1.500000E+01,Active Shallow Crust,2.400120E+02,5.799793E+01,0.000000E+00 +2167692,fr,1,3.650000E+00,1.566220E+00,4.492899E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +2167693,fr,1,3.650000E+00,1.566220E+00,4.492899E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +2167707,fr,1,3.750000E+00,1.566220E+00,4.492899E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.801751E+01,0.000000E+00 +2167708,fr,1,3.750000E+00,1.566220E+00,4.492899E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.801751E+01,0.000000E+00 +2167728,fr,1,3.950000E+00,1.566220E+00,4.492899E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +2167732,fr,1,3.950000E+00,1.566220E+00,4.492899E+01,1.500000E+01,Active Shallow Crust,2.400193E+02,5.800508E+01,0.000000E+00 +2167734,fr,1,3.950000E+00,1.566220E+00,4.492899E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,-9.000000E+01 +2167753,fr,1,4.150000E+00,1.566220E+00,4.492899E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +2167813,fr,1,4.650000E+00,1.566220E+00,4.492899E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2167872,fr,1,5.150000E+00,1.566220E+00,4.492899E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2168172,fr,1,3.650000E+00,5.222350E+00,4.266026E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998678E+01,0.000000E+00 +2168646,fr,1,3.550000E+00,4.673000E-01,4.430275E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +2168695,fr,1,3.950000E+00,4.673000E-01,4.430275E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,-9.000000E+01 +2168808,fr,1,4.950000E+00,4.673000E-01,4.430275E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2169121,fr,1,3.550000E+00,8.948370E+00,4.909575E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998679E+01,0.000000E+00 +2169180,fr,1,4.050000E+00,8.948370E+00,4.909575E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999258E+01,0.000000E+00 +2169216,fr,1,4.350000E+00,8.948370E+00,4.909575E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +2169276,fr,1,4.850000E+00,8.948370E+00,4.909575E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999113E+01,0.000000E+00 +2169348,fr,1,5.450000E+00,8.948370E+00,4.909575E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +2169600,fr,2,3.550000E+00,1.620090E+00,4.145441E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +2169606,fr,1,3.550000E+00,1.620090E+00,4.145441E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,-9.000000E+01 +2169612,fr,1,3.650000E+00,1.620090E+00,4.145441E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +2169625,fr,1,3.750000E+00,1.620090E+00,4.145441E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +2169633,fr,1,3.750000E+00,1.620090E+00,4.145441E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996741E+01,0.000000E+00 +2169636,fr,2,3.850000E+00,1.620090E+00,4.145441E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +2169648,fr,1,3.950000E+00,1.620090E+00,4.145441E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +2169660,fr,1,4.050000E+00,1.620090E+00,4.145441E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +2169673,fr,1,4.150000E+00,1.620090E+00,4.145441E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +2169684,fr,1,4.250000E+00,1.620090E+00,4.145441E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +2170095,fr,1,3.650000E+00,3.429640E+00,4.852705E+01,5.000000E+00,Active Shallow Crust,2.400016E+02,5.801246E+01,0.000000E+00 +2170134,fr,1,3.950000E+00,3.429640E+00,4.852705E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998934E+01,-9.000000E+01 +2170191,fr,1,4.450000E+00,3.429640E+00,4.852705E+01,5.000000E+00,Active Shallow Crust,2.400058E+02,5.799466E+01,0.000000E+00 +2170240,fr,1,4.850000E+00,3.429640E+00,4.852705E+01,1.500000E+01,Active Shallow Crust,2.400180E+02,5.800242E+01,0.000000E+00 +2170248,fr,1,4.950000E+00,3.429640E+00,4.852705E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2170617,fr,1,3.950000E+00,-5.074810E+00,4.676328E+01,5.000000E+00,Active Shallow Crust,1.289012E+02,8.999346E+01,0.000000E+00 +2171040,fr,2,3.550000E+00,3.568600E+00,4.135326E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998865E+01,0.000000E+00 +2171052,fr,1,3.650000E+00,3.568600E+00,4.135326E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2171085,fr,1,3.850000E+00,3.568600E+00,4.135326E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999330E+01,0.000000E+00 +2171098,fr,1,3.950000E+00,3.568600E+00,4.135326E+01,1.500000E+01,Active Shallow Crust,1.289007E+02,8.999403E+01,0.000000E+00 +2171112,fr,2,4.150000E+00,3.568600E+00,4.135326E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +2171133,fr,1,4.250000E+00,3.568600E+00,4.135326E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.998103E+01,0.000000E+00 +2171281,fr,1,5.550000E+00,3.568600E+00,4.135326E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +2171640,fr,1,4.550000E+00,-6.814200E-01,4.392563E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +2172003,fr,1,3.550000E+00,1.323440E+00,4.194102E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799795E+01,0.000000E+00 +2172036,fr,1,3.850000E+00,1.323440E+00,4.194102E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +2172048,fr,2,3.950000E+00,1.323440E+00,4.194102E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +2172116,fr,1,4.450000E+00,1.323440E+00,4.194102E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +2172264,fr,1,5.750000E+00,1.323440E+00,4.194102E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2172485,fr,1,3.550000E+00,5.402300E-01,4.991995E+01,2.750000E+01,Active Shallow Crust,2.400126E+02,5.799815E+01,0.000000E+00 +2172502,fr,1,3.650000E+00,5.402300E-01,4.991995E+01,1.500000E+01,Active Shallow Crust,1.289002E+02,8.996347E+01,0.000000E+00 +2172510,fr,1,3.750000E+00,5.402300E-01,4.991995E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,-9.000000E+01 +2172515,fr,1,3.750000E+00,5.402300E-01,4.991995E+01,2.750000E+01,Active Shallow Crust,1.288963E+02,8.996732E+01,0.000000E+00 +2172516,fr,1,3.850000E+00,5.402300E-01,4.991995E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2172528,fr,1,3.950000E+00,5.402300E-01,4.991995E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +2172794,fr,1,6.150000E+00,5.402300E-01,4.991995E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2172974,fr,1,3.650000E+00,4.080810E+00,4.567594E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998744E+01,0.000000E+00 +2172982,fr,1,3.650000E+00,4.080810E+00,4.567594E+01,1.500000E+01,Active Shallow Crust,1.289011E+02,8.996351E+01,0.000000E+00 +2172988,fr,1,3.750000E+00,4.080810E+00,4.567594E+01,1.500000E+01,Active Shallow Crust,2.400077E+02,5.801752E+01,0.000000E+00 +2173009,fr,1,3.950000E+00,4.080810E+00,4.567594E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999111E+01,0.000000E+00 +2173012,fr,1,3.950000E+00,4.080810E+00,4.567594E+01,1.500000E+01,Active Shallow Crust,2.400190E+02,5.800545E+01,0.000000E+00 +2173056,fr,1,4.350000E+00,4.080810E+00,4.567594E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +2173059,fr,1,4.350000E+00,4.080810E+00,4.567594E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799626E+01,0.000000E+00 +2173096,fr,1,4.650000E+00,4.080810E+00,4.567594E+01,1.500000E+01,Active Shallow Crust,2.400106E+02,5.799417E+01,0.000000E+00 +2173166,fr,1,5.250000E+00,4.080810E+00,4.567594E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2173440,fr,2,3.550000E+00,5.144140E+00,4.582483E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999297E+01,0.000000E+00 +2173443,fr,1,3.550000E+00,5.144140E+00,4.582483E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799781E+01,0.000000E+00 +2173453,fr,1,3.650000E+00,5.144140E+00,4.582483E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998747E+01,0.000000E+00 +2173464,fr,1,3.750000E+00,5.144140E+00,4.582483E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998884E+01,0.000000E+00 +2173465,fr,1,3.750000E+00,5.144140E+00,4.582483E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998884E+01,0.000000E+00 +2173473,fr,1,3.750000E+00,5.144140E+00,4.582483E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.996748E+01,0.000000E+00 +2173479,fr,1,3.850000E+00,5.144140E+00,4.582483E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799687E+01,0.000000E+00 +2173485,fr,1,3.850000E+00,5.144140E+00,4.582483E+01,5.000000E+00,Active Shallow Crust,1.288949E+02,8.999503E+01,0.000000E+00 +2173488,fr,2,3.950000E+00,5.144140E+00,4.582483E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999113E+01,0.000000E+00 +2173491,fr,1,3.950000E+00,5.144140E+00,4.582483E+01,5.000000E+00,Active Shallow Crust,2.400194E+02,5.800474E+01,0.000000E+00 +2173512,fr,2,4.150000E+00,5.144140E+00,4.582483E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +2173572,fr,1,4.650000E+00,5.144140E+00,4.582483E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2173644,fr,1,5.250000E+00,5.144140E+00,4.582483E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2174404,fr,1,3.550000E+00,1.794740E+00,5.023550E+01,1.500000E+01,Active Shallow Crust,2.400123E+02,5.799825E+01,0.000000E+00 +2174412,fr,1,3.650000E+00,1.794740E+00,5.023550E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2174436,fr,1,3.850000E+00,1.794740E+00,5.023550E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +2174464,fr,1,4.050000E+00,1.794740E+00,5.023550E+01,1.500000E+01,Active Shallow Crust,2.400065E+02,5.800609E+01,0.000000E+00 +2174469,fr,1,4.050000E+00,1.794740E+00,5.023550E+01,5.000000E+00,Active Shallow Crust,1.288900E+02,8.999365E+01,0.000000E+00 +2174472,fr,1,4.150000E+00,1.794740E+00,5.023550E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +2174494,fr,1,4.250000E+00,1.794740E+00,5.023550E+01,1.500000E+01,Active Shallow Crust,1.288935E+02,8.998097E+01,0.000000E+00 +2175360,fr,1,3.550000E+00,1.671870E+00,4.654225E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +2175361,fr,1,3.550000E+00,1.671870E+00,4.654225E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +2175372,fr,3,3.650000E+00,1.671870E+00,4.654225E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999073E+01,0.000000E+00 +2175373,fr,1,3.650000E+00,1.671870E+00,4.654225E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999073E+01,0.000000E+00 +2175376,fr,1,3.650000E+00,1.671870E+00,4.654225E+01,1.500000E+01,Active Shallow Crust,2.400009E+02,5.801307E+01,0.000000E+00 +2175379,fr,1,3.650000E+00,1.671870E+00,4.654225E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,-9.000000E+01 +2175381,fr,1,3.650000E+00,1.671870E+00,4.654225E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.996352E+01,0.000000E+00 +2175384,fr,1,3.750000E+00,1.671870E+00,4.654225E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +2175385,fr,2,3.750000E+00,1.671870E+00,4.654225E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +2175399,fr,1,3.850000E+00,1.671870E+00,4.654225E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799784E+01,0.000000E+00 +2175405,fr,1,3.850000E+00,1.671870E+00,4.654225E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999325E+01,0.000000E+00 +2175417,fr,1,3.950000E+00,1.671870E+00,4.654225E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.999398E+01,0.000000E+00 +2175444,fr,1,4.250000E+00,1.671870E+00,4.654225E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2175459,fr,1,4.350000E+00,1.671870E+00,4.654225E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.799595E+01,0.000000E+00 +2175470,fr,1,4.450000E+00,1.671870E+00,4.654225E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +2175495,fr,1,4.650000E+00,1.671870E+00,4.654225E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799427E+01,0.000000E+00 +2175529,fr,1,4.950000E+00,1.671870E+00,4.654225E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2175552,fr,1,5.150000E+00,1.671870E+00,4.654225E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2175588,fr,1,5.450000E+00,1.671870E+00,4.654225E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2175840,fr,1,3.550000E+00,1.026380E+00,5.072537E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +2175841,fr,1,3.550000E+00,1.026380E+00,5.072537E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +2175860,fr,1,3.650000E+00,1.026380E+00,5.072537E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,-9.000000E+01 +2175866,fr,1,3.750000E+00,1.026380E+00,5.072537E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +2175876,fr,1,3.850000E+00,1.026380E+00,5.072537E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +2175879,fr,1,3.850000E+00,1.026380E+00,5.072537E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799796E+01,0.000000E+00 +2175885,fr,1,3.850000E+00,1.026380E+00,5.072537E+01,5.000000E+00,Active Shallow Crust,1.288951E+02,8.999379E+01,0.000000E+00 +2175894,fr,1,3.950000E+00,1.026380E+00,5.072537E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,-9.000000E+01 +2176321,fr,1,3.550000E+00,1.593240E+00,4.211983E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +2176332,fr,1,3.650000E+00,1.593240E+00,4.211983E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2176345,fr,1,3.750000E+00,1.593240E+00,4.211983E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +2176368,fr,1,3.950000E+00,1.593240E+00,4.211983E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +2176383,fr,1,4.050000E+00,1.593240E+00,4.211983E+01,5.000000E+00,Active Shallow Crust,2.400052E+02,5.800579E+01,0.000000E+00 +2176394,fr,1,4.150000E+00,1.593240E+00,4.211983E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2176416,fr,1,4.350000E+00,1.593240E+00,4.211983E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +2176443,fr,1,4.550000E+00,1.593240E+00,4.211983E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799714E+01,0.000000E+00 +2176507,fr,1,5.050000E+00,1.593240E+00,4.211983E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +2176800,fr,5,3.550000E+00,5.955790E+00,4.553953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999294E+01,0.000000E+00 +2176801,fr,4,3.550000E+00,5.955790E+00,4.553953E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999294E+01,0.000000E+00 +2176803,fr,1,3.550000E+00,5.955790E+00,4.553953E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799784E+01,0.000000E+00 +2176804,fr,1,3.550000E+00,5.955790E+00,4.553953E+01,1.500000E+01,Active Shallow Crust,2.400118E+02,5.799784E+01,0.000000E+00 +2176812,fr,4,3.650000E+00,5.955790E+00,4.553953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998741E+01,0.000000E+00 +2176813,fr,1,3.650000E+00,5.955790E+00,4.553953E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998741E+01,0.000000E+00 +2176815,fr,2,3.650000E+00,5.955790E+00,4.553953E+01,5.000000E+00,Active Shallow Crust,2.400015E+02,5.801195E+01,0.000000E+00 +2176830,fr,1,3.750000E+00,5.955790E+00,4.553953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998865E+01,-9.000000E+01 +2176837,fr,1,3.850000E+00,5.955790E+00,4.553953E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2176845,fr,1,3.850000E+00,5.955790E+00,4.553953E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999250E+01,0.000000E+00 +2176848,fr,2,3.950000E+00,5.955790E+00,4.553953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999109E+01,0.000000E+00 +2176854,fr,1,3.950000E+00,5.955790E+00,4.553953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999098E+01,-9.000000E+01 +2176860,fr,1,4.050000E+00,5.955790E+00,4.553953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +2176861,fr,2,4.050000E+00,5.955790E+00,4.553953E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +2176863,fr,1,4.050000E+00,5.955790E+00,4.553953E+01,5.000000E+00,Active Shallow Crust,2.400062E+02,5.800595E+01,0.000000E+00 +2176866,fr,1,4.050000E+00,5.955790E+00,4.553953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999197E+01,-9.000000E+01 +2176872,fr,1,4.150000E+00,5.955790E+00,4.553953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +2176882,fr,1,4.150000E+00,5.955790E+00,4.553953E+01,1.500000E+01,Active Shallow Crust,1.288981E+02,8.999292E+01,0.000000E+00 +2176884,fr,2,4.250000E+00,5.955790E+00,4.553953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +2176885,fr,1,4.250000E+00,5.955790E+00,4.553953E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +2176897,fr,1,4.350000E+00,5.955790E+00,4.553953E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +2176905,fr,1,4.350000E+00,5.955790E+00,4.553953E+01,5.000000E+00,Active Shallow Crust,1.288979E+02,8.998299E+01,0.000000E+00 +2176921,fr,1,4.550000E+00,5.955790E+00,4.553953E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +2176957,fr,1,4.850000E+00,5.955790E+00,4.553953E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +2176993,fr,1,5.150000E+00,5.955790E+00,4.553953E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +2177064,fr,1,5.750000E+00,5.955790E+00,4.553953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +2177285,fr,1,3.550000E+00,4.023220E+00,4.356280E+01,2.750000E+01,Active Shallow Crust,2.400122E+02,5.799838E+01,0.000000E+00 +2177298,fr,1,3.650000E+00,4.023220E+00,4.356280E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998682E+01,-9.000000E+01 +2177305,fr,1,3.750000E+00,4.023220E+00,4.356280E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998839E+01,0.000000E+00 +2177314,fr,1,3.750000E+00,4.023220E+00,4.356280E+01,1.500000E+01,Active Shallow Crust,1.288962E+02,8.996744E+01,0.000000E+00 +2177325,fr,1,3.850000E+00,4.023220E+00,4.356280E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.999224E+01,0.000000E+00 +2177335,fr,1,3.950000E+00,4.023220E+00,4.356280E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999067E+01,-9.000000E+01 +2177340,fr,1,4.050000E+00,4.023220E+00,4.356280E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999178E+01,0.000000E+00 +2178240,fr,2,3.550000E+00,1.212160E+00,4.570996E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +2178252,fr,2,3.650000E+00,1.212160E+00,4.570996E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +2178270,fr,1,3.750000E+00,1.212160E+00,4.570996E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +2178289,fr,1,3.950000E+00,1.212160E+00,4.570996E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2178302,fr,1,4.050000E+00,1.212160E+00,4.570996E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2178315,fr,1,4.150000E+00,1.212160E+00,4.570996E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799723E+01,0.000000E+00 +2178342,fr,1,4.350000E+00,1.212160E+00,4.570996E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +2178361,fr,1,4.550000E+00,1.212160E+00,4.570996E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2178372,fr,1,4.650000E+00,1.212160E+00,4.570996E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2178410,fr,1,4.950000E+00,1.212160E+00,4.570996E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2178470,fr,1,5.450000E+00,1.212160E+00,4.570996E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +2178720,fr,4,3.550000E+00,2.138300E+00,4.247611E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +2178721,fr,1,3.550000E+00,2.138300E+00,4.247611E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +2178729,fr,1,3.550000E+00,2.138300E+00,4.247611E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999442E+01,0.000000E+00 +2178732,fr,1,3.650000E+00,2.138300E+00,4.247611E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2178733,fr,3,3.650000E+00,2.138300E+00,4.247611E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2178744,fr,4,3.750000E+00,2.138300E+00,4.247611E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999113E+01,0.000000E+00 +2178750,fr,1,3.750000E+00,2.138300E+00,4.247611E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,-9.000000E+01 +2178752,fr,1,3.750000E+00,2.138300E+00,4.247611E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999104E+01,-9.000000E+01 +2178756,fr,1,3.850000E+00,2.138300E+00,4.247611E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +2178759,fr,1,3.850000E+00,2.138300E+00,4.247611E+01,5.000000E+00,Active Shallow Crust,2.400100E+02,5.799811E+01,0.000000E+00 +2178761,fr,1,3.850000E+00,2.138300E+00,4.247611E+01,2.750000E+01,Active Shallow Crust,2.400100E+02,5.799811E+01,0.000000E+00 +2178769,fr,1,3.950000E+00,2.138300E+00,4.247611E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +2178771,fr,1,3.950000E+00,2.138300E+00,4.247611E+01,5.000000E+00,Active Shallow Crust,2.400192E+02,5.800478E+01,0.000000E+00 +2178772,fr,1,3.950000E+00,2.138300E+00,4.247611E+01,1.500000E+01,Active Shallow Crust,2.400192E+02,5.800478E+01,0.000000E+00 +2178781,fr,2,4.050000E+00,2.138300E+00,4.247611E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +2178801,fr,1,4.150000E+00,2.138300E+00,4.247611E+01,5.000000E+00,Active Shallow Crust,1.288977E+02,8.999441E+01,0.000000E+00 +2178805,fr,1,4.250000E+00,2.138300E+00,4.247611E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2178817,fr,1,4.350000E+00,2.138300E+00,4.247611E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +2178823,fr,1,4.350000E+00,2.138300E+00,4.247611E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,-9.000000E+01 +2178828,fr,4,4.450000E+00,2.138300E+00,4.247611E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +2178831,fr,1,4.450000E+00,2.138300E+00,4.247611E+01,5.000000E+00,Active Shallow Crust,2.400043E+02,5.799460E+01,0.000000E+00 +2178843,fr,1,4.550000E+00,2.138300E+00,4.247611E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799730E+01,0.000000E+00 +2178852,fr,1,4.650000E+00,2.138300E+00,4.247611E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +2178855,fr,1,4.650000E+00,2.138300E+00,4.247611E+01,5.000000E+00,Active Shallow Crust,2.400094E+02,5.799405E+01,0.000000E+00 +2178874,fr,1,4.750000E+00,2.138300E+00,4.247611E+01,1.500000E+01,Active Shallow Crust,1.288901E+02,8.998795E+01,0.000000E+00 +2179201,fr,1,3.550000E+00,4.981500E-01,4.212543E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +2179219,fr,1,3.650000E+00,4.981500E-01,4.212543E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +2179224,fr,1,3.750000E+00,4.981500E-01,4.212543E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2179260,fr,1,4.050000E+00,4.981500E-01,4.212543E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2179302,fr,1,4.350000E+00,4.981500E-01,4.212543E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +2179308,fr,1,4.450000E+00,4.981500E-01,4.212543E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +2179311,fr,1,4.450000E+00,4.981500E-01,4.212543E+01,5.000000E+00,Active Shallow Crust,2.400042E+02,5.799445E+01,0.000000E+00 +2179680,fr,1,3.550000E+00,1.200510E+00,4.205680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +2179692,fr,1,3.650000E+00,1.200510E+00,4.205680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2179693,fr,1,3.650000E+00,1.200510E+00,4.205680E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2179701,fr,1,3.650000E+00,1.200510E+00,4.205680E+01,5.000000E+00,Active Shallow Crust,1.289012E+02,8.996344E+01,0.000000E+00 +2179716,fr,1,3.850000E+00,1.200510E+00,4.205680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +2179717,fr,2,3.850000E+00,1.200510E+00,4.205680E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +2179722,fr,1,3.850000E+00,1.200510E+00,4.205680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,-9.000000E+01 +2179730,fr,1,3.950000E+00,1.200510E+00,4.205680E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +2179741,fr,1,4.050000E+00,1.200510E+00,4.205680E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +2179764,fr,1,4.250000E+00,1.200510E+00,4.205680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2179777,fr,1,4.350000E+00,1.200510E+00,4.205680E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +2179788,fr,1,4.450000E+00,1.200510E+00,4.205680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2179798,fr,1,4.450000E+00,1.200510E+00,4.205680E+01,1.500000E+01,Active Shallow Crust,1.288932E+02,8.999369E+01,0.000000E+00 +2180160,fr,3,3.550000E+00,-9.743700E-01,4.293484E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2180163,fr,1,3.550000E+00,-9.743700E-01,4.293484E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799809E+01,0.000000E+00 +2180165,fr,1,3.550000E+00,-9.743700E-01,4.293484E+01,2.750000E+01,Active Shallow Crust,2.400117E+02,5.799799E+01,0.000000E+00 +2180166,fr,1,3.550000E+00,-9.743700E-01,4.293484E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,-9.000000E+01 +2180172,fr,1,3.650000E+00,-9.743700E-01,4.293484E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2180173,fr,1,3.650000E+00,-9.743700E-01,4.293484E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2180174,fr,1,3.650000E+00,-9.743700E-01,4.293484E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2180184,fr,4,3.750000E+00,-9.743700E-01,4.293484E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +2180186,fr,1,3.750000E+00,-9.743700E-01,4.293484E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +2180196,fr,3,3.850000E+00,-9.743700E-01,4.293484E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2180198,fr,1,3.850000E+00,-9.743700E-01,4.293484E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2180199,fr,1,3.850000E+00,-9.743700E-01,4.293484E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.799771E+01,0.000000E+00 +2180203,fr,1,3.850000E+00,-9.743700E-01,4.293484E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +2180208,fr,3,3.950000E+00,-9.743700E-01,4.293484E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2180209,fr,1,3.950000E+00,-9.743700E-01,4.293484E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2180217,fr,1,3.950000E+00,-9.743700E-01,4.293484E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.999389E+01,0.000000E+00 +2180220,fr,1,4.050000E+00,-9.743700E-01,4.293484E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2180233,fr,1,4.150000E+00,-9.743700E-01,4.293484E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +2180235,fr,1,4.150000E+00,-9.743700E-01,4.293484E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.799721E+01,0.000000E+00 +2180238,fr,1,4.150000E+00,-9.743700E-01,4.293484E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,-9.000000E+01 +2180269,fr,1,4.450000E+00,-9.743700E-01,4.293484E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2180293,fr,1,4.650000E+00,-9.743700E-01,4.293484E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +2180640,fr,1,3.550000E+00,3.933710E+00,4.100000E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +2180641,fr,1,3.550000E+00,3.933710E+00,4.100000E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +2180652,fr,1,3.650000E+00,3.933710E+00,4.100000E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +2180654,fr,1,3.650000E+00,3.933710E+00,4.100000E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +2180673,fr,1,3.750000E+00,3.933710E+00,4.100000E+01,5.000000E+00,Active Shallow Crust,1.288971E+02,8.996708E+01,0.000000E+00 +2180724,fr,1,4.250000E+00,3.933710E+00,4.100000E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +2180736,fr,1,4.350000E+00,3.933710E+00,4.100000E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +2181120,fr,1,3.550000E+00,-2.561290E+00,4.811152E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +2181132,fr,1,3.650000E+00,-2.561290E+00,4.811152E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +2181139,fr,1,3.650000E+00,-2.561290E+00,4.811152E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999090E+01,-9.000000E+01 +2181141,fr,1,3.650000E+00,-2.561290E+00,4.811152E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.996355E+01,0.000000E+00 +2181148,fr,1,3.750000E+00,-2.561290E+00,4.811152E+01,1.500000E+01,Active Shallow Crust,2.400085E+02,5.801771E+01,0.000000E+00 +2181152,fr,1,3.750000E+00,-2.561290E+00,4.811152E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998918E+01,-9.000000E+01 +2181156,fr,1,3.850000E+00,-2.561290E+00,4.811152E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +2181159,fr,1,3.850000E+00,-2.561290E+00,4.811152E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799809E+01,0.000000E+00 +2181169,fr,1,3.950000E+00,-2.561290E+00,4.811152E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +2181194,fr,1,4.150000E+00,-2.561290E+00,4.811152E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2181201,fr,1,4.150000E+00,-2.561290E+00,4.811152E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.999409E+01,0.000000E+00 +2181204,fr,1,4.250000E+00,-2.561290E+00,4.811152E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +2181252,fr,1,4.650000E+00,-2.561290E+00,4.811152E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +2181324,fr,1,5.250000E+00,-2.561290E+00,4.811152E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2181600,fr,1,3.550000E+00,-5.013870E+00,4.910179E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998679E+01,0.000000E+00 +2181648,fr,1,3.950000E+00,-5.013870E+00,4.910179E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999167E+01,0.000000E+00 +2181651,fr,1,3.950000E+00,-5.013870E+00,4.910179E+01,5.000000E+00,Active Shallow Crust,2.400204E+02,5.800454E+01,0.000000E+00 +2181708,fr,1,4.450000E+00,-5.013870E+00,4.910179E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +2182564,fr,1,3.550000E+00,5.058940E+00,4.697865E+01,1.500000E+01,Active Shallow Crust,2.400124E+02,5.799835E+01,0.000000E+00 +2182582,fr,1,3.650000E+00,5.058940E+00,4.697865E+01,1.500000E+01,Active Shallow Crust,1.288997E+02,8.996353E+01,0.000000E+00 +2182584,fr,1,3.750000E+00,5.058940E+00,4.697865E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +2182585,fr,1,3.750000E+00,5.058940E+00,4.697865E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +2182587,fr,1,3.750000E+00,5.058940E+00,4.697865E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.801725E+01,0.000000E+00 +2182591,fr,1,3.750000E+00,5.058940E+00,4.697865E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998895E+01,-9.000000E+01 +2182596,fr,1,3.850000E+00,5.058940E+00,4.697865E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +2182608,fr,1,3.950000E+00,5.058940E+00,4.697865E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999132E+01,0.000000E+00 +2183040,fr,1,3.550000E+00,-4.506100E-01,5.078648E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2183052,fr,1,3.650000E+00,-4.506100E-01,5.078648E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2183067,fr,1,3.750000E+00,-4.506100E-01,5.078648E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.801767E+01,0.000000E+00 +2183137,fr,1,4.350000E+00,-4.506100E-01,5.078648E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2183331,fr,1,5.950000E+00,-4.506100E-01,5.078648E+01,5.000000E+00,Active Shallow Crust,2.400580E+02,5.800001E+01,0.000000E+00 +2183520,fr,1,3.550000E+00,-1.484600E+00,4.779594E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +2183529,fr,1,3.550000E+00,-1.484600E+00,4.779594E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999323E+01,0.000000E+00 +2183544,fr,3,3.750000E+00,-1.484600E+00,4.779594E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +2183546,fr,1,3.750000E+00,-1.484600E+00,4.779594E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +2183556,fr,1,3.850000E+00,-1.484600E+00,4.779594E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +2183580,fr,2,4.050000E+00,-1.484600E+00,4.779594E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +2183606,fr,1,4.250000E+00,-1.484600E+00,4.779594E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2183608,fr,1,4.250000E+00,-1.484600E+00,4.779594E+01,1.500000E+01,Active Shallow Crust,2.400078E+02,5.799411E+01,0.000000E+00 +2183629,fr,1,4.450000E+00,-1.484600E+00,4.779594E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +2183712,fr,1,5.150000E+00,-1.484600E+00,4.779594E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2184000,fr,1,3.550000E+00,7.606920E+00,5.106847E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998733E+01,0.000000E+00 +2184028,fr,1,3.750000E+00,7.606920E+00,5.106847E+01,1.500000E+01,Active Shallow Crust,2.400092E+02,5.801770E+01,0.000000E+00 +2184076,fr,1,4.150000E+00,7.606920E+00,5.106847E+01,1.500000E+01,Active Shallow Crust,2.400089E+02,5.799797E+01,0.000000E+00 +2184084,fr,1,4.250000E+00,7.606920E+00,5.106847E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998868E+01,0.000000E+00 +2184480,fr,1,3.550000E+00,5.572900E+00,4.588186E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999298E+01,0.000000E+00 +2184483,fr,1,3.550000E+00,5.572900E+00,4.588186E+01,5.000000E+00,Active Shallow Crust,2.400130E+02,5.799697E+01,0.000000E+00 +2184494,fr,1,3.650000E+00,5.572900E+00,4.588186E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998749E+01,0.000000E+00 +2184498,fr,1,3.650000E+00,5.572900E+00,4.588186E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998734E+01,-9.000000E+01 +2184501,fr,2,3.650000E+00,5.572900E+00,4.588186E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.996351E+01,0.000000E+00 +2184510,fr,1,3.750000E+00,5.572900E+00,4.588186E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,-9.000000E+01 +2184525,fr,1,3.850000E+00,5.572900E+00,4.588186E+01,5.000000E+00,Active Shallow Crust,1.288955E+02,8.999255E+01,0.000000E+00 +2184528,fr,1,3.950000E+00,5.572900E+00,4.588186E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999114E+01,0.000000E+00 +2184549,fr,1,4.050000E+00,5.572900E+00,4.588186E+01,5.000000E+00,Active Shallow Crust,1.288912E+02,8.999408E+01,0.000000E+00 +2184552,fr,1,4.150000E+00,5.572900E+00,4.588186E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +2184561,fr,1,4.150000E+00,5.572900E+00,4.588186E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999472E+01,0.000000E+00 +2184565,fr,1,4.250000E+00,5.572900E+00,4.588186E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +2184661,fr,1,5.050000E+00,5.572900E+00,4.588186E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2184662,fr,1,5.050000E+00,5.572900E+00,4.588186E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2184666,fr,1,5.050000E+00,5.572900E+00,4.588186E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,-9.000000E+01 +2184691,fr,1,5.250000E+00,5.572900E+00,4.588186E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +2184882,fr,1,6.850000E+00,5.572918E+00,4.588186E+01,1.330363E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +2184984,fr,1,3.750000E+00,5.669130E+00,4.177493E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998805E+01,0.000000E+00 +2184987,fr,1,3.750000E+00,5.669130E+00,4.177493E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.801842E+01,0.000000E+00 +2185008,fr,1,3.950000E+00,5.669130E+00,4.177493E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +2185026,fr,1,4.050000E+00,5.669130E+00,4.177493E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999145E+01,-9.000000E+01 +2185033,fr,1,4.150000E+00,5.669130E+00,4.177493E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +2185044,fr,1,4.250000E+00,5.669130E+00,4.177493E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +2185452,fr,2,3.650000E+00,1.300470E+00,5.151243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +2185476,fr,1,3.850000E+00,1.300470E+00,5.151243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2185495,fr,1,3.950000E+00,1.300470E+00,5.151243E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +2185512,fr,1,4.150000E+00,1.300470E+00,5.151243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +2185515,fr,1,4.150000E+00,1.300470E+00,5.151243E+01,5.000000E+00,Active Shallow Crust,2.400094E+02,5.799753E+01,0.000000E+00 +2185518,fr,1,4.150000E+00,1.300470E+00,5.151243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,-9.000000E+01 +2185549,fr,1,4.450000E+00,1.300470E+00,5.151243E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2185560,fr,1,4.550000E+00,1.300470E+00,5.151243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2185581,fr,1,4.650000E+00,1.300470E+00,5.151243E+01,5.000000E+00,Active Shallow Crust,1.288896E+02,8.998695E+01,0.000000E+00 +2185920,fr,1,3.550000E+00,5.618800E+00,4.627801E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999303E+01,0.000000E+00 +2185921,fr,1,3.550000E+00,5.618800E+00,4.627801E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999303E+01,0.000000E+00 +2185922,fr,1,3.550000E+00,5.618800E+00,4.627801E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999303E+01,0.000000E+00 +2185923,fr,1,3.550000E+00,5.618800E+00,4.627801E+01,5.000000E+00,Active Shallow Crust,2.400115E+02,5.799871E+01,0.000000E+00 +2185924,fr,1,3.550000E+00,5.618800E+00,4.627801E+01,1.500000E+01,Active Shallow Crust,2.400115E+02,5.799871E+01,0.000000E+00 +2185933,fr,1,3.650000E+00,5.618800E+00,4.627801E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998758E+01,0.000000E+00 +2185944,fr,1,3.750000E+00,5.618800E+00,4.627801E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998893E+01,0.000000E+00 +2185956,fr,2,3.850000E+00,5.618800E+00,4.627801E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2185968,fr,1,3.950000E+00,5.618800E+00,4.627801E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +2185992,fr,2,4.150000E+00,5.618800E+00,4.627801E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +2186004,fr,1,4.250000E+00,5.618800E+00,4.627801E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +2186007,fr,1,4.250000E+00,5.618800E+00,4.627801E+01,5.000000E+00,Active Shallow Crust,2.400072E+02,5.799413E+01,0.000000E+00 +2186017,fr,1,4.350000E+00,5.618800E+00,4.627801E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998890E+01,0.000000E+00 +2186124,fr,1,5.250000E+00,5.618800E+00,4.627801E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +2186404,fr,1,3.550000E+00,7.432560E+00,5.141586E+01,1.500000E+01,Active Shallow Crust,2.400121E+02,5.799931E+01,0.000000E+00 +2186430,fr,1,3.750000E+00,7.432560E+00,5.141586E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,-9.000000E+01 +2187360,fr,1,3.550000E+00,5.535770E+00,4.678479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999310E+01,0.000000E+00 +2187372,fr,1,3.650000E+00,5.535770E+00,4.678479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998769E+01,0.000000E+00 +2187375,fr,1,3.650000E+00,5.535770E+00,4.678479E+01,5.000000E+00,Active Shallow Crust,2.400002E+02,5.801384E+01,0.000000E+00 +2187424,fr,1,4.050000E+00,5.535770E+00,4.678479E+01,1.500000E+01,Active Shallow Crust,2.400064E+02,5.800594E+01,0.000000E+00 +2187432,fr,1,4.150000E+00,5.535770E+00,4.678479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +2187442,fr,1,4.150000E+00,5.535770E+00,4.678479E+01,1.500000E+01,Active Shallow Crust,1.288966E+02,8.999481E+01,0.000000E+00 +2187444,fr,1,4.250000E+00,5.535770E+00,4.678479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +2187456,fr,1,4.350000E+00,5.535770E+00,4.678479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +2187504,fr,1,4.750000E+00,5.535770E+00,4.678479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +2187516,fr,1,4.850000E+00,5.535770E+00,4.678479E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +2187840,fr,2,3.550000E+00,-2.031640E+00,4.350993E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998903E+01,0.000000E+00 +2187858,fr,1,3.650000E+00,-2.031640E+00,4.350993E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,-9.000000E+01 +2187865,fr,1,3.750000E+00,-2.031640E+00,4.350993E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +2187888,fr,1,3.950000E+00,-2.031640E+00,4.350993E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999077E+01,0.000000E+00 +2187900,fr,1,4.050000E+00,-2.031640E+00,4.350993E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +2187904,fr,1,4.050000E+00,-2.031640E+00,4.350993E+01,1.500000E+01,Active Shallow Crust,2.400056E+02,5.800566E+01,0.000000E+00 +2187984,fr,1,4.750000E+00,-2.031640E+00,4.350993E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +2188321,fr,1,3.550000E+00,3.173970E+00,4.475649E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +2188326,fr,1,3.550000E+00,3.173970E+00,4.475649E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,-9.000000E+01 +2188332,fr,4,3.650000E+00,3.173970E+00,4.475649E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +2188345,fr,1,3.750000E+00,3.173970E+00,4.475649E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +2188350,fr,2,3.750000E+00,3.173970E+00,4.475649E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999137E+01,-9.000000E+01 +2188356,fr,1,3.850000E+00,3.173970E+00,4.475649E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +2188359,fr,1,3.850000E+00,3.173970E+00,4.475649E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799804E+01,0.000000E+00 +2188381,fr,1,4.050000E+00,3.173970E+00,4.475649E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2188427,fr,1,4.350000E+00,3.173970E+00,4.475649E+01,2.750000E+01,Active Shallow Crust,1.288982E+02,8.998271E+01,0.000000E+00 +2188428,fr,1,4.450000E+00,3.173970E+00,4.475649E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +2188440,fr,1,4.550000E+00,3.173970E+00,4.475649E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2188800,fr,1,3.550000E+00,2.915110E+00,4.666487E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +2188815,fr,1,3.650000E+00,2.915110E+00,4.666487E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801324E+01,0.000000E+00 +2188824,fr,1,3.750000E+00,2.915110E+00,4.666487E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +2188828,fr,1,3.750000E+00,2.915110E+00,4.666487E+01,1.500000E+01,Active Shallow Crust,2.400082E+02,5.801745E+01,0.000000E+00 +2188866,fr,1,4.050000E+00,2.915110E+00,4.666487E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,-9.000000E+01 +2188934,fr,1,4.650000E+00,2.915110E+00,4.666487E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +2189280,fr,5,3.550000E+00,8.157680E+00,4.553496E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998587E+01,0.000000E+00 +2189281,fr,1,3.550000E+00,8.157680E+00,4.553496E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998587E+01,0.000000E+00 +2189283,fr,1,3.550000E+00,8.157680E+00,4.553496E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799882E+01,0.000000E+00 +2189288,fr,1,3.550000E+00,8.157680E+00,4.553496E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998571E+01,-9.000000E+01 +2189292,fr,2,3.650000E+00,8.157680E+00,4.553496E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998741E+01,0.000000E+00 +2189294,fr,1,3.650000E+00,8.157680E+00,4.553496E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998741E+01,0.000000E+00 +2189296,fr,1,3.650000E+00,8.157680E+00,4.553496E+01,1.500000E+01,Active Shallow Crust,2.400004E+02,5.801410E+01,0.000000E+00 +2189297,fr,1,3.650000E+00,8.157680E+00,4.553496E+01,2.750000E+01,Active Shallow Crust,2.400004E+02,5.801401E+01,0.000000E+00 +2189299,fr,3,3.650000E+00,8.157680E+00,4.553496E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998727E+01,-9.000000E+01 +2189318,fr,1,3.850000E+00,8.157680E+00,4.553496E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2189328,fr,1,3.950000E+00,8.157680E+00,4.553496E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999109E+01,0.000000E+00 +2189329,fr,1,3.950000E+00,8.157680E+00,4.553496E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999109E+01,0.000000E+00 +2189340,fr,1,4.050000E+00,8.157680E+00,4.553496E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999206E+01,0.000000E+00 +2189376,fr,1,4.350000E+00,8.157680E+00,4.553496E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +2189377,fr,1,4.350000E+00,8.157680E+00,4.553496E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +2189389,fr,1,4.450000E+00,8.157680E+00,4.553496E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2189433,fr,1,4.750000E+00,8.157680E+00,4.553496E+01,5.000000E+00,Active Shallow Crust,1.288886E+02,8.998763E+01,0.000000E+00 +2189546,fr,1,5.750000E+00,8.157680E+00,4.553496E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +2189761,fr,2,3.550000E+00,1.412550E+00,5.099965E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +2189770,fr,1,3.550000E+00,1.412550E+00,5.099965E+01,1.500000E+01,Active Shallow Crust,1.288959E+02,8.999365E+01,0.000000E+00 +2189784,fr,2,3.750000E+00,1.412550E+00,5.099965E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +2189808,fr,1,3.950000E+00,1.412550E+00,5.099965E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2189809,fr,1,3.950000E+00,1.412550E+00,5.099965E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2189829,fr,1,4.050000E+00,1.412550E+00,5.099965E+01,5.000000E+00,Active Shallow Crust,1.288899E+02,8.999376E+01,0.000000E+00 +2189850,fr,1,4.250000E+00,1.412550E+00,5.099965E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +2190247,fr,1,3.550000E+00,4.018230E+00,4.721690E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999307E+01,-9.000000E+01 +2190252,fr,2,3.650000E+00,4.018230E+00,4.721690E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998779E+01,0.000000E+00 +2190257,fr,1,3.650000E+00,4.018230E+00,4.721690E+01,2.750000E+01,Active Shallow Crust,2.400019E+02,5.801254E+01,0.000000E+00 +2190276,fr,1,3.850000E+00,4.018230E+00,4.721690E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +2190312,fr,1,4.150000E+00,4.018230E+00,4.721690E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +2190720,fr,5,3.550000E+00,6.277000E+00,4.412981E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999276E+01,0.000000E+00 +2190731,fr,1,3.550000E+00,6.277000E+00,4.412981E+01,2.750000E+01,Active Shallow Crust,1.288962E+02,8.999276E+01,0.000000E+00 +2190733,fr,1,3.650000E+00,6.277000E+00,4.412981E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998710E+01,0.000000E+00 +2190734,fr,1,3.650000E+00,6.277000E+00,4.412981E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998710E+01,0.000000E+00 +2190744,fr,3,3.750000E+00,6.277000E+00,4.412981E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998850E+01,0.000000E+00 +2190757,fr,1,3.850000E+00,6.277000E+00,4.412981E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2190762,fr,1,3.850000E+00,6.277000E+00,4.412981E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,-9.000000E+01 +2190765,fr,1,3.850000E+00,6.277000E+00,4.412981E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999487E+01,0.000000E+00 +2190768,fr,4,3.950000E+00,6.277000E+00,4.412981E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999087E+01,0.000000E+00 +2190770,fr,1,3.950000E+00,6.277000E+00,4.412981E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999087E+01,0.000000E+00 +2190774,fr,1,3.950000E+00,6.277000E+00,4.412981E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999076E+01,-9.000000E+01 +2190776,fr,1,3.950000E+00,6.277000E+00,4.412981E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999076E+01,-9.000000E+01 +2190779,fr,1,3.950000E+00,6.277000E+00,4.412981E+01,2.750000E+01,Active Shallow Crust,1.289006E+02,8.999543E+01,0.000000E+00 +2190780,fr,1,4.050000E+00,6.277000E+00,4.412981E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999186E+01,0.000000E+00 +2190781,fr,1,4.050000E+00,6.277000E+00,4.412981E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999186E+01,0.000000E+00 +2190792,fr,1,4.150000E+00,6.277000E+00,4.412981E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998912E+01,0.000000E+00 +2190853,fr,1,4.650000E+00,6.277000E+00,4.412981E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +2190881,fr,1,4.850000E+00,6.277000E+00,4.412981E+01,2.750000E+01,Active Shallow Crust,2.400164E+02,5.800216E+01,0.000000E+00 +2190888,fr,1,4.950000E+00,6.277000E+00,4.412981E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +2190914,fr,1,5.150000E+00,6.277000E+00,4.412981E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +2190933,fr,1,5.250000E+00,6.277000E+00,4.412981E+01,5.000000E+00,Active Shallow Crust,1.288844E+02,8.998706E+01,0.000000E+00 +2190949,fr,1,5.450000E+00,6.277000E+00,4.412981E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +2191200,fr,1,3.550000E+00,6.287250E+00,4.479277E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999284E+01,0.000000E+00 +2191212,fr,1,3.650000E+00,6.287250E+00,4.479277E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998724E+01,0.000000E+00 +2191213,fr,1,3.650000E+00,6.287250E+00,4.479277E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998724E+01,0.000000E+00 +2191224,fr,1,3.750000E+00,6.287250E+00,4.479277E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998863E+01,0.000000E+00 +2191257,fr,1,3.950000E+00,6.287250E+00,4.479277E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.999323E+01,0.000000E+00 +2191261,fr,1,4.050000E+00,6.287250E+00,4.479277E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999195E+01,0.000000E+00 +2191278,fr,1,4.150000E+00,6.287250E+00,4.479277E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,-9.000000E+01 +2191285,fr,1,4.250000E+00,6.287250E+00,4.479277E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +2191680,fr,1,3.550000E+00,3.428160E+00,4.453245E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998922E+01,0.000000E+00 +2191704,fr,1,3.750000E+00,3.428160E+00,4.453245E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998858E+01,0.000000E+00 +2191705,fr,1,3.750000E+00,3.428160E+00,4.453245E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998858E+01,0.000000E+00 +2191719,fr,1,3.850000E+00,3.428160E+00,4.453245E+01,5.000000E+00,Active Shallow Crust,2.400100E+02,5.799795E+01,0.000000E+00 +2191724,fr,1,3.850000E+00,3.428160E+00,4.453245E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,-9.000000E+01 +2191728,fr,1,3.950000E+00,3.428160E+00,4.453245E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +2191770,fr,1,4.250000E+00,3.428160E+00,4.453245E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,-9.000000E+01 +2191828,fr,1,4.750000E+00,3.428160E+00,4.453245E+01,1.500000E+01,Active Shallow Crust,2.400068E+02,5.800434E+01,0.000000E+00 +2192160,fr,5,3.550000E+00,7.325890E+00,4.674700E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999309E+01,0.000000E+00 +2192161,fr,3,3.550000E+00,7.325890E+00,4.674700E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999309E+01,0.000000E+00 +2192162,fr,1,3.550000E+00,7.325890E+00,4.674700E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999309E+01,0.000000E+00 +2192163,fr,2,3.550000E+00,7.325890E+00,4.674700E+01,5.000000E+00,Active Shallow Crust,2.400126E+02,5.799834E+01,0.000000E+00 +2192169,fr,1,3.550000E+00,7.325890E+00,4.674700E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999309E+01,0.000000E+00 +2192172,fr,3,3.650000E+00,7.325890E+00,4.674700E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998769E+01,0.000000E+00 +2192173,fr,1,3.650000E+00,7.325890E+00,4.674700E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998769E+01,0.000000E+00 +2192174,fr,2,3.650000E+00,7.325890E+00,4.674700E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998769E+01,0.000000E+00 +2192175,fr,1,3.650000E+00,7.325890E+00,4.674700E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801323E+01,0.000000E+00 +2192176,fr,1,3.650000E+00,7.325890E+00,4.674700E+01,1.500000E+01,Active Shallow Crust,2.400007E+02,5.801323E+01,0.000000E+00 +2192178,fr,2,3.650000E+00,7.325890E+00,4.674700E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998754E+01,-9.000000E+01 +2192182,fr,1,3.650000E+00,7.325890E+00,4.674700E+01,1.500000E+01,Active Shallow Crust,1.289005E+02,8.996353E+01,0.000000E+00 +2192184,fr,3,3.750000E+00,7.325890E+00,4.674700E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998902E+01,0.000000E+00 +2192185,fr,2,3.750000E+00,7.325890E+00,4.674700E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998902E+01,0.000000E+00 +2192186,fr,1,3.750000E+00,7.325890E+00,4.674700E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998902E+01,0.000000E+00 +2192187,fr,1,3.750000E+00,7.325890E+00,4.674700E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.801735E+01,0.000000E+00 +2192188,fr,1,3.750000E+00,7.325890E+00,4.674700E+01,1.500000E+01,Active Shallow Crust,2.400089E+02,5.801735E+01,0.000000E+00 +2192196,fr,6,3.850000E+00,7.325890E+00,4.674700E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +2192197,fr,1,3.850000E+00,7.325890E+00,4.674700E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +2192200,fr,1,3.850000E+00,7.325890E+00,4.674700E+01,1.500000E+01,Active Shallow Crust,2.400111E+02,5.799753E+01,0.000000E+00 +2192202,fr,1,3.850000E+00,7.325890E+00,4.674700E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +2192206,fr,1,3.850000E+00,7.325890E+00,4.674700E+01,1.500000E+01,Active Shallow Crust,1.288953E+02,8.999266E+01,0.000000E+00 +2192208,fr,2,3.950000E+00,7.325890E+00,4.674700E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999128E+01,0.000000E+00 +2192209,fr,1,3.950000E+00,7.325890E+00,4.674700E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999128E+01,0.000000E+00 +2192210,fr,1,3.950000E+00,7.325890E+00,4.674700E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999128E+01,0.000000E+00 +2192220,fr,1,4.050000E+00,7.325890E+00,4.674700E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998834E+01,0.000000E+00 +2192222,fr,1,4.050000E+00,7.325890E+00,4.674700E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998834E+01,0.000000E+00 +2192232,fr,5,4.150000E+00,7.325890E+00,4.674700E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +2192244,fr,2,4.250000E+00,7.325890E+00,4.674700E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +2192248,fr,1,4.250000E+00,7.325890E+00,4.674700E+01,1.500000E+01,Active Shallow Crust,2.400071E+02,5.799448E+01,0.000000E+00 +2192256,fr,3,4.350000E+00,7.325890E+00,4.674700E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998900E+01,0.000000E+00 +2192265,fr,1,4.350000E+00,7.325890E+00,4.674700E+01,5.000000E+00,Active Shallow Crust,1.288971E+02,8.998302E+01,0.000000E+00 +2192268,fr,1,4.450000E+00,7.325890E+00,4.674700E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2192271,fr,1,4.450000E+00,7.325890E+00,4.674700E+01,5.000000E+00,Active Shallow Crust,2.400056E+02,5.799478E+01,0.000000E+00 +2192275,fr,1,4.450000E+00,7.325890E+00,4.674700E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,-9.000000E+01 +2192280,fr,1,4.550000E+00,7.325890E+00,4.674700E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +2192283,fr,1,4.550000E+00,7.325890E+00,4.674700E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.799734E+01,0.000000E+00 +2192289,fr,1,4.550000E+00,7.325890E+00,4.674700E+01,5.000000E+00,Active Shallow Crust,1.288938E+02,8.998566E+01,0.000000E+00 +2192316,fr,1,4.850000E+00,7.325890E+00,4.674700E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +2192346,fr,1,5.050000E+00,7.325890E+00,4.674700E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,-9.000000E+01 +2192365,fr,1,5.250000E+00,7.325890E+00,4.674700E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2192713,fr,1,4.150000E+00,-7.286700E-01,4.460472E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2193126,fr,1,3.550000E+00,1.741590E+00,5.049324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,-9.000000E+01 +2193138,fr,1,3.650000E+00,1.741590E+00,5.049324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +2193144,fr,2,3.750000E+00,1.741590E+00,5.049324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2193147,fr,1,3.750000E+00,1.741590E+00,5.049324E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.801769E+01,0.000000E+00 +2193204,fr,1,4.250000E+00,1.741590E+00,5.049324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2193210,fr,1,4.250000E+00,1.741590E+00,5.049324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +2193252,fr,1,4.650000E+00,1.741590E+00,5.049324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +2193623,fr,1,3.650000E+00,2.396010E+00,4.711349E+01,2.750000E+01,Active Shallow Crust,1.289003E+02,8.996354E+01,0.000000E+00 +2193650,fr,1,3.950000E+00,2.396010E+00,4.711349E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +2193657,fr,1,3.950000E+00,2.396010E+00,4.711349E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.999351E+01,0.000000E+00 +2193660,fr,1,4.050000E+00,2.396010E+00,4.711349E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +2193711,fr,1,4.450000E+00,2.396010E+00,4.711349E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.799454E+01,0.000000E+00 +2194572,fr,1,3.650000E+00,2.321810E+00,4.422848E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +2194573,fr,1,3.650000E+00,2.321810E+00,4.422848E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +2194593,fr,1,3.750000E+00,2.321810E+00,4.422848E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.996745E+01,0.000000E+00 +2194596,fr,1,3.850000E+00,2.321810E+00,4.422848E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +2194597,fr,1,3.850000E+00,2.321810E+00,4.422848E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +2194599,fr,1,3.850000E+00,2.321810E+00,4.422848E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.799752E+01,0.000000E+00 +2194728,fr,1,4.950000E+00,2.321810E+00,4.422848E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2194752,fr,1,5.150000E+00,2.321810E+00,4.422848E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +2194848,fr,1,5.950000E+00,2.321810E+00,4.422848E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2195040,fr,6,3.550000E+00,7.001660E+00,4.434953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999279E+01,0.000000E+00 +2195041,fr,1,3.550000E+00,7.001660E+00,4.434953E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999279E+01,0.000000E+00 +2195042,fr,1,3.550000E+00,7.001660E+00,4.434953E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999279E+01,0.000000E+00 +2195046,fr,1,3.550000E+00,7.001660E+00,4.434953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999271E+01,-9.000000E+01 +2195052,fr,4,3.650000E+00,7.001660E+00,4.434953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998714E+01,0.000000E+00 +2195056,fr,1,3.650000E+00,7.001660E+00,4.434953E+01,1.500000E+01,Active Shallow Crust,2.400022E+02,5.801197E+01,0.000000E+00 +2195066,fr,2,3.750000E+00,7.001660E+00,4.434953E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998854E+01,0.000000E+00 +2195067,fr,1,3.750000E+00,7.001660E+00,4.434953E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.801726E+01,0.000000E+00 +2195073,fr,1,3.750000E+00,7.001660E+00,4.434953E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.996683E+01,0.000000E+00 +2195076,fr,2,3.850000E+00,7.001660E+00,4.434953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +2195078,fr,1,3.850000E+00,7.001660E+00,4.434953E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +2195086,fr,1,3.850000E+00,7.001660E+00,4.434953E+01,1.500000E+01,Active Shallow Crust,1.288964E+02,8.999234E+01,0.000000E+00 +2195092,fr,1,3.950000E+00,7.001660E+00,4.434953E+01,1.500000E+01,Active Shallow Crust,2.400189E+02,5.800509E+01,0.000000E+00 +2195134,fr,1,4.250000E+00,7.001660E+00,4.434953E+01,1.500000E+01,Active Shallow Crust,1.288952E+02,8.998087E+01,0.000000E+00 +2195136,fr,1,4.350000E+00,7.001660E+00,4.434953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999139E+01,0.000000E+00 +2195145,fr,2,4.350000E+00,7.001660E+00,4.434953E+01,5.000000E+00,Active Shallow Crust,1.288983E+02,8.998241E+01,0.000000E+00 +2195147,fr,1,4.350000E+00,7.001660E+00,4.434953E+01,2.750000E+01,Active Shallow Crust,1.288983E+02,8.998241E+01,0.000000E+00 +2195166,fr,1,4.550000E+00,7.001660E+00,4.434953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,-9.000000E+01 +2195167,fr,1,4.550000E+00,7.001660E+00,4.434953E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999078E+01,-9.000000E+01 +2195220,fr,1,5.050000E+00,7.001660E+00,4.434953E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +2195270,fr,1,5.450000E+00,7.001660E+00,4.434953E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +2195544,fr,1,3.750000E+00,7.443680E+00,4.906033E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +2195545,fr,2,3.750000E+00,7.443680E+00,4.906033E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +2195549,fr,1,3.750000E+00,7.443680E+00,4.906033E+01,2.750000E+01,Active Shallow Crust,2.400084E+02,5.801726E+01,0.000000E+00 +2195567,fr,1,3.850000E+00,7.443680E+00,4.906033E+01,2.750000E+01,Active Shallow Crust,1.288944E+02,8.999532E+01,0.000000E+00 +2195582,fr,1,4.050000E+00,7.443680E+00,4.906033E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +2196015,fr,1,3.650000E+00,1.862040E+00,5.204335E+01,5.000000E+00,Active Shallow Crust,2.400016E+02,5.801307E+01,0.000000E+00 +2196018,fr,1,3.650000E+00,1.862040E+00,5.204335E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,-9.000000E+01 +2196048,fr,1,3.950000E+00,1.862040E+00,5.204335E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +2196960,fr,6,3.550000E+00,2.164520E+00,4.288007E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +2196964,fr,1,3.550000E+00,2.164520E+00,4.288007E+01,1.500000E+01,Active Shallow Crust,2.400116E+02,5.799805E+01,0.000000E+00 +2196973,fr,1,3.650000E+00,2.164520E+00,4.288007E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +2196974,fr,1,3.650000E+00,2.164520E+00,4.288007E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +2196975,fr,1,3.650000E+00,2.164520E+00,4.288007E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801326E+01,0.000000E+00 +2196978,fr,1,3.650000E+00,2.164520E+00,4.288007E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +2196981,fr,1,3.650000E+00,2.164520E+00,4.288007E+01,5.000000E+00,Active Shallow Crust,1.288999E+02,8.996371E+01,0.000000E+00 +2196984,fr,1,3.750000E+00,2.164520E+00,4.288007E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +2196993,fr,2,3.750000E+00,2.164520E+00,4.288007E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.996743E+01,0.000000E+00 +2197008,fr,2,3.950000E+00,2.164520E+00,4.288007E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +2197009,fr,1,3.950000E+00,2.164520E+00,4.288007E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +2197011,fr,1,3.950000E+00,2.164520E+00,4.288007E+01,5.000000E+00,Active Shallow Crust,2.400193E+02,5.800498E+01,0.000000E+00 +2197020,fr,2,4.050000E+00,2.164520E+00,4.288007E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +2197021,fr,1,4.050000E+00,2.164520E+00,4.288007E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +2197044,fr,2,4.250000E+00,2.164520E+00,4.288007E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2197068,fr,1,4.450000E+00,2.164520E+00,4.288007E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +2197141,fr,1,5.050000E+00,2.164520E+00,4.288007E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2197440,fr,2,3.550000E+00,4.118940E+00,4.237491E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999255E+01,0.000000E+00 +2197464,fr,1,3.750000E+00,4.118940E+00,4.237491E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998817E+01,0.000000E+00 +2197488,fr,1,3.950000E+00,4.118940E+00,4.237491E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +2197501,fr,1,4.050000E+00,4.118940E+00,4.237491E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999162E+01,0.000000E+00 +2197920,fr,1,3.550000E+00,1.440560E+00,4.825424E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2197944,fr,1,3.750000E+00,1.440560E+00,4.825424E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +2197945,fr,1,3.750000E+00,1.440560E+00,4.825424E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +2198028,fr,1,4.450000E+00,1.440560E+00,4.825424E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2198400,fr,1,3.550000E+00,-1.241710E+00,4.902016E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +2198412,fr,2,3.650000E+00,-1.241710E+00,4.902016E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2198413,fr,3,3.650000E+00,-1.241710E+00,4.902016E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2198424,fr,1,3.750000E+00,-1.241710E+00,4.902016E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +2198425,fr,1,3.750000E+00,-1.241710E+00,4.902016E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +2198437,fr,2,3.850000E+00,-1.241710E+00,4.902016E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +2198439,fr,1,3.850000E+00,-1.241710E+00,4.902016E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799783E+01,0.000000E+00 +2198448,fr,1,3.950000E+00,-1.241710E+00,4.902016E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +2198454,fr,1,3.950000E+00,-1.241710E+00,4.902016E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999050E+01,-9.000000E+01 +2198460,fr,1,4.050000E+00,-1.241710E+00,4.902016E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +2198484,fr,1,4.250000E+00,-1.241710E+00,4.902016E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +2198491,fr,1,4.250000E+00,-1.241710E+00,4.902016E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999029E+01,-9.000000E+01 +2198497,fr,1,4.350000E+00,-1.241710E+00,4.902016E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2198500,fr,1,4.350000E+00,-1.241710E+00,4.902016E+01,1.500000E+01,Active Shallow Crust,2.400091E+02,5.799596E+01,0.000000E+00 +2198532,fr,1,4.650000E+00,-1.241710E+00,4.902016E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +2198895,fr,1,3.650000E+00,-2.334100E+00,4.974131E+01,5.000000E+00,Active Shallow Crust,2.400017E+02,5.801249E+01,0.000000E+00 +2199004,fr,1,4.550000E+00,-2.334100E+00,4.974131E+01,1.500000E+01,Active Shallow Crust,2.400101E+02,5.799767E+01,0.000000E+00 +2199360,fr,2,3.550000E+00,6.589690E+00,4.717620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999315E+01,0.000000E+00 +2199361,fr,2,3.550000E+00,6.589690E+00,4.717620E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999315E+01,0.000000E+00 +2199362,fr,1,3.550000E+00,6.589690E+00,4.717620E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999315E+01,0.000000E+00 +2199372,fr,4,3.650000E+00,6.589690E+00,4.717620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998779E+01,0.000000E+00 +2199381,fr,1,3.650000E+00,6.589690E+00,4.717620E+01,5.000000E+00,Active Shallow Crust,1.288997E+02,8.996354E+01,0.000000E+00 +2199384,fr,1,3.750000E+00,6.589690E+00,4.717620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +2199385,fr,1,3.750000E+00,6.589690E+00,4.717620E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +2199386,fr,1,3.750000E+00,6.589690E+00,4.717620E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +2199393,fr,1,3.750000E+00,6.589690E+00,4.717620E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996750E+01,0.000000E+00 +2199397,fr,1,3.850000E+00,6.589690E+00,4.717620E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +2199401,fr,1,3.850000E+00,6.589690E+00,4.717620E+01,2.750000E+01,Active Shallow Crust,2.400107E+02,5.799856E+01,0.000000E+00 +2199406,fr,2,3.850000E+00,6.589690E+00,4.717620E+01,1.500000E+01,Active Shallow Crust,1.288966E+02,8.999272E+01,0.000000E+00 +2199408,fr,1,3.950000E+00,6.589690E+00,4.717620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999135E+01,0.000000E+00 +2199421,fr,3,4.050000E+00,6.589690E+00,4.717620E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +2199422,fr,2,4.050000E+00,6.589690E+00,4.717620E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +2199425,fr,1,4.050000E+00,6.589690E+00,4.717620E+01,2.750000E+01,Active Shallow Crust,2.400057E+02,5.800631E+01,0.000000E+00 +2199432,fr,1,4.150000E+00,6.589690E+00,4.717620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2199433,fr,1,4.150000E+00,6.589690E+00,4.717620E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2199480,fr,2,4.550000E+00,6.589690E+00,4.717620E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +2199493,fr,1,4.650000E+00,6.589690E+00,4.717620E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +2199499,fr,1,4.650000E+00,6.589690E+00,4.717620E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,-9.000000E+01 +2199506,fr,1,4.750000E+00,6.589690E+00,4.717620E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +2199841,fr,1,3.550000E+00,1.303100E+00,5.047653E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +2199842,fr,1,3.550000E+00,1.303100E+00,5.047653E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +2199843,fr,1,3.550000E+00,1.303100E+00,5.047653E+01,5.000000E+00,Active Shallow Crust,2.400126E+02,5.799820E+01,0.000000E+00 +2199867,fr,1,3.750000E+00,1.303100E+00,5.047653E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.801758E+01,0.000000E+00 +2199889,fr,1,3.950000E+00,1.303100E+00,5.047653E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2199915,fr,1,4.150000E+00,1.303100E+00,5.047653E+01,5.000000E+00,Active Shallow Crust,2.400094E+02,5.799745E+01,0.000000E+00 +2199924,fr,2,4.250000E+00,1.303100E+00,5.047653E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2199937,fr,1,4.350000E+00,1.303100E+00,5.047653E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +2200035,fr,1,5.150000E+00,1.303100E+00,5.047653E+01,5.000000E+00,Active Shallow Crust,2.400221E+02,5.800040E+01,0.000000E+00 +2200135,fr,1,5.950000E+00,1.303100E+00,5.047653E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +2200321,fr,1,3.550000E+00,4.643910E+00,5.167154E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998750E+01,0.000000E+00 +2200416,fr,1,4.350000E+00,4.643910E+00,5.167154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2200812,fr,1,3.650000E+00,1.385290E+00,5.060971E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2200825,fr,1,3.750000E+00,1.385290E+00,5.060971E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +2200839,fr,1,3.850000E+00,1.385290E+00,5.060971E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799793E+01,0.000000E+00 +2200885,fr,1,4.250000E+00,1.385290E+00,5.060971E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2200980,fr,1,5.050000E+00,1.385290E+00,5.060971E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2200993,fr,1,5.150000E+00,1.385290E+00,5.060971E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2201073,fr,1,5.750000E+00,1.385290E+00,5.060971E+01,5.000000E+00,Active Shallow Crust,1.288671E+02,8.999102E+01,0.000000E+00 +2201161,fr,1,6.550000E+00,1.385290E+00,5.060971E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +2201304,fr,1,3.750000E+00,7.508750E+00,5.093461E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2202731,fr,1,3.550000E+00,4.596280E+00,4.457024E+01,2.750000E+01,Active Shallow Crust,1.288961E+02,8.999641E+01,0.000000E+00 +2202738,fr,1,3.650000E+00,4.596280E+00,4.457024E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998705E+01,-9.000000E+01 +2202744,fr,2,3.750000E+00,4.596280E+00,4.457024E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +2202745,fr,1,3.750000E+00,4.596280E+00,4.457024E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +2202746,fr,1,3.750000E+00,4.596280E+00,4.457024E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +2202756,fr,2,3.850000E+00,4.596280E+00,4.457024E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +2202758,fr,1,3.850000E+00,4.596280E+00,4.457024E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +2202768,fr,2,3.950000E+00,4.596280E+00,4.457024E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +2202769,fr,2,3.950000E+00,4.596280E+00,4.457024E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +2202777,fr,1,3.950000E+00,4.596280E+00,4.457024E+01,5.000000E+00,Active Shallow Crust,1.289009E+02,8.999320E+01,0.000000E+00 +2202793,fr,1,4.150000E+00,4.596280E+00,4.457024E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +2202806,fr,1,4.250000E+00,4.596280E+00,4.457024E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +2202810,fr,1,4.250000E+00,4.596280E+00,4.457024E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,-9.000000E+01 +2202816,fr,1,4.350000E+00,4.596280E+00,4.457024E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +2202819,fr,1,4.350000E+00,4.596280E+00,4.457024E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799578E+01,0.000000E+00 +2202840,fr,1,4.550000E+00,4.596280E+00,4.457024E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +2202853,fr,1,4.650000E+00,4.596280E+00,4.457024E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2202886,fr,1,4.850000E+00,4.596280E+00,4.457024E+01,1.500000E+01,Active Shallow Crust,1.288933E+02,8.998891E+01,0.000000E+00 +2202913,fr,1,5.150000E+00,4.596280E+00,4.457024E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2202915,fr,1,5.150000E+00,4.596280E+00,4.457024E+01,5.000000E+00,Active Shallow Crust,2.400185E+02,5.799980E+01,0.000000E+00 +2203248,fr,1,3.950000E+00,3.606310E+00,5.105835E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2203483,fr,1,5.850000E+00,3.606310E+00,5.105835E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +2203680,fr,2,3.550000E+00,-5.052510E+00,4.814243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999327E+01,0.000000E+00 +2203689,fr,1,3.550000E+00,-5.052510E+00,4.814243E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999327E+01,0.000000E+00 +2203692,fr,1,3.650000E+00,-5.052510E+00,4.814243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998801E+01,0.000000E+00 +2203698,fr,1,3.650000E+00,-5.052510E+00,4.814243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998787E+01,-9.000000E+01 +2203705,fr,1,3.750000E+00,-5.052510E+00,4.814243E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +2203717,fr,1,3.850000E+00,-5.052510E+00,4.814243E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +2203728,fr,1,3.950000E+00,-5.052510E+00,4.814243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999151E+01,0.000000E+00 +2203749,fr,1,4.050000E+00,-5.052510E+00,4.814243E+01,5.000000E+00,Active Shallow Crust,1.288898E+02,8.999432E+01,0.000000E+00 +2203848,fr,1,4.950000E+00,-5.052510E+00,4.814243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +2204160,fr,3,3.550000E+00,-1.992800E+00,4.721315E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +2204171,fr,1,3.550000E+00,-1.992800E+00,4.721315E+01,2.750000E+01,Active Shallow Crust,1.288965E+02,8.999315E+01,0.000000E+00 +2204172,fr,1,3.650000E+00,-1.992800E+00,4.721315E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +2204173,fr,1,3.650000E+00,-1.992800E+00,4.721315E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +2204175,fr,1,3.650000E+00,-1.992800E+00,4.721315E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801281E+01,0.000000E+00 +2204178,fr,1,3.650000E+00,-1.992800E+00,4.721315E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999074E+01,-9.000000E+01 +2204179,fr,1,3.650000E+00,-1.992800E+00,4.721315E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999074E+01,-9.000000E+01 +2204184,fr,4,3.750000E+00,-1.992800E+00,4.721315E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +2204185,fr,1,3.750000E+00,-1.992800E+00,4.721315E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +2204187,fr,1,3.750000E+00,-1.992800E+00,4.721315E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801757E+01,0.000000E+00 +2204196,fr,1,3.850000E+00,-1.992800E+00,4.721315E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +2204197,fr,1,3.850000E+00,-1.992800E+00,4.721315E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +2204202,fr,1,3.850000E+00,-1.992800E+00,4.721315E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,-9.000000E+01 +2204208,fr,2,3.950000E+00,-1.992800E+00,4.721315E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +2204209,fr,1,3.950000E+00,-1.992800E+00,4.721315E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +2204220,fr,2,4.050000E+00,-1.992800E+00,4.721315E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +2204229,fr,1,4.050000E+00,-1.992800E+00,4.721315E+01,5.000000E+00,Active Shallow Crust,1.288904E+02,8.999374E+01,0.000000E+00 +2204232,fr,1,4.150000E+00,-1.992800E+00,4.721315E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +2204280,fr,1,4.550000E+00,-1.992800E+00,4.721315E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +2204281,fr,1,4.550000E+00,-1.992800E+00,4.721315E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +2205134,fr,1,3.650000E+00,5.527100E+00,5.203251E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +2205204,fr,1,4.250000E+00,5.527100E+00,5.203251E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +2205276,fr,1,4.850000E+00,5.527100E+00,5.203251E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +2206082,fr,1,3.550000E+00,-2.370230E+00,4.319446E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +2206092,fr,2,3.650000E+00,-2.370230E+00,4.319446E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2206093,fr,1,3.650000E+00,-2.370230E+00,4.319446E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2206094,fr,1,3.650000E+00,-2.370230E+00,4.319446E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2206095,fr,1,3.650000E+00,-2.370230E+00,4.319446E+01,5.000000E+00,Active Shallow Crust,2.400003E+02,5.801282E+01,0.000000E+00 +2206101,fr,1,3.650000E+00,-2.370230E+00,4.319446E+01,5.000000E+00,Active Shallow Crust,1.289011E+02,8.996346E+01,0.000000E+00 +2206104,fr,1,3.750000E+00,-2.370230E+00,4.319446E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999124E+01,0.000000E+00 +2206105,fr,1,3.750000E+00,-2.370230E+00,4.319446E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999124E+01,0.000000E+00 +2206116,fr,1,3.850000E+00,-2.370230E+00,4.319446E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +2206119,fr,1,3.850000E+00,-2.370230E+00,4.319446E+01,5.000000E+00,Active Shallow Crust,2.400103E+02,5.799802E+01,0.000000E+00 +2206134,fr,1,3.950000E+00,-2.370230E+00,4.319446E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,-9.000000E+01 +2206140,fr,1,4.050000E+00,-2.370230E+00,4.319446E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +2206147,fr,2,4.050000E+00,-2.370230E+00,4.319446E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998955E+01,-9.000000E+01 +2206155,fr,1,4.150000E+00,-2.370230E+00,4.319446E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799697E+01,0.000000E+00 +2206164,fr,2,4.250000E+00,-2.370230E+00,4.319446E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +2206178,fr,1,4.350000E+00,-2.370230E+00,4.319446E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2206188,fr,2,4.450000E+00,-2.370230E+00,4.319446E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +2206200,fr,1,4.550000E+00,-2.370230E+00,4.319446E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +2206210,fr,1,4.550000E+00,-2.370230E+00,4.319446E+01,1.500000E+01,Active Shallow Crust,1.288946E+02,8.998573E+01,0.000000E+00 +2206572,fr,2,3.650000E+00,-2.568650E+00,4.483231E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +2207040,fr,3,3.550000E+00,-1.893920E+00,4.937367E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +2207054,fr,1,3.650000E+00,-1.893920E+00,4.937367E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +2207058,fr,1,3.650000E+00,-1.893920E+00,4.937367E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,-9.000000E+01 +2207064,fr,2,3.750000E+00,-1.893920E+00,4.937367E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +2207067,fr,1,3.750000E+00,-1.893920E+00,4.937367E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.801759E+01,0.000000E+00 +2207068,fr,1,3.750000E+00,-1.893920E+00,4.937367E+01,1.500000E+01,Active Shallow Crust,2.400088E+02,5.801759E+01,0.000000E+00 +2207073,fr,1,3.750000E+00,-1.893920E+00,4.937367E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.996743E+01,0.000000E+00 +2207079,fr,1,3.850000E+00,-1.893920E+00,4.937367E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799785E+01,0.000000E+00 +2207148,fr,1,4.450000E+00,-1.893920E+00,4.937367E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2207162,fr,1,4.550000E+00,-1.893920E+00,4.937367E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2207172,fr,1,4.650000E+00,-1.893920E+00,4.937367E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +2207532,fr,1,3.650000E+00,1.339470E+00,4.558458E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +2207539,fr,1,3.650000E+00,1.339470E+00,4.558458E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,-9.000000E+01 +2207559,fr,1,3.850000E+00,1.339470E+00,4.558458E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.799774E+01,0.000000E+00 +2207571,fr,2,3.950000E+00,1.339470E+00,4.558458E+01,5.000000E+00,Active Shallow Crust,2.400196E+02,5.800486E+01,0.000000E+00 +2207574,fr,1,3.950000E+00,1.339470E+00,4.558458E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,-9.000000E+01 +2207601,fr,1,4.150000E+00,1.339470E+00,4.558458E+01,5.000000E+00,Active Shallow Crust,1.288978E+02,8.999381E+01,0.000000E+00 +2207617,fr,1,4.350000E+00,1.339470E+00,4.558458E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2207628,fr,1,4.450000E+00,1.339470E+00,4.558458E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2208000,fr,7,3.550000E+00,7.402170E+00,4.778565E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999323E+01,0.000000E+00 +2208001,fr,1,3.550000E+00,7.402170E+00,4.778565E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999323E+01,0.000000E+00 +2208004,fr,1,3.550000E+00,7.402170E+00,4.778565E+01,1.500000E+01,Active Shallow Crust,2.400134E+02,5.799702E+01,0.000000E+00 +2208006,fr,1,3.550000E+00,7.402170E+00,4.778565E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999315E+01,-9.000000E+01 +2208009,fr,1,3.550000E+00,7.402170E+00,4.778565E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999323E+01,0.000000E+00 +2208012,fr,4,3.650000E+00,7.402170E+00,4.778565E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998792E+01,0.000000E+00 +2208013,fr,2,3.650000E+00,7.402170E+00,4.778565E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998792E+01,0.000000E+00 +2208015,fr,1,3.650000E+00,7.402170E+00,4.778565E+01,5.000000E+00,Active Shallow Crust,2.400018E+02,5.801285E+01,0.000000E+00 +2208019,fr,1,3.650000E+00,7.402170E+00,4.778565E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998779E+01,-9.000000E+01 +2208024,fr,5,3.750000E+00,7.402170E+00,4.778565E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +2208027,fr,1,3.750000E+00,7.402170E+00,4.778565E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.801807E+01,0.000000E+00 +2208035,fr,1,3.750000E+00,7.402170E+00,4.778565E+01,2.750000E+01,Active Shallow Crust,1.288967E+02,8.996751E+01,0.000000E+00 +2208036,fr,2,3.850000E+00,7.402170E+00,4.778565E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +2208037,fr,1,3.850000E+00,7.402170E+00,4.778565E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +2208038,fr,1,3.850000E+00,7.402170E+00,4.778565E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +2208039,fr,2,3.850000E+00,7.402170E+00,4.778565E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799856E+01,0.000000E+00 +2208045,fr,1,3.850000E+00,7.402170E+00,4.778565E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999520E+01,0.000000E+00 +2208048,fr,3,3.950000E+00,7.402170E+00,4.778565E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999145E+01,0.000000E+00 +2208060,fr,1,4.050000E+00,7.402170E+00,4.778565E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998857E+01,0.000000E+00 +2208063,fr,2,4.050000E+00,7.402170E+00,4.778565E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.800626E+01,0.000000E+00 +2208064,fr,1,4.050000E+00,7.402170E+00,4.778565E+01,1.500000E+01,Active Shallow Crust,2.400054E+02,5.800624E+01,0.000000E+00 +2208072,fr,4,4.150000E+00,7.402170E+00,4.778565E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2208073,fr,3,4.150000E+00,7.402170E+00,4.778565E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2208075,fr,1,4.150000E+00,7.402170E+00,4.778565E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.799713E+01,0.000000E+00 +2208084,fr,1,4.250000E+00,7.402170E+00,4.778565E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999092E+01,0.000000E+00 +2208096,fr,1,4.350000E+00,7.402170E+00,4.778565E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +2208105,fr,1,4.350000E+00,7.402170E+00,4.778565E+01,5.000000E+00,Active Shallow Crust,1.288973E+02,8.998258E+01,0.000000E+00 +2208172,fr,1,4.950000E+00,7.402170E+00,4.778565E+01,1.500000E+01,Active Shallow Crust,2.400125E+02,5.800443E+01,0.000000E+00 +2208204,fr,1,5.250000E+00,7.402170E+00,4.778565E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +2208312,fr,1,6.150000E+00,7.402173E+00,4.778565E+01,6.011322E+00,Active Shallow Crust,3.599998E+02,8.999014E+01,0.000000E+00 +2208480,fr,2,3.550000E+00,5.724240E+00,4.352813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999269E+01,0.000000E+00 +2208486,fr,1,3.550000E+00,5.724240E+00,4.352813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999261E+01,-9.000000E+01 +2208495,fr,2,3.650000E+00,5.724240E+00,4.352813E+01,5.000000E+00,Active Shallow Crust,2.400003E+02,5.801359E+01,0.000000E+00 +2208501,fr,1,3.650000E+00,5.724240E+00,4.352813E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.996347E+01,0.000000E+00 +2208505,fr,1,3.750000E+00,5.724240E+00,4.352813E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998839E+01,0.000000E+00 +2208511,fr,1,3.750000E+00,5.724240E+00,4.352813E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998825E+01,-9.000000E+01 +2208513,fr,1,3.750000E+00,5.724240E+00,4.352813E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996744E+01,0.000000E+00 +2208520,fr,1,3.850000E+00,5.724240E+00,4.352813E+01,1.500000E+01,Active Shallow Crust,2.400108E+02,5.799767E+01,0.000000E+00 +2208534,fr,1,3.950000E+00,5.724240E+00,4.352813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999067E+01,-9.000000E+01 +2208542,fr,1,4.050000E+00,5.724240E+00,4.352813E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999178E+01,0.000000E+00 +2208554,fr,1,4.150000E+00,5.724240E+00,4.352813E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +2208588,fr,1,4.450000E+00,5.724240E+00,4.352813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +2208606,fr,1,4.550000E+00,5.724240E+00,4.352813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,-9.000000E+01 +2208660,fr,1,5.050000E+00,5.724240E+00,4.352813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +2208663,fr,1,5.050000E+00,5.724240E+00,4.352813E+01,5.000000E+00,Active Shallow Crust,2.400204E+02,5.799738E+01,0.000000E+00 +2209041,fr,1,4.150000E+00,6.054720E+00,4.977000E+01,5.000000E+00,Active Shallow Crust,1.288977E+02,8.999347E+01,0.000000E+00 +2209056,fr,1,4.350000E+00,6.054720E+00,4.977000E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +2209440,fr,1,3.550000E+00,3.381350E+00,4.478807E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +2209441,fr,1,3.550000E+00,3.381350E+00,4.478807E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +2209452,fr,3,3.650000E+00,3.381350E+00,4.478807E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +2209465,fr,1,3.750000E+00,3.381350E+00,4.478807E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998863E+01,0.000000E+00 +2209476,fr,2,3.850000E+00,3.381350E+00,4.478807E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +2209500,fr,1,4.050000E+00,3.381350E+00,4.478807E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2209512,fr,1,4.150000E+00,3.381350E+00,4.478807E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +2209572,fr,1,4.650000E+00,3.381350E+00,4.478807E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2209705,fr,1,5.750000E+00,3.381350E+00,4.478807E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2209920,fr,6,3.550000E+00,7.589970E+00,4.806257E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999326E+01,0.000000E+00 +2209921,fr,1,3.550000E+00,7.589970E+00,4.806257E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999326E+01,0.000000E+00 +2209922,fr,1,3.550000E+00,7.589970E+00,4.806257E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999326E+01,0.000000E+00 +2209923,fr,1,3.550000E+00,7.589970E+00,4.806257E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799854E+01,0.000000E+00 +2209930,fr,1,3.550000E+00,7.589970E+00,4.806257E+01,1.500000E+01,Active Shallow Crust,1.288973E+02,8.999326E+01,0.000000E+00 +2209932,fr,3,3.650000E+00,7.589970E+00,4.806257E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998798E+01,0.000000E+00 +2209933,fr,3,3.650000E+00,7.589970E+00,4.806257E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998798E+01,0.000000E+00 +2209940,fr,1,3.650000E+00,7.589970E+00,4.806257E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998785E+01,-9.000000E+01 +2209944,fr,3,3.750000E+00,7.589970E+00,4.806257E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +2209947,fr,1,3.750000E+00,7.589970E+00,4.806257E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.801725E+01,0.000000E+00 +2209955,fr,2,3.750000E+00,7.589970E+00,4.806257E+01,2.750000E+01,Active Shallow Crust,1.288966E+02,8.996697E+01,0.000000E+00 +2209956,fr,2,3.850000E+00,7.589970E+00,4.806257E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +2209957,fr,1,3.850000E+00,7.589970E+00,4.806257E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +2209959,fr,2,3.850000E+00,7.589970E+00,4.806257E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799752E+01,0.000000E+00 +2209960,fr,1,3.850000E+00,7.589970E+00,4.806257E+01,1.500000E+01,Active Shallow Crust,2.400112E+02,5.799752E+01,0.000000E+00 +2209965,fr,1,3.850000E+00,7.589970E+00,4.806257E+01,5.000000E+00,Active Shallow Crust,1.288953E+02,8.999523E+01,0.000000E+00 +2209968,fr,1,3.950000E+00,7.589970E+00,4.806257E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999149E+01,0.000000E+00 +2209971,fr,1,3.950000E+00,7.589970E+00,4.806257E+01,5.000000E+00,Active Shallow Crust,2.400201E+02,5.800512E+01,0.000000E+00 +2209980,fr,2,4.050000E+00,7.589970E+00,4.806257E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998863E+01,0.000000E+00 +2209992,fr,1,4.150000E+00,7.589970E+00,4.806257E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +2209993,fr,1,4.150000E+00,7.589970E+00,4.806257E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +2209995,fr,1,4.150000E+00,7.589970E+00,4.806257E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.799784E+01,0.000000E+00 +2209998,fr,1,4.150000E+00,7.589970E+00,4.806257E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,-9.000000E+01 +2210002,fr,1,4.150000E+00,7.589970E+00,4.806257E+01,1.500000E+01,Active Shallow Crust,1.288978E+02,8.999325E+01,0.000000E+00 +2210013,fr,1,4.250000E+00,7.589970E+00,4.806257E+01,5.000000E+00,Active Shallow Crust,1.288943E+02,8.998100E+01,0.000000E+00 +2210016,fr,1,4.350000E+00,7.589970E+00,4.806257E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +2210040,fr,1,4.550000E+00,7.589970E+00,4.806257E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +2210049,fr,1,4.550000E+00,7.589970E+00,4.806257E+01,5.000000E+00,Active Shallow Crust,1.288936E+02,8.998573E+01,0.000000E+00 +2210103,fr,1,5.050000E+00,7.589970E+00,4.806257E+01,5.000000E+00,Active Shallow Crust,2.400232E+02,5.799763E+01,0.000000E+00 +2210136,fr,1,5.350000E+00,7.589970E+00,4.806257E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2210160,fr,1,5.550000E+00,7.589970E+00,4.806257E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2210400,fr,9,3.550000E+00,8.591220E+00,4.740181E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998635E+01,0.000000E+00 +2210401,fr,1,3.550000E+00,8.591220E+00,4.740181E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998635E+01,0.000000E+00 +2210402,fr,1,3.550000E+00,8.591220E+00,4.740181E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998635E+01,0.000000E+00 +2210403,fr,2,3.550000E+00,8.591220E+00,4.740181E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799882E+01,0.000000E+00 +2210404,fr,1,3.550000E+00,8.591220E+00,4.740181E+01,1.500000E+01,Active Shallow Crust,2.400117E+02,5.799882E+01,0.000000E+00 +2210409,fr,1,3.550000E+00,8.591220E+00,4.740181E+01,5.000000E+00,Active Shallow Crust,1.288977E+02,8.999317E+01,0.000000E+00 +2210412,fr,7,3.650000E+00,8.591220E+00,4.740181E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998783E+01,0.000000E+00 +2210413,fr,5,3.650000E+00,8.591220E+00,4.740181E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998783E+01,0.000000E+00 +2210416,fr,2,3.650000E+00,8.591220E+00,4.740181E+01,1.500000E+01,Active Shallow Crust,2.400035E+02,5.801189E+01,0.000000E+00 +2210421,fr,2,3.650000E+00,8.591220E+00,4.740181E+01,5.000000E+00,Active Shallow Crust,1.288986E+02,8.996354E+01,0.000000E+00 +2210424,fr,5,3.750000E+00,8.591220E+00,4.740181E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +2210426,fr,1,3.750000E+00,8.591220E+00,4.740181E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +2210427,fr,2,3.750000E+00,8.591220E+00,4.740181E+01,5.000000E+00,Active Shallow Crust,2.400096E+02,5.801550E+01,0.000000E+00 +2210430,fr,1,3.750000E+00,8.591220E+00,4.740181E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998903E+01,-9.000000E+01 +2210436,fr,5,3.850000E+00,8.591220E+00,4.740181E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +2210437,fr,3,3.850000E+00,8.591220E+00,4.740181E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +2210438,fr,1,3.850000E+00,8.591220E+00,4.740181E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +2210441,fr,1,3.850000E+00,8.591220E+00,4.740181E+01,2.750000E+01,Active Shallow Crust,2.400126E+02,5.799727E+01,0.000000E+00 +2210443,fr,1,3.850000E+00,8.591220E+00,4.740181E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,-9.000000E+01 +2210447,fr,1,3.850000E+00,8.591220E+00,4.740181E+01,2.750000E+01,Active Shallow Crust,1.288944E+02,8.999517E+01,0.000000E+00 +2210448,fr,4,3.950000E+00,8.591220E+00,4.740181E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999139E+01,0.000000E+00 +2210456,fr,1,3.950000E+00,8.591220E+00,4.740181E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999129E+01,-9.000000E+01 +2210457,fr,1,3.950000E+00,8.591220E+00,4.740181E+01,5.000000E+00,Active Shallow Crust,1.288994E+02,8.999570E+01,0.000000E+00 +2210460,fr,5,4.050000E+00,8.591220E+00,4.740181E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999232E+01,0.000000E+00 +2210461,fr,1,4.050000E+00,8.591220E+00,4.740181E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999232E+01,0.000000E+00 +2210462,fr,2,4.050000E+00,8.591220E+00,4.740181E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999232E+01,0.000000E+00 +2210465,fr,1,4.050000E+00,8.591220E+00,4.740181E+01,2.750000E+01,Active Shallow Crust,2.400057E+02,5.800604E+01,0.000000E+00 +2210466,fr,1,4.050000E+00,8.591220E+00,4.740181E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999223E+01,-9.000000E+01 +2210472,fr,3,4.150000E+00,8.591220E+00,4.740181E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999316E+01,0.000000E+00 +2210473,fr,1,4.150000E+00,8.591220E+00,4.740181E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999316E+01,0.000000E+00 +2210482,fr,1,4.150000E+00,8.591220E+00,4.740181E+01,1.500000E+01,Active Shallow Crust,1.288990E+02,8.999316E+01,0.000000E+00 +2210484,fr,5,4.250000E+00,8.591220E+00,4.740181E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998780E+01,0.000000E+00 +2210485,fr,1,4.250000E+00,8.591220E+00,4.740181E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998780E+01,0.000000E+00 +2210496,fr,2,4.350000E+00,8.591220E+00,4.740181E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998913E+01,0.000000E+00 +2210497,fr,2,4.350000E+00,8.591220E+00,4.740181E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998913E+01,0.000000E+00 +2210502,fr,1,4.350000E+00,8.591220E+00,4.740181E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998901E+01,-9.000000E+01 +2210505,fr,1,4.350000E+00,8.591220E+00,4.740181E+01,5.000000E+00,Active Shallow Crust,1.288977E+02,8.998305E+01,0.000000E+00 +2210508,fr,1,4.450000E+00,8.591220E+00,4.740181E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +2210509,fr,1,4.450000E+00,8.591220E+00,4.740181E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +2210521,fr,1,4.550000E+00,8.591220E+00,4.740181E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999136E+01,0.000000E+00 +2210544,fr,1,4.750000E+00,8.591220E+00,4.740181E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +2210547,fr,1,4.750000E+00,8.591220E+00,4.740181E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.800414E+01,0.000000E+00 +2210556,fr,1,4.850000E+00,8.591220E+00,4.740181E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +2210570,fr,1,4.950000E+00,8.591220E+00,4.740181E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +2210598,fr,1,5.150000E+00,8.591220E+00,4.740181E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998905E+01,-9.000000E+01 +2210680,fr,1,5.850000E+00,8.591220E+00,4.740181E+01,1.500000E+01,Active Shallow Crust,2.400484E+02,5.799990E+01,0.000000E+00 +2210685,fr,1,5.850000E+00,8.591220E+00,4.740181E+01,5.000000E+00,Active Shallow Crust,1.288664E+02,8.999152E+01,0.000000E+00 +2210880,fr,3,3.550000E+00,7.858110E+00,4.444619E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999280E+01,0.000000E+00 +2210881,fr,1,3.550000E+00,7.858110E+00,4.444619E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999280E+01,0.000000E+00 +2210882,fr,1,3.550000E+00,7.858110E+00,4.444619E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999280E+01,0.000000E+00 +2210892,fr,1,3.650000E+00,7.858110E+00,4.444619E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998717E+01,0.000000E+00 +2210894,fr,1,3.650000E+00,7.858110E+00,4.444619E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998717E+01,0.000000E+00 +2210922,fr,2,3.850000E+00,7.858110E+00,4.444619E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +2210931,fr,1,3.950000E+00,7.858110E+00,4.444619E+01,5.000000E+00,Active Shallow Crust,2.400200E+02,5.800513E+01,0.000000E+00 +2210937,fr,1,3.950000E+00,7.858110E+00,4.444619E+01,5.000000E+00,Active Shallow Crust,1.289012E+02,8.999319E+01,0.000000E+00 +2210940,fr,1,4.050000E+00,7.858110E+00,4.444619E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999191E+01,0.000000E+00 +2210961,fr,1,4.150000E+00,7.858110E+00,4.444619E+01,5.000000E+00,Active Shallow Crust,1.288981E+02,8.999278E+01,0.000000E+00 +2210973,fr,2,4.250000E+00,7.858110E+00,4.444619E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.998087E+01,0.000000E+00 +2211000,fr,2,4.550000E+00,7.858110E+00,4.444619E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999089E+01,0.000000E+00 +2211003,fr,1,4.550000E+00,7.858110E+00,4.444619E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799763E+01,0.000000E+00 +2211012,fr,1,4.650000E+00,7.858110E+00,4.444619E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2211013,fr,2,4.650000E+00,7.858110E+00,4.444619E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2211474,fr,1,4.450000E+00,4.791870E+00,4.910216E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,-9.000000E+01 +2211853,fr,1,3.650000E+00,1.824470E+00,5.062582E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2211864,fr,1,3.750000E+00,1.824470E+00,5.062582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +2211874,fr,1,3.750000E+00,1.824470E+00,5.062582E+01,1.500000E+01,Active Shallow Crust,1.288962E+02,8.996734E+01,0.000000E+00 +2211876,fr,1,3.850000E+00,1.824470E+00,5.062582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2211889,fr,1,3.950000E+00,1.824470E+00,5.062582E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2211891,fr,1,3.950000E+00,1.824470E+00,5.062582E+01,5.000000E+00,Active Shallow Crust,2.400206E+02,5.800510E+01,0.000000E+00 +2211960,fr,1,4.550000E+00,1.824470E+00,5.062582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2212332,fr,1,3.650000E+00,6.690920E+00,4.576140E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998746E+01,0.000000E+00 +2212344,fr,1,3.750000E+00,6.690920E+00,4.576140E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +2212345,fr,1,3.750000E+00,6.690920E+00,4.576140E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +2212368,fr,1,3.950000E+00,6.690920E+00,4.576140E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999112E+01,0.000000E+00 +2212386,fr,1,4.050000E+00,6.690920E+00,4.576140E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999200E+01,-9.000000E+01 +2212432,fr,1,4.450000E+00,6.690920E+00,4.576140E+01,1.500000E+01,Active Shallow Crust,2.400053E+02,5.799448E+01,0.000000E+00 +2212440,fr,2,4.550000E+00,6.690920E+00,4.576140E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +2212806,fr,1,3.550000E+00,3.170480E+00,4.129438E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998850E+01,-9.000000E+01 +2212807,fr,1,3.550000E+00,3.170480E+00,4.129438E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998850E+01,-9.000000E+01 +2212812,fr,1,3.650000E+00,3.170480E+00,4.129438E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +2212824,fr,1,3.750000E+00,3.170480E+00,4.129438E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +2212839,fr,1,3.850000E+00,3.170480E+00,4.129438E+01,5.000000E+00,Active Shallow Crust,2.400098E+02,5.799790E+01,0.000000E+00 +2212879,fr,1,4.150000E+00,3.170480E+00,4.129438E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,-9.000000E+01 +2212896,fr,1,4.350000E+00,3.170480E+00,4.129438E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +2212908,fr,1,4.450000E+00,3.170480E+00,4.129438E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +2212934,fr,1,4.650000E+00,3.170480E+00,4.129438E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +2212953,fr,1,4.750000E+00,3.170480E+00,4.129438E+01,5.000000E+00,Active Shallow Crust,1.288902E+02,8.998813E+01,0.000000E+00 +2213292,fr,1,3.650000E+00,-2.245100E+00,4.181914E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +2213294,fr,1,3.650000E+00,-2.245100E+00,4.181914E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +2213298,fr,2,3.650000E+00,-2.245100E+00,4.181914E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,-9.000000E+01 +2213304,fr,1,3.750000E+00,-2.245100E+00,4.181914E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +2213316,fr,1,3.850000E+00,-2.245100E+00,4.181914E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +2213352,fr,1,4.150000E+00,-2.245100E+00,4.181914E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +2213760,fr,1,3.550000E+00,9.496200E-01,4.339390E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +2213766,fr,1,3.550000E+00,9.496200E-01,4.339390E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,-9.000000E+01 +2213808,fr,2,3.950000E+00,9.496200E-01,4.339390E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2213867,fr,1,4.350000E+00,9.496200E-01,4.339390E+01,2.750000E+01,Active Shallow Crust,1.288984E+02,8.998279E+01,0.000000E+00 +2214276,fr,1,3.850000E+00,-5.173170E+00,4.744227E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +2214277,fr,1,3.850000E+00,-5.173170E+00,4.744227E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +2214361,fr,1,4.550000E+00,-5.173170E+00,4.744227E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +2214720,fr,1,3.550000E+00,-1.124010E+00,5.074885E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +2214744,fr,1,3.750000E+00,-1.124010E+00,5.074885E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +2214745,fr,1,3.750000E+00,-1.124010E+00,5.074885E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +2214804,fr,1,4.250000E+00,-1.124010E+00,5.074885E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2215212,fr,1,3.650000E+00,3.911110E+00,5.308858E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +2215692,fr,1,3.650000E+00,6.055000E-01,5.109760E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +2215694,fr,1,3.650000E+00,6.055000E-01,5.109760E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +2215695,fr,1,3.650000E+00,6.055000E-01,5.109760E+01,5.000000E+00,Active Shallow Crust,2.400017E+02,5.801295E+01,0.000000E+00 +2215702,fr,1,3.650000E+00,6.055000E-01,5.109760E+01,1.500000E+01,Active Shallow Crust,1.289001E+02,8.996349E+01,0.000000E+00 +2215704,fr,1,3.750000E+00,6.055000E-01,5.109760E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2215707,fr,1,3.750000E+00,6.055000E-01,5.109760E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.801762E+01,0.000000E+00 +2215765,fr,1,4.250000E+00,6.055000E-01,5.109760E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2215790,fr,1,4.450000E+00,6.055000E-01,5.109760E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +2215812,fr,1,4.650000E+00,6.055000E-01,5.109760E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2216640,fr,1,3.550000E+00,3.062680E+00,4.421350E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +2216655,fr,1,3.650000E+00,3.062680E+00,4.421350E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801344E+01,0.000000E+00 +2216673,fr,1,3.750000E+00,3.062680E+00,4.421350E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.996745E+01,0.000000E+00 +2216691,fr,2,3.950000E+00,3.062680E+00,4.421350E+01,5.000000E+00,Active Shallow Crust,2.400194E+02,5.800467E+01,0.000000E+00 +2216709,fr,1,4.050000E+00,3.062680E+00,4.421350E+01,5.000000E+00,Active Shallow Crust,1.288907E+02,8.999390E+01,0.000000E+00 +2216725,fr,1,4.250000E+00,3.062680E+00,4.421350E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +2216730,fr,1,4.250000E+00,3.062680E+00,4.421350E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,-9.000000E+01 +2216736,fr,1,4.350000E+00,3.062680E+00,4.421350E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2216760,fr,1,4.550000E+00,3.062680E+00,4.421350E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +2217201,fr,1,4.150000E+00,4.882110E+00,4.861133E+01,5.000000E+00,Active Shallow Crust,1.288974E+02,8.999332E+01,0.000000E+00 +2217241,fr,1,4.550000E+00,4.882110E+00,4.861133E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +2217276,fr,1,4.850000E+00,4.882110E+00,4.861133E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +2217613,fr,2,3.650000E+00,5.461490E+00,4.107047E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999323E+01,0.000000E+00 +2217615,fr,1,3.650000E+00,5.461490E+00,4.107047E+01,5.000000E+00,Active Shallow Crust,2.400002E+02,5.801302E+01,0.000000E+00 +2217618,fr,1,3.650000E+00,5.461490E+00,4.107047E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999315E+01,-9.000000E+01 +2217654,fr,1,3.950000E+00,5.461490E+00,4.107047E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,-9.000000E+01 +2217669,fr,1,4.050000E+00,5.461490E+00,4.107047E+01,5.000000E+00,Active Shallow Crust,1.288905E+02,8.999359E+01,0.000000E+00 +2217733,fr,1,4.650000E+00,5.461490E+00,4.107047E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +2218119,fr,1,3.850000E+00,5.425280E+00,4.201392E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799801E+01,0.000000E+00 +2218128,fr,1,3.950000E+00,5.425280E+00,4.201392E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +2218152,fr,1,4.150000E+00,5.425280E+00,4.201392E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998873E+01,0.000000E+00 +2218560,fr,1,3.550000E+00,-3.523290E+00,4.361307E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998905E+01,0.000000E+00 +2218561,fr,1,3.550000E+00,-3.523290E+00,4.361307E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998905E+01,0.000000E+00 +2218566,fr,1,3.550000E+00,-3.523290E+00,4.361307E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998892E+01,-9.000000E+01 +2218572,fr,2,3.650000E+00,-3.523290E+00,4.361307E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +2218585,fr,1,3.750000E+00,-3.523290E+00,4.361307E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999130E+01,0.000000E+00 +2218593,fr,1,3.750000E+00,-3.523290E+00,4.361307E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.996744E+01,0.000000E+00 +2218596,fr,1,3.850000E+00,-3.523290E+00,4.361307E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +2218608,fr,1,3.950000E+00,-3.523290E+00,4.361307E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +2218662,fr,1,4.350000E+00,-3.523290E+00,4.361307E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,-9.000000E+01 +2219043,fr,1,3.550000E+00,1.495660E+00,5.113192E+01,5.000000E+00,Active Shallow Crust,2.400128E+02,5.799799E+01,0.000000E+00 +2219052,fr,1,3.650000E+00,1.495660E+00,5.113192E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2219058,fr,1,3.650000E+00,1.495660E+00,5.113192E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +2219100,fr,1,4.050000E+00,1.495660E+00,5.113192E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +2219113,fr,1,4.150000E+00,1.495660E+00,5.113192E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2219115,fr,1,4.150000E+00,1.495660E+00,5.113192E+01,5.000000E+00,Active Shallow Crust,2.400092E+02,5.799752E+01,0.000000E+00 +2219136,fr,1,4.350000E+00,1.495660E+00,5.113192E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +2219196,fr,1,4.850000E+00,1.495660E+00,5.113192E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +2219226,fr,1,5.050000E+00,1.495660E+00,5.113192E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +2219233,fr,1,5.150000E+00,1.495660E+00,5.113192E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2219520,fr,1,3.550000E+00,4.370630E+00,4.649590E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999306E+01,0.000000E+00 +2219523,fr,1,3.550000E+00,4.370630E+00,4.649590E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799786E+01,0.000000E+00 +2219538,fr,1,3.650000E+00,4.370630E+00,4.649590E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998748E+01,-9.000000E+01 +2219548,fr,1,3.750000E+00,4.370630E+00,4.649590E+01,1.500000E+01,Active Shallow Crust,2.400071E+02,5.801781E+01,0.000000E+00 +2219556,fr,1,3.850000E+00,4.370630E+00,4.649590E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2219557,fr,1,3.850000E+00,4.370630E+00,4.649590E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2219589,fr,1,4.050000E+00,4.370630E+00,4.649590E+01,5.000000E+00,Active Shallow Crust,1.288908E+02,8.999415E+01,0.000000E+00 +2219592,fr,1,4.150000E+00,4.370630E+00,4.649590E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +2219605,fr,1,4.250000E+00,4.370630E+00,4.649590E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +2219611,fr,1,4.250000E+00,4.370630E+00,4.649590E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,-9.000000E+01 +2219618,fr,1,4.350000E+00,4.370630E+00,4.649590E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +2220000,fr,1,3.550000E+00,2.967090E+00,4.472459E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +2220001,fr,1,3.550000E+00,2.967090E+00,4.472459E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +2220003,fr,1,3.550000E+00,2.967090E+00,4.472459E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799785E+01,0.000000E+00 +2220004,fr,1,3.550000E+00,2.967090E+00,4.472459E+01,1.500000E+01,Active Shallow Crust,2.400123E+02,5.799785E+01,0.000000E+00 +2220013,fr,2,3.650000E+00,2.967090E+00,4.472459E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +2220014,fr,1,3.650000E+00,2.967090E+00,4.472459E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +2220015,fr,3,3.650000E+00,2.967090E+00,4.472459E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801337E+01,0.000000E+00 +2220024,fr,3,3.750000E+00,2.967090E+00,4.472459E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +2220026,fr,1,3.750000E+00,2.967090E+00,4.472459E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +2220079,fr,1,4.150000E+00,2.967090E+00,4.472459E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998911E+01,-9.000000E+01 +2220108,fr,1,4.450000E+00,2.967090E+00,4.472459E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +2220145,fr,1,4.750000E+00,2.967090E+00,4.472459E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2220146,fr,1,4.750000E+00,2.967090E+00,4.472459E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2220147,fr,1,4.750000E+00,2.967090E+00,4.472459E+01,5.000000E+00,Active Shallow Crust,2.400067E+02,5.800444E+01,0.000000E+00 +2220492,fr,3,3.650000E+00,5.276150E+00,4.700802E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998774E+01,0.000000E+00 +2220493,fr,1,3.650000E+00,5.276150E+00,4.700802E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998774E+01,0.000000E+00 +2220495,fr,1,3.650000E+00,5.276150E+00,4.700802E+01,5.000000E+00,Active Shallow Crust,2.399998E+02,5.801329E+01,0.000000E+00 +2220499,fr,1,3.650000E+00,5.276150E+00,4.700802E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998760E+01,-9.000000E+01 +2220516,fr,1,3.850000E+00,5.276150E+00,4.700802E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +2220517,fr,2,3.850000E+00,5.276150E+00,4.700802E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +2220530,fr,1,3.950000E+00,5.276150E+00,4.700802E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +2220552,fr,1,4.150000E+00,5.276150E+00,4.700802E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +2220960,fr,1,3.550000E+00,5.800780E+00,4.720572E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999315E+01,0.000000E+00 +2220961,fr,1,3.550000E+00,5.800780E+00,4.720572E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999315E+01,0.000000E+00 +2220963,fr,2,3.550000E+00,5.800780E+00,4.720572E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799959E+01,0.000000E+00 +2220966,fr,1,3.550000E+00,5.800780E+00,4.720572E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999307E+01,-9.000000E+01 +2220984,fr,2,3.750000E+00,5.800780E+00,4.720572E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +2221014,fr,1,3.950000E+00,5.800780E+00,4.720572E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999126E+01,-9.000000E+01 +2221021,fr,1,4.050000E+00,5.800780E+00,4.720572E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998844E+01,0.000000E+00 +2221038,fr,1,4.150000E+00,5.800780E+00,4.720572E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,-9.000000E+01 +2221039,fr,1,4.150000E+00,5.800780E+00,4.720572E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998958E+01,-9.000000E+01 +2221044,fr,1,4.250000E+00,5.800780E+00,4.720572E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999082E+01,0.000000E+00 +2221046,fr,1,4.250000E+00,5.800780E+00,4.720572E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999082E+01,0.000000E+00 +2221057,fr,1,4.350000E+00,5.800780E+00,4.720572E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998909E+01,0.000000E+00 +2221062,fr,1,4.350000E+00,5.800780E+00,4.720572E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998896E+01,-9.000000E+01 +2221452,fr,1,3.650000E+00,5.901350E+00,4.448022E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998717E+01,0.000000E+00 +2221464,fr,1,3.750000E+00,5.901350E+00,4.448022E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998857E+01,0.000000E+00 +2221501,fr,1,4.050000E+00,5.901350E+00,4.448022E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999191E+01,0.000000E+00 +2221513,fr,1,4.150000E+00,5.901350E+00,4.448022E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +2221524,fr,1,4.250000E+00,5.901350E+00,4.448022E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +2221536,fr,1,4.350000E+00,5.901350E+00,4.448022E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999141E+01,0.000000E+00 +2222450,fr,1,3.950000E+00,7.977210E+00,5.098666E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999199E+01,0.000000E+00 +2222880,fr,1,3.550000E+00,1.195490E+00,4.995058E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +2222884,fr,1,3.550000E+00,1.195490E+00,4.995058E+01,1.500000E+01,Active Shallow Crust,2.400122E+02,5.799838E+01,0.000000E+00 +2222892,fr,1,3.650000E+00,1.195490E+00,4.995058E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2222893,fr,1,3.650000E+00,1.195490E+00,4.995058E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2222905,fr,1,3.750000E+00,1.195490E+00,4.995058E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2222910,fr,1,3.750000E+00,1.195490E+00,4.995058E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,-9.000000E+01 +2222918,fr,1,3.850000E+00,1.195490E+00,4.995058E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +2222928,fr,1,3.950000E+00,1.195490E+00,4.995058E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +2222955,fr,1,4.150000E+00,1.195490E+00,4.995058E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.799746E+01,0.000000E+00 +2222984,fr,1,4.350000E+00,1.195490E+00,4.995058E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,-9.000000E+01 +2223015,fr,1,4.650000E+00,1.195490E+00,4.995058E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799441E+01,0.000000E+00 +2223851,fr,1,3.550000E+00,3.710530E+00,4.994404E+01,2.750000E+01,Active Shallow Crust,1.288953E+02,8.999351E+01,0.000000E+00 +2223852,fr,1,3.650000E+00,3.710530E+00,4.994404E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +2223853,fr,1,3.650000E+00,3.710530E+00,4.994404E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +2223870,fr,1,3.750000E+00,3.710530E+00,4.994404E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,-9.000000E+01 +2223884,fr,1,3.850000E+00,3.710530E+00,4.994404E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999071E+01,-9.000000E+01 +2223885,fr,1,3.850000E+00,3.710530E+00,4.994404E+01,5.000000E+00,Active Shallow Crust,1.288949E+02,8.999426E+01,0.000000E+00 +2223900,fr,1,4.050000E+00,3.710530E+00,4.994404E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +2224321,fr,2,3.550000E+00,2.839620E+00,4.483578E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +2224324,fr,1,3.550000E+00,2.839620E+00,4.483578E+01,1.500000E+01,Active Shallow Crust,2.400120E+02,5.799811E+01,0.000000E+00 +2224329,fr,2,3.550000E+00,2.839620E+00,4.483578E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999464E+01,0.000000E+00 +2224334,fr,1,3.650000E+00,2.839620E+00,4.483578E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +2224335,fr,2,3.650000E+00,2.839620E+00,4.483578E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801225E+01,0.000000E+00 +2224344,fr,1,3.750000E+00,2.839620E+00,4.483578E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998864E+01,0.000000E+00 +2224345,fr,3,3.750000E+00,2.839620E+00,4.483578E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998864E+01,0.000000E+00 +2224362,fr,1,3.850000E+00,2.839620E+00,4.483578E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,-9.000000E+01 +2224365,fr,1,3.850000E+00,2.839620E+00,4.483578E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999368E+01,0.000000E+00 +2224375,fr,1,3.950000E+00,2.839620E+00,4.483578E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,-9.000000E+01 +2224380,fr,1,4.050000E+00,2.839620E+00,4.483578E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2224416,fr,1,4.350000E+00,2.839620E+00,4.483578E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2224488,fr,1,4.950000E+00,2.839620E+00,4.483578E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2224490,fr,1,4.950000E+00,2.839620E+00,4.483578E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2224800,fr,1,3.550000E+00,-7.524500E-01,4.378172E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2224821,fr,1,3.650000E+00,-7.524500E-01,4.378172E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.996354E+01,0.000000E+00 +2224959,fr,1,4.850000E+00,-7.524500E-01,4.378172E+01,5.000000E+00,Active Shallow Crust,2.400161E+02,5.800213E+01,0.000000E+00 +2225331,fr,1,3.950000E+00,2.671850E+00,4.349195E+01,5.000000E+00,Active Shallow Crust,2.400195E+02,5.800509E+01,0.000000E+00 +2225335,fr,1,3.950000E+00,2.671850E+00,4.349195E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999066E+01,-9.000000E+01 +2225337,fr,1,3.950000E+00,2.671850E+00,4.349195E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.999423E+01,0.000000E+00 +2225389,fr,1,4.450000E+00,2.671850E+00,4.349195E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +2225448,fr,1,4.950000E+00,2.671850E+00,4.349195E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +2225520,fr,1,5.550000E+00,2.671850E+00,4.349195E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +2225760,fr,1,3.550000E+00,-1.507690E+00,4.657709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +2225761,fr,1,3.550000E+00,-1.507690E+00,4.657709E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +2225763,fr,1,3.550000E+00,-1.507690E+00,4.657709E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799829E+01,0.000000E+00 +2225769,fr,1,3.550000E+00,-1.507690E+00,4.657709E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999307E+01,0.000000E+00 +2225772,fr,1,3.650000E+00,-1.507690E+00,4.657709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999073E+01,0.000000E+00 +2225781,fr,2,3.650000E+00,-1.507690E+00,4.657709E+01,5.000000E+00,Active Shallow Crust,1.289006E+02,8.996352E+01,0.000000E+00 +2225784,fr,1,3.750000E+00,-1.507690E+00,4.657709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +2225787,fr,1,3.750000E+00,-1.507690E+00,4.657709E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.801751E+01,0.000000E+00 +2225792,fr,1,3.750000E+00,-1.507690E+00,4.657709E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,-9.000000E+01 +2225821,fr,1,4.050000E+00,-1.507690E+00,4.657709E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +2225822,fr,1,4.050000E+00,-1.507690E+00,4.657709E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +2225831,fr,1,4.050000E+00,-1.507690E+00,4.657709E+01,2.750000E+01,Active Shallow Crust,1.288904E+02,8.999367E+01,0.000000E+00 +2225846,fr,1,4.250000E+00,-1.507690E+00,4.657709E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2225893,fr,1,4.650000E+00,-1.507690E+00,4.657709E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2225928,fr,1,4.950000E+00,-1.507690E+00,4.657709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2226240,fr,1,3.550000E+00,-6.275200E-01,4.786062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2226241,fr,1,3.550000E+00,-6.275200E-01,4.786062E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2226242,fr,1,3.550000E+00,-6.275200E-01,4.786062E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2226246,fr,1,3.550000E+00,-6.275200E-01,4.786062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,-9.000000E+01 +2226253,fr,3,3.650000E+00,-6.275200E-01,4.786062E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2226259,fr,1,3.650000E+00,-6.275200E-01,4.786062E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +2226262,fr,1,3.650000E+00,-6.275200E-01,4.786062E+01,1.500000E+01,Active Shallow Crust,1.289003E+02,8.996349E+01,0.000000E+00 +2226273,fr,1,3.750000E+00,-6.275200E-01,4.786062E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.996740E+01,0.000000E+00 +2226276,fr,1,3.850000E+00,-6.275200E-01,4.786062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +2226285,fr,1,3.850000E+00,-6.275200E-01,4.786062E+01,5.000000E+00,Active Shallow Crust,1.288955E+02,8.999371E+01,0.000000E+00 +2226321,fr,1,4.150000E+00,-6.275200E-01,4.786062E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.999386E+01,0.000000E+00 +2226346,fr,1,4.350000E+00,-6.275200E-01,4.786062E+01,1.500000E+01,Active Shallow Crust,1.288976E+02,8.998272E+01,0.000000E+00 +2226348,fr,1,4.450000E+00,-6.275200E-01,4.786062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2226436,fr,1,5.150000E+00,-6.275200E-01,4.786062E+01,1.500000E+01,Active Shallow Crust,2.400205E+02,5.800010E+01,0.000000E+00 +2226745,fr,1,3.750000E+00,5.059300E+00,4.825612E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +2226746,fr,1,3.750000E+00,5.059300E+00,4.825612E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +2226952,fr,1,5.450000E+00,5.059300E+00,4.825612E+01,1.500000E+01,Active Shallow Crust,2.400304E+02,5.799874E+01,0.000000E+00 +2227200,fr,2,3.550000E+00,-2.166700E-01,4.748786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2227203,fr,1,3.550000E+00,-2.166700E-01,4.748786E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799819E+01,0.000000E+00 +2227213,fr,1,3.650000E+00,-2.166700E-01,4.748786E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2227217,fr,1,3.650000E+00,-2.166700E-01,4.748786E+01,2.750000E+01,Active Shallow Crust,2.400012E+02,5.801283E+01,0.000000E+00 +2227224,fr,1,3.750000E+00,-2.166700E-01,4.748786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2227227,fr,2,3.750000E+00,-2.166700E-01,4.748786E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801760E+01,0.000000E+00 +2227236,fr,1,3.850000E+00,-2.166700E-01,4.748786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +2227244,fr,1,3.850000E+00,-2.166700E-01,4.748786E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +2227248,fr,1,3.950000E+00,-2.166700E-01,4.748786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2227251,fr,1,3.950000E+00,-2.166700E-01,4.748786E+01,5.000000E+00,Active Shallow Crust,2.400199E+02,5.800498E+01,0.000000E+00 +2227260,fr,1,4.050000E+00,-2.166700E-01,4.748786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2227261,fr,1,4.050000E+00,-2.166700E-01,4.748786E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2227282,fr,1,4.150000E+00,-2.166700E-01,4.748786E+01,1.500000E+01,Active Shallow Crust,1.288974E+02,8.999371E+01,0.000000E+00 +2227284,fr,1,4.250000E+00,-2.166700E-01,4.748786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2227296,fr,1,4.350000E+00,-2.166700E-01,4.748786E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2227437,fr,1,5.450000E+00,-2.166700E-01,4.748786E+01,5.000000E+00,Active Shallow Crust,1.288781E+02,8.998899E+01,0.000000E+00 +2227533,fr,1,6.250000E+00,-2.166725E-01,4.748786E+01,6.744814E+00,Active Shallow Crust,1.288478E+02,8.999045E+01,0.000000E+00 +2227680,fr,1,3.550000E+00,-1.130280E+00,4.768903E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2227696,fr,1,3.650000E+00,-1.130280E+00,4.768903E+01,1.500000E+01,Active Shallow Crust,2.400014E+02,5.801276E+01,0.000000E+00 +2227698,fr,2,3.650000E+00,-1.130280E+00,4.768903E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998929E+01,-9.000000E+01 +2227704,fr,1,3.750000E+00,-1.130280E+00,4.768903E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +2227705,fr,1,3.750000E+00,-1.130280E+00,4.768903E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +2227707,fr,1,3.750000E+00,-1.130280E+00,4.768903E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.801754E+01,0.000000E+00 +2227710,fr,1,3.750000E+00,-1.130280E+00,4.768903E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,-9.000000E+01 +2227728,fr,2,3.950000E+00,-1.130280E+00,4.768903E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +2227731,fr,1,3.950000E+00,-1.130280E+00,4.768903E+01,5.000000E+00,Active Shallow Crust,2.400199E+02,5.800485E+01,0.000000E+00 +2227740,fr,1,4.050000E+00,-1.130280E+00,4.768903E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +2227741,fr,1,4.050000E+00,-1.130280E+00,4.768903E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +2227749,fr,1,4.050000E+00,-1.130280E+00,4.768903E+01,5.000000E+00,Active Shallow Crust,1.288902E+02,8.999380E+01,0.000000E+00 +2227770,fr,1,4.250000E+00,-1.130280E+00,4.768903E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +2227824,fr,1,4.750000E+00,-1.130280E+00,4.768903E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2227908,fr,1,5.450000E+00,-1.130280E+00,4.768903E+01,5.000000E+00,Active Shallow Crust,3.599999E+02,8.999010E+01,0.000000E+00 +2228160,fr,2,3.550000E+00,7.448970E+00,5.055819E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998719E+01,0.000000E+00 +2228161,fr,1,3.550000E+00,7.448970E+00,5.055819E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998719E+01,0.000000E+00 +2228172,fr,5,3.650000E+00,7.448970E+00,5.055819E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998858E+01,0.000000E+00 +2228184,fr,3,3.750000E+00,7.448970E+00,5.055819E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +2228185,fr,1,3.750000E+00,7.448970E+00,5.055819E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +2228191,fr,1,3.750000E+00,7.448970E+00,5.055819E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998971E+01,-9.000000E+01 +2228205,fr,1,3.850000E+00,7.448970E+00,5.055819E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999319E+01,0.000000E+00 +2228209,fr,1,3.950000E+00,7.448970E+00,5.055819E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999191E+01,0.000000E+00 +2228221,fr,1,4.050000E+00,7.448970E+00,5.055819E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998919E+01,0.000000E+00 +2228226,fr,1,4.050000E+00,7.448970E+00,5.055819E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,-9.000000E+01 +2228233,fr,1,4.150000E+00,7.448970E+00,5.055819E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +2228244,fr,1,4.250000E+00,7.448970E+00,5.055819E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +2228258,fr,1,4.350000E+00,7.448970E+00,5.055819E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +2228268,fr,2,4.450000E+00,7.448970E+00,5.055819E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +2228271,fr,1,4.450000E+00,7.448970E+00,5.055819E+01,5.000000E+00,Active Shallow Crust,2.400061E+02,5.799493E+01,0.000000E+00 +2228292,fr,1,4.650000E+00,7.448970E+00,5.055819E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +2228325,fr,1,4.850000E+00,7.448970E+00,5.055819E+01,5.000000E+00,Active Shallow Crust,1.288911E+02,8.998890E+01,0.000000E+00 +2228367,fr,1,5.250000E+00,7.448970E+00,5.055819E+01,5.000000E+00,Active Shallow Crust,2.400285E+02,5.800075E+01,0.000000E+00 +2228667,fr,1,3.750000E+00,8.977890E+00,4.795477E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801743E+01,0.000000E+00 +2228670,fr,1,3.750000E+00,8.977890E+00,4.795477E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,-9.000000E+01 +2228688,fr,1,3.950000E+00,8.977890E+00,4.795477E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999148E+01,0.000000E+00 +2228703,fr,1,4.050000E+00,8.977890E+00,4.795477E+01,5.000000E+00,Active Shallow Crust,2.400063E+02,5.800630E+01,0.000000E+00 +2228712,fr,1,4.150000E+00,8.977890E+00,4.795477E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999323E+01,0.000000E+00 +2228726,fr,1,4.250000E+00,8.977890E+00,4.795477E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998793E+01,0.000000E+00 +2228736,fr,1,4.350000E+00,8.977890E+00,4.795477E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +2229120,fr,3,3.550000E+00,-2.122850E+00,4.855246E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2229123,fr,1,3.550000E+00,-2.122850E+00,4.855246E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799847E+01,0.000000E+00 +2229132,fr,1,3.650000E+00,-2.122850E+00,4.855246E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +2229144,fr,1,3.750000E+00,-2.122850E+00,4.855246E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +2229145,fr,1,3.750000E+00,-2.122850E+00,4.855246E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +2229146,fr,1,3.750000E+00,-2.122850E+00,4.855246E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +2229147,fr,2,3.750000E+00,-2.122850E+00,4.855246E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.801749E+01,0.000000E+00 +2229154,fr,1,3.750000E+00,-2.122850E+00,4.855246E+01,1.500000E+01,Active Shallow Crust,1.288968E+02,8.996729E+01,0.000000E+00 +2229159,fr,1,3.850000E+00,-2.122850E+00,4.855246E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799791E+01,0.000000E+00 +2229168,fr,1,3.950000E+00,-2.122850E+00,4.855246E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +2229169,fr,1,3.950000E+00,-2.122850E+00,4.855246E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +2229181,fr,2,4.050000E+00,-2.122850E+00,4.855246E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +2229186,fr,1,4.050000E+00,-2.122850E+00,4.855246E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999051E+01,-9.000000E+01 +2229204,fr,1,4.250000E+00,-2.122850E+00,4.855246E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +2229265,fr,1,4.750000E+00,-2.122850E+00,4.855246E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2229289,fr,1,4.950000E+00,-2.122850E+00,4.855246E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2229333,fr,1,5.250000E+00,-2.122850E+00,4.855246E+01,5.000000E+00,Active Shallow Crust,1.288865E+02,8.998695E+01,0.000000E+00 +2229600,fr,2,3.550000E+00,-3.443290E+00,4.250517E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +2229613,fr,1,3.650000E+00,-3.443290E+00,4.250517E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2230080,fr,2,3.550000E+00,5.828420E+00,4.565402E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999295E+01,0.000000E+00 +2230087,fr,2,3.550000E+00,5.828420E+00,4.565402E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999287E+01,-9.000000E+01 +2230092,fr,4,3.650000E+00,5.828420E+00,4.565402E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998743E+01,0.000000E+00 +2230093,fr,1,3.650000E+00,5.828420E+00,4.565402E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998743E+01,0.000000E+00 +2230095,fr,2,3.650000E+00,5.828420E+00,4.565402E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801308E+01,0.000000E+00 +2230101,fr,1,3.650000E+00,5.828420E+00,4.565402E+01,5.000000E+00,Active Shallow Crust,1.289000E+02,8.996351E+01,0.000000E+00 +2230104,fr,2,3.750000E+00,5.828420E+00,4.565402E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998880E+01,0.000000E+00 +2230110,fr,1,3.750000E+00,5.828420E+00,4.565402E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998867E+01,-9.000000E+01 +2230114,fr,1,3.750000E+00,5.828420E+00,4.565402E+01,1.500000E+01,Active Shallow Crust,1.288968E+02,8.996748E+01,0.000000E+00 +2230116,fr,2,3.850000E+00,5.828420E+00,4.565402E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2230117,fr,1,3.850000E+00,5.828420E+00,4.565402E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2230124,fr,1,3.850000E+00,5.828420E+00,4.565402E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +2230140,fr,1,4.050000E+00,5.828420E+00,4.565402E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998811E+01,0.000000E+00 +2230143,fr,1,4.050000E+00,5.828420E+00,4.565402E+01,5.000000E+00,Active Shallow Crust,2.400052E+02,5.800647E+01,0.000000E+00 +2230145,fr,1,4.050000E+00,5.828420E+00,4.565402E+01,2.750000E+01,Active Shallow Crust,2.400052E+02,5.800644E+01,0.000000E+00 +2230160,fr,1,4.150000E+00,5.828420E+00,4.565402E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998928E+01,-9.000000E+01 +2230164,fr,1,4.250000E+00,5.828420E+00,4.565402E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +2230165,fr,1,4.250000E+00,5.828420E+00,4.565402E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +2230166,fr,1,4.250000E+00,5.828420E+00,4.565402E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +2230176,fr,1,4.350000E+00,5.828420E+00,4.565402E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +2230185,fr,1,4.350000E+00,5.828420E+00,4.565402E+01,5.000000E+00,Active Shallow Crust,1.288985E+02,8.998248E+01,0.000000E+00 +2230188,fr,1,4.450000E+00,5.828420E+00,4.565402E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2230191,fr,1,4.450000E+00,5.828420E+00,4.565402E+01,5.000000E+00,Active Shallow Crust,2.400048E+02,5.799481E+01,0.000000E+00 +2230200,fr,1,4.550000E+00,5.828420E+00,4.565402E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999108E+01,0.000000E+00 +2230228,fr,1,4.750000E+00,5.828420E+00,4.565402E+01,1.500000E+01,Active Shallow Crust,2.400074E+02,5.800455E+01,0.000000E+00 +2230286,fr,1,5.250000E+00,5.828420E+00,4.565402E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2230560,fr,1,3.550000E+00,2.148130E+00,4.563768E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +2230598,fr,1,3.850000E+00,2.148130E+00,4.563768E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2230620,fr,1,4.050000E+00,2.148130E+00,4.563768E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +2230621,fr,1,4.050000E+00,2.148130E+00,4.563768E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +2230650,fr,1,4.250000E+00,2.148130E+00,4.563768E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,-9.000000E+01 +2231044,fr,1,3.550000E+00,2.238280E+00,4.684040E+01,1.500000E+01,Active Shallow Crust,2.400118E+02,5.799781E+01,0.000000E+00 +2231065,fr,1,3.750000E+00,2.238280E+00,4.684040E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +2231076,fr,1,3.850000E+00,2.238280E+00,4.684040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2231101,fr,1,4.050000E+00,2.238280E+00,4.684040E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +2231124,fr,1,4.250000E+00,2.238280E+00,4.684040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +2231126,fr,1,4.250000E+00,2.238280E+00,4.684040E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +2231136,fr,1,4.350000E+00,2.238280E+00,4.684040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +2231534,fr,1,3.650000E+00,5.288700E-01,5.238611E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +2232048,fr,1,3.950000E+00,1.366980E+00,4.383531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +2232114,fr,1,4.450000E+00,1.366980E+00,4.383531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,-9.000000E+01 +2232193,fr,1,5.150000E+00,1.366980E+00,4.383531E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2232480,fr,1,3.550000E+00,3.942500E-01,4.416071E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +2232519,fr,1,3.850000E+00,3.942500E-01,4.416071E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.799771E+01,0.000000E+00 +2232553,fr,1,4.150000E+00,3.942500E-01,4.416071E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2232969,fr,1,3.550000E+00,6.352500E+00,4.867782E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.999334E+01,0.000000E+00 +2233002,fr,1,3.850000E+00,6.352500E+00,4.867782E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,-9.000000E+01 +2233003,fr,1,3.850000E+00,6.352500E+00,4.867782E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,-9.000000E+01 +2233032,fr,1,4.150000E+00,6.352500E+00,4.867782E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2233176,fr,1,5.350000E+00,6.352500E+00,4.867782E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2233296,fr,1,6.350000E+00,6.352506E+00,4.867782E+01,7.567806E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2233440,fr,4,3.550000E+00,8.451480E+00,5.017214E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998708E+01,0.000000E+00 +2233452,fr,1,3.650000E+00,8.451480E+00,5.017214E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998849E+01,0.000000E+00 +2233461,fr,1,3.650000E+00,8.451480E+00,5.017214E+01,5.000000E+00,Active Shallow Crust,1.288994E+02,8.996359E+01,0.000000E+00 +2233464,fr,2,3.750000E+00,8.451480E+00,5.017214E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +2233467,fr,1,3.750000E+00,8.451480E+00,5.017214E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.801782E+01,0.000000E+00 +2233472,fr,1,3.750000E+00,8.451480E+00,5.017214E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,-9.000000E+01 +2233476,fr,1,3.850000E+00,8.451480E+00,5.017214E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999085E+01,0.000000E+00 +2233488,fr,3,3.950000E+00,8.451480E+00,5.017214E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999185E+01,0.000000E+00 +2233494,fr,1,3.950000E+00,8.451480E+00,5.017214E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999175E+01,-9.000000E+01 +2233524,fr,1,4.250000E+00,8.451480E+00,5.017214E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998846E+01,0.000000E+00 +2233525,fr,1,4.250000E+00,8.451480E+00,5.017214E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998846E+01,0.000000E+00 +2233531,fr,1,4.250000E+00,8.451480E+00,5.017214E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998833E+01,-9.000000E+01 +2233548,fr,2,4.450000E+00,8.451480E+00,5.017214E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +2233559,fr,1,4.450000E+00,8.451480E+00,5.017214E+01,2.750000E+01,Active Shallow Crust,1.288915E+02,8.999313E+01,0.000000E+00 +2233764,fr,1,6.250000E+00,8.451484E+00,5.017214E+01,6.744814E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +2233920,fr,1,3.550000E+00,-2.506800E+00,4.248329E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +2233929,fr,1,3.550000E+00,-2.506800E+00,4.248329E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999256E+01,0.000000E+00 +2233935,fr,1,3.650000E+00,-2.506800E+00,4.248329E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801277E+01,0.000000E+00 +2233950,fr,1,3.750000E+00,-2.506800E+00,4.248329E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,-9.000000E+01 +2233956,fr,1,3.850000E+00,-2.506800E+00,4.248329E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +2233957,fr,1,3.850000E+00,-2.506800E+00,4.248329E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +2233958,fr,1,3.850000E+00,-2.506800E+00,4.248329E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +2233962,fr,1,3.850000E+00,-2.506800E+00,4.248329E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998935E+01,-9.000000E+01 +2233977,fr,1,3.950000E+00,-2.506800E+00,4.248329E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.999413E+01,0.000000E+00 +2233983,fr,1,4.050000E+00,-2.506800E+00,4.248329E+01,5.000000E+00,Active Shallow Crust,2.400052E+02,5.800583E+01,0.000000E+00 +2233996,fr,1,4.150000E+00,-2.506800E+00,4.248329E+01,1.500000E+01,Active Shallow Crust,2.400076E+02,5.799715E+01,0.000000E+00 +2234004,fr,1,4.250000E+00,-2.506800E+00,4.248329E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2234017,fr,1,4.350000E+00,-2.506800E+00,4.248329E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +2234140,fr,1,5.350000E+00,-2.506800E+00,4.248329E+01,1.500000E+01,Active Shallow Crust,2.400223E+02,5.800110E+01,0.000000E+00 +2234400,fr,1,3.550000E+00,5.438050E+00,4.468435E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999283E+01,0.000000E+00 +2234404,fr,1,3.550000E+00,5.438050E+00,4.468435E+01,1.500000E+01,Active Shallow Crust,2.400117E+02,5.799793E+01,0.000000E+00 +2234406,fr,1,3.550000E+00,5.438050E+00,4.468435E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999274E+01,-9.000000E+01 +2234412,fr,2,3.650000E+00,5.438050E+00,4.468435E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998722E+01,0.000000E+00 +2234419,fr,1,3.650000E+00,5.438050E+00,4.468435E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998708E+01,-9.000000E+01 +2234436,fr,1,3.850000E+00,5.438050E+00,4.468435E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2234437,fr,1,3.850000E+00,5.438050E+00,4.468435E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2234466,fr,1,4.050000E+00,5.438050E+00,4.468435E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999184E+01,-9.000000E+01 +2234496,fr,1,4.350000E+00,5.438050E+00,4.468435E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998858E+01,0.000000E+00 +2234544,fr,1,4.750000E+00,5.438050E+00,4.468435E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +2234610,fr,1,5.250000E+00,5.438050E+00,4.468435E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,-9.000000E+01 +2234713,fr,1,6.150000E+00,5.438050E+00,4.468435E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2234882,fr,1,3.550000E+00,2.132160E+00,4.032291E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998846E+01,0.000000E+00 +2234889,fr,1,3.550000E+00,2.132160E+00,4.032291E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999423E+01,0.000000E+00 +2234913,fr,1,3.750000E+00,2.132160E+00,4.032291E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.996706E+01,0.000000E+00 +2235420,fr,1,4.050000E+00,2.294340E+00,4.382870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +2235432,fr,1,4.150000E+00,2.294340E+00,4.382870E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +2235434,fr,1,4.150000E+00,2.294340E+00,4.382870E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +2235841,fr,1,3.550000E+00,1.811470E+00,4.853618E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2235894,fr,1,3.950000E+00,1.811470E+00,4.853618E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,-9.000000E+01 +2235900,fr,1,4.050000E+00,1.811470E+00,4.853618E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +2235936,fr,1,4.350000E+00,1.811470E+00,4.853618E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2236320,fr,6,3.550000E+00,1.594570E+00,4.640418E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +2236321,fr,1,3.550000E+00,1.594570E+00,4.640418E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +2236338,fr,2,3.650000E+00,1.594570E+00,4.640418E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,-9.000000E+01 +2236344,fr,1,3.750000E+00,1.594570E+00,4.640418E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +2236348,fr,1,3.750000E+00,1.594570E+00,4.640418E+01,1.500000E+01,Active Shallow Crust,2.400085E+02,5.801750E+01,0.000000E+00 +2236351,fr,1,3.750000E+00,1.594570E+00,4.640418E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999022E+01,-9.000000E+01 +2236390,fr,1,4.050000E+00,1.594570E+00,4.640418E+01,1.500000E+01,Active Shallow Crust,1.288903E+02,8.999364E+01,0.000000E+00 +2236392,fr,1,4.150000E+00,1.594570E+00,4.640418E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +2236429,fr,1,4.450000E+00,1.594570E+00,4.640418E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2236452,fr,2,4.650000E+00,1.594570E+00,4.640418E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2236457,fr,1,4.650000E+00,1.594570E+00,4.640418E+01,2.750000E+01,Active Shallow Crust,2.400108E+02,5.799422E+01,0.000000E+00 +2236513,fr,1,5.150000E+00,1.594570E+00,4.640418E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +2236525,fr,2,5.250000E+00,1.594570E+00,4.640418E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2237280,fr,3,3.550000E+00,3.212800E-01,4.698942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +2237281,fr,1,3.550000E+00,3.212800E-01,4.698942E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +2237286,fr,1,3.550000E+00,3.212800E-01,4.698942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +2237292,fr,2,3.650000E+00,3.212800E-01,4.698942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2237295,fr,1,3.650000E+00,3.212800E-01,4.698942E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801292E+01,0.000000E+00 +2237301,fr,1,3.650000E+00,3.212800E-01,4.698942E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.996350E+01,0.000000E+00 +2237304,fr,1,3.750000E+00,3.212800E-01,4.698942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2237308,fr,1,3.750000E+00,3.212800E-01,4.698942E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.801761E+01,0.000000E+00 +2237310,fr,1,3.750000E+00,3.212800E-01,4.698942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +2237316,fr,1,3.850000E+00,3.212800E-01,4.698942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2237329,fr,1,3.950000E+00,3.212800E-01,4.698942E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2237333,fr,1,3.950000E+00,3.212800E-01,4.698942E+01,2.750000E+01,Active Shallow Crust,2.400198E+02,5.800501E+01,0.000000E+00 +2237344,fr,1,4.050000E+00,3.212800E-01,4.698942E+01,1.500000E+01,Active Shallow Crust,2.400060E+02,5.800585E+01,0.000000E+00 +2237352,fr,2,4.150000E+00,3.212800E-01,4.698942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +2237366,fr,1,4.250000E+00,3.212800E-01,4.698942E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2237377,fr,1,4.350000E+00,3.212800E-01,4.698942E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2237389,fr,1,4.450000E+00,3.212800E-01,4.698942E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2237400,fr,1,4.550000E+00,3.212800E-01,4.698942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2237451,fr,1,4.950000E+00,3.212800E-01,4.698942E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.800451E+01,0.000000E+00 +2237469,fr,1,5.050000E+00,3.212800E-01,4.698942E+01,5.000000E+00,Active Shallow Crust,1.288853E+02,8.999045E+01,0.000000E+00 +2237496,fr,1,5.350000E+00,3.212800E-01,4.698942E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2237607,fr,1,6.250000E+00,3.183143E-01,4.699293E+01,5.719927E+00,Active Shallow Crust,2.400731E+02,5.799998E+01,0.000000E+00 +2237760,fr,1,3.550000E+00,6.588740E+00,4.496151E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999287E+01,0.000000E+00 +2237763,fr,1,3.550000E+00,6.588740E+00,4.496151E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799855E+01,0.000000E+00 +2237767,fr,1,3.550000E+00,6.588740E+00,4.496151E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999278E+01,-9.000000E+01 +2237770,fr,1,3.550000E+00,6.588740E+00,4.496151E+01,1.500000E+01,Active Shallow Crust,1.288969E+02,8.999287E+01,0.000000E+00 +2237772,fr,1,3.650000E+00,6.588740E+00,4.496151E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998728E+01,0.000000E+00 +2237773,fr,1,3.650000E+00,6.588740E+00,4.496151E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998728E+01,0.000000E+00 +2237784,fr,2,3.750000E+00,6.588740E+00,4.496151E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +2237788,fr,1,3.750000E+00,6.588740E+00,4.496151E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.801755E+01,0.000000E+00 +2237790,fr,1,3.750000E+00,6.588740E+00,4.496151E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998853E+01,-9.000000E+01 +2237793,fr,1,3.750000E+00,6.588740E+00,4.496151E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.996747E+01,0.000000E+00 +2237796,fr,1,3.850000E+00,6.588740E+00,4.496151E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +2237800,fr,1,3.850000E+00,6.588740E+00,4.496151E+01,1.500000E+01,Active Shallow Crust,2.400110E+02,5.799736E+01,0.000000E+00 +2237811,fr,1,3.950000E+00,6.588740E+00,4.496151E+01,5.000000E+00,Active Shallow Crust,2.400185E+02,5.800586E+01,0.000000E+00 +2237824,fr,1,4.050000E+00,6.588740E+00,4.496151E+01,1.500000E+01,Active Shallow Crust,2.400061E+02,5.800558E+01,0.000000E+00 +2237825,fr,1,4.050000E+00,6.588740E+00,4.496151E+01,2.750000E+01,Active Shallow Crust,2.400061E+02,5.800558E+01,0.000000E+00 +2237830,fr,1,4.050000E+00,6.588740E+00,4.496151E+01,1.500000E+01,Active Shallow Crust,1.288896E+02,8.999398E+01,0.000000E+00 +2237832,fr,1,4.150000E+00,6.588740E+00,4.496151E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +2238240,fr,1,3.550000E+00,3.952250E+00,4.578735E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +2238241,fr,1,3.550000E+00,3.952250E+00,4.578735E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +2238242,fr,1,3.550000E+00,3.952250E+00,4.578735E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +2238252,fr,1,3.650000E+00,3.952250E+00,4.578735E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +2238345,fr,1,4.350000E+00,3.952250E+00,4.578735E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.998299E+01,0.000000E+00 +2238384,fr,1,4.750000E+00,3.952250E+00,4.578735E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +2238436,fr,1,5.150000E+00,3.952250E+00,4.578735E+01,1.500000E+01,Active Shallow Crust,2.400192E+02,5.799987E+01,0.000000E+00 +2238744,fr,1,3.750000E+00,3.866260E+00,5.271127E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +2238745,fr,1,3.750000E+00,3.866260E+00,5.271127E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +2239200,fr,1,3.550000E+00,8.421230E+00,4.954466E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998692E+01,0.000000E+00 +2239201,fr,1,3.550000E+00,8.421230E+00,4.954466E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998692E+01,0.000000E+00 +2239209,fr,1,3.550000E+00,8.421230E+00,4.954466E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.999345E+01,0.000000E+00 +2239212,fr,1,3.650000E+00,8.421230E+00,4.954466E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998833E+01,0.000000E+00 +2239213,fr,2,3.650000E+00,8.421230E+00,4.954466E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998833E+01,0.000000E+00 +2239215,fr,1,3.650000E+00,8.421230E+00,4.954466E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801363E+01,0.000000E+00 +2239221,fr,1,3.650000E+00,8.421230E+00,4.954466E+01,5.000000E+00,Active Shallow Crust,1.288996E+02,8.996358E+01,0.000000E+00 +2239224,fr,3,3.750000E+00,8.421230E+00,4.954466E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +2239236,fr,4,3.850000E+00,8.421230E+00,4.954466E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +2239242,fr,1,3.850000E+00,8.421230E+00,4.954466E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,-9.000000E+01 +2239248,fr,2,3.950000E+00,8.421230E+00,4.954466E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999174E+01,0.000000E+00 +2239253,fr,1,3.950000E+00,8.421230E+00,4.954466E+01,2.750000E+01,Active Shallow Crust,2.400213E+02,5.800528E+01,0.000000E+00 +2239257,fr,1,3.950000E+00,8.421230E+00,4.954466E+01,5.000000E+00,Active Shallow Crust,1.289012E+02,8.999174E+01,0.000000E+00 +2239287,fr,1,4.250000E+00,8.421230E+00,4.954466E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799406E+01,0.000000E+00 +2239308,fr,1,4.450000E+00,8.421230E+00,4.954466E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +2239320,fr,1,4.550000E+00,8.421230E+00,4.954466E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999172E+01,0.000000E+00 +2239326,fr,1,4.550000E+00,8.421230E+00,4.954466E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999163E+01,-9.000000E+01 +2239358,fr,1,4.850000E+00,8.421230E+00,4.954466E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999121E+01,0.000000E+00 +2239362,fr,1,4.850000E+00,8.421230E+00,4.954466E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999110E+01,-9.000000E+01 +2239536,fr,1,6.350000E+00,8.421236E+00,4.954466E+01,7.567806E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +2239704,fr,1,3.750000E+00,3.441190E+00,4.387489E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999134E+01,0.000000E+00 +2239761,fr,1,4.150000E+00,3.441190E+00,4.387489E+01,5.000000E+00,Active Shallow Crust,1.288980E+02,8.999362E+01,0.000000E+00 +2239764,fr,1,4.250000E+00,3.441190E+00,4.387489E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +2239890,fr,1,5.250000E+00,3.441190E+00,4.387489E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,-9.000000E+01 +2240195,fr,1,3.750000E+00,3.792370E+00,4.782182E+01,2.750000E+01,Active Shallow Crust,1.288967E+02,8.996726E+01,0.000000E+00 +2240212,fr,1,3.950000E+00,3.792370E+00,4.782182E+01,1.500000E+01,Active Shallow Crust,2.400200E+02,5.800496E+01,0.000000E+00 +2240305,fr,1,4.750000E+00,3.792370E+00,4.782182E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +2240320,fr,1,4.850000E+00,3.792370E+00,4.782182E+01,1.500000E+01,Active Shallow Crust,2.400177E+02,5.800244E+01,0.000000E+00 +2240640,fr,2,3.550000E+00,7.989050E+00,4.682124E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999310E+01,0.000000E+00 +2240641,fr,5,3.550000E+00,7.989050E+00,4.682124E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999310E+01,0.000000E+00 +2240646,fr,1,3.550000E+00,7.989050E+00,4.682124E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999302E+01,-9.000000E+01 +2240650,fr,1,3.550000E+00,7.989050E+00,4.682124E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.999310E+01,0.000000E+00 +2240652,fr,8,3.650000E+00,7.989050E+00,4.682124E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998770E+01,0.000000E+00 +2240657,fr,1,3.650000E+00,7.989050E+00,4.682124E+01,2.750000E+01,Active Shallow Crust,2.400019E+02,5.801289E+01,0.000000E+00 +2240663,fr,1,3.650000E+00,7.989050E+00,4.682124E+01,2.750000E+01,Active Shallow Crust,1.289004E+02,8.996353E+01,0.000000E+00 +2240664,fr,2,3.750000E+00,7.989050E+00,4.682124E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +2240665,fr,1,3.750000E+00,7.989050E+00,4.682124E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +2240674,fr,1,3.750000E+00,7.989050E+00,4.682124E+01,1.500000E+01,Active Shallow Crust,1.288958E+02,8.996750E+01,0.000000E+00 +2240676,fr,1,3.850000E+00,7.989050E+00,4.682124E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2240679,fr,1,3.850000E+00,7.989050E+00,4.682124E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799812E+01,0.000000E+00 +2240680,fr,1,3.850000E+00,7.989050E+00,4.682124E+01,1.500000E+01,Active Shallow Crust,2.400111E+02,5.799812E+01,0.000000E+00 +2240682,fr,1,3.850000E+00,7.989050E+00,4.682124E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,-9.000000E+01 +2240688,fr,2,3.950000E+00,7.989050E+00,4.682124E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +2240700,fr,3,4.050000E+00,7.989050E+00,4.682124E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998836E+01,0.000000E+00 +2240712,fr,2,4.150000E+00,7.989050E+00,4.682124E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +2240724,fr,2,4.250000E+00,7.989050E+00,4.682124E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +2240732,fr,1,4.250000E+00,7.989050E+00,4.682124E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,-9.000000E+01 +2240737,fr,1,4.350000E+00,7.989050E+00,4.682124E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +2240751,fr,1,4.450000E+00,7.989050E+00,4.682124E+01,5.000000E+00,Active Shallow Crust,2.400057E+02,5.799431E+01,0.000000E+00 +2240785,fr,1,4.750000E+00,7.989050E+00,4.682124E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +2240811,fr,1,4.950000E+00,7.989050E+00,4.682124E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.800470E+01,0.000000E+00 +2240830,fr,1,5.050000E+00,7.989050E+00,4.682124E+01,1.500000E+01,Active Shallow Crust,1.288854E+02,8.999015E+01,0.000000E+00 +2240835,fr,1,5.150000E+00,7.989050E+00,4.682124E+01,5.000000E+00,Active Shallow Crust,2.400200E+02,5.799997E+01,0.000000E+00 +2240870,fr,1,5.450000E+00,7.989050E+00,4.682124E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2241145,fr,1,3.750000E+00,-6.272950E+00,4.869295E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +2241208,fr,1,4.250000E+00,-6.272950E+00,4.869295E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.799414E+01,0.000000E+00 +2241252,fr,1,4.650000E+00,-6.272950E+00,4.869295E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +2241602,fr,1,3.550000E+00,2.017240E+00,4.470383E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +2241636,fr,1,3.850000E+00,2.017240E+00,4.470383E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2241673,fr,1,4.150000E+00,2.017240E+00,4.470383E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998922E+01,0.000000E+00 +2242560,fr,2,3.550000E+00,2.736630E+00,4.870666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2242572,fr,1,3.650000E+00,2.736630E+00,4.870666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +2242656,fr,1,4.350000E+00,2.736630E+00,4.870666E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +2243040,fr,5,3.550000E+00,-7.055200E-01,4.310042E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2243042,fr,1,3.550000E+00,-7.055200E-01,4.310042E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2243043,fr,1,3.550000E+00,-7.055200E-01,4.310042E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799806E+01,0.000000E+00 +2243044,fr,1,3.550000E+00,-7.055200E-01,4.310042E+01,1.500000E+01,Active Shallow Crust,2.400119E+02,5.799806E+01,0.000000E+00 +2243046,fr,1,3.550000E+00,-7.055200E-01,4.310042E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,-9.000000E+01 +2243047,fr,1,3.550000E+00,-7.055200E-01,4.310042E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,-9.000000E+01 +2243049,fr,2,3.550000E+00,-7.055200E-01,4.310042E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999402E+01,0.000000E+00 +2243052,fr,6,3.650000E+00,-7.055200E-01,4.310042E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +2243053,fr,2,3.650000E+00,-7.055200E-01,4.310042E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +2243054,fr,1,3.650000E+00,-7.055200E-01,4.310042E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +2243055,fr,2,3.650000E+00,-7.055200E-01,4.310042E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801299E+01,0.000000E+00 +2243057,fr,1,3.650000E+00,-7.055200E-01,4.310042E+01,2.750000E+01,Active Shallow Crust,2.400007E+02,5.801291E+01,0.000000E+00 +2243059,fr,1,3.650000E+00,-7.055200E-01,4.310042E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +2243061,fr,2,3.650000E+00,-7.055200E-01,4.310042E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996353E+01,0.000000E+00 +2243064,fr,2,3.750000E+00,-7.055200E-01,4.310042E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +2243065,fr,4,3.750000E+00,-7.055200E-01,4.310042E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +2243066,fr,2,3.750000E+00,-7.055200E-01,4.310042E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +2243067,fr,3,3.750000E+00,-7.055200E-01,4.310042E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801753E+01,0.000000E+00 +2243076,fr,4,3.850000E+00,-7.055200E-01,4.310042E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2243077,fr,3,3.850000E+00,-7.055200E-01,4.310042E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2243081,fr,1,3.850000E+00,-7.055200E-01,4.310042E+01,2.750000E+01,Active Shallow Crust,2.400105E+02,5.799765E+01,0.000000E+00 +2243088,fr,4,3.950000E+00,-7.055200E-01,4.310042E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2243089,fr,2,3.950000E+00,-7.055200E-01,4.310042E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2243091,fr,1,3.950000E+00,-7.055200E-01,4.310042E+01,5.000000E+00,Active Shallow Crust,2.400193E+02,5.800500E+01,0.000000E+00 +2243097,fr,1,3.950000E+00,-7.055200E-01,4.310042E+01,5.000000E+00,Active Shallow Crust,1.289009E+02,8.999361E+01,0.000000E+00 +2243100,fr,3,4.050000E+00,-7.055200E-01,4.310042E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2243101,fr,1,4.050000E+00,-7.055200E-01,4.310042E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2243121,fr,1,4.150000E+00,-7.055200E-01,4.310042E+01,5.000000E+00,Active Shallow Crust,1.288981E+02,8.999355E+01,0.000000E+00 +2243124,fr,1,4.250000E+00,-7.055200E-01,4.310042E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2243130,fr,1,4.250000E+00,-7.055200E-01,4.310042E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +2243133,fr,1,4.250000E+00,-7.055200E-01,4.310042E+01,5.000000E+00,Active Shallow Crust,1.288949E+02,8.998089E+01,0.000000E+00 +2243134,fr,2,4.250000E+00,-7.055200E-01,4.310042E+01,1.500000E+01,Active Shallow Crust,1.288949E+02,8.998089E+01,0.000000E+00 +2243136,fr,1,4.350000E+00,-7.055200E-01,4.310042E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2243140,fr,1,4.350000E+00,-7.055200E-01,4.310042E+01,1.500000E+01,Active Shallow Crust,2.400076E+02,5.799580E+01,0.000000E+00 +2243143,fr,1,4.350000E+00,-7.055200E-01,4.310042E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +2243145,fr,1,4.350000E+00,-7.055200E-01,4.310042E+01,5.000000E+00,Active Shallow Crust,1.288985E+02,8.998278E+01,0.000000E+00 +2243150,fr,1,4.450000E+00,-7.055200E-01,4.310042E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2243160,fr,2,4.550000E+00,-7.055200E-01,4.310042E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2243163,fr,2,4.550000E+00,-7.055200E-01,4.310042E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799718E+01,0.000000E+00 +2243166,fr,1,4.550000E+00,-7.055200E-01,4.310042E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +2243169,fr,1,4.550000E+00,-7.055200E-01,4.310042E+01,5.000000E+00,Active Shallow Crust,1.288947E+02,8.998579E+01,0.000000E+00 +2243194,fr,1,4.750000E+00,-7.055200E-01,4.310042E+01,1.500000E+01,Active Shallow Crust,1.288896E+02,8.998810E+01,0.000000E+00 +2243197,fr,1,4.850000E+00,-7.055200E-01,4.310042E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +2243244,fr,1,5.250000E+00,-7.055200E-01,4.310042E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2243256,fr,1,5.350000E+00,-7.055200E-01,4.310042E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2244012,fr,2,3.650000E+00,1.963590E+00,4.177897E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2244013,fr,2,3.650000E+00,1.963590E+00,4.177897E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2244015,fr,1,3.650000E+00,1.963590E+00,4.177897E+01,5.000000E+00,Active Shallow Crust,2.400004E+02,5.801290E+01,0.000000E+00 +2244026,fr,1,3.750000E+00,1.963590E+00,4.177897E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +2244027,fr,1,3.750000E+00,1.963590E+00,4.177897E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801724E+01,0.000000E+00 +2244030,fr,1,3.750000E+00,1.963590E+00,4.177897E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,-9.000000E+01 +2244039,fr,1,3.850000E+00,1.963590E+00,4.177897E+01,5.000000E+00,Active Shallow Crust,2.400103E+02,5.799770E+01,0.000000E+00 +2244058,fr,1,3.950000E+00,1.963590E+00,4.177897E+01,1.500000E+01,Active Shallow Crust,1.289010E+02,8.999407E+01,0.000000E+00 +2244060,fr,1,4.050000E+00,1.963590E+00,4.177897E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +2244072,fr,1,4.150000E+00,1.963590E+00,4.177897E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +2244096,fr,1,4.350000E+00,1.963590E+00,4.177897E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +2244125,fr,1,4.550000E+00,1.963590E+00,4.177897E+01,2.750000E+01,Active Shallow Crust,2.400080E+02,5.799714E+01,0.000000E+00 +2244495,fr,1,3.650000E+00,4.140400E+00,4.034980E+01,5.000000E+00,Active Shallow Crust,2.399996E+02,5.801413E+01,0.000000E+00 +2244553,fr,1,4.150000E+00,4.140400E+00,4.034980E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998844E+01,0.000000E+00 +2244574,fr,1,4.250000E+00,4.140400E+00,4.034980E+01,1.500000E+01,Active Shallow Crust,1.288957E+02,8.998072E+01,0.000000E+00 +2244960,fr,1,3.550000E+00,5.745800E-01,4.376874E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2245189,fr,1,5.450000E+00,5.745800E-01,4.376874E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2245445,fr,1,3.550000E+00,-1.766120E+00,4.326289E+01,2.750000E+01,Active Shallow Crust,2.400118E+02,5.799795E+01,0.000000E+00 +2245450,fr,1,3.550000E+00,-1.766120E+00,4.326289E+01,1.500000E+01,Active Shallow Crust,1.288966E+02,8.999358E+01,0.000000E+00 +2245452,fr,2,3.650000E+00,-1.766120E+00,4.326289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +2245458,fr,2,3.650000E+00,-1.766120E+00,4.326289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +2245465,fr,1,3.750000E+00,-1.766120E+00,4.326289E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +2245470,fr,2,3.750000E+00,-1.766120E+00,4.326289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,-9.000000E+01 +2245474,fr,1,3.750000E+00,-1.766120E+00,4.326289E+01,1.500000E+01,Active Shallow Crust,1.288969E+02,8.996730E+01,0.000000E+00 +2245479,fr,1,3.850000E+00,-1.766120E+00,4.326289E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.799781E+01,0.000000E+00 +2245483,fr,1,3.850000E+00,-1.766120E+00,4.326289E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998948E+01,-9.000000E+01 +2245488,fr,1,3.950000E+00,-1.766120E+00,4.326289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +2245489,fr,1,3.950000E+00,-1.766120E+00,4.326289E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +2245490,fr,1,3.950000E+00,-1.766120E+00,4.326289E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +2245512,fr,1,4.150000E+00,-1.766120E+00,4.326289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2245516,fr,1,4.150000E+00,-1.766120E+00,4.326289E+01,1.500000E+01,Active Shallow Crust,2.400077E+02,5.799739E+01,0.000000E+00 +2245519,fr,1,4.150000E+00,-1.766120E+00,4.326289E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,-9.000000E+01 +2245524,fr,1,4.250000E+00,-1.766120E+00,4.326289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +2245536,fr,1,4.350000E+00,-1.766120E+00,4.326289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +2245553,fr,1,4.450000E+00,-1.766120E+00,4.326289E+01,2.750000E+01,Active Shallow Crust,2.400045E+02,5.799454E+01,0.000000E+00 +2245560,fr,1,4.550000E+00,-1.766120E+00,4.326289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2245569,fr,1,4.550000E+00,-1.766120E+00,4.326289E+01,5.000000E+00,Active Shallow Crust,1.288947E+02,8.998573E+01,0.000000E+00 +2245572,fr,1,4.650000E+00,-1.766120E+00,4.326289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2245578,fr,1,4.650000E+00,-1.766120E+00,4.326289E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,-9.000000E+01 +2245682,fr,1,5.550000E+00,-1.766120E+00,4.326289E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +2245920,fr,1,3.550000E+00,1.540600E+00,4.452347E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +2245980,fr,1,4.050000E+00,1.540600E+00,4.452347E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +2246001,fr,1,4.150000E+00,1.540600E+00,4.452347E+01,5.000000E+00,Active Shallow Crust,1.288979E+02,8.999370E+01,0.000000E+00 +2246028,fr,1,4.450000E+00,1.540600E+00,4.452347E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +2246884,fr,1,3.550000E+00,5.933380E+00,4.355471E+01,1.500000E+01,Active Shallow Crust,2.400118E+02,5.799761E+01,0.000000E+00 +2246892,fr,2,3.650000E+00,5.933380E+00,4.355471E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998698E+01,0.000000E+00 +2246904,fr,2,3.750000E+00,5.933380E+00,4.355471E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998839E+01,0.000000E+00 +2246945,fr,1,4.050000E+00,5.933380E+00,4.355471E+01,2.750000E+01,Active Shallow Crust,2.400056E+02,5.800564E+01,0.000000E+00 +2246964,fr,1,4.250000E+00,5.933380E+00,4.355471E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2246965,fr,1,4.250000E+00,5.933380E+00,4.355471E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2246988,fr,1,4.450000E+00,5.933380E+00,4.355471E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +2247084,fr,1,5.250000E+00,5.933380E+00,4.355471E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +2247360,fr,4,3.550000E+00,7.321600E-01,4.296655E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2247361,fr,1,3.550000E+00,7.321600E-01,4.296655E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2247362,fr,1,3.550000E+00,7.321600E-01,4.296655E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2247369,fr,2,3.550000E+00,7.321600E-01,4.296655E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999355E+01,0.000000E+00 +2247372,fr,5,3.650000E+00,7.321600E-01,4.296655E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2247375,fr,1,3.650000E+00,7.321600E-01,4.296655E+01,5.000000E+00,Active Shallow Crust,2.400006E+02,5.801288E+01,0.000000E+00 +2247376,fr,1,3.650000E+00,7.321600E-01,4.296655E+01,1.500000E+01,Active Shallow Crust,2.400006E+02,5.801288E+01,0.000000E+00 +2247379,fr,1,3.650000E+00,7.321600E-01,4.296655E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +2247381,fr,1,3.650000E+00,7.321600E-01,4.296655E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.996353E+01,0.000000E+00 +2247384,fr,1,3.750000E+00,7.321600E-01,4.296655E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2247395,fr,1,3.750000E+00,7.321600E-01,4.296655E+01,2.750000E+01,Active Shallow Crust,1.288969E+02,8.996736E+01,0.000000E+00 +2247398,fr,2,3.850000E+00,7.321600E-01,4.296655E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2247399,fr,1,3.850000E+00,7.321600E-01,4.296655E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799771E+01,0.000000E+00 +2247405,fr,1,3.850000E+00,7.321600E-01,4.296655E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999380E+01,0.000000E+00 +2247408,fr,2,3.950000E+00,7.321600E-01,4.296655E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2247409,fr,3,3.950000E+00,7.321600E-01,4.296655E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2247418,fr,1,3.950000E+00,7.321600E-01,4.296655E+01,1.500000E+01,Active Shallow Crust,1.289008E+02,8.999360E+01,0.000000E+00 +2247420,fr,3,4.050000E+00,7.321600E-01,4.296655E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2247422,fr,1,4.050000E+00,7.321600E-01,4.296655E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2247432,fr,1,4.150000E+00,7.321600E-01,4.296655E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +2247444,fr,1,4.250000E+00,7.321600E-01,4.296655E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +2247450,fr,1,4.250000E+00,7.321600E-01,4.296655E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +2247454,fr,1,4.250000E+00,7.321600E-01,4.296655E+01,1.500000E+01,Active Shallow Crust,1.288948E+02,8.998096E+01,0.000000E+00 +2247474,fr,1,4.450000E+00,7.321600E-01,4.296655E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +2247550,fr,1,5.050000E+00,7.321600E-01,4.296655E+01,1.500000E+01,Active Shallow Crust,1.288869E+02,8.999045E+01,0.000000E+00 +2248333,fr,1,3.650000E+00,6.105850E+00,5.014937E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998848E+01,0.000000E+00 +2248344,fr,1,3.750000E+00,6.105850E+00,5.014937E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +2248350,fr,1,3.750000E+00,6.105850E+00,5.014937E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,-9.000000E+01 +2248423,fr,1,4.350000E+00,6.105850E+00,5.014937E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +2248428,fr,2,4.450000E+00,6.105850E+00,5.014937E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +2248482,fr,1,4.850000E+00,6.105850E+00,5.014937E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,-9.000000E+01 +2248848,fr,1,3.950000E+00,4.748840E+00,4.871898E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999161E+01,0.000000E+00 +2249280,fr,1,3.550000E+00,2.217750E+00,4.368426E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998906E+01,0.000000E+00 +2249292,fr,1,3.650000E+00,2.217750E+00,4.368426E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +2249305,fr,1,3.750000E+00,2.217750E+00,4.368426E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999131E+01,0.000000E+00 +2249342,fr,1,4.050000E+00,2.217750E+00,4.368426E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2249352,fr,1,4.150000E+00,2.217750E+00,4.368426E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +2249364,fr,1,4.250000E+00,2.217750E+00,4.368426E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2249436,fr,1,4.850000E+00,2.217750E+00,4.368426E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2249437,fr,1,4.850000E+00,2.217750E+00,4.368426E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2249760,fr,2,3.550000E+00,4.725140E+00,4.379451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999272E+01,0.000000E+00 +2249766,fr,1,3.550000E+00,4.725140E+00,4.379451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999264E+01,-9.000000E+01 +2249772,fr,2,3.650000E+00,4.725140E+00,4.379451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998702E+01,0.000000E+00 +2249773,fr,1,3.650000E+00,4.725140E+00,4.379451E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998702E+01,0.000000E+00 +2249775,fr,1,3.650000E+00,4.725140E+00,4.379451E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801320E+01,0.000000E+00 +2249776,fr,1,3.650000E+00,4.725140E+00,4.379451E+01,1.500000E+01,Active Shallow Crust,2.400007E+02,5.801320E+01,0.000000E+00 +2249784,fr,2,3.750000E+00,4.725140E+00,4.379451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +2249796,fr,1,3.850000E+00,4.725140E+00,4.379451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2249797,fr,1,3.850000E+00,4.725140E+00,4.379451E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2249798,fr,1,3.850000E+00,4.725140E+00,4.379451E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2249820,fr,1,4.050000E+00,4.725140E+00,4.379451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999181E+01,0.000000E+00 +2249827,fr,1,4.050000E+00,4.725140E+00,4.379451E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999172E+01,-9.000000E+01 +2249833,fr,1,4.150000E+00,4.725140E+00,4.379451E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998905E+01,0.000000E+00 +2249844,fr,1,4.250000E+00,4.725140E+00,4.379451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +2249847,fr,1,4.250000E+00,4.725140E+00,4.379451E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.799389E+01,0.000000E+00 +2249849,fr,1,4.250000E+00,4.725140E+00,4.379451E+01,2.750000E+01,Active Shallow Crust,2.400077E+02,5.799389E+01,0.000000E+00 +2249854,fr,1,4.250000E+00,4.725140E+00,4.379451E+01,1.500000E+01,Active Shallow Crust,1.288949E+02,8.998084E+01,0.000000E+00 +2249886,fr,1,4.550000E+00,4.725140E+00,4.379451E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,-9.000000E+01 +2249909,fr,1,4.750000E+00,4.725140E+00,4.379451E+01,2.750000E+01,Active Shallow Crust,2.400064E+02,5.800431E+01,0.000000E+00 +2249931,fr,1,4.950000E+00,4.725140E+00,4.379451E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.800433E+01,0.000000E+00 +2249949,fr,1,5.050000E+00,4.725140E+00,4.379451E+01,5.000000E+00,Active Shallow Crust,1.288867E+02,8.999034E+01,0.000000E+00 +2250243,fr,1,3.550000E+00,1.258600E-01,4.249888E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799807E+01,0.000000E+00 +2250252,fr,1,3.650000E+00,1.258600E-01,4.249888E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2250261,fr,1,3.650000E+00,1.258600E-01,4.249888E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.996350E+01,0.000000E+00 +2250264,fr,1,3.750000E+00,1.258600E-01,4.249888E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2250266,fr,1,3.750000E+00,1.258600E-01,4.249888E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2250319,fr,1,4.150000E+00,1.258600E-01,4.249888E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +2250324,fr,1,4.250000E+00,1.258600E-01,4.249888E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2250336,fr,1,4.350000E+00,1.258600E-01,4.249888E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2250396,fr,1,4.850000E+00,1.258600E-01,4.249888E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2250759,fr,1,3.850000E+00,-5.866010E+00,4.955772E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799818E+01,0.000000E+00 +2251200,fr,1,3.550000E+00,-3.969500E-01,4.639840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2251213,fr,1,3.650000E+00,-3.969500E-01,4.639840E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2251221,fr,1,3.650000E+00,-3.969500E-01,4.639840E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.996352E+01,0.000000E+00 +2251224,fr,4,3.750000E+00,-3.969500E-01,4.639840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2251225,fr,1,3.750000E+00,-3.969500E-01,4.639840E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2251233,fr,1,3.750000E+00,-3.969500E-01,4.639840E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.996736E+01,0.000000E+00 +2251266,fr,1,4.050000E+00,-3.969500E-01,4.639840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,-9.000000E+01 +2251320,fr,1,4.550000E+00,-3.969500E-01,4.639840E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2252173,fr,1,3.650000E+00,4.573430E+00,4.844197E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +2252233,fr,1,4.150000E+00,4.573430E+00,4.844197E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2252736,fr,1,4.350000E+00,3.934010E+00,4.997704E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +2252760,fr,1,4.550000E+00,3.934010E+00,4.997704E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2253120,fr,2,3.550000E+00,2.986060E+00,4.234190E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +2253132,fr,2,3.650000E+00,2.986060E+00,4.234190E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2253133,fr,2,3.650000E+00,2.986060E+00,4.234190E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2253134,fr,1,3.650000E+00,2.986060E+00,4.234190E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2253135,fr,1,3.650000E+00,2.986060E+00,4.234190E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801303E+01,0.000000E+00 +2253138,fr,1,3.650000E+00,2.986060E+00,4.234190E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,-9.000000E+01 +2253144,fr,1,3.750000E+00,2.986060E+00,4.234190E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999112E+01,0.000000E+00 +2253150,fr,1,3.750000E+00,2.986060E+00,4.234190E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999102E+01,-9.000000E+01 +2253156,fr,1,3.850000E+00,2.986060E+00,4.234190E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +2253165,fr,1,3.850000E+00,2.986060E+00,4.234190E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999341E+01,0.000000E+00 +2253180,fr,1,4.050000E+00,2.986060E+00,4.234190E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +2253181,fr,1,4.050000E+00,2.986060E+00,4.234190E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +2253183,fr,1,4.050000E+00,2.986060E+00,4.234190E+01,5.000000E+00,Active Shallow Crust,2.400056E+02,5.800552E+01,0.000000E+00 +2253187,fr,1,4.050000E+00,2.986060E+00,4.234190E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,-9.000000E+01 +2253189,fr,1,4.050000E+00,2.986060E+00,4.234190E+01,5.000000E+00,Active Shallow Crust,1.288913E+02,8.999371E+01,0.000000E+00 +2253613,fr,1,3.650000E+00,-1.473670E+00,4.467006E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +2254560,fr,3,3.550000E+00,4.109940E+00,5.025004E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998711E+01,0.000000E+00 +2254563,fr,1,3.550000E+00,4.109940E+00,5.025004E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799783E+01,0.000000E+00 +2254565,fr,1,3.550000E+00,4.109940E+00,5.025004E+01,2.750000E+01,Active Shallow Crust,2.400124E+02,5.799773E+01,0.000000E+00 +2254572,fr,1,3.650000E+00,4.109940E+00,5.025004E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998850E+01,0.000000E+00 +2254574,fr,1,3.650000E+00,4.109940E+00,5.025004E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998850E+01,0.000000E+00 +2254584,fr,3,3.750000E+00,4.109940E+00,5.025004E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2254587,fr,1,3.750000E+00,4.109940E+00,5.025004E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.801855E+01,0.000000E+00 +2254596,fr,1,3.850000E+00,4.109940E+00,5.025004E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999087E+01,0.000000E+00 +2254602,fr,1,3.850000E+00,4.109940E+00,5.025004E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999076E+01,-9.000000E+01 +2254608,fr,2,3.950000E+00,4.109940E+00,5.025004E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999186E+01,0.000000E+00 +2254611,fr,1,3.950000E+00,4.109940E+00,5.025004E+01,5.000000E+00,Active Shallow Crust,2.400194E+02,5.800555E+01,0.000000E+00 +2254613,fr,1,3.950000E+00,4.109940E+00,5.025004E+01,2.750000E+01,Active Shallow Crust,2.400194E+02,5.800555E+01,0.000000E+00 +2254620,fr,1,4.050000E+00,4.109940E+00,5.025004E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998912E+01,0.000000E+00 +2254632,fr,2,4.150000E+00,4.109940E+00,5.025004E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +2254633,fr,1,4.150000E+00,4.109940E+00,5.025004E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +2254638,fr,1,4.150000E+00,4.109940E+00,5.025004E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,-9.000000E+01 +2254644,fr,1,4.250000E+00,4.109940E+00,5.025004E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999136E+01,0.000000E+00 +2254658,fr,1,4.350000E+00,4.109940E+00,5.025004E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +2254668,fr,1,4.450000E+00,4.109940E+00,5.025004E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +2254705,fr,1,4.750000E+00,4.109940E+00,5.025004E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +2254710,fr,1,4.750000E+00,4.109940E+00,5.025004E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,-9.000000E+01 +2254821,fr,1,5.650000E+00,4.109940E+00,5.025004E+01,5.000000E+00,Active Shallow Crust,1.288717E+02,8.999043E+01,0.000000E+00 +2255521,fr,1,3.550000E+00,1.069200E-01,4.844340E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2255535,fr,1,3.650000E+00,1.069200E-01,4.844340E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801293E+01,0.000000E+00 +2255544,fr,1,3.750000E+00,1.069200E-01,4.844340E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2255595,fr,1,4.150000E+00,1.069200E-01,4.844340E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.799738E+01,0.000000E+00 +2255604,fr,1,4.250000E+00,1.069200E-01,4.844340E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2256012,fr,1,3.650000E+00,4.039370E+00,4.886950E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998817E+01,0.000000E+00 +2256480,fr,3,3.550000E+00,3.124780E+00,4.155721E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998868E+01,0.000000E+00 +2256492,fr,1,3.650000E+00,3.124780E+00,4.155721E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2256495,fr,1,3.650000E+00,3.124780E+00,4.155721E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801314E+01,0.000000E+00 +2256498,fr,1,3.650000E+00,3.124780E+00,4.155721E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,-9.000000E+01 +2256510,fr,1,3.750000E+00,3.124780E+00,4.155721E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,-9.000000E+01 +2256516,fr,2,3.850000E+00,3.124780E+00,4.155721E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +2256526,fr,1,3.850000E+00,3.124780E+00,4.155721E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.999332E+01,0.000000E+00 +2256528,fr,1,3.950000E+00,3.124780E+00,4.155721E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +2256529,fr,1,3.950000E+00,3.124780E+00,4.155721E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +2256535,fr,1,3.950000E+00,3.124780E+00,4.155721E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,-9.000000E+01 +2256540,fr,1,4.050000E+00,3.124780E+00,4.155721E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +2256549,fr,1,4.050000E+00,3.124780E+00,4.155721E+01,5.000000E+00,Active Shallow Crust,1.288909E+02,8.999364E+01,0.000000E+00 +2256564,fr,2,4.250000E+00,3.124780E+00,4.155721E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +2256565,fr,2,4.250000E+00,3.124780E+00,4.155721E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +2256576,fr,1,4.350000E+00,3.124780E+00,4.155721E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +2256609,fr,1,4.550000E+00,3.124780E+00,4.155721E+01,5.000000E+00,Active Shallow Crust,1.288951E+02,8.998566E+01,0.000000E+00 +2256625,fr,1,4.750000E+00,3.124780E+00,4.155721E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +2256636,fr,1,4.850000E+00,3.124780E+00,4.155721E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +2256794,fr,1,6.150000E+00,3.124780E+00,4.155721E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2256972,fr,1,3.650000E+00,3.126300E+00,4.501117E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +2256985,fr,2,3.750000E+00,3.126300E+00,4.501117E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998868E+01,0.000000E+00 +2256997,fr,1,3.850000E+00,3.126300E+00,4.501117E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2257009,fr,1,3.950000E+00,3.126300E+00,4.501117E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +2257029,fr,1,4.050000E+00,3.126300E+00,4.501117E+01,5.000000E+00,Active Shallow Crust,1.288912E+02,8.999299E+01,0.000000E+00 +2257030,fr,1,4.050000E+00,3.126300E+00,4.501117E+01,1.500000E+01,Active Shallow Crust,1.288912E+02,8.999299E+01,0.000000E+00 +2257032,fr,1,4.150000E+00,3.126300E+00,4.501117E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998928E+01,0.000000E+00 +2257044,fr,1,4.250000E+00,3.126300E+00,4.501117E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +2257192,fr,1,5.450000E+00,3.126300E+00,4.501117E+01,1.500000E+01,Active Shallow Crust,2.400277E+02,5.799825E+01,0.000000E+00 +2257461,fr,1,3.650000E+00,5.676300E-01,5.174361E+01,5.000000E+00,Active Shallow Crust,1.288999E+02,8.996351E+01,0.000000E+00 +2257536,fr,1,4.350000E+00,5.676300E-01,5.174361E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2257549,fr,2,4.450000E+00,5.676300E-01,5.174361E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2257596,fr,1,4.850000E+00,5.676300E-01,5.174361E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2257920,fr,1,3.550000E+00,3.646850E+00,4.390554E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +2257922,fr,1,3.550000E+00,3.646850E+00,4.390554E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +2257932,fr,1,3.650000E+00,3.646850E+00,4.390554E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +2257945,fr,2,3.750000E+00,3.646850E+00,4.390554E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999134E+01,0.000000E+00 +2257970,fr,1,3.950000E+00,3.646850E+00,4.390554E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +2257993,fr,1,4.150000E+00,3.646850E+00,4.390554E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999090E+01,0.000000E+00 +2258004,fr,1,4.250000E+00,3.646850E+00,4.390554E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +2258064,fr,1,4.750000E+00,3.646850E+00,4.390554E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2258066,fr,1,4.750000E+00,3.646850E+00,4.390554E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2258436,fr,1,3.850000E+00,3.507590E+00,5.283447E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998922E+01,0.000000E+00 +2258896,fr,1,3.650000E+00,-2.979600E+00,4.395636E+01,1.500000E+01,Active Shallow Crust,2.400006E+02,5.801283E+01,0.000000E+00 +2259840,fr,1,3.550000E+00,2.534120E+00,5.205940E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +2259843,fr,1,3.550000E+00,2.534120E+00,5.205940E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799831E+01,0.000000E+00 +2259884,fr,1,3.850000E+00,2.534120E+00,5.205940E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998890E+01,-9.000000E+01 +2260320,fr,1,3.550000E+00,-2.348520E+00,4.731739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2260341,fr,1,3.650000E+00,-2.348520E+00,4.731739E+01,5.000000E+00,Active Shallow Crust,1.289006E+02,8.996354E+01,0.000000E+00 +2260344,fr,3,3.750000E+00,-2.348520E+00,4.731739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +2260347,fr,1,3.750000E+00,-2.348520E+00,4.731739E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.801728E+01,0.000000E+00 +2260356,fr,1,3.850000E+00,-2.348520E+00,4.731739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +2260364,fr,1,3.850000E+00,-2.348520E+00,4.731739E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,-9.000000E+01 +2260368,fr,2,3.950000E+00,-2.348520E+00,4.731739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998922E+01,0.000000E+00 +2260380,fr,2,4.050000E+00,-2.348520E+00,4.731739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +2260404,fr,1,4.250000E+00,-2.348520E+00,4.731739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +2260406,fr,1,4.250000E+00,-2.348520E+00,4.731739E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +2260454,fr,1,4.650000E+00,-2.348520E+00,4.731739E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +2260605,fr,1,5.850000E+00,-2.348520E+00,4.731739E+01,5.000000E+00,Active Shallow Crust,1.288665E+02,8.999151E+01,0.000000E+00 +2260800,fr,4,3.550000E+00,7.625950E+00,4.781105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999323E+01,0.000000E+00 +2260801,fr,1,3.550000E+00,7.625950E+00,4.781105E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999323E+01,0.000000E+00 +2260803,fr,3,3.550000E+00,7.625950E+00,4.781105E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799873E+01,0.000000E+00 +2260806,fr,1,3.550000E+00,7.625950E+00,4.781105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999315E+01,-9.000000E+01 +2260807,fr,1,3.550000E+00,7.625950E+00,4.781105E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999315E+01,-9.000000E+01 +2260812,fr,4,3.650000E+00,7.625950E+00,4.781105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998793E+01,0.000000E+00 +2260813,fr,4,3.650000E+00,7.625950E+00,4.781105E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998793E+01,0.000000E+00 +2260814,fr,1,3.650000E+00,7.625950E+00,4.781105E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998793E+01,0.000000E+00 +2260821,fr,1,3.650000E+00,7.625950E+00,4.781105E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.996355E+01,0.000000E+00 +2260824,fr,2,3.750000E+00,7.625950E+00,4.781105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +2260827,fr,1,3.750000E+00,7.625950E+00,4.781105E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.801779E+01,0.000000E+00 +2260830,fr,1,3.750000E+00,7.625950E+00,4.781105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,-9.000000E+01 +2260836,fr,2,3.850000E+00,7.625950E+00,4.781105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +2260837,fr,1,3.850000E+00,7.625950E+00,4.781105E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999041E+01,0.000000E+00 +2260843,fr,2,3.850000E+00,7.625950E+00,4.781105E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,-9.000000E+01 +2260848,fr,2,3.950000E+00,7.625950E+00,4.781105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999146E+01,0.000000E+00 +2260858,fr,1,3.950000E+00,7.625950E+00,4.781105E+01,1.500000E+01,Active Shallow Crust,1.289002E+02,8.999359E+01,0.000000E+00 +2260860,fr,1,4.050000E+00,7.625950E+00,4.781105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998857E+01,0.000000E+00 +2260872,fr,1,4.150000E+00,7.625950E+00,4.781105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2260875,fr,1,4.150000E+00,7.625950E+00,4.781105E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799740E+01,0.000000E+00 +2260884,fr,2,4.250000E+00,7.625950E+00,4.781105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999092E+01,0.000000E+00 +2260887,fr,1,4.250000E+00,7.625950E+00,4.781105E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799374E+01,0.000000E+00 +2260896,fr,1,4.350000E+00,7.625950E+00,4.781105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +2260897,fr,1,4.350000E+00,7.625950E+00,4.781105E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +2260908,fr,2,4.450000E+00,7.625950E+00,4.781105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +2260938,fr,1,4.650000E+00,7.625950E+00,4.781105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,-9.000000E+01 +2260944,fr,1,4.750000E+00,7.625950E+00,4.781105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +2260945,fr,1,4.750000E+00,7.625950E+00,4.781105E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +2260959,fr,1,4.850000E+00,7.625950E+00,4.781105E+01,5.000000E+00,Active Shallow Crust,2.400174E+02,5.800271E+01,0.000000E+00 +2260969,fr,1,4.950000E+00,7.625950E+00,4.781105E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +2261037,fr,1,5.450000E+00,7.625950E+00,4.781105E+01,5.000000E+00,Active Shallow Crust,1.288778E+02,8.998910E+01,0.000000E+00 +2261293,fr,1,3.650000E+00,5.616470E+00,5.155976E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +2261298,fr,1,3.650000E+00,5.616470E+00,5.155976E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,-9.000000E+01 +2261397,fr,1,4.450000E+00,5.616470E+00,5.155976E+01,5.000000E+00,Active Shallow Crust,1.288911E+02,8.999332E+01,0.000000E+00 +2261412,fr,1,4.650000E+00,5.616470E+00,5.155976E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +2261776,fr,1,3.650000E+00,-3.531290E+00,4.991376E+01,1.500000E+01,Active Shallow Crust,2.400010E+02,5.801332E+01,0.000000E+00 +2262240,fr,2,3.550000E+00,1.186230E+00,5.202334E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999069E+01,0.000000E+00 +2262252,fr,2,3.650000E+00,1.186230E+00,5.202334E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +2262312,fr,1,4.150000E+00,1.186230E+00,5.202334E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +2262396,fr,1,4.850000E+00,1.186230E+00,5.202334E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2262720,fr,2,3.550000E+00,1.664610E+00,4.439802E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998919E+01,0.000000E+00 +2262725,fr,1,3.550000E+00,1.664610E+00,4.439802E+01,2.750000E+01,Active Shallow Crust,2.400124E+02,5.799780E+01,0.000000E+00 +2262733,fr,1,3.650000E+00,1.664610E+00,4.439802E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +2262756,fr,1,3.850000E+00,1.664610E+00,4.439802E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +2263201,fr,1,3.550000E+00,5.429310E+00,5.129174E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998739E+01,0.000000E+00 +2263206,fr,1,3.550000E+00,5.429310E+00,5.129174E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998724E+01,-9.000000E+01 +2263224,fr,1,3.750000E+00,5.429310E+00,5.129174E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2263225,fr,1,3.750000E+00,5.429310E+00,5.129174E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2263239,fr,1,3.850000E+00,5.429310E+00,5.129174E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799776E+01,0.000000E+00 +2263248,fr,1,3.950000E+00,5.429310E+00,5.129174E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998806E+01,0.000000E+00 +2263269,fr,1,4.050000E+00,5.429310E+00,5.129174E+01,5.000000E+00,Active Shallow Crust,1.288895E+02,8.999468E+01,0.000000E+00 +2263284,fr,1,4.250000E+00,5.429310E+00,5.129174E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998873E+01,0.000000E+00 +2263315,fr,1,4.450000E+00,5.429310E+00,5.129174E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999094E+01,-9.000000E+01 +2263707,fr,1,3.750000E+00,-4.518610E+00,5.009595E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.801736E+01,0.000000E+00 +2264169,fr,1,3.550000E+00,-3.224800E-01,4.464176E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999372E+01,0.000000E+00 +2264184,fr,2,3.750000E+00,-3.224800E-01,4.464176E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2264280,fr,1,4.550000E+00,-3.224800E-01,4.464176E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2264643,fr,1,3.550000E+00,5.272180E+00,4.571165E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799817E+01,0.000000E+00 +2264646,fr,2,3.550000E+00,5.272180E+00,4.571165E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999287E+01,-9.000000E+01 +2264652,fr,1,3.650000E+00,5.272180E+00,4.571165E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998745E+01,0.000000E+00 +2264653,fr,1,3.650000E+00,5.272180E+00,4.571165E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998745E+01,0.000000E+00 +2264656,fr,1,3.650000E+00,5.272180E+00,4.571165E+01,1.500000E+01,Active Shallow Crust,2.400008E+02,5.801306E+01,0.000000E+00 +2264658,fr,1,3.650000E+00,5.272180E+00,4.571165E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998730E+01,-9.000000E+01 +2264661,fr,1,3.650000E+00,5.272180E+00,4.571165E+01,5.000000E+00,Active Shallow Crust,1.289013E+02,8.996351E+01,0.000000E+00 +2264668,fr,1,3.750000E+00,5.272180E+00,4.571165E+01,1.500000E+01,Active Shallow Crust,2.400073E+02,5.801808E+01,0.000000E+00 +2264671,fr,1,3.750000E+00,5.272180E+00,4.571165E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998869E+01,-9.000000E+01 +2264688,fr,2,3.950000E+00,5.272180E+00,4.571165E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999111E+01,0.000000E+00 +2264700,fr,1,4.050000E+00,5.272180E+00,4.571165E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998812E+01,0.000000E+00 +2264723,fr,1,4.150000E+00,5.272180E+00,4.571165E+01,2.750000E+01,Active Shallow Crust,1.288975E+02,8.999471E+01,0.000000E+00 +2264724,fr,1,4.250000E+00,5.272180E+00,4.571165E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +2264745,fr,1,4.350000E+00,5.272180E+00,4.571165E+01,5.000000E+00,Active Shallow Crust,1.288974E+02,8.998299E+01,0.000000E+00 +2264895,fr,1,5.650000E+00,5.272180E+00,4.571165E+01,5.000000E+00,Active Shallow Crust,2.400333E+02,5.800185E+01,0.000000E+00 +2265132,fr,1,3.650000E+00,-4.198830E+00,4.945151E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998831E+01,0.000000E+00 +2265133,fr,1,3.650000E+00,-4.198830E+00,4.945151E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998831E+01,0.000000E+00 +2265600,fr,3,3.550000E+00,3.224910E+00,5.015094E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +2265607,fr,1,3.550000E+00,3.224910E+00,5.015094E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,-9.000000E+01 +2265613,fr,1,3.650000E+00,3.224910E+00,5.015094E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999136E+01,0.000000E+00 +2265630,fr,1,3.750000E+00,3.224910E+00,5.015094E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,-9.000000E+01 +2265645,fr,1,3.850000E+00,3.224910E+00,5.015094E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.999429E+01,0.000000E+00 +2265655,fr,1,3.950000E+00,3.224910E+00,5.015094E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +2265660,fr,1,4.050000E+00,3.224910E+00,5.015094E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +2265805,fr,1,5.250000E+00,3.224910E+00,5.015094E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2266590,fr,1,3.750000E+00,2.205480E+00,5.256180E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,-9.000000E+01 +2266593,fr,1,3.750000E+00,2.205480E+00,5.256180E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.996739E+01,0.000000E+00 +2266597,fr,1,3.850000E+00,2.205480E+00,5.256180E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998915E+01,0.000000E+00 +2267041,fr,1,3.550000E+00,1.991180E+00,5.089006E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +2267052,fr,1,3.650000E+00,1.991180E+00,5.089006E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +2267053,fr,1,3.650000E+00,1.991180E+00,5.089006E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +2267054,fr,1,3.650000E+00,1.991180E+00,5.089006E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +2267064,fr,1,3.750000E+00,1.991180E+00,5.089006E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +2267077,fr,1,3.850000E+00,1.991180E+00,5.089006E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +2267124,fr,1,4.250000E+00,1.991180E+00,5.089006E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +2267129,fr,1,4.250000E+00,1.991180E+00,5.089006E+01,2.750000E+01,Active Shallow Crust,2.400087E+02,5.799418E+01,0.000000E+00 +2267136,fr,1,4.350000E+00,1.991180E+00,5.089006E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +2267217,fr,1,4.950000E+00,1.991180E+00,5.089006E+01,5.000000E+00,Active Shallow Crust,1.288880E+02,8.998975E+01,0.000000E+00 +2267520,fr,1,3.550000E+00,3.282700E+00,4.358613E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +2267528,fr,1,3.550000E+00,3.282700E+00,4.358613E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998891E+01,-9.000000E+01 +2267532,fr,1,3.650000E+00,3.282700E+00,4.358613E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2267547,fr,1,3.750000E+00,3.282700E+00,4.358613E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.801762E+01,0.000000E+00 +2267550,fr,1,3.750000E+00,3.282700E+00,4.358613E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999120E+01,-9.000000E+01 +2267560,fr,1,3.850000E+00,3.282700E+00,4.358613E+01,1.500000E+01,Active Shallow Crust,2.400108E+02,5.799728E+01,0.000000E+00 +2268040,fr,1,3.850000E+00,3.599440E+00,4.880439E+01,1.500000E+01,Active Shallow Crust,2.400108E+02,5.799813E+01,0.000000E+00 +2268091,fr,1,4.250000E+00,3.599440E+00,4.880439E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,-9.000000E+01 +2268120,fr,1,4.550000E+00,3.599440E+00,4.880439E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +2268123,fr,1,4.550000E+00,3.599440E+00,4.880439E+01,5.000000E+00,Active Shallow Crust,2.400100E+02,5.799756E+01,0.000000E+00 +2268481,fr,1,3.550000E+00,-4.459850E+00,4.806787E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999326E+01,0.000000E+00 +2268490,fr,1,3.550000E+00,-4.459850E+00,4.806787E+01,1.500000E+01,Active Shallow Crust,1.288959E+02,8.999326E+01,0.000000E+00 +2268495,fr,1,3.650000E+00,-4.459850E+00,4.806787E+01,5.000000E+00,Active Shallow Crust,2.400005E+02,5.801350E+01,0.000000E+00 +2268540,fr,2,4.050000E+00,-4.459850E+00,4.806787E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998863E+01,0.000000E+00 +2268593,fr,1,4.450000E+00,-4.459850E+00,4.806787E+01,2.750000E+01,Active Shallow Crust,2.400053E+02,5.799507E+01,0.000000E+00 +2268615,fr,1,4.650000E+00,-4.459850E+00,4.806787E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799422E+01,0.000000E+00 +2268988,fr,1,3.750000E+00,3.623780E+00,4.980710E+01,1.500000E+01,Active Shallow Crust,2.400090E+02,5.801754E+01,0.000000E+00 +2269044,fr,1,4.250000E+00,3.623780E+00,4.980710E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +2269069,fr,1,4.450000E+00,3.623780E+00,4.980710E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +2269176,fr,1,5.350000E+00,3.623780E+00,4.980710E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2269440,fr,1,3.550000E+00,3.353790E+00,4.608734E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +2269452,fr,1,3.650000E+00,3.353790E+00,4.608734E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +2269460,fr,1,3.650000E+00,3.353790E+00,4.608734E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999054E+01,-9.000000E+01 +2269467,fr,1,3.750000E+00,3.353790E+00,4.608734E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.801790E+01,0.000000E+00 +2269468,fr,1,3.750000E+00,3.353790E+00,4.608734E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.801790E+01,0.000000E+00 +2269470,fr,1,3.750000E+00,3.353790E+00,4.608734E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998876E+01,-9.000000E+01 +2269477,fr,1,3.850000E+00,3.353790E+00,4.608734E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2269500,fr,1,4.050000E+00,3.353790E+00,4.608734E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2269525,fr,1,4.250000E+00,3.353790E+00,4.608734E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +2269933,fr,1,3.650000E+00,-3.570130E+00,4.733803E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999087E+01,0.000000E+00 +2269968,fr,1,3.950000E+00,-3.570130E+00,4.733803E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998922E+01,0.000000E+00 +2269971,fr,1,3.950000E+00,-3.570130E+00,4.733803E+01,5.000000E+00,Active Shallow Crust,2.400201E+02,5.800461E+01,0.000000E+00 +2270004,fr,1,4.250000E+00,-3.570130E+00,4.733803E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +2270401,fr,1,3.550000E+00,4.647440E+00,5.106353E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998733E+01,0.000000E+00 +2270406,fr,1,3.550000E+00,4.647440E+00,5.106353E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998717E+01,-9.000000E+01 +2270412,fr,1,3.650000E+00,4.647440E+00,5.106353E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998870E+01,0.000000E+00 +2270436,fr,1,3.850000E+00,4.647440E+00,5.106353E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999103E+01,0.000000E+00 +2270445,fr,1,3.850000E+00,4.647440E+00,5.106353E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999327E+01,0.000000E+00 +2270460,fr,1,4.050000E+00,4.647440E+00,5.106353E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +2270482,fr,1,4.150000E+00,4.647440E+00,5.106353E+01,1.500000E+01,Active Shallow Crust,1.288959E+02,8.999364E+01,0.000000E+00 +2270553,fr,1,4.750000E+00,4.647440E+00,5.106353E+01,5.000000E+00,Active Shallow Crust,1.288873E+02,8.998804E+01,0.000000E+00 +2270702,fr,1,6.050000E+00,4.647440E+00,5.106353E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2271396,fr,1,3.850000E+00,3.951470E+00,4.275280E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +2271408,fr,1,3.950000E+00,3.951470E+00,4.275280E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +2271456,fr,1,4.350000E+00,3.951470E+00,4.275280E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2271853,fr,1,3.650000E+00,3.329000E-02,5.159186E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2271864,fr,1,3.750000E+00,3.329000E-02,5.159186E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2271886,fr,1,3.850000E+00,3.329000E-02,5.159186E+01,1.500000E+01,Active Shallow Crust,1.288951E+02,8.999372E+01,0.000000E+00 +2271888,fr,1,3.950000E+00,3.329000E-02,5.159186E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2271954,fr,1,4.450000E+00,3.329000E-02,5.159186E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +2272320,fr,1,3.550000E+00,5.298840E+00,4.077750E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999236E+01,0.000000E+00 +2272933,fr,1,4.650000E+00,-2.258760E+00,4.988015E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2273280,fr,1,3.550000E+00,2.348350E+00,4.737548E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2273304,fr,1,3.750000E+00,2.348350E+00,4.737548E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998915E+01,0.000000E+00 +2273313,fr,1,3.750000E+00,2.348350E+00,4.737548E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.996725E+01,0.000000E+00 +2273328,fr,2,3.950000E+00,2.348350E+00,4.737548E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +2273364,fr,1,4.250000E+00,2.348350E+00,4.737548E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +2273368,fr,1,4.250000E+00,2.348350E+00,4.737548E+01,1.500000E+01,Active Shallow Crust,2.400078E+02,5.799393E+01,0.000000E+00 +2273388,fr,1,4.450000E+00,2.348350E+00,4.737548E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +2273405,fr,1,4.550000E+00,2.348350E+00,4.737548E+01,2.750000E+01,Active Shallow Crust,2.400095E+02,5.799723E+01,0.000000E+00 +2273772,fr,1,3.650000E+00,7.311240E+00,4.917102E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998825E+01,0.000000E+00 +2273782,fr,1,3.650000E+00,7.311240E+00,4.917102E+01,1.500000E+01,Active Shallow Crust,1.289001E+02,8.996358E+01,0.000000E+00 +2273784,fr,1,3.750000E+00,7.311240E+00,4.917102E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +2273785,fr,1,3.750000E+00,7.311240E+00,4.917102E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +2273821,fr,1,4.050000E+00,7.311240E+00,4.917102E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +2273859,fr,1,4.350000E+00,7.311240E+00,4.917102E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.799602E+01,0.000000E+00 +2273898,fr,1,4.650000E+00,7.311240E+00,4.917102E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999060E+01,-9.000000E+01 +2274243,fr,1,3.550000E+00,2.362280E+00,5.180012E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.799804E+01,0.000000E+00 +2274257,fr,1,3.650000E+00,2.362280E+00,5.180012E+01,2.750000E+01,Active Shallow Crust,2.400019E+02,5.801277E+01,0.000000E+00 +2274267,fr,1,3.750000E+00,2.362280E+00,5.180012E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.801811E+01,0.000000E+00 +2274398,fr,1,4.850000E+00,2.362280E+00,5.180012E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2274744,fr,1,3.750000E+00,4.111560E+00,4.304293E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998829E+01,0.000000E+00 +2274801,fr,1,4.150000E+00,4.111560E+00,4.304293E+01,5.000000E+00,Active Shallow Crust,1.288975E+02,8.999446E+01,0.000000E+00 +2274840,fr,1,4.550000E+00,4.111560E+00,4.304293E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +2275225,fr,1,3.750000E+00,1.067340E+00,4.435210E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2275260,fr,1,4.050000E+00,1.067340E+00,4.435210E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +2276160,fr,2,3.550000E+00,7.860920E+00,4.693663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999312E+01,0.000000E+00 +2276161,fr,1,3.550000E+00,7.860920E+00,4.693663E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999312E+01,0.000000E+00 +2276169,fr,1,3.550000E+00,7.860920E+00,4.693663E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999656E+01,0.000000E+00 +2276172,fr,4,3.650000E+00,7.860920E+00,4.693663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998772E+01,0.000000E+00 +2276175,fr,2,3.650000E+00,7.860920E+00,4.693663E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801380E+01,0.000000E+00 +2276184,fr,3,3.750000E+00,7.860920E+00,4.693663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998906E+01,0.000000E+00 +2276185,fr,2,3.750000E+00,7.860920E+00,4.693663E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998906E+01,0.000000E+00 +2276186,fr,1,3.750000E+00,7.860920E+00,4.693663E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998906E+01,0.000000E+00 +2276190,fr,1,3.750000E+00,7.860920E+00,4.693663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998894E+01,-9.000000E+01 +2276193,fr,1,3.750000E+00,7.860920E+00,4.693663E+01,5.000000E+00,Active Shallow Crust,1.288975E+02,8.996693E+01,0.000000E+00 +2276196,fr,1,3.850000E+00,7.860920E+00,4.693663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +2276200,fr,1,3.850000E+00,7.860920E+00,4.693663E+01,1.500000E+01,Active Shallow Crust,2.400114E+02,5.799748E+01,0.000000E+00 +2276211,fr,2,3.950000E+00,7.860920E+00,4.693663E+01,5.000000E+00,Active Shallow Crust,2.400201E+02,5.800464E+01,0.000000E+00 +2276214,fr,1,3.950000E+00,7.860920E+00,4.693663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999121E+01,-9.000000E+01 +2276220,fr,1,4.050000E+00,7.860920E+00,4.693663E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998838E+01,0.000000E+00 +2276229,fr,1,4.050000E+00,7.860920E+00,4.693663E+01,5.000000E+00,Active Shallow Crust,1.288900E+02,8.999419E+01,0.000000E+00 +2276246,fr,1,4.250000E+00,7.860920E+00,4.693663E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +2276247,fr,1,4.250000E+00,7.860920E+00,4.693663E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799369E+01,0.000000E+00 +2276260,fr,1,4.350000E+00,7.860920E+00,4.693663E+01,1.500000E+01,Active Shallow Crust,2.400090E+02,5.799579E+01,0.000000E+00 +2276265,fr,1,4.350000E+00,7.860920E+00,4.693663E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.998254E+01,0.000000E+00 +2276270,fr,1,4.450000E+00,7.860920E+00,4.693663E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2276271,fr,1,4.450000E+00,7.860920E+00,4.693663E+01,5.000000E+00,Active Shallow Crust,2.400049E+02,5.799467E+01,0.000000E+00 +2276279,fr,1,4.450000E+00,7.860920E+00,4.693663E+01,2.750000E+01,Active Shallow Crust,1.288920E+02,8.999390E+01,0.000000E+00 +2276281,fr,1,4.550000E+00,7.860920E+00,4.693663E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +2276308,fr,1,4.750000E+00,7.860920E+00,4.693663E+01,1.500000E+01,Active Shallow Crust,2.400073E+02,5.800471E+01,0.000000E+00 +2276318,fr,1,4.850000E+00,7.860920E+00,4.693663E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +2276331,fr,1,4.950000E+00,7.860920E+00,4.693663E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.800455E+01,0.000000E+00 +2276367,fr,1,5.250000E+00,7.860920E+00,4.693663E+01,5.000000E+00,Active Shallow Crust,2.400259E+02,5.800019E+01,0.000000E+00 +2276640,fr,1,3.550000E+00,1.519950E+00,4.839028E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +2276642,fr,1,3.550000E+00,1.519950E+00,4.839028E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +2276652,fr,2,3.650000E+00,1.519950E+00,4.839028E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +2276665,fr,1,3.750000E+00,1.519950E+00,4.839028E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +2277132,fr,3,3.650000E+00,3.879250E+00,4.499333E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +2277135,fr,1,3.650000E+00,3.879250E+00,4.499333E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801303E+01,0.000000E+00 +2277144,fr,1,3.750000E+00,3.879250E+00,4.499333E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998867E+01,0.000000E+00 +2277157,fr,1,3.850000E+00,3.879250E+00,4.499333E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2277166,fr,1,3.850000E+00,3.879250E+00,4.499333E+01,1.500000E+01,Active Shallow Crust,1.288958E+02,8.999369E+01,0.000000E+00 +2277168,fr,2,3.950000E+00,3.879250E+00,4.499333E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +2277176,fr,1,3.950000E+00,3.879250E+00,4.499333E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999090E+01,-9.000000E+01 +2277182,fr,1,4.050000E+00,3.879250E+00,4.499333E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2277229,fr,1,4.450000E+00,3.879250E+00,4.499333E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2277294,fr,1,4.950000E+00,3.879250E+00,4.499333E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,-9.000000E+01 +2277601,fr,1,3.550000E+00,3.820200E-01,5.108791E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2277612,fr,1,3.650000E+00,3.820200E-01,5.108791E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +2277663,fr,1,4.050000E+00,3.820200E-01,5.108791E+01,5.000000E+00,Active Shallow Crust,2.400068E+02,5.800595E+01,0.000000E+00 +2277672,fr,1,4.150000E+00,3.820200E-01,5.108791E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +2277760,fr,1,4.850000E+00,3.820200E-01,5.108791E+01,1.500000E+01,Active Shallow Crust,2.400192E+02,5.800270E+01,0.000000E+00 +2278080,fr,2,3.550000E+00,5.058420E+00,4.502841E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999287E+01,0.000000E+00 +2278083,fr,1,3.550000E+00,5.058420E+00,4.502841E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799851E+01,0.000000E+00 +2278086,fr,1,3.550000E+00,5.058420E+00,4.502841E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999279E+01,-9.000000E+01 +2278092,fr,1,3.650000E+00,5.058420E+00,4.502841E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998730E+01,0.000000E+00 +2278093,fr,1,3.650000E+00,5.058420E+00,4.502841E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998730E+01,0.000000E+00 +2278102,fr,1,3.650000E+00,5.058420E+00,4.502841E+01,1.500000E+01,Active Shallow Crust,1.289001E+02,8.996349E+01,0.000000E+00 +2278104,fr,1,3.750000E+00,5.058420E+00,4.502841E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998868E+01,0.000000E+00 +2278110,fr,1,3.750000E+00,5.058420E+00,4.502841E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998855E+01,-9.000000E+01 +2278116,fr,2,3.850000E+00,5.058420E+00,4.502841E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2278117,fr,1,3.850000E+00,5.058420E+00,4.502841E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2278119,fr,1,3.850000E+00,5.058420E+00,4.502841E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799738E+01,0.000000E+00 +2278128,fr,4,3.950000E+00,5.058420E+00,4.502841E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +2278174,fr,1,4.250000E+00,5.058420E+00,4.502841E+01,1.500000E+01,Active Shallow Crust,1.288946E+02,8.998089E+01,0.000000E+00 +2278181,fr,1,4.350000E+00,5.058420E+00,4.502841E+01,2.750000E+01,Active Shallow Crust,2.400076E+02,5.799617E+01,0.000000E+00 +2278190,fr,1,4.450000E+00,5.058420E+00,4.502841E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2278620,fr,1,4.050000E+00,-2.989760E+00,4.643822E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2279040,fr,2,3.550000E+00,8.686370E+00,4.843560E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998662E+01,0.000000E+00 +2279041,fr,1,3.550000E+00,8.686370E+00,4.843560E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998662E+01,0.000000E+00 +2279044,fr,1,3.550000E+00,8.686370E+00,4.843560E+01,1.500000E+01,Active Shallow Crust,2.400127E+02,5.799851E+01,0.000000E+00 +2279052,fr,2,3.650000E+00,8.686370E+00,4.843560E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +2279058,fr,1,3.650000E+00,8.686370E+00,4.843560E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998794E+01,-9.000000E+01 +2279064,fr,1,3.750000E+00,8.686370E+00,4.843560E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +2279076,fr,2,3.850000E+00,8.686370E+00,4.843560E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +2279077,fr,1,3.850000E+00,8.686370E+00,4.843560E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +2279088,fr,1,3.950000E+00,8.686370E+00,4.843560E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999155E+01,0.000000E+00 +2279103,fr,1,4.050000E+00,8.686370E+00,4.843560E+01,5.000000E+00,Active Shallow Crust,2.400060E+02,5.800740E+01,0.000000E+00 +2279105,fr,1,4.050000E+00,8.686370E+00,4.843560E+01,2.750000E+01,Active Shallow Crust,2.400060E+02,5.800737E+01,0.000000E+00 +2279150,fr,1,4.450000E+00,8.686370E+00,4.843560E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +2279160,fr,1,4.550000E+00,8.686370E+00,4.843560E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999154E+01,0.000000E+00 +2279521,fr,1,3.550000E+00,7.254040E+00,4.878610E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998671E+01,0.000000E+00 +2279526,fr,1,3.550000E+00,7.254040E+00,4.878610E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999328E+01,-9.000000E+01 +2279595,fr,1,4.150000E+00,7.254040E+00,4.878610E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.799776E+01,0.000000E+00 +2279631,fr,1,4.450000E+00,7.254040E+00,4.878610E+01,5.000000E+00,Active Shallow Crust,2.400057E+02,5.799492E+01,0.000000E+00 +2279635,fr,1,4.450000E+00,7.254040E+00,4.878610E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,-9.000000E+01 +2279638,fr,1,4.450000E+00,7.254040E+00,4.878610E+01,1.500000E+01,Active Shallow Crust,1.288917E+02,8.999411E+01,0.000000E+00 +2279649,fr,1,4.550000E+00,7.254040E+00,4.878610E+01,5.000000E+00,Active Shallow Crust,1.288934E+02,8.998577E+01,0.000000E+00 +2280480,fr,5,3.550000E+00,2.386160E+00,4.224851E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998880E+01,0.000000E+00 +2280483,fr,2,3.550000E+00,2.386160E+00,4.224851E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799822E+01,0.000000E+00 +2280486,fr,1,3.550000E+00,2.386160E+00,4.224851E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998867E+01,-9.000000E+01 +2280490,fr,1,3.550000E+00,2.386160E+00,4.224851E+01,1.500000E+01,Active Shallow Crust,1.288962E+02,8.999440E+01,0.000000E+00 +2280492,fr,3,3.650000E+00,2.386160E+00,4.224851E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2280493,fr,2,3.650000E+00,2.386160E+00,4.224851E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2280494,fr,1,3.650000E+00,2.386160E+00,4.224851E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2280499,fr,2,3.650000E+00,2.386160E+00,4.224851E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +2280504,fr,3,3.750000E+00,2.386160E+00,4.224851E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +2280505,fr,2,3.750000E+00,2.386160E+00,4.224851E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +2280515,fr,1,3.750000E+00,2.386160E+00,4.224851E+01,2.750000E+01,Active Shallow Crust,1.288969E+02,8.996741E+01,0.000000E+00 +2280516,fr,1,3.850000E+00,2.386160E+00,4.224851E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +2280519,fr,1,3.850000E+00,2.386160E+00,4.224851E+01,5.000000E+00,Active Shallow Crust,2.400102E+02,5.799771E+01,0.000000E+00 +2280529,fr,1,3.950000E+00,2.386160E+00,4.224851E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +2280534,fr,1,3.950000E+00,2.386160E+00,4.224851E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999047E+01,-9.000000E+01 +2280541,fr,1,4.050000E+00,2.386160E+00,4.224851E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +2280543,fr,1,4.050000E+00,2.386160E+00,4.224851E+01,5.000000E+00,Active Shallow Crust,2.400052E+02,5.800576E+01,0.000000E+00 +2280555,fr,1,4.150000E+00,2.386160E+00,4.224851E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.799721E+01,0.000000E+00 +2280565,fr,1,4.250000E+00,2.386160E+00,4.224851E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2280579,fr,1,4.350000E+00,2.386160E+00,4.224851E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.799586E+01,0.000000E+00 +2280580,fr,1,4.350000E+00,2.386160E+00,4.224851E+01,1.500000E+01,Active Shallow Crust,2.400077E+02,5.799586E+01,0.000000E+00 +2280588,fr,1,4.450000E+00,2.386160E+00,4.224851E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +2280595,fr,1,4.450000E+00,2.386160E+00,4.224851E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,-9.000000E+01 +2280603,fr,1,4.550000E+00,2.386160E+00,4.224851E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799721E+01,0.000000E+00 +2280613,fr,2,4.650000E+00,2.386160E+00,4.224851E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +2280637,fr,1,4.850000E+00,2.386160E+00,4.224851E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2280648,fr,1,4.950000E+00,2.386160E+00,4.224851E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +2280663,fr,1,5.050000E+00,2.386160E+00,4.224851E+01,5.000000E+00,Active Shallow Crust,2.400202E+02,5.799723E+01,0.000000E+00 +2280720,fr,1,5.550000E+00,2.386160E+00,4.224851E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +2281104,fr,1,4.750000E+00,2.326580E+00,5.307136E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2281440,fr,3,3.550000E+00,6.500680E+00,4.481896E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999284E+01,0.000000E+00 +2281441,fr,2,3.550000E+00,6.500680E+00,4.481896E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999284E+01,0.000000E+00 +2281452,fr,4,3.650000E+00,6.500680E+00,4.481896E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998725E+01,0.000000E+00 +2281453,fr,1,3.650000E+00,6.500680E+00,4.481896E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998725E+01,0.000000E+00 +2281455,fr,1,3.650000E+00,6.500680E+00,4.481896E+01,5.000000E+00,Active Shallow Crust,2.400003E+02,5.801374E+01,0.000000E+00 +2281460,fr,1,3.650000E+00,6.500680E+00,4.481896E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998710E+01,-9.000000E+01 +2281476,fr,1,3.850000E+00,6.500680E+00,4.481896E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2281479,fr,1,3.850000E+00,6.500680E+00,4.481896E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799856E+01,0.000000E+00 +2281488,fr,2,3.950000E+00,6.500680E+00,4.481896E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +2281500,fr,1,4.050000E+00,6.500680E+00,4.481896E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999196E+01,0.000000E+00 +2281501,fr,1,4.050000E+00,6.500680E+00,4.481896E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999196E+01,0.000000E+00 +2281502,fr,1,4.050000E+00,6.500680E+00,4.481896E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999196E+01,0.000000E+00 +2281518,fr,1,4.150000E+00,6.500680E+00,4.481896E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998912E+01,-9.000000E+01 +2281524,fr,1,4.250000E+00,6.500680E+00,4.481896E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +2281548,fr,1,4.450000E+00,6.500680E+00,4.481896E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2281549,fr,1,4.450000E+00,6.500680E+00,4.481896E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2281573,fr,1,4.650000E+00,6.500680E+00,4.481896E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +2281598,fr,1,4.850000E+00,6.500680E+00,4.481896E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +2281669,fr,1,5.450000E+00,6.500680E+00,4.481896E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +2281692,fr,1,5.650000E+00,6.500680E+00,4.481896E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +2281932,fr,1,3.650000E+00,5.104370E+00,4.927041E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998827E+01,0.000000E+00 +2282400,fr,2,3.550000E+00,-1.303340E+00,4.303739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +2282402,fr,1,3.550000E+00,-1.303340E+00,4.303739E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +2282403,fr,1,3.550000E+00,-1.303340E+00,4.303739E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799808E+01,0.000000E+00 +2282404,fr,1,3.550000E+00,-1.303340E+00,4.303739E+01,1.500000E+01,Active Shallow Crust,2.400119E+02,5.799808E+01,0.000000E+00 +2282406,fr,1,3.550000E+00,-1.303340E+00,4.303739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,-9.000000E+01 +2282407,fr,1,3.550000E+00,-1.303340E+00,4.303739E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999068E+01,-9.000000E+01 +2282412,fr,3,3.650000E+00,-1.303340E+00,4.303739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +2282413,fr,1,3.650000E+00,-1.303340E+00,4.303739E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +2282424,fr,3,3.750000E+00,-1.303340E+00,4.303739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2282426,fr,1,3.750000E+00,-1.303340E+00,4.303739E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2282427,fr,2,3.750000E+00,-1.303340E+00,4.303739E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.801758E+01,0.000000E+00 +2282430,fr,1,3.750000E+00,-1.303340E+00,4.303739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,-9.000000E+01 +2282433,fr,1,3.750000E+00,-1.303340E+00,4.303739E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.996743E+01,0.000000E+00 +2282436,fr,3,3.850000E+00,-1.303340E+00,4.303739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +2282437,fr,1,3.850000E+00,-1.303340E+00,4.303739E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +2282438,fr,1,3.850000E+00,-1.303340E+00,4.303739E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +2282445,fr,1,3.850000E+00,-1.303340E+00,4.303739E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999413E+01,0.000000E+00 +2282446,fr,1,3.850000E+00,-1.303340E+00,4.303739E+01,1.500000E+01,Active Shallow Crust,1.288959E+02,8.999413E+01,0.000000E+00 +2282448,fr,1,3.950000E+00,-1.303340E+00,4.303739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +2282449,fr,2,3.950000E+00,-1.303340E+00,4.303739E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +2282451,fr,1,3.950000E+00,-1.303340E+00,4.303739E+01,5.000000E+00,Active Shallow Crust,2.400191E+02,5.800491E+01,0.000000E+00 +2282460,fr,3,4.050000E+00,-1.303340E+00,4.303739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +2282464,fr,1,4.050000E+00,-1.303340E+00,4.303739E+01,1.500000E+01,Active Shallow Crust,2.400054E+02,5.800556E+01,0.000000E+00 +2282473,fr,2,4.150000E+00,-1.303340E+00,4.303739E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +2282475,fr,1,4.150000E+00,-1.303340E+00,4.303739E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799726E+01,0.000000E+00 +2282477,fr,1,4.150000E+00,-1.303340E+00,4.303739E+01,2.750000E+01,Active Shallow Crust,2.400078E+02,5.799724E+01,0.000000E+00 +2282487,fr,1,4.250000E+00,-1.303340E+00,4.303739E+01,5.000000E+00,Active Shallow Crust,2.400067E+02,5.799403E+01,0.000000E+00 +2282496,fr,1,4.350000E+00,-1.303340E+00,4.303739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +2282508,fr,1,4.450000E+00,-1.303340E+00,4.303739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2282509,fr,1,4.450000E+00,-1.303340E+00,4.303739E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2282518,fr,1,4.450000E+00,-1.303340E+00,4.303739E+01,1.500000E+01,Active Shallow Crust,1.288930E+02,8.999346E+01,0.000000E+00 +2282526,fr,2,4.550000E+00,-1.303340E+00,4.303739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +2282536,fr,1,4.650000E+00,-1.303340E+00,4.303739E+01,1.500000E+01,Active Shallow Crust,2.400098E+02,5.799397E+01,0.000000E+00 +2282538,fr,2,4.650000E+00,-1.303340E+00,4.303739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +2282544,fr,1,4.750000E+00,-1.303340E+00,4.303739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2282557,fr,1,4.850000E+00,-1.303340E+00,4.303739E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2282559,fr,1,4.850000E+00,-1.303340E+00,4.303739E+01,5.000000E+00,Active Shallow Crust,2.400158E+02,5.800207E+01,0.000000E+00 +2282592,fr,1,5.150000E+00,-1.303340E+00,4.303739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2282593,fr,1,5.150000E+00,-1.303340E+00,4.303739E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2282604,fr,1,5.250000E+00,-1.303340E+00,4.303739E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2282880,fr,2,3.550000E+00,7.235670E+00,4.966384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998695E+01,0.000000E+00 +2282893,fr,1,3.650000E+00,7.235670E+00,4.966384E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998837E+01,0.000000E+00 +2282904,fr,1,3.750000E+00,7.235670E+00,4.966384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +2282916,fr,1,3.850000E+00,7.235670E+00,4.966384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +2282919,fr,2,3.850000E+00,7.235670E+00,4.966384E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799846E+01,0.000000E+00 +2282929,fr,1,3.950000E+00,7.235670E+00,4.966384E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999176E+01,0.000000E+00 +2283011,fr,1,4.550000E+00,7.235670E+00,4.966384E+01,2.750000E+01,Active Shallow Crust,1.288931E+02,8.998582E+01,0.000000E+00 +2283962,fr,1,4.550000E+00,-6.138440E+00,4.898230E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +2284320,fr,5,3.550000E+00,7.014420E+00,4.658116E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999307E+01,0.000000E+00 +2284321,fr,2,3.550000E+00,7.014420E+00,4.658116E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999307E+01,0.000000E+00 +2284322,fr,1,3.550000E+00,7.014420E+00,4.658116E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999307E+01,0.000000E+00 +2284323,fr,5,3.550000E+00,7.014420E+00,4.658116E+01,5.000000E+00,Active Shallow Crust,2.400126E+02,5.799767E+01,0.000000E+00 +2284324,fr,1,3.550000E+00,7.014420E+00,4.658116E+01,1.500000E+01,Active Shallow Crust,2.400126E+02,5.799767E+01,0.000000E+00 +2284326,fr,1,3.550000E+00,7.014420E+00,4.658116E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999299E+01,-9.000000E+01 +2284329,fr,1,3.550000E+00,7.014420E+00,4.658116E+01,5.000000E+00,Active Shallow Crust,1.288975E+02,8.999307E+01,0.000000E+00 +2284332,fr,4,3.650000E+00,7.014420E+00,4.658116E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998765E+01,0.000000E+00 +2284333,fr,3,3.650000E+00,7.014420E+00,4.658116E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998765E+01,0.000000E+00 +2284335,fr,1,3.650000E+00,7.014420E+00,4.658116E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801310E+01,0.000000E+00 +2284336,fr,1,3.650000E+00,7.014420E+00,4.658116E+01,1.500000E+01,Active Shallow Crust,2.400012E+02,5.801310E+01,0.000000E+00 +2284338,fr,2,3.650000E+00,7.014420E+00,4.658116E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998750E+01,-9.000000E+01 +2284342,fr,1,3.650000E+00,7.014420E+00,4.658116E+01,1.500000E+01,Active Shallow Crust,1.288998E+02,8.996352E+01,0.000000E+00 +2284344,fr,8,3.750000E+00,7.014420E+00,4.658116E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998899E+01,0.000000E+00 +2284345,fr,1,3.750000E+00,7.014420E+00,4.658116E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998899E+01,0.000000E+00 +2284346,fr,1,3.750000E+00,7.014420E+00,4.658116E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998899E+01,0.000000E+00 +2284347,fr,1,3.750000E+00,7.014420E+00,4.658116E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.801741E+01,0.000000E+00 +2284348,fr,1,3.750000E+00,7.014420E+00,4.658116E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.801741E+01,0.000000E+00 +2284350,fr,2,3.750000E+00,7.014420E+00,4.658116E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998886E+01,-9.000000E+01 +2284351,fr,2,3.750000E+00,7.014420E+00,4.658116E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998886E+01,-9.000000E+01 +2284354,fr,1,3.750000E+00,7.014420E+00,4.658116E+01,1.500000E+01,Active Shallow Crust,1.288972E+02,8.996749E+01,0.000000E+00 +2284355,fr,1,3.750000E+00,7.014420E+00,4.658116E+01,2.750000E+01,Active Shallow Crust,1.288972E+02,8.996749E+01,0.000000E+00 +2284356,fr,1,3.850000E+00,7.014420E+00,4.658116E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +2284359,fr,2,3.850000E+00,7.014420E+00,4.658116E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799752E+01,0.000000E+00 +2284360,fr,1,3.850000E+00,7.014420E+00,4.658116E+01,1.500000E+01,Active Shallow Crust,2.400112E+02,5.799752E+01,0.000000E+00 +2284368,fr,2,3.950000E+00,7.014420E+00,4.658116E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +2284369,fr,3,3.950000E+00,7.014420E+00,4.658116E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +2284371,fr,2,3.950000E+00,7.014420E+00,4.658116E+01,5.000000E+00,Active Shallow Crust,2.400203E+02,5.800468E+01,0.000000E+00 +2284372,fr,1,3.950000E+00,7.014420E+00,4.658116E+01,1.500000E+01,Active Shallow Crust,2.400203E+02,5.800468E+01,0.000000E+00 +2284378,fr,1,3.950000E+00,7.014420E+00,4.658116E+01,1.500000E+01,Active Shallow Crust,1.289000E+02,8.999344E+01,0.000000E+00 +2284380,fr,2,4.050000E+00,7.014420E+00,4.658116E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998830E+01,0.000000E+00 +2284386,fr,2,4.050000E+00,7.014420E+00,4.658116E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998817E+01,-9.000000E+01 +2284389,fr,2,4.050000E+00,7.014420E+00,4.658116E+01,5.000000E+00,Active Shallow Crust,1.288907E+02,8.999416E+01,0.000000E+00 +2284390,fr,1,4.050000E+00,7.014420E+00,4.658116E+01,1.500000E+01,Active Shallow Crust,1.288907E+02,8.999416E+01,0.000000E+00 +2284392,fr,3,4.150000E+00,7.014420E+00,4.658116E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +2284393,fr,1,4.150000E+00,7.014420E+00,4.658116E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +2284397,fr,2,4.150000E+00,7.014420E+00,4.658116E+01,2.750000E+01,Active Shallow Crust,2.400091E+02,5.799739E+01,0.000000E+00 +2284404,fr,2,4.250000E+00,7.014420E+00,4.658116E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +2284405,fr,2,4.250000E+00,7.014420E+00,4.658116E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +2284410,fr,1,4.250000E+00,7.014420E+00,4.658116E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999060E+01,-9.000000E+01 +2284416,fr,2,4.350000E+00,7.014420E+00,4.658116E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998896E+01,0.000000E+00 +2284428,fr,2,4.450000E+00,7.014420E+00,4.658116E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2284429,fr,1,4.450000E+00,7.014420E+00,4.658116E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2284438,fr,1,4.450000E+00,7.014420E+00,4.658116E+01,1.500000E+01,Active Shallow Crust,1.288920E+02,8.999385E+01,0.000000E+00 +2284440,fr,2,4.550000E+00,7.014420E+00,4.658116E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +2284443,fr,2,4.550000E+00,7.014420E+00,4.658116E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.799754E+01,0.000000E+00 +2284458,fr,1,4.650000E+00,7.014420E+00,4.658116E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,-9.000000E+01 +2284464,fr,1,4.750000E+00,7.014420E+00,4.658116E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +2284492,fr,1,4.950000E+00,7.014420E+00,4.658116E+01,1.500000E+01,Active Shallow Crust,2.400118E+02,5.800445E+01,0.000000E+00 +2284500,fr,1,5.050000E+00,7.014420E+00,4.658116E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2284537,fr,1,5.350000E+00,7.014420E+00,4.658116E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +2284830,fr,1,3.750000E+00,5.181650E+00,4.292296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998814E+01,-9.000000E+01 +2284862,fr,1,4.050000E+00,5.181650E+00,4.292296E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999169E+01,0.000000E+00 +2284932,fr,1,4.650000E+00,5.181650E+00,4.292296E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +2285280,fr,2,3.550000E+00,-5.197500E-01,4.270747E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2285342,fr,1,4.050000E+00,-5.197500E-01,4.270747E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2285399,fr,1,4.450000E+00,-5.197500E-01,4.270747E+01,2.750000E+01,Active Shallow Crust,1.288929E+02,8.999376E+01,0.000000E+00 +2285784,fr,1,3.750000E+00,5.600000E-04,4.262331E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +2285832,fr,1,4.150000E+00,5.600000E-04,4.262331E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +2285923,fr,1,4.850000E+00,5.600000E-04,4.262331E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999000E+01,-9.000000E+01 +2285953,fr,1,5.150000E+00,5.600000E-04,4.262331E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +2285967,fr,1,5.250000E+00,5.599991E-04,4.262331E+01,5.000000E+00,Active Shallow Crust,2.400182E+02,5.799984E+01,0.000000E+00 +2286253,fr,1,3.650000E+00,3.590320E+00,4.243254E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +2286257,fr,1,3.650000E+00,3.590320E+00,4.243254E+01,2.750000E+01,Active Shallow Crust,2.400010E+02,5.801309E+01,0.000000E+00 +2286300,fr,1,4.050000E+00,3.590320E+00,4.243254E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +2286312,fr,1,4.150000E+00,3.590320E+00,4.243254E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +2286316,fr,1,4.150000E+00,3.590320E+00,4.243254E+01,1.500000E+01,Active Shallow Crust,2.400076E+02,5.799707E+01,0.000000E+00 +2286720,fr,1,3.550000E+00,-2.485380E+00,4.906069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +2286721,fr,1,3.550000E+00,-2.485380E+00,4.906069E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +2286723,fr,1,3.550000E+00,-2.485380E+00,4.906069E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799824E+01,0.000000E+00 +2286744,fr,1,3.750000E+00,-2.485380E+00,4.906069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +2286754,fr,1,3.750000E+00,-2.485380E+00,4.906069E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.996730E+01,0.000000E+00 +2286768,fr,1,3.950000E+00,-2.485380E+00,4.906069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +2286780,fr,1,4.050000E+00,-2.485380E+00,4.906069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999071E+01,0.000000E+00 +2286804,fr,1,4.250000E+00,-2.485380E+00,4.906069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +2286828,fr,1,4.450000E+00,-2.485380E+00,4.906069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +2286830,fr,1,4.450000E+00,-2.485380E+00,4.906069E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +2286834,fr,1,4.450000E+00,-2.485380E+00,4.906069E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999051E+01,-9.000000E+01 +2286867,fr,1,4.750000E+00,-2.485380E+00,4.906069E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.800472E+01,0.000000E+00 +2286871,fr,1,4.750000E+00,-2.485380E+00,4.906069E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,-9.000000E+01 +2287200,fr,2,3.550000E+00,7.742730E+00,5.096086E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998730E+01,0.000000E+00 +2287203,fr,1,3.550000E+00,7.742730E+00,5.096086E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799874E+01,0.000000E+00 +2287226,fr,1,3.750000E+00,7.742730E+00,5.096086E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2287227,fr,1,3.750000E+00,7.742730E+00,5.096086E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.801772E+01,0.000000E+00 +2287297,fr,1,4.350000E+00,7.742730E+00,5.096086E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2287716,fr,1,3.850000E+00,2.152200E+00,5.281472E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +2288161,fr,1,3.550000E+00,-1.893660E+00,4.380131E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +2288181,fr,1,3.650000E+00,-1.893660E+00,4.380131E+01,5.000000E+00,Active Shallow Crust,1.289010E+02,8.996347E+01,0.000000E+00 +2288226,fr,1,4.050000E+00,-1.893660E+00,4.380131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +2288640,fr,1,3.550000E+00,6.134600E-01,4.860607E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2288677,fr,1,3.850000E+00,6.134600E-01,4.860607E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2288679,fr,1,3.850000E+00,6.134600E-01,4.860607E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799786E+01,0.000000E+00 +2288689,fr,1,3.950000E+00,6.134600E-01,4.860607E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2288712,fr,2,4.150000E+00,6.134600E-01,4.860607E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2288749,fr,1,4.450000E+00,6.134600E-01,4.860607E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2288767,fr,1,4.550000E+00,6.134600E-01,4.860607E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,-9.000000E+01 +2289120,fr,3,3.550000E+00,5.169200E-01,4.253722E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +2289123,fr,2,3.550000E+00,5.169200E-01,4.253722E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799823E+01,0.000000E+00 +2289124,fr,1,3.550000E+00,5.169200E-01,4.253722E+01,1.500000E+01,Active Shallow Crust,2.400118E+02,5.799823E+01,0.000000E+00 +2289126,fr,2,3.550000E+00,5.169200E-01,4.253722E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,-9.000000E+01 +2289128,fr,1,3.550000E+00,5.169200E-01,4.253722E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998966E+01,-9.000000E+01 +2289132,fr,1,3.650000E+00,5.169200E-01,4.253722E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2289133,fr,2,3.650000E+00,5.169200E-01,4.253722E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2289134,fr,1,3.650000E+00,5.169200E-01,4.253722E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2289135,fr,1,3.650000E+00,5.169200E-01,4.253722E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801288E+01,0.000000E+00 +2289136,fr,1,3.650000E+00,5.169200E-01,4.253722E+01,1.500000E+01,Active Shallow Crust,2.400007E+02,5.801288E+01,0.000000E+00 +2289141,fr,2,3.650000E+00,5.169200E-01,4.253722E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.996352E+01,0.000000E+00 +2289144,fr,1,3.750000E+00,5.169200E-01,4.253722E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +2289145,fr,1,3.750000E+00,5.169200E-01,4.253722E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +2289146,fr,1,3.750000E+00,5.169200E-01,4.253722E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +2289157,fr,1,3.850000E+00,5.169200E-01,4.253722E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2289159,fr,1,3.850000E+00,5.169200E-01,4.253722E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799771E+01,0.000000E+00 +2289162,fr,1,3.850000E+00,5.169200E-01,4.253722E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +2289166,fr,1,3.850000E+00,5.169200E-01,4.253722E+01,1.500000E+01,Active Shallow Crust,1.288961E+02,8.999375E+01,0.000000E+00 +2289168,fr,1,3.950000E+00,5.169200E-01,4.253722E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2289169,fr,1,3.950000E+00,5.169200E-01,4.253722E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2289172,fr,1,3.950000E+00,5.169200E-01,4.253722E+01,1.500000E+01,Active Shallow Crust,2.400193E+02,5.800486E+01,0.000000E+00 +2289174,fr,1,3.950000E+00,5.169200E-01,4.253722E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,-9.000000E+01 +2289183,fr,1,4.050000E+00,5.169200E-01,4.253722E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.800574E+01,0.000000E+00 +2289192,fr,1,4.150000E+00,5.169200E-01,4.253722E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2289205,fr,1,4.250000E+00,5.169200E-01,4.253722E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2289218,fr,1,4.350000E+00,5.169200E-01,4.253722E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2289231,fr,1,4.450000E+00,5.169200E-01,4.253722E+01,5.000000E+00,Active Shallow Crust,2.400043E+02,5.799453E+01,0.000000E+00 +2289244,fr,1,4.550000E+00,5.169200E-01,4.253722E+01,1.500000E+01,Active Shallow Crust,2.400082E+02,5.799720E+01,0.000000E+00 +2289280,fr,1,4.850000E+00,5.169200E-01,4.253722E+01,1.500000E+01,Active Shallow Crust,2.400156E+02,5.800204E+01,0.000000E+00 +2289292,fr,1,4.950000E+00,5.169200E-01,4.253722E+01,1.500000E+01,Active Shallow Crust,2.400102E+02,5.800415E+01,0.000000E+00 +2290125,fr,1,3.850000E+00,-5.871250E+00,4.818912E+01,5.000000E+00,Active Shallow Crust,1.288955E+02,8.999524E+01,0.000000E+00 +2290572,fr,1,3.650000E+00,3.746500E-01,4.224994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2290584,fr,2,3.750000E+00,3.746500E-01,4.224994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2290608,fr,1,3.950000E+00,3.746500E-01,4.224994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2290621,fr,1,4.050000E+00,3.746500E-01,4.224994E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2291040,fr,2,3.550000E+00,9.670420E+00,4.891317E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998675E+01,0.000000E+00 +2291042,fr,1,3.550000E+00,9.670420E+00,4.891317E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998675E+01,0.000000E+00 +2291076,fr,1,3.850000E+00,9.670420E+00,4.891317E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +2291077,fr,1,3.850000E+00,9.670420E+00,4.891317E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +2291088,fr,1,3.950000E+00,9.670420E+00,4.891317E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999164E+01,0.000000E+00 +2291101,fr,1,4.050000E+00,9.670420E+00,4.891317E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999255E+01,0.000000E+00 +2291124,fr,1,4.250000E+00,9.670420E+00,4.891317E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998816E+01,0.000000E+00 +2291585,fr,1,4.050000E+00,-5.099240E+00,4.936487E+01,2.750000E+01,Active Shallow Crust,2.400061E+02,5.800614E+01,0.000000E+00 +2291673,fr,1,4.750000E+00,-5.099240E+00,4.936487E+01,5.000000E+00,Active Shallow Crust,1.288874E+02,8.998834E+01,0.000000E+00 +2292564,fr,1,4.250000E+00,9.549610E+00,4.990801E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998840E+01,0.000000E+00 +2292960,fr,1,3.550000E+00,-1.043960E+00,4.278966E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +2292961,fr,1,3.550000E+00,-1.043960E+00,4.278966E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +2292962,fr,2,3.550000E+00,-1.043960E+00,4.278966E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +2292964,fr,1,3.550000E+00,-1.043960E+00,4.278966E+01,1.500000E+01,Active Shallow Crust,2.400119E+02,5.799804E+01,0.000000E+00 +2292972,fr,3,3.650000E+00,-1.043960E+00,4.278966E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2292984,fr,3,3.750000E+00,-1.043960E+00,4.278966E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +2292985,fr,2,3.750000E+00,-1.043960E+00,4.278966E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +2292991,fr,1,3.750000E+00,-1.043960E+00,4.278966E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +2292993,fr,1,3.750000E+00,-1.043960E+00,4.278966E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.996729E+01,0.000000E+00 +2292996,fr,2,3.850000E+00,-1.043960E+00,4.278966E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +2293005,fr,1,3.850000E+00,-1.043960E+00,4.278966E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999411E+01,0.000000E+00 +2293010,fr,1,3.950000E+00,-1.043960E+00,4.278966E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +2293012,fr,1,3.950000E+00,-1.043960E+00,4.278966E+01,1.500000E+01,Active Shallow Crust,2.400195E+02,5.800471E+01,0.000000E+00 +2293020,fr,1,4.050000E+00,-1.043960E+00,4.278966E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +2293034,fr,1,4.150000E+00,-1.043960E+00,4.278966E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +2293035,fr,1,4.150000E+00,-1.043960E+00,4.278966E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.799709E+01,0.000000E+00 +2293050,fr,1,4.250000E+00,-1.043960E+00,4.278966E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +2293056,fr,1,4.350000E+00,-1.043960E+00,4.278966E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2293068,fr,1,4.450000E+00,-1.043960E+00,4.278966E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +2293141,fr,1,5.050000E+00,-1.043960E+00,4.278966E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2293442,fr,1,3.550000E+00,1.329760E+00,5.086708E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +2293451,fr,1,3.550000E+00,1.329760E+00,5.086708E+01,2.750000E+01,Active Shallow Crust,1.288959E+02,8.999364E+01,0.000000E+00 +2293452,fr,1,3.650000E+00,1.329760E+00,5.086708E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2293464,fr,1,3.750000E+00,1.329760E+00,5.086708E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +2293465,fr,1,3.750000E+00,1.329760E+00,5.086708E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +2293665,fr,1,5.350000E+00,1.329760E+00,5.086708E+01,5.000000E+00,Active Shallow Crust,1.288802E+02,8.998804E+01,0.000000E+00 +2293922,fr,1,3.550000E+00,1.155240E+00,4.704387E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2293923,fr,1,3.550000E+00,1.155240E+00,4.704387E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799819E+01,0.000000E+00 +2293938,fr,1,3.650000E+00,1.155240E+00,4.704387E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999071E+01,-9.000000E+01 +2293944,fr,3,3.750000E+00,1.155240E+00,4.704387E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +2293945,fr,1,3.750000E+00,1.155240E+00,4.704387E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +2293968,fr,1,3.950000E+00,1.155240E+00,4.704387E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +2293969,fr,1,3.950000E+00,1.155240E+00,4.704387E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +2294010,fr,1,4.250000E+00,1.155240E+00,4.704387E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +2294077,fr,1,4.850000E+00,1.155240E+00,4.704387E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2294400,fr,1,3.550000E+00,9.555600E-01,4.596051E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +2294412,fr,1,3.650000E+00,9.555600E-01,4.596051E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2294425,fr,1,3.750000E+00,9.555600E-01,4.596051E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +2294432,fr,1,3.750000E+00,9.555600E-01,4.596051E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +2294444,fr,1,3.850000E+00,9.555600E-01,4.596051E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +2294448,fr,1,3.950000E+00,9.555600E-01,4.596051E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +2294457,fr,1,3.950000E+00,9.555600E-01,4.596051E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.999364E+01,0.000000E+00 +2294493,fr,1,4.250000E+00,9.555600E-01,4.596051E+01,5.000000E+00,Active Shallow Crust,1.288944E+02,8.998093E+01,0.000000E+00 +2294496,fr,1,4.350000E+00,9.555600E-01,4.596051E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2294539,fr,1,4.650000E+00,9.555600E-01,4.596051E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +2294904,fr,1,3.750000E+00,1.335790E+00,4.771923E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +2294961,fr,1,4.150000E+00,1.335790E+00,4.771923E+01,5.000000E+00,Active Shallow Crust,1.288973E+02,8.999362E+01,0.000000E+00 +2295360,fr,1,3.550000E+00,1.669750E+00,4.119371E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +2295372,fr,1,3.650000E+00,1.669750E+00,4.119371E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2295373,fr,1,3.650000E+00,1.669750E+00,4.119371E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2295384,fr,1,3.750000E+00,1.669750E+00,4.119371E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +2295397,fr,1,3.850000E+00,1.669750E+00,4.119371E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +2295408,fr,1,3.950000E+00,1.669750E+00,4.119371E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +2295411,fr,1,3.950000E+00,1.669750E+00,4.119371E+01,5.000000E+00,Active Shallow Crust,2.400191E+02,5.800492E+01,0.000000E+00 +2295417,fr,1,3.950000E+00,1.669750E+00,4.119371E+01,5.000000E+00,Active Shallow Crust,1.289010E+02,8.999402E+01,0.000000E+00 +2295420,fr,1,4.050000E+00,1.669750E+00,4.119371E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +2295422,fr,1,4.050000E+00,1.669750E+00,4.119371E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +2295444,fr,1,4.250000E+00,1.669750E+00,4.119371E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +2295840,fr,2,3.550000E+00,5.431560E+00,4.335687E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999267E+01,0.000000E+00 +2295852,fr,1,3.650000E+00,5.431560E+00,4.335687E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998693E+01,0.000000E+00 +2295864,fr,2,3.750000E+00,5.431560E+00,4.335687E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998835E+01,0.000000E+00 +2295876,fr,1,3.850000E+00,5.431560E+00,4.335687E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +2295889,fr,1,3.950000E+00,5.431560E+00,4.335687E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +2295933,fr,1,4.250000E+00,5.431560E+00,4.335687E+01,5.000000E+00,Active Shallow Crust,1.288943E+02,8.998083E+01,0.000000E+00 +2295936,fr,1,4.350000E+00,5.431560E+00,4.335687E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999124E+01,0.000000E+00 +2295957,fr,1,4.450000E+00,5.431560E+00,4.335687E+01,5.000000E+00,Active Shallow Crust,1.288932E+02,8.999350E+01,0.000000E+00 +2295963,fr,1,4.550000E+00,5.431560E+00,4.335687E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799723E+01,0.000000E+00 +2296320,fr,1,3.550000E+00,-1.625580E+00,4.791941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +2296345,fr,1,3.750000E+00,-1.625580E+00,4.791941E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999061E+01,0.000000E+00 +2296352,fr,1,3.750000E+00,-1.625580E+00,4.791941E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,-9.000000E+01 +2296356,fr,1,3.850000E+00,-1.625580E+00,4.791941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +2296366,fr,1,3.850000E+00,-1.625580E+00,4.791941E+01,1.500000E+01,Active Shallow Crust,1.288953E+02,8.999402E+01,0.000000E+00 +2296368,fr,1,3.950000E+00,-1.625580E+00,4.791941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +2296369,fr,1,3.950000E+00,-1.625580E+00,4.791941E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +2296383,fr,1,4.050000E+00,-1.625580E+00,4.791941E+01,5.000000E+00,Active Shallow Crust,2.400064E+02,5.800573E+01,0.000000E+00 +2296416,fr,1,4.350000E+00,-1.625580E+00,4.791941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2296470,fr,1,4.750000E+00,-1.625580E+00,4.791941E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,-9.000000E+01 +2296800,fr,1,3.550000E+00,4.877950E+00,5.048183E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998717E+01,0.000000E+00 +2296803,fr,2,3.550000E+00,4.877950E+00,5.048183E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799926E+01,0.000000E+00 +2296804,fr,1,3.550000E+00,4.877950E+00,5.048183E+01,1.500000E+01,Active Shallow Crust,2.400119E+02,5.799926E+01,0.000000E+00 +2296812,fr,1,3.650000E+00,4.877950E+00,5.048183E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +2296813,fr,1,3.650000E+00,4.877950E+00,5.048183E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +2296823,fr,1,3.650000E+00,4.877950E+00,5.048183E+01,2.750000E+01,Active Shallow Crust,1.288999E+02,8.996360E+01,0.000000E+00 +2296824,fr,3,3.750000E+00,4.877950E+00,5.048183E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2296826,fr,1,3.750000E+00,4.877950E+00,5.048183E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2296840,fr,1,3.850000E+00,4.877950E+00,5.048183E+01,1.500000E+01,Active Shallow Crust,2.400117E+02,5.799754E+01,0.000000E+00 +2296851,fr,1,3.950000E+00,4.877950E+00,5.048183E+01,5.000000E+00,Active Shallow Crust,2.400200E+02,5.800515E+01,0.000000E+00 +2296860,fr,2,4.050000E+00,4.877950E+00,5.048183E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +2296870,fr,1,4.050000E+00,4.877950E+00,5.048183E+01,1.500000E+01,Active Shallow Crust,1.288902E+02,8.999278E+01,0.000000E+00 +2296884,fr,2,4.250000E+00,4.877950E+00,5.048183E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999140E+01,0.000000E+00 +2296890,fr,1,4.250000E+00,4.877950E+00,5.048183E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999130E+01,-9.000000E+01 +2296908,fr,1,4.450000E+00,4.877950E+00,5.048183E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999089E+01,0.000000E+00 +2296915,fr,1,4.450000E+00,4.877950E+00,5.048183E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999078E+01,-9.000000E+01 +2296917,fr,1,4.450000E+00,4.877950E+00,5.048183E+01,5.000000E+00,Active Shallow Crust,1.288910E+02,8.999431E+01,0.000000E+00 +2297280,fr,1,3.550000E+00,5.889870E+00,4.734562E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999316E+01,0.000000E+00 +2297281,fr,1,3.550000E+00,5.889870E+00,4.734562E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999316E+01,0.000000E+00 +2297282,fr,1,3.550000E+00,5.889870E+00,4.734562E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999316E+01,0.000000E+00 +2297292,fr,2,3.650000E+00,5.889870E+00,4.734562E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998782E+01,0.000000E+00 +2297293,fr,1,3.650000E+00,5.889870E+00,4.734562E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998782E+01,0.000000E+00 +2297304,fr,1,3.750000E+00,5.889870E+00,4.734562E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +2297340,fr,1,4.050000E+00,5.889870E+00,4.734562E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998847E+01,0.000000E+00 +2297352,fr,1,4.150000E+00,5.889870E+00,4.734562E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +2297353,fr,1,4.150000E+00,5.889870E+00,4.734562E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +2297364,fr,1,4.250000E+00,5.889870E+00,4.734562E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +2297425,fr,1,4.750000E+00,5.889870E+00,4.734562E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +2297460,fr,1,5.050000E+00,5.889870E+00,4.734562E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +2297553,fr,1,5.750000E+00,5.889870E+00,4.734562E+01,5.000000E+00,Active Shallow Crust,1.288730E+02,8.998854E+01,0.000000E+00 +2297818,fr,1,3.950000E+00,-2.089070E+00,4.460749E+01,1.500000E+01,Active Shallow Crust,1.289004E+02,8.999321E+01,0.000000E+00 +2298240,fr,4,3.550000E+00,-1.378350E+00,4.604490E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +2298241,fr,1,3.550000E+00,-1.378350E+00,4.604490E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +2298244,fr,1,3.550000E+00,-1.378350E+00,4.604490E+01,1.500000E+01,Active Shallow Crust,2.400119E+02,5.799809E+01,0.000000E+00 +2298246,fr,1,3.550000E+00,-1.378350E+00,4.604490E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998938E+01,-9.000000E+01 +2298252,fr,2,3.650000E+00,-1.378350E+00,4.604490E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +2298253,fr,1,3.650000E+00,-1.378350E+00,4.604490E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +2298255,fr,1,3.650000E+00,-1.378350E+00,4.604490E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801287E+01,0.000000E+00 +2298259,fr,1,3.650000E+00,-1.378350E+00,4.604490E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999053E+01,-9.000000E+01 +2298264,fr,1,3.750000E+00,-1.378350E+00,4.604490E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +2298268,fr,1,3.750000E+00,-1.378350E+00,4.604490E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.801737E+01,0.000000E+00 +2298269,fr,1,3.750000E+00,-1.378350E+00,4.604490E+01,2.750000E+01,Active Shallow Crust,2.400084E+02,5.801737E+01,0.000000E+00 +2298274,fr,1,3.750000E+00,-1.378350E+00,4.604490E+01,1.500000E+01,Active Shallow Crust,1.288969E+02,8.996722E+01,0.000000E+00 +2298276,fr,6,3.850000E+00,-1.378350E+00,4.604490E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +2298277,fr,1,3.850000E+00,-1.378350E+00,4.604490E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +2298279,fr,1,3.850000E+00,-1.378350E+00,4.604490E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799768E+01,0.000000E+00 +2298282,fr,1,3.850000E+00,-1.378350E+00,4.604490E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +2298288,fr,2,3.950000E+00,-1.378350E+00,4.604490E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2298289,fr,1,3.950000E+00,-1.378350E+00,4.604490E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2298292,fr,1,3.950000E+00,-1.378350E+00,4.604490E+01,1.500000E+01,Active Shallow Crust,2.400197E+02,5.800496E+01,0.000000E+00 +2298300,fr,1,4.050000E+00,-1.378350E+00,4.604490E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +2298306,fr,1,4.050000E+00,-1.378350E+00,4.604490E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +2298309,fr,1,4.050000E+00,-1.378350E+00,4.604490E+01,5.000000E+00,Active Shallow Crust,1.288906E+02,8.999361E+01,0.000000E+00 +2298310,fr,1,4.050000E+00,-1.378350E+00,4.604490E+01,1.500000E+01,Active Shallow Crust,1.288906E+02,8.999361E+01,0.000000E+00 +2298312,fr,1,4.150000E+00,-1.378350E+00,4.604490E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +2298313,fr,3,4.150000E+00,-1.378350E+00,4.604490E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +2298324,fr,1,4.250000E+00,-1.378350E+00,4.604490E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +2298336,fr,2,4.350000E+00,-1.378350E+00,4.604490E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +2298358,fr,1,4.450000E+00,-1.378350E+00,4.604490E+01,1.500000E+01,Active Shallow Crust,1.288924E+02,8.999348E+01,0.000000E+00 +2298372,fr,1,4.650000E+00,-1.378350E+00,4.604490E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2298378,fr,1,4.650000E+00,-1.378350E+00,4.604490E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +2298385,fr,1,4.750000E+00,-1.378350E+00,4.604490E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +2298399,fr,1,4.850000E+00,-1.378350E+00,4.604490E+01,5.000000E+00,Active Shallow Crust,2.400170E+02,5.800233E+01,0.000000E+00 +2298420,fr,1,5.050000E+00,-1.378350E+00,4.604490E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2298722,fr,1,3.550000E+00,2.602940E+00,4.712849E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +2298732,fr,1,3.650000E+00,2.602940E+00,4.712849E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +2298769,fr,1,3.950000E+00,2.602940E+00,4.712849E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +2299201,fr,2,3.550000E+00,-5.547000E-02,4.629000E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2299212,fr,1,3.650000E+00,-5.547000E-02,4.629000E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2299230,fr,1,3.750000E+00,-5.547000E-02,4.629000E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +2299233,fr,1,3.750000E+00,-5.547000E-02,4.629000E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.996735E+01,0.000000E+00 +2299260,fr,1,4.050000E+00,-5.547000E-02,4.629000E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2299262,fr,1,4.050000E+00,-5.547000E-02,4.629000E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2299263,fr,1,4.050000E+00,-5.547000E-02,4.629000E+01,5.000000E+00,Active Shallow Crust,2.400059E+02,5.800582E+01,0.000000E+00 +2299284,fr,2,4.250000E+00,-5.547000E-02,4.629000E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2299298,fr,1,4.350000E+00,-5.547000E-02,4.629000E+01,2.750000E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +2300160,fr,1,3.550000E+00,-3.298110E+00,4.912744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2300172,fr,1,3.650000E+00,-3.298110E+00,4.912744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999118E+01,0.000000E+00 +2300197,fr,1,3.850000E+00,-3.298110E+00,4.912744E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +2300640,fr,1,3.550000E+00,-1.585400E+00,4.203770E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +2300678,fr,1,3.850000E+00,-1.585400E+00,4.203770E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +2300679,fr,1,3.850000E+00,-1.585400E+00,4.203770E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.799760E+01,0.000000E+00 +2300724,fr,2,4.250000E+00,-1.585400E+00,4.203770E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2300742,fr,1,4.350000E+00,-1.585400E+00,4.203770E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,-9.000000E+01 +2301160,fr,1,3.850000E+00,-7.887000E-01,4.487210E+01,1.500000E+01,Active Shallow Crust,2.400106E+02,5.799779E+01,0.000000E+00 +2301264,fr,1,4.750000E+00,-7.887000E-01,4.487210E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +2301600,fr,1,3.550000E+00,3.836100E+00,5.045660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +2301603,fr,1,3.550000E+00,3.836100E+00,5.045660E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799855E+01,0.000000E+00 +2301612,fr,5,3.650000E+00,3.836100E+00,5.045660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +2301613,fr,1,3.650000E+00,3.836100E+00,5.045660E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +2301618,fr,1,3.650000E+00,3.836100E+00,5.045660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999132E+01,-9.000000E+01 +2301624,fr,2,3.750000E+00,3.836100E+00,5.045660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +2301626,fr,1,3.750000E+00,3.836100E+00,5.045660E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +2301636,fr,1,3.850000E+00,3.836100E+00,5.045660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +2301637,fr,2,3.850000E+00,3.836100E+00,5.045660E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +2301639,fr,1,3.850000E+00,3.836100E+00,5.045660E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799796E+01,0.000000E+00 +2301643,fr,1,3.850000E+00,3.836100E+00,5.045660E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999081E+01,-9.000000E+01 +2301644,fr,1,3.850000E+00,3.836100E+00,5.045660E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999081E+01,-9.000000E+01 +2301645,fr,1,3.850000E+00,3.836100E+00,5.045660E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.999432E+01,0.000000E+00 +2301650,fr,1,3.950000E+00,3.836100E+00,5.045660E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2301651,fr,1,3.950000E+00,3.836100E+00,5.045660E+01,5.000000E+00,Active Shallow Crust,2.400206E+02,5.800515E+01,0.000000E+00 +2301660,fr,1,4.050000E+00,3.836100E+00,5.045660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +2301661,fr,1,4.050000E+00,3.836100E+00,5.045660E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +2301663,fr,1,4.050000E+00,3.836100E+00,5.045660E+01,5.000000E+00,Active Shallow Crust,2.400066E+02,5.800597E+01,0.000000E+00 +2301669,fr,1,4.050000E+00,3.836100E+00,5.045660E+01,5.000000E+00,Active Shallow Crust,1.288900E+02,8.999368E+01,0.000000E+00 +2301672,fr,1,4.150000E+00,3.836100E+00,5.045660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +2301675,fr,1,4.150000E+00,3.836100E+00,5.045660E+01,5.000000E+00,Active Shallow Crust,2.400092E+02,5.799747E+01,0.000000E+00 +2301677,fr,1,4.150000E+00,3.836100E+00,5.045660E+01,2.750000E+01,Active Shallow Crust,2.400092E+02,5.799744E+01,0.000000E+00 +2301690,fr,1,4.250000E+00,3.836100E+00,5.045660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +2301696,fr,1,4.350000E+00,3.836100E+00,5.045660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +2301703,fr,1,4.350000E+00,3.836100E+00,5.045660E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +2301732,fr,1,4.650000E+00,3.836100E+00,5.045660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2301744,fr,1,4.750000E+00,3.836100E+00,5.045660E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +2301782,fr,1,5.050000E+00,3.836100E+00,5.045660E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +2302221,fr,1,4.650000E+00,3.154530E+00,5.232472E+01,5.000000E+00,Active Shallow Crust,1.288894E+02,8.998690E+01,0.000000E+00 +2302620,fr,1,4.050000E+00,8.981800E-01,4.366095E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2303040,fr,1,3.550000E+00,5.380000E+00,4.092405E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999238E+01,0.000000E+00 +2303076,fr,1,3.850000E+00,5.380000E+00,4.092405E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +2303125,fr,1,4.250000E+00,5.380000E+00,4.092405E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +2303263,fr,1,5.350000E+00,5.380000E+00,4.092405E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,-9.000000E+01 +2303532,fr,2,3.650000E+00,5.670530E+00,4.731721E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998782E+01,0.000000E+00 +2303535,fr,1,3.650000E+00,5.670530E+00,4.731721E+01,5.000000E+00,Active Shallow Crust,2.400006E+02,5.801318E+01,0.000000E+00 +2303548,fr,1,3.750000E+00,5.670530E+00,4.731721E+01,1.500000E+01,Active Shallow Crust,2.400087E+02,5.801784E+01,0.000000E+00 +2303556,fr,2,3.850000E+00,5.670530E+00,4.731721E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +2303571,fr,2,3.950000E+00,5.670530E+00,4.731721E+01,5.000000E+00,Active Shallow Crust,2.400202E+02,5.800482E+01,0.000000E+00 +2303604,fr,1,4.250000E+00,5.670530E+00,4.731721E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +2303617,fr,1,4.350000E+00,5.670530E+00,4.731721E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +2304000,fr,5,3.550000E+00,7.142560E+00,4.646642E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999306E+01,0.000000E+00 +2304001,fr,4,3.550000E+00,7.142560E+00,4.646642E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999306E+01,0.000000E+00 +2304002,fr,2,3.550000E+00,7.142560E+00,4.646642E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999306E+01,0.000000E+00 +2304003,fr,2,3.550000E+00,7.142560E+00,4.646642E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799878E+01,0.000000E+00 +2304004,fr,2,3.550000E+00,7.142560E+00,4.646642E+01,1.500000E+01,Active Shallow Crust,2.400112E+02,5.799878E+01,0.000000E+00 +2304005,fr,1,3.550000E+00,7.142560E+00,4.646642E+01,2.750000E+01,Active Shallow Crust,2.400112E+02,5.799869E+01,0.000000E+00 +2304006,fr,2,3.550000E+00,7.142560E+00,4.646642E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999297E+01,-9.000000E+01 +2304010,fr,1,3.550000E+00,7.142560E+00,4.646642E+01,1.500000E+01,Active Shallow Crust,1.288950E+02,8.999653E+01,0.000000E+00 +2304012,fr,11,3.650000E+00,7.142560E+00,4.646642E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998762E+01,0.000000E+00 +2304013,fr,1,3.650000E+00,7.142560E+00,4.646642E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998762E+01,0.000000E+00 +2304014,fr,1,3.650000E+00,7.142560E+00,4.646642E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998762E+01,0.000000E+00 +2304015,fr,1,3.650000E+00,7.142560E+00,4.646642E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801262E+01,0.000000E+00 +2304016,fr,1,3.650000E+00,7.142560E+00,4.646642E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801262E+01,0.000000E+00 +2304017,fr,1,3.650000E+00,7.142560E+00,4.646642E+01,2.750000E+01,Active Shallow Crust,2.400011E+02,5.801253E+01,0.000000E+00 +2304018,fr,2,3.650000E+00,7.142560E+00,4.646642E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998747E+01,-9.000000E+01 +2304019,fr,1,3.650000E+00,7.142560E+00,4.646642E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998747E+01,-9.000000E+01 +2304021,fr,3,3.650000E+00,7.142560E+00,4.646642E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.996352E+01,0.000000E+00 +2304024,fr,4,3.750000E+00,7.142560E+00,4.646642E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998897E+01,0.000000E+00 +2304025,fr,2,3.750000E+00,7.142560E+00,4.646642E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998897E+01,0.000000E+00 +2304027,fr,2,3.750000E+00,7.142560E+00,4.646642E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.801783E+01,0.000000E+00 +2304029,fr,1,3.750000E+00,7.142560E+00,4.646642E+01,2.750000E+01,Active Shallow Crust,2.400081E+02,5.801783E+01,0.000000E+00 +2304030,fr,2,3.750000E+00,7.142560E+00,4.646642E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998884E+01,-9.000000E+01 +2304036,fr,4,3.850000E+00,7.142560E+00,4.646642E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2304037,fr,2,3.850000E+00,7.142560E+00,4.646642E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2304038,fr,1,3.850000E+00,7.142560E+00,4.646642E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2304045,fr,2,3.850000E+00,7.142560E+00,4.646642E+01,5.000000E+00,Active Shallow Crust,1.288951E+02,8.999509E+01,0.000000E+00 +2304048,fr,3,3.950000E+00,7.142560E+00,4.646642E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +2304049,fr,1,3.950000E+00,7.142560E+00,4.646642E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +2304052,fr,1,3.950000E+00,7.142560E+00,4.646642E+01,1.500000E+01,Active Shallow Crust,2.400191E+02,5.800500E+01,0.000000E+00 +2304056,fr,1,3.950000E+00,7.142560E+00,4.646642E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999113E+01,-9.000000E+01 +2304058,fr,1,3.950000E+00,7.142560E+00,4.646642E+01,1.500000E+01,Active Shallow Crust,1.289014E+02,8.999342E+01,0.000000E+00 +2304060,fr,5,4.050000E+00,7.142560E+00,4.646642E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998828E+01,0.000000E+00 +2304066,fr,2,4.050000E+00,7.142560E+00,4.646642E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998814E+01,-9.000000E+01 +2304072,fr,5,4.150000E+00,7.142560E+00,4.646642E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +2304075,fr,2,4.150000E+00,7.142560E+00,4.646642E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799783E+01,0.000000E+00 +2304078,fr,2,4.150000E+00,7.142560E+00,4.646642E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,-9.000000E+01 +2304081,fr,3,4.150000E+00,7.142560E+00,4.646642E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.999304E+01,0.000000E+00 +2304084,fr,3,4.250000E+00,7.142560E+00,4.646642E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999069E+01,0.000000E+00 +2304096,fr,2,4.350000E+00,7.142560E+00,4.646642E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998894E+01,0.000000E+00 +2304099,fr,1,4.350000E+00,7.142560E+00,4.646642E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.799576E+01,0.000000E+00 +2304105,fr,2,4.350000E+00,7.142560E+00,4.646642E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.998302E+01,0.000000E+00 +2304107,fr,1,4.350000E+00,7.142560E+00,4.646642E+01,2.750000E+01,Active Shallow Crust,1.288976E+02,8.998302E+01,0.000000E+00 +2304110,fr,1,4.450000E+00,7.142560E+00,4.646642E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2304117,fr,1,4.450000E+00,7.142560E+00,4.646642E+01,5.000000E+00,Active Shallow Crust,1.288917E+02,8.999384E+01,0.000000E+00 +2304120,fr,1,4.550000E+00,7.142560E+00,4.646642E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +2304126,fr,1,4.550000E+00,7.142560E+00,4.646642E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998889E+01,-9.000000E+01 +2304132,fr,2,4.650000E+00,7.142560E+00,4.646642E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +2304153,fr,1,4.750000E+00,7.142560E+00,4.646642E+01,5.000000E+00,Active Shallow Crust,1.288885E+02,8.998817E+01,0.000000E+00 +2304168,fr,1,4.950000E+00,7.142560E+00,4.646642E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +2304169,fr,1,4.950000E+00,7.142560E+00,4.646642E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +2304181,fr,2,5.050000E+00,7.142560E+00,4.646642E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +2304192,fr,1,5.150000E+00,7.142560E+00,4.646642E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +2304222,fr,1,5.350000E+00,7.142560E+00,4.646642E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,-9.000000E+01 +2304480,fr,1,3.550000E+00,6.330010E+00,4.740127E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999317E+01,0.000000E+00 +2304483,fr,1,3.550000E+00,6.330010E+00,4.740127E+01,5.000000E+00,Active Shallow Crust,2.400136E+02,5.799731E+01,0.000000E+00 +2304489,fr,1,3.550000E+00,6.330010E+00,4.740127E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.999659E+01,0.000000E+00 +2304492,fr,1,3.650000E+00,6.330010E+00,4.740127E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998783E+01,0.000000E+00 +2304501,fr,1,3.650000E+00,6.330010E+00,4.740127E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.996354E+01,0.000000E+00 +2304506,fr,1,3.750000E+00,6.330010E+00,4.740127E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +2304510,fr,1,3.750000E+00,6.330010E+00,4.740127E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998903E+01,-9.000000E+01 +2304518,fr,1,3.850000E+00,6.330010E+00,4.740127E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +2304530,fr,1,3.950000E+00,6.330010E+00,4.740127E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999139E+01,0.000000E+00 +2304540,fr,1,4.050000E+00,6.330010E+00,4.740127E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998849E+01,0.000000E+00 +2304554,fr,1,4.150000E+00,6.330010E+00,4.740127E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +2304564,fr,1,4.250000E+00,6.330010E+00,4.740127E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999085E+01,0.000000E+00 +2304567,fr,1,4.250000E+00,6.330010E+00,4.740127E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.799417E+01,0.000000E+00 +2304693,fr,1,5.250000E+00,6.330010E+00,4.740127E+01,5.000000E+00,Active Shallow Crust,1.288828E+02,8.998700E+01,0.000000E+00 +2304973,fr,1,3.650000E+00,2.498990E+00,5.167541E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +2304985,fr,1,3.750000E+00,2.498990E+00,5.167541E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2305021,fr,1,4.050000E+00,2.498990E+00,5.167541E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +2305440,fr,1,3.550000E+00,1.260690E+00,4.651668E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +2305441,fr,1,3.550000E+00,1.260690E+00,4.651668E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +2305442,fr,1,3.550000E+00,1.260690E+00,4.651668E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +2305446,fr,2,3.550000E+00,1.260690E+00,4.651668E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,-9.000000E+01 +2305453,fr,1,3.650000E+00,1.260690E+00,4.651668E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +2305457,fr,1,3.650000E+00,1.260690E+00,4.651668E+01,2.750000E+01,Active Shallow Crust,2.400010E+02,5.801291E+01,0.000000E+00 +2305458,fr,1,3.650000E+00,1.260690E+00,4.651668E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,-9.000000E+01 +2305465,fr,1,3.750000E+00,1.260690E+00,4.651668E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +2305470,fr,1,3.750000E+00,1.260690E+00,4.651668E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,-9.000000E+01 +2305479,fr,3,3.850000E+00,1.260690E+00,4.651668E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799768E+01,0.000000E+00 +2305483,fr,1,3.850000E+00,1.260690E+00,4.651668E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +2305488,fr,1,3.950000E+00,1.260690E+00,4.651668E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +2305533,fr,1,4.250000E+00,1.260690E+00,4.651668E+01,5.000000E+00,Active Shallow Crust,1.288943E+02,8.998082E+01,0.000000E+00 +2305542,fr,1,4.350000E+00,1.260690E+00,4.651668E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,-9.000000E+01 +2305668,fr,1,5.450000E+00,1.260690E+00,4.651668E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2305939,fr,1,3.650000E+00,3.315250E+00,4.398813E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,-9.000000E+01 +2305945,fr,1,3.750000E+00,3.315250E+00,4.398813E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999136E+01,0.000000E+00 +2305951,fr,1,3.750000E+00,3.315250E+00,4.398813E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999126E+01,-9.000000E+01 +2305968,fr,1,3.950000E+00,3.315250E+00,4.398813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +2306005,fr,1,4.250000E+00,3.315250E+00,4.398813E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +2306016,fr,1,4.350000E+00,3.315250E+00,4.398813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +2306028,fr,1,4.450000E+00,3.315250E+00,4.398813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +2306040,fr,1,4.550000E+00,3.315250E+00,4.398813E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +2306460,fr,1,4.050000E+00,4.165740E+00,4.938890E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998893E+01,0.000000E+00 +2306523,fr,1,4.550000E+00,4.165740E+00,4.938890E+01,5.000000E+00,Active Shallow Crust,2.400104E+02,5.799745E+01,0.000000E+00 +2306880,fr,1,3.550000E+00,3.303030E+00,5.092454E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +2306893,fr,1,3.650000E+00,3.303030E+00,5.092454E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998867E+01,0.000000E+00 +2306895,fr,1,3.650000E+00,3.303030E+00,5.092454E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801351E+01,0.000000E+00 +2306908,fr,1,3.750000E+00,3.303030E+00,5.092454E+01,1.500000E+01,Active Shallow Crust,2.400087E+02,5.801750E+01,0.000000E+00 +2306920,fr,1,3.850000E+00,3.303030E+00,5.092454E+01,1.500000E+01,Active Shallow Crust,2.400115E+02,5.799793E+01,0.000000E+00 +2306959,fr,1,4.150000E+00,3.303030E+00,5.092454E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,-9.000000E+01 +2307015,fr,1,4.650000E+00,3.303030E+00,5.092454E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799458E+01,0.000000E+00 +2307372,fr,1,3.650000E+00,-2.409150E+00,4.960217E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +2307384,fr,1,3.750000E+00,-2.409150E+00,4.960217E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +2307386,fr,1,3.750000E+00,-2.409150E+00,4.960217E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +2307408,fr,1,3.950000E+00,-2.409150E+00,4.960217E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2307577,fr,1,5.350000E+00,-2.409150E+00,4.960217E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +2307859,fr,1,3.650000E+00,1.239830E+00,5.279271E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999038E+01,-9.000000E+01 +2307883,fr,1,3.850000E+00,1.239830E+00,5.279271E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,-9.000000E+01 +2308131,fr,1,5.950000E+00,1.239830E+00,5.279271E+01,5.000000E+00,Active Shallow Crust,2.400639E+02,5.799879E+01,0.000000E+00 +2308336,fr,1,3.650000E+00,-1.841210E+00,4.790201E+01,1.500000E+01,Active Shallow Crust,2.400012E+02,5.801291E+01,0.000000E+00 +2308345,fr,1,3.750000E+00,-1.841210E+00,4.790201E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +2308347,fr,1,3.750000E+00,-1.841210E+00,4.790201E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801769E+01,0.000000E+00 +2308368,fr,1,3.950000E+00,-1.841210E+00,4.790201E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +2308380,fr,1,4.050000E+00,-1.841210E+00,4.790201E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +2308381,fr,1,4.050000E+00,-1.841210E+00,4.790201E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +2308407,fr,1,4.250000E+00,-1.841210E+00,4.790201E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.799414E+01,0.000000E+00 +2308467,fr,1,4.750000E+00,-1.841210E+00,4.790201E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.800457E+01,0.000000E+00 +2308800,fr,1,3.550000E+00,8.751500E+00,4.793186E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998649E+01,0.000000E+00 +2308801,fr,1,3.550000E+00,8.751500E+00,4.793186E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998649E+01,0.000000E+00 +2308809,fr,1,3.550000E+00,8.751500E+00,4.793186E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999325E+01,0.000000E+00 +2308812,fr,1,3.650000E+00,8.751500E+00,4.793186E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998795E+01,0.000000E+00 +2308833,fr,1,3.750000E+00,8.751500E+00,4.793186E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.996751E+01,0.000000E+00 +2308836,fr,1,3.850000E+00,8.751500E+00,4.793186E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +2308837,fr,1,3.850000E+00,8.751500E+00,4.793186E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +2308860,fr,1,4.050000E+00,8.751500E+00,4.793186E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999240E+01,0.000000E+00 +2308872,fr,1,4.150000E+00,8.751500E+00,4.793186E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999323E+01,0.000000E+00 +2308899,fr,1,4.350000E+00,8.751500E+00,4.793186E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.799665E+01,0.000000E+00 +2308932,fr,1,4.650000E+00,8.751500E+00,4.793186E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998857E+01,0.000000E+00 +2309356,fr,1,4.150000E+00,4.341390E+00,4.966348E+01,1.500000E+01,Active Shallow Crust,2.400092E+02,5.799733E+01,0.000000E+00 +2309475,fr,1,5.150000E+00,4.341390E+00,4.966348E+01,5.000000E+00,Active Shallow Crust,2.400214E+02,5.800043E+01,0.000000E+00 +2309761,fr,1,3.550000E+00,1.692320E+00,5.178224E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +2309763,fr,1,3.550000E+00,1.692320E+00,5.178224E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799846E+01,0.000000E+00 +2309767,fr,1,3.550000E+00,1.692320E+00,5.178224E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999053E+01,-9.000000E+01 +2309772,fr,1,3.650000E+00,1.692320E+00,5.178224E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +2309880,fr,2,4.550000E+00,1.692320E+00,5.178224E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2309892,fr,1,4.650000E+00,1.692320E+00,5.178224E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +2310240,fr,2,3.550000E+00,4.429810E+00,4.980044E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998698E+01,0.000000E+00 +2310249,fr,1,3.550000E+00,4.429810E+00,4.980044E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999349E+01,0.000000E+00 +2310265,fr,1,3.750000E+00,4.429810E+00,4.980044E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +2310279,fr,1,3.850000E+00,4.429810E+00,4.980044E+01,5.000000E+00,Active Shallow Crust,2.400115E+02,5.799799E+01,0.000000E+00 +2310498,fr,1,5.650000E+00,4.429810E+00,4.980044E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +2310729,fr,1,3.550000E+00,8.455260E+00,4.929707E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999342E+01,0.000000E+00 +2310732,fr,1,3.650000E+00,8.455260E+00,4.929707E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998828E+01,0.000000E+00 +2310736,fr,1,3.650000E+00,8.455260E+00,4.929707E+01,1.500000E+01,Active Shallow Crust,2.400002E+02,5.801338E+01,0.000000E+00 +2310745,fr,1,3.750000E+00,8.455260E+00,4.929707E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +2310756,fr,2,3.850000E+00,8.455260E+00,4.929707E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999069E+01,0.000000E+00 +2310763,fr,1,3.850000E+00,8.455260E+00,4.929707E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999058E+01,-9.000000E+01 +2310780,fr,1,4.050000E+00,8.455260E+00,4.929707E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999261E+01,0.000000E+00 +2310865,fr,2,4.750000E+00,8.455260E+00,4.929707E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +2311206,fr,1,3.550000E+00,-2.148420E+00,4.569984E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998931E+01,-9.000000E+01 +2311680,fr,1,3.550000E+00,2.292200E-01,4.496088E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2311696,fr,1,3.650000E+00,2.292200E-01,4.496088E+01,1.500000E+01,Active Shallow Crust,2.400009E+02,5.801288E+01,0.000000E+00 +2311728,fr,1,3.950000E+00,2.292200E-01,4.496088E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2311813,fr,1,4.650000E+00,2.292200E-01,4.496088E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2312641,fr,1,3.550000E+00,-1.410220E+00,4.793637E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +2312646,fr,1,3.550000E+00,-1.410220E+00,4.793637E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,-9.000000E+01 +2312652,fr,2,3.650000E+00,-1.410220E+00,4.793637E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +2312676,fr,1,3.850000E+00,-1.410220E+00,4.793637E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +2312700,fr,2,4.050000E+00,-1.410220E+00,4.793637E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +2312701,fr,1,4.050000E+00,-1.410220E+00,4.793637E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +2313624,fr,1,3.750000E+00,4.934790E+00,4.248771E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998819E+01,0.000000E+00 +2313660,fr,1,4.050000E+00,4.934790E+00,4.248771E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999164E+01,0.000000E+00 +2314080,fr,6,3.550000E+00,7.964080E+00,4.616860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999302E+01,0.000000E+00 +2314081,fr,2,3.550000E+00,7.964080E+00,4.616860E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999302E+01,0.000000E+00 +2314083,fr,1,3.550000E+00,7.964080E+00,4.616860E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799771E+01,0.000000E+00 +2314086,fr,1,3.550000E+00,7.964080E+00,4.616860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999294E+01,-9.000000E+01 +2314088,fr,1,3.550000E+00,7.964080E+00,4.616860E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999294E+01,-9.000000E+01 +2314090,fr,1,3.550000E+00,7.964080E+00,4.616860E+01,1.500000E+01,Active Shallow Crust,1.288957E+02,8.999651E+01,0.000000E+00 +2314092,fr,6,3.650000E+00,7.964080E+00,4.616860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998755E+01,0.000000E+00 +2314093,fr,1,3.650000E+00,7.964080E+00,4.616860E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998755E+01,0.000000E+00 +2314094,fr,2,3.650000E+00,7.964080E+00,4.616860E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998755E+01,0.000000E+00 +2314095,fr,1,3.650000E+00,7.964080E+00,4.616860E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801311E+01,0.000000E+00 +2314096,fr,2,3.650000E+00,7.964080E+00,4.616860E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801311E+01,0.000000E+00 +2314102,fr,1,3.650000E+00,7.964080E+00,4.616860E+01,1.500000E+01,Active Shallow Crust,1.289005E+02,8.996352E+01,0.000000E+00 +2314104,fr,1,3.750000E+00,7.964080E+00,4.616860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +2314105,fr,2,3.750000E+00,7.964080E+00,4.616860E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +2314106,fr,1,3.750000E+00,7.964080E+00,4.616860E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +2314111,fr,1,3.750000E+00,7.964080E+00,4.616860E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998878E+01,-9.000000E+01 +2314112,fr,1,3.750000E+00,7.964080E+00,4.616860E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998878E+01,-9.000000E+01 +2314113,fr,2,3.750000E+00,7.964080E+00,4.616860E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.996748E+01,0.000000E+00 +2314116,fr,3,3.850000E+00,7.964080E+00,4.616860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +2314117,fr,1,3.850000E+00,7.964080E+00,4.616860E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +2314119,fr,1,3.850000E+00,7.964080E+00,4.616860E+01,5.000000E+00,Active Shallow Crust,2.400115E+02,5.799796E+01,0.000000E+00 +2314120,fr,2,3.850000E+00,7.964080E+00,4.616860E+01,1.500000E+01,Active Shallow Crust,2.400115E+02,5.799796E+01,0.000000E+00 +2314122,fr,1,3.850000E+00,7.964080E+00,4.616860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +2314126,fr,1,3.850000E+00,7.964080E+00,4.616860E+01,1.500000E+01,Active Shallow Crust,1.288960E+02,8.999506E+01,0.000000E+00 +2314128,fr,1,3.950000E+00,7.964080E+00,4.616860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999119E+01,0.000000E+00 +2314129,fr,1,3.950000E+00,7.964080E+00,4.616860E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999119E+01,0.000000E+00 +2314132,fr,1,3.950000E+00,7.964080E+00,4.616860E+01,1.500000E+01,Active Shallow Crust,2.400200E+02,5.800537E+01,0.000000E+00 +2314140,fr,3,4.050000E+00,7.964080E+00,4.616860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998822E+01,0.000000E+00 +2314141,fr,2,4.050000E+00,7.964080E+00,4.616860E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998822E+01,0.000000E+00 +2314142,fr,1,4.050000E+00,7.964080E+00,4.616860E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998822E+01,0.000000E+00 +2314152,fr,1,4.150000E+00,7.964080E+00,4.616860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +2314154,fr,1,4.150000E+00,7.964080E+00,4.616860E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +2314164,fr,3,4.250000E+00,7.964080E+00,4.616860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +2314170,fr,2,4.250000E+00,7.964080E+00,4.616860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,-9.000000E+01 +2314176,fr,1,4.350000E+00,7.964080E+00,4.616860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +2314179,fr,1,4.350000E+00,7.964080E+00,4.616860E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.799599E+01,0.000000E+00 +2314180,fr,2,4.350000E+00,7.964080E+00,4.616860E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.799599E+01,0.000000E+00 +2314188,fr,1,4.450000E+00,7.964080E+00,4.616860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +2314189,fr,1,4.450000E+00,7.964080E+00,4.616860E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +2314224,fr,1,4.750000E+00,7.964080E+00,4.616860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +2314226,fr,1,4.750000E+00,7.964080E+00,4.616860E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +2314227,fr,1,4.750000E+00,7.964080E+00,4.616860E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.800445E+01,0.000000E+00 +2314260,fr,1,5.050000E+00,7.964080E+00,4.616860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2314344,fr,1,5.750000E+00,7.964080E+00,4.616860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2315040,fr,1,3.550000E+00,5.882660E+00,4.670075E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999309E+01,0.000000E+00 +2315041,fr,2,3.550000E+00,5.882660E+00,4.670075E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999309E+01,0.000000E+00 +2315052,fr,1,3.650000E+00,5.882660E+00,4.670075E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998767E+01,0.000000E+00 +2315078,fr,1,3.850000E+00,5.882660E+00,4.670075E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +2315088,fr,1,3.950000E+00,5.882660E+00,4.670075E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999127E+01,0.000000E+00 +2315112,fr,1,4.150000E+00,5.882660E+00,4.670075E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +2315125,fr,1,4.250000E+00,5.882660E+00,4.670075E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999073E+01,0.000000E+00 +2315126,fr,1,4.250000E+00,5.882660E+00,4.670075E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999073E+01,0.000000E+00 +2315129,fr,1,4.250000E+00,5.882660E+00,4.670075E+01,2.750000E+01,Active Shallow Crust,2.400075E+02,5.799420E+01,0.000000E+00 +2315520,fr,8,3.550000E+00,7.448970E+00,4.506221E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999287E+01,0.000000E+00 +2315521,fr,1,3.550000E+00,7.448970E+00,4.506221E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999287E+01,0.000000E+00 +2315523,fr,1,3.550000E+00,7.448970E+00,4.506221E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799929E+01,0.000000E+00 +2315524,fr,1,3.550000E+00,7.448970E+00,4.506221E+01,1.500000E+01,Active Shallow Crust,2.400114E+02,5.799929E+01,0.000000E+00 +2315529,fr,1,3.550000E+00,7.448970E+00,4.506221E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.999287E+01,0.000000E+00 +2315532,fr,5,3.650000E+00,7.448970E+00,4.506221E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998730E+01,0.000000E+00 +2315533,fr,1,3.650000E+00,7.448970E+00,4.506221E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998730E+01,0.000000E+00 +2315535,fr,3,3.650000E+00,7.448970E+00,4.506221E+01,5.000000E+00,Active Shallow Crust,2.400002E+02,5.801404E+01,0.000000E+00 +2315542,fr,1,3.650000E+00,7.448970E+00,4.506221E+01,1.500000E+01,Active Shallow Crust,1.289007E+02,8.996349E+01,0.000000E+00 +2315544,fr,5,3.750000E+00,7.448970E+00,4.506221E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +2315545,fr,3,3.750000E+00,7.448970E+00,4.506221E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +2315547,fr,1,3.750000E+00,7.448970E+00,4.506221E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.801806E+01,0.000000E+00 +2315550,fr,1,3.750000E+00,7.448970E+00,4.506221E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998856E+01,-9.000000E+01 +2315554,fr,1,3.750000E+00,7.448970E+00,4.506221E+01,1.500000E+01,Active Shallow Crust,1.288973E+02,8.996747E+01,0.000000E+00 +2315556,fr,3,3.850000E+00,7.448970E+00,4.506221E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2315557,fr,1,3.850000E+00,7.448970E+00,4.506221E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2315559,fr,1,3.850000E+00,7.448970E+00,4.506221E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799691E+01,0.000000E+00 +2315568,fr,2,3.950000E+00,7.448970E+00,4.506221E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999101E+01,0.000000E+00 +2315569,fr,2,3.950000E+00,7.448970E+00,4.506221E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999101E+01,0.000000E+00 +2315573,fr,1,3.950000E+00,7.448970E+00,4.506221E+01,2.750000E+01,Active Shallow Crust,2.400199E+02,5.800478E+01,0.000000E+00 +2315574,fr,1,3.950000E+00,7.448970E+00,4.506221E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,-9.000000E+01 +2315580,fr,2,4.050000E+00,7.448970E+00,4.506221E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999199E+01,0.000000E+00 +2315581,fr,1,4.050000E+00,7.448970E+00,4.506221E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999199E+01,0.000000E+00 +2315584,fr,1,4.050000E+00,7.448970E+00,4.506221E+01,1.500000E+01,Active Shallow Crust,2.400056E+02,5.800585E+01,0.000000E+00 +2315595,fr,1,4.150000E+00,7.448970E+00,4.506221E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.799721E+01,0.000000E+00 +2315598,fr,1,4.150000E+00,7.448970E+00,4.506221E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,-9.000000E+01 +2315601,fr,1,4.150000E+00,7.448970E+00,4.506221E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.999464E+01,0.000000E+00 +2315610,fr,1,4.250000E+00,7.448970E+00,4.506221E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,-9.000000E+01 +2315616,fr,1,4.350000E+00,7.448970E+00,4.506221E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +2315628,fr,3,4.450000E+00,7.448970E+00,4.506221E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +2315629,fr,1,4.450000E+00,7.448970E+00,4.506221E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +2315631,fr,1,4.450000E+00,7.448970E+00,4.506221E+01,5.000000E+00,Active Shallow Crust,2.400052E+02,5.799411E+01,0.000000E+00 +2315653,fr,1,4.650000E+00,7.448970E+00,4.506221E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2315658,fr,1,4.650000E+00,7.448970E+00,4.506221E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +2315664,fr,2,4.750000E+00,7.448970E+00,4.506221E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +2315669,fr,1,4.750000E+00,7.448970E+00,4.506221E+01,2.750000E+01,Active Shallow Crust,2.400068E+02,5.800437E+01,0.000000E+00 +2315671,fr,1,4.750000E+00,7.448970E+00,4.506221E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998914E+01,-9.000000E+01 +2315679,fr,1,4.850000E+00,7.448970E+00,4.506221E+01,5.000000E+00,Active Shallow Crust,2.400166E+02,5.800219E+01,0.000000E+00 +2315688,fr,1,4.950000E+00,7.448970E+00,4.506221E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +2315698,fr,1,4.950000E+00,7.448970E+00,4.506221E+01,1.500000E+01,Active Shallow Crust,1.288904E+02,8.998972E+01,0.000000E+00 +2315748,fr,1,5.450000E+00,7.448970E+00,4.506221E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +2315820,fr,1,6.050000E+00,7.448971E+00,4.506221E+01,5.357596E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2316000,fr,1,3.550000E+00,-1.495890E+00,4.343033E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +2316001,fr,2,3.550000E+00,-1.495890E+00,4.343033E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +2316024,fr,3,3.750000E+00,-1.495890E+00,4.343033E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +2316036,fr,2,3.850000E+00,-1.495890E+00,4.343033E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +2316049,fr,1,3.950000E+00,-1.495890E+00,4.343033E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +2316057,fr,1,3.950000E+00,-1.495890E+00,4.343033E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.999364E+01,0.000000E+00 +2316097,fr,1,4.350000E+00,-1.495890E+00,4.343033E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +2316108,fr,1,4.450000E+00,-1.495890E+00,4.343033E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +2316168,fr,1,4.950000E+00,-1.495890E+00,4.343033E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2316207,fr,1,5.250000E+00,-1.495890E+00,4.343033E+01,5.000000E+00,Active Shallow Crust,2.400186E+02,5.799994E+01,0.000000E+00 +2316483,fr,1,3.550000E+00,5.144600E-01,4.806964E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799817E+01,0.000000E+00 +2316492,fr,1,3.650000E+00,5.144600E-01,4.806964E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +2316505,fr,2,3.750000E+00,5.144600E-01,4.806964E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2316974,fr,1,3.650000E+00,-1.000850E+00,4.983318E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2316978,fr,1,3.650000E+00,-1.000850E+00,4.983318E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,-9.000000E+01 +2316981,fr,1,3.650000E+00,-1.000850E+00,4.983318E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.996346E+01,0.000000E+00 +2317000,fr,1,3.850000E+00,-1.000850E+00,4.983318E+01,1.500000E+01,Active Shallow Crust,2.400112E+02,5.799795E+01,0.000000E+00 +2317003,fr,1,3.850000E+00,-1.000850E+00,4.983318E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,-9.000000E+01 +2317068,fr,1,4.450000E+00,-1.000850E+00,4.983318E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +2317074,fr,1,4.450000E+00,-1.000850E+00,4.983318E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +2317101,fr,1,4.650000E+00,-1.000850E+00,4.983318E+01,5.000000E+00,Active Shallow Crust,1.288902E+02,8.998695E+01,0.000000E+00 +2317440,fr,1,3.550000E+00,8.395960E+00,4.802284E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998651E+01,0.000000E+00 +2317449,fr,1,3.550000E+00,8.395960E+00,4.802284E+01,5.000000E+00,Active Shallow Crust,1.288990E+02,8.999326E+01,0.000000E+00 +2317457,fr,1,3.650000E+00,8.395960E+00,4.802284E+01,2.750000E+01,Active Shallow Crust,2.400011E+02,5.801416E+01,0.000000E+00 +2317465,fr,1,3.750000E+00,8.395960E+00,4.802284E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +2317467,fr,1,3.750000E+00,8.395960E+00,4.802284E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.801910E+01,0.000000E+00 +2317476,fr,1,3.850000E+00,8.395960E+00,4.802284E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +2317489,fr,1,3.950000E+00,8.395960E+00,4.802284E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999149E+01,0.000000E+00 +2317500,fr,1,4.050000E+00,8.395960E+00,4.802284E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999242E+01,0.000000E+00 +2317536,fr,1,4.350000E+00,8.395960E+00,4.802284E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +2317548,fr,1,4.450000E+00,8.395960E+00,4.802284E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +2317589,fr,1,4.750000E+00,8.395960E+00,4.802284E+01,2.750000E+01,Active Shallow Crust,2.400084E+02,5.800496E+01,0.000000E+00 +2317632,fr,1,5.150000E+00,8.395960E+00,4.802284E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +2317728,fr,1,5.950000E+00,8.395960E+00,4.802284E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +2317920,fr,1,3.550000E+00,1.518730E+00,4.733144E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2317924,fr,1,3.550000E+00,1.518730E+00,4.733144E+01,1.500000E+01,Active Shallow Crust,2.400123E+02,5.799820E+01,0.000000E+00 +2317932,fr,1,3.650000E+00,1.518730E+00,4.733144E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +2317933,fr,1,3.650000E+00,1.518730E+00,4.733144E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +2317992,fr,2,4.150000E+00,1.518730E+00,4.733144E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +2318005,fr,1,4.250000E+00,1.518730E+00,4.733144E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2318022,fr,1,4.350000E+00,1.518730E+00,4.733144E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,-9.000000E+01 +2318032,fr,1,4.450000E+00,1.518730E+00,4.733144E+01,1.500000E+01,Active Shallow Crust,2.400055E+02,5.799475E+01,0.000000E+00 +2318469,fr,1,4.050000E+00,3.989320E+00,4.618213E+01,5.000000E+00,Active Shallow Crust,1.288906E+02,8.999411E+01,0.000000E+00 +2318535,fr,1,4.650000E+00,3.989320E+00,4.618213E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799425E+01,0.000000E+00 +2318544,fr,1,4.750000E+00,3.989320E+00,4.618213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +2318562,fr,1,4.850000E+00,3.989320E+00,4.618213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,-9.000000E+01 +2318673,fr,1,5.750000E+00,3.989320E+00,4.618213E+01,5.000000E+00,Active Shallow Crust,1.288743E+02,8.998854E+01,0.000000E+00 +2318881,fr,1,3.550000E+00,7.378230E+00,4.558013E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999294E+01,0.000000E+00 +2318893,fr,1,3.650000E+00,7.378230E+00,4.558013E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998742E+01,0.000000E+00 +2318894,fr,1,3.650000E+00,7.378230E+00,4.558013E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998742E+01,0.000000E+00 +2318917,fr,1,3.850000E+00,7.378230E+00,4.558013E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2318919,fr,1,3.850000E+00,7.378230E+00,4.558013E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799723E+01,0.000000E+00 +2318964,fr,1,4.250000E+00,7.378230E+00,4.558013E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +2318977,fr,1,4.350000E+00,7.378230E+00,4.558013E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998876E+01,0.000000E+00 +2319360,fr,1,3.550000E+00,3.557750E+00,5.194959E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +2319364,fr,1,3.550000E+00,3.557750E+00,5.194959E+01,1.500000E+01,Active Shallow Crust,2.400127E+02,5.799831E+01,0.000000E+00 +2319396,fr,1,3.850000E+00,3.557750E+00,5.194959E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998900E+01,0.000000E+00 +2319493,fr,1,4.650000E+00,3.557750E+00,5.194959E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +2319840,fr,1,3.550000E+00,2.753530E+00,4.638189E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +2319864,fr,1,3.750000E+00,2.753530E+00,4.638189E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +2319865,fr,1,3.750000E+00,2.753530E+00,4.638189E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +2319884,fr,1,3.850000E+00,2.753530E+00,4.638189E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +2319912,fr,1,4.150000E+00,2.753530E+00,4.638189E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +2319913,fr,1,4.150000E+00,2.753530E+00,4.638189E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +2319957,fr,1,4.450000E+00,2.753530E+00,4.638189E+01,5.000000E+00,Active Shallow Crust,1.288924E+02,8.999383E+01,0.000000E+00 +2320009,fr,1,4.950000E+00,2.753530E+00,4.638189E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +2320014,fr,1,4.950000E+00,2.753530E+00,4.638189E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,-9.000000E+01 +2320137,fr,1,5.950000E+00,2.753530E+00,4.638189E+01,5.000000E+00,Active Shallow Crust,1.288649E+02,8.999014E+01,0.000000E+00 +2320320,fr,1,3.550000E+00,6.067600E-01,4.714244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +2320321,fr,1,3.550000E+00,6.067600E-01,4.714244E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +2320326,fr,2,3.550000E+00,6.067600E-01,4.714244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +2320332,fr,1,3.650000E+00,6.067600E-01,4.714244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2320333,fr,1,3.650000E+00,6.067600E-01,4.714244E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2320340,fr,1,3.650000E+00,6.067600E-01,4.714244E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,-9.000000E+01 +2320346,fr,1,3.750000E+00,6.067600E-01,4.714244E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +2320353,fr,2,3.750000E+00,6.067600E-01,4.714244E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996738E+01,0.000000E+00 +2320356,fr,1,3.850000E+00,6.067600E-01,4.714244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +2320370,fr,1,3.950000E+00,6.067600E-01,4.714244E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +2320380,fr,1,4.050000E+00,6.067600E-01,4.714244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2320392,fr,1,4.150000E+00,6.067600E-01,4.714244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +2320417,fr,1,4.350000E+00,6.067600E-01,4.714244E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2320426,fr,1,4.350000E+00,6.067600E-01,4.714244E+01,1.500000E+01,Active Shallow Crust,1.288977E+02,8.998281E+01,0.000000E+00 +2320430,fr,1,4.450000E+00,6.067600E-01,4.714244E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2320800,fr,2,3.550000E+00,5.058250E+00,4.436973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999279E+01,0.000000E+00 +2320802,fr,1,3.550000E+00,5.058250E+00,4.436973E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999279E+01,0.000000E+00 +2320809,fr,1,3.550000E+00,5.058250E+00,4.436973E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.999279E+01,0.000000E+00 +2320812,fr,2,3.650000E+00,5.058250E+00,4.436973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998715E+01,0.000000E+00 +2320813,fr,1,3.650000E+00,5.058250E+00,4.436973E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998715E+01,0.000000E+00 +2320824,fr,1,3.750000E+00,5.058250E+00,4.436973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998855E+01,0.000000E+00 +2320826,fr,1,3.750000E+00,5.058250E+00,4.436973E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998855E+01,0.000000E+00 +2320836,fr,1,3.850000E+00,5.058250E+00,4.436973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +2320837,fr,1,3.850000E+00,5.058250E+00,4.436973E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +2320846,fr,1,3.850000E+00,5.058250E+00,4.436973E+01,1.500000E+01,Active Shallow Crust,1.288964E+02,8.999235E+01,0.000000E+00 +2320848,fr,1,3.950000E+00,5.058250E+00,4.436973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +2320857,fr,1,3.950000E+00,5.058250E+00,4.436973E+01,5.000000E+00,Active Shallow Crust,1.289017E+02,8.999318E+01,0.000000E+00 +2320860,fr,1,4.050000E+00,5.058250E+00,4.436973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999189E+01,0.000000E+00 +2320863,fr,1,4.050000E+00,5.058250E+00,4.436973E+01,5.000000E+00,Active Shallow Crust,2.400062E+02,5.800573E+01,0.000000E+00 +2320866,fr,1,4.050000E+00,5.058250E+00,4.436973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999180E+01,-9.000000E+01 +2320869,fr,1,4.050000E+00,5.058250E+00,4.436973E+01,5.000000E+00,Active Shallow Crust,1.288900E+02,8.999392E+01,0.000000E+00 +2320884,fr,2,4.250000E+00,5.058250E+00,4.436973E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +2320918,fr,1,4.450000E+00,5.058250E+00,4.436973E+01,1.500000E+01,Active Shallow Crust,1.288925E+02,8.999361E+01,0.000000E+00 +2320937,fr,1,4.650000E+00,5.058250E+00,4.436973E+01,2.750000E+01,Active Shallow Crust,2.400103E+02,5.799419E+01,0.000000E+00 +2320958,fr,1,4.850000E+00,5.058250E+00,4.436973E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +2321006,fr,1,5.250000E+00,5.058250E+00,4.436973E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2321112,fr,1,6.150000E+00,5.058252E+00,4.436973E+01,6.011322E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2321280,fr,1,3.550000E+00,4.719970E+00,4.511324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999288E+01,0.000000E+00 +2321283,fr,1,3.550000E+00,4.719970E+00,4.511324E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.799900E+01,0.000000E+00 +2321293,fr,2,3.650000E+00,4.719970E+00,4.511324E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998731E+01,0.000000E+00 +2321304,fr,1,3.750000E+00,4.719970E+00,4.511324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +2321308,fr,1,3.750000E+00,4.719970E+00,4.511324E+01,1.500000E+01,Active Shallow Crust,2.400072E+02,5.801782E+01,0.000000E+00 +2321313,fr,1,3.750000E+00,4.719970E+00,4.511324E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.996747E+01,0.000000E+00 +2321328,fr,1,3.950000E+00,4.719970E+00,4.511324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999102E+01,0.000000E+00 +2321340,fr,2,4.050000E+00,4.719970E+00,4.511324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999200E+01,0.000000E+00 +2321352,fr,1,4.150000E+00,4.719970E+00,4.511324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +2321388,fr,1,4.450000E+00,4.719970E+00,4.511324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +2321412,fr,1,4.650000E+00,4.719970E+00,4.511324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2321460,fr,1,5.050000E+00,4.719970E+00,4.511324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2321760,fr,2,3.550000E+00,5.599890E+00,4.364538E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999271E+01,0.000000E+00 +2321761,fr,1,3.550000E+00,5.599890E+00,4.364538E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999271E+01,0.000000E+00 +2321767,fr,1,3.550000E+00,5.599890E+00,4.364538E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999262E+01,-9.000000E+01 +2321770,fr,1,3.550000E+00,5.599890E+00,4.364538E+01,1.500000E+01,Active Shallow Crust,1.288967E+02,8.999271E+01,0.000000E+00 +2321771,fr,1,3.550000E+00,5.599890E+00,4.364538E+01,2.750000E+01,Active Shallow Crust,1.288967E+02,8.999271E+01,0.000000E+00 +2321772,fr,1,3.650000E+00,5.599890E+00,4.364538E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998699E+01,0.000000E+00 +2321773,fr,1,3.650000E+00,5.599890E+00,4.364538E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998699E+01,0.000000E+00 +2321781,fr,2,3.650000E+00,5.599890E+00,4.364538E+01,5.000000E+00,Active Shallow Crust,1.289016E+02,8.996347E+01,0.000000E+00 +2321784,fr,2,3.750000E+00,5.599890E+00,4.364538E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998841E+01,0.000000E+00 +2321785,fr,1,3.750000E+00,5.599890E+00,4.364538E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998841E+01,0.000000E+00 +2321794,fr,1,3.750000E+00,5.599890E+00,4.364538E+01,1.500000E+01,Active Shallow Crust,1.288964E+02,8.996745E+01,0.000000E+00 +2321806,fr,1,3.850000E+00,5.599890E+00,4.364538E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.999225E+01,0.000000E+00 +2321808,fr,2,3.950000E+00,5.599890E+00,4.364538E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999079E+01,0.000000E+00 +2321812,fr,1,3.950000E+00,5.599890E+00,4.364538E+01,1.500000E+01,Active Shallow Crust,2.400191E+02,5.800536E+01,0.000000E+00 +2321817,fr,1,3.950000E+00,5.599890E+00,4.364538E+01,5.000000E+00,Active Shallow Crust,1.289018E+02,8.999310E+01,0.000000E+00 +2321821,fr,1,4.050000E+00,5.599890E+00,4.364538E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999179E+01,0.000000E+00 +2321823,fr,1,4.050000E+00,5.599890E+00,4.364538E+01,5.000000E+00,Active Shallow Crust,2.400052E+02,5.800579E+01,0.000000E+00 +2321832,fr,1,4.150000E+00,5.599890E+00,4.364538E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998903E+01,0.000000E+00 +2321841,fr,1,4.150000E+00,5.599890E+00,4.364538E+01,5.000000E+00,Active Shallow Crust,1.288984E+02,8.999268E+01,0.000000E+00 +2321842,fr,1,4.150000E+00,5.599890E+00,4.364538E+01,1.500000E+01,Active Shallow Crust,1.288984E+02,8.999268E+01,0.000000E+00 +2321844,fr,1,4.250000E+00,5.599890E+00,4.364538E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +2321858,fr,1,4.350000E+00,5.599890E+00,4.364538E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +2321868,fr,1,4.450000E+00,5.599890E+00,4.364538E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +2321913,fr,1,4.750000E+00,5.599890E+00,4.364538E+01,5.000000E+00,Active Shallow Crust,1.288896E+02,8.998801E+01,0.000000E+00 +2321916,fr,1,4.850000E+00,5.599890E+00,4.364538E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2321928,fr,1,4.950000E+00,5.599890E+00,4.364538E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2321981,fr,1,5.350000E+00,5.599890E+00,4.364538E+01,2.750000E+01,Active Shallow Crust,2.400232E+02,5.799751E+01,0.000000E+00 +2322051,fr,1,5.950000E+00,5.599890E+00,4.364538E+01,5.000000E+00,Active Shallow Crust,2.400470E+02,5.799993E+01,0.000000E+00 +2322240,fr,1,3.550000E+00,1.330630E+00,4.086829E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +2322252,fr,2,3.650000E+00,1.330630E+00,4.086829E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2322266,fr,1,3.750000E+00,1.330630E+00,4.086829E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +2322274,fr,1,3.750000E+00,1.330630E+00,4.086829E+01,1.500000E+01,Active Shallow Crust,1.288973E+02,8.996739E+01,0.000000E+00 +2322285,fr,1,3.850000E+00,1.330630E+00,4.086829E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999393E+01,0.000000E+00 +2322321,fr,1,4.150000E+00,1.330630E+00,4.086829E+01,5.000000E+00,Active Shallow Crust,1.288982E+02,8.999379E+01,0.000000E+00 +2322323,fr,1,4.150000E+00,1.330630E+00,4.086829E+01,2.750000E+01,Active Shallow Crust,1.288982E+02,8.999379E+01,0.000000E+00 +2322349,fr,1,4.450000E+00,1.330630E+00,4.086829E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2322397,fr,1,4.850000E+00,1.330630E+00,4.086829E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +2323200,fr,2,3.550000E+00,6.769570E+00,5.109386E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998734E+01,0.000000E+00 +2323201,fr,1,3.550000E+00,6.769570E+00,5.109386E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998734E+01,0.000000E+00 +2323212,fr,1,3.650000E+00,6.769570E+00,5.109386E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998871E+01,0.000000E+00 +2323224,fr,1,3.750000E+00,6.769570E+00,5.109386E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2323236,fr,1,3.850000E+00,6.769570E+00,5.109386E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +2323248,fr,1,3.950000E+00,6.769570E+00,5.109386E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998801E+01,0.000000E+00 +2323254,fr,1,3.950000E+00,6.769570E+00,5.109386E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999191E+01,-9.000000E+01 +2323284,fr,2,4.250000E+00,6.769570E+00,5.109386E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +2323291,fr,1,4.250000E+00,6.769570E+00,5.109386E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999142E+01,-9.000000E+01 +2323296,fr,1,4.350000E+00,6.769570E+00,5.109386E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2323308,fr,1,4.450000E+00,6.769570E+00,5.109386E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999101E+01,0.000000E+00 +2323309,fr,1,4.450000E+00,6.769570E+00,5.109386E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999101E+01,0.000000E+00 +2323320,fr,2,4.550000E+00,6.769570E+00,5.109386E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2323680,fr,1,3.550000E+00,-2.572060E+00,4.317085E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998897E+01,0.000000E+00 +2323687,fr,1,3.550000E+00,-2.572060E+00,4.317085E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998884E+01,-9.000000E+01 +2323692,fr,2,3.650000E+00,-2.572060E+00,4.317085E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2323695,fr,1,3.650000E+00,-2.572060E+00,4.317085E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801241E+01,0.000000E+00 +2323704,fr,1,3.750000E+00,-2.572060E+00,4.317085E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +2323720,fr,1,3.850000E+00,-2.572060E+00,4.317085E+01,1.500000E+01,Active Shallow Crust,2.400108E+02,5.799774E+01,0.000000E+00 +2323740,fr,1,4.050000E+00,-2.572060E+00,4.317085E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +2323743,fr,1,4.050000E+00,-2.572060E+00,4.317085E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.800558E+01,0.000000E+00 +2323755,fr,1,4.150000E+00,-2.572060E+00,4.317085E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.799722E+01,0.000000E+00 +2323764,fr,1,4.250000E+00,-2.572060E+00,4.317085E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2323765,fr,1,4.250000E+00,-2.572060E+00,4.317085E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2323826,fr,1,4.750000E+00,-2.572060E+00,4.317085E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +2324184,fr,1,3.750000E+00,-5.896680E+00,4.721991E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998912E+01,0.000000E+00 +2324653,fr,1,3.650000E+00,1.493190E+00,4.799266E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998947E+01,0.000000E+00 +2324664,fr,1,3.750000E+00,1.493190E+00,4.799266E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +2324665,fr,1,3.750000E+00,1.493190E+00,4.799266E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +2324733,fr,1,4.250000E+00,1.493190E+00,4.799266E+01,5.000000E+00,Active Shallow Crust,1.288941E+02,8.998088E+01,0.000000E+00 +2324748,fr,1,4.450000E+00,1.493190E+00,4.799266E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +2324772,fr,1,4.650000E+00,1.493190E+00,4.799266E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2324802,fr,1,4.850000E+00,1.493190E+00,4.799266E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +2325125,fr,1,3.550000E+00,5.761260E+00,5.206287E+01,2.750000E+01,Active Shallow Crust,2.400128E+02,5.799872E+01,0.000000E+00 +2325126,fr,1,3.550000E+00,5.761260E+00,5.206287E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998746E+01,-9.000000E+01 +2325133,fr,1,3.650000E+00,5.761260E+00,5.206287E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +2325144,fr,1,3.750000E+00,5.761260E+00,5.206287E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +2325240,fr,1,4.550000E+00,5.761260E+00,5.206287E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2325600,fr,1,3.550000E+00,1.314940E+00,4.517984E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +2325636,fr,1,3.850000E+00,1.314940E+00,4.517984E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2325648,fr,1,3.950000E+00,1.314940E+00,4.517984E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2326081,fr,2,3.550000E+00,6.315100E+00,4.386866E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999273E+01,0.000000E+00 +2326091,fr,1,3.550000E+00,6.315100E+00,4.386866E+01,2.750000E+01,Active Shallow Crust,1.288960E+02,8.999273E+01,0.000000E+00 +2326104,fr,1,3.750000E+00,6.315100E+00,4.386866E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998845E+01,0.000000E+00 +2326105,fr,1,3.750000E+00,6.315100E+00,4.386866E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998845E+01,0.000000E+00 +2326113,fr,1,3.750000E+00,6.315100E+00,4.386866E+01,5.000000E+00,Active Shallow Crust,1.288973E+02,8.996745E+01,0.000000E+00 +2326116,fr,2,3.850000E+00,6.315100E+00,4.386866E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +2326117,fr,1,3.850000E+00,6.315100E+00,4.386866E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +2326143,fr,2,4.050000E+00,6.315100E+00,4.386866E+01,5.000000E+00,Active Shallow Crust,2.400059E+02,5.800550E+01,0.000000E+00 +2326154,fr,1,4.150000E+00,6.315100E+00,4.386866E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +2326164,fr,1,4.250000E+00,6.315100E+00,4.386866E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +2326167,fr,1,4.250000E+00,6.315100E+00,4.386866E+01,5.000000E+00,Active Shallow Crust,2.400070E+02,5.799431E+01,0.000000E+00 +2326170,fr,1,4.250000E+00,6.315100E+00,4.386866E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +2326179,fr,1,4.350000E+00,6.315100E+00,4.386866E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799593E+01,0.000000E+00 +2326188,fr,1,4.450000E+00,6.315100E+00,4.386866E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2326189,fr,1,4.450000E+00,6.315100E+00,4.386866E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2326200,fr,1,4.550000E+00,6.315100E+00,4.386866E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +2326212,fr,1,4.650000E+00,6.315100E+00,4.386866E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2326275,fr,1,5.150000E+00,6.315100E+00,4.386866E+01,5.000000E+00,Active Shallow Crust,2.400182E+02,5.799958E+01,0.000000E+00 +2326320,fr,1,5.550000E+00,6.315100E+00,4.386866E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2326561,fr,1,3.550000E+00,3.195890E+00,4.911918E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2326566,fr,1,3.550000E+00,3.195890E+00,4.911918E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +2326580,fr,1,3.650000E+00,3.195890E+00,4.911918E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999107E+01,-9.000000E+01 +2326634,fr,1,4.150000E+00,3.195890E+00,4.911918E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2326644,fr,1,4.250000E+00,3.195890E+00,4.911918E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +2326709,fr,1,4.750000E+00,3.195890E+00,4.911918E+01,2.750000E+01,Active Shallow Crust,2.400087E+02,5.800455E+01,0.000000E+00 +2326860,fr,1,6.050000E+00,3.195891E+00,4.911918E+01,5.357596E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2327040,fr,2,3.550000E+00,1.914360E+00,4.203891E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +2327049,fr,1,3.550000E+00,1.914360E+00,4.203891E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.999345E+01,0.000000E+00 +2327052,fr,1,3.650000E+00,1.914360E+00,4.203891E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2327067,fr,1,3.750000E+00,1.914360E+00,4.203891E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801755E+01,0.000000E+00 +2327070,fr,1,3.750000E+00,1.914360E+00,4.203891E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998947E+01,-9.000000E+01 +2327076,fr,1,3.850000E+00,1.914360E+00,4.203891E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +2327077,fr,1,3.850000E+00,1.914360E+00,4.203891E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +2327178,fr,1,4.650000E+00,1.914360E+00,4.203891E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,-9.000000E+01 +2327184,fr,1,4.750000E+00,1.914360E+00,4.203891E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +2327421,fr,1,6.650000E+00,1.914353E+00,4.203891E+01,1.068981E+01,Active Shallow Crust,1.288324E+02,8.998987E+01,0.000000E+00 +2328480,fr,2,3.550000E+00,1.301750E+00,4.153561E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +2328496,fr,1,3.650000E+00,1.301750E+00,4.153561E+01,1.500000E+01,Active Shallow Crust,2.400005E+02,5.801313E+01,0.000000E+00 +2328516,fr,1,3.850000E+00,1.301750E+00,4.153561E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +2328553,fr,1,4.150000E+00,1.301750E+00,4.153561E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +2328579,fr,1,4.350000E+00,1.301750E+00,4.153561E+01,5.000000E+00,Active Shallow Crust,2.400072E+02,5.799576E+01,0.000000E+00 +2328684,fr,1,5.250000E+00,1.301750E+00,4.153561E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +2328960,fr,2,3.550000E+00,-1.718640E+00,4.655853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +2328961,fr,1,3.550000E+00,-1.718640E+00,4.655853E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +2328984,fr,1,3.750000E+00,-1.718640E+00,4.655853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +2328993,fr,1,3.750000E+00,-1.718640E+00,4.655853E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.996737E+01,0.000000E+00 +2328997,fr,1,3.850000E+00,-1.718640E+00,4.655853E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +2329010,fr,1,3.950000E+00,-1.718640E+00,4.655853E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +2329016,fr,1,3.950000E+00,-1.718640E+00,4.655853E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +2329056,fr,2,4.350000E+00,-1.718640E+00,4.655853E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +2329440,fr,1,3.550000E+00,4.654310E+00,4.983208E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998699E+01,0.000000E+00 +2329488,fr,1,3.950000E+00,4.654310E+00,4.983208E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999179E+01,0.000000E+00 +2329644,fr,1,5.250000E+00,4.654310E+00,4.983208E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +2329920,fr,2,3.550000E+00,3.224230E+00,4.619695E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +2329944,fr,1,3.750000E+00,3.224230E+00,4.619695E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +2329953,fr,1,3.750000E+00,3.224230E+00,4.619695E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.996722E+01,0.000000E+00 +2329956,fr,1,3.850000E+00,3.224230E+00,4.619695E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +2329981,fr,2,4.050000E+00,3.224230E+00,4.619695E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +2329989,fr,1,4.050000E+00,3.224230E+00,4.619695E+01,5.000000E+00,Active Shallow Crust,1.288901E+02,8.999411E+01,0.000000E+00 +2329993,fr,1,4.150000E+00,3.224230E+00,4.619695E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +2330015,fr,1,4.250000E+00,3.224230E+00,4.619695E+01,2.750000E+01,Active Shallow Crust,1.288943E+02,8.998093E+01,0.000000E+00 +2330052,fr,1,4.650000E+00,3.224230E+00,4.619695E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2330126,fr,1,5.250000E+00,3.224230E+00,4.619695E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2330412,fr,1,3.650000E+00,6.866100E+00,5.122779E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +2330415,fr,1,3.650000E+00,6.866100E+00,5.122779E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801380E+01,0.000000E+00 +2330424,fr,2,3.750000E+00,6.866100E+00,5.122779E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2330449,fr,1,3.950000E+00,6.866100E+00,5.122779E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998804E+01,0.000000E+00 +2330514,fr,1,4.450000E+00,6.866100E+00,5.122779E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,-9.000000E+01 +2330546,fr,1,4.750000E+00,6.866100E+00,5.122779E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +2331360,fr,1,3.550000E+00,7.234900E-01,4.146425E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +2331361,fr,2,3.550000E+00,7.234900E-01,4.146425E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +2331372,fr,1,3.650000E+00,7.234900E-01,4.146425E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +2331374,fr,1,3.650000E+00,7.234900E-01,4.146425E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +2331397,fr,1,3.850000E+00,7.234900E-01,4.146425E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2331852,fr,1,3.650000E+00,4.358730E+00,5.247476E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998905E+01,0.000000E+00 +2331912,fr,1,4.150000E+00,4.358730E+00,5.247476E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +2332321,fr,2,3.550000E+00,5.099520E+00,4.344632E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999268E+01,0.000000E+00 +2332328,fr,1,3.550000E+00,5.099520E+00,4.344632E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999259E+01,-9.000000E+01 +2332339,fr,1,3.650000E+00,5.099520E+00,4.344632E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998680E+01,-9.000000E+01 +2332341,fr,1,3.650000E+00,5.099520E+00,4.344632E+01,5.000000E+00,Active Shallow Crust,1.289011E+02,8.996346E+01,0.000000E+00 +2332356,fr,1,3.850000E+00,5.099520E+00,4.344632E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +2332368,fr,1,3.950000E+00,5.099520E+00,4.344632E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +2332399,fr,1,4.150000E+00,5.099520E+00,4.344632E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998886E+01,-9.000000E+01 +2332405,fr,1,4.250000E+00,5.099520E+00,4.344632E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +2332416,fr,1,4.350000E+00,5.099520E+00,4.344632E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +2332428,fr,1,4.450000E+00,5.099520E+00,4.344632E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +2332440,fr,1,4.550000E+00,5.099520E+00,4.344632E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +2332620,fr,1,6.050000E+00,5.099521E+00,4.344632E+01,5.357596E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2332800,fr,2,3.550000E+00,-8.649100E-01,4.703624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2332801,fr,1,3.550000E+00,-8.649100E-01,4.703624E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2332802,fr,1,3.550000E+00,-8.649100E-01,4.703624E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2332805,fr,1,3.550000E+00,-8.649100E-01,4.703624E+01,2.750000E+01,Active Shallow Crust,2.400121E+02,5.799809E+01,0.000000E+00 +2332809,fr,1,3.550000E+00,-8.649100E-01,4.703624E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999356E+01,0.000000E+00 +2332812,fr,1,3.650000E+00,-8.649100E-01,4.703624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2332826,fr,1,3.750000E+00,-8.649100E-01,4.703624E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +2332837,fr,1,3.850000E+00,-8.649100E-01,4.703624E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +2332838,fr,1,3.850000E+00,-8.649100E-01,4.703624E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +2332840,fr,1,3.850000E+00,-8.649100E-01,4.703624E+01,1.500000E+01,Active Shallow Crust,2.400109E+02,5.799786E+01,0.000000E+00 +2332842,fr,1,3.850000E+00,-8.649100E-01,4.703624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,-9.000000E+01 +2332845,fr,1,3.850000E+00,-8.649100E-01,4.703624E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.999392E+01,0.000000E+00 +2332848,fr,1,3.950000E+00,-8.649100E-01,4.703624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +2332853,fr,1,3.950000E+00,-8.649100E-01,4.703624E+01,2.750000E+01,Active Shallow Crust,2.400199E+02,5.800502E+01,0.000000E+00 +2332863,fr,1,4.050000E+00,-8.649100E-01,4.703624E+01,5.000000E+00,Active Shallow Crust,2.400060E+02,5.800588E+01,0.000000E+00 +2332872,fr,1,4.150000E+00,-8.649100E-01,4.703624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2332881,fr,1,4.150000E+00,-8.649100E-01,4.703624E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.999355E+01,0.000000E+00 +2332884,fr,1,4.250000E+00,-8.649100E-01,4.703624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2332920,fr,1,4.550000E+00,-8.649100E-01,4.703624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2332932,fr,1,4.650000E+00,-8.649100E-01,4.703624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2332934,fr,1,4.650000E+00,-8.649100E-01,4.703624E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2332946,fr,1,4.750000E+00,-8.649100E-01,4.703624E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2332956,fr,2,4.850000E+00,-8.649100E-01,4.703624E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2333076,fr,1,5.850000E+00,-8.649100E-01,4.703624E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999002E+01,0.000000E+00 +2333280,fr,2,3.550000E+00,-1.515190E+00,4.616872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +2333281,fr,1,3.550000E+00,-1.515190E+00,4.616872E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +2333282,fr,1,3.550000E+00,-1.515190E+00,4.616872E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +2333285,fr,1,3.550000E+00,-1.515190E+00,4.616872E+01,2.750000E+01,Active Shallow Crust,2.400121E+02,5.799837E+01,0.000000E+00 +2333286,fr,1,3.550000E+00,-1.515190E+00,4.616872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,-9.000000E+01 +2333293,fr,1,3.650000E+00,-1.515190E+00,4.616872E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +2333300,fr,1,3.650000E+00,-1.515190E+00,4.616872E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,-9.000000E+01 +2333301,fr,1,3.650000E+00,-1.515190E+00,4.616872E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.996352E+01,0.000000E+00 +2333307,fr,1,3.750000E+00,-1.515190E+00,4.616872E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.801770E+01,0.000000E+00 +2333318,fr,1,3.850000E+00,-1.515190E+00,4.616872E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +2333329,fr,1,3.950000E+00,-1.515190E+00,4.616872E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +2333349,fr,1,4.050000E+00,-1.515190E+00,4.616872E+01,5.000000E+00,Active Shallow Crust,1.288906E+02,8.999362E+01,0.000000E+00 +2333424,fr,1,4.750000E+00,-1.515190E+00,4.616872E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2333496,fr,1,5.350000E+00,-1.515190E+00,4.616872E+01,5.000000E+00,Active Shallow Crust,3.599999E+02,8.999010E+01,0.000000E+00 +2333760,fr,1,3.550000E+00,2.238000E-02,4.976149E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2333775,fr,1,3.650000E+00,2.238000E-02,4.976149E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801296E+01,0.000000E+00 +2333776,fr,1,3.650000E+00,2.238000E-02,4.976149E+01,1.500000E+01,Active Shallow Crust,2.400014E+02,5.801296E+01,0.000000E+00 +2333784,fr,1,3.750000E+00,2.238000E-02,4.976149E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2333808,fr,1,3.950000E+00,2.238000E-02,4.976149E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2333829,fr,1,4.050000E+00,2.238000E-02,4.976149E+01,5.000000E+00,Active Shallow Crust,1.288900E+02,8.999373E+01,0.000000E+00 +2333869,fr,1,4.450000E+00,2.238000E-02,4.976149E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2333899,fr,1,4.650000E+00,2.238000E-02,4.976149E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,-9.000000E+01 +2333958,fr,1,5.150000E+00,2.238000E-02,4.976149E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,-9.000000E+01 +2334240,fr,1,3.550000E+00,-4.297150E+00,4.449411E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999281E+01,0.000000E+00 +2334732,fr,1,3.650000E+00,2.889790E+00,4.962374E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +2334900,fr,1,5.050000E+00,2.889790E+00,4.962374E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +2335200,fr,1,3.550000E+00,1.413170E+00,4.995993E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +2335213,fr,1,3.650000E+00,1.413170E+00,4.995993E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2335236,fr,1,3.850000E+00,1.413170E+00,4.995993E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +2335248,fr,1,3.950000E+00,1.413170E+00,4.995993E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +2335249,fr,1,3.950000E+00,1.413170E+00,4.995993E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +2335260,fr,1,4.050000E+00,1.413170E+00,4.995993E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2335692,fr,1,3.650000E+00,5.502000E-01,4.185708E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2335728,fr,1,3.950000E+00,5.502000E-01,4.185708E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2336259,fr,1,4.350000E+00,-1.589620E+00,4.992725E+01,5.000000E+00,Active Shallow Crust,2.400092E+02,5.799614E+01,0.000000E+00 +2336280,fr,1,4.550000E+00,-1.589620E+00,4.992725E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +2336640,fr,2,3.550000E+00,3.853000E+00,4.393586E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +2336649,fr,1,3.550000E+00,3.853000E+00,4.393586E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.999274E+01,0.000000E+00 +2336652,fr,1,3.650000E+00,3.853000E+00,4.393586E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +2336655,fr,1,3.650000E+00,3.853000E+00,4.393586E+01,5.000000E+00,Active Shallow Crust,2.400002E+02,5.801335E+01,0.000000E+00 +2336688,fr,1,3.950000E+00,3.853000E+00,4.393586E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +2336754,fr,1,4.450000E+00,3.853000E+00,4.393586E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,-9.000000E+01 +2336757,fr,2,4.450000E+00,3.853000E+00,4.393586E+01,5.000000E+00,Active Shallow Crust,1.288927E+02,8.999356E+01,0.000000E+00 +2337168,fr,1,3.950000E+00,9.448330E+00,4.977328E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999178E+01,0.000000E+00 +2337600,fr,2,3.550000E+00,-8.991700E-01,4.581516E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +2337601,fr,3,3.550000E+00,-8.991700E-01,4.581516E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +2337639,fr,1,3.850000E+00,-8.991700E-01,4.581516E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799773E+01,0.000000E+00 +2337696,fr,1,4.350000E+00,-8.991700E-01,4.581516E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2337697,fr,1,4.350000E+00,-8.991700E-01,4.581516E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2337905,fr,1,6.050000E+00,-8.991700E-01,4.581516E+01,2.750000E+01,Active Shallow Crust,2.400553E+02,5.800000E+01,0.000000E+00 +2338105,fr,1,3.750000E+00,7.572600E-01,5.239412E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2338188,fr,1,4.450000E+00,7.572600E-01,5.239412E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +2338309,fr,1,5.450000E+00,7.572600E-01,5.239412E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2338560,fr,7,3.550000E+00,7.454090E+00,4.663208E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999307E+01,0.000000E+00 +2338561,fr,2,3.550000E+00,7.454090E+00,4.663208E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999307E+01,0.000000E+00 +2338562,fr,2,3.550000E+00,7.454090E+00,4.663208E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999307E+01,0.000000E+00 +2338569,fr,1,3.550000E+00,7.454090E+00,4.663208E+01,5.000000E+00,Active Shallow Crust,1.288955E+02,8.999307E+01,0.000000E+00 +2338570,fr,1,3.550000E+00,7.454090E+00,4.663208E+01,1.500000E+01,Active Shallow Crust,1.288955E+02,8.999307E+01,0.000000E+00 +2338572,fr,4,3.650000E+00,7.454090E+00,4.663208E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998766E+01,0.000000E+00 +2338573,fr,2,3.650000E+00,7.454090E+00,4.663208E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998766E+01,0.000000E+00 +2338574,fr,3,3.650000E+00,7.454090E+00,4.663208E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998766E+01,0.000000E+00 +2338576,fr,1,3.650000E+00,7.454090E+00,4.663208E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801261E+01,0.000000E+00 +2338577,fr,1,3.650000E+00,7.454090E+00,4.663208E+01,2.750000E+01,Active Shallow Crust,2.400011E+02,5.801252E+01,0.000000E+00 +2338578,fr,1,3.650000E+00,7.454090E+00,4.663208E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998751E+01,-9.000000E+01 +2338581,fr,3,3.650000E+00,7.454090E+00,4.663208E+01,5.000000E+00,Active Shallow Crust,1.289009E+02,8.996352E+01,0.000000E+00 +2338584,fr,3,3.750000E+00,7.454090E+00,4.663208E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998900E+01,0.000000E+00 +2338585,fr,1,3.750000E+00,7.454090E+00,4.663208E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998900E+01,0.000000E+00 +2338586,fr,1,3.750000E+00,7.454090E+00,4.663208E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998900E+01,0.000000E+00 +2338588,fr,1,3.750000E+00,7.454090E+00,4.663208E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.801763E+01,0.000000E+00 +2338593,fr,1,3.750000E+00,7.454090E+00,4.663208E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.996692E+01,0.000000E+00 +2338594,fr,1,3.750000E+00,7.454090E+00,4.663208E+01,1.500000E+01,Active Shallow Crust,1.288976E+02,8.996692E+01,0.000000E+00 +2338596,fr,1,3.850000E+00,7.454090E+00,4.663208E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2338597,fr,1,3.850000E+00,7.454090E+00,4.663208E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2338599,fr,3,3.850000E+00,7.454090E+00,4.663208E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799733E+01,0.000000E+00 +2338608,fr,2,3.950000E+00,7.454090E+00,4.663208E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +2338609,fr,1,3.950000E+00,7.454090E+00,4.663208E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +2338615,fr,1,3.950000E+00,7.454090E+00,4.663208E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999116E+01,-9.000000E+01 +2338618,fr,1,3.950000E+00,7.454090E+00,4.663208E+01,1.500000E+01,Active Shallow Crust,1.289003E+02,8.999563E+01,0.000000E+00 +2338620,fr,2,4.050000E+00,7.454090E+00,4.663208E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998832E+01,0.000000E+00 +2338621,fr,1,4.050000E+00,7.454090E+00,4.663208E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998832E+01,0.000000E+00 +2338623,fr,1,4.050000E+00,7.454090E+00,4.663208E+01,5.000000E+00,Active Shallow Crust,2.400065E+02,5.800507E+01,0.000000E+00 +2338624,fr,1,4.050000E+00,7.454090E+00,4.663208E+01,1.500000E+01,Active Shallow Crust,2.400065E+02,5.800504E+01,0.000000E+00 +2338626,fr,1,4.050000E+00,7.454090E+00,4.663208E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998818E+01,-9.000000E+01 +2338627,fr,1,4.050000E+00,7.454090E+00,4.663208E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998818E+01,-9.000000E+01 +2338632,fr,4,4.150000E+00,7.454090E+00,4.663208E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +2338633,fr,1,4.150000E+00,7.454090E+00,4.663208E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +2338638,fr,1,4.150000E+00,7.454090E+00,4.663208E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,-9.000000E+01 +2338644,fr,1,4.250000E+00,7.454090E+00,4.663208E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +2338645,fr,1,4.250000E+00,7.454090E+00,4.663208E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +2338648,fr,1,4.250000E+00,7.454090E+00,4.663208E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.799389E+01,0.000000E+00 +2338656,fr,2,4.350000E+00,7.454090E+00,4.663208E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +2338657,fr,1,4.350000E+00,7.454090E+00,4.663208E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +2338665,fr,1,4.350000E+00,7.454090E+00,4.663208E+01,5.000000E+00,Active Shallow Crust,1.288981E+02,8.998253E+01,0.000000E+00 +2338668,fr,1,4.450000E+00,7.454090E+00,4.663208E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2338669,fr,2,4.450000E+00,7.454090E+00,4.663208E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2338671,fr,1,4.450000E+00,7.454090E+00,4.663208E+01,5.000000E+00,Active Shallow Crust,2.400055E+02,5.799461E+01,0.000000E+00 +2338674,fr,1,4.450000E+00,7.454090E+00,4.663208E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +2338678,fr,1,4.450000E+00,7.454090E+00,4.663208E+01,1.500000E+01,Active Shallow Crust,1.288921E+02,8.999386E+01,0.000000E+00 +2338682,fr,1,4.550000E+00,7.454090E+00,4.663208E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998905E+01,0.000000E+00 +2338693,fr,1,4.650000E+00,7.454090E+00,4.663208E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +2338704,fr,2,4.750000E+00,7.454090E+00,4.663208E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +2338716,fr,1,4.850000E+00,7.454090E+00,4.663208E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +2338717,fr,1,4.850000E+00,7.454090E+00,4.663208E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +2338773,fr,1,5.250000E+00,7.454090E+00,4.663208E+01,5.000000E+00,Active Shallow Crust,1.288833E+02,8.998695E+01,0.000000E+00 +2338788,fr,1,5.450000E+00,7.454090E+00,4.663208E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +2339052,fr,1,3.650000E+00,2.691800E-01,4.127978E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +2339520,fr,5,3.550000E+00,8.623750E+00,4.714723E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998628E+01,0.000000E+00 +2339521,fr,2,3.550000E+00,8.623750E+00,4.714723E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998628E+01,0.000000E+00 +2339522,fr,1,3.550000E+00,8.623750E+00,4.714723E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998628E+01,0.000000E+00 +2339532,fr,4,3.650000E+00,8.623750E+00,4.714723E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998778E+01,0.000000E+00 +2339533,fr,1,3.650000E+00,8.623750E+00,4.714723E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998778E+01,0.000000E+00 +2339541,fr,1,3.650000E+00,8.623750E+00,4.714723E+01,5.000000E+00,Active Shallow Crust,1.289017E+02,8.996354E+01,0.000000E+00 +2339544,fr,2,3.750000E+00,8.623750E+00,4.714723E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +2339547,fr,1,3.750000E+00,8.623750E+00,4.714723E+01,5.000000E+00,Active Shallow Crust,2.400094E+02,5.801679E+01,0.000000E+00 +2339548,fr,1,3.750000E+00,8.623750E+00,4.714723E+01,1.500000E+01,Active Shallow Crust,2.400094E+02,5.801679E+01,0.000000E+00 +2339551,fr,1,3.750000E+00,8.623750E+00,4.714723E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998898E+01,-9.000000E+01 +2339554,fr,1,3.750000E+00,8.623750E+00,4.714723E+01,1.500000E+01,Active Shallow Crust,1.288983E+02,8.996616E+01,0.000000E+00 +2339556,fr,1,3.850000E+00,8.623750E+00,4.714723E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +2339568,fr,2,3.950000E+00,8.623750E+00,4.714723E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999135E+01,0.000000E+00 +2339569,fr,1,3.950000E+00,8.623750E+00,4.714723E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999135E+01,0.000000E+00 +2339580,fr,1,4.050000E+00,8.623750E+00,4.714723E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999229E+01,0.000000E+00 +2339584,fr,1,4.050000E+00,8.623750E+00,4.714723E+01,1.500000E+01,Active Shallow Crust,2.400076E+02,5.800444E+01,0.000000E+00 +2339592,fr,1,4.150000E+00,8.623750E+00,4.714723E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999313E+01,0.000000E+00 +2339607,fr,1,4.250000E+00,8.623750E+00,4.714723E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799437E+01,0.000000E+00 +2339610,fr,1,4.250000E+00,8.623750E+00,4.714723E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998760E+01,-9.000000E+01 +2339652,fr,1,4.650000E+00,8.623750E+00,4.714723E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998840E+01,0.000000E+00 +2339677,fr,1,4.850000E+00,8.623750E+00,4.714723E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +2339688,fr,1,4.950000E+00,8.623750E+00,4.714723E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998905E+01,0.000000E+00 +2339700,fr,1,5.050000E+00,8.623750E+00,4.714723E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +2339716,fr,1,5.150000E+00,8.623750E+00,4.714723E+01,1.500000E+01,Active Shallow Crust,2.400202E+02,5.799994E+01,0.000000E+00 +2339772,fr,1,5.650000E+00,8.623750E+00,4.714723E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +2340024,fr,1,3.750000E+00,-4.627800E-01,4.243856E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2340036,fr,1,3.850000E+00,-4.627800E-01,4.243856E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +2340063,fr,1,4.050000E+00,-4.627800E-01,4.243856E+01,5.000000E+00,Active Shallow Crust,2.400053E+02,5.800573E+01,0.000000E+00 +2340132,fr,1,4.650000E+00,-4.627800E-01,4.243856E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2340480,fr,1,3.550000E+00,5.138280E+00,4.116447E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999241E+01,0.000000E+00 +2340481,fr,1,3.550000E+00,5.138280E+00,4.116447E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999241E+01,0.000000E+00 +2340498,fr,1,3.650000E+00,5.138280E+00,4.116447E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999316E+01,-9.000000E+01 +2341035,fr,1,4.150000E+00,-1.200230E+00,4.166708E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.799704E+01,0.000000E+00 +2341095,fr,1,4.650000E+00,-1.200230E+00,4.166708E+01,5.000000E+00,Active Shallow Crust,2.400094E+02,5.799396E+01,0.000000E+00 +2341440,fr,1,3.550000E+00,5.954140E+00,4.900591E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998677E+01,0.000000E+00 +2341656,fr,1,5.350000E+00,5.954140E+00,4.900591E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2341920,fr,1,3.550000E+00,6.963100E-01,4.621079E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +2341932,fr,1,3.650000E+00,6.963100E-01,4.621079E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +2341940,fr,1,3.650000E+00,6.963100E-01,4.621079E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,-9.000000E+01 +2341945,fr,1,3.750000E+00,6.963100E-01,4.621079E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +2341956,fr,1,3.850000E+00,6.963100E-01,4.621079E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +2341968,fr,1,3.950000E+00,6.963100E-01,4.621079E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +2341980,fr,1,4.050000E+00,6.963100E-01,4.621079E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +2342006,fr,1,4.250000E+00,6.963100E-01,4.621079E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +2342052,fr,1,4.650000E+00,6.963100E-01,4.621079E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +2342061,fr,1,4.650000E+00,6.963100E-01,4.621079E+01,5.000000E+00,Active Shallow Crust,1.288912E+02,8.998702E+01,0.000000E+00 +2342064,fr,1,4.750000E+00,6.963100E-01,4.621079E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +2342124,fr,1,5.250000E+00,6.963100E-01,4.621079E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2342154,fr,1,5.450000E+00,6.963100E-01,4.621079E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +2342197,fr,1,5.850000E+00,6.963100E-01,4.621079E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2342412,fr,1,3.650000E+00,-7.539000E-01,5.063880E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2342424,fr,1,3.750000E+00,-7.539000E-01,5.063880E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +2342887,fr,1,3.550000E+00,-1.959500E-01,4.260348E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +2342892,fr,1,3.650000E+00,-1.959500E-01,4.260348E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2342894,fr,1,3.650000E+00,-1.959500E-01,4.260348E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2342901,fr,1,3.650000E+00,-1.959500E-01,4.260348E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996350E+01,0.000000E+00 +2342914,fr,1,3.750000E+00,-1.959500E-01,4.260348E+01,1.500000E+01,Active Shallow Crust,1.288970E+02,8.996734E+01,0.000000E+00 +2342917,fr,2,3.850000E+00,-1.959500E-01,4.260348E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2342941,fr,1,4.050000E+00,-1.959500E-01,4.260348E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2343361,fr,1,3.550000E+00,9.862300E-01,4.162723E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +2343364,fr,1,3.550000E+00,9.862300E-01,4.162723E+01,1.500000E+01,Active Shallow Crust,2.400118E+02,5.799812E+01,0.000000E+00 +2343387,fr,1,3.750000E+00,9.862300E-01,4.162723E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.801742E+01,0.000000E+00 +2343415,fr,1,3.950000E+00,9.862300E-01,4.162723E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,-9.000000E+01 +2343447,fr,1,4.250000E+00,9.862300E-01,4.162723E+01,5.000000E+00,Active Shallow Crust,2.400066E+02,5.799395E+01,0.000000E+00 +2343840,fr,1,3.550000E+00,-2.280000E-02,4.371484E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2343842,fr,1,3.550000E+00,-2.280000E-02,4.371484E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2343852,fr,1,3.650000E+00,-2.280000E-02,4.371484E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2343862,fr,1,3.650000E+00,-2.280000E-02,4.371484E+01,1.500000E+01,Active Shallow Crust,1.289007E+02,8.996351E+01,0.000000E+00 +2343876,fr,1,3.850000E+00,-2.280000E-02,4.371484E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2343894,fr,1,3.950000E+00,-2.280000E-02,4.371484E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +2343915,fr,1,4.150000E+00,-2.280000E-02,4.371484E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799722E+01,0.000000E+00 +2344326,fr,1,3.550000E+00,4.697480E+00,5.020996E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998695E+01,-9.000000E+01 +2344332,fr,1,3.650000E+00,4.697480E+00,5.020996E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998849E+01,0.000000E+00 +2344350,fr,1,3.750000E+00,4.697480E+00,5.020996E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,-9.000000E+01 +2344356,fr,1,3.850000E+00,4.697480E+00,5.020996E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +2344357,fr,1,3.850000E+00,4.697480E+00,5.020996E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +2344359,fr,1,3.850000E+00,4.697480E+00,5.020996E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799836E+01,0.000000E+00 +2344368,fr,1,3.950000E+00,4.697480E+00,5.020996E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999186E+01,0.000000E+00 +2344392,fr,1,4.150000E+00,4.697480E+00,5.020996E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +2344800,fr,1,3.550000E+00,-3.368600E-01,4.423155E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2344824,fr,1,3.750000E+00,-3.368600E-01,4.423155E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2344839,fr,1,3.850000E+00,-3.368600E-01,4.423155E+01,5.000000E+00,Active Shallow Crust,2.400105E+02,5.799778E+01,0.000000E+00 +2344851,fr,1,3.950000E+00,-3.368600E-01,4.423155E+01,5.000000E+00,Active Shallow Crust,2.400195E+02,5.800489E+01,0.000000E+00 +2344920,fr,1,4.550000E+00,-3.368600E-01,4.423155E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2345280,fr,1,3.550000E+00,3.063780E+00,4.073747E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998854E+01,0.000000E+00 +2345763,fr,1,3.550000E+00,1.624230E+00,4.786731E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799818E+01,0.000000E+00 +2345775,fr,1,3.650000E+00,1.624230E+00,4.786731E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801307E+01,0.000000E+00 +2345796,fr,1,3.850000E+00,1.624230E+00,4.786731E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +2345798,fr,1,3.850000E+00,1.624230E+00,4.786731E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +2345820,fr,1,4.050000E+00,1.624230E+00,4.786731E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +2345858,fr,1,4.350000E+00,1.624230E+00,4.786731E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +2345878,fr,1,4.450000E+00,1.624230E+00,4.786731E+01,1.500000E+01,Active Shallow Crust,1.288919E+02,8.999370E+01,0.000000E+00 +2346264,fr,1,3.750000E+00,2.929230E+00,4.769022E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998922E+01,0.000000E+00 +2346276,fr,1,3.850000E+00,2.929230E+00,4.769022E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +2346289,fr,1,3.950000E+00,2.929230E+00,4.769022E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +2346328,fr,1,4.250000E+00,2.929230E+00,4.769022E+01,1.500000E+01,Active Shallow Crust,2.400076E+02,5.799420E+01,0.000000E+00 +2346721,fr,1,3.550000E+00,5.718710E+00,4.285880E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999261E+01,0.000000E+00 +2346733,fr,1,3.650000E+00,5.718710E+00,4.285880E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998682E+01,0.000000E+00 +2346783,fr,1,4.050000E+00,5.718710E+00,4.285880E+01,5.000000E+00,Active Shallow Crust,2.400055E+02,5.800583E+01,0.000000E+00 +2347200,fr,1,3.550000E+00,1.078060E+00,4.690568E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +2347212,fr,3,3.650000E+00,1.078060E+00,4.690568E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +2347218,fr,1,3.650000E+00,1.078060E+00,4.690568E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,-9.000000E+01 +2347223,fr,1,3.650000E+00,1.078060E+00,4.690568E+01,2.750000E+01,Active Shallow Crust,1.289001E+02,8.996353E+01,0.000000E+00 +2347224,fr,1,3.750000E+00,1.078060E+00,4.690568E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +2347236,fr,1,3.850000E+00,1.078060E+00,4.690568E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +2347245,fr,1,3.850000E+00,1.078060E+00,4.690568E+01,5.000000E+00,Active Shallow Crust,1.288955E+02,8.999390E+01,0.000000E+00 +2347248,fr,1,3.950000E+00,1.078060E+00,4.690568E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +2347282,fr,1,4.150000E+00,1.078060E+00,4.690568E+01,1.500000E+01,Active Shallow Crust,1.288978E+02,8.999353E+01,0.000000E+00 +2347284,fr,1,4.250000E+00,1.078060E+00,4.690568E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2347296,fr,1,4.350000E+00,1.078060E+00,4.690568E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +2347348,fr,1,4.750000E+00,1.078060E+00,4.690568E+01,1.500000E+01,Active Shallow Crust,2.400076E+02,5.800457E+01,0.000000E+00 +2347360,fr,1,4.850000E+00,1.078060E+00,4.690568E+01,1.500000E+01,Active Shallow Crust,2.400174E+02,5.800232E+01,0.000000E+00 +2347371,fr,1,4.950000E+00,1.078060E+00,4.690568E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.800447E+01,0.000000E+00 +2348234,fr,1,4.150000E+00,-2.366100E+00,4.402591E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +2348640,fr,1,3.550000E+00,-3.272240E+00,4.627219E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +2349662,fr,1,4.050000E+00,-3.398060E+00,4.474038E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2350080,fr,2,3.550000E+00,6.374780E+00,4.493540E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999286E+01,0.000000E+00 +2350082,fr,1,3.550000E+00,6.374780E+00,4.493540E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999286E+01,0.000000E+00 +2350089,fr,1,3.550000E+00,6.374780E+00,4.493540E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.999286E+01,0.000000E+00 +2350092,fr,1,3.650000E+00,6.374780E+00,4.493540E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998727E+01,0.000000E+00 +2350095,fr,1,3.650000E+00,6.374780E+00,4.493540E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801327E+01,0.000000E+00 +2350102,fr,1,3.650000E+00,6.374780E+00,4.493540E+01,1.500000E+01,Active Shallow Crust,1.289005E+02,8.996349E+01,0.000000E+00 +2350104,fr,1,3.750000E+00,6.374780E+00,4.493540E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +2350110,fr,1,3.750000E+00,6.374780E+00,4.493540E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998853E+01,-9.000000E+01 +2350128,fr,1,3.950000E+00,6.374780E+00,4.493540E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999099E+01,0.000000E+00 +2350131,fr,1,3.950000E+00,6.374780E+00,4.493540E+01,5.000000E+00,Active Shallow Crust,2.400197E+02,5.800484E+01,0.000000E+00 +2350132,fr,1,3.950000E+00,6.374780E+00,4.493540E+01,1.500000E+01,Active Shallow Crust,2.400197E+02,5.800484E+01,0.000000E+00 +2350140,fr,1,4.050000E+00,6.374780E+00,4.493540E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999197E+01,0.000000E+00 +2350141,fr,1,4.050000E+00,6.374780E+00,4.493540E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999197E+01,0.000000E+00 +2350143,fr,1,4.050000E+00,6.374780E+00,4.493540E+01,5.000000E+00,Active Shallow Crust,2.400063E+02,5.800523E+01,0.000000E+00 +2350560,fr,2,3.550000E+00,9.574600E-01,4.230636E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2350566,fr,1,3.550000E+00,9.574600E-01,4.230636E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,-9.000000E+01 +2350572,fr,2,3.650000E+00,9.574600E-01,4.230636E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2350575,fr,1,3.650000E+00,9.574600E-01,4.230636E+01,5.000000E+00,Active Shallow Crust,2.400006E+02,5.801292E+01,0.000000E+00 +2350584,fr,1,3.750000E+00,9.574600E-01,4.230636E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +2350597,fr,1,3.850000E+00,9.574600E-01,4.230636E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2350608,fr,1,3.950000E+00,9.574600E-01,4.230636E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2350610,fr,1,3.950000E+00,9.574600E-01,4.230636E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2350614,fr,1,3.950000E+00,9.574600E-01,4.230636E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +2350633,fr,1,4.150000E+00,9.574600E-01,4.230636E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +2350641,fr,1,4.150000E+00,9.574600E-01,4.230636E+01,5.000000E+00,Active Shallow Crust,1.288982E+02,8.999369E+01,0.000000E+00 +2350669,fr,1,4.450000E+00,9.574600E-01,4.230636E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2350680,fr,1,4.550000E+00,9.574600E-01,4.230636E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2350710,fr,1,4.750000E+00,9.574600E-01,4.230636E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,-9.000000E+01 +2350749,fr,1,5.050000E+00,9.574600E-01,4.230636E+01,5.000000E+00,Active Shallow Crust,1.288872E+02,8.999046E+01,0.000000E+00 +2351054,fr,1,3.650000E+00,4.518630E+00,4.993718E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +2351100,fr,1,4.050000E+00,4.518630E+00,4.993718E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998905E+01,0.000000E+00 +2351520,fr,1,3.550000E+00,-4.845440E+00,4.857427E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999332E+01,0.000000E+00 +2351530,fr,1,3.550000E+00,-4.845440E+00,4.857427E+01,1.500000E+01,Active Shallow Crust,1.288960E+02,8.999333E+01,0.000000E+00 +2351533,fr,1,3.650000E+00,-4.845440E+00,4.857427E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998811E+01,0.000000E+00 +2351541,fr,1,3.650000E+00,-4.845440E+00,4.857427E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.996356E+01,0.000000E+00 +2351544,fr,1,3.750000E+00,-4.845440E+00,4.857427E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +2351545,fr,1,3.750000E+00,-4.845440E+00,4.857427E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +2351561,fr,1,3.850000E+00,-4.845440E+00,4.857427E+01,2.750000E+01,Active Shallow Crust,2.400116E+02,5.799768E+01,0.000000E+00 +2351589,fr,1,4.050000E+00,-4.845440E+00,4.857427E+01,5.000000E+00,Active Shallow Crust,1.288904E+02,8.999437E+01,0.000000E+00 +2351594,fr,1,4.150000E+00,-4.845440E+00,4.857427E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2351610,fr,1,4.250000E+00,-4.845440E+00,4.857427E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999095E+01,-9.000000E+01 +2351637,fr,1,4.450000E+00,-4.845440E+00,4.857427E+01,5.000000E+00,Active Shallow Crust,1.288919E+02,8.999408E+01,0.000000E+00 +2351724,fr,1,5.250000E+00,-4.845440E+00,4.857427E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +2352000,fr,1,3.550000E+00,-1.300000E-01,4.614934E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2352001,fr,1,3.550000E+00,-1.300000E-01,4.614934E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2352002,fr,1,3.550000E+00,-1.300000E-01,4.614934E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2352004,fr,2,3.550000E+00,-1.300000E-01,4.614934E+01,1.500000E+01,Active Shallow Crust,2.400121E+02,5.799814E+01,0.000000E+00 +2352009,fr,1,3.550000E+00,-1.300000E-01,4.614934E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999367E+01,0.000000E+00 +2352013,fr,1,3.650000E+00,-1.300000E-01,4.614934E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2352021,fr,2,3.650000E+00,-1.300000E-01,4.614934E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.996352E+01,0.000000E+00 +2352022,fr,1,3.650000E+00,-1.300000E-01,4.614934E+01,1.500000E+01,Active Shallow Crust,1.289004E+02,8.996352E+01,0.000000E+00 +2352026,fr,1,3.750000E+00,-1.300000E-01,4.614934E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2352027,fr,1,3.750000E+00,-1.300000E-01,4.614934E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801755E+01,0.000000E+00 +2352033,fr,1,3.750000E+00,-1.300000E-01,4.614934E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.996735E+01,0.000000E+00 +2352036,fr,2,3.850000E+00,-1.300000E-01,4.614934E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +2352070,fr,1,4.050000E+00,-1.300000E-01,4.614934E+01,1.500000E+01,Active Shallow Crust,1.288905E+02,8.999374E+01,0.000000E+00 +2352072,fr,1,4.150000E+00,-1.300000E-01,4.614934E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2352096,fr,1,4.350000E+00,-1.300000E-01,4.614934E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2352132,fr,1,4.650000E+00,-1.300000E-01,4.614934E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2352480,fr,3,3.550000E+00,7.643370E+00,4.442258E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999280E+01,0.000000E+00 +2352481,fr,2,3.550000E+00,7.643370E+00,4.442258E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999280E+01,0.000000E+00 +2352483,fr,1,3.550000E+00,7.643370E+00,4.442258E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799792E+01,0.000000E+00 +2352486,fr,1,3.550000E+00,7.643370E+00,4.442258E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999271E+01,-9.000000E+01 +2352487,fr,1,3.550000E+00,7.643370E+00,4.442258E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999271E+01,-9.000000E+01 +2352492,fr,4,3.650000E+00,7.643370E+00,4.442258E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998716E+01,0.000000E+00 +2352493,fr,2,3.650000E+00,7.643370E+00,4.442258E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998716E+01,0.000000E+00 +2352501,fr,1,3.650000E+00,7.643370E+00,4.442258E+01,5.000000E+00,Active Shallow Crust,1.289016E+02,8.996349E+01,0.000000E+00 +2352502,fr,1,3.650000E+00,7.643370E+00,4.442258E+01,1.500000E+01,Active Shallow Crust,1.289016E+02,8.996349E+01,0.000000E+00 +2352504,fr,1,3.750000E+00,7.643370E+00,4.442258E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +2352505,fr,1,3.750000E+00,7.643370E+00,4.442258E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +2352508,fr,1,3.750000E+00,7.643370E+00,4.442258E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.801801E+01,0.000000E+00 +2352513,fr,1,3.750000E+00,7.643370E+00,4.442258E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.996745E+01,0.000000E+00 +2352516,fr,1,3.850000E+00,7.643370E+00,4.442258E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +2352528,fr,3,3.950000E+00,7.643370E+00,4.442258E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +2352529,fr,1,3.950000E+00,7.643370E+00,4.442258E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +2352532,fr,1,3.950000E+00,7.643370E+00,4.442258E+01,1.500000E+01,Active Shallow Crust,2.400198E+02,5.800541E+01,0.000000E+00 +2352540,fr,3,4.050000E+00,7.643370E+00,4.442258E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999190E+01,0.000000E+00 +2352542,fr,1,4.050000E+00,7.643370E+00,4.442258E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999190E+01,0.000000E+00 +2352552,fr,1,4.150000E+00,7.643370E+00,4.442258E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +2352553,fr,1,4.150000E+00,7.643370E+00,4.442258E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +2352554,fr,1,4.150000E+00,7.643370E+00,4.442258E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +2352555,fr,1,4.150000E+00,7.643370E+00,4.442258E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.799676E+01,0.000000E+00 +2352565,fr,1,4.250000E+00,7.643370E+00,4.442258E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +2352576,fr,1,4.350000E+00,7.643370E+00,4.442258E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999140E+01,0.000000E+00 +2352594,fr,1,4.450000E+00,7.643370E+00,4.442258E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,-9.000000E+01 +2352604,fr,1,4.550000E+00,7.643370E+00,4.442258E+01,1.500000E+01,Active Shallow Crust,2.400087E+02,5.799698E+01,0.000000E+00 +2352608,fr,1,4.550000E+00,7.643370E+00,4.442258E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999078E+01,-9.000000E+01 +2352613,fr,1,4.650000E+00,7.643370E+00,4.442258E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2352625,fr,1,4.750000E+00,7.643370E+00,4.442258E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +2352684,fr,1,5.250000E+00,7.643370E+00,4.442258E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +2352966,fr,1,3.550000E+00,1.914900E+00,4.416213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999085E+01,-9.000000E+01 +2352974,fr,1,3.650000E+00,1.914900E+00,4.416213E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +2353057,fr,1,4.350000E+00,1.914900E+00,4.416213E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +2353120,fr,1,4.850000E+00,1.914900E+00,4.416213E+01,1.500000E+01,Active Shallow Crust,2.400162E+02,5.800216E+01,0.000000E+00 +2353452,fr,1,3.650000E+00,4.397520E+00,4.321680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998690E+01,0.000000E+00 +2353464,fr,2,3.750000E+00,4.397520E+00,4.321680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998833E+01,0.000000E+00 +2353477,fr,1,3.850000E+00,4.397520E+00,4.321680E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +2353593,fr,1,4.750000E+00,4.397520E+00,4.321680E+01,5.000000E+00,Active Shallow Crust,1.288895E+02,8.998798E+01,0.000000E+00 +2353920,fr,2,3.550000E+00,1.542140E+00,4.559844E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +2353923,fr,2,3.550000E+00,1.542140E+00,4.559844E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799824E+01,0.000000E+00 +2353933,fr,1,3.650000E+00,1.542140E+00,4.559844E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +2353938,fr,1,3.650000E+00,1.542140E+00,4.559844E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,-9.000000E+01 +2353995,fr,1,4.150000E+00,1.542140E+00,4.559844E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799733E+01,0.000000E+00 +2354004,fr,2,4.250000E+00,1.542140E+00,4.559844E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2354040,fr,1,4.550000E+00,1.542140E+00,4.559844E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2354616,fr,1,5.350000E+00,-4.329200E-01,4.134038E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2354880,fr,5,3.550000E+00,-1.840080E+00,4.270110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +2354881,fr,1,3.550000E+00,-1.840080E+00,4.270110E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +2354883,fr,1,3.550000E+00,-1.840080E+00,4.270110E+01,5.000000E+00,Active Shallow Crust,2.400121E+02,5.799787E+01,0.000000E+00 +2354886,fr,1,3.550000E+00,-1.840080E+00,4.270110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,-9.000000E+01 +2354892,fr,3,3.650000E+00,-1.840080E+00,4.270110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +2354898,fr,1,3.650000E+00,-1.840080E+00,4.270110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +2354900,fr,1,3.650000E+00,-1.840080E+00,4.270110E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +2354902,fr,1,3.650000E+00,-1.840080E+00,4.270110E+01,1.500000E+01,Active Shallow Crust,1.289008E+02,8.996345E+01,0.000000E+00 +2354904,fr,1,3.750000E+00,-1.840080E+00,4.270110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +2354907,fr,2,3.750000E+00,-1.840080E+00,4.270110E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801735E+01,0.000000E+00 +2354913,fr,1,3.750000E+00,-1.840080E+00,4.270110E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.996729E+01,0.000000E+00 +2354916,fr,1,3.850000E+00,-1.840080E+00,4.270110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +2354931,fr,1,3.950000E+00,-1.840080E+00,4.270110E+01,5.000000E+00,Active Shallow Crust,2.400193E+02,5.800468E+01,0.000000E+00 +2354932,fr,1,3.950000E+00,-1.840080E+00,4.270110E+01,1.500000E+01,Active Shallow Crust,2.400193E+02,5.800468E+01,0.000000E+00 +2354940,fr,1,4.050000E+00,-1.840080E+00,4.270110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +2354952,fr,3,4.150000E+00,-1.840080E+00,4.270110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +2354958,fr,1,4.150000E+00,-1.840080E+00,4.270110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,-9.000000E+01 +2354964,fr,1,4.250000E+00,-1.840080E+00,4.270110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2355012,fr,2,4.650000E+00,-1.840080E+00,4.270110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +2355108,fr,1,5.450000E+00,-1.840080E+00,4.270110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2355360,fr,3,3.550000E+00,8.294390E+00,4.877528E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998671E+01,0.000000E+00 +2355361,fr,2,3.550000E+00,8.294390E+00,4.877528E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998671E+01,0.000000E+00 +2355370,fr,1,3.550000E+00,8.294390E+00,4.877528E+01,1.500000E+01,Active Shallow Crust,1.288969E+02,8.999335E+01,0.000000E+00 +2355373,fr,1,3.650000E+00,8.294390E+00,4.877528E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998815E+01,0.000000E+00 +2355374,fr,1,3.650000E+00,8.294390E+00,4.877528E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998815E+01,0.000000E+00 +2355387,fr,1,3.750000E+00,8.294390E+00,4.877528E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.801735E+01,0.000000E+00 +2355408,fr,1,3.950000E+00,8.294390E+00,4.877528E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999162E+01,0.000000E+00 +2355420,fr,2,4.050000E+00,8.294390E+00,4.877528E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999252E+01,0.000000E+00 +2355445,fr,1,4.250000E+00,8.294390E+00,4.877528E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998813E+01,0.000000E+00 +2355474,fr,1,4.450000E+00,8.294390E+00,4.877528E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,-9.000000E+01 +2355498,fr,1,4.650000E+00,8.294390E+00,4.877528E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998863E+01,-9.000000E+01 +2355504,fr,1,4.750000E+00,8.294390E+00,4.877528E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2355517,fr,1,4.850000E+00,8.294390E+00,4.877528E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +2355555,fr,1,5.150000E+00,8.294390E+00,4.877528E+01,5.000000E+00,Active Shallow Crust,2.400210E+02,5.800004E+01,0.000000E+00 +2355672,fr,1,6.150000E+00,8.294393E+00,4.877528E+01,6.011322E+00,Active Shallow Crust,3.599997E+02,8.999000E+01,0.000000E+00 +2355840,fr,1,3.550000E+00,7.665100E+00,4.508644E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999288E+01,0.000000E+00 +2355843,fr,1,3.550000E+00,7.665100E+00,4.508644E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799900E+01,0.000000E+00 +2355849,fr,1,3.550000E+00,7.665100E+00,4.508644E+01,5.000000E+00,Active Shallow Crust,1.288953E+02,8.999644E+01,0.000000E+00 +2355854,fr,2,3.650000E+00,7.665100E+00,4.508644E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998731E+01,0.000000E+00 +2355858,fr,1,3.650000E+00,7.665100E+00,4.508644E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998716E+01,-9.000000E+01 +2355864,fr,1,3.750000E+00,7.665100E+00,4.508644E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +2355865,fr,2,3.750000E+00,7.665100E+00,4.508644E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +2355867,fr,1,3.750000E+00,7.665100E+00,4.508644E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.801719E+01,0.000000E+00 +2355868,fr,1,3.750000E+00,7.665100E+00,4.508644E+01,1.500000E+01,Active Shallow Crust,2.400090E+02,5.801719E+01,0.000000E+00 +2355877,fr,1,3.850000E+00,7.665100E+00,4.508644E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +2355879,fr,1,3.850000E+00,7.665100E+00,4.508644E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799750E+01,0.000000E+00 +2355888,fr,3,3.950000E+00,7.665100E+00,4.508644E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999101E+01,0.000000E+00 +2355889,fr,1,3.950000E+00,7.665100E+00,4.508644E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999101E+01,0.000000E+00 +2355890,fr,1,3.950000E+00,7.665100E+00,4.508644E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999101E+01,0.000000E+00 +2355900,fr,1,4.050000E+00,7.665100E+00,4.508644E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999199E+01,0.000000E+00 +2355912,fr,3,4.150000E+00,7.665100E+00,4.508644E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +2355924,fr,2,4.250000E+00,7.665100E+00,4.508644E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +2355940,fr,1,4.350000E+00,7.665100E+00,4.508644E+01,1.500000E+01,Active Shallow Crust,2.400087E+02,5.799549E+01,0.000000E+00 +2355960,fr,1,4.550000E+00,7.665100E+00,4.508644E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999099E+01,0.000000E+00 +2355980,fr,1,4.650000E+00,7.665100E+00,4.508644E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +2356333,fr,1,3.650000E+00,4.856080E+00,4.099139E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999322E+01,0.000000E+00 +2356350,fr,1,3.750000E+00,4.856080E+00,4.099139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998777E+01,-9.000000E+01 +2356368,fr,1,3.950000E+00,4.856080E+00,4.099139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +2356428,fr,1,4.450000E+00,4.856080E+00,4.099139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +2356518,fr,1,5.150000E+00,4.856080E+00,4.099139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,-9.000000E+01 +2356802,fr,1,3.550000E+00,5.623730E+00,4.692531E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999311E+01,0.000000E+00 +2356803,fr,1,3.550000E+00,5.623730E+00,4.692531E+01,5.000000E+00,Active Shallow Crust,2.400131E+02,5.799777E+01,0.000000E+00 +2356806,fr,1,3.550000E+00,5.623730E+00,4.692531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999303E+01,-9.000000E+01 +2356812,fr,1,3.650000E+00,5.623730E+00,4.692531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998772E+01,0.000000E+00 +2356815,fr,1,3.650000E+00,5.623730E+00,4.692531E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801244E+01,0.000000E+00 +2356825,fr,1,3.750000E+00,5.623730E+00,4.692531E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998906E+01,0.000000E+00 +2356836,fr,1,3.850000E+00,5.623730E+00,4.692531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +2356847,fr,1,3.850000E+00,5.623730E+00,4.692531E+01,2.750000E+01,Active Shallow Crust,1.288962E+02,8.999269E+01,0.000000E+00 +2356872,fr,1,4.150000E+00,5.623730E+00,4.692531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +2356932,fr,1,4.650000E+00,5.623730E+00,4.692531E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +2357280,fr,1,3.550000E+00,-4.390150E+00,4.821151E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999328E+01,0.000000E+00 +2357282,fr,1,3.550000E+00,-4.390150E+00,4.821151E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999328E+01,0.000000E+00 +2357292,fr,1,3.650000E+00,-4.390150E+00,4.821151E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998802E+01,0.000000E+00 +2357296,fr,1,3.650000E+00,-4.390150E+00,4.821151E+01,1.500000E+01,Active Shallow Crust,2.400015E+02,5.801244E+01,0.000000E+00 +2357298,fr,1,3.650000E+00,-4.390150E+00,4.821151E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998788E+01,-9.000000E+01 +2357305,fr,1,3.750000E+00,-4.390150E+00,4.821151E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +2357316,fr,1,3.850000E+00,-4.390150E+00,4.821151E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +2357329,fr,1,3.950000E+00,-4.390150E+00,4.821151E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999152E+01,0.000000E+00 +2357331,fr,1,3.950000E+00,-4.390150E+00,4.821151E+01,5.000000E+00,Active Shallow Crust,2.400193E+02,5.800578E+01,0.000000E+00 +2357413,fr,1,4.650000E+00,-4.390150E+00,4.821151E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +2357772,fr,1,3.650000E+00,-3.067000E-02,4.521040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2357814,fr,1,3.950000E+00,-3.067000E-02,4.521040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +2357820,fr,1,4.050000E+00,-3.067000E-02,4.521040E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2358264,fr,1,3.750000E+00,2.277150E+00,4.552885E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +2358269,fr,1,3.750000E+00,2.277150E+00,4.552885E+01,2.750000E+01,Active Shallow Crust,2.400076E+02,5.801788E+01,0.000000E+00 +2358306,fr,1,4.050000E+00,2.277150E+00,4.552885E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,-9.000000E+01 +2358321,fr,1,4.150000E+00,2.277150E+00,4.552885E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.999380E+01,0.000000E+00 +2358327,fr,1,4.250000E+00,2.277150E+00,4.552885E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.799398E+01,0.000000E+00 +2358330,fr,1,4.250000E+00,2.277150E+00,4.552885E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,-9.000000E+01 +2358348,fr,1,4.450000E+00,2.277150E+00,4.552885E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2358420,fr,1,5.050000E+00,2.277150E+00,4.552885E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2358723,fr,1,3.550000E+00,6.934310E+00,4.862206E+01,5.000000E+00,Active Shallow Crust,2.400132E+02,5.799815E+01,0.000000E+00 +2358744,fr,1,3.750000E+00,6.934310E+00,4.862206E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998941E+01,0.000000E+00 +2358755,fr,1,3.750000E+00,6.934310E+00,4.862206E+01,2.750000E+01,Active Shallow Crust,1.288963E+02,8.996700E+01,0.000000E+00 +2358756,fr,1,3.850000E+00,6.934310E+00,4.862206E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +2358780,fr,1,4.050000E+00,6.934310E+00,4.862206E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +2358894,fr,1,4.950000E+00,6.934310E+00,4.862206E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999058E+01,-9.000000E+01 +2359203,fr,1,3.550000E+00,9.859400E-01,4.529037E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799814E+01,0.000000E+00 +2359237,fr,1,3.850000E+00,9.859400E-01,4.529037E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +2359326,fr,1,4.550000E+00,9.859400E-01,4.529037E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +2359337,fr,1,4.650000E+00,9.859400E-01,4.529037E+01,2.750000E+01,Active Shallow Crust,2.400105E+02,5.799416E+01,0.000000E+00 +2359680,fr,3,3.550000E+00,2.892210E+00,4.286178E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +2359681,fr,1,3.550000E+00,2.892210E+00,4.286178E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +2359690,fr,2,3.550000E+00,2.892210E+00,4.286178E+01,1.500000E+01,Active Shallow Crust,1.288973E+02,8.999261E+01,0.000000E+00 +2359692,fr,1,3.650000E+00,2.892210E+00,4.286178E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +2359718,fr,1,3.850000E+00,2.892210E+00,4.286178E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +2359740,fr,2,4.050000E+00,2.892210E+00,4.286178E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +2359752,fr,1,4.150000E+00,2.892210E+00,4.286178E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +2359760,fr,1,4.150000E+00,2.892210E+00,4.286178E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999063E+01,-9.000000E+01 +2359765,fr,1,4.250000E+00,2.892210E+00,4.286178E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2359777,fr,1,4.350000E+00,2.892210E+00,4.286178E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +2359800,fr,1,4.550000E+00,2.892210E+00,4.286178E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +2359848,fr,1,4.950000E+00,2.892210E+00,4.286178E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +2360160,fr,1,3.550000E+00,3.213700E-01,4.550947E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2360161,fr,1,3.550000E+00,3.213700E-01,4.550947E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2360166,fr,1,3.550000E+00,3.213700E-01,4.550947E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,-9.000000E+01 +2360173,fr,1,3.650000E+00,3.213700E-01,4.550947E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +2360179,fr,1,3.650000E+00,3.213700E-01,4.550947E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +2360196,fr,1,3.850000E+00,3.213700E-01,4.550947E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2360226,fr,1,4.050000E+00,3.213700E-01,4.550947E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,-9.000000E+01 +2360448,fr,1,5.950000E+00,3.213700E-01,4.550947E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2360580,fr,1,7.050000E+00,3.213968E-01,4.550947E+01,1.694221E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +2360640,fr,6,3.550000E+00,7.895530E+00,4.668141E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999308E+01,0.000000E+00 +2360641,fr,2,3.550000E+00,7.895530E+00,4.668141E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999308E+01,0.000000E+00 +2360643,fr,2,3.550000E+00,7.895530E+00,4.668141E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799932E+01,0.000000E+00 +2360645,fr,1,3.550000E+00,7.895530E+00,4.668141E+01,2.750000E+01,Active Shallow Crust,2.400116E+02,5.799922E+01,0.000000E+00 +2360652,fr,5,3.650000E+00,7.895530E+00,4.668141E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998767E+01,0.000000E+00 +2360653,fr,2,3.650000E+00,7.895530E+00,4.668141E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998767E+01,0.000000E+00 +2360654,fr,1,3.650000E+00,7.895530E+00,4.668141E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998767E+01,0.000000E+00 +2360664,fr,2,3.750000E+00,7.895530E+00,4.668141E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +2360671,fr,1,3.750000E+00,7.895530E+00,4.668141E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998888E+01,-9.000000E+01 +2360673,fr,1,3.750000E+00,7.895530E+00,4.668141E+01,5.000000E+00,Active Shallow Crust,1.288955E+02,8.996749E+01,0.000000E+00 +2360676,fr,1,3.850000E+00,7.895530E+00,4.668141E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2360677,fr,2,3.850000E+00,7.895530E+00,4.668141E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2360685,fr,1,3.850000E+00,7.895530E+00,4.668141E+01,5.000000E+00,Active Shallow Crust,1.288951E+02,8.999265E+01,0.000000E+00 +2360700,fr,3,4.050000E+00,7.895530E+00,4.668141E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998833E+01,0.000000E+00 +2360706,fr,1,4.050000E+00,7.895530E+00,4.668141E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998819E+01,-9.000000E+01 +2360709,fr,1,4.050000E+00,7.895530E+00,4.668141E+01,5.000000E+00,Active Shallow Crust,1.288912E+02,8.999222E+01,0.000000E+00 +2360712,fr,1,4.150000E+00,7.895530E+00,4.668141E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +2360718,fr,1,4.150000E+00,7.895530E+00,4.668141E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,-9.000000E+01 +2360736,fr,1,4.350000E+00,7.895530E+00,4.668141E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +2360737,fr,1,4.350000E+00,7.895530E+00,4.668141E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +2360751,fr,1,4.450000E+00,7.895530E+00,4.668141E+01,5.000000E+00,Active Shallow Crust,2.400056E+02,5.799476E+01,0.000000E+00 +2360760,fr,1,4.550000E+00,7.895530E+00,4.668141E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998906E+01,0.000000E+00 +2360761,fr,1,4.550000E+00,7.895530E+00,4.668141E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998906E+01,0.000000E+00 +2360771,fr,1,4.550000E+00,7.895530E+00,4.668141E+01,2.750000E+01,Active Shallow Crust,1.288941E+02,8.998566E+01,0.000000E+00 +2360779,fr,1,4.650000E+00,7.895530E+00,4.668141E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +2360781,fr,1,4.650000E+00,7.895530E+00,4.668141E+01,5.000000E+00,Active Shallow Crust,1.288908E+02,8.998721E+01,0.000000E+00 +2360784,fr,1,4.750000E+00,7.895530E+00,4.668141E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +2360785,fr,1,4.750000E+00,7.895530E+00,4.668141E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +2361133,fr,1,3.650000E+00,8.784240E+00,4.945680E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998832E+01,0.000000E+00 +2361135,fr,1,3.650000E+00,8.784240E+00,4.945680E+01,5.000000E+00,Active Shallow Crust,2.399986E+02,5.801445E+01,0.000000E+00 +2361144,fr,2,3.750000E+00,8.784240E+00,4.945680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +2361147,fr,2,3.750000E+00,8.784240E+00,4.945680E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.801910E+01,0.000000E+00 +2361184,fr,1,4.050000E+00,8.784240E+00,4.945680E+01,1.500000E+01,Active Shallow Crust,2.400067E+02,5.800490E+01,0.000000E+00 +2361195,fr,1,4.150000E+00,8.784240E+00,4.945680E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.799717E+01,0.000000E+00 +2361206,fr,1,4.250000E+00,8.784240E+00,4.945680E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998829E+01,0.000000E+00 +2361210,fr,1,4.250000E+00,8.784240E+00,4.945680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998815E+01,-9.000000E+01 +2361231,fr,1,4.450000E+00,8.784240E+00,4.945680E+01,5.000000E+00,Active Shallow Crust,2.400058E+02,5.799461E+01,0.000000E+00 +2361240,fr,1,4.550000E+00,8.784240E+00,4.945680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999171E+01,0.000000E+00 +2361258,fr,1,4.650000E+00,8.784240E+00,4.945680E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998878E+01,-9.000000E+01 +2361266,fr,1,4.750000E+00,8.784240E+00,4.945680E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +2361303,fr,1,5.050000E+00,8.784240E+00,4.945680E+01,5.000000E+00,Active Shallow Crust,2.400236E+02,5.799817E+01,0.000000E+00 +2361646,fr,1,3.850000E+00,2.522260E+00,4.698760E+01,1.500000E+01,Active Shallow Crust,1.288959E+02,8.999391E+01,0.000000E+00 +2361648,fr,2,3.950000E+00,2.522260E+00,4.698760E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998915E+01,0.000000E+00 +2361684,fr,1,4.250000E+00,2.522260E+00,4.698760E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +2361709,fr,1,4.450000E+00,2.522260E+00,4.698760E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2361745,fr,1,4.750000E+00,2.522260E+00,4.698760E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +2361804,fr,1,5.250000E+00,2.522260E+00,4.698760E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +2362560,fr,2,3.550000E+00,7.123450E+00,4.736860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999317E+01,0.000000E+00 +2362561,fr,1,3.550000E+00,7.123450E+00,4.736860E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999317E+01,0.000000E+00 +2362562,fr,2,3.550000E+00,7.123450E+00,4.736860E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999317E+01,0.000000E+00 +2362563,fr,2,3.550000E+00,7.123450E+00,4.736860E+01,5.000000E+00,Active Shallow Crust,2.400137E+02,5.799766E+01,0.000000E+00 +2362569,fr,1,3.550000E+00,7.123450E+00,4.736860E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.999658E+01,0.000000E+00 +2362572,fr,2,3.650000E+00,7.123450E+00,4.736860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998782E+01,0.000000E+00 +2362574,fr,1,3.650000E+00,7.123450E+00,4.736860E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998782E+01,0.000000E+00 +2362584,fr,2,3.750000E+00,7.123450E+00,4.736860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998915E+01,0.000000E+00 +2362587,fr,1,3.750000E+00,7.123450E+00,4.736860E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.801720E+01,0.000000E+00 +2362588,fr,1,3.750000E+00,7.123450E+00,4.736860E+01,1.500000E+01,Active Shallow Crust,2.400090E+02,5.801720E+01,0.000000E+00 +2362596,fr,2,3.850000E+00,7.123450E+00,4.736860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +2362599,fr,1,3.850000E+00,7.123450E+00,4.736860E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799834E+01,0.000000E+00 +2362602,fr,1,3.850000E+00,7.123450E+00,4.736860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,-9.000000E+01 +2362608,fr,1,3.950000E+00,7.123450E+00,4.736860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999138E+01,0.000000E+00 +2362621,fr,2,4.050000E+00,7.123450E+00,4.736860E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998848E+01,0.000000E+00 +2362623,fr,1,4.050000E+00,7.123450E+00,4.736860E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.800527E+01,0.000000E+00 +2362632,fr,2,4.150000E+00,7.123450E+00,4.736860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +2362633,fr,1,4.150000E+00,7.123450E+00,4.736860E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +2362645,fr,1,4.250000E+00,7.123450E+00,4.736860E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +2362653,fr,1,4.250000E+00,7.123450E+00,4.736860E+01,5.000000E+00,Active Shallow Crust,1.288944E+02,8.998098E+01,0.000000E+00 +2362659,fr,1,4.350000E+00,7.123450E+00,4.736860E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799545E+01,0.000000E+00 +2362666,fr,1,4.350000E+00,7.123450E+00,4.736860E+01,1.500000E+01,Active Shallow Crust,1.288971E+02,8.998305E+01,0.000000E+00 +2362668,fr,1,4.450000E+00,7.123450E+00,4.736860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +2362741,fr,1,5.050000E+00,7.123450E+00,4.736860E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +2363040,fr,1,3.550000E+00,3.187000E+00,4.237242E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +2363041,fr,1,3.550000E+00,3.187000E+00,4.237242E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +2363042,fr,1,3.550000E+00,3.187000E+00,4.237242E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +2363049,fr,1,3.550000E+00,3.187000E+00,4.237242E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999442E+01,0.000000E+00 +2363061,fr,1,3.650000E+00,3.187000E+00,4.237242E+01,5.000000E+00,Active Shallow Crust,1.289000E+02,8.996371E+01,0.000000E+00 +2363064,fr,1,3.750000E+00,3.187000E+00,4.237242E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999113E+01,0.000000E+00 +2363067,fr,1,3.750000E+00,3.187000E+00,4.237242E+01,5.000000E+00,Active Shallow Crust,2.400075E+02,5.801788E+01,0.000000E+00 +2363076,fr,1,3.850000E+00,3.187000E+00,4.237242E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +2363100,fr,1,4.050000E+00,3.187000E+00,4.237242E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +2363108,fr,1,4.050000E+00,3.187000E+00,4.237242E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,-9.000000E+01 +2363134,fr,1,4.250000E+00,3.187000E+00,4.237242E+01,1.500000E+01,Active Shallow Crust,1.288951E+02,8.998080E+01,0.000000E+00 +2363172,fr,1,4.650000E+00,3.187000E+00,4.237242E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +2363256,fr,1,5.350000E+00,3.187000E+00,4.237242E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +2363520,fr,1,3.550000E+00,5.358280E+00,4.585353E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999297E+01,0.000000E+00 +2363523,fr,1,3.550000E+00,5.358280E+00,4.585353E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799816E+01,0.000000E+00 +2363533,fr,2,3.650000E+00,5.358280E+00,4.585353E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998748E+01,0.000000E+00 +2363544,fr,1,3.750000E+00,5.358280E+00,4.585353E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +2363556,fr,1,3.850000E+00,5.358280E+00,4.585353E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2363557,fr,3,3.850000E+00,5.358280E+00,4.585353E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2363559,fr,2,3.850000E+00,5.358280E+00,4.585353E+01,5.000000E+00,Active Shallow Crust,2.400102E+02,5.799809E+01,0.000000E+00 +2363562,fr,1,3.850000E+00,5.358280E+00,4.585353E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +2363581,fr,1,4.050000E+00,5.358280E+00,4.585353E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998815E+01,0.000000E+00 +2363589,fr,1,4.050000E+00,5.358280E+00,4.585353E+01,5.000000E+00,Active Shallow Crust,1.288905E+02,8.999408E+01,0.000000E+00 +2363604,fr,1,4.250000E+00,5.358280E+00,4.585353E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +2363616,fr,1,4.350000E+00,5.358280E+00,4.585353E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +2363640,fr,1,4.550000E+00,5.358280E+00,4.585353E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998889E+01,0.000000E+00 +2364091,fr,1,4.250000E+00,4.568250E+00,4.216902E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,-9.000000E+01 +2364505,fr,1,3.750000E+00,3.110970E+00,4.733619E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +2364517,fr,1,3.850000E+00,3.110970E+00,4.733619E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +2364530,fr,1,3.950000E+00,3.110970E+00,4.733619E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998922E+01,0.000000E+00 +2364960,fr,2,3.550000E+00,7.979850E+00,4.772220E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999322E+01,0.000000E+00 +2364966,fr,1,3.550000E+00,7.979850E+00,4.772220E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999314E+01,-9.000000E+01 +2364968,fr,1,3.550000E+00,7.979850E+00,4.772220E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999314E+01,-9.000000E+01 +2364969,fr,1,3.550000E+00,7.979850E+00,4.772220E+01,5.000000E+00,Active Shallow Crust,1.288958E+02,8.999322E+01,0.000000E+00 +2364972,fr,1,3.650000E+00,7.979850E+00,4.772220E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998791E+01,0.000000E+00 +2364973,fr,1,3.650000E+00,7.979850E+00,4.772220E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998791E+01,0.000000E+00 +2364974,fr,1,3.650000E+00,7.979850E+00,4.772220E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998791E+01,0.000000E+00 +2364978,fr,1,3.650000E+00,7.979850E+00,4.772220E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998777E+01,-9.000000E+01 +2364984,fr,2,3.750000E+00,7.979850E+00,4.772220E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998922E+01,0.000000E+00 +2364986,fr,1,3.750000E+00,7.979850E+00,4.772220E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998922E+01,0.000000E+00 +2364987,fr,1,3.750000E+00,7.979850E+00,4.772220E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801821E+01,0.000000E+00 +2364996,fr,2,3.850000E+00,7.979850E+00,4.772220E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +2364999,fr,1,3.850000E+00,7.979850E+00,4.772220E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799783E+01,0.000000E+00 +2365008,fr,1,3.950000E+00,7.979850E+00,4.772220E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999144E+01,0.000000E+00 +2365014,fr,1,3.950000E+00,7.979850E+00,4.772220E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999134E+01,-9.000000E+01 +2365020,fr,1,4.050000E+00,7.979850E+00,4.772220E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +2365022,fr,1,4.050000E+00,7.979850E+00,4.772220E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +2365032,fr,2,4.150000E+00,7.979850E+00,4.772220E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +2365033,fr,2,4.150000E+00,7.979850E+00,4.772220E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +2365044,fr,1,4.250000E+00,7.979850E+00,4.772220E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +2365057,fr,1,4.350000E+00,7.979850E+00,4.772220E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +2365068,fr,1,4.450000E+00,7.979850E+00,4.772220E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +2365081,fr,1,4.550000E+00,7.979850E+00,4.772220E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +2365084,fr,1,4.550000E+00,7.979850E+00,4.772220E+01,1.500000E+01,Active Shallow Crust,2.400096E+02,5.799740E+01,0.000000E+00 +2365089,fr,1,4.550000E+00,7.979850E+00,4.772220E+01,5.000000E+00,Active Shallow Crust,1.288936E+02,8.998572E+01,0.000000E+00 +2365132,fr,1,4.950000E+00,7.979850E+00,4.772220E+01,1.500000E+01,Active Shallow Crust,2.400123E+02,5.800460E+01,0.000000E+00 +2365152,fr,1,5.150000E+00,7.979850E+00,4.772220E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +2365161,fr,1,5.150000E+00,7.979850E+00,4.772220E+01,5.000000E+00,Active Shallow Crust,1.288831E+02,8.999092E+01,0.000000E+00 +2365284,fr,1,6.250000E+00,7.979854E+00,4.772220E+01,6.744814E+00,Active Shallow Crust,3.599998E+02,8.998999E+01,0.000000E+00 +2365440,fr,1,3.550000E+00,6.465220E+00,4.281713E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999260E+01,0.000000E+00 +2365453,fr,1,3.650000E+00,6.465220E+00,4.281713E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998682E+01,0.000000E+00 +2365921,fr,1,3.550000E+00,1.061080E+00,4.543048E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +2365941,fr,1,3.650000E+00,1.061080E+00,4.543048E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.996350E+01,0.000000E+00 +2365946,fr,1,3.750000E+00,1.061080E+00,4.543048E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2365950,fr,1,3.750000E+00,1.061080E+00,4.543048E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,-9.000000E+01 +2365980,fr,1,4.050000E+00,1.061080E+00,4.543048E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +2366012,fr,1,4.250000E+00,1.061080E+00,4.543048E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998961E+01,-9.000000E+01 +2366028,fr,1,4.450000E+00,1.061080E+00,4.543048E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +2366029,fr,1,4.450000E+00,1.061080E+00,4.543048E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +2366137,fr,1,5.350000E+00,1.061080E+00,4.543048E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2366401,fr,1,3.550000E+00,7.355610E+00,4.332350E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999266E+01,0.000000E+00 +2366412,fr,1,3.650000E+00,7.355610E+00,4.332350E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998692E+01,0.000000E+00 +2366422,fr,1,3.650000E+00,7.355610E+00,4.332350E+01,1.500000E+01,Active Shallow Crust,1.288998E+02,8.996391E+01,0.000000E+00 +2366424,fr,1,3.750000E+00,7.355610E+00,4.332350E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998834E+01,0.000000E+00 +2366436,fr,2,3.850000E+00,7.355610E+00,4.332350E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +2366460,fr,1,4.050000E+00,7.355610E+00,4.332350E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999175E+01,0.000000E+00 +2366520,fr,1,4.550000E+00,7.355610E+00,4.332350E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +2366535,fr,1,4.650000E+00,7.355610E+00,4.332350E+01,5.000000E+00,Active Shallow Crust,2.400096E+02,5.799426E+01,0.000000E+00 +2366597,fr,1,5.150000E+00,7.355610E+00,4.332350E+01,2.750000E+01,Active Shallow Crust,2.400181E+02,5.799967E+01,0.000000E+00 +2367360,fr,1,3.550000E+00,2.086490E+00,5.204914E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999070E+01,0.000000E+00 +2367385,fr,1,3.750000E+00,2.086490E+00,5.204914E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +2367444,fr,1,4.250000E+00,2.086490E+00,5.204914E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +2367589,fr,1,5.450000E+00,2.086490E+00,5.204914E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2367840,fr,1,3.550000E+00,5.198470E+00,5.126101E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998738E+01,0.000000E+00 +2367873,fr,1,3.750000E+00,5.198470E+00,5.126101E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.996758E+01,0.000000E+00 +2367882,fr,1,3.850000E+00,5.198470E+00,5.126101E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999096E+01,-9.000000E+01 +2367909,fr,1,4.050000E+00,5.198470E+00,5.126101E+01,5.000000E+00,Active Shallow Crust,1.288897E+02,8.999467E+01,0.000000E+00 +2368368,fr,1,3.950000E+00,4.537930E+00,4.040442E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +2368380,fr,1,4.050000E+00,4.537930E+00,4.040442E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999136E+01,0.000000E+00 +2368812,fr,1,3.650000E+00,6.323290E+00,4.955414E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998834E+01,0.000000E+00 +2368857,fr,1,3.950000E+00,6.323290E+00,4.955414E+01,5.000000E+00,Active Shallow Crust,1.289001E+02,8.999381E+01,0.000000E+00 +2368872,fr,1,4.150000E+00,6.323290E+00,4.955414E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2368932,fr,1,4.650000E+00,6.323290E+00,4.955414E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +2369310,fr,1,3.750000E+00,4.771890E+00,4.219685E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998799E+01,-9.000000E+01 +2369916,fr,1,4.850000E+00,4.894510E+00,4.207876E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2369977,fr,1,5.350000E+00,4.894510E+00,4.207876E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +2370240,fr,1,3.550000E+00,1.295650E+00,4.260949E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +2370241,fr,1,3.550000E+00,1.295650E+00,4.260949E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +2370242,fr,1,3.550000E+00,1.295650E+00,4.260949E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +2370252,fr,3,3.650000E+00,1.295650E+00,4.260949E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +2370253,fr,3,3.650000E+00,1.295650E+00,4.260949E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +2370261,fr,1,3.650000E+00,1.295650E+00,4.260949E+01,5.000000E+00,Active Shallow Crust,1.289010E+02,8.996345E+01,0.000000E+00 +2370264,fr,1,3.750000E+00,1.295650E+00,4.260949E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2370276,fr,1,3.850000E+00,1.295650E+00,4.260949E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +2370282,fr,1,3.850000E+00,1.295650E+00,4.260949E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998937E+01,-9.000000E+01 +2370289,fr,2,3.950000E+00,1.295650E+00,4.260949E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +2370300,fr,2,4.050000E+00,1.295650E+00,4.260949E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +2370303,fr,1,4.050000E+00,1.295650E+00,4.260949E+01,5.000000E+00,Active Shallow Crust,2.400052E+02,5.800578E+01,0.000000E+00 +2370309,fr,1,4.050000E+00,1.295650E+00,4.260949E+01,5.000000E+00,Active Shallow Crust,1.288908E+02,8.999374E+01,0.000000E+00 +2370313,fr,1,4.150000E+00,1.295650E+00,4.260949E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +2370314,fr,1,4.150000E+00,1.295650E+00,4.260949E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +2370315,fr,1,4.150000E+00,1.295650E+00,4.260949E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.799711E+01,0.000000E+00 +2370324,fr,1,4.250000E+00,1.295650E+00,4.260949E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +2370325,fr,1,4.250000E+00,1.295650E+00,4.260949E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +2370333,fr,1,4.250000E+00,1.295650E+00,4.260949E+01,5.000000E+00,Active Shallow Crust,1.288949E+02,8.998094E+01,0.000000E+00 +2370351,fr,1,4.450000E+00,1.295650E+00,4.260949E+01,5.000000E+00,Active Shallow Crust,2.400044E+02,5.799438E+01,0.000000E+00 +2370363,fr,1,4.550000E+00,1.295650E+00,4.260949E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799711E+01,0.000000E+00 +2370373,fr,1,4.650000E+00,1.295650E+00,4.260949E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2370387,fr,1,4.750000E+00,1.295650E+00,4.260949E+01,5.000000E+00,Active Shallow Crust,2.400061E+02,5.800424E+01,0.000000E+00 +2370393,fr,1,4.750000E+00,1.295650E+00,4.260949E+01,5.000000E+00,Active Shallow Crust,1.288898E+02,8.998808E+01,0.000000E+00 +2370411,fr,1,4.950000E+00,1.295650E+00,4.260949E+01,5.000000E+00,Active Shallow Crust,2.400103E+02,5.800418E+01,0.000000E+00 +2370412,fr,1,4.950000E+00,1.295650E+00,4.260949E+01,1.500000E+01,Active Shallow Crust,2.400103E+02,5.800419E+01,0.000000E+00 +2370436,fr,1,5.150000E+00,1.295650E+00,4.260949E+01,1.500000E+01,Active Shallow Crust,2.400175E+02,5.799957E+01,0.000000E+00 +2370480,fr,1,5.550000E+00,1.295650E+00,4.260949E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2370481,fr,1,5.550000E+00,1.295650E+00,4.260949E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2370720,fr,6,3.550000E+00,-1.518900E-01,4.909105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2370721,fr,1,3.550000E+00,-1.518900E-01,4.909105E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2370732,fr,1,3.650000E+00,-1.518900E-01,4.909105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2370736,fr,1,3.650000E+00,-1.518900E-01,4.909105E+01,1.500000E+01,Active Shallow Crust,2.400014E+02,5.801292E+01,0.000000E+00 +2370753,fr,1,3.750000E+00,-1.518900E-01,4.909105E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.996735E+01,0.000000E+00 +2370765,fr,1,3.850000E+00,-1.518900E-01,4.909105E+01,5.000000E+00,Active Shallow Crust,1.288953E+02,8.999379E+01,0.000000E+00 +2370768,fr,1,3.950000E+00,-1.518900E-01,4.909105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2370769,fr,1,3.950000E+00,-1.518900E-01,4.909105E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2370780,fr,1,4.050000E+00,-1.518900E-01,4.909105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2370781,fr,1,4.050000E+00,-1.518900E-01,4.909105E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2370789,fr,1,4.050000E+00,-1.518900E-01,4.909105E+01,5.000000E+00,Active Shallow Crust,1.288901E+02,8.999374E+01,0.000000E+00 +2370793,fr,1,4.150000E+00,-1.518900E-01,4.909105E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2370794,fr,1,4.150000E+00,-1.518900E-01,4.909105E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2370885,fr,1,4.850000E+00,-1.518900E-01,4.909105E+01,5.000000E+00,Active Shallow Crust,1.288917E+02,8.998901E+01,0.000000E+00 +2370926,fr,1,5.250000E+00,-1.518900E-01,4.909105E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2371200,fr,1,3.550000E+00,1.290700E+00,4.477423E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +2371236,fr,1,3.850000E+00,1.290700E+00,4.477423E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +2371257,fr,1,3.950000E+00,1.290700E+00,4.477423E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.999379E+01,0.000000E+00 +2371314,fr,1,4.450000E+00,1.290700E+00,4.477423E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,-9.000000E+01 +2371680,fr,1,3.550000E+00,1.017100E+00,4.823153E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +2371701,fr,1,3.650000E+00,1.017100E+00,4.823153E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.996342E+01,0.000000E+00 +2371736,fr,1,3.950000E+00,1.017100E+00,4.823153E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,-9.000000E+01 +2371764,fr,1,4.250000E+00,1.017100E+00,4.823153E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +2371797,fr,1,4.450000E+00,1.017100E+00,4.823153E+01,5.000000E+00,Active Shallow Crust,1.288918E+02,8.999374E+01,0.000000E+00 +2372161,fr,1,3.550000E+00,7.427550E+00,4.993549E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998702E+01,0.000000E+00 +2372167,fr,1,3.550000E+00,7.427550E+00,4.993549E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998687E+01,-9.000000E+01 +2372184,fr,2,3.750000E+00,7.427550E+00,4.993549E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2372193,fr,1,3.750000E+00,7.427550E+00,4.993549E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.996704E+01,0.000000E+00 +2372209,fr,1,3.950000E+00,7.427550E+00,4.993549E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999181E+01,0.000000E+00 +2372244,fr,1,4.250000E+00,7.427550E+00,4.993549E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999130E+01,0.000000E+00 +2372284,fr,1,4.550000E+00,7.427550E+00,4.993549E+01,1.500000E+01,Active Shallow Crust,2.400105E+02,5.799758E+01,0.000000E+00 +2372293,fr,1,4.650000E+00,7.427550E+00,4.993549E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999085E+01,0.000000E+00 +2372424,fr,1,5.750000E+00,7.427550E+00,4.993549E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2373156,fr,2,3.850000E+00,6.137900E+00,4.928048E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +2373169,fr,1,3.950000E+00,6.137900E+00,4.928048E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999170E+01,0.000000E+00 +2373180,fr,1,4.050000E+00,6.137900E+00,4.928048E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998890E+01,0.000000E+00 +2373204,fr,1,4.250000E+00,6.137900E+00,4.928048E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999118E+01,0.000000E+00 +2373220,fr,1,4.350000E+00,6.137900E+00,4.928048E+01,1.500000E+01,Active Shallow Crust,2.400090E+02,5.799638E+01,0.000000E+00 +2373609,fr,1,3.550000E+00,6.879640E+00,4.823486E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999329E+01,0.000000E+00 +2373612,fr,2,3.650000E+00,6.879640E+00,4.823486E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998803E+01,0.000000E+00 +2373617,fr,1,3.650000E+00,6.879640E+00,4.823486E+01,2.750000E+01,Active Shallow Crust,2.400007E+02,5.801403E+01,0.000000E+00 +2373624,fr,1,3.750000E+00,6.879640E+00,4.823486E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +2373636,fr,2,3.850000E+00,6.879640E+00,4.823486E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +2373640,fr,1,3.850000E+00,6.879640E+00,4.823486E+01,1.500000E+01,Active Shallow Crust,2.400101E+02,5.799793E+01,0.000000E+00 +2373642,fr,2,3.850000E+00,6.879640E+00,4.823486E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,-9.000000E+01 +2373645,fr,1,3.850000E+00,6.879640E+00,4.823486E+01,5.000000E+00,Active Shallow Crust,1.288951E+02,8.999287E+01,0.000000E+00 +2373651,fr,1,3.950000E+00,6.879640E+00,4.823486E+01,5.000000E+00,Active Shallow Crust,2.400196E+02,5.800513E+01,0.000000E+00 +2373710,fr,1,4.450000E+00,6.879640E+00,4.823486E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +2373729,fr,1,4.550000E+00,6.879640E+00,4.823486E+01,5.000000E+00,Active Shallow Crust,1.288934E+02,8.998574E+01,0.000000E+00 +2374089,fr,1,3.550000E+00,1.468550E+00,5.279889E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.999390E+01,0.000000E+00 +2375040,fr,1,3.550000E+00,-5.427150E+00,4.823882E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999329E+01,0.000000E+00 +2375053,fr,1,3.650000E+00,-5.427150E+00,4.823882E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998803E+01,0.000000E+00 +2375055,fr,1,3.650000E+00,-5.427150E+00,4.823882E+01,5.000000E+00,Active Shallow Crust,2.400003E+02,5.801334E+01,0.000000E+00 +2375082,fr,1,3.850000E+00,-5.427150E+00,4.823882E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,-9.000000E+01 +2375520,fr,1,3.550000E+00,-1.748720E+00,4.925081E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2375522,fr,1,3.550000E+00,-1.748720E+00,4.925081E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2375526,fr,1,3.550000E+00,-1.748720E+00,4.925081E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +2375532,fr,1,3.650000E+00,-1.748720E+00,4.925081E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +2375535,fr,2,3.650000E+00,-1.748720E+00,4.925081E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801294E+01,0.000000E+00 +2375536,fr,1,3.650000E+00,-1.748720E+00,4.925081E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801294E+01,0.000000E+00 +2375547,fr,1,3.750000E+00,-1.748720E+00,4.925081E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.801758E+01,0.000000E+00 +2375552,fr,1,3.750000E+00,-1.748720E+00,4.925081E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998942E+01,-9.000000E+01 +2375556,fr,1,3.850000E+00,-1.748720E+00,4.925081E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +2375568,fr,1,3.950000E+00,-1.748720E+00,4.925081E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +2375592,fr,1,4.150000E+00,-1.748720E+00,4.925081E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2375604,fr,1,4.250000E+00,-1.748720E+00,4.925081E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +2375605,fr,2,4.250000E+00,-1.748720E+00,4.925081E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +2375616,fr,1,4.350000E+00,-1.748720E+00,4.925081E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2375617,fr,3,4.350000E+00,-1.748720E+00,4.925081E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2375621,fr,1,4.350000E+00,-1.748720E+00,4.925081E+01,2.750000E+01,Active Shallow Crust,2.400092E+02,5.799598E+01,0.000000E+00 +2375647,fr,1,4.550000E+00,-1.748720E+00,4.925081E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +2375761,fr,1,5.550000E+00,-1.748720E+00,4.925081E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2376481,fr,1,3.550000E+00,2.015630E+00,4.365139E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998906E+01,0.000000E+00 +2376492,fr,1,3.650000E+00,2.015630E+00,4.365139E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +2376505,fr,1,3.750000E+00,2.015630E+00,4.365139E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999131E+01,0.000000E+00 +2376517,fr,2,3.850000E+00,2.015630E+00,4.365139E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +2376520,fr,1,3.850000E+00,2.015630E+00,4.365139E+01,1.500000E+01,Active Shallow Crust,2.400104E+02,5.799770E+01,0.000000E+00 +2376603,fr,1,4.550000E+00,2.015630E+00,4.365139E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799725E+01,0.000000E+00 +2376960,fr,2,3.550000E+00,2.476860E+00,4.451618E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +2376964,fr,1,3.550000E+00,2.476860E+00,4.451618E+01,1.500000E+01,Active Shallow Crust,2.400117E+02,5.799833E+01,0.000000E+00 +2376972,fr,1,3.650000E+00,2.476860E+00,4.451618E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +2376975,fr,1,3.650000E+00,2.476860E+00,4.451618E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801264E+01,0.000000E+00 +2376984,fr,1,3.750000E+00,2.476860E+00,4.451618E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998858E+01,0.000000E+00 +2376990,fr,1,3.750000E+00,2.476860E+00,4.451618E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999133E+01,-9.000000E+01 +2377008,fr,1,3.950000E+00,2.476860E+00,4.451618E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +2377023,fr,2,4.050000E+00,2.476860E+00,4.451618E+01,5.000000E+00,Active Shallow Crust,2.400058E+02,5.800555E+01,0.000000E+00 +2377044,fr,2,4.250000E+00,2.476860E+00,4.451618E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +2377056,fr,1,4.350000E+00,2.476860E+00,4.451618E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2377093,fr,1,4.650000E+00,2.476860E+00,4.451618E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +2377116,fr,1,4.850000E+00,2.476860E+00,4.451618E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +2377457,fr,1,3.650000E+00,-5.981010E+00,4.886290E+01,2.750000E+01,Active Shallow Crust,2.400022E+02,5.801193E+01,0.000000E+00 +2377468,fr,1,3.750000E+00,-5.981010E+00,4.886290E+01,1.500000E+01,Active Shallow Crust,2.400080E+02,5.801742E+01,0.000000E+00 +2377477,fr,1,3.850000E+00,-5.981010E+00,4.886290E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999061E+01,0.000000E+00 +2377920,fr,4,3.550000E+00,-2.007800E-01,4.789038E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2377932,fr,1,3.650000E+00,-2.007800E-01,4.789038E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2377953,fr,1,3.750000E+00,-2.007800E-01,4.789038E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996735E+01,0.000000E+00 +2377956,fr,1,3.850000E+00,-2.007800E-01,4.789038E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2377957,fr,1,3.850000E+00,-2.007800E-01,4.789038E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2377986,fr,1,4.050000E+00,-2.007800E-01,4.789038E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +2377996,fr,1,4.150000E+00,-2.007800E-01,4.789038E+01,1.500000E+01,Active Shallow Crust,2.400087E+02,5.799738E+01,0.000000E+00 +2378424,fr,1,3.750000E+00,3.390800E-01,4.142441E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +2378436,fr,1,3.850000E+00,3.390800E-01,4.142441E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2378440,fr,1,3.850000E+00,3.390800E-01,4.142441E+01,1.500000E+01,Active Shallow Crust,2.400102E+02,5.799770E+01,0.000000E+00 +2378508,fr,1,4.450000E+00,3.390800E-01,4.142441E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2378609,fr,1,5.250000E+00,3.390800E-01,4.142441E+01,2.750000E+01,Active Shallow Crust,2.400175E+02,5.799972E+01,0.000000E+00 +2378895,fr,1,3.650000E+00,-1.054590E+00,4.512048E+01,5.000000E+00,Active Shallow Crust,2.400006E+02,5.801287E+01,0.000000E+00 +2378917,fr,1,3.850000E+00,-1.054590E+00,4.512048E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +2378988,fr,1,4.450000E+00,-1.054590E+00,4.512048E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +2379360,fr,3,3.550000E+00,-1.978850E+00,4.842951E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2379361,fr,1,3.550000E+00,-1.978850E+00,4.842951E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2379371,fr,1,3.550000E+00,-1.978850E+00,4.842951E+01,2.750000E+01,Active Shallow Crust,1.288957E+02,8.999415E+01,0.000000E+00 +2379372,fr,1,3.650000E+00,-1.978850E+00,4.842951E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +2379373,fr,1,3.650000E+00,-1.978850E+00,4.842951E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +2379374,fr,1,3.650000E+00,-1.978850E+00,4.842951E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +2379375,fr,2,3.650000E+00,-1.978850E+00,4.842951E+01,5.000000E+00,Active Shallow Crust,2.400016E+02,5.801271E+01,0.000000E+00 +2379376,fr,2,3.650000E+00,-1.978850E+00,4.842951E+01,1.500000E+01,Active Shallow Crust,2.400016E+02,5.801271E+01,0.000000E+00 +2379381,fr,1,3.650000E+00,-1.978850E+00,4.842951E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.996343E+01,0.000000E+00 +2379384,fr,1,3.750000E+00,-1.978850E+00,4.842951E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +2379385,fr,1,3.750000E+00,-1.978850E+00,4.842951E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +2379390,fr,1,3.750000E+00,-1.978850E+00,4.842951E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,-9.000000E+01 +2379391,fr,1,3.750000E+00,-1.978850E+00,4.842951E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999059E+01,-9.000000E+01 +2379396,fr,1,3.850000E+00,-1.978850E+00,4.842951E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +2379417,fr,1,3.950000E+00,-1.978850E+00,4.842951E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.999367E+01,0.000000E+00 +2379418,fr,1,3.950000E+00,-1.978850E+00,4.842951E+01,1.500000E+01,Active Shallow Crust,1.289002E+02,8.999367E+01,0.000000E+00 +2379420,fr,1,4.050000E+00,-1.978850E+00,4.842951E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +2379423,fr,1,4.050000E+00,-1.978850E+00,4.842951E+01,5.000000E+00,Active Shallow Crust,2.400064E+02,5.800583E+01,0.000000E+00 +2379438,fr,1,4.150000E+00,-1.978850E+00,4.842951E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,-9.000000E+01 +2379468,fr,1,4.450000E+00,-1.978850E+00,4.842951E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2379505,fr,1,4.750000E+00,-1.978850E+00,4.842951E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2379852,fr,3,3.650000E+00,1.065170E+00,4.902629E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2379864,fr,1,3.750000E+00,1.065170E+00,4.902629E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +2379869,fr,1,3.750000E+00,1.065170E+00,4.902629E+01,2.750000E+01,Active Shallow Crust,2.400086E+02,5.801759E+01,0.000000E+00 +2379880,fr,1,3.850000E+00,1.065170E+00,4.902629E+01,1.500000E+01,Active Shallow Crust,2.400112E+02,5.799788E+01,0.000000E+00 +2379913,fr,1,4.150000E+00,1.065170E+00,4.902629E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2379922,fr,1,4.150000E+00,1.065170E+00,4.902629E+01,1.500000E+01,Active Shallow Crust,1.288972E+02,8.999379E+01,0.000000E+00 +2379926,fr,1,4.250000E+00,1.065170E+00,4.902629E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +2379949,fr,1,4.450000E+00,1.065170E+00,4.902629E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2379960,fr,1,4.550000E+00,1.065170E+00,4.902629E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2380033,fr,1,5.150000E+00,1.065170E+00,4.902629E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2380057,fr,1,5.350000E+00,1.065170E+00,4.902629E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2380112,fr,1,5.750000E+00,1.065170E+00,4.902629E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +2380331,fr,1,3.550000E+00,5.235010E+00,4.789868E+01,2.750000E+01,Active Shallow Crust,1.288953E+02,8.999324E+01,0.000000E+00 +2380334,fr,1,3.650000E+00,5.235010E+00,4.789868E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998795E+01,0.000000E+00 +2380406,fr,1,4.250000E+00,5.235010E+00,4.789868E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +2380800,fr,2,3.550000E+00,-1.393330E+00,4.874229E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2380812,fr,2,3.650000E+00,-1.393330E+00,4.874229E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +2380813,fr,3,3.650000E+00,-1.393330E+00,4.874229E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +2380814,fr,1,3.650000E+00,-1.393330E+00,4.874229E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +2380842,fr,1,3.850000E+00,-1.393330E+00,4.874229E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,-9.000000E+01 +2380848,fr,3,3.950000E+00,-1.393330E+00,4.874229E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +2380860,fr,2,4.050000E+00,-1.393330E+00,4.874229E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +2380863,fr,1,4.050000E+00,-1.393330E+00,4.874229E+01,5.000000E+00,Active Shallow Crust,2.400062E+02,5.800591E+01,0.000000E+00 +2380956,fr,1,4.850000E+00,-1.393330E+00,4.874229E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +2380993,fr,1,5.150000E+00,-1.393330E+00,4.874229E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2381376,fr,1,4.350000E+00,-4.337170E+00,4.615643E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +2381760,fr,1,3.550000E+00,-2.631960E+00,4.958497E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2381784,fr,1,3.750000E+00,-2.631960E+00,4.958497E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +2381787,fr,1,3.750000E+00,-2.631960E+00,4.958497E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.801778E+01,0.000000E+00 +2382246,fr,1,3.550000E+00,4.454650E+00,4.093709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999229E+01,-9.000000E+01 +2382256,fr,1,3.650000E+00,4.454650E+00,4.093709E+01,1.500000E+01,Active Shallow Crust,2.400013E+02,5.801293E+01,0.000000E+00 +2382260,fr,1,3.650000E+00,4.454650E+00,4.093709E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999313E+01,-9.000000E+01 +2382264,fr,1,3.750000E+00,4.454650E+00,4.093709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998790E+01,0.000000E+00 +2382276,fr,2,3.850000E+00,4.454650E+00,4.093709E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +2382297,fr,1,3.950000E+00,4.454650E+00,4.093709E+01,5.000000E+00,Active Shallow Crust,1.288998E+02,8.999519E+01,0.000000E+00 +2382484,fr,1,5.550000E+00,4.454650E+00,4.093709E+01,1.500000E+01,Active Shallow Crust,2.400280E+02,5.800164E+01,0.000000E+00 +2382720,fr,1,3.550000E+00,6.774300E+00,4.365751E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999271E+01,0.000000E+00 +2382732,fr,2,3.650000E+00,6.774300E+00,4.365751E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998700E+01,0.000000E+00 +2382745,fr,1,3.750000E+00,6.774300E+00,4.365751E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998841E+01,0.000000E+00 +2382757,fr,3,3.850000E+00,6.774300E+00,4.365751E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +2382779,fr,1,3.950000E+00,6.774300E+00,4.365751E+01,2.750000E+01,Active Shallow Crust,1.289017E+02,8.999310E+01,0.000000E+00 +2382780,fr,1,4.050000E+00,6.774300E+00,4.365751E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999180E+01,0.000000E+00 +2382781,fr,1,4.050000E+00,6.774300E+00,4.365751E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999180E+01,0.000000E+00 +2382852,fr,2,4.650000E+00,6.774300E+00,4.365751E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +2382924,fr,1,5.250000E+00,6.774300E+00,4.365751E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2382968,fr,1,5.550000E+00,6.774300E+00,4.365751E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998966E+01,-9.000000E+01 +2383240,fr,1,3.850000E+00,1.939400E-01,4.414321E+01,1.500000E+01,Active Shallow Crust,2.400105E+02,5.799777E+01,0.000000E+00 +2383288,fr,1,4.250000E+00,1.939400E-01,4.414321E+01,1.500000E+01,Active Shallow Crust,2.400071E+02,5.799399E+01,0.000000E+00 +2383419,fr,1,5.350000E+00,1.939400E-01,4.414321E+01,5.000000E+00,Active Shallow Crust,2.400234E+02,5.799754E+01,0.000000E+00 +2383680,fr,1,3.550000E+00,1.864850E+00,4.229820E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +2383691,fr,1,3.550000E+00,1.864850E+00,4.229820E+01,2.750000E+01,Active Shallow Crust,1.288966E+02,8.999348E+01,0.000000E+00 +2383692,fr,4,3.650000E+00,1.864850E+00,4.229820E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2383693,fr,1,3.650000E+00,1.864850E+00,4.229820E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2383695,fr,2,3.650000E+00,1.864850E+00,4.229820E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801279E+01,0.000000E+00 +2383701,fr,1,3.650000E+00,1.864850E+00,4.229820E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.996358E+01,0.000000E+00 +2383704,fr,1,3.750000E+00,1.864850E+00,4.229820E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +2383711,fr,1,3.750000E+00,1.864850E+00,4.229820E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998951E+01,-9.000000E+01 +2383716,fr,1,3.850000E+00,1.864850E+00,4.229820E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +2383717,fr,1,3.850000E+00,1.864850E+00,4.229820E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +2383726,fr,1,3.850000E+00,1.864850E+00,4.229820E+01,1.500000E+01,Active Shallow Crust,1.288959E+02,8.999406E+01,0.000000E+00 +2383739,fr,1,3.950000E+00,1.864850E+00,4.229820E+01,2.750000E+01,Active Shallow Crust,1.289009E+02,8.999353E+01,0.000000E+00 +2383740,fr,1,4.050000E+00,1.864850E+00,4.229820E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +2383744,fr,1,4.050000E+00,1.864850E+00,4.229820E+01,1.500000E+01,Active Shallow Crust,2.400053E+02,5.800569E+01,0.000000E+00 +2383745,fr,1,4.050000E+00,1.864850E+00,4.229820E+01,2.750000E+01,Active Shallow Crust,2.400053E+02,5.800569E+01,0.000000E+00 +2383746,fr,1,4.050000E+00,1.864850E+00,4.229820E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,-9.000000E+01 +2383762,fr,1,4.150000E+00,1.864850E+00,4.229820E+01,1.500000E+01,Active Shallow Crust,1.288981E+02,8.999393E+01,0.000000E+00 +2383777,fr,1,4.350000E+00,1.864850E+00,4.229820E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +2383812,fr,1,4.650000E+00,1.864850E+00,4.229820E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2383891,fr,1,5.250000E+00,1.864850E+00,4.229820E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +2383982,fr,1,6.050000E+00,1.864850E+00,4.229820E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2384160,fr,2,3.550000E+00,2.901370E+00,4.562832E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +2384161,fr,1,3.550000E+00,2.901370E+00,4.562832E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +2384162,fr,1,3.550000E+00,2.901370E+00,4.562832E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +2384169,fr,1,3.550000E+00,2.901370E+00,4.562832E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999471E+01,0.000000E+00 +2384172,fr,1,3.650000E+00,2.901370E+00,4.562832E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +2384184,fr,1,3.750000E+00,2.901370E+00,4.562832E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998880E+01,0.000000E+00 +2384196,fr,3,3.850000E+00,2.901370E+00,4.562832E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2384199,fr,1,3.850000E+00,2.901370E+00,4.562832E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.799747E+01,0.000000E+00 +2384209,fr,1,3.950000E+00,2.901370E+00,4.562832E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +2384216,fr,1,3.950000E+00,2.901370E+00,4.562832E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999100E+01,-9.000000E+01 +2384217,fr,1,3.950000E+00,2.901370E+00,4.562832E+01,5.000000E+00,Active Shallow Crust,1.289009E+02,8.999332E+01,0.000000E+00 +2384220,fr,1,4.050000E+00,2.901370E+00,4.562832E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +2384223,fr,1,4.050000E+00,2.901370E+00,4.562832E+01,5.000000E+00,Active Shallow Crust,2.400057E+02,5.800562E+01,0.000000E+00 +2384233,fr,2,4.150000E+00,2.901370E+00,4.562832E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +2384251,fr,1,4.250000E+00,2.901370E+00,4.562832E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999044E+01,-9.000000E+01 +2384266,fr,1,4.350000E+00,2.901370E+00,4.562832E+01,1.500000E+01,Active Shallow Crust,1.288980E+02,8.998274E+01,0.000000E+00 +2384268,fr,1,4.450000E+00,2.901370E+00,4.562832E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2384280,fr,1,4.550000E+00,2.901370E+00,4.562832E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2384294,fr,1,4.650000E+00,2.901370E+00,4.562832E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2384301,fr,1,4.650000E+00,2.901370E+00,4.562832E+01,5.000000E+00,Active Shallow Crust,1.288914E+02,8.998692E+01,0.000000E+00 +2384316,fr,1,4.850000E+00,2.901370E+00,4.562832E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +2384317,fr,1,4.850000E+00,2.901370E+00,4.562832E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +2384640,fr,4,3.550000E+00,7.144000E-02,4.276725E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +2384647,fr,1,3.550000E+00,7.144000E-02,4.276725E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,-9.000000E+01 +2384653,fr,1,3.650000E+00,7.144000E-02,4.276725E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2384664,fr,2,3.750000E+00,7.144000E-02,4.276725E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2384665,fr,2,3.750000E+00,7.144000E-02,4.276725E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2384668,fr,1,3.750000E+00,7.144000E-02,4.276725E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.801749E+01,0.000000E+00 +2384676,fr,1,3.850000E+00,7.144000E-02,4.276725E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2384694,fr,1,3.950000E+00,7.144000E-02,4.276725E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +2384696,fr,1,3.950000E+00,7.144000E-02,4.276725E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +2384701,fr,1,4.050000E+00,7.144000E-02,4.276725E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2384702,fr,1,4.050000E+00,7.144000E-02,4.276725E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2384724,fr,1,4.250000E+00,7.144000E-02,4.276725E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2384736,fr,1,4.350000E+00,7.144000E-02,4.276725E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2384770,fr,1,4.550000E+00,7.144000E-02,4.276725E+01,1.500000E+01,Active Shallow Crust,1.288947E+02,8.998578E+01,0.000000E+00 +2384870,fr,1,5.450000E+00,7.144000E-02,4.276725E+01,2.750000E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +2385120,fr,8,3.550000E+00,6.832970E+00,4.629995E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999303E+01,0.000000E+00 +2385121,fr,2,3.550000E+00,6.832970E+00,4.629995E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999303E+01,0.000000E+00 +2385123,fr,2,3.550000E+00,6.832970E+00,4.629995E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799833E+01,0.000000E+00 +2385132,fr,5,3.650000E+00,6.832970E+00,4.629995E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998758E+01,0.000000E+00 +2385133,fr,1,3.650000E+00,6.832970E+00,4.629995E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998758E+01,0.000000E+00 +2385144,fr,3,3.750000E+00,6.832970E+00,4.629995E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998893E+01,0.000000E+00 +2385145,fr,3,3.750000E+00,6.832970E+00,4.629995E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998893E+01,0.000000E+00 +2385148,fr,1,3.750000E+00,6.832970E+00,4.629995E+01,1.500000E+01,Active Shallow Crust,2.400078E+02,5.801812E+01,0.000000E+00 +2385153,fr,1,3.750000E+00,6.832970E+00,4.629995E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996749E+01,0.000000E+00 +2385155,fr,1,3.750000E+00,6.832970E+00,4.629995E+01,2.750000E+01,Active Shallow Crust,1.288965E+02,8.996749E+01,0.000000E+00 +2385156,fr,6,3.850000E+00,6.832970E+00,4.629995E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2385159,fr,1,3.850000E+00,6.832970E+00,4.629995E+01,5.000000E+00,Active Shallow Crust,2.400101E+02,5.799767E+01,0.000000E+00 +2385162,fr,1,3.850000E+00,6.832970E+00,4.629995E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +2385168,fr,1,3.950000E+00,6.832970E+00,4.629995E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999121E+01,0.000000E+00 +2385169,fr,4,3.950000E+00,6.832970E+00,4.629995E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999121E+01,0.000000E+00 +2385177,fr,1,3.950000E+00,6.832970E+00,4.629995E+01,5.000000E+00,Active Shallow Crust,1.289015E+02,8.999341E+01,0.000000E+00 +2385180,fr,2,4.050000E+00,6.832970E+00,4.629995E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998824E+01,0.000000E+00 +2385183,fr,1,4.050000E+00,6.832970E+00,4.629995E+01,5.000000E+00,Active Shallow Crust,2.400055E+02,5.800636E+01,0.000000E+00 +2385191,fr,2,4.050000E+00,6.832970E+00,4.629995E+01,2.750000E+01,Active Shallow Crust,1.288910E+02,8.999413E+01,0.000000E+00 +2385193,fr,1,4.150000E+00,6.832970E+00,4.629995E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +2385194,fr,1,4.150000E+00,6.832970E+00,4.629995E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +2385211,fr,1,4.250000E+00,6.832970E+00,4.629995E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999055E+01,-9.000000E+01 +2385228,fr,1,4.450000E+00,6.832970E+00,4.629995E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +2385240,fr,1,4.550000E+00,6.832970E+00,4.629995E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +2385241,fr,1,4.550000E+00,6.832970E+00,4.629995E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +2385247,fr,1,4.550000E+00,6.832970E+00,4.629995E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999108E+01,-9.000000E+01 +2385253,fr,1,4.650000E+00,6.832970E+00,4.629995E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +2385265,fr,1,4.750000E+00,6.832970E+00,4.629995E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +2385276,fr,1,4.850000E+00,6.832970E+00,4.629995E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +2385288,fr,1,4.950000E+00,6.832970E+00,4.629995E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +2385289,fr,1,4.950000E+00,6.832970E+00,4.629995E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +2385325,fr,1,5.250000E+00,6.832970E+00,4.629995E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +2385336,fr,1,5.350000E+00,6.832970E+00,4.629995E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +2385340,fr,1,5.350000E+00,6.832970E+00,4.629995E+01,1.500000E+01,Active Shallow Crust,2.400250E+02,5.799778E+01,0.000000E+00 +2385489,fr,1,6.550000E+00,6.832963E+00,4.629994E+01,9.527304E+00,Active Shallow Crust,1.288301E+02,8.999010E+01,0.000000E+00 +2385600,fr,3,3.550000E+00,6.436090E+00,4.599147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999300E+01,0.000000E+00 +2385601,fr,1,3.550000E+00,6.436090E+00,4.599147E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999300E+01,0.000000E+00 +2385603,fr,1,3.550000E+00,6.436090E+00,4.599147E+01,5.000000E+00,Active Shallow Crust,2.400131E+02,5.799780E+01,0.000000E+00 +2385606,fr,1,3.550000E+00,6.436090E+00,4.599147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999291E+01,-9.000000E+01 +2385612,fr,1,3.650000E+00,6.436090E+00,4.599147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998751E+01,0.000000E+00 +2385615,fr,1,3.650000E+00,6.436090E+00,4.599147E+01,5.000000E+00,Active Shallow Crust,2.399996E+02,5.801359E+01,0.000000E+00 +2385616,fr,1,3.650000E+00,6.436090E+00,4.599147E+01,1.500000E+01,Active Shallow Crust,2.399996E+02,5.801359E+01,0.000000E+00 +2385618,fr,1,3.650000E+00,6.436090E+00,4.599147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998737E+01,-9.000000E+01 +2385619,fr,1,3.650000E+00,6.436090E+00,4.599147E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998737E+01,-9.000000E+01 +2385624,fr,3,3.750000E+00,6.436090E+00,4.599147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998887E+01,0.000000E+00 +2385630,fr,1,3.750000E+00,6.436090E+00,4.599147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998874E+01,-9.000000E+01 +2385633,fr,2,3.750000E+00,6.436090E+00,4.599147E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996748E+01,0.000000E+00 +2385636,fr,1,3.850000E+00,6.436090E+00,4.599147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +2385651,fr,1,3.950000E+00,6.436090E+00,4.599147E+01,5.000000E+00,Active Shallow Crust,2.400202E+02,5.800529E+01,0.000000E+00 +2385660,fr,1,4.050000E+00,6.436090E+00,4.599147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998818E+01,0.000000E+00 +2385661,fr,2,4.050000E+00,6.436090E+00,4.599147E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998818E+01,0.000000E+00 +2385664,fr,1,4.050000E+00,6.436090E+00,4.599147E+01,1.500000E+01,Active Shallow Crust,2.400060E+02,5.800525E+01,0.000000E+00 +2385667,fr,1,4.050000E+00,6.436090E+00,4.599147E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998804E+01,-9.000000E+01 +2385697,fr,1,4.350000E+00,6.436090E+00,4.599147E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +2385708,fr,1,4.450000E+00,6.436090E+00,4.599147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2385709,fr,2,4.450000E+00,6.436090E+00,4.599147E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2385720,fr,1,4.550000E+00,6.436090E+00,4.599147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998892E+01,0.000000E+00 +2385768,fr,1,4.950000E+00,6.436090E+00,4.599147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +2385795,fr,1,5.150000E+00,6.436090E+00,4.599147E+01,5.000000E+00,Active Shallow Crust,2.400194E+02,5.799993E+01,0.000000E+00 +2385826,fr,1,5.350000E+00,6.436090E+00,4.599147E+01,1.500000E+01,Active Shallow Crust,1.288836E+02,8.998788E+01,0.000000E+00 +2385876,fr,1,5.850000E+00,6.436090E+00,4.599147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2386080,fr,1,3.550000E+00,7.996280E+00,4.924793E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998683E+01,0.000000E+00 +2386081,fr,1,3.550000E+00,7.996280E+00,4.924793E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998683E+01,0.000000E+00 +2386083,fr,2,3.550000E+00,7.996280E+00,4.924793E+01,5.000000E+00,Active Shallow Crust,2.400135E+02,5.799741E+01,0.000000E+00 +2386089,fr,1,3.550000E+00,7.996280E+00,4.924793E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.999342E+01,0.000000E+00 +2386092,fr,4,3.650000E+00,7.996280E+00,4.924793E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998827E+01,0.000000E+00 +2386097,fr,1,3.650000E+00,7.996280E+00,4.924793E+01,2.750000E+01,Active Shallow Crust,2.400000E+02,5.801435E+01,0.000000E+00 +2386105,fr,1,3.750000E+00,7.996280E+00,4.924793E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +2386106,fr,1,3.750000E+00,7.996280E+00,4.924793E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +2386118,fr,1,3.850000E+00,7.996280E+00,4.924793E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +2386164,fr,1,4.250000E+00,7.996280E+00,4.924793E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999118E+01,0.000000E+00 +2386188,fr,1,4.450000E+00,7.996280E+00,4.924793E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +2386202,fr,1,4.550000E+00,7.996280E+00,4.924793E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +2386320,fr,1,5.550000E+00,7.996280E+00,4.924793E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +2387051,fr,1,3.550000E+00,7.267520E+00,4.317947E+01,2.750000E+01,Active Shallow Crust,1.288952E+02,8.999632E+01,0.000000E+00 +2387067,fr,2,3.750000E+00,7.267520E+00,4.317947E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801764E+01,0.000000E+00 +2387078,fr,1,3.850000E+00,7.267520E+00,4.317947E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +2387088,fr,1,3.950000E+00,7.267520E+00,4.317947E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,0.000000E+00 +2387112,fr,1,4.150000E+00,7.267520E+00,4.317947E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +2387601,fr,1,4.150000E+00,2.702220E+00,4.831260E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.999412E+01,0.000000E+00 +2387632,fr,1,4.450000E+00,2.702220E+00,4.831260E+01,1.500000E+01,Active Shallow Crust,2.400059E+02,5.799471E+01,0.000000E+00 +2388013,fr,1,3.650000E+00,7.158300E+00,5.162802E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998884E+01,0.000000E+00 +2388026,fr,1,3.750000E+00,7.158300E+00,5.162802E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2388492,fr,1,3.650000E+00,2.763170E+00,4.014934E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2388993,fr,1,3.750000E+00,2.688770E+00,4.000208E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996738E+01,0.000000E+00 +2389020,fr,1,4.050000E+00,2.688770E+00,4.000208E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +2389038,fr,1,4.150000E+00,2.688770E+00,4.000208E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,-9.000000E+01 +2389446,fr,1,3.550000E+00,2.310520E+00,5.205449E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,-9.000000E+01 +2389452,fr,1,3.650000E+00,2.310520E+00,5.205449E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +2389462,fr,1,3.650000E+00,2.310520E+00,5.205449E+01,1.500000E+01,Active Shallow Crust,1.289006E+02,8.996339E+01,0.000000E+00 +2389464,fr,1,3.750000E+00,2.310520E+00,5.205449E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +2389921,fr,1,3.550000E+00,3.261100E+00,4.076688E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998854E+01,0.000000E+00 +2389928,fr,1,3.550000E+00,3.261100E+00,4.076688E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998841E+01,-9.000000E+01 +2389995,fr,1,4.150000E+00,3.261100E+00,4.076688E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799709E+01,0.000000E+00 +2390005,fr,1,4.250000E+00,3.261100E+00,4.076688E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +2390400,fr,1,3.550000E+00,-2.991530E+00,4.684854E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +2390638,fr,1,5.450000E+00,-2.991530E+00,4.684854E+01,1.500000E+01,Active Shallow Crust,1.288786E+02,8.998892E+01,0.000000E+00 +2390880,fr,1,3.550000E+00,3.247150E+00,4.144076E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +2390883,fr,2,3.550000E+00,3.247150E+00,4.144076E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799817E+01,0.000000E+00 +2390884,fr,1,3.550000E+00,3.247150E+00,4.144076E+01,1.500000E+01,Active Shallow Crust,2.400116E+02,5.799817E+01,0.000000E+00 +2390892,fr,1,3.650000E+00,3.247150E+00,4.144076E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +2390898,fr,1,3.650000E+00,3.247150E+00,4.144076E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,-9.000000E+01 +2390952,fr,1,4.150000E+00,3.247150E+00,4.144076E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +2390964,fr,1,4.250000E+00,3.247150E+00,4.144076E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +2390977,fr,1,4.350000E+00,3.247150E+00,4.144076E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +2390985,fr,1,4.350000E+00,3.247150E+00,4.144076E+01,5.000000E+00,Active Shallow Crust,1.288989E+02,8.998285E+01,0.000000E+00 +2390989,fr,1,4.450000E+00,3.247150E+00,4.144076E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999061E+01,0.000000E+00 +2391360,fr,8,3.550000E+00,5.927860E+00,5.049783E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998717E+01,0.000000E+00 +2391362,fr,1,3.550000E+00,5.927860E+00,5.049783E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998717E+01,0.000000E+00 +2391363,fr,1,3.550000E+00,5.927860E+00,5.049783E+01,5.000000E+00,Active Shallow Crust,2.400131E+02,5.799736E+01,0.000000E+00 +2391369,fr,2,3.550000E+00,5.927860E+00,5.049783E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.999358E+01,0.000000E+00 +2391372,fr,4,3.650000E+00,5.927860E+00,5.049783E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +2391376,fr,1,3.650000E+00,5.927860E+00,5.049783E+01,1.500000E+01,Active Shallow Crust,2.400023E+02,5.801283E+01,0.000000E+00 +2391384,fr,2,3.750000E+00,5.927860E+00,5.049783E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2391385,fr,1,3.750000E+00,5.927860E+00,5.049783E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2391386,fr,2,3.750000E+00,5.927860E+00,5.049783E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2391393,fr,1,3.750000E+00,5.927860E+00,5.049783E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.996756E+01,0.000000E+00 +2391396,fr,1,3.850000E+00,5.927860E+00,5.049783E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999092E+01,0.000000E+00 +2391399,fr,2,3.850000E+00,5.927860E+00,5.049783E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799780E+01,0.000000E+00 +2391400,fr,1,3.850000E+00,5.927860E+00,5.049783E+01,1.500000E+01,Active Shallow Crust,2.400124E+02,5.799780E+01,0.000000E+00 +2391404,fr,1,3.850000E+00,5.927860E+00,5.049783E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999081E+01,-9.000000E+01 +2391405,fr,2,3.850000E+00,5.927860E+00,5.049783E+01,5.000000E+00,Active Shallow Crust,1.288944E+02,8.999319E+01,0.000000E+00 +2391420,fr,2,4.050000E+00,5.927860E+00,5.049783E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +2391421,fr,1,4.050000E+00,5.927860E+00,5.049783E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +2391441,fr,1,4.150000E+00,5.927860E+00,5.049783E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999357E+01,0.000000E+00 +2391443,fr,1,4.150000E+00,5.927860E+00,5.049783E+01,2.750000E+01,Active Shallow Crust,1.288964E+02,8.999357E+01,0.000000E+00 +2391445,fr,2,4.250000E+00,5.927860E+00,5.049783E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999140E+01,0.000000E+00 +2391454,fr,1,4.250000E+00,5.927860E+00,5.049783E+01,1.500000E+01,Active Shallow Crust,1.288940E+02,8.998061E+01,0.000000E+00 +2391457,fr,2,4.350000E+00,5.927860E+00,5.049783E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +2391459,fr,1,4.350000E+00,5.927860E+00,5.049783E+01,5.000000E+00,Active Shallow Crust,2.400094E+02,5.799646E+01,0.000000E+00 +2391505,fr,1,4.750000E+00,5.927860E+00,5.049783E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +2391516,fr,1,4.850000E+00,5.927860E+00,5.049783E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2391530,fr,1,4.950000E+00,5.927860E+00,5.049783E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +2391685,fr,1,6.250000E+00,5.927860E+00,5.049783E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2391840,fr,2,3.550000E+00,-1.850300E+00,4.186744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +2391841,fr,1,3.550000E+00,-1.850300E+00,4.186744E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +2391843,fr,1,3.550000E+00,-1.850300E+00,4.186744E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799809E+01,0.000000E+00 +2391853,fr,1,3.650000E+00,-1.850300E+00,4.186744E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2391868,fr,1,3.750000E+00,-1.850300E+00,4.186744E+01,1.500000E+01,Active Shallow Crust,2.400080E+02,5.801728E+01,0.000000E+00 +2391888,fr,2,3.950000E+00,-1.850300E+00,4.186744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +2391900,fr,1,4.050000E+00,-1.850300E+00,4.186744E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +2392323,fr,1,3.550000E+00,3.065760E+00,4.923967E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.799842E+01,0.000000E+00 +2392329,fr,1,3.550000E+00,3.065760E+00,4.923967E+01,5.000000E+00,Active Shallow Crust,1.288953E+02,8.999342E+01,0.000000E+00 +2392332,fr,1,3.650000E+00,3.065760E+00,4.923967E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +2392344,fr,1,3.750000E+00,3.065760E+00,4.923967E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +2392360,fr,1,3.850000E+00,3.065760E+00,4.923967E+01,1.500000E+01,Active Shallow Crust,2.400110E+02,5.799786E+01,0.000000E+00 +2392380,fr,1,4.050000E+00,3.065760E+00,4.923967E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +2392405,fr,1,4.250000E+00,3.065760E+00,4.923967E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +2392815,fr,1,3.650000E+00,8.550900E+00,5.030675E+01,5.000000E+00,Active Shallow Crust,2.400020E+02,5.801238E+01,0.000000E+00 +2392816,fr,1,3.650000E+00,8.550900E+00,5.030675E+01,1.500000E+01,Active Shallow Crust,2.400020E+02,5.801238E+01,0.000000E+00 +2392824,fr,1,3.750000E+00,8.550900E+00,5.030675E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +2392825,fr,1,3.750000E+00,8.550900E+00,5.030675E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +2392844,fr,1,3.850000E+00,8.550900E+00,5.030675E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999078E+01,-9.000000E+01 +2392849,fr,1,3.950000E+00,8.550900E+00,5.030675E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999187E+01,0.000000E+00 +2392884,fr,1,4.250000E+00,8.550900E+00,5.030675E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998849E+01,0.000000E+00 +2393289,fr,1,3.550000E+00,-2.100260E+00,4.336391E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999450E+01,0.000000E+00 +2393313,fr,2,3.750000E+00,-2.100260E+00,4.336391E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.996744E+01,0.000000E+00 +2393316,fr,2,3.850000E+00,-2.100260E+00,4.336391E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +2393318,fr,1,3.850000E+00,-2.100260E+00,4.336391E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +2393328,fr,1,3.950000E+00,-2.100260E+00,4.336391E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +2393330,fr,1,3.950000E+00,-2.100260E+00,4.336391E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +2393373,fr,1,4.250000E+00,-2.100260E+00,4.336391E+01,5.000000E+00,Active Shallow Crust,1.288945E+02,8.998109E+01,0.000000E+00 +2393390,fr,1,4.450000E+00,-2.100260E+00,4.336391E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +2393515,fr,1,5.450000E+00,-2.100260E+00,4.336391E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +2393765,fr,1,3.550000E+00,7.905580E+00,4.577007E+01,2.750000E+01,Active Shallow Crust,2.400119E+02,5.799884E+01,0.000000E+00 +2393772,fr,2,3.650000E+00,7.905580E+00,4.577007E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998746E+01,0.000000E+00 +2393775,fr,1,3.650000E+00,7.905580E+00,4.577007E+01,5.000000E+00,Active Shallow Crust,2.399999E+02,5.801315E+01,0.000000E+00 +2393784,fr,3,3.750000E+00,7.905580E+00,4.577007E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +2393785,fr,1,3.750000E+00,7.905580E+00,4.577007E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +2393787,fr,1,3.750000E+00,7.905580E+00,4.577007E+01,5.000000E+00,Active Shallow Crust,2.400093E+02,5.801651E+01,0.000000E+00 +2393797,fr,1,3.850000E+00,7.905580E+00,4.577007E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2393799,fr,1,3.850000E+00,7.905580E+00,4.577007E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799793E+01,0.000000E+00 +2393811,fr,2,3.950000E+00,7.905580E+00,4.577007E+01,5.000000E+00,Active Shallow Crust,2.400205E+02,5.800500E+01,0.000000E+00 +2393815,fr,1,3.950000E+00,7.905580E+00,4.577007E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999102E+01,-9.000000E+01 +2393845,fr,1,4.250000E+00,7.905580E+00,4.577007E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +2393893,fr,1,4.650000E+00,7.905580E+00,4.577007E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +2394255,fr,1,3.650000E+00,1.243620E+00,5.176812E+01,5.000000E+00,Active Shallow Crust,2.400018E+02,5.801301E+01,0.000000E+00 +2394258,fr,1,3.650000E+00,1.243620E+00,5.176812E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,-9.000000E+01 +2394720,fr,1,3.550000E+00,-1.790950E+00,4.641605E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +2394739,fr,1,3.650000E+00,-1.790950E+00,4.641605E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999060E+01,-9.000000E+01 +2394748,fr,1,3.750000E+00,-1.790950E+00,4.641605E+01,1.500000E+01,Active Shallow Crust,2.400083E+02,5.801744E+01,0.000000E+00 +2394789,fr,1,4.050000E+00,-1.790950E+00,4.641605E+01,5.000000E+00,Active Shallow Crust,1.288906E+02,8.999364E+01,0.000000E+00 +2395200,fr,1,3.550000E+00,-4.139900E-01,4.787571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2395201,fr,1,3.550000E+00,-4.139900E-01,4.787571E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2395210,fr,1,3.550000E+00,-4.139900E-01,4.787571E+01,1.500000E+01,Active Shallow Crust,1.288960E+02,8.999387E+01,0.000000E+00 +2395219,fr,1,3.650000E+00,-4.139900E-01,4.787571E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +2395224,fr,1,3.750000E+00,-4.139900E-01,4.787571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2395236,fr,2,3.850000E+00,-4.139900E-01,4.787571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2395248,fr,1,3.950000E+00,-4.139900E-01,4.787571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2395258,fr,1,3.950000E+00,-4.139900E-01,4.787571E+01,1.500000E+01,Active Shallow Crust,1.289002E+02,8.999374E+01,0.000000E+00 +2395305,fr,1,4.350000E+00,-4.139900E-01,4.787571E+01,5.000000E+00,Active Shallow Crust,1.288975E+02,8.998278E+01,0.000000E+00 +2395392,fr,1,5.150000E+00,-4.139900E-01,4.787571E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2395465,fr,1,5.750000E+00,-4.139900E-01,4.787571E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2395729,fr,1,3.950000E+00,-5.007570E+00,4.690926E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999131E+01,0.000000E+00 +2396172,fr,1,3.650000E+00,4.043490E+00,4.527908E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998735E+01,0.000000E+00 +2396173,fr,1,3.650000E+00,4.043490E+00,4.527908E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998735E+01,0.000000E+00 +2396175,fr,1,3.650000E+00,4.043490E+00,4.527908E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801303E+01,0.000000E+00 +2396189,fr,1,3.750000E+00,4.043490E+00,4.527908E+01,2.750000E+01,Active Shallow Crust,2.400083E+02,5.801743E+01,0.000000E+00 +2396191,fr,1,3.750000E+00,4.043490E+00,4.527908E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998859E+01,-9.000000E+01 +2396205,fr,1,3.850000E+00,4.043490E+00,4.527908E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999246E+01,0.000000E+00 +2396217,fr,1,3.950000E+00,4.043490E+00,4.527908E+01,5.000000E+00,Active Shallow Crust,1.289013E+02,8.999329E+01,0.000000E+00 +2396220,fr,2,4.050000E+00,4.043490E+00,4.527908E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998803E+01,0.000000E+00 +2396268,fr,1,4.450000E+00,4.043490E+00,4.527908E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2396270,fr,1,4.450000E+00,4.043490E+00,4.527908E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2396289,fr,1,4.550000E+00,4.043490E+00,4.527908E+01,5.000000E+00,Active Shallow Crust,1.288947E+02,8.998558E+01,0.000000E+00 +2396345,fr,1,5.050000E+00,4.043490E+00,4.527908E+01,2.750000E+01,Active Shallow Crust,2.400216E+02,5.799756E+01,0.000000E+00 +2396484,fr,1,6.250000E+00,4.043494E+00,4.527908E+01,6.744814E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2396641,fr,1,3.550000E+00,3.047510E+00,5.053320E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +2396664,fr,1,3.750000E+00,3.047510E+00,5.053320E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2396667,fr,1,3.750000E+00,3.047510E+00,5.053320E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.801801E+01,0.000000E+00 +2396671,fr,1,3.750000E+00,3.047510E+00,5.053320E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,-9.000000E+01 +2396683,fr,1,3.850000E+00,3.047510E+00,5.053320E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999082E+01,-9.000000E+01 +2396715,fr,1,4.150000E+00,3.047510E+00,5.053320E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.799734E+01,0.000000E+00 +2396728,fr,1,4.250000E+00,3.047510E+00,5.053320E+01,1.500000E+01,Active Shallow Crust,2.400085E+02,5.799415E+01,0.000000E+00 +2397120,fr,1,3.550000E+00,3.906200E+00,4.604034E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +2397124,fr,1,3.550000E+00,3.906200E+00,4.604034E+01,1.500000E+01,Active Shallow Crust,2.400122E+02,5.799829E+01,0.000000E+00 +2397144,fr,1,3.750000E+00,3.906200E+00,4.604034E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +2397156,fr,1,3.850000E+00,3.906200E+00,4.604034E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +2397169,fr,1,3.950000E+00,3.906200E+00,4.604034E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998896E+01,0.000000E+00 +2397457,fr,1,6.350000E+00,3.906200E+00,4.604034E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2397600,fr,2,3.550000E+00,3.239210E+00,4.555051E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998941E+01,0.000000E+00 +2397603,fr,1,3.550000E+00,3.239210E+00,4.555051E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799835E+01,0.000000E+00 +2397604,fr,1,3.550000E+00,3.239210E+00,4.555051E+01,1.500000E+01,Active Shallow Crust,2.400122E+02,5.799835E+01,0.000000E+00 +2397606,fr,2,3.550000E+00,3.239210E+00,4.555051E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998929E+01,-9.000000E+01 +2397607,fr,1,3.550000E+00,3.239210E+00,4.555051E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998929E+01,-9.000000E+01 +2397614,fr,1,3.650000E+00,3.239210E+00,4.555051E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +2397622,fr,1,3.650000E+00,3.239210E+00,4.555051E+01,1.500000E+01,Active Shallow Crust,1.289007E+02,8.996351E+01,0.000000E+00 +2397625,fr,1,3.750000E+00,3.239210E+00,4.555051E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +2397636,fr,2,3.850000E+00,3.239210E+00,4.555051E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2397652,fr,1,3.950000E+00,3.239210E+00,4.555051E+01,1.500000E+01,Active Shallow Crust,2.400193E+02,5.800521E+01,0.000000E+00 +2397660,fr,2,4.050000E+00,3.239210E+00,4.555051E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2397662,fr,2,4.050000E+00,3.239210E+00,4.555051E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2397676,fr,1,4.150000E+00,3.239210E+00,4.555051E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.799730E+01,0.000000E+00 +2397687,fr,1,4.250000E+00,3.239210E+00,4.555051E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799379E+01,0.000000E+00 +2397720,fr,1,4.550000E+00,3.239210E+00,4.555051E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +2397756,fr,1,4.850000E+00,3.239210E+00,4.555051E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +2397799,fr,1,5.150000E+00,3.239210E+00,4.555051E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,-9.000000E+01 +2398092,fr,1,3.650000E+00,3.154380E+00,4.020807E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +2398118,fr,1,3.850000E+00,3.154380E+00,4.020807E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +2398119,fr,1,3.850000E+00,3.154380E+00,4.020807E+01,5.000000E+00,Active Shallow Crust,2.400101E+02,5.799763E+01,0.000000E+00 +2398180,fr,1,4.350000E+00,3.154380E+00,4.020807E+01,1.500000E+01,Active Shallow Crust,2.400070E+02,5.799586E+01,0.000000E+00 +2398575,fr,1,3.650000E+00,6.825850E+00,5.146715E+01,5.000000E+00,Active Shallow Crust,2.400020E+02,5.801291E+01,0.000000E+00 +2399040,fr,5,3.550000E+00,-1.632490E+00,4.751428E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +2399041,fr,1,3.550000E+00,-1.632490E+00,4.751428E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +2399052,fr,1,3.650000E+00,-1.632490E+00,4.751428E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +2399062,fr,1,3.650000E+00,-1.632490E+00,4.751428E+01,1.500000E+01,Active Shallow Crust,1.289003E+02,8.996355E+01,0.000000E+00 +2399064,fr,2,3.750000E+00,-1.632490E+00,4.751428E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +2399077,fr,1,3.850000E+00,-1.632490E+00,4.751428E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +2399089,fr,1,3.950000E+00,-1.632490E+00,4.751428E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +2399090,fr,2,3.950000E+00,-1.632490E+00,4.751428E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +2399100,fr,2,4.050000E+00,-1.632490E+00,4.751428E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +2399101,fr,1,4.050000E+00,-1.632490E+00,4.751428E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +2399103,fr,1,4.050000E+00,-1.632490E+00,4.751428E+01,5.000000E+00,Active Shallow Crust,2.400061E+02,5.800582E+01,0.000000E+00 +2399115,fr,1,4.150000E+00,-1.632490E+00,4.751428E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799725E+01,0.000000E+00 +2399136,fr,1,4.350000E+00,-1.632490E+00,4.751428E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +2399137,fr,1,4.350000E+00,-1.632490E+00,4.751428E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +2399148,fr,1,4.450000E+00,-1.632490E+00,4.751428E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +2399182,fr,1,4.650000E+00,-1.632490E+00,4.751428E+01,1.500000E+01,Active Shallow Crust,1.288908E+02,8.998703E+01,0.000000E+00 +2399190,fr,1,4.750000E+00,-1.632490E+00,4.751428E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,-9.000000E+01 +2399556,fr,1,3.850000E+00,3.701010E+00,4.055970E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998915E+01,0.000000E+00 +2399623,fr,1,4.350000E+00,3.701010E+00,4.055970E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,-9.000000E+01 +2400001,fr,1,3.550000E+00,7.389860E+00,5.017990E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998708E+01,0.000000E+00 +2400002,fr,1,3.550000E+00,7.389860E+00,5.017990E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998708E+01,0.000000E+00 +2400006,fr,1,3.550000E+00,7.389860E+00,5.017990E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998694E+01,-9.000000E+01 +2400012,fr,5,3.650000E+00,7.389860E+00,5.017990E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998849E+01,0.000000E+00 +2400015,fr,1,3.650000E+00,7.389860E+00,5.017990E+01,5.000000E+00,Active Shallow Crust,2.400020E+02,5.801230E+01,0.000000E+00 +2400021,fr,1,3.650000E+00,7.389860E+00,5.017990E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.996359E+01,0.000000E+00 +2400023,fr,1,3.650000E+00,7.389860E+00,5.017990E+01,2.750000E+01,Active Shallow Crust,1.289003E+02,8.996359E+01,0.000000E+00 +2400024,fr,2,3.750000E+00,7.389860E+00,5.017990E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +2400031,fr,1,3.750000E+00,7.389860E+00,5.017990E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,-9.000000E+01 +2400036,fr,2,3.850000E+00,7.389860E+00,5.017990E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +2400037,fr,1,3.850000E+00,7.389860E+00,5.017990E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +2400050,fr,1,3.950000E+00,7.389860E+00,5.017990E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999185E+01,0.000000E+00 +2400051,fr,1,3.950000E+00,7.389860E+00,5.017990E+01,5.000000E+00,Active Shallow Crust,2.400202E+02,5.800558E+01,0.000000E+00 +2400060,fr,1,4.050000E+00,7.389860E+00,5.017990E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +2400072,fr,1,4.150000E+00,7.389860E+00,5.017990E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +2400118,fr,1,4.450000E+00,7.389860E+00,5.017990E+01,1.500000E+01,Active Shallow Crust,1.288917E+02,8.999313E+01,0.000000E+00 +2400133,fr,1,4.650000E+00,7.389860E+00,5.017990E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999090E+01,0.000000E+00 +2400168,fr,1,4.950000E+00,7.389860E+00,5.017990E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2400205,fr,1,5.250000E+00,7.389860E+00,5.017990E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2400960,fr,2,3.550000E+00,-5.923400E-01,4.678788E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +2400967,fr,1,3.550000E+00,-5.923400E-01,4.678788E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,-9.000000E+01 +2400973,fr,2,3.650000E+00,-5.923400E-01,4.678788E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2400975,fr,3,3.650000E+00,-5.923400E-01,4.678788E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801290E+01,0.000000E+00 +2400981,fr,1,3.650000E+00,-5.923400E-01,4.678788E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.996353E+01,0.000000E+00 +2400983,fr,1,3.650000E+00,-5.923400E-01,4.678788E+01,2.750000E+01,Active Shallow Crust,1.289004E+02,8.996353E+01,0.000000E+00 +2400996,fr,1,3.850000E+00,-5.923400E-01,4.678788E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2401009,fr,1,3.950000E+00,-5.923400E-01,4.678788E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2401023,fr,1,4.050000E+00,-5.923400E-01,4.678788E+01,5.000000E+00,Active Shallow Crust,2.400060E+02,5.800582E+01,0.000000E+00 +2401050,fr,1,4.250000E+00,-5.923400E-01,4.678788E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,-9.000000E+01 +2401053,fr,1,4.250000E+00,-5.923400E-01,4.678788E+01,5.000000E+00,Active Shallow Crust,1.288943E+02,8.998090E+01,0.000000E+00 +2401077,fr,1,4.450000E+00,-5.923400E-01,4.678788E+01,5.000000E+00,Active Shallow Crust,1.288921E+02,8.999372E+01,0.000000E+00 +2401080,fr,3,4.550000E+00,-5.923400E-01,4.678788E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +2401458,fr,1,3.650000E+00,2.623540E+00,4.374907E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,-9.000000E+01 +2401464,fr,1,3.750000E+00,2.623540E+00,4.374907E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999132E+01,0.000000E+00 +2401476,fr,1,3.850000E+00,2.623540E+00,4.374907E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2401482,fr,1,3.850000E+00,2.623540E+00,4.374907E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,-9.000000E+01 +2401920,fr,1,3.550000E+00,-3.000720E+00,4.888357E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +2401939,fr,1,3.650000E+00,-3.000720E+00,4.888357E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999104E+01,-9.000000E+01 +2401944,fr,1,3.750000E+00,-3.000720E+00,4.888357E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +2401958,fr,1,3.850000E+00,-3.000720E+00,4.888357E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999061E+01,0.000000E+00 +2401980,fr,1,4.050000E+00,-3.000720E+00,4.888357E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +2401983,fr,1,4.050000E+00,-3.000720E+00,4.888357E+01,5.000000E+00,Active Shallow Crust,2.400061E+02,5.800624E+01,0.000000E+00 +2401992,fr,2,4.150000E+00,-3.000720E+00,4.888357E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2402004,fr,1,4.250000E+00,-3.000720E+00,4.888357E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +2402029,fr,1,4.450000E+00,-3.000720E+00,4.888357E+01,1.500000E+01,Active Shallow Crust,3.599994E+02,8.999059E+01,0.000000E+00 +2402088,fr,1,4.950000E+00,-3.000720E+00,4.888357E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2402400,fr,2,3.550000E+00,8.945400E-01,4.107147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +2402421,fr,1,3.650000E+00,8.945400E-01,4.107147E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996349E+01,0.000000E+00 +2402424,fr,2,3.750000E+00,8.945400E-01,4.107147E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +2402427,fr,1,3.750000E+00,8.945400E-01,4.107147E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.801744E+01,0.000000E+00 +2402446,fr,1,3.850000E+00,8.945400E-01,4.107147E+01,1.500000E+01,Active Shallow Crust,1.288962E+02,8.999394E+01,0.000000E+00 +2402451,fr,1,3.950000E+00,8.945400E-01,4.107147E+01,5.000000E+00,Active Shallow Crust,2.400190E+02,5.800486E+01,0.000000E+00 +2402521,fr,1,4.550000E+00,8.945400E-01,4.107147E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +2402881,fr,1,3.550000E+00,3.843310E+00,4.459416E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +2402892,fr,1,3.650000E+00,3.843310E+00,4.459416E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +2402893,fr,1,3.650000E+00,3.843310E+00,4.459416E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +2402904,fr,2,3.750000E+00,3.843310E+00,4.459416E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +2402917,fr,1,3.850000E+00,3.843310E+00,4.459416E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +2402922,fr,1,3.850000E+00,3.843310E+00,4.459416E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,-9.000000E+01 +2402928,fr,1,3.950000E+00,3.843310E+00,4.459416E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +2402929,fr,1,3.950000E+00,3.843310E+00,4.459416E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +2402931,fr,1,3.950000E+00,3.843310E+00,4.459416E+01,5.000000E+00,Active Shallow Crust,2.400193E+02,5.800512E+01,0.000000E+00 +2402938,fr,1,3.950000E+00,3.843310E+00,4.459416E+01,1.500000E+01,Active Shallow Crust,1.289011E+02,8.999320E+01,0.000000E+00 +2402952,fr,2,4.150000E+00,3.843310E+00,4.459416E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +2402964,fr,1,4.250000E+00,3.843310E+00,4.459416E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +2402999,fr,1,4.450000E+00,3.843310E+00,4.459416E+01,2.750000E+01,Active Shallow Crust,1.288928E+02,8.999363E+01,0.000000E+00 +2403371,fr,1,3.550000E+00,4.014950E+00,4.422380E+01,2.750000E+01,Active Shallow Crust,1.288977E+02,8.999277E+01,0.000000E+00 +2403373,fr,1,3.650000E+00,4.014950E+00,4.422380E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998712E+01,0.000000E+00 +2403384,fr,1,3.750000E+00,4.014950E+00,4.422380E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998852E+01,0.000000E+00 +2403418,fr,1,3.950000E+00,4.014950E+00,4.422380E+01,1.500000E+01,Active Shallow Crust,1.289008E+02,8.999316E+01,0.000000E+00 +2403453,fr,1,4.250000E+00,4.014950E+00,4.422380E+01,5.000000E+00,Active Shallow Crust,1.288940E+02,8.998087E+01,0.000000E+00 +2403840,fr,1,3.550000E+00,-3.807710E+00,4.854059E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2403841,fr,1,3.550000E+00,-3.807710E+00,4.854059E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2403850,fr,1,3.550000E+00,-3.807710E+00,4.854059E+01,1.500000E+01,Active Shallow Crust,1.288951E+02,8.999500E+01,0.000000E+00 +2403867,fr,1,3.750000E+00,-3.807710E+00,4.854059E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.801767E+01,0.000000E+00 +2403876,fr,1,3.850000E+00,-3.807710E+00,4.854059E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +2403879,fr,1,3.850000E+00,-3.807710E+00,4.854059E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799791E+01,0.000000E+00 +2403891,fr,1,3.950000E+00,-3.807710E+00,4.854059E+01,5.000000E+00,Active Shallow Crust,2.400201E+02,5.800528E+01,0.000000E+00 +2403912,fr,1,4.150000E+00,-3.807710E+00,4.854059E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2403937,fr,1,4.350000E+00,-3.807710E+00,4.854059E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +2403997,fr,1,4.850000E+00,-3.807710E+00,4.854059E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +2404320,fr,1,3.550000E+00,2.983860E+00,4.406948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +2404329,fr,1,3.550000E+00,2.983860E+00,4.406948E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999457E+01,0.000000E+00 +2404332,fr,1,3.650000E+00,2.983860E+00,4.406948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +2404344,fr,1,3.750000E+00,2.983860E+00,4.406948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999136E+01,0.000000E+00 +2404357,fr,1,3.850000E+00,2.983860E+00,4.406948E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +2404368,fr,1,3.950000E+00,2.983860E+00,4.406948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +2404392,fr,1,4.150000E+00,2.983860E+00,4.406948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +2404416,fr,1,4.350000E+00,2.983860E+00,4.406948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2404417,fr,1,4.350000E+00,2.983860E+00,4.406948E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2404854,fr,1,3.950000E+00,4.096440E+00,4.436753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999080E+01,-9.000000E+01 +2404860,fr,1,4.050000E+00,4.096440E+00,4.436753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999189E+01,0.000000E+00 +2404872,fr,1,4.150000E+00,4.096440E+00,4.436753E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +2404911,fr,1,4.450000E+00,4.096440E+00,4.436753E+01,5.000000E+00,Active Shallow Crust,2.400047E+02,5.799444E+01,0.000000E+00 +2404922,fr,1,4.550000E+00,4.096440E+00,4.436753E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +2405280,fr,1,3.550000E+00,4.743750E+00,4.996871E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998703E+01,0.000000E+00 +2405281,fr,1,3.550000E+00,4.743750E+00,4.996871E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998703E+01,0.000000E+00 +2405292,fr,2,3.650000E+00,4.743750E+00,4.996871E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998844E+01,0.000000E+00 +2405323,fr,1,3.850000E+00,4.743750E+00,4.996871E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999071E+01,-9.000000E+01 +2405425,fr,1,4.750000E+00,4.743750E+00,4.996871E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2405772,fr,1,3.650000E+00,5.656900E-01,4.633582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2405775,fr,1,3.650000E+00,5.656900E-01,4.633582E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801297E+01,0.000000E+00 +2405785,fr,1,3.750000E+00,5.656900E-01,4.633582E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +2405796,fr,1,3.850000E+00,5.656900E-01,4.633582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2405797,fr,1,3.850000E+00,5.656900E-01,4.633582E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2405806,fr,1,3.850000E+00,5.656900E-01,4.633582E+01,1.500000E+01,Active Shallow Crust,1.288957E+02,8.999384E+01,0.000000E+00 +2405808,fr,1,3.950000E+00,5.656900E-01,4.633582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +2405809,fr,1,3.950000E+00,5.656900E-01,4.633582E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +2405832,fr,1,4.150000E+00,5.656900E-01,4.633582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2405844,fr,1,4.250000E+00,5.656900E-01,4.633582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +2405868,fr,1,4.450000E+00,5.656900E-01,4.633582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +2405880,fr,1,4.550000E+00,5.656900E-01,4.633582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +2406000,fr,1,5.550000E+00,5.656900E-01,4.633582E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2406438,fr,1,5.150000E+00,6.096450E+00,4.952567E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,-9.000000E+01 +2406720,fr,3,3.550000E+00,4.776060E+00,4.084482E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999237E+01,0.000000E+00 +2406744,fr,1,3.750000E+00,4.776060E+00,4.084482E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998788E+01,0.000000E+00 +2406769,fr,1,3.950000E+00,4.776060E+00,4.084482E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +2406781,fr,1,4.050000E+00,4.776060E+00,4.084482E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +2406819,fr,1,4.350000E+00,4.776060E+00,4.084482E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799588E+01,0.000000E+00 +2406840,fr,1,4.550000E+00,4.776060E+00,4.084482E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999035E+01,0.000000E+00 +2406876,fr,1,4.850000E+00,4.776060E+00,4.084482E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2407213,fr,1,3.650000E+00,3.817670E+00,4.353297E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2407224,fr,1,3.750000E+00,3.817670E+00,4.353297E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +2407257,fr,1,3.950000E+00,3.817670E+00,4.353297E+01,5.000000E+00,Active Shallow Crust,1.289009E+02,8.999423E+01,0.000000E+00 +2407258,fr,1,3.950000E+00,3.817670E+00,4.353297E+01,1.500000E+01,Active Shallow Crust,1.289009E+02,8.999423E+01,0.000000E+00 +2407283,fr,1,4.150000E+00,3.817670E+00,4.353297E+01,2.750000E+01,Active Shallow Crust,1.288978E+02,8.999359E+01,0.000000E+00 +2407287,fr,1,4.250000E+00,3.817670E+00,4.353297E+01,5.000000E+00,Active Shallow Crust,2.400070E+02,5.799382E+01,0.000000E+00 +2407419,fr,1,5.350000E+00,3.817670E+00,4.353297E+01,5.000000E+00,Active Shallow Crust,2.400230E+02,5.799747E+01,0.000000E+00 +2407722,fr,1,3.850000E+00,4.417520E+00,4.052421E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998902E+01,-9.000000E+01 +2407812,fr,1,4.650000E+00,4.417520E+00,4.052421E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +2408194,fr,1,3.750000E+00,1.384160E+00,5.164407E+01,1.500000E+01,Active Shallow Crust,1.288959E+02,8.996736E+01,0.000000E+00 +2408223,fr,1,4.050000E+00,1.384160E+00,5.164407E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.800593E+01,0.000000E+00 +2408233,fr,1,4.150000E+00,1.384160E+00,5.164407E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2408240,fr,1,4.150000E+00,1.384160E+00,5.164407E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +2408332,fr,1,4.950000E+00,1.384160E+00,5.164407E+01,1.500000E+01,Active Shallow Crust,2.400146E+02,5.800489E+01,0.000000E+00 +2408340,fr,1,5.050000E+00,1.384160E+00,5.164407E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2408676,fr,1,3.850000E+00,3.684910E+00,4.894274E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +2408719,fr,1,4.150000E+00,3.684910E+00,4.894274E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,-9.000000E+01 +2409607,fr,1,3.550000E+00,4.969410E+00,4.999984E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998689E+01,-9.000000E+01 +2409684,fr,1,4.250000E+00,4.969410E+00,4.999984E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999131E+01,0.000000E+00 +2410080,fr,2,3.550000E+00,-4.929270E+00,4.883825E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998672E+01,0.000000E+00 +2410082,fr,1,3.550000E+00,-4.929270E+00,4.883825E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998672E+01,0.000000E+00 +2410092,fr,1,3.650000E+00,-4.929270E+00,4.883825E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998817E+01,0.000000E+00 +2410095,fr,1,3.650000E+00,-4.929270E+00,4.883825E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801387E+01,0.000000E+00 +2410110,fr,1,3.750000E+00,-4.929270E+00,4.883825E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,-9.000000E+01 +2410116,fr,1,3.850000E+00,-4.929270E+00,4.883825E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +2410129,fr,1,3.950000E+00,-4.929270E+00,4.883825E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999162E+01,0.000000E+00 +2410130,fr,1,3.950000E+00,-4.929270E+00,4.883825E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999162E+01,0.000000E+00 +2410144,fr,1,4.050000E+00,-4.929270E+00,4.883825E+01,1.500000E+01,Active Shallow Crust,2.400067E+02,5.800552E+01,0.000000E+00 +2410296,fr,1,5.350000E+00,-4.929270E+00,4.883825E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2410561,fr,1,3.550000E+00,-4.270280E+00,4.930977E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998685E+01,0.000000E+00 +2410584,fr,1,3.750000E+00,-4.270280E+00,4.930977E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +2410596,fr,1,3.850000E+00,-4.270280E+00,4.930977E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999069E+01,0.000000E+00 +2411090,fr,1,3.950000E+00,6.282270E+00,4.979863E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999178E+01,0.000000E+00 +2411100,fr,1,4.050000E+00,6.282270E+00,4.979863E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998902E+01,0.000000E+00 +2411524,fr,1,3.550000E+00,6.950980E+00,4.925454E+01,1.500000E+01,Active Shallow Crust,2.400118E+02,5.799827E+01,0.000000E+00 +2411533,fr,1,3.650000E+00,6.950980E+00,4.925454E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998827E+01,0.000000E+00 +2411536,fr,1,3.650000E+00,6.950980E+00,4.925454E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801405E+01,0.000000E+00 +2411548,fr,1,3.750000E+00,6.950980E+00,4.925454E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.801807E+01,0.000000E+00 +2411556,fr,1,3.850000E+00,6.950980E+00,4.925454E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +2411583,fr,1,4.050000E+00,6.950980E+00,4.925454E+01,5.000000E+00,Active Shallow Crust,2.400062E+02,5.800586E+01,0.000000E+00 +2411613,fr,1,4.250000E+00,6.950980E+00,4.925454E+01,5.000000E+00,Active Shallow Crust,1.288931E+02,8.998105E+01,0.000000E+00 +2412000,fr,1,3.550000E+00,2.157680E+00,4.073298E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998854E+01,0.000000E+00 +2412014,fr,1,3.650000E+00,2.157680E+00,4.073298E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +2412024,fr,1,3.750000E+00,2.157680E+00,4.073298E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999090E+01,0.000000E+00 +2412144,fr,1,4.750000E+00,2.157680E+00,4.073298E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +2412480,fr,6,3.550000E+00,6.347230E+00,4.585006E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999297E+01,0.000000E+00 +2412483,fr,1,3.550000E+00,6.347230E+00,4.585006E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799924E+01,0.000000E+00 +2412484,fr,3,3.550000E+00,6.347230E+00,4.585006E+01,1.500000E+01,Active Shallow Crust,2.400114E+02,5.799924E+01,0.000000E+00 +2412492,fr,1,3.650000E+00,6.347230E+00,4.585006E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998748E+01,0.000000E+00 +2412493,fr,2,3.650000E+00,6.347230E+00,4.585006E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998748E+01,0.000000E+00 +2412496,fr,1,3.650000E+00,6.347230E+00,4.585006E+01,1.500000E+01,Active Shallow Crust,2.400003E+02,5.801309E+01,0.000000E+00 +2412498,fr,1,3.650000E+00,6.347230E+00,4.585006E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998734E+01,-9.000000E+01 +2412504,fr,1,3.750000E+00,6.347230E+00,4.585006E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998884E+01,0.000000E+00 +2412505,fr,1,3.750000E+00,6.347230E+00,4.585006E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998884E+01,0.000000E+00 +2412508,fr,2,3.750000E+00,6.347230E+00,4.585006E+01,1.500000E+01,Active Shallow Crust,2.400085E+02,5.801748E+01,0.000000E+00 +2412510,fr,1,3.750000E+00,6.347230E+00,4.585006E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998871E+01,-9.000000E+01 +2412513,fr,1,3.750000E+00,6.347230E+00,4.585006E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.996748E+01,0.000000E+00 +2412518,fr,1,3.850000E+00,6.347230E+00,4.585006E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +2412528,fr,2,3.950000E+00,6.347230E+00,4.585006E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999113E+01,0.000000E+00 +2412531,fr,1,3.950000E+00,6.347230E+00,4.585006E+01,5.000000E+00,Active Shallow Crust,2.400203E+02,5.800484E+01,0.000000E+00 +2412540,fr,2,4.050000E+00,6.347230E+00,4.585006E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998815E+01,0.000000E+00 +2412542,fr,1,4.050000E+00,6.347230E+00,4.585006E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998815E+01,0.000000E+00 +2412544,fr,1,4.050000E+00,6.347230E+00,4.585006E+01,1.500000E+01,Active Shallow Crust,2.400061E+02,5.800556E+01,0.000000E+00 +2412552,fr,1,4.150000E+00,6.347230E+00,4.585006E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +2412555,fr,2,4.150000E+00,6.347230E+00,4.585006E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.799697E+01,0.000000E+00 +2412561,fr,1,4.150000E+00,6.347230E+00,4.585006E+01,5.000000E+00,Active Shallow Crust,1.288984E+02,8.999296E+01,0.000000E+00 +2412564,fr,1,4.250000E+00,6.347230E+00,4.585006E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +2412570,fr,1,4.250000E+00,6.347230E+00,4.585006E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,-9.000000E+01 +2412577,fr,1,4.350000E+00,6.347230E+00,4.585006E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998882E+01,0.000000E+00 +2412588,fr,1,4.450000E+00,6.347230E+00,4.585006E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2412590,fr,1,4.450000E+00,6.347230E+00,4.585006E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2412608,fr,1,4.550000E+00,6.347230E+00,4.585006E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999101E+01,-9.000000E+01 +2412624,fr,1,4.750000E+00,6.347230E+00,4.585006E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998941E+01,0.000000E+00 +2412649,fr,1,4.950000E+00,6.347230E+00,4.585006E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +2412697,fr,1,5.350000E+00,6.347230E+00,4.585006E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +2412720,fr,1,5.550000E+00,6.347230E+00,4.585006E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2412730,fr,1,5.550000E+00,6.347230E+00,4.585006E+01,1.500000E+01,Active Shallow Crust,1.288765E+02,8.998997E+01,0.000000E+00 +2413950,fr,1,3.750000E+00,4.809760E+00,4.327384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998820E+01,-9.000000E+01 +2413956,fr,1,3.850000E+00,4.809760E+00,4.327384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998960E+01,0.000000E+00 +2413968,fr,1,3.950000E+00,4.809760E+00,4.327384E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +2413990,fr,1,4.050000E+00,4.809760E+00,4.327384E+01,1.500000E+01,Active Shallow Crust,1.288899E+02,8.999380E+01,0.000000E+00 +2414025,fr,1,4.350000E+00,4.809760E+00,4.327384E+01,5.000000E+00,Active Shallow Crust,1.288989E+02,8.998291E+01,0.000000E+00 +2414400,fr,2,3.550000E+00,5.695290E+00,4.511275E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999288E+01,0.000000E+00 +2414411,fr,1,3.550000E+00,5.695290E+00,4.511275E+01,2.750000E+01,Active Shallow Crust,1.288970E+02,8.999288E+01,0.000000E+00 +2414412,fr,2,3.650000E+00,5.695290E+00,4.511275E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998731E+01,0.000000E+00 +2414414,fr,1,3.650000E+00,5.695290E+00,4.511275E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998731E+01,0.000000E+00 +2414417,fr,1,3.650000E+00,5.695290E+00,4.511275E+01,2.750000E+01,Active Shallow Crust,2.400004E+02,5.801292E+01,0.000000E+00 +2414418,fr,1,3.650000E+00,5.695290E+00,4.511275E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998717E+01,-9.000000E+01 +2414424,fr,4,3.750000E+00,5.695290E+00,4.511275E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +2414426,fr,1,3.750000E+00,5.695290E+00,4.511275E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998869E+01,0.000000E+00 +2414430,fr,1,3.750000E+00,5.695290E+00,4.511275E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998856E+01,-9.000000E+01 +2414433,fr,1,3.750000E+00,5.695290E+00,4.511275E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.996747E+01,0.000000E+00 +2414437,fr,1,3.850000E+00,5.695290E+00,4.511275E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +2414469,fr,1,4.050000E+00,5.695290E+00,4.511275E+01,5.000000E+00,Active Shallow Crust,1.288907E+02,8.999400E+01,0.000000E+00 +2414472,fr,2,4.150000E+00,5.695290E+00,4.511275E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998930E+01,0.000000E+00 +2414484,fr,2,4.250000E+00,5.695290E+00,4.511275E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +2414487,fr,1,4.250000E+00,5.695290E+00,4.511275E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.799404E+01,0.000000E+00 +2414489,fr,1,4.250000E+00,5.695290E+00,4.511275E+01,2.750000E+01,Active Shallow Crust,2.400073E+02,5.799404E+01,0.000000E+00 +2414496,fr,3,4.350000E+00,5.695290E+00,4.511275E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998867E+01,0.000000E+00 +2414508,fr,1,4.450000E+00,5.695290E+00,4.511275E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +2414521,fr,1,4.550000E+00,5.695290E+00,4.511275E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +2414538,fr,1,4.650000E+00,5.695290E+00,4.511275E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +2414556,fr,2,4.850000E+00,5.695290E+00,4.511275E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +2414568,fr,1,4.950000E+00,5.695290E+00,4.511275E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2414580,fr,1,5.050000E+00,5.695290E+00,4.511275E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2414880,fr,2,3.550000E+00,4.325400E+00,4.674746E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999309E+01,0.000000E+00 +2414883,fr,1,3.550000E+00,4.325400E+00,4.674746E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799840E+01,0.000000E+00 +2414884,fr,1,3.550000E+00,4.325400E+00,4.674746E+01,1.500000E+01,Active Shallow Crust,2.400124E+02,5.799840E+01,0.000000E+00 +2414889,fr,1,3.550000E+00,4.325400E+00,4.674746E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999309E+01,0.000000E+00 +2414892,fr,2,3.650000E+00,4.325400E+00,4.674746E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998769E+01,0.000000E+00 +2414893,fr,2,3.650000E+00,4.325400E+00,4.674746E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998769E+01,0.000000E+00 +2414898,fr,1,3.650000E+00,4.325400E+00,4.674746E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998754E+01,-9.000000E+01 +2414905,fr,1,3.750000E+00,4.325400E+00,4.674746E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998902E+01,0.000000E+00 +2414916,fr,1,3.850000E+00,4.325400E+00,4.674746E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +2414928,fr,1,3.950000E+00,4.325400E+00,4.674746E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999128E+01,0.000000E+00 +2414931,fr,1,3.950000E+00,4.325400E+00,4.674746E+01,5.000000E+00,Active Shallow Crust,2.400193E+02,5.800504E+01,0.000000E+00 +2414937,fr,1,3.950000E+00,4.325400E+00,4.674746E+01,5.000000E+00,Active Shallow Crust,1.289011E+02,8.999346E+01,0.000000E+00 +2414940,fr,1,4.050000E+00,4.325400E+00,4.674746E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998834E+01,0.000000E+00 +2414970,fr,1,4.250000E+00,4.325400E+00,4.674746E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,-9.000000E+01 +2415360,fr,1,3.550000E+00,-1.983560E+00,4.802520E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2415361,fr,2,3.550000E+00,-1.983560E+00,4.802520E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2415386,fr,1,3.750000E+00,-1.983560E+00,4.802520E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +2415396,fr,1,3.850000E+00,-1.983560E+00,4.802520E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +2415399,fr,1,3.850000E+00,-1.983560E+00,4.802520E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799791E+01,0.000000E+00 +2415417,fr,2,3.950000E+00,-1.983560E+00,4.802520E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.999361E+01,0.000000E+00 +2415444,fr,1,4.250000E+00,-1.983560E+00,4.802520E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +2415450,fr,1,4.250000E+00,-1.983560E+00,4.802520E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +2415468,fr,1,4.450000E+00,-1.983560E+00,4.802520E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +2415861,fr,1,3.650000E+00,1.547050E+00,4.878674E+01,5.000000E+00,Active Shallow Crust,1.289000E+02,8.996357E+01,0.000000E+00 +2415864,fr,1,3.750000E+00,1.547050E+00,4.878674E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +2415876,fr,1,3.850000E+00,1.547050E+00,4.878674E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +2415949,fr,1,4.450000E+00,1.547050E+00,4.878674E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2415950,fr,1,4.450000E+00,1.547050E+00,4.878674E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2416339,fr,1,3.650000E+00,3.047890E+00,5.345914E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,-9.000000E+01 +2416800,fr,4,3.550000E+00,8.429380E+00,4.777037E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998644E+01,0.000000E+00 +2416801,fr,1,3.550000E+00,8.429380E+00,4.777037E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998644E+01,0.000000E+00 +2416803,fr,1,3.550000E+00,8.429380E+00,4.777037E+01,5.000000E+00,Active Shallow Crust,2.400139E+02,5.799800E+01,0.000000E+00 +2416807,fr,2,3.550000E+00,8.429380E+00,4.777037E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998629E+01,-9.000000E+01 +2416812,fr,7,3.650000E+00,8.429380E+00,4.777037E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998792E+01,0.000000E+00 +2416815,fr,1,3.650000E+00,8.429380E+00,4.777037E+01,5.000000E+00,Active Shallow Crust,2.400016E+02,5.801352E+01,0.000000E+00 +2416822,fr,1,3.650000E+00,8.429380E+00,4.777037E+01,1.500000E+01,Active Shallow Crust,1.288978E+02,8.996355E+01,0.000000E+00 +2416823,fr,1,3.650000E+00,8.429380E+00,4.777037E+01,2.750000E+01,Active Shallow Crust,1.288978E+02,8.996355E+01,0.000000E+00 +2416824,fr,3,3.750000E+00,8.429380E+00,4.777037E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +2416825,fr,2,3.750000E+00,8.429380E+00,4.777037E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +2416828,fr,1,3.750000E+00,8.429380E+00,4.777037E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.801731E+01,0.000000E+00 +2416833,fr,2,3.750000E+00,8.429380E+00,4.777037E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996751E+01,0.000000E+00 +2416836,fr,1,3.850000E+00,8.429380E+00,4.777037E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +2416840,fr,1,3.850000E+00,8.429380E+00,4.777037E+01,1.500000E+01,Active Shallow Crust,2.400113E+02,5.799768E+01,0.000000E+00 +2416854,fr,1,3.950000E+00,8.429380E+00,4.777037E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999135E+01,-9.000000E+01 +2416864,fr,1,4.050000E+00,8.429380E+00,4.777037E+01,1.500000E+01,Active Shallow Crust,2.400070E+02,5.800596E+01,0.000000E+00 +2416869,fr,1,4.050000E+00,8.429380E+00,4.777037E+01,5.000000E+00,Active Shallow Crust,1.288885E+02,8.999619E+01,0.000000E+00 +2416872,fr,1,4.150000E+00,8.429380E+00,4.777037E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999321E+01,0.000000E+00 +2416873,fr,1,4.150000E+00,8.429380E+00,4.777037E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999321E+01,0.000000E+00 +2416878,fr,1,4.150000E+00,8.429380E+00,4.777037E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999313E+01,-9.000000E+01 +2416890,fr,1,4.250000E+00,8.429380E+00,4.777037E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998775E+01,-9.000000E+01 +2416894,fr,1,4.250000E+00,8.429380E+00,4.777037E+01,1.500000E+01,Active Shallow Crust,1.288954E+02,8.998100E+01,0.000000E+00 +2416896,fr,2,4.350000E+00,8.429380E+00,4.777037E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +2416905,fr,1,4.350000E+00,8.429380E+00,4.777037E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.998306E+01,0.000000E+00 +2416908,fr,1,4.450000E+00,8.429380E+00,4.777037E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +2416910,fr,1,4.450000E+00,8.429380E+00,4.777037E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +2416923,fr,1,4.550000E+00,8.429380E+00,4.777037E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799789E+01,0.000000E+00 +2416934,fr,1,4.650000E+00,8.429380E+00,4.777037E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998854E+01,0.000000E+00 +2416943,fr,1,4.650000E+00,8.429380E+00,4.777037E+01,2.750000E+01,Active Shallow Crust,1.288908E+02,8.998631E+01,0.000000E+00 +2416944,fr,1,4.750000E+00,8.429380E+00,4.777037E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +2416952,fr,1,4.750000E+00,8.429380E+00,4.777037E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998966E+01,-9.000000E+01 +2416974,fr,1,4.950000E+00,8.429380E+00,4.777037E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998905E+01,-9.000000E+01 +2417034,fr,1,5.450000E+00,8.429380E+00,4.777037E+01,5.000000E+00,Active Shallow Crust,3.599992E+02,8.999077E+01,-9.000000E+01 +2417074,fr,1,5.750000E+00,8.429380E+00,4.777037E+01,1.500000E+01,Active Shallow Crust,1.288727E+02,8.998842E+01,0.000000E+00 +2417308,fr,1,3.750000E+00,-3.349770E+00,4.694980E+01,1.500000E+01,Active Shallow Crust,2.400078E+02,5.801784E+01,0.000000E+00 +2417354,fr,1,4.150000E+00,-3.349770E+00,4.694980E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +2417760,fr,1,3.550000E+00,2.171940E+00,4.776290E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +2417761,fr,1,3.550000E+00,2.171940E+00,4.776290E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +2417784,fr,1,3.750000E+00,2.171940E+00,4.776290E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +2417788,fr,1,3.750000E+00,2.171940E+00,4.776290E+01,1.500000E+01,Active Shallow Crust,2.400087E+02,5.801753E+01,0.000000E+00 +2418240,fr,1,3.550000E+00,3.914930E+00,4.834712E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2418252,fr,1,3.650000E+00,3.914930E+00,4.834712E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999104E+01,0.000000E+00 +2418261,fr,1,3.650000E+00,3.914930E+00,4.834712E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.996329E+01,0.000000E+00 +2418278,fr,1,3.850000E+00,3.914930E+00,4.834712E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +2418289,fr,1,3.950000E+00,3.914930E+00,4.834712E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +2418300,fr,1,4.050000E+00,3.914930E+00,4.834712E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +2418336,fr,1,4.350000E+00,3.914930E+00,4.834712E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +2418348,fr,1,4.450000E+00,3.914930E+00,4.834712E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +2418350,fr,1,4.450000E+00,3.914930E+00,4.834712E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +2418726,fr,1,3.550000E+00,3.857000E+00,4.921883E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +2419218,fr,1,3.650000E+00,-3.389600E-01,5.170460E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +2419224,fr,1,3.750000E+00,-3.389600E-01,5.170460E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2419680,fr,2,3.550000E+00,7.411010E+00,5.080050E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998725E+01,0.000000E+00 +2419681,fr,1,3.550000E+00,7.411010E+00,5.080050E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998725E+01,0.000000E+00 +2419683,fr,1,3.550000E+00,7.411010E+00,5.080050E+01,5.000000E+00,Active Shallow Crust,2.400131E+02,5.799817E+01,0.000000E+00 +2419692,fr,1,3.650000E+00,7.411010E+00,5.080050E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998864E+01,0.000000E+00 +2419694,fr,1,3.650000E+00,7.411010E+00,5.080050E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998864E+01,0.000000E+00 +2419704,fr,1,3.750000E+00,7.411010E+00,5.080050E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2419712,fr,1,3.750000E+00,7.411010E+00,5.080050E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,-9.000000E+01 +2419725,fr,1,3.850000E+00,7.411010E+00,5.080050E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999323E+01,0.000000E+00 +2419729,fr,1,3.950000E+00,7.411010E+00,5.080050E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999196E+01,0.000000E+00 +2420160,fr,1,3.550000E+00,1.864470E+00,4.336202E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +2420185,fr,1,3.750000E+00,1.864470E+00,4.336202E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2420260,fr,1,4.350000E+00,1.864470E+00,4.336202E+01,1.500000E+01,Active Shallow Crust,2.400077E+02,5.799576E+01,0.000000E+00 +2420268,fr,1,4.450000E+00,1.864470E+00,4.336202E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +2420316,fr,1,4.850000E+00,1.864470E+00,4.336202E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +2420640,fr,3,3.550000E+00,6.955980E+00,4.773363E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999322E+01,0.000000E+00 +2420644,fr,1,3.550000E+00,6.955980E+00,4.773363E+01,1.500000E+01,Active Shallow Crust,2.400127E+02,5.799777E+01,0.000000E+00 +2420646,fr,1,3.550000E+00,6.955980E+00,4.773363E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999314E+01,-9.000000E+01 +2420649,fr,1,3.550000E+00,6.955980E+00,4.773363E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999322E+01,0.000000E+00 +2420652,fr,3,3.650000E+00,6.955980E+00,4.773363E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998791E+01,0.000000E+00 +2420653,fr,3,3.650000E+00,6.955980E+00,4.773363E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998791E+01,0.000000E+00 +2420655,fr,3,3.650000E+00,6.955980E+00,4.773363E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801282E+01,0.000000E+00 +2420661,fr,1,3.650000E+00,6.955980E+00,4.773363E+01,5.000000E+00,Active Shallow Crust,1.289008E+02,8.996355E+01,0.000000E+00 +2420665,fr,1,3.750000E+00,6.955980E+00,4.773363E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +2420679,fr,1,3.850000E+00,6.955980E+00,4.773363E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799721E+01,0.000000E+00 +2420688,fr,1,3.950000E+00,6.955980E+00,4.773363E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999144E+01,0.000000E+00 +2420699,fr,1,3.950000E+00,6.955980E+00,4.773363E+01,2.750000E+01,Active Shallow Crust,1.289001E+02,8.999572E+01,0.000000E+00 +2420700,fr,1,4.050000E+00,6.955980E+00,4.773363E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +2420702,fr,1,4.050000E+00,6.955980E+00,4.773363E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +2420712,fr,3,4.150000E+00,6.955980E+00,4.773363E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +2420718,fr,1,4.150000E+00,6.955980E+00,4.773363E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,-9.000000E+01 +2420737,fr,1,4.350000E+00,6.955980E+00,4.773363E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +2420778,fr,1,4.650000E+00,6.955980E+00,4.773363E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,-9.000000E+01 +2420783,fr,1,4.650000E+00,6.955980E+00,4.773363E+01,2.750000E+01,Active Shallow Crust,1.288908E+02,8.998681E+01,0.000000E+00 +2421120,fr,1,3.550000E+00,1.151160E+00,4.232443E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +2421121,fr,2,3.550000E+00,1.151160E+00,4.232443E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +2421124,fr,1,3.550000E+00,1.151160E+00,4.232443E+01,1.500000E+01,Active Shallow Crust,2.400120E+02,5.799807E+01,0.000000E+00 +2421126,fr,2,3.550000E+00,1.151160E+00,4.232443E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999057E+01,-9.000000E+01 +2421132,fr,1,3.650000E+00,1.151160E+00,4.232443E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2421133,fr,2,3.650000E+00,1.151160E+00,4.232443E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2421139,fr,1,3.650000E+00,1.151160E+00,4.232443E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +2421144,fr,1,3.750000E+00,1.151160E+00,4.232443E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +2421145,fr,1,3.750000E+00,1.151160E+00,4.232443E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998964E+01,0.000000E+00 +2421153,fr,1,3.750000E+00,1.151160E+00,4.232443E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.996742E+01,0.000000E+00 +2421154,fr,1,3.750000E+00,1.151160E+00,4.232443E+01,1.500000E+01,Active Shallow Crust,1.288972E+02,8.996742E+01,0.000000E+00 +2421156,fr,1,3.850000E+00,1.151160E+00,4.232443E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +2421165,fr,1,3.850000E+00,1.151160E+00,4.232443E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.999406E+01,0.000000E+00 +2421168,fr,2,3.950000E+00,1.151160E+00,4.232443E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +2421169,fr,1,3.950000E+00,1.151160E+00,4.232443E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +2421184,fr,1,4.050000E+00,1.151160E+00,4.232443E+01,1.500000E+01,Active Shallow Crust,2.400052E+02,5.800571E+01,0.000000E+00 +2421213,fr,1,4.250000E+00,1.151160E+00,4.232443E+01,5.000000E+00,Active Shallow Crust,1.288949E+02,8.998093E+01,0.000000E+00 +2421240,fr,1,4.550000E+00,1.151160E+00,4.232443E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2421327,fr,1,5.250000E+00,1.151160E+00,4.232443E+01,5.000000E+00,Active Shallow Crust,2.400180E+02,5.799979E+01,0.000000E+00 +2421624,fr,1,3.750000E+00,4.460260E+00,4.599044E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998887E+01,0.000000E+00 +2421648,fr,1,3.950000E+00,4.460260E+00,4.599044E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999116E+01,0.000000E+00 +2421651,fr,1,3.950000E+00,4.460260E+00,4.599044E+01,5.000000E+00,Active Shallow Crust,2.400196E+02,5.800517E+01,0.000000E+00 +2421655,fr,1,3.950000E+00,4.460260E+00,4.599044E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999106E+01,-9.000000E+01 +2421666,fr,1,4.050000E+00,4.460260E+00,4.599044E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998804E+01,-9.000000E+01 +2421669,fr,1,4.050000E+00,4.460260E+00,4.599044E+01,5.000000E+00,Active Shallow Crust,1.288915E+02,8.999212E+01,0.000000E+00 +2421708,fr,1,4.450000E+00,4.460260E+00,4.599044E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2421753,fr,1,4.750000E+00,4.460260E+00,4.599044E+01,5.000000E+00,Active Shallow Crust,1.288890E+02,8.998814E+01,0.000000E+00 +2421770,fr,1,4.950000E+00,4.460260E+00,4.599044E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +2421913,fr,1,6.150000E+00,4.460260E+00,4.599044E+01,1.500000E+01,Active Shallow Crust,3.599998E+02,8.999016E+01,0.000000E+00 +2422080,fr,1,3.550000E+00,4.171170E+00,4.516672E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999289E+01,0.000000E+00 +2422086,fr,2,3.550000E+00,4.171170E+00,4.516672E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999281E+01,-9.000000E+01 +2422098,fr,1,3.650000E+00,4.171170E+00,4.516672E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998718E+01,-9.000000E+01 +2422104,fr,1,3.750000E+00,4.171170E+00,4.516672E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998871E+01,0.000000E+00 +2422125,fr,1,3.850000E+00,4.171170E+00,4.516672E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999496E+01,0.000000E+00 +2422128,fr,1,3.950000E+00,4.171170E+00,4.516672E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999103E+01,0.000000E+00 +2422131,fr,1,3.950000E+00,4.171170E+00,4.516672E+01,5.000000E+00,Active Shallow Crust,2.400194E+02,5.800515E+01,0.000000E+00 +2422133,fr,1,3.950000E+00,4.171170E+00,4.516672E+01,2.750000E+01,Active Shallow Crust,2.400194E+02,5.800515E+01,0.000000E+00 +2422193,fr,1,4.450000E+00,4.171170E+00,4.516672E+01,2.750000E+01,Active Shallow Crust,2.400052E+02,5.799414E+01,0.000000E+00 +2422560,fr,7,3.550000E+00,7.709650E+00,4.640109E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999305E+01,0.000000E+00 +2422561,fr,2,3.550000E+00,7.709650E+00,4.640109E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999305E+01,0.000000E+00 +2422572,fr,5,3.650000E+00,7.709650E+00,4.640109E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998760E+01,0.000000E+00 +2422573,fr,1,3.650000E+00,7.709650E+00,4.640109E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998760E+01,0.000000E+00 +2422574,fr,1,3.650000E+00,7.709650E+00,4.640109E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998760E+01,0.000000E+00 +2422575,fr,1,3.650000E+00,7.709650E+00,4.640109E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801278E+01,0.000000E+00 +2422576,fr,1,3.650000E+00,7.709650E+00,4.640109E+01,1.500000E+01,Active Shallow Crust,2.400014E+02,5.801278E+01,0.000000E+00 +2422581,fr,1,3.650000E+00,7.709650E+00,4.640109E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.996352E+01,0.000000E+00 +2422584,fr,3,3.750000E+00,7.709650E+00,4.640109E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +2422585,fr,2,3.750000E+00,7.709650E+00,4.640109E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +2422590,fr,1,3.750000E+00,7.709650E+00,4.640109E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998882E+01,-9.000000E+01 +2422593,fr,1,3.750000E+00,7.709650E+00,4.640109E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.996749E+01,0.000000E+00 +2422596,fr,1,3.850000E+00,7.709650E+00,4.640109E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +2422597,fr,1,3.850000E+00,7.709650E+00,4.640109E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +2422599,fr,3,3.850000E+00,7.709650E+00,4.640109E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799704E+01,0.000000E+00 +2422600,fr,1,3.850000E+00,7.709650E+00,4.640109E+01,1.500000E+01,Active Shallow Crust,2.400110E+02,5.799704E+01,0.000000E+00 +2422606,fr,1,3.850000E+00,7.709650E+00,4.640109E+01,1.500000E+01,Active Shallow Crust,1.288955E+02,8.999261E+01,0.000000E+00 +2422608,fr,3,3.950000E+00,7.709650E+00,4.640109E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +2422609,fr,1,3.950000E+00,7.709650E+00,4.640109E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999123E+01,0.000000E+00 +2422611,fr,1,3.950000E+00,7.709650E+00,4.640109E+01,5.000000E+00,Active Shallow Crust,2.400203E+02,5.800473E+01,0.000000E+00 +2422616,fr,1,3.950000E+00,7.709650E+00,4.640109E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999112E+01,-9.000000E+01 +2422617,fr,2,3.950000E+00,7.709650E+00,4.640109E+01,5.000000E+00,Active Shallow Crust,1.289009E+02,8.999342E+01,0.000000E+00 +2422620,fr,1,4.050000E+00,7.709650E+00,4.640109E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998827E+01,0.000000E+00 +2422621,fr,1,4.050000E+00,7.709650E+00,4.640109E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998827E+01,0.000000E+00 +2422623,fr,1,4.050000E+00,7.709650E+00,4.640109E+01,5.000000E+00,Active Shallow Crust,2.400056E+02,5.800583E+01,0.000000E+00 +2422633,fr,1,4.150000E+00,7.709650E+00,4.640109E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +2422638,fr,2,4.150000E+00,7.709650E+00,4.640109E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,-9.000000E+01 +2422644,fr,4,4.250000E+00,7.709650E+00,4.640109E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +2422645,fr,1,4.250000E+00,7.709650E+00,4.640109E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +2422653,fr,1,4.250000E+00,7.709650E+00,4.640109E+01,5.000000E+00,Active Shallow Crust,1.288941E+02,8.998094E+01,0.000000E+00 +2422657,fr,1,4.350000E+00,7.709650E+00,4.640109E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998892E+01,0.000000E+00 +2422666,fr,1,4.350000E+00,7.709650E+00,4.640109E+01,1.500000E+01,Active Shallow Crust,1.288970E+02,8.998302E+01,0.000000E+00 +2422669,fr,2,4.450000E+00,7.709650E+00,4.640109E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2422674,fr,1,4.450000E+00,7.709650E+00,4.640109E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +2422680,fr,3,4.550000E+00,7.709650E+00,4.640109E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +2422683,fr,1,4.550000E+00,7.709650E+00,4.640109E+01,5.000000E+00,Active Shallow Crust,2.400094E+02,5.799718E+01,0.000000E+00 +2422692,fr,2,4.650000E+00,7.709650E+00,4.640109E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2422707,fr,1,4.750000E+00,7.709650E+00,4.640109E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.800468E+01,0.000000E+00 +2422717,fr,1,4.850000E+00,7.709650E+00,4.640109E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +2422741,fr,1,5.050000E+00,7.709650E+00,4.640109E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2422824,fr,1,5.750000E+00,7.709650E+00,4.640109E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +2423040,fr,1,3.550000E+00,-1.418510E+00,4.753168E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +2423041,fr,2,3.550000E+00,-1.418510E+00,4.753168E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +2423043,fr,1,3.550000E+00,-1.418510E+00,4.753168E+01,5.000000E+00,Active Shallow Crust,2.400126E+02,5.799810E+01,0.000000E+00 +2423045,fr,1,3.550000E+00,-1.418510E+00,4.753168E+01,2.750000E+01,Active Shallow Crust,2.400126E+02,5.799801E+01,0.000000E+00 +2423052,fr,1,3.650000E+00,-1.418510E+00,4.753168E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +2423059,fr,1,3.650000E+00,-1.418510E+00,4.753168E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998926E+01,-9.000000E+01 +2423064,fr,1,3.750000E+00,-1.418510E+00,4.753168E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +2423065,fr,1,3.750000E+00,-1.418510E+00,4.753168E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +2423079,fr,1,3.850000E+00,-1.418510E+00,4.753168E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799783E+01,0.000000E+00 +2423085,fr,1,3.850000E+00,-1.418510E+00,4.753168E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999337E+01,0.000000E+00 +2423088,fr,2,3.950000E+00,-1.418510E+00,4.753168E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +2423097,fr,1,3.950000E+00,-1.418510E+00,4.753168E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.999355E+01,0.000000E+00 +2423098,fr,1,3.950000E+00,-1.418510E+00,4.753168E+01,1.500000E+01,Active Shallow Crust,1.289003E+02,8.999355E+01,0.000000E+00 +2423119,fr,1,4.150000E+00,-1.418510E+00,4.753168E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +2423142,fr,1,4.350000E+00,-1.418510E+00,4.753168E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,-9.000000E+01 +2423156,fr,1,4.450000E+00,-1.418510E+00,4.753168E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,-9.000000E+01 +2423161,fr,1,4.550000E+00,-1.418510E+00,4.753168E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +2423196,fr,1,4.850000E+00,-1.418510E+00,4.753168E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +2423232,fr,1,5.150000E+00,-1.418510E+00,4.753168E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2423235,fr,1,5.150000E+00,-1.418510E+00,4.753168E+01,5.000000E+00,Active Shallow Crust,2.400202E+02,5.800008E+01,0.000000E+00 +2423245,fr,1,5.250000E+00,-1.418510E+00,4.753168E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +2423584,fr,1,4.050000E+00,1.415970E+00,4.464887E+01,1.500000E+01,Active Shallow Crust,2.400055E+02,5.800588E+01,0.000000E+00 +2423592,fr,2,4.150000E+00,1.415970E+00,4.464887E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +2424000,fr,2,3.550000E+00,2.396190E+00,4.882410E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2424093,fr,1,4.250000E+00,2.396190E+00,4.882410E+01,5.000000E+00,Active Shallow Crust,1.288937E+02,8.998103E+01,0.000000E+00 +2424481,fr,1,3.550000E+00,2.022530E+00,5.127781E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +2424489,fr,1,3.550000E+00,2.022530E+00,5.127781E+01,5.000000E+00,Active Shallow Crust,1.288957E+02,8.999369E+01,0.000000E+00 +2424499,fr,1,3.650000E+00,2.022530E+00,5.127781E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998862E+01,-9.000000E+01 +2424504,fr,1,3.750000E+00,2.022530E+00,5.127781E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2424507,fr,1,3.750000E+00,2.022530E+00,5.127781E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.801764E+01,0.000000E+00 +2424516,fr,1,3.850000E+00,2.022530E+00,5.127781E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +2424552,fr,1,4.150000E+00,2.022530E+00,5.127781E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +2424565,fr,1,4.250000E+00,2.022530E+00,5.127781E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2424576,fr,1,4.350000E+00,2.022530E+00,5.127781E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +2424603,fr,1,4.550000E+00,2.022530E+00,5.127781E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799763E+01,0.000000E+00 +2424648,fr,1,4.950000E+00,2.022530E+00,5.127781E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2424961,fr,1,3.550000E+00,6.060450E+00,4.698158E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999312E+01,0.000000E+00 +2424970,fr,1,3.550000E+00,6.060450E+00,4.698158E+01,1.500000E+01,Active Shallow Crust,1.288954E+02,8.999312E+01,0.000000E+00 +2424972,fr,3,3.650000E+00,6.060450E+00,4.698158E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998774E+01,0.000000E+00 +2424973,fr,1,3.650000E+00,6.060450E+00,4.698158E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998774E+01,0.000000E+00 +2424975,fr,2,3.650000E+00,6.060450E+00,4.698158E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801270E+01,0.000000E+00 +2424976,fr,1,3.650000E+00,6.060450E+00,4.698158E+01,1.500000E+01,Active Shallow Crust,2.400014E+02,5.801270E+01,0.000000E+00 +2424984,fr,1,3.750000E+00,6.060450E+00,4.698158E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +2424986,fr,1,3.750000E+00,6.060450E+00,4.698158E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +2424996,fr,3,3.850000E+00,6.060450E+00,4.698158E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +2425005,fr,1,3.850000E+00,6.060450E+00,4.698158E+01,5.000000E+00,Active Shallow Crust,1.288951E+02,8.999270E+01,0.000000E+00 +2425008,fr,1,3.950000E+00,6.060450E+00,4.698158E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999132E+01,0.000000E+00 +2425010,fr,1,3.950000E+00,6.060450E+00,4.698158E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999132E+01,0.000000E+00 +2425029,fr,1,4.050000E+00,6.060450E+00,4.698158E+01,5.000000E+00,Active Shallow Crust,1.288904E+02,8.999419E+01,0.000000E+00 +2425054,fr,1,4.250000E+00,6.060450E+00,4.698158E+01,1.500000E+01,Active Shallow Crust,1.288942E+02,8.998096E+01,0.000000E+00 +2425105,fr,1,4.750000E+00,6.060450E+00,4.698158E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +2425116,fr,1,4.850000E+00,6.060450E+00,4.698158E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +2425441,fr,2,3.550000E+00,1.519910E+00,4.197394E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +2425500,fr,1,4.050000E+00,1.519910E+00,4.197394E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +2425514,fr,1,4.150000E+00,1.519910E+00,4.197394E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +2425537,fr,1,4.350000E+00,1.519910E+00,4.197394E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +2425959,fr,1,3.850000E+00,-9.663100E-01,5.102032E+01,5.000000E+00,Active Shallow Crust,2.400115E+02,5.799787E+01,0.000000E+00 +2425968,fr,1,3.950000E+00,-9.663100E-01,5.102032E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2426004,fr,1,4.250000E+00,-9.663100E-01,5.102032E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +2426400,fr,1,3.550000E+00,-1.760430E+00,4.367772E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +2426451,fr,1,3.950000E+00,-1.760430E+00,4.367772E+01,5.000000E+00,Active Shallow Crust,2.400196E+02,5.800492E+01,0.000000E+00 +2426585,fr,1,5.050000E+00,-1.760430E+00,4.367772E+01,2.750000E+01,Active Shallow Crust,2.400208E+02,5.799728E+01,0.000000E+00 +2426880,fr,2,3.550000E+00,4.891000E+00,4.408244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999276E+01,0.000000E+00 +2426881,fr,1,3.550000E+00,4.891000E+00,4.408244E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999276E+01,0.000000E+00 +2426884,fr,1,3.550000E+00,4.891000E+00,4.408244E+01,1.500000E+01,Active Shallow Crust,2.400109E+02,5.799897E+01,0.000000E+00 +2426892,fr,2,3.650000E+00,4.891000E+00,4.408244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998709E+01,0.000000E+00 +2426895,fr,1,3.650000E+00,4.891000E+00,4.408244E+01,5.000000E+00,Active Shallow Crust,2.400004E+02,5.801282E+01,0.000000E+00 +2426901,fr,1,3.650000E+00,4.891000E+00,4.408244E+01,5.000000E+00,Active Shallow Crust,1.289013E+02,8.996348E+01,0.000000E+00 +2426904,fr,2,3.750000E+00,4.891000E+00,4.408244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998849E+01,0.000000E+00 +2426905,fr,2,3.750000E+00,4.891000E+00,4.408244E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998849E+01,0.000000E+00 +2426906,fr,1,3.750000E+00,4.891000E+00,4.408244E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998849E+01,0.000000E+00 +2426916,fr,1,3.850000E+00,4.891000E+00,4.408244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2426922,fr,1,3.850000E+00,4.891000E+00,4.408244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,-9.000000E+01 +2426930,fr,1,3.950000E+00,4.891000E+00,4.408244E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999086E+01,0.000000E+00 +2426931,fr,1,3.950000E+00,4.891000E+00,4.408244E+01,5.000000E+00,Active Shallow Crust,2.400197E+02,5.800490E+01,0.000000E+00 +2426941,fr,1,4.050000E+00,4.891000E+00,4.408244E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999185E+01,0.000000E+00 +2426953,fr,1,4.150000E+00,4.891000E+00,4.408244E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +2426958,fr,1,4.150000E+00,4.891000E+00,4.408244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,-9.000000E+01 +2426976,fr,1,4.350000E+00,4.891000E+00,4.408244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999135E+01,0.000000E+00 +2427027,fr,1,4.750000E+00,4.891000E+00,4.408244E+01,5.000000E+00,Active Shallow Crust,2.400067E+02,5.800418E+01,0.000000E+00 +2427072,fr,2,5.150000E+00,4.891000E+00,4.408244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +2427078,fr,1,5.150000E+00,4.891000E+00,4.408244E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,-9.000000E+01 +2427363,fr,1,3.550000E+00,3.611290E+00,5.042324E+01,5.000000E+00,Active Shallow Crust,2.400129E+02,5.799810E+01,0.000000E+00 +2427373,fr,1,3.650000E+00,3.611290E+00,5.042324E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999141E+01,0.000000E+00 +2427384,fr,1,3.750000E+00,3.611290E+00,5.042324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +2427390,fr,1,3.750000E+00,3.611290E+00,5.042324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998968E+01,-9.000000E+01 +2427400,fr,1,3.850000E+00,3.611290E+00,5.042324E+01,1.500000E+01,Active Shallow Crust,2.400111E+02,5.799824E+01,0.000000E+00 +2427409,fr,1,3.950000E+00,3.611290E+00,5.042324E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +2427420,fr,1,4.050000E+00,3.611290E+00,5.042324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +2427423,fr,1,4.050000E+00,3.611290E+00,5.042324E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.800603E+01,0.000000E+00 +2427426,fr,2,4.050000E+00,3.611290E+00,5.042324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999086E+01,-9.000000E+01 +2427456,fr,1,4.350000E+00,3.611290E+00,5.042324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +2427459,fr,1,4.350000E+00,3.611290E+00,5.042324E+01,5.000000E+00,Active Shallow Crust,2.400092E+02,5.799633E+01,0.000000E+00 +2427469,fr,1,4.450000E+00,3.611290E+00,5.042324E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +2427492,fr,1,4.650000E+00,3.611290E+00,5.042324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2427840,fr,2,3.550000E+00,-2.193450E+00,4.881551E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2427841,fr,1,3.550000E+00,-2.193450E+00,4.881551E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2427852,fr,2,3.650000E+00,-2.193450E+00,4.881551E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999112E+01,0.000000E+00 +2427853,fr,1,3.650000E+00,-2.193450E+00,4.881551E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999112E+01,0.000000E+00 +2427855,fr,2,3.650000E+00,-2.193450E+00,4.881551E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801283E+01,0.000000E+00 +2427864,fr,1,3.750000E+00,-2.193450E+00,4.881551E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +2427876,fr,1,3.850000E+00,-2.193450E+00,4.881551E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +2427877,fr,1,3.850000E+00,-2.193450E+00,4.881551E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999060E+01,0.000000E+00 +2427879,fr,2,3.850000E+00,-2.193450E+00,4.881551E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799806E+01,0.000000E+00 +2427897,fr,1,3.950000E+00,-2.193450E+00,4.881551E+01,5.000000E+00,Active Shallow Crust,1.289000E+02,8.999371E+01,0.000000E+00 +2427900,fr,2,4.050000E+00,-2.193450E+00,4.881551E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +2427903,fr,1,4.050000E+00,-2.193450E+00,4.881551E+01,5.000000E+00,Active Shallow Crust,2.400062E+02,5.800579E+01,0.000000E+00 +2427911,fr,1,4.050000E+00,-2.193450E+00,4.881551E+01,2.750000E+01,Active Shallow Crust,1.288906E+02,8.999347E+01,0.000000E+00 +2427912,fr,2,4.150000E+00,-2.193450E+00,4.881551E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2427924,fr,1,4.250000E+00,-2.193450E+00,4.881551E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +2427938,fr,1,4.350000E+00,-2.193450E+00,4.881551E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +2427939,fr,1,4.350000E+00,-2.193450E+00,4.881551E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.799587E+01,0.000000E+00 +2427961,fr,1,4.550000E+00,-2.193450E+00,4.881551E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +2427984,fr,1,4.750000E+00,-2.193450E+00,4.881551E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2427985,fr,1,4.750000E+00,-2.193450E+00,4.881551E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2429280,fr,2,3.550000E+00,5.394020E+00,4.428227E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999278E+01,0.000000E+00 +2429281,fr,1,3.550000E+00,5.394020E+00,4.428227E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999278E+01,0.000000E+00 +2429295,fr,1,3.650000E+00,5.394020E+00,4.428227E+01,5.000000E+00,Active Shallow Crust,2.400017E+02,5.801278E+01,0.000000E+00 +2429298,fr,1,3.650000E+00,5.394020E+00,4.428227E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998698E+01,-9.000000E+01 +2429304,fr,1,3.750000E+00,5.394020E+00,4.428227E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998853E+01,0.000000E+00 +2429310,fr,1,3.750000E+00,5.394020E+00,4.428227E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998840E+01,-9.000000E+01 +2429313,fr,1,3.750000E+00,5.394020E+00,4.428227E+01,5.000000E+00,Active Shallow Crust,1.288979E+02,8.996683E+01,0.000000E+00 +2429316,fr,1,3.850000E+00,5.394020E+00,4.428227E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +2429317,fr,2,3.850000E+00,5.394020E+00,4.428227E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +2429328,fr,1,3.950000E+00,5.394020E+00,4.428227E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999089E+01,0.000000E+00 +2429334,fr,1,3.950000E+00,5.394020E+00,4.428227E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999078E+01,-9.000000E+01 +2429341,fr,1,4.050000E+00,5.394020E+00,4.428227E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999188E+01,0.000000E+00 +2429353,fr,1,4.150000E+00,5.394020E+00,4.428227E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +2429364,fr,1,4.250000E+00,5.394020E+00,4.428227E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +2429412,fr,1,4.650000E+00,5.394020E+00,4.428227E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +2429520,fr,1,5.550000E+00,5.394020E+00,4.428227E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +2429765,fr,1,3.550000E+00,7.825900E-01,4.781995E+01,2.750000E+01,Active Shallow Crust,2.400124E+02,5.799813E+01,0.000000E+00 +2429772,fr,1,3.650000E+00,7.825900E-01,4.781995E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2429808,fr,1,3.950000E+00,7.825900E-01,4.781995E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2429865,fr,1,4.350000E+00,7.825900E-01,4.781995E+01,5.000000E+00,Active Shallow Crust,1.288976E+02,8.998271E+01,0.000000E+00 +2430240,fr,1,3.550000E+00,6.189880E+00,4.686893E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999310E+01,0.000000E+00 +2430241,fr,1,3.550000E+00,6.189880E+00,4.686893E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999310E+01,0.000000E+00 +2430242,fr,1,3.550000E+00,6.189880E+00,4.686893E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999310E+01,0.000000E+00 +2430244,fr,1,3.550000E+00,6.189880E+00,4.686893E+01,1.500000E+01,Active Shallow Crust,2.400116E+02,5.799831E+01,0.000000E+00 +2430258,fr,1,3.650000E+00,6.189880E+00,4.686893E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998757E+01,-9.000000E+01 +2430264,fr,2,3.750000E+00,6.189880E+00,4.686893E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +2430265,fr,1,3.750000E+00,6.189880E+00,4.686893E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +2430273,fr,1,3.750000E+00,6.189880E+00,4.686893E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996750E+01,0.000000E+00 +2430276,fr,6,3.850000E+00,6.189880E+00,4.686893E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +2430277,fr,1,3.850000E+00,6.189880E+00,4.686893E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +2430282,fr,1,3.850000E+00,6.189880E+00,4.686893E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,-9.000000E+01 +2430291,fr,1,3.950000E+00,6.189880E+00,4.686893E+01,5.000000E+00,Active Shallow Crust,2.400199E+02,5.800481E+01,0.000000E+00 +2430300,fr,2,4.050000E+00,6.189880E+00,4.686893E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998837E+01,0.000000E+00 +2430319,fr,1,4.150000E+00,6.189880E+00,4.686893E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,-9.000000E+01 +2430324,fr,1,4.250000E+00,6.189880E+00,4.686893E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +2430325,fr,1,4.250000E+00,6.189880E+00,4.686893E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +2430337,fr,1,4.350000E+00,6.189880E+00,4.686893E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998902E+01,0.000000E+00 +2430348,fr,1,4.450000E+00,6.189880E+00,4.686893E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +2430352,fr,1,4.450000E+00,6.189880E+00,4.686893E+01,1.500000E+01,Active Shallow Crust,2.400057E+02,5.799485E+01,0.000000E+00 +2430396,fr,2,4.850000E+00,6.189880E+00,4.686893E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +2430429,fr,1,5.050000E+00,6.189880E+00,4.686893E+01,5.000000E+00,Active Shallow Crust,1.288852E+02,8.999056E+01,0.000000E+00 +2430720,fr,1,3.550000E+00,5.191550E+00,4.814717E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999327E+01,0.000000E+00 +2430738,fr,1,3.650000E+00,5.191550E+00,4.814717E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998787E+01,-9.000000E+01 +2430816,fr,1,4.350000E+00,5.191550E+00,4.814717E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +2430900,fr,2,5.050000E+00,5.191550E+00,4.814717E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +2431201,fr,2,3.550000E+00,-1.294920E+00,4.345168E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999085E+01,0.000000E+00 +2431209,fr,1,3.550000E+00,-1.294920E+00,4.345168E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999359E+01,0.000000E+00 +2431212,fr,1,3.650000E+00,-1.294920E+00,4.345168E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +2431217,fr,2,3.650000E+00,-1.294920E+00,4.345168E+01,2.750000E+01,Active Shallow Crust,2.400007E+02,5.801296E+01,0.000000E+00 +2431224,fr,1,3.750000E+00,-1.294920E+00,4.345168E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +2431228,fr,1,3.750000E+00,-1.294920E+00,4.345168E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.801775E+01,0.000000E+00 +2431248,fr,1,3.950000E+00,-1.294920E+00,4.345168E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +2431263,fr,1,4.050000E+00,-1.294920E+00,4.345168E+01,5.000000E+00,Active Shallow Crust,2.400056E+02,5.800558E+01,0.000000E+00 +2431273,fr,1,4.150000E+00,-1.294920E+00,4.345168E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2431284,fr,1,4.250000E+00,-1.294920E+00,4.345168E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +2431680,fr,1,3.550000E+00,-1.748860E+00,4.450511E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +2431830,fr,1,4.750000E+00,-1.748860E+00,4.450511E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +2432160,fr,1,3.550000E+00,8.685430E+00,4.932099E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998685E+01,0.000000E+00 +2432161,fr,1,3.550000E+00,8.685430E+00,4.932099E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998685E+01,0.000000E+00 +2432172,fr,1,3.650000E+00,8.685430E+00,4.932099E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998828E+01,0.000000E+00 +2432184,fr,1,3.750000E+00,8.685430E+00,4.932099E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +2432185,fr,1,3.750000E+00,8.685430E+00,4.932099E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +2432186,fr,1,3.750000E+00,8.685430E+00,4.932099E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998956E+01,0.000000E+00 +2432193,fr,1,3.750000E+00,8.685430E+00,4.932099E+01,5.000000E+00,Active Shallow Crust,1.288959E+02,8.996754E+01,0.000000E+00 +2432206,fr,1,3.850000E+00,8.685430E+00,4.932099E+01,1.500000E+01,Active Shallow Crust,1.288954E+02,8.999535E+01,0.000000E+00 +2432209,fr,1,3.950000E+00,8.685430E+00,4.932099E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999171E+01,0.000000E+00 +2432643,fr,1,3.550000E+00,5.707900E+00,4.150900E+01,5.000000E+00,Active Shallow Crust,2.400129E+02,5.799774E+01,0.000000E+00 +2432653,fr,1,3.650000E+00,5.707900E+00,4.150900E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999327E+01,0.000000E+00 +2432809,fr,1,4.950000E+00,5.707900E+00,4.150900E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +2433120,fr,1,3.550000E+00,2.396380E+00,5.051511E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +2433156,fr,1,3.850000E+00,2.396380E+00,5.051511E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999092E+01,0.000000E+00 +2433160,fr,1,3.850000E+00,2.396380E+00,5.051511E+01,1.500000E+01,Active Shallow Crust,2.400118E+02,5.799775E+01,0.000000E+00 +2433169,fr,1,3.950000E+00,2.396380E+00,5.051511E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2433231,fr,1,4.450000E+00,2.396380E+00,5.051511E+01,5.000000E+00,Active Shallow Crust,2.400063E+02,5.799483E+01,0.000000E+00 +2433600,fr,3,3.550000E+00,-2.924750E+00,4.821493E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +2433606,fr,1,3.550000E+00,-2.924750E+00,4.821493E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,-9.000000E+01 +2433612,fr,3,3.650000E+00,-2.924750E+00,4.821493E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999102E+01,0.000000E+00 +2433624,fr,2,3.750000E+00,-2.924750E+00,4.821493E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +2433637,fr,1,3.850000E+00,-2.924750E+00,4.821493E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +2433642,fr,1,3.850000E+00,-2.924750E+00,4.821493E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,-9.000000E+01 +2433648,fr,1,3.950000E+00,-2.924750E+00,4.821493E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +2433651,fr,1,3.950000E+00,-2.924750E+00,4.821493E+01,5.000000E+00,Active Shallow Crust,2.400203E+02,5.800487E+01,0.000000E+00 +2433670,fr,1,4.050000E+00,-2.924750E+00,4.821493E+01,1.500000E+01,Active Shallow Crust,1.288902E+02,8.999339E+01,0.000000E+00 +2433675,fr,1,4.150000E+00,-2.924750E+00,4.821493E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.799728E+01,0.000000E+00 +2433676,fr,1,4.150000E+00,-2.924750E+00,4.821493E+01,1.500000E+01,Active Shallow Crust,2.400091E+02,5.799731E+01,0.000000E+00 +2433684,fr,1,4.250000E+00,-2.924750E+00,4.821493E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +2433696,fr,3,4.350000E+00,-2.924750E+00,4.821493E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +2433732,fr,1,4.650000E+00,-2.924750E+00,4.821493E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +2433733,fr,1,4.650000E+00,-2.924750E+00,4.821493E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +2433840,fr,1,5.550000E+00,-2.924750E+00,4.821493E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2434110,fr,1,3.750000E+00,-2.847800E+00,4.631544E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998881E+01,-9.000000E+01 +2435040,fr,3,3.550000E+00,7.603800E+00,4.716626E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999314E+01,0.000000E+00 +2435041,fr,1,3.550000E+00,7.603800E+00,4.716626E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999314E+01,0.000000E+00 +2435043,fr,1,3.550000E+00,7.603800E+00,4.716626E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799916E+01,0.000000E+00 +2435044,fr,2,3.550000E+00,7.603800E+00,4.716626E+01,1.500000E+01,Active Shallow Crust,2.400110E+02,5.799916E+01,0.000000E+00 +2435052,fr,6,3.650000E+00,7.603800E+00,4.716626E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998778E+01,0.000000E+00 +2435054,fr,1,3.650000E+00,7.603800E+00,4.716626E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998778E+01,0.000000E+00 +2435055,fr,2,3.650000E+00,7.603800E+00,4.716626E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801295E+01,0.000000E+00 +2435064,fr,4,3.750000E+00,7.603800E+00,4.716626E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +2435065,fr,1,3.750000E+00,7.603800E+00,4.716626E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +2435066,fr,1,3.750000E+00,7.603800E+00,4.716626E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +2435067,fr,1,3.750000E+00,7.603800E+00,4.716626E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.801794E+01,0.000000E+00 +2435076,fr,2,3.850000E+00,7.603800E+00,4.716626E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +2435077,fr,1,3.850000E+00,7.603800E+00,4.716626E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +2435081,fr,1,3.850000E+00,7.603800E+00,4.716626E+01,2.750000E+01,Active Shallow Crust,2.400105E+02,5.799736E+01,0.000000E+00 +2435082,fr,2,3.850000E+00,7.603800E+00,4.716626E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999018E+01,-9.000000E+01 +2435083,fr,1,3.850000E+00,7.603800E+00,4.716626E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,-9.000000E+01 +2435088,fr,1,3.950000E+00,7.603800E+00,4.716626E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999135E+01,0.000000E+00 +2435089,fr,1,3.950000E+00,7.603800E+00,4.716626E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999135E+01,0.000000E+00 +2435091,fr,1,3.950000E+00,7.603800E+00,4.716626E+01,5.000000E+00,Active Shallow Crust,2.400196E+02,5.800479E+01,0.000000E+00 +2435100,fr,3,4.050000E+00,7.603800E+00,4.716626E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +2435102,fr,1,4.050000E+00,7.603800E+00,4.716626E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998843E+01,0.000000E+00 +2435103,fr,1,4.050000E+00,7.603800E+00,4.716626E+01,5.000000E+00,Active Shallow Crust,2.400055E+02,5.800595E+01,0.000000E+00 +2435109,fr,1,4.050000E+00,7.603800E+00,4.716626E+01,5.000000E+00,Active Shallow Crust,1.288904E+02,8.999422E+01,0.000000E+00 +2435113,fr,1,4.150000E+00,7.603800E+00,4.716626E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2435114,fr,1,4.150000E+00,7.603800E+00,4.716626E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2435115,fr,1,4.150000E+00,7.603800E+00,4.716626E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799728E+01,0.000000E+00 +2435120,fr,1,4.150000E+00,7.603800E+00,4.716626E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998957E+01,-9.000000E+01 +2435125,fr,2,4.250000E+00,7.603800E+00,4.716626E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +2435126,fr,1,4.250000E+00,7.603800E+00,4.716626E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +2435139,fr,1,4.350000E+00,7.603800E+00,4.716626E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.799567E+01,0.000000E+00 +2435160,fr,1,4.550000E+00,7.603800E+00,4.716626E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +2435161,fr,1,4.550000E+00,7.603800E+00,4.716626E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +2435184,fr,1,4.750000E+00,7.603800E+00,4.716626E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +2435185,fr,1,4.750000E+00,7.603800E+00,4.716626E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +2435190,fr,1,4.750000E+00,7.603800E+00,4.716626E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,-9.000000E+01 +2435196,fr,1,4.850000E+00,7.603800E+00,4.716626E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +2435233,fr,1,5.150000E+00,7.603800E+00,4.716626E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +2435242,fr,1,5.150000E+00,7.603800E+00,4.716626E+01,1.500000E+01,Active Shallow Crust,1.288834E+02,8.999087E+01,0.000000E+00 +2435270,fr,1,5.450000E+00,7.603800E+00,4.716626E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2435355,fr,1,6.150000E+00,7.603395E+00,4.716674E+01,5.097890E+00,Active Shallow Crust,2.400662E+02,5.800024E+01,0.000000E+00 +2435538,fr,1,3.650000E+00,6.230390E+00,4.941743E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998817E+01,-9.000000E+01 +2436027,fr,1,3.750000E+00,5.014070E+00,5.160112E+01,5.000000E+00,Active Shallow Crust,2.400088E+02,5.801822E+01,0.000000E+00 +2436048,fr,1,3.950000E+00,5.014070E+00,5.160112E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998814E+01,0.000000E+00 +2436054,fr,1,3.950000E+00,5.014070E+00,5.160112E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998801E+01,-9.000000E+01 +2436144,fr,1,4.750000E+00,5.014070E+00,5.160112E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +2436480,fr,2,3.550000E+00,5.268330E+00,4.439788E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999280E+01,0.000000E+00 +2436481,fr,1,3.550000E+00,5.268330E+00,4.439788E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999280E+01,0.000000E+00 +2436482,fr,1,3.550000E+00,5.268330E+00,4.439788E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999280E+01,0.000000E+00 +2436483,fr,2,3.550000E+00,5.268330E+00,4.439788E+01,5.000000E+00,Active Shallow Crust,2.400115E+02,5.799826E+01,0.000000E+00 +2436492,fr,3,3.650000E+00,5.268330E+00,4.439788E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998716E+01,0.000000E+00 +2436495,fr,1,3.650000E+00,5.268330E+00,4.439788E+01,5.000000E+00,Active Shallow Crust,2.400010E+02,5.801320E+01,0.000000E+00 +2436498,fr,1,3.650000E+00,5.268330E+00,4.439788E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998701E+01,-9.000000E+01 +2436504,fr,4,3.750000E+00,5.268330E+00,4.439788E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +2436505,fr,1,3.750000E+00,5.268330E+00,4.439788E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +2436516,fr,1,3.850000E+00,5.268330E+00,4.439788E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +2436517,fr,1,3.850000E+00,5.268330E+00,4.439788E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +2436528,fr,1,3.950000E+00,5.268330E+00,4.439788E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +2436531,fr,1,3.950000E+00,5.268330E+00,4.439788E+01,5.000000E+00,Active Shallow Crust,2.400189E+02,5.800462E+01,0.000000E+00 +2436564,fr,1,4.250000E+00,5.268330E+00,4.439788E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +2436565,fr,1,4.250000E+00,5.268330E+00,4.439788E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +2436568,fr,1,4.250000E+00,5.268330E+00,4.439788E+01,1.500000E+01,Active Shallow Crust,2.400070E+02,5.799374E+01,0.000000E+00 +2436579,fr,1,4.350000E+00,5.268330E+00,4.439788E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.799559E+01,0.000000E+00 +2436600,fr,2,4.550000E+00,5.268330E+00,4.439788E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +2436610,fr,1,4.550000E+00,5.268330E+00,4.439788E+01,1.500000E+01,Active Shallow Crust,1.288940E+02,8.998603E+01,0.000000E+00 +2436660,fr,1,5.050000E+00,5.268330E+00,4.439788E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2436768,fr,1,5.950000E+00,5.268330E+00,4.439788E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2436985,fr,1,3.750000E+00,1.817040E+00,4.040797E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +2436996,fr,1,3.850000E+00,1.817040E+00,4.040797E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +2437069,fr,1,4.450000E+00,1.817040E+00,4.040797E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +2437440,fr,1,3.550000E+00,4.101670E+00,5.086369E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998727E+01,0.000000E+00 +2437446,fr,3,3.550000E+00,4.101670E+00,5.086369E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998712E+01,-9.000000E+01 +2437455,fr,1,3.650000E+00,4.101670E+00,5.086369E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801352E+01,0.000000E+00 +2437461,fr,1,3.650000E+00,4.101670E+00,5.086369E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.996306E+01,0.000000E+00 +2437464,fr,2,3.750000E+00,4.101670E+00,5.086369E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +2437473,fr,1,3.750000E+00,4.101670E+00,5.086369E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.996757E+01,0.000000E+00 +2437560,fr,1,4.550000E+00,4.101670E+00,5.086369E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2437878,fr,1,7.150000E+00,4.101701E+00,5.086369E+01,1.750000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +2437920,fr,1,3.550000E+00,-2.926140E+00,4.862028E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2437921,fr,2,3.550000E+00,-2.926140E+00,4.862028E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2437931,fr,1,3.550000E+00,-2.926140E+00,4.862028E+01,2.750000E+01,Active Shallow Crust,1.288953E+02,8.999500E+01,0.000000E+00 +2437932,fr,4,3.650000E+00,-2.926140E+00,4.862028E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999109E+01,0.000000E+00 +2437944,fr,2,3.750000E+00,-2.926140E+00,4.862028E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998941E+01,0.000000E+00 +2437950,fr,1,3.750000E+00,-2.926140E+00,4.862028E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998929E+01,-9.000000E+01 +2437956,fr,1,3.850000E+00,-2.926140E+00,4.862028E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +2437957,fr,1,3.850000E+00,-2.926140E+00,4.862028E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +2437968,fr,2,3.950000E+00,-2.926140E+00,4.862028E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +2437969,fr,1,3.950000E+00,-2.926140E+00,4.862028E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +2438005,fr,2,4.250000E+00,-2.926140E+00,4.862028E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +2438017,fr,1,4.350000E+00,-2.926140E+00,4.862028E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +2438019,fr,1,4.350000E+00,-2.926140E+00,4.862028E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.799588E+01,0.000000E+00 +2438076,fr,1,4.850000E+00,-2.926140E+00,4.862028E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +2438137,fr,1,5.350000E+00,-2.926140E+00,4.862028E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2438241,fr,1,6.150000E+00,-2.926142E+00,4.862028E+01,6.011322E+00,Active Shallow Crust,1.288511E+02,8.999123E+01,0.000000E+00 +2438400,fr,3,3.550000E+00,4.335230E+00,5.028243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998711E+01,0.000000E+00 +2438401,fr,1,3.550000E+00,4.335230E+00,5.028243E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998711E+01,0.000000E+00 +2438409,fr,1,3.550000E+00,4.335230E+00,5.028243E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.999355E+01,0.000000E+00 +2438412,fr,1,3.650000E+00,4.335230E+00,5.028243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998852E+01,0.000000E+00 +2438416,fr,1,3.650000E+00,4.335230E+00,5.028243E+01,1.500000E+01,Active Shallow Crust,2.400018E+02,5.801274E+01,0.000000E+00 +2438424,fr,1,3.750000E+00,4.335230E+00,5.028243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +2438426,fr,1,3.750000E+00,4.335230E+00,5.028243E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +2438427,fr,1,3.750000E+00,4.335230E+00,5.028243E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.801749E+01,0.000000E+00 +2438436,fr,1,3.850000E+00,4.335230E+00,5.028243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +2438439,fr,1,3.850000E+00,4.335230E+00,5.028243E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799750E+01,0.000000E+00 +2438448,fr,1,3.950000E+00,4.335230E+00,5.028243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999187E+01,0.000000E+00 +2438451,fr,1,3.950000E+00,4.335230E+00,5.028243E+01,5.000000E+00,Active Shallow Crust,2.400198E+02,5.800562E+01,0.000000E+00 +2438452,fr,1,3.950000E+00,4.335230E+00,5.028243E+01,1.500000E+01,Active Shallow Crust,2.400198E+02,5.800562E+01,0.000000E+00 +2438508,fr,1,4.450000E+00,4.335230E+00,5.028243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999085E+01,0.000000E+00 +2438652,fr,1,5.650000E+00,4.335230E+00,5.028243E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2438881,fr,1,3.550000E+00,-1.086600E+00,4.661293E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998961E+01,0.000000E+00 +2438883,fr,1,3.550000E+00,-1.086600E+00,4.661293E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799814E+01,0.000000E+00 +2438884,fr,1,3.550000E+00,-1.086600E+00,4.661293E+01,1.500000E+01,Active Shallow Crust,2.400123E+02,5.799814E+01,0.000000E+00 +2438887,fr,1,3.550000E+00,-1.086600E+00,4.661293E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,-9.000000E+01 +2438892,fr,3,3.650000E+00,-1.086600E+00,4.661293E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +2438893,fr,1,3.650000E+00,-1.086600E+00,4.661293E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +2438894,fr,1,3.650000E+00,-1.086600E+00,4.661293E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +2438896,fr,1,3.650000E+00,-1.086600E+00,4.661293E+01,1.500000E+01,Active Shallow Crust,2.400010E+02,5.801295E+01,0.000000E+00 +2438904,fr,2,3.750000E+00,-1.086600E+00,4.661293E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +2438907,fr,1,3.750000E+00,-1.086600E+00,4.661293E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801768E+01,0.000000E+00 +2438914,fr,1,3.750000E+00,-1.086600E+00,4.661293E+01,1.500000E+01,Active Shallow Crust,1.288967E+02,8.996723E+01,0.000000E+00 +2438916,fr,1,3.850000E+00,-1.086600E+00,4.661293E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +2438917,fr,1,3.850000E+00,-1.086600E+00,4.661293E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +2438928,fr,2,3.950000E+00,-1.086600E+00,4.661293E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2438934,fr,1,3.950000E+00,-1.086600E+00,4.661293E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,-9.000000E+01 +2438943,fr,1,4.050000E+00,-1.086600E+00,4.661293E+01,5.000000E+00,Active Shallow Crust,2.400058E+02,5.800588E+01,0.000000E+00 +2438946,fr,1,4.050000E+00,-1.086600E+00,4.661293E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,-9.000000E+01 +2438968,fr,1,4.250000E+00,-1.086600E+00,4.661293E+01,1.500000E+01,Active Shallow Crust,2.400076E+02,5.799407E+01,0.000000E+00 +2439000,fr,1,4.550000E+00,-1.086600E+00,4.661293E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2439001,fr,1,4.550000E+00,-1.086600E+00,4.661293E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2439024,fr,1,4.750000E+00,-1.086600E+00,4.661293E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2439025,fr,1,4.750000E+00,-1.086600E+00,4.661293E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2439072,fr,1,5.150000E+00,-1.086600E+00,4.661293E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +2439087,fr,1,5.250000E+00,-1.086600E+00,4.661293E+01,5.000000E+00,Active Shallow Crust,2.400256E+02,5.800028E+01,0.000000E+00 +2439191,fr,1,6.050000E+00,-1.086600E+00,4.661293E+01,2.750000E+01,Active Shallow Crust,1.288601E+02,8.998897E+01,0.000000E+00 +2439360,fr,2,3.550000E+00,5.979860E+00,4.395994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999274E+01,0.000000E+00 +2439361,fr,2,3.550000E+00,5.979860E+00,4.395994E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999274E+01,0.000000E+00 +2439362,fr,1,3.550000E+00,5.979860E+00,4.395994E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999274E+01,0.000000E+00 +2439371,fr,1,3.550000E+00,5.979860E+00,4.395994E+01,2.750000E+01,Active Shallow Crust,1.288956E+02,8.999637E+01,0.000000E+00 +2439384,fr,1,3.750000E+00,5.979860E+00,4.395994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998847E+01,0.000000E+00 +2439385,fr,1,3.750000E+00,5.979860E+00,4.395994E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998847E+01,0.000000E+00 +2439387,fr,1,3.750000E+00,5.979860E+00,4.395994E+01,5.000000E+00,Active Shallow Crust,2.400075E+02,5.801862E+01,0.000000E+00 +2439392,fr,1,3.750000E+00,5.979860E+00,4.395994E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998833E+01,-9.000000E+01 +2439393,fr,1,3.750000E+00,5.979860E+00,4.395994E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.996745E+01,0.000000E+00 +2439397,fr,1,3.850000E+00,5.979860E+00,4.395994E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +2439398,fr,1,3.850000E+00,5.979860E+00,4.395994E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +2439405,fr,1,3.850000E+00,5.979860E+00,4.395994E+01,5.000000E+00,Active Shallow Crust,1.288949E+02,8.999487E+01,0.000000E+00 +2439409,fr,1,3.950000E+00,5.979860E+00,4.395994E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +2439410,fr,1,3.950000E+00,5.979860E+00,4.395994E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +2439411,fr,1,3.950000E+00,5.979860E+00,4.395994E+01,5.000000E+00,Active Shallow Crust,2.400194E+02,5.800421E+01,0.000000E+00 +2439420,fr,1,4.050000E+00,5.979860E+00,4.395994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999184E+01,0.000000E+00 +2439432,fr,1,4.150000E+00,5.979860E+00,4.395994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998908E+01,0.000000E+00 +2439450,fr,2,4.250000E+00,5.979860E+00,4.395994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,-9.000000E+01 +2439459,fr,1,4.350000E+00,5.979860E+00,4.395994E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799538E+01,0.000000E+00 +2439468,fr,1,4.450000E+00,5.979860E+00,4.395994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +2439528,fr,1,4.950000E+00,5.979860E+00,4.395994E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +2439840,fr,1,3.550000E+00,3.013400E+00,4.616438E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +2439841,fr,1,3.550000E+00,3.013400E+00,4.616438E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +2439852,fr,2,3.650000E+00,3.013400E+00,4.616438E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +2439864,fr,2,3.750000E+00,3.013400E+00,4.616438E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +2439865,fr,1,3.750000E+00,3.013400E+00,4.616438E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +2439866,fr,1,3.750000E+00,3.013400E+00,4.616438E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +2439908,fr,1,4.050000E+00,3.013400E+00,4.616438E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +2439912,fr,1,4.150000E+00,3.013400E+00,4.616438E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +2439925,fr,1,4.250000E+00,3.013400E+00,4.616438E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999064E+01,0.000000E+00 +2440002,fr,1,4.850000E+00,3.013400E+00,4.616438E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,-9.000000E+01 +2440032,fr,1,5.150000E+00,3.013400E+00,4.616438E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2440326,fr,1,3.550000E+00,-1.742370E+00,4.965104E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +2440332,fr,1,3.650000E+00,-1.742370E+00,4.965104E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2440353,fr,1,3.750000E+00,-1.742370E+00,4.965104E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.996732E+01,0.000000E+00 +2440800,fr,1,3.550000E+00,1.159970E+00,5.163649E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +2440812,fr,1,3.650000E+00,1.159970E+00,5.163649E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +2440815,fr,1,3.650000E+00,1.159970E+00,5.163649E+01,5.000000E+00,Active Shallow Crust,2.400019E+02,5.801288E+01,0.000000E+00 +2440827,fr,1,3.750000E+00,1.159970E+00,5.163649E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.801770E+01,0.000000E+00 +2440836,fr,1,3.850000E+00,1.159970E+00,5.163649E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2440842,fr,1,3.850000E+00,1.159970E+00,5.163649E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +2440861,fr,1,4.050000E+00,1.159970E+00,5.163649E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +2440872,fr,1,4.150000E+00,1.159970E+00,5.163649E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2440907,fr,1,4.350000E+00,1.159970E+00,5.163649E+01,2.750000E+01,Active Shallow Crust,1.288968E+02,8.998267E+01,0.000000E+00 +2441285,fr,1,3.550000E+00,-1.253500E-01,4.274770E+01,2.750000E+01,Active Shallow Crust,2.400119E+02,5.799802E+01,0.000000E+00 +2441286,fr,1,3.550000E+00,-1.253500E-01,4.274770E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +2441289,fr,2,3.550000E+00,-1.253500E-01,4.274770E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999375E+01,0.000000E+00 +2441298,fr,1,3.650000E+00,-1.253500E-01,4.274770E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +2441304,fr,1,3.750000E+00,-1.253500E-01,4.274770E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2441316,fr,1,3.850000E+00,-1.253500E-01,4.274770E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2441340,fr,2,4.050000E+00,-1.253500E-01,4.274770E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2441356,fr,1,4.150000E+00,-1.253500E-01,4.274770E+01,1.500000E+01,Active Shallow Crust,2.400078E+02,5.799723E+01,0.000000E+00 +2441365,fr,1,4.250000E+00,-1.253500E-01,4.274770E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2441460,fr,1,5.050000E+00,-1.253500E-01,4.274770E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2441472,fr,1,5.150000E+00,-1.253500E-01,4.274770E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2441784,fr,2,3.750000E+00,3.348130E+00,4.438878E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +2441785,fr,1,3.750000E+00,3.348130E+00,4.438878E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +2441794,fr,1,3.750000E+00,3.348130E+00,4.438878E+01,1.500000E+01,Active Shallow Crust,1.288974E+02,8.996717E+01,0.000000E+00 +2441796,fr,1,3.850000E+00,3.348130E+00,4.438878E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +2441862,fr,1,4.350000E+00,3.348130E+00,4.438878E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +2441868,fr,1,4.450000E+00,3.348130E+00,4.438878E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +2441940,fr,1,5.050000E+00,3.348130E+00,4.438878E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2442265,fr,1,3.750000E+00,-4.291230E+00,5.011642E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +2442276,fr,1,3.850000E+00,-4.291230E+00,5.011642E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +2442921,fr,1,5.150000E+00,-1.395980E+00,4.164411E+01,5.000000E+00,Active Shallow Crust,1.288860E+02,8.999104E+01,0.000000E+00 +2443200,fr,2,3.550000E+00,-6.935400E-01,4.351339E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2443201,fr,2,3.550000E+00,-6.935400E-01,4.351339E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2443212,fr,1,3.650000E+00,-6.935400E-01,4.351339E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2443215,fr,1,3.650000E+00,-6.935400E-01,4.351339E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801288E+01,0.000000E+00 +2443224,fr,1,3.750000E+00,-6.935400E-01,4.351339E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +2443237,fr,1,3.850000E+00,-6.935400E-01,4.351339E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +2443260,fr,1,4.050000E+00,-6.935400E-01,4.351339E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2443681,fr,1,3.550000E+00,5.987630E+00,4.462330E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999282E+01,0.000000E+00 +2443692,fr,2,3.650000E+00,5.987630E+00,4.462330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998721E+01,0.000000E+00 +2443723,fr,1,3.850000E+00,5.987630E+00,4.462330E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,-9.000000E+01 +2443729,fr,1,3.950000E+00,5.987630E+00,4.462330E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +2443734,fr,1,3.950000E+00,5.987630E+00,4.462330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,-9.000000E+01 +2443777,fr,1,4.350000E+00,5.987630E+00,4.462330E+01,1.500000E+01,Active Shallow Crust,3.599986E+02,8.999142E+01,0.000000E+00 +2443788,fr,1,4.450000E+00,5.987630E+00,4.462330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2443815,fr,2,4.650000E+00,5.987630E+00,4.462330E+01,5.000000E+00,Active Shallow Crust,2.400100E+02,5.799425E+01,0.000000E+00 +2443830,fr,1,4.750000E+00,5.987630E+00,4.462330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,-9.000000E+01 +2444245,fr,1,4.250000E+00,3.770760E+00,4.908089E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +2444270,fr,1,4.450000E+00,3.770760E+00,4.908089E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +2444640,fr,1,3.550000E+00,1.951280E+00,4.945986E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2444679,fr,1,3.850000E+00,1.951280E+00,4.945986E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799783E+01,0.000000E+00 +2444692,fr,1,3.950000E+00,1.951280E+00,4.945986E+01,1.500000E+01,Active Shallow Crust,2.400204E+02,5.800486E+01,0.000000E+00 +2444721,fr,1,4.150000E+00,1.951280E+00,4.945986E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.999384E+01,0.000000E+00 +2444785,fr,1,4.750000E+00,1.951280E+00,4.945986E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +2445060,fr,1,7.050000E+00,1.951309E+00,4.945986E+01,1.694221E+01,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +2445120,fr,1,3.550000E+00,4.173280E+00,4.876321E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998671E+01,0.000000E+00 +2445124,fr,1,3.550000E+00,4.173280E+00,4.876321E+01,1.500000E+01,Active Shallow Crust,2.400119E+02,5.799926E+01,0.000000E+00 +2445603,fr,1,3.550000E+00,-5.090000E+00,4.717595E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799889E+01,0.000000E+00 +2445648,fr,1,3.950000E+00,-5.090000E+00,4.717595E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999135E+01,0.000000E+00 +2446080,fr,1,3.550000E+00,-1.800300E+00,5.070708E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +2446111,fr,1,3.750000E+00,-1.800300E+00,5.070708E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,-9.000000E+01 +2446113,fr,1,3.750000E+00,-1.800300E+00,5.070708E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.996734E+01,0.000000E+00 +2446116,fr,2,3.850000E+00,-1.800300E+00,5.070708E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +2446560,fr,7,3.550000E+00,8.719560E+00,4.728615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998632E+01,0.000000E+00 +2446561,fr,4,3.550000E+00,8.719560E+00,4.728615E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998632E+01,0.000000E+00 +2446562,fr,1,3.550000E+00,8.719560E+00,4.728615E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998632E+01,0.000000E+00 +2446563,fr,2,3.550000E+00,8.719560E+00,4.728615E+01,5.000000E+00,Active Shallow Crust,2.400114E+02,5.799921E+01,0.000000E+00 +2446566,fr,2,3.550000E+00,8.719560E+00,4.728615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998616E+01,-9.000000E+01 +2446569,fr,1,3.550000E+00,8.719560E+00,4.728615E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999316E+01,0.000000E+00 +2446572,fr,3,3.650000E+00,8.719560E+00,4.728615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998781E+01,0.000000E+00 +2446573,fr,2,3.650000E+00,8.719560E+00,4.728615E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998781E+01,0.000000E+00 +2446574,fr,1,3.650000E+00,8.719560E+00,4.728615E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998781E+01,0.000000E+00 +2446575,fr,2,3.650000E+00,8.719560E+00,4.728615E+01,5.000000E+00,Active Shallow Crust,2.400000E+02,5.801328E+01,0.000000E+00 +2446578,fr,1,3.650000E+00,8.719560E+00,4.728615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998766E+01,-9.000000E+01 +2446581,fr,1,3.650000E+00,8.719560E+00,4.728615E+01,5.000000E+00,Active Shallow Crust,1.288984E+02,8.996354E+01,0.000000E+00 +2446582,fr,2,3.650000E+00,8.719560E+00,4.728615E+01,1.500000E+01,Active Shallow Crust,1.288984E+02,8.996354E+01,0.000000E+00 +2446584,fr,2,3.750000E+00,8.719560E+00,4.728615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +2446585,fr,1,3.750000E+00,8.719560E+00,4.728615E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +2446593,fr,1,3.750000E+00,8.719560E+00,4.728615E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.996751E+01,0.000000E+00 +2446596,fr,6,3.850000E+00,8.719560E+00,4.728615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +2446597,fr,2,3.850000E+00,8.719560E+00,4.728615E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +2446599,fr,1,3.850000E+00,8.719560E+00,4.728615E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799752E+01,0.000000E+00 +2446605,fr,2,3.850000E+00,8.719560E+00,4.728615E+01,5.000000E+00,Active Shallow Crust,1.288938E+02,8.999516E+01,0.000000E+00 +2446608,fr,3,3.950000E+00,8.719560E+00,4.728615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999137E+01,0.000000E+00 +2446610,fr,1,3.950000E+00,8.719560E+00,4.728615E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999137E+01,0.000000E+00 +2446611,fr,1,3.950000E+00,8.719560E+00,4.728615E+01,5.000000E+00,Active Shallow Crust,2.400218E+02,5.800378E+01,0.000000E+00 +2446615,fr,1,3.950000E+00,8.719560E+00,4.728615E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999126E+01,-9.000000E+01 +2446617,fr,1,3.950000E+00,8.719560E+00,4.728615E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.999568E+01,0.000000E+00 +2446620,fr,1,4.050000E+00,8.719560E+00,4.728615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999231E+01,0.000000E+00 +2446622,fr,1,4.050000E+00,8.719560E+00,4.728615E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999231E+01,0.000000E+00 +2446633,fr,1,4.150000E+00,8.719560E+00,4.728615E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999314E+01,0.000000E+00 +2446641,fr,1,4.150000E+00,8.719560E+00,4.728615E+01,5.000000E+00,Active Shallow Crust,1.288979E+02,8.999314E+01,0.000000E+00 +2446644,fr,1,4.250000E+00,8.719560E+00,4.728615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998778E+01,0.000000E+00 +2446645,fr,2,4.250000E+00,8.719560E+00,4.728615E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998778E+01,0.000000E+00 +2446647,fr,1,4.250000E+00,8.719560E+00,4.728615E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799307E+01,0.000000E+00 +2446656,fr,2,4.350000E+00,8.719560E+00,4.728615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998911E+01,0.000000E+00 +2446664,fr,1,4.350000E+00,8.719560E+00,4.728615E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998898E+01,-9.000000E+01 +2446668,fr,1,4.450000E+00,8.719560E+00,4.728615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999029E+01,0.000000E+00 +2446695,fr,1,4.650000E+00,8.719560E+00,4.728615E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799473E+01,0.000000E+00 +2446713,fr,1,4.750000E+00,8.719560E+00,4.728615E+01,5.000000E+00,Active Shallow Crust,1.288882E+02,8.998775E+01,0.000000E+00 +2446729,fr,1,4.950000E+00,8.719560E+00,4.728615E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998908E+01,0.000000E+00 +2446737,fr,1,4.950000E+00,8.719560E+00,4.728615E+01,5.000000E+00,Active Shallow Crust,1.288893E+02,8.999027E+01,0.000000E+00 +2446740,fr,1,5.050000E+00,8.719560E+00,4.728615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +2446848,fr,2,5.950000E+00,8.719560E+00,4.728615E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +2446872,fr,1,6.150000E+00,8.719562E+00,4.728615E+01,6.011322E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +2447040,fr,3,3.550000E+00,8.143350E+00,4.735452E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998634E+01,0.000000E+00 +2447041,fr,2,3.550000E+00,8.143350E+00,4.735452E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998634E+01,0.000000E+00 +2447045,fr,1,3.550000E+00,8.143350E+00,4.735452E+01,2.750000E+01,Active Shallow Crust,2.400134E+02,5.799874E+01,0.000000E+00 +2447046,fr,2,3.550000E+00,8.143350E+00,4.735452E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998618E+01,-9.000000E+01 +2447049,fr,1,3.550000E+00,8.143350E+00,4.735452E+01,5.000000E+00,Active Shallow Crust,1.288983E+02,8.999317E+01,0.000000E+00 +2447052,fr,5,3.650000E+00,8.143350E+00,4.735452E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998782E+01,0.000000E+00 +2447054,fr,1,3.650000E+00,8.143350E+00,4.735452E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998782E+01,0.000000E+00 +2447055,fr,1,3.650000E+00,8.143350E+00,4.735452E+01,5.000000E+00,Active Shallow Crust,2.400014E+02,5.801127E+01,0.000000E+00 +2447056,fr,1,3.650000E+00,8.143350E+00,4.735452E+01,1.500000E+01,Active Shallow Crust,2.400014E+02,5.801127E+01,0.000000E+00 +2447057,fr,1,3.650000E+00,8.143350E+00,4.735452E+01,2.750000E+01,Active Shallow Crust,2.400014E+02,5.801119E+01,0.000000E+00 +2447061,fr,1,3.650000E+00,8.143350E+00,4.735452E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.996354E+01,0.000000E+00 +2447062,fr,1,3.650000E+00,8.143350E+00,4.735452E+01,1.500000E+01,Active Shallow Crust,1.289002E+02,8.996354E+01,0.000000E+00 +2447065,fr,1,3.750000E+00,8.143350E+00,4.735452E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +2447077,fr,1,3.850000E+00,8.143350E+00,4.735452E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +2447080,fr,1,3.850000E+00,8.143350E+00,4.735452E+01,1.500000E+01,Active Shallow Crust,2.400107E+02,5.799765E+01,0.000000E+00 +2447081,fr,1,3.850000E+00,8.143350E+00,4.735452E+01,2.750000E+01,Active Shallow Crust,2.400107E+02,5.799765E+01,0.000000E+00 +2447082,fr,1,3.850000E+00,8.143350E+00,4.735452E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,-9.000000E+01 +2447088,fr,2,3.950000E+00,8.143350E+00,4.735452E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999138E+01,0.000000E+00 +2447089,fr,1,3.950000E+00,8.143350E+00,4.735452E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999138E+01,0.000000E+00 +2447091,fr,1,3.950000E+00,8.143350E+00,4.735452E+01,5.000000E+00,Active Shallow Crust,2.400199E+02,5.800480E+01,0.000000E+00 +2447094,fr,1,3.950000E+00,8.143350E+00,4.735452E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999128E+01,-9.000000E+01 +2447096,fr,1,3.950000E+00,8.143350E+00,4.735452E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999128E+01,-9.000000E+01 +2447100,fr,1,4.050000E+00,8.143350E+00,4.735452E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999232E+01,0.000000E+00 +2447121,fr,1,4.150000E+00,8.143350E+00,4.735452E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.999657E+01,0.000000E+00 +2447136,fr,2,4.350000E+00,8.143350E+00,4.735452E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998912E+01,0.000000E+00 +2447137,fr,2,4.350000E+00,8.143350E+00,4.735452E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998912E+01,0.000000E+00 +2447143,fr,1,4.350000E+00,8.143350E+00,4.735452E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998899E+01,-9.000000E+01 +2447173,fr,2,4.650000E+00,8.143350E+00,4.735452E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998845E+01,0.000000E+00 +2447181,fr,1,4.650000E+00,8.143350E+00,4.735452E+01,5.000000E+00,Active Shallow Crust,1.288902E+02,8.998725E+01,0.000000E+00 +2447211,fr,1,4.950000E+00,8.143350E+00,4.735452E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.800467E+01,0.000000E+00 +2447229,fr,1,5.050000E+00,8.143350E+00,4.735452E+01,5.000000E+00,Active Shallow Crust,1.288849E+02,8.999060E+01,0.000000E+00 +2447408,fr,1,6.550000E+00,8.143345E+00,4.735452E+01,2.558175E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,-9.000000E+01 +2447520,fr,1,3.550000E+00,3.846520E+00,4.152852E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998868E+01,0.000000E+00 +2447530,fr,1,3.550000E+00,3.846520E+00,4.152852E+01,1.500000E+01,Active Shallow Crust,1.288965E+02,8.999434E+01,0.000000E+00 +2447532,fr,1,3.650000E+00,3.846520E+00,4.152852E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2447547,fr,1,3.750000E+00,3.846520E+00,4.152852E+01,5.000000E+00,Active Shallow Crust,2.400075E+02,5.801727E+01,0.000000E+00 +2447556,fr,1,3.850000E+00,3.846520E+00,4.152852E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998931E+01,0.000000E+00 +2447568,fr,1,3.950000E+00,3.846520E+00,4.152852E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +2447571,fr,1,3.950000E+00,3.846520E+00,4.152852E+01,5.000000E+00,Active Shallow Crust,2.400192E+02,5.800463E+01,0.000000E+00 +2447724,fr,1,5.250000E+00,3.846520E+00,4.152852E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +2448000,fr,2,3.550000E+00,4.133610E+00,4.476783E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999284E+01,0.000000E+00 +2448001,fr,1,3.550000E+00,4.133610E+00,4.476783E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999284E+01,0.000000E+00 +2448014,fr,1,3.650000E+00,4.133610E+00,4.476783E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998724E+01,0.000000E+00 +2448015,fr,1,3.650000E+00,4.133610E+00,4.476783E+01,5.000000E+00,Active Shallow Crust,2.400000E+02,5.801345E+01,0.000000E+00 +2448025,fr,1,3.750000E+00,4.133610E+00,4.476783E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +2448027,fr,1,3.750000E+00,4.133610E+00,4.476783E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.801756E+01,0.000000E+00 +2448060,fr,1,4.050000E+00,4.133610E+00,4.476783E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999195E+01,0.000000E+00 +2448081,fr,1,4.150000E+00,4.133610E+00,4.476783E+01,5.000000E+00,Active Shallow Crust,1.288973E+02,8.999462E+01,0.000000E+00 +2448084,fr,1,4.250000E+00,4.133610E+00,4.476783E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +2448096,fr,1,4.350000E+00,4.133610E+00,4.476783E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998860E+01,0.000000E+00 +2448109,fr,1,4.450000E+00,4.133610E+00,4.476783E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +2448481,fr,1,3.550000E+00,3.094440E+00,4.630617E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +2448528,fr,1,3.950000E+00,3.094440E+00,4.630617E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +2448540,fr,1,4.050000E+00,3.094440E+00,4.630617E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2448637,fr,1,4.850000E+00,3.094440E+00,4.630617E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +2448661,fr,1,5.050000E+00,3.094440E+00,4.630617E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +2448970,fr,1,3.550000E+00,5.560500E-01,4.886740E+01,1.500000E+01,Active Shallow Crust,1.288960E+02,8.999378E+01,0.000000E+00 +2448972,fr,3,3.650000E+00,5.560500E-01,4.886740E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +2448981,fr,1,3.650000E+00,5.560500E-01,4.886740E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.996351E+01,0.000000E+00 +2448985,fr,1,3.750000E+00,5.560500E-01,4.886740E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +2448990,fr,1,3.750000E+00,5.560500E-01,4.886740E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +2448993,fr,1,3.750000E+00,5.560500E-01,4.886740E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.996735E+01,0.000000E+00 +2449053,fr,1,4.250000E+00,5.560500E-01,4.886740E+01,5.000000E+00,Active Shallow Crust,1.288940E+02,8.998092E+01,0.000000E+00 +2449179,fr,1,5.350000E+00,5.560500E-01,4.886740E+01,5.000000E+00,Active Shallow Crust,2.400269E+02,5.799819E+01,0.000000E+00 +2449494,fr,1,3.950000E+00,-1.807930E+00,4.518535E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,-9.000000E+01 +2449586,fr,1,4.750000E+00,-1.807930E+00,4.518535E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999018E+01,0.000000E+00 +2450400,fr,2,3.550000E+00,4.466640E+00,5.079330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998725E+01,0.000000E+00 +2450404,fr,1,3.550000E+00,4.466640E+00,5.079330E+01,1.500000E+01,Active Shallow Crust,2.400138E+02,5.799718E+01,0.000000E+00 +2450412,fr,1,3.650000E+00,4.466640E+00,5.079330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998864E+01,0.000000E+00 +2450413,fr,1,3.650000E+00,4.466640E+00,5.079330E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998864E+01,0.000000E+00 +2450414,fr,1,3.650000E+00,4.466640E+00,5.079330E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998864E+01,0.000000E+00 +2450418,fr,1,3.650000E+00,4.466640E+00,5.079330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998850E+01,-9.000000E+01 +2450424,fr,2,3.750000E+00,4.466640E+00,5.079330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2450428,fr,1,3.750000E+00,4.466640E+00,5.079330E+01,1.500000E+01,Active Shallow Crust,2.400096E+02,5.801707E+01,0.000000E+00 +2450436,fr,2,3.850000E+00,4.466640E+00,5.079330E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +2450445,fr,1,3.850000E+00,4.466640E+00,5.079330E+01,5.000000E+00,Active Shallow Crust,1.288942E+02,8.999323E+01,0.000000E+00 +2450449,fr,1,3.950000E+00,4.466640E+00,5.079330E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999196E+01,0.000000E+00 +2450485,fr,1,4.250000E+00,4.466640E+00,5.079330E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998861E+01,0.000000E+00 +2450880,fr,1,3.550000E+00,-4.368550E+00,4.739279E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999317E+01,0.000000E+00 +2450900,fr,1,3.650000E+00,-4.368550E+00,4.739279E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998769E+01,-9.000000E+01 +2450911,fr,1,3.750000E+00,-4.368550E+00,4.739279E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998903E+01,-9.000000E+01 +2450943,fr,1,4.050000E+00,-4.368550E+00,4.739279E+01,5.000000E+00,Active Shallow Crust,2.400061E+02,5.800578E+01,0.000000E+00 +2451120,fr,1,5.550000E+00,-4.368550E+00,4.739279E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2451397,fr,1,3.850000E+00,4.227210E+00,4.788542E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +2451457,fr,1,4.350000E+00,4.227210E+00,4.788542E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +2451841,fr,1,3.550000E+00,-5.463150E+00,4.905543E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998679E+01,0.000000E+00 +2451864,fr,1,3.750000E+00,-5.463150E+00,4.905543E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +2451917,fr,1,4.150000E+00,-5.463150E+00,4.905543E+01,2.750000E+01,Active Shallow Crust,2.400097E+02,5.799725E+01,0.000000E+00 +2451936,fr,1,4.350000E+00,-5.463150E+00,4.905543E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +2452321,fr,2,3.550000E+00,-3.424400E+00,4.721586E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +2452369,fr,1,3.950000E+00,-3.424400E+00,4.721586E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +2452380,fr,1,4.050000E+00,-3.424400E+00,4.721586E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +2452416,fr,1,4.350000E+00,-3.424400E+00,4.721586E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +2452812,fr,1,3.650000E+00,4.738470E+00,5.119829E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998874E+01,0.000000E+00 +2452819,fr,1,3.650000E+00,4.738470E+00,5.119829E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998861E+01,-9.000000E+01 +2452825,fr,1,3.750000E+00,4.738470E+00,5.119829E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2452857,fr,1,3.950000E+00,4.738470E+00,5.119829E+01,5.000000E+00,Active Shallow Crust,1.288988E+02,8.999402E+01,0.000000E+00 +2453292,fr,1,3.650000E+00,6.037080E+00,4.851166E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998809E+01,0.000000E+00 +2454240,fr,2,3.550000E+00,6.525310E+00,4.613268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999301E+01,0.000000E+00 +2454241,fr,3,3.550000E+00,6.525310E+00,4.613268E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999301E+01,0.000000E+00 +2454246,fr,1,3.550000E+00,6.525310E+00,4.613268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999293E+01,-9.000000E+01 +2454249,fr,1,3.550000E+00,6.525310E+00,4.613268E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.999651E+01,0.000000E+00 +2454252,fr,4,3.650000E+00,6.525310E+00,4.613268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998754E+01,0.000000E+00 +2454253,fr,1,3.650000E+00,6.525310E+00,4.613268E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998754E+01,0.000000E+00 +2454255,fr,1,3.650000E+00,6.525310E+00,4.613268E+01,5.000000E+00,Active Shallow Crust,2.400017E+02,5.801287E+01,0.000000E+00 +2454261,fr,1,3.650000E+00,6.525310E+00,4.613268E+01,5.000000E+00,Active Shallow Crust,1.288998E+02,8.996352E+01,0.000000E+00 +2454264,fr,2,3.750000E+00,6.525310E+00,4.613268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998890E+01,0.000000E+00 +2454268,fr,1,3.750000E+00,6.525310E+00,4.613268E+01,1.500000E+01,Active Shallow Crust,2.400085E+02,5.801731E+01,0.000000E+00 +2454276,fr,2,3.850000E+00,6.525310E+00,4.613268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2454280,fr,1,3.850000E+00,6.525310E+00,4.613268E+01,1.500000E+01,Active Shallow Crust,2.400103E+02,5.799796E+01,0.000000E+00 +2454288,fr,1,3.950000E+00,6.525310E+00,4.613268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999118E+01,0.000000E+00 +2454297,fr,1,3.950000E+00,6.525310E+00,4.613268E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.999559E+01,0.000000E+00 +2454298,fr,2,3.950000E+00,6.525310E+00,4.613268E+01,1.500000E+01,Active Shallow Crust,1.289005E+02,8.999559E+01,0.000000E+00 +2454300,fr,1,4.050000E+00,6.525310E+00,4.613268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998821E+01,0.000000E+00 +2454309,fr,1,4.050000E+00,6.525310E+00,4.613268E+01,5.000000E+00,Active Shallow Crust,1.288895E+02,8.999410E+01,0.000000E+00 +2454312,fr,1,4.150000E+00,6.525310E+00,4.613268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +2454318,fr,1,4.150000E+00,6.525310E+00,4.613268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998937E+01,-9.000000E+01 +2454333,fr,1,4.250000E+00,6.525310E+00,4.613268E+01,5.000000E+00,Active Shallow Crust,1.288939E+02,8.998093E+01,0.000000E+00 +2454348,fr,1,4.450000E+00,6.525310E+00,4.613268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +2454351,fr,1,4.450000E+00,6.525310E+00,4.613268E+01,5.000000E+00,Active Shallow Crust,2.400046E+02,5.799486E+01,0.000000E+00 +2454366,fr,1,4.550000E+00,6.525310E+00,4.613268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999106E+01,-9.000000E+01 +2454384,fr,2,4.750000E+00,6.525310E+00,4.613268E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +2454530,fr,1,5.950000E+00,6.525310E+00,4.613268E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2454734,fr,1,3.650000E+00,-5.845500E-01,4.489066E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +2454741,fr,1,3.650000E+00,-5.845500E-01,4.489066E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996349E+01,0.000000E+00 +2454822,fr,1,4.350000E+00,-5.845500E-01,4.489066E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,-9.000000E+01 +2455200,fr,1,3.550000E+00,-8.815400E-01,4.891163E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2455202,fr,2,3.550000E+00,-8.815400E-01,4.891163E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2455206,fr,1,3.550000E+00,-8.815400E-01,4.891163E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +2455212,fr,1,3.650000E+00,-8.815400E-01,4.891163E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +2455224,fr,2,3.750000E+00,-8.815400E-01,4.891163E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2455227,fr,1,3.750000E+00,-8.815400E-01,4.891163E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.801755E+01,0.000000E+00 +2455260,fr,1,4.050000E+00,-8.815400E-01,4.891163E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +2455280,fr,1,4.150000E+00,-8.815400E-01,4.891163E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,-9.000000E+01 +2455300,fr,1,4.350000E+00,-8.815400E-01,4.891163E+01,1.500000E+01,Active Shallow Crust,2.400090E+02,5.799606E+01,0.000000E+00 +2455308,fr,1,4.450000E+00,-8.815400E-01,4.891163E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2455309,fr,1,4.450000E+00,-8.815400E-01,4.891163E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2455333,fr,1,4.650000E+00,-8.815400E-01,4.891163E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2455344,fr,1,4.750000E+00,-8.815400E-01,4.891163E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2455368,fr,1,4.950000E+00,-8.815400E-01,4.891163E+01,5.000000E+00,Active Shallow Crust,3.599999E+02,8.999008E+01,0.000000E+00 +2455480,fr,1,5.850000E+00,-8.815400E-01,4.891163E+01,1.500000E+01,Active Shallow Crust,2.400505E+02,5.800034E+01,0.000000E+00 +2455680,fr,2,3.550000E+00,5.884200E-01,4.268055E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2455683,fr,1,3.550000E+00,5.884200E-01,4.268055E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799810E+01,0.000000E+00 +2455684,fr,1,3.550000E+00,5.884200E-01,4.268055E+01,1.500000E+01,Active Shallow Crust,2.400118E+02,5.799810E+01,0.000000E+00 +2455692,fr,1,3.650000E+00,5.884200E-01,4.268055E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +2455693,fr,1,3.650000E+00,5.884200E-01,4.268055E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +2455695,fr,1,3.650000E+00,5.884200E-01,4.268055E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801297E+01,0.000000E+00 +2455696,fr,1,3.650000E+00,5.884200E-01,4.268055E+01,1.500000E+01,Active Shallow Crust,2.400007E+02,5.801297E+01,0.000000E+00 +2455698,fr,1,3.650000E+00,5.884200E-01,4.268055E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +2455699,fr,2,3.650000E+00,5.884200E-01,4.268055E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +2455704,fr,1,3.750000E+00,5.884200E-01,4.268055E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2455705,fr,1,3.750000E+00,5.884200E-01,4.268055E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2455708,fr,1,3.750000E+00,5.884200E-01,4.268055E+01,1.500000E+01,Active Shallow Crust,2.400080E+02,5.801756E+01,0.000000E+00 +2455713,fr,1,3.750000E+00,5.884200E-01,4.268055E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.996735E+01,0.000000E+00 +2455716,fr,2,3.850000E+00,5.884200E-01,4.268055E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +2455717,fr,4,3.850000E+00,5.884200E-01,4.268055E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +2455728,fr,2,3.950000E+00,5.884200E-01,4.268055E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2455734,fr,1,3.950000E+00,5.884200E-01,4.268055E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,-9.000000E+01 +2455740,fr,1,4.050000E+00,5.884200E-01,4.268055E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2455752,fr,1,4.150000E+00,5.884200E-01,4.268055E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +2455753,fr,2,4.150000E+00,5.884200E-01,4.268055E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +2455760,fr,1,4.150000E+00,5.884200E-01,4.268055E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +2455764,fr,2,4.250000E+00,5.884200E-01,4.268055E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2455766,fr,2,4.250000E+00,5.884200E-01,4.268055E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2455769,fr,1,4.250000E+00,5.884200E-01,4.268055E+01,2.750000E+01,Active Shallow Crust,2.400068E+02,5.799393E+01,0.000000E+00 +2455806,fr,1,4.550000E+00,5.884200E-01,4.268055E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,-9.000000E+01 +2455813,fr,1,4.650000E+00,5.884200E-01,4.268055E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2455833,fr,1,4.750000E+00,5.884200E-01,4.268055E+01,5.000000E+00,Active Shallow Crust,1.288898E+02,8.998808E+01,0.000000E+00 +2455848,fr,1,4.950000E+00,5.884200E-01,4.268055E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2455854,fr,1,4.950000E+00,5.884200E-01,4.268055E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +2455875,fr,1,5.150000E+00,5.884200E-01,4.268055E+01,5.000000E+00,Active Shallow Crust,2.400175E+02,5.799960E+01,0.000000E+00 +2455886,fr,1,5.250000E+00,5.884200E-01,4.268055E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +2456166,fr,1,3.550000E+00,7.819000E-01,5.032401E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,-9.000000E+01 +2456184,fr,1,3.750000E+00,7.819000E-01,5.032401E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +2456209,fr,1,3.950000E+00,7.819000E-01,5.032401E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2456213,fr,1,3.950000E+00,7.819000E-01,5.032401E+01,2.750000E+01,Active Shallow Crust,2.400203E+02,5.800510E+01,0.000000E+00 +2456268,fr,1,4.450000E+00,7.819000E-01,5.032401E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2456316,fr,2,4.850000E+00,7.819000E-01,5.032401E+01,5.000000E+00,Active Shallow Crust,3.599999E+02,8.999009E+01,0.000000E+00 +2456364,fr,1,5.250000E+00,7.819000E-01,5.032401E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2456652,fr,1,3.650000E+00,3.808490E+00,4.946141E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999124E+01,0.000000E+00 +2456688,fr,1,3.950000E+00,3.808490E+00,4.946141E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +2456758,fr,1,4.450000E+00,3.808490E+00,4.946141E+01,1.500000E+01,Active Shallow Crust,1.288917E+02,8.999361E+01,0.000000E+00 +2457120,fr,1,3.550000E+00,1.337660E+00,4.665508E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +2457132,fr,1,3.650000E+00,1.337660E+00,4.665508E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +2457135,fr,1,3.650000E+00,1.337660E+00,4.665508E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801273E+01,0.000000E+00 +2457146,fr,1,3.750000E+00,1.337660E+00,4.665508E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +2457159,fr,1,3.850000E+00,1.337660E+00,4.665508E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799773E+01,0.000000E+00 +2457168,fr,1,3.950000E+00,1.337660E+00,4.665508E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2457182,fr,1,4.050000E+00,1.337660E+00,4.665508E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +2457204,fr,2,4.250000E+00,1.337660E+00,4.665508E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +2457205,fr,1,4.250000E+00,1.337660E+00,4.665508E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +2457206,fr,1,4.250000E+00,1.337660E+00,4.665508E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +2457228,fr,2,4.450000E+00,1.337660E+00,4.665508E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2457252,fr,1,4.650000E+00,1.337660E+00,4.665508E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2457600,fr,1,3.550000E+00,4.150250E+00,5.062538E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998721E+01,0.000000E+00 +2457601,fr,2,3.550000E+00,4.150250E+00,5.062538E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998721E+01,0.000000E+00 +2457602,fr,1,3.550000E+00,4.150250E+00,5.062538E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998721E+01,0.000000E+00 +2457612,fr,2,3.650000E+00,4.150250E+00,5.062538E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +2457613,fr,1,3.650000E+00,4.150250E+00,5.062538E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +2457624,fr,1,3.750000E+00,4.150250E+00,5.062538E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +2457625,fr,3,3.750000E+00,4.150250E+00,5.062538E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +2457630,fr,1,3.750000E+00,4.150250E+00,5.062538E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,-9.000000E+01 +2457635,fr,1,3.750000E+00,4.150250E+00,5.062538E+01,2.750000E+01,Active Shallow Crust,1.288964E+02,8.996756E+01,0.000000E+00 +2457636,fr,2,3.850000E+00,4.150250E+00,5.062538E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +2457637,fr,1,3.850000E+00,4.150250E+00,5.062538E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +2457651,fr,1,3.950000E+00,4.150250E+00,5.062538E+01,5.000000E+00,Active Shallow Crust,2.400203E+02,5.800504E+01,0.000000E+00 +2457660,fr,2,4.050000E+00,4.150250E+00,5.062538E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +2457669,fr,1,4.050000E+00,4.150250E+00,5.062538E+01,5.000000E+00,Active Shallow Crust,1.288895E+02,8.999461E+01,0.000000E+00 +2457672,fr,2,4.150000E+00,4.150250E+00,5.062538E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +2457675,fr,1,4.150000E+00,4.150250E+00,5.062538E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.799769E+01,0.000000E+00 +2457682,fr,1,4.150000E+00,4.150250E+00,5.062538E+01,1.500000E+01,Active Shallow Crust,1.288976E+02,8.999359E+01,0.000000E+00 +2457696,fr,1,4.350000E+00,4.150250E+00,5.062538E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2457697,fr,1,4.350000E+00,4.150250E+00,5.062538E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2457717,fr,1,4.450000E+00,4.150250E+00,5.062538E+01,5.000000E+00,Active Shallow Crust,1.288913E+02,8.999319E+01,0.000000E+00 +2457720,fr,1,4.550000E+00,4.150250E+00,5.062538E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2457723,fr,1,4.550000E+00,4.150250E+00,5.062538E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799755E+01,0.000000E+00 +2457732,fr,1,4.650000E+00,4.150250E+00,5.062538E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +2457780,fr,1,5.050000E+00,4.150250E+00,5.062538E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +2457900,fr,1,6.050000E+00,4.150251E+00,5.062538E+01,5.357596E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2458560,fr,1,3.550000E+00,4.976460E+00,4.154966E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999245E+01,0.000000E+00 +2458572,fr,1,3.650000E+00,4.976460E+00,4.154966E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999327E+01,0.000000E+00 +2458584,fr,1,3.750000E+00,4.976460E+00,4.154966E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998801E+01,0.000000E+00 +2458592,fr,1,3.750000E+00,4.976460E+00,4.154966E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998787E+01,-9.000000E+01 +2458612,fr,1,3.950000E+00,4.976460E+00,4.154966E+01,1.500000E+01,Active Shallow Crust,2.400188E+02,5.800421E+01,0.000000E+00 +2459100,fr,1,4.050000E+00,-6.610200E-01,5.116771E+01,5.000000E+00,Active Shallow Crust,3.599998E+02,8.999022E+01,0.000000E+00 +2459528,fr,1,3.550000E+00,5.493860E+00,4.703701E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999305E+01,-9.000000E+01 +2459536,fr,1,3.650000E+00,5.493860E+00,4.703701E+01,1.500000E+01,Active Shallow Crust,2.400017E+02,5.801289E+01,0.000000E+00 +2459544,fr,1,3.750000E+00,5.493860E+00,4.703701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998908E+01,0.000000E+00 +2459545,fr,1,3.750000E+00,5.493860E+00,4.703701E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998908E+01,0.000000E+00 +2459547,fr,1,3.750000E+00,5.493860E+00,4.703701E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.801734E+01,0.000000E+00 +2459550,fr,1,3.750000E+00,5.493860E+00,4.703701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,-9.000000E+01 +2459553,fr,1,3.750000E+00,5.493860E+00,4.703701E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.996750E+01,0.000000E+00 +2459568,fr,1,3.950000E+00,5.493860E+00,4.703701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +2459580,fr,1,4.050000E+00,5.493860E+00,4.703701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998840E+01,0.000000E+00 +2459640,fr,1,4.550000E+00,5.493860E+00,4.703701E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,0.000000E+00 +2460517,fr,1,3.850000E+00,3.029200E-01,4.510235E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +2460546,fr,1,4.050000E+00,3.029200E-01,4.510235E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +2460960,fr,1,3.550000E+00,5.197040E+00,5.064836E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998721E+01,0.000000E+00 +2460969,fr,1,3.550000E+00,5.197040E+00,5.064836E+01,5.000000E+00,Active Shallow Crust,1.288962E+02,8.999361E+01,0.000000E+00 +2460972,fr,1,3.650000E+00,5.197040E+00,5.064836E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998860E+01,0.000000E+00 +2460974,fr,2,3.650000E+00,5.197040E+00,5.064836E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998860E+01,0.000000E+00 +2460975,fr,1,3.650000E+00,5.197040E+00,5.064836E+01,5.000000E+00,Active Shallow Crust,2.400015E+02,5.801283E+01,0.000000E+00 +2460984,fr,2,3.750000E+00,5.197040E+00,5.064836E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2460988,fr,1,3.750000E+00,5.197040E+00,5.064836E+01,1.500000E+01,Active Shallow Crust,2.400090E+02,5.801759E+01,0.000000E+00 +2460995,fr,1,3.750000E+00,5.197040E+00,5.064836E+01,2.750000E+01,Active Shallow Crust,1.288957E+02,8.996756E+01,0.000000E+00 +2460998,fr,1,3.850000E+00,5.197040E+00,5.064836E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +2461008,fr,2,3.950000E+00,5.197040E+00,5.064836E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999193E+01,0.000000E+00 +2461021,fr,1,4.050000E+00,5.197040E+00,5.064836E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +2461022,fr,1,4.050000E+00,5.197040E+00,5.064836E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +2461032,fr,1,4.150000E+00,5.197040E+00,5.064836E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +2461058,fr,1,4.350000E+00,5.197040E+00,5.064836E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2461140,fr,1,5.050000E+00,5.197040E+00,5.064836E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +2461165,fr,1,5.250000E+00,5.197040E+00,5.064836E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2461440,fr,1,3.550000E+00,-1.242190E+00,4.592099E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +2461441,fr,1,3.550000E+00,-1.242190E+00,4.592099E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +2461443,fr,2,3.550000E+00,-1.242190E+00,4.592099E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799816E+01,0.000000E+00 +2461452,fr,1,3.650000E+00,-1.242190E+00,4.592099E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +2461460,fr,1,3.650000E+00,-1.242190E+00,4.592099E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999052E+01,-9.000000E+01 +2461464,fr,1,3.750000E+00,-1.242190E+00,4.592099E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +2461470,fr,1,3.750000E+00,-1.242190E+00,4.592099E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +2461473,fr,1,3.750000E+00,-1.242190E+00,4.592099E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.996735E+01,0.000000E+00 +2461475,fr,1,3.750000E+00,-1.242190E+00,4.592099E+01,2.750000E+01,Active Shallow Crust,1.288967E+02,8.996735E+01,0.000000E+00 +2461476,fr,1,3.850000E+00,-1.242190E+00,4.592099E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2461479,fr,1,3.850000E+00,-1.242190E+00,4.592099E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799774E+01,0.000000E+00 +2461494,fr,1,3.950000E+00,-1.242190E+00,4.592099E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,-9.000000E+01 +2461516,fr,1,4.150000E+00,-1.242190E+00,4.592099E+01,1.500000E+01,Active Shallow Crust,2.400084E+02,5.799719E+01,0.000000E+00 +2461523,fr,1,4.150000E+00,-1.242190E+00,4.592099E+01,2.750000E+01,Active Shallow Crust,1.288977E+02,8.999385E+01,0.000000E+00 +2461525,fr,1,4.250000E+00,-1.242190E+00,4.592099E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2461532,fr,1,4.250000E+00,-1.242190E+00,4.592099E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998970E+01,-9.000000E+01 +2461611,fr,1,4.950000E+00,-1.242190E+00,4.592099E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.800439E+01,0.000000E+00 +2461635,fr,2,5.150000E+00,-1.242190E+00,4.592099E+01,5.000000E+00,Active Shallow Crust,2.400193E+02,5.799993E+01,0.000000E+00 +2461656,fr,1,5.350000E+00,-1.242190E+00,4.592099E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2461716,fr,1,5.850000E+00,-1.242190E+00,4.592099E+01,5.000000E+00,Active Shallow Crust,3.599999E+02,8.999006E+01,0.000000E+00 +2461920,fr,1,3.550000E+00,1.079280E+00,4.218159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999066E+01,0.000000E+00 +2461932,fr,2,3.650000E+00,1.079280E+00,4.218159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2461944,fr,4,3.750000E+00,1.079280E+00,4.218159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +2461956,fr,1,3.850000E+00,1.079280E+00,4.218159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +2461964,fr,1,3.850000E+00,1.079280E+00,4.218159E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999064E+01,-9.000000E+01 +2461980,fr,1,4.050000E+00,1.079280E+00,4.218159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +2462017,fr,1,4.350000E+00,1.079280E+00,4.218159E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +2462023,fr,1,4.350000E+00,1.079280E+00,4.218159E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999022E+01,-9.000000E+01 +2462028,fr,1,4.450000E+00,1.079280E+00,4.218159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2462040,fr,1,4.550000E+00,1.079280E+00,4.218159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2462052,fr,1,4.650000E+00,1.079280E+00,4.218159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2462053,fr,1,4.650000E+00,1.079280E+00,4.218159E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2462100,fr,1,5.050000E+00,1.079280E+00,4.218159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2462136,fr,1,5.350000E+00,1.079280E+00,4.218159E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2462400,fr,1,3.550000E+00,2.041590E+00,4.405136E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998913E+01,0.000000E+00 +2462415,fr,1,3.650000E+00,2.041590E+00,4.405136E+01,5.000000E+00,Active Shallow Crust,2.400005E+02,5.801286E+01,0.000000E+00 +2462418,fr,1,3.650000E+00,2.041590E+00,4.405136E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,-9.000000E+01 +2462508,fr,2,4.450000E+00,2.041590E+00,4.405136E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +2462881,fr,1,3.550000E+00,8.324000E-02,4.950127E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2462896,fr,1,3.650000E+00,8.324000E-02,4.950127E+01,1.500000E+01,Active Shallow Crust,2.400014E+02,5.801297E+01,0.000000E+00 +2462898,fr,1,3.650000E+00,8.324000E-02,4.950127E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +2462904,fr,3,3.750000E+00,8.324000E-02,4.950127E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2462917,fr,1,3.850000E+00,8.324000E-02,4.950127E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2462928,fr,1,3.950000E+00,8.324000E-02,4.950127E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2462961,fr,1,4.150000E+00,8.324000E-02,4.950127E+01,5.000000E+00,Active Shallow Crust,1.288971E+02,8.999372E+01,0.000000E+00 +2462965,fr,1,4.250000E+00,8.324000E-02,4.950127E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2462982,fr,1,4.350000E+00,8.324000E-02,4.950127E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +2462983,fr,1,4.350000E+00,8.324000E-02,4.950127E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,-9.000000E+01 +2463015,fr,1,4.650000E+00,8.324000E-02,4.950127E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799442E+01,0.000000E+00 +2463039,fr,1,4.850000E+00,8.324000E-02,4.950127E+01,5.000000E+00,Active Shallow Crust,2.400184E+02,5.800256E+01,0.000000E+00 +2463165,fr,1,5.850000E+00,8.324000E-02,4.950127E+01,5.000000E+00,Active Shallow Crust,1.288639E+02,8.999152E+01,0.000000E+00 +2464800,fr,1,3.550000E+00,2.818980E+00,5.117038E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +2464812,fr,2,3.650000E+00,2.818980E+00,5.117038E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998873E+01,0.000000E+00 +2464824,fr,1,3.750000E+00,2.818980E+00,5.117038E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +2464850,fr,1,3.950000E+00,2.818980E+00,5.117038E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2465328,fr,1,3.950000E+00,1.947400E+00,5.217344E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +2465763,fr,1,3.550000E+00,-1.659190E+00,5.018765E+01,5.000000E+00,Active Shallow Crust,2.400126E+02,5.799829E+01,0.000000E+00 +2465772,fr,1,3.650000E+00,-1.659190E+00,5.018765E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2466241,fr,1,3.550000E+00,5.259250E+00,4.104443E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999239E+01,0.000000E+00 +2466253,fr,1,3.650000E+00,5.259250E+00,4.104443E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999323E+01,0.000000E+00 +2466260,fr,1,3.650000E+00,5.259250E+00,4.104443E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999314E+01,-9.000000E+01 +2466312,fr,1,4.150000E+00,5.259250E+00,4.104443E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998856E+01,0.000000E+00 +2466348,fr,1,4.450000E+00,5.259250E+00,4.104443E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +2466357,fr,1,4.450000E+00,5.259250E+00,4.104443E+01,5.000000E+00,Active Shallow Crust,1.288934E+02,8.999326E+01,0.000000E+00 +2466372,fr,1,4.650000E+00,5.259250E+00,4.104443E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998928E+01,0.000000E+00 +2466720,fr,1,3.550000E+00,6.944680E+00,4.552982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999294E+01,0.000000E+00 +2466735,fr,1,3.650000E+00,6.944680E+00,4.552982E+01,5.000000E+00,Active Shallow Crust,2.400011E+02,5.801350E+01,0.000000E+00 +2466744,fr,1,3.750000E+00,6.944680E+00,4.552982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998878E+01,0.000000E+00 +2466747,fr,1,3.750000E+00,6.944680E+00,4.552982E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.801739E+01,0.000000E+00 +2466766,fr,1,3.850000E+00,6.944680E+00,4.552982E+01,1.500000E+01,Active Shallow Crust,1.288960E+02,8.999500E+01,0.000000E+00 +2466792,fr,1,4.150000E+00,6.944680E+00,4.552982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998938E+01,0.000000E+00 +2466810,fr,1,4.250000E+00,6.944680E+00,4.552982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,-9.000000E+01 +2466852,fr,1,4.650000E+00,6.944680E+00,4.552982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2467200,fr,1,3.550000E+00,1.890530E+00,4.481756E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +2467201,fr,1,3.550000E+00,1.890530E+00,4.481756E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998927E+01,0.000000E+00 +2467206,fr,1,3.550000E+00,1.890530E+00,4.481756E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,-9.000000E+01 +2467212,fr,1,3.650000E+00,1.890530E+00,4.481756E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +2467213,fr,1,3.650000E+00,1.890530E+00,4.481756E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +2467251,fr,1,3.950000E+00,1.890530E+00,4.481756E+01,5.000000E+00,Active Shallow Crust,2.400194E+02,5.800504E+01,0.000000E+00 +2467260,fr,1,4.050000E+00,1.890530E+00,4.481756E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2467293,fr,1,4.250000E+00,1.890530E+00,4.481756E+01,5.000000E+00,Active Shallow Crust,1.288945E+02,8.998101E+01,0.000000E+00 +2467294,fr,1,4.250000E+00,1.890530E+00,4.481756E+01,1.500000E+01,Active Shallow Crust,1.288945E+02,8.998101E+01,0.000000E+00 +2467298,fr,1,4.350000E+00,1.890530E+00,4.481756E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2467508,fr,1,6.050000E+00,1.890530E+00,4.481756E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,-9.000000E+01 +2467704,fr,1,3.750000E+00,3.623600E-01,5.212262E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2467716,fr,1,3.850000E+00,3.623600E-01,5.212262E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +2467862,fr,1,5.050000E+00,3.623600E-01,5.212262E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2467873,fr,1,5.150000E+00,3.623600E-01,5.212262E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2468160,fr,2,3.550000E+00,1.821030E+00,4.575064E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998945E+01,0.000000E+00 +2468167,fr,1,3.550000E+00,1.821030E+00,4.575064E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,-9.000000E+01 +2468172,fr,2,3.650000E+00,1.821030E+00,4.575064E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +2468176,fr,1,3.650000E+00,1.821030E+00,4.575064E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801257E+01,0.000000E+00 +2468203,fr,1,3.850000E+00,1.821030E+00,4.575064E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,-9.000000E+01 +2468220,fr,1,4.050000E+00,1.821030E+00,4.575064E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2468221,fr,1,4.050000E+00,1.821030E+00,4.575064E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2468232,fr,1,4.150000E+00,1.821030E+00,4.575064E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +2468235,fr,1,4.150000E+00,1.821030E+00,4.575064E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799743E+01,0.000000E+00 +2468256,fr,1,4.350000E+00,1.821030E+00,4.575064E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2468506,fr,1,6.350000E+00,1.821030E+00,4.575064E+01,1.500000E+01,Active Shallow Crust,1.288452E+02,8.999103E+01,0.000000E+00 +2468664,fr,1,3.750000E+00,2.525990E+00,4.869844E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +2468775,fr,1,4.650000E+00,2.525990E+00,4.869844E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799434E+01,0.000000E+00 +2469144,fr,1,3.750000E+00,-5.569680E+00,4.972433E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +2469600,fr,3,3.550000E+00,-1.976050E+00,4.240792E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999069E+01,0.000000E+00 +2469613,fr,1,3.650000E+00,-1.976050E+00,4.240792E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2469624,fr,1,3.750000E+00,-1.976050E+00,4.240792E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +2469631,fr,1,3.750000E+00,-1.976050E+00,4.240792E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998953E+01,-9.000000E+01 +2469634,fr,1,3.750000E+00,-1.976050E+00,4.240792E+01,1.500000E+01,Active Shallow Crust,1.288972E+02,8.996728E+01,0.000000E+00 +2469637,fr,1,3.850000E+00,-1.976050E+00,4.240792E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +2469660,fr,1,4.050000E+00,-1.976050E+00,4.240792E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +2469705,fr,1,4.350000E+00,-1.976050E+00,4.240792E+01,5.000000E+00,Active Shallow Crust,1.288986E+02,8.998275E+01,0.000000E+00 +2470080,fr,1,3.550000E+00,-5.550650E+00,4.931868E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998685E+01,0.000000E+00 +2470128,fr,1,3.950000E+00,-5.550650E+00,4.931868E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999171E+01,0.000000E+00 +2470308,fr,1,5.450000E+00,-5.550650E+00,4.931868E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +2470560,fr,1,3.550000E+00,-8.532000E-01,4.744121E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +2470561,fr,1,3.550000E+00,-8.532000E-01,4.744121E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +2470567,fr,1,3.550000E+00,-8.532000E-01,4.744121E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,-9.000000E+01 +2470572,fr,4,3.650000E+00,-8.532000E-01,4.744121E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +2470574,fr,1,3.650000E+00,-8.532000E-01,4.744121E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +2470576,fr,1,3.650000E+00,-8.532000E-01,4.744121E+01,1.500000E+01,Active Shallow Crust,2.400012E+02,5.801300E+01,0.000000E+00 +2470582,fr,1,3.650000E+00,-8.532000E-01,4.744121E+01,1.500000E+01,Active Shallow Crust,1.289004E+02,8.996348E+01,0.000000E+00 +2470584,fr,3,3.750000E+00,-8.532000E-01,4.744121E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2470586,fr,1,3.750000E+00,-8.532000E-01,4.744121E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2470587,fr,1,3.750000E+00,-8.532000E-01,4.744121E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801759E+01,0.000000E+00 +2470590,fr,1,3.750000E+00,-8.532000E-01,4.744121E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,-9.000000E+01 +2470597,fr,1,3.850000E+00,-8.532000E-01,4.744121E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +2470599,fr,1,3.850000E+00,-8.532000E-01,4.744121E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799774E+01,0.000000E+00 +2470614,fr,1,3.950000E+00,-8.532000E-01,4.744121E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,-9.000000E+01 +2470632,fr,2,4.150000E+00,-8.532000E-01,4.744121E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2470647,fr,2,4.250000E+00,-8.532000E-01,4.744121E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.799405E+01,0.000000E+00 +2470656,fr,1,4.350000E+00,-8.532000E-01,4.744121E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +2470665,fr,1,4.350000E+00,-8.532000E-01,4.744121E+01,5.000000E+00,Active Shallow Crust,1.288977E+02,8.998276E+01,0.000000E+00 +2470666,fr,1,4.350000E+00,-8.532000E-01,4.744121E+01,1.500000E+01,Active Shallow Crust,1.288977E+02,8.998276E+01,0.000000E+00 +2470680,fr,1,4.550000E+00,-8.532000E-01,4.744121E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2470714,fr,1,4.750000E+00,-8.532000E-01,4.744121E+01,1.500000E+01,Active Shallow Crust,1.288884E+02,8.998806E+01,0.000000E+00 +2470755,fr,1,5.150000E+00,-8.532000E-01,4.744121E+01,5.000000E+00,Active Shallow Crust,2.400202E+02,5.800006E+01,0.000000E+00 +2470848,fr,1,5.950000E+00,-8.532000E-01,4.744121E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2471040,fr,2,3.550000E+00,8.315970E+00,4.515683E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998578E+01,0.000000E+00 +2471055,fr,2,3.650000E+00,8.315970E+00,4.515683E+01,5.000000E+00,Active Shallow Crust,2.400019E+02,5.801126E+01,0.000000E+00 +2471064,fr,1,3.750000E+00,8.315970E+00,4.515683E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998870E+01,0.000000E+00 +2471068,fr,1,3.750000E+00,8.315970E+00,4.515683E+01,1.500000E+01,Active Shallow Crust,2.400108E+02,5.801675E+01,0.000000E+00 +2471074,fr,1,3.750000E+00,8.315970E+00,4.515683E+01,1.500000E+01,Active Shallow Crust,1.288958E+02,8.996747E+01,0.000000E+00 +2471088,fr,1,3.950000E+00,8.315970E+00,4.515683E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999103E+01,0.000000E+00 +2471124,fr,1,4.250000E+00,8.315970E+00,4.515683E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998730E+01,0.000000E+00 +2471186,fr,1,4.750000E+00,8.315970E+00,4.515683E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998928E+01,0.000000E+00 +2471244,fr,1,5.250000E+00,8.315970E+00,4.515683E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +2471257,fr,1,5.350000E+00,8.315970E+00,4.515683E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +2471520,fr,1,3.550000E+00,9.083250E+00,4.986269E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998700E+01,0.000000E+00 +2471529,fr,1,3.550000E+00,9.083250E+00,4.986269E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999350E+01,0.000000E+00 +2471532,fr,1,3.650000E+00,9.083250E+00,4.986269E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998841E+01,0.000000E+00 +2471544,fr,1,3.750000E+00,9.083250E+00,4.986269E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +2471545,fr,1,3.750000E+00,9.083250E+00,4.986269E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +2471556,fr,1,3.850000E+00,9.083250E+00,4.986269E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999080E+01,0.000000E+00 +2471565,fr,1,3.850000E+00,9.083250E+00,4.986269E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.999540E+01,0.000000E+00 +2471574,fr,1,3.950000E+00,9.083250E+00,4.986269E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999170E+01,-9.000000E+01 +2471592,fr,1,4.150000E+00,9.083250E+00,4.986269E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998697E+01,0.000000E+00 +2471714,fr,1,5.150000E+00,9.083250E+00,4.986269E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2471736,fr,1,5.350000E+00,9.083250E+00,4.986269E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2472003,fr,1,3.550000E+00,3.556970E+00,4.202514E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799850E+01,0.000000E+00 +2472013,fr,1,3.650000E+00,3.556970E+00,4.202514E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2472024,fr,1,3.750000E+00,3.556970E+00,4.202514E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +2472025,fr,1,3.750000E+00,3.556970E+00,4.202514E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999107E+01,0.000000E+00 +2472048,fr,1,3.950000E+00,3.556970E+00,4.202514E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +2472117,fr,1,4.450000E+00,3.556970E+00,4.202514E+01,5.000000E+00,Active Shallow Crust,1.288932E+02,8.999402E+01,0.000000E+00 +2472132,fr,1,4.650000E+00,3.556970E+00,4.202514E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +2472480,fr,1,3.550000E+00,-9.579400E-01,4.877314E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2472483,fr,1,3.550000E+00,-9.579400E-01,4.877314E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799824E+01,0.000000E+00 +2472486,fr,1,3.550000E+00,-9.579400E-01,4.877314E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +2472487,fr,1,3.550000E+00,-9.579400E-01,4.877314E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +2472492,fr,2,3.650000E+00,-9.579400E-01,4.877314E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +2472493,fr,2,3.650000E+00,-9.579400E-01,4.877314E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +2472497,fr,1,3.650000E+00,-9.579400E-01,4.877314E+01,2.750000E+01,Active Shallow Crust,2.400015E+02,5.801279E+01,0.000000E+00 +2472504,fr,1,3.750000E+00,-9.579400E-01,4.877314E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2472513,fr,1,3.750000E+00,-9.579400E-01,4.877314E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.996735E+01,0.000000E+00 +2472525,fr,1,3.850000E+00,-9.579400E-01,4.877314E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.999383E+01,0.000000E+00 +2472543,fr,1,4.050000E+00,-9.579400E-01,4.877314E+01,5.000000E+00,Active Shallow Crust,2.400064E+02,5.800590E+01,0.000000E+00 +2472587,fr,1,4.350000E+00,-9.579400E-01,4.877314E+01,2.750000E+01,Active Shallow Crust,1.288973E+02,8.998276E+01,0.000000E+00 +2472596,fr,1,4.450000E+00,-9.579400E-01,4.877314E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998986E+01,-9.000000E+01 +2472600,fr,2,4.550000E+00,-9.579400E-01,4.877314E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2472708,fr,1,5.450000E+00,-9.579400E-01,4.877314E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2472960,fr,1,3.550000E+00,3.230050E+00,4.035520E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998847E+01,0.000000E+00 +2472973,fr,1,3.650000E+00,3.230050E+00,4.035520E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +2473033,fr,1,4.150000E+00,3.230050E+00,4.035520E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +2473044,fr,1,4.250000E+00,3.230050E+00,4.035520E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +2473440,fr,1,3.550000E+00,1.993000E+00,4.814982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2473452,fr,1,3.650000E+00,1.993000E+00,4.814982E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +2473588,fr,1,4.750000E+00,1.993000E+00,4.814982E+01,1.500000E+01,Active Shallow Crust,2.400082E+02,5.800455E+01,0.000000E+00 +2473945,fr,1,3.750000E+00,-5.892070E+00,4.859876E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +2474401,fr,1,3.550000E+00,3.018550E+00,5.244951E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +2474402,fr,1,3.550000E+00,3.018550E+00,5.244951E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999078E+01,0.000000E+00 +2474545,fr,1,4.750000E+00,3.018550E+00,5.244951E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2474880,fr,1,3.550000E+00,5.336370E+00,5.115736E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998735E+01,0.000000E+00 +2474885,fr,1,3.550000E+00,5.336370E+00,5.115736E+01,2.750000E+01,Active Shallow Crust,2.400130E+02,5.799775E+01,0.000000E+00 +2474893,fr,1,3.650000E+00,5.336370E+00,5.115736E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +2474895,fr,1,3.650000E+00,5.336370E+00,5.115736E+01,5.000000E+00,Active Shallow Crust,2.400024E+02,5.801231E+01,0.000000E+00 +2474904,fr,1,3.750000E+00,5.336370E+00,5.115736E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +2474905,fr,1,3.750000E+00,5.336370E+00,5.115736E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +2474925,fr,1,3.850000E+00,5.336370E+00,5.115736E+01,5.000000E+00,Active Shallow Crust,1.288950E+02,8.999552E+01,0.000000E+00 +2474928,fr,1,3.950000E+00,5.336370E+00,5.115736E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998803E+01,0.000000E+00 +2474952,fr,1,4.150000E+00,5.336370E+00,5.115736E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +2474954,fr,1,4.150000E+00,5.336370E+00,5.115736E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +2474959,fr,1,4.150000E+00,5.336370E+00,5.115736E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999038E+01,-9.000000E+01 +2475030,fr,1,4.750000E+00,5.336370E+00,5.115736E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,-9.000000E+01 +2475039,fr,1,4.850000E+00,5.336370E+00,5.115736E+01,5.000000E+00,Active Shallow Crust,2.400191E+02,5.800288E+01,0.000000E+00 +2475362,fr,1,3.550000E+00,7.038300E-01,4.105163E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +2475369,fr,1,3.550000E+00,7.038300E-01,4.105163E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999382E+01,0.000000E+00 +2475372,fr,2,3.650000E+00,7.038300E-01,4.105163E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +2475412,fr,1,3.950000E+00,7.038300E-01,4.105163E+01,1.500000E+01,Active Shallow Crust,2.400191E+02,5.800483E+01,0.000000E+00 +2475420,fr,1,4.050000E+00,7.038300E-01,4.105163E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2475436,fr,1,4.150000E+00,7.038300E-01,4.105163E+01,1.500000E+01,Active Shallow Crust,2.400076E+02,5.799710E+01,0.000000E+00 +2475840,fr,1,3.550000E+00,6.863820E+00,4.759460E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999320E+01,0.000000E+00 +2475843,fr,1,3.550000E+00,6.863820E+00,4.759460E+01,5.000000E+00,Active Shallow Crust,2.400126E+02,5.799790E+01,0.000000E+00 +2475852,fr,2,3.650000E+00,6.863820E+00,4.759460E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998788E+01,0.000000E+00 +2475854,fr,1,3.650000E+00,6.863820E+00,4.759460E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998788E+01,0.000000E+00 +2475864,fr,1,3.750000E+00,6.863820E+00,4.759460E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +2475865,fr,2,3.750000E+00,6.863820E+00,4.759460E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +2475867,fr,1,3.750000E+00,6.863820E+00,4.759460E+01,5.000000E+00,Active Shallow Crust,2.400078E+02,5.801735E+01,0.000000E+00 +2475873,fr,1,3.750000E+00,6.863820E+00,4.759460E+01,5.000000E+00,Active Shallow Crust,1.288974E+02,8.996696E+01,0.000000E+00 +2475876,fr,3,3.850000E+00,6.863820E+00,4.759460E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +2475878,fr,1,3.850000E+00,6.863820E+00,4.759460E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +2475900,fr,1,4.050000E+00,6.863820E+00,4.759460E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998853E+01,0.000000E+00 +2475903,fr,3,4.050000E+00,6.863820E+00,4.759460E+01,5.000000E+00,Active Shallow Crust,2.400056E+02,5.800615E+01,0.000000E+00 +2475912,fr,2,4.150000E+00,6.863820E+00,4.759460E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +2475939,fr,1,4.350000E+00,6.863820E+00,4.759460E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.799611E+01,0.000000E+00 +2475960,fr,1,4.550000E+00,6.863820E+00,4.759460E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998925E+01,0.000000E+00 +2475974,fr,1,4.650000E+00,6.863820E+00,4.759460E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999042E+01,0.000000E+00 +2475975,fr,1,4.650000E+00,6.863820E+00,4.759460E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799456E+01,0.000000E+00 +2476008,fr,1,4.950000E+00,6.863820E+00,4.759460E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +2476800,fr,2,3.550000E+00,2.955830E+00,4.193507E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998875E+01,0.000000E+00 +2476807,fr,1,3.550000E+00,2.955830E+00,4.193507E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998862E+01,-9.000000E+01 +2476818,fr,1,3.650000E+00,2.955830E+00,4.193507E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +2476824,fr,2,3.750000E+00,2.955830E+00,4.193507E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999106E+01,0.000000E+00 +2476830,fr,2,3.750000E+00,2.955830E+00,4.193507E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999096E+01,-9.000000E+01 +2476841,fr,1,3.850000E+00,2.955830E+00,4.193507E+01,2.750000E+01,Active Shallow Crust,2.400103E+02,5.799791E+01,0.000000E+00 +2476842,fr,1,3.850000E+00,2.955830E+00,4.193507E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998926E+01,-9.000000E+01 +2476845,fr,1,3.850000E+00,2.955830E+00,4.193507E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999336E+01,0.000000E+00 +2476848,fr,1,3.950000E+00,2.955830E+00,4.193507E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +2476857,fr,1,3.950000E+00,2.955830E+00,4.193507E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.999409E+01,0.000000E+00 +2476860,fr,1,4.050000E+00,2.955830E+00,4.193507E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +2476861,fr,1,4.050000E+00,2.955830E+00,4.193507E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +2476908,fr,1,4.450000E+00,2.955830E+00,4.193507E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998935E+01,0.000000E+00 +2476920,fr,1,4.550000E+00,2.955830E+00,4.193507E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999051E+01,0.000000E+00 +2476962,fr,1,4.850000E+00,2.955830E+00,4.193507E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,-9.000000E+01 +2476984,fr,1,5.050000E+00,2.955830E+00,4.193507E+01,1.500000E+01,Active Shallow Crust,2.400200E+02,5.799716E+01,0.000000E+00 +2477280,fr,2,3.550000E+00,-1.846760E+00,4.749645E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +2477283,fr,1,3.550000E+00,-1.846760E+00,4.749645E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799812E+01,0.000000E+00 +2477292,fr,1,3.650000E+00,-1.846760E+00,4.749645E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +2477305,fr,1,3.750000E+00,-1.846760E+00,4.749645E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999053E+01,0.000000E+00 +2477311,fr,1,3.750000E+00,-1.846760E+00,4.749645E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999042E+01,-9.000000E+01 +2477314,fr,1,3.750000E+00,-1.846760E+00,4.749645E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.996739E+01,0.000000E+00 +2477331,fr,1,3.950000E+00,-1.846760E+00,4.749645E+01,5.000000E+00,Active Shallow Crust,2.400197E+02,5.800504E+01,0.000000E+00 +2477338,fr,1,3.950000E+00,-1.846760E+00,4.749645E+01,1.500000E+01,Active Shallow Crust,1.289001E+02,8.999409E+01,0.000000E+00 +2477343,fr,1,4.050000E+00,-1.846760E+00,4.749645E+01,5.000000E+00,Active Shallow Crust,2.400061E+02,5.800586E+01,0.000000E+00 +2477352,fr,1,4.150000E+00,-1.846760E+00,4.749645E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2477353,fr,1,4.150000E+00,-1.846760E+00,4.749645E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2477364,fr,2,4.250000E+00,-1.846760E+00,4.749645E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +2477388,fr,1,4.450000E+00,-1.846760E+00,4.749645E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998972E+01,0.000000E+00 +2477394,fr,1,4.450000E+00,-1.846760E+00,4.749645E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,-9.000000E+01 +2477400,fr,2,4.550000E+00,-1.846760E+00,4.749645E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +2477412,fr,1,4.650000E+00,-1.846760E+00,4.749645E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2477454,fr,1,4.950000E+00,-1.846760E+00,4.749645E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,-9.000000E+01 +2478252,fr,2,3.650000E+00,2.276850E+00,5.167001E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998885E+01,0.000000E+00 +2478264,fr,2,3.750000E+00,2.276850E+00,5.167001E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2478286,fr,1,3.850000E+00,2.276850E+00,5.167001E+01,1.500000E+01,Active Shallow Crust,1.288951E+02,8.999447E+01,0.000000E+00 +2478345,fr,1,4.350000E+00,2.276850E+00,5.167001E+01,5.000000E+00,Active Shallow Crust,1.288970E+02,8.998278E+01,0.000000E+00 +2478721,fr,1,3.550000E+00,6.687210E+00,4.351364E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999268E+01,0.000000E+00 +2478744,fr,1,3.750000E+00,6.687210E+00,4.351364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998838E+01,0.000000E+00 +2478769,fr,1,3.950000E+00,6.687210E+00,4.351364E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999077E+01,0.000000E+00 +2478777,fr,1,3.950000E+00,6.687210E+00,4.351364E+01,5.000000E+00,Active Shallow Crust,1.289013E+02,8.999308E+01,0.000000E+00 +2478798,fr,1,4.150000E+00,6.687210E+00,4.351364E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998888E+01,-9.000000E+01 +2478825,fr,1,4.350000E+00,6.687210E+00,4.351364E+01,5.000000E+00,Active Shallow Crust,1.288979E+02,8.998292E+01,0.000000E+00 +2479212,fr,1,3.650000E+00,-1.198000E-01,4.465968E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2479213,fr,1,3.650000E+00,-1.198000E-01,4.465968E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2479240,fr,1,3.850000E+00,-1.198000E-01,4.465968E+01,1.500000E+01,Active Shallow Crust,2.400106E+02,5.799776E+01,0.000000E+00 +2479305,fr,1,4.350000E+00,-1.198000E-01,4.465968E+01,5.000000E+00,Active Shallow Crust,1.288982E+02,8.998276E+01,0.000000E+00 +2479692,fr,1,3.650000E+00,4.530010E+00,4.175954E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999329E+01,0.000000E+00 +2480161,fr,1,3.550000E+00,2.579140E+00,5.013260E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +2480184,fr,1,3.750000E+00,2.579140E+00,5.013260E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +2480185,fr,1,3.750000E+00,2.579140E+00,5.013260E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +2480186,fr,2,3.750000E+00,2.579140E+00,5.013260E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +2480196,fr,1,3.850000E+00,2.579140E+00,5.013260E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +2480208,fr,1,3.950000E+00,2.579140E+00,5.013260E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2480209,fr,1,3.950000E+00,2.579140E+00,5.013260E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2480221,fr,1,4.050000E+00,2.579140E+00,5.013260E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +2480223,fr,1,4.050000E+00,2.579140E+00,5.013260E+01,5.000000E+00,Active Shallow Crust,2.400066E+02,5.800591E+01,0.000000E+00 +2480233,fr,1,4.150000E+00,2.579140E+00,5.013260E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +2480274,fr,1,4.450000E+00,2.579140E+00,5.013260E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998956E+01,-9.000000E+01 +2480342,fr,1,5.050000E+00,2.579140E+00,5.013260E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2480640,fr,1,3.550000E+00,9.936500E-01,5.137228E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +2480641,fr,1,3.550000E+00,9.936500E-01,5.137228E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +2480643,fr,1,3.550000E+00,9.936500E-01,5.137228E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.799818E+01,0.000000E+00 +2480676,fr,1,3.850000E+00,9.936500E-01,5.137228E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2480688,fr,1,3.950000E+00,9.936500E-01,5.137228E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2480724,fr,2,4.250000E+00,9.936500E-01,5.137228E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +2480760,fr,1,4.550000E+00,9.936500E-01,5.137228E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2480787,fr,1,4.750000E+00,9.936500E-01,5.137228E+01,5.000000E+00,Active Shallow Crust,2.400095E+02,5.800480E+01,0.000000E+00 +2481123,fr,2,3.550000E+00,-4.494640E+00,4.928854E+01,5.000000E+00,Active Shallow Crust,2.400128E+02,5.799852E+01,0.000000E+00 +2481132,fr,2,3.650000E+00,-4.494640E+00,4.928854E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998827E+01,0.000000E+00 +2481142,fr,1,3.650000E+00,-4.494640E+00,4.928854E+01,1.500000E+01,Active Shallow Crust,1.289003E+02,8.996358E+01,0.000000E+00 +2481144,fr,1,3.750000E+00,-4.494640E+00,4.928854E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998955E+01,0.000000E+00 +2481184,fr,1,4.050000E+00,-4.494640E+00,4.928854E+01,1.500000E+01,Active Shallow Crust,2.400067E+02,5.800557E+01,0.000000E+00 +2481186,fr,1,4.050000E+00,-4.494640E+00,4.928854E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998878E+01,-9.000000E+01 +2481205,fr,1,4.250000E+00,-4.494640E+00,4.928854E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999119E+01,0.000000E+00 +2481600,fr,1,3.550000E+00,5.527480E+00,4.548418E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999293E+01,0.000000E+00 +2481601,fr,1,3.550000E+00,5.527480E+00,4.548418E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999293E+01,0.000000E+00 +2481603,fr,1,3.550000E+00,5.527480E+00,4.548418E+01,5.000000E+00,Active Shallow Crust,2.400115E+02,5.799900E+01,0.000000E+00 +2481606,fr,1,3.550000E+00,5.527480E+00,4.548418E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999285E+01,-9.000000E+01 +2481611,fr,1,3.550000E+00,5.527480E+00,4.548418E+01,2.750000E+01,Active Shallow Crust,1.288956E+02,8.999647E+01,0.000000E+00 +2481613,fr,1,3.650000E+00,5.527480E+00,4.548418E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998740E+01,0.000000E+00 +2481624,fr,4,3.750000E+00,5.527480E+00,4.548418E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998877E+01,0.000000E+00 +2481627,fr,1,3.750000E+00,5.527480E+00,4.548418E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.801693E+01,0.000000E+00 +2481630,fr,1,3.750000E+00,5.527480E+00,4.548418E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998864E+01,-9.000000E+01 +2481639,fr,1,3.850000E+00,5.527480E+00,4.548418E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799685E+01,0.000000E+00 +2481648,fr,1,3.950000E+00,5.527480E+00,4.548418E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999108E+01,0.000000E+00 +2481651,fr,2,3.950000E+00,5.527480E+00,4.548418E+01,5.000000E+00,Active Shallow Crust,2.400190E+02,5.800518E+01,0.000000E+00 +2481652,fr,1,3.950000E+00,5.527480E+00,4.548418E+01,1.500000E+01,Active Shallow Crust,2.400190E+02,5.800518E+01,0.000000E+00 +2481660,fr,2,4.050000E+00,5.527480E+00,4.548418E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998808E+01,0.000000E+00 +2481672,fr,1,4.150000E+00,5.527480E+00,4.548418E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998937E+01,0.000000E+00 +2481681,fr,1,4.150000E+00,5.527480E+00,4.548418E+01,5.000000E+00,Active Shallow Crust,1.288973E+02,8.999468E+01,0.000000E+00 +2481693,fr,1,4.250000E+00,5.527480E+00,4.548418E+01,5.000000E+00,Active Shallow Crust,1.288952E+02,8.998091E+01,0.000000E+00 +2481793,fr,1,5.150000E+00,5.527480E+00,4.548418E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2481801,fr,1,5.150000E+00,5.527480E+00,4.548418E+01,5.000000E+00,Active Shallow Crust,1.288840E+02,8.999112E+01,0.000000E+00 +2482081,fr,1,3.550000E+00,-2.555260E+00,5.052316E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +2482140,fr,1,4.050000E+00,-2.555260E+00,5.052316E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +2482249,fr,1,4.950000E+00,-2.555260E+00,5.052316E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +2482632,fr,1,4.150000E+00,3.511880E+00,5.220270E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999071E+01,0.000000E+00 +2483061,fr,1,3.650000E+00,-2.706240E+00,5.024633E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.996334E+01,0.000000E+00 +2483065,fr,1,3.750000E+00,-2.706240E+00,5.024633E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2483067,fr,1,3.750000E+00,-2.706240E+00,5.024633E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.801750E+01,0.000000E+00 +2483521,fr,1,3.550000E+00,6.269060E+00,4.636105E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999304E+01,0.000000E+00 +2483523,fr,2,3.550000E+00,6.269060E+00,4.636105E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799814E+01,0.000000E+00 +2483524,fr,1,3.550000E+00,6.269060E+00,4.636105E+01,1.500000E+01,Active Shallow Crust,2.400122E+02,5.799814E+01,0.000000E+00 +2483528,fr,1,3.550000E+00,6.269060E+00,4.636105E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999296E+01,-9.000000E+01 +2483529,fr,2,3.550000E+00,6.269060E+00,4.636105E+01,5.000000E+00,Active Shallow Crust,1.288955E+02,8.999304E+01,0.000000E+00 +2483532,fr,5,3.650000E+00,6.269060E+00,4.636105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998759E+01,0.000000E+00 +2483534,fr,1,3.650000E+00,6.269060E+00,4.636105E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998759E+01,0.000000E+00 +2483541,fr,1,3.650000E+00,6.269060E+00,4.636105E+01,5.000000E+00,Active Shallow Crust,1.289012E+02,8.996352E+01,0.000000E+00 +2483542,fr,1,3.650000E+00,6.269060E+00,4.636105E+01,1.500000E+01,Active Shallow Crust,1.289012E+02,8.996352E+01,0.000000E+00 +2483544,fr,4,3.750000E+00,6.269060E+00,4.636105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +2483547,fr,2,3.750000E+00,6.269060E+00,4.636105E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.801828E+01,0.000000E+00 +2483556,fr,1,3.850000E+00,6.269060E+00,4.636105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2483557,fr,1,3.850000E+00,6.269060E+00,4.636105E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2483558,fr,1,3.850000E+00,6.269060E+00,4.636105E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2483568,fr,3,3.950000E+00,6.269060E+00,4.636105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999122E+01,0.000000E+00 +2483569,fr,1,3.950000E+00,6.269060E+00,4.636105E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999122E+01,0.000000E+00 +2483580,fr,1,4.050000E+00,6.269060E+00,4.636105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998826E+01,0.000000E+00 +2483592,fr,2,4.150000E+00,6.269060E+00,4.636105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +2483593,fr,1,4.150000E+00,6.269060E+00,4.636105E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998953E+01,0.000000E+00 +2483604,fr,1,4.250000E+00,6.269060E+00,4.636105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999068E+01,0.000000E+00 +2483616,fr,1,4.350000E+00,6.269060E+00,4.636105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +2483617,fr,1,4.350000E+00,6.269060E+00,4.636105E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +2483628,fr,1,4.450000E+00,6.269060E+00,4.636105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +2483634,fr,2,4.450000E+00,6.269060E+00,4.636105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +2483640,fr,1,4.550000E+00,6.269060E+00,4.636105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998900E+01,0.000000E+00 +2483679,fr,1,4.850000E+00,6.269060E+00,4.636105E+01,5.000000E+00,Active Shallow Crust,2.400170E+02,5.800244E+01,0.000000E+00 +2483690,fr,1,4.950000E+00,6.269060E+00,4.636105E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +2483691,fr,1,4.950000E+00,6.269060E+00,4.636105E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.800456E+01,0.000000E+00 +2483760,fr,1,5.550000E+00,6.269060E+00,4.636105E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +2484000,fr,1,3.550000E+00,-8.144200E-01,4.636474E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +2484001,fr,1,3.550000E+00,-8.144200E-01,4.636474E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +2484005,fr,1,3.550000E+00,-8.144200E-01,4.636474E+01,2.750000E+01,Active Shallow Crust,2.400123E+02,5.799811E+01,0.000000E+00 +2484012,fr,1,3.650000E+00,-8.144200E-01,4.636474E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +2484018,fr,1,3.650000E+00,-8.144200E-01,4.636474E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,-9.000000E+01 +2484024,fr,2,3.750000E+00,-8.144200E-01,4.636474E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +2484028,fr,1,3.750000E+00,-8.144200E-01,4.636474E+01,1.500000E+01,Active Shallow Crust,2.400085E+02,5.801754E+01,0.000000E+00 +2484036,fr,2,3.850000E+00,-8.144200E-01,4.636474E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +2484037,fr,1,3.850000E+00,-8.144200E-01,4.636474E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +2484058,fr,1,3.950000E+00,-8.144200E-01,4.636474E+01,1.500000E+01,Active Shallow Crust,1.289003E+02,8.999369E+01,0.000000E+00 +2484062,fr,1,4.050000E+00,-8.144200E-01,4.636474E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +2484195,fr,1,5.150000E+00,-8.144200E-01,4.636474E+01,5.000000E+00,Active Shallow Crust,2.400196E+02,5.799997E+01,0.000000E+00 +2484480,fr,1,3.550000E+00,5.729870E+00,4.419354E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999277E+01,0.000000E+00 +2484492,fr,1,3.650000E+00,5.729870E+00,4.419354E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998711E+01,0.000000E+00 +2484496,fr,1,3.650000E+00,5.729870E+00,4.419354E+01,1.500000E+01,Active Shallow Crust,2.400004E+02,5.801262E+01,0.000000E+00 +2484504,fr,1,3.750000E+00,5.729870E+00,4.419354E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998851E+01,0.000000E+00 +2484513,fr,1,3.750000E+00,5.729870E+00,4.419354E+01,5.000000E+00,Active Shallow Crust,1.288971E+02,8.996745E+01,0.000000E+00 +2484516,fr,1,3.850000E+00,5.729870E+00,4.419354E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +2484552,fr,1,4.150000E+00,5.729870E+00,4.419354E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998913E+01,0.000000E+00 +2484555,fr,1,4.150000E+00,5.729870E+00,4.419354E+01,5.000000E+00,Active Shallow Crust,2.400086E+02,5.799694E+01,0.000000E+00 +2484565,fr,1,4.250000E+00,5.729870E+00,4.419354E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +2485444,fr,1,3.550000E+00,1.465550E+00,4.330220E+01,1.500000E+01,Active Shallow Crust,2.400119E+02,5.799792E+01,0.000000E+00 +2485479,fr,1,3.850000E+00,1.465550E+00,4.330220E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.799756E+01,0.000000E+00 +2485488,fr,1,3.950000E+00,1.465550E+00,4.330220E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +2485527,fr,1,4.250000E+00,1.465550E+00,4.330220E+01,5.000000E+00,Active Shallow Crust,2.400070E+02,5.799391E+01,0.000000E+00 +2485536,fr,2,4.350000E+00,1.465550E+00,4.330220E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +2486899,fr,1,3.650000E+00,-1.185390E+00,4.835600E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,-9.000000E+01 +2486904,fr,1,3.750000E+00,-1.185390E+00,4.835600E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +2486908,fr,1,3.750000E+00,-1.185390E+00,4.835600E+01,1.500000E+01,Active Shallow Crust,2.400087E+02,5.801764E+01,0.000000E+00 +2486910,fr,1,3.750000E+00,-1.185390E+00,4.835600E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999058E+01,-9.000000E+01 +2486928,fr,1,3.950000E+00,-1.185390E+00,4.835600E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +2486929,fr,1,3.950000E+00,-1.185390E+00,4.835600E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999049E+01,0.000000E+00 +2486935,fr,1,3.950000E+00,-1.185390E+00,4.835600E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999038E+01,-9.000000E+01 +2486953,fr,1,4.150000E+00,-1.185390E+00,4.835600E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +2486965,fr,1,4.250000E+00,-1.185390E+00,4.835600E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999027E+01,0.000000E+00 +2486976,fr,1,4.350000E+00,-1.185390E+00,4.835600E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2486989,fr,1,4.450000E+00,-1.185390E+00,4.835600E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +2487096,fr,1,5.350000E+00,-1.185390E+00,4.835600E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +2487360,fr,1,3.550000E+00,1.687950E+00,4.372928E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999089E+01,0.000000E+00 +2487384,fr,1,3.750000E+00,1.687950E+00,4.372928E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,0.000000E+00 +2487840,fr,2,3.550000E+00,3.162820E+00,5.168905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +2487844,fr,1,3.550000E+00,3.162820E+00,5.168905E+01,1.500000E+01,Active Shallow Crust,2.400128E+02,5.799809E+01,0.000000E+00 +2487936,fr,1,4.350000E+00,3.162820E+00,5.168905E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2488321,fr,1,3.550000E+00,-3.509950E+00,4.829715E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2488333,fr,4,3.650000E+00,-3.509950E+00,4.829715E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999103E+01,0.000000E+00 +2488334,fr,1,3.650000E+00,-3.509950E+00,4.829715E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999103E+01,0.000000E+00 +2488336,fr,1,3.650000E+00,-3.509950E+00,4.829715E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801308E+01,0.000000E+00 +2488344,fr,1,3.750000E+00,-3.509950E+00,4.829715E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +2488368,fr,1,3.950000E+00,-3.509950E+00,4.829715E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +2488369,fr,1,3.950000E+00,-3.509950E+00,4.829715E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +2488383,fr,1,4.050000E+00,-3.509950E+00,4.829715E+01,5.000000E+00,Active Shallow Crust,2.400061E+02,5.800588E+01,0.000000E+00 +2488393,fr,1,4.150000E+00,-3.509950E+00,4.829715E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2488404,fr,1,4.250000E+00,-3.509950E+00,4.829715E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,0.000000E+00 +2488421,fr,1,4.350000E+00,-3.509950E+00,4.829715E+01,2.750000E+01,Active Shallow Crust,2.400090E+02,5.799582E+01,0.000000E+00 +2488428,fr,1,4.450000E+00,-3.509950E+00,4.829715E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +2488801,fr,1,3.550000E+00,3.913100E-01,4.115561E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2488836,fr,1,3.850000E+00,3.913100E-01,4.115561E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +2488884,fr,1,4.250000E+00,3.913100E-01,4.115561E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2489280,fr,3,3.550000E+00,7.767560E+00,4.679689E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999310E+01,0.000000E+00 +2489281,fr,2,3.550000E+00,7.767560E+00,4.679689E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999310E+01,0.000000E+00 +2489282,fr,2,3.550000E+00,7.767560E+00,4.679689E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999310E+01,0.000000E+00 +2489284,fr,1,3.550000E+00,7.767560E+00,4.679689E+01,1.500000E+01,Active Shallow Crust,2.400121E+02,5.799845E+01,0.000000E+00 +2489285,fr,1,3.550000E+00,7.767560E+00,4.679689E+01,2.750000E+01,Active Shallow Crust,2.400121E+02,5.799836E+01,0.000000E+00 +2489292,fr,7,3.650000E+00,7.767560E+00,4.679689E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998769E+01,0.000000E+00 +2489295,fr,1,3.650000E+00,7.767560E+00,4.679689E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801267E+01,0.000000E+00 +2489301,fr,1,3.650000E+00,7.767560E+00,4.679689E+01,5.000000E+00,Active Shallow Crust,1.289013E+02,8.996353E+01,0.000000E+00 +2489303,fr,1,3.650000E+00,7.767560E+00,4.679689E+01,2.750000E+01,Active Shallow Crust,1.289013E+02,8.996353E+01,0.000000E+00 +2489304,fr,3,3.750000E+00,7.767560E+00,4.679689E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +2489306,fr,1,3.750000E+00,7.767560E+00,4.679689E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +2489309,fr,1,3.750000E+00,7.767560E+00,4.679689E+01,2.750000E+01,Active Shallow Crust,2.400079E+02,5.801749E+01,0.000000E+00 +2489314,fr,1,3.750000E+00,7.767560E+00,4.679689E+01,1.500000E+01,Active Shallow Crust,1.288969E+02,8.996693E+01,0.000000E+00 +2489316,fr,4,3.850000E+00,7.767560E+00,4.679689E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2489322,fr,1,3.850000E+00,7.767560E+00,4.679689E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,-9.000000E+01 +2489328,fr,2,3.950000E+00,7.767560E+00,4.679689E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +2489334,fr,1,3.950000E+00,7.767560E+00,4.679689E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999119E+01,-9.000000E+01 +2489337,fr,1,3.950000E+00,7.767560E+00,4.679689E+01,5.000000E+00,Active Shallow Crust,1.288995E+02,8.999347E+01,0.000000E+00 +2489340,fr,2,4.050000E+00,7.767560E+00,4.679689E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998835E+01,0.000000E+00 +2489343,fr,1,4.050000E+00,7.767560E+00,4.679689E+01,5.000000E+00,Active Shallow Crust,2.400056E+02,5.800577E+01,0.000000E+00 +2489352,fr,1,4.150000E+00,7.767560E+00,4.679689E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +2489353,fr,1,4.150000E+00,7.767560E+00,4.679689E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +2489355,fr,1,4.150000E+00,7.767560E+00,4.679689E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799740E+01,0.000000E+00 +2489358,fr,1,4.150000E+00,7.767560E+00,4.679689E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,-9.000000E+01 +2489379,fr,1,4.350000E+00,7.767560E+00,4.679689E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799591E+01,0.000000E+00 +2489388,fr,1,4.450000E+00,7.767560E+00,4.679689E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2489394,fr,1,4.450000E+00,7.767560E+00,4.679689E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,-9.000000E+01 +2489461,fr,1,5.050000E+00,7.767560E+00,4.679689E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2489532,fr,1,5.650000E+00,7.767560E+00,4.679689E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +2489617,fr,1,6.350000E+00,7.767560E+00,4.679689E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2489761,fr,1,3.550000E+00,-3.664100E-01,4.531776E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2489766,fr,1,3.550000E+00,-3.664100E-01,4.531776E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +2489773,fr,1,3.650000E+00,-3.664100E-01,4.531776E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2489808,fr,2,3.950000E+00,-3.664100E-01,4.531776E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2489822,fr,1,4.050000E+00,-3.664100E-01,4.531776E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2489846,fr,1,4.250000E+00,-3.664100E-01,4.531776E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2490756,fr,1,3.850000E+00,3.215920E+00,4.103094E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +2490769,fr,2,3.950000E+00,3.215920E+00,4.103094E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +2490792,fr,1,4.150000E+00,3.215920E+00,4.103094E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +2490889,fr,1,4.950000E+00,3.215920E+00,4.103094E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2491200,fr,1,3.550000E+00,5.602900E-01,4.485248E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2491203,fr,1,3.550000E+00,5.602900E-01,4.485248E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799808E+01,0.000000E+00 +2491214,fr,1,3.650000E+00,5.602900E-01,4.485248E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +2491235,fr,1,3.750000E+00,5.602900E-01,4.485248E+01,2.750000E+01,Active Shallow Crust,1.288966E+02,8.996740E+01,0.000000E+00 +2491239,fr,1,3.850000E+00,5.602900E-01,4.485248E+01,5.000000E+00,Active Shallow Crust,2.400106E+02,5.799788E+01,0.000000E+00 +2491256,fr,1,3.950000E+00,5.602900E-01,4.485248E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,-9.000000E+01 +2491262,fr,1,4.050000E+00,5.602900E-01,4.485248E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +2491315,fr,1,4.450000E+00,5.602900E-01,4.485248E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,-9.000000E+01 +2491347,fr,1,4.750000E+00,5.602900E-01,4.485248E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.800437E+01,0.000000E+00 +2491680,fr,1,3.550000E+00,-7.649800E-01,4.569093E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +2491681,fr,1,3.550000E+00,-7.649800E-01,4.569093E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +2491696,fr,1,3.650000E+00,-7.649800E-01,4.569093E+01,1.500000E+01,Active Shallow Crust,2.400010E+02,5.801284E+01,0.000000E+00 +2491716,fr,1,3.850000E+00,-7.649800E-01,4.569093E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2491717,fr,1,3.850000E+00,-7.649800E-01,4.569093E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2491728,fr,1,3.950000E+00,-7.649800E-01,4.569093E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2491740,fr,2,4.050000E+00,-7.649800E-01,4.569093E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2491743,fr,1,4.050000E+00,-7.649800E-01,4.569093E+01,5.000000E+00,Active Shallow Crust,2.400059E+02,5.800578E+01,0.000000E+00 +2491745,fr,1,4.050000E+00,-7.649800E-01,4.569093E+01,2.750000E+01,Active Shallow Crust,2.400059E+02,5.800575E+01,0.000000E+00 +2491753,fr,1,4.150000E+00,-7.649800E-01,4.569093E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2492106,fr,1,7.050000E+00,-7.649536E-01,4.569093E+01,1.674827E+01,Active Shallow Crust,3.600000E+02,8.999000E+01,-9.000000E+01 +2492160,fr,2,3.550000E+00,-4.914740E+00,4.843059E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999331E+01,0.000000E+00 +2492196,fr,1,3.850000E+00,-4.914740E+00,4.843059E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +2492232,fr,1,4.150000E+00,-4.914740E+00,4.843059E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2492256,fr,1,4.350000E+00,-4.914740E+00,4.843059E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +2492409,fr,1,5.550000E+00,-4.914740E+00,4.843059E+01,5.000000E+00,Active Shallow Crust,1.288745E+02,8.998994E+01,0.000000E+00 +2492647,fr,1,3.550000E+00,4.893360E+00,4.275042E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999251E+01,-9.000000E+01 +2492652,fr,1,3.650000E+00,4.893360E+00,4.275042E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998680E+01,0.000000E+00 +2492702,fr,1,4.050000E+00,4.893360E+00,4.275042E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999167E+01,0.000000E+00 +2493120,fr,2,3.550000E+00,3.301180E+00,4.464466E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998923E+01,0.000000E+00 +2493123,fr,1,3.550000E+00,3.301180E+00,4.464466E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799809E+01,0.000000E+00 +2493156,fr,1,3.850000E+00,3.301180E+00,4.464466E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2493168,fr,1,3.950000E+00,3.301180E+00,4.464466E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +2493169,fr,1,3.950000E+00,3.301180E+00,4.464466E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +2493190,fr,1,4.050000E+00,3.301180E+00,4.464466E+01,1.500000E+01,Active Shallow Crust,1.288913E+02,8.999294E+01,0.000000E+00 +2493218,fr,1,4.350000E+00,3.301180E+00,4.464466E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2493276,fr,1,4.850000E+00,3.301180E+00,4.464466E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +2493351,fr,1,5.450000E+00,3.301180E+00,4.464466E+01,5.000000E+00,Active Shallow Crust,2.400274E+02,5.799823E+01,0.000000E+00 +2493600,fr,3,3.550000E+00,6.511650E+00,4.768001E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999321E+01,0.000000E+00 +2493601,fr,1,3.550000E+00,6.511650E+00,4.768001E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999321E+01,0.000000E+00 +2493606,fr,1,3.550000E+00,6.511650E+00,4.768001E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999313E+01,-9.000000E+01 +2493607,fr,1,3.550000E+00,6.511650E+00,4.768001E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999313E+01,-9.000000E+01 +2493612,fr,2,3.650000E+00,6.511650E+00,4.768001E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998790E+01,0.000000E+00 +2493613,fr,1,3.650000E+00,6.511650E+00,4.768001E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998790E+01,0.000000E+00 +2493615,fr,1,3.650000E+00,6.511650E+00,4.768001E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801261E+01,0.000000E+00 +2493622,fr,1,3.650000E+00,6.511650E+00,4.768001E+01,1.500000E+01,Active Shallow Crust,1.289005E+02,8.996355E+01,0.000000E+00 +2493624,fr,1,3.750000E+00,6.511650E+00,4.768001E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +2493625,fr,1,3.750000E+00,6.511650E+00,4.768001E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998921E+01,0.000000E+00 +2493627,fr,1,3.750000E+00,6.511650E+00,4.768001E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.801757E+01,0.000000E+00 +2493651,fr,1,3.950000E+00,6.511650E+00,4.768001E+01,5.000000E+00,Active Shallow Crust,2.400197E+02,5.800465E+01,0.000000E+00 +2493662,fr,1,4.050000E+00,6.511650E+00,4.768001E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998855E+01,0.000000E+00 +2493669,fr,1,4.050000E+00,6.511650E+00,4.768001E+01,5.000000E+00,Active Shallow Crust,1.288902E+02,8.999427E+01,0.000000E+00 +2493678,fr,1,4.150000E+00,6.511650E+00,4.768001E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,-9.000000E+01 +2493684,fr,1,4.250000E+00,6.511650E+00,4.768001E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999090E+01,0.000000E+00 +2493687,fr,1,4.250000E+00,6.511650E+00,4.768001E+01,5.000000E+00,Active Shallow Crust,2.400076E+02,5.799423E+01,0.000000E+00 +2493732,fr,1,4.650000E+00,6.511650E+00,4.768001E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +2493739,fr,1,4.650000E+00,6.511650E+00,4.768001E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999032E+01,-9.000000E+01 +2493771,fr,1,4.950000E+00,6.511650E+00,4.768001E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.800456E+01,0.000000E+00 +2494090,fr,1,3.550000E+00,1.108500E+00,5.085855E+01,1.500000E+01,Active Shallow Crust,1.288958E+02,8.999364E+01,0.000000E+00 +2494106,fr,1,3.750000E+00,1.108500E+00,5.085855E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +2494116,fr,1,3.850000E+00,1.108500E+00,5.085855E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998986E+01,0.000000E+00 +2494141,fr,1,4.050000E+00,1.108500E+00,5.085855E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999016E+01,0.000000E+00 +2494152,fr,1,4.150000E+00,1.108500E+00,5.085855E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +2494190,fr,1,4.450000E+00,1.108500E+00,5.085855E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +2494213,fr,1,4.650000E+00,1.108500E+00,5.085855E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2494566,fr,1,3.550000E+00,2.197400E-01,5.082004E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,-9.000000E+01 +2494572,fr,1,3.650000E+00,2.197400E-01,5.082004E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2494596,fr,1,3.850000E+00,2.197400E-01,5.082004E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2494608,fr,1,3.950000E+00,2.197400E-01,5.082004E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +2494622,fr,1,4.050000E+00,2.197400E-01,5.082004E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2494633,fr,1,4.150000E+00,2.197400E-01,5.082004E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2494692,fr,1,4.650000E+00,2.197400E-01,5.082004E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2495040,fr,3,3.550000E+00,4.806010E+00,4.459929E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999282E+01,0.000000E+00 +2495041,fr,1,3.550000E+00,4.806010E+00,4.459929E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999282E+01,0.000000E+00 +2495043,fr,1,3.550000E+00,4.806010E+00,4.459929E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.799762E+01,0.000000E+00 +2495044,fr,1,3.550000E+00,4.806010E+00,4.459929E+01,1.500000E+01,Active Shallow Crust,2.400122E+02,5.799762E+01,0.000000E+00 +2495049,fr,2,3.550000E+00,4.806010E+00,4.459929E+01,5.000000E+00,Active Shallow Crust,1.288965E+02,8.999282E+01,0.000000E+00 +2495051,fr,1,3.550000E+00,4.806010E+00,4.459929E+01,2.750000E+01,Active Shallow Crust,1.288965E+02,8.999282E+01,0.000000E+00 +2495052,fr,2,3.650000E+00,4.806010E+00,4.459929E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998720E+01,0.000000E+00 +2495054,fr,1,3.650000E+00,4.806010E+00,4.459929E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998720E+01,0.000000E+00 +2495064,fr,3,3.750000E+00,4.806010E+00,4.459929E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +2495065,fr,1,3.750000E+00,4.806010E+00,4.459929E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +2495076,fr,2,3.850000E+00,4.806010E+00,4.459929E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +2495078,fr,1,3.850000E+00,4.806010E+00,4.459929E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +2495079,fr,1,3.850000E+00,4.806010E+00,4.459929E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799780E+01,0.000000E+00 +2495088,fr,1,3.950000E+00,4.806010E+00,4.459929E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +2495089,fr,1,3.950000E+00,4.806010E+00,4.459929E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +2495126,fr,1,4.250000E+00,4.806010E+00,4.459929E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999038E+01,0.000000E+00 +2495140,fr,1,4.350000E+00,4.806010E+00,4.459929E+01,1.500000E+01,Active Shallow Crust,2.400077E+02,5.799597E+01,0.000000E+00 +2495145,fr,1,4.350000E+00,4.806010E+00,4.459929E+01,5.000000E+00,Active Shallow Crust,1.288985E+02,8.998242E+01,0.000000E+00 +2495172,fr,1,4.650000E+00,4.806010E+00,4.459929E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2495179,fr,1,4.650000E+00,4.806010E+00,4.459929E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998976E+01,-9.000000E+01 +2495199,fr,1,4.850000E+00,4.806010E+00,4.459929E+01,5.000000E+00,Active Shallow Crust,2.400163E+02,5.800208E+01,0.000000E+00 +2495217,fr,1,4.950000E+00,4.806010E+00,4.459929E+01,5.000000E+00,Active Shallow Crust,1.288905E+02,8.999012E+01,0.000000E+00 +2495328,fr,1,5.950000E+00,4.806010E+00,4.459929E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2495532,fr,1,3.650000E+00,2.625100E-01,4.871823E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2495538,fr,1,3.650000E+00,2.625100E-01,4.871823E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +2495573,fr,1,3.950000E+00,2.625100E-01,4.871823E+01,2.750000E+01,Active Shallow Crust,2.400201E+02,5.800504E+01,0.000000E+00 +2495604,fr,1,4.250000E+00,2.625100E-01,4.871823E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2495628,fr,1,4.450000E+00,2.625100E-01,4.871823E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2496036,fr,1,3.850000E+00,-2.403040E+00,5.079880E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999097E+01,0.000000E+00 +2496096,fr,1,4.350000E+00,-2.403040E+00,5.079880E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2496480,fr,3,3.550000E+00,4.287470E+00,5.052213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998717E+01,0.000000E+00 +2496481,fr,1,3.550000E+00,4.287470E+00,5.052213E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998717E+01,0.000000E+00 +2496482,fr,1,3.550000E+00,4.287470E+00,5.052213E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998717E+01,0.000000E+00 +2496483,fr,1,3.550000E+00,4.287470E+00,5.052213E+01,5.000000E+00,Active Shallow Crust,2.400132E+02,5.799796E+01,0.000000E+00 +2496489,fr,1,3.550000E+00,4.287470E+00,5.052213E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999359E+01,0.000000E+00 +2496492,fr,3,3.650000E+00,4.287470E+00,5.052213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998857E+01,0.000000E+00 +2496493,fr,1,3.650000E+00,4.287470E+00,5.052213E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998857E+01,0.000000E+00 +2496494,fr,1,3.650000E+00,4.287470E+00,5.052213E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998857E+01,0.000000E+00 +2496498,fr,1,3.650000E+00,4.287470E+00,5.052213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998844E+01,-9.000000E+01 +2496499,fr,1,3.650000E+00,4.287470E+00,5.052213E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998844E+01,-9.000000E+01 +2496504,fr,3,3.750000E+00,4.287470E+00,5.052213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2496505,fr,1,3.750000E+00,4.287470E+00,5.052213E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2496506,fr,1,3.750000E+00,4.287470E+00,5.052213E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2496514,fr,1,3.750000E+00,4.287470E+00,5.052213E+01,1.500000E+01,Active Shallow Crust,1.288957E+02,8.996756E+01,0.000000E+00 +2496516,fr,2,3.850000E+00,4.287470E+00,5.052213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999092E+01,0.000000E+00 +2496517,fr,2,3.850000E+00,4.287470E+00,5.052213E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999092E+01,0.000000E+00 +2496520,fr,1,3.850000E+00,4.287470E+00,5.052213E+01,1.500000E+01,Active Shallow Crust,2.400109E+02,5.799822E+01,0.000000E+00 +2496525,fr,1,3.850000E+00,4.287470E+00,5.052213E+01,5.000000E+00,Active Shallow Crust,1.288946E+02,8.999319E+01,0.000000E+00 +2496526,fr,1,3.850000E+00,4.287470E+00,5.052213E+01,1.500000E+01,Active Shallow Crust,1.288946E+02,8.999319E+01,0.000000E+00 +2496528,fr,3,3.950000E+00,4.287470E+00,5.052213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999191E+01,0.000000E+00 +2496531,fr,1,3.950000E+00,4.287470E+00,5.052213E+01,5.000000E+00,Active Shallow Crust,2.400201E+02,5.800550E+01,0.000000E+00 +2496532,fr,1,3.950000E+00,4.287470E+00,5.052213E+01,1.500000E+01,Active Shallow Crust,2.400201E+02,5.800550E+01,0.000000E+00 +2496534,fr,1,3.950000E+00,4.287470E+00,5.052213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999181E+01,-9.000000E+01 +2496540,fr,2,4.050000E+00,4.287470E+00,5.052213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +2496546,fr,1,4.050000E+00,4.287470E+00,5.052213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998906E+01,-9.000000E+01 +2496552,fr,1,4.150000E+00,4.287470E+00,5.052213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999036E+01,0.000000E+00 +2496576,fr,2,4.350000E+00,4.287470E+00,5.052213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +2496577,fr,1,4.350000E+00,4.287470E+00,5.052213E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +2496588,fr,1,4.450000E+00,4.287470E+00,5.052213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999090E+01,0.000000E+00 +2496612,fr,2,4.650000E+00,4.287470E+00,5.052213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +2496625,fr,1,4.750000E+00,4.287470E+00,5.052213E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +2496673,fr,1,5.150000E+00,4.287470E+00,5.052213E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +2496684,fr,1,5.250000E+00,4.287470E+00,5.052213E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2496816,fr,1,6.350000E+00,4.287476E+00,5.052213E+01,7.567806E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2496975,fr,1,3.650000E+00,-1.157400E-01,4.123795E+01,5.000000E+00,Active Shallow Crust,2.400006E+02,5.801281E+01,0.000000E+00 +2497441,fr,1,3.550000E+00,7.197500E+00,4.990897E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998701E+01,0.000000E+00 +2497443,fr,1,3.550000E+00,7.197500E+00,4.990897E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799867E+01,0.000000E+00 +2497467,fr,1,3.750000E+00,7.197500E+00,4.990897E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.801743E+01,0.000000E+00 +2497468,fr,1,3.750000E+00,7.197500E+00,4.990897E+01,1.500000E+01,Active Shallow Crust,2.400090E+02,5.801743E+01,0.000000E+00 +2497476,fr,1,3.850000E+00,7.197500E+00,4.990897E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +2497500,fr,1,4.050000E+00,7.197500E+00,4.990897E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +2497920,fr,5,3.550000E+00,8.057150E+00,4.630906E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998607E+01,0.000000E+00 +2497921,fr,1,3.550000E+00,8.057150E+00,4.630906E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998607E+01,0.000000E+00 +2497926,fr,3,3.550000E+00,8.057150E+00,4.630906E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998591E+01,-9.000000E+01 +2497929,fr,1,3.550000E+00,8.057150E+00,4.630906E+01,5.000000E+00,Active Shallow Crust,1.288951E+02,9.000000E+01,0.000000E+00 +2497932,fr,7,3.650000E+00,8.057150E+00,4.630906E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998759E+01,0.000000E+00 +2497935,fr,2,3.650000E+00,8.057150E+00,4.630906E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801377E+01,0.000000E+00 +2497938,fr,2,3.650000E+00,8.057150E+00,4.630906E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998744E+01,-9.000000E+01 +2497941,fr,1,3.650000E+00,8.057150E+00,4.630906E+01,5.000000E+00,Active Shallow Crust,1.288999E+02,8.996352E+01,0.000000E+00 +2497944,fr,3,3.750000E+00,8.057150E+00,4.630906E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998894E+01,0.000000E+00 +2497945,fr,1,3.750000E+00,8.057150E+00,4.630906E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998894E+01,0.000000E+00 +2497946,fr,1,3.750000E+00,8.057150E+00,4.630906E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998894E+01,0.000000E+00 +2497951,fr,1,3.750000E+00,8.057150E+00,4.630906E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998881E+01,-9.000000E+01 +2497956,fr,2,3.850000E+00,8.057150E+00,4.630906E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2497957,fr,2,3.850000E+00,8.057150E+00,4.630906E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2497958,fr,1,3.850000E+00,8.057150E+00,4.630906E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2497968,fr,5,3.950000E+00,8.057150E+00,4.630906E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999121E+01,0.000000E+00 +2497971,fr,3,3.950000E+00,8.057150E+00,4.630906E+01,5.000000E+00,Active Shallow Crust,2.400192E+02,5.800506E+01,0.000000E+00 +2497980,fr,8,4.050000E+00,8.057150E+00,4.630906E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999216E+01,0.000000E+00 +2497992,fr,1,4.150000E+00,8.057150E+00,4.630906E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999302E+01,0.000000E+00 +2497993,fr,1,4.150000E+00,8.057150E+00,4.630906E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999302E+01,0.000000E+00 +2498004,fr,1,4.250000E+00,8.057150E+00,4.630906E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998756E+01,0.000000E+00 +2498005,fr,1,4.250000E+00,8.057150E+00,4.630906E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998756E+01,0.000000E+00 +2498007,fr,1,4.250000E+00,8.057150E+00,4.630906E+01,5.000000E+00,Active Shallow Crust,2.400079E+02,5.799382E+01,0.000000E+00 +2498016,fr,4,4.350000E+00,8.057150E+00,4.630906E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +2498017,fr,2,4.350000E+00,8.057150E+00,4.630906E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +2498035,fr,1,4.450000E+00,8.057150E+00,4.630906E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +2498040,fr,2,4.550000E+00,8.057150E+00,4.630906E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999119E+01,0.000000E+00 +2498041,fr,1,4.550000E+00,8.057150E+00,4.630906E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999119E+01,0.000000E+00 +2498049,fr,1,4.550000E+00,8.057150E+00,4.630906E+01,5.000000E+00,Active Shallow Crust,1.288940E+02,8.998650E+01,0.000000E+00 +2498064,fr,1,4.750000E+00,8.057150E+00,4.630906E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998950E+01,0.000000E+00 +2498292,fr,1,6.650000E+00,8.057162E+00,4.630906E+01,1.068981E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2498427,fr,1,3.750000E+00,9.479110E+00,4.952549E+01,5.000000E+00,Active Shallow Crust,2.400094E+02,5.801710E+01,0.000000E+00 +2498436,fr,1,3.850000E+00,9.479110E+00,4.952549E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999073E+01,0.000000E+00 +2498605,fr,1,5.250000E+00,9.479110E+00,4.952549E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999075E+01,0.000000E+00 +2498880,fr,3,3.550000E+00,5.988000E-02,4.575909E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2498887,fr,1,3.550000E+00,5.988000E-02,4.575909E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998999E+01,-9.000000E+01 +2498889,fr,3,3.550000E+00,5.988000E-02,4.575909E+01,5.000000E+00,Active Shallow Crust,1.288963E+02,8.999374E+01,0.000000E+00 +2498892,fr,2,3.650000E+00,5.988000E-02,4.575909E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2498894,fr,1,3.650000E+00,5.988000E-02,4.575909E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2498904,fr,3,3.750000E+00,5.988000E-02,4.575909E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2498914,fr,1,3.750000E+00,5.988000E-02,4.575909E+01,1.500000E+01,Active Shallow Crust,1.288967E+02,8.996735E+01,0.000000E+00 +2498917,fr,4,3.850000E+00,5.988000E-02,4.575909E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2498919,fr,1,3.850000E+00,5.988000E-02,4.575909E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799779E+01,0.000000E+00 +2498922,fr,1,3.850000E+00,5.988000E-02,4.575909E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +2498934,fr,1,3.950000E+00,5.988000E-02,4.575909E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +2498937,fr,1,3.950000E+00,5.988000E-02,4.575909E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.999372E+01,0.000000E+00 +2498940,fr,1,4.050000E+00,5.988000E-02,4.575909E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2498990,fr,1,4.450000E+00,5.988000E-02,4.575909E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2498995,fr,1,4.450000E+00,5.988000E-02,4.575909E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,-9.000000E+01 +2498997,fr,1,4.450000E+00,5.988000E-02,4.575909E+01,5.000000E+00,Active Shallow Crust,1.288924E+02,8.999372E+01,0.000000E+00 +2499001,fr,1,4.550000E+00,5.988000E-02,4.575909E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2499021,fr,1,4.650000E+00,5.988000E-02,4.575909E+01,5.000000E+00,Active Shallow Crust,1.288913E+02,8.998701E+01,0.000000E+00 +2499022,fr,1,4.650000E+00,5.988000E-02,4.575909E+01,1.500000E+01,Active Shallow Crust,1.288913E+02,8.998701E+01,0.000000E+00 +2499024,fr,2,4.750000E+00,5.988000E-02,4.575909E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2499040,fr,1,4.850000E+00,5.988000E-02,4.575909E+01,1.500000E+01,Active Shallow Crust,2.400168E+02,5.800227E+01,0.000000E+00 +2499048,fr,1,4.950000E+00,5.988000E-02,4.575909E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2499060,fr,1,5.050000E+00,5.988000E-02,4.575909E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2499360,fr,2,3.550000E+00,4.424420E+00,5.041848E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998715E+01,0.000000E+00 +2499361,fr,1,3.550000E+00,4.424420E+00,5.041848E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998715E+01,0.000000E+00 +2499363,fr,2,3.550000E+00,4.424420E+00,5.041848E+01,5.000000E+00,Active Shallow Crust,2.400130E+02,5.799745E+01,0.000000E+00 +2499365,fr,1,3.550000E+00,4.424420E+00,5.041848E+01,2.750000E+01,Active Shallow Crust,2.400130E+02,5.799735E+01,0.000000E+00 +2499372,fr,3,3.650000E+00,4.424420E+00,5.041848E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998855E+01,0.000000E+00 +2499374,fr,1,3.650000E+00,4.424420E+00,5.041848E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998855E+01,0.000000E+00 +2499377,fr,2,3.650000E+00,4.424420E+00,5.041848E+01,2.750000E+01,Active Shallow Crust,2.400024E+02,5.801286E+01,0.000000E+00 +2499384,fr,3,3.750000E+00,4.424420E+00,5.041848E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +2499385,fr,1,3.750000E+00,4.424420E+00,5.041848E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +2499387,fr,2,3.750000E+00,4.424420E+00,5.041848E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.801860E+01,0.000000E+00 +2499396,fr,1,3.850000E+00,4.424420E+00,5.041848E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +2499399,fr,2,3.850000E+00,4.424420E+00,5.041848E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799760E+01,0.000000E+00 +2499417,fr,2,3.950000E+00,4.424420E+00,5.041848E+01,5.000000E+00,Active Shallow Crust,1.288997E+02,8.999392E+01,0.000000E+00 +2499423,fr,1,4.050000E+00,4.424420E+00,5.041848E+01,5.000000E+00,Active Shallow Crust,2.400071E+02,5.800577E+01,0.000000E+00 +2499447,fr,1,4.250000E+00,4.424420E+00,5.041848E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799372E+01,0.000000E+00 +2499448,fr,1,4.250000E+00,4.424420E+00,5.041848E+01,1.500000E+01,Active Shallow Crust,2.400085E+02,5.799372E+01,0.000000E+00 +2499450,fr,1,4.250000E+00,4.424420E+00,5.041848E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999129E+01,-9.000000E+01 +2499465,fr,1,4.350000E+00,4.424420E+00,5.041848E+01,5.000000E+00,Active Shallow Crust,1.288969E+02,8.998272E+01,0.000000E+00 +2499480,fr,1,4.550000E+00,4.424420E+00,5.041848E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +2499516,fr,1,4.850000E+00,4.424420E+00,5.041848E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2499534,fr,1,4.950000E+00,4.424420E+00,5.041848E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,-9.000000E+01 +2499553,fr,1,5.150000E+00,4.424420E+00,5.041848E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2499840,fr,7,3.550000E+00,5.567130E+00,5.118780E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998736E+01,0.000000E+00 +2499842,fr,1,3.550000E+00,5.567130E+00,5.118780E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998736E+01,0.000000E+00 +2499853,fr,1,3.650000E+00,5.567130E+00,5.118780E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998873E+01,0.000000E+00 +2499864,fr,1,3.750000E+00,5.567130E+00,5.118780E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2499870,fr,1,3.750000E+00,5.567130E+00,5.118780E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +2499871,fr,1,3.750000E+00,5.567130E+00,5.118780E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +2499876,fr,1,3.850000E+00,5.567130E+00,5.118780E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999105E+01,0.000000E+00 +2499877,fr,1,3.850000E+00,5.567130E+00,5.118780E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999105E+01,0.000000E+00 +2499888,fr,2,3.950000E+00,5.567130E+00,5.118780E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998804E+01,0.000000E+00 +2499932,fr,1,4.250000E+00,5.567130E+00,5.118780E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998858E+01,-9.000000E+01 +2499936,fr,2,4.350000E+00,5.567130E+00,5.118780E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2499985,fr,1,4.750000E+00,5.567130E+00,5.118780E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +2500005,fr,1,4.850000E+00,5.567130E+00,5.118780E+01,5.000000E+00,Active Shallow Crust,1.288837E+02,8.999364E+01,0.000000E+00 +2500011,fr,1,4.950000E+00,5.567130E+00,5.118780E+01,5.000000E+00,Active Shallow Crust,2.400144E+02,5.800482E+01,0.000000E+00 +2500044,fr,1,5.250000E+00,5.567130E+00,5.118780E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2500320,fr,4,3.550000E+00,8.338680E+00,4.672913E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998618E+01,0.000000E+00 +2500321,fr,2,3.550000E+00,8.338680E+00,4.672913E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998618E+01,0.000000E+00 +2500322,fr,1,3.550000E+00,8.338680E+00,4.672913E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998618E+01,0.000000E+00 +2500326,fr,1,3.550000E+00,8.338680E+00,4.672913E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998602E+01,-9.000000E+01 +2500327,fr,1,3.550000E+00,8.338680E+00,4.672913E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998602E+01,-9.000000E+01 +2500329,fr,1,3.550000E+00,8.338680E+00,4.672913E+01,5.000000E+00,Active Shallow Crust,1.288980E+02,8.999309E+01,0.000000E+00 +2500332,fr,4,3.650000E+00,8.338680E+00,4.672913E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998768E+01,0.000000E+00 +2500333,fr,3,3.650000E+00,8.338680E+00,4.672913E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998768E+01,0.000000E+00 +2500339,fr,1,3.650000E+00,8.338680E+00,4.672913E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998753E+01,-9.000000E+01 +2500344,fr,4,3.750000E+00,8.338680E+00,4.672913E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998902E+01,0.000000E+00 +2500345,fr,1,3.750000E+00,8.338680E+00,4.672913E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998902E+01,0.000000E+00 +2500349,fr,1,3.750000E+00,8.338680E+00,4.672913E+01,2.750000E+01,Active Shallow Crust,2.400089E+02,5.801754E+01,0.000000E+00 +2500356,fr,1,3.850000E+00,8.338680E+00,4.672913E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +2500357,fr,1,3.850000E+00,8.338680E+00,4.672913E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +2500360,fr,2,3.850000E+00,8.338680E+00,4.672913E+01,1.500000E+01,Active Shallow Crust,2.400120E+02,5.799644E+01,0.000000E+00 +2500363,fr,1,3.850000E+00,8.338680E+00,4.672913E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +2500365,fr,1,3.850000E+00,8.338680E+00,4.672913E+01,5.000000E+00,Active Shallow Crust,1.288953E+02,8.999511E+01,0.000000E+00 +2500368,fr,2,3.950000E+00,8.338680E+00,4.672913E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999128E+01,0.000000E+00 +2500371,fr,1,3.950000E+00,8.338680E+00,4.672913E+01,5.000000E+00,Active Shallow Crust,2.400201E+02,5.800470E+01,0.000000E+00 +2500377,fr,1,3.950000E+00,8.338680E+00,4.672913E+01,5.000000E+00,Active Shallow Crust,1.288998E+02,8.999564E+01,0.000000E+00 +2500378,fr,1,3.950000E+00,8.338680E+00,4.672913E+01,1.500000E+01,Active Shallow Crust,1.288998E+02,8.999564E+01,0.000000E+00 +2500380,fr,2,4.050000E+00,8.338680E+00,4.672913E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999223E+01,0.000000E+00 +2500389,fr,1,4.050000E+00,8.338680E+00,4.672913E+01,5.000000E+00,Active Shallow Crust,1.288891E+02,8.999612E+01,0.000000E+00 +2500392,fr,1,4.150000E+00,8.338680E+00,4.672913E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999307E+01,0.000000E+00 +2500393,fr,3,4.150000E+00,8.338680E+00,4.672913E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999307E+01,0.000000E+00 +2500404,fr,5,4.250000E+00,8.338680E+00,4.672913E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998765E+01,0.000000E+00 +2500410,fr,1,4.250000E+00,8.338680E+00,4.672913E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998750E+01,-9.000000E+01 +2500416,fr,1,4.350000E+00,8.338680E+00,4.672913E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998899E+01,0.000000E+00 +2500428,fr,1,4.450000E+00,8.338680E+00,4.672913E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +2500441,fr,1,4.550000E+00,8.338680E+00,4.672913E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +2500443,fr,1,4.550000E+00,8.338680E+00,4.672913E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.799706E+01,0.000000E+00 +2500464,fr,2,4.750000E+00,8.338680E+00,4.672913E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998958E+01,0.000000E+00 +2500483,fr,1,4.850000E+00,8.338680E+00,4.672913E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999061E+01,-9.000000E+01 +2500551,fr,1,5.450000E+00,8.338680E+00,4.672913E+01,5.000000E+00,Active Shallow Crust,2.400294E+02,5.799854E+01,0.000000E+00 +2500560,fr,1,5.550000E+00,8.338680E+00,4.672913E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +2500812,fr,1,3.650000E+00,-3.117030E+00,4.407919E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999032E+01,0.000000E+00 +2501001,fr,1,5.150000E+00,-3.117030E+00,4.407919E+01,5.000000E+00,Active Shallow Crust,1.288849E+02,8.999101E+01,0.000000E+00 +2501091,fr,1,5.950000E+00,-3.117030E+00,4.407919E+01,5.000000E+00,Active Shallow Crust,2.400477E+02,5.800004E+01,0.000000E+00 +2501281,fr,1,3.550000E+00,-3.208740E+00,4.723705E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +2501316,fr,1,3.850000E+00,-3.208740E+00,4.723705E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +2501377,fr,1,4.350000E+00,-3.208740E+00,4.723705E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +2501760,fr,1,3.550000E+00,4.544690E+00,4.613218E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999301E+01,0.000000E+00 +2501775,fr,1,3.650000E+00,4.544690E+00,4.613218E+01,5.000000E+00,Active Shallow Crust,2.400004E+02,5.801281E+01,0.000000E+00 +2501794,fr,1,3.750000E+00,4.544690E+00,4.613218E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.996748E+01,0.000000E+00 +2501817,fr,1,3.950000E+00,4.544690E+00,4.613218E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.999559E+01,0.000000E+00 +2501853,fr,1,4.250000E+00,4.544690E+00,4.613218E+01,5.000000E+00,Active Shallow Crust,1.288936E+02,8.998093E+01,0.000000E+00 +2501892,fr,1,4.650000E+00,4.544690E+00,4.613218E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +2501893,fr,1,4.650000E+00,4.544690E+00,4.613218E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +2502517,fr,1,5.850000E+00,-7.301810E+00,4.829388E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2502720,fr,1,3.550000E+00,1.107580E+00,4.623912E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,0.000000E+00 +2502724,fr,2,3.550000E+00,1.107580E+00,4.623912E+01,1.500000E+01,Active Shallow Crust,2.400121E+02,5.799820E+01,0.000000E+00 +2502738,fr,1,3.650000E+00,1.107580E+00,4.623912E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999057E+01,-9.000000E+01 +2502744,fr,2,3.750000E+00,1.107580E+00,4.623912E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +2502745,fr,1,3.750000E+00,1.107580E+00,4.623912E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +2502746,fr,1,3.750000E+00,1.107580E+00,4.623912E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999030E+01,0.000000E+00 +2502748,fr,1,3.750000E+00,1.107580E+00,4.623912E+01,1.500000E+01,Active Shallow Crust,2.400083E+02,5.801773E+01,0.000000E+00 +2502757,fr,1,3.850000E+00,1.107580E+00,4.623912E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2502759,fr,1,3.850000E+00,1.107580E+00,4.623912E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799785E+01,0.000000E+00 +2502760,fr,1,3.850000E+00,1.107580E+00,4.623912E+01,1.500000E+01,Active Shallow Crust,2.400108E+02,5.799785E+01,0.000000E+00 +2502768,fr,1,3.950000E+00,1.107580E+00,4.623912E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2502777,fr,1,3.950000E+00,1.107580E+00,4.623912E+01,5.000000E+00,Active Shallow Crust,1.289004E+02,8.999395E+01,0.000000E+00 +2502804,fr,1,4.250000E+00,1.107580E+00,4.623912E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2502841,fr,1,4.550000E+00,1.107580E+00,4.623912E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2503200,fr,1,3.550000E+00,2.062510E+00,4.722860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +2503202,fr,1,3.550000E+00,2.062510E+00,4.722860E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +2503225,fr,1,3.750000E+00,2.062510E+00,4.722860E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998912E+01,0.000000E+00 +2503242,fr,1,3.850000E+00,2.062510E+00,4.722860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,-9.000000E+01 +2503254,fr,1,3.950000E+00,2.062510E+00,4.722860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,-9.000000E+01 +2503275,fr,1,4.150000E+00,2.062510E+00,4.722860E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.799720E+01,0.000000E+00 +2503392,fr,1,5.150000E+00,2.062510E+00,4.722860E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2503690,fr,1,3.550000E+00,7.045460E+00,4.939121E+01,1.500000E+01,Active Shallow Crust,1.288958E+02,8.999344E+01,0.000000E+00 +2503704,fr,1,3.750000E+00,7.045460E+00,4.939121E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +2503758,fr,1,4.150000E+00,7.045460E+00,4.939121E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +2504160,fr,1,3.550000E+00,-8.048400E-01,4.904983E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +2504161,fr,2,3.550000E+00,-8.048400E-01,4.904983E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +2504163,fr,1,3.550000E+00,-8.048400E-01,4.904983E+01,5.000000E+00,Active Shallow Crust,2.400125E+02,5.799824E+01,0.000000E+00 +2504167,fr,1,3.550000E+00,-8.048400E-01,4.904983E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +2504169,fr,1,3.550000E+00,-8.048400E-01,4.904983E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999380E+01,0.000000E+00 +2504189,fr,1,3.750000E+00,-8.048400E-01,4.904983E+01,2.750000E+01,Active Shallow Crust,2.400087E+02,5.801757E+01,0.000000E+00 +2504191,fr,1,3.750000E+00,-8.048400E-01,4.904983E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,-9.000000E+01 +2504205,fr,1,3.850000E+00,-8.048400E-01,4.904983E+01,5.000000E+00,Active Shallow Crust,1.288954E+02,8.999357E+01,0.000000E+00 +2504235,fr,1,4.150000E+00,-8.048400E-01,4.904983E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.799742E+01,0.000000E+00 +2504256,fr,1,4.350000E+00,-8.048400E-01,4.904983E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2504268,fr,1,4.450000E+00,-8.048400E-01,4.904983E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2504358,fr,1,5.150000E+00,-8.048400E-01,4.904983E+01,5.000000E+00,Active Shallow Crust,3.599999E+02,8.999007E+01,-9.000000E+01 +2504376,fr,1,5.350000E+00,-8.048400E-01,4.904983E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2504517,fr,1,6.450000E+00,-8.048453E-01,4.904983E+01,8.491219E+00,Active Shallow Crust,1.288310E+02,8.999049E+01,0.000000E+00 +2504640,fr,1,3.550000E+00,7.197460E+00,4.839943E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999330E+01,0.000000E+00 +2504642,fr,1,3.550000E+00,7.197460E+00,4.839943E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999330E+01,0.000000E+00 +2504649,fr,1,3.550000E+00,7.197460E+00,4.839943E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999331E+01,0.000000E+00 +2504652,fr,1,3.650000E+00,7.197460E+00,4.839943E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998807E+01,0.000000E+00 +2504712,fr,2,4.150000E+00,7.197460E+00,4.839943E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2504713,fr,1,4.150000E+00,7.197460E+00,4.839943E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2504728,fr,1,4.250000E+00,7.197460E+00,4.839943E+01,1.500000E+01,Active Shallow Crust,2.400083E+02,5.799410E+01,0.000000E+00 +2504736,fr,1,4.350000E+00,7.197460E+00,4.839943E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998933E+01,0.000000E+00 +2505120,fr,10,3.550000E+00,7.197410E+00,4.686154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999310E+01,0.000000E+00 +2505121,fr,3,3.550000E+00,7.197410E+00,4.686154E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999310E+01,0.000000E+00 +2505122,fr,1,3.550000E+00,7.197410E+00,4.686154E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999310E+01,0.000000E+00 +2505127,fr,1,3.550000E+00,7.197410E+00,4.686154E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999303E+01,-9.000000E+01 +2505132,fr,7,3.650000E+00,7.197410E+00,4.686154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998771E+01,0.000000E+00 +2505133,fr,1,3.650000E+00,7.197410E+00,4.686154E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998771E+01,0.000000E+00 +2505134,fr,1,3.650000E+00,7.197410E+00,4.686154E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998771E+01,0.000000E+00 +2505135,fr,3,3.650000E+00,7.197410E+00,4.686154E+01,5.000000E+00,Active Shallow Crust,2.400002E+02,5.801390E+01,0.000000E+00 +2505138,fr,2,3.650000E+00,7.197410E+00,4.686154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998756E+01,-9.000000E+01 +2505144,fr,4,3.750000E+00,7.197410E+00,4.686154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +2505145,fr,2,3.750000E+00,7.197410E+00,4.686154E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998904E+01,0.000000E+00 +2505147,fr,1,3.750000E+00,7.197410E+00,4.686154E+01,5.000000E+00,Active Shallow Crust,2.400082E+02,5.801826E+01,0.000000E+00 +2505153,fr,2,3.750000E+00,7.197410E+00,4.686154E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.996750E+01,0.000000E+00 +2505156,fr,5,3.850000E+00,7.197410E+00,4.686154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2505157,fr,1,3.850000E+00,7.197410E+00,4.686154E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2505159,fr,1,3.850000E+00,7.197410E+00,4.686154E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799777E+01,0.000000E+00 +2505168,fr,3,3.950000E+00,7.197410E+00,4.686154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999130E+01,0.000000E+00 +2505169,fr,2,3.950000E+00,7.197410E+00,4.686154E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999130E+01,0.000000E+00 +2505170,fr,1,3.950000E+00,7.197410E+00,4.686154E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999130E+01,0.000000E+00 +2505171,fr,1,3.950000E+00,7.197410E+00,4.686154E+01,5.000000E+00,Active Shallow Crust,2.400201E+02,5.800484E+01,0.000000E+00 +2505172,fr,1,3.950000E+00,7.197410E+00,4.686154E+01,1.500000E+01,Active Shallow Crust,2.400201E+02,5.800484E+01,0.000000E+00 +2505174,fr,2,3.950000E+00,7.197410E+00,4.686154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999120E+01,-9.000000E+01 +2505177,fr,1,3.950000E+00,7.197410E+00,4.686154E+01,5.000000E+00,Active Shallow Crust,1.289003E+02,8.999348E+01,0.000000E+00 +2505180,fr,3,4.050000E+00,7.197410E+00,4.686154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998837E+01,0.000000E+00 +2505181,fr,2,4.050000E+00,7.197410E+00,4.686154E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998837E+01,0.000000E+00 +2505183,fr,1,4.050000E+00,7.197410E+00,4.686154E+01,5.000000E+00,Active Shallow Crust,2.400059E+02,5.800611E+01,0.000000E+00 +2505184,fr,1,4.050000E+00,7.197410E+00,4.686154E+01,1.500000E+01,Active Shallow Crust,2.400059E+02,5.800608E+01,0.000000E+00 +2505192,fr,2,4.150000E+00,7.197410E+00,4.686154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +2505193,fr,1,4.150000E+00,7.197410E+00,4.686154E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +2505198,fr,1,4.150000E+00,7.197410E+00,4.686154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998951E+01,-9.000000E+01 +2505200,fr,1,4.150000E+00,7.197410E+00,4.686154E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998951E+01,-9.000000E+01 +2505206,fr,1,4.250000E+00,7.197410E+00,4.686154E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +2505216,fr,1,4.350000E+00,7.197410E+00,4.686154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998902E+01,0.000000E+00 +2505220,fr,1,4.350000E+00,7.197410E+00,4.686154E+01,1.500000E+01,Active Shallow Crust,2.400080E+02,5.799608E+01,0.000000E+00 +2505228,fr,1,4.450000E+00,7.197410E+00,4.686154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +2505231,fr,2,4.450000E+00,7.197410E+00,4.686154E+01,5.000000E+00,Active Shallow Crust,2.400054E+02,5.799499E+01,0.000000E+00 +2505241,fr,1,4.550000E+00,7.197410E+00,4.686154E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998910E+01,0.000000E+00 +2505252,fr,1,4.650000E+00,7.197410E+00,4.686154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +2505276,fr,1,4.850000E+00,7.197410E+00,4.686154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999074E+01,0.000000E+00 +2505294,fr,1,4.950000E+00,7.197410E+00,4.686154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,-9.000000E+01 +2505314,fr,1,5.150000E+00,7.197410E+00,4.686154E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2505348,fr,2,5.450000E+00,7.197410E+00,4.686154E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2505405,fr,1,5.850000E+00,7.197410E+00,4.686154E+01,5.000000E+00,Active Shallow Crust,1.288671E+02,8.999146E+01,0.000000E+00 +2505609,fr,1,3.550000E+00,6.301030E+00,4.829132E+01,5.000000E+00,Active Shallow Crust,1.288955E+02,8.999329E+01,0.000000E+00 +2505612,fr,1,3.650000E+00,6.301030E+00,4.829132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998804E+01,0.000000E+00 +2505615,fr,1,3.650000E+00,6.301030E+00,4.829132E+01,5.000000E+00,Active Shallow Crust,2.400002E+02,5.801361E+01,0.000000E+00 +2505624,fr,1,3.750000E+00,6.301030E+00,4.829132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +2505626,fr,1,3.750000E+00,6.301030E+00,4.829132E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +2505643,fr,1,3.850000E+00,6.301030E+00,4.829132E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,-9.000000E+01 +2505708,fr,1,4.450000E+00,6.301030E+00,4.829132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +2505720,fr,1,4.550000E+00,6.301030E+00,4.829132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998939E+01,0.000000E+00 +2505768,fr,1,4.950000E+00,6.301030E+00,4.829132E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +2506587,fr,1,3.750000E+00,2.878980E+00,4.793631E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801797E+01,0.000000E+00 +2506600,fr,1,3.850000E+00,2.878980E+00,4.793631E+01,1.500000E+01,Active Shallow Crust,2.400110E+02,5.799797E+01,0.000000E+00 +2507043,fr,1,3.550000E+00,2.279180E+00,4.061693E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799826E+01,0.000000E+00 +2507052,fr,1,3.650000E+00,2.279180E+00,4.061693E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998977E+01,0.000000E+00 +2507076,fr,1,3.850000E+00,2.279180E+00,4.061693E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998916E+01,0.000000E+00 +2507523,fr,1,3.550000E+00,-2.706600E+00,4.536872E+01,5.000000E+00,Active Shallow Crust,2.400118E+02,5.799784E+01,0.000000E+00 +2508000,fr,2,3.550000E+00,1.199870E+00,4.890138E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2508001,fr,1,3.550000E+00,1.199870E+00,4.890138E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2508012,fr,1,3.650000E+00,1.199870E+00,4.890138E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +2508018,fr,1,3.650000E+00,1.199870E+00,4.890138E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998954E+01,-9.000000E+01 +2508036,fr,2,3.850000E+00,1.199870E+00,4.890138E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +2508060,fr,1,4.050000E+00,1.199870E+00,4.890138E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2508978,fr,1,3.650000E+00,8.799500E-01,4.582082E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,-9.000000E+01 +2508990,fr,1,3.750000E+00,8.799500E-01,4.582082E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,-9.000000E+01 +2508997,fr,1,3.850000E+00,8.799500E-01,4.582082E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +2509000,fr,1,3.850000E+00,8.799500E-01,4.582082E+01,1.500000E+01,Active Shallow Crust,2.400107E+02,5.799786E+01,0.000000E+00 +2509032,fr,1,4.150000E+00,8.799500E-01,4.582082E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2509045,fr,1,4.250000E+00,8.799500E-01,4.582082E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +2509062,fr,1,4.350000E+00,8.799500E-01,4.582082E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,-9.000000E+01 +2509093,fr,1,4.650000E+00,8.799500E-01,4.582082E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2509107,fr,1,4.750000E+00,8.799500E-01,4.582082E+01,5.000000E+00,Active Shallow Crust,2.400072E+02,5.800443E+01,0.000000E+00 +2509116,fr,1,4.850000E+00,8.799500E-01,4.582082E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2509443,fr,1,3.550000E+00,9.018550E+00,5.035440E+01,5.000000E+00,Active Shallow Crust,2.400111E+02,5.799966E+01,0.000000E+00 +2509453,fr,1,3.650000E+00,9.018550E+00,5.035440E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998853E+01,0.000000E+00 +2509458,fr,1,3.650000E+00,9.018550E+00,5.035440E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998840E+01,-9.000000E+01 +2509464,fr,1,3.750000E+00,9.018550E+00,5.035440E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998978E+01,0.000000E+00 +2509513,fr,1,4.150000E+00,9.018550E+00,5.035440E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998710E+01,0.000000E+00 +2509695,fr,1,5.650000E+00,9.018550E+00,5.035440E+01,5.000000E+00,Active Shallow Crust,2.400417E+02,5.800001E+01,0.000000E+00 +2510400,fr,2,3.550000E+00,1.364310E+00,4.598842E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +2510412,fr,3,3.650000E+00,1.364310E+00,4.598842E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999063E+01,0.000000E+00 +2510429,fr,1,3.750000E+00,1.364310E+00,4.598842E+01,2.750000E+01,Active Shallow Crust,2.400083E+02,5.801758E+01,0.000000E+00 +2510436,fr,3,3.850000E+00,1.364310E+00,4.598842E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +2510437,fr,1,3.850000E+00,1.364310E+00,4.598842E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +2510451,fr,1,3.950000E+00,1.364310E+00,4.598842E+01,5.000000E+00,Active Shallow Crust,2.400196E+02,5.800494E+01,0.000000E+00 +2510462,fr,1,4.050000E+00,1.364310E+00,4.598842E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +2510463,fr,1,4.050000E+00,1.364310E+00,4.598842E+01,5.000000E+00,Active Shallow Crust,2.400059E+02,5.800575E+01,0.000000E+00 +2510472,fr,1,4.150000E+00,1.364310E+00,4.598842E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +2510484,fr,1,4.250000E+00,1.364310E+00,4.598842E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +2510496,fr,2,4.350000E+00,1.364310E+00,4.598842E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2510497,fr,1,4.350000E+00,1.364310E+00,4.598842E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2510523,fr,1,4.550000E+00,1.364310E+00,4.598842E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.799739E+01,0.000000E+00 +2510532,fr,2,4.650000E+00,1.364310E+00,4.598842E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2510557,fr,1,4.850000E+00,1.364310E+00,4.598842E+01,1.500000E+01,Active Shallow Crust,3.599998E+02,8.999020E+01,0.000000E+00 +2510880,fr,2,3.550000E+00,6.122210E+00,4.516717E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999289E+01,0.000000E+00 +2510883,fr,1,3.550000E+00,6.122210E+00,4.516717E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799755E+01,0.000000E+00 +2510886,fr,1,3.550000E+00,6.122210E+00,4.516717E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999281E+01,-9.000000E+01 +2510895,fr,1,3.650000E+00,6.122210E+00,4.516717E+01,5.000000E+00,Active Shallow Crust,2.400005E+02,5.801378E+01,0.000000E+00 +2510898,fr,1,3.650000E+00,6.122210E+00,4.516717E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998718E+01,-9.000000E+01 +2510904,fr,2,3.750000E+00,6.122210E+00,4.516717E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998871E+01,0.000000E+00 +2510905,fr,1,3.750000E+00,6.122210E+00,4.516717E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998871E+01,0.000000E+00 +2510914,fr,1,3.750000E+00,6.122210E+00,4.516717E+01,1.500000E+01,Active Shallow Crust,1.288973E+02,8.996686E+01,0.000000E+00 +2510916,fr,1,3.850000E+00,6.122210E+00,4.516717E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2510917,fr,1,3.850000E+00,6.122210E+00,4.516717E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2510919,fr,2,3.850000E+00,6.122210E+00,4.516717E+01,5.000000E+00,Active Shallow Crust,2.400100E+02,5.799807E+01,0.000000E+00 +2510928,fr,1,3.950000E+00,6.122210E+00,4.516717E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999103E+01,0.000000E+00 +2510938,fr,1,3.950000E+00,6.122210E+00,4.516717E+01,1.500000E+01,Active Shallow Crust,1.288996E+02,8.999327E+01,0.000000E+00 +2510965,fr,1,4.250000E+00,6.122210E+00,4.516717E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999047E+01,0.000000E+00 +2510977,fr,2,4.350000E+00,6.122210E+00,4.516717E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998868E+01,0.000000E+00 +2510985,fr,1,4.350000E+00,6.122210E+00,4.516717E+01,5.000000E+00,Active Shallow Crust,1.288979E+02,8.998297E+01,0.000000E+00 +2510988,fr,1,4.450000E+00,6.122210E+00,4.516717E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2511036,fr,1,4.850000E+00,6.122210E+00,4.516717E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +2511039,fr,1,4.850000E+00,6.122210E+00,4.516717E+01,5.000000E+00,Active Shallow Crust,2.400168E+02,5.800221E+01,0.000000E+00 +2511043,fr,1,4.850000E+00,6.122210E+00,4.516717E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999034E+01,-9.000000E+01 +2511361,fr,1,3.550000E+00,7.941700E-01,4.160812E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998963E+01,0.000000E+00 +2511373,fr,1,3.650000E+00,7.941700E-01,4.160812E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998992E+01,0.000000E+00 +2511384,fr,1,3.750000E+00,7.941700E-01,4.160812E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +2511385,fr,1,3.750000E+00,7.941700E-01,4.160812E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +2511390,fr,1,3.750000E+00,7.941700E-01,4.160812E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999016E+01,-9.000000E+01 +2511396,fr,1,3.850000E+00,7.941700E-01,4.160812E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2511840,fr,3,3.550000E+00,1.740810E+00,4.241129E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999069E+01,0.000000E+00 +2511841,fr,2,3.550000E+00,1.740810E+00,4.241129E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999069E+01,0.000000E+00 +2511850,fr,1,3.550000E+00,1.740810E+00,4.241129E+01,1.500000E+01,Active Shallow Crust,1.288967E+02,8.999348E+01,0.000000E+00 +2511852,fr,2,3.650000E+00,1.740810E+00,4.241129E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2511855,fr,2,3.650000E+00,1.740810E+00,4.241129E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801275E+01,0.000000E+00 +2511858,fr,1,3.650000E+00,1.740810E+00,4.241129E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,-9.000000E+01 +2511865,fr,1,3.750000E+00,1.740810E+00,4.241129E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +2511867,fr,1,3.750000E+00,1.740810E+00,4.241129E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.801748E+01,0.000000E+00 +2511876,fr,1,3.850000E+00,1.740810E+00,4.241129E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +2511880,fr,1,3.850000E+00,1.740810E+00,4.241129E+01,1.500000E+01,Active Shallow Crust,2.400103E+02,5.799759E+01,0.000000E+00 +2511883,fr,1,3.850000E+00,1.740810E+00,4.241129E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998933E+01,-9.000000E+01 +2511888,fr,1,3.950000E+00,1.740810E+00,4.241129E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +2511889,fr,1,3.950000E+00,1.740810E+00,4.241129E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998943E+01,0.000000E+00 +2511903,fr,1,4.050000E+00,1.740810E+00,4.241129E+01,5.000000E+00,Active Shallow Crust,2.400055E+02,5.800575E+01,0.000000E+00 +2511908,fr,1,4.050000E+00,1.740810E+00,4.241129E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999047E+01,-9.000000E+01 +2511912,fr,1,4.150000E+00,1.740810E+00,4.241129E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998974E+01,0.000000E+00 +2511948,fr,1,4.450000E+00,1.740810E+00,4.241129E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +2511972,fr,1,4.650000E+00,1.740810E+00,4.241129E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2512119,fr,1,5.850000E+00,1.740810E+00,4.241129E+01,5.000000E+00,Active Shallow Crust,2.400397E+02,5.799884E+01,0.000000E+00 +2512320,fr,2,3.550000E+00,-6.141400E-01,4.826292E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2512322,fr,1,3.550000E+00,-6.141400E-01,4.826292E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2512323,fr,1,3.550000E+00,-6.141400E-01,4.826292E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799819E+01,0.000000E+00 +2512332,fr,1,3.650000E+00,-6.141400E-01,4.826292E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +2512333,fr,1,3.650000E+00,-6.141400E-01,4.826292E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999028E+01,0.000000E+00 +2512350,fr,1,3.750000E+00,-6.141400E-01,4.826292E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +2512369,fr,1,3.950000E+00,-6.141400E-01,4.826292E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2512384,fr,1,4.050000E+00,-6.141400E-01,4.826292E+01,1.500000E+01,Active Shallow Crust,2.400062E+02,5.800594E+01,0.000000E+00 +2512393,fr,1,4.150000E+00,-6.141400E-01,4.826292E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2512404,fr,1,4.250000E+00,-6.141400E-01,4.826292E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2512447,fr,1,4.550000E+00,-6.141400E-01,4.826292E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,-9.000000E+01 +2512503,fr,1,5.050000E+00,-6.141400E-01,4.826292E+01,5.000000E+00,Active Shallow Crust,2.400231E+02,5.799773E+01,0.000000E+00 +2512800,fr,1,3.550000E+00,5.059400E-01,4.511863E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999022E+01,0.000000E+00 +2512803,fr,1,3.550000E+00,5.059400E-01,4.511863E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799810E+01,0.000000E+00 +2512810,fr,1,3.550000E+00,5.059400E-01,4.511863E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.999377E+01,0.000000E+00 +2512812,fr,1,3.650000E+00,5.059400E-01,4.511863E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2512824,fr,1,3.750000E+00,5.059400E-01,4.511863E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +2512833,fr,1,3.750000E+00,5.059400E-01,4.511863E+01,5.000000E+00,Active Shallow Crust,1.288968E+02,8.996734E+01,0.000000E+00 +2512872,fr,1,4.150000E+00,5.059400E-01,4.511863E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +2512896,fr,1,4.350000E+00,5.059400E-01,4.511863E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +2513004,fr,1,5.250000E+00,5.059400E-01,4.511863E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2513046,fr,1,5.550000E+00,5.059400E-01,4.511863E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +2513074,fr,1,5.750000E+00,5.059400E-01,4.511863E+01,1.500000E+01,Active Shallow Crust,1.288752E+02,8.998852E+01,0.000000E+00 +2513280,fr,1,3.550000E+00,-5.314500E-01,4.652279E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +2513281,fr,1,3.550000E+00,-5.314500E-01,4.652279E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +2513293,fr,1,3.650000E+00,-5.314500E-01,4.652279E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +2513294,fr,1,3.650000E+00,-5.314500E-01,4.652279E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +2513296,fr,1,3.650000E+00,-5.314500E-01,4.652279E+01,1.500000E+01,Active Shallow Crust,2.400011E+02,5.801289E+01,0.000000E+00 +2513301,fr,1,3.650000E+00,-5.314500E-01,4.652279E+01,5.000000E+00,Active Shallow Crust,1.289002E+02,8.996352E+01,0.000000E+00 +2513314,fr,1,3.750000E+00,-5.314500E-01,4.652279E+01,1.500000E+01,Active Shallow Crust,1.288967E+02,8.996737E+01,0.000000E+00 +2513333,fr,1,3.950000E+00,-5.314500E-01,4.652279E+01,2.750000E+01,Active Shallow Crust,2.400198E+02,5.800495E+01,0.000000E+00 +2513342,fr,1,4.050000E+00,-5.314500E-01,4.652279E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2513358,fr,1,4.150000E+00,-5.314500E-01,4.652279E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,-9.000000E+01 +2513382,fr,1,4.350000E+00,-5.314500E-01,4.652279E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998987E+01,-9.000000E+01 +2513388,fr,1,4.450000E+00,-5.314500E-01,4.652279E+01,5.000000E+00,Active Shallow Crust,3.599998E+02,8.999015E+01,0.000000E+00 +2513389,fr,1,4.450000E+00,-5.314500E-01,4.652279E+01,1.500000E+01,Active Shallow Crust,3.599998E+02,8.999015E+01,0.000000E+00 +2513391,fr,1,4.450000E+00,-5.314500E-01,4.652279E+01,5.000000E+00,Active Shallow Crust,2.400052E+02,5.799467E+01,0.000000E+00 +2513400,fr,1,4.550000E+00,-5.314500E-01,4.652279E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2513434,fr,1,4.750000E+00,-5.314500E-01,4.652279E+01,1.500000E+01,Active Shallow Crust,1.288887E+02,8.998812E+01,0.000000E+00 +2513436,fr,1,4.850000E+00,-5.314500E-01,4.652279E+01,5.000000E+00,Active Shallow Crust,3.599999E+02,8.999010E+01,0.000000E+00 +2513760,fr,3,3.550000E+00,7.608980E+00,4.468385E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999283E+01,0.000000E+00 +2513761,fr,2,3.550000E+00,7.608980E+00,4.468385E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999283E+01,0.000000E+00 +2513763,fr,2,3.550000E+00,7.608980E+00,4.468385E+01,5.000000E+00,Active Shallow Crust,2.400119E+02,5.799788E+01,0.000000E+00 +2513764,fr,1,3.550000E+00,7.608980E+00,4.468385E+01,1.500000E+01,Active Shallow Crust,2.400119E+02,5.799788E+01,0.000000E+00 +2513772,fr,2,3.650000E+00,7.608980E+00,4.468385E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998722E+01,0.000000E+00 +2513775,fr,1,3.650000E+00,7.608980E+00,4.468385E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801223E+01,0.000000E+00 +2513790,fr,1,3.750000E+00,7.608980E+00,4.468385E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998848E+01,-9.000000E+01 +2513796,fr,1,3.850000E+00,7.608980E+00,4.468385E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2513797,fr,1,3.850000E+00,7.608980E+00,4.468385E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2513798,fr,1,3.850000E+00,7.608980E+00,4.468385E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2513812,fr,1,3.950000E+00,7.608980E+00,4.468385E+01,1.500000E+01,Active Shallow Crust,2.400195E+02,5.800547E+01,0.000000E+00 +2513817,fr,1,3.950000E+00,7.608980E+00,4.468385E+01,5.000000E+00,Active Shallow Crust,1.289017E+02,8.999322E+01,0.000000E+00 +2513820,fr,2,4.050000E+00,7.608980E+00,4.468385E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999194E+01,0.000000E+00 +2513832,fr,1,4.150000E+00,7.608980E+00,4.468385E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998922E+01,0.000000E+00 +2513844,fr,3,4.250000E+00,7.608980E+00,4.468385E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +2513845,fr,1,4.250000E+00,7.608980E+00,4.468385E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999039E+01,0.000000E+00 +2513868,fr,2,4.450000E+00,7.608980E+00,4.468385E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +2513880,fr,1,4.550000E+00,7.608980E+00,4.468385E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999093E+01,0.000000E+00 +2513884,fr,1,4.550000E+00,7.608980E+00,4.468385E+01,1.500000E+01,Active Shallow Crust,2.400087E+02,5.799746E+01,0.000000E+00 +2513892,fr,1,4.650000E+00,7.608980E+00,4.468385E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +2513989,fr,1,5.450000E+00,7.608980E+00,4.468385E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999034E+01,0.000000E+00 +2514132,fr,1,6.650000E+00,7.608993E+00,4.468385E+01,1.068981E+01,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2514240,fr,2,3.550000E+00,-3.075400E-01,4.694428E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2514241,fr,1,3.550000E+00,-3.075400E-01,4.694428E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2514243,fr,1,3.550000E+00,-3.075400E-01,4.694428E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799813E+01,0.000000E+00 +2514252,fr,1,3.650000E+00,-3.075400E-01,4.694428E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2514265,fr,1,3.750000E+00,-3.075400E-01,4.694428E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +2514268,fr,1,3.750000E+00,-3.075400E-01,4.694428E+01,1.500000E+01,Active Shallow Crust,2.400083E+02,5.801761E+01,0.000000E+00 +2514279,fr,1,3.850000E+00,-3.075400E-01,4.694428E+01,5.000000E+00,Active Shallow Crust,2.400109E+02,5.799782E+01,0.000000E+00 +2514290,fr,1,3.950000E+00,-3.075400E-01,4.694428E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,0.000000E+00 +2514294,fr,1,3.950000E+00,-3.075400E-01,4.694428E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,-9.000000E+01 +2514300,fr,1,4.050000E+00,-3.075400E-01,4.694428E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +2514309,fr,1,4.050000E+00,-3.075400E-01,4.694428E+01,5.000000E+00,Active Shallow Crust,1.288904E+02,8.999371E+01,0.000000E+00 +2514312,fr,3,4.150000E+00,-3.075400E-01,4.694428E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +2514315,fr,1,4.150000E+00,-3.075400E-01,4.694428E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799731E+01,0.000000E+00 +2514334,fr,1,4.250000E+00,-3.075400E-01,4.694428E+01,1.500000E+01,Active Shallow Crust,1.288943E+02,8.998093E+01,0.000000E+00 +2514336,fr,1,4.350000E+00,-3.075400E-01,4.694428E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2514337,fr,1,4.350000E+00,-3.075400E-01,4.694428E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2514346,fr,1,4.350000E+00,-3.075400E-01,4.694428E+01,1.500000E+01,Active Shallow Crust,1.288978E+02,8.998273E+01,0.000000E+00 +2514355,fr,1,4.450000E+00,-3.075400E-01,4.694428E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,-9.000000E+01 +2514375,fr,1,4.650000E+00,-3.075400E-01,4.694428E+01,5.000000E+00,Active Shallow Crust,2.400110E+02,5.799427E+01,0.000000E+00 +2514384,fr,1,4.750000E+00,-3.075400E-01,4.694428E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2514414,fr,1,4.950000E+00,-3.075400E-01,4.694428E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +2514516,fr,1,5.850000E+00,-3.075400E-01,4.694428E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999001E+01,0.000000E+00 +2514744,fr,1,3.750000E+00,3.910760E+00,5.245948E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +2515680,fr,2,3.550000E+00,2.460000E-03,4.602468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2515681,fr,2,3.550000E+00,2.460000E-03,4.602468E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2515692,fr,2,3.650000E+00,2.460000E-03,4.602468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2515704,fr,1,3.750000E+00,2.460000E-03,4.602468E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +2515716,fr,2,3.850000E+00,2.460000E-03,4.602468E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2515729,fr,1,3.950000E+00,2.460000E-03,4.602468E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2515752,fr,1,4.150000E+00,2.460000E-03,4.602468E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +2515764,fr,1,4.250000E+00,2.460000E-03,4.602468E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +2515765,fr,1,4.250000E+00,2.460000E-03,4.602468E+01,1.500000E+01,Active Shallow Crust,3.600000E+02,8.999000E+01,0.000000E+00 +2515834,fr,1,4.750000E+00,2.460000E-03,4.602468E+01,1.500000E+01,Active Shallow Crust,1.288888E+02,8.998808E+01,0.000000E+00 +2515893,fr,1,5.250000E+00,2.460001E-03,4.602468E+01,5.000000E+00,Active Shallow Crust,1.288835E+02,8.998699E+01,0.000000E+00 +2515965,fr,1,5.850000E+00,2.460000E-03,4.602468E+01,5.000000E+00,Active Shallow Crust,1.288701E+02,8.998938E+01,0.000000E+00 +2516165,fr,1,3.550000E+00,5.233330E+00,4.725925E+01,2.750000E+01,Active Shallow Crust,2.400120E+02,5.799874E+01,0.000000E+00 +2516169,fr,1,3.550000E+00,5.233330E+00,4.725925E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.999316E+01,0.000000E+00 +2516173,fr,1,3.650000E+00,5.233330E+00,4.725925E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998780E+01,0.000000E+00 +2516184,fr,1,3.750000E+00,5.233330E+00,4.725925E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998913E+01,0.000000E+00 +2516185,fr,1,3.750000E+00,5.233330E+00,4.725925E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998913E+01,0.000000E+00 +2516187,fr,1,3.750000E+00,5.233330E+00,4.725925E+01,5.000000E+00,Active Shallow Crust,2.400087E+02,5.801769E+01,0.000000E+00 +2516205,fr,1,3.850000E+00,5.233330E+00,4.725925E+01,5.000000E+00,Active Shallow Crust,1.288948E+02,8.999516E+01,0.000000E+00 +2516209,fr,1,3.950000E+00,5.233330E+00,4.725925E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999136E+01,0.000000E+00 +2516222,fr,1,4.050000E+00,5.233330E+00,4.725925E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998846E+01,0.000000E+00 +2516280,fr,1,4.550000E+00,5.233330E+00,4.725925E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998918E+01,0.000000E+00 +2516331,fr,1,4.950000E+00,5.233330E+00,4.725925E+01,5.000000E+00,Active Shallow Crust,2.400122E+02,5.800464E+01,0.000000E+00 +2516388,fr,1,5.450000E+00,5.233330E+00,4.725925E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2517121,fr,1,3.550000E+00,2.554890E+00,4.465980E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998924E+01,0.000000E+00 +2517123,fr,1,3.550000E+00,2.554890E+00,4.465980E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799825E+01,0.000000E+00 +2517145,fr,1,3.750000E+00,2.554890E+00,4.465980E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998860E+01,0.000000E+00 +2517157,fr,1,3.850000E+00,2.554890E+00,4.465980E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2517168,fr,2,3.950000E+00,2.554890E+00,4.465980E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999095E+01,0.000000E+00 +2517180,fr,1,4.050000E+00,2.554890E+00,4.465980E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2517181,fr,1,4.050000E+00,2.554890E+00,4.465980E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2517196,fr,1,4.150000E+00,2.554890E+00,4.465980E+01,1.500000E+01,Active Shallow Crust,2.400079E+02,5.799743E+01,0.000000E+00 +2517303,fr,1,5.050000E+00,2.554890E+00,4.465980E+01,5.000000E+00,Active Shallow Crust,2.400211E+02,5.799745E+01,0.000000E+00 +2517310,fr,1,5.050000E+00,2.554890E+00,4.465980E+01,1.500000E+01,Active Shallow Crust,1.288863E+02,8.999040E+01,0.000000E+00 +2517600,fr,1,3.550000E+00,8.066570E+00,4.875080E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998670E+01,0.000000E+00 +2517602,fr,2,3.550000E+00,8.066570E+00,4.875080E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998670E+01,0.000000E+00 +2517603,fr,1,3.550000E+00,8.066570E+00,4.875080E+01,5.000000E+00,Active Shallow Crust,2.400113E+02,5.799908E+01,0.000000E+00 +2517611,fr,1,3.550000E+00,8.066570E+00,4.875080E+01,2.750000E+01,Active Shallow Crust,1.288958E+02,8.999335E+01,0.000000E+00 +2517636,fr,1,3.850000E+00,8.066570E+00,4.875080E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999059E+01,0.000000E+00 +2517643,fr,1,3.850000E+00,8.066570E+00,4.875080E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999048E+01,-9.000000E+01 +2517649,fr,1,3.950000E+00,8.066570E+00,4.875080E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999161E+01,0.000000E+00 +2517666,fr,1,4.050000E+00,8.066570E+00,4.875080E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999243E+01,-9.000000E+01 +2517726,fr,1,4.550000E+00,8.066570E+00,4.875080E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999149E+01,-9.000000E+01 +2517780,fr,1,5.050000E+00,8.066570E+00,4.875080E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999054E+01,0.000000E+00 +2517810,fr,1,5.250000E+00,8.066570E+00,4.875080E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999049E+01,-9.000000E+01 +2518560,fr,1,3.550000E+00,4.205510E+00,4.184927E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999249E+01,0.000000E+00 +2518572,fr,1,3.650000E+00,4.205510E+00,4.184927E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999331E+01,0.000000E+00 +2518584,fr,1,3.750000E+00,4.205510E+00,4.184927E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998807E+01,0.000000E+00 +2518620,fr,1,4.050000E+00,4.205510E+00,4.184927E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999155E+01,0.000000E+00 +2519052,fr,1,3.650000E+00,7.101960E+00,4.977313E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998839E+01,0.000000E+00 +2519053,fr,1,3.650000E+00,7.101960E+00,4.977313E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998839E+01,0.000000E+00 +2519065,fr,1,3.750000E+00,7.101960E+00,4.977313E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +2519067,fr,1,3.750000E+00,7.101960E+00,4.977313E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.801796E+01,0.000000E+00 +2519079,fr,1,3.850000E+00,7.101960E+00,4.977313E+01,5.000000E+00,Active Shallow Crust,2.400117E+02,5.799827E+01,0.000000E+00 +2519125,fr,1,4.250000E+00,7.101960E+00,4.977313E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999127E+01,0.000000E+00 +2519178,fr,1,4.650000E+00,7.101960E+00,4.977313E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999072E+01,-9.000000E+01 +2519526,fr,1,3.550000E+00,5.140710E+00,4.318498E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999256E+01,-9.000000E+01 +2519541,fr,1,3.650000E+00,5.140710E+00,4.318498E+01,5.000000E+00,Active Shallow Crust,1.288998E+02,8.996346E+01,0.000000E+00 +2520480,fr,2,3.550000E+00,1.703400E+00,4.800359E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2520482,fr,1,3.550000E+00,1.703400E+00,4.800359E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2520517,fr,1,3.850000E+00,1.703400E+00,4.800359E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +2520530,fr,1,3.950000E+00,1.703400E+00,4.800359E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999043E+01,0.000000E+00 +2520552,fr,1,4.150000E+00,1.703400E+00,4.800359E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,0.000000E+00 +2520588,fr,1,4.450000E+00,1.703400E+00,4.800359E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,0.000000E+00 +2520984,fr,1,3.750000E+00,-4.900400E+00,4.802172E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998929E+01,0.000000E+00 +2520998,fr,1,3.850000E+00,-4.900400E+00,4.802172E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999045E+01,0.000000E+00 +2521029,fr,1,4.050000E+00,-4.900400E+00,4.802172E+01,5.000000E+00,Active Shallow Crust,1.288907E+02,8.999242E+01,0.000000E+00 +2521047,fr,1,4.250000E+00,-4.900400E+00,4.802172E+01,5.000000E+00,Active Shallow Crust,2.400074E+02,5.799435E+01,0.000000E+00 +2521062,fr,1,4.350000E+00,-4.900400E+00,4.802172E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998914E+01,-9.000000E+01 +2521462,fr,1,3.650000E+00,-3.843400E-01,4.867825E+01,1.500000E+01,Active Shallow Crust,1.289002E+02,8.996350E+01,0.000000E+00 +2521464,fr,2,3.750000E+00,-3.843400E-01,4.867825E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +2521466,fr,1,3.750000E+00,-3.843400E-01,4.867825E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +2521476,fr,1,3.850000E+00,-3.843400E-01,4.867825E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998998E+01,0.000000E+00 +2521488,fr,1,3.950000E+00,-3.843400E-01,4.867825E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2521501,fr,1,4.050000E+00,-3.843400E-01,4.867825E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2521548,fr,1,4.450000E+00,-3.843400E-01,4.867825E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2521557,fr,1,4.450000E+00,-3.843400E-01,4.867825E+01,5.000000E+00,Active Shallow Crust,1.288917E+02,8.999373E+01,0.000000E+00 +2521596,fr,1,4.850000E+00,-3.843400E-01,4.867825E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999003E+01,0.000000E+00 +2521920,fr,3,3.550000E+00,9.068600E-01,4.257409E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +2521921,fr,2,3.550000E+00,9.068600E-01,4.257409E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +2521922,fr,3,3.550000E+00,9.068600E-01,4.257409E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998979E+01,0.000000E+00 +2521923,fr,2,3.550000E+00,9.068600E-01,4.257409E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799810E+01,0.000000E+00 +2521924,fr,3,3.550000E+00,9.068600E-01,4.257409E+01,1.500000E+01,Active Shallow Crust,2.400120E+02,5.799810E+01,0.000000E+00 +2521925,fr,1,3.550000E+00,9.068600E-01,4.257409E+01,2.750000E+01,Active Shallow Crust,2.400120E+02,5.799800E+01,0.000000E+00 +2521926,fr,1,3.550000E+00,9.068600E-01,4.257409E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,-9.000000E+01 +2521932,fr,1,3.650000E+00,9.068600E-01,4.257409E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2521933,fr,1,3.650000E+00,9.068600E-01,4.257409E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2521935,fr,1,3.650000E+00,9.068600E-01,4.257409E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801283E+01,0.000000E+00 +2521941,fr,1,3.650000E+00,9.068600E-01,4.257409E+01,5.000000E+00,Active Shallow Crust,1.289007E+02,8.996352E+01,0.000000E+00 +2521945,fr,2,3.750000E+00,9.068600E-01,4.257409E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998968E+01,0.000000E+00 +2521954,fr,1,3.750000E+00,9.068600E-01,4.257409E+01,1.500000E+01,Active Shallow Crust,1.288970E+02,8.996735E+01,0.000000E+00 +2521956,fr,1,3.850000E+00,9.068600E-01,4.257409E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2521968,fr,1,3.950000E+00,9.068600E-01,4.257409E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2521969,fr,1,3.950000E+00,9.068600E-01,4.257409E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2521974,fr,1,3.950000E+00,9.068600E-01,4.257409E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998993E+01,-9.000000E+01 +2521975,fr,1,3.950000E+00,9.068600E-01,4.257409E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,-9.000000E+01 +2521980,fr,2,4.050000E+00,9.068600E-01,4.257409E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +2521983,fr,1,4.050000E+00,9.068600E-01,4.257409E+01,5.000000E+00,Active Shallow Crust,2.400053E+02,5.800578E+01,0.000000E+00 +2521985,fr,1,4.050000E+00,9.068600E-01,4.257409E+01,2.750000E+01,Active Shallow Crust,2.400053E+02,5.800575E+01,0.000000E+00 +2522005,fr,1,4.250000E+00,9.068600E-01,4.257409E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +2522016,fr,1,4.350000E+00,9.068600E-01,4.257409E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2522052,fr,2,4.650000E+00,9.068600E-01,4.257409E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2522088,fr,1,4.950000E+00,9.068600E-01,4.257409E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999000E+01,0.000000E+00 +2522101,fr,1,5.050000E+00,9.068600E-01,4.257409E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998993E+01,0.000000E+00 +2522401,fr,1,3.550000E+00,1.668180E+00,4.547291E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +2522404,fr,1,3.550000E+00,1.668180E+00,4.547291E+01,1.500000E+01,Active Shallow Crust,2.400120E+02,5.799847E+01,0.000000E+00 +2522436,fr,1,3.850000E+00,1.668180E+00,4.547291E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2522449,fr,1,3.950000E+00,1.668180E+00,4.547291E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2522469,fr,1,4.050000E+00,1.668180E+00,4.547291E+01,5.000000E+00,Active Shallow Crust,1.288906E+02,8.999354E+01,0.000000E+00 +2522473,fr,1,4.150000E+00,1.668180E+00,4.547291E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +2522479,fr,1,4.150000E+00,1.668180E+00,4.547291E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,-9.000000E+01 +2523384,fr,1,3.750000E+00,6.510320E+00,4.982684E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +2523408,fr,1,3.950000E+00,6.510320E+00,4.982684E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999179E+01,0.000000E+00 +2523420,fr,1,4.050000E+00,6.510320E+00,4.982684E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998903E+01,0.000000E+00 +2523448,fr,1,4.250000E+00,6.510320E+00,4.982684E+01,1.500000E+01,Active Shallow Crust,2.400081E+02,5.799436E+01,0.000000E+00 +2523648,fr,1,5.950000E+00,6.510320E+00,4.982684E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2523840,fr,1,3.550000E+00,4.141600E+00,4.774578E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999322E+01,0.000000E+00 +2523884,fr,1,3.850000E+00,4.141600E+00,4.774578E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999029E+01,-9.000000E+01 +2523888,fr,1,3.950000E+00,4.141600E+00,4.774578E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999144E+01,0.000000E+00 +2523960,fr,1,4.550000E+00,4.141600E+00,4.774578E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998928E+01,0.000000E+00 +2523993,fr,1,4.750000E+00,4.141600E+00,4.774578E+01,5.000000E+00,Active Shallow Crust,1.288884E+02,8.998824E+01,0.000000E+00 +2524329,fr,1,3.550000E+00,3.278680E+00,4.184947E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999437E+01,0.000000E+00 +2524332,fr,1,3.650000E+00,3.278680E+00,4.184947E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2524333,fr,2,3.650000E+00,3.278680E+00,4.184947E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2524338,fr,1,3.650000E+00,3.278680E+00,4.184947E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +2524352,fr,1,3.750000E+00,3.278680E+00,4.184947E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999094E+01,-9.000000E+01 +2524374,fr,1,3.950000E+00,3.278680E+00,4.184947E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999041E+01,-9.000000E+01 +2524380,fr,1,4.050000E+00,3.278680E+00,4.184947E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998944E+01,0.000000E+00 +2524419,fr,1,4.350000E+00,3.278680E+00,4.184947E+01,5.000000E+00,Active Shallow Crust,2.400077E+02,5.799555E+01,0.000000E+00 +2524428,fr,1,4.450000E+00,3.278680E+00,4.184947E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +2524620,fr,1,6.050000E+00,3.278681E+00,4.184947E+01,5.357596E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2524800,fr,2,3.550000E+00,5.015860E+00,4.593762E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999299E+01,0.000000E+00 +2524801,fr,1,3.550000E+00,5.015860E+00,4.593762E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999299E+01,0.000000E+00 +2524807,fr,1,3.550000E+00,5.015860E+00,4.593762E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999290E+01,-9.000000E+01 +2524809,fr,1,3.550000E+00,5.015860E+00,4.593762E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.999299E+01,0.000000E+00 +2524812,fr,3,3.650000E+00,5.015860E+00,4.593762E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998750E+01,0.000000E+00 +2524821,fr,1,3.650000E+00,5.015860E+00,4.593762E+01,5.000000E+00,Active Shallow Crust,1.289009E+02,8.996352E+01,0.000000E+00 +2524824,fr,1,3.750000E+00,5.015860E+00,4.593762E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998886E+01,0.000000E+00 +2524827,fr,1,3.750000E+00,5.015860E+00,4.593762E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.801699E+01,0.000000E+00 +2524833,fr,1,3.750000E+00,5.015860E+00,4.593762E+01,5.000000E+00,Active Shallow Crust,1.288972E+02,8.996689E+01,0.000000E+00 +2524837,fr,1,3.850000E+00,5.015860E+00,4.593762E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2524848,fr,2,3.950000E+00,5.015860E+00,4.593762E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999115E+01,0.000000E+00 +2524851,fr,1,3.950000E+00,5.015860E+00,4.593762E+01,5.000000E+00,Active Shallow Crust,2.400200E+02,5.800466E+01,0.000000E+00 +2524862,fr,1,4.050000E+00,5.015860E+00,4.593762E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998817E+01,0.000000E+00 +2524871,fr,1,4.050000E+00,5.015860E+00,4.593762E+01,2.750000E+01,Active Shallow Crust,1.288896E+02,8.999409E+01,0.000000E+00 +2524896,fr,1,4.350000E+00,5.015860E+00,4.593762E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998883E+01,0.000000E+00 +2524908,fr,1,4.450000E+00,5.015860E+00,4.593762E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2524920,fr,3,4.550000E+00,5.015860E+00,4.593762E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998891E+01,0.000000E+00 +2524956,fr,1,4.850000E+00,5.015860E+00,4.593762E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999058E+01,0.000000E+00 +2525760,fr,2,3.550000E+00,-2.508000E+00,4.206516E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998877E+01,0.000000E+00 +2525763,fr,1,3.550000E+00,-2.508000E+00,4.206516E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799780E+01,0.000000E+00 +2525766,fr,1,3.550000E+00,-2.508000E+00,4.206516E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998864E+01,-9.000000E+01 +2525772,fr,1,3.650000E+00,-2.508000E+00,4.206516E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2525775,fr,1,3.650000E+00,-2.508000E+00,4.206516E+01,5.000000E+00,Active Shallow Crust,2.400007E+02,5.801236E+01,0.000000E+00 +2525781,fr,1,3.650000E+00,-2.508000E+00,4.206516E+01,5.000000E+00,Active Shallow Crust,1.289017E+02,8.996344E+01,0.000000E+00 +2525786,fr,1,3.750000E+00,-2.508000E+00,4.206516E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999108E+01,0.000000E+00 +2525796,fr,1,3.850000E+00,-2.508000E+00,4.206516E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,0.000000E+00 +2525799,fr,1,3.850000E+00,-2.508000E+00,4.206516E+01,5.000000E+00,Active Shallow Crust,2.400100E+02,5.799814E+01,0.000000E+00 +2525808,fr,1,3.950000E+00,-2.508000E+00,4.206516E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999055E+01,0.000000E+00 +2525821,fr,1,4.050000E+00,-2.508000E+00,4.206516E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +2525865,fr,1,4.350000E+00,-2.508000E+00,4.206516E+01,5.000000E+00,Active Shallow Crust,1.288985E+02,8.998287E+01,0.000000E+00 +2525979,fr,1,5.350000E+00,-2.508000E+00,4.206516E+01,5.000000E+00,Active Shallow Crust,2.400220E+02,5.800110E+01,0.000000E+00 +2526051,fr,1,5.950000E+00,-2.508000E+00,4.206516E+01,5.000000E+00,Active Shallow Crust,2.400429E+02,5.800141E+01,0.000000E+00 +2526240,fr,1,3.550000E+00,2.874970E+00,4.352366E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998903E+01,0.000000E+00 +2526241,fr,1,3.550000E+00,2.874970E+00,4.352366E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998903E+01,0.000000E+00 +2526252,fr,1,3.650000E+00,2.874970E+00,4.352366E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2526253,fr,1,3.650000E+00,2.874970E+00,4.352366E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999023E+01,0.000000E+00 +2526278,fr,1,3.850000E+00,2.874970E+00,4.352366E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998965E+01,0.000000E+00 +2526292,fr,1,3.950000E+00,2.874970E+00,4.352366E+01,1.500000E+01,Active Shallow Crust,2.400197E+02,5.800505E+01,0.000000E+00 +2526310,fr,1,4.050000E+00,2.874970E+00,4.352366E+01,1.500000E+01,Active Shallow Crust,1.288915E+02,8.999281E+01,0.000000E+00 +2526360,fr,1,4.550000E+00,2.874970E+00,4.352366E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,0.000000E+00 +2526395,fr,1,4.750000E+00,2.874970E+00,4.352366E+01,2.750000E+01,Active Shallow Crust,1.288898E+02,8.998800E+01,0.000000E+00 +2526420,fr,1,5.050000E+00,2.874970E+00,4.352366E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999025E+01,0.000000E+00 +2526745,fr,1,3.750000E+00,5.543300E+00,4.121678E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998795E+01,0.000000E+00 +2526809,fr,1,4.250000E+00,5.543300E+00,4.121678E+01,2.750000E+01,Active Shallow Crust,2.400067E+02,5.799435E+01,0.000000E+00 +2527200,fr,1,3.550000E+00,2.170700E-01,5.224576E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2527287,fr,1,4.250000E+00,2.170700E-01,5.224576E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.799432E+01,0.000000E+00 +2527692,fr,3,3.650000E+00,5.305140E+00,4.280528E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998682E+01,0.000000E+00 +2527695,fr,1,3.650000E+00,5.305140E+00,4.280528E+01,5.000000E+00,Active Shallow Crust,2.400005E+02,5.801245E+01,0.000000E+00 +2527719,fr,1,3.850000E+00,5.305140E+00,4.280528E+01,5.000000E+00,Active Shallow Crust,2.400101E+02,5.799765E+01,0.000000E+00 +2528640,fr,1,3.550000E+00,2.210860E+00,5.089686E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999046E+01,0.000000E+00 +2528644,fr,1,3.550000E+00,2.210860E+00,5.089686E+01,1.500000E+01,Active Shallow Crust,2.400120E+02,5.799865E+01,0.000000E+00 +2528652,fr,2,3.650000E+00,2.210860E+00,5.089686E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998866E+01,0.000000E+00 +2528657,fr,1,3.650000E+00,2.210860E+00,5.089686E+01,2.750000E+01,Active Shallow Crust,2.400019E+02,5.801260E+01,0.000000E+00 +2528664,fr,1,3.750000E+00,2.210860E+00,5.089686E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998990E+01,0.000000E+00 +2528677,fr,1,3.850000E+00,2.210860E+00,5.089686E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999100E+01,0.000000E+00 +2528703,fr,1,4.050000E+00,2.210860E+00,5.089686E+01,5.000000E+00,Active Shallow Crust,2.400066E+02,5.800617E+01,0.000000E+00 +2528705,fr,1,4.050000E+00,2.210860E+00,5.089686E+01,2.750000E+01,Active Shallow Crust,2.400066E+02,5.800615E+01,0.000000E+00 +2528715,fr,1,4.150000E+00,2.210860E+00,5.089686E+01,5.000000E+00,Active Shallow Crust,2.400091E+02,5.799742E+01,0.000000E+00 +2528760,fr,1,4.550000E+00,2.210860E+00,5.089686E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2528784,fr,1,4.750000E+00,2.210860E+00,5.089686E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +2528834,fr,1,5.150000E+00,2.210860E+00,5.089686E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2529120,fr,1,3.550000E+00,6.169200E+00,4.840168E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999331E+01,0.000000E+00 +2529145,fr,1,3.750000E+00,6.169200E+00,4.840168E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998936E+01,0.000000E+00 +2529156,fr,1,3.850000E+00,6.169200E+00,4.840168E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,0.000000E+00 +2529170,fr,1,3.950000E+00,6.169200E+00,4.840168E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999155E+01,0.000000E+00 +2529180,fr,1,4.050000E+00,6.169200E+00,4.840168E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998871E+01,0.000000E+00 +2529185,fr,1,4.050000E+00,6.169200E+00,4.840168E+01,2.750000E+01,Active Shallow Crust,2.400056E+02,5.800627E+01,0.000000E+00 +2529216,fr,1,4.350000E+00,6.169200E+00,4.840168E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998934E+01,0.000000E+00 +2529241,fr,1,4.550000E+00,6.169200E+00,4.840168E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998941E+01,0.000000E+00 +2529384,fr,1,5.750000E+00,6.169200E+00,4.840168E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998989E+01,0.000000E+00 +2529600,fr,1,3.550000E+00,1.842260E+00,4.508255E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998932E+01,0.000000E+00 +2529612,fr,1,3.650000E+00,1.842260E+00,4.508255E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +2529614,fr,1,3.650000E+00,1.842260E+00,4.508255E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999048E+01,0.000000E+00 +2529624,fr,1,3.750000E+00,1.842260E+00,4.508255E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2529640,fr,1,3.850000E+00,1.842260E+00,4.508255E+01,1.500000E+01,Active Shallow Crust,2.400106E+02,5.799786E+01,0.000000E+00 +2529663,fr,1,4.050000E+00,1.842260E+00,4.508255E+01,5.000000E+00,Active Shallow Crust,2.400058E+02,5.800583E+01,0.000000E+00 +2529664,fr,1,4.050000E+00,1.842260E+00,4.508255E+01,1.500000E+01,Active Shallow Crust,2.400058E+02,5.800581E+01,0.000000E+00 +2529792,fr,1,5.150000E+00,1.842260E+00,4.508255E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999012E+01,0.000000E+00 +2530081,fr,1,3.550000E+00,-4.046150E+00,4.933053E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998685E+01,0.000000E+00 +2530093,fr,1,3.650000E+00,-4.046150E+00,4.933053E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998829E+01,0.000000E+00 +2530147,fr,1,4.050000E+00,-4.046150E+00,4.933053E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998878E+01,-9.000000E+01 +2530560,fr,9,3.550000E+00,7.617300E+00,4.626062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999303E+01,0.000000E+00 +2530561,fr,2,3.550000E+00,7.617300E+00,4.626062E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999303E+01,0.000000E+00 +2530563,fr,3,3.550000E+00,7.617300E+00,4.626062E+01,5.000000E+00,Active Shallow Crust,2.400124E+02,5.799814E+01,0.000000E+00 +2530564,fr,2,3.550000E+00,7.617300E+00,4.626062E+01,1.500000E+01,Active Shallow Crust,2.400124E+02,5.799814E+01,0.000000E+00 +2530565,fr,1,3.550000E+00,7.617300E+00,4.626062E+01,2.750000E+01,Active Shallow Crust,2.400124E+02,5.799804E+01,0.000000E+00 +2530566,fr,4,3.550000E+00,7.617300E+00,4.626062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999295E+01,-9.000000E+01 +2530569,fr,1,3.550000E+00,7.617300E+00,4.626062E+01,5.000000E+00,Active Shallow Crust,1.288966E+02,8.999303E+01,0.000000E+00 +2530570,fr,1,3.550000E+00,7.617300E+00,4.626062E+01,1.500000E+01,Active Shallow Crust,1.288966E+02,8.999303E+01,0.000000E+00 +2530572,fr,7,3.650000E+00,7.617300E+00,4.626062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998757E+01,0.000000E+00 +2530573,fr,1,3.650000E+00,7.617300E+00,4.626062E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998757E+01,0.000000E+00 +2530574,fr,2,3.650000E+00,7.617300E+00,4.626062E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998757E+01,0.000000E+00 +2530575,fr,2,3.650000E+00,7.617300E+00,4.626062E+01,5.000000E+00,Active Shallow Crust,2.399999E+02,5.801335E+01,0.000000E+00 +2530577,fr,1,3.650000E+00,7.617300E+00,4.626062E+01,2.750000E+01,Active Shallow Crust,2.399999E+02,5.801326E+01,0.000000E+00 +2530578,fr,1,3.650000E+00,7.617300E+00,4.626062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998743E+01,-9.000000E+01 +2530579,fr,1,3.650000E+00,7.617300E+00,4.626062E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998743E+01,-9.000000E+01 +2530581,fr,1,3.650000E+00,7.617300E+00,4.626062E+01,5.000000E+00,Active Shallow Crust,1.289005E+02,8.996352E+01,0.000000E+00 +2530583,fr,1,3.650000E+00,7.617300E+00,4.626062E+01,2.750000E+01,Active Shallow Crust,1.289005E+02,8.996352E+01,0.000000E+00 +2530584,fr,6,3.750000E+00,7.617300E+00,4.626062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998892E+01,0.000000E+00 +2530585,fr,1,3.750000E+00,7.617300E+00,4.626062E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998892E+01,0.000000E+00 +2530587,fr,1,3.750000E+00,7.617300E+00,4.626062E+01,5.000000E+00,Active Shallow Crust,2.400090E+02,5.801702E+01,0.000000E+00 +2530590,fr,1,3.750000E+00,7.617300E+00,4.626062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998879E+01,-9.000000E+01 +2530594,fr,1,3.750000E+00,7.617300E+00,4.626062E+01,1.500000E+01,Active Shallow Crust,1.288973E+02,8.996690E+01,0.000000E+00 +2530596,fr,6,3.850000E+00,7.617300E+00,4.626062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2530597,fr,1,3.850000E+00,7.617300E+00,4.626062E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2530599,fr,1,3.850000E+00,7.617300E+00,4.626062E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799723E+01,0.000000E+00 +2530600,fr,1,3.850000E+00,7.617300E+00,4.626062E+01,1.500000E+01,Active Shallow Crust,2.400107E+02,5.799723E+01,0.000000E+00 +2530603,fr,2,3.850000E+00,7.617300E+00,4.626062E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,-9.000000E+01 +2530605,fr,1,3.850000E+00,7.617300E+00,4.626062E+01,5.000000E+00,Active Shallow Crust,1.288948E+02,8.999506E+01,0.000000E+00 +2530608,fr,6,3.950000E+00,7.617300E+00,4.626062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999120E+01,0.000000E+00 +2530611,fr,1,3.950000E+00,7.617300E+00,4.626062E+01,5.000000E+00,Active Shallow Crust,2.400203E+02,5.800496E+01,0.000000E+00 +2530612,fr,1,3.950000E+00,7.617300E+00,4.626062E+01,1.500000E+01,Active Shallow Crust,2.400203E+02,5.800496E+01,0.000000E+00 +2530620,fr,2,4.050000E+00,7.617300E+00,4.626062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998824E+01,0.000000E+00 +2530621,fr,1,4.050000E+00,7.617300E+00,4.626062E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998824E+01,0.000000E+00 +2530628,fr,1,4.050000E+00,7.617300E+00,4.626062E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998810E+01,-9.000000E+01 +2530632,fr,5,4.150000E+00,7.617300E+00,4.626062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,0.000000E+00 +2530638,fr,2,4.150000E+00,7.617300E+00,4.626062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998940E+01,-9.000000E+01 +2530644,fr,6,4.250000E+00,7.617300E+00,4.626062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,0.000000E+00 +2530647,fr,1,4.250000E+00,7.617300E+00,4.626062E+01,5.000000E+00,Active Shallow Crust,2.400073E+02,5.799407E+01,0.000000E+00 +2530656,fr,2,4.350000E+00,7.617300E+00,4.626062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998890E+01,0.000000E+00 +2530658,fr,1,4.350000E+00,7.617300E+00,4.626062E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998890E+01,0.000000E+00 +2530659,fr,2,4.350000E+00,7.617300E+00,4.626062E+01,5.000000E+00,Active Shallow Crust,2.400080E+02,5.799618E+01,0.000000E+00 +2530668,fr,1,4.450000E+00,7.617300E+00,4.626062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2530669,fr,1,4.450000E+00,7.617300E+00,4.626062E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2530680,fr,5,4.550000E+00,7.617300E+00,4.626062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998898E+01,0.000000E+00 +2530686,fr,1,4.550000E+00,7.617300E+00,4.626062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999108E+01,-9.000000E+01 +2530692,fr,1,4.650000E+00,7.617300E+00,4.626062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2530701,fr,1,4.650000E+00,7.617300E+00,4.626062E+01,5.000000E+00,Active Shallow Crust,1.288914E+02,8.998672E+01,0.000000E+00 +2530704,fr,1,4.750000E+00,7.617300E+00,4.626062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +2530705,fr,2,4.750000E+00,7.617300E+00,4.626062E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998949E+01,0.000000E+00 +2530722,fr,1,4.850000E+00,7.617300E+00,4.626062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999052E+01,-9.000000E+01 +2530728,fr,2,4.950000E+00,7.617300E+00,4.626062E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +2530729,fr,1,4.950000E+00,7.617300E+00,4.626062E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +2530733,fr,1,4.950000E+00,7.617300E+00,4.626062E+01,2.750000E+01,Active Shallow Crust,2.400115E+02,5.800455E+01,0.000000E+00 +2530741,fr,1,5.050000E+00,7.617300E+00,4.626062E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999008E+01,0.000000E+00 +2530749,fr,2,5.050000E+00,7.617300E+00,4.626062E+01,5.000000E+00,Active Shallow Crust,1.288854E+02,8.999052E+01,0.000000E+00 +2530857,fr,1,5.950000E+00,7.617300E+00,4.626062E+01,5.000000E+00,Active Shallow Crust,1.288650E+02,8.999020E+01,0.000000E+00 +2531040,fr,1,3.550000E+00,9.472400E-01,4.703086E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2531046,fr,1,3.550000E+00,9.472400E-01,4.703086E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,-9.000000E+01 +2531049,fr,2,3.550000E+00,9.472400E-01,4.703086E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999399E+01,0.000000E+00 +2531052,fr,1,3.650000E+00,9.472400E-01,4.703086E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2531064,fr,5,3.750000E+00,9.472400E-01,4.703086E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998976E+01,0.000000E+00 +2531076,fr,1,3.850000E+00,9.472400E-01,4.703086E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +2531086,fr,1,3.850000E+00,9.472400E-01,4.703086E+01,1.500000E+01,Active Shallow Crust,1.288957E+02,8.999361E+01,0.000000E+00 +2531089,fr,1,3.950000E+00,9.472400E-01,4.703086E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +2531091,fr,1,3.950000E+00,9.472400E-01,4.703086E+01,5.000000E+00,Active Shallow Crust,2.400198E+02,5.800495E+01,0.000000E+00 +2531106,fr,1,4.050000E+00,9.472400E-01,4.703086E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999023E+01,-9.000000E+01 +2531109,fr,1,4.050000E+00,9.472400E-01,4.703086E+01,5.000000E+00,Active Shallow Crust,1.288905E+02,8.999372E+01,0.000000E+00 +2531114,fr,1,4.150000E+00,9.472400E-01,4.703086E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2531124,fr,1,4.250000E+00,9.472400E-01,4.703086E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2531125,fr,1,4.250000E+00,9.472400E-01,4.703086E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999002E+01,0.000000E+00 +2531148,fr,1,4.450000E+00,9.472400E-01,4.703086E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2531194,fr,1,4.750000E+00,9.472400E-01,4.703086E+01,1.500000E+01,Active Shallow Crust,1.288885E+02,8.998809E+01,0.000000E+00 +2531532,fr,2,3.650000E+00,4.420750E+00,4.559436E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998742E+01,0.000000E+00 +2531556,fr,1,3.850000E+00,4.420750E+00,4.559436E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2531557,fr,1,3.850000E+00,4.420750E+00,4.559436E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2531568,fr,1,3.950000E+00,4.420750E+00,4.559436E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999110E+01,0.000000E+00 +2531580,fr,1,4.050000E+00,4.420750E+00,4.559436E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998810E+01,0.000000E+00 +2531581,fr,1,4.050000E+00,4.420750E+00,4.559436E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998810E+01,0.000000E+00 +2532001,fr,2,3.550000E+00,-9.321800E-01,4.458560E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2532049,fr,1,3.950000E+00,-9.321800E-01,4.458560E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2532480,fr,2,3.550000E+00,5.350440E+00,4.387878E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999273E+01,0.000000E+00 +2532481,fr,3,3.550000E+00,5.350440E+00,4.387878E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999273E+01,0.000000E+00 +2532487,fr,1,3.550000E+00,5.350440E+00,4.387878E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999265E+01,-9.000000E+01 +2532492,fr,1,3.650000E+00,5.350440E+00,4.387878E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998705E+01,0.000000E+00 +2532493,fr,1,3.650000E+00,5.350440E+00,4.387878E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998705E+01,0.000000E+00 +2532498,fr,1,3.650000E+00,5.350440E+00,4.387878E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998689E+01,-9.000000E+01 +2532499,fr,1,3.650000E+00,5.350440E+00,4.387878E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998689E+01,-9.000000E+01 +2532504,fr,2,3.750000E+00,5.350440E+00,4.387878E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998845E+01,0.000000E+00 +2532505,fr,2,3.750000E+00,5.350440E+00,4.387878E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998845E+01,0.000000E+00 +2532516,fr,1,3.850000E+00,5.350440E+00,4.387878E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +2532517,fr,1,3.850000E+00,5.350440E+00,4.387878E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998971E+01,0.000000E+00 +2532522,fr,1,3.850000E+00,5.350440E+00,4.387878E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998959E+01,-9.000000E+01 +2532528,fr,1,3.950000E+00,5.350440E+00,4.387878E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +2532529,fr,1,3.950000E+00,5.350440E+00,4.387878E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +2532530,fr,1,3.950000E+00,5.350440E+00,4.387878E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999083E+01,0.000000E+00 +2532532,fr,1,3.950000E+00,5.350440E+00,4.387878E+01,1.500000E+01,Active Shallow Crust,2.400189E+02,5.800514E+01,0.000000E+00 +2532535,fr,1,3.950000E+00,5.350440E+00,4.387878E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999072E+01,-9.000000E+01 +2532552,fr,1,4.150000E+00,5.350440E+00,4.387878E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +2532564,fr,1,4.250000E+00,5.350440E+00,4.387878E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +2532568,fr,1,4.250000E+00,5.350440E+00,4.387878E+01,1.500000E+01,Active Shallow Crust,2.400076E+02,5.799403E+01,0.000000E+00 +2532613,fr,1,4.650000E+00,5.350440E+00,4.387878E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2532614,fr,1,4.650000E+00,5.350440E+00,4.387878E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2532684,fr,1,5.250000E+00,5.350440E+00,4.387878E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998973E+01,0.000000E+00 +2532960,fr,6,3.550000E+00,6.870440E+00,4.604401E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999300E+01,0.000000E+00 +2532961,fr,1,3.550000E+00,6.870440E+00,4.604401E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999300E+01,0.000000E+00 +2532962,fr,2,3.550000E+00,6.870440E+00,4.604401E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999300E+01,0.000000E+00 +2532963,fr,1,3.550000E+00,6.870440E+00,4.604401E+01,5.000000E+00,Active Shallow Crust,2.400123E+02,5.799798E+01,0.000000E+00 +2532969,fr,1,3.550000E+00,6.870440E+00,4.604401E+01,5.000000E+00,Active Shallow Crust,1.288961E+02,8.999300E+01,0.000000E+00 +2532972,fr,3,3.650000E+00,6.870440E+00,4.604401E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998753E+01,0.000000E+00 +2532978,fr,1,3.650000E+00,6.870440E+00,4.604401E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998738E+01,-9.000000E+01 +2532984,fr,2,3.750000E+00,6.870440E+00,4.604401E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +2532985,fr,2,3.750000E+00,6.870440E+00,4.604401E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998888E+01,0.000000E+00 +2532991,fr,1,3.750000E+00,6.870440E+00,4.604401E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998875E+01,-9.000000E+01 +2532996,fr,2,3.850000E+00,6.870440E+00,4.604401E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +2532997,fr,1,3.850000E+00,6.870440E+00,4.604401E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999009E+01,0.000000E+00 +2533002,fr,1,3.850000E+00,6.870440E+00,4.604401E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,-9.000000E+01 +2533005,fr,1,3.850000E+00,6.870440E+00,4.604401E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999257E+01,0.000000E+00 +2533008,fr,3,3.950000E+00,6.870440E+00,4.604401E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +2533009,fr,2,3.950000E+00,6.870440E+00,4.604401E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999117E+01,0.000000E+00 +2533032,fr,1,4.150000E+00,6.870440E+00,4.604401E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +2533034,fr,1,4.150000E+00,6.870440E+00,4.604401E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998948E+01,0.000000E+00 +2533035,fr,1,4.150000E+00,6.870440E+00,4.604401E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.799788E+01,0.000000E+00 +2533044,fr,1,4.250000E+00,6.870440E+00,4.604401E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999062E+01,0.000000E+00 +2533068,fr,1,4.450000E+00,6.870440E+00,4.604401E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2533080,fr,1,4.550000E+00,6.870440E+00,4.604401E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998893E+01,0.000000E+00 +2533081,fr,1,4.550000E+00,6.870440E+00,4.604401E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998893E+01,0.000000E+00 +2533094,fr,1,4.650000E+00,6.870440E+00,4.604401E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999014E+01,0.000000E+00 +2533140,fr,1,5.050000E+00,6.870440E+00,4.604401E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2533141,fr,1,5.050000E+00,6.870440E+00,4.604401E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2533164,fr,1,5.250000E+00,6.870440E+00,4.604401E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +2533441,fr,1,3.550000E+00,-2.296700E-01,4.895373E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2533442,fr,1,3.550000E+00,-2.296700E-01,4.895373E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999007E+01,0.000000E+00 +2533444,fr,1,3.550000E+00,-2.296700E-01,4.895373E+01,1.500000E+01,Active Shallow Crust,2.400125E+02,5.799818E+01,0.000000E+00 +2533448,fr,1,3.550000E+00,-2.296700E-01,4.895373E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998995E+01,-9.000000E+01 +2533449,fr,1,3.550000E+00,-2.296700E-01,4.895373E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999379E+01,0.000000E+00 +2533452,fr,2,3.650000E+00,-2.296700E-01,4.895373E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2533474,fr,1,3.750000E+00,-2.296700E-01,4.895373E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.996736E+01,0.000000E+00 +2533476,fr,1,3.850000E+00,-2.296700E-01,4.895373E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2533477,fr,2,3.850000E+00,-2.296700E-01,4.895373E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2533479,fr,1,3.850000E+00,-2.296700E-01,4.895373E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799788E+01,0.000000E+00 +2533492,fr,1,3.950000E+00,-2.296700E-01,4.895373E+01,1.500000E+01,Active Shallow Crust,2.400202E+02,5.800503E+01,0.000000E+00 +2533500,fr,1,4.050000E+00,-2.296700E-01,4.895373E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2533552,fr,1,4.450000E+00,-2.296700E-01,4.895373E+01,1.500000E+01,Active Shallow Crust,2.400060E+02,5.799480E+01,0.000000E+00 +2533572,fr,1,4.650000E+00,-2.296700E-01,4.895373E+01,5.000000E+00,Active Shallow Crust,3.600000E+02,8.999003E+01,0.000000E+00 +2533611,fr,1,4.950000E+00,-2.296700E-01,4.895373E+01,5.000000E+00,Active Shallow Crust,2.400131E+02,5.800468E+01,0.000000E+00 +2533620,fr,1,5.050000E+00,-2.296700E-01,4.895373E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998999E+01,0.000000E+00 +2533945,fr,1,3.750000E+00,-2.001810E+00,4.639678E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998895E+01,0.000000E+00 +2533957,fr,1,3.850000E+00,-2.001810E+00,4.639678E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999015E+01,0.000000E+00 +2534016,fr,1,4.350000E+00,-2.001810E+00,4.639678E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999031E+01,0.000000E+00 +2534028,fr,1,4.450000E+00,-2.001810E+00,4.639678E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2534124,fr,1,5.250000E+00,-2.001810E+00,4.639678E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999017E+01,0.000000E+00 +2534414,fr,1,3.650000E+00,2.554320E+00,5.307513E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +2534880,fr,1,3.550000E+00,2.643210E+00,4.584724E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +2534881,fr,3,3.550000E+00,2.643210E+00,4.584724E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998946E+01,0.000000E+00 +2534883,fr,1,3.550000E+00,2.643210E+00,4.584724E+01,5.000000E+00,Active Shallow Crust,2.400127E+02,5.799817E+01,0.000000E+00 +2534893,fr,1,3.650000E+00,2.643210E+00,4.584724E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999061E+01,0.000000E+00 +2534894,fr,1,3.650000E+00,2.643210E+00,4.584724E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999061E+01,0.000000E+00 +2534904,fr,1,3.750000E+00,2.643210E+00,4.584724E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998884E+01,0.000000E+00 +2534917,fr,1,3.850000E+00,2.643210E+00,4.584724E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +2534928,fr,2,3.950000E+00,2.643210E+00,4.584724E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998892E+01,0.000000E+00 +2534940,fr,1,4.050000E+00,2.643210E+00,4.584724E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999013E+01,0.000000E+00 +2534976,fr,1,4.350000E+00,2.643210E+00,4.584724E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +2535051,fr,1,4.950000E+00,2.643210E+00,4.584724E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.800446E+01,0.000000E+00 +2535360,fr,1,3.550000E+00,7.178500E+00,4.928131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998685E+01,0.000000E+00 +2535361,fr,1,3.550000E+00,7.178500E+00,4.928131E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998685E+01,0.000000E+00 +2535375,fr,1,3.650000E+00,7.178500E+00,4.928131E+01,5.000000E+00,Active Shallow Crust,2.400008E+02,5.801381E+01,0.000000E+00 +2535390,fr,1,3.750000E+00,7.178500E+00,4.928131E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998943E+01,-9.000000E+01 +2535433,fr,1,4.150000E+00,7.178500E+00,4.928131E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999011E+01,0.000000E+00 +2535840,fr,2,3.550000E+00,-2.504350E+00,4.331763E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998900E+01,0.000000E+00 +2535849,fr,1,3.550000E+00,-2.504350E+00,4.331763E+01,5.000000E+00,Active Shallow Crust,1.288964E+02,8.999450E+01,0.000000E+00 +2535895,fr,1,3.950000E+00,-2.504350E+00,4.331763E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999063E+01,-9.000000E+01 +2535912,fr,1,4.150000E+00,-2.504350E+00,4.331763E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999081E+01,0.000000E+00 +2535927,fr,1,4.250000E+00,-2.504350E+00,4.331763E+01,5.000000E+00,Active Shallow Crust,2.400069E+02,5.799381E+01,0.000000E+00 +2535972,fr,1,4.650000E+00,-2.504350E+00,4.331763E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998966E+01,0.000000E+00 +2536020,fr,1,5.050000E+00,-2.504350E+00,4.331763E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999021E+01,0.000000E+00 +2536335,fr,1,3.650000E+00,1.467100E+00,4.865125E+01,5.000000E+00,Active Shallow Crust,2.400012E+02,5.801316E+01,0.000000E+00 +2536338,fr,1,3.650000E+00,1.467100E+00,4.865125E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,-9.000000E+01 +2536344,fr,1,3.750000E+00,1.467100E+00,4.865125E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998942E+01,0.000000E+00 +2536404,fr,1,4.250000E+00,1.467100E+00,4.865125E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999033E+01,0.000000E+00 +2536409,fr,2,4.250000E+00,1.467100E+00,4.865125E+01,2.750000E+01,Active Shallow Crust,2.400079E+02,5.799417E+01,0.000000E+00 +2536800,fr,5,3.550000E+00,5.769610E+00,4.393324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999274E+01,0.000000E+00 +2536801,fr,2,3.550000E+00,5.769610E+00,4.393324E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999274E+01,0.000000E+00 +2536803,fr,1,3.550000E+00,5.769610E+00,4.393324E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799816E+01,0.000000E+00 +2536809,fr,1,3.550000E+00,5.769610E+00,4.393324E+01,5.000000E+00,Active Shallow Crust,1.288967E+02,8.999274E+01,0.000000E+00 +2536811,fr,1,3.550000E+00,5.769610E+00,4.393324E+01,2.750000E+01,Active Shallow Crust,1.288967E+02,8.999274E+01,0.000000E+00 +2536812,fr,2,3.650000E+00,5.769610E+00,4.393324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998705E+01,0.000000E+00 +2536825,fr,1,3.750000E+00,5.769610E+00,4.393324E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998846E+01,0.000000E+00 +2536830,fr,1,3.750000E+00,5.769610E+00,4.393324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998833E+01,-9.000000E+01 +2536848,fr,3,3.950000E+00,5.769610E+00,4.393324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +2536849,fr,1,3.950000E+00,5.769610E+00,4.393324E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +2536850,fr,1,3.950000E+00,5.769610E+00,4.393324E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999084E+01,0.000000E+00 +2536851,fr,1,3.950000E+00,5.769610E+00,4.393324E+01,5.000000E+00,Active Shallow Crust,2.400191E+02,5.800520E+01,0.000000E+00 +2536857,fr,1,3.950000E+00,5.769610E+00,4.393324E+01,5.000000E+00,Active Shallow Crust,1.289011E+02,8.999313E+01,0.000000E+00 +2536873,fr,1,4.150000E+00,5.769610E+00,4.393324E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998908E+01,0.000000E+00 +2536884,fr,1,4.250000E+00,5.769610E+00,4.393324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +2536899,fr,1,4.350000E+00,5.769610E+00,4.393324E+01,5.000000E+00,Active Shallow Crust,2.400084E+02,5.799555E+01,0.000000E+00 +2536924,fr,1,4.550000E+00,5.769610E+00,4.393324E+01,1.500000E+01,Active Shallow Crust,2.400086E+02,5.799689E+01,0.000000E+00 +2536929,fr,1,4.550000E+00,5.769610E+00,4.393324E+01,5.000000E+00,Active Shallow Crust,1.288947E+02,8.998550E+01,0.000000E+00 +2536944,fr,2,4.750000E+00,5.769610E+00,4.393324E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999088E+01,0.000000E+00 +2536959,fr,1,4.850000E+00,5.769610E+00,4.393324E+01,5.000000E+00,Active Shallow Crust,2.400158E+02,5.800214E+01,0.000000E+00 +2537136,fr,1,6.350000E+00,5.769615E+00,4.393324E+01,7.567806E+00,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2537280,fr,1,3.550000E+00,3.000280E+00,5.078939E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999044E+01,0.000000E+00 +2537290,fr,1,3.550000E+00,3.000280E+00,5.078939E+01,1.500000E+01,Active Shallow Crust,1.288953E+02,8.999363E+01,0.000000E+00 +2537292,fr,3,3.650000E+00,3.000280E+00,5.078939E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998864E+01,0.000000E+00 +2537304,fr,1,3.750000E+00,3.000280E+00,5.078939E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2537319,fr,1,3.850000E+00,3.000280E+00,5.078939E+01,5.000000E+00,Active Shallow Crust,2.400112E+02,5.799791E+01,0.000000E+00 +2537370,fr,1,4.250000E+00,3.000280E+00,5.078939E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,-9.000000E+01 +2537391,fr,1,4.450000E+00,3.000280E+00,5.078939E+01,5.000000E+00,Active Shallow Crust,2.400064E+02,5.799490E+01,0.000000E+00 +2537760,fr,3,3.550000E+00,5.441370E+00,4.534192E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999291E+01,0.000000E+00 +2537761,fr,1,3.550000E+00,5.441370E+00,4.534192E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999291E+01,0.000000E+00 +2537763,fr,1,3.550000E+00,5.441370E+00,4.534192E+01,5.000000E+00,Active Shallow Crust,2.400120E+02,5.799780E+01,0.000000E+00 +2537773,fr,1,3.650000E+00,5.441370E+00,4.534192E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998737E+01,0.000000E+00 +2537778,fr,1,3.650000E+00,5.441370E+00,4.534192E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998722E+01,-9.000000E+01 +2537779,fr,1,3.650000E+00,5.441370E+00,4.534192E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998722E+01,-9.000000E+01 +2537784,fr,1,3.750000E+00,5.441370E+00,4.534192E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998874E+01,0.000000E+00 +2537790,fr,1,3.750000E+00,5.441370E+00,4.534192E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998861E+01,-9.000000E+01 +2537794,fr,1,3.750000E+00,5.441370E+00,4.534192E+01,1.500000E+01,Active Shallow Crust,1.288967E+02,8.996747E+01,0.000000E+00 +2537796,fr,1,3.850000E+00,5.441370E+00,4.534192E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2537799,fr,1,3.850000E+00,5.441370E+00,4.534192E+01,5.000000E+00,Active Shallow Crust,2.400103E+02,5.799763E+01,0.000000E+00 +2537802,fr,1,3.850000E+00,5.441370E+00,4.534192E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998985E+01,-9.000000E+01 +2537805,fr,2,3.850000E+00,5.441370E+00,4.534192E+01,5.000000E+00,Active Shallow Crust,1.288956E+02,8.999248E+01,0.000000E+00 +2537808,fr,2,3.950000E+00,5.441370E+00,4.534192E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999106E+01,0.000000E+00 +2537809,fr,1,3.950000E+00,5.441370E+00,4.534192E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999106E+01,0.000000E+00 +2537818,fr,1,3.950000E+00,5.441370E+00,4.534192E+01,1.500000E+01,Active Shallow Crust,1.289014E+02,8.999329E+01,0.000000E+00 +2537845,fr,1,4.250000E+00,5.441370E+00,4.534192E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999050E+01,0.000000E+00 +2537856,fr,1,4.350000E+00,5.441370E+00,4.534192E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +2537858,fr,1,4.350000E+00,5.441370E+00,4.534192E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998872E+01,0.000000E+00 +2537868,fr,2,4.450000E+00,5.441370E+00,4.534192E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998994E+01,0.000000E+00 +2537874,fr,1,4.450000E+00,5.441370E+00,4.534192E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998982E+01,-9.000000E+01 +2537878,fr,2,4.450000E+00,5.441370E+00,4.534192E+01,1.500000E+01,Active Shallow Crust,1.288921E+02,8.999371E+01,0.000000E+00 +2537893,fr,1,4.650000E+00,5.441370E+00,4.534192E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2537928,fr,1,4.950000E+00,5.441370E+00,4.534192E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2537930,fr,1,4.950000E+00,5.441370E+00,4.534192E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999010E+01,0.000000E+00 +2537940,fr,1,5.050000E+00,5.441370E+00,4.534192E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998991E+01,0.000000E+00 +2538240,fr,1,3.550000E+00,2.990260E+00,5.143034E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999057E+01,0.000000E+00 +2538249,fr,1,3.550000E+00,2.990260E+00,5.143034E+01,5.000000E+00,Active Shallow Crust,1.288960E+02,8.999371E+01,0.000000E+00 +2538252,fr,1,3.650000E+00,2.990260E+00,5.143034E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998879E+01,0.000000E+00 +2538349,fr,1,4.450000E+00,2.990260E+00,5.143034E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2538852,fr,1,4.650000E+00,3.642770E+00,5.270960E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +2538948,fr,1,5.450000E+00,3.642770E+00,5.270960E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2539248,fr,1,3.950000E+00,-1.216060E+00,4.400978E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998970E+01,0.000000E+00 +2539260,fr,1,4.050000E+00,-1.216060E+00,4.400978E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998981E+01,0.000000E+00 +2539335,fr,1,4.650000E+00,-1.216060E+00,4.400978E+01,5.000000E+00,Active Shallow Crust,2.400101E+02,5.799420E+01,0.000000E+00 +2539680,fr,1,3.550000E+00,2.946960E+00,4.705488E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998969E+01,0.000000E+00 +2539707,fr,1,3.750000E+00,2.946960E+00,4.705488E+01,5.000000E+00,Active Shallow Crust,2.400081E+02,5.801776E+01,0.000000E+00 +2539719,fr,1,3.850000E+00,2.946960E+00,4.705488E+01,5.000000E+00,Active Shallow Crust,2.400107E+02,5.799779E+01,0.000000E+00 +2539728,fr,1,3.950000E+00,2.946960E+00,4.705488E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +2539752,fr,1,4.150000E+00,2.946960E+00,4.705488E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998967E+01,0.000000E+00 +2540160,fr,1,3.550000E+00,3.102980E+00,4.963025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2540172,fr,1,3.650000E+00,3.102980E+00,4.963025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999126E+01,0.000000E+00 +2540184,fr,1,3.750000E+00,3.102980E+00,4.963025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998962E+01,0.000000E+00 +2540189,fr,1,3.750000E+00,3.102980E+00,4.963025E+01,2.750000E+01,Active Shallow Crust,2.400088E+02,5.801770E+01,0.000000E+00 +2540211,fr,1,3.950000E+00,3.102980E+00,4.963025E+01,5.000000E+00,Active Shallow Crust,2.400206E+02,5.800477E+01,0.000000E+00 +2540268,fr,1,4.450000E+00,3.102980E+00,4.963025E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998957E+01,0.000000E+00 +2540643,fr,1,3.550000E+00,7.634970E+00,4.933359E+01,5.000000E+00,Active Shallow Crust,2.400131E+02,5.799744E+01,0.000000E+00 +2540672,fr,1,3.750000E+00,7.634970E+00,4.933359E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998944E+01,-9.000000E+01 +2540677,fr,2,3.850000E+00,7.634970E+00,4.933359E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999069E+01,0.000000E+00 +2540727,fr,1,4.250000E+00,7.634970E+00,4.933359E+01,5.000000E+00,Active Shallow Crust,2.400083E+02,5.799430E+01,0.000000E+00 +2540753,fr,1,4.450000E+00,7.634970E+00,4.933359E+01,2.750000E+01,Active Shallow Crust,2.400057E+02,5.799527E+01,0.000000E+00 +2540769,fr,1,4.550000E+00,7.634970E+00,4.933359E+01,5.000000E+00,Active Shallow Crust,1.288927E+02,8.998580E+01,0.000000E+00 +2541120,fr,6,3.550000E+00,6.538450E+00,4.455933E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999281E+01,0.000000E+00 +2541121,fr,1,3.550000E+00,6.538450E+00,4.455933E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999281E+01,0.000000E+00 +2541124,fr,1,3.550000E+00,6.538450E+00,4.455933E+01,1.500000E+01,Active Shallow Crust,2.400112E+02,5.799929E+01,0.000000E+00 +2541126,fr,1,3.550000E+00,6.538450E+00,4.455933E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999273E+01,-9.000000E+01 +2541129,fr,1,3.550000E+00,6.538450E+00,4.455933E+01,5.000000E+00,Active Shallow Crust,1.288953E+02,8.999641E+01,0.000000E+00 +2541132,fr,7,3.650000E+00,6.538450E+00,4.455933E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998719E+01,0.000000E+00 +2541133,fr,2,3.650000E+00,6.538450E+00,4.455933E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998719E+01,0.000000E+00 +2541135,fr,1,3.650000E+00,6.538450E+00,4.455933E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801198E+01,0.000000E+00 +2541136,fr,2,3.650000E+00,6.538450E+00,4.455933E+01,1.500000E+01,Active Shallow Crust,2.400013E+02,5.801198E+01,0.000000E+00 +2541142,fr,1,3.650000E+00,6.538450E+00,4.455933E+01,1.500000E+01,Active Shallow Crust,1.289008E+02,8.996349E+01,0.000000E+00 +2541144,fr,1,3.750000E+00,6.538450E+00,4.455933E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +2541145,fr,3,3.750000E+00,6.538450E+00,4.455933E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +2541156,fr,1,3.850000E+00,6.538450E+00,4.455933E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +2541157,fr,1,3.850000E+00,6.538450E+00,4.455933E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998983E+01,0.000000E+00 +2541162,fr,1,3.850000E+00,6.538450E+00,4.455933E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998971E+01,-9.000000E+01 +2541168,fr,2,3.950000E+00,6.538450E+00,4.455933E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999094E+01,0.000000E+00 +2541172,fr,1,3.950000E+00,6.538450E+00,4.455933E+01,1.500000E+01,Active Shallow Crust,2.400195E+02,5.800415E+01,0.000000E+00 +2541174,fr,2,3.950000E+00,6.538450E+00,4.455933E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999083E+01,-9.000000E+01 +2541180,fr,3,4.050000E+00,6.538450E+00,4.455933E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999192E+01,0.000000E+00 +2541181,fr,1,4.050000E+00,6.538450E+00,4.455933E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999192E+01,0.000000E+00 +2541186,fr,1,4.050000E+00,6.538450E+00,4.455933E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999183E+01,-9.000000E+01 +2541192,fr,3,4.150000E+00,6.538450E+00,4.455933E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +2541229,fr,2,4.450000E+00,6.538450E+00,4.455933E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998980E+01,0.000000E+00 +2541240,fr,1,4.550000E+00,6.538450E+00,4.455933E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999091E+01,0.000000E+00 +2541265,fr,1,4.750000E+00,6.538450E+00,4.455933E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998917E+01,0.000000E+00 +2541267,fr,1,4.750000E+00,6.538450E+00,4.455933E+01,5.000000E+00,Active Shallow Crust,2.400068E+02,5.800426E+01,0.000000E+00 +2541270,fr,1,4.750000E+00,6.538450E+00,4.455933E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999087E+01,-9.000000E+01 +2541288,fr,1,4.950000E+00,6.538450E+00,4.455933E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998996E+01,0.000000E+00 +2541314,fr,1,5.150000E+00,6.538450E+00,4.455933E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998975E+01,0.000000E+00 +2541600,fr,3,3.550000E+00,6.849720E+00,5.061174E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998721E+01,0.000000E+00 +2541612,fr,1,3.650000E+00,6.849720E+00,5.061174E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +2541613,fr,1,3.650000E+00,6.849720E+00,5.061174E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998859E+01,0.000000E+00 +2541615,fr,1,3.650000E+00,6.849720E+00,5.061174E+01,5.000000E+00,Active Shallow Crust,2.400009E+02,5.801265E+01,0.000000E+00 +2541620,fr,1,3.650000E+00,6.849720E+00,5.061174E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998846E+01,-9.000000E+01 +2541624,fr,1,3.750000E+00,6.849720E+00,5.061174E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998984E+01,0.000000E+00 +2541642,fr,1,3.850000E+00,6.849720E+00,5.061174E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999084E+01,-9.000000E+01 +2541648,fr,4,3.950000E+00,6.849720E+00,5.061174E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999193E+01,0.000000E+00 +2541654,fr,1,3.950000E+00,6.849720E+00,5.061174E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999183E+01,-9.000000E+01 +2541660,fr,1,4.050000E+00,6.849720E+00,5.061174E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998920E+01,0.000000E+00 +2541663,fr,1,4.050000E+00,6.849720E+00,5.061174E+01,5.000000E+00,Active Shallow Crust,2.400066E+02,5.800613E+01,0.000000E+00 +2541684,fr,1,4.250000E+00,6.849720E+00,5.061174E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999142E+01,0.000000E+00 +2541688,fr,1,4.250000E+00,6.849720E+00,5.061174E+01,1.500000E+01,Active Shallow Crust,2.400086E+02,5.799458E+01,0.000000E+00 +2541708,fr,1,4.450000E+00,6.849720E+00,5.061174E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999092E+01,0.000000E+00 +2541721,fr,1,4.550000E+00,6.849720E+00,5.061174E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998988E+01,0.000000E+00 +2541756,fr,3,4.850000E+00,6.849720E+00,5.061174E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2541758,fr,1,4.850000E+00,6.849720E+00,5.061174E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998997E+01,0.000000E+00 +2541771,fr,1,4.950000E+00,6.849720E+00,5.061174E+01,5.000000E+00,Active Shallow Crust,2.400139E+02,5.800481E+01,0.000000E+00 +2542083,fr,1,3.550000E+00,2.634690E+00,4.752110E+01,5.000000E+00,Active Shallow Crust,2.400116E+02,5.799825E+01,0.000000E+00 +2542087,fr,1,3.550000E+00,2.634690E+00,4.752110E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998967E+01,-9.000000E+01 +2542128,fr,1,3.950000E+00,2.634690E+00,4.752110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998926E+01,0.000000E+00 +2542179,fr,1,4.350000E+00,2.634690E+00,4.752110E+01,5.000000E+00,Active Shallow Crust,2.400085E+02,5.799598E+01,0.000000E+00 +2542212,fr,1,4.650000E+00,2.634690E+00,4.752110E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999040E+01,0.000000E+00 +2542563,fr,1,3.550000E+00,-2.268100E-01,5.079812E+01,5.000000E+00,Active Shallow Crust,2.400126E+02,5.799822E+01,0.000000E+00 +2542572,fr,2,3.650000E+00,-2.268100E-01,5.079812E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999006E+01,0.000000E+00 +2542584,fr,1,3.750000E+00,-2.268100E-01,5.079812E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999004E+01,0.000000E+00 +2542587,fr,1,3.750000E+00,-2.268100E-01,5.079812E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.801767E+01,0.000000E+00 +2543040,fr,1,3.550000E+00,4.540530E+00,4.677803E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999310E+01,0.000000E+00 +2543046,fr,1,3.550000E+00,4.540530E+00,4.677803E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999301E+01,-9.000000E+01 +2543048,fr,1,3.550000E+00,4.540530E+00,4.677803E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.999301E+01,-9.000000E+01 +2543052,fr,2,3.650000E+00,4.540530E+00,4.677803E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998769E+01,0.000000E+00 +2543053,fr,1,3.650000E+00,4.540530E+00,4.677803E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998769E+01,0.000000E+00 +2543054,fr,1,3.650000E+00,4.540530E+00,4.677803E+01,2.750000E+01,Active Shallow Crust,0.000000E+00,8.998769E+01,0.000000E+00 +2543064,fr,3,3.750000E+00,4.540530E+00,4.677803E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998903E+01,0.000000E+00 +2543070,fr,1,3.750000E+00,4.540530E+00,4.677803E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998890E+01,-9.000000E+01 +2543089,fr,1,3.950000E+00,4.540530E+00,4.677803E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999129E+01,0.000000E+00 +2543091,fr,1,3.950000E+00,4.540530E+00,4.677803E+01,5.000000E+00,Active Shallow Crust,2.400205E+02,5.800500E+01,0.000000E+00 +2543094,fr,1,3.950000E+00,4.540530E+00,4.677803E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999119E+01,-9.000000E+01 +2543100,fr,1,4.050000E+00,4.540530E+00,4.677803E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998835E+01,0.000000E+00 +2543118,fr,1,4.150000E+00,4.540530E+00,4.677803E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998949E+01,-9.000000E+01 +2543136,fr,1,4.350000E+00,4.540530E+00,4.677803E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +2543137,fr,1,4.350000E+00,4.540530E+00,4.677803E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998901E+01,0.000000E+00 +2543148,fr,1,4.450000E+00,4.540530E+00,4.677803E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999020E+01,0.000000E+00 +2543172,fr,1,4.650000E+00,4.540530E+00,4.677803E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +2543245,fr,1,5.250000E+00,4.540530E+00,4.677803E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +2543520,fr,1,3.550000E+00,4.313190E+00,4.802487E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999326E+01,0.000000E+00 +2543580,fr,1,4.050000E+00,4.313190E+00,4.802487E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998862E+01,0.000000E+00 +2544036,fr,1,3.850000E+00,4.216000E-01,5.043791E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999005E+01,0.000000E+00 +2544193,fr,1,5.150000E+00,4.216000E-01,5.043791E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999001E+01,0.000000E+00 +2544480,fr,2,3.550000E+00,8.528330E+00,4.700809E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998624E+01,0.000000E+00 +2544481,fr,2,3.550000E+00,8.528330E+00,4.700809E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998624E+01,0.000000E+00 +2544483,fr,1,3.550000E+00,8.528330E+00,4.700809E+01,5.000000E+00,Active Shallow Crust,2.400108E+02,5.799752E+01,0.000000E+00 +2544484,fr,1,3.550000E+00,8.528330E+00,4.700809E+01,1.500000E+01,Active Shallow Crust,2.400108E+02,5.799752E+01,0.000000E+00 +2544486,fr,1,3.550000E+00,8.528330E+00,4.700809E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998609E+01,-9.000000E+01 +2544490,fr,1,3.550000E+00,8.528330E+00,4.700809E+01,1.500000E+01,Active Shallow Crust,1.288963E+02,8.999313E+01,0.000000E+00 +2544492,fr,4,3.650000E+00,8.528330E+00,4.700809E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998774E+01,0.000000E+00 +2544493,fr,1,3.650000E+00,8.528330E+00,4.700809E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998774E+01,0.000000E+00 +2544495,fr,1,3.650000E+00,8.528330E+00,4.700809E+01,5.000000E+00,Active Shallow Crust,2.400013E+02,5.801330E+01,0.000000E+00 +2544498,fr,1,3.650000E+00,8.528330E+00,4.700809E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998760E+01,-9.000000E+01 +2544505,fr,1,3.750000E+00,8.528330E+00,4.700809E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998907E+01,0.000000E+00 +2544508,fr,1,3.750000E+00,8.528330E+00,4.700809E+01,1.500000E+01,Active Shallow Crust,2.400087E+02,5.801849E+01,0.000000E+00 +2544510,fr,1,3.750000E+00,8.528330E+00,4.700809E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998895E+01,-9.000000E+01 +2544517,fr,1,3.850000E+00,8.528330E+00,4.700809E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999026E+01,0.000000E+00 +2544519,fr,1,3.850000E+00,8.528330E+00,4.700809E+01,5.000000E+00,Active Shallow Crust,2.400100E+02,5.799885E+01,0.000000E+00 +2544528,fr,2,3.950000E+00,8.528330E+00,4.700809E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +2544529,fr,2,3.950000E+00,8.528330E+00,4.700809E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999133E+01,0.000000E+00 +2544535,fr,1,3.950000E+00,8.528330E+00,4.700809E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999122E+01,-9.000000E+01 +2544541,fr,1,4.050000E+00,8.528330E+00,4.700809E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.999226E+01,0.000000E+00 +2544549,fr,1,4.050000E+00,8.528330E+00,4.700809E+01,5.000000E+00,Active Shallow Crust,1.288885E+02,8.999613E+01,0.000000E+00 +2544561,fr,1,4.150000E+00,8.528330E+00,4.700809E+01,5.000000E+00,Active Shallow Crust,1.288983E+02,8.999311E+01,0.000000E+00 +2544564,fr,1,4.250000E+00,8.528330E+00,4.700809E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998772E+01,0.000000E+00 +2544588,fr,1,4.450000E+00,8.528330E+00,4.700809E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999024E+01,0.000000E+00 +2544603,fr,1,4.550000E+00,8.528330E+00,4.700809E+01,5.000000E+00,Active Shallow Crust,2.400089E+02,5.799816E+01,0.000000E+00 +2544629,fr,1,4.750000E+00,8.528330E+00,4.700809E+01,2.750000E+01,Active Shallow Crust,2.400079E+02,5.800450E+01,0.000000E+00 +2544630,fr,1,4.750000E+00,8.528330E+00,4.700809E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998952E+01,-9.000000E+01 +2544636,fr,1,4.850000E+00,8.528330E+00,4.700809E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999076E+01,0.000000E+00 +2544642,fr,1,4.850000E+00,8.528330E+00,4.700809E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999065E+01,-9.000000E+01 +2544649,fr,1,4.950000E+00,8.528330E+00,4.700809E+01,1.500000E+01,Active Shallow Crust,0.000000E+00,8.998902E+01,0.000000E+00 +2544720,fr,1,5.550000E+00,8.528330E+00,4.700809E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999037E+01,0.000000E+00 +2544732,fr,1,5.650000E+00,8.528330E+00,4.700809E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999019E+01,0.000000E+00 +2545000,fr,1,3.850000E+00,-1.135960E+00,4.456608E+01,1.500000E+01,Active Shallow Crust,2.400103E+02,5.799789E+01,0.000000E+00 +2545476,fr,1,3.850000E+00,5.904670E+00,4.862123E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.999056E+01,0.000000E+00 +2545506,fr,1,4.050000E+00,5.904670E+00,4.862123E+01,5.000000E+00,Active Shallow Crust,0.000000E+00,8.998862E+01,-9.000000E+01 +2545593,fr,1,4.750000E+00,5.904670E+00,4.862123E+01,5.000000E+00,Active Shallow Crust,1.288882E+02,8.998830E+01,0.000000E+00 diff --git a/openquake/quaket/output/hmtk_sample_catalogue.csv b/openquake/quaket/output/hmtk_sample_catalogue.csv new file mode 100644 index 0000000..31bc239 --- /dev/null +++ b/openquake/quaket/output/hmtk_sample_catalogue.csv @@ -0,0 +1,59502 @@ +longitude,latitude,year,month,day,hour,minute,second,magnitude,depth,source_id,eventID,rlz_id,rup_id,ses_id,multiplicity,trt,strike,dip,rake,Date +4.5528,44.82738,5948,7,10,11,6,55,3.55,5.0,fr,0,118,0,1,1,Active Shallow Crust,0.0,89.99285,0.0,07/10/5948 +4.5528,44.82738,3266,4,28,18,48,37,3.65,5.0,fr,1,65,12,1,1,Active Shallow Crust,0.0,89.98725,0.0,04/28/3266 +4.5528,44.82738,4567,11,18,11,11,54,3.65,5.0,fr,2,91,18,1,1,Active Shallow Crust,0.0,89.98711,-90.0,11/18/4567 +4.5528,44.82738,6815,8,15,0,38,12,3.75,5.0,fr,3,136,24,1,1,Active Shallow Crust,0.0,89.98864,0.0,08/15/6815 +4.5528,44.82738,554,5,19,2,48,8,4.55,15.0,fr,4,11,121,1,1,Active Shallow Crust,0.0,89.99095,0.0,05/19/0554 +4.5528,44.82738,9763,7,20,0,45,10,4.55,5.0,fr,5,195,123,1,1,Active Shallow Crust,240.0088,57.99711,0.0,07/20/9763 +4.5528,44.82738,7128,10,23,0,11,32,5.25,15.0,fr,6,142,214,1,1,Active Shallow Crust,128.8841,89.98709,0.0,10/23/7128 +4.5528,44.82738,8881,3,24,8,24,37,6.45,15.0,fr,7,177,349,1,1,Active Shallow Crust,0.0,89.99009,0.0,03/24/8881 +-5.48151,49.46184,7515,7,30,0,6,52,3.75,5.0,fr,8,150,504,1,2,Active Shallow Crust,0.0,89.98959,0.0,07/30/7515 +-5.48151,49.46184,4425,11,11,11,39,35,3.75,5.0,fr,9,88,504,1,2,Active Shallow Crust,0.0,89.98959,0.0,11/11/4425 +-5.48151,49.46184,6424,11,24,20,8,27,4.15,27.5,fr,10,128,554,1,1,Active Shallow Crust,0.0,89.99014,0.0,11/24/6424 +3.03808,51.17531,3396,8,4,4,49,48,3.55,5.0,fr,11,67,960,1,1,Active Shallow Crust,0.0,89.99052,0.0,08/04/3396 +3.03808,51.17531,3117,5,9,14,3,53,4.75,15.0,fr,12,62,1111,1,1,Active Shallow Crust,0.0,89.99036,-90.0,05/09/3117 +3.03808,51.17531,2365,4,8,14,13,26,4.85,5.0,fr,13,47,1116,1,1,Active Shallow Crust,0.0,89.99009,0.0,04/08/2365 +3.57728,45.47142,5038,8,16,14,42,39,3.55,5.0,fr,14,100,1440,1,1,Active Shallow Crust,0.0,89.9894,0.0,08/16/5038 +3.57728,45.47142,5761,8,27,16,43,45,3.55,5.0,fr,15,115,1443,1,3,Active Shallow Crust,240.0118,57.9983,0.0,08/27/5761 +3.57728,45.47142,8171,3,13,8,29,56,3.55,5.0,fr,16,163,1443,1,3,Active Shallow Crust,240.0118,57.9983,0.0,03/13/8171 +3.57728,45.47142,3970,6,5,20,6,39,3.55,5.0,fr,17,79,1443,1,3,Active Shallow Crust,240.0118,57.9983,0.0,06/05/3970 +3.57728,45.47142,9680,5,13,13,58,17,3.65,5.0,fr,18,193,1452,1,2,Active Shallow Crust,0.0,89.99055,0.0,05/13/9680 +3.57728,45.47142,3115,2,19,17,8,13,3.65,5.0,fr,19,62,1452,1,2,Active Shallow Crust,0.0,89.99055,0.0,02/19/3115 +3.57728,45.47142,553,8,2,15,6,32,3.65,15.0,fr,20,11,1453,1,1,Active Shallow Crust,0.0,89.99055,0.0,08/02/0553 +3.57728,45.47142,4889,12,12,22,46,45,3.75,5.0,fr,21,97,1464,1,1,Active Shallow Crust,0.0,89.98876,0.0,12/12/4889 +3.57728,45.47142,3779,6,9,8,33,21,3.75,27.5,fr,22,75,1466,1,1,Active Shallow Crust,0.0,89.98877,0.0,06/09/3779 +3.57728,45.47142,3684,2,1,14,9,54,3.75,5.0,fr,23,73,1473,1,1,Active Shallow Crust,128.8964,89.96748,0.0,02/01/3684 +3.57728,45.47142,868,12,23,19,1,28,3.85,5.0,fr,24,17,1476,1,1,Active Shallow Crust,0.0,89.98999,0.0,12/23/0868 +3.57728,45.47142,5668,5,27,20,10,15,3.95,5.0,fr,25,113,1488,1,1,Active Shallow Crust,0.0,89.99107,0.0,05/27/5668 +3.57728,45.47142,3190,1,29,14,8,46,4.25,5.0,fr,26,63,1524,1,1,Active Shallow Crust,0.0,89.99052,0.0,01/29/3190 +3.57728,45.47142,9122,12,14,8,5,31,4.25,5.0,fr,27,182,1527,1,1,Active Shallow Crust,240.0073,57.99411,0.0,12/14/9122 +3.57728,45.47142,5732,10,7,1,21,39,4.45,5.0,fr,28,114,1548,1,1,Active Shallow Crust,0.0,89.98996,0.0,10/07/5732 +3.57728,45.47142,126,6,17,20,13,9,4.45,5.0,fr,29,2,1551,1,1,Active Shallow Crust,240.0049,57.9946,0.0,06/17/0126 +3.57728,45.47142,3009,12,30,10,15,36,4.55,15.0,fr,30,60,1567,1,1,Active Shallow Crust,0.0,89.98982,-90.0,12/30/3009 +3.57728,45.47142,2889,9,23,21,18,31,4.95,5.0,fr,31,57,1608,1,1,Active Shallow Crust,0.0,89.99012,0.0,09/23/2889 +3.57728,45.47142,8270,1,14,2,5,29,5.45,15.0,fr,32,165,1669,1,1,Active Shallow Crust,0.0,89.99008,0.0,01/14/8270 +-0.87648,46.63022,8276,11,17,9,12,4,3.55,5.0,fr,33,165,1923,1,2,Active Shallow Crust,240.0122,57.99818,0.0,11/17/8276 +-0.87648,46.63022,2007,11,2,8,41,49,3.55,5.0,fr,34,40,1923,1,2,Active Shallow Crust,240.0122,57.99818,0.0,11/02/2007 +-0.87648,46.63022,2781,10,9,15,31,36,3.55,5.0,fr,35,55,1929,1,1,Active Shallow Crust,128.8962,89.99351,0.0,10/09/2781 +-0.87648,46.63022,1645,12,15,9,2,56,3.65,5.0,fr,36,32,1932,1,1,Active Shallow Crust,0.0,89.98997,0.0,12/15/1645 +-0.87648,46.63022,7098,12,24,7,28,37,3.65,5.0,fr,37,141,1935,1,1,Active Shallow Crust,240.0012,58.01288,0.0,12/24/7098 +-0.87648,46.63022,2650,3,16,3,51,29,3.65,5.0,fr,38,52,1938,1,1,Active Shallow Crust,0.0,89.98985,-90.0,03/16/2650 +-0.87648,46.63022,4944,12,9,20,52,51,3.85,5.0,fr,39,98,1956,1,1,Active Shallow Crust,0.0,89.9902,0.0,12/09/4944 +-0.87648,46.63022,6407,7,28,7,32,24,3.85,15.0,fr,40,128,1957,1,1,Active Shallow Crust,0.0,89.9902,0.0,07/28/6407 +-0.87648,46.63022,3581,4,25,14,34,16,3.85,5.0,fr,41,71,1959,1,1,Active Shallow Crust,240.0108,57.99789,0.0,04/25/3581 +-0.87648,46.63022,2001,9,4,9,50,43,3.95,27.5,fr,42,40,1970,1,1,Active Shallow Crust,0.0,89.99017,0.0,09/04/2001 +-0.87648,46.63022,3694,3,15,11,33,12,3.95,15.0,fr,43,73,1972,1,1,Active Shallow Crust,240.0198,58.00495,0.0,03/15/3694 +-0.87648,46.63022,7248,5,21,14,52,48,3.95,5.0,fr,44,144,1977,1,1,Active Shallow Crust,128.9003,89.99372,0.0,05/21/7248 +-0.87648,46.63022,3108,3,10,0,14,54,4.05,15.0,fr,45,62,1981,1,1,Active Shallow Crust,0.0,89.98978,0.0,03/10/3108 +-0.87648,46.63022,4130,7,7,7,27,42,4.05,5.0,fr,46,82,1983,1,1,Active Shallow Crust,240.0059,58.00587,0.0,07/07/4130 +-0.87648,46.63022,4285,5,6,21,44,31,4.15,5.0,fr,47,85,1998,1,1,Active Shallow Crust,0.0,89.98991,-90.0,05/06/4285 +-0.87648,46.63022,9904,9,15,22,12,13,4.35,15.0,fr,48,198,2017,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/15/9904 +-0.87648,46.63022,1767,7,25,19,54,53,4.55,5.0,fr,49,35,2040,1,2,Active Shallow Crust,0.0,89.98987,0.0,07/25/1767 +-0.87648,46.63022,6929,2,2,14,46,29,4.55,5.0,fr,50,138,2040,1,2,Active Shallow Crust,0.0,89.98987,0.0,02/02/6929 +-0.87648,46.63022,7659,4,24,14,11,39,4.65,5.0,fr,51,153,2058,1,1,Active Shallow Crust,0.0,89.98988,-90.0,04/24/7659 +-0.87648,46.63022,7085,9,30,10,33,51,5.05,5.0,fr,52,141,2100,1,1,Active Shallow Crust,0.0,89.98999,0.0,09/30/7085 +-0.87648,46.63022,6191,12,31,21,32,44,5.25,5.0,fr,53,123,2124,1,1,Active Shallow Crust,0.0,89.98997,0.0,12/31/6191 +-0.87648,46.63022,1555,2,15,15,33,51,5.25,15.0,fr,54,31,2125,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/15/1555 +-0.87648,46.63022,4502,10,18,9,58,28,5.65,5.0,fr,55,90,2175,1,1,Active Shallow Crust,240.0374,57.9993,0.0,10/18/4502 +8.02321,46.56554,9722,9,14,3,20,27,3.55,5.0,fr,56,194,2400,1,3,Active Shallow Crust,0.0,89.98614,0.0,09/14/9722 +8.02321,46.56554,9077,10,30,9,43,57,3.55,5.0,fr,57,181,2400,1,3,Active Shallow Crust,0.0,89.98614,0.0,10/30/9077 +8.02321,46.56554,7126,5,18,17,45,38,3.55,5.0,fr,58,142,2400,1,3,Active Shallow Crust,0.0,89.98614,0.0,05/18/7126 +8.02321,46.56554,6218,2,3,16,46,27,3.55,5.0,fr,59,124,2406,1,1,Active Shallow Crust,0.0,89.98598,-90.0,02/03/6218 +8.02321,46.56554,7014,4,20,15,58,19,3.65,5.0,fr,60,140,2412,1,2,Active Shallow Crust,0.0,89.98764,0.0,04/20/7014 +8.02321,46.56554,1724,12,22,19,5,10,3.65,5.0,fr,61,34,2412,1,2,Active Shallow Crust,0.0,89.98764,0.0,12/22/1724 +8.02321,46.56554,383,12,14,6,29,3,3.65,15.0,fr,62,7,2413,1,2,Active Shallow Crust,0.0,89.98764,0.0,12/14/0383 +8.02321,46.56554,3555,7,6,23,41,32,3.65,15.0,fr,63,71,2413,1,2,Active Shallow Crust,0.0,89.98764,0.0,07/06/3555 +8.02321,46.56554,3338,12,14,18,39,13,3.65,27.5,fr,64,66,2414,1,1,Active Shallow Crust,0.0,89.98764,0.0,12/14/3338 +8.02321,46.56554,6110,8,2,18,13,5,3.65,27.5,fr,65,122,2417,1,1,Active Shallow Crust,240.0022,58.01247,0.0,08/02/6110 +8.02321,46.56554,1904,3,22,4,26,36,3.65,5.0,fr,66,38,2421,1,1,Active Shallow Crust,128.8995,89.96352,0.0,03/22/1904 +8.02321,46.56554,1711,1,16,9,56,50,3.75,15.0,fr,67,34,2425,1,1,Active Shallow Crust,0.0,89.98898,0.0,01/16/1711 +8.02321,46.56554,9480,4,24,22,4,30,3.75,27.5,fr,68,189,2426,1,1,Active Shallow Crust,0.0,89.98898,0.0,04/24/9480 +8.02321,46.56554,939,2,16,3,19,57,3.75,5.0,fr,69,18,2427,1,1,Active Shallow Crust,240.0097,58.01672,0.0,02/16/0939 +8.02321,46.56554,9809,8,21,6,17,26,3.75,5.0,fr,70,196,2430,1,1,Active Shallow Crust,0.0,89.98886,-90.0,08/21/9809 +8.02321,46.56554,8101,4,17,17,12,21,3.85,5.0,fr,71,162,2436,1,2,Active Shallow Crust,0.0,89.99018,0.0,04/17/8101 +8.02321,46.56554,7195,2,16,10,42,8,3.85,5.0,fr,72,143,2436,1,2,Active Shallow Crust,0.0,89.99018,0.0,02/16/7195 +8.02321,46.56554,834,6,16,0,13,14,3.85,27.5,fr,73,16,2438,1,1,Active Shallow Crust,0.0,89.99018,0.0,06/16/0834 +8.02321,46.56554,5953,6,8,21,56,2,3.95,5.0,fr,74,119,2448,1,2,Active Shallow Crust,0.0,89.99125,0.0,06/08/5953 +8.02321,46.56554,1669,10,6,3,31,4,3.95,5.0,fr,75,33,2448,1,2,Active Shallow Crust,0.0,89.99125,0.0,10/06/1669 +8.02321,46.56554,8812,4,18,15,2,51,3.95,15.0,fr,76,176,2449,1,3,Active Shallow Crust,0.0,89.99125,0.0,04/18/8812 +8.02321,46.56554,568,6,23,22,32,17,3.95,15.0,fr,77,11,2449,1,3,Active Shallow Crust,0.0,89.99125,0.0,06/23/0568 +8.02321,46.56554,6614,2,14,0,8,1,3.95,15.0,fr,78,132,2449,1,3,Active Shallow Crust,0.0,89.99125,0.0,02/14/6614 +8.02321,46.56554,4377,10,16,0,31,18,4.05,15.0,fr,79,87,2461,1,1,Active Shallow Crust,0.0,89.9922,0.0,10/16/4377 +8.02321,46.56554,2457,12,8,20,49,42,4.05,5.0,fr,80,49,2463,1,1,Active Shallow Crust,240.0068,58.00542,0.0,12/08/2457 +8.02321,46.56554,4708,2,18,16,7,16,4.15,5.0,fr,81,94,2472,1,2,Active Shallow Crust,0.0,89.99305,0.0,02/18/4708 +8.02321,46.56554,4069,10,14,1,19,56,4.15,5.0,fr,82,81,2472,1,2,Active Shallow Crust,0.0,89.99305,0.0,10/14/4069 +8.02321,46.56554,4500,4,17,2,23,49,4.15,15.0,fr,83,89,2482,1,1,Active Shallow Crust,128.8985,89.99305,0.0,04/17/4500 +8.02321,46.56554,1846,8,22,16,40,44,4.25,27.5,fr,84,36,2492,1,1,Active Shallow Crust,0.0,89.98746,-90.0,08/22/1846 +8.02321,46.56554,9501,7,29,23,50,18,4.35,5.0,fr,85,190,2499,1,1,Active Shallow Crust,240.0085,57.99579,0.0,07/29/9501 +8.02321,46.56554,3121,12,22,1,52,2,4.45,5.0,fr,86,62,2508,1,1,Active Shallow Crust,0.0,89.99016,0.0,12/22/3121 +8.02321,46.56554,412,9,8,1,39,22,4.45,27.5,fr,87,8,2510,1,1,Active Shallow Crust,0.0,89.99016,0.0,09/08/0412 +8.02321,46.56554,4285,8,30,7,55,59,4.65,5.0,fr,88,85,2535,1,1,Active Shallow Crust,240.0107,57.99371,0.0,08/30/4285 +8.02321,46.56554,3211,5,31,6,35,46,4.65,15.0,fr,89,64,2536,1,1,Active Shallow Crust,240.0107,57.99371,0.0,05/31/3211 +8.02321,46.56554,165,2,16,18,17,20,4.75,5.0,fr,90,3,2550,1,1,Active Shallow Crust,0.0,89.98943,-90.0,02/16/0165 +8.02321,46.56554,6454,5,23,20,37,34,4.95,5.0,fr,91,129,2571,1,1,Active Shallow Crust,240.0123,58.00465,0.0,05/23/6454 +8.02321,46.56554,6417,8,24,18,53,2,5.65,15.0,fr,92,128,2653,1,1,Active Shallow Crust,0.0,89.99011,0.0,08/24/6417 +8.023226,46.56554,3861,10,10,10,22,5,6.75,11.99416,fr,93,77,2784,1,1,Active Shallow Crust,0.0,89.99005,0.0,10/10/3861 +4.38166,45.1968,1940,9,10,10,4,15,3.65,5.0,fr,94,38,3372,1,1,Active Shallow Crust,0.0,89.98734,0.0,09/10/1940 +4.38166,45.1968,6854,12,30,20,16,44,3.65,5.0,fr,95,137,3375,1,1,Active Shallow Crust,240.0019,58.01175,0.0,12/30/6854 +4.38166,45.1968,6765,12,21,18,32,14,3.75,5.0,fr,96,135,3384,1,1,Active Shallow Crust,0.0,89.98871,0.0,12/21/6765 +4.38166,45.1968,5088,12,18,10,47,42,3.95,15.0,fr,97,101,3412,1,1,Active Shallow Crust,240.0197,58.00475,0.0,12/18/5088 +4.38166,45.1968,3255,9,21,12,16,36,4.25,15.0,fr,98,65,3445,1,1,Active Shallow Crust,0.0,89.99048,0.0,09/21/3255 +4.38166,45.1968,3716,1,18,2,51,29,5.25,27.5,fr,99,74,3569,1,1,Active Shallow Crust,240.0246,58.00003,0.0,01/18/3716 +-2.85133,47.95059,9233,9,9,0,22,8,3.55,5.0,fr,100,184,3840,1,1,Active Shallow Crust,0.0,89.98987,0.0,09/09/9233 +-2.85133,47.95059,5645,7,21,4,13,51,3.65,5.0,fr,101,112,3852,1,4,Active Shallow Crust,0.0,89.99097,0.0,07/21/5645 +-2.85133,47.95059,804,9,1,2,7,9,3.65,5.0,fr,102,16,3852,1,4,Active Shallow Crust,0.0,89.99097,0.0,09/01/0804 +-2.85133,47.95059,6402,8,25,2,32,28,3.65,5.0,fr,103,128,3852,1,4,Active Shallow Crust,0.0,89.99097,0.0,08/25/6402 +-2.85133,47.95059,2736,1,16,11,52,11,3.65,5.0,fr,104,54,3852,1,4,Active Shallow Crust,0.0,89.99097,0.0,01/16/2736 +-2.85133,47.95059,2918,12,10,3,4,59,3.65,15.0,fr,105,58,3853,1,3,Active Shallow Crust,0.0,89.99097,0.0,12/10/2918 +-2.85133,47.95059,4062,8,15,17,6,38,3.65,15.0,fr,106,81,3853,1,3,Active Shallow Crust,0.0,89.99097,0.0,08/15/4062 +-2.85133,47.95059,4003,8,5,17,0,37,3.65,15.0,fr,107,80,3853,1,3,Active Shallow Crust,0.0,89.99097,0.0,08/05/4003 +-2.85133,47.95059,8881,11,27,23,7,34,3.65,5.0,fr,108,177,3855,1,1,Active Shallow Crust,240.0013,58.01289,0.0,11/27/8881 +-2.85133,47.95059,8970,3,17,18,3,43,3.75,5.0,fr,109,179,3864,1,1,Active Shallow Crust,0.0,89.98927,0.0,03/17/8970 +-2.85133,47.95059,1921,1,31,3,45,7,3.75,27.5,fr,110,38,3866,1,1,Active Shallow Crust,0.0,89.98927,0.0,01/31/1921 +-2.85133,47.95059,7185,8,9,1,42,59,3.75,5.0,fr,111,143,3873,1,2,Active Shallow Crust,128.8963,89.96727,0.0,08/09/7185 +-2.85133,47.95059,5371,3,25,4,23,0,3.75,5.0,fr,112,107,3873,1,2,Active Shallow Crust,128.8963,89.96727,0.0,03/25/5371 +-2.85133,47.95059,6187,3,26,11,23,41,3.85,15.0,fr,113,123,3877,1,1,Active Shallow Crust,0.0,89.99044,0.0,03/26/6187 +-2.85133,47.95059,6187,1,26,8,12,46,3.95,5.0,fr,114,123,3891,1,1,Active Shallow Crust,240.0197,58.00513,0.0,01/26/6187 +-2.85133,47.95059,5963,11,25,23,49,38,3.95,15.0,fr,115,119,3895,1,1,Active Shallow Crust,0.0,89.98922,-90.0,11/25/5963 +-2.85133,47.95059,932,5,31,11,35,8,4.05,5.0,fr,116,18,3900,1,2,Active Shallow Crust,0.0,89.9905,0.0,05/31/0932 +-2.85133,47.95059,4427,10,6,12,50,38,4.05,5.0,fr,117,88,3900,1,2,Active Shallow Crust,0.0,89.9905,0.0,10/06/4427 +-2.85133,47.95059,6902,7,26,12,17,25,4.05,15.0,fr,118,138,3901,1,1,Active Shallow Crust,0.0,89.9905,0.0,07/26/6902 +-2.85133,47.95059,1062,10,26,17,44,16,4.15,27.5,fr,119,21,3914,1,1,Active Shallow Crust,0.0,89.98985,0.0,10/26/1062 +-2.85133,47.95059,1251,9,2,18,27,41,4.15,5.0,fr,120,25,3918,1,1,Active Shallow Crust,0.0,89.98972,-90.0,09/02/1251 +-2.85133,47.95059,9260,12,28,19,35,13,4.35,15.0,fr,121,185,3937,1,1,Active Shallow Crust,0.0,89.99059,0.0,12/28/9260 +-2.85133,47.95059,6081,7,13,0,13,0,4.35,27.5,fr,122,121,3941,1,1,Active Shallow Crust,240.0085,57.99613,0.0,07/13/6081 +-2.85133,47.95059,1817,9,23,21,28,9,4.45,5.0,fr,123,36,3948,1,1,Active Shallow Crust,0.0,89.99041,0.0,09/23/1817 +-2.85133,47.95059,508,8,18,11,3,37,5.15,5.0,fr,124,10,4032,1,1,Active Shallow Crust,0.0,89.98983,0.0,08/18/0508 +1.01868,51.7604,114,12,20,1,28,12,3.55,15.0,fr,125,2,4321,1,1,Active Shallow Crust,0.0,89.99064,0.0,12/20/0114 +1.01868,51.7604,3295,2,4,3,14,54,3.55,27.5,fr,126,65,4322,1,1,Active Shallow Crust,0.0,89.99064,0.0,02/04/3295 +1.01868,51.7604,4119,1,10,4,43,26,3.65,5.0,fr,127,82,4332,1,1,Active Shallow Crust,0.0,89.99026,0.0,01/10/4119 +1.01868,51.7604,7402,7,23,19,52,31,3.75,15.0,fr,128,148,4345,1,1,Active Shallow Crust,0.0,89.99008,0.0,07/23/7402 +1.01868,51.7604,1603,7,22,21,19,37,3.75,5.0,fr,129,32,4350,1,2,Active Shallow Crust,0.0,89.98997,-90.0,07/22/1603 +1.01868,51.7604,5682,8,28,9,38,43,3.75,5.0,fr,130,113,4350,1,2,Active Shallow Crust,0.0,89.98997,-90.0,08/28/5682 +1.01868,51.7604,1808,5,11,21,32,38,3.95,15.0,fr,131,36,4372,1,1,Active Shallow Crust,240.0206,58.00514,0.0,05/11/1808 +1.01868,51.7604,2354,3,28,0,16,14,4.05,5.0,fr,132,47,4380,1,1,Active Shallow Crust,0.0,89.99035,0.0,03/28/2354 +1.01868,51.7604,3119,12,13,9,45,29,4.25,15.0,fr,133,62,4408,1,1,Active Shallow Crust,240.0088,57.99432,0.0,12/13/3119 +1.01868,51.7604,7642,8,28,14,26,42,4.75,15.0,fr,134,152,4465,1,1,Active Shallow Crust,0.0,89.98981,0.0,08/28/7642 +1.01868,51.7604,1546,6,26,7,34,7,4.75,27.5,fr,135,30,4466,1,1,Active Shallow Crust,0.0,89.98981,0.0,06/26/1546 +-0.71573,47.31714,1109,11,23,20,37,28,3.55,5.0,fr,136,22,4800,1,3,Active Shallow Crust,0.0,89.98975,0.0,11/23/1109 +-0.71573,47.31714,917,3,22,16,5,27,3.55,5.0,fr,137,18,4800,1,3,Active Shallow Crust,0.0,89.98975,0.0,03/22/0917 +-0.71573,47.31714,387,1,17,11,20,5,3.55,5.0,fr,138,7,4800,1,3,Active Shallow Crust,0.0,89.98975,0.0,01/17/0387 +-0.71573,47.31714,133,3,31,4,37,41,3.55,15.0,fr,139,2,4801,1,2,Active Shallow Crust,0.0,89.98975,0.0,03/31/0133 +-0.71573,47.31714,4357,5,31,5,21,50,3.55,15.0,fr,140,87,4801,1,2,Active Shallow Crust,0.0,89.98975,0.0,05/31/4357 +-0.71573,47.31714,1728,3,11,15,45,50,3.55,15.0,fr,141,34,4804,1,1,Active Shallow Crust,240.0122,57.99827,0.0,03/11/1728 +-0.71573,47.31714,7905,1,4,6,56,44,3.55,27.5,fr,142,158,4808,1,1,Active Shallow Crust,0.0,89.98962,-90.0,01/04/7905 +-0.71573,47.31714,20,5,14,18,58,12,3.55,5.0,fr,143,0,4809,1,1,Active Shallow Crust,128.8962,89.99359,0.0,05/14/0020 +-0.71573,47.31714,6275,10,3,8,44,47,3.65,15.0,fr,144,125,4813,1,1,Active Shallow Crust,0.0,89.9901,0.0,10/03/6275 +-0.71573,47.31714,5019,7,31,18,59,36,3.65,15.0,fr,145,100,4816,1,2,Active Shallow Crust,240.0012,58.01285,0.0,07/31/5019 +-0.71573,47.31714,4719,7,23,16,0,51,3.65,15.0,fr,146,94,4816,1,2,Active Shallow Crust,240.0012,58.01285,0.0,07/23/4719 +-0.71573,47.31714,1720,11,29,18,31,38,3.75,5.0,fr,147,34,4824,1,2,Active Shallow Crust,0.0,89.98981,0.0,11/29/1720 +-0.71573,47.31714,5126,9,23,22,7,11,3.75,5.0,fr,148,102,4824,1,2,Active Shallow Crust,0.0,89.98981,0.0,09/23/5126 +-0.71573,47.31714,5705,10,12,9,37,43,3.75,27.5,fr,149,114,4826,1,2,Active Shallow Crust,0.0,89.98981,0.0,10/12/5705 +-0.71573,47.31714,9331,10,28,16,21,38,3.75,27.5,fr,150,186,4826,1,2,Active Shallow Crust,0.0,89.98981,0.0,10/28/9331 +-0.71573,47.31714,7941,12,27,13,12,38,3.75,15.0,fr,151,158,4831,1,1,Active Shallow Crust,0.0,89.9897,-90.0,12/27/7941 +-0.71573,47.31714,7066,3,4,13,57,15,3.85,5.0,fr,152,141,4836,1,3,Active Shallow Crust,0.0,89.98972,0.0,03/04/7066 +-0.71573,47.31714,4249,7,16,19,5,40,3.85,5.0,fr,153,84,4836,1,3,Active Shallow Crust,0.0,89.98972,0.0,07/16/4249 +-0.71573,47.31714,6947,1,7,22,54,1,3.85,5.0,fr,154,138,4836,1,3,Active Shallow Crust,0.0,89.98972,0.0,01/07/6947 +-0.71573,47.31714,8386,4,20,14,58,21,3.85,15.0,fr,155,167,4840,1,1,Active Shallow Crust,240.0108,57.99783,0.0,04/20/8386 +-0.71573,47.31714,188,4,25,18,38,19,3.95,5.0,fr,156,3,4848,1,2,Active Shallow Crust,0.0,89.98975,0.0,04/25/0188 +-0.71573,47.31714,5852,5,19,6,28,47,3.95,5.0,fr,157,117,4848,1,2,Active Shallow Crust,0.0,89.98975,0.0,05/19/5852 +-0.71573,47.31714,9239,7,26,15,20,42,3.95,5.0,fr,158,184,4857,1,1,Active Shallow Crust,128.9003,89.9938,0.0,07/26/9239 +-0.71573,47.31714,1849,7,31,19,54,47,4.05,5.0,fr,159,36,4860,1,1,Active Shallow Crust,0.0,89.98991,0.0,07/31/1849 +-0.71573,47.31714,6743,11,18,22,42,57,4.05,15.0,fr,160,134,4864,1,1,Active Shallow Crust,240.0061,58.00579,0.0,11/18/6743 +-0.71573,47.31714,4750,4,21,8,17,21,4.15,5.0,fr,161,94,4875,1,1,Active Shallow Crust,240.0087,57.99734,0.0,04/21/4750 +-0.71573,47.31714,2107,7,9,20,2,18,4.25,5.0,fr,162,42,4890,1,1,Active Shallow Crust,0.0,89.98996,-90.0,07/09/2107 +-0.71573,47.31714,958,11,11,18,25,1,4.55,5.0,fr,163,19,4920,1,1,Active Shallow Crust,0.0,89.99,0.0,11/11/0958 +-0.71573,47.31714,4885,3,19,16,49,13,4.55,15.0,fr,164,97,4921,1,1,Active Shallow Crust,0.0,89.99,0.0,03/19/4885 +-0.71573,47.31714,707,6,17,18,56,3,5.55,27.5,fr,165,14,5045,1,1,Active Shallow Crust,240.0334,57.99967,0.0,06/17/0707 +6.1812,43.31859,8795,12,25,19,48,6,3.55,15.0,fr,166,175,5281,1,1,Active Shallow Crust,0.0,89.99266,0.0,12/25/8795 +6.1812,43.31859,8350,2,21,11,4,21,3.65,5.0,fr,167,166,5295,1,1,Active Shallow Crust,240.0013,58.01206,0.0,02/21/8350 +6.1812,43.31859,9845,10,18,1,12,45,4.15,5.0,fr,168,196,5355,1,1,Active Shallow Crust,240.008,57.99722,0.0,10/18/9845 +6.1812,43.31859,9219,9,6,3,52,35,4.25,15.0,fr,169,184,5365,1,1,Active Shallow Crust,0.0,89.99017,0.0,09/06/9219 +9.68156,49.79542,1997,5,3,20,32,0,3.95,5.0,fr,170,39,5808,1,1,Active Shallow Crust,0.0,89.99178,0.0,05/03/1997 +8.06529,45.3936,5376,6,14,7,0,28,3.55,15.0,fr,171,107,6241,1,2,Active Shallow Crust,0.0,89.98584,0.0,06/14/5376 +8.06529,45.3936,9158,12,9,10,5,35,3.55,15.0,fr,172,183,6241,1,2,Active Shallow Crust,0.0,89.98584,0.0,12/09/9158 +8.06529,45.3936,533,12,3,10,26,26,3.65,5.0,fr,173,10,6252,1,1,Active Shallow Crust,0.0,89.98738,0.0,12/03/0533 +8.06529,45.3936,481,12,2,11,12,18,3.65,5.0,fr,174,9,6255,1,1,Active Shallow Crust,239.9996,58.01399,0.0,12/02/0481 +8.06529,45.3936,794,12,19,4,2,28,3.75,15.0,fr,175,15,6265,1,1,Active Shallow Crust,0.0,89.98875,0.0,12/19/0794 +8.06529,45.3936,5826,4,6,17,58,12,3.75,27.5,fr,176,116,6266,1,1,Active Shallow Crust,0.0,89.98875,0.0,04/06/5826 +8.06529,45.3936,3778,11,3,14,55,2,3.85,5.0,fr,177,75,6276,1,3,Active Shallow Crust,0.0,89.98997,0.0,11/03/3778 +8.06529,45.3936,4198,10,25,16,16,35,3.85,5.0,fr,178,83,6276,1,3,Active Shallow Crust,0.0,89.98997,0.0,10/25/4198 +8.06529,45.3936,1386,7,25,8,13,52,3.85,5.0,fr,179,27,6276,1,3,Active Shallow Crust,0.0,89.98997,0.0,07/25/1386 +8.06529,45.3936,7302,12,9,3,18,11,3.85,15.0,fr,180,146,6277,1,2,Active Shallow Crust,0.0,89.98997,0.0,12/09/7302 +8.06529,45.3936,9626,9,18,13,8,24,3.85,15.0,fr,181,192,6277,1,2,Active Shallow Crust,0.0,89.98997,0.0,09/18/9626 +8.06529,45.3936,6267,7,31,8,13,42,4.05,5.0,fr,182,125,6300,1,3,Active Shallow Crust,0.0,89.99203,0.0,07/31/6267 +8.06529,45.3936,3937,1,7,8,39,15,4.05,5.0,fr,183,78,6300,1,3,Active Shallow Crust,0.0,89.99203,0.0,01/07/3937 +8.06529,45.3936,2873,1,31,16,0,10,4.05,5.0,fr,184,57,6300,1,3,Active Shallow Crust,0.0,89.99203,0.0,01/31/2873 +8.06529,45.3936,3160,9,28,11,16,26,4.05,15.0,fr,185,63,6301,1,1,Active Shallow Crust,0.0,89.99203,0.0,09/28/3160 +8.06529,45.3936,6115,11,2,6,6,40,4.15,5.0,fr,186,122,6315,1,1,Active Shallow Crust,240.0092,57.99776,0.0,11/02/6115 +8.06529,45.3936,2869,9,1,11,51,39,4.15,15.0,fr,187,57,6316,1,1,Active Shallow Crust,240.0092,57.99779,0.0,09/01/2869 +8.06529,45.3936,17,4,5,11,48,58,4.25,5.0,fr,188,0,6324,1,2,Active Shallow Crust,0.0,89.98735,0.0,04/05/0017 +8.06529,45.3936,223,9,27,5,12,32,4.25,5.0,fr,189,4,6324,1,2,Active Shallow Crust,0.0,89.98735,0.0,09/27/0223 +8.06529,45.3936,770,3,27,15,57,2,4.35,5.0,fr,190,15,6336,1,1,Active Shallow Crust,0.0,89.98872,0.0,03/27/0770 +8.06529,45.3936,3174,7,24,1,30,56,4.55,5.0,fr,191,63,6360,1,2,Active Shallow Crust,0.0,89.99104,0.0,07/24/3174 +8.06529,45.3936,5234,6,30,9,18,40,4.55,5.0,fr,192,104,6360,1,2,Active Shallow Crust,0.0,89.99104,0.0,06/30/5234 +8.06529,45.3936,4503,8,3,3,44,21,4.55,15.0,fr,193,90,6361,1,1,Active Shallow Crust,0.0,89.99104,0.0,08/03/4503 +8.06529,45.3936,4587,11,7,4,56,42,4.75,27.5,fr,194,91,6389,1,1,Active Shallow Crust,240.0063,58.00484,0.0,11/07/4587 +8.065294,45.3936,4493,9,6,4,14,39,6.25,6.744814,fr,195,89,6564,1,1,Active Shallow Crust,0.0,89.98987,0.0,09/06/4493 +0.60037,45.66576,3431,5,27,6,28,30,3.55,27.5,fr,196,68,6722,1,1,Active Shallow Crust,0.0,89.99031,0.0,05/27/3431 +0.60037,45.66576,9300,1,29,1,47,37,3.55,5.0,fr,197,185,6723,1,1,Active Shallow Crust,240.0122,57.99812,0.0,01/29/9300 +0.60037,45.66576,4726,3,30,18,44,30,3.55,5.0,fr,198,94,6729,1,1,Active Shallow Crust,128.8961,89.99384,0.0,03/30/4726 +0.60037,45.66576,1704,10,1,17,22,24,3.65,5.0,fr,199,34,6732,1,1,Active Shallow Crust,0.0,89.98979,0.0,10/01/1704 +0.60037,45.66576,8348,12,28,6,22,37,3.75,15.0,fr,200,166,6751,1,1,Active Shallow Crust,0.0,89.99009,-90.0,12/28/8348 +0.60037,45.66576,812,8,23,13,3,25,3.85,5.0,fr,201,16,6756,1,1,Active Shallow Crust,0.0,89.99002,0.0,08/23/0812 +0.60037,45.66576,9035,11,19,14,15,13,3.85,15.0,fr,202,180,6757,1,1,Active Shallow Crust,0.0,89.99002,0.0,11/19/9035 +0.60037,45.66576,6298,6,30,22,45,38,4.15,5.0,fr,203,125,6792,1,1,Active Shallow Crust,0.0,89.98985,0.0,06/30/6298 +0.60037,45.66576,4190,8,20,19,49,24,4.15,15.0,fr,204,83,6793,1,1,Active Shallow Crust,0.0,89.98985,0.0,08/20/4190 +7.63049,45.34595,6232,9,14,14,51,32,3.55,5.0,fr,205,124,7200,1,1,Active Shallow Crust,0.0,89.99291,0.0,09/14/6232 +7.63049,45.34595,4589,4,10,19,56,19,3.55,5.0,fr,206,91,7206,1,1,Active Shallow Crust,0.0,89.99283,-90.0,04/10/4589 +7.63049,45.34595,8368,1,2,21,39,9,3.65,5.0,fr,207,167,7212,1,1,Active Shallow Crust,0.0,89.98737,0.0,01/02/8368 +7.63049,45.34595,3224,1,31,13,21,27,3.75,5.0,fr,208,64,7224,1,1,Active Shallow Crust,0.0,89.98874,0.0,01/31/3224 +7.63049,45.34595,2881,10,11,2,31,44,3.75,15.0,fr,209,57,7225,1,1,Active Shallow Crust,0.0,89.98874,0.0,10/11/2881 +7.63049,45.34595,5958,4,16,2,36,53,3.75,27.5,fr,210,119,7232,1,1,Active Shallow Crust,0.0,89.98861,-90.0,04/16/5958 +7.63049,45.34595,6824,12,17,22,1,17,3.85,27.5,fr,211,136,7238,1,1,Active Shallow Crust,0.0,89.98997,0.0,12/17/6824 +7.63049,45.34595,70,7,5,11,40,23,3.85,5.0,fr,212,1,7239,1,1,Active Shallow Crust,240.0111,57.99809,0.0,07/05/0070 +7.63049,45.34595,6539,2,22,1,26,59,3.95,27.5,fr,213,130,7253,1,1,Active Shallow Crust,240.0195,58.00457,0.0,02/22/6539 +7.63049,45.34595,1799,3,27,3,42,44,4.65,15.0,fr,214,35,7336,1,1,Active Shallow Crust,240.0106,57.99401,0.0,03/27/1799 +7.63049,45.34595,7260,1,18,7,17,16,5.05,5.0,fr,215,145,7380,1,1,Active Shallow Crust,0.0,89.98991,0.0,01/18/7260 +7.63049,45.34595,6726,5,16,8,28,59,5.55,5.0,fr,216,134,7440,1,1,Active Shallow Crust,0.0,89.99007,0.0,05/16/6726 +7.630492,45.34595,2695,1,10,2,28,47,6.15,6.011322,fr,217,53,7512,1,1,Active Shallow Crust,0.0,89.99004,0.0,01/10/2695 +-3.84192,46.34935,3767,8,6,23,7,17,3.65,5.0,fr,218,75,7692,1,1,Active Shallow Crust,0.0,89.99069,0.0,08/06/3767 +-3.84192,46.34935,9184,1,22,23,14,50,3.65,5.0,fr,219,183,7695,1,1,Active Shallow Crust,240.0016,58.01259,0.0,01/22/9184 +-3.84192,46.34935,2067,11,24,2,20,11,3.95,5.0,fr,220,41,7737,1,1,Active Shallow Crust,128.9005,89.99342,0.0,11/24/2067 +2.44754,40.2367,7380,1,8,10,2,55,3.65,5.0,fr,221,147,9138,1,1,Active Shallow Crust,0.0,89.98959,-90.0,01/08/7380 +2.44754,40.2367,8908,2,6,23,21,58,3.85,5.0,fr,222,178,9156,1,1,Active Shallow Crust,0.0,89.9891,0.0,02/06/8908 +3.45146,49.53257,6611,2,23,5,11,4,3.65,5.0,fr,223,132,9615,1,1,Active Shallow Crust,240.0011,58.01328,0.0,02/23/6611 +3.45146,49.53257,3520,12,4,0,2,22,4.25,5.0,fr,224,70,9684,1,1,Active Shallow Crust,0.0,89.98977,0.0,12/04/3520 +4.76758,43.53452,1839,6,5,8,36,9,3.55,5.0,fr,225,36,10083,1,1,Active Shallow Crust,240.0128,57.997,0.0,06/05/1839 +4.76758,43.53452,6435,7,6,23,18,14,3.65,15.0,fr,226,128,10096,1,1,Active Shallow Crust,240.0009,58.01289,0.0,07/06/6435 +4.76758,43.53452,5548,5,15,11,59,8,3.85,5.0,fr,227,110,10116,1,1,Active Shallow Crust,0.0,89.98965,0.0,05/15/5548 +6.00356,45.93741,1001,1,6,12,38,54,3.55,5.0,fr,228,20,10560,1,5,Active Shallow Crust,0.0,89.99299,0.0,01/06/1001 +6.00356,45.93741,4497,1,19,13,42,37,3.55,5.0,fr,229,89,10560,1,5,Active Shallow Crust,0.0,89.99299,0.0,01/19/4497 +6.00356,45.93741,517,3,25,7,19,8,3.55,5.0,fr,230,10,10560,1,5,Active Shallow Crust,0.0,89.99299,0.0,03/25/0517 +6.00356,45.93741,5749,2,20,23,39,28,3.55,5.0,fr,231,114,10560,1,5,Active Shallow Crust,0.0,89.99299,0.0,02/20/5749 +6.00356,45.93741,5914,5,8,14,23,14,3.55,5.0,fr,232,118,10560,1,5,Active Shallow Crust,0.0,89.99299,0.0,05/08/5914 +6.00356,45.93741,9705,12,13,9,10,37,3.55,15.0,fr,233,194,10561,1,1,Active Shallow Crust,0.0,89.99299,0.0,12/13/9705 +6.00356,45.93741,7735,10,4,22,16,35,3.55,5.0,fr,234,154,10563,1,1,Active Shallow Crust,240.0127,57.99746,0.0,10/04/7735 +6.00356,45.93741,3389,6,22,18,18,39,3.55,15.0,fr,235,67,10564,1,1,Active Shallow Crust,240.0127,57.99746,0.0,06/22/3389 +6.00356,45.93741,1103,7,17,5,48,43,3.65,5.0,fr,236,22,10572,1,1,Active Shallow Crust,0.0,89.9875,0.0,07/17/1103 +6.00356,45.93741,7272,4,14,15,37,21,3.65,15.0,fr,237,145,10573,1,1,Active Shallow Crust,0.0,89.9875,0.0,04/14/7272 +6.00356,45.93741,3132,7,18,9,23,50,3.65,5.0,fr,238,62,10575,1,2,Active Shallow Crust,240.0004,58.01394,0.0,07/18/3132 +6.00356,45.93741,4228,11,15,23,59,50,3.65,5.0,fr,239,84,10575,1,2,Active Shallow Crust,240.0004,58.01394,0.0,11/15/4228 +6.00356,45.93741,814,8,22,12,6,34,3.65,15.0,fr,240,16,10579,1,1,Active Shallow Crust,0.0,89.98736,-90.0,08/22/0814 +6.00356,45.93741,4624,11,19,7,0,38,3.75,5.0,fr,241,92,10584,1,3,Active Shallow Crust,0.0,89.98886,0.0,11/19/4624 +6.00356,45.93741,9466,1,11,3,59,22,3.75,5.0,fr,242,189,10584,1,3,Active Shallow Crust,0.0,89.98886,0.0,01/11/9466 +6.00356,45.93741,2607,6,7,7,1,18,3.75,5.0,fr,243,52,10584,1,3,Active Shallow Crust,0.0,89.98886,0.0,06/07/2607 +6.00356,45.93741,9041,8,1,7,47,16,3.75,27.5,fr,244,180,10586,1,1,Active Shallow Crust,0.0,89.98886,0.0,08/01/9041 +6.00356,45.93741,2148,5,30,10,9,21,3.85,15.0,fr,245,42,10597,1,1,Active Shallow Crust,0.0,89.99007,0.0,05/30/2148 +6.00356,45.93741,5557,4,3,0,19,37,3.85,5.0,fr,246,111,10599,1,1,Active Shallow Crust,240.0112,57.99833,0.0,04/03/5557 +6.00356,45.93741,4490,2,19,10,55,1,3.95,5.0,fr,247,89,10608,1,3,Active Shallow Crust,0.0,89.99115,0.0,02/19/4490 +6.00356,45.93741,5010,6,30,4,34,14,3.95,5.0,fr,248,100,10608,1,3,Active Shallow Crust,0.0,89.99115,0.0,06/30/5010 +6.00356,45.93741,7852,6,28,22,48,33,3.95,5.0,fr,249,157,10608,1,3,Active Shallow Crust,0.0,89.99115,0.0,06/28/7852 +6.00356,45.93741,58,11,1,14,6,56,3.95,15.0,fr,250,1,10609,1,1,Active Shallow Crust,0.0,89.99115,0.0,11/01/0058 +6.00356,45.93741,5213,1,31,23,20,30,3.95,27.5,fr,251,104,10610,1,1,Active Shallow Crust,0.0,89.99115,0.0,01/31/5213 +6.00356,45.93741,6279,9,4,8,47,10,3.95,5.0,fr,252,125,10611,1,1,Active Shallow Crust,240.0201,58.00464,0.0,09/04/6279 +6.00356,45.93741,5508,12,24,10,30,9,4.05,5.0,fr,253,110,10620,1,1,Active Shallow Crust,0.0,89.98817,0.0,12/24/5508 +6.00356,45.93741,2182,11,11,10,50,3,4.15,5.0,fr,254,43,10632,1,1,Active Shallow Crust,0.0,89.98946,0.0,11/11/2182 +6.00356,45.93741,7027,6,7,14,16,32,4.15,5.0,fr,255,140,10641,1,1,Active Shallow Crust,128.8983,89.99297,0.0,06/07/7027 +6.00356,45.93741,9121,3,7,11,59,27,4.25,5.0,fr,256,182,10644,1,2,Active Shallow Crust,0.0,89.9906,0.0,03/07/9121 +6.00356,45.93741,1178,4,14,13,11,49,4.25,5.0,fr,257,23,10644,1,2,Active Shallow Crust,0.0,89.9906,0.0,04/14/1178 +6.00356,45.93741,8150,12,15,5,7,44,4.35,5.0,fr,258,162,10656,1,1,Active Shallow Crust,0.0,89.98883,0.0,12/15/8150 +6.00356,45.93741,7067,11,5,15,59,37,4.35,15.0,fr,259,141,10657,1,1,Active Shallow Crust,0.0,89.98883,0.0,11/05/7067 +6.00356,45.93741,775,4,14,12,31,43,4.35,27.5,fr,260,15,10664,1,1,Active Shallow Crust,0.0,89.9887,-90.0,04/14/0775 +6.00356,45.93741,1518,3,13,4,14,7,4.35,15.0,fr,261,30,10666,1,1,Active Shallow Crust,128.8985,89.98249,0.0,03/13/1518 +6.00356,45.93741,8261,10,20,23,10,31,4.55,5.0,fr,262,165,10680,1,1,Active Shallow Crust,0.0,89.98891,0.0,10/20/8261 +6.00356,45.93741,1987,3,26,21,2,1,4.85,5.0,fr,263,39,10716,1,1,Active Shallow Crust,0.0,89.99058,0.0,03/26/1987 +6.00356,45.93741,2036,3,22,17,56,35,4.85,15.0,fr,264,40,10726,1,1,Active Shallow Crust,128.8931,89.989,0.0,03/22/2036 +6.00356,45.93741,7429,4,18,8,37,9,4.95,5.0,fr,265,148,10737,1,1,Active Shallow Crust,128.8901,89.98978,0.0,04/18/7429 +6.00356,45.93741,239,7,1,11,30,24,5.25,5.0,fr,266,4,10764,1,1,Active Shallow Crust,0.0,89.99009,0.0,07/01/0239 +3.73019,46.40263,8148,4,13,8,23,37,3.55,27.5,fr,267,162,11522,1,1,Active Shallow Crust,0.0,89.98957,0.0,04/13/8148 +3.73019,46.40263,993,9,23,16,49,24,3.85,5.0,fr,268,19,11556,1,1,Active Shallow Crust,0.0,89.99015,0.0,09/23/0993 +3.73019,46.40263,7969,1,29,20,22,18,4.45,5.0,fr,269,159,11628,1,1,Active Shallow Crust,0.0,89.99013,0.0,01/29/7969 +3.73019,46.40263,6360,8,20,13,27,18,4.65,27.5,fr,270,127,11654,1,1,Active Shallow Crust,0.0,89.9902,0.0,08/20/6360 +3.73019,46.40263,5026,7,7,12,6,21,4.75,5.0,fr,271,100,11664,1,1,Active Shallow Crust,0.0,89.99039,0.0,07/07/5026 +3.73019,46.40263,4904,2,6,4,54,57,4.85,15.0,fr,272,98,11677,1,1,Active Shallow Crust,0.0,89.98988,0.0,02/06/4904 +-3.302,49.53057,8118,8,27,9,31,47,3.55,15.0,fr,273,162,12001,1,1,Active Shallow Crust,0.0,89.99018,0.0,08/27/8118 +-3.302,49.53057,7253,1,9,21,29,19,3.75,5.0,fr,274,145,12024,1,1,Active Shallow Crust,0.0,89.9896,0.0,01/09/7253 +-3.302,49.53057,8941,11,28,8,6,34,3.95,27.5,fr,275,178,12056,1,1,Active Shallow Crust,0.0,89.98956,-90.0,11/28/8941 +7.14036,49.52765,8962,12,10,12,34,18,3.65,15.0,fr,276,179,12496,1,1,Active Shallow Crust,240.0021,58.01263,0.0,12/10/8962 +7.14036,49.52765,6990,9,22,6,57,0,3.75,5.0,fr,277,139,12504,1,1,Active Shallow Crust,0.0,89.9896,0.0,09/22/6990 +7.14036,49.52765,8789,9,3,13,48,13,3.75,5.0,fr,278,175,12507,1,1,Active Shallow Crust,240.0083,58.01849,0.0,09/03/8789 +7.14036,49.52765,7357,2,7,3,53,56,4.35,5.0,fr,279,147,12576,1,1,Active Shallow Crust,0.0,89.98958,0.0,02/07/7357 +4.93138,45.14235,2039,7,25,21,45,52,3.55,15.0,fr,280,40,12961,1,1,Active Shallow Crust,0.0,89.99289,0.0,07/25/2039 +4.93138,45.14235,2315,10,30,7,39,14,3.75,5.0,fr,281,46,12984,1,1,Active Shallow Crust,0.0,89.9887,0.0,10/30/2315 +4.93138,45.14235,3015,3,11,4,51,48,3.75,5.0,fr,282,60,12987,1,1,Active Shallow Crust,240.0073,58.01751,0.0,03/11/3015 +4.93138,45.14235,5528,7,26,12,9,14,3.75,5.0,fr,283,110,12993,1,1,Active Shallow Crust,128.8958,89.96747,0.0,07/26/5528 +4.93138,45.14235,8149,12,12,19,52,10,3.85,5.0,fr,284,162,12996,1,1,Active Shallow Crust,0.0,89.98993,0.0,12/12/8149 +4.93138,45.14235,774,10,12,22,2,59,3.85,27.5,fr,285,15,13001,1,1,Active Shallow Crust,240.0107,57.9974,0.0,10/12/0774 +4.93138,45.14235,1935,9,13,18,1,53,4.05,5.0,fr,286,38,13020,1,1,Active Shallow Crust,0.0,89.988,0.0,09/13/1935 +4.93138,45.14235,1568,4,22,19,53,56,4.05,15.0,fr,287,31,13027,1,1,Active Shallow Crust,0.0,89.99191,-90.0,04/22/1568 +4.93138,45.14235,4504,12,23,14,37,22,4.25,15.0,fr,288,90,13051,1,1,Active Shallow Crust,0.0,89.99036,-90.0,12/23/4504 +4.93138,45.14235,7679,1,8,6,50,22,4.35,5.0,fr,289,153,13056,1,2,Active Shallow Crust,0.0,89.98867,0.0,01/08/7679 +4.93138,45.14235,8772,2,4,20,34,34,4.35,5.0,fr,290,175,13056,1,2,Active Shallow Crust,0.0,89.98867,0.0,02/04/8772 +4.93138,45.14235,4270,1,21,16,37,0,4.35,5.0,fr,291,85,13065,1,1,Active Shallow Crust,128.8982,89.98297,0.0,01/21/4270 +4.93138,45.14235,7336,12,20,5,45,47,4.45,5.0,fr,292,146,13068,1,1,Active Shallow Crust,0.0,89.98991,0.0,12/20/7336 +4.93138,45.14235,2902,5,1,13,30,50,4.55,15.0,fr,293,58,13081,1,1,Active Shallow Crust,0.0,89.991,0.0,05/01/2902 +4.93138,45.14235,2212,5,6,13,18,54,5.25,15.0,fr,294,44,13165,1,1,Active Shallow Crust,0.0,89.98995,0.0,05/06/2212 +-0.10105,50.28067,9940,11,23,9,21,6,3.65,15.0,fr,295,198,13453,1,1,Active Shallow Crust,0.0,89.99004,0.0,11/23/9940 +-0.10105,50.28067,6963,7,2,13,18,28,3.65,5.0,fr,296,139,13458,1,1,Active Shallow Crust,0.0,89.99001,-90.0,07/02/6963 +-0.10105,50.28067,5940,9,22,18,20,33,3.65,27.5,fr,297,118,13460,1,1,Active Shallow Crust,0.0,89.99001,-90.0,09/22/5940 +-0.10105,50.28067,7429,9,14,19,26,49,3.85,15.0,fr,298,148,13477,1,1,Active Shallow Crust,0.0,89.99002,0.0,09/14/7429 +2.13938,51.7946,8913,3,27,10,51,36,3.55,15.0,fr,299,178,13921,1,1,Active Shallow Crust,0.0,89.99065,0.0,03/27/8913 +2.13938,51.7946,9868,3,18,9,20,47,3.65,15.0,fr,300,197,13939,1,1,Active Shallow Crust,0.0,89.98875,-90.0,03/18/9868 +2.13938,51.7946,3770,3,10,14,15,9,4.05,5.0,fr,301,75,13980,1,1,Active Shallow Crust,0.0,89.98948,0.0,03/10/3770 +2.13938,51.7946,3849,4,29,1,54,55,4.15,27.5,fr,302,76,14000,1,1,Active Shallow Crust,0.0,89.99052,-90.0,04/29/3849 +2.13938,51.7946,1361,8,21,18,28,54,4.35,5.0,fr,303,27,14025,1,1,Active Shallow Crust,128.8969,89.98279,0.0,08/21/1361 +2.13938,51.7946,7468,6,1,11,32,43,6.35,15.0,fr,304,149,14263,1,1,Active Shallow Crust,0.0,89.98994,-90.0,06/01/7468 +-0.43186,49.33897,6648,8,3,20,10,21,3.55,5.0,fr,305,132,14880,1,1,Active Shallow Crust,0.0,89.99014,0.0,08/03/6648 +-0.43186,49.33897,2741,1,20,21,9,39,3.55,5.0,fr,306,54,14886,1,1,Active Shallow Crust,0.0,89.99003,-90.0,01/20/2741 +-0.43186,49.33897,2923,8,4,17,20,11,3.65,5.0,fr,307,58,14895,1,1,Active Shallow Crust,240.0014,58.01296,0.0,08/04/2923 +-0.43186,49.33897,4002,4,18,13,16,44,3.75,5.0,fr,308,80,14904,1,2,Active Shallow Crust,0.0,89.98989,0.0,04/18/4002 +-0.43186,49.33897,2567,11,8,1,57,11,3.75,5.0,fr,309,51,14904,1,2,Active Shallow Crust,0.0,89.98989,0.0,11/08/2567 +-0.43186,49.33897,6980,1,22,11,9,36,3.75,5.0,fr,310,139,14910,1,1,Active Shallow Crust,0.0,89.9901,-90.0,01/22/6980 +-0.43186,49.33897,2597,8,9,21,28,33,3.85,15.0,fr,311,51,14917,1,1,Active Shallow Crust,0.0,89.99011,0.0,08/09/2597 +-0.43186,49.33897,3536,4,22,0,5,34,3.95,5.0,fr,312,70,14928,1,1,Active Shallow Crust,0.0,89.98989,0.0,04/22/3536 +-0.43186,49.33897,4910,6,19,17,9,53,3.95,5.0,fr,313,98,14937,1,1,Active Shallow Crust,128.9,89.99365,0.0,06/19/4910 +-0.43186,49.33897,1854,8,28,11,45,3,4.05,15.0,fr,314,37,14941,1,1,Active Shallow Crust,0.0,89.99007,0.0,08/28/1854 +-0.43186,49.33897,9028,4,2,11,6,35,4.25,15.0,fr,315,180,14965,1,1,Active Shallow Crust,0.0,89.98991,0.0,04/02/9028 +-0.43186,49.33897,622,3,9,3,10,46,4.25,15.0,fr,316,12,14968,1,1,Active Shallow Crust,240.0081,57.99419,0.0,03/09/0622 +-0.43186,49.33897,4248,9,3,16,42,34,4.35,5.0,fr,317,84,14976,1,1,Active Shallow Crust,0.0,89.99003,0.0,09/03/4248 +-0.43186,49.33897,4881,3,22,20,57,4,4.35,5.0,fr,318,97,14979,1,1,Active Shallow Crust,240.0091,57.99608,0.0,03/22/4881 +-0.43186,49.33897,2863,9,26,15,42,12,4.35,27.5,fr,319,57,14984,1,1,Active Shallow Crust,0.0,89.99007,-90.0,09/26/2863 +-0.43186,49.33897,503,2,2,18,58,5,4.35,27.5,fr,320,10,14987,1,1,Active Shallow Crust,128.8972,89.98275,0.0,02/02/0503 +-0.43186,49.33897,1177,2,7,0,37,57,4.45,15.0,fr,321,23,14989,1,1,Active Shallow Crust,0.0,89.98994,0.0,02/07/1177 +-0.43186,49.33897,9514,2,17,19,39,17,4.95,5.0,fr,322,190,15048,1,1,Active Shallow Crust,0.0,89.99,0.0,02/17/9514 +-0.43186,49.33897,8490,6,25,16,22,34,5.05,5.0,fr,323,169,15063,1,1,Active Shallow Crust,240.0237,57.99785,0.0,06/25/8490 +-6.65596,48.78605,3964,3,17,1,45,33,3.75,5.0,fr,324,79,15390,1,1,Active Shallow Crust,0.0,89.98932,-90.0,03/17/3964 +1.66285,51.39554,1868,9,9,10,31,44,3.55,5.0,fr,325,37,15846,1,1,Active Shallow Crust,0.0,89.99046,-90.0,09/09/1868 +1.66285,51.39554,5019,4,27,6,24,16,3.65,15.0,fr,326,100,15853,1,1,Active Shallow Crust,0.0,89.99019,0.0,04/27/5019 +1.66285,51.39554,6658,1,1,0,49,18,3.95,5.0,fr,327,133,15888,1,1,Active Shallow Crust,0.0,89.99007,0.0,01/01/6658 +1.66285,51.39554,2882,4,1,5,2,48,3.95,15.0,fr,328,57,15889,1,1,Active Shallow Crust,0.0,89.99007,0.0,04/01/2882 +1.66285,51.39554,4282,1,8,19,27,35,5.05,15.0,fr,329,85,16021,1,1,Active Shallow Crust,0.0,89.98993,0.0,01/08/4282 +1.66285,51.39554,872,5,17,5,8,32,5.15,5.0,fr,330,17,16032,1,1,Active Shallow Crust,0.0,89.99003,0.0,05/17/0872 +3.43559,46.22917,7612,4,8,4,3,29,3.55,15.0,fr,331,152,16324,1,1,Active Shallow Crust,240.0127,57.99815,0.0,04/08/7612 +3.43559,46.22917,748,8,19,10,49,55,3.65,5.0,fr,332,14,16332,1,1,Active Shallow Crust,0.0,89.99068,0.0,08/19/0748 +3.43559,46.22917,5033,8,4,21,45,43,3.75,5.0,fr,333,100,16353,1,1,Active Shallow Crust,128.896,89.96748,0.0,08/04/5033 +3.43559,46.22917,2068,7,18,4,4,53,3.85,27.5,fr,334,41,16364,1,1,Active Shallow Crust,0.0,89.99001,-90.0,07/18/2068 +3.43559,46.22917,3055,3,13,1,12,37,4.05,5.0,fr,335,61,16380,1,1,Active Shallow Crust,0.0,89.9902,0.0,03/13/3055 +3.43559,46.22917,3440,1,22,9,8,31,4.15,27.5,fr,336,68,16394,1,1,Active Shallow Crust,0.0,89.98951,0.0,01/22/3440 +3.43559,46.22917,9331,1,7,13,14,6,4.25,15.0,fr,337,186,16405,1,1,Active Shallow Crust,0.0,89.99065,0.0,01/07/9331 +3.43559,46.22917,9500,12,26,19,41,54,4.25,5.0,fr,338,189,16410,1,1,Active Shallow Crust,0.0,89.99054,-90.0,12/26/9500 +3.43559,46.22917,1925,11,3,22,58,50,5.55,15.0,fr,339,38,16570,1,1,Active Shallow Crust,128.8764,89.98978,0.0,11/03/1925 +3.94363,49.35655,1337,3,14,19,49,53,3.65,27.5,fr,340,26,16814,1,1,Active Shallow Crust,0.0,89.99122,0.0,03/14/1337 +3.94363,49.35655,3295,6,9,20,20,50,3.95,5.0,fr,341,65,16851,1,1,Active Shallow Crust,240.0198,58.00513,0.0,06/09/3295 +-3.3622,48.17519,2777,7,3,17,19,48,3.55,5.0,fr,342,55,17280,1,1,Active Shallow Crust,0.0,89.98991,0.0,07/03/2777 +-3.3622,48.17519,1841,6,7,12,42,7,3.55,15.0,fr,343,36,17281,1,1,Active Shallow Crust,0.0,89.98991,0.0,06/07/1841 +-3.3622,48.17519,9174,6,15,2,3,25,3.55,5.0,fr,344,183,17289,1,1,Active Shallow Crust,128.8963,89.99328,0.0,06/15/9174 +-3.3622,48.17519,1796,6,4,20,43,32,3.65,5.0,fr,345,35,17292,1,1,Active Shallow Crust,0.0,89.99101,0.0,06/04/1796 +-3.3622,48.17519,2046,3,5,3,35,44,3.75,5.0,fr,346,40,17307,1,2,Active Shallow Crust,240.0092,58.01719,0.0,03/05/2046 +-3.3622,48.17519,8937,6,28,18,26,31,3.75,5.0,fr,347,178,17307,1,2,Active Shallow Crust,240.0092,58.01719,0.0,06/28/8937 +-3.3622,48.17519,5792,8,9,17,53,12,3.75,5.0,fr,348,115,17310,1,1,Active Shallow Crust,0.0,89.9892,-90.0,08/09/5792 +-3.3622,48.17519,4029,11,3,11,12,21,3.85,5.0,fr,349,80,17316,1,1,Active Shallow Crust,0.0,89.99048,0.0,11/03/4029 +-3.3622,48.17519,3930,11,16,17,8,21,3.85,5.0,fr,350,78,17319,1,2,Active Shallow Crust,240.011,57.998,0.0,11/16/3930 +-3.3622,48.17519,7292,2,16,13,11,18,3.85,5.0,fr,351,145,17319,1,2,Active Shallow Crust,240.011,57.998,0.0,02/16/7292 +-3.3622,48.17519,4625,5,19,3,23,1,3.95,27.5,fr,352,92,17330,1,1,Active Shallow Crust,0.0,89.9894,0.0,05/19/4625 +-3.3622,48.17519,8941,1,25,9,27,33,4.05,15.0,fr,353,178,17344,1,1,Active Shallow Crust,240.0066,58.00572,0.0,01/25/8941 +-3.3622,48.17519,9426,12,9,8,6,35,4.05,5.0,fr,354,188,17346,1,1,Active Shallow Crust,0.0,89.99043,-90.0,12/09/9426 +-3.3622,48.17519,6463,1,29,20,47,20,4.25,5.0,fr,355,129,17364,1,2,Active Shallow Crust,0.0,89.98949,0.0,01/29/6463 +-3.3622,48.17519,6188,5,20,22,39,21,4.25,5.0,fr,356,123,17364,1,2,Active Shallow Crust,0.0,89.98949,0.0,05/20/6188 +-3.3622,48.17519,6056,12,1,19,14,51,4.45,15.0,fr,357,121,17395,1,1,Active Shallow Crust,0.0,89.99034,-90.0,12/01/6056 +-3.3622,48.17519,2265,3,17,15,16,30,4.55,5.0,fr,358,45,17400,1,1,Active Shallow Crust,0.0,89.99043,0.0,03/17/2265 +-3.3622,48.17519,8876,4,12,10,50,12,5.25,5.0,fr,359,177,17487,1,1,Active Shallow Crust,240.0266,58.00045,0.0,04/12/8876 +-3.3622,48.17519,7247,3,9,19,8,48,6.35,15.0,fr,360,144,17623,1,1,Active Shallow Crust,0.0,89.98997,-90.0,03/09/7247 +5.49777,47.67862,9826,1,22,0,33,46,3.55,27.5,fr,361,196,17771,1,1,Active Shallow Crust,128.8959,89.99321,0.0,01/22/9826 +5.49777,47.67862,4309,1,5,9,37,46,3.65,5.0,fr,362,86,17772,1,2,Active Shallow Crust,0.0,89.9879,0.0,01/05/4309 +5.49777,47.67862,841,12,29,9,39,42,3.65,5.0,fr,363,16,17772,1,2,Active Shallow Crust,0.0,89.9879,0.0,12/29/0841 +5.49777,47.67862,8052,12,31,23,2,14,3.65,5.0,fr,364,161,17781,1,1,Active Shallow Crust,128.8997,89.96355,0.0,12/31/8052 +5.49777,47.67862,4518,5,28,8,33,55,4.25,5.0,fr,365,90,17844,1,1,Active Shallow Crust,0.0,89.9909,0.0,05/28/4518 +5.49777,47.67862,8627,6,15,0,49,3,5.25,5.0,fr,366,172,17964,1,1,Active Shallow Crust,0.0,89.99041,0.0,06/15/8627 +0.23334,41.96181,1476,3,26,1,45,25,3.55,15.0,fr,367,29,18241,1,1,Active Shallow Crust,0.0,89.98992,0.0,03/26/1476 +0.23334,41.96181,7605,12,13,14,5,50,3.65,15.0,fr,368,152,18253,1,1,Active Shallow Crust,0.0,89.98997,0.0,12/13/7605 +0.23334,41.96181,4427,9,19,7,11,55,3.85,15.0,fr,369,88,18277,1,1,Active Shallow Crust,0.0,89.99004,0.0,09/19/4427 +0.23334,41.96181,9300,5,3,23,7,7,5.35,5.0,fr,370,185,18456,1,1,Active Shallow Crust,0.0,89.99,0.0,05/03/9300 +7.8149,48.08771,3916,8,2,14,26,39,3.55,5.0,fr,371,78,18720,1,3,Active Shallow Crust,0.0,89.99326,0.0,08/02/3916 +7.8149,48.08771,7874,1,13,16,13,2,3.55,5.0,fr,372,157,18720,1,3,Active Shallow Crust,0.0,89.99326,0.0,01/13/7874 +7.8149,48.08771,6058,5,7,9,21,38,3.55,5.0,fr,373,121,18720,1,3,Active Shallow Crust,0.0,89.99326,0.0,05/07/6058 +7.8149,48.08771,3380,3,9,4,40,23,3.55,15.0,fr,374,67,18721,1,3,Active Shallow Crust,0.0,89.99326,0.0,03/09/3380 +7.8149,48.08771,5410,12,22,21,5,19,3.55,15.0,fr,375,108,18721,1,3,Active Shallow Crust,0.0,89.99326,0.0,12/22/5410 +7.8149,48.08771,5875,1,10,4,28,19,3.55,15.0,fr,376,117,18721,1,3,Active Shallow Crust,0.0,89.99326,0.0,01/10/5875 +7.8149,48.08771,2002,4,1,21,43,42,3.55,5.0,fr,377,40,18726,1,1,Active Shallow Crust,0.0,89.99319,-90.0,04/01/2002 +7.8149,48.08771,8130,5,22,22,47,49,3.65,5.0,fr,378,162,18732,1,5,Active Shallow Crust,0.0,89.98799,0.0,05/22/8130 +7.8149,48.08771,1590,7,16,10,5,26,3.65,5.0,fr,379,31,18732,1,5,Active Shallow Crust,0.0,89.98799,0.0,07/16/1590 +7.8149,48.08771,2728,1,11,9,45,16,3.65,5.0,fr,380,54,18732,1,5,Active Shallow Crust,0.0,89.98799,0.0,01/11/2728 +7.8149,48.08771,6204,3,24,21,44,32,3.65,5.0,fr,381,124,18732,1,5,Active Shallow Crust,0.0,89.98799,0.0,03/24/6204 +7.8149,48.08771,3518,2,8,2,39,30,3.65,5.0,fr,382,70,18732,1,5,Active Shallow Crust,0.0,89.98799,0.0,02/08/3518 +7.8149,48.08771,5393,9,30,21,3,16,3.65,15.0,fr,383,107,18733,1,1,Active Shallow Crust,0.0,89.98799,0.0,09/30/5393 +7.8149,48.08771,9651,10,26,8,39,6,3.65,5.0,fr,384,193,18738,1,2,Active Shallow Crust,0.0,89.98785,-90.0,10/26/9651 +7.8149,48.08771,9777,6,13,21,23,59,3.65,5.0,fr,385,195,18738,1,2,Active Shallow Crust,0.0,89.98785,-90.0,06/13/9777 +7.8149,48.08771,9982,10,16,21,49,15,3.65,5.0,fr,386,199,18741,1,1,Active Shallow Crust,128.8994,89.96355,0.0,10/16/9982 +7.8149,48.08771,2420,3,3,4,52,34,3.75,5.0,fr,387,48,18744,1,1,Active Shallow Crust,0.0,89.9893,0.0,03/03/2420 +7.8149,48.08771,134,8,13,0,18,15,3.75,15.0,fr,388,2,18745,1,3,Active Shallow Crust,0.0,89.9893,0.0,08/13/0134 +7.8149,48.08771,6699,8,17,4,42,15,3.75,15.0,fr,389,133,18745,1,3,Active Shallow Crust,0.0,89.9893,0.0,08/17/6699 +7.8149,48.08771,500,2,21,10,58,32,3.75,15.0,fr,390,9,18745,1,3,Active Shallow Crust,0.0,89.9893,0.0,02/21/0500 +7.8149,48.08771,9157,6,6,0,18,4,3.75,27.5,fr,391,183,18746,1,2,Active Shallow Crust,0.0,89.9893,0.0,06/06/9157 +7.8149,48.08771,2626,7,10,15,31,5,3.75,27.5,fr,392,52,18746,1,2,Active Shallow Crust,0.0,89.9893,0.0,07/10/2626 +7.8149,48.08771,6504,2,9,7,37,48,3.75,5.0,fr,393,130,18747,1,1,Active Shallow Crust,240.0086,58.01699,0.0,02/09/6504 +7.8149,48.08771,3910,11,18,15,59,12,3.85,5.0,fr,394,78,18756,1,2,Active Shallow Crust,0.0,89.99046,0.0,11/18/3910 +7.8149,48.08771,2292,10,30,0,50,27,3.85,5.0,fr,395,45,18756,1,2,Active Shallow Crust,0.0,89.99046,0.0,10/30/2292 +7.8149,48.08771,9274,2,17,7,39,17,3.85,5.0,fr,396,185,18765,1,1,Active Shallow Crust,128.8955,89.99285,0.0,02/17/9274 +7.8149,48.08771,306,10,31,3,20,50,3.95,5.0,fr,397,6,18768,1,1,Active Shallow Crust,0.0,89.9915,0.0,10/31/0306 +7.8149,48.08771,1380,1,7,18,49,34,3.95,15.0,fr,398,27,18769,1,1,Active Shallow Crust,0.0,89.9915,0.0,01/07/1380 +7.8149,48.08771,1418,8,2,3,36,15,3.95,15.0,fr,399,28,18772,1,1,Active Shallow Crust,240.0207,58.00465,0.0,08/02/1418 +7.8149,48.08771,6054,1,11,17,22,16,4.05,5.0,fr,400,121,18780,1,2,Active Shallow Crust,0.0,89.98863,0.0,01/11/6054 +7.8149,48.08771,9808,9,18,18,56,16,4.05,5.0,fr,401,196,18780,1,2,Active Shallow Crust,0.0,89.98863,0.0,09/18/9808 +7.8149,48.08771,7864,11,3,3,46,35,4.05,15.0,fr,402,157,18781,1,1,Active Shallow Crust,0.0,89.98863,0.0,11/03/7864 +7.8149,48.08771,704,6,14,8,16,26,4.05,5.0,fr,403,14,18786,1,1,Active Shallow Crust,0.0,89.9885,-90.0,06/14/0704 +7.8149,48.08771,2852,7,20,1,30,40,4.35,5.0,fr,404,57,18816,1,1,Active Shallow Crust,0.0,89.98927,0.0,07/20/2852 +7.8149,48.08771,5026,10,13,2,42,34,4.35,27.5,fr,405,100,18818,1,1,Active Shallow Crust,0.0,89.98927,0.0,10/13/5026 +7.8149,48.08771,8295,7,23,12,37,27,4.55,5.0,fr,406,165,18843,1,1,Active Shallow Crust,240.0098,57.99752,0.0,07/23/8295 +7.8149,48.08771,8137,10,17,19,2,16,4.65,15.0,fr,407,162,18856,1,1,Active Shallow Crust,240.0113,57.99428,0.0,10/17/8137 +7.8149,48.08771,1256,3,29,18,34,2,4.75,27.5,fr,408,25,18875,1,1,Active Shallow Crust,128.8879,89.98827,0.0,03/29/1256 +7.8149,48.08771,9096,2,22,18,8,31,4.85,5.0,fr,409,181,18879,1,1,Active Shallow Crust,240.0178,58.00255,0.0,02/22/9096 +7.8149,48.08771,7102,9,11,8,46,43,5.15,5.0,fr,410,142,18915,1,1,Active Shallow Crust,240.0205,58.00016,0.0,09/11/7102 +7.8149,48.08771,156,8,7,4,58,6,5.15,15.0,fr,411,3,18916,1,1,Active Shallow Crust,240.0205,58.00017,0.0,08/07/0156 +7.8149,48.08771,9582,12,3,14,11,6,5.35,15.0,fr,412,191,18946,1,1,Active Shallow Crust,128.8822,89.98802,0.0,12/03/9582 +7.8149,48.08771,9124,10,3,8,8,46,5.45,15.0,fr,413,182,18952,1,1,Active Shallow Crust,240.0302,57.99872,0.0,10/03/9124 +7.81492,48.08771,2222,7,2,5,46,13,6.85,13.45767,fr,414,44,19116,1,1,Active Shallow Crust,359.9999,89.99002,0.0,07/02/2222 +2.45589,45.1671,3992,9,21,9,30,8,3.55,15.0,fr,415,79,19201,1,1,Active Shallow Crust,0.0,89.98933,0.0,09/21/3992 +2.45589,45.1671,5791,4,16,23,20,55,3.55,5.0,fr,416,115,19203,1,1,Active Shallow Crust,240.012,57.9983,0.0,04/16/5791 +2.45589,45.1671,9011,4,23,0,39,43,3.65,5.0,fr,417,180,19221,1,2,Active Shallow Crust,128.9013,89.9635,0.0,04/23/9011 +2.45589,45.1671,7338,1,11,12,38,49,3.65,5.0,fr,418,146,19221,1,2,Active Shallow Crust,128.9013,89.9635,0.0,01/11/7338 +2.45589,45.1671,3377,8,28,23,48,48,3.85,5.0,fr,419,67,19236,1,1,Active Shallow Crust,0.0,89.98994,0.0,08/28/3377 +2.45589,45.1671,2364,12,14,16,35,4,3.85,27.5,fr,420,47,19238,1,1,Active Shallow Crust,0.0,89.98994,0.0,12/14/2364 +2.45589,45.1671,4098,3,3,13,51,59,3.95,5.0,fr,421,81,19254,1,1,Active Shallow Crust,0.0,89.99092,-90.0,03/03/4098 +2.45589,45.1671,310,7,7,2,52,16,4.05,15.0,fr,422,6,19261,1,1,Active Shallow Crust,0.0,89.99001,0.0,07/07/0310 +2.45589,45.1671,5619,12,8,12,41,14,4.15,15.0,fr,423,112,19273,1,1,Active Shallow Crust,0.0,89.98931,0.0,12/08/5619 +2.45589,45.1671,6262,2,13,7,34,12,4.75,5.0,fr,424,125,19344,1,1,Active Shallow Crust,0.0,89.99017,0.0,02/13/6262 +-0.96923,48.37165,3642,2,19,22,21,0,3.55,15.0,fr,425,72,19681,1,1,Active Shallow Crust,0.0,89.98995,0.0,02/19/3642 +-0.96923,48.37165,4806,7,11,0,5,23,3.55,5.0,fr,426,96,19683,1,1,Active Shallow Crust,240.0125,57.99823,0.0,07/11/4806 +-0.96923,48.37165,7829,6,1,22,14,14,3.65,5.0,fr,427,156,19698,1,1,Active Shallow Crust,0.0,89.99019,-90.0,06/01/7829 +-0.96923,48.37165,2582,3,19,1,27,42,3.65,5.0,fr,428,51,19701,1,1,Active Shallow Crust,128.9002,89.96356,0.0,03/19/2582 +-0.96923,48.37165,7708,9,13,1,49,56,3.75,5.0,fr,429,154,19704,1,1,Active Shallow Crust,0.0,89.99002,0.0,09/13/7708 +-0.96923,48.37165,1775,10,22,8,10,17,3.75,5.0,fr,430,35,19707,1,2,Active Shallow Crust,240.0086,58.01764,0.0,10/22/1775 +-0.96923,48.37165,1593,6,17,0,9,16,3.75,5.0,fr,431,31,19707,1,2,Active Shallow Crust,240.0086,58.01764,0.0,06/17/1593 +-0.96923,48.37165,38,10,9,10,38,49,3.95,5.0,fr,432,0,19731,1,2,Active Shallow Crust,240.0201,58.00499,0.0,10/09/0038 +-0.96923,48.37165,1594,10,19,6,30,11,3.95,5.0,fr,433,31,19731,1,2,Active Shallow Crust,240.0201,58.00499,0.0,10/19/1594 +-0.96923,48.37165,1664,6,19,20,19,16,4.25,27.5,fr,434,33,19766,1,1,Active Shallow Crust,0.0,89.9899,0.0,06/19/1664 +-0.96923,48.37165,2706,1,28,5,3,36,4.75,27.5,fr,435,54,19826,1,1,Active Shallow Crust,0.0,89.98991,0.0,01/28/2706 +-0.9692485,48.37164,9166,4,23,16,45,13,7.35,17.5,fr,436,183,20145,1,1,Active Shallow Crust,128.6412,89.98959,0.0,04/23/9166 +4.0199,40.46907,8903,10,23,5,11,58,3.55,15.0,fr,437,178,20170,1,1,Active Shallow Crust,128.898,89.99233,0.0,10/23/8903 +4.0199,40.46907,2752,6,29,15,26,35,3.75,15.0,fr,438,55,20185,1,1,Active Shallow Crust,0.0,89.98782,0.0,06/29/2752 +4.0199,40.46907,5540,6,6,0,48,40,5.15,5.0,fr,439,110,20352,1,1,Active Shallow Crust,0.0,89.99027,0.0,06/06/5540 +-3.69757,46.2272,8700,11,7,3,5,41,3.55,5.0,fr,440,173,20649,1,1,Active Shallow Crust,128.896,89.99303,0.0,11/07/8700 +-6.26942,47.31325,3109,12,5,17,52,13,6.05,5.296268,fr,441,62,21426,1,1,Active Shallow Crust,0.0,89.99007,-90.0,12/05/3109 +5.59089,42.30487,717,5,8,1,47,43,3.55,5.0,fr,442,14,21609,1,1,Active Shallow Crust,128.8955,89.99627,0.0,05/08/0717 +5.59089,42.30487,8869,1,26,0,50,14,3.75,5.0,fr,443,177,21624,1,1,Active Shallow Crust,0.0,89.98815,0.0,01/26/8869 +4.00655,44.88077,175,8,14,6,35,7,3.55,5.0,fr,444,3,22080,1,1,Active Shallow Crust,0.0,89.99285,0.0,08/14/0175 +4.00655,44.88077,4841,5,18,15,36,7,3.65,27.5,fr,445,96,22094,1,1,Active Shallow Crust,0.0,89.98727,0.0,05/18/4841 +4.00655,44.88077,7933,12,21,12,54,11,3.75,27.5,fr,446,158,22109,1,1,Active Shallow Crust,240.0087,58.01692,0.0,12/21/7933 +4.00655,44.88077,6546,12,27,17,21,27,3.85,5.0,fr,447,130,22116,1,1,Active Shallow Crust,0.0,89.98988,0.0,12/27/6546 +4.00655,44.88077,3384,12,25,6,54,5,3.85,5.0,fr,448,67,22119,1,1,Active Shallow Crust,240.0105,57.99796,0.0,12/25/3384 +4.00655,44.88077,2866,5,20,17,24,36,4.15,5.0,fr,449,57,22152,1,1,Active Shallow Crust,0.0,89.98926,0.0,05/20/2866 +4.00655,44.88077,3815,7,24,6,53,58,4.15,15.0,fr,450,76,22156,1,1,Active Shallow Crust,240.0077,57.99733,0.0,07/24/3815 +4.00655,44.88077,2733,4,3,3,31,18,4.25,5.0,fr,451,54,22167,1,1,Active Shallow Crust,240.0073,57.99432,0.0,04/03/2733 +3.66783,40.14684,3835,6,22,16,51,0,3.75,5.0,fr,452,76,22584,1,1,Active Shallow Crust,0.0,89.99081,0.0,06/22/3835 +3.66783,40.14684,5600,4,8,18,12,27,3.95,5.0,fr,453,111,22608,1,1,Active Shallow Crust,0.0,89.99027,0.0,04/08/5600 +3.66783,40.14684,2810,3,14,4,51,20,3.95,5.0,fr,454,56,22614,1,1,Active Shallow Crust,0.0,89.99016,-90.0,03/14/2810 +-5.93455,49.41428,2818,7,25,6,12,57,3.85,5.0,fr,455,56,23082,1,1,Active Shallow Crust,0.0,89.9906,-90.0,07/25/2818 +-0.06299,44.3926,6820,8,14,22,52,47,3.55,15.0,fr,456,136,23524,1,1,Active Shallow Crust,240.012,57.99813,0.0,08/14/6820 +-0.06299,44.3926,838,4,29,5,45,26,3.75,5.0,fr,457,16,23553,1,1,Active Shallow Crust,128.8968,89.96735,0.0,04/29/0838 +5.36937,48.42464,4788,2,7,4,29,32,3.55,27.5,fr,458,95,24005,1,1,Active Shallow Crust,240.0113,57.99845,0.0,02/07/4788 +5.36937,48.42464,7679,12,6,12,28,12,3.65,5.0,fr,459,153,24012,1,1,Active Shallow Crust,0.0,89.98808,0.0,12/06/7679 +5.36937,48.42464,9289,10,27,11,32,53,3.85,5.0,fr,460,185,24036,1,1,Active Shallow Crust,0.0,89.99052,0.0,10/27/9289 +3.28069,49.25719,2714,3,6,4,59,44,3.55,5.0,fr,461,54,24960,1,1,Active Shallow Crust,0.0,89.99013,0.0,03/06/2714 +3.28069,49.25719,8741,1,12,3,30,23,3.65,15.0,fr,462,174,24973,1,1,Active Shallow Crust,0.0,89.9912,0.0,01/12/8741 +3.28069,49.25719,4664,8,31,7,30,48,3.75,27.5,fr,463,93,24986,1,1,Active Shallow Crust,0.0,89.98955,0.0,08/31/4664 +3.28069,49.25719,21,3,22,14,29,45,3.75,5.0,fr,464,0,24987,1,1,Active Shallow Crust,240.0087,58.01786,0.0,03/22/0021 +3.28069,49.25719,844,12,15,22,13,50,3.85,15.0,fr,465,16,24997,1,1,Active Shallow Crust,0.0,89.99068,0.0,12/15/0844 +3.28069,49.25719,188,10,26,10,22,50,3.95,5.0,fr,466,3,25008,1,1,Active Shallow Crust,0.0,89.98962,0.0,10/26/0188 +3.28069,49.25719,5568,7,25,4,35,34,4.05,5.0,fr,467,111,25020,1,1,Active Shallow Crust,0.0,89.99075,0.0,07/25/5568 +3.28069,49.25719,1746,10,19,10,32,34,4.65,5.0,fr,468,34,25092,1,1,Active Shallow Crust,0.0,89.9898,0.0,10/19/1746 +2.74419,52.69868,6784,5,4,9,27,54,3.55,5.0,fr,469,135,25446,1,1,Active Shallow Crust,0.0,89.99073,-90.0,05/04/6784 +2.74419,52.69868,2317,10,3,1,56,21,3.75,27.5,fr,470,46,25466,1,1,Active Shallow Crust,0.0,89.99029,0.0,10/03/2317 +-3.45284,49.6521,1719,5,13,19,39,55,3.75,15.0,fr,471,34,25945,1,1,Active Shallow Crust,0.0,89.98963,0.0,05/13/1719 +-3.45284,49.6521,2945,7,25,21,31,14,4.55,5.0,fr,472,58,26040,1,1,Active Shallow Crust,0.0,89.98968,0.0,07/25/2945 +4.06262,40.20271,4845,9,16,7,44,8,3.55,5.0,fr,473,96,26400,1,1,Active Shallow Crust,0.0,89.9923,0.0,09/16/4845 +4.06262,40.20271,1634,12,13,20,40,1,3.85,5.0,fr,474,32,26436,1,1,Active Shallow Crust,0.0,89.9891,0.0,12/13/1634 +4.06262,40.20271,183,5,30,19,55,49,3.85,15.0,fr,475,3,26437,1,1,Active Shallow Crust,0.0,89.9891,0.0,05/30/0183 +-0.83445,43.22455,5169,1,21,21,25,23,3.55,5.0,fr,476,103,26880,1,2,Active Shallow Crust,0.0,89.9899,0.0,01/21/5169 +-0.83445,43.22455,9896,10,30,3,3,56,3.55,5.0,fr,477,197,26880,1,2,Active Shallow Crust,0.0,89.9899,0.0,10/30/9896 +-0.83445,43.22455,5186,10,10,21,22,2,3.55,15.0,fr,478,103,26881,1,4,Active Shallow Crust,0.0,89.9899,0.0,10/10/5186 +-0.83445,43.22455,8837,1,13,15,13,28,3.55,15.0,fr,479,176,26881,1,4,Active Shallow Crust,0.0,89.9899,0.0,01/13/8837 +-0.83445,43.22455,4877,2,8,13,32,19,3.55,15.0,fr,480,97,26881,1,4,Active Shallow Crust,0.0,89.9899,0.0,02/08/4877 +-0.83445,43.22455,4864,6,12,2,4,32,3.55,15.0,fr,481,97,26881,1,4,Active Shallow Crust,0.0,89.9899,0.0,06/12/4864 +-0.83445,43.22455,8019,9,8,7,9,7,3.55,27.5,fr,482,160,26882,1,1,Active Shallow Crust,0.0,89.9899,0.0,09/08/8019 +-0.83445,43.22455,7127,8,9,3,57,55,3.55,5.0,fr,483,142,26883,1,1,Active Shallow Crust,240.0118,57.99808,0.0,08/09/7127 +-0.83445,43.22455,6414,5,10,6,8,55,3.55,5.0,fr,484,128,26886,1,1,Active Shallow Crust,0.0,89.98978,-90.0,05/10/6414 +-0.83445,43.22455,2568,1,7,23,7,47,3.55,5.0,fr,485,51,26889,1,1,Active Shallow Crust,128.8965,89.99357,0.0,01/07/2568 +-0.83445,43.22455,7934,7,3,8,12,27,3.65,5.0,fr,486,158,26892,1,5,Active Shallow Crust,0.0,89.99017,0.0,07/03/7934 +-0.83445,43.22455,7585,5,5,1,56,26,3.65,5.0,fr,487,151,26892,1,5,Active Shallow Crust,0.0,89.99017,0.0,05/05/7585 +-0.83445,43.22455,4314,6,3,2,12,17,3.65,5.0,fr,488,86,26892,1,5,Active Shallow Crust,0.0,89.99017,0.0,06/03/4314 +-0.83445,43.22455,7841,7,18,8,47,55,3.65,5.0,fr,489,156,26892,1,5,Active Shallow Crust,0.0,89.99017,0.0,07/18/7841 +-0.83445,43.22455,5686,3,19,22,1,56,3.65,5.0,fr,490,113,26892,1,5,Active Shallow Crust,0.0,89.99017,0.0,03/19/5686 +-0.83445,43.22455,6247,12,28,6,21,13,3.65,5.0,fr,491,124,26898,1,1,Active Shallow Crust,0.0,89.99007,-90.0,12/28/6247 +-0.83445,43.22455,6647,10,10,19,33,3,3.65,15.0,fr,492,132,26899,1,2,Active Shallow Crust,0.0,89.99007,-90.0,10/10/6647 +-0.83445,43.22455,5950,3,9,14,53,4,3.65,15.0,fr,493,118,26899,1,2,Active Shallow Crust,0.0,89.99007,-90.0,03/09/5950 +-0.83445,43.22455,4494,5,25,16,51,43,3.65,5.0,fr,494,89,26901,1,2,Active Shallow Crust,128.9005,89.96353,0.0,05/25/4494 +-0.83445,43.22455,8431,6,24,11,36,11,3.65,5.0,fr,495,168,26901,1,2,Active Shallow Crust,128.9005,89.96353,0.0,06/24/8431 +-0.83445,43.22455,5996,9,7,23,36,31,3.75,5.0,fr,496,119,26904,1,5,Active Shallow Crust,0.0,89.98978,0.0,09/07/5996 +-0.83445,43.22455,6380,12,1,3,11,38,3.75,5.0,fr,497,127,26904,1,5,Active Shallow Crust,0.0,89.98978,0.0,12/01/6380 +-0.83445,43.22455,4061,5,25,16,54,3,3.75,5.0,fr,498,81,26904,1,5,Active Shallow Crust,0.0,89.98978,0.0,05/25/4061 +-0.83445,43.22455,4628,1,10,8,4,39,3.75,5.0,fr,499,92,26904,1,5,Active Shallow Crust,0.0,89.98978,0.0,01/10/4628 +-0.83445,43.22455,7571,4,2,20,41,42,3.75,5.0,fr,500,151,26904,1,5,Active Shallow Crust,0.0,89.98978,0.0,04/02/7571 +-0.83445,43.22455,4255,5,6,5,45,20,3.75,15.0,fr,501,85,26905,1,1,Active Shallow Crust,0.0,89.98978,0.0,05/06/4255 +-0.83445,43.22455,2755,12,26,17,32,14,3.75,15.0,fr,502,55,26908,1,1,Active Shallow Crust,240.008,58.01745,0.0,12/26/2755 +-0.83445,43.22455,6929,10,21,20,21,48,3.85,5.0,fr,503,138,26916,1,2,Active Shallow Crust,0.0,89.99025,0.0,10/21/6929 +-0.83445,43.22455,498,10,6,16,27,40,3.85,5.0,fr,504,9,26916,1,2,Active Shallow Crust,0.0,89.99025,0.0,10/06/0498 +-0.83445,43.22455,9498,5,24,2,56,55,3.85,27.5,fr,505,189,26918,1,1,Active Shallow Crust,0.0,89.99025,0.0,05/24/9498 +-0.83445,43.22455,6957,7,8,16,10,31,3.85,5.0,fr,506,139,26919,1,1,Active Shallow Crust,240.0104,57.99775,0.0,07/08/6957 +-0.83445,43.22455,7505,4,26,16,54,51,3.85,15.0,fr,507,150,26923,1,1,Active Shallow Crust,0.0,89.99014,-90.0,04/26/7505 +-0.83445,43.22455,9774,1,18,21,36,35,3.95,5.0,fr,508,195,26931,1,1,Active Shallow Crust,240.0192,58.00492,0.0,01/18/9774 +-0.83445,43.22455,4327,5,7,12,22,10,3.95,5.0,fr,509,86,26934,1,1,Active Shallow Crust,0.0,89.99004,-90.0,05/07/4327 +-0.83445,43.22455,5010,7,18,23,35,18,3.95,15.0,fr,510,100,26938,1,1,Active Shallow Crust,128.9008,89.99391,0.0,07/18/5010 +-0.83445,43.22455,3663,10,1,14,10,22,4.05,5.0,fr,511,73,26940,1,3,Active Shallow Crust,0.0,89.99019,0.0,10/01/3663 +-0.83445,43.22455,9649,10,28,20,38,37,4.05,5.0,fr,512,192,26940,1,3,Active Shallow Crust,0.0,89.99019,0.0,10/28/9649 +-0.83445,43.22455,534,6,24,11,22,11,4.05,5.0,fr,513,10,26940,1,3,Active Shallow Crust,0.0,89.99019,0.0,06/24/0534 +-0.83445,43.22455,7981,5,25,13,12,49,4.05,15.0,fr,514,159,26941,1,1,Active Shallow Crust,0.0,89.99019,0.0,05/25/7981 +-0.83445,43.22455,1019,4,14,14,22,12,4.05,27.5,fr,515,20,26942,1,1,Active Shallow Crust,0.0,89.99019,0.0,04/14/1019 +-0.83445,43.22455,2930,2,23,13,56,59,4.05,5.0,fr,516,58,26943,1,1,Active Shallow Crust,240.0055,58.00577,0.0,02/23/2930 +-0.83445,43.22455,7922,4,20,3,13,10,4.05,15.0,fr,517,158,26947,1,1,Active Shallow Crust,0.0,89.99007,-90.0,04/20/7922 +-0.83445,43.22455,1280,10,7,15,32,56,4.15,5.0,fr,518,25,26952,1,2,Active Shallow Crust,0.0,89.98988,0.0,10/07/1280 +-0.83445,43.22455,8866,10,20,7,51,25,4.15,5.0,fr,519,177,26952,1,2,Active Shallow Crust,0.0,89.98988,0.0,10/20/8866 +-0.83445,43.22455,4677,3,7,21,16,47,4.15,27.5,fr,520,93,26954,1,1,Active Shallow Crust,0.0,89.98988,0.0,03/07/4677 +-0.83445,43.22455,9482,10,4,10,14,48,4.35,5.0,fr,521,189,26976,1,1,Active Shallow Crust,0.0,89.99013,0.0,10/04/9482 +-0.83445,43.22455,1057,1,31,20,56,4,4.35,15.0,fr,522,21,26977,1,2,Active Shallow Crust,0.0,89.99013,0.0,01/31/1057 +-0.83445,43.22455,9257,8,30,4,6,52,4.35,15.0,fr,523,185,26977,1,2,Active Shallow Crust,0.0,89.99013,0.0,08/30/9257 +-0.83445,43.22455,2285,5,30,2,37,43,4.35,27.5,fr,524,45,26978,1,1,Active Shallow Crust,0.0,89.99013,0.0,05/30/2285 +-0.83445,43.22455,4271,4,25,19,48,46,4.55,5.0,fr,525,85,27000,1,1,Active Shallow Crust,0.0,89.99013,0.0,04/25/4271 +-0.83445,43.22455,6436,8,5,9,29,34,4.65,15.0,fr,526,128,27013,1,1,Active Shallow Crust,0.0,89.98991,0.0,08/05/6436 +-0.83445,43.22455,6666,7,23,4,48,50,4.65,27.5,fr,527,133,27020,1,1,Active Shallow Crust,0.0,89.99005,-90.0,07/23/6666 +-0.83445,43.22455,8097,2,27,8,27,36,4.75,5.0,fr,528,161,27024,1,2,Active Shallow Crust,0.0,89.99008,0.0,02/27/8097 +-0.83445,43.22455,3774,1,24,2,21,14,4.75,5.0,fr,529,75,27024,1,2,Active Shallow Crust,0.0,89.99008,0.0,01/24/3774 +-0.83445,43.22455,2926,12,21,4,2,23,4.85,5.0,fr,530,58,27039,1,1,Active Shallow Crust,240.0159,58.00208,0.0,12/21/2926 +-0.83445,43.22455,8422,11,1,15,0,9,4.85,5.0,fr,531,168,27042,1,1,Active Shallow Crust,0.0,89.99001,-90.0,11/01/8422 +-0.83445,43.22455,9903,4,20,12,2,41,4.85,15.0,fr,532,198,27043,1,1,Active Shallow Crust,0.0,89.99001,-90.0,04/20/9903 +-0.83445,43.22455,8172,8,3,10,35,45,5.15,15.0,fr,533,163,27073,1,1,Active Shallow Crust,0.0,89.98995,0.0,08/03/8172 +-0.83445,43.22455,8742,12,13,16,31,10,5.15,5.0,fr,534,174,27078,1,1,Active Shallow Crust,0.0,89.98998,-90.0,12/13/8742 +-0.83445,43.22455,4783,2,7,20,13,18,5.85,5.0,fr,535,95,27159,1,1,Active Shallow Crust,240.0406,57.99901,0.0,02/07/4783 +-2.50558,42.90079,3023,3,6,3,34,31,3.55,5.0,fr,536,60,27360,1,1,Active Shallow Crust,0.0,89.98892,0.0,03/06/3023 +-2.50558,42.90079,7894,12,31,16,21,41,3.55,15.0,fr,537,157,27361,1,1,Active Shallow Crust,0.0,89.98892,0.0,12/31/7894 +-2.50558,42.90079,2264,1,6,0,21,41,3.55,5.0,fr,538,45,27363,1,1,Active Shallow Crust,240.0116,57.99786,0.0,01/06/2264 +-2.50558,42.90079,5852,1,2,22,27,17,3.65,5.0,fr,539,117,27372,1,2,Active Shallow Crust,0.0,89.99013,0.0,01/02/5852 +-2.50558,42.90079,770,3,16,5,4,5,3.65,5.0,fr,540,15,27372,1,2,Active Shallow Crust,0.0,89.99013,0.0,03/16/0770 +-2.50558,42.90079,2436,11,6,0,20,15,3.65,15.0,fr,541,48,27373,1,1,Active Shallow Crust,0.0,89.99013,0.0,11/06/2436 +-2.50558,42.90079,1043,5,8,19,4,28,3.65,5.0,fr,542,20,27381,1,2,Active Shallow Crust,128.9011,89.96346,0.0,05/08/1043 +-2.50558,42.90079,8994,12,21,6,48,24,3.65,5.0,fr,543,179,27381,1,2,Active Shallow Crust,128.9011,89.96346,0.0,12/21/8994 +-2.50558,42.90079,7300,3,25,10,4,5,3.75,15.0,fr,544,145,27385,1,1,Active Shallow Crust,0.0,89.9912,0.0,03/25/7300 +-2.50558,42.90079,3543,1,11,21,22,49,3.75,5.0,fr,545,70,27390,1,1,Active Shallow Crust,0.0,89.9911,-90.0,01/11/3543 +-2.50558,42.90079,3223,1,18,9,2,33,3.85,5.0,fr,546,64,27396,1,1,Active Shallow Crust,0.0,89.98954,0.0,01/18/3223 +-2.50558,42.90079,5258,8,23,17,2,19,4.05,5.0,fr,547,105,27420,1,1,Active Shallow Crust,0.0,89.98962,0.0,08/23/5258 +-2.50558,42.90079,6542,10,6,9,8,53,4.05,27.5,fr,548,130,27428,1,1,Active Shallow Crust,0.0,89.98949,-90.0,10/06/6542 +-2.50558,42.90079,4630,11,14,18,8,55,4.35,5.0,fr,549,92,27456,1,1,Active Shallow Crust,0.0,89.98971,0.0,11/14/4630 +-2.50558,42.90079,3892,12,15,1,25,4,4.45,5.0,fr,550,77,27468,1,1,Active Shallow Crust,0.0,89.98952,0.0,12/15/3892 +-1.52993,45.34908,9648,12,11,0,10,59,3.75,5.0,fr,551,192,28353,1,1,Active Shallow Crust,128.8967,89.96734,0.0,12/11/9648 +-1.52993,45.34908,6173,2,27,13,57,12,3.95,5.0,fr,552,123,28374,1,1,Active Shallow Crust,0.0,89.98982,-90.0,02/27/6173 +-1.52993,45.34908,5334,3,15,11,40,1,4.15,5.0,fr,553,106,28392,1,1,Active Shallow Crust,0.0,89.99023,0.0,03/15/5334 +0.13437,52.11355,9127,2,13,14,31,28,4.25,15.0,fr,554,182,28885,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/13/9127 +0.13437,52.11355,9056,3,6,18,54,6,4.25,27.5,fr,555,181,28886,1,1,Active Shallow Crust,0.0,89.98997,0.0,03/06/9056 +2.29503,51.02822,6122,7,4,21,18,57,3.65,15.0,fr,556,122,29293,1,1,Active Shallow Crust,0.0,89.98869,0.0,07/04/6122 +2.29503,51.02822,3277,1,14,16,28,26,3.75,5.0,fr,557,65,29304,1,1,Active Shallow Crust,0.0,89.98992,0.0,01/14/3277 +2.29503,51.02822,6358,10,13,17,21,23,3.95,5.0,fr,558,127,29328,1,1,Active Shallow Crust,0.0,89.99,0.0,10/13/6358 +2.29503,51.02822,6840,8,10,8,54,56,4.25,5.0,fr,559,136,29367,1,1,Active Shallow Crust,240.0087,57.99407,0.0,08/10/6840 +1.93816,40.29203,549,10,25,0,6,55,3.55,5.0,fr,560,10,29760,1,1,Active Shallow Crust,0.0,89.99039,0.0,10/25/0549 +1.93816,40.29203,6288,10,22,0,28,36,3.75,5.0,fr,561,125,29784,1,1,Active Shallow Crust,0.0,89.98931,0.0,10/22/6288 +1.93816,40.29203,6938,10,29,8,13,21,3.85,5.0,fr,562,138,29796,1,1,Active Shallow Crust,0.0,89.99047,0.0,10/29/6938 +1.93816,40.29203,3122,2,12,18,16,25,3.85,15.0,fr,563,62,29797,1,1,Active Shallow Crust,0.0,89.99047,0.0,02/12/3122 +1.93816,40.29203,2003,3,24,5,38,30,4.15,5.0,fr,564,40,29832,1,1,Active Shallow Crust,0.0,89.99036,0.0,03/24/2003 +6.33472,50.17804,4416,9,8,18,11,24,3.65,5.0,fr,565,88,30252,1,1,Active Shallow Crust,0.0,89.98849,0.0,09/08/4416 +6.33472,50.17804,4563,7,20,17,56,2,3.65,15.0,fr,566,91,30253,1,1,Active Shallow Crust,0.0,89.98849,0.0,07/20/4563 +6.33472,50.17804,9691,4,5,2,26,58,3.85,5.0,fr,567,193,30276,1,1,Active Shallow Crust,0.0,89.99086,0.0,04/05/9691 +6.33472,50.17804,3503,10,2,3,8,19,4.05,5.0,fr,568,70,30300,1,1,Active Shallow Crust,0.0,89.98911,0.0,10/02/3503 +6.33472,50.17804,497,5,20,10,48,9,4.25,15.0,fr,569,9,30325,1,1,Active Shallow Crust,0.0,89.99135,0.0,05/20/0497 +-4.80423,47.34569,9269,2,12,16,12,17,3.95,5.0,fr,570,185,30768,1,1,Active Shallow Crust,0.0,89.99138,0.0,02/12/9269 +-4.80423,47.34569,7060,11,6,2,2,32,5.45,5.0,fr,571,141,30948,1,1,Active Shallow Crust,0.0,89.99003,0.0,11/06/7060 +3.07881,41.81941,5933,8,30,22,15,38,3.55,5.0,fr,572,118,31200,1,1,Active Shallow Crust,0.0,89.98872,0.0,08/30/5933 +3.07881,41.81941,856,4,15,1,53,30,3.55,27.5,fr,573,17,31202,1,1,Active Shallow Crust,0.0,89.98872,0.0,04/15/0856 +3.07881,41.81941,4595,9,18,22,32,45,3.65,15.0,fr,574,91,31213,1,1,Active Shallow Crust,0.0,89.98995,0.0,09/18/4595 +3.07881,41.81941,8600,5,18,3,4,27,3.65,5.0,fr,575,171,31215,1,1,Active Shallow Crust,240.0011,58.01305,0.0,05/18/8600 +3.07881,41.81941,4862,9,10,22,22,53,3.65,15.0,fr,576,97,31216,1,1,Active Shallow Crust,240.0011,58.01305,0.0,09/10/4862 +3.07881,41.81941,8281,4,7,10,38,10,3.65,15.0,fr,577,165,31219,1,1,Active Shallow Crust,0.0,89.98984,-90.0,04/07/8281 +3.07881,41.81941,3581,10,10,2,34,4,3.65,5.0,fr,578,71,31221,1,1,Active Shallow Crust,128.9008,89.96343,0.0,10/10/3581 +3.07881,41.81941,7379,5,5,22,14,19,3.75,5.0,fr,579,147,31224,1,1,Active Shallow Crust,0.0,89.99104,0.0,05/05/7379 +3.07881,41.81941,311,9,16,6,36,47,3.75,5.0,fr,580,6,31233,1,1,Active Shallow Crust,128.8966,89.96741,0.0,09/16/0311 +3.07881,41.81941,9635,8,29,18,15,19,3.85,5.0,fr,581,192,31236,1,1,Active Shallow Crust,0.0,89.98936,0.0,08/29/9635 +3.07881,41.81941,5485,3,19,5,47,32,3.85,15.0,fr,582,109,31237,1,4,Active Shallow Crust,0.0,89.98936,0.0,03/19/5485 +3.07881,41.81941,5085,1,31,15,4,22,3.85,15.0,fr,583,101,31237,1,4,Active Shallow Crust,0.0,89.98936,0.0,01/31/5085 +3.07881,41.81941,9398,3,3,22,39,7,3.85,15.0,fr,584,187,31237,1,4,Active Shallow Crust,0.0,89.98936,0.0,03/03/9398 +3.07881,41.81941,6425,4,7,20,15,59,3.85,15.0,fr,585,128,31237,1,4,Active Shallow Crust,0.0,89.98936,0.0,04/07/6425 +3.07881,41.81941,413,2,19,10,48,30,3.95,5.0,fr,586,8,31248,1,2,Active Shallow Crust,0.0,89.99052,0.0,02/19/0413 +3.07881,41.81941,1267,1,12,0,3,47,3.95,5.0,fr,587,25,31248,1,2,Active Shallow Crust,0.0,89.99052,0.0,01/12/1267 +3.07881,41.81941,4018,7,10,7,8,8,3.95,15.0,fr,588,80,31249,1,1,Active Shallow Crust,0.0,89.99052,0.0,07/10/4018 +3.07881,41.81941,818,8,5,3,58,9,4.15,15.0,fr,589,16,31273,1,1,Active Shallow Crust,0.0,89.99059,0.0,08/05/0818 +3.07881,41.81941,3411,7,29,17,12,56,4.15,5.0,fr,590,68,31281,1,1,Active Shallow Crust,128.8979,89.99435,0.0,07/29/3411 +3.07881,41.81941,7810,5,2,2,22,49,4.35,5.0,fr,591,156,31299,1,1,Active Shallow Crust,240.0074,57.99602,0.0,05/02/7810 +3.07881,41.81941,7097,12,3,12,3,41,4.55,5.0,fr,592,141,31323,1,1,Active Shallow Crust,240.008,57.99718,0.0,12/03/7097 +3.07881,41.81941,4933,1,14,5,50,23,4.65,5.0,fr,593,98,31338,1,1,Active Shallow Crust,0.0,89.99036,-90.0,01/14/4933 +3.07881,41.81941,1025,7,15,2,23,35,4.75,15.0,fr,594,20,31354,1,1,Active Shallow Crust,128.8899,89.98816,0.0,07/15/1025 +3.07881,41.81941,4531,7,20,13,46,5,5.25,27.5,fr,595,90,31406,1,1,Active Shallow Crust,0.0,89.98991,0.0,07/20/4531 +3.07881,41.81941,7640,9,13,6,49,25,5.35,15.0,fr,596,152,31417,1,1,Active Shallow Crust,0.0,89.99007,0.0,09/13/7640 +-2.7067,43.71044,5262,3,17,17,28,38,4.15,5.0,fr,597,105,32232,1,1,Active Shallow Crust,0.0,89.99087,0.0,03/17/5262 +3.0446,48.21542,2980,9,20,3,30,51,3.55,5.0,fr,598,59,32640,1,1,Active Shallow Crust,0.0,89.98992,0.0,09/20/2980 +3.0446,48.21542,6192,1,4,12,10,17,3.85,5.0,fr,599,123,32676,1,1,Active Shallow Crust,0.0,89.99049,0.0,01/04/6192 +3.0446,48.21542,5694,1,19,10,1,37,3.95,15.0,fr,600,113,32692,1,1,Active Shallow Crust,240.02,58.00493,0.0,01/19/5694 +3.21858,42.77824,2037,4,26,9,30,33,3.55,5.0,fr,601,40,33120,1,1,Active Shallow Crust,0.0,89.9889,0.0,04/26/2037 +3.21858,42.77824,147,9,15,15,51,46,3.55,27.5,fr,602,2,33122,1,1,Active Shallow Crust,0.0,89.9889,0.0,09/15/0147 +3.21858,42.77824,1645,6,15,10,12,9,3.55,5.0,fr,603,32,33129,1,1,Active Shallow Crust,128.8966,89.9926,0.0,06/15/1645 +3.21858,42.77824,2602,11,9,23,30,41,3.65,5.0,fr,604,52,33132,1,1,Active Shallow Crust,0.0,89.9901,0.0,11/09/2602 +3.21858,42.77824,5837,3,3,13,23,12,3.65,5.0,fr,605,116,33138,1,1,Active Shallow Crust,0.0,89.98999,-90.0,03/03/5837 +3.21858,42.77824,8967,1,2,7,10,47,3.75,5.0,fr,606,179,33144,1,2,Active Shallow Crust,0.0,89.99118,0.0,01/02/8967 +3.21858,42.77824,7395,4,7,7,46,46,3.75,5.0,fr,607,147,33144,1,2,Active Shallow Crust,0.0,89.99118,0.0,04/07/7395 +3.21858,42.77824,8396,12,9,22,11,46,3.85,15.0,fr,608,167,33157,1,1,Active Shallow Crust,0.0,89.98952,0.0,12/09/8396 +3.21858,42.77824,4004,9,22,5,13,51,3.85,15.0,fr,609,80,33160,1,1,Active Shallow Crust,240.0105,57.99762,0.0,09/22/4004 +3.21858,42.77824,4382,3,30,23,59,13,3.85,27.5,fr,610,87,33161,1,1,Active Shallow Crust,240.0105,57.99762,0.0,03/30/4382 +3.21858,42.77824,9154,12,5,22,23,2,4.25,5.0,fr,611,183,33207,1,2,Active Shallow Crust,240.0069,57.99372,0.0,12/05/9154 +3.21858,42.77824,5221,9,17,0,41,53,4.25,5.0,fr,612,104,33207,1,2,Active Shallow Crust,240.0069,57.99372,0.0,09/17/5221 +3.21858,42.77824,1811,7,3,5,34,22,4.45,5.0,fr,613,36,33228,1,1,Active Shallow Crust,0.0,89.98949,0.0,07/03/1811 +3.21858,42.77824,7825,12,9,23,59,25,4.95,5.0,fr,614,156,33291,1,1,Active Shallow Crust,240.0102,58.0042,0.0,12/09/7825 +3.21858,42.77824,7267,4,8,13,6,22,5.75,15.0,fr,615,145,33388,1,1,Active Shallow Crust,240.0372,57.99879,0.0,04/08/7267 +-0.54461,50.25635,964,3,9,20,17,13,3.65,5.0,fr,616,19,33612,1,1,Active Shallow Crust,0.0,89.98994,0.0,03/09/0964 +-0.54461,50.25635,503,10,24,5,26,52,3.75,5.0,fr,617,10,33624,1,1,Active Shallow Crust,0.0,89.98975,0.0,10/24/0503 +-0.54461,50.25635,2764,5,17,14,25,38,3.75,15.0,fr,618,55,33628,1,1,Active Shallow Crust,240.0089,58.01763,0.0,05/17/2764 +-0.54461,50.25635,8443,5,24,17,14,29,4.05,15.0,fr,619,168,33661,1,1,Active Shallow Crust,0.0,89.99003,0.0,05/24/8443 +-2.56598,46.06954,5300,3,8,14,34,34,3.55,5.0,fr,620,105,34080,1,1,Active Shallow Crust,0.0,89.98951,0.0,03/08/5300 +4.67656,45.36911,1467,12,21,11,18,14,3.55,5.0,fr,621,29,34560,1,2,Active Shallow Crust,0.0,89.99291,0.0,12/21/1467 +4.67656,45.36911,8282,9,14,10,53,18,3.55,5.0,fr,622,165,34560,1,2,Active Shallow Crust,0.0,89.99291,0.0,09/14/8282 +4.67656,45.36911,5687,4,22,1,55,28,3.55,15.0,fr,623,113,34564,1,1,Active Shallow Crust,240.0125,57.99789,0.0,04/22/5687 +4.67656,45.36911,8695,11,16,1,58,29,3.55,15.0,fr,624,173,34570,1,1,Active Shallow Crust,128.8963,89.99292,0.0,11/16/8695 +4.67656,45.36911,8262,5,18,11,5,46,3.65,15.0,fr,625,165,34573,1,1,Active Shallow Crust,0.0,89.98737,0.0,05/18/8262 +4.67656,45.36911,8204,4,17,21,42,34,3.75,5.0,fr,626,164,34584,1,2,Active Shallow Crust,0.0,89.98875,0.0,04/17/8204 +4.67656,45.36911,2019,5,24,20,37,27,3.75,5.0,fr,627,40,34584,1,2,Active Shallow Crust,0.0,89.98875,0.0,05/24/2019 +4.67656,45.36911,8819,7,7,5,41,50,3.75,5.0,fr,628,176,34587,1,1,Active Shallow Crust,240.0083,58.01811,0.0,07/07/8819 +4.67656,45.36911,6447,9,20,5,27,11,3.85,27.5,fr,629,128,34601,1,1,Active Shallow Crust,240.011,57.99754,0.0,09/20/6447 +4.67656,45.36911,985,7,15,11,46,50,4.15,5.0,fr,630,19,34632,1,1,Active Shallow Crust,0.0,89.98935,0.0,07/15/0985 +4.67656,45.36911,1973,5,27,3,3,58,4.25,5.0,fr,631,39,34647,1,1,Active Shallow Crust,240.0072,57.99417,0.0,05/27/1973 +4.67656,45.36911,3601,10,28,6,51,55,4.25,5.0,fr,632,72,34653,1,1,Active Shallow Crust,128.8938,89.9809,0.0,10/28/3601 +-1.77174,42.84737,7491,10,7,11,35,57,3.55,5.0,fr,633,149,35040,1,4,Active Shallow Crust,0.0,89.99076,0.0,10/07/7491 +-1.77174,42.84737,196,7,2,8,40,42,3.55,5.0,fr,634,3,35040,1,4,Active Shallow Crust,0.0,89.99076,0.0,07/02/0196 +-1.77174,42.84737,8898,10,27,6,14,41,3.55,5.0,fr,635,177,35040,1,4,Active Shallow Crust,0.0,89.99076,0.0,10/27/8898 +-1.77174,42.84737,9138,5,2,15,4,27,3.55,5.0,fr,636,182,35040,1,4,Active Shallow Crust,0.0,89.99076,0.0,05/02/9138 +-1.77174,42.84737,2335,3,7,14,8,42,3.55,27.5,fr,637,46,35042,1,1,Active Shallow Crust,0.0,89.99076,0.0,03/07/2335 +-1.77174,42.84737,7331,7,19,21,23,17,3.55,5.0,fr,638,146,35043,1,1,Active Shallow Crust,240.0118,57.99817,0.0,07/19/7331 +-1.77174,42.84737,3118,11,6,2,52,52,3.55,5.0,fr,639,62,35049,1,1,Active Shallow Crust,128.8966,89.99353,0.0,11/06/3118 +-1.77174,42.84737,5962,11,30,5,53,28,3.55,15.0,fr,640,119,35050,1,1,Active Shallow Crust,128.8966,89.99353,0.0,11/30/5962 +-1.77174,42.84737,600,2,28,23,9,47,3.65,5.0,fr,641,11,35052,1,6,Active Shallow Crust,0.0,89.99012,0.0,02/28/0600 +-1.77174,42.84737,8300,12,12,13,51,55,3.65,5.0,fr,642,165,35052,1,6,Active Shallow Crust,0.0,89.99012,0.0,12/12/8300 +-1.77174,42.84737,7863,9,15,7,33,59,3.65,5.0,fr,643,157,35052,1,6,Active Shallow Crust,0.0,89.99012,0.0,09/15/7863 +-1.77174,42.84737,6053,10,13,3,37,26,3.65,5.0,fr,644,121,35052,1,6,Active Shallow Crust,0.0,89.99012,0.0,10/13/6053 +-1.77174,42.84737,7817,10,7,12,9,29,3.65,5.0,fr,645,156,35052,1,6,Active Shallow Crust,0.0,89.99012,0.0,10/07/7817 +-1.77174,42.84737,237,12,7,4,29,2,3.65,5.0,fr,646,4,35052,1,6,Active Shallow Crust,0.0,89.99012,0.0,12/07/0237 +-1.77174,42.84737,70,1,15,19,46,43,3.65,15.0,fr,647,1,35053,1,1,Active Shallow Crust,0.0,89.99012,0.0,01/15/0070 +-1.77174,42.84737,8856,6,26,17,48,14,3.65,5.0,fr,648,177,35058,1,2,Active Shallow Crust,0.0,89.99001,-90.0,06/26/8856 +-1.77174,42.84737,6167,7,4,10,47,0,3.65,5.0,fr,649,123,35058,1,2,Active Shallow Crust,0.0,89.99001,-90.0,07/04/6167 +-1.77174,42.84737,2335,8,3,4,16,38,3.65,27.5,fr,650,46,35060,1,1,Active Shallow Crust,0.0,89.99001,-90.0,08/03/2335 +-1.77174,42.84737,8664,10,1,16,52,48,3.75,5.0,fr,651,173,35064,1,4,Active Shallow Crust,0.0,89.98972,0.0,10/01/8664 +-1.77174,42.84737,4270,9,7,1,49,12,3.75,5.0,fr,652,85,35064,1,4,Active Shallow Crust,0.0,89.98972,0.0,09/07/4270 +-1.77174,42.84737,2422,2,9,22,1,14,3.75,5.0,fr,653,48,35064,1,4,Active Shallow Crust,0.0,89.98972,0.0,02/09/2422 +-1.77174,42.84737,6080,11,1,4,45,28,3.75,5.0,fr,654,121,35064,1,4,Active Shallow Crust,0.0,89.98972,0.0,11/01/6080 +-1.77174,42.84737,9002,10,5,7,53,25,3.75,15.0,fr,655,180,35065,1,3,Active Shallow Crust,0.0,89.98972,0.0,10/05/9002 +-1.77174,42.84737,2548,2,15,5,24,22,3.75,15.0,fr,656,50,35065,1,3,Active Shallow Crust,0.0,89.98972,0.0,02/15/2548 +-1.77174,42.84737,6905,5,4,7,31,29,3.75,15.0,fr,657,138,35065,1,3,Active Shallow Crust,0.0,89.98972,0.0,05/04/6905 +-1.77174,42.84737,6168,5,10,1,30,40,3.75,15.0,fr,658,123,35068,1,1,Active Shallow Crust,240.0081,58.01729,0.0,05/10/6168 +-1.77174,42.84737,4123,6,2,7,3,47,3.75,5.0,fr,659,82,35070,1,1,Active Shallow Crust,0.0,89.9896,-90.0,06/02/4123 +-1.77174,42.84737,3690,3,23,23,47,27,3.75,5.0,fr,660,73,35073,1,1,Active Shallow Crust,128.8969,89.96743,0.0,03/23/3690 +-1.77174,42.84737,2736,8,7,6,5,47,3.85,5.0,fr,661,54,35079,1,1,Active Shallow Crust,240.0106,57.9976,0.0,08/07/2736 +-1.77174,42.84737,9466,1,29,7,48,59,3.95,5.0,fr,662,189,35088,1,1,Active Shallow Crust,0.0,89.9895,0.0,01/29/9466 +-1.77174,42.84737,7376,6,24,17,37,30,3.95,15.0,fr,663,147,35089,1,1,Active Shallow Crust,0.0,89.9895,0.0,06/24/7376 +-1.77174,42.84737,5859,4,19,21,29,54,3.95,27.5,fr,664,117,35090,1,1,Active Shallow Crust,0.0,89.9895,0.0,04/19/5859 +-1.77174,42.84737,3474,1,6,6,46,56,3.95,5.0,fr,665,69,35091,1,1,Active Shallow Crust,240.0194,58.00479,0.0,01/06/3474 +-1.77174,42.84737,241,7,15,14,57,11,3.95,5.0,fr,666,4,35097,1,1,Active Shallow Crust,128.9006,89.99417,0.0,07/15/0241 +-1.77174,42.84737,3239,9,20,8,32,22,3.95,15.0,fr,667,64,35098,1,1,Active Shallow Crust,128.9006,89.99417,0.0,09/20/3239 +-1.77174,42.84737,8407,4,12,13,33,10,4.05,5.0,fr,668,168,35100,1,3,Active Shallow Crust,0.0,89.98961,0.0,04/12/8407 +-1.77174,42.84737,9169,4,11,12,8,39,4.05,5.0,fr,669,183,35100,1,3,Active Shallow Crust,0.0,89.98961,0.0,04/11/9169 +-1.77174,42.84737,1756,6,3,2,3,22,4.05,5.0,fr,670,35,35100,1,3,Active Shallow Crust,0.0,89.98961,0.0,06/03/1756 +-1.77174,42.84737,5636,12,20,5,23,36,4.05,27.5,fr,671,112,35102,1,1,Active Shallow Crust,0.0,89.98961,0.0,12/20/5636 +-1.77174,42.84737,5949,3,28,23,14,20,4.05,15.0,fr,672,118,35104,1,3,Active Shallow Crust,240.0054,58.00571,0.0,03/28/5949 +-1.77174,42.84737,1875,12,17,3,51,8,4.05,15.0,fr,673,37,35104,1,3,Active Shallow Crust,240.0054,58.00571,0.0,12/17/1875 +-1.77174,42.84737,9979,6,7,20,32,23,4.05,15.0,fr,674,199,35104,1,3,Active Shallow Crust,240.0054,58.00571,0.0,06/07/9979 +-1.77174,42.84737,8025,7,23,17,19,47,4.15,15.0,fr,675,160,35113,1,1,Active Shallow Crust,0.0,89.98981,0.0,07/23/8025 +-1.77174,42.84737,9554,11,23,10,14,6,4.15,27.5,fr,676,191,35114,1,1,Active Shallow Crust,0.0,89.98981,0.0,11/23/9554 +-1.77174,42.84737,3103,10,18,6,39,17,4.25,5.0,fr,677,62,35124,1,1,Active Shallow Crust,0.0,89.99009,0.0,10/18/3103 +-1.77174,42.84737,923,10,17,14,51,5,4.25,15.0,fr,678,18,35125,1,1,Active Shallow Crust,0.0,89.99009,0.0,10/17/0923 +-1.77174,42.84737,2859,3,16,23,19,21,4.35,15.0,fr,679,57,35137,1,1,Active Shallow Crust,0.0,89.9897,0.0,03/16/2859 +-1.77174,42.84737,6458,7,25,21,14,23,4.45,5.0,fr,680,129,35148,1,1,Active Shallow Crust,0.0,89.99017,0.0,07/25/6458 +-1.77174,42.84737,3831,3,2,10,52,34,4.55,5.0,fr,681,76,35166,1,1,Active Shallow Crust,0.0,89.98994,-90.0,03/02/3831 +-1.77174,42.84737,6735,2,5,18,51,31,4.75,5.0,fr,682,134,35187,1,1,Active Shallow Crust,240.0063,58.00427,0.0,02/05/6735 +-1.77174,42.84737,2058,12,30,8,14,40,4.85,15.0,fr,683,41,35197,1,1,Active Shallow Crust,0.0,89.99007,0.0,12/30/2058 +-1.77174,42.84737,7417,10,21,5,5,17,5.15,5.0,fr,684,148,35232,1,1,Active Shallow Crust,0.0,89.99004,0.0,10/21/7417 +-1.77174,42.84737,8341,4,13,6,31,21,5.25,27.5,fr,685,166,35246,1,1,Active Shallow Crust,0.0,89.99007,0.0,04/13/8341 +1.41647,43.56882,4952,12,29,7,56,36,3.55,5.0,fr,686,99,35529,1,1,Active Shallow Crust,128.8966,89.99361,0.0,12/29/4952 +1.41647,43.56882,5074,8,11,23,15,53,3.65,27.5,fr,687,101,35534,1,1,Active Shallow Crust,0.0,89.99023,0.0,08/11/5074 +1.41647,43.56882,3148,9,24,11,50,29,3.65,5.0,fr,688,62,35535,1,1,Active Shallow Crust,240.001,58.01276,0.0,09/24/3148 +1.41647,43.56882,1174,7,1,23,0,32,4.25,5.0,fr,689,23,35604,1,1,Active Shallow Crust,0.0,89.99021,0.0,07/01/1174 +1.41647,43.56882,7369,1,27,18,15,44,4.25,5.0,fr,690,147,35607,1,1,Active Shallow Crust,240.0069,57.99401,0.0,01/27/7369 +1.41647,43.56882,3005,3,23,21,55,38,4.35,15.0,fr,691,60,35617,1,1,Active Shallow Crust,0.0,89.98982,0.0,03/23/3005 +4.12621,41.70328,1298,12,3,13,35,22,3.65,5.0,fr,692,25,36012,1,1,Active Shallow Crust,0.0,89.99329,0.0,12/03/1298 +4.12621,41.70328,5774,9,18,22,8,1,4.45,15.0,fr,693,115,36109,1,1,Active Shallow Crust,0.0,89.98931,0.0,09/18/5774 +4.12621,41.70328,459,12,21,19,52,8,5.15,5.0,fr,694,9,36192,1,1,Active Shallow Crust,0.0,89.99046,0.0,12/21/0459 +-0.35024,41.90042,2940,1,4,19,16,21,3.55,5.0,fr,695,58,36480,1,1,Active Shallow Crust,0.0,89.99015,0.0,01/04/2940 +-0.35024,41.90042,8772,9,29,6,37,0,4.05,5.0,fr,696,175,36546,1,1,Active Shallow Crust,0.0,89.99013,-90.0,09/29/8772 +-0.35024,41.90042,8269,8,9,1,30,52,4.05,27.5,fr,697,165,36548,1,1,Active Shallow Crust,0.0,89.99013,-90.0,08/09/8269 +-0.35024,41.90042,5563,1,11,10,43,9,4.35,5.0,fr,698,111,36576,1,1,Active Shallow Crust,0.0,89.98991,0.0,01/11/5563 +7.53285,43.61105,7178,6,17,10,55,31,3.55,5.0,fr,699,143,36960,1,1,Active Shallow Crust,0.0,89.9927,0.0,06/17/7178 +7.53285,43.61105,2932,5,11,7,39,45,3.55,5.0,fr,700,58,36963,1,3,Active Shallow Crust,240.0124,57.99744,0.0,05/11/2932 +7.53285,43.61105,340,6,3,5,9,6,3.55,5.0,fr,701,6,36963,1,3,Active Shallow Crust,240.0124,57.99744,0.0,06/03/0340 +7.53285,43.61105,1636,10,19,10,59,9,3.55,5.0,fr,702,32,36963,1,3,Active Shallow Crust,240.0124,57.99744,0.0,10/19/1636 +7.53285,43.61105,6392,12,20,10,40,43,3.65,5.0,fr,703,127,36972,1,1,Active Shallow Crust,0.0,89.98698,0.0,12/20/6392 +7.53285,43.61105,7169,5,23,4,55,46,3.65,15.0,fr,704,143,36973,1,1,Active Shallow Crust,0.0,89.98698,0.0,05/23/7169 +7.53285,43.61105,1318,6,21,9,58,44,3.65,27.5,fr,705,26,36974,1,1,Active Shallow Crust,0.0,89.98698,0.0,06/21/1318 +7.53285,43.61105,1446,5,11,0,7,15,3.65,27.5,fr,706,28,36983,1,1,Active Shallow Crust,128.8999,89.96347,0.0,05/11/1446 +7.53285,43.61105,1335,11,26,6,48,23,3.85,15.0,fr,707,26,36997,1,1,Active Shallow Crust,0.0,89.98966,0.0,11/26/1335 +7.53285,43.61105,93,12,14,3,26,3,3.85,15.0,fr,708,1,37006,1,1,Active Shallow Crust,128.8965,89.99225,0.0,12/14/0093 +7.53285,43.61105,6427,5,6,12,29,56,3.95,5.0,fr,709,128,37008,1,1,Active Shallow Crust,0.0,89.99078,0.0,05/06/6427 +7.53285,43.61105,1736,4,19,19,17,43,3.95,5.0,fr,710,34,37011,1,1,Active Shallow Crust,240.0195,58.00559,0.0,04/19/1736 +7.53285,43.61105,9885,3,21,14,20,36,4.05,5.0,fr,711,197,37020,1,2,Active Shallow Crust,0.0,89.99179,0.0,03/21/9885 +7.53285,43.61105,2520,3,29,15,7,18,4.05,5.0,fr,712,50,37020,1,2,Active Shallow Crust,0.0,89.99179,0.0,03/29/2520 +7.53285,43.61105,8306,4,15,2,16,0,4.05,5.0,fr,713,166,37023,1,1,Active Shallow Crust,240.0061,58.0056,0.0,04/15/8306 +7.53285,43.61105,2517,9,28,20,58,24,4.15,5.0,fr,714,50,37032,1,2,Active Shallow Crust,0.0,89.98902,0.0,09/28/2517 +7.53285,43.61105,937,2,11,21,41,18,4.15,5.0,fr,715,18,37032,1,2,Active Shallow Crust,0.0,89.98902,0.0,02/11/0937 +7.53285,43.61105,1928,9,18,2,54,46,4.35,5.0,fr,716,38,37062,1,1,Active Shallow Crust,0.0,89.99118,-90.0,09/18/1928 +7.53285,43.61105,9991,1,4,7,59,26,4.55,15.0,fr,717,199,37081,1,1,Active Shallow Crust,0.0,89.99076,0.0,01/04/9991 +4.08869,45.02383,8252,1,28,15,15,25,3.55,5.0,fr,718,165,37440,1,1,Active Shallow Crust,0.0,89.99287,0.0,01/28/8252 +4.08869,45.02383,7914,5,19,1,38,34,3.55,27.5,fr,719,158,37451,1,1,Active Shallow Crust,128.896,89.99644,0.0,05/19/7914 +4.08869,45.02383,9639,6,3,6,28,54,3.75,5.0,fr,720,192,37464,1,1,Active Shallow Crust,0.0,89.98868,0.0,06/03/9639 +4.08869,45.02383,3570,6,12,0,25,43,3.85,5.0,fr,721,71,37476,1,2,Active Shallow Crust,0.0,89.98991,0.0,06/12/3570 +4.08869,45.02383,6497,3,4,8,13,18,3.85,5.0,fr,722,129,37476,1,2,Active Shallow Crust,0.0,89.98991,0.0,03/04/6497 +4.08869,45.02383,1881,7,24,8,32,15,4.15,15.0,fr,723,37,37513,1,2,Active Shallow Crust,0.0,89.98928,0.0,07/24/1881 +4.08869,45.02383,2044,9,12,20,38,27,4.15,15.0,fr,724,40,37513,1,2,Active Shallow Crust,0.0,89.98928,0.0,09/12/2044 +4.08869,45.02383,5821,11,24,17,21,53,4.15,27.5,fr,725,116,37514,1,1,Active Shallow Crust,0.0,89.98928,0.0,11/24/5821 +4.08869,45.02383,7822,12,1,21,3,52,4.25,5.0,fr,726,156,37524,1,1,Active Shallow Crust,0.0,89.99045,0.0,12/01/7822 +4.08869,45.02383,3470,10,28,11,24,46,4.25,27.5,fr,727,69,37526,1,1,Active Shallow Crust,0.0,89.99045,0.0,10/28/3470 +4.08869,45.02383,7830,8,16,11,31,8,4.35,15.0,fr,728,156,37537,1,1,Active Shallow Crust,0.0,89.98865,0.0,08/16/7830 +4.08869,45.02383,5973,6,21,4,30,45,4.75,5.0,fr,729,119,37584,1,1,Active Shallow Crust,0.0,89.98926,0.0,06/21/5973 +4.08869,45.02383,4796,12,30,10,29,39,5.55,15.0,fr,730,95,37681,1,1,Active Shallow Crust,0.0,89.99002,0.0,12/30/4796 +-1.63431,43.13928,9153,8,2,3,19,49,3.55,5.0,fr,731,183,37920,1,2,Active Shallow Crust,0.0,89.9908,0.0,08/02/9153 +-1.63431,43.13928,883,12,26,15,33,49,3.55,5.0,fr,732,17,37920,1,2,Active Shallow Crust,0.0,89.9908,0.0,12/26/0883 +-1.63431,43.13928,3332,5,22,11,3,16,3.55,15.0,fr,733,66,37921,1,2,Active Shallow Crust,0.0,89.9908,0.0,05/22/3332 +-1.63431,43.13928,7774,8,3,1,35,0,3.55,15.0,fr,734,155,37921,1,2,Active Shallow Crust,0.0,89.9908,0.0,08/03/7774 +-1.63431,43.13928,9660,10,31,4,8,15,3.55,5.0,fr,735,193,37923,1,2,Active Shallow Crust,240.0116,57.99825,0.0,10/31/9660 +-1.63431,43.13928,2729,12,28,7,38,26,3.55,5.0,fr,736,54,37923,1,2,Active Shallow Crust,240.0116,57.99825,0.0,12/28/2729 +-1.63431,43.13928,8488,4,16,15,31,0,3.55,27.5,fr,737,169,37925,1,2,Active Shallow Crust,240.0116,57.99815,0.0,04/16/8488 +-1.63431,43.13928,4417,10,26,17,26,53,3.55,27.5,fr,738,88,37925,1,2,Active Shallow Crust,240.0116,57.99815,0.0,10/26/4417 +-1.63431,43.13928,8214,8,10,22,4,6,3.55,5.0,fr,739,164,37926,1,1,Active Shallow Crust,0.0,89.99069,-90.0,08/10/8214 +-1.63431,43.13928,6381,10,29,2,54,24,3.55,5.0,fr,740,127,37929,1,1,Active Shallow Crust,128.8964,89.99356,0.0,10/29/6381 +-1.63431,43.13928,3491,12,29,5,31,32,3.55,15.0,fr,741,69,37930,1,2,Active Shallow Crust,128.8964,89.99356,0.0,12/29/3491 +-1.63431,43.13928,919,2,9,3,27,3,3.55,15.0,fr,742,18,37930,1,2,Active Shallow Crust,128.8964,89.99356,0.0,02/09/0919 +-1.63431,43.13928,343,12,14,21,43,27,3.65,5.0,fr,743,6,37932,1,3,Active Shallow Crust,0.0,89.99017,0.0,12/14/0343 +-1.63431,43.13928,8053,12,25,10,19,38,3.65,5.0,fr,744,161,37932,1,3,Active Shallow Crust,0.0,89.99017,0.0,12/25/8053 +-1.63431,43.13928,4292,5,8,1,53,22,3.65,5.0,fr,745,85,37932,1,3,Active Shallow Crust,0.0,89.99017,0.0,05/08/4292 +-1.63431,43.13928,5069,9,2,20,45,28,3.65,15.0,fr,746,101,37933,1,1,Active Shallow Crust,0.0,89.99017,0.0,09/02/5069 +-1.63431,43.13928,4176,4,11,12,48,30,3.65,5.0,fr,747,83,37935,1,1,Active Shallow Crust,240.001,58.01291,0.0,04/11/4176 +-1.63431,43.13928,5752,11,2,12,35,50,3.65,15.0,fr,748,115,37936,1,1,Active Shallow Crust,240.001,58.01291,0.0,11/02/5752 +-1.63431,43.13928,7680,6,27,17,21,36,3.75,5.0,fr,749,153,37944,1,2,Active Shallow Crust,0.0,89.98977,0.0,06/27/7680 +-1.63431,43.13928,4464,1,15,23,35,58,3.75,5.0,fr,750,89,37944,1,2,Active Shallow Crust,0.0,89.98977,0.0,01/15/4464 +-1.63431,43.13928,2778,9,18,12,37,7,3.75,5.0,fr,751,55,37947,1,2,Active Shallow Crust,240.0082,58.01743,0.0,09/18/2778 +-1.63431,43.13928,600,1,5,11,25,45,3.75,5.0,fr,752,11,37947,1,2,Active Shallow Crust,240.0082,58.01743,0.0,01/05/0600 +-1.63431,43.13928,5286,5,28,8,4,20,3.85,5.0,fr,753,105,37956,1,1,Active Shallow Crust,0.0,89.98958,0.0,05/28/5286 +-1.63431,43.13928,2794,4,26,23,19,1,3.95,5.0,fr,754,55,37968,1,1,Active Shallow Crust,0.0,89.98956,0.0,04/26/2794 +-1.63431,43.13928,745,12,25,0,3,23,3.95,5.0,fr,755,14,37971,1,3,Active Shallow Crust,240.0194,58.00502,0.0,12/25/0745 +-1.63431,43.13928,125,3,7,4,19,1,3.95,5.0,fr,756,2,37971,1,3,Active Shallow Crust,240.0194,58.00502,0.0,03/07/0125 +-1.63431,43.13928,3474,6,23,3,24,27,3.95,5.0,fr,757,69,37971,1,3,Active Shallow Crust,240.0194,58.00502,0.0,06/23/3474 +-1.63431,43.13928,2061,2,19,3,47,17,4.15,5.0,fr,758,41,37992,1,1,Active Shallow Crust,0.0,89.98986,0.0,02/19/2061 +-1.63431,43.13928,2861,3,19,13,58,53,4.15,15.0,fr,759,57,37993,1,1,Active Shallow Crust,0.0,89.98986,0.0,03/19/2861 +-1.63431,43.13928,8869,5,26,10,30,59,4.15,5.0,fr,760,177,37998,1,1,Active Shallow Crust,0.0,89.98974,-90.0,05/26/8869 +-1.63431,43.13928,8540,9,16,22,40,25,4.25,27.5,fr,761,170,38006,1,1,Active Shallow Crust,0.0,89.99014,0.0,09/16/8540 +-1.63431,43.13928,5145,2,19,13,10,8,4.25,5.0,fr,762,102,38010,1,1,Active Shallow Crust,0.0,89.99003,-90.0,02/19/5145 +-1.63431,43.13928,6899,10,17,11,11,52,4.35,15.0,fr,763,137,38020,1,1,Active Shallow Crust,240.0077,57.99578,0.0,10/17/6899 +-1.63431,43.13928,1035,8,13,15,9,49,4.45,5.0,fr,764,20,38037,1,1,Active Shallow Crust,128.8928,89.9938,0.0,08/13/1035 +-1.63431,43.13928,7175,2,28,14,48,38,5.15,5.0,fr,765,143,38112,1,1,Active Shallow Crust,0.0,89.99008,0.0,02/28/7175 +-1.63431,43.13928,2311,11,8,9,58,10,5.25,5.0,fr,766,46,38127,1,1,Active Shallow Crust,240.0184,57.99992,0.0,11/08/2311 +-1.63431,43.13928,7420,5,28,3,55,54,5.45,27.5,fr,767,148,38150,1,1,Active Shallow Crust,0.0,89.99009,0.0,05/28/7420 +5.05987,50.13612,5846,7,11,0,19,52,3.55,5.0,fr,768,116,38409,1,1,Active Shallow Crust,128.8965,89.99354,0.0,07/11/5846 +5.05987,50.13612,4246,8,18,18,58,36,3.65,15.0,fr,769,84,38413,1,1,Active Shallow Crust,0.0,89.98848,0.0,08/18/4246 +5.05987,50.13612,9152,1,11,7,35,5,3.65,5.0,fr,770,183,38418,1,1,Active Shallow Crust,0.0,89.98834,-90.0,01/11/9152 +5.05987,50.13612,2971,6,23,9,48,36,4.05,27.5,fr,771,59,38471,1,1,Active Shallow Crust,128.8891,89.99454,0.0,06/23/2971 +5.05987,50.13612,2556,1,9,6,24,56,4.35,5.0,fr,772,51,38496,1,1,Active Shallow Crust,0.0,89.98971,0.0,01/09/2556 +5.05987,50.13612,2400,2,14,1,58,52,4.65,5.0,fr,773,47,38535,1,1,Active Shallow Crust,240.0121,57.99443,0.0,02/14/2400 +5.05987,50.13612,6311,1,2,22,27,30,4.85,5.0,fr,774,126,38556,1,1,Active Shallow Crust,0.0,89.98987,0.0,01/02/6311 +6.20983,50.90268,9320,11,29,1,32,7,3.55,5.0,fr,775,186,38880,1,1,Active Shallow Crust,0.0,89.98728,0.0,11/29/9320 +6.20983,50.90268,1743,5,17,21,30,46,3.55,15.0,fr,776,34,38881,1,1,Active Shallow Crust,0.0,89.98728,0.0,05/17/1743 +6.20983,50.90268,8487,10,21,23,8,19,3.55,5.0,fr,777,169,38883,1,1,Active Shallow Crust,240.0113,57.99878,0.0,10/21/8487 +6.20983,50.90268,474,9,16,18,59,56,3.65,5.0,fr,778,9,38892,1,6,Active Shallow Crust,0.0,89.98866,0.0,09/16/0474 +6.20983,50.90268,6769,6,26,11,52,46,3.65,5.0,fr,779,135,38892,1,6,Active Shallow Crust,0.0,89.98866,0.0,06/26/6769 +6.20983,50.90268,3770,11,5,18,16,11,3.65,5.0,fr,780,75,38892,1,6,Active Shallow Crust,0.0,89.98866,0.0,11/05/3770 +6.20983,50.90268,3915,11,1,23,11,31,3.65,5.0,fr,781,78,38892,1,6,Active Shallow Crust,0.0,89.98866,0.0,11/01/3915 +6.20983,50.90268,243,1,9,11,34,53,3.65,5.0,fr,782,4,38892,1,6,Active Shallow Crust,0.0,89.98866,0.0,01/09/0243 +6.20983,50.90268,1677,1,3,12,30,47,3.65,5.0,fr,783,33,38892,1,6,Active Shallow Crust,0.0,89.98866,0.0,01/03/1677 +6.20983,50.90268,9490,2,14,15,18,45,3.65,15.0,fr,784,189,38893,1,3,Active Shallow Crust,0.0,89.98866,0.0,02/14/9490 +6.20983,50.90268,9244,9,18,7,0,34,3.65,15.0,fr,785,184,38893,1,3,Active Shallow Crust,0.0,89.98866,0.0,09/18/9244 +6.20983,50.90268,3947,3,12,9,46,55,3.65,15.0,fr,786,78,38893,1,3,Active Shallow Crust,0.0,89.98866,0.0,03/12/3947 +6.20983,50.90268,7640,1,23,5,11,7,3.65,27.5,fr,787,152,38894,1,1,Active Shallow Crust,0.0,89.98866,0.0,01/23/7640 +6.20983,50.90268,7056,5,14,14,27,9,3.65,5.0,fr,788,141,38895,1,2,Active Shallow Crust,240.0016,58.01289,0.0,05/14/7056 +6.20983,50.90268,6166,7,28,16,43,0,3.65,5.0,fr,789,123,38895,1,2,Active Shallow Crust,240.0016,58.01289,0.0,07/28/6166 +6.20983,50.90268,472,6,16,10,43,7,3.75,5.0,fr,790,9,38904,1,1,Active Shallow Crust,0.0,89.9899,0.0,06/16/0472 +6.20983,50.90268,2226,12,5,18,58,46,3.75,15.0,fr,791,44,38905,1,1,Active Shallow Crust,0.0,89.9899,0.0,12/05/2226 +6.20983,50.90268,470,1,20,9,12,50,3.75,27.5,fr,792,9,38906,1,1,Active Shallow Crust,0.0,89.9899,0.0,01/20/0470 +6.20983,50.90268,9858,5,20,22,2,13,3.75,5.0,fr,793,197,38907,1,1,Active Shallow Crust,240.0096,58.01715,0.0,05/20/9858 +6.20983,50.90268,2041,5,15,17,14,43,3.75,5.0,fr,794,40,38913,1,1,Active Shallow Crust,128.8953,89.96757,0.0,05/15/2041 +6.20983,50.90268,1966,6,9,8,5,31,3.85,5.0,fr,795,39,38916,1,4,Active Shallow Crust,0.0,89.991,0.0,06/09/1966 +6.20983,50.90268,5381,3,25,8,26,14,3.85,5.0,fr,796,107,38916,1,4,Active Shallow Crust,0.0,89.991,0.0,03/25/5381 +6.20983,50.90268,9086,5,17,17,56,15,3.85,5.0,fr,797,181,38916,1,4,Active Shallow Crust,0.0,89.991,0.0,05/17/9086 +6.20983,50.90268,6760,7,12,5,58,36,3.85,5.0,fr,798,135,38916,1,4,Active Shallow Crust,0.0,89.991,0.0,07/12/6760 +6.20983,50.90268,7887,5,13,15,2,32,3.85,15.0,fr,799,157,38917,1,2,Active Shallow Crust,0.0,89.991,0.0,05/13/7887 +6.20983,50.90268,5087,5,10,11,7,25,3.85,15.0,fr,800,101,38917,1,2,Active Shallow Crust,0.0,89.991,0.0,05/10/5087 +6.20983,50.90268,9257,5,7,1,49,52,3.85,5.0,fr,801,185,38919,1,1,Active Shallow Crust,240.0107,57.99873,0.0,05/07/9257 +6.20983,50.90268,2521,10,27,16,8,49,3.85,15.0,fr,802,50,38920,1,1,Active Shallow Crust,240.0107,57.99873,0.0,10/27/2521 +6.20983,50.90268,7054,10,24,8,36,21,3.85,5.0,fr,803,141,38925,1,1,Active Shallow Crust,128.8948,89.99325,0.0,10/24/7054 +6.20983,50.90268,1623,3,21,4,56,21,3.95,5.0,fr,804,32,38928,1,2,Active Shallow Crust,0.0,89.99197,0.0,03/21/1623 +6.20983,50.90268,9479,1,7,16,22,33,3.95,5.0,fr,805,189,38928,1,2,Active Shallow Crust,0.0,89.99197,0.0,01/07/9479 +6.20983,50.90268,4813,5,8,14,56,27,3.95,5.0,fr,806,96,38931,1,1,Active Shallow Crust,240.0212,58.0048,0.0,05/08/4813 +6.20983,50.90268,9597,9,24,6,49,44,3.95,15.0,fr,807,191,38935,1,1,Active Shallow Crust,0.0,89.99188,-90.0,09/24/9597 +6.20983,50.90268,4215,1,15,18,17,19,4.05,5.0,fr,808,84,38940,1,3,Active Shallow Crust,0.0,89.98927,0.0,01/15/4215 +6.20983,50.90268,2014,3,25,5,18,6,4.05,5.0,fr,809,40,38940,1,3,Active Shallow Crust,0.0,89.98927,0.0,03/25/2014 +6.20983,50.90268,4311,4,21,3,15,55,4.05,5.0,fr,810,86,38940,1,3,Active Shallow Crust,0.0,89.98927,0.0,04/21/4311 +6.20983,50.90268,6385,1,18,11,39,15,4.05,5.0,fr,811,127,38943,1,1,Active Shallow Crust,240.0067,58.0066,0.0,01/18/6385 +6.20983,50.90268,5049,1,22,18,59,40,4.05,5.0,fr,812,100,38946,1,1,Active Shallow Crust,0.0,89.98914,-90.0,01/22/5049 +6.20983,50.90268,641,8,1,5,59,16,4.15,5.0,fr,813,12,38952,1,1,Active Shallow Crust,0.0,89.99044,0.0,08/01/0641 +6.20983,50.90268,6927,2,10,23,54,54,4.15,5.0,fr,814,138,38958,1,2,Active Shallow Crust,0.0,89.99033,-90.0,02/10/6927 +6.20983,50.90268,3402,12,22,21,6,26,4.15,5.0,fr,815,68,38958,1,2,Active Shallow Crust,0.0,89.99033,-90.0,12/22/3402 +6.20983,50.90268,4404,8,19,13,10,14,4.15,15.0,fr,816,88,38959,1,1,Active Shallow Crust,0.0,89.99033,-90.0,08/19/4404 +6.20983,50.90268,8358,7,29,15,39,54,4.25,5.0,fr,817,167,38964,1,2,Active Shallow Crust,0.0,89.98864,0.0,07/29/8358 +6.20983,50.90268,3648,10,3,21,4,43,4.25,5.0,fr,818,72,38964,1,2,Active Shallow Crust,0.0,89.98864,0.0,10/03/3648 +6.20983,50.90268,9718,10,7,4,46,13,4.25,15.0,fr,819,194,38965,1,1,Active Shallow Crust,0.0,89.98864,0.0,10/07/9718 +6.20983,50.90268,312,2,4,4,12,15,4.25,5.0,fr,820,6,38970,1,1,Active Shallow Crust,0.0,89.99138,-90.0,02/04/0312 +6.20983,50.90268,352,6,5,16,31,19,4.35,15.0,fr,821,7,38977,1,1,Active Shallow Crust,0.0,89.98988,0.0,06/05/0352 +6.20983,50.90268,3912,6,6,3,41,12,4.35,5.0,fr,822,78,38979,1,1,Active Shallow Crust,240.0095,57.99651,0.0,06/06/3912 +6.20983,50.90268,8187,3,28,10,18,24,4.45,5.0,fr,823,163,38997,1,1,Active Shallow Crust,128.8909,89.99323,0.0,03/28/8187 +6.20983,50.90268,1054,11,10,23,0,34,4.55,5.0,fr,824,21,39000,1,2,Active Shallow Crust,0.0,89.98994,0.0,11/10/1054 +6.20983,50.90268,7233,2,12,5,56,14,4.55,5.0,fr,825,144,39000,1,2,Active Shallow Crust,0.0,89.98994,0.0,02/12/7233 +6.20983,50.90268,1388,12,14,22,7,56,4.55,5.0,fr,826,27,39003,1,1,Active Shallow Crust,240.0107,57.99764,0.0,12/14/1388 +6.20983,50.90268,9491,1,22,11,16,5,4.75,27.5,fr,827,189,39035,1,1,Active Shallow Crust,128.8869,89.98802,0.0,01/22/9491 +6.20983,50.90268,7776,6,2,10,4,19,5.45,5.0,fr,828,155,39117,1,1,Active Shallow Crust,128.8755,89.98891,0.0,06/02/7776 +6.20983,50.90268,7986,12,3,8,57,26,5.75,5.0,fr,829,159,39144,1,1,Active Shallow Crust,0.0,89.98989,0.0,12/03/7986 +6.20983,50.90268,441,5,1,23,11,55,5.75,5.0,fr,830,8,39150,1,1,Active Shallow Crust,0.0,89.98978,-90.0,05/01/0441 +6.20983,50.90268,8519,11,3,19,40,49,5.85,5.0,fr,831,170,39159,1,1,Active Shallow Crust,240.0535,58.00083,0.0,11/03/8519 +-0.55784,41.46424,6073,9,24,12,39,23,3.75,5.0,fr,832,121,39384,1,1,Active Shallow Crust,0.0,89.99025,0.0,09/24/6073 +-0.55784,41.46424,3641,1,15,22,26,30,4.25,5.0,fr,833,72,39447,1,1,Active Shallow Crust,240.0066,57.99389,0.0,01/15/3641 +-0.55784,41.46424,3672,7,16,14,4,32,4.55,15.0,fr,834,73,39481,1,1,Active Shallow Crust,0.0,89.99014,0.0,07/16/3672 +0.28377,46.18087,1056,5,20,2,17,14,3.55,15.0,fr,835,21,39841,1,1,Active Shallow Crust,0.0,89.98996,0.0,05/20/1056 +0.28377,46.18087,2921,5,2,4,50,27,3.65,5.0,fr,836,58,39852,1,1,Active Shallow Crust,0.0,89.98989,0.0,05/02/2921 +0.28377,46.18087,9433,2,20,18,45,11,3.85,5.0,fr,837,188,39876,1,1,Active Shallow Crust,0.0,89.99011,0.0,02/20/9433 +0.28377,46.18087,6875,11,16,14,5,50,3.95,5.0,fr,838,137,39888,1,1,Active Shallow Crust,0.0,89.99009,0.0,11/16/6875 +0.28377,46.18087,1601,3,30,6,40,11,3.95,15.0,fr,839,32,39889,1,1,Active Shallow Crust,0.0,89.99009,0.0,03/30/1601 +0.28377,46.18087,3861,7,15,2,58,2,3.95,5.0,fr,840,77,39891,1,1,Active Shallow Crust,240.0197,58.005,0.0,07/15/3861 +0.28377,46.18087,3413,6,7,7,6,7,4.25,5.0,fr,841,68,39924,1,1,Active Shallow Crust,0.0,89.99006,0.0,06/07/3413 +0.28377,46.18087,8711,12,25,12,38,6,4.65,5.0,fr,842,174,39975,1,1,Active Shallow Crust,240.0107,57.99421,0.0,12/25/8711 +0.28377,46.18087,6773,2,5,15,45,58,5.15,15.0,fr,843,135,40042,1,1,Active Shallow Crust,128.8839,89.99106,0.0,02/05/6773 +0.02318,41.52809,3811,6,29,7,17,12,3.65,5.0,fr,844,76,40341,1,1,Active Shallow Crust,128.9008,89.96351,0.0,06/29/3811 +0.02318,41.52809,479,2,5,21,33,15,3.75,27.5,fr,845,9,40346,1,1,Active Shallow Crust,0.0,89.99,0.0,02/05/0479 +3.47866,48.28201,3293,2,28,8,22,48,3.55,15.0,fr,846,65,40801,1,1,Active Shallow Crust,0.0,89.98994,0.0,02/28/3293 +3.47866,48.28201,6823,2,21,1,26,2,3.95,15.0,fr,847,136,40849,1,1,Active Shallow Crust,0.0,89.98942,0.0,02/21/6823 +-0.32266,50.26873,3905,11,26,21,2,59,3.55,5.0,fr,848,78,41280,1,2,Active Shallow Crust,0.0,89.98993,0.0,11/26/3905 +-0.32266,50.26873,5475,3,9,19,8,1,3.55,5.0,fr,849,109,41280,1,2,Active Shallow Crust,0.0,89.98993,0.0,03/09/5475 +-0.32266,50.26873,2677,2,23,22,50,53,3.85,5.0,fr,850,53,41316,1,1,Active Shallow Crust,0.0,89.99002,0.0,02/23/2677 +-0.32266,50.26873,8154,4,14,0,35,31,3.85,15.0,fr,851,163,41323,1,1,Active Shallow Crust,0.0,89.9899,-90.0,04/14/8154 +-0.32266,50.26873,6540,9,19,19,33,7,4.05,5.0,fr,852,130,41340,1,1,Active Shallow Crust,0.0,89.99003,0.0,09/19/6540 +-0.32266,50.26873,7359,6,30,12,25,26,4.55,5.0,fr,853,147,41400,1,1,Active Shallow Crust,359.9999,89.99006,0.0,06/30/7359 +-0.32266,50.26873,1184,1,18,12,43,32,5.05,5.0,fr,854,23,41469,1,1,Active Shallow Crust,128.8837,89.99046,0.0,01/18/1184 +5.72971,48.97696,3167,8,9,10,33,22,3.75,15.0,fr,855,63,41791,1,1,Active Shallow Crust,0.0,89.98936,-90.0,08/09/3167 +0.01212,47.90463,6481,12,3,9,39,6,3.55,5.0,fr,856,129,42240,1,2,Active Shallow Crust,0.0,89.99001,0.0,12/03/6481 +0.01212,47.90463,5414,7,29,19,14,38,3.55,5.0,fr,857,108,42240,1,2,Active Shallow Crust,0.0,89.99001,0.0,07/29/5414 +0.01212,47.90463,3838,10,11,5,32,28,3.55,15.0,fr,858,76,42241,1,2,Active Shallow Crust,0.0,89.99001,0.0,10/11/3838 +0.01212,47.90463,817,3,24,15,3,2,3.55,15.0,fr,859,16,42241,1,2,Active Shallow Crust,0.0,89.99001,0.0,03/24/0817 +0.01212,47.90463,3609,1,15,5,29,33,3.55,27.5,fr,860,72,42242,1,1,Active Shallow Crust,0.0,89.99001,0.0,01/15/3609 +0.01212,47.90463,593,5,28,21,15,16,3.65,5.0,fr,861,11,42252,1,1,Active Shallow Crust,0.0,89.99,0.0,05/28/0593 +0.01212,47.90463,1361,4,4,19,54,14,3.75,5.0,fr,862,27,42270,1,1,Active Shallow Crust,0.0,89.99,-90.0,04/04/1361 +0.01212,47.90463,7196,10,21,20,5,49,3.85,5.0,fr,863,143,42276,1,2,Active Shallow Crust,0.0,89.99,0.0,10/21/7196 +0.01212,47.90463,5147,8,24,12,26,19,3.85,5.0,fr,864,102,42276,1,2,Active Shallow Crust,0.0,89.99,0.0,08/24/5147 +0.01212,47.90463,9713,1,5,11,11,41,4.05,15.0,fr,865,194,42310,1,1,Active Shallow Crust,128.8903,89.99372,0.0,01/05/9713 +0.01212,47.90463,6003,10,26,7,29,35,4.45,5.0,fr,866,120,42351,1,1,Active Shallow Crust,240.0056,57.99474,0.0,10/26/6003 +-0.26314,46.27391,1929,1,18,2,31,56,3.55,5.0,fr,867,38,42720,1,2,Active Shallow Crust,0.0,89.98998,0.0,01/18/1929 +-0.26314,46.27391,9496,12,22,12,40,21,3.55,5.0,fr,868,189,42720,1,2,Active Shallow Crust,0.0,89.98998,0.0,12/22/9496 +-0.26314,46.27391,3795,4,23,21,46,39,3.65,15.0,fr,869,75,42733,1,1,Active Shallow Crust,0.0,89.98991,0.0,04/23/3795 +-0.26314,46.27391,3716,8,12,0,23,2,3.65,27.5,fr,870,74,42734,1,1,Active Shallow Crust,0.0,89.98991,0.0,08/12/3716 +-0.26314,46.27391,1891,5,1,9,27,5,3.65,15.0,fr,871,37,42736,1,1,Active Shallow Crust,240.0011,58.01285,0.0,05/01/1891 +-0.26314,46.27391,40,2,26,21,33,1,3.75,5.0,fr,872,0,42744,1,2,Active Shallow Crust,0.0,89.98997,0.0,02/26/0040 +-0.26314,46.27391,3511,6,25,14,41,39,3.75,5.0,fr,873,70,42744,1,2,Active Shallow Crust,0.0,89.98997,0.0,06/25/3511 +-0.26314,46.27391,1278,5,22,10,41,48,3.75,5.0,fr,874,25,42747,1,2,Active Shallow Crust,240.0083,58.01756,0.0,05/22/1278 +-0.26314,46.27391,6880,2,20,15,57,9,3.75,5.0,fr,875,137,42747,1,2,Active Shallow Crust,240.0083,58.01756,0.0,02/20/6880 +-0.26314,46.27391,2440,11,2,23,21,18,3.85,15.0,fr,876,48,42757,1,3,Active Shallow Crust,0.0,89.99013,0.0,11/02/2440 +-0.26314,46.27391,3168,11,9,20,16,12,3.85,15.0,fr,877,63,42757,1,3,Active Shallow Crust,0.0,89.99013,0.0,11/09/3168 +-0.26314,46.27391,9040,11,22,22,13,41,3.85,15.0,fr,878,180,42757,1,3,Active Shallow Crust,0.0,89.99013,0.0,11/22/9040 +-0.26314,46.27391,1167,3,25,20,50,37,3.95,5.0,fr,879,23,42768,1,1,Active Shallow Crust,0.0,89.9901,0.0,03/25/1167 +-0.26314,46.27391,2083,9,18,2,46,30,3.95,5.0,fr,880,41,42771,1,1,Active Shallow Crust,240.0198,58.00495,0.0,09/18/2083 +-0.26314,46.27391,2317,7,5,8,14,26,4.05,15.0,fr,881,46,42784,1,1,Active Shallow Crust,240.0059,58.00577,0.0,07/05/2317 +-0.26314,46.27391,6276,7,22,6,14,21,4.15,15.0,fr,882,125,42793,1,1,Active Shallow Crust,0.0,89.98996,0.0,07/22/6276 +-0.26314,46.27391,7696,11,14,23,7,6,4.55,27.5,fr,883,153,42851,1,1,Active Shallow Crust,128.8939,89.98579,0.0,11/14/7696 +-0.26314,46.27391,5684,6,11,15,57,13,4.75,5.0,fr,884,113,42864,1,1,Active Shallow Crust,0.0,89.99004,0.0,06/11/5684 +-5.37488,47.00496,4704,8,21,22,13,34,3.85,15.0,fr,885,94,43243,1,1,Active Shallow Crust,0.0,89.99015,-90.0,08/21/4704 +-3.11457,43.66257,447,4,22,6,0,7,3.55,5.0,fr,886,8,43680,1,1,Active Shallow Crust,0.0,89.98906,0.0,04/22/0447 +-3.11457,43.66257,5433,8,3,7,0,38,3.65,15.0,fr,887,108,43696,1,1,Active Shallow Crust,240.001,58.01279,0.0,08/03/5433 +-3.11457,43.66257,8548,4,9,23,16,31,3.65,15.0,fr,888,170,43699,1,1,Active Shallow Crust,0.0,89.99014,-90.0,04/09/8548 +-3.11457,43.66257,8312,8,2,21,36,53,4.15,5.0,fr,889,166,43752,1,1,Active Shallow Crust,0.0,89.99086,0.0,08/02/8312 +-3.11457,43.66257,3070,9,14,19,12,7,4.25,15.0,fr,890,61,43765,1,1,Active Shallow Crust,0.0,89.99023,0.0,09/14/3070 +-3.11457,43.66257,8518,3,28,4,54,36,4.45,27.5,fr,891,170,43790,1,1,Active Shallow Crust,0.0,89.98965,0.0,03/28/8518 +8.19077,45.2754,8001,3,2,5,13,9,3.75,5.0,fr,892,160,44184,1,1,Active Shallow Crust,0.0,89.98872,0.0,03/02/8001 +8.19077,45.2754,8303,11,21,8,51,41,3.85,27.5,fr,893,166,44198,1,1,Active Shallow Crust,0.0,89.98995,0.0,11/21/8303 +8.19077,45.2754,4598,2,27,4,15,37,3.95,5.0,fr,894,91,44208,1,1,Active Shallow Crust,0.0,89.99104,0.0,02/27/4598 +8.19077,45.2754,8377,10,10,8,46,21,4.05,15.0,fr,895,167,44221,1,1,Active Shallow Crust,0.0,89.99202,0.0,10/10/8377 +8.174532,45.29518,9018,3,19,23,40,18,6.65,9.065474,fr,896,180,44535,1,1,Active Shallow Crust,240.1096,57.99969,0.0,03/19/9018 +0.87038,46.89238,6900,3,29,9,21,15,3.55,5.0,fr,897,137,44640,1,2,Active Shallow Crust,0.0,89.98966,0.0,03/29/6900 +0.87038,46.89238,2149,5,29,5,52,17,3.55,5.0,fr,898,42,44640,1,2,Active Shallow Crust,0.0,89.98966,0.0,05/29/2149 +0.87038,46.89238,4349,5,2,0,20,12,3.55,27.5,fr,899,86,44642,1,1,Active Shallow Crust,0.0,89.98966,0.0,05/02/4349 +0.87038,46.89238,2913,2,16,12,37,6,3.55,5.0,fr,900,58,44643,1,1,Active Shallow Crust,240.0124,57.99801,0.0,02/16/2913 +0.87038,46.89238,358,12,6,4,59,9,3.65,5.0,fr,901,7,44652,1,1,Active Shallow Crust,0.0,89.99002,0.0,12/06/0358 +0.87038,46.89238,2486,10,12,18,49,5,3.65,15.0,fr,902,49,44653,1,1,Active Shallow Crust,0.0,89.99002,0.0,10/12/2486 +0.87038,46.89238,6979,6,22,15,34,1,3.65,5.0,fr,903,139,44655,1,1,Active Shallow Crust,240.0011,58.01304,0.0,06/22/6979 +0.87038,46.89238,7372,5,7,14,18,15,3.75,5.0,fr,904,147,44664,1,4,Active Shallow Crust,0.0,89.98974,0.0,05/07/7372 +0.87038,46.89238,719,6,4,13,13,35,3.75,5.0,fr,905,14,44664,1,4,Active Shallow Crust,0.0,89.98974,0.0,06/04/0719 +0.87038,46.89238,1931,1,8,13,24,34,3.75,5.0,fr,906,38,44664,1,4,Active Shallow Crust,0.0,89.98974,0.0,01/08/1931 +0.87038,46.89238,8326,5,19,3,51,34,3.75,5.0,fr,907,166,44664,1,4,Active Shallow Crust,0.0,89.98974,0.0,05/19/8326 +0.87038,46.89238,8122,9,10,6,13,30,3.75,5.0,fr,908,162,44667,1,1,Active Shallow Crust,240.0083,58.01761,0.0,09/10/8122 +0.87038,46.89238,5601,12,1,21,46,7,4.05,5.0,fr,909,112,44700,1,1,Active Shallow Crust,0.0,89.98983,0.0,12/01/5601 +0.87038,46.89238,3608,10,5,14,53,43,4.15,5.0,fr,910,72,44712,1,1,Active Shallow Crust,0.0,89.99007,0.0,10/05/3608 +0.87038,46.89238,2148,2,6,21,44,1,4.25,27.5,fr,911,42,44726,1,1,Active Shallow Crust,0.0,89.99,0.0,02/06/2148 +0.87038,46.89238,3216,1,27,4,0,13,4.25,5.0,fr,912,64,44730,1,1,Active Shallow Crust,0.0,89.98988,-90.0,01/27/3216 +0.87038,46.89238,2348,10,29,0,54,54,4.35,5.0,fr,913,46,44736,1,1,Active Shallow Crust,0.0,89.99005,0.0,10/29/2348 +0.87038,46.89238,8266,11,19,18,37,17,4.65,5.0,fr,914,165,44772,1,1,Active Shallow Crust,0.0,89.99004,0.0,11/19/8266 +0.87038,46.89238,3026,9,18,20,54,6,4.85,5.0,fr,915,60,44796,1,1,Active Shallow Crust,0.0,89.98997,0.0,09/18/3026 +0.87038,46.89238,6460,10,19,17,57,12,5.25,5.0,fr,916,129,44847,1,1,Active Shallow Crust,240.0257,58.00032,0.0,10/19/6460 +3.56511,46.11929,2583,9,19,13,50,8,3.65,5.0,fr,917,51,45138,1,1,Active Shallow Crust,0.0,89.99055,-90.0,09/19/2583 +3.56511,46.11929,542,9,23,1,16,14,4.15,5.0,fr,918,10,45192,1,1,Active Shallow Crust,0.0,89.98949,0.0,09/23/0542 +3.56511,46.11929,5871,6,1,3,52,8,4.15,15.0,fr,919,117,45202,1,1,Active Shallow Crust,128.8978,89.99387,0.0,06/01/5871 +3.48311,45.97735,872,8,27,6,21,42,3.75,5.0,fr,920,17,45624,1,2,Active Shallow Crust,0.0,89.98887,0.0,08/27/0872 +3.48311,45.97735,6330,11,20,0,25,3,3.75,5.0,fr,921,126,45624,1,2,Active Shallow Crust,0.0,89.98887,0.0,11/20/6330 +3.48311,45.97735,5974,1,11,11,3,4,4.25,5.0,fr,922,119,45684,1,2,Active Shallow Crust,0.0,89.99061,0.0,01/11/5974 +3.48311,45.97735,195,10,3,0,39,39,4.25,5.0,fr,923,3,45684,1,2,Active Shallow Crust,0.0,89.99061,0.0,10/03/0195 +3.48311,45.97735,8405,4,10,13,42,9,4.55,15.0,fr,924,168,45721,1,1,Active Shallow Crust,0.0,89.99003,0.0,04/10/8405 +0.66237,46.87868,7742,1,27,23,50,54,3.55,5.0,fr,925,154,46080,1,1,Active Shallow Crust,0.0,89.98966,0.0,01/27/7742 +0.66237,46.87868,89,8,7,5,58,19,3.55,27.5,fr,926,1,46082,1,1,Active Shallow Crust,0.0,89.98966,0.0,08/07/0089 +0.66237,46.87868,7372,1,17,0,39,17,3.55,27.5,fr,927,147,46085,1,1,Active Shallow Crust,240.012,57.9981,0.0,01/17/7372 +0.66237,46.87868,1979,3,24,22,46,49,3.65,5.0,fr,928,39,46092,1,4,Active Shallow Crust,0.0,89.99002,0.0,03/24/1979 +0.66237,46.87868,8088,4,26,1,52,53,3.65,5.0,fr,929,161,46092,1,4,Active Shallow Crust,0.0,89.99002,0.0,04/26/8088 +0.66237,46.87868,4038,8,16,16,8,24,3.65,5.0,fr,930,80,46092,1,4,Active Shallow Crust,0.0,89.99002,0.0,08/16/4038 +0.66237,46.87868,3073,6,7,7,26,49,3.65,5.0,fr,931,61,46092,1,4,Active Shallow Crust,0.0,89.99002,0.0,06/07/3073 +0.66237,46.87868,8686,10,13,17,24,42,3.65,5.0,fr,932,173,46101,1,1,Active Shallow Crust,128.9005,89.96353,0.0,10/13/8686 +0.66237,46.87868,1541,12,12,21,36,52,3.75,5.0,fr,933,30,46104,1,2,Active Shallow Crust,0.0,89.98973,0.0,12/12/1541 +0.66237,46.87868,7641,7,12,16,58,50,3.75,5.0,fr,934,152,46104,1,2,Active Shallow Crust,0.0,89.98973,0.0,07/12/7641 +0.66237,46.87868,6383,8,8,15,10,51,3.85,15.0,fr,935,127,46117,1,1,Active Shallow Crust,0.0,89.99024,0.0,08/08/6383 +0.66237,46.87868,5288,2,8,14,3,43,3.95,5.0,fr,936,105,46128,1,1,Active Shallow Crust,0.0,89.99021,0.0,02/08/5288 +0.66237,46.87868,8073,10,13,14,12,17,3.95,27.5,fr,937,161,46130,1,1,Active Shallow Crust,0.0,89.99021,0.0,10/13/8073 +0.66237,46.87868,5225,11,11,23,31,28,4.05,15.0,fr,938,104,46141,1,1,Active Shallow Crust,0.0,89.98982,0.0,11/11/5225 +0.66237,46.87868,6758,8,25,22,19,5,4.15,5.0,fr,939,135,46152,1,1,Active Shallow Crust,0.0,89.99007,0.0,08/25/6758 +0.66237,46.87868,8130,3,1,11,16,17,4.65,5.0,fr,940,162,46212,1,1,Active Shallow Crust,0.0,89.99004,0.0,03/01/8130 +0.66237,46.87868,5940,7,25,16,22,34,4.85,5.0,fr,941,118,46236,1,1,Active Shallow Crust,0.0,89.98997,0.0,07/25/5940 +0.66237,46.87868,3616,3,17,23,3,47,5.25,5.0,fr,942,72,46287,1,1,Active Shallow Crust,240.0257,58.00032,0.0,03/17/3616 +0.66237,46.87868,2973,7,31,17,21,8,5.45,15.0,fr,943,59,46309,1,1,Active Shallow Crust,0.0,89.99004,0.0,07/31/2973 +4.26695,52.34193,1017,11,19,7,38,30,3.75,5.0,fr,944,20,46584,1,1,Active Shallow Crust,0.0,89.99021,0.0,11/19/1017 +4.26695,52.34193,5397,12,13,8,31,26,3.85,5.0,fr,945,107,46602,1,1,Active Shallow Crust,0.0,89.99117,-90.0,12/13/5397 +-1.78277,42.0144,9465,2,23,14,21,5,3.55,5.0,fr,946,189,47040,1,1,Active Shallow Crust,0.0,89.99064,0.0,02/23/9465 +-1.78277,42.0144,8715,10,15,12,10,44,3.65,5.0,fr,947,174,47058,1,1,Active Shallow Crust,0.0,89.98987,-90.0,10/15/8715 +-1.78277,42.0144,4344,6,29,4,1,58,3.75,5.0,fr,948,86,47064,1,1,Active Shallow Crust,0.0,89.98959,0.0,06/29/4344 +-1.78277,42.0144,3429,3,24,20,24,9,3.95,5.0,fr,949,68,47088,1,1,Active Shallow Crust,0.0,89.99055,0.0,03/24/3429 +-1.78277,42.0144,3232,3,12,22,15,37,4.25,5.0,fr,950,64,47124,1,1,Active Shallow Crust,0.0,89.98996,0.0,03/12/3232 +-1.78277,42.0144,6287,9,21,0,29,16,4.35,15.0,fr,951,125,47137,1,1,Active Shallow Crust,0.0,89.9903,0.0,09/21/6287 +-1.78277,42.0144,4510,7,17,20,36,4,4.45,5.0,fr,952,90,47148,1,1,Active Shallow Crust,0.0,89.99003,0.0,07/17/4510 +-1.78277,42.0144,5091,5,3,11,11,38,4.95,5.0,fr,953,101,47208,1,1,Active Shallow Crust,0.0,89.98991,0.0,05/03/5091 +-1.78277,42.0144,601,12,7,0,44,42,5.25,5.0,fr,954,12,47244,1,1,Active Shallow Crust,0.0,89.98994,0.0,12/07/0601 +7.01071,48.12314,2771,10,2,23,31,29,3.55,5.0,fr,955,55,47520,1,1,Active Shallow Crust,0.0,89.99327,0.0,10/02/2771 +7.01071,48.12314,377,7,2,23,1,20,3.55,15.0,fr,956,7,47521,1,1,Active Shallow Crust,0.0,89.99327,0.0,07/02/0377 +7.01071,48.12314,4673,9,25,16,32,24,3.55,27.5,fr,957,93,47525,1,1,Active Shallow Crust,240.0117,57.99888,0.0,09/25/4673 +7.01071,48.12314,7532,1,6,1,42,25,3.65,27.5,fr,958,150,47534,1,1,Active Shallow Crust,0.0,89.988,0.0,01/06/7532 +7.01071,48.12314,2294,7,4,6,51,11,3.65,5.0,fr,959,45,47535,1,1,Active Shallow Crust,240.0008,58.01279,0.0,07/04/2294 +7.01071,48.12314,1448,6,16,22,3,14,3.65,15.0,fr,960,28,47542,1,1,Active Shallow Crust,128.8999,89.96355,0.0,06/16/1448 +7.01071,48.12314,627,10,15,2,56,40,3.75,5.0,fr,961,12,47544,1,1,Active Shallow Crust,0.0,89.9893,0.0,10/15/0627 +7.01071,48.12314,3435,12,10,17,49,1,3.75,5.0,fr,962,68,47547,1,1,Active Shallow Crust,240.0089,58.01803,0.0,12/10/3435 +7.01071,48.12314,4257,9,14,13,48,55,3.85,15.0,fr,963,85,47557,1,1,Active Shallow Crust,0.0,89.99047,0.0,09/14/4257 +7.01071,48.12314,3838,1,9,9,7,40,3.95,5.0,fr,964,76,47568,1,1,Active Shallow Crust,0.0,89.99151,0.0,01/09/3838 +7.01071,48.12314,5470,4,15,23,27,19,3.95,15.0,fr,965,109,47569,1,1,Active Shallow Crust,0.0,89.99151,0.0,04/15/5470 +7.01071,48.12314,2155,9,7,6,10,27,3.95,5.0,fr,966,43,47577,1,1,Active Shallow Crust,128.9008,89.99363,0.0,09/07/2155 +7.01071,48.12314,4851,4,7,13,19,15,4.15,5.0,fr,967,97,47598,1,1,Active Shallow Crust,0.0,89.98976,-90.0,04/07/4851 +7.01071,48.12314,6695,10,8,2,33,1,4.35,15.0,fr,968,133,47617,1,1,Active Shallow Crust,0.0,89.98928,0.0,10/08/6695 +2.25547,46.17722,3686,3,19,10,55,24,3.55,5.0,fr,969,73,48000,1,2,Active Shallow Crust,0.0,89.98952,0.0,03/19/3686 +2.25547,46.17722,6300,9,18,14,12,30,3.55,5.0,fr,970,125,48000,1,2,Active Shallow Crust,0.0,89.98952,0.0,09/18/6300 +2.25547,46.17722,5743,2,17,18,44,19,3.55,15.0,fr,971,114,48001,1,1,Active Shallow Crust,0.0,89.98952,0.0,02/17/5743 +2.25547,46.17722,3876,4,18,22,15,1,3.55,27.5,fr,972,77,48002,1,1,Active Shallow Crust,0.0,89.98952,0.0,04/18/3876 +2.25547,46.17722,1100,6,19,11,55,51,3.55,15.0,fr,973,21,48004,1,1,Active Shallow Crust,240.0117,57.99798,0.0,06/19/1100 +2.25547,46.17722,9288,2,21,4,0,37,3.55,5.0,fr,974,185,48006,1,1,Active Shallow Crust,0.0,89.9894,-90.0,02/21/9288 +2.25547,46.17722,4985,8,8,8,51,36,3.65,5.0,fr,975,99,48012,1,1,Active Shallow Crust,0.0,89.99066,0.0,08/08/4985 +2.25547,46.17722,7564,8,13,6,9,42,3.65,15.0,fr,976,151,48013,1,1,Active Shallow Crust,0.0,89.99066,0.0,08/13/7564 +2.25547,46.17722,6273,1,27,14,57,37,3.75,5.0,fr,977,125,48024,1,1,Active Shallow Crust,0.0,89.98891,0.0,01/27/6273 +2.25547,46.17722,2163,12,11,0,12,57,3.75,15.0,fr,978,43,48025,1,3,Active Shallow Crust,0.0,89.98891,0.0,12/11/2163 +2.25547,46.17722,8213,3,29,0,52,39,3.75,15.0,fr,979,164,48025,1,3,Active Shallow Crust,0.0,89.98891,0.0,03/29/8213 +2.25547,46.17722,628,10,19,5,32,11,3.75,15.0,fr,980,12,48025,1,3,Active Shallow Crust,0.0,89.98891,0.0,10/19/0628 +2.25547,46.17722,1636,9,7,20,46,56,3.75,5.0,fr,981,32,48027,1,1,Active Shallow Crust,240.0078,58.01782,0.0,09/07/1636 +2.25547,46.17722,823,5,27,4,53,7,3.85,15.0,fr,982,16,48037,1,1,Active Shallow Crust,0.0,89.99011,0.0,05/27/0823 +2.25547,46.17722,9739,6,27,10,16,23,3.95,5.0,fr,983,194,48048,1,2,Active Shallow Crust,0.0,89.98898,0.0,06/27/9739 +2.25547,46.17722,7086,4,5,10,49,5,3.95,5.0,fr,984,141,48048,1,2,Active Shallow Crust,0.0,89.98898,0.0,04/05/7086 +2.25547,46.17722,932,10,5,13,56,31,4.05,15.0,fr,985,18,48061,1,1,Active Shallow Crust,0.0,89.99018,0.0,10/05/0932 +2.25547,46.17722,9392,2,8,7,39,44,4.15,15.0,fr,986,187,48076,1,1,Active Shallow Crust,240.0082,57.99749,0.0,02/08/9392 +2.25547,46.17722,1235,11,10,23,42,32,4.95,5.0,fr,987,24,48171,1,1,Active Shallow Crust,240.0119,58.00435,0.0,11/10/1235 +2.25547,46.17722,8343,8,5,13,51,18,5.15,5.0,fr,988,166,48192,1,1,Active Shallow Crust,0.0,89.99004,0.0,08/05/8343 +0.34004,45.91568,5062,11,26,8,15,12,3.55,5.0,fr,989,101,48480,1,2,Active Shallow Crust,0.0,89.98991,0.0,11/26/5062 +0.34004,45.91568,7696,6,15,10,42,36,3.55,5.0,fr,990,153,48480,1,2,Active Shallow Crust,0.0,89.98991,0.0,06/15/7696 +0.34004,45.91568,2611,5,23,10,56,57,3.55,15.0,fr,991,52,48487,1,1,Active Shallow Crust,0.0,89.9898,-90.0,05/23/2611 +0.34004,45.91568,4860,9,16,19,15,48,3.55,5.0,fr,992,97,48489,1,1,Active Shallow Crust,128.8962,89.99364,0.0,09/16/4860 +0.34004,45.91568,3972,1,29,20,50,12,3.65,5.0,fr,993,79,48492,1,1,Active Shallow Crust,0.0,89.98984,0.0,01/29/3972 +0.34004,45.91568,2345,5,28,15,0,16,3.65,27.5,fr,994,46,48497,1,1,Active Shallow Crust,240.0011,58.01282,0.0,05/28/2345 +0.34004,45.91568,745,6,10,11,20,54,3.65,15.0,fr,995,14,48499,1,1,Active Shallow Crust,0.0,89.99012,-90.0,06/10/0745 +0.34004,45.91568,1005,5,24,6,59,26,3.75,5.0,fr,996,20,48507,1,1,Active Shallow Crust,240.0083,58.01762,0.0,05/24/1005 +0.34004,45.91568,1934,6,8,2,23,17,3.95,5.0,fr,997,38,48528,1,1,Active Shallow Crust,0.0,89.99004,0.0,06/08/1934 +0.34004,45.91568,9619,6,19,11,53,20,4.95,5.0,fr,998,192,48648,1,1,Active Shallow Crust,0.0,89.99003,0.0,06/19/9619 +0.34004,45.91568,2485,7,4,5,45,13,5.25,15.0,fr,999,49,48694,1,1,Active Shallow Crust,128.8836,89.98698,0.0,07/04/2485 +1.35678,51.25627,3236,4,14,18,19,35,3.65,5.0,fr,1000,64,48972,1,1,Active Shallow Crust,0.0,89.99016,0.0,04/14/3236 +1.35678,51.25627,1899,11,29,3,41,7,3.65,5.0,fr,1001,37,48981,1,1,Active Shallow Crust,128.9003,89.9635,0.0,11/29/1899 +1.35678,51.25627,9852,8,8,9,48,58,4.05,5.0,fr,1002,197,49020,1,1,Active Shallow Crust,0.0,89.99024,0.0,08/08/9852 +1.35678,51.25627,3278,7,21,7,13,59,4.05,5.0,fr,1003,65,49023,1,1,Active Shallow Crust,240.0068,58.00594,0.0,07/21/3278 +1.35678,51.25627,4996,9,14,9,0,26,4.45,5.0,fr,1004,99,49068,1,1,Active Shallow Crust,0.0,89.98992,0.0,09/14/4996 +0.64746,43.91091,5638,7,12,15,21,48,3.75,15.0,fr,1005,112,49945,1,1,Active Shallow Crust,0.0,89.9899,0.0,07/12/5638 +0.64746,43.91091,6449,3,1,10,52,8,3.85,5.0,fr,1006,128,49959,1,1,Active Shallow Crust,240.0105,57.99777,0.0,03/01/6449 +0.64746,43.91091,1777,3,23,3,52,56,4.05,15.0,fr,1007,35,49981,1,1,Active Shallow Crust,0.0,89.98978,0.0,03/23/1777 +0.64746,43.91091,7016,8,19,12,56,35,4.05,15.0,fr,1008,140,49990,1,1,Active Shallow Crust,128.8909,89.99361,0.0,08/19/7016 +0.64746,43.91091,6533,5,18,19,6,17,4.25,15.0,fr,1009,130,50005,1,1,Active Shallow Crust,0.0,89.98986,0.0,05/18/6533 +1.55447,52.92829,1551,4,12,22,36,38,3.75,5.0,fr,1010,31,50427,1,1,Active Shallow Crust,240.0094,58.01765,0.0,04/12/1551 +1.55447,52.92829,5237,8,10,2,31,52,4.45,5.0,fr,1011,104,50517,1,1,Active Shallow Crust,128.8905,89.9938,0.0,08/10/5237 +0.94458,50.59188,5694,6,21,2,3,49,3.55,15.0,fr,1012,113,50881,1,1,Active Shallow Crust,0.0,89.99039,0.0,06/21/5694 +0.94458,50.59188,9492,2,1,16,15,11,3.65,5.0,fr,1013,189,50892,1,2,Active Shallow Crust,0.0,89.99001,0.0,02/01/9492 +0.94458,50.59188,1529,4,14,6,51,15,3.65,5.0,fr,1014,30,50892,1,2,Active Shallow Crust,0.0,89.99001,0.0,04/14/1529 +0.94458,50.59188,7392,12,9,10,16,28,3.75,5.0,fr,1015,147,50910,1,1,Active Shallow Crust,0.0,89.98972,-90.0,12/09/7392 +0.94458,50.59188,8198,11,26,3,29,5,3.85,5.0,fr,1016,163,50916,1,1,Active Shallow Crust,0.0,89.9898,0.0,11/26/8198 +0.94458,50.59188,2367,4,30,15,33,23,3.85,15.0,fr,1017,47,50926,1,1,Active Shallow Crust,128.8951,89.99377,0.0,04/30/2367 +0.94458,50.59188,7758,6,15,6,39,21,3.95,5.0,fr,1018,155,50934,1,1,Active Shallow Crust,0.0,89.98978,-90.0,06/15/7758 +0.94458,50.59188,1482,6,21,15,6,54,4.25,5.0,fr,1019,29,50964,1,1,Active Shallow Crust,0.0,89.98999,0.0,06/21/1482 +0.94458,50.59188,7969,1,22,17,19,24,4.45,15.0,fr,1020,159,50989,1,1,Active Shallow Crust,0.0,89.99006,0.0,01/22/7969 +0.94458,50.59188,4240,8,23,20,59,44,4.55,5.0,fr,1021,84,51000,1,1,Active Shallow Crust,0.0,89.98988,0.0,08/23/4240 +0.94458,50.59188,7985,6,14,11,32,34,5.75,5.0,fr,1022,159,51150,1,1,Active Shallow Crust,360.0,89.99003,-90.0,06/14/7985 +1.98993,43.25012,5780,3,9,22,35,24,3.55,5.0,fr,1023,115,51360,1,1,Active Shallow Crust,0.0,89.99082,0.0,03/09/5780 +1.98993,43.25012,4553,9,11,8,11,41,3.55,27.5,fr,1024,91,51365,1,1,Active Shallow Crust,240.0115,57.99815,0.0,09/11/4553 +1.98993,43.25012,795,2,5,9,14,19,3.65,5.0,fr,1025,15,51372,1,2,Active Shallow Crust,0.0,89.99018,0.0,02/05/0795 +1.98993,43.25012,6582,11,12,3,56,58,3.65,5.0,fr,1026,131,51372,1,2,Active Shallow Crust,0.0,89.99018,0.0,11/12/6582 +1.98993,43.25012,9916,8,16,5,14,47,3.75,5.0,fr,1027,198,51390,1,1,Active Shallow Crust,0.0,89.98967,-90.0,08/16/9916 +1.98993,43.25012,1262,10,20,18,19,38,4.05,5.0,fr,1028,25,51423,1,1,Active Shallow Crust,240.0054,58.00562,0.0,10/20/1262 +1.98993,43.25012,893,3,28,17,16,2,4.55,5.0,fr,1029,17,51486,1,1,Active Shallow Crust,0.0,89.99001,-90.0,03/28/0893 +1.98993,43.25012,3737,12,3,11,41,4,5.15,5.0,fr,1030,74,51552,1,1,Active Shallow Crust,0.0,89.9901,0.0,12/03/3737 +1.98993,43.25012,629,5,5,17,45,15,5.75,5.0,fr,1031,12,51624,1,1,Active Shallow Crust,0.0,89.98993,0.0,05/05/0629 +1.98993,43.25012,6641,6,30,20,28,52,5.95,5.0,fr,1032,132,51648,1,1,Active Shallow Crust,0.0,89.99003,0.0,06/30/6641 +-0.5326,42.29364,8826,10,26,2,23,39,3.55,5.0,fr,1033,176,51840,1,1,Active Shallow Crust,0.0,89.98975,0.0,10/26/8826 +-0.5326,42.29364,1452,6,26,17,40,58,3.65,5.0,fr,1034,29,51852,1,1,Active Shallow Crust,0.0,89.99003,0.0,06/26/1452 +-0.5326,42.29364,3462,4,29,1,14,20,3.85,15.0,fr,1035,69,51877,1,1,Active Shallow Crust,0.0,89.9901,0.0,04/29/3462 +-3.04519,43.3926,3904,3,19,18,11,31,3.55,5.0,fr,1036,78,52323,1,1,Active Shallow Crust,240.0125,57.99818,0.0,03/19/3904 +-3.04519,43.3926,9288,4,5,16,18,14,3.65,5.0,fr,1037,185,52332,1,1,Active Shallow Crust,0.0,89.9902,0.0,04/05/9288 +-3.04519,43.3926,6946,1,24,10,12,38,3.65,5.0,fr,1038,138,52335,1,1,Active Shallow Crust,240.0012,58.01299,0.0,01/24/6946 +-3.04519,43.3926,6222,4,18,12,49,19,3.65,15.0,fr,1039,124,52336,1,1,Active Shallow Crust,240.0012,58.01299,0.0,04/18/6222 +-3.04519,43.3926,122,1,29,23,52,37,4.25,5.0,fr,1040,2,52413,1,1,Active Shallow Crust,128.8949,89.98083,0.0,01/29/0122 +-3.04519,43.3926,2704,12,4,8,32,45,4.35,5.0,fr,1041,54,52416,1,1,Active Shallow Crust,0.0,89.98979,0.0,12/04/2704 +-3.04519,43.3926,4335,1,24,16,51,41,4.45,5.0,fr,1042,86,52428,1,1,Active Shallow Crust,0.0,89.9896,0.0,01/24/4335 +-3.04519,43.3926,4434,10,15,12,53,42,4.95,5.0,fr,1043,88,52494,1,1,Active Shallow Crust,0.0,89.98965,-90.0,10/15/4434 +1.23973,45.03982,3423,6,30,20,29,19,3.55,5.0,fr,1044,68,52800,1,1,Active Shallow Crust,0.0,89.98931,0.0,06/30/3423 +1.23973,45.03982,2081,5,5,23,6,36,3.55,5.0,fr,1045,41,52806,1,1,Active Shallow Crust,0.0,89.98919,-90.0,05/05/2081 +-0.72828,46.91211,1794,11,8,12,43,59,3.55,5.0,fr,1046,35,53280,1,1,Active Shallow Crust,0.0,89.98967,0.0,11/08/1794 +-0.72828,46.91211,1782,4,16,1,17,54,3.55,15.0,fr,1047,35,53281,1,2,Active Shallow Crust,0.0,89.98967,0.0,04/16/1782 +-0.72828,46.91211,864,11,22,16,41,58,3.55,15.0,fr,1048,17,53281,1,2,Active Shallow Crust,0.0,89.98967,0.0,11/22/0864 +-0.72828,46.91211,9536,3,1,4,45,37,3.55,5.0,fr,1049,190,53286,1,1,Active Shallow Crust,0.0,89.99042,-90.0,03/01/9536 +-0.72828,46.91211,1470,1,5,13,47,45,3.65,5.0,fr,1050,29,53292,1,3,Active Shallow Crust,0.0,89.99002,0.0,01/05/1470 +-0.72828,46.91211,4442,6,26,16,24,42,3.65,5.0,fr,1051,88,53292,1,3,Active Shallow Crust,0.0,89.99002,0.0,06/26/4442 +-0.72828,46.91211,1110,2,18,5,11,26,3.65,5.0,fr,1052,22,53292,1,3,Active Shallow Crust,0.0,89.99002,0.0,02/18/1110 +-0.72828,46.91211,6436,8,16,8,33,47,3.65,5.0,fr,1053,128,53298,1,3,Active Shallow Crust,0.0,89.98991,-90.0,08/16/6436 +-0.72828,46.91211,7810,10,23,23,20,15,3.65,5.0,fr,1054,156,53298,1,3,Active Shallow Crust,0.0,89.98991,-90.0,10/23/7810 +-0.72828,46.91211,8327,5,30,11,6,47,3.65,5.0,fr,1055,166,53298,1,3,Active Shallow Crust,0.0,89.98991,-90.0,05/30/8327 +-0.72828,46.91211,8528,7,10,21,29,3,3.75,5.0,fr,1056,170,53304,1,1,Active Shallow Crust,0.0,89.98974,0.0,07/10/8528 +-0.72828,46.91211,343,10,4,19,15,30,3.75,15.0,fr,1057,6,53308,1,1,Active Shallow Crust,240.0083,58.01766,0.0,10/04/0343 +-0.72828,46.91211,5940,12,18,22,58,57,3.75,5.0,fr,1058,118,53313,1,1,Active Shallow Crust,128.8965,89.96738,0.0,12/18/5940 +-0.72828,46.91211,145,2,17,11,56,14,3.85,5.0,fr,1059,2,53325,1,1,Active Shallow Crust,128.8954,89.9939,0.0,02/17/0145 +-0.72828,46.91211,3971,8,21,21,46,44,3.95,5.0,fr,1060,79,53331,1,1,Active Shallow Crust,240.0199,58.00492,0.0,08/21/3971 +-0.72828,46.91211,9653,2,27,6,38,26,3.95,5.0,fr,1061,193,53334,1,1,Active Shallow Crust,0.0,89.9901,-90.0,02/27/9653 +-0.72828,46.91211,1455,4,26,17,21,26,4.05,5.0,fr,1062,29,53343,1,1,Active Shallow Crust,240.006,58.00581,0.0,04/26/1455 +-0.72828,46.91211,4189,1,13,22,53,53,4.15,5.0,fr,1063,83,53358,1,1,Active Shallow Crust,0.0,89.98996,-90.0,01/13/4189 +-0.72828,46.91211,7610,5,8,19,15,52,4.25,27.5,fr,1064,152,53375,1,1,Active Shallow Crust,128.8943,89.9809,0.0,05/08/7610 +-0.72828,46.91211,745,9,8,4,4,27,4.35,5.0,fr,1065,14,53376,1,2,Active Shallow Crust,0.0,89.99006,0.0,09/08/0745 +-0.72828,46.91211,7151,1,12,10,8,25,4.35,5.0,fr,1066,143,53376,1,2,Active Shallow Crust,0.0,89.99006,0.0,01/12/7151 +-0.72828,46.91211,4178,9,29,13,27,16,4.35,5.0,fr,1067,83,53382,1,1,Active Shallow Crust,0.0,89.98994,-90.0,09/29/4178 +-0.72828,46.91211,6057,11,26,6,58,28,4.45,15.0,fr,1068,121,53395,1,1,Active Shallow Crust,0.0,89.99011,-90.0,11/26/6057 +-0.72828,46.91211,4981,8,18,10,41,38,4.55,15.0,fr,1069,99,53401,1,1,Active Shallow Crust,0.0,89.98992,0.0,08/18/4981 +-0.72828,46.91211,29,6,6,1,30,29,4.65,15.0,fr,1070,0,53422,1,1,Active Shallow Crust,128.891,89.987,0.0,06/06/0029 +-0.72828,46.91211,1010,7,7,16,19,25,5.65,15.0,fr,1071,20,53533,1,1,Active Shallow Crust,0.0,89.99002,0.0,07/07/1010 +2.37125,43.973,1857,3,26,14,17,58,3.55,5.0,fr,1072,37,53760,1,2,Active Shallow Crust,0.0,89.98911,0.0,03/26/1857 +2.37125,43.973,3002,1,17,20,16,13,3.55,5.0,fr,1073,60,53760,1,2,Active Shallow Crust,0.0,89.98911,0.0,01/17/3002 +2.37125,43.973,7936,5,5,0,29,47,3.55,15.0,fr,1074,158,53764,1,1,Active Shallow Crust,240.0123,57.99785,0.0,05/05/7936 +2.37125,43.973,1213,12,22,12,35,10,3.65,5.0,fr,1075,24,53772,1,1,Active Shallow Crust,0.0,89.9903,0.0,12/22/1213 +2.37125,43.973,9755,12,23,5,13,7,3.85,5.0,fr,1076,195,53796,1,1,Active Shallow Crust,0.0,89.98972,0.0,12/23/9755 +2.37125,43.973,2636,2,27,1,48,12,4.05,5.0,fr,1077,52,53820,1,1,Active Shallow Crust,0.0,89.9898,0.0,02/27/2636 +2.37125,43.973,6368,5,25,1,24,50,4.05,5.0,fr,1078,127,53823,1,1,Active Shallow Crust,240.0053,58.00597,0.0,05/25/6368 +2.37125,43.973,1593,8,19,19,44,52,4.35,15.0,fr,1079,31,53857,1,1,Active Shallow Crust,0.0,89.98989,0.0,08/19/1593 +-3.6559,43.31734,8921,11,8,9,39,46,3.55,5.0,fr,1080,178,54240,1,1,Active Shallow Crust,0.0,89.989,0.0,11/08/8921 +-3.6559,43.31734,8829,9,26,17,3,49,3.65,5.0,fr,1081,176,54252,1,1,Active Shallow Crust,0.0,89.99019,0.0,09/26/8829 +-3.6559,43.31734,2492,2,19,11,1,0,3.65,15.0,fr,1082,49,54253,1,1,Active Shallow Crust,0.0,89.99019,0.0,02/19/2492 +-3.6559,43.31734,1070,12,27,18,29,0,3.65,27.5,fr,1083,21,54254,1,1,Active Shallow Crust,0.0,89.99019,0.0,12/27/1070 +-3.6559,43.31734,8192,3,25,12,41,42,3.75,15.0,fr,1084,163,54265,1,1,Active Shallow Crust,0.0,89.99126,0.0,03/25/8192 +-3.6559,43.31734,9694,3,8,7,25,37,3.75,27.5,fr,1085,193,54266,1,1,Active Shallow Crust,0.0,89.99126,0.0,03/08/9694 +-3.6559,43.31734,4252,1,25,22,10,7,3.85,5.0,fr,1086,85,54276,1,1,Active Shallow Crust,0.0,89.98961,0.0,01/25/4252 +-3.6559,43.31734,678,8,21,15,5,32,3.85,27.5,fr,1087,13,54284,1,1,Active Shallow Crust,0.0,89.98949,-90.0,08/21/0678 +-3.6559,43.31734,3943,6,27,10,37,56,4.05,15.0,fr,1088,78,54307,1,1,Active Shallow Crust,0.0,89.98956,-90.0,06/27/3943 +-3.6559,43.31734,4944,12,25,22,18,55,4.05,27.5,fr,1089,98,54311,1,1,Active Shallow Crust,128.8905,89.99381,0.0,12/25/4944 +-3.6559,43.31734,2618,8,29,19,18,18,4.15,5.0,fr,1090,52,54312,1,1,Active Shallow Crust,0.0,89.99081,0.0,08/29/2618 +-3.6559,43.31734,9963,11,19,3,54,27,4.35,5.0,fr,1091,199,54336,1,1,Active Shallow Crust,0.0,89.98978,0.0,11/19/9963 +-3.6559,43.31734,918,9,7,16,10,53,4.35,15.0,fr,1092,18,54343,1,1,Active Shallow Crust,0.0,89.98965,-90.0,09/07/0918 +-3.6559,43.31734,7392,5,3,7,54,30,4.35,27.5,fr,1093,147,54344,1,1,Active Shallow Crust,0.0,89.98965,-90.0,05/03/7392 +-3.6559,43.31734,7104,12,6,0,41,20,5.15,5.0,fr,1094,142,54441,1,1,Active Shallow Crust,128.8851,89.99117,0.0,12/06/7104 +-3.6559,43.31734,1389,3,8,19,56,21,5.65,15.0,fr,1095,27,54502,1,1,Active Shallow Crust,128.8779,89.99039,0.0,03/08/1389 +-0.60937,50.5156,3747,5,18,2,5,54,3.55,5.0,fr,1096,74,54720,1,2,Active Shallow Crust,0.0,89.99038,0.0,05/18/3747 +-0.60937,50.5156,6264,5,15,12,28,21,3.55,5.0,fr,1097,125,54720,1,2,Active Shallow Crust,0.0,89.99038,0.0,05/15/6264 +-0.60937,50.5156,2853,5,24,0,13,50,3.55,5.0,fr,1098,57,54723,1,2,Active Shallow Crust,240.0126,57.99825,0.0,05/24/2853 +-0.60937,50.5156,4940,3,17,22,9,48,3.55,5.0,fr,1099,98,54723,1,2,Active Shallow Crust,240.0126,57.99825,0.0,03/17/4940 +-0.60937,50.5156,2770,11,4,22,36,7,3.65,5.0,fr,1100,55,54735,1,1,Active Shallow Crust,240.0017,58.01298,0.0,11/04/2770 +-0.60937,50.5156,2229,10,7,1,25,3,3.65,15.0,fr,1101,44,54739,1,1,Active Shallow Crust,0.0,89.98988,-90.0,10/07/2229 +-0.60937,50.5156,6500,4,30,4,40,6,4.45,27.5,fr,1102,129,54830,1,1,Active Shallow Crust,0.0,89.99004,0.0,04/30/6500 +6.85691,49.11763,3267,9,17,7,49,36,3.55,5.0,fr,1103,65,55200,1,2,Active Shallow Crust,0.0,89.9868,0.0,09/17/3267 +6.85691,49.11763,7237,10,22,16,30,15,3.55,5.0,fr,1104,144,55200,1,2,Active Shallow Crust,0.0,89.9868,0.0,10/22/7237 +6.85691,49.11763,1686,9,26,22,44,30,3.55,15.0,fr,1105,33,55210,1,1,Active Shallow Crust,128.8956,89.9934,0.0,09/26/1686 +6.85691,49.11763,4729,2,6,22,49,9,3.75,5.0,fr,1106,94,55224,1,1,Active Shallow Crust,0.0,89.98952,0.0,02/06/4729 +8.21738,45.93461,6841,8,30,1,58,52,3.55,5.0,fr,1107,136,55680,1,2,Active Shallow Crust,0.0,89.98598,0.0,08/30/6841 +8.21738,45.93461,6645,8,13,7,51,50,3.55,5.0,fr,1108,132,55680,1,2,Active Shallow Crust,0.0,89.98598,0.0,08/13/6645 +8.21738,45.93461,3114,7,7,10,35,21,3.75,5.0,fr,1109,62,55704,1,1,Active Shallow Crust,0.0,89.98886,0.0,07/07/3114 +8.21738,45.93461,5598,8,9,18,9,13,4.65,15.0,fr,1110,111,55813,1,1,Active Shallow Crust,0.0,89.98814,0.0,08/09/5598 +8.21738,45.93461,2808,3,23,12,25,5,5.25,5.0,fr,1111,56,55884,1,1,Active Shallow Crust,0.0,89.99009,0.0,03/23/2808 +-0.58687,49.06401,4920,6,19,6,9,10,3.55,5.0,fr,1112,98,56640,1,1,Active Shallow Crust,0.0,89.99009,0.0,06/19/4920 +-0.58687,49.06401,2983,1,20,18,19,47,3.55,5.0,fr,1113,59,56649,1,1,Active Shallow Crust,128.8959,89.9938,0.0,01/20/2983 +-0.58687,49.06401,8445,7,13,5,20,55,3.65,5.0,fr,1114,168,56652,1,1,Active Shallow Crust,0.0,89.98969,0.0,07/13/8445 +-0.58687,49.06401,733,1,15,12,58,35,3.65,15.0,fr,1115,14,56653,1,1,Active Shallow Crust,0.0,89.98969,0.0,01/15/0733 +-0.58687,49.06401,879,9,17,16,50,37,3.65,27.5,fr,1116,17,56654,1,1,Active Shallow Crust,0.0,89.98969,0.0,09/17/0879 +-0.58687,49.06401,6043,1,5,19,17,30,3.75,5.0,fr,1117,120,56667,1,1,Active Shallow Crust,240.0087,58.0176,0.0,01/05/6043 +-0.58687,49.06401,7373,1,23,22,11,21,3.85,5.0,fr,1118,147,56676,1,1,Active Shallow Crust,0.0,89.99006,0.0,01/23/7373 +-0.58687,49.06401,4904,7,19,22,12,49,3.85,5.0,fr,1119,98,56679,1,1,Active Shallow Crust,240.0112,57.9978,0.0,07/19/4904 +-0.58687,49.06401,1892,2,6,3,3,17,3.95,5.0,fr,1120,37,56691,1,1,Active Shallow Crust,240.0203,58.00505,0.0,02/06/1892 +-0.58687,49.06401,6569,5,12,10,26,0,3.95,15.0,fr,1121,131,56692,1,1,Active Shallow Crust,240.0203,58.00505,0.0,05/12/6569 +-0.58687,49.06401,3829,8,15,16,42,41,4.05,15.0,fr,1122,76,56701,1,1,Active Shallow Crust,0.0,89.98978,0.0,08/15/3829 +-0.58687,49.06401,8818,8,15,0,8,45,4.35,5.0,fr,1123,176,56736,1,1,Active Shallow Crust,0.0,89.99014,0.0,08/15/8818 +-0.58687,49.06401,3413,3,3,10,27,0,4.55,5.0,fr,1124,68,56760,1,1,Active Shallow Crust,0.0,89.99007,0.0,03/03/3413 +-0.58687,49.06401,5064,7,4,18,51,30,4.65,5.0,fr,1125,101,56772,1,1,Active Shallow Crust,0.0,89.98999,0.0,07/04/5064 +-0.58687,49.06401,7250,3,5,12,10,57,4.65,15.0,fr,1126,144,56773,1,1,Active Shallow Crust,0.0,89.98999,0.0,03/05/7250 +2.87873,50.27079,3002,6,6,22,41,55,3.55,5.0,fr,1127,60,57126,1,1,Active Shallow Crust,0.0,89.99022,-90.0,06/06/3002 +2.87873,50.27079,5999,6,6,13,59,26,3.75,5.0,fr,1128,119,57144,1,1,Active Shallow Crust,0.0,89.98976,0.0,06/06/5999 +2.87873,50.27079,1975,3,17,15,9,13,3.85,15.0,fr,1129,39,57157,1,1,Active Shallow Crust,0.0,89.99088,0.0,03/17/1975 +2.87873,50.27079,3365,7,28,13,48,48,4.05,5.0,fr,1130,67,57180,1,1,Active Shallow Crust,0.0,89.98913,0.0,07/28/3365 +2.87873,50.27079,2484,3,8,6,26,58,4.35,27.5,fr,1131,49,57218,1,1,Active Shallow Crust,0.0,89.98974,0.0,03/08/2484 +2.87873,50.27079,5413,8,19,4,27,1,4.75,27.5,fr,1132,108,57266,1,1,Active Shallow Crust,0.0,89.99029,0.0,08/19/5413 +3.89529,49.5988,5554,10,20,8,9,18,3.85,27.5,fr,1133,111,57647,1,1,Active Shallow Crust,128.8953,89.99306,0.0,10/20/5554 +3.89529,49.5988,557,4,24,10,27,8,3.95,15.0,fr,1134,11,57658,1,1,Active Shallow Crust,128.8998,89.99381,0.0,04/24/0557 +3.89529,49.5988,5720,1,31,17,39,10,4.05,5.0,fr,1135,114,57660,1,1,Active Shallow Crust,0.0,89.99081,0.0,01/31/5720 +3.01965,49.49801,4917,4,21,8,2,52,3.55,5.0,fr,1136,98,58080,1,2,Active Shallow Crust,0.0,89.99017,0.0,04/21/4917 +3.01965,49.49801,5823,7,22,8,14,31,3.55,5.0,fr,1137,116,58080,1,2,Active Shallow Crust,0.0,89.99017,0.0,07/22/5823 +3.01965,49.49801,5063,11,13,5,46,49,3.55,15.0,fr,1138,101,58081,1,1,Active Shallow Crust,0.0,89.99017,0.0,11/13/5063 +3.01965,49.49801,7769,4,29,19,32,2,3.65,15.0,fr,1139,155,58102,1,1,Active Shallow Crust,128.8994,89.96358,0.0,04/29/7769 +3.01965,49.49801,6456,6,15,20,16,28,3.75,5.0,fr,1140,129,58104,1,1,Active Shallow Crust,0.0,89.98959,0.0,06/15/6456 +3.01965,49.49801,282,9,17,5,52,50,4.25,5.0,fr,1141,5,58164,1,1,Active Shallow Crust,0.0,89.98976,0.0,09/17/0282 +3.01965,49.49801,240,1,24,3,26,55,4.55,5.0,fr,1142,4,58209,1,1,Active Shallow Crust,128.893,89.98581,0.0,01/24/0240 +3.01965,49.49801,1316,5,21,10,35,18,5.75,15.0,fr,1143,26,58345,1,1,Active Shallow Crust,0.0,89.99011,0.0,05/21/1316 +-0.50676,43.12066,5751,11,17,1,22,58,3.55,5.0,fr,1144,115,58560,1,3,Active Shallow Crust,0.0,89.98988,0.0,11/17/5751 +-0.50676,43.12066,4751,7,23,11,54,30,3.55,5.0,fr,1145,95,58560,1,3,Active Shallow Crust,0.0,89.98988,0.0,07/23/4751 +-0.50676,43.12066,9379,1,31,7,40,0,3.55,5.0,fr,1146,187,58560,1,3,Active Shallow Crust,0.0,89.98988,0.0,01/31/9379 +-0.50676,43.12066,5579,4,2,12,27,50,3.55,15.0,fr,1147,111,58561,1,3,Active Shallow Crust,0.0,89.98988,0.0,04/02/5579 +-0.50676,43.12066,6320,6,28,3,26,53,3.55,15.0,fr,1148,126,58561,1,3,Active Shallow Crust,0.0,89.98988,0.0,06/28/6320 +-0.50676,43.12066,3409,2,22,8,18,22,3.55,15.0,fr,1149,68,58561,1,3,Active Shallow Crust,0.0,89.98988,0.0,02/22/3409 +-0.50676,43.12066,8447,10,30,15,9,49,3.55,27.5,fr,1150,168,58562,1,1,Active Shallow Crust,0.0,89.98988,0.0,10/30/8447 +-0.50676,43.12066,6166,5,3,1,13,3,3.55,5.0,fr,1151,123,58563,1,2,Active Shallow Crust,240.0117,57.99824,0.0,05/03/6166 +-0.50676,43.12066,8825,11,22,18,41,6,3.55,5.0,fr,1152,176,58563,1,2,Active Shallow Crust,240.0117,57.99824,0.0,11/22/8825 +-0.50676,43.12066,4710,10,9,4,42,37,3.55,5.0,fr,1153,94,58566,1,1,Active Shallow Crust,0.0,89.98976,-90.0,10/09/4710 +-0.50676,43.12066,6175,1,6,19,17,23,3.55,15.0,fr,1154,123,58567,1,1,Active Shallow Crust,0.0,89.98976,-90.0,01/06/6175 +-0.50676,43.12066,3973,6,1,13,0,23,3.55,5.0,fr,1155,79,58569,1,2,Active Shallow Crust,128.8963,89.99402,0.0,06/01/3973 +-0.50676,43.12066,2920,6,22,10,1,10,3.55,5.0,fr,1156,58,58569,1,2,Active Shallow Crust,128.8963,89.99402,0.0,06/22/2920 +-0.50676,43.12066,7379,4,19,2,17,34,3.65,5.0,fr,1157,147,58572,1,5,Active Shallow Crust,0.0,89.99016,0.0,04/19/7379 +-0.50676,43.12066,5800,8,4,19,37,30,3.65,5.0,fr,1158,115,58572,1,5,Active Shallow Crust,0.0,89.99016,0.0,08/04/5800 +-0.50676,43.12066,2392,4,13,8,48,28,3.65,5.0,fr,1159,47,58572,1,5,Active Shallow Crust,0.0,89.99016,0.0,04/13/2392 +-0.50676,43.12066,1797,8,20,4,23,45,3.65,5.0,fr,1160,35,58572,1,5,Active Shallow Crust,0.0,89.99016,0.0,08/20/1797 +-0.50676,43.12066,4469,8,25,22,20,5,3.65,5.0,fr,1161,89,58572,1,5,Active Shallow Crust,0.0,89.99016,0.0,08/25/4469 +-0.50676,43.12066,3343,5,8,23,13,55,3.65,15.0,fr,1162,66,58573,1,5,Active Shallow Crust,0.0,89.99016,0.0,05/08/3343 +-0.50676,43.12066,3678,4,23,17,32,57,3.65,15.0,fr,1163,73,58573,1,5,Active Shallow Crust,0.0,89.99016,0.0,04/23/3678 +-0.50676,43.12066,903,12,5,8,43,53,3.65,15.0,fr,1164,18,58573,1,5,Active Shallow Crust,0.0,89.99016,0.0,12/05/0903 +-0.50676,43.12066,9552,2,10,8,54,12,3.65,15.0,fr,1165,191,58573,1,5,Active Shallow Crust,0.0,89.99016,0.0,02/10/9552 +-0.50676,43.12066,8927,11,27,1,39,0,3.65,15.0,fr,1166,178,58573,1,5,Active Shallow Crust,0.0,89.99016,0.0,11/27/8927 +-0.50676,43.12066,7745,3,20,5,11,16,3.65,15.0,fr,1167,154,58576,1,1,Active Shallow Crust,240.0007,58.01269,0.0,03/20/7745 +-0.50676,43.12066,120,3,29,3,16,25,3.65,27.5,fr,1168,2,58577,1,1,Active Shallow Crust,240.0007,58.0126,0.0,03/29/0120 +-0.50676,43.12066,9481,4,19,0,33,29,3.65,27.5,fr,1169,189,58580,1,2,Active Shallow Crust,0.0,89.99004,-90.0,04/19/9481 +-0.50676,43.12066,7756,4,12,12,24,59,3.65,27.5,fr,1170,155,58580,1,2,Active Shallow Crust,0.0,89.99004,-90.0,04/12/7756 +-0.50676,43.12066,9207,10,1,4,57,19,3.65,5.0,fr,1171,184,58581,1,1,Active Shallow Crust,128.9007,89.96353,0.0,10/01/9207 +-0.50676,43.12066,5271,11,9,13,49,35,3.75,5.0,fr,1172,105,58584,1,8,Active Shallow Crust,0.0,89.98977,0.0,11/09/5271 +-0.50676,43.12066,8303,11,24,13,59,13,3.75,5.0,fr,1173,166,58584,1,8,Active Shallow Crust,0.0,89.98977,0.0,11/24/8303 +-0.50676,43.12066,1875,5,16,18,59,22,3.75,5.0,fr,1174,37,58584,1,8,Active Shallow Crust,0.0,89.98977,0.0,05/16/1875 +-0.50676,43.12066,6348,4,17,0,44,36,3.75,5.0,fr,1175,126,58584,1,8,Active Shallow Crust,0.0,89.98977,0.0,04/17/6348 +-0.50676,43.12066,3178,11,18,17,54,30,3.75,5.0,fr,1176,63,58584,1,8,Active Shallow Crust,0.0,89.98977,0.0,11/18/3178 +-0.50676,43.12066,1937,10,14,6,30,24,3.75,5.0,fr,1177,38,58584,1,8,Active Shallow Crust,0.0,89.98977,0.0,10/14/1937 +-0.50676,43.12066,8116,8,17,16,3,51,3.75,5.0,fr,1178,162,58584,1,8,Active Shallow Crust,0.0,89.98977,0.0,08/17/8116 +-0.50676,43.12066,5542,6,1,2,55,36,3.75,5.0,fr,1179,110,58584,1,8,Active Shallow Crust,0.0,89.98977,0.0,06/01/5542 +-0.50676,43.12066,1200,6,30,0,24,9,3.75,15.0,fr,1180,23,58585,1,2,Active Shallow Crust,0.0,89.98977,0.0,06/30/1200 +-0.50676,43.12066,8885,8,25,0,55,42,3.75,15.0,fr,1181,177,58585,1,2,Active Shallow Crust,0.0,89.98977,0.0,08/25/8885 +-0.50676,43.12066,8744,7,21,11,35,12,3.75,27.5,fr,1182,174,58586,1,2,Active Shallow Crust,0.0,89.98977,0.0,07/21/8744 +-0.50676,43.12066,735,10,15,12,33,31,3.75,27.5,fr,1183,14,58586,1,2,Active Shallow Crust,0.0,89.98977,0.0,10/15/0735 +-0.50676,43.12066,6618,11,19,23,33,5,3.75,5.0,fr,1184,132,58587,1,5,Active Shallow Crust,240.0081,58.01749,0.0,11/19/6618 +-0.50676,43.12066,2086,12,2,21,58,18,3.75,5.0,fr,1185,41,58587,1,5,Active Shallow Crust,240.0081,58.01749,0.0,12/02/2086 +-0.50676,43.12066,1693,10,28,3,32,44,3.75,5.0,fr,1186,33,58587,1,5,Active Shallow Crust,240.0081,58.01749,0.0,10/28/1693 +-0.50676,43.12066,6351,8,30,14,36,13,3.75,5.0,fr,1187,127,58587,1,5,Active Shallow Crust,240.0081,58.01749,0.0,08/30/6351 +-0.50676,43.12066,9006,2,24,23,37,36,3.75,5.0,fr,1188,180,58587,1,5,Active Shallow Crust,240.0081,58.01749,0.0,02/24/9006 +-0.50676,43.12066,3036,9,24,22,54,38,3.75,15.0,fr,1189,60,58588,1,2,Active Shallow Crust,240.0081,58.01749,0.0,09/24/3036 +-0.50676,43.12066,8288,1,31,16,44,43,3.75,15.0,fr,1190,165,58588,1,2,Active Shallow Crust,240.0081,58.01749,0.0,01/31/8288 +-0.50676,43.12066,958,8,31,20,21,18,3.75,5.0,fr,1191,19,58590,1,1,Active Shallow Crust,0.0,89.98965,-90.0,08/31/0958 +-0.50676,43.12066,479,12,14,5,11,22,3.75,15.0,fr,1192,9,58591,1,1,Active Shallow Crust,0.0,89.98965,-90.0,12/14/0479 +-0.50676,43.12066,3921,11,22,21,2,21,3.75,15.0,fr,1193,78,58594,1,1,Active Shallow Crust,128.8969,89.96736,0.0,11/22/3921 +-0.50676,43.12066,3722,12,2,12,3,25,3.85,5.0,fr,1194,74,58596,1,4,Active Shallow Crust,0.0,89.99023,0.0,12/02/3722 +-0.50676,43.12066,5027,12,27,6,47,49,3.85,5.0,fr,1195,100,58596,1,4,Active Shallow Crust,0.0,89.99023,0.0,12/27/5027 +-0.50676,43.12066,3684,4,15,4,7,7,3.85,5.0,fr,1196,73,58596,1,4,Active Shallow Crust,0.0,89.99023,0.0,04/15/3684 +-0.50676,43.12066,3365,4,1,10,31,49,3.85,5.0,fr,1197,67,58596,1,4,Active Shallow Crust,0.0,89.99023,0.0,04/01/3365 +-0.50676,43.12066,8203,5,22,4,43,1,3.85,15.0,fr,1198,164,58597,1,1,Active Shallow Crust,0.0,89.99023,0.0,05/22/8203 +-0.50676,43.12066,854,8,1,0,4,9,3.85,15.0,fr,1199,17,58600,1,1,Active Shallow Crust,240.0103,57.99784,0.0,08/01/0854 +-0.50676,43.12066,753,5,12,12,22,56,3.85,27.5,fr,1200,15,58604,1,1,Active Shallow Crust,0.0,89.99012,-90.0,05/12/0753 +-0.50676,43.12066,8446,8,22,11,57,35,3.85,5.0,fr,1201,168,58605,1,3,Active Shallow Crust,128.8959,89.99381,0.0,08/22/8446 +-0.50676,43.12066,6362,10,15,13,38,33,3.85,5.0,fr,1202,127,58605,1,3,Active Shallow Crust,128.8959,89.99381,0.0,10/15/6362 +-0.50676,43.12066,3511,1,26,20,13,5,3.85,5.0,fr,1203,70,58605,1,3,Active Shallow Crust,128.8959,89.99381,0.0,01/26/3511 +-0.50676,43.12066,1508,12,18,0,18,28,3.95,5.0,fr,1204,30,58608,1,7,Active Shallow Crust,0.0,89.99013,0.0,12/18/1508 +-0.50676,43.12066,3041,10,15,12,22,46,3.95,5.0,fr,1205,60,58608,1,7,Active Shallow Crust,0.0,89.99013,0.0,10/15/3041 +-0.50676,43.12066,3280,9,7,17,58,26,3.95,5.0,fr,1206,65,58608,1,7,Active Shallow Crust,0.0,89.99013,0.0,09/07/3280 +-0.50676,43.12066,4552,6,12,16,56,58,3.95,5.0,fr,1207,91,58608,1,7,Active Shallow Crust,0.0,89.99013,0.0,06/12/4552 +-0.50676,43.12066,7373,3,10,7,36,38,3.95,5.0,fr,1208,147,58608,1,7,Active Shallow Crust,0.0,89.99013,0.0,03/10/7373 +-0.50676,43.12066,5674,8,2,7,20,35,3.95,5.0,fr,1209,113,58608,1,7,Active Shallow Crust,0.0,89.99013,0.0,08/02/5674 +-0.50676,43.12066,2487,9,2,7,10,17,3.95,5.0,fr,1210,49,58608,1,7,Active Shallow Crust,0.0,89.99013,0.0,09/02/2487 +-0.50676,43.12066,663,6,6,16,35,5,3.95,15.0,fr,1211,13,58609,1,1,Active Shallow Crust,0.0,89.99013,0.0,06/06/0663 +-0.50676,43.12066,9788,11,20,19,40,16,3.95,5.0,fr,1212,195,58611,1,1,Active Shallow Crust,240.0192,58.00491,0.0,11/20/9788 +-0.50676,43.12066,4050,7,6,11,39,30,3.95,5.0,fr,1213,80,58614,1,1,Active Shallow Crust,0.0,89.99001,-90.0,07/06/4050 +-0.50676,43.12066,2781,1,28,10,10,13,3.95,15.0,fr,1214,55,58615,1,2,Active Shallow Crust,0.0,89.99001,-90.0,01/28/2781 +-0.50676,43.12066,5420,5,24,16,24,55,3.95,15.0,fr,1215,108,58615,1,2,Active Shallow Crust,0.0,89.99001,-90.0,05/24/5420 +-0.50676,43.12066,153,5,27,19,55,40,3.95,5.0,fr,1216,3,58617,1,1,Active Shallow Crust,128.9007,89.9939,0.0,05/27/0153 +-0.50676,43.12066,127,10,10,6,15,23,4.05,5.0,fr,1217,2,58620,1,3,Active Shallow Crust,0.0,89.99017,0.0,10/10/0127 +-0.50676,43.12066,9286,4,3,9,23,17,4.05,5.0,fr,1218,185,58620,1,3,Active Shallow Crust,0.0,89.99017,0.0,04/03/9286 +-0.50676,43.12066,5735,6,16,22,23,19,4.05,5.0,fr,1219,114,58620,1,3,Active Shallow Crust,0.0,89.99017,0.0,06/16/5735 +-0.50676,43.12066,8765,7,5,16,10,10,4.05,27.5,fr,1220,175,58622,1,1,Active Shallow Crust,0.0,89.99017,0.0,07/05/8765 +-0.50676,43.12066,8343,9,5,17,43,55,4.05,5.0,fr,1221,166,58623,1,1,Active Shallow Crust,240.0054,58.00572,0.0,09/05/8343 +-0.50676,43.12066,173,1,10,21,45,31,4.05,5.0,fr,1222,3,58626,1,1,Active Shallow Crust,0.0,89.99006,-90.0,01/10/0173 +-0.50676,43.12066,3453,6,25,21,23,25,4.05,15.0,fr,1223,69,58627,1,1,Active Shallow Crust,0.0,89.99006,-90.0,06/25/3453 +-0.50676,43.12066,692,7,23,16,16,42,4.05,27.5,fr,1224,13,58628,1,1,Active Shallow Crust,0.0,89.99006,-90.0,07/23/0692 +-0.50676,43.12066,5881,3,13,19,41,2,4.05,5.0,fr,1225,117,58629,1,1,Active Shallow Crust,128.891,89.99353,0.0,03/13/5881 +-0.50676,43.12066,5511,8,25,10,59,29,4.15,5.0,fr,1226,110,58632,1,3,Active Shallow Crust,0.0,89.98985,0.0,08/25/5511 +-0.50676,43.12066,9072,5,24,8,36,27,4.15,5.0,fr,1227,181,58632,1,3,Active Shallow Crust,0.0,89.98985,0.0,05/24/9072 +-0.50676,43.12066,6611,9,3,7,57,6,4.15,5.0,fr,1228,132,58632,1,3,Active Shallow Crust,0.0,89.98985,0.0,09/03/6611 +-0.50676,43.12066,7195,5,18,10,39,39,4.15,15.0,fr,1229,143,58633,1,1,Active Shallow Crust,0.0,89.98985,0.0,05/18/7195 +-0.50676,43.12066,7264,9,19,3,40,13,4.15,5.0,fr,1230,145,58635,1,2,Active Shallow Crust,240.0078,57.99721,0.0,09/19/7264 +-0.50676,43.12066,1224,10,6,18,17,3,4.15,5.0,fr,1231,24,58635,1,2,Active Shallow Crust,240.0078,57.99721,0.0,10/06/1224 +-0.50676,43.12066,3364,4,27,7,24,30,4.15,27.5,fr,1232,67,58637,1,1,Active Shallow Crust,240.0078,57.99718,0.0,04/27/3364 +-0.50676,43.12066,7735,9,28,8,51,27,4.15,5.0,fr,1233,154,58641,1,1,Active Shallow Crust,128.8981,89.99355,0.0,09/28/7735 +-0.50676,43.12066,4464,5,26,13,7,36,4.25,5.0,fr,1234,89,58644,1,3,Active Shallow Crust,0.0,89.99014,0.0,05/26/4464 +-0.50676,43.12066,2755,10,20,13,38,10,4.25,5.0,fr,1235,55,58644,1,3,Active Shallow Crust,0.0,89.99014,0.0,10/20/2755 +-0.50676,43.12066,8389,9,27,0,15,17,4.25,5.0,fr,1236,167,58644,1,3,Active Shallow Crust,0.0,89.99014,0.0,09/27/8389 +-0.50676,43.12066,7456,3,1,14,28,6,4.25,15.0,fr,1237,149,58645,1,1,Active Shallow Crust,0.0,89.99014,0.0,03/01/7456 +-0.50676,43.12066,4454,4,10,7,8,30,4.25,5.0,fr,1238,89,58647,1,2,Active Shallow Crust,240.0069,57.99398,0.0,04/10/4454 +-0.50676,43.12066,9829,9,10,4,6,12,4.25,5.0,fr,1239,196,58647,1,2,Active Shallow Crust,240.0069,57.99398,0.0,09/10/9829 +-0.50676,43.12066,9849,10,29,18,13,47,4.25,5.0,fr,1240,196,58653,1,1,Active Shallow Crust,128.8949,89.98096,0.0,10/29/9849 +-0.50676,43.12066,8811,11,25,15,24,40,4.35,15.0,fr,1241,176,58657,1,1,Active Shallow Crust,0.0,89.99011,0.0,11/25/8811 +-0.50676,43.12066,8964,6,22,9,36,42,4.45,5.0,fr,1242,179,58668,1,1,Active Shallow Crust,0.0,89.98988,0.0,06/22/8964 +-0.50676,43.12066,1521,2,1,10,18,6,4.45,5.0,fr,1243,30,58671,1,1,Active Shallow Crust,240.0044,57.99452,0.0,02/01/1521 +-0.50676,43.12066,9265,7,19,4,1,58,4.55,5.0,fr,1244,185,58680,1,3,Active Shallow Crust,0.0,89.9901,0.0,07/19/9265 +-0.50676,43.12066,2128,2,11,9,18,45,4.55,5.0,fr,1245,42,58680,1,3,Active Shallow Crust,0.0,89.9901,0.0,02/11/2128 +-0.50676,43.12066,8152,11,27,15,1,36,4.55,5.0,fr,1246,163,58680,1,3,Active Shallow Crust,0.0,89.9901,0.0,11/27/8152 +-0.50676,43.12066,9857,2,13,3,23,29,4.55,5.0,fr,1247,197,58683,1,1,Active Shallow Crust,240.0084,57.99721,0.0,02/13/9857 +-0.50676,43.12066,5155,11,17,0,9,42,4.65,5.0,fr,1248,103,58692,1,2,Active Shallow Crust,0.0,89.98988,0.0,11/17/5155 +-0.50676,43.12066,8462,1,28,23,49,33,4.65,5.0,fr,1249,169,58692,1,2,Active Shallow Crust,0.0,89.98988,0.0,01/28/8462 +-0.50676,43.12066,4733,11,25,14,55,55,4.65,5.0,fr,1250,94,58698,1,1,Active Shallow Crust,0.0,89.99003,-90.0,11/25/4733 +-0.50676,43.12066,9105,11,20,6,12,3,4.85,5.0,fr,1251,182,58716,1,1,Active Shallow Crust,0.0,89.98991,0.0,11/20/9105 +-0.50676,43.12066,6139,12,18,19,36,44,4.95,5.0,fr,1252,122,58728,1,1,Active Shallow Crust,0.0,89.99008,0.0,12/18/6139 +-0.50676,43.12066,907,11,4,3,0,34,5.05,5.0,fr,1253,18,58740,1,2,Active Shallow Crust,0.0,89.99002,0.0,11/04/0907 +-0.50676,43.12066,3184,3,15,13,14,19,5.05,5.0,fr,1254,63,58740,1,2,Active Shallow Crust,0.0,89.99002,0.0,03/15/3184 +-0.50676,43.12066,1511,6,2,4,52,30,5.35,5.0,fr,1255,30,58776,1,1,Active Shallow Crust,0.0,89.99004,0.0,06/02/1511 +-0.50676,43.12066,7285,8,6,16,6,0,5.45,5.0,fr,1256,145,58788,1,1,Active Shallow Crust,0.0,89.98998,0.0,08/06/7285 +-0.50676,43.12066,2440,9,22,3,39,24,5.65,5.0,fr,1257,48,58815,1,1,Active Shallow Crust,240.0309,58.00132,0.0,09/22/2440 +-0.50676,43.12066,8212,7,31,4,15,45,6.35,15.0,fr,1258,164,58897,1,1,Active Shallow Crust,0.0,89.98999,0.0,07/31/8212 +-2.77945,48.49796,7079,4,27,23,6,6,3.55,5.0,fr,1259,141,59040,1,1,Active Shallow Crust,0.0,89.98997,0.0,04/27/7079 +-2.77945,48.49796,942,6,23,16,17,55,3.55,15.0,fr,1260,18,59041,1,2,Active Shallow Crust,0.0,89.98997,0.0,06/23/0942 +-2.77945,48.49796,2688,5,9,10,27,52,3.55,15.0,fr,1261,53,59041,1,2,Active Shallow Crust,0.0,89.98997,0.0,05/09/2688 +-2.77945,48.49796,9367,8,11,3,13,14,3.65,5.0,fr,1262,187,59052,1,2,Active Shallow Crust,0.0,89.99107,0.0,08/11/9367 +-2.77945,48.49796,2499,1,25,14,16,51,3.65,5.0,fr,1263,49,59052,1,2,Active Shallow Crust,0.0,89.99107,0.0,01/25/2499 +-2.77945,48.49796,1694,1,20,6,22,45,3.65,15.0,fr,1264,33,59053,1,1,Active Shallow Crust,0.0,89.99107,0.0,01/20/1694 +-2.77945,48.49796,1230,11,16,4,56,8,3.65,5.0,fr,1265,24,59055,1,1,Active Shallow Crust,240.0009,58.01318,0.0,11/16/1230 +-2.77945,48.49796,5623,6,25,13,22,20,3.75,5.0,fr,1266,112,59064,1,3,Active Shallow Crust,0.0,89.98939,0.0,06/25/5623 +-2.77945,48.49796,1621,10,8,0,23,54,3.75,5.0,fr,1267,32,59064,1,3,Active Shallow Crust,0.0,89.98939,0.0,10/08/1621 +-2.77945,48.49796,5949,12,28,6,20,6,3.75,5.0,fr,1268,118,59064,1,3,Active Shallow Crust,0.0,89.98939,0.0,12/28/5949 +-2.77945,48.49796,9850,2,17,12,21,4,3.75,15.0,fr,1269,196,59065,1,1,Active Shallow Crust,0.0,89.98939,0.0,02/17/9850 +-2.77945,48.49796,1104,5,31,12,25,39,3.85,15.0,fr,1270,22,59077,1,1,Active Shallow Crust,0.0,89.99054,0.0,05/31/1104 +-2.77945,48.49796,2044,1,23,0,35,48,3.95,5.0,fr,1271,40,59088,1,1,Active Shallow Crust,0.0,89.98946,0.0,01/23/2044 +-2.77945,48.49796,8420,7,23,14,54,26,3.95,5.0,fr,1272,168,59097,1,1,Active Shallow Crust,128.9005,89.99368,0.0,07/23/8420 +-2.77945,48.49796,4510,1,31,1,28,1,4.35,5.0,fr,1273,90,59139,1,1,Active Shallow Crust,240.0091,57.9958,0.0,01/31/4510 +-2.77945,48.49796,2337,4,26,7,6,14,4.45,5.0,fr,1274,46,59148,1,1,Active Shallow Crust,0.0,89.99052,0.0,04/26/2337 +-2.77945,48.49796,3838,9,4,7,55,58,4.45,27.5,fr,1275,76,59150,1,1,Active Shallow Crust,0.0,89.99052,0.0,09/04/3838 +-2.77945,48.49796,1866,1,7,23,16,49,4.45,5.0,fr,1276,37,59151,1,1,Active Shallow Crust,240.0058,57.99474,0.0,01/07/1866 +-2.77945,48.49796,6298,4,11,13,53,3,5.45,15.0,fr,1277,125,59269,1,1,Active Shallow Crust,0.0,89.98988,0.0,04/11/6298 +-1.10381,43.05879,7372,6,27,21,10,45,3.55,5.0,fr,1278,147,59520,1,2,Active Shallow Crust,0.0,89.99079,0.0,06/27/7372 +-1.10381,43.05879,729,6,11,22,36,8,3.55,5.0,fr,1279,14,59520,1,2,Active Shallow Crust,0.0,89.99079,0.0,06/11/0729 +-1.10381,43.05879,5231,12,11,3,54,20,3.55,27.5,fr,1280,104,59522,1,1,Active Shallow Crust,0.0,89.99079,0.0,12/11/5231 +-1.10381,43.05879,3271,8,26,12,24,46,3.55,5.0,fr,1281,65,59523,1,1,Active Shallow Crust,240.0119,57.99798,0.0,08/26/3271 +-1.10381,43.05879,687,1,26,4,40,18,3.65,5.0,fr,1282,13,59532,1,2,Active Shallow Crust,0.0,89.99015,0.0,01/26/0687 +-1.10381,43.05879,9675,7,21,13,47,30,3.65,5.0,fr,1283,193,59532,1,2,Active Shallow Crust,0.0,89.99015,0.0,07/21/9675 +-1.10381,43.05879,6486,1,21,17,50,21,3.65,15.0,fr,1284,129,59533,1,1,Active Shallow Crust,0.0,89.99015,0.0,01/21/6486 +-1.10381,43.05879,684,7,15,9,7,53,3.65,5.0,fr,1285,13,59535,1,2,Active Shallow Crust,240.0008,58.01279,0.0,07/15/0684 +-1.10381,43.05879,3256,3,5,3,3,11,3.65,5.0,fr,1286,65,59535,1,2,Active Shallow Crust,240.0008,58.01279,0.0,03/05/3256 +-1.10381,43.05879,5187,11,6,6,36,46,3.65,15.0,fr,1287,103,59536,1,2,Active Shallow Crust,240.0008,58.01279,0.0,11/06/5187 +-1.10381,43.05879,6657,8,23,3,50,53,3.65,15.0,fr,1288,133,59536,1,2,Active Shallow Crust,240.0008,58.01279,0.0,08/23/6657 +-1.10381,43.05879,9289,3,5,21,8,34,3.75,5.0,fr,1289,185,59544,1,5,Active Shallow Crust,0.0,89.98976,0.0,03/05/9289 +-1.10381,43.05879,4819,1,9,10,36,13,3.75,5.0,fr,1290,96,59544,1,5,Active Shallow Crust,0.0,89.98976,0.0,01/09/4819 +-1.10381,43.05879,9220,8,30,10,13,28,3.75,5.0,fr,1291,184,59544,1,5,Active Shallow Crust,0.0,89.98976,0.0,08/30/9220 +-1.10381,43.05879,4364,3,28,11,47,52,3.75,5.0,fr,1292,87,59544,1,5,Active Shallow Crust,0.0,89.98976,0.0,03/28/4364 +-1.10381,43.05879,6353,2,11,23,13,15,3.75,5.0,fr,1293,127,59544,1,5,Active Shallow Crust,0.0,89.98976,0.0,02/11/6353 +-1.10381,43.05879,9933,1,25,14,22,43,3.85,5.0,fr,1294,198,59556,1,2,Active Shallow Crust,0.0,89.98957,0.0,01/25/9933 +-1.10381,43.05879,7572,3,30,4,32,31,3.85,5.0,fr,1295,151,59556,1,2,Active Shallow Crust,0.0,89.98957,0.0,03/30/7572 +-1.10381,43.05879,635,2,23,7,50,53,3.85,15.0,fr,1296,12,59557,1,3,Active Shallow Crust,0.0,89.98957,0.0,02/23/0635 +-1.10381,43.05879,7848,2,26,19,17,7,3.85,15.0,fr,1297,156,59557,1,3,Active Shallow Crust,0.0,89.98957,0.0,02/26/7848 +-1.10381,43.05879,8153,6,3,10,57,35,3.85,15.0,fr,1298,163,59557,1,3,Active Shallow Crust,0.0,89.98957,0.0,06/03/8153 +-1.10381,43.05879,7533,12,20,17,41,35,3.85,5.0,fr,1299,150,59559,1,1,Active Shallow Crust,240.0103,57.99783,0.0,12/20/7533 +-1.10381,43.05879,7730,1,4,17,9,8,3.95,5.0,fr,1300,154,59568,1,2,Active Shallow Crust,0.0,89.98954,0.0,01/04/7730 +-1.10381,43.05879,843,2,23,22,12,48,3.95,5.0,fr,1301,16,59568,1,2,Active Shallow Crust,0.0,89.98954,0.0,02/23/0843 +-1.10381,43.05879,9172,6,15,5,45,56,3.95,5.0,fr,1302,183,59571,1,1,Active Shallow Crust,240.0194,58.00493,0.0,06/15/9172 +-1.10381,43.05879,3360,3,18,17,23,54,3.95,15.0,fr,1303,67,59572,1,1,Active Shallow Crust,240.0194,58.00493,0.0,03/18/3360 +-1.10381,43.05879,813,4,27,18,55,41,4.05,5.0,fr,1304,16,59580,1,2,Active Shallow Crust,0.0,89.98964,0.0,04/27/0813 +-1.10381,43.05879,1619,1,5,13,49,8,4.05,5.0,fr,1305,32,59580,1,2,Active Shallow Crust,0.0,89.98964,0.0,01/05/1619 +-1.10381,43.05879,1756,8,11,10,45,26,4.25,5.0,fr,1306,35,59604,1,1,Active Shallow Crust,0.0,89.99013,0.0,08/11/1756 +-1.10381,43.05879,4970,7,11,6,23,50,4.25,15.0,fr,1307,99,59605,1,1,Active Shallow Crust,0.0,89.99013,0.0,07/11/4970 +-1.10381,43.05879,4499,7,4,13,47,55,4.25,5.0,fr,1308,89,59613,1,1,Active Shallow Crust,128.8949,89.98096,0.0,07/04/4499 +-1.10381,43.05879,6195,3,16,15,47,20,4.45,5.0,fr,1309,123,59628,1,2,Active Shallow Crust,0.0,89.9902,0.0,03/16/6195 +-1.10381,43.05879,8791,10,26,21,53,55,4.45,5.0,fr,1310,175,59628,1,2,Active Shallow Crust,0.0,89.9902,0.0,10/26/8791 +-1.10381,43.05879,2948,10,11,12,41,30,4.45,15.0,fr,1311,58,59632,1,1,Active Shallow Crust,240.0045,57.99448,0.0,10/11/2948 +-1.10381,43.05879,8340,3,25,5,52,48,4.45,5.0,fr,1312,166,59637,1,1,Active Shallow Crust,128.8929,89.99379,0.0,03/25/8340 +-1.10381,43.05879,8607,2,1,22,2,13,4.55,15.0,fr,1313,172,59641,1,1,Active Shallow Crust,0.0,89.9901,0.0,02/01/8607 +-1.10381,43.05879,2925,12,31,14,19,24,4.85,15.0,fr,1314,58,59683,1,1,Active Shallow Crust,0.0,89.98999,-90.0,12/31/2925 +-1.10381,43.05879,7934,1,26,4,2,6,4.95,5.0,fr,1315,158,59688,1,1,Active Shallow Crust,0.0,89.99007,0.0,01/26/7934 +-1.10381,43.05879,1136,7,13,16,36,12,4.95,27.5,fr,1316,22,59690,1,1,Active Shallow Crust,0.0,89.99007,0.0,07/13/1136 +-1.10381,43.05879,6714,7,30,4,58,1,5.05,5.0,fr,1317,134,59700,1,1,Active Shallow Crust,0.0,89.98985,0.0,07/30/6714 +-1.10381,43.05879,5158,12,19,17,9,34,5.15,15.0,fr,1318,103,59722,1,1,Active Shallow Crust,128.8853,89.99104,0.0,12/19/5158 +5.6045,44.30979,138,2,6,9,25,54,3.55,15.0,fr,1319,2,60010,1,1,Active Shallow Crust,128.8956,89.99278,0.0,02/06/0138 +5.6045,44.30979,856,7,27,18,36,8,3.65,5.0,fr,1320,17,60012,1,1,Active Shallow Crust,0.0,89.98714,0.0,07/27/0856 +5.6045,44.30979,7271,8,20,1,59,11,3.65,5.0,fr,1321,145,60018,1,1,Active Shallow Crust,0.0,89.98699,-90.0,08/20/7271 +5.6045,44.30979,5017,1,19,20,15,52,3.75,5.0,fr,1322,100,60024,1,1,Active Shallow Crust,0.0,89.98853,0.0,01/19/5017 +5.6045,44.30979,2023,9,6,15,41,58,3.75,15.0,fr,1323,40,60028,1,1,Active Shallow Crust,240.0072,58.01775,0.0,09/06/2023 +5.6045,44.30979,5338,7,13,20,3,10,3.85,15.0,fr,1324,106,60037,1,1,Active Shallow Crust,0.0,89.98978,0.0,07/13/5338 +5.6045,44.30979,8574,3,11,12,49,15,3.95,5.0,fr,1325,171,60048,1,2,Active Shallow Crust,0.0,89.99089,0.0,03/11/8574 +5.6045,44.30979,9641,8,19,20,36,1,3.95,5.0,fr,1326,192,60048,1,2,Active Shallow Crust,0.0,89.99089,0.0,08/19/9641 +5.6045,44.30979,8979,7,7,21,40,36,4.05,5.0,fr,1327,179,60060,1,1,Active Shallow Crust,0.0,89.99188,0.0,07/07/8979 +5.6045,44.30979,7757,11,12,18,32,5,4.05,15.0,fr,1328,155,60061,1,1,Active Shallow Crust,0.0,89.99188,0.0,11/12/7757 +5.6045,44.30979,5636,8,16,23,35,42,4.15,5.0,fr,1329,112,60072,1,1,Active Shallow Crust,0.0,89.98915,0.0,08/16/5636 +5.6045,44.30979,7536,6,1,2,52,48,4.25,5.0,fr,1330,150,60084,1,1,Active Shallow Crust,0.0,89.99033,0.0,06/01/7536 +5.6045,44.30979,4519,9,25,17,56,10,4.25,5.0,fr,1331,90,60093,1,1,Active Shallow Crust,128.8945,89.98087,0.0,09/25/4519 +5.6045,44.30979,1349,5,15,13,59,15,4.85,5.0,fr,1332,26,60159,1,1,Active Shallow Crust,240.0163,58.00228,0.0,05/15/1349 +5.6045,44.30979,7489,3,13,21,33,6,5.65,15.0,fr,1333,149,60256,1,1,Active Shallow Crust,240.0319,58.00145,0.0,03/13/7489 +2.76536,47.40973,2846,3,10,6,9,34,3.75,5.0,fr,1334,56,60504,1,1,Active Shallow Crust,0.0,89.98916,0.0,03/10/2846 +-4.59843,47.77979,3936,1,18,11,58,21,3.65,5.0,fr,1335,78,60978,1,1,Active Shallow Crust,0.0,89.98778,-90.0,01/18/3936 +-4.59843,47.77979,2093,12,4,16,22,59,3.65,15.0,fr,1336,41,60982,1,1,Active Shallow Crust,128.901,89.96355,0.0,12/04/2093 +-4.59843,47.77979,8396,8,22,11,44,7,3.85,5.0,fr,1337,167,61005,1,1,Active Shallow Crust,128.8955,89.9952,0.0,08/22/8396 +-4.59843,47.77979,297,2,6,2,16,5,3.95,15.0,fr,1338,5,61012,1,1,Active Shallow Crust,240.0203,58.00518,0.0,02/06/0297 +-4.59843,47.77979,3634,3,27,22,7,34,4.05,5.0,fr,1339,72,61020,1,1,Active Shallow Crust,0.0,89.98857,0.0,03/27/3634 +-4.59843,47.77979,8861,8,8,7,30,19,4.15,5.0,fr,1340,177,61041,1,1,Active Shallow Crust,128.8979,89.99321,0.0,08/08/8861 +-4.59843,47.77979,2631,8,24,17,33,35,4.65,15.0,fr,1341,52,61093,1,1,Active Shallow Crust,0.0,89.99045,0.0,08/24/2631 +2.63324,44.80328,2442,11,20,20,0,45,3.55,15.0,fr,1342,48,61921,1,1,Active Shallow Crust,0.0,89.98927,0.0,11/20/2442 +2.63324,44.80328,4612,4,22,20,19,10,3.55,27.5,fr,1343,92,61922,1,1,Active Shallow Crust,0.0,89.98927,0.0,04/22/4612 +2.63324,44.80328,8947,4,9,14,56,14,3.55,5.0,fr,1344,178,61926,1,1,Active Shallow Crust,0.0,89.98914,-90.0,04/09/8947 +2.63324,44.80328,4858,5,23,18,35,18,3.65,5.0,fr,1345,97,61932,1,3,Active Shallow Crust,0.0,89.99043,0.0,05/23/4858 +2.63324,44.80328,687,6,29,12,4,35,3.65,5.0,fr,1346,13,61932,1,3,Active Shallow Crust,0.0,89.99043,0.0,06/29/0687 +2.63324,44.80328,9166,5,8,15,26,14,3.65,5.0,fr,1347,183,61932,1,3,Active Shallow Crust,0.0,89.99043,0.0,05/08/9166 +2.63324,44.80328,5076,7,24,14,45,1,3.65,15.0,fr,1348,101,61933,1,1,Active Shallow Crust,0.0,89.99043,0.0,07/24/5076 +2.63324,44.80328,2582,2,18,10,13,5,3.95,5.0,fr,1349,51,61968,1,1,Active Shallow Crust,0.0,89.99097,0.0,02/18/2582 +2.63324,44.80328,4387,7,7,12,33,50,3.95,5.0,fr,1350,87,61974,1,1,Active Shallow Crust,0.0,89.99087,-90.0,07/07/4387 +2.63324,44.80328,1798,10,19,20,57,45,4.15,5.0,fr,1351,35,61992,1,1,Active Shallow Crust,0.0,89.98924,0.0,10/19/1798 +2.63324,44.80328,4670,7,23,13,25,11,4.15,15.0,fr,1352,93,62002,1,1,Active Shallow Crust,128.8976,89.99373,0.0,07/23/4670 +2.63324,44.80328,4517,1,18,12,30,41,4.25,5.0,fr,1353,90,62013,1,1,Active Shallow Crust,128.8946,89.98088,0.0,01/18/4517 +2.63324,44.80328,7559,7,1,7,43,12,4.35,5.0,fr,1354,151,62016,1,1,Active Shallow Crust,0.0,89.99003,0.0,07/01/7559 +2.63324,44.80328,106,5,11,10,1,42,4.85,5.0,fr,1355,2,62076,1,1,Active Shallow Crust,0.0,89.99039,0.0,05/11/0106 +2.63324,44.80328,3395,3,9,13,44,52,5.55,5.0,fr,1356,67,62160,1,1,Active Shallow Crust,0.0,89.98998,0.0,03/09/3395 +2.70118,43.89342,7370,3,10,18,56,51,3.55,27.5,fr,1357,147,62408,1,1,Active Shallow Crust,0.0,89.98898,-90.0,03/10/7370 +2.70118,43.89342,6149,4,10,14,27,21,3.75,5.0,fr,1358,122,62424,1,1,Active Shallow Crust,0.0,89.99134,0.0,04/10/6149 +2.70118,43.89342,8326,12,1,21,21,11,3.75,27.5,fr,1359,166,62426,1,1,Active Shallow Crust,0.0,89.99134,0.0,12/01/8326 +2.70118,43.89342,9807,2,27,9,53,35,4.25,5.0,fr,1360,196,62484,1,1,Active Shallow Crust,0.0,89.99026,0.0,02/27/9807 +4.64032,52.2743,8659,2,17,3,7,30,3.85,5.0,fr,1361,173,62919,1,1,Active Shallow Crust,240.0124,57.99755,0.0,02/17/8659 +4.64032,52.2743,5026,1,27,6,50,5,4.05,5.0,fr,1362,100,62940,1,1,Active Shallow Crust,0.0,89.98959,0.0,01/27/5026 +8.45896,48.41197,9750,5,12,23,47,9,3.55,5.0,fr,1363,194,63360,1,1,Active Shallow Crust,0.0,89.98661,0.0,05/12/9750 +8.45896,48.41197,7284,4,12,5,58,5,3.55,5.0,fr,1364,145,63369,1,1,Active Shallow Crust,128.8966,89.99331,0.0,04/12/7284 +8.45896,48.41197,5641,11,19,0,21,58,3.65,5.0,fr,1365,112,63372,1,3,Active Shallow Crust,0.0,89.98807,0.0,11/19/5641 +8.45896,48.41197,5204,10,17,21,10,46,3.65,5.0,fr,1366,104,63372,1,3,Active Shallow Crust,0.0,89.98807,0.0,10/17/5204 +8.45896,48.41197,3480,2,7,19,54,29,3.65,5.0,fr,1367,69,63372,1,3,Active Shallow Crust,0.0,89.98807,0.0,02/07/3480 +8.45896,48.41197,7467,3,23,10,0,5,3.65,5.0,fr,1368,149,63378,1,1,Active Shallow Crust,0.0,89.98793,-90.0,03/23/7467 +8.45896,48.41197,6087,7,11,18,48,41,3.65,27.5,fr,1369,121,63383,1,1,Active Shallow Crust,128.9003,89.96356,0.0,07/11/6087 +8.45896,48.41197,3862,7,24,2,5,47,3.75,5.0,fr,1370,77,63384,1,1,Active Shallow Crust,0.0,89.98936,0.0,07/24/3862 +8.45896,48.41197,6318,12,2,2,21,28,3.75,15.0,fr,1371,126,63385,1,1,Active Shallow Crust,0.0,89.98936,0.0,12/02/6318 +8.45896,48.41197,8283,4,16,0,55,53,3.85,5.0,fr,1372,165,63396,1,1,Active Shallow Crust,0.0,89.99052,0.0,04/16/8283 +8.45896,48.41197,6568,5,23,9,1,14,3.95,5.0,fr,1373,131,63408,1,3,Active Shallow Crust,0.0,89.99155,0.0,05/23/6568 +8.45896,48.41197,7284,5,9,13,56,5,3.95,5.0,fr,1374,145,63408,1,3,Active Shallow Crust,0.0,89.99155,0.0,05/09/7284 +8.45896,48.41197,3058,6,30,16,25,1,3.95,5.0,fr,1375,61,63408,1,3,Active Shallow Crust,0.0,89.99155,0.0,06/30/3058 +8.45896,48.41197,5066,9,27,1,6,34,4.05,15.0,fr,1376,101,63421,1,1,Active Shallow Crust,0.0,89.99247,0.0,09/27/5066 +8.45896,48.41197,4951,2,10,13,32,12,4.05,15.0,fr,1377,99,63427,1,1,Active Shallow Crust,0.0,89.99239,-90.0,02/10/4951 +8.45896,48.41197,7290,5,21,4,15,33,4.15,5.0,fr,1378,145,63435,1,1,Active Shallow Crust,240.0096,57.99756,0.0,05/21/7290 +8.45896,48.41197,7178,12,10,6,12,19,4.25,5.0,fr,1379,143,63444,1,1,Active Shallow Crust,0.0,89.98804,0.0,12/10/7178 +8.45896,48.41197,6486,3,30,14,31,46,4.35,5.0,fr,1380,129,63459,1,1,Active Shallow Crust,240.0098,57.99562,0.0,03/30/6486 +8.45896,48.41197,9161,4,3,20,2,53,4.55,5.0,fr,1381,183,63480,1,1,Active Shallow Crust,0.0,89.99153,0.0,04/03/9161 +8.45896,48.41197,2115,10,25,18,20,1,4.55,15.0,fr,1382,42,63481,1,1,Active Shallow Crust,0.0,89.99153,0.0,10/25/2115 +8.45896,48.41197,2981,6,17,20,30,41,4.85,5.0,fr,1383,59,63516,1,1,Active Shallow Crust,0.0,89.991,0.0,06/17/2981 +8.45896,48.41197,9923,12,28,5,23,27,5.35,5.0,fr,1384,198,63576,1,1,Active Shallow Crust,0.0,89.98988,0.0,12/28/9923 +-2.78175,50.5066,346,8,14,19,58,38,3.85,15.0,fr,1385,6,63877,1,1,Active Shallow Crust,0.0,89.99092,0.0,08/14/0346 +-2.78175,50.5066,7256,1,19,3,6,29,3.85,5.0,fr,1386,145,63882,1,1,Active Shallow Crust,0.0,89.99081,-90.0,01/19/7256 +-2.78175,50.5066,5870,10,18,13,49,10,4.15,5.0,fr,1387,117,63921,1,1,Active Shallow Crust,128.8965,89.99358,0.0,10/18/5870 +5.05968,49.5144,228,8,18,0,38,27,4.75,15.0,fr,1388,4,64465,1,1,Active Shallow Crust,0.0,89.99013,0.0,08/18/0228 +-3.61046,50.17495,4587,11,14,22,54,35,3.65,15.0,fr,1389,91,64813,1,1,Active Shallow Crust,0.0,89.99136,0.0,11/14/4587 +-3.61046,50.17495,1080,7,3,7,43,21,4.25,5.0,fr,1390,21,64887,1,1,Active Shallow Crust,240.0081,57.99432,0.0,07/03/1080 +-2.33659,49.34037,1901,1,10,19,7,58,3.55,5.0,fr,1391,38,65280,1,1,Active Shallow Crust,0.0,89.99014,0.0,01/10/1901 +-2.33659,49.34037,3082,2,23,5,52,16,3.55,5.0,fr,1392,61,65283,1,2,Active Shallow Crust,240.0122,57.99833,0.0,02/23/3082 +-2.33659,49.34037,448,3,13,14,5,33,3.55,5.0,fr,1393,8,65283,1,2,Active Shallow Crust,240.0122,57.99833,0.0,03/13/0448 +-2.33659,49.34037,6821,1,22,5,13,39,3.55,15.0,fr,1394,136,65284,1,1,Active Shallow Crust,240.0122,57.99833,0.0,01/22/6821 +-2.33659,49.34037,8810,9,12,14,19,54,3.65,27.5,fr,1395,176,65300,1,1,Active Shallow Crust,0.0,89.99111,-90.0,09/12/8810 +-2.33659,49.34037,1577,8,9,0,59,31,3.75,5.0,fr,1396,31,65304,1,1,Active Shallow Crust,0.0,89.98956,0.0,08/09/1577 +-2.33659,49.34037,8276,2,26,9,1,19,3.75,5.0,fr,1397,165,65310,1,1,Active Shallow Crust,0.0,89.98944,-90.0,02/26/8276 +-2.33659,49.34037,159,9,29,3,13,53,3.75,5.0,fr,1398,3,65313,1,2,Active Shallow Crust,128.8963,89.96731,0.0,09/29/0159 +-2.33659,49.34037,5511,7,27,13,34,2,3.75,5.0,fr,1399,110,65313,1,2,Active Shallow Crust,128.8963,89.96731,0.0,07/27/5511 +-2.33659,49.34037,2862,9,10,21,24,39,3.85,5.0,fr,1400,57,65316,1,1,Active Shallow Crust,0.0,89.9907,0.0,09/10/2862 +-2.33659,49.34037,2554,6,30,11,46,10,3.95,5.0,fr,1401,51,65331,1,1,Active Shallow Crust,240.0202,58.00521,0.0,06/30/2554 +-2.33659,49.34037,1852,6,19,19,17,22,4.05,5.0,fr,1402,37,65340,1,1,Active Shallow Crust,0.0,89.99076,0.0,06/19/1852 +-2.33659,49.34037,6832,11,16,15,39,8,4.05,27.5,fr,1403,136,65348,1,1,Active Shallow Crust,0.0,89.99065,-90.0,11/16/6832 +-2.33659,49.34037,3964,4,29,19,7,20,4.15,5.0,fr,1404,79,65358,1,1,Active Shallow Crust,0.0,89.99001,-90.0,04/29/3964 +-2.336586,49.34037,8584,10,21,6,5,1,6.25,6.744814,fr,1405,171,65604,1,1,Active Shallow Crust,359.9999,89.99001,0.0,10/21/8584 +-5.10539,47.58752,375,10,31,6,27,50,3.65,15.0,fr,1406,7,66253,1,1,Active Shallow Crust,0.0,89.98788,0.0,10/31/0375 +-5.10539,47.58752,8140,2,25,23,8,53,4.35,27.5,fr,1407,162,66338,1,1,Active Shallow Crust,0.0,89.98917,0.0,02/25/8140 +7.4386,47.53349,5728,7,3,6,24,32,3.55,5.0,fr,1408,114,66720,1,9,Active Shallow Crust,0.0,89.99319,0.0,07/03/5728 +7.4386,47.53349,3770,5,12,5,6,17,3.55,5.0,fr,1409,75,66720,1,9,Active Shallow Crust,0.0,89.99319,0.0,05/12/3770 +7.4386,47.53349,3318,11,8,18,34,32,3.55,5.0,fr,1410,66,66720,1,9,Active Shallow Crust,0.0,89.99319,0.0,11/08/3318 +7.4386,47.53349,7429,6,25,14,15,28,3.55,5.0,fr,1411,148,66720,1,9,Active Shallow Crust,0.0,89.99319,0.0,06/25/7429 +7.4386,47.53349,9924,2,27,22,19,15,3.55,5.0,fr,1412,198,66720,1,9,Active Shallow Crust,0.0,89.99319,0.0,02/27/9924 +7.4386,47.53349,569,5,15,21,6,43,3.55,5.0,fr,1413,11,66720,1,9,Active Shallow Crust,0.0,89.99319,0.0,05/15/0569 +7.4386,47.53349,4814,10,11,9,17,25,3.55,5.0,fr,1414,96,66720,1,9,Active Shallow Crust,0.0,89.99319,0.0,10/11/4814 +7.4386,47.53349,2344,4,23,11,18,18,3.55,5.0,fr,1415,46,66720,1,9,Active Shallow Crust,0.0,89.99319,0.0,04/23/2344 +7.4386,47.53349,3452,9,13,7,1,7,3.55,5.0,fr,1416,69,66720,1,9,Active Shallow Crust,0.0,89.99319,0.0,09/13/3452 +7.4386,47.53349,3125,6,6,3,28,19,3.55,15.0,fr,1417,62,66721,1,3,Active Shallow Crust,0.0,89.99319,0.0,06/06/3125 +7.4386,47.53349,6091,2,13,6,27,42,3.55,15.0,fr,1418,121,66721,1,3,Active Shallow Crust,0.0,89.99319,0.0,02/13/6091 +7.4386,47.53349,5994,1,11,22,14,43,3.55,15.0,fr,1419,119,66721,1,3,Active Shallow Crust,0.0,89.99319,0.0,01/11/5994 +7.4386,47.53349,7915,5,6,2,54,22,3.55,27.5,fr,1420,158,66722,1,3,Active Shallow Crust,0.0,89.99319,0.0,05/06/7915 +7.4386,47.53349,9547,9,6,7,29,56,3.55,27.5,fr,1421,190,66722,1,3,Active Shallow Crust,0.0,89.99319,0.0,09/06/9547 +7.4386,47.53349,8479,6,5,12,3,13,3.55,27.5,fr,1422,169,66722,1,3,Active Shallow Crust,0.0,89.99319,0.0,06/05/8479 +7.4386,47.53349,9852,10,7,12,7,26,3.55,5.0,fr,1423,197,66723,1,3,Active Shallow Crust,240.0109,57.99905,0.0,10/07/9852 +7.4386,47.53349,685,12,23,15,18,20,3.55,5.0,fr,1424,13,66723,1,3,Active Shallow Crust,240.0109,57.99905,0.0,12/23/0685 +7.4386,47.53349,3612,7,23,15,29,3,3.55,5.0,fr,1425,72,66723,1,3,Active Shallow Crust,240.0109,57.99905,0.0,07/23/3612 +7.4386,47.53349,5254,5,19,1,25,14,3.55,15.0,fr,1426,105,66724,1,2,Active Shallow Crust,240.0109,57.99905,0.0,05/19/5254 +7.4386,47.53349,3187,10,11,2,8,8,3.55,15.0,fr,1427,63,66724,1,2,Active Shallow Crust,240.0109,57.99905,0.0,10/11/3187 +7.4386,47.53349,8836,6,6,14,42,57,3.55,5.0,fr,1428,176,66726,1,2,Active Shallow Crust,0.0,89.99311,-90.0,06/06/8836 +7.4386,47.53349,1113,5,25,16,59,36,3.55,5.0,fr,1429,22,66726,1,2,Active Shallow Crust,0.0,89.99311,-90.0,05/25/1113 +7.4386,47.53349,9027,11,9,1,27,56,3.55,27.5,fr,1430,180,66728,1,1,Active Shallow Crust,0.0,89.99311,-90.0,11/09/9027 +7.4386,47.53349,223,9,20,16,6,25,3.55,5.0,fr,1431,4,66729,1,1,Active Shallow Crust,128.8972,89.99319,0.0,09/20/0223 +7.4386,47.53349,1453,6,25,5,32,51,3.55,27.5,fr,1432,29,66731,1,1,Active Shallow Crust,128.8972,89.99319,0.0,06/25/1453 +7.4386,47.53349,1896,11,18,10,54,9,3.65,5.0,fr,1433,37,66732,1,13,Active Shallow Crust,0.0,89.98786,0.0,11/18/1896 +7.4386,47.53349,3297,8,8,4,49,9,3.65,5.0,fr,1434,65,66732,1,13,Active Shallow Crust,0.0,89.98786,0.0,08/08/3297 +7.4386,47.53349,1613,2,18,5,3,24,3.65,5.0,fr,1435,32,66732,1,13,Active Shallow Crust,0.0,89.98786,0.0,02/18/1613 +7.4386,47.53349,4559,12,5,2,7,9,3.65,5.0,fr,1436,91,66732,1,13,Active Shallow Crust,0.0,89.98786,0.0,12/05/4559 +7.4386,47.53349,7637,9,6,22,50,44,3.65,5.0,fr,1437,152,66732,1,13,Active Shallow Crust,0.0,89.98786,0.0,09/06/7637 +7.4386,47.53349,4688,5,2,3,33,38,3.65,5.0,fr,1438,93,66732,1,13,Active Shallow Crust,0.0,89.98786,0.0,05/02/4688 +7.4386,47.53349,6568,7,25,14,9,58,3.65,5.0,fr,1439,131,66732,1,13,Active Shallow Crust,0.0,89.98786,0.0,07/25/6568 +7.4386,47.53349,777,10,22,16,35,13,3.65,5.0,fr,1440,15,66732,1,13,Active Shallow Crust,0.0,89.98786,0.0,10/22/0777 +7.4386,47.53349,6957,1,24,2,28,8,3.65,5.0,fr,1441,139,66732,1,13,Active Shallow Crust,0.0,89.98786,0.0,01/24/6957 +7.4386,47.53349,3785,10,4,15,42,51,3.65,5.0,fr,1442,75,66732,1,13,Active Shallow Crust,0.0,89.98786,0.0,10/04/3785 +7.4386,47.53349,798,5,19,20,3,57,3.65,5.0,fr,1443,15,66732,1,13,Active Shallow Crust,0.0,89.98786,0.0,05/19/0798 +7.4386,47.53349,2883,12,4,22,34,44,3.65,5.0,fr,1444,57,66732,1,13,Active Shallow Crust,0.0,89.98786,0.0,12/04/2883 +7.4386,47.53349,2663,10,16,15,27,6,3.65,5.0,fr,1445,53,66732,1,13,Active Shallow Crust,0.0,89.98786,0.0,10/16/2663 +7.4386,47.53349,872,2,1,20,21,34,3.65,15.0,fr,1446,17,66733,1,2,Active Shallow Crust,0.0,89.98786,0.0,02/01/0872 +7.4386,47.53349,8127,12,16,0,57,9,3.65,15.0,fr,1447,162,66733,1,2,Active Shallow Crust,0.0,89.98786,0.0,12/16/8127 +7.4386,47.53349,4975,6,1,20,52,26,3.65,27.5,fr,1448,99,66734,1,2,Active Shallow Crust,0.0,89.98786,0.0,06/01/4975 +7.4386,47.53349,8404,11,24,10,50,2,3.65,27.5,fr,1449,168,66734,1,2,Active Shallow Crust,0.0,89.98786,0.0,11/24/8404 +7.4386,47.53349,7224,1,17,0,25,47,3.65,5.0,fr,1450,144,66735,1,4,Active Shallow Crust,240.0021,58.01256,0.0,01/17/7224 +7.4386,47.53349,1009,3,5,6,5,57,3.65,5.0,fr,1451,20,66735,1,4,Active Shallow Crust,240.0021,58.01256,0.0,03/05/1009 +7.4386,47.53349,7578,5,26,8,23,9,3.65,5.0,fr,1452,151,66735,1,4,Active Shallow Crust,240.0021,58.01256,0.0,05/26/7578 +7.4386,47.53349,7445,4,16,12,3,18,3.65,5.0,fr,1453,148,66735,1,4,Active Shallow Crust,240.0021,58.01256,0.0,04/16/7445 +7.4386,47.53349,89,3,25,21,45,18,3.65,5.0,fr,1454,1,66738,1,2,Active Shallow Crust,0.0,89.98772,-90.0,03/25/0089 +7.4386,47.53349,6817,10,3,19,15,41,3.65,5.0,fr,1455,136,66738,1,2,Active Shallow Crust,0.0,89.98772,-90.0,10/03/6817 +7.4386,47.53349,1845,5,10,5,6,51,3.65,5.0,fr,1456,36,66741,1,3,Active Shallow Crust,128.9001,89.96355,0.0,05/10/1845 +7.4386,47.53349,7797,11,18,16,6,41,3.65,5.0,fr,1457,155,66741,1,3,Active Shallow Crust,128.9001,89.96355,0.0,11/18/7797 +7.4386,47.53349,9208,8,21,19,36,41,3.65,5.0,fr,1458,184,66741,1,3,Active Shallow Crust,128.9001,89.96355,0.0,08/21/9208 +7.4386,47.53349,1006,11,28,5,3,11,3.65,15.0,fr,1459,20,66742,1,3,Active Shallow Crust,128.9001,89.96355,0.0,11/28/1006 +7.4386,47.53349,5367,4,30,1,59,49,3.65,15.0,fr,1460,107,66742,1,3,Active Shallow Crust,128.9001,89.96355,0.0,04/30/5367 +7.4386,47.53349,7461,1,18,2,22,53,3.65,15.0,fr,1461,149,66742,1,3,Active Shallow Crust,128.9001,89.96355,0.0,01/18/7461 +7.4386,47.53349,9610,11,26,19,31,40,3.75,5.0,fr,1462,192,66744,1,5,Active Shallow Crust,0.0,89.98918,0.0,11/26/9610 +7.4386,47.53349,5928,7,17,5,53,54,3.75,5.0,fr,1463,118,66744,1,5,Active Shallow Crust,0.0,89.98918,0.0,07/17/5928 +7.4386,47.53349,3875,8,11,18,54,27,3.75,5.0,fr,1464,77,66744,1,5,Active Shallow Crust,0.0,89.98918,0.0,08/11/3875 +7.4386,47.53349,4185,3,9,0,20,36,3.75,5.0,fr,1465,83,66744,1,5,Active Shallow Crust,0.0,89.98918,0.0,03/09/4185 +7.4386,47.53349,5538,6,11,21,10,1,3.75,5.0,fr,1466,110,66744,1,5,Active Shallow Crust,0.0,89.98918,0.0,06/11/5538 +7.4386,47.53349,6920,2,26,23,15,57,3.75,15.0,fr,1467,138,66745,1,4,Active Shallow Crust,0.0,89.98918,0.0,02/26/6920 +7.4386,47.53349,1937,7,27,15,39,28,3.75,15.0,fr,1468,38,66745,1,4,Active Shallow Crust,0.0,89.98918,0.0,07/27/1937 +7.4386,47.53349,3153,8,9,7,20,52,3.75,15.0,fr,1469,63,66745,1,4,Active Shallow Crust,0.0,89.98918,0.0,08/09/3153 +7.4386,47.53349,9338,6,17,15,54,14,3.75,15.0,fr,1470,186,66745,1,4,Active Shallow Crust,0.0,89.98918,0.0,06/17/9338 +7.4386,47.53349,7535,6,20,3,4,44,3.75,27.5,fr,1471,150,66746,1,1,Active Shallow Crust,0.0,89.98918,0.0,06/20/7535 +7.4386,47.53349,781,5,5,21,46,24,3.75,5.0,fr,1472,15,66747,1,2,Active Shallow Crust,240.0084,58.01786,0.0,05/05/0781 +7.4386,47.53349,3826,8,12,14,10,48,3.75,5.0,fr,1473,76,66747,1,2,Active Shallow Crust,240.0084,58.01786,0.0,08/12/3826 +7.4386,47.53349,111,1,18,13,43,57,3.75,5.0,fr,1474,2,66750,1,1,Active Shallow Crust,0.0,89.98906,-90.0,01/18/0111 +7.4386,47.53349,6692,10,27,0,58,53,3.75,15.0,fr,1475,133,66751,1,1,Active Shallow Crust,0.0,89.98906,-90.0,10/27/6692 +7.4386,47.53349,9177,4,25,21,53,19,3.75,27.5,fr,1476,183,66752,1,1,Active Shallow Crust,0.0,89.98906,-90.0,04/25/9177 +7.4386,47.53349,4734,4,25,0,23,21,3.75,5.0,fr,1477,94,66753,1,1,Active Shallow Crust,128.897,89.96751,0.0,04/25/4734 +7.4386,47.53349,6018,3,16,3,34,51,3.85,5.0,fr,1478,120,66756,1,7,Active Shallow Crust,0.0,89.99036,0.0,03/16/6018 +7.4386,47.53349,3292,3,9,14,46,46,3.85,5.0,fr,1479,65,66756,1,7,Active Shallow Crust,0.0,89.99036,0.0,03/09/3292 +7.4386,47.53349,3859,4,8,5,47,26,3.85,5.0,fr,1480,77,66756,1,7,Active Shallow Crust,0.0,89.99036,0.0,04/08/3859 +7.4386,47.53349,1964,11,6,3,25,2,3.85,5.0,fr,1481,39,66756,1,7,Active Shallow Crust,0.0,89.99036,0.0,11/06/1964 +7.4386,47.53349,4502,1,17,19,28,1,3.85,5.0,fr,1482,90,66756,1,7,Active Shallow Crust,0.0,89.99036,0.0,01/17/4502 +7.4386,47.53349,8961,11,14,3,58,44,3.85,5.0,fr,1483,179,66756,1,7,Active Shallow Crust,0.0,89.99036,0.0,11/14/8961 +7.4386,47.53349,5361,11,26,9,14,58,3.85,5.0,fr,1484,107,66756,1,7,Active Shallow Crust,0.0,89.99036,0.0,11/26/5361 +7.4386,47.53349,8374,2,21,6,6,10,3.85,15.0,fr,1485,167,66757,1,4,Active Shallow Crust,0.0,89.99036,0.0,02/21/8374 +7.4386,47.53349,9621,9,24,5,16,8,3.85,15.0,fr,1486,192,66757,1,4,Active Shallow Crust,0.0,89.99036,0.0,09/24/9621 +7.4386,47.53349,4984,10,28,22,36,12,3.85,15.0,fr,1487,99,66757,1,4,Active Shallow Crust,0.0,89.99036,0.0,10/28/4984 +7.4386,47.53349,4556,2,14,3,7,33,3.85,15.0,fr,1488,91,66757,1,4,Active Shallow Crust,0.0,89.99036,0.0,02/14/4556 +7.4386,47.53349,3448,5,4,12,40,20,3.85,27.5,fr,1489,68,66758,1,2,Active Shallow Crust,0.0,89.99036,0.0,05/04/3448 +7.4386,47.53349,5262,9,8,10,0,38,3.85,27.5,fr,1490,105,66758,1,2,Active Shallow Crust,0.0,89.99036,0.0,09/08/5262 +7.4386,47.53349,6957,9,22,20,31,38,3.85,15.0,fr,1491,139,66763,1,1,Active Shallow Crust,0.0,89.99025,-90.0,09/22/6957 +7.4386,47.53349,7218,8,17,8,2,49,3.85,5.0,fr,1492,144,66765,1,1,Active Shallow Crust,128.8948,89.99518,0.0,08/17/7218 +7.4386,47.53349,1390,1,1,7,32,33,3.95,5.0,fr,1493,27,66768,1,7,Active Shallow Crust,0.0,89.99141,0.0,01/01/1390 +7.4386,47.53349,2834,1,3,9,15,16,3.95,5.0,fr,1494,56,66768,1,7,Active Shallow Crust,0.0,89.99141,0.0,01/03/2834 +7.4386,47.53349,1212,9,17,1,27,58,3.95,5.0,fr,1495,24,66768,1,7,Active Shallow Crust,0.0,89.99141,0.0,09/17/1212 +7.4386,47.53349,8885,11,20,23,56,7,3.95,5.0,fr,1496,177,66768,1,7,Active Shallow Crust,0.0,89.99141,0.0,11/20/8885 +7.4386,47.53349,1674,8,3,2,42,1,3.95,5.0,fr,1497,33,66768,1,7,Active Shallow Crust,0.0,89.99141,0.0,08/03/1674 +7.4386,47.53349,4553,10,7,1,57,57,3.95,5.0,fr,1498,91,66768,1,7,Active Shallow Crust,0.0,89.99141,0.0,10/07/4553 +7.4386,47.53349,2068,9,11,17,23,25,3.95,5.0,fr,1499,41,66768,1,7,Active Shallow Crust,0.0,89.99141,0.0,09/11/2068 +7.4386,47.53349,8536,7,25,10,58,49,3.95,27.5,fr,1500,170,66770,1,1,Active Shallow Crust,0.0,89.99141,0.0,07/25/8536 +7.4386,47.53349,1218,3,15,19,35,44,3.95,5.0,fr,1501,24,66771,1,1,Active Shallow Crust,240.0205,58.0048,0.0,03/15/1218 +7.4386,47.53349,2801,3,7,0,33,47,3.95,5.0,fr,1502,56,66774,1,2,Active Shallow Crust,0.0,89.99131,-90.0,03/07/2801 +7.4386,47.53349,9205,2,27,4,35,28,3.95,5.0,fr,1503,184,66774,1,2,Active Shallow Crust,0.0,89.99131,-90.0,02/27/9205 +7.4386,47.53349,4138,5,5,6,9,56,3.95,15.0,fr,1504,82,66778,1,1,Active Shallow Crust,128.8993,89.99356,0.0,05/05/4138 +7.4386,47.53349,4653,12,17,17,49,38,4.05,5.0,fr,1505,93,66780,1,3,Active Shallow Crust,0.0,89.98851,0.0,12/17/4653 +7.4386,47.53349,7822,12,5,4,25,19,4.05,5.0,fr,1506,156,66780,1,3,Active Shallow Crust,0.0,89.98851,0.0,12/05/7822 +7.4386,47.53349,5129,3,1,19,48,10,4.05,5.0,fr,1507,102,66780,1,3,Active Shallow Crust,0.0,89.98851,0.0,03/01/5129 +7.4386,47.53349,9615,6,22,5,12,13,4.05,5.0,fr,1508,192,66783,1,3,Active Shallow Crust,240.0068,58.00513,0.0,06/22/9615 +7.4386,47.53349,7486,2,24,0,7,54,4.05,5.0,fr,1509,149,66783,1,3,Active Shallow Crust,240.0068,58.00513,0.0,02/24/7486 +7.4386,47.53349,9469,12,7,16,31,41,4.05,5.0,fr,1510,189,66783,1,3,Active Shallow Crust,240.0068,58.00513,0.0,12/07/9469 +7.4386,47.53349,9727,3,17,17,11,7,4.05,15.0,fr,1511,194,66784,1,1,Active Shallow Crust,240.0068,58.0051,0.0,03/17/9727 +7.4386,47.53349,5375,5,8,3,41,35,4.05,5.0,fr,1512,107,66786,1,1,Active Shallow Crust,0.0,89.98838,-90.0,05/08/5375 +7.4386,47.53349,1573,12,12,16,0,53,4.05,5.0,fr,1513,31,66789,1,1,Active Shallow Crust,128.891,89.99234,0.0,12/12/1573 +7.4386,47.53349,3333,11,30,12,42,35,4.15,5.0,fr,1514,66,66792,1,1,Active Shallow Crust,0.0,89.98976,0.0,11/30/3333 +7.4386,47.53349,1191,11,30,4,46,35,4.15,15.0,fr,1515,23,66793,1,3,Active Shallow Crust,0.0,89.98976,0.0,11/30/1191 +7.4386,47.53349,1974,1,30,21,26,41,4.15,15.0,fr,1516,39,66793,1,3,Active Shallow Crust,0.0,89.98976,0.0,01/30/1974 +7.4386,47.53349,7804,1,25,3,17,15,4.15,15.0,fr,1517,156,66793,1,3,Active Shallow Crust,0.0,89.98976,0.0,01/25/7804 +7.4386,47.53349,6252,10,28,22,9,50,4.15,5.0,fr,1518,125,66795,1,1,Active Shallow Crust,240.0086,57.99707,0.0,10/28/6252 +7.4386,47.53349,4534,9,26,4,16,23,4.15,15.0,fr,1519,90,66802,1,1,Active Shallow Crust,128.8984,89.99318,0.0,09/26/4534 +7.4386,47.53349,699,7,30,8,19,58,4.25,5.0,fr,1520,13,66804,1,4,Active Shallow Crust,0.0,89.99088,0.0,07/30/0699 +7.4386,47.53349,8214,1,2,12,49,41,4.25,5.0,fr,1521,164,66804,1,4,Active Shallow Crust,0.0,89.99088,0.0,01/02/8214 +7.4386,47.53349,275,12,17,8,49,31,4.25,5.0,fr,1522,5,66804,1,4,Active Shallow Crust,0.0,89.99088,0.0,12/17/0275 +7.4386,47.53349,1190,8,22,3,11,0,4.25,5.0,fr,1523,23,66804,1,4,Active Shallow Crust,0.0,89.99088,0.0,08/22/1190 +7.4386,47.53349,8080,3,28,13,16,16,4.25,15.0,fr,1524,161,66805,1,5,Active Shallow Crust,0.0,89.99088,0.0,03/28/8080 +7.4386,47.53349,2472,8,20,21,20,31,4.25,15.0,fr,1525,49,66805,1,5,Active Shallow Crust,0.0,89.99088,0.0,08/20/2472 +7.4386,47.53349,6788,5,14,1,41,11,4.25,15.0,fr,1526,135,66805,1,5,Active Shallow Crust,0.0,89.99088,0.0,05/14/6788 +7.4386,47.53349,1824,1,23,17,42,49,4.25,15.0,fr,1527,36,66805,1,5,Active Shallow Crust,0.0,89.99088,0.0,01/23/1824 +7.4386,47.53349,357,7,3,18,52,13,4.25,15.0,fr,1528,7,66805,1,5,Active Shallow Crust,0.0,89.99088,0.0,07/03/0357 +7.4386,47.53349,7067,5,19,1,28,16,4.25,5.0,fr,1529,141,66810,1,1,Active Shallow Crust,0.0,89.99077,-90.0,05/19/7067 +7.4386,47.53349,7599,6,14,8,44,20,4.35,5.0,fr,1530,151,66816,1,5,Active Shallow Crust,0.0,89.98916,0.0,06/14/7599 +7.4386,47.53349,1688,6,8,13,48,23,4.35,5.0,fr,1531,33,66816,1,5,Active Shallow Crust,0.0,89.98916,0.0,06/08/1688 +7.4386,47.53349,9379,8,7,11,15,55,4.35,5.0,fr,1532,187,66816,1,5,Active Shallow Crust,0.0,89.98916,0.0,08/07/9379 +7.4386,47.53349,7761,9,5,19,2,26,4.35,5.0,fr,1533,155,66816,1,5,Active Shallow Crust,0.0,89.98916,0.0,09/05/7761 +7.4386,47.53349,4688,2,3,4,11,44,4.35,5.0,fr,1534,93,66816,1,5,Active Shallow Crust,0.0,89.98916,0.0,02/03/4688 +7.4386,47.53349,6958,9,1,1,8,13,4.35,15.0,fr,1535,139,66817,1,2,Active Shallow Crust,0.0,89.98916,0.0,09/01/6958 +7.4386,47.53349,7071,12,27,7,48,55,4.35,15.0,fr,1536,141,66817,1,2,Active Shallow Crust,0.0,89.98916,0.0,12/27/7071 +7.4386,47.53349,4875,11,19,23,57,20,4.45,5.0,fr,1537,97,66828,1,2,Active Shallow Crust,0.0,89.99033,0.0,11/19/4875 +7.4386,47.53349,166,10,15,22,52,16,4.45,5.0,fr,1538,3,66828,1,2,Active Shallow Crust,0.0,89.99033,0.0,10/15/0166 +7.4386,47.53349,4507,9,25,6,52,18,4.45,15.0,fr,1539,90,66829,1,2,Active Shallow Crust,0.0,89.99033,0.0,09/25/4507 +7.4386,47.53349,1830,10,1,6,45,39,4.45,15.0,fr,1540,36,66829,1,2,Active Shallow Crust,0.0,89.99033,0.0,10/01/1830 +7.4386,47.53349,3126,10,31,7,11,6,4.45,15.0,fr,1541,62,66838,1,1,Active Shallow Crust,128.8915,89.99397,0.0,10/31/3126 +7.4386,47.53349,3112,7,5,19,35,34,4.55,5.0,fr,1542,62,66840,1,1,Active Shallow Crust,0.0,89.98923,0.0,07/05/3112 +7.4386,47.53349,2025,1,20,21,21,4,4.55,27.5,fr,1543,40,66842,1,1,Active Shallow Crust,0.0,89.98923,0.0,01/20/2025 +7.4386,47.53349,2488,7,11,23,39,15,4.55,5.0,fr,1544,49,66849,1,1,Active Shallow Crust,128.8938,89.9857,0.0,07/11/2488 +7.4386,47.53349,7975,10,14,23,40,58,4.65,5.0,fr,1545,159,66855,1,1,Active Shallow Crust,240.011,57.99437,0.0,10/14/7975 +7.4386,47.53349,8545,5,22,3,22,57,4.75,5.0,fr,1546,170,66864,1,3,Active Shallow Crust,0.0,89.98974,0.0,05/22/8545 +7.4386,47.53349,3394,6,18,0,16,5,4.75,5.0,fr,1547,67,66864,1,3,Active Shallow Crust,0.0,89.98974,0.0,06/18/3394 +7.4386,47.53349,1276,10,20,1,15,13,4.75,5.0,fr,1548,25,66864,1,3,Active Shallow Crust,0.0,89.98974,0.0,10/20/1276 +7.4386,47.53349,5900,7,9,3,18,8,4.75,15.0,fr,1549,117,66865,1,1,Active Shallow Crust,0.0,89.98974,0.0,07/09/5900 +7.4386,47.53349,8746,5,30,8,13,9,4.85,5.0,fr,1550,174,66876,1,2,Active Shallow Crust,0.0,89.98933,0.0,05/30/8746 +7.4386,47.53349,7510,7,15,2,33,26,4.85,5.0,fr,1551,150,66876,1,2,Active Shallow Crust,0.0,89.98933,0.0,07/15/7510 +7.4386,47.53349,4361,9,11,20,27,0,4.85,5.0,fr,1552,87,66882,1,1,Active Shallow Crust,0.0,89.99075,-90.0,09/11/4361 +7.4386,47.53349,6019,3,5,0,24,56,4.95,5.0,fr,1553,120,66888,1,1,Active Shallow Crust,0.0,89.99049,0.0,03/05/6019 +7.4386,47.53349,1605,8,15,4,40,31,4.95,15.0,fr,1554,32,66892,1,1,Active Shallow Crust,240.0126,58.00436,0.0,08/15/1605 +7.4386,47.53349,9644,2,24,10,41,21,4.95,15.0,fr,1555,192,66898,1,2,Active Shallow Crust,128.8894,89.98989,0.0,02/24/9644 +7.4386,47.53349,3625,11,2,10,51,19,4.95,15.0,fr,1556,72,66898,1,2,Active Shallow Crust,128.8894,89.98989,0.0,11/02/3625 +7.4386,47.53349,6859,7,12,10,4,30,5.05,5.0,fr,1557,137,66900,1,1,Active Shallow Crust,0.0,89.99031,0.0,07/12/6859 +7.4386,47.53349,7817,2,27,14,1,17,5.05,15.0,fr,1558,156,66901,1,1,Active Shallow Crust,0.0,89.99031,0.0,02/27/7817 +7.4386,47.53349,5243,4,25,0,53,44,5.05,27.5,fr,1559,104,66908,1,1,Active Shallow Crust,0.0,89.9902,-90.0,04/25/5243 +7.4386,47.53349,1833,7,28,10,51,47,5.05,27.5,fr,1560,36,66911,1,1,Active Shallow Crust,128.8853,89.99021,0.0,07/28/1833 +7.4386,47.53349,5661,3,23,5,25,24,5.25,5.0,fr,1561,113,66924,1,1,Active Shallow Crust,0.0,89.99038,0.0,03/23/5661 +7.4386,47.53349,2671,2,7,16,29,36,5.65,5.0,fr,1562,53,66972,1,1,Active Shallow Crust,0.0,89.99029,0.0,02/07/2671 +7.4386,47.53349,9719,11,2,17,31,53,5.75,5.0,fr,1563,194,66987,1,1,Active Shallow Crust,240.0397,58.0021,0.0,11/02/9719 +7.4386,47.53349,7890,10,8,10,47,49,5.95,5.0,fr,1564,157,67008,1,1,Active Shallow Crust,0.0,89.99011,0.0,10/08/7890 +7.438601,47.53349,5645,7,9,8,6,3,6.05,5.296268,fr,1565,112,67026,1,1,Active Shallow Crust,0.0,89.99011,-90.0,07/09/5645 +7.4386,47.53349,6382,1,26,11,47,32,6.35,15.0,fr,1566,127,67060,1,1,Active Shallow Crust,240.0836,58.00019,0.0,01/26/6382 +-1.01298,46.75429,6803,8,27,12,33,27,3.55,5.0,fr,1567,136,67200,1,1,Active Shallow Crust,0.0,89.98964,0.0,08/27/6803 +-1.01298,46.75429,2257,3,28,2,19,7,3.55,15.0,fr,1568,45,67201,1,1,Active Shallow Crust,0.0,89.98964,0.0,03/28/2257 +-1.01298,46.75429,8849,12,5,3,2,46,3.55,27.5,fr,1569,176,67202,1,1,Active Shallow Crust,0.0,89.98964,0.0,12/05/8849 +-1.01298,46.75429,8267,12,15,20,38,5,3.55,5.0,fr,1570,165,67209,1,1,Active Shallow Crust,128.8959,89.99396,0.0,12/15/8267 +-1.01298,46.75429,2265,2,19,15,10,11,3.65,5.0,fr,1571,45,67212,1,3,Active Shallow Crust,0.0,89.99076,0.0,02/19/2265 +-1.01298,46.75429,3686,3,30,22,56,7,3.65,5.0,fr,1572,73,67212,1,3,Active Shallow Crust,0.0,89.99076,0.0,03/30/3686 +-1.01298,46.75429,4228,5,19,3,4,50,3.65,5.0,fr,1573,84,67212,1,3,Active Shallow Crust,0.0,89.99076,0.0,05/19/4228 +-1.01298,46.75429,2012,11,13,11,20,3,3.65,15.0,fr,1574,40,67213,1,1,Active Shallow Crust,0.0,89.99076,0.0,11/13/2012 +-1.01298,46.75429,3399,8,13,9,17,6,3.65,27.5,fr,1575,67,67214,1,1,Active Shallow Crust,0.0,89.99076,0.0,08/13/3399 +-1.01298,46.75429,1683,10,6,12,3,5,3.65,5.0,fr,1576,33,67215,1,1,Active Shallow Crust,240.0012,58.0128,0.0,10/06/1683 +-1.01298,46.75429,5230,7,30,5,10,46,3.75,5.0,fr,1577,104,67224,1,1,Active Shallow Crust,0.0,89.99039,0.0,07/30/5230 +-1.01298,46.75429,5514,7,1,7,20,20,3.75,15.0,fr,1578,110,67225,1,1,Active Shallow Crust,0.0,89.99039,0.0,07/01/5514 +-1.01298,46.75429,9402,12,10,10,42,35,3.85,5.0,fr,1579,188,67236,1,1,Active Shallow Crust,0.0,89.99022,0.0,12/10/9402 +-1.01298,46.75429,1677,7,27,16,9,26,3.85,5.0,fr,1580,33,67239,1,1,Active Shallow Crust,240.0108,57.99788,0.0,07/27/1677 +-1.01298,46.75429,9342,8,25,5,42,17,4.05,5.0,fr,1581,186,67260,1,1,Active Shallow Crust,0.0,89.99029,0.0,08/25/9342 +-1.01298,46.75429,8715,1,6,14,18,7,4.15,5.0,fr,1582,174,67275,1,1,Active Shallow Crust,240.0086,57.99726,0.0,01/06/8715 +-1.01298,46.75429,1476,4,25,12,53,23,4.25,15.0,fr,1583,29,67285,1,2,Active Shallow Crust,0.0,89.98997,0.0,04/25/1476 +-1.01298,46.75429,998,6,3,8,38,22,4.25,15.0,fr,1584,19,67285,1,2,Active Shallow Crust,0.0,89.98997,0.0,06/03/0998 +-1.01298,46.75429,5342,9,26,14,24,16,4.25,5.0,fr,1585,106,67287,1,1,Active Shallow Crust,240.0076,57.99404,0.0,09/26/5342 +-1.01298,46.75429,8003,2,13,18,48,14,4.25,15.0,fr,1586,160,67288,1,2,Active Shallow Crust,240.0076,57.99404,0.0,02/13/8003 +-1.01298,46.75429,5585,1,19,18,28,57,4.25,15.0,fr,1587,111,67288,1,2,Active Shallow Crust,240.0076,57.99404,0.0,01/19/5585 +-1.01298,46.75429,934,10,10,9,6,10,4.45,27.5,fr,1588,18,67316,1,1,Active Shallow Crust,0.0,89.99008,-90.0,10/10/0934 +-1.01298,46.75429,8570,12,13,4,33,46,4.65,5.0,fr,1589,171,67332,1,1,Active Shallow Crust,0.0,89.98978,0.0,12/13/8570 +-1.01298,46.75429,776,2,7,14,55,15,4.85,5.0,fr,1590,15,67356,1,1,Active Shallow Crust,0.0,89.98994,0.0,02/07/0776 +-1.01298,46.75429,7770,7,15,2,3,20,5.05,5.0,fr,1591,155,67383,1,1,Active Shallow Crust,240.0222,57.99757,0.0,07/15/7770 +-1.01298,46.75429,9233,3,23,15,52,24,5.15,5.0,fr,1592,184,67392,1,1,Active Shallow Crust,0.0,89.98987,0.0,03/23/9233 +-1.01298,46.75429,1049,10,4,4,41,28,5.45,5.0,fr,1593,20,67434,1,1,Active Shallow Crust,0.0,89.99,-90.0,10/04/1049 +-1.01298,46.75429,5880,2,11,4,19,31,5.45,5.0,fr,1594,117,67437,1,1,Active Shallow Crust,128.8786,89.98898,0.0,02/11/5880 +-1.01298,46.75429,2809,11,30,23,55,9,5.55,15.0,fr,1595,56,67444,1,1,Active Shallow Crust,240.0329,57.99957,0.0,11/30/2809 +-1.01298,46.75429,2144,7,8,1,52,32,5.75,5.0,fr,1596,42,67464,1,1,Active Shallow Crust,0.0,89.98998,0.0,07/08/2144 +-1.01298,46.75429,5467,2,27,7,58,44,5.85,5.0,fr,1597,109,67476,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/27/5467 +-1.01298,46.75429,4156,3,30,16,26,5,6.05,15.0,fr,1598,83,67507,1,1,Active Shallow Crust,0.0,89.98997,-90.0,03/30/4156 +2.41289,46.45634,7980,11,2,20,58,24,3.75,5.0,fr,1599,159,67704,1,2,Active Shallow Crust,0.0,89.98896,0.0,11/02/7980 +2.41289,46.45634,6347,7,1,2,14,9,3.75,5.0,fr,1600,126,67704,1,2,Active Shallow Crust,0.0,89.98896,0.0,07/01/6347 +2.41289,46.45634,4184,4,1,20,27,20,3.85,5.0,fr,1601,83,67722,1,1,Active Shallow Crust,0.0,89.99005,-90.0,04/01/4184 +2.41289,46.45634,5732,1,16,0,45,15,4.15,15.0,fr,1602,114,67753,1,1,Active Shallow Crust,0.0,89.98956,0.0,01/16/5732 +2.41289,46.45634,2985,5,18,21,50,38,4.85,27.5,fr,1603,59,67838,1,1,Active Shallow Crust,0.0,89.98989,0.0,05/18/2985 +2.41289,46.45634,6379,12,11,9,23,37,5.05,15.0,fr,1604,127,67861,1,1,Active Shallow Crust,0.0,89.99011,0.0,12/11/6379 +4.23573,42.92706,2595,9,27,15,36,56,3.85,5.0,fr,1605,51,68196,1,1,Active Shallow Crust,0.0,89.98955,0.0,09/27/2595 +4.23573,42.92706,8940,8,22,12,48,0,4.05,5.0,fr,1606,178,68220,1,1,Active Shallow Crust,0.0,89.9917,0.0,08/22/8940 +4.23573,42.92706,2904,12,8,5,9,44,4.05,5.0,fr,1607,58,68226,1,1,Active Shallow Crust,0.0,89.9916,-90.0,12/08/2904 +4.23573,42.92706,1656,9,19,12,40,41,4.35,5.0,fr,1608,33,68256,1,1,Active Shallow Crust,0.0,89.99118,0.0,09/19/1656 +8.39152,48.91208,7796,10,12,11,4,26,3.55,5.0,fr,1609,155,68640,1,1,Active Shallow Crust,0.0,89.98675,0.0,10/12/7796 +8.39152,48.91208,2777,9,6,22,53,16,3.55,15.0,fr,1610,55,68641,1,1,Active Shallow Crust,0.0,89.98675,0.0,09/06/2777 +8.39152,48.91208,7533,7,24,4,49,20,3.55,15.0,fr,1611,150,68644,1,1,Active Shallow Crust,240.0112,57.99728,0.0,07/24/7533 +8.39152,48.91208,7709,4,25,6,41,55,3.55,27.5,fr,1612,154,68645,1,1,Active Shallow Crust,240.0112,57.99718,0.0,04/25/7709 +8.39152,48.91208,8861,5,16,1,9,45,3.55,5.0,fr,1613,177,68646,1,1,Active Shallow Crust,0.0,89.9866,-90.0,05/16/8861 +8.39152,48.91208,604,1,8,17,51,4,3.55,5.0,fr,1614,12,68649,1,1,Active Shallow Crust,128.8942,89.99337,0.0,01/08/0604 +8.39152,48.91208,8376,1,7,9,1,10,3.65,5.0,fr,1615,167,68652,1,2,Active Shallow Crust,0.0,89.98819,0.0,01/07/8376 +8.39152,48.91208,3404,3,20,23,52,35,3.65,5.0,fr,1616,68,68652,1,2,Active Shallow Crust,0.0,89.98819,0.0,03/20/3404 +8.39152,48.91208,758,8,3,21,17,13,3.65,15.0,fr,1617,15,68653,1,2,Active Shallow Crust,0.0,89.98819,0.0,08/03/0758 +8.39152,48.91208,7,2,23,20,17,4,3.65,15.0,fr,1618,0,68653,1,2,Active Shallow Crust,0.0,89.98819,0.0,02/23/0007 +8.39152,48.91208,4544,4,1,18,21,7,3.75,15.0,fr,1619,90,68665,1,1,Active Shallow Crust,0.0,89.98947,0.0,04/01/4544 +8.39152,48.91208,5621,2,23,19,27,34,3.85,5.0,fr,1620,112,68676,1,2,Active Shallow Crust,0.0,89.99062,0.0,02/23/5621 +8.39152,48.91208,3388,5,6,23,50,35,3.85,5.0,fr,1621,67,68676,1,2,Active Shallow Crust,0.0,89.99062,0.0,05/06/3388 +8.39152,48.91208,7812,9,3,9,46,10,3.95,5.0,fr,1622,156,68688,1,1,Active Shallow Crust,0.0,89.99164,0.0,09/03/7812 +8.39152,48.91208,5067,1,30,6,3,4,3.95,5.0,fr,1623,101,68691,1,1,Active Shallow Crust,240.021,58.00389,0.0,01/30/5067 +8.39152,48.91208,4426,5,19,12,46,40,4.05,5.0,fr,1624,88,68703,1,1,Active Shallow Crust,240.0055,58.00635,0.0,05/19/4426 +8.39152,48.91208,9633,9,2,12,19,52,4.15,5.0,fr,1625,192,68712,1,2,Active Shallow Crust,0.0,89.98671,0.0,09/02/9633 +8.39152,48.91208,3699,1,17,10,37,14,4.15,5.0,fr,1626,73,68712,1,2,Active Shallow Crust,0.0,89.98671,0.0,01/17/3699 +8.39152,48.91208,530,9,16,18,26,14,4.15,5.0,fr,1627,10,68721,1,1,Active Shallow Crust,128.8977,89.99335,0.0,09/16/0530 +8.39152,48.91208,2869,8,27,21,59,6,4.25,5.0,fr,1628,57,68724,1,1,Active Shallow Crust,0.0,89.98816,0.0,08/27/2869 +8.39152,48.91208,9463,4,21,6,0,37,4.25,15.0,fr,1629,189,68725,1,1,Active Shallow Crust,0.0,89.98816,0.0,04/21/9463 +8.39152,48.91208,4260,12,29,1,12,26,4.25,15.0,fr,1630,85,68734,1,1,Active Shallow Crust,128.8945,89.98103,0.0,12/29/4260 +8.39152,48.91208,8001,11,7,11,53,20,4.35,5.0,fr,1631,160,68736,1,2,Active Shallow Crust,0.0,89.98945,0.0,11/07/8001 +8.39152,48.91208,2136,10,23,12,22,33,4.35,5.0,fr,1632,42,68736,1,2,Active Shallow Crust,0.0,89.98945,0.0,10/23/2136 +8.39152,48.91208,9311,5,6,3,35,10,4.35,15.0,fr,1633,186,68743,1,1,Active Shallow Crust,0.0,89.98933,-90.0,05/06/9311 +8.39152,48.91208,1109,5,11,0,34,37,4.55,5.0,fr,1634,22,68760,1,1,Active Shallow Crust,0.0,89.99162,0.0,05/11/1109 +8.39152,48.91208,6912,11,15,19,48,26,4.65,5.0,fr,1635,138,68772,1,1,Active Shallow Crust,0.0,89.98879,0.0,11/15/6912 +8.39152,48.91208,9424,12,26,14,6,39,4.65,15.0,fr,1636,188,68773,1,1,Active Shallow Crust,0.0,89.98879,0.0,12/26/9424 +3.21,51.43465,6443,6,22,17,54,12,3.55,15.0,fr,1637,128,69601,1,1,Active Shallow Crust,0.0,89.99057,0.0,06/22/6443 +3.21,51.43465,5742,7,11,22,31,23,3.55,27.5,fr,1638,114,69608,1,1,Active Shallow Crust,0.0,89.99046,-90.0,07/11/5742 +3.21,51.43465,1406,8,7,14,39,31,5.25,15.0,fr,1639,28,69805,1,1,Active Shallow Crust,0.0,89.98978,0.0,08/07/1406 +0.48509,51.61106,86,8,15,16,48,18,3.55,15.0,fr,1640,1,70561,1,1,Active Shallow Crust,0.0,89.98982,0.0,08/15/0086 +0.48509,51.61106,7570,11,16,21,58,34,3.75,5.0,fr,1641,151,70587,1,1,Active Shallow Crust,240.009,58.01772,0.0,11/16/7570 +0.48509,51.61106,5433,2,8,2,31,34,3.95,15.0,fr,1642,108,70609,1,2,Active Shallow Crust,359.9999,89.99012,0.0,02/08/5433 +0.48509,51.61106,3396,9,5,7,51,4,3.95,15.0,fr,1643,67,70609,1,2,Active Shallow Crust,359.9999,89.99012,0.0,09/05/3396 +0.48509,51.61106,6063,7,17,23,9,52,3.95,5.0,fr,1644,121,70611,1,1,Active Shallow Crust,240.0206,58.00513,0.0,07/17/6063 +5.4284,42.68726,4074,4,23,22,18,52,3.55,15.0,fr,1645,81,71521,1,1,Active Shallow Crust,0.0,89.99258,0.0,04/23/4074 +5.4284,42.68726,4101,4,2,6,45,55,3.65,5.0,fr,1646,82,71532,1,1,Active Shallow Crust,0.0,89.98679,0.0,04/02/4101 +5.4284,42.68726,4446,11,27,0,3,37,3.85,5.0,fr,1647,88,71565,1,1,Active Shallow Crust,128.8953,89.99475,0.0,11/27/4446 +5.4284,42.68726,2201,8,31,18,5,22,3.95,5.0,fr,1648,44,71568,1,1,Active Shallow Crust,0.0,89.99065,0.0,08/31/2201 +5.4284,42.68726,8413,4,21,23,56,14,4.15,5.0,fr,1649,168,71592,1,1,Active Shallow Crust,0.0,89.98885,0.0,04/21/8413 +-1.4767,48.20002,4599,6,7,17,13,59,3.55,5.0,fr,1650,91,72000,1,1,Active Shallow Crust,0.0,89.98992,0.0,06/07/4599 +-1.4767,48.20002,1564,5,23,0,59,0,3.65,15.0,fr,1651,31,72013,1,1,Active Shallow Crust,0.0,89.98952,0.0,05/23/1564 +-1.4767,48.20002,6819,3,25,10,39,46,3.65,5.0,fr,1652,136,72021,1,1,Active Shallow Crust,128.9004,89.96355,0.0,03/25/6819 +-1.4767,48.20002,3498,10,21,0,29,22,3.75,15.0,fr,1653,69,72025,1,1,Active Shallow Crust,0.0,89.99065,0.0,10/21/3498 +-1.4767,48.20002,8428,11,6,14,30,28,3.85,27.5,fr,1654,168,72038,1,1,Active Shallow Crust,0.0,89.99049,0.0,11/06/8428 +-1.4767,48.20002,7110,2,26,7,44,26,3.85,15.0,fr,1655,142,72040,1,1,Active Shallow Crust,240.0112,57.99783,0.0,02/26/7110 +-1.4767,48.20002,3465,9,30,12,51,5,4.05,5.0,fr,1656,69,72060,1,1,Active Shallow Crust,0.0,89.98961,0.0,09/30/3465 +-1.4767,48.20002,2845,10,12,2,14,15,4.25,5.0,fr,1657,56,72090,1,1,Active Shallow Crust,0.0,89.99013,-90.0,10/12/2845 +-1.4767,48.20002,7733,9,16,6,17,22,4.35,5.0,fr,1658,154,72096,1,1,Active Shallow Crust,0.0,89.98997,0.0,09/16/7733 +-1.4767,48.20002,8031,1,11,12,21,26,4.45,5.0,fr,1659,160,72108,1,1,Active Shallow Crust,0.0,89.98986,0.0,01/11/8031 +-1.4767,48.20002,6708,10,22,17,52,49,4.45,5.0,fr,1660,134,72117,1,1,Active Shallow Crust,128.8918,89.99374,0.0,10/22/6708 +-1.4767,48.20002,6324,3,17,23,3,36,4.75,5.0,fr,1661,126,72144,1,1,Active Shallow Crust,0.0,89.98987,0.0,03/17/6324 +-1.4767,48.20002,2115,8,10,11,20,32,5.35,15.0,fr,1662,42,72220,1,1,Active Shallow Crust,240.0263,57.9981,0.0,08/10/2115 +-6.52268,49.07596,9212,6,23,2,56,30,3.65,5.0,fr,1663,184,72498,1,1,Active Shallow Crust,0.0,89.98809,-90.0,06/23/9212 +9.57023,48.777,7792,5,16,9,24,51,3.55,15.0,fr,1664,155,73441,1,1,Active Shallow Crust,0.0,89.98671,0.0,05/16/7792 +9.57023,48.777,801,5,16,4,10,48,3.65,5.0,fr,1665,16,73452,1,1,Active Shallow Crust,0.0,89.98815,0.0,05/16/0801 +9.57023,48.777,852,6,15,22,40,57,3.75,5.0,fr,1666,17,73464,1,1,Active Shallow Crust,0.0,89.98944,0.0,06/15/0852 +9.57023,48.777,6485,7,26,8,56,47,3.75,27.5,fr,1667,129,73466,1,1,Active Shallow Crust,0.0,89.98944,0.0,07/26/6485 +9.57023,48.777,4884,1,15,0,13,39,3.85,15.0,fr,1668,97,73477,1,1,Active Shallow Crust,0.0,89.99059,0.0,01/15/4884 +9.57023,48.777,4397,9,23,4,11,56,4.05,27.5,fr,1669,87,73502,1,1,Active Shallow Crust,0.0,89.99252,0.0,09/23/4397 +9.57023,48.777,9565,3,20,0,18,6,4.35,5.0,fr,1670,191,73536,1,1,Active Shallow Crust,0.0,89.98942,0.0,03/20/9565 +9.57023,48.777,9605,4,4,1,11,28,4.45,15.0,fr,1671,192,73549,1,1,Active Shallow Crust,0.0,89.99057,0.0,04/04/9605 +9.57023,48.777,519,10,27,9,7,5,5.85,5.0,fr,1672,10,73716,1,1,Active Shallow Crust,0.0,89.98964,0.0,10/27/0519 +6.20972,42.3824,3544,1,22,3,1,1,3.55,5.0,fr,1673,70,73920,1,1,Active Shallow Crust,0.0,89.99255,0.0,01/22/3544 +6.20972,42.3824,9732,11,3,2,32,22,4.05,5.0,fr,1674,194,73980,1,1,Active Shallow Crust,0.0,89.99162,0.0,11/03/9732 +6.20972,42.3824,3964,10,14,9,27,37,4.45,5.0,fr,1675,79,74028,1,1,Active Shallow Crust,0.0,89.98943,0.0,10/14/3964 +6.20972,42.3824,6421,3,30,14,10,2,4.75,5.0,fr,1676,128,74067,1,1,Active Shallow Crust,240.0059,58.00412,0.0,03/30/6421 +-4.70598,48.86081,3169,2,10,20,25,44,3.55,15.0,fr,1677,63,74401,1,1,Active Shallow Crust,0.0,89.98673,0.0,02/10/3169 +-4.70598,48.86081,82,2,6,5,31,25,3.75,5.0,fr,1678,1,74424,1,1,Active Shallow Crust,0.0,89.98946,0.0,02/06/0082 +-4.70598,48.86081,3585,1,27,0,47,21,3.85,5.0,fr,1679,71,74436,1,1,Active Shallow Crust,0.0,89.99061,0.0,01/27/3585 +-4.70598,48.86081,4529,8,11,9,21,59,3.95,15.0,fr,1680,90,74449,1,1,Active Shallow Crust,0.0,89.99163,0.0,08/11/4529 +-4.70598,48.86081,9174,3,4,1,12,12,4.05,5.0,fr,1681,183,74463,1,1,Active Shallow Crust,240.0067,58.00608,0.0,03/04/9174 +-4.70598,48.86081,1270,3,10,23,36,4,4.55,5.0,fr,1682,25,74520,1,2,Active Shallow Crust,0.0,89.98951,0.0,03/10/1270 +-4.70598,48.86081,9289,6,16,8,3,35,4.55,5.0,fr,1683,185,74520,1,2,Active Shallow Crust,0.0,89.98951,0.0,06/16/9289 +-4.70598,48.86081,2567,8,24,16,4,16,5.05,15.0,fr,1684,51,74581,1,1,Active Shallow Crust,0.0,89.99056,0.0,08/24/2567 +-0.10768,48.42991,5210,9,21,15,7,53,3.55,5.0,fr,1685,104,74880,1,2,Active Shallow Crust,0.0,89.98996,0.0,09/21/5210 +-0.10768,48.42991,7587,9,29,1,39,30,3.55,5.0,fr,1686,151,74880,1,2,Active Shallow Crust,0.0,89.98996,0.0,09/29/7587 +-0.10768,48.42991,2266,4,8,15,26,17,3.65,15.0,fr,1687,45,74893,1,1,Active Shallow Crust,0.0,89.99003,0.0,04/08/2266 +-0.10768,48.42991,3872,5,9,2,40,27,3.65,15.0,fr,1688,77,74896,1,1,Active Shallow Crust,240.0013,58.01294,0.0,05/09/3872 +-0.10768,48.42991,6087,2,4,18,12,40,3.65,5.0,fr,1689,121,74898,1,1,Active Shallow Crust,0.0,89.99001,-90.0,02/04/6087 +-0.10768,48.42991,9897,11,17,12,19,27,3.85,5.0,fr,1690,197,74916,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/17/9897 +-0.10768,48.42991,7390,9,10,5,55,47,4.85,5.0,fr,1691,147,75045,1,1,Active Shallow Crust,128.8919,89.989,0.0,09/10/7390 +-0.10768,48.42991,654,8,23,6,21,4,4.85,15.0,fr,1692,13,75046,1,1,Active Shallow Crust,128.8919,89.989,0.0,08/23/0654 +-0.10768,48.42991,9886,3,13,11,19,8,4.95,27.5,fr,1693,197,75053,1,1,Active Shallow Crust,240.0128,58.00465,0.0,03/13/9886 +1.2881,45.84931,8203,11,23,13,46,24,3.55,5.0,fr,1694,164,75360,1,2,Active Shallow Crust,0.0,89.98946,0.0,11/23/8203 +1.2881,45.84931,78,12,21,21,31,18,3.55,5.0,fr,1695,1,75360,1,2,Active Shallow Crust,0.0,89.98946,0.0,12/21/0078 +1.2881,45.84931,6728,9,21,14,18,10,3.85,5.0,fr,1696,134,75396,1,1,Active Shallow Crust,0.0,89.99005,0.0,09/21/6728 +1.2881,45.84931,9508,3,17,1,51,25,3.95,5.0,fr,1697,190,75411,1,1,Active Shallow Crust,240.0196,58.00499,0.0,03/17/9508 +1.2881,45.84931,8730,9,19,21,27,50,3.95,5.0,fr,1698,174,75417,1,1,Active Shallow Crust,128.9005,89.9939,0.0,09/19/8730 +1.2881,45.84931,6167,2,17,9,39,11,4.05,15.0,fr,1699,123,75427,1,1,Active Shallow Crust,0.0,89.99001,-90.0,02/17/6167 +1.2881,45.84931,5907,12,23,16,35,44,4.15,15.0,fr,1700,118,75433,1,1,Active Shallow Crust,0.0,89.99032,0.0,12/23/5907 +1.2881,45.84931,950,10,21,22,29,35,4.55,5.0,fr,1701,18,75480,1,1,Active Shallow Crust,0.0,89.99001,0.0,10/21/0950 +1.2881,45.84931,9362,9,28,14,36,32,5.75,15.0,fr,1702,187,75625,1,1,Active Shallow Crust,0.0,89.98995,0.0,09/28/9362 +0.11198,46.97479,792,8,4,5,57,6,3.55,5.0,fr,1703,15,75840,1,2,Active Shallow Crust,0.0,89.99001,0.0,08/04/0792 +0.11198,46.97479,5940,9,30,23,28,1,3.55,5.0,fr,1704,118,75840,1,2,Active Shallow Crust,0.0,89.99001,0.0,09/30/5940 +0.11198,46.97479,2385,5,23,1,45,3,3.55,15.0,fr,1705,47,75841,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/23/2385 +0.11198,46.97479,1577,11,25,0,37,18,3.55,5.0,fr,1706,31,75843,1,1,Active Shallow Crust,240.0122,57.99818,0.0,11/25/1577 +0.11198,46.97479,1179,11,6,8,56,4,3.65,5.0,fr,1707,23,75852,1,2,Active Shallow Crust,0.0,89.99004,0.0,11/06/1179 +0.11198,46.97479,1812,2,14,15,3,42,3.65,5.0,fr,1708,36,75852,1,2,Active Shallow Crust,0.0,89.99004,0.0,02/14/1812 +0.11198,46.97479,2018,8,9,15,57,46,3.65,5.0,fr,1709,40,75858,1,1,Active Shallow Crust,0.0,89.99001,-90.0,08/09/2018 +0.11198,46.97479,8799,12,6,13,27,44,3.75,5.0,fr,1710,175,75867,1,1,Active Shallow Crust,240.0084,58.01759,0.0,12/06/8799 +0.11198,46.97479,9899,6,10,22,12,50,3.85,5.0,fr,1711,197,75876,1,2,Active Shallow Crust,0.0,89.99003,0.0,06/10/9899 +0.11198,46.97479,2344,8,25,0,19,58,3.85,5.0,fr,1712,46,75876,1,2,Active Shallow Crust,0.0,89.99003,0.0,08/25/2344 +0.11198,46.97479,2390,11,6,1,37,1,3.85,27.5,fr,1713,47,75887,1,1,Active Shallow Crust,128.8956,89.99372,0.0,11/06/2390 +0.11198,46.97479,5970,5,30,8,23,27,3.95,5.0,fr,1714,119,75888,1,2,Active Shallow Crust,0.0,89.99003,0.0,05/30/5970 +0.11198,46.97479,4667,10,9,15,33,30,3.95,5.0,fr,1715,93,75888,1,2,Active Shallow Crust,0.0,89.99003,0.0,10/09/4667 +0.11198,46.97479,9449,2,13,4,10,26,3.95,15.0,fr,1716,188,75892,1,1,Active Shallow Crust,240.0199,58.00497,0.0,02/13/9449 +0.11198,46.97479,8279,6,16,17,2,18,4.05,5.0,fr,1717,165,75900,1,1,Active Shallow Crust,0.0,89.99002,0.0,06/16/8279 +0.11198,46.97479,9014,5,30,15,38,39,4.05,5.0,fr,1718,180,75903,1,1,Active Shallow Crust,240.006,58.00584,0.0,05/30/9014 +0.11198,46.97479,7226,12,16,4,53,5,4.25,5.0,fr,1719,144,75924,1,1,Active Shallow Crust,0.0,89.99001,0.0,12/16/7226 +0.11198,46.97479,2264,12,19,16,40,21,4.25,15.0,fr,1720,45,75925,1,1,Active Shallow Crust,0.0,89.99001,0.0,12/19/2264 +0.11198,46.97479,2178,5,5,9,1,42,4.35,15.0,fr,1721,43,75937,1,1,Active Shallow Crust,0.0,89.98998,0.0,05/05/2178 +0.11198,46.97479,5852,1,11,11,58,31,4.35,5.0,fr,1722,117,75945,1,1,Active Shallow Crust,128.8977,89.98277,0.0,01/11/5852 +0.11198,46.97479,7900,2,21,4,9,15,4.45,5.0,fr,1723,157,75948,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/21/7900 +0.11198,46.97479,4226,8,15,22,28,16,4.45,15.0,fr,1724,84,75952,1,1,Active Shallow Crust,240.0054,57.99472,0.0,08/15/4226 +0.11198,46.97479,4114,3,29,7,45,15,4.65,5.0,fr,1725,82,75972,1,1,Active Shallow Crust,0.0,89.99,0.0,03/29/4114 +1.49481,50.09371,126,10,26,10,3,32,3.55,15.0,fr,1726,2,76327,1,1,Active Shallow Crust,0.0,89.99018,-90.0,10/26/0126 +1.49481,50.09371,2126,3,30,2,57,26,5.05,15.0,fr,1727,42,76501,1,1,Active Shallow Crust,0.0,89.98993,0.0,03/30/2126 +7.70552,51.20207,3194,8,8,15,11,31,4.35,5.0,fr,1728,63,76896,1,1,Active Shallow Crust,0.0,89.98994,0.0,08/08/3194 +-0.41968,41.75523,1363,8,15,19,13,14,3.55,15.0,fr,1729,27,77287,1,1,Active Shallow Crust,0.0,89.99001,-90.0,08/15/1363 +-0.41968,41.75523,4123,2,11,10,12,53,5.05,5.0,fr,1730,82,77466,1,1,Active Shallow Crust,0.0,89.99002,-90.0,02/11/4123 +-0.41968,41.75523,6549,8,29,17,24,6,5.25,15.0,fr,1731,130,77485,1,1,Active Shallow Crust,0.0,89.98997,0.0,08/29/6549 +1.3629,47.05647,7562,11,13,16,30,8,3.65,15.0,fr,1732,151,77773,1,1,Active Shallow Crust,0.0,89.98929,0.0,11/13/7562 +1.3629,47.05647,6926,1,27,9,28,35,3.65,27.5,fr,1733,138,77774,1,1,Active Shallow Crust,0.0,89.98929,0.0,01/27/6926 +1.3629,47.05647,4213,6,23,23,5,29,3.85,5.0,fr,1734,84,77796,1,2,Active Shallow Crust,0.0,89.99027,0.0,06/23/4213 +1.3629,47.05647,7059,8,2,22,43,49,3.85,5.0,fr,1735,141,77796,1,2,Active Shallow Crust,0.0,89.99027,0.0,08/02/7059 +1.3629,47.05647,904,3,27,10,44,7,3.85,27.5,fr,1736,18,77798,1,1,Active Shallow Crust,0.0,89.99027,0.0,03/27/0904 +1.3629,47.05647,8878,8,2,14,6,11,4.05,15.0,fr,1737,177,77821,1,1,Active Shallow Crust,0.0,89.99034,0.0,08/02/8878 +1.3629,47.05647,1738,12,23,7,0,58,4.15,5.0,fr,1738,34,77835,1,1,Active Shallow Crust,240.0086,57.99731,0.0,12/23/1738 +1.3629,47.05647,6351,1,26,4,54,37,4.25,5.0,fr,1739,127,77853,1,1,Active Shallow Crust,128.8944,89.98084,0.0,01/26/6351 +1.3629,47.05647,1258,11,12,4,59,59,4.45,5.0,fr,1740,25,77868,1,1,Active Shallow Crust,0.0,89.99025,0.0,11/12/1258 +1.3629,47.05647,1167,11,26,0,16,3,4.55,5.0,fr,1741,23,77880,1,1,Active Shallow Crust,0.0,89.99022,0.0,11/26/1167 +1.3629,47.05647,5765,9,20,8,29,18,4.95,5.0,fr,1742,115,77931,1,1,Active Shallow Crust,240.0122,58.00451,0.0,09/20/5765 +-3.9416,47.84724,9625,11,22,13,29,11,3.65,5.0,fr,1743,192,78252,1,1,Active Shallow Crust,0.0,89.99095,0.0,11/22/9625 +-3.9416,47.84724,8257,9,9,2,16,34,3.65,27.5,fr,1744,165,78254,1,1,Active Shallow Crust,0.0,89.99095,0.0,09/09/8257 +-3.9416,47.84724,8148,5,26,16,31,11,3.65,5.0,fr,1745,162,78255,1,1,Active Shallow Crust,240.0018,58.01281,0.0,05/26/8148 +-3.9416,47.84724,6788,10,27,12,1,57,3.75,27.5,fr,1746,135,78269,1,1,Active Shallow Crust,240.0088,58.01715,0.0,10/27/6788 +-3.9416,47.84724,337,4,20,19,44,53,3.85,5.0,fr,1747,6,78285,1,1,Active Shallow Crust,128.8958,89.99281,0.0,04/20/0337 +-3.9416,47.84724,7252,11,15,19,46,29,3.95,5.0,fr,1748,145,78291,1,1,Active Shallow Crust,240.0201,58.00494,0.0,11/15/7252 +-3.9416,47.84724,5794,6,7,23,22,13,4.05,27.5,fr,1749,115,78308,1,1,Active Shallow Crust,0.0,89.99037,-90.0,06/07/5794 +-3.9416,47.84724,2815,12,25,9,45,40,4.15,27.5,fr,1750,56,78320,1,1,Active Shallow Crust,0.0,89.98971,-90.0,12/25/2815 +-3.9416,47.84724,1784,7,14,9,37,43,4.55,5.0,fr,1751,35,78360,1,1,Active Shallow Crust,0.0,89.99037,0.0,07/14/1784 +-3.9416,47.84724,5736,5,17,4,22,48,4.65,5.0,fr,1752,114,78375,1,1,Active Shallow Crust,240.0111,57.99437,0.0,05/17/5736 +-1.93474,46.13032,4903,11,26,14,9,47,3.95,5.0,fr,1753,98,78768,1,1,Active Shallow Crust,0.0,89.99008,0.0,11/26/4903 +-1.93474,46.13032,5069,10,27,9,27,49,3.95,5.0,fr,1754,101,78771,1,1,Active Shallow Crust,240.0199,58.00487,0.0,10/27/5069 +-1.93474,46.13032,5922,9,2,4,2,27,4.55,5.0,fr,1755,118,78840,1,1,Active Shallow Crust,0.0,89.99005,0.0,09/02/5922 +-1.93474,46.13032,5686,3,29,0,29,29,4.85,5.0,fr,1756,113,78885,1,1,Active Shallow Crust,128.8927,89.98901,0.0,03/29/5686 +-1.52431,41.76758,9151,7,9,12,35,8,3.55,5.0,fr,1757,183,79200,1,1,Active Shallow Crust,0.0,89.9906,0.0,07/09/9151 +-1.52431,41.76758,3196,10,13,3,13,31,4.35,5.0,fr,1758,63,79296,1,1,Active Shallow Crust,0.0,89.99026,0.0,10/13/3196 +3.02879,47.19563,2633,10,5,23,9,29,3.55,5.0,fr,1759,52,79680,1,1,Active Shallow Crust,0.0,89.98972,0.0,10/05/2633 +3.02879,47.19563,9562,11,4,7,36,13,4.15,15.0,fr,1760,191,79756,1,1,Active Shallow Crust,240.0087,57.99759,0.0,11/04/9562 +3.02879,47.19563,5649,5,23,19,42,53,4.25,15.0,fr,1761,112,79765,1,1,Active Shallow Crust,0.0,89.98929,0.0,05/23/5649 +3.02879,47.19563,1967,7,21,2,51,43,4.25,5.0,fr,1762,39,79773,1,1,Active Shallow Crust,128.8941,89.98097,0.0,07/21/1967 +3.02879,47.19563,7328,2,1,19,16,3,4.75,27.5,fr,1763,146,79826,1,1,Active Shallow Crust,0.0,89.98967,0.0,02/01/7328 +7.47078,51.17568,1273,4,9,21,17,33,3.55,5.0,fr,1764,25,80160,1,1,Active Shallow Crust,0.0,89.98736,0.0,04/09/1273 +7.47078,51.17568,8216,2,24,2,22,22,3.75,5.0,fr,1765,164,80184,1,1,Active Shallow Crust,0.0,89.98996,0.0,02/24/8216 +7.47078,51.17568,8659,12,16,15,52,0,3.85,15.0,fr,1766,173,80197,1,1,Active Shallow Crust,0.0,89.99105,0.0,12/16/8659 +7.47078,51.17568,1169,7,19,11,2,0,4.15,5.0,fr,1767,23,80232,1,1,Active Shallow Crust,0.0,89.99049,0.0,07/19/1169 +7.47078,51.17568,342,2,26,12,39,16,4.55,5.0,fr,1768,6,80280,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/26/0342 +7.47078,51.17568,6412,11,3,18,45,50,5.85,5.0,fr,1769,128,80436,1,1,Active Shallow Crust,0.0,89.99014,0.0,11/03/6412 +2.97212,41.26449,4165,1,3,8,41,3,3.65,15.0,fr,1770,83,80656,1,1,Active Shallow Crust,240.0012,58.01272,0.0,01/03/4165 +2.97212,41.26449,4149,9,7,15,44,54,3.65,5.0,fr,1771,82,80661,1,1,Active Shallow Crust,128.9013,89.96342,0.0,09/07/4149 +2.97212,41.26449,7561,1,18,18,45,43,3.75,5.0,fr,1772,151,80664,1,2,Active Shallow Crust,0.0,89.99097,0.0,01/18/7561 +2.97212,41.26449,2086,8,25,0,57,52,3.75,5.0,fr,1773,41,80664,1,2,Active Shallow Crust,0.0,89.99097,0.0,08/25/2086 +2.97212,41.26449,4134,2,20,15,14,49,3.95,15.0,fr,1774,82,80689,1,1,Active Shallow Crust,0.0,89.99043,0.0,02/20/4134 +2.97212,41.26449,5715,12,7,18,5,9,4.05,15.0,fr,1775,114,80704,1,1,Active Shallow Crust,240.0053,58.00567,0.0,12/07/5715 +2.97212,41.26449,8617,8,24,23,51,18,4.65,5.0,fr,1776,172,80772,1,1,Active Shallow Crust,0.0,89.99039,0.0,08/24/8617 +2.97212,41.26449,6401,3,16,8,59,0,4.75,5.0,fr,1777,128,80784,1,1,Active Shallow Crust,0.0,89.98952,0.0,03/16/6401 +-2.70621,50.64487,4659,6,21,12,0,59,3.65,15.0,fr,1778,93,81139,1,1,Active Shallow Crust,0.0,89.99136,-90.0,06/21/4659 +-2.70621,50.64487,1771,3,24,3,55,0,4.15,5.0,fr,1779,35,81195,1,1,Active Shallow Crust,240.0093,57.9973,0.0,03/24/1771 +-2.70621,50.64487,9804,7,4,5,50,32,4.85,5.0,fr,1780,196,81279,1,1,Active Shallow Crust,240.0189,58.00265,0.0,07/04/9804 +-2.63498,47.15532,9773,10,13,7,49,46,3.55,5.0,fr,1781,195,81600,1,1,Active Shallow Crust,0.0,89.98972,0.0,10/13/9773 +-2.63498,47.15532,8126,9,10,6,15,58,3.65,27.5,fr,1782,162,81617,1,1,Active Shallow Crust,240.0009,58.01284,0.0,09/10/8126 +-2.63498,47.15532,9274,2,2,7,40,57,3.75,5.0,fr,1783,185,81624,1,1,Active Shallow Crust,0.0,89.98911,0.0,02/02/9274 +-2.63498,47.15532,4892,12,19,10,50,18,4.05,5.0,fr,1784,97,81660,1,1,Active Shallow Crust,0.0,89.99036,0.0,12/19/4892 +-2.63498,47.15532,925,12,14,2,23,16,4.05,15.0,fr,1785,18,81661,1,2,Active Shallow Crust,0.0,89.99036,0.0,12/14/0925 +-2.63498,47.15532,4460,5,6,3,35,32,4.05,15.0,fr,1786,89,81661,1,2,Active Shallow Crust,0.0,89.99036,0.0,05/06/4460 +-2.63498,47.15532,1398,6,26,0,17,26,4.15,5.0,fr,1787,27,81672,1,1,Active Shallow Crust,0.0,89.98969,0.0,06/26/1398 +-2.63498,47.15532,4226,4,13,19,51,51,4.25,5.0,fr,1788,84,81684,1,1,Active Shallow Crust,0.0,89.98928,0.0,04/13/4226 +-2.63498,47.15532,9156,4,22,4,3,10,4.65,5.0,fr,1789,183,81738,1,1,Active Shallow Crust,0.0,89.99023,-90.0,04/22/9156 +-2.63498,47.15532,8169,4,28,1,4,57,4.75,5.0,fr,1790,163,81744,1,1,Active Shallow Crust,0.0,89.98966,0.0,04/28/8169 +-0.18469,48.29178,3227,2,12,13,50,54,3.55,5.0,fr,1791,64,82560,1,1,Active Shallow Crust,0.0,89.98994,0.0,02/12/3227 +-0.18469,48.29178,7151,4,12,12,45,12,3.55,27.5,fr,1792,143,82565,1,1,Active Shallow Crust,240.0124,57.99809,0.0,04/12/7151 +-0.18469,48.29178,9665,11,30,16,36,49,3.55,5.0,fr,1793,193,82569,1,2,Active Shallow Crust,128.896,89.99371,0.0,11/30/9665 +-0.18469,48.29178,9501,1,23,12,5,9,3.55,5.0,fr,1794,190,82569,1,2,Active Shallow Crust,128.896,89.99371,0.0,01/23/9501 +-0.18469,48.29178,6266,12,12,20,50,36,3.65,5.0,fr,1795,125,82572,1,3,Active Shallow Crust,0.0,89.98991,0.0,12/12/6266 +-0.18469,48.29178,6729,6,11,23,1,44,3.65,5.0,fr,1796,134,82572,1,3,Active Shallow Crust,0.0,89.98991,0.0,06/11/6729 +-0.18469,48.29178,9548,1,14,7,8,12,3.65,5.0,fr,1797,190,82572,1,3,Active Shallow Crust,0.0,89.98991,0.0,01/14/9548 +-0.18469,48.29178,8846,10,4,10,59,9,3.65,15.0,fr,1798,176,82579,1,1,Active Shallow Crust,0.0,89.98998,-90.0,10/04/8846 +-0.18469,48.29178,5458,6,13,8,23,58,3.75,5.0,fr,1799,109,82584,1,2,Active Shallow Crust,0.0,89.99001,0.0,06/13/5458 +-0.18469,48.29178,7160,1,8,23,31,9,3.75,5.0,fr,1800,143,82584,1,2,Active Shallow Crust,0.0,89.99001,0.0,01/08/7160 +-0.18469,48.29178,7746,6,24,12,53,53,3.75,15.0,fr,1801,154,82585,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/24/7746 +-0.18469,48.29178,4623,10,27,12,20,13,4.05,5.0,fr,1802,92,82629,1,1,Active Shallow Crust,128.8903,89.99375,0.0,10/27/4623 +-0.18469,48.29178,7385,8,23,6,59,2,4.35,5.0,fr,1803,147,82656,1,1,Active Shallow Crust,0.0,89.98998,0.0,08/23/7385 +-0.18469,48.29178,4093,11,3,10,42,5,4.45,5.0,fr,1804,81,82668,1,1,Active Shallow Crust,0.0,89.99003,0.0,11/03/4093 +-0.18469,48.29178,9005,2,14,16,3,26,4.65,27.5,fr,1805,180,82694,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/14/9005 +-0.18469,48.29178,1565,2,19,9,31,7,4.85,15.0,fr,1806,31,82717,1,1,Active Shallow Crust,0.0,89.99,0.0,02/19/1565 +-0.18469,48.29178,4050,12,18,0,53,26,5.25,15.0,fr,1807,80,82765,1,1,Active Shallow Crust,0.0,89.98999,0.0,12/18/4050 +1.2737,51.124,479,4,11,7,45,43,3.55,5.0,fr,1808,9,83040,1,1,Active Shallow Crust,0.0,89.99051,0.0,04/11/0479 +1.2737,51.124,9372,11,13,14,15,15,3.55,15.0,fr,1809,187,83041,1,1,Active Shallow Crust,0.0,89.99051,0.0,11/13/9372 +1.2737,51.124,4036,3,23,4,32,56,3.65,5.0,fr,1810,80,83052,1,1,Active Shallow Crust,0.0,89.99013,0.0,03/23/4036 +1.2737,51.124,6431,4,30,21,38,32,3.65,5.0,fr,1811,128,83055,1,1,Active Shallow Crust,240.0016,58.01304,0.0,04/30/6431 +1.2737,51.124,5337,12,6,19,1,11,3.75,5.0,fr,1812,106,83064,1,2,Active Shallow Crust,0.0,89.98994,0.0,12/06/5337 +1.2737,51.124,5356,7,28,3,12,47,3.75,5.0,fr,1813,107,83064,1,2,Active Shallow Crust,0.0,89.98994,0.0,07/28/5356 +1.2737,51.124,2004,11,23,12,59,43,3.75,5.0,fr,1814,40,83067,1,1,Active Shallow Crust,240.0087,58.0177,0.0,11/23/2004 +1.2737,51.124,3402,1,18,15,48,35,3.75,5.0,fr,1815,68,83070,1,1,Active Shallow Crust,0.0,89.98983,-90.0,01/18/3402 +1.2737,51.124,6017,6,20,7,48,52,3.85,5.0,fr,1816,120,83076,1,1,Active Shallow Crust,0.0,89.98992,0.0,06/20/6017 +1.2737,51.124,9788,3,1,13,1,53,3.95,27.5,fr,1817,195,83090,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/01/9788 +1.2737,51.124,7039,11,2,11,10,15,3.95,5.0,fr,1818,140,83097,1,1,Active Shallow Crust,128.8997,89.99401,0.0,11/02/7039 +1.2737,51.124,1519,10,7,19,18,24,4.05,15.0,fr,1819,30,83101,1,1,Active Shallow Crust,0.0,89.99021,0.0,10/07/1519 +1.2737,51.124,2383,7,5,6,18,17,4.05,5.0,fr,1820,47,83106,1,1,Active Shallow Crust,0.0,89.9901,-90.0,07/05/2383 +1.2737,51.124,5087,10,26,23,9,42,4.25,5.0,fr,1821,101,83130,1,1,Active Shallow Crust,0.0,89.98999,-90.0,10/26/5087 +1.2737,51.124,8643,2,19,22,56,11,5.25,15.0,fr,1822,172,83245,1,1,Active Shallow Crust,0.0,89.98994,0.0,02/19/8643 +1.2737,51.124,9937,2,2,4,7,39,5.35,5.0,fr,1823,198,83256,1,1,Active Shallow Crust,0.0,89.99004,0.0,02/02/9937 +1.2737,51.124,6584,4,3,14,48,53,5.85,5.0,fr,1824,131,83316,1,1,Active Shallow Crust,0.0,89.99002,0.0,04/03/6584 +-1.89925,48.97231,4753,1,20,9,57,15,3.55,5.0,fr,1825,95,83520,1,1,Active Shallow Crust,0.0,89.99007,0.0,01/20/4753 +-1.89925,48.97231,4344,3,10,0,57,7,3.55,15.0,fr,1826,86,83521,1,1,Active Shallow Crust,0.0,89.99007,0.0,03/10/4344 +-1.89925,48.97231,6369,9,10,5,36,16,3.55,5.0,fr,1827,127,83526,1,1,Active Shallow Crust,0.0,89.98996,-90.0,09/10/6369 +-1.89925,48.97231,2837,7,21,7,12,19,3.65,5.0,fr,1828,56,83532,1,3,Active Shallow Crust,0.0,89.98968,0.0,07/21/2837 +-1.89925,48.97231,6241,7,8,10,59,33,3.65,5.0,fr,1829,124,83532,1,3,Active Shallow Crust,0.0,89.98968,0.0,07/08/6241 +-1.89925,48.97231,6656,11,9,5,36,1,3.65,5.0,fr,1830,133,83532,1,3,Active Shallow Crust,0.0,89.98968,0.0,11/09/6656 +-1.89925,48.97231,6381,4,2,7,54,26,3.65,15.0,fr,1831,127,83539,1,2,Active Shallow Crust,0.0,89.98956,-90.0,04/02/6381 +-1.89925,48.97231,2272,2,28,21,54,5,3.65,15.0,fr,1832,45,83539,1,2,Active Shallow Crust,0.0,89.98956,-90.0,02/28/2272 +-1.89925,48.97231,7097,4,3,17,55,53,3.65,5.0,fr,1833,141,83541,1,1,Active Shallow Crust,128.8999,89.96357,0.0,04/03/7097 +-1.89925,48.97231,9088,6,16,21,33,34,3.75,5.0,fr,1834,181,83544,1,1,Active Shallow Crust,0.0,89.98949,0.0,06/16/9088 +-1.89925,48.97231,4328,11,4,13,33,52,3.75,15.0,fr,1835,86,83545,1,1,Active Shallow Crust,0.0,89.98949,0.0,11/04/4328 +-1.89925,48.97231,8940,11,23,8,49,37,3.75,15.0,fr,1836,178,83554,1,1,Active Shallow Crust,128.8963,89.96742,0.0,11/23/8940 +-1.89925,48.97231,9314,3,30,12,40,39,3.85,5.0,fr,1837,186,83556,1,2,Active Shallow Crust,0.0,89.98946,0.0,03/30/9314 +-1.89925,48.97231,6269,1,6,17,9,27,3.85,5.0,fr,1838,125,83556,1,2,Active Shallow Crust,0.0,89.98946,0.0,01/06/6269 +-1.89925,48.97231,3192,12,13,13,40,58,3.85,15.0,fr,1839,63,83557,1,1,Active Shallow Crust,0.0,89.98946,0.0,12/13/3192 +-1.89925,48.97231,3120,8,6,2,55,52,3.85,27.5,fr,1840,62,83558,1,1,Active Shallow Crust,0.0,89.98946,0.0,08/06/3120 +-1.89925,48.97231,1657,12,10,22,13,6,3.85,5.0,fr,1841,33,83559,1,1,Active Shallow Crust,240.0111,57.99785,0.0,12/10/1657 +-1.89925,48.97231,9033,5,23,16,0,10,3.85,5.0,fr,1842,180,83562,1,1,Active Shallow Crust,0.0,89.99052,-90.0,05/23/9033 +-1.89925,48.97231,7234,5,17,10,14,48,3.95,5.0,fr,1843,144,83568,1,2,Active Shallow Crust,0.0,89.98956,0.0,05/17/7234 +-1.89925,48.97231,2160,11,8,12,0,2,3.95,5.0,fr,1844,43,83568,1,2,Active Shallow Crust,0.0,89.98956,0.0,11/08/2160 +-1.89925,48.97231,209,4,9,19,42,16,3.95,15.0,fr,1845,4,83569,1,1,Active Shallow Crust,0.0,89.98956,0.0,04/09/0209 +-1.89925,48.97231,4106,6,2,19,39,6,4.05,5.0,fr,1846,82,83580,1,2,Active Shallow Crust,0.0,89.98976,0.0,06/02/4106 +-1.89925,48.97231,8627,3,17,9,1,15,4.05,5.0,fr,1847,172,83580,1,2,Active Shallow Crust,0.0,89.98976,0.0,03/17/8627 +-1.89925,48.97231,106,9,20,4,54,4,4.05,5.0,fr,1848,2,83586,1,1,Active Shallow Crust,0.0,89.98965,-90.0,09/20/0106 +-1.89925,48.97231,6495,5,11,6,32,4,4.35,5.0,fr,1849,129,83625,1,1,Active Shallow Crust,128.8974,89.98277,0.0,05/11/6495 +-1.89925,48.97231,3900,3,18,20,5,42,4.55,5.0,fr,1850,77,83640,1,1,Active Shallow Crust,0.0,89.99006,0.0,03/18/3900 +-1.89925,48.97231,431,11,22,9,29,53,4.55,27.5,fr,1851,8,83642,1,1,Active Shallow Crust,0.0,89.99006,0.0,11/22/0431 +-1.89925,48.97231,6908,1,3,5,25,0,4.65,27.5,fr,1852,138,83654,1,1,Active Shallow Crust,0.0,89.9902,0.0,01/03/6908 +-1.89925,48.97231,1523,10,9,17,20,55,4.75,5.0,fr,1853,30,83664,1,1,Active Shallow Crust,0.0,89.99002,0.0,10/09/1523 +-4.55319,48.74004,8245,12,8,5,55,5,3.55,5.0,fr,1854,164,84000,1,1,Active Shallow Crust,0.0,89.9867,0.0,12/08/8245 +-4.55319,48.74004,7253,6,29,12,23,12,3.65,5.0,fr,1855,145,84012,1,1,Active Shallow Crust,0.0,89.98814,0.0,06/29/7253 +-4.55319,48.74004,6396,2,7,21,9,40,3.65,5.0,fr,1856,127,84015,1,1,Active Shallow Crust,240.0008,58.01257,0.0,02/07/6396 +-4.55319,48.74004,4596,3,27,16,2,22,3.65,15.0,fr,1857,91,84019,1,1,Active Shallow Crust,0.0,89.98801,-90.0,03/27/4596 +-4.55319,48.74004,1252,1,7,21,18,52,3.75,5.0,fr,1858,25,84024,1,1,Active Shallow Crust,0.0,89.98943,0.0,01/07/1252 +-4.55319,48.74004,4198,9,23,22,25,22,3.85,5.0,fr,1859,83,84036,1,1,Active Shallow Crust,0.0,89.99059,0.0,09/23/4198 +-4.55319,48.74004,9195,8,21,6,41,33,3.85,27.5,fr,1860,183,84038,1,1,Active Shallow Crust,0.0,89.99059,0.0,08/21/9195 +-4.55319,48.74004,6688,12,8,2,55,27,3.95,5.0,fr,1861,133,84051,1,1,Active Shallow Crust,240.0203,58.00488,0.0,12/08/6688 +-4.55319,48.74004,5991,2,20,23,42,7,4.45,5.0,fr,1862,119,84111,1,1,Active Shallow Crust,240.006,57.99452,0.0,02/20/5991 +-4.55319,48.74004,4443,12,5,6,30,52,5.05,15.0,fr,1863,88,84181,1,1,Active Shallow Crust,0.0,89.99054,0.0,12/05/4443 +-4.55319,48.74004,5144,11,3,19,7,13,5.45,5.0,fr,1864,102,84234,1,1,Active Shallow Crust,0.0,89.99018,-90.0,11/03/5144 +-1.06467,44.70973,1192,8,19,19,21,3,3.75,5.0,fr,1865,23,84507,1,1,Active Shallow Crust,240.008,58.01772,0.0,08/19/1192 +-1.06467,44.70973,8928,12,2,6,0,4,3.85,5.0,fr,1866,178,84516,1,1,Active Shallow Crust,0.0,89.98985,0.0,12/02/8928 +7.30659,46.09502,833,9,14,1,40,3,3.55,5.0,fr,1867,16,84960,1,7,Active Shallow Crust,0.0,89.993,0.0,09/14/0833 +7.30659,46.09502,142,1,21,4,55,37,3.55,5.0,fr,1868,2,84960,1,7,Active Shallow Crust,0.0,89.993,0.0,01/21/0142 +7.30659,46.09502,2845,5,28,12,6,25,3.55,5.0,fr,1869,56,84960,1,7,Active Shallow Crust,0.0,89.993,0.0,05/28/2845 +7.30659,46.09502,1133,8,2,5,0,34,3.55,5.0,fr,1870,22,84960,1,7,Active Shallow Crust,0.0,89.993,0.0,08/02/1133 +7.30659,46.09502,4845,11,10,3,0,6,3.55,5.0,fr,1871,96,84960,1,7,Active Shallow Crust,0.0,89.993,0.0,11/10/4845 +7.30659,46.09502,9734,2,20,0,11,42,3.55,5.0,fr,1872,194,84960,1,7,Active Shallow Crust,0.0,89.993,0.0,02/20/9734 +7.30659,46.09502,1831,4,10,10,56,39,3.55,5.0,fr,1873,36,84960,1,7,Active Shallow Crust,0.0,89.993,0.0,04/10/1831 +7.30659,46.09502,1064,7,28,0,27,36,3.55,15.0,fr,1874,21,84961,1,3,Active Shallow Crust,0.0,89.993,0.0,07/28/1064 +7.30659,46.09502,1218,3,17,18,32,10,3.55,15.0,fr,1875,24,84961,1,3,Active Shallow Crust,0.0,89.993,0.0,03/17/1218 +7.30659,46.09502,8261,12,2,8,43,22,3.55,15.0,fr,1876,165,84961,1,3,Active Shallow Crust,0.0,89.993,0.0,12/02/8261 +7.30659,46.09502,638,5,27,17,47,28,3.55,27.5,fr,1877,12,84962,1,1,Active Shallow Crust,0.0,89.993,0.0,05/27/0638 +7.30659,46.09502,7137,8,1,13,0,21,3.55,5.0,fr,1878,142,84963,1,1,Active Shallow Crust,240.0121,57.998,0.0,08/01/7137 +7.30659,46.09502,2374,12,18,20,29,12,3.55,15.0,fr,1879,47,84964,1,1,Active Shallow Crust,240.0121,57.998,0.0,12/18/2374 +7.30659,46.09502,6878,10,4,6,37,26,3.55,5.0,fr,1880,137,84966,1,2,Active Shallow Crust,0.0,89.99293,-90.0,10/04/6878 +7.30659,46.09502,6808,3,1,1,16,48,3.55,5.0,fr,1881,136,84966,1,2,Active Shallow Crust,0.0,89.99293,-90.0,03/01/6808 +7.30659,46.09502,4371,4,22,16,18,42,3.55,5.0,fr,1882,87,84969,1,1,Active Shallow Crust,128.8956,89.99301,0.0,04/22/4371 +7.30659,46.09502,3802,9,17,6,44,51,3.65,5.0,fr,1883,76,84972,1,5,Active Shallow Crust,0.0,89.98753,0.0,09/17/3802 +7.30659,46.09502,8102,7,3,20,10,45,3.65,5.0,fr,1884,162,84972,1,5,Active Shallow Crust,0.0,89.98753,0.0,07/03/8102 +7.30659,46.09502,9781,1,2,6,44,12,3.65,5.0,fr,1885,195,84972,1,5,Active Shallow Crust,0.0,89.98753,0.0,01/02/9781 +7.30659,46.09502,3799,12,18,0,33,22,3.65,5.0,fr,1886,75,84972,1,5,Active Shallow Crust,0.0,89.98753,0.0,12/18/3799 +7.30659,46.09502,5543,4,4,21,31,43,3.65,5.0,fr,1887,110,84972,1,5,Active Shallow Crust,0.0,89.98753,0.0,04/04/5543 +7.30659,46.09502,3748,4,25,21,54,3,3.65,15.0,fr,1888,74,84973,1,3,Active Shallow Crust,0.0,89.98753,0.0,04/25/3748 +7.30659,46.09502,7151,9,3,22,30,32,3.65,15.0,fr,1889,143,84973,1,3,Active Shallow Crust,0.0,89.98753,0.0,09/03/7151 +7.30659,46.09502,4825,6,12,7,51,14,3.65,15.0,fr,1890,96,84973,1,3,Active Shallow Crust,0.0,89.98753,0.0,06/12/4825 +7.30659,46.09502,5905,9,22,13,14,39,3.65,5.0,fr,1891,118,84975,1,2,Active Shallow Crust,240.0015,58.01243,0.0,09/22/5905 +7.30659,46.09502,1447,12,16,12,4,26,3.65,5.0,fr,1892,28,84975,1,2,Active Shallow Crust,240.0015,58.01243,0.0,12/16/1447 +7.30659,46.09502,7806,6,28,9,26,58,3.65,5.0,fr,1893,156,84978,1,2,Active Shallow Crust,0.0,89.98739,-90.0,06/28/7806 +7.30659,46.09502,3969,6,11,11,38,37,3.65,5.0,fr,1894,79,84978,1,2,Active Shallow Crust,0.0,89.98739,-90.0,06/11/3969 +7.30659,46.09502,1894,5,10,12,42,25,3.65,5.0,fr,1895,37,84981,1,1,Active Shallow Crust,128.9002,89.96352,0.0,05/10/1894 +7.30659,46.09502,7221,5,19,15,17,45,3.75,5.0,fr,1896,144,84984,1,4,Active Shallow Crust,0.0,89.98889,0.0,05/19/7221 +7.30659,46.09502,4039,2,10,20,35,38,3.75,5.0,fr,1897,80,84984,1,4,Active Shallow Crust,0.0,89.98889,0.0,02/10/4039 +7.30659,46.09502,9582,8,21,12,43,11,3.75,5.0,fr,1898,191,84984,1,4,Active Shallow Crust,0.0,89.98889,0.0,08/21/9582 +7.30659,46.09502,1744,8,25,14,40,45,3.75,5.0,fr,1899,34,84984,1,4,Active Shallow Crust,0.0,89.98889,0.0,08/25/1744 +7.30659,46.09502,206,11,3,3,2,11,3.75,15.0,fr,1900,4,84985,1,1,Active Shallow Crust,0.0,89.98889,0.0,11/03/0206 +7.30659,46.09502,3027,1,24,4,21,48,3.75,5.0,fr,1901,60,84990,1,2,Active Shallow Crust,0.0,89.98876,-90.0,01/24/3027 +7.30659,46.09502,1448,8,6,13,19,8,3.75,5.0,fr,1902,28,84990,1,2,Active Shallow Crust,0.0,89.98876,-90.0,08/06/1448 +7.30659,46.09502,472,5,14,4,58,26,3.75,5.0,fr,1903,9,84993,1,1,Active Shallow Crust,128.8966,89.96748,0.0,05/14/0472 +7.30659,46.09502,4948,2,12,6,25,18,3.85,5.0,fr,1904,98,84996,1,2,Active Shallow Crust,0.0,89.9901,0.0,02/12/4948 +7.30659,46.09502,3528,2,8,13,58,5,3.85,5.0,fr,1905,70,84996,1,2,Active Shallow Crust,0.0,89.9901,0.0,02/08/3528 +7.30659,46.09502,4132,6,2,1,23,39,3.85,27.5,fr,1906,82,85001,1,1,Active Shallow Crust,240.01,57.99775,0.0,06/02/4132 +7.30659,46.09502,2875,11,9,1,25,27,3.85,5.0,fr,1907,57,85002,1,1,Active Shallow Crust,0.0,89.98998,-90.0,11/09/2875 +7.30659,46.09502,2550,9,14,0,13,49,3.85,15.0,fr,1908,50,85006,1,1,Active Shallow Crust,128.8958,89.99505,0.0,09/14/2550 +7.30659,46.09502,3935,1,1,1,49,32,3.95,5.0,fr,1909,78,85008,1,3,Active Shallow Crust,0.0,89.99117,0.0,01/01/3935 +7.30659,46.09502,8853,12,3,1,4,37,3.95,5.0,fr,1910,177,85008,1,3,Active Shallow Crust,0.0,89.99117,0.0,12/03/8853 +7.30659,46.09502,2880,6,20,20,28,21,3.95,5.0,fr,1911,57,85008,1,3,Active Shallow Crust,0.0,89.99117,0.0,06/20/2880 +7.30659,46.09502,8480,9,6,22,25,31,3.95,15.0,fr,1912,169,85009,1,1,Active Shallow Crust,0.0,89.99117,0.0,09/06/8480 +7.30659,46.09502,2356,8,27,12,47,8,3.95,5.0,fr,1913,47,85011,1,1,Active Shallow Crust,240.0201,58.00425,0.0,08/27/2356 +7.30659,46.09502,2673,11,20,4,31,31,4.05,15.0,fr,1914,53,85021,1,2,Active Shallow Crust,0.0,89.9882,0.0,11/20/2673 +7.30659,46.09502,8178,6,13,19,43,30,4.05,15.0,fr,1915,163,85021,1,2,Active Shallow Crust,0.0,89.9882,0.0,06/13/8178 +7.30659,46.09502,636,3,11,14,35,20,4.05,5.0,fr,1916,12,85023,1,1,Active Shallow Crust,240.0058,58.00566,0.0,03/11/0636 +7.30659,46.09502,6776,8,15,21,46,18,4.05,5.0,fr,1917,135,85026,1,1,Active Shallow Crust,0.0,89.98807,-90.0,08/15/6776 +7.30659,46.09502,4116,9,18,19,56,31,4.05,5.0,fr,1918,82,85029,1,1,Active Shallow Crust,128.8901,89.9941,0.0,09/18/4116 +7.30659,46.09502,7576,1,19,14,22,20,4.15,5.0,fr,1919,151,85032,1,1,Active Shallow Crust,0.0,89.98949,0.0,01/19/7576 +7.30659,46.09502,7253,12,19,6,37,15,4.15,15.0,fr,1920,145,85033,1,1,Active Shallow Crust,0.0,89.98949,0.0,12/19/7253 +7.30659,46.09502,2121,9,6,12,39,14,4.15,27.5,fr,1921,42,85034,1,1,Active Shallow Crust,0.0,89.98949,0.0,09/06/2121 +7.30659,46.09502,2370,6,15,15,18,22,4.15,15.0,fr,1922,47,85036,1,1,Active Shallow Crust,240.0089,57.99717,0.0,06/15/2370 +7.30659,46.09502,5221,6,21,18,2,33,4.15,5.0,fr,1923,104,85038,1,1,Active Shallow Crust,0.0,89.98936,-90.0,06/21/5221 +7.30659,46.09502,3725,12,14,12,46,26,4.15,5.0,fr,1924,74,85041,1,1,Active Shallow Crust,128.8987,89.99299,0.0,12/14/3725 +7.30659,46.09502,461,4,5,23,15,7,4.25,5.0,fr,1925,9,85044,1,1,Active Shallow Crust,0.0,89.99063,0.0,04/05/0461 +7.30659,46.09502,3659,1,30,23,50,26,4.25,5.0,fr,1926,73,85047,1,1,Active Shallow Crust,240.0079,57.99386,0.0,01/30/3659 +7.30659,46.09502,7557,10,11,2,59,3,4.25,15.0,fr,1927,151,85048,1,1,Active Shallow Crust,240.0079,57.99386,0.0,10/11/7557 +7.30659,46.09502,7038,8,20,22,10,49,4.25,5.0,fr,1928,140,85053,1,1,Active Shallow Crust,128.8944,89.98093,0.0,08/20/7038 +7.30659,46.09502,8754,2,13,0,32,54,4.25,15.0,fr,1929,175,85054,1,1,Active Shallow Crust,128.8944,89.98093,0.0,02/13/8754 +7.30659,46.09502,1836,12,13,4,41,42,4.35,5.0,fr,1930,36,85056,1,1,Active Shallow Crust,0.0,89.98886,0.0,12/13/1836 +7.30659,46.09502,9265,1,4,8,7,53,4.35,15.0,fr,1931,185,85057,1,1,Active Shallow Crust,0.0,89.98886,0.0,01/04/9265 +7.30659,46.09502,8028,2,9,17,7,12,4.35,5.0,fr,1932,160,85059,1,1,Active Shallow Crust,240.0083,57.99624,0.0,02/09/8028 +7.30659,46.09502,6770,1,23,2,6,15,4.45,5.0,fr,1933,135,85068,1,1,Active Shallow Crust,0.0,89.99007,0.0,01/23/6770 +7.30659,46.09502,1449,1,29,19,15,38,4.45,15.0,fr,1934,28,85069,1,1,Active Shallow Crust,0.0,89.99007,0.0,01/29/1449 +7.30659,46.09502,2191,9,13,1,50,22,4.55,5.0,fr,1935,43,85080,1,1,Active Shallow Crust,0.0,89.98895,0.0,09/13/2191 +7.30659,46.09502,7135,1,28,21,25,3,4.55,15.0,fr,1936,142,85081,1,1,Active Shallow Crust,0.0,89.98895,0.0,01/28/7135 +7.30659,46.09502,2918,4,8,20,54,37,4.65,5.0,fr,1937,58,85092,1,1,Active Shallow Crust,0.0,89.99014,0.0,04/08/2918 +7.30659,46.09502,2264,10,20,4,15,32,4.75,5.0,fr,1938,45,85104,1,1,Active Shallow Crust,0.0,89.98946,0.0,10/20/2264 +7.30659,46.09502,457,6,11,23,45,27,4.75,5.0,fr,1939,9,85113,1,2,Active Shallow Crust,128.889,89.98815,0.0,06/11/0457 +7.30659,46.09502,1408,7,31,13,27,16,4.75,5.0,fr,1940,28,85113,1,2,Active Shallow Crust,128.889,89.98815,0.0,07/31/1408 +7.30659,46.09502,5343,2,19,21,54,26,4.95,5.0,fr,1941,106,85128,1,1,Active Shallow Crust,0.0,89.99023,0.0,02/19/5343 +7.30659,46.09502,5345,6,1,0,25,27,4.95,15.0,fr,1942,106,85129,1,1,Active Shallow Crust,0.0,89.99023,0.0,06/01/5345 +7.30659,46.09502,3563,7,9,16,38,17,4.95,5.0,fr,1943,71,85131,1,1,Active Shallow Crust,240.0116,58.00465,0.0,07/09/3563 +7.30659,46.09502,5119,10,25,20,3,12,5.45,15.0,fr,1944,102,85189,1,1,Active Shallow Crust,0.0,89.9898,0.0,10/25/5119 +7.306594,46.09502,3736,10,2,12,20,15,6.25,6.667607,fr,1945,74,85290,1,1,Active Shallow Crust,0.0,89.98988,-90.0,10/02/3736 +1.08419,45.83527,9782,2,4,11,28,52,3.55,5.0,fr,1946,195,85440,1,1,Active Shallow Crust,0.0,89.98946,0.0,02/04/9782 +1.08419,45.83527,7365,2,4,18,52,22,3.55,15.0,fr,1947,147,85441,1,1,Active Shallow Crust,0.0,89.98946,0.0,02/04/7365 +1.08419,45.83527,3902,10,28,11,51,39,3.55,5.0,fr,1948,78,85449,1,1,Active Shallow Crust,128.8963,89.99385,0.0,10/28/3902 +1.08419,45.83527,2865,7,1,7,31,46,3.55,15.0,fr,1949,57,85450,1,1,Active Shallow Crust,128.8963,89.99385,0.0,07/01/2865 +1.08419,45.83527,2993,12,28,10,48,16,3.75,5.0,fr,1950,59,85464,1,1,Active Shallow Crust,0.0,89.99023,0.0,12/28/2993 +1.08419,45.83527,8431,1,18,1,49,44,3.75,5.0,fr,1951,168,85467,1,1,Active Shallow Crust,240.0085,58.01754,0.0,01/18/8431 +1.08419,45.83527,8797,8,14,4,25,58,3.75,5.0,fr,1952,175,85470,1,2,Active Shallow Crust,0.0,89.99012,-90.0,08/14/8797 +1.08419,45.83527,9281,11,13,21,59,7,3.75,5.0,fr,1953,185,85470,1,2,Active Shallow Crust,0.0,89.99012,-90.0,11/13/9281 +1.08419,45.83527,2071,3,8,2,17,46,3.95,27.5,fr,1954,41,85490,1,2,Active Shallow Crust,0.0,89.99003,0.0,03/08/2071 +1.08419,45.83527,7671,11,6,14,45,42,3.95,27.5,fr,1955,153,85490,1,2,Active Shallow Crust,0.0,89.99003,0.0,11/06/7671 +1.08419,45.83527,6056,6,17,13,52,41,3.95,15.0,fr,1956,121,85495,1,1,Active Shallow Crust,0.0,89.98991,-90.0,06/17/6056 +1.08419,45.83527,5288,9,23,23,2,31,4.05,5.0,fr,1957,105,85500,1,1,Active Shallow Crust,0.0,89.99012,0.0,09/23/5288 +1.08419,45.83527,2561,6,11,7,49,32,4.15,27.5,fr,1958,51,85514,1,1,Active Shallow Crust,0.0,89.99032,0.0,06/11/2561 +1.08419,45.83527,4231,9,15,5,58,25,4.25,5.0,fr,1959,84,85524,1,1,Active Shallow Crust,0.0,89.9898,0.0,09/15/4231 +1.08419,45.83527,9834,7,7,8,36,23,4.45,5.0,fr,1960,196,85554,1,1,Active Shallow Crust,0.0,89.98991,-90.0,07/07/9834 +5.05876,46.33299,752,9,22,18,1,48,3.55,15.0,fr,1961,15,85921,1,1,Active Shallow Crust,0.0,89.99303,0.0,09/22/0752 +5.05876,46.33299,1576,2,29,2,29,13,3.55,5.0,fr,1962,31,85929,1,1,Active Shallow Crust,128.8964,89.99303,0.0,02/29/1576 +5.05876,46.33299,1445,12,30,23,25,14,3.65,15.0,fr,1963,28,85933,1,1,Active Shallow Crust,0.0,89.98759,0.0,12/30/1445 +5.05876,46.33299,5898,8,27,12,34,38,3.65,27.5,fr,1964,117,85934,1,1,Active Shallow Crust,0.0,89.98759,0.0,08/27/5898 +5.05876,46.33299,3986,8,8,9,56,59,3.85,5.0,fr,1965,79,85956,1,1,Active Shallow Crust,0.0,89.99014,0.0,08/08/3986 +5.05876,46.33299,5879,2,11,3,6,33,3.85,15.0,fr,1966,117,85957,1,1,Active Shallow Crust,0.0,89.99014,0.0,02/11/5879 +5.05876,46.33299,7430,12,28,0,43,17,3.95,5.0,fr,1967,148,85968,1,2,Active Shallow Crust,0.0,89.99121,0.0,12/28/7430 +5.05876,46.33299,3930,4,21,7,40,11,3.95,5.0,fr,1968,78,85968,1,2,Active Shallow Crust,0.0,89.99121,0.0,04/21/3930 +5.05876,46.33299,2545,11,2,7,22,14,4.05,27.5,fr,1969,50,85982,1,1,Active Shallow Crust,0.0,89.98825,0.0,11/02/2545 +5.05876,46.33299,9720,7,20,13,19,17,4.45,15.0,fr,1970,194,86029,1,1,Active Shallow Crust,0.0,89.99012,0.0,07/20/9720 +5.184,44.25439,3486,11,11,20,25,5,3.55,5.0,fr,1971,69,86400,1,1,Active Shallow Crust,0.0,89.99277,0.0,11/11/3486 +5.184,44.25439,2097,4,14,13,57,27,3.55,27.5,fr,1972,41,86402,1,1,Active Shallow Crust,0.0,89.99277,0.0,04/14/2097 +5.184,44.25439,2758,4,24,11,53,18,3.55,5.0,fr,1973,55,86403,1,1,Active Shallow Crust,240.0109,57.99934,0.0,04/24/2758 +5.184,44.25439,9309,6,13,1,48,33,3.55,5.0,fr,1974,186,86409,1,1,Active Shallow Crust,128.8964,89.99277,0.0,06/13/9309 +5.184,44.25439,4167,10,8,6,58,19,3.65,5.0,fr,1975,83,86412,1,1,Active Shallow Crust,0.0,89.98713,0.0,10/08/4167 +5.184,44.25439,6023,6,12,3,32,27,3.65,5.0,fr,1976,120,86421,1,1,Active Shallow Crust,128.8999,89.96348,0.0,06/12/6023 +5.184,44.25439,3018,10,21,23,2,30,3.75,15.0,fr,1977,60,86425,1,1,Active Shallow Crust,0.0,89.98853,0.0,10/21/3018 +5.184,44.25439,8083,3,22,9,20,7,3.75,27.5,fr,1978,161,86426,1,1,Active Shallow Crust,0.0,89.98853,0.0,03/22/8083 +5.184,44.25439,5029,9,9,10,5,17,3.75,5.0,fr,1979,100,86427,1,1,Active Shallow Crust,240.009,58.01654,0.0,09/09/5029 +5.184,44.25439,4909,12,26,21,41,57,3.75,27.5,fr,1980,98,86429,1,1,Active Shallow Crust,240.009,58.01654,0.0,12/26/4909 +5.184,44.25439,9444,10,26,22,30,46,3.75,27.5,fr,1981,188,86432,1,1,Active Shallow Crust,0.0,89.9884,-90.0,10/26/9444 +5.184,44.25439,9685,11,10,9,7,4,3.85,27.5,fr,1982,193,86438,1,1,Active Shallow Crust,0.0,89.98978,0.0,11/10/9685 +5.184,44.25439,7427,2,11,17,32,16,3.85,5.0,fr,1983,148,86439,1,1,Active Shallow Crust,240.0106,57.99764,0.0,02/11/7427 +5.184,44.25439,8800,6,11,20,0,44,3.95,5.0,fr,1984,175,86448,1,2,Active Shallow Crust,0.0,89.99088,0.0,06/11/8800 +5.184,44.25439,3702,12,16,3,41,40,3.95,5.0,fr,1985,74,86448,1,2,Active Shallow Crust,0.0,89.99088,0.0,12/16/3702 +5.184,44.25439,8765,7,18,18,19,40,3.95,15.0,fr,1986,175,86452,1,1,Active Shallow Crust,240.0192,58.00528,0.0,07/18/8765 +5.184,44.25439,3592,12,21,6,18,21,4.35,15.0,fr,1987,71,86497,1,1,Active Shallow Crust,0.0,89.99137,0.0,12/21/3592 +5.184,44.25439,4959,9,9,0,0,5,4.45,15.0,fr,1988,99,86512,1,1,Active Shallow Crust,240.0052,57.99453,0.0,09/09/4959 +5.184,44.25439,5140,3,3,13,31,23,4.55,5.0,fr,1989,102,86520,1,1,Active Shallow Crust,0.0,89.99086,0.0,03/03/5140 +5.184,44.25439,7725,10,22,12,33,19,5.05,5.0,fr,1990,154,86580,1,1,Active Shallow Crust,0.0,89.98972,0.0,10/22/7725 +5.78176,45.2552,7115,3,4,5,54,36,3.55,5.0,fr,1991,142,86880,1,4,Active Shallow Crust,0.0,89.9929,0.0,03/04/7115 +5.78176,45.2552,2184,7,20,18,48,41,3.55,5.0,fr,1992,43,86880,1,4,Active Shallow Crust,0.0,89.9929,0.0,07/20/2184 +5.78176,45.2552,511,4,19,22,19,41,3.55,5.0,fr,1993,10,86880,1,4,Active Shallow Crust,0.0,89.9929,0.0,04/19/0511 +5.78176,45.2552,8889,8,10,8,54,4,3.55,5.0,fr,1994,177,86880,1,4,Active Shallow Crust,0.0,89.9929,0.0,08/10/8889 +5.78176,45.2552,7658,7,13,2,55,58,3.55,15.0,fr,1995,153,86881,1,3,Active Shallow Crust,0.0,89.9929,0.0,07/13/7658 +5.78176,45.2552,5026,5,1,16,50,32,3.55,15.0,fr,1996,100,86881,1,3,Active Shallow Crust,0.0,89.9929,0.0,05/01/5026 +5.78176,45.2552,2798,7,12,18,58,35,3.55,15.0,fr,1997,55,86881,1,3,Active Shallow Crust,0.0,89.9929,0.0,07/12/2798 +5.78176,45.2552,9889,3,11,15,50,34,3.55,5.0,fr,1998,197,86883,1,2,Active Shallow Crust,240.0109,57.99848,0.0,03/11/9889 +5.78176,45.2552,4314,12,24,3,37,22,3.55,5.0,fr,1999,86,86883,1,2,Active Shallow Crust,240.0109,57.99848,0.0,12/24/4314 +5.78176,45.2552,5208,2,5,15,39,35,3.55,15.0,fr,2000,104,86884,1,1,Active Shallow Crust,240.0109,57.99848,0.0,02/05/5208 +5.78176,45.2552,9436,6,2,18,27,7,3.55,5.0,fr,2001,188,86886,1,1,Active Shallow Crust,0.0,89.99282,-90.0,06/02/9436 +5.78176,45.2552,538,2,17,22,48,50,3.65,5.0,fr,2002,10,86892,1,3,Active Shallow Crust,0.0,89.98735,0.0,02/17/0538 +5.78176,45.2552,9865,3,17,11,7,46,3.65,5.0,fr,2003,197,86892,1,3,Active Shallow Crust,0.0,89.98735,0.0,03/17/9865 +5.78176,45.2552,26,6,20,6,33,15,3.65,5.0,fr,2004,0,86892,1,3,Active Shallow Crust,0.0,89.98735,0.0,06/20/0026 +5.78176,45.2552,3505,5,15,19,41,15,3.65,15.0,fr,2005,70,86893,1,1,Active Shallow Crust,0.0,89.98735,0.0,05/15/3505 +5.78176,45.2552,5564,8,4,8,18,43,3.65,5.0,fr,2006,111,86895,1,2,Active Shallow Crust,240.0001,58.013,0.0,08/04/5564 +5.78176,45.2552,5705,9,22,1,8,46,3.65,5.0,fr,2007,114,86895,1,2,Active Shallow Crust,240.0001,58.013,0.0,09/22/5705 +5.78176,45.2552,6726,11,11,22,12,44,3.65,15.0,fr,2008,134,86896,1,1,Active Shallow Crust,240.0001,58.013,0.0,11/11/6726 +5.78176,45.2552,9044,3,23,7,55,57,3.75,5.0,fr,2009,180,86904,1,3,Active Shallow Crust,0.0,89.98872,0.0,03/23/9044 +5.78176,45.2552,442,12,1,23,1,1,3.75,5.0,fr,2010,8,86904,1,3,Active Shallow Crust,0.0,89.98872,0.0,12/01/0442 +5.78176,45.2552,4183,10,10,9,33,51,3.75,5.0,fr,2011,83,86904,1,3,Active Shallow Crust,0.0,89.98872,0.0,10/10/4183 +5.78176,45.2552,1579,3,18,0,0,45,3.75,15.0,fr,2012,31,86905,1,2,Active Shallow Crust,0.0,89.98872,0.0,03/18/1579 +5.78176,45.2552,529,3,15,17,30,24,3.75,15.0,fr,2013,10,86905,1,2,Active Shallow Crust,0.0,89.98872,0.0,03/15/0529 +5.78176,45.2552,250,6,19,7,1,38,3.75,5.0,fr,2014,4,86907,1,1,Active Shallow Crust,240.0089,58.01711,0.0,06/19/0250 +5.78176,45.2552,1076,1,25,12,21,15,3.85,15.0,fr,2015,21,86917,1,1,Active Shallow Crust,0.0,89.98995,0.0,01/25/1076 +5.78176,45.2552,6119,7,4,6,7,2,3.85,5.0,fr,2016,122,86919,1,2,Active Shallow Crust,240.0106,57.99844,0.0,07/04/6119 +5.78176,45.2552,1014,12,6,13,36,51,3.85,5.0,fr,2017,20,86919,1,2,Active Shallow Crust,240.0106,57.99844,0.0,12/06/1014 +5.78176,45.2552,8136,1,2,6,35,26,3.85,15.0,fr,2018,162,86920,1,1,Active Shallow Crust,240.0106,57.99844,0.0,01/02/8136 +5.78176,45.2552,1891,5,13,16,42,50,3.95,5.0,fr,2019,37,86928,1,1,Active Shallow Crust,0.0,89.99104,0.0,05/13/1891 +5.78176,45.2552,7823,10,27,17,51,14,3.95,15.0,fr,2020,156,86938,1,1,Active Shallow Crust,128.9007,89.99328,0.0,10/27/7823 +5.78176,45.2552,2267,8,2,1,46,3,4.15,5.0,fr,2021,45,86952,1,1,Active Shallow Crust,0.0,89.98933,0.0,08/02/2267 +5.78176,45.2552,521,4,13,2,2,30,4.15,15.0,fr,2022,10,86953,1,2,Active Shallow Crust,0.0,89.98933,0.0,04/13/0521 +5.78176,45.2552,2825,5,15,18,34,32,4.15,15.0,fr,2023,56,86953,1,2,Active Shallow Crust,0.0,89.98933,0.0,05/15/2825 +5.78176,45.2552,351,4,29,2,10,0,4.15,5.0,fr,2024,7,86958,1,2,Active Shallow Crust,0.0,89.9892,-90.0,04/29/0351 +5.78176,45.2552,5611,12,18,11,35,53,4.15,5.0,fr,2025,112,86958,1,2,Active Shallow Crust,0.0,89.9892,-90.0,12/18/5611 +5.78176,45.2552,4549,12,11,3,52,57,4.15,5.0,fr,2026,90,86961,1,1,Active Shallow Crust,128.8977,89.99467,0.0,12/11/4549 +5.78176,45.2552,6244,4,5,3,41,54,4.25,5.0,fr,2027,124,86964,1,1,Active Shallow Crust,0.0,89.99049,0.0,04/05/6244 +5.78176,45.2552,1270,12,29,8,23,15,4.45,5.0,fr,2028,25,86988,1,1,Active Shallow Crust,0.0,89.98992,0.0,12/29/1270 +5.78176,45.2552,6935,8,25,2,9,8,4.55,5.0,fr,2029,138,87003,1,1,Active Shallow Crust,240.0088,57.99747,0.0,08/25/6935 +5.78176,45.2552,4595,2,14,2,6,0,4.75,5.0,fr,2030,91,87024,1,1,Active Shallow Crust,0.0,89.9893,0.0,02/14/4595 +5.78176,45.2552,9967,1,22,19,20,23,4.85,15.0,fr,2031,199,87037,1,1,Active Shallow Crust,0.0,89.99046,0.0,01/22/9967 +5.78176,45.2552,7488,3,16,21,57,40,5.15,5.0,fr,2032,149,87078,1,1,Active Shallow Crust,0.0,89.98975,-90.0,03/16/7488 +5.78176,45.2552,1520,9,14,4,44,25,5.45,15.0,fr,2033,30,87115,1,1,Active Shallow Crust,0.0,89.99033,-90.0,09/14/1520 +5.78176,45.2552,1870,4,9,15,3,44,5.55,27.5,fr,2034,37,87122,1,1,Active Shallow Crust,0.0,89.99006,0.0,04/09/1870 +-1.06598,47.42481,8573,10,6,18,22,53,3.55,15.0,fr,2035,171,87361,1,1,Active Shallow Crust,0.0,89.98977,0.0,10/06/8573 +-1.06598,47.42481,510,5,9,23,15,19,3.55,5.0,fr,2036,10,87363,1,4,Active Shallow Crust,240.0124,57.99838,0.0,05/09/0510 +-1.06598,47.42481,3792,2,29,4,10,43,3.55,5.0,fr,2037,75,87363,1,4,Active Shallow Crust,240.0124,57.99838,0.0,02/29/3792 +-1.06598,47.42481,786,4,5,7,17,30,3.55,5.0,fr,2038,15,87363,1,4,Active Shallow Crust,240.0124,57.99838,0.0,04/05/0786 +-1.06598,47.42481,3631,2,11,11,54,47,3.55,5.0,fr,2039,72,87363,1,4,Active Shallow Crust,240.0124,57.99838,0.0,02/11/3631 +-1.06598,47.42481,9823,2,12,5,15,36,3.65,15.0,fr,2040,196,87373,1,1,Active Shallow Crust,0.0,89.98936,0.0,02/12/9823 +-1.06598,47.42481,6225,4,17,1,14,13,3.75,5.0,fr,2041,124,87384,1,2,Active Shallow Crust,0.0,89.99052,0.0,04/17/6225 +-1.06598,47.42481,5832,6,6,14,55,27,3.75,5.0,fr,2042,116,87384,1,2,Active Shallow Crust,0.0,89.99052,0.0,06/06/5832 +-1.06598,47.42481,3565,7,20,15,0,16,3.75,5.0,fr,2043,71,87390,1,1,Active Shallow Crust,0.0,89.99041,-90.0,07/20/3565 +-1.06598,47.42481,7968,10,25,22,13,32,3.75,5.0,fr,2044,159,87393,1,1,Active Shallow Crust,128.8964,89.96738,0.0,10/25/7968 +-1.06598,47.42481,505,3,6,3,51,27,3.85,5.0,fr,2045,10,87399,1,1,Active Shallow Crust,240.0111,57.99778,0.0,03/06/0505 +-1.06598,47.42481,1372,3,15,14,23,43,3.85,15.0,fr,2046,27,87400,1,1,Active Shallow Crust,240.0111,57.99778,0.0,03/15/1372 +-1.06598,47.42481,6786,10,31,6,38,0,3.95,5.0,fr,2047,135,87414,1,1,Active Shallow Crust,0.0,89.9902,-90.0,10/31/6786 +-1.06598,47.42481,636,6,17,14,55,4,4.05,5.0,fr,2048,12,87420,1,2,Active Shallow Crust,0.0,89.99041,0.0,06/17/0636 +-1.06598,47.42481,7845,12,22,15,28,44,4.05,5.0,fr,2049,156,87420,1,2,Active Shallow Crust,0.0,89.99041,0.0,12/22/7845 +-1.06598,47.42481,5451,3,3,16,13,36,4.15,5.0,fr,2050,109,87432,1,1,Active Shallow Crust,0.0,89.98974,0.0,03/03/5451 +-1.06598,47.42481,3148,2,19,4,3,6,4.15,15.0,fr,2051,62,87433,1,1,Active Shallow Crust,0.0,89.98974,0.0,02/19/3148 +-1.06598,47.42481,7365,8,23,5,7,27,4.35,5.0,fr,2052,147,87456,1,1,Active Shallow Crust,0.0,89.98981,0.0,08/23/7365 +-1.06598,47.42481,9919,5,2,3,58,10,5.25,15.0,fr,2053,198,87565,1,1,Active Shallow Crust,359.9999,89.99012,0.0,05/02/9919 +4.92959,46.44483,8732,1,9,9,13,3,3.55,5.0,fr,2054,174,87840,1,1,Active Shallow Crust,0.0,89.99305,0.0,01/09/8732 +4.92959,46.44483,9591,3,9,21,50,11,3.65,5.0,fr,2055,191,87852,1,1,Active Shallow Crust,0.0,89.98762,0.0,03/09/9591 +4.92959,46.44483,3487,10,7,0,46,25,3.85,15.0,fr,2056,69,87877,1,1,Active Shallow Crust,0.0,89.99016,0.0,10/07/3487 +4.92959,46.44483,346,8,25,7,18,25,3.95,5.0,fr,2057,6,87888,1,1,Active Shallow Crust,0.0,89.99123,0.0,08/25/0346 +4.92959,46.44483,1320,4,16,5,16,40,4.05,15.0,fr,2058,26,87901,1,1,Active Shallow Crust,0.0,89.98828,0.0,04/16/1320 +4.92959,46.44483,8626,7,27,9,32,23,4.15,5.0,fr,2059,172,87915,1,1,Active Shallow Crust,240.0087,57.99749,0.0,07/27/8626 +4.92959,46.44483,21,10,6,3,32,44,4.25,5.0,fr,2060,0,87924,1,1,Active Shallow Crust,0.0,89.99068,0.0,10/06/0021 +4.92959,46.44483,6427,12,9,20,30,35,4.65,27.5,fr,2061,128,87977,1,1,Active Shallow Crust,240.011,57.99435,0.0,12/09/6427 +-3.32253,44.05504,6975,2,26,23,27,13,3.55,5.0,fr,2062,139,88326,1,1,Active Shallow Crust,0.0,89.98901,-90.0,02/26/6975 +-3.32253,44.05504,8174,7,13,12,47,31,4.25,27.5,fr,2063,163,88406,1,1,Active Shallow Crust,0.0,89.99029,0.0,07/13/8174 +6.75731,46.8095,279,5,2,17,50,28,3.55,5.0,fr,2064,5,88800,1,9,Active Shallow Crust,0.0,89.9931,0.0,05/02/0279 +6.75731,46.8095,495,5,14,19,25,40,3.55,5.0,fr,2065,9,88800,1,9,Active Shallow Crust,0.0,89.9931,0.0,05/14/0495 +6.75731,46.8095,8967,6,5,22,47,57,3.55,5.0,fr,2066,179,88800,1,9,Active Shallow Crust,0.0,89.9931,0.0,06/05/8967 +6.75731,46.8095,9658,9,11,1,52,7,3.55,5.0,fr,2067,193,88800,1,9,Active Shallow Crust,0.0,89.9931,0.0,09/11/9658 +6.75731,46.8095,2636,6,15,5,46,16,3.55,5.0,fr,2068,52,88800,1,9,Active Shallow Crust,0.0,89.9931,0.0,06/15/2636 +6.75731,46.8095,5319,12,6,10,57,26,3.55,5.0,fr,2069,106,88800,1,9,Active Shallow Crust,0.0,89.9931,0.0,12/06/5319 +6.75731,46.8095,737,8,28,11,3,58,3.55,5.0,fr,2070,14,88800,1,9,Active Shallow Crust,0.0,89.9931,0.0,08/28/0737 +6.75731,46.8095,5588,7,6,8,44,44,3.55,5.0,fr,2071,111,88800,1,9,Active Shallow Crust,0.0,89.9931,0.0,07/06/5588 +6.75731,46.8095,6895,9,16,10,43,28,3.55,5.0,fr,2072,137,88800,1,9,Active Shallow Crust,0.0,89.9931,0.0,09/16/6895 +6.75731,46.8095,1093,4,27,14,50,10,3.55,15.0,fr,2073,21,88801,1,1,Active Shallow Crust,0.0,89.9931,0.0,04/27/1093 +6.75731,46.8095,3998,2,20,12,28,34,3.55,27.5,fr,2074,79,88802,1,4,Active Shallow Crust,0.0,89.9931,0.0,02/20/3998 +6.75731,46.8095,8631,7,29,1,21,44,3.55,27.5,fr,2075,172,88802,1,4,Active Shallow Crust,0.0,89.9931,0.0,07/29/8631 +6.75731,46.8095,9147,6,4,19,18,18,3.55,27.5,fr,2076,182,88802,1,4,Active Shallow Crust,0.0,89.9931,0.0,06/04/9147 +6.75731,46.8095,5158,1,5,13,19,30,3.55,27.5,fr,2077,103,88802,1,4,Active Shallow Crust,0.0,89.9931,0.0,01/05/5158 +6.75731,46.8095,8830,11,6,9,31,54,3.55,5.0,fr,2078,176,88803,1,2,Active Shallow Crust,240.0132,57.99704,0.0,11/06/8830 +6.75731,46.8095,7908,9,28,14,53,22,3.55,5.0,fr,2079,158,88803,1,2,Active Shallow Crust,240.0132,57.99704,0.0,09/28/7908 +6.75731,46.8095,8056,9,13,20,50,48,3.55,15.0,fr,2080,161,88804,1,1,Active Shallow Crust,240.0132,57.99704,0.0,09/13/8056 +6.75731,46.8095,1407,12,14,9,9,39,3.55,15.0,fr,2081,28,88807,1,2,Active Shallow Crust,0.0,89.99302,-90.0,12/14/1407 +6.75731,46.8095,8250,2,24,23,42,23,3.55,15.0,fr,2082,164,88807,1,2,Active Shallow Crust,0.0,89.99302,-90.0,02/24/8250 +6.75731,46.8095,4493,3,28,20,29,20,3.55,15.0,fr,2083,89,88810,1,2,Active Shallow Crust,128.8964,89.9931,0.0,03/28/4493 +6.75731,46.8095,8919,5,13,20,37,6,3.55,15.0,fr,2084,178,88810,1,2,Active Shallow Crust,128.8964,89.9931,0.0,05/13/8919 +6.75731,46.8095,8706,5,10,8,33,50,3.55,27.5,fr,2085,174,88811,1,1,Active Shallow Crust,128.8964,89.9931,0.0,05/10/8706 +6.75731,46.8095,9312,1,17,5,9,10,3.65,5.0,fr,2086,186,88812,1,8,Active Shallow Crust,0.0,89.9877,0.0,01/17/9312 +6.75731,46.8095,9654,8,24,20,47,41,3.65,5.0,fr,2087,193,88812,1,8,Active Shallow Crust,0.0,89.9877,0.0,08/24/9654 +6.75731,46.8095,1519,12,18,2,26,41,3.65,5.0,fr,2088,30,88812,1,8,Active Shallow Crust,0.0,89.9877,0.0,12/18/1519 +6.75731,46.8095,9468,8,27,11,19,8,3.65,5.0,fr,2089,189,88812,1,8,Active Shallow Crust,0.0,89.9877,0.0,08/27/9468 +6.75731,46.8095,7748,4,7,16,15,35,3.65,5.0,fr,2090,154,88812,1,8,Active Shallow Crust,0.0,89.9877,0.0,04/07/7748 +6.75731,46.8095,3502,7,4,21,30,34,3.65,5.0,fr,2091,70,88812,1,8,Active Shallow Crust,0.0,89.9877,0.0,07/04/3502 +6.75731,46.8095,3721,11,24,11,58,41,3.65,5.0,fr,2092,74,88812,1,8,Active Shallow Crust,0.0,89.9877,0.0,11/24/3721 +6.75731,46.8095,3162,10,22,3,37,51,3.65,5.0,fr,2093,63,88812,1,8,Active Shallow Crust,0.0,89.9877,0.0,10/22/3162 +6.75731,46.8095,9022,3,21,13,51,45,3.65,15.0,fr,2094,180,88813,1,2,Active Shallow Crust,0.0,89.9877,0.0,03/21/9022 +6.75731,46.8095,9548,6,16,7,1,24,3.65,15.0,fr,2095,190,88813,1,2,Active Shallow Crust,0.0,89.9877,0.0,06/16/9548 +6.75731,46.8095,3909,10,10,17,4,18,3.65,27.5,fr,2096,78,88814,1,1,Active Shallow Crust,0.0,89.9877,0.0,10/10/3909 +6.75731,46.8095,4634,10,26,1,32,21,3.65,5.0,fr,2097,92,88818,1,1,Active Shallow Crust,0.0,89.98756,-90.0,10/26/4634 +6.75731,46.8095,86,12,30,13,40,4,3.65,15.0,fr,2098,1,88819,1,1,Active Shallow Crust,0.0,89.98756,-90.0,12/30/0086 +6.75731,46.8095,5730,9,21,3,16,15,3.65,5.0,fr,2099,114,88821,1,2,Active Shallow Crust,128.9001,89.96353,0.0,09/21/5730 +6.75731,46.8095,1032,1,20,1,38,47,3.65,5.0,fr,2100,20,88821,1,2,Active Shallow Crust,128.9001,89.96353,0.0,01/20/1032 +6.75731,46.8095,5123,5,30,5,41,2,3.75,5.0,fr,2101,102,88824,1,6,Active Shallow Crust,0.0,89.98904,0.0,05/30/5123 +6.75731,46.8095,1560,4,19,7,4,31,3.75,5.0,fr,2102,31,88824,1,6,Active Shallow Crust,0.0,89.98904,0.0,04/19/1560 +6.75731,46.8095,7654,8,3,2,2,52,3.75,5.0,fr,2103,153,88824,1,6,Active Shallow Crust,0.0,89.98904,0.0,08/03/7654 +6.75731,46.8095,6080,11,30,14,43,17,3.75,5.0,fr,2104,121,88824,1,6,Active Shallow Crust,0.0,89.98904,0.0,11/30/6080 +6.75731,46.8095,1628,12,19,18,29,58,3.75,5.0,fr,2105,32,88824,1,6,Active Shallow Crust,0.0,89.98904,0.0,12/19/1628 +6.75731,46.8095,2014,1,23,19,2,45,3.75,5.0,fr,2106,40,88824,1,6,Active Shallow Crust,0.0,89.98904,0.0,01/23/2014 +6.75731,46.8095,9492,9,24,4,32,4,3.75,15.0,fr,2107,189,88825,1,2,Active Shallow Crust,0.0,89.98904,0.0,09/24/9492 +6.75731,46.8095,7947,6,13,18,37,55,3.75,15.0,fr,2108,158,88825,1,2,Active Shallow Crust,0.0,89.98904,0.0,06/13/7947 +6.75731,46.8095,8627,4,8,5,20,37,3.75,27.5,fr,2109,172,88826,1,1,Active Shallow Crust,0.0,89.98904,0.0,04/08/8627 +6.75731,46.8095,4925,12,18,20,41,43,3.75,5.0,fr,2110,98,88827,1,1,Active Shallow Crust,240.009,58.01784,0.0,12/18/4925 +6.75731,46.8095,7387,9,30,23,16,13,3.75,15.0,fr,2111,147,88828,1,1,Active Shallow Crust,240.009,58.01784,0.0,09/30/7387 +6.75731,46.8095,9917,11,19,9,55,55,3.75,15.0,fr,2112,198,88831,1,1,Active Shallow Crust,0.0,89.98891,-90.0,11/19/9917 +6.75731,46.8095,242,5,18,3,43,42,3.75,5.0,fr,2113,4,88833,1,1,Active Shallow Crust,128.8965,89.9675,0.0,05/18/0242 +6.75731,46.8095,6848,5,22,21,37,10,3.75,15.0,fr,2114,136,88834,1,1,Active Shallow Crust,128.8965,89.9675,0.0,05/22/6848 +6.75731,46.8095,1318,12,27,8,55,12,3.85,5.0,fr,2115,26,88836,1,4,Active Shallow Crust,0.0,89.99023,0.0,12/27/1318 +6.75731,46.8095,9348,5,19,21,16,39,3.85,5.0,fr,2116,186,88836,1,4,Active Shallow Crust,0.0,89.99023,0.0,05/19/9348 +6.75731,46.8095,5537,1,22,9,35,3,3.85,5.0,fr,2117,110,88836,1,4,Active Shallow Crust,0.0,89.99023,0.0,01/22/5537 +6.75731,46.8095,3261,1,4,4,40,30,3.85,5.0,fr,2118,65,88836,1,4,Active Shallow Crust,0.0,89.99023,0.0,01/04/3261 +6.75731,46.8095,3992,8,13,15,39,59,3.85,15.0,fr,2119,79,88837,1,3,Active Shallow Crust,0.0,89.99023,0.0,08/13/3992 +6.75731,46.8095,6574,12,12,10,5,56,3.85,15.0,fr,2120,131,88837,1,3,Active Shallow Crust,0.0,89.99023,0.0,12/12/6574 +6.75731,46.8095,1992,8,15,23,36,46,3.85,15.0,fr,2121,39,88837,1,3,Active Shallow Crust,0.0,89.99023,0.0,08/15/1992 +6.75731,46.8095,6603,12,26,3,58,43,3.85,5.0,fr,2122,132,88839,1,1,Active Shallow Crust,240.0104,57.99775,0.0,12/26/6603 +6.75731,46.8095,215,6,15,11,33,50,3.85,15.0,fr,2123,4,88843,1,1,Active Shallow Crust,0.0,89.99011,-90.0,06/15/0215 +6.75731,46.8095,2912,12,10,21,48,3,3.95,5.0,fr,2124,58,88848,1,9,Active Shallow Crust,0.0,89.99129,0.0,12/10/2912 +6.75731,46.8095,1854,11,22,22,57,51,3.95,5.0,fr,2125,37,88848,1,9,Active Shallow Crust,0.0,89.99129,0.0,11/22/1854 +6.75731,46.8095,2556,4,29,9,14,47,3.95,5.0,fr,2126,51,88848,1,9,Active Shallow Crust,0.0,89.99129,0.0,04/29/2556 +6.75731,46.8095,3811,2,19,21,39,9,3.95,5.0,fr,2127,76,88848,1,9,Active Shallow Crust,0.0,89.99129,0.0,02/19/3811 +6.75731,46.8095,645,2,21,23,34,28,3.95,5.0,fr,2128,12,88848,1,9,Active Shallow Crust,0.0,89.99129,0.0,02/21/0645 +6.75731,46.8095,4774,9,8,1,51,49,3.95,5.0,fr,2129,95,88848,1,9,Active Shallow Crust,0.0,89.99129,0.0,09/08/4774 +6.75731,46.8095,2698,5,19,20,7,34,3.95,5.0,fr,2130,53,88848,1,9,Active Shallow Crust,0.0,89.99129,0.0,05/19/2698 +6.75731,46.8095,876,4,25,18,2,12,3.95,5.0,fr,2131,17,88848,1,9,Active Shallow Crust,0.0,89.99129,0.0,04/25/0876 +6.75731,46.8095,1838,10,31,19,50,15,3.95,5.0,fr,2132,36,88848,1,9,Active Shallow Crust,0.0,89.99129,0.0,10/31/1838 +6.75731,46.8095,4153,1,9,9,22,44,3.95,15.0,fr,2133,83,88849,1,1,Active Shallow Crust,0.0,89.99129,0.0,01/09/4153 +6.75731,46.8095,7374,7,29,23,4,21,3.95,15.0,fr,2134,147,88852,1,1,Active Shallow Crust,240.0191,58.00507,0.0,07/29/7374 +6.75731,46.8095,4517,3,7,11,42,58,4.05,5.0,fr,2135,90,88860,1,4,Active Shallow Crust,0.0,89.98836,0.0,03/07/4517 +6.75731,46.8095,7812,6,8,1,5,12,4.05,5.0,fr,2136,156,88860,1,4,Active Shallow Crust,0.0,89.98836,0.0,06/08/7812 +6.75731,46.8095,8189,5,9,6,23,53,4.05,5.0,fr,2137,163,88860,1,4,Active Shallow Crust,0.0,89.98836,0.0,05/09/8189 +6.75731,46.8095,9488,5,17,0,43,40,4.05,5.0,fr,2138,189,88860,1,4,Active Shallow Crust,0.0,89.98836,0.0,05/17/9488 +6.75731,46.8095,909,11,15,10,21,53,4.05,15.0,fr,2139,18,88861,1,1,Active Shallow Crust,0.0,89.98836,0.0,11/15/0909 +6.75731,46.8095,7639,5,16,18,10,29,4.05,5.0,fr,2140,152,88863,1,1,Active Shallow Crust,240.0057,58.00645,0.0,05/16/7639 +6.75731,46.8095,8267,1,7,12,32,20,4.05,5.0,fr,2141,165,88866,1,2,Active Shallow Crust,0.0,89.98822,-90.0,01/07/8267 +6.75731,46.8095,691,1,10,23,40,42,4.05,5.0,fr,2142,13,88866,1,2,Active Shallow Crust,0.0,89.98822,-90.0,01/10/0691 +6.75731,46.8095,769,3,19,17,23,16,4.05,5.0,fr,2143,15,88869,1,1,Active Shallow Crust,128.8894,89.99418,0.0,03/19/0769 +6.75731,46.8095,1916,12,6,12,55,43,4.15,5.0,fr,2144,38,88872,1,3,Active Shallow Crust,0.0,89.98962,0.0,12/06/1916 +6.75731,46.8095,8511,10,25,22,23,36,4.15,5.0,fr,2145,170,88872,1,3,Active Shallow Crust,0.0,89.98962,0.0,10/25/8511 +6.75731,46.8095,9001,4,12,16,25,46,4.15,5.0,fr,2146,180,88872,1,3,Active Shallow Crust,0.0,89.98962,0.0,04/12/9001 +6.75731,46.8095,4751,5,15,13,54,33,4.15,15.0,fr,2147,95,88873,1,1,Active Shallow Crust,0.0,89.98962,0.0,05/15/4751 +6.75731,46.8095,3897,2,10,15,25,45,4.15,27.5,fr,2148,77,88874,1,1,Active Shallow Crust,0.0,89.98962,0.0,02/10/3897 +6.75731,46.8095,7265,8,27,18,0,31,4.15,5.0,fr,2149,145,88878,1,1,Active Shallow Crust,0.0,89.9895,-90.0,08/27/7265 +6.75731,46.8095,519,11,24,11,38,53,4.25,5.0,fr,2150,10,88884,1,5,Active Shallow Crust,0.0,89.99075,0.0,11/24/0519 +6.75731,46.8095,1292,11,18,17,34,50,4.25,5.0,fr,2151,25,88884,1,5,Active Shallow Crust,0.0,89.99075,0.0,11/18/1292 +6.75731,46.8095,7449,2,4,11,11,10,4.25,5.0,fr,2152,148,88884,1,5,Active Shallow Crust,0.0,89.99075,0.0,02/04/7449 +6.75731,46.8095,6145,9,30,11,51,56,4.25,5.0,fr,2153,122,88884,1,5,Active Shallow Crust,0.0,89.99075,0.0,09/30/6145 +6.75731,46.8095,9360,2,11,17,5,7,4.25,5.0,fr,2154,187,88884,1,5,Active Shallow Crust,0.0,89.99075,0.0,02/11/9360 +6.75731,46.8095,2524,9,5,9,52,28,4.25,15.0,fr,2155,50,88885,1,1,Active Shallow Crust,0.0,89.99075,0.0,09/05/2524 +6.75731,46.8095,4534,7,13,1,34,45,4.25,27.5,fr,2156,90,88889,1,1,Active Shallow Crust,240.0076,57.9941,0.0,07/13/4534 +6.75731,46.8095,810,8,10,19,37,15,4.25,5.0,fr,2157,16,88893,1,1,Active Shallow Crust,128.8943,89.98041,0.0,08/10/0810 +6.75731,46.8095,6938,11,22,5,21,33,4.35,5.0,fr,2158,138,88902,1,2,Active Shallow Crust,0.0,89.98888,-90.0,11/22/6938 +6.75731,46.8095,8262,2,7,0,41,36,4.35,5.0,fr,2159,165,88902,1,2,Active Shallow Crust,0.0,89.98888,-90.0,02/07/8262 +6.75731,46.8095,6289,7,11,6,9,43,4.35,15.0,fr,2160,125,88903,1,1,Active Shallow Crust,0.0,89.98888,-90.0,07/11/6289 +6.75731,46.8095,2437,12,4,22,34,9,4.45,5.0,fr,2161,48,88908,1,2,Active Shallow Crust,0.0,89.9902,0.0,12/04/2437 +6.75731,46.8095,6478,6,4,0,24,46,4.45,5.0,fr,2162,129,88908,1,2,Active Shallow Crust,0.0,89.9902,0.0,06/04/6478 +6.75731,46.8095,6637,4,5,9,1,44,4.45,5.0,fr,2163,132,88911,1,2,Active Shallow Crust,240.0056,57.99446,0.0,04/05/6637 +6.75731,46.8095,615,7,25,12,7,23,4.45,5.0,fr,2164,12,88911,1,2,Active Shallow Crust,240.0056,57.99446,0.0,07/25/0615 +6.75731,46.8095,8900,4,9,8,46,37,4.45,5.0,fr,2165,177,88914,1,1,Active Shallow Crust,0.0,89.99009,-90.0,04/09/8900 +6.75731,46.8095,3005,2,1,14,2,13,4.45,5.0,fr,2166,60,88917,1,1,Active Shallow Crust,128.8917,89.99388,0.0,02/01/3005 +6.75731,46.8095,4166,10,29,23,47,9,4.55,5.0,fr,2167,83,88920,1,2,Active Shallow Crust,0.0,89.98909,0.0,10/29/4166 +6.75731,46.8095,5377,12,16,17,51,11,4.55,5.0,fr,2168,107,88920,1,2,Active Shallow Crust,0.0,89.98909,0.0,12/16/5377 +6.75731,46.8095,243,7,5,6,30,9,4.65,15.0,fr,2169,4,88933,1,1,Active Shallow Crust,0.0,89.99027,0.0,07/05/0243 +6.75731,46.8095,5465,8,5,1,31,20,4.75,5.0,fr,2170,109,88944,1,1,Active Shallow Crust,0.0,89.98959,0.0,08/05/5465 +6.75731,46.8095,3100,2,7,13,4,58,4.75,15.0,fr,2171,61,88948,1,2,Active Shallow Crust,240.0076,58.00451,0.0,02/07/3100 +6.75731,46.8095,1120,5,8,19,52,9,4.75,15.0,fr,2172,22,88948,1,2,Active Shallow Crust,240.0076,58.00451,0.0,05/08/1120 +6.75731,46.8095,9792,1,19,4,0,56,4.85,5.0,fr,2173,195,88956,1,1,Active Shallow Crust,0.0,89.99073,0.0,01/19/9792 +6.75731,46.8095,1307,7,1,9,44,50,5.25,5.0,fr,2174,26,89004,1,1,Active Shallow Crust,0.0,89.99025,0.0,07/01/1307 +6.75731,46.8095,3069,8,18,18,19,17,5.55,15.0,fr,2175,61,89044,1,1,Active Shallow Crust,240.033,57.99947,0.0,08/18/3069 +6.757312,46.8095,7058,6,22,22,1,2,6.15,6.011322,fr,2176,141,89112,1,1,Active Shallow Crust,0.0,89.98996,0.0,06/22/7058 +6.736069,46.83467,4125,5,11,6,7,51,6.75,10.17163,fr,2177,82,89187,1,1,Active Shallow Crust,240.1295,58.00037,0.0,05/11/4125 +6.757326,46.8095,3078,6,30,5,37,2,6.75,11.85687,fr,2178,61,89190,1,1,Active Shallow Crust,0.0,89.98998,-90.0,06/30/3078 +6.757333,46.8095,8413,2,22,22,23,7,6.95,15.09976,fr,2179,168,89208,1,1,Active Shallow Crust,0.0,89.98999,0.0,02/22/8413 +6.757339,46.8095,8035,1,27,2,50,32,7.45,17.5,fr,2180,160,89268,1,1,Active Shallow Crust,359.9999,89.99001,0.0,01/27/8035 +-2.85601,49.96834,9013,7,29,22,39,52,3.55,15.0,fr,2181,180,89284,1,1,Active Shallow Crust,240.012,57.99835,0.0,07/29/9013 +4.83538,49.48362,7881,7,16,12,13,17,4.15,15.0,fr,2182,157,89833,1,1,Active Shallow Crust,0.0,89.99015,0.0,07/16/7881 +4.29407,49.90525,7669,10,21,6,39,13,3.55,15.0,fr,2183,153,90241,1,1,Active Shallow Crust,0.0,89.98701,0.0,10/21/7669 +4.29407,49.90525,1584,11,11,1,24,7,3.65,15.0,fr,2184,31,90253,1,1,Active Shallow Crust,0.0,89.98843,0.0,11/11/1584 +4.29407,49.90525,1353,10,21,18,16,18,3.75,5.0,fr,2185,27,90270,1,1,Active Shallow Crust,0.0,89.98956,-90.0,10/21/1353 +4.29407,49.90525,3913,2,9,3,28,16,3.95,5.0,fr,2186,78,90288,1,1,Active Shallow Crust,0.0,89.99181,0.0,02/09/3913 +4.29407,49.90525,606,2,27,23,35,41,4.15,15.0,fr,2187,12,90313,1,1,Active Shallow Crust,0.0,89.99023,0.0,02/27/0606 +-4.20878,49.85493,6208,1,31,0,8,45,3.75,5.0,fr,2188,124,90744,1,1,Active Shallow Crust,0.0,89.98967,0.0,01/31/6208 +-4.20878,49.85493,3060,10,7,10,0,25,4.25,5.0,fr,2189,61,90804,1,1,Active Shallow Crust,0.0,89.99129,0.0,10/07/3060 +-4.20878,49.85493,2910,8,22,1,45,10,4.55,5.0,fr,2190,58,90840,1,1,Active Shallow Crust,0.0,89.98972,0.0,08/22/2910 +-2.41502,48.39394,7352,8,15,1,38,1,3.55,5.0,fr,2191,147,91200,1,1,Active Shallow Crust,0.0,89.98996,0.0,08/15/7352 +-2.41502,48.39394,6131,1,11,13,3,38,3.55,5.0,fr,2192,122,91203,1,2,Active Shallow Crust,240.0129,57.9982,0.0,01/11/6131 +-2.41502,48.39394,5029,12,23,17,24,11,3.55,5.0,fr,2193,100,91203,1,2,Active Shallow Crust,240.0129,57.9982,0.0,12/23/5029 +-2.41502,48.39394,5228,11,19,10,27,44,3.55,5.0,fr,2194,104,91209,1,1,Active Shallow Crust,128.8961,89.9933,0.0,11/19/5228 +-2.41502,48.39394,4149,8,29,1,48,49,3.75,5.0,fr,2195,82,91224,1,1,Active Shallow Crust,0.0,89.98936,0.0,08/29/4149 +-2.41502,48.39394,5222,9,7,22,7,15,3.85,5.0,fr,2196,104,91236,1,1,Active Shallow Crust,0.0,89.99052,0.0,09/07/5222 +-2.41502,48.39394,2800,4,16,5,48,30,3.85,15.0,fr,2197,55,91237,1,1,Active Shallow Crust,0.0,89.99052,0.0,04/16/2800 +-2.41502,48.39394,2124,1,3,6,5,15,4.05,5.0,fr,2198,42,91260,1,1,Active Shallow Crust,0.0,89.99059,0.0,01/03/2124 +-2.41502,48.39394,9797,1,16,21,49,35,4.05,5.0,fr,2199,195,91269,1,1,Active Shallow Crust,128.89,89.99341,0.0,01/16/9797 +-2.41502,48.39394,5048,3,8,9,26,31,4.25,5.0,fr,2200,100,91284,1,1,Active Shallow Crust,0.0,89.98953,0.0,03/08/5048 +-2.41502,48.39394,1827,5,26,0,40,13,4.45,5.0,fr,2201,36,91311,1,1,Active Shallow Crust,240.0058,57.99463,0.0,05/26/1827 +-2.41502,48.39394,3906,5,10,5,45,50,4.45,5.0,fr,2202,78,91314,1,1,Active Shallow Crust,0.0,89.99039,-90.0,05/10/3906 +-2.41502,48.39394,3473,9,9,19,44,58,4.55,5.0,fr,2203,69,91329,1,1,Active Shallow Crust,128.8931,89.98598,0.0,09/09/3473 +7.73368,44.5652,8904,10,3,13,5,9,3.55,15.0,fr,2204,178,91687,1,1,Active Shallow Crust,0.0,89.99273,-90.0,10/03/8904 +7.73368,44.5652,5986,12,7,5,49,54,3.65,5.0,fr,2205,119,91692,1,1,Active Shallow Crust,0.0,89.98719,0.0,12/07/5986 +7.73368,44.5652,2777,2,8,8,8,46,3.65,15.0,fr,2206,55,91693,1,1,Active Shallow Crust,0.0,89.98719,0.0,02/08/2777 +7.73368,44.5652,5786,2,3,23,37,58,3.75,5.0,fr,2207,115,91704,1,2,Active Shallow Crust,0.0,89.98859,0.0,02/03/5786 +7.73368,44.5652,2324,6,16,4,59,37,3.75,5.0,fr,2208,46,91704,1,2,Active Shallow Crust,0.0,89.98859,0.0,06/16/2324 +7.73368,44.5652,821,9,22,9,39,29,3.85,15.0,fr,2209,16,91717,1,1,Active Shallow Crust,0.0,89.98983,0.0,09/22/0821 +7.73368,44.5652,152,1,29,6,4,3,3.85,5.0,fr,2210,3,91722,1,1,Active Shallow Crust,0.0,89.98971,-90.0,01/29/0152 +7.73368,44.5652,3791,9,14,7,26,3,3.85,5.0,fr,2211,75,91725,1,1,Active Shallow Crust,128.8958,89.99491,0.0,09/14/3791 +7.73368,44.5652,1776,9,7,20,39,15,3.95,5.0,fr,2212,35,91728,1,1,Active Shallow Crust,0.0,89.99094,0.0,09/07/1776 +7.73368,44.5652,658,9,4,11,40,8,3.95,15.0,fr,2213,13,91729,1,1,Active Shallow Crust,0.0,89.99094,0.0,09/04/0658 +7.73368,44.5652,1299,5,6,7,0,21,3.95,5.0,fr,2214,25,91731,1,1,Active Shallow Crust,240.0192,58.0048,0.0,05/06/1299 +7.73368,44.5652,3807,9,7,9,18,35,3.95,15.0,fr,2215,76,91738,1,1,Active Shallow Crust,128.9014,89.9932,0.0,09/07/3807 +7.73368,44.5652,4710,11,12,8,55,45,4.05,5.0,fr,2216,94,91740,1,1,Active Shallow Crust,0.0,89.99192,0.0,11/12/4710 +7.73368,44.5652,7481,4,7,20,47,37,4.15,15.0,fr,2217,149,91753,1,1,Active Shallow Crust,0.0,89.9892,0.0,04/07/7481 +7.73368,44.5652,739,2,27,23,56,42,4.15,5.0,fr,2218,14,91761,1,1,Active Shallow Crust,128.8987,89.9928,0.0,02/27/0739 +7.73368,44.5652,1898,6,1,15,35,56,4.25,5.0,fr,2219,37,91770,1,2,Active Shallow Crust,0.0,89.99026,-90.0,06/01/1898 +7.73368,44.5652,8712,4,18,14,51,47,4.25,5.0,fr,2220,174,91770,1,2,Active Shallow Crust,0.0,89.99026,-90.0,04/18/8712 +7.73368,44.5652,3123,6,11,8,23,31,4.35,5.0,fr,2221,62,91776,1,1,Active Shallow Crust,0.0,89.99142,0.0,06/11/3123 +7.73368,44.5652,1527,3,11,13,45,31,4.35,27.5,fr,2222,30,91778,1,1,Active Shallow Crust,0.0,89.99142,0.0,03/11/1527 +7.73368,44.5652,846,6,17,0,0,59,5.15,5.0,fr,2223,16,91872,1,1,Active Shallow Crust,0.0,89.98975,0.0,06/17/0846 +2.36505,42.91224,2547,2,25,22,2,7,3.55,5.0,fr,2224,50,92160,1,2,Active Shallow Crust,0.0,89.98892,0.0,02/25/2547 +2.36505,42.91224,2313,2,12,15,23,48,3.55,5.0,fr,2225,46,92160,1,2,Active Shallow Crust,0.0,89.98892,0.0,02/12/2313 +2.36505,42.91224,7044,9,23,6,24,52,3.55,15.0,fr,2226,140,92161,1,1,Active Shallow Crust,0.0,89.98892,0.0,09/23/7044 +2.36505,42.91224,7473,7,27,10,38,42,3.55,5.0,fr,2227,149,92163,1,1,Active Shallow Crust,240.0116,57.99827,0.0,07/27/7473 +2.36505,42.91224,3563,3,23,1,13,9,3.65,5.0,fr,2228,71,92172,1,3,Active Shallow Crust,0.0,89.99013,0.0,03/23/3563 +2.36505,42.91224,9167,11,19,17,32,33,3.65,5.0,fr,2229,183,92172,1,3,Active Shallow Crust,0.0,89.99013,0.0,11/19/9167 +2.36505,42.91224,4451,1,21,23,23,23,3.65,5.0,fr,2230,89,92172,1,3,Active Shallow Crust,0.0,89.99013,0.0,01/21/4451 +2.36505,42.91224,561,8,18,6,25,5,3.75,5.0,fr,2231,11,92184,1,2,Active Shallow Crust,0.0,89.9912,0.0,08/18/0561 +2.36505,42.91224,4304,6,21,2,10,53,3.75,5.0,fr,2232,86,92184,1,2,Active Shallow Crust,0.0,89.9912,0.0,06/21/4304 +2.36505,42.91224,9557,7,24,15,2,11,3.85,5.0,fr,2233,191,92196,1,1,Active Shallow Crust,0.0,89.98954,0.0,07/24/9557 +2.36505,42.91224,9505,9,13,3,19,19,3.95,5.0,fr,2234,190,92208,1,2,Active Shallow Crust,0.0,89.99068,0.0,09/13/9505 +2.36505,42.91224,1963,5,10,2,43,42,3.95,5.0,fr,2235,39,92208,1,2,Active Shallow Crust,0.0,89.99068,0.0,05/10/1963 +2.36505,42.91224,7223,1,19,3,8,44,3.95,5.0,fr,2236,144,92211,1,1,Active Shallow Crust,240.0198,58.00488,0.0,01/19/7223 +2.36505,42.91224,648,12,4,12,55,57,3.95,27.5,fr,2237,12,92219,1,1,Active Shallow Crust,128.9004,89.99418,0.0,12/04/0648 +2.36505,42.91224,1604,10,24,20,45,12,4.05,15.0,fr,2238,32,92221,1,2,Active Shallow Crust,0.0,89.98962,0.0,10/24/1604 +2.36505,42.91224,4915,7,15,13,40,54,4.05,15.0,fr,2239,98,92221,1,2,Active Shallow Crust,0.0,89.98962,0.0,07/15/4915 +2.36505,42.91224,2441,5,18,9,19,11,4.05,27.5,fr,2240,48,92228,1,1,Active Shallow Crust,0.0,89.98949,-90.0,05/18/2441 +2.36505,42.91224,9739,3,1,13,58,10,4.15,5.0,fr,2241,194,92232,1,2,Active Shallow Crust,0.0,89.99075,0.0,03/01/9739 +2.36505,42.91224,9361,12,19,16,7,42,4.15,5.0,fr,2242,187,92232,1,2,Active Shallow Crust,0.0,89.99075,0.0,12/19/9361 +2.36505,42.91224,9666,9,2,21,59,37,4.15,27.5,fr,2243,193,92234,1,1,Active Shallow Crust,0.0,89.99075,0.0,09/02/9666 +2.36505,42.91224,1590,1,10,13,19,15,4.35,5.0,fr,2244,31,92256,1,1,Active Shallow Crust,0.0,89.98971,0.0,01/10/1590 +2.36505,42.91224,7800,1,30,4,16,6,4.55,15.0,fr,2245,155,92281,1,1,Active Shallow Crust,0.0,89.98949,0.0,01/30/7800 +2.36505,42.91224,4317,1,31,20,35,29,4.55,27.5,fr,2246,86,92282,1,1,Active Shallow Crust,0.0,89.98949,0.0,01/31/4317 +2.36505,42.91224,5258,3,18,2,10,20,4.85,5.0,fr,2247,105,92319,1,1,Active Shallow Crust,240.0158,58.00201,0.0,03/18/5258 +2.36505,42.91224,557,12,4,18,32,39,4.95,5.0,fr,2248,11,92328,1,1,Active Shallow Crust,0.0,89.98969,0.0,12/04/0557 +-0.39478,44.499,1838,6,29,14,45,29,3.55,27.5,fr,2249,36,92651,1,1,Active Shallow Crust,128.8964,89.99371,0.0,06/29/1838 +-0.39478,44.499,2723,10,29,8,12,42,3.65,5.0,fr,2250,54,92652,1,1,Active Shallow Crust,0.0,89.98998,0.0,10/29/2723 +-0.39478,44.499,5521,11,22,23,5,5,3.95,5.0,fr,2251,110,92697,1,1,Active Shallow Crust,128.9006,89.99376,0.0,11/22/5521 +-0.39478,44.499,5069,3,10,8,1,44,4.25,5.0,fr,2252,101,92730,1,1,Active Shallow Crust,0.0,89.99004,-90.0,03/10/5069 +-4.49456,46.69117,905,8,26,9,40,6,4.15,27.5,fr,2253,18,93680,1,1,Active Shallow Crust,0.0,89.98948,-90.0,08/26/0905 +4.39232,43.8808,6025,10,21,15,39,43,3.55,5.0,fr,2254,120,94080,1,1,Active Shallow Crust,0.0,89.99273,0.0,10/21/6025 +4.39232,43.8808,4807,2,4,7,46,47,3.55,15.0,fr,2255,96,94081,1,1,Active Shallow Crust,0.0,89.99273,0.0,02/04/4807 +4.39232,43.8808,3520,9,24,6,21,53,3.65,5.0,fr,2256,70,94092,1,1,Active Shallow Crust,0.0,89.98705,0.0,09/24/3520 +4.39232,43.8808,9464,3,27,13,45,55,3.65,15.0,fr,2257,189,94099,1,1,Active Shallow Crust,0.0,89.98689,-90.0,03/27/9464 +4.39232,43.8808,29,5,21,17,24,1,3.85,5.0,fr,2258,0,94116,1,1,Active Shallow Crust,0.0,89.98971,0.0,05/21/0029 +4.39232,43.8808,9237,10,18,14,35,26,3.85,5.0,fr,2259,184,94119,1,1,Active Shallow Crust,240.0107,57.99834,0.0,10/18/9237 +4.39232,43.8808,4356,8,20,11,45,49,3.95,5.0,fr,2260,87,94128,1,1,Active Shallow Crust,0.0,89.99083,0.0,08/20/4356 +4.39232,43.8808,5824,2,23,20,55,17,3.95,27.5,fr,2261,116,94130,1,1,Active Shallow Crust,0.0,89.99083,0.0,02/23/5824 +4.39232,43.8808,3123,6,4,9,34,19,4.05,5.0,fr,2262,62,94140,1,1,Active Shallow Crust,0.0,89.99183,0.0,06/04/3123 +4.39232,43.8808,187,12,15,22,24,32,4.05,15.0,fr,2263,3,94141,1,1,Active Shallow Crust,0.0,89.99183,0.0,12/15/0187 +4.39232,43.8808,8502,5,22,4,11,16,4.05,5.0,fr,2264,170,94146,1,1,Active Shallow Crust,0.0,89.99173,-90.0,05/22/8502 +4.39232,43.8808,2769,10,18,16,20,2,4.15,15.0,fr,2265,55,94156,1,1,Active Shallow Crust,240.0087,57.99688,0.0,10/18/2769 +4.39232,43.8808,5278,9,9,5,5,19,4.25,5.0,fr,2266,105,94164,1,1,Active Shallow Crust,0.0,89.99026,0.0,09/09/5278 +4.39232,43.8808,7152,12,20,21,29,31,4.25,15.0,fr,2267,143,94165,1,1,Active Shallow Crust,0.0,89.99026,0.0,12/20/7152 +4.39232,43.8808,9055,5,29,21,21,55,5.15,5.0,fr,2268,181,94272,1,1,Active Shallow Crust,0.0,89.98963,0.0,05/29/9055 +1.54881,49.83508,8405,2,17,18,16,37,3.55,15.0,fr,2269,168,94561,1,1,Active Shallow Crust,0.0,89.99024,0.0,02/17/8405 +1.54881,49.83508,9820,5,30,16,20,12,3.55,5.0,fr,2270,196,94566,1,1,Active Shallow Crust,0.0,89.99013,-90.0,05/30/9820 +1.54881,49.83508,2440,12,3,13,10,35,3.65,15.0,fr,2271,48,94573,1,1,Active Shallow Crust,0.0,89.98985,0.0,12/03/2440 +1.54881,49.83508,4364,4,13,15,14,40,3.75,5.0,fr,2272,87,94584,1,1,Active Shallow Crust,0.0,89.98967,0.0,04/13/4364 +1.54881,49.83508,3814,11,30,6,13,39,3.95,5.0,fr,2273,76,94614,1,1,Active Shallow Crust,0.0,89.98962,-90.0,11/30/3814 +1.54881,49.83508,69,7,7,14,24,39,4.05,15.0,fr,2274,1,94627,1,1,Active Shallow Crust,0.0,89.98982,-90.0,07/07/0069 +1.54881,49.83508,7492,6,14,21,13,16,4.15,5.0,fr,2275,149,94632,1,1,Active Shallow Crust,0.0,89.99022,0.0,06/14/7492 +1.54881,49.83508,8911,2,26,13,7,21,4.45,5.0,fr,2276,178,94668,1,1,Active Shallow Crust,0.0,89.99019,0.0,02/26/8911 +1.54881,49.83508,1397,12,25,20,56,14,4.45,27.5,fr,2277,27,94673,1,1,Active Shallow Crust,240.0062,57.99492,0.0,12/25/1397 +1.54881,49.83508,3076,11,6,18,0,14,4.65,5.0,fr,2278,61,94692,1,1,Active Shallow Crust,0.0,89.98991,0.0,11/06/3076 +4.30056,49.28335,2900,11,14,12,2,11,4.35,5.0,fr,2279,57,95145,1,1,Active Shallow Crust,128.8977,89.98266,0.0,11/14/2900 +-2.92756,49.02441,1720,5,14,21,47,7,3.55,5.0,fr,2280,34,95520,1,1,Active Shallow Crust,0.0,89.99008,0.0,05/14/1720 +-2.92756,49.02441,1478,7,29,9,17,21,3.65,5.0,fr,2281,29,95538,1,2,Active Shallow Crust,0.0,89.99106,-90.0,07/29/1478 +-2.92756,49.02441,1641,11,14,13,22,28,3.65,5.0,fr,2282,32,95538,1,2,Active Shallow Crust,0.0,89.99106,-90.0,11/14/1641 +-2.92756,49.02441,4779,7,20,13,53,50,4.05,5.0,fr,2283,95,95589,1,1,Active Shallow Crust,128.8901,89.99442,0.0,07/20/4779 +-2.92756,49.02441,8869,5,18,11,1,11,4.15,15.0,fr,2284,177,95599,1,1,Active Shallow Crust,0.0,89.98994,-90.0,05/18/8869 +2.46924,43.45993,7537,12,9,23,51,35,3.75,5.0,fr,2285,150,96024,1,1,Active Shallow Crust,0.0,89.99128,0.0,12/09/7537 +2.46924,43.45993,419,9,12,7,31,8,3.75,5.0,fr,2286,8,96030,1,1,Active Shallow Crust,0.0,89.99118,-90.0,09/12/0419 +2.46924,43.45993,9967,4,14,7,55,55,4.05,5.0,fr,2287,199,96060,1,1,Active Shallow Crust,0.0,89.98971,0.0,04/14/9967 +2.46924,43.45993,6164,11,24,16,47,15,4.35,5.0,fr,2288,123,96102,1,1,Active Shallow Crust,0.0,89.98969,-90.0,11/24/6164 +2.46924,43.45993,2668,3,23,22,5,45,5.65,5.0,fr,2289,53,96252,1,1,Active Shallow Crust,0.0,89.98988,0.0,03/23/2668 +5.82769,49.74095,430,4,16,16,19,24,3.55,5.0,fr,2290,8,96480,1,1,Active Shallow Crust,0.0,89.98697,0.0,04/16/0430 +5.82769,49.74095,5260,5,2,6,5,13,3.55,15.0,fr,2291,105,96481,1,1,Active Shallow Crust,0.0,89.98697,0.0,05/02/5260 +5.82769,49.74095,4559,6,16,17,4,33,3.65,5.0,fr,2292,91,96492,1,1,Active Shallow Crust,0.0,89.98838,0.0,06/16/4559 +5.82769,49.74095,5331,3,18,18,16,37,4.95,5.0,fr,2293,106,96648,1,1,Active Shallow Crust,0.0,89.98959,0.0,03/18/5331 +6.56342,43.63234,8579,2,24,9,11,25,3.55,5.0,fr,2294,171,96960,1,1,Active Shallow Crust,0.0,89.9927,0.0,02/24/8579 +6.56342,43.63234,7306,4,9,17,31,29,3.55,27.5,fr,2295,146,96962,1,1,Active Shallow Crust,0.0,89.9927,0.0,04/09/7306 +6.56342,43.63234,9806,5,25,0,28,23,3.75,5.0,fr,2296,196,96987,1,1,Active Shallow Crust,240.0076,58.01765,0.0,05/25/9806 +6.56342,43.63234,1533,4,8,15,46,51,3.85,15.0,fr,2297,30,96997,1,1,Active Shallow Crust,0.0,89.98966,0.0,04/08/1533 +6.56342,43.63234,8191,11,1,4,4,19,4.45,5.0,fr,2298,163,97068,1,1,Active Shallow Crust,0.0,89.98964,0.0,11/01/8191 +7.98227,44.32682,663,12,5,7,7,17,3.55,5.0,fr,2299,13,97440,1,1,Active Shallow Crust,0.0,89.99278,0.0,12/05/0663 +7.98227,44.32682,4651,3,7,11,34,44,3.65,15.0,fr,2300,93,97453,1,1,Active Shallow Crust,0.0,89.98714,0.0,03/07/4651 +7.98227,44.32682,4310,8,10,21,14,17,3.75,5.0,fr,2301,86,97464,1,1,Active Shallow Crust,0.0,89.98854,0.0,08/10/4310 +7.98227,44.32682,1006,10,22,19,13,46,3.85,5.0,fr,2302,20,97479,1,1,Active Shallow Crust,240.0106,57.99691,0.0,10/22/1006 +7.98227,44.32682,7187,4,11,12,54,20,3.95,5.0,fr,2303,143,97488,1,1,Active Shallow Crust,0.0,89.9909,0.0,04/11/7187 +7.98227,44.32682,7795,2,12,16,47,18,4.35,27.5,fr,2304,155,97538,1,1,Active Shallow Crust,0.0,89.99139,0.0,02/12/7795 +7.98227,44.32682,505,2,1,9,23,0,5.05,5.0,fr,2305,10,97620,1,1,Active Shallow Crust,0.0,89.98974,0.0,02/01/0505 +-3.18169,43.51536,9988,1,26,1,43,38,3.55,5.0,fr,2306,199,97920,1,1,Active Shallow Crust,0.0,89.98903,0.0,01/26/9988 +-3.18169,43.51536,1490,4,6,17,37,46,3.65,5.0,fr,2307,29,97932,1,1,Active Shallow Crust,0.0,89.99023,0.0,04/06/1490 +-3.18169,43.51536,4396,10,4,2,51,46,3.65,27.5,fr,2308,87,97934,1,2,Active Shallow Crust,0.0,89.99023,0.0,10/04/4396 +-3.18169,43.51536,5858,9,3,17,25,9,3.65,27.5,fr,2309,117,97934,1,2,Active Shallow Crust,0.0,89.99023,0.0,09/03/5858 +-3.18169,43.51536,5518,11,4,19,26,50,3.85,5.0,fr,2310,110,97959,1,1,Active Shallow Crust,240.0102,57.99795,0.0,11/04/5518 +-3.18169,43.51536,5352,7,24,19,57,0,3.85,15.0,fr,2311,107,97963,1,1,Active Shallow Crust,0.0,89.98952,-90.0,07/24/5352 +-3.18169,43.51536,6646,12,27,20,0,35,3.85,5.0,fr,2312,132,97965,1,1,Active Shallow Crust,128.8959,89.99353,0.0,12/27/6646 +-3.18169,43.51536,2698,10,6,2,9,7,4.85,27.5,fr,2313,53,98078,1,1,Active Shallow Crust,0.0,89.99017,0.0,10/06/2698 +-3.18169,43.51536,7160,7,25,21,16,28,4.85,15.0,fr,2314,143,98080,1,1,Active Shallow Crust,240.016,58.00202,0.0,07/25/7160 +-2.42431,46.35697,2300,7,5,9,46,27,5.55,5.0,fr,2315,45,98649,1,1,Active Shallow Crust,128.8763,89.98979,0.0,07/05/2300 +-0.46563,50.39224,379,8,27,10,46,41,3.75,15.0,fr,2316,7,98905,1,1,Active Shallow Crust,0.0,89.9901,0.0,08/27/0379 +-0.46563,50.39224,4021,1,9,3,8,29,4.05,5.0,fr,2317,80,98940,1,1,Active Shallow Crust,0.0,89.99006,0.0,01/09/4021 +-0.46563,50.39224,9836,10,4,22,6,31,4.15,5.0,fr,2318,196,98952,1,1,Active Shallow Crust,0.0,89.98993,0.0,10/04/9836 +-0.46563,50.39224,8181,10,14,3,59,49,4.45,15.0,fr,2319,163,98989,1,1,Active Shallow Crust,0.0,89.99002,0.0,10/14/8181 +5.85574,48.23484,291,8,15,14,27,56,3.55,5.0,fr,2320,5,99360,1,1,Active Shallow Crust,0.0,89.99329,0.0,08/15/0291 +5.85574,48.23484,1631,4,28,15,32,4,3.55,15.0,fr,2321,32,99361,1,1,Active Shallow Crust,0.0,89.99329,0.0,04/28/1631 +5.85574,48.23484,2926,4,4,6,23,49,3.55,15.0,fr,2322,58,99364,1,1,Active Shallow Crust,240.0115,57.99875,0.0,04/04/2926 +5.85574,48.23484,9428,4,22,0,31,48,4.25,5.0,fr,2323,188,99444,1,2,Active Shallow Crust,0.0,89.991,0.0,04/22/9428 +5.85574,48.23484,1288,6,14,12,49,20,4.25,5.0,fr,2324,25,99444,1,2,Active Shallow Crust,0.0,89.991,0.0,06/14/1288 +5.85574,48.23484,4124,7,29,16,26,35,4.45,5.0,fr,2325,82,99474,1,1,Active Shallow Crust,0.0,89.99036,-90.0,07/29/4124 +5.85574,48.23484,1061,6,10,20,20,31,4.65,15.0,fr,2326,21,99493,1,1,Active Shallow Crust,0.0,89.99053,0.0,06/10/1061 +9.11962,50.48844,1778,1,27,23,21,8,3.55,15.0,fr,2327,35,99841,1,1,Active Shallow Crust,0.0,89.98717,0.0,01/27/1778 +9.11962,50.48844,2959,12,7,7,41,51,3.65,5.0,fr,2328,59,99861,1,1,Active Shallow Crust,128.8984,89.9636,0.0,12/07/2959 +9.11962,50.48844,1340,8,30,5,22,33,3.75,15.0,fr,2329,26,99865,1,1,Active Shallow Crust,0.0,89.98981,0.0,08/30/1340 +9.11962,50.48844,881,10,18,5,22,6,3.75,5.0,fr,2330,17,99867,1,1,Active Shallow Crust,240.0092,58.01731,0.0,10/18/0881 +9.11962,50.48844,9809,11,20,17,16,50,4.05,5.0,fr,2331,196,99900,1,1,Active Shallow Crust,0.0,89.99278,0.0,11/20/9809 +9.11962,50.48844,3442,7,15,3,4,50,4.05,5.0,fr,2332,68,99906,1,1,Active Shallow Crust,0.0,89.9927,-90.0,07/15/3442 +9.11962,50.48844,9979,6,29,14,13,21,4.05,15.0,fr,2333,199,99907,1,1,Active Shallow Crust,0.0,89.9927,-90.0,06/29/9979 +9.11962,50.48844,1419,6,8,7,12,46,4.85,5.0,fr,2334,28,100005,1,1,Active Shallow Crust,128.8907,89.9893,0.0,06/08/1419 +-0.62328,50.12016,2412,5,9,1,7,52,3.55,5.0,fr,2335,48,100323,1,1,Active Shallow Crust,240.0125,57.99828,0.0,05/09/2412 +-0.62328,50.12016,2619,6,5,21,30,34,3.65,5.0,fr,2336,52,100335,1,1,Active Shallow Crust,240.0014,58.01296,0.0,06/05/2619 +-0.62328,50.12016,2337,12,6,18,4,35,3.65,5.0,fr,2337,46,100341,1,1,Active Shallow Crust,128.9001,89.96353,0.0,12/06/2337 +-0.62328,50.12016,1483,9,26,22,30,11,3.75,5.0,fr,2338,29,100344,1,1,Active Shallow Crust,0.0,89.98973,0.0,09/26/1483 +-0.62328,50.12016,9055,10,12,8,11,29,4.75,27.5,fr,2339,181,100466,1,1,Active Shallow Crust,0.0,89.99005,0.0,10/12/9055 +0.72672,48.08234,6641,9,7,23,11,4,3.55,5.0,fr,2340,132,100800,1,1,Active Shallow Crust,0.0,89.9899,0.0,09/07/6641 +0.72672,48.08234,6291,10,7,11,44,6,3.55,5.0,fr,2341,125,100803,1,1,Active Shallow Crust,240.0125,57.99815,0.0,10/07/6291 +0.72672,48.08234,8738,8,15,7,51,44,3.55,5.0,fr,2342,174,100809,1,1,Active Shallow Crust,128.8961,89.99368,0.0,08/15/8738 +0.72672,48.08234,4455,10,19,17,23,44,3.55,27.5,fr,2343,89,100811,1,1,Active Shallow Crust,128.8961,89.99368,0.0,10/19/4455 +0.72672,48.08234,6782,9,13,5,47,1,3.95,5.0,fr,2344,135,100848,1,1,Active Shallow Crust,0.0,89.98991,0.0,09/13/6782 +0.72672,48.08234,8545,10,18,12,26,37,4.35,5.0,fr,2345,170,100896,1,1,Active Shallow Crust,0.0,89.98994,0.0,10/18/8545 +2.96297,50.40214,2457,8,10,1,19,35,3.65,5.0,fr,2346,49,101292,1,1,Active Shallow Crust,0.0,89.99141,0.0,08/10/2457 +2.96297,50.40214,9235,8,8,17,35,29,3.65,15.0,fr,2347,184,101293,1,1,Active Shallow Crust,0.0,89.99141,0.0,08/08/9235 +2.96297,50.40214,5931,1,25,8,24,20,3.95,5.0,fr,2348,118,101328,1,1,Active Shallow Crust,0.0,89.98986,0.0,01/25/5931 +2.96297,50.40214,8808,10,11,0,34,36,4.35,5.0,fr,2349,176,101376,1,1,Active Shallow Crust,0.0,89.98976,0.0,10/11/8808 +2.96297,50.40214,7436,11,8,5,56,9,4.65,15.0,fr,2350,148,101413,1,1,Active Shallow Crust,0.0,89.99004,0.0,11/08/7436 +-3.21847,48.45937,1468,5,8,13,27,39,3.55,5.0,fr,2351,29,102240,1,4,Active Shallow Crust,0.0,89.98997,0.0,05/08/1468 +-3.21847,48.45937,3241,4,15,5,22,25,3.55,5.0,fr,2352,64,102240,1,4,Active Shallow Crust,0.0,89.98997,0.0,04/15/3241 +-3.21847,48.45937,6088,2,2,17,29,20,3.55,5.0,fr,2353,121,102240,1,4,Active Shallow Crust,0.0,89.98997,0.0,02/02/6088 +-3.21847,48.45937,397,8,27,10,25,9,3.55,5.0,fr,2354,7,102240,1,4,Active Shallow Crust,0.0,89.98997,0.0,08/27/0397 +-3.21847,48.45937,9312,3,20,6,20,36,3.55,15.0,fr,2355,186,102241,1,1,Active Shallow Crust,0.0,89.98997,0.0,03/20/9312 +-3.21847,48.45937,2008,4,22,3,0,33,3.65,5.0,fr,2356,40,102252,1,3,Active Shallow Crust,0.0,89.99106,0.0,04/22/2008 +-3.21847,48.45937,377,12,24,3,31,4,3.65,5.0,fr,2357,7,102252,1,3,Active Shallow Crust,0.0,89.99106,0.0,12/24/0377 +-3.21847,48.45937,3537,7,13,10,26,48,3.65,5.0,fr,2358,70,102252,1,3,Active Shallow Crust,0.0,89.99106,0.0,07/13/3537 +-3.21847,48.45937,2167,10,18,17,19,57,3.65,15.0,fr,2359,43,102253,1,1,Active Shallow Crust,0.0,89.99106,0.0,10/18/2167 +-3.21847,48.45937,4732,9,12,14,43,0,3.65,5.0,fr,2360,94,102258,1,1,Active Shallow Crust,0.0,89.99096,-90.0,09/12/4732 +-3.21847,48.45937,2350,2,8,8,27,19,3.75,5.0,fr,2361,46,102264,1,1,Active Shallow Crust,0.0,89.98938,0.0,02/08/2350 +-3.21847,48.45937,1542,3,17,15,53,17,3.85,5.0,fr,2362,30,102276,1,2,Active Shallow Crust,0.0,89.99053,0.0,03/17/1542 +-3.21847,48.45937,3262,4,27,11,10,52,3.85,5.0,fr,2363,65,102276,1,2,Active Shallow Crust,0.0,89.99053,0.0,04/27/3262 +-3.21847,48.45937,3751,10,6,13,0,34,3.85,5.0,fr,2364,75,102285,1,1,Active Shallow Crust,128.8955,89.99408,0.0,10/06/3751 +-3.21847,48.45937,765,1,16,14,36,42,3.95,15.0,fr,2365,15,102295,1,1,Active Shallow Crust,0.0,89.98933,-90.0,01/16/0765 +-3.21847,48.45937,6642,7,24,21,46,24,4.15,5.0,fr,2366,132,102312,1,1,Active Shallow Crust,0.0,89.98994,0.0,07/24/6642 +-3.21847,48.45937,1799,2,24,12,8,40,4.45,5.0,fr,2367,35,102357,1,1,Active Shallow Crust,128.8917,89.99348,0.0,02/24/1799 +5.42222,41.33701,3329,5,28,6,12,37,3.55,5.0,fr,2368,66,102720,1,1,Active Shallow Crust,0.0,89.99243,0.0,05/28/3329 +5.42222,41.33701,8611,1,27,3,53,33,4.15,15.0,fr,2369,172,102796,1,1,Active Shallow Crust,240.0078,57.99715,0.0,01/27/8611 +5.42222,41.33701,3778,3,23,13,45,59,4.65,5.0,fr,2370,75,102852,1,1,Active Shallow Crust,0.0,89.98933,0.0,03/23/3778 +2.03599,40.84868,2867,12,23,15,44,36,3.55,5.0,fr,2371,57,103200,1,1,Active Shallow Crust,0.0,89.98856,0.0,12/23/2867 +2.03599,40.84868,7603,2,14,0,19,43,3.55,5.0,fr,2372,152,103203,1,1,Active Shallow Crust,240.0116,57.998,0.0,02/14/7603 +2.03599,40.84868,1168,1,27,8,41,17,3.55,15.0,fr,2373,23,103204,1,1,Active Shallow Crust,240.0116,57.998,0.0,01/27/1168 +2.03599,40.84868,601,7,10,12,54,30,3.55,15.0,fr,2374,12,103207,1,1,Active Shallow Crust,0.0,89.98843,-90.0,07/10/0601 +2.03599,40.84868,2324,5,27,16,51,39,3.55,15.0,fr,2375,46,103210,1,1,Active Shallow Crust,128.8964,89.99428,0.0,05/27/2324 +2.03599,40.84868,9150,1,28,19,28,56,3.65,5.0,fr,2376,182,103212,1,1,Active Shallow Crust,0.0,89.9898,0.0,01/28/9150 +2.03599,40.84868,1858,6,25,22,18,36,3.75,5.0,fr,2377,37,103224,1,1,Active Shallow Crust,0.0,89.99091,0.0,06/25/1858 +2.03599,40.84868,2492,5,2,18,34,11,3.95,5.0,fr,2378,49,103248,1,1,Active Shallow Crust,0.0,89.99037,0.0,05/02/2492 +2.03599,40.84868,364,3,13,20,59,7,3.95,15.0,fr,2379,7,103249,1,1,Active Shallow Crust,0.0,89.99037,0.0,03/13/0364 +2.03599,40.84868,584,12,1,4,40,22,4.15,5.0,fr,2380,11,103272,1,1,Active Shallow Crust,0.0,89.99044,0.0,12/01/0584 +2.03599,40.84868,7279,7,28,23,7,31,4.15,15.0,fr,2381,145,103273,1,1,Active Shallow Crust,0.0,89.99044,0.0,07/28/7279 +2.03599,40.84868,6117,11,18,8,30,21,4.15,27.5,fr,2382,122,103274,1,1,Active Shallow Crust,0.0,89.99044,0.0,11/18/6117 +2.03599,40.84868,7908,10,30,0,20,54,4.15,15.0,fr,2383,158,103276,1,1,Active Shallow Crust,240.0074,57.99734,0.0,10/30/7908 +2.03599,40.84868,5688,9,14,1,34,40,4.45,15.0,fr,2384,113,103309,1,1,Active Shallow Crust,0.0,89.99052,0.0,09/14/5688 +6.90607,50.98753,2869,9,3,13,12,32,3.55,5.0,fr,2385,57,104640,1,3,Active Shallow Crust,0.0,89.9873,0.0,09/03/2869 +6.90607,50.98753,7722,9,15,4,41,44,3.55,5.0,fr,2386,154,104640,1,3,Active Shallow Crust,0.0,89.9873,0.0,09/15/7722 +6.90607,50.98753,5523,2,9,0,23,32,3.55,5.0,fr,2387,110,104640,1,3,Active Shallow Crust,0.0,89.9873,0.0,02/09/5523 +6.90607,50.98753,9398,3,26,15,43,51,3.55,27.5,fr,2388,187,104642,1,2,Active Shallow Crust,0.0,89.9873,0.0,03/26/9398 +6.90607,50.98753,4459,7,13,5,35,2,3.55,27.5,fr,2389,89,104642,1,2,Active Shallow Crust,0.0,89.9873,0.0,07/13/4459 +6.90607,50.98753,3178,5,23,5,50,10,3.65,5.0,fr,2390,63,104661,1,1,Active Shallow Crust,128.9003,89.96307,0.0,05/23/3178 +6.90607,50.98753,2879,2,5,2,15,11,3.75,27.5,fr,2391,57,104672,1,1,Active Shallow Crust,0.0,89.9898,-90.0,02/05/2879 +6.90607,50.98753,7334,3,5,19,36,40,3.85,15.0,fr,2392,146,104677,1,1,Active Shallow Crust,0.0,89.99101,0.0,03/05/7334 +6.90607,50.98753,2705,10,22,18,59,25,3.95,15.0,fr,2393,54,104689,1,1,Active Shallow Crust,0.0,89.99199,0.0,10/22/2705 +6.90607,50.98753,9520,6,2,4,8,8,4.05,5.0,fr,2394,190,104703,1,1,Active Shallow Crust,240.0069,58.00547,0.0,06/02/9520 +6.90607,50.98753,1596,7,1,13,53,8,4.35,5.0,fr,2395,31,104736,1,1,Active Shallow Crust,0.0,89.98989,0.0,07/01/1596 +6.90607,50.98753,843,9,27,18,38,54,4.45,5.0,fr,2396,16,104748,1,1,Active Shallow Crust,0.0,89.99099,0.0,09/27/0843 +6.90607,50.98753,3172,1,17,1,45,12,4.45,5.0,fr,2397,63,104757,1,1,Active Shallow Crust,128.891,89.99325,0.0,01/17/3172 +6.90607,50.98753,943,11,19,14,46,14,4.65,5.0,fr,2398,18,104772,1,1,Active Shallow Crust,0.0,89.98927,0.0,11/19/0943 +6.90607,50.98753,3999,7,17,12,9,41,4.65,15.0,fr,2399,79,104773,1,1,Active Shallow Crust,0.0,89.98927,0.0,07/17/3999 +6.90607,50.98753,7303,8,9,5,53,48,4.85,5.0,fr,2400,146,104796,1,1,Active Shallow Crust,0.0,89.99005,0.0,08/09/7303 +6.90607,50.98753,1863,12,10,0,50,22,4.85,27.5,fr,2401,37,104798,1,1,Active Shallow Crust,0.0,89.99005,0.0,12/10/1863 +6.90607,50.98753,4292,3,29,8,26,41,5.25,5.0,fr,2402,85,104850,1,1,Active Shallow Crust,0.0,89.99002,-90.0,03/29/4292 +6.90607,50.98753,8938,4,15,10,50,41,5.75,27.5,fr,2403,178,104912,1,1,Active Shallow Crust,0.0,89.98979,-90.0,04/15/8938 +6.90607,50.98753,5796,10,13,15,49,24,6.15,27.5,fr,2404,115,104954,1,1,Active Shallow Crust,0.0,89.99013,0.0,10/13/5796 +3.87719,47.96145,272,6,29,13,31,39,3.55,5.0,fr,2405,5,105120,1,1,Active Shallow Crust,0.0,89.98987,0.0,06/29/0272 +3.87719,47.96145,5675,10,31,9,9,29,3.55,5.0,fr,2406,113,105129,1,1,Active Shallow Crust,128.8964,89.99325,0.0,10/31/5675 +3.87719,47.96145,9060,7,21,18,48,52,3.65,15.0,fr,2407,181,105133,1,1,Active Shallow Crust,0.0,89.99097,0.0,07/21/9060 +3.73768,43.38839,6824,4,25,18,11,37,3.55,15.0,fr,2408,136,105601,1,1,Active Shallow Crust,0.0,89.98901,0.0,04/25/6824 +3.73768,43.38839,714,8,21,7,40,24,3.65,5.0,fr,2409,14,105612,1,1,Active Shallow Crust,0.0,89.9902,0.0,08/21/0714 +3.73768,43.38839,5685,5,17,15,43,22,3.75,5.0,fr,2410,113,105624,1,1,Active Shallow Crust,0.0,89.99127,0.0,05/17/5685 +3.73768,43.38839,6724,1,27,11,49,46,3.95,5.0,fr,2411,134,105648,1,1,Active Shallow Crust,0.0,89.99075,0.0,01/27/6724 +3.73768,43.38839,6532,4,28,5,19,21,4.45,27.5,fr,2412,130,105710,1,1,Active Shallow Crust,0.0,89.9896,0.0,04/28/6532 +3.73768,43.38839,9254,3,23,2,59,14,5.35,15.0,fr,2413,185,105817,1,1,Active Shallow Crust,0.0,89.98985,0.0,03/23/9254 +-6.36387,48.95697,6697,9,7,5,18,58,3.85,15.0,fr,2414,133,106117,1,1,Active Shallow Crust,0.0,89.99062,0.0,09/07/6697 +1.79358,45.34733,9485,8,4,5,51,49,3.55,5.0,fr,2415,189,106560,1,1,Active Shallow Crust,0.0,89.98937,0.0,08/04/9485 +1.79358,45.34733,8520,1,3,2,19,52,3.65,5.0,fr,2416,170,106572,1,1,Active Shallow Crust,0.0,89.99052,0.0,01/03/8520 +1.79358,45.34733,5595,11,1,11,9,45,3.75,5.0,fr,2417,111,106593,1,1,Active Shallow Crust,128.8967,89.96734,0.0,11/01/5595 +-1.4687,48.60294,2594,6,7,10,36,54,3.55,5.0,fr,2418,51,107040,1,2,Active Shallow Crust,0.0,89.99,0.0,06/07/2594 +-1.4687,48.60294,7086,9,5,5,0,2,3.55,5.0,fr,2419,141,107040,1,2,Active Shallow Crust,0.0,89.99,0.0,09/05/7086 +-1.4687,48.60294,4004,7,26,7,29,13,3.55,5.0,fr,2420,80,107043,1,1,Active Shallow Crust,240.0121,57.99818,0.0,07/26/4004 +-1.4687,48.60294,1517,4,17,18,31,10,3.55,15.0,fr,2421,30,107050,1,1,Active Shallow Crust,128.8961,89.99333,0.0,04/17/1517 +-1.4687,48.60294,1125,1,17,15,6,1,3.65,15.0,fr,2422,22,107056,1,2,Active Shallow Crust,240.0015,58.01266,0.0,01/17/1125 +-1.4687,48.60294,2469,12,15,17,14,42,3.65,15.0,fr,2423,49,107056,1,2,Active Shallow Crust,240.0015,58.01266,0.0,12/15/2469 +-1.4687,48.60294,9704,2,3,11,21,52,3.65,15.0,fr,2424,194,107059,1,1,Active Shallow Crust,0.0,89.98948,-90.0,02/03/9704 +-1.4687,48.60294,2894,12,3,14,47,46,3.65,15.0,fr,2425,57,107062,1,1,Active Shallow Crust,128.9002,89.96356,0.0,12/03/2894 +-1.4687,48.60294,7678,5,2,6,10,53,3.75,5.0,fr,2426,153,107064,1,2,Active Shallow Crust,0.0,89.9894,0.0,05/02/7678 +-1.4687,48.60294,6685,12,8,11,4,37,3.75,5.0,fr,2427,133,107064,1,2,Active Shallow Crust,0.0,89.9894,0.0,12/08/6685 +-1.4687,48.60294,7172,11,13,23,1,10,3.75,15.0,fr,2428,143,107065,1,1,Active Shallow Crust,0.0,89.9894,0.0,11/13/7172 +-1.4687,48.60294,4201,5,28,12,35,31,3.85,15.0,fr,2429,84,107080,1,1,Active Shallow Crust,240.0111,57.99783,0.0,05/28/4201 +-1.4687,48.60294,6855,8,24,16,30,59,3.85,27.5,fr,2430,137,107087,1,1,Active Shallow Crust,128.8951,89.9941,0.0,08/24/6855 +-1.4687,48.60294,5877,6,6,12,13,53,3.95,15.0,fr,2431,117,107092,1,1,Active Shallow Crust,240.02,58.00496,0.0,06/06/5877 +-1.4687,48.60294,455,8,5,16,40,22,4.05,5.0,fr,2432,9,107100,1,2,Active Shallow Crust,0.0,89.98969,0.0,08/05/0455 +-1.4687,48.60294,4361,2,13,10,41,8,4.05,5.0,fr,2433,87,107100,1,2,Active Shallow Crust,0.0,89.98969,0.0,02/13/4361 +-1.4687,48.60294,8870,3,30,0,46,22,4.05,15.0,fr,2434,177,107101,1,1,Active Shallow Crust,0.0,89.98969,0.0,03/30/8870 +-1.4687,48.60294,2423,6,22,10,35,32,4.15,15.0,fr,2435,48,107116,1,1,Active Shallow Crust,240.009,57.99735,0.0,06/22/2423 +-1.4687,48.60294,9943,12,1,19,8,32,4.25,5.0,fr,2436,198,107124,1,1,Active Shallow Crust,0.0,89.99032,0.0,12/01/9943 +-1.4687,48.60294,8770,10,18,11,53,56,4.35,15.0,fr,2437,175,107137,1,1,Active Shallow Crust,0.0,89.99004,0.0,10/18/8770 +-1.4687,48.60294,6016,3,7,2,59,2,4.55,5.0,fr,2438,120,107169,1,1,Active Shallow Crust,128.8934,89.98576,0.0,03/07/6016 +-1.4687,48.60294,3539,6,17,6,12,23,4.75,5.0,fr,2439,70,107184,1,1,Active Shallow Crust,0.0,89.98995,0.0,06/17/3539 +-1.4687,48.60294,114,6,8,5,3,30,4.85,5.0,fr,2440,2,107199,1,1,Active Shallow Crust,240.0181,58.00249,0.0,06/08/0114 +-1.4687,48.60294,4901,2,19,2,57,48,5.05,15.0,fr,2441,98,107221,1,1,Active Shallow Crust,0.0,89.98992,0.0,02/19/4901 +-1.4687,48.60294,7936,7,16,18,21,35,5.15,15.0,fr,2442,158,107233,1,1,Active Shallow Crust,0.0,89.98996,0.0,07/16/7936 +3.82132,52.96258,1333,12,14,20,52,50,3.65,5.0,fr,2443,26,107532,1,1,Active Shallow Crust,0.0,89.98917,0.0,12/14/1333 +3.82132,52.96258,5673,2,20,19,54,10,3.75,15.0,fr,2444,113,107545,1,1,Active Shallow Crust,0.0,89.99035,0.0,02/20/5673 +3.82132,52.96258,3853,6,23,8,52,22,4.05,27.5,fr,2445,77,107582,1,1,Active Shallow Crust,0.0,89.98975,0.0,06/23/3853 +6.35819,51.41041,9612,1,10,11,39,50,3.55,27.5,fr,2446,192,108482,1,1,Active Shallow Crust,0.0,89.98742,0.0,01/10/9612 +6.35819,51.41041,6360,3,23,0,27,4,3.55,15.0,fr,2447,127,108487,1,1,Active Shallow Crust,0.0,89.98727,-90.0,03/23/6360 +6.35819,51.41041,6787,2,2,15,16,44,3.55,5.0,fr,2448,135,108489,1,1,Active Shallow Crust,128.8966,89.99371,0.0,02/02/6787 +6.35819,51.41041,7552,7,21,16,9,17,3.65,5.0,fr,2449,151,108492,1,2,Active Shallow Crust,0.0,89.98878,0.0,07/21/7552 +6.35819,51.41041,2750,4,24,12,19,46,3.65,5.0,fr,2450,54,108492,1,2,Active Shallow Crust,0.0,89.98878,0.0,04/24/2750 +6.35819,51.41041,6737,8,16,11,35,2,3.75,5.0,fr,2451,134,108504,1,2,Active Shallow Crust,0.0,89.99001,0.0,08/16/6737 +6.35819,51.41041,9465,6,25,20,29,32,3.75,5.0,fr,2452,189,108504,1,2,Active Shallow Crust,0.0,89.99001,0.0,06/25/9465 +6.35819,51.41041,7016,12,13,14,17,29,3.85,5.0,fr,2453,140,108516,1,1,Active Shallow Crust,0.0,89.9911,0.0,12/13/7016 +6.35819,51.41041,4745,10,5,7,8,43,3.85,27.5,fr,2454,94,108518,1,1,Active Shallow Crust,0.0,89.9911,0.0,10/05/4745 +6.35819,51.41041,1343,4,18,3,38,59,3.95,5.0,fr,2455,26,108528,1,2,Active Shallow Crust,0.0,89.98809,0.0,04/18/1343 +6.35819,51.41041,8691,5,20,13,32,50,3.95,5.0,fr,2456,173,108528,1,2,Active Shallow Crust,0.0,89.98809,0.0,05/20/8691 +6.35819,51.41041,3912,9,11,22,22,30,4.25,5.0,fr,2457,78,108564,1,1,Active Shallow Crust,0.0,89.98876,0.0,09/11/3912 +2.44848,44.11717,3365,7,5,2,57,39,3.55,15.0,fr,2458,67,108961,1,1,Active Shallow Crust,0.0,89.98914,0.0,07/05/3365 +2.44848,44.11717,6650,10,22,5,21,28,3.65,5.0,fr,2459,132,108972,1,3,Active Shallow Crust,0.0,89.99032,0.0,10/22/6650 +2.44848,44.11717,8918,9,28,5,28,18,3.65,5.0,fr,2460,178,108972,1,3,Active Shallow Crust,0.0,89.99032,0.0,09/28/8918 +2.44848,44.11717,4845,7,22,20,0,32,3.65,5.0,fr,2461,96,108972,1,3,Active Shallow Crust,0.0,89.99032,0.0,07/22/4845 +2.44848,44.11717,7116,12,13,15,21,53,3.75,15.0,fr,2462,142,108985,1,1,Active Shallow Crust,0.0,89.99137,0.0,12/13/7116 +2.44848,44.11717,3546,1,28,7,24,0,4.05,15.0,fr,2463,70,109021,1,1,Active Shallow Crust,0.0,89.98982,0.0,01/28/3546 +2.44848,44.11717,2580,12,1,0,13,44,4.05,27.5,fr,2464,51,109022,1,1,Active Shallow Crust,0.0,89.98982,0.0,12/01/2580 +2.44848,44.11717,6927,8,6,10,49,18,4.25,5.0,fr,2465,138,109044,1,1,Active Shallow Crust,0.0,89.9903,0.0,08/06/6927 +2.44848,44.11717,5417,4,11,11,3,33,4.25,15.0,fr,2466,108,109045,1,1,Active Shallow Crust,0.0,89.9903,0.0,04/11/5417 +2.44848,44.11717,451,3,10,10,39,42,4.45,5.0,fr,2467,9,109071,1,1,Active Shallow Crust,240.0048,57.99449,0.0,03/10/0451 +6.11542,50.76797,4837,7,1,12,6,2,3.55,5.0,fr,2468,96,109440,1,5,Active Shallow Crust,0.0,89.98724,0.0,07/01/4837 +6.11542,50.76797,2772,12,16,9,28,28,3.55,5.0,fr,2469,55,109440,1,5,Active Shallow Crust,0.0,89.98724,0.0,12/16/2772 +6.11542,50.76797,8011,3,13,19,19,57,3.55,5.0,fr,2470,160,109440,1,5,Active Shallow Crust,0.0,89.98724,0.0,03/13/8011 +6.11542,50.76797,3524,8,21,22,47,29,3.55,5.0,fr,2471,70,109440,1,5,Active Shallow Crust,0.0,89.98724,0.0,08/21/3524 +6.11542,50.76797,7311,6,27,21,7,9,3.55,5.0,fr,2472,146,109440,1,5,Active Shallow Crust,0.0,89.98724,0.0,06/27/7311 +6.11542,50.76797,6587,5,16,13,8,1,3.55,15.0,fr,2473,131,109441,1,2,Active Shallow Crust,0.0,89.98724,0.0,05/16/6587 +6.11542,50.76797,9834,4,15,6,37,48,3.55,15.0,fr,2474,196,109441,1,2,Active Shallow Crust,0.0,89.98724,0.0,04/15/9834 +6.11542,50.76797,8029,8,7,13,5,10,3.55,27.5,fr,2475,160,109442,1,2,Active Shallow Crust,0.0,89.98724,0.0,08/07/8029 +6.11542,50.76797,3260,8,14,18,32,4,3.55,27.5,fr,2476,65,109442,1,2,Active Shallow Crust,0.0,89.98724,0.0,08/14/3260 +6.11542,50.76797,4175,12,30,18,30,30,3.55,5.0,fr,2477,83,109443,1,2,Active Shallow Crust,240.0129,57.99775,0.0,12/30/4175 +6.11542,50.76797,6064,1,24,0,50,35,3.55,5.0,fr,2478,121,109443,1,2,Active Shallow Crust,240.0129,57.99775,0.0,01/24/6064 +6.11542,50.76797,3073,9,11,6,5,48,3.55,15.0,fr,2479,61,109447,1,2,Active Shallow Crust,0.0,89.9871,-90.0,09/11/3073 +6.11542,50.76797,583,5,27,3,22,2,3.55,15.0,fr,2480,11,109447,1,2,Active Shallow Crust,0.0,89.9871,-90.0,05/27/0583 +6.11542,50.76797,7173,4,13,20,53,25,3.55,5.0,fr,2481,143,109449,1,1,Active Shallow Crust,128.8955,89.99362,0.0,04/13/7173 +6.11542,50.76797,1273,6,5,4,35,27,3.55,15.0,fr,2482,25,109450,1,1,Active Shallow Crust,128.8955,89.99362,0.0,06/05/1273 +6.11542,50.76797,1597,6,18,11,57,4,3.65,5.0,fr,2483,31,109452,1,6,Active Shallow Crust,0.0,89.98863,0.0,06/18/1597 +6.11542,50.76797,6229,2,3,16,46,38,3.65,5.0,fr,2484,124,109452,1,6,Active Shallow Crust,0.0,89.98863,0.0,02/03/6229 +6.11542,50.76797,7656,8,12,5,19,30,3.65,5.0,fr,2485,153,109452,1,6,Active Shallow Crust,0.0,89.98863,0.0,08/12/7656 +6.11542,50.76797,1926,7,7,23,57,29,3.65,5.0,fr,2486,38,109452,1,6,Active Shallow Crust,0.0,89.98863,0.0,07/07/1926 +6.11542,50.76797,4997,1,26,15,22,48,3.65,5.0,fr,2487,99,109452,1,6,Active Shallow Crust,0.0,89.98863,0.0,01/26/4997 +6.11542,50.76797,8398,5,20,0,54,8,3.65,5.0,fr,2488,167,109452,1,6,Active Shallow Crust,0.0,89.98863,0.0,05/20/8398 +6.11542,50.76797,8797,12,15,11,14,6,3.65,15.0,fr,2489,175,109453,1,4,Active Shallow Crust,0.0,89.98863,0.0,12/15/8797 +6.11542,50.76797,5015,6,1,13,32,34,3.65,15.0,fr,2490,100,109453,1,4,Active Shallow Crust,0.0,89.98863,0.0,06/01/5015 +6.11542,50.76797,1231,4,19,23,6,57,3.65,15.0,fr,2491,24,109453,1,4,Active Shallow Crust,0.0,89.98863,0.0,04/19/1231 +6.11542,50.76797,5098,2,10,5,32,20,3.65,15.0,fr,2492,101,109453,1,4,Active Shallow Crust,0.0,89.98863,0.0,02/10/5098 +6.11542,50.76797,1983,4,14,8,35,4,3.65,5.0,fr,2493,39,109455,1,2,Active Shallow Crust,240.0023,58.01236,0.0,04/14/1983 +6.11542,50.76797,2550,1,15,18,16,22,3.65,5.0,fr,2494,50,109455,1,2,Active Shallow Crust,240.0023,58.01236,0.0,01/15/2550 +6.11542,50.76797,1162,7,2,19,4,30,3.75,5.0,fr,2495,23,109464,1,4,Active Shallow Crust,0.0,89.98987,0.0,07/02/1162 +6.11542,50.76797,6406,2,25,2,56,33,3.75,5.0,fr,2496,128,109464,1,4,Active Shallow Crust,0.0,89.98987,0.0,02/25/6406 +6.11542,50.76797,5891,2,17,20,44,19,3.75,5.0,fr,2497,117,109464,1,4,Active Shallow Crust,0.0,89.98987,0.0,02/17/5891 +6.11542,50.76797,6060,9,25,10,45,20,3.75,5.0,fr,2498,121,109464,1,4,Active Shallow Crust,0.0,89.98987,0.0,09/25/6060 +6.11542,50.76797,3584,5,31,11,3,50,3.75,5.0,fr,2499,71,109467,1,1,Active Shallow Crust,240.0091,58.01788,0.0,05/31/3584 +6.11542,50.76797,7879,2,10,0,57,15,3.75,15.0,fr,2500,157,109468,1,1,Active Shallow Crust,240.0091,58.01788,0.0,02/10/7879 +6.11542,50.76797,9162,11,5,16,8,24,3.75,27.5,fr,2501,183,109472,1,1,Active Shallow Crust,0.0,89.98975,-90.0,11/05/9162 +6.11542,50.76797,7839,9,28,17,26,6,3.75,15.0,fr,2502,156,109474,1,1,Active Shallow Crust,128.8971,89.96707,0.0,09/28/7839 +6.11542,50.76797,9672,9,6,12,58,7,3.85,5.0,fr,2503,193,109476,1,1,Active Shallow Crust,0.0,89.99097,0.0,09/06/9672 +6.11542,50.76797,826,1,6,0,35,30,3.85,5.0,fr,2504,16,109479,1,1,Active Shallow Crust,240.0113,57.99735,0.0,01/06/0826 +6.11542,50.76797,9618,11,28,18,1,57,3.95,5.0,fr,2505,192,109488,1,4,Active Shallow Crust,0.0,89.99195,0.0,11/28/9618 +6.11542,50.76797,103,3,6,1,10,1,3.95,5.0,fr,2506,2,109488,1,4,Active Shallow Crust,0.0,89.99195,0.0,03/06/0103 +6.11542,50.76797,2339,4,25,22,53,21,3.95,5.0,fr,2507,46,109488,1,4,Active Shallow Crust,0.0,89.99195,0.0,04/25/2339 +6.11542,50.76797,8796,7,14,12,23,1,3.95,5.0,fr,2508,175,109488,1,4,Active Shallow Crust,0.0,89.99195,0.0,07/14/8796 +6.11542,50.76797,2954,10,13,7,54,52,3.95,15.0,fr,2509,59,109489,1,1,Active Shallow Crust,0.0,89.99195,0.0,10/13/2954 +6.11542,50.76797,7419,4,13,1,50,30,3.95,27.5,fr,2510,148,109490,1,1,Active Shallow Crust,0.0,89.99195,0.0,04/13/7419 +6.11542,50.76797,1794,2,25,3,28,14,3.95,15.0,fr,2511,35,109492,1,1,Active Shallow Crust,240.0204,58.00496,0.0,02/25/1794 +6.11542,50.76797,1228,7,27,7,49,5,4.05,5.0,fr,2512,24,109500,1,3,Active Shallow Crust,0.0,89.98924,0.0,07/27/1228 +6.11542,50.76797,512,6,10,0,14,3,4.05,5.0,fr,2513,10,109500,1,3,Active Shallow Crust,0.0,89.98924,0.0,06/10/0512 +6.11542,50.76797,1642,3,16,10,38,22,4.05,5.0,fr,2514,32,109500,1,3,Active Shallow Crust,0.0,89.98924,0.0,03/16/1642 +6.11542,50.76797,5009,6,7,7,53,23,4.05,27.5,fr,2515,100,109502,1,1,Active Shallow Crust,0.0,89.98924,0.0,06/07/5009 +6.11542,50.76797,8069,11,3,12,2,45,4.05,5.0,fr,2516,161,109503,1,1,Active Shallow Crust,240.0066,58.00624,0.0,11/03/8069 +6.11542,50.76797,3218,6,15,15,17,38,4.05,5.0,fr,2517,64,109506,1,2,Active Shallow Crust,0.0,89.98911,-90.0,06/15/3218 +6.11542,50.76797,7198,12,23,7,44,31,4.05,5.0,fr,2518,143,109506,1,2,Active Shallow Crust,0.0,89.98911,-90.0,12/23/7198 +6.11542,50.76797,8619,5,5,17,37,27,4.15,5.0,fr,2519,172,109518,1,1,Active Shallow Crust,0.0,89.9903,-90.0,05/05/8619 +6.11542,50.76797,188,4,25,2,57,57,4.15,5.0,fr,2520,3,109521,1,1,Active Shallow Crust,128.8962,89.99361,0.0,04/25/0188 +6.11542,50.76797,9258,10,8,8,20,24,4.15,27.5,fr,2521,185,109523,1,1,Active Shallow Crust,128.8962,89.99361,0.0,10/08/9258 +6.11542,50.76797,4376,12,26,9,43,52,4.35,15.0,fr,2522,87,109537,1,2,Active Shallow Crust,0.0,89.98985,0.0,12/26/4376 +6.11542,50.76797,512,1,28,20,33,52,4.35,15.0,fr,2523,10,109537,1,2,Active Shallow Crust,0.0,89.98985,0.0,01/28/0512 +6.11542,50.76797,3669,10,22,22,41,45,4.45,5.0,fr,2524,73,109548,1,3,Active Shallow Crust,0.0,89.99094,0.0,10/22/3669 +6.11542,50.76797,4057,6,5,20,2,50,4.45,5.0,fr,2525,81,109548,1,3,Active Shallow Crust,0.0,89.99094,0.0,06/05/4057 +6.11542,50.76797,4713,2,26,9,55,38,4.45,5.0,fr,2526,94,109548,1,3,Active Shallow Crust,0.0,89.99094,0.0,02/26/4713 +6.11542,50.76797,7587,3,2,17,7,13,4.45,5.0,fr,2527,151,109551,1,1,Active Shallow Crust,240.0065,57.99483,0.0,03/02/7587 +6.11542,50.76797,6589,8,27,17,59,55,4.55,5.0,fr,2528,131,109560,1,1,Active Shallow Crust,0.0,89.98991,0.0,08/27/6589 +6.11542,50.76797,9672,10,28,16,57,41,4.55,15.0,fr,2529,193,109561,1,1,Active Shallow Crust,0.0,89.98991,0.0,10/28/9672 +6.11542,50.76797,2546,6,19,21,34,34,4.55,15.0,fr,2530,50,109567,1,1,Active Shallow Crust,0.0,89.9898,-90.0,06/19/2546 +6.11542,50.76797,5880,3,11,22,2,12,4.65,5.0,fr,2531,117,109572,1,2,Active Shallow Crust,0.0,89.98921,0.0,03/11/5880 +6.11542,50.76797,3315,7,11,20,39,53,4.65,5.0,fr,2532,66,109572,1,2,Active Shallow Crust,0.0,89.98921,0.0,07/11/3315 +6.11542,50.76797,368,4,3,2,12,20,4.75,5.0,fr,2533,7,109590,1,1,Active Shallow Crust,0.0,89.99027,-90.0,04/03/0368 +6.11542,50.76797,7905,9,13,9,15,41,4.85,15.0,fr,2534,158,109597,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/13/7905 +6.11542,50.76797,2529,5,20,14,42,36,4.85,5.0,fr,2535,50,109602,1,1,Active Shallow Crust,0.0,89.98989,-90.0,05/20/2529 +6.11542,50.76797,1857,3,19,8,29,54,4.95,5.0,fr,2536,37,109608,1,1,Active Shallow Crust,0.0,89.98981,0.0,03/19/1857 +6.11542,50.76797,8685,2,23,11,47,10,4.95,15.0,fr,2537,173,109609,1,1,Active Shallow Crust,0.0,89.98981,0.0,02/23/8685 +6.11542,50.76797,6254,11,29,15,8,3,5.25,15.0,fr,2538,125,109648,1,1,Active Shallow Crust,240.0286,58.00079,0.0,11/29/6254 +6.11542,50.76797,2600,2,15,14,44,47,5.95,15.0,fr,2539,51,109735,1,1,Active Shallow Crust,0.0,89.98981,-90.0,02/15/2600 +-2.41113,49.20067,822,3,6,23,21,3,3.55,5.0,fr,2540,16,109920,1,1,Active Shallow Crust,0.0,89.99012,0.0,03/06/0822 +-2.41113,49.20067,3391,2,13,1,28,8,3.65,5.0,fr,2541,67,109938,1,1,Active Shallow Crust,0.0,89.99109,-90.0,02/13/3391 +-2.41113,49.20067,4584,4,24,18,12,37,3.75,15.0,fr,2542,91,109945,1,1,Active Shallow Crust,0.0,89.98953,0.0,04/24/4584 +-2.41113,49.20067,2241,2,18,6,3,57,3.75,5.0,fr,2543,44,109953,1,1,Active Shallow Crust,128.8966,89.9673,0.0,02/18/2241 +-2.41113,49.20067,6388,10,18,8,45,4,3.95,15.0,fr,2544,127,109972,1,1,Active Shallow Crust,240.0204,58.00503,0.0,10/18/6388 +-2.41113,49.20067,5450,9,1,13,25,12,4.15,5.0,fr,2545,108,109992,1,1,Active Shallow Crust,0.0,89.99009,0.0,09/01/5450 +-2.41113,49.20067,1696,2,21,1,50,10,4.25,27.5,fr,2546,33,110006,1,1,Active Shallow Crust,0.0,89.9897,0.0,02/21/1696 +-2.41113,49.20067,6338,9,23,9,29,6,4.65,5.0,fr,2547,126,110052,1,1,Active Shallow Crust,0.0,89.98978,0.0,09/23/6338 +-2.41113,49.20067,9563,6,25,6,50,13,4.65,15.0,fr,2548,191,110056,1,1,Active Shallow Crust,240.0117,57.99443,0.0,06/25/9563 +0.26098,50.16823,2083,1,21,7,53,14,3.55,5.0,fr,2549,41,110400,1,1,Active Shallow Crust,0.0,89.98991,0.0,01/21/2083 +0.26098,50.16823,2971,4,27,5,1,32,3.55,27.5,fr,2550,59,110402,1,1,Active Shallow Crust,0.0,89.98991,0.0,04/27/2971 +0.26098,50.16823,9451,1,11,5,39,38,3.55,5.0,fr,2551,189,110406,1,1,Active Shallow Crust,0.0,89.9902,-90.0,01/11/9451 +0.26098,50.16823,1885,6,16,23,37,55,3.95,15.0,fr,2552,37,110455,1,1,Active Shallow Crust,0.0,89.98995,-90.0,06/16/1885 +0.26098,50.16823,6442,4,1,18,44,56,4.25,5.0,fr,2553,128,110484,1,1,Active Shallow Crust,0.0,89.99008,0.0,04/01/6442 +0.26098,50.16823,9315,3,19,14,5,42,4.35,5.0,fr,2554,186,110499,1,1,Active Shallow Crust,240.0093,57.99612,0.0,03/19/9315 +0.26098,50.16823,8901,3,8,23,37,33,4.35,5.0,fr,2555,178,110502,1,1,Active Shallow Crust,0.0,89.98992,-90.0,03/08/8901 +0.26098,50.16823,6356,9,19,12,53,46,4.45,5.0,fr,2556,127,110514,1,1,Active Shallow Crust,0.0,89.99,-90.0,09/19/6356 +0.26098,50.16823,5239,6,23,9,56,18,4.75,27.5,fr,2557,104,110546,1,1,Active Shallow Crust,0.0,89.98996,0.0,06/23/5239 +0.26098,50.16823,8327,9,16,12,54,12,5.15,5.0,fr,2558,166,110601,1,1,Active Shallow Crust,128.8818,89.99104,0.0,09/16/8327 +6.67717,45.10387,29,5,26,0,16,28,3.55,15.0,fr,2559,0,110881,1,3,Active Shallow Crust,0.0,89.99288,0.0,05/26/0029 +6.67717,45.10387,5093,2,3,17,50,3,3.55,15.0,fr,2560,101,110881,1,3,Active Shallow Crust,0.0,89.99288,0.0,02/03/5093 +6.67717,45.10387,1817,8,2,15,4,32,3.55,15.0,fr,2561,36,110881,1,3,Active Shallow Crust,0.0,89.99288,0.0,08/02/1817 +6.67717,45.10387,3758,5,12,5,11,3,3.55,15.0,fr,2562,75,110884,1,1,Active Shallow Crust,240.0129,57.99795,0.0,05/12/3758 +6.67717,45.10387,9076,2,29,1,33,1,3.65,5.0,fr,2563,181,110892,1,2,Active Shallow Crust,0.0,89.98731,0.0,02/29/9076 +6.67717,45.10387,9264,4,10,9,2,41,3.65,5.0,fr,2564,185,110892,1,2,Active Shallow Crust,0.0,89.98731,0.0,04/10/9264 +6.67717,45.10387,7818,9,30,1,41,38,3.65,15.0,fr,2565,156,110893,1,1,Active Shallow Crust,0.0,89.98731,0.0,09/30/7818 +6.67717,45.10387,4603,4,22,2,10,0,3.65,27.5,fr,2566,92,110897,1,1,Active Shallow Crust,240.0011,58.01327,0.0,04/22/4603 +6.67717,45.10387,9086,12,2,18,50,38,3.85,5.0,fr,2567,181,110916,1,2,Active Shallow Crust,0.0,89.98992,0.0,12/02/9086 +6.67717,45.10387,6897,12,26,3,17,56,3.85,5.0,fr,2568,137,110916,1,2,Active Shallow Crust,0.0,89.98992,0.0,12/26/6897 +6.67717,45.10387,4667,12,30,8,48,46,3.85,15.0,fr,2569,93,110917,1,1,Active Shallow Crust,0.0,89.98992,0.0,12/30/4667 +6.67717,45.10387,9829,4,21,10,21,13,3.85,5.0,fr,2570,196,110922,1,1,Active Shallow Crust,0.0,89.98981,-90.0,04/21/9829 +6.67717,45.10387,4579,2,5,17,3,56,3.95,5.0,fr,2571,91,110928,1,1,Active Shallow Crust,0.0,89.99102,0.0,02/05/4579 +6.67717,45.10387,5082,12,5,17,58,33,3.95,15.0,fr,2572,101,110929,1,1,Active Shallow Crust,0.0,89.99102,0.0,12/05/5082 +6.67717,45.10387,5886,6,6,14,22,41,3.95,5.0,fr,2573,117,110937,1,1,Active Shallow Crust,128.8996,89.99326,0.0,06/06/5886 +6.67717,45.10387,4342,11,3,13,28,43,4.05,5.0,fr,2574,86,110940,1,1,Active Shallow Crust,0.0,89.992,0.0,11/03/4342 +6.67717,45.10387,8622,2,10,12,46,51,4.05,5.0,fr,2575,172,110943,1,1,Active Shallow Crust,240.0055,58.00548,0.0,02/10/8622 +6.67717,45.10387,2587,12,5,21,27,3,4.15,5.0,fr,2576,51,110952,1,1,Active Shallow Crust,0.0,89.9893,0.0,12/05/2587 +6.67717,45.10387,3949,7,24,13,52,51,4.15,15.0,fr,2577,78,110956,1,1,Active Shallow Crust,240.0085,57.99739,0.0,07/24/3949 +6.67717,45.10387,2332,3,20,20,6,3,4.15,15.0,fr,2578,46,110962,1,1,Active Shallow Crust,128.8971,89.99465,0.0,03/20/2332 +6.67717,45.10387,116,3,30,20,42,22,4.25,27.5,fr,2579,2,110972,1,1,Active Shallow Crust,0.0,89.99035,-90.0,03/30/0116 +6.67717,45.10387,5426,5,5,6,53,23,4.55,27.5,fr,2580,108,111002,1,1,Active Shallow Crust,0.0,89.991,0.0,05/05/5426 +6.67717,45.10387,4593,3,31,8,15,55,4.55,5.0,fr,2581,91,111003,1,1,Active Shallow Crust,240.0089,57.99752,0.0,03/31/4593 +6.67717,45.10387,6736,2,15,16,40,59,4.55,15.0,fr,2582,134,111004,1,1,Active Shallow Crust,240.0089,57.99754,0.0,02/15/6736 +6.67717,45.10387,6081,10,17,4,39,46,4.55,5.0,fr,2583,121,111009,1,1,Active Shallow Crust,128.8946,89.98557,0.0,10/17/6081 +6.67717,45.10387,9181,9,17,4,58,23,6.35,15.0,fr,2584,183,111223,1,1,Active Shallow Crust,0.0,89.98996,-90.0,09/17/9181 +2.75641,41.90445,6873,2,24,20,53,25,3.55,5.0,fr,2585,137,111360,1,2,Active Shallow Crust,0.0,89.98874,0.0,02/24/6873 +2.75641,41.90445,8730,11,18,8,42,50,3.55,5.0,fr,2586,174,111360,1,2,Active Shallow Crust,0.0,89.98874,0.0,11/18/8730 +2.75641,41.90445,2847,2,26,10,55,35,3.55,15.0,fr,2587,56,111361,1,2,Active Shallow Crust,0.0,89.98874,0.0,02/26/2847 +2.75641,41.90445,1185,8,10,5,44,1,3.55,15.0,fr,2588,23,111361,1,2,Active Shallow Crust,0.0,89.98874,0.0,08/10/1185 +2.75641,41.90445,9098,9,23,15,24,6,3.55,27.5,fr,2589,181,111365,1,1,Active Shallow Crust,240.0118,57.99814,0.0,09/23/9098 +2.75641,41.90445,1414,7,7,7,25,17,3.65,5.0,fr,2590,28,111372,1,2,Active Shallow Crust,0.0,89.98997,0.0,07/07/1414 +2.75641,41.90445,1517,3,11,13,56,47,3.65,5.0,fr,2591,30,111372,1,2,Active Shallow Crust,0.0,89.98997,0.0,03/11/1517 +2.75641,41.90445,942,9,14,23,36,23,3.65,15.0,fr,2592,18,111373,1,1,Active Shallow Crust,0.0,89.98997,0.0,09/14/0942 +2.75641,41.90445,6699,3,9,5,14,27,3.65,27.5,fr,2593,133,111374,1,1,Active Shallow Crust,0.0,89.98997,0.0,03/09/6699 +2.75641,41.90445,5605,5,17,5,26,33,3.65,5.0,fr,2594,112,111378,1,1,Active Shallow Crust,0.0,89.98985,-90.0,05/17/5605 +2.75641,41.90445,6084,9,2,13,31,56,3.65,5.0,fr,2595,121,111381,1,1,Active Shallow Crust,128.9002,89.96343,0.0,09/02/6084 +2.75641,41.90445,3916,12,30,7,57,9,3.75,5.0,fr,2596,78,111384,1,1,Active Shallow Crust,0.0,89.99106,0.0,12/30/3916 +2.75641,41.90445,5728,3,17,0,59,29,3.75,15.0,fr,2597,114,111385,1,1,Active Shallow Crust,0.0,89.99106,0.0,03/17/5728 +2.75641,41.90445,3412,7,17,12,32,51,3.75,15.0,fr,2598,68,111391,1,1,Active Shallow Crust,0.0,89.99095,-90.0,07/17/3412 +2.75641,41.90445,7523,12,27,23,7,20,3.85,5.0,fr,2599,150,111396,1,1,Active Shallow Crust,0.0,89.98937,0.0,12/27/7523 +2.75641,41.90445,76,1,20,3,52,54,3.85,15.0,fr,2600,1,111406,1,1,Active Shallow Crust,128.8962,89.99336,0.0,01/20/0076 +2.75641,41.90445,2897,4,24,14,51,26,3.95,5.0,fr,2601,57,111408,1,1,Active Shallow Crust,0.0,89.99053,0.0,04/24/2897 +2.75641,41.90445,3894,4,10,16,5,4,3.95,15.0,fr,2602,77,111409,1,1,Active Shallow Crust,0.0,89.99053,0.0,04/10/3894 +2.75641,41.90445,1151,7,24,17,31,34,4.25,5.0,fr,2603,23,111444,1,1,Active Shallow Crust,0.0,89.98994,0.0,07/24/1151 +2.75641,41.90445,5971,8,12,16,54,23,4.25,15.0,fr,2604,119,111445,1,1,Active Shallow Crust,0.0,89.98994,0.0,08/12/5971 +2.75641,41.90445,4295,1,12,10,44,25,4.25,5.0,fr,2605,85,111447,1,1,Active Shallow Crust,240.0069,57.9939,0.0,01/12/4295 +2.75641,41.90445,9712,5,27,11,40,0,4.25,5.0,fr,2606,194,111450,1,1,Active Shallow Crust,0.0,89.98982,-90.0,05/27/9712 +2.75641,41.90445,4404,7,15,2,7,31,4.35,5.0,fr,2607,88,111456,1,2,Active Shallow Crust,0.0,89.98954,0.0,07/15/4404 +2.75641,41.90445,3737,12,9,14,58,9,4.35,5.0,fr,2608,74,111456,1,2,Active Shallow Crust,0.0,89.98954,0.0,12/09/3737 +2.75641,41.90445,1595,4,18,5,2,57,4.45,15.0,fr,2609,31,111469,1,1,Active Shallow Crust,0.0,89.98935,0.0,04/18/1595 +2.75641,41.90445,2344,4,16,4,21,56,4.45,5.0,fr,2610,46,111471,1,1,Active Shallow Crust,240.0042,57.99455,0.0,04/16/2344 +2.75641,41.90445,2758,4,29,7,54,23,4.75,27.5,fr,2611,55,111506,1,1,Active Shallow Crust,0.0,89.98963,0.0,04/29/2758 +2.75641,41.90445,1535,12,7,9,52,15,5.45,15.0,fr,2612,30,111589,1,1,Active Shallow Crust,0.0,89.98989,0.0,12/07/1535 +2.75641,41.90445,4062,6,28,2,37,23,5.55,5.0,fr,2613,81,111600,1,1,Active Shallow Crust,0.0,89.98987,0.0,06/28/4062 +2.75641,41.90445,6195,7,14,11,54,41,5.55,15.0,fr,2614,123,111607,1,1,Active Shallow Crust,0.0,89.99013,-90.0,07/14/6195 +2.75641,41.90445,6829,2,4,11,53,28,5.65,27.5,fr,2615,136,111614,1,1,Active Shallow Crust,0.0,89.98996,0.0,02/04/6829 +4.49101,47.66841,4109,5,3,9,35,20,3.55,5.0,fr,2616,82,111840,1,1,Active Shallow Crust,0.0,89.99321,0.0,05/03/4109 +4.49101,47.66841,8870,4,12,18,42,25,3.55,15.0,fr,2617,177,111841,1,1,Active Shallow Crust,0.0,89.99321,0.0,04/12/8870 +4.49101,47.66841,8083,3,16,20,31,44,3.65,15.0,fr,2618,161,111856,1,1,Active Shallow Crust,240.0002,58.01374,0.0,03/16/8083 +4.49101,47.66841,3737,7,4,16,24,4,3.65,5.0,fr,2619,74,111858,1,1,Active Shallow Crust,0.0,89.98775,-90.0,07/04/3737 +4.49101,47.66841,3924,11,4,13,27,3,3.75,5.0,fr,2620,78,111864,1,1,Active Shallow Crust,0.0,89.98921,0.0,11/04/3924 +4.49101,47.66841,7689,12,3,6,59,48,4.05,5.0,fr,2621,153,111906,1,1,Active Shallow Crust,0.0,89.98841,-90.0,12/03/7689 +4.49101,47.66841,5606,6,9,18,29,28,4.55,15.0,fr,2622,112,111961,1,1,Active Shallow Crust,0.0,89.98927,0.0,06/09/5606 +4.49101,47.66841,3259,7,24,10,29,7,4.55,27.5,fr,2623,65,111965,1,1,Active Shallow Crust,240.0094,57.99756,0.0,07/24/3259 +4.49101,47.66841,29,5,14,17,5,7,5.75,5.0,fr,2624,0,112104,1,1,Active Shallow Crust,0.0,89.98975,0.0,05/14/0029 +-0.2663,42.45904,4208,6,12,6,41,10,3.55,5.0,fr,2625,84,112323,1,1,Active Shallow Crust,240.0119,57.99806,0.0,06/12/4208 +-0.2663,42.45904,3649,5,10,16,15,35,3.65,5.0,fr,2626,72,112332,1,1,Active Shallow Crust,0.0,89.99005,0.0,05/10/3649 +-0.2663,42.45904,8450,7,14,0,26,50,3.65,15.0,fr,2627,168,112333,1,1,Active Shallow Crust,0.0,89.99005,0.0,07/14/8450 +-0.2663,42.45904,7453,2,12,8,9,12,3.75,5.0,fr,2628,149,112344,1,1,Active Shallow Crust,0.0,89.99003,0.0,02/12/7453 +-0.2663,42.45904,1825,11,12,6,22,42,3.95,15.0,fr,2629,36,112369,1,1,Active Shallow Crust,0.0,89.99003,0.0,11/12/1825 +-3.64626,47.60361,7129,5,2,13,19,55,3.55,5.0,fr,2630,142,112800,1,2,Active Shallow Crust,0.0,89.9898,0.0,05/02/7129 +-3.64626,47.60361,2275,6,19,15,25,47,3.55,5.0,fr,2631,45,112800,1,2,Active Shallow Crust,0.0,89.9898,0.0,06/19/2275 +-3.64626,47.60361,1096,6,13,2,34,57,3.55,27.5,fr,2632,21,112802,1,1,Active Shallow Crust,0.0,89.9898,0.0,06/13/1096 +-3.64626,47.60361,8126,5,10,15,18,57,3.65,5.0,fr,2633,162,112812,1,2,Active Shallow Crust,0.0,89.99091,0.0,05/10/8126 +-3.64626,47.60361,1920,10,23,20,17,38,3.65,5.0,fr,2634,38,112812,1,2,Active Shallow Crust,0.0,89.99091,0.0,10/23/1920 +-3.64626,47.60361,7873,7,21,12,47,24,3.75,5.0,fr,2635,157,112824,1,2,Active Shallow Crust,0.0,89.9892,0.0,07/21/7873 +-3.64626,47.60361,9339,10,1,17,29,18,3.75,5.0,fr,2636,186,112824,1,2,Active Shallow Crust,0.0,89.9892,0.0,10/01/9339 +-3.64626,47.60361,1128,8,1,20,22,35,3.75,27.5,fr,2637,22,112826,1,1,Active Shallow Crust,0.0,89.9892,0.0,08/01/1128 +-3.64626,47.60361,7923,7,28,8,18,45,3.75,5.0,fr,2638,158,112827,1,1,Active Shallow Crust,240.0083,58.01788,0.0,07/28/7923 +-3.64626,47.60361,2876,5,8,4,35,24,3.75,15.0,fr,2639,57,112828,1,1,Active Shallow Crust,240.0083,58.01788,0.0,05/08/2876 +-3.64626,47.60361,6923,1,6,12,36,47,3.85,15.0,fr,2640,138,112837,1,1,Active Shallow Crust,0.0,89.99037,0.0,01/06/6923 +-3.64626,47.60361,8731,5,20,16,14,32,3.95,5.0,fr,2641,174,112857,1,1,Active Shallow Crust,128.9004,89.99357,0.0,05/20/8731 +-6.8152,48.90484,5189,10,3,23,41,19,3.75,5.0,fr,2642,103,113304,1,1,Active Shallow Crust,0.0,89.98947,0.0,10/03/5189 +3.20394,43.44153,2451,2,13,14,32,12,3.55,5.0,fr,2643,49,113760,1,1,Active Shallow Crust,0.0,89.98902,0.0,02/13/2451 +3.20394,43.44153,808,5,25,14,23,27,3.75,5.0,fr,2644,16,113784,1,1,Active Shallow Crust,0.0,89.99128,0.0,05/25/0808 +3.20394,43.44153,6962,5,25,5,26,31,4.05,15.0,fr,2645,139,113830,1,1,Active Shallow Crust,128.8909,89.99383,0.0,05/25/6962 +3.20394,43.44153,8546,2,12,17,32,44,4.75,5.0,fr,2646,170,113910,1,1,Active Shallow Crust,0.0,89.98977,-90.0,02/12/8546 +6.29019,47.6526,5852,5,20,21,5,58,3.55,5.0,fr,2647,117,114240,1,2,Active Shallow Crust,0.0,89.99321,0.0,05/20/5852 +6.29019,47.6526,7184,4,16,15,33,45,3.55,5.0,fr,2648,143,114240,1,2,Active Shallow Crust,0.0,89.99321,0.0,04/16/7184 +6.29019,47.6526,3357,1,11,8,49,48,3.55,15.0,fr,2649,67,114241,1,1,Active Shallow Crust,0.0,89.99321,0.0,01/11/3357 +6.29019,47.6526,221,3,24,2,8,28,3.55,15.0,fr,2650,4,114247,1,1,Active Shallow Crust,0.0,89.99313,-90.0,03/24/0221 +6.29019,47.6526,7062,1,4,4,27,9,3.65,5.0,fr,2651,141,114252,1,2,Active Shallow Crust,0.0,89.98789,0.0,01/04/7062 +6.29019,47.6526,1031,12,8,6,12,19,3.65,5.0,fr,2652,20,114252,1,2,Active Shallow Crust,0.0,89.98789,0.0,12/08/1031 +6.29019,47.6526,9406,11,7,12,34,31,3.75,5.0,fr,2653,188,114264,1,1,Active Shallow Crust,0.0,89.98921,0.0,11/07/9406 +6.29019,47.6526,7009,5,16,1,42,27,3.85,5.0,fr,2654,140,114279,1,1,Active Shallow Crust,240.0109,57.99739,0.0,05/16/7009 +6.29019,47.6526,2840,4,30,10,33,58,4.05,5.0,fr,2655,56,114300,1,3,Active Shallow Crust,0.0,89.98854,0.0,04/30/2840 +6.29019,47.6526,8207,7,12,0,16,11,4.05,5.0,fr,2656,164,114300,1,3,Active Shallow Crust,0.0,89.98854,0.0,07/12/8207 +6.29019,47.6526,5516,5,6,4,15,37,4.05,5.0,fr,2657,110,114300,1,3,Active Shallow Crust,0.0,89.98854,0.0,05/06/5516 +6.29019,47.6526,6412,10,23,3,31,53,4.15,15.0,fr,2658,128,114322,1,1,Active Shallow Crust,128.8979,89.99319,0.0,10/23/6412 +6.29019,47.6526,1811,4,6,14,18,8,4.25,5.0,fr,2659,36,114324,1,1,Active Shallow Crust,0.0,89.9909,0.0,04/06/1811 +6.29019,47.6526,1846,2,11,9,37,39,4.35,5.0,fr,2660,36,114342,1,1,Active Shallow Crust,0.0,89.98906,-90.0,02/11/1846 +6.29019,47.6526,7044,4,12,3,54,55,4.45,15.0,fr,2661,140,114349,1,1,Active Shallow Crust,0.0,89.99036,0.0,04/12/7044 +6.29019,47.6526,638,12,16,6,24,18,5.05,15.0,fr,2662,12,114421,1,1,Active Shallow Crust,0.0,89.99033,0.0,12/16/0638 +6.29019,47.6526,9813,2,22,4,49,53,5.15,15.0,fr,2663,196,114436,1,1,Active Shallow Crust,240.0203,57.99999,0.0,02/22/9813 +-1.13197,41.81336,1044,8,16,14,44,48,4.75,15.0,fr,2664,20,114868,1,1,Active Shallow Crust,240.006,58.00413,0.0,08/16/1044 +-0.24991,44.78428,6635,3,30,4,1,58,3.75,15.0,fr,2665,132,115225,1,1,Active Shallow Crust,0.0,89.99005,0.0,03/30/6635 +-0.24991,44.78428,9978,9,23,12,0,30,3.75,5.0,fr,2666,199,115227,1,1,Active Shallow Crust,240.0081,58.01754,0.0,09/23/9978 +-0.24991,44.78428,3753,4,16,5,54,18,3.85,5.0,fr,2667,75,115245,1,1,Active Shallow Crust,128.8958,89.99367,0.0,04/16/3753 +-0.24991,44.78428,3381,6,4,23,41,9,4.15,5.0,fr,2668,67,115281,1,1,Active Shallow Crust,128.8978,89.99372,0.0,06/04/3381 +-0.24991,44.78428,2644,10,12,19,50,22,4.85,5.0,fr,2669,52,115365,1,1,Active Shallow Crust,128.8932,89.98901,0.0,10/12/2644 +4.06465,46.96711,3483,5,5,15,39,40,3.55,5.0,fr,2670,69,115680,1,2,Active Shallow Crust,0.0,89.99312,0.0,05/05/3483 +4.06465,46.96711,5581,10,9,8,41,1,3.55,5.0,fr,2671,111,115680,1,2,Active Shallow Crust,0.0,89.99312,0.0,10/09/5581 +4.06465,46.96711,8589,1,18,5,3,40,3.65,15.0,fr,2672,171,115693,1,1,Active Shallow Crust,0.0,89.98773,0.0,01/18/8589 +4.06465,46.96711,6104,9,9,7,3,56,3.65,27.5,fr,2673,122,115694,1,1,Active Shallow Crust,0.0,89.98773,0.0,09/09/6104 +4.06465,46.96711,2427,1,16,3,14,57,3.95,5.0,fr,2674,48,115728,1,1,Active Shallow Crust,0.0,89.99132,0.0,01/16/2427 +4.06465,46.96711,8131,8,21,8,23,55,4.15,5.0,fr,2675,162,115752,1,1,Active Shallow Crust,0.0,89.98965,0.0,08/21/8131 +4.06465,46.96711,1400,9,26,10,43,29,4.25,15.0,fr,2676,27,115765,1,1,Active Shallow Crust,0.0,89.99078,0.0,09/26/1400 +4.06465,46.96711,2697,9,1,10,50,31,4.35,5.0,fr,2677,53,115776,1,1,Active Shallow Crust,0.0,89.98904,0.0,09/01/2697 +-2.5031,43.73377,5376,1,27,15,57,48,3.55,5.0,fr,2678,107,116640,1,1,Active Shallow Crust,0.0,89.98907,0.0,01/27/5376 +-2.5031,43.73377,8537,2,23,8,34,33,3.55,15.0,fr,2679,170,116641,1,1,Active Shallow Crust,0.0,89.98907,0.0,02/23/8537 +6.08721,48.89694,6827,12,5,0,59,20,3.55,15.0,fr,2680,136,117121,1,1,Active Shallow Crust,0.0,89.98674,0.0,12/05/6827 +6.08721,48.89694,4766,1,19,0,21,14,3.55,15.0,fr,2681,95,117127,1,1,Active Shallow Crust,0.0,89.99329,-90.0,01/19/4766 +6.08721,48.89694,9371,10,3,6,4,29,3.65,5.0,fr,2682,187,117138,1,1,Active Shallow Crust,0.0,89.98804,-90.0,10/03/9371 +6.08721,48.89694,3483,2,1,2,11,53,3.95,15.0,fr,2683,69,117175,1,1,Active Shallow Crust,0.0,89.99154,-90.0,02/01/3483 +6.08721,48.89694,5544,10,23,6,29,39,4.25,5.0,fr,2684,110,117207,1,1,Active Shallow Crust,240.0077,57.99452,0.0,10/23/5544 +6.08721,48.89694,4929,12,14,0,0,49,4.35,5.0,fr,2685,98,117216,1,1,Active Shallow Crust,0.0,89.98944,0.0,12/14/4929 +4.93396,43.15724,3414,8,18,0,20,7,3.95,15.0,fr,2686,68,118129,1,1,Active Shallow Crust,0.0,89.99072,0.0,08/18/3414 +4.93396,43.15724,9020,5,8,6,35,18,4.05,5.0,fr,2687,180,118146,1,1,Active Shallow Crust,0.0,89.99163,-90.0,05/08/9020 +4.93396,43.15724,2682,12,14,3,25,29,5.15,5.0,fr,2688,53,118272,1,1,Active Shallow Crust,0.0,89.9895,0.0,12/14/2682 +3.78667,50.69508,7876,11,20,17,26,24,3.55,5.0,fr,2689,157,119040,1,1,Active Shallow Crust,0.0,89.99042,0.0,11/20/7876 +3.78667,50.69508,5552,7,20,20,4,13,3.55,15.0,fr,2690,111,119050,1,2,Active Shallow Crust,128.895,89.99361,0.0,07/20/5552 +3.78667,50.69508,9921,2,13,4,1,53,3.55,15.0,fr,2691,198,119050,1,2,Active Shallow Crust,128.895,89.99361,0.0,02/13/9921 +3.78667,50.69508,4728,8,27,13,2,2,3.65,5.0,fr,2692,94,119058,1,1,Active Shallow Crust,0.0,89.99136,-90.0,08/27/4728 +3.78667,50.69508,407,11,21,19,59,47,3.75,5.0,fr,2693,8,119064,1,1,Active Shallow Crust,0.0,89.98985,0.0,11/21/0407 +3.78667,50.69508,2643,6,16,14,14,18,3.95,5.0,fr,2694,52,119088,1,1,Active Shallow Crust,0.0,89.98992,0.0,06/16/2643 +3.78667,50.69508,8122,8,9,17,1,40,3.95,15.0,fr,2695,162,119089,1,1,Active Shallow Crust,0.0,89.98992,0.0,08/09/8122 +3.78667,50.69508,7340,1,31,3,4,16,3.95,15.0,fr,2696,146,119098,1,1,Active Shallow Crust,128.8997,89.99396,0.0,01/31/7340 +3.78667,50.69508,8855,1,7,1,54,56,4.75,15.0,fr,2697,177,119185,1,1,Active Shallow Crust,0.0,89.99037,0.0,01/07/8855 +3.78667,50.69508,2667,12,3,10,48,5,4.85,5.0,fr,2698,53,119196,1,1,Active Shallow Crust,0.0,89.98999,0.0,12/03/2667 +3.78667,50.69508,5171,7,20,19,45,54,4.95,5.0,fr,2699,103,119208,1,1,Active Shallow Crust,0.0,89.9898,0.0,07/20/5171 +3.78667,50.69508,8212,8,25,14,52,40,5.75,27.5,fr,2700,164,119309,1,1,Active Shallow Crust,240.0466,58.00044,0.0,08/25/8212 +-3.61654,50.57509,1646,3,1,5,42,55,3.95,5.0,fr,2701,32,119568,1,1,Active Shallow Crust,0.0,89.9899,0.0,03/01/1646 +-4.42362,49.43056,8687,5,24,4,39,24,3.55,5.0,fr,2702,173,120000,1,1,Active Shallow Crust,0.0,89.98689,0.0,05/24/8687 +-4.42362,49.43056,1052,12,8,10,43,55,3.75,27.5,fr,2703,21,120029,1,1,Active Shallow Crust,240.0094,58.01786,0.0,12/08/1052 +5.1424,44.51312,6006,1,14,9,20,19,3.55,5.0,fr,2704,120,120960,1,2,Active Shallow Crust,0.0,89.99281,0.0,01/14/6006 +5.1424,44.51312,2085,7,13,12,31,56,3.55,5.0,fr,2705,41,120960,1,2,Active Shallow Crust,0.0,89.99281,0.0,07/13/2085 +5.1424,44.51312,886,5,7,15,17,14,3.55,5.0,fr,2706,17,120966,1,1,Active Shallow Crust,0.0,89.99273,-90.0,05/07/0886 +5.1424,44.51312,2203,8,13,9,29,16,3.65,5.0,fr,2707,44,120972,1,1,Active Shallow Crust,0.0,89.98718,0.0,08/13/2203 +5.1424,44.51312,3323,8,22,5,3,7,3.65,5.0,fr,2708,66,120975,1,1,Active Shallow Crust,240.0017,58.01231,0.0,08/22/3323 +5.1424,44.51312,6717,9,7,1,25,40,3.65,15.0,fr,2709,134,120976,1,1,Active Shallow Crust,240.0017,58.01231,0.0,09/07/6717 +5.1424,44.51312,8024,7,26,0,39,36,3.65,27.5,fr,2710,160,120977,1,1,Active Shallow Crust,240.0017,58.01222,0.0,07/26/8024 +5.1424,44.51312,4839,11,20,4,32,29,3.65,15.0,fr,2711,96,120979,1,1,Active Shallow Crust,0.0,89.98704,-90.0,11/20/4839 +5.1424,44.51312,5339,1,20,10,36,54,3.85,5.0,fr,2712,106,120996,1,1,Active Shallow Crust,0.0,89.98981,0.0,01/20/5339 +5.1424,44.51312,9506,3,5,2,7,4,3.95,15.0,fr,2713,190,121018,1,1,Active Shallow Crust,128.9005,89.99546,0.0,03/05/9506 +5.1424,44.51312,3245,8,4,2,7,48,4.05,5.0,fr,2714,64,121020,1,1,Active Shallow Crust,0.0,89.99191,0.0,08/04/3245 +5.1424,44.51312,7301,3,4,9,57,59,4.25,5.0,fr,2715,146,121044,1,1,Active Shallow Crust,0.0,89.99036,0.0,03/04/7301 +5.1424,44.51312,2789,8,25,4,41,35,4.45,5.0,fr,2716,55,121077,1,1,Active Shallow Crust,128.8923,89.99362,0.0,08/25/2789 +5.1424,44.51312,4976,1,6,2,31,45,5.05,5.0,fr,2717,99,121143,1,1,Active Shallow Crust,240.0211,57.99745,0.0,01/06/4976 +5.1424,44.51312,5985,5,14,21,41,12,6.25,15.0,fr,2718,119,121285,1,1,Active Shallow Crust,0.0,89.99004,0.0,05/14/5985 +-2.84867,46.72583,1358,4,3,22,24,10,3.75,5.0,fr,2719,27,121470,1,1,Active Shallow Crust,0.0,89.98889,-90.0,04/03/1358 +-2.84867,46.72583,5351,5,3,5,6,13,3.75,5.0,fr,2720,107,121473,1,1,Active Shallow Crust,128.897,89.96723,0.0,05/03/5351 +-2.84867,46.72583,9132,8,26,9,16,16,3.95,5.0,fr,2721,182,121488,1,1,Active Shallow Crust,0.0,89.9891,0.0,08/26/9132 +-2.84867,46.72583,7137,10,24,7,53,8,4.45,27.5,fr,2722,142,121550,1,1,Active Shallow Crust,0.0,89.99019,0.0,10/24/7137 +-2.84867,46.72583,8753,4,3,3,38,8,4.75,15.0,fr,2723,175,121588,1,1,Active Shallow Crust,240.0077,58.00444,0.0,04/03/8753 +5.27819,47.64937,3168,11,30,5,36,50,3.75,5.0,fr,2724,63,121944,1,2,Active Shallow Crust,0.0,89.9892,0.0,11/30/3168 +5.27819,47.64937,3177,4,4,12,1,47,3.75,5.0,fr,2725,63,121944,1,2,Active Shallow Crust,0.0,89.9892,0.0,04/04/3177 +5.27819,47.64937,9607,3,22,18,27,54,3.85,5.0,fr,2726,192,121956,1,1,Active Shallow Crust,0.0,89.99038,0.0,03/22/9607 +5.27819,47.64937,7919,7,9,9,15,23,3.95,5.0,fr,2727,158,121974,1,1,Active Shallow Crust,0.0,89.99133,-90.0,07/09/7919 +5.27819,47.64937,587,3,22,11,31,23,4.05,5.0,fr,2728,11,121980,1,1,Active Shallow Crust,0.0,89.98854,0.0,03/22/0587 +5.27819,47.64937,1421,12,16,11,35,6,4.05,15.0,fr,2729,28,121981,1,1,Active Shallow Crust,0.0,89.98854,0.0,12/16/1421 +5.27819,47.64937,8150,3,19,22,20,29,4.15,15.0,fr,2730,162,121993,1,1,Active Shallow Crust,0.0,89.98978,0.0,03/19/8150 +5.27819,47.64937,5867,11,16,5,51,35,4.25,5.0,fr,2731,117,122004,1,1,Active Shallow Crust,0.0,89.9909,0.0,11/16/5867 +2.7592,49.74938,9035,10,12,11,36,32,3.55,5.0,fr,2732,180,122400,1,1,Active Shallow Crust,0.0,89.99023,0.0,10/12/9035 +2.7592,49.74938,3698,5,6,5,44,47,4.05,5.0,fr,2733,73,122460,1,1,Active Shallow Crust,0.0,89.99084,0.0,05/06/3698 +2.7592,49.74938,9783,5,20,2,50,17,4.35,5.0,fr,2734,195,122499,1,1,Active Shallow Crust,240.0091,57.9962,0.0,05/20/9783 +2.7592,49.74938,9142,6,21,15,28,30,5.25,15.0,fr,2735,182,122608,1,1,Active Shallow Crust,240.0277,58.00069,0.0,06/21/9142 +4.09325,51.47221,8009,8,31,15,6,37,3.55,27.5,fr,2736,160,122882,1,1,Active Shallow Crust,0.0,89.98743,0.0,08/31/8009 +4.09325,51.47221,4981,10,30,0,28,14,3.75,15.0,fr,2737,99,122905,1,1,Active Shallow Crust,0.0,89.99002,0.0,10/30/4981 +4.09325,51.47221,5708,6,21,1,24,41,3.75,5.0,fr,2738,114,122907,1,1,Active Shallow Crust,240.008,58.01794,0.0,06/21/5708 +4.09325,51.47221,9402,12,3,10,18,26,3.95,5.0,fr,2739,188,122928,1,1,Active Shallow Crust,0.0,89.98811,0.0,12/03/9402 +4.09325,51.47221,9169,1,21,2,57,55,4.15,5.0,fr,2740,183,122952,1,1,Active Shallow Crust,0.0,89.99055,0.0,01/21/9169 +4.09325,51.47221,1971,8,28,10,23,45,4.25,5.0,fr,2741,39,122964,1,1,Active Shallow Crust,0.0,89.98878,0.0,08/28/1971 +4.09325,51.47221,5688,8,28,16,3,17,6.25,27.5,fr,2742,113,123209,1,1,Active Shallow Crust,240.085,58.00056,0.0,08/28/5688 +8.31776,50.28226,2865,9,5,10,14,0,3.55,15.0,fr,2743,57,123361,1,1,Active Shallow Crust,0.0,89.98711,0.0,09/05/2865 +8.31776,50.28226,7047,9,7,13,20,29,3.65,5.0,fr,2744,140,123372,1,1,Active Shallow Crust,0.0,89.98852,0.0,09/07/7047 +8.31776,50.28226,6308,2,25,23,21,28,3.75,15.0,fr,2745,126,123385,1,1,Active Shallow Crust,0.0,89.98976,0.0,02/25/6308 +8.31776,50.28226,2711,2,5,15,52,57,3.75,15.0,fr,2746,54,123388,1,1,Active Shallow Crust,240.0098,58.01747,0.0,02/05/2711 +8.31776,50.28226,7545,3,9,22,22,11,3.85,5.0,fr,2747,150,123396,1,1,Active Shallow Crust,0.0,89.99088,0.0,03/09/7545 +8.31776,50.28226,6203,1,15,6,17,11,3.85,15.0,fr,2748,124,123400,1,1,Active Shallow Crust,240.0125,57.99748,0.0,01/15/6203 +8.31776,50.28226,8407,4,21,2,38,2,3.95,27.5,fr,2749,168,123410,1,1,Active Shallow Crust,0.0,89.99187,0.0,04/21/8407 +8.31776,50.28226,2519,4,20,8,46,26,3.95,15.0,fr,2750,50,123412,1,1,Active Shallow Crust,240.0209,58.00473,0.0,04/20/2519 +8.31776,50.28226,1492,9,6,20,52,0,4.05,5.0,fr,2751,29,123420,1,1,Active Shallow Crust,0.0,89.99275,0.0,09/06/1492 +8.31776,50.28226,5440,9,8,6,40,33,4.05,5.0,fr,2752,108,123426,1,1,Active Shallow Crust,0.0,89.99267,-90.0,09/08/5440 +8.31776,50.28226,1891,9,20,12,43,31,4.15,5.0,fr,2753,37,123438,1,1,Active Shallow Crust,0.0,89.98693,-90.0,09/20/1891 +8.31776,50.28226,1006,10,5,0,6,40,4.55,5.0,fr,2754,20,123480,1,1,Active Shallow Crust,0.0,89.99185,0.0,10/05/1006 +8.31776,50.28226,3704,7,26,21,44,52,4.95,5.0,fr,2755,74,123528,1,1,Active Shallow Crust,0.0,89.98972,0.0,07/26/3704 +8.31776,50.28226,1219,2,17,9,38,40,5.05,5.0,fr,2756,24,123543,1,1,Active Shallow Crust,240.0243,57.99793,0.0,02/17/1219 +5.73579,49.60434,8297,10,10,0,50,56,3.75,15.0,fr,2757,165,123865,1,1,Active Shallow Crust,0.0,89.98962,0.0,10/10/8297 +5.73579,49.60434,9124,5,28,13,21,38,3.75,27.5,fr,2758,182,123866,1,1,Active Shallow Crust,0.0,89.98962,0.0,05/28/9124 +5.73579,49.60434,4282,4,1,5,45,26,3.95,5.0,fr,2759,85,123888,1,1,Active Shallow Crust,0.0,89.99175,0.0,04/01/4282 +4.88476,47.33996,9256,12,30,21,42,40,3.55,5.0,fr,2760,185,124320,1,1,Active Shallow Crust,0.0,89.99316,0.0,12/30/9256 +4.88476,47.33996,4630,11,16,22,9,1,3.55,5.0,fr,2761,92,124323,1,1,Active Shallow Crust,240.0135,57.99706,0.0,11/16/4630 +4.88476,47.33996,5663,8,24,22,29,9,3.65,5.0,fr,2762,113,124332,1,2,Active Shallow Crust,0.0,89.98782,0.0,08/24/5663 +4.88476,47.33996,4907,2,23,10,5,22,3.65,5.0,fr,2763,98,124332,1,2,Active Shallow Crust,0.0,89.98782,0.0,02/23/4907 +4.88476,47.33996,5441,6,21,14,34,40,3.85,5.0,fr,2764,108,124365,1,1,Active Shallow Crust,128.8949,89.99274,0.0,06/21/5441 +4.88476,47.33996,2541,5,25,11,57,20,4.05,5.0,fr,2765,50,124380,1,1,Active Shallow Crust,0.0,89.98847,0.0,05/25/2541 +4.88476,47.33996,6074,12,1,18,28,8,4.15,5.0,fr,2766,121,124392,1,1,Active Shallow Crust,0.0,89.98972,0.0,12/01/6074 +4.88476,47.33996,7894,2,3,6,58,26,4.25,15.0,fr,2767,157,124405,1,1,Active Shallow Crust,0.0,89.99084,0.0,02/03/7894 +4.88476,47.33996,1359,11,6,17,48,23,4.25,27.5,fr,2768,27,124406,1,1,Active Shallow Crust,0.0,89.99084,0.0,11/06/1359 +4.88476,47.33996,3926,10,17,10,25,6,5.35,5.0,fr,2769,78,124536,1,1,Active Shallow Crust,0.0,89.98967,0.0,10/17/3926 +3.7164,44.70692,2773,1,30,1,10,57,3.55,5.0,fr,2770,55,124800,1,4,Active Shallow Crust,0.0,89.98925,0.0,01/30/2773 +3.7164,44.70692,3113,8,28,16,3,9,3.55,5.0,fr,2771,62,124800,1,4,Active Shallow Crust,0.0,89.98925,0.0,08/28/3113 +3.7164,44.70692,9853,2,22,13,8,47,3.55,5.0,fr,2772,197,124800,1,4,Active Shallow Crust,0.0,89.98925,0.0,02/22/9853 +3.7164,44.70692,9796,7,2,17,8,55,3.55,5.0,fr,2773,195,124800,1,4,Active Shallow Crust,0.0,89.98925,0.0,07/02/9796 +3.7164,44.70692,5873,9,26,14,25,1,3.55,15.0,fr,2774,117,124801,1,1,Active Shallow Crust,0.0,89.98925,0.0,09/26/5873 +3.7164,44.70692,7349,9,30,17,2,45,3.55,5.0,fr,2775,146,124806,1,1,Active Shallow Crust,0.0,89.98913,-90.0,09/30/7349 +3.7164,44.70692,4734,8,5,8,27,29,3.65,15.0,fr,2776,94,124813,1,1,Active Shallow Crust,0.0,89.99042,0.0,08/05/4734 +3.7164,44.70692,3052,11,11,18,39,40,3.65,27.5,fr,2777,61,124814,1,1,Active Shallow Crust,0.0,89.99042,0.0,11/11/3052 +3.7164,44.70692,5045,12,10,14,34,35,3.65,5.0,fr,2778,100,124815,1,1,Active Shallow Crust,240.0005,58.01276,0.0,12/10/5045 +3.7164,44.70692,6422,10,15,0,42,45,3.95,5.0,fr,2779,128,124848,1,1,Active Shallow Crust,0.0,89.99096,0.0,10/15/6422 +3.7164,44.70692,9899,9,18,11,18,13,3.95,5.0,fr,2780,197,124857,1,1,Active Shallow Crust,128.9008,89.99435,0.0,09/18/9899 +3.7164,44.70692,5612,2,17,17,25,32,4.25,5.0,fr,2781,112,124884,1,1,Active Shallow Crust,0.0,89.99039,0.0,02/17/5612 +3.7164,44.70692,261,6,14,9,21,3,4.25,27.5,fr,2782,5,124886,1,1,Active Shallow Crust,0.0,89.99039,0.0,06/14/0261 +3.7164,44.70692,1789,4,28,23,37,51,4.35,15.0,fr,2783,35,124897,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/28/1789 +3.7164,44.70692,6558,4,30,1,41,51,4.55,15.0,fr,2784,131,124924,1,1,Active Shallow Crust,240.009,57.99714,0.0,04/30/6558 +3.7164,44.70692,5968,5,30,10,33,53,6.05,5.0,fr,2785,119,125103,1,1,Active Shallow Crust,240.0535,57.99967,0.0,05/30/5968 +-0.20426,46.00842,2515,12,28,19,38,32,3.55,5.0,fr,2786,50,125280,1,1,Active Shallow Crust,0.0,89.98993,0.0,12/28/2515 +-0.20426,46.00842,4755,3,13,8,22,50,3.55,15.0,fr,2787,95,125281,1,2,Active Shallow Crust,0.0,89.98993,0.0,03/13/4755 +-0.20426,46.00842,9338,1,20,22,18,57,3.55,15.0,fr,2788,186,125281,1,2,Active Shallow Crust,0.0,89.98993,0.0,01/20/9338 +-0.20426,46.00842,29,8,2,16,26,23,3.55,27.5,fr,2789,0,125282,1,1,Active Shallow Crust,0.0,89.98993,0.0,08/02/0029 +-0.20426,46.00842,7895,5,25,10,43,56,3.65,5.0,fr,2790,157,125292,1,1,Active Shallow Crust,0.0,89.99005,0.0,05/25/7895 +-0.20426,46.00842,6155,3,12,20,6,55,3.65,5.0,fr,2791,123,125295,1,2,Active Shallow Crust,240.001,58.01287,0.0,03/12/6155 +-0.20426,46.00842,9788,10,27,20,31,13,3.65,5.0,fr,2792,195,125295,1,2,Active Shallow Crust,240.001,58.01287,0.0,10/27/9788 +-0.20426,46.00842,7652,7,11,17,54,11,3.65,5.0,fr,2793,153,125298,1,1,Active Shallow Crust,0.0,89.98994,-90.0,07/11/7652 +-0.20426,46.00842,4136,7,19,22,8,48,3.85,5.0,fr,2794,82,125316,1,1,Active Shallow Crust,0.0,89.98993,0.0,07/19/4136 +-0.20426,46.00842,1279,1,12,12,32,31,3.95,27.5,fr,2795,25,125333,1,1,Active Shallow Crust,240.0197,58.00495,0.0,01/12/1279 +-0.20426,46.00842,1525,12,25,16,2,31,3.95,15.0,fr,2796,30,125335,1,1,Active Shallow Crust,0.0,89.98994,-90.0,12/25/1525 +-0.20426,46.00842,6546,9,4,0,8,12,3.95,5.0,fr,2797,130,125337,1,1,Active Shallow Crust,128.9005,89.99372,0.0,09/04/6546 +-0.20426,46.00842,1753,2,10,9,26,5,4.05,15.0,fr,2798,35,125344,1,1,Active Shallow Crust,240.0059,58.00578,0.0,02/10/1753 +-0.20426,46.00842,8465,5,12,0,31,36,4.05,27.5,fr,2799,169,125345,1,1,Active Shallow Crust,240.0059,58.00578,0.0,05/12/8465 +-0.20426,46.00842,7411,5,7,10,12,38,4.15,15.0,fr,2800,148,125356,1,1,Active Shallow Crust,240.0084,57.99732,0.0,05/07/7411 +-0.20426,46.00842,6470,8,23,22,0,40,4.25,5.0,fr,2801,129,125364,1,1,Active Shallow Crust,0.0,89.99003,0.0,08/23/6470 +-0.20426,46.00842,4646,8,6,13,49,3,4.75,15.0,fr,2802,92,125425,1,1,Active Shallow Crust,0.0,89.98999,0.0,08/06/4646 +-0.29466,41.63122,1768,7,8,19,21,9,3.65,5.0,fr,2803,35,125775,1,1,Active Shallow Crust,240.0006,58.01286,0.0,07/08/1768 +-0.29466,41.63122,4831,7,27,3,49,41,3.65,15.0,fr,2804,96,125776,1,1,Active Shallow Crust,240.0006,58.01286,0.0,07/27/4831 +-0.29466,41.63122,1024,12,11,8,1,23,4.55,5.0,fr,2805,20,125880,1,1,Active Shallow Crust,0.0,89.99002,0.0,12/11/1024 +-0.29466,41.63122,1935,11,6,19,52,11,4.85,27.5,fr,2806,38,125918,1,1,Active Shallow Crust,0.0,89.98998,0.0,11/06/1935 +-4.12709,49.59296,4582,6,25,7,25,31,3.95,5.0,fr,2807,91,126294,1,1,Active Shallow Crust,0.0,89.99165,-90.0,06/25/4582 +-4.12709,49.59296,3930,6,21,14,12,46,4.65,5.0,fr,2808,78,126372,1,1,Active Shallow Crust,0.0,89.99078,0.0,06/21/3930 +-0.25763,51.83805,7706,11,27,0,7,32,3.55,15.0,fr,2809,154,126724,1,1,Active Shallow Crust,240.0128,57.99825,0.0,11/27/7706 +-0.25763,51.83805,3824,9,3,18,50,13,3.65,5.0,fr,2810,76,126741,1,1,Active Shallow Crust,128.9,89.96352,0.0,09/03/3824 +-0.25763,51.83805,8046,6,21,15,51,37,3.75,5.0,fr,2811,160,126747,1,1,Active Shallow Crust,240.009,58.01769,0.0,06/21/8046 +-0.25763,51.83805,8153,12,20,11,20,38,3.75,15.0,fr,2812,163,126748,1,1,Active Shallow Crust,240.009,58.01769,0.0,12/20/8153 +-0.25763,51.83805,8689,2,19,16,49,44,4.45,5.0,fr,2813,173,126831,1,1,Active Shallow Crust,240.0068,57.99495,0.0,02/19/8689 +6.02682,44.36378,2905,2,1,0,30,9,3.55,15.0,fr,2814,58,128161,1,2,Active Shallow Crust,0.0,89.99279,0.0,02/01/2905 +6.02682,44.36378,3739,5,24,18,14,8,3.55,15.0,fr,2815,74,128161,1,2,Active Shallow Crust,0.0,89.99279,0.0,05/24/3739 +6.02682,44.36378,9427,4,4,19,49,1,3.55,5.0,fr,2816,188,128169,1,1,Active Shallow Crust,128.8965,89.99279,0.0,04/04/9427 +6.02682,44.36378,6890,11,28,13,36,39,3.65,5.0,fr,2817,137,128172,1,1,Active Shallow Crust,0.0,89.98715,0.0,11/28/6890 +6.02682,44.36378,2624,2,19,5,56,35,3.65,15.0,fr,2818,52,128173,1,1,Active Shallow Crust,0.0,89.98715,0.0,02/19/2624 +6.02682,44.36378,5600,3,28,18,57,13,3.85,5.0,fr,2819,111,128196,1,1,Active Shallow Crust,0.0,89.98979,0.0,03/28/5600 +6.02682,44.36378,7075,7,20,23,8,36,4.05,5.0,fr,2820,141,128220,1,1,Active Shallow Crust,0.0,89.99189,0.0,07/20/7075 +6.02682,44.36378,1079,8,17,23,24,23,4.05,5.0,fr,2821,21,128226,1,1,Active Shallow Crust,0.0,89.9918,-90.0,08/17/1079 +6.02682,44.36378,6230,12,28,18,23,6,4.15,5.0,fr,2822,124,128238,1,1,Active Shallow Crust,0.0,89.98904,-90.0,12/28/6230 +6.02682,44.36378,5464,6,22,18,47,18,4.25,15.0,fr,2823,109,128245,1,2,Active Shallow Crust,0.0,89.99034,0.0,06/22/5464 +6.02682,44.36378,8228,11,19,11,51,27,4.25,15.0,fr,2824,164,128245,1,2,Active Shallow Crust,0.0,89.99034,0.0,11/19/8228 +6.02682,44.36378,3151,5,24,12,11,36,4.35,5.0,fr,2825,63,128259,1,1,Active Shallow Crust,240.0083,57.99549,0.0,05/24/3151 +6.02682,44.36378,3496,1,27,5,54,10,4.45,15.0,fr,2826,69,128269,1,1,Active Shallow Crust,0.0,89.98977,0.0,01/27/3496 +6.02682,44.36378,2581,8,14,16,45,35,4.75,15.0,fr,2827,51,128305,1,1,Active Shallow Crust,0.0,89.98914,0.0,08/14/2581 +6.02682,44.36378,5140,3,31,0,35,29,6.05,5.0,fr,2828,102,128463,1,1,Active Shallow Crust,240.053,57.99961,0.0,03/31/5140 +0.91106,45.15001,2233,6,30,10,15,59,3.55,5.0,fr,2829,44,128640,1,1,Active Shallow Crust,0.0,89.99022,0.0,06/30/2233 +0.91106,45.15001,2132,3,30,4,37,48,3.65,5.0,fr,2830,42,128658,1,1,Active Shallow Crust,0.0,89.99038,-90.0,03/30/2132 +0.91106,45.15001,1961,7,29,6,10,31,4.15,5.0,fr,2831,39,128715,1,1,Active Shallow Crust,240.0082,57.99718,0.0,07/29/1961 +0.91106,45.15001,1825,7,10,0,53,31,4.25,5.0,fr,2832,36,128727,1,1,Active Shallow Crust,240.0073,57.99403,0.0,07/10/1825 +0.91106,45.15001,9815,12,21,14,36,57,4.45,5.0,fr,2833,196,128748,1,1,Active Shallow Crust,0.0,89.98991,0.0,12/21/9815 +-5.63001,47.80371,3879,9,9,17,32,16,3.85,5.0,fr,2834,77,129162,1,1,Active Shallow Crust,0.0,89.9903,-90.0,09/09/3879 +-5.63001,47.80371,7893,5,25,10,5,8,4.05,5.0,fr,2835,157,129180,1,1,Active Shallow Crust,0.0,89.98857,0.0,05/25/7893 +6.92351,46.44066,697,8,16,0,49,4,3.55,5.0,fr,2836,13,129600,1,8,Active Shallow Crust,0.0,89.99305,0.0,08/16/0697 +6.92351,46.44066,3401,10,15,18,42,25,3.55,5.0,fr,2837,68,129600,1,8,Active Shallow Crust,0.0,89.99305,0.0,10/15/3401 +6.92351,46.44066,6557,10,27,23,55,18,3.55,5.0,fr,2838,131,129600,1,8,Active Shallow Crust,0.0,89.99305,0.0,10/27/6557 +6.92351,46.44066,6184,8,16,1,46,44,3.55,5.0,fr,2839,123,129600,1,8,Active Shallow Crust,0.0,89.99305,0.0,08/16/6184 +6.92351,46.44066,1990,1,18,9,27,43,3.55,5.0,fr,2840,39,129600,1,8,Active Shallow Crust,0.0,89.99305,0.0,01/18/1990 +6.92351,46.44066,7541,12,21,11,28,16,3.55,5.0,fr,2841,150,129600,1,8,Active Shallow Crust,0.0,89.99305,0.0,12/21/7541 +6.92351,46.44066,8877,5,23,6,14,17,3.55,5.0,fr,2842,177,129600,1,8,Active Shallow Crust,0.0,89.99305,0.0,05/23/8877 +6.92351,46.44066,3380,3,23,12,6,1,3.55,5.0,fr,2843,67,129600,1,8,Active Shallow Crust,0.0,89.99305,0.0,03/23/3380 +6.92351,46.44066,6322,1,10,1,47,15,3.55,15.0,fr,2844,126,129601,1,4,Active Shallow Crust,0.0,89.99305,0.0,01/10/6322 +6.92351,46.44066,9340,4,3,18,34,52,3.55,15.0,fr,2845,186,129601,1,4,Active Shallow Crust,0.0,89.99305,0.0,04/03/9340 +6.92351,46.44066,5965,8,7,19,46,36,3.55,15.0,fr,2846,119,129601,1,4,Active Shallow Crust,0.0,89.99305,0.0,08/07/5965 +6.92351,46.44066,332,3,7,22,21,0,3.55,15.0,fr,2847,6,129601,1,4,Active Shallow Crust,0.0,89.99305,0.0,03/07/0332 +6.92351,46.44066,3750,10,20,5,31,31,3.55,5.0,fr,2848,74,129603,1,2,Active Shallow Crust,240.0125,57.99721,0.0,10/20/3750 +6.92351,46.44066,2174,2,11,22,41,14,3.55,5.0,fr,2849,43,129603,1,2,Active Shallow Crust,240.0125,57.99721,0.0,02/11/2174 +6.92351,46.44066,1640,11,23,6,18,33,3.55,15.0,fr,2850,32,129604,1,1,Active Shallow Crust,240.0125,57.99721,0.0,11/23/1640 +6.92351,46.44066,2807,9,24,1,0,19,3.55,5.0,fr,2851,56,129606,1,1,Active Shallow Crust,0.0,89.99297,-90.0,09/24/2807 +6.92351,46.44066,6809,10,3,16,3,45,3.55,15.0,fr,2852,136,129607,1,1,Active Shallow Crust,0.0,89.99297,-90.0,10/03/6809 +6.92351,46.44066,9990,5,18,21,58,53,3.55,15.0,fr,2853,199,129610,1,1,Active Shallow Crust,128.897,89.99305,0.0,05/18/9990 +6.92351,46.44066,6323,7,25,22,6,12,3.65,5.0,fr,2854,126,129612,1,7,Active Shallow Crust,0.0,89.98761,0.0,07/25/6323 +6.92351,46.44066,6789,11,28,1,40,43,3.65,5.0,fr,2855,135,129612,1,7,Active Shallow Crust,0.0,89.98761,0.0,11/28/6789 +6.92351,46.44066,2448,11,12,17,6,21,3.65,5.0,fr,2856,48,129612,1,7,Active Shallow Crust,0.0,89.98761,0.0,11/12/2448 +6.92351,46.44066,813,2,23,8,2,33,3.65,5.0,fr,2857,16,129612,1,7,Active Shallow Crust,0.0,89.98761,0.0,02/23/0813 +6.92351,46.44066,2441,9,17,10,33,56,3.65,5.0,fr,2858,48,129612,1,7,Active Shallow Crust,0.0,89.98761,0.0,09/17/2441 +6.92351,46.44066,866,9,26,13,11,57,3.65,5.0,fr,2859,17,129612,1,7,Active Shallow Crust,0.0,89.98761,0.0,09/26/0866 +6.92351,46.44066,490,4,26,4,3,48,3.65,5.0,fr,2860,9,129612,1,7,Active Shallow Crust,0.0,89.98761,0.0,04/26/0490 +6.92351,46.44066,7245,4,9,22,10,24,3.65,15.0,fr,2861,144,129613,1,1,Active Shallow Crust,0.0,89.98761,0.0,04/09/7245 +6.92351,46.44066,3389,6,5,0,17,20,3.65,27.5,fr,2862,67,129614,1,1,Active Shallow Crust,0.0,89.98761,0.0,06/05/3389 +6.92351,46.44066,8187,10,18,19,1,45,3.65,5.0,fr,2863,163,129618,1,1,Active Shallow Crust,0.0,89.98747,-90.0,10/18/8187 +6.92351,46.44066,8004,10,23,1,57,42,3.65,15.0,fr,2864,160,129622,1,1,Active Shallow Crust,128.9012,89.96352,0.0,10/23/8004 +6.92351,46.44066,7285,10,9,10,20,3,3.75,5.0,fr,2865,145,129624,1,5,Active Shallow Crust,0.0,89.98896,0.0,10/09/7285 +6.92351,46.44066,7819,6,13,13,44,32,3.75,5.0,fr,2866,156,129624,1,5,Active Shallow Crust,0.0,89.98896,0.0,06/13/7819 +6.92351,46.44066,8488,12,3,4,17,2,3.75,5.0,fr,2867,169,129624,1,5,Active Shallow Crust,0.0,89.98896,0.0,12/03/8488 +6.92351,46.44066,8948,1,4,0,11,38,3.75,5.0,fr,2868,178,129624,1,5,Active Shallow Crust,0.0,89.98896,0.0,01/04/8948 +6.92351,46.44066,819,9,25,9,16,0,3.75,5.0,fr,2869,16,129624,1,5,Active Shallow Crust,0.0,89.98896,0.0,09/25/0819 +6.92351,46.44066,4533,2,18,22,18,33,3.75,5.0,fr,2870,90,129627,1,2,Active Shallow Crust,240.0088,58.01713,0.0,02/18/4533 +6.92351,46.44066,3848,5,20,17,15,9,3.75,5.0,fr,2871,76,129627,1,2,Active Shallow Crust,240.0088,58.01713,0.0,05/20/3848 +6.92351,46.44066,6113,9,21,18,18,46,3.75,15.0,fr,2872,122,129628,1,2,Active Shallow Crust,240.0088,58.01713,0.0,09/21/6113 +6.92351,46.44066,5711,4,15,4,44,52,3.75,15.0,fr,2873,114,129628,1,2,Active Shallow Crust,240.0088,58.01713,0.0,04/15/5711 +6.92351,46.44066,5183,11,20,8,1,6,3.75,15.0,fr,2874,103,129631,1,1,Active Shallow Crust,0.0,89.98883,-90.0,11/20/5183 +6.92351,46.44066,5719,3,23,12,49,21,3.75,5.0,fr,2875,114,129633,1,1,Active Shallow Crust,128.8958,89.96749,0.0,03/23/5719 +6.92351,46.44066,7632,7,6,12,59,4,3.85,5.0,fr,2876,152,129636,1,7,Active Shallow Crust,0.0,89.99016,0.0,07/06/7632 +6.92351,46.44066,6383,6,9,3,22,15,3.85,5.0,fr,2877,127,129636,1,7,Active Shallow Crust,0.0,89.99016,0.0,06/09/6383 +6.92351,46.44066,3194,8,11,23,34,40,3.85,5.0,fr,2878,63,129636,1,7,Active Shallow Crust,0.0,89.99016,0.0,08/11/3194 +6.92351,46.44066,1028,3,29,15,9,28,3.85,5.0,fr,2879,20,129636,1,7,Active Shallow Crust,0.0,89.99016,0.0,03/29/1028 +6.92351,46.44066,9778,5,31,23,34,55,3.85,5.0,fr,2880,195,129636,1,7,Active Shallow Crust,0.0,89.99016,0.0,05/31/9778 +6.92351,46.44066,5774,10,29,3,21,4,3.85,5.0,fr,2881,115,129636,1,7,Active Shallow Crust,0.0,89.99016,0.0,10/29/5774 +6.92351,46.44066,9805,4,13,10,42,29,3.85,5.0,fr,2882,196,129636,1,7,Active Shallow Crust,0.0,89.99016,0.0,04/13/9805 +6.92351,46.44066,2777,4,4,3,49,57,3.85,15.0,fr,2883,55,129637,1,3,Active Shallow Crust,0.0,89.99016,0.0,04/04/2777 +6.92351,46.44066,959,4,27,1,50,33,3.85,15.0,fr,2884,19,129637,1,3,Active Shallow Crust,0.0,89.99016,0.0,04/27/0959 +6.92351,46.44066,1329,10,15,23,58,26,3.85,15.0,fr,2885,26,129637,1,3,Active Shallow Crust,0.0,89.99016,0.0,10/15/1329 +6.92351,46.44066,8260,8,25,16,39,9,3.85,5.0,fr,2886,165,129642,1,2,Active Shallow Crust,0.0,89.99004,-90.0,08/25/8260 +6.92351,46.44066,1342,6,17,11,11,55,3.85,5.0,fr,2887,26,129642,1,2,Active Shallow Crust,0.0,89.99004,-90.0,06/17/1342 +6.92351,46.44066,4511,3,12,11,39,47,3.85,15.0,fr,2888,90,129643,1,2,Active Shallow Crust,0.0,89.99004,-90.0,03/12/4511 +6.92351,46.44066,7926,10,6,20,28,9,3.85,15.0,fr,2889,158,129643,1,2,Active Shallow Crust,0.0,89.99004,-90.0,10/06/7926 +6.92351,46.44066,7877,5,7,7,12,49,3.85,5.0,fr,2890,157,129645,1,1,Active Shallow Crust,128.8957,89.99508,0.0,05/07/7877 +6.92351,46.44066,8948,6,25,21,59,22,3.95,5.0,fr,2891,178,129648,1,6,Active Shallow Crust,0.0,89.99123,0.0,06/25/8948 +6.92351,46.44066,4292,5,17,9,15,5,3.95,5.0,fr,2892,85,129648,1,6,Active Shallow Crust,0.0,89.99123,0.0,05/17/4292 +6.92351,46.44066,3673,6,11,19,25,26,3.95,5.0,fr,2893,73,129648,1,6,Active Shallow Crust,0.0,89.99123,0.0,06/11/3673 +6.92351,46.44066,8389,8,12,18,50,52,3.95,5.0,fr,2894,167,129648,1,6,Active Shallow Crust,0.0,89.99123,0.0,08/12/8389 +6.92351,46.44066,5970,7,28,16,45,51,3.95,5.0,fr,2895,119,129648,1,6,Active Shallow Crust,0.0,89.99123,0.0,07/28/5970 +6.92351,46.44066,2025,5,13,3,14,13,3.95,5.0,fr,2896,40,129648,1,6,Active Shallow Crust,0.0,89.99123,0.0,05/13/2025 +6.92351,46.44066,9731,10,1,12,5,47,3.95,15.0,fr,2897,194,129649,1,1,Active Shallow Crust,0.0,89.99123,0.0,10/01/9731 +6.92351,46.44066,7828,6,18,12,23,22,3.95,27.5,fr,2898,156,129650,1,2,Active Shallow Crust,0.0,89.99123,0.0,06/18/7828 +6.92351,46.44066,8071,4,22,18,21,33,3.95,27.5,fr,2899,161,129650,1,2,Active Shallow Crust,0.0,89.99123,0.0,04/22/8071 +6.92351,46.44066,1862,12,19,1,49,56,3.95,5.0,fr,2900,37,129651,1,1,Active Shallow Crust,240.0187,58.00568,0.0,12/19/1862 +6.92351,46.44066,3362,9,11,12,31,16,3.95,15.0,fr,2901,67,129652,1,2,Active Shallow Crust,240.0187,58.00568,0.0,09/11/3362 +6.92351,46.44066,9437,4,30,15,54,51,3.95,15.0,fr,2902,188,129652,1,2,Active Shallow Crust,240.0187,58.00568,0.0,04/30/9437 +6.92351,46.44066,6707,1,22,12,53,33,3.95,27.5,fr,2903,134,129656,1,1,Active Shallow Crust,0.0,89.99113,-90.0,01/22/6707 +6.92351,46.44066,2202,7,18,3,21,30,4.05,5.0,fr,2904,44,129660,1,3,Active Shallow Crust,0.0,89.98827,0.0,07/18/2202 +6.92351,46.44066,6379,7,29,19,56,21,4.05,5.0,fr,2905,127,129660,1,3,Active Shallow Crust,0.0,89.98827,0.0,07/29/6379 +6.92351,46.44066,8930,4,10,8,50,51,4.05,5.0,fr,2906,178,129660,1,3,Active Shallow Crust,0.0,89.98827,0.0,04/10/8930 +6.92351,46.44066,4918,3,6,11,16,4,4.05,5.0,fr,2907,98,129666,1,1,Active Shallow Crust,0.0,89.98814,-90.0,03/06/4918 +6.92351,46.44066,3406,8,23,5,51,8,4.05,27.5,fr,2908,68,129668,1,1,Active Shallow Crust,0.0,89.98814,-90.0,08/23/3406 +6.92351,46.44066,1843,5,22,5,0,17,4.15,5.0,fr,2909,36,129672,1,3,Active Shallow Crust,0.0,89.98955,0.0,05/22/1843 +6.92351,46.44066,7196,10,2,5,20,20,4.15,5.0,fr,2910,143,129672,1,3,Active Shallow Crust,0.0,89.98955,0.0,10/02/7196 +6.92351,46.44066,9081,7,5,12,13,44,4.15,5.0,fr,2911,181,129672,1,3,Active Shallow Crust,0.0,89.98955,0.0,07/05/9081 +6.92351,46.44066,5425,4,10,21,37,5,4.15,15.0,fr,2912,108,129673,1,1,Active Shallow Crust,0.0,89.98955,0.0,04/10/5425 +6.92351,46.44066,83,4,15,23,55,43,4.25,5.0,fr,2913,1,129684,1,2,Active Shallow Crust,0.0,89.99068,0.0,04/15/0083 +6.92351,46.44066,443,8,29,3,18,55,4.25,5.0,fr,2914,8,129684,1,2,Active Shallow Crust,0.0,89.99068,0.0,08/29/0443 +6.92351,46.44066,1618,8,14,16,2,28,4.25,15.0,fr,2915,32,129685,1,1,Active Shallow Crust,0.0,89.99068,0.0,08/14/1618 +6.92351,46.44066,4666,2,6,2,46,18,4.25,5.0,fr,2916,93,129693,1,1,Active Shallow Crust,128.8949,89.98094,0.0,02/06/4666 +6.92351,46.44066,6303,2,14,7,27,46,4.35,5.0,fr,2917,126,129696,1,1,Active Shallow Crust,0.0,89.98894,0.0,02/14/6303 +6.92351,46.44066,5784,3,24,0,18,38,4.35,15.0,fr,2918,115,129697,1,1,Active Shallow Crust,0.0,89.98894,0.0,03/24/5784 +6.92351,46.44066,7417,12,25,20,19,45,4.35,27.5,fr,2919,148,129698,1,1,Active Shallow Crust,0.0,89.98894,0.0,12/25/7417 +6.92351,46.44066,1475,12,21,17,50,50,4.35,5.0,fr,2920,29,129702,1,1,Active Shallow Crust,0.0,89.98881,-90.0,12/21/1475 +6.92351,46.44066,307,3,14,19,8,3,4.35,27.5,fr,2921,6,129704,1,1,Active Shallow Crust,0.0,89.98881,-90.0,03/14/0307 +6.92351,46.44066,2426,1,12,18,30,54,4.35,5.0,fr,2922,48,129705,1,2,Active Shallow Crust,128.8983,89.98251,0.0,01/12/2426 +6.92351,46.44066,7071,3,23,0,58,43,4.35,5.0,fr,2923,141,129705,1,2,Active Shallow Crust,128.8983,89.98251,0.0,03/23/7071 +6.92351,46.44066,3744,6,4,4,43,38,4.45,5.0,fr,2924,74,129711,1,1,Active Shallow Crust,240.0056,57.99436,0.0,06/04/3744 +6.92351,46.44066,8639,8,26,18,45,40,4.45,15.0,fr,2925,172,129715,1,1,Active Shallow Crust,0.0,89.99002,-90.0,08/26/8639 +6.92351,46.44066,1767,12,12,0,45,33,4.45,15.0,fr,2926,35,129718,1,1,Active Shallow Crust,128.8923,89.99384,0.0,12/12/1767 +6.92351,46.44066,5412,10,21,16,7,43,4.55,5.0,fr,2927,108,129720,1,1,Active Shallow Crust,0.0,89.98901,0.0,10/21/5412 +6.92351,46.44066,1915,6,17,0,31,2,4.65,5.0,fr,2928,38,129732,1,1,Active Shallow Crust,0.0,89.9902,0.0,06/17/1915 +6.92351,46.44066,3804,5,29,3,24,45,4.65,5.0,fr,2929,76,129735,1,1,Active Shallow Crust,240.0104,57.99427,0.0,05/29/3804 +6.92351,46.44066,9093,4,19,4,21,57,4.75,5.0,fr,2930,181,129744,1,1,Active Shallow Crust,0.0,89.98952,0.0,04/19/9093 +6.92351,46.44066,7688,3,16,7,21,27,4.75,27.5,fr,2931,153,129746,1,1,Active Shallow Crust,0.0,89.98952,0.0,03/16/7688 +6.92351,46.44066,6576,4,18,14,35,11,4.75,5.0,fr,2932,131,129747,1,1,Active Shallow Crust,240.0073,58.00454,0.0,04/18/6576 +6.92351,46.44066,2262,7,6,12,37,53,5.15,5.0,fr,2933,45,129792,1,1,Active Shallow Crust,0.0,89.99008,0.0,07/06/2262 +6.92351,46.44066,7045,1,9,6,40,58,5.15,5.0,fr,2934,140,129795,1,1,Active Shallow Crust,240.0197,57.99984,0.0,01/09/7045 +6.92351,46.44066,9098,7,26,13,36,9,5.25,15.0,fr,2935,181,129805,1,1,Active Shallow Crust,0.0,89.99018,0.0,07/26/9098 +6.92351,46.44066,4174,1,19,3,5,12,5.55,5.0,fr,2936,83,129840,1,1,Active Shallow Crust,0.0,89.99026,0.0,01/19/4174 +5.66518,46.67261,3945,2,12,17,53,28,3.55,5.0,fr,2937,78,130080,1,1,Active Shallow Crust,0.0,89.99308,0.0,02/12/3945 +5.66518,46.67261,3265,4,11,17,59,50,3.55,5.0,fr,2938,65,130086,1,1,Active Shallow Crust,0.0,89.993,-90.0,04/11/3265 +5.66518,46.67261,8214,1,28,1,12,45,3.55,27.5,fr,2939,164,130088,1,1,Active Shallow Crust,0.0,89.993,-90.0,01/28/8214 +5.66518,46.67261,2642,11,16,16,55,52,3.65,5.0,fr,2940,52,130092,1,1,Active Shallow Crust,0.0,89.98766,0.0,11/16/2642 +5.66518,46.67261,1055,12,2,15,58,22,3.75,5.0,fr,2941,21,130104,1,1,Active Shallow Crust,0.0,89.98901,0.0,12/02/1055 +5.66518,46.67261,9143,11,18,5,56,22,3.85,5.0,fr,2942,182,130116,1,2,Active Shallow Crust,0.0,89.9902,0.0,11/18/9143 +5.66518,46.67261,9641,11,30,19,8,26,3.85,5.0,fr,2943,192,130116,1,2,Active Shallow Crust,0.0,89.9902,0.0,11/30/9641 +5.66518,46.67261,599,9,6,13,20,43,4.55,15.0,fr,2944,11,130204,1,1,Active Shallow Crust,240.0093,57.99729,0.0,09/06/0599 +5.665183,46.67261,134,12,26,18,15,58,6.15,6.011322,fr,2945,2,130392,1,1,Active Shallow Crust,0.0,89.98994,0.0,12/26/0134 +0.64888,47.94485,3145,6,22,0,16,54,3.65,5.0,fr,2946,62,130572,1,1,Active Shallow Crust,0.0,89.99022,0.0,06/22/3145 +0.64888,47.94485,1081,1,5,11,51,54,3.75,15.0,fr,2947,21,130588,1,1,Active Shallow Crust,240.0085,58.01762,0.0,01/05/1081 +0.64888,47.94485,3708,1,9,22,4,5,3.75,5.0,fr,2948,74,130590,1,1,Active Shallow Crust,0.0,89.98982,-90.0,01/09/3708 +0.64888,47.94485,8037,6,13,15,44,18,4.05,5.0,fr,2949,160,130623,1,1,Active Shallow Crust,240.0061,58.00587,0.0,06/13/8037 +2.56609,42.94411,6489,4,7,8,5,59,3.55,5.0,fr,2950,129,131040,1,1,Active Shallow Crust,0.0,89.98893,0.0,04/07/6489 +2.56609,42.94411,6996,4,23,19,19,24,3.55,5.0,fr,2951,139,131046,1,1,Active Shallow Crust,0.0,89.9888,-90.0,04/23/6996 +2.56609,42.94411,4646,11,27,15,19,12,3.65,5.0,fr,2952,92,131055,1,1,Active Shallow Crust,240.0006,58.01228,0.0,11/27/4646 +2.56609,42.94411,2945,6,1,12,56,10,3.75,5.0,fr,2953,58,131064,1,2,Active Shallow Crust,0.0,89.9912,0.0,06/01/2945 +2.56609,42.94411,7481,12,10,0,52,45,3.75,5.0,fr,2954,149,131064,1,2,Active Shallow Crust,0.0,89.9912,0.0,12/10/7481 +2.56609,42.94411,209,11,26,2,48,5,3.85,5.0,fr,2955,4,131076,1,2,Active Shallow Crust,0.0,89.98955,0.0,11/26/0209 +2.56609,42.94411,3428,7,18,14,14,59,3.85,5.0,fr,2956,68,131076,1,2,Active Shallow Crust,0.0,89.98955,0.0,07/18/3428 +2.56609,42.94411,1699,9,12,15,57,45,3.85,27.5,fr,2957,33,131078,1,1,Active Shallow Crust,0.0,89.98955,0.0,09/12/1699 +2.56609,42.94411,3125,10,3,13,22,18,3.85,5.0,fr,2958,62,131085,1,1,Active Shallow Crust,128.8956,89.99477,0.0,10/03/3125 +2.56609,42.94411,4477,5,5,0,56,22,3.95,5.0,fr,2959,89,131088,1,1,Active Shallow Crust,0.0,89.99068,0.0,05/05/4477 +2.56609,42.94411,6449,9,14,0,7,31,4.15,15.0,fr,2960,128,131119,1,1,Active Shallow Crust,0.0,89.99065,-90.0,09/14/6449 +2.56609,42.94411,8555,4,27,4,24,42,4.25,5.0,fr,2961,171,131124,1,1,Active Shallow Crust,0.0,89.9901,0.0,04/27/8555 +2.56609,42.94411,6099,10,15,4,51,48,4.25,15.0,fr,2962,121,131125,1,1,Active Shallow Crust,0.0,89.9901,0.0,10/15/6099 +2.56609,42.94411,1825,2,12,7,5,20,4.25,5.0,fr,2963,36,131133,1,1,Active Shallow Crust,128.8951,89.98081,0.0,02/12/1825 +2.56609,42.94411,9715,3,4,0,48,35,4.35,15.0,fr,2964,194,131137,1,1,Active Shallow Crust,0.0,89.98972,0.0,03/04/9715 +2.56609,42.94411,2827,11,24,23,53,25,4.45,5.0,fr,2965,56,131148,1,2,Active Shallow Crust,0.0,89.98952,0.0,11/24/2827 +2.56609,42.94411,6954,1,16,17,14,22,4.45,5.0,fr,2966,139,131148,1,2,Active Shallow Crust,0.0,89.98952,0.0,01/16/6954 +2.56609,42.94411,7548,6,11,0,26,23,4.75,5.0,fr,2967,150,131187,1,1,Active Shallow Crust,240.0064,58.00424,0.0,06/11/7548 +2.56609,42.94411,8553,6,4,13,39,7,4.95,5.0,fr,2968,171,131208,1,1,Active Shallow Crust,0.0,89.98969,0.0,06/04/8553 +0.6405,42.41258,6710,1,6,10,30,3,3.55,5.0,fr,2969,134,132000,1,3,Active Shallow Crust,0.0,89.98976,0.0,01/06/6710 +0.6405,42.41258,7023,11,25,23,6,15,3.55,5.0,fr,2970,140,132000,1,3,Active Shallow Crust,0.0,89.98976,0.0,11/25/7023 +0.6405,42.41258,7239,3,16,9,32,19,3.55,5.0,fr,2971,144,132000,1,3,Active Shallow Crust,0.0,89.98976,0.0,03/16/7239 +0.6405,42.41258,7446,5,2,17,35,58,3.55,27.5,fr,2972,148,132002,1,1,Active Shallow Crust,0.0,89.98976,0.0,05/02/7446 +0.6405,42.41258,2305,3,13,20,17,20,3.55,27.5,fr,2973,46,132005,1,1,Active Shallow Crust,240.0119,57.99793,0.0,03/13/2305 +0.6405,42.41258,1205,10,8,9,51,48,3.55,15.0,fr,2974,24,132007,1,1,Active Shallow Crust,0.0,89.98965,-90.0,10/08/1205 +0.6405,42.41258,6907,3,12,21,43,39,3.65,5.0,fr,2975,138,132012,1,2,Active Shallow Crust,0.0,89.99004,0.0,03/12/6907 +0.6405,42.41258,6699,10,21,18,29,47,3.65,5.0,fr,2976,133,132012,1,2,Active Shallow Crust,0.0,89.99004,0.0,10/21/6699 +0.6405,42.41258,2038,3,26,12,26,46,3.65,15.0,fr,2977,40,132013,1,1,Active Shallow Crust,0.0,89.99004,0.0,03/26/2038 +0.6405,42.41258,4917,5,6,8,9,50,3.65,5.0,fr,2978,98,132021,1,1,Active Shallow Crust,128.9007,89.96352,0.0,05/06/4917 +0.6405,42.41258,3315,5,3,8,23,30,3.75,5.0,fr,2979,66,132024,1,1,Active Shallow Crust,0.0,89.98965,0.0,05/03/3315 +0.6405,42.41258,9973,4,15,7,34,7,3.85,5.0,fr,2980,199,132036,1,1,Active Shallow Crust,0.0,89.99012,0.0,04/15/9973 +0.6405,42.41258,8271,1,8,12,29,34,3.85,15.0,fr,2981,165,132037,1,1,Active Shallow Crust,0.0,89.99012,0.0,01/08/8271 +0.6405,42.41258,7868,5,30,6,49,28,3.95,5.0,fr,2982,157,132048,1,2,Active Shallow Crust,0.0,89.99002,0.0,05/30/7868 +0.6405,42.41258,5473,10,2,20,2,5,3.95,5.0,fr,2983,109,132048,1,2,Active Shallow Crust,0.0,89.99002,0.0,10/02/5473 +0.6405,42.41258,1067,5,16,1,8,10,3.95,27.5,fr,2984,21,132050,1,1,Active Shallow Crust,0.0,89.99002,0.0,05/16/1067 +0.6405,42.41258,6348,4,13,18,15,24,4.05,27.5,fr,2985,126,132068,1,1,Active Shallow Crust,0.0,89.98994,-90.0,04/13/6348 +0.6405,42.41258,3754,6,1,20,33,3,4.25,5.0,fr,2986,75,132084,1,1,Active Shallow Crust,0.0,89.99002,0.0,06/01/3754 +0.6405,42.41258,1072,10,11,23,0,56,4.25,5.0,fr,2987,21,132087,1,1,Active Shallow Crust,240.0068,57.99391,0.0,10/11/1072 +0.6405,42.41258,1965,4,28,0,2,40,4.35,15.0,fr,2988,39,132097,1,1,Active Shallow Crust,0.0,89.99,0.0,04/28/1965 +0.6405,42.41258,3381,7,1,10,4,30,4.35,5.0,fr,2989,67,132102,1,1,Active Shallow Crust,0.0,89.98988,-90.0,07/01/3381 +0.6405,42.41258,968,7,8,0,24,29,5.95,5.0,fr,2990,19,132291,1,1,Active Shallow Crust,240.0455,57.99962,0.0,07/08/0968 +-3.67097,49.22948,393,2,2,22,52,59,3.55,5.0,fr,2991,7,132480,1,1,Active Shallow Crust,0.0,89.99012,0.0,02/02/0393 +-3.67097,49.22948,3333,3,13,16,36,49,3.65,15.0,fr,2992,66,132493,1,1,Active Shallow Crust,0.0,89.9912,0.0,03/13/3333 +-3.67097,49.22948,924,1,29,18,11,17,3.85,5.0,fr,2993,18,132516,1,1,Active Shallow Crust,0.0,89.99068,0.0,01/29/0924 +-3.67097,49.22948,2711,8,21,7,1,33,3.85,15.0,fr,2994,54,132520,1,1,Active Shallow Crust,240.0114,57.99752,0.0,08/21/2711 +-3.67097,49.22948,9681,9,2,8,58,50,4.75,5.0,fr,2995,193,132624,1,1,Active Shallow Crust,0.0,89.99007,0.0,09/02/9681 +-3.67097,49.22948,3885,4,27,20,13,54,4.85,5.0,fr,2996,77,132642,1,1,Active Shallow Crust,0.0,89.9903,-90.0,04/27/3885 +-3.67097,49.22948,7477,6,4,14,28,38,4.95,5.0,fr,2997,149,132651,1,1,Active Shallow Crust,240.0132,58.00475,0.0,06/04/7477 +4.45919,40.2574,7397,9,25,21,56,20,3.55,5.0,fr,2998,147,132960,1,1,Active Shallow Crust,0.0,89.9923,0.0,09/25/7397 +4.45919,40.2574,1482,6,2,7,56,31,3.65,5.0,fr,2999,29,132972,1,1,Active Shallow Crust,0.0,89.99314,0.0,06/02/1482 +4.45919,40.2574,9796,12,13,2,27,58,3.75,5.0,fr,3000,195,132984,1,1,Active Shallow Crust,0.0,89.98778,0.0,12/13/9796 +4.45919,40.2574,5875,12,4,16,19,45,3.75,15.0,fr,3001,117,132985,1,1,Active Shallow Crust,0.0,89.98778,0.0,12/04/5875 +4.45919,40.2574,3023,12,29,17,42,50,3.85,5.0,fr,3002,60,133005,1,1,Active Shallow Crust,128.8964,89.99455,0.0,12/29/3023 +4.45919,40.2574,594,9,26,10,7,40,4.05,15.0,fr,3003,11,133021,1,1,Active Shallow Crust,0.0,89.99135,0.0,09/26/0594 +0.15578,44.81917,7056,4,21,10,6,6,3.65,5.0,fr,3004,141,133452,1,2,Active Shallow Crust,0.0,89.99004,0.0,04/21/7056 +0.15578,44.81917,8147,8,26,1,45,21,3.65,5.0,fr,3005,162,133452,1,2,Active Shallow Crust,0.0,89.99004,0.0,08/26/8147 +0.15578,44.81917,2041,9,15,23,10,33,3.75,15.0,fr,3006,40,133465,1,1,Active Shallow Crust,0.0,89.99006,0.0,09/15/2041 +0.15578,44.81917,6920,4,29,15,16,48,4.35,5.0,fr,3007,138,133545,1,1,Active Shallow Crust,128.8981,89.98276,0.0,04/29/6920 +3.0301,45.51829,731,5,26,2,4,31,3.55,5.0,fr,3008,14,133926,1,1,Active Shallow Crust,0.0,89.98928,-90.0,05/26/0731 +3.0301,45.51829,7217,8,21,12,0,58,3.55,5.0,fr,3009,144,133929,1,1,Active Shallow Crust,128.8959,89.9947,0.0,08/21/7217 +3.0301,45.51829,974,12,12,12,12,58,3.65,5.0,fr,3010,19,133932,1,3,Active Shallow Crust,0.0,89.99055,0.0,12/12/0974 +3.0301,45.51829,3454,10,12,19,40,51,3.65,5.0,fr,3011,69,133932,1,3,Active Shallow Crust,0.0,89.99055,0.0,10/12/3454 +3.0301,45.51829,2861,6,5,23,58,56,3.65,5.0,fr,3012,57,133932,1,3,Active Shallow Crust,0.0,89.99055,0.0,06/05/2861 +3.0301,45.51829,3213,12,29,19,21,8,3.65,15.0,fr,3013,64,133933,1,1,Active Shallow Crust,0.0,89.99055,0.0,12/29/3213 +3.0301,45.51829,713,7,10,18,15,42,3.75,15.0,fr,3014,14,133945,1,1,Active Shallow Crust,0.0,89.98878,0.0,07/10/0713 +3.0301,45.51829,1381,3,26,16,30,32,3.75,27.5,fr,3015,27,133952,1,1,Active Shallow Crust,0.0,89.98865,-90.0,03/26/1381 +3.0301,45.51829,6507,7,2,19,2,5,3.85,5.0,fr,3016,130,133956,1,1,Active Shallow Crust,0.0,89.99,0.0,07/02/6507 +3.0301,45.51829,1968,12,8,17,53,23,3.95,5.0,fr,3017,39,133968,1,1,Active Shallow Crust,0.0,89.99108,0.0,12/08/1968 +3.0301,45.51829,1015,8,27,13,53,55,4.05,5.0,fr,3018,20,133983,1,1,Active Shallow Crust,240.0056,58.00563,0.0,08/27/1015 +3.0301,45.51829,5911,10,5,1,58,14,4.35,5.0,fr,3019,118,134022,1,1,Active Shallow Crust,0.0,89.99004,-90.0,10/05/5911 +3.0301,45.51829,5037,6,22,15,48,12,4.55,15.0,fr,3020,100,134041,1,1,Active Shallow Crust,0.0,89.98994,0.0,06/22/5037 +3.0301,45.51829,526,10,8,7,8,13,4.75,15.0,fr,3021,10,134068,1,1,Active Shallow Crust,240.0071,58.00439,0.0,10/08/0526 +-1.88851,49.77375,7881,9,24,9,51,13,3.55,5.0,fr,3022,157,134400,1,1,Active Shallow Crust,0.0,89.99023,0.0,09/24/7881 +-1.88851,49.77375,3277,6,13,15,50,9,3.85,5.0,fr,3023,65,134436,1,1,Active Shallow Crust,0.0,89.98962,0.0,06/13/3277 +-1.88851,49.77375,7910,12,29,6,29,26,3.85,5.0,fr,3024,158,134439,1,1,Active Shallow Crust,240.0114,57.99786,0.0,12/29/7910 +-1.88851,49.77375,672,9,13,5,35,44,3.85,27.5,fr,3025,13,134441,1,1,Active Shallow Crust,240.0114,57.99786,0.0,09/13/0672 +0.41298,44.56949,7757,4,26,3,33,38,3.55,5.0,fr,3026,155,134880,1,1,Active Shallow Crust,0.0,89.99012,0.0,04/26/7757 +0.41298,44.56949,1749,8,31,2,34,12,3.55,5.0,fr,3027,34,134883,1,1,Active Shallow Crust,240.012,57.99813,0.0,08/31/1749 +0.41298,44.56949,747,11,23,10,27,55,3.65,27.5,fr,3028,14,134894,1,1,Active Shallow Crust,0.0,89.99,0.0,11/23/0747 +0.41298,44.56949,5208,4,15,9,57,38,4.15,5.0,fr,3029,104,134952,1,1,Active Shallow Crust,0.0,89.9901,0.0,04/15/5208 +0.41298,44.56949,2813,2,15,13,14,11,4.15,15.0,fr,3030,56,134953,1,1,Active Shallow Crust,0.0,89.9901,0.0,02/15/2813 +0.41298,44.56949,3879,10,24,4,58,57,4.85,5.0,fr,3031,77,135036,1,1,Active Shallow Crust,359.9999,89.99004,0.0,10/24/3879 +1.16479,44.89954,5327,11,26,1,18,44,3.75,5.0,fr,3032,106,135384,1,1,Active Shallow Crust,0.0,89.99007,0.0,11/26/5327 +1.16479,44.89954,2623,9,11,12,31,28,3.75,15.0,fr,3033,52,135388,1,1,Active Shallow Crust,240.0081,58.01782,0.0,09/11/2623 +1.16479,44.89954,655,5,23,17,23,11,3.85,5.0,fr,3034,13,135396,1,1,Active Shallow Crust,0.0,89.98988,0.0,05/23/0655 +1.16479,44.89954,4439,4,10,23,25,39,3.95,15.0,fr,3035,88,135409,1,1,Active Shallow Crust,0.0,89.98986,0.0,04/10/4439 +1.16479,44.89954,6787,2,6,2,38,30,4.15,5.0,fr,3036,135,135432,1,1,Active Shallow Crust,0.0,89.99016,0.0,02/06/6787 +1.16479,44.89954,883,1,5,22,15,59,4.25,5.0,fr,3037,17,135444,1,1,Active Shallow Crust,0.0,89.98963,0.0,01/05/0883 +1.16479,44.89954,6231,11,5,10,32,22,6.75,15.0,fr,3038,124,135745,1,1,Active Shallow Crust,0.0,89.98998,0.0,11/05/6231 +8.58487,50.06161,9918,7,31,5,1,44,3.55,5.0,fr,3039,198,135840,1,1,Active Shallow Crust,0.0,89.98705,0.0,07/31/9918 +8.58487,50.06161,3316,6,8,23,55,49,3.55,15.0,fr,3040,66,135841,1,2,Active Shallow Crust,0.0,89.98705,0.0,06/08/3316 +8.58487,50.06161,1437,2,1,2,15,30,3.55,15.0,fr,3041,28,135841,1,2,Active Shallow Crust,0.0,89.98705,0.0,02/01/1437 +8.58487,50.06161,2683,8,2,0,45,18,3.55,5.0,fr,3042,53,135843,1,1,Active Shallow Crust,240.0116,57.99848,0.0,08/02/2683 +8.58487,50.06161,4187,11,17,5,28,48,3.55,5.0,fr,3043,83,135846,1,1,Active Shallow Crust,0.0,89.9869,-90.0,11/17/4187 +8.58487,50.06161,1251,4,29,5,26,31,3.65,5.0,fr,3044,25,135855,1,1,Active Shallow Crust,239.9999,58.0135,0.0,04/29/1251 +8.58487,50.06161,6457,8,26,7,12,0,3.75,5.0,fr,3045,129,135864,1,1,Active Shallow Crust,0.0,89.98972,0.0,08/26/6457 +8.58487,50.06161,6911,7,7,2,1,12,3.75,15.0,fr,3046,138,135865,1,2,Active Shallow Crust,0.0,89.98972,0.0,07/07/6911 +8.58487,50.06161,3986,5,29,12,32,34,3.75,15.0,fr,3047,79,135865,1,2,Active Shallow Crust,0.0,89.98972,0.0,05/29/3986 +8.58487,50.06161,4795,10,25,21,36,59,3.75,27.5,fr,3048,95,135866,1,1,Active Shallow Crust,0.0,89.98972,0.0,10/25/4795 +8.58487,50.06161,4159,10,23,16,51,45,3.75,5.0,fr,3049,83,135873,1,1,Active Shallow Crust,128.8963,89.96755,0.0,10/23/4159 +8.58487,50.06161,6286,12,9,13,19,8,3.85,5.0,fr,3050,125,135876,1,1,Active Shallow Crust,0.0,89.99084,0.0,12/09/6286 +8.58487,50.06161,3752,8,4,2,10,12,3.85,15.0,fr,3051,75,135877,1,1,Active Shallow Crust,0.0,89.99084,0.0,08/04/3752 +8.58487,50.06161,8420,9,7,3,2,49,3.95,5.0,fr,3052,168,135888,1,1,Active Shallow Crust,0.0,89.99183,0.0,09/07/8420 +8.58487,50.06161,7245,5,28,2,56,34,3.95,15.0,fr,3053,144,135889,1,1,Active Shallow Crust,0.0,89.99183,0.0,05/28/7245 +8.58487,50.06161,7982,10,10,21,48,7,4.25,15.0,fr,3054,159,135928,1,1,Active Shallow Crust,240.0083,57.99378,0.0,10/10/7982 +8.58487,50.06161,4374,5,16,14,5,43,4.35,5.0,fr,3055,87,135936,1,1,Active Shallow Crust,0.0,89.98969,0.0,05/16/4374 +8.58487,50.06161,6382,2,10,22,35,40,4.55,5.0,fr,3056,127,135960,1,1,Active Shallow Crust,0.0,89.99181,0.0,02/10/6382 +8.58487,50.06161,4386,5,7,10,24,10,4.75,5.0,fr,3057,87,135984,1,1,Active Shallow Crust,0.0,89.99024,0.0,05/07/4386 +8.58487,50.06161,7345,3,26,1,45,34,5.15,5.0,fr,3058,146,136032,1,1,Active Shallow Crust,0.0,89.98974,0.0,03/26/7345 +8.58487,50.06161,2060,7,26,12,19,54,5.25,5.0,fr,3059,41,136053,1,1,Active Shallow Crust,128.8858,89.98693,0.0,07/26/2060 +5.56241,50.57379,7056,10,2,15,20,17,3.55,5.0,fr,3060,141,136320,1,3,Active Shallow Crust,0.0,89.98719,0.0,10/02/7056 +5.56241,50.57379,6917,5,2,5,35,13,3.55,5.0,fr,3061,138,136320,1,3,Active Shallow Crust,0.0,89.98719,0.0,05/02/6917 +5.56241,50.57379,5040,8,8,14,56,42,3.55,5.0,fr,3062,100,136320,1,3,Active Shallow Crust,0.0,89.98719,0.0,08/08/5040 +5.56241,50.57379,9526,1,14,3,8,1,3.55,15.0,fr,3063,190,136321,1,2,Active Shallow Crust,0.0,89.98719,0.0,01/14/9526 +5.56241,50.57379,6626,3,18,14,27,47,3.55,15.0,fr,3064,132,136321,1,2,Active Shallow Crust,0.0,89.98719,0.0,03/18/6626 +5.56241,50.57379,904,3,1,16,17,48,3.55,27.5,fr,3065,18,136322,1,1,Active Shallow Crust,0.0,89.98719,0.0,03/01/0904 +5.56241,50.57379,4427,9,17,11,9,14,3.55,5.0,fr,3066,88,136323,1,2,Active Shallow Crust,240.0132,57.99822,0.0,09/17/4427 +5.56241,50.57379,495,5,17,1,0,39,3.55,5.0,fr,3067,9,136323,1,2,Active Shallow Crust,240.0132,57.99822,0.0,05/17/0495 +5.56241,50.57379,931,12,22,4,3,47,3.55,5.0,fr,3068,18,136326,1,1,Active Shallow Crust,0.0,89.98705,-90.0,12/22/0931 +5.56241,50.57379,2118,9,5,11,25,22,3.55,27.5,fr,3069,42,136328,1,1,Active Shallow Crust,0.0,89.98705,-90.0,09/05/2118 +5.56241,50.57379,6472,9,16,8,10,14,3.65,5.0,fr,3070,129,136332,1,1,Active Shallow Crust,0.0,89.98859,0.0,09/16/6472 +5.56241,50.57379,2286,1,7,20,52,44,3.65,15.0,fr,3071,45,136333,1,1,Active Shallow Crust,0.0,89.98859,0.0,01/07/2286 +5.56241,50.57379,8369,2,15,23,52,1,3.65,27.5,fr,3072,167,136334,1,1,Active Shallow Crust,0.0,89.98859,0.0,02/15/8369 +5.56241,50.57379,2933,5,19,9,22,20,3.65,5.0,fr,3073,58,136335,1,1,Active Shallow Crust,240.0023,58.01229,0.0,05/19/2933 +5.56241,50.57379,965,4,21,17,3,22,3.65,5.0,fr,3074,19,136341,1,1,Active Shallow Crust,128.9006,89.9636,0.0,04/21/0965 +5.56241,50.57379,4377,10,2,4,1,28,3.75,15.0,fr,3075,87,136345,1,2,Active Shallow Crust,0.0,89.98982,0.0,10/02/4377 +5.56241,50.57379,4840,9,27,0,51,30,3.75,15.0,fr,3076,96,136345,1,2,Active Shallow Crust,0.0,89.98982,0.0,09/27/4840 +5.56241,50.57379,9487,7,16,1,0,21,3.85,15.0,fr,3077,189,136357,1,1,Active Shallow Crust,0.0,89.99093,0.0,07/16/9487 +5.56241,50.57379,2222,6,25,2,8,5,3.85,5.0,fr,3078,44,136362,1,1,Active Shallow Crust,0.0,89.99083,-90.0,06/25/2222 +5.56241,50.57379,7981,7,9,7,58,46,3.95,15.0,fr,3079,159,136369,1,2,Active Shallow Crust,0.0,89.99192,0.0,07/09/7981 +5.56241,50.57379,555,1,20,11,8,50,3.95,15.0,fr,3080,11,136369,1,2,Active Shallow Crust,0.0,89.99192,0.0,01/20/0555 +5.56241,50.57379,1956,1,18,9,19,11,4.05,15.0,fr,3081,39,136381,1,1,Active Shallow Crust,0.0,89.9892,0.0,01/18/1956 +5.56241,50.57379,3197,8,10,18,52,25,4.25,5.0,fr,3082,63,136404,1,1,Active Shallow Crust,0.0,89.99142,0.0,08/10/3197 +5.56241,50.57379,5017,2,24,11,12,9,4.25,5.0,fr,3083,100,136410,1,2,Active Shallow Crust,0.0,89.99132,-90.0,02/24/5017 +5.56241,50.57379,5756,12,20,3,41,11,4.25,5.0,fr,3084,115,136410,1,2,Active Shallow Crust,0.0,89.99132,-90.0,12/20/5756 +5.56241,50.57379,4441,10,21,3,24,14,4.35,5.0,fr,3085,88,136416,1,4,Active Shallow Crust,0.0,89.9898,0.0,10/21/4441 +5.56241,50.57379,6934,11,4,3,9,17,4.35,5.0,fr,3086,138,136416,1,4,Active Shallow Crust,0.0,89.9898,0.0,11/04/6934 +5.56241,50.57379,338,9,30,8,16,4,4.35,5.0,fr,3087,6,136416,1,4,Active Shallow Crust,0.0,89.9898,0.0,09/30/0338 +5.56241,50.57379,6230,7,2,23,4,14,4.35,5.0,fr,3088,124,136416,1,4,Active Shallow Crust,0.0,89.9898,0.0,07/02/6230 +5.56241,50.57379,7055,6,30,19,12,27,4.55,5.0,fr,3089,141,136440,1,1,Active Shallow Crust,0.0,89.98988,0.0,06/30/7055 +5.56241,50.57379,3046,1,14,2,53,8,4.55,15.0,fr,3090,60,136441,1,1,Active Shallow Crust,0.0,89.98988,0.0,01/14/3046 +5.56241,50.57379,4336,1,22,17,26,35,4.55,27.5,fr,3091,86,136442,1,1,Active Shallow Crust,0.0,89.98988,0.0,01/22/4336 +5.56241,50.57379,9320,2,1,23,12,16,4.65,5.0,fr,3092,186,136452,1,2,Active Shallow Crust,0.0,89.98917,0.0,02/01/9320 +5.56241,50.57379,616,6,28,23,32,20,4.65,5.0,fr,3093,12,136452,1,2,Active Shallow Crust,0.0,89.98917,0.0,06/28/0616 +5.56241,50.57379,6226,6,8,0,44,26,4.65,27.5,fr,3094,124,136457,1,1,Active Shallow Crust,240.012,57.99457,0.0,06/08/6226 +5.56241,50.57379,876,2,11,6,36,28,4.75,15.0,fr,3095,17,136465,1,1,Active Shallow Crust,0.0,89.99035,0.0,02/11/0876 +5.56241,50.57379,7428,1,1,7,35,59,4.95,5.0,fr,3096,148,136494,1,1,Active Shallow Crust,0.0,89.98965,-90.0,01/01/7428 +5.56241,50.57379,9504,10,5,6,21,51,5.05,5.0,fr,3097,190,136500,1,1,Active Shallow Crust,0.0,89.98975,0.0,10/05/9504 +5.56241,50.57379,6964,5,25,11,49,53,5.45,15.0,fr,3098,139,136549,1,1,Active Shallow Crust,0.0,89.98994,0.0,05/25/6964 +1.69573,40.52356,6438,5,13,2,11,42,4.55,5.0,fr,3099,128,136920,1,1,Active Shallow Crust,0.0,89.9897,0.0,05/13/6438 +4.74632,49.34632,6344,2,17,3,18,41,3.85,5.0,fr,3100,126,137316,1,1,Active Shallow Crust,0.0,89.9907,0.0,02/17/6344 +4.74632,49.34632,4910,6,10,4,21,38,4.35,5.0,fr,3101,98,137376,1,1,Active Shallow Crust,0.0,89.98954,0.0,06/10/4910 +3.58005,40.67802,4119,9,23,0,5,9,4.25,5.0,fr,3102,82,137850,1,1,Active Shallow Crust,0.0,89.98963,-90.0,09/23/4119 +-4.4713,48.47599,3888,2,7,9,55,39,3.55,27.5,fr,3103,77,138242,1,1,Active Shallow Crust,0.0,89.99332,0.0,02/07/3888 +-4.4713,48.47599,403,10,13,2,24,2,3.55,5.0,fr,3104,8,138246,1,1,Active Shallow Crust,0.0,89.99324,-90.0,10/13/0403 +-4.4713,48.47599,3203,2,21,5,47,57,3.65,5.0,fr,3105,64,138252,1,1,Active Shallow Crust,0.0,89.98808,0.0,02/21/3203 +-4.4713,48.47599,7420,3,4,2,3,3,3.75,15.0,fr,3106,148,138265,1,2,Active Shallow Crust,0.0,89.98938,0.0,03/04/7420 +-4.4713,48.47599,2265,7,25,4,24,48,3.75,15.0,fr,3107,45,138265,1,2,Active Shallow Crust,0.0,89.98938,0.0,07/25/2265 +-4.4713,48.47599,7545,6,21,19,18,33,3.85,15.0,fr,3108,150,138277,1,1,Active Shallow Crust,0.0,89.99053,0.0,06/21/7545 +-4.4713,48.47599,7408,12,13,1,53,41,3.95,15.0,fr,3109,148,138289,1,1,Active Shallow Crust,0.0,89.99156,0.0,12/13/7408 +-4.4713,48.47599,3200,8,1,19,9,13,3.95,15.0,fr,3110,63,138295,1,1,Active Shallow Crust,0.0,89.99146,-90.0,08/01/3200 +-4.4713,48.47599,2516,8,25,19,24,22,4.45,5.0,fr,3111,50,138348,1,1,Active Shallow Crust,0.0,89.99051,0.0,08/25/2516 +-4.4713,48.47599,9511,6,11,10,17,30,5.15,5.0,fr,3112,190,138432,1,1,Active Shallow Crust,0.0,89.99046,0.0,06/11/9511 +2.8272,43.781,2191,12,28,18,50,37,3.55,5.0,fr,3113,43,138720,1,2,Active Shallow Crust,0.0,89.98908,0.0,12/28/2191 +2.8272,43.781,9353,11,21,23,45,39,3.55,5.0,fr,3114,187,138720,1,2,Active Shallow Crust,0.0,89.98908,0.0,11/21/9353 +2.8272,43.781,8351,10,9,5,9,49,3.55,5.0,fr,3115,167,138729,1,1,Active Shallow Crust,128.8971,89.99272,0.0,10/09/8351 +2.8272,43.781,9941,3,13,0,2,48,3.65,15.0,fr,3116,198,138733,1,1,Active Shallow Crust,0.0,89.99026,0.0,03/13/9941 +2.8272,43.781,2845,3,11,18,36,2,3.65,15.0,fr,3117,56,138736,1,1,Active Shallow Crust,240.0007,58.01312,0.0,03/11/2845 +2.8272,43.781,6442,1,27,19,42,12,3.95,5.0,fr,3118,128,138768,1,1,Active Shallow Crust,0.0,89.99081,0.0,01/27/6442 +2.8272,43.781,6906,7,8,9,2,52,3.95,15.0,fr,3119,138,138775,1,1,Active Shallow Crust,0.0,89.99071,-90.0,07/08/6906 +2.8272,43.781,3639,5,29,11,33,18,4.05,5.0,fr,3120,72,138780,1,1,Active Shallow Crust,0.0,89.98976,0.0,05/29/3639 +2.8272,43.781,9855,4,28,22,6,33,4.25,15.0,fr,3121,197,138805,1,1,Active Shallow Crust,0.0,89.99024,0.0,04/28/9855 +2.8272,43.781,8307,10,26,15,24,30,4.25,5.0,fr,3122,166,138810,1,1,Active Shallow Crust,0.0,89.99013,-90.0,10/26/8307 +2.28316,48.29476,9411,4,7,4,4,2,3.55,15.0,fr,3123,188,139681,1,1,Active Shallow Crust,0.0,89.98994,0.0,04/07/9411 +2.28316,48.29476,9321,4,29,3,51,5,3.55,5.0,fr,3124,186,139683,1,1,Active Shallow Crust,240.0126,57.99847,0.0,04/29/9321 +2.28316,48.29476,2304,6,27,1,29,48,3.65,5.0,fr,3125,46,139692,1,1,Active Shallow Crust,0.0,89.99103,0.0,06/27/2304 +2.28316,48.29476,1874,8,28,4,19,46,3.85,27.5,fr,3126,37,139718,1,1,Active Shallow Crust,0.0,89.9905,0.0,08/28/1874 +2.28316,48.29476,8961,8,22,13,0,52,3.95,15.0,fr,3127,179,139729,1,1,Active Shallow Crust,0.0,89.98942,0.0,08/22/8961 +2.28316,48.29476,7582,5,25,13,56,46,4.15,5.0,fr,3128,151,139752,1,1,Active Shallow Crust,0.0,89.98991,0.0,05/25/7582 +2.28316,48.29476,1083,6,30,12,46,26,4.55,15.0,fr,3129,21,139801,1,1,Active Shallow Crust,0.0,89.99046,0.0,06/30/1083 +2.28316,48.29476,2419,4,28,23,15,52,5.65,5.0,fr,3130,48,139935,1,1,Active Shallow Crust,240.0392,57.99963,0.0,04/28/2419 +8.43331,46.86872,5534,12,20,17,46,5,3.55,5.0,fr,3131,110,140160,1,6,Active Shallow Crust,0.0,89.98621,0.0,12/20/5534 +8.43331,46.86872,6650,11,15,16,14,7,3.55,5.0,fr,3132,132,140160,1,6,Active Shallow Crust,0.0,89.98621,0.0,11/15/6650 +8.43331,46.86872,3777,9,15,21,28,31,3.55,5.0,fr,3133,75,140160,1,6,Active Shallow Crust,0.0,89.98621,0.0,09/15/3777 +8.43331,46.86872,2324,8,21,12,58,12,3.55,5.0,fr,3134,46,140160,1,6,Active Shallow Crust,0.0,89.98621,0.0,08/21/2324 +8.43331,46.86872,1514,10,12,16,24,34,3.55,5.0,fr,3135,30,140160,1,6,Active Shallow Crust,0.0,89.98621,0.0,10/12/1514 +8.43331,46.86872,6233,12,17,23,12,1,3.55,5.0,fr,3136,124,140160,1,6,Active Shallow Crust,0.0,89.98621,0.0,12/17/6233 +8.43331,46.86872,3407,10,23,15,14,32,3.55,15.0,fr,3137,68,140161,1,1,Active Shallow Crust,0.0,89.98621,0.0,10/23/3407 +8.43331,46.86872,6404,1,6,3,32,15,3.55,27.5,fr,3138,128,140162,1,1,Active Shallow Crust,0.0,89.98621,0.0,01/06/6404 +8.43331,46.86872,882,2,13,22,45,28,3.55,5.0,fr,3139,17,140163,1,3,Active Shallow Crust,240.0134,57.99828,0.0,02/13/0882 +8.43331,46.86872,6617,9,16,15,34,36,3.55,5.0,fr,3140,132,140163,1,3,Active Shallow Crust,240.0134,57.99828,0.0,09/16/6617 +8.43331,46.86872,1739,8,27,3,5,43,3.55,5.0,fr,3141,34,140163,1,3,Active Shallow Crust,240.0134,57.99828,0.0,08/27/1739 +8.43331,46.86872,1078,3,23,5,32,9,3.55,15.0,fr,3142,21,140164,1,1,Active Shallow Crust,240.0134,57.99828,0.0,03/23/1078 +8.43331,46.86872,4979,8,1,15,30,31,3.55,5.0,fr,3143,99,140166,1,1,Active Shallow Crust,0.0,89.98605,-90.0,08/01/4979 +8.43331,46.86872,3917,12,13,9,36,56,3.55,27.5,fr,3144,78,140168,1,1,Active Shallow Crust,0.0,89.98605,-90.0,12/13/3917 +8.43331,46.86872,4761,1,7,6,50,30,3.55,15.0,fr,3145,95,140170,1,1,Active Shallow Crust,128.897,89.9931,0.0,01/07/4761 +8.43331,46.86872,6433,10,13,1,2,12,3.55,27.5,fr,3146,128,140171,1,1,Active Shallow Crust,128.897,89.9931,0.0,10/13/6433 +8.43331,46.86872,1984,4,7,9,13,57,3.65,5.0,fr,3147,39,140172,1,3,Active Shallow Crust,0.0,89.98771,0.0,04/07/1984 +8.43331,46.86872,1125,3,8,15,0,37,3.65,5.0,fr,3148,22,140172,1,3,Active Shallow Crust,0.0,89.98771,0.0,03/08/1125 +8.43331,46.86872,1906,6,18,7,57,56,3.65,5.0,fr,3149,38,140172,1,3,Active Shallow Crust,0.0,89.98771,0.0,06/18/1906 +8.43331,46.86872,84,7,17,8,33,15,3.65,15.0,fr,3150,1,140173,1,1,Active Shallow Crust,0.0,89.98771,0.0,07/17/0084 +8.43331,46.86872,1185,4,16,12,39,25,3.65,5.0,fr,3151,23,140175,1,1,Active Shallow Crust,239.9984,58.01476,0.0,04/16/1185 +8.43331,46.86872,8103,7,28,19,29,56,3.65,15.0,fr,3152,162,140179,1,2,Active Shallow Crust,0.0,89.98757,-90.0,07/28/8103 +8.43331,46.86872,1098,9,17,7,39,3,3.65,15.0,fr,3153,21,140179,1,2,Active Shallow Crust,0.0,89.98757,-90.0,09/17/1098 +8.43331,46.86872,5991,11,8,13,5,27,3.75,5.0,fr,3154,119,140184,1,5,Active Shallow Crust,0.0,89.98904,0.0,11/08/5991 +8.43331,46.86872,4996,2,7,9,9,14,3.75,5.0,fr,3155,99,140184,1,5,Active Shallow Crust,0.0,89.98904,0.0,02/07/4996 +8.43331,46.86872,5778,11,25,20,32,43,3.75,5.0,fr,3156,115,140184,1,5,Active Shallow Crust,0.0,89.98904,0.0,11/25/5778 +8.43331,46.86872,5666,3,18,8,48,37,3.75,5.0,fr,3157,113,140184,1,5,Active Shallow Crust,0.0,89.98904,0.0,03/18/5666 +8.43331,46.86872,4395,5,31,1,13,56,3.75,5.0,fr,3158,87,140184,1,5,Active Shallow Crust,0.0,89.98904,0.0,05/31/4395 +8.43331,46.86872,7895,3,4,11,56,26,3.75,15.0,fr,3159,157,140185,1,1,Active Shallow Crust,0.0,89.98904,0.0,03/04/7895 +8.43331,46.86872,3076,11,24,15,11,27,3.75,15.0,fr,3160,61,140191,1,2,Active Shallow Crust,0.0,89.98892,-90.0,11/24/3076 +8.43331,46.86872,8718,8,22,0,51,23,3.75,15.0,fr,3161,174,140191,1,2,Active Shallow Crust,0.0,89.98892,-90.0,08/22/8718 +8.43331,46.86872,1881,12,2,12,6,56,3.85,5.0,fr,3162,37,140199,1,3,Active Shallow Crust,240.0112,57.99656,0.0,12/02/1881 +8.43331,46.86872,360,10,16,14,4,26,3.85,5.0,fr,3163,7,140199,1,3,Active Shallow Crust,240.0112,57.99656,0.0,10/16/0360 +8.43331,46.86872,3277,8,26,9,22,22,3.85,5.0,fr,3164,65,140199,1,3,Active Shallow Crust,240.0112,57.99656,0.0,08/26/3277 +8.43331,46.86872,1879,8,18,21,37,12,3.85,5.0,fr,3165,37,140202,1,1,Active Shallow Crust,0.0,89.99013,-90.0,08/18/1879 +8.43331,46.86872,3555,12,23,14,26,3,3.95,5.0,fr,3166,71,140208,1,2,Active Shallow Crust,0.0,89.9913,0.0,12/23/3555 +8.43331,46.86872,9730,12,25,19,12,44,3.95,5.0,fr,3167,194,140208,1,2,Active Shallow Crust,0.0,89.9913,0.0,12/25/9730 +8.43331,46.86872,5328,9,8,5,4,58,3.95,15.0,fr,3168,106,140209,1,1,Active Shallow Crust,0.0,89.9913,0.0,09/08/5328 +8.43331,46.86872,4813,4,14,22,3,32,3.95,5.0,fr,3169,96,140211,1,1,Active Shallow Crust,240.019,58.00478,0.0,04/14/4813 +8.43331,46.86872,3438,5,18,16,9,58,4.05,5.0,fr,3170,68,140220,1,3,Active Shallow Crust,0.0,89.99225,0.0,05/18/3438 +8.43331,46.86872,7402,5,19,2,44,30,4.05,5.0,fr,3171,148,140220,1,3,Active Shallow Crust,0.0,89.99225,0.0,05/19/7402 +8.43331,46.86872,4981,8,24,1,52,1,4.05,5.0,fr,3172,99,140220,1,3,Active Shallow Crust,0.0,89.99225,0.0,08/24/4981 +8.43331,46.86872,4117,7,4,14,28,59,4.05,15.0,fr,3173,82,140221,1,1,Active Shallow Crust,0.0,89.99225,0.0,07/04/4117 +8.43331,46.86872,2433,9,22,20,12,26,4.05,15.0,fr,3174,48,140224,1,1,Active Shallow Crust,240.0055,58.00529,0.0,09/22/2433 +8.43331,46.86872,4910,8,28,7,19,52,4.05,15.0,fr,3175,98,140230,1,1,Active Shallow Crust,128.8886,89.99612,0.0,08/28/4910 +8.43331,46.86872,3176,2,14,15,25,21,4.15,5.0,fr,3176,63,140232,1,1,Active Shallow Crust,0.0,89.99309,0.0,02/14/3176 +8.43331,46.86872,2899,10,2,11,38,50,4.15,15.0,fr,3177,57,140233,1,1,Active Shallow Crust,0.0,89.99309,0.0,10/02/2899 +8.43331,46.86872,3213,12,30,20,59,10,4.15,5.0,fr,3178,64,140238,1,1,Active Shallow Crust,0.0,89.99301,-90.0,12/30/3213 +8.43331,46.86872,6327,4,17,23,11,47,4.15,5.0,fr,3179,126,140241,1,1,Active Shallow Crust,128.8991,89.99309,0.0,04/17/6327 +8.43331,46.86872,344,6,6,18,17,27,4.25,5.0,fr,3180,6,140244,1,2,Active Shallow Crust,0.0,89.98768,0.0,06/06/0344 +8.43331,46.86872,1502,12,31,11,56,33,4.25,5.0,fr,3181,30,140244,1,2,Active Shallow Crust,0.0,89.98768,0.0,12/31/1502 +8.43331,46.86872,2866,2,8,12,52,24,4.25,15.0,fr,3182,57,140245,1,1,Active Shallow Crust,0.0,89.98768,0.0,02/08/2866 +8.43331,46.86872,3549,7,29,0,28,1,4.25,5.0,fr,3183,70,140250,1,1,Active Shallow Crust,0.0,89.98754,-90.0,07/29/3549 +8.43331,46.86872,4855,3,16,12,27,39,4.25,15.0,fr,3184,97,140251,1,1,Active Shallow Crust,0.0,89.98754,-90.0,03/16/4855 +8.43331,46.86872,7912,3,31,3,34,51,4.35,5.0,fr,3185,158,140256,1,2,Active Shallow Crust,0.0,89.98902,0.0,03/31/7912 +8.43331,46.86872,5826,11,21,18,4,9,4.35,5.0,fr,3186,116,140256,1,2,Active Shallow Crust,0.0,89.98902,0.0,11/21/5826 +8.43331,46.86872,6944,2,1,12,56,13,4.35,5.0,fr,3187,138,140262,1,1,Active Shallow Crust,0.0,89.98889,-90.0,02/01/6944 +8.43331,46.86872,8639,11,26,15,59,2,4.35,15.0,fr,3188,172,140263,1,1,Active Shallow Crust,0.0,89.98889,-90.0,11/26/8639 +8.43331,46.86872,1888,8,18,7,1,53,4.35,27.5,fr,3189,37,140264,1,1,Active Shallow Crust,0.0,89.98889,-90.0,08/18/1888 +8.43331,46.86872,6337,6,3,7,7,8,4.45,5.0,fr,3190,126,140277,1,1,Active Shallow Crust,128.8934,89.99266,0.0,06/03/6337 +8.43331,46.86872,5300,1,29,23,32,31,4.55,5.0,fr,3191,105,140283,1,1,Active Shallow Crust,240.0103,57.9971,0.0,01/29/5300 +8.43331,46.86872,6848,12,29,18,15,29,4.65,5.0,fr,3192,136,140292,1,1,Active Shallow Crust,0.0,89.98834,0.0,12/29/6848 +8.43331,46.86872,6906,1,28,23,22,31,4.65,15.0,fr,3193,138,140293,1,1,Active Shallow Crust,0.0,89.98834,0.0,01/28/6906 +8.43331,46.86872,6386,7,18,21,58,2,4.75,5.0,fr,3194,127,140304,1,1,Active Shallow Crust,0.0,89.98961,0.0,07/18/6386 +8.43331,46.86872,4874,8,25,7,15,16,5.65,5.0,fr,3195,97,140412,1,1,Active Shallow Crust,0.0,89.99017,0.0,08/25/4874 +-1.69307,48.1832,4838,5,10,8,54,48,3.55,5.0,fr,3196,96,140640,1,1,Active Shallow Crust,0.0,89.98991,0.0,05/10/4838 +-1.69307,48.1832,5567,12,2,16,6,14,3.55,5.0,fr,3197,111,140646,1,1,Active Shallow Crust,0.0,89.9898,-90.0,12/02/5567 +-1.69307,48.1832,9636,11,19,0,22,21,3.65,5.0,fr,3198,192,140652,1,2,Active Shallow Crust,0.0,89.98951,0.0,11/19/9636 +-1.69307,48.1832,9006,5,30,11,30,33,3.65,5.0,fr,3199,180,140652,1,2,Active Shallow Crust,0.0,89.98951,0.0,05/30/9006 +-1.69307,48.1832,306,4,30,19,47,53,3.75,15.0,fr,3200,6,140668,1,1,Active Shallow Crust,240.0086,58.01763,0.0,04/30/0306 +-1.69307,48.1832,3147,6,25,0,15,45,3.85,5.0,fr,3201,62,140676,1,2,Active Shallow Crust,0.0,89.99048,0.0,06/25/3147 +-1.69307,48.1832,5620,6,11,8,34,51,3.85,5.0,fr,3202,112,140676,1,2,Active Shallow Crust,0.0,89.99048,0.0,06/11/5620 +-1.69307,48.1832,5762,3,19,22,34,54,3.85,5.0,fr,3203,115,140679,1,1,Active Shallow Crust,240.011,57.99774,0.0,03/19/5762 +-1.69307,48.1832,9372,9,24,17,1,12,3.85,5.0,fr,3204,187,140682,1,1,Active Shallow Crust,0.0,89.99037,-90.0,09/24/9372 +-1.69307,48.1832,3105,12,24,19,56,17,4.05,15.0,fr,3205,62,140701,1,1,Active Shallow Crust,0.0,89.9896,0.0,12/24/3105 +-1.69307,48.1832,7721,11,27,19,26,21,4.15,5.0,fr,3206,154,140712,1,1,Active Shallow Crust,0.0,89.98989,0.0,11/27/7721 +-1.69307,48.1832,2259,7,30,9,18,45,4.35,5.0,fr,3207,45,140736,1,1,Active Shallow Crust,0.0,89.98996,0.0,07/30/2259 +-1.69307,48.1832,3361,1,3,20,37,14,4.55,15.0,fr,3208,67,140761,1,1,Active Shallow Crust,0.0,89.9899,0.0,01/03/3361 +-1.69307,48.1832,8781,7,10,11,3,14,5.45,5.0,fr,3209,175,140871,1,1,Active Shallow Crust,240.0303,57.99876,0.0,07/10/8781 +4.47664,49.55816,1451,5,16,4,41,7,3.85,15.0,fr,3210,29,141157,1,1,Active Shallow Crust,0.0,89.99074,0.0,05/16/1451 +4.47664,49.55816,7135,5,30,23,42,46,4.75,5.0,fr,3211,142,141273,1,1,Active Shallow Crust,128.8877,89.98792,0.0,05/30/7135 +0.62769,47.54419,5789,2,28,18,25,27,3.55,5.0,fr,3212,115,141600,1,1,Active Shallow Crust,0.0,89.98979,0.0,02/28/5789 +0.62769,47.54419,1243,4,26,6,2,58,3.55,15.0,fr,3213,24,141601,1,1,Active Shallow Crust,0.0,89.98979,0.0,04/26/1243 +0.62769,47.54419,3089,12,3,16,4,47,3.55,15.0,fr,3214,61,141610,1,1,Active Shallow Crust,128.8962,89.99362,0.0,12/03/3089 +0.62769,47.54419,143,6,24,0,4,19,3.65,27.5,fr,3215,2,141614,1,1,Active Shallow Crust,0.0,89.99014,0.0,06/24/0143 +0.62769,47.54419,7376,10,19,18,32,59,3.75,15.0,fr,3216,147,141625,1,1,Active Shallow Crust,0.0,89.98986,0.0,10/19/7376 +0.62769,47.54419,5033,11,20,16,31,57,4.25,27.5,fr,3217,100,141692,1,1,Active Shallow Crust,0.0,89.99001,-90.0,11/20/5033 +0.8463,43.92784,5602,7,21,0,14,43,3.55,27.5,fr,3218,112,142082,1,1,Active Shallow Crust,0.0,89.99001,0.0,07/21/5602 +0.8463,43.92784,269,11,7,15,54,38,3.55,15.0,fr,3219,5,142084,1,1,Active Shallow Crust,240.0121,57.99815,0.0,11/07/0269 +0.8463,43.92784,2239,5,17,18,23,15,3.65,5.0,fr,3220,44,142098,1,1,Active Shallow Crust,0.0,89.99018,-90.0,05/17/2239 +0.8463,43.92784,9133,9,8,8,22,21,3.75,5.0,fr,3221,182,142104,1,1,Active Shallow Crust,0.0,89.98991,0.0,09/08/9133 +0.8463,43.92784,2082,3,3,20,32,30,4.05,5.0,fr,3222,41,142143,1,1,Active Shallow Crust,240.0056,58.00573,0.0,03/03/2082 +0.8463,43.92784,4723,1,7,3,5,13,4.55,15.0,fr,3223,94,142201,1,1,Active Shallow Crust,0.0,89.98995,0.0,01/07/4723 +5.42238,50.06088,8545,4,27,6,13,43,3.55,15.0,fr,3224,170,142564,1,1,Active Shallow Crust,240.0136,57.99701,0.0,04/27/8545 +5.42238,50.06088,8945,9,10,1,57,54,3.55,15.0,fr,3225,178,142570,1,1,Active Shallow Crust,128.8952,89.99353,0.0,09/10/8945 +5.42238,50.06088,7355,4,27,21,49,25,3.85,5.0,fr,3226,147,142596,1,1,Active Shallow Crust,0.0,89.99084,0.0,04/27/7355 +5.42238,50.06088,992,2,19,13,59,55,4.65,5.0,fr,3227,19,142692,1,1,Active Shallow Crust,0.0,89.99088,0.0,02/19/0992 +2.84711,47.55007,4317,10,25,0,30,45,3.55,5.0,fr,3228,86,143040,1,1,Active Shallow Crust,0.0,89.98979,0.0,10/25/4317 +2.84711,47.55007,9274,5,15,3,25,18,4.25,5.0,fr,3229,185,143124,1,1,Active Shallow Crust,0.0,89.98936,0.0,05/15/9274 +2.84711,47.55007,301,3,26,21,47,14,4.45,5.0,fr,3230,6,143148,1,2,Active Shallow Crust,0.0,89.99034,0.0,03/26/0301 +2.84711,47.55007,8442,12,15,19,48,47,4.45,5.0,fr,3231,168,143148,1,2,Active Shallow Crust,0.0,89.99034,0.0,12/15/8442 +1.21711,51.38047,191,9,5,22,39,28,3.55,5.0,fr,3232,3,143520,1,1,Active Shallow Crust,0.0,89.99056,0.0,09/05/0191 +1.21711,51.38047,4617,4,3,18,3,49,3.55,15.0,fr,3233,92,143521,1,2,Active Shallow Crust,0.0,89.99056,0.0,04/03/4617 +1.21711,51.38047,4135,6,3,12,18,35,3.55,15.0,fr,3234,82,143521,1,2,Active Shallow Crust,0.0,89.99056,0.0,06/03/4135 +1.21711,51.38047,5668,2,29,2,0,33,3.55,5.0,fr,3235,113,143523,1,1,Active Shallow Crust,240.0128,57.998,0.0,02/29/5668 +1.21711,51.38047,6647,6,4,9,10,23,3.55,15.0,fr,3236,132,143530,1,1,Active Shallow Crust,128.8961,89.99371,0.0,06/04/6647 +1.21711,51.38047,8988,3,15,7,8,13,3.75,15.0,fr,3237,179,143545,1,1,Active Shallow Crust,0.0,89.99,0.0,03/15/8988 +1.21711,51.38047,6720,12,16,17,7,4,3.95,5.0,fr,3238,134,143568,1,1,Active Shallow Crust,0.0,89.99007,0.0,12/16/6720 +1.21711,51.38047,1550,12,5,16,23,0,4.15,5.0,fr,3239,30,143592,1,1,Active Shallow Crust,0.0,89.98975,0.0,12/05/1550 +-0.51549,51.04467,7016,9,21,4,7,34,3.55,5.0,fr,3240,140,144489,1,1,Active Shallow Crust,128.8957,89.99366,0.0,09/21/7016 +-0.51549,51.04467,4699,11,8,6,20,43,3.65,5.0,fr,3241,93,144492,1,1,Active Shallow Crust,0.0,89.99011,0.0,11/08/4699 +-0.51549,51.04467,5463,2,10,19,4,28,3.75,5.0,fr,3242,109,144507,1,1,Active Shallow Crust,240.0089,58.01772,0.0,02/10/5463 +3.54016,47.40176,9065,12,22,23,59,30,3.55,15.0,fr,3243,181,144961,1,1,Active Shallow Crust,0.0,89.98976,0.0,12/22/9065 +3.54016,47.40176,8485,12,21,16,46,49,3.65,15.0,fr,3244,169,144973,1,2,Active Shallow Crust,0.0,89.99088,0.0,12/21/8485 +3.54016,47.40176,9501,9,2,20,23,24,3.65,15.0,fr,3245,190,144973,1,2,Active Shallow Crust,0.0,89.99088,0.0,09/02/9501 +3.54016,47.40176,9797,5,14,1,53,16,3.75,5.0,fr,3246,195,144984,1,1,Active Shallow Crust,0.0,89.98916,0.0,05/14/9797 +3.54016,47.40176,8404,8,5,10,23,54,4.05,27.5,fr,3247,168,145025,1,1,Active Shallow Crust,240.0062,58.00604,0.0,08/05/8404 +3.54016,47.40176,7413,2,7,2,49,48,4.15,15.0,fr,3248,148,145039,1,1,Active Shallow Crust,0.0,89.98962,-90.0,02/07/7413 +4.19101,50.99892,9320,6,11,14,43,5,3.55,27.5,fr,3249,186,145451,1,1,Active Shallow Crust,128.8964,89.99365,0.0,06/11/9320 +4.19101,50.99892,7458,3,3,21,33,47,3.65,5.0,fr,3250,149,145458,1,1,Active Shallow Crust,0.0,89.98856,-90.0,03/03/7458 +4.19101,50.99892,4435,12,30,10,37,26,3.65,5.0,fr,3251,88,145461,1,1,Active Shallow Crust,128.9001,89.96361,0.0,12/30/4435 +4.19101,50.99892,2840,12,12,1,30,12,4.05,27.5,fr,3252,56,145502,1,1,Active Shallow Crust,0.0,89.9893,0.0,12/12/2840 +4.19101,50.99892,1224,10,14,7,27,20,4.45,5.0,fr,3253,24,145548,1,1,Active Shallow Crust,0.0,89.99099,0.0,10/14/1224 +4.19101,50.99892,2811,5,23,14,30,59,4.45,15.0,fr,3254,56,145549,1,1,Active Shallow Crust,0.0,89.99099,0.0,05/23/2811 +4.19101,50.99892,3643,12,29,3,42,9,4.75,5.0,fr,3255,72,145590,1,1,Active Shallow Crust,0.0,89.99033,-90.0,12/29/3643 +3.55492,44.41987,1426,8,1,22,51,43,3.75,5.0,fr,3256,28,145944,1,1,Active Shallow Crust,0.0,89.99142,0.0,08/01/1426 +3.55492,44.41987,4013,10,29,4,1,39,3.85,5.0,fr,3257,80,145956,1,1,Active Shallow Crust,0.0,89.9898,0.0,10/29/4013 +3.55492,44.41987,479,1,22,22,26,33,4.15,15.0,fr,3258,9,145993,1,1,Active Shallow Crust,0.0,89.98917,0.0,01/22/0479 +3.55492,44.41987,5442,5,16,6,38,45,4.25,15.0,fr,3259,108,146005,1,1,Active Shallow Crust,0.0,89.99035,0.0,05/16/5442 +3.55492,44.41987,6667,3,15,1,18,14,4.25,5.0,fr,3260,133,146013,1,1,Active Shallow Crust,128.8945,89.98087,0.0,03/15/6667 +3.55492,44.41987,7369,4,1,10,11,22,4.45,27.5,fr,3261,147,146030,1,1,Active Shallow Crust,0.0,89.98978,0.0,04/01/7369 +3.55492,44.41987,9399,2,23,21,8,31,4.45,5.0,fr,3262,187,146034,1,1,Active Shallow Crust,0.0,89.98966,-90.0,02/23/9399 +3.55492,44.41987,6380,9,22,11,46,21,4.45,15.0,fr,3263,127,146035,1,1,Active Shallow Crust,0.0,89.98966,-90.0,09/22/6380 +3.55492,44.41987,5979,3,13,7,53,41,4.75,15.0,fr,3264,119,146065,1,1,Active Shallow Crust,0.0,89.99005,0.0,03/13/5979 +3.55492,44.41987,1720,2,26,13,28,51,5.05,27.5,fr,3265,34,146108,1,1,Active Shallow Crust,0.0,89.99028,-90.0,02/26/1720 +-2.43965,42.63058,64,10,27,7,28,47,3.55,5.0,fr,3266,1,146400,1,1,Active Shallow Crust,0.0,89.98887,0.0,10/27/0064 +-2.43965,42.63058,3181,11,15,8,59,29,3.65,5.0,fr,3267,63,146412,1,1,Active Shallow Crust,0.0,89.99008,0.0,11/15/3181 +-2.43965,42.63058,9972,9,17,4,24,49,3.85,5.0,fr,3268,199,146436,1,1,Active Shallow Crust,0.0,89.98949,0.0,09/17/9972 +-2.43965,42.63058,6587,7,9,12,58,26,4.25,5.0,fr,3269,131,146493,1,1,Active Shallow Crust,128.895,89.9808,0.0,07/09/6587 +-2.43965,42.63058,3102,6,5,9,30,30,4.45,15.0,fr,3270,62,146509,1,1,Active Shallow Crust,0.0,89.98947,0.0,06/05/3102 +-2.43965,42.63058,2316,1,27,2,50,3,4.75,15.0,fr,3271,46,146554,1,1,Active Shallow Crust,128.8896,89.9882,0.0,01/27/2316 +-2.43965,42.63058,6391,5,23,10,55,39,5.25,15.0,fr,3272,127,146605,1,1,Active Shallow Crust,0.0,89.99004,0.0,05/23/6391 +-2.17186,42.8013,8897,12,12,4,55,33,3.55,5.0,fr,3273,177,146880,1,2,Active Shallow Crust,0.0,89.9889,0.0,12/12/8897 +-2.17186,42.8013,5704,11,17,21,25,24,3.55,5.0,fr,3274,114,146880,1,2,Active Shallow Crust,0.0,89.9889,0.0,11/17/5704 +-2.17186,42.8013,5970,11,11,3,25,45,3.55,15.0,fr,3275,119,146881,1,2,Active Shallow Crust,0.0,89.9889,0.0,11/11/5970 +-2.17186,42.8013,6901,3,11,4,56,19,3.55,15.0,fr,3276,138,146881,1,2,Active Shallow Crust,0.0,89.9889,0.0,03/11/6901 +-2.17186,42.8013,6581,1,24,7,11,23,3.65,5.0,fr,3277,131,146892,1,1,Active Shallow Crust,0.0,89.99011,0.0,01/24/6581 +-2.17186,42.8013,1864,4,8,8,35,22,3.65,15.0,fr,3278,37,146893,1,1,Active Shallow Crust,0.0,89.99011,0.0,04/08/1864 +-2.17186,42.8013,4190,2,15,14,57,44,3.65,5.0,fr,3279,83,146901,1,2,Active Shallow Crust,128.9015,89.96346,0.0,02/15/4190 +-2.17186,42.8013,1721,2,25,0,36,5,3.65,5.0,fr,3280,34,146901,1,2,Active Shallow Crust,128.9015,89.96346,0.0,02/25/1721 +-2.17186,42.8013,80,3,2,18,22,12,3.75,5.0,fr,3281,1,146904,1,2,Active Shallow Crust,0.0,89.99119,0.0,03/02/0080 +-2.17186,42.8013,3476,8,22,11,14,56,3.75,5.0,fr,3282,69,146904,1,2,Active Shallow Crust,0.0,89.99119,0.0,08/22/3476 +-2.17186,42.8013,4925,8,10,12,8,4,3.75,5.0,fr,3283,98,146913,1,1,Active Shallow Crust,128.8963,89.96743,0.0,08/10/4925 +-2.17186,42.8013,1186,12,21,3,27,0,3.85,5.0,fr,3284,23,146916,1,1,Active Shallow Crust,0.0,89.98952,0.0,12/21/1186 +-2.17186,42.8013,8558,7,31,15,23,32,3.85,15.0,fr,3285,171,146917,1,1,Active Shallow Crust,0.0,89.98952,0.0,07/31/8558 +-2.17186,42.8013,295,6,22,11,46,7,3.85,5.0,fr,3286,5,146919,1,2,Active Shallow Crust,240.0104,57.99779,0.0,06/22/0295 +-2.17186,42.8013,4078,9,14,14,22,41,3.85,5.0,fr,3287,81,146919,1,2,Active Shallow Crust,240.0104,57.99779,0.0,09/14/4078 +-2.17186,42.8013,3778,4,5,0,46,58,3.95,5.0,fr,3288,75,146928,1,1,Active Shallow Crust,0.0,89.99066,0.0,04/05/3778 +-2.17186,42.8013,4209,12,27,13,50,55,3.95,15.0,fr,3289,84,146929,1,1,Active Shallow Crust,0.0,89.99066,0.0,12/27/4209 +-2.17186,42.8013,5898,1,31,14,30,8,3.95,15.0,fr,3290,117,146935,1,1,Active Shallow Crust,0.0,89.99055,-90.0,01/31/5898 +-2.17186,42.8013,5205,8,17,7,29,16,4.05,5.0,fr,3291,104,146940,1,1,Active Shallow Crust,0.0,89.9896,0.0,08/17/5205 +-2.17186,42.8013,318,7,18,1,50,30,4.15,5.0,fr,3292,6,146958,1,1,Active Shallow Crust,0.0,89.99062,-90.0,07/18/0318 +-2.17186,42.8013,9491,7,19,15,35,30,4.25,5.0,fr,3293,189,146964,1,1,Active Shallow Crust,0.0,89.99008,0.0,07/19/9491 +-2.17186,42.8013,8897,3,7,16,30,5,4.55,27.5,fr,3294,177,147002,1,1,Active Shallow Crust,0.0,89.98947,0.0,03/07/8897 +-2.17186,42.8013,5381,4,26,10,48,43,5.05,15.0,fr,3295,107,147061,1,1,Active Shallow Crust,0.0,89.99013,0.0,04/26/5381 +-2.17186,42.8013,5867,10,25,22,44,9,5.75,5.0,fr,3296,117,147144,1,1,Active Shallow Crust,0.0,89.99001,0.0,10/25/5867 +0.16305,41.81744,4850,9,18,19,12,5,5.45,15.0,fr,3297,96,147589,1,1,Active Shallow Crust,360.0,89.99001,0.0,09/18/4850 +8.42535,48.66244,9201,6,12,1,6,14,3.55,15.0,fr,3298,184,147841,1,1,Active Shallow Crust,0.0,89.98668,0.0,06/12/9201 +8.42535,48.66244,2823,5,15,19,29,0,3.55,5.0,fr,3299,56,147843,1,3,Active Shallow Crust,240.0116,57.99906,0.0,05/15/2823 +8.42535,48.66244,4924,3,29,9,59,23,3.55,5.0,fr,3300,98,147843,1,3,Active Shallow Crust,240.0116,57.99906,0.0,03/29/4924 +8.42535,48.66244,4622,9,14,17,56,50,3.55,5.0,fr,3301,92,147843,1,3,Active Shallow Crust,240.0116,57.99906,0.0,09/14/4622 +8.42535,48.66244,8774,5,10,3,4,7,3.55,15.0,fr,3302,175,147844,1,1,Active Shallow Crust,240.0116,57.99906,0.0,05/10/8774 +8.42535,48.66244,2658,5,17,17,11,18,3.55,5.0,fr,3303,53,147849,1,1,Active Shallow Crust,128.8967,89.99334,0.0,05/17/2658 +8.42535,48.66244,3969,4,1,11,30,29,3.75,5.0,fr,3304,79,147864,1,1,Active Shallow Crust,0.0,89.98942,0.0,04/01/3969 +8.42535,48.66244,917,4,4,6,41,43,3.75,5.0,fr,3305,18,147867,1,1,Active Shallow Crust,240.0106,58.01635,0.0,04/04/0917 +8.42535,48.66244,4239,12,9,18,57,33,4.15,15.0,fr,3306,84,147913,1,1,Active Shallow Crust,0.0,89.99332,0.0,12/09/4239 +8.42535,48.66244,9730,1,4,6,46,43,4.25,5.0,fr,3307,194,147924,1,1,Active Shallow Crust,0.0,89.9881,0.0,01/04/9730 +8.42535,48.66244,8854,7,19,1,21,28,4.35,5.0,fr,3308,177,147936,1,1,Active Shallow Crust,0.0,89.9894,0.0,07/19/8854 +8.42535,48.66244,9197,9,26,13,52,1,4.45,5.0,fr,3309,183,147948,1,1,Active Shallow Crust,0.0,89.99055,0.0,09/26/9197 +8.42535,48.66244,2681,3,24,3,21,45,4.65,15.0,fr,3310,53,147979,1,1,Active Shallow Crust,0.0,89.9886,-90.0,03/24/2681 +8.42535,48.66244,8648,12,25,10,0,19,5.35,5.0,fr,3311,172,148056,1,1,Active Shallow Crust,0.0,89.98994,0.0,12/25/8648 +-4.48289,48.88289,3712,2,5,22,21,7,3.55,5.0,fr,3312,74,148320,1,2,Active Shallow Crust,0.0,89.98674,0.0,02/05/3712 +-4.48289,48.88289,6244,3,18,13,7,14,3.55,5.0,fr,3313,124,148320,1,2,Active Shallow Crust,0.0,89.98674,0.0,03/18/6244 +-4.48289,48.88289,3364,1,15,5,52,21,3.55,27.5,fr,3314,67,148322,1,1,Active Shallow Crust,0.0,89.98674,0.0,01/15/3364 +-4.48289,48.88289,394,6,20,2,16,1,3.65,5.0,fr,3315,7,148332,1,1,Active Shallow Crust,0.0,89.98818,0.0,06/20/0394 +-4.48289,48.88289,8045,11,26,23,47,22,3.65,15.0,fr,3316,160,148333,1,1,Active Shallow Crust,0.0,89.98818,0.0,11/26/8045 +-4.48289,48.88289,1173,11,8,15,36,16,3.85,5.0,fr,3317,23,148356,1,1,Active Shallow Crust,0.0,89.99061,0.0,11/08/1173 +-4.48289,48.88289,5491,7,2,19,26,12,3.85,5.0,fr,3318,109,148359,1,1,Active Shallow Crust,240.0113,57.99826,0.0,07/02/5491 +-4.48289,48.88289,8182,11,25,15,41,9,4.75,27.5,fr,3319,163,148466,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/25/8182 +-4.48289,48.88289,799,11,13,2,13,41,5.15,5.0,fr,3320,15,148512,1,1,Active Shallow Crust,0.0,89.98949,0.0,11/13/0799 +3.44884,45.58238,234,2,27,15,33,28,3.55,5.0,fr,3321,4,148800,1,1,Active Shallow Crust,0.0,89.98941,0.0,02/27/0234 +3.44884,45.58238,4160,8,13,17,32,16,3.55,27.5,fr,3322,83,148802,1,1,Active Shallow Crust,0.0,89.98941,0.0,08/13/4160 +3.44884,45.58238,4042,6,30,7,4,10,3.65,5.0,fr,3323,80,148815,1,1,Active Shallow Crust,240.0007,58.01286,0.0,06/30/4042 +3.44884,45.58238,5559,4,28,9,41,31,3.75,15.0,fr,3324,111,148825,1,1,Active Shallow Crust,0.0,89.98878,0.0,04/28/5559 +3.44884,45.58238,3017,5,14,21,23,44,3.95,5.0,fr,3325,60,148848,1,1,Active Shallow Crust,0.0,89.9911,0.0,05/14/3017 +3.44884,45.58238,3925,8,15,23,3,4,4.05,15.0,fr,3326,78,148861,1,1,Active Shallow Crust,0.0,89.99007,0.0,08/15/3925 +3.44884,45.58238,2643,3,29,2,20,59,4.25,5.0,fr,3327,52,148884,1,2,Active Shallow Crust,0.0,89.99054,0.0,03/29/2643 +3.44884,45.58238,8360,3,21,13,24,40,4.25,5.0,fr,3328,167,148884,1,2,Active Shallow Crust,0.0,89.99054,0.0,03/21/8360 +3.44884,45.58238,4734,11,12,14,24,5,4.25,5.0,fr,3329,94,148893,1,1,Active Shallow Crust,128.8946,89.98091,0.0,11/12/4734 +3.44884,45.58238,1935,4,23,23,19,8,4.35,5.0,fr,3330,38,148896,1,1,Active Shallow Crust,0.0,89.99017,0.0,04/23/1935 +3.44884,45.58238,4452,1,5,1,42,23,4.35,5.0,fr,3331,89,148899,1,1,Active Shallow Crust,240.0081,57.99593,0.0,01/05/4452 +3.44884,45.58238,3828,9,3,15,21,5,4.45,5.0,fr,3332,76,148914,1,1,Active Shallow Crust,0.0,89.98987,-90.0,09/03/3828 +3.44884,45.58238,8279,8,18,12,31,0,4.75,5.0,fr,3333,165,148944,1,1,Active Shallow Crust,0.0,89.99025,0.0,08/18/8279 +-1.02313,49.03522,626,8,3,22,33,27,3.55,5.0,fr,3334,12,149280,1,2,Active Shallow Crust,0.0,89.99008,0.0,08/03/0626 +-1.02313,49.03522,4611,10,14,14,18,44,3.55,5.0,fr,3335,92,149280,1,2,Active Shallow Crust,0.0,89.99008,0.0,10/14/4611 +-1.02313,49.03522,9126,6,2,13,0,32,3.55,27.5,fr,3336,182,149282,1,1,Active Shallow Crust,0.0,89.99008,0.0,06/02/9126 +-1.02313,49.03522,8225,7,18,17,16,40,3.65,5.0,fr,3337,164,149292,1,1,Active Shallow Crust,0.0,89.98969,0.0,07/18/8225 +-1.02313,49.03522,5889,6,13,15,21,56,3.65,15.0,fr,3338,117,149293,1,1,Active Shallow Crust,0.0,89.98969,0.0,06/13/5889 +-1.02313,49.03522,995,9,2,11,37,18,3.75,5.0,fr,3339,19,149304,1,1,Active Shallow Crust,0.0,89.98949,0.0,09/02/0995 +-1.02313,49.03522,5480,3,12,13,36,32,3.75,15.0,fr,3340,109,149305,1,1,Active Shallow Crust,0.0,89.98949,0.0,03/12/5480 +-1.02313,49.03522,9208,3,27,14,16,57,3.85,15.0,fr,3341,184,149317,1,2,Active Shallow Crust,0.0,89.98947,0.0,03/27/9208 +-1.02313,49.03522,6531,3,2,1,41,34,3.85,15.0,fr,3342,130,149317,1,2,Active Shallow Crust,0.0,89.98947,0.0,03/02/6531 +-1.02313,49.03522,44,10,8,4,17,5,3.85,27.5,fr,3343,0,149321,1,1,Active Shallow Crust,240.0114,57.99779,0.0,10/08/0044 +-1.02313,49.03522,4252,3,29,12,40,39,3.85,5.0,fr,3344,85,149325,1,1,Active Shallow Crust,128.8953,89.99357,0.0,03/29/4252 +-1.02313,49.03522,4526,9,5,17,38,34,4.15,5.0,fr,3345,90,149352,1,1,Active Shallow Crust,0.0,89.99006,0.0,09/05/4526 +-1.02313,49.03522,2294,12,29,12,47,56,4.15,15.0,fr,3346,45,149359,1,1,Active Shallow Crust,0.0,89.98994,-90.0,12/29/2294 +-1.02313,49.03522,4146,4,25,8,10,59,4.35,5.0,fr,3347,82,149379,1,1,Active Shallow Crust,240.0089,57.99609,0.0,04/25/4146 +-5.22178,48.67153,9409,7,11,23,12,59,3.65,15.0,fr,3348,188,149773,1,1,Active Shallow Crust,0.0,89.98813,0.0,07/11/9409 +-5.22178,48.67153,9669,9,13,9,7,19,3.65,5.0,fr,3349,193,149775,1,1,Active Shallow Crust,240.002,58.0126,0.0,09/13/9669 +-5.22178,48.67153,4475,11,28,19,31,7,3.85,5.0,fr,3350,89,149799,1,1,Active Shallow Crust,240.011,57.99808,0.0,11/28/4475 +-5.22178,48.67153,8723,12,21,4,55,52,4.15,5.0,fr,3351,174,149832,1,1,Active Shallow Crust,0.0,89.98999,0.0,12/21/8723 +-5.22178,48.67153,8463,7,17,5,0,46,4.25,5.0,fr,3352,169,149844,1,1,Active Shallow Crust,0.0,89.99107,0.0,07/17/8463 +-5.22178,48.67153,5864,9,24,8,44,50,4.25,27.5,fr,3353,117,149846,1,1,Active Shallow Crust,0.0,89.99107,0.0,09/24/5864 +-5.22178,48.67153,2945,12,16,21,11,42,4.45,27.5,fr,3354,58,149870,1,1,Active Shallow Crust,0.0,89.99055,0.0,12/16/2945 +0.74872,48.48133,9863,3,19,21,51,19,3.55,5.0,fr,3355,197,150240,1,1,Active Shallow Crust,0.0,89.98997,0.0,03/19/9863 +0.74872,48.48133,3665,4,26,10,59,12,3.65,5.0,fr,3356,73,150252,1,1,Active Shallow Crust,0.0,89.99032,0.0,04/26/3665 +0.74872,48.48133,1184,8,27,14,11,6,3.95,5.0,fr,3357,23,150291,1,1,Active Shallow Crust,240.0201,58.00501,0.0,08/27/1184 +0.74872,48.48133,3043,6,26,5,59,42,4.35,15.0,fr,3358,60,150337,1,1,Active Shallow Crust,0.0,89.99002,0.0,06/26/3043 +4.6882,52.04026,7545,5,15,16,46,15,3.85,5.0,fr,3359,150,151236,1,1,Active Shallow Crust,0.0,89.99122,0.0,05/15/7545 +3.92499,41.67468,8273,4,18,0,34,32,3.55,5.0,fr,3360,165,151680,1,2,Active Shallow Crust,0.0,89.9887,0.0,04/18/8273 +3.92499,41.67468,8962,8,29,8,6,57,3.55,5.0,fr,3361,179,151680,1,2,Active Shallow Crust,0.0,89.9887,0.0,08/29/8962 +3.92499,41.67468,7859,1,6,17,18,25,3.95,5.0,fr,3362,157,151728,1,1,Active Shallow Crust,0.0,89.99049,0.0,01/06/7859 +3.92499,41.67468,2266,9,4,20,23,55,4.95,5.0,fr,3363,45,151848,1,1,Active Shallow Crust,0.0,89.99023,0.0,09/04/2266 +1.65175,48.26498,3251,1,4,5,5,20,3.65,15.0,fr,3364,65,152176,1,2,Active Shallow Crust,240.0011,58.01314,0.0,01/04/3251 +1.65175,48.26498,7433,8,30,13,34,10,3.65,15.0,fr,3365,148,152176,1,2,Active Shallow Crust,240.0011,58.01314,0.0,08/30/7433 +1.65175,48.26498,6153,4,13,1,0,46,3.75,5.0,fr,3366,123,152187,1,1,Active Shallow Crust,240.0083,58.01773,0.0,04/13/6153 +1.65175,48.26498,343,9,9,9,39,43,4.45,15.0,fr,3367,6,152269,1,1,Active Shallow Crust,0.0,89.98988,0.0,09/09/0343 +1.65175,48.26498,2371,11,10,0,46,5,4.85,15.0,fr,3368,47,152317,1,1,Active Shallow Crust,0.0,89.98985,0.0,11/10/2371 +7.09039,44.49244,2781,5,14,17,59,22,3.55,5.0,fr,3369,55,152640,1,2,Active Shallow Crust,0.0,89.99281,0.0,05/14/2781 +7.09039,44.49244,2933,3,28,1,39,24,3.55,5.0,fr,3370,58,152640,1,2,Active Shallow Crust,0.0,89.99281,0.0,03/28/2933 +7.09039,44.49244,4096,9,8,20,44,46,3.55,15.0,fr,3371,81,152641,1,1,Active Shallow Crust,0.0,89.99281,0.0,09/08/4096 +7.09039,44.49244,9709,11,3,0,43,51,3.55,5.0,fr,3372,194,152643,1,1,Active Shallow Crust,240.0128,57.99799,0.0,11/03/9709 +7.09039,44.49244,177,9,9,14,24,53,3.55,27.5,fr,3373,3,152645,1,1,Active Shallow Crust,240.0128,57.9979,0.0,09/09/0177 +7.09039,44.49244,327,4,29,10,6,59,3.55,5.0,fr,3374,6,152649,1,2,Active Shallow Crust,128.897,89.99281,0.0,04/29/0327 +7.09039,44.49244,5308,11,1,1,15,15,3.55,5.0,fr,3375,106,152649,1,2,Active Shallow Crust,128.897,89.99281,0.0,11/01/5308 +7.09039,44.49244,8961,4,15,14,55,25,3.65,5.0,fr,3376,179,152652,1,7,Active Shallow Crust,0.0,89.98717,0.0,04/15/8961 +7.09039,44.49244,257,12,15,20,32,52,3.65,5.0,fr,3377,5,152652,1,7,Active Shallow Crust,0.0,89.98717,0.0,12/15/0257 +7.09039,44.49244,2699,8,28,13,0,25,3.65,5.0,fr,3378,53,152652,1,7,Active Shallow Crust,0.0,89.98717,0.0,08/28/2699 +7.09039,44.49244,9838,2,7,4,22,4,3.65,5.0,fr,3379,196,152652,1,7,Active Shallow Crust,0.0,89.98717,0.0,02/07/9838 +7.09039,44.49244,6335,9,15,22,29,9,3.65,5.0,fr,3380,126,152652,1,7,Active Shallow Crust,0.0,89.98717,0.0,09/15/6335 +7.09039,44.49244,8121,6,7,3,6,11,3.65,5.0,fr,3381,162,152652,1,7,Active Shallow Crust,0.0,89.98717,0.0,06/07/8121 +7.09039,44.49244,9933,9,13,21,34,19,3.65,5.0,fr,3382,198,152652,1,7,Active Shallow Crust,0.0,89.98717,0.0,09/13/9933 +7.09039,44.49244,9167,8,12,21,53,4,3.65,5.0,fr,3383,183,152655,1,1,Active Shallow Crust,240.0009,58.01274,0.0,08/12/9167 +7.09039,44.49244,3849,7,18,8,28,49,3.75,5.0,fr,3384,76,152664,1,3,Active Shallow Crust,0.0,89.98857,0.0,07/18/3849 +7.09039,44.49244,3885,1,7,12,37,23,3.75,5.0,fr,3385,77,152664,1,3,Active Shallow Crust,0.0,89.98857,0.0,01/07/3885 +7.09039,44.49244,215,12,7,2,5,49,3.75,5.0,fr,3386,4,152664,1,3,Active Shallow Crust,0.0,89.98857,0.0,12/07/0215 +7.09039,44.49244,3785,3,15,10,35,9,3.75,27.5,fr,3387,75,152666,1,1,Active Shallow Crust,0.0,89.98857,0.0,03/15/3785 +7.09039,44.49244,978,11,9,13,31,58,3.75,5.0,fr,3388,19,152673,1,1,Active Shallow Crust,128.8977,89.96684,0.0,11/09/0978 +7.09039,44.49244,4374,2,6,8,8,8,3.75,15.0,fr,3389,87,152674,1,1,Active Shallow Crust,128.8977,89.96684,0.0,02/06/4374 +7.09039,44.49244,5742,5,26,12,19,12,3.85,5.0,fr,3390,114,152676,1,1,Active Shallow Crust,0.0,89.98981,0.0,05/26/5742 +7.09039,44.49244,4838,5,27,1,19,23,3.85,15.0,fr,3391,96,152677,1,3,Active Shallow Crust,0.0,89.98981,0.0,05/27/4838 +7.09039,44.49244,765,5,26,17,58,18,3.85,15.0,fr,3392,15,152677,1,3,Active Shallow Crust,0.0,89.98981,0.0,05/26/0765 +7.09039,44.49244,8913,4,9,6,27,54,3.85,15.0,fr,3393,178,152677,1,3,Active Shallow Crust,0.0,89.98981,0.0,04/09/8913 +7.09039,44.49244,7004,5,19,23,29,21,3.85,5.0,fr,3394,140,152679,1,1,Active Shallow Crust,240.0105,57.99784,0.0,05/19/7004 +7.09039,44.49244,5224,3,24,2,46,1,3.85,5.0,fr,3395,104,152685,1,1,Active Shallow Crust,128.896,89.99491,0.0,03/24/5224 +7.09039,44.49244,3423,12,20,6,57,51,3.95,5.0,fr,3396,68,152688,1,3,Active Shallow Crust,0.0,89.99092,0.0,12/20/3423 +7.09039,44.49244,5985,1,30,6,4,0,3.95,5.0,fr,3397,119,152688,1,3,Active Shallow Crust,0.0,89.99092,0.0,01/30/5985 +7.09039,44.49244,8128,5,16,22,46,2,3.95,5.0,fr,3398,162,152688,1,3,Active Shallow Crust,0.0,89.99092,0.0,05/16/8128 +7.09039,44.49244,272,9,16,1,17,59,3.95,15.0,fr,3399,5,152689,1,2,Active Shallow Crust,0.0,89.99092,0.0,09/16/0272 +7.09039,44.49244,3484,9,27,7,5,51,3.95,15.0,fr,3400,69,152689,1,2,Active Shallow Crust,0.0,89.99092,0.0,09/27/3484 +7.09039,44.49244,6060,4,1,10,6,46,3.95,5.0,fr,3401,121,152691,1,1,Active Shallow Crust,240.0196,58.00541,0.0,04/01/6060 +7.09039,44.49244,8037,3,23,15,2,56,3.95,15.0,fr,3402,160,152695,1,1,Active Shallow Crust,0.0,89.99081,-90.0,03/23/8037 +7.09039,44.49244,3251,1,13,7,51,32,3.95,5.0,fr,3403,65,152697,1,2,Active Shallow Crust,128.9006,89.99319,0.0,01/13/3251 +7.09039,44.49244,2132,2,19,13,36,24,3.95,5.0,fr,3404,42,152697,1,2,Active Shallow Crust,128.9006,89.99319,0.0,02/19/2132 +7.09039,44.49244,5444,8,4,4,11,22,4.05,5.0,fr,3405,108,152700,1,3,Active Shallow Crust,0.0,89.99191,0.0,08/04/5444 +7.09039,44.49244,922,1,19,22,32,5,4.05,5.0,fr,3406,18,152700,1,3,Active Shallow Crust,0.0,89.99191,0.0,01/19/0922 +7.09039,44.49244,3463,8,22,6,23,18,4.05,5.0,fr,3407,69,152700,1,3,Active Shallow Crust,0.0,89.99191,0.0,08/22/3463 +7.09039,44.49244,6145,7,10,9,19,50,4.05,5.0,fr,3408,122,152706,1,1,Active Shallow Crust,0.0,89.99181,-90.0,07/10/6145 +7.09039,44.49244,9090,8,13,19,25,44,4.05,5.0,fr,3409,181,152709,1,2,Active Shallow Crust,128.8903,89.99393,0.0,08/13/9090 +7.09039,44.49244,7477,12,1,20,36,48,4.05,5.0,fr,3410,149,152709,1,2,Active Shallow Crust,128.8903,89.99393,0.0,12/01/7477 +7.09039,44.49244,4176,6,13,5,3,43,4.15,5.0,fr,3411,83,152712,1,1,Active Shallow Crust,0.0,89.98918,0.0,06/13/4176 +7.09039,44.49244,2384,12,10,5,30,9,4.15,5.0,fr,3412,47,152715,1,1,Active Shallow Crust,240.0078,57.99758,0.0,12/10/2384 +7.09039,44.49244,1347,9,15,9,49,36,4.25,5.0,fr,3413,26,152724,1,1,Active Shallow Crust,0.0,89.99036,0.0,09/15/1347 +7.09039,44.49244,4227,3,29,8,24,17,4.25,5.0,fr,3414,84,152733,1,1,Active Shallow Crust,128.895,89.98087,0.0,03/29/4227 +7.09039,44.49244,9403,10,15,2,29,49,4.35,5.0,fr,3415,188,152736,1,1,Active Shallow Crust,0.0,89.99141,0.0,10/15/9403 +7.09039,44.49244,6137,4,7,4,48,36,4.35,15.0,fr,3416,122,152737,1,1,Active Shallow Crust,0.0,89.99141,0.0,04/07/6137 +7.09039,44.49244,2058,6,26,16,16,32,4.35,15.0,fr,3417,41,152740,1,1,Active Shallow Crust,240.0082,57.99568,0.0,06/26/2058 +7.09039,44.49244,671,8,14,0,30,34,4.45,5.0,fr,3418,13,152748,1,2,Active Shallow Crust,0.0,89.98979,0.0,08/14/0671 +7.09039,44.49244,4703,5,8,9,39,36,4.45,5.0,fr,3419,94,152748,1,2,Active Shallow Crust,0.0,89.98979,0.0,05/08/4703 +7.09039,44.49244,2176,3,19,4,13,54,4.55,5.0,fr,3420,43,152763,1,1,Active Shallow Crust,240.0086,57.99743,0.0,03/19/2176 +7.09039,44.49244,7727,6,25,0,32,3,5.95,5.0,fr,3421,154,152928,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/25/7727 +-1.37001,46.45331,7288,4,18,22,13,35,3.55,5.0,fr,3422,145,153120,1,1,Active Shallow Crust,0.0,89.98958,0.0,04/18/7288 +-1.37001,46.45331,9749,9,15,9,46,31,3.55,15.0,fr,3423,194,153121,1,1,Active Shallow Crust,0.0,89.98958,0.0,09/15/9749 +-1.37001,46.45331,6708,3,26,23,42,14,3.55,27.5,fr,3424,134,153122,1,1,Active Shallow Crust,0.0,89.98958,0.0,03/26/6708 +-1.37001,46.45331,2690,4,27,13,37,47,3.55,27.5,fr,3425,53,153125,1,1,Active Shallow Crust,240.0124,57.99788,0.0,04/27/2690 +-1.37001,46.45331,2642,7,26,15,18,55,3.65,5.0,fr,3426,52,153132,1,1,Active Shallow Crust,0.0,89.99072,0.0,07/26/2642 +-1.37001,46.45331,3310,7,9,17,37,20,3.65,15.0,fr,3427,66,153133,1,1,Active Shallow Crust,0.0,89.99072,0.0,07/09/3310 +-1.37001,46.45331,9888,12,12,18,42,20,3.65,27.5,fr,3428,197,153134,1,2,Active Shallow Crust,0.0,89.99072,0.0,12/12/9888 +-1.37001,46.45331,6292,12,21,13,55,45,3.65,27.5,fr,3429,125,153134,1,2,Active Shallow Crust,0.0,89.99072,0.0,12/21/6292 +-1.37001,46.45331,7955,4,22,9,16,25,3.75,5.0,fr,3430,159,153144,1,2,Active Shallow Crust,0.0,89.99034,0.0,04/22/7955 +-1.37001,46.45331,7933,6,14,7,32,10,3.75,5.0,fr,3431,158,153144,1,2,Active Shallow Crust,0.0,89.99034,0.0,06/14/7933 +-1.37001,46.45331,6809,12,2,15,13,40,3.75,5.0,fr,3432,136,153150,1,1,Active Shallow Crust,0.0,89.99023,-90.0,12/02/6809 +-1.37001,46.45331,6538,3,5,10,28,27,3.85,5.0,fr,3433,130,153156,1,2,Active Shallow Crust,0.0,89.99017,0.0,03/05/6538 +-1.37001,46.45331,7595,6,22,16,5,23,3.85,5.0,fr,3434,151,153156,1,2,Active Shallow Crust,0.0,89.99017,0.0,06/22/7595 +-1.37001,46.45331,2096,12,5,12,23,14,3.95,5.0,fr,3435,41,153168,1,1,Active Shallow Crust,0.0,89.99014,0.0,12/05/2096 +-1.37001,46.45331,4544,2,14,4,27,29,4.05,15.0,fr,3436,90,153181,1,1,Active Shallow Crust,0.0,89.99023,0.0,02/14/4544 +-1.37001,46.45331,4138,8,4,14,35,34,4.05,27.5,fr,3437,82,153185,1,1,Active Shallow Crust,240.0058,58.00575,0.0,08/04/4138 +-1.37001,46.45331,8241,2,24,15,55,29,4.25,5.0,fr,3438,164,153213,1,1,Active Shallow Crust,128.8943,89.98081,0.0,02/24/8241 +-1.37001,46.45331,8513,11,2,9,2,1,4.55,15.0,fr,3439,170,153241,1,1,Active Shallow Crust,0.0,89.99011,0.0,11/02/8513 +-1.37001,46.45331,4353,7,31,16,37,26,4.55,27.5,fr,3440,87,153245,1,1,Active Shallow Crust,240.0092,57.99739,0.0,07/31/4353 +1.00764,42.03853,2230,9,1,14,3,8,3.55,15.0,fr,3441,44,153601,1,2,Active Shallow Crust,0.0,89.99064,0.0,09/01/2230 +1.00764,42.03853,6439,1,2,7,55,36,3.55,15.0,fr,3442,128,153601,1,2,Active Shallow Crust,0.0,89.99064,0.0,01/02/6439 +1.00764,42.03853,3918,8,13,8,37,12,3.85,27.5,fr,3443,78,153638,1,1,Active Shallow Crust,0.0,89.9894,0.0,08/13/3918 +1.00764,42.03853,4276,7,27,8,31,30,4.15,5.0,fr,3444,85,153678,1,1,Active Shallow Crust,0.0,89.98956,-90.0,07/27/4276 +1.00764,42.03853,9346,6,20,10,50,36,4.25,5.0,fr,3445,186,153687,1,1,Active Shallow Crust,240.0066,57.99396,0.0,06/20/9346 +1.00764,42.03853,59,6,17,8,53,57,4.25,15.0,fr,3446,1,153691,1,1,Active Shallow Crust,0.0,89.98985,-90.0,06/17/0059 +3.23603,43.84391,5755,6,25,21,59,38,3.55,15.0,fr,3447,115,154081,1,1,Active Shallow Crust,0.0,89.98909,0.0,06/25/5755 +3.23603,43.84391,3648,9,13,10,52,54,3.75,5.0,fr,3448,72,154104,1,1,Active Shallow Crust,0.0,89.99133,0.0,09/13/3648 +3.23603,43.84391,9615,2,17,6,8,48,3.85,5.0,fr,3449,192,154122,1,1,Active Shallow Crust,0.0,89.98959,-90.0,02/17/9615 +3.23603,43.84391,5658,1,5,22,41,22,3.95,5.0,fr,3450,113,154128,1,1,Active Shallow Crust,0.0,89.99082,0.0,01/05/5658 +3.23603,43.84391,6215,12,24,3,44,6,4.45,5.0,fr,3451,124,154188,1,1,Active Shallow Crust,0.0,89.98968,0.0,12/24/6215 +3.23603,43.84391,5737,6,25,18,47,6,4.95,27.5,fr,3452,114,154256,1,1,Active Shallow Crust,0.0,89.98972,-90.0,06/25/5737 +4.84707,44.99958,961,10,25,8,11,50,3.55,5.0,fr,3453,19,154560,1,1,Active Shallow Crust,0.0,89.99287,0.0,10/25/0961 +4.84707,44.99958,7476,11,8,2,49,11,3.55,15.0,fr,3454,149,154561,1,2,Active Shallow Crust,0.0,89.99287,0.0,11/08/7476 +4.84707,44.99958,9550,8,22,18,39,57,3.55,15.0,fr,3455,190,154561,1,2,Active Shallow Crust,0.0,89.99287,0.0,08/22/9550 +4.84707,44.99958,7847,3,22,12,57,16,3.55,27.5,fr,3456,156,154562,1,2,Active Shallow Crust,0.0,89.99287,0.0,03/22/7847 +4.84707,44.99958,2817,12,29,15,33,3,3.55,27.5,fr,3457,56,154562,1,2,Active Shallow Crust,0.0,89.99287,0.0,12/29/2817 +4.84707,44.99958,518,10,12,3,32,12,3.55,27.5,fr,3458,10,154568,1,1,Active Shallow Crust,0.0,89.99279,-90.0,10/12/0518 +4.84707,44.99958,5932,1,9,9,36,38,3.65,5.0,fr,3459,118,154572,1,1,Active Shallow Crust,0.0,89.98729,0.0,01/09/5932 +4.84707,44.99958,8291,9,18,2,58,15,3.65,5.0,fr,3460,165,154575,1,1,Active Shallow Crust,240.0003,58.01373,0.0,09/18/8291 +4.84707,44.99958,6815,1,16,17,40,8,3.65,5.0,fr,3461,136,154578,1,1,Active Shallow Crust,0.0,89.98714,-90.0,01/16/6815 +4.84707,44.99958,9750,3,19,20,46,39,3.75,5.0,fr,3462,194,154584,1,1,Active Shallow Crust,0.0,89.98867,0.0,03/19/9750 +4.84707,44.99958,2617,8,22,10,56,50,3.95,5.0,fr,3463,52,154608,1,3,Active Shallow Crust,0.0,89.991,0.0,08/22/2617 +4.84707,44.99958,7865,3,8,16,22,17,3.95,5.0,fr,3464,157,154608,1,3,Active Shallow Crust,0.0,89.991,0.0,03/08/7865 +4.84707,44.99958,873,4,7,16,26,24,3.95,5.0,fr,3465,17,154608,1,3,Active Shallow Crust,0.0,89.991,0.0,04/07/0873 +4.84707,44.99958,5241,8,24,21,9,13,4.35,5.0,fr,3466,104,154656,1,1,Active Shallow Crust,0.0,89.98865,0.0,08/24/5241 +4.84707,44.99958,6092,1,21,11,15,38,4.45,15.0,fr,3467,121,154669,1,1,Active Shallow Crust,0.0,89.98988,0.0,01/21/6092 +4.84707,44.99958,3190,6,9,3,25,28,4.55,5.0,fr,3468,63,154680,1,1,Active Shallow Crust,0.0,89.99098,0.0,06/09/3190 +4.84707,44.99958,8613,1,22,7,55,53,4.95,27.5,fr,3469,172,154730,1,1,Active Shallow Crust,0.0,89.99004,0.0,01/22/8613 +4.84707,44.99958,303,1,12,0,53,30,5.15,5.0,fr,3470,6,154752,1,1,Active Shallow Crust,0.0,89.98983,0.0,01/12/0303 +2.83193,52.82656,9626,8,14,20,30,1,3.55,5.0,fr,3471,192,155040,1,1,Active Shallow Crust,0.0,89.99086,0.0,08/14/9626 +-0.01528,42.21048,4542,11,10,10,43,11,4.55,5.0,fr,3472,90,155640,1,1,Active Shallow Crust,0.0,89.99,0.0,11/10/4542 +4.36498,47.1388,2358,4,16,5,49,4,3.55,5.0,fr,3473,47,156000,1,2,Active Shallow Crust,0.0,89.99314,0.0,04/16/2358 +4.36498,47.1388,5584,12,29,4,55,43,3.55,5.0,fr,3474,111,156000,1,2,Active Shallow Crust,0.0,89.99314,0.0,12/29/5584 +4.36498,47.1388,982,1,2,14,45,28,3.65,15.0,fr,3475,19,156016,1,1,Active Shallow Crust,240.0002,58.01351,0.0,01/02/0982 +4.36498,47.1388,8971,10,6,21,3,6,3.65,5.0,fr,3476,179,156018,1,1,Active Shallow Crust,0.0,89.98763,-90.0,10/06/8971 +4.36498,47.1388,4062,7,11,18,34,50,3.75,5.0,fr,3477,81,156024,1,1,Active Shallow Crust,0.0,89.98911,0.0,07/11/4062 +4.36498,47.1388,5195,5,4,14,33,9,3.75,5.0,fr,3478,103,156030,1,1,Active Shallow Crust,0.0,89.98898,-90.0,05/04/5195 +4.36498,47.1388,8698,5,5,6,13,14,3.85,5.0,fr,3479,173,156036,1,2,Active Shallow Crust,0.0,89.99029,0.0,05/05/8698 +4.36498,47.1388,8064,1,5,16,40,32,3.85,5.0,fr,3480,161,156036,1,2,Active Shallow Crust,0.0,89.99029,0.0,01/05/8064 +4.36498,47.1388,17,10,17,20,51,27,5.05,5.0,fr,3481,0,156180,1,1,Active Shallow Crust,0.0,89.99024,0.0,10/17/0017 +-0.3539,49.47601,5508,11,26,0,44,27,3.55,5.0,fr,3482,110,156480,1,1,Active Shallow Crust,0.0,89.99017,0.0,11/26/5508 +-0.3539,49.47601,5609,6,5,13,0,3,3.55,5.0,fr,3483,112,156483,1,1,Active Shallow Crust,240.0125,57.9982,0.0,06/05/5609 +-0.3539,49.47601,1051,9,26,18,13,50,3.65,5.0,fr,3484,21,156492,1,1,Active Shallow Crust,0.0,89.99014,0.0,09/26/1051 +-0.3539,49.47601,6950,9,11,21,9,10,3.65,15.0,fr,3485,138,156496,1,1,Active Shallow Crust,240.0014,58.01295,0.0,09/11/6950 +-0.3539,49.47601,7421,8,9,15,33,54,3.75,15.0,fr,3486,148,156505,1,1,Active Shallow Crust,0.0,89.98991,0.0,08/09/7421 +-0.3539,49.47601,6472,5,15,1,13,53,3.75,27.5,fr,3487,129,156506,1,1,Active Shallow Crust,0.0,89.98991,0.0,05/15/6472 +-0.3539,49.47601,1035,1,24,20,51,26,3.85,15.0,fr,3488,20,156517,1,1,Active Shallow Crust,0.0,89.99014,0.0,01/24/1035 +-0.3539,49.47601,7125,9,24,6,55,52,3.95,5.0,fr,3489,142,156528,1,1,Active Shallow Crust,0.0,89.98992,0.0,09/24/7125 +-0.3539,49.47601,7204,1,3,11,4,6,4.05,15.0,fr,3490,144,156541,1,1,Active Shallow Crust,0.0,89.9901,0.0,01/03/7204 +-0.3539,49.47601,4226,8,16,8,50,54,4.05,15.0,fr,3491,84,156544,1,1,Active Shallow Crust,240.0065,58.00591,0.0,08/16/4226 +-0.3539,49.47601,4572,5,9,16,1,53,4.65,27.5,fr,3492,91,156617,1,1,Active Shallow Crust,240.0119,57.99443,0.0,05/09/4572 +-0.3539,49.47601,8096,3,25,6,58,37,5.15,5.0,fr,3493,161,156672,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/25/8096 +0.53142,41.44451,6533,11,26,13,3,50,3.55,5.0,fr,3494,130,156960,1,2,Active Shallow Crust,0.0,89.98961,0.0,11/26/6533 +0.53142,41.44451,1173,7,31,23,49,23,3.55,5.0,fr,3495,23,156960,1,2,Active Shallow Crust,0.0,89.98961,0.0,07/31/1173 +0.53142,41.44451,9853,7,23,18,15,45,3.75,27.5,fr,3496,197,156989,1,1,Active Shallow Crust,240.0079,58.01735,0.0,07/23/9853 +0.53142,41.44451,4366,9,6,1,39,57,3.85,15.0,fr,3497,87,157003,1,1,Active Shallow Crust,0.0,89.98985,-90.0,09/06/4366 +0.53142,41.44451,4520,7,9,7,54,41,3.95,5.0,fr,3498,90,157008,1,2,Active Shallow Crust,0.0,89.98987,0.0,07/09/4520 +0.53142,41.44451,7810,11,27,22,42,23,3.95,5.0,fr,3499,156,157008,1,2,Active Shallow Crust,0.0,89.98987,0.0,11/27/7810 +0.53142,41.44451,8479,3,22,0,15,55,4.25,5.0,fr,3500,169,157044,1,1,Active Shallow Crust,0.0,89.98987,0.0,03/22/8479 +0.53142,41.44451,5213,11,19,1,10,53,4.65,5.0,fr,3501,104,157095,1,1,Active Shallow Crust,240.0093,57.99394,0.0,11/19/5213 +0.53142,41.44451,3780,1,31,19,45,12,5.25,5.0,fr,3502,75,157170,1,1,Active Shallow Crust,0.0,89.99001,-90.0,01/31/3780 +8.35746,49.16087,7865,8,6,14,3,6,3.55,5.0,fr,3503,157,157920,1,2,Active Shallow Crust,0.0,89.98681,0.0,08/06/7865 +8.35746,49.16087,4384,12,11,14,45,11,3.55,5.0,fr,3504,87,157920,1,2,Active Shallow Crust,0.0,89.98681,0.0,12/11/4384 +8.35746,49.16087,9692,3,2,18,43,18,3.55,15.0,fr,3505,193,157921,1,1,Active Shallow Crust,0.0,89.98681,0.0,03/02/9692 +8.35746,49.16087,3442,12,18,1,45,31,3.55,5.0,fr,3506,68,157923,1,1,Active Shallow Crust,240.0127,57.99865,0.0,12/18/3442 +8.35746,49.16087,9894,8,28,4,44,22,3.65,5.0,fr,3507,197,157932,1,3,Active Shallow Crust,0.0,89.98824,0.0,08/28/9894 +8.35746,49.16087,2443,8,7,21,40,18,3.65,5.0,fr,3508,48,157932,1,3,Active Shallow Crust,0.0,89.98824,0.0,08/07/2443 +8.35746,49.16087,8396,5,24,21,5,31,3.65,5.0,fr,3509,167,157932,1,3,Active Shallow Crust,0.0,89.98824,0.0,05/24/8396 +8.35746,49.16087,1630,12,23,22,7,18,3.65,15.0,fr,3510,32,157933,1,1,Active Shallow Crust,0.0,89.98824,0.0,12/23/1630 +8.35746,49.16087,9146,1,21,11,27,51,3.65,15.0,fr,3511,182,157942,1,1,Active Shallow Crust,128.9017,89.96358,0.0,01/21/9146 +8.35746,49.16087,2570,10,4,12,51,33,3.75,5.0,fr,3512,51,157944,1,2,Active Shallow Crust,0.0,89.98952,0.0,10/04/2570 +8.35746,49.16087,9821,7,24,21,5,43,3.75,5.0,fr,3513,196,157944,1,2,Active Shallow Crust,0.0,89.98952,0.0,07/24/9821 +8.35746,49.16087,8417,12,28,21,41,41,3.75,5.0,fr,3514,168,157947,1,1,Active Shallow Crust,240.0079,58.01808,0.0,12/28/8417 +8.35746,49.16087,8923,10,25,15,37,22,3.95,5.0,fr,3515,178,157968,1,3,Active Shallow Crust,0.0,89.99168,0.0,10/25/8923 +8.35746,49.16087,5959,5,7,7,30,27,3.95,5.0,fr,3516,119,157968,1,3,Active Shallow Crust,0.0,89.99168,0.0,05/07/5959 +8.35746,49.16087,1604,8,17,4,36,20,3.95,5.0,fr,3517,32,157968,1,3,Active Shallow Crust,0.0,89.99168,0.0,08/17/1604 +8.35746,49.16087,8422,9,4,20,35,23,4.05,5.0,fr,3518,168,157989,1,2,Active Shallow Crust,128.8907,89.99258,0.0,09/04/8422 +8.35746,49.16087,6619,11,13,10,10,19,4.05,5.0,fr,3519,132,157989,1,2,Active Shallow Crust,128.8907,89.99258,0.0,11/13/6619 +8.35746,49.16087,726,7,20,10,15,31,4.15,5.0,fr,3520,14,157992,1,1,Active Shallow Crust,0.0,89.98678,0.0,07/20/0726 +8.35746,49.16087,930,7,26,22,42,13,4.15,15.0,fr,3521,18,158002,1,1,Active Shallow Crust,128.8962,89.99339,0.0,07/26/0930 +8.35746,49.16087,4342,1,19,9,52,53,4.25,5.0,fr,3522,86,158004,1,2,Active Shallow Crust,0.0,89.98822,0.0,01/19/4342 +8.35746,49.16087,4301,4,4,12,39,32,4.25,5.0,fr,3523,86,158004,1,2,Active Shallow Crust,0.0,89.98822,0.0,04/04/4301 +8.35746,49.16087,1321,2,25,10,52,59,4.55,5.0,fr,3524,26,158049,1,1,Active Shallow Crust,128.8935,89.98579,0.0,02/25/1321 +8.35746,49.16087,4100,2,13,22,31,2,4.75,5.0,fr,3525,81,158073,1,1,Active Shallow Crust,128.887,89.98872,0.0,02/13/4100 +-2.84954,47.13517,1568,2,1,18,1,47,3.75,5.0,fr,3526,31,158424,1,1,Active Shallow Crust,0.0,89.98911,0.0,02/01/1568 +-2.84954,47.13517,5505,4,2,0,11,33,3.95,5.0,fr,3527,110,158454,1,1,Active Shallow Crust,0.0,89.98905,-90.0,04/02/5505 +-2.84954,47.13517,5740,1,7,20,31,14,4.55,5.0,fr,3528,114,158520,1,2,Active Shallow Crust,0.0,89.99023,0.0,01/07/5740 +-2.84954,47.13517,8076,4,30,10,11,35,4.55,5.0,fr,3529,161,158520,1,2,Active Shallow Crust,0.0,89.99023,0.0,04/30/8076 +-2.84954,47.13517,140,2,25,3,29,25,6.75,15.0,fr,3530,2,158785,1,1,Active Shallow Crust,0.0,89.98998,0.0,02/25/0140 +0.2033,48.97963,2841,5,23,0,34,8,3.55,5.0,fr,3531,56,158880,1,3,Active Shallow Crust,0.0,89.99007,0.0,05/23/2841 +0.2033,48.97963,268,3,30,20,45,13,3.55,5.0,fr,3532,5,158880,1,3,Active Shallow Crust,0.0,89.99007,0.0,03/30/0268 +0.2033,48.97963,4841,12,17,5,18,8,3.55,5.0,fr,3533,96,158880,1,3,Active Shallow Crust,0.0,89.99007,0.0,12/17/4841 +0.2033,48.97963,5840,8,29,22,0,32,3.55,15.0,fr,3534,116,158881,1,1,Active Shallow Crust,0.0,89.99007,0.0,08/29/5840 +0.2033,48.97963,210,4,7,15,4,27,3.55,5.0,fr,3535,4,158883,1,1,Active Shallow Crust,240.0124,57.99823,0.0,04/07/0210 +0.2033,48.97963,1204,1,22,9,51,58,3.65,5.0,fr,3536,24,158892,1,1,Active Shallow Crust,0.0,89.99004,0.0,01/22/1204 +0.2033,48.97963,8461,1,13,10,46,40,3.65,15.0,fr,3537,169,158893,1,1,Active Shallow Crust,0.0,89.99004,0.0,01/13/8461 +0.2033,48.97963,4052,12,17,15,16,2,3.75,5.0,fr,3538,81,158904,1,1,Active Shallow Crust,0.0,89.98997,0.0,12/17/4052 +0.2033,48.97963,8192,10,1,8,25,22,3.75,15.0,fr,3539,163,158905,1,2,Active Shallow Crust,0.0,89.98997,0.0,10/01/8192 +0.2033,48.97963,9805,3,28,11,28,5,3.75,15.0,fr,3540,196,158905,1,2,Active Shallow Crust,0.0,89.98997,0.0,03/28/9805 +0.2033,48.97963,5901,9,2,19,51,13,3.75,27.5,fr,3541,118,158906,1,1,Active Shallow Crust,0.0,89.98997,0.0,09/02/5901 +0.2033,48.97963,3695,7,6,16,3,7,3.85,15.0,fr,3542,73,158917,1,1,Active Shallow Crust,0.0,89.99004,0.0,07/06/3695 +0.2033,48.97963,232,2,12,19,11,22,3.95,5.0,fr,3543,4,158928,1,1,Active Shallow Crust,0.0,89.98995,0.0,02/12/0232 +0.2033,48.97963,9309,9,13,10,34,46,4.05,5.0,fr,3544,186,158940,1,1,Active Shallow Crust,0.0,89.99,0.0,09/13/9309 +0.2033,48.97963,5477,10,20,22,27,42,4.45,5.0,fr,3545,109,158988,1,1,Active Shallow Crust,0.0,89.99002,0.0,10/20/5477 +0.2033,48.97963,3879,2,20,0,22,30,4.65,15.0,fr,3546,77,159013,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/20/3879 +0.2033,48.97963,4792,3,22,5,54,51,4.75,5.0,fr,3547,95,159024,1,1,Active Shallow Crust,360.0,89.99002,0.0,03/22/4792 +0.2033,48.97963,6765,11,9,9,16,48,4.95,15.0,fr,3548,135,159049,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/09/6765 +4.54878,45.48192,9304,10,17,7,22,16,3.55,5.0,fr,3549,186,159360,1,3,Active Shallow Crust,0.0,89.99293,0.0,10/17/9304 +4.54878,45.48192,4774,2,18,21,48,38,3.55,5.0,fr,3550,95,159360,1,3,Active Shallow Crust,0.0,89.99293,0.0,02/18/4774 +4.54878,45.48192,7436,3,8,13,25,9,3.55,5.0,fr,3551,148,159360,1,3,Active Shallow Crust,0.0,89.99293,0.0,03/08/7436 +4.54878,45.48192,3253,6,8,22,58,11,3.55,15.0,fr,3552,65,159361,1,2,Active Shallow Crust,0.0,89.99293,0.0,06/08/3253 +4.54878,45.48192,7670,9,27,18,40,21,3.55,15.0,fr,3553,153,159361,1,2,Active Shallow Crust,0.0,89.99293,0.0,09/27/7670 +4.54878,45.48192,993,9,11,23,5,10,3.55,15.0,fr,3554,19,159364,1,1,Active Shallow Crust,240.0125,57.99725,0.0,09/11/0993 +4.54878,45.48192,6817,7,22,20,54,21,3.55,5.0,fr,3555,136,159366,1,1,Active Shallow Crust,0.0,89.99285,-90.0,07/22/6817 +4.54878,45.48192,2962,12,22,6,43,24,3.65,27.5,fr,3556,59,159374,1,2,Active Shallow Crust,0.0,89.9874,0.0,12/22/2962 +4.54878,45.48192,6498,3,28,6,9,3,3.65,27.5,fr,3557,129,159374,1,2,Active Shallow Crust,0.0,89.9874,0.0,03/28/6498 +4.54878,45.48192,5,4,8,5,30,33,3.65,5.0,fr,3558,0,159381,1,1,Active Shallow Crust,128.9012,89.9635,0.0,04/08/0005 +4.54878,45.48192,2519,6,18,18,50,17,3.75,5.0,fr,3559,50,159384,1,1,Active Shallow Crust,0.0,89.98877,0.0,06/18/2519 +4.54878,45.48192,4184,11,18,10,38,58,3.85,5.0,fr,3560,83,159396,1,1,Active Shallow Crust,0.0,89.98999,0.0,11/18/4184 +4.54878,45.48192,1263,5,13,0,56,14,3.85,5.0,fr,3561,25,159405,1,1,Active Shallow Crust,128.8958,89.99249,0.0,05/13/1263 +4.54878,45.48192,8808,2,1,5,12,42,3.95,5.0,fr,3562,176,159408,1,1,Active Shallow Crust,0.0,89.99108,0.0,02/01/8808 +4.54878,45.48192,8100,6,15,12,57,56,3.95,27.5,fr,3563,161,159410,1,1,Active Shallow Crust,0.0,89.99108,0.0,06/15/8100 +4.54878,45.48192,5655,3,22,17,25,38,4.35,5.0,fr,3564,113,159456,1,1,Active Shallow Crust,0.0,89.98874,0.0,03/22/5655 +2.38414,46.06463,4541,8,31,1,10,40,3.55,5.0,fr,3565,90,159840,1,2,Active Shallow Crust,0.0,89.9895,0.0,08/31/4541 +2.38414,46.06463,4805,2,6,16,17,33,3.55,5.0,fr,3566,96,159840,1,2,Active Shallow Crust,0.0,89.9895,0.0,02/06/4805 +2.38414,46.06463,1163,1,30,16,10,56,3.55,5.0,fr,3567,23,159843,1,1,Active Shallow Crust,240.0117,57.99816,0.0,01/30/1163 +2.38414,46.06463,2412,9,6,1,36,21,3.55,5.0,fr,3568,48,159849,1,1,Active Shallow Crust,128.8966,89.993,0.0,09/06/2412 +2.38414,46.06463,4766,12,13,0,18,3,3.65,5.0,fr,3569,95,159852,1,3,Active Shallow Crust,0.0,89.99065,0.0,12/13/4766 +2.38414,46.06463,8268,3,27,11,1,42,3.65,5.0,fr,3570,165,159852,1,3,Active Shallow Crust,0.0,89.99065,0.0,03/27/8268 +2.38414,46.06463,8474,11,2,11,24,49,3.65,5.0,fr,3571,169,159852,1,3,Active Shallow Crust,0.0,89.99065,0.0,11/02/8474 +2.38414,46.06463,4927,1,23,21,1,8,3.65,15.0,fr,3572,98,159853,1,1,Active Shallow Crust,0.0,89.99065,0.0,01/23/4927 +2.38414,46.06463,9490,7,19,4,49,47,3.65,27.5,fr,3573,189,159854,1,1,Active Shallow Crust,0.0,89.99065,0.0,07/19/9490 +2.38414,46.06463,9456,10,17,23,2,39,3.65,5.0,fr,3574,189,159855,1,1,Active Shallow Crust,240.0004,58.01351,0.0,10/17/9456 +2.38414,46.06463,727,5,1,15,26,53,3.65,5.0,fr,3575,14,159861,1,1,Active Shallow Crust,128.9005,89.96322,0.0,05/01/0727 +2.38414,46.06463,2676,5,14,15,5,6,3.75,5.0,fr,3576,53,159864,1,1,Active Shallow Crust,0.0,89.98888,0.0,05/14/2676 +2.38414,46.06463,8643,1,16,12,53,59,3.85,5.0,fr,3577,172,159876,1,2,Active Shallow Crust,0.0,89.9901,0.0,01/16/8643 +2.38414,46.06463,35,9,15,6,22,22,3.85,5.0,fr,3578,0,159876,1,2,Active Shallow Crust,0.0,89.9901,0.0,09/15/0035 +2.38414,46.06463,1296,7,9,11,49,40,3.85,27.5,fr,3579,25,159878,1,1,Active Shallow Crust,0.0,89.9901,0.0,07/09/1296 +2.38414,46.06463,2374,8,19,13,16,10,3.85,5.0,fr,3580,47,159879,1,1,Active Shallow Crust,240.0106,57.99788,0.0,08/19/2374 +2.38414,46.06463,4973,9,8,19,33,49,3.95,5.0,fr,3581,99,159888,1,1,Active Shallow Crust,0.0,89.98896,0.0,09/08/4973 +2.38414,46.06463,8345,6,15,8,41,1,4.05,5.0,fr,3582,166,159900,1,2,Active Shallow Crust,0.0,89.99017,0.0,06/15/8345 +2.38414,46.06463,8541,12,10,10,43,41,4.05,5.0,fr,3583,170,159900,1,2,Active Shallow Crust,0.0,89.99017,0.0,12/10/8541 +2.38414,46.06463,2305,5,23,10,8,14,4.05,15.0,fr,3584,46,159901,1,1,Active Shallow Crust,0.0,89.99017,0.0,05/23/2305 +2.38414,46.06463,8209,6,29,19,17,33,4.45,5.0,fr,3585,164,159948,1,1,Active Shallow Crust,0.0,89.99007,0.0,06/29/8209 +2.38414,46.06463,551,11,2,19,22,35,4.55,15.0,fr,3586,11,159970,1,1,Active Shallow Crust,128.894,89.98587,0.0,11/02/0551 +2.38414,46.06463,4043,2,18,1,15,12,4.65,5.0,fr,3587,80,159972,1,1,Active Shallow Crust,0.0,89.99014,0.0,02/18/4043 +2.38414,46.06463,2020,4,20,14,12,18,4.75,15.0,fr,3588,40,159985,1,1,Active Shallow Crust,0.0,89.99033,0.0,04/20/2020 +2.38414,46.06463,3813,3,2,17,32,42,4.95,15.0,fr,3589,76,160012,1,1,Active Shallow Crust,240.0118,58.00436,0.0,03/02/3813 +2.38414,46.06463,5350,7,21,21,56,14,5.15,15.0,fr,3590,106,160039,1,1,Active Shallow Crust,0.0,89.9899,-90.0,07/21/5350 +6.1994,50.28504,8573,9,12,21,5,48,3.65,15.0,fr,3591,171,160333,1,1,Active Shallow Crust,0.0,89.98852,0.0,09/12/8573 +6.1994,50.28504,163,5,10,22,13,45,3.65,5.0,fr,3592,3,160338,1,1,Active Shallow Crust,0.0,89.98838,-90.0,05/10/0163 +6.1994,50.28504,8439,6,12,11,24,40,3.85,5.0,fr,3593,168,160356,1,1,Active Shallow Crust,0.0,89.99088,0.0,06/12/8439 +6.1994,50.28504,9626,10,7,6,40,41,3.85,15.0,fr,3594,192,160357,1,1,Active Shallow Crust,0.0,89.99088,0.0,10/07/9626 +6.1994,50.28504,1533,12,2,11,37,32,3.85,5.0,fr,3595,30,160365,1,1,Active Shallow Crust,128.8945,89.99316,0.0,12/02/1533 +6.1994,50.28504,3128,12,25,2,53,16,4.05,27.5,fr,3596,62,160382,1,1,Active Shallow Crust,0.0,89.98913,0.0,12/25/3128 +6.1994,50.28504,6563,2,1,9,34,1,4.05,5.0,fr,3597,131,160383,1,1,Active Shallow Crust,240.0063,58.00608,0.0,02/01/6563 +6.1994,50.28504,982,3,2,22,7,5,4.15,27.5,fr,3598,19,160397,1,1,Active Shallow Crust,240.0098,57.99706,0.0,03/02/0982 +6.1994,50.28504,5937,3,23,8,32,9,4.25,5.0,fr,3599,118,160404,1,2,Active Shallow Crust,0.0,89.99136,0.0,03/23/5937 +6.1994,50.28504,2483,12,28,14,58,21,4.25,5.0,fr,3600,49,160404,1,2,Active Shallow Crust,0.0,89.99136,0.0,12/28/2483 +6.1994,50.28504,9446,12,21,6,37,48,4.35,5.0,fr,3601,188,160416,1,1,Active Shallow Crust,0.0,89.98974,0.0,12/21/9446 +4.59987,43.90985,408,9,17,3,55,42,3.55,5.0,fr,3602,8,160800,1,2,Active Shallow Crust,0.0,89.99274,0.0,09/17/0408 +4.59987,43.90985,3792,7,20,13,13,18,3.55,5.0,fr,3603,75,160800,1,2,Active Shallow Crust,0.0,89.99274,0.0,07/20/3792 +4.59987,43.90985,4100,8,8,23,56,40,3.55,5.0,fr,3604,81,160803,1,1,Active Shallow Crust,240.0123,57.99871,0.0,08/08/4100 +4.59987,43.90985,5477,11,21,17,44,30,3.65,5.0,fr,3605,109,160812,1,3,Active Shallow Crust,0.0,89.98705,0.0,11/21/5477 +4.59987,43.90985,6042,10,12,23,35,3,3.65,5.0,fr,3606,120,160812,1,3,Active Shallow Crust,0.0,89.98705,0.0,10/12/6042 +4.59987,43.90985,1108,11,2,11,42,13,3.65,5.0,fr,3607,22,160812,1,3,Active Shallow Crust,0.0,89.98705,0.0,11/02/1108 +4.59987,43.90985,2994,9,9,10,3,52,3.65,5.0,fr,3608,59,160815,1,1,Active Shallow Crust,240.0014,58.01191,0.0,09/09/2994 +4.59987,43.90985,4500,6,17,2,42,31,3.65,5.0,fr,3609,89,160821,1,1,Active Shallow Crust,128.9011,89.96347,0.0,06/17/4500 +4.59987,43.90985,2951,4,17,4,2,50,3.75,5.0,fr,3610,59,160824,1,1,Active Shallow Crust,0.0,89.98846,0.0,04/17/2951 +4.59987,43.90985,6911,12,10,2,16,24,3.75,15.0,fr,3611,138,160825,1,1,Active Shallow Crust,0.0,89.98846,0.0,12/10/6911 +4.59987,43.90985,9509,1,13,21,57,37,3.75,27.5,fr,3612,190,160826,1,1,Active Shallow Crust,0.0,89.98846,0.0,01/13/9509 +4.59987,43.90985,9935,8,5,5,16,57,3.85,5.0,fr,3613,198,160836,1,2,Active Shallow Crust,0.0,89.98972,0.0,08/05/9935 +4.59987,43.90985,5887,7,14,23,17,58,3.85,5.0,fr,3614,117,160836,1,2,Active Shallow Crust,0.0,89.98972,0.0,07/14/5887 +4.59987,43.90985,134,2,14,0,16,59,3.85,5.0,fr,3615,2,160845,1,1,Active Shallow Crust,128.8971,89.99229,0.0,02/14/0134 +4.59987,43.90985,5334,8,15,4,32,4,3.95,5.0,fr,3616,106,160848,1,1,Active Shallow Crust,0.0,89.99083,0.0,08/15/5334 +4.59987,43.90985,6388,12,25,20,53,8,3.95,15.0,fr,3617,127,160849,1,2,Active Shallow Crust,0.0,89.99083,0.0,12/25/6388 +4.59987,43.90985,1411,5,22,13,4,3,3.95,15.0,fr,3618,28,160849,1,2,Active Shallow Crust,0.0,89.99083,0.0,05/22/1411 +4.59987,43.90985,5684,7,31,8,36,51,3.95,27.5,fr,3619,113,160853,1,1,Active Shallow Crust,240.0197,58.00461,0.0,07/31/5684 +4.59987,43.90985,777,4,5,9,28,12,4.05,15.0,fr,3620,15,160861,1,1,Active Shallow Crust,0.0,89.99183,0.0,04/05/0777 +4.59987,43.90985,6464,5,22,19,27,50,4.25,5.0,fr,3621,129,160884,1,1,Active Shallow Crust,0.0,89.99026,0.0,05/22/6464 +4.59987,43.90985,6643,8,6,21,10,53,4.25,27.5,fr,3622,132,160895,1,1,Active Shallow Crust,128.8939,89.98134,0.0,08/06/6643 +4.59987,43.90985,1818,1,9,10,42,55,4.35,5.0,fr,3623,36,160896,1,1,Active Shallow Crust,0.0,89.99133,0.0,01/09/1818 +4.59987,43.90985,728,1,29,9,32,41,4.55,15.0,fr,3624,14,160930,1,1,Active Shallow Crust,128.8938,89.98602,0.0,01/29/0728 +-0.21348,49.35211,8713,4,9,22,34,56,3.55,5.0,fr,3625,174,161280,1,1,Active Shallow Crust,0.0,89.98994,0.0,04/09/8713 +-0.21348,49.35211,2670,3,21,2,22,7,3.65,5.0,fr,3626,53,161292,1,1,Active Shallow Crust,0.0,89.98994,0.0,03/21/2670 +-0.21348,49.35211,7950,10,4,15,44,25,3.65,15.0,fr,3627,158,161293,1,1,Active Shallow Crust,0.0,89.98994,0.0,10/04/7950 +-0.21348,49.35211,8010,12,1,21,21,56,3.65,5.0,fr,3628,160,161301,1,1,Active Shallow Crust,128.9001,89.9635,0.0,12/01/8010 +-0.21348,49.35211,5498,2,22,13,5,13,3.75,5.0,fr,3629,109,161304,1,1,Active Shallow Crust,0.0,89.99005,0.0,02/22/5498 +-0.21348,49.35211,5456,12,23,12,39,27,4.15,5.0,fr,3630,109,161352,1,1,Active Shallow Crust,0.0,89.99002,0.0,12/23/5456 +-0.21348,49.35211,9275,3,23,12,31,27,4.25,15.0,fr,3631,185,161365,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/23/9275 +-0.21348,49.35211,8957,11,15,2,4,16,4.25,5.0,fr,3632,179,161367,1,1,Active Shallow Crust,240.0082,57.99418,0.0,11/15/8957 +-0.21348,49.35211,1398,11,14,21,9,46,4.25,15.0,fr,3633,27,161368,1,1,Active Shallow Crust,240.0082,57.99418,0.0,11/14/1398 +-0.21348,49.35211,3895,11,1,16,17,43,4.35,5.0,fr,3634,77,161382,1,1,Active Shallow Crust,0.0,89.99,-90.0,11/01/3895 +-0.21348,49.35211,3502,1,6,8,3,22,4.95,5.0,fr,3635,70,161448,1,1,Active Shallow Crust,0.0,89.99001,0.0,01/06/3502 +-0.21348,49.35211,8692,1,8,21,50,31,6.05,15.0,fr,3636,173,161581,1,1,Active Shallow Crust,360.0,89.99001,0.0,01/08/8692 +-0.35496,51.31374,6429,6,3,5,17,52,3.55,5.0,fr,3637,128,161760,1,1,Active Shallow Crust,0.0,89.99015,0.0,06/03/6429 +-0.35496,51.31374,1462,5,17,19,26,52,3.55,15.0,fr,3638,29,161761,1,1,Active Shallow Crust,0.0,89.99015,0.0,05/17/1462 +-0.35496,51.31374,9071,8,29,13,55,13,3.55,5.0,fr,3639,181,161763,1,1,Active Shallow Crust,240.0127,57.99823,0.0,08/29/9071 +-0.35496,51.31374,81,2,23,20,57,9,3.75,5.0,fr,3640,1,161784,1,1,Active Shallow Crust,0.0,89.98999,0.0,02/23/0081 +5.71784,47.70749,8795,4,20,19,19,34,3.55,5.0,fr,3641,175,162240,1,2,Active Shallow Crust,0.0,89.99322,0.0,04/20/8795 +5.71784,47.70749,7185,8,28,21,52,2,3.55,5.0,fr,3642,143,162240,1,2,Active Shallow Crust,0.0,89.99322,0.0,08/28/7185 +5.71784,47.70749,2729,12,5,22,56,1,3.55,5.0,fr,3643,54,162243,1,1,Active Shallow Crust,240.0116,57.99886,0.0,12/05/2729 +5.71784,47.70749,1931,6,18,16,8,46,3.65,5.0,fr,3644,38,162252,1,1,Active Shallow Crust,0.0,89.98791,0.0,06/18/1931 +5.71784,47.70749,4446,1,7,13,37,17,3.65,15.0,fr,3645,88,162253,1,1,Active Shallow Crust,0.0,89.98791,0.0,01/07/4446 +5.71784,47.70749,6669,4,30,2,56,4,3.75,5.0,fr,3646,133,162264,1,2,Active Shallow Crust,0.0,89.98922,0.0,04/30/6669 +5.71784,47.70749,5617,1,17,1,16,30,3.75,5.0,fr,3647,112,162264,1,2,Active Shallow Crust,0.0,89.98922,0.0,01/17/5617 +5.71784,47.70749,7806,2,15,4,36,8,3.85,5.0,fr,3648,156,162276,1,1,Active Shallow Crust,0.0,89.99039,0.0,02/15/7806 +5.71784,47.70749,4968,5,20,23,38,4,3.95,5.0,fr,3649,99,162297,1,1,Active Shallow Crust,128.9009,89.99358,0.0,05/20/4968 +5.71784,47.70749,9575,8,24,4,6,15,4.05,15.0,fr,3650,191,162301,1,1,Active Shallow Crust,0.0,89.98855,0.0,08/24/9575 +5.71784,47.70749,5150,8,16,8,17,23,4.15,5.0,fr,3651,102,162312,1,1,Active Shallow Crust,0.0,89.9898,0.0,08/16/5150 +5.71784,47.70749,5942,11,13,16,59,50,4.25,5.0,fr,3652,118,162324,1,1,Active Shallow Crust,0.0,89.99091,0.0,11/13/5942 +5.71784,47.70749,2886,3,28,10,15,10,4.25,5.0,fr,3653,57,162327,1,1,Active Shallow Crust,240.0074,57.9944,0.0,03/28/2886 +5.71784,47.70749,8849,11,7,5,27,57,4.45,5.0,fr,3654,176,162348,1,1,Active Shallow Crust,0.0,89.99037,0.0,11/07/8849 +5.71784,47.70749,5725,4,15,2,8,15,4.75,27.5,fr,3655,114,162386,1,1,Active Shallow Crust,0.0,89.98977,0.0,04/15/5725 +5.71784,47.70749,2035,10,23,14,16,31,5.15,15.0,fr,3656,40,162433,1,1,Active Shallow Crust,0.0,89.99032,0.0,10/23/2035 +0.20887,46.04053,9542,11,23,17,56,52,3.55,5.0,fr,3657,190,162720,1,2,Active Shallow Crust,0.0,89.98994,0.0,11/23/9542 +0.20887,46.04053,5937,6,28,3,16,33,3.55,5.0,fr,3658,118,162720,1,2,Active Shallow Crust,0.0,89.98994,0.0,06/28/5937 +0.20887,46.04053,4006,11,5,18,46,4,3.55,15.0,fr,3659,80,162721,1,1,Active Shallow Crust,0.0,89.98994,0.0,11/05/4006 +0.20887,46.04053,6656,11,27,13,2,55,3.55,15.0,fr,3660,133,162724,1,2,Active Shallow Crust,240.0121,57.99813,0.0,11/27/6656 +0.20887,46.04053,8270,10,12,7,29,54,3.55,15.0,fr,3661,165,162724,1,2,Active Shallow Crust,240.0121,57.99813,0.0,10/12/8270 +0.20887,46.04053,728,3,28,22,31,43,3.55,5.0,fr,3662,14,162729,1,1,Active Shallow Crust,128.8963,89.99366,0.0,03/28/0728 +0.20887,46.04053,5596,2,10,18,46,52,3.65,5.0,fr,3663,111,162732,1,1,Active Shallow Crust,0.0,89.99006,0.0,02/10/5596 +0.20887,46.04053,8906,6,19,13,41,35,3.65,15.0,fr,3664,178,162739,1,1,Active Shallow Crust,0.0,89.98994,-90.0,06/19/8906 +0.20887,46.04053,720,11,10,2,0,46,3.75,5.0,fr,3665,14,162744,1,1,Active Shallow Crust,0.0,89.98992,0.0,11/10/0720 +0.20887,46.04053,2568,5,29,12,5,21,3.75,27.5,fr,3666,51,162746,1,1,Active Shallow Crust,0.0,89.98992,0.0,05/29/2568 +0.20887,46.04053,3311,10,7,22,37,12,3.95,15.0,fr,3667,66,162769,1,1,Active Shallow Crust,0.0,89.99006,0.0,10/07/3311 +0.20887,46.04053,4418,5,24,3,33,22,3.95,5.0,fr,3668,88,162774,1,1,Active Shallow Crust,0.0,89.98994,-90.0,05/24/4418 +0.20887,46.04053,1206,10,23,23,15,16,3.95,5.0,fr,3669,24,162777,1,1,Active Shallow Crust,128.9004,89.99372,0.0,10/23/1206 +0.20887,46.04053,373,5,22,0,59,34,4.15,5.0,fr,3670,7,162792,1,1,Active Shallow Crust,0.0,89.99002,0.0,05/22/0373 +0.20887,46.04053,5317,10,15,16,25,49,5.15,5.0,fr,3671,106,162912,1,1,Active Shallow Crust,360.0,89.99001,0.0,10/15/5317 +6.71391,50.7187,357,12,9,6,34,46,3.55,5.0,fr,3672,7,163200,1,2,Active Shallow Crust,0.0,89.98723,0.0,12/09/0357 +6.71391,50.7187,7380,5,29,8,38,48,3.55,5.0,fr,3673,147,163200,1,2,Active Shallow Crust,0.0,89.98723,0.0,05/29/7380 +6.71391,50.7187,5906,3,27,17,55,22,3.55,5.0,fr,3674,118,163203,1,1,Active Shallow Crust,240.0118,57.99909,0.0,03/27/5906 +6.71391,50.7187,6872,7,6,20,6,10,3.55,15.0,fr,3675,137,163207,1,1,Active Shallow Crust,0.0,89.98708,-90.0,07/06/6872 +6.71391,50.7187,1036,6,21,1,23,27,3.65,5.0,fr,3676,20,163212,1,2,Active Shallow Crust,0.0,89.98862,0.0,06/21/1036 +6.71391,50.7187,1026,4,11,11,35,17,3.65,5.0,fr,3677,20,163212,1,2,Active Shallow Crust,0.0,89.98862,0.0,04/11/1026 +6.71391,50.7187,9100,2,6,0,45,18,3.65,27.5,fr,3678,181,163214,1,1,Active Shallow Crust,0.0,89.98862,0.0,02/06/9100 +6.71391,50.7187,8116,12,26,10,56,57,3.65,27.5,fr,3679,162,163217,1,2,Active Shallow Crust,240.0013,58.01273,0.0,12/26/8116 +6.71391,50.7187,2524,9,20,15,16,16,3.65,27.5,fr,3680,50,163217,1,2,Active Shallow Crust,240.0013,58.01273,0.0,09/20/2524 +6.71391,50.7187,3311,1,29,22,5,21,3.75,15.0,fr,3681,66,163225,1,1,Active Shallow Crust,0.0,89.98986,0.0,01/29/3311 +6.71391,50.7187,3224,11,15,14,35,6,3.75,5.0,fr,3682,64,163230,1,1,Active Shallow Crust,0.0,89.98974,-90.0,11/15/3224 +6.71391,50.7187,7257,4,13,15,16,15,3.85,5.0,fr,3683,145,163236,1,1,Active Shallow Crust,0.0,89.99096,0.0,04/13/7257 +6.71391,50.7187,7167,1,6,13,40,26,3.85,15.0,fr,3684,143,163237,1,1,Active Shallow Crust,0.0,89.99096,0.0,01/06/7167 +6.71391,50.7187,8577,6,20,0,48,1,3.85,5.0,fr,3685,171,163245,1,1,Active Shallow Crust,128.895,89.99322,0.0,06/20/8577 +6.71391,50.7187,2892,4,21,6,3,19,3.85,15.0,fr,3686,57,163246,1,1,Active Shallow Crust,128.895,89.99322,0.0,04/21/2892 +6.71391,50.7187,6340,5,15,7,54,27,3.95,5.0,fr,3687,126,163248,1,1,Active Shallow Crust,0.0,89.99194,0.0,05/15/6340 +6.71391,50.7187,8628,5,29,15,18,12,3.95,15.0,fr,3688,172,163249,1,1,Active Shallow Crust,0.0,89.99194,0.0,05/29/8628 +6.71391,50.7187,3477,9,6,0,50,20,4.05,5.0,fr,3689,69,163263,1,1,Active Shallow Crust,240.0067,58.00631,0.0,09/06/3477 +6.71391,50.7187,4490,1,16,18,25,46,4.15,5.0,fr,3690,89,163272,1,1,Active Shallow Crust,0.0,89.9904,0.0,01/16/4490 +6.71391,50.7187,7707,2,1,4,10,41,4.25,5.0,fr,3691,154,163284,1,1,Active Shallow Crust,0.0,89.98859,0.0,02/01/7707 +6.71391,50.7187,4715,6,30,22,42,30,4.35,5.0,fr,3692,94,163296,1,3,Active Shallow Crust,0.0,89.98983,0.0,06/30/4715 +6.71391,50.7187,5314,5,6,20,31,3,4.35,5.0,fr,3693,106,163296,1,3,Active Shallow Crust,0.0,89.98983,0.0,05/06/5314 +6.71391,50.7187,9227,11,16,14,24,58,4.35,5.0,fr,3694,184,163296,1,3,Active Shallow Crust,0.0,89.98983,0.0,11/16/9227 +6.71391,50.7187,266,7,22,2,31,29,4.35,5.0,fr,3695,5,163299,1,1,Active Shallow Crust,240.0095,57.9959,0.0,07/22/0266 +6.71391,50.7187,6666,3,1,23,57,42,4.45,5.0,fr,3696,133,163308,1,1,Active Shallow Crust,0.0,89.99094,0.0,03/01/6666 +6.71391,50.7187,6239,3,7,21,58,8,4.55,5.0,fr,3697,124,163320,1,1,Active Shallow Crust,0.0,89.98991,0.0,03/07/6239 +6.71391,50.7187,635,10,28,0,33,36,4.85,15.0,fr,3698,12,163357,1,1,Active Shallow Crust,0.0,89.98999,0.0,10/28/0635 +6.71391,50.7187,4333,2,10,6,23,35,4.85,15.0,fr,3699,86,163360,1,1,Active Shallow Crust,240.0189,58.00277,0.0,02/10/4333 +6.71391,50.7187,722,3,21,8,47,24,5.05,27.5,fr,3700,14,163382,1,1,Active Shallow Crust,0.0,89.98978,0.0,03/21/0722 +1.64336,41.86058,3394,10,8,0,59,25,3.55,27.5,fr,3701,67,163682,1,1,Active Shallow Crust,0.0,89.99062,0.0,10/08/3394 +1.64336,41.86058,805,1,30,22,37,12,3.65,5.0,fr,3702,16,163692,1,1,Active Shallow Crust,0.0,89.98996,0.0,01/30/0805 +1.64336,41.86058,3015,5,21,1,39,43,3.95,5.0,fr,3703,60,163728,1,1,Active Shallow Crust,0.0,89.99052,0.0,05/21/3015 +1.64336,41.86058,1020,12,26,16,46,43,4.35,5.0,fr,3704,20,163776,1,1,Active Shallow Crust,0.0,89.99028,0.0,12/26/1020 +-1.32312,45.36853,4997,5,5,16,39,55,3.65,15.0,fr,3705,99,164173,1,1,Active Shallow Crust,0.0,89.99053,0.0,05/05/4997 +-1.32312,45.36853,7628,12,18,2,42,41,4.05,5.0,fr,3706,152,164229,1,1,Active Shallow Crust,128.8907,89.99353,0.0,12/18/7628 +-0.87808,41.56597,9791,11,4,16,32,43,4.75,27.5,fr,3707,195,164786,1,1,Active Shallow Crust,0.0,89.99005,0.0,11/04/9791 +-6.33979,48.54787,3339,7,20,9,36,56,3.65,5.0,fr,3708,66,165132,1,1,Active Shallow Crust,0.0,89.9881,0.0,07/20/3339 +1.65532,49.31665,7477,4,16,1,39,4,3.95,5.0,fr,3709,149,165648,1,1,Active Shallow Crust,0.0,89.98963,0.0,04/16/7477 +1.65532,49.31665,4200,3,10,6,48,56,4.05,5.0,fr,3710,83,165660,1,1,Active Shallow Crust,0.0,89.98984,0.0,03/10/4200 +1.65532,49.31665,2518,1,26,23,52,14,4.25,5.0,fr,3711,50,165690,1,1,Active Shallow Crust,0.0,89.99035,-90.0,01/26/2518 +2.26207,50.64021,9205,12,16,2,28,2,3.55,15.0,fr,3712,184,166081,1,1,Active Shallow Crust,0.0,89.99041,0.0,12/16/9205 +2.26207,50.64021,8702,8,8,22,53,51,3.65,5.0,fr,3713,174,166092,1,1,Active Shallow Crust,0.0,89.9886,0.0,08/08/8702 +2.26207,50.64021,6852,3,19,11,19,23,3.85,15.0,fr,3714,137,166117,1,2,Active Shallow Crust,0.0,89.99094,0.0,03/19/6852 +2.26207,50.64021,1782,2,1,6,22,46,3.85,15.0,fr,3715,35,166117,1,2,Active Shallow Crust,0.0,89.99094,0.0,02/01/1782 +2.26207,50.64021,3952,11,23,9,42,19,3.95,5.0,fr,3716,79,166128,1,1,Active Shallow Crust,0.0,89.98991,0.0,11/23/3952 +2.26207,50.64021,7779,4,9,3,28,47,3.95,15.0,fr,3717,155,166129,1,1,Active Shallow Crust,0.0,89.98991,0.0,04/09/7779 +2.26207,50.64021,470,3,6,0,36,51,4.25,5.0,fr,3718,9,166164,1,1,Active Shallow Crust,0.0,89.99,0.0,03/06/0470 +-2.11106,42.11393,1796,1,13,13,30,9,3.55,5.0,fr,3719,35,166560,1,1,Active Shallow Crust,0.0,89.98878,0.0,01/13/1796 +-2.11106,42.11393,4430,3,13,3,49,58,3.55,27.5,fr,3720,88,166568,1,1,Active Shallow Crust,0.0,89.98865,-90.0,03/13/4430 +-2.11106,42.11393,1149,12,18,11,34,26,3.75,5.0,fr,3721,22,166584,1,1,Active Shallow Crust,0.0,89.99109,0.0,12/18/1149 +-2.11106,42.11393,7858,2,14,0,36,48,4.05,27.5,fr,3722,157,166628,1,1,Active Shallow Crust,0.0,89.98936,-90.0,02/14/7858 +-2.11106,42.11393,5643,8,2,13,26,51,4.15,5.0,fr,3723,112,166632,1,1,Active Shallow Crust,0.0,89.99062,0.0,08/02/5643 +-2.11106,42.11393,4504,6,16,3,29,17,4.55,5.0,fr,3724,90,166680,1,1,Active Shallow Crust,0.0,89.99054,0.0,06/16/4504 +-2.11106,42.11393,2981,9,17,20,17,48,4.85,5.0,fr,3725,59,166716,1,1,Active Shallow Crust,0.0,89.98995,0.0,09/17/2981 +-4.32016,48.35488,5584,8,22,6,8,59,3.55,5.0,fr,3726,111,167040,1,3,Active Shallow Crust,0.0,89.9933,0.0,08/22/5584 +-4.32016,48.35488,1175,10,16,8,56,53,3.55,5.0,fr,3727,23,167040,1,3,Active Shallow Crust,0.0,89.9933,0.0,10/16/1175 +-4.32016,48.35488,9083,3,14,13,4,58,3.55,5.0,fr,3728,181,167040,1,3,Active Shallow Crust,0.0,89.9933,0.0,03/14/9083 +-4.32016,48.35488,1017,5,13,23,17,5,3.55,15.0,fr,3729,20,167041,1,1,Active Shallow Crust,0.0,89.9933,0.0,05/13/1017 +-4.32016,48.35488,1905,7,16,17,0,19,3.55,5.0,fr,3730,38,167043,1,1,Active Shallow Crust,240.0119,57.99824,0.0,07/16/1905 +-4.32016,48.35488,4767,5,24,4,51,35,3.55,5.0,fr,3731,95,167049,1,1,Active Shallow Crust,128.8967,89.9933,0.0,05/24/4767 +-4.32016,48.35488,178,8,31,19,19,5,3.65,5.0,fr,3732,3,167052,1,3,Active Shallow Crust,0.0,89.98805,0.0,08/31/0178 +-4.32016,48.35488,1538,12,1,16,51,2,3.65,5.0,fr,3733,30,167052,1,3,Active Shallow Crust,0.0,89.98805,0.0,12/01/1538 +-4.32016,48.35488,6152,5,28,5,13,35,3.65,5.0,fr,3734,123,167052,1,3,Active Shallow Crust,0.0,89.98805,0.0,05/28/6152 +-4.32016,48.35488,9543,1,17,4,37,15,3.65,5.0,fr,3735,190,167055,1,1,Active Shallow Crust,240.0007,58.01276,0.0,01/17/9543 +-4.32016,48.35488,3488,5,1,9,47,18,3.75,5.0,fr,3736,69,167064,1,1,Active Shallow Crust,0.0,89.98936,0.0,05/01/3488 +-4.32016,48.35488,3465,4,10,22,20,48,3.75,15.0,fr,3737,69,167065,1,1,Active Shallow Crust,0.0,89.98936,0.0,04/10/3465 +-4.32016,48.35488,1752,6,5,16,6,18,3.85,15.0,fr,3738,35,167077,1,1,Active Shallow Crust,0.0,89.99051,0.0,06/05/1752 +-4.32016,48.35488,7361,3,7,20,14,16,3.95,15.0,fr,3739,147,167089,1,1,Active Shallow Crust,0.0,89.99155,0.0,03/07/7361 +-4.32016,48.35488,2498,11,4,18,4,17,4.05,15.0,fr,3740,49,167101,1,1,Active Shallow Crust,0.0,89.98869,0.0,11/04/2498 +-4.32016,48.35488,8384,5,1,3,40,24,4.35,5.0,fr,3741,167,167136,1,1,Active Shallow Crust,0.0,89.98933,0.0,05/01/8384 +3.41492,45.18594,7226,2,1,13,47,58,3.55,15.0,fr,3742,144,167521,1,1,Active Shallow Crust,0.0,89.98934,0.0,02/01/7226 +3.41492,45.18594,7742,11,10,19,5,35,3.55,27.5,fr,3743,154,167522,1,1,Active Shallow Crust,0.0,89.98934,0.0,11/10/7742 +3.41492,45.18594,6296,6,30,13,47,23,3.55,15.0,fr,3744,125,167527,1,1,Active Shallow Crust,0.0,89.98921,-90.0,06/30/6296 +3.41492,45.18594,8309,12,3,21,20,47,3.65,5.0,fr,3745,166,167532,1,1,Active Shallow Crust,0.0,89.9905,0.0,12/03/8309 +3.41492,45.18594,4898,6,5,3,0,26,3.65,5.0,fr,3746,97,167541,1,1,Active Shallow Crust,128.9007,89.9635,0.0,06/05/4898 +3.41492,45.18594,6885,5,13,22,37,48,3.75,5.0,fr,3747,137,167544,1,2,Active Shallow Crust,0.0,89.98871,0.0,05/13/6885 +3.41492,45.18594,6190,6,21,2,4,54,3.75,5.0,fr,3748,123,167544,1,2,Active Shallow Crust,0.0,89.98871,0.0,06/21/6190 +3.41492,45.18594,2135,11,25,23,9,29,3.75,27.5,fr,3749,42,167546,1,1,Active Shallow Crust,0.0,89.98871,0.0,11/25/2135 +3.41492,45.18594,130,7,9,1,47,40,3.85,5.0,fr,3750,2,167556,1,1,Active Shallow Crust,0.0,89.98994,0.0,07/09/0130 +3.41492,45.18594,3439,12,25,17,2,9,4.05,5.0,fr,3751,68,167580,1,2,Active Shallow Crust,0.0,89.99001,0.0,12/25/3439 +3.41492,45.18594,3222,5,8,16,59,30,4.05,5.0,fr,3752,64,167580,1,2,Active Shallow Crust,0.0,89.99001,0.0,05/08/3222 +3.41492,45.18594,8106,1,30,15,35,36,4.05,5.0,fr,3753,162,167586,1,1,Active Shallow Crust,0.0,89.98989,-90.0,01/30/8106 +3.41492,45.18594,2276,8,11,13,41,32,4.05,5.0,fr,3754,45,167589,1,1,Active Shallow Crust,128.8902,89.994,0.0,08/11/2276 +3.41492,45.18594,1991,4,25,15,52,56,4.15,5.0,fr,3755,39,167592,1,1,Active Shallow Crust,0.0,89.98931,0.0,04/25/1991 +3.41492,45.18594,1900,9,24,15,8,39,4.65,5.0,fr,3756,37,167655,1,1,Active Shallow Crust,240.0104,57.99431,0.0,09/24/1900 +3.41492,45.18594,3506,10,29,5,26,50,5.25,5.0,fr,3757,70,167724,1,1,Active Shallow Crust,0.0,89.98996,0.0,10/29/3506 +4.81338,41.93304,9847,12,14,5,8,41,3.75,5.0,fr,3758,196,168024,1,1,Active Shallow Crust,0.0,89.98808,0.0,12/14/9847 +4.81338,41.93304,5282,6,8,5,21,25,3.75,5.0,fr,3759,105,168027,1,1,Active Shallow Crust,240.0067,58.01789,0.0,06/08/5282 +7.57582,48.94924,6378,1,24,13,42,27,3.55,5.0,fr,3760,127,168480,1,1,Active Shallow Crust,0.0,89.98676,0.0,01/24/6378 +7.57582,48.94924,205,3,24,0,37,32,3.65,15.0,fr,3761,4,168493,1,1,Active Shallow Crust,0.0,89.9882,0.0,03/24/0205 +7.57582,48.94924,4370,3,21,19,15,15,3.95,5.0,fr,3762,87,168528,1,1,Active Shallow Crust,0.0,89.99165,0.0,03/21/4370 +7.57582,48.94924,9756,10,10,0,31,32,4.35,5.0,fr,3763,195,168582,1,1,Active Shallow Crust,0.0,89.98933,-90.0,10/10/9756 +5.26461,43.06775,5485,12,3,17,56,15,3.55,5.0,fr,3764,109,169440,1,1,Active Shallow Crust,0.0,89.99263,0.0,12/03/5485 +5.26461,43.06775,3002,12,4,7,26,45,3.65,5.0,fr,3765,60,169452,1,1,Active Shallow Crust,0.0,89.98687,0.0,12/04/3002 +7.17815,50.77367,5487,4,25,7,7,5,3.55,5.0,fr,3766,109,169920,1,1,Active Shallow Crust,0.0,89.98724,0.0,04/25/5487 +7.17815,50.77367,5354,6,23,16,22,44,3.55,5.0,fr,3767,107,169926,1,1,Active Shallow Crust,0.0,89.9871,-90.0,06/23/5354 +7.17815,50.77367,3970,7,12,0,21,50,3.65,5.0,fr,3768,79,169932,1,1,Active Shallow Crust,0.0,89.98863,0.0,07/12/3970 +7.17815,50.77367,6442,10,9,13,33,0,3.65,15.0,fr,3769,128,169933,1,1,Active Shallow Crust,0.0,89.98863,0.0,10/09/6442 +7.17815,50.77367,2342,4,11,10,55,36,3.75,5.0,fr,3770,46,169944,1,1,Active Shallow Crust,0.0,89.98987,0.0,04/11/2342 +7.17815,50.77367,5194,6,11,11,14,31,3.85,5.0,fr,3771,103,169956,1,2,Active Shallow Crust,0.0,89.99097,0.0,06/11/5194 +7.17815,50.77367,3939,11,16,12,41,41,3.85,5.0,fr,3772,78,169956,1,2,Active Shallow Crust,0.0,89.99097,0.0,11/16/3939 +7.17815,50.77367,1143,1,13,12,57,34,3.85,15.0,fr,3773,22,169960,1,1,Active Shallow Crust,240.0117,57.99718,0.0,01/13/1143 +7.17815,50.77367,8840,8,27,2,36,32,3.85,5.0,fr,3774,176,169965,1,1,Active Shallow Crust,128.8952,89.99548,0.0,08/27/8840 +7.17815,50.77367,4528,7,30,22,47,30,3.95,5.0,fr,3775,90,169968,1,2,Active Shallow Crust,0.0,89.99195,0.0,07/30/4528 +7.17815,50.77367,547,11,14,21,5,31,3.95,5.0,fr,3776,10,169968,1,2,Active Shallow Crust,0.0,89.99195,0.0,11/14/0547 +7.17815,50.77367,2339,11,7,2,2,56,3.95,5.0,fr,3777,46,169977,1,1,Active Shallow Crust,128.8992,89.99397,0.0,11/07/2339 +7.17815,50.77367,8063,9,12,23,16,31,4.05,15.0,fr,3778,161,169984,1,1,Active Shallow Crust,240.0063,58.00624,0.0,09/12/8063 +7.17815,50.77367,9840,3,24,13,44,37,4.15,5.0,fr,3779,196,169992,1,1,Active Shallow Crust,0.0,89.99041,0.0,03/24/9840 +7.17815,50.77367,7614,2,28,7,47,18,4.15,27.5,fr,3780,152,169994,1,1,Active Shallow Crust,0.0,89.99041,0.0,02/28/7614 +7.17815,50.77367,8257,1,19,12,5,12,5.35,5.0,fr,3781,165,170142,1,1,Active Shallow Crust,0.0,89.99025,-90.0,01/19/8257 +6.14764,49.90625,441,3,8,21,15,49,3.55,5.0,fr,3782,8,170400,1,1,Active Shallow Crust,0.0,89.98701,0.0,03/08/0441 +6.14764,49.90625,7200,5,4,0,26,20,3.75,5.0,fr,3783,143,170424,1,1,Active Shallow Crust,0.0,89.98969,0.0,05/04/7200 +6.14764,49.90625,7383,11,22,11,12,35,4.75,5.0,fr,3784,147,170544,1,1,Active Shallow Crust,0.0,89.99021,0.0,11/22/7383 +4.34863,44.13943,7050,2,17,23,15,0,3.65,15.0,fr,3785,140,170893,1,1,Active Shallow Crust,0.0,89.9871,0.0,02/17/7050 +4.34863,44.13943,4124,12,2,4,35,19,3.75,5.0,fr,3786,82,170904,1,1,Active Shallow Crust,0.0,89.9885,0.0,12/02/4124 +4.34863,44.13943,6196,3,23,8,36,42,3.95,15.0,fr,3787,123,170932,1,1,Active Shallow Crust,240.0197,58.00433,0.0,03/23/6196 +4.34863,44.13943,6050,4,22,1,30,21,3.95,5.0,fr,3788,120,170937,1,1,Active Shallow Crust,128.9008,89.99315,0.0,04/22/6050 +4.34863,44.13943,7660,7,13,13,3,53,3.95,27.5,fr,3789,153,170939,1,1,Active Shallow Crust,128.9008,89.99315,0.0,07/13/7660 +4.34863,44.13943,1605,3,26,21,20,0,4.05,5.0,fr,3790,32,170940,1,1,Active Shallow Crust,0.0,89.99186,0.0,03/26/1605 +4.34863,44.13943,2071,9,28,3,0,24,4.35,5.0,fr,3791,41,170979,1,1,Active Shallow Crust,240.008,57.99593,0.0,09/28/2071 +4.34863,44.13943,3821,8,21,22,14,18,4.65,5.0,fr,3792,76,171012,1,1,Active Shallow Crust,0.0,89.9898,0.0,08/21/3821 +4.34863,44.13943,1158,4,7,21,45,59,4.75,15.0,fr,3793,23,171025,1,1,Active Shallow Crust,0.0,89.98909,0.0,04/07/1158 +4.34863,44.13943,4696,1,18,22,19,52,4.95,5.0,fr,3794,93,171048,1,1,Active Shallow Crust,0.0,89.98989,0.0,01/18/4696 +4.34863,44.13943,4828,1,10,20,3,59,6.25,27.5,fr,3795,96,171206,1,1,Active Shallow Crust,0.0,89.98997,0.0,01/10/4828 +7.03773,44.08808,2173,1,4,8,27,39,3.55,5.0,fr,3796,43,171360,1,1,Active Shallow Crust,0.0,89.99276,0.0,01/04/2173 +7.03773,44.08808,8187,1,21,16,41,9,3.55,15.0,fr,3797,163,171361,1,1,Active Shallow Crust,0.0,89.99276,0.0,01/21/8187 +7.03773,44.08808,3603,8,8,11,5,59,3.65,5.0,fr,3798,72,171372,1,1,Active Shallow Crust,0.0,89.98709,0.0,08/08/3603 +7.03773,44.08808,38,3,22,6,50,47,3.65,5.0,fr,3799,0,171375,1,1,Active Shallow Crust,240.0012,58.01206,0.0,03/22/0038 +7.03773,44.08808,8031,6,22,7,50,47,3.65,15.0,fr,3800,160,171376,1,1,Active Shallow Crust,240.0012,58.01206,0.0,06/22/8031 +7.03773,44.08808,7041,3,21,0,36,53,3.65,5.0,fr,3801,140,171381,1,2,Active Shallow Crust,128.8999,89.96348,0.0,03/21/7041 +7.03773,44.08808,2862,11,26,15,2,44,3.65,5.0,fr,3802,57,171381,1,2,Active Shallow Crust,128.8999,89.96348,0.0,11/26/2862 +7.03773,44.08808,8426,5,13,7,45,6,3.75,5.0,fr,3803,168,171384,1,1,Active Shallow Crust,0.0,89.98849,0.0,05/13/8426 +7.03773,44.08808,6601,7,31,12,15,17,3.75,5.0,fr,3804,132,171390,1,1,Active Shallow Crust,0.0,89.98836,-90.0,07/31/6601 +7.03773,44.08808,5177,2,14,18,22,47,3.85,5.0,fr,3805,103,171396,1,1,Active Shallow Crust,0.0,89.98975,0.0,02/14/5177 +7.03773,44.08808,9222,6,21,12,27,55,3.85,15.0,fr,3806,184,171397,1,1,Active Shallow Crust,0.0,89.98975,0.0,06/21/9222 +7.03773,44.08808,7833,6,17,9,2,58,3.85,5.0,fr,3807,156,171402,1,1,Active Shallow Crust,0.0,89.98962,-90.0,06/17/7833 +7.03773,44.08808,1142,11,12,11,44,40,3.95,5.0,fr,3808,22,171408,1,2,Active Shallow Crust,0.0,89.99086,0.0,11/12/1142 +7.03773,44.08808,5841,3,30,21,31,13,3.95,5.0,fr,3809,116,171408,1,2,Active Shallow Crust,0.0,89.99086,0.0,03/30/5841 +7.03773,44.08808,3089,6,4,6,35,9,3.95,15.0,fr,3810,61,171409,1,2,Active Shallow Crust,0.0,89.99086,0.0,06/04/3089 +7.03773,44.08808,3597,10,9,12,13,49,3.95,15.0,fr,3811,71,171409,1,2,Active Shallow Crust,0.0,89.99086,0.0,10/09/3597 +7.03773,44.08808,6477,10,15,20,1,17,4.05,15.0,fr,3812,129,171421,1,1,Active Shallow Crust,0.0,89.99185,0.0,10/15/6477 +7.03773,44.08808,6254,5,15,7,16,29,4.25,5.0,fr,3813,125,171444,1,2,Active Shallow Crust,0.0,89.9903,0.0,05/15/6254 +7.03773,44.08808,1933,12,18,23,34,7,4.25,5.0,fr,3814,38,171444,1,2,Active Shallow Crust,0.0,89.9903,0.0,12/18/1933 +7.03773,44.08808,1885,2,27,5,35,48,4.25,5.0,fr,3815,37,171447,1,1,Active Shallow Crust,240.0069,57.99405,0.0,02/27/1885 +7.03773,44.08808,3942,9,6,21,40,55,4.25,27.5,fr,3816,78,171452,1,1,Active Shallow Crust,0.0,89.99018,-90.0,09/06/3942 +7.03773,44.08808,6793,8,2,8,24,36,4.35,5.0,fr,3817,135,171465,1,1,Active Shallow Crust,128.8978,89.98294,0.0,08/02/6793 +7.03773,44.08808,2057,3,9,19,36,57,4.45,15.0,fr,3818,41,171478,1,1,Active Shallow Crust,128.8922,89.99358,0.0,03/09/2057 +7.03773,44.08808,9153,8,5,12,39,58,4.75,5.0,fr,3819,183,171510,1,1,Active Shallow Crust,0.0,89.9908,-90.0,08/05/9153 +7.03773,44.08808,3336,9,25,18,57,52,4.85,5.0,fr,3820,66,171519,1,1,Active Shallow Crust,240.0165,58.00208,0.0,09/25/3336 +7.03773,44.08808,9218,3,12,23,36,34,4.95,5.0,fr,3821,184,171528,1,1,Active Shallow Crust,0.0,89.98988,0.0,03/12/9218 +7.03773,44.08808,6698,3,29,8,30,15,4.95,5.0,fr,3822,133,171537,1,1,Active Shallow Crust,128.8909,89.98965,0.0,03/29/6698 +5.19289,48.77988,7425,2,26,19,17,48,3.65,15.0,fr,3823,148,171856,1,1,Active Shallow Crust,240.0019,58.01265,0.0,02/26/7425 +5.40924,47.53904,9444,8,5,17,16,2,3.55,5.0,fr,3824,188,172320,1,2,Active Shallow Crust,0.0,89.99319,0.0,08/05/9444 +5.40924,47.53904,4406,10,12,21,56,30,3.55,5.0,fr,3825,88,172320,1,2,Active Shallow Crust,0.0,89.99319,0.0,10/12/4406 +5.40924,47.53904,7689,1,25,17,54,22,3.65,15.0,fr,3826,153,172333,1,1,Active Shallow Crust,0.0,89.98787,0.0,01/25/7689 +5.40924,47.53904,3976,8,15,20,45,35,3.65,5.0,fr,3827,79,172338,1,1,Active Shallow Crust,0.0,89.98772,-90.0,08/15/3976 +5.40924,47.53904,7487,7,2,19,47,51,3.75,5.0,fr,3828,149,172344,1,1,Active Shallow Crust,0.0,89.98918,0.0,07/02/7487 +5.40924,47.53904,2302,7,11,10,58,47,3.75,27.5,fr,3829,46,172346,1,1,Active Shallow Crust,0.0,89.98918,0.0,07/11/2302 +5.40924,47.53904,525,3,23,7,6,21,3.95,15.0,fr,3830,10,172369,1,1,Active Shallow Crust,0.0,89.99141,0.0,03/23/0525 +5.40924,47.53904,187,1,24,1,40,45,4.25,5.0,fr,3831,3,172404,1,1,Active Shallow Crust,0.0,89.99088,0.0,01/24/0187 +5.40924,47.53904,8313,4,19,22,38,32,4.25,27.5,fr,3832,166,172415,1,1,Active Shallow Crust,128.8934,89.98099,0.0,04/19/8313 +-1.92492,46.94777,1545,9,17,22,21,37,3.55,15.0,fr,3833,30,172801,1,1,Active Shallow Crust,0.0,89.98968,0.0,09/17/1545 +-1.92492,46.94777,616,5,18,16,20,28,3.55,27.5,fr,3834,12,172802,1,1,Active Shallow Crust,0.0,89.98968,0.0,05/18/0616 +-1.92492,46.94777,1051,1,31,9,44,8,3.55,5.0,fr,3835,21,172806,1,1,Active Shallow Crust,0.0,89.98956,-90.0,01/31/1051 +-1.92492,46.94777,697,5,31,14,32,4,3.55,5.0,fr,3836,13,172809,1,1,Active Shallow Crust,128.8961,89.99398,0.0,05/31/0697 +-1.92492,46.94777,4069,8,10,23,40,19,3.65,5.0,fr,3837,81,172812,1,3,Active Shallow Crust,0.0,89.98927,0.0,08/10/4069 +-1.92492,46.94777,5024,8,5,0,17,59,3.65,5.0,fr,3838,100,172812,1,3,Active Shallow Crust,0.0,89.98927,0.0,08/05/5024 +-1.92492,46.94777,9163,5,31,1,56,43,3.65,5.0,fr,3839,183,172812,1,3,Active Shallow Crust,0.0,89.98927,0.0,05/31/9163 +-1.92492,46.94777,1528,12,30,6,30,46,3.65,5.0,fr,3840,30,172818,1,1,Active Shallow Crust,0.0,89.99069,-90.0,12/30/1528 +-1.92492,46.94777,4418,9,25,4,56,17,3.65,5.0,fr,3841,88,172821,1,2,Active Shallow Crust,128.9004,89.96339,0.0,09/25/4418 +-1.92492,46.94777,8589,1,21,12,7,27,3.65,5.0,fr,3842,171,172821,1,2,Active Shallow Crust,128.9004,89.96339,0.0,01/21/8589 +-1.92492,46.94777,7323,4,17,4,52,7,3.75,5.0,fr,3843,146,172824,1,1,Active Shallow Crust,0.0,89.99043,0.0,04/17/7323 +-1.92492,46.94777,3792,3,28,20,6,58,3.85,5.0,fr,3844,75,172836,1,1,Active Shallow Crust,0.0,89.99025,0.0,03/28/3792 +-1.92492,46.94777,2224,2,1,10,5,32,3.85,5.0,fr,3845,44,172842,1,1,Active Shallow Crust,0.0,89.99014,-90.0,02/01/2224 +-1.92492,46.94777,2652,8,13,9,23,52,3.85,27.5,fr,3846,53,172844,1,1,Active Shallow Crust,0.0,89.99014,-90.0,08/13/2652 +-1.92492,46.94777,8067,7,2,11,6,21,3.95,15.0,fr,3847,161,172849,1,1,Active Shallow Crust,0.0,89.99023,0.0,07/02/8067 +-1.92492,46.94777,9369,9,17,1,39,19,3.95,5.0,fr,3848,187,172857,1,1,Active Shallow Crust,128.9003,89.99348,0.0,09/17/9369 +-1.92492,46.94777,1322,2,15,11,36,53,4.05,5.0,fr,3849,26,172860,1,1,Active Shallow Crust,0.0,89.99032,0.0,02/15/1322 +-1.92492,46.94777,5746,4,8,6,28,32,4.15,5.0,fr,3850,114,172875,1,1,Active Shallow Crust,240.0085,57.99737,0.0,04/08/5746 +-1.92492,46.94777,2485,6,2,18,22,57,4.35,5.0,fr,3851,49,172896,1,1,Active Shallow Crust,0.0,89.98972,0.0,06/02/2485 +-1.92492,46.94777,1583,11,28,18,45,35,4.45,15.0,fr,3852,31,172909,1,1,Active Shallow Crust,0.0,89.99023,0.0,11/28/1583 +-1.92492,46.94777,6345,3,27,1,10,8,4.45,27.5,fr,3853,126,172916,1,1,Active Shallow Crust,0.0,89.99011,-90.0,03/27/6345 +-1.92492,46.94777,23,8,8,12,25,20,4.65,15.0,fr,3854,0,172933,1,1,Active Shallow Crust,0.0,89.98981,0.0,08/08/0023 +-1.92492,46.94777,5754,3,27,4,39,31,4.75,15.0,fr,3855,115,172954,1,1,Active Shallow Crust,128.8885,89.98809,0.0,03/27/5754 +-1.92492,46.94777,4103,12,5,15,57,27,4.95,5.0,fr,3856,82,172968,1,1,Active Shallow Crust,0.0,89.99004,0.0,12/05/4103 +6.39732,46.24706,6432,2,17,18,8,14,3.55,5.0,fr,3857,128,173280,1,3,Active Shallow Crust,0.0,89.99303,0.0,02/17/6432 +6.39732,46.24706,6541,3,4,1,0,26,3.55,5.0,fr,3858,130,173280,1,3,Active Shallow Crust,0.0,89.99303,0.0,03/04/6541 +6.39732,46.24706,4140,11,12,11,59,45,3.55,5.0,fr,3859,82,173280,1,3,Active Shallow Crust,0.0,89.99303,0.0,11/12/4140 +6.39732,46.24706,9256,6,18,19,28,15,3.55,15.0,fr,3860,185,173281,1,2,Active Shallow Crust,0.0,89.99303,0.0,06/18/9256 +6.39732,46.24706,2619,2,6,0,41,43,3.55,15.0,fr,3861,52,173281,1,2,Active Shallow Crust,0.0,89.99303,0.0,02/06/2619 +6.39732,46.24706,4102,8,31,8,27,30,3.55,27.5,fr,3862,82,173282,1,1,Active Shallow Crust,0.0,89.99303,0.0,08/31/4102 +6.39732,46.24706,1734,1,5,22,34,32,3.55,5.0,fr,3863,34,173283,1,1,Active Shallow Crust,240.0116,57.99803,0.0,01/05/1734 +6.39732,46.24706,6467,7,28,1,18,57,3.65,15.0,fr,3864,129,173302,1,1,Active Shallow Crust,128.8994,89.96352,0.0,07/28/6467 +6.39732,46.24706,762,2,25,1,14,27,3.75,5.0,fr,3865,15,173304,1,2,Active Shallow Crust,0.0,89.98892,0.0,02/25/0762 +6.39732,46.24706,5163,10,28,20,54,22,3.75,5.0,fr,3866,103,173304,1,2,Active Shallow Crust,0.0,89.98892,0.0,10/28/5163 +6.39732,46.24706,5803,12,19,18,30,55,3.75,5.0,fr,3867,116,173307,1,1,Active Shallow Crust,240.0082,58.01778,0.0,12/19/5803 +6.39732,46.24706,8228,6,5,13,14,39,3.75,15.0,fr,3868,164,173308,1,1,Active Shallow Crust,240.0082,58.01778,0.0,06/05/8228 +6.39732,46.24706,9699,12,10,16,38,21,3.75,5.0,fr,3869,193,173310,1,1,Active Shallow Crust,0.0,89.98879,-90.0,12/10/9699 +6.39732,46.24706,738,2,23,23,45,50,3.95,5.0,fr,3870,14,173328,1,1,Active Shallow Crust,0.0,89.9912,0.0,02/23/0738 +6.39732,46.24706,4668,2,25,4,39,57,4.15,27.5,fr,3871,93,173357,1,1,Active Shallow Crust,240.0086,57.9971,0.0,02/25/4668 +6.39732,46.24706,2800,10,19,20,52,10,4.15,5.0,fr,3872,55,173361,1,1,Active Shallow Crust,128.897,89.99476,0.0,10/19/2800 +6.39732,46.24706,4112,8,4,21,47,22,4.35,15.0,fr,3873,82,173380,1,1,Active Shallow Crust,240.0086,57.99576,0.0,08/04/4112 +6.39732,46.24706,5175,12,13,7,22,57,4.65,15.0,fr,3874,103,173422,1,1,Active Shallow Crust,128.8913,89.9872,0.0,12/13/5175 +6.39732,46.24706,1867,2,13,19,25,22,4.85,5.0,fr,3875,37,173436,1,1,Active Shallow Crust,0.0,89.99063,0.0,02/13/1867 +1.55063,50.87517,7522,7,17,12,29,19,3.55,5.0,fr,3876,150,173763,1,1,Active Shallow Crust,240.0128,57.99801,0.0,07/17/7522 +1.55063,50.87517,9171,3,18,18,43,0,3.55,5.0,fr,3877,183,173769,1,1,Active Shallow Crust,128.8958,89.99364,0.0,03/18/9171 +1.55063,50.87517,8574,8,19,22,24,14,3.65,5.0,fr,3878,171,173772,1,3,Active Shallow Crust,0.0,89.99007,0.0,08/19/8574 +1.55063,50.87517,546,7,30,0,13,17,3.65,5.0,fr,3879,10,173772,1,3,Active Shallow Crust,0.0,89.99007,0.0,07/30/0546 +1.55063,50.87517,3810,8,26,17,46,49,3.65,5.0,fr,3880,76,173772,1,3,Active Shallow Crust,0.0,89.99007,0.0,08/26/3810 +1.55063,50.87517,9349,7,23,2,52,23,3.75,5.0,fr,3881,186,173784,1,2,Active Shallow Crust,0.0,89.98989,0.0,07/23/9349 +1.55063,50.87517,2547,11,23,13,52,28,3.75,5.0,fr,3882,50,173784,1,2,Active Shallow Crust,0.0,89.98989,0.0,11/23/2547 +1.55063,50.87517,3960,6,17,4,28,46,3.85,15.0,fr,3883,79,173800,1,1,Active Shallow Crust,240.0113,57.99803,0.0,06/17/3960 +1.55063,50.87517,7284,7,25,9,16,22,3.95,5.0,fr,3884,145,173808,1,1,Active Shallow Crust,0.0,89.98996,0.0,07/25/7284 +1.55063,50.87517,7229,5,3,3,53,39,4.05,15.0,fr,3885,144,173821,1,1,Active Shallow Crust,0.0,89.99016,0.0,05/03/7229 +1.55063,50.87517,2778,7,13,11,12,43,5.15,5.0,fr,3886,55,173961,1,1,Active Shallow Crust,128.8814,89.99102,0.0,07/13/2778 +2.76073,44.69236,1733,1,13,18,27,53,3.55,5.0,fr,3887,34,174240,1,1,Active Shallow Crust,0.0,89.98925,0.0,01/13/1733 +2.76073,44.69236,6514,1,3,3,40,51,3.75,5.0,fr,3888,130,174264,1,1,Active Shallow Crust,0.0,89.98861,0.0,01/03/6514 +2.76073,44.69236,4982,9,2,10,21,31,3.75,5.0,fr,3889,99,174267,1,1,Active Shallow Crust,240.0079,58.0176,0.0,09/02/4982 +2.76073,44.69236,4170,5,15,6,13,58,3.85,27.5,fr,3890,83,174278,1,1,Active Shallow Crust,0.0,89.98985,0.0,05/15/4170 +2.76073,44.69236,389,5,3,22,42,29,3.85,5.0,fr,3891,7,174279,1,1,Active Shallow Crust,240.011,57.99736,0.0,05/03/0389 +2.76073,44.69236,7221,3,22,4,18,40,3.85,5.0,fr,3892,144,174282,1,1,Active Shallow Crust,0.0,89.98973,-90.0,03/22/7221 +2.76073,44.69236,2565,5,16,20,36,54,3.95,5.0,fr,3893,51,174294,1,1,Active Shallow Crust,0.0,89.99085,-90.0,05/16/2565 +2.76073,44.69236,6415,3,29,22,0,6,4.15,15.0,fr,3894,128,174313,1,1,Active Shallow Crust,0.0,89.98922,0.0,03/29/6415 +2.76073,44.69236,414,9,10,3,29,24,4.25,5.0,fr,3895,8,174333,1,1,Active Shallow Crust,128.8946,89.98088,0.0,09/10/0414 +2.76073,44.69236,7499,9,20,14,37,51,4.35,5.0,fr,3896,149,174336,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/20/7499 +2.76073,44.69236,6434,6,2,16,35,28,4.45,5.0,fr,3897,128,174357,1,1,Active Shallow Crust,128.8922,89.99428,0.0,06/02/6434 +2.76073,44.69236,8628,1,15,19,41,24,4.55,5.0,fr,3898,172,174360,1,1,Active Shallow Crust,0.0,89.9898,0.0,01/15/8628 +2.76073,44.69236,5827,7,8,15,53,18,4.95,27.5,fr,3899,116,174410,1,1,Active Shallow Crust,0.0,89.98998,0.0,07/08/5827 +0.03279,43.44704,499,7,13,15,3,43,3.55,5.0,fr,3900,9,174720,1,3,Active Shallow Crust,0.0,89.98999,0.0,07/13/0499 +0.03279,43.44704,192,10,1,9,16,20,3.55,5.0,fr,3901,3,174720,1,3,Active Shallow Crust,0.0,89.98999,0.0,10/01/0192 +0.03279,43.44704,1386,10,26,15,0,54,3.55,5.0,fr,3902,27,174720,1,3,Active Shallow Crust,0.0,89.98999,0.0,10/26/1386 +0.03279,43.44704,8023,4,24,13,27,23,3.65,5.0,fr,3903,160,174732,1,2,Active Shallow Crust,0.0,89.99001,0.0,04/24/8023 +0.03279,43.44704,5987,8,2,14,16,37,3.65,5.0,fr,3904,119,174732,1,2,Active Shallow Crust,0.0,89.99001,0.0,08/02/5987 +0.03279,43.44704,6221,6,9,9,20,32,3.65,27.5,fr,3905,124,174734,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/09/6221 +0.03279,43.44704,6477,4,29,1,4,44,4.15,5.0,fr,3906,129,174792,1,1,Active Shallow Crust,0.0,89.99,0.0,04/29/6477 +0.03279,43.44704,7730,4,20,0,28,25,4.25,5.0,fr,3907,154,174804,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/20/7730 +0.03279,43.44704,9685,2,20,8,26,39,4.55,5.0,fr,3908,193,174840,1,1,Active Shallow Crust,0.0,89.99,0.0,02/20/9685 +0.03279,43.44704,7761,2,23,21,22,12,4.65,5.0,fr,3909,155,174852,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/23/7761 +0.03279,43.44704,4627,12,19,1,46,1,4.95,15.0,fr,3910,92,174889,1,1,Active Shallow Crust,360.0,89.99,0.0,12/19/4627 +7.3233,45.17967,8404,4,12,6,55,42,3.55,5.0,fr,3911,168,175200,1,4,Active Shallow Crust,0.0,89.99289,0.0,04/12/8404 +7.3233,45.17967,386,5,12,19,39,0,3.55,5.0,fr,3912,7,175200,1,4,Active Shallow Crust,0.0,89.99289,0.0,05/12/0386 +7.3233,45.17967,42,8,10,8,0,33,3.55,5.0,fr,3913,0,175200,1,4,Active Shallow Crust,0.0,89.99289,0.0,08/10/0042 +7.3233,45.17967,6490,6,19,12,6,57,3.55,5.0,fr,3914,129,175200,1,4,Active Shallow Crust,0.0,89.99289,0.0,06/19/6490 +7.3233,45.17967,8647,4,20,11,28,19,3.55,15.0,fr,3915,172,175201,1,1,Active Shallow Crust,0.0,89.99289,0.0,04/20/8647 +7.3233,45.17967,2670,11,10,5,30,0,3.55,27.5,fr,3916,53,175202,1,2,Active Shallow Crust,0.0,89.99289,0.0,11/10/2670 +7.3233,45.17967,7624,7,19,6,48,40,3.55,27.5,fr,3917,152,175202,1,2,Active Shallow Crust,0.0,89.99289,0.0,07/19/7624 +7.3233,45.17967,4779,8,26,18,57,25,3.55,5.0,fr,3918,95,175203,1,2,Active Shallow Crust,240.0119,57.99746,0.0,08/26/4779 +7.3233,45.17967,365,2,24,14,9,49,3.55,5.0,fr,3919,7,175203,1,2,Active Shallow Crust,240.0119,57.99746,0.0,02/24/0365 +7.3233,45.17967,2335,12,9,5,41,19,3.55,15.0,fr,3920,46,175204,1,1,Active Shallow Crust,240.0119,57.99746,0.0,12/09/2335 +7.3233,45.17967,4955,7,29,16,15,17,3.55,5.0,fr,3921,99,175206,1,1,Active Shallow Crust,0.0,89.99281,-90.0,07/29/4955 +7.3233,45.17967,230,2,5,4,14,39,3.65,5.0,fr,3922,4,175212,1,5,Active Shallow Crust,0.0,89.98733,0.0,02/05/0230 +7.3233,45.17967,8479,2,28,9,31,50,3.65,5.0,fr,3923,169,175212,1,5,Active Shallow Crust,0.0,89.98733,0.0,02/28/8479 +7.3233,45.17967,4276,8,29,14,9,35,3.65,5.0,fr,3924,85,175212,1,5,Active Shallow Crust,0.0,89.98733,0.0,08/29/4276 +7.3233,45.17967,8827,2,3,4,26,29,3.65,5.0,fr,3925,176,175212,1,5,Active Shallow Crust,0.0,89.98733,0.0,02/03/8827 +7.3233,45.17967,1664,11,23,17,5,27,3.65,5.0,fr,3926,33,175212,1,5,Active Shallow Crust,0.0,89.98733,0.0,11/23/1664 +7.3233,45.17967,4502,9,19,5,34,17,3.65,15.0,fr,3927,90,175213,1,1,Active Shallow Crust,0.0,89.98733,0.0,09/19/4502 +7.3233,45.17967,3131,12,22,10,11,28,3.65,27.5,fr,3928,62,175214,1,2,Active Shallow Crust,0.0,89.98733,0.0,12/22/3131 +7.3233,45.17967,1186,1,27,2,13,55,3.65,27.5,fr,3929,23,175214,1,2,Active Shallow Crust,0.0,89.98733,0.0,01/27/1186 +7.3233,45.17967,327,9,4,3,42,33,3.65,5.0,fr,3930,6,175215,1,1,Active Shallow Crust,239.9998,58.01385,0.0,09/04/0327 +7.3233,45.17967,8757,1,23,2,7,41,3.65,5.0,fr,3931,175,175218,1,1,Active Shallow Crust,0.0,89.98718,-90.0,01/23/8757 +7.3233,45.17967,1682,10,14,0,10,25,3.75,5.0,fr,3932,33,175224,1,5,Active Shallow Crust,0.0,89.98871,0.0,10/14/1682 +7.3233,45.17967,5983,10,6,16,18,26,3.75,5.0,fr,3933,119,175224,1,5,Active Shallow Crust,0.0,89.98871,0.0,10/06/5983 +7.3233,45.17967,3489,2,13,20,41,30,3.75,5.0,fr,3934,69,175224,1,5,Active Shallow Crust,0.0,89.98871,0.0,02/13/3489 +7.3233,45.17967,6581,6,28,13,57,28,3.75,5.0,fr,3935,131,175224,1,5,Active Shallow Crust,0.0,89.98871,0.0,06/28/6581 +7.3233,45.17967,722,6,7,21,6,12,3.75,5.0,fr,3936,14,175224,1,5,Active Shallow Crust,0.0,89.98871,0.0,06/07/0722 +7.3233,45.17967,6384,1,12,4,25,35,3.75,15.0,fr,3937,127,175225,1,2,Active Shallow Crust,0.0,89.98871,0.0,01/12/6384 +7.3233,45.17967,4025,7,28,13,15,58,3.75,15.0,fr,3938,80,175225,1,2,Active Shallow Crust,0.0,89.98871,0.0,07/28/4025 +7.3233,45.17967,763,8,20,3,25,48,3.75,5.0,fr,3939,15,175227,1,1,Active Shallow Crust,240.008,58.01694,0.0,08/20/0763 +7.3233,45.17967,7893,2,28,5,7,32,3.75,15.0,fr,3940,157,175228,1,1,Active Shallow Crust,240.008,58.01694,0.0,02/28/7893 +7.3233,45.17967,6578,8,28,8,13,58,3.75,5.0,fr,3941,131,175230,1,1,Active Shallow Crust,0.0,89.98858,-90.0,08/28/6578 +7.3233,45.17967,5302,9,14,19,16,6,3.85,5.0,fr,3942,106,175236,1,1,Active Shallow Crust,0.0,89.98994,0.0,09/14/5302 +7.3233,45.17967,7878,6,13,13,19,25,3.85,15.0,fr,3943,157,175237,1,3,Active Shallow Crust,0.0,89.98994,0.0,06/13/7878 +7.3233,45.17967,7401,5,11,9,49,32,3.85,15.0,fr,3944,148,175237,1,3,Active Shallow Crust,0.0,89.98994,0.0,05/11/7401 +7.3233,45.17967,5669,12,6,22,35,49,3.85,15.0,fr,3945,113,175237,1,3,Active Shallow Crust,0.0,89.98994,0.0,12/06/5669 +7.3233,45.17967,9944,9,26,12,50,18,3.85,5.0,fr,3946,198,175242,1,2,Active Shallow Crust,0.0,89.98982,-90.0,09/26/9944 +7.3233,45.17967,4957,12,7,13,22,1,3.85,5.0,fr,3947,99,175242,1,2,Active Shallow Crust,0.0,89.98982,-90.0,12/07/4957 +7.3233,45.17967,6394,11,10,19,11,47,3.85,15.0,fr,3948,127,175246,1,1,Active Shallow Crust,128.8961,89.99496,0.0,11/10/6394 +7.3233,45.17967,1532,9,24,3,30,34,3.95,5.0,fr,3949,30,175248,1,3,Active Shallow Crust,0.0,89.99103,0.0,09/24/1532 +7.3233,45.17967,6380,1,26,18,22,21,3.95,5.0,fr,3950,127,175248,1,3,Active Shallow Crust,0.0,89.99103,0.0,01/26/6380 +7.3233,45.17967,961,11,15,6,45,51,3.95,5.0,fr,3951,19,175248,1,3,Active Shallow Crust,0.0,89.99103,0.0,11/15/0961 +7.3233,45.17967,2449,3,9,19,38,23,3.95,27.5,fr,3952,48,175250,1,1,Active Shallow Crust,0.0,89.99103,0.0,03/09/2449 +7.3233,45.17967,6694,9,3,9,53,32,3.95,5.0,fr,3953,133,175254,1,2,Active Shallow Crust,0.0,89.99093,-90.0,09/03/6694 +7.3233,45.17967,3770,11,5,19,18,1,3.95,5.0,fr,3954,75,175254,1,2,Active Shallow Crust,0.0,89.99093,-90.0,11/05/3770 +7.3233,45.17967,299,2,28,10,38,6,3.95,5.0,fr,3955,5,175257,1,2,Active Shallow Crust,128.9001,89.99327,0.0,02/28/0299 +7.3233,45.17967,1781,12,10,6,41,29,3.95,5.0,fr,3956,35,175257,1,2,Active Shallow Crust,128.9001,89.99327,0.0,12/10/1781 +7.3233,45.17967,7373,4,15,22,47,35,4.05,5.0,fr,3957,147,175260,1,1,Active Shallow Crust,0.0,89.98801,0.0,04/15/7373 +7.3233,45.17967,5579,4,3,11,42,6,4.05,5.0,fr,3958,111,175263,1,1,Active Shallow Crust,240.0065,58.00556,0.0,04/03/5579 +7.3233,45.17967,2026,2,21,17,54,8,4.05,5.0,fr,3959,40,175266,1,1,Active Shallow Crust,0.0,89.99191,-90.0,02/21/2026 +7.3233,45.17967,3785,3,18,7,14,23,4.15,5.0,fr,3960,75,175272,1,1,Active Shallow Crust,0.0,89.98931,0.0,03/18/3785 +7.3233,45.17967,1832,3,3,22,9,23,4.15,15.0,fr,3961,36,175273,1,2,Active Shallow Crust,0.0,89.98931,0.0,03/03/1832 +7.3233,45.17967,8992,1,7,15,47,58,4.15,15.0,fr,3962,179,175273,1,2,Active Shallow Crust,0.0,89.98931,0.0,01/07/8992 +7.3233,45.17967,3642,6,30,14,17,42,4.25,5.0,fr,3963,72,175284,1,1,Active Shallow Crust,0.0,89.99047,0.0,06/30/3642 +7.3233,45.17967,3079,8,24,0,6,58,4.25,15.0,fr,3964,61,175285,1,2,Active Shallow Crust,0.0,89.99047,0.0,08/24/3079 +7.3233,45.17967,935,12,21,14,51,24,4.25,15.0,fr,3965,18,175285,1,2,Active Shallow Crust,0.0,89.99047,0.0,12/21/0935 +7.3233,45.17967,6714,3,31,9,44,59,4.25,5.0,fr,3966,134,175287,1,1,Active Shallow Crust,240.0076,57.99352,0.0,03/31/6714 +7.3233,45.17967,3794,5,14,8,47,42,4.25,5.0,fr,3967,75,175293,1,1,Active Shallow Crust,128.8939,89.9809,0.0,05/14/3794 +7.3233,45.17967,2858,1,16,23,17,3,4.25,15.0,fr,3968,57,175294,1,1,Active Shallow Crust,128.8939,89.9809,0.0,01/16/2858 +7.3233,45.17967,8702,10,19,14,12,58,4.35,5.0,fr,3969,174,175296,1,3,Active Shallow Crust,0.0,89.98868,0.0,10/19/8702 +7.3233,45.17967,1843,7,4,16,41,59,4.35,5.0,fr,3970,36,175296,1,3,Active Shallow Crust,0.0,89.98868,0.0,07/04/1843 +7.3233,45.17967,3486,10,3,15,13,55,4.35,5.0,fr,3971,69,175296,1,3,Active Shallow Crust,0.0,89.98868,0.0,10/03/3486 +7.3233,45.17967,6346,1,3,20,49,2,4.35,15.0,fr,3972,126,175297,1,2,Active Shallow Crust,0.0,89.98868,0.0,01/03/6346 +7.3233,45.17967,2958,12,9,21,38,16,4.35,15.0,fr,3973,59,175297,1,2,Active Shallow Crust,0.0,89.98868,0.0,12/09/2958 +7.3233,45.17967,9645,11,4,23,59,45,4.45,5.0,fr,3974,192,175308,1,1,Active Shallow Crust,0.0,89.98991,0.0,11/04/9645 +7.3233,45.17967,7825,9,22,9,40,12,4.45,27.5,fr,3975,156,175313,1,1,Active Shallow Crust,240.0046,57.99506,0.0,09/22/7825 +7.3233,45.17967,5991,8,19,22,1,33,4.45,15.0,fr,3976,119,175315,1,1,Active Shallow Crust,0.0,89.98979,-90.0,08/19/5991 +7.3233,45.17967,6075,7,24,15,56,34,4.65,15.0,fr,3977,121,175333,1,1,Active Shallow Crust,0.0,89.98998,0.0,07/24/6075 +7.3233,45.17967,8349,10,28,4,50,8,5.15,5.0,fr,3978,166,175392,1,1,Active Shallow Crust,0.0,89.98986,0.0,10/28/8349 +3.82744,42.86849,6071,7,11,0,5,55,3.55,15.0,fr,3979,121,175681,1,1,Active Shallow Crust,0.0,89.98891,0.0,07/11/6071 +3.82744,42.86849,5199,5,15,3,34,11,3.65,15.0,fr,3980,103,175693,1,1,Active Shallow Crust,0.0,89.99012,0.0,05/15/5199 +3.82744,42.86849,9364,5,4,7,41,34,4.25,5.0,fr,3981,187,175764,1,1,Active Shallow Crust,0.0,89.9901,0.0,05/04/9364 +3.82744,42.86849,7721,11,29,1,3,49,4.55,27.5,fr,3982,154,175802,1,1,Active Shallow Crust,0.0,89.98948,0.0,11/29/7721 +3.82744,42.86849,3918,5,31,1,2,54,5.05,5.0,fr,3983,78,175860,1,1,Active Shallow Crust,0.0,89.99014,0.0,05/31/3918 +1.44018,51.38822,589,1,8,7,56,20,3.75,15.0,fr,3984,11,176185,1,1,Active Shallow Crust,0.0,89.99001,0.0,01/08/0589 +1.44018,51.38822,706,8,2,11,29,38,3.95,5.0,fr,3985,14,176211,1,1,Active Shallow Crust,240.0205,58.00525,0.0,08/02/0706 +1.44018,51.38822,2187,12,25,12,10,33,3.95,27.5,fr,3986,43,176216,1,1,Active Shallow Crust,0.0,89.98996,-90.0,12/25/2187 +1.44018,51.38822,1577,11,18,18,22,36,4.05,5.0,fr,3987,31,176223,1,1,Active Shallow Crust,240.0068,58.00606,0.0,11/18/1577 +1.44018,51.38822,8606,1,3,4,57,15,4.15,15.0,fr,3988,172,176233,1,1,Active Shallow Crust,0.0,89.98975,0.0,01/03/8606 +1.44018,51.38822,9815,4,3,17,48,41,4.25,15.0,fr,3989,196,176251,1,1,Active Shallow Crust,0.0,89.99004,-90.0,04/03/9815 +1.44018,51.38822,4274,9,21,23,37,27,4.75,5.0,fr,3990,85,176307,1,1,Active Shallow Crust,240.0095,58.00486,0.0,09/21/4274 +1.84034,41.89294,5559,9,19,17,35,52,3.55,5.0,fr,3991,111,176646,1,1,Active Shallow Crust,0.0,89.99051,-90.0,09/19/5559 +1.84034,41.89294,3520,5,30,2,23,58,4.05,5.0,fr,3992,70,176700,1,1,Active Shallow Crust,0.0,89.9905,0.0,05/30/3520 +1.84034,41.89294,6366,4,12,6,5,21,4.05,27.5,fr,3993,127,176702,1,1,Active Shallow Crust,0.0,89.9905,0.0,04/12/6366 +1.84034,41.89294,9302,3,24,22,28,5,4.85,15.0,fr,3994,186,176803,1,1,Active Shallow Crust,0.0,89.9898,-90.0,03/24/9302 +1.84034,41.89294,3683,3,14,4,21,51,5.05,5.0,fr,3995,73,176820,1,1,Active Shallow Crust,0.0,89.98999,0.0,03/14/3683 +1.69061,42.66948,9350,12,26,0,8,35,3.55,5.0,fr,3996,186,177120,1,2,Active Shallow Crust,0.0,89.99073,0.0,12/26/9350 +1.69061,42.66948,6186,5,23,17,53,39,3.55,5.0,fr,3997,123,177120,1,2,Active Shallow Crust,0.0,89.99073,0.0,05/23/6186 +1.69061,42.66948,7789,10,27,6,10,21,3.55,5.0,fr,3998,155,177123,1,1,Active Shallow Crust,240.0118,57.99813,0.0,10/27/7789 +1.69061,42.66948,6636,1,13,23,19,8,3.55,5.0,fr,3999,132,177126,1,1,Active Shallow Crust,0.0,89.99062,-90.0,01/13/6636 +1.69061,42.66948,3835,5,16,21,8,43,3.65,5.0,fr,4000,76,177132,1,1,Active Shallow Crust,0.0,89.99009,0.0,05/16/3835 +1.69061,42.66948,2587,6,17,2,35,26,3.75,5.0,fr,4001,51,177144,1,2,Active Shallow Crust,0.0,89.98969,0.0,06/17/2587 +1.69061,42.66948,4354,7,22,18,50,29,3.75,5.0,fr,4002,87,177144,1,2,Active Shallow Crust,0.0,89.98969,0.0,07/22/4354 +1.69061,42.66948,9255,12,18,8,18,22,3.75,15.0,fr,4003,185,177148,1,1,Active Shallow Crust,240.008,58.01751,0.0,12/18/9255 +1.69061,42.66948,9563,9,13,2,27,44,3.75,15.0,fr,4004,191,177154,1,1,Active Shallow Crust,128.8968,89.96742,0.0,09/13/9563 +1.69061,42.66948,8482,3,29,21,10,33,3.85,5.0,fr,4005,169,177156,1,1,Active Shallow Crust,0.0,89.9895,0.0,03/29/8482 +1.69061,42.66948,9673,2,24,2,32,9,3.85,5.0,fr,4006,193,177159,1,1,Active Shallow Crust,240.0104,57.99773,0.0,02/24/9673 +1.69061,42.66948,4073,3,26,12,23,56,3.95,27.5,fr,4007,81,177170,1,1,Active Shallow Crust,0.0,89.98947,0.0,03/26/4073 +1.69061,42.66948,6828,12,13,12,51,55,4.05,5.0,fr,4008,136,177180,1,1,Active Shallow Crust,0.0,89.98958,0.0,12/13/6828 +1.69061,42.66948,649,9,8,18,36,15,4.05,5.0,fr,4009,12,177183,1,1,Active Shallow Crust,240.0053,58.0058,0.0,09/08/0649 +1.69061,42.66948,1486,12,7,23,33,49,4.15,5.0,fr,4010,29,177192,1,1,Active Shallow Crust,0.0,89.98978,0.0,12/07/1486 +1.69061,42.66948,4411,7,31,6,53,40,4.15,15.0,fr,4011,88,177196,1,1,Active Shallow Crust,240.0078,57.99723,0.0,07/31/4411 +1.69061,42.66948,8892,9,8,2,57,56,4.25,15.0,fr,4012,177,177205,1,1,Active Shallow Crust,0.0,89.99007,0.0,09/08/8892 +1.69061,42.66948,2920,2,17,10,11,27,4.25,5.0,fr,4013,58,177207,1,1,Active Shallow Crust,240.0069,57.99384,0.0,02/17/2920 +1.69061,42.66948,6349,5,24,20,15,11,4.55,5.0,fr,4014,126,177240,1,1,Active Shallow Crust,0.0,89.99004,0.0,05/24/6349 +1.690612,42.66948,1192,4,1,0,29,11,6.15,6.011322,fr,4015,23,177432,1,1,Active Shallow Crust,359.9999,89.99001,0.0,04/01/1192 +5.47888,44.42568,1976,2,3,1,10,24,3.55,15.0,fr,4016,39,177601,1,1,Active Shallow Crust,0.0,89.9928,0.0,02/03/1976 +5.47888,44.42568,2025,9,4,8,31,12,3.55,5.0,fr,4017,40,177606,1,1,Active Shallow Crust,0.0,89.99271,-90.0,09/04/2025 +5.47888,44.42568,2081,9,19,2,48,57,3.55,15.0,fr,4018,41,177607,1,1,Active Shallow Crust,0.0,89.99271,-90.0,09/19/2081 +5.47888,44.42568,7356,6,28,4,40,47,3.65,5.0,fr,4019,147,177612,1,2,Active Shallow Crust,0.0,89.98716,0.0,06/28/7356 +5.47888,44.42568,7124,11,2,3,26,39,3.65,5.0,fr,4020,142,177612,1,2,Active Shallow Crust,0.0,89.98716,0.0,11/02/7124 +5.47888,44.42568,82,6,29,7,15,33,3.65,15.0,fr,4021,1,177613,1,1,Active Shallow Crust,0.0,89.98716,0.0,06/29/0082 +5.47888,44.42568,7894,8,11,16,28,15,3.65,15.0,fr,4022,157,177619,1,1,Active Shallow Crust,0.0,89.98701,-90.0,08/11/7894 +5.47888,44.42568,1822,6,29,21,38,44,3.75,5.0,fr,4023,36,177624,1,1,Active Shallow Crust,0.0,89.98856,0.0,06/29/1822 +5.47888,44.42568,4610,1,11,5,41,27,3.85,5.0,fr,4024,92,177636,1,1,Active Shallow Crust,0.0,89.9898,0.0,01/11/4610 +5.47888,44.42568,9595,4,19,23,32,55,3.95,5.0,fr,4025,191,177654,1,1,Active Shallow Crust,0.0,89.99081,-90.0,04/19/9595 +5.47888,44.42568,2563,7,25,16,21,25,4.15,5.0,fr,4026,51,177675,1,1,Active Shallow Crust,240.0081,57.9971,0.0,07/25/2563 +5.47888,44.42568,744,2,28,19,16,23,4.55,15.0,fr,4027,14,177721,1,1,Active Shallow Crust,0.0,89.99089,0.0,02/28/0744 +5.47888,44.42568,1141,9,2,16,57,33,5.05,5.0,fr,4028,22,177780,1,1,Active Shallow Crust,0.0,89.98975,0.0,09/02/1141 +5.65514,50.709,6456,8,31,13,23,10,3.55,5.0,fr,4029,129,178080,1,6,Active Shallow Crust,0.0,89.98723,0.0,08/31/6456 +5.65514,50.709,5771,8,5,5,39,35,3.55,5.0,fr,4030,115,178080,1,6,Active Shallow Crust,0.0,89.98723,0.0,08/05/5771 +5.65514,50.709,1813,7,19,22,47,47,3.55,5.0,fr,4031,36,178080,1,6,Active Shallow Crust,0.0,89.98723,0.0,07/19/1813 +5.65514,50.709,192,4,29,16,8,1,3.55,5.0,fr,4032,3,178080,1,6,Active Shallow Crust,0.0,89.98723,0.0,04/29/0192 +5.65514,50.709,1597,2,9,3,30,44,3.55,5.0,fr,4033,31,178080,1,6,Active Shallow Crust,0.0,89.98723,0.0,02/09/1597 +5.65514,50.709,1906,3,7,22,53,48,3.55,5.0,fr,4034,38,178080,1,6,Active Shallow Crust,0.0,89.98723,0.0,03/07/1906 +5.65514,50.709,4372,12,26,19,41,12,3.55,5.0,fr,4035,87,178086,1,1,Active Shallow Crust,0.0,89.98708,-90.0,12/26/4372 +5.65514,50.709,6278,6,12,13,22,32,3.55,15.0,fr,4036,125,178090,1,1,Active Shallow Crust,128.8963,89.99361,0.0,06/12/6278 +5.65514,50.709,4606,12,28,20,11,35,3.65,5.0,fr,4037,92,178092,1,4,Active Shallow Crust,0.0,89.98862,0.0,12/28/4606 +5.65514,50.709,3602,12,19,16,55,44,3.65,5.0,fr,4038,72,178092,1,4,Active Shallow Crust,0.0,89.98862,0.0,12/19/3602 +5.65514,50.709,15,5,31,13,25,34,3.65,5.0,fr,4039,0,178092,1,4,Active Shallow Crust,0.0,89.98862,0.0,05/31/0015 +5.65514,50.709,7770,12,18,2,30,45,3.65,5.0,fr,4040,155,178092,1,4,Active Shallow Crust,0.0,89.98862,0.0,12/18/7770 +5.65514,50.709,2482,8,28,7,9,49,3.65,15.0,fr,4041,49,178093,1,2,Active Shallow Crust,0.0,89.98862,0.0,08/28/2482 +5.65514,50.709,4965,6,18,12,29,45,3.65,15.0,fr,4042,99,178093,1,2,Active Shallow Crust,0.0,89.98862,0.0,06/18/4965 +5.65514,50.709,9307,6,21,13,43,53,3.65,5.0,fr,4043,186,178098,1,1,Active Shallow Crust,0.0,89.98849,-90.0,06/21/9307 +5.65514,50.709,5527,1,9,11,37,42,3.65,27.5,fr,4044,110,178100,1,1,Active Shallow Crust,0.0,89.98849,-90.0,01/09/5527 +5.65514,50.709,1777,4,2,7,27,12,3.65,5.0,fr,4045,35,178101,1,1,Active Shallow Crust,128.9006,89.96305,0.0,04/02/1777 +5.65514,50.709,134,5,2,10,18,47,3.75,5.0,fr,4046,2,178104,1,2,Active Shallow Crust,0.0,89.98985,0.0,05/02/0134 +5.65514,50.709,8467,12,15,19,37,47,3.75,5.0,fr,4047,169,178104,1,2,Active Shallow Crust,0.0,89.98985,0.0,12/15/8467 +5.65514,50.709,3304,11,24,11,42,21,3.75,15.0,fr,4048,66,178108,1,1,Active Shallow Crust,240.0086,58.0173,0.0,11/24/3304 +5.65514,50.709,8440,3,16,0,4,24,3.75,27.5,fr,4049,168,178109,1,1,Active Shallow Crust,240.0086,58.0173,0.0,03/16/8440 +5.65514,50.709,8781,9,28,19,17,10,3.75,5.0,fr,4050,175,178110,1,1,Active Shallow Crust,0.0,89.98974,-90.0,09/28/8781 +5.65514,50.709,5715,1,14,21,7,26,3.75,15.0,fr,4051,114,178114,1,1,Active Shallow Crust,128.8968,89.96707,0.0,01/14/5715 +5.65514,50.709,6939,6,19,1,38,0,3.85,27.5,fr,4052,138,178121,1,1,Active Shallow Crust,240.0121,57.99787,0.0,06/19/6939 +5.65514,50.709,6165,6,15,22,11,45,3.95,5.0,fr,4053,123,178128,1,1,Active Shallow Crust,0.0,89.99194,0.0,06/15/6165 +5.65514,50.709,8210,10,3,18,25,41,3.95,27.5,fr,4054,164,178133,1,1,Active Shallow Crust,240.0205,58.00539,0.0,10/03/8210 +5.65514,50.709,3299,5,6,23,47,19,4.05,5.0,fr,4055,65,178140,1,1,Active Shallow Crust,0.0,89.98923,0.0,05/06/3299 +5.65514,50.709,1682,12,6,3,54,6,4.15,5.0,fr,4056,33,178152,1,2,Active Shallow Crust,0.0,89.99039,0.0,12/06/1682 +5.65514,50.709,5657,5,31,11,46,52,4.15,5.0,fr,4057,113,178152,1,2,Active Shallow Crust,0.0,89.99039,0.0,05/31/5657 +5.65514,50.709,1735,10,22,0,41,19,4.15,15.0,fr,4058,34,178153,1,1,Active Shallow Crust,0.0,89.99039,0.0,10/22/1735 +5.65514,50.709,4256,5,21,9,17,18,4.15,5.0,fr,4059,85,178158,1,1,Active Shallow Crust,0.0,89.99029,-90.0,05/21/4256 +5.65514,50.709,8406,6,20,0,38,41,4.35,15.0,fr,4060,168,178183,1,1,Active Shallow Crust,0.0,89.98972,-90.0,06/20/8406 +5.65514,50.709,6381,8,28,4,39,2,4.45,5.0,fr,4061,127,178188,1,2,Active Shallow Crust,0.0,89.99094,0.0,08/28/6381 +5.65514,50.709,8824,2,9,21,27,4,4.45,5.0,fr,4062,176,178188,1,2,Active Shallow Crust,0.0,89.99094,0.0,02/09/8824 +5.65514,50.709,1161,6,11,10,0,53,4.45,5.0,fr,4063,23,178191,1,1,Active Shallow Crust,240.0066,57.99489,0.0,06/11/1161 +5.65514,50.709,6383,1,4,1,7,5,4.55,15.0,fr,4064,127,178201,1,1,Active Shallow Crust,0.0,89.9899,0.0,01/04/6383 +5.65514,50.709,3146,4,14,8,23,15,4.65,5.0,fr,4065,62,178212,1,1,Active Shallow Crust,0.0,89.9892,0.0,04/14/3146 +5.65514,50.709,7880,10,13,11,47,53,4.75,5.0,fr,4066,157,178224,1,2,Active Shallow Crust,0.0,89.99037,0.0,10/13/7880 +5.65514,50.709,1572,3,15,6,38,20,4.75,5.0,fr,4067,31,178224,1,2,Active Shallow Crust,0.0,89.99037,0.0,03/15/1572 +5.65514,50.709,5299,9,17,15,29,9,6.05,15.0,fr,4068,105,178381,1,1,Active Shallow Crust,0.0,89.98994,0.0,09/17/5299 +4.33135,46.10192,9791,3,8,20,28,44,3.55,5.0,fr,4069,195,178560,1,1,Active Shallow Crust,0.0,89.99301,0.0,03/08/9791 +4.33135,46.10192,991,6,11,6,10,48,3.55,5.0,fr,4070,19,178563,1,1,Active Shallow Crust,240.0107,57.9988,0.0,06/11/0991 +4.33135,46.10192,7453,1,24,8,26,7,3.55,5.0,fr,4071,149,178566,1,2,Active Shallow Crust,0.0,89.99293,-90.0,01/24/7453 +4.33135,46.10192,8065,12,11,23,13,36,3.55,5.0,fr,4072,161,178566,1,2,Active Shallow Crust,0.0,89.99293,-90.0,12/11/8065 +4.33135,46.10192,1612,6,16,7,0,45,3.65,5.0,fr,4073,32,178572,1,1,Active Shallow Crust,0.0,89.98753,0.0,06/16/1612 +4.33135,46.10192,6267,4,3,8,15,14,3.85,5.0,fr,4074,125,178596,1,2,Active Shallow Crust,0.0,89.9901,0.0,04/03/6267 +4.33135,46.10192,9453,8,25,18,25,50,3.85,5.0,fr,4075,189,178596,1,2,Active Shallow Crust,0.0,89.9901,0.0,08/25/9453 +4.33135,46.10192,8830,11,23,16,50,23,3.95,5.0,fr,4076,176,178611,1,1,Active Shallow Crust,240.0192,58.00506,0.0,11/23/8830 +4.33135,46.10192,6059,9,15,11,59,47,4.05,15.0,fr,4077,121,178621,1,2,Active Shallow Crust,0.0,89.9882,0.0,09/15/6059 +4.33135,46.10192,1322,4,13,11,46,41,4.05,15.0,fr,4078,26,178621,1,2,Active Shallow Crust,0.0,89.9882,0.0,04/13/1322 +4.15534,42.78198,1248,10,7,3,1,55,3.55,5.0,fr,4079,24,179040,1,1,Active Shallow Crust,0.0,89.9926,0.0,10/07/1248 +4.15534,42.78198,5296,12,5,8,46,4,4.05,5.0,fr,4080,105,179100,1,1,Active Shallow Crust,0.0,89.99168,0.0,12/05/5296 +4.15534,42.78198,2955,10,28,9,51,41,4.15,5.0,fr,4081,59,179112,1,3,Active Shallow Crust,0.0,89.98887,0.0,10/28/2955 +4.15534,42.78198,1986,6,12,16,36,42,4.15,5.0,fr,4082,39,179112,1,3,Active Shallow Crust,0.0,89.98887,0.0,06/12/1986 +4.15534,42.78198,4149,1,3,9,37,11,4.15,5.0,fr,4083,82,179112,1,3,Active Shallow Crust,0.0,89.98887,0.0,01/03/4149 +4.15534,42.78198,3896,4,30,11,57,28,4.15,5.0,fr,4084,77,179115,1,1,Active Shallow Crust,240.008,57.99727,0.0,04/30/3896 +5.29119,51.39527,3216,7,26,16,38,17,3.55,5.0,fr,4085,64,179520,1,2,Active Shallow Crust,0.0,89.98742,0.0,07/26/3216 +5.29119,51.39527,36,12,12,5,35,47,3.55,5.0,fr,4086,0,179520,1,2,Active Shallow Crust,0.0,89.98742,0.0,12/12/0036 +5.29119,51.39527,7226,1,5,3,24,36,3.65,15.0,fr,4087,144,179533,1,1,Active Shallow Crust,0.0,89.98878,0.0,01/05/7226 +5.29119,51.39527,5825,8,19,15,31,43,3.65,5.0,fr,4088,116,179538,1,1,Active Shallow Crust,0.0,89.98866,-90.0,08/19/5825 +5.29119,51.39527,3671,12,29,16,56,2,3.85,5.0,fr,4089,73,179556,1,1,Active Shallow Crust,0.0,89.99109,0.0,12/29/3671 +5.29119,51.39527,2854,10,19,15,26,43,4.95,15.0,fr,4090,57,179698,1,1,Active Shallow Crust,128.8877,89.98979,0.0,10/19/2854 +5.27415,46.36207,2743,12,1,3,36,44,3.55,5.0,fr,4091,54,180480,1,2,Active Shallow Crust,0.0,89.99304,0.0,12/01/2743 +5.27415,46.36207,3444,11,20,5,9,57,3.55,5.0,fr,4092,68,180480,1,2,Active Shallow Crust,0.0,89.99304,0.0,11/20/3444 +5.27415,46.36207,1861,6,30,7,44,26,3.55,15.0,fr,4093,37,180487,1,1,Active Shallow Crust,0.0,89.99296,-90.0,06/30/1861 +5.27415,46.36207,8445,5,25,8,38,45,3.65,5.0,fr,4094,168,180492,1,2,Active Shallow Crust,0.0,89.98759,0.0,05/25/8445 +5.27415,46.36207,3819,10,12,5,54,21,3.65,5.0,fr,4095,76,180492,1,2,Active Shallow Crust,0.0,89.98759,0.0,10/12/3819 +5.27415,46.36207,8356,11,22,13,55,5,3.65,15.0,fr,4096,167,180493,1,1,Active Shallow Crust,0.0,89.98759,0.0,11/22/8356 +5.27415,46.36207,4133,9,22,12,44,40,3.95,5.0,fr,4097,82,180528,1,1,Active Shallow Crust,0.0,89.99122,0.0,09/22/4133 +5.27415,46.36207,6984,2,6,17,49,35,4.25,5.0,fr,4098,139,180567,1,1,Active Shallow Crust,240.0072,57.99413,0.0,02/06/6984 +5.27415,46.36207,7392,5,29,21,55,18,4.95,5.0,fr,4099,147,180648,1,1,Active Shallow Crust,0.0,89.99028,0.0,05/29/7392 +5.27415,46.36207,5085,6,21,16,36,47,5.15,5.0,fr,4100,101,180675,1,1,Active Shallow Crust,240.0195,57.99991,0.0,06/21/5085 +5.27415,46.36207,8196,7,18,16,58,39,5.55,5.0,fr,4101,163,180720,1,1,Active Shallow Crust,0.0,89.99025,0.0,07/18/8196 +1.60231,49.57606,675,5,21,16,15,25,3.55,5.0,fr,4102,13,180960,1,1,Active Shallow Crust,0.0,89.99019,0.0,05/21/0675 +1.60231,49.57606,5411,9,16,21,0,17,3.65,27.5,fr,4103,108,180977,1,1,Active Shallow Crust,240.0016,58.01274,0.0,09/16/5411 +1.60231,49.57606,6497,1,11,14,38,40,3.75,15.0,fr,4104,129,180985,1,1,Active Shallow Crust,0.0,89.98961,0.0,01/11/6497 +1.60231,49.57606,7428,7,10,14,41,36,3.85,5.0,fr,4105,148,180996,1,1,Active Shallow Crust,0.0,89.98959,0.0,07/10/7428 +1.60231,49.57606,8939,10,3,10,42,29,3.85,5.0,fr,4106,178,180999,1,1,Active Shallow Crust,240.0111,57.99789,0.0,10/03/8939 +1.60231,49.57606,6413,7,26,6,58,3,4.05,15.0,fr,4107,128,181024,1,1,Active Shallow Crust,240.0066,58.00596,0.0,07/26/6413 +1.60231,49.57606,8169,4,27,16,27,47,4.85,5.0,fr,4108,163,181116,1,1,Active Shallow Crust,0.0,89.99012,0.0,04/27/8169 +0.93317,45.55572,7917,9,18,11,34,17,3.55,27.5,fr,4109,158,181442,1,1,Active Shallow Crust,0.0,89.99029,0.0,09/18/7917 +0.93317,45.55572,4146,12,12,18,55,58,3.65,27.5,fr,4110,82,181454,1,1,Active Shallow Crust,0.0,89.98978,0.0,12/12/4146 +0.93317,45.55572,4559,11,14,18,44,15,3.65,5.0,fr,4111,91,181458,1,1,Active Shallow Crust,0.0,89.98965,-90.0,11/14/4559 +0.93317,45.55572,2979,5,4,6,0,27,3.85,5.0,fr,4112,59,181476,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/04/2979 +0.93317,45.55572,1159,4,10,19,28,41,4.05,27.5,fr,4113,23,181511,1,1,Active Shallow Crust,128.8906,89.9938,0.0,04/10/1159 +0.93317,45.55572,8141,7,25,8,44,32,4.15,5.0,fr,4114,162,181512,1,1,Active Shallow Crust,0.0,89.98982,0.0,07/25/8141 +0.93317,45.55572,6544,4,7,3,58,11,5.25,15.0,fr,4115,130,181648,1,1,Active Shallow Crust,240.0249,58.00016,0.0,04/07/6544 +2.22478,51.9247,9159,3,16,18,41,55,3.75,15.0,fr,4116,183,181945,1,1,Active Shallow Crust,0.0,89.99012,0.0,03/16/9159 +2.22478,51.9247,3634,9,26,12,33,1,3.75,5.0,fr,4117,72,181947,1,1,Active Shallow Crust,240.0089,58.01759,0.0,09/26/3634 +2.22478,51.9247,2679,11,9,21,29,58,4.05,5.0,fr,4118,53,181980,1,1,Active Shallow Crust,0.0,89.98951,0.0,11/09/2679 +2.22478,51.9247,3011,8,30,14,0,19,4.05,5.0,fr,4119,60,181986,1,1,Active Shallow Crust,0.0,89.98939,-90.0,08/30/3011 +6.14053,46.47467,1381,1,3,8,27,52,3.55,5.0,fr,4120,27,182400,1,2,Active Shallow Crust,0.0,89.99306,0.0,01/03/1381 +6.14053,46.47467,3405,7,2,9,36,14,3.55,5.0,fr,4121,68,182400,1,2,Active Shallow Crust,0.0,89.99306,0.0,07/02/3405 +6.14053,46.47467,7497,9,25,7,23,51,3.55,15.0,fr,4122,149,182401,1,1,Active Shallow Crust,0.0,89.99306,0.0,09/25/7497 +6.14053,46.47467,3290,8,6,6,9,43,3.55,5.0,fr,4123,65,182406,1,1,Active Shallow Crust,0.0,89.99297,-90.0,08/06/3290 +6.14053,46.47467,779,8,10,6,26,38,3.65,5.0,fr,4124,15,182412,1,4,Active Shallow Crust,0.0,89.98762,0.0,08/10/0779 +6.14053,46.47467,9952,6,4,20,31,23,3.65,5.0,fr,4125,199,182412,1,4,Active Shallow Crust,0.0,89.98762,0.0,06/04/9952 +6.14053,46.47467,7278,11,4,8,53,51,3.65,5.0,fr,4126,145,182412,1,4,Active Shallow Crust,0.0,89.98762,0.0,11/04/7278 +6.14053,46.47467,8404,4,10,17,11,57,3.65,5.0,fr,4127,168,182412,1,4,Active Shallow Crust,0.0,89.98762,0.0,04/10/8404 +6.14053,46.47467,2975,8,10,12,44,33,3.65,27.5,fr,4128,59,182414,1,1,Active Shallow Crust,0.0,89.98762,0.0,08/10/2975 +6.14053,46.47467,9250,3,13,15,3,1,3.65,5.0,fr,4129,184,182415,1,1,Active Shallow Crust,240.0004,58.01359,0.0,03/13/9250 +6.14053,46.47467,3565,9,6,20,39,33,3.85,5.0,fr,4130,71,182436,1,2,Active Shallow Crust,0.0,89.99017,0.0,09/06/3565 +6.14053,46.47467,4162,2,7,4,25,27,3.85,5.0,fr,4131,83,182436,1,2,Active Shallow Crust,0.0,89.99017,0.0,02/07/4162 +6.14053,46.47467,4084,2,28,4,15,18,3.85,15.0,fr,4132,81,182437,1,1,Active Shallow Crust,0.0,89.99017,0.0,02/28/4084 +6.14053,46.47467,1103,12,27,7,53,47,3.95,5.0,fr,4133,22,182448,1,1,Active Shallow Crust,0.0,89.99123,0.0,12/27/1103 +6.14053,46.47467,1744,12,26,14,9,59,3.95,15.0,fr,4134,34,182449,1,1,Active Shallow Crust,0.0,89.99123,0.0,12/26/1744 +6.14053,46.47467,6663,7,5,12,21,31,3.95,5.0,fr,4135,133,182457,1,1,Active Shallow Crust,128.9001,89.99343,0.0,07/05/6663 +6.14053,46.47467,5472,12,15,0,4,31,3.95,15.0,fr,4136,109,182458,1,1,Active Shallow Crust,128.9001,89.99343,0.0,12/15/5472 +6.14053,46.47467,4213,10,30,11,23,57,4.05,5.0,fr,4137,84,182460,1,1,Active Shallow Crust,0.0,89.98828,0.0,10/30/4213 +6.14053,46.47467,6787,4,8,14,28,49,4.05,15.0,fr,4138,135,182461,1,1,Active Shallow Crust,0.0,89.98828,0.0,04/08/6787 +6.14053,46.47467,478,10,10,3,51,28,4.05,5.0,fr,4139,9,182463,1,1,Active Shallow Crust,240.0054,58.00623,0.0,10/10/0478 +6.14053,46.47467,916,8,12,16,34,35,4.15,15.0,fr,4140,18,182473,1,1,Active Shallow Crust,0.0,89.98956,0.0,08/12/0916 +6.14053,46.47467,1784,9,17,20,13,1,4.15,5.0,fr,4141,35,182475,1,1,Active Shallow Crust,240.0082,57.99733,0.0,09/17/1784 +6.14053,46.47467,9576,7,16,22,4,43,4.25,15.0,fr,4142,191,182485,1,1,Active Shallow Crust,0.0,89.99069,0.0,07/16/9576 +6.14053,46.47467,6177,5,30,1,27,39,4.35,5.0,fr,4143,123,182496,1,2,Active Shallow Crust,0.0,89.98894,0.0,05/30/6177 +6.14053,46.47467,6991,8,1,17,8,37,4.35,5.0,fr,4144,139,182496,1,2,Active Shallow Crust,0.0,89.98894,0.0,08/01/6991 +6.14053,46.47467,3413,4,4,11,27,38,4.35,15.0,fr,4145,68,182497,1,1,Active Shallow Crust,0.0,89.98894,0.0,04/04/3413 +6.14053,46.47467,5079,2,8,22,38,0,4.65,5.0,fr,4146,101,182532,1,1,Active Shallow Crust,0.0,89.99021,0.0,02/08/5079 +6.14053,46.47467,9810,11,27,1,28,23,4.65,5.0,fr,4147,196,182538,1,1,Active Shallow Crust,0.0,89.9901,-90.0,11/27/9810 +6.14053,46.47467,3704,12,24,11,37,8,4.75,5.0,fr,4148,74,182544,1,2,Active Shallow Crust,0.0,89.98953,0.0,12/24/3704 +6.14053,46.47467,1059,6,6,17,5,50,4.75,5.0,fr,4149,21,182544,1,2,Active Shallow Crust,0.0,89.98953,0.0,06/06/1059 +6.14053,46.47467,8947,9,21,15,45,50,5.85,5.0,fr,4150,178,182676,1,1,Active Shallow Crust,0.0,89.99016,0.0,09/21/8947 +8.75121,49.70417,6912,1,10,21,52,18,3.55,5.0,fr,4151,138,182880,1,3,Active Shallow Crust,0.0,89.98695,0.0,01/10/6912 +8.75121,49.70417,9510,11,26,4,40,21,3.55,5.0,fr,4152,190,182880,1,3,Active Shallow Crust,0.0,89.98695,0.0,11/26/9510 +8.75121,49.70417,9508,10,31,16,23,47,3.55,5.0,fr,4153,190,182880,1,3,Active Shallow Crust,0.0,89.98695,0.0,10/31/9508 +8.75121,49.70417,5296,12,18,10,47,30,3.55,15.0,fr,4154,105,182881,1,1,Active Shallow Crust,0.0,89.98695,0.0,12/18/5296 +8.75121,49.70417,2194,7,13,6,49,24,3.65,15.0,fr,4155,43,182893,1,1,Active Shallow Crust,0.0,89.98837,0.0,07/13/2194 +8.75121,49.70417,7313,10,5,17,45,52,3.75,5.0,fr,4156,146,182904,1,1,Active Shallow Crust,0.0,89.98964,0.0,10/05/7313 +8.75121,49.70417,515,9,12,1,25,11,3.75,15.0,fr,4157,10,182905,1,1,Active Shallow Crust,0.0,89.98964,0.0,09/12/0515 +8.75121,49.70417,6028,10,21,2,8,10,3.85,5.0,fr,4158,120,182916,1,1,Active Shallow Crust,0.0,89.99077,0.0,10/21/6028 +8.75121,49.70417,3010,9,18,8,13,22,3.85,5.0,fr,4159,60,182919,1,1,Active Shallow Crust,240.01,57.99792,0.0,09/18/3010 +8.75121,49.70417,9034,10,8,0,20,51,3.95,5.0,fr,4160,180,182928,1,1,Active Shallow Crust,0.0,89.99177,0.0,10/08/9034 +8.75121,49.70417,671,11,14,23,43,57,3.95,15.0,fr,4161,13,182932,1,1,Active Shallow Crust,240.0205,58.00539,0.0,11/14/0671 +8.75121,49.70417,9923,3,15,17,10,49,3.95,5.0,fr,4162,198,182934,1,1,Active Shallow Crust,0.0,89.99168,-90.0,03/15/9923 +8.75121,49.70417,2463,11,26,14,13,5,3.95,5.0,fr,4163,49,182937,1,2,Active Shallow Crust,128.8996,89.99177,0.0,11/26/2463 +8.75121,49.70417,2749,5,5,10,32,14,3.95,5.0,fr,4164,54,182937,1,2,Active Shallow Crust,128.8996,89.99177,0.0,05/05/2749 +8.75121,49.70417,9865,8,5,4,39,18,4.15,5.0,fr,4165,197,182952,1,1,Active Shallow Crust,0.0,89.98692,0.0,08/05/9865 +8.75121,49.70417,1738,8,31,8,38,8,4.35,5.0,fr,4166,34,182976,1,1,Active Shallow Crust,0.0,89.98962,0.0,08/31/1738 +8.75121,49.70417,8072,4,28,13,48,27,4.45,5.0,fr,4167,161,182988,1,1,Active Shallow Crust,0.0,89.99075,0.0,04/28/8072 +8.75121,49.70417,8982,12,17,11,51,29,4.75,5.0,fr,4168,179,183024,1,1,Active Shallow Crust,0.0,89.99017,0.0,12/17/8982 +8.75121,49.70417,8987,11,13,9,26,25,4.95,5.0,fr,4169,179,183048,1,1,Active Shallow Crust,0.0,89.98959,0.0,11/13/8987 +8.75121,49.70417,7938,11,17,8,39,45,5.35,5.0,fr,4170,158,183096,1,2,Active Shallow Crust,0.0,89.99014,0.0,11/17/7938 +8.75121,49.70417,4979,1,11,20,23,49,5.35,5.0,fr,4171,99,183096,1,2,Active Shallow Crust,0.0,89.99014,0.0,01/11/4979 +2.79672,47.79646,5164,1,31,1,53,19,3.55,5.0,fr,4172,103,183360,1,1,Active Shallow Crust,0.0,89.98984,0.0,01/31/5164 +2.79672,47.79646,2697,4,1,8,14,44,3.65,15.0,fr,4173,53,183373,1,1,Active Shallow Crust,0.0,89.99094,0.0,04/01/2697 +2.79672,47.79646,1620,6,24,14,42,35,4.35,5.0,fr,4174,32,183456,1,1,Active Shallow Crust,0.0,89.99056,0.0,06/24/1620 +1.82729,46.81759,7043,8,13,23,46,50,3.55,15.0,fr,4175,140,184321,1,2,Active Shallow Crust,0.0,89.98965,0.0,08/13/7043 +1.82729,46.81759,9513,6,26,18,4,50,3.55,15.0,fr,4176,190,184321,1,2,Active Shallow Crust,0.0,89.98965,0.0,06/26/9513 +1.82729,46.81759,7785,12,18,15,7,29,3.55,27.5,fr,4177,155,184322,1,2,Active Shallow Crust,0.0,89.98965,0.0,12/18/7785 +1.82729,46.81759,7013,9,24,0,8,33,3.55,27.5,fr,4178,140,184322,1,2,Active Shallow Crust,0.0,89.98965,0.0,09/24/7013 +1.82729,46.81759,2963,9,29,20,5,51,3.55,5.0,fr,4179,59,184323,1,1,Active Shallow Crust,240.012,57.998,0.0,09/29/2963 +1.82729,46.81759,2087,2,28,17,15,17,3.65,15.0,fr,4180,41,184339,1,1,Active Shallow Crust,0.0,89.99067,-90.0,02/28/2087 +1.82729,46.81759,4970,10,6,4,5,2,3.75,15.0,fr,4181,99,184351,1,1,Active Shallow Crust,0.0,89.9903,-90.0,10/06/4970 +1.82729,46.81759,1299,1,13,6,35,59,3.85,5.0,fr,4182,25,184356,1,1,Active Shallow Crust,0.0,89.99023,0.0,01/13/1299 +1.82729,46.81759,1611,2,21,0,57,2,4.15,5.0,fr,4183,32,184392,1,1,Active Shallow Crust,0.0,89.98962,0.0,02/21/1611 +1.82729,46.81759,1283,5,22,16,41,26,4.35,5.0,fr,4184,25,184416,1,1,Active Shallow Crust,0.0,89.9897,0.0,05/22/1283 +1.82729,46.81759,7889,4,20,14,57,24,4.45,15.0,fr,4185,157,184429,1,1,Active Shallow Crust,0.0,89.9902,0.0,04/20/7889 +2.05232,46.16531,3347,4,28,7,19,11,3.55,5.0,fr,4186,66,185280,1,1,Active Shallow Crust,0.0,89.98952,0.0,04/28/3347 +2.05232,46.16531,4465,9,11,13,17,43,3.55,15.0,fr,4187,89,185281,1,1,Active Shallow Crust,0.0,89.98952,0.0,09/11/4465 +2.05232,46.16531,5138,11,19,7,15,20,3.55,5.0,fr,4188,102,185286,1,1,Active Shallow Crust,0.0,89.9894,-90.0,11/19/5138 +2.05232,46.16531,2336,8,27,15,12,41,3.55,15.0,fr,4189,46,185287,1,1,Active Shallow Crust,0.0,89.9894,-90.0,08/27/2336 +2.05232,46.16531,5992,6,20,11,14,46,3.65,5.0,fr,4190,119,185292,1,2,Active Shallow Crust,0.0,89.99066,0.0,06/20/5992 +2.05232,46.16531,4801,1,9,23,34,27,3.65,5.0,fr,4191,96,185292,1,2,Active Shallow Crust,0.0,89.99066,0.0,01/09/4801 +2.05232,46.16531,7436,2,13,6,9,44,3.65,15.0,fr,4192,148,185293,1,1,Active Shallow Crust,0.0,89.99066,0.0,02/13/7436 +2.05232,46.16531,2120,6,15,4,43,23,3.65,15.0,fr,4193,42,185302,1,1,Active Shallow Crust,128.8998,89.96352,0.0,06/15/2120 +2.05232,46.16531,9428,11,24,0,19,12,3.75,5.0,fr,4194,188,185304,1,2,Active Shallow Crust,0.0,89.98891,0.0,11/24/9428 +2.05232,46.16531,2265,2,11,23,30,54,3.75,5.0,fr,4195,45,185304,1,2,Active Shallow Crust,0.0,89.98891,0.0,02/11/2265 +2.05232,46.16531,4112,10,24,10,15,11,3.75,27.5,fr,4196,82,185312,1,1,Active Shallow Crust,0.0,89.98878,-90.0,10/24/4112 +2.05232,46.16531,1105,5,16,22,33,10,3.85,5.0,fr,4197,22,185316,1,1,Active Shallow Crust,0.0,89.99011,0.0,05/16/1105 +2.05232,46.16531,8634,5,31,11,7,49,3.95,5.0,fr,4198,172,185328,1,1,Active Shallow Crust,0.0,89.98898,0.0,05/31/8634 +2.05232,46.16531,6851,6,17,13,58,19,3.95,5.0,fr,4199,137,185337,1,1,Active Shallow Crust,128.9005,89.99339,0.0,06/17/6851 +2.05232,46.16531,8378,6,5,11,14,53,4.05,5.0,fr,4200,167,185340,1,3,Active Shallow Crust,0.0,89.99018,0.0,06/05/8378 +2.05232,46.16531,2546,6,22,11,6,31,4.05,5.0,fr,4201,50,185340,1,3,Active Shallow Crust,0.0,89.99018,0.0,06/22/2546 +2.05232,46.16531,6490,2,14,2,2,30,4.05,5.0,fr,4202,129,185340,1,3,Active Shallow Crust,0.0,89.99018,0.0,02/14/6490 +2.05232,46.16531,537,10,15,6,20,23,4.05,5.0,fr,4203,10,185346,1,1,Active Shallow Crust,0.0,89.99007,-90.0,10/15/0537 +2.05232,46.16531,6341,3,9,20,4,13,4.15,5.0,fr,4204,126,185352,1,1,Active Shallow Crust,0.0,89.9895,0.0,03/09/6341 +2.05232,46.16531,7986,6,14,9,49,44,4.25,5.0,fr,4205,159,185370,1,1,Active Shallow Crust,0.0,89.99053,-90.0,06/14/7986 +2.05232,46.16531,7819,8,10,9,30,31,4.45,5.0,fr,4206,156,185388,1,1,Active Shallow Crust,0.0,89.99009,0.0,08/10/7819 +2.05232,46.16531,9453,12,26,3,21,50,4.45,5.0,fr,4207,189,185394,1,1,Active Shallow Crust,0.0,89.98997,-90.0,12/26/9453 +2.05232,46.16531,2328,11,22,16,12,22,4.55,5.0,fr,4208,46,185400,1,1,Active Shallow Crust,0.0,89.99006,0.0,11/22/2328 +2.05232,46.16531,3276,12,31,9,41,39,5.45,5.0,fr,4209,65,185511,1,1,Active Shallow Crust,240.0287,57.99844,0.0,12/31/3276 +0.73891,47.01746,5474,1,13,1,46,18,3.55,5.0,fr,4210,109,185760,1,1,Active Shallow Crust,0.0,89.98969,0.0,01/13/5474 +0.73891,47.01746,8758,1,17,17,44,14,3.55,15.0,fr,4211,175,185761,1,2,Active Shallow Crust,0.0,89.98969,0.0,01/17/8758 +0.73891,47.01746,1732,11,1,1,36,13,3.55,15.0,fr,4212,34,185761,1,2,Active Shallow Crust,0.0,89.98969,0.0,11/01/1732 +0.73891,47.01746,7821,2,14,8,51,49,3.55,5.0,fr,4213,156,185763,1,1,Active Shallow Crust,240.0123,57.9981,0.0,02/14/7821 +0.73891,47.01746,501,11,12,21,54,18,3.65,5.0,fr,4214,10,185772,1,2,Active Shallow Crust,0.0,89.99004,0.0,11/12/0501 +0.73891,47.01746,5841,12,7,12,48,12,3.65,5.0,fr,4215,116,185772,1,2,Active Shallow Crust,0.0,89.99004,0.0,12/07/5841 +0.73891,47.01746,1727,12,3,4,57,7,3.65,15.0,fr,4216,34,185773,1,1,Active Shallow Crust,0.0,89.99004,0.0,12/03/1727 +0.73891,47.01746,4358,6,23,19,7,45,3.65,5.0,fr,4217,87,185778,1,2,Active Shallow Crust,0.0,89.98993,-90.0,06/23/4358 +0.73891,47.01746,5941,9,21,8,33,3,3.65,5.0,fr,4218,118,185778,1,2,Active Shallow Crust,0.0,89.98993,-90.0,09/21/5941 +0.73891,47.01746,3426,4,1,14,22,30,3.75,5.0,fr,4219,68,185790,1,1,Active Shallow Crust,0.0,89.99033,-90.0,04/01/3426 +0.73891,47.01746,7831,3,27,22,17,1,3.85,15.0,fr,4220,156,185800,1,1,Active Shallow Crust,240.0109,57.99779,0.0,03/27/7831 +0.73891,47.01746,4434,12,30,20,3,29,3.95,5.0,fr,4221,88,185808,1,1,Active Shallow Crust,0.0,89.99024,0.0,12/30/4434 +0.73891,47.01746,6043,8,24,21,12,35,3.95,15.0,fr,4222,120,185809,1,1,Active Shallow Crust,0.0,89.99024,0.0,08/24/6043 +0.73891,47.01746,6772,11,13,18,29,18,3.95,5.0,fr,4223,135,185814,1,1,Active Shallow Crust,0.0,89.99013,-90.0,11/13/6772 +0.73891,47.01746,9696,10,25,17,41,47,4.15,5.0,fr,4224,193,185832,1,1,Active Shallow Crust,0.0,89.9901,0.0,10/25/9696 +0.73891,47.01746,2298,9,22,9,41,18,4.25,5.0,fr,4225,45,185853,1,1,Active Shallow Crust,128.8942,89.9809,0.0,09/22/2298 +0.73891,47.01746,1625,12,2,9,4,45,5.35,15.0,fr,4226,32,185977,1,1,Active Shallow Crust,0.0,89.99004,0.0,12/02/1625 +-3.73416,44.00551,6559,11,9,3,30,27,3.55,5.0,fr,4227,131,186240,1,1,Active Shallow Crust,0.0,89.98912,0.0,11/09/6559 +-3.73416,44.00551,3018,5,18,2,42,18,3.85,5.0,fr,4228,60,186276,1,1,Active Shallow Crust,0.0,89.98973,0.0,05/18/3018 +-3.73416,44.00551,1630,9,22,19,41,22,4.05,15.0,fr,4229,32,186307,1,1,Active Shallow Crust,0.0,89.98969,-90.0,09/22/1630 +-3.73416,44.00551,253,2,26,10,54,52,4.35,15.0,fr,4230,5,186337,1,1,Active Shallow Crust,0.0,89.98989,0.0,02/26/0253 +0.6505,51.87585,6015,3,4,16,22,43,3.75,15.0,fr,4231,120,186745,1,1,Active Shallow Crust,0.0,89.99011,0.0,03/04/6015 +0.6505,51.87585,6978,7,16,0,49,20,3.85,15.0,fr,4232,139,186760,1,1,Active Shallow Crust,240.0116,57.998,0.0,07/16/6978 +0.6505,51.87585,9343,7,30,21,53,26,3.95,5.0,fr,4233,186,186768,1,1,Active Shallow Crust,0.0,89.99018,0.0,07/30/9343 +1.09585,48.36816,3110,6,6,10,45,41,3.75,5.0,fr,4234,62,187224,1,1,Active Shallow Crust,0.0,89.98936,0.0,06/06/3110 +1.09585,48.36816,6149,6,20,3,40,44,3.75,5.0,fr,4235,122,187227,1,1,Active Shallow Crust,240.0088,58.01748,0.0,06/20/6149 +1.09585,48.36816,7024,2,27,15,49,29,4.05,15.0,fr,4236,140,187261,1,1,Active Shallow Crust,0.0,89.98964,0.0,02/27/7024 +1.09585,48.36816,5607,10,29,1,19,42,4.15,15.0,fr,4237,112,187276,1,1,Active Shallow Crust,240.0087,57.99755,0.0,10/29/5607 +1.09585,48.36816,8838,6,3,2,58,32,4.35,15.0,fr,4238,176,187297,1,1,Active Shallow Crust,0.0,89.99,0.0,06/03/8838 +6.25699,42.79184,7211,4,28,23,23,2,3.75,5.0,fr,4239,144,187704,1,1,Active Shallow Crust,0.0,89.98824,0.0,04/28/7211 +6.25699,42.79184,8154,12,11,5,42,20,4.05,5.0,fr,4240,163,187740,1,1,Active Shallow Crust,0.0,89.99168,0.0,12/11/8154 +-2.5632,47.29797,8515,3,24,17,6,40,3.55,5.0,fr,4241,170,188160,1,1,Active Shallow Crust,0.0,89.98974,0.0,03/24/8515 +-2.5632,47.29797,2211,11,29,22,6,55,3.65,5.0,fr,4242,44,188172,1,3,Active Shallow Crust,0.0,89.99086,0.0,11/29/2211 +-2.5632,47.29797,6591,2,5,17,44,33,3.65,5.0,fr,4243,131,188172,1,3,Active Shallow Crust,0.0,89.99086,0.0,02/05/6591 +-2.5632,47.29797,9818,1,1,0,45,13,3.65,5.0,fr,4244,196,188172,1,3,Active Shallow Crust,0.0,89.99086,0.0,01/01/9818 +-2.5632,47.29797,383,11,8,4,38,0,3.85,5.0,fr,4245,7,188196,1,1,Active Shallow Crust,0.0,89.99032,0.0,11/08/0383 +-2.5632,47.29797,7377,11,19,11,17,14,3.95,5.0,fr,4246,147,188208,1,1,Active Shallow Crust,0.0,89.98921,0.0,11/19/7377 +-2.5632,47.29797,7116,5,4,4,26,2,3.95,15.0,fr,4247,142,188209,1,1,Active Shallow Crust,0.0,89.98921,0.0,05/04/7116 +-2.5632,47.29797,8373,2,9,0,19,47,4.35,15.0,fr,4248,167,188257,1,2,Active Shallow Crust,0.0,89.99047,0.0,02/09/8373 +-2.5632,47.29797,5946,2,3,17,32,50,4.35,15.0,fr,4249,118,188257,1,2,Active Shallow Crust,0.0,89.99047,0.0,02/03/5946 +-2.5632,47.29797,3751,7,30,19,16,4,4.35,27.5,fr,4250,75,188258,1,1,Active Shallow Crust,0.0,89.99047,0.0,07/30/3751 +-2.5632,47.29797,1239,8,5,4,23,27,4.75,5.0,fr,4251,24,188310,1,1,Active Shallow Crust,0.0,89.98957,-90.0,08/05/1239 +-2.5632,47.29797,9906,10,28,17,56,30,4.75,27.5,fr,4252,198,188312,1,1,Active Shallow Crust,0.0,89.98957,-90.0,10/28/9906 +1.76497,42.81482,2622,8,16,2,54,9,3.55,5.0,fr,4253,52,188640,1,2,Active Shallow Crust,0.0,89.99075,0.0,08/16/2622 +1.76497,42.81482,9000,4,8,21,18,45,3.55,5.0,fr,4254,179,188640,1,2,Active Shallow Crust,0.0,89.99075,0.0,04/08/9000 +1.76497,42.81482,9004,1,6,21,46,4,3.55,15.0,fr,4255,180,188641,1,2,Active Shallow Crust,0.0,89.99075,0.0,01/06/9004 +1.76497,42.81482,9633,11,3,0,59,14,3.55,15.0,fr,4256,192,188641,1,2,Active Shallow Crust,0.0,89.99075,0.0,11/03/9633 +1.76497,42.81482,9356,7,16,9,15,30,3.55,5.0,fr,4257,187,188643,1,1,Active Shallow Crust,240.0119,57.99791,0.0,07/16/9356 +1.76497,42.81482,8269,1,8,23,0,39,3.65,5.0,fr,4258,165,188652,1,4,Active Shallow Crust,0.0,89.99011,0.0,01/08/8269 +1.76497,42.81482,9397,11,13,21,22,53,3.65,5.0,fr,4259,187,188652,1,4,Active Shallow Crust,0.0,89.99011,0.0,11/13/9397 +1.76497,42.81482,6754,4,5,18,2,18,3.65,5.0,fr,4260,135,188652,1,4,Active Shallow Crust,0.0,89.99011,0.0,04/05/6754 +1.76497,42.81482,6700,8,6,17,59,56,3.65,5.0,fr,4261,133,188652,1,4,Active Shallow Crust,0.0,89.99011,0.0,08/06/6700 +1.76497,42.81482,114,2,27,14,45,27,3.65,15.0,fr,4262,2,188653,1,2,Active Shallow Crust,0.0,89.99011,0.0,02/27/0114 +1.76497,42.81482,3700,6,3,10,36,27,3.65,15.0,fr,4263,73,188653,1,2,Active Shallow Crust,0.0,89.99011,0.0,06/03/3700 +1.76497,42.81482,3959,6,8,23,2,11,3.65,5.0,fr,4264,79,188655,1,1,Active Shallow Crust,240.0007,58.01275,0.0,06/08/3959 +1.76497,42.81482,8183,12,4,2,42,18,3.65,5.0,fr,4265,163,188658,1,1,Active Shallow Crust,0.0,89.99,-90.0,12/04/8183 +1.76497,42.81482,1194,9,25,6,21,20,3.75,5.0,fr,4266,23,188664,1,1,Active Shallow Crust,0.0,89.98972,0.0,09/25/1194 +1.76497,42.81482,9714,5,21,6,48,2,3.85,5.0,fr,4267,194,188676,1,2,Active Shallow Crust,0.0,89.98952,0.0,05/21/9714 +1.76497,42.81482,1923,10,17,11,52,3,3.85,5.0,fr,4268,38,188676,1,2,Active Shallow Crust,0.0,89.98952,0.0,10/17/1923 +1.76497,42.81482,33,4,25,0,32,53,3.85,15.0,fr,4269,0,188680,1,1,Active Shallow Crust,240.0102,57.99781,0.0,04/25/0033 +1.76497,42.81482,3806,5,8,21,15,48,3.95,5.0,fr,4270,76,188688,1,1,Active Shallow Crust,0.0,89.9895,0.0,05/08/3806 +1.76497,42.81482,7010,12,21,2,37,45,3.95,5.0,fr,4271,140,188691,1,1,Active Shallow Crust,240.0193,58.00486,0.0,12/21/7010 +1.76497,42.81482,1289,12,19,13,49,2,4.05,15.0,fr,4272,25,188701,1,1,Active Shallow Crust,0.0,89.9896,0.0,12/19/1289 +1.76497,42.81482,8075,10,29,18,44,28,4.15,5.0,fr,4273,161,188712,1,1,Active Shallow Crust,0.0,89.98981,0.0,10/29/8075 +1.76497,42.81482,3679,11,14,20,54,57,4.25,5.0,fr,4274,73,188724,1,1,Active Shallow Crust,0.0,89.99009,0.0,11/14/3679 +1.76497,42.81482,9367,5,9,21,39,57,4.35,5.0,fr,4275,187,188736,1,1,Active Shallow Crust,0.0,89.98969,0.0,05/09/9367 +1.76497,42.81482,7790,8,12,8,13,38,4.65,5.0,fr,4276,155,188772,1,1,Active Shallow Crust,0.0,89.9901,0.0,08/12/7790 +-0.41688,49.73655,927,10,13,12,59,9,3.85,27.5,fr,4277,18,189158,1,1,Active Shallow Crust,0.0,89.98991,0.0,10/13/0927 +-0.41688,49.73655,6517,12,23,4,47,34,4.25,5.0,fr,4278,130,189204,1,1,Active Shallow Crust,0.0,89.98999,0.0,12/23/6517 +-0.41688,49.73655,7746,8,28,2,51,41,4.35,5.0,fr,4279,154,189216,1,1,Active Shallow Crust,0.0,89.98994,0.0,08/28/7746 +-0.41688,49.73655,1670,2,27,16,25,2,4.45,15.0,fr,4280,33,189229,1,1,Active Shallow Crust,0.0,89.99003,0.0,02/27/1670 +1.86259,48.27532,298,7,8,18,13,50,3.55,15.0,fr,4281,5,189601,1,2,Active Shallow Crust,0.0,89.98993,0.0,07/08/0298 +1.86259,48.27532,2717,8,3,3,55,15,3.55,15.0,fr,4282,54,189601,1,2,Active Shallow Crust,0.0,89.98993,0.0,08/03/2717 +1.86259,48.27532,6065,11,22,9,21,37,4.05,5.0,fr,4283,121,189660,1,1,Active Shallow Crust,0.0,89.98962,0.0,11/22/6065 +0.15189,46.30568,7685,6,28,22,42,29,3.55,5.0,fr,4284,153,190080,1,1,Active Shallow Crust,0.0,89.98998,0.0,06/28/7685 +0.15189,46.30568,3637,5,15,4,42,25,3.55,15.0,fr,4285,72,190081,1,1,Active Shallow Crust,0.0,89.98998,0.0,05/15/3637 +0.15189,46.30568,6670,11,20,18,30,0,3.55,27.5,fr,4286,133,190082,1,1,Active Shallow Crust,0.0,89.98998,0.0,11/20/6670 +0.15189,46.30568,1883,9,29,8,45,15,3.55,5.0,fr,4287,37,190089,1,1,Active Shallow Crust,128.8962,89.9938,0.0,09/29/1883 +0.15189,46.30568,732,3,19,21,14,18,3.55,15.0,fr,4288,14,190090,1,2,Active Shallow Crust,128.8962,89.9938,0.0,03/19/0732 +0.15189,46.30568,5192,12,4,20,22,11,3.55,15.0,fr,4289,103,190090,1,2,Active Shallow Crust,128.8962,89.9938,0.0,12/04/5192 +0.15189,46.30568,1166,10,2,15,21,59,3.75,5.0,fr,4290,23,190104,1,2,Active Shallow Crust,0.0,89.98997,0.0,10/02/1166 +0.15189,46.30568,3909,4,5,22,8,4,3.75,5.0,fr,4291,78,190104,1,2,Active Shallow Crust,0.0,89.98997,0.0,04/05/3909 +0.15189,46.30568,6742,9,24,11,23,54,3.75,5.0,fr,4292,134,190107,1,1,Active Shallow Crust,240.0083,58.01759,0.0,09/24/6742 +0.15189,46.30568,4454,6,21,16,55,23,3.75,15.0,fr,4293,89,190108,1,1,Active Shallow Crust,240.0083,58.01759,0.0,06/21/4454 +0.15189,46.30568,3803,8,2,7,30,21,3.85,5.0,fr,4294,76,190116,1,1,Active Shallow Crust,0.0,89.98998,0.0,08/02/3803 +0.15189,46.30568,4898,7,7,22,0,10,3.85,5.0,fr,4295,97,190119,1,1,Active Shallow Crust,240.0108,57.99778,0.0,07/07/4898 +0.15189,46.30568,6058,11,24,12,40,25,4.15,5.0,fr,4296,121,190152,1,1,Active Shallow Crust,0.0,89.98996,0.0,11/24/6058 +0.15189,46.30568,8288,2,11,20,37,55,4.25,15.0,fr,4297,165,190174,1,1,Active Shallow Crust,128.8943,89.98093,0.0,02/11/8288 +0.15189,46.30568,9476,3,12,21,43,20,4.45,5.0,fr,4298,189,190188,1,1,Active Shallow Crust,0.0,89.99004,0.0,03/12/9476 +0.15189,46.30568,4799,1,4,14,57,44,4.65,5.0,fr,4299,95,190212,1,1,Active Shallow Crust,0.0,89.99,0.0,01/04/4799 +-3.10975,42.82716,7317,9,3,8,56,48,3.55,5.0,fr,4300,146,190560,1,2,Active Shallow Crust,0.0,89.98891,0.0,09/03/7317 +-3.10975,42.82716,8129,7,31,0,12,8,3.55,5.0,fr,4301,162,190560,1,2,Active Shallow Crust,0.0,89.98891,0.0,07/31/8129 +-3.10975,42.82716,2790,1,8,14,55,24,3.55,15.0,fr,4302,55,190561,1,1,Active Shallow Crust,0.0,89.98891,0.0,01/08/2790 +-3.10975,42.82716,9439,3,26,2,41,50,3.65,5.0,fr,4303,188,190572,1,2,Active Shallow Crust,0.0,89.99011,0.0,03/26/9439 +-3.10975,42.82716,2412,4,18,14,10,30,3.65,5.0,fr,4304,48,190572,1,2,Active Shallow Crust,0.0,89.99011,0.0,04/18/2412 +-3.10975,42.82716,2963,4,23,10,4,44,3.65,5.0,fr,4305,59,190578,1,1,Active Shallow Crust,0.0,89.99,-90.0,04/23/2963 +-3.10975,42.82716,5166,5,26,8,5,2,3.85,5.0,fr,4306,103,190596,1,1,Active Shallow Crust,0.0,89.98952,0.0,05/26/5166 +-3.10975,42.82716,303,3,24,18,30,24,3.95,15.0,fr,4307,6,190618,1,1,Active Shallow Crust,128.9006,89.99417,0.0,03/24/0303 +-3.10975,42.82716,8667,3,5,21,16,37,4.15,5.0,fr,4308,173,190632,1,1,Active Shallow Crust,0.0,89.99073,0.0,03/05/8667 +-3.10975,42.82716,3045,1,16,17,31,24,4.35,27.5,fr,4309,60,190658,1,1,Active Shallow Crust,0.0,89.98969,0.0,01/16/3045 +-3.10975,42.82716,6164,7,23,20,25,27,4.65,15.0,fr,4310,123,190699,1,1,Active Shallow Crust,0.0,89.99051,-90.0,07/23/6164 +-3.10975,42.82716,5803,11,12,23,49,8,5.05,27.5,fr,4311,116,190742,1,1,Active Shallow Crust,0.0,89.99014,0.0,11/12/5803 +4.00067,48.48602,6043,10,9,17,30,30,3.65,5.0,fr,4312,120,191052,1,1,Active Shallow Crust,0.0,89.98808,0.0,10/09/6043 +4.00067,48.48602,1443,1,29,23,26,22,5.85,5.0,fr,4313,28,191316,1,1,Active Shallow Crust,0.0,89.99006,0.0,01/29/1443 +4.97445,44.22617,4616,2,8,20,47,8,3.55,5.0,fr,4314,92,191520,1,2,Active Shallow Crust,0.0,89.99277,0.0,02/08/4616 +4.97445,44.22617,4337,4,5,2,54,51,3.55,5.0,fr,4315,86,191520,1,2,Active Shallow Crust,0.0,89.99277,0.0,04/05/4337 +4.97445,44.22617,3499,4,20,12,25,18,3.55,27.5,fr,4316,69,191522,1,1,Active Shallow Crust,0.0,89.99277,0.0,04/20/3499 +4.97445,44.22617,8416,5,19,5,18,1,3.55,27.5,fr,4317,168,191525,1,1,Active Shallow Crust,240.0119,57.99768,0.0,05/19/8416 +4.97445,44.22617,2200,11,15,5,51,34,3.55,5.0,fr,4318,43,191526,1,1,Active Shallow Crust,0.0,89.99269,-90.0,11/15/2200 +4.97445,44.22617,9814,2,22,10,8,8,3.55,5.0,fr,4319,196,191529,1,1,Active Shallow Crust,128.8966,89.99277,0.0,02/22/9814 +4.97445,44.22617,1371,4,20,23,55,29,3.65,5.0,fr,4320,27,191532,1,4,Active Shallow Crust,0.0,89.98712,0.0,04/20/1371 +4.97445,44.22617,7113,1,11,22,46,18,3.65,5.0,fr,4321,142,191532,1,4,Active Shallow Crust,0.0,89.98712,0.0,01/11/7113 +4.97445,44.22617,88,2,20,8,7,31,3.65,5.0,fr,4322,1,191532,1,4,Active Shallow Crust,0.0,89.98712,0.0,02/20/0088 +4.97445,44.22617,2675,1,13,16,4,20,3.65,5.0,fr,4323,53,191532,1,4,Active Shallow Crust,0.0,89.98712,0.0,01/13/2675 +4.97445,44.22617,8388,10,23,23,50,2,3.65,15.0,fr,4324,167,191533,1,1,Active Shallow Crust,0.0,89.98712,0.0,10/23/8388 +4.97445,44.22617,7319,10,30,16,52,22,3.65,5.0,fr,4325,146,191535,1,1,Active Shallow Crust,239.9996,58.01346,0.0,10/30/7319 +4.97445,44.22617,4647,4,26,8,42,23,3.65,5.0,fr,4326,92,191541,1,1,Active Shallow Crust,128.9007,89.96348,0.0,04/26/4647 +4.97445,44.22617,3683,4,13,18,20,33,3.75,15.0,fr,4327,73,191545,1,1,Active Shallow Crust,0.0,89.98852,0.0,04/13/3683 +4.97445,44.22617,4559,7,21,2,22,52,3.75,27.5,fr,4328,91,191546,1,2,Active Shallow Crust,0.0,89.98852,0.0,07/21/4559 +4.97445,44.22617,7751,10,17,13,55,44,3.75,27.5,fr,4329,155,191546,1,2,Active Shallow Crust,0.0,89.98852,0.0,10/17/7751 +4.97445,44.22617,5256,11,29,14,18,16,3.85,5.0,fr,4330,105,191556,1,2,Active Shallow Crust,0.0,89.98977,0.0,11/29/5256 +4.97445,44.22617,1530,11,21,18,48,24,3.85,5.0,fr,4331,30,191556,1,2,Active Shallow Crust,0.0,89.98977,0.0,11/21/1530 +4.97445,44.22617,1937,9,29,0,55,1,3.85,15.0,fr,4332,38,191557,1,1,Active Shallow Crust,0.0,89.98977,0.0,09/29/1937 +4.97445,44.22617,3629,9,16,22,49,33,3.85,15.0,fr,4333,72,191560,1,1,Active Shallow Crust,240.0109,57.99781,0.0,09/16/3629 +4.97445,44.22617,9971,5,22,3,54,41,3.95,5.0,fr,4334,199,191571,1,1,Active Shallow Crust,240.0197,58.00413,0.0,05/22/9971 +4.97445,44.22617,6736,10,17,14,9,53,3.95,15.0,fr,4335,134,191575,1,1,Active Shallow Crust,0.0,89.99078,-90.0,10/17/6736 +4.97445,44.22617,2849,1,19,14,54,47,4.05,5.0,fr,4336,56,191580,1,2,Active Shallow Crust,0.0,89.99187,0.0,01/19/2849 +4.97445,44.22617,3934,1,22,2,41,44,4.05,5.0,fr,4337,78,191580,1,2,Active Shallow Crust,0.0,89.99187,0.0,01/22/3934 +4.97445,44.22617,7848,6,14,4,58,39,4.05,15.0,fr,4338,156,191584,1,1,Active Shallow Crust,240.006,58.00545,0.0,06/14/7848 +4.97445,44.22617,9178,2,23,0,34,53,4.25,5.0,fr,4339,183,191604,1,1,Active Shallow Crust,0.0,89.99032,0.0,02/23/9178 +4.97445,44.22617,7944,8,7,15,22,30,4.25,15.0,fr,4340,158,191605,1,1,Active Shallow Crust,0.0,89.99032,0.0,08/07/7944 +4.97445,44.22617,3505,9,23,15,37,49,4.25,5.0,fr,4341,70,191607,1,1,Active Shallow Crust,240.007,57.99404,0.0,09/23/3505 +4.97445,44.22617,3061,4,9,15,26,20,4.65,5.0,fr,4342,61,191655,1,1,Active Shallow Crust,240.0099,57.99398,0.0,04/09/3061 +4.97445,44.22617,1695,5,2,14,35,10,4.95,5.0,fr,4343,33,191688,1,1,Active Shallow Crust,0.0,89.98991,0.0,05/02/1695 +4.97445,44.22617,6263,11,19,4,29,40,4.95,15.0,fr,4344,125,191689,1,1,Active Shallow Crust,0.0,89.98991,0.0,11/19/6263 +4.97445,44.22617,9116,8,23,1,35,33,5.05,15.0,fr,4345,182,191704,1,1,Active Shallow Crust,240.021,57.99744,0.0,08/23/9116 +4.97445,44.22617,8300,3,6,7,27,54,5.45,5.0,fr,4346,165,191748,1,1,Active Shallow Crust,0.0,89.99026,0.0,03/06/8300 +2.41221,48.16906,9039,5,30,14,59,4,3.65,5.0,fr,4347,180,192018,1,1,Active Shallow Crust,0.0,89.99091,-90.0,05/30/9039 +2.41221,48.16906,534,3,1,8,4,9,3.75,5.0,fr,4348,10,192024,1,2,Active Shallow Crust,0.0,89.98932,0.0,03/01/0534 +2.41221,48.16906,2586,12,26,8,6,37,3.75,5.0,fr,4349,51,192024,1,2,Active Shallow Crust,0.0,89.98932,0.0,12/26/2586 +2.41221,48.16906,2400,10,7,2,52,50,4.05,15.0,fr,4350,47,192064,1,1,Active Shallow Crust,240.0058,58.00615,0.0,10/07/2400 +2.41221,48.16906,7279,3,16,14,16,55,4.35,5.0,fr,4351,145,192102,1,1,Active Shallow Crust,0.0,89.99052,-90.0,03/16/7279 +2.41221,48.16906,1883,3,2,23,11,51,4.55,5.0,fr,4352,37,192120,1,1,Active Shallow Crust,0.0,89.99043,0.0,03/02/1883 +2.41221,48.16906,8736,12,4,17,6,23,4.85,5.0,fr,4353,174,192156,1,1,Active Shallow Crust,0.0,89.99021,0.0,12/04/8736 +2.41221,48.16906,4891,7,23,16,47,45,6.65,15.0,fr,4354,97,192376,1,1,Active Shallow Crust,240.1212,57.99976,0.0,07/23/4891 +-0.06603,51.0672,4619,7,20,0,44,22,3.65,15.0,fr,4355,92,192493,1,1,Active Shallow Crust,0.0,89.99003,0.0,07/20/4619 +-0.06603,51.0672,6907,7,22,22,18,15,3.85,5.0,fr,4356,138,192516,1,1,Active Shallow Crust,0.0,89.98997,0.0,07/22/6907 +-0.06603,51.0672,3425,10,14,10,42,11,4.15,5.0,fr,4357,68,192561,1,1,Active Shallow Crust,128.8968,89.99372,0.0,10/14/3425 +-0.06603,51.0672,7643,8,29,0,35,49,4.55,5.0,fr,4358,152,192600,1,1,Active Shallow Crust,0.0,89.99001,0.0,08/29/7643 +0.69208,48.74275,9893,5,11,5,17,15,3.55,5.0,fr,4359,197,193440,1,1,Active Shallow Crust,0.0,89.99003,0.0,05/11/9893 +0.69208,48.74275,8572,5,9,23,22,33,3.55,15.0,fr,4360,171,193441,1,1,Active Shallow Crust,0.0,89.99003,0.0,05/09/8572 +0.69208,48.74275,5268,4,5,11,11,13,3.65,5.0,fr,4361,105,193452,1,1,Active Shallow Crust,0.0,89.99037,0.0,04/05/5268 +0.69208,48.74275,4887,7,3,19,45,20,3.65,15.0,fr,4362,97,193453,1,1,Active Shallow Crust,0.0,89.99037,0.0,07/03/4887 +0.69208,48.74275,4999,10,22,17,15,0,3.75,5.0,fr,4363,99,193464,1,1,Active Shallow Crust,0.0,89.9901,0.0,10/22/4999 +0.69208,48.74275,6603,4,20,13,51,37,4.35,5.0,fr,4364,132,193536,1,1,Active Shallow Crust,0.0,89.99007,0.0,04/20/6603 +-2.92337,47.80841,1257,2,25,12,1,53,3.55,5.0,fr,4365,25,193920,1,2,Active Shallow Crust,0.0,89.98984,0.0,02/25/1257 +-2.92337,47.80841,1302,4,2,10,57,30,3.55,5.0,fr,4366,26,193920,1,2,Active Shallow Crust,0.0,89.98984,0.0,04/02/1302 +-2.92337,47.80841,4563,8,10,19,39,43,3.55,15.0,fr,4367,91,193921,1,3,Active Shallow Crust,0.0,89.98984,0.0,08/10/4563 +-2.92337,47.80841,9969,9,21,17,22,51,3.55,15.0,fr,4368,199,193921,1,3,Active Shallow Crust,0.0,89.98984,0.0,09/21/9969 +-2.92337,47.80841,9990,3,29,20,33,38,3.55,15.0,fr,4369,199,193921,1,3,Active Shallow Crust,0.0,89.98984,0.0,03/29/9990 +-2.92337,47.80841,7755,7,25,17,47,35,3.55,5.0,fr,4370,155,193923,1,1,Active Shallow Crust,240.0118,57.99841,0.0,07/25/7755 +-2.92337,47.80841,2794,12,10,16,0,32,3.55,15.0,fr,4371,55,193930,1,1,Active Shallow Crust,128.8965,89.99323,0.0,12/10/2794 +-2.92337,47.80841,197,9,7,4,49,30,3.65,5.0,fr,4372,3,193932,1,2,Active Shallow Crust,0.0,89.99094,0.0,09/07/0197 +-2.92337,47.80841,585,11,15,5,8,19,3.65,5.0,fr,4373,11,193932,1,2,Active Shallow Crust,0.0,89.99094,0.0,11/15/0585 +-2.92337,47.80841,6679,4,5,21,11,32,3.65,27.5,fr,4374,133,193934,1,1,Active Shallow Crust,0.0,89.99094,0.0,04/05/6679 +-2.92337,47.80841,4815,10,8,7,54,27,3.65,15.0,fr,4375,96,193942,1,1,Active Shallow Crust,128.9003,89.96355,0.0,10/08/4815 +-2.92337,47.80841,624,3,18,3,30,29,3.75,5.0,fr,4376,12,193944,1,3,Active Shallow Crust,0.0,89.98924,0.0,03/18/0624 +-2.92337,47.80841,1063,5,20,0,46,45,3.75,5.0,fr,4377,21,193944,1,3,Active Shallow Crust,0.0,89.98924,0.0,05/20/1063 +-2.92337,47.80841,9116,1,29,14,9,19,3.75,5.0,fr,4378,182,193944,1,3,Active Shallow Crust,0.0,89.98924,0.0,01/29/9116 +-2.92337,47.80841,9758,3,6,6,29,5,3.75,15.0,fr,4379,195,193945,1,2,Active Shallow Crust,0.0,89.98924,0.0,03/06/9758 +-2.92337,47.80841,3114,8,23,15,28,52,3.75,15.0,fr,4380,62,193945,1,2,Active Shallow Crust,0.0,89.98924,0.0,08/23/3114 +-2.92337,47.80841,213,11,11,5,49,10,3.75,5.0,fr,4381,4,193953,1,1,Active Shallow Crust,128.8963,89.96751,0.0,11/11/0213 +-2.92337,47.80841,7764,8,8,6,57,22,3.85,5.0,fr,4382,155,193956,1,3,Active Shallow Crust,0.0,89.99041,0.0,08/08/7764 +-2.92337,47.80841,2758,4,29,23,8,4,3.85,5.0,fr,4383,55,193956,1,3,Active Shallow Crust,0.0,89.99041,0.0,04/29/2758 +-2.92337,47.80841,2762,2,4,20,13,59,3.85,5.0,fr,4384,55,193956,1,3,Active Shallow Crust,0.0,89.99041,0.0,02/04/2762 +-2.92337,47.80841,5466,8,25,5,36,35,3.85,27.5,fr,4385,109,193958,1,1,Active Shallow Crust,0.0,89.99041,0.0,08/25/5466 +-2.92337,47.80841,878,8,7,12,20,18,3.95,5.0,fr,4386,17,193968,1,2,Active Shallow Crust,0.0,89.98932,0.0,08/07/0878 +-2.92337,47.80841,9847,10,2,1,43,34,3.95,5.0,fr,4387,196,193968,1,2,Active Shallow Crust,0.0,89.98932,0.0,10/02/9847 +-2.92337,47.80841,6334,4,15,4,59,6,3.95,5.0,fr,4388,126,193971,1,2,Active Shallow Crust,240.02,58.0051,0.0,04/15/6334 +-2.92337,47.80841,7954,3,30,2,36,33,3.95,5.0,fr,4389,159,193971,1,2,Active Shallow Crust,240.02,58.0051,0.0,03/30/7954 +-2.92337,47.80841,6147,2,9,20,7,20,4.05,5.0,fr,4390,122,193980,1,2,Active Shallow Crust,0.0,89.99048,0.0,02/09/6147 +-2.92337,47.80841,8339,9,23,8,46,24,4.05,5.0,fr,4391,166,193980,1,2,Active Shallow Crust,0.0,89.99048,0.0,09/23/8339 +-2.92337,47.80841,7438,1,21,2,10,0,4.15,5.0,fr,4392,148,193992,1,2,Active Shallow Crust,0.0,89.98981,0.0,01/21/7438 +-2.92337,47.80841,9184,7,19,11,7,57,4.15,5.0,fr,4393,183,193992,1,2,Active Shallow Crust,0.0,89.98981,0.0,07/19/9184 +-2.92337,47.80841,8519,5,25,2,32,53,4.25,5.0,fr,4394,170,194004,1,2,Active Shallow Crust,0.0,89.98941,0.0,05/25/8519 +-2.92337,47.80841,3897,8,23,16,37,32,4.25,5.0,fr,4395,77,194004,1,2,Active Shallow Crust,0.0,89.98941,0.0,08/23/3897 +-2.92337,47.80841,8244,4,19,14,55,38,4.25,15.0,fr,4396,164,194005,1,1,Active Shallow Crust,0.0,89.98941,0.0,04/19/8244 +-2.92337,47.80841,6652,7,5,16,38,1,4.35,15.0,fr,4397,133,194017,1,1,Active Shallow Crust,0.0,89.99056,0.0,07/05/6652 +-2.92337,47.80841,7590,5,31,6,8,58,4.65,5.0,fr,4398,151,194052,1,1,Active Shallow Crust,0.0,89.99046,0.0,05/31/7590 +-2.92337,47.80841,7035,5,19,8,3,43,4.85,15.0,fr,4399,140,194077,1,1,Active Shallow Crust,0.0,89.99014,0.0,05/19/7035 +-2.92337,47.80841,4681,9,3,17,37,15,4.95,15.0,fr,4400,93,194089,1,1,Active Shallow Crust,0.0,89.98986,0.0,09/03/4681 +7.3314,49.79979,820,9,12,1,54,58,3.55,5.0,fr,4401,16,194400,1,2,Active Shallow Crust,0.0,89.98698,0.0,09/12/0820 +7.3314,49.79979,4716,9,7,16,14,46,3.55,5.0,fr,4402,94,194400,1,2,Active Shallow Crust,0.0,89.98698,0.0,09/07/4716 +7.3314,49.79979,6255,12,25,20,20,0,3.55,27.5,fr,4403,125,194408,1,1,Active Shallow Crust,0.0,89.98683,-90.0,12/25/6255 +7.3314,49.79979,8756,6,5,22,38,52,3.65,5.0,fr,4404,175,194412,1,1,Active Shallow Crust,0.0,89.9884,0.0,06/05/8756 +7.3314,49.79979,8854,6,12,13,57,38,3.75,5.0,fr,4405,177,194424,1,1,Active Shallow Crust,0.0,89.98966,0.0,06/12/8854 +7.3314,49.79979,9258,5,27,16,10,53,3.75,5.0,fr,4406,185,194430,1,1,Active Shallow Crust,0.0,89.98954,-90.0,05/27/9258 +7.3314,49.79979,268,9,4,10,18,32,3.75,5.0,fr,4407,5,194433,1,1,Active Shallow Crust,128.8964,89.96703,0.0,09/04/0268 +7.3314,49.79979,9234,10,20,23,51,40,3.85,5.0,fr,4408,184,194436,1,1,Active Shallow Crust,0.0,89.99078,0.0,10/20/9234 +7.3314,49.79979,4470,8,19,0,39,8,3.85,27.5,fr,4409,89,194438,1,1,Active Shallow Crust,0.0,89.99078,0.0,08/19/4470 +7.3314,49.79979,8593,7,13,0,9,33,3.95,5.0,fr,4410,171,194448,1,1,Active Shallow Crust,0.0,89.99178,0.0,07/13/8593 +7.3314,49.79979,6542,7,15,19,1,21,3.95,15.0,fr,4411,130,194449,1,1,Active Shallow Crust,0.0,89.99178,0.0,07/15/6542 +7.3314,49.79979,9431,6,24,14,5,16,3.95,5.0,fr,4412,188,194454,1,1,Active Shallow Crust,0.0,89.99169,-90.0,06/24/9431 +7.3314,49.79979,287,5,10,1,24,13,3.95,15.0,fr,4413,5,194455,1,1,Active Shallow Crust,0.0,89.99169,-90.0,05/10/0287 +7.3314,49.79979,4982,4,28,11,7,16,4.05,5.0,fr,4414,99,194463,1,1,Active Shallow Crust,240.0066,58.00587,0.0,04/28/4982 +7.3314,49.79979,3433,3,1,12,57,52,4.05,15.0,fr,4415,68,194464,1,1,Active Shallow Crust,240.0066,58.00584,0.0,03/01/3433 +7.3314,49.79979,2765,3,3,9,12,50,4.05,5.0,fr,4416,55,194466,1,1,Active Shallow Crust,0.0,89.98889,-90.0,03/03/2765 +5.38828,42.95016,5259,6,18,1,27,57,3.55,5.0,fr,4417,105,194880,1,1,Active Shallow Crust,0.0,89.99262,0.0,06/18/5259 +5.38828,42.95016,4678,4,16,22,38,58,3.55,27.5,fr,4418,93,194888,1,1,Active Shallow Crust,0.0,89.99253,-90.0,04/16/4678 +5.38828,42.95016,988,12,12,1,10,10,3.85,5.0,fr,4419,19,194925,1,1,Active Shallow Crust,128.8959,89.99477,0.0,12/12/0988 +5.38828,42.95016,6637,12,16,16,47,45,4.05,5.0,fr,4420,132,194940,1,1,Active Shallow Crust,0.0,89.9917,0.0,12/16/6637 +5.38828,42.95016,7002,6,11,8,22,24,4.75,15.0,fr,4421,140,195025,1,1,Active Shallow Crust,0.0,89.99073,0.0,06/11/7002 +7.8024,46.54136,8534,3,11,13,7,36,3.55,5.0,fr,4422,170,195360,1,1,Active Shallow Crust,0.0,89.99306,0.0,03/11/8534 +7.8024,46.54136,2490,4,28,10,42,37,3.55,15.0,fr,4423,49,195361,1,1,Active Shallow Crust,0.0,89.99306,0.0,04/28/2490 +7.8024,46.54136,6294,9,23,19,49,19,3.65,5.0,fr,4424,125,195372,1,1,Active Shallow Crust,0.0,89.98763,0.0,09/23/6294 +7.8024,46.54136,6998,5,22,11,55,58,3.65,15.0,fr,4425,139,195373,1,1,Active Shallow Crust,0.0,89.98763,0.0,05/22/6998 +7.8024,46.54136,8069,7,14,6,4,8,3.65,5.0,fr,4426,161,195378,1,2,Active Shallow Crust,0.0,89.9875,-90.0,07/14/8069 +7.8024,46.54136,8805,10,17,0,39,30,3.65,5.0,fr,4427,176,195378,1,2,Active Shallow Crust,0.0,89.9875,-90.0,10/17/8805 +7.8024,46.54136,8036,2,19,23,31,6,3.65,15.0,fr,4428,160,195379,1,1,Active Shallow Crust,0.0,89.9875,-90.0,02/19/8036 +7.8024,46.54136,2165,5,11,15,55,42,3.75,15.0,fr,4429,43,195388,1,1,Active Shallow Crust,240.0084,58.01736,0.0,05/11/2165 +7.8024,46.54136,3701,9,4,14,39,37,3.85,5.0,fr,4430,74,195396,1,1,Active Shallow Crust,0.0,89.99018,0.0,09/04/3701 +7.8024,46.54136,5205,11,10,12,17,10,3.85,15.0,fr,4431,104,195397,1,1,Active Shallow Crust,0.0,89.99018,0.0,11/10/5205 +7.8024,46.54136,3124,3,27,5,8,48,3.85,5.0,fr,4432,62,195405,1,1,Active Shallow Crust,128.8966,89.99264,0.0,03/27/3124 +7.8024,46.54136,6283,9,23,1,4,44,3.95,15.0,fr,4433,125,195409,1,1,Active Shallow Crust,0.0,89.99125,0.0,09/23/6283 +7.8024,46.54136,4835,11,19,8,16,31,3.95,5.0,fr,4434,96,195414,1,1,Active Shallow Crust,0.0,89.99114,-90.0,11/19/4835 +7.8024,46.54136,3490,6,4,0,6,7,3.95,15.0,fr,4435,69,195415,1,1,Active Shallow Crust,0.0,89.99114,-90.0,06/04/3490 +7.8024,46.54136,7955,4,30,8,34,55,4.25,5.0,fr,4436,159,195444,1,1,Active Shallow Crust,0.0,89.99071,0.0,04/30/7955 +7.8024,46.54136,7395,7,11,9,22,50,4.35,5.0,fr,4437,147,195456,1,1,Active Shallow Crust,0.0,89.98895,0.0,07/11/7395 +7.8024,46.54136,2058,8,7,1,9,13,4.45,15.0,fr,4438,41,195469,1,1,Active Shallow Crust,0.0,89.99016,0.0,08/07/2058 +7.8024,46.54136,8217,6,20,21,16,10,4.45,5.0,fr,4439,164,195471,1,1,Active Shallow Crust,240.0058,57.99427,0.0,06/20/8217 +7.8024,46.54136,3123,5,9,18,20,34,4.55,5.0,fr,4440,62,195480,1,1,Active Shallow Crust,0.0,89.98903,0.0,05/09/3123 +7.8024,46.54136,9762,6,28,13,59,8,4.65,5.0,fr,4441,195,195492,1,1,Active Shallow Crust,0.0,89.99023,0.0,06/28/9762 +7.8024,46.54136,6621,5,31,2,9,51,4.65,5.0,fr,4442,132,195495,1,1,Active Shallow Crust,240.011,57.99416,0.0,05/31/6621 +7.8024,46.54136,1350,8,22,15,14,5,4.75,5.0,fr,4443,26,195504,1,1,Active Shallow Crust,0.0,89.98955,0.0,08/22/1350 +7.8024,46.54136,5533,1,2,18,57,59,4.85,15.0,fr,4444,110,195517,1,2,Active Shallow Crust,0.0,89.99068,0.0,01/02/5533 +7.8024,46.54136,8470,11,27,8,54,30,4.85,15.0,fr,4445,169,195517,1,2,Active Shallow Crust,0.0,89.99068,0.0,11/27/8470 +3.82268,51.69889,8262,7,1,1,5,47,3.65,5.0,fr,4446,165,195861,1,1,Active Shallow Crust,128.9004,89.96339,0.0,07/01/8262 +3.82268,51.69889,876,10,8,3,9,25,4.05,5.0,fr,4447,17,195903,1,1,Active Shallow Crust,240.0067,58.00589,0.0,10/08/0876 +3.82268,51.69889,9221,10,27,23,24,9,4.25,15.0,fr,4448,184,195934,1,1,Active Shallow Crust,128.8931,89.98092,0.0,10/27/9221 +0.00967,44.53503,6955,11,19,10,25,22,3.75,5.0,fr,4449,139,196344,1,1,Active Shallow Crust,0.0,89.99,0.0,11/19/6955 +0.00967,44.53503,7048,2,23,7,19,51,3.85,15.0,fr,4450,140,196357,1,1,Active Shallow Crust,0.0,89.99,0.0,02/23/7048 +0.00967,44.53503,5397,9,16,15,37,46,3.85,5.0,fr,4451,107,196359,1,1,Active Shallow Crust,240.0106,57.99776,0.0,09/16/5397 +0.00967,44.53503,5098,1,14,4,7,36,4.35,15.0,fr,4452,101,196417,1,1,Active Shallow Crust,360.0,89.99,0.0,01/14/5098 +0.00967,44.53503,779,11,4,1,37,10,4.85,15.0,fr,4453,15,196477,1,1,Active Shallow Crust,360.0,89.99,0.0,11/04/0779 +5.17937,41.57646,3530,10,19,14,16,27,3.55,5.0,fr,4454,70,197280,1,1,Active Shallow Crust,0.0,89.99245,0.0,10/19/3530 +5.17937,41.57646,4547,6,30,5,18,44,3.55,15.0,fr,4455,90,197281,1,1,Active Shallow Crust,0.0,89.99245,0.0,06/30/4547 +5.17937,41.57646,9157,9,25,7,57,2,4.25,15.0,fr,4456,183,197365,1,1,Active Shallow Crust,0.0,89.98989,0.0,09/25/9157 +5.17937,41.57646,1472,1,31,1,50,47,4.85,5.0,fr,4457,29,197436,1,1,Active Shallow Crust,0.0,89.98987,0.0,01/31/1472 +-0.82013,50.89744,4102,4,22,3,58,37,3.65,15.0,fr,4458,82,197773,1,1,Active Shallow Crust,0.0,89.99008,0.0,04/22/4102 +-0.82013,50.89744,4607,4,22,3,33,52,3.75,15.0,fr,4459,92,197785,1,1,Active Shallow Crust,0.0,89.9899,0.0,04/22/4607 +-0.82013,50.89744,4601,9,6,11,58,35,4.15,5.0,fr,4460,92,197832,1,1,Active Shallow Crust,0.0,89.99004,0.0,09/06/4601 +-0.82013,50.89744,1880,11,15,0,27,45,4.45,5.0,fr,4461,37,197871,1,1,Active Shallow Crust,240.0066,57.9949,0.0,11/15/1880 +-2.34145,48.53474,3125,5,13,8,31,4,3.55,15.0,fr,4462,62,198244,1,1,Active Shallow Crust,240.0118,57.99834,0.0,05/13/3125 +-2.34145,48.53474,7769,5,30,14,43,20,3.55,5.0,fr,4463,155,198249,1,2,Active Shallow Crust,128.8961,89.99332,0.0,05/30/7769 +-2.34145,48.53474,1970,6,19,7,22,51,3.55,5.0,fr,4464,39,198249,1,2,Active Shallow Crust,128.8961,89.99332,0.0,06/19/1970 +-2.34145,48.53474,7685,1,22,16,20,50,3.65,5.0,fr,4465,153,198252,1,1,Active Shallow Crust,0.0,89.99107,0.0,01/22/7685 +-2.34145,48.53474,6770,1,4,14,10,47,3.65,15.0,fr,4466,135,198253,1,1,Active Shallow Crust,0.0,89.99107,0.0,01/04/6770 +-2.34145,48.53474,2174,9,2,9,11,49,3.65,15.0,fr,4467,43,198262,1,1,Active Shallow Crust,128.8998,89.96356,0.0,09/02/2174 +-2.34145,48.53474,7089,3,3,21,44,7,3.75,15.0,fr,4468,141,198265,1,1,Active Shallow Crust,0.0,89.9894,0.0,03/03/7089 +-2.34145,48.53474,9276,4,14,12,32,50,3.75,15.0,fr,4469,185,198268,1,1,Active Shallow Crust,240.0084,58.01805,0.0,04/14/9276 +-2.34145,48.53474,5363,1,30,10,2,45,3.75,15.0,fr,4470,107,198271,1,1,Active Shallow Crust,0.0,89.98927,-90.0,01/30/5363 +-2.34145,48.53474,7549,9,4,15,50,48,3.85,15.0,fr,4471,150,198277,1,1,Active Shallow Crust,0.0,89.99055,0.0,09/04/7549 +-2.34145,48.53474,6620,8,16,14,25,13,3.85,27.5,fr,4472,132,198284,1,1,Active Shallow Crust,0.0,89.99043,-90.0,08/16/6620 +-2.34145,48.53474,4228,2,11,17,52,45,3.95,5.0,fr,4473,84,198288,1,1,Active Shallow Crust,0.0,89.98946,0.0,02/11/4228 +-2.34145,48.53474,3114,8,29,11,22,17,3.95,27.5,fr,4474,62,198290,1,1,Active Shallow Crust,0.0,89.98946,0.0,08/29/3114 +-2.34145,48.53474,761,7,13,2,56,53,3.95,5.0,fr,4475,15,198291,1,1,Active Shallow Crust,240.0203,58.00498,0.0,07/13/0761 +-2.34145,48.53474,9334,11,1,20,19,15,4.05,15.0,fr,4476,186,198301,1,1,Active Shallow Crust,0.0,89.99062,0.0,11/01/9334 +-2.34145,48.53474,4715,6,13,23,37,1,4.05,27.5,fr,4477,94,198305,1,1,Active Shallow Crust,240.0064,58.00601,0.0,06/13/4715 +-2.34145,48.53474,5399,1,15,21,4,39,4.25,5.0,fr,4478,107,198324,1,1,Active Shallow Crust,0.0,89.98956,0.0,01/15/5399 +-2.34145,48.53474,4211,7,7,11,1,1,4.25,5.0,fr,4479,84,198330,1,1,Active Shallow Crust,0.0,89.98944,-90.0,07/07/4211 +-2.34145,48.53474,5550,10,28,0,37,22,4.35,15.0,fr,4480,110,198346,1,1,Active Shallow Crust,128.8975,89.98262,0.0,10/28/5550 +-2.34145,48.53474,9420,7,5,4,23,30,4.45,5.0,fr,4481,188,198348,1,1,Active Shallow Crust,0.0,89.99052,0.0,07/05/9420 +-2.34145,48.53474,4837,9,28,19,47,40,4.55,15.0,fr,4482,96,198364,1,1,Active Shallow Crust,240.01,57.99751,0.0,09/28/4837 +-2.34145,48.53474,617,1,27,7,52,0,4.65,5.0,fr,4483,12,198372,1,2,Active Shallow Crust,0.0,89.98965,0.0,01/27/0617 +-2.34145,48.53474,5185,2,25,4,47,32,4.65,5.0,fr,4484,103,198372,1,2,Active Shallow Crust,0.0,89.98965,0.0,02/25/5185 +-2.34145,48.53474,9947,11,30,17,38,30,4.75,5.0,fr,4485,198,198384,1,1,Active Shallow Crust,0.0,89.98994,0.0,11/30/9947 +-2.34145,48.53474,6748,9,6,7,34,53,4.95,27.5,fr,4486,134,198410,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/06/6748 +1.94262,48.41076,364,9,30,12,26,1,3.65,15.0,fr,4487,7,198733,1,1,Active Shallow Crust,0.0,89.98956,0.0,09/30/0364 +1.94262,48.41076,3049,6,24,16,27,14,4.25,5.0,fr,4488,60,198810,1,1,Active Shallow Crust,0.0,89.99017,-90.0,06/24/3049 +-0.14049,42.33478,5813,6,9,7,18,35,3.55,5.0,fr,4489,116,199689,1,1,Active Shallow Crust,128.8965,89.99371,0.0,06/09/5813 +-0.14049,42.33478,7320,4,6,2,59,35,3.75,5.0,fr,4490,146,199704,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/06/7320 +-0.14049,42.33478,5748,4,29,17,39,26,3.85,5.0,fr,4491,114,199719,1,1,Active Shallow Crust,240.0103,57.99772,0.0,04/29/5748 +-0.14049,42.33478,4510,5,23,11,2,48,4.35,15.0,fr,4492,90,199780,1,1,Active Shallow Crust,240.0075,57.99578,0.0,05/23/4510 +-0.14049,42.33478,4270,3,6,12,13,16,4.45,5.0,fr,4493,85,199788,1,1,Active Shallow Crust,0.0,89.99,0.0,03/06/4270 +-0.14049,42.33478,1466,1,22,20,30,49,5.75,15.0,fr,4494,29,199945,1,1,Active Shallow Crust,360.0,89.99001,0.0,01/22/1466 +-3.51518,48.70317,7427,1,2,8,52,39,3.55,5.0,fr,4495,148,200160,1,3,Active Shallow Crust,0.0,89.99002,0.0,01/02/7427 +-3.51518,48.70317,935,12,31,23,55,7,3.55,5.0,fr,4496,18,200160,1,3,Active Shallow Crust,0.0,89.99002,0.0,12/31/0935 +-3.51518,48.70317,2310,7,21,15,35,51,3.55,5.0,fr,4497,46,200160,1,3,Active Shallow Crust,0.0,89.99002,0.0,07/21/2310 +-3.51518,48.70317,7534,1,6,0,5,26,3.55,5.0,fr,4498,150,200166,1,1,Active Shallow Crust,0.0,89.9899,-90.0,01/06/7534 +-3.51518,48.70317,3856,1,10,0,36,21,3.85,15.0,fr,4499,77,200206,1,1,Active Shallow Crust,128.8956,89.99411,0.0,01/10/3856 +-3.51518,48.70317,9906,3,5,7,21,23,3.95,15.0,fr,4500,198,200218,1,1,Active Shallow Crust,128.9,89.99371,0.0,03/05/9906 +-3.51518,48.70317,9840,10,20,2,24,35,4.05,5.0,fr,4501,196,200220,1,1,Active Shallow Crust,0.0,89.99065,0.0,10/20/9840 +-3.51518,48.70317,6852,4,12,13,28,13,4.25,5.0,fr,4502,137,200247,1,2,Active Shallow Crust,240.0082,57.99418,0.0,04/12/6852 +-3.51518,48.70317,6514,4,6,13,24,14,4.25,5.0,fr,4503,130,200247,1,2,Active Shallow Crust,240.0082,57.99418,0.0,04/06/6514 +4.40187,52.83905,8665,2,6,16,1,38,4.05,5.0,fr,4504,173,200700,1,1,Active Shallow Crust,0.0,89.98972,0.0,02/06/8665 +0.70022,43.64383,9062,1,8,0,44,29,3.65,15.0,fr,4505,181,201622,1,1,Active Shallow Crust,128.9008,89.96347,0.0,01/08/9062 +0.70022,43.64383,3204,3,24,3,34,39,3.75,5.0,fr,4506,64,201633,1,1,Active Shallow Crust,128.8968,89.96738,0.0,03/24/3204 +0.70022,43.64383,412,11,26,5,18,30,4.35,5.0,fr,4507,8,201696,1,1,Active Shallow Crust,0.0,89.98983,0.0,11/26/0412 +7.25529,50.28847,603,4,17,14,4,48,3.55,5.0,fr,4508,12,202080,1,3,Active Shallow Crust,0.0,89.98711,0.0,04/17/0603 +7.25529,50.28847,4930,3,18,20,32,22,3.55,5.0,fr,4509,98,202080,1,3,Active Shallow Crust,0.0,89.98711,0.0,03/18/4930 +7.25529,50.28847,462,8,11,12,26,14,3.55,5.0,fr,4510,9,202080,1,3,Active Shallow Crust,0.0,89.98711,0.0,08/11/0462 +7.25529,50.28847,1626,10,1,22,53,12,3.55,15.0,fr,4511,32,202081,1,1,Active Shallow Crust,0.0,89.98711,0.0,10/01/1626 +7.25529,50.28847,6951,1,26,8,53,50,3.55,27.5,fr,4512,139,202085,1,1,Active Shallow Crust,240.0117,57.99882,0.0,01/26/6951 +7.25529,50.28847,3805,2,7,20,57,20,3.55,5.0,fr,4513,76,202086,1,1,Active Shallow Crust,0.0,89.98696,-90.0,02/07/3805 +7.25529,50.28847,5869,7,8,6,17,57,3.55,5.0,fr,4514,117,202089,1,1,Active Shallow Crust,128.8967,89.99356,0.0,07/08/5869 +7.25529,50.28847,9286,4,3,5,4,10,3.65,5.0,fr,4515,185,202092,1,4,Active Shallow Crust,0.0,89.98852,0.0,04/03/9286 +7.25529,50.28847,870,8,19,8,7,44,3.65,5.0,fr,4516,17,202092,1,4,Active Shallow Crust,0.0,89.98852,0.0,08/19/0870 +7.25529,50.28847,6673,11,16,5,40,30,3.65,5.0,fr,4517,133,202092,1,4,Active Shallow Crust,0.0,89.98852,0.0,11/16/6673 +7.25529,50.28847,2658,3,23,10,43,46,3.65,5.0,fr,4518,53,202092,1,4,Active Shallow Crust,0.0,89.98852,0.0,03/23/2658 +7.25529,50.28847,9563,6,8,5,18,4,3.65,15.0,fr,4519,191,202093,1,2,Active Shallow Crust,0.0,89.98852,0.0,06/08/9563 +7.25529,50.28847,5988,9,30,2,10,0,3.65,15.0,fr,4520,119,202093,1,2,Active Shallow Crust,0.0,89.98852,0.0,09/30/5988 +7.25529,50.28847,4299,1,31,20,33,39,3.65,5.0,fr,4521,85,202095,1,1,Active Shallow Crust,240.0015,58.01234,0.0,01/31/4299 +7.25529,50.28847,1102,1,29,22,15,53,3.65,15.0,fr,4522,22,202096,1,1,Active Shallow Crust,240.0015,58.01234,0.0,01/29/1102 +7.25529,50.28847,4061,8,6,17,17,47,3.65,5.0,fr,4523,81,202101,1,1,Active Shallow Crust,128.8991,89.9636,0.0,08/06/4061 +7.25529,50.28847,713,3,24,13,33,39,3.75,5.0,fr,4524,14,202113,1,1,Active Shallow Crust,128.8971,89.96706,0.0,03/24/0713 +7.25529,50.28847,9860,5,2,5,11,0,3.95,5.0,fr,4525,197,202128,1,3,Active Shallow Crust,0.0,89.99187,0.0,05/02/9860 +7.25529,50.28847,1084,1,23,1,11,34,3.95,5.0,fr,4526,21,202128,1,3,Active Shallow Crust,0.0,89.99187,0.0,01/23/1084 +7.25529,50.28847,7881,5,12,9,25,30,3.95,5.0,fr,4527,157,202128,1,3,Active Shallow Crust,0.0,89.99187,0.0,05/12/7881 +7.25529,50.28847,7534,11,30,18,28,34,3.95,5.0,fr,4528,150,202134,1,1,Active Shallow Crust,0.0,89.99178,-90.0,11/30/7534 +7.25529,50.28847,2849,6,21,22,8,34,3.95,5.0,fr,4529,56,202137,1,1,Active Shallow Crust,128.9008,89.99187,0.0,06/21/2849 +7.25529,50.28847,7791,8,6,6,45,10,4.05,15.0,fr,4530,155,202141,1,1,Active Shallow Crust,0.0,89.98913,0.0,08/06/7791 +7.25529,50.28847,2097,3,14,4,29,8,4.15,15.0,fr,4531,41,202153,1,1,Active Shallow Crust,0.0,89.99031,0.0,03/14/2097 +7.25529,50.28847,8856,3,7,14,36,31,4.25,5.0,fr,4532,177,202164,1,1,Active Shallow Crust,0.0,89.99136,0.0,03/07/8856 +7.25529,50.28847,7614,12,9,9,53,35,4.25,15.0,fr,4533,152,202165,1,1,Active Shallow Crust,0.0,89.99136,0.0,12/09/7614 +7.25529,50.28847,6044,11,7,1,10,10,4.35,5.0,fr,4534,120,202176,1,1,Active Shallow Crust,0.0,89.98974,0.0,11/07/6044 +7.25529,50.28847,2662,11,15,20,10,37,4.35,15.0,fr,4535,53,202177,1,2,Active Shallow Crust,0.0,89.98974,0.0,11/15/2662 +7.25529,50.28847,3446,10,12,1,31,30,4.35,15.0,fr,4536,68,202177,1,2,Active Shallow Crust,0.0,89.98974,0.0,10/12/3446 +7.25529,50.28847,6393,9,27,18,57,17,4.35,27.5,fr,4537,127,202178,1,1,Active Shallow Crust,0.0,89.98974,0.0,09/27/6393 +7.25529,50.28847,8924,4,17,7,43,45,4.55,15.0,fr,4538,178,202207,1,1,Active Shallow Crust,0.0,89.98969,-90.0,04/17/8924 +7.25529,50.28847,4435,4,15,5,19,42,4.55,5.0,fr,4539,88,202209,1,1,Active Shallow Crust,128.8932,89.98586,0.0,04/15/4435 +7.25529,50.28847,6831,12,15,11,50,45,4.75,5.0,fr,4540,136,202224,1,1,Active Shallow Crust,0.0,89.99029,0.0,12/15/6831 +7.25529,50.28847,2290,7,21,15,47,55,4.85,5.0,fr,4541,45,202236,1,1,Active Shallow Crust,0.0,89.9899,0.0,07/21/2290 +7.25529,50.28847,8105,2,27,15,58,52,4.95,5.0,fr,4542,162,202248,1,1,Active Shallow Crust,0.0,89.98972,0.0,02/27/8105 +7.25529,50.28847,4086,8,14,14,41,23,5.15,15.0,fr,4543,81,202276,1,1,Active Shallow Crust,240.0219,58.00038,0.0,08/14/4086 +7.25529,50.28847,735,6,11,9,35,38,5.35,15.0,fr,4544,14,202297,1,1,Active Shallow Crust,0.0,89.99026,0.0,06/11/0735 +2.8033,41.64291,4353,3,11,3,38,2,3.55,5.0,fr,4545,87,202560,1,4,Active Shallow Crust,0.0,89.98869,0.0,03/11/4353 +2.8033,41.64291,9697,9,20,7,42,45,3.55,5.0,fr,4546,193,202560,1,4,Active Shallow Crust,0.0,89.98869,0.0,09/20/9697 +2.8033,41.64291,4788,5,13,8,45,28,3.55,5.0,fr,4547,95,202560,1,4,Active Shallow Crust,0.0,89.98869,0.0,05/13/4788 +2.8033,41.64291,4689,8,13,20,54,25,3.55,5.0,fr,4548,93,202560,1,4,Active Shallow Crust,0.0,89.98869,0.0,08/13/4689 +2.8033,41.64291,823,7,30,16,14,19,3.55,27.5,fr,4549,16,202562,1,1,Active Shallow Crust,0.0,89.98869,0.0,07/30/0823 +2.8033,41.64291,7610,8,8,5,45,15,3.55,5.0,fr,4550,152,202566,1,1,Active Shallow Crust,0.0,89.98856,-90.0,08/08/7610 +2.8033,41.64291,9666,7,7,21,1,44,3.55,5.0,fr,4551,193,202569,1,3,Active Shallow Crust,128.8963,89.99435,0.0,07/07/9666 +2.8033,41.64291,6625,3,20,15,48,18,3.55,5.0,fr,4552,132,202569,1,3,Active Shallow Crust,128.8963,89.99435,0.0,03/20/6625 +2.8033,41.64291,7295,2,13,21,30,52,3.55,5.0,fr,4553,145,202569,1,3,Active Shallow Crust,128.8963,89.99435,0.0,02/13/7295 +2.8033,41.64291,8475,7,11,20,4,31,3.65,5.0,fr,4554,169,202572,1,1,Active Shallow Crust,0.0,89.98993,0.0,07/11/8475 +2.8033,41.64291,5824,3,19,6,48,6,3.65,15.0,fr,4555,116,202573,1,1,Active Shallow Crust,0.0,89.98993,0.0,03/19/5824 +2.8033,41.64291,6091,3,6,19,24,44,3.65,27.5,fr,4556,121,202574,1,1,Active Shallow Crust,0.0,89.98993,0.0,03/06/6091 +2.8033,41.64291,6419,2,8,3,34,28,3.65,5.0,fr,4557,128,202575,1,1,Active Shallow Crust,240.0005,58.01243,0.0,02/08/6419 +2.8033,41.64291,4909,4,19,3,47,13,3.75,5.0,fr,4558,98,202584,1,2,Active Shallow Crust,0.0,89.99102,0.0,04/19/4909 +2.8033,41.64291,9802,8,5,8,27,57,3.75,5.0,fr,4559,196,202584,1,2,Active Shallow Crust,0.0,89.99102,0.0,08/05/9802 +2.8033,41.64291,8219,12,10,13,39,49,3.75,5.0,fr,4560,164,202587,1,1,Active Shallow Crust,240.0077,58.01788,0.0,12/10/8219 +2.8033,41.64291,3079,1,1,9,10,12,3.75,5.0,fr,4561,61,202590,1,1,Active Shallow Crust,0.0,89.99092,-90.0,01/01/3079 +2.8033,41.64291,5181,1,26,18,48,39,3.85,15.0,fr,4562,103,202597,1,1,Active Shallow Crust,0.0,89.98933,0.0,01/26/5181 +2.8033,41.64291,7049,12,12,2,52,35,3.85,27.5,fr,4563,140,202598,1,1,Active Shallow Crust,0.0,89.98933,0.0,12/12/7049 +2.8033,41.64291,6542,5,26,10,0,0,3.85,5.0,fr,4564,130,202599,1,1,Active Shallow Crust,240.0102,57.99792,0.0,05/26/6542 +2.8033,41.64291,3239,11,24,18,37,1,3.85,5.0,fr,4565,64,202602,1,1,Active Shallow Crust,0.0,89.9892,-90.0,11/24/3239 +2.8033,41.64291,525,5,7,2,18,12,3.85,5.0,fr,4566,10,202605,1,1,Active Shallow Crust,128.8957,89.99467,0.0,05/07/0525 +2.8033,41.64291,5161,11,8,12,49,40,3.95,5.0,fr,4567,103,202608,1,3,Active Shallow Crust,0.0,89.99049,0.0,11/08/5161 +2.8033,41.64291,8577,12,30,11,26,47,3.95,5.0,fr,4568,171,202608,1,3,Active Shallow Crust,0.0,89.99049,0.0,12/30/8577 +2.8033,41.64291,6997,1,18,12,55,24,3.95,5.0,fr,4569,139,202608,1,3,Active Shallow Crust,0.0,89.99049,0.0,01/18/6997 +2.8033,41.64291,8062,6,7,23,18,21,3.95,27.5,fr,4570,161,202610,1,1,Active Shallow Crust,0.0,89.99049,0.0,06/07/8062 +2.8033,41.64291,9966,1,14,23,2,58,3.95,15.0,fr,4571,199,202612,1,1,Active Shallow Crust,240.0193,58.00494,0.0,01/14/9966 +2.8033,41.64291,6379,5,20,19,3,51,3.95,15.0,fr,4572,127,202615,1,1,Active Shallow Crust,0.0,89.99038,-90.0,05/20/6379 +2.8033,41.64291,5564,9,18,9,41,50,4.05,5.0,fr,4573,111,202620,1,2,Active Shallow Crust,0.0,89.9894,0.0,09/18/5564 +2.8033,41.64291,4640,12,25,22,3,44,4.05,5.0,fr,4574,92,202620,1,2,Active Shallow Crust,0.0,89.9894,0.0,12/25/4640 +2.8033,41.64291,718,5,21,19,14,8,4.05,15.0,fr,4575,14,202621,1,1,Active Shallow Crust,0.0,89.9894,0.0,05/21/0718 +2.8033,41.64291,7642,6,23,9,29,56,4.25,5.0,fr,4576,152,202644,1,1,Active Shallow Crust,0.0,89.9899,0.0,06/23/7642 +2.8033,41.64291,9900,8,4,0,52,48,4.25,5.0,fr,4577,197,202653,1,1,Active Shallow Crust,128.8952,89.98105,0.0,08/04/9900 +2.8033,41.64291,7383,11,10,22,51,7,4.55,5.0,fr,4578,147,202680,1,1,Active Shallow Crust,0.0,89.99047,0.0,11/10/7383 +2.8033,41.64291,2900,1,11,2,0,50,4.75,5.0,fr,4579,57,202704,1,1,Active Shallow Crust,0.0,89.98959,0.0,01/11/2900 +2.8033,41.64291,6913,2,11,13,32,41,4.85,5.0,fr,4580,138,202725,1,1,Active Shallow Crust,128.8942,89.98898,0.0,02/11/6913 +2.8033,41.64291,8068,9,20,20,7,43,4.95,27.5,fr,4581,161,202739,1,1,Active Shallow Crust,128.8914,89.98995,0.0,09/20/8068 +0.23942,51.21156,638,3,19,15,21,7,3.75,5.0,fr,4582,12,203064,1,1,Active Shallow Crust,0.0,89.98997,0.0,03/19/0638 +0.23942,51.21156,2086,6,1,18,4,24,3.75,5.0,fr,4583,41,203073,1,1,Active Shallow Crust,128.8961,89.96735,0.0,06/01/2086 +0.23942,51.21156,4984,5,31,0,16,15,4.35,15.0,fr,4584,99,203140,1,1,Active Shallow Crust,240.0096,57.99617,0.0,05/31/4984 +0.23942,51.21156,2277,11,2,8,31,51,4.85,15.0,fr,4585,45,203197,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/02/2277 +8.4003,47.12395,5410,2,9,1,8,29,3.55,5.0,fr,4586,108,203520,1,7,Active Shallow Crust,0.0,89.98627,0.0,02/09/5410 +8.4003,47.12395,6240,7,17,17,52,32,3.55,5.0,fr,4587,124,203520,1,7,Active Shallow Crust,0.0,89.98627,0.0,07/17/6240 +8.4003,47.12395,2798,4,5,5,50,22,3.55,5.0,fr,4588,55,203520,1,7,Active Shallow Crust,0.0,89.98627,0.0,04/05/2798 +8.4003,47.12395,6849,1,2,16,12,6,3.55,5.0,fr,4589,136,203520,1,7,Active Shallow Crust,0.0,89.98627,0.0,01/02/6849 +8.4003,47.12395,6594,4,4,7,39,50,3.55,5.0,fr,4590,131,203520,1,7,Active Shallow Crust,0.0,89.98627,0.0,04/04/6594 +8.4003,47.12395,9457,6,27,19,45,41,3.55,5.0,fr,4591,189,203520,1,7,Active Shallow Crust,0.0,89.98627,0.0,06/27/9457 +8.4003,47.12395,5344,7,7,2,14,44,3.55,5.0,fr,4592,106,203520,1,7,Active Shallow Crust,0.0,89.98627,0.0,07/07/5344 +8.4003,47.12395,911,7,21,20,20,50,3.55,15.0,fr,4593,18,203521,1,1,Active Shallow Crust,0.0,89.98627,0.0,07/21/0911 +8.4003,47.12395,4558,7,17,23,14,16,3.55,27.5,fr,4594,91,203522,1,1,Active Shallow Crust,0.0,89.98627,0.0,07/17/4558 +8.4003,47.12395,7849,3,3,0,15,39,3.55,5.0,fr,4595,156,203523,1,1,Active Shallow Crust,240.0119,57.99986,0.0,03/03/7849 +8.4003,47.12395,3540,6,26,20,1,29,3.55,5.0,fr,4596,70,203526,1,2,Active Shallow Crust,0.0,89.98612,-90.0,06/26/3540 +8.4003,47.12395,7790,8,9,17,55,27,3.55,5.0,fr,4597,155,203526,1,2,Active Shallow Crust,0.0,89.98612,-90.0,08/09/7790 +8.4003,47.12395,164,4,1,7,25,45,3.55,15.0,fr,4598,3,203527,1,1,Active Shallow Crust,0.0,89.98612,-90.0,04/01/0164 +8.4003,47.12395,9691,8,26,1,43,10,3.55,5.0,fr,4599,193,203529,1,1,Active Shallow Crust,128.8968,89.99314,0.0,08/26/9691 +8.4003,47.12395,9328,2,20,22,52,53,3.65,5.0,fr,4600,186,203532,1,4,Active Shallow Crust,0.0,89.98777,0.0,02/20/9328 +8.4003,47.12395,8587,10,21,8,41,20,3.65,5.0,fr,4601,171,203532,1,4,Active Shallow Crust,0.0,89.98777,0.0,10/21/8587 +8.4003,47.12395,3104,9,16,20,22,6,3.65,5.0,fr,4602,62,203532,1,4,Active Shallow Crust,0.0,89.98777,0.0,09/16/3104 +8.4003,47.12395,3407,9,26,10,32,21,3.65,5.0,fr,4603,68,203532,1,4,Active Shallow Crust,0.0,89.98777,0.0,09/26/3407 +8.4003,47.12395,9657,8,3,15,43,48,3.65,15.0,fr,4604,193,203533,1,2,Active Shallow Crust,0.0,89.98777,0.0,08/03/9657 +8.4003,47.12395,1207,10,19,8,38,28,3.65,15.0,fr,4605,24,203533,1,2,Active Shallow Crust,0.0,89.98777,0.0,10/19/1207 +8.4003,47.12395,3612,10,16,16,45,47,3.65,27.5,fr,4606,72,203534,1,1,Active Shallow Crust,0.0,89.98777,0.0,10/16/3612 +8.4003,47.12395,4851,1,1,14,45,6,3.65,5.0,fr,4607,97,203538,1,1,Active Shallow Crust,0.0,89.98763,-90.0,01/01/4851 +8.4003,47.12395,2607,2,22,6,14,47,3.75,5.0,fr,4608,52,203544,1,2,Active Shallow Crust,0.0,89.9891,0.0,02/22/2607 +8.4003,47.12395,1372,6,29,3,20,56,3.75,5.0,fr,4609,27,203544,1,2,Active Shallow Crust,0.0,89.9891,0.0,06/29/1372 +8.4003,47.12395,8487,10,12,22,3,7,3.75,27.5,fr,4610,169,203546,1,2,Active Shallow Crust,0.0,89.9891,0.0,10/12/8487 +8.4003,47.12395,1302,5,20,14,56,55,3.75,27.5,fr,4611,26,203546,1,2,Active Shallow Crust,0.0,89.9891,0.0,05/20/1302 +8.4003,47.12395,1475,12,24,16,36,56,3.75,5.0,fr,4612,29,203547,1,1,Active Shallow Crust,240.0066,58.01859,0.0,12/24/1475 +8.4003,47.12395,1607,9,6,22,4,10,3.85,5.0,fr,4613,32,203556,1,4,Active Shallow Crust,0.0,89.99029,0.0,09/06/1607 +8.4003,47.12395,69,5,3,22,32,8,3.85,5.0,fr,4614,1,203556,1,4,Active Shallow Crust,0.0,89.99029,0.0,05/03/0069 +8.4003,47.12395,8869,2,28,9,27,55,3.85,5.0,fr,4615,177,203556,1,4,Active Shallow Crust,0.0,89.99029,0.0,02/28/8869 +8.4003,47.12395,218,10,7,11,7,45,3.85,5.0,fr,4616,4,203556,1,4,Active Shallow Crust,0.0,89.99029,0.0,10/07/0218 +8.4003,47.12395,9925,4,3,15,21,30,3.85,15.0,fr,4617,198,203557,1,2,Active Shallow Crust,0.0,89.99029,0.0,04/03/9925 +8.4003,47.12395,7759,9,13,6,8,19,3.85,15.0,fr,4618,155,203557,1,2,Active Shallow Crust,0.0,89.99029,0.0,09/13/7759 +8.4003,47.12395,1419,1,16,9,15,35,3.85,27.5,fr,4619,28,203558,1,1,Active Shallow Crust,0.0,89.99029,0.0,01/16/1419 +8.4003,47.12395,1999,11,14,1,43,46,3.85,5.0,fr,4620,39,203559,1,2,Active Shallow Crust,240.012,57.99635,0.0,11/14/1999 +8.4003,47.12395,6388,1,9,21,32,41,3.85,5.0,fr,4621,127,203559,1,2,Active Shallow Crust,240.012,57.99635,0.0,01/09/6388 +8.4003,47.12395,2425,12,8,11,41,7,3.85,5.0,fr,4622,48,203565,1,1,Active Shallow Crust,128.8934,89.99514,0.0,12/08/2425 +8.4003,47.12395,6930,7,15,18,58,24,3.95,5.0,fr,4623,138,203568,1,1,Active Shallow Crust,0.0,89.99134,0.0,07/15/6930 +8.4003,47.12395,6864,11,19,5,44,28,3.95,15.0,fr,4624,137,203569,1,1,Active Shallow Crust,0.0,89.99134,0.0,11/19/6864 +8.4003,47.12395,4105,3,13,20,52,41,3.95,27.5,fr,4625,82,203570,1,1,Active Shallow Crust,0.0,89.99134,0.0,03/13/4105 +8.4003,47.12395,6110,10,14,19,4,19,3.95,5.0,fr,4626,122,203571,1,1,Active Shallow Crust,240.0198,58.00425,0.0,10/14/6110 +8.4003,47.12395,8842,2,11,23,11,23,3.95,5.0,fr,4627,176,203574,1,2,Active Shallow Crust,0.0,89.99124,-90.0,02/11/8842 +8.4003,47.12395,8700,9,18,1,42,29,3.95,5.0,fr,4628,173,203574,1,2,Active Shallow Crust,0.0,89.99124,-90.0,09/18/8700 +8.4003,47.12395,2008,3,3,22,55,26,4.05,5.0,fr,4629,40,203580,1,2,Active Shallow Crust,0.0,89.99229,0.0,03/03/2008 +8.4003,47.12395,7463,2,4,19,37,47,4.05,5.0,fr,4630,149,203580,1,2,Active Shallow Crust,0.0,89.99229,0.0,02/04/7463 +8.4003,47.12395,1877,12,3,13,49,21,4.15,27.5,fr,4631,37,203594,1,1,Active Shallow Crust,0.0,89.99312,0.0,12/03/1877 +8.4003,47.12395,8626,8,25,6,21,29,4.25,5.0,fr,4632,172,203604,1,2,Active Shallow Crust,0.0,89.98774,0.0,08/25/8626 +8.4003,47.12395,8457,10,13,4,2,5,4.25,5.0,fr,4633,169,203604,1,2,Active Shallow Crust,0.0,89.98774,0.0,10/13/8457 +8.4003,47.12395,6734,6,16,20,41,2,4.35,5.0,fr,4634,134,203616,1,1,Active Shallow Crust,0.0,89.98907,0.0,06/16/6734 +8.4003,47.12395,7981,6,28,8,36,41,4.35,15.0,fr,4635,159,203626,1,1,Active Shallow Crust,128.8979,89.98304,0.0,06/28/7981 +8.4003,47.12395,3833,10,13,12,43,48,4.55,15.0,fr,4636,76,203641,1,1,Active Shallow Crust,0.0,89.99132,0.0,10/13/3833 +8.4003,47.12395,3531,11,27,14,53,47,4.55,27.5,fr,4637,70,203642,1,1,Active Shallow Crust,0.0,89.99132,0.0,11/27/3531 +8.4003,47.12395,8504,7,10,4,2,42,4.95,5.0,fr,4638,170,203688,1,1,Active Shallow Crust,0.0,89.98904,0.0,07/10/8504 +8.4003,47.12395,1570,7,18,7,48,4,4.95,5.0,fr,4639,31,203694,1,1,Active Shallow Crust,0.0,89.98892,-90.0,07/18/1570 +8.4003,47.12395,703,11,8,6,6,56,5.25,5.0,fr,4640,14,203724,1,1,Active Shallow Crust,0.0,89.9903,0.0,11/08/0703 +8.4003,47.12395,7002,6,7,11,11,30,5.75,5.0,fr,4641,140,203784,1,1,Active Shallow Crust,0.0,89.99018,0.0,06/07/7002 +0.83505,42.43111,5849,4,17,19,46,15,3.55,15.0,fr,4642,116,204001,1,1,Active Shallow Crust,0.0,89.98977,0.0,04/17/5849 +0.83505,42.43111,4317,11,22,23,10,49,3.55,5.0,fr,4643,86,204003,1,1,Active Shallow Crust,240.0118,57.99815,0.0,11/22/4317 +0.83505,42.43111,83,9,6,22,0,32,3.55,5.0,fr,4644,1,204006,1,1,Active Shallow Crust,0.0,89.98965,-90.0,09/06/0083 +0.83505,42.43111,2148,6,15,11,4,35,3.65,5.0,fr,4645,42,204012,1,1,Active Shallow Crust,0.0,89.99005,0.0,06/15/2148 +0.83505,42.43111,3966,4,9,19,22,4,3.65,15.0,fr,4646,79,204013,1,1,Active Shallow Crust,0.0,89.99005,0.0,04/09/3966 +0.83505,42.43111,4387,12,28,21,45,10,3.65,5.0,fr,4647,87,204018,1,1,Active Shallow Crust,0.0,89.98994,-90.0,12/28/4387 +0.83505,42.43111,6265,3,10,13,51,12,3.75,5.0,fr,4648,125,204024,1,1,Active Shallow Crust,0.0,89.98965,0.0,03/10/6265 +0.83505,42.43111,105,4,27,22,18,28,3.75,5.0,fr,4649,2,204027,1,1,Active Shallow Crust,240.0079,58.01748,0.0,04/27/0105 +0.83505,42.43111,8202,3,8,15,7,2,3.75,5.0,fr,4650,164,204033,1,1,Active Shallow Crust,128.8971,89.96735,0.0,03/08/8202 +0.83505,42.43111,1000,2,7,12,12,25,3.75,15.0,fr,4651,19,204034,1,1,Active Shallow Crust,128.8971,89.96735,0.0,02/07/1000 +0.83505,42.43111,9279,5,29,12,45,25,3.85,5.0,fr,4652,185,204036,1,1,Active Shallow Crust,0.0,89.99012,0.0,05/29/9279 +0.83505,42.43111,2540,2,23,14,41,39,3.85,15.0,fr,4653,50,204037,1,1,Active Shallow Crust,0.0,89.99012,0.0,02/23/2540 +0.83505,42.43111,4849,6,5,10,12,55,3.95,5.0,fr,4654,96,204054,1,1,Active Shallow Crust,0.0,89.98991,-90.0,06/05/4849 +0.83505,42.43111,310,3,18,22,23,40,4.05,15.0,fr,4655,6,204061,1,2,Active Shallow Crust,0.0,89.99006,0.0,03/18/0310 +0.83505,42.43111,5541,6,16,7,42,23,4.05,15.0,fr,4656,110,204061,1,2,Active Shallow Crust,0.0,89.99006,0.0,06/16/5541 +0.83505,42.43111,5858,11,15,8,52,52,4.05,5.0,fr,4657,117,204063,1,1,Active Shallow Crust,240.0054,58.00568,0.0,11/15/5858 +0.83505,42.43111,2133,10,10,4,10,57,4.15,15.0,fr,4658,42,204073,1,1,Active Shallow Crust,0.0,89.99021,0.0,10/10/2133 +0.83505,42.43111,8199,9,29,1,31,5,4.25,5.0,fr,4659,163,204084,1,1,Active Shallow Crust,0.0,89.99003,0.0,09/29/8199 +0.83505,42.43111,7475,1,28,9,27,49,4.25,15.0,fr,4660,149,204094,1,1,Active Shallow Crust,128.8951,89.98087,0.0,01/28/7475 +0.83505,42.43111,8957,6,21,12,2,19,4.55,27.5,fr,4661,179,204122,1,1,Active Shallow Crust,0.0,89.99,0.0,06/21/8957 +0.83505,42.43111,8606,9,1,14,27,5,4.55,15.0,fr,4662,172,204124,1,1,Active Shallow Crust,240.0081,57.99718,0.0,09/01/8606 +8.58915,48.29825,531,11,27,20,38,24,3.55,5.0,fr,4663,10,204960,1,2,Active Shallow Crust,0.0,89.98658,0.0,11/27/0531 +8.58915,48.29825,9136,4,26,13,18,28,3.55,5.0,fr,4664,182,204960,1,2,Active Shallow Crust,0.0,89.98658,0.0,04/26/9136 +8.58915,48.29825,6956,11,6,10,44,2,3.55,15.0,fr,4665,139,204961,1,1,Active Shallow Crust,0.0,89.98658,0.0,11/06/6956 +8.58915,48.29825,570,12,15,13,14,42,3.55,5.0,fr,4666,11,204966,1,1,Active Shallow Crust,0.0,89.98643,-90.0,12/15/0570 +8.58915,48.29825,2441,2,2,6,5,0,3.65,15.0,fr,4667,48,204973,1,1,Active Shallow Crust,0.0,89.98804,0.0,02/02/2441 +8.58915,48.29825,9618,4,12,13,24,27,3.65,15.0,fr,4668,192,204976,1,1,Active Shallow Crust,239.9998,58.01321,0.0,04/12/9618 +8.58915,48.29825,6280,1,1,2,46,27,3.75,5.0,fr,4669,125,204984,1,1,Active Shallow Crust,0.0,89.98934,0.0,01/01/6280 +8.58915,48.29825,6502,3,15,9,29,25,3.75,27.5,fr,4670,130,204986,1,1,Active Shallow Crust,0.0,89.98934,0.0,03/15/6502 +8.58915,48.29825,3656,10,13,20,58,49,3.75,5.0,fr,4671,73,204990,1,1,Active Shallow Crust,0.0,89.98922,-90.0,10/13/3656 +8.58915,48.29825,5994,9,1,5,4,44,3.95,5.0,fr,4672,119,205011,1,2,Active Shallow Crust,240.0196,58.00592,0.0,09/01/5994 +8.58915,48.29825,6629,10,1,5,41,37,3.95,5.0,fr,4673,132,205011,1,2,Active Shallow Crust,240.0196,58.00592,0.0,10/01/6629 +8.58915,48.29825,4288,5,4,19,59,4,3.95,15.0,fr,4674,85,205015,1,1,Active Shallow Crust,0.0,89.99144,-90.0,05/04/4288 +8.58915,48.29825,6414,11,28,2,1,59,4.05,5.0,fr,4675,128,205020,1,1,Active Shallow Crust,0.0,89.99245,0.0,11/28/6414 +8.58915,48.29825,9709,6,30,15,54,5,4.25,15.0,fr,4676,194,205045,1,1,Active Shallow Crust,0.0,89.98801,0.0,06/30/9709 +8.58915,48.29825,7954,3,21,10,54,13,4.35,15.0,fr,4677,159,205057,1,1,Active Shallow Crust,0.0,89.98932,0.0,03/21/7954 +8.58915,48.29825,3753,5,14,19,22,37,4.65,27.5,fr,4678,75,205094,1,1,Active Shallow Crust,0.0,89.98866,0.0,05/14/3753 +8.58915,48.29825,5174,11,21,16,20,0,4.95,5.0,fr,4679,103,205131,1,1,Active Shallow Crust,240.0127,58.00488,0.0,11/21/5174 +2.22073,47.50126,1237,8,27,23,55,27,3.75,27.5,fr,4680,24,205466,1,1,Active Shallow Crust,0.0,89.98917,0.0,08/27/1237 +2.22073,47.50126,6410,6,17,11,51,49,3.85,27.5,fr,4681,128,205478,1,1,Active Shallow Crust,0.0,89.99036,0.0,06/17/6410 +2.22073,47.50126,8566,4,13,2,4,29,3.85,5.0,fr,4682,171,205479,1,1,Active Shallow Crust,240.011,57.99768,0.0,04/13/8566 +1.18833,45.30519,7355,2,12,3,42,52,3.55,5.0,fr,4683,147,205920,1,1,Active Shallow Crust,0.0,89.98936,0.0,02/12/7355 +1.18833,45.30519,6857,9,27,10,30,59,3.55,15.0,fr,4684,137,205921,1,1,Active Shallow Crust,0.0,89.98936,0.0,09/27/6857 +1.18833,45.30519,5299,12,6,8,59,11,3.65,5.0,fr,4685,105,205932,1,1,Active Shallow Crust,0.0,89.99052,0.0,12/06/5299 +1.18833,45.30519,3840,1,19,5,25,37,3.65,27.5,fr,4686,76,205934,1,1,Active Shallow Crust,0.0,89.99052,0.0,01/19/3840 +1.18833,45.30519,9895,1,20,19,13,24,3.85,15.0,fr,4687,197,205957,1,1,Active Shallow Crust,0.0,89.98996,0.0,01/20/9895 +1.18833,45.30519,9035,4,16,23,33,28,4.05,15.0,fr,4688,180,205981,1,1,Active Shallow Crust,0.0,89.99003,0.0,04/16/9035 +1.18833,45.30519,7143,7,21,22,25,1,4.25,5.0,fr,4689,142,206010,1,1,Active Shallow Crust,0.0,89.99039,-90.0,07/21/7143 +1.18833,45.30519,6942,1,16,21,42,56,5.45,5.0,fr,4690,138,206148,1,1,Active Shallow Crust,0.0,89.99005,0.0,01/16/6942 +-1.15018,46.87827,9370,9,12,21,40,35,3.55,5.0,fr,4691,187,206400,1,1,Active Shallow Crust,0.0,89.98966,0.0,09/12/9370 +-1.15018,46.87827,7058,4,29,8,9,50,3.55,15.0,fr,4692,141,206401,1,1,Active Shallow Crust,0.0,89.98966,0.0,04/29/7058 +-1.15018,46.87827,3888,3,20,19,36,35,3.65,5.0,fr,4693,77,206412,1,1,Active Shallow Crust,0.0,89.98925,0.0,03/20/3888 +-1.15018,46.87827,4107,1,20,13,36,37,3.75,5.0,fr,4694,82,206424,1,1,Active Shallow Crust,0.0,89.99042,0.0,01/20/4107 +-1.15018,46.87827,9934,10,26,5,16,46,3.95,5.0,fr,4695,198,206448,1,3,Active Shallow Crust,0.0,89.99021,0.0,10/26/9934 +-1.15018,46.87827,3592,4,13,15,19,43,3.95,5.0,fr,4696,71,206448,1,3,Active Shallow Crust,0.0,89.99021,0.0,04/13/3592 +-1.15018,46.87827,9174,9,1,17,53,37,3.95,5.0,fr,4697,183,206448,1,3,Active Shallow Crust,0.0,89.99021,0.0,09/01/9174 +-1.15018,46.87827,5085,10,18,8,41,47,3.95,15.0,fr,4698,101,206449,1,1,Active Shallow Crust,0.0,89.99021,0.0,10/18/5085 +-1.15018,46.87827,7904,6,2,6,5,21,4.05,5.0,fr,4699,158,206466,1,1,Active Shallow Crust,0.0,89.9902,-90.0,06/02/7904 +-1.15018,46.87827,3350,6,2,23,15,49,4.05,15.0,fr,4700,66,206470,1,1,Active Shallow Crust,128.8905,89.99371,0.0,06/02/3350 +-1.15018,46.87827,4492,1,26,17,43,28,4.15,5.0,fr,4701,89,206472,1,2,Active Shallow Crust,0.0,89.98964,0.0,01/26/4492 +-1.15018,46.87827,7245,10,1,11,39,53,4.15,5.0,fr,4702,144,206472,1,2,Active Shallow Crust,0.0,89.98964,0.0,10/01/7245 +-1.15018,46.87827,1839,2,10,4,49,51,4.15,15.0,fr,4703,36,206476,1,2,Active Shallow Crust,240.0085,57.99728,0.0,02/10/1839 +-1.15018,46.87827,3444,11,30,13,30,2,4.15,15.0,fr,4704,68,206476,1,2,Active Shallow Crust,240.0085,57.99728,0.0,11/30/3444 +-1.15018,46.87827,8737,6,24,13,35,15,4.25,15.0,fr,4705,174,206485,1,1,Active Shallow Crust,0.0,89.98999,0.0,06/24/8737 +-1.15018,46.87827,505,2,1,2,1,30,4.35,15.0,fr,4706,10,206497,1,1,Active Shallow Crust,0.0,89.98971,0.0,02/01/0505 +-1.15018,46.87827,5308,3,14,6,32,20,4.35,5.0,fr,4707,106,206499,1,1,Active Shallow Crust,240.0083,57.99605,0.0,03/14/5308 +-1.15018,46.87827,5410,4,8,15,10,32,4.45,5.0,fr,4708,108,206508,1,2,Active Shallow Crust,0.0,89.99022,0.0,04/08/5410 +-1.15018,46.87827,2141,11,1,20,33,52,4.45,5.0,fr,4709,42,206508,1,2,Active Shallow Crust,0.0,89.99022,0.0,11/01/2141 +-1.15018,46.87827,1880,5,14,21,39,22,4.55,27.5,fr,4710,37,206522,1,1,Active Shallow Crust,0.0,89.99019,0.0,05/14/1880 +-1.15018,46.87827,1831,9,10,20,13,7,4.75,5.0,fr,4711,36,206544,1,1,Active Shallow Crust,0.0,89.99004,0.0,09/10/1831 +1.22121,50.34305,9684,12,19,21,12,45,3.55,5.0,fr,4712,193,206883,1,1,Active Shallow Crust,240.0122,57.99846,0.0,12/19/9684 +1.22121,50.34305,8027,4,25,8,41,27,3.85,5.0,fr,4713,160,206925,1,1,Active Shallow Crust,128.8954,89.99374,0.0,04/25/8027 +1.22121,50.34305,7776,11,8,22,23,59,3.95,15.0,fr,4714,155,206932,1,1,Active Shallow Crust,240.0204,58.00499,0.0,11/08/7776 +1.22121,50.34305,3685,9,2,16,12,3,4.05,5.0,fr,4715,73,206940,1,1,Active Shallow Crust,0.0,89.99004,0.0,09/02/3685 +1.22121,50.34305,8525,11,4,8,7,31,4.05,5.0,fr,4716,170,206949,1,1,Active Shallow Crust,128.8899,89.99367,0.0,11/04/8525 +1.22121,50.34305,8758,10,24,17,33,58,4.45,5.0,fr,4717,175,206991,1,1,Active Shallow Crust,240.0064,57.99488,0.0,10/24/8758 +3.10921,40.47306,4307,3,12,13,13,52,4.05,5.0,fr,4718,86,207420,1,1,Active Shallow Crust,0.0,89.98921,0.0,03/12/4307 +-1.31767,48.88137,6475,8,29,3,48,13,3.55,15.0,fr,4719,129,207841,1,1,Active Shallow Crust,0.0,89.99005,0.0,08/29/6475 +-1.31767,48.88137,6141,12,31,14,17,58,3.55,15.0,fr,4720,122,207844,1,1,Active Shallow Crust,240.0123,57.99825,0.0,12/31/6141 +-1.31767,48.88137,3080,1,9,3,29,32,3.55,27.5,fr,4721,61,207848,1,1,Active Shallow Crust,0.0,89.98994,-90.0,01/09/3080 +-1.31767,48.88137,1889,11,23,4,26,23,3.55,5.0,fr,4722,37,207849,1,1,Active Shallow Crust,128.8957,89.9942,0.0,11/23/1889 +-1.31767,48.88137,7108,9,1,3,59,6,3.65,5.0,fr,4723,142,207852,1,1,Active Shallow Crust,0.0,89.98965,0.0,09/01/7108 +-1.31767,48.88137,5147,9,8,23,39,1,3.65,27.5,fr,4724,102,207854,1,1,Active Shallow Crust,0.0,89.98965,0.0,09/08/5147 +-1.31767,48.88137,885,10,30,8,29,58,3.65,15.0,fr,4725,17,207856,1,1,Active Shallow Crust,240.0015,58.01283,0.0,10/30/0885 +-1.31767,48.88137,7479,2,28,10,4,18,3.65,15.0,fr,4726,149,207859,1,1,Active Shallow Crust,0.0,89.98954,-90.0,02/28/7479 +-1.31767,48.88137,8014,4,17,13,59,32,3.75,5.0,fr,4727,160,207864,1,2,Active Shallow Crust,0.0,89.98946,0.0,04/17/8014 +-1.31767,48.88137,319,8,16,11,20,44,3.75,5.0,fr,4728,6,207864,1,2,Active Shallow Crust,0.0,89.98946,0.0,08/16/0319 +-1.31767,48.88137,5953,7,15,17,14,14,3.75,5.0,fr,4729,119,207867,1,2,Active Shallow Crust,240.0087,58.01756,0.0,07/15/5953 +-1.31767,48.88137,8106,1,9,11,58,41,3.75,5.0,fr,4730,162,207867,1,2,Active Shallow Crust,240.0087,58.01756,0.0,01/09/8106 +-1.31767,48.88137,6165,5,8,8,47,30,3.75,27.5,fr,4731,123,207869,1,1,Active Shallow Crust,240.0087,58.01756,0.0,05/08/6165 +-1.31767,48.88137,9586,7,20,1,54,5,3.85,5.0,fr,4732,191,207876,1,1,Active Shallow Crust,0.0,89.98943,0.0,07/20/9586 +-1.31767,48.88137,3935,4,26,18,15,2,3.85,5.0,fr,4733,78,207885,1,1,Active Shallow Crust,128.8954,89.99355,0.0,04/26/3935 +-1.31767,48.88137,9399,1,14,5,0,2,4.05,5.0,fr,4734,187,207900,1,2,Active Shallow Crust,0.0,89.98975,0.0,01/14/9399 +-1.31767,48.88137,3491,9,12,12,16,47,4.05,5.0,fr,4735,69,207900,1,2,Active Shallow Crust,0.0,89.98975,0.0,09/12/3491 +-1.31767,48.88137,3234,5,27,14,29,20,4.05,5.0,fr,4736,64,207903,1,1,Active Shallow Crust,240.0065,58.00595,0.0,05/27/3234 +-1.31767,48.88137,3948,11,15,22,7,51,4.35,15.0,fr,4737,78,207946,1,1,Active Shallow Crust,128.8973,89.98277,0.0,11/15/3948 +-1.31767,48.88137,235,2,4,23,9,37,5.35,5.0,fr,4738,4,208056,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/04/0235 +6.42063,47.54075,7331,8,30,1,53,20,3.55,5.0,fr,4739,146,208320,1,1,Active Shallow Crust,0.0,89.99319,0.0,08/30/7331 +6.42063,47.54075,3326,11,4,15,18,12,3.55,15.0,fr,4740,66,208324,1,1,Active Shallow Crust,240.0126,57.9985,0.0,11/04/3326 +6.42063,47.54075,9085,2,22,5,18,52,3.65,5.0,fr,4741,181,208332,1,1,Active Shallow Crust,0.0,89.98787,0.0,02/22/9085 +6.42063,47.54075,9412,3,31,13,58,33,3.75,5.0,fr,4742,188,208344,1,1,Active Shallow Crust,0.0,89.98919,0.0,03/31/9412 +6.42063,47.54075,5741,10,2,18,19,33,3.75,5.0,fr,4743,114,208350,1,1,Active Shallow Crust,0.0,89.98906,-90.0,10/02/5741 +6.42063,47.54075,8102,1,4,14,59,17,3.85,15.0,fr,4744,162,208360,1,1,Active Shallow Crust,240.011,57.99792,0.0,01/04/8102 +6.42063,47.54075,6672,11,20,17,10,47,4.05,27.5,fr,4745,133,208385,1,1,Active Shallow Crust,240.0062,58.006,0.0,11/20/6672 +6.42063,47.54075,5175,2,24,11,31,45,4.15,5.0,fr,4746,103,208398,1,1,Active Shallow Crust,0.0,89.98965,-90.0,02/24/5175 +6.42063,47.54075,7962,7,18,1,50,51,4.25,5.0,fr,4747,159,208404,1,2,Active Shallow Crust,0.0,89.99088,0.0,07/18/7962 +6.42063,47.54075,8909,10,15,19,31,13,4.25,5.0,fr,4748,178,208404,1,2,Active Shallow Crust,0.0,89.99088,0.0,10/15/8909 +6.42063,47.54075,3246,2,8,23,11,1,4.55,5.0,fr,4749,64,208440,1,1,Active Shallow Crust,0.0,89.98923,0.0,02/08/3246 +6.42063,47.54075,6254,6,28,15,12,50,4.95,15.0,fr,4750,125,208489,1,1,Active Shallow Crust,0.0,89.99049,0.0,06/28/6254 +6.42063,47.54075,167,3,10,22,21,59,5.05,5.0,fr,4751,3,208500,1,1,Active Shallow Crust,0.0,89.99031,0.0,03/10/0167 +6.42063,47.54075,5042,4,27,20,51,13,5.55,15.0,fr,4752,100,208561,1,1,Active Shallow Crust,0.0,89.98978,0.0,04/27/5042 +7.23253,43.44346,4320,11,2,19,46,38,3.55,5.0,fr,4753,86,208800,1,2,Active Shallow Crust,0.0,89.99268,0.0,11/02/4320 +7.23253,43.44346,5790,8,25,21,53,38,3.55,5.0,fr,4754,115,208800,1,2,Active Shallow Crust,0.0,89.99268,0.0,08/25/5790 +7.23253,43.44346,6241,3,9,14,49,50,3.55,5.0,fr,4755,124,208803,1,1,Active Shallow Crust,240.0118,57.99815,0.0,03/09/6241 +7.23253,43.44346,7496,10,16,7,50,10,3.55,15.0,fr,4756,149,208807,1,1,Active Shallow Crust,0.0,89.99259,-90.0,10/16/7496 +7.23253,43.44346,5682,6,22,20,55,53,3.65,5.0,fr,4757,113,208812,1,2,Active Shallow Crust,0.0,89.98695,0.0,06/22/5682 +7.23253,43.44346,2208,1,26,1,44,54,3.65,5.0,fr,4758,44,208812,1,2,Active Shallow Crust,0.0,89.98695,0.0,01/26/2208 +7.23253,43.44346,1312,7,12,13,28,1,3.75,5.0,fr,4759,26,208824,1,1,Active Shallow Crust,0.0,89.98837,0.0,07/12/1312 +7.23253,43.44346,1512,8,5,3,35,56,3.85,5.0,fr,4760,30,208836,1,1,Active Shallow Crust,0.0,89.98963,0.0,08/05/1512 +7.23253,43.44346,6505,11,7,10,4,3,4.35,5.0,fr,4761,130,208896,1,1,Active Shallow Crust,0.0,89.99126,0.0,11/07/6505 +7.23253,43.44346,4068,8,15,16,24,37,4.45,5.0,fr,4762,81,208908,1,1,Active Shallow Crust,0.0,89.98961,0.0,08/15/4068 +3.39509,39.97119,2553,3,13,21,55,1,4.05,15.0,fr,4763,51,209350,1,1,Active Shallow Crust,128.8915,89.99348,0.0,03/13/2553 +3.39509,39.97119,2403,10,8,6,3,10,4.35,5.0,fr,4764,48,209376,1,1,Active Shallow Crust,0.0,89.98923,0.0,10/08/2403 +0.33971,44.42763,5039,1,24,0,51,14,3.55,5.0,fr,4765,100,209766,1,1,Active Shallow Crust,0.0,89.98998,-90.0,01/24/5039 +0.33971,44.42763,2874,9,19,20,35,13,3.65,5.0,fr,4766,57,209772,1,2,Active Shallow Crust,0.0,89.98997,0.0,09/19/2874 +0.33971,44.42763,9943,6,19,8,57,34,3.65,5.0,fr,4767,198,209772,1,2,Active Shallow Crust,0.0,89.98997,0.0,06/19/9943 +0.33971,44.42763,3392,11,5,16,24,45,3.75,5.0,fr,4768,67,209790,1,1,Active Shallow Crust,0.0,89.98988,-90.0,11/05/3392 +0.33971,44.42763,3318,9,21,0,12,2,3.95,27.5,fr,4769,66,209813,1,1,Active Shallow Crust,240.0195,58.00495,0.0,09/21/3318 +0.33971,44.42763,4331,7,18,1,2,2,4.05,27.5,fr,4770,86,209822,1,1,Active Shallow Crust,0.0,89.98988,0.0,07/18/4331 +4.89219,43.41837,9857,1,21,18,8,45,3.55,5.0,fr,4771,197,210240,1,2,Active Shallow Crust,0.0,89.99268,0.0,01/21/9857 +4.89219,43.41837,8319,12,17,21,45,51,3.55,5.0,fr,4772,166,210240,1,2,Active Shallow Crust,0.0,89.99268,0.0,12/17/8319 +4.89219,43.41837,7108,12,27,10,23,47,3.65,5.0,fr,4773,142,210252,1,1,Active Shallow Crust,0.0,89.98695,0.0,12/27/7108 +4.89219,43.41837,8805,1,7,21,35,16,3.65,5.0,fr,4774,176,210255,1,1,Active Shallow Crust,240.0013,58.01296,0.0,01/07/8805 +4.89219,43.41837,8371,6,14,9,39,44,3.65,5.0,fr,4775,167,210261,1,1,Active Shallow Crust,128.9005,89.96346,0.0,06/14/8371 +4.89219,43.41837,8522,5,15,9,34,21,3.75,15.0,fr,4776,170,210265,1,2,Active Shallow Crust,0.0,89.98837,0.0,05/15/8522 +4.89219,43.41837,1756,9,27,0,3,33,3.75,15.0,fr,4777,35,210265,1,2,Active Shallow Crust,0.0,89.98837,0.0,09/27/1756 +4.89219,43.41837,7138,2,23,2,7,43,4.05,15.0,fr,4778,142,210301,1,1,Active Shallow Crust,0.0,89.99176,0.0,02/23/7138 +4.89219,43.41837,8205,8,17,15,9,29,4.15,5.0,fr,4779,164,210312,1,1,Active Shallow Crust,0.0,89.98898,0.0,08/17/8205 +4.89219,43.41837,8113,11,3,12,38,52,4.45,5.0,fr,4780,162,210348,1,2,Active Shallow Crust,0.0,89.9896,0.0,11/03/8113 +4.89219,43.41837,5748,5,24,8,35,53,4.45,5.0,fr,4781,114,210348,1,2,Active Shallow Crust,0.0,89.9896,0.0,05/24/5748 +4.89219,43.41837,5083,2,13,7,48,13,4.65,5.0,fr,4782,101,210378,1,1,Active Shallow Crust,0.0,89.98956,-90.0,02/13/5083 +6.69902,50.09859,4918,10,11,10,9,3,3.55,15.0,fr,4783,98,210721,1,1,Active Shallow Crust,0.0,89.98706,0.0,10/11/4918 +6.69902,50.09859,2919,11,25,8,27,27,3.65,15.0,fr,4784,58,210733,1,1,Active Shallow Crust,0.0,89.98847,0.0,11/25/2919 +6.69902,50.09859,3393,11,3,10,37,36,4.15,5.0,fr,4785,67,210795,1,1,Active Shallow Crust,240.0087,57.99802,0.0,11/03/3393 +6.69902,50.09859,112,12,30,23,0,35,4.25,5.0,fr,4786,2,210807,1,1,Active Shallow Crust,240.0079,57.99445,0.0,12/30/0112 +7.1436,44.89534,4458,6,6,22,23,34,3.55,5.0,fr,4787,89,211200,1,6,Active Shallow Crust,0.0,89.99286,0.0,06/06/4458 +7.1436,44.89534,1577,10,6,12,12,37,3.55,5.0,fr,4788,31,211200,1,6,Active Shallow Crust,0.0,89.99286,0.0,10/06/1577 +7.1436,44.89534,5339,8,31,13,19,3,3.55,5.0,fr,4789,106,211200,1,6,Active Shallow Crust,0.0,89.99286,0.0,08/31/5339 +7.1436,44.89534,7820,4,22,8,41,43,3.55,5.0,fr,4790,156,211200,1,6,Active Shallow Crust,0.0,89.99286,0.0,04/22/7820 +7.1436,44.89534,9097,2,21,2,44,47,3.55,5.0,fr,4791,181,211200,1,6,Active Shallow Crust,0.0,89.99286,0.0,02/21/9097 +7.1436,44.89534,6938,12,6,21,6,57,3.55,5.0,fr,4792,138,211200,1,6,Active Shallow Crust,0.0,89.99286,0.0,12/06/6938 +7.1436,44.89534,8953,11,6,5,27,54,3.55,15.0,fr,4793,179,211201,1,1,Active Shallow Crust,0.0,89.99286,0.0,11/06/8953 +7.1436,44.89534,948,5,26,13,12,47,3.55,5.0,fr,4794,18,211203,1,2,Active Shallow Crust,240.0122,57.99719,0.0,05/26/0948 +7.1436,44.89534,5467,12,6,12,58,46,3.55,5.0,fr,4795,109,211203,1,2,Active Shallow Crust,240.0122,57.99719,0.0,12/06/5467 +7.1436,44.89534,6115,2,24,0,10,54,3.55,15.0,fr,4796,122,211204,1,1,Active Shallow Crust,240.0122,57.99719,0.0,02/24/6115 +7.1436,44.89534,6451,2,14,13,6,11,3.55,5.0,fr,4797,129,211206,1,1,Active Shallow Crust,0.0,89.99277,-90.0,02/14/6451 +7.1436,44.89534,2590,6,11,11,57,14,3.55,5.0,fr,4798,51,211209,1,3,Active Shallow Crust,128.896,89.99643,0.0,06/11/2590 +7.1436,44.89534,7865,11,16,22,51,1,3.55,5.0,fr,4799,157,211209,1,3,Active Shallow Crust,128.896,89.99643,0.0,11/16/7865 +7.1436,44.89534,8871,10,22,2,14,48,3.55,5.0,fr,4800,177,211209,1,3,Active Shallow Crust,128.896,89.99643,0.0,10/22/8871 +7.1436,44.89534,9333,9,28,13,32,32,3.55,15.0,fr,4801,186,211210,1,1,Active Shallow Crust,128.896,89.99643,0.0,09/28/9333 +7.1436,44.89534,3507,4,19,1,52,14,3.65,5.0,fr,4802,70,211212,1,2,Active Shallow Crust,0.0,89.98727,0.0,04/19/3507 +7.1436,44.89534,7872,6,7,22,31,47,3.65,5.0,fr,4803,157,211212,1,2,Active Shallow Crust,0.0,89.98727,0.0,06/07/7872 +7.1436,44.89534,3688,7,6,9,24,50,3.65,15.0,fr,4804,73,211213,1,4,Active Shallow Crust,0.0,89.98727,0.0,07/06/3688 +7.1436,44.89534,1328,11,30,3,9,50,3.65,15.0,fr,4805,26,211213,1,4,Active Shallow Crust,0.0,89.98727,0.0,11/30/1328 +7.1436,44.89534,5885,6,11,6,38,36,3.65,15.0,fr,4806,117,211213,1,4,Active Shallow Crust,0.0,89.98727,0.0,06/11/5885 +7.1436,44.89534,4669,8,25,16,20,21,3.65,15.0,fr,4807,93,211213,1,4,Active Shallow Crust,0.0,89.98727,0.0,08/25/4669 +7.1436,44.89534,2850,4,4,9,21,18,3.65,27.5,fr,4808,56,211214,1,1,Active Shallow Crust,0.0,89.98727,0.0,04/04/2850 +7.1436,44.89534,3527,12,1,23,11,43,3.65,5.0,fr,4809,70,211218,1,1,Active Shallow Crust,0.0,89.98712,-90.0,12/01/3527 +7.1436,44.89534,8898,1,22,1,27,25,3.65,5.0,fr,4810,177,211221,1,1,Active Shallow Crust,128.901,89.96349,0.0,01/22/8898 +7.1436,44.89534,716,7,9,23,45,43,3.75,5.0,fr,4811,14,211224,1,4,Active Shallow Crust,0.0,89.98866,0.0,07/09/0716 +7.1436,44.89534,9015,3,13,23,0,3,3.75,5.0,fr,4812,180,211224,1,4,Active Shallow Crust,0.0,89.98866,0.0,03/13/9015 +7.1436,44.89534,8649,6,8,19,56,52,3.75,5.0,fr,4813,172,211224,1,4,Active Shallow Crust,0.0,89.98866,0.0,06/08/8649 +7.1436,44.89534,8529,2,2,14,41,50,3.75,5.0,fr,4814,170,211224,1,4,Active Shallow Crust,0.0,89.98866,0.0,02/02/8529 +7.1436,44.89534,8227,9,16,11,37,53,3.75,5.0,fr,4815,164,211230,1,1,Active Shallow Crust,0.0,89.98852,-90.0,09/16/8227 +7.1436,44.89534,6075,1,19,0,49,51,3.75,15.0,fr,4816,121,211234,1,1,Active Shallow Crust,128.8959,89.96746,0.0,01/19/6075 +7.1436,44.89534,5861,6,8,9,21,31,3.75,27.5,fr,4817,117,211235,1,2,Active Shallow Crust,128.8959,89.96746,0.0,06/08/5861 +7.1436,44.89534,7939,6,12,23,44,20,3.75,27.5,fr,4818,158,211235,1,2,Active Shallow Crust,128.8959,89.96746,0.0,06/12/7939 +7.1436,44.89534,8446,5,11,8,2,43,3.85,5.0,fr,4819,168,211236,1,4,Active Shallow Crust,0.0,89.98988,0.0,05/11/8446 +7.1436,44.89534,2470,5,9,13,59,39,3.85,5.0,fr,4820,49,211236,1,4,Active Shallow Crust,0.0,89.98988,0.0,05/09/2470 +7.1436,44.89534,6535,1,24,8,4,8,3.85,5.0,fr,4821,130,211236,1,4,Active Shallow Crust,0.0,89.98988,0.0,01/24/6535 +7.1436,44.89534,2448,10,31,21,45,44,3.85,5.0,fr,4822,48,211236,1,4,Active Shallow Crust,0.0,89.98988,0.0,10/31/2448 +7.1436,44.89534,8496,12,10,23,2,32,3.85,15.0,fr,4823,169,211237,1,3,Active Shallow Crust,0.0,89.98988,0.0,12/10/8496 +7.1436,44.89534,9898,5,1,23,37,20,3.85,15.0,fr,4824,197,211237,1,3,Active Shallow Crust,0.0,89.98988,0.0,05/01/9898 +7.1436,44.89534,113,2,19,20,27,53,3.85,15.0,fr,4825,2,211237,1,3,Active Shallow Crust,0.0,89.98988,0.0,02/19/0113 +7.1436,44.89534,6612,7,29,19,48,31,3.85,5.0,fr,4826,132,211239,1,1,Active Shallow Crust,240.0105,57.99852,0.0,07/29/6612 +7.1436,44.89534,7097,3,27,9,12,10,3.85,5.0,fr,4827,141,211245,1,1,Active Shallow Crust,128.8948,89.99494,0.0,03/27/7097 +7.1436,44.89534,9669,4,24,9,17,5,3.95,5.0,fr,4828,193,211248,1,1,Active Shallow Crust,0.0,89.99098,0.0,04/24/9669 +7.1436,44.89534,862,3,17,10,57,9,3.95,15.0,fr,4829,17,211249,1,1,Active Shallow Crust,0.0,89.99098,0.0,03/17/0862 +7.1436,44.89534,5394,3,28,17,44,49,3.95,5.0,fr,4830,107,211251,1,1,Active Shallow Crust,240.0201,58.00513,0.0,03/28/5394 +7.1436,44.89534,3575,4,23,2,43,1,3.95,5.0,fr,4831,71,211257,1,1,Active Shallow Crust,128.8994,89.99549,0.0,04/23/3575 +7.1436,44.89534,3140,5,4,11,15,43,4.05,5.0,fr,4832,62,211260,1,3,Active Shallow Crust,0.0,89.99197,0.0,05/04/3140 +7.1436,44.89534,1033,1,12,2,16,39,4.05,5.0,fr,4833,20,211260,1,3,Active Shallow Crust,0.0,89.99197,0.0,01/12/1033 +7.1436,44.89534,8486,4,23,11,2,56,4.05,5.0,fr,4834,169,211260,1,3,Active Shallow Crust,0.0,89.99197,0.0,04/23/8486 +7.1436,44.89534,6988,12,20,21,14,33,4.05,15.0,fr,4835,139,211261,1,1,Active Shallow Crust,0.0,89.99197,0.0,12/20/6988 +7.1436,44.89534,8113,12,8,22,16,38,4.05,27.5,fr,4836,162,211265,1,1,Active Shallow Crust,240.0056,58.00583,0.0,12/08/8113 +7.1436,44.89534,8447,11,28,21,41,7,4.05,5.0,fr,4837,168,211269,1,1,Active Shallow Crust,128.8902,89.99397,0.0,11/28/8447 +7.1436,44.89534,4655,8,22,10,47,54,4.15,5.0,fr,4838,93,211272,1,3,Active Shallow Crust,0.0,89.98926,0.0,08/22/4655 +7.1436,44.89534,7498,10,26,13,32,57,4.15,5.0,fr,4839,149,211272,1,3,Active Shallow Crust,0.0,89.98926,0.0,10/26/7498 +7.1436,44.89534,5280,7,26,16,3,41,4.15,5.0,fr,4840,105,211272,1,3,Active Shallow Crust,0.0,89.98926,0.0,07/26/5280 +7.1436,44.89534,7146,9,29,22,27,25,4.15,15.0,fr,4841,142,211273,1,1,Active Shallow Crust,0.0,89.98926,0.0,09/29/7146 +7.1436,44.89534,3680,5,16,11,47,37,4.25,5.0,fr,4842,73,211284,1,1,Active Shallow Crust,0.0,89.99043,0.0,05/16/3680 +7.1436,44.89534,3967,10,24,23,40,30,4.25,27.5,fr,4843,79,211286,1,1,Active Shallow Crust,0.0,89.99043,0.0,10/24/3967 +7.1436,44.89534,240,4,28,20,7,40,4.35,5.0,fr,4844,4,211302,1,1,Active Shallow Crust,0.0,89.99137,-90.0,04/28/0240 +7.1436,44.89534,2212,8,1,3,41,56,4.35,5.0,fr,4845,44,211305,1,1,Active Shallow Crust,128.8986,89.98244,0.0,08/01/2212 +7.1436,44.89534,4885,9,9,4,38,29,4.45,5.0,fr,4846,97,211308,1,1,Active Shallow Crust,0.0,89.98986,0.0,09/09/4885 +7.1436,44.89534,9445,7,11,2,30,42,4.45,15.0,fr,4847,188,211309,1,1,Active Shallow Crust,0.0,89.98986,0.0,07/11/9445 +7.1436,44.89534,1697,7,12,14,32,59,4.55,5.0,fr,4848,33,211323,1,1,Active Shallow Crust,240.0089,57.99704,0.0,07/12/1697 +7.1436,44.89534,968,5,31,4,1,18,4.55,5.0,fr,4849,19,211329,1,1,Active Shallow Crust,128.8947,89.98556,0.0,05/31/0968 +7.1436,44.89534,265,4,9,22,52,49,4.75,27.5,fr,4850,5,211352,1,1,Active Shallow Crust,0.0,89.98911,-90.0,04/09/0265 +7.1436,44.89534,3195,10,6,22,3,15,4.85,15.0,fr,4851,63,211363,1,1,Active Shallow Crust,0.0,89.9903,-90.0,10/06/3195 +7.1436,44.89534,4757,1,29,16,48,1,5.15,15.0,fr,4852,95,211393,1,1,Active Shallow Crust,0.0,89.98981,0.0,01/29/4757 +7.1436,44.89534,1306,10,9,21,5,32,5.65,15.0,fr,4853,26,211453,1,1,Active Shallow Crust,0.0,89.98981,0.0,10/09/1306 +7.143601,44.89534,4374,10,6,3,32,20,6.05,5.357596,fr,4854,87,211500,1,1,Active Shallow Crust,0.0,89.98995,0.0,10/06/4374 +6.84694,43.13096,6943,7,6,18,25,45,3.95,5.0,fr,4855,138,211728,1,1,Active Shallow Crust,0.0,89.99072,0.0,07/06/6943 +2.98817,40.59059,5983,1,29,12,50,32,3.55,15.0,fr,4856,119,212170,1,1,Active Shallow Crust,128.8971,89.99234,0.0,01/29/5983 +2.98817,40.59059,9728,1,20,2,25,27,3.65,5.0,fr,4857,194,212172,1,1,Active Shallow Crust,0.0,89.98976,0.0,01/20/9728 +2.98817,40.59059,8266,5,3,13,50,48,3.75,27.5,fr,4858,165,212186,1,1,Active Shallow Crust,0.0,89.99088,0.0,05/03/8266 +2.98817,40.59059,6016,9,3,21,0,11,3.95,27.5,fr,4859,120,212216,1,1,Active Shallow Crust,0.0,89.99023,-90.0,09/03/6016 +3.85583,40.85335,6644,6,16,16,11,18,3.95,5.0,fr,4860,132,212691,1,1,Active Shallow Crust,240.0188,58.00523,0.0,06/16/6644 +3.855855,40.85335,7839,3,2,20,36,3,7.05,16.94221,fr,4861,156,213060,1,1,Active Shallow Crust,360.0,89.99001,0.0,03/02/7839 +7.58391,50.44984,6582,3,4,3,39,12,3.55,5.0,fr,4862,131,213120,1,2,Active Shallow Crust,0.0,89.98716,0.0,03/04/6582 +7.58391,50.44984,1286,7,9,9,43,21,3.55,5.0,fr,4863,25,213120,1,2,Active Shallow Crust,0.0,89.98716,0.0,07/09/1286 +7.58391,50.44984,952,6,7,23,55,22,3.55,15.0,fr,4864,19,213121,1,1,Active Shallow Crust,0.0,89.98716,0.0,06/07/0952 +7.58391,50.44984,2869,9,3,8,43,49,3.55,27.5,fr,4865,57,213122,1,3,Active Shallow Crust,0.0,89.98716,0.0,09/03/2869 +7.58391,50.44984,1370,6,24,23,30,32,3.55,27.5,fr,4866,27,213122,1,3,Active Shallow Crust,0.0,89.98716,0.0,06/24/1370 +7.58391,50.44984,7145,5,30,22,28,7,3.55,27.5,fr,4867,142,213122,1,3,Active Shallow Crust,0.0,89.98716,0.0,05/30/7145 +7.58391,50.44984,8341,10,13,18,16,18,3.55,5.0,fr,4868,166,213123,1,1,Active Shallow Crust,240.0126,57.99763,0.0,10/13/8341 +7.58391,50.44984,941,7,14,7,9,13,3.65,5.0,fr,4869,18,213132,1,2,Active Shallow Crust,0.0,89.98856,0.0,07/14/0941 +7.58391,50.44984,2444,1,29,0,3,21,3.65,5.0,fr,4870,48,213132,1,2,Active Shallow Crust,0.0,89.98856,0.0,01/29/2444 +7.58391,50.44984,4034,12,9,19,1,39,3.65,15.0,fr,4871,80,213133,1,1,Active Shallow Crust,0.0,89.98856,0.0,12/09/4034 +7.58391,50.44984,8432,7,1,2,27,16,3.65,5.0,fr,4872,168,213141,1,1,Active Shallow Crust,128.9007,89.96304,0.0,07/01/8432 +7.58391,50.44984,2233,3,12,18,38,34,3.75,5.0,fr,4873,44,213144,1,1,Active Shallow Crust,0.0,89.9898,0.0,03/12/2233 +7.58391,50.44984,9970,9,1,17,5,45,3.75,27.5,fr,4874,199,213146,1,1,Active Shallow Crust,0.0,89.9898,0.0,09/01/9970 +7.58391,50.44984,4982,6,9,22,32,17,3.85,5.0,fr,4875,99,213156,1,1,Active Shallow Crust,0.0,89.99091,0.0,06/09/4982 +7.58391,50.44984,6053,9,25,13,17,21,3.85,5.0,fr,4876,121,213162,1,1,Active Shallow Crust,0.0,89.99081,-90.0,09/25/6053 +7.58391,50.44984,8312,5,7,13,5,13,3.85,5.0,fr,4877,166,213165,1,1,Active Shallow Crust,128.8945,89.99318,0.0,05/07/8312 +7.58391,50.44984,5311,7,3,9,31,28,3.95,5.0,fr,4878,106,213168,1,1,Active Shallow Crust,0.0,89.9919,0.0,07/03/5311 +7.58391,50.44984,5869,4,4,2,47,6,3.95,27.5,fr,4879,117,213170,1,1,Active Shallow Crust,0.0,89.9919,0.0,04/04/5869 +7.58391,50.44984,1229,7,7,22,39,28,3.95,5.0,fr,4880,24,213171,1,1,Active Shallow Crust,240.0206,58.00509,0.0,07/07/1229 +7.58391,50.44984,3038,1,31,1,20,55,4.05,5.0,fr,4881,60,213180,1,1,Active Shallow Crust,0.0,89.98917,0.0,01/31/3038 +7.58391,50.44984,799,7,25,18,0,19,4.05,27.5,fr,4882,15,213182,1,1,Active Shallow Crust,0.0,89.98917,0.0,07/25/0799 +7.58391,50.44984,9419,8,15,18,12,51,4.15,5.0,fr,4883,188,213192,1,1,Active Shallow Crust,0.0,89.99035,0.0,08/15/9419 +7.58391,50.44984,6219,5,24,6,29,24,4.15,27.5,fr,4884,124,213197,1,1,Active Shallow Crust,240.0091,57.99755,0.0,05/24/6219 +7.58391,50.44984,4258,2,24,3,3,35,4.25,5.0,fr,4885,85,213204,1,1,Active Shallow Crust,0.0,89.99139,0.0,02/24/4258 +7.58391,50.44984,6827,5,1,11,5,12,4.55,5.0,fr,4886,136,213240,1,1,Active Shallow Crust,0.0,89.98985,0.0,05/01/6827 +7.58391,50.44984,8228,6,6,6,43,37,4.75,5.0,fr,4887,164,213267,1,1,Active Shallow Crust,240.009,58.00495,0.0,06/06/8228 +7.58391,50.44984,2083,12,22,2,51,8,4.75,5.0,fr,4888,41,213270,1,1,Active Shallow Crust,0.0,89.99021,-90.0,12/22/2083 +7.58391,50.44984,6065,2,5,1,51,53,4.85,5.0,fr,4889,121,213276,1,1,Active Shallow Crust,0.0,89.98994,0.0,02/05/6065 +7.58391,50.44984,2355,6,11,11,31,25,4.95,5.0,fr,4890,47,213291,1,1,Active Shallow Crust,240.0139,58.00495,0.0,06/11/2355 +7.58391,50.44984,5541,6,17,18,52,17,5.35,5.0,fr,4891,110,213339,1,1,Active Shallow Crust,240.0282,57.99846,0.0,06/17/5541 +7.583911,50.44984,2188,1,3,5,17,9,6.05,5.357596,fr,4892,43,213420,1,1,Active Shallow Crust,0.0,89.98988,0.0,01/03/2188 +5.43287,51.89936,317,1,12,10,23,17,3.55,27.5,fr,4893,6,213602,1,1,Active Shallow Crust,0.0,89.98756,0.0,01/12/0317 +5.43287,51.89936,5748,11,20,12,33,39,3.95,5.0,fr,4894,114,213657,1,1,Active Shallow Crust,128.9004,89.99215,0.0,11/20/5748 +5.43287,51.89936,5884,10,30,14,39,23,4.75,15.0,fr,4895,117,213745,1,1,Active Shallow Crust,0.0,89.99062,0.0,10/30/5884 +5.43287,51.89936,3615,3,10,21,8,6,5.45,5.0,fr,4896,72,213828,1,1,Active Shallow Crust,0.0,89.99022,0.0,03/10/3615 +1.35995,49.17212,1602,10,7,5,48,18,3.65,5.0,fr,4897,32,214092,1,3,Active Shallow Crust,0.0,89.98972,0.0,10/07/1602 +1.35995,49.17212,3263,10,15,7,58,21,3.65,5.0,fr,4898,65,214092,1,3,Active Shallow Crust,0.0,89.98972,0.0,10/15/3263 +1.35995,49.17212,1570,12,21,7,35,12,3.65,5.0,fr,4899,31,214092,1,3,Active Shallow Crust,0.0,89.98972,0.0,12/21/1570 +1.35995,49.17212,2189,3,18,5,46,0,3.75,5.0,fr,4900,43,214104,1,1,Active Shallow Crust,0.0,89.98952,0.0,03/18/2189 +1.35995,49.17212,858,4,19,7,36,2,3.75,15.0,fr,4901,17,214105,1,1,Active Shallow Crust,0.0,89.98952,0.0,04/19/0858 +1.35995,49.17212,1512,2,29,16,50,42,4.15,5.0,fr,4902,30,214152,1,1,Active Shallow Crust,0.0,89.99009,0.0,02/29/1512 +1.35995,49.17212,637,9,30,6,44,41,4.55,5.0,fr,4903,12,214209,1,1,Active Shallow Crust,128.8932,89.98579,0.0,09/30/0637 +8.28331,45.41685,3832,10,1,18,4,41,3.55,27.5,fr,4904,76,215042,1,1,Active Shallow Crust,0.0,89.98584,0.0,10/01/3832 +8.28331,45.41685,7383,12,30,2,19,1,3.65,5.0,fr,4905,147,215052,1,1,Active Shallow Crust,0.0,89.98738,0.0,12/30/7383 +8.28331,45.41685,4369,11,22,8,30,13,3.65,5.0,fr,4906,87,215055,1,1,Active Shallow Crust,239.9988,58.01397,0.0,11/22/4369 +8.28331,45.41685,7372,7,13,16,28,15,3.85,5.0,fr,4907,147,215076,1,1,Active Shallow Crust,0.0,89.98997,0.0,07/13/7372 +8.28331,45.41685,4082,7,29,8,34,56,3.95,5.0,fr,4908,81,215097,1,1,Active Shallow Crust,128.8992,89.99554,0.0,07/29/4082 +6.31617,51.64859,3001,6,24,20,10,44,4.15,5.0,fr,4909,60,215592,1,1,Active Shallow Crust,0.0,89.99059,0.0,06/24/3001 +6.31617,51.64859,1659,3,4,13,57,9,4.25,5.0,fr,4910,33,215604,1,1,Active Shallow Crust,0.0,89.98882,0.0,03/04/1659 +6.31617,51.64859,4983,6,18,0,30,11,5.45,27.5,fr,4911,99,215750,1,1,Active Shallow Crust,0.0,89.99017,0.0,06/18/4983 +-2.84048,42.58161,7031,12,12,5,35,44,3.55,15.0,fr,4912,140,216001,1,1,Active Shallow Crust,0.0,89.98886,0.0,12/12/7031 +-2.84048,42.58161,1565,8,4,16,52,53,3.55,5.0,fr,4913,31,216006,1,1,Active Shallow Crust,0.0,89.98873,-90.0,08/04/1565 +-2.84048,42.58161,6103,8,26,16,0,50,3.55,15.0,fr,4914,122,216010,1,1,Active Shallow Crust,128.8965,89.99258,0.0,08/26/6103 +-2.84048,42.58161,5806,11,4,20,56,53,3.75,5.0,fr,4915,116,216024,1,1,Active Shallow Crust,0.0,89.99115,0.0,11/04/5806 +-2.84048,42.58161,3213,9,5,4,51,49,3.75,15.0,fr,4916,64,216034,1,1,Active Shallow Crust,128.8971,89.96742,0.0,09/05/3213 +-2.84048,42.58161,2858,1,19,16,46,40,3.95,5.0,fr,4917,57,216048,1,1,Active Shallow Crust,0.0,89.99063,0.0,01/19/2858 +-2.84048,42.58161,1821,1,9,17,51,1,4.05,5.0,fr,4918,36,216060,1,1,Active Shallow Crust,0.0,89.98956,0.0,01/09/1821 +-3.14057,47.78836,3716,3,7,18,51,39,3.55,5.0,fr,4919,74,216480,1,2,Active Shallow Crust,0.0,89.98984,0.0,03/07/3716 +-3.14057,47.78836,6917,3,25,18,17,2,3.55,5.0,fr,4920,138,216480,1,2,Active Shallow Crust,0.0,89.98984,0.0,03/25/6917 +-3.14057,47.78836,1093,10,31,22,1,56,3.55,15.0,fr,4921,21,216481,1,1,Active Shallow Crust,0.0,89.98984,0.0,10/31/1093 +-3.14057,47.78836,9469,8,7,17,0,36,3.55,5.0,fr,4922,189,216483,1,1,Active Shallow Crust,240.0121,57.99808,0.0,08/07/9469 +-3.14057,47.78836,5435,10,12,14,24,48,3.55,5.0,fr,4923,108,216486,1,2,Active Shallow Crust,0.0,89.98972,-90.0,10/12/5435 +-3.14057,47.78836,2902,1,10,2,58,24,3.55,5.0,fr,4924,58,216486,1,2,Active Shallow Crust,0.0,89.98972,-90.0,01/10/2902 +-3.14057,47.78836,6671,2,20,13,2,55,3.55,5.0,fr,4925,133,216489,1,1,Active Shallow Crust,128.8963,89.99323,0.0,02/20/6671 +-3.14057,47.78836,7468,2,21,0,23,33,3.65,5.0,fr,4926,149,216492,1,1,Active Shallow Crust,0.0,89.99094,0.0,02/21/7468 +-3.14057,47.78836,6386,3,13,16,46,51,3.65,15.0,fr,4927,127,216493,1,2,Active Shallow Crust,0.0,89.99094,0.0,03/13/6386 +-3.14057,47.78836,8623,6,23,0,57,33,3.65,15.0,fr,4928,172,216493,1,2,Active Shallow Crust,0.0,89.99094,0.0,06/23/8623 +-3.14057,47.78836,358,1,31,16,18,22,3.75,5.0,fr,4929,7,216504,1,2,Active Shallow Crust,0.0,89.98923,0.0,01/31/0358 +-3.14057,47.78836,4989,2,6,3,43,33,3.75,5.0,fr,4930,99,216504,1,2,Active Shallow Crust,0.0,89.98923,0.0,02/06/4989 +-3.14057,47.78836,2815,1,31,0,10,5,3.75,5.0,fr,4931,56,216507,1,1,Active Shallow Crust,240.008,58.01783,0.0,01/31/2815 +-3.14057,47.78836,4036,5,9,19,42,6,3.75,15.0,fr,4932,80,216508,1,1,Active Shallow Crust,240.008,58.01783,0.0,05/09/4036 +-3.14057,47.78836,8233,7,19,21,19,52,3.75,5.0,fr,4933,164,216513,1,1,Active Shallow Crust,128.8964,89.96726,0.0,07/19/8233 +-3.14057,47.78836,2084,8,24,2,49,28,3.85,27.5,fr,4934,41,216518,1,1,Active Shallow Crust,0.0,89.99041,0.0,08/24/2084 +-3.14057,47.78836,757,10,16,2,32,54,3.85,15.0,fr,4935,15,216523,1,1,Active Shallow Crust,0.0,89.9903,-90.0,10/16/0757 +-3.14057,47.78836,8351,1,27,11,9,23,3.95,5.0,fr,4936,167,216528,1,2,Active Shallow Crust,0.0,89.98931,0.0,01/27/8351 +-3.14057,47.78836,9573,7,26,10,8,3,3.95,5.0,fr,4937,191,216528,1,2,Active Shallow Crust,0.0,89.98931,0.0,07/26/9573 +-3.14057,47.78836,2193,5,11,4,19,36,3.95,5.0,fr,4938,43,216534,1,1,Active Shallow Crust,0.0,89.98919,-90.0,05/11/2193 +-3.14057,47.78836,2074,10,4,12,49,24,4.05,27.5,fr,4939,41,216545,1,1,Active Shallow Crust,240.0065,58.00576,0.0,10/04/2074 +-3.14057,47.78836,4752,1,25,11,24,42,4.15,27.5,fr,4940,95,216554,1,1,Active Shallow Crust,0.0,89.98981,0.0,01/25/4752 +-3.14057,47.78836,7856,3,1,1,4,49,4.35,5.0,fr,4941,157,216576,1,1,Active Shallow Crust,0.0,89.99056,0.0,03/01/7856 +-3.14057,47.78836,973,7,21,19,49,2,4.35,27.5,fr,4942,19,216578,1,1,Active Shallow Crust,0.0,89.99056,0.0,07/21/0973 +-3.14057,47.78836,878,10,12,0,21,19,4.45,5.0,fr,4943,17,216591,1,1,Active Shallow Crust,240.0057,57.99482,0.0,10/12/0878 +-3.14057,47.78836,6107,1,4,8,10,49,4.65,15.0,fr,4944,122,216613,1,1,Active Shallow Crust,0.0,89.99045,0.0,01/04/6107 +-3.14057,47.78836,5626,7,5,2,56,52,5.25,5.0,fr,4945,112,216684,1,1,Active Shallow Crust,0.0,89.98994,0.0,07/05/5626 +-3.14057,47.78836,5850,5,6,23,44,3,6.35,15.0,fr,4946,116,216826,1,1,Active Shallow Crust,128.8412,89.98981,0.0,05/06/5850 +-0.84555,42.81083,1806,1,14,19,24,31,3.55,5.0,fr,4947,36,216960,1,1,Active Shallow Crust,0.0,89.98983,0.0,01/14/1806 +-0.84555,42.81083,294,1,29,5,47,22,3.55,15.0,fr,4948,5,216961,1,2,Active Shallow Crust,0.0,89.98983,0.0,01/29/0294 +-0.84555,42.81083,5410,1,1,10,1,41,3.55,15.0,fr,4949,108,216961,1,2,Active Shallow Crust,0.0,89.98983,0.0,01/01/5410 +-0.84555,42.81083,8824,11,8,19,36,52,3.55,5.0,fr,4950,176,216966,1,1,Active Shallow Crust,0.0,89.98971,-90.0,11/08/8824 +-0.84555,42.81083,4098,9,15,19,18,14,3.55,15.0,fr,4951,81,216967,1,1,Active Shallow Crust,0.0,89.98971,-90.0,09/15/4098 +-0.84555,42.81083,4017,11,12,10,20,14,3.65,5.0,fr,4952,80,216972,1,1,Active Shallow Crust,0.0,89.99011,0.0,11/12/4017 +-0.84555,42.81083,8509,3,27,14,8,1,3.65,5.0,fr,4953,170,216975,1,1,Active Shallow Crust,240.0007,58.01268,0.0,03/27/8509 +-0.84555,42.81083,6175,5,19,5,28,12,3.65,27.5,fr,4954,123,216977,1,1,Active Shallow Crust,240.0007,58.0126,0.0,05/19/6175 +-0.84555,42.81083,5475,11,23,7,24,44,3.75,5.0,fr,4955,109,216984,1,1,Active Shallow Crust,0.0,89.98972,0.0,11/23/5475 +-0.84555,42.81083,6195,10,7,8,43,29,3.85,15.0,fr,4956,123,216997,1,1,Active Shallow Crust,0.0,89.99018,0.0,10/07/6195 +-0.84555,42.81083,276,12,9,17,48,58,3.85,5.0,fr,4957,5,217005,1,1,Active Shallow Crust,128.8959,89.99378,0.0,12/09/0276 +-0.84555,42.81083,7589,9,11,5,39,11,4.05,5.0,fr,4958,151,217020,1,1,Active Shallow Crust,0.0,89.99012,0.0,09/11/7589 +-0.84555,42.81083,6321,6,27,16,34,14,4.05,15.0,fr,4959,126,217021,1,1,Active Shallow Crust,0.0,89.99012,0.0,06/27/6321 +-0.84555,42.81083,9603,12,23,22,7,12,4.25,5.0,fr,4960,192,217044,1,1,Active Shallow Crust,0.0,89.99009,0.0,12/23/9603 +-0.84555,42.81083,8408,9,28,15,23,49,4.25,5.0,fr,4961,168,217050,1,1,Active Shallow Crust,0.0,89.98997,-90.0,09/28/8408 +-0.84555,42.81083,8656,8,8,18,56,0,4.45,5.0,fr,4962,173,217068,1,1,Active Shallow Crust,0.0,89.99016,0.0,08/08/8656 +-0.8455514,42.81083,9127,8,4,21,30,39,6.15,6.011322,fr,4963,182,217281,1,1,Active Shallow Crust,128.8614,89.98976,0.0,08/04/9127 +2.46018,47.90819,4779,1,10,15,47,29,3.55,5.0,fr,4964,95,217440,1,1,Active Shallow Crust,0.0,89.98986,0.0,01/10/4779 +2.46018,47.90819,9930,9,20,12,9,52,4.65,5.0,fr,4965,198,217572,1,1,Active Shallow Crust,359.9995,89.99047,0.0,09/20/9930 +6.68832,51.57244,4412,6,10,11,49,6,3.65,5.0,fr,4966,88,218412,1,1,Active Shallow Crust,0.0,89.98883,0.0,06/10/4412 +6.68832,51.57244,2733,9,8,8,26,6,3.85,15.0,fr,4967,54,218437,1,1,Active Shallow Crust,0.0,89.99113,0.0,09/08/2733 +6.68832,51.57244,8282,3,14,5,18,15,3.95,5.0,fr,4968,165,218451,1,1,Active Shallow Crust,240.0206,58.00478,0.0,03/14/8282 +6.68832,51.57244,5903,12,4,3,59,46,4.05,5.0,fr,4969,118,218460,1,1,Active Shallow Crust,0.0,89.98943,0.0,12/04/5903 +6.68832,51.57244,4048,3,29,5,1,16,4.55,15.0,fr,4970,80,218521,1,1,Active Shallow Crust,0.0,89.99009,0.0,03/29/4048 +6.49741,49.19975,306,6,20,16,57,11,3.65,5.0,fr,4971,6,218895,1,1,Active Shallow Crust,240.0007,58.01313,0.0,06/20/0306 +6.49741,49.19975,9572,9,26,23,44,34,3.85,15.0,fr,4972,191,218917,1,1,Active Shallow Crust,0.0,89.99067,0.0,09/26/9572 +3.99984,52.58615,7114,7,3,9,54,14,3.55,5.0,fr,4973,142,219366,1,1,Active Shallow Crust,0.0,89.9907,-90.0,07/03/7114 +5.70079,45.76813,893,3,28,7,37,21,3.55,5.0,fr,4974,17,219840,1,4,Active Shallow Crust,0.0,89.99297,0.0,03/28/0893 +5.70079,45.76813,4535,3,3,2,30,43,3.55,5.0,fr,4975,90,219840,1,4,Active Shallow Crust,0.0,89.99297,0.0,03/03/4535 +5.70079,45.76813,8765,2,27,14,14,45,3.55,5.0,fr,4976,175,219840,1,4,Active Shallow Crust,0.0,89.99297,0.0,02/27/8765 +5.70079,45.76813,3749,9,4,20,25,52,3.55,5.0,fr,4977,74,219840,1,4,Active Shallow Crust,0.0,89.99297,0.0,09/04/3749 +5.70079,45.76813,9732,3,12,20,47,27,3.55,15.0,fr,4978,194,219841,1,1,Active Shallow Crust,0.0,89.99297,0.0,03/12/9732 +5.70079,45.76813,8122,11,29,18,9,26,3.65,5.0,fr,4979,162,219852,1,1,Active Shallow Crust,0.0,89.98746,0.0,11/29/8122 +5.70079,45.76813,8607,5,30,10,44,31,3.65,5.0,fr,4980,172,219855,1,1,Active Shallow Crust,240.0008,58.01292,0.0,05/30/8607 +5.70079,45.76813,2444,9,18,5,35,53,3.65,15.0,fr,4981,48,219862,1,1,Active Shallow Crust,128.9001,89.96351,0.0,09/18/2444 +5.70079,45.76813,2533,8,28,8,26,51,3.75,5.0,fr,4982,50,219864,1,1,Active Shallow Crust,0.0,89.98882,0.0,08/28/2533 +5.70079,45.76813,8482,2,19,10,59,55,3.75,15.0,fr,4983,169,219865,1,1,Active Shallow Crust,0.0,89.98882,0.0,02/19/8482 +5.70079,45.76813,632,3,11,2,10,59,3.75,27.5,fr,4984,12,219866,1,1,Active Shallow Crust,0.0,89.98882,0.0,03/11/0632 +5.70079,45.76813,437,2,28,8,47,36,3.75,15.0,fr,4985,8,219868,1,1,Active Shallow Crust,240.0087,58.01748,0.0,02/28/0437 +5.70079,45.76813,8865,8,18,12,10,25,3.75,5.0,fr,4986,177,219870,1,1,Active Shallow Crust,0.0,89.98869,-90.0,08/18/8865 +5.70079,45.76813,3439,6,14,23,12,5,3.75,15.0,fr,4987,68,219874,1,1,Active Shallow Crust,128.896,89.96748,0.0,06/14/3439 +5.70079,45.76813,6136,6,11,4,47,50,3.85,5.0,fr,4988,122,219876,1,5,Active Shallow Crust,0.0,89.99004,0.0,06/11/6136 +5.70079,45.76813,3939,12,14,12,42,51,3.85,5.0,fr,4989,78,219876,1,5,Active Shallow Crust,0.0,89.99004,0.0,12/14/3939 +5.70079,45.76813,8080,9,22,14,8,11,3.85,5.0,fr,4990,161,219876,1,5,Active Shallow Crust,0.0,89.99004,0.0,09/22/8080 +5.70079,45.76813,9031,8,29,8,15,46,3.85,5.0,fr,4991,180,219876,1,5,Active Shallow Crust,0.0,89.99004,0.0,08/29/9031 +5.70079,45.76813,5233,4,3,6,48,32,3.85,5.0,fr,4992,104,219876,1,5,Active Shallow Crust,0.0,89.99004,0.0,04/03/5233 +5.70079,45.76813,4139,12,2,2,16,26,3.85,15.0,fr,4993,82,219880,1,1,Active Shallow Crust,240.0109,57.99771,0.0,12/02/4139 +5.70079,45.76813,5386,4,9,12,40,29,3.95,15.0,fr,4994,107,219895,1,1,Active Shallow Crust,0.0,89.99102,-90.0,04/09/5386 +5.70079,45.76813,3276,9,8,17,52,8,3.95,5.0,fr,4995,65,219897,1,1,Active Shallow Crust,128.9011,89.99334,0.0,09/08/3276 +5.70079,45.76813,3000,1,5,10,36,6,4.15,15.0,fr,4996,59,219913,1,1,Active Shallow Crust,0.0,89.98943,0.0,01/05/3000 +5.70079,45.76813,6260,2,29,20,0,56,4.25,5.0,fr,4997,125,219924,1,1,Active Shallow Crust,0.0,89.99057,0.0,02/29/6260 +5.70079,45.76813,2735,2,9,2,1,28,4.25,15.0,fr,4998,54,219931,1,1,Active Shallow Crust,0.0,89.99046,-90.0,02/09/2735 +5.70079,45.76813,5568,6,5,15,18,21,4.35,5.0,fr,4999,111,219945,1,1,Active Shallow Crust,128.8976,89.98299,0.0,06/05/5568 +5.70079,45.76813,5824,4,21,9,29,48,4.45,15.0,fr,5000,116,219949,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/21/5824 +5.70079,45.76813,5843,11,13,8,45,33,4.45,5.0,fr,5001,116,219954,1,1,Active Shallow Crust,0.0,89.9899,-90.0,11/13/5843 +5.70079,45.76813,8534,10,11,14,7,8,4.45,27.5,fr,5002,170,219956,1,1,Active Shallow Crust,0.0,89.9899,-90.0,10/11/8534 +5.70079,45.76813,5674,3,11,10,3,35,4.55,5.0,fr,5003,113,219960,1,2,Active Shallow Crust,0.0,89.9911,0.0,03/11/5674 +5.70079,45.76813,1974,3,20,22,16,8,4.55,5.0,fr,5004,39,219960,1,2,Active Shallow Crust,0.0,89.9911,0.0,03/20/1974 +5.70079,45.76813,8690,3,12,9,7,57,4.65,5.0,fr,5005,173,219972,1,2,Active Shallow Crust,0.0,89.99009,0.0,03/12/8690 +5.70079,45.76813,9825,6,19,23,16,58,4.65,5.0,fr,5006,196,219972,1,2,Active Shallow Crust,0.0,89.99009,0.0,06/19/9825 +5.70079,45.76813,4008,8,13,5,17,4,4.65,5.0,fr,5007,80,219981,1,1,Active Shallow Crust,128.8913,89.98668,0.0,08/13/4008 +5.70079,45.76813,6339,11,26,5,31,41,5.25,5.0,fr,5008,126,220053,1,1,Active Shallow Crust,128.8835,89.98714,0.0,11/26/6339 +5.70079,45.76813,9012,7,9,12,39,54,5.55,5.0,fr,5009,180,220080,1,1,Active Shallow Crust,0.0,89.99015,0.0,07/09/9012 +5.70079,45.76813,6632,4,4,14,13,51,5.75,27.5,fr,5010,132,220112,1,1,Active Shallow Crust,0.0,89.98982,-90.0,04/04/6632 +-2.1968,48.41195,2831,11,7,12,44,27,3.55,27.5,fr,5011,56,220322,1,1,Active Shallow Crust,0.0,89.98996,0.0,11/07/2831 +-2.1968,48.41195,6943,12,31,2,23,8,3.55,15.0,fr,5012,138,220327,1,1,Active Shallow Crust,0.0,89.98985,-90.0,12/31/6943 +-2.1968,48.41195,2329,4,5,1,25,8,3.65,5.0,fr,5013,46,220338,1,1,Active Shallow Crust,0.0,89.99095,-90.0,04/05/2329 +-2.1968,48.41195,380,11,7,0,48,32,3.75,5.0,fr,5014,7,220353,1,1,Active Shallow Crust,128.896,89.96752,0.0,11/07/0380 +-2.1968,48.41195,67,10,28,8,1,54,3.85,5.0,fr,5015,1,220356,1,2,Active Shallow Crust,0.0,89.99052,0.0,10/28/0067 +-2.1968,48.41195,7956,11,8,21,39,40,3.85,5.0,fr,5016,159,220356,1,2,Active Shallow Crust,0.0,89.99052,0.0,11/08/7956 +-2.1968,48.41195,1196,11,14,3,42,37,3.85,5.0,fr,5017,23,220365,1,1,Active Shallow Crust,128.8954,89.99289,0.0,11/14/1196 +-2.1968,48.41195,5906,11,24,20,3,38,3.95,15.0,fr,5018,118,220369,1,1,Active Shallow Crust,0.0,89.98944,0.0,11/24/5906 +-2.1968,48.41195,1278,2,10,13,57,4,3.95,5.0,fr,5019,25,220371,1,2,Active Shallow Crust,240.0197,58.00505,0.0,02/10/1278 +-2.1968,48.41195,844,1,6,23,24,48,3.95,5.0,fr,5020,16,220371,1,2,Active Shallow Crust,240.0197,58.00505,0.0,01/06/0844 +-2.1968,48.41195,9786,9,5,13,34,37,3.95,5.0,fr,5021,195,220374,1,1,Active Shallow Crust,0.0,89.98932,-90.0,09/05/9786 +-2.1968,48.41195,21,12,15,16,26,10,4.05,15.0,fr,5022,0,220381,1,3,Active Shallow Crust,0.0,89.99059,0.0,12/15/0021 +-2.1968,48.41195,2404,12,16,13,7,36,4.05,15.0,fr,5023,48,220381,1,3,Active Shallow Crust,0.0,89.99059,0.0,12/16/2404 +-2.1968,48.41195,40,2,27,7,25,7,4.05,15.0,fr,5024,0,220381,1,3,Active Shallow Crust,0.0,89.99059,0.0,02/27/0040 +-2.1968,48.41195,6805,8,2,6,38,28,4.15,5.0,fr,5025,136,220395,1,1,Active Shallow Crust,240.0087,57.99756,0.0,08/02/6805 +-2.1968,48.41195,2820,9,28,8,23,10,4.35,5.0,fr,5026,56,220416,1,1,Active Shallow Crust,0.0,89.98934,0.0,09/28/2820 +-2.1968,48.41195,560,4,15,19,24,45,4.35,27.5,fr,5027,11,220418,1,1,Active Shallow Crust,0.0,89.98934,0.0,04/15/0560 +-2.1968,48.41195,5807,8,8,20,19,44,4.45,5.0,fr,5028,116,220437,1,1,Active Shallow Crust,128.8916,89.99347,0.0,08/08/5807 +-2.1968,48.41195,5959,9,21,7,47,47,4.55,5.0,fr,5029,119,220440,1,1,Active Shallow Crust,0.0,89.99047,0.0,09/21/5959 +-2.1968,48.41195,139,10,24,2,41,28,4.65,5.0,fr,5030,2,220452,1,1,Active Shallow Crust,0.0,89.98962,0.0,10/24/0139 +-2.1968,48.41195,376,10,22,0,4,36,5.15,27.5,fr,5031,7,220517,1,1,Active Shallow Crust,240.0208,58.00026,0.0,10/22/0376 +-2.1968,48.41195,5278,5,24,16,54,45,5.25,5.0,fr,5032,105,220524,1,1,Active Shallow Crust,0.0,89.99007,0.0,05/24/5278 +-2.1968,48.41195,7404,7,13,10,5,12,5.55,5.0,fr,5033,148,220560,1,1,Active Shallow Crust,0.0,89.98995,0.0,07/13/7404 +3.83985,47.57414,2146,10,17,15,34,30,3.65,5.0,fr,5034,42,220812,1,1,Active Shallow Crust,0.0,89.99091,0.0,10/17/2146 +3.83985,47.57414,4201,4,15,5,28,45,4.95,5.0,fr,5035,84,220968,1,1,Active Shallow Crust,0.0,89.98981,0.0,04/15/4201 +-0.42854,47.47274,933,1,25,1,39,48,3.55,5.0,fr,5036,18,221280,1,5,Active Shallow Crust,0.0,89.9902,0.0,01/25/0933 +-0.42854,47.47274,1257,3,14,8,42,48,3.55,5.0,fr,5037,25,221280,1,5,Active Shallow Crust,0.0,89.9902,0.0,03/14/1257 +-0.42854,47.47274,8686,5,25,20,17,1,3.55,5.0,fr,5038,173,221280,1,5,Active Shallow Crust,0.0,89.9902,0.0,05/25/8686 +-0.42854,47.47274,6052,3,19,10,26,6,3.55,5.0,fr,5039,121,221280,1,5,Active Shallow Crust,0.0,89.9902,0.0,03/19/6052 +-0.42854,47.47274,1924,12,13,23,48,57,3.55,5.0,fr,5040,38,221280,1,5,Active Shallow Crust,0.0,89.9902,0.0,12/13/1924 +-0.42854,47.47274,61,11,21,23,53,50,3.55,15.0,fr,5041,1,221284,1,1,Active Shallow Crust,240.0122,57.99819,0.0,11/21/0061 +-0.42854,47.47274,2921,7,28,4,44,41,3.55,5.0,fr,5042,58,221286,1,1,Active Shallow Crust,0.0,89.99009,-90.0,07/28/2921 +-0.42854,47.47274,6974,12,7,17,45,24,3.55,15.0,fr,5043,139,221287,1,1,Active Shallow Crust,0.0,89.99009,-90.0,12/07/6974 +-0.42854,47.47274,7018,9,8,10,9,58,3.65,5.0,fr,5044,140,221292,1,1,Active Shallow Crust,0.0,89.99013,0.0,09/08/7018 +-0.42854,47.47274,5356,12,31,12,48,48,3.65,15.0,fr,5045,107,221293,1,3,Active Shallow Crust,0.0,89.99013,0.0,12/31/5356 +-0.42854,47.47274,7532,6,7,10,48,12,3.65,15.0,fr,5046,150,221293,1,3,Active Shallow Crust,0.0,89.99013,0.0,06/07/7532 +-0.42854,47.47274,7212,10,19,5,56,59,3.65,15.0,fr,5047,144,221293,1,3,Active Shallow Crust,0.0,89.99013,0.0,10/19/7212 +-0.42854,47.47274,8393,1,31,20,42,27,3.65,5.0,fr,5048,167,221301,1,1,Active Shallow Crust,128.9003,89.96351,0.0,01/31/8393 +-0.42854,47.47274,4410,7,15,15,16,21,3.65,15.0,fr,5049,88,221302,1,1,Active Shallow Crust,128.9003,89.96351,0.0,07/15/4410 +-0.42854,47.47274,1877,3,7,18,40,23,3.75,5.0,fr,5050,37,221304,1,2,Active Shallow Crust,0.0,89.98985,0.0,03/07/1877 +-0.42854,47.47274,7248,5,17,13,50,49,3.75,5.0,fr,5051,144,221304,1,2,Active Shallow Crust,0.0,89.98985,0.0,05/17/7248 +-0.42854,47.47274,4670,10,21,8,33,0,3.75,5.0,fr,5052,93,221307,1,1,Active Shallow Crust,240.0085,58.01758,0.0,10/21/4670 +-0.42854,47.47274,7765,4,25,22,2,48,3.85,15.0,fr,5053,155,221317,1,1,Active Shallow Crust,0.0,89.99004,0.0,04/25/7765 +-0.42854,47.47274,5435,10,18,12,17,45,3.85,5.0,fr,5054,108,221322,1,1,Active Shallow Crust,0.0,89.98993,-90.0,10/18/5435 +-0.42854,47.47274,9130,5,19,13,15,42,3.95,5.0,fr,5055,182,221328,1,2,Active Shallow Crust,0.0,89.99005,0.0,05/19/9130 +-0.42854,47.47274,6202,5,25,3,1,30,3.95,5.0,fr,5056,124,221328,1,2,Active Shallow Crust,0.0,89.99005,0.0,05/25/6202 +-0.42854,47.47274,572,6,3,2,48,35,3.95,15.0,fr,5057,11,221338,1,1,Active Shallow Crust,128.9003,89.99368,0.0,06/03/0572 +-0.42854,47.47274,5247,10,24,1,35,31,4.05,5.0,fr,5058,104,221340,1,1,Active Shallow Crust,0.0,89.98994,0.0,10/24/5247 +-0.42854,47.47274,5532,12,22,20,20,17,4.05,5.0,fr,5059,110,221349,1,1,Active Shallow Crust,128.8904,89.99365,0.0,12/22/5532 +-0.42854,47.47274,8908,10,7,16,30,25,4.25,5.0,fr,5060,178,221364,1,1,Active Shallow Crust,0.0,89.98991,0.0,10/07/8908 +-0.42854,47.47274,6673,11,21,5,51,23,4.35,27.5,fr,5061,133,221378,1,1,Active Shallow Crust,0.0,89.98999,0.0,11/21/6673 +-0.42854,47.47274,805,6,10,1,16,17,4.35,5.0,fr,5062,16,221382,1,1,Active Shallow Crust,0.0,89.99005,-90.0,06/10/0805 +-0.42854,47.47274,4888,8,28,11,49,55,4.35,5.0,fr,5063,97,221385,1,1,Active Shallow Crust,128.8977,89.98276,0.0,08/28/4888 +-0.42854,47.47274,8167,8,7,11,18,38,4.45,5.0,fr,5064,163,221388,1,1,Active Shallow Crust,0.0,89.99002,0.0,08/07/8167 +-0.42854,47.47274,664,11,26,20,16,1,4.55,15.0,fr,5065,13,221401,1,1,Active Shallow Crust,0.0,89.99003,0.0,11/26/0664 +-0.42854,47.47274,4709,9,11,17,31,24,4.55,27.5,fr,5066,94,221405,1,1,Active Shallow Crust,240.0096,57.9974,0.0,09/11/4709 +-0.42854,47.47274,5328,8,26,3,9,12,4.55,5.0,fr,5067,106,221406,1,1,Active Shallow Crust,0.0,89.99005,-90.0,08/26/5328 +-0.42854,47.47274,48,11,29,5,2,58,4.55,5.0,fr,5068,0,221409,1,1,Active Shallow Crust,128.8936,89.98579,0.0,11/29/0048 +-0.42854,47.47274,5122,2,3,19,37,15,4.65,15.0,fr,5069,102,221413,1,1,Active Shallow Crust,0.0,89.99004,0.0,02/03/5122 +-0.42854,47.47274,6979,12,31,20,56,49,4.65,15.0,fr,5070,139,221416,1,1,Active Shallow Crust,240.0112,57.9943,0.0,12/31/6979 +-0.42854,47.47274,5875,10,27,19,17,58,4.75,5.0,fr,5071,117,221424,1,1,Active Shallow Crust,0.0,89.99004,0.0,10/27/5875 +-0.42854,47.47274,7868,12,21,19,27,11,4.75,5.0,fr,5072,157,221427,1,1,Active Shallow Crust,240.0079,58.00455,0.0,12/21/7868 +-0.42854,47.47274,3891,11,22,18,59,29,4.85,27.5,fr,5073,77,221438,1,1,Active Shallow Crust,0.0,89.98998,0.0,11/22/3891 +-0.4285538,47.47274,6613,1,9,2,6,45,6.85,21.54233,fr,5074,132,221678,1,1,Active Shallow Crust,360.0,89.99001,0.0,01/09/6613 +-0.61014,44.06932,5387,10,4,19,47,22,3.75,5.0,fr,5075,107,221790,1,1,Active Shallow Crust,0.0,89.98981,-90.0,10/04/5387 +-0.61014,44.06932,6834,2,8,7,5,25,3.85,5.0,fr,5076,136,221796,1,1,Active Shallow Crust,0.0,89.98974,0.0,02/08/6834 +7.02142,43.4192,9643,2,24,20,53,1,3.55,5.0,fr,5077,192,222240,1,1,Active Shallow Crust,0.0,89.99268,0.0,02/24/9643 +7.02142,43.4192,3053,12,26,15,44,3,3.55,27.5,fr,5078,61,222242,1,1,Active Shallow Crust,0.0,89.99268,0.0,12/26/3053 +7.02142,43.4192,9774,3,31,22,48,41,3.65,5.0,fr,5079,195,222252,1,2,Active Shallow Crust,0.0,89.98695,0.0,03/31/9774 +7.02142,43.4192,5954,10,31,21,9,57,3.65,5.0,fr,5080,119,222252,1,2,Active Shallow Crust,0.0,89.98695,0.0,10/31/5954 +7.02142,43.4192,6097,7,22,0,1,7,3.65,5.0,fr,5081,121,222258,1,1,Active Shallow Crust,0.0,89.98679,-90.0,07/22/6097 +7.02142,43.4192,9514,2,12,1,19,27,3.65,5.0,fr,5082,190,222261,1,1,Active Shallow Crust,128.9009,89.96346,0.0,02/12/9514 +7.02142,43.4192,8136,1,31,9,34,55,3.85,5.0,fr,5083,162,222276,1,1,Active Shallow Crust,0.0,89.98963,0.0,01/31/8136 +7.02142,43.4192,9472,6,8,4,18,51,3.85,5.0,fr,5084,189,222279,1,1,Active Shallow Crust,240.0114,57.99705,0.0,06/08/9472 +7.02142,43.4192,2468,9,15,18,58,8,3.85,5.0,fr,5085,49,222285,1,1,Active Shallow Crust,128.8953,89.99481,0.0,09/15/2468 +7.02142,43.4192,2100,3,28,11,10,46,3.95,5.0,fr,5086,41,222288,1,1,Active Shallow Crust,0.0,89.99076,0.0,03/28/2100 +7.02142,43.4192,9649,6,14,23,41,34,4.05,5.0,fr,5087,192,222303,1,1,Active Shallow Crust,240.0057,58.00518,0.0,06/14/9649 +7.02142,43.4192,5046,3,5,23,35,6,4.15,5.0,fr,5088,100,222312,1,1,Active Shallow Crust,0.0,89.98898,0.0,03/05/5046 +7.02142,43.4192,396,1,17,17,5,57,4.85,5.0,fr,5089,7,222402,1,1,Active Shallow Crust,0.0,89.99004,-90.0,01/17/0396 +7.02142,43.4192,7489,12,20,5,22,43,5.05,15.0,fr,5090,149,222427,1,1,Active Shallow Crust,0.0,89.98946,-90.0,12/20/7489 +7.02142,43.4192,4726,5,11,22,10,35,5.65,15.0,fr,5091,94,222502,1,1,Active Shallow Crust,128.8777,89.99029,0.0,05/11/4726 +8.16312,48.88773,1913,10,22,13,34,36,3.55,5.0,fr,5092,38,222720,1,1,Active Shallow Crust,0.0,89.98674,0.0,10/22/1913 +8.16312,48.88773,7264,11,15,22,28,42,3.55,27.5,fr,5093,145,222722,1,1,Active Shallow Crust,0.0,89.98674,0.0,11/15/7264 +8.16312,48.88773,4290,4,25,2,56,52,3.55,15.0,fr,5094,85,222727,1,1,Active Shallow Crust,0.0,89.98659,-90.0,04/25/4290 +8.16312,48.88773,294,7,13,12,28,33,3.55,27.5,fr,5095,5,222728,1,1,Active Shallow Crust,0.0,89.98659,-90.0,07/13/0294 +8.16312,48.88773,2646,6,30,6,57,15,3.55,5.0,fr,5096,52,222729,1,1,Active Shallow Crust,128.8972,89.99337,0.0,06/30/2646 +8.16312,48.88773,7926,10,4,16,15,23,3.65,5.0,fr,5097,158,222732,1,2,Active Shallow Crust,0.0,89.98818,0.0,10/04/7926 +8.16312,48.88773,2323,7,22,8,32,19,3.65,5.0,fr,5098,46,222732,1,2,Active Shallow Crust,0.0,89.98818,0.0,07/22/2323 +8.16312,48.88773,351,5,13,5,16,6,3.65,15.0,fr,5099,7,222736,1,2,Active Shallow Crust,240.0017,58.01271,0.0,05/13/0351 +8.16312,48.88773,3395,4,26,5,34,49,3.65,15.0,fr,5100,67,222736,1,2,Active Shallow Crust,240.0017,58.01271,0.0,04/26/3395 +8.16312,48.88773,6365,7,13,22,48,5,3.65,15.0,fr,5101,127,222742,1,1,Active Shallow Crust,128.8998,89.96357,0.0,07/13/6365 +8.16312,48.88773,6646,7,11,1,41,45,3.75,5.0,fr,5102,132,222744,1,4,Active Shallow Crust,0.0,89.98946,0.0,07/11/6646 +8.16312,48.88773,2605,6,5,10,36,0,3.75,5.0,fr,5103,52,222744,1,4,Active Shallow Crust,0.0,89.98946,0.0,06/05/2605 +8.16312,48.88773,8741,8,25,1,18,26,3.75,5.0,fr,5104,174,222744,1,4,Active Shallow Crust,0.0,89.98946,0.0,08/25/8741 +8.16312,48.88773,4551,4,26,19,19,33,3.75,5.0,fr,5105,91,222744,1,4,Active Shallow Crust,0.0,89.98946,0.0,04/26/4551 +8.16312,48.88773,818,10,14,14,4,45,3.75,15.0,fr,5106,16,222748,1,1,Active Shallow Crust,240.0075,58.01838,0.0,10/14/0818 +8.16312,48.88773,9201,5,22,1,2,26,3.75,5.0,fr,5107,184,222750,1,1,Active Shallow Crust,0.0,89.98934,-90.0,05/22/9201 +8.16312,48.88773,5320,4,3,6,6,15,3.85,5.0,fr,5108,106,222756,1,2,Active Shallow Crust,0.0,89.99061,0.0,04/03/5320 +8.16312,48.88773,7487,12,18,9,47,43,3.85,5.0,fr,5109,149,222756,1,2,Active Shallow Crust,0.0,89.99061,0.0,12/18/7487 +8.16312,48.88773,9259,1,3,1,50,38,3.85,15.0,fr,5110,185,222760,1,1,Active Shallow Crust,240.0112,57.99788,0.0,01/03/9259 +8.16312,48.88773,2246,12,6,16,46,13,3.85,15.0,fr,5111,44,222763,1,1,Active Shallow Crust,0.0,89.9905,-90.0,12/06/2246 +8.16312,48.88773,697,8,26,16,24,57,3.85,15.0,fr,5112,13,222766,1,1,Active Shallow Crust,128.8975,89.99062,0.0,08/26/0697 +8.16312,48.88773,8268,1,8,17,29,16,3.95,5.0,fr,5113,165,222777,1,2,Active Shallow Crust,128.8997,89.99582,0.0,01/08/8268 +8.16312,48.88773,800,5,24,13,50,21,3.95,5.0,fr,5114,15,222777,1,2,Active Shallow Crust,128.8997,89.99582,0.0,05/24/0800 +8.16312,48.88773,6934,6,28,2,42,4,4.05,5.0,fr,5115,138,222780,1,2,Active Shallow Crust,0.0,89.99255,0.0,06/28/6934 +8.16312,48.88773,2556,6,21,16,15,24,4.05,5.0,fr,5116,51,222780,1,2,Active Shallow Crust,0.0,89.99255,0.0,06/21/2556 +8.16312,48.88773,6036,5,17,23,8,48,4.05,5.0,fr,5117,120,222789,1,1,Active Shallow Crust,128.8912,89.99255,0.0,05/17/6036 +8.16312,48.88773,915,3,1,14,20,18,4.15,5.0,fr,5118,18,222792,1,2,Active Shallow Crust,0.0,89.98671,0.0,03/01/0915 +8.16312,48.88773,7450,5,28,21,51,49,4.15,5.0,fr,5119,148,222792,1,2,Active Shallow Crust,0.0,89.98671,0.0,05/28/7450 +8.16312,48.88773,5447,12,7,18,43,41,4.25,27.5,fr,5120,108,222806,1,1,Active Shallow Crust,0.0,89.98815,0.0,12/07/5447 +8.16312,48.88773,6136,8,18,19,11,51,4.25,5.0,fr,5121,122,222807,1,1,Active Shallow Crust,240.0071,57.99459,0.0,08/18/6136 +8.16312,48.88773,1508,2,29,15,13,5,4.35,5.0,fr,5122,30,222822,1,1,Active Shallow Crust,0.0,89.98932,-90.0,02/29/1508 +8.16312,48.88773,8451,6,4,14,38,5,4.45,5.0,fr,5123,169,222828,1,1,Active Shallow Crust,0.0,89.99059,0.0,06/04/8451 +8.16312,48.88773,4606,9,10,4,1,24,4.55,5.0,fr,5124,92,222840,1,1,Active Shallow Crust,0.0,89.99162,0.0,09/10/4606 +8.16312,48.88773,8417,8,5,14,52,20,4.75,5.0,fr,5125,168,222864,1,1,Active Shallow Crust,0.0,89.99001,0.0,08/05/8417 +8.16312,48.88773,7981,11,8,14,56,36,4.95,15.0,fr,5126,159,222889,1,1,Active Shallow Crust,0.0,89.98941,0.0,11/08/7981 +8.16312,48.88773,1658,8,26,23,27,33,5.35,15.0,fr,5127,33,222937,1,1,Active Shallow Crust,0.0,89.98998,0.0,08/26/1658 +5.01724,40.60464,7238,8,25,17,50,4,3.65,5.0,fr,5128,144,223215,1,1,Active Shallow Crust,239.9995,58.01392,0.0,08/25/7238 +5.01724,40.60464,5722,7,13,4,23,19,3.95,27.5,fr,5129,114,223259,1,1,Active Shallow Crust,128.902,89.99275,0.0,07/13/5722 +5.01724,40.60464,6247,8,17,0,50,21,4.35,5.0,fr,5130,124,223296,1,1,Active Shallow Crust,0.0,89.99085,0.0,08/17/6247 +5.01724,40.60464,8268,6,25,0,18,45,4.55,5.0,fr,5131,165,223320,1,1,Active Shallow Crust,0.0,89.99032,0.0,06/25/8268 +5.01724,40.60464,990,2,21,2,13,5,4.65,15.0,fr,5132,19,223339,1,1,Active Shallow Crust,0.0,89.98908,-90.0,02/21/0990 +3.42212,46.87157,3036,2,4,16,18,7,3.55,5.0,fr,5133,60,223680,1,1,Active Shallow Crust,0.0,89.98966,0.0,02/04/3036 +3.42212,46.87157,1692,8,10,21,37,28,3.65,15.0,fr,5134,33,223693,1,1,Active Shallow Crust,0.0,89.99078,0.0,08/10/1692 +3.42212,46.87157,9682,11,21,21,45,53,3.85,5.0,fr,5135,193,223725,1,1,Active Shallow Crust,128.8957,89.9939,0.0,11/21/9682 +0.35818,44.83602,4559,1,30,20,22,23,3.55,5.0,fr,5136,91,224160,1,1,Active Shallow Crust,0.0,89.99017,0.0,01/30/4559 +0.35818,44.83602,6431,6,25,13,45,22,3.85,5.0,fr,5137,128,224196,1,1,Active Shallow Crust,0.0,89.98988,0.0,06/25/6431 +0.35818,44.83602,7184,6,8,8,15,0,3.85,15.0,fr,5138,143,224206,1,1,Active Shallow Crust,128.8959,89.99368,0.0,06/08/7184 +0.35818,44.83602,5991,11,10,3,6,19,3.95,5.0,fr,5139,119,224208,1,3,Active Shallow Crust,0.0,89.99013,0.0,11/10/5991 +0.35818,44.83602,6385,4,13,18,16,10,3.95,5.0,fr,5140,127,224208,1,3,Active Shallow Crust,0.0,89.99013,0.0,04/13/6385 +0.35818,44.83602,6167,12,12,2,29,13,3.95,5.0,fr,5141,123,224208,1,3,Active Shallow Crust,0.0,89.99013,0.0,12/12/6167 +0.35818,44.83602,3419,11,21,0,7,56,4.05,5.0,fr,5142,68,224229,1,1,Active Shallow Crust,128.8907,89.99372,0.0,11/21/3419 +0.35818,44.83602,7784,11,13,3,37,38,4.15,15.0,fr,5143,155,224233,1,1,Active Shallow Crust,0.0,89.98992,0.0,11/13/7784 +0.35818,44.83602,5702,10,27,22,38,55,4.25,5.0,fr,5144,114,224244,1,1,Active Shallow Crust,0.0,89.99002,0.0,10/27/5702 +0.35818,44.83602,8267,3,30,23,59,28,4.65,15.0,fr,5145,165,224293,1,1,Active Shallow Crust,0.0,89.99005,0.0,03/30/8267 +0.35818,44.83602,6416,11,10,13,10,11,5.75,5.0,fr,5146,128,224433,1,1,Active Shallow Crust,128.8755,89.98852,0.0,11/10/6416 +4.67953,44.71352,1923,3,21,21,52,23,3.55,5.0,fr,5147,38,224640,1,4,Active Shallow Crust,0.0,89.99284,0.0,03/21/1923 +4.67953,44.71352,115,1,1,22,38,54,3.55,5.0,fr,5148,2,224640,1,4,Active Shallow Crust,0.0,89.99284,0.0,01/01/0115 +4.67953,44.71352,837,3,9,20,45,7,3.55,5.0,fr,5149,16,224640,1,4,Active Shallow Crust,0.0,89.99284,0.0,03/09/0837 +4.67953,44.71352,7922,4,3,13,28,49,3.55,5.0,fr,5150,158,224640,1,4,Active Shallow Crust,0.0,89.99284,0.0,04/03/7922 +4.67953,44.71352,1721,11,17,7,48,34,3.55,5.0,fr,5151,34,224643,1,1,Active Shallow Crust,240.0117,57.99814,0.0,11/17/1721 +4.67953,44.71352,140,11,21,15,0,32,3.75,5.0,fr,5152,2,224664,1,1,Active Shallow Crust,0.0,89.98862,0.0,11/21/0140 +4.67953,44.71352,5743,5,10,2,28,40,3.75,15.0,fr,5153,114,224665,1,1,Active Shallow Crust,0.0,89.98862,0.0,05/10/5743 +4.67953,44.71352,6326,3,19,23,9,35,3.75,15.0,fr,5154,126,224671,1,1,Active Shallow Crust,0.0,89.98849,-90.0,03/19/6326 +4.67953,44.71352,2139,6,6,6,7,58,3.85,15.0,fr,5155,42,224677,1,1,Active Shallow Crust,0.0,89.98985,0.0,06/06/2139 +4.67953,44.71352,6609,11,7,5,30,42,3.95,5.0,fr,5156,132,224688,1,1,Active Shallow Crust,0.0,89.99096,0.0,11/07/6609 +4.67953,44.71352,1037,12,11,12,15,40,3.95,5.0,fr,5157,20,224697,1,2,Active Shallow Crust,128.9004,89.99548,0.0,12/11/1037 +4.67953,44.71352,1579,5,16,1,5,52,3.95,5.0,fr,5158,31,224697,1,2,Active Shallow Crust,128.9004,89.99548,0.0,05/16/1579 +4.67953,44.71352,5543,3,4,10,33,1,4.05,15.0,fr,5159,110,224707,1,1,Active Shallow Crust,0.0,89.99184,-90.0,03/04/5543 +4.67953,44.71352,6969,6,4,20,37,10,4.15,5.0,fr,5160,139,224712,1,2,Active Shallow Crust,0.0,89.98923,0.0,06/04/6969 +4.67953,44.71352,7851,6,18,8,13,46,4.15,5.0,fr,5161,157,224712,1,2,Active Shallow Crust,0.0,89.98923,0.0,06/18/7851 +4.67953,44.71352,423,8,18,6,30,45,4.45,5.0,fr,5162,8,224748,1,1,Active Shallow Crust,0.0,89.98983,0.0,08/18/0423 +4.67953,44.71352,545,2,7,11,43,39,4.55,5.0,fr,5163,10,224766,1,1,Active Shallow Crust,0.0,89.99083,-90.0,02/07/0545 +4.67953,44.71352,7465,1,11,10,51,18,4.95,27.5,fr,5164,149,224810,1,1,Active Shallow Crust,0.0,89.98999,0.0,01/11/7465 +4.67953,44.71352,8774,4,5,14,50,36,5.35,5.0,fr,5165,175,224859,1,1,Active Shallow Crust,240.0236,57.99775,0.0,04/05/8774 +1.96955,51.53345,2598,7,21,11,44,54,3.75,5.0,fr,5166,51,225147,1,1,Active Shallow Crust,240.009,58.01761,0.0,07/21/2598 +1.96955,51.53345,7067,11,28,2,13,9,4.15,5.0,fr,5167,141,225192,1,1,Active Shallow Crust,0.0,89.98978,0.0,11/28/7067 +1.96955,51.53345,3168,10,18,17,57,9,4.15,27.5,fr,5168,63,225203,1,1,Active Shallow Crust,128.8968,89.99371,0.0,10/18/3168 +1.96955,51.53345,6041,3,7,23,15,40,6.05,15.0,fr,5169,120,225421,1,1,Active Shallow Crust,360.0,89.99003,0.0,03/07/6041 +4.54808,52.14123,5321,3,2,7,40,30,4.15,5.0,fr,5170,106,225672,1,1,Active Shallow Crust,0.0,89.99069,0.0,03/02/5321 +4.54808,52.14123,3231,5,29,14,58,37,4.15,5.0,fr,5171,64,225675,1,1,Active Shallow Crust,240.0091,57.99767,0.0,05/29/3231 +0.35974,47.7938,6611,5,28,15,19,38,3.55,5.0,fr,5172,132,226080,1,1,Active Shallow Crust,0.0,89.98984,0.0,05/28/6611 +0.35974,47.7938,9151,10,5,16,41,7,3.65,5.0,fr,5173,183,226095,1,1,Active Shallow Crust,240.0011,58.01298,0.0,10/05/9151 +0.35974,47.7938,2354,3,5,17,21,29,3.75,5.0,fr,5174,47,226113,1,1,Active Shallow Crust,128.8965,89.96733,0.0,03/05/2354 +0.35974,47.7938,9009,9,19,20,29,45,4.25,5.0,fr,5175,180,226164,1,1,Active Shallow Crust,0.0,89.98997,0.0,09/19/9009 +0.35974,47.7938,318,4,2,12,41,45,4.35,5.0,fr,5176,6,226176,1,1,Active Shallow Crust,0.0,89.99005,0.0,04/02/0318 +0.21396,43.0545,6885,3,19,20,43,18,3.55,5.0,fr,5177,137,226560,1,10,Active Shallow Crust,0.0,89.9901,0.0,03/19/6885 +0.21396,43.0545,9004,11,27,15,43,4,3.55,5.0,fr,5178,180,226560,1,10,Active Shallow Crust,0.0,89.9901,0.0,11/27/9004 +0.21396,43.0545,3376,2,5,6,18,21,3.55,5.0,fr,5179,67,226560,1,10,Active Shallow Crust,0.0,89.9901,0.0,02/05/3376 +0.21396,43.0545,353,10,12,4,15,18,3.55,5.0,fr,5180,7,226560,1,10,Active Shallow Crust,0.0,89.9901,0.0,10/12/0353 +0.21396,43.0545,1130,11,13,11,12,29,3.55,5.0,fr,5181,22,226560,1,10,Active Shallow Crust,0.0,89.9901,0.0,11/13/1130 +0.21396,43.0545,2401,9,22,8,59,34,3.55,5.0,fr,5182,48,226560,1,10,Active Shallow Crust,0.0,89.9901,0.0,09/22/2401 +0.21396,43.0545,1085,4,20,0,44,5,3.55,5.0,fr,5183,21,226560,1,10,Active Shallow Crust,0.0,89.9901,0.0,04/20/1085 +0.21396,43.0545,4789,3,7,20,5,17,3.55,5.0,fr,5184,95,226560,1,10,Active Shallow Crust,0.0,89.9901,0.0,03/07/4789 +0.21396,43.0545,9979,7,2,2,31,35,3.55,5.0,fr,5185,199,226560,1,10,Active Shallow Crust,0.0,89.9901,0.0,07/02/9979 +0.21396,43.0545,9786,8,30,9,57,33,3.55,5.0,fr,5186,195,226560,1,10,Active Shallow Crust,0.0,89.9901,0.0,08/30/9786 +0.21396,43.0545,2838,11,22,10,39,32,3.55,15.0,fr,5187,56,226561,1,5,Active Shallow Crust,0.0,89.9901,0.0,11/22/2838 +0.21396,43.0545,9601,2,14,21,46,37,3.55,15.0,fr,5188,192,226561,1,5,Active Shallow Crust,0.0,89.9901,0.0,02/14/9601 +0.21396,43.0545,3956,7,25,16,49,4,3.55,15.0,fr,5189,79,226561,1,5,Active Shallow Crust,0.0,89.9901,0.0,07/25/3956 +0.21396,43.0545,3045,12,26,17,53,3,3.55,15.0,fr,5190,60,226561,1,5,Active Shallow Crust,0.0,89.9901,0.0,12/26/3045 +0.21396,43.0545,4431,5,5,8,21,19,3.55,15.0,fr,5191,88,226561,1,5,Active Shallow Crust,0.0,89.9901,0.0,05/05/4431 +0.21396,43.0545,4648,11,20,17,20,55,3.55,27.5,fr,5192,92,226562,1,4,Active Shallow Crust,0.0,89.9901,0.0,11/20/4648 +0.21396,43.0545,6031,5,30,19,26,11,3.55,27.5,fr,5193,120,226562,1,4,Active Shallow Crust,0.0,89.9901,0.0,05/30/6031 +0.21396,43.0545,8867,3,25,12,13,13,3.55,27.5,fr,5194,177,226562,1,4,Active Shallow Crust,0.0,89.9901,0.0,03/25/8867 +0.21396,43.0545,8459,5,22,9,56,44,3.55,27.5,fr,5195,169,226562,1,4,Active Shallow Crust,0.0,89.9901,0.0,05/22/8459 +0.21396,43.0545,461,12,12,18,36,28,3.55,5.0,fr,5196,9,226563,1,1,Active Shallow Crust,240.0119,57.99812,0.0,12/12/0461 +0.21396,43.0545,7553,2,4,23,29,5,3.55,15.0,fr,5197,151,226564,1,2,Active Shallow Crust,240.0119,57.99812,0.0,02/04/7553 +0.21396,43.0545,1382,4,17,0,11,41,3.55,15.0,fr,5198,27,226564,1,2,Active Shallow Crust,240.0119,57.99812,0.0,04/17/1382 +0.21396,43.0545,3745,6,16,8,25,16,3.55,27.5,fr,5199,74,226565,1,1,Active Shallow Crust,240.0119,57.99802,0.0,06/16/3745 +0.21396,43.0545,6623,1,25,19,7,15,3.55,5.0,fr,5200,132,226569,1,3,Active Shallow Crust,128.8965,89.99367,0.0,01/25/6623 +0.21396,43.0545,5171,10,10,15,50,30,3.55,5.0,fr,5201,103,226569,1,3,Active Shallow Crust,128.8965,89.99367,0.0,10/10/5171 +0.21396,43.0545,9496,4,3,13,49,52,3.55,5.0,fr,5202,189,226569,1,3,Active Shallow Crust,128.8965,89.99367,0.0,04/03/9496 +0.21396,43.0545,1167,6,22,7,8,20,3.55,15.0,fr,5203,23,226570,1,2,Active Shallow Crust,128.8965,89.99367,0.0,06/22/1167 +0.21396,43.0545,866,9,1,7,18,43,3.55,15.0,fr,5204,17,226570,1,2,Active Shallow Crust,128.8965,89.99367,0.0,09/01/0866 +0.21396,43.0545,4086,11,6,5,55,21,3.65,5.0,fr,5205,81,226572,1,11,Active Shallow Crust,0.0,89.98994,0.0,11/06/4086 +0.21396,43.0545,2466,11,3,9,49,12,3.65,5.0,fr,5206,49,226572,1,11,Active Shallow Crust,0.0,89.98994,0.0,11/03/2466 +0.21396,43.0545,4894,2,19,7,46,26,3.65,5.0,fr,5207,97,226572,1,11,Active Shallow Crust,0.0,89.98994,0.0,02/19/4894 +0.21396,43.0545,8014,11,27,13,25,6,3.65,5.0,fr,5208,160,226572,1,11,Active Shallow Crust,0.0,89.98994,0.0,11/27/8014 +0.21396,43.0545,372,7,7,18,21,54,3.65,5.0,fr,5209,7,226572,1,11,Active Shallow Crust,0.0,89.98994,0.0,07/07/0372 +0.21396,43.0545,1259,6,27,13,25,23,3.65,5.0,fr,5210,25,226572,1,11,Active Shallow Crust,0.0,89.98994,0.0,06/27/1259 +0.21396,43.0545,6453,2,9,5,17,19,3.65,5.0,fr,5211,129,226572,1,11,Active Shallow Crust,0.0,89.98994,0.0,02/09/6453 +0.21396,43.0545,4596,8,22,1,35,27,3.65,5.0,fr,5212,91,226572,1,11,Active Shallow Crust,0.0,89.98994,0.0,08/22/4596 +0.21396,43.0545,7867,7,12,16,3,51,3.65,5.0,fr,5213,157,226572,1,11,Active Shallow Crust,0.0,89.98994,0.0,07/12/7867 +0.21396,43.0545,6782,11,30,20,55,40,3.65,5.0,fr,5214,135,226572,1,11,Active Shallow Crust,0.0,89.98994,0.0,11/30/6782 +0.21396,43.0545,5244,5,14,6,41,9,3.65,5.0,fr,5215,104,226572,1,11,Active Shallow Crust,0.0,89.98994,0.0,05/14/5244 +0.21396,43.0545,7459,12,1,5,15,16,3.65,15.0,fr,5216,149,226573,1,5,Active Shallow Crust,0.0,89.98994,0.0,12/01/7459 +0.21396,43.0545,7846,5,25,14,36,17,3.65,15.0,fr,5217,156,226573,1,5,Active Shallow Crust,0.0,89.98994,0.0,05/25/7846 +0.21396,43.0545,7913,7,13,3,56,54,3.65,15.0,fr,5218,158,226573,1,5,Active Shallow Crust,0.0,89.98994,0.0,07/13/7913 +0.21396,43.0545,4245,9,21,3,26,54,3.65,15.0,fr,5219,84,226573,1,5,Active Shallow Crust,0.0,89.98994,0.0,09/21/4245 +0.21396,43.0545,9731,11,2,8,31,21,3.65,15.0,fr,5220,194,226573,1,5,Active Shallow Crust,0.0,89.98994,0.0,11/02/9731 +0.21396,43.0545,3644,9,3,11,28,37,3.65,5.0,fr,5221,72,226575,1,3,Active Shallow Crust,240.0007,58.01282,0.0,09/03/3644 +0.21396,43.0545,7932,9,11,2,44,16,3.65,5.0,fr,5222,158,226575,1,3,Active Shallow Crust,240.0007,58.01282,0.0,09/11/7932 +0.21396,43.0545,970,6,5,12,2,53,3.65,5.0,fr,5223,19,226575,1,3,Active Shallow Crust,240.0007,58.01282,0.0,06/05/0970 +0.21396,43.0545,4459,10,28,17,3,57,3.65,15.0,fr,5224,89,226576,1,1,Active Shallow Crust,240.0007,58.01282,0.0,10/28/4459 +0.21396,43.0545,9172,6,2,21,0,58,3.65,27.5,fr,5225,183,226577,1,1,Active Shallow Crust,240.0007,58.01274,0.0,06/02/9172 +0.21396,43.0545,8493,3,14,16,9,1,3.65,15.0,fr,5226,169,226579,1,2,Active Shallow Crust,0.0,89.99004,-90.0,03/14/8493 +0.21396,43.0545,2398,1,28,17,25,22,3.65,15.0,fr,5227,47,226579,1,2,Active Shallow Crust,0.0,89.99004,-90.0,01/28/2398 +0.21396,43.0545,8931,7,13,3,24,31,3.75,5.0,fr,5228,178,226584,1,6,Active Shallow Crust,0.0,89.98994,0.0,07/13/8931 +0.21396,43.0545,3981,4,14,15,39,12,3.75,5.0,fr,5229,79,226584,1,6,Active Shallow Crust,0.0,89.98994,0.0,04/14/3981 +0.21396,43.0545,7381,1,28,19,38,1,3.75,5.0,fr,5230,147,226584,1,6,Active Shallow Crust,0.0,89.98994,0.0,01/28/7381 +0.21396,43.0545,5123,8,3,12,20,42,3.75,5.0,fr,5231,102,226584,1,6,Active Shallow Crust,0.0,89.98994,0.0,08/03/5123 +0.21396,43.0545,8390,12,8,10,14,42,3.75,5.0,fr,5232,167,226584,1,6,Active Shallow Crust,0.0,89.98994,0.0,12/08/8390 +0.21396,43.0545,7263,6,13,18,29,58,3.75,5.0,fr,5233,145,226584,1,6,Active Shallow Crust,0.0,89.98994,0.0,06/13/7263 +0.21396,43.0545,3812,6,22,10,55,47,3.75,15.0,fr,5234,76,226585,1,2,Active Shallow Crust,0.0,89.98994,0.0,06/22/3812 +0.21396,43.0545,2146,2,12,0,26,0,3.75,15.0,fr,5235,42,226585,1,2,Active Shallow Crust,0.0,89.98994,0.0,02/12/2146 +0.21396,43.0545,9084,1,18,7,28,21,3.75,5.0,fr,5236,181,226587,1,1,Active Shallow Crust,240.008,58.01751,0.0,01/18/9084 +0.21396,43.0545,5971,2,18,10,49,37,3.75,5.0,fr,5237,119,226590,1,1,Active Shallow Crust,0.0,89.99001,-90.0,02/18/5971 +0.21396,43.0545,2776,4,17,19,2,58,3.75,15.0,fr,5238,55,226591,1,1,Active Shallow Crust,0.0,89.99001,-90.0,04/17/2776 +0.21396,43.0545,9430,2,7,17,15,5,3.75,15.0,fr,5239,188,226594,1,1,Active Shallow Crust,128.8969,89.96736,0.0,02/07/9430 +0.21396,43.0545,1842,1,22,6,20,5,3.85,5.0,fr,5240,36,226596,1,9,Active Shallow Crust,0.0,89.99006,0.0,01/22/1842 +0.21396,43.0545,9108,7,13,11,42,36,3.85,5.0,fr,5241,182,226596,1,9,Active Shallow Crust,0.0,89.99006,0.0,07/13/9108 +0.21396,43.0545,8787,11,13,0,12,9,3.85,5.0,fr,5242,175,226596,1,9,Active Shallow Crust,0.0,89.99006,0.0,11/13/8787 +0.21396,43.0545,4683,11,6,18,24,20,3.85,5.0,fr,5243,93,226596,1,9,Active Shallow Crust,0.0,89.99006,0.0,11/06/4683 +0.21396,43.0545,1365,12,21,10,2,57,3.85,5.0,fr,5244,27,226596,1,9,Active Shallow Crust,0.0,89.99006,0.0,12/21/1365 +0.21396,43.0545,7733,8,19,20,21,7,3.85,5.0,fr,5245,154,226596,1,9,Active Shallow Crust,0.0,89.99006,0.0,08/19/7733 +0.21396,43.0545,9861,6,24,22,13,42,3.85,5.0,fr,5246,197,226596,1,9,Active Shallow Crust,0.0,89.99006,0.0,06/24/9861 +0.21396,43.0545,2516,4,19,2,45,9,3.85,5.0,fr,5247,50,226596,1,9,Active Shallow Crust,0.0,89.99006,0.0,04/19/2516 +0.21396,43.0545,2559,6,21,12,48,0,3.85,5.0,fr,5248,51,226596,1,9,Active Shallow Crust,0.0,89.99006,0.0,06/21/2559 +0.21396,43.0545,6040,3,24,19,26,59,3.85,15.0,fr,5249,120,226597,1,1,Active Shallow Crust,0.0,89.99006,0.0,03/24/6040 +0.21396,43.0545,5362,12,30,4,22,48,3.85,27.5,fr,5250,107,226598,1,1,Active Shallow Crust,0.0,89.99006,0.0,12/30/5362 +0.21396,43.0545,4715,8,28,9,4,14,3.85,5.0,fr,5251,94,226602,1,2,Active Shallow Crust,0.0,89.98994,-90.0,08/28/4715 +0.21396,43.0545,3482,10,16,17,47,4,3.85,5.0,fr,5252,69,226602,1,2,Active Shallow Crust,0.0,89.98994,-90.0,10/16/3482 +0.21396,43.0545,4224,2,3,6,1,31,3.85,15.0,fr,5253,84,226603,1,1,Active Shallow Crust,0.0,89.98994,-90.0,02/03/4224 +0.21396,43.0545,7517,5,14,1,18,18,3.85,15.0,fr,5254,150,226606,1,1,Active Shallow Crust,128.896,89.99372,0.0,05/14/7517 +0.21396,43.0545,6110,1,21,11,26,3,3.95,5.0,fr,5255,122,226608,1,6,Active Shallow Crust,0.0,89.98997,0.0,01/21/6110 +0.21396,43.0545,9153,6,27,21,9,45,3.95,5.0,fr,5256,183,226608,1,6,Active Shallow Crust,0.0,89.98997,0.0,06/27/9153 +0.21396,43.0545,3114,2,6,6,25,56,3.95,5.0,fr,5257,62,226608,1,6,Active Shallow Crust,0.0,89.98997,0.0,02/06/3114 +0.21396,43.0545,9514,4,17,11,33,34,3.95,5.0,fr,5258,190,226608,1,6,Active Shallow Crust,0.0,89.98997,0.0,04/17/9514 +0.21396,43.0545,6070,6,16,3,1,27,3.95,5.0,fr,5259,121,226608,1,6,Active Shallow Crust,0.0,89.98997,0.0,06/16/6070 +0.21396,43.0545,6180,10,2,10,55,36,3.95,5.0,fr,5260,123,226608,1,6,Active Shallow Crust,0.0,89.98997,0.0,10/02/6180 +0.21396,43.0545,7117,11,23,19,19,8,3.95,15.0,fr,5261,142,226609,1,1,Active Shallow Crust,0.0,89.98997,0.0,11/23/7117 +0.21396,43.0545,8976,8,9,7,48,26,3.95,27.5,fr,5262,179,226610,1,1,Active Shallow Crust,0.0,89.98997,0.0,08/09/8976 +0.21396,43.0545,1264,12,13,1,37,51,3.95,5.0,fr,5263,25,226611,1,1,Active Shallow Crust,240.0193,58.00488,0.0,12/13/1264 +0.21396,43.0545,5672,8,14,17,39,3,3.95,5.0,fr,5264,113,226614,1,2,Active Shallow Crust,0.0,89.99001,-90.0,08/14/5672 +0.21396,43.0545,3994,11,26,17,36,27,3.95,5.0,fr,5265,79,226614,1,2,Active Shallow Crust,0.0,89.99001,-90.0,11/26/3994 +0.21396,43.0545,2378,6,20,1,33,32,3.95,15.0,fr,5266,47,226615,1,1,Active Shallow Crust,0.0,89.99001,-90.0,06/20/2378 +0.21396,43.0545,1876,4,21,22,59,12,3.95,5.0,fr,5267,37,226617,1,1,Active Shallow Crust,128.9008,89.99375,0.0,04/21/1876 +0.21396,43.0545,4828,8,12,3,9,4,4.05,5.0,fr,5268,96,226620,1,3,Active Shallow Crust,0.0,89.99003,0.0,08/12/4828 +0.21396,43.0545,5022,8,20,20,4,21,4.05,5.0,fr,5269,100,226620,1,3,Active Shallow Crust,0.0,89.99003,0.0,08/20/5022 +0.21396,43.0545,494,10,11,7,11,49,4.05,5.0,fr,5270,9,226620,1,3,Active Shallow Crust,0.0,89.99003,0.0,10/11/0494 +0.21396,43.0545,5546,1,19,22,53,17,4.05,15.0,fr,5271,110,226621,1,6,Active Shallow Crust,0.0,89.99003,0.0,01/19/5546 +0.21396,43.0545,9099,4,10,10,16,23,4.05,15.0,fr,5272,181,226621,1,6,Active Shallow Crust,0.0,89.99003,0.0,04/10/9099 +0.21396,43.0545,5547,4,18,7,34,12,4.05,15.0,fr,5273,110,226621,1,6,Active Shallow Crust,0.0,89.99003,0.0,04/18/5547 +0.21396,43.0545,7849,7,30,4,57,50,4.05,15.0,fr,5274,156,226621,1,6,Active Shallow Crust,0.0,89.99003,0.0,07/30/7849 +0.21396,43.0545,4454,11,3,7,33,3,4.05,15.0,fr,5275,89,226621,1,6,Active Shallow Crust,0.0,89.99003,0.0,11/03/4454 +0.21396,43.0545,8751,7,16,0,32,42,4.05,15.0,fr,5276,175,226621,1,6,Active Shallow Crust,0.0,89.99003,0.0,07/16/8751 +0.21396,43.0545,8554,11,18,20,21,2,4.05,5.0,fr,5277,171,226629,1,1,Active Shallow Crust,128.8909,89.99372,0.0,11/18/8554 +0.21396,43.0545,7196,8,14,11,51,10,4.05,15.0,fr,5278,143,226630,1,1,Active Shallow Crust,128.8909,89.99372,0.0,08/14/7196 +0.21396,43.0545,3676,11,24,10,30,45,4.15,15.0,fr,5279,73,226636,1,3,Active Shallow Crust,240.0079,57.99723,0.0,11/24/3676 +0.21396,43.0545,8488,5,17,9,21,14,4.15,15.0,fr,5280,169,226636,1,3,Active Shallow Crust,240.0079,57.99723,0.0,05/17/8488 +0.21396,43.0545,6455,7,5,1,46,19,4.15,15.0,fr,5281,129,226636,1,3,Active Shallow Crust,240.0079,57.99723,0.0,07/05/6455 +0.21396,43.0545,2795,8,17,20,3,10,4.15,15.0,fr,5282,55,226639,1,2,Active Shallow Crust,0.0,89.98996,-90.0,08/17/2795 +0.21396,43.0545,5806,9,21,12,35,40,4.15,15.0,fr,5283,116,226639,1,2,Active Shallow Crust,0.0,89.98996,-90.0,09/21/5806 +0.21396,43.0545,4483,3,14,11,51,50,4.25,5.0,fr,5284,89,226644,1,1,Active Shallow Crust,0.0,89.99002,0.0,03/14/4483 +0.21396,43.0545,7237,3,3,17,38,36,4.25,5.0,fr,5285,144,226647,1,1,Active Shallow Crust,240.0069,57.99395,0.0,03/03/7237 +0.21396,43.0545,7817,4,25,21,39,8,4.25,5.0,fr,5286,156,226653,1,1,Active Shallow Crust,128.8949,89.98092,0.0,04/25/7817 +0.21396,43.0545,4439,5,15,17,4,54,4.35,5.0,fr,5287,88,226656,1,3,Active Shallow Crust,0.0,89.99001,0.0,05/15/4439 +0.21396,43.0545,484,10,12,9,13,33,4.35,5.0,fr,5288,9,226656,1,3,Active Shallow Crust,0.0,89.99001,0.0,10/12/0484 +0.21396,43.0545,7328,1,17,1,16,2,4.35,5.0,fr,5289,146,226656,1,3,Active Shallow Crust,0.0,89.99001,0.0,01/17/7328 +0.21396,43.0545,9944,7,26,18,53,7,4.35,5.0,fr,5290,198,226659,1,1,Active Shallow Crust,240.0076,57.9958,0.0,07/26/9944 +0.21396,43.0545,7375,9,17,20,59,12,4.45,5.0,fr,5291,147,226668,1,3,Active Shallow Crust,0.0,89.99003,0.0,09/17/7375 +0.21396,43.0545,3618,8,24,13,10,37,4.45,5.0,fr,5292,72,226668,1,3,Active Shallow Crust,0.0,89.99003,0.0,08/24/3618 +0.21396,43.0545,4657,5,19,18,46,48,4.45,5.0,fr,5293,93,226668,1,3,Active Shallow Crust,0.0,89.99003,0.0,05/19/4657 +0.21396,43.0545,9606,4,27,8,32,13,4.45,15.0,fr,5294,192,226669,1,1,Active Shallow Crust,0.0,89.99003,0.0,04/27/9606 +0.21396,43.0545,7392,12,7,19,28,35,4.55,5.0,fr,5295,147,226680,1,2,Active Shallow Crust,0.0,89.99002,0.0,12/07/7392 +0.21396,43.0545,8756,7,26,5,2,34,4.55,5.0,fr,5296,175,226680,1,2,Active Shallow Crust,0.0,89.99002,0.0,07/26/8756 +0.21396,43.0545,6855,5,5,17,5,33,4.55,27.5,fr,5297,137,226682,1,1,Active Shallow Crust,0.0,89.99002,0.0,05/05/6855 +0.21396,43.0545,950,7,2,16,19,4,4.55,5.0,fr,5298,18,226683,1,1,Active Shallow Crust,240.0083,57.9972,0.0,07/02/0950 +0.21396,43.0545,1001,12,16,17,10,13,4.55,15.0,fr,5299,20,226684,1,2,Active Shallow Crust,240.0083,57.99722,0.0,12/16/1001 +0.21396,43.0545,4657,1,30,19,31,8,4.55,15.0,fr,5300,93,226684,1,2,Active Shallow Crust,240.0083,57.99722,0.0,01/30/4657 +0.21396,43.0545,7422,1,13,6,30,19,4.65,15.0,fr,5301,148,226693,1,1,Active Shallow Crust,0.0,89.99001,0.0,01/13/7422 +0.21396,43.0545,6190,10,11,1,33,0,4.85,5.0,fr,5302,123,226716,1,4,Active Shallow Crust,0.0,89.99,0.0,10/11/6190 +0.21396,43.0545,6833,3,7,9,7,19,4.85,5.0,fr,5303,136,226716,1,4,Active Shallow Crust,0.0,89.99,0.0,03/07/6833 +0.21396,43.0545,6375,11,23,0,5,28,4.85,5.0,fr,5304,127,226716,1,4,Active Shallow Crust,0.0,89.99,0.0,11/23/6375 +0.21396,43.0545,2352,2,3,18,15,48,4.85,5.0,fr,5305,47,226716,1,4,Active Shallow Crust,0.0,89.99,0.0,02/03/2352 +0.21396,43.0545,3000,2,6,22,2,56,4.95,5.0,fr,5306,59,226728,1,2,Active Shallow Crust,0.0,89.98998,0.0,02/06/3000 +0.21396,43.0545,430,7,5,18,39,45,4.95,5.0,fr,5307,8,226728,1,2,Active Shallow Crust,0.0,89.98998,0.0,07/05/0430 +0.21396,43.0545,3103,12,1,1,49,32,5.05,5.0,fr,5308,62,226740,1,1,Active Shallow Crust,0.0,89.99001,0.0,12/01/3103 +0.21396,43.0545,5334,10,1,14,28,44,5.25,5.0,fr,5309,106,226764,1,1,Active Shallow Crust,360.0,89.99001,0.0,10/01/5334 +0.21396,43.0545,8464,2,18,16,30,30,5.55,5.0,fr,5310,169,226800,1,1,Active Shallow Crust,360.0,89.99001,0.0,02/18/8464 +0.21396,43.0545,7276,11,23,2,39,14,5.55,15.0,fr,5311,145,226801,1,1,Active Shallow Crust,360.0,89.99001,0.0,11/23/7276 +3.30947,50.28199,2310,4,3,6,40,48,3.55,15.0,fr,5312,46,227041,1,1,Active Shallow Crust,0.0,89.99033,0.0,04/03/2310 +3.30947,50.28199,3099,2,25,18,5,13,3.75,15.0,fr,5313,61,227065,1,1,Active Shallow Crust,0.0,89.98976,0.0,02/25/3099 +3.30947,50.28199,4588,6,19,20,42,14,4.35,5.0,fr,5314,91,227139,1,1,Active Shallow Crust,240.0093,57.99619,0.0,06/19/4588 +3.30947,50.28199,7638,8,10,21,27,55,4.45,5.0,fr,5315,152,227151,1,1,Active Shallow Crust,240.0065,57.99485,0.0,08/10/7638 +-0.03905,50.02129,10000,10,20,11,23,7,3.55,5.0,fr,5316,199,227520,1,2,Active Shallow Crust,0.0,89.98997,0.0,10/20/10000 +-0.03905,50.02129,8985,4,11,13,13,7,3.55,5.0,fr,5317,179,227520,1,2,Active Shallow Crust,0.0,89.98997,0.0,04/11/8985 +-0.03905,50.02129,3149,5,8,20,30,29,3.55,5.0,fr,5318,62,227523,1,1,Active Shallow Crust,240.0125,57.99823,0.0,05/08/3149 +-0.03905,50.02129,7817,4,20,16,25,46,3.55,5.0,fr,5319,156,227526,1,1,Active Shallow Crust,0.0,89.99001,-90.0,04/20/7817 +-0.03905,50.02129,8419,3,23,20,7,15,3.65,5.0,fr,5320,168,227532,1,1,Active Shallow Crust,0.0,89.98998,0.0,03/23/8419 +-0.03905,50.02129,8329,5,11,18,23,8,3.75,5.0,fr,5321,166,227544,1,1,Active Shallow Crust,0.0,89.98999,0.0,05/11/8329 +-0.03905,50.02129,2528,9,5,23,0,56,3.75,15.0,fr,5322,50,227545,1,2,Active Shallow Crust,0.0,89.98999,0.0,09/05/2528 +-0.03905,50.02129,9620,8,22,4,9,34,3.75,15.0,fr,5323,192,227545,1,2,Active Shallow Crust,0.0,89.98999,0.0,08/22/9620 +-0.03905,50.02129,4244,8,24,7,57,0,3.85,15.0,fr,5324,84,227563,1,1,Active Shallow Crust,0.0,89.99,-90.0,08/24/4244 +-0.03905,50.02129,8616,8,4,8,31,29,3.95,15.0,fr,5325,172,227569,1,1,Active Shallow Crust,0.0,89.99001,0.0,08/04/8616 +-0.03905,50.02129,821,12,13,1,42,36,4.15,15.0,fr,5326,16,227593,1,1,Active Shallow Crust,0.0,89.99001,0.0,12/13/0821 +-0.03905,50.02129,8619,8,6,14,49,36,4.25,5.0,fr,5327,172,227607,1,1,Active Shallow Crust,240.0083,57.99422,0.0,08/06/8619 +-0.03905,50.02129,6246,7,29,19,49,48,4.45,15.0,fr,5328,124,227629,1,1,Active Shallow Crust,0.0,89.99,0.0,07/29/6246 +4.63287,45.62422,6273,8,26,15,7,19,3.55,5.0,fr,5329,125,228000,1,1,Active Shallow Crust,0.0,89.99295,0.0,08/26/6273 +4.63287,45.62422,9484,11,2,16,51,24,3.55,15.0,fr,5330,189,228001,1,1,Active Shallow Crust,0.0,89.99295,0.0,11/02/9484 +4.63287,45.62422,6446,8,25,9,18,2,3.55,15.0,fr,5331,128,228010,1,1,Active Shallow Crust,128.8966,89.99295,0.0,08/25/6446 +4.63287,45.62422,1018,8,28,11,11,33,3.65,5.0,fr,5332,20,228012,1,1,Active Shallow Crust,0.0,89.98743,0.0,08/28/1018 +4.63287,45.62422,4711,12,25,8,14,6,3.65,5.0,fr,5333,94,228015,1,1,Active Shallow Crust,240.0003,58.01366,0.0,12/25/4711 +4.63287,45.62422,9873,10,31,23,40,25,3.75,5.0,fr,5334,197,228030,1,1,Active Shallow Crust,0.0,89.98866,-90.0,10/31/9873 +4.63287,45.62422,6335,7,28,12,36,2,4.05,15.0,fr,5335,126,228064,1,1,Active Shallow Crust,240.0065,58.00554,0.0,07/28/6335 +4.63287,45.62422,6853,12,26,1,45,19,4.15,5.0,fr,5336,137,228072,1,1,Active Shallow Crust,0.0,89.9894,0.0,12/26/6853 +0.02956,48.30556,1296,1,26,5,49,15,3.65,5.0,fr,5337,25,228972,1,2,Active Shallow Crust,0.0,89.99001,0.0,01/26/1296 +0.02956,48.30556,853,4,6,20,10,8,3.65,5.0,fr,5338,17,228972,1,2,Active Shallow Crust,0.0,89.99001,0.0,04/06/0853 +0.02956,48.30556,6799,4,22,20,44,8,3.85,5.0,fr,5339,135,228996,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/22/6799 +0.02956,48.30556,2626,5,10,2,57,31,3.85,5.0,fr,5340,52,229005,1,1,Active Shallow Crust,128.8955,89.99372,0.0,05/10/2626 +0.02956,48.30556,6670,10,23,16,33,38,3.95,15.0,fr,5341,133,229018,1,1,Active Shallow Crust,128.9001,89.99372,0.0,10/23/6670 +0.02956,48.30556,8468,6,4,13,52,36,4.05,15.0,fr,5342,169,229021,1,1,Active Shallow Crust,0.0,89.99,0.0,06/04/8468 +0.02956,48.30556,95,4,16,10,16,13,4.15,15.0,fr,5343,1,229039,1,1,Active Shallow Crust,0.0,89.99,-90.0,04/16/0095 +0.02956,48.30556,5117,2,23,5,27,48,4.15,5.0,fr,5344,102,229041,1,1,Active Shallow Crust,128.8973,89.99372,0.0,02/23/5117 +0.02956,48.30556,1917,6,10,21,13,2,4.35,15.0,fr,5345,38,229057,1,1,Active Shallow Crust,0.0,89.99,0.0,06/10/1917 +0.02956,48.30556,3331,8,1,4,23,31,4.45,5.0,fr,5346,66,229071,1,1,Active Shallow Crust,240.0058,57.99476,0.0,08/01/3331 +0.02956,48.30556,8526,8,13,8,43,24,4.45,27.5,fr,5347,170,229073,1,1,Active Shallow Crust,240.0058,57.99478,0.0,08/13/8526 +0.02956,48.30556,2295,7,14,9,20,4,5.25,5.0,fr,5348,45,229164,1,1,Active Shallow Crust,360.0,89.99,0.0,07/14/2295 +5.22536,43.99494,3550,6,23,11,37,34,3.55,5.0,fr,5349,70,229440,1,1,Active Shallow Crust,0.0,89.99274,0.0,06/23/3550 +5.22536,43.99494,6863,2,12,12,22,23,3.55,15.0,fr,5350,137,229441,1,1,Active Shallow Crust,0.0,89.99274,0.0,02/12/6863 +5.22536,43.99494,8231,7,13,9,6,17,3.55,27.5,fr,5351,164,229442,1,1,Active Shallow Crust,0.0,89.99274,0.0,07/13/8231 +5.22536,43.99494,7417,11,1,0,47,20,3.55,5.0,fr,5352,148,229443,1,1,Active Shallow Crust,240.0113,57.99869,0.0,11/01/7417 +5.22536,43.99494,6593,12,27,6,54,20,3.65,5.0,fr,5353,131,229452,1,1,Active Shallow Crust,0.0,89.98707,0.0,12/27/6593 +5.22536,43.99494,773,5,14,21,26,16,3.65,15.0,fr,5354,15,229453,1,2,Active Shallow Crust,0.0,89.98707,0.0,05/14/0773 +5.22536,43.99494,1899,6,8,12,56,43,3.65,15.0,fr,5355,37,229453,1,2,Active Shallow Crust,0.0,89.98707,0.0,06/08/1899 +5.22536,43.99494,8347,10,26,18,24,9,3.75,5.0,fr,5356,166,229464,1,1,Active Shallow Crust,0.0,89.98847,0.0,10/26/8347 +5.22536,43.99494,5239,8,22,19,53,2,3.75,15.0,fr,5357,104,229465,1,2,Active Shallow Crust,0.0,89.98847,0.0,08/22/5239 +5.22536,43.99494,3061,8,14,19,31,2,3.75,15.0,fr,5358,61,229465,1,2,Active Shallow Crust,0.0,89.98847,0.0,08/14/3061 +5.22536,43.99494,7988,3,30,19,4,52,3.85,5.0,fr,5359,159,229479,1,1,Active Shallow Crust,240.0106,57.99762,0.0,03/30/7988 +5.22536,43.99494,685,12,1,22,7,54,3.95,5.0,fr,5360,13,229488,1,2,Active Shallow Crust,0.0,89.99084,0.0,12/01/0685 +5.22536,43.99494,4889,12,27,14,20,30,3.95,5.0,fr,5361,97,229488,1,2,Active Shallow Crust,0.0,89.99084,0.0,12/27/4889 +5.22536,43.99494,8335,7,28,19,31,3,3.95,15.0,fr,5362,166,229489,1,1,Active Shallow Crust,0.0,89.99084,0.0,07/28/8335 +5.22536,43.99494,860,1,17,13,27,24,3.95,5.0,fr,5363,17,229494,1,1,Active Shallow Crust,0.0,89.99074,-90.0,01/17/0860 +5.22536,43.99494,1386,1,16,5,2,57,4.05,15.0,fr,5364,27,229501,1,1,Active Shallow Crust,0.0,89.99184,0.0,01/16/1386 +5.22536,43.99494,8765,7,12,0,35,42,4.05,5.0,fr,5365,175,229503,1,1,Active Shallow Crust,240.0063,58.00532,0.0,07/12/8765 +5.22536,43.99494,6426,10,29,7,28,57,4.05,5.0,fr,5366,128,229506,1,1,Active Shallow Crust,0.0,89.99174,-90.0,10/29/6426 +5.22536,43.99494,6374,9,29,3,47,53,4.15,5.0,fr,5367,127,229512,1,1,Active Shallow Crust,0.0,89.98909,0.0,09/29/6374 +5.22536,43.99494,7265,7,20,12,24,18,4.15,15.0,fr,5368,145,229513,1,1,Active Shallow Crust,0.0,89.98909,0.0,07/20/7265 +5.22536,43.99494,4844,10,23,2,50,2,4.15,15.0,fr,5369,96,229516,1,1,Active Shallow Crust,240.0084,57.99689,0.0,10/23/4844 +5.22536,43.99494,2342,5,5,1,31,18,4.15,15.0,fr,5370,46,229519,1,1,Active Shallow Crust,0.0,89.98897,-90.0,05/05/2342 +5.22536,43.99494,9660,8,21,23,20,30,4.25,5.0,fr,5371,193,229524,1,1,Active Shallow Crust,0.0,89.99028,0.0,08/21/9660 +5.22536,43.99494,3556,2,24,10,24,53,4.25,15.0,fr,5372,71,229525,1,1,Active Shallow Crust,0.0,89.99028,0.0,02/24/3556 +5.22536,43.99494,191,9,18,5,3,2,4.25,5.0,fr,5373,3,229533,1,1,Active Shallow Crust,128.8953,89.98085,0.0,09/18/0191 +5.22536,43.99494,7579,6,4,12,19,36,4.55,5.0,fr,5374,151,229560,1,1,Active Shallow Crust,0.0,89.99082,0.0,06/04/7579 +5.22536,43.99494,1711,9,20,21,16,7,4.65,5.0,fr,5375,34,229572,1,1,Active Shallow Crust,0.0,89.98978,0.0,09/20/1711 +5.22536,43.99494,1157,2,11,21,47,30,5.05,5.0,fr,5376,23,229620,1,1,Active Shallow Crust,0.0,89.98968,0.0,02/11/1157 +1.30563,49.432,6706,3,8,1,41,33,3.55,5.0,fr,5377,134,229920,1,3,Active Shallow Crust,0.0,89.99017,0.0,03/08/6706 +1.30563,49.432,2234,12,22,13,43,40,3.55,5.0,fr,5378,44,229920,1,3,Active Shallow Crust,0.0,89.99017,0.0,12/22/2234 +1.30563,49.432,5938,8,26,10,1,7,3.55,5.0,fr,5379,118,229920,1,3,Active Shallow Crust,0.0,89.99017,0.0,08/26/5938 +1.30563,49.432,6115,1,9,22,16,26,3.55,15.0,fr,5380,122,229921,1,1,Active Shallow Crust,0.0,89.99017,0.0,01/09/6115 +1.30563,49.432,3862,10,26,7,34,20,3.55,5.0,fr,5381,77,229923,1,1,Active Shallow Crust,240.0123,57.99815,0.0,10/26/3862 +1.30563,49.432,3984,7,25,23,12,28,3.65,15.0,fr,5382,79,229936,1,1,Active Shallow Crust,240.0013,58.01305,0.0,07/25/3984 +1.30563,49.432,2272,7,20,9,43,39,3.75,15.0,fr,5383,45,229948,1,1,Active Shallow Crust,240.009,58.0175,0.0,07/20/2272 +1.30563,49.432,4655,1,10,14,12,10,3.85,5.0,fr,5384,93,229956,1,1,Active Shallow Crust,0.0,89.98956,0.0,01/10/4655 +1.30563,49.432,6124,9,7,12,33,37,4.25,15.0,fr,5385,122,230011,1,1,Active Shallow Crust,359.9996,89.99037,-90.0,09/07/6124 +1.30563,49.432,182,8,19,6,3,56,5.85,15.0,fr,5386,3,230197,1,1,Active Shallow Crust,0.0,89.99001,0.0,08/19/0182 +2.49434,39.97227,7225,4,22,6,50,11,4.05,5.0,fr,5387,144,230460,1,1,Active Shallow Crust,0.0,89.98914,0.0,04/22/7225 +2.49434,39.97227,105,10,29,20,34,31,4.65,15.0,fr,5388,2,230533,1,1,Active Shallow Crust,0.0,89.9902,0.0,10/29/0105 +0.79358,49.27577,6367,11,1,3,55,57,3.55,5.0,fr,5389,127,230880,1,2,Active Shallow Crust,0.0,89.99014,0.0,11/01/6367 +0.79358,49.27577,1239,5,5,3,14,51,3.55,5.0,fr,5390,24,230880,1,2,Active Shallow Crust,0.0,89.99014,0.0,05/05/1239 +0.79358,49.27577,2800,2,6,17,50,36,3.55,5.0,fr,5391,55,230889,1,1,Active Shallow Crust,128.8961,89.99342,0.0,02/06/2800 +0.79358,49.27577,8463,9,12,15,26,24,3.75,5.0,fr,5392,169,230910,1,1,Active Shallow Crust,0.0,89.99009,-90.0,09/12/8463 +0.79358,49.27577,3391,12,28,19,52,44,3.85,15.0,fr,5393,67,230920,1,1,Active Shallow Crust,240.0113,57.99788,0.0,12/28/3391 +0.79358,49.27577,2307,12,12,22,55,18,3.85,5.0,fr,5394,46,230922,1,1,Active Shallow Crust,0.0,89.98999,-90.0,12/12/2307 +0.79358,49.27577,8191,6,21,12,4,48,3.95,5.0,fr,5395,163,230928,1,1,Active Shallow Crust,0.0,89.99014,0.0,06/21/8191 +0.79358,49.27577,9973,3,14,1,54,30,4.05,5.0,fr,5396,199,230940,1,1,Active Shallow Crust,0.0,89.98982,0.0,03/14/9973 +0.79358,49.27577,2381,12,7,14,9,56,4.15,5.0,fr,5397,47,230952,1,1,Active Shallow Crust,0.0,89.9901,0.0,12/07/2381 +0.79358,49.27577,6235,7,28,6,20,36,4.65,15.0,fr,5398,124,231019,1,1,Active Shallow Crust,0.0,89.98991,-90.0,07/28/6235 +0.79358,49.27577,14,9,20,8,57,0,4.75,5.0,fr,5399,0,231027,1,1,Active Shallow Crust,240.0086,58.00468,0.0,09/20/0014 +0.79358,49.27577,7612,3,21,18,23,58,4.95,15.0,fr,5400,152,231049,1,1,Active Shallow Crust,0.0,89.98999,0.0,03/21/7612 +5.01548,47.2297,5937,2,20,7,20,54,3.55,5.0,fr,5401,118,231360,1,1,Active Shallow Crust,0.0,89.99315,0.0,02/20/5937 +5.01548,47.2297,2803,7,14,20,33,27,3.65,5.0,fr,5402,56,231372,1,1,Active Shallow Crust,0.0,89.98779,0.0,07/14/2803 +5.01548,47.2297,7937,7,16,9,30,36,3.65,27.5,fr,5403,158,231374,1,1,Active Shallow Crust,0.0,89.98779,0.0,07/16/7937 +5.01548,47.2297,1782,4,9,3,40,31,3.85,5.0,fr,5404,35,231396,1,1,Active Shallow Crust,0.0,89.9903,0.0,04/09/1782 +5.01548,47.2297,7778,11,2,11,15,17,3.85,15.0,fr,5405,155,231397,1,1,Active Shallow Crust,0.0,89.9903,0.0,11/02/7778 +5.01548,47.2297,5012,9,17,7,26,54,3.85,5.0,fr,5406,100,231399,1,1,Active Shallow Crust,240.0111,57.99785,0.0,09/17/5012 +5.01548,47.2297,1219,8,31,0,21,12,3.95,15.0,fr,5407,24,231412,1,1,Active Shallow Crust,240.0202,58.00515,0.0,08/31/1219 +5.01548,47.2297,8912,1,4,22,3,6,4.15,5.0,fr,5408,178,231432,1,1,Active Shallow Crust,0.0,89.9897,0.0,01/04/8912 +5.01548,47.2297,6350,1,14,8,52,37,4.25,5.0,fr,5409,126,231447,1,1,Active Shallow Crust,240.0082,57.99398,0.0,01/14/6350 +4.16925,41.4393,8113,5,14,6,58,14,3.75,5.0,fr,5410,162,231864,1,1,Active Shallow Crust,0.0,89.98799,0.0,05/14/8113 +4.16925,41.4393,4776,6,28,8,28,30,4.15,5.0,fr,5411,95,231915,1,1,Active Shallow Crust,240.0076,57.9968,0.0,06/28/4776 +4.16925,41.4393,4753,3,15,6,9,35,4.45,5.0,fr,5412,95,231957,1,1,Active Shallow Crust,128.8936,89.99329,0.0,03/15/4753 +-0.53861,44.21278,2755,9,28,1,28,18,3.55,5.0,fr,5413,55,232323,1,1,Active Shallow Crust,240.0122,57.99804,0.0,09/28/2755 +-2.55833,49.32304,6263,12,12,20,39,33,3.55,15.0,fr,5414,125,232801,1,1,Active Shallow Crust,0.0,89.99014,0.0,12/12/6263 +-2.55833,49.32304,1868,10,13,19,50,45,3.75,5.0,fr,5415,37,232824,1,1,Active Shallow Crust,0.0,89.98956,0.0,10/13/1868 +-2.55833,49.32304,8598,6,22,15,50,52,3.85,5.0,fr,5416,171,232836,1,1,Active Shallow Crust,0.0,89.99069,0.0,06/22/8598 +-2.55833,49.32304,2401,4,10,9,54,41,3.85,27.5,fr,5417,48,232838,1,1,Active Shallow Crust,0.0,89.99069,0.0,04/10/2401 +-2.55833,49.32304,9145,12,16,23,28,10,3.85,5.0,fr,5418,182,232845,1,1,Active Shallow Crust,128.8951,89.99419,0.0,12/16/9145 +-2.55833,49.32304,2341,7,29,9,59,20,3.95,5.0,fr,5419,46,232848,1,1,Active Shallow Crust,0.0,89.98963,0.0,07/29/2341 +-2.55833,49.32304,5154,8,29,13,27,43,4.05,15.0,fr,5420,103,232864,1,1,Active Shallow Crust,240.0065,58.00576,0.0,08/29/5154 +-2.55833,49.32304,719,9,30,8,0,50,4.25,5.0,fr,5421,14,232884,1,1,Active Shallow Crust,0.0,89.98972,0.0,09/30/0719 +-2.55833,49.32304,7372,11,15,18,56,58,4.45,5.0,fr,5422,147,232908,1,2,Active Shallow Crust,0.0,89.9895,0.0,11/15/7372 +-2.55833,49.32304,1469,6,8,18,56,8,4.45,5.0,fr,5423,29,232908,1,2,Active Shallow Crust,0.0,89.9895,0.0,06/08/1469 +-2.55833,49.32304,4200,6,4,20,1,30,4.65,5.0,fr,5424,83,232932,1,1,Active Shallow Crust,0.0,89.98981,0.0,06/04/4200 +-2.55833,49.32304,9701,8,1,1,3,16,5.15,5.0,fr,5425,194,232992,1,1,Active Shallow Crust,0.0,89.9901,0.0,08/01/9701 +-5.15276,48.81522,8058,12,14,19,8,46,3.55,5.0,fr,5426,161,233280,1,2,Active Shallow Crust,0.0,89.98672,0.0,12/14/8058 +-5.15276,48.81522,1080,5,9,18,3,6,3.55,5.0,fr,5427,21,233280,1,2,Active Shallow Crust,0.0,89.98672,0.0,05/09/1080 +-5.15276,48.81522,7499,3,19,10,39,41,3.55,5.0,fr,5428,149,233286,1,1,Active Shallow Crust,0.0,89.99329,-90.0,03/19/7499 +-5.15276,48.81522,4795,12,6,5,28,23,4.15,15.0,fr,5429,95,233353,1,1,Active Shallow Crust,0.0,89.99001,0.0,12/06/4795 +-5.15276,48.81522,4210,3,16,16,28,56,4.95,15.0,fr,5430,84,233449,1,1,Active Shallow Crust,0.0,89.9894,0.0,03/16/4210 +-1.34913,50.73539,3877,6,26,4,31,19,3.75,5.0,fr,5431,77,233787,1,1,Active Shallow Crust,240.0089,58.0177,0.0,06/26/3877 +-1.34913,50.73539,1161,2,24,10,44,17,3.85,15.0,fr,5432,23,233797,1,1,Active Shallow Crust,0.0,89.98983,0.0,02/24/1161 +-1.34913,50.73539,759,6,11,3,34,23,4.35,5.0,fr,5433,15,233856,1,1,Active Shallow Crust,0.0,89.98984,0.0,06/11/0759 +1.5164,45.19418,7337,6,21,0,19,39,3.55,27.5,fr,5434,146,234242,1,1,Active Shallow Crust,0.0,89.98934,0.0,06/21/7337 +1.5164,45.19418,2894,8,27,15,28,55,3.75,5.0,fr,5435,57,234267,1,1,Active Shallow Crust,240.008,58.01768,0.0,08/27/2894 +1.5164,45.19418,7064,7,23,3,16,16,3.85,15.0,fr,5436,141,234277,1,1,Active Shallow Crust,0.0,89.98994,0.0,07/23/7064 +1.5164,45.19418,8902,8,11,14,28,47,3.95,5.0,fr,5437,178,234288,1,1,Active Shallow Crust,0.0,89.98991,0.0,08/11/8902 +1.5164,45.19418,9621,9,14,22,19,49,4.25,5.0,fr,5438,192,234324,1,1,Active Shallow Crust,0.0,89.98969,0.0,09/14/9621 +8.91792,50.22009,1943,6,11,2,29,8,3.55,5.0,fr,5439,38,234720,1,1,Active Shallow Crust,0.0,89.9871,0.0,06/11/1943 +8.91792,50.22009,3862,3,26,11,31,37,3.65,27.5,fr,5440,77,234743,1,1,Active Shallow Crust,128.8986,89.96359,0.0,03/26/3862 +8.91792,50.22009,2415,10,14,20,21,31,3.75,15.0,fr,5441,48,234751,1,1,Active Shallow Crust,0.0,89.98963,-90.0,10/14/2415 +8.91792,50.22009,6150,3,25,23,41,4,3.75,5.0,fr,5442,122,234753,1,1,Active Shallow Crust,128.8955,89.96755,0.0,03/25/6150 +8.91792,50.22009,1197,11,1,14,28,7,3.85,5.0,fr,5443,23,234756,1,1,Active Shallow Crust,0.0,89.99087,0.0,11/01/1197 +8.91792,50.22009,9244,12,11,10,42,45,3.95,5.0,fr,5444,184,234768,1,1,Active Shallow Crust,0.0,89.99186,0.0,12/11/9244 +8.91792,50.22009,2402,1,30,2,42,38,3.95,5.0,fr,5445,48,234774,1,1,Active Shallow Crust,0.0,89.99176,-90.0,01/30/2402 +8.91792,50.22009,6243,11,24,18,22,54,4.15,5.0,fr,5446,124,234792,1,1,Active Shallow Crust,0.0,89.98706,0.0,11/24/6243 +8.91792,50.22009,9937,5,18,10,5,29,4.15,15.0,fr,5447,198,234793,1,1,Active Shallow Crust,0.0,89.98706,0.0,05/18/9937 +8.91792,50.22009,4380,4,17,7,51,52,4.15,5.0,fr,5448,87,234798,1,1,Active Shallow Crust,0.0,89.98692,-90.0,04/17/4380 +2.70364,46.63154,8419,9,4,18,14,42,3.55,15.0,fr,5449,168,235681,1,1,Active Shallow Crust,0.0,89.98962,0.0,09/04/8419 +2.70364,46.63154,9091,9,22,1,31,21,3.55,5.0,fr,5450,181,235689,1,1,Active Shallow Crust,128.8963,89.99307,0.0,09/22/9091 +2.70364,46.63154,4189,5,31,1,15,27,3.65,5.0,fr,5451,83,235692,1,1,Active Shallow Crust,0.0,89.99075,0.0,05/31/4189 +2.70364,46.63154,1524,10,14,11,59,2,3.65,15.0,fr,5452,30,235693,1,1,Active Shallow Crust,0.0,89.99075,0.0,10/14/1524 +2.70364,46.63154,3428,4,8,7,7,46,3.65,27.5,fr,5453,68,235694,1,1,Active Shallow Crust,0.0,89.99075,0.0,04/08/3428 +2.70364,46.63154,7603,7,15,5,22,58,3.95,5.0,fr,5454,152,235737,1,1,Active Shallow Crust,128.9,89.99345,0.0,07/15/7603 +2.70364,46.63154,4729,6,16,2,14,18,4.05,5.0,fr,5455,94,235740,1,1,Active Shallow Crust,0.0,89.99026,0.0,06/16/4729 +2.70364,46.63154,4089,4,1,10,48,11,5.75,27.5,fr,5456,81,235946,1,1,Active Shallow Crust,0.0,89.9901,0.0,04/01/4089 +4.44059,42.95586,8583,10,1,15,32,35,3.55,27.5,fr,5457,171,236162,1,1,Active Shallow Crust,0.0,89.99262,0.0,10/01/8583 +4.44059,42.95586,148,2,10,10,10,7,3.55,5.0,fr,5458,2,236166,1,1,Active Shallow Crust,0.0,89.99253,-90.0,02/10/0148 +4.44059,42.95586,7470,1,2,9,56,2,4.45,5.0,fr,5459,149,236268,1,1,Active Shallow Crust,0.0,89.98952,0.0,01/02/7470 +1.71459,43.07214,4043,4,25,9,56,4,3.55,5.0,fr,5460,80,236640,1,1,Active Shallow Crust,0.0,89.99079,0.0,04/25/4043 +1.71459,43.07214,3255,4,12,16,24,21,3.55,15.0,fr,5461,65,236641,1,1,Active Shallow Crust,0.0,89.99079,0.0,04/12/3255 +1.71459,43.07214,2161,1,4,10,39,57,3.55,5.0,fr,5462,43,236646,1,1,Active Shallow Crust,0.0,89.99068,-90.0,01/04/2161 +1.71459,43.07214,2734,6,23,21,14,47,3.55,5.0,fr,5463,54,236649,1,1,Active Shallow Crust,128.8963,89.99448,0.0,06/23/2734 +1.71459,43.07214,8069,4,19,13,8,52,3.75,5.0,fr,5464,161,236664,1,2,Active Shallow Crust,0.0,89.98976,0.0,04/19/8069 +1.71459,43.07214,7137,1,27,8,32,57,3.75,5.0,fr,5465,142,236664,1,2,Active Shallow Crust,0.0,89.98976,0.0,01/27/7137 +1.71459,43.07214,3226,1,1,15,12,59,3.85,27.5,fr,5466,64,236687,1,1,Active Shallow Crust,128.8962,89.99348,0.0,01/01/3226 +1.71459,43.07214,391,1,1,5,49,10,4.35,5.0,fr,5467,7,236742,1,1,Active Shallow Crust,0.0,89.99036,-90.0,01/01/0391 +1.71459,43.07214,8844,8,9,16,24,13,4.55,5.0,fr,5468,176,236763,1,1,Active Shallow Crust,240.0083,57.99723,0.0,08/09/8844 +1.71459,43.07214,9399,10,30,21,51,41,4.75,5.0,fr,5469,187,236784,1,1,Active Shallow Crust,0.0,89.98982,0.0,10/30/9399 +1.71459,43.07214,9432,8,20,21,25,53,5.25,5.0,fr,5470,188,236844,1,1,Active Shallow Crust,0.0,89.99011,0.0,08/20/9432 +1.71459,43.07214,9138,2,13,2,26,14,6.15,15.0,fr,5471,182,236953,1,1,Active Shallow Crust,0.0,89.99002,0.0,02/13/9138 +3.99801,45.53359,1037,11,11,1,52,59,3.55,5.0,fr,5472,20,237120,1,1,Active Shallow Crust,0.0,89.9894,0.0,11/11/1037 +3.99801,45.53359,984,7,19,10,48,35,3.55,5.0,fr,5473,19,237126,1,1,Active Shallow Crust,0.0,89.98928,-90.0,07/19/0984 +3.99801,45.53359,7554,8,21,23,10,17,3.65,5.0,fr,5474,151,237132,1,1,Active Shallow Crust,0.0,89.99055,0.0,08/21/7554 +3.99801,45.53359,1786,8,17,17,33,21,3.65,15.0,fr,5475,35,237133,1,1,Active Shallow Crust,0.0,89.99055,0.0,08/17/1786 +3.99801,45.53359,8920,11,3,22,33,49,3.65,5.0,fr,5476,178,237138,1,1,Active Shallow Crust,0.0,89.99045,-90.0,11/03/8920 +3.99801,45.53359,7308,10,20,2,36,40,3.75,15.0,fr,5477,146,237145,1,2,Active Shallow Crust,0.0,89.98878,0.0,10/20/7308 +3.99801,45.53359,9521,11,13,14,36,0,3.75,15.0,fr,5478,190,237145,1,2,Active Shallow Crust,0.0,89.98878,0.0,11/13/9521 +3.99801,45.53359,9664,7,28,4,8,40,3.95,5.0,fr,5479,193,237168,1,1,Active Shallow Crust,0.0,89.99109,0.0,07/28/9664 +3.99801,45.53359,9556,5,22,10,43,25,3.95,15.0,fr,5480,191,237169,1,2,Active Shallow Crust,0.0,89.99109,0.0,05/22/9556 +3.99801,45.53359,8068,1,25,2,52,43,3.95,15.0,fr,5481,161,237169,1,2,Active Shallow Crust,0.0,89.99109,0.0,01/25/8068 +3.99801,45.53359,8267,12,19,14,25,51,3.95,5.0,fr,5482,165,237171,1,1,Active Shallow Crust,240.0201,58.00422,0.0,12/19/8267 +3.99801,45.53359,5279,9,20,2,55,25,4.65,5.0,fr,5483,105,237252,1,1,Active Shallow Crust,0.0,89.99004,0.0,09/20/5279 +-1.36716,49.94204,862,7,21,6,55,56,3.75,15.0,fr,5484,17,237625,1,1,Active Shallow Crust,0.0,89.98969,0.0,07/21/0862 +-1.36716,49.94204,4620,2,24,6,2,2,3.95,5.0,fr,5485,92,237657,1,1,Active Shallow Crust,128.9,89.99335,0.0,02/24/4620 +-1.36716,49.94204,4251,6,9,22,18,48,4.05,5.0,fr,5486,85,237660,1,1,Active Shallow Crust,0.0,89.98997,0.0,06/09/4251 +-1.36716,49.94204,9691,2,19,10,34,51,4.05,5.0,fr,5487,193,237663,1,1,Active Shallow Crust,240.0064,58.00604,0.0,02/19/9691 +-3.71658,47.46005,5728,1,19,15,52,54,3.75,15.0,fr,5488,114,238105,1,1,Active Shallow Crust,0.0,89.98917,0.0,01/19/5728 +-3.71658,47.46005,9786,7,23,3,0,17,3.95,5.0,fr,5489,195,238128,1,1,Active Shallow Crust,0.0,89.98924,0.0,07/23/9786 +-3.71658,47.46005,1937,2,25,10,9,33,4.35,15.0,fr,5490,38,238180,1,1,Active Shallow Crust,240.0088,57.99598,0.0,02/25/1937 +-3.71658,47.46005,1550,2,1,13,46,28,4.55,5.0,fr,5491,30,238200,1,1,Active Shallow Crust,0.0,89.9903,0.0,02/01/1550 +-3.71658,47.46005,2763,11,17,7,23,11,4.75,5.0,fr,5492,55,238224,1,1,Active Shallow Crust,0.0,89.98972,0.0,11/17/2763 +1.7711,50.88283,2917,5,14,16,36,58,3.55,5.0,fr,5493,58,238560,1,2,Active Shallow Crust,0.0,89.99046,0.0,05/14/2917 +1.7711,50.88283,2642,5,12,22,35,58,3.55,5.0,fr,5494,52,238560,1,2,Active Shallow Crust,0.0,89.99046,0.0,05/12/2642 +1.7711,50.88283,8655,7,2,23,10,22,3.55,15.0,fr,5495,173,238561,1,1,Active Shallow Crust,0.0,89.99046,0.0,07/02/8655 +1.7711,50.88283,2612,1,22,17,41,15,3.55,5.0,fr,5496,52,238569,1,1,Active Shallow Crust,128.8959,89.99443,0.0,01/22/2612 +1.7711,50.88283,1084,8,3,5,34,18,3.55,15.0,fr,5497,21,238570,1,1,Active Shallow Crust,128.8959,89.99443,0.0,08/03/1084 +1.7711,50.88283,2934,3,31,20,32,12,3.75,5.0,fr,5498,58,238584,1,1,Active Shallow Crust,0.0,89.98989,0.0,03/31/2934 +1.7711,50.88283,8215,4,28,19,40,12,3.75,5.0,fr,5499,164,238587,1,1,Active Shallow Crust,240.0088,58.01762,0.0,04/28/8215 +1.7711,50.88283,5407,9,24,19,28,48,3.85,15.0,fr,5500,108,238597,1,2,Active Shallow Crust,0.0,89.98987,0.0,09/24/5407 +1.7711,50.88283,2742,4,5,9,40,10,3.85,15.0,fr,5501,54,238597,1,2,Active Shallow Crust,0.0,89.98987,0.0,04/05/2742 +1.7711,50.88283,8527,10,3,5,33,2,3.85,15.0,fr,5502,170,238603,1,1,Active Shallow Crust,0.0,89.98975,-90.0,10/03/8527 +1.7711,50.88283,4623,12,14,11,52,41,4.25,5.0,fr,5503,92,238644,1,1,Active Shallow Crust,0.0,89.99005,0.0,12/14/4623 +1.7711,50.88283,7607,5,24,16,49,15,4.35,5.0,fr,5504,152,238656,1,1,Active Shallow Crust,0.0,89.98987,0.0,05/24/7607 +1.7711,50.88283,8585,7,24,12,39,31,4.65,5.0,fr,5505,171,238692,1,1,Active Shallow Crust,0.0,89.99014,0.0,07/24/8585 +6.47461,45.73511,9805,4,18,0,10,50,3.55,5.0,fr,5506,196,239040,1,3,Active Shallow Crust,0.0,89.99296,0.0,04/18/9805 +6.47461,45.73511,1502,1,5,3,0,30,3.55,5.0,fr,5507,30,239040,1,3,Active Shallow Crust,0.0,89.99296,0.0,01/05/1502 +6.47461,45.73511,2909,9,3,15,40,55,3.55,5.0,fr,5508,58,239040,1,3,Active Shallow Crust,0.0,89.99296,0.0,09/03/2909 +6.47461,45.73511,2037,4,23,18,52,16,3.55,15.0,fr,5509,40,239041,1,3,Active Shallow Crust,0.0,89.99296,0.0,04/23/2037 +6.47461,45.73511,362,9,2,4,54,28,3.55,15.0,fr,5510,7,239041,1,3,Active Shallow Crust,0.0,89.99296,0.0,09/02/0362 +6.47461,45.73511,4084,6,9,12,2,29,3.55,15.0,fr,5511,81,239041,1,3,Active Shallow Crust,0.0,89.99296,0.0,06/09/4084 +6.47461,45.73511,5933,1,18,9,37,35,3.55,27.5,fr,5512,118,239042,1,1,Active Shallow Crust,0.0,89.99296,0.0,01/18/5933 +6.47461,45.73511,3665,12,27,4,40,22,3.55,5.0,fr,5513,73,239049,1,2,Active Shallow Crust,128.8968,89.99297,0.0,12/27/3665 +6.47461,45.73511,9828,3,2,15,14,30,3.55,5.0,fr,5514,196,239049,1,2,Active Shallow Crust,128.8968,89.99297,0.0,03/02/9828 +6.47461,45.73511,2463,11,22,0,56,19,3.65,5.0,fr,5515,49,239052,1,1,Active Shallow Crust,0.0,89.98746,0.0,11/22/2463 +6.47461,45.73511,6635,2,19,11,25,19,3.65,5.0,fr,5516,132,239058,1,1,Active Shallow Crust,0.0,89.98731,-90.0,02/19/6635 +6.47461,45.73511,5811,9,3,14,48,0,3.75,5.0,fr,5517,116,239064,1,1,Active Shallow Crust,0.0,89.98882,0.0,09/03/5811 +6.47461,45.73511,1448,12,31,4,47,15,3.75,15.0,fr,5518,28,239065,1,1,Active Shallow Crust,0.0,89.98882,0.0,12/31/1448 +6.47461,45.73511,8396,1,26,5,1,24,3.75,15.0,fr,5519,167,239068,1,1,Active Shallow Crust,240.008,58.01841,0.0,01/26/8396 +6.47461,45.73511,8523,9,18,10,9,31,3.85,27.5,fr,5520,170,239078,1,1,Active Shallow Crust,0.0,89.99004,0.0,09/18/8523 +6.47461,45.73511,681,9,14,19,52,36,3.85,5.0,fr,5521,13,239079,1,1,Active Shallow Crust,240.0107,57.99707,0.0,09/14/0681 +6.47461,45.73511,9365,8,13,13,52,52,3.95,5.0,fr,5522,187,239088,1,1,Active Shallow Crust,0.0,89.99112,0.0,08/13/9365 +6.47461,45.73511,4170,8,16,1,7,46,3.95,5.0,fr,5523,83,239091,1,1,Active Shallow Crust,240.0205,58.00473,0.0,08/16/4170 +6.47461,45.73511,7505,11,21,9,58,33,3.95,27.5,fr,5524,150,239099,1,1,Active Shallow Crust,128.9013,89.99334,0.0,11/21/7505 +6.47461,45.73511,1016,12,28,11,4,8,4.05,5.0,fr,5525,20,239100,1,1,Active Shallow Crust,0.0,89.98813,0.0,12/28/1016 +6.47461,45.73511,4935,1,11,8,10,31,4.15,5.0,fr,5526,98,239112,1,1,Active Shallow Crust,0.0,89.98942,0.0,01/11/4935 +6.47461,45.73511,6285,11,21,8,11,13,4.15,5.0,fr,5527,125,239121,1,1,Active Shallow Crust,128.8982,89.99294,0.0,11/21/6285 +6.47461,45.73511,3159,8,23,9,11,41,4.35,5.0,fr,5528,63,239136,1,1,Active Shallow Crust,0.0,89.98879,0.0,08/23/3159 +6.47461,45.73511,3448,10,24,6,29,51,4.35,15.0,fr,5529,68,239140,1,1,Active Shallow Crust,240.0085,57.99594,0.0,10/24/3448 +6.47461,45.73511,5205,3,24,1,5,3,4.35,5.0,fr,5530,104,239145,1,1,Active Shallow Crust,128.8986,89.98248,0.0,03/24/5205 +6.47461,45.73511,2690,11,12,22,0,19,4.55,5.0,fr,5531,53,239160,1,1,Active Shallow Crust,0.0,89.9911,0.0,11/12/2690 +6.47461,45.73511,876,7,30,0,5,17,4.85,5.0,fr,5532,17,239196,1,1,Active Shallow Crust,0.0,89.99055,0.0,07/30/0876 +6.47461,45.73511,7732,11,3,21,19,46,5.05,5.0,fr,5533,154,239220,1,1,Active Shallow Crust,0.0,89.98998,0.0,11/03/7732 +8.21894,50.14749,4764,1,6,21,9,34,3.55,5.0,fr,5534,95,239520,1,2,Active Shallow Crust,0.0,89.98708,0.0,01/06/4764 +8.21894,50.14749,3193,1,31,20,41,20,3.55,5.0,fr,5535,63,239520,1,2,Active Shallow Crust,0.0,89.98708,0.0,01/31/3193 +8.21894,50.14749,8740,10,16,22,32,44,3.55,15.0,fr,5536,174,239521,1,1,Active Shallow Crust,0.0,89.98708,0.0,10/16/8740 +8.21894,50.14749,3338,5,12,18,45,45,3.55,27.5,fr,5537,66,239522,1,1,Active Shallow Crust,0.0,89.98708,0.0,05/12/3338 +8.21894,50.14749,3979,5,21,22,29,49,3.55,5.0,fr,5538,79,239529,1,1,Active Shallow Crust,128.8951,89.99354,0.0,05/21/3979 +8.21894,50.14749,9964,8,20,21,3,57,3.65,5.0,fr,5539,199,239532,1,1,Active Shallow Crust,0.0,89.98848,0.0,08/20/9964 +8.21894,50.14749,2075,7,26,18,15,34,3.75,15.0,fr,5540,41,239545,1,1,Active Shallow Crust,0.0,89.98973,0.0,07/26/2075 +8.21894,50.14749,780,8,6,21,45,51,3.75,5.0,fr,5541,15,239553,1,1,Active Shallow Crust,128.8981,89.96635,0.0,08/06/0780 +8.21894,50.14749,4925,6,20,0,27,21,3.85,5.0,fr,5542,98,239559,1,1,Active Shallow Crust,240.0117,57.99866,0.0,06/20/4925 +8.21894,50.14749,6342,6,14,1,30,49,4.05,15.0,fr,5543,126,239581,1,1,Active Shallow Crust,0.0,89.99273,0.0,06/14/6342 +8.21894,50.14749,2214,2,24,3,9,31,4.05,5.0,fr,5544,44,239586,1,1,Active Shallow Crust,0.0,89.99265,-90.0,02/24/2214 +8.21894,50.14749,2701,6,9,15,58,3,4.15,27.5,fr,5545,54,239597,1,1,Active Shallow Crust,240.0101,57.9977,0.0,06/09/2701 +8.21894,50.14749,1462,5,17,12,0,42,4.45,5.0,fr,5546,29,239628,1,1,Active Shallow Crust,0.0,89.99083,0.0,05/17/1462 +8.21894,50.14749,8767,3,12,11,39,36,4.75,5.0,fr,5547,175,239664,1,1,Active Shallow Crust,0.0,89.99026,0.0,03/12/8767 +8.21894,50.14749,285,6,1,4,40,25,4.75,27.5,fr,5548,5,239666,1,1,Active Shallow Crust,0.0,89.99026,0.0,06/01/0285 +8.21894,50.14749,7992,8,20,2,44,15,5.15,5.0,fr,5549,159,239721,1,1,Active Shallow Crust,128.8818,89.99113,0.0,08/20/7992 +8.21894,50.14749,7505,9,22,19,37,34,5.85,15.0,fr,5550,150,239797,1,1,Active Shallow Crust,0.0,89.98993,0.0,09/22/7505 +8.21894,50.14749,1263,1,8,1,20,15,5.95,5.0,fr,5551,25,239808,1,1,Active Shallow Crust,0.0,89.9902,0.0,01/08/1263 +3.62386,47.54198,4059,3,31,23,27,41,3.75,5.0,fr,5552,81,240024,1,1,Active Shallow Crust,0.0,89.98919,0.0,03/31/4059 +3.62386,47.54198,7895,3,31,4,8,16,3.75,5.0,fr,5553,157,240030,1,1,Active Shallow Crust,0.0,89.98906,-90.0,03/31/7895 +3.62386,47.54198,1381,11,28,0,20,39,3.95,27.5,fr,5554,27,240056,1,1,Active Shallow Crust,0.0,89.98914,-90.0,11/28/1381 +3.62386,47.54198,5875,8,12,13,52,8,4.05,15.0,fr,5555,117,240061,1,1,Active Shallow Crust,0.0,89.99043,0.0,08/12/5875 +3.62386,47.54198,6689,1,16,14,16,14,4.05,27.5,fr,5556,133,240068,1,1,Active Shallow Crust,0.0,89.99032,-90.0,01/16/6689 +-2.23957,42.65448,8351,5,1,3,6,52,3.55,5.0,fr,5557,167,240480,1,1,Active Shallow Crust,0.0,89.98888,0.0,05/01/8351 +-2.23957,42.65448,6413,3,3,11,48,27,3.75,5.0,fr,5558,128,240510,1,1,Active Shallow Crust,0.0,89.99106,-90.0,03/03/6413 +-2.23957,42.65448,1985,2,12,9,18,21,3.75,5.0,fr,5559,39,240513,1,1,Active Shallow Crust,128.8965,89.96742,0.0,02/12/1985 +-2.23957,42.65448,7546,8,4,17,2,29,3.85,5.0,fr,5560,150,240516,1,2,Active Shallow Crust,0.0,89.9895,0.0,08/04/7546 +-2.23957,42.65448,3448,3,10,8,17,9,3.85,5.0,fr,5561,68,240516,1,2,Active Shallow Crust,0.0,89.9895,0.0,03/10/3448 +-2.23957,42.65448,5093,7,2,4,21,50,3.95,5.0,fr,5562,101,240528,1,1,Active Shallow Crust,0.0,89.99064,0.0,07/02/5093 +-2.23957,42.65448,4160,12,29,21,9,43,4.05,5.0,fr,5563,83,240540,1,1,Active Shallow Crust,0.0,89.98957,0.0,12/29/4160 +-2.23957,42.65448,5318,11,9,8,18,57,4.05,5.0,fr,5564,106,240549,1,1,Active Shallow Crust,128.8907,89.99374,0.0,11/09/5318 +-2.23957,42.65448,2486,1,3,18,46,59,4.15,5.0,fr,5565,49,240561,1,1,Active Shallow Crust,128.8983,89.9935,0.0,01/03/2486 +-2.23957,42.65448,6763,6,20,19,22,57,4.15,15.0,fr,5566,135,240562,1,1,Active Shallow Crust,128.8983,89.9935,0.0,06/20/6763 +-2.23957,42.65448,5514,3,31,16,3,19,4.25,5.0,fr,5567,110,240564,1,1,Active Shallow Crust,0.0,89.99006,0.0,03/31/5514 +-2.23957,42.65448,7338,8,20,14,10,1,4.45,5.0,fr,5568,146,240588,1,1,Active Shallow Crust,0.0,89.98947,0.0,08/20/7338 +-2.23957,42.65448,4006,6,1,13,18,5,4.55,5.0,fr,5569,80,240600,1,1,Active Shallow Crust,0.0,89.98945,0.0,06/01/4006 +-2.23957,42.65448,4837,12,5,23,50,55,4.55,5.0,fr,5570,96,240603,1,1,Active Shallow Crust,240.0084,57.99704,0.0,12/05/4837 +-2.23957,42.65448,8961,2,5,17,19,54,5.05,5.0,fr,5571,179,240660,1,1,Active Shallow Crust,0.0,89.9901,0.0,02/05/8961 +5.14595,47.11905,4666,6,2,13,19,35,3.55,5.0,fr,5572,93,240960,1,1,Active Shallow Crust,0.0,89.99314,0.0,06/02/4666 +5.14595,47.11905,6814,7,15,19,54,40,3.55,15.0,fr,5573,136,240964,1,1,Active Shallow Crust,240.0124,57.99781,0.0,07/15/6814 +5.14595,47.11905,4618,5,1,2,22,2,3.65,5.0,fr,5574,92,240972,1,1,Active Shallow Crust,0.0,89.98777,0.0,05/01/4618 +5.14595,47.11905,3595,3,21,20,25,38,3.65,15.0,fr,5575,71,240973,1,1,Active Shallow Crust,0.0,89.98777,0.0,03/21/3595 +5.14595,47.11905,4293,4,5,1,44,35,3.65,5.0,fr,5576,85,240975,1,1,Active Shallow Crust,240.0002,58.01371,0.0,04/05/4293 +5.14595,47.11905,4524,4,7,19,7,29,3.75,5.0,fr,5577,90,240984,1,2,Active Shallow Crust,0.0,89.9891,0.0,04/07/4524 +5.14595,47.11905,3323,6,11,20,3,28,3.75,5.0,fr,5578,66,240984,1,2,Active Shallow Crust,0.0,89.9891,0.0,06/11/3323 +5.14595,47.11905,4606,10,26,5,13,59,3.75,5.0,fr,5579,92,240990,1,1,Active Shallow Crust,0.0,89.98898,-90.0,10/26/4606 +5.14595,47.11905,9464,1,10,23,0,42,3.85,15.0,fr,5580,189,240997,1,2,Active Shallow Crust,0.0,89.99029,0.0,01/10/9464 +5.14595,47.11905,7255,11,2,8,14,34,3.85,15.0,fr,5581,145,240997,1,2,Active Shallow Crust,0.0,89.99029,0.0,11/02/7255 +5.14595,47.11905,675,4,30,0,18,38,4.05,5.0,fr,5582,13,241020,1,1,Active Shallow Crust,0.0,89.98843,0.0,04/30/0675 +5.14595,47.11905,7794,10,29,14,26,7,4.55,5.0,fr,5583,155,241086,1,1,Active Shallow Crust,0.0,89.98902,-90.0,10/29/7794 +9.17867,49.11866,7613,4,28,0,16,33,3.55,5.0,fr,5584,152,241440,1,2,Active Shallow Crust,0.0,89.9868,0.0,04/28/7613 +9.17867,49.11866,8017,10,14,2,26,4,3.55,5.0,fr,5585,160,241440,1,2,Active Shallow Crust,0.0,89.9868,0.0,10/14/8017 +9.17867,49.11866,9850,1,24,23,41,33,3.55,5.0,fr,5586,196,241443,1,1,Active Shallow Crust,240.0107,57.99876,0.0,01/24/9850 +9.17867,49.11866,8575,9,21,15,15,53,3.65,5.0,fr,5587,171,241452,1,1,Active Shallow Crust,0.0,89.98824,0.0,09/21/8575 +9.17867,49.11866,7275,4,5,14,23,8,3.65,5.0,fr,5588,145,241455,1,1,Active Shallow Crust,240.0017,58.01256,0.0,04/05/7275 +9.17867,49.11866,5244,7,31,14,12,16,3.75,27.5,fr,5589,104,241466,1,1,Active Shallow Crust,0.0,89.98952,0.0,07/31/5244 +9.17867,49.11866,3894,12,16,4,24,0,4.15,5.0,fr,5590,77,241512,1,1,Active Shallow Crust,0.0,89.98677,0.0,12/16/3894 +9.17867,49.11866,3751,3,25,9,49,36,4.25,5.0,fr,5591,75,241533,1,1,Active Shallow Crust,128.8938,89.98104,0.0,03/25/3751 +9.17867,49.11866,1158,10,31,21,33,36,4.95,5.0,fr,5592,23,241608,1,1,Active Shallow Crust,0.0,89.98946,0.0,10/31/1158 +1.4149,46.79321,4859,12,2,10,55,27,3.55,5.0,fr,5593,97,241920,1,2,Active Shallow Crust,0.0,89.98965,0.0,12/02/4859 +1.4149,46.79321,4401,3,10,7,5,47,3.55,5.0,fr,5594,88,241920,1,2,Active Shallow Crust,0.0,89.98965,0.0,03/10/4401 +1.4149,46.79321,8267,8,31,14,33,26,3.55,5.0,fr,5595,165,241923,1,1,Active Shallow Crust,240.012,57.99801,0.0,08/31/8267 +1.4149,46.79321,1065,8,27,19,57,24,3.55,5.0,fr,5596,21,241926,1,1,Active Shallow Crust,0.0,89.98952,-90.0,08/27/1065 +1.4149,46.79321,6722,11,18,11,13,22,3.65,5.0,fr,5597,134,241932,1,2,Active Shallow Crust,0.0,89.98923,0.0,11/18/6722 +1.4149,46.79321,2889,12,5,3,11,5,3.65,5.0,fr,5598,57,241932,1,2,Active Shallow Crust,0.0,89.98923,0.0,12/05/2889 +1.4149,46.79321,2708,1,17,9,36,23,3.75,5.0,fr,5599,54,241944,1,3,Active Shallow Crust,0.0,89.9904,0.0,01/17/2708 +1.4149,46.79321,6043,10,11,15,11,10,3.75,5.0,fr,5600,120,241944,1,3,Active Shallow Crust,0.0,89.9904,0.0,10/11/6043 +1.4149,46.79321,8491,2,5,14,21,58,3.75,5.0,fr,5601,169,241944,1,3,Active Shallow Crust,0.0,89.9904,0.0,02/05/8491 +1.4149,46.79321,8350,8,21,4,21,34,3.75,15.0,fr,5602,166,241945,1,1,Active Shallow Crust,0.0,89.9904,0.0,08/21/8350 +1.4149,46.79321,8448,1,24,21,45,16,3.75,5.0,fr,5603,168,241950,1,1,Active Shallow Crust,0.0,89.9903,-90.0,01/24/8448 +1.4149,46.79321,820,12,6,21,57,57,3.85,5.0,fr,5604,16,241956,1,1,Active Shallow Crust,0.0,89.99023,0.0,12/06/0820 +1.4149,46.79321,4944,8,27,11,59,13,3.85,15.0,fr,5605,98,241957,1,1,Active Shallow Crust,0.0,89.99023,0.0,08/27/4944 +1.4149,46.79321,5805,8,22,10,6,21,3.95,15.0,fr,5606,116,241969,1,1,Active Shallow Crust,0.0,89.9902,0.0,08/22/5805 +1.4149,46.79321,5048,2,16,23,30,25,3.95,5.0,fr,5607,100,241974,1,1,Active Shallow Crust,0.0,89.99008,-90.0,02/16/5048 +1.4149,46.79321,1175,4,5,10,51,35,4.05,5.0,fr,5608,23,241980,1,3,Active Shallow Crust,0.0,89.9903,0.0,04/05/1175 +1.4149,46.79321,7664,6,21,12,31,53,4.05,5.0,fr,5609,153,241980,1,3,Active Shallow Crust,0.0,89.9903,0.0,06/21/7664 +1.4149,46.79321,8814,12,24,8,50,27,4.05,5.0,fr,5610,176,241980,1,3,Active Shallow Crust,0.0,89.9903,0.0,12/24/8814 +1.4149,46.79321,7244,11,30,15,18,33,4.05,27.5,fr,5611,144,241982,1,1,Active Shallow Crust,0.0,89.9903,0.0,11/30/7244 +1.4149,46.79321,186,9,16,15,26,47,4.15,5.0,fr,5612,3,241992,1,2,Active Shallow Crust,0.0,89.98962,0.0,09/16/0186 +1.4149,46.79321,5794,8,17,0,28,49,4.15,5.0,fr,5613,115,241992,1,2,Active Shallow Crust,0.0,89.98962,0.0,08/17/5794 +1.4149,46.79321,4864,12,9,18,35,40,4.25,5.0,fr,5614,97,242007,1,1,Active Shallow Crust,240.0076,57.99411,0.0,12/09/4864 +1.4149,46.79321,808,8,22,22,16,40,5.35,5.0,fr,5615,16,242136,1,1,Active Shallow Crust,0.0,89.99,0.0,08/22/0808 +6.70927,48.59507,860,7,25,18,12,55,3.65,5.0,fr,5616,17,242415,1,1,Active Shallow Crust,240.0009,58.01292,0.0,07/25/0860 +6.70927,48.59507,2218,9,2,20,29,50,3.65,15.0,fr,5617,44,242416,1,1,Active Shallow Crust,240.0009,58.01292,0.0,09/02/2218 +6.70927,48.59507,5416,2,19,3,9,33,3.85,5.0,fr,5618,108,242439,1,1,Active Shallow Crust,240.0109,57.99833,0.0,02/19/5416 +6.70927,48.59507,593,3,17,4,46,45,4.35,15.0,fr,5619,11,242497,1,1,Active Shallow Crust,0.0,89.98938,0.0,03/17/0593 +6.70927,48.59507,8233,10,5,2,0,9,4.85,5.0,fr,5620,164,242556,1,1,Active Shallow Crust,0.0,89.98955,0.0,10/05/8233 +1.52254,50.4851,4077,8,2,18,38,12,3.75,5.0,fr,5621,81,242904,1,1,Active Shallow Crust,0.0,89.98981,0.0,08/02/4077 +1.52254,50.4851,4259,6,11,12,33,59,3.75,15.0,fr,5622,85,242905,1,1,Active Shallow Crust,0.0,89.98981,0.0,06/11/4259 +1.52254,50.4851,3462,10,1,12,21,34,4.15,5.0,fr,5623,69,242952,1,1,Active Shallow Crust,0.0,89.99035,0.0,10/01/3462 +1.52254,50.4851,2213,9,9,23,5,59,4.15,15.0,fr,5624,44,242953,1,1,Active Shallow Crust,0.0,89.99035,0.0,09/09/2213 +1.52254,50.4851,3446,10,27,18,29,20,4.85,15.0,fr,5625,68,243037,1,1,Active Shallow Crust,0.0,89.98994,0.0,10/27/3446 +-1.2602,45.10128,8419,4,25,12,2,20,3.75,15.0,fr,5626,168,243394,1,1,Active Shallow Crust,128.8969,89.96734,0.0,04/25/8419 +-1.2602,45.10128,5366,8,6,23,20,47,3.85,5.0,fr,5627,107,243396,1,1,Active Shallow Crust,0.0,89.98992,0.0,08/06/5366 +-1.2602,45.10128,8375,10,11,4,53,44,3.85,15.0,fr,5628,167,243397,1,1,Active Shallow Crust,0.0,89.98992,0.0,10/11/8375 +-1.2602,45.10128,4323,3,27,16,57,2,4.15,5.0,fr,5629,86,243432,1,1,Active Shallow Crust,0.0,89.99019,0.0,03/27/4323 +-1.2602,45.10128,9864,3,8,17,26,36,4.35,5.0,fr,5630,197,243462,1,1,Active Shallow Crust,0.0,89.98997,-90.0,03/08/9864 +-1.260196,45.10128,7141,8,13,11,28,6,6.25,6.744814,fr,5631,142,243684,1,1,Active Shallow Crust,0.0,89.99001,0.0,08/13/7141 +-0.51776,46.92841,3936,5,31,22,45,52,3.55,5.0,fr,5632,78,243840,1,1,Active Shallow Crust,0.0,89.98967,0.0,05/31/3936 +-0.51776,46.92841,4198,3,27,16,46,9,3.65,5.0,fr,5633,83,243852,1,1,Active Shallow Crust,0.0,89.99003,0.0,03/27/4198 +-0.51776,46.92841,9671,10,31,17,10,55,3.65,15.0,fr,5634,193,243853,1,3,Active Shallow Crust,0.0,89.99003,0.0,10/31/9671 +-0.51776,46.92841,9415,11,12,0,12,25,3.65,15.0,fr,5635,188,243853,1,3,Active Shallow Crust,0.0,89.99003,0.0,11/12/9415 +-0.51776,46.92841,9698,1,9,22,37,25,3.65,15.0,fr,5636,193,243853,1,3,Active Shallow Crust,0.0,89.99003,0.0,01/09/9698 +-0.51776,46.92841,6291,3,15,1,19,52,3.75,5.0,fr,5637,125,243864,1,2,Active Shallow Crust,0.0,89.98975,0.0,03/15/6291 +-0.51776,46.92841,9359,12,5,12,1,37,3.75,5.0,fr,5638,187,243864,1,2,Active Shallow Crust,0.0,89.98975,0.0,12/05/9359 +-0.51776,46.92841,9363,9,15,9,27,8,3.75,15.0,fr,5639,187,243865,1,1,Active Shallow Crust,0.0,89.98975,0.0,09/15/9363 +-0.51776,46.92841,5011,5,2,2,17,23,3.75,5.0,fr,5640,100,243867,1,1,Active Shallow Crust,240.0084,58.01759,0.0,05/02/5011 +-0.51776,46.92841,4100,12,15,14,30,42,3.85,15.0,fr,5641,81,243877,1,3,Active Shallow Crust,0.0,89.99025,0.0,12/15/4100 +-0.51776,46.92841,2891,10,31,22,19,5,3.85,15.0,fr,5642,57,243877,1,3,Active Shallow Crust,0.0,89.99025,0.0,10/31/2891 +-0.51776,46.92841,9146,2,20,0,44,14,3.85,15.0,fr,5643,182,243877,1,3,Active Shallow Crust,0.0,89.99025,0.0,02/20/9146 +-0.51776,46.92841,177,7,3,11,13,51,3.95,5.0,fr,5644,3,243888,1,2,Active Shallow Crust,0.0,89.99023,0.0,07/03/0177 +-0.51776,46.92841,3917,2,10,3,52,41,3.95,5.0,fr,5645,78,243888,1,2,Active Shallow Crust,0.0,89.99023,0.0,02/10/3917 +-0.51776,46.92841,608,4,7,22,49,5,3.95,15.0,fr,5646,12,243889,1,1,Active Shallow Crust,0.0,89.99023,0.0,04/07/0608 +-0.51776,46.92841,8351,12,10,1,7,58,3.95,5.0,fr,5647,167,243897,1,1,Active Shallow Crust,128.9003,89.99375,0.0,12/10/8351 +-0.51776,46.92841,5184,7,26,19,25,27,4.05,5.0,fr,5648,103,243900,1,1,Active Shallow Crust,0.0,89.98984,0.0,07/26/5184 +-0.51776,46.92841,1317,4,10,22,43,40,4.05,15.0,fr,5649,26,243901,1,1,Active Shallow Crust,0.0,89.98984,0.0,04/10/1317 +-0.51776,46.92841,2700,7,8,18,20,50,4.15,5.0,fr,5650,53,243912,1,1,Active Shallow Crust,0.0,89.99007,0.0,07/08/2700 +-0.51776,46.92841,4833,7,13,18,22,7,4.25,5.0,fr,5651,96,243924,1,1,Active Shallow Crust,0.0,89.99001,0.0,07/13/4833 +-0.51776,46.92841,4450,1,21,19,53,0,4.35,5.0,fr,5652,88,243936,1,1,Active Shallow Crust,0.0,89.99006,0.0,01/21/4450 +-0.51776,46.92841,5671,6,2,19,5,54,4.35,27.5,fr,5653,113,243941,1,1,Active Shallow Crust,240.0085,57.99597,0.0,06/02/5671 +-0.51776,46.92841,9231,9,12,12,18,51,4.55,5.0,fr,5654,184,243969,1,1,Active Shallow Crust,128.8938,89.98579,0.0,09/12/9231 +-0.51776,46.92841,8510,2,9,23,25,18,4.65,15.0,fr,5655,170,243973,1,1,Active Shallow Crust,0.0,89.99005,0.0,02/09/8510 +-0.51776,46.92841,3221,3,30,21,2,9,4.95,5.0,fr,5656,64,244008,1,1,Active Shallow Crust,0.0,89.99004,0.0,03/30/3221 +-0.51776,46.92841,1426,10,1,21,1,36,5.05,15.0,fr,5657,28,244021,1,1,Active Shallow Crust,0.0,89.99005,0.0,10/01/1426 +-0.51776,46.92841,5587,5,21,7,48,6,5.15,15.0,fr,5658,111,244033,1,1,Active Shallow Crust,0.0,89.99004,0.0,05/21/5587 +7.87823,50.85285,8087,9,12,10,6,31,3.55,5.0,fr,5659,161,244323,1,1,Active Shallow Crust,240.014,57.99729,0.0,09/12/8087 +7.87823,50.85285,5007,4,12,7,12,36,3.55,15.0,fr,5660,100,244327,1,1,Active Shallow Crust,0.0,89.98712,-90.0,04/12/5007 +7.87823,50.85285,5330,1,3,23,57,59,3.65,15.0,fr,5661,106,244333,1,1,Active Shallow Crust,0.0,89.98866,0.0,01/03/5330 +7.87823,50.85285,3087,4,24,11,58,56,4.05,5.0,fr,5662,61,244380,1,1,Active Shallow Crust,0.0,89.98926,0.0,04/24/3087 +7.87823,50.85285,9873,6,8,16,13,38,4.05,5.0,fr,5663,197,244389,1,1,Active Shallow Crust,128.8902,89.99284,0.0,06/08/9873 +4.27298,43.3325,4891,5,13,7,9,10,3.55,5.0,fr,5664,97,244800,1,1,Active Shallow Crust,0.0,89.99267,0.0,05/13/4891 +4.27298,43.3325,2378,1,28,20,28,55,3.95,5.0,fr,5665,47,244848,1,1,Active Shallow Crust,0.0,89.99075,0.0,01/28/2378 +4.27298,43.3325,1242,4,28,2,27,43,3.95,15.0,fr,5666,24,244849,1,1,Active Shallow Crust,0.0,89.99075,0.0,04/28/1242 +4.27298,43.3325,8896,6,17,6,19,12,4.05,5.0,fr,5667,177,244860,1,1,Active Shallow Crust,0.0,89.99175,0.0,06/17/8896 +4.27298,43.3325,1338,10,20,12,5,31,4.15,15.0,fr,5668,26,244873,1,1,Active Shallow Crust,0.0,89.98897,0.0,10/20/1338 +4.27298,43.3325,7079,10,28,17,20,19,4.15,5.0,fr,5669,141,244875,1,1,Active Shallow Crust,240.0079,57.99714,0.0,10/28/7079 +4.27298,43.3325,6033,4,10,9,9,24,4.35,5.0,fr,5670,120,244899,1,1,Active Shallow Crust,240.0079,57.99588,0.0,04/10/6033 +5.60919,44.97013,9488,9,15,5,6,4,3.55,5.0,fr,5671,189,245280,1,1,Active Shallow Crust,0.0,89.99287,0.0,09/15/9488 +5.60919,44.97013,6162,5,24,3,2,52,3.55,15.0,fr,5672,123,245281,1,1,Active Shallow Crust,0.0,89.99287,0.0,05/24/6162 +5.60919,44.97013,1197,8,25,12,57,50,3.55,5.0,fr,5673,23,245283,1,1,Active Shallow Crust,240.0121,57.99801,0.0,08/25/1197 +5.60919,44.97013,8122,9,9,14,11,27,3.55,15.0,fr,5674,162,245287,1,1,Active Shallow Crust,0.0,89.99278,-90.0,09/09/8122 +5.60919,44.97013,498,10,18,16,46,6,3.55,5.0,fr,5675,9,245289,1,1,Active Shallow Crust,128.8966,89.99287,0.0,10/18/0498 +5.60919,44.97013,3295,5,25,12,18,22,3.65,27.5,fr,5676,65,245297,1,1,Active Shallow Crust,240.0004,58.01303,0.0,05/25/3295 +5.60919,44.97013,7878,6,8,14,42,21,3.75,5.0,fr,5677,157,245307,1,2,Active Shallow Crust,240.0084,58.01731,0.0,06/08/7878 +5.60919,44.97013,9478,1,27,5,26,3,3.75,5.0,fr,5678,189,245307,1,2,Active Shallow Crust,240.0084,58.01731,0.0,01/27/9478 +5.60919,44.97013,4607,11,14,18,44,22,3.75,15.0,fr,5679,92,245308,1,1,Active Shallow Crust,240.0084,58.01731,0.0,11/14/4607 +5.60919,44.97013,5073,12,11,11,16,34,3.85,5.0,fr,5680,101,245316,1,2,Active Shallow Crust,0.0,89.9899,0.0,12/11/5073 +5.60919,44.97013,956,7,13,19,19,18,3.85,5.0,fr,5681,19,245316,1,2,Active Shallow Crust,0.0,89.9899,0.0,07/13/0956 +5.60919,44.97013,8972,4,16,19,55,15,3.85,27.5,fr,5682,179,245321,1,1,Active Shallow Crust,240.0111,57.99833,0.0,04/16/8972 +5.60919,44.97013,9071,11,14,23,10,4,3.85,27.5,fr,5683,181,245324,1,1,Active Shallow Crust,0.0,89.98978,-90.0,11/14/9071 +5.60919,44.97013,1491,2,9,6,55,41,3.95,5.0,fr,5684,29,245328,1,1,Active Shallow Crust,0.0,89.991,0.0,02/09/1491 +5.60919,44.97013,322,5,9,8,22,57,4.25,27.5,fr,5685,6,245372,1,1,Active Shallow Crust,0.0,89.99033,-90.0,05/09/0322 +5.60919,44.97013,763,12,19,10,26,8,4.45,5.0,fr,5686,15,245388,1,1,Active Shallow Crust,0.0,89.98988,0.0,12/19/0763 +5.60919,44.97013,3407,3,5,15,38,32,4.55,5.0,fr,5687,68,245400,1,1,Active Shallow Crust,0.0,89.99097,0.0,03/05/3407 +5.60919,44.97013,4478,6,15,6,29,18,4.65,5.0,fr,5688,89,245415,1,1,Active Shallow Crust,240.0102,57.99446,0.0,06/15/4478 +5.60919,44.97013,2977,8,29,13,28,27,4.75,15.0,fr,5689,59,245425,1,1,Active Shallow Crust,0.0,89.98925,0.0,08/29/2977 +5.60919,44.97013,5637,7,11,0,36,37,5.15,5.0,fr,5690,112,245472,1,1,Active Shallow Crust,0.0,89.98982,0.0,07/11/5637 +2.37952,51.15927,9572,3,19,19,1,33,3.55,5.0,fr,5691,191,245769,1,1,Active Shallow Crust,128.895,89.99368,0.0,03/19/9572 +2.37952,51.15927,1491,8,6,16,0,18,3.65,5.0,fr,5692,29,245772,1,1,Active Shallow Crust,0.0,89.98872,0.0,08/06/1491 +2.37952,51.15927,3954,2,10,5,18,7,3.65,15.0,fr,5693,79,245773,1,1,Active Shallow Crust,0.0,89.98872,0.0,02/10/3954 +2.37952,51.15927,4191,10,16,1,53,28,3.65,15.0,fr,5694,83,245782,1,1,Active Shallow Crust,128.9005,89.96337,0.0,10/16/4191 +2.37952,51.15927,6744,9,29,8,24,5,3.75,5.0,fr,5695,134,245784,1,1,Active Shallow Crust,0.0,89.98995,0.0,09/29/6744 +2.37952,51.15927,5506,4,5,15,4,36,3.75,15.0,fr,5696,110,245785,1,1,Active Shallow Crust,0.0,89.98995,0.0,04/05/5506 +2.37952,51.15927,9839,1,18,19,25,5,3.75,5.0,fr,5697,196,245787,1,1,Active Shallow Crust,240.0089,58.01809,0.0,01/18/9839 +2.37952,51.15927,8590,8,19,10,38,41,4.15,5.0,fr,5698,171,245832,1,1,Active Shallow Crust,0.0,89.99049,0.0,08/19/8590 +2.37952,51.15927,1481,7,23,19,24,36,4.25,5.0,fr,5699,29,245844,1,1,Active Shallow Crust,0.0,89.99011,0.0,07/23/1481 +2.06555,43.39496,3440,11,10,5,39,11,3.55,5.0,fr,5700,68,246240,1,2,Active Shallow Crust,0.0,89.98901,0.0,11/10/3440 +2.06555,43.39496,8060,5,10,20,34,9,3.55,5.0,fr,5701,161,246240,1,2,Active Shallow Crust,0.0,89.98901,0.0,05/10/8060 +2.06555,43.39496,6121,10,12,21,6,57,3.55,5.0,fr,5702,122,246243,1,1,Active Shallow Crust,240.0116,57.99843,0.0,10/12/6121 +2.06555,43.39496,7150,5,21,12,1,0,4.25,15.0,fr,5703,142,246325,1,1,Active Shallow Crust,0.0,89.99018,0.0,05/21/7150 +2.06555,43.39496,9142,7,3,11,53,47,4.65,27.5,fr,5704,182,246374,1,1,Active Shallow Crust,0.0,89.98967,0.0,07/03/9142 +2.06555,43.39496,2390,5,4,14,42,10,4.75,5.0,fr,5705,47,246387,1,1,Active Shallow Crust,240.0065,58.00417,0.0,05/04/2390 +-0.33839,49.87302,349,8,22,21,26,57,3.55,5.0,fr,5706,6,246723,1,1,Active Shallow Crust,240.0125,57.99827,0.0,08/22/0349 +-0.33839,49.87302,6717,11,24,5,15,0,3.75,5.0,fr,5707,134,246744,1,1,Active Shallow Crust,0.0,89.99,0.0,11/24/6717 +-0.33839,49.87302,71,6,12,19,32,31,3.75,5.0,fr,5708,1,246747,1,1,Active Shallow Crust,240.0087,58.0177,0.0,06/12/0071 +-0.33839,49.87302,5534,5,7,22,46,53,3.85,5.0,fr,5709,110,246756,1,1,Active Shallow Crust,0.0,89.98994,0.0,05/07/5534 +-0.33839,49.87302,6234,9,12,19,59,15,3.95,5.0,fr,5710,124,246768,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/12/6234 +-0.33839,49.87302,8669,11,3,15,19,34,4.45,5.0,fr,5711,173,246837,1,1,Active Shallow Crust,128.8914,89.99373,0.0,11/03/8669 +-0.33839,49.87302,8633,2,18,20,18,40,4.65,5.0,fr,5712,172,246852,1,1,Active Shallow Crust,0.0,89.99004,0.0,02/18/8633 +-0.33839,49.87302,6271,1,19,19,56,2,4.65,15.0,fr,5713,125,246853,1,1,Active Shallow Crust,0.0,89.99004,0.0,01/19/6271 +6.71911,47.06309,405,8,5,8,38,32,3.55,5.0,fr,5714,8,247200,1,8,Active Shallow Crust,0.0,89.99313,0.0,08/05/0405 +6.71911,47.06309,8388,12,14,21,58,19,3.55,5.0,fr,5715,167,247200,1,8,Active Shallow Crust,0.0,89.99313,0.0,12/14/8388 +6.71911,47.06309,472,3,23,9,33,15,3.55,5.0,fr,5716,9,247200,1,8,Active Shallow Crust,0.0,89.99313,0.0,03/23/0472 +6.71911,47.06309,517,11,30,5,4,15,3.55,5.0,fr,5717,10,247200,1,8,Active Shallow Crust,0.0,89.99313,0.0,11/30/0517 +6.71911,47.06309,4641,12,8,12,22,43,3.55,5.0,fr,5718,92,247200,1,8,Active Shallow Crust,0.0,89.99313,0.0,12/08/4641 +6.71911,47.06309,8129,12,22,4,46,58,3.55,5.0,fr,5719,162,247200,1,8,Active Shallow Crust,0.0,89.99313,0.0,12/22/8129 +6.71911,47.06309,2681,12,15,14,55,25,3.55,5.0,fr,5720,53,247200,1,8,Active Shallow Crust,0.0,89.99313,0.0,12/15/2681 +6.71911,47.06309,4998,7,16,11,28,57,3.55,5.0,fr,5721,99,247200,1,8,Active Shallow Crust,0.0,89.99313,0.0,07/16/4998 +6.71911,47.06309,6911,10,29,8,3,58,3.55,15.0,fr,5722,138,247201,1,3,Active Shallow Crust,0.0,89.99313,0.0,10/29/6911 +6.71911,47.06309,335,11,18,4,52,54,3.55,15.0,fr,5723,6,247201,1,3,Active Shallow Crust,0.0,89.99313,0.0,11/18/0335 +6.71911,47.06309,9671,8,11,11,43,28,3.55,15.0,fr,5724,193,247201,1,3,Active Shallow Crust,0.0,89.99313,0.0,08/11/9671 +6.71911,47.06309,6576,6,2,14,21,48,3.55,5.0,fr,5725,131,247203,1,2,Active Shallow Crust,240.0127,57.99833,0.0,06/02/6576 +6.71911,47.06309,3984,12,10,11,14,41,3.55,5.0,fr,5726,79,247203,1,2,Active Shallow Crust,240.0127,57.99833,0.0,12/10/3984 +6.71911,47.06309,1675,10,11,23,29,50,3.55,5.0,fr,5727,33,247206,1,1,Active Shallow Crust,0.0,89.99305,-90.0,10/11/1675 +6.71911,47.06309,3413,9,5,21,27,41,3.65,5.0,fr,5728,68,247212,1,5,Active Shallow Crust,0.0,89.98775,0.0,09/05/3413 +6.71911,47.06309,3501,7,27,21,41,47,3.65,5.0,fr,5729,70,247212,1,5,Active Shallow Crust,0.0,89.98775,0.0,07/27/3501 +6.71911,47.06309,4567,10,30,11,23,48,3.65,5.0,fr,5730,91,247212,1,5,Active Shallow Crust,0.0,89.98775,0.0,10/30/4567 +6.71911,47.06309,8023,5,21,18,46,24,3.65,5.0,fr,5731,160,247212,1,5,Active Shallow Crust,0.0,89.98775,0.0,05/21/8023 +6.71911,47.06309,6599,8,17,14,49,9,3.65,5.0,fr,5732,131,247212,1,5,Active Shallow Crust,0.0,89.98775,0.0,08/17/6599 +6.71911,47.06309,7501,2,1,9,29,40,3.65,15.0,fr,5733,150,247213,1,2,Active Shallow Crust,0.0,89.98775,0.0,02/01/7501 +6.71911,47.06309,6587,7,25,2,43,51,3.65,15.0,fr,5734,131,247213,1,2,Active Shallow Crust,0.0,89.98775,0.0,07/25/6587 +6.71911,47.06309,3450,4,14,11,12,37,3.65,5.0,fr,5735,68,247215,1,2,Active Shallow Crust,240.0003,58.01344,0.0,04/14/3450 +6.71911,47.06309,9032,9,15,11,12,45,3.65,5.0,fr,5736,180,247215,1,2,Active Shallow Crust,240.0003,58.01344,0.0,09/15/9032 +6.71911,47.06309,8683,12,7,17,11,4,3.65,15.0,fr,5737,173,247216,1,1,Active Shallow Crust,240.0003,58.01344,0.0,12/07/8683 +6.71911,47.06309,102,1,8,7,23,6,3.65,5.0,fr,5738,2,247221,1,1,Active Shallow Crust,128.8997,89.96353,0.0,01/08/0102 +6.71911,47.06309,4860,7,28,10,30,52,3.75,5.0,fr,5739,97,247224,1,1,Active Shallow Crust,0.0,89.98909,0.0,07/28/4860 +6.71911,47.06309,7128,6,16,6,26,6,3.75,15.0,fr,5740,142,247225,1,1,Active Shallow Crust,0.0,89.98909,0.0,06/16/7128 +6.71911,47.06309,2518,8,13,18,50,14,3.75,27.5,fr,5741,50,247226,1,1,Active Shallow Crust,0.0,89.98909,0.0,08/13/2518 +6.71911,47.06309,9819,5,5,22,55,12,3.75,15.0,fr,5742,196,247228,1,1,Active Shallow Crust,240.0091,58.01702,0.0,05/05/9819 +6.71911,47.06309,1741,1,3,23,45,59,3.75,15.0,fr,5743,34,247234,1,1,Active Shallow Crust,128.8969,89.9675,0.0,01/03/1741 +6.71911,47.06309,3108,1,13,14,41,37,3.85,5.0,fr,5744,62,247236,1,4,Active Shallow Crust,0.0,89.99027,0.0,01/13/3108 +6.71911,47.06309,3732,9,19,19,25,9,3.85,5.0,fr,5745,74,247236,1,4,Active Shallow Crust,0.0,89.99027,0.0,09/19/3732 +6.71911,47.06309,5968,10,12,23,44,13,3.85,5.0,fr,5746,119,247236,1,4,Active Shallow Crust,0.0,89.99027,0.0,10/12/5968 +6.71911,47.06309,7520,6,19,13,52,57,3.85,5.0,fr,5747,150,247236,1,4,Active Shallow Crust,0.0,89.99027,0.0,06/19/7520 +6.71911,47.06309,169,10,17,9,20,10,3.95,5.0,fr,5748,3,247248,1,1,Active Shallow Crust,0.0,89.99133,0.0,10/17/0169 +6.71911,47.06309,3713,5,11,15,47,4,3.95,15.0,fr,5749,74,247249,1,1,Active Shallow Crust,0.0,89.99133,0.0,05/11/3713 +6.71911,47.06309,79,1,27,17,54,28,3.95,27.5,fr,5750,1,247253,1,1,Active Shallow Crust,240.02,58.00516,0.0,01/27/0079 +6.71911,47.06309,8263,6,3,14,13,53,4.05,5.0,fr,5751,165,247260,1,1,Active Shallow Crust,0.0,89.98841,0.0,06/03/8263 +6.71911,47.06309,7002,6,29,21,37,14,4.05,15.0,fr,5752,140,247261,1,1,Active Shallow Crust,0.0,89.98841,0.0,06/29/7002 +6.71911,47.06309,2171,3,2,16,35,7,4.25,5.0,fr,5753,43,247284,1,3,Active Shallow Crust,0.0,89.99079,0.0,03/02/2171 +6.71911,47.06309,7947,8,24,16,49,43,4.25,5.0,fr,5754,158,247284,1,3,Active Shallow Crust,0.0,89.99079,0.0,08/24/7947 +6.71911,47.06309,6557,1,26,11,9,9,4.25,5.0,fr,5755,131,247284,1,3,Active Shallow Crust,0.0,89.99079,0.0,01/26/6557 +6.71911,47.06309,1718,1,14,0,34,12,4.25,15.0,fr,5756,34,247285,1,1,Active Shallow Crust,0.0,89.99079,0.0,01/14/1718 +6.71911,47.06309,5612,6,26,22,13,8,4.25,15.0,fr,5757,112,247288,1,1,Active Shallow Crust,240.0071,57.99459,0.0,06/26/5612 +6.71911,47.06309,445,10,22,13,16,45,4.25,5.0,fr,5758,8,247290,1,1,Active Shallow Crust,0.0,89.99068,-90.0,10/22/0445 +6.71911,47.06309,89,1,21,22,1,16,4.35,15.0,fr,5759,1,247297,1,1,Active Shallow Crust,0.0,89.98906,0.0,01/21/0089 +6.71911,47.06309,5115,6,17,16,25,34,4.35,27.5,fr,5760,102,247301,1,1,Active Shallow Crust,240.0091,57.99594,0.0,06/17/5115 +6.71911,47.06309,3163,1,2,20,16,14,4.45,15.0,fr,5761,63,247312,1,1,Active Shallow Crust,240.0054,57.99492,0.0,01/02/3163 +6.71911,47.06309,6258,6,18,4,55,1,4.55,5.0,fr,5762,125,247320,1,1,Active Shallow Crust,0.0,89.98914,0.0,06/18/6258 +6.71911,47.06309,3914,3,23,21,32,56,4.55,15.0,fr,5763,78,247321,1,1,Active Shallow Crust,0.0,89.98914,0.0,03/23/3914 +6.71911,47.06309,6658,8,15,3,47,13,4.65,15.0,fr,5764,133,247333,1,1,Active Shallow Crust,0.0,89.99032,0.0,08/15/6658 +6.71911,47.06309,4233,6,12,1,0,58,4.75,5.0,fr,5765,84,247344,1,1,Active Shallow Crust,0.0,89.98965,0.0,06/12/4233 +6.71911,47.06309,575,11,16,19,41,48,5.05,5.0,fr,5766,11,247383,1,1,Active Shallow Crust,240.0226,57.99742,0.0,11/16/0575 +6.71911,47.06309,4813,1,16,4,36,6,5.25,5.0,fr,5767,96,247404,1,1,Active Shallow Crust,0.0,89.9903,0.0,01/16/4813 +6.71911,47.06309,5928,5,7,2,47,49,5.35,5.0,fr,5768,118,247422,1,1,Active Shallow Crust,0.0,89.99037,-90.0,05/07/5928 +6.71911,47.06309,485,8,6,17,1,0,5.35,27.5,fr,5769,9,247427,1,1,Active Shallow Crust,128.8828,89.98795,0.0,08/06/0485 +2.47462,40.6475,140,3,14,12,13,26,3.65,15.0,fr,5770,2,247693,1,2,Active Shallow Crust,0.0,89.98977,0.0,03/14/0140 +2.47462,40.6475,6292,12,8,21,30,48,3.65,15.0,fr,5771,125,247693,1,2,Active Shallow Crust,0.0,89.98977,0.0,12/08/6292 +2.47462,40.6475,3918,6,20,12,43,53,3.65,5.0,fr,5772,78,247695,1,1,Active Shallow Crust,240.0006,58.01299,0.0,06/20/3918 +2.47462,40.6475,5310,5,25,11,42,10,3.75,15.0,fr,5773,106,247708,1,1,Active Shallow Crust,240.0073,58.01734,0.0,05/25/5310 +2.47462,40.6475,4153,6,24,3,53,18,4.15,5.0,fr,5774,83,247761,1,1,Active Shallow Crust,128.8984,89.99425,0.0,06/24/4153 +-2.10311,50.55485,6198,10,19,6,27,23,3.55,5.0,fr,5775,123,248160,1,1,Active Shallow Crust,0.0,89.99039,0.0,10/19/6198 +-2.10311,50.55485,7507,1,19,5,40,28,3.75,5.0,fr,5776,150,248184,1,1,Active Shallow Crust,0.0,89.98982,0.0,01/19/7507 +-2.10311,50.55485,9091,7,28,7,17,6,3.85,5.0,fr,5777,181,248196,1,2,Active Shallow Crust,0.0,89.99093,0.0,07/28/9091 +-2.10311,50.55485,4663,9,12,4,15,22,3.85,5.0,fr,5778,93,248196,1,2,Active Shallow Crust,0.0,89.99093,0.0,09/12/4663 +-2.10311,50.55485,6243,2,9,5,57,12,3.85,5.0,fr,5779,124,248199,1,1,Active Shallow Crust,240.0113,57.99788,0.0,02/09/6243 +-2.10311,50.55485,5070,10,9,4,10,35,5.25,5.0,fr,5780,101,248364,1,1,Active Shallow Crust,0.0,89.99004,0.0,10/09/5070 +7.52532,46.11994,9291,5,29,18,7,33,3.55,5.0,fr,5781,185,248640,1,6,Active Shallow Crust,0.0,89.99301,0.0,05/29/9291 +7.52532,46.11994,2437,10,27,8,34,43,3.55,5.0,fr,5782,48,248640,1,6,Active Shallow Crust,0.0,89.99301,0.0,10/27/2437 +7.52532,46.11994,4305,4,5,17,18,2,3.55,5.0,fr,5783,86,248640,1,6,Active Shallow Crust,0.0,89.99301,0.0,04/05/4305 +7.52532,46.11994,2498,6,26,7,47,0,3.55,5.0,fr,5784,49,248640,1,6,Active Shallow Crust,0.0,89.99301,0.0,06/26/2498 +7.52532,46.11994,7045,6,30,0,31,2,3.55,5.0,fr,5785,140,248640,1,6,Active Shallow Crust,0.0,89.99301,0.0,06/30/7045 +7.52532,46.11994,9478,11,14,13,7,12,3.55,5.0,fr,5786,189,248640,1,6,Active Shallow Crust,0.0,89.99301,0.0,11/14/9478 +7.52532,46.11994,3995,2,1,8,58,52,3.55,15.0,fr,5787,79,248641,1,2,Active Shallow Crust,0.0,89.99301,0.0,02/01/3995 +7.52532,46.11994,6033,2,3,6,59,46,3.55,15.0,fr,5788,120,248641,1,2,Active Shallow Crust,0.0,89.99301,0.0,02/03/6033 +7.52532,46.11994,7862,4,11,9,43,48,3.55,5.0,fr,5789,157,248643,1,2,Active Shallow Crust,240.0113,57.99942,0.0,04/11/7862 +7.52532,46.11994,9387,1,21,16,50,25,3.55,5.0,fr,5790,187,248643,1,2,Active Shallow Crust,240.0113,57.99942,0.0,01/21/9387 +7.52532,46.11994,9453,9,4,10,45,53,3.55,15.0,fr,5791,189,248644,1,1,Active Shallow Crust,240.0113,57.99942,0.0,09/04/9453 +7.52532,46.11994,149,7,20,16,34,17,3.55,5.0,fr,5792,2,248646,1,1,Active Shallow Crust,0.0,89.99293,-90.0,07/20/0149 +7.52532,46.11994,2129,12,1,13,11,51,3.55,5.0,fr,5793,42,248649,1,1,Active Shallow Crust,128.8973,89.99301,0.0,12/01/2129 +7.52532,46.11994,5621,7,31,13,57,28,3.55,15.0,fr,5794,112,248650,1,3,Active Shallow Crust,128.8973,89.99301,0.0,07/31/5621 +7.52532,46.11994,9043,3,6,7,49,33,3.55,15.0,fr,5795,180,248650,1,3,Active Shallow Crust,128.8973,89.99301,0.0,03/06/9043 +7.52532,46.11994,2879,11,28,17,44,43,3.55,15.0,fr,5796,57,248650,1,3,Active Shallow Crust,128.8973,89.99301,0.0,11/28/2879 +7.52532,46.11994,2622,12,10,18,17,50,3.65,5.0,fr,5797,52,248652,1,9,Active Shallow Crust,0.0,89.98754,0.0,12/10/2622 +7.52532,46.11994,6530,3,27,17,31,12,3.65,5.0,fr,5798,130,248652,1,9,Active Shallow Crust,0.0,89.98754,0.0,03/27/6530 +7.52532,46.11994,576,1,4,16,25,6,3.65,5.0,fr,5799,11,248652,1,9,Active Shallow Crust,0.0,89.98754,0.0,01/04/0576 +7.52532,46.11994,3780,3,17,17,37,43,3.65,5.0,fr,5800,75,248652,1,9,Active Shallow Crust,0.0,89.98754,0.0,03/17/3780 +7.52532,46.11994,3232,3,26,13,52,46,3.65,5.0,fr,5801,64,248652,1,9,Active Shallow Crust,0.0,89.98754,0.0,03/26/3232 +7.52532,46.11994,6803,4,30,7,5,2,3.65,5.0,fr,5802,136,248652,1,9,Active Shallow Crust,0.0,89.98754,0.0,04/30/6803 +7.52532,46.11994,566,4,22,17,12,41,3.65,5.0,fr,5803,11,248652,1,9,Active Shallow Crust,0.0,89.98754,0.0,04/22/0566 +7.52532,46.11994,5228,3,21,8,6,26,3.65,5.0,fr,5804,104,248652,1,9,Active Shallow Crust,0.0,89.98754,0.0,03/21/5228 +7.52532,46.11994,1002,10,5,0,35,22,3.65,5.0,fr,5805,20,248652,1,9,Active Shallow Crust,0.0,89.98754,0.0,10/05/1002 +7.52532,46.11994,1415,12,2,5,54,38,3.65,15.0,fr,5806,28,248653,1,3,Active Shallow Crust,0.0,89.98754,0.0,12/02/1415 +7.52532,46.11994,4436,8,1,5,6,59,3.65,15.0,fr,5807,88,248653,1,3,Active Shallow Crust,0.0,89.98754,0.0,08/01/4436 +7.52532,46.11994,5111,8,16,5,58,55,3.65,15.0,fr,5808,102,248653,1,3,Active Shallow Crust,0.0,89.98754,0.0,08/16/5111 +7.52532,46.11994,6854,1,7,6,47,45,3.65,27.5,fr,5809,137,248654,1,1,Active Shallow Crust,0.0,89.98754,0.0,01/07/6854 +7.52532,46.11994,5175,7,21,16,11,21,3.65,5.0,fr,5810,103,248658,1,1,Active Shallow Crust,0.0,89.9874,-90.0,07/21/5175 +7.52532,46.11994,4111,11,3,8,34,0,3.65,5.0,fr,5811,82,248661,1,1,Active Shallow Crust,128.9011,89.96352,0.0,11/03/4111 +7.52532,46.11994,8696,2,14,10,1,10,3.65,15.0,fr,5812,173,248662,1,1,Active Shallow Crust,128.9011,89.96352,0.0,02/14/8696 +7.52532,46.11994,6916,1,22,20,2,54,3.75,5.0,fr,5813,138,248664,1,6,Active Shallow Crust,0.0,89.9889,0.0,01/22/6916 +7.52532,46.11994,9016,3,19,23,36,3,3.75,5.0,fr,5814,180,248664,1,6,Active Shallow Crust,0.0,89.9889,0.0,03/19/9016 +7.52532,46.11994,9829,4,16,17,20,59,3.75,5.0,fr,5815,196,248664,1,6,Active Shallow Crust,0.0,89.9889,0.0,04/16/9829 +7.52532,46.11994,2569,6,22,12,29,10,3.75,5.0,fr,5816,51,248664,1,6,Active Shallow Crust,0.0,89.9889,0.0,06/22/2569 +7.52532,46.11994,9684,10,6,13,26,55,3.75,5.0,fr,5817,193,248664,1,6,Active Shallow Crust,0.0,89.9889,0.0,10/06/9684 +7.52532,46.11994,5619,5,30,4,26,53,3.75,5.0,fr,5818,112,248664,1,6,Active Shallow Crust,0.0,89.9889,0.0,05/30/5619 +7.52532,46.11994,4347,4,25,6,10,16,3.75,15.0,fr,5819,86,248665,1,3,Active Shallow Crust,0.0,89.9889,0.0,04/25/4347 +7.52532,46.11994,2302,8,24,2,17,52,3.75,15.0,fr,5820,46,248665,1,3,Active Shallow Crust,0.0,89.9889,0.0,08/24/2302 +7.52532,46.11994,2013,11,1,11,6,17,3.75,15.0,fr,5821,40,248665,1,3,Active Shallow Crust,0.0,89.9889,0.0,11/01/2013 +7.52532,46.11994,697,12,7,6,1,37,3.75,27.5,fr,5822,13,248666,1,2,Active Shallow Crust,0.0,89.9889,0.0,12/07/0697 +7.52532,46.11994,1503,4,11,6,57,52,3.75,27.5,fr,5823,30,248666,1,2,Active Shallow Crust,0.0,89.9889,0.0,04/11/1503 +7.52532,46.11994,8659,10,25,10,25,25,3.75,15.0,fr,5824,173,248668,1,1,Active Shallow Crust,240.0087,58.017,0.0,10/25/8659 +7.52532,46.11994,6927,12,18,9,7,3,3.75,5.0,fr,5825,138,248670,1,1,Active Shallow Crust,0.0,89.98877,-90.0,12/18/6927 +7.52532,46.11994,3426,2,9,1,23,17,3.75,5.0,fr,5826,68,248673,1,2,Active Shallow Crust,128.897,89.96748,0.0,02/09/3426 +7.52532,46.11994,1095,3,22,23,56,46,3.75,5.0,fr,5827,21,248673,1,2,Active Shallow Crust,128.897,89.96748,0.0,03/22/1095 +7.52532,46.11994,8107,6,3,11,0,50,3.75,15.0,fr,5828,162,248674,1,1,Active Shallow Crust,128.897,89.96748,0.0,06/03/8107 +7.52532,46.11994,387,8,24,8,51,10,3.85,5.0,fr,5829,7,248676,1,2,Active Shallow Crust,0.0,89.9901,0.0,08/24/0387 +7.52532,46.11994,5745,8,23,21,47,35,3.85,5.0,fr,5830,114,248676,1,2,Active Shallow Crust,0.0,89.9901,0.0,08/23/5745 +7.52532,46.11994,4580,11,28,5,46,9,3.85,15.0,fr,5831,91,248677,1,2,Active Shallow Crust,0.0,89.9901,0.0,11/28/4580 +7.52532,46.11994,1565,9,8,13,31,8,3.85,15.0,fr,5832,31,248677,1,2,Active Shallow Crust,0.0,89.9901,0.0,09/08/1565 +7.52532,46.11994,4365,7,8,7,34,30,3.85,5.0,fr,5833,87,248679,1,4,Active Shallow Crust,240.0111,57.99752,0.0,07/08/4365 +7.52532,46.11994,760,2,23,15,17,26,3.85,5.0,fr,5834,15,248679,1,4,Active Shallow Crust,240.0111,57.99752,0.0,02/23/0760 +7.52532,46.11994,3609,8,1,20,33,6,3.85,5.0,fr,5835,72,248679,1,4,Active Shallow Crust,240.0111,57.99752,0.0,08/01/3609 +7.52532,46.11994,3684,7,29,15,36,18,3.85,5.0,fr,5836,73,248679,1,4,Active Shallow Crust,240.0111,57.99752,0.0,07/29/3684 +7.52532,46.11994,9122,8,10,0,46,43,3.85,5.0,fr,5837,182,248682,1,1,Active Shallow Crust,0.0,89.98999,-90.0,08/10/9122 +7.52532,46.11994,3175,12,15,9,6,31,3.95,5.0,fr,5838,63,248688,1,1,Active Shallow Crust,0.0,89.99118,0.0,12/15/3175 +7.52532,46.11994,2005,3,10,18,22,49,3.95,5.0,fr,5839,40,248691,1,2,Active Shallow Crust,240.0199,58.00529,0.0,03/10/2005 +7.52532,46.11994,3981,7,26,6,16,16,3.95,5.0,fr,5840,79,248691,1,2,Active Shallow Crust,240.0199,58.00529,0.0,07/26/3981 +7.52532,46.11994,8768,10,8,5,55,33,3.95,15.0,fr,5841,175,248695,1,1,Active Shallow Crust,0.0,89.99107,-90.0,10/08/8768 +7.52532,46.11994,8693,9,21,3,5,30,3.95,15.0,fr,5842,173,248698,1,1,Active Shallow Crust,128.901,89.99339,0.0,09/21/8693 +7.52532,46.11994,9131,3,29,22,9,30,4.05,5.0,fr,5843,182,248700,1,2,Active Shallow Crust,0.0,89.9882,0.0,03/29/9131 +7.52532,46.11994,9250,10,2,8,23,18,4.05,5.0,fr,5844,184,248700,1,2,Active Shallow Crust,0.0,89.9882,0.0,10/02/9250 +7.52532,46.11994,2,6,18,3,42,36,4.05,5.0,fr,5845,0,248703,1,2,Active Shallow Crust,240.0054,58.00607,0.0,06/18/0002 +7.52532,46.11994,7000,2,2,10,44,3,4.05,5.0,fr,5846,139,248703,1,2,Active Shallow Crust,240.0054,58.00607,0.0,02/02/7000 +7.52532,46.11994,4584,2,25,21,27,56,4.05,5.0,fr,5847,91,248709,1,1,Active Shallow Crust,128.8904,89.9941,0.0,02/25/4584 +7.52532,46.11994,1270,5,30,2,30,29,4.15,5.0,fr,5848,25,248712,1,3,Active Shallow Crust,0.0,89.98949,0.0,05/30/1270 +7.52532,46.11994,8890,5,21,11,35,33,4.15,5.0,fr,5849,177,248712,1,3,Active Shallow Crust,0.0,89.98949,0.0,05/21/8890 +7.52532,46.11994,8147,7,19,2,30,10,4.15,5.0,fr,5850,162,248712,1,3,Active Shallow Crust,0.0,89.98949,0.0,07/19/8147 +7.52532,46.11994,1958,12,31,6,53,20,4.15,15.0,fr,5851,39,248713,1,2,Active Shallow Crust,0.0,89.98949,0.0,12/31/1958 +7.52532,46.11994,559,2,22,20,32,21,4.15,15.0,fr,5852,11,248713,1,2,Active Shallow Crust,0.0,89.98949,0.0,02/22/0559 +7.52532,46.11994,9590,11,9,2,31,27,4.15,5.0,fr,5853,191,248715,1,1,Active Shallow Crust,240.0082,57.99708,0.0,11/09/9590 +7.52532,46.11994,5577,7,27,21,10,56,4.15,15.0,fr,5854,111,248716,1,1,Active Shallow Crust,240.0082,57.9971,0.0,07/27/5577 +7.52532,46.11994,8501,5,25,23,10,30,4.15,5.0,fr,5855,170,248718,1,1,Active Shallow Crust,0.0,89.98936,-90.0,05/25/8501 +7.52532,46.11994,1732,6,25,3,3,57,4.25,5.0,fr,5856,34,248724,1,5,Active Shallow Crust,0.0,89.99063,0.0,06/25/1732 +7.52532,46.11994,5163,8,27,22,5,55,4.25,5.0,fr,5857,103,248724,1,5,Active Shallow Crust,0.0,89.99063,0.0,08/27/5163 +7.52532,46.11994,7685,10,10,22,31,32,4.25,5.0,fr,5858,153,248724,1,5,Active Shallow Crust,0.0,89.99063,0.0,10/10/7685 +7.52532,46.11994,8873,12,30,4,25,47,4.25,5.0,fr,5859,177,248724,1,5,Active Shallow Crust,0.0,89.99063,0.0,12/30/8873 +7.52532,46.11994,2420,4,27,17,31,19,4.25,5.0,fr,5860,48,248724,1,5,Active Shallow Crust,0.0,89.99063,0.0,04/27/2420 +7.52532,46.11994,8532,7,4,3,38,1,4.25,15.0,fr,5861,170,248725,1,1,Active Shallow Crust,0.0,89.99063,0.0,07/04/8532 +7.52532,46.11994,31,6,21,4,41,58,4.25,5.0,fr,5862,0,248727,1,2,Active Shallow Crust,240.0076,57.99412,0.0,06/21/0031 +7.52532,46.11994,561,10,28,18,28,2,4.25,5.0,fr,5863,11,248727,1,2,Active Shallow Crust,240.0076,57.99412,0.0,10/28/0561 +7.52532,46.11994,2481,2,1,3,4,28,4.25,5.0,fr,5864,49,248730,1,2,Active Shallow Crust,0.0,89.99052,-90.0,02/01/2481 +7.52532,46.11994,1549,8,11,11,2,9,4.25,5.0,fr,5865,30,248730,1,2,Active Shallow Crust,0.0,89.99052,-90.0,08/11/1549 +7.52532,46.11994,7783,10,26,13,47,13,4.25,5.0,fr,5866,155,248733,1,1,Active Shallow Crust,128.8952,89.98093,0.0,10/26/7783 +7.52532,46.11994,7961,9,22,11,31,56,4.35,5.0,fr,5867,159,248736,1,2,Active Shallow Crust,0.0,89.98887,0.0,09/22/7961 +7.52532,46.11994,1698,5,2,12,40,7,4.35,5.0,fr,5868,33,248736,1,2,Active Shallow Crust,0.0,89.98887,0.0,05/02/1698 +7.52532,46.11994,5599,10,23,4,57,36,4.35,5.0,fr,5869,111,248739,1,1,Active Shallow Crust,240.0082,57.99561,0.0,10/23/5599 +7.52532,46.11994,8992,4,4,0,13,38,4.35,5.0,fr,5870,179,248745,1,1,Active Shallow Crust,128.8982,89.9825,0.0,04/04/8992 +7.52532,46.11994,7475,6,15,18,23,1,4.45,5.0,fr,5871,149,248748,1,1,Active Shallow Crust,0.0,89.99008,0.0,06/15/7475 +7.52532,46.11994,9941,8,20,13,57,13,4.55,5.0,fr,5872,198,248760,1,1,Active Shallow Crust,0.0,89.98895,0.0,08/20/9941 +7.52532,46.11994,7963,11,25,8,32,41,4.65,5.0,fr,5873,159,248778,1,1,Active Shallow Crust,0.0,89.99004,-90.0,11/25/7963 +7.52532,46.11994,4614,3,13,8,33,50,4.75,5.0,fr,5874,92,248784,1,1,Active Shallow Crust,0.0,89.98946,0.0,03/13/4614 +7.52532,46.11994,7057,10,1,13,30,9,4.85,5.0,fr,5875,141,248796,1,1,Active Shallow Crust,0.0,89.99061,0.0,10/01/7057 +7.52532,46.11994,7402,11,22,19,49,25,4.95,5.0,fr,5876,148,248811,1,1,Active Shallow Crust,240.0115,58.0046,0.0,11/22/7402 +7.52532,46.11994,8833,11,2,22,24,39,5.15,5.0,fr,5877,176,248841,1,1,Active Shallow Crust,128.8838,89.99117,0.0,11/02/8833 +7.52532,46.11994,5656,1,6,0,53,39,5.55,5.0,fr,5878,113,248880,1,1,Active Shallow Crust,0.0,89.99021,0.0,01/06/5656 +7.52532,46.11994,795,4,7,14,8,26,5.95,27.5,fr,5879,15,248930,1,1,Active Shallow Crust,0.0,89.98985,0.0,04/07/0795 +2.23578,41.9568,412,4,19,20,23,20,3.55,27.5,fr,5880,8,249122,1,2,Active Shallow Crust,0.0,89.98875,0.0,04/19/0412 +2.23578,41.9568,6548,1,4,10,37,29,3.55,27.5,fr,5881,130,249122,1,2,Active Shallow Crust,0.0,89.98875,0.0,01/04/6548 +2.23578,41.9568,1347,9,18,17,5,13,3.65,15.0,fr,5882,26,249133,1,1,Active Shallow Crust,0.0,89.98997,0.0,09/18/1347 +2.23578,41.9568,8921,3,23,19,53,4,3.65,27.5,fr,5883,178,249134,1,1,Active Shallow Crust,0.0,89.98997,0.0,03/23/8921 +2.23578,41.9568,1871,5,9,8,36,14,3.75,5.0,fr,5884,37,249144,1,1,Active Shallow Crust,0.0,89.99107,0.0,05/09/1871 +2.23578,41.9568,2778,6,21,4,48,55,3.75,5.0,fr,5885,55,249147,1,1,Active Shallow Crust,240.0079,58.01713,0.0,06/21/2778 +2.23578,41.9568,5757,8,11,14,53,57,3.85,5.0,fr,5886,115,249156,1,2,Active Shallow Crust,0.0,89.98938,0.0,08/11/5757 +2.23578,41.9568,5615,6,5,14,48,55,3.85,5.0,fr,5887,112,249156,1,2,Active Shallow Crust,0.0,89.98938,0.0,06/05/5615 +2.23578,41.9568,9505,3,25,1,39,11,3.95,5.0,fr,5888,190,249168,1,2,Active Shallow Crust,0.0,89.99054,0.0,03/25/9505 +2.23578,41.9568,7584,6,24,0,58,10,3.95,5.0,fr,5889,151,249168,1,2,Active Shallow Crust,0.0,89.99054,0.0,06/24/7584 +2.23578,41.9568,8889,1,1,1,13,12,3.95,5.0,fr,5890,177,249174,1,1,Active Shallow Crust,0.0,89.99043,-90.0,01/01/8889 +2.23578,41.9568,5419,4,2,0,38,11,4.05,5.0,fr,5891,108,249180,1,1,Active Shallow Crust,0.0,89.98946,0.0,04/02/5419 +2.23578,41.9568,9735,6,23,18,19,18,4.05,15.0,fr,5892,194,249187,1,1,Active Shallow Crust,0.0,89.98933,-90.0,06/23/9735 +2.23578,41.9568,409,7,3,14,29,41,4.15,5.0,fr,5893,8,249192,1,1,Active Shallow Crust,0.0,89.9906,0.0,07/03/0409 +2.23578,41.9568,7532,11,22,23,6,34,4.15,5.0,fr,5894,150,249195,1,1,Active Shallow Crust,240.0076,57.99741,0.0,11/22/7532 +2.23578,41.9568,2105,11,17,11,22,51,4.55,5.0,fr,5895,42,249246,1,1,Active Shallow Crust,0.0,89.9904,-90.0,11/17/2105 +2.23578,41.9568,4059,10,24,6,54,45,4.65,5.0,fr,5896,81,249258,1,1,Active Shallow Crust,0.0,89.99038,-90.0,10/24/4059 +5.14326,45.1711,7580,3,2,12,51,58,3.55,5.0,fr,5897,151,249600,1,3,Active Shallow Crust,0.0,89.99289,0.0,03/02/7580 +5.14326,45.1711,7604,9,1,0,40,48,3.55,5.0,fr,5898,152,249600,1,3,Active Shallow Crust,0.0,89.99289,0.0,09/01/7604 +5.14326,45.1711,1372,12,2,9,20,49,3.55,5.0,fr,5899,27,249600,1,3,Active Shallow Crust,0.0,89.99289,0.0,12/02/1372 +5.14326,45.1711,5289,12,8,18,1,37,3.55,15.0,fr,5900,105,249601,1,3,Active Shallow Crust,0.0,89.99289,0.0,12/08/5289 +5.14326,45.1711,5289,7,13,22,26,30,3.55,15.0,fr,5901,105,249601,1,3,Active Shallow Crust,0.0,89.99289,0.0,07/13/5289 +5.14326,45.1711,7024,1,26,4,54,42,3.55,15.0,fr,5902,140,249601,1,3,Active Shallow Crust,0.0,89.99289,0.0,01/26/7024 +5.14326,45.1711,5757,2,14,5,29,27,3.55,5.0,fr,5903,115,249603,1,1,Active Shallow Crust,240.0121,57.998,0.0,02/14/5757 +5.14326,45.1711,6490,1,21,4,20,6,3.55,15.0,fr,5904,129,249604,1,1,Active Shallow Crust,240.0121,57.998,0.0,01/21/6490 +5.14326,45.1711,6707,11,12,23,37,15,3.55,5.0,fr,5905,134,249606,1,1,Active Shallow Crust,0.0,89.99281,-90.0,11/12/6707 +5.14326,45.1711,8310,9,9,16,22,48,3.55,5.0,fr,5906,166,249609,1,1,Active Shallow Crust,128.8967,89.99289,0.0,09/09/8310 +5.14326,45.1711,8620,9,28,6,34,1,3.65,5.0,fr,5907,172,249612,1,1,Active Shallow Crust,0.0,89.98733,0.0,09/28/8620 +5.14326,45.1711,4757,7,19,2,20,31,3.65,15.0,fr,5908,95,249613,1,1,Active Shallow Crust,0.0,89.98733,0.0,07/19/4757 +5.14326,45.1711,1118,10,24,19,37,5,3.65,27.5,fr,5909,22,249614,1,1,Active Shallow Crust,0.0,89.98733,0.0,10/24/1118 +5.14326,45.1711,4731,3,20,3,30,48,3.65,5.0,fr,5910,94,249615,1,1,Active Shallow Crust,240.0004,58.01288,0.0,03/20/4731 +5.14326,45.1711,4953,5,7,23,49,22,3.65,5.0,fr,5911,99,249618,1,1,Active Shallow Crust,0.0,89.98718,-90.0,05/07/4953 +5.14326,45.1711,9670,4,26,22,8,29,3.65,5.0,fr,5912,193,249621,1,2,Active Shallow Crust,128.9003,89.9635,0.0,04/26/9670 +5.14326,45.1711,2738,7,10,7,19,13,3.65,5.0,fr,5913,54,249621,1,2,Active Shallow Crust,128.9003,89.9635,0.0,07/10/2738 +5.14326,45.1711,3512,9,24,20,32,56,3.75,15.0,fr,5914,70,249625,1,1,Active Shallow Crust,0.0,89.98871,0.0,09/24/3512 +5.14326,45.1711,9934,12,3,12,55,15,3.85,5.0,fr,5915,198,249636,1,2,Active Shallow Crust,0.0,89.98994,0.0,12/03/9934 +5.14326,45.1711,7138,2,19,2,44,12,3.85,5.0,fr,5916,142,249636,1,2,Active Shallow Crust,0.0,89.98994,0.0,02/19/7138 +5.14326,45.1711,5303,8,17,8,15,4,3.85,15.0,fr,5917,106,249637,1,2,Active Shallow Crust,0.0,89.98994,0.0,08/17/5303 +5.14326,45.1711,8829,9,8,8,31,49,3.85,15.0,fr,5918,176,249637,1,2,Active Shallow Crust,0.0,89.98994,0.0,09/08/8829 +5.14326,45.1711,2052,10,31,9,18,47,3.85,5.0,fr,5919,41,249642,1,1,Active Shallow Crust,0.0,89.98981,-90.0,10/31/2052 +5.14326,45.1711,2240,10,18,17,17,9,3.95,5.0,fr,5920,44,249648,1,1,Active Shallow Crust,0.0,89.99103,0.0,10/18/2240 +5.14326,45.1711,2105,9,7,23,27,29,3.95,15.0,fr,5921,42,249649,1,1,Active Shallow Crust,0.0,89.99103,0.0,09/07/2105 +5.14326,45.1711,2368,10,31,2,58,59,3.95,5.0,fr,5922,47,249657,1,1,Active Shallow Crust,128.9016,89.99327,0.0,10/31/2368 +5.14326,45.1711,78,7,27,11,22,42,4.15,15.0,fr,5923,1,249673,1,1,Active Shallow Crust,0.0,89.98931,0.0,07/27/0078 +5.14326,45.1711,1174,9,7,1,57,14,4.35,15.0,fr,5924,23,249697,1,1,Active Shallow Crust,0.0,89.98868,0.0,09/07/1174 +5.14326,45.1711,4433,9,30,11,57,50,4.45,15.0,fr,5925,88,249709,1,1,Active Shallow Crust,0.0,89.98991,0.0,09/30/4433 +5.14326,45.1711,1205,3,23,8,32,40,5.45,15.0,fr,5926,24,249832,1,1,Active Shallow Crust,240.0277,57.99832,0.0,03/23/1205 +5.14326,45.1711,3194,4,20,1,8,31,5.65,5.0,fr,5927,63,249855,1,1,Active Shallow Crust,240.0328,58.00167,0.0,04/20/3194 +0.97892,42.71685,8681,2,23,14,49,5,3.55,5.0,fr,5928,173,250080,1,1,Active Shallow Crust,0.0,89.98981,0.0,02/23/8681 +0.97892,42.71685,9023,10,26,6,19,54,3.55,27.5,fr,5929,180,250082,1,1,Active Shallow Crust,0.0,89.98981,0.0,10/26/9023 +0.97892,42.71685,9176,3,16,6,19,19,3.55,15.0,fr,5930,183,250084,1,2,Active Shallow Crust,240.0119,57.99813,0.0,03/16/9176 +0.97892,42.71685,5788,11,15,7,15,4,3.55,15.0,fr,5931,115,250084,1,2,Active Shallow Crust,240.0119,57.99813,0.0,11/15/5788 +0.97892,42.71685,6238,11,14,14,36,54,3.65,5.0,fr,5932,124,250092,1,3,Active Shallow Crust,0.0,89.9901,0.0,11/14/6238 +0.97892,42.71685,4108,5,16,11,15,42,3.65,5.0,fr,5933,82,250092,1,3,Active Shallow Crust,0.0,89.9901,0.0,05/16/4108 +0.97892,42.71685,2348,5,31,19,10,7,3.65,5.0,fr,5934,46,250092,1,3,Active Shallow Crust,0.0,89.9901,0.0,05/31/2348 +0.97892,42.71685,7617,6,27,19,33,54,3.65,5.0,fr,5935,152,250095,1,1,Active Shallow Crust,240.0006,58.01288,0.0,06/27/7617 +0.97892,42.71685,8402,7,31,23,13,9,3.65,5.0,fr,5936,168,250098,1,1,Active Shallow Crust,0.0,89.98998,-90.0,07/31/8402 +0.97892,42.71685,9759,7,24,5,21,28,3.65,15.0,fr,5937,195,250099,1,1,Active Shallow Crust,0.0,89.98998,-90.0,07/24/9759 +0.97892,42.71685,1461,1,9,5,19,15,3.65,5.0,fr,5938,29,250101,1,1,Active Shallow Crust,128.9006,89.96352,0.0,01/09/1461 +0.97892,42.71685,7671,2,23,15,38,50,3.75,5.0,fr,5939,153,250104,1,1,Active Shallow Crust,0.0,89.9897,0.0,02/23/7671 +0.97892,42.71685,4816,12,22,4,12,6,3.75,5.0,fr,5940,96,250107,1,1,Active Shallow Crust,240.0078,58.01758,0.0,12/22/4816 +0.97892,42.71685,2514,9,21,2,4,41,3.75,27.5,fr,5941,50,250109,1,1,Active Shallow Crust,240.0078,58.01758,0.0,09/21/2514 +0.97892,42.71685,4058,10,31,13,28,17,3.75,5.0,fr,5942,81,250113,1,1,Active Shallow Crust,128.8969,89.96735,0.0,10/31/4058 +0.97892,42.71685,1813,2,10,17,44,30,3.85,5.0,fr,5943,36,250116,1,3,Active Shallow Crust,0.0,89.99017,0.0,02/10/1813 +0.97892,42.71685,3484,6,15,23,59,28,3.85,5.0,fr,5944,69,250116,1,3,Active Shallow Crust,0.0,89.99017,0.0,06/15/3484 +0.97892,42.71685,9643,11,26,0,21,36,3.85,5.0,fr,5945,192,250116,1,3,Active Shallow Crust,0.0,89.99017,0.0,11/26/9643 +0.97892,42.71685,6564,11,23,16,41,1,3.95,5.0,fr,5946,131,250128,1,1,Active Shallow Crust,0.0,89.99007,0.0,11/23/6564 +0.97892,42.71685,4894,1,10,11,5,19,4.05,15.0,fr,5947,97,250147,1,1,Active Shallow Crust,0.0,89.98999,-90.0,01/10/4894 +0.97892,42.71685,41,3,2,4,26,39,4.05,5.0,fr,5948,0,250149,1,1,Active Shallow Crust,128.8911,89.99375,0.0,03/02/0041 +0.97892,42.71685,4698,2,5,20,58,6,4.15,5.0,fr,5949,93,250152,1,2,Active Shallow Crust,0.0,89.98979,0.0,02/05/4698 +0.97892,42.71685,1739,3,29,1,15,45,4.15,5.0,fr,5950,34,250152,1,2,Active Shallow Crust,0.0,89.98979,0.0,03/29/1739 +0.97892,42.71685,4301,5,8,6,14,49,4.15,15.0,fr,5951,86,250153,1,1,Active Shallow Crust,0.0,89.98979,0.0,05/08/4301 +0.97892,42.71685,8498,11,6,16,22,25,4.15,5.0,fr,5952,169,250155,1,1,Active Shallow Crust,240.0078,57.9972,0.0,11/06/8498 +0.97892,42.71685,6818,10,6,19,46,54,4.25,5.0,fr,5953,136,250167,1,1,Active Shallow Crust,240.0068,57.99392,0.0,10/06/6818 +0.97892,42.71685,408,6,1,3,58,49,4.25,15.0,fr,5954,8,250168,1,1,Active Shallow Crust,240.0068,57.99392,0.0,06/01/0408 +0.97892,42.71685,9615,9,16,1,20,36,4.25,27.5,fr,5955,192,250172,1,1,Active Shallow Crust,0.0,89.98996,-90.0,09/16/9615 +0.97892,42.71685,1441,12,18,18,35,13,4.35,15.0,fr,5956,28,250177,1,1,Active Shallow Crust,0.0,89.99004,0.0,12/18/1441 +0.97892,42.71685,1348,11,3,17,41,52,4.35,27.5,fr,5957,26,250178,1,2,Active Shallow Crust,0.0,89.99004,0.0,11/03/1348 +0.97892,42.71685,2665,10,7,21,8,21,4.35,27.5,fr,5958,53,250178,1,2,Active Shallow Crust,0.0,89.99004,0.0,10/07/2665 +0.97892,42.71685,2298,12,12,17,11,41,4.35,5.0,fr,5959,45,250182,1,1,Active Shallow Crust,0.0,89.98993,-90.0,12/12/2298 +0.97892,42.71685,8862,12,10,12,42,47,4.35,5.0,fr,5960,177,250185,1,1,Active Shallow Crust,128.8986,89.98277,0.0,12/10/8862 +0.97892,42.71685,247,4,22,6,21,49,4.75,5.0,fr,5961,4,250224,1,1,Active Shallow Crust,0.0,89.99,0.0,04/22/0247 +0.97892,42.71685,3907,7,21,21,22,14,4.85,5.0,fr,5962,78,250236,1,1,Active Shallow Crust,0.0,89.99004,0.0,07/21/3907 +0.97892,42.71685,793,6,25,17,39,40,4.95,5.0,fr,5963,15,250257,1,1,Active Shallow Crust,128.8912,89.98979,0.0,06/25/0793 +0.97892,42.71685,1962,2,10,18,48,19,5.05,5.0,fr,5964,39,250260,1,1,Active Shallow Crust,0.0,89.98995,0.0,02/10/1962 +0.97892,42.71685,7584,10,23,23,46,25,5.15,5.0,fr,5965,151,250275,1,1,Active Shallow Crust,240.0176,57.99956,0.0,10/23/7584 +1.46677,47.59392,5998,11,9,0,31,47,3.55,15.0,fr,5966,119,250561,1,1,Active Shallow Crust,0.0,89.9898,0.0,11/09/5998 +1.46677,47.59392,9819,11,27,8,34,41,3.55,27.5,fr,5967,196,250562,1,2,Active Shallow Crust,0.0,89.9898,0.0,11/27/9819 +1.46677,47.59392,1811,11,11,1,39,56,3.55,27.5,fr,5968,36,250562,1,2,Active Shallow Crust,0.0,89.9898,0.0,11/11/1811 +1.46677,47.59392,7328,8,19,7,11,20,4.15,5.0,fr,5969,146,250632,1,1,Active Shallow Crust,0.0,89.98978,0.0,08/19/7328 +3.41339,53.33669,393,7,27,23,58,30,3.95,5.0,fr,5970,7,251088,1,1,Active Shallow Crust,0.0,89.9905,0.0,07/27/0393 +4.83886,48.22583,2071,7,8,7,10,45,3.55,5.0,fr,5971,41,251520,1,1,Active Shallow Crust,0.0,89.99328,0.0,07/08/2071 +4.83886,48.22583,6691,8,28,19,23,58,3.95,15.0,fr,5972,133,251569,1,1,Active Shallow Crust,0.0,89.99152,0.0,08/28/6691 +6.36957,47.14914,558,12,25,1,25,32,3.55,5.0,fr,5973,11,252000,1,3,Active Shallow Crust,0.0,89.99314,0.0,12/25/0558 +6.36957,47.14914,7180,12,18,1,23,39,3.55,5.0,fr,5974,143,252000,1,3,Active Shallow Crust,0.0,89.99314,0.0,12/18/7180 +6.36957,47.14914,1368,11,4,22,50,4,3.55,5.0,fr,5975,27,252000,1,3,Active Shallow Crust,0.0,89.99314,0.0,11/04/1368 +6.36957,47.14914,4693,1,2,0,11,44,3.55,5.0,fr,5976,93,252003,1,2,Active Shallow Crust,240.0121,57.99855,0.0,01/02/4693 +6.36957,47.14914,5612,1,13,1,10,29,3.55,5.0,fr,5977,112,252003,1,2,Active Shallow Crust,240.0121,57.99855,0.0,01/13/5612 +6.36957,47.14914,6403,8,23,2,38,32,3.55,5.0,fr,5978,128,252009,1,3,Active Shallow Crust,128.895,89.99657,0.0,08/23/6403 +6.36957,47.14914,8338,4,14,22,30,59,3.55,5.0,fr,5979,166,252009,1,3,Active Shallow Crust,128.895,89.99657,0.0,04/14/8338 +6.36957,47.14914,6572,5,20,11,57,22,3.55,5.0,fr,5980,131,252009,1,3,Active Shallow Crust,128.895,89.99657,0.0,05/20/6572 +6.36957,47.14914,6105,8,30,7,5,20,3.55,15.0,fr,5981,122,252010,1,1,Active Shallow Crust,128.895,89.99657,0.0,08/30/6105 +6.36957,47.14914,7314,5,28,19,41,38,3.65,5.0,fr,5982,146,252012,1,1,Active Shallow Crust,0.0,89.98778,0.0,05/28/7314 +6.36957,47.14914,5190,10,22,19,58,30,3.65,15.0,fr,5983,103,252022,1,1,Active Shallow Crust,128.9008,89.96354,0.0,10/22/5190 +6.36957,47.14914,7864,4,24,16,37,58,3.75,5.0,fr,5984,157,252030,1,1,Active Shallow Crust,0.0,89.98898,-90.0,04/24/7864 +6.36957,47.14914,5529,12,15,12,51,29,3.75,5.0,fr,5985,110,252033,1,1,Active Shallow Crust,128.8959,89.9675,0.0,12/15/5529 +6.36957,47.14914,7889,6,30,0,13,6,3.85,5.0,fr,5986,157,252036,1,1,Active Shallow Crust,0.0,89.99029,0.0,06/30/7889 +6.36957,47.14914,8304,12,13,22,45,19,3.85,5.0,fr,5987,166,252039,1,1,Active Shallow Crust,240.0112,57.99734,0.0,12/13/8304 +6.36957,47.14914,9717,5,6,10,14,0,3.85,5.0,fr,5988,194,252042,1,2,Active Shallow Crust,0.0,89.99018,-90.0,05/06/9717 +6.36957,47.14914,6444,7,20,8,57,15,3.85,5.0,fr,5989,128,252042,1,2,Active Shallow Crust,0.0,89.99018,-90.0,07/20/6444 +6.36957,47.14914,8763,10,6,1,17,36,3.85,5.0,fr,5990,175,252045,1,2,Active Shallow Crust,128.8945,89.99515,0.0,10/06/8763 +6.36957,47.14914,3471,7,1,11,33,23,3.85,5.0,fr,5991,69,252045,1,2,Active Shallow Crust,128.8945,89.99515,0.0,07/01/3471 +6.36957,47.14914,2352,4,15,10,6,44,3.85,15.0,fr,5992,47,252046,1,1,Active Shallow Crust,128.8945,89.99515,0.0,04/15/2352 +6.36957,47.14914,6641,12,6,6,2,33,3.95,5.0,fr,5993,132,252057,1,1,Active Shallow Crust,128.9012,89.99351,0.0,12/06/6641 +6.36957,47.14914,4286,5,27,15,41,19,4.05,15.0,fr,5994,85,252061,1,1,Active Shallow Crust,0.0,89.98843,0.0,05/27/4286 +6.36957,47.14914,3782,3,15,14,2,18,4.15,5.0,fr,5995,75,252072,1,1,Active Shallow Crust,0.0,89.98969,0.0,03/15/3782 +6.36957,47.14914,4071,4,15,23,58,52,4.15,27.5,fr,5996,81,252074,1,1,Active Shallow Crust,0.0,89.98969,0.0,04/15/4071 +6.36957,47.14914,7600,4,14,4,10,7,4.35,5.0,fr,5997,151,252099,1,2,Active Shallow Crust,240.0087,57.99591,0.0,04/14/7600 +6.36957,47.14914,5952,3,10,16,21,10,4.35,5.0,fr,5998,119,252099,1,2,Active Shallow Crust,240.0087,57.99591,0.0,03/10/5952 +6.36957,47.14914,1463,10,29,7,10,31,4.35,5.0,fr,5999,29,252102,1,1,Active Shallow Crust,0.0,89.98895,-90.0,10/29/1463 +6.36957,47.14914,3154,5,27,18,59,2,4.85,5.0,fr,6000,63,252156,1,1,Active Shallow Crust,0.0,89.98925,0.0,05/27/3154 +4.26017,48.90149,3373,5,8,20,12,57,4.05,5.0,fr,6001,67,252540,1,1,Active Shallow Crust,0.0,89.98882,0.0,05/08/3373 +4.26017,48.90149,8759,11,4,22,13,50,4.45,5.0,fr,6002,175,252588,1,1,Active Shallow Crust,0.0,89.99059,0.0,11/04/8759 +4.26017,48.90149,3472,7,25,6,51,39,4.65,15.0,fr,6003,69,252616,1,1,Active Shallow Crust,240.0117,57.9942,0.0,07/25/3472 +4.26017,48.90149,4818,4,22,6,50,39,4.95,15.0,fr,6004,96,252649,1,1,Active Shallow Crust,0.0,89.98942,0.0,04/22/4818 +-0.63146,45.56662,4644,4,6,12,5,18,3.55,5.0,fr,6005,92,252969,1,1,Active Shallow Crust,128.8964,89.99382,0.0,04/06/4644 +-0.63146,45.56662,9516,9,20,17,13,25,3.65,5.0,fr,6006,190,252972,1,1,Active Shallow Crust,0.0,89.98978,0.0,09/20/9516 +-0.63146,45.56662,4377,6,24,17,16,51,3.65,5.0,fr,6007,87,252978,1,1,Active Shallow Crust,0.0,89.98965,-90.0,06/24/4377 +-0.63146,45.56662,8667,4,21,2,42,3,3.75,5.0,fr,6008,173,252984,1,1,Active Shallow Crust,0.0,89.99019,0.0,04/21/8667 +-0.63146,45.56662,8423,2,28,5,13,35,3.75,15.0,fr,6009,168,252985,1,1,Active Shallow Crust,0.0,89.99019,0.0,02/28/8423 +-0.63146,45.56662,4025,6,17,15,0,24,4.05,5.0,fr,6010,80,253029,1,1,Active Shallow Crust,128.8906,89.9938,0.0,06/17/4025 +-0.63146,45.56662,4484,2,23,9,55,32,4.15,5.0,fr,6011,89,253032,1,1,Active Shallow Crust,0.0,89.98983,0.0,02/23/4484 +-0.63146,45.56662,3208,5,24,1,15,13,4.25,15.0,fr,6012,64,253048,1,1,Active Shallow Crust,240.0074,57.99404,0.0,05/24/3208 +-0.63146,45.56662,5364,6,22,12,7,6,4.25,5.0,fr,6013,107,253053,1,1,Active Shallow Crust,128.8945,89.98091,0.0,06/22/5364 +-0.63146,45.56662,8423,4,7,6,40,25,4.65,15.0,fr,6014,168,253093,1,1,Active Shallow Crust,0.0,89.99005,0.0,04/07/8423 +5.50989,49.57477,8281,3,12,12,18,15,3.65,5.0,fr,6015,165,253452,1,1,Active Shallow Crust,0.0,89.98834,0.0,03/12/8281 +5.50989,49.57477,4259,7,23,8,4,50,3.75,5.0,fr,6016,85,253470,1,1,Active Shallow Crust,0.0,89.98949,-90.0,07/23/4259 +5.50989,49.57477,1691,2,4,1,37,56,3.85,5.0,fr,6017,33,253485,1,1,Active Shallow Crust,128.8946,89.99306,0.0,02/04/1691 +-3.59856,49.37064,9865,11,14,7,18,11,3.65,15.0,fr,6018,197,253933,1,1,Active Shallow Crust,0.0,89.99122,0.0,11/14/9865 +-3.59856,49.37064,6500,6,4,7,10,30,3.75,27.5,fr,6019,129,253946,1,1,Active Shallow Crust,0.0,89.98957,0.0,06/04/6500 +-3.59856,49.37064,2513,4,30,7,45,23,3.85,5.0,fr,6020,50,253956,1,1,Active Shallow Crust,0.0,89.9907,0.0,04/30/2513 +7.28581,43.85028,431,6,16,1,39,58,3.55,5.0,fr,6021,8,254400,1,2,Active Shallow Crust,0.0,89.99273,0.0,06/16/0431 +7.28581,43.85028,941,4,28,14,46,7,3.55,5.0,fr,6022,18,254400,1,2,Active Shallow Crust,0.0,89.99273,0.0,04/28/0941 +7.28581,43.85028,2189,4,1,2,50,36,3.55,27.5,fr,6023,43,254402,1,1,Active Shallow Crust,0.0,89.99273,0.0,04/01/2189 +7.28581,43.85028,2759,4,18,19,8,11,3.55,5.0,fr,6024,55,254403,1,1,Active Shallow Crust,240.0116,57.99844,0.0,04/18/2759 +7.28581,43.85028,7749,9,19,13,52,35,3.65,5.0,fr,6025,154,254412,1,2,Active Shallow Crust,0.0,89.98704,0.0,09/19/7749 +7.28581,43.85028,6703,7,21,21,44,13,3.65,5.0,fr,6026,134,254412,1,2,Active Shallow Crust,0.0,89.98704,0.0,07/21/6703 +7.28581,43.85028,8097,3,31,1,41,18,3.65,5.0,fr,6027,161,254415,1,4,Active Shallow Crust,240.0019,58.01234,0.0,03/31/8097 +7.28581,43.85028,4508,3,10,4,38,43,3.65,5.0,fr,6028,90,254415,1,4,Active Shallow Crust,240.0019,58.01234,0.0,03/10/4508 +7.28581,43.85028,5213,6,25,8,42,9,3.65,5.0,fr,6029,104,254415,1,4,Active Shallow Crust,240.0019,58.01234,0.0,06/25/5213 +7.28581,43.85028,1936,6,5,21,10,15,3.65,5.0,fr,6030,38,254415,1,4,Active Shallow Crust,240.0019,58.01234,0.0,06/05/1936 +7.28581,43.85028,9297,4,13,7,10,46,3.85,5.0,fr,6031,185,254436,1,2,Active Shallow Crust,0.0,89.9897,0.0,04/13/9297 +7.28581,43.85028,3213,9,6,1,43,10,3.85,5.0,fr,6032,64,254436,1,2,Active Shallow Crust,0.0,89.9897,0.0,09/06/3213 +7.28581,43.85028,8195,4,30,3,54,42,3.85,15.0,fr,6033,163,254437,1,1,Active Shallow Crust,0.0,89.9897,0.0,04/30/8195 +7.28581,43.85028,1227,9,23,21,10,47,3.85,5.0,fr,6034,24,254439,1,1,Active Shallow Crust,240.0105,57.99722,0.0,09/23/1227 +7.28581,43.85028,3827,4,4,19,4,32,3.85,27.5,fr,6035,76,254441,1,1,Active Shallow Crust,240.0105,57.99722,0.0,04/04/3827 +7.28581,43.85028,8474,2,16,17,30,36,3.95,15.0,fr,6036,169,254452,1,1,Active Shallow Crust,240.0204,58.00498,0.0,02/16/8474 +7.28581,43.85028,2234,2,8,22,23,7,4.05,5.0,fr,6037,44,254460,1,1,Active Shallow Crust,0.0,89.99182,0.0,02/08/2234 +7.28581,43.85028,9164,5,16,1,32,26,4.45,5.0,fr,6038,183,254508,1,1,Active Shallow Crust,0.0,89.98968,0.0,05/16/9164 +7.28581,43.85028,6687,4,11,11,53,29,4.55,15.0,fr,6039,133,254521,1,1,Active Shallow Crust,0.0,89.9908,0.0,04/11/6687 +7.28581,43.85028,8500,7,22,5,26,11,4.75,5.0,fr,6040,169,254544,1,1,Active Shallow Crust,0.0,89.99087,0.0,07/22/8500 +7.28581,43.85028,6920,11,27,1,2,27,5.45,15.0,fr,6041,138,254629,1,1,Active Shallow Crust,0.0,89.9902,0.0,11/27/6920 +3.88702,47.32564,7931,5,1,20,10,12,3.55,5.0,fr,6042,158,254880,1,1,Active Shallow Crust,0.0,89.98975,0.0,05/01/7931 +3.88702,47.32564,1984,6,22,11,49,8,3.55,5.0,fr,6043,39,254886,1,1,Active Shallow Crust,0.0,89.98963,-90.0,06/22/1984 +3.88702,47.32564,1851,10,18,23,33,42,3.65,15.0,fr,6044,37,254893,1,1,Active Shallow Crust,0.0,89.99086,0.0,10/18/1851 +3.88702,47.32564,3501,4,4,2,51,24,4.85,5.0,fr,6045,70,255036,1,1,Active Shallow Crust,0.0,89.99005,0.0,04/04/3501 +-2.63449,47.56317,1755,12,11,14,8,24,3.55,5.0,fr,6046,35,255360,1,3,Active Shallow Crust,0.0,89.98979,0.0,12/11/1755 +-2.63449,47.56317,7796,2,20,20,15,43,3.55,5.0,fr,6047,155,255360,1,3,Active Shallow Crust,0.0,89.98979,0.0,02/20/7796 +-2.63449,47.56317,6434,10,10,18,10,15,3.55,5.0,fr,6048,128,255360,1,3,Active Shallow Crust,0.0,89.98979,0.0,10/10/6434 +-2.63449,47.56317,2198,9,16,18,48,9,3.55,15.0,fr,6049,43,255361,1,1,Active Shallow Crust,0.0,89.98979,0.0,09/16/2198 +-2.63449,47.56317,6644,10,29,16,2,24,3.55,27.5,fr,6050,132,255362,1,1,Active Shallow Crust,0.0,89.98979,0.0,10/29/6644 +-2.63449,47.56317,6763,7,10,13,0,5,3.55,5.0,fr,6051,135,255363,1,1,Active Shallow Crust,240.0122,57.99765,0.0,07/10/6763 +-2.63449,47.56317,7238,4,5,1,0,39,3.75,5.0,fr,6052,144,255384,1,3,Active Shallow Crust,0.0,89.98919,0.0,04/05/7238 +-2.63449,47.56317,4128,3,26,22,9,58,3.75,5.0,fr,6053,82,255384,1,3,Active Shallow Crust,0.0,89.98919,0.0,03/26/4128 +-2.63449,47.56317,7520,10,28,13,46,30,3.75,5.0,fr,6054,150,255384,1,3,Active Shallow Crust,0.0,89.98919,0.0,10/28/7520 +-2.63449,47.56317,7820,3,18,3,22,0,3.75,15.0,fr,6055,156,255385,1,1,Active Shallow Crust,0.0,89.98919,0.0,03/18/7820 +-2.63449,47.56317,7785,9,22,13,7,13,3.85,15.0,fr,6056,155,255397,1,2,Active Shallow Crust,0.0,89.99036,0.0,09/22/7785 +-2.63449,47.56317,8451,5,11,10,9,51,3.85,15.0,fr,6057,169,255397,1,2,Active Shallow Crust,0.0,89.99036,0.0,05/11/8451 +-2.63449,47.56317,776,3,3,11,31,13,3.85,27.5,fr,6058,15,255398,1,1,Active Shallow Crust,0.0,89.99036,0.0,03/03/0776 +-2.63449,47.56317,5622,5,9,12,18,13,3.95,5.0,fr,6059,112,255408,1,1,Active Shallow Crust,0.0,89.98927,0.0,05/09/5622 +-2.63449,47.56317,9250,2,15,10,48,48,3.95,27.5,fr,6060,184,255410,1,1,Active Shallow Crust,0.0,89.98927,0.0,02/15/9250 +-2.63449,47.56317,8869,11,22,16,0,46,3.95,5.0,fr,6061,177,255411,1,1,Active Shallow Crust,240.0204,58.0048,0.0,11/22/8869 +-2.63449,47.56317,798,4,19,3,28,31,4.15,5.0,fr,6062,15,255432,1,1,Active Shallow Crust,0.0,89.98977,0.0,04/19/0798 +-2.63449,47.56317,582,10,19,15,22,52,4.25,5.0,fr,6063,11,255444,1,1,Active Shallow Crust,0.0,89.98936,0.0,10/19/0582 +-2.63449,47.56317,3436,2,5,23,56,54,4.25,15.0,fr,6064,68,255445,1,1,Active Shallow Crust,0.0,89.98936,0.0,02/05/3436 +-2.63449,47.56317,6435,2,6,5,36,24,4.25,5.0,fr,6065,128,255450,1,1,Active Shallow Crust,0.0,89.98923,-90.0,02/06/6435 +-2.63449,47.56317,4975,12,4,5,0,15,4.35,27.5,fr,6066,99,255458,1,1,Active Shallow Crust,0.0,89.99052,0.0,12/04/4975 +-2.63449,47.56317,1419,8,12,17,11,51,4.55,5.0,fr,6067,28,255480,1,2,Active Shallow Crust,0.0,89.99032,0.0,08/12/1419 +-2.63449,47.56317,2245,1,5,20,58,57,4.55,5.0,fr,6068,44,255480,1,2,Active Shallow Crust,0.0,89.99032,0.0,01/05/2245 +-2.63449,47.56317,7767,7,3,23,33,48,4.55,15.0,fr,6069,155,255481,1,1,Active Shallow Crust,0.0,89.99032,0.0,07/03/7767 +-2.63449,47.56317,6,5,10,19,3,9,5.05,5.0,fr,6070,0,255549,1,1,Active Shallow Crust,128.885,89.99062,0.0,05/10/0006 +3.60102,44.16306,110,11,13,6,44,52,3.55,5.0,fr,6071,2,255840,1,1,Active Shallow Crust,0.0,89.98915,0.0,11/13/0110 +3.60102,44.16306,8197,8,4,14,8,47,3.85,15.0,fr,6072,163,255886,1,1,Active Shallow Crust,128.8959,89.9936,0.0,08/04/8197 +3.60102,44.16306,5055,1,24,8,54,47,4.05,5.0,fr,6073,101,255900,1,1,Active Shallow Crust,0.0,89.98983,0.0,01/24/5055 +3.60102,44.16306,6774,11,8,4,18,13,4.05,15.0,fr,6074,135,255901,1,1,Active Shallow Crust,0.0,89.98983,0.0,11/08/6774 +3.60102,44.16306,6357,7,1,1,29,25,4.25,5.0,fr,6075,127,255924,1,1,Active Shallow Crust,0.0,89.9903,0.0,07/01/6357 +3.60102,44.16306,2796,5,20,1,8,40,4.45,15.0,fr,6076,55,255949,1,1,Active Shallow Crust,0.0,89.98973,0.0,05/20/2796 +3.60102,44.16306,443,4,2,7,46,31,4.55,5.0,fr,6077,8,255960,1,1,Active Shallow Crust,0.0,89.98971,0.0,04/02/0443 +1.34534,42.3453,7139,7,4,23,46,48,3.55,5.0,fr,6078,142,256320,1,4,Active Shallow Crust,0.0,89.99068,0.0,07/04/7139 +1.34534,42.3453,9990,10,21,7,2,40,3.55,5.0,fr,6079,199,256320,1,4,Active Shallow Crust,0.0,89.99068,0.0,10/21/9990 +1.34534,42.3453,4165,2,1,4,33,50,3.55,5.0,fr,6080,83,256320,1,4,Active Shallow Crust,0.0,89.99068,0.0,02/01/4165 +1.34534,42.3453,201,12,28,17,47,11,3.55,5.0,fr,6081,4,256320,1,4,Active Shallow Crust,0.0,89.99068,0.0,12/28/0201 +1.34534,42.3453,3092,1,21,15,41,8,3.55,15.0,fr,6082,61,256321,1,1,Active Shallow Crust,0.0,89.99068,0.0,01/21/3092 +1.34534,42.3453,6959,1,7,10,58,17,3.55,5.0,fr,6083,139,256323,1,2,Active Shallow Crust,240.0117,57.99823,0.0,01/07/6959 +1.34534,42.3453,5741,11,5,13,5,1,3.55,5.0,fr,6084,114,256323,1,2,Active Shallow Crust,240.0117,57.99823,0.0,11/05/5741 +1.34534,42.3453,8951,12,23,7,39,4,3.55,15.0,fr,6085,179,256324,1,1,Active Shallow Crust,240.0117,57.99823,0.0,12/23/8951 +1.34534,42.3453,6269,1,13,19,39,1,3.55,15.0,fr,6086,125,256327,1,1,Active Shallow Crust,0.0,89.99058,-90.0,01/13/6269 +1.34534,42.3453,3681,12,25,9,56,21,3.55,5.0,fr,6087,73,256329,1,1,Active Shallow Crust,128.8965,89.99348,0.0,12/25/3681 +1.34534,42.3453,3132,5,13,21,46,1,3.65,5.0,fr,6088,62,256332,1,1,Active Shallow Crust,0.0,89.99004,0.0,05/13/3132 +1.34534,42.3453,9029,10,8,10,20,1,3.65,15.0,fr,6089,180,256333,1,1,Active Shallow Crust,0.0,89.99004,0.0,10/08/9029 +1.34534,42.3453,2820,7,17,22,21,50,3.65,5.0,fr,6090,56,256341,1,1,Active Shallow Crust,128.9004,89.96358,0.0,07/17/2820 +1.34534,42.3453,1797,2,10,18,30,24,3.75,5.0,fr,6091,35,256344,1,5,Active Shallow Crust,0.0,89.98964,0.0,02/10/1797 +1.34534,42.3453,532,10,10,17,59,20,3.75,5.0,fr,6092,10,256344,1,5,Active Shallow Crust,0.0,89.98964,0.0,10/10/0532 +1.34534,42.3453,7970,8,2,17,45,27,3.75,5.0,fr,6093,159,256344,1,5,Active Shallow Crust,0.0,89.98964,0.0,08/02/7970 +1.34534,42.3453,275,4,6,18,36,58,3.75,5.0,fr,6094,5,256344,1,5,Active Shallow Crust,0.0,89.98964,0.0,04/06/0275 +1.34534,42.3453,5994,12,21,6,47,44,3.75,5.0,fr,6095,119,256344,1,5,Active Shallow Crust,0.0,89.98964,0.0,12/21/5994 +1.34534,42.3453,31,3,1,7,33,11,3.75,5.0,fr,6096,0,256347,1,1,Active Shallow Crust,240.0078,58.01761,0.0,03/01/0031 +1.34534,42.3453,1001,10,30,14,55,51,3.75,15.0,fr,6097,20,256348,1,1,Active Shallow Crust,240.0078,58.01761,0.0,10/30/1001 +1.34534,42.3453,3026,11,18,15,25,44,3.85,5.0,fr,6098,60,256356,1,5,Active Shallow Crust,0.0,89.98945,0.0,11/18/3026 +1.34534,42.3453,3703,8,3,19,24,29,3.85,5.0,fr,6099,74,256356,1,5,Active Shallow Crust,0.0,89.98945,0.0,08/03/3703 +1.34534,42.3453,7840,2,26,18,27,12,3.85,5.0,fr,6100,156,256356,1,5,Active Shallow Crust,0.0,89.98945,0.0,02/26/7840 +1.34534,42.3453,122,11,21,10,15,24,3.85,5.0,fr,6101,2,256356,1,5,Active Shallow Crust,0.0,89.98945,0.0,11/21/0122 +1.34534,42.3453,5768,11,7,6,10,3,3.85,5.0,fr,6102,115,256356,1,5,Active Shallow Crust,0.0,89.98945,0.0,11/07/5768 +1.34534,42.3453,4281,3,16,18,23,14,3.85,15.0,fr,6103,85,256357,1,2,Active Shallow Crust,0.0,89.98945,0.0,03/16/4281 +1.34534,42.3453,1169,12,22,23,55,31,3.85,15.0,fr,6104,23,256357,1,2,Active Shallow Crust,0.0,89.98945,0.0,12/22/1169 +1.34534,42.3453,3618,3,3,19,9,0,3.85,5.0,fr,6105,72,256362,1,1,Active Shallow Crust,0.0,89.99066,-90.0,03/03/3618 +1.34534,42.3453,7837,10,6,15,53,56,3.95,5.0,fr,6106,156,256368,1,4,Active Shallow Crust,0.0,89.98942,0.0,10/06/7837 +1.34534,42.3453,715,11,4,7,46,27,3.95,5.0,fr,6107,14,256368,1,4,Active Shallow Crust,0.0,89.98942,0.0,11/04/0715 +1.34534,42.3453,3951,1,16,17,46,53,3.95,5.0,fr,6108,79,256368,1,4,Active Shallow Crust,0.0,89.98942,0.0,01/16/3951 +1.34534,42.3453,2794,6,3,23,24,21,3.95,5.0,fr,6109,55,256368,1,4,Active Shallow Crust,0.0,89.98942,0.0,06/03/2794 +1.34534,42.3453,3231,2,4,7,12,30,3.95,15.0,fr,6110,64,256369,1,1,Active Shallow Crust,0.0,89.98942,0.0,02/04/3231 +1.34534,42.3453,7678,1,11,12,13,30,4.05,5.0,fr,6111,153,256380,1,2,Active Shallow Crust,0.0,89.98952,0.0,01/11/7678 +1.34534,42.3453,7642,2,24,9,10,7,4.05,5.0,fr,6112,152,256380,1,2,Active Shallow Crust,0.0,89.98952,0.0,02/24/7642 +1.34534,42.3453,5967,12,17,18,46,31,4.15,5.0,fr,6113,119,256392,1,2,Active Shallow Crust,0.0,89.98973,0.0,12/17/5967 +1.34534,42.3453,6154,6,19,17,15,27,4.15,5.0,fr,6114,123,256392,1,2,Active Shallow Crust,0.0,89.98973,0.0,06/19/6154 +1.34534,42.3453,852,4,26,22,59,12,4.25,27.5,fr,6115,17,256406,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/26/0852 +1.34534,42.3453,9380,6,28,9,17,34,4.25,15.0,fr,6116,187,256408,1,1,Active Shallow Crust,240.0068,57.99389,0.0,06/28/9380 +1.34534,42.3453,7649,12,8,0,38,14,4.35,5.0,fr,6117,152,256416,1,1,Active Shallow Crust,0.0,89.99036,0.0,12/08/7649 +1.34534,42.3453,5752,9,28,4,45,12,4.35,27.5,fr,6118,115,256418,1,1,Active Shallow Crust,0.0,89.99036,0.0,09/28/5752 +1.34534,42.3453,9762,10,14,2,30,28,4.35,5.0,fr,6119,195,256419,1,1,Active Shallow Crust,240.0076,57.99568,0.0,10/14/9762 +1.34534,42.3453,1617,12,26,8,53,46,4.45,5.0,fr,6120,32,256437,1,1,Active Shallow Crust,128.893,89.99372,0.0,12/26/1617 +1.34534,42.3453,5312,10,16,7,51,55,4.65,5.0,fr,6121,106,256452,1,1,Active Shallow Crust,0.0,89.99002,0.0,10/16/5312 +1.34534,42.3453,9696,8,25,15,26,43,4.75,5.0,fr,6122,193,256470,1,1,Active Shallow Crust,0.0,89.99006,-90.0,08/25/9696 +1.34534,42.3453,2635,1,19,9,9,59,4.85,5.0,fr,6123,52,256476,1,1,Active Shallow Crust,0.0,89.98999,0.0,01/19/2635 +1.34534,42.3453,3041,8,16,18,31,29,5.25,5.0,fr,6124,60,256533,1,1,Active Shallow Crust,128.8854,89.98704,0.0,08/16/3041 +1.345361,42.3453,3315,9,25,13,26,48,6.95,15.09976,fr,6125,66,256728,1,1,Active Shallow Crust,360.0,89.99001,0.0,09/25/3315 +4.44543,47.91667,3003,6,10,22,9,23,3.65,5.0,fr,6126,60,256821,1,1,Active Shallow Crust,128.901,89.96294,0.0,06/10/3003 +4.44543,47.91667,7019,10,15,4,18,14,3.75,5.0,fr,6127,140,256824,1,1,Active Shallow Crust,0.0,89.98927,0.0,10/15/7019 +4.44543,47.91667,6419,5,27,5,38,39,5.05,5.0,fr,6128,128,256980,1,1,Active Shallow Crust,0.0,89.99038,0.0,05/27/6419 +-2.28157,46.64339,6474,6,26,7,21,30,3.65,5.0,fr,6129,129,257298,1,1,Active Shallow Crust,0.0,89.99064,-90.0,06/26/6474 +-2.28157,46.64339,4082,6,4,10,5,24,3.95,5.0,fr,6130,81,257328,1,1,Active Shallow Crust,0.0,89.98908,0.0,06/04/4082 +-2.28157,46.64339,2063,9,28,7,32,39,4.15,15.0,fr,6131,41,257353,1,1,Active Shallow Crust,0.0,89.98959,0.0,09/28/2063 +3.36931,41.32397,7510,4,4,22,8,59,3.85,5.0,fr,6132,150,257796,1,1,Active Shallow Crust,0.0,89.98928,0.0,04/04/7510 +3.36931,41.32397,1900,2,13,12,22,18,4.25,5.0,fr,6133,37,257844,1,1,Active Shallow Crust,0.0,89.98985,0.0,02/13/1900 +-5.91317,49.00716,3803,11,12,0,31,38,4.45,5.0,fr,6134,76,258348,1,1,Active Shallow Crust,0.0,89.99061,0.0,11/12/3803 +-3.81493,48.94633,5571,11,15,16,28,55,3.55,5.0,fr,6135,111,258720,1,1,Active Shallow Crust,0.0,89.99007,0.0,11/15/5571 +-3.81493,48.94633,1314,9,29,15,10,8,3.55,15.0,fr,6136,26,258721,1,1,Active Shallow Crust,0.0,89.99007,0.0,09/29/1314 +-3.81493,48.94633,8791,2,23,21,36,1,3.65,15.0,fr,6137,175,258739,1,1,Active Shallow Crust,0.0,89.99104,-90.0,02/23/8791 +-3.81493,48.94633,8966,10,13,8,48,46,3.75,27.5,fr,6138,179,258755,1,1,Active Shallow Crust,128.8966,89.96729,0.0,10/13/8966 +-3.81493,48.94633,9506,9,6,7,25,9,3.85,27.5,fr,6139,190,258758,1,1,Active Shallow Crust,0.0,89.99062,0.0,09/06/9506 +-3.81493,48.94633,352,2,26,0,42,59,3.95,5.0,fr,6140,7,258768,1,2,Active Shallow Crust,0.0,89.98956,0.0,02/26/0352 +-3.81493,48.94633,5455,12,14,7,49,13,3.95,5.0,fr,6141,109,258768,1,2,Active Shallow Crust,0.0,89.98956,0.0,12/14/5455 +-3.81493,48.94633,3419,8,31,4,49,45,4.25,5.0,fr,6142,68,258810,1,2,Active Shallow Crust,0.0,89.98952,-90.0,08/31/3419 +-3.81493,48.94633,3538,9,3,17,36,46,4.25,5.0,fr,6143,70,258810,1,2,Active Shallow Crust,0.0,89.98952,-90.0,09/03/3538 +-3.81493,48.94633,5251,12,8,6,53,1,4.65,5.0,fr,6144,105,258852,1,1,Active Shallow Crust,0.0,89.98973,0.0,12/08/5251 +-3.81493,48.94633,6770,10,12,17,56,34,5.65,5.0,fr,6145,135,258978,1,1,Active Shallow Crust,359.9998,89.99014,-90.0,10/12/6770 +5.28237,48.91785,6928,9,30,15,39,48,3.65,5.0,fr,6146,138,259212,1,1,Active Shallow Crust,0.0,89.98819,0.0,09/30/6928 +5.28237,48.91785,6922,10,14,11,6,10,5.25,15.0,fr,6147,138,259405,1,1,Active Shallow Crust,0.0,89.9897,0.0,10/14/6922 +-1.70911,42.57761,2710,9,5,3,14,21,3.55,5.0,fr,6148,54,259680,1,5,Active Shallow Crust,0.0,89.99072,0.0,09/05/2710 +-1.70911,42.57761,6690,2,2,12,57,8,3.55,5.0,fr,6149,133,259680,1,5,Active Shallow Crust,0.0,89.99072,0.0,02/02/6690 +-1.70911,42.57761,1900,4,10,10,22,48,3.55,5.0,fr,6150,37,259680,1,5,Active Shallow Crust,0.0,89.99072,0.0,04/10/1900 +-1.70911,42.57761,4201,7,30,15,51,44,3.55,5.0,fr,6151,84,259680,1,5,Active Shallow Crust,0.0,89.99072,0.0,07/30/4201 +-1.70911,42.57761,2288,12,3,11,33,50,3.55,5.0,fr,6152,45,259680,1,5,Active Shallow Crust,0.0,89.99072,0.0,12/03/2288 +-1.70911,42.57761,3320,2,23,13,46,41,3.55,15.0,fr,6153,66,259681,1,2,Active Shallow Crust,0.0,89.99072,0.0,02/23/3320 +-1.70911,42.57761,6687,1,10,15,0,43,3.55,15.0,fr,6154,133,259681,1,2,Active Shallow Crust,0.0,89.99072,0.0,01/10/6687 +-1.70911,42.57761,7356,3,9,19,7,5,3.55,15.0,fr,6155,147,259684,1,1,Active Shallow Crust,240.0117,57.99807,0.0,03/09/7356 +-1.70911,42.57761,3177,12,17,20,51,12,3.55,5.0,fr,6156,63,259686,1,1,Active Shallow Crust,0.0,89.99061,-90.0,12/17/3177 +-1.70911,42.57761,366,4,28,21,25,32,3.55,5.0,fr,6157,7,259689,1,1,Active Shallow Crust,128.8964,89.99443,0.0,04/28/0366 +-1.70911,42.57761,2913,8,6,17,10,34,3.65,5.0,fr,6158,58,259692,1,1,Active Shallow Crust,0.0,89.99007,0.0,08/06/2913 +-1.70911,42.57761,3125,6,27,7,31,50,3.65,27.5,fr,6159,62,259694,1,1,Active Shallow Crust,0.0,89.99007,0.0,06/27/3125 +-1.70911,42.57761,3647,11,30,2,46,49,3.75,15.0,fr,6160,72,259708,1,1,Active Shallow Crust,240.0078,58.01769,0.0,11/30/3647 +-1.70911,42.57761,3506,2,9,6,49,4,3.75,27.5,fr,6161,70,259709,1,1,Active Shallow Crust,240.0078,58.01769,0.0,02/09/3506 +-1.70911,42.57761,8059,9,23,19,12,55,3.85,5.0,fr,6162,161,259716,1,1,Active Shallow Crust,0.0,89.98949,0.0,09/23/8059 +-1.70911,42.57761,5224,2,3,9,53,34,3.85,15.0,fr,6163,104,259717,1,2,Active Shallow Crust,0.0,89.98949,0.0,02/03/5224 +-1.70911,42.57761,3557,12,7,10,50,37,3.85,15.0,fr,6164,71,259717,1,2,Active Shallow Crust,0.0,89.98949,0.0,12/07/3557 +-1.70911,42.57761,5362,5,12,19,46,35,3.85,5.0,fr,6165,107,259725,1,2,Active Shallow Crust,128.8958,89.99409,0.0,05/12/5362 +-1.70911,42.57761,7570,12,18,0,31,7,3.85,5.0,fr,6166,151,259725,1,2,Active Shallow Crust,128.8958,89.99409,0.0,12/18/7570 +-1.70911,42.57761,204,4,10,10,12,19,3.95,5.0,fr,6167,4,259728,1,1,Active Shallow Crust,0.0,89.98946,0.0,04/10/0204 +-1.70911,42.57761,4116,7,2,4,46,17,3.95,27.5,fr,6168,82,259730,1,1,Active Shallow Crust,0.0,89.98946,0.0,07/02/4116 +-1.70911,42.57761,6859,8,17,21,49,9,3.95,15.0,fr,6169,137,259735,1,1,Active Shallow Crust,0.0,89.99052,-90.0,08/17/6859 +-1.70911,42.57761,7770,5,31,12,6,49,4.05,15.0,fr,6170,155,259741,1,2,Active Shallow Crust,0.0,89.98956,0.0,05/31/7770 +-1.70911,42.57761,2984,10,3,15,51,43,4.05,15.0,fr,6171,59,259741,1,2,Active Shallow Crust,0.0,89.98956,0.0,10/03/2984 +-1.70911,42.57761,8205,5,1,10,36,27,4.05,5.0,fr,6172,164,259743,1,1,Active Shallow Crust,240.0054,58.00559,0.0,05/01/8205 +-1.70911,42.57761,2867,2,8,4,53,59,4.05,15.0,fr,6173,57,259744,1,1,Active Shallow Crust,240.0054,58.00556,0.0,02/08/2867 +-1.70911,42.57761,2667,8,13,5,22,1,5.45,27.5,fr,6174,53,259919,1,1,Active Shallow Crust,128.8814,89.9922,0.0,08/13/2667 +-1.70911,42.57761,5531,2,11,2,6,24,5.65,15.0,fr,6175,110,259933,1,1,Active Shallow Crust,0.0,89.99007,0.0,02/11/5531 +5.49002,46.39078,2795,10,8,1,35,0,3.55,5.0,fr,6176,55,260160,1,1,Active Shallow Crust,0.0,89.99304,0.0,10/08/2795 +5.49002,46.39078,7856,12,20,20,27,56,3.65,5.0,fr,6177,157,260175,1,1,Active Shallow Crust,240.0014,58.01287,0.0,12/20/7856 +5.49002,46.39078,575,6,1,5,55,49,3.65,5.0,fr,6178,11,260181,1,1,Active Shallow Crust,128.9009,89.96352,0.0,06/01/0575 +5.49002,46.39078,4616,8,2,9,3,26,3.75,5.0,fr,6179,92,260184,1,1,Active Shallow Crust,0.0,89.98895,0.0,08/02/4616 +5.49002,46.39078,5551,6,18,5,3,6,3.75,5.0,fr,6180,111,260187,1,1,Active Shallow Crust,240.008,58.01709,0.0,06/18/5551 +5.49002,46.39078,3669,4,18,20,23,33,3.75,15.0,fr,6181,73,260188,1,1,Active Shallow Crust,240.008,58.01709,0.0,04/18/3669 +5.49002,46.39078,4231,4,9,1,56,36,3.85,27.5,fr,6182,84,260198,1,1,Active Shallow Crust,0.0,89.99015,0.0,04/09/4231 +5.49002,46.39078,1208,6,7,16,21,58,3.95,5.0,fr,6183,24,260208,1,1,Active Shallow Crust,0.0,89.99123,0.0,06/07/1208 +5.49002,46.39078,6048,4,9,21,17,41,4.05,5.0,fr,6184,120,260220,1,1,Active Shallow Crust,0.0,89.98827,0.0,04/09/6048 +5.49002,46.39078,3148,8,10,0,58,9,4.15,5.0,fr,6185,62,260232,1,1,Active Shallow Crust,0.0,89.98954,0.0,08/10/3148 +5.2269,44.65635,6430,9,26,0,43,35,3.55,5.0,fr,6186,128,260640,1,1,Active Shallow Crust,0.0,89.99283,0.0,09/26/6430 +5.2269,44.65635,7533,1,2,5,57,52,3.55,15.0,fr,6187,150,260641,1,1,Active Shallow Crust,0.0,89.99283,0.0,01/02/7533 +5.2269,44.65635,5641,4,5,16,55,34,3.55,27.5,fr,6188,112,260642,1,1,Active Shallow Crust,0.0,89.99283,0.0,04/05/5641 +5.2269,44.65635,208,4,17,1,57,37,3.65,15.0,fr,6189,4,260653,1,1,Active Shallow Crust,0.0,89.98721,0.0,04/17/0208 +5.2269,44.65635,2726,2,2,16,8,9,3.75,5.0,fr,6190,54,260673,1,1,Active Shallow Crust,128.8978,89.96684,0.0,02/02/2726 +5.2269,44.65635,4090,6,20,15,40,15,3.85,5.0,fr,6191,81,260676,1,1,Active Shallow Crust,0.0,89.98985,0.0,06/20/4090 +5.2269,44.65635,4130,3,10,6,7,19,3.85,27.5,fr,6192,82,260678,1,1,Active Shallow Crust,0.0,89.98985,0.0,03/10/4130 +5.2269,44.65635,7769,7,31,3,1,56,3.95,15.0,fr,6193,155,260689,1,1,Active Shallow Crust,0.0,89.99095,0.0,07/31/7769 +5.2269,44.65635,9961,11,1,12,28,33,3.95,5.0,fr,6194,199,260697,1,1,Active Shallow Crust,128.8998,89.99321,0.0,11/01/9961 +5.2269,44.65635,9586,11,12,19,20,52,4.05,5.0,fr,6195,191,260700,1,1,Active Shallow Crust,0.0,89.99194,0.0,11/12/9586 +5.2269,44.65635,9883,5,24,3,17,56,4.05,5.0,fr,6196,197,260706,1,1,Active Shallow Crust,0.0,89.99184,-90.0,05/24/9883 +5.2269,44.65635,948,4,15,4,16,9,4.25,5.0,fr,6197,18,260724,1,2,Active Shallow Crust,0.0,89.99039,0.0,04/15/0948 +5.2269,44.65635,8064,5,6,15,12,8,4.25,5.0,fr,6198,161,260724,1,2,Active Shallow Crust,0.0,89.99039,0.0,05/06/8064 +5.2269,44.65635,1840,8,14,8,19,46,4.25,27.5,fr,6199,36,260726,1,1,Active Shallow Crust,0.0,89.99039,0.0,08/14/1840 +5.2269,44.65635,3269,3,14,10,22,23,4.45,5.0,fr,6200,65,260748,1,1,Active Shallow Crust,0.0,89.98982,0.0,03/14/3269 +5.2269,44.65635,1668,7,15,11,13,4,4.45,15.0,fr,6201,33,260749,1,2,Active Shallow Crust,0.0,89.98982,0.0,07/15/1668 +5.2269,44.65635,7954,6,1,13,14,37,4.45,15.0,fr,6202,159,260749,1,2,Active Shallow Crust,0.0,89.98982,0.0,06/01/7954 +5.2269,44.65635,8195,12,25,14,48,4,4.55,5.0,fr,6203,163,260760,1,1,Active Shallow Crust,0.0,89.99093,0.0,12/25/8195 +5.2269,44.65635,8741,1,31,4,2,44,4.65,5.0,fr,6204,174,260772,1,1,Active Shallow Crust,0.0,89.98989,0.0,01/31/8741 +5.2269,44.65635,924,7,17,9,20,43,4.95,15.0,fr,6205,18,260809,1,1,Active Shallow Crust,0.0,89.98998,0.0,07/17/0924 +6.90183,47.34244,2742,7,11,17,41,12,3.55,5.0,fr,6206,54,261120,1,4,Active Shallow Crust,0.0,89.99316,0.0,07/11/2742 +6.90183,47.34244,168,12,15,7,59,49,3.55,5.0,fr,6207,3,261120,1,4,Active Shallow Crust,0.0,89.99316,0.0,12/15/0168 +6.90183,47.34244,8014,1,20,7,44,45,3.55,5.0,fr,6208,160,261120,1,4,Active Shallow Crust,0.0,89.99316,0.0,01/20/8014 +6.90183,47.34244,8790,9,16,3,56,5,3.55,5.0,fr,6209,175,261120,1,4,Active Shallow Crust,0.0,89.99316,0.0,09/16/8790 +6.90183,47.34244,216,6,21,18,56,27,3.55,15.0,fr,6210,4,261121,1,3,Active Shallow Crust,0.0,89.99316,0.0,06/21/0216 +6.90183,47.34244,1420,12,29,10,25,36,3.55,15.0,fr,6211,28,261121,1,3,Active Shallow Crust,0.0,89.99316,0.0,12/29/1420 +6.90183,47.34244,5639,2,27,5,54,53,3.55,15.0,fr,6212,112,261121,1,3,Active Shallow Crust,0.0,89.99316,0.0,02/27/5639 +6.90183,47.34244,7851,5,9,0,54,4,3.55,5.0,fr,6213,157,261123,1,1,Active Shallow Crust,240.0123,57.99881,0.0,05/09/7851 +6.90183,47.34244,4646,11,29,21,9,1,3.65,5.0,fr,6214,92,261132,1,3,Active Shallow Crust,0.0,89.98782,0.0,11/29/4646 +6.90183,47.34244,2141,4,12,4,15,48,3.65,5.0,fr,6215,42,261132,1,3,Active Shallow Crust,0.0,89.98782,0.0,04/12/2141 +6.90183,47.34244,1464,7,31,0,43,27,3.65,5.0,fr,6216,29,261132,1,3,Active Shallow Crust,0.0,89.98782,0.0,07/31/1464 +6.90183,47.34244,5787,8,2,21,45,18,3.65,15.0,fr,6217,115,261133,1,1,Active Shallow Crust,0.0,89.98782,0.0,08/02/5787 +6.90183,47.34244,5977,11,15,2,2,43,3.65,5.0,fr,6218,119,261135,1,1,Active Shallow Crust,240.0009,58.01368,0.0,11/15/5977 +6.90183,47.34244,9998,11,28,23,15,3,3.75,5.0,fr,6219,199,261144,1,1,Active Shallow Crust,0.0,89.98914,0.0,11/28/9998 +6.90183,47.34244,6342,1,9,2,22,56,3.75,5.0,fr,6220,126,261150,1,1,Active Shallow Crust,0.0,89.98902,-90.0,01/09/6342 +6.90183,47.34244,7111,5,28,2,26,27,3.85,5.0,fr,6221,142,261156,1,1,Active Shallow Crust,0.0,89.99033,0.0,05/28/7111 +6.90183,47.34244,7351,3,16,6,16,25,3.85,27.5,fr,6222,147,261158,1,1,Active Shallow Crust,0.0,89.99033,0.0,03/16/7351 +6.90183,47.34244,8162,1,30,0,16,21,3.85,5.0,fr,6223,163,261159,1,1,Active Shallow Crust,240.0103,57.99823,0.0,01/30/8162 +6.90183,47.34244,9280,12,17,9,32,51,3.85,5.0,fr,6224,185,261165,1,1,Active Shallow Crust,128.8963,89.99274,0.0,12/17/9280 +6.90183,47.34244,36,3,20,23,8,21,3.95,5.0,fr,6225,0,261168,1,2,Active Shallow Crust,0.0,89.99138,0.0,03/20/0036 +6.90183,47.34244,4225,6,27,19,3,49,3.95,5.0,fr,6226,84,261168,1,2,Active Shallow Crust,0.0,89.99138,0.0,06/27/4225 +6.90183,47.34244,3100,7,23,4,5,17,4.05,5.0,fr,6227,61,261180,1,4,Active Shallow Crust,0.0,89.98847,0.0,07/23/3100 +6.90183,47.34244,1081,8,4,20,19,37,4.05,5.0,fr,6228,21,261180,1,4,Active Shallow Crust,0.0,89.98847,0.0,08/04/1081 +6.90183,47.34244,1342,11,8,15,7,9,4.05,5.0,fr,6229,26,261180,1,4,Active Shallow Crust,0.0,89.98847,0.0,11/08/1342 +6.90183,47.34244,2937,4,7,15,1,52,4.05,5.0,fr,6230,58,261180,1,4,Active Shallow Crust,0.0,89.98847,0.0,04/07/2937 +6.90183,47.34244,4228,3,6,3,52,35,4.05,15.0,fr,6231,84,261181,1,1,Active Shallow Crust,0.0,89.98847,0.0,03/06/4228 +6.90183,47.34244,4945,5,5,16,56,8,4.25,5.0,fr,6232,98,261213,1,2,Active Shallow Crust,128.894,89.98098,0.0,05/05/4945 +6.90183,47.34244,9630,9,10,12,52,21,4.25,5.0,fr,6233,192,261213,1,2,Active Shallow Crust,128.894,89.98098,0.0,09/10/9630 +6.90183,47.34244,3643,6,3,2,10,21,4.35,5.0,fr,6234,72,261225,1,1,Active Shallow Crust,128.8969,89.98305,0.0,06/03/3643 +6.90183,47.34244,8265,9,24,7,33,25,4.45,5.0,fr,6235,165,261228,1,1,Active Shallow Crust,0.0,89.9903,0.0,09/24/8265 +6.90183,47.34244,8791,6,20,1,45,1,4.45,15.0,fr,6236,175,261229,1,2,Active Shallow Crust,0.0,89.9903,0.0,06/20/8791 +6.90183,47.34244,4050,2,24,23,3,55,4.45,15.0,fr,6237,80,261229,1,2,Active Shallow Crust,0.0,89.9903,0.0,02/24/4050 +6.90183,47.34244,1795,5,17,10,46,46,4.55,5.0,fr,6238,35,261240,1,1,Active Shallow Crust,0.0,89.9892,0.0,05/17/1795 +6.90183,47.34244,4328,12,16,3,17,50,4.95,15.0,fr,6239,86,261292,1,1,Active Shallow Crust,240.0124,58.00436,0.0,12/16/4328 +6.90183,47.34244,2573,11,11,7,17,5,5.35,5.0,fr,6240,51,261342,1,1,Active Shallow Crust,0.0,89.99043,-90.0,11/11/2573 +7.61228,48.70056,1578,9,13,12,17,13,3.55,5.0,fr,6241,31,261600,1,2,Active Shallow Crust,0.0,89.98669,0.0,09/13/1578 +7.61228,48.70056,471,8,18,23,58,24,3.55,5.0,fr,6242,9,261600,1,2,Active Shallow Crust,0.0,89.98669,0.0,08/18/0471 +7.61228,48.70056,2175,7,14,3,46,47,3.55,5.0,fr,6243,43,261609,1,1,Active Shallow Crust,128.8949,89.99667,0.0,07/14/2175 +7.61228,48.70056,8674,1,2,1,35,25,3.65,5.0,fr,6244,173,261612,1,3,Active Shallow Crust,0.0,89.98814,0.0,01/02/8674 +7.61228,48.70056,3423,4,12,7,54,48,3.65,5.0,fr,6245,68,261612,1,3,Active Shallow Crust,0.0,89.98814,0.0,04/12/3423 +7.61228,48.70056,3218,12,22,22,18,58,3.65,5.0,fr,6246,64,261612,1,3,Active Shallow Crust,0.0,89.98814,0.0,12/22/3218 +7.61228,48.70056,8229,7,21,17,46,18,3.65,5.0,fr,6247,164,261615,1,1,Active Shallow Crust,240.001,58.0138,0.0,07/21/8229 +7.61228,48.70056,7310,11,29,6,4,39,3.65,15.0,fr,6248,146,261616,1,1,Active Shallow Crust,240.001,58.0138,0.0,11/29/7310 +7.61228,48.70056,6712,7,26,16,31,33,3.85,5.0,fr,6249,134,261636,1,3,Active Shallow Crust,0.0,89.99058,0.0,07/26/6712 +7.61228,48.70056,3715,6,10,13,57,5,3.85,5.0,fr,6250,74,261636,1,3,Active Shallow Crust,0.0,89.99058,0.0,06/10/3715 +7.61228,48.70056,8842,8,29,21,39,1,3.85,5.0,fr,6251,176,261636,1,3,Active Shallow Crust,0.0,89.99058,0.0,08/29/8842 +7.61228,48.70056,5120,11,7,6,52,55,3.85,5.0,fr,6252,102,261639,1,1,Active Shallow Crust,240.0109,57.9978,0.0,11/07/5120 +7.61228,48.70056,8756,6,2,12,4,19,3.85,27.5,fr,6253,175,261647,1,1,Active Shallow Crust,128.8964,89.99294,0.0,06/02/8756 +7.61228,48.70056,8426,10,25,1,42,4,3.95,5.0,fr,6254,168,261648,1,1,Active Shallow Crust,0.0,89.9916,0.0,10/25/8426 +7.61228,48.70056,1066,3,18,11,29,48,3.95,5.0,fr,6255,21,261654,1,1,Active Shallow Crust,0.0,89.9915,-90.0,03/18/1066 +7.61228,48.70056,2000,4,17,1,37,26,4.05,5.0,fr,6256,39,261660,1,2,Active Shallow Crust,0.0,89.98877,0.0,04/17/2000 +7.61228,48.70056,5014,3,16,7,44,14,4.05,5.0,fr,6257,100,261660,1,2,Active Shallow Crust,0.0,89.98877,0.0,03/16/5014 +7.61228,48.70056,390,1,30,17,46,35,4.15,5.0,fr,6258,7,261672,1,1,Active Shallow Crust,0.0,89.98999,0.0,01/30/0390 +7.61228,48.70056,6776,10,2,1,15,8,4.15,15.0,fr,6259,135,261673,1,1,Active Shallow Crust,0.0,89.98999,0.0,10/02/6776 +7.61228,48.70056,7890,5,11,20,56,25,4.25,5.0,fr,6260,157,261693,1,1,Active Shallow Crust,128.8938,89.98103,0.0,05/11/7890 +7.61228,48.70056,4917,1,19,3,11,6,4.45,5.0,fr,6261,98,261708,1,1,Active Shallow Crust,0.0,89.99055,0.0,01/19/4917 +7.61228,48.70056,5692,1,31,16,1,24,4.75,15.0,fr,6262,113,261745,1,1,Active Shallow Crust,0.0,89.98997,0.0,01/31/5692 +7.61228,48.70056,8899,2,22,13,16,36,4.85,5.0,fr,6263,177,261756,1,1,Active Shallow Crust,0.0,89.98957,0.0,02/22/8899 +4.14097,44.10983,4575,4,7,7,28,27,3.65,5.0,fr,6264,91,262092,1,1,Active Shallow Crust,0.0,89.98709,0.0,04/07/4575 +4.14097,44.10983,8217,6,27,3,43,44,4.15,15.0,fr,6265,164,262159,1,1,Active Shallow Crust,0.0,89.98899,-90.0,06/27/8217 +2.40694,41.58124,8556,8,22,15,21,0,3.55,5.0,fr,6266,171,263040,1,2,Active Shallow Crust,0.0,89.98869,0.0,08/22/8556 +2.40694,41.58124,5527,3,17,8,8,3,3.55,5.0,fr,6267,110,263040,1,2,Active Shallow Crust,0.0,89.98869,0.0,03/17/5527 +2.40694,41.58124,724,1,15,17,15,37,3.55,15.0,fr,6268,14,263041,1,2,Active Shallow Crust,0.0,89.98869,0.0,01/15/0724 +2.40694,41.58124,5037,3,9,17,26,36,3.55,15.0,fr,6269,100,263041,1,2,Active Shallow Crust,0.0,89.98869,0.0,03/09/5037 +2.40694,41.58124,8042,12,12,21,36,45,3.55,15.0,fr,6270,160,263044,1,1,Active Shallow Crust,240.0116,57.99773,0.0,12/12/8042 +2.40694,41.58124,6518,3,8,12,8,27,3.55,5.0,fr,6271,130,263046,1,1,Active Shallow Crust,0.0,89.98856,-90.0,03/08/6518 +2.40694,41.58124,2043,5,28,10,17,10,3.55,15.0,fr,6272,40,263047,1,1,Active Shallow Crust,0.0,89.98856,-90.0,05/28/2043 +2.40694,41.58124,1493,11,2,1,4,23,3.55,27.5,fr,6273,29,263048,1,1,Active Shallow Crust,0.0,89.98856,-90.0,11/02/1493 +2.40694,41.58124,6560,12,17,1,11,48,3.55,5.0,fr,6274,131,263049,1,1,Active Shallow Crust,128.8968,89.99245,0.0,12/17/6560 +2.40694,41.58124,2131,12,16,21,11,32,3.65,5.0,fr,6275,42,263052,1,3,Active Shallow Crust,0.0,89.98991,0.0,12/16/2131 +2.40694,41.58124,379,4,23,21,40,41,3.65,5.0,fr,6276,7,263052,1,3,Active Shallow Crust,0.0,89.98991,0.0,04/23/0379 +2.40694,41.58124,2595,4,16,23,28,9,3.65,5.0,fr,6277,51,263052,1,3,Active Shallow Crust,0.0,89.98991,0.0,04/16/2595 +2.40694,41.58124,587,9,3,10,13,12,3.65,15.0,fr,6278,11,263053,1,1,Active Shallow Crust,0.0,89.98991,0.0,09/03/0587 +2.40694,41.58124,6719,7,19,12,11,53,3.65,15.0,fr,6279,134,263056,1,1,Active Shallow Crust,240.0007,58.0134,0.0,07/19/6719 +2.40694,41.58124,6027,4,16,14,13,1,3.65,5.0,fr,6280,120,263058,1,1,Active Shallow Crust,0.0,89.9898,-90.0,04/16/6027 +2.40694,41.58124,2243,3,31,15,51,51,3.65,15.0,fr,6281,44,263059,1,1,Active Shallow Crust,0.0,89.9898,-90.0,03/31/2243 +2.40694,41.58124,2888,6,11,15,2,33,3.75,5.0,fr,6282,57,263064,1,5,Active Shallow Crust,0.0,89.99101,0.0,06/11/2888 +2.40694,41.58124,7171,3,26,16,6,51,3.75,5.0,fr,6283,143,263064,1,5,Active Shallow Crust,0.0,89.99101,0.0,03/26/7171 +2.40694,41.58124,4995,6,9,16,58,8,3.75,5.0,fr,6284,99,263064,1,5,Active Shallow Crust,0.0,89.99101,0.0,06/09/4995 +2.40694,41.58124,5009,11,14,6,52,0,3.75,5.0,fr,6285,100,263064,1,5,Active Shallow Crust,0.0,89.99101,0.0,11/14/5009 +2.40694,41.58124,9608,11,2,8,3,49,3.75,5.0,fr,6286,192,263064,1,5,Active Shallow Crust,0.0,89.99101,0.0,11/02/9608 +2.40694,41.58124,6170,12,30,22,1,34,3.75,15.0,fr,6287,123,263065,1,1,Active Shallow Crust,0.0,89.99101,0.0,12/30/6170 +2.40694,41.58124,9902,9,13,3,43,3,3.85,5.0,fr,6288,198,263076,1,2,Active Shallow Crust,0.0,89.98932,0.0,09/13/9902 +2.40694,41.58124,6601,6,5,14,33,55,3.85,5.0,fr,6289,132,263076,1,2,Active Shallow Crust,0.0,89.98932,0.0,06/05/6601 +2.40694,41.58124,5633,12,20,10,43,56,3.85,5.0,fr,6290,112,263079,1,1,Active Shallow Crust,240.0099,57.99799,0.0,12/20/5633 +2.40694,41.58124,3198,4,14,5,40,26,3.85,5.0,fr,6291,63,263082,1,1,Active Shallow Crust,0.0,89.9892,-90.0,04/14/3198 +2.40694,41.58124,4982,5,1,0,22,28,3.85,15.0,fr,6292,99,263083,1,1,Active Shallow Crust,0.0,89.9892,-90.0,05/01/4982 +2.40694,41.58124,3917,6,6,21,32,1,3.95,5.0,fr,6293,78,263088,1,1,Active Shallow Crust,0.0,89.99048,0.0,06/06/3917 +2.40694,41.58124,1101,11,22,21,36,2,3.95,15.0,fr,6294,22,263095,1,1,Active Shallow Crust,0.0,89.99037,-90.0,11/22/1101 +2.40694,41.58124,7970,3,11,0,21,53,4.05,5.0,fr,6295,159,263100,1,2,Active Shallow Crust,0.0,89.9894,0.0,03/11/7970 +2.40694,41.58124,7120,8,17,23,43,17,4.05,5.0,fr,6296,142,263100,1,2,Active Shallow Crust,0.0,89.9894,0.0,08/17/7120 +2.40694,41.58124,4603,4,23,4,52,18,4.05,5.0,fr,6297,92,263103,1,1,Active Shallow Crust,240.0055,58.00555,0.0,04/23/4603 +2.40694,41.58124,2435,8,22,3,26,9,4.05,5.0,fr,6298,48,263106,1,1,Active Shallow Crust,0.0,89.98927,-90.0,08/22/2435 +2.40694,41.58124,7660,10,14,13,27,22,4.05,15.0,fr,6299,153,263107,1,1,Active Shallow Crust,0.0,89.98927,-90.0,10/14/7660 +2.40694,41.58124,4768,10,14,9,46,42,4.05,27.5,fr,6300,95,263111,1,1,Active Shallow Crust,128.8907,89.99364,0.0,10/14/4768 +2.40694,41.58124,7297,3,20,0,7,47,4.15,5.0,fr,6301,145,263112,1,1,Active Shallow Crust,0.0,89.99055,0.0,03/20/7297 +2.40694,41.58124,3152,10,7,20,38,19,4.15,15.0,fr,6302,63,263113,1,1,Active Shallow Crust,0.0,89.99055,0.0,10/07/3152 +2.40694,41.58124,4196,7,19,11,3,28,4.15,5.0,fr,6303,83,263121,1,1,Active Shallow Crust,128.8985,89.99339,0.0,07/19/4196 +2.40694,41.58124,6357,11,26,16,20,4,4.25,5.0,fr,6304,127,263124,1,4,Active Shallow Crust,0.0,89.98989,0.0,11/26/6357 +2.40694,41.58124,3740,12,27,2,18,43,4.25,5.0,fr,6305,74,263124,1,4,Active Shallow Crust,0.0,89.98989,0.0,12/27/3740 +2.40694,41.58124,5682,9,22,9,38,43,4.25,5.0,fr,6306,113,263124,1,4,Active Shallow Crust,0.0,89.98989,0.0,09/22/5682 +2.40694,41.58124,453,4,6,0,56,52,4.25,5.0,fr,6307,9,263124,1,4,Active Shallow Crust,0.0,89.98989,0.0,04/06/0453 +2.40694,41.58124,4683,8,31,18,1,47,4.25,15.0,fr,6308,93,263125,1,1,Active Shallow Crust,0.0,89.98989,0.0,08/31/4683 +2.40694,41.58124,8319,3,13,17,56,28,4.25,27.5,fr,6309,166,263132,1,1,Active Shallow Crust,0.0,89.98978,-90.0,03/13/8319 +2.40694,41.58124,2282,7,10,12,30,45,4.35,5.0,fr,6310,45,263136,1,2,Active Shallow Crust,0.0,89.98949,0.0,07/10/2282 +2.40694,41.58124,9253,3,22,19,19,51,4.35,5.0,fr,6311,185,263136,1,2,Active Shallow Crust,0.0,89.98949,0.0,03/22/9253 +2.40694,41.58124,4658,12,31,22,55,21,4.35,5.0,fr,6312,93,263142,1,1,Active Shallow Crust,0.0,89.98936,-90.0,12/31/4658 +2.40694,41.58124,2987,7,19,16,41,11,4.35,5.0,fr,6313,59,263145,1,1,Active Shallow Crust,128.8987,89.98258,0.0,07/19/2987 +2.40694,41.58124,7526,11,10,22,30,50,4.45,5.0,fr,6314,150,263148,1,1,Active Shallow Crust,0.0,89.99063,0.0,11/10/7526 +2.40694,41.58124,3981,10,5,21,2,12,4.45,5.0,fr,6315,79,263154,1,1,Active Shallow Crust,0.0,89.99052,-90.0,10/05/3981 +2.40694,41.58124,558,10,13,3,22,24,4.45,15.0,fr,6316,11,263155,1,1,Active Shallow Crust,0.0,89.99052,-90.0,10/13/0558 +2.40694,41.58124,6756,11,17,8,7,22,4.55,15.0,fr,6317,135,263161,1,1,Active Shallow Crust,0.0,89.99046,0.0,11/17/6756 +2.40694,41.58124,1336,11,22,22,51,29,4.55,5.0,fr,6318,26,263166,1,1,Active Shallow Crust,0.0,89.99035,-90.0,11/22/1336 +2.40694,41.58124,4263,6,23,9,40,36,4.65,27.5,fr,6319,85,263177,1,1,Active Shallow Crust,240.0093,57.99383,0.0,06/23/4263 +2.40694,41.58124,3845,2,5,9,9,21,4.85,27.5,fr,6320,76,263198,1,1,Active Shallow Crust,0.0,89.98987,0.0,02/05/3845 +2.40694,41.58124,1869,11,21,14,9,54,4.85,15.0,fr,6321,37,263203,1,1,Active Shallow Crust,0.0,89.98975,-90.0,11/21/1869 +2.40694,41.58124,4295,3,29,4,10,44,4.95,5.0,fr,6322,85,263208,1,2,Active Shallow Crust,0.0,89.99022,0.0,03/29/4295 +2.40694,41.58124,4439,6,22,17,8,37,4.95,5.0,fr,6323,88,263208,1,2,Active Shallow Crust,0.0,89.99022,0.0,06/22/4439 +2.40694,41.58124,7665,4,7,10,15,5,4.95,15.0,fr,6324,153,263209,1,1,Active Shallow Crust,0.0,89.99022,0.0,04/07/7665 +2.40694,41.58124,3420,6,20,12,41,48,5.25,5.0,fr,6325,68,263244,1,1,Active Shallow Crust,0.0,89.98988,0.0,06/20/3420 +2.40694,41.58124,8261,1,7,16,49,0,5.45,5.0,fr,6326,165,263268,1,1,Active Shallow Crust,0.0,89.98984,0.0,01/07/8261 +2.406938,41.58124,8064,10,15,17,31,5,6.25,6.744814,fr,6327,161,263373,1,1,Active Shallow Crust,128.8574,89.99042,0.0,10/15/8064 +-2.84204,43.41687,1903,12,15,15,18,24,3.55,5.0,fr,6328,38,263520,1,2,Active Shallow Crust,0.0,89.98901,0.0,12/15/1903 +-2.84204,43.41687,6504,1,21,17,59,9,3.55,5.0,fr,6329,130,263520,1,2,Active Shallow Crust,0.0,89.98901,0.0,01/21/6504 +-2.84204,43.41687,616,3,23,4,27,44,3.85,5.0,fr,6330,12,263559,1,1,Active Shallow Crust,240.0105,57.9979,0.0,03/23/0616 +-2.84204,43.41687,4456,8,1,7,50,42,3.95,5.0,fr,6331,89,263568,1,1,Active Shallow Crust,0.0,89.99075,0.0,08/01/4456 +-2.84204,43.41687,1497,8,26,23,28,8,4.25,5.0,fr,6332,29,263607,1,1,Active Shallow Crust,240.0072,57.99393,0.0,08/26/1497 +-2.84204,43.41687,9723,11,12,13,11,17,4.75,5.0,fr,6333,194,263664,1,1,Active Shallow Crust,0.0,89.98988,0.0,11/12/9723 +-2.84204,43.41687,274,4,2,19,17,48,4.85,5.0,fr,6334,5,263676,1,1,Active Shallow Crust,0.0,89.99016,0.0,04/02/0274 +1.51529,44.11713,8728,6,18,12,31,54,3.65,5.0,fr,6335,174,264012,1,1,Active Shallow Crust,0.0,89.99032,0.0,06/18/8728 +1.51529,44.11713,2237,8,15,22,22,36,3.75,5.0,fr,6336,44,264024,1,1,Active Shallow Crust,0.0,89.98994,0.0,08/15/2237 +1.51529,44.11713,5377,7,7,8,54,31,4.55,15.0,fr,6337,107,264121,1,1,Active Shallow Crust,0.0,89.99027,0.0,07/07/5377 +5.61129,50.94884,542,11,9,22,21,52,3.55,5.0,fr,6338,10,264480,1,2,Active Shallow Crust,0.0,89.9873,0.0,11/09/0542 +5.61129,50.94884,4034,7,23,0,4,47,3.55,5.0,fr,6339,80,264480,1,2,Active Shallow Crust,0.0,89.9873,0.0,07/23/4034 +5.61129,50.94884,1689,4,28,21,55,57,3.55,15.0,fr,6340,33,264481,1,1,Active Shallow Crust,0.0,89.9873,0.0,04/28/1689 +5.61129,50.94884,8379,9,22,17,7,33,3.55,5.0,fr,6341,167,264489,1,1,Active Shallow Crust,128.8961,89.99364,0.0,09/22/8379 +5.61129,50.94884,6018,12,3,6,35,44,3.65,5.0,fr,6342,120,264492,1,3,Active Shallow Crust,0.0,89.98868,0.0,12/03/6018 +5.61129,50.94884,9648,10,21,8,50,8,3.65,5.0,fr,6343,192,264492,1,3,Active Shallow Crust,0.0,89.98868,0.0,10/21/9648 +5.61129,50.94884,1401,6,10,6,16,35,3.65,5.0,fr,6344,28,264492,1,3,Active Shallow Crust,0.0,89.98868,0.0,06/10/1401 +5.61129,50.94884,574,12,2,7,6,50,3.65,15.0,fr,6345,11,264502,1,1,Active Shallow Crust,128.9001,89.96361,0.0,12/02/0574 +5.61129,50.94884,8061,11,25,17,43,58,3.75,5.0,fr,6346,161,264504,1,3,Active Shallow Crust,0.0,89.98991,0.0,11/25/8061 +5.61129,50.94884,4045,3,22,20,43,3,3.75,5.0,fr,6347,80,264504,1,3,Active Shallow Crust,0.0,89.98991,0.0,03/22/4045 +5.61129,50.94884,6989,5,25,9,37,50,3.75,5.0,fr,6348,139,264504,1,3,Active Shallow Crust,0.0,89.98991,0.0,05/25/6989 +5.61129,50.94884,6769,5,25,16,29,30,3.75,5.0,fr,6349,135,264510,1,1,Active Shallow Crust,0.0,89.98979,-90.0,05/25/6769 +5.61129,50.94884,7936,5,12,18,46,22,3.85,5.0,fr,6350,158,264516,1,1,Active Shallow Crust,0.0,89.991,0.0,05/12/7936 +5.61129,50.94884,7675,8,7,0,28,5,3.85,5.0,fr,6351,153,264519,1,1,Active Shallow Crust,240.012,57.99748,0.0,08/07/7675 +5.61129,50.94884,5631,9,30,1,2,8,3.85,15.0,fr,6352,112,264520,1,1,Active Shallow Crust,240.012,57.99748,0.0,09/30/5631 +5.61129,50.94884,1632,9,5,13,34,20,3.95,5.0,fr,6353,32,264528,1,2,Active Shallow Crust,0.0,89.99198,0.0,09/05/1632 +5.61129,50.94884,8308,6,4,3,33,30,3.95,5.0,fr,6354,166,264528,1,2,Active Shallow Crust,0.0,89.99198,0.0,06/04/8308 +5.61129,50.94884,4085,6,1,21,26,44,4.05,5.0,fr,6355,81,264540,1,1,Active Shallow Crust,0.0,89.98928,0.0,06/01/4085 +5.61129,50.94884,7242,9,15,16,14,39,4.05,15.0,fr,6356,144,264541,1,2,Active Shallow Crust,0.0,89.98928,0.0,09/15/7242 +5.61129,50.94884,6804,4,9,16,55,38,4.05,15.0,fr,6357,136,264541,1,2,Active Shallow Crust,0.0,89.98928,0.0,04/09/6804 +5.61129,50.94884,700,6,6,7,7,24,4.05,27.5,fr,6358,13,264542,1,1,Active Shallow Crust,0.0,89.98928,0.0,06/06/0700 +5.61129,50.94884,4367,4,14,0,31,18,4.05,5.0,fr,6359,87,264543,1,1,Active Shallow Crust,240.0062,58.00616,0.0,04/14/4367 +5.61129,50.94884,5344,11,2,16,53,17,4.15,5.0,fr,6360,106,264552,1,1,Active Shallow Crust,0.0,89.99045,0.0,11/02/5344 +5.61129,50.94884,1804,1,12,7,7,20,4.15,15.0,fr,6361,36,264553,1,1,Active Shallow Crust,0.0,89.99045,0.0,01/12/1804 +5.61129,50.94884,2310,7,23,12,39,42,4.25,15.0,fr,6362,46,264568,1,1,Active Shallow Crust,240.0086,57.99448,0.0,07/23/2310 +5.61129,50.94884,7440,10,28,1,8,22,4.65,5.0,fr,6363,148,264612,1,1,Active Shallow Crust,0.0,89.98926,0.0,10/28/7440 +5.61129,50.94884,8758,11,6,16,24,47,5.45,5.0,fr,6364,175,264711,1,1,Active Shallow Crust,240.0328,57.99928,0.0,11/06/8758 +6.00302,42.35689,2059,12,13,6,14,12,3.75,5.0,fr,6365,41,264984,1,1,Active Shallow Crust,0.0,89.98816,0.0,12/13/2059 +6.2627,51.27657,2207,6,4,15,59,51,3.55,5.0,fr,6366,44,265440,1,1,Active Shallow Crust,0.0,89.98738,0.0,06/04/2207 +6.2627,51.27657,2240,9,22,16,11,4,3.55,15.0,fr,6367,44,265441,1,1,Active Shallow Crust,0.0,89.98738,0.0,09/22/2240 +6.2627,51.27657,6612,7,16,3,2,55,3.55,15.0,fr,6368,132,265444,1,1,Active Shallow Crust,240.0119,57.99844,0.0,07/16/6612 +6.2627,51.27657,2653,7,29,9,26,17,3.65,5.0,fr,6369,53,265452,1,1,Active Shallow Crust,0.0,89.98875,0.0,07/29/2653 +6.2627,51.27657,9875,2,11,8,27,24,3.75,5.0,fr,6370,197,265464,1,2,Active Shallow Crust,0.0,89.98997,0.0,02/11/9875 +6.2627,51.27657,3321,12,6,9,21,54,3.75,5.0,fr,6371,66,265464,1,2,Active Shallow Crust,0.0,89.98997,0.0,12/06/3321 +6.2627,51.27657,2599,11,5,18,22,45,3.75,27.5,fr,6372,51,265466,1,1,Active Shallow Crust,0.0,89.98997,0.0,11/05/2599 +6.2627,51.27657,7989,9,1,5,54,11,3.85,5.0,fr,6373,159,265485,1,1,Active Shallow Crust,128.8959,89.9933,0.0,09/01/7989 +6.2627,51.27657,9577,10,19,11,11,4,3.95,15.0,fr,6374,191,265489,1,1,Active Shallow Crust,0.0,89.98806,0.0,10/19/9577 +6.2627,51.27657,4577,9,7,10,1,11,3.95,5.0,fr,6375,91,265494,1,1,Active Shallow Crust,0.0,89.99195,-90.0,09/07/4577 +6.2627,51.27657,2603,6,18,14,27,0,4.05,5.0,fr,6376,52,265503,1,1,Active Shallow Crust,240.0074,58.00578,0.0,06/18/2603 +6.2627,51.27657,5324,3,10,19,15,48,4.45,5.0,fr,6377,106,265548,1,1,Active Shallow Crust,0.0,89.99104,0.0,03/10/5324 +6.2627,51.27657,5684,1,10,13,4,28,4.55,5.0,fr,6378,113,265560,1,1,Active Shallow Crust,0.0,89.99003,0.0,01/10/5684 +6.2627,51.27657,7989,4,17,11,47,25,4.55,5.0,fr,6379,159,265566,1,1,Active Shallow Crust,0.0,89.98991,-90.0,04/17/7989 +6.2627,51.27657,2091,3,24,18,27,32,5.05,5.0,fr,6380,41,265629,1,1,Active Shallow Crust,128.8833,89.99054,0.0,03/24/2091 +6.2627,51.27657,5666,12,7,20,35,48,5.65,5.0,fr,6381,113,265695,1,1,Active Shallow Crust,240.0428,58.00023,0.0,12/07/5666 +2.48298,52.31312,280,1,22,11,2,16,3.85,15.0,fr,6382,5,266440,1,1,Active Shallow Crust,240.0114,57.9981,0.0,01/22/0280 +-3.57567,47.74691,2762,3,26,6,11,34,3.55,27.5,fr,6383,55,266882,1,1,Active Shallow Crust,0.0,89.98983,0.0,03/26/2762 +-3.57567,47.74691,5294,4,21,4,10,34,3.85,5.0,fr,6384,105,266916,1,1,Active Shallow Crust,0.0,89.9904,0.0,04/21/5294 +-3.57567,47.74691,7175,8,22,14,28,3,3.85,5.0,fr,6385,143,266919,1,1,Active Shallow Crust,240.0105,57.99784,0.0,08/22/7175 +-3.57567,47.74691,6207,9,1,15,12,20,4.05,5.0,fr,6386,124,266940,1,1,Active Shallow Crust,0.0,89.99047,0.0,09/01/6207 +-3.57567,47.74691,1860,3,12,10,8,34,4.15,5.0,fr,6387,37,266952,1,1,Active Shallow Crust,0.0,89.98981,0.0,03/12/1860 +-3.57567,47.74691,3645,6,25,19,30,57,4.25,5.0,fr,6388,72,266964,1,1,Active Shallow Crust,0.0,89.9894,0.0,06/25/3645 +-3.57567,47.74691,5063,10,31,16,22,54,5.55,5.0,fr,6389,101,267129,1,1,Active Shallow Crust,128.8751,89.98978,0.0,10/31/5063 +-0.4986,45.44223,5474,11,17,5,48,8,3.55,5.0,fr,6390,109,267360,1,1,Active Shallow Crust,0.0,89.98983,0.0,11/17/5474 +-0.4986,45.44223,9574,5,16,19,1,37,3.55,15.0,fr,6391,191,267361,1,1,Active Shallow Crust,0.0,89.98983,0.0,05/16/9574 +-0.4986,45.44223,4391,6,20,21,21,52,3.65,15.0,fr,6392,87,267373,1,1,Active Shallow Crust,0.0,89.99015,0.0,06/20/4391 +-0.4986,45.44223,5814,4,15,5,18,7,4.15,5.0,fr,6393,116,267438,1,1,Active Shallow Crust,0.0,89.98991,-90.0,04/15/5814 +-0.4986,45.44223,6879,10,29,11,40,3,4.35,27.5,fr,6394,137,267458,1,1,Active Shallow Crust,0.0,89.98997,0.0,10/29/6879 +-0.4986,45.44223,6097,6,19,19,28,48,4.75,5.0,fr,6395,121,267504,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/19/6097 +2.41286,49.86778,4554,7,20,7,39,7,3.65,15.0,fr,6396,91,267853,1,1,Active Shallow Crust,0.0,89.99131,0.0,07/20/4554 +2.41286,49.86778,6794,9,17,19,47,22,3.75,15.0,fr,6397,135,267874,1,1,Active Shallow Crust,128.896,89.96732,0.0,09/17/6794 +2.41286,49.86778,7072,10,26,4,4,40,4.25,5.0,fr,6398,141,267933,1,1,Active Shallow Crust,128.8938,89.98107,0.0,10/26/7072 +2.41286,49.86778,5698,7,4,20,5,41,4.45,5.0,fr,6399,113,267948,1,1,Active Shallow Crust,0.0,89.98962,0.0,07/04/5698 +2.41286,49.86778,9917,6,4,10,58,21,4.95,5.0,fr,6400,198,268008,1,2,Active Shallow Crust,0.0,89.99027,0.0,06/04/9917 +2.41286,49.86778,9969,1,3,1,22,52,4.95,5.0,fr,6401,199,268008,1,2,Active Shallow Crust,0.0,89.99027,0.0,01/03/9969 +2.80311,46.13147,6804,2,8,7,40,1,3.55,5.0,fr,6402,136,268320,1,1,Active Shallow Crust,0.0,89.98952,0.0,02/08/6804 +2.80311,46.13147,3678,1,23,7,46,35,3.55,15.0,fr,6403,73,268321,1,1,Active Shallow Crust,0.0,89.98952,0.0,01/23/3678 +2.80311,46.13147,3218,9,9,7,4,13,3.65,5.0,fr,6404,64,268332,1,2,Active Shallow Crust,0.0,89.99065,0.0,09/09/3218 +2.80311,46.13147,5126,10,2,16,45,35,3.65,5.0,fr,6405,102,268332,1,2,Active Shallow Crust,0.0,89.99065,0.0,10/02/5126 +2.80311,46.13147,6556,10,26,6,43,21,3.75,5.0,fr,6406,131,268344,1,1,Active Shallow Crust,0.0,89.9889,0.0,10/26/6556 +2.80311,46.13147,6388,9,19,2,6,46,3.75,15.0,fr,6407,127,268354,1,1,Active Shallow Crust,128.8968,89.96748,0.0,09/19/6388 +2.80311,46.13147,4426,7,22,0,26,32,3.85,5.0,fr,6408,88,268356,1,1,Active Shallow Crust,0.0,89.9901,0.0,07/22/4426 +2.80311,46.13147,9473,2,18,4,14,38,3.85,5.0,fr,6409,189,268362,1,1,Active Shallow Crust,0.0,89.98999,-90.0,02/18/9473 +2.80311,46.13147,2425,6,16,15,33,51,3.85,5.0,fr,6410,48,268365,1,1,Active Shallow Crust,128.8957,89.99382,0.0,06/16/2425 +2.80311,46.13147,3118,11,29,3,52,22,3.95,15.0,fr,6411,62,268369,1,1,Active Shallow Crust,0.0,89.98898,0.0,11/29/3118 +2.80311,46.13147,9637,4,28,14,26,22,4.05,5.0,fr,6412,192,268386,1,1,Active Shallow Crust,0.0,89.99006,-90.0,04/28/9637 +2.80311,46.13147,2492,1,28,22,5,12,4.25,5.0,fr,6413,49,268404,1,1,Active Shallow Crust,0.0,89.99063,0.0,01/28/2492 +2.80311,46.13147,5626,1,18,16,26,0,4.85,15.0,fr,6414,112,268483,1,1,Active Shallow Crust,0.0,89.98971,-90.0,01/18/5626 +2.80311,46.13147,9733,12,26,16,19,39,5.25,5.0,fr,6415,194,268524,1,1,Active Shallow Crust,0.0,89.99013,0.0,12/26/9733 +2.80311,46.13147,891,5,18,12,20,18,5.25,15.0,fr,6416,17,268534,1,1,Active Shallow Crust,128.8835,89.98705,0.0,05/18/0891 +-2.77449,43.56376,760,12,12,23,49,33,3.75,15.0,fr,6417,15,268825,1,1,Active Shallow Crust,0.0,89.99129,0.0,12/12/0760 +-2.774485,43.56376,6764,2,2,10,53,37,7.35,17.5,fr,6418,135,269263,1,1,Active Shallow Crust,360.0,89.98998,-90.0,02/02/6764 +-4.3475,46.5696,7219,4,29,15,22,23,3.65,27.5,fr,6419,144,269294,1,1,Active Shallow Crust,0.0,89.98764,0.0,04/29/7219 +0.28072,50.56185,4980,1,21,3,1,36,3.55,5.0,fr,6420,99,269760,1,2,Active Shallow Crust,0.0,89.98999,0.0,01/21/4980 +0.28072,50.56185,3733,4,28,14,2,0,3.55,5.0,fr,6421,74,269760,1,2,Active Shallow Crust,0.0,89.98999,0.0,04/28/3733 +0.28072,50.56185,7173,11,30,11,8,4,3.55,5.0,fr,6422,143,269763,1,1,Active Shallow Crust,240.0126,57.9982,0.0,11/30/7173 +0.28072,50.56185,8772,6,1,13,52,6,3.65,5.0,fr,6423,175,269772,1,3,Active Shallow Crust,0.0,89.99001,0.0,06/01/8772 +0.28072,50.56185,4437,10,23,12,57,59,3.65,5.0,fr,6424,88,269772,1,3,Active Shallow Crust,0.0,89.99001,0.0,10/23/4437 +0.28072,50.56185,4280,4,16,8,23,27,3.65,5.0,fr,6425,85,269772,1,3,Active Shallow Crust,0.0,89.99001,0.0,04/16/4280 +0.28072,50.56185,2720,1,17,14,9,0,4.25,5.0,fr,6426,54,269844,1,1,Active Shallow Crust,0.0,89.98998,0.0,01/17/2720 +0.28072,50.56185,791,7,1,15,36,12,4.55,5.0,fr,6427,15,269889,1,1,Active Shallow Crust,128.8928,89.98579,0.0,07/01/0791 +0.21633,41.54865,769,2,21,9,24,50,3.55,5.0,fr,6428,15,270243,1,2,Active Shallow Crust,240.0117,57.99809,0.0,02/21/0769 +0.21633,41.54865,7526,9,23,4,3,6,3.55,5.0,fr,6429,150,270243,1,2,Active Shallow Crust,240.0117,57.99809,0.0,09/23/7526 +0.21633,41.54865,8977,3,3,10,3,59,3.65,27.5,fr,6430,179,270254,1,1,Active Shallow Crust,0.0,89.98991,0.0,03/03/8977 +0.21633,41.54865,4204,8,23,5,52,49,3.95,15.0,fr,6431,84,270289,1,1,Active Shallow Crust,0.0,89.99003,0.0,08/23/4204 +0.21633,41.54865,9980,8,25,10,46,45,4.35,15.0,fr,6432,199,270337,1,1,Active Shallow Crust,0.0,89.98995,0.0,08/25/9980 +1.80101,51.27106,3701,3,27,1,6,55,3.55,5.0,fr,6433,74,270720,1,3,Active Shallow Crust,0.0,89.99054,0.0,03/27/3701 +1.80101,51.27106,3295,4,20,18,49,21,3.55,5.0,fr,6434,65,270720,1,3,Active Shallow Crust,0.0,89.99054,0.0,04/20/3295 +1.80101,51.27106,4682,2,16,22,16,52,3.55,5.0,fr,6435,93,270720,1,3,Active Shallow Crust,0.0,89.99054,0.0,02/16/4682 +1.80101,51.27106,7920,4,21,14,1,20,3.65,5.0,fr,6436,158,270738,1,2,Active Shallow Crust,0.0,89.99004,-90.0,04/21/7920 +1.80101,51.27106,9186,11,14,11,18,15,3.65,5.0,fr,6437,183,270738,1,2,Active Shallow Crust,0.0,89.99004,-90.0,11/14/9186 +1.80101,51.27106,2399,11,16,6,52,57,3.85,15.0,fr,6438,47,270763,1,1,Active Shallow Crust,0.0,89.98984,-90.0,11/16/2399 +1.80101,51.27106,5849,11,24,5,15,12,4.15,5.0,fr,6439,116,270795,1,1,Active Shallow Crust,240.0095,57.9975,0.0,11/24/5849 +1.80101,51.27106,3009,9,9,10,41,14,4.25,5.0,fr,6440,60,270804,1,1,Active Shallow Crust,0.0,89.99014,0.0,09/09/3009 +1.80101,51.27106,931,2,21,3,34,40,4.35,5.0,fr,6441,18,270816,1,2,Active Shallow Crust,0.0,89.98995,0.0,02/21/0931 +1.80101,51.27106,3575,12,28,13,22,40,4.35,5.0,fr,6442,71,270816,1,2,Active Shallow Crust,0.0,89.98995,0.0,12/28/3575 +-1.11658,45.38757,5188,12,21,9,23,52,3.65,5.0,fr,6443,103,271212,1,1,Active Shallow Crust,0.0,89.99053,0.0,12/21/5188 +-1.11658,45.38757,1667,3,2,14,15,51,3.65,27.5,fr,6444,33,271223,1,2,Active Shallow Crust,128.9009,89.9635,0.0,03/02/1667 +-1.11658,45.38757,2743,11,25,3,0,19,3.65,27.5,fr,6445,54,271223,1,2,Active Shallow Crust,128.9009,89.9635,0.0,11/25/2743 +-1.11658,45.38757,485,11,13,12,21,47,4.35,5.0,fr,6446,9,271299,1,1,Active Shallow Crust,240.008,57.9959,0.0,11/13/0485 +-1.11658,45.38757,3175,4,22,7,16,30,4.45,15.0,fr,6447,63,271309,1,1,Active Shallow Crust,0.0,89.98994,0.0,04/22/3175 +5.91904,42.21161,9164,5,5,23,43,39,4.75,15.0,fr,6448,183,271825,1,1,Active Shallow Crust,0.0,89.99062,0.0,05/05/9164 +4.09782,40.61598,3786,1,21,7,12,52,3.75,15.0,fr,6449,75,272185,1,1,Active Shallow Crust,0.0,89.98784,0.0,01/21/3786 +4.09782,40.61598,3931,7,20,12,18,22,3.85,15.0,fr,6450,78,272197,1,1,Active Shallow Crust,0.0,89.98916,0.0,07/20/3931 +4.09782,40.61598,4738,10,17,10,11,20,3.95,5.0,fr,6451,94,272208,1,1,Active Shallow Crust,0.0,89.99034,0.0,10/17/4738 +4.09782,40.61598,9735,7,6,4,18,46,3.95,5.0,fr,6452,194,272214,1,1,Active Shallow Crust,0.0,89.99023,-90.0,07/06/9735 +0.96505,41.2154,1345,9,17,17,44,52,3.55,15.0,fr,6453,26,273121,1,1,Active Shallow Crust,0.0,89.98957,0.0,09/17/1345 +0.96505,41.2154,6266,4,26,17,50,18,3.55,5.0,fr,6454,125,273129,1,1,Active Shallow Crust,128.8965,89.99384,0.0,04/26/6266 +0.96505,41.2154,7184,6,2,1,27,56,3.65,15.0,fr,6455,143,273133,1,1,Active Shallow Crust,0.0,89.98986,0.0,06/02/7184 +0.96505,41.2154,7272,11,7,21,54,19,3.65,5.0,fr,6456,145,273138,1,1,Active Shallow Crust,0.0,89.98974,-90.0,11/07/7272 +0.96505,41.2154,2300,2,17,14,1,54,3.75,27.5,fr,6457,45,273146,1,1,Active Shallow Crust,0.0,89.99021,0.0,02/17/2300 +0.96505,41.2154,4989,12,24,4,25,30,3.85,15.0,fr,6458,99,273160,1,1,Active Shallow Crust,240.0103,57.99766,0.0,12/24/4989 +0.96505,41.2154,2205,12,8,19,45,55,3.95,5.0,fr,6459,44,273168,1,1,Active Shallow Crust,0.0,89.98983,0.0,12/08/2205 +0.96505,41.2154,469,4,23,3,41,47,4.25,5.0,fr,6460,9,273204,1,1,Active Shallow Crust,0.0,89.98984,0.0,04/23/0469 +0.96505,41.2154,2461,2,23,7,51,8,4.25,15.0,fr,6461,49,273211,1,1,Active Shallow Crust,0.0,89.99014,-90.0,02/23/2461 +0.96505,41.2154,6553,10,1,17,47,4,4.35,15.0,fr,6462,131,273217,1,1,Active Shallow Crust,0.0,89.99019,0.0,10/01/6553 +0.96505,41.2154,8561,5,29,20,5,38,4.45,5.0,fr,6463,171,273228,1,1,Active Shallow Crust,0.0,89.98991,0.0,05/29/8561 +0.96505,41.2154,7507,7,19,22,28,54,4.75,5.0,fr,6464,150,273264,1,1,Active Shallow Crust,0.0,89.99,0.0,07/19/7507 +0.96505,41.2154,3145,1,25,14,38,13,4.75,15.0,fr,6465,62,273265,1,1,Active Shallow Crust,0.0,89.99,0.0,01/25/3145 +0.96505,41.2154,6749,10,5,11,52,51,4.95,15.0,fr,6466,134,273289,1,1,Active Shallow Crust,0.0,89.98997,0.0,10/05/6749 +0.96505,41.2154,2892,10,5,6,1,48,5.05,5.0,fr,6467,57,273300,1,1,Active Shallow Crust,0.0,89.99005,0.0,10/05/2892 +3.09423,42.89276,9819,7,23,15,0,38,3.75,5.0,fr,6468,196,273624,1,1,Active Shallow Crust,0.0,89.9912,0.0,07/23/9819 +3.09423,42.89276,5142,10,27,7,12,48,4.05,27.5,fr,6469,102,273662,1,1,Active Shallow Crust,0.0,89.98962,0.0,10/27/5142 +3.09423,42.89276,9877,6,26,13,23,9,4.15,27.5,fr,6470,197,273674,1,1,Active Shallow Crust,0.0,89.99075,0.0,06/26/9877 +3.09423,42.89276,678,6,24,18,51,31,4.25,5.0,fr,6471,13,273684,1,1,Active Shallow Crust,0.0,89.9901,0.0,06/24/0678 +3.09423,42.89276,4245,12,22,17,52,39,4.35,5.0,fr,6472,84,273696,1,1,Active Shallow Crust,0.0,89.98971,0.0,12/22/4245 +3.09423,42.89276,5295,8,21,7,19,5,4.65,15.0,fr,6473,105,273742,1,1,Active Shallow Crust,128.8919,89.98703,0.0,08/21/5295 +3.09423,42.89276,5448,8,1,15,57,59,4.95,5.0,fr,6474,108,273768,1,1,Active Shallow Crust,0.0,89.98968,0.0,08/01/5448 +3.09423,42.89276,8528,6,26,8,53,26,5.55,5.0,fr,6475,170,273840,1,1,Active Shallow Crust,0.0,89.99002,0.0,06/26/8528 +0.5101,46.60034,2145,3,10,0,35,53,3.55,15.0,fr,6476,42,274081,1,1,Active Shallow Crust,0.0,89.98961,0.0,03/10/2145 +0.5101,46.60034,2497,5,10,7,34,1,3.55,5.0,fr,6477,49,274086,1,1,Active Shallow Crust,0.0,89.99036,-90.0,05/10/2497 +0.5101,46.60034,4952,2,29,6,35,56,3.55,27.5,fr,6478,99,274088,1,1,Active Shallow Crust,0.0,89.99036,-90.0,02/29/4952 +0.5101,46.60034,2075,5,25,7,26,19,3.55,5.0,fr,6479,41,274089,1,1,Active Shallow Crust,128.8963,89.99393,0.0,05/25/2075 +0.5101,46.60034,2641,9,22,12,44,19,3.65,5.0,fr,6480,52,274092,1,1,Active Shallow Crust,0.0,89.98997,0.0,09/22/2641 +0.5101,46.60034,9096,10,3,2,22,40,3.75,15.0,fr,6481,181,274114,1,1,Active Shallow Crust,128.8965,89.96737,0.0,10/03/9096 +0.5101,46.60034,9680,1,28,1,46,50,3.85,27.5,fr,6482,193,274124,1,1,Active Shallow Crust,0.0,89.99007,-90.0,01/28/9680 +0.5101,46.60034,8623,10,12,12,9,2,3.95,15.0,fr,6483,172,274132,1,1,Active Shallow Crust,240.0199,58.00488,0.0,10/12/8623 +0.5101,46.60034,491,5,26,3,48,32,4.05,5.0,fr,6484,9,274140,1,1,Active Shallow Crust,0.0,89.98977,0.0,05/26/0491 +0.5101,46.60034,628,12,31,22,14,7,4.05,15.0,fr,6485,12,274144,1,1,Active Shallow Crust,240.006,58.00581,0.0,12/31/0628 +0.5101,46.60034,9877,6,12,1,50,5,4.15,15.0,fr,6486,197,274153,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/12/9877 +0.5101,46.60034,4444,11,7,22,50,56,4.15,15.0,fr,6487,88,274156,1,1,Active Shallow Crust,240.0085,57.99733,0.0,11/07/4444 +0.5101,46.60034,4252,7,16,6,14,44,4.35,5.0,fr,6488,85,274185,1,1,Active Shallow Crust,128.8979,89.98272,0.0,07/16/4252 +5.73559,44.85489,2650,9,20,8,8,55,3.55,5.0,fr,6489,52,274560,1,3,Active Shallow Crust,0.0,89.99285,0.0,09/20/2650 +5.73559,44.85489,8415,6,29,18,12,21,3.55,5.0,fr,6490,168,274560,1,3,Active Shallow Crust,0.0,89.99285,0.0,06/29/8415 +5.73559,44.85489,6081,5,3,8,5,58,3.55,5.0,fr,6491,121,274560,1,3,Active Shallow Crust,0.0,89.99285,0.0,05/03/6081 +5.73559,44.85489,8929,12,28,22,9,13,3.55,15.0,fr,6492,178,274561,1,1,Active Shallow Crust,0.0,89.99285,0.0,12/28/8929 +5.73559,44.85489,7734,7,7,10,0,25,3.65,5.0,fr,6493,154,274572,1,1,Active Shallow Crust,0.0,89.98726,0.0,07/07/7734 +5.73559,44.85489,2722,1,22,12,47,47,3.65,15.0,fr,6494,54,274573,1,1,Active Shallow Crust,0.0,89.98726,0.0,01/22/2722 +5.73559,44.85489,6675,11,14,7,10,42,3.65,15.0,fr,6495,133,274582,1,1,Active Shallow Crust,128.9013,89.96349,0.0,11/14/6675 +5.73559,44.85489,1777,5,27,13,17,49,3.75,5.0,fr,6496,35,274584,1,1,Active Shallow Crust,0.0,89.98864,0.0,05/27/1777 +5.73559,44.85489,982,2,4,18,22,43,3.85,15.0,fr,6497,19,274597,1,2,Active Shallow Crust,0.0,89.98988,0.0,02/04/0982 +5.73559,44.85489,446,4,30,4,33,35,3.85,15.0,fr,6498,8,274597,1,2,Active Shallow Crust,0.0,89.98988,0.0,04/30/0446 +5.73559,44.85489,9056,7,10,15,56,51,3.85,5.0,fr,6499,181,274599,1,1,Active Shallow Crust,240.0102,57.99828,0.0,07/10/9056 +5.73559,44.85489,7615,5,24,6,29,36,4.05,5.0,fr,6500,152,274623,1,1,Active Shallow Crust,240.0059,58.00558,0.0,05/24/7615 +5.73559,44.85489,4691,12,2,23,1,38,4.15,5.0,fr,6501,93,274632,1,1,Active Shallow Crust,0.0,89.98925,0.0,12/02/4691 +5.73559,44.85489,2355,6,22,13,46,39,4.15,27.5,fr,6502,47,274634,1,1,Active Shallow Crust,0.0,89.98925,0.0,06/22/2355 +5.73559,44.85489,3551,2,16,21,3,45,4.25,15.0,fr,6503,71,274645,1,1,Active Shallow Crust,0.0,89.99042,0.0,02/16/3551 +5.73559,44.85489,4252,3,3,21,17,50,4.25,27.5,fr,6504,85,274646,1,1,Active Shallow Crust,0.0,89.99042,0.0,03/03/4252 +5.73559,44.85489,9545,7,15,4,55,28,5.15,15.0,fr,6505,190,274753,1,1,Active Shallow Crust,0.0,89.9898,0.0,07/15/9545 +5.73559,44.85489,4061,11,8,19,58,0,5.35,5.0,fr,6506,81,274782,1,1,Active Shallow Crust,0.0,89.98998,-90.0,11/08/4061 +6.43939,43.75068,4513,2,16,15,48,33,3.55,15.0,fr,6507,90,275041,1,2,Active Shallow Crust,0.0,89.99271,0.0,02/16/4513 +6.43939,43.75068,5453,12,11,6,14,12,3.55,15.0,fr,6508,109,275041,1,2,Active Shallow Crust,0.0,89.99271,0.0,12/11/5453 +6.43939,43.75068,2779,6,24,20,46,6,3.75,15.0,fr,6509,55,275065,1,1,Active Shallow Crust,0.0,89.98843,0.0,06/24/2779 +6.43939,43.75068,8002,5,11,15,35,8,3.95,5.0,fr,6510,160,275088,1,1,Active Shallow Crust,0.0,89.99081,0.0,05/11/8002 +6.43939,43.75068,7490,10,11,23,39,51,3.95,27.5,fr,6511,149,275090,1,1,Active Shallow Crust,0.0,89.99081,0.0,10/11/7490 +6.43939,43.75068,2438,1,1,11,17,16,4.05,5.0,fr,6512,48,275106,1,1,Active Shallow Crust,0.0,89.99171,-90.0,01/01/2438 +6.43939,43.75068,9486,12,2,15,3,21,4.05,15.0,fr,6513,189,275107,1,1,Active Shallow Crust,0.0,89.99171,-90.0,12/02/9486 +6.43939,43.75068,9870,11,20,16,48,10,4.25,5.0,fr,6514,197,275130,1,1,Active Shallow Crust,0.0,89.99013,-90.0,11/20/9870 +6.43939,43.75068,9947,10,1,7,34,40,4.85,5.0,fr,6515,198,275196,1,1,Active Shallow Crust,0.0,89.99021,0.0,10/01/9947 +1.24632,42.87672,3922,11,19,11,11,3,3.55,5.0,fr,6516,78,275520,1,2,Active Shallow Crust,0.0,89.99076,0.0,11/19/3922 +1.24632,42.87672,5510,4,20,4,24,39,3.55,5.0,fr,6517,110,275520,1,2,Active Shallow Crust,0.0,89.99076,0.0,04/20/5510 +1.24632,42.87672,7074,11,10,3,20,29,3.55,5.0,fr,6518,141,275529,1,1,Active Shallow Crust,128.8965,89.99354,0.0,11/10/7074 +1.24632,42.87672,1186,2,19,21,58,20,3.65,5.0,fr,6519,23,275532,1,1,Active Shallow Crust,0.0,89.99012,0.0,02/19/1186 +1.24632,42.87672,120,4,21,22,37,17,3.65,15.0,fr,6520,2,275533,1,1,Active Shallow Crust,0.0,89.99012,0.0,04/21/0120 +1.24632,42.87672,9767,1,11,18,20,24,3.65,27.5,fr,6521,195,275534,1,1,Active Shallow Crust,0.0,89.99012,0.0,01/11/9767 +1.24632,42.87672,833,2,12,11,11,41,3.75,5.0,fr,6522,16,275544,1,1,Active Shallow Crust,0.0,89.98973,0.0,02/12/0833 +1.24632,42.87672,463,8,10,3,48,18,3.75,5.0,fr,6523,9,275547,1,1,Active Shallow Crust,240.008,58.01755,0.0,08/10/0463 +1.24632,42.87672,1794,6,7,6,51,48,3.85,5.0,fr,6524,35,275556,1,3,Active Shallow Crust,0.0,89.98954,0.0,06/07/1794 +1.24632,42.87672,67,2,24,6,35,28,3.85,5.0,fr,6525,1,275556,1,3,Active Shallow Crust,0.0,89.98954,0.0,02/24/0067 +1.24632,42.87672,2312,12,8,18,30,15,3.85,5.0,fr,6526,46,275556,1,3,Active Shallow Crust,0.0,89.98954,0.0,12/08/2312 +1.24632,42.87672,2484,6,11,2,36,9,3.85,5.0,fr,6527,49,275559,1,2,Active Shallow Crust,240.0102,57.99788,0.0,06/11/2484 +1.24632,42.87672,3341,10,18,23,59,40,3.85,5.0,fr,6528,66,275559,1,2,Active Shallow Crust,240.0102,57.99788,0.0,10/18/3341 +1.24632,42.87672,3453,9,16,23,15,45,3.95,15.0,fr,6529,69,275569,1,1,Active Shallow Crust,0.0,89.98951,0.0,09/16/3453 +1.24632,42.87672,5194,7,1,18,10,38,3.95,27.5,fr,6530,103,275570,1,1,Active Shallow Crust,0.0,89.98951,0.0,07/01/5194 +1.24632,42.87672,9232,9,29,22,34,53,3.95,15.0,fr,6531,184,275575,1,1,Active Shallow Crust,0.0,89.99057,-90.0,09/29/9232 +1.24632,42.87672,9174,5,30,18,14,32,4.15,5.0,fr,6532,183,275592,1,1,Active Shallow Crust,0.0,89.98981,0.0,05/30/9174 +1.24632,42.87672,1203,7,6,12,19,48,4.15,15.0,fr,6533,24,275593,1,1,Active Shallow Crust,0.0,89.98981,0.0,07/06/1203 +1.24632,42.87672,218,11,17,13,19,58,4.25,5.0,fr,6534,4,275604,1,1,Active Shallow Crust,0.0,89.9901,0.0,11/17/0218 +1.24632,42.87672,5964,7,22,17,26,21,4.45,5.0,fr,6535,119,275628,1,1,Active Shallow Crust,0.0,89.99017,0.0,07/22/5964 +1.24632,42.87672,705,12,13,6,15,4,4.65,5.0,fr,6536,14,275658,1,1,Active Shallow Crust,0.0,89.98999,-90.0,12/13/0705 +1.24632,42.87672,1085,12,23,12,14,57,5.05,15.0,fr,6537,21,275704,1,1,Active Shallow Crust,240.0204,57.99723,0.0,12/23/1085 +4.97597,42.22434,7707,3,25,23,34,3,3.85,5.0,fr,6538,154,276519,1,1,Active Shallow Crust,240.0091,57.99805,0.0,03/25/7707 +4.97597,42.22434,8134,7,10,13,39,40,4.05,5.0,fr,6539,162,276543,1,1,Active Shallow Crust,240.0058,58.00507,0.0,07/10/8134 +4.97597,42.22434,6434,1,31,16,38,16,5.35,5.0,fr,6540,128,276696,1,1,Active Shallow Crust,0.0,89.98965,0.0,01/31/6434 +3.64747,46.26105,5710,9,10,14,59,53,3.55,5.0,fr,6541,114,277440,1,1,Active Shallow Crust,0.0,89.98954,0.0,09/10/5710 +3.64747,46.26105,3305,10,1,8,30,47,3.55,15.0,fr,6542,66,277447,1,1,Active Shallow Crust,0.0,89.98942,-90.0,10/01/3305 +3.64747,46.26105,9351,6,7,1,14,44,3.65,5.0,fr,6543,187,277452,1,1,Active Shallow Crust,0.0,89.99068,0.0,06/07/9351 +3.64747,46.26105,8672,5,20,2,37,46,3.65,27.5,fr,6544,173,277460,1,1,Active Shallow Crust,0.0,89.99057,-90.0,05/20/8672 +3.64747,46.26105,84,7,9,7,53,57,3.75,5.0,fr,6545,1,277464,1,1,Active Shallow Crust,0.0,89.98892,0.0,07/09/0084 +3.64747,46.26105,4003,5,11,17,22,27,3.85,5.0,fr,6546,80,277476,1,1,Active Shallow Crust,0.0,89.99013,0.0,05/11/4003 +3.64747,46.26105,476,10,20,22,33,46,3.85,15.0,fr,6547,9,277486,1,1,Active Shallow Crust,128.8958,89.99383,0.0,10/20/0476 +3.64747,46.26105,9480,5,2,10,42,14,3.95,15.0,fr,6548,189,277495,1,1,Active Shallow Crust,0.0,89.9911,-90.0,05/02/9480 +3.64747,46.26105,2504,11,1,23,9,33,4.35,5.0,fr,6549,50,277536,1,1,Active Shallow Crust,0.0,89.99029,0.0,11/01/2504 +0.81645,49.67116,4880,10,23,9,41,7,3.55,5.0,fr,6550,97,277920,1,1,Active Shallow Crust,0.0,89.99021,0.0,10/23/4880 +0.81645,49.67116,9570,11,12,20,42,54,3.65,5.0,fr,6551,191,277932,1,1,Active Shallow Crust,0.0,89.98982,0.0,11/12/9570 +0.81645,49.67116,7737,7,7,10,2,55,3.65,5.0,fr,6552,154,277938,1,1,Active Shallow Crust,0.0,89.9897,-90.0,07/07/7737 +0.81645,49.67116,7510,10,19,2,15,38,3.75,5.0,fr,6553,150,277947,1,1,Active Shallow Crust,240.0088,58.01762,0.0,10/19/7510 +0.81645,49.67116,4740,7,5,11,15,40,3.75,5.0,fr,6554,94,277950,1,1,Active Shallow Crust,0.0,89.99017,-90.0,07/05/4740 +0.81645,49.67116,4865,11,26,8,39,12,3.85,5.0,fr,6555,97,277956,1,2,Active Shallow Crust,0.0,89.99018,0.0,11/26/4865 +0.81645,49.67116,3467,3,12,11,46,19,3.85,5.0,fr,6556,69,277956,1,2,Active Shallow Crust,0.0,89.99018,0.0,03/12/3467 +0.81645,49.67116,2833,3,14,13,50,58,3.85,15.0,fr,6557,56,277957,1,1,Active Shallow Crust,0.0,89.99018,0.0,03/14/2833 +0.81645,49.67116,4704,10,28,12,2,49,3.85,15.0,fr,6558,94,277963,1,1,Active Shallow Crust,0.0,89.99007,-90.0,10/28/4704 +0.81645,49.67116,5107,12,7,7,36,39,3.95,5.0,fr,6559,102,277968,1,1,Active Shallow Crust,0.0,89.99022,0.0,12/07/5107 +0.81645,49.67116,1177,3,8,2,12,57,4.25,27.5,fr,6560,23,278015,1,1,Active Shallow Crust,128.8937,89.98089,0.0,03/08/1177 +0.81645,49.67116,8638,6,14,23,55,32,4.35,5.0,fr,6561,172,278016,1,1,Active Shallow Crust,0.0,89.98993,0.0,06/14/8638 +0.81645,49.67116,4478,12,12,18,8,31,4.55,5.0,fr,6562,89,278040,1,1,Active Shallow Crust,0.0,89.98994,0.0,12/12/4478 +0.81645,49.67116,2203,6,9,5,45,17,4.75,15.0,fr,6563,44,278065,1,1,Active Shallow Crust,0.0,89.98996,0.0,06/09/2203 +-1.69099,43.82303,2448,3,10,15,29,44,3.55,5.0,fr,6564,48,278400,1,1,Active Shallow Crust,0.0,89.99091,0.0,03/10/2448 +-1.69099,43.82303,6659,3,10,13,31,20,3.55,5.0,fr,6565,133,278409,1,1,Active Shallow Crust,128.8963,89.99364,0.0,03/10/6659 +-1.69099,43.82303,9880,8,1,0,4,10,4.95,5.0,fr,6566,197,278568,1,1,Active Shallow Crust,0.0,89.98984,0.0,08/01/9880 +-1.566,47.24953,9291,8,25,19,53,10,3.65,5.0,fr,6567,185,278892,1,3,Active Shallow Crust,0.0,89.98933,0.0,08/25/9291 +-1.566,47.24953,9382,7,22,7,18,8,3.65,5.0,fr,6568,187,278892,1,3,Active Shallow Crust,0.0,89.98933,0.0,07/22/9382 +-1.566,47.24953,4026,10,6,5,57,15,3.65,5.0,fr,6569,80,278892,1,3,Active Shallow Crust,0.0,89.98933,0.0,10/06/4026 +-1.566,47.24953,2299,4,14,4,10,37,3.65,5.0,fr,6570,45,278895,1,1,Active Shallow Crust,240.0011,58.01302,0.0,04/14/2299 +-1.566,47.24953,6216,4,23,21,18,27,3.65,15.0,fr,6571,124,278896,1,1,Active Shallow Crust,240.0011,58.01302,0.0,04/23/6216 +-1.566,47.24953,5870,3,9,6,1,52,3.65,27.5,fr,6572,117,278900,1,1,Active Shallow Crust,0.0,89.99075,-90.0,03/09/5870 +-1.566,47.24953,484,5,23,0,47,21,3.75,5.0,fr,6573,9,278904,1,1,Active Shallow Crust,0.0,89.99049,0.0,05/23/0484 +-1.566,47.24953,9898,3,23,12,1,47,3.75,5.0,fr,6574,197,278907,1,1,Active Shallow Crust,240.0085,58.01738,0.0,03/23/9898 +-1.566,47.24953,4595,8,27,15,5,55,3.75,15.0,fr,6575,91,278911,1,1,Active Shallow Crust,0.0,89.99037,-90.0,08/27/4595 +-1.566,47.24953,2869,7,12,18,59,53,3.85,5.0,fr,6576,57,278916,1,4,Active Shallow Crust,0.0,89.99031,0.0,07/12/2869 +-1.566,47.24953,1254,3,19,11,16,38,3.85,5.0,fr,6577,25,278916,1,4,Active Shallow Crust,0.0,89.99031,0.0,03/19/1254 +-1.566,47.24953,7929,9,26,13,13,31,3.85,5.0,fr,6578,158,278916,1,4,Active Shallow Crust,0.0,89.99031,0.0,09/26/7929 +-1.566,47.24953,2258,12,25,14,44,21,3.85,5.0,fr,6579,45,278916,1,4,Active Shallow Crust,0.0,89.99031,0.0,12/25/2258 +-1.566,47.24953,4884,5,20,11,30,59,3.85,15.0,fr,6580,97,278917,1,1,Active Shallow Crust,0.0,89.99031,0.0,05/20/4884 +-1.566,47.24953,2625,9,22,16,12,2,3.85,15.0,fr,6581,52,278926,1,1,Active Shallow Crust,128.8953,89.99394,0.0,09/22/2625 +-1.566,47.24953,4140,7,29,8,7,29,3.95,5.0,fr,6582,82,278928,1,1,Active Shallow Crust,0.0,89.99028,0.0,07/29/4140 +-1.566,47.24953,4564,7,23,3,24,10,3.95,15.0,fr,6583,91,278929,1,1,Active Shallow Crust,0.0,89.99028,0.0,07/23/4564 +-1.566,47.24953,1042,6,28,17,49,22,4.15,5.0,fr,6584,20,278961,1,1,Active Shallow Crust,128.8974,89.99357,0.0,06/28/1042 +-1.566,47.24953,397,2,12,11,9,12,4.25,5.0,fr,6585,7,278964,1,2,Active Shallow Crust,0.0,89.99006,0.0,02/12/0397 +-1.566,47.24953,6616,9,25,10,15,25,4.25,5.0,fr,6586,132,278964,1,2,Active Shallow Crust,0.0,89.99006,0.0,09/25/6616 +-1.566,47.24953,3572,6,13,20,30,25,4.35,5.0,fr,6587,71,278976,1,1,Active Shallow Crust,0.0,89.98978,0.0,06/13/3572 +-1.566,47.24953,4212,8,29,1,37,18,4.35,27.5,fr,6588,84,278981,1,1,Active Shallow Crust,240.0086,57.99595,0.0,08/29/4212 +-1.566,47.24953,70,1,26,22,53,32,4.45,15.0,fr,6589,1,278989,1,2,Active Shallow Crust,0.0,89.99029,0.0,01/26/0070 +-1.566,47.24953,8771,5,28,19,38,20,4.45,15.0,fr,6590,175,278989,1,2,Active Shallow Crust,0.0,89.99029,0.0,05/28/8771 +-1.566,47.24953,370,12,3,20,6,34,4.85,5.0,fr,6591,7,279036,1,1,Active Shallow Crust,0.0,89.99004,0.0,12/03/0370 +-1.566,47.24953,5280,1,30,13,30,59,4.85,5.0,fr,6592,105,279039,1,1,Active Shallow Crust,240.0174,58.00238,0.0,01/30/5280 +-1.565972,47.24953,6158,10,11,11,50,23,7.05,16.94221,fr,6593,123,279300,1,1,Active Shallow Crust,360.0,89.99001,0.0,10/11/6158 +-2.27885,47.05197,4164,11,2,1,48,45,3.55,5.0,fr,6594,83,279360,1,4,Active Shallow Crust,0.0,89.98969,0.0,11/02/4164 +-2.27885,47.05197,6822,8,18,10,39,21,3.55,5.0,fr,6595,136,279360,1,4,Active Shallow Crust,0.0,89.98969,0.0,08/18/6822 +-2.27885,47.05197,8366,8,18,4,29,13,3.55,5.0,fr,6596,167,279360,1,4,Active Shallow Crust,0.0,89.98969,0.0,08/18/8366 +-2.27885,47.05197,4113,1,25,13,6,34,3.55,5.0,fr,6597,82,279360,1,4,Active Shallow Crust,0.0,89.98969,0.0,01/25/4113 +-2.27885,47.05197,5347,9,24,14,50,56,3.55,5.0,fr,6598,106,279363,1,2,Active Shallow Crust,240.0119,57.99844,0.0,09/24/5347 +-2.27885,47.05197,1711,2,25,19,27,4,3.55,5.0,fr,6599,34,279363,1,2,Active Shallow Crust,240.0119,57.99844,0.0,02/25/1711 +-2.27885,47.05197,5854,12,9,2,6,21,3.65,5.0,fr,6600,117,279372,1,1,Active Shallow Crust,0.0,89.99081,0.0,12/09/5854 +-2.27885,47.05197,2927,9,1,16,25,24,3.65,27.5,fr,6601,58,279374,1,1,Active Shallow Crust,0.0,89.99081,0.0,09/01/2927 +-2.27885,47.05197,5684,1,26,5,27,33,3.75,5.0,fr,6602,113,279384,1,3,Active Shallow Crust,0.0,89.98908,0.0,01/26/5684 +-2.27885,47.05197,8214,12,26,6,12,33,3.75,5.0,fr,6603,164,279384,1,3,Active Shallow Crust,0.0,89.98908,0.0,12/26/8214 +-2.27885,47.05197,4675,10,31,12,6,48,3.75,5.0,fr,6604,93,279384,1,3,Active Shallow Crust,0.0,89.98908,0.0,10/31/4675 +-2.27885,47.05197,3522,9,16,0,36,40,3.75,27.5,fr,6605,70,279386,1,1,Active Shallow Crust,0.0,89.98908,0.0,09/16/3522 +-2.27885,47.05197,8648,4,25,12,24,56,3.75,5.0,fr,6606,172,279390,1,1,Active Shallow Crust,0.0,89.98896,-90.0,04/25/8648 +-2.27885,47.05197,2002,9,1,5,0,14,3.75,5.0,fr,6607,40,279393,1,1,Active Shallow Crust,128.897,89.96725,0.0,09/01/2002 +-2.27885,47.05197,7860,7,21,16,31,9,3.85,5.0,fr,6608,157,279396,1,2,Active Shallow Crust,0.0,89.99027,0.0,07/21/7860 +-2.27885,47.05197,3571,11,20,5,1,39,3.85,5.0,fr,6609,71,279396,1,2,Active Shallow Crust,0.0,89.99027,0.0,11/20/3571 +-2.27885,47.05197,8274,6,24,3,24,35,3.95,5.0,fr,6610,165,279408,1,1,Active Shallow Crust,0.0,89.98916,0.0,06/24/8274 +-2.27885,47.05197,5471,5,5,5,15,54,3.95,15.0,fr,6611,109,279409,1,1,Active Shallow Crust,0.0,89.98916,0.0,05/05/5471 +-2.27885,47.05197,7028,11,28,0,1,50,4.05,15.0,fr,6612,140,279427,1,1,Active Shallow Crust,0.0,89.99023,-90.0,11/28/7028 +-2.27885,47.05197,1601,9,25,0,27,46,4.15,5.0,fr,6613,32,279432,1,2,Active Shallow Crust,0.0,89.98967,0.0,09/25/1601 +-2.27885,47.05197,2729,2,17,18,8,10,4.15,5.0,fr,6614,54,279432,1,2,Active Shallow Crust,0.0,89.98967,0.0,02/17/2729 +-2.27885,47.05197,1967,11,8,21,39,3,4.25,5.0,fr,6615,39,279450,1,1,Active Shallow Crust,0.0,89.99068,-90.0,11/08/1967 +-2.27885,47.05197,1070,12,6,18,28,7,4.45,5.0,fr,6616,21,279468,1,1,Active Shallow Crust,0.0,89.99025,0.0,12/06/1070 +-2.27885,47.05197,7373,2,1,12,33,10,5.55,5.0,fr,6617,147,279600,1,1,Active Shallow Crust,0.0,89.99004,0.0,02/01/7373 +5.15278,51.4984,9577,11,13,6,59,28,3.65,5.0,fr,6618,191,279858,1,1,Active Shallow Crust,0.0,89.98868,-90.0,11/13/9577 +5.15278,51.4984,7354,12,18,10,26,51,5.55,5.0,fr,6619,147,280080,1,1,Active Shallow Crust,0.0,89.98995,0.0,12/18/7354 +-2.8541,49.16497,5355,9,4,19,1,41,3.55,5.0,fr,6620,107,280320,1,2,Active Shallow Crust,0.0,89.99011,0.0,09/04/5355 +-2.8541,49.16497,6158,12,15,11,36,57,3.55,5.0,fr,6621,123,280320,1,2,Active Shallow Crust,0.0,89.99011,0.0,12/15/6158 +-2.8541,49.16497,1237,3,14,8,32,25,3.55,15.0,fr,6622,24,280321,1,1,Active Shallow Crust,0.0,89.99011,0.0,03/14/1237 +-2.8541,49.16497,2456,8,16,12,35,30,4.15,5.0,fr,6623,49,280395,1,1,Active Shallow Crust,240.0091,57.9971,0.0,08/16/2456 +-2.8541,49.16497,7409,11,5,6,15,24,4.25,5.0,fr,6624,148,280404,1,1,Active Shallow Crust,0.0,89.98969,0.0,11/05/7409 +-2.8541,49.16497,6539,9,30,19,55,33,5.35,5.0,fr,6625,130,280536,1,1,Active Shallow Crust,0.0,89.99004,0.0,09/30/6539 +5.74199,50.22671,5584,8,1,4,31,10,3.65,15.0,fr,6626,111,281299,1,1,Active Shallow Crust,0.0,89.98837,-90.0,08/01/5584 +5.74199,50.22671,8219,4,26,15,50,26,3.75,15.0,fr,6627,164,281308,1,1,Active Shallow Crust,240.008,58.01757,0.0,04/26/8219 +5.74199,50.22671,1145,12,23,19,46,12,3.85,5.0,fr,6628,22,281316,1,2,Active Shallow Crust,0.0,89.99087,0.0,12/23/1145 +5.74199,50.22671,4218,1,29,17,32,0,3.85,5.0,fr,6629,84,281316,1,2,Active Shallow Crust,0.0,89.99087,0.0,01/29/4218 +5.74199,50.22671,917,4,4,11,57,9,3.95,5.0,fr,6630,18,281328,1,1,Active Shallow Crust,0.0,89.99186,0.0,04/04/0917 +5.74199,50.22671,6019,9,30,23,4,37,3.95,15.0,fr,6631,120,281332,1,1,Active Shallow Crust,240.0203,58.00499,0.0,09/30/6019 +5.74199,50.22671,1063,2,17,21,34,12,3.95,27.5,fr,6632,21,281333,1,1,Active Shallow Crust,240.0203,58.00499,0.0,02/17/1063 +5.74199,50.22671,3931,3,28,0,47,37,4.25,5.0,fr,6633,78,281367,1,1,Active Shallow Crust,240.0086,57.99397,0.0,03/28/3931 +5.74199,50.22671,1133,10,6,7,39,53,4.45,15.0,fr,6634,22,281389,1,1,Active Shallow Crust,0.0,89.99084,0.0,10/06/1133 +5.74199,50.22671,5820,8,25,3,50,41,4.45,5.0,fr,6635,116,281394,1,1,Active Shallow Crust,0.0,89.99074,-90.0,08/25/5820 +5.74199,50.22671,8017,6,25,16,32,1,4.55,5.0,fr,6636,160,281400,1,1,Active Shallow Crust,0.0,89.9898,0.0,06/25/8017 +5.74199,50.22671,1758,8,27,2,54,43,4.65,5.0,fr,6637,35,281412,1,1,Active Shallow Crust,359.9991,89.99091,0.0,08/27/1758 +5.74199,50.22671,7690,7,4,21,59,0,5.05,5.0,fr,6638,153,281460,1,1,Active Shallow Crust,0.0,89.98967,0.0,07/04/7690 +5.74199,50.22671,201,5,7,17,3,57,6.45,15.0,fr,6639,4,281629,1,1,Active Shallow Crust,0.0,89.98991,0.0,05/07/0201 +0.01658,43.03551,1475,9,26,7,27,1,3.55,5.0,fr,6640,29,281760,1,19,Active Shallow Crust,0.0,89.99001,0.0,09/26/1475 +0.01658,43.03551,2948,4,1,20,27,31,3.55,5.0,fr,6641,58,281760,1,19,Active Shallow Crust,0.0,89.99001,0.0,04/01/2948 +0.01658,43.03551,6319,6,10,20,48,11,3.55,5.0,fr,6642,126,281760,1,19,Active Shallow Crust,0.0,89.99001,0.0,06/10/6319 +0.01658,43.03551,5114,2,13,0,43,39,3.55,5.0,fr,6643,102,281760,1,19,Active Shallow Crust,0.0,89.99001,0.0,02/13/5114 +0.01658,43.03551,6248,2,9,8,26,51,3.55,5.0,fr,6644,124,281760,1,19,Active Shallow Crust,0.0,89.99001,0.0,02/09/6248 +0.01658,43.03551,6928,2,14,1,53,38,3.55,5.0,fr,6645,138,281760,1,19,Active Shallow Crust,0.0,89.99001,0.0,02/14/6928 +0.01658,43.03551,1570,10,1,9,20,32,3.55,5.0,fr,6646,31,281760,1,19,Active Shallow Crust,0.0,89.99001,0.0,10/01/1570 +0.01658,43.03551,6209,7,30,13,34,35,3.55,5.0,fr,6647,124,281760,1,19,Active Shallow Crust,0.0,89.99001,0.0,07/30/6209 +0.01658,43.03551,7084,2,9,0,39,20,3.55,5.0,fr,6648,141,281760,1,19,Active Shallow Crust,0.0,89.99001,0.0,02/09/7084 +0.01658,43.03551,462,12,6,9,14,54,3.55,5.0,fr,6649,9,281760,1,19,Active Shallow Crust,0.0,89.99001,0.0,12/06/0462 +0.01658,43.03551,8196,2,10,7,9,38,3.55,5.0,fr,6650,163,281760,1,19,Active Shallow Crust,0.0,89.99001,0.0,02/10/8196 +0.01658,43.03551,7744,9,11,2,19,4,3.55,5.0,fr,6651,154,281760,1,19,Active Shallow Crust,0.0,89.99001,0.0,09/11/7744 +0.01658,43.03551,6324,7,7,12,11,15,3.55,5.0,fr,6652,126,281760,1,19,Active Shallow Crust,0.0,89.99001,0.0,07/07/6324 +0.01658,43.03551,5058,11,20,2,22,13,3.55,5.0,fr,6653,101,281760,1,19,Active Shallow Crust,0.0,89.99001,0.0,11/20/5058 +0.01658,43.03551,704,3,25,6,15,53,3.55,5.0,fr,6654,14,281760,1,19,Active Shallow Crust,0.0,89.99001,0.0,03/25/0704 +0.01658,43.03551,6924,3,28,22,14,11,3.55,5.0,fr,6655,138,281760,1,19,Active Shallow Crust,0.0,89.99001,0.0,03/28/6924 +0.01658,43.03551,9527,7,22,22,37,34,3.55,5.0,fr,6656,190,281760,1,19,Active Shallow Crust,0.0,89.99001,0.0,07/22/9527 +0.01658,43.03551,4565,5,12,10,56,2,3.55,5.0,fr,6657,91,281760,1,19,Active Shallow Crust,0.0,89.99001,0.0,05/12/4565 +0.01658,43.03551,3549,10,22,13,54,19,3.55,5.0,fr,6658,70,281760,1,19,Active Shallow Crust,0.0,89.99001,0.0,10/22/3549 +0.01658,43.03551,3205,6,12,6,40,36,3.55,15.0,fr,6659,64,281761,1,6,Active Shallow Crust,0.0,89.99001,0.0,06/12/3205 +0.01658,43.03551,726,12,14,18,38,8,3.55,15.0,fr,6660,14,281761,1,6,Active Shallow Crust,0.0,89.99001,0.0,12/14/0726 +0.01658,43.03551,1337,8,10,14,31,7,3.55,15.0,fr,6661,26,281761,1,6,Active Shallow Crust,0.0,89.99001,0.0,08/10/1337 +0.01658,43.03551,7917,9,16,7,33,58,3.55,15.0,fr,6662,158,281761,1,6,Active Shallow Crust,0.0,89.99001,0.0,09/16/7917 +0.01658,43.03551,5996,1,22,0,34,16,3.55,15.0,fr,6663,119,281761,1,6,Active Shallow Crust,0.0,89.99001,0.0,01/22/5996 +0.01658,43.03551,3968,3,4,2,7,55,3.55,15.0,fr,6664,79,281761,1,6,Active Shallow Crust,0.0,89.99001,0.0,03/04/3968 +0.01658,43.03551,740,11,29,7,46,31,3.55,5.0,fr,6665,14,281763,1,3,Active Shallow Crust,240.0119,57.99811,0.0,11/29/0740 +0.01658,43.03551,3572,7,23,12,7,27,3.55,5.0,fr,6666,71,281763,1,3,Active Shallow Crust,240.0119,57.99811,0.0,07/23/3572 +0.01658,43.03551,6477,6,14,17,49,38,3.55,5.0,fr,6667,129,281763,1,3,Active Shallow Crust,240.0119,57.99811,0.0,06/14/6477 +0.01658,43.03551,4765,7,2,6,56,12,3.55,27.5,fr,6668,95,281765,1,1,Active Shallow Crust,240.0119,57.99801,0.0,07/02/4765 +0.01658,43.03551,8976,8,2,19,38,37,3.55,5.0,fr,6669,179,281766,1,1,Active Shallow Crust,0.0,89.99001,-90.0,08/02/8976 +0.01658,43.03551,3456,6,29,5,34,44,3.55,15.0,fr,6670,69,281767,1,2,Active Shallow Crust,0.0,89.99001,-90.0,06/29/3456 +0.01658,43.03551,8597,3,11,7,5,14,3.55,15.0,fr,6671,171,281767,1,2,Active Shallow Crust,0.0,89.99001,-90.0,03/11/8597 +0.01658,43.03551,3212,2,11,3,54,42,3.55,27.5,fr,6672,64,281768,1,2,Active Shallow Crust,0.0,89.99001,-90.0,02/11/3212 +0.01658,43.03551,3239,12,6,22,26,53,3.55,27.5,fr,6673,64,281768,1,2,Active Shallow Crust,0.0,89.99001,-90.0,12/06/3239 +0.01658,43.03551,6243,7,25,13,19,27,3.55,5.0,fr,6674,124,281769,1,2,Active Shallow Crust,128.8965,89.99371,0.0,07/25/6243 +0.01658,43.03551,2869,12,3,18,19,21,3.55,5.0,fr,6675,57,281769,1,2,Active Shallow Crust,128.8965,89.99371,0.0,12/03/2869 +0.01658,43.03551,7628,12,23,8,16,1,3.55,15.0,fr,6676,152,281770,1,1,Active Shallow Crust,128.8965,89.99371,0.0,12/23/7628 +0.01658,43.03551,5373,12,9,12,7,10,3.65,5.0,fr,6677,107,281772,1,14,Active Shallow Crust,0.0,89.98999,0.0,12/09/5373 +0.01658,43.03551,6310,11,28,11,3,53,3.65,5.0,fr,6678,126,281772,1,14,Active Shallow Crust,0.0,89.98999,0.0,11/28/6310 +0.01658,43.03551,7047,1,25,1,43,40,3.65,5.0,fr,6679,140,281772,1,14,Active Shallow Crust,0.0,89.98999,0.0,01/25/7047 +0.01658,43.03551,2973,3,3,5,6,55,3.65,5.0,fr,6680,59,281772,1,14,Active Shallow Crust,0.0,89.98999,0.0,03/03/2973 +0.01658,43.03551,4755,12,1,20,38,54,3.65,5.0,fr,6681,95,281772,1,14,Active Shallow Crust,0.0,89.98999,0.0,12/01/4755 +0.01658,43.03551,7809,11,2,19,0,29,3.65,5.0,fr,6682,156,281772,1,14,Active Shallow Crust,0.0,89.98999,0.0,11/02/7809 +0.01658,43.03551,2629,4,15,17,20,19,3.65,5.0,fr,6683,52,281772,1,14,Active Shallow Crust,0.0,89.98999,0.0,04/15/2629 +0.01658,43.03551,2977,1,11,8,49,45,3.65,5.0,fr,6684,59,281772,1,14,Active Shallow Crust,0.0,89.98999,0.0,01/11/2977 +0.01658,43.03551,7382,5,8,14,54,8,3.65,5.0,fr,6685,147,281772,1,14,Active Shallow Crust,0.0,89.98999,0.0,05/08/7382 +0.01658,43.03551,8872,10,16,20,34,38,3.65,5.0,fr,6686,177,281772,1,14,Active Shallow Crust,0.0,89.98999,0.0,10/16/8872 +0.01658,43.03551,3731,3,23,0,16,57,3.65,5.0,fr,6687,74,281772,1,14,Active Shallow Crust,0.0,89.98999,0.0,03/23/3731 +0.01658,43.03551,6273,2,17,20,10,1,3.65,5.0,fr,6688,125,281772,1,14,Active Shallow Crust,0.0,89.98999,0.0,02/17/6273 +0.01658,43.03551,8895,3,3,6,33,34,3.65,5.0,fr,6689,177,281772,1,14,Active Shallow Crust,0.0,89.98999,0.0,03/03/8895 +0.01658,43.03551,9363,8,8,2,58,8,3.65,5.0,fr,6690,187,281772,1,14,Active Shallow Crust,0.0,89.98999,0.0,08/08/9363 +0.01658,43.03551,9060,6,7,22,35,56,3.65,15.0,fr,6691,181,281773,1,3,Active Shallow Crust,0.0,89.98999,0.0,06/07/9060 +0.01658,43.03551,5341,7,21,21,0,48,3.65,15.0,fr,6692,106,281773,1,3,Active Shallow Crust,0.0,89.98999,0.0,07/21/5341 +0.01658,43.03551,6655,12,3,6,54,41,3.65,15.0,fr,6693,133,281773,1,3,Active Shallow Crust,0.0,89.98999,0.0,12/03/6655 +0.01658,43.03551,5114,6,7,12,41,13,3.65,27.5,fr,6694,102,281774,1,2,Active Shallow Crust,0.0,89.98999,0.0,06/07/5114 +0.01658,43.03551,4516,6,5,8,22,13,3.65,27.5,fr,6695,90,281774,1,2,Active Shallow Crust,0.0,89.98999,0.0,06/05/4516 +0.01658,43.03551,7186,12,1,1,55,0,3.65,5.0,fr,6696,143,281775,1,7,Active Shallow Crust,240.0007,58.01283,0.0,12/01/7186 +0.01658,43.03551,9412,3,5,11,46,11,3.65,5.0,fr,6697,188,281775,1,7,Active Shallow Crust,240.0007,58.01283,0.0,03/05/9412 +0.01658,43.03551,9193,12,3,1,9,34,3.65,5.0,fr,6698,183,281775,1,7,Active Shallow Crust,240.0007,58.01283,0.0,12/03/9193 +0.01658,43.03551,6268,8,18,12,15,56,3.65,5.0,fr,6699,125,281775,1,7,Active Shallow Crust,240.0007,58.01283,0.0,08/18/6268 +0.01658,43.03551,605,12,29,0,1,49,3.65,5.0,fr,6700,12,281775,1,7,Active Shallow Crust,240.0007,58.01283,0.0,12/29/0605 +0.01658,43.03551,7786,7,19,17,56,24,3.65,5.0,fr,6701,155,281775,1,7,Active Shallow Crust,240.0007,58.01283,0.0,07/19/7786 +0.01658,43.03551,7985,7,10,2,7,6,3.65,5.0,fr,6702,159,281775,1,7,Active Shallow Crust,240.0007,58.01283,0.0,07/10/7985 +0.01658,43.03551,3271,6,4,6,33,44,3.65,15.0,fr,6703,65,281779,1,1,Active Shallow Crust,0.0,89.99001,-90.0,06/04/3271 +0.01658,43.03551,7779,5,30,2,31,38,3.65,27.5,fr,6704,155,281780,1,1,Active Shallow Crust,0.0,89.99001,-90.0,05/30/7779 +0.01658,43.03551,268,10,13,14,35,34,3.65,5.0,fr,6705,5,281781,1,2,Active Shallow Crust,128.9007,89.96351,0.0,10/13/0268 +0.01658,43.03551,691,8,29,11,43,10,3.65,5.0,fr,6706,13,281781,1,2,Active Shallow Crust,128.9007,89.96351,0.0,08/29/0691 +0.01658,43.03551,5365,5,1,10,4,6,3.75,5.0,fr,6707,107,281784,1,12,Active Shallow Crust,0.0,89.99001,0.0,05/01/5365 +0.01658,43.03551,6032,9,4,12,14,46,3.75,5.0,fr,6708,120,281784,1,12,Active Shallow Crust,0.0,89.99001,0.0,09/04/6032 +0.01658,43.03551,607,9,9,23,9,22,3.75,5.0,fr,6709,12,281784,1,12,Active Shallow Crust,0.0,89.99001,0.0,09/09/0607 +0.01658,43.03551,8562,1,17,2,42,59,3.75,5.0,fr,6710,171,281784,1,12,Active Shallow Crust,0.0,89.99001,0.0,01/17/8562 +0.01658,43.03551,5471,6,11,17,41,23,3.75,5.0,fr,6711,109,281784,1,12,Active Shallow Crust,0.0,89.99001,0.0,06/11/5471 +0.01658,43.03551,3227,7,7,14,50,46,3.75,5.0,fr,6712,64,281784,1,12,Active Shallow Crust,0.0,89.99001,0.0,07/07/3227 +0.01658,43.03551,5105,3,24,9,11,0,3.75,5.0,fr,6713,102,281784,1,12,Active Shallow Crust,0.0,89.99001,0.0,03/24/5105 +0.01658,43.03551,7408,7,25,19,3,54,3.75,5.0,fr,6714,148,281784,1,12,Active Shallow Crust,0.0,89.99001,0.0,07/25/7408 +0.01658,43.03551,9063,11,7,3,37,35,3.75,5.0,fr,6715,181,281784,1,12,Active Shallow Crust,0.0,89.99001,0.0,11/07/9063 +0.01658,43.03551,6126,11,13,4,54,42,3.75,5.0,fr,6716,122,281784,1,12,Active Shallow Crust,0.0,89.99001,0.0,11/13/6126 +0.01658,43.03551,674,7,25,11,31,9,3.75,5.0,fr,6717,13,281784,1,12,Active Shallow Crust,0.0,89.99001,0.0,07/25/0674 +0.01658,43.03551,7827,11,26,20,19,12,3.75,5.0,fr,6718,156,281784,1,12,Active Shallow Crust,0.0,89.99001,0.0,11/26/7827 +0.01658,43.03551,5450,2,19,18,8,57,3.75,15.0,fr,6719,108,281785,1,6,Active Shallow Crust,0.0,89.99001,0.0,02/19/5450 +0.01658,43.03551,2177,7,17,15,58,30,3.75,15.0,fr,6720,43,281785,1,6,Active Shallow Crust,0.0,89.99001,0.0,07/17/2177 +0.01658,43.03551,1266,1,18,16,7,54,3.75,15.0,fr,6721,25,281785,1,6,Active Shallow Crust,0.0,89.99001,0.0,01/18/1266 +0.01658,43.03551,1654,5,30,7,12,42,3.75,15.0,fr,6722,33,281785,1,6,Active Shallow Crust,0.0,89.99001,0.0,05/30/1654 +0.01658,43.03551,1009,9,26,1,9,10,3.75,15.0,fr,6723,20,281785,1,6,Active Shallow Crust,0.0,89.99001,0.0,09/26/1009 +0.01658,43.03551,9970,7,13,15,54,31,3.75,15.0,fr,6724,199,281785,1,6,Active Shallow Crust,0.0,89.99001,0.0,07/13/9970 +0.01658,43.03551,5686,7,17,14,58,22,3.75,27.5,fr,6725,113,281786,1,2,Active Shallow Crust,0.0,89.99001,0.0,07/17/5686 +0.01658,43.03551,7388,11,18,10,50,30,3.75,27.5,fr,6726,147,281786,1,2,Active Shallow Crust,0.0,89.99001,0.0,11/18/7388 +0.01658,43.03551,3370,12,25,4,29,34,3.75,15.0,fr,6727,67,281788,1,1,Active Shallow Crust,240.008,58.01751,0.0,12/25/3370 +0.01658,43.03551,3005,2,21,1,59,58,3.75,5.0,fr,6728,60,281790,1,1,Active Shallow Crust,0.0,89.99001,-90.0,02/21/3005 +0.01658,43.03551,6175,8,20,21,48,29,3.85,5.0,fr,6729,123,281796,1,5,Active Shallow Crust,0.0,89.98999,0.0,08/20/6175 +0.01658,43.03551,5074,3,2,6,26,13,3.85,5.0,fr,6730,101,281796,1,5,Active Shallow Crust,0.0,89.98999,0.0,03/02/5074 +0.01658,43.03551,6633,8,19,6,40,54,3.85,5.0,fr,6731,132,281796,1,5,Active Shallow Crust,0.0,89.98999,0.0,08/19/6633 +0.01658,43.03551,2989,3,15,0,54,27,3.85,5.0,fr,6732,59,281796,1,5,Active Shallow Crust,0.0,89.98999,0.0,03/15/2989 +0.01658,43.03551,9315,10,9,16,40,57,3.85,5.0,fr,6733,186,281796,1,5,Active Shallow Crust,0.0,89.98999,0.0,10/09/9315 +0.01658,43.03551,305,7,30,23,5,13,3.85,15.0,fr,6734,6,281797,1,3,Active Shallow Crust,0.0,89.98999,0.0,07/30/0305 +0.01658,43.03551,6738,2,14,15,56,20,3.85,15.0,fr,6735,134,281797,1,3,Active Shallow Crust,0.0,89.98999,0.0,02/14/6738 +0.01658,43.03551,8730,4,19,16,17,47,3.85,15.0,fr,6736,174,281797,1,3,Active Shallow Crust,0.0,89.98999,0.0,04/19/8730 +0.01658,43.03551,7233,11,8,10,26,44,3.85,27.5,fr,6737,144,281798,1,1,Active Shallow Crust,0.0,89.98999,0.0,11/08/7233 +0.01658,43.03551,9576,6,12,13,3,18,3.85,5.0,fr,6738,191,281799,1,1,Active Shallow Crust,240.0104,57.99773,0.0,06/12/9576 +0.01658,43.03551,5461,11,17,12,58,45,3.85,15.0,fr,6739,109,281800,1,1,Active Shallow Crust,240.0104,57.99773,0.0,11/17/5461 +0.01658,43.03551,3108,9,12,2,39,49,3.85,5.0,fr,6740,62,281805,1,1,Active Shallow Crust,128.896,89.99372,0.0,09/12/3108 +0.01658,43.03551,1764,5,15,19,38,15,3.95,5.0,fr,6741,35,281808,1,7,Active Shallow Crust,360.0,89.99001,0.0,05/15/1764 +0.01658,43.03551,9563,9,5,7,46,38,3.95,5.0,fr,6742,191,281808,1,7,Active Shallow Crust,360.0,89.99001,0.0,09/05/9563 +0.01658,43.03551,3746,5,2,11,48,34,3.95,5.0,fr,6743,74,281808,1,7,Active Shallow Crust,360.0,89.99001,0.0,05/02/3746 +0.01658,43.03551,3719,10,20,10,26,2,3.95,5.0,fr,6744,74,281808,1,7,Active Shallow Crust,360.0,89.99001,0.0,10/20/3719 +0.01658,43.03551,6278,8,18,11,35,4,3.95,5.0,fr,6745,125,281808,1,7,Active Shallow Crust,360.0,89.99001,0.0,08/18/6278 +0.01658,43.03551,8141,1,3,14,53,36,3.95,5.0,fr,6746,162,281808,1,7,Active Shallow Crust,360.0,89.99001,0.0,01/03/8141 +0.01658,43.03551,8922,7,5,20,3,25,3.95,5.0,fr,6747,178,281808,1,7,Active Shallow Crust,360.0,89.99001,0.0,07/05/8922 +0.01658,43.03551,7812,4,2,3,13,27,3.95,15.0,fr,6748,156,281809,1,3,Active Shallow Crust,360.0,89.99001,0.0,04/02/7812 +0.01658,43.03551,610,5,9,9,21,27,3.95,15.0,fr,6749,12,281809,1,3,Active Shallow Crust,360.0,89.99001,0.0,05/09/0610 +0.01658,43.03551,7094,6,24,15,32,12,3.95,15.0,fr,6750,141,281809,1,3,Active Shallow Crust,360.0,89.99001,0.0,06/24/7094 +0.01658,43.03551,6985,5,5,8,11,49,3.95,27.5,fr,6751,139,281810,1,1,Active Shallow Crust,360.0,89.99001,0.0,05/05/6985 +0.01658,43.03551,6617,12,27,16,8,54,3.95,5.0,fr,6752,132,281811,1,3,Active Shallow Crust,240.0193,58.00489,0.0,12/27/6617 +0.01658,43.03551,9864,1,17,21,29,25,3.95,5.0,fr,6753,197,281811,1,3,Active Shallow Crust,240.0193,58.00489,0.0,01/17/9864 +0.01658,43.03551,5383,12,21,12,18,39,3.95,5.0,fr,6754,107,281811,1,3,Active Shallow Crust,240.0193,58.00489,0.0,12/21/5383 +0.01658,43.03551,7964,9,20,7,20,33,3.95,5.0,fr,6755,159,281814,1,1,Active Shallow Crust,0.0,89.99001,-90.0,09/20/7964 +0.01658,43.03551,5576,2,15,22,2,3,3.95,5.0,fr,6756,111,281817,1,2,Active Shallow Crust,128.9008,89.99372,0.0,02/15/5576 +0.01658,43.03551,5174,9,30,7,55,21,3.95,5.0,fr,6757,103,281817,1,2,Active Shallow Crust,128.9008,89.99372,0.0,09/30/5174 +0.01658,43.03551,3089,10,13,2,4,32,3.95,15.0,fr,6758,61,281818,1,1,Active Shallow Crust,128.9008,89.99372,0.0,10/13/3089 +0.01658,43.03551,3618,2,9,20,54,49,4.05,5.0,fr,6759,72,281820,1,12,Active Shallow Crust,0.0,89.98999,0.0,02/09/3618 +0.01658,43.03551,5686,9,2,12,10,6,4.05,5.0,fr,6760,113,281820,1,12,Active Shallow Crust,0.0,89.98999,0.0,09/02/5686 +0.01658,43.03551,9988,6,23,16,43,8,4.05,5.0,fr,6761,199,281820,1,12,Active Shallow Crust,0.0,89.98999,0.0,06/23/9988 +0.01658,43.03551,7378,11,2,15,18,44,4.05,5.0,fr,6762,147,281820,1,12,Active Shallow Crust,0.0,89.98999,0.0,11/02/7378 +0.01658,43.03551,7117,9,29,23,2,20,4.05,5.0,fr,6763,142,281820,1,12,Active Shallow Crust,0.0,89.98999,0.0,09/29/7117 +0.01658,43.03551,9998,6,29,1,13,51,4.05,5.0,fr,6764,199,281820,1,12,Active Shallow Crust,0.0,89.98999,0.0,06/29/9998 +0.01658,43.03551,7284,6,11,9,58,41,4.05,5.0,fr,6765,145,281820,1,12,Active Shallow Crust,0.0,89.98999,0.0,06/11/7284 +0.01658,43.03551,6544,11,28,2,33,16,4.05,5.0,fr,6766,130,281820,1,12,Active Shallow Crust,0.0,89.98999,0.0,11/28/6544 +0.01658,43.03551,9351,2,3,1,13,50,4.05,5.0,fr,6767,187,281820,1,12,Active Shallow Crust,0.0,89.98999,0.0,02/03/9351 +0.01658,43.03551,6049,8,30,0,29,33,4.05,5.0,fr,6768,120,281820,1,12,Active Shallow Crust,0.0,89.98999,0.0,08/30/6049 +0.01658,43.03551,1784,3,3,1,46,44,4.05,5.0,fr,6769,35,281820,1,12,Active Shallow Crust,0.0,89.98999,0.0,03/03/1784 +0.01658,43.03551,3985,7,10,1,9,44,4.05,5.0,fr,6770,79,281820,1,12,Active Shallow Crust,0.0,89.98999,0.0,07/10/3985 +0.01658,43.03551,3018,5,24,5,52,43,4.05,15.0,fr,6771,60,281821,1,1,Active Shallow Crust,0.0,89.98999,0.0,05/24/3018 +0.01658,43.03551,6202,3,2,13,5,4,4.05,27.5,fr,6772,124,281822,1,1,Active Shallow Crust,0.0,89.98999,0.0,03/02/6202 +0.01658,43.03551,2370,1,1,19,17,44,4.05,5.0,fr,6773,47,281829,1,1,Active Shallow Crust,128.891,89.99372,0.0,01/01/2370 +0.01658,43.03551,8435,8,6,9,1,38,4.15,5.0,fr,6774,168,281832,1,2,Active Shallow Crust,0.0,89.99,0.0,08/06/8435 +0.01658,43.03551,6820,3,6,19,29,37,4.15,5.0,fr,6775,136,281832,1,2,Active Shallow Crust,0.0,89.99,0.0,03/06/6820 +0.01658,43.03551,5447,2,11,0,53,39,4.15,15.0,fr,6776,108,281833,1,3,Active Shallow Crust,0.0,89.99,0.0,02/11/5447 +0.01658,43.03551,5660,1,16,12,3,9,4.15,15.0,fr,6777,113,281833,1,3,Active Shallow Crust,0.0,89.99,0.0,01/16/5660 +0.01658,43.03551,4153,4,1,15,3,24,4.15,15.0,fr,6778,83,281833,1,3,Active Shallow Crust,0.0,89.99,0.0,04/01/4153 +0.01658,43.03551,7536,8,5,1,4,9,4.15,15.0,fr,6779,150,281836,1,1,Active Shallow Crust,240.0079,57.99723,0.0,08/05/7536 +0.01658,43.03551,7402,3,25,13,15,35,4.15,5.0,fr,6780,148,281838,1,1,Active Shallow Crust,0.0,89.99,-90.0,03/25/7402 +0.01658,43.03551,4095,1,26,18,39,43,4.15,5.0,fr,6781,81,281841,1,1,Active Shallow Crust,128.8981,89.99372,0.0,01/26/4095 +0.01658,43.03551,2266,4,27,11,11,20,4.15,15.0,fr,6782,45,281842,1,1,Active Shallow Crust,128.8981,89.99372,0.0,04/27/2266 +0.01658,43.03551,4316,9,10,15,47,12,4.25,5.0,fr,6783,86,281844,1,4,Active Shallow Crust,0.0,89.98999,0.0,09/10/4316 +0.01658,43.03551,9251,1,21,8,3,18,4.25,5.0,fr,6784,185,281844,1,4,Active Shallow Crust,0.0,89.98999,0.0,01/21/9251 +0.01658,43.03551,9275,12,28,10,12,20,4.25,5.0,fr,6785,185,281844,1,4,Active Shallow Crust,0.0,89.98999,0.0,12/28/9275 +0.01658,43.03551,2977,11,23,20,42,38,4.25,5.0,fr,6786,59,281844,1,4,Active Shallow Crust,0.0,89.98999,0.0,11/23/2977 +0.01658,43.03551,3786,2,6,11,28,29,4.25,5.0,fr,6787,75,281847,1,1,Active Shallow Crust,240.0069,57.99395,0.0,02/06/3786 +0.01658,43.03551,6416,9,11,3,28,57,4.25,15.0,fr,6788,128,281848,1,1,Active Shallow Crust,240.0069,57.99395,0.0,09/11/6416 +0.01658,43.03551,9485,2,26,18,28,11,4.25,5.0,fr,6789,189,281850,1,1,Active Shallow Crust,0.0,89.99,-90.0,02/26/9485 +0.01658,43.03551,3247,3,16,9,37,41,4.25,15.0,fr,6790,64,281851,1,1,Active Shallow Crust,0.0,89.99,-90.0,03/16/3247 +0.01658,43.03551,332,7,20,14,8,55,4.25,27.5,fr,6791,6,281855,1,2,Active Shallow Crust,128.8949,89.98092,0.0,07/20/0332 +0.01658,43.03551,4221,3,13,16,12,37,4.25,27.5,fr,6792,84,281855,1,2,Active Shallow Crust,128.8949,89.98092,0.0,03/13/4221 +0.01658,43.03551,3240,9,12,11,58,3,4.35,5.0,fr,6793,64,281856,1,3,Active Shallow Crust,360.0,89.99001,0.0,09/12/3240 +0.01658,43.03551,9802,6,18,0,0,23,4.35,5.0,fr,6794,196,281856,1,3,Active Shallow Crust,360.0,89.99001,0.0,06/18/9802 +0.01658,43.03551,6798,3,26,15,5,58,4.35,5.0,fr,6795,135,281856,1,3,Active Shallow Crust,360.0,89.99001,0.0,03/26/6798 +0.01658,43.03551,5023,9,13,7,50,45,4.35,15.0,fr,6796,100,281857,1,1,Active Shallow Crust,360.0,89.99001,0.0,09/13/5023 +0.01658,43.03551,675,1,5,18,10,39,4.45,5.0,fr,6797,13,281868,1,3,Active Shallow Crust,0.0,89.99,0.0,01/05/0675 +0.01658,43.03551,8938,10,28,8,5,48,4.45,5.0,fr,6798,178,281868,1,3,Active Shallow Crust,0.0,89.99,0.0,10/28/8938 +0.01658,43.03551,3524,3,28,23,5,44,4.45,5.0,fr,6799,70,281868,1,3,Active Shallow Crust,0.0,89.99,0.0,03/28/3524 +0.01658,43.03551,4228,1,30,10,2,30,4.45,5.0,fr,6800,84,281871,1,1,Active Shallow Crust,240.0044,57.99452,0.0,01/30/4228 +0.01658,43.03551,966,2,26,16,19,53,4.45,5.0,fr,6801,19,281877,1,1,Active Shallow Crust,128.8929,89.99372,0.0,02/26/0966 +0.01658,43.03551,3406,12,13,21,37,24,4.55,5.0,fr,6802,68,281880,1,1,Active Shallow Crust,360.0,89.99001,0.0,12/13/3406 +0.01658,43.03551,5430,8,25,8,36,18,4.65,5.0,fr,6803,108,281892,1,4,Active Shallow Crust,360.0,89.99001,0.0,08/25/5430 +0.01658,43.03551,4950,7,13,19,19,17,4.65,5.0,fr,6804,98,281892,1,4,Active Shallow Crust,360.0,89.99001,0.0,07/13/4950 +0.01658,43.03551,302,2,19,10,45,37,4.65,5.0,fr,6805,6,281892,1,4,Active Shallow Crust,360.0,89.99001,0.0,02/19/0302 +0.01658,43.03551,1184,2,19,8,58,17,4.65,5.0,fr,6806,23,281892,1,4,Active Shallow Crust,360.0,89.99001,0.0,02/19/1184 +0.01658,43.03551,9848,9,13,1,13,54,4.65,15.0,fr,6807,196,281893,1,1,Active Shallow Crust,360.0,89.99001,0.0,09/13/9848 +0.01658,43.03551,8321,6,28,8,44,23,4.65,27.5,fr,6808,166,281894,1,1,Active Shallow Crust,360.0,89.99001,0.0,06/28/8321 +0.01658,43.03551,1070,5,11,10,2,46,4.75,5.0,fr,6809,21,281904,1,2,Active Shallow Crust,0.0,89.99,0.0,05/11/1070 +0.01658,43.03551,412,10,16,0,47,59,4.75,5.0,fr,6810,8,281904,1,2,Active Shallow Crust,0.0,89.99,0.0,10/16/0412 +0.01658,43.03551,8046,6,23,19,43,4,4.75,15.0,fr,6811,160,281905,1,1,Active Shallow Crust,0.0,89.99,0.0,06/23/8046 +0.01658,43.03551,2919,9,14,4,45,26,4.75,5.0,fr,6812,58,281907,1,1,Active Shallow Crust,240.0063,58.00427,0.0,09/14/2919 +0.01658,43.03551,1490,11,10,17,1,22,4.75,27.5,fr,6813,29,281912,1,1,Active Shallow Crust,0.0,89.99,-90.0,11/10/1490 +0.01658,43.03551,2821,7,2,21,7,4,4.85,5.0,fr,6814,56,281916,1,1,Active Shallow Crust,360.0,89.99,0.0,07/02/2821 +0.01658,43.03551,4400,10,8,7,8,8,4.85,5.0,fr,6815,87,281925,1,1,Active Shallow Crust,128.8937,89.98901,0.0,10/08/4400 +0.01658,43.03551,3160,10,31,17,13,6,4.95,5.0,fr,6816,63,281928,1,2,Active Shallow Crust,360.0,89.99001,0.0,10/31/3160 +0.01658,43.03551,5941,9,23,8,42,0,4.95,5.0,fr,6817,118,281928,1,2,Active Shallow Crust,360.0,89.99001,0.0,09/23/5941 +0.01658,43.03551,6458,4,8,1,35,46,4.95,15.0,fr,6818,129,281929,1,2,Active Shallow Crust,360.0,89.99001,0.0,04/08/6458 +0.01658,43.03551,2351,2,26,16,3,11,4.95,15.0,fr,6819,47,281929,1,2,Active Shallow Crust,360.0,89.99001,0.0,02/26/2351 +0.01658,43.03551,3155,12,22,10,20,43,4.95,5.0,fr,6820,63,281931,1,1,Active Shallow Crust,240.0104,58.00419,0.0,12/22/3155 +0.01658,43.03551,350,8,21,13,19,36,4.95,15.0,fr,6821,6,281932,1,1,Active Shallow Crust,240.0104,58.00419,0.0,08/21/0350 +0.01658,43.03551,9189,4,27,5,57,44,4.95,5.0,fr,6822,183,281937,1,1,Active Shallow Crust,128.8911,89.98979,0.0,04/27/9189 +0.01658,43.03551,1635,9,20,4,23,26,5.15,5.0,fr,6823,32,281952,1,1,Active Shallow Crust,360.0,89.99,0.0,09/20/1635 +0.01658,43.03551,5159,4,14,11,26,26,5.15,27.5,fr,6824,103,281954,1,1,Active Shallow Crust,360.0,89.99,0.0,04/14/5159 +0.01658,43.03551,4005,8,24,11,28,37,5.35,5.0,fr,6825,80,281982,1,1,Active Shallow Crust,360.0,89.99001,-90.0,08/24/4005 +0.01658,43.03551,2833,9,14,9,10,58,5.55,5.0,fr,6826,56,282000,1,1,Active Shallow Crust,360.0,89.99,0.0,09/14/2833 +0.01658,43.03551,6112,9,18,2,46,41,5.55,5.0,fr,6827,122,282003,1,1,Active Shallow Crust,240.0261,58.00194,0.0,09/18/6112 +0.01658,43.03551,3818,10,15,18,1,7,5.75,15.0,fr,6828,76,282025,1,1,Active Shallow Crust,360.0,89.99,0.0,10/15/3818 +0.01658,43.03551,5633,4,22,23,4,54,5.95,5.0,fr,6829,112,282048,1,1,Active Shallow Crust,360.0,89.99,0.0,04/22/5633 +0.0165739,43.0355,3056,1,30,19,41,15,6.55,9.527304,fr,6830,61,282129,1,1,Active Shallow Crust,128.8376,89.9901,0.0,01/30/3056 +7.6617,47.55872,5276,3,28,16,27,20,3.55,5.0,fr,6831,105,282240,1,14,Active Shallow Crust,0.0,89.99319,0.0,03/28/5276 +7.6617,47.55872,3909,9,16,14,46,12,3.55,5.0,fr,6832,78,282240,1,14,Active Shallow Crust,0.0,89.99319,0.0,09/16/3909 +7.6617,47.55872,9622,4,14,3,25,23,3.55,5.0,fr,6833,192,282240,1,14,Active Shallow Crust,0.0,89.99319,0.0,04/14/9622 +7.6617,47.55872,6996,5,10,5,23,40,3.55,5.0,fr,6834,139,282240,1,14,Active Shallow Crust,0.0,89.99319,0.0,05/10/6996 +7.6617,47.55872,6356,7,22,1,15,33,3.55,5.0,fr,6835,127,282240,1,14,Active Shallow Crust,0.0,89.99319,0.0,07/22/6356 +7.6617,47.55872,4124,5,21,11,29,16,3.55,5.0,fr,6836,82,282240,1,14,Active Shallow Crust,0.0,89.99319,0.0,05/21/4124 +7.6617,47.55872,7572,4,2,15,29,24,3.55,5.0,fr,6837,151,282240,1,14,Active Shallow Crust,0.0,89.99319,0.0,04/02/7572 +7.6617,47.55872,9278,2,5,6,35,48,3.55,5.0,fr,6838,185,282240,1,14,Active Shallow Crust,0.0,89.99319,0.0,02/05/9278 +7.6617,47.55872,6921,2,3,16,48,11,3.55,5.0,fr,6839,138,282240,1,14,Active Shallow Crust,0.0,89.99319,0.0,02/03/6921 +7.6617,47.55872,7510,4,23,13,20,24,3.55,5.0,fr,6840,150,282240,1,14,Active Shallow Crust,0.0,89.99319,0.0,04/23/7510 +7.6617,47.55872,7745,10,7,8,45,23,3.55,5.0,fr,6841,154,282240,1,14,Active Shallow Crust,0.0,89.99319,0.0,10/07/7745 +7.6617,47.55872,8346,10,24,12,52,49,3.55,5.0,fr,6842,166,282240,1,14,Active Shallow Crust,0.0,89.99319,0.0,10/24/8346 +7.6617,47.55872,4740,9,27,17,30,21,3.55,5.0,fr,6843,94,282240,1,14,Active Shallow Crust,0.0,89.99319,0.0,09/27/4740 +7.6617,47.55872,1788,8,12,11,40,55,3.55,5.0,fr,6844,35,282240,1,14,Active Shallow Crust,0.0,89.99319,0.0,08/12/1788 +7.6617,47.55872,3838,3,30,12,50,44,3.55,15.0,fr,6845,76,282241,1,11,Active Shallow Crust,0.0,89.99319,0.0,03/30/3838 +7.6617,47.55872,9551,9,10,15,34,28,3.55,15.0,fr,6846,191,282241,1,11,Active Shallow Crust,0.0,89.99319,0.0,09/10/9551 +7.6617,47.55872,7985,5,11,16,35,31,3.55,15.0,fr,6847,159,282241,1,11,Active Shallow Crust,0.0,89.99319,0.0,05/11/7985 +7.6617,47.55872,9318,11,30,19,20,35,3.55,15.0,fr,6848,186,282241,1,11,Active Shallow Crust,0.0,89.99319,0.0,11/30/9318 +7.6617,47.55872,5292,3,25,20,40,42,3.55,15.0,fr,6849,105,282241,1,11,Active Shallow Crust,0.0,89.99319,0.0,03/25/5292 +7.6617,47.55872,6176,5,17,23,51,32,3.55,15.0,fr,6850,123,282241,1,11,Active Shallow Crust,0.0,89.99319,0.0,05/17/6176 +7.6617,47.55872,2880,10,4,10,43,34,3.55,15.0,fr,6851,57,282241,1,11,Active Shallow Crust,0.0,89.99319,0.0,10/04/2880 +7.6617,47.55872,2532,4,6,4,56,39,3.55,15.0,fr,6852,50,282241,1,11,Active Shallow Crust,0.0,89.99319,0.0,04/06/2532 +7.6617,47.55872,4442,8,7,14,45,28,3.55,15.0,fr,6853,88,282241,1,11,Active Shallow Crust,0.0,89.99319,0.0,08/07/4442 +7.6617,47.55872,5406,12,27,0,38,23,3.55,15.0,fr,6854,108,282241,1,11,Active Shallow Crust,0.0,89.99319,0.0,12/27/5406 +7.6617,47.55872,5064,5,5,16,4,53,3.55,15.0,fr,6855,101,282241,1,11,Active Shallow Crust,0.0,89.99319,0.0,05/05/5064 +7.6617,47.55872,3001,10,6,17,1,3,3.55,27.5,fr,6856,60,282242,1,4,Active Shallow Crust,0.0,89.99319,0.0,10/06/3001 +7.6617,47.55872,7976,12,17,8,41,12,3.55,27.5,fr,6857,159,282242,1,4,Active Shallow Crust,0.0,89.99319,0.0,12/17/7976 +7.6617,47.55872,4746,8,14,16,41,13,3.55,27.5,fr,6858,94,282242,1,4,Active Shallow Crust,0.0,89.99319,0.0,08/14/4746 +7.6617,47.55872,2446,9,11,2,21,51,3.55,27.5,fr,6859,48,282242,1,4,Active Shallow Crust,0.0,89.99319,0.0,09/11/2446 +7.6617,47.55872,6747,4,5,7,54,21,3.55,5.0,fr,6860,134,282243,1,2,Active Shallow Crust,240.0126,57.99782,0.0,04/05/6747 +7.6617,47.55872,6159,7,2,10,43,46,3.55,5.0,fr,6861,123,282243,1,2,Active Shallow Crust,240.0126,57.99782,0.0,07/02/6159 +7.6617,47.55872,1818,2,14,16,27,29,3.55,15.0,fr,6862,36,282244,1,1,Active Shallow Crust,240.0126,57.99782,0.0,02/14/1818 +7.6617,47.55872,8133,6,27,15,26,1,3.55,27.5,fr,6863,162,282245,1,1,Active Shallow Crust,240.0126,57.99772,0.0,06/27/8133 +7.6617,47.55872,4429,8,16,19,30,52,3.55,5.0,fr,6864,88,282249,1,1,Active Shallow Crust,128.8957,89.99319,0.0,08/16/4429 +7.6617,47.55872,4378,12,2,23,51,41,3.65,5.0,fr,6865,87,282252,1,15,Active Shallow Crust,0.0,89.98787,0.0,12/02/4378 +7.6617,47.55872,2123,7,17,13,6,36,3.65,5.0,fr,6866,42,282252,1,15,Active Shallow Crust,0.0,89.98787,0.0,07/17/2123 +7.6617,47.55872,7170,7,26,21,18,29,3.65,5.0,fr,6867,143,282252,1,15,Active Shallow Crust,0.0,89.98787,0.0,07/26/7170 +7.6617,47.55872,6532,8,16,21,37,40,3.65,5.0,fr,6868,130,282252,1,15,Active Shallow Crust,0.0,89.98787,0.0,08/16/6532 +7.6617,47.55872,7262,7,9,16,39,45,3.65,5.0,fr,6869,145,282252,1,15,Active Shallow Crust,0.0,89.98787,0.0,07/09/7262 +7.6617,47.55872,8856,5,20,6,0,38,3.65,5.0,fr,6870,177,282252,1,15,Active Shallow Crust,0.0,89.98787,0.0,05/20/8856 +7.6617,47.55872,7450,7,20,10,53,26,3.65,5.0,fr,6871,148,282252,1,15,Active Shallow Crust,0.0,89.98787,0.0,07/20/7450 +7.6617,47.55872,3342,10,9,16,40,53,3.65,5.0,fr,6872,66,282252,1,15,Active Shallow Crust,0.0,89.98787,0.0,10/09/3342 +7.6617,47.55872,3160,3,5,12,6,2,3.65,5.0,fr,6873,63,282252,1,15,Active Shallow Crust,0.0,89.98787,0.0,03/05/3160 +7.6617,47.55872,5437,5,4,18,20,25,3.65,5.0,fr,6874,108,282252,1,15,Active Shallow Crust,0.0,89.98787,0.0,05/04/5437 +7.6617,47.55872,4342,7,7,16,28,42,3.65,5.0,fr,6875,86,282252,1,15,Active Shallow Crust,0.0,89.98787,0.0,07/07/4342 +7.6617,47.55872,6104,9,29,10,54,12,3.65,5.0,fr,6876,122,282252,1,15,Active Shallow Crust,0.0,89.98787,0.0,09/29/6104 +7.6617,47.55872,7358,2,5,23,59,28,3.65,5.0,fr,6877,147,282252,1,15,Active Shallow Crust,0.0,89.98787,0.0,02/05/7358 +7.6617,47.55872,4665,4,24,3,37,23,3.65,5.0,fr,6878,93,282252,1,15,Active Shallow Crust,0.0,89.98787,0.0,04/24/4665 +7.6617,47.55872,1242,12,3,15,12,20,3.65,5.0,fr,6879,24,282252,1,15,Active Shallow Crust,0.0,89.98787,0.0,12/03/1242 +7.6617,47.55872,8908,7,30,20,10,26,3.65,15.0,fr,6880,178,282253,1,6,Active Shallow Crust,0.0,89.98787,0.0,07/30/8908 +7.6617,47.55872,4480,1,8,0,40,45,3.65,15.0,fr,6881,89,282253,1,6,Active Shallow Crust,0.0,89.98787,0.0,01/08/4480 +7.6617,47.55872,2190,2,16,12,53,10,3.65,15.0,fr,6882,43,282253,1,6,Active Shallow Crust,0.0,89.98787,0.0,02/16/2190 +7.6617,47.55872,3192,9,27,16,37,29,3.65,15.0,fr,6883,63,282253,1,6,Active Shallow Crust,0.0,89.98787,0.0,09/27/3192 +7.6617,47.55872,9638,10,6,14,39,2,3.65,15.0,fr,6884,192,282253,1,6,Active Shallow Crust,0.0,89.98787,0.0,10/06/9638 +7.6617,47.55872,608,7,30,9,34,53,3.65,15.0,fr,6885,12,282253,1,6,Active Shallow Crust,0.0,89.98787,0.0,07/30/0608 +7.6617,47.55872,9605,12,29,0,50,34,3.65,5.0,fr,6886,192,282255,1,1,Active Shallow Crust,240.0007,58.01309,0.0,12/29/9605 +7.6617,47.55872,8741,10,9,14,23,9,3.65,5.0,fr,6887,174,282258,1,2,Active Shallow Crust,0.0,89.98773,-90.0,10/09/8741 +7.6617,47.55872,9782,7,22,10,55,22,3.65,5.0,fr,6888,195,282258,1,2,Active Shallow Crust,0.0,89.98773,-90.0,07/22/9782 +7.6617,47.55872,506,6,20,12,37,39,3.65,5.0,fr,6889,10,282261,1,3,Active Shallow Crust,128.9002,89.96355,0.0,06/20/0506 +7.6617,47.55872,1283,3,18,2,33,34,3.65,5.0,fr,6890,25,282261,1,3,Active Shallow Crust,128.9002,89.96355,0.0,03/18/1283 +7.6617,47.55872,9605,10,11,21,38,7,3.65,5.0,fr,6891,192,282261,1,3,Active Shallow Crust,128.9002,89.96355,0.0,10/11/9605 +7.6617,47.55872,144,3,19,20,28,28,3.65,15.0,fr,6892,2,282262,1,2,Active Shallow Crust,128.9002,89.96355,0.0,03/19/0144 +7.6617,47.55872,3074,2,7,15,23,46,3.65,15.0,fr,6893,61,282262,1,2,Active Shallow Crust,128.9002,89.96355,0.0,02/07/3074 +7.6617,47.55872,3440,11,10,13,54,55,3.75,5.0,fr,6894,68,282264,1,10,Active Shallow Crust,0.0,89.98919,0.0,11/10/3440 +7.6617,47.55872,4429,6,5,10,34,47,3.75,5.0,fr,6895,88,282264,1,10,Active Shallow Crust,0.0,89.98919,0.0,06/05/4429 +7.6617,47.55872,2961,4,7,9,25,47,3.75,5.0,fr,6896,59,282264,1,10,Active Shallow Crust,0.0,89.98919,0.0,04/07/2961 +7.6617,47.55872,4741,5,23,12,22,37,3.75,5.0,fr,6897,94,282264,1,10,Active Shallow Crust,0.0,89.98919,0.0,05/23/4741 +7.6617,47.55872,795,3,6,6,43,36,3.75,5.0,fr,6898,15,282264,1,10,Active Shallow Crust,0.0,89.98919,0.0,03/06/0795 +7.6617,47.55872,6280,6,18,16,1,25,3.75,5.0,fr,6899,125,282264,1,10,Active Shallow Crust,0.0,89.98919,0.0,06/18/6280 +7.6617,47.55872,2938,11,21,23,48,11,3.75,5.0,fr,6900,58,282264,1,10,Active Shallow Crust,0.0,89.98919,0.0,11/21/2938 +7.6617,47.55872,6082,12,15,15,5,18,3.75,5.0,fr,6901,121,282264,1,10,Active Shallow Crust,0.0,89.98919,0.0,12/15/6082 +7.6617,47.55872,2413,3,27,4,57,26,3.75,5.0,fr,6902,48,282264,1,10,Active Shallow Crust,0.0,89.98919,0.0,03/27/2413 +7.6617,47.55872,5752,8,31,5,19,52,3.75,5.0,fr,6903,115,282264,1,10,Active Shallow Crust,0.0,89.98919,0.0,08/31/5752 +7.6617,47.55872,5113,9,10,1,32,45,3.75,15.0,fr,6904,102,282265,1,3,Active Shallow Crust,0.0,89.98919,0.0,09/10/5113 +7.6617,47.55872,8430,4,6,2,49,20,3.75,15.0,fr,6905,168,282265,1,3,Active Shallow Crust,0.0,89.98919,0.0,04/06/8430 +7.6617,47.55872,4691,9,24,20,33,27,3.75,15.0,fr,6906,93,282265,1,3,Active Shallow Crust,0.0,89.98919,0.0,09/24/4691 +7.6617,47.55872,9439,12,1,9,34,55,3.75,27.5,fr,6907,188,282266,1,1,Active Shallow Crust,0.0,89.98919,0.0,12/01/9439 +7.6617,47.55872,4607,7,28,23,7,6,3.75,5.0,fr,6908,92,282267,1,4,Active Shallow Crust,240.0086,58.01752,0.0,07/28/4607 +7.6617,47.55872,4631,3,28,15,18,57,3.75,5.0,fr,6909,92,282267,1,4,Active Shallow Crust,240.0086,58.01752,0.0,03/28/4631 +7.6617,47.55872,3,7,28,0,2,10,3.75,5.0,fr,6910,0,282267,1,4,Active Shallow Crust,240.0086,58.01752,0.0,07/28/0003 +7.6617,47.55872,8111,1,10,19,28,57,3.75,5.0,fr,6911,162,282267,1,4,Active Shallow Crust,240.0086,58.01752,0.0,01/10/8111 +7.6617,47.55872,1536,3,23,20,42,26,3.75,15.0,fr,6912,30,282268,1,1,Active Shallow Crust,240.0086,58.01752,0.0,03/23/1536 +7.6617,47.55872,365,6,15,21,42,13,3.75,5.0,fr,6913,7,282270,1,1,Active Shallow Crust,0.0,89.98907,-90.0,06/15/0365 +7.6617,47.55872,7511,4,14,2,51,5,3.75,5.0,fr,6914,150,282273,1,1,Active Shallow Crust,128.8969,89.96751,0.0,04/14/7511 +7.6617,47.55872,3381,7,16,3,58,35,3.85,5.0,fr,6915,67,282276,1,8,Active Shallow Crust,0.0,89.99036,0.0,07/16/3381 +7.6617,47.55872,2680,3,5,18,54,48,3.85,5.0,fr,6916,53,282276,1,8,Active Shallow Crust,0.0,89.99036,0.0,03/05/2680 +7.6617,47.55872,137,1,14,3,1,6,3.85,5.0,fr,6917,2,282276,1,8,Active Shallow Crust,0.0,89.99036,0.0,01/14/0137 +7.6617,47.55872,7806,9,16,6,23,43,3.85,5.0,fr,6918,156,282276,1,8,Active Shallow Crust,0.0,89.99036,0.0,09/16/7806 +7.6617,47.55872,6658,6,14,8,18,34,3.85,5.0,fr,6919,133,282276,1,8,Active Shallow Crust,0.0,89.99036,0.0,06/14/6658 +7.6617,47.55872,2761,8,7,20,16,57,3.85,5.0,fr,6920,55,282276,1,8,Active Shallow Crust,0.0,89.99036,0.0,08/07/2761 +7.6617,47.55872,2889,3,31,21,56,40,3.85,5.0,fr,6921,57,282276,1,8,Active Shallow Crust,0.0,89.99036,0.0,03/31/2889 +7.6617,47.55872,201,8,19,19,26,8,3.85,5.0,fr,6922,4,282276,1,8,Active Shallow Crust,0.0,89.99036,0.0,08/19/0201 +7.6617,47.55872,5744,2,4,6,15,43,3.85,15.0,fr,6923,114,282277,1,6,Active Shallow Crust,0.0,89.99036,0.0,02/04/5744 +7.6617,47.55872,7377,12,18,2,17,14,3.85,15.0,fr,6924,147,282277,1,6,Active Shallow Crust,0.0,89.99036,0.0,12/18/7377 +7.6617,47.55872,2811,4,28,4,52,3,3.85,15.0,fr,6925,56,282277,1,6,Active Shallow Crust,0.0,89.99036,0.0,04/28/2811 +7.6617,47.55872,992,3,22,3,18,41,3.85,15.0,fr,6926,19,282277,1,6,Active Shallow Crust,0.0,89.99036,0.0,03/22/0992 +7.6617,47.55872,2276,10,21,10,40,55,3.85,15.0,fr,6927,45,282277,1,6,Active Shallow Crust,0.0,89.99036,0.0,10/21/2276 +7.6617,47.55872,1665,1,15,9,47,31,3.85,15.0,fr,6928,33,282277,1,6,Active Shallow Crust,0.0,89.99036,0.0,01/15/1665 +7.6617,47.55872,57,7,17,13,33,56,3.85,27.5,fr,6929,1,282278,1,4,Active Shallow Crust,0.0,89.99036,0.0,07/17/0057 +7.6617,47.55872,8508,11,1,20,52,8,3.85,27.5,fr,6930,170,282278,1,4,Active Shallow Crust,0.0,89.99036,0.0,11/01/8508 +7.6617,47.55872,7417,10,24,16,42,12,3.85,27.5,fr,6931,148,282278,1,4,Active Shallow Crust,0.0,89.99036,0.0,10/24/7417 +7.6617,47.55872,3180,2,15,1,36,13,3.85,27.5,fr,6932,63,282278,1,4,Active Shallow Crust,0.0,89.99036,0.0,02/15/3180 +7.6617,47.55872,1852,4,16,9,30,29,3.85,5.0,fr,6933,37,282279,1,1,Active Shallow Crust,240.0109,57.99707,0.0,04/16/1852 +7.6617,47.55872,6593,9,24,6,19,0,3.85,27.5,fr,6934,131,282281,1,1,Active Shallow Crust,240.0109,57.99707,0.0,09/24/6593 +7.6617,47.55872,1673,6,22,2,51,48,3.85,5.0,fr,6935,33,282282,1,1,Active Shallow Crust,0.0,89.99025,-90.0,06/22/1673 +7.6617,47.55872,2282,8,11,0,41,6,3.85,5.0,fr,6936,45,282285,1,1,Active Shallow Crust,128.8962,89.99277,0.0,08/11/2282 +7.6617,47.55872,4399,2,9,8,6,27,3.95,5.0,fr,6937,87,282288,1,6,Active Shallow Crust,0.0,89.99141,0.0,02/09/4399 +7.6617,47.55872,2899,7,17,3,12,40,3.95,5.0,fr,6938,57,282288,1,6,Active Shallow Crust,0.0,89.99141,0.0,07/17/2899 +7.6617,47.55872,6427,6,26,2,43,11,3.95,5.0,fr,6939,128,282288,1,6,Active Shallow Crust,0.0,89.99141,0.0,06/26/6427 +7.6617,47.55872,3253,9,15,4,50,56,3.95,5.0,fr,6940,65,282288,1,6,Active Shallow Crust,0.0,89.99141,0.0,09/15/3253 +7.6617,47.55872,8091,7,8,16,37,42,3.95,5.0,fr,6941,161,282288,1,6,Active Shallow Crust,0.0,89.99141,0.0,07/08/8091 +7.6617,47.55872,2529,1,18,16,6,33,3.95,5.0,fr,6942,50,282288,1,6,Active Shallow Crust,0.0,89.99141,0.0,01/18/2529 +7.6617,47.55872,5306,8,8,12,10,36,3.95,15.0,fr,6943,106,282289,1,4,Active Shallow Crust,0.0,89.99141,0.0,08/08/5306 +7.6617,47.55872,8910,11,3,0,44,17,3.95,15.0,fr,6944,178,282289,1,4,Active Shallow Crust,0.0,89.99141,0.0,11/03/8910 +7.6617,47.55872,4638,10,22,12,43,51,3.95,15.0,fr,6945,92,282289,1,4,Active Shallow Crust,0.0,89.99141,0.0,10/22/4638 +7.6617,47.55872,9600,3,23,6,49,23,3.95,15.0,fr,6946,191,282289,1,4,Active Shallow Crust,0.0,89.99141,0.0,03/23/9600 +7.6617,47.55872,2527,2,19,11,26,3,3.95,27.5,fr,6947,50,282290,1,1,Active Shallow Crust,0.0,89.99141,0.0,02/19/2527 +7.6617,47.55872,2475,12,14,22,12,52,3.95,5.0,fr,6948,49,282291,1,6,Active Shallow Crust,240.0204,58.00517,0.0,12/14/2475 +7.6617,47.55872,8431,3,2,8,7,13,3.95,5.0,fr,6949,168,282291,1,6,Active Shallow Crust,240.0204,58.00517,0.0,03/02/8431 +7.6617,47.55872,880,11,1,20,53,37,3.95,5.0,fr,6950,17,282291,1,6,Active Shallow Crust,240.0204,58.00517,0.0,11/01/0880 +7.6617,47.55872,9868,6,30,17,39,56,3.95,5.0,fr,6951,197,282291,1,6,Active Shallow Crust,240.0204,58.00517,0.0,06/30/9868 +7.6617,47.55872,6523,3,5,19,46,9,3.95,5.0,fr,6952,130,282291,1,6,Active Shallow Crust,240.0204,58.00517,0.0,03/05/6523 +7.6617,47.55872,1706,10,17,20,3,19,3.95,5.0,fr,6953,34,282291,1,6,Active Shallow Crust,240.0204,58.00517,0.0,10/17/1706 +7.6617,47.55872,8894,5,1,12,15,32,3.95,15.0,fr,6954,177,282292,1,1,Active Shallow Crust,240.0204,58.00517,0.0,05/01/8894 +7.6617,47.55872,9696,6,21,0,47,41,3.95,27.5,fr,6955,193,282293,1,1,Active Shallow Crust,240.0204,58.00517,0.0,06/21/9696 +7.6617,47.55872,1535,8,16,1,23,38,3.95,5.0,fr,6956,30,282294,1,2,Active Shallow Crust,0.0,89.99131,-90.0,08/16/1535 +7.6617,47.55872,3902,7,3,7,57,1,3.95,5.0,fr,6957,78,282294,1,2,Active Shallow Crust,0.0,89.99131,-90.0,07/03/3902 +7.6617,47.55872,5037,11,10,1,5,35,3.95,27.5,fr,6958,100,282296,1,1,Active Shallow Crust,0.0,89.99131,-90.0,11/10/5037 +7.6617,47.55872,5772,8,19,11,47,58,4.05,5.0,fr,6959,115,282300,1,7,Active Shallow Crust,0.0,89.98852,0.0,08/19/5772 +7.6617,47.55872,7479,3,11,23,7,15,4.05,5.0,fr,6960,149,282300,1,7,Active Shallow Crust,0.0,89.98852,0.0,03/11/7479 +7.6617,47.55872,4757,4,23,0,50,30,4.05,5.0,fr,6961,95,282300,1,7,Active Shallow Crust,0.0,89.98852,0.0,04/23/4757 +7.6617,47.55872,9317,6,3,8,36,43,4.05,5.0,fr,6962,186,282300,1,7,Active Shallow Crust,0.0,89.98852,0.0,06/03/9317 +7.6617,47.55872,6740,11,2,5,16,28,4.05,5.0,fr,6963,134,282300,1,7,Active Shallow Crust,0.0,89.98852,0.0,11/02/6740 +7.6617,47.55872,1163,7,3,17,28,35,4.05,5.0,fr,6964,23,282300,1,7,Active Shallow Crust,0.0,89.98852,0.0,07/03/1163 +7.6617,47.55872,9470,9,15,0,5,14,4.05,5.0,fr,6965,189,282300,1,7,Active Shallow Crust,0.0,89.98852,0.0,09/15/9470 +7.6617,47.55872,4979,1,27,5,28,25,4.05,15.0,fr,6966,99,282301,1,1,Active Shallow Crust,0.0,89.98852,0.0,01/27/4979 +7.6617,47.55872,6329,8,20,19,36,33,4.05,27.5,fr,6967,126,282302,1,1,Active Shallow Crust,0.0,89.98852,0.0,08/20/6329 +7.6617,47.55872,4716,8,9,15,53,51,4.05,5.0,fr,6968,94,282303,1,2,Active Shallow Crust,240.0063,58.00579,0.0,08/09/4716 +7.6617,47.55872,3290,6,15,23,14,41,4.05,5.0,fr,6969,65,282303,1,2,Active Shallow Crust,240.0063,58.00579,0.0,06/15/3290 +7.6617,47.55872,6002,4,28,23,2,51,4.05,5.0,fr,6970,120,282306,1,1,Active Shallow Crust,0.0,89.98839,-90.0,04/28/6002 +7.6617,47.55872,2764,3,2,1,42,21,4.05,5.0,fr,6971,55,282309,1,3,Active Shallow Crust,128.8901,89.99426,0.0,03/02/2764 +7.6617,47.55872,32,11,30,1,10,6,4.05,5.0,fr,6972,0,282309,1,3,Active Shallow Crust,128.8901,89.99426,0.0,11/30/0032 +7.6617,47.55872,294,3,6,19,36,4,4.05,5.0,fr,6973,5,282309,1,3,Active Shallow Crust,128.8901,89.99426,0.0,03/06/0294 +7.6617,47.55872,3468,6,5,21,59,57,4.15,5.0,fr,6974,69,282312,1,7,Active Shallow Crust,0.0,89.98977,0.0,06/05/3468 +7.6617,47.55872,4063,8,6,6,55,40,4.15,5.0,fr,6975,81,282312,1,7,Active Shallow Crust,0.0,89.98977,0.0,08/06/4063 +7.6617,47.55872,2984,7,5,15,13,58,4.15,5.0,fr,6976,59,282312,1,7,Active Shallow Crust,0.0,89.98977,0.0,07/05/2984 +7.6617,47.55872,2379,11,22,18,53,50,4.15,5.0,fr,6977,47,282312,1,7,Active Shallow Crust,0.0,89.98977,0.0,11/22/2379 +7.6617,47.55872,3529,1,12,6,19,29,4.15,5.0,fr,6978,70,282312,1,7,Active Shallow Crust,0.0,89.98977,0.0,01/12/3529 +7.6617,47.55872,7495,11,4,2,49,32,4.15,5.0,fr,6979,149,282312,1,7,Active Shallow Crust,0.0,89.98977,0.0,11/04/7495 +7.6617,47.55872,2431,6,24,17,16,44,4.15,5.0,fr,6980,48,282312,1,7,Active Shallow Crust,0.0,89.98977,0.0,06/24/2431 +7.6617,47.55872,1705,7,28,1,2,52,4.15,15.0,fr,6981,34,282313,1,4,Active Shallow Crust,0.0,89.98977,0.0,07/28/1705 +7.6617,47.55872,1263,12,25,8,32,20,4.15,15.0,fr,6982,25,282313,1,4,Active Shallow Crust,0.0,89.98977,0.0,12/25/1263 +7.6617,47.55872,7737,7,26,22,54,16,4.15,15.0,fr,6983,154,282313,1,4,Active Shallow Crust,0.0,89.98977,0.0,07/26/7737 +7.6617,47.55872,4721,9,23,4,34,29,4.15,15.0,fr,6984,94,282313,1,4,Active Shallow Crust,0.0,89.98977,0.0,09/23/4721 +7.6617,47.55872,6098,11,30,10,29,51,4.15,5.0,fr,6985,121,282315,1,1,Active Shallow Crust,240.0086,57.99728,0.0,11/30/6098 +7.6617,47.55872,8536,11,14,2,39,1,4.15,15.0,fr,6986,170,282316,1,1,Active Shallow Crust,240.0086,57.9973,0.0,11/14/8536 +7.6617,47.55872,1444,10,14,23,11,25,4.15,27.5,fr,6987,28,282320,1,1,Active Shallow Crust,0.0,89.98965,-90.0,10/14/1444 +7.6617,47.55872,6261,5,11,1,33,26,4.15,5.0,fr,6988,125,282321,1,2,Active Shallow Crust,128.8968,89.99489,0.0,05/11/6261 +7.6617,47.55872,5039,1,28,18,6,2,4.15,5.0,fr,6989,100,282321,1,2,Active Shallow Crust,128.8968,89.99489,0.0,01/28/5039 +7.6617,47.55872,8581,2,1,10,48,56,4.25,5.0,fr,6990,171,282324,1,6,Active Shallow Crust,0.0,89.99088,0.0,02/01/8581 +7.6617,47.55872,7709,4,21,20,28,47,4.25,5.0,fr,6991,154,282324,1,6,Active Shallow Crust,0.0,89.99088,0.0,04/21/7709 +7.6617,47.55872,9382,5,23,11,51,51,4.25,5.0,fr,6992,187,282324,1,6,Active Shallow Crust,0.0,89.99088,0.0,05/23/9382 +7.6617,47.55872,5152,9,5,14,41,2,4.25,5.0,fr,6993,103,282324,1,6,Active Shallow Crust,0.0,89.99088,0.0,09/05/5152 +7.6617,47.55872,7983,11,5,16,42,56,4.25,5.0,fr,6994,159,282324,1,6,Active Shallow Crust,0.0,89.99088,0.0,11/05/7983 +7.6617,47.55872,1310,1,12,21,55,40,4.25,5.0,fr,6995,26,282324,1,6,Active Shallow Crust,0.0,89.99088,0.0,01/12/1310 +7.6617,47.55872,8428,3,5,1,23,36,4.25,27.5,fr,6996,168,282326,1,2,Active Shallow Crust,0.0,89.99088,0.0,03/05/8428 +7.6617,47.55872,912,5,21,22,30,24,4.25,27.5,fr,6997,18,282326,1,2,Active Shallow Crust,0.0,89.99088,0.0,05/21/0912 +7.6617,47.55872,7857,3,13,22,50,17,4.25,5.0,fr,6998,157,282327,1,1,Active Shallow Crust,240.0074,57.99474,0.0,03/13/7857 +7.6617,47.55872,170,4,11,0,1,14,4.25,15.0,fr,6999,3,282331,1,1,Active Shallow Crust,0.0,89.99078,-90.0,04/11/0170 +7.6617,47.55872,7192,3,21,3,55,36,4.25,5.0,fr,7000,143,282333,1,2,Active Shallow Crust,128.8943,89.98099,0.0,03/21/7192 +7.6617,47.55872,9082,4,1,16,10,32,4.25,5.0,fr,7001,181,282333,1,2,Active Shallow Crust,128.8943,89.98099,0.0,04/01/9082 +7.6617,47.55872,2481,1,12,6,50,50,4.25,15.0,fr,7002,49,282334,1,1,Active Shallow Crust,128.8943,89.98099,0.0,01/12/2481 +7.6617,47.55872,4262,12,6,4,7,48,4.35,5.0,fr,7003,85,282336,1,4,Active Shallow Crust,0.0,89.98917,0.0,12/06/4262 +7.6617,47.55872,946,8,27,7,7,43,4.35,5.0,fr,7004,18,282336,1,4,Active Shallow Crust,0.0,89.98917,0.0,08/27/0946 +7.6617,47.55872,3145,4,11,0,4,55,4.35,5.0,fr,7005,62,282336,1,4,Active Shallow Crust,0.0,89.98917,0.0,04/11/3145 +7.6617,47.55872,7757,7,12,9,42,47,4.35,5.0,fr,7006,155,282336,1,4,Active Shallow Crust,0.0,89.98917,0.0,07/12/7757 +7.6617,47.55872,4271,2,6,3,45,16,4.35,27.5,fr,7007,85,282338,1,1,Active Shallow Crust,0.0,89.98917,0.0,02/06/4271 +7.6617,47.55872,3063,2,24,13,46,39,4.35,5.0,fr,7008,61,282339,1,1,Active Shallow Crust,240.0086,57.99572,0.0,02/24/3063 +7.6617,47.55872,8513,6,30,8,8,10,4.35,15.0,fr,7009,170,282343,1,1,Active Shallow Crust,0.0,89.98904,-90.0,06/30/8513 +7.6617,47.55872,4840,2,5,16,6,5,4.35,5.0,fr,7010,96,282345,1,2,Active Shallow Crust,128.8978,89.98257,0.0,02/05/4840 +7.6617,47.55872,1641,6,18,13,25,53,4.35,5.0,fr,7011,32,282345,1,2,Active Shallow Crust,128.8978,89.98257,0.0,06/18/1641 +7.6617,47.55872,9058,11,16,18,38,51,4.45,5.0,fr,7012,181,282348,1,5,Active Shallow Crust,0.0,89.99034,0.0,11/16/9058 +7.6617,47.55872,7692,2,13,1,41,14,4.45,5.0,fr,7013,153,282348,1,5,Active Shallow Crust,0.0,89.99034,0.0,02/13/7692 +7.6617,47.55872,3643,4,7,13,20,40,4.45,5.0,fr,7014,72,282348,1,5,Active Shallow Crust,0.0,89.99034,0.0,04/07/3643 +7.6617,47.55872,3737,7,14,8,19,47,4.45,5.0,fr,7015,74,282348,1,5,Active Shallow Crust,0.0,89.99034,0.0,07/14/3737 +7.6617,47.55872,5324,8,1,4,35,4,4.45,5.0,fr,7016,106,282348,1,5,Active Shallow Crust,0.0,89.99034,0.0,08/01/5324 +7.6617,47.55872,5373,3,21,14,5,33,4.45,27.5,fr,7017,107,282350,1,1,Active Shallow Crust,0.0,89.99034,0.0,03/21/5373 +7.6617,47.55872,336,9,28,5,15,38,4.45,5.0,fr,7018,6,282351,1,1,Active Shallow Crust,240.0058,57.99459,0.0,09/28/0336 +7.6617,47.55872,1340,2,21,15,34,11,4.45,15.0,fr,7019,26,282358,1,1,Active Shallow Crust,128.8921,89.99397,0.0,02/21/1340 +7.6617,47.55872,8180,8,12,10,33,42,4.55,5.0,fr,7020,163,282360,1,4,Active Shallow Crust,0.0,89.98924,0.0,08/12/8180 +7.6617,47.55872,3280,8,3,23,45,48,4.55,5.0,fr,7021,65,282360,1,4,Active Shallow Crust,0.0,89.98924,0.0,08/03/3280 +7.6617,47.55872,6091,4,18,8,0,39,4.55,5.0,fr,7022,121,282360,1,4,Active Shallow Crust,0.0,89.98924,0.0,04/18/6091 +7.6617,47.55872,4928,1,11,11,24,32,4.55,5.0,fr,7023,98,282360,1,4,Active Shallow Crust,0.0,89.98924,0.0,01/11/4928 +7.6617,47.55872,407,1,20,7,38,43,4.55,15.0,fr,7024,8,282361,1,2,Active Shallow Crust,0.0,89.98924,0.0,01/20/0407 +7.6617,47.55872,8516,2,7,23,2,5,4.55,15.0,fr,7025,170,282361,1,2,Active Shallow Crust,0.0,89.98924,0.0,02/07/8516 +7.6617,47.55872,4898,12,10,16,51,16,4.55,15.0,fr,7026,97,282367,1,1,Active Shallow Crust,0.0,89.98911,-90.0,12/10/4898 +7.6617,47.55872,6508,9,19,11,2,25,4.55,15.0,fr,7027,130,282370,1,1,Active Shallow Crust,128.8937,89.9857,0.0,09/19/6508 +7.6617,47.55872,7614,2,13,0,51,21,4.55,27.5,fr,7028,152,282371,1,1,Active Shallow Crust,128.8937,89.9857,0.0,02/13/7614 +7.6617,47.55872,2183,2,14,7,4,25,4.65,15.0,fr,7029,43,282373,1,2,Active Shallow Crust,0.0,89.99041,0.0,02/14/2183 +7.6617,47.55872,2519,6,15,0,20,41,4.65,15.0,fr,7030,50,282373,1,2,Active Shallow Crust,0.0,89.99041,0.0,06/15/2519 +7.6617,47.55872,6214,7,6,12,4,34,4.65,15.0,fr,7031,124,282379,1,1,Active Shallow Crust,0.0,89.9903,-90.0,07/06/6214 +7.6617,47.55872,17,7,7,4,17,12,4.75,5.0,fr,7032,0,282384,1,1,Active Shallow Crust,0.0,89.98975,0.0,07/07/0017 +7.6617,47.55872,5834,9,13,19,37,39,4.75,5.0,fr,7033,116,282387,1,1,Active Shallow Crust,240.0077,58.00449,0.0,09/13/5834 +7.6617,47.55872,8023,6,16,4,59,52,4.85,5.0,fr,7034,160,282396,1,4,Active Shallow Crust,0.0,89.98933,0.0,06/16/8023 +7.6617,47.55872,5776,8,15,7,19,48,4.85,5.0,fr,7035,115,282396,1,4,Active Shallow Crust,0.0,89.98933,0.0,08/15/5776 +7.6617,47.55872,8827,11,18,10,57,4,4.85,5.0,fr,7036,176,282396,1,4,Active Shallow Crust,0.0,89.98933,0.0,11/18/8827 +7.6617,47.55872,6563,6,3,23,15,21,4.85,5.0,fr,7037,131,282396,1,4,Active Shallow Crust,0.0,89.98933,0.0,06/03/6563 +7.6617,47.55872,1714,2,16,19,31,38,4.85,27.5,fr,7038,34,282407,1,1,Active Shallow Crust,128.892,89.98911,0.0,02/16/1714 +7.6617,47.55872,5745,1,25,7,12,34,4.95,5.0,fr,7039,114,282408,1,1,Active Shallow Crust,0.0,89.99049,0.0,01/25/5745 +7.6617,47.55872,3754,5,1,9,9,5,5.15,5.0,fr,7040,75,282432,1,1,Active Shallow Crust,0.0,89.99029,0.0,05/01/3754 +7.6617,47.55872,8197,9,24,4,2,45,5.25,15.0,fr,7041,163,282445,1,1,Active Shallow Crust,0.0,89.99039,0.0,09/24/8197 +7.6617,47.55872,4709,8,1,19,12,8,5.45,15.0,fr,7042,94,282469,1,1,Active Shallow Crust,0.0,89.99007,0.0,08/01/4709 +7.6617,47.55872,4257,4,19,22,29,22,5.45,5.0,fr,7043,85,282471,1,1,Active Shallow Crust,240.0299,57.99867,0.0,04/19/4257 +7.6617,47.55872,1331,5,6,2,35,48,5.85,5.0,fr,7044,26,282516,1,1,Active Shallow Crust,0.0,89.98988,0.0,05/06/1331 +7.661292,47.5592,3750,5,11,4,34,40,6.15,5.09789,fr,7045,74,282555,1,1,Active Shallow Crust,240.067,58.00037,0.0,05/11/3750 +7.661729,47.55872,230,6,24,14,42,44,7.15,17.5,fr,7046,4,282672,1,1,Active Shallow Crust,359.9999,89.99001,0.0,06/24/0230 +-4.28925,47.12664,5148,3,7,13,4,28,3.95,5.0,fr,7047,102,282771,1,1,Active Shallow Crust,240.0197,58.00458,0.0,03/07/5148 +-5.93829,48.0438,9346,5,3,20,41,47,3.75,5.0,fr,7048,186,283704,1,1,Active Shallow Crust,0.0,89.98929,0.0,05/03/9346 +-5.93829,48.0438,7539,2,28,4,19,10,4.75,15.0,fr,7049,150,283825,1,1,Active Shallow Crust,0.0,89.98984,0.0,02/28/7539 +-2.06129,47.47819,948,10,6,1,12,36,3.55,5.0,fr,7050,18,284160,1,1,Active Shallow Crust,0.0,89.98978,0.0,10/06/0948 +-2.06129,47.47819,3258,1,1,6,22,48,3.55,27.5,fr,7051,65,284162,1,2,Active Shallow Crust,0.0,89.98978,0.0,01/01/3258 +-2.06129,47.47819,5520,11,8,6,50,57,3.55,27.5,fr,7052,110,284162,1,2,Active Shallow Crust,0.0,89.98978,0.0,11/08/5520 +-2.06129,47.47819,7000,1,25,23,42,15,3.55,5.0,fr,7053,139,284163,1,1,Active Shallow Crust,240.0123,57.99805,0.0,01/25/7000 +-2.06129,47.47819,8677,10,25,13,50,54,3.55,5.0,fr,7054,173,284169,1,1,Active Shallow Crust,128.8965,89.99319,0.0,10/25/8677 +-2.06129,47.47819,5792,7,14,22,10,4,3.65,5.0,fr,7055,115,284178,1,1,Active Shallow Crust,0.0,89.99078,-90.0,07/14/5792 +-2.06129,47.47819,9842,2,4,14,53,18,3.75,15.0,fr,7056,196,284185,1,1,Active Shallow Crust,0.0,89.98917,0.0,02/04/9842 +-2.06129,47.47819,998,4,4,16,25,28,3.75,5.0,fr,7057,19,284190,1,1,Active Shallow Crust,0.0,89.98904,-90.0,04/04/0998 +-2.06129,47.47819,2541,5,23,8,7,29,3.75,15.0,fr,7058,50,284194,1,1,Active Shallow Crust,128.8963,89.96725,0.0,05/23/2541 +-2.06129,47.47819,6884,7,23,3,30,9,3.85,5.0,fr,7059,137,284196,1,1,Active Shallow Crust,0.0,89.99035,0.0,07/23/6884 +-2.06129,47.47819,8542,2,16,15,31,30,3.85,15.0,fr,7060,170,284197,1,2,Active Shallow Crust,0.0,89.99035,0.0,02/16/8542 +-2.06129,47.47819,6722,6,11,13,11,11,3.85,15.0,fr,7061,134,284197,1,2,Active Shallow Crust,0.0,89.99035,0.0,06/11/6722 +-2.06129,47.47819,1308,1,22,0,9,18,4.25,5.0,fr,7062,26,284244,1,1,Active Shallow Crust,0.0,89.98934,0.0,01/22/1308 +-2.06129,47.47819,5680,7,7,1,20,28,4.95,15.0,fr,7063,113,284329,1,1,Active Shallow Crust,0.0,89.9898,0.0,07/07/5680 +-2.06129,47.47819,4499,9,30,12,33,20,5.05,5.0,fr,7064,89,284340,1,1,Active Shallow Crust,359.9997,89.9903,0.0,09/30/4499 +-2.06129,47.47819,1692,5,1,7,52,6,5.15,5.0,fr,7065,33,284352,1,1,Active Shallow Crust,0.0,89.98974,0.0,05/01/1692 +-2.06129,47.47819,6129,5,9,23,16,25,5.45,5.0,fr,7066,122,284388,1,1,Active Shallow Crust,0.0,89.99005,0.0,05/09/6129 +0.18457,48.58096,8887,4,30,8,56,5,3.55,5.0,fr,7067,177,284640,1,5,Active Shallow Crust,0.0,89.98999,0.0,04/30/8887 +0.18457,48.58096,8861,3,29,9,28,44,3.55,5.0,fr,7068,177,284640,1,5,Active Shallow Crust,0.0,89.98999,0.0,03/29/8861 +0.18457,48.58096,2503,9,6,23,1,29,3.55,5.0,fr,7069,50,284640,1,5,Active Shallow Crust,0.0,89.98999,0.0,09/06/2503 +0.18457,48.58096,9807,5,24,19,18,20,3.55,5.0,fr,7070,196,284640,1,5,Active Shallow Crust,0.0,89.98999,0.0,05/24/9807 +0.18457,48.58096,4868,8,31,9,25,18,3.55,5.0,fr,7071,97,284640,1,5,Active Shallow Crust,0.0,89.98999,0.0,08/31/4868 +0.18457,48.58096,2914,9,13,22,40,28,3.55,5.0,fr,7072,58,284643,1,1,Active Shallow Crust,240.0124,57.99821,0.0,09/13/2914 +0.18457,48.58096,8061,5,21,15,11,19,3.75,15.0,fr,7073,161,284674,1,1,Active Shallow Crust,128.8964,89.96735,0.0,05/21/8061 +0.18457,48.58096,8330,10,12,8,30,47,3.85,5.0,fr,7074,166,284676,1,2,Active Shallow Crust,0.0,89.98997,0.0,10/12/8330 +0.18457,48.58096,2459,9,23,5,53,42,3.85,5.0,fr,7075,49,284676,1,2,Active Shallow Crust,0.0,89.98997,0.0,09/23/2459 +0.18457,48.58096,6359,2,19,21,31,41,3.95,5.0,fr,7076,127,284688,1,2,Active Shallow Crust,0.0,89.99001,0.0,02/19/6359 +0.18457,48.58096,8541,9,26,11,29,14,3.95,5.0,fr,7077,170,284688,1,2,Active Shallow Crust,0.0,89.99001,0.0,09/26/8541 +0.18457,48.58096,6821,11,17,16,38,59,4.65,5.0,fr,7078,136,284772,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/17/6821 +1.01569,44.61827,4363,4,23,9,16,6,3.55,27.5,fr,7079,87,285122,1,1,Active Shallow Crust,0.0,89.98923,0.0,04/23/4363 +1.01569,44.61827,7,6,21,10,35,1,3.65,5.0,fr,7080,0,285141,1,1,Active Shallow Crust,128.901,89.96349,0.0,06/21/0007 +1.01569,44.61827,7893,6,1,8,6,56,3.75,15.0,fr,7081,157,285145,1,1,Active Shallow Crust,0.0,89.99002,0.0,06/01/7893 +1.01569,44.61827,8113,6,9,17,44,49,3.85,5.0,fr,7082,162,285156,1,1,Active Shallow Crust,0.0,89.98984,0.0,06/09/8113 +1.01569,44.61827,5245,2,25,2,52,58,3.85,27.5,fr,7083,104,285158,1,1,Active Shallow Crust,0.0,89.98984,0.0,02/25/5245 +1.01569,44.61827,4729,7,22,4,34,56,3.85,5.0,fr,7084,94,285162,1,1,Active Shallow Crust,0.0,89.98972,-90.0,07/22/4729 +1.01569,44.61827,9544,6,27,4,16,47,3.95,5.0,fr,7085,190,285168,1,1,Active Shallow Crust,0.0,89.98981,0.0,06/27/9544 +1.01569,44.61827,7461,11,25,4,24,35,4.05,5.0,fr,7086,149,285189,1,1,Active Shallow Crust,128.8906,89.99395,0.0,11/25/7461 +1.01569,44.61827,8856,1,23,10,37,9,4.55,5.0,fr,7087,177,285246,1,1,Active Shallow Crust,0.0,89.99024,-90.0,01/23/8856 +8.75136,48.82298,2360,2,8,3,20,36,3.55,5.0,fr,7088,47,285603,1,1,Active Shallow Crust,240.0122,57.99988,0.0,02/08/2360 +8.75136,48.82298,4220,7,27,4,2,53,3.65,5.0,fr,7089,84,285612,1,2,Active Shallow Crust,0.0,89.98817,0.0,07/27/4220 +8.75136,48.82298,4740,1,2,18,47,42,3.65,5.0,fr,7090,94,285612,1,2,Active Shallow Crust,0.0,89.98817,0.0,01/02/4740 +8.75136,48.82298,8467,1,18,10,57,15,3.95,15.0,fr,7091,169,285655,1,1,Active Shallow Crust,0.0,89.99152,-90.0,01/18/8467 +8.75136,48.82298,6179,1,4,11,50,8,4.25,5.0,fr,7092,123,285693,1,1,Active Shallow Crust,128.8931,89.98103,0.0,01/04/6179 +8.75136,48.82298,9144,8,1,16,1,48,4.65,5.0,fr,7093,182,285732,1,1,Active Shallow Crust,0.0,89.98877,0.0,08/01/9144 +8.75136,48.82298,2911,4,24,14,38,11,4.75,27.5,fr,7094,58,285746,1,1,Active Shallow Crust,0.0,89.98999,0.0,04/24/2911 +8.75136,48.82298,1826,4,21,22,45,45,4.85,5.0,fr,7095,36,285762,1,1,Active Shallow Crust,0.0,89.99097,-90.0,04/21/1826 +8.718024,48.86096,8773,2,12,1,35,27,6.95,12.80532,fr,7096,175,286011,1,1,Active Shallow Crust,240.1755,57.99985,0.0,02/12/8773 +-4.37928,47.80273,4497,11,16,23,3,14,3.55,27.5,fr,7097,89,286085,1,1,Active Shallow Crust,240.0137,57.99761,0.0,11/16/4497 +-4.37928,47.80273,8596,11,30,0,7,4,3.55,15.0,fr,7098,171,286090,1,1,Active Shallow Crust,128.8966,89.99323,0.0,11/30/8596 +-4.37928,47.80273,7908,11,23,5,12,4,3.55,27.5,fr,7099,158,286091,1,1,Active Shallow Crust,128.8966,89.99323,0.0,11/23/7908 +-4.37928,47.80273,6225,1,31,0,25,59,3.65,15.0,fr,7100,124,286093,1,1,Active Shallow Crust,0.0,89.98793,0.0,01/31/6225 +-4.37928,47.80273,3967,12,28,14,13,3,4.05,15.0,fr,7101,79,286141,1,1,Active Shallow Crust,0.0,89.98857,0.0,12/28/3967 +-4.37928,47.80273,3238,10,18,23,50,54,4.55,5.0,fr,7102,64,286206,1,1,Active Shallow Crust,0.0,89.98917,-90.0,10/18/3238 +9.47047,48.64058,7684,9,5,1,40,7,3.55,5.0,fr,7103,153,286560,1,1,Active Shallow Crust,0.0,89.98667,0.0,09/05/7684 +9.47047,48.64058,455,7,16,7,6,53,3.85,5.0,fr,7104,9,286596,1,1,Active Shallow Crust,0.0,89.99056,0.0,07/16/0455 +9.47047,48.64058,1882,4,9,15,14,57,3.85,15.0,fr,7105,37,286606,1,1,Active Shallow Crust,128.8956,89.99529,0.0,04/09/1882 +9.47047,48.64058,5220,12,9,15,39,55,4.15,15.0,fr,7106,104,286642,1,1,Active Shallow Crust,128.8969,89.99332,0.0,12/09/5220 +9.47047,48.64058,4680,6,2,15,4,53,4.45,5.0,fr,7107,93,286668,1,1,Active Shallow Crust,0.0,89.99054,0.0,06/02/4680 +9.47047,48.64058,7984,2,14,19,48,4,5.05,5.0,fr,7108,159,286740,1,1,Active Shallow Crust,0.0,89.99052,0.0,02/14/7984 +9.47047,48.64058,8634,7,11,18,27,18,5.45,5.0,fr,7109,172,286788,1,1,Active Shallow Crust,0.0,89.98953,0.0,07/11/8634 +9.47047,48.64058,9167,2,2,1,13,43,5.55,15.0,fr,7110,183,286801,1,1,Active Shallow Crust,0.0,89.98933,0.0,02/02/9167 +2.52994,50.38989,2620,10,16,19,12,26,3.55,15.0,fr,7111,52,287050,1,1,Active Shallow Crust,128.8959,89.99518,0.0,10/16/2620 +2.52994,50.38989,6094,8,21,13,57,6,3.65,27.5,fr,7112,121,287054,1,1,Active Shallow Crust,0.0,89.9914,0.0,08/21/6094 +2.52994,50.38989,9792,8,19,1,47,55,3.85,5.0,fr,7113,195,287085,1,1,Active Shallow Crust,128.8955,89.99431,0.0,08/19/9792 +2.52994,50.38989,853,1,13,18,53,5,4.15,15.0,fr,7114,17,287113,1,1,Active Shallow Crust,0.0,89.99033,0.0,01/13/0853 +2.52994,50.38989,682,8,17,1,59,55,4.25,5.0,fr,7115,13,287127,1,1,Active Shallow Crust,240.0083,57.9941,0.0,08/17/0682 +2.52994,50.38989,2654,2,27,17,23,18,4.45,5.0,fr,7116,53,287148,1,1,Active Shallow Crust,0.0,89.98973,0.0,02/27/2654 +2.52994,50.38989,8912,6,29,16,25,56,4.65,5.0,fr,7117,178,287172,1,1,Active Shallow Crust,0.0,89.99004,0.0,06/29/8912 +2.52994,50.38989,3806,1,31,18,4,37,5.85,15.0,fr,7118,76,287326,1,1,Active Shallow Crust,128.8628,89.9894,0.0,01/31/3806 +-1.53716,44.93789,1250,5,1,13,39,32,5.55,5.0,fr,7119,24,287763,1,1,Active Shallow Crust,240.0277,58.00222,0.0,05/01/1250 +7.27358,49.41785,1623,11,21,16,49,32,3.55,5.0,fr,7120,32,288000,1,2,Active Shallow Crust,0.0,89.98688,0.0,11/21/1623 +7.27358,49.41785,19,7,19,15,26,4,3.55,5.0,fr,7121,0,288000,1,2,Active Shallow Crust,0.0,89.98688,0.0,07/19/0019 +7.27358,49.41785,1163,10,16,18,47,15,3.65,5.0,fr,7122,23,288018,1,1,Active Shallow Crust,0.0,89.98817,-90.0,10/16/1163 +7.27358,49.41785,9382,1,25,16,7,46,4.15,5.0,fr,7123,187,288072,1,1,Active Shallow Crust,0.0,89.99014,0.0,01/25/9382 +7.27358,49.41785,2109,2,13,11,38,9,4.65,5.0,fr,7124,42,288132,1,1,Active Shallow Crust,0.0,89.99075,0.0,02/13/2109 +7.27358,49.41785,2234,7,28,20,22,50,5.55,5.0,fr,7125,44,288240,1,1,Active Shallow Crust,0.0,89.99016,0.0,07/28/2234 +0.74122,44.46111,5465,6,19,3,41,6,3.55,5.0,fr,7126,109,288480,1,1,Active Shallow Crust,0.0,89.9901,0.0,06/19/5465 +0.74122,44.46111,9467,3,3,7,24,15,3.65,5.0,fr,7127,189,288492,1,1,Active Shallow Crust,0.0,89.99038,0.0,03/03/9467 +0.74122,44.46111,3149,10,3,0,9,29,4.05,5.0,fr,7128,62,288540,1,1,Active Shallow Crust,0.0,89.98988,0.0,10/03/3149 +0.74122,44.46111,833,2,1,13,13,36,4.15,5.0,fr,7129,16,288552,1,1,Active Shallow Crust,0.0,89.99008,0.0,02/01/0833 +0.74122,44.46111,2300,10,3,8,40,13,4.35,15.0,fr,7130,45,288577,1,1,Active Shallow Crust,0.0,89.98997,0.0,10/03/2300 +0.74122,44.46111,7291,4,16,17,1,47,5.25,15.0,fr,7131,145,288685,1,1,Active Shallow Crust,0.0,89.98996,0.0,04/16/7291 +-1.62784,43.55406,3298,3,21,23,50,39,3.55,5.0,fr,7132,65,288960,1,1,Active Shallow Crust,0.0,89.99087,0.0,03/21/3298 +-1.62784,43.55406,373,7,8,22,34,16,3.55,15.0,fr,7133,7,288961,1,1,Active Shallow Crust,0.0,89.99087,0.0,07/08/0373 +-1.62784,43.55406,4938,8,23,11,40,7,3.95,27.5,fr,7134,98,289016,1,1,Active Shallow Crust,0.0,89.9895,-90.0,08/23/4938 +-1.62784,43.55406,376,2,16,1,9,12,4.65,15.0,fr,7135,7,289093,1,1,Active Shallow Crust,0.0,89.99022,0.0,02/16/0376 +-1.62784,43.55406,7105,10,28,5,30,28,4.95,5.0,fr,7136,142,289131,1,1,Active Shallow Crust,240.0106,58.00422,0.0,10/28/7105 +-1.62784,43.55406,7527,7,13,4,42,2,4.95,27.5,fr,7137,150,289139,1,1,Active Shallow Crust,128.891,89.98985,0.0,07/13/7527 +1.38744,48.51548,3299,8,13,22,51,7,3.75,5.0,fr,7138,65,289464,1,1,Active Shallow Crust,0.0,89.98939,0.0,08/13/3299 +1.38744,48.51548,1961,6,11,17,42,31,3.85,15.0,fr,7139,39,289477,1,1,Active Shallow Crust,0.0,89.99054,0.0,06/11/1961 +1.38744,48.51548,5919,6,4,13,20,4,4.05,5.0,fr,7140,118,289500,1,1,Active Shallow Crust,0.0,89.98967,0.0,06/04/5919 +0.84456,41.33982,7636,10,4,14,26,57,3.55,5.0,fr,7141,152,290880,1,1,Active Shallow Crust,0.0,89.98959,0.0,10/04/7636 +0.84456,41.33982,1731,1,15,12,43,10,3.55,5.0,fr,7142,34,290889,1,1,Active Shallow Crust,128.8967,89.99338,0.0,01/15/1731 +0.84456,41.33982,6879,4,28,8,45,35,3.75,15.0,fr,7143,137,290908,1,1,Active Shallow Crust,240.0079,58.01733,0.0,04/28/6879 +0.84456,41.33982,3767,1,4,18,29,34,3.85,5.0,fr,7144,75,290922,1,1,Active Shallow Crust,0.0,89.98983,-90.0,01/04/3767 +0.84456,41.33982,9113,4,8,0,45,28,3.95,5.0,fr,7145,182,290928,1,1,Active Shallow Crust,0.0,89.98985,0.0,04/08/9113 +0.84456,41.33982,9987,2,24,7,42,49,3.95,5.0,fr,7146,199,290937,1,1,Active Shallow Crust,128.901,89.99373,0.0,02/24/9987 +0.84456,41.33982,9013,11,2,15,1,4,4.35,27.5,fr,7147,180,290978,1,1,Active Shallow Crust,0.0,89.98983,0.0,11/02/9013 +0.84456,41.33982,5346,5,15,22,12,12,4.75,5.0,fr,7148,106,291024,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/15/5346 +0.84456,41.33982,3886,10,23,6,54,23,4.85,5.0,fr,7149,77,291036,1,1,Active Shallow Crust,0.0,89.99004,0.0,10/23/3886 +-1.25123,48.61888,5830,9,28,15,32,18,3.55,15.0,fr,7150,116,291361,1,1,Active Shallow Crust,0.0,89.99,0.0,09/28/5830 +-1.25123,48.61888,8759,11,27,12,34,41,3.55,27.5,fr,7151,175,291362,1,1,Active Shallow Crust,0.0,89.99,0.0,11/27/8759 +-1.25123,48.61888,5658,12,14,12,4,55,3.55,5.0,fr,7152,113,291363,1,1,Active Shallow Crust,240.0126,57.9981,0.0,12/14/5658 +-1.25123,48.61888,8144,10,28,19,56,24,3.55,5.0,fr,7153,162,291366,1,1,Active Shallow Crust,0.0,89.98988,-90.0,10/28/8144 +-1.25123,48.61888,6293,3,21,18,30,30,3.65,5.0,fr,7154,125,291372,1,4,Active Shallow Crust,0.0,89.9896,0.0,03/21/6293 +-1.25123,48.61888,8222,8,2,10,47,24,3.65,5.0,fr,7155,164,291372,1,4,Active Shallow Crust,0.0,89.9896,0.0,08/02/8222 +-1.25123,48.61888,7044,3,29,15,36,8,3.65,5.0,fr,7156,140,291372,1,4,Active Shallow Crust,0.0,89.9896,0.0,03/29/7044 +-1.25123,48.61888,3380,6,3,8,21,23,3.65,5.0,fr,7157,67,291372,1,4,Active Shallow Crust,0.0,89.9896,0.0,06/03/3380 +-1.25123,48.61888,4667,4,11,12,39,37,3.65,5.0,fr,7158,93,291375,1,1,Active Shallow Crust,240.0011,58.01312,0.0,04/11/4667 +-1.25123,48.61888,9987,8,7,18,36,27,3.65,15.0,fr,7159,199,291376,1,1,Active Shallow Crust,240.0011,58.01312,0.0,08/07/9987 +-1.25123,48.61888,8136,11,16,22,22,53,3.65,5.0,fr,7160,162,291381,1,1,Active Shallow Crust,128.9002,89.96344,0.0,11/16/8136 +-1.25123,48.61888,5177,6,22,22,40,5,3.75,15.0,fr,7161,103,291385,1,1,Active Shallow Crust,0.0,89.98941,0.0,06/22/5177 +-1.25123,48.61888,5660,8,22,9,31,21,3.75,27.5,fr,7162,113,291395,1,1,Active Shallow Crust,128.8966,89.96729,0.0,08/22/5660 +-1.25123,48.61888,4516,1,28,6,5,17,3.85,5.0,fr,7163,90,291396,1,2,Active Shallow Crust,0.0,89.99056,0.0,01/28/4516 +-1.25123,48.61888,3765,6,7,16,27,52,3.85,5.0,fr,7164,75,291396,1,2,Active Shallow Crust,0.0,89.99056,0.0,06/07/3765 +-1.25123,48.61888,70,1,22,9,15,8,3.85,15.0,fr,7165,1,291397,1,1,Active Shallow Crust,0.0,89.99056,0.0,01/22/0070 +-1.25123,48.61888,2790,1,11,1,3,59,3.85,5.0,fr,7166,55,291399,1,1,Active Shallow Crust,240.011,57.99786,0.0,01/11/2790 +-1.25123,48.61888,6766,8,2,17,44,4,3.95,5.0,fr,7167,135,291417,1,1,Active Shallow Crust,128.9,89.99369,0.0,08/02/6766 +-1.25123,48.61888,7644,7,8,15,8,32,4.05,5.0,fr,7168,152,291423,1,2,Active Shallow Crust,240.0064,58.00581,0.0,07/08/7644 +-1.25123,48.61888,9694,3,7,2,28,8,4.05,5.0,fr,7169,193,291423,1,2,Active Shallow Crust,240.0064,58.00581,0.0,03/07/9694 +-1.25123,48.61888,28,6,6,19,34,50,4.15,27.5,fr,7170,0,291434,1,1,Active Shallow Crust,0.0,89.98997,0.0,06/06/0028 +-1.25123,48.61888,246,9,16,0,50,18,4.25,5.0,fr,7171,4,291444,1,1,Active Shallow Crust,0.0,89.99032,0.0,09/16/0246 +-1.25123,48.61888,8280,7,21,4,26,46,4.35,5.0,fr,7172,165,291456,1,1,Active Shallow Crust,0.0,89.99004,0.0,07/21/8280 +-1.25123,48.61888,5168,12,11,0,43,52,4.35,15.0,fr,7173,103,291457,1,1,Active Shallow Crust,0.0,89.99004,0.0,12/11/5168 +-1.25123,48.61888,4215,3,22,6,46,4,4.45,15.0,fr,7174,84,291469,1,1,Active Shallow Crust,0.0,89.98994,0.0,03/22/4215 +-1.25123,48.61888,2098,6,30,22,9,49,4.95,27.5,fr,7175,41,291530,1,1,Active Shallow Crust,0.0,89.99002,0.0,06/30/2098 +-1.25123,48.61888,9224,11,3,17,47,5,5.05,5.0,fr,7176,184,291546,1,1,Active Shallow Crust,0.0,89.9901,-90.0,11/03/9224 +-1.25123,48.61888,559,4,18,3,44,28,5.15,15.0,fr,7177,11,291562,1,1,Active Shallow Crust,128.8826,89.99109,0.0,04/18/0559 +-1.25123,48.61888,9038,3,9,8,17,40,5.25,15.0,fr,7178,180,291565,1,1,Active Shallow Crust,0.0,89.99011,0.0,03/09/9038 +0.47959,41.71306,6282,9,17,0,10,28,3.75,5.0,fr,7179,125,291867,1,1,Active Shallow Crust,240.0079,58.01744,0.0,09/17/6282 +0.47959,41.71306,5284,10,2,21,5,50,3.75,15.0,fr,7180,105,291868,1,1,Active Shallow Crust,240.0079,58.01744,0.0,10/02/5284 +0.47959,41.71306,5059,2,27,0,26,52,3.95,5.0,fr,7181,101,291888,1,1,Active Shallow Crust,0.0,89.98991,0.0,02/27/5059 +0.47959,41.71306,3725,1,10,5,28,33,4.05,5.0,fr,7182,74,291909,1,1,Active Shallow Crust,128.8911,89.99378,0.0,01/10/3725 +0.47959,41.71306,8368,2,10,16,42,21,5.15,15.0,fr,7183,167,292036,1,1,Active Shallow Crust,240.0171,57.9995,0.0,02/10/8368 +1.9393,42.44385,8900,7,17,15,17,59,3.55,5.0,fr,7184,177,292320,1,3,Active Shallow Crust,0.0,89.9907,0.0,07/17/8900 +1.9393,42.44385,7081,10,8,18,10,18,3.55,5.0,fr,7185,141,292320,1,3,Active Shallow Crust,0.0,89.9907,0.0,10/08/7081 +1.9393,42.44385,3705,1,20,3,1,27,3.55,5.0,fr,7186,74,292320,1,3,Active Shallow Crust,0.0,89.9907,0.0,01/20/3705 +1.9393,42.44385,3370,6,6,9,50,37,3.55,15.0,fr,7187,67,292321,1,1,Active Shallow Crust,0.0,89.9907,0.0,06/06/3370 +1.9393,42.44385,687,7,11,15,34,2,3.55,5.0,fr,7188,13,292326,1,1,Active Shallow Crust,0.0,89.99059,-90.0,07/11/0687 +1.9393,42.44385,3821,9,5,20,17,52,3.65,5.0,fr,7189,76,292332,1,4,Active Shallow Crust,0.0,89.99005,0.0,09/05/3821 +1.9393,42.44385,6312,8,24,6,46,47,3.65,5.0,fr,7190,126,292332,1,4,Active Shallow Crust,0.0,89.99005,0.0,08/24/6312 +1.9393,42.44385,3605,6,10,1,14,25,3.65,5.0,fr,7191,72,292332,1,4,Active Shallow Crust,0.0,89.99005,0.0,06/10/3605 +1.9393,42.44385,419,3,23,21,1,25,3.65,5.0,fr,7192,8,292332,1,4,Active Shallow Crust,0.0,89.99005,0.0,03/23/0419 +1.9393,42.44385,2128,8,1,19,53,4,3.65,5.0,fr,7193,42,292335,1,1,Active Shallow Crust,240.0006,58.01293,0.0,08/01/2128 +1.9393,42.44385,9,7,8,21,7,54,3.65,15.0,fr,7194,0,292336,1,1,Active Shallow Crust,240.0006,58.01293,0.0,07/08/0009 +1.9393,42.44385,9090,3,4,6,14,27,3.75,5.0,fr,7195,181,292344,1,2,Active Shallow Crust,0.0,89.98965,0.0,03/04/9090 +1.9393,42.44385,9638,9,7,6,41,19,3.75,5.0,fr,7196,192,292344,1,2,Active Shallow Crust,0.0,89.98965,0.0,09/07/9638 +1.9393,42.44385,3285,12,19,4,29,51,3.75,15.0,fr,7197,65,292345,1,1,Active Shallow Crust,0.0,89.98965,0.0,12/19/3285 +1.9393,42.44385,254,2,15,22,9,36,3.75,27.5,fr,7198,5,292346,1,1,Active Shallow Crust,0.0,89.98965,0.0,02/15/0254 +1.9393,42.44385,3124,3,2,14,51,40,3.75,5.0,fr,7199,62,292347,1,2,Active Shallow Crust,240.0077,58.01769,0.0,03/02/3124 +1.9393,42.44385,4385,2,17,18,59,56,3.75,5.0,fr,7200,87,292347,1,2,Active Shallow Crust,240.0077,58.01769,0.0,02/17/4385 +1.9393,42.44385,7691,1,26,9,19,9,3.75,5.0,fr,7201,153,292350,1,1,Active Shallow Crust,0.0,89.98953,-90.0,01/26/7691 +1.9393,42.44385,9858,4,21,4,26,31,3.85,5.0,fr,7202,197,292356,1,2,Active Shallow Crust,0.0,89.98946,0.0,04/21/9858 +1.9393,42.44385,2500,5,31,4,5,19,3.85,5.0,fr,7203,49,292356,1,2,Active Shallow Crust,0.0,89.98946,0.0,05/31/2500 +1.9393,42.44385,4807,6,16,17,46,13,3.85,5.0,fr,7204,96,292362,1,1,Active Shallow Crust,0.0,89.98934,-90.0,06/16/4807 +1.9393,42.44385,6568,5,27,3,20,59,3.95,5.0,fr,7205,131,292368,1,2,Active Shallow Crust,0.0,89.98943,0.0,05/27/6568 +1.9393,42.44385,6934,1,14,13,3,28,3.95,5.0,fr,7206,138,292368,1,2,Active Shallow Crust,0.0,89.98943,0.0,01/14/6934 +1.9393,42.44385,6562,3,3,17,10,30,4.05,5.0,fr,7207,131,292380,1,1,Active Shallow Crust,0.0,89.98954,0.0,03/03/6562 +1.9393,42.44385,335,1,27,8,20,52,4.05,15.0,fr,7208,6,292381,1,1,Active Shallow Crust,0.0,89.98954,0.0,01/27/0335 +1.9393,42.44385,3576,11,19,16,40,38,4.05,15.0,fr,7209,71,292387,1,1,Active Shallow Crust,0.0,89.99048,-90.0,11/19/3576 +1.9393,42.44385,4840,5,8,11,4,27,4.25,5.0,fr,7210,96,292404,1,1,Active Shallow Crust,0.0,89.99003,0.0,05/08/4840 +1.9393,42.44385,9076,5,17,17,22,54,4.25,15.0,fr,7211,181,292408,1,1,Active Shallow Crust,240.0068,57.99395,0.0,05/17/9076 +1.9393,42.44385,4335,12,29,15,32,32,4.35,15.0,fr,7212,86,292417,1,1,Active Shallow Crust,0.0,89.98963,0.0,12/29/4335 +1.9393,42.44385,9155,11,18,23,12,46,4.35,5.0,fr,7213,183,292419,1,1,Active Shallow Crust,240.0076,57.99573,0.0,11/18/9155 +1.9393,42.44385,2885,6,1,2,50,2,4.45,5.0,fr,7214,57,292428,1,1,Active Shallow Crust,0.0,89.9901,0.0,06/01/2885 +1.9393,42.44385,6120,8,7,18,5,5,4.65,5.0,fr,7215,122,292452,1,1,Active Shallow Crust,0.0,89.99004,0.0,08/07/6120 +1.9393,42.44385,1744,10,4,9,5,10,4.65,5.0,fr,7216,34,292461,1,1,Active Shallow Crust,128.8922,89.98701,0.0,10/04/1744 +1.9393,42.44385,4628,12,3,21,42,48,4.75,5.0,fr,7217,92,292464,1,1,Active Shallow Crust,0.0,89.99019,0.0,12/03/4628 +-7.04108,48.87804,5702,1,19,20,0,25,3.85,5.0,fr,7218,114,292842,1,1,Active Shallow Crust,0.0,89.9905,-90.0,01/19/5702 +-7.04108,48.87804,2637,4,10,19,31,16,4.25,5.0,fr,7219,52,292884,1,1,Active Shallow Crust,0.0,89.99111,0.0,04/10/2637 +4.6395,44.31238,6461,10,27,6,59,24,3.55,5.0,fr,7220,129,293760,1,2,Active Shallow Crust,0.0,89.99278,0.0,10/27/6461 +4.6395,44.31238,6324,11,3,0,33,26,3.55,5.0,fr,7221,126,293760,1,2,Active Shallow Crust,0.0,89.99278,0.0,11/03/6324 +4.6395,44.31238,1365,1,2,0,35,12,3.55,15.0,fr,7222,27,293761,1,1,Active Shallow Crust,0.0,89.99278,0.0,01/02/1365 +4.6395,44.31238,2493,9,5,14,34,13,3.55,5.0,fr,7223,49,293766,1,1,Active Shallow Crust,0.0,89.9927,-90.0,09/05/2493 +4.6395,44.31238,3617,11,17,0,23,14,3.65,5.0,fr,7224,72,293772,1,2,Active Shallow Crust,0.0,89.98714,0.0,11/17/3617 +4.6395,44.31238,4038,7,5,23,36,19,3.65,5.0,fr,7225,80,293772,1,2,Active Shallow Crust,0.0,89.98714,0.0,07/05/4038 +4.6395,44.31238,2958,7,26,8,36,48,3.65,15.0,fr,7226,59,293773,1,2,Active Shallow Crust,0.0,89.98714,0.0,07/26/2958 +4.6395,44.31238,9929,12,14,13,27,23,3.65,15.0,fr,7227,198,293773,1,2,Active Shallow Crust,0.0,89.98714,0.0,12/14/9929 +4.6395,44.31238,7088,5,16,12,5,39,3.65,27.5,fr,7228,141,293774,1,1,Active Shallow Crust,0.0,89.98714,0.0,05/16/7088 +4.6395,44.31238,6480,7,24,18,37,42,3.65,15.0,fr,7229,129,293776,1,1,Active Shallow Crust,240.0002,58.01335,0.0,07/24/6480 +4.6395,44.31238,5208,12,23,15,28,50,3.65,5.0,fr,7230,104,293781,1,1,Active Shallow Crust,128.9013,89.96349,0.0,12/23/5208 +4.6395,44.31238,6870,2,14,16,10,8,3.75,5.0,fr,7231,137,293784,1,3,Active Shallow Crust,0.0,89.98854,0.0,02/14/6870 +4.6395,44.31238,4260,4,30,8,58,52,3.75,5.0,fr,7232,85,293784,1,3,Active Shallow Crust,0.0,89.98854,0.0,04/30/4260 +4.6395,44.31238,1539,7,27,13,51,25,3.75,5.0,fr,7233,30,293784,1,3,Active Shallow Crust,0.0,89.98854,0.0,07/27/1539 +4.6395,44.31238,5100,3,31,2,9,21,3.75,15.0,fr,7234,101,293785,1,1,Active Shallow Crust,0.0,89.98854,0.0,03/31/5100 +4.6395,44.31238,646,2,19,8,26,19,3.75,5.0,fr,7235,12,293787,1,2,Active Shallow Crust,240.0089,58.01682,0.0,02/19/0646 +4.6395,44.31238,1245,10,13,19,46,12,3.75,5.0,fr,7236,24,293787,1,2,Active Shallow Crust,240.0089,58.01682,0.0,10/13/1245 +4.6395,44.31238,7332,2,12,0,17,6,3.75,5.0,fr,7237,146,293790,1,2,Active Shallow Crust,0.0,89.9884,-90.0,02/12/7332 +4.6395,44.31238,8791,1,25,4,57,34,3.75,5.0,fr,7238,175,293790,1,2,Active Shallow Crust,0.0,89.9884,-90.0,01/25/8791 +4.6395,44.31238,6511,5,27,22,3,22,3.85,5.0,fr,7239,130,293796,1,3,Active Shallow Crust,0.0,89.98978,0.0,05/27/6511 +4.6395,44.31238,5532,12,26,5,5,34,3.85,5.0,fr,7240,110,293796,1,3,Active Shallow Crust,0.0,89.98978,0.0,12/26/5532 +4.6395,44.31238,9178,6,16,19,31,24,3.85,5.0,fr,7241,183,293796,1,3,Active Shallow Crust,0.0,89.98978,0.0,06/16/9178 +4.6395,44.31238,7655,6,29,13,59,1,3.85,15.0,fr,7242,153,293797,1,1,Active Shallow Crust,0.0,89.98978,0.0,06/29/7655 +4.6395,44.31238,4327,9,23,9,38,33,3.85,27.5,fr,7243,86,293798,1,1,Active Shallow Crust,0.0,89.98978,0.0,09/23/4327 +4.6395,44.31238,8508,4,17,7,35,25,3.95,5.0,fr,7244,170,293808,1,2,Active Shallow Crust,0.0,89.9909,0.0,04/17/8508 +4.6395,44.31238,8694,1,22,14,40,27,3.95,5.0,fr,7245,173,293808,1,2,Active Shallow Crust,0.0,89.9909,0.0,01/22/8694 +4.6395,44.31238,4660,6,20,0,55,22,3.95,5.0,fr,7246,93,293811,1,1,Active Shallow Crust,240.0187,58.00488,0.0,06/20/4660 +4.6395,44.31238,9189,5,6,15,22,45,3.95,5.0,fr,7247,183,293814,1,1,Active Shallow Crust,0.0,89.99079,-90.0,05/06/9189 +4.6395,44.31238,2746,10,14,19,27,54,4.05,5.0,fr,7248,54,293823,1,1,Active Shallow Crust,240.0051,58.00631,0.0,10/14/2746 +4.6395,44.31238,6709,6,16,6,54,30,4.15,5.0,fr,7249,134,293832,1,2,Active Shallow Crust,0.0,89.98915,0.0,06/16/6709 +4.6395,44.31238,6864,3,31,21,32,12,4.15,5.0,fr,7250,137,293832,1,2,Active Shallow Crust,0.0,89.98915,0.0,03/31/6864 +4.6395,44.31238,9101,2,3,0,24,53,4.15,15.0,fr,7251,182,293839,1,1,Active Shallow Crust,0.0,89.98902,-90.0,02/03/9101 +4.6395,44.31238,7498,6,21,4,22,18,4.25,5.0,fr,7252,149,293844,1,2,Active Shallow Crust,0.0,89.99033,0.0,06/21/7498 +4.6395,44.31238,9442,1,19,21,24,38,4.25,5.0,fr,7253,188,293844,1,2,Active Shallow Crust,0.0,89.99033,0.0,01/19/9442 +4.6395,44.31238,9503,7,7,9,56,51,4.25,15.0,fr,7254,190,293845,1,2,Active Shallow Crust,0.0,89.99033,0.0,07/07/9503 +4.6395,44.31238,7518,7,31,20,23,39,4.25,15.0,fr,7255,150,293845,1,2,Active Shallow Crust,0.0,89.99033,0.0,07/31/7518 +4.6395,44.31238,1007,10,5,4,22,59,4.35,5.0,fr,7256,20,293856,1,1,Active Shallow Crust,0.0,89.99138,0.0,10/05/1007 +4.6395,44.31238,5274,7,20,7,33,10,4.45,5.0,fr,7257,105,293868,1,1,Active Shallow Crust,0.0,89.98976,0.0,07/20/5274 +4.6395,44.31238,9623,12,31,5,27,43,4.45,15.0,fr,7258,192,293869,1,1,Active Shallow Crust,0.0,89.98976,0.0,12/31/9623 +4.6395,44.31238,1768,11,26,9,37,1,4.45,5.0,fr,7259,35,293871,1,1,Active Shallow Crust,240.005,57.99435,0.0,11/26/1768 +4.6395,44.31238,3957,10,23,13,41,29,4.55,5.0,fr,7260,79,293883,1,1,Active Shallow Crust,240.0086,57.99742,0.0,10/23/3957 +4.6395,44.31238,3970,1,23,7,54,52,4.65,5.0,fr,7261,79,293892,1,1,Active Shallow Crust,0.0,89.98983,0.0,01/23/3970 +4.6395,44.31238,6125,4,10,5,42,29,4.75,5.0,fr,7262,122,293904,1,1,Active Shallow Crust,0.0,89.98912,0.0,04/10/6125 +4.6395,44.31238,3750,7,9,8,16,0,4.95,5.0,fr,7263,74,293928,1,1,Active Shallow Crust,0.0,89.98992,0.0,07/09/3750 +4.6395,44.31238,1314,11,3,14,30,10,5.05,5.0,fr,7264,26,293949,1,1,Active Shallow Crust,128.8866,89.99038,0.0,11/03/1314 +4.6395,44.31238,4521,9,27,15,16,8,5.45,15.0,fr,7265,90,293989,1,1,Active Shallow Crust,0.0,89.99028,0.0,09/27/4521 +4.6395,44.31238,8435,5,27,23,17,51,5.75,5.0,fr,7266,168,294024,1,1,Active Shallow Crust,0.0,89.99025,0.0,05/27/8435 +1.03381,49.68154,3441,2,10,23,29,30,3.55,5.0,fr,7267,68,294240,1,1,Active Shallow Crust,0.0,89.99021,0.0,02/10/3441 +1.03381,49.68154,407,7,16,0,51,57,3.55,5.0,fr,7268,8,294246,1,1,Active Shallow Crust,0.0,89.9901,-90.0,07/16/0407 +1.03381,49.68154,5476,10,24,13,8,28,3.75,5.0,fr,7269,109,294264,1,1,Active Shallow Crust,0.0,89.98963,0.0,10/24/5476 +1.03381,49.68154,9180,1,23,19,22,13,4.25,15.0,fr,7270,183,294331,1,1,Active Shallow Crust,0.0,89.98968,-90.0,01/23/9180 +1.03381,49.68154,9824,7,9,17,55,13,4.35,5.0,fr,7271,196,294336,1,1,Active Shallow Crust,0.0,89.99026,0.0,07/09/9824 +1.03381,49.68154,3047,6,2,6,50,8,4.45,15.0,fr,7272,60,294358,1,1,Active Shallow Crust,128.8915,89.99364,0.0,06/02/3047 +1.03381,49.68154,1426,7,6,11,47,47,5.15,5.0,fr,7273,28,294441,1,1,Active Shallow Crust,128.882,89.991,0.0,07/06/1426 +-2.48085,50.263,4575,10,5,9,45,0,3.75,5.0,fr,7274,91,294744,1,1,Active Shallow Crust,0.0,89.98976,0.0,10/05/4575 +-2.48085,50.263,9403,3,3,14,38,39,3.75,5.0,fr,7275,188,294753,1,1,Active Shallow Crust,128.8958,89.96755,0.0,03/03/9403 +-1.50478,50.46211,6123,3,7,21,23,57,3.55,15.0,fr,7276,122,295210,1,1,Active Shallow Crust,128.8962,89.99358,0.0,03/07/6123 +-1.50478,50.46211,9172,7,15,6,35,25,5.75,5.0,fr,7277,183,295464,1,1,Active Shallow Crust,359.9999,89.99005,0.0,07/15/9172 +0.95343,49.54657,7680,2,21,4,13,22,3.55,5.0,fr,7278,153,295680,1,1,Active Shallow Crust,0.0,89.99019,0.0,02/21/7680 +0.95343,49.54657,4669,1,6,10,33,5,3.55,15.0,fr,7279,93,295681,1,1,Active Shallow Crust,0.0,89.99019,0.0,01/06/4669 +0.95343,49.54657,965,9,4,2,11,26,3.55,15.0,fr,7280,19,295684,1,1,Active Shallow Crust,240.0126,57.99812,0.0,09/04/0965 +0.95343,49.54657,7374,9,23,3,8,20,3.65,5.0,fr,7281,147,295695,1,2,Active Shallow Crust,240.0014,58.01296,0.0,09/23/7374 +0.95343,49.54657,6628,7,29,10,3,57,3.65,5.0,fr,7282,132,295695,1,2,Active Shallow Crust,240.0014,58.01296,0.0,07/29/6628 +0.95343,49.54657,170,7,13,14,7,36,3.75,5.0,fr,7283,3,295704,1,1,Active Shallow Crust,0.0,89.99026,0.0,07/13/0170 +0.95343,49.54657,3368,3,23,14,0,46,3.85,5.0,fr,7284,67,295716,1,1,Active Shallow Crust,0.0,89.99016,0.0,03/23/3368 +0.95343,49.54657,9341,10,5,16,11,33,3.85,15.0,fr,7285,186,295717,1,1,Active Shallow Crust,0.0,89.99016,0.0,10/05/9341 +0.95343,49.54657,4966,2,15,10,59,18,3.95,15.0,fr,7286,99,295729,1,1,Active Shallow Crust,0.0,89.9902,0.0,02/15/4966 +0.95343,49.54657,8576,11,7,20,9,0,4.15,27.5,fr,7287,171,295754,1,1,Active Shallow Crust,0.0,89.99017,0.0,11/07/8576 +0.95343,49.54657,8268,7,7,5,17,48,4.25,5.0,fr,7288,165,295764,1,1,Active Shallow Crust,0.0,89.99014,0.0,07/07/8268 +0.95343,49.54657,9778,9,10,6,4,35,4.55,5.0,fr,7289,195,295803,1,1,Active Shallow Crust,240.0102,57.99752,0.0,09/10/9778 +0.95343,49.54657,7299,1,13,10,55,58,4.85,5.0,fr,7290,145,295836,1,1,Active Shallow Crust,0.0,89.98993,0.0,01/13/7299 +1.76646,44.94314,4422,4,24,23,21,17,3.55,5.0,fr,7291,88,297120,1,1,Active Shallow Crust,0.0,89.9893,0.0,04/24/4422 +1.76646,44.94314,5025,6,30,4,30,1,3.55,27.5,fr,7292,100,297122,1,1,Active Shallow Crust,0.0,89.9893,0.0,06/30/5025 +1.76646,44.94314,2038,7,11,0,21,18,3.55,5.0,fr,7293,40,297123,1,1,Active Shallow Crust,240.0121,57.998,0.0,07/11/2038 +1.76646,44.94314,8636,10,1,20,35,15,3.85,5.0,fr,7294,172,297156,1,1,Active Shallow Crust,0.0,89.98989,0.0,10/01/8636 +1.76646,44.94314,9644,7,20,0,47,38,3.85,15.0,fr,7295,192,297160,1,1,Active Shallow Crust,240.0107,57.99771,0.0,07/20/9644 +1.76646,44.94314,2748,10,11,12,9,46,4.95,5.0,fr,7296,54,297294,1,1,Active Shallow Crust,0.0,89.98991,-90.0,10/11/2748 +-0.99472,42.10532,6998,2,1,23,45,34,3.65,5.0,fr,7297,139,297612,1,1,Active Shallow Crust,0.0,89.99,0.0,02/01/6998 +-0.99472,42.10532,4802,4,3,1,57,26,3.95,5.0,fr,7298,96,297648,1,1,Active Shallow Crust,0.0,89.98997,0.0,04/03/4802 +-0.99472,42.10532,3898,5,8,17,2,36,4.25,15.0,fr,7299,77,297685,1,1,Active Shallow Crust,0.0,89.98997,0.0,05/08/3898 +-0.99472,42.10532,4567,12,13,5,14,46,4.55,5.0,fr,7300,91,297720,1,1,Active Shallow Crust,0.0,89.98994,0.0,12/13/4567 +0.66762,44.31959,3246,1,28,13,29,26,3.65,15.0,fr,7301,64,298093,1,1,Active Shallow Crust,0.0,89.99036,0.0,01/28/3246 +0.66762,44.31959,5374,1,7,10,42,7,4.25,5.0,fr,7302,107,298173,1,1,Active Shallow Crust,128.8947,89.98093,0.0,01/07/5374 +0.66762,44.31959,2179,10,3,4,56,50,5.75,15.0,fr,7303,43,298345,1,1,Active Shallow Crust,0.0,89.98997,0.0,10/03/2179 +-0.00666,44.12532,3420,3,20,21,13,34,3.75,15.0,fr,7304,68,298588,1,1,Active Shallow Crust,240.0081,58.01752,0.0,03/20/3420 +-0.00666,44.12532,3535,10,2,18,45,32,3.85,5.0,fr,7305,70,298596,1,1,Active Shallow Crust,360.0,89.99,0.0,10/02/3535 +-0.00666,44.12532,4848,3,18,12,16,58,4.05,5.0,fr,7306,96,298620,1,1,Active Shallow Crust,0.0,89.99,0.0,03/18/4848 +-0.00666,44.12532,3580,12,5,11,3,46,5.35,5.0,fr,7307,71,298776,1,1,Active Shallow Crust,360.0,89.99,0.0,12/05/3580 +3.32016,45.69296,4858,8,29,8,9,54,3.55,5.0,fr,7308,97,299040,1,2,Active Shallow Crust,0.0,89.98943,0.0,08/29/4858 +3.32016,45.69296,291,9,18,3,42,19,3.55,5.0,fr,7309,5,299040,1,2,Active Shallow Crust,0.0,89.98943,0.0,09/18/0291 +3.32016,45.69296,9205,11,16,5,4,3,3.55,5.0,fr,7310,184,299046,1,1,Active Shallow Crust,0.0,89.98931,-90.0,11/16/9205 +3.32016,45.69296,2172,12,27,3,56,48,3.65,5.0,fr,7311,43,299052,1,1,Active Shallow Crust,0.0,89.99059,0.0,12/27/2172 +3.32016,45.69296,4052,1,7,21,52,50,3.65,15.0,fr,7312,81,299053,1,1,Active Shallow Crust,0.0,89.99059,0.0,01/07/4052 +3.32016,45.69296,9424,11,1,0,28,37,3.65,27.5,fr,7313,188,299054,1,1,Active Shallow Crust,0.0,89.99059,0.0,11/01/9424 +3.32016,45.69296,9211,2,9,16,36,55,3.65,5.0,fr,7314,184,299055,1,1,Active Shallow Crust,240.0013,58.0129,0.0,02/09/9211 +3.32016,45.69296,3166,10,15,16,5,36,3.65,27.5,fr,7315,63,299057,1,1,Active Shallow Crust,240.0013,58.01282,0.0,10/15/3166 +3.32016,45.69296,9056,2,26,9,46,45,3.65,27.5,fr,7316,181,299060,1,1,Active Shallow Crust,0.0,89.99047,-90.0,02/26/9056 +3.32016,45.69296,2068,4,1,17,13,13,3.75,5.0,fr,7317,41,299064,1,3,Active Shallow Crust,0.0,89.98881,0.0,04/01/2068 +3.32016,45.69296,3494,2,27,22,52,22,3.75,5.0,fr,7318,69,299064,1,3,Active Shallow Crust,0.0,89.98881,0.0,02/27/3494 +3.32016,45.69296,406,7,17,13,16,4,3.75,5.0,fr,7319,8,299064,1,3,Active Shallow Crust,0.0,89.98881,0.0,07/17/0406 +3.32016,45.69296,1768,9,30,2,38,53,3.75,15.0,fr,7320,35,299065,1,3,Active Shallow Crust,0.0,89.98881,0.0,09/30/1768 +3.32016,45.69296,2562,7,9,16,30,13,3.75,15.0,fr,7321,51,299065,1,3,Active Shallow Crust,0.0,89.98881,0.0,07/09/2562 +3.32016,45.69296,7781,12,23,23,32,43,3.75,15.0,fr,7322,155,299065,1,3,Active Shallow Crust,0.0,89.98881,0.0,12/23/7781 +3.32016,45.69296,1496,6,30,23,32,27,3.75,5.0,fr,7323,29,299067,1,1,Active Shallow Crust,240.0079,58.0177,0.0,06/30/1496 +3.32016,45.69296,2611,10,15,3,16,13,3.85,5.0,fr,7324,52,299076,1,1,Active Shallow Crust,0.0,89.99003,0.0,10/15/2611 +3.32016,45.69296,6317,1,10,22,55,32,3.85,5.0,fr,7325,126,299079,1,1,Active Shallow Crust,240.0107,57.9975,0.0,01/10/6317 +3.32016,45.69296,6108,11,28,1,47,18,3.95,5.0,fr,7326,122,299088,1,1,Active Shallow Crust,0.0,89.98889,0.0,11/28/6108 +3.32016,45.69296,4387,10,20,14,47,5,3.95,5.0,fr,7327,87,299097,1,1,Active Shallow Crust,128.9004,89.99445,0.0,10/20/4387 +3.32016,45.69296,3571,9,3,5,29,14,4.05,5.0,fr,7328,71,299100,1,1,Active Shallow Crust,0.0,89.9901,0.0,09/03/3571 +3.32016,45.69296,4103,5,28,8,35,40,4.05,27.5,fr,7329,82,299102,1,1,Active Shallow Crust,0.0,89.9901,0.0,05/28/4103 +3.32016,45.69296,8591,11,5,6,10,19,4.25,5.0,fr,7330,171,299124,1,3,Active Shallow Crust,0.0,89.99056,0.0,11/05/8591 +3.32016,45.69296,6831,5,2,21,58,49,4.25,5.0,fr,7331,136,299124,1,3,Active Shallow Crust,0.0,89.99056,0.0,05/02/6831 +3.32016,45.69296,3642,6,22,9,4,3,4.25,5.0,fr,7332,72,299124,1,3,Active Shallow Crust,0.0,89.99056,0.0,06/22/3642 +3.32016,45.69296,5830,9,6,1,36,13,4.45,5.0,fr,7333,116,299148,1,2,Active Shallow Crust,0.0,89.99001,0.0,09/06/5830 +3.32016,45.69296,1413,8,16,19,1,47,4.45,5.0,fr,7334,28,299148,1,2,Active Shallow Crust,0.0,89.99001,0.0,08/16/1413 +3.32016,45.69296,663,8,12,13,14,36,4.45,5.0,fr,7335,13,299151,1,1,Active Shallow Crust,240.0051,57.99479,0.0,08/12/0663 +3.32016,45.69296,7627,8,17,5,12,21,4.55,15.0,fr,7336,152,299164,1,1,Active Shallow Crust,240.009,57.99748,0.0,08/17/7627 +3.32016,45.69296,843,1,12,4,33,56,4.65,5.0,fr,7337,16,299178,1,1,Active Shallow Crust,0.0,89.98996,-90.0,01/12/0843 +3.32016,45.69296,9812,1,26,4,42,8,4.75,5.0,fr,7338,196,299184,1,1,Active Shallow Crust,0.0,89.99026,0.0,01/26/9812 +-2.56506,46.48004,1583,8,25,19,2,0,3.65,5.0,fr,7339,31,299535,1,1,Active Shallow Crust,240.0011,58.01291,0.0,08/25/1583 +-2.56506,46.48004,7898,5,17,11,35,4,4.35,5.0,fr,7340,157,299616,1,1,Active Shallow Crust,0.0,89.99033,0.0,05/17/7898 +-2.56506,46.48004,4740,9,22,23,37,25,4.55,15.0,fr,7341,94,299644,1,1,Active Shallow Crust,240.0094,57.9972,0.0,09/22/4740 +5.75784,42.59526,7869,2,7,7,54,29,3.95,5.0,fr,7342,157,300054,1,1,Active Shallow Crust,0.0,89.99052,-90.0,02/07/7869 +5.75784,42.59526,1932,9,24,20,31,0,4.45,15.0,fr,7343,38,300112,1,1,Active Shallow Crust,240.0041,57.99432,0.0,09/24/1932 +0.59427,44.17783,6959,12,16,6,11,17,3.65,15.0,fr,7344,139,300493,1,2,Active Shallow Crust,0.0,89.99033,0.0,12/16/6959 +0.59427,44.17783,5256,8,18,15,18,33,3.65,15.0,fr,7345,105,300493,1,2,Active Shallow Crust,0.0,89.99033,0.0,08/18/5256 +0.59427,44.17783,3162,9,27,17,18,18,3.75,5.0,fr,7346,63,300504,1,1,Active Shallow Crust,0.0,89.98994,0.0,09/27/3162 +0.59427,44.17783,4836,4,8,15,10,27,3.85,5.0,fr,7347,96,300516,1,2,Active Shallow Crust,0.0,89.98976,0.0,04/08/4836 +0.59427,44.17783,9248,1,27,18,6,23,3.85,5.0,fr,7348,184,300516,1,2,Active Shallow Crust,0.0,89.98976,0.0,01/27/9248 +0.59427,44.17783,8631,1,26,9,16,7,3.85,15.0,fr,7349,172,300526,1,1,Active Shallow Crust,128.8961,89.9936,0.0,01/26/8631 +-5.34173,47.97372,687,5,30,8,0,48,3.75,5.0,fr,7350,13,300993,1,1,Active Shallow Crust,128.8954,89.96751,0.0,05/30/0687 +-5.34173,47.97372,8994,2,18,22,51,10,3.95,15.0,fr,7351,179,301009,1,1,Active Shallow Crust,0.0,89.99148,0.0,02/18/8994 +-5.34173,47.97372,9117,8,2,21,48,9,4.05,15.0,fr,7352,182,301027,1,1,Active Shallow Crust,0.0,89.98848,-90.0,08/02/9117 +-5.34173,47.97372,1838,10,9,22,23,52,4.15,27.5,fr,7353,36,301034,1,1,Active Shallow Crust,0.0,89.98985,0.0,10/09/1838 +-5.34173,47.97372,5219,11,23,5,58,5,4.25,5.0,fr,7354,104,301044,1,1,Active Shallow Crust,0.0,89.99095,0.0,11/23/5219 +-1.72941,50.44759,7350,5,24,17,31,14,3.65,5.0,fr,7355,146,301455,1,1,Active Shallow Crust,240.0015,58.01296,0.0,05/24/7350 +-1.72941,50.44759,9096,5,16,2,9,25,3.95,15.0,fr,7356,181,301489,1,1,Active Shallow Crust,0.0,89.98987,0.0,05/16/9096 +-1.72941,50.44759,4993,2,17,13,13,32,4.05,5.0,fr,7357,99,301500,1,1,Active Shallow Crust,0.0,89.99007,0.0,02/17/4993 +-1.71501,42.16116,8464,7,10,4,37,13,3.55,5.0,fr,7358,169,301920,1,1,Active Shallow Crust,0.0,89.99065,0.0,07/10/8464 +-1.71501,42.16116,578,8,22,13,15,20,3.55,27.5,fr,7359,11,301922,1,1,Active Shallow Crust,0.0,89.99065,0.0,08/22/0578 +-1.71501,42.16116,3593,10,1,17,5,59,3.65,5.0,fr,7360,71,301932,1,1,Active Shallow Crust,0.0,89.99001,0.0,10/01/3593 +-1.71501,42.16116,5689,1,21,2,36,34,3.65,5.0,fr,7361,113,301935,1,1,Active Shallow Crust,240.0007,58.01292,0.0,01/21/5689 +-1.71501,42.16116,2688,2,18,6,31,44,3.75,15.0,fr,7362,53,301945,1,1,Active Shallow Crust,0.0,89.98961,0.0,02/18/2688 +-1.71501,42.16116,7415,10,15,1,24,30,3.95,5.0,fr,7363,148,301971,1,1,Active Shallow Crust,240.0193,58.00498,0.0,10/15/7415 +-1.71501,42.16116,2112,4,9,5,47,33,4.05,15.0,fr,7364,42,301981,1,2,Active Shallow Crust,0.0,89.98949,0.0,04/09/2112 +-1.71501,42.16116,7850,5,3,9,56,10,4.05,15.0,fr,7365,156,301981,1,2,Active Shallow Crust,0.0,89.98949,0.0,05/03/7850 +-1.71501,42.16116,3165,2,16,20,50,20,4.25,15.0,fr,7366,63,302014,1,1,Active Shallow Crust,128.895,89.98093,0.0,02/16/3165 +-2.63953,43.02385,16,1,26,18,10,8,3.55,5.0,fr,7367,0,302403,1,2,Active Shallow Crust,240.0118,57.99822,0.0,01/26/0016 +-2.63953,43.02385,7103,9,23,12,50,6,3.55,5.0,fr,7368,142,302403,1,2,Active Shallow Crust,240.0118,57.99822,0.0,09/23/7103 +-2.63953,43.02385,5175,1,15,23,46,36,3.65,5.0,fr,7369,103,302412,1,1,Active Shallow Crust,0.0,89.99014,0.0,01/15/5175 +-2.63953,43.02385,1972,4,2,21,38,26,3.65,15.0,fr,7370,39,302413,1,1,Active Shallow Crust,0.0,89.99014,0.0,04/02/1972 +-2.63953,43.02385,8270,2,10,10,50,3,3.75,5.0,fr,7371,165,302424,1,2,Active Shallow Crust,0.0,89.99122,0.0,02/10/8270 +-2.63953,43.02385,4013,11,4,8,5,13,3.75,5.0,fr,7372,80,302424,1,2,Active Shallow Crust,0.0,89.99122,0.0,11/04/4013 +-2.63953,43.02385,728,4,26,16,31,36,3.75,5.0,fr,7373,14,302433,1,1,Active Shallow Crust,128.897,89.96714,0.0,04/26/0728 +-2.63953,43.02385,7979,8,19,10,44,50,3.85,15.0,fr,7374,159,302437,1,1,Active Shallow Crust,0.0,89.98956,0.0,08/19/7979 +-2.63953,43.02385,2691,8,17,12,55,50,3.85,5.0,fr,7375,53,302439,1,1,Active Shallow Crust,240.0104,57.99776,0.0,08/17/2691 +-2.63953,43.02385,2629,11,10,2,4,24,3.95,5.0,fr,7376,52,302448,1,1,Active Shallow Crust,0.0,89.9907,0.0,11/10/2629 +-2.63953,43.02385,9875,12,22,9,40,57,3.95,15.0,fr,7377,197,302449,1,1,Active Shallow Crust,0.0,89.9907,0.0,12/22/9875 +-2.63953,43.02385,7973,9,21,23,52,21,4.05,5.0,fr,7378,159,302460,1,1,Active Shallow Crust,0.0,89.98964,0.0,09/21/7973 +-2.63953,43.02385,8948,11,6,0,48,6,4.05,27.5,fr,7379,178,302462,1,1,Active Shallow Crust,0.0,89.98964,0.0,11/06/8948 +-2.63953,43.02385,8193,12,30,23,38,6,4.65,5.0,fr,7380,163,302541,1,1,Active Shallow Crust,128.8921,89.98704,0.0,12/30/8193 +-2.63953,43.02385,8615,5,1,4,59,47,4.85,15.0,fr,7381,172,302557,1,1,Active Shallow Crust,0.0,89.9901,0.0,05/01/8615 +6.76597,45.24605,4139,7,11,23,14,6,3.55,5.0,fr,7382,82,302880,1,3,Active Shallow Crust,0.0,89.9929,0.0,07/11/4139 +6.76597,45.24605,3807,3,16,11,25,3,3.55,5.0,fr,7383,76,302880,1,3,Active Shallow Crust,0.0,89.9929,0.0,03/16/3807 +6.76597,45.24605,678,10,24,6,42,23,3.55,5.0,fr,7384,13,302880,1,3,Active Shallow Crust,0.0,89.9929,0.0,10/24/0678 +6.76597,45.24605,3326,4,20,11,41,50,3.55,27.5,fr,7385,66,302882,1,1,Active Shallow Crust,0.0,89.9929,0.0,04/20/3326 +6.76597,45.24605,947,10,7,6,8,9,3.55,5.0,fr,7386,18,302883,1,1,Active Shallow Crust,240.0131,57.99744,0.0,10/07/0947 +6.76597,45.24605,9399,9,24,11,4,18,3.55,15.0,fr,7387,187,302884,1,1,Active Shallow Crust,240.0131,57.99744,0.0,09/24/9399 +6.76597,45.24605,7277,10,3,3,23,11,3.55,27.5,fr,7388,145,302885,1,1,Active Shallow Crust,240.0131,57.99734,0.0,10/03/7277 +6.76597,45.24605,9843,10,14,16,30,47,3.55,27.5,fr,7389,196,302888,1,1,Active Shallow Crust,0.0,89.99282,-90.0,10/14/9843 +6.76597,45.24605,5089,12,4,15,45,28,3.65,27.5,fr,7390,101,302894,1,1,Active Shallow Crust,0.0,89.98734,0.0,12/04/5089 +6.76597,45.24605,33,1,9,17,48,3,3.65,27.5,fr,7391,0,302897,1,1,Active Shallow Crust,240.001,58.01322,0.0,01/09/0033 +6.76597,45.24605,8980,2,15,1,45,47,3.75,5.0,fr,7392,179,302907,1,1,Active Shallow Crust,240.0086,58.01727,0.0,02/15/8980 +6.76597,45.24605,9866,5,12,16,8,37,3.75,27.5,fr,7393,197,302912,1,1,Active Shallow Crust,0.0,89.98859,-90.0,05/12/9866 +6.76597,45.24605,2326,3,25,9,58,49,3.85,5.0,fr,7394,46,302922,1,3,Active Shallow Crust,0.0,89.98983,-90.0,03/25/2326 +6.76597,45.24605,7290,2,16,15,0,24,3.85,5.0,fr,7395,145,302922,1,3,Active Shallow Crust,0.0,89.98983,-90.0,02/16/7290 +6.76597,45.24605,5645,1,23,6,58,31,3.85,5.0,fr,7396,112,302922,1,3,Active Shallow Crust,0.0,89.98983,-90.0,01/23/5645 +6.76597,45.24605,2805,10,19,13,26,43,3.95,5.0,fr,7397,56,302931,1,1,Active Shallow Crust,240.0195,58.00557,0.0,10/19/2805 +6.76597,45.24605,212,3,14,19,36,35,4.15,27.5,fr,7398,4,302954,1,1,Active Shallow Crust,0.0,89.98933,0.0,03/14/0212 +6.76597,45.24605,5470,1,27,14,29,41,4.35,27.5,fr,7399,109,302978,1,1,Active Shallow Crust,0.0,89.98869,0.0,01/27/5470 +3.28688,45.2971,7491,12,4,9,51,43,3.55,5.0,fr,7400,149,303360,1,2,Active Shallow Crust,0.0,89.98936,0.0,12/04/7491 +3.28688,45.2971,7782,1,23,22,30,0,3.55,5.0,fr,7401,155,303360,1,2,Active Shallow Crust,0.0,89.98936,0.0,01/23/7782 +3.28688,45.2971,6945,12,29,23,25,46,3.55,5.0,fr,7402,138,303366,1,1,Active Shallow Crust,0.0,89.98923,-90.0,12/29/6945 +3.28688,45.2971,4072,1,6,21,50,6,3.55,15.0,fr,7403,81,303367,1,1,Active Shallow Crust,0.0,89.98923,-90.0,01/06/4072 +3.28688,45.2971,7565,8,22,7,26,33,3.65,15.0,fr,7404,151,303373,1,1,Active Shallow Crust,0.0,89.99052,0.0,08/22/7565 +3.28688,45.2971,8935,3,11,1,55,46,3.65,5.0,fr,7405,178,303375,1,1,Active Shallow Crust,240.0008,58.01306,0.0,03/11/8935 +3.28688,45.2971,5833,11,4,16,22,19,3.85,5.0,fr,7406,116,303396,1,1,Active Shallow Crust,0.0,89.98996,0.0,11/04/5833 +3.28688,45.2971,2891,1,26,8,14,26,3.85,5.0,fr,7407,57,303405,1,1,Active Shallow Crust,128.8955,89.99372,0.0,01/26/2891 +3.28688,45.2971,6032,7,8,8,12,24,3.85,15.0,fr,7408,120,303406,1,1,Active Shallow Crust,128.8955,89.99372,0.0,07/08/6032 +3.28688,45.2971,6865,10,9,14,7,34,4.05,15.0,fr,7409,137,303424,1,1,Active Shallow Crust,240.0057,58.00613,0.0,10/09/6865 +3.28688,45.2971,1454,3,26,12,42,32,4.25,15.0,fr,7410,29,303445,1,1,Active Shallow Crust,0.0,89.99049,0.0,03/26/1454 +3.28688,45.2971,1048,8,23,8,15,3,4.65,5.0,fr,7411,20,303495,1,1,Active Shallow Crust,240.0105,57.99417,0.0,08/23/1048 +3.28688,45.2971,1621,4,24,3,22,39,4.85,5.0,fr,7412,32,303516,1,1,Active Shallow Crust,0.0,89.98968,0.0,04/24/1621 +3.28688,45.2971,7911,4,26,8,17,9,5.35,5.0,fr,7413,158,303576,1,1,Active Shallow Crust,0.0,89.99017,0.0,04/26/7911 +8.98315,49.72765,9044,5,2,8,25,35,3.55,5.0,fr,7414,180,303840,1,1,Active Shallow Crust,0.0,89.98696,0.0,05/02/9044 +8.98315,49.72765,6466,6,20,14,24,53,3.65,15.0,fr,7415,129,303853,1,1,Active Shallow Crust,0.0,89.98838,0.0,06/20/6466 +8.98315,49.72765,318,7,3,10,52,9,3.65,27.5,fr,7416,6,303863,1,1,Active Shallow Crust,128.9024,89.96222,0.0,07/03/0318 +8.98315,49.72765,4485,4,6,20,29,5,3.75,5.0,fr,7417,89,303864,1,1,Active Shallow Crust,0.0,89.98965,0.0,04/06/4485 +8.98315,49.72765,2260,8,2,12,17,48,4.05,5.0,fr,7418,45,303900,1,1,Active Shallow Crust,0.0,89.99267,0.0,08/02/2260 +8.98315,49.72765,7488,6,23,16,51,54,4.35,5.0,fr,7419,149,303936,1,1,Active Shallow Crust,0.0,89.98962,0.0,06/23/7488 +8.98315,49.72765,1107,1,8,23,17,36,4.65,5.0,fr,7420,22,303972,1,1,Active Shallow Crust,0.0,89.98898,0.0,01/08/1107 +8.98315,49.72765,4230,1,20,0,38,31,5.35,5.0,fr,7421,84,304056,1,1,Active Shallow Crust,0.0,89.99015,0.0,01/20/4230 +-3.04121,42.55653,5067,9,24,2,44,42,3.55,5.0,fr,7422,101,304320,1,2,Active Shallow Crust,0.0,89.98886,0.0,09/24/5067 +-3.04121,42.55653,9327,10,8,2,51,52,3.55,5.0,fr,7423,186,304320,1,2,Active Shallow Crust,0.0,89.98886,0.0,10/08/9327 +-3.04121,42.55653,5213,6,3,20,37,22,3.65,5.0,fr,7424,104,304332,1,1,Active Shallow Crust,0.0,89.99007,0.0,06/03/5213 +-3.04121,42.55653,4266,10,17,14,35,56,3.75,5.0,fr,7425,85,304344,1,1,Active Shallow Crust,0.0,89.99115,0.0,10/17/4266 +-3.04121,42.55653,4927,8,11,4,36,30,3.75,15.0,fr,7426,98,304345,1,1,Active Shallow Crust,0.0,89.99115,0.0,08/11/4927 +-3.04121,42.55653,9797,7,3,20,33,25,3.85,5.0,fr,7427,195,304365,1,1,Active Shallow Crust,128.8958,89.99343,0.0,07/03/9797 +-3.04121,42.55653,4238,12,26,3,26,42,3.95,5.0,fr,7428,84,304368,1,1,Active Shallow Crust,0.0,89.99062,0.0,12/26/4238 +-3.04121,42.55653,131,6,12,0,5,24,3.95,15.0,fr,7429,2,304369,1,1,Active Shallow Crust,0.0,89.99062,0.0,06/12/0131 +4.41894,51.03143,7891,4,14,3,50,6,3.55,5.0,fr,7430,157,304800,1,1,Active Shallow Crust,0.0,89.98732,0.0,04/14/7891 +4.41894,51.03143,1379,7,31,7,46,2,4.25,15.0,fr,7431,27,304885,1,1,Active Shallow Crust,0.0,89.98867,0.0,07/31/1379 +4.41894,51.03143,2462,9,29,20,1,4,4.25,5.0,fr,7432,49,304890,1,1,Active Shallow Crust,0.0,89.9914,-90.0,09/29/2462 +4.41894,51.03143,8512,11,1,6,20,40,4.25,5.0,fr,7433,170,304893,1,1,Active Shallow Crust,128.893,89.98112,0.0,11/01/8512 +4.41894,51.03143,2443,10,12,0,3,44,4.65,5.0,fr,7434,48,304938,1,1,Active Shallow Crust,0.0,89.98915,-90.0,10/12/2443 +4.41894,51.03143,7974,10,30,4,8,33,4.85,15.0,fr,7435,159,304963,1,1,Active Shallow Crust,0.0,89.98994,-90.0,10/30/7974 +7.59565,45.6047,9010,7,18,12,19,31,3.55,5.0,fr,7436,180,305280,1,2,Active Shallow Crust,0.0,89.99294,0.0,07/18/9010 +7.59565,45.6047,2822,1,24,11,48,38,3.55,5.0,fr,7437,56,305280,1,2,Active Shallow Crust,0.0,89.99294,0.0,01/24/2822 +7.59565,45.6047,7367,10,4,7,22,43,3.65,5.0,fr,7438,147,305292,1,1,Active Shallow Crust,0.0,89.98743,0.0,10/04/7367 +7.59565,45.6047,7883,9,30,20,41,6,3.85,5.0,fr,7439,157,305322,1,1,Active Shallow Crust,0.0,89.9899,-90.0,09/30/7883 +7.59565,45.6047,8641,4,29,16,46,0,3.95,5.0,fr,7440,172,305328,1,1,Active Shallow Crust,0.0,89.9911,0.0,04/29/8641 +7.59565,45.6047,7851,3,25,1,31,36,4.25,5.0,fr,7441,157,305364,1,1,Active Shallow Crust,0.0,89.99055,0.0,03/25/7851 +7.59565,45.6047,5246,4,23,21,48,43,4.25,5.0,fr,7442,104,305367,1,2,Active Shallow Crust,240.0077,57.99365,0.0,04/23/5246 +7.59565,45.6047,9052,4,3,17,28,25,4.25,5.0,fr,7443,181,305367,1,2,Active Shallow Crust,240.0077,57.99365,0.0,04/03/9052 +7.59565,45.6047,6481,10,30,8,36,7,4.45,27.5,fr,7444,129,305390,1,1,Active Shallow Crust,0.0,89.98999,0.0,10/30/6481 +7.59565,45.6047,6207,11,17,8,13,48,4.85,5.0,fr,7445,124,305445,1,1,Active Shallow Crust,128.8932,89.98898,0.0,11/17/6207 +-1.60428,49.12781,7399,2,13,12,27,17,3.55,5.0,fr,7446,147,305760,1,1,Active Shallow Crust,0.0,89.9901,0.0,02/13/7399 +-1.60428,49.12781,4457,12,17,17,52,29,3.55,15.0,fr,7447,89,305764,1,1,Active Shallow Crust,240.0123,57.9982,0.0,12/17/4457 +-1.60428,49.12781,7227,1,30,16,5,10,3.55,5.0,fr,7448,144,305766,1,1,Active Shallow Crust,0.0,89.98999,-90.0,01/30/7227 +-1.60428,49.12781,9942,12,17,6,2,35,3.55,5.0,fr,7449,198,305769,1,2,Active Shallow Crust,128.8961,89.9934,0.0,12/17/9942 +-1.60428,49.12781,8504,10,26,6,29,14,3.55,5.0,fr,7450,170,305769,1,2,Active Shallow Crust,128.8961,89.9934,0.0,10/26/8504 +-1.60428,49.12781,7369,12,19,18,37,17,3.65,5.0,fr,7451,147,305772,1,2,Active Shallow Crust,0.0,89.98971,0.0,12/19/7369 +-1.60428,49.12781,9060,1,5,1,31,45,3.65,5.0,fr,7452,181,305772,1,2,Active Shallow Crust,0.0,89.98971,0.0,01/05/9060 +-1.60428,49.12781,2432,8,8,15,11,59,3.65,15.0,fr,7453,48,305773,1,1,Active Shallow Crust,0.0,89.98971,0.0,08/08/2432 +-1.60428,49.12781,5117,2,24,21,27,48,3.65,5.0,fr,7454,102,305778,1,1,Active Shallow Crust,0.0,89.98959,-90.0,02/24/5117 +-1.60428,49.12781,5903,12,2,22,30,14,3.75,5.0,fr,7455,118,305784,1,3,Active Shallow Crust,0.0,89.98952,0.0,12/02/5903 +-1.60428,49.12781,759,10,25,1,55,32,3.75,5.0,fr,7456,15,305784,1,3,Active Shallow Crust,0.0,89.98952,0.0,10/25/0759 +-1.60428,49.12781,6716,5,9,14,34,49,3.75,5.0,fr,7457,134,305784,1,3,Active Shallow Crust,0.0,89.98952,0.0,05/09/6716 +-1.60428,49.12781,3256,12,7,15,50,13,3.75,15.0,fr,7458,65,305788,1,1,Active Shallow Crust,240.0088,58.0174,0.0,12/07/3256 +-1.60428,49.12781,7201,4,16,15,9,28,3.85,5.0,fr,7459,144,305796,1,1,Active Shallow Crust,0.0,89.98949,0.0,04/16/7201 +-1.60428,49.12781,2333,8,12,5,9,47,3.95,15.0,fr,7460,46,305809,1,2,Active Shallow Crust,0.0,89.98959,0.0,08/12/2333 +-1.60428,49.12781,2097,2,26,21,1,28,3.95,15.0,fr,7461,41,305809,1,2,Active Shallow Crust,0.0,89.98959,0.0,02/26/2097 +-1.60428,49.12781,6163,10,21,10,56,41,3.95,27.5,fr,7462,123,305813,1,1,Active Shallow Crust,240.0202,58.00504,0.0,10/21/6163 +-1.60428,49.12781,3555,9,5,23,35,34,4.05,5.0,fr,7463,71,305820,1,1,Active Shallow Crust,0.0,89.98979,0.0,09/05/3555 +-1.60428,49.12781,7663,7,24,8,44,13,4.05,15.0,fr,7464,153,305821,1,1,Active Shallow Crust,0.0,89.98979,0.0,07/24/7663 +-1.60428,49.12781,3252,7,31,17,30,58,4.15,15.0,fr,7465,65,305833,1,1,Active Shallow Crust,0.0,89.99007,0.0,07/31/3252 +-1.60428,49.12781,9788,1,24,22,59,17,4.25,5.0,fr,7466,195,305847,1,2,Active Shallow Crust,240.0081,57.9943,0.0,01/24/9788 +-1.60428,49.12781,534,12,21,5,26,44,4.25,5.0,fr,7467,10,305847,1,2,Active Shallow Crust,240.0081,57.9943,0.0,12/21/0534 +-1.60428,49.12781,1190,2,22,22,31,24,4.35,5.0,fr,7468,23,305865,1,1,Active Shallow Crust,128.8973,89.98265,0.0,02/22/1190 +-1.60428,49.12781,8724,4,6,3,21,13,4.45,5.0,fr,7469,174,305868,1,1,Active Shallow Crust,0.0,89.99005,0.0,04/06/8724 +-1.60428,49.12781,3604,4,22,17,15,56,4.55,5.0,fr,7470,72,305880,1,1,Active Shallow Crust,0.0,89.99009,0.0,04/22/3604 +2.71194,44.9466,9058,11,21,1,32,36,3.55,5.0,fr,7471,181,306240,1,1,Active Shallow Crust,0.0,89.9893,0.0,11/21/9058 +2.71194,44.9466,2387,3,25,12,4,43,3.65,15.0,fr,7472,47,306253,1,1,Active Shallow Crust,0.0,89.99046,0.0,03/25/2387 +2.71194,44.9466,1333,7,30,0,36,35,4.05,5.0,fr,7473,26,306300,1,1,Active Shallow Crust,0.0,89.98997,0.0,07/30/1333 +2.71194,44.9466,4120,12,17,8,44,31,4.55,5.0,fr,7474,82,306360,1,1,Active Shallow Crust,0.0,89.98985,0.0,12/17/4120 +4.03135,42.89794,5382,8,15,13,43,46,3.65,5.0,fr,7475,107,306732,1,1,Active Shallow Crust,0.0,89.98683,0.0,08/15/5382 +4.03135,42.89794,9367,2,10,3,15,59,3.65,27.5,fr,7476,187,306734,1,1,Active Shallow Crust,0.0,89.98683,0.0,02/10/9367 +4.03135,42.89794,4155,4,3,20,51,54,3.75,15.0,fr,7477,83,306745,1,1,Active Shallow Crust,0.0,89.98827,0.0,04/03/4155 +4.03135,42.89794,2465,3,7,3,5,49,3.85,5.0,fr,7478,49,306756,1,1,Active Shallow Crust,0.0,89.98954,0.0,03/07/2465 +4.03135,42.89794,759,2,25,19,15,58,3.95,5.0,fr,7479,15,306774,1,1,Active Shallow Crust,0.0,89.99057,-90.0,02/25/0759 +4.03135,42.89794,8153,12,2,14,22,7,4.25,15.0,fr,7480,163,306805,1,1,Active Shallow Crust,0.0,89.9901,0.0,12/02/8153 +4.03135,42.89794,53,6,13,21,1,25,4.55,5.0,fr,7481,1,306840,1,1,Active Shallow Crust,0.0,89.99065,0.0,06/13/0053 +4.03135,42.89794,2260,4,27,14,28,3,4.65,5.0,fr,7482,45,306852,1,1,Active Shallow Crust,0.0,89.98959,0.0,04/27/2260 +0.64252,50.44822,1025,6,29,12,43,59,3.55,5.0,fr,7483,20,307206,1,1,Active Shallow Crust,0.0,89.99026,-90.0,06/29/1025 +0.64252,50.44822,841,2,14,13,46,12,3.75,5.0,fr,7484,16,307224,1,1,Active Shallow Crust,0.0,89.9898,0.0,02/14/0841 +0.64252,50.44822,6016,12,4,21,24,24,4.05,5.0,fr,7485,120,307269,1,1,Active Shallow Crust,128.89,89.99368,0.0,12/04/6016 +0.64252,50.44822,2820,4,8,0,43,41,4.55,5.0,fr,7486,56,307320,1,1,Active Shallow Crust,0.0,89.9901,0.0,04/08/2820 +7.42274,48.42544,5832,11,5,0,2,25,3.55,5.0,fr,7487,116,307680,1,1,Active Shallow Crust,0.0,89.99331,0.0,11/05/5832 +7.42274,48.42544,8794,6,12,22,4,57,3.65,5.0,fr,7488,175,307692,1,2,Active Shallow Crust,0.0,89.98808,0.0,06/12/8794 +7.42274,48.42544,5213,5,27,0,23,27,3.65,5.0,fr,7489,104,307692,1,2,Active Shallow Crust,0.0,89.98808,0.0,05/27/5213 +7.42274,48.42544,4671,3,24,14,41,50,3.65,15.0,fr,7490,93,307693,1,1,Active Shallow Crust,0.0,89.98808,0.0,03/24/4671 +7.42274,48.42544,7418,8,12,0,12,15,3.75,15.0,fr,7491,148,307705,1,2,Active Shallow Crust,0.0,89.98937,0.0,08/12/7418 +7.42274,48.42544,1098,7,11,5,50,8,3.75,15.0,fr,7492,21,307705,1,2,Active Shallow Crust,0.0,89.98937,0.0,07/11/1098 +7.42274,48.42544,3196,3,2,23,42,50,3.85,5.0,fr,7493,63,307716,1,3,Active Shallow Crust,0.0,89.99052,0.0,03/02/3196 +7.42274,48.42544,878,6,28,6,11,43,3.85,5.0,fr,7494,17,307716,1,3,Active Shallow Crust,0.0,89.99052,0.0,06/28/0878 +7.42274,48.42544,6426,4,24,21,26,30,3.85,5.0,fr,7495,128,307716,1,3,Active Shallow Crust,0.0,89.99052,0.0,04/24/6426 +7.42274,48.42544,6859,11,22,22,12,34,3.85,27.5,fr,7496,137,307718,1,1,Active Shallow Crust,0.0,89.99052,0.0,11/22/6859 +7.42274,48.42544,346,5,5,1,48,22,3.95,5.0,fr,7497,6,307728,1,2,Active Shallow Crust,0.0,89.99155,0.0,05/05/0346 +7.42274,48.42544,9085,11,13,21,41,36,3.95,5.0,fr,7498,181,307728,1,2,Active Shallow Crust,0.0,89.99155,0.0,11/13/9085 +7.42274,48.42544,5362,5,18,8,24,52,4.05,5.0,fr,7499,107,307740,1,1,Active Shallow Crust,0.0,89.98871,0.0,05/18/5362 +7.42274,48.42544,8841,7,23,3,7,2,4.15,5.0,fr,7500,176,307752,1,2,Active Shallow Crust,0.0,89.98994,0.0,07/23/8841 +7.42274,48.42544,8230,11,17,17,56,36,4.15,5.0,fr,7501,164,307752,1,2,Active Shallow Crust,0.0,89.98994,0.0,11/17/8230 +7.42274,48.42544,4704,5,30,14,10,22,4.45,15.0,fr,7502,94,307792,1,1,Active Shallow Crust,240.0053,57.99511,0.0,05/30/4704 +7.422326,48.42592,1332,11,6,23,19,42,6.15,5.09789,fr,7503,26,307995,1,1,Active Shallow Crust,240.0687,57.99916,0.0,11/06/1332 +4.24212,42.25807,6242,3,19,7,22,6,3.55,15.0,fr,7504,124,308161,1,1,Active Shallow Crust,0.0,89.99254,0.0,03/19/6242 +4.24212,42.25807,8020,10,22,6,56,1,3.55,5.0,fr,7505,160,308166,1,1,Active Shallow Crust,0.0,89.99245,-90.0,10/22/8020 +4.24212,42.25807,6134,5,17,7,34,58,3.65,5.0,fr,7506,122,308172,1,1,Active Shallow Crust,0.0,89.98669,0.0,05/17/6134 +4.24212,42.25807,6393,7,17,12,16,17,3.65,15.0,fr,7507,127,308173,1,1,Active Shallow Crust,0.0,89.98669,0.0,07/17/6393 +4.24212,42.25807,1025,5,18,2,8,34,3.75,15.0,fr,7508,20,308191,1,1,Active Shallow Crust,0.0,89.98801,-90.0,05/18/1025 +4.24212,42.25807,718,5,26,5,44,41,4.85,15.0,fr,7509,14,308326,1,1,Active Shallow Crust,128.8941,89.98877,0.0,05/26/0718 +2.71482,47.65642,9210,9,15,6,12,15,3.55,5.0,fr,7510,184,308643,1,1,Active Shallow Crust,240.013,57.99831,0.0,09/15/9210 +2.71482,47.65642,7271,3,23,4,20,18,3.65,5.0,fr,7511,145,308652,1,1,Active Shallow Crust,0.0,89.99092,0.0,03/23/7271 +2.71482,47.65642,9282,6,28,17,48,37,3.65,15.0,fr,7512,185,308656,1,1,Active Shallow Crust,240.0014,58.01291,0.0,06/28/9282 +-0.71484,49.58635,8681,1,30,14,59,1,3.55,15.0,fr,7513,173,309121,1,1,Active Shallow Crust,0.0,89.9902,0.0,01/30/8681 +-0.71484,49.58635,2722,10,28,22,22,38,3.65,5.0,fr,7514,54,309132,1,1,Active Shallow Crust,0.0,89.98981,0.0,10/28/2722 +-0.71484,49.58635,9030,5,20,1,39,22,3.65,5.0,fr,7515,180,309138,1,1,Active Shallow Crust,0.0,89.98969,-90.0,05/20/9030 +-0.71484,49.58635,8547,8,4,21,49,52,3.75,15.0,fr,7516,170,309151,1,1,Active Shallow Crust,0.0,89.99015,-90.0,08/04/8547 +-0.71484,49.58635,495,5,4,19,34,1,3.85,27.5,fr,7517,9,309161,1,1,Active Shallow Crust,240.0113,57.99778,0.0,05/04/0495 +-0.71484,49.58635,4883,9,5,9,43,29,3.95,5.0,fr,7518,97,309168,1,1,Active Shallow Crust,0.0,89.9902,0.0,09/05/4883 +-0.71484,49.58635,4685,11,15,3,57,56,3.95,27.5,fr,7519,93,309170,1,1,Active Shallow Crust,0.0,89.9902,0.0,11/15/4685 +-0.71484,49.58635,2682,6,2,11,27,22,4.05,15.0,fr,7520,53,309181,1,1,Active Shallow Crust,0.0,89.98989,0.0,06/02/2682 +-0.71484,49.58635,6225,8,11,20,9,37,4.25,5.0,fr,7521,124,309207,1,1,Active Shallow Crust,240.0083,57.99422,0.0,08/11/6225 +2.45459,41.31956,8925,10,23,14,20,32,3.55,5.0,fr,7522,178,309600,1,1,Active Shallow Crust,0.0,89.98864,0.0,10/23/8925 +2.45459,41.31956,7240,8,3,10,42,45,3.55,5.0,fr,7523,144,309603,1,1,Active Shallow Crust,240.0125,57.9974,0.0,08/03/7240 +2.45459,41.31956,884,3,11,13,59,32,3.55,5.0,fr,7524,17,309609,1,1,Active Shallow Crust,128.8966,89.99432,0.0,03/11/0884 +2.45459,41.31956,2314,7,3,6,3,49,3.65,5.0,fr,7525,46,309612,1,2,Active Shallow Crust,0.0,89.98988,0.0,07/03/2314 +2.45459,41.31956,8747,7,11,23,41,27,3.65,5.0,fr,7526,174,309612,1,2,Active Shallow Crust,0.0,89.98988,0.0,07/11/8747 +2.45459,41.31956,3027,10,29,13,42,21,3.65,15.0,fr,7527,60,309613,1,1,Active Shallow Crust,0.0,89.98988,0.0,10/29/3027 +2.45459,41.31956,273,12,31,7,32,22,3.65,27.5,fr,7528,5,309623,1,1,Active Shallow Crust,128.9017,89.96342,0.0,12/31/0273 +2.45459,41.31956,3328,6,2,13,9,27,3.75,5.0,fr,7529,66,309624,1,1,Active Shallow Crust,0.0,89.99097,0.0,06/02/3328 +2.45459,41.31956,3075,12,22,22,57,58,3.75,15.0,fr,7530,61,309625,1,1,Active Shallow Crust,0.0,89.99097,0.0,12/22/3075 +2.45459,41.31956,2629,7,20,5,59,31,3.75,5.0,fr,7531,52,309627,1,1,Active Shallow Crust,240.0077,58.01756,0.0,07/20/2629 +2.45459,41.31956,3781,2,20,17,25,45,3.85,15.0,fr,7532,75,309637,1,1,Active Shallow Crust,0.0,89.98927,0.0,02/20/3781 +2.45459,41.31956,2206,9,15,13,28,22,3.95,5.0,fr,7533,44,309651,1,1,Active Shallow Crust,240.0191,58.00515,0.0,09/15/2206 +2.45459,41.31956,8852,10,8,7,58,30,4.05,5.0,fr,7534,177,309660,1,1,Active Shallow Crust,0.0,89.98935,0.0,10/08/8852 +2.45459,41.31956,504,10,28,3,17,12,4.05,15.0,fr,7535,10,309661,1,1,Active Shallow Crust,0.0,89.98935,0.0,10/28/0504 +2.45459,41.31956,9835,1,31,23,13,11,4.05,5.0,fr,7536,196,309666,1,1,Active Shallow Crust,0.0,89.98923,-90.0,01/31/9835 +2.45459,41.31956,6109,1,2,11,23,43,4.15,15.0,fr,7537,122,309676,1,1,Active Shallow Crust,240.0078,57.99704,0.0,01/02/6109 +2.45459,41.31956,5219,3,23,4,33,23,4.25,5.0,fr,7538,104,309684,1,1,Active Shallow Crust,0.0,89.98985,0.0,03/23/5219 +2.45459,41.31956,4708,3,18,12,54,18,4.25,15.0,fr,7539,94,309685,1,1,Active Shallow Crust,0.0,89.98985,0.0,03/18/4708 +2.45459,41.31956,6895,1,22,18,41,2,4.45,5.0,fr,7540,137,309708,1,1,Active Shallow Crust,0.0,89.99059,0.0,01/22/6895 +2.45459,41.31956,952,12,29,21,28,31,4.55,5.0,fr,7541,19,309723,1,1,Active Shallow Crust,240.0078,57.9972,0.0,12/29/0952 +2.45459,41.31956,5274,7,21,11,33,27,4.55,5.0,fr,7542,105,309726,1,1,Active Shallow Crust,0.0,89.99031,-90.0,07/21/5274 +2.45459,41.31956,7023,4,8,17,51,17,4.65,5.0,fr,7543,140,309735,1,1,Active Shallow Crust,240.0092,57.99406,0.0,04/08/7023 +2.45459,41.31956,2120,10,22,5,41,3,5.25,5.0,fr,7544,42,309804,1,1,Active Shallow Crust,0.0,89.98984,0.0,10/22/2120 +2.45459,41.31956,1275,2,12,5,43,14,5.45,15.0,fr,7545,25,309829,1,1,Active Shallow Crust,0.0,89.9898,0.0,02/12/1275 +2.98156,45.77073,4180,10,23,16,7,15,3.55,5.0,fr,7546,83,310080,1,5,Active Shallow Crust,0.0,89.98945,0.0,10/23/4180 +2.98156,45.77073,5904,5,6,15,54,26,3.55,5.0,fr,7547,118,310080,1,5,Active Shallow Crust,0.0,89.98945,0.0,05/06/5904 +2.98156,45.77073,8330,6,24,11,30,50,3.55,5.0,fr,7548,166,310080,1,5,Active Shallow Crust,0.0,89.98945,0.0,06/24/8330 +2.98156,45.77073,3031,9,2,4,36,39,3.55,5.0,fr,7549,60,310080,1,5,Active Shallow Crust,0.0,89.98945,0.0,09/02/3031 +2.98156,45.77073,643,4,12,13,57,21,3.55,5.0,fr,7550,12,310080,1,5,Active Shallow Crust,0.0,89.98945,0.0,04/12/0643 +2.98156,45.77073,3787,2,23,15,55,29,3.55,15.0,fr,7551,75,310081,1,3,Active Shallow Crust,0.0,89.98945,0.0,02/23/3787 +2.98156,45.77073,4979,5,21,4,34,21,3.55,15.0,fr,7552,99,310081,1,3,Active Shallow Crust,0.0,89.98945,0.0,05/21/4979 +2.98156,45.77073,5701,3,30,7,25,28,3.55,15.0,fr,7553,114,310081,1,3,Active Shallow Crust,0.0,89.98945,0.0,03/30/5701 +2.98156,45.77073,9978,2,12,6,38,10,3.55,5.0,fr,7554,199,310083,1,1,Active Shallow Crust,240.0116,57.99827,0.0,02/12/9978 +2.98156,45.77073,7084,12,13,12,59,35,3.55,15.0,fr,7555,141,310084,1,1,Active Shallow Crust,240.0116,57.99827,0.0,12/13/7084 +2.98156,45.77073,9958,1,31,2,7,54,3.55,5.0,fr,7556,199,310086,1,1,Active Shallow Crust,0.0,89.98933,-90.0,01/31/9958 +2.98156,45.77073,6236,10,9,13,33,47,3.55,15.0,fr,7557,124,310087,1,1,Active Shallow Crust,0.0,89.98933,-90.0,10/09/6236 +2.98156,45.77073,3413,2,15,16,41,47,3.65,5.0,fr,7558,68,310092,1,6,Active Shallow Crust,0.0,89.99059,0.0,02/15/3413 +2.98156,45.77073,7851,6,11,6,31,51,3.65,5.0,fr,7559,157,310092,1,6,Active Shallow Crust,0.0,89.99059,0.0,06/11/7851 +2.98156,45.77073,7044,8,9,8,51,14,3.65,5.0,fr,7560,140,310092,1,6,Active Shallow Crust,0.0,89.99059,0.0,08/09/7044 +2.98156,45.77073,4852,3,24,9,23,49,3.65,5.0,fr,7561,97,310092,1,6,Active Shallow Crust,0.0,89.99059,0.0,03/24/4852 +2.98156,45.77073,2399,11,8,9,8,0,3.65,5.0,fr,7562,47,310092,1,6,Active Shallow Crust,0.0,89.99059,0.0,11/08/2399 +2.98156,45.77073,3738,9,30,22,17,3,3.65,5.0,fr,7563,74,310092,1,6,Active Shallow Crust,0.0,89.99059,0.0,09/30/3738 +2.98156,45.77073,7929,12,20,12,13,57,3.65,15.0,fr,7564,158,310093,1,2,Active Shallow Crust,0.0,89.99059,0.0,12/20/7929 +2.98156,45.77073,1928,9,28,9,18,43,3.65,15.0,fr,7565,38,310093,1,2,Active Shallow Crust,0.0,89.99059,0.0,09/28/1928 +2.98156,45.77073,4278,2,24,22,33,43,3.65,5.0,fr,7566,85,310095,1,2,Active Shallow Crust,240.0012,58.01255,0.0,02/24/4278 +2.98156,45.77073,3135,8,18,5,20,27,3.65,5.0,fr,7567,62,310095,1,2,Active Shallow Crust,240.0012,58.01255,0.0,08/18/3135 +2.98156,45.77073,7467,10,11,20,40,48,3.65,5.0,fr,7568,149,310098,1,1,Active Shallow Crust,0.0,89.99049,-90.0,10/11/7467 +2.98156,45.77073,9165,11,5,13,10,55,3.75,5.0,fr,7569,183,310104,1,2,Active Shallow Crust,0.0,89.98882,0.0,11/05/9165 +2.98156,45.77073,1597,12,4,4,13,22,3.75,5.0,fr,7570,31,310104,1,2,Active Shallow Crust,0.0,89.98882,0.0,12/04/1597 +2.98156,45.77073,8423,5,21,12,52,16,3.85,5.0,fr,7571,168,310116,1,1,Active Shallow Crust,0.0,89.99004,0.0,05/21/8423 +2.98156,45.77073,2444,4,5,7,58,38,3.95,5.0,fr,7572,48,310128,1,2,Active Shallow Crust,0.0,89.98891,0.0,04/05/2444 +2.98156,45.77073,3234,10,21,8,54,15,3.95,5.0,fr,7573,64,310128,1,2,Active Shallow Crust,0.0,89.98891,0.0,10/21/3234 +2.98156,45.77073,8783,5,7,19,40,23,3.95,15.0,fr,7574,175,310132,1,1,Active Shallow Crust,240.0196,58.00507,0.0,05/07/8783 +2.98156,45.77073,6313,4,17,9,48,44,3.95,5.0,fr,7575,126,310134,1,1,Active Shallow Crust,0.0,89.99102,-90.0,04/17/6313 +2.98156,45.77073,8515,8,29,0,10,46,3.95,5.0,fr,7576,170,310137,1,1,Active Shallow Crust,128.9003,89.99445,0.0,08/29/8515 +2.98156,45.77073,6750,4,18,4,34,20,4.05,5.0,fr,7577,134,310140,1,1,Active Shallow Crust,0.0,89.99011,0.0,04/18/6750 +2.98156,45.77073,7677,10,23,19,35,22,4.25,5.0,fr,7578,153,310164,1,1,Active Shallow Crust,0.0,89.99057,0.0,10/23/7677 +2.98156,45.77073,673,12,1,3,36,19,4.25,5.0,fr,7579,13,310173,1,1,Active Shallow Crust,128.8944,89.98092,0.0,12/01/0673 +2.98156,45.77073,3684,6,16,0,22,59,4.35,5.0,fr,7580,73,310176,1,1,Active Shallow Crust,0.0,89.9902,0.0,06/16/3684 +2.98156,45.77073,4851,2,9,18,10,31,4.35,5.0,fr,7581,97,310185,1,1,Active Shallow Crust,128.898,89.98275,0.0,02/09/4851 +2.98156,45.77073,5108,5,12,18,12,44,4.65,5.0,fr,7582,102,310212,1,1,Active Shallow Crust,0.0,89.99009,0.0,05/12/5108 +2.98156,45.77073,9801,6,19,23,40,46,5.15,5.0,fr,7583,196,310272,1,2,Active Shallow Crust,0.0,89.98997,0.0,06/19/9801 +2.98156,45.77073,9655,5,11,21,55,4,5.15,5.0,fr,7584,193,310272,1,2,Active Shallow Crust,0.0,89.98997,0.0,05/11/9655 +2.98156,45.77073,7998,12,6,21,8,31,5.25,5.0,fr,7585,159,310284,1,1,Active Shallow Crust,0.0,89.99006,0.0,12/06/7998 +2.98156,45.77073,7571,2,4,14,55,13,5.35,15.0,fr,7586,151,310297,1,1,Active Shallow Crust,0.0,89.98981,0.0,02/04/7571 +4.5813,47.16947,8936,7,16,10,6,18,3.65,5.0,fr,7587,178,310572,1,1,Active Shallow Crust,0.0,89.98778,0.0,07/16/8936 +4.5813,47.16947,9707,4,3,21,5,23,3.75,27.5,fr,7588,194,310592,1,1,Active Shallow Crust,0.0,89.98898,-90.0,04/03/9707 +4.5813,47.16947,9433,8,8,23,6,35,3.85,5.0,fr,7589,188,310596,1,1,Active Shallow Crust,0.0,89.9903,0.0,08/08/9433 +4.5813,47.16947,3483,7,16,4,10,26,3.95,5.0,fr,7590,69,310608,1,1,Active Shallow Crust,0.0,89.99135,0.0,07/16/3483 +4.5813,47.16947,7363,7,29,2,12,40,4.25,5.0,fr,7591,147,310647,1,1,Active Shallow Crust,240.0081,57.99382,0.0,07/29/7363 +4.5813,47.16947,1426,9,2,16,30,40,4.35,5.0,fr,7592,28,310656,1,2,Active Shallow Crust,0.0,89.98908,0.0,09/02/1426 +4.5813,47.16947,4892,1,13,15,0,10,4.35,5.0,fr,7593,97,310656,1,2,Active Shallow Crust,0.0,89.98908,0.0,01/13/4892 +4.5813,47.16947,3950,10,19,7,29,16,4.35,5.0,fr,7594,78,310659,1,1,Active Shallow Crust,240.0087,57.99606,0.0,10/19/3950 +4.5813,47.16947,1680,6,24,19,3,29,4.35,27.5,fr,7595,33,310664,1,1,Active Shallow Crust,0.0,89.98895,-90.0,06/24/1680 +4.5813,47.16947,8420,6,16,2,4,45,4.65,5.0,fr,7596,168,310692,1,1,Active Shallow Crust,0.0,89.99034,0.0,06/16/8420 +4.5813,47.16947,1039,6,19,11,20,34,4.95,15.0,fr,7597,20,310732,1,1,Active Shallow Crust,240.0124,58.00446,0.0,06/19/1039 +4.24084,46.60641,7856,12,8,7,23,14,3.55,5.0,fr,7598,157,311040,1,1,Active Shallow Crust,0.0,89.99307,0.0,12/08/7856 +4.24084,46.60641,4360,6,23,14,36,24,3.55,27.5,fr,7599,87,311045,1,1,Active Shallow Crust,240.0114,57.9991,0.0,06/23/4360 +4.24084,46.60641,9530,12,2,10,36,37,3.55,5.0,fr,7600,190,311046,1,1,Active Shallow Crust,0.0,89.99299,-90.0,12/02/9530 +4.24084,46.60641,1258,10,1,12,52,6,3.55,5.0,fr,7601,25,311049,1,1,Active Shallow Crust,128.8975,89.99307,0.0,10/01/1258 +4.24084,46.60641,3120,7,17,22,43,1,3.65,5.0,fr,7602,62,311052,1,1,Active Shallow Crust,0.0,89.98765,0.0,07/17/3120 +4.24084,46.60641,3475,10,18,7,31,46,3.65,5.0,fr,7603,69,311055,1,1,Active Shallow Crust,240.002,58.01217,0.0,10/18/3475 +4.24084,46.60641,1942,6,7,12,39,2,3.75,5.0,fr,7604,38,311064,1,2,Active Shallow Crust,0.0,89.98899,0.0,06/07/1942 +4.24084,46.60641,4187,1,9,15,23,48,3.75,5.0,fr,7605,83,311064,1,2,Active Shallow Crust,0.0,89.98899,0.0,01/09/4187 +4.24084,46.60641,7709,3,23,17,38,50,3.75,15.0,fr,7606,154,311065,1,1,Active Shallow Crust,0.0,89.98899,0.0,03/23/7709 +4.24084,46.60641,9365,2,3,15,6,33,4.05,5.0,fr,7607,187,311100,1,2,Active Shallow Crust,0.0,89.98831,0.0,02/03/9365 +4.24084,46.60641,3234,6,24,12,8,6,4.05,5.0,fr,7608,64,311100,1,2,Active Shallow Crust,0.0,89.98831,0.0,06/24/3234 +4.24084,46.60641,8993,8,24,13,28,19,4.05,27.5,fr,7609,179,311108,1,1,Active Shallow Crust,0.0,89.98817,-90.0,08/24/8993 +4.24084,46.60641,6231,3,25,7,54,49,4.25,5.0,fr,7610,124,311124,1,1,Active Shallow Crust,0.0,89.99072,0.0,03/25/6231 +4.24084,46.60641,6505,10,11,19,47,0,4.45,5.0,fr,7611,130,311157,1,1,Active Shallow Crust,128.8927,89.99263,0.0,10/11/6505 +1.72666,47.34305,635,8,28,1,55,29,3.55,5.0,fr,7612,12,311523,1,1,Active Shallow Crust,240.012,57.99817,0.0,08/28/0635 +1.72666,47.34305,7232,8,16,19,21,0,3.75,5.0,fr,7613,144,311553,1,1,Active Shallow Crust,128.8964,89.96738,0.0,08/16/7232 +1.72666,47.34305,8238,5,29,7,12,28,3.85,5.0,fr,7614,164,311559,1,1,Active Shallow Crust,240.0109,57.99804,0.0,05/29/8238 +1.72666,47.34305,3368,8,9,5,44,4,4.05,5.0,fr,7615,67,311589,1,1,Active Shallow Crust,128.8902,89.99376,0.0,08/09/3368 +1.72666,47.34305,7873,6,12,12,48,2,4.15,5.0,fr,7616,157,311592,1,1,Active Shallow Crust,0.0,89.98972,0.0,06/12/7873 +1.72666,47.34305,1224,5,14,2,2,54,4.15,5.0,fr,7617,24,311595,1,1,Active Shallow Crust,240.0086,57.99732,0.0,05/14/1224 +1.72666,47.34305,4257,9,25,6,32,59,4.45,5.0,fr,7618,85,311628,1,1,Active Shallow Crust,359.9997,89.9903,0.0,09/25/4257 +1.72666,47.34305,290,7,4,5,4,29,4.65,15.0,fr,7619,5,311662,1,1,Active Shallow Crust,128.8909,89.98702,0.0,07/04/0290 +1.72666,47.34305,8500,8,26,4,8,0,5.35,15.0,fr,7620,169,311737,1,1,Active Shallow Crust,359.9999,89.9901,0.0,08/26/8500 +-3.9021,49.61315,6460,1,4,15,25,42,4.55,27.5,fr,7621,129,312125,1,1,Active Shallow Crust,240.0104,57.99752,0.0,01/04/6460 +4.46504,45.33945,6325,11,11,21,10,10,3.55,5.0,fr,7622,126,312480,1,2,Active Shallow Crust,0.0,89.99291,0.0,11/11/6325 +4.46504,45.33945,6707,2,2,2,11,16,3.55,5.0,fr,7623,134,312480,1,2,Active Shallow Crust,0.0,89.99291,0.0,02/02/6707 +4.46504,45.33945,8112,8,31,4,25,53,3.65,5.0,fr,7624,162,312492,1,1,Active Shallow Crust,0.0,89.98737,0.0,08/31/8112 +4.46504,45.33945,886,12,24,2,11,38,3.65,15.0,fr,7625,17,312493,1,1,Active Shallow Crust,0.0,89.98737,0.0,12/24/0886 +4.46504,45.33945,3763,9,18,14,37,58,3.65,27.5,fr,7626,75,312494,1,1,Active Shallow Crust,0.0,89.98737,0.0,09/18/3763 +4.46504,45.33945,3598,4,3,1,11,54,3.65,5.0,fr,7627,71,312498,1,1,Active Shallow Crust,0.0,89.98722,-90.0,04/03/3598 +4.46504,45.33945,3670,12,25,14,34,53,3.65,27.5,fr,7628,73,312503,1,1,Active Shallow Crust,128.8999,89.9635,0.0,12/25/3670 +4.46504,45.33945,8187,10,2,12,40,20,3.75,5.0,fr,7629,163,312504,1,1,Active Shallow Crust,0.0,89.98874,0.0,10/02/8187 +4.46504,45.33945,9906,11,1,1,39,57,3.75,15.0,fr,7630,198,312514,1,1,Active Shallow Crust,128.8972,89.96687,0.0,11/01/9906 +4.46504,45.33945,2789,10,5,17,53,27,3.85,5.0,fr,7631,55,312516,1,1,Active Shallow Crust,0.0,89.98997,0.0,10/05/2789 +4.46504,45.33945,5655,9,7,9,15,3,3.95,15.0,fr,7632,113,312538,1,1,Active Shallow Crust,128.9002,89.99329,0.0,09/07/5655 +4.46504,45.33945,7188,4,20,3,22,39,4.15,5.0,fr,7633,143,312552,1,2,Active Shallow Crust,0.0,89.98934,0.0,04/20/7188 +4.46504,45.33945,1411,10,31,1,16,10,4.15,5.0,fr,7634,28,312552,1,2,Active Shallow Crust,0.0,89.98934,0.0,10/31/1411 +4.46504,45.33945,9694,10,4,19,47,51,4.55,5.0,fr,7635,193,312600,1,1,Active Shallow Crust,0.0,89.99104,0.0,10/04/9694 +4.46504,45.33945,6208,10,27,13,7,1,4.55,27.5,fr,7636,124,312602,1,1,Active Shallow Crust,0.0,89.99104,0.0,10/27/6208 +3.91425,51.20292,7719,9,3,2,24,37,3.55,5.0,fr,7637,154,312963,1,1,Active Shallow Crust,240.0121,57.99818,0.0,09/03/7719 +3.91425,51.20292,4875,11,6,11,40,56,3.65,5.0,fr,7638,97,312972,1,2,Active Shallow Crust,0.0,89.98874,0.0,11/06/4875 +3.91425,51.20292,1667,7,12,4,49,54,3.65,5.0,fr,7639,33,312972,1,2,Active Shallow Crust,0.0,89.98874,0.0,07/12/1667 +6.60172,45.61979,8977,2,16,1,20,8,3.55,5.0,fr,7640,179,313440,1,2,Active Shallow Crust,0.0,89.99295,0.0,02/16/8977 +6.60172,45.61979,3580,9,8,13,27,38,3.55,5.0,fr,7641,71,313440,1,2,Active Shallow Crust,0.0,89.99295,0.0,09/08/3580 +6.60172,45.61979,3989,4,11,22,53,14,3.65,5.0,fr,7642,79,313452,1,1,Active Shallow Crust,0.0,89.98743,0.0,04/11/3989 +6.60172,45.61979,3396,8,13,4,36,36,3.65,15.0,fr,7643,67,313459,1,1,Active Shallow Crust,0.0,89.98728,-90.0,08/13/3396 +6.60172,45.61979,8593,7,14,6,44,51,3.75,5.0,fr,7644,171,313464,1,1,Active Shallow Crust,0.0,89.98879,0.0,07/14/8593 +6.60172,45.61979,5745,7,27,14,26,11,3.75,5.0,fr,7645,114,313473,1,1,Active Shallow Crust,128.8972,89.96748,0.0,07/27/5745 +6.60172,45.61979,6419,8,18,18,54,36,3.85,15.0,fr,7646,128,313486,1,1,Active Shallow Crust,128.8954,89.99251,0.0,08/18/6419 +6.60172,45.61979,8379,1,22,21,14,5,3.95,5.0,fr,7647,167,313488,1,1,Active Shallow Crust,0.0,89.9911,0.0,01/22/8379 +6.60172,45.61979,1511,5,8,18,38,47,3.95,15.0,fr,7648,30,313492,1,1,Active Shallow Crust,240.0205,58.00466,0.0,05/08/1511 +6.60172,45.61979,9313,2,1,16,45,56,4.05,5.0,fr,7649,186,313500,1,1,Active Shallow Crust,0.0,89.9881,0.0,02/01/9313 +6.60172,45.61979,3891,2,4,15,6,40,4.05,27.5,fr,7650,77,313502,1,1,Active Shallow Crust,0.0,89.9881,0.0,02/04/3891 +6.60172,45.61979,9988,1,17,7,39,11,4.15,5.0,fr,7651,199,313512,1,1,Active Shallow Crust,0.0,89.9894,0.0,01/17/9988 +6.60172,45.61979,9148,5,30,12,18,53,4.15,5.0,fr,7652,182,313515,1,1,Active Shallow Crust,240.0079,57.99734,0.0,05/30/9148 +6.60172,45.61979,7634,2,20,20,38,53,4.45,5.0,fr,7653,152,313548,1,1,Active Shallow Crust,0.0,89.98999,0.0,02/20/7634 +6.60172,45.61979,3,4,30,10,2,43,4.45,5.0,fr,7654,0,313551,1,1,Active Shallow Crust,240.0049,57.99459,0.0,04/30/0003 +-0.23235,47.08425,7525,3,27,0,42,32,3.55,5.0,fr,7655,150,313920,1,2,Active Shallow Crust,0.0,89.98991,0.0,03/27/7525 +-0.23235,47.08425,457,3,25,17,48,44,3.55,5.0,fr,7656,9,313920,1,2,Active Shallow Crust,0.0,89.98991,0.0,03/25/0457 +-0.23235,47.08425,2351,2,22,23,19,29,3.55,15.0,fr,7657,47,313921,1,1,Active Shallow Crust,0.0,89.98991,0.0,02/22/2351 +-0.23235,47.08425,5848,6,6,6,40,42,3.55,27.5,fr,7658,116,313922,1,1,Active Shallow Crust,0.0,89.98991,0.0,06/06/5848 +-0.23235,47.08425,219,2,5,19,46,19,3.55,15.0,fr,7659,4,313924,1,1,Active Shallow Crust,240.0122,57.99815,0.0,02/05/0219 +-0.23235,47.08425,853,8,14,2,4,9,3.65,5.0,fr,7660,17,313932,1,2,Active Shallow Crust,0.0,89.99006,0.0,08/14/0853 +-0.23235,47.08425,8734,8,19,19,21,11,3.65,5.0,fr,7661,174,313932,1,2,Active Shallow Crust,0.0,89.99006,0.0,08/19/8734 +-0.23235,47.08425,4063,12,14,20,32,7,3.65,15.0,fr,7662,81,313933,1,1,Active Shallow Crust,0.0,89.99006,0.0,12/14/4063 +-0.23235,47.08425,2554,5,2,15,3,22,3.65,5.0,fr,7663,51,313935,1,1,Active Shallow Crust,240.0011,58.01291,0.0,05/02/2554 +-0.23235,47.08425,5430,10,9,3,55,3,3.65,5.0,fr,7664,108,313941,1,1,Active Shallow Crust,128.9003,89.9635,0.0,10/09/5430 +-0.23235,47.08425,3683,7,25,12,3,52,3.75,5.0,fr,7665,73,313944,1,2,Active Shallow Crust,0.0,89.98994,0.0,07/25/3683 +-0.23235,47.08425,1812,4,7,0,37,28,3.75,5.0,fr,7666,36,313944,1,2,Active Shallow Crust,0.0,89.98994,0.0,04/07/1812 +-0.23235,47.08425,6006,1,18,0,57,45,3.75,5.0,fr,7667,120,313950,1,1,Active Shallow Crust,0.0,89.99,-90.0,01/18/6006 +-0.23235,47.08425,1160,11,20,11,12,32,3.85,5.0,fr,7668,23,313956,1,1,Active Shallow Crust,0.0,89.98997,0.0,11/20/1160 +-0.23235,47.08425,332,2,11,12,4,3,3.85,15.0,fr,7669,6,313957,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/11/0332 +-0.23235,47.08425,5978,10,8,6,29,14,3.95,15.0,fr,7670,119,313975,1,1,Active Shallow Crust,0.0,89.99001,-90.0,10/08/5978 +-0.23235,47.08425,5330,10,26,2,16,54,3.95,5.0,fr,7671,106,313977,1,1,Active Shallow Crust,128.9003,89.99371,0.0,10/26/5330 +-0.23235,47.08425,9181,4,22,3,18,11,4.05,15.0,fr,7672,183,313981,1,1,Active Shallow Crust,0.0,89.98998,0.0,04/22/9181 +-0.23235,47.08425,3929,1,21,0,49,19,4.35,5.0,fr,7673,78,314016,1,1,Active Shallow Crust,0.0,89.99001,0.0,01/21/3929 +-0.23235,47.08425,5608,8,27,17,22,49,4.45,5.0,fr,7674,112,314028,1,1,Active Shallow Crust,0.0,89.99003,0.0,08/27/5608 +-0.23235,47.08425,5588,9,10,4,10,47,4.55,5.0,fr,7675,111,314040,1,1,Active Shallow Crust,0.0,89.99002,0.0,09/10/5588 +-0.23235,47.08425,9903,4,18,19,20,33,4.65,5.0,fr,7676,198,314052,1,1,Active Shallow Crust,0.0,89.99002,0.0,04/18/9903 +5.10267,47.36979,1056,10,17,10,22,23,3.55,27.5,fr,7677,21,314402,1,1,Active Shallow Crust,0.0,89.99317,0.0,10/17/1056 +5.10267,47.36979,5410,3,17,2,25,15,3.75,5.0,fr,7678,108,314424,1,2,Active Shallow Crust,0.0,89.98915,0.0,03/17/5410 +5.10267,47.36979,2982,2,1,17,29,34,3.75,5.0,fr,7679,59,314424,1,2,Active Shallow Crust,0.0,89.98915,0.0,02/01/2982 +5.10267,47.36979,3487,5,31,16,45,30,3.75,5.0,fr,7680,69,314433,1,1,Active Shallow Crust,128.8965,89.96751,0.0,05/31/3487 +5.10267,47.36979,5239,3,27,13,8,42,3.75,15.0,fr,7681,104,314434,1,1,Active Shallow Crust,128.8965,89.96751,0.0,03/27/5239 +5.10267,47.36979,9115,10,22,0,21,55,4.05,5.0,fr,7682,182,314460,1,1,Active Shallow Crust,0.0,89.98848,0.0,10/22/9115 +5.10267,47.36979,2484,7,4,16,20,6,4.15,5.0,fr,7683,49,314472,1,1,Active Shallow Crust,0.0,89.98973,0.0,07/04/2484 +5.10267,47.36979,7542,11,11,6,59,42,4.25,5.0,fr,7684,150,314484,1,1,Active Shallow Crust,0.0,89.99084,0.0,11/11/7542 +5.10267,47.36979,6258,6,9,15,8,13,4.25,15.0,fr,7685,125,314485,1,1,Active Shallow Crust,0.0,89.99084,0.0,06/09/6258 +5.27024,45.05688,6738,1,9,0,32,44,3.55,5.0,fr,7686,134,315360,1,3,Active Shallow Crust,0.0,89.99287,0.0,01/09/6738 +5.27024,45.05688,2245,12,3,14,36,59,3.55,5.0,fr,7687,44,315360,1,3,Active Shallow Crust,0.0,89.99287,0.0,12/03/2245 +5.27024,45.05688,2199,8,6,1,25,31,3.55,5.0,fr,7688,43,315360,1,3,Active Shallow Crust,0.0,89.99287,0.0,08/06/2199 +5.27024,45.05688,878,2,6,1,57,26,3.55,15.0,fr,7689,17,315361,1,3,Active Shallow Crust,0.0,89.99287,0.0,02/06/0878 +5.27024,45.05688,6935,5,10,23,58,22,3.55,15.0,fr,7690,138,315361,1,3,Active Shallow Crust,0.0,89.99287,0.0,05/10/6935 +5.27024,45.05688,235,9,10,4,14,24,3.55,15.0,fr,7691,4,315361,1,3,Active Shallow Crust,0.0,89.99287,0.0,09/10/0235 +5.27024,45.05688,268,8,17,3,19,56,3.55,15.0,fr,7692,5,315364,1,1,Active Shallow Crust,240.0119,57.99869,0.0,08/17/0268 +5.27024,45.05688,2873,2,15,2,30,44,3.55,5.0,fr,7693,57,315369,1,1,Active Shallow Crust,128.8965,89.99287,0.0,02/15/2873 +5.27024,45.05688,748,9,25,7,37,43,3.65,5.0,fr,7694,14,315372,1,2,Active Shallow Crust,0.0,89.9873,0.0,09/25/0748 +5.27024,45.05688,3625,5,4,13,53,31,3.65,5.0,fr,7695,72,315372,1,2,Active Shallow Crust,0.0,89.9873,0.0,05/04/3625 +5.27024,45.05688,3792,10,22,5,27,34,3.65,15.0,fr,7696,75,315373,1,1,Active Shallow Crust,0.0,89.9873,0.0,10/22/3792 +5.27024,45.05688,2301,6,10,22,26,37,3.75,5.0,fr,7697,46,315384,1,3,Active Shallow Crust,0.0,89.98869,0.0,06/10/2301 +5.27024,45.05688,6047,3,28,10,58,56,3.75,5.0,fr,7698,120,315384,1,3,Active Shallow Crust,0.0,89.98869,0.0,03/28/6047 +5.27024,45.05688,6173,3,8,4,42,8,3.75,5.0,fr,7699,123,315384,1,3,Active Shallow Crust,0.0,89.98869,0.0,03/08/6173 +5.27024,45.05688,6254,10,1,4,0,48,3.75,27.5,fr,7700,125,315386,1,2,Active Shallow Crust,0.0,89.98869,0.0,10/01/6254 +5.27024,45.05688,982,8,24,13,10,20,3.75,27.5,fr,7701,19,315386,1,2,Active Shallow Crust,0.0,89.98869,0.0,08/24/0982 +5.27024,45.05688,9108,11,22,23,40,49,3.85,5.0,fr,7702,182,315396,1,1,Active Shallow Crust,0.0,89.98991,0.0,11/22/9108 +5.27024,45.05688,3635,10,17,16,48,45,3.85,15.0,fr,7703,72,315397,1,1,Active Shallow Crust,0.0,89.98991,0.0,10/17/3635 +5.27024,45.05688,4858,10,12,18,20,3,3.85,15.0,fr,7704,97,315406,1,1,Active Shallow Crust,128.8959,89.99496,0.0,10/12/4858 +5.27024,45.05688,4528,12,12,10,3,17,3.95,5.0,fr,7705,90,315408,1,1,Active Shallow Crust,0.0,89.99101,0.0,12/12/4528 +5.27024,45.05688,8944,2,25,6,37,41,3.95,15.0,fr,7706,178,315412,1,1,Active Shallow Crust,240.0188,58.00513,0.0,02/25/8944 +5.27024,45.05688,6961,11,13,12,57,15,4.05,5.0,fr,7707,139,315420,1,1,Active Shallow Crust,0.0,89.99199,0.0,11/13/6961 +5.27024,45.05688,4419,12,25,18,40,11,4.05,15.0,fr,7708,88,315421,1,1,Active Shallow Crust,0.0,89.99199,0.0,12/25/4419 +5.27024,45.05688,9015,12,26,17,27,50,4.15,5.0,fr,7709,180,315441,1,1,Active Shallow Crust,128.8987,89.99286,0.0,12/26/9015 +5.27024,45.05688,3648,2,14,15,27,53,4.25,5.0,fr,7710,72,315444,1,1,Active Shallow Crust,0.0,89.99046,0.0,02/14/3648 +5.27024,45.05688,7002,5,8,11,27,11,4.25,27.5,fr,7711,140,315455,1,1,Active Shallow Crust,128.8945,89.9809,0.0,05/08/7002 +5.27024,45.05688,831,6,14,14,55,43,4.85,5.0,fr,7712,16,315522,1,1,Active Shallow Crust,0.0,89.99032,-90.0,06/14/0831 +-5.1112,45.7876,4166,12,7,0,18,24,3.95,15.0,fr,7713,83,315889,1,1,Active Shallow Crust,0.0,89.99113,0.0,12/07/4166 +2.81847,48.84034,6959,2,17,10,24,56,3.65,5.0,fr,7714,139,316332,1,1,Active Shallow Crust,0.0,89.99113,0.0,02/17/6959 +0.4902,46.19603,7821,5,11,6,42,30,3.55,15.0,fr,7715,156,316801,1,3,Active Shallow Crust,0.0,89.98997,0.0,05/11/7821 +0.4902,46.19603,1773,7,1,15,5,45,3.55,15.0,fr,7716,35,316801,1,3,Active Shallow Crust,0.0,89.98997,0.0,07/01/1773 +0.4902,46.19603,2251,10,8,8,18,44,3.55,15.0,fr,7717,45,316801,1,3,Active Shallow Crust,0.0,89.98997,0.0,10/08/2251 +0.4902,46.19603,4996,10,13,19,54,6,3.55,5.0,fr,7718,99,316803,1,1,Active Shallow Crust,240.0121,57.99824,0.0,10/13/4996 +0.4902,46.19603,3464,8,26,8,18,22,3.65,5.0,fr,7719,69,316812,1,1,Active Shallow Crust,0.0,89.98989,0.0,08/26/3464 +0.4902,46.19603,5878,12,24,11,59,40,3.65,5.0,fr,7720,117,316815,1,1,Active Shallow Crust,240.001,58.01286,0.0,12/24/5878 +0.4902,46.19603,8012,7,17,18,25,32,3.75,15.0,fr,7721,160,316825,1,1,Active Shallow Crust,0.0,89.98995,0.0,07/17/8012 +0.4902,46.19603,5688,8,24,13,14,38,3.75,27.5,fr,7722,113,316826,1,1,Active Shallow Crust,0.0,89.98995,0.0,08/24/5688 +0.4902,46.19603,6937,12,24,11,18,8,4.05,5.0,fr,7723,138,316860,1,3,Active Shallow Crust,0.0,89.98994,0.0,12/24/6937 +0.4902,46.19603,3439,9,12,23,35,57,4.05,5.0,fr,7724,68,316860,1,3,Active Shallow Crust,0.0,89.98994,0.0,09/12/3439 +0.4902,46.19603,9505,5,31,8,10,43,4.05,5.0,fr,7725,190,316860,1,3,Active Shallow Crust,0.0,89.98994,0.0,05/31/9505 +0.4902,46.19603,2902,5,26,20,38,55,4.15,5.0,fr,7726,58,316872,1,1,Active Shallow Crust,0.0,89.98994,0.0,05/26/2902 +0.4902,46.19603,9264,11,16,11,10,35,5.15,5.0,fr,7727,185,316992,1,1,Active Shallow Crust,0.0,89.98997,0.0,11/16/9264 +3.77696,46.15088,2999,10,10,12,37,55,3.55,15.0,fr,7728,59,317281,1,1,Active Shallow Crust,0.0,89.98952,0.0,10/10/2999 +3.77696,46.15088,2555,4,29,4,42,16,3.85,5.0,fr,7729,51,317316,1,1,Active Shallow Crust,0.0,89.99011,0.0,04/29/2555 +3.77696,46.15088,1369,9,16,4,31,11,3.85,15.0,fr,7730,27,317317,1,1,Active Shallow Crust,0.0,89.99011,0.0,09/16/1369 +3.77696,46.15088,1139,5,30,8,7,36,4.25,5.0,fr,7731,22,317364,1,1,Active Shallow Crust,0.0,89.99064,0.0,05/30/1139 +3.77696,46.15088,8949,2,28,18,50,41,4.35,15.0,fr,7732,178,317380,1,1,Active Shallow Crust,240.0086,57.99569,0.0,02/28/8949 +3.77696,46.15088,112,10,3,19,49,54,4.75,5.0,fr,7733,2,317424,1,1,Active Shallow Crust,0.0,89.99035,0.0,10/03/0112 +4.28513,41.99514,5123,8,1,5,1,45,3.55,15.0,fr,7734,102,318241,1,2,Active Shallow Crust,0.0,89.99251,0.0,08/01/5123 +4.28513,41.99514,9119,7,19,7,36,33,3.55,15.0,fr,7735,182,318241,1,2,Active Shallow Crust,0.0,89.99251,0.0,07/19/9119 +4.28513,41.99514,4138,8,24,17,46,47,3.65,15.0,fr,7736,82,318253,1,1,Active Shallow Crust,0.0,89.99332,0.0,08/24/4138 +4.28513,41.99514,6746,12,30,12,58,7,3.65,15.0,fr,7737,134,318262,1,1,Active Shallow Crust,128.9012,89.96344,0.0,12/30/6746 +4.28513,41.99514,3432,3,8,15,11,55,3.75,5.0,fr,7738,68,318264,1,2,Active Shallow Crust,0.0,89.98809,0.0,03/08/3432 +4.28513,41.99514,1798,4,16,19,0,59,3.75,5.0,fr,7739,35,318264,1,2,Active Shallow Crust,0.0,89.98809,0.0,04/16/1798 +4.28513,41.99514,4601,5,28,4,46,17,3.75,15.0,fr,7740,92,318265,1,1,Active Shallow Crust,0.0,89.98809,0.0,05/28/4601 +5.92,49.87733,8191,6,15,21,28,19,3.65,5.0,fr,7741,163,318732,1,1,Active Shallow Crust,0.0,89.98842,0.0,06/15/8191 +5.92,49.87733,2133,1,7,10,14,10,3.65,15.0,fr,7742,42,318739,1,1,Active Shallow Crust,0.0,89.98828,-90.0,01/07/2133 +5.92,49.87733,8819,4,2,16,51,24,3.75,5.0,fr,7743,176,318747,1,1,Active Shallow Crust,240.0098,58.01759,0.0,04/02/8819 +5.92,49.87733,9215,11,13,21,28,44,4.35,5.0,fr,7744,184,318819,1,1,Active Shallow Crust,240.0096,57.99565,0.0,11/13/9215 +5.92,49.87733,7868,12,5,9,40,18,4.55,5.0,fr,7745,157,318840,1,1,Active Shallow Crust,0.0,89.98972,0.0,12/05/7868 +5.15175,50.88787,2111,10,10,6,48,16,3.55,5.0,fr,7746,42,319200,1,1,Active Shallow Crust,0.0,89.98727,0.0,10/10/2111 +5.15175,50.88787,6333,5,8,10,32,22,3.65,15.0,fr,7747,126,319213,1,1,Active Shallow Crust,0.0,89.98866,0.0,05/08/6333 +5.15175,50.88787,4806,7,13,7,27,30,3.65,5.0,fr,7748,96,319215,1,1,Active Shallow Crust,240.001,58.01324,0.0,07/13/4806 +5.15175,50.88787,9169,5,19,18,52,44,3.75,5.0,fr,7749,183,319224,1,1,Active Shallow Crust,0.0,89.98989,0.0,05/19/9169 +5.15175,50.88787,7822,1,6,4,13,2,3.75,5.0,fr,7750,156,319227,1,1,Active Shallow Crust,240.0086,58.01725,0.0,01/06/7822 +5.15175,50.88787,2303,11,18,15,32,11,3.95,27.5,fr,7751,46,319250,1,1,Active Shallow Crust,0.0,89.99197,0.0,11/18/2303 +5.15175,50.88787,2330,7,8,0,14,15,4.15,5.0,fr,7752,46,319272,1,1,Active Shallow Crust,0.0,89.99043,0.0,07/08/2330 +5.15175,50.88787,5365,8,9,22,22,10,4.45,5.0,fr,7753,107,319308,1,1,Active Shallow Crust,0.0,89.99097,0.0,08/09/5365 +5.15175,50.88787,7887,7,17,18,59,40,5.15,5.0,fr,7754,157,319392,1,1,Active Shallow Crust,0.0,89.98991,0.0,07/17/7887 +5.15175,50.88787,6398,11,4,21,18,30,5.15,5.0,fr,7755,127,319395,1,1,Active Shallow Crust,240.0226,58.00037,0.0,11/04/6398 +2.64164,49.22523,7483,4,22,9,5,50,3.65,5.0,fr,7756,149,319695,1,1,Active Shallow Crust,240.0019,58.01272,0.0,04/22/7483 +2.64164,49.22523,9736,8,30,13,26,26,3.65,5.0,fr,7757,194,319698,1,1,Active Shallow Crust,0.0,89.9911,-90.0,08/30/9736 +2.64164,49.22523,467,5,18,16,11,44,3.75,5.0,fr,7758,9,319704,1,1,Active Shallow Crust,0.0,89.98954,0.0,05/18/0467 +2.64164,49.22523,6028,10,6,12,26,16,3.85,5.0,fr,7759,120,319722,1,1,Active Shallow Crust,0.0,89.99057,-90.0,10/06/6028 +-2.06541,47.0711,6630,9,11,15,42,27,3.55,5.0,fr,7760,132,320160,1,2,Active Shallow Crust,0.0,89.9897,0.0,09/11/6630 +-2.06541,47.0711,2675,12,23,18,54,1,3.55,5.0,fr,7761,53,320160,1,2,Active Shallow Crust,0.0,89.9897,0.0,12/23/2675 +-2.06541,47.0711,5526,12,22,11,24,37,3.55,15.0,fr,7762,110,320161,1,1,Active Shallow Crust,0.0,89.9897,0.0,12/22/5526 +-2.06541,47.0711,2347,10,10,15,44,17,3.55,5.0,fr,7763,46,320169,1,1,Active Shallow Crust,128.896,89.99313,0.0,10/10/2347 +-2.06541,47.0711,9928,5,26,16,19,36,3.55,15.0,fr,7764,198,320170,1,1,Active Shallow Crust,128.896,89.99313,0.0,05/26/9928 +-2.06541,47.0711,2285,1,11,14,0,12,3.55,27.5,fr,7765,45,320171,1,1,Active Shallow Crust,128.896,89.99313,0.0,01/11/2285 +-2.06541,47.0711,3084,12,8,6,29,15,3.65,5.0,fr,7766,61,320172,1,1,Active Shallow Crust,0.0,89.99082,0.0,12/08/3084 +-2.06541,47.0711,464,9,21,18,9,45,3.65,5.0,fr,7767,9,320181,1,1,Active Shallow Crust,128.9011,89.96353,0.0,09/21/0464 +-2.06541,47.0711,1554,12,3,20,7,2,3.65,15.0,fr,7768,31,320182,1,1,Active Shallow Crust,128.9011,89.96353,0.0,12/03/1554 +-2.06541,47.0711,1365,5,2,4,9,13,3.75,5.0,fr,7769,27,320184,1,2,Active Shallow Crust,0.0,89.98909,0.0,05/02/1365 +-2.06541,47.0711,5225,6,18,14,48,20,3.75,5.0,fr,7770,104,320184,1,2,Active Shallow Crust,0.0,89.98909,0.0,06/18/5225 +-2.06541,47.0711,7684,4,2,14,28,43,3.85,5.0,fr,7771,153,320196,1,1,Active Shallow Crust,0.0,89.99027,0.0,04/02/7684 +-2.06541,47.0711,4835,6,26,0,12,59,3.95,5.0,fr,7772,96,320208,1,2,Active Shallow Crust,0.0,89.98917,0.0,06/26/4835 +-2.06541,47.0711,8840,12,12,14,8,47,3.95,5.0,fr,7773,176,320208,1,2,Active Shallow Crust,0.0,89.98917,0.0,12/12/8840 +-2.06541,47.0711,6753,8,31,2,44,23,4.05,5.0,fr,7774,135,320220,1,1,Active Shallow Crust,0.0,89.99034,0.0,08/31/6753 +-2.06541,47.0711,9199,3,5,19,19,3,4.15,5.0,fr,7775,183,320235,1,1,Active Shallow Crust,240.0087,57.99744,0.0,03/05/9199 +-2.06541,47.0711,3494,5,26,19,27,48,4.15,5.0,fr,7776,69,320241,1,1,Active Shallow Crust,128.8978,89.99312,0.0,05/26/3494 +-2.06541,47.0711,5515,2,4,14,46,45,4.25,5.0,fr,7777,110,320244,1,1,Active Shallow Crust,0.0,89.98927,0.0,02/04/5515 +-2.06541,47.0711,8256,2,16,23,24,41,4.45,5.0,fr,7778,165,320268,1,1,Active Shallow Crust,0.0,89.99025,0.0,02/16/8256 +-2.06541,47.0711,8274,7,14,7,20,33,4.65,5.0,fr,7779,165,320292,1,1,Active Shallow Crust,0.0,89.99032,0.0,07/14/8274 +-2.06541,47.0711,4210,10,2,19,40,33,4.65,5.0,fr,7780,84,320295,1,1,Active Shallow Crust,240.011,57.99425,0.0,10/02/4210 +-2.06541,47.0711,5754,10,21,9,12,6,4.65,5.0,fr,7781,115,320298,1,1,Active Shallow Crust,0.0,89.99021,-90.0,10/21/5754 +-2.06541,47.0711,204,11,7,13,20,55,4.95,15.0,fr,7782,4,320329,1,1,Active Shallow Crust,0.0,89.98972,0.0,11/07/0204 +1.49211,42.63639,6287,10,21,2,12,53,3.55,5.0,fr,7783,125,320640,1,1,Active Shallow Crust,0.0,89.99073,0.0,10/21/6287 +1.49211,42.63639,5027,6,11,8,12,4,3.55,15.0,fr,7784,100,320641,1,1,Active Shallow Crust,0.0,89.99073,0.0,06/11/5027 +1.49211,42.63639,5647,4,24,23,11,35,3.55,15.0,fr,7785,112,320644,1,1,Active Shallow Crust,240.0115,57.99824,0.0,04/24/5647 +1.49211,42.63639,8740,5,12,19,15,55,3.55,5.0,fr,7786,174,320649,1,2,Active Shallow Crust,128.8966,89.99351,0.0,05/12/8740 +1.49211,42.63639,6968,1,22,9,14,19,3.55,5.0,fr,7787,139,320649,1,2,Active Shallow Crust,128.8966,89.99351,0.0,01/22/6968 +1.49211,42.63639,8284,7,29,20,20,39,3.65,5.0,fr,7788,165,320652,1,1,Active Shallow Crust,0.0,89.99008,0.0,07/29/8284 +1.49211,42.63639,3383,8,25,1,36,3,3.65,15.0,fr,7789,67,320653,1,2,Active Shallow Crust,0.0,89.99008,0.0,08/25/3383 +1.49211,42.63639,6524,9,26,22,34,22,3.65,15.0,fr,7790,130,320653,1,2,Active Shallow Crust,0.0,89.99008,0.0,09/26/6524 +1.49211,42.63639,978,8,5,17,59,32,3.65,5.0,fr,7791,19,320658,1,1,Active Shallow Crust,0.0,89.98997,-90.0,08/05/0978 +1.49211,42.63639,8845,5,24,0,29,3,3.75,5.0,fr,7792,176,320664,1,2,Active Shallow Crust,0.0,89.98969,0.0,05/24/8845 +1.49211,42.63639,5791,3,16,10,35,17,3.75,5.0,fr,7793,115,320664,1,2,Active Shallow Crust,0.0,89.98969,0.0,03/16/5791 +1.49211,42.63639,7774,10,30,4,16,3,3.75,15.0,fr,7794,155,320665,1,1,Active Shallow Crust,0.0,89.98969,0.0,10/30/7774 +1.49211,42.63639,8739,11,22,23,54,50,3.85,5.0,fr,7795,174,320676,1,5,Active Shallow Crust,0.0,89.98949,0.0,11/22/8739 +1.49211,42.63639,5579,9,7,3,39,40,3.85,5.0,fr,7796,111,320676,1,5,Active Shallow Crust,0.0,89.98949,0.0,09/07/5579 +1.49211,42.63639,8357,6,28,0,3,34,3.85,5.0,fr,7797,167,320676,1,5,Active Shallow Crust,0.0,89.98949,0.0,06/28/8357 +1.49211,42.63639,5278,5,8,3,58,30,3.85,5.0,fr,7798,105,320676,1,5,Active Shallow Crust,0.0,89.98949,0.0,05/08/5278 +1.49211,42.63639,6686,3,4,23,45,20,3.85,5.0,fr,7799,133,320676,1,5,Active Shallow Crust,0.0,89.98949,0.0,03/04/6686 +1.49211,42.63639,590,6,4,22,27,27,3.85,5.0,fr,7800,11,320679,1,2,Active Shallow Crust,240.0104,57.99792,0.0,06/04/0590 +1.49211,42.63639,6801,3,27,21,10,6,3.85,5.0,fr,7801,136,320679,1,2,Active Shallow Crust,240.0104,57.99792,0.0,03/27/6801 +1.49211,42.63639,2416,10,6,21,59,53,3.85,15.0,fr,7802,48,320680,1,2,Active Shallow Crust,240.0104,57.99792,0.0,10/06/2416 +1.49211,42.63639,6675,12,2,0,26,45,3.85,15.0,fr,7803,133,320680,1,2,Active Shallow Crust,240.0104,57.99792,0.0,12/02/6675 +1.49211,42.63639,3804,6,9,14,51,48,3.95,5.0,fr,7804,76,320688,1,1,Active Shallow Crust,0.0,89.98947,0.0,06/09/3804 +1.49211,42.63639,8443,4,28,18,8,13,3.95,15.0,fr,7805,168,320692,1,1,Active Shallow Crust,240.0194,58.00492,0.0,04/28/8443 +1.49211,42.63639,982,2,8,1,32,0,3.95,27.5,fr,7806,19,320693,1,1,Active Shallow Crust,240.0194,58.00492,0.0,02/08/0982 +1.49211,42.63639,6526,8,18,22,10,3,4.05,15.0,fr,7807,130,320701,1,1,Active Shallow Crust,0.0,89.98957,0.0,08/18/6526 +1.49211,42.63639,4296,4,28,13,35,27,4.05,5.0,fr,7808,85,320703,1,2,Active Shallow Crust,240.0052,58.00569,0.0,04/28/4296 +1.49211,42.63639,9081,9,12,21,23,32,4.05,5.0,fr,7809,181,320703,1,2,Active Shallow Crust,240.0052,58.00569,0.0,09/12/9081 +1.49211,42.63639,9037,7,16,2,51,31,4.05,15.0,fr,7810,180,320710,1,1,Active Shallow Crust,128.8911,89.99374,0.0,07/16/9037 +1.49211,42.63639,397,12,30,3,40,52,4.15,5.0,fr,7811,7,320712,1,2,Active Shallow Crust,0.0,89.98978,0.0,12/30/0397 +1.49211,42.63639,3851,2,1,0,47,35,4.15,5.0,fr,7812,77,320712,1,2,Active Shallow Crust,0.0,89.98978,0.0,02/01/3851 +1.49211,42.63639,9548,4,26,10,56,40,4.25,15.0,fr,7813,190,320725,1,1,Active Shallow Crust,0.0,89.99006,0.0,04/26/9548 +1.49211,42.63639,3913,5,20,19,53,24,4.45,5.0,fr,7814,78,320757,1,1,Active Shallow Crust,128.893,89.99375,0.0,05/20/3913 +1.49211,42.63639,880,3,30,17,31,21,4.65,5.0,fr,7815,17,320772,1,1,Active Shallow Crust,0.0,89.99007,0.0,03/30/0880 +1.49211,42.63639,4145,9,27,20,18,4,4.95,5.0,fr,7816,82,320808,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/27/4145 +1.49211,42.63639,8029,5,4,15,1,13,5.65,5.0,fr,7817,160,320895,1,1,Active Shallow Crust,240.0304,58.00122,0.0,05/04/8029 +3.46072,53.08583,1964,2,14,14,39,24,3.55,15.0,fr,7818,39,321121,1,1,Active Shallow Crust,0.0,89.99091,0.0,02/14/1964 +3.46072,53.08583,704,11,18,16,20,52,4.05,5.0,fr,7819,14,321180,1,1,Active Shallow Crust,0.0,89.98978,0.0,11/18/0704 +-5.96267,47.07332,7594,3,5,21,10,4,3.55,5.0,fr,7820,151,321609,1,1,Active Shallow Crust,128.8961,89.99313,0.0,03/05/7594 +-1.22502,43.5966,8322,9,28,1,44,57,3.55,5.0,fr,7821,166,322080,1,1,Active Shallow Crust,0.0,89.99087,0.0,09/28/8322 +-1.22502,43.5966,9884,7,3,0,26,4,3.55,5.0,fr,7822,197,322083,1,1,Active Shallow Crust,240.0119,57.99821,0.0,07/03/9884 +-1.22502,43.5966,6201,2,19,13,19,50,3.65,27.5,fr,7823,124,322094,1,2,Active Shallow Crust,0.0,89.99023,0.0,02/19/6201 +-1.22502,43.5966,4989,9,12,13,14,3,3.65,27.5,fr,7824,99,322094,1,2,Active Shallow Crust,0.0,89.99023,0.0,09/12/4989 +-1.22502,43.5966,1200,4,26,17,47,59,3.75,5.0,fr,7825,23,322107,1,1,Active Shallow Crust,240.0079,58.01752,0.0,04/26/1200 +-1.22502,43.5966,5539,9,28,21,58,55,3.85,5.0,fr,7826,110,322125,1,1,Active Shallow Crust,128.8959,89.99354,0.0,09/28/5539 +-1.22502,43.5966,5523,2,19,21,4,41,3.95,5.0,fr,7827,110,322137,1,1,Active Shallow Crust,128.9008,89.99367,0.0,02/19/5523 +-1.22502,43.5966,1341,12,20,18,15,11,4.05,15.0,fr,7828,26,322141,1,1,Active Shallow Crust,0.0,89.98973,0.0,12/20/1341 +1.49242,46.93107,9859,10,11,5,57,37,3.55,27.5,fr,7829,197,323522,1,2,Active Shallow Crust,0.0,89.98967,0.0,10/11/9859 +1.49242,46.93107,3172,12,21,3,3,42,3.55,27.5,fr,7830,63,323522,1,2,Active Shallow Crust,0.0,89.98967,0.0,12/21/3172 +1.49242,46.93107,8436,4,20,7,37,31,3.75,5.0,fr,7831,168,323544,1,1,Active Shallow Crust,0.0,89.99043,0.0,04/20/8436 +1.49242,46.93107,8653,5,9,12,30,36,3.75,5.0,fr,7832,173,323550,1,1,Active Shallow Crust,0.0,89.99032,-90.0,05/09/8653 +1.49242,46.93107,6513,2,20,19,28,36,4.25,5.0,fr,7833,130,323604,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/20/6513 +1.49242,46.93107,1939,10,27,6,57,58,4.55,5.0,fr,7834,38,323643,1,1,Active Shallow Crust,240.0095,57.99731,0.0,10/27/1939 +1.49242,46.93107,8674,1,23,9,39,59,5.25,5.0,fr,7835,173,323727,1,1,Active Shallow Crust,240.0258,58.0003,0.0,01/23/8674 +1.49242,46.93107,658,7,26,17,3,15,5.65,15.0,fr,7836,13,323773,1,1,Active Shallow Crust,0.0,89.99002,0.0,07/26/0658 +6.73889,49.85464,3355,10,27,21,40,5,3.55,5.0,fr,7837,67,324000,1,3,Active Shallow Crust,0.0,89.987,0.0,10/27/3355 +6.73889,49.85464,8538,1,5,20,4,58,3.55,5.0,fr,7838,170,324000,1,3,Active Shallow Crust,0.0,89.987,0.0,01/05/8538 +6.73889,49.85464,1848,11,10,0,51,40,3.55,5.0,fr,7839,36,324000,1,3,Active Shallow Crust,0.0,89.987,0.0,11/10/1848 +6.73889,49.85464,8699,11,9,4,29,37,3.65,15.0,fr,7840,173,324013,1,1,Active Shallow Crust,0.0,89.98841,0.0,11/09/8699 +6.73889,49.85464,6530,8,25,21,49,47,3.75,5.0,fr,7841,130,324024,1,1,Active Shallow Crust,0.0,89.98967,0.0,08/25/6530 +6.73889,49.85464,9791,3,13,1,47,21,4.35,5.0,fr,7842,195,324105,1,1,Active Shallow Crust,128.8967,89.98269,0.0,03/13/9791 +6.73889,49.85464,270,10,29,10,54,20,4.65,5.0,fr,7843,5,324141,1,1,Active Shallow Crust,128.8898,89.98695,0.0,10/29/0270 +-1.96924,49.23455,1826,6,29,15,3,30,3.55,5.0,fr,7844,36,324480,1,3,Active Shallow Crust,0.0,89.99012,0.0,06/29/1826 +-1.96924,49.23455,8658,7,8,6,6,20,3.55,5.0,fr,7845,173,324480,1,3,Active Shallow Crust,0.0,89.99012,0.0,07/08/8658 +-1.96924,49.23455,3118,10,22,13,24,5,3.55,5.0,fr,7846,62,324480,1,3,Active Shallow Crust,0.0,89.99012,0.0,10/22/3118 +-1.96924,49.23455,6734,1,13,0,13,44,3.65,5.0,fr,7847,134,324492,1,2,Active Shallow Crust,0.0,89.98973,0.0,01/13/6734 +-1.96924,49.23455,1867,6,28,11,59,5,3.65,5.0,fr,7848,37,324492,1,2,Active Shallow Crust,0.0,89.98973,0.0,06/28/1867 +-1.96924,49.23455,9620,7,27,10,39,22,3.65,5.0,fr,7849,192,324495,1,1,Active Shallow Crust,240.0016,58.01269,0.0,07/27/9620 +-1.96924,49.23455,6406,6,22,16,40,51,3.75,5.0,fr,7850,128,324504,1,1,Active Shallow Crust,0.0,89.98954,0.0,06/22/6406 +-1.96924,49.23455,4244,4,28,11,28,15,3.75,15.0,fr,7851,84,324505,1,1,Active Shallow Crust,0.0,89.98954,0.0,04/28/4244 +-1.96924,49.23455,8037,1,31,16,35,22,3.75,5.0,fr,7852,160,324510,1,1,Active Shallow Crust,0.0,89.98942,-90.0,01/31/8037 +-1.96924,49.23455,8579,11,18,17,58,44,3.85,5.0,fr,7853,171,324516,1,1,Active Shallow Crust,0.0,89.98951,0.0,11/18/8579 +-1.96924,49.23455,6031,9,23,15,41,47,3.85,15.0,fr,7854,120,324517,1,1,Active Shallow Crust,0.0,89.98951,0.0,09/23/6031 +-1.96924,49.23455,2982,4,9,0,34,59,3.95,5.0,fr,7855,59,324537,1,1,Active Shallow Crust,128.9,89.99377,0.0,04/09/2982 +-1.96924,49.23455,9713,7,31,22,10,53,4.15,5.0,fr,7856,194,324555,1,1,Active Shallow Crust,240.0091,57.99741,0.0,07/31/9713 +-1.96924,49.23455,7000,7,9,4,27,52,4.35,5.0,fr,7857,139,324585,1,1,Active Shallow Crust,128.8974,89.98278,0.0,07/09/7000 +-1.96924,49.23455,3254,2,2,22,14,11,4.55,5.0,fr,7858,65,324600,1,1,Active Shallow Crust,0.0,89.9901,0.0,02/02/3254 +-1.96924,49.23455,5118,1,25,4,14,10,4.85,15.0,fr,7859,102,324637,1,1,Active Shallow Crust,0.0,89.99005,0.0,01/25/5118 +-1.96924,49.23455,6410,8,7,15,17,50,5.25,5.0,fr,7860,128,324684,1,1,Active Shallow Crust,0.0,89.99,0.0,08/07/6410 +-1.96924,49.23455,8003,8,5,23,1,2,6.35,15.0,fr,7861,160,324817,1,1,Active Shallow Crust,360.0,89.99003,0.0,08/05/8003 +2.6527,44.1496,7906,7,21,23,29,52,3.65,27.5,fr,7862,158,324974,1,1,Active Shallow Crust,0.0,89.99033,0.0,07/21/7906 +2.6527,44.1496,7065,8,6,18,55,33,4.05,27.5,fr,7863,141,325025,1,1,Active Shallow Crust,240.0057,58.0057,0.0,08/06/7065 +2.6527,44.1496,4872,3,13,1,8,0,4.35,5.0,fr,7864,97,325056,1,1,Active Shallow Crust,0.0,89.98991,0.0,03/13/4872 +2.6527,44.1496,1814,11,24,6,13,44,4.45,5.0,fr,7865,36,325068,1,1,Active Shallow Crust,0.0,89.98973,0.0,11/24/1814 +2.6527,44.1496,262,2,18,15,5,2,4.95,15.0,fr,7866,5,325135,1,1,Active Shallow Crust,0.0,89.98978,-90.0,02/18/0262 +5.80287,43.00354,4320,7,3,22,51,23,3.55,5.0,fr,7867,86,325440,1,1,Active Shallow Crust,0.0,89.99262,0.0,07/03/4320 +5.80287,43.00354,9590,8,10,2,26,37,3.55,27.5,fr,7868,191,325442,1,1,Active Shallow Crust,0.0,89.99262,0.0,08/10/9590 +5.80287,43.00354,2783,1,23,17,36,33,4.05,5.0,fr,7869,55,325500,1,1,Active Shallow Crust,0.0,89.99171,0.0,01/23/2783 +5.80287,43.00354,124,12,3,9,59,10,4.15,27.5,fr,7870,2,325514,1,1,Active Shallow Crust,0.0,89.98891,0.0,12/03/0124 +5.80287,43.00354,1074,10,1,1,36,7,4.35,5.0,fr,7871,21,325536,1,1,Active Shallow Crust,0.0,89.9912,0.0,10/01/1074 +5.80287,43.00354,9995,9,6,18,36,8,4.75,5.0,fr,7872,199,325584,1,1,Active Shallow Crust,0.0,89.99074,0.0,09/06/9995 +5.80287,43.00354,5843,11,23,14,32,27,4.85,5.0,fr,7873,116,325596,1,1,Active Shallow Crust,0.0,89.99009,0.0,11/23/5843 +4.72258,44.45592,8671,4,16,15,14,11,3.55,5.0,fr,7874,173,325920,1,4,Active Shallow Crust,0.0,89.99281,0.0,04/16/8671 +4.72258,44.45592,5899,12,25,7,9,1,3.55,5.0,fr,7875,117,325920,1,4,Active Shallow Crust,0.0,89.99281,0.0,12/25/5899 +4.72258,44.45592,3597,4,17,7,3,49,3.55,5.0,fr,7876,71,325920,1,4,Active Shallow Crust,0.0,89.99281,0.0,04/17/3597 +4.72258,44.45592,419,3,27,16,28,8,3.55,5.0,fr,7877,8,325920,1,4,Active Shallow Crust,0.0,89.99281,0.0,03/27/0419 +4.72258,44.45592,1237,6,16,20,1,22,3.55,27.5,fr,7878,24,325922,1,1,Active Shallow Crust,0.0,89.99281,0.0,06/16/1237 +4.72258,44.45592,4961,1,25,13,31,35,3.55,5.0,fr,7879,99,325923,1,2,Active Shallow Crust,240.0121,57.99854,0.0,01/25/4961 +4.72258,44.45592,2497,6,10,20,45,11,3.55,5.0,fr,7880,49,325923,1,2,Active Shallow Crust,240.0121,57.99854,0.0,06/10/2497 +4.72258,44.45592,9846,2,7,17,5,44,3.55,27.5,fr,7881,196,325928,1,1,Active Shallow Crust,0.0,89.99272,-90.0,02/07/9846 +4.72258,44.45592,5340,9,8,20,45,35,3.65,5.0,fr,7882,106,325932,1,5,Active Shallow Crust,0.0,89.98717,0.0,09/08/5340 +4.72258,44.45592,1367,2,3,15,10,59,3.65,5.0,fr,7883,27,325932,1,5,Active Shallow Crust,0.0,89.98717,0.0,02/03/1367 +4.72258,44.45592,5165,7,5,5,24,14,3.65,5.0,fr,7884,103,325932,1,5,Active Shallow Crust,0.0,89.98717,0.0,07/05/5165 +4.72258,44.45592,3957,12,31,22,0,48,3.65,5.0,fr,7885,79,325932,1,5,Active Shallow Crust,0.0,89.98717,0.0,12/31/3957 +4.72258,44.45592,4393,1,19,16,17,39,3.65,5.0,fr,7886,87,325932,1,5,Active Shallow Crust,0.0,89.98717,0.0,01/19/4393 +4.72258,44.45592,2741,12,7,18,2,58,3.65,15.0,fr,7887,54,325933,1,1,Active Shallow Crust,0.0,89.98717,0.0,12/07/2741 +4.72258,44.45592,7766,7,18,3,25,39,3.65,15.0,fr,7888,155,325936,1,4,Active Shallow Crust,240.0004,58.01279,0.0,07/18/7766 +4.72258,44.45592,2249,5,22,22,56,29,3.65,15.0,fr,7889,44,325936,1,4,Active Shallow Crust,240.0004,58.01279,0.0,05/22/2249 +4.72258,44.45592,9333,8,26,23,12,40,3.65,15.0,fr,7890,186,325936,1,4,Active Shallow Crust,240.0004,58.01279,0.0,08/26/9333 +4.72258,44.45592,5186,4,18,20,10,18,3.65,15.0,fr,7891,103,325936,1,4,Active Shallow Crust,240.0004,58.01279,0.0,04/18/5186 +4.72258,44.45592,324,12,25,6,4,56,3.65,15.0,fr,7892,6,325939,1,1,Active Shallow Crust,0.0,89.98702,-90.0,12/25/0324 +4.72258,44.45592,9254,10,31,17,4,41,3.75,5.0,fr,7893,185,325944,1,3,Active Shallow Crust,0.0,89.98856,0.0,10/31/9254 +4.72258,44.45592,1594,7,6,7,5,42,3.75,5.0,fr,7894,31,325944,1,3,Active Shallow Crust,0.0,89.98856,0.0,07/06/1594 +4.72258,44.45592,7551,6,5,17,11,45,3.75,5.0,fr,7895,151,325944,1,3,Active Shallow Crust,0.0,89.98856,0.0,06/05/7551 +4.72258,44.45592,8185,5,6,18,4,34,3.75,5.0,fr,7896,163,325947,1,1,Active Shallow Crust,240.0082,58.01683,0.0,05/06/8185 +4.72258,44.45592,4019,4,29,18,0,9,3.75,5.0,fr,7897,80,325953,1,1,Active Shallow Crust,128.8964,89.96745,0.0,04/29/4019 +4.72258,44.45592,1548,7,28,5,8,56,3.85,5.0,fr,7898,30,325956,1,4,Active Shallow Crust,0.0,89.98981,0.0,07/28/1548 +4.72258,44.45592,6499,12,6,11,58,1,3.85,5.0,fr,7899,129,325956,1,4,Active Shallow Crust,0.0,89.98981,0.0,12/06/6499 +4.72258,44.45592,4027,5,22,5,3,25,3.85,5.0,fr,7900,80,325956,1,4,Active Shallow Crust,0.0,89.98981,0.0,05/22/4027 +4.72258,44.45592,4842,5,31,13,9,49,3.85,5.0,fr,7901,96,325956,1,4,Active Shallow Crust,0.0,89.98981,0.0,05/31/4842 +4.72258,44.45592,853,1,26,16,52,24,3.85,5.0,fr,7902,17,325959,1,1,Active Shallow Crust,240.0108,57.99706,0.0,01/26/0853 +4.72258,44.45592,7208,2,22,11,12,39,3.85,5.0,fr,7903,144,325962,1,1,Active Shallow Crust,0.0,89.98969,-90.0,02/22/7208 +4.72258,44.45592,297,5,25,1,14,34,3.85,5.0,fr,7904,5,325965,1,1,Active Shallow Crust,128.896,89.99236,0.0,05/25/0297 +4.72258,44.45592,723,3,23,12,38,39,3.95,15.0,fr,7905,14,325972,1,1,Active Shallow Crust,240.0192,58.00523,0.0,03/23/0723 +4.72258,44.45592,53,2,11,4,35,19,3.95,5.0,fr,7906,1,325974,1,1,Active Shallow Crust,0.0,89.99081,-90.0,02/11/0053 +4.72258,44.45592,5403,4,17,21,18,29,3.95,15.0,fr,7907,108,325975,1,1,Active Shallow Crust,0.0,89.99081,-90.0,04/17/5403 +4.72258,44.45592,2795,4,26,5,42,7,3.95,5.0,fr,7908,55,325977,1,1,Active Shallow Crust,128.9001,89.99319,0.0,04/26/2795 +4.72258,44.45592,7892,4,9,0,27,4,4.15,5.0,fr,7909,157,325992,1,1,Active Shallow Crust,0.0,89.98917,0.0,04/09/7892 +4.72258,44.45592,3421,4,22,7,46,1,4.15,15.0,fr,7910,68,326002,1,1,Active Shallow Crust,128.8983,89.99278,0.0,04/22/3421 +4.72258,44.45592,3862,3,16,8,40,9,4.25,15.0,fr,7911,77,326011,1,1,Active Shallow Crust,0.0,89.99024,-90.0,03/16/3862 +4.72258,44.45592,911,12,10,11,53,56,4.35,15.0,fr,7912,18,326026,1,1,Active Shallow Crust,128.8979,89.98295,0.0,12/10/0911 +4.72258,44.45592,6153,7,15,20,53,48,4.45,5.0,fr,7913,123,326028,1,1,Active Shallow Crust,0.0,89.98978,0.0,07/15/6153 +4.72258,44.45592,7692,9,8,9,34,39,4.55,15.0,fr,7914,153,326041,1,1,Active Shallow Crust,0.0,89.9909,0.0,09/08/7692 +-1.8243,43.94667,4790,12,14,2,7,0,3.55,27.5,fr,7915,95,326405,1,1,Active Shallow Crust,240.0119,57.99798,0.0,12/14/4790 +-6.96571,46.66722,971,5,16,9,37,56,3.75,5.0,fr,7916,19,326904,1,1,Active Shallow Crust,0.0,89.98901,0.0,05/16/0971 +0.08895,48.043,7742,4,19,13,42,7,3.55,5.0,fr,7917,154,327369,1,1,Active Shallow Crust,128.8961,89.99368,0.0,04/19/7742 +0.08895,48.043,374,11,3,4,21,26,3.65,5.0,fr,7918,7,327381,1,1,Active Shallow Crust,128.9003,89.96352,0.0,11/03/0374 +0.08895,48.043,4678,2,13,4,45,2,3.95,5.0,fr,7919,93,327408,1,1,Active Shallow Crust,0.0,89.99003,0.0,02/13/4678 +0.08895,48.043,9110,2,28,12,52,46,3.95,15.0,fr,7920,182,327412,1,1,Active Shallow Crust,240.02,58.00502,0.0,02/28/9110 +0.08895,48.043,1835,5,9,16,32,4,3.95,5.0,fr,7921,36,327417,1,1,Active Shallow Crust,128.9002,89.99372,0.0,05/09/1835 +0.08895,48.043,7286,7,12,9,31,19,4.05,15.0,fr,7922,145,327430,1,1,Active Shallow Crust,128.8903,89.99372,0.0,07/12/7286 +0.08895,48.043,9121,10,25,1,56,23,4.35,5.0,fr,7923,182,327456,1,1,Active Shallow Crust,0.0,89.99002,0.0,10/25/9121 +0.08895,48.043,7221,10,5,14,3,15,4.35,15.0,fr,7924,144,327460,1,1,Active Shallow Crust,240.0088,57.99601,0.0,10/05/7221 +0.08895,48.043,2585,9,21,12,26,5,5.15,15.0,fr,7925,51,327553,1,1,Active Shallow Crust,0.0,89.99,0.0,09/21/2585 +3.98049,46.82627,4852,7,19,4,43,39,3.55,15.0,fr,7926,97,327850,1,1,Active Shallow Crust,128.8954,89.99483,0.0,07/19/4852 +3.98049,46.82627,5260,5,7,16,17,57,3.75,5.0,fr,7927,105,327864,1,1,Active Shallow Crust,0.0,89.98904,0.0,05/07/5260 +3.98049,46.82627,8223,10,7,22,27,24,4.25,5.0,fr,7928,164,327924,1,1,Active Shallow Crust,0.0,89.99075,0.0,10/07/8223 +7.4748,47.28051,2808,10,19,22,56,41,3.55,5.0,fr,7929,56,328320,1,5,Active Shallow Crust,0.0,89.99316,0.0,10/19/2808 +7.4748,47.28051,7318,10,8,4,43,29,3.55,5.0,fr,7930,146,328320,1,5,Active Shallow Crust,0.0,89.99316,0.0,10/08/7318 +7.4748,47.28051,5800,6,6,13,7,46,3.55,5.0,fr,7931,115,328320,1,5,Active Shallow Crust,0.0,89.99316,0.0,06/06/5800 +7.4748,47.28051,4830,11,3,9,43,41,3.55,5.0,fr,7932,96,328320,1,5,Active Shallow Crust,0.0,89.99316,0.0,11/03/4830 +7.4748,47.28051,225,12,22,14,56,49,3.55,5.0,fr,7933,4,328320,1,5,Active Shallow Crust,0.0,89.99316,0.0,12/22/0225 +7.4748,47.28051,4117,3,1,1,10,27,3.55,15.0,fr,7934,82,328321,1,1,Active Shallow Crust,0.0,89.99316,0.0,03/01/4117 +7.4748,47.28051,7596,5,6,23,52,43,3.55,27.5,fr,7935,151,328322,1,1,Active Shallow Crust,0.0,89.99316,0.0,05/06/7596 +7.4748,47.28051,2246,8,23,18,58,59,3.55,5.0,fr,7936,44,328323,1,1,Active Shallow Crust,240.0123,57.99852,0.0,08/23/2246 +7.4748,47.28051,1849,1,20,4,21,42,3.55,15.0,fr,7937,36,328324,1,1,Active Shallow Crust,240.0123,57.99852,0.0,01/20/1849 +7.4748,47.28051,3546,12,31,5,48,33,3.55,5.0,fr,7938,70,328329,1,1,Active Shallow Crust,128.8956,89.99658,0.0,12/31/3546 +7.4748,47.28051,1004,1,20,12,0,38,3.55,15.0,fr,7939,20,328330,1,2,Active Shallow Crust,128.8956,89.99658,0.0,01/20/1004 +7.4748,47.28051,5634,7,19,21,32,23,3.55,15.0,fr,7940,112,328330,1,2,Active Shallow Crust,128.8956,89.99658,0.0,07/19/5634 +7.4748,47.28051,7026,5,21,7,20,21,3.65,5.0,fr,7941,140,328332,1,2,Active Shallow Crust,0.0,89.98781,0.0,05/21/7026 +7.4748,47.28051,5396,5,28,12,58,0,3.65,5.0,fr,7942,107,328332,1,2,Active Shallow Crust,0.0,89.98781,0.0,05/28/5396 +7.4748,47.28051,2369,1,13,13,37,14,3.65,15.0,fr,7943,47,328333,1,3,Active Shallow Crust,0.0,89.98781,0.0,01/13/2369 +7.4748,47.28051,2648,9,27,15,18,56,3.65,15.0,fr,7944,52,328333,1,3,Active Shallow Crust,0.0,89.98781,0.0,09/27/2648 +7.4748,47.28051,3399,1,17,0,34,47,3.65,15.0,fr,7945,67,328333,1,3,Active Shallow Crust,0.0,89.98781,0.0,01/17/3399 +7.4748,47.28051,6739,5,22,4,40,34,3.65,5.0,fr,7946,134,328335,1,1,Active Shallow Crust,240.0011,58.01259,0.0,05/22/6739 +7.4748,47.28051,1366,10,18,22,57,42,3.65,15.0,fr,7947,27,328336,1,1,Active Shallow Crust,240.0011,58.01259,0.0,10/18/1366 +7.4748,47.28051,8587,9,20,20,5,39,3.65,15.0,fr,7948,171,328339,1,1,Active Shallow Crust,0.0,89.98766,-90.0,09/20/8587 +7.4748,47.28051,7398,4,30,7,59,13,3.65,15.0,fr,7949,147,328342,1,1,Active Shallow Crust,128.9012,89.96354,0.0,04/30/7398 +7.4748,47.28051,3433,8,6,1,14,12,3.75,5.0,fr,7950,68,328344,1,3,Active Shallow Crust,0.0,89.98913,0.0,08/06/3433 +7.4748,47.28051,3338,6,11,20,23,38,3.75,5.0,fr,7951,66,328344,1,3,Active Shallow Crust,0.0,89.98913,0.0,06/11/3338 +7.4748,47.28051,1758,11,27,19,43,6,3.75,5.0,fr,7952,35,328344,1,3,Active Shallow Crust,0.0,89.98913,0.0,11/27/1758 +7.4748,47.28051,2076,3,6,2,48,15,3.75,15.0,fr,7953,41,328345,1,3,Active Shallow Crust,0.0,89.98913,0.0,03/06/2076 +7.4748,47.28051,1255,4,28,1,32,45,3.75,15.0,fr,7954,25,328345,1,3,Active Shallow Crust,0.0,89.98913,0.0,04/28/1255 +7.4748,47.28051,4075,2,26,23,24,44,3.75,15.0,fr,7955,81,328345,1,3,Active Shallow Crust,0.0,89.98913,0.0,02/26/4075 +7.4748,47.28051,4377,1,7,10,9,43,3.75,27.5,fr,7956,87,328346,1,1,Active Shallow Crust,0.0,89.98913,0.0,01/07/4377 +7.4748,47.28051,3969,8,1,3,12,50,3.75,15.0,fr,7957,79,328348,1,1,Active Shallow Crust,240.0096,58.01682,0.0,08/01/3969 +7.4748,47.28051,1162,1,28,13,28,46,3.75,27.5,fr,7958,23,328349,1,1,Active Shallow Crust,240.0096,58.01682,0.0,01/28/1162 +7.4748,47.28051,93,11,22,13,40,10,3.75,27.5,fr,7959,1,328352,1,1,Active Shallow Crust,0.0,89.98901,-90.0,11/22/0093 +7.4748,47.28051,992,1,25,9,0,12,3.85,5.0,fr,7960,19,328356,1,1,Active Shallow Crust,0.0,89.99031,0.0,01/25/0992 +7.4748,47.28051,22,4,24,19,9,35,3.85,15.0,fr,7961,0,328357,1,1,Active Shallow Crust,0.0,89.99031,0.0,04/24/0022 +7.4748,47.28051,4230,10,8,3,33,45,3.85,5.0,fr,7962,84,328359,1,1,Active Shallow Crust,240.0115,57.99787,0.0,10/08/4230 +7.4748,47.28051,1175,12,27,6,35,30,3.85,27.5,fr,7963,23,328361,1,1,Active Shallow Crust,240.0115,57.99787,0.0,12/27/1175 +7.4748,47.28051,1962,10,14,9,57,14,3.85,5.0,fr,7964,39,328365,1,1,Active Shallow Crust,128.8954,89.99516,0.0,10/14/1962 +7.4748,47.28051,1622,6,22,2,40,38,3.95,15.0,fr,7965,32,328369,1,4,Active Shallow Crust,0.0,89.99136,0.0,06/22/1622 +7.4748,47.28051,9639,9,20,4,36,29,3.95,15.0,fr,7966,192,328369,1,4,Active Shallow Crust,0.0,89.99136,0.0,09/20/9639 +7.4748,47.28051,9051,1,1,3,15,25,3.95,15.0,fr,7967,181,328369,1,4,Active Shallow Crust,0.0,89.99136,0.0,01/01/9051 +7.4748,47.28051,6613,7,5,16,6,40,3.95,15.0,fr,7968,132,328369,1,4,Active Shallow Crust,0.0,89.99136,0.0,07/05/6613 +7.4748,47.28051,7392,10,29,19,18,33,3.95,5.0,fr,7969,147,328371,1,2,Active Shallow Crust,240.019,58.00584,0.0,10/29/7392 +7.4748,47.28051,3059,11,5,22,49,31,3.95,5.0,fr,7970,61,328371,1,2,Active Shallow Crust,240.019,58.00584,0.0,11/05/3059 +7.4748,47.28051,780,5,14,10,26,6,3.95,15.0,fr,7971,15,328375,1,2,Active Shallow Crust,0.0,89.99126,-90.0,05/14/0780 +7.4748,47.28051,8069,12,7,4,38,14,3.95,15.0,fr,7972,161,328375,1,2,Active Shallow Crust,0.0,89.99126,-90.0,12/07/8069 +7.4748,47.28051,7800,8,17,11,8,7,3.95,5.0,fr,7973,155,328377,1,1,Active Shallow Crust,128.9,89.99352,0.0,08/17/7800 +7.4748,47.28051,4475,7,29,13,53,42,4.05,5.0,fr,7974,89,328380,1,2,Active Shallow Crust,0.0,89.98846,0.0,07/29/4475 +7.4748,47.28051,1131,4,11,21,3,53,4.05,5.0,fr,7975,22,328380,1,2,Active Shallow Crust,0.0,89.98846,0.0,04/11/1131 +7.4748,47.28051,7591,4,22,12,8,55,4.05,15.0,fr,7976,151,328381,1,1,Active Shallow Crust,0.0,89.98846,0.0,04/22/7591 +7.4748,47.28051,4221,6,7,10,9,49,4.15,5.0,fr,7977,84,328392,1,4,Active Shallow Crust,0.0,89.98972,0.0,06/07/4221 +7.4748,47.28051,845,6,1,21,5,29,4.15,5.0,fr,7978,16,328392,1,4,Active Shallow Crust,0.0,89.98972,0.0,06/01/0845 +7.4748,47.28051,9772,9,15,11,29,44,4.15,5.0,fr,7979,195,328392,1,4,Active Shallow Crust,0.0,89.98972,0.0,09/15/9772 +7.4748,47.28051,7556,12,19,6,51,36,4.15,5.0,fr,7980,151,328392,1,4,Active Shallow Crust,0.0,89.98972,0.0,12/19/7556 +7.4748,47.28051,43,5,10,0,35,15,4.15,5.0,fr,7981,0,328395,1,1,Active Shallow Crust,240.0088,57.99733,0.0,05/10/0043 +7.4748,47.28051,2929,8,9,21,36,7,4.15,5.0,fr,7982,58,328398,1,1,Active Shallow Crust,0.0,89.98959,-90.0,08/09/2929 +7.4748,47.28051,4428,5,13,8,8,25,4.25,15.0,fr,7983,88,328414,1,1,Active Shallow Crust,128.8938,89.98097,0.0,05/13/4428 +7.4748,47.28051,9775,2,24,20,39,53,4.35,5.0,fr,7984,195,328416,1,2,Active Shallow Crust,0.0,89.98911,0.0,02/24/9775 +7.4748,47.28051,7713,6,13,22,0,9,4.35,5.0,fr,7985,154,328416,1,2,Active Shallow Crust,0.0,89.98911,0.0,06/13/7713 +7.4748,47.28051,1387,9,30,18,34,36,4.35,15.0,fr,7986,27,328423,1,1,Active Shallow Crust,0.0,89.98898,-90.0,09/30/1387 +7.4748,47.28051,4159,3,26,3,14,11,4.35,15.0,fr,7987,83,328426,1,1,Active Shallow Crust,128.8983,89.98256,0.0,03/26/4159 +7.4748,47.28051,9078,1,6,3,34,3,4.55,5.0,fr,7988,181,328449,1,1,Active Shallow Crust,128.8935,89.98569,0.0,01/06/9078 +7.4748,47.28051,3214,1,8,10,25,26,4.65,5.0,fr,7989,64,328452,1,2,Active Shallow Crust,0.0,89.99036,0.0,01/08/3214 +7.4748,47.28051,183,3,12,5,50,46,4.65,5.0,fr,7990,3,328452,1,2,Active Shallow Crust,0.0,89.99036,0.0,03/12/0183 +7.4748,47.28051,1015,10,2,18,50,48,4.65,15.0,fr,7991,20,328453,1,1,Active Shallow Crust,0.0,89.99036,0.0,10/02/1015 +7.4748,47.28051,4388,5,29,18,43,44,4.75,15.0,fr,7992,87,328465,1,1,Active Shallow Crust,0.0,89.98969,0.0,05/29/4388 +7.4748,47.28051,9744,3,16,20,2,33,4.85,5.0,fr,7993,194,328476,1,1,Active Shallow Crust,0.0,89.98928,0.0,03/16/9744 +7.4748,47.28051,6766,9,29,10,47,56,5.05,5.0,fr,7994,135,328500,1,2,Active Shallow Crust,0.0,89.99026,0.0,09/29/6766 +7.4748,47.28051,840,8,12,17,27,14,5.05,5.0,fr,7995,16,328500,1,2,Active Shallow Crust,0.0,89.99026,0.0,08/12/0840 +7.4748,47.28051,2632,3,23,16,49,13,5.25,5.0,fr,7996,52,328524,1,1,Active Shallow Crust,0.0,89.99033,0.0,03/23/2632 +-0.33641,42.3144,917,9,18,13,14,34,3.85,5.0,fr,7997,18,328836,1,1,Active Shallow Crust,0.0,89.9901,0.0,09/18/0917 +-0.33641,42.3144,9145,6,3,17,50,15,4.05,27.5,fr,7998,182,328862,1,1,Active Shallow Crust,0.0,89.99004,0.0,06/03/9145 +-2.26174,49.47979,6141,7,18,13,4,14,3.55,5.0,fr,7999,122,329280,1,2,Active Shallow Crust,0.0,89.99017,0.0,07/18/6141 +-2.26174,49.47979,8923,4,11,12,57,2,3.55,5.0,fr,8000,178,329280,1,2,Active Shallow Crust,0.0,89.99017,0.0,04/11/8923 +-2.26174,49.47979,2665,4,5,8,54,24,3.65,5.0,fr,8001,53,329292,1,1,Active Shallow Crust,0.0,89.99124,0.0,04/05/2665 +-2.26174,49.47979,8388,12,13,18,3,4,3.95,5.0,fr,8002,167,329337,1,1,Active Shallow Crust,128.9004,89.99277,0.0,12/13/8388 +-2.26174,49.47979,2385,2,10,10,44,42,4.15,5.0,fr,8003,47,329352,1,1,Active Shallow Crust,0.0,89.99015,0.0,02/10/2385 +-2.26174,49.47979,7485,5,21,18,25,5,4.25,5.0,fr,8004,149,329373,1,1,Active Shallow Crust,128.8938,89.98106,0.0,05/21/7485 +-2.26174,49.47979,6642,8,22,16,0,43,4.45,15.0,fr,8005,132,329389,1,1,Active Shallow Crust,0.0,89.98954,0.0,08/22/6642 +-2.26174,49.47979,6829,7,15,15,22,25,6.05,15.0,fr,8006,136,329581,1,1,Active Shallow Crust,0.0,89.99004,0.0,07/15/6829 +6.48472,48.56767,6932,7,6,17,0,8,4.05,15.0,fr,8007,138,329821,1,1,Active Shallow Crust,0.0,89.98874,0.0,07/06/6932 +6.48472,48.56767,5084,6,16,14,57,24,5.45,5.0,fr,8008,101,329991,1,1,Active Shallow Crust,240.0306,57.99886,0.0,06/16/5084 +5.99553,45.2825,1036,3,31,21,6,39,3.55,5.0,fr,8009,20,330240,1,4,Active Shallow Crust,0.0,89.9929,0.0,03/31/1036 +5.99553,45.2825,5320,5,23,13,49,11,3.55,5.0,fr,8010,106,330240,1,4,Active Shallow Crust,0.0,89.9929,0.0,05/23/5320 +5.99553,45.2825,1936,1,30,14,10,22,3.55,5.0,fr,8011,38,330240,1,4,Active Shallow Crust,0.0,89.9929,0.0,01/30/1936 +5.99553,45.2825,1479,7,8,17,50,38,3.55,5.0,fr,8012,29,330240,1,4,Active Shallow Crust,0.0,89.9929,0.0,07/08/1479 +5.99553,45.2825,415,9,20,11,22,31,3.55,15.0,fr,8013,8,330241,1,2,Active Shallow Crust,0.0,89.9929,0.0,09/20/0415 +5.99553,45.2825,8124,1,25,9,1,7,3.55,15.0,fr,8014,162,330241,1,2,Active Shallow Crust,0.0,89.9929,0.0,01/25/8124 +5.99553,45.2825,3866,2,3,7,20,45,3.55,27.5,fr,8015,77,330242,1,1,Active Shallow Crust,0.0,89.9929,0.0,02/03/3866 +5.99553,45.2825,1902,3,5,21,11,46,3.55,27.5,fr,8016,38,330245,1,1,Active Shallow Crust,240.0132,57.99697,0.0,03/05/1902 +5.99553,45.2825,2355,3,31,17,47,30,3.65,5.0,fr,8017,47,330252,1,1,Active Shallow Crust,0.0,89.98735,0.0,03/31/2355 +5.99553,45.2825,3082,8,15,21,33,2,3.65,15.0,fr,8018,61,330253,1,1,Active Shallow Crust,0.0,89.98735,0.0,08/15/3082 +5.99553,45.2825,2533,7,3,13,48,29,3.65,27.5,fr,8019,50,330257,1,1,Active Shallow Crust,240.0009,58.01333,0.0,07/03/2533 +5.99553,45.2825,1921,6,15,17,42,34,3.75,5.0,fr,8020,38,330264,1,2,Active Shallow Crust,0.0,89.98873,0.0,06/15/1921 +5.99553,45.2825,1497,10,2,0,10,50,3.75,5.0,fr,8021,29,330264,1,2,Active Shallow Crust,0.0,89.98873,0.0,10/02/1497 +5.99553,45.2825,1800,10,12,15,6,48,3.85,15.0,fr,8022,35,330277,1,2,Active Shallow Crust,0.0,89.98995,0.0,10/12/1800 +5.99553,45.2825,177,11,27,4,39,49,3.85,15.0,fr,8023,3,330277,1,2,Active Shallow Crust,0.0,89.98995,0.0,11/27/0177 +5.99553,45.2825,2470,4,5,20,32,8,3.85,15.0,fr,8024,49,330286,1,1,Active Shallow Crust,128.8946,89.99498,0.0,04/05/2470 +5.99553,45.2825,3788,9,9,7,28,29,3.95,5.0,fr,8025,75,330288,1,2,Active Shallow Crust,0.0,89.99104,0.0,09/09/3788 +5.99553,45.2825,9383,1,22,19,53,13,3.95,5.0,fr,8026,187,330288,1,2,Active Shallow Crust,0.0,89.99104,0.0,01/22/9383 +5.99553,45.2825,1968,11,4,1,25,23,3.95,27.5,fr,8027,39,330290,1,1,Active Shallow Crust,0.0,89.99104,0.0,11/04/1968 +5.99553,45.2825,7531,2,23,22,38,8,3.95,5.0,fr,8028,150,330291,1,1,Active Shallow Crust,240.0204,58.00496,0.0,02/23/7531 +5.99553,45.2825,7786,4,26,18,44,59,3.95,5.0,fr,8029,155,330294,1,1,Active Shallow Crust,0.0,89.99094,-90.0,04/26/7786 +5.99553,45.2825,5963,3,21,2,52,21,4.05,27.5,fr,8030,119,330308,1,1,Active Shallow Crust,0.0,89.99193,-90.0,03/21/5963 +5.99553,45.2825,5424,1,28,7,33,35,4.25,5.0,fr,8031,108,330324,1,1,Active Shallow Crust,0.0,89.99049,0.0,01/28/5424 +5.99553,45.2825,7878,5,7,2,4,30,4.35,15.0,fr,8032,157,330337,1,1,Active Shallow Crust,0.0,89.9887,0.0,05/07/7878 +5.99553,45.2825,7711,7,16,17,39,27,4.45,5.0,fr,8033,154,330348,1,1,Active Shallow Crust,0.0,89.98993,0.0,07/16/7711 +5.99553,45.2825,4378,2,13,7,48,33,4.45,5.0,fr,8034,87,330351,1,1,Active Shallow Crust,240.0051,57.99441,0.0,02/13/4378 +5.99553,45.2825,1051,5,2,17,21,47,4.65,5.0,fr,8035,21,330372,1,1,Active Shallow Crust,0.0,89.99,0.0,05/02/1051 +5.99553,45.2825,5689,6,2,23,53,36,4.85,27.5,fr,8036,113,330407,1,1,Active Shallow Crust,128.8931,89.98896,0.0,06/02/5689 +5.99553,45.2825,2404,11,9,4,46,35,5.45,15.0,fr,8037,48,330469,1,1,Active Shallow Crust,0.0,89.98965,0.0,11/09/2404 +0.86509,41.7518,5346,7,15,9,25,34,3.55,5.0,fr,8038,106,330720,1,1,Active Shallow Crust,0.0,89.98965,0.0,07/15/5346 +0.86509,41.7518,4644,1,31,10,22,0,3.75,15.0,fr,8039,92,330745,1,1,Active Shallow Crust,0.0,89.99029,0.0,01/31/4644 +0.86509,41.7518,4283,7,4,3,2,44,4.25,5.0,fr,8040,85,330807,1,1,Active Shallow Crust,240.0067,57.99393,0.0,07/04/4283 +0.86509,41.7518,3255,4,17,9,1,11,4.45,5.0,fr,8041,65,330828,1,1,Active Shallow Crust,0.0,89.98999,0.0,04/17/3255 +8.95064,49.9743,8266,8,9,4,53,52,3.55,5.0,fr,8042,165,331200,1,2,Active Shallow Crust,0.0,89.98703,0.0,08/09/8266 +8.95064,49.9743,8961,4,15,11,26,3,3.55,5.0,fr,8043,179,331200,1,2,Active Shallow Crust,0.0,89.98703,0.0,04/15/8961 +8.95064,49.9743,8180,6,1,9,35,0,3.55,15.0,fr,8044,163,331201,1,2,Active Shallow Crust,0.0,89.98703,0.0,06/01/8180 +8.95064,49.9743,7357,9,30,11,25,46,3.55,15.0,fr,8045,147,331201,1,2,Active Shallow Crust,0.0,89.98703,0.0,09/30/7357 +8.95064,49.9743,7389,5,31,4,10,38,3.55,15.0,fr,8046,147,331207,1,1,Active Shallow Crust,0.0,89.98688,-90.0,05/31/7389 +8.95064,49.9743,412,12,27,10,36,32,3.95,5.0,fr,8047,8,331248,1,1,Active Shallow Crust,0.0,89.99181,0.0,12/27/0412 +8.95064,49.9743,6078,4,2,0,19,26,4.05,5.0,fr,8048,121,331260,1,1,Active Shallow Crust,0.0,89.99271,0.0,04/02/6078 +8.95064,49.9743,6436,8,9,4,49,25,4.45,27.5,fr,8049,128,331313,1,1,Active Shallow Crust,240.0053,57.99554,0.0,08/09/6436 +8.95064,49.9743,8389,9,11,22,34,29,4.55,5.0,fr,8050,167,331326,1,1,Active Shallow Crust,0.0,89.9917,-90.0,09/11/8389 +8.95064,49.9743,5036,4,19,23,14,42,4.75,5.0,fr,8051,100,331344,1,2,Active Shallow Crust,0.0,89.99023,0.0,04/19/5036 +8.95064,49.9743,1558,3,27,23,36,41,4.75,5.0,fr,8052,31,331344,1,2,Active Shallow Crust,0.0,89.99023,0.0,03/27/1558 +1.36826,42.75169,4772,8,1,13,2,5,3.55,5.0,fr,8053,95,331680,1,1,Active Shallow Crust,0.0,89.99075,0.0,08/01/4772 +1.36826,42.75169,2490,5,19,1,46,19,3.55,27.5,fr,8054,49,331682,1,1,Active Shallow Crust,0.0,89.99075,0.0,05/19/2490 +1.36826,42.75169,1613,2,9,9,33,21,3.55,5.0,fr,8055,32,331686,1,1,Active Shallow Crust,0.0,89.99064,-90.0,02/09/1613 +1.36826,42.75169,8448,10,28,0,8,57,3.65,5.0,fr,8056,168,331692,1,2,Active Shallow Crust,0.0,89.9901,0.0,10/28/8448 +1.36826,42.75169,5101,9,2,12,38,38,3.65,5.0,fr,8057,102,331692,1,2,Active Shallow Crust,0.0,89.9901,0.0,09/02/5101 +1.36826,42.75169,6692,3,5,3,47,56,3.65,5.0,fr,8058,133,331695,1,1,Active Shallow Crust,240.0009,58.01283,0.0,03/05/6692 +1.36826,42.75169,5915,12,17,2,55,5,3.65,15.0,fr,8059,118,331696,1,1,Active Shallow Crust,240.0009,58.01283,0.0,12/17/5915 +1.36826,42.75169,9448,2,26,11,7,57,3.75,5.0,fr,8060,188,331704,1,3,Active Shallow Crust,0.0,89.98971,0.0,02/26/9448 +1.36826,42.75169,6062,1,1,11,24,7,3.75,5.0,fr,8061,121,331704,1,3,Active Shallow Crust,0.0,89.98971,0.0,01/01/6062 +1.36826,42.75169,784,8,14,15,25,41,3.75,5.0,fr,8062,15,331704,1,3,Active Shallow Crust,0.0,89.98971,0.0,08/14/0784 +1.36826,42.75169,6358,11,12,13,52,18,3.75,5.0,fr,8063,127,331710,1,1,Active Shallow Crust,0.0,89.98959,-90.0,11/12/6358 +1.36826,42.75169,3849,3,23,7,43,19,3.95,15.0,fr,8064,76,331729,1,1,Active Shallow Crust,0.0,89.98949,0.0,03/23/3849 +1.36826,42.75169,7344,7,26,21,50,1,3.95,27.5,fr,8065,146,331730,1,1,Active Shallow Crust,0.0,89.98949,0.0,07/26/7344 +1.36826,42.75169,6311,1,10,12,39,55,4.05,5.0,fr,8066,126,331740,1,1,Active Shallow Crust,0.0,89.98959,0.0,01/10/6311 +1.36826,42.75169,2396,1,19,15,30,59,4.05,15.0,fr,8067,47,331741,1,1,Active Shallow Crust,0.0,89.98959,0.0,01/19/2396 +1.36826,42.75169,2684,12,15,14,44,46,4.15,5.0,fr,8068,53,331752,1,2,Active Shallow Crust,0.0,89.98979,0.0,12/15/2684 +1.36826,42.75169,6621,9,1,13,58,59,4.15,5.0,fr,8069,132,331752,1,2,Active Shallow Crust,0.0,89.98979,0.0,09/01/6621 +1.36826,42.75169,1747,12,1,4,48,38,4.45,27.5,fr,8070,34,331790,1,1,Active Shallow Crust,0.0,89.99015,0.0,12/01/1747 +1.36826,42.75169,1539,8,29,5,3,57,4.45,15.0,fr,8071,30,331798,1,1,Active Shallow Crust,128.893,89.99376,0.0,08/29/1539 +1.36826,42.75169,9437,12,11,21,49,51,4.65,5.0,fr,8072,188,331812,1,1,Active Shallow Crust,0.0,89.99009,0.0,12/11/9437 +1.36826,42.75169,8389,3,31,16,49,48,4.65,5.0,fr,8073,167,331821,1,1,Active Shallow Crust,128.892,89.98702,0.0,03/31/8389 +1.36826,42.75169,5257,6,11,8,0,50,5.15,5.0,fr,8074,105,331872,1,1,Active Shallow Crust,0.0,89.99002,0.0,06/11/5257 +2.9006,48.97374,466,11,5,17,25,40,3.85,15.0,fr,8075,9,332197,1,1,Active Shallow Crust,0.0,89.99063,0.0,11/05/0466 +2.9006,48.97374,9616,3,3,11,15,26,4.05,15.0,fr,8076,192,332221,1,1,Active Shallow Crust,0.0,89.99069,0.0,03/03/9616 +2.9006,48.97374,1591,12,11,12,51,6,4.05,5.0,fr,8077,31,332226,1,1,Active Shallow Crust,0.0,89.99059,-90.0,12/11/1591 +2.9006,48.97374,7048,4,4,16,14,57,4.05,15.0,fr,8078,140,332227,1,1,Active Shallow Crust,0.0,89.99059,-90.0,04/04/7048 +2.9006,48.97374,532,1,6,6,3,51,6.25,15.0,fr,8079,10,332485,1,1,Active Shallow Crust,0.0,89.98994,0.0,01/06/0532 +-3.51357,42.77606,7322,5,18,20,30,2,3.55,15.0,fr,8080,146,332641,1,1,Active Shallow Crust,0.0,89.9889,0.0,05/18/7322 +-3.51357,42.77606,9995,1,7,21,33,29,3.65,5.0,fr,8081,199,332652,1,1,Active Shallow Crust,0.0,89.9901,0.0,01/07/9995 +-3.51357,42.77606,1588,1,21,19,44,57,3.65,15.0,fr,8082,31,332653,1,1,Active Shallow Crust,0.0,89.9901,0.0,01/21/1588 +-3.51357,42.77606,5647,10,24,7,33,25,3.65,27.5,fr,8083,112,332654,1,1,Active Shallow Crust,0.0,89.9901,0.0,10/24/5647 +-3.51357,42.77606,9589,11,4,22,59,2,3.75,5.0,fr,8084,191,332664,1,1,Active Shallow Crust,0.0,89.99118,0.0,11/04/9589 +-3.51357,42.77606,3040,11,14,0,8,57,3.75,5.0,fr,8085,60,332670,1,2,Active Shallow Crust,0.0,89.99108,-90.0,11/14/3040 +-3.51357,42.77606,8280,7,28,11,21,42,3.75,5.0,fr,8086,165,332670,1,2,Active Shallow Crust,0.0,89.99108,-90.0,07/28/8280 +-3.51357,42.77606,6354,12,8,21,57,35,4.05,27.5,fr,8087,127,332702,1,1,Active Shallow Crust,0.0,89.98959,0.0,12/08/6354 +-3.51357,42.77606,6603,6,20,18,12,27,4.05,5.0,fr,8088,132,332709,1,1,Active Shallow Crust,128.8907,89.99376,0.0,06/20/6603 +-3.51357,42.77606,3196,2,11,7,25,40,4.35,15.0,fr,8089,63,332746,1,1,Active Shallow Crust,128.8986,89.98289,0.0,02/11/3196 +-3.51357,42.77606,8184,11,30,11,58,5,4.55,27.5,fr,8090,163,332762,1,1,Active Shallow Crust,0.0,89.98946,0.0,11/30/8184 +-0.82933,48.24784,8140,12,14,5,22,44,3.55,5.0,fr,8091,162,333120,1,2,Active Shallow Crust,0.0,89.98993,0.0,12/14/8140 +-0.82933,48.24784,6248,2,21,21,22,1,3.55,5.0,fr,8092,124,333120,1,2,Active Shallow Crust,0.0,89.98993,0.0,02/21/6248 +-0.82933,48.24784,7521,11,3,20,47,26,3.55,15.0,fr,8093,150,333121,1,2,Active Shallow Crust,0.0,89.98993,0.0,11/03/7521 +-0.82933,48.24784,36,7,11,23,47,56,3.55,15.0,fr,8094,0,333121,1,2,Active Shallow Crust,0.0,89.98993,0.0,07/11/0036 +-0.82933,48.24784,6894,1,4,5,37,17,3.55,5.0,fr,8095,137,333123,1,1,Active Shallow Crust,240.0123,57.99825,0.0,01/04/6894 +-0.82933,48.24784,5205,2,9,6,25,51,3.65,5.0,fr,8096,104,333132,1,1,Active Shallow Crust,0.0,89.99027,0.0,02/09/5205 +-0.82933,48.24784,3052,12,5,8,19,4,3.65,5.0,fr,8097,61,333135,1,1,Active Shallow Crust,240.0013,58.01289,0.0,12/05/3052 +-0.82933,48.24784,8418,8,13,11,5,51,3.95,5.0,fr,8098,168,333168,1,1,Active Shallow Crust,0.0,89.98994,0.0,08/13/8418 +-0.82933,48.24784,3189,6,20,5,25,1,4.05,27.5,fr,8099,63,333182,1,1,Active Shallow Crust,0.0,89.99009,0.0,06/20/3189 +-0.82933,48.24784,2146,2,4,5,9,31,4.35,5.0,fr,8100,42,333216,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/04/2146 +-0.82933,48.24784,9461,7,7,8,24,57,4.35,5.0,fr,8101,189,333219,1,1,Active Shallow Crust,240.0089,57.99598,0.0,07/07/9461 +-0.82933,48.24784,6792,4,2,21,26,1,4.45,5.0,fr,8102,135,333228,1,1,Active Shallow Crust,0.0,89.98988,0.0,04/02/6792 +-0.82933,48.24784,2168,2,20,6,8,56,4.55,15.0,fr,8103,43,333241,1,1,Active Shallow Crust,0.0,89.98991,0.0,02/20/2168 +-0.82933,48.24784,9694,12,19,3,39,56,5.25,27.5,fr,8104,193,333332,1,1,Active Shallow Crust,0.0,89.99004,-90.0,12/19/9694 +6.71455,44.84479,4959,6,7,20,19,54,3.55,5.0,fr,8105,99,333600,1,3,Active Shallow Crust,0.0,89.99285,0.0,06/07/4959 +6.71455,44.84479,3618,11,20,23,46,21,3.55,5.0,fr,8106,72,333600,1,3,Active Shallow Crust,0.0,89.99285,0.0,11/20/3618 +6.71455,44.84479,7208,9,24,12,28,10,3.55,5.0,fr,8107,144,333600,1,3,Active Shallow Crust,0.0,89.99285,0.0,09/24/7208 +6.71455,44.84479,6613,11,21,9,16,34,3.55,15.0,fr,8108,132,333601,1,1,Active Shallow Crust,0.0,89.99285,0.0,11/21/6613 +6.71455,44.84479,3685,9,25,9,23,4,3.55,15.0,fr,8109,73,333607,1,1,Active Shallow Crust,0.0,89.99277,-90.0,09/25/3685 +6.71455,44.84479,6984,8,9,20,15,49,3.55,15.0,fr,8110,139,333610,1,1,Active Shallow Crust,128.8961,89.99285,0.0,08/09/6984 +6.71455,44.84479,4990,3,19,3,37,35,3.65,5.0,fr,8111,99,333612,1,5,Active Shallow Crust,0.0,89.98726,0.0,03/19/4990 +6.71455,44.84479,307,3,25,23,23,25,3.65,5.0,fr,8112,6,333612,1,5,Active Shallow Crust,0.0,89.98726,0.0,03/25/0307 +6.71455,44.84479,9278,2,20,20,30,32,3.65,5.0,fr,8113,185,333612,1,5,Active Shallow Crust,0.0,89.98726,0.0,02/20/9278 +6.71455,44.84479,3210,5,25,17,27,33,3.65,5.0,fr,8114,64,333612,1,5,Active Shallow Crust,0.0,89.98726,0.0,05/25/3210 +6.71455,44.84479,3258,12,28,23,18,57,3.65,5.0,fr,8115,65,333612,1,5,Active Shallow Crust,0.0,89.98726,0.0,12/28/3258 +6.71455,44.84479,6077,4,30,7,49,1,3.65,15.0,fr,8116,121,333613,1,1,Active Shallow Crust,0.0,89.98726,0.0,04/30/6077 +6.71455,44.84479,8353,7,2,22,32,33,3.65,15.0,fr,8117,167,333616,1,2,Active Shallow Crust,240.0019,58.01258,0.0,07/02/8353 +6.71455,44.84479,7982,4,21,14,1,45,3.65,15.0,fr,8118,159,333616,1,2,Active Shallow Crust,240.0019,58.01258,0.0,04/21/7982 +6.71455,44.84479,851,9,16,8,34,10,3.65,5.0,fr,8119,17,333621,1,1,Active Shallow Crust,128.9004,89.96349,0.0,09/16/0851 +6.71455,44.84479,5370,12,6,3,49,2,3.75,5.0,fr,8120,107,333624,1,3,Active Shallow Crust,0.0,89.98864,0.0,12/06/5370 +6.71455,44.84479,2951,12,19,6,53,14,3.75,5.0,fr,8121,59,333624,1,3,Active Shallow Crust,0.0,89.98864,0.0,12/19/2951 +6.71455,44.84479,7815,2,18,0,44,15,3.75,5.0,fr,8122,156,333624,1,3,Active Shallow Crust,0.0,89.98864,0.0,02/18/7815 +6.71455,44.84479,4478,11,17,16,34,5,3.75,15.0,fr,8123,89,333625,1,1,Active Shallow Crust,0.0,89.98864,0.0,11/17/4478 +6.71455,44.84479,6378,6,11,2,18,12,3.75,5.0,fr,8124,127,333633,1,1,Active Shallow Crust,128.8962,89.96746,0.0,06/11/6378 +6.71455,44.84479,2812,7,23,21,12,4,3.85,5.0,fr,8125,56,333636,1,2,Active Shallow Crust,0.0,89.98988,0.0,07/23/2812 +6.71455,44.84479,9754,4,4,23,16,58,3.85,5.0,fr,8126,195,333636,1,2,Active Shallow Crust,0.0,89.98988,0.0,04/04/9754 +6.71455,44.84479,7078,6,24,20,26,0,3.85,5.0,fr,8127,141,333639,1,1,Active Shallow Crust,240.0108,57.99823,0.0,06/24/7078 +6.71455,44.84479,9466,7,8,18,10,36,3.85,5.0,fr,8128,189,333642,1,1,Active Shallow Crust,0.0,89.98976,-90.0,07/08/9466 +6.71455,44.84479,5450,4,24,17,28,13,3.85,5.0,fr,8129,108,333645,1,2,Active Shallow Crust,128.8956,89.99241,0.0,04/24/5450 +6.71455,44.84479,7658,8,18,14,41,54,3.85,5.0,fr,8130,153,333645,1,2,Active Shallow Crust,128.8956,89.99241,0.0,08/18/7658 +6.71455,44.84479,6460,9,13,9,55,32,3.95,5.0,fr,8131,129,333648,1,1,Active Shallow Crust,0.0,89.99097,0.0,09/13/6460 +6.71455,44.84479,809,1,21,14,4,45,3.95,15.0,fr,8132,16,333649,1,1,Active Shallow Crust,0.0,89.99097,0.0,01/21/0809 +6.71455,44.84479,727,7,8,23,3,38,3.95,5.0,fr,8133,14,333657,1,1,Active Shallow Crust,128.9003,89.99323,0.0,07/08/0727 +6.71455,44.84479,8206,9,10,6,49,30,4.05,5.0,fr,8134,164,333660,1,2,Active Shallow Crust,0.0,89.99196,0.0,09/10/8206 +6.71455,44.84479,8771,12,18,5,1,1,4.05,5.0,fr,8135,175,333660,1,2,Active Shallow Crust,0.0,89.99196,0.0,12/18/8771 +6.71455,44.84479,1845,10,18,13,34,49,4.05,5.0,fr,8136,36,333663,1,1,Active Shallow Crust,240.0052,58.00616,0.0,10/18/1845 +6.71455,44.84479,6828,5,17,17,6,18,4.05,5.0,fr,8137,136,333666,1,1,Active Shallow Crust,0.0,89.99187,-90.0,05/17/6828 +6.71455,44.84479,8007,12,16,17,25,38,4.15,5.0,fr,8138,160,333672,1,2,Active Shallow Crust,0.0,89.98925,0.0,12/16/8007 +6.71455,44.84479,591,2,6,5,7,1,4.15,5.0,fr,8139,11,333672,1,2,Active Shallow Crust,0.0,89.98925,0.0,02/06/0591 +6.71455,44.84479,6121,10,14,12,56,50,4.15,27.5,fr,8140,122,333674,1,1,Active Shallow Crust,0.0,89.98925,0.0,10/14/6121 +6.71455,44.84479,4003,6,30,10,48,12,4.25,5.0,fr,8141,80,333684,1,1,Active Shallow Crust,0.0,89.99042,0.0,06/30/4003 +6.71455,44.84479,7189,12,5,8,32,25,4.55,15.0,fr,8142,143,333730,1,1,Active Shallow Crust,128.8942,89.98556,0.0,12/05/7189 +6.71455,44.84479,4163,12,15,11,59,30,4.85,5.0,fr,8143,83,333762,1,1,Active Shallow Crust,0.0,89.99028,-90.0,12/15/4163 +6.714554,44.84479,8224,7,13,18,10,27,6.25,6.744814,fr,8144,164,333924,1,1,Active Shallow Crust,0.0,89.99009,0.0,07/13/8224 +0.80485,48.21955,1612,2,16,18,21,14,3.55,5.0,fr,8145,32,334080,1,1,Active Shallow Crust,0.0,89.98992,0.0,02/16/1612 +0.80485,48.21955,7899,2,16,20,13,7,3.75,5.0,fr,8146,157,334104,1,1,Active Shallow Crust,0.0,89.98999,0.0,02/16/7899 +0.80485,48.21955,8070,10,17,15,55,44,4.15,5.0,fr,8147,161,334161,1,1,Active Shallow Crust,128.8973,89.99369,0.0,10/17/8070 +0.80485,48.21955,3175,12,27,2,52,0,4.15,15.0,fr,8148,63,334162,1,1,Active Shallow Crust,128.8973,89.99369,0.0,12/27/3175 +0.80485,48.21955,6470,10,24,6,19,37,4.25,5.0,fr,8149,129,334164,1,1,Active Shallow Crust,0.0,89.98987,0.0,10/24/6470 +0.80485,48.21955,1443,1,24,21,27,45,4.25,15.0,fr,8150,28,334165,1,1,Active Shallow Crust,0.0,89.98987,0.0,01/24/1443 +0.80485,48.21955,5070,4,5,9,8,51,4.25,5.0,fr,8151,101,334170,1,1,Active Shallow Crust,0.0,89.99014,-90.0,04/05/5070 +0.80485,48.21955,3314,7,11,18,33,27,4.45,5.0,fr,8152,66,334188,1,1,Active Shallow Crust,0.0,89.98987,0.0,07/11/3314 +0.80485,48.21955,4339,9,15,5,50,31,4.45,5.0,fr,8153,86,334191,1,1,Active Shallow Crust,240.0057,57.99477,0.0,09/15/4339 +-2.43803,43.04773,9942,3,3,8,1,50,3.55,5.0,fr,8154,198,334560,1,1,Active Shallow Crust,0.0,89.98895,0.0,03/03/9942 +-2.43803,43.04773,4819,12,8,17,22,50,3.65,5.0,fr,8155,96,334572,1,2,Active Shallow Crust,0.0,89.99015,0.0,12/08/4819 +-2.43803,43.04773,7946,11,3,11,15,29,3.65,5.0,fr,8156,158,334572,1,2,Active Shallow Crust,0.0,89.99015,0.0,11/03/7946 +-2.43803,43.04773,8049,7,29,4,54,46,3.65,15.0,fr,8157,160,334573,1,1,Active Shallow Crust,0.0,89.99015,0.0,07/29/8049 +-2.43803,43.04773,6862,7,4,4,14,32,3.65,5.0,fr,8158,137,334581,1,2,Active Shallow Crust,128.8998,89.96371,0.0,07/04/6862 +-2.43803,43.04773,4009,7,27,5,57,48,3.65,5.0,fr,8159,80,334581,1,2,Active Shallow Crust,128.8998,89.96371,0.0,07/27/4009 +-2.43803,43.04773,214,2,14,17,11,36,3.85,5.0,fr,8160,4,334596,1,1,Active Shallow Crust,0.0,89.98956,0.0,02/14/0214 +-2.43803,43.04773,7447,6,23,5,3,18,3.85,27.5,fr,8161,148,334601,1,1,Active Shallow Crust,240.0105,57.9975,0.0,06/23/7447 +-2.43803,43.04773,5546,2,23,0,56,7,3.95,5.0,fr,8162,110,334608,1,1,Active Shallow Crust,0.0,89.9907,0.0,02/23/5546 +-2.43803,43.04773,6054,6,20,10,6,18,4.05,15.0,fr,8163,121,334621,1,1,Active Shallow Crust,0.0,89.98964,0.0,06/20/6054 +-2.43803,43.04773,8594,10,25,15,42,33,4.15,5.0,fr,8164,171,334632,1,1,Active Shallow Crust,0.0,89.99077,0.0,10/25/8594 +-2.43803,43.04773,7221,3,6,6,47,54,4.35,5.0,fr,8165,144,334656,1,1,Active Shallow Crust,0.0,89.98973,0.0,03/06/7221 +-2.43803,43.04773,5401,2,24,16,50,28,4.55,5.0,fr,8166,108,334680,1,1,Active Shallow Crust,0.0,89.98951,0.0,02/24/5401 +-2.43803,43.04773,7210,12,23,17,3,58,4.95,5.0,fr,8167,144,334728,1,1,Active Shallow Crust,0.0,89.98971,0.0,12/23/7210 +3.36768,45.43982,1587,6,4,3,27,2,3.55,5.0,fr,8168,31,335040,1,1,Active Shallow Crust,0.0,89.98939,0.0,06/04/1587 +3.36768,45.43982,7193,2,12,4,48,56,3.65,5.0,fr,8169,143,335052,1,2,Active Shallow Crust,0.0,89.99054,0.0,02/12/7193 +3.36768,45.43982,2480,5,2,0,9,36,3.65,5.0,fr,8170,49,335052,1,2,Active Shallow Crust,0.0,89.99054,0.0,05/02/2480 +3.36768,45.43982,2249,2,27,0,46,43,3.75,5.0,fr,8171,44,335064,1,4,Active Shallow Crust,0.0,89.98876,0.0,02/27/2249 +3.36768,45.43982,8449,3,29,4,39,24,3.75,5.0,fr,8172,168,335064,1,4,Active Shallow Crust,0.0,89.98876,0.0,03/29/8449 +3.36768,45.43982,74,3,18,21,16,44,3.75,5.0,fr,8173,1,335064,1,4,Active Shallow Crust,0.0,89.98876,0.0,03/18/0074 +3.36768,45.43982,9496,6,14,18,42,57,3.75,5.0,fr,8174,189,335064,1,4,Active Shallow Crust,0.0,89.98876,0.0,06/14/9496 +3.36768,45.43982,161,6,8,12,50,39,3.75,5.0,fr,8175,3,335070,1,1,Active Shallow Crust,0.0,89.98863,-90.0,06/08/0161 +3.36768,45.43982,7310,10,8,4,25,59,3.85,5.0,fr,8176,146,335076,1,2,Active Shallow Crust,0.0,89.98998,0.0,10/08/7310 +3.36768,45.43982,5474,3,12,17,25,8,3.85,5.0,fr,8177,109,335076,1,2,Active Shallow Crust,0.0,89.98998,0.0,03/12/5474 +3.36768,45.43982,7710,3,1,23,39,7,3.85,15.0,fr,8178,154,335077,1,2,Active Shallow Crust,0.0,89.98998,0.0,03/01/7710 +3.36768,45.43982,3370,12,29,2,6,42,3.85,15.0,fr,8179,67,335077,1,2,Active Shallow Crust,0.0,89.98998,0.0,12/29/3370 +3.36768,45.43982,6047,1,1,2,29,6,3.85,5.0,fr,8180,120,335082,1,1,Active Shallow Crust,0.0,89.98987,-90.0,01/01/6047 +3.36768,45.43982,85,7,4,8,6,45,3.85,5.0,fr,8181,1,335085,1,3,Active Shallow Crust,128.8961,89.99374,0.0,07/04/0085 +3.36768,45.43982,3494,8,17,19,55,12,3.85,5.0,fr,8182,69,335085,1,3,Active Shallow Crust,128.8961,89.99374,0.0,08/17/3494 +3.36768,45.43982,7006,2,10,13,44,46,3.85,5.0,fr,8183,140,335085,1,3,Active Shallow Crust,128.8961,89.99374,0.0,02/10/7006 +3.36768,45.43982,7095,4,1,2,23,50,4.05,5.0,fr,8184,141,335100,1,1,Active Shallow Crust,0.0,89.99005,0.0,04/01/7095 +3.36768,45.43982,2541,10,26,20,2,32,4.25,5.0,fr,8185,50,335124,1,2,Active Shallow Crust,0.0,89.99052,0.0,10/26/2541 +3.36768,45.43982,9545,7,11,21,11,56,4.25,5.0,fr,8186,190,335124,1,2,Active Shallow Crust,0.0,89.99052,0.0,07/11/9545 +3.36768,45.43982,2732,8,31,13,27,40,4.55,5.0,fr,8187,54,335166,1,1,Active Shallow Crust,0.0,89.98981,-90.0,08/31/2732 +3.36768,45.43982,936,1,21,16,32,31,4.75,5.0,fr,8188,18,335184,1,2,Active Shallow Crust,0.0,89.99023,0.0,01/21/0936 +3.36768,45.43982,4248,4,17,22,46,20,4.75,5.0,fr,8189,84,335184,1,2,Active Shallow Crust,0.0,89.99023,0.0,04/17/4248 +3.36768,45.43982,7780,6,10,3,11,20,4.85,5.0,fr,8190,155,335196,1,1,Active Shallow Crust,0.0,89.9897,0.0,06/10/7780 +6.59175,51.439,1594,3,28,17,21,50,3.65,5.0,fr,8191,31,335532,1,1,Active Shallow Crust,0.0,89.98879,0.0,03/28/1594 +6.59175,51.439,576,5,6,15,12,31,3.65,5.0,fr,8192,11,335535,1,1,Active Shallow Crust,240.0019,58.0125,0.0,05/06/0576 +6.59175,51.439,6644,10,31,1,36,15,3.75,15.0,fr,8193,132,335545,1,2,Active Shallow Crust,0.0,89.99001,0.0,10/31/6644 +6.59175,51.439,1858,9,4,1,5,47,3.75,15.0,fr,8194,37,335545,1,2,Active Shallow Crust,0.0,89.99001,0.0,09/04/1858 +6.59175,51.439,1959,11,26,11,50,47,3.85,5.0,fr,8195,39,335565,1,1,Active Shallow Crust,128.8944,89.99332,0.0,11/26/1959 +5.83472,50.36239,1598,3,13,15,43,56,3.55,5.0,fr,8196,31,336000,1,3,Active Shallow Crust,0.0,89.98714,0.0,03/13/1598 +5.83472,50.36239,8421,5,27,9,1,4,3.55,5.0,fr,8197,168,336000,1,3,Active Shallow Crust,0.0,89.98714,0.0,05/27/8421 +5.83472,50.36239,890,8,11,23,34,35,3.55,5.0,fr,8198,17,336000,1,3,Active Shallow Crust,0.0,89.98714,0.0,08/11/0890 +5.83472,50.36239,9384,6,5,1,32,22,3.55,5.0,fr,8199,187,336006,1,1,Active Shallow Crust,0.0,89.98698,-90.0,06/05/9384 +5.83472,50.36239,8435,4,14,15,57,20,3.65,5.0,fr,8200,168,336012,1,1,Active Shallow Crust,0.0,89.98853,0.0,04/14/8435 +5.83472,50.36239,3760,8,25,3,3,54,3.65,15.0,fr,8201,75,336013,1,1,Active Shallow Crust,0.0,89.98853,0.0,08/25/3760 +5.83472,50.36239,7769,11,2,9,46,23,3.75,5.0,fr,8202,155,336024,1,1,Active Shallow Crust,0.0,89.98978,0.0,11/02/7769 +5.83472,50.36239,4076,3,3,16,28,5,3.75,15.0,fr,8203,81,336028,1,1,Active Shallow Crust,240.0089,58.01857,0.0,03/03/4076 +5.83472,50.36239,665,3,29,3,3,3,3.85,5.0,fr,8204,13,336036,1,3,Active Shallow Crust,0.0,89.99089,0.0,03/29/0665 +5.83472,50.36239,6166,4,3,21,36,9,3.85,5.0,fr,8205,123,336036,1,3,Active Shallow Crust,0.0,89.99089,0.0,04/03/6166 +5.83472,50.36239,592,9,11,5,32,11,3.85,5.0,fr,8206,11,336036,1,3,Active Shallow Crust,0.0,89.99089,0.0,09/11/0592 +5.83472,50.36239,7994,5,9,2,46,41,3.85,15.0,fr,8207,159,336037,1,1,Active Shallow Crust,0.0,89.99089,0.0,05/09/7994 +5.83472,50.36239,9132,8,19,8,55,29,3.95,5.0,fr,8208,182,336048,1,1,Active Shallow Crust,0.0,89.99188,0.0,08/19/9132 +5.83472,50.36239,3087,6,10,4,2,0,3.95,5.0,fr,8209,61,336054,1,2,Active Shallow Crust,0.0,89.99179,-90.0,06/10/3087 +5.83472,50.36239,9762,3,21,8,15,18,3.95,5.0,fr,8210,195,336054,1,2,Active Shallow Crust,0.0,89.99179,-90.0,03/21/9762 +5.83472,50.36239,5601,8,6,12,53,48,4.05,5.0,fr,8211,112,336060,1,2,Active Shallow Crust,0.0,89.98914,0.0,08/06/5601 +5.83472,50.36239,5577,12,22,1,27,36,4.05,5.0,fr,8212,111,336060,1,2,Active Shallow Crust,0.0,89.98914,0.0,12/22/5577 +5.83472,50.36239,7283,9,6,2,9,21,4.05,27.5,fr,8213,145,336062,1,1,Active Shallow Crust,0.0,89.98914,0.0,09/06/7283 +5.83472,50.36239,1823,8,1,6,51,1,4.25,27.5,fr,8214,36,336095,1,1,Active Shallow Crust,128.8932,89.98109,0.0,08/01/1823 +5.83472,50.36239,4803,4,22,20,51,1,4.45,15.0,fr,8215,96,336109,1,1,Active Shallow Crust,0.0,89.99087,0.0,04/22/4803 +5.83472,50.36239,3917,11,1,11,16,38,4.65,5.0,fr,8216,78,336132,1,1,Active Shallow Crust,0.0,89.98912,0.0,11/01/3917 +5.83472,50.36239,3317,6,22,17,20,41,4.85,5.0,fr,8217,66,336165,1,1,Active Shallow Crust,128.8912,89.98929,0.0,06/22/3317 +5.83472,50.36239,1845,1,29,8,55,18,5.15,5.0,fr,8218,36,336198,1,1,Active Shallow Crust,0.0,89.98969,-90.0,01/29/1845 +-4.6301,46.3996,4848,4,26,12,55,38,3.75,5.0,fr,8219,96,336504,1,1,Active Shallow Crust,0.0,89.98895,0.0,04/26/4848 +-2.41693,47.98878,3105,8,31,10,18,6,3.55,5.0,fr,8220,62,336960,1,1,Active Shallow Crust,0.0,89.98988,0.0,08/31/3105 +-2.41693,47.98878,6934,1,22,12,18,30,3.65,5.0,fr,8221,138,336975,1,1,Active Shallow Crust,240.0017,58.01255,0.0,01/22/6934 +-2.41693,47.98878,5838,3,19,7,28,17,3.75,15.0,fr,8222,116,336985,1,1,Active Shallow Crust,0.0,89.98928,0.0,03/19/5838 +-2.41693,47.98878,4671,1,3,20,25,0,3.85,5.0,fr,8223,93,336996,1,1,Active Shallow Crust,0.0,89.99044,0.0,01/03/4671 +-2.41693,47.98878,4360,9,6,14,43,0,3.95,5.0,fr,8224,87,337008,1,1,Active Shallow Crust,0.0,89.98936,0.0,09/06/4360 +-2.41693,47.98878,5518,2,2,13,0,17,4.05,5.0,fr,8225,110,337020,1,1,Active Shallow Crust,0.0,89.99051,0.0,02/02/5518 +-2.41693,47.98878,917,9,15,16,9,37,4.15,5.0,fr,8226,18,337035,1,1,Active Shallow Crust,240.009,57.99723,0.0,09/15/0917 +-2.41693,47.98878,579,4,12,12,56,2,4.35,15.0,fr,8227,11,337063,1,1,Active Shallow Crust,0.0,89.99049,-90.0,04/12/0579 +-2.41693,47.98878,608,2,21,10,22,17,4.65,5.0,fr,8228,12,337092,1,1,Active Shallow Crust,0.0,89.98954,0.0,02/21/0608 +-2.41693,47.98878,4142,4,10,9,14,21,4.75,5.0,fr,8229,82,337113,1,1,Active Shallow Crust,128.8881,89.98804,0.0,04/10/4142 +-2.41693,47.98878,8209,12,19,16,39,7,4.85,15.0,fr,8230,164,337117,1,1,Active Shallow Crust,0.0,89.99018,0.0,12/19/8209 +1.41857,42.4909,998,11,21,11,0,37,3.55,5.0,fr,8231,19,337440,1,5,Active Shallow Crust,0.0,89.99071,0.0,11/21/0998 +1.41857,42.4909,3207,11,30,22,51,9,3.55,5.0,fr,8232,64,337440,1,5,Active Shallow Crust,0.0,89.99071,0.0,11/30/3207 +1.41857,42.4909,4222,10,13,1,45,2,3.55,5.0,fr,8233,84,337440,1,5,Active Shallow Crust,0.0,89.99071,0.0,10/13/4222 +1.41857,42.4909,3523,6,3,0,37,43,3.55,5.0,fr,8234,70,337440,1,5,Active Shallow Crust,0.0,89.99071,0.0,06/03/3523 +1.41857,42.4909,1677,11,18,14,19,16,3.55,5.0,fr,8235,33,337440,1,5,Active Shallow Crust,0.0,89.99071,0.0,11/18/1677 +1.41857,42.4909,1497,7,20,18,50,6,3.55,5.0,fr,8236,29,337446,1,1,Active Shallow Crust,0.0,89.9906,-90.0,07/20/1497 +1.41857,42.4909,4816,3,5,17,50,36,3.65,5.0,fr,8237,96,337452,1,3,Active Shallow Crust,0.0,89.99006,0.0,03/05/4816 +1.41857,42.4909,3321,3,22,2,19,21,3.65,5.0,fr,8238,66,337452,1,3,Active Shallow Crust,0.0,89.99006,0.0,03/22/3321 +1.41857,42.4909,405,12,13,8,22,46,3.65,5.0,fr,8239,8,337452,1,3,Active Shallow Crust,0.0,89.99006,0.0,12/13/0405 +1.41857,42.4909,8672,10,29,21,30,40,3.65,15.0,fr,8240,173,337453,1,1,Active Shallow Crust,0.0,89.99006,0.0,10/29/8672 +1.41857,42.4909,1333,12,14,12,48,10,3.65,5.0,fr,8241,26,337458,1,2,Active Shallow Crust,0.0,89.98994,-90.0,12/14/1333 +1.41857,42.4909,378,8,30,10,16,47,3.65,5.0,fr,8242,7,337458,1,2,Active Shallow Crust,0.0,89.98994,-90.0,08/30/0378 +1.41857,42.4909,4005,5,30,18,26,18,3.75,5.0,fr,8243,80,337464,1,3,Active Shallow Crust,0.0,89.98966,0.0,05/30/4005 +1.41857,42.4909,4634,4,15,21,37,28,3.75,5.0,fr,8244,92,337464,1,3,Active Shallow Crust,0.0,89.98966,0.0,04/15/4634 +1.41857,42.4909,5724,7,18,15,45,27,3.75,5.0,fr,8245,114,337464,1,3,Active Shallow Crust,0.0,89.98966,0.0,07/18/5724 +1.41857,42.4909,4298,7,29,18,4,27,3.75,5.0,fr,8246,85,337473,1,1,Active Shallow Crust,128.8972,89.96728,0.0,07/29/4298 +1.41857,42.4909,2978,9,14,7,35,35,3.85,5.0,fr,8247,59,337476,1,1,Active Shallow Crust,0.0,89.98947,0.0,09/14/2978 +1.41857,42.4909,4166,9,19,11,43,23,3.85,5.0,fr,8248,83,337479,1,1,Active Shallow Crust,240.0101,57.99768,0.0,09/19/4166 +1.41857,42.4909,2568,5,3,20,35,43,3.95,27.5,fr,8249,51,337490,1,1,Active Shallow Crust,0.0,89.98944,0.0,05/03/2568 +1.41857,42.4909,1851,12,22,1,50,54,3.95,5.0,fr,8250,37,337491,1,1,Active Shallow Crust,240.0192,58.00481,0.0,12/22/1851 +1.41857,42.4909,9053,8,1,4,22,10,3.95,15.0,fr,8251,181,337492,1,1,Active Shallow Crust,240.0192,58.00481,0.0,08/01/9053 +1.41857,42.4909,423,10,23,13,51,30,4.05,27.5,fr,8252,8,337502,1,1,Active Shallow Crust,0.0,89.98955,0.0,10/23/0423 +1.41857,42.4909,4992,1,29,15,31,56,4.05,15.0,fr,8253,99,337510,1,1,Active Shallow Crust,128.8907,89.99373,0.0,01/29/4992 +1.41857,42.4909,4089,9,24,18,49,7,4.15,5.0,fr,8254,81,337512,1,1,Active Shallow Crust,0.0,89.98975,0.0,09/24/4089 +1.41857,42.4909,5297,8,7,1,21,47,4.15,15.0,fr,8255,105,337519,1,1,Active Shallow Crust,0.0,89.98963,-90.0,08/07/5297 +1.41857,42.4909,5593,6,20,9,26,17,4.25,5.0,fr,8256,111,337524,1,1,Active Shallow Crust,0.0,89.99004,0.0,06/20/5593 +1.41857,42.4909,376,3,7,9,50,31,4.25,15.0,fr,8257,7,337528,1,1,Active Shallow Crust,240.0068,57.99386,0.0,03/07/0376 +1.41857,42.4909,769,3,17,7,13,39,4.35,5.0,fr,8258,15,337536,1,1,Active Shallow Crust,0.0,89.98964,0.0,03/17/0769 +1.41857,42.4909,6964,8,29,11,35,30,4.35,15.0,fr,8259,139,337540,1,1,Active Shallow Crust,240.0076,57.9957,0.0,08/29/6964 +1.41857,42.4909,390,5,15,18,10,59,4.35,5.0,fr,8260,7,337545,1,1,Active Shallow Crust,128.8985,89.98276,0.0,05/15/0390 +1.41857,42.4909,1351,10,13,9,12,11,4.65,5.0,fr,8261,27,337572,1,1,Active Shallow Crust,0.0,89.99004,0.0,10/13/1351 +1.41857,42.4909,4026,11,24,3,48,51,4.75,5.0,fr,8262,80,337584,1,1,Active Shallow Crust,0.0,89.9902,0.0,11/24/4026 +1.41857,42.4909,1013,7,30,6,38,27,5.45,15.0,fr,8263,20,337669,1,1,Active Shallow Crust,0.0,89.98998,0.0,07/30/1013 +8.61682,50.68501,2584,5,26,6,9,50,3.55,5.0,fr,8264,51,337920,1,1,Active Shallow Crust,0.0,89.98722,0.0,05/26/2584 +8.61682,50.68501,7105,8,15,14,36,55,3.95,5.0,fr,8265,142,337968,1,1,Active Shallow Crust,0.0,89.99194,0.0,08/15/7105 +8.61682,50.68501,2317,10,26,17,9,57,3.95,5.0,fr,8266,46,337974,1,1,Active Shallow Crust,0.0,89.99184,-90.0,10/26/2317 +8.61682,50.68501,3970,10,3,12,41,58,4.15,5.0,fr,8267,79,337992,1,1,Active Shallow Crust,0.0,89.98719,0.0,10/03/3970 +5.09759,40.75135,603,4,25,0,3,58,3.55,15.0,fr,8268,12,338401,1,1,Active Shallow Crust,0.0,89.99236,0.0,04/25/0603 +5.09759,40.75135,9553,2,17,2,10,7,3.75,5.0,fr,8269,191,338433,1,1,Active Shallow Crust,128.8965,89.96739,0.0,02/17/9553 +-2.4225,46.76652,431,3,16,1,17,18,3.75,15.0,fr,8270,8,338905,1,1,Active Shallow Crust,0.0,89.98903,0.0,03/16/0431 +-2.4225,46.76652,2353,8,22,7,37,23,3.85,5.0,fr,8271,47,338916,1,1,Active Shallow Crust,0.0,89.99022,0.0,08/22/2353 +-2.4225,46.76652,144,11,1,10,52,29,3.95,15.0,fr,8272,2,338932,1,1,Active Shallow Crust,240.0198,58.00501,0.0,11/01/0144 +-2.4225,46.76652,2821,7,24,20,55,31,4.15,5.0,fr,8273,56,338952,1,1,Active Shallow Crust,0.0,89.98962,0.0,07/24/2821 +-2.4225,46.76652,5885,2,14,13,41,59,4.45,5.0,fr,8274,117,338997,1,1,Active Shallow Crust,128.8921,89.99387,0.0,02/14/5885 +-2.4225,46.76652,3786,6,3,22,58,59,5.15,5.0,fr,8275,75,339072,1,1,Active Shallow Crust,0.0,89.99014,0.0,06/03/3786 +1.81402,43.61821,7534,9,20,11,17,49,3.55,5.0,fr,8276,150,339360,1,1,Active Shallow Crust,0.0,89.99088,0.0,09/20/7534 +1.81402,43.61821,6309,4,28,0,38,10,3.95,15.0,fr,8277,126,339412,1,1,Active Shallow Crust,240.0194,58.00489,0.0,04/28/6309 +0.47747,48.73071,9288,9,22,5,0,14,3.55,5.0,fr,8278,185,339840,1,1,Active Shallow Crust,0.0,89.99002,0.0,09/22/9288 +0.47747,48.73071,7159,2,4,3,13,1,3.55,15.0,fr,8279,143,339841,1,3,Active Shallow Crust,0.0,89.99002,0.0,02/04/7159 +0.47747,48.73071,1648,2,24,16,49,9,3.55,15.0,fr,8280,32,339841,1,3,Active Shallow Crust,0.0,89.99002,0.0,02/24/1648 +0.47747,48.73071,2304,9,9,17,29,1,3.55,15.0,fr,8281,46,339841,1,3,Active Shallow Crust,0.0,89.99002,0.0,09/09/2304 +0.47747,48.73071,9119,12,21,16,32,27,3.55,15.0,fr,8282,182,339847,1,1,Active Shallow Crust,0.0,89.98991,-90.0,12/21/9119 +0.47747,48.73071,1306,7,1,9,9,10,3.75,5.0,fr,8283,26,339864,1,1,Active Shallow Crust,0.0,89.9901,0.0,07/01/1306 +0.47747,48.73071,2577,7,24,4,52,59,4.05,5.0,fr,8284,51,339909,1,1,Active Shallow Crust,128.8902,89.99369,0.0,07/24/2577 +0.47747,48.73071,5834,1,14,4,41,26,4.05,15.0,fr,8285,116,339910,1,1,Active Shallow Crust,128.8902,89.99369,0.0,01/14/5834 +0.47747,48.73071,4180,11,13,19,48,30,4.95,15.0,fr,8286,83,340012,1,1,Active Shallow Crust,240.013,58.00467,0.0,11/13/4180 +6.98958,49.00752,9225,6,15,0,30,42,3.65,15.0,fr,8287,184,340333,1,1,Active Shallow Crust,0.0,89.98821,0.0,06/15/9225 +6.98958,49.00752,3552,7,18,0,48,7,3.65,5.0,fr,8288,71,340341,1,1,Active Shallow Crust,128.9003,89.96357,0.0,07/18/3552 +6.98958,49.00752,9015,11,16,15,59,42,3.75,15.0,fr,8289,180,340351,1,1,Active Shallow Crust,0.0,89.98937,-90.0,11/16/9015 +6.98958,49.00752,2197,6,6,13,12,6,4.15,15.0,fr,8290,43,340393,1,1,Active Shallow Crust,0.0,89.99005,0.0,06/06/2197 +2.65509,48.57268,2027,6,22,22,54,24,3.65,15.0,fr,8291,40,340819,1,1,Active Shallow Crust,0.0,89.99097,-90.0,06/22/2027 +2.65509,48.57268,1034,2,16,9,7,16,3.95,15.0,fr,8292,20,340849,1,1,Active Shallow Crust,0.0,89.98947,0.0,02/16/1034 +2.65509,48.57268,1852,6,11,6,34,57,3.95,27.5,fr,8293,37,340850,1,1,Active Shallow Crust,0.0,89.98947,0.0,06/11/1852 +2.65509,48.57268,7723,4,7,19,32,19,3.95,5.0,fr,8294,154,340857,1,1,Active Shallow Crust,128.9002,89.99368,0.0,04/07/7723 +-2.37427,42.36023,6735,9,28,19,23,46,3.55,27.5,fr,8295,134,341282,1,1,Active Shallow Crust,0.0,89.98882,0.0,09/28/6735 +-2.37427,42.36023,9140,12,9,8,12,19,3.65,15.0,fr,8296,182,341293,1,1,Active Shallow Crust,0.0,89.99004,0.0,12/09/9140 +-2.37427,42.36023,9535,1,1,10,22,1,3.65,27.5,fr,8297,190,341294,1,2,Active Shallow Crust,0.0,89.99004,0.0,01/01/9535 +-2.37427,42.36023,7343,8,10,5,27,1,3.65,27.5,fr,8298,146,341294,1,2,Active Shallow Crust,0.0,89.99004,0.0,08/10/7343 +-2.37427,42.36023,9881,5,29,10,8,25,3.85,15.0,fr,8299,197,341317,1,1,Active Shallow Crust,0.0,89.98945,0.0,05/29/9881 +-2.37427,42.36023,956,1,28,13,4,27,3.95,5.0,fr,8300,19,341328,1,2,Active Shallow Crust,0.0,89.9906,0.0,01/28/0956 +-2.37427,42.36023,7598,4,8,17,36,13,3.95,5.0,fr,8301,151,341328,1,2,Active Shallow Crust,0.0,89.9906,0.0,04/08/7598 +-2.37427,42.36023,5476,1,11,0,39,13,3.95,5.0,fr,8302,109,341337,1,1,Active Shallow Crust,128.9004,89.99413,0.0,01/11/5476 +-2.37427,42.36023,3240,6,5,21,47,54,4.05,27.5,fr,8303,64,341342,1,1,Active Shallow Crust,0.0,89.98952,0.0,06/05/3240 +-2.37427,42.36023,559,2,6,11,39,14,4.25,5.0,fr,8304,11,341364,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/06/0559 +-2.37427,42.36023,3341,5,24,0,17,15,4.25,15.0,fr,8305,66,341365,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/24/3341 +-2.37427,42.36023,7073,7,24,2,3,44,4.35,5.0,fr,8306,141,341376,1,2,Active Shallow Crust,0.0,89.98962,0.0,07/24/7073 +-2.37427,42.36023,1574,2,12,5,35,57,4.35,5.0,fr,8307,31,341376,1,2,Active Shallow Crust,0.0,89.98962,0.0,02/12/1574 +-2.37427,42.36023,7821,6,11,12,47,38,4.45,27.5,fr,8308,156,341390,1,1,Active Shallow Crust,0.0,89.98943,0.0,06/11/7821 +-2.37427,42.36023,1247,6,7,4,1,34,4.85,27.5,fr,8309,24,341447,1,1,Active Shallow Crust,128.8939,89.98901,0.0,06/07/1247 +-2.37427,42.36023,8639,5,7,8,12,57,4.95,5.0,fr,8310,172,341448,1,1,Active Shallow Crust,0.0,89.99033,0.0,05/07/8639 +-2.14134,46.52014,9584,5,12,15,23,3,3.55,5.0,fr,8311,191,341760,1,1,Active Shallow Crust,0.0,89.98959,0.0,05/12/9584 +-2.14134,46.52014,1024,3,12,5,41,18,3.65,5.0,fr,8312,20,341772,1,1,Active Shallow Crust,0.0,89.99072,0.0,03/12/1024 +1.6184,45.73746,1918,10,1,2,17,35,3.55,5.0,fr,8313,38,342240,1,1,Active Shallow Crust,0.0,89.98944,0.0,10/01/1918 +1.6184,45.73746,4504,10,24,3,12,33,3.55,15.0,fr,8314,90,342241,1,1,Active Shallow Crust,0.0,89.98944,0.0,10/24/4504 +1.6184,45.73746,5141,11,19,20,13,46,3.65,5.0,fr,8315,102,342252,1,1,Active Shallow Crust,0.0,89.99059,0.0,11/19/5141 +1.6184,45.73746,680,12,21,3,18,34,3.65,15.0,fr,8316,13,342256,1,1,Active Shallow Crust,240.0011,58.01271,0.0,12/21/0680 +1.6184,45.73746,2217,2,4,18,40,5,3.75,5.0,fr,8317,44,342264,1,1,Active Shallow Crust,0.0,89.99022,0.0,02/04/2217 +1.6184,45.73746,8264,7,26,8,12,7,3.75,15.0,fr,8318,165,342268,1,2,Active Shallow Crust,240.008,58.01749,0.0,07/26/8264 +1.6184,45.73746,1920,1,19,14,9,42,3.75,15.0,fr,8319,38,342268,1,2,Active Shallow Crust,240.008,58.01749,0.0,01/19/1920 +1.6184,45.73746,719,6,26,8,45,23,3.75,15.0,fr,8320,14,342274,1,1,Active Shallow Crust,128.8968,89.96735,0.0,06/26/0719 +1.6184,45.73746,8054,6,21,11,3,34,3.85,5.0,fr,8321,161,342279,1,1,Active Shallow Crust,240.0108,57.9976,0.0,06/21/8054 +1.6184,45.73746,9781,3,19,4,28,29,3.85,5.0,fr,8322,195,342285,1,1,Active Shallow Crust,128.8959,89.99377,0.0,03/19/9781 +1.6184,45.73746,2413,2,25,16,19,42,3.95,5.0,fr,8323,48,342288,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/25/2413 +1.6184,45.73746,8226,12,11,16,42,27,3.95,15.0,fr,8324,164,342289,1,1,Active Shallow Crust,0.0,89.99001,0.0,12/11/8226 +1.6184,45.73746,271,2,9,13,42,15,4.05,5.0,fr,8325,5,342300,1,1,Active Shallow Crust,0.0,89.9901,0.0,02/09/0271 +1.6184,45.73746,6604,9,13,6,13,58,4.05,15.0,fr,8326,132,342301,1,1,Active Shallow Crust,0.0,89.9901,0.0,09/13/6604 +1.6184,45.73746,7015,11,22,18,2,20,4.25,15.0,fr,8327,140,342325,1,1,Active Shallow Crust,0.0,89.98978,0.0,11/22/7015 +1.6184,45.73746,2408,5,19,7,22,32,4.25,5.0,fr,8328,48,342333,1,1,Active Shallow Crust,128.8945,89.98092,0.0,05/19/2408 +-0.24331,50.40433,4216,7,5,21,56,6,3.55,5.0,fr,8329,84,342720,1,1,Active Shallow Crust,0.0,89.98996,0.0,07/05/4216 +-0.24331,50.40433,1031,12,11,5,46,10,4.05,5.0,fr,8330,20,342780,1,1,Active Shallow Crust,0.0,89.98994,0.0,12/11/1031 +-0.24331,50.40433,8742,5,24,5,34,26,4.45,27.5,fr,8331,174,342830,1,1,Active Shallow Crust,0.0,89.99002,0.0,05/24/8742 +-0.24331,50.40433,1057,7,25,5,57,33,5.15,15.0,fr,8332,21,342916,1,1,Active Shallow Crust,240.0221,58.00042,0.0,07/25/1057 +9.31621,49.88557,813,4,3,18,55,30,3.95,27.5,fr,8333,16,343250,1,1,Active Shallow Crust,0.0,89.9918,0.0,04/03/0813 +-0.03889,46.69522,4913,8,5,21,55,48,3.55,5.0,fr,8334,98,343680,1,3,Active Shallow Crust,0.0,89.99001,0.0,08/05/4913 +-0.03889,46.69522,1455,11,13,18,26,58,3.55,5.0,fr,8335,29,343680,1,3,Active Shallow Crust,0.0,89.99001,0.0,11/13/1455 +-0.03889,46.69522,6554,10,30,20,55,30,3.55,5.0,fr,8336,131,343680,1,3,Active Shallow Crust,0.0,89.99001,0.0,10/30/6554 +-0.03889,46.69522,5177,11,14,16,0,26,3.55,15.0,fr,8337,103,343681,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/14/5177 +-0.03889,46.69522,8315,10,13,1,10,6,3.55,15.0,fr,8338,166,343684,1,1,Active Shallow Crust,240.0122,57.99817,0.0,10/13/8315 +-0.03889,46.69522,1098,7,2,1,52,44,3.55,15.0,fr,8339,21,343687,1,1,Active Shallow Crust,0.0,89.99,-90.0,07/02/1098 +-0.03889,46.69522,2112,10,2,11,43,27,3.65,5.0,fr,8340,42,343692,1,2,Active Shallow Crust,0.0,89.98998,0.0,10/02/2112 +-0.03889,46.69522,1082,5,18,8,9,11,3.65,5.0,fr,8341,21,343692,1,2,Active Shallow Crust,0.0,89.98998,0.0,05/18/1082 +-0.03889,46.69522,5880,11,28,4,41,36,3.65,27.5,fr,8342,117,343694,1,1,Active Shallow Crust,0.0,89.98998,0.0,11/28/5880 +-0.03889,46.69522,9194,6,6,16,34,2,3.65,5.0,fr,8343,183,343701,1,1,Active Shallow Crust,128.9004,89.96351,0.0,06/06/9194 +-0.03889,46.69522,9142,5,19,17,24,59,3.75,5.0,fr,8344,182,343704,1,2,Active Shallow Crust,0.0,89.99,0.0,05/19/9142 +-0.03889,46.69522,4065,7,10,21,22,44,3.75,5.0,fr,8345,81,343704,1,2,Active Shallow Crust,0.0,89.99,0.0,07/10/4065 +-0.03889,46.69522,6232,12,21,5,15,25,3.75,15.0,fr,8346,124,343708,1,1,Active Shallow Crust,240.0084,58.01758,0.0,12/21/6232 +-0.03889,46.69522,543,2,8,17,3,55,3.95,5.0,fr,8347,10,343728,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/08/0543 +-0.03889,46.69522,3210,5,5,18,48,49,4.05,5.0,fr,8348,64,343740,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/05/3210 +-0.03889,46.69522,2146,10,2,19,42,48,4.05,5.0,fr,8349,42,343743,1,1,Active Shallow Crust,240.006,58.00584,0.0,10/02/2146 +-0.03889,46.69522,3492,3,6,15,37,49,4.25,5.0,fr,8350,69,343764,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/06/3492 +-0.03889,46.69522,4794,9,18,12,13,32,4.45,5.0,fr,8351,95,343791,1,1,Active Shallow Crust,240.0053,57.99468,0.0,09/18/4794 +-0.03889,46.69522,5983,6,29,16,48,55,5.15,5.0,fr,8352,119,343872,1,1,Active Shallow Crust,360.0,89.99001,0.0,06/29/5983 +7.3728,51.04193,6536,10,8,9,35,27,3.75,5.0,fr,8353,130,344184,1,1,Active Shallow Crust,0.0,89.98993,0.0,10/08/6536 +7.3728,51.04193,272,3,2,14,3,21,3.95,5.0,fr,8354,5,344214,1,1,Active Shallow Crust,0.0,89.99191,-90.0,03/02/0272 +-3.13242,46.56087,9635,7,23,17,55,18,5.35,5.0,fr,8355,192,344856,1,1,Active Shallow Crust,0.0,89.98996,0.0,07/23/9635 +-2.99697,48.07301,6858,4,30,6,56,43,3.55,5.0,fr,8356,137,345120,1,4,Active Shallow Crust,0.0,89.98989,0.0,04/30/6858 +-2.99697,48.07301,7560,3,20,5,38,56,3.55,5.0,fr,8357,151,345120,1,4,Active Shallow Crust,0.0,89.98989,0.0,03/20/7560 +-2.99697,48.07301,3572,8,4,15,30,12,3.55,5.0,fr,8358,71,345120,1,4,Active Shallow Crust,0.0,89.98989,0.0,08/04/3572 +-2.99697,48.07301,2121,4,15,20,34,24,3.55,5.0,fr,8359,42,345120,1,4,Active Shallow Crust,0.0,89.98989,0.0,04/15/2121 +-2.99697,48.07301,2911,11,30,7,27,3,3.55,15.0,fr,8360,58,345121,1,1,Active Shallow Crust,0.0,89.98989,0.0,11/30/2911 +-2.99697,48.07301,9288,1,24,2,48,53,3.55,5.0,fr,8361,185,345123,1,1,Active Shallow Crust,240.0123,57.9977,0.0,01/24/9288 +-2.99697,48.07301,3536,6,20,14,24,38,3.65,5.0,fr,8362,70,345132,1,2,Active Shallow Crust,0.0,89.99099,0.0,06/20/3536 +-2.99697,48.07301,6901,10,24,15,57,58,3.65,5.0,fr,8363,138,345132,1,2,Active Shallow Crust,0.0,89.99099,0.0,10/24/6901 +-2.99697,48.07301,5812,11,9,12,27,9,3.75,5.0,fr,8364,116,345144,1,3,Active Shallow Crust,0.0,89.9893,0.0,11/09/5812 +-2.99697,48.07301,7205,11,24,7,17,41,3.75,5.0,fr,8365,144,345144,1,3,Active Shallow Crust,0.0,89.9893,0.0,11/24/7205 +-2.99697,48.07301,7913,1,20,4,27,46,3.75,5.0,fr,8366,158,345144,1,3,Active Shallow Crust,0.0,89.9893,0.0,01/20/7913 +-2.99697,48.07301,8182,5,21,10,42,24,3.75,5.0,fr,8367,163,345153,1,2,Active Shallow Crust,128.8963,89.96752,0.0,05/21/8182 +-2.99697,48.07301,9426,7,6,8,22,5,3.75,5.0,fr,8368,188,345153,1,2,Active Shallow Crust,128.8963,89.96752,0.0,07/06/9426 +-2.99697,48.07301,9683,6,9,8,54,53,3.85,5.0,fr,8369,193,345156,1,2,Active Shallow Crust,0.0,89.99046,0.0,06/09/9683 +-2.99697,48.07301,2409,2,13,11,39,34,3.85,5.0,fr,8370,48,345156,1,2,Active Shallow Crust,0.0,89.99046,0.0,02/13/2409 +-2.99697,48.07301,2294,11,5,6,31,43,3.95,15.0,fr,8371,45,345169,1,1,Active Shallow Crust,0.0,89.98937,0.0,11/05/2294 +-2.99697,48.07301,2408,4,14,2,1,33,4.05,5.0,fr,8372,48,345180,1,1,Active Shallow Crust,0.0,89.99052,0.0,04/14/2408 +-2.99697,48.07301,6238,11,14,3,33,37,4.15,5.0,fr,8373,124,345192,1,1,Active Shallow Crust,0.0,89.98987,0.0,11/14/6238 +-2.99697,48.07301,3433,2,18,14,50,58,4.55,15.0,fr,8374,68,345241,1,1,Active Shallow Crust,0.0,89.99041,0.0,02/18/3433 +-2.99697,48.07301,3638,11,7,5,4,18,4.95,5.0,fr,8375,72,345288,1,1,Active Shallow Crust,0.0,89.98991,0.0,11/07/3638 +3.50493,47.01246,6815,1,6,0,9,33,3.55,15.0,fr,8376,136,345601,1,1,Active Shallow Crust,0.0,89.98969,0.0,01/06/6815 +3.50493,47.01246,6887,3,27,1,42,15,3.75,5.0,fr,8377,137,345624,1,1,Active Shallow Crust,0.0,89.98907,0.0,03/27/6887 +3.50493,47.01246,8736,3,12,21,53,20,3.95,5.0,fr,8378,174,345648,1,1,Active Shallow Crust,0.0,89.98915,0.0,03/12/8736 +3.50493,47.01246,2611,12,14,19,50,5,4.25,5.0,fr,8379,52,345684,1,1,Active Shallow Crust,0.0,89.98925,0.0,12/14/2611 +3.50493,47.01246,1316,7,19,18,50,3,4.35,5.0,fr,8380,26,345696,1,1,Active Shallow Crust,0.0,89.99042,0.0,07/19/1316 +3.50493,47.01246,7460,1,16,7,37,42,5.85,5.0,fr,8381,149,345882,1,1,Active Shallow Crust,0.0,89.9899,-90.0,01/16/7460 +-1.19516,47.95289,141,9,24,12,15,42,3.55,5.0,fr,8382,2,346089,1,1,Active Shallow Crust,128.896,89.99409,0.0,09/24/0141 +-1.19516,47.95289,3503,11,19,6,11,14,3.65,5.0,fr,8383,70,346092,1,1,Active Shallow Crust,0.0,89.98946,0.0,11/19/3503 +-1.19516,47.95289,5823,6,10,1,58,58,3.65,5.0,fr,8384,116,346095,1,1,Active Shallow Crust,240.0013,58.01286,0.0,06/10/5823 +-1.19516,47.95289,3315,4,11,11,58,40,3.65,5.0,fr,8385,66,346098,1,1,Active Shallow Crust,0.0,89.98934,-90.0,04/11/3315 +-1.19516,47.95289,2135,3,4,3,0,53,3.75,5.0,fr,8386,42,346104,1,1,Active Shallow Crust,0.0,89.99061,0.0,03/04/2135 +-1.19516,47.95289,5660,3,25,9,44,38,4.15,5.0,fr,8387,113,346152,1,1,Active Shallow Crust,0.0,89.98985,0.0,03/25/5660 +-1.19516,47.95289,8731,2,20,5,17,27,4.35,5.0,fr,8388,174,346176,1,1,Active Shallow Crust,0.0,89.98991,0.0,02/20/8731 +-1.19516,47.95289,6707,2,2,1,50,11,4.35,15.0,fr,8389,134,346177,1,1,Active Shallow Crust,0.0,89.98991,0.0,02/02/6707 +-1.19516,47.95289,4568,12,9,5,38,22,4.35,15.0,fr,8390,91,346183,1,1,Active Shallow Crust,0.0,89.9898,-90.0,12/09/4568 +-1.19516,47.95289,7804,10,10,10,16,42,4.95,5.0,fr,8391,156,346248,1,1,Active Shallow Crust,0.0,89.98989,0.0,10/10/7804 +2.52958,41.46595,1875,5,8,19,38,50,3.55,5.0,fr,8392,37,346560,1,5,Active Shallow Crust,0.0,89.98866,0.0,05/08/1875 +2.52958,41.46595,4764,9,4,10,50,0,3.55,5.0,fr,8393,95,346560,1,5,Active Shallow Crust,0.0,89.98866,0.0,09/04/4764 +2.52958,41.46595,6666,2,13,22,37,8,3.55,5.0,fr,8394,133,346560,1,5,Active Shallow Crust,0.0,89.98866,0.0,02/13/6666 +2.52958,41.46595,6123,2,27,8,28,37,3.55,5.0,fr,8395,122,346560,1,5,Active Shallow Crust,0.0,89.98866,0.0,02/27/6123 +2.52958,41.46595,2272,12,6,23,17,20,3.55,5.0,fr,8396,45,346560,1,5,Active Shallow Crust,0.0,89.98866,0.0,12/06/2272 +2.52958,41.46595,7728,6,6,1,58,5,3.55,15.0,fr,8397,154,346561,1,4,Active Shallow Crust,0.0,89.98866,0.0,06/06/7728 +2.52958,41.46595,2926,10,27,8,49,30,3.55,15.0,fr,8398,58,346561,1,4,Active Shallow Crust,0.0,89.98866,0.0,10/27/2926 +2.52958,41.46595,7442,2,2,23,7,57,3.55,15.0,fr,8399,148,346561,1,4,Active Shallow Crust,0.0,89.98866,0.0,02/02/7442 +2.52958,41.46595,2078,12,9,20,49,10,3.55,15.0,fr,8400,41,346561,1,4,Active Shallow Crust,0.0,89.98866,0.0,12/09/2078 +2.52958,41.46595,4802,4,6,15,32,37,3.55,27.5,fr,8401,96,346562,1,1,Active Shallow Crust,0.0,89.98866,0.0,04/06/4802 +2.52958,41.46595,3631,6,5,14,58,16,3.55,5.0,fr,8402,72,346563,1,1,Active Shallow Crust,240.0115,57.99827,0.0,06/05/3631 +2.52958,41.46595,5241,5,2,5,19,33,3.65,5.0,fr,8403,104,346572,1,2,Active Shallow Crust,0.0,89.9899,0.0,05/02/5241 +2.52958,41.46595,5594,1,29,15,3,43,3.65,5.0,fr,8404,111,346572,1,2,Active Shallow Crust,0.0,89.9899,0.0,01/29/5594 +2.52958,41.46595,4779,6,14,10,12,40,3.65,5.0,fr,8405,95,346575,1,1,Active Shallow Crust,240.0003,58.01263,0.0,06/14/4779 +2.52958,41.46595,257,1,10,12,53,42,3.65,27.5,fr,8406,5,346577,1,2,Active Shallow Crust,240.0003,58.01254,0.0,01/10/0257 +2.52958,41.46595,5106,3,31,13,37,28,3.65,27.5,fr,8407,102,346577,1,2,Active Shallow Crust,240.0003,58.01254,0.0,03/31/5106 +2.52958,41.46595,5630,10,15,8,27,52,3.65,5.0,fr,8408,112,346581,1,1,Active Shallow Crust,128.9012,89.96342,0.0,10/15/5630 +2.52958,41.46595,9455,5,17,2,9,53,3.75,5.0,fr,8409,189,346584,1,3,Active Shallow Crust,0.0,89.991,0.0,05/17/9455 +2.52958,41.46595,3752,10,7,6,41,30,3.75,5.0,fr,8410,75,346584,1,3,Active Shallow Crust,0.0,89.991,0.0,10/07/3752 +2.52958,41.46595,6267,5,20,19,23,49,3.75,5.0,fr,8411,125,346584,1,3,Active Shallow Crust,0.0,89.991,0.0,05/20/6267 +2.52958,41.46595,6018,10,11,19,0,29,3.75,15.0,fr,8412,120,346585,1,1,Active Shallow Crust,0.0,89.991,0.0,10/11/6018 +2.52958,41.46595,4227,6,13,22,52,34,3.75,27.5,fr,8413,84,346586,1,1,Active Shallow Crust,0.0,89.991,0.0,06/13/4227 +2.52958,41.46595,7964,12,23,21,29,26,3.75,15.0,fr,8414,159,346588,1,1,Active Shallow Crust,240.0074,58.01741,0.0,12/23/7964 +2.52958,41.46595,232,10,21,3,39,55,3.75,5.0,fr,8415,4,346593,1,1,Active Shallow Crust,128.8971,89.96741,0.0,10/21/0232 +2.52958,41.46595,9134,8,17,4,30,18,3.85,5.0,fr,8416,182,346596,1,3,Active Shallow Crust,0.0,89.9893,0.0,08/17/9134 +2.52958,41.46595,3370,5,5,21,28,27,3.85,5.0,fr,8417,67,346596,1,3,Active Shallow Crust,0.0,89.9893,0.0,05/05/3370 +2.52958,41.46595,2821,11,12,3,7,4,3.85,5.0,fr,8418,56,346596,1,3,Active Shallow Crust,0.0,89.9893,0.0,11/12/2821 +2.52958,41.46595,4447,1,4,7,28,10,3.85,15.0,fr,8419,88,346597,1,1,Active Shallow Crust,0.0,89.9893,0.0,01/04/4447 +2.52958,41.46595,3843,5,1,3,30,25,3.85,15.0,fr,8420,76,346603,1,1,Active Shallow Crust,0.0,89.98917,-90.0,05/01/3843 +2.52958,41.46595,455,3,10,10,53,5,3.85,27.5,fr,8421,9,346607,1,1,Active Shallow Crust,128.8963,89.99332,0.0,03/10/0455 +2.52958,41.46595,94,4,2,12,21,32,3.95,5.0,fr,8422,1,346608,1,1,Active Shallow Crust,0.0,89.99046,0.0,04/02/0094 +2.52958,41.46595,2136,8,13,14,51,17,4.05,5.0,fr,8423,42,346620,1,3,Active Shallow Crust,0.0,89.98938,0.0,08/13/2136 +2.52958,41.46595,5393,7,31,15,16,43,4.05,5.0,fr,8424,107,346620,1,3,Active Shallow Crust,0.0,89.98938,0.0,07/31/5393 +2.52958,41.46595,3261,11,13,9,5,5,4.05,5.0,fr,8425,65,346620,1,3,Active Shallow Crust,0.0,89.98938,0.0,11/13/3261 +2.52958,41.46595,6378,5,25,19,56,29,4.05,27.5,fr,8426,127,346628,1,1,Active Shallow Crust,0.0,89.98925,-90.0,05/25/6378 +2.52958,41.46595,9493,2,12,9,55,13,4.15,15.0,fr,8427,189,346633,1,1,Active Shallow Crust,0.0,89.99053,0.0,02/12/9493 +2.52958,41.46595,1798,6,1,0,16,52,4.25,15.0,fr,8428,35,346645,1,2,Active Shallow Crust,0.0,89.98988,0.0,06/01/1798 +2.52958,41.46595,8507,11,10,5,54,12,4.25,15.0,fr,8429,170,346645,1,2,Active Shallow Crust,0.0,89.98988,0.0,11/10/8507 +2.52958,41.46595,3607,6,20,11,24,0,4.35,5.0,fr,8430,72,346656,1,1,Active Shallow Crust,0.0,89.98947,0.0,06/20/3607 +2.52958,41.46595,470,10,24,0,6,20,4.45,15.0,fr,8431,9,346669,1,1,Active Shallow Crust,0.0,89.99062,0.0,10/24/0470 +2.52958,41.46595,5530,10,5,4,32,17,4.55,15.0,fr,8432,110,346681,1,1,Active Shallow Crust,0.0,89.99044,0.0,10/05/5530 +2.52958,41.46595,8964,11,10,17,42,37,4.65,5.0,fr,8433,179,346692,1,1,Active Shallow Crust,0.0,89.99042,0.0,11/10/8964 +2.52958,41.46595,9591,6,7,23,9,43,5.05,5.0,fr,8434,191,346740,1,1,Active Shallow Crust,0.0,89.98992,0.0,06/07/9591 +2.52958,41.46595,4602,9,15,14,18,38,5.25,15.0,fr,8435,92,346765,1,1,Active Shallow Crust,0.0,89.98986,0.0,09/15/4602 +2.52958,41.46595,9727,11,27,3,49,15,5.65,15.0,fr,8436,194,346813,1,1,Active Shallow Crust,0.0,89.98989,0.0,11/27/9727 +2.52958,41.46595,2585,8,18,2,7,4,5.95,5.0,fr,8437,51,346848,1,1,Active Shallow Crust,0.0,89.98998,0.0,08/18/2585 +-4.71921,49.26684,1124,8,20,3,7,15,3.65,15.0,fr,8438,22,347056,1,1,Active Shallow Crust,240.0008,58.01317,0.0,08/20/1124 +-4.71921,49.26684,7472,1,4,9,9,8,3.75,15.0,fr,8439,149,347074,1,1,Active Shallow Crust,128.8963,89.96754,0.0,01/04/7472 +-4.71921,49.26684,9947,5,1,19,38,40,3.85,15.0,fr,8440,198,347080,1,1,Active Shallow Crust,240.0113,57.99844,0.0,05/01/9947 +-4.71921,49.26684,1986,7,28,11,58,18,4.05,5.0,fr,8441,39,347103,1,1,Active Shallow Crust,240.0065,58.0059,0.0,07/28/1986 +-4.71921,49.26684,5365,6,8,8,49,15,5.25,5.0,fr,8442,107,347250,1,1,Active Shallow Crust,0.0,89.98965,-90.0,06/08/5365 +4.73258,41.78719,6386,5,11,21,50,32,3.55,5.0,fr,8443,127,347520,1,2,Active Shallow Crust,0.0,89.99249,0.0,05/11/6386 +4.73258,41.78719,3972,8,3,3,40,45,3.55,5.0,fr,8444,79,347520,1,2,Active Shallow Crust,0.0,89.99249,0.0,08/03/3972 +4.73258,41.78719,3958,3,31,1,32,27,3.65,15.0,fr,8445,79,347533,1,1,Active Shallow Crust,0.0,89.9933,0.0,03/31/3958 +4.73258,41.78719,7064,6,28,6,18,5,3.75,15.0,fr,8446,141,347545,1,1,Active Shallow Crust,0.0,89.98805,0.0,06/28/7064 +4.73258,41.78719,7290,5,29,11,36,49,4.95,15.0,fr,8447,145,347689,1,1,Active Shallow Crust,0.0,89.98949,0.0,05/29/7290 +2.18346,41.14201,8082,8,12,11,40,42,3.55,5.0,fr,8448,161,348000,1,1,Active Shallow Crust,0.0,89.98861,0.0,08/12/8082 +2.18346,41.14201,7908,4,13,20,49,52,3.55,15.0,fr,8449,158,348004,1,1,Active Shallow Crust,240.0116,57.99841,0.0,04/13/7908 +2.18346,41.14201,1566,8,20,17,56,28,3.65,15.0,fr,8450,31,348013,1,1,Active Shallow Crust,0.0,89.98985,0.0,08/20/1566 +2.18346,41.14201,4181,10,18,0,15,57,3.65,5.0,fr,8451,83,348018,1,1,Active Shallow Crust,0.0,89.98973,-90.0,10/18/4181 +2.18346,41.14201,8466,2,12,6,10,18,3.85,5.0,fr,8452,169,348036,1,2,Active Shallow Crust,0.0,89.98925,0.0,02/12/8466 +2.18346,41.14201,9399,9,10,18,31,27,3.85,5.0,fr,8453,187,348036,1,2,Active Shallow Crust,0.0,89.98925,0.0,09/10/9399 +2.18346,41.14201,5023,9,21,23,1,3,4.05,15.0,fr,8454,100,348061,1,1,Active Shallow Crust,0.0,89.98933,0.0,09/21/5023 +2.18346,41.14201,2957,10,28,12,13,59,4.25,15.0,fr,8455,59,348085,1,1,Active Shallow Crust,0.0,89.98982,0.0,10/28/2957 +2.18346,41.14201,7432,10,21,19,51,1,4.45,27.5,fr,8456,148,348110,1,1,Active Shallow Crust,0.0,89.99057,0.0,10/21/7432 +2.18346,41.14201,8612,6,15,4,37,39,4.55,5.0,fr,8457,172,348120,1,1,Active Shallow Crust,0.0,89.99039,0.0,06/15/8612 +2.4279,47.51138,8627,4,3,18,3,25,3.55,5.0,fr,8458,172,348480,1,1,Active Shallow Crust,0.0,89.98978,0.0,04/03/8627 +2.4279,47.51138,679,4,30,6,23,13,3.65,5.0,fr,8459,13,348492,1,1,Active Shallow Crust,0.0,89.99089,0.0,04/30/0679 +2.4279,47.51138,6862,6,24,19,59,47,3.65,15.0,fr,8460,137,348493,1,1,Active Shallow Crust,0.0,89.99089,0.0,06/24/6862 +2.4279,47.51138,8134,5,15,14,47,13,4.15,5.0,fr,8461,162,348555,1,1,Active Shallow Crust,240.0088,57.99725,0.0,05/15/8134 +2.4279,47.51138,621,6,17,16,33,11,4.35,5.0,fr,8462,12,348579,1,1,Active Shallow Crust,240.0087,57.99594,0.0,06/17/0621 +2.4279,47.51138,1333,7,29,20,1,28,4.45,5.0,fr,8463,26,348588,1,1,Active Shallow Crust,0.0,89.99033,0.0,07/29/1333 +2.4279,47.51138,2788,7,16,1,2,25,4.65,5.0,fr,8464,55,348612,1,1,Active Shallow Crust,0.0,89.9904,0.0,07/16/2788 +3.34286,51.30933,5689,9,2,6,32,53,3.55,5.0,fr,8465,113,348960,1,1,Active Shallow Crust,0.0,89.99055,0.0,09/02/5689 +3.34286,51.30933,574,8,1,10,56,28,3.55,15.0,fr,8466,11,348961,1,1,Active Shallow Crust,0.0,89.99055,0.0,08/01/0574 +3.34286,51.30933,8403,6,22,17,15,31,3.85,15.0,fr,8467,168,348997,1,2,Active Shallow Crust,0.0,89.99107,0.0,06/22/8403 +3.34286,51.30933,4166,12,31,19,8,58,3.85,15.0,fr,8468,83,348997,1,2,Active Shallow Crust,0.0,89.99107,0.0,12/31/4166 +3.34286,51.30933,9445,6,4,1,39,35,4.05,5.0,fr,8469,188,349020,1,1,Active Shallow Crust,0.0,89.98936,0.0,06/04/9445 +3.34286,51.30933,2893,5,26,6,9,46,4.15,5.0,fr,8470,57,349032,1,1,Active Shallow Crust,0.0,89.99052,0.0,05/26/2893 +3.34286,51.30933,8335,1,17,14,23,51,4.15,15.0,fr,8471,166,349033,1,1,Active Shallow Crust,0.0,89.99052,0.0,01/17/8335 +3.34286,51.30933,1145,9,7,18,54,54,4.25,15.0,fr,8472,22,349045,1,1,Active Shallow Crust,0.0,89.99014,0.0,09/07/1145 +3.34286,51.30933,7594,9,25,1,1,25,4.35,5.0,fr,8473,151,349056,1,1,Active Shallow Crust,0.0,89.98996,0.0,09/25/7594 +2.40047,40.50055,3981,9,5,1,46,7,3.95,5.0,fr,8474,79,349488,1,1,Active Shallow Crust,0.0,89.99033,0.0,09/05/3981 +2.40047,40.50055,2644,11,23,1,36,53,4.15,5.0,fr,8475,52,349512,1,1,Active Shallow Crust,0.0,89.99039,0.0,11/23/2644 +2.05326,48.94084,6172,8,4,10,40,57,3.55,5.0,fr,8476,123,349920,1,1,Active Shallow Crust,0.0,89.99007,0.0,08/04/6172 +2.05326,48.94084,7950,10,20,5,22,49,3.65,5.0,fr,8477,158,349932,1,1,Active Shallow Crust,0.0,89.99114,0.0,10/20/7950 +2.05326,48.94084,4301,3,20,23,29,13,3.75,15.0,fr,8478,86,349945,1,1,Active Shallow Crust,0.0,89.98948,0.0,03/20/4301 +2.05326,48.94084,2132,1,29,22,53,51,3.95,5.0,fr,8479,42,349968,1,1,Active Shallow Crust,0.0,89.98956,0.0,01/29/2132 +2.05326,48.94084,5882,11,5,13,51,58,4.05,15.0,fr,8480,117,349984,1,1,Active Shallow Crust,240.0061,58.00608,0.0,11/05/5882 +1.1601,45.97466,8837,12,8,9,8,44,3.65,15.0,fr,8481,176,350413,1,1,Active Shallow Crust,0.0,89.99063,0.0,12/08/8837 +1.1601,45.97466,2593,12,20,0,46,12,3.75,5.0,fr,8482,51,350430,1,1,Active Shallow Crust,0.0,89.99014,-90.0,12/20/2593 +1.1601,45.97466,7284,8,23,18,20,57,3.85,15.0,fr,8483,145,350437,1,1,Active Shallow Crust,0.0,89.99007,0.0,08/23/7284 +1.1601,45.97466,1963,7,9,10,22,31,3.95,5.0,fr,8484,39,350448,1,1,Active Shallow Crust,0.0,89.99005,0.0,07/09/1963 +1.1601,45.97466,7671,5,6,23,22,35,3.95,15.0,fr,8485,153,350449,1,1,Active Shallow Crust,0.0,89.99005,0.0,05/06/7671 +1.1601,45.97466,5578,10,4,23,1,3,4.35,5.0,fr,8486,111,350496,1,1,Active Shallow Crust,0.0,89.99023,0.0,10/04/5578 +1.1601,45.97466,9976,7,5,12,47,37,4.55,15.0,fr,8487,199,350521,1,1,Active Shallow Crust,0.0,89.99003,0.0,07/05/9976 +1.1601,45.97466,4428,10,8,11,7,10,4.85,15.0,fr,8488,88,350566,1,1,Active Shallow Crust,128.8928,89.98901,0.0,10/08/4428 +4.46974,44.6842,45,4,20,22,19,11,3.55,5.0,fr,8489,0,351360,1,4,Active Shallow Crust,0.0,89.99283,0.0,04/20/0045 +4.46974,44.6842,5460,9,13,4,12,0,3.55,5.0,fr,8490,109,351360,1,4,Active Shallow Crust,0.0,89.99283,0.0,09/13/5460 +4.46974,44.6842,8828,11,4,18,31,47,3.55,5.0,fr,8491,176,351360,1,4,Active Shallow Crust,0.0,89.99283,0.0,11/04/8828 +4.46974,44.6842,8255,10,7,7,28,43,3.55,5.0,fr,8492,165,351360,1,4,Active Shallow Crust,0.0,89.99283,0.0,10/07/8255 +4.46974,44.6842,4216,2,22,11,30,8,3.55,15.0,fr,8493,84,351361,1,2,Active Shallow Crust,0.0,89.99283,0.0,02/22/4216 +4.46974,44.6842,6313,9,1,4,5,48,3.55,15.0,fr,8494,126,351361,1,2,Active Shallow Crust,0.0,89.99283,0.0,09/01/6313 +4.46974,44.6842,2843,9,9,11,8,36,3.65,5.0,fr,8495,56,351372,1,1,Active Shallow Crust,0.0,89.98722,0.0,09/09/2843 +4.46974,44.6842,19,5,29,10,4,47,3.65,15.0,fr,8496,0,351376,1,1,Active Shallow Crust,240.0023,58.01227,0.0,05/29/0019 +4.46974,44.6842,768,11,5,4,12,25,3.75,5.0,fr,8497,15,351384,1,1,Active Shallow Crust,0.0,89.98861,0.0,11/05/0768 +4.46974,44.6842,7397,1,10,7,23,22,3.75,27.5,fr,8498,147,351386,1,1,Active Shallow Crust,0.0,89.98861,0.0,01/10/7397 +4.46974,44.6842,5932,7,11,15,52,0,3.75,15.0,fr,8499,118,351388,1,1,Active Shallow Crust,240.0079,58.0179,0.0,07/11/5932 +4.46974,44.6842,6751,10,18,23,22,3,3.95,27.5,fr,8500,135,351419,1,1,Active Shallow Crust,128.9005,89.99548,0.0,10/18/6751 +4.46974,44.6842,8674,10,5,23,16,13,4.05,5.0,fr,8501,173,351420,1,1,Active Shallow Crust,0.0,89.99194,0.0,10/05/8674 +4.46974,44.6842,9654,4,24,19,23,10,4.05,15.0,fr,8502,193,351421,1,1,Active Shallow Crust,0.0,89.99194,0.0,04/24/9654 +4.46974,44.6842,5512,9,22,2,56,45,4.15,5.0,fr,8503,110,351432,1,1,Active Shallow Crust,0.0,89.98922,0.0,09/22/5512 +4.46974,44.6842,7771,6,24,5,35,31,4.15,5.0,fr,8504,155,351438,1,1,Active Shallow Crust,0.0,89.9891,-90.0,06/24/7771 +4.46974,44.6842,2120,3,21,4,15,38,4.25,5.0,fr,8505,42,351447,1,1,Active Shallow Crust,240.007,57.99409,0.0,03/21/2120 +4.46974,44.6842,7949,6,4,9,58,46,4.35,5.0,fr,8506,158,351456,1,1,Active Shallow Crust,0.0,89.98858,0.0,06/04/7949 +4.46974,44.6842,9423,10,26,20,45,43,4.75,15.0,fr,8507,188,351514,1,1,Active Shallow Crust,128.8896,89.98807,0.0,10/26/9423 +-4.22027,47.27128,9708,6,19,11,48,53,3.75,5.0,fr,8508,194,351864,1,1,Active Shallow Crust,0.0,89.98913,0.0,06/19/9708 +-4.22027,47.27128,2160,5,16,20,56,53,3.75,15.0,fr,8509,43,351865,1,1,Active Shallow Crust,0.0,89.98913,0.0,05/16/2160 +4.79814,47.19977,310,2,2,14,58,44,3.75,5.0,fr,8510,6,352344,1,2,Active Shallow Crust,0.0,89.98911,0.0,02/02/0310 +4.79814,47.19977,4598,10,15,2,43,20,3.75,5.0,fr,8511,91,352344,1,2,Active Shallow Crust,0.0,89.98911,0.0,10/15/4598 +4.79814,47.19977,1390,10,9,22,13,38,3.95,5.0,fr,8512,27,352371,1,1,Active Shallow Crust,240.0201,58.00427,0.0,10/09/1390 +4.79814,47.19977,4517,2,17,20,36,2,4.15,15.0,fr,8513,90,352393,1,1,Active Shallow Crust,0.0,89.9897,0.0,02/17/4517 +4.79814,47.19977,5478,7,26,19,41,36,4.25,5.0,fr,8514,109,352404,1,2,Active Shallow Crust,0.0,89.99082,0.0,07/26/5478 +4.79814,47.19977,7855,2,2,3,28,30,4.25,5.0,fr,8515,157,352404,1,2,Active Shallow Crust,0.0,89.99082,0.0,02/02/7855 +4.79814,47.19977,4844,12,22,6,42,23,4.25,5.0,fr,8516,96,352413,1,1,Active Shallow Crust,128.8934,89.98097,0.0,12/22/4844 +4.79814,47.19977,5088,6,29,0,13,16,4.35,5.0,fr,8517,101,352416,1,1,Active Shallow Crust,0.0,89.98909,0.0,06/29/5088 +4.79814,47.19977,7878,5,6,7,50,41,4.55,5.0,fr,8518,157,352440,1,1,Active Shallow Crust,0.0,89.98917,0.0,05/06/7878 +4.79814,47.19977,1667,4,28,16,59,32,4.95,27.5,fr,8519,33,352490,1,1,Active Shallow Crust,0.0,89.99043,0.0,04/28/1667 +1.78869,49.19148,3104,7,1,21,13,29,3.65,5.0,fr,8520,62,352812,1,1,Active Shallow Crust,0.0,89.98972,0.0,07/01/3104 +1.78869,49.19148,5339,8,8,19,0,10,3.85,5.0,fr,8521,106,352842,1,1,Active Shallow Crust,0.0,89.99056,-90.0,08/08/5339 +1.78869,49.19148,5159,4,11,10,26,1,3.95,5.0,fr,8522,103,352851,1,1,Active Shallow Crust,240.0203,58.00494,0.0,04/11/5159 +1.78869,49.19148,4882,1,20,6,49,30,4.75,15.0,fr,8523,97,352951,1,1,Active Shallow Crust,0.0,89.98995,-90.0,01/20/4882 +-2.37226,42.77767,6618,1,30,10,55,57,3.65,15.0,fr,8524,132,353293,1,2,Active Shallow Crust,0.0,89.9901,0.0,01/30/6618 +-2.37226,42.77767,6770,1,23,10,5,3,3.65,15.0,fr,8525,135,353293,1,2,Active Shallow Crust,0.0,89.9901,0.0,01/23/6770 +-2.37226,42.77767,7935,11,26,21,24,6,3.75,5.0,fr,8526,158,353304,1,1,Active Shallow Crust,0.0,89.99118,0.0,11/26/7935 +-2.37226,42.77767,6555,1,31,20,3,10,3.85,5.0,fr,8527,131,353316,1,1,Active Shallow Crust,0.0,89.98952,0.0,01/31/6555 +-2.37226,42.77767,5443,5,15,20,15,44,3.95,27.5,fr,8528,108,353330,1,1,Active Shallow Crust,0.0,89.99066,0.0,05/15/5443 +-2.37226,42.77767,7010,4,9,14,19,26,3.95,15.0,fr,8529,140,353335,1,1,Active Shallow Crust,0.0,89.99055,-90.0,04/09/7010 +-2.37226,42.77767,8929,9,2,5,34,26,4.05,15.0,fr,8530,178,353350,1,1,Active Shallow Crust,128.8914,89.99376,0.0,09/02/8929 +-2.37226,42.77767,9929,3,7,22,9,45,4.35,27.5,fr,8531,198,353381,1,1,Active Shallow Crust,240.0078,57.99578,0.0,03/07/9929 +-2.37226,42.77767,4032,7,17,18,6,27,4.65,15.0,fr,8532,80,353413,1,1,Active Shallow Crust,0.0,89.98957,0.0,07/17/4032 +-2.37226,42.77767,2877,11,3,12,10,39,4.85,5.0,fr,8533,57,353442,1,1,Active Shallow Crust,0.0,89.98994,-90.0,11/03/2877 +-2.372259,42.77767,8651,8,4,15,32,47,6.05,5.357596,fr,8534,173,353580,1,1,Active Shallow Crust,0.0,89.99001,0.0,08/04/8651 +5.23672,48.53336,5855,6,3,11,48,58,3.75,5.0,fr,8535,117,353793,1,1,Active Shallow Crust,128.8971,89.96699,0.0,06/03/5855 +-6.63,48.37608,7296,12,8,18,9,6,3.75,5.0,fr,8536,145,354264,1,1,Active Shallow Crust,0.0,89.98936,0.0,12/08/7296 +-6.63,48.37608,4676,10,11,22,35,0,5.65,5.0,fr,8537,93,354501,1,1,Active Shallow Crust,128.8735,89.99046,0.0,10/11/4676 +1.95481,46.69195,350,1,28,18,30,30,3.55,5.0,fr,8538,6,354720,1,4,Active Shallow Crust,0.0,89.98962,0.0,01/28/0350 +1.95481,46.69195,8612,8,30,6,59,8,3.55,5.0,fr,8539,172,354720,1,4,Active Shallow Crust,0.0,89.98962,0.0,08/30/8612 +1.95481,46.69195,6504,10,16,17,18,58,3.55,5.0,fr,8540,130,354720,1,4,Active Shallow Crust,0.0,89.98962,0.0,10/16/6504 +1.95481,46.69195,3736,3,28,23,48,19,3.55,5.0,fr,8541,74,354720,1,4,Active Shallow Crust,0.0,89.98962,0.0,03/28/3736 +1.95481,46.69195,9852,8,14,13,7,58,3.55,5.0,fr,8542,197,354726,1,1,Active Shallow Crust,0.0,89.9895,-90.0,08/14/9852 +1.95481,46.69195,4440,12,23,13,51,37,3.65,5.0,fr,8543,88,354732,1,1,Active Shallow Crust,0.0,89.99075,0.0,12/23/4440 +1.95481,46.69195,407,4,19,21,18,14,3.75,5.0,fr,8544,8,354744,1,2,Active Shallow Crust,0.0,89.99039,0.0,04/19/0407 +1.95481,46.69195,6443,8,23,15,48,2,3.75,5.0,fr,8545,128,354744,1,2,Active Shallow Crust,0.0,89.99039,0.0,08/23/6443 +1.95481,46.69195,3606,11,2,17,46,40,3.75,27.5,fr,8546,72,354746,1,1,Active Shallow Crust,0.0,89.99039,0.0,11/02/3606 +1.95481,46.69195,636,1,12,8,2,35,3.85,5.0,fr,8547,12,354756,1,3,Active Shallow Crust,0.0,89.9902,0.0,01/12/0636 +1.95481,46.69195,1626,3,11,20,2,15,3.85,5.0,fr,8548,32,354756,1,3,Active Shallow Crust,0.0,89.9902,0.0,03/11/1626 +1.95481,46.69195,5690,6,16,3,49,1,3.85,5.0,fr,8549,113,354756,1,3,Active Shallow Crust,0.0,89.9902,0.0,06/16/5690 +1.95481,46.69195,7297,9,11,6,32,13,3.85,15.0,fr,8550,145,354757,1,1,Active Shallow Crust,0.0,89.9902,0.0,09/11/7297 +1.95481,46.69195,5309,2,3,10,20,46,3.95,5.0,fr,8551,106,354768,1,1,Active Shallow Crust,0.0,89.99018,0.0,02/03/5309 +1.95481,46.69195,5332,11,23,5,32,46,3.95,5.0,fr,8552,106,354777,1,1,Active Shallow Crust,128.9004,89.99345,0.0,11/23/5332 +1.95481,46.69195,7759,1,10,19,2,31,4.05,5.0,fr,8553,155,354780,1,1,Active Shallow Crust,0.0,89.99027,0.0,01/10/7759 +1.95481,46.69195,8197,10,29,11,27,33,4.05,15.0,fr,8554,163,354781,1,1,Active Shallow Crust,0.0,89.99027,0.0,10/29/8197 +1.95481,46.69195,6803,3,5,11,20,21,5.05,5.0,fr,8555,136,354903,1,1,Active Shallow Crust,240.0223,57.99759,0.0,03/05/6803 +-0.4711,46.25741,7265,4,28,11,32,13,3.55,5.0,fr,8556,145,355200,1,1,Active Shallow Crust,0.0,89.98997,0.0,04/28/7265 +-0.4711,46.25741,9997,11,13,13,39,59,3.65,27.5,fr,8557,199,355214,1,1,Active Shallow Crust,0.0,89.9899,0.0,11/13/9997 +-0.4711,46.25741,3868,5,25,9,46,19,3.65,5.0,fr,8558,77,355215,1,1,Active Shallow Crust,240.0011,58.01289,0.0,05/25/3868 +-0.4711,46.25741,7847,3,24,1,31,17,3.75,5.0,fr,8559,156,355224,1,1,Active Shallow Crust,0.0,89.98996,0.0,03/24/7847 +-0.4711,46.25741,8735,10,6,19,44,58,3.75,15.0,fr,8560,174,355225,1,1,Active Shallow Crust,0.0,89.98996,0.0,10/06/8735 +-0.4711,46.25741,2466,11,28,11,0,24,3.95,5.0,fr,8561,49,355248,1,1,Active Shallow Crust,0.0,89.9901,0.0,11/28/2466 +-0.4711,46.25741,4990,2,20,16,29,56,4.05,5.0,fr,8562,99,355263,1,1,Active Shallow Crust,240.0059,58.00583,0.0,02/20/4990 +-0.4711,46.25741,924,2,3,7,15,33,4.15,5.0,fr,8563,18,355272,1,1,Active Shallow Crust,0.0,89.98995,0.0,02/03/0924 +-0.4711,46.25741,7671,7,22,19,12,22,4.35,5.0,fr,8564,153,355296,1,1,Active Shallow Crust,0.0,89.98994,0.0,07/22/7671 +-0.4711,46.25741,3018,9,9,1,56,5,4.35,15.0,fr,8565,60,355297,1,1,Active Shallow Crust,0.0,89.98994,0.0,09/09/3018 +-0.4711,46.25741,5457,10,21,20,39,15,4.45,5.0,fr,8566,109,355311,1,1,Active Shallow Crust,240.0052,57.99464,0.0,10/21/5457 +-0.4711,46.25741,7327,2,28,11,36,30,4.75,15.0,fr,8567,146,355348,1,1,Active Shallow Crust,240.0074,58.00448,0.0,02/28/7327 +-0.4711,46.25741,9372,7,7,12,12,44,4.85,27.5,fr,8568,187,355367,1,1,Active Shallow Crust,128.8927,89.989,0.0,07/07/9372 +-0.4711,46.25741,5247,7,23,0,1,18,5.05,5.0,fr,8569,104,355380,1,1,Active Shallow Crust,0.0,89.99,0.0,07/23/5247 +5.79165,50.60362,1771,11,30,17,31,41,3.55,5.0,fr,8570,35,355680,1,3,Active Shallow Crust,0.0,89.9872,0.0,11/30/1771 +5.79165,50.60362,5492,7,7,13,41,31,3.55,5.0,fr,8571,109,355680,1,3,Active Shallow Crust,0.0,89.9872,0.0,07/07/5492 +5.79165,50.60362,6375,3,25,23,47,41,3.55,5.0,fr,8572,127,355680,1,3,Active Shallow Crust,0.0,89.9872,0.0,03/25/6375 +5.79165,50.60362,3192,12,2,11,8,36,3.55,27.5,fr,8573,63,355685,1,1,Active Shallow Crust,240.0135,57.99813,0.0,12/02/3192 +5.79165,50.60362,6585,7,8,19,44,45,3.55,15.0,fr,8574,131,355687,1,1,Active Shallow Crust,0.0,89.98705,-90.0,07/08/6585 +5.79165,50.60362,9818,1,18,3,5,42,3.55,5.0,fr,8575,196,355689,1,2,Active Shallow Crust,128.8957,89.9936,0.0,01/18/9818 +5.79165,50.60362,4474,10,31,13,50,20,3.55,5.0,fr,8576,89,355689,1,2,Active Shallow Crust,128.8957,89.9936,0.0,10/31/4474 +5.79165,50.60362,5406,1,27,17,18,4,3.65,5.0,fr,8577,108,355692,1,5,Active Shallow Crust,0.0,89.98859,0.0,01/27/5406 +5.79165,50.60362,6701,5,1,23,16,28,3.65,5.0,fr,8578,134,355692,1,5,Active Shallow Crust,0.0,89.98859,0.0,05/01/6701 +5.79165,50.60362,8447,2,28,3,18,56,3.65,5.0,fr,8579,168,355692,1,5,Active Shallow Crust,0.0,89.98859,0.0,02/28/8447 +5.79165,50.60362,5849,9,10,7,40,41,3.65,5.0,fr,8580,116,355692,1,5,Active Shallow Crust,0.0,89.98859,0.0,09/10/5849 +5.79165,50.60362,5441,7,6,17,5,26,3.65,5.0,fr,8581,108,355692,1,5,Active Shallow Crust,0.0,89.98859,0.0,07/06/5441 +5.79165,50.60362,9505,4,18,3,50,18,3.65,5.0,fr,8582,190,355698,1,1,Active Shallow Crust,0.0,89.98846,-90.0,04/18/9505 +5.79165,50.60362,1640,4,30,0,32,1,3.75,5.0,fr,8583,32,355704,1,2,Active Shallow Crust,0.0,89.98983,0.0,04/30/1640 +5.79165,50.60362,749,2,13,23,0,24,3.75,5.0,fr,8584,14,355704,1,2,Active Shallow Crust,0.0,89.98983,0.0,02/13/0749 +5.79165,50.60362,4443,5,21,5,53,17,3.75,15.0,fr,8585,88,355705,1,1,Active Shallow Crust,0.0,89.98983,0.0,05/21/4443 +5.79165,50.60362,6394,4,1,12,27,42,3.75,5.0,fr,8586,127,355710,1,1,Active Shallow Crust,0.0,89.98972,-90.0,04/01/6394 +5.79165,50.60362,8458,12,23,1,30,2,3.85,5.0,fr,8587,169,355716,1,3,Active Shallow Crust,0.0,89.99094,0.0,12/23/8458 +5.79165,50.60362,8856,1,29,18,26,29,3.85,5.0,fr,8588,177,355716,1,3,Active Shallow Crust,0.0,89.99094,0.0,01/29/8856 +5.79165,50.60362,9968,12,1,11,41,56,3.85,5.0,fr,8589,199,355716,1,3,Active Shallow Crust,0.0,89.99094,0.0,12/01/9968 +5.79165,50.60362,2680,8,12,21,55,55,3.85,15.0,fr,8590,53,355717,1,2,Active Shallow Crust,0.0,89.99094,0.0,08/12/2680 +5.79165,50.60362,4203,3,28,13,59,6,3.85,15.0,fr,8591,84,355717,1,2,Active Shallow Crust,0.0,89.99094,0.0,03/28/4203 +5.79165,50.60362,3343,6,8,8,25,1,3.85,27.5,fr,8592,66,355718,1,2,Active Shallow Crust,0.0,89.99094,0.0,06/08/3343 +5.79165,50.60362,4046,4,28,9,21,22,3.85,27.5,fr,8593,80,355718,1,2,Active Shallow Crust,0.0,89.99094,0.0,04/28/4046 +5.79165,50.60362,4340,9,21,6,32,32,3.85,5.0,fr,8594,86,355722,1,1,Active Shallow Crust,0.0,89.99083,-90.0,09/21/4340 +5.79165,50.60362,3392,7,5,8,33,36,3.95,5.0,fr,8595,67,355728,1,2,Active Shallow Crust,0.0,89.99192,0.0,07/05/3392 +5.79165,50.60362,6768,9,3,14,31,33,3.95,5.0,fr,8596,135,355728,1,2,Active Shallow Crust,0.0,89.99192,0.0,09/03/6768 +5.79165,50.60362,791,10,18,19,33,59,3.95,15.0,fr,8597,15,355729,1,2,Active Shallow Crust,0.0,89.99192,0.0,10/18/0791 +5.79165,50.60362,9194,3,6,14,38,32,3.95,15.0,fr,8598,183,355729,1,2,Active Shallow Crust,0.0,89.99192,0.0,03/06/9194 +5.79165,50.60362,5100,1,4,23,59,54,4.05,5.0,fr,8599,101,355740,1,1,Active Shallow Crust,0.0,89.9892,0.0,01/04/5100 +5.79165,50.60362,8229,5,15,10,10,27,4.05,15.0,fr,8600,164,355744,1,1,Active Shallow Crust,240.0063,58.00575,0.0,05/15/8229 +5.79165,50.60362,945,3,29,17,58,13,4.15,27.5,fr,8601,18,355754,1,1,Active Shallow Crust,0.0,89.99038,0.0,03/29/0945 +5.79165,50.60362,469,6,26,1,5,54,4.15,5.0,fr,8602,9,355755,1,1,Active Shallow Crust,240.0094,57.99743,0.0,06/26/0469 +5.79165,50.60362,1443,8,28,19,35,16,4.15,15.0,fr,8603,28,355762,1,1,Active Shallow Crust,128.8967,89.99358,0.0,08/28/1443 +5.79165,50.60362,9335,11,4,18,17,10,4.25,15.0,fr,8604,186,355765,1,2,Active Shallow Crust,0.0,89.99142,0.0,11/04/9335 +5.79165,50.60362,6863,4,6,23,9,43,4.25,15.0,fr,8605,137,355765,1,2,Active Shallow Crust,0.0,89.99142,0.0,04/06/6863 +5.79165,50.60362,1170,5,18,1,33,58,4.25,27.5,fr,8606,23,355766,1,1,Active Shallow Crust,0.0,89.99142,0.0,05/18/1170 +5.79165,50.60362,2177,5,18,19,33,31,4.25,5.0,fr,8607,43,355770,1,1,Active Shallow Crust,0.0,89.99133,-90.0,05/18/2177 +5.79165,50.60362,2798,4,29,12,53,38,4.35,15.0,fr,8608,55,355777,1,1,Active Shallow Crust,0.0,89.98981,0.0,04/29/2798 +5.79165,50.60362,6386,4,26,3,21,18,4.35,27.5,fr,8609,127,355784,1,1,Active Shallow Crust,0.0,89.98969,-90.0,04/26/6386 +5.79165,50.60362,8420,4,10,2,22,50,4.55,5.0,fr,8610,168,355800,1,1,Active Shallow Crust,0.0,89.98988,0.0,04/10/8420 +5.79165,50.60362,8702,4,13,14,49,2,4.75,5.0,fr,8611,174,355824,1,1,Active Shallow Crust,0.0,89.99035,0.0,04/13/8702 +5.79165,50.60362,5301,4,20,11,31,17,4.85,5.0,fr,8612,106,355839,1,1,Active Shallow Crust,240.0188,58.00277,0.0,04/20/5301 +5.79165,50.60362,9530,5,22,0,10,49,4.85,5.0,fr,8613,190,355842,1,1,Active Shallow Crust,0.0,89.98985,-90.0,05/22/9530 +5.79165,50.60362,7426,2,18,10,56,50,4.95,15.0,fr,8614,148,355858,1,1,Active Shallow Crust,128.8881,89.98973,0.0,02/18/7426 +5.79165,50.60362,9057,2,7,16,2,12,5.05,15.0,fr,8615,181,355861,1,1,Active Shallow Crust,0.0,89.98975,0.0,02/07/9057 +5.79165,50.60362,5153,9,27,7,42,4,5.45,15.0,fr,8616,103,355909,1,1,Active Shallow Crust,0.0,89.98994,0.0,09/27/5153 +5.79165,50.60362,6416,2,8,13,58,11,5.75,15.0,fr,8617,128,355945,1,1,Active Shallow Crust,0.0,89.98982,0.0,02/08/6416 +5.79165,50.60362,6380,6,25,4,40,48,6.55,15.0,fr,8618,127,356041,1,1,Active Shallow Crust,359.9999,89.99007,0.0,06/25/6380 +1.15463,52.66268,2553,2,6,14,10,22,3.85,5.0,fr,8619,51,356196,1,1,Active Shallow Crust,0.0,89.99026,0.0,02/06/2553 +5.97222,43.29256,7452,5,2,1,21,18,3.55,27.5,fr,8620,149,356642,1,1,Active Shallow Crust,0.0,89.99266,0.0,05/02/7452 +5.97222,43.29256,6255,4,22,6,22,17,3.55,15.0,fr,8621,125,356644,1,1,Active Shallow Crust,240.0112,57.99924,0.0,04/22/6255 +5.97222,43.29256,6753,12,8,12,24,19,3.85,5.0,fr,8622,135,356676,1,1,Active Shallow Crust,0.0,89.98961,0.0,12/08/6753 +5.97222,43.29256,2619,7,10,19,49,13,3.95,5.0,fr,8623,52,356688,1,1,Active Shallow Crust,0.0,89.99074,0.0,07/10/2619 +5.97222,43.29256,9206,7,31,10,41,38,4.35,5.0,fr,8624,184,356739,1,1,Active Shallow Crust,240.0074,57.99599,0.0,07/31/9206 +2.88177,52.57416,3865,6,17,13,55,29,4.95,5.0,fr,8625,77,357291,1,1,Active Shallow Crust,240.0151,58.00512,0.0,06/17/3865 +0.81721,52.13939,5319,10,27,9,50,22,3.95,5.0,fr,8626,106,357651,1,1,Active Shallow Crust,240.0208,58.00519,0.0,10/27/5319 +-0.70303,47.72109,1744,5,22,3,17,15,3.55,5.0,fr,8627,34,358080,1,2,Active Shallow Crust,0.0,89.98982,0.0,05/22/1744 +-0.70303,47.72109,3069,1,12,19,59,53,3.55,5.0,fr,8628,61,358080,1,2,Active Shallow Crust,0.0,89.98982,0.0,01/12/3069 +-0.70303,47.72109,6198,12,11,14,29,57,3.65,5.0,fr,8629,123,358092,1,1,Active Shallow Crust,0.0,89.99017,0.0,12/11/6198 +-0.70303,47.72109,876,3,17,2,23,0,3.65,15.0,fr,8630,17,358093,1,1,Active Shallow Crust,0.0,89.99017,0.0,03/17/0876 +-0.70303,47.72109,7883,9,16,10,58,12,3.65,5.0,fr,8631,157,358095,1,1,Active Shallow Crust,240.0013,58.01303,0.0,09/16/7883 +-0.70303,47.72109,1817,1,22,19,0,30,3.75,5.0,fr,8632,36,358110,1,1,Active Shallow Crust,0.0,89.98978,-90.0,01/22/1817 +-0.70303,47.72109,1527,5,10,17,31,4,3.85,5.0,fr,8633,30,358116,1,2,Active Shallow Crust,0.0,89.98979,0.0,05/10/1527 +-0.70303,47.72109,2557,2,20,22,11,48,3.85,5.0,fr,8634,51,358116,1,2,Active Shallow Crust,0.0,89.98979,0.0,02/20/2557 +-0.70303,47.72109,9139,4,3,16,33,42,3.95,5.0,fr,8635,182,358131,1,1,Active Shallow Crust,240.0199,58.00495,0.0,04/03/9139 +-0.70303,47.72109,4797,11,19,20,19,52,4.05,15.0,fr,8636,95,358144,1,1,Active Shallow Crust,240.0061,58.00583,0.0,11/19/4797 +-0.70303,47.72109,2929,1,4,13,39,10,4.15,5.0,fr,8637,58,358152,1,1,Active Shallow Crust,0.0,89.9898,0.0,01/04/2929 +-0.70303,47.72109,9093,3,19,14,36,14,4.25,5.0,fr,8638,181,358164,1,1,Active Shallow Crust,0.0,89.99015,0.0,03/19/9093 +-0.70303,47.72109,8978,10,9,17,32,51,4.35,5.0,fr,8639,179,358176,1,1,Active Shallow Crust,0.0,89.98987,0.0,10/09/8978 +-0.70303,47.72109,4026,7,20,2,27,50,4.55,5.0,fr,8640,80,358200,1,1,Active Shallow Crust,0.0,89.99007,0.0,07/20/4026 +-0.70303,47.72109,9148,10,17,12,41,59,4.75,5.0,fr,8641,182,358230,1,1,Active Shallow Crust,0.0,89.99009,-90.0,10/17/9148 +-0.70303,47.72109,8021,3,4,2,11,45,4.95,5.0,fr,8642,160,358248,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/04/8021 +2.93112,52.32129,8045,4,17,6,24,14,3.65,15.0,fr,8643,160,358573,1,1,Active Shallow Crust,0.0,89.98901,0.0,04/17/8045 +2.93112,52.32129,7353,2,26,18,53,48,3.95,15.0,fr,8644,147,358609,1,1,Active Shallow Crust,0.0,89.99028,0.0,02/26/7353 +-2.32904,50.53924,9066,3,26,22,14,30,3.55,5.0,fr,8645,181,359040,1,1,Active Shallow Crust,0.0,89.99039,0.0,03/26/9066 +-2.32904,50.53924,2580,9,3,23,45,52,3.65,27.5,fr,8646,51,359054,1,1,Active Shallow Crust,0.0,89.98858,0.0,09/03/2580 +-2.32904,50.53924,3761,3,20,17,49,4,3.85,27.5,fr,8647,75,359078,1,1,Active Shallow Crust,0.0,89.99093,0.0,03/20/3761 +-2.32904,50.53924,7197,11,30,16,22,6,4.15,5.0,fr,8648,143,359121,1,1,Active Shallow Crust,128.8967,89.99358,0.0,11/30/7197 +1.19658,43.14384,8248,5,4,21,32,20,3.55,5.0,fr,8649,164,360960,1,1,Active Shallow Crust,0.0,89.99081,0.0,05/04/8248 +1.19658,43.14384,9189,2,9,8,45,43,3.75,5.0,fr,8650,183,360984,1,2,Active Shallow Crust,0.0,89.98977,0.0,02/09/9189 +1.19658,43.14384,1404,4,6,13,32,23,3.75,5.0,fr,8651,28,360984,1,2,Active Shallow Crust,0.0,89.98977,0.0,04/06/1404 +1.19658,43.14384,7071,12,19,21,56,0,3.75,15.0,fr,8652,141,360985,1,1,Active Shallow Crust,0.0,89.98977,0.0,12/19/7071 +1.19658,43.14384,9318,7,7,7,2,46,3.75,15.0,fr,8653,186,360988,1,1,Active Shallow Crust,240.0078,58.0176,0.0,07/07/9318 +1.19658,43.14384,338,7,27,13,39,28,3.95,5.0,fr,8654,6,361008,1,2,Active Shallow Crust,0.0,89.98956,0.0,07/27/0338 +1.19658,43.14384,2525,12,16,4,20,48,3.95,5.0,fr,8655,50,361008,1,2,Active Shallow Crust,0.0,89.98956,0.0,12/16/2525 +1.19658,43.14384,9599,3,15,23,1,23,4.05,15.0,fr,8656,191,361021,1,1,Active Shallow Crust,0.0,89.98965,0.0,03/15/9599 +1.19658,43.14384,727,5,16,19,49,47,4.55,15.0,fr,8657,14,361081,1,1,Active Shallow Crust,0.0,89.99011,0.0,05/16/0727 +3.78802,40.0277,1139,1,14,13,36,4,4.05,5.0,fr,8658,22,361506,1,1,Active Shallow Crust,0.0,89.98902,-90.0,01/14/1139 +3.78802,40.0277,6873,10,4,11,11,22,4.25,5.0,fr,8659,137,361524,1,1,Active Shallow Crust,0.0,89.98965,0.0,10/04/6873 +3.78802,40.0277,9385,10,23,21,17,21,4.25,15.0,fr,8660,187,361525,1,1,Active Shallow Crust,0.0,89.98965,0.0,10/23/9385 +3.78802,40.0277,5681,10,2,7,34,57,4.55,5.0,fr,8661,113,361560,1,1,Active Shallow Crust,0.0,89.99023,0.0,10/02/5681 +6.20976,45.30944,4657,11,7,0,9,0,3.55,5.0,fr,8662,93,362400,1,1,Active Shallow Crust,0.0,89.9929,0.0,11/07/4657 +6.20976,45.30944,5082,1,24,15,56,27,3.55,15.0,fr,8663,101,362401,1,1,Active Shallow Crust,0.0,89.9929,0.0,01/24/5082 +6.20976,45.30944,4415,5,28,21,21,37,3.55,5.0,fr,8664,88,362403,1,1,Active Shallow Crust,240.012,57.99862,0.0,05/28/4415 +6.20976,45.30944,5896,10,7,7,29,5,3.55,15.0,fr,8665,117,362407,1,1,Active Shallow Crust,0.0,89.99283,-90.0,10/07/5896 +6.20976,45.30944,5128,9,6,4,14,31,3.65,5.0,fr,8666,102,362412,1,1,Active Shallow Crust,0.0,89.98736,0.0,09/06/5128 +6.20976,45.30944,87,1,20,2,31,12,3.65,15.0,fr,8667,1,362413,1,1,Active Shallow Crust,0.0,89.98736,0.0,01/20/0087 +6.20976,45.30944,6465,1,29,12,47,0,3.65,27.5,fr,8668,129,362417,1,1,Active Shallow Crust,240.0017,58.01237,0.0,01/29/6465 +6.20976,45.30944,7168,4,9,4,43,45,3.65,5.0,fr,8669,143,362418,1,1,Active Shallow Crust,0.0,89.98721,-90.0,04/09/7168 +6.20976,45.30944,6972,4,17,2,40,57,3.65,5.0,fr,8670,139,362421,1,1,Active Shallow Crust,128.9009,89.9635,0.0,04/17/6972 +6.20976,45.30944,6750,2,21,21,38,13,3.65,15.0,fr,8671,134,362422,1,1,Active Shallow Crust,128.9009,89.9635,0.0,02/21/6750 +6.20976,45.30944,1194,9,11,13,28,36,3.75,5.0,fr,8672,23,362424,1,1,Active Shallow Crust,0.0,89.98873,0.0,09/11/1194 +6.20976,45.30944,4312,9,16,5,32,37,3.75,15.0,fr,8673,86,362425,1,2,Active Shallow Crust,0.0,89.98873,0.0,09/16/4312 +6.20976,45.30944,9473,2,1,20,27,8,3.75,15.0,fr,8674,189,362425,1,2,Active Shallow Crust,0.0,89.98873,0.0,02/01/9473 +6.20976,45.30944,9356,9,27,6,1,33,3.75,15.0,fr,8675,187,362431,1,1,Active Shallow Crust,0.0,89.9886,-90.0,09/27/9356 +6.20976,45.30944,3644,6,26,22,40,42,3.85,5.0,fr,8676,72,362436,1,2,Active Shallow Crust,0.0,89.98996,0.0,06/26/3644 +6.20976,45.30944,1171,8,27,5,44,59,3.85,5.0,fr,8677,23,362436,1,2,Active Shallow Crust,0.0,89.98996,0.0,08/27/1171 +6.20976,45.30944,3978,10,16,13,46,19,3.85,27.5,fr,8678,79,362438,1,1,Active Shallow Crust,0.0,89.98996,0.0,10/16/3978 +6.20976,45.30944,9691,4,17,21,59,52,3.85,15.0,fr,8679,193,362440,1,1,Active Shallow Crust,240.0107,57.99714,0.0,04/17/9691 +6.20976,45.30944,3757,2,6,3,13,52,3.95,5.0,fr,8680,75,362448,1,2,Active Shallow Crust,0.0,89.99105,0.0,02/06/3757 +6.20976,45.30944,2135,2,22,19,50,47,3.95,5.0,fr,8681,42,362448,1,2,Active Shallow Crust,0.0,89.99105,0.0,02/22/2135 +6.20976,45.30944,3520,9,11,18,45,32,4.05,5.0,fr,8682,70,362460,1,1,Active Shallow Crust,0.0,89.98804,0.0,09/11/3520 +6.20976,45.30944,7292,1,7,9,55,44,4.15,5.0,fr,8683,145,362472,1,1,Active Shallow Crust,0.0,89.98933,0.0,01/07/7292 +6.20976,45.30944,9764,12,16,22,22,20,4.35,15.0,fr,8684,195,362503,1,1,Active Shallow Crust,0.0,89.98858,-90.0,12/16/9764 +6.20976,45.30944,5114,7,26,12,10,25,4.35,5.0,fr,8685,102,362505,1,1,Active Shallow Crust,128.8988,89.98246,0.0,07/26/5114 +6.20976,45.30944,8766,11,29,11,5,38,4.55,5.0,fr,8686,175,362520,1,1,Active Shallow Crust,0.0,89.99103,0.0,11/29/8766 +6.20976,45.30944,8224,3,25,13,57,8,4.65,15.0,fr,8687,164,362533,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/25/8224 +6.20976,45.30944,2252,3,22,12,39,59,4.75,5.0,fr,8688,45,362544,1,1,Active Shallow Crust,0.0,89.98931,0.0,03/22/2252 +6.20976,45.30944,5949,2,2,18,7,5,4.85,15.0,fr,8689,118,362557,1,1,Active Shallow Crust,0.0,89.99047,0.0,02/02/5949 +6.209762,45.30944,2046,10,20,8,57,28,6.15,5.942511,fr,8690,40,362718,1,1,Active Shallow Crust,0.0,89.9901,-90.0,10/20/2046 +3.33751,40.91364,8412,6,13,15,55,35,3.55,5.0,fr,8691,168,362880,1,1,Active Shallow Crust,0.0,89.98857,0.0,06/13/8412 +3.33751,40.91364,2425,10,13,8,48,38,3.55,15.0,fr,8692,48,362881,1,1,Active Shallow Crust,0.0,89.98857,0.0,10/13/2425 +3.33751,40.91364,8666,2,15,5,12,18,3.55,5.0,fr,8693,173,362883,1,1,Active Shallow Crust,240.012,57.99786,0.0,02/15/8666 +3.33751,40.91364,9402,10,15,13,38,43,3.75,15.0,fr,8694,188,362905,1,1,Active Shallow Crust,0.0,89.99092,0.0,10/15/9402 +3.33751,40.91364,5465,4,9,6,58,27,3.95,5.0,fr,8695,109,362931,1,1,Active Shallow Crust,240.0191,58.00498,0.0,04/09/5465 +3.33751,40.91364,2328,10,18,18,39,34,4.55,5.0,fr,8696,46,363009,1,1,Active Shallow Crust,128.8951,89.98563,0.0,10/18/2328 +1.24728,50.7342,2654,9,14,2,45,38,3.55,5.0,fr,8697,53,363360,1,1,Active Shallow Crust,0.0,89.99043,0.0,09/14/2654 +1.24728,50.7342,2415,9,23,14,17,49,3.55,5.0,fr,8698,48,363366,1,1,Active Shallow Crust,0.0,89.99032,-90.0,09/23/2415 +1.24728,50.7342,1695,6,14,11,51,2,3.65,5.0,fr,8699,33,363372,1,2,Active Shallow Crust,0.0,89.99004,0.0,06/14/1695 +1.24728,50.7342,2884,4,4,0,27,36,3.65,5.0,fr,8700,57,363372,1,2,Active Shallow Crust,0.0,89.99004,0.0,04/04/2884 +1.24728,50.7342,4533,7,14,10,43,55,3.65,15.0,fr,8701,90,363373,1,1,Active Shallow Crust,0.0,89.99004,0.0,07/14/4533 +1.24728,50.7342,4515,1,10,21,21,13,3.75,5.0,fr,8702,90,363390,1,1,Active Shallow Crust,0.0,89.98975,-90.0,01/10/4515 +1.24728,50.7342,1558,12,30,2,3,14,3.85,5.0,fr,8703,31,363396,1,1,Active Shallow Crust,0.0,89.98983,0.0,12/30/1558 +1.24728,50.7342,1573,4,11,16,42,53,3.85,5.0,fr,8704,31,363399,1,1,Active Shallow Crust,240.0114,57.99797,0.0,04/11/1573 +1.24728,50.7342,2851,5,22,12,33,55,3.85,5.0,fr,8705,57,363402,1,1,Active Shallow Crust,0.0,89.98972,-90.0,05/22/2851 +1.24728,50.7342,909,8,1,7,12,26,4.65,5.0,fr,8706,18,363492,1,1,Active Shallow Crust,0.0,89.9901,0.0,08/01/0909 +8.61862,49.8156,9222,12,27,12,1,29,3.55,5.0,fr,8707,184,363840,1,2,Active Shallow Crust,0.0,89.98698,0.0,12/27/9222 +8.61862,49.8156,5710,2,14,7,1,20,3.55,5.0,fr,8708,114,363840,1,2,Active Shallow Crust,0.0,89.98698,0.0,02/14/5710 +8.61862,49.8156,7312,12,8,7,47,22,3.55,15.0,fr,8709,146,363841,1,2,Active Shallow Crust,0.0,89.98698,0.0,12/08/7312 +8.61862,49.8156,1085,5,6,23,17,8,3.55,15.0,fr,8710,21,363841,1,2,Active Shallow Crust,0.0,89.98698,0.0,05/06/1085 +8.61862,49.8156,9950,6,11,12,6,6,3.65,5.0,fr,8711,198,363852,1,1,Active Shallow Crust,0.0,89.9884,0.0,06/11/9950 +8.61862,49.8156,4217,5,14,11,24,44,3.65,15.0,fr,8712,84,363853,1,1,Active Shallow Crust,0.0,89.9884,0.0,05/14/4217 +8.61862,49.8156,2356,9,7,4,41,59,3.65,5.0,fr,8713,47,363855,1,2,Active Shallow Crust,239.9992,58.01498,0.0,09/07/2356 +8.61862,49.8156,2888,10,29,12,11,58,3.65,5.0,fr,8714,57,363855,1,2,Active Shallow Crust,239.9992,58.01498,0.0,10/29/2888 +8.61862,49.8156,7998,1,22,22,24,33,3.65,15.0,fr,8715,159,363859,1,3,Active Shallow Crust,0.0,89.98827,-90.0,01/22/7998 +8.61862,49.8156,4174,3,7,11,37,0,3.65,15.0,fr,8716,83,363859,1,3,Active Shallow Crust,0.0,89.98827,-90.0,03/07/4174 +8.61862,49.8156,9851,2,21,18,41,23,3.65,15.0,fr,8717,197,363859,1,3,Active Shallow Crust,0.0,89.98827,-90.0,02/21/9851 +8.61862,49.8156,8716,12,19,9,2,16,3.65,5.0,fr,8718,174,363861,1,2,Active Shallow Crust,128.9022,89.96358,0.0,12/19/8716 +8.61862,49.8156,9849,3,22,14,58,48,3.65,5.0,fr,8719,196,363861,1,2,Active Shallow Crust,128.9022,89.96358,0.0,03/22/9849 +8.61862,49.8156,8948,10,31,1,58,0,3.65,27.5,fr,8720,178,363863,1,1,Active Shallow Crust,128.9022,89.96358,0.0,10/31/8948 +8.61862,49.8156,6012,9,10,5,27,3,3.75,5.0,fr,8721,120,363864,1,1,Active Shallow Crust,0.0,89.98966,0.0,09/10/6012 +8.61862,49.8156,5030,9,25,15,38,29,3.75,15.0,fr,8722,100,363868,1,1,Active Shallow Crust,240.0092,58.01813,0.0,09/25/5030 +8.61862,49.8156,1506,10,22,0,46,34,3.85,5.0,fr,8723,30,363876,1,1,Active Shallow Crust,0.0,89.99078,0.0,10/22/1506 +8.61862,49.8156,9822,2,9,1,10,33,3.85,5.0,fr,8724,196,363882,1,2,Active Shallow Crust,0.0,89.99068,-90.0,02/09/9822 +8.61862,49.8156,1415,3,18,22,39,41,3.85,5.0,fr,8725,28,363882,1,2,Active Shallow Crust,0.0,89.99068,-90.0,03/18/1415 +8.61862,49.8156,2237,4,27,22,59,46,3.95,5.0,fr,8726,44,363888,1,1,Active Shallow Crust,0.0,89.99179,0.0,04/27/2237 +8.61862,49.8156,8564,9,17,14,8,9,3.95,15.0,fr,8727,171,363898,1,1,Active Shallow Crust,128.902,89.99179,0.0,09/17/8564 +8.61862,49.8156,9391,3,30,15,13,34,4.05,5.0,fr,8728,187,363903,1,2,Active Shallow Crust,240.0076,58.00564,0.0,03/30/9391 +8.61862,49.8156,1689,7,13,7,19,47,4.05,5.0,fr,8729,33,363903,1,2,Active Shallow Crust,240.0076,58.00564,0.0,07/13/1689 +8.61862,49.8156,7276,12,4,13,36,21,4.25,15.0,fr,8730,145,363925,1,1,Active Shallow Crust,0.0,89.98837,0.0,12/04/7276 +8.61862,49.8156,1712,3,21,23,32,18,4.35,5.0,fr,8731,34,363936,1,2,Active Shallow Crust,0.0,89.98964,0.0,03/21/1712 +8.61862,49.8156,9156,7,26,9,20,30,4.35,5.0,fr,8732,183,363936,1,2,Active Shallow Crust,0.0,89.98964,0.0,07/26/9156 +8.61862,49.8156,3016,7,7,14,9,29,4.35,5.0,fr,8733,60,363939,1,1,Active Shallow Crust,240.0096,57.99621,0.0,07/07/3016 +8.61862,49.8156,4661,9,8,2,54,1,4.45,15.0,fr,8734,93,363949,1,1,Active Shallow Crust,0.0,89.99076,0.0,09/08/4661 +8.61862,49.8156,7422,2,16,5,42,36,4.45,5.0,fr,8735,148,363954,1,1,Active Shallow Crust,0.0,89.99065,-90.0,02/16/7422 +8.61862,49.8156,4144,6,12,1,27,52,4.45,27.5,fr,8736,82,363956,1,1,Active Shallow Crust,0.0,89.99065,-90.0,06/12/4144 +8.61862,49.8156,9995,9,1,8,17,32,4.65,5.0,fr,8737,199,363975,1,1,Active Shallow Crust,240.0123,57.99456,0.0,09/01/9995 +8.61862,49.8156,5290,12,6,6,58,49,4.95,15.0,fr,8738,105,364009,1,1,Active Shallow Crust,0.0,89.98961,0.0,12/06/5290 +8.61862,49.8156,9417,12,1,18,4,13,5.45,27.5,fr,8739,188,364070,1,1,Active Shallow Crust,0.0,89.98978,0.0,12/01/9417 +8.61862,49.8156,5299,2,8,5,40,24,5.55,27.5,fr,8740,105,364091,1,1,Active Shallow Crust,128.8736,89.98964,0.0,02/08/5299 +-2.97798,43.53976,4487,2,12,0,43,15,3.55,5.0,fr,8741,89,364806,1,1,Active Shallow Crust,0.0,89.98891,-90.0,02/12/4487 +-2.97798,43.53976,5522,5,16,22,50,25,4.35,15.0,fr,8742,110,364900,1,1,Active Shallow Crust,240.0078,57.99568,0.0,05/16/5522 +-2.97798,43.53976,7694,10,1,13,33,35,4.55,5.0,fr,8743,153,364920,1,1,Active Shallow Crust,0.0,89.98959,0.0,10/01/7694 +7.26895,44.7777,761,10,4,20,36,59,3.55,5.0,fr,8744,15,365280,1,2,Active Shallow Crust,0.0,89.99284,0.0,10/04/0761 +7.26895,44.7777,1593,12,19,7,58,20,3.55,5.0,fr,8745,31,365280,1,2,Active Shallow Crust,0.0,89.99284,0.0,12/19/1593 +7.26895,44.7777,9258,10,18,7,40,13,3.55,15.0,fr,8746,185,365281,1,1,Active Shallow Crust,0.0,89.99284,0.0,10/18/9258 +7.26895,44.7777,3790,8,8,5,25,11,3.55,27.5,fr,8747,75,365282,1,1,Active Shallow Crust,0.0,89.99284,0.0,08/08/3790 +7.26895,44.7777,9966,11,6,14,51,40,3.55,5.0,fr,8748,199,365283,1,1,Active Shallow Crust,240.011,57.99921,0.0,11/06/9966 +7.26895,44.7777,3669,9,13,18,32,55,3.55,5.0,fr,8749,73,365286,1,1,Active Shallow Crust,0.0,89.99276,-90.0,09/13/3669 +7.26895,44.7777,3844,2,28,19,37,52,3.55,5.0,fr,8750,76,365289,1,1,Active Shallow Crust,128.8972,89.99284,0.0,02/28/3844 +7.26895,44.7777,6517,5,31,16,56,27,3.55,15.0,fr,8751,130,365290,1,1,Active Shallow Crust,128.8972,89.99284,0.0,05/31/6517 +7.26895,44.7777,6498,7,20,5,35,49,3.65,5.0,fr,8752,129,365292,1,6,Active Shallow Crust,0.0,89.98724,0.0,07/20/6498 +7.26895,44.7777,2618,6,3,6,12,37,3.65,5.0,fr,8753,52,365292,1,6,Active Shallow Crust,0.0,89.98724,0.0,06/03/2618 +7.26895,44.7777,3154,6,15,9,40,19,3.65,5.0,fr,8754,63,365292,1,6,Active Shallow Crust,0.0,89.98724,0.0,06/15/3154 +7.26895,44.7777,3737,7,6,8,30,29,3.65,5.0,fr,8755,74,365292,1,6,Active Shallow Crust,0.0,89.98724,0.0,07/06/3737 +7.26895,44.7777,9241,3,6,4,42,29,3.65,5.0,fr,8756,184,365292,1,6,Active Shallow Crust,0.0,89.98724,0.0,03/06/9241 +7.26895,44.7777,4933,3,5,1,22,44,3.65,5.0,fr,8757,98,365292,1,6,Active Shallow Crust,0.0,89.98724,0.0,03/05/4933 +7.26895,44.7777,492,10,19,12,0,19,3.65,15.0,fr,8758,9,365293,1,1,Active Shallow Crust,0.0,89.98724,0.0,10/19/0492 +7.26895,44.7777,6681,9,27,22,53,27,3.65,5.0,fr,8759,133,365298,1,1,Active Shallow Crust,0.0,89.98709,-90.0,09/27/6681 +7.26895,44.7777,4567,8,10,10,33,55,3.75,5.0,fr,8760,91,365304,1,2,Active Shallow Crust,0.0,89.98862,0.0,08/10/4567 +7.26895,44.7777,2049,5,9,10,39,7,3.75,5.0,fr,8761,40,365304,1,2,Active Shallow Crust,0.0,89.98862,0.0,05/09/2049 +7.26895,44.7777,6224,6,14,22,54,9,3.75,15.0,fr,8762,124,365305,1,1,Active Shallow Crust,0.0,89.98862,0.0,06/14/6224 +7.26895,44.7777,4514,11,22,14,38,25,3.75,5.0,fr,8763,90,365307,1,1,Active Shallow Crust,240.0076,58.01866,0.0,11/22/4514 +7.26895,44.7777,5376,12,5,13,28,45,3.75,5.0,fr,8764,107,365313,1,1,Active Shallow Crust,128.8958,89.96746,0.0,12/05/5376 +7.26895,44.7777,6045,10,27,20,19,3,3.75,15.0,fr,8765,120,365314,1,1,Active Shallow Crust,128.8958,89.96746,0.0,10/27/6045 +7.26895,44.7777,9732,1,7,10,16,56,3.85,5.0,fr,8766,194,365316,1,2,Active Shallow Crust,0.0,89.98987,0.0,01/07/9732 +7.26895,44.7777,50,10,17,12,13,3,3.85,5.0,fr,8767,0,365316,1,2,Active Shallow Crust,0.0,89.98987,0.0,10/17/0050 +7.26895,44.7777,239,12,23,17,22,32,3.85,5.0,fr,8768,4,365319,1,1,Active Shallow Crust,240.0105,57.99825,0.0,12/23/0239 +7.26895,44.7777,6549,1,17,6,36,21,3.95,5.0,fr,8769,130,365328,1,2,Active Shallow Crust,0.0,89.99097,0.0,01/17/6549 +7.26895,44.7777,4904,4,9,16,20,23,3.95,5.0,fr,8770,98,365328,1,2,Active Shallow Crust,0.0,89.99097,0.0,04/09/4904 +7.26895,44.7777,3362,2,22,10,40,39,3.95,15.0,fr,8771,67,365329,1,2,Active Shallow Crust,0.0,89.99097,0.0,02/22/3362 +7.26895,44.7777,9442,11,23,21,34,46,3.95,15.0,fr,8772,188,365329,1,2,Active Shallow Crust,0.0,89.99097,0.0,11/23/9442 +7.26895,44.7777,1911,7,7,5,4,39,4.05,5.0,fr,8773,38,365340,1,3,Active Shallow Crust,0.0,89.99195,0.0,07/07/1911 +7.26895,44.7777,1915,2,1,13,41,29,4.05,5.0,fr,8774,38,365340,1,3,Active Shallow Crust,0.0,89.99195,0.0,02/01/1915 +7.26895,44.7777,6745,10,2,5,26,19,4.05,5.0,fr,8775,134,365340,1,3,Active Shallow Crust,0.0,89.99195,0.0,10/02/6745 +7.26895,44.7777,6112,2,10,13,17,44,4.05,15.0,fr,8776,122,365341,1,1,Active Shallow Crust,0.0,89.99195,0.0,02/10/6112 +7.26895,44.7777,6098,5,19,18,58,51,4.05,27.5,fr,8777,121,365342,1,1,Active Shallow Crust,0.0,89.99195,0.0,05/19/6098 +7.26895,44.7777,3574,4,8,2,20,46,4.05,27.5,fr,8778,71,365345,1,1,Active Shallow Crust,240.0049,58.00632,0.0,04/08/3574 +7.26895,44.7777,7149,8,9,16,36,37,4.05,15.0,fr,8779,142,365350,1,2,Active Shallow Crust,128.8911,89.99397,0.0,08/09/7149 +7.26895,44.7777,8893,4,15,19,33,54,4.05,15.0,fr,8780,177,365350,1,2,Active Shallow Crust,128.8911,89.99397,0.0,04/15/8893 +7.26895,44.7777,9430,12,11,6,56,56,4.15,5.0,fr,8781,188,365352,1,1,Active Shallow Crust,0.0,89.98923,0.0,12/11/9430 +7.26895,44.7777,7239,6,24,16,34,1,4.15,5.0,fr,8782,144,365358,1,1,Active Shallow Crust,0.0,89.98911,-90.0,06/24/7239 +7.26895,44.7777,7417,5,12,9,11,38,4.25,15.0,fr,8783,148,365365,1,2,Active Shallow Crust,0.0,89.99041,0.0,05/12/7417 +7.26895,44.7777,7444,11,22,17,32,16,4.25,15.0,fr,8784,148,365365,1,2,Active Shallow Crust,0.0,89.99041,0.0,11/22/7444 +7.26895,44.7777,8558,2,18,17,10,35,4.45,5.0,fr,8785,171,365388,1,2,Active Shallow Crust,0.0,89.98984,0.0,02/18/8558 +7.26895,44.7777,2878,11,2,20,3,37,4.45,5.0,fr,8786,57,365388,1,2,Active Shallow Crust,0.0,89.98984,0.0,11/02/2878 +7.26895,44.7777,7887,12,30,12,35,17,4.55,5.0,fr,8787,157,365400,1,1,Active Shallow Crust,0.0,89.99094,0.0,12/30/7887 +7.26895,44.7777,6659,8,29,7,20,23,4.65,5.0,fr,8788,133,365412,1,1,Active Shallow Crust,0.0,89.98991,0.0,08/29/6659 +7.26895,44.7777,5231,2,28,4,2,3,4.65,5.0,fr,8789,104,365421,1,1,Active Shallow Crust,128.8913,89.98712,0.0,02/28/5231 +7.26895,44.7777,7889,9,15,0,23,58,4.75,27.5,fr,8790,157,365426,1,1,Active Shallow Crust,0.0,89.98921,0.0,09/15/7889 +7.26895,44.7777,9248,9,10,16,54,27,4.85,5.0,fr,8791,184,365442,1,1,Active Shallow Crust,0.0,89.99027,-90.0,09/10/9248 +7.26895,44.7777,9517,3,7,4,0,26,5.15,5.0,fr,8792,190,365472,1,1,Active Shallow Crust,0.0,89.98978,0.0,03/07/9517 +7.26895,44.7777,418,4,9,15,0,13,5.35,5.0,fr,8793,8,365496,1,1,Active Shallow Crust,0.0,89.99008,0.0,04/09/0418 +7.49846,43.87427,8363,8,22,17,55,56,3.55,5.0,fr,8794,167,365760,1,1,Active Shallow Crust,0.0,89.99273,0.0,08/22/8363 +7.49846,43.87427,8415,9,17,2,36,8,3.55,5.0,fr,8795,168,365763,1,3,Active Shallow Crust,240.0126,57.99794,0.0,09/17/8415 +7.49846,43.87427,6553,3,14,17,49,3,3.55,5.0,fr,8796,131,365763,1,3,Active Shallow Crust,240.0126,57.99794,0.0,03/14/6553 +7.49846,43.87427,1815,5,31,8,43,9,3.55,5.0,fr,8797,36,365763,1,3,Active Shallow Crust,240.0126,57.99794,0.0,05/31/1815 +7.49846,43.87427,2213,11,9,20,55,14,3.55,5.0,fr,8798,44,365766,1,1,Active Shallow Crust,0.0,89.99265,-90.0,11/09/2213 +7.49846,43.87427,1690,8,30,13,7,56,3.55,5.0,fr,8799,33,365769,1,1,Active Shallow Crust,128.8963,89.99273,0.0,08/30/1690 +7.49846,43.87427,2228,3,7,16,22,2,3.65,5.0,fr,8800,44,365772,1,3,Active Shallow Crust,0.0,89.98705,0.0,03/07/2228 +7.49846,43.87427,8187,7,15,18,38,39,3.65,5.0,fr,8801,163,365772,1,3,Active Shallow Crust,0.0,89.98705,0.0,07/15/8187 +7.49846,43.87427,5412,11,3,14,47,33,3.65,5.0,fr,8802,108,365772,1,3,Active Shallow Crust,0.0,89.98705,0.0,11/03/5412 +7.49846,43.87427,9766,8,2,7,9,6,3.65,15.0,fr,8803,195,365773,1,2,Active Shallow Crust,0.0,89.98705,0.0,08/02/9766 +7.49846,43.87427,1310,10,3,3,49,35,3.65,15.0,fr,8804,26,365773,1,2,Active Shallow Crust,0.0,89.98705,0.0,10/03/1310 +7.49846,43.87427,6171,11,2,23,25,23,3.65,5.0,fr,8805,123,365781,1,2,Active Shallow Crust,128.9006,89.96347,0.0,11/02/6171 +7.49846,43.87427,6409,3,13,14,51,34,3.65,5.0,fr,8806,128,365781,1,2,Active Shallow Crust,128.9006,89.96347,0.0,03/13/6409 +7.49846,43.87427,3013,2,27,16,40,11,3.75,5.0,fr,8807,60,365784,1,2,Active Shallow Crust,0.0,89.98845,0.0,02/27/3013 +7.49846,43.87427,1713,10,26,23,10,30,3.75,5.0,fr,8808,34,365784,1,2,Active Shallow Crust,0.0,89.98845,0.0,10/26/1713 +7.49846,43.87427,8290,7,13,10,10,33,3.75,27.5,fr,8809,165,365795,1,2,Active Shallow Crust,128.8963,89.96745,0.0,07/13/8290 +7.49846,43.87427,7013,12,31,11,40,28,3.75,27.5,fr,8810,140,365795,1,2,Active Shallow Crust,128.8963,89.96745,0.0,12/31/7013 +7.49846,43.87427,1465,9,2,13,33,41,3.85,5.0,fr,8811,29,365796,1,2,Active Shallow Crust,0.0,89.98971,0.0,09/02/1465 +7.49846,43.87427,3661,1,20,6,25,45,3.85,5.0,fr,8812,73,365796,1,2,Active Shallow Crust,0.0,89.98971,0.0,01/20/3661 +7.49846,43.87427,1100,3,22,2,17,57,3.85,5.0,fr,8813,21,365799,1,1,Active Shallow Crust,240.0108,57.99763,0.0,03/22/1100 +7.49846,43.87427,6758,5,19,10,45,56,3.95,15.0,fr,8814,135,365809,1,1,Active Shallow Crust,0.0,89.99083,0.0,05/19/6758 +7.49846,43.87427,3981,3,9,1,33,16,3.95,5.0,fr,8815,79,365811,1,1,Active Shallow Crust,240.0196,58.00563,0.0,03/09/3981 +7.49846,43.87427,260,1,5,16,4,57,3.95,5.0,fr,8816,5,365814,1,1,Active Shallow Crust,0.0,89.99072,-90.0,01/05/0260 +7.49846,43.87427,5778,7,21,9,13,7,3.95,5.0,fr,8817,115,365817,1,1,Active Shallow Crust,128.9007,89.99541,0.0,07/21/5778 +7.49846,43.87427,2539,7,31,22,44,35,3.95,15.0,fr,8818,50,365818,1,1,Active Shallow Crust,128.9007,89.99541,0.0,07/31/2539 +7.49846,43.87427,2298,10,7,0,23,10,4.05,5.0,fr,8819,45,365820,1,2,Active Shallow Crust,0.0,89.99182,0.0,10/07/2298 +7.49846,43.87427,2423,12,25,21,18,37,4.05,5.0,fr,8820,48,365820,1,2,Active Shallow Crust,0.0,89.99182,0.0,12/25/2423 +7.49846,43.87427,316,8,13,12,8,50,4.05,15.0,fr,8821,6,365821,1,1,Active Shallow Crust,0.0,89.99182,0.0,08/13/0316 +7.49846,43.87427,7100,5,1,13,48,29,4.05,15.0,fr,8822,141,365830,1,1,Active Shallow Crust,128.8904,89.99387,0.0,05/01/7100 +7.49846,43.87427,7397,10,9,16,4,26,4.15,5.0,fr,8823,147,365832,1,1,Active Shallow Crust,0.0,89.98907,0.0,10/09/7397 +7.49846,43.87427,9089,12,2,9,55,5,4.25,15.0,fr,8824,181,365845,1,1,Active Shallow Crust,0.0,89.99026,0.0,12/02/9089 +7.49846,43.87427,1802,5,3,19,29,54,4.25,5.0,fr,8825,36,365847,1,1,Active Shallow Crust,240.007,57.99422,0.0,05/03/1802 +7.49846,43.87427,4262,5,12,14,17,40,4.35,5.0,fr,8826,85,365856,1,2,Active Shallow Crust,0.0,89.99132,0.0,05/12/4262 +7.49846,43.87427,2989,1,5,20,53,22,4.35,5.0,fr,8827,59,365856,1,2,Active Shallow Crust,0.0,89.99132,0.0,01/05/2989 +7.49846,43.87427,828,10,26,16,18,43,4.35,27.5,fr,8828,16,365858,1,1,Active Shallow Crust,0.0,89.99132,0.0,10/26/0828 +7.49846,43.87427,8857,5,12,12,8,26,4.35,15.0,fr,8829,177,365860,1,1,Active Shallow Crust,240.0077,57.99592,0.0,05/12/8857 +7.49846,43.87427,2088,6,4,7,38,24,4.35,5.0,fr,8830,41,365865,1,1,Active Shallow Crust,128.8985,89.98293,0.0,06/04/2088 +7.49846,43.87427,122,12,21,6,58,16,4.45,27.5,fr,8831,2,365876,1,1,Active Shallow Crust,0.0,89.98956,-90.0,12/21/0122 +7.49846,43.87427,2896,1,29,16,24,21,4.55,5.0,fr,8832,57,365880,1,1,Active Shallow Crust,0.0,89.99081,0.0,01/29/2896 +7.49846,43.87427,3342,11,26,4,21,44,4.55,15.0,fr,8833,66,365884,1,1,Active Shallow Crust,240.0084,57.99733,0.0,11/26/3342 +7.49846,43.87427,2177,7,21,3,28,48,4.75,27.5,fr,8834,43,365906,1,1,Active Shallow Crust,0.0,89.99087,0.0,07/21/2177 +7.49846,43.87427,1544,1,12,16,40,52,4.95,5.0,fr,8835,30,365931,1,1,Active Shallow Crust,240.0105,58.00431,0.0,01/12/1544 +7.49846,43.87427,3772,11,5,3,17,21,5.15,15.0,fr,8836,75,365962,1,1,Active Shallow Crust,128.8853,89.991,0.0,11/05/3772 +7.49846,43.87427,4725,2,14,19,30,39,5.55,5.0,fr,8837,94,366003,1,1,Active Shallow Crust,240.0267,58.00218,0.0,02/14/4725 +7.19737,45.29676,1240,2,14,21,13,45,3.55,5.0,fr,8838,24,366240,1,4,Active Shallow Crust,0.0,89.9929,0.0,02/14/1240 +7.19737,45.29676,8654,5,10,19,41,51,3.55,5.0,fr,8839,173,366240,1,4,Active Shallow Crust,0.0,89.9929,0.0,05/10/8654 +7.19737,45.29676,7908,10,26,20,49,48,3.55,5.0,fr,8840,158,366240,1,4,Active Shallow Crust,0.0,89.9929,0.0,10/26/7908 +7.19737,45.29676,4266,7,10,10,19,58,3.55,5.0,fr,8841,85,366240,1,4,Active Shallow Crust,0.0,89.9929,0.0,07/10/4266 +7.19737,45.29676,6693,1,5,9,36,50,3.55,15.0,fr,8842,133,366241,1,2,Active Shallow Crust,0.0,89.9929,0.0,01/05/6693 +7.19737,45.29676,4884,10,27,2,41,43,3.55,15.0,fr,8843,97,366241,1,2,Active Shallow Crust,0.0,89.9929,0.0,10/27/4884 +7.19737,45.29676,8927,1,18,15,40,24,3.65,5.0,fr,8844,178,366252,1,3,Active Shallow Crust,0.0,89.98736,0.0,01/18/8927 +7.19737,45.29676,4512,1,27,12,33,26,3.65,5.0,fr,8845,90,366252,1,3,Active Shallow Crust,0.0,89.98736,0.0,01/27/4512 +7.19737,45.29676,6837,6,17,6,7,11,3.65,5.0,fr,8846,136,366252,1,3,Active Shallow Crust,0.0,89.98736,0.0,06/17/6837 +7.19737,45.29676,7820,2,10,10,52,5,3.65,15.0,fr,8847,156,366253,1,2,Active Shallow Crust,0.0,89.98736,0.0,02/10/7820 +7.19737,45.29676,9153,1,11,18,15,48,3.65,15.0,fr,8848,183,366253,1,2,Active Shallow Crust,0.0,89.98736,0.0,01/11/9153 +7.19737,45.29676,5014,6,15,20,8,15,3.65,5.0,fr,8849,100,366255,1,1,Active Shallow Crust,240.0009,58.01235,0.0,06/15/5014 +7.19737,45.29676,1565,2,24,1,36,46,3.65,15.0,fr,8850,31,366262,1,1,Active Shallow Crust,128.9006,89.9635,0.0,02/24/1565 +7.19737,45.29676,3947,6,19,9,44,55,3.65,27.5,fr,8851,78,366263,1,1,Active Shallow Crust,128.9006,89.9635,0.0,06/19/3947 +7.19737,45.29676,6091,10,12,10,27,20,3.75,5.0,fr,8852,121,366264,1,1,Active Shallow Crust,0.0,89.98873,0.0,10/12/6091 +7.19737,45.29676,9737,8,16,23,49,31,3.75,15.0,fr,8853,194,366274,1,1,Active Shallow Crust,128.8974,89.96687,0.0,08/16/9737 +7.19737,45.29676,6173,2,23,12,7,59,3.85,5.0,fr,8854,123,366276,1,2,Active Shallow Crust,0.0,89.98996,0.0,02/23/6173 +7.19737,45.29676,8706,11,24,19,48,25,3.85,5.0,fr,8855,174,366276,1,2,Active Shallow Crust,0.0,89.98996,0.0,11/24/8706 +7.19737,45.29676,4256,9,27,0,2,20,3.85,15.0,fr,8856,85,366277,1,1,Active Shallow Crust,0.0,89.98996,0.0,09/27/4256 +7.19737,45.29676,3,8,12,17,19,5,3.85,27.5,fr,8857,0,366278,1,1,Active Shallow Crust,0.0,89.98996,0.0,08/12/0003 +7.19737,45.29676,21,12,22,6,45,37,3.85,27.5,fr,8858,0,366284,1,1,Active Shallow Crust,0.0,89.98984,-90.0,12/22/0021 +7.19737,45.29676,9053,10,30,6,9,33,3.85,15.0,fr,8859,181,366286,1,1,Active Shallow Crust,128.8954,89.99498,0.0,10/30/9053 +7.19737,45.29676,2205,1,22,1,6,16,3.95,15.0,fr,8860,44,366292,1,1,Active Shallow Crust,240.0197,58.00563,0.0,01/22/2205 +7.19737,45.29676,7938,7,27,7,43,17,4.25,15.0,fr,8861,158,366325,1,1,Active Shallow Crust,0.0,89.99049,0.0,07/27/7938 +7.19737,45.29676,7770,10,19,10,34,16,4.25,27.5,fr,8862,155,366326,1,1,Active Shallow Crust,0.0,89.99049,0.0,10/19/7770 +7.19737,45.29676,7873,6,25,16,45,10,4.55,15.0,fr,8863,157,366370,1,1,Active Shallow Crust,128.8942,89.98607,0.0,06/25/7873 +7.19737,45.29676,4080,6,3,14,16,40,4.75,5.0,fr,8864,81,366393,1,1,Active Shallow Crust,128.8895,89.98811,0.0,06/03/4080 +4.40264,42.54899,2201,6,13,11,51,0,5.05,27.5,fr,8865,44,366902,1,1,Active Shallow Crust,0.0,89.98943,0.0,06/13/2201 +-6.90193,46.81539,7661,6,21,19,55,24,3.65,15.0,fr,8866,153,367213,1,1,Active Shallow Crust,0.0,89.9877,0.0,06/21/7661 +8.00547,48.36345,1235,10,22,7,28,44,3.55,5.0,fr,8867,24,367680,1,2,Active Shallow Crust,0.0,89.9866,0.0,10/22/1235 +8.00547,48.36345,2735,7,15,4,30,46,3.55,5.0,fr,8868,54,367680,1,2,Active Shallow Crust,0.0,89.9866,0.0,07/15/2735 +8.00547,48.36345,8558,12,31,23,49,51,3.55,27.5,fr,8869,171,367688,1,1,Active Shallow Crust,0.0,89.98644,-90.0,12/31/8558 +8.00547,48.36345,2842,3,29,7,46,14,3.65,5.0,fr,8870,56,367692,1,2,Active Shallow Crust,0.0,89.98806,0.0,03/29/2842 +8.00547,48.36345,794,6,17,12,22,34,3.65,5.0,fr,8871,15,367692,1,2,Active Shallow Crust,0.0,89.98806,0.0,06/17/0794 +8.00547,48.36345,4942,3,11,13,33,11,3.65,15.0,fr,8872,98,367693,1,1,Active Shallow Crust,0.0,89.98806,0.0,03/11/4942 +8.00547,48.36345,7361,7,25,13,32,40,3.65,27.5,fr,8873,147,367694,1,2,Active Shallow Crust,0.0,89.98806,0.0,07/25/7361 +8.00547,48.36345,3170,7,23,0,30,21,3.65,27.5,fr,8874,63,367694,1,2,Active Shallow Crust,0.0,89.98806,0.0,07/23/3170 +8.00547,48.36345,4505,8,27,0,13,47,3.65,5.0,fr,8875,90,367695,1,2,Active Shallow Crust,240.001,58.01384,0.0,08/27/4505 +8.00547,48.36345,1499,2,12,8,56,22,3.65,5.0,fr,8876,29,367695,1,2,Active Shallow Crust,240.001,58.01384,0.0,02/12/1499 +8.00547,48.36345,1243,9,17,6,9,44,3.65,15.0,fr,8877,24,367696,1,1,Active Shallow Crust,240.001,58.01384,0.0,09/17/1243 +8.00547,48.36345,4667,5,22,8,18,1,3.65,5.0,fr,8878,93,367701,1,1,Active Shallow Crust,128.8999,89.96356,0.0,05/22/4667 +8.00547,48.36345,6436,9,23,1,59,50,3.75,27.5,fr,8879,128,367706,1,1,Active Shallow Crust,0.0,89.98936,0.0,09/23/6436 +8.00547,48.36345,2506,10,5,7,53,47,3.75,5.0,fr,8880,50,367707,1,2,Active Shallow Crust,240.0111,58.01661,0.0,10/05/2506 +8.00547,48.36345,4533,5,29,0,1,44,3.75,5.0,fr,8881,90,367707,1,2,Active Shallow Crust,240.0111,58.01661,0.0,05/29/4533 +8.00547,48.36345,3445,7,5,3,40,43,3.85,5.0,fr,8882,68,367716,1,1,Active Shallow Crust,0.0,89.99052,0.0,07/05/3445 +8.00547,48.36345,3811,11,7,23,33,4,3.85,5.0,fr,8883,76,367719,1,1,Active Shallow Crust,240.0093,57.99904,0.0,11/07/3811 +8.00547,48.36345,3072,9,3,11,52,34,3.85,27.5,fr,8884,61,367721,1,1,Active Shallow Crust,240.0093,57.99904,0.0,09/03/3072 +8.00547,48.36345,3498,4,3,3,15,50,3.85,5.0,fr,8885,69,367722,1,1,Active Shallow Crust,0.0,89.9904,-90.0,04/03/3498 +8.00547,48.36345,2514,2,17,18,52,56,3.85,15.0,fr,8886,50,367726,1,1,Active Shallow Crust,128.897,89.99052,0.0,02/17/2514 +8.00547,48.36345,7146,9,30,6,57,27,3.95,5.0,fr,8887,142,367728,1,1,Active Shallow Crust,0.0,89.99155,0.0,09/30/7146 +8.00547,48.36345,2440,2,24,20,53,0,3.95,5.0,fr,8888,48,367734,1,1,Active Shallow Crust,0.0,89.99145,-90.0,02/24/2440 +8.00547,48.36345,896,3,2,0,45,16,3.95,5.0,fr,8889,17,367737,1,1,Active Shallow Crust,128.8993,89.99577,0.0,03/02/0896 +8.00547,48.36345,3468,10,15,10,43,21,4.05,15.0,fr,8890,69,367750,1,1,Active Shallow Crust,128.891,89.99435,0.0,10/15/3468 +8.00547,48.36345,856,2,19,3,52,47,4.15,5.0,fr,8891,17,367752,1,1,Active Shallow Crust,0.0,89.99329,0.0,02/19/0856 +8.00547,48.36345,3203,3,23,3,7,1,4.25,5.0,fr,8892,64,367767,1,1,Active Shallow Crust,240.0079,57.99463,0.0,03/23/3203 +8.00547,48.36345,4368,6,10,11,14,54,4.35,5.0,fr,8893,87,367779,1,1,Active Shallow Crust,240.0088,57.99627,0.0,06/10/4368 +8.00547,48.36345,6699,3,26,16,10,0,4.65,5.0,fr,8894,133,367812,1,1,Active Shallow Crust,0.0,89.98867,0.0,03/26/6699 +8.00547,48.36345,5311,10,11,10,26,36,4.65,5.0,fr,8895,106,367815,1,1,Active Shallow Crust,240.0117,57.99404,0.0,10/11/5311 +8.00547,48.36345,7345,8,24,4,56,28,5.05,5.0,fr,8896,146,367860,1,1,Active Shallow Crust,0.0,89.99046,0.0,08/24/7345 +6.17199,42.64701,3976,11,9,1,24,15,4.45,15.0,fr,8897,79,368269,1,1,Active Shallow Crust,0.0,89.98947,0.0,11/09/3976 +4.33895,40.37726,3709,6,14,23,38,46,3.55,15.0,fr,8898,74,368641,1,1,Active Shallow Crust,0.0,89.99232,0.0,06/14/3709 +4.33895,40.37726,5196,7,24,8,1,23,3.85,27.5,fr,8899,103,368678,1,1,Active Shallow Crust,0.0,89.98912,0.0,07/24/5196 +4.33895,40.37726,9360,1,7,15,12,44,3.95,27.5,fr,8900,187,368699,1,1,Active Shallow Crust,128.9013,89.99273,0.0,01/07/9360 +4.33895,40.37726,6956,3,10,17,50,56,5.05,5.0,fr,8901,139,368820,1,1,Active Shallow Crust,0.0,89.99043,0.0,03/10/6956 +1.88956,43.76273,8377,3,1,11,20,50,3.55,27.5,fr,8902,167,369125,1,1,Active Shallow Crust,240.0116,57.99816,0.0,03/01/8377 +1.88956,43.76273,6013,2,1,11,17,33,3.75,5.0,fr,8903,120,369153,1,1,Active Shallow Crust,128.8967,89.96745,0.0,02/01/6013 +1.88956,43.76273,3095,7,14,3,28,43,3.85,5.0,fr,8904,61,369165,1,1,Active Shallow Crust,128.8956,89.9942,0.0,07/14/3095 +1.88956,43.76273,3175,9,27,17,7,46,3.95,5.0,fr,8905,63,369168,1,2,Active Shallow Crust,0.0,89.98966,0.0,09/27/3175 +1.88956,43.76273,3927,4,8,20,19,6,3.95,5.0,fr,8906,78,369168,1,2,Active Shallow Crust,0.0,89.98966,0.0,04/08/3927 +1.88956,43.76273,5008,12,14,22,54,50,4.15,5.0,fr,8907,100,369192,1,1,Active Shallow Crust,0.0,89.98996,0.0,12/14/5008 +1.88956,43.76273,781,5,7,20,36,50,4.45,5.0,fr,8908,15,369234,1,1,Active Shallow Crust,0.0,89.9902,-90.0,05/07/0781 +3.61175,48.17555,8135,3,18,15,31,17,3.55,15.0,fr,8909,162,369601,1,1,Active Shallow Crust,0.0,89.98991,0.0,03/18/8135 +-2.20979,46.78622,4580,11,25,4,8,10,3.65,5.0,fr,8910,91,370092,1,2,Active Shallow Crust,0.0,89.99077,0.0,11/25/4580 +-2.20979,46.78622,5310,9,26,1,29,22,3.65,5.0,fr,8911,106,370092,1,2,Active Shallow Crust,0.0,89.99077,0.0,09/26/5310 +-2.20979,46.78622,697,4,23,12,57,56,3.75,5.0,fr,8912,13,370113,1,1,Active Shallow Crust,128.8965,89.96724,0.0,04/23/0697 +-2.20979,46.78622,2167,5,31,10,50,43,3.95,5.0,fr,8913,43,370128,1,1,Active Shallow Crust,0.0,89.98911,0.0,05/31/2167 +-2.20979,46.78622,7087,1,9,2,19,12,4.05,15.0,fr,8914,141,370141,1,1,Active Shallow Crust,0.0,89.9903,0.0,01/09/7087 +-2.20979,46.78622,4933,11,27,5,37,13,4.05,5.0,fr,8915,98,370149,1,1,Active Shallow Crust,128.8907,89.9932,0.0,11/27/4933 +-2.20979,46.78622,5577,12,15,13,58,17,4.15,5.0,fr,8916,111,370152,1,1,Active Shallow Crust,0.0,89.98962,0.0,12/15/5577 +-2.20979,46.78622,6300,2,1,5,22,1,4.45,27.5,fr,8917,125,370193,1,1,Active Shallow Crust,240.0053,57.99481,0.0,02/01/6300 +-2.209782,46.78622,760,12,11,12,7,44,6.45,8.491219,fr,8918,15,370428,1,1,Active Shallow Crust,0.0,89.99001,0.0,12/11/0760 +-2.209798,46.78622,6238,9,19,0,55,47,6.65,10.68981,fr,8919,124,370461,1,1,Active Shallow Crust,128.8211,89.98987,0.0,09/19/6238 +5.82187,44.99761,9354,2,10,16,0,1,3.55,5.0,fr,8920,187,370560,1,2,Active Shallow Crust,0.0,89.99287,0.0,02/10/9354 +5.82187,44.99761,1880,5,18,10,5,3,3.55,5.0,fr,8921,37,370560,1,2,Active Shallow Crust,0.0,89.99287,0.0,05/18/1880 +5.82187,44.99761,2767,8,22,1,43,16,3.55,15.0,fr,8922,55,370561,1,1,Active Shallow Crust,0.0,89.99287,0.0,08/22/2767 +5.82187,44.99761,235,3,26,1,0,13,3.55,5.0,fr,8923,4,370563,1,1,Active Shallow Crust,240.0126,57.99807,0.0,03/26/0235 +5.82187,44.99761,9983,6,4,15,0,21,3.65,5.0,fr,8924,199,370572,1,1,Active Shallow Crust,0.0,89.98729,0.0,06/04/9983 +5.82187,44.99761,7969,4,18,11,44,15,3.65,15.0,fr,8925,159,370573,1,1,Active Shallow Crust,0.0,89.98729,0.0,04/18/7969 +5.82187,44.99761,1888,11,18,8,11,8,3.65,27.5,fr,8926,37,370574,1,1,Active Shallow Crust,0.0,89.98729,0.0,11/18/1888 +5.82187,44.99761,1462,7,22,4,13,14,3.75,15.0,fr,8927,29,370585,1,1,Active Shallow Crust,0.0,89.98867,0.0,07/22/1462 +5.82187,44.99761,7891,10,25,21,3,32,3.75,15.0,fr,8928,157,370591,1,1,Active Shallow Crust,0.0,89.98854,-90.0,10/25/7891 +5.82187,44.99761,9357,3,22,13,42,2,3.85,5.0,fr,8929,187,370596,1,1,Active Shallow Crust,0.0,89.98991,0.0,03/22/9357 +5.82187,44.99761,1918,6,20,2,30,3,3.95,5.0,fr,8930,38,370608,1,4,Active Shallow Crust,0.0,89.991,0.0,06/20/1918 +5.82187,44.99761,772,12,12,6,24,34,3.95,5.0,fr,8931,15,370608,1,4,Active Shallow Crust,0.0,89.991,0.0,12/12/0772 +5.82187,44.99761,4511,10,31,17,25,32,3.95,5.0,fr,8932,90,370608,1,4,Active Shallow Crust,0.0,89.991,0.0,10/31/4511 +5.82187,44.99761,1893,9,9,20,11,41,3.95,5.0,fr,8933,37,370608,1,4,Active Shallow Crust,0.0,89.991,0.0,09/09/1893 +5.82187,44.99761,9143,11,18,14,17,9,3.95,5.0,fr,8934,182,370611,1,1,Active Shallow Crust,240.0198,58.00419,0.0,11/18/9143 +5.82187,44.99761,7786,10,6,3,35,59,3.95,5.0,fr,8935,155,370614,1,1,Active Shallow Crust,0.0,89.9909,-90.0,10/06/7786 +5.82187,44.99761,3502,1,23,23,37,49,3.95,15.0,fr,8936,70,370618,1,1,Active Shallow Crust,128.9012,89.99326,0.0,01/23/3502 +5.82187,44.99761,6004,3,29,12,42,10,4.05,5.0,fr,8937,120,370620,1,2,Active Shallow Crust,0.0,89.99198,0.0,03/29/6004 +5.82187,44.99761,8409,2,19,17,55,14,4.05,5.0,fr,8938,168,370620,1,2,Active Shallow Crust,0.0,89.99198,0.0,02/19/8409 +5.82187,44.99761,3361,8,20,15,1,35,4.05,5.0,fr,8939,67,370623,1,1,Active Shallow Crust,240.0055,58.00626,0.0,08/20/3361 +5.82187,44.99761,5880,7,23,0,11,46,4.05,5.0,fr,8940,117,370629,1,1,Active Shallow Crust,128.8896,89.99399,0.0,07/23/5880 +5.82187,44.99761,9829,2,25,1,0,17,4.15,15.0,fr,8941,196,370636,1,1,Active Shallow Crust,240.0082,57.99754,0.0,02/25/9829 +5.82187,44.99761,3141,6,15,1,18,17,4.35,5.0,fr,8942,62,370656,1,1,Active Shallow Crust,0.0,89.98865,0.0,06/15/3141 +5.82187,44.99761,2269,3,5,15,46,27,4.35,15.0,fr,8943,45,370666,1,1,Active Shallow Crust,128.8985,89.98244,0.0,03/05/2269 +5.82187,44.99761,6332,8,11,7,48,8,4.45,5.0,fr,8944,126,370671,1,1,Active Shallow Crust,240.0054,57.99434,0.0,08/11/6332 +5.82187,44.99761,1882,10,13,0,57,30,4.45,5.0,fr,8945,37,370674,1,1,Active Shallow Crust,0.0,89.98976,-90.0,10/13/1882 +5.82187,44.99761,8740,3,2,14,42,49,4.55,5.0,fr,8946,174,370683,1,1,Active Shallow Crust,240.0088,57.99751,0.0,03/02/8740 +5.82187,44.99761,9453,10,8,16,48,49,4.65,5.0,fr,8947,189,370692,1,1,Active Shallow Crust,0.0,89.98995,0.0,10/08/9453 +5.82187,44.99761,1366,9,25,16,52,16,4.75,5.0,fr,8948,27,370713,1,1,Active Shallow Crust,128.8895,89.98808,0.0,09/25/1366 +5.82187,44.99761,2226,1,27,2,41,20,4.85,5.0,fr,8949,44,370716,1,1,Active Shallow Crust,0.0,89.99042,0.0,01/27/2226 +5.82187,44.99761,7790,5,11,20,56,49,6.45,15.0,fr,8950,155,370909,1,1,Active Shallow Crust,359.9999,89.99012,0.0,05/11/7790 +3.50329,40.53112,1074,3,18,23,38,16,3.75,5.0,fr,8951,21,371064,1,2,Active Shallow Crust,0.0,89.99087,0.0,03/18/1074 +3.50329,40.53112,2509,6,26,23,4,1,3.75,5.0,fr,8952,50,371064,1,2,Active Shallow Crust,0.0,89.99087,0.0,06/26/2509 +3.50329,40.53112,5338,10,10,11,51,50,4.25,5.0,fr,8953,106,371130,1,1,Active Shallow Crust,0.0,89.98961,-90.0,10/10/5338 +1.361452,48.11792,2298,2,1,4,46,48,6.15,6.011322,fr,8954,45,371832,1,1,Active Shallow Crust,360.0,89.99004,0.0,02/01/2298 +1.81786,49.58505,2065,9,4,12,4,10,3.55,5.0,fr,8955,41,372000,1,1,Active Shallow Crust,0.0,89.9902,0.0,09/04/2065 +1.81786,49.58505,6171,6,29,20,20,22,3.65,5.0,fr,8956,123,372012,1,1,Active Shallow Crust,0.0,89.9898,0.0,06/29/6171 +1.81786,49.58505,1070,7,17,6,52,19,3.95,5.0,fr,8957,21,372048,1,1,Active Shallow Crust,0.0,89.98969,0.0,07/17/1070 +1.81786,49.58505,4571,5,17,0,1,47,4.15,5.0,fr,8958,91,372072,1,1,Active Shallow Crust,0.0,89.99017,0.0,05/17/4571 +1.81786,49.58505,5880,9,5,16,38,35,4.25,15.0,fr,8959,117,372085,1,1,Active Shallow Crust,0.0,89.98978,0.0,09/05/5880 +1.81786,49.58505,5692,1,23,12,55,18,5.05,5.0,fr,8960,113,372183,1,1,Active Shallow Crust,240.0238,57.9979,0.0,01/23/5692 +1.00174,50.33374,8102,5,3,10,42,11,3.55,5.0,fr,8961,162,372480,1,2,Active Shallow Crust,0.0,89.99034,0.0,05/03/8102 +1.00174,50.33374,2968,11,7,16,30,3,3.55,5.0,fr,8962,59,372480,1,2,Active Shallow Crust,0.0,89.99034,0.0,11/07/2968 +1.00174,50.33374,5201,10,5,23,4,57,3.55,15.0,fr,8963,104,372481,1,1,Active Shallow Crust,0.0,89.99034,0.0,10/05/5201 +1.00174,50.33374,5951,11,10,23,1,18,3.55,27.5,fr,8964,119,372482,1,1,Active Shallow Crust,0.0,89.99034,0.0,11/10/5951 +1.00174,50.33374,5579,6,27,12,55,21,3.75,15.0,fr,8965,111,372505,1,1,Active Shallow Crust,0.0,89.98978,0.0,06/27/5579 +1.00174,50.33374,2299,7,24,3,47,15,3.85,5.0,fr,8966,45,372516,1,1,Active Shallow Crust,0.0,89.98975,0.0,07/24/2299 +1.00174,50.33374,9210,12,7,4,6,11,3.85,5.0,fr,8967,184,372519,1,1,Active Shallow Crust,240.0114,57.99792,0.0,12/07/9210 +1.00174,50.33374,6702,4,17,22,51,34,3.95,5.0,fr,8968,134,372528,1,1,Active Shallow Crust,0.0,89.98985,0.0,04/17/6702 +1.00174,50.33374,3310,12,29,13,39,43,4.15,5.0,fr,8969,66,372555,1,1,Active Shallow Crust,240.0091,57.99752,0.0,12/29/3310 +1.00174,50.33374,2186,1,17,15,30,42,4.65,15.0,fr,8970,43,372622,1,1,Active Shallow Crust,128.8901,89.98698,0.0,01/17/2186 +4.45045,47.27917,756,11,7,5,54,39,3.55,5.0,fr,8971,15,372960,1,2,Active Shallow Crust,0.0,89.99316,0.0,11/07/0756 +4.45045,47.27917,7219,8,6,1,57,18,3.55,5.0,fr,8972,144,372960,1,2,Active Shallow Crust,0.0,89.99316,0.0,08/06/7219 +4.45045,47.27917,9498,10,9,12,6,45,3.65,5.0,fr,8973,189,372972,1,1,Active Shallow Crust,0.0,89.98781,0.0,10/09/9498 +4.45045,47.27917,6585,4,8,22,58,33,3.65,5.0,fr,8974,131,372975,1,1,Active Shallow Crust,240.0002,58.01372,0.0,04/08/6585 +4.45045,47.27917,9070,3,29,17,4,40,3.75,5.0,fr,8975,181,372993,1,2,Active Shallow Crust,128.8963,89.96751,0.0,03/29/9070 +4.45045,47.27917,5458,12,14,3,31,49,3.75,5.0,fr,8976,109,372993,1,2,Active Shallow Crust,128.8963,89.96751,0.0,12/14/5458 +4.45045,47.27917,4226,7,22,15,28,32,3.95,5.0,fr,8977,84,373008,1,1,Active Shallow Crust,0.0,89.99136,0.0,07/22/4226 +4.45045,47.27917,8912,12,6,3,22,6,4.15,5.0,fr,8978,178,373038,1,1,Active Shallow Crust,0.0,89.98959,-90.0,12/06/8912 +4.45045,47.27917,7323,2,9,15,37,31,4.25,15.0,fr,8979,146,373054,1,1,Active Shallow Crust,128.895,89.98043,0.0,02/09/7323 +4.45045,47.27917,5721,8,28,20,7,55,4.35,15.0,fr,8980,114,373057,1,1,Active Shallow Crust,0.0,89.98911,0.0,08/28/5721 +4.45045,47.27917,5837,6,20,16,16,38,4.65,15.0,fr,8981,116,373093,1,1,Active Shallow Crust,0.0,89.99036,0.0,06/20/5837 +4.45045,47.27917,476,7,25,2,31,42,4.75,5.0,fr,8982,9,373104,1,1,Active Shallow Crust,0.0,89.98969,0.0,07/25/0476 +4.45045,47.27917,5760,5,11,23,40,1,4.75,15.0,fr,8983,115,373105,1,1,Active Shallow Crust,0.0,89.98969,0.0,05/11/5760 +4.51764,43.76574,5878,9,11,5,47,17,3.65,5.0,fr,8984,117,373452,1,1,Active Shallow Crust,0.0,89.98702,0.0,09/11/5878 +4.51764,43.76574,1962,5,8,18,57,13,3.65,15.0,fr,8985,39,373459,1,1,Active Shallow Crust,0.0,89.98687,-90.0,05/08/1962 +4.51764,43.76574,1311,11,3,1,38,3,3.75,5.0,fr,8986,26,373464,1,1,Active Shallow Crust,0.0,89.98843,0.0,11/03/1311 +4.51764,43.76574,7781,5,11,21,27,17,3.75,5.0,fr,8987,155,373470,1,1,Active Shallow Crust,0.0,89.9883,-90.0,05/11/7781 +4.51764,43.76574,9103,3,4,13,19,18,3.85,5.0,fr,8988,182,373476,1,1,Active Shallow Crust,0.0,89.98969,0.0,03/04/9103 +4.51764,43.76574,1468,11,23,2,17,55,3.85,15.0,fr,8989,29,373477,1,1,Active Shallow Crust,0.0,89.98969,0.0,11/23/1468 +4.51764,43.76574,1376,1,3,6,14,33,3.85,27.5,fr,8990,27,373478,1,1,Active Shallow Crust,0.0,89.98969,0.0,01/03/1376 +4.51764,43.76574,702,2,13,22,38,59,3.95,5.0,fr,8991,14,373488,1,1,Active Shallow Crust,0.0,89.99081,0.0,02/13/0702 +4.51764,43.76574,8376,8,19,10,39,14,3.95,15.0,fr,8992,167,373495,1,1,Active Shallow Crust,0.0,89.99071,-90.0,08/19/8376 +4.51764,43.76574,5827,1,8,14,5,11,4.05,15.0,fr,8993,116,373501,1,1,Active Shallow Crust,0.0,89.99181,0.0,01/08/5827 +4.51764,43.76574,9128,7,21,17,36,42,4.05,5.0,fr,8994,182,373506,1,1,Active Shallow Crust,0.0,89.99171,-90.0,07/21/9128 +4.51764,43.76574,619,5,28,3,34,19,4.15,5.0,fr,8995,12,373512,1,2,Active Shallow Crust,0.0,89.98905,0.0,05/28/0619 +4.51764,43.76574,7059,3,21,2,16,26,4.15,5.0,fr,8996,141,373512,1,2,Active Shallow Crust,0.0,89.98905,0.0,03/21/7059 +4.51764,43.76574,454,12,24,15,50,22,4.15,5.0,fr,8997,9,373518,1,1,Active Shallow Crust,0.0,89.98892,-90.0,12/24/0454 +4.51764,43.76574,4598,12,22,7,13,28,4.25,5.0,fr,8998,91,373524,1,1,Active Shallow Crust,0.0,89.99024,0.0,12/22/4598 +4.51764,43.76574,8085,11,21,7,35,25,4.25,15.0,fr,8999,161,373525,1,1,Active Shallow Crust,0.0,89.99024,0.0,11/21/8085 +4.51764,43.76574,9130,7,1,3,7,1,4.35,5.0,fr,9000,182,373536,1,1,Active Shallow Crust,0.0,89.9913,0.0,07/01/9130 +4.51764,43.76574,5884,9,21,15,42,2,4.45,15.0,fr,9001,117,373549,1,1,Active Shallow Crust,0.0,89.98966,0.0,09/21/5884 +4.51764,43.76574,3725,2,8,3,7,20,4.45,27.5,fr,9002,74,373559,1,1,Active Shallow Crust,128.8926,89.99354,0.0,02/08/3725 +4.51764,43.76574,1949,8,30,5,24,36,4.65,5.0,fr,9003,38,373572,1,1,Active Shallow Crust,0.0,89.98974,0.0,08/30/1949 +6.15755,50.52694,9610,9,9,21,49,54,3.55,5.0,fr,9004,192,373920,1,1,Active Shallow Crust,0.0,89.98718,0.0,09/09/9610 +6.15755,50.52694,2656,11,6,5,32,18,3.55,15.0,fr,9005,53,373921,1,3,Active Shallow Crust,0.0,89.98718,0.0,11/06/2656 +6.15755,50.52694,5691,3,11,17,46,35,3.55,15.0,fr,9006,113,373921,1,3,Active Shallow Crust,0.0,89.98718,0.0,03/11/5691 +6.15755,50.52694,7107,2,10,11,58,55,3.55,15.0,fr,9007,142,373921,1,3,Active Shallow Crust,0.0,89.98718,0.0,02/10/7107 +6.15755,50.52694,8054,7,3,7,28,49,3.65,15.0,fr,9008,161,373933,1,1,Active Shallow Crust,0.0,89.98857,0.0,07/03/8054 +6.15755,50.52694,7798,5,8,13,19,28,3.65,27.5,fr,9009,155,373934,1,1,Active Shallow Crust,0.0,89.98857,0.0,05/08/7798 +6.15755,50.52694,8344,5,29,6,47,44,3.65,5.0,fr,9010,166,373935,1,1,Active Shallow Crust,240.0027,58.01195,0.0,05/29/8344 +6.15755,50.52694,9062,10,5,1,15,1,3.65,15.0,fr,9011,181,373936,1,1,Active Shallow Crust,240.0027,58.01195,0.0,10/05/9062 +6.15755,50.52694,9545,5,2,7,54,13,3.65,5.0,fr,9012,190,373938,1,1,Active Shallow Crust,0.0,89.98844,-90.0,05/02/9545 +6.15755,50.52694,4243,4,16,10,44,22,3.75,5.0,fr,9013,84,373944,1,5,Active Shallow Crust,0.0,89.98981,0.0,04/16/4243 +6.15755,50.52694,8262,5,1,16,15,49,3.75,5.0,fr,9014,165,373944,1,5,Active Shallow Crust,0.0,89.98981,0.0,05/01/8262 +6.15755,50.52694,7654,4,27,9,2,50,3.75,5.0,fr,9015,153,373944,1,5,Active Shallow Crust,0.0,89.98981,0.0,04/27/7654 +6.15755,50.52694,8536,6,24,6,24,0,3.75,5.0,fr,9016,170,373944,1,5,Active Shallow Crust,0.0,89.98981,0.0,06/24/8536 +6.15755,50.52694,511,4,2,5,36,2,3.75,5.0,fr,9017,10,373944,1,5,Active Shallow Crust,0.0,89.98981,0.0,04/02/0511 +6.15755,50.52694,5243,2,27,8,1,50,3.75,15.0,fr,9018,104,373945,1,1,Active Shallow Crust,0.0,89.98981,0.0,02/27/5243 +6.15755,50.52694,6296,9,3,18,2,15,3.75,5.0,fr,9019,125,373947,1,1,Active Shallow Crust,240.0093,58.01715,0.0,09/03/6296 +6.15755,50.52694,7539,2,9,4,43,34,3.85,15.0,fr,9020,150,373957,1,1,Active Shallow Crust,0.0,89.99092,0.0,02/09/7539 +6.15755,50.52694,4250,9,17,4,5,32,3.95,5.0,fr,9021,84,373968,1,1,Active Shallow Crust,0.0,89.99191,0.0,09/17/4250 +6.15755,50.52694,9920,10,24,21,15,40,3.95,5.0,fr,9022,198,373971,1,1,Active Shallow Crust,240.0206,58.00529,0.0,10/24/9920 +6.15755,50.52694,9808,6,12,2,31,38,3.95,27.5,fr,9023,196,373976,1,1,Active Shallow Crust,0.0,89.99181,-90.0,06/12/9808 +6.15755,50.52694,7470,9,2,3,58,36,4.45,5.0,fr,9024,149,374028,1,1,Active Shallow Crust,0.0,89.9909,0.0,09/02/7470 +6.15755,50.52694,6084,9,24,11,58,17,4.85,5.0,fr,9025,121,374076,1,1,Active Shallow Crust,0.0,89.98995,0.0,09/24/6084 +6.15755,50.52694,7569,3,30,5,54,27,5.15,5.0,fr,9026,151,374112,1,1,Active Shallow Crust,0.0,89.98984,0.0,03/30/7569 +6.15755,50.52694,6613,1,2,20,29,43,5.35,5.0,fr,9027,132,374136,1,1,Active Shallow Crust,0.0,89.99031,0.0,01/02/6613 +3.12388,51.30513,6751,1,23,9,31,24,3.55,5.0,fr,9028,135,374400,1,1,Active Shallow Crust,0.0,89.99055,0.0,01/23/6751 +3.12388,51.30513,2769,3,19,7,31,25,3.55,5.0,fr,9029,55,374403,1,1,Active Shallow Crust,240.013,57.99844,0.0,03/19/2769 +3.12388,51.30513,3320,5,20,22,25,39,3.65,15.0,fr,9030,66,374413,1,1,Active Shallow Crust,0.0,89.98876,0.0,05/20/3320 +3.12388,51.30513,3370,3,28,16,40,49,3.65,5.0,fr,9031,67,374415,1,1,Active Shallow Crust,240.0022,58.01271,0.0,03/28/3370 +3.12388,51.30513,2018,12,31,5,42,41,4.05,5.0,fr,9032,40,374466,1,1,Active Shallow Crust,0.0,89.98924,-90.0,12/31/2018 +3.12388,51.30513,5636,9,27,4,15,23,4.15,5.0,fr,9033,112,374472,1,1,Active Shallow Crust,0.0,89.99052,0.0,09/27/5636 +3.12388,51.30513,5684,9,17,9,36,29,4.75,27.5,fr,9034,113,374546,1,1,Active Shallow Crust,0.0,89.98971,0.0,09/17/5684 +3.31054,42.25701,2233,3,28,11,20,33,3.55,5.0,fr,9035,44,375360,1,1,Active Shallow Crust,0.0,89.98881,0.0,03/28/2233 +3.31054,42.25701,8137,3,26,13,21,55,3.55,15.0,fr,9036,162,375361,1,1,Active Shallow Crust,0.0,89.98881,0.0,03/26/8137 +3.31054,42.25701,119,12,17,2,36,31,3.65,5.0,fr,9037,2,375372,1,1,Active Shallow Crust,0.0,89.99002,0.0,12/17/0119 +3.31054,42.25701,576,5,13,19,12,46,3.65,5.0,fr,9038,11,375378,1,1,Active Shallow Crust,0.0,89.98991,-90.0,05/13/0576 +3.31054,42.25701,833,2,12,3,8,18,3.75,5.0,fr,9039,16,375384,1,1,Active Shallow Crust,0.0,89.9911,0.0,02/12/0833 +3.31054,42.25701,2750,6,11,3,56,42,3.95,5.0,fr,9040,54,375408,1,1,Active Shallow Crust,0.0,89.99059,0.0,06/11/2750 +3.31054,42.25701,6295,7,26,7,4,1,4.05,5.0,fr,9041,125,375420,1,2,Active Shallow Crust,0.0,89.98951,0.0,07/26/6295 +3.31054,42.25701,1520,9,28,3,27,36,4.05,5.0,fr,9042,30,375420,1,2,Active Shallow Crust,0.0,89.98951,0.0,09/28/1520 +3.31054,42.25701,9605,6,11,18,48,57,4.05,15.0,fr,9043,192,375421,1,1,Active Shallow Crust,0.0,89.98951,0.0,06/11/9605 +3.31054,42.25701,3985,3,24,14,22,13,4.45,5.0,fr,9044,79,375468,1,1,Active Shallow Crust,0.0,89.98941,0.0,03/24/3985 +3.31054,42.25701,1278,12,8,12,26,8,4.65,5.0,fr,9045,25,375492,1,1,Active Shallow Crust,0.0,89.98948,0.0,12/08/1278 +-1.02399,43.61728,4167,5,18,4,40,28,3.55,5.0,fr,9046,83,375840,1,2,Active Shallow Crust,0.0,89.99088,0.0,05/18/4167 +-1.02399,43.61728,8351,4,4,14,45,18,3.55,5.0,fr,9047,167,375840,1,2,Active Shallow Crust,0.0,89.99088,0.0,04/04/8351 +-1.02399,43.61728,7220,5,18,17,3,17,3.55,5.0,fr,9048,144,375849,1,1,Active Shallow Crust,128.8962,89.99361,0.0,05/18/7220 +-1.02399,43.61728,2409,8,29,4,48,42,3.75,15.0,fr,9049,48,375868,1,1,Active Shallow Crust,240.008,58.01758,0.0,08/29/2409 +-1.02399,43.61728,9703,8,15,17,16,38,4.05,5.0,fr,9050,194,375900,1,1,Active Shallow Crust,0.0,89.98974,0.0,08/15/9703 +-1.02399,43.61728,2394,6,24,9,55,53,4.15,5.0,fr,9051,47,375912,1,1,Active Shallow Crust,0.0,89.98994,0.0,06/24/2394 +-1.02399,43.61728,2994,1,7,17,18,49,4.35,27.5,fr,9052,59,375938,1,1,Active Shallow Crust,0.0,89.98983,0.0,01/07/2994 +-1.02399,43.61728,7280,8,23,6,1,43,4.55,5.0,fr,9053,145,375963,1,1,Active Shallow Crust,240.0085,57.99715,0.0,08/23/7280 +3.97693,40.73483,4050,8,26,9,5,45,3.55,15.0,fr,9054,80,376321,1,1,Active Shallow Crust,0.0,89.98854,0.0,08/26/4050 +3.97693,40.73483,6767,2,15,3,1,28,3.55,27.5,fr,9055,135,376322,1,1,Active Shallow Crust,0.0,89.98854,0.0,02/15/6767 +3.97693,40.73483,9452,4,19,21,19,19,3.55,5.0,fr,9056,189,376323,1,1,Active Shallow Crust,240.0112,57.99829,0.0,04/19/9452 +3.97693,40.73483,175,12,28,8,9,45,3.65,27.5,fr,9057,3,376337,1,1,Active Shallow Crust,240.0004,58.01267,0.0,12/28/0175 +3.97693,40.73483,9584,2,27,12,11,16,3.75,5.0,fr,9058,191,376344,1,1,Active Shallow Crust,0.0,89.9909,0.0,02/27/9584 +3.97693,40.73483,6416,4,21,15,32,37,3.85,5.0,fr,9059,128,376356,1,1,Active Shallow Crust,0.0,89.98918,0.0,04/21/6416 +3.97693,40.73483,6555,12,30,12,7,48,3.95,27.5,fr,9060,131,376370,1,1,Active Shallow Crust,0.0,89.99036,0.0,12/30/6555 +-1.98037,41.99071,823,10,17,2,7,24,3.55,5.0,fr,9061,16,376800,1,1,Active Shallow Crust,0.0,89.99063,0.0,10/17/0823 +-1.98037,41.99071,291,7,10,14,40,42,3.55,15.0,fr,9062,5,376801,1,1,Active Shallow Crust,0.0,89.99063,0.0,07/10/0291 +-1.98037,41.99071,7169,9,11,16,26,6,3.75,5.0,fr,9063,143,376824,1,2,Active Shallow Crust,0.0,89.98958,0.0,09/11/7169 +-1.98037,41.99071,1617,8,14,2,19,43,3.75,5.0,fr,9064,32,376824,1,2,Active Shallow Crust,0.0,89.98958,0.0,08/14/1617 +-1.98037,41.99071,4454,12,4,2,32,48,3.95,5.0,fr,9065,89,376848,1,1,Active Shallow Crust,0.0,89.99054,0.0,12/04/4454 +-1.98037,41.99071,6972,9,4,18,37,31,4.05,5.0,fr,9066,139,376860,1,1,Active Shallow Crust,0.0,89.99052,0.0,09/04/6972 +-1.98037,41.99071,4126,8,1,3,25,55,4.15,5.0,fr,9067,82,376872,1,1,Active Shallow Crust,0.0,89.98967,0.0,08/01/4126 +-1.98037,41.99071,3072,2,12,2,51,13,4.35,5.0,fr,9068,61,376896,1,1,Active Shallow Crust,0.0,89.9903,0.0,02/12/3072 +-1.98037,41.99071,1928,7,7,20,16,35,4.55,5.0,fr,9069,38,376923,1,1,Active Shallow Crust,240.0081,57.9971,0.0,07/07/1928 +3.65713,40.82482,6921,2,5,15,52,10,3.55,5.0,fr,9070,138,377280,1,1,Active Shallow Crust,0.0,89.98856,0.0,02/05/6921 +3.65713,40.82482,1183,12,1,23,9,41,3.65,5.0,fr,9071,23,377301,1,1,Active Shallow Crust,128.9016,89.96342,0.0,12/01/1183 +3.65713,40.82482,4092,11,21,18,3,32,3.75,15.0,fr,9072,81,377305,1,1,Active Shallow Crust,0.0,89.99091,0.0,11/21/4092 +3.65713,40.82482,5879,2,24,5,32,49,3.85,5.0,fr,9073,117,377316,1,1,Active Shallow Crust,0.0,89.9892,0.0,02/24/5879 +3.65713,40.82482,2946,4,26,16,22,15,4.15,15.0,fr,9074,58,377353,1,1,Active Shallow Crust,0.0,89.99044,0.0,04/26/2946 +0.04294,45.35195,6635,1,8,3,57,2,3.65,5.0,fr,9075,132,377772,1,1,Active Shallow Crust,0.0,89.98998,0.0,01/08/6635 +0.04294,45.35195,8263,5,29,16,17,26,3.85,5.0,fr,9076,165,377796,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/29/8263 +0.04294389,45.35195,3194,6,18,1,21,41,6.25,6.744814,fr,9077,63,378084,1,1,Active Shallow Crust,360.0,89.99,0.0,06/18/3194 +3.29246,41.17751,8640,9,13,18,49,46,3.55,5.0,fr,9078,172,378240,1,1,Active Shallow Crust,0.0,89.98862,0.0,09/13/8640 +3.29246,41.17751,7005,10,17,20,52,9,3.55,5.0,fr,9079,140,378249,1,1,Active Shallow Crust,128.8964,89.99431,0.0,10/17/7005 +3.29246,41.17751,9342,8,2,8,49,6,3.65,5.0,fr,9080,186,378252,1,1,Active Shallow Crust,0.0,89.98985,0.0,08/02/9342 +3.29246,41.17751,2862,2,6,2,24,57,3.75,5.0,fr,9081,57,378264,1,1,Active Shallow Crust,0.0,89.99096,0.0,02/06/2862 +3.29246,41.17751,9801,1,29,12,48,46,3.85,5.0,fr,9082,196,378285,1,1,Active Shallow Crust,128.8961,89.99329,0.0,01/29/9801 +3.29246,41.17751,1041,2,21,23,17,59,3.95,15.0,fr,9083,20,378289,1,1,Active Shallow Crust,0.0,89.99043,0.0,02/21/1041 +3.29246,41.17751,603,7,4,17,39,19,4.05,5.0,fr,9084,12,378300,1,1,Active Shallow Crust,0.0,89.98933,0.0,07/04/0603 +3.29246,41.17751,4902,4,8,19,30,4,4.75,5.0,fr,9085,98,378384,1,1,Active Shallow Crust,0.0,89.99046,0.0,04/08/4902 +7.68719,45.74599,7480,10,15,14,44,19,3.55,5.0,fr,9086,149,378720,1,2,Active Shallow Crust,0.0,89.99297,0.0,10/15/7480 +7.68719,45.74599,9442,5,5,1,40,9,3.55,5.0,fr,9087,188,378720,1,2,Active Shallow Crust,0.0,89.99297,0.0,05/05/9442 +7.68719,45.74599,7415,12,20,20,0,4,3.55,15.0,fr,9088,148,378721,1,3,Active Shallow Crust,0.0,89.99297,0.0,12/20/7415 +7.68719,45.74599,9245,7,29,11,15,37,3.55,15.0,fr,9089,184,378721,1,3,Active Shallow Crust,0.0,89.99297,0.0,07/29/9245 +7.68719,45.74599,4285,3,11,6,57,3,3.55,15.0,fr,9090,85,378721,1,3,Active Shallow Crust,0.0,89.99297,0.0,03/11/4285 +7.68719,45.74599,5435,10,8,10,43,55,3.65,15.0,fr,9091,108,378736,1,2,Active Shallow Crust,240.0012,58.01303,0.0,10/08/5435 +7.68719,45.74599,4236,2,28,21,59,16,3.65,15.0,fr,9092,84,378736,1,2,Active Shallow Crust,240.0012,58.01303,0.0,02/28/4236 +7.68719,45.74599,1359,7,17,14,34,41,3.65,5.0,fr,9093,27,378741,1,2,Active Shallow Crust,128.9008,89.96351,0.0,07/17/1359 +7.68719,45.74599,4013,5,9,6,31,28,3.65,5.0,fr,9094,80,378741,1,2,Active Shallow Crust,128.9008,89.96351,0.0,05/09/4013 +7.68719,45.74599,4850,1,18,21,51,32,3.75,5.0,fr,9095,96,378744,1,4,Active Shallow Crust,0.0,89.98882,0.0,01/18/4850 +7.68719,45.74599,2117,1,30,7,52,59,3.75,5.0,fr,9096,42,378744,1,4,Active Shallow Crust,0.0,89.98882,0.0,01/30/2117 +7.68719,45.74599,5235,9,14,22,16,25,3.75,5.0,fr,9097,104,378744,1,4,Active Shallow Crust,0.0,89.98882,0.0,09/14/5235 +7.68719,45.74599,8045,5,24,22,44,52,3.75,5.0,fr,9098,160,378744,1,4,Active Shallow Crust,0.0,89.98882,0.0,05/24/8045 +7.68719,45.74599,7908,1,9,23,10,49,3.75,15.0,fr,9099,158,378745,1,1,Active Shallow Crust,0.0,89.98882,0.0,01/09/7908 +7.68719,45.74599,3607,7,10,11,12,16,3.85,15.0,fr,9100,72,378760,1,1,Active Shallow Crust,240.0108,57.99832,0.0,07/10/3607 +7.68719,45.74599,7424,9,24,5,58,44,3.95,15.0,fr,9101,148,378769,1,1,Active Shallow Crust,0.0,89.99112,0.0,09/24/7424 +7.68719,45.74599,5532,11,25,13,4,45,4.15,15.0,fr,9102,110,378793,1,1,Active Shallow Crust,0.0,89.98942,0.0,11/25/5532 +7.68719,45.74599,4961,1,20,4,10,45,4.55,15.0,fr,9103,99,378841,1,1,Active Shallow Crust,0.0,89.9911,0.0,01/20/4961 +7.68719,45.74599,9280,10,27,3,22,29,4.55,27.5,fr,9104,185,378842,1,1,Active Shallow Crust,0.0,89.9911,0.0,10/27/9280 +7.68719,45.74599,8160,4,2,23,16,4,4.65,15.0,fr,9105,163,378856,1,1,Active Shallow Crust,240.0103,57.99425,0.0,04/02/8160 +7.68719,45.74599,651,3,3,3,34,8,4.75,5.0,fr,9106,13,378864,1,1,Active Shallow Crust,0.0,89.9894,0.0,03/03/0651 +7.68719,45.74599,7846,5,29,8,39,15,4.95,5.0,fr,9107,156,378888,1,1,Active Shallow Crust,0.0,89.99017,0.0,05/29/7846 +7.68719,45.74599,9462,7,24,14,15,39,5.05,5.0,fr,9108,189,378900,1,1,Active Shallow Crust,0.0,89.98999,0.0,07/24/9462 +7.68719,45.74599,9927,8,5,17,19,37,5.55,5.0,fr,9109,198,378960,1,1,Active Shallow Crust,0.0,89.99014,0.0,08/05/9927 +5.3187,46.75599,1910,2,27,6,33,21,3.65,5.0,fr,9110,38,379212,1,1,Active Shallow Crust,0.0,89.98769,0.0,02/27/1910 +5.3187,46.75599,1613,7,4,19,50,12,3.75,5.0,fr,9111,32,379224,1,1,Active Shallow Crust,0.0,89.98902,0.0,07/04/1613 +5.3187,46.75599,6601,1,3,15,42,39,3.75,15.0,fr,9112,132,379225,1,2,Active Shallow Crust,0.0,89.98902,0.0,01/03/6601 +5.3187,46.75599,777,7,27,10,54,1,3.75,15.0,fr,9113,15,379225,1,2,Active Shallow Crust,0.0,89.98902,0.0,07/27/0777 +5.3187,46.75599,36,8,19,3,22,52,3.85,15.0,fr,9114,0,379237,1,1,Active Shallow Crust,0.0,89.99022,0.0,08/19/0036 +5.3187,46.75599,3316,2,10,7,39,12,3.95,5.0,fr,9115,66,379257,1,1,Active Shallow Crust,128.9001,89.99346,0.0,02/10/3316 +5.3187,46.75599,263,9,26,2,6,59,4.05,5.0,fr,9116,5,379260,1,1,Active Shallow Crust,0.0,89.98834,0.0,09/26/0263 +5.3187,46.75599,3306,1,7,20,18,20,4.05,15.0,fr,9117,66,379261,1,1,Active Shallow Crust,0.0,89.98834,0.0,01/07/3306 +5.3187,46.75599,2483,6,27,4,33,48,4.35,5.0,fr,9118,49,379296,1,1,Active Shallow Crust,0.0,89.989,0.0,06/27/2483 +5.31871,46.75599,6467,1,30,2,43,38,6.55,9.527304,fr,9119,129,379560,1,1,Active Shallow Crust,0.0,89.99004,0.0,01/30/6467 +-6.5791,47.55247,4410,3,12,19,55,21,3.85,15.0,fr,9120,88,379717,1,1,Active Shallow Crust,0.0,89.99036,0.0,03/12/4410 +2.44635,50.25793,6376,11,8,8,35,41,3.65,5.0,fr,9121,127,380181,1,1,Active Shallow Crust,128.9,89.96359,0.0,11/08/6376 +2.44635,50.25793,1063,6,29,2,39,24,3.75,27.5,fr,9122,21,380186,1,1,Active Shallow Crust,0.0,89.98976,0.0,06/29/1063 +2.44635,50.25793,9091,3,5,9,17,54,3.75,27.5,fr,9123,181,380189,1,1,Active Shallow Crust,240.009,58.01744,0.0,03/05/9091 +2.44635,50.25793,8870,8,24,16,43,52,3.85,5.0,fr,9124,177,380196,1,1,Active Shallow Crust,0.0,89.99088,0.0,08/24/8870 +2.44635,50.25793,4538,5,13,20,7,2,3.85,5.0,fr,9125,90,380205,1,1,Active Shallow Crust,128.8951,89.99429,0.0,05/13/4538 +2.44635,50.25793,8869,2,9,20,23,50,4.35,5.0,fr,9126,177,380256,1,1,Active Shallow Crust,0.0,89.98973,0.0,02/09/8869 +2.44635,50.25793,1558,4,4,10,46,58,4.65,5.0,fr,9127,31,380295,1,1,Active Shallow Crust,240.0121,57.99446,0.0,04/04/1558 +7.71153,43.8979,3692,9,2,8,41,23,3.55,5.0,fr,9128,73,380640,1,7,Active Shallow Crust,0.0,89.99274,0.0,09/02/3692 +7.71153,43.8979,674,4,5,10,37,17,3.55,5.0,fr,9129,13,380640,1,7,Active Shallow Crust,0.0,89.99274,0.0,04/05/0674 +7.71153,43.8979,9265,10,2,23,30,26,3.55,5.0,fr,9130,185,380640,1,7,Active Shallow Crust,0.0,89.99274,0.0,10/02/9265 +7.71153,43.8979,267,10,26,6,38,36,3.55,5.0,fr,9131,5,380640,1,7,Active Shallow Crust,0.0,89.99274,0.0,10/26/0267 +7.71153,43.8979,9962,8,18,0,54,38,3.55,5.0,fr,9132,199,380640,1,7,Active Shallow Crust,0.0,89.99274,0.0,08/18/9962 +7.71153,43.8979,1397,5,6,13,50,35,3.55,5.0,fr,9133,27,380640,1,7,Active Shallow Crust,0.0,89.99274,0.0,05/06/1397 +7.71153,43.8979,1789,11,26,10,16,47,3.55,5.0,fr,9134,35,380640,1,7,Active Shallow Crust,0.0,89.99274,0.0,11/26/1789 +7.71153,43.8979,154,11,11,13,23,25,3.55,15.0,fr,9135,3,380641,1,2,Active Shallow Crust,0.0,89.99274,0.0,11/11/0154 +7.71153,43.8979,1767,10,10,22,12,48,3.55,15.0,fr,9136,35,380641,1,2,Active Shallow Crust,0.0,89.99274,0.0,10/10/1767 +7.71153,43.8979,8495,1,1,17,37,30,3.55,27.5,fr,9137,169,380642,1,2,Active Shallow Crust,0.0,89.99274,0.0,01/01/8495 +7.71153,43.8979,9563,7,2,8,37,15,3.55,27.5,fr,9138,191,380642,1,2,Active Shallow Crust,0.0,89.99274,0.0,07/02/9563 +7.71153,43.8979,6868,3,21,11,22,9,3.55,5.0,fr,9139,137,380646,1,1,Active Shallow Crust,0.0,89.99265,-90.0,03/21/6868 +7.71153,43.8979,3446,10,10,13,26,55,3.55,5.0,fr,9140,68,380649,1,2,Active Shallow Crust,128.896,89.99274,0.0,10/10/3446 +7.71153,43.8979,8286,8,5,11,25,0,3.55,5.0,fr,9141,165,380649,1,2,Active Shallow Crust,128.896,89.99274,0.0,08/05/8286 +7.71153,43.8979,9127,12,26,2,40,56,3.55,15.0,fr,9142,182,380650,1,1,Active Shallow Crust,128.896,89.99274,0.0,12/26/9127 +7.71153,43.8979,9786,3,12,8,42,8,3.65,5.0,fr,9143,195,380652,1,3,Active Shallow Crust,0.0,89.98705,0.0,03/12/9786 +7.71153,43.8979,2645,1,19,15,22,58,3.65,5.0,fr,9144,52,380652,1,3,Active Shallow Crust,0.0,89.98705,0.0,01/19/2645 +7.71153,43.8979,4837,5,21,20,10,36,3.65,5.0,fr,9145,96,380652,1,3,Active Shallow Crust,0.0,89.98705,0.0,05/21/4837 +7.71153,43.8979,3920,2,25,3,58,13,3.65,15.0,fr,9146,78,380653,1,3,Active Shallow Crust,0.0,89.98705,0.0,02/25/3920 +7.71153,43.8979,1331,11,2,20,12,28,3.65,15.0,fr,9147,26,380653,1,3,Active Shallow Crust,0.0,89.98705,0.0,11/02/1331 +7.71153,43.8979,7047,4,29,12,18,1,3.65,15.0,fr,9148,140,380653,1,3,Active Shallow Crust,0.0,89.98705,0.0,04/29/7047 +7.71153,43.8979,3565,1,6,17,29,2,3.65,5.0,fr,9149,71,380655,1,1,Active Shallow Crust,240.0015,58.01199,0.0,01/06/3565 +7.71153,43.8979,2479,9,15,7,46,49,3.65,27.5,fr,9150,49,380657,1,1,Active Shallow Crust,240.0015,58.01191,0.0,09/15/2479 +7.71153,43.8979,2755,6,8,23,55,26,3.65,5.0,fr,9151,55,380658,1,2,Active Shallow Crust,0.0,89.9869,-90.0,06/08/2755 +7.71153,43.8979,5145,8,16,23,6,5,3.65,5.0,fr,9152,102,380658,1,2,Active Shallow Crust,0.0,89.9869,-90.0,08/16/5145 +7.71153,43.8979,8906,11,19,7,20,36,3.65,5.0,fr,9153,178,380661,1,1,Active Shallow Crust,128.9016,89.96347,0.0,11/19/8906 +7.71153,43.8979,9304,4,30,15,46,28,3.75,5.0,fr,9154,186,380664,1,3,Active Shallow Crust,0.0,89.98846,0.0,04/30/9304 +7.71153,43.8979,4585,9,18,22,27,44,3.75,5.0,fr,9155,91,380664,1,3,Active Shallow Crust,0.0,89.98846,0.0,09/18/4585 +7.71153,43.8979,2434,2,27,12,47,12,3.75,5.0,fr,9156,48,380664,1,3,Active Shallow Crust,0.0,89.98846,0.0,02/27/2434 +7.71153,43.8979,7070,9,17,1,58,15,3.75,15.0,fr,9157,141,380665,1,2,Active Shallow Crust,0.0,89.98846,0.0,09/17/7070 +7.71153,43.8979,1497,12,29,23,45,52,3.75,15.0,fr,9158,29,380665,1,2,Active Shallow Crust,0.0,89.98846,0.0,12/29/1497 +7.71153,43.8979,6036,5,1,21,38,47,3.75,5.0,fr,9159,120,380673,1,1,Active Shallow Crust,128.8965,89.96745,0.0,05/01/6036 +7.71153,43.8979,9017,6,11,20,46,0,3.85,5.0,fr,9160,180,380676,1,2,Active Shallow Crust,0.0,89.98971,0.0,06/11/9017 +7.71153,43.8979,1576,3,4,12,24,23,3.85,5.0,fr,9161,31,380676,1,2,Active Shallow Crust,0.0,89.98971,0.0,03/04/1576 +7.71153,43.8979,7342,4,28,17,22,42,3.85,27.5,fr,9162,146,380678,1,2,Active Shallow Crust,0.0,89.98971,0.0,04/28/7342 +7.71153,43.8979,3790,6,6,18,31,27,3.85,27.5,fr,9163,75,380678,1,2,Active Shallow Crust,0.0,89.98971,0.0,06/06/3790 +7.71153,43.8979,532,7,7,3,47,10,3.85,5.0,fr,9164,10,380679,1,1,Active Shallow Crust,240.0112,57.998,0.0,07/07/0532 +7.71153,43.8979,9134,1,29,3,12,22,3.95,5.0,fr,9165,182,380688,1,3,Active Shallow Crust,0.0,89.99083,0.0,01/29/9134 +7.71153,43.8979,3875,7,8,20,57,29,3.95,5.0,fr,9166,77,380688,1,3,Active Shallow Crust,0.0,89.99083,0.0,07/08/3875 +7.71153,43.8979,64,1,24,1,11,46,3.95,5.0,fr,9167,1,380688,1,3,Active Shallow Crust,0.0,89.99083,0.0,01/24/0064 +7.71153,43.8979,1124,5,10,8,58,14,3.95,15.0,fr,9168,22,380695,1,1,Active Shallow Crust,0.0,89.99072,-90.0,05/10/1124 +7.71153,43.8979,4881,6,30,8,52,22,3.95,5.0,fr,9169,97,380697,1,2,Active Shallow Crust,128.9017,89.99313,0.0,06/30/4881 +7.71153,43.8979,3332,2,17,20,57,53,3.95,5.0,fr,9170,66,380697,1,2,Active Shallow Crust,128.9017,89.99313,0.0,02/17/3332 +7.71153,43.8979,9211,10,12,3,37,55,4.05,5.0,fr,9171,184,380700,1,2,Active Shallow Crust,0.0,89.99183,0.0,10/12/9211 +7.71153,43.8979,3905,9,8,15,14,13,4.05,5.0,fr,9172,78,380700,1,2,Active Shallow Crust,0.0,89.99183,0.0,09/08/3905 +7.71153,43.8979,4765,10,12,7,15,16,4.05,15.0,fr,9173,95,380701,1,1,Active Shallow Crust,0.0,89.99183,0.0,10/12/4765 +7.71153,43.8979,6568,6,26,6,42,57,4.05,27.5,fr,9174,131,380702,1,1,Active Shallow Crust,0.0,89.99183,0.0,06/26/6568 +7.71153,43.8979,1499,7,17,12,54,45,4.05,15.0,fr,9175,29,380704,1,1,Active Shallow Crust,240.006,58.00517,0.0,07/17/1499 +7.71153,43.8979,7152,10,3,4,44,38,4.05,15.0,fr,9176,143,380710,1,1,Active Shallow Crust,128.8912,89.99387,0.0,10/03/7152 +7.71153,43.8979,2025,8,14,7,50,14,4.15,5.0,fr,9177,40,380712,1,2,Active Shallow Crust,0.0,89.98907,0.0,08/14/2025 +7.71153,43.8979,4735,11,12,20,31,9,4.15,5.0,fr,9178,94,380712,1,2,Active Shallow Crust,0.0,89.98907,0.0,11/12/4735 +7.71153,43.8979,9387,10,5,1,36,31,4.15,5.0,fr,9179,187,380715,1,3,Active Shallow Crust,240.0079,57.99716,0.0,10/05/9387 +7.71153,43.8979,1318,1,13,15,8,58,4.15,5.0,fr,9180,26,380715,1,3,Active Shallow Crust,240.0079,57.99716,0.0,01/13/1318 +7.71153,43.8979,2741,8,11,21,32,22,4.15,5.0,fr,9181,54,380715,1,3,Active Shallow Crust,240.0079,57.99716,0.0,08/11/2741 +7.71153,43.8979,3037,4,16,17,53,37,4.15,5.0,fr,9182,60,380718,1,2,Active Shallow Crust,0.0,89.98895,-90.0,04/16/3037 +7.71153,43.8979,1592,10,26,9,23,42,4.15,5.0,fr,9183,31,380718,1,2,Active Shallow Crust,0.0,89.98895,-90.0,10/26/1592 +7.71153,43.8979,8373,8,10,8,3,11,4.15,15.0,fr,9184,167,380722,1,2,Active Shallow Crust,128.8974,89.99454,0.0,08/10/8373 +7.71153,43.8979,4678,6,30,14,0,8,4.15,15.0,fr,9185,93,380722,1,2,Active Shallow Crust,128.8974,89.99454,0.0,06/30/4678 +7.71153,43.8979,6810,11,28,22,31,43,4.25,5.0,fr,9186,136,380724,1,1,Active Shallow Crust,0.0,89.99026,0.0,11/28/6810 +7.71153,43.8979,971,9,24,2,0,59,4.25,15.0,fr,9187,19,380728,1,1,Active Shallow Crust,240.007,57.99403,0.0,09/24/0971 +7.71153,43.8979,7445,11,8,14,50,26,4.25,5.0,fr,9188,148,380730,1,1,Active Shallow Crust,0.0,89.99015,-90.0,11/08/7445 +7.71153,43.8979,6572,4,6,12,9,20,4.35,5.0,fr,9189,131,380736,1,1,Active Shallow Crust,0.0,89.99132,0.0,04/06/6572 +7.71153,43.8979,9689,2,20,23,45,43,4.45,5.0,fr,9190,193,380751,1,1,Active Shallow Crust,240.0048,57.99442,0.0,02/20/9689 +7.71153,43.8979,5678,2,20,0,20,52,4.55,5.0,fr,9191,113,380760,1,1,Active Shallow Crust,0.0,89.99081,0.0,02/20/5678 +7.71153,43.8979,6383,5,24,14,14,45,4.55,27.5,fr,9192,127,380762,1,1,Active Shallow Crust,0.0,89.99081,0.0,05/24/6383 +7.71153,43.8979,634,10,27,8,15,24,4.65,5.0,fr,9193,12,380772,1,1,Active Shallow Crust,0.0,89.98976,0.0,10/27/0634 +7.71153,43.8979,9285,9,3,6,44,9,4.65,15.0,fr,9194,185,380773,1,1,Active Shallow Crust,0.0,89.98976,0.0,09/03/9285 +7.71153,43.8979,1648,12,24,17,51,13,4.85,5.0,fr,9195,32,380796,1,1,Active Shallow Crust,0.0,89.99024,0.0,12/24/1648 +7.71153,43.8979,3567,3,20,7,8,12,5.25,5.0,fr,9196,71,380847,1,1,Active Shallow Crust,240.019,57.99989,0.0,03/20/3567 +7.71153,43.8979,8100,8,10,14,3,46,5.55,5.0,fr,9197,161,380880,1,1,Active Shallow Crust,0.0,89.98982,0.0,08/10/8100 +5.55142,42.56887,955,4,25,13,18,20,3.55,5.0,fr,9198,19,381120,1,1,Active Shallow Crust,0.0,89.99258,0.0,04/25/0955 +-2.77374,42.72923,3404,6,28,21,27,47,3.55,5.0,fr,9199,68,381603,1,1,Active Shallow Crust,240.012,57.99804,0.0,06/28/3404 +-2.77374,42.72923,4111,10,18,5,25,43,3.65,5.0,fr,9200,82,381612,1,2,Active Shallow Crust,0.0,89.9901,0.0,10/18/4111 +-2.77374,42.72923,4668,6,10,13,55,53,3.65,5.0,fr,9201,93,381612,1,2,Active Shallow Crust,0.0,89.9901,0.0,06/10/4668 +-2.77374,42.72923,1624,3,13,3,24,2,3.65,15.0,fr,9202,32,381616,1,1,Active Shallow Crust,240.0004,58.01294,0.0,03/13/1624 +-2.77374,42.72923,8968,5,14,20,44,14,3.75,5.0,fr,9203,179,381627,1,1,Active Shallow Crust,240.008,58.01715,0.0,05/14/8968 +-2.77374,42.72923,8076,12,1,15,47,5,4.05,5.0,fr,9204,161,381660,1,1,Active Shallow Crust,0.0,89.98959,0.0,12/01/8076 +-2.77374,42.72923,9481,3,20,13,44,3,4.35,5.0,fr,9205,189,381696,1,1,Active Shallow Crust,0.0,89.98968,0.0,03/20/9481 +-2.77374,42.72923,737,11,15,22,43,14,4.45,15.0,fr,9206,14,381709,1,1,Active Shallow Crust,0.0,89.98949,0.0,11/15/0737 +-2.77374,42.72923,325,11,25,16,45,7,4.75,27.5,fr,9207,6,381749,1,1,Active Shallow Crust,240.0062,58.00429,0.0,11/25/0325 +-2.77374,42.72923,6489,1,12,15,40,15,4.75,5.0,fr,9208,129,381750,1,1,Active Shallow Crust,0.0,89.98965,-90.0,01/12/6489 +-2.77374,42.72923,683,7,16,1,26,32,4.85,5.0,fr,9209,13,381756,1,1,Active Shallow Crust,0.0,89.99005,0.0,07/16/0683 +1.44689,41.82793,4815,4,7,0,38,10,3.55,27.5,fr,9210,96,382082,1,1,Active Shallow Crust,0.0,89.99061,0.0,04/07/4815 +1.44689,41.82793,5805,7,14,14,19,15,3.55,5.0,fr,9211,116,382089,1,1,Active Shallow Crust,128.8967,89.99342,0.0,07/14/5805 +1.44689,41.82793,3480,3,9,8,30,18,3.75,5.0,fr,9212,69,382104,1,1,Active Shallow Crust,0.0,89.98956,0.0,03/09/3480 +1.44689,41.82793,3933,12,9,12,11,18,3.85,15.0,fr,9213,78,382117,1,1,Active Shallow Crust,0.0,89.98936,0.0,12/09/3933 +1.44689,41.82793,6201,11,10,16,24,47,4.05,5.0,fr,9214,124,382140,1,1,Active Shallow Crust,0.0,89.99049,0.0,11/10/6201 +1.44689,41.82793,4769,5,31,2,33,2,4.15,5.0,fr,9215,95,382152,1,1,Active Shallow Crust,0.0,89.98965,0.0,05/31/4769 +1.44689,41.82793,7094,5,9,5,53,12,4.65,27.5,fr,9216,141,382220,1,1,Active Shallow Crust,0.0,89.98982,-90.0,05/09/7094 +1.44689,41.82793,9733,2,25,21,25,40,4.75,15.0,fr,9217,194,382225,1,1,Active Shallow Crust,0.0,89.99009,0.0,02/25/9733 +1.44689,41.82793,6470,11,30,8,42,6,5.25,5.0,fr,9218,129,382284,1,1,Active Shallow Crust,0.0,89.98991,0.0,11/30/6470 +1.44689,41.82793,635,10,16,8,48,57,5.45,5.0,fr,9219,12,382308,1,1,Active Shallow Crust,0.0,89.99009,0.0,10/16/0635 +5.32353,48.03784,7884,12,23,19,34,4,3.65,5.0,fr,9220,157,382572,1,1,Active Shallow Crust,0.0,89.98798,0.0,12/23/7884 +5.32353,48.03784,5688,2,8,16,54,6,3.65,5.0,fr,9221,113,382575,1,1,Active Shallow Crust,240.0014,58.01357,0.0,02/08/5688 +5.32353,48.03784,2834,4,28,8,39,41,3.65,15.0,fr,9222,56,382579,1,1,Active Shallow Crust,0.0,89.98784,-90.0,04/28/2834 +5.32353,48.03784,42,4,2,1,38,48,3.75,5.0,fr,9223,0,382584,1,1,Active Shallow Crust,0.0,89.98929,0.0,04/02/0042 +5.32353,48.03784,6848,4,25,14,47,14,3.75,15.0,fr,9224,136,382585,1,1,Active Shallow Crust,0.0,89.98929,0.0,04/25/6848 +5.32353,48.03784,9755,6,18,9,57,27,3.75,27.5,fr,9225,195,382592,1,1,Active Shallow Crust,0.0,89.98917,-90.0,06/18/9755 +5.32353,48.03784,7742,2,24,9,44,14,4.15,5.0,fr,9226,154,382632,1,2,Active Shallow Crust,0.0,89.98986,0.0,02/24/7742 +5.32353,48.03784,9130,6,18,3,27,58,4.15,5.0,fr,9227,182,382632,1,2,Active Shallow Crust,0.0,89.98986,0.0,06/18/9130 +5.32353,48.03784,7917,7,27,6,36,0,4.25,15.0,fr,9228,158,382648,1,1,Active Shallow Crust,240.0079,57.99445,0.0,07/27/7917 +5.32353,48.03784,6622,11,12,1,25,18,4.45,5.0,fr,9229,132,382674,1,1,Active Shallow Crust,0.0,89.99032,-90.0,11/12/6622 +7.65235,46.00369,3764,10,24,8,26,30,3.55,5.0,fr,9230,75,383040,1,5,Active Shallow Crust,0.0,89.993,0.0,10/24/3764 +7.65235,46.00369,3312,3,3,4,33,58,3.55,5.0,fr,9231,66,383040,1,5,Active Shallow Crust,0.0,89.993,0.0,03/03/3312 +7.65235,46.00369,8465,11,2,9,20,35,3.55,5.0,fr,9232,169,383040,1,5,Active Shallow Crust,0.0,89.993,0.0,11/02/8465 +7.65235,46.00369,8877,12,6,8,6,32,3.55,5.0,fr,9233,177,383040,1,5,Active Shallow Crust,0.0,89.993,0.0,12/06/8877 +7.65235,46.00369,8290,8,6,7,31,44,3.55,5.0,fr,9234,165,383040,1,5,Active Shallow Crust,0.0,89.993,0.0,08/06/8290 +7.65235,46.00369,6875,2,17,2,5,12,3.55,15.0,fr,9235,137,383041,1,2,Active Shallow Crust,0.0,89.993,0.0,02/17/6875 +7.65235,46.00369,1340,11,16,18,48,12,3.55,15.0,fr,9236,26,383041,1,2,Active Shallow Crust,0.0,89.993,0.0,11/16/1340 +7.65235,46.00369,37,8,23,17,56,46,3.55,15.0,fr,9237,0,383047,1,1,Active Shallow Crust,0.0,89.99291,-90.0,08/23/0037 +7.65235,46.00369,3510,11,28,13,21,8,3.55,15.0,fr,9238,70,383050,1,1,Active Shallow Crust,128.8954,89.9965,0.0,11/28/3510 +7.65235,46.00369,2511,5,13,10,34,37,3.55,27.5,fr,9239,50,383051,1,1,Active Shallow Crust,128.8954,89.9965,0.0,05/13/2511 +7.65235,46.00369,9106,2,12,22,2,39,3.65,5.0,fr,9240,182,383052,1,1,Active Shallow Crust,0.0,89.98752,0.0,02/12/9106 +7.65235,46.00369,8750,7,11,1,47,7,3.65,15.0,fr,9241,174,383053,1,1,Active Shallow Crust,0.0,89.98752,0.0,07/11/8750 +7.65235,46.00369,1227,2,15,20,21,28,3.65,27.5,fr,9242,24,383054,1,1,Active Shallow Crust,0.0,89.98752,0.0,02/15/1227 +7.65235,46.00369,562,6,28,1,15,48,3.65,15.0,fr,9243,11,383062,1,1,Active Shallow Crust,128.9009,89.96352,0.0,06/28/0562 +7.65235,46.00369,5448,10,17,14,38,5,3.75,15.0,fr,9244,108,383065,1,2,Active Shallow Crust,0.0,89.98887,0.0,10/17/5448 +7.65235,46.00369,2375,3,20,23,19,20,3.75,15.0,fr,9245,47,383065,1,2,Active Shallow Crust,0.0,89.98887,0.0,03/20/2375 +7.65235,46.00369,7159,9,29,17,12,9,3.75,5.0,fr,9246,143,383070,1,1,Active Shallow Crust,0.0,89.98875,-90.0,09/29/7159 +7.65235,46.00369,6103,3,22,15,38,39,3.85,15.0,fr,9247,122,383077,1,2,Active Shallow Crust,0.0,89.99008,0.0,03/22/6103 +7.65235,46.00369,3248,11,24,1,2,21,3.85,15.0,fr,9248,64,383077,1,2,Active Shallow Crust,0.0,89.99008,0.0,11/24/3248 +7.65235,46.00369,7914,12,27,12,50,36,3.85,5.0,fr,9249,158,383079,1,1,Active Shallow Crust,240.0113,57.99762,0.0,12/27/7914 +7.65235,46.00369,9529,12,27,19,44,50,3.95,5.0,fr,9250,190,383088,1,1,Active Shallow Crust,0.0,89.99116,0.0,12/27/9529 +7.65235,46.00369,7066,3,8,6,19,7,3.95,5.0,fr,9251,141,383091,1,1,Active Shallow Crust,240.0191,58.00484,0.0,03/08/7066 +7.65235,46.00369,919,5,26,8,27,5,4.05,5.0,fr,9252,18,383103,1,1,Active Shallow Crust,240.0055,58.00586,0.0,05/26/0919 +7.65235,46.00369,5233,7,7,18,49,47,4.15,5.0,fr,9253,104,383112,1,1,Active Shallow Crust,0.0,89.98947,0.0,07/07/5233 +7.65235,46.00369,5369,8,11,1,6,58,4.15,5.0,fr,9254,107,383115,1,1,Active Shallow Crust,240.0087,57.99691,0.0,08/11/5369 +7.65235,46.00369,4224,12,21,21,4,43,4.15,15.0,fr,9255,84,383119,1,1,Active Shallow Crust,0.0,89.98935,-90.0,12/21/4224 +7.65235,46.00369,6146,11,29,0,40,27,4.15,5.0,fr,9256,122,383121,1,1,Active Shallow Crust,128.8987,89.99298,0.0,11/29/6146 +7.65235,46.00369,3678,7,22,20,56,20,4.45,5.0,fr,9257,73,383148,1,2,Active Shallow Crust,0.0,89.99006,0.0,07/22/3678 +7.65235,46.00369,2550,9,8,7,48,54,4.45,5.0,fr,9258,50,383148,1,2,Active Shallow Crust,0.0,89.99006,0.0,09/08/2550 +7.65235,46.00369,4376,5,19,18,47,25,4.55,5.0,fr,9259,87,383163,1,1,Active Shallow Crust,240.0088,57.9974,0.0,05/19/4376 +7.65235,46.00369,894,10,6,20,44,19,4.65,5.0,fr,9260,17,383172,1,1,Active Shallow Crust,0.0,89.99013,0.0,10/06/0894 +7.65235,46.00369,9084,11,20,8,43,31,4.85,5.0,fr,9261,181,383196,1,2,Active Shallow Crust,0.0,89.99059,0.0,11/20/9084 +7.65235,46.00369,7788,3,29,0,9,48,4.85,5.0,fr,9262,155,383196,1,2,Active Shallow Crust,0.0,89.99059,0.0,03/29/7788 +7.65235,46.00369,8744,6,19,16,17,31,4.85,27.5,fr,9263,174,383198,1,1,Active Shallow Crust,0.0,89.99059,0.0,06/19/8744 +7.65235,46.00369,7096,5,19,19,51,58,5.25,5.0,fr,9264,141,383253,1,1,Active Shallow Crust,128.8832,89.98715,0.0,05/19/7096 +1.71689,42.00657,8454,12,4,16,36,2,3.55,5.0,fr,9265,169,383520,1,2,Active Shallow Crust,0.0,89.99063,0.0,12/04/8454 +1.71689,42.00657,9157,4,22,23,6,32,3.55,5.0,fr,9266,183,383520,1,2,Active Shallow Crust,0.0,89.99063,0.0,04/22/9157 +1.71689,42.00657,2062,12,15,6,52,36,3.55,15.0,fr,9267,41,383521,1,1,Active Shallow Crust,0.0,89.99063,0.0,12/15/2062 +1.71689,42.00657,1481,2,27,2,28,16,3.65,15.0,fr,9268,29,383533,1,1,Active Shallow Crust,0.0,89.98998,0.0,02/27/1481 +1.71689,42.00657,801,7,17,15,32,11,3.75,5.0,fr,9269,16,383544,1,1,Active Shallow Crust,0.0,89.98959,0.0,07/17/0801 +1.71689,42.00657,5023,5,18,20,19,47,3.75,15.0,fr,9270,100,383548,1,1,Active Shallow Crust,240.0079,58.01743,0.0,05/18/5023 +1.71689,42.00657,7943,4,29,1,20,15,4.25,15.0,fr,9271,158,383605,1,1,Active Shallow Crust,0.0,89.98996,0.0,04/29/7943 +1.71689,42.00657,9488,12,20,4,46,46,5.95,15.0,fr,9272,189,383809,1,1,Active Shallow Crust,0.0,89.98994,0.0,12/20/9488 +1.716891,42.00657,1347,8,12,4,11,53,6.05,5.357596,fr,9273,26,383820,1,1,Active Shallow Crust,0.0,89.98998,0.0,08/12/1347 +3.75171,45.10552,5446,9,10,8,33,15,3.75,5.0,fr,9274,108,384024,1,1,Active Shallow Crust,0.0,89.98869,0.0,09/10/5446 +3.75171,45.10552,1985,9,9,14,48,44,3.75,15.0,fr,9275,39,384025,1,1,Active Shallow Crust,0.0,89.98869,0.0,09/09/1985 +3.75171,45.10552,8414,3,8,20,45,10,3.75,27.5,fr,9276,168,384026,1,1,Active Shallow Crust,0.0,89.98869,0.0,03/08/8414 +3.75171,45.10552,1596,3,26,15,49,7,3.75,5.0,fr,9277,31,384030,1,1,Active Shallow Crust,0.0,89.99142,-90.0,03/26/1596 +3.75171,45.10552,672,5,8,17,47,51,3.85,5.0,fr,9278,13,384036,1,1,Active Shallow Crust,0.0,89.98992,0.0,05/08/0672 +3.75171,45.10552,1205,5,11,18,51,17,3.95,15.0,fr,9279,24,384049,1,1,Active Shallow Crust,0.0,89.99102,0.0,05/11/1205 +3.75171,45.10552,1930,10,23,5,15,57,4.05,5.0,fr,9280,38,384060,1,1,Active Shallow Crust,0.0,89.98999,0.0,10/23/1930 +3.75171,45.10552,5210,2,12,16,57,53,4.05,15.0,fr,9281,104,384061,1,1,Active Shallow Crust,0.0,89.98999,0.0,02/12/5210 +3.75171,45.10552,5549,1,22,21,34,10,4.05,15.0,fr,9282,110,384067,1,1,Active Shallow Crust,0.0,89.98988,-90.0,01/22/5549 +3.75171,45.10552,9723,8,30,20,45,23,4.15,5.0,fr,9283,194,384072,1,1,Active Shallow Crust,0.0,89.9893,0.0,08/30/9723 +3.75171,45.10552,6009,3,30,13,27,50,4.35,15.0,fr,9284,120,384097,1,1,Active Shallow Crust,0.0,89.99008,0.0,03/30/6009 +3.75171,45.10552,3401,1,23,15,39,48,4.65,15.0,fr,9285,68,384133,1,1,Active Shallow Crust,0.0,89.98997,0.0,01/23/3401 +3.75171,45.10552,6469,1,6,1,31,27,4.75,5.0,fr,9286,129,384153,1,1,Active Shallow Crust,128.889,89.98809,0.0,01/06/6469 +3.75171,45.10552,8455,11,3,17,35,30,5.15,5.0,fr,9287,169,384192,1,1,Active Shallow Crust,0.0,89.98985,0.0,11/03/8455 +1.71723,51.13941,9781,2,15,17,35,54,3.55,15.0,fr,9288,195,384481,1,1,Active Shallow Crust,0.0,89.99051,0.0,02/15/9781 +1.71723,51.13941,4238,6,28,2,20,32,3.65,5.0,fr,9289,84,384492,1,1,Active Shallow Crust,0.0,89.99014,0.0,06/28/4238 +1.71723,51.13941,4198,6,6,13,0,33,3.65,15.0,fr,9290,83,384493,1,1,Active Shallow Crust,0.0,89.99014,0.0,06/06/4198 +1.71723,51.13941,3540,3,28,17,29,31,3.75,5.0,fr,9291,70,384504,1,2,Active Shallow Crust,0.0,89.98995,0.0,03/28/3540 +1.71723,51.13941,1208,12,7,18,0,54,3.75,5.0,fr,9292,24,384504,1,2,Active Shallow Crust,0.0,89.98995,0.0,12/07/1208 +1.71723,51.13941,9634,4,6,2,15,45,3.85,15.0,fr,9293,192,384517,1,2,Active Shallow Crust,0.0,89.98992,0.0,04/06/9634 +1.71723,51.13941,7896,12,27,6,44,56,3.85,15.0,fr,9294,157,384517,1,2,Active Shallow Crust,0.0,89.98992,0.0,12/27/7896 +1.71723,51.13941,1815,2,2,2,57,42,4.35,15.0,fr,9295,36,384577,1,1,Active Shallow Crust,0.0,89.98992,0.0,02/02/1815 +1.71723,51.13941,9334,2,6,5,45,50,4.45,15.0,fr,9296,186,384589,1,1,Active Shallow Crust,0.0,89.9899,0.0,02/06/9334 +1.71723,51.13941,3637,7,29,11,30,37,5.05,5.0,fr,9297,72,384660,1,1,Active Shallow Crust,0.0,89.98987,0.0,07/29/3637 +7.56132,49.82602,8803,1,29,21,20,19,3.55,5.0,fr,9298,176,384960,1,2,Active Shallow Crust,0.0,89.98699,0.0,01/29/8803 +7.56132,49.82602,7919,7,2,15,21,38,3.55,5.0,fr,9299,158,384960,1,2,Active Shallow Crust,0.0,89.98699,0.0,07/02/7919 +7.56132,49.82602,8975,12,1,19,46,27,3.55,15.0,fr,9300,179,384961,1,1,Active Shallow Crust,0.0,89.98699,0.0,12/01/8975 +7.56132,49.82602,7997,12,15,4,2,48,3.55,5.0,fr,9301,159,384966,1,1,Active Shallow Crust,0.0,89.98684,-90.0,12/15/7997 +7.56132,49.82602,7689,1,10,23,35,31,3.65,5.0,fr,9302,153,384972,1,1,Active Shallow Crust,0.0,89.9884,0.0,01/10/7689 +7.56132,49.82602,3802,6,10,10,14,56,3.65,15.0,fr,9303,76,384973,1,1,Active Shallow Crust,0.0,89.9884,0.0,06/10/3802 +7.56132,49.82602,2231,3,10,12,39,36,3.65,5.0,fr,9304,44,384975,1,1,Active Shallow Crust,240.0011,58.0139,0.0,03/10/2231 +7.56132,49.82602,4630,8,5,11,36,20,3.75,5.0,fr,9305,92,384993,1,1,Active Shallow Crust,128.8953,89.96754,0.0,08/05/4630 +7.56132,49.82602,9221,6,4,23,56,38,3.95,15.0,fr,9306,184,385009,1,1,Active Shallow Crust,0.0,89.99179,0.0,06/04/9221 +7.56132,49.82602,2650,11,25,15,17,31,3.95,27.5,fr,9307,52,385010,1,1,Active Shallow Crust,0.0,89.99179,0.0,11/25/2650 +7.56132,49.82602,9704,2,15,14,53,14,3.95,5.0,fr,9308,194,385011,1,1,Active Shallow Crust,240.0198,58.00588,0.0,02/15/9704 +7.56132,49.82602,7723,8,9,6,56,25,5.05,5.0,fr,9309,154,385149,1,1,Active Shallow Crust,128.8839,89.99041,0.0,08/09/7723 +3.32413,41.58703,9148,5,16,4,45,6,3.55,5.0,fr,9310,182,385440,1,1,Active Shallow Crust,0.0,89.98869,0.0,05/16/9148 +3.32413,41.58703,2012,8,9,12,52,23,3.55,5.0,fr,9311,40,385449,1,1,Active Shallow Crust,128.8969,89.99245,0.0,08/09/2012 +3.32413,41.58703,3727,8,19,14,12,43,3.65,27.5,fr,9312,74,385454,1,1,Active Shallow Crust,0.0,89.98991,0.0,08/19/3727 +3.32413,41.58703,6195,6,14,8,20,58,3.65,5.0,fr,9313,123,385458,1,1,Active Shallow Crust,0.0,89.9898,-90.0,06/14/6195 +3.32413,41.58703,1630,2,26,16,44,34,3.95,5.0,fr,9314,32,385488,1,1,Active Shallow Crust,0.0,89.99048,0.0,02/26/1630 +3.32413,41.58703,7731,8,12,3,42,27,3.95,27.5,fr,9315,154,385490,1,1,Active Shallow Crust,0.0,89.99048,0.0,08/12/7731 +3.32413,41.58703,5071,11,12,13,20,33,4.05,15.0,fr,9316,101,385501,1,1,Active Shallow Crust,0.0,89.9894,0.0,11/12/5071 +3.32413,41.58703,9962,6,3,9,29,30,4.65,15.0,fr,9317,199,385573,1,1,Active Shallow Crust,0.0,89.99043,0.0,06/03/9962 +3.32413,41.58703,4843,6,29,22,26,31,4.75,5.0,fr,9318,96,385584,1,1,Active Shallow Crust,0.0,89.98958,0.0,06/29/4843 +1.96449,42.8476,6314,8,19,4,5,55,3.55,5.0,fr,9319,126,385920,1,2,Active Shallow Crust,0.0,89.99076,0.0,08/19/6314 +1.96449,42.8476,4869,1,11,11,29,29,3.55,5.0,fr,9320,97,385920,1,2,Active Shallow Crust,0.0,89.99076,0.0,01/11/4869 +1.96449,42.8476,9383,2,26,12,31,19,3.55,15.0,fr,9321,187,385921,1,1,Active Shallow Crust,0.0,89.99076,0.0,02/26/9383 +1.96449,42.8476,7903,12,5,3,7,57,3.55,5.0,fr,9322,158,385923,1,1,Active Shallow Crust,240.0122,57.9978,0.0,12/05/7903 +1.96449,42.8476,234,12,6,12,47,48,3.55,15.0,fr,9323,4,385930,1,1,Active Shallow Crust,128.8967,89.99353,0.0,12/06/0234 +1.96449,42.8476,2275,9,6,4,39,17,3.65,5.0,fr,9324,45,385932,1,1,Active Shallow Crust,0.0,89.99012,0.0,09/06/2275 +1.96449,42.8476,8807,11,19,0,0,17,3.65,5.0,fr,9325,176,385938,1,1,Active Shallow Crust,0.0,89.99001,-90.0,11/19/8807 +1.96449,42.8476,1307,12,14,3,19,53,3.75,15.0,fr,9326,26,385948,1,1,Active Shallow Crust,240.008,58.01731,0.0,12/14/1307 +1.96449,42.8476,6051,8,16,0,40,22,3.85,27.5,fr,9327,121,385958,1,1,Active Shallow Crust,0.0,89.98953,0.0,08/16/6051 +1.96449,42.8476,7670,12,12,17,13,24,4.05,15.0,fr,9328,153,385981,1,1,Active Shallow Crust,0.0,89.98961,0.0,12/12/7670 +1.96449,42.8476,8927,7,18,12,43,18,4.25,5.0,fr,9329,178,386004,1,2,Active Shallow Crust,0.0,89.99009,0.0,07/18/8927 +1.96449,42.8476,8429,7,22,20,53,26,4.25,5.0,fr,9330,168,386004,1,2,Active Shallow Crust,0.0,89.99009,0.0,07/22/8429 +1.96449,42.8476,122,5,13,14,4,12,4.35,15.0,fr,9331,2,386017,1,1,Active Shallow Crust,0.0,89.9897,0.0,05/13/0122 +1.96449,42.8476,6632,2,20,8,20,26,4.55,5.0,fr,9332,132,386046,1,1,Active Shallow Crust,0.0,89.98994,-90.0,02/20/6632 +1.96449,42.8476,1044,11,9,8,45,20,4.65,5.0,fr,9333,20,386052,1,1,Active Shallow Crust,0.0,89.9901,0.0,11/09/1044 +1.21285,52.40876,7751,6,18,9,13,24,3.65,5.0,fr,9334,155,386412,1,1,Active Shallow Crust,0.0,89.9904,0.0,06/18/7751 +2.57494,44.00548,8644,10,4,20,19,22,3.55,5.0,fr,9335,172,386883,1,1,Active Shallow Crust,240.0114,57.99829,0.0,10/04/8644 +2.57494,44.00548,6377,3,11,2,4,21,3.65,15.0,fr,9336,127,386893,1,1,Active Shallow Crust,0.0,89.9903,0.0,03/11/6377 +2.57494,44.00548,9182,4,27,3,49,39,3.75,5.0,fr,9337,183,386913,1,1,Active Shallow Crust,128.8974,89.96716,0.0,04/27/9182 +2.57494,44.00548,7822,10,18,4,8,21,3.85,5.0,fr,9338,156,386916,1,2,Active Shallow Crust,0.0,89.98973,0.0,10/18/7822 +2.57494,44.00548,3909,12,21,11,18,6,3.85,5.0,fr,9339,78,386916,1,2,Active Shallow Crust,0.0,89.98973,0.0,12/21/3909 +2.57494,44.00548,6810,11,3,5,29,44,3.95,5.0,fr,9340,136,386928,1,1,Active Shallow Crust,0.0,89.99084,0.0,11/03/6810 +2.57494,44.00548,7251,2,4,5,32,48,4.55,15.0,fr,9341,145,387007,1,1,Active Shallow Crust,0.0,89.98956,-90.0,02/04/7251 +2.57494,44.00548,8087,2,9,23,28,15,4.85,15.0,fr,9342,161,387043,1,1,Active Shallow Crust,0.0,89.99014,-90.0,02/09/8087 +2.57494,44.00548,2155,12,13,23,33,52,5.75,27.5,fr,9343,43,387152,1,1,Active Shallow Crust,0.0,89.99009,-90.0,12/13/2155 +2.572128,44.00898,1088,8,15,7,52,55,6.25,5.719927,fr,9344,21,387207,1,1,Active Shallow Crust,240.0671,58.00023,0.0,08/15/1088 +1.84741,49.97736,1391,8,10,18,43,7,3.85,5.0,fr,9345,27,387396,1,2,Active Shallow Crust,0.0,89.98967,0.0,08/10/1391 +1.84741,49.97736,2062,10,27,19,9,14,3.85,5.0,fr,9346,41,387396,1,2,Active Shallow Crust,0.0,89.98967,0.0,10/27/2062 +1.84741,49.97736,2837,6,21,19,20,21,3.85,15.0,fr,9347,56,387397,1,1,Active Shallow Crust,0.0,89.98967,0.0,06/21/2837 +1.84741,49.97736,8131,5,9,10,58,20,4.55,5.0,fr,9348,162,387489,1,1,Active Shallow Crust,128.8931,89.98573,0.0,05/09/8131 +1.84741,49.97736,3863,8,16,10,18,30,5.25,5.0,fr,9349,77,387564,1,1,Active Shallow Crust,0.0,89.98992,0.0,08/16/3863 +0.5617,50.31383,8437,4,16,22,53,55,3.55,15.0,fr,9350,168,387847,1,1,Active Shallow Crust,0.0,89.99023,-90.0,04/16/8437 +0.5617,50.31383,3358,11,13,14,19,34,3.75,15.0,fr,9351,67,387865,1,1,Active Shallow Crust,0.0,89.98977,0.0,11/13/3358 +0.5617,50.31383,5602,4,5,20,1,24,3.85,5.0,fr,9352,112,387876,1,1,Active Shallow Crust,0.0,89.98975,0.0,04/05/5602 +0.5617,50.31383,7860,5,10,3,35,26,4.05,15.0,fr,9353,157,387910,1,1,Active Shallow Crust,128.8899,89.99389,0.0,05/10/7860 +0.5617,50.31383,9434,1,31,12,20,9,4.25,15.0,fr,9354,188,387931,1,1,Active Shallow Crust,0.0,89.99018,-90.0,01/31/9434 +0.5617,50.31383,4570,1,25,9,37,29,4.35,5.0,fr,9355,91,387936,1,1,Active Shallow Crust,0.0,89.99007,0.0,01/25/4570 +0.5617,50.31383,4763,2,24,13,16,21,5.05,15.0,fr,9356,95,388021,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/24/4763 +2.93607,44.32563,9963,8,1,4,22,43,3.55,5.0,fr,9357,199,388806,1,1,Active Shallow Crust,0.0,89.98905,-90.0,08/01/9963 +2.93607,44.32563,2626,7,29,16,0,27,3.65,5.0,fr,9358,52,388812,1,1,Active Shallow Crust,0.0,89.99036,0.0,07/29/2626 +2.93607,44.32563,4088,10,3,19,29,42,3.65,15.0,fr,9359,81,388813,1,1,Active Shallow Crust,0.0,89.99036,0.0,10/03/4088 +2.93607,44.32563,601,9,21,6,19,35,3.75,27.5,fr,9360,12,388826,1,1,Active Shallow Crust,0.0,89.9914,0.0,09/21/0601 +2.93607,44.32563,2961,5,28,14,9,41,3.85,5.0,fr,9361,59,388836,1,1,Active Shallow Crust,0.0,89.98978,0.0,05/28/2961 +2.93607,44.32563,7762,2,3,18,35,51,3.85,27.5,fr,9362,155,388838,1,1,Active Shallow Crust,0.0,89.98978,0.0,02/03/7762 +2.93607,44.32563,9164,7,10,15,0,24,4.25,5.0,fr,9363,183,388887,1,1,Active Shallow Crust,240.007,57.99399,0.0,07/10/9164 +2.93607,44.32563,7766,8,17,6,15,40,4.55,5.0,fr,9364,155,388923,1,1,Active Shallow Crust,240.0087,57.99718,0.0,08/17/7766 +2.93607,44.32563,5276,12,30,4,56,36,4.85,5.0,fr,9365,105,388959,1,1,Active Shallow Crust,240.0163,58.0023,0.0,12/30/5276 +5.23168,46.61519,126,7,27,16,56,31,3.55,5.0,fr,9366,2,389280,1,2,Active Shallow Crust,0.0,89.99307,0.0,07/27/0126 +5.23168,46.61519,8573,7,18,3,50,29,3.55,5.0,fr,9367,171,389280,1,2,Active Shallow Crust,0.0,89.99307,0.0,07/18/8573 +5.23168,46.61519,8778,12,13,15,58,49,3.75,5.0,fr,9368,175,389307,1,1,Active Shallow Crust,240.0076,58.01795,0.0,12/13/8778 +5.23168,46.61519,8519,5,2,18,46,52,3.75,27.5,fr,9369,170,389309,1,1,Active Shallow Crust,240.0076,58.01795,0.0,05/02/8519 +5.23168,46.61519,9974,2,16,3,3,41,3.75,15.0,fr,9370,199,389311,1,1,Active Shallow Crust,0.0,89.98887,-90.0,02/16/9974 +5.23168,46.61519,670,6,4,5,0,29,3.75,5.0,fr,9371,13,389313,1,1,Active Shallow Crust,128.8958,89.96749,0.0,06/04/0670 +5.23168,46.61519,5623,4,22,13,16,33,3.95,5.0,fr,9372,112,389334,1,1,Active Shallow Crust,0.0,89.99116,-90.0,04/22/5623 +5.23168,46.61519,8370,10,18,19,18,8,3.95,5.0,fr,9373,167,389337,1,1,Active Shallow Crust,128.9011,89.99345,0.0,10/18/8370 +5.23168,46.61519,1544,2,14,12,20,1,4.05,5.0,fr,9374,30,389340,1,1,Active Shallow Crust,0.0,89.98831,0.0,02/14/1544 +5.23168,46.61519,51,12,6,13,13,16,4.05,27.5,fr,9375,1,389342,1,1,Active Shallow Crust,0.0,89.98831,0.0,12/06/0051 +5.23168,46.61519,9983,9,11,6,8,52,4.05,5.0,fr,9376,199,389346,1,1,Active Shallow Crust,0.0,89.98818,-90.0,09/11/9983 +5.23168,46.61519,1847,7,31,23,14,59,4.75,5.0,fr,9377,36,389424,1,1,Active Shallow Crust,0.0,89.98956,0.0,07/31/1847 +5.23168,46.61519,6001,6,17,2,12,17,4.85,5.0,fr,9378,120,389436,1,1,Active Shallow Crust,0.0,89.99069,0.0,06/17/6001 +-4.09937,48.3767,7478,12,8,2,8,5,3.55,5.0,fr,9379,149,389760,1,3,Active Shallow Crust,0.0,89.9933,0.0,12/08/7478 +-4.09937,48.3767,4272,5,3,17,17,10,3.55,5.0,fr,9380,85,389760,1,3,Active Shallow Crust,0.0,89.9933,0.0,05/03/4272 +-4.09937,48.3767,4820,3,24,21,44,15,3.55,5.0,fr,9381,96,389760,1,3,Active Shallow Crust,0.0,89.9933,0.0,03/24/4820 +-4.09937,48.3767,6079,12,3,21,10,19,3.55,5.0,fr,9382,121,389763,1,2,Active Shallow Crust,240.013,57.99815,0.0,12/03/6079 +-4.09937,48.3767,8238,10,17,15,57,42,3.55,5.0,fr,9383,164,389763,1,2,Active Shallow Crust,240.013,57.99815,0.0,10/17/8238 +-4.09937,48.3767,5760,10,4,0,36,41,3.55,15.0,fr,9384,115,389764,1,1,Active Shallow Crust,240.013,57.99815,0.0,10/04/5760 +-4.09937,48.3767,2161,4,19,13,57,20,3.65,5.0,fr,9385,43,389775,1,1,Active Shallow Crust,240.002,58.01299,0.0,04/19/2161 +-4.09937,48.3767,9801,3,8,17,18,25,3.75,5.0,fr,9386,196,389784,1,1,Active Shallow Crust,0.0,89.98936,0.0,03/08/9801 +-4.09937,48.3767,1281,12,17,19,5,7,3.85,5.0,fr,9387,25,389796,1,1,Active Shallow Crust,0.0,89.99052,0.0,12/17/1281 +-4.09937,48.3767,1387,11,25,15,34,42,3.85,15.0,fr,9388,27,389797,1,1,Active Shallow Crust,0.0,89.99052,0.0,11/25/1387 +-4.09937,48.3767,4783,8,27,22,15,38,3.95,5.0,fr,9389,95,389808,1,1,Active Shallow Crust,0.0,89.99155,0.0,08/27/4783 +-4.09937,48.3767,1475,3,30,18,49,54,3.95,15.0,fr,9390,29,389809,1,1,Active Shallow Crust,0.0,89.99155,0.0,03/30/1475 +-4.09937,48.3767,7211,7,25,1,41,35,3.95,27.5,fr,9391,144,389810,1,1,Active Shallow Crust,0.0,89.99155,0.0,07/25/7211 +-4.09937,48.3767,6133,7,22,8,34,56,4.05,15.0,fr,9392,122,389830,1,1,Active Shallow Crust,128.89,89.99435,0.0,07/22/6133 +-4.09937,48.3767,5828,7,5,12,1,8,4.15,5.0,fr,9393,116,389832,1,2,Active Shallow Crust,0.0,89.98993,0.0,07/05/5828 +-4.09937,48.3767,526,7,11,17,32,11,4.15,5.0,fr,9394,10,389832,1,2,Active Shallow Crust,0.0,89.98993,0.0,07/11/0526 +-4.09937,48.3767,3488,2,12,19,47,49,4.35,15.0,fr,9395,69,389857,1,1,Active Shallow Crust,0.0,89.98933,0.0,02/12/3488 +-4.09937,48.3767,258,10,21,1,47,4,4.45,27.5,fr,9396,5,389870,1,1,Active Shallow Crust,0.0,89.99049,0.0,10/21/0258 +-4.09937,48.3767,8666,3,15,6,29,28,4.65,15.0,fr,9397,173,389899,1,1,Active Shallow Crust,0.0,89.99045,-90.0,03/15/8666 +-4.09937,48.3767,1918,10,12,21,54,3,4.75,15.0,fr,9398,38,389905,1,1,Active Shallow Crust,0.0,89.98991,0.0,10/12/1918 +-0.97191,45.67288,6963,9,22,12,21,11,3.75,5.0,fr,9399,139,390264,1,1,Active Shallow Crust,0.0,89.9902,0.0,09/22/6963 +-0.97191,45.67288,3338,3,7,7,35,38,3.75,15.0,fr,9400,66,390265,1,1,Active Shallow Crust,0.0,89.9902,0.0,03/07/3338 +-0.97191,45.67288,2700,2,24,2,12,18,3.85,5.0,fr,9401,53,390279,1,1,Active Shallow Crust,240.0107,57.99783,0.0,02/24/2700 +-0.97191,45.67288,1708,9,3,13,50,17,4.25,5.0,fr,9402,34,390327,1,2,Active Shallow Crust,240.0073,57.99405,0.0,09/03/1708 +-0.97191,45.67288,1569,10,10,22,5,58,4.25,5.0,fr,9403,31,390327,1,2,Active Shallow Crust,240.0073,57.99405,0.0,10/10/1569 +-0.97191,45.67288,6501,9,16,7,15,57,4.45,5.0,fr,9404,130,390348,1,1,Active Shallow Crust,0.0,89.99,0.0,09/16/6501 +3.63577,46.90377,8475,4,1,0,35,56,3.55,15.0,fr,9405,169,390727,1,1,Active Shallow Crust,0.0,89.98955,-90.0,04/01/8475 +3.63577,46.90377,7665,12,21,23,31,34,3.65,5.0,fr,9406,153,390735,1,2,Active Shallow Crust,240.0014,58.01245,0.0,12/21/7665 +3.63577,46.90377,3826,9,11,10,37,58,3.65,5.0,fr,9407,76,390735,1,2,Active Shallow Crust,240.0014,58.01245,0.0,09/11/3826 +3.63577,46.90377,4601,3,17,0,24,46,3.75,5.0,fr,9408,92,390744,1,1,Active Shallow Crust,0.0,89.98905,0.0,03/17/4601 +3.63577,46.90377,5082,7,14,10,6,13,3.95,5.0,fr,9409,101,390768,1,1,Active Shallow Crust,0.0,89.98914,0.0,07/14/5082 +3.63577,46.90377,4421,7,18,5,18,36,4.25,15.0,fr,9410,88,390805,1,1,Active Shallow Crust,0.0,89.99077,0.0,07/18/4421 +3.63577,46.90377,3565,11,12,10,59,33,4.25,27.5,fr,9411,71,390806,1,1,Active Shallow Crust,0.0,89.99077,0.0,11/12/3565 +3.63577,46.90377,250,8,16,17,51,59,4.45,5.0,fr,9412,4,390828,1,1,Active Shallow Crust,0.0,89.99022,0.0,08/16/0250 +3.63577,46.90377,5253,10,8,8,56,2,4.55,5.0,fr,9413,105,390840,1,1,Active Shallow Crust,0.0,89.9902,0.0,10/08/5253 +3.63577,46.90377,2587,4,3,12,29,51,4.75,27.5,fr,9414,51,390866,1,1,Active Shallow Crust,0.0,89.98962,0.0,04/03/2587 +3.63577,46.90377,7167,3,11,9,45,46,5.15,5.0,fr,9415,143,390912,1,1,Active Shallow Crust,0.0,89.99017,0.0,03/11/7167 +3.63577,46.90377,6637,3,30,9,44,22,6.75,15.0,fr,9416,132,391105,1,1,Active Shallow Crust,360.0,89.99003,0.0,03/30/6637 +-0.75338,48.38686,6480,12,26,2,53,12,3.55,27.5,fr,9417,129,391202,1,1,Active Shallow Crust,0.0,89.98995,0.0,12/26/6480 +-0.75338,48.38686,6389,5,15,3,17,32,3.55,5.0,fr,9418,127,391206,1,1,Active Shallow Crust,0.0,89.98984,-90.0,05/15/6389 +-0.75338,48.38686,812,11,4,9,57,55,3.65,5.0,fr,9419,16,391212,1,2,Active Shallow Crust,0.0,89.9903,0.0,11/04/0812 +-0.75338,48.38686,5171,1,27,20,23,8,3.65,5.0,fr,9420,103,391212,1,2,Active Shallow Crust,0.0,89.9903,0.0,01/27/5171 +-0.75338,48.38686,6854,10,16,18,50,45,3.65,5.0,fr,9421,137,391221,1,1,Active Shallow Crust,128.9001,89.96356,0.0,10/16/6854 +-0.75338,48.38686,4084,3,22,22,2,50,3.85,5.0,fr,9422,81,391236,1,1,Active Shallow Crust,0.0,89.98992,0.0,03/22/4084 +-0.75338,48.38686,2346,6,24,17,4,38,4.25,5.0,fr,9423,46,391284,1,1,Active Shallow Crust,0.0,89.98991,0.0,06/24/2346 +-0.75338,48.38686,7250,3,31,6,24,53,4.45,5.0,fr,9424,144,391311,1,1,Active Shallow Crust,240.0058,57.99475,0.0,03/31/7250 +-0.75338,48.38686,6863,5,17,20,9,18,4.65,5.0,fr,9425,137,391341,1,1,Active Shallow Crust,128.8906,89.98697,0.0,05/17/6863 +-0.75338,48.38686,3284,9,14,1,6,18,4.75,5.0,fr,9426,65,391344,1,1,Active Shallow Crust,0.0,89.98991,0.0,09/14/3284 +-0.75338,48.38686,2293,2,2,8,46,18,5.85,15.0,fr,9427,45,391477,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/02/2293 +6.96306,51.36146,6961,11,27,7,23,40,3.55,27.5,fr,9428,139,391682,1,1,Active Shallow Crust,0.0,89.9874,0.0,11/27/6961 +6.96306,51.36146,4998,2,22,20,22,9,3.65,15.0,fr,9429,99,391693,1,1,Active Shallow Crust,0.0,89.98878,0.0,02/22/4998 +6.96306,51.36146,5199,12,15,2,23,8,3.75,5.0,fr,9430,103,391704,1,1,Active Shallow Crust,0.0,89.99,0.0,12/15/5199 +6.96306,51.36146,8583,6,24,11,30,46,3.75,15.0,fr,9431,171,391705,1,1,Active Shallow Crust,0.0,89.99,0.0,06/24/8583 +6.96306,51.36146,3345,6,28,9,55,57,3.85,5.0,fr,9432,66,391722,1,1,Active Shallow Crust,0.0,89.99098,-90.0,06/28/3345 +6.96306,51.36146,1285,11,8,13,17,25,4.15,5.0,fr,9433,25,391755,1,1,Active Shallow Crust,240.0094,57.99729,0.0,11/08/1285 +3.59998,52.33032,9308,11,13,0,13,45,3.65,5.0,fr,9434,186,392172,1,1,Active Shallow Crust,0.0,89.98901,0.0,11/13/9308 +3.59998,52.33032,3041,8,3,18,17,25,3.95,27.5,fr,9435,60,392210,1,1,Active Shallow Crust,0.0,89.99028,0.0,08/03/3041 +-1.09672,46.20544,6121,12,4,13,8,46,3.55,5.0,fr,9436,122,394560,1,3,Active Shallow Crust,0.0,89.98953,0.0,12/04/6121 +-1.09672,46.20544,9978,11,26,21,35,37,3.55,5.0,fr,9437,199,394560,1,3,Active Shallow Crust,0.0,89.98953,0.0,11/26/9978 +-1.09672,46.20544,3576,2,4,19,21,1,3.55,5.0,fr,9438,71,394560,1,3,Active Shallow Crust,0.0,89.98953,0.0,02/04/3576 +-1.09672,46.20544,1654,9,4,5,14,3,3.65,5.0,fr,9439,33,394572,1,4,Active Shallow Crust,0.0,89.99067,0.0,09/04/1654 +-1.09672,46.20544,7197,2,2,15,22,41,3.65,5.0,fr,9440,143,394572,1,4,Active Shallow Crust,0.0,89.99067,0.0,02/02/7197 +-1.09672,46.20544,4684,1,13,3,32,54,3.65,5.0,fr,9441,93,394572,1,4,Active Shallow Crust,0.0,89.99067,0.0,01/13/4684 +-1.09672,46.20544,8042,10,22,8,14,53,3.65,5.0,fr,9442,160,394572,1,4,Active Shallow Crust,0.0,89.99067,0.0,10/22/8042 +-1.09672,46.20544,6942,2,8,7,55,31,3.65,15.0,fr,9443,138,394573,1,2,Active Shallow Crust,0.0,89.99067,0.0,02/08/6942 +-1.09672,46.20544,5919,12,9,5,42,5,3.65,15.0,fr,9444,118,394573,1,2,Active Shallow Crust,0.0,89.99067,0.0,12/09/5919 +-1.09672,46.20544,1359,7,29,9,32,55,3.65,5.0,fr,9445,27,394578,1,2,Active Shallow Crust,0.0,89.99056,-90.0,07/29/1359 +-1.09672,46.20544,9242,8,1,23,57,46,3.65,5.0,fr,9446,184,394578,1,2,Active Shallow Crust,0.0,89.99056,-90.0,08/01/9242 +-1.09672,46.20544,1665,5,1,6,23,9,3.65,27.5,fr,9447,33,394583,1,1,Active Shallow Crust,128.9007,89.96352,0.0,05/01/1665 +-1.09672,46.20544,6991,6,9,10,13,21,3.75,5.0,fr,9448,139,394584,1,2,Active Shallow Crust,0.0,89.9903,0.0,06/09/6991 +-1.09672,46.20544,4459,12,11,4,14,22,3.75,5.0,fr,9449,89,394584,1,2,Active Shallow Crust,0.0,89.9903,0.0,12/11/4459 +-1.09672,46.20544,1931,1,16,13,48,22,3.75,15.0,fr,9450,38,394585,1,2,Active Shallow Crust,0.0,89.9903,0.0,01/16/1931 +-1.09672,46.20544,5370,6,29,8,1,6,3.75,15.0,fr,9451,107,394585,1,2,Active Shallow Crust,0.0,89.9903,0.0,06/29/5370 +-1.09672,46.20544,8997,12,4,19,17,16,3.75,5.0,fr,9452,179,394593,1,1,Active Shallow Crust,128.8965,89.96736,0.0,12/04/8997 +-1.09672,46.20544,7649,8,15,19,51,57,3.85,5.0,fr,9453,152,394596,1,1,Active Shallow Crust,0.0,89.99012,0.0,08/15/7649 +-1.09672,46.20544,1137,3,27,19,17,58,3.95,5.0,fr,9454,22,394608,1,3,Active Shallow Crust,0.0,89.99009,0.0,03/27/1137 +-1.09672,46.20544,381,11,7,19,21,15,3.95,5.0,fr,9455,7,394608,1,3,Active Shallow Crust,0.0,89.99009,0.0,11/07/0381 +-1.09672,46.20544,8081,1,2,23,12,31,3.95,5.0,fr,9456,161,394608,1,3,Active Shallow Crust,0.0,89.99009,0.0,01/02/8081 +-1.09672,46.20544,3661,11,10,5,6,55,3.95,15.0,fr,9457,73,394609,1,1,Active Shallow Crust,0.0,89.99009,0.0,11/10/3661 +-1.09672,46.20544,5444,4,17,6,0,38,3.95,5.0,fr,9458,108,394614,1,1,Active Shallow Crust,0.0,89.98997,-90.0,04/17/5444 +-1.09672,46.20544,1334,1,11,3,1,29,4.05,5.0,fr,9459,26,394620,1,2,Active Shallow Crust,0.0,89.99019,0.0,01/11/1334 +-1.09672,46.20544,7788,8,30,16,22,48,4.05,5.0,fr,9460,155,394620,1,2,Active Shallow Crust,0.0,89.99019,0.0,08/30/7788 +-1.09672,46.20544,5170,5,23,3,50,57,4.05,15.0,fr,9461,103,394630,1,1,Active Shallow Crust,128.8908,89.99362,0.0,05/23/5170 +-1.09672,46.20544,5955,1,22,19,28,44,4.15,27.5,fr,9462,119,394634,1,1,Active Shallow Crust,0.0,89.99038,0.0,01/22/5955 +-1.09672,46.20544,545,8,19,13,47,27,4.25,5.0,fr,9463,10,394650,1,1,Active Shallow Crust,0.0,89.98975,-90.0,08/19/0545 +-1.09672,46.20544,2129,9,10,17,36,29,4.35,5.0,fr,9464,42,394656,1,1,Active Shallow Crust,0.0,89.99027,0.0,09/10/2129 +-1.09672,46.20544,8296,10,4,7,33,4,4.35,27.5,fr,9465,165,394658,1,1,Active Shallow Crust,0.0,89.99027,0.0,10/04/8296 +-1.09672,46.20544,9793,2,13,4,44,27,4.35,5.0,fr,9466,195,394665,1,1,Active Shallow Crust,128.898,89.98277,0.0,02/13/9793 +-1.09672,46.20544,2214,9,1,13,27,54,4.45,5.0,fr,9467,44,394668,1,1,Active Shallow Crust,0.0,89.9901,0.0,09/01/2214 +-1.09672,46.20544,6280,8,7,8,18,54,4.45,27.5,fr,9468,125,394670,1,1,Active Shallow Crust,0.0,89.9901,0.0,08/07/6280 +-1.09672,46.20544,1919,7,9,20,10,33,4.45,5.0,fr,9469,38,394677,1,1,Active Shallow Crust,128.8923,89.99381,0.0,07/09/1919 +-1.09672,46.20544,2870,3,1,19,57,39,4.65,5.0,fr,9470,57,394698,1,1,Active Shallow Crust,0.0,89.99005,-90.0,03/01/2870 +-1.09672,46.20544,5699,2,18,2,21,32,4.85,5.0,fr,9471,113,394716,1,1,Active Shallow Crust,0.0,89.98985,0.0,02/18/5699 +-1.09672,46.20544,322,7,18,16,46,34,4.85,15.0,fr,9472,6,394717,1,1,Active Shallow Crust,0.0,89.98985,0.0,07/18/0322 +-1.09672,46.20544,9308,5,16,22,45,18,4.95,15.0,fr,9473,186,394729,1,1,Active Shallow Crust,0.0,89.98991,0.0,05/16/9308 +-1.09672,46.20544,6822,6,22,17,54,59,5.15,5.0,fr,9474,136,394752,1,1,Active Shallow Crust,0.0,89.99004,0.0,06/22/6822 +-1.05644,50.48976,9573,4,16,3,3,31,3.55,15.0,fr,9475,191,395050,1,1,Active Shallow Crust,128.8955,89.99358,0.0,04/16/9573 +-1.05644,50.48976,9710,2,5,23,57,46,4.15,15.0,fr,9476,194,395113,1,1,Active Shallow Crust,0.0,89.99036,0.0,02/05/9710 +-1.05644,50.48976,4112,9,14,8,44,23,4.15,5.0,fr,9477,82,395115,1,1,Active Shallow Crust,240.0093,57.99755,0.0,09/14/4112 +-5.25707,47.70819,9106,3,22,10,39,30,3.85,5.0,fr,9478,182,395556,1,1,Active Shallow Crust,0.0,89.99039,0.0,03/22/9106 +-5.25707,47.70819,7459,12,1,8,14,12,4.55,15.0,fr,9479,149,395644,1,1,Active Shallow Crust,240.0099,57.99749,0.0,12/01/7459 +-5.25707,47.70819,1239,7,6,5,1,18,4.65,5.0,fr,9480,24,395652,1,1,Active Shallow Crust,0.0,89.99044,0.0,07/06/1239 +-0.29058,51.05616,8862,8,27,17,51,32,3.75,5.0,fr,9481,177,396024,1,1,Active Shallow Crust,0.0,89.98993,0.0,08/27/8862 +-0.29058,51.05616,2214,2,6,0,28,24,4.75,5.0,fr,9482,44,396144,1,1,Active Shallow Crust,359.9999,89.99004,0.0,02/06/2214 +7.15983,48.64864,9082,6,23,3,20,1,3.55,5.0,fr,9483,181,396480,1,3,Active Shallow Crust,0.0,89.98668,0.0,06/23/9082 +7.15983,48.64864,7116,11,12,5,2,16,3.55,5.0,fr,9484,142,396480,1,3,Active Shallow Crust,0.0,89.98668,0.0,11/12/7116 +7.15983,48.64864,6337,8,18,17,3,31,3.55,5.0,fr,9485,126,396480,1,3,Active Shallow Crust,0.0,89.98668,0.0,08/18/6337 +7.15983,48.64864,2965,7,22,21,4,55,3.65,5.0,fr,9486,59,396495,1,1,Active Shallow Crust,240.0013,58.01345,0.0,07/22/2965 +7.15983,48.64864,4590,11,9,16,36,43,3.65,15.0,fr,9487,91,396496,1,1,Active Shallow Crust,240.0013,58.01345,0.0,11/09/4590 +7.15983,48.64864,3398,3,16,15,12,21,3.75,5.0,fr,9488,67,396507,1,1,Active Shallow Crust,240.0095,58.01683,0.0,03/16/3398 +7.15983,48.64864,3143,1,15,21,19,37,4.25,15.0,fr,9489,62,396574,1,1,Active Shallow Crust,128.8939,89.98103,0.0,01/15/3143 +7.15983,48.64864,3426,6,25,20,11,42,4.35,5.0,fr,9490,68,396585,1,1,Active Shallow Crust,128.8972,89.98263,0.0,06/25/3426 +-1.30582,46.18729,6824,8,2,17,54,45,3.55,5.0,fr,9491,136,396960,1,2,Active Shallow Crust,0.0,89.98952,0.0,08/02/6824 +-1.30582,46.18729,1175,6,5,11,31,29,3.55,5.0,fr,9492,23,396960,1,2,Active Shallow Crust,0.0,89.98952,0.0,06/05/1175 +-1.30582,46.18729,8200,5,29,19,31,8,3.55,15.0,fr,9493,163,396961,1,2,Active Shallow Crust,0.0,89.98952,0.0,05/29/8200 +-1.30582,46.18729,9700,11,23,8,1,34,3.55,15.0,fr,9494,193,396961,1,2,Active Shallow Crust,0.0,89.98952,0.0,11/23/9700 +-1.30582,46.18729,1327,12,21,17,15,50,3.65,5.0,fr,9495,26,396972,1,1,Active Shallow Crust,0.0,89.99067,0.0,12/21/1327 +-1.30582,46.18729,3433,8,13,4,52,45,3.65,15.0,fr,9496,68,396973,1,2,Active Shallow Crust,0.0,89.99067,0.0,08/13/3433 +-1.30582,46.18729,2745,2,19,2,2,44,3.65,15.0,fr,9497,54,396973,1,2,Active Shallow Crust,0.0,89.99067,0.0,02/19/2745 +-1.30582,46.18729,2940,12,1,1,24,46,3.65,27.5,fr,9498,58,396977,1,1,Active Shallow Crust,240.0012,58.01257,0.0,12/01/2940 +-1.30582,46.18729,6055,1,29,23,19,25,3.65,5.0,fr,9499,121,396978,1,2,Active Shallow Crust,0.0,89.99056,-90.0,01/29/6055 +-1.30582,46.18729,4724,1,16,9,2,50,3.65,5.0,fr,9500,94,396978,1,2,Active Shallow Crust,0.0,89.99056,-90.0,01/16/4724 +-1.30582,46.18729,6255,4,7,5,10,39,3.65,15.0,fr,9501,125,396979,1,1,Active Shallow Crust,0.0,89.99056,-90.0,04/07/6255 +-1.30582,46.18729,5398,6,13,12,5,42,3.65,5.0,fr,9502,107,396981,1,1,Active Shallow Crust,128.9002,89.96352,0.0,06/13/5398 +-1.30582,46.18729,9979,9,24,4,45,22,3.75,5.0,fr,9503,199,396984,1,1,Active Shallow Crust,0.0,89.9903,0.0,09/24/9979 +-1.30582,46.18729,2266,1,22,6,24,37,3.75,15.0,fr,9504,45,396988,1,1,Active Shallow Crust,240.0081,58.01753,0.0,01/22/2266 +-1.30582,46.18729,8938,12,31,18,27,55,3.75,5.0,fr,9505,178,396993,1,2,Active Shallow Crust,128.8969,89.96722,0.0,12/31/8938 +-1.30582,46.18729,8688,1,16,5,3,12,3.75,5.0,fr,9506,173,396993,1,2,Active Shallow Crust,128.8969,89.96722,0.0,01/16/8688 +-1.30582,46.18729,8579,5,28,13,29,38,3.85,5.0,fr,9507,171,396996,1,1,Active Shallow Crust,0.0,89.99011,0.0,05/28/8579 +-1.30582,46.18729,3938,10,12,6,1,16,3.85,27.5,fr,9508,78,396998,1,1,Active Shallow Crust,0.0,89.99011,0.0,10/12/3938 +-1.30582,46.18729,1099,5,7,16,46,8,3.95,27.5,fr,9509,21,397010,1,1,Active Shallow Crust,0.0,89.99009,0.0,05/07/1099 +-1.30582,46.18729,7604,5,25,3,7,44,3.95,5.0,fr,9510,152,397011,1,1,Active Shallow Crust,240.0199,58.00499,0.0,05/25/7604 +-1.30582,46.18729,9760,10,14,12,43,9,4.05,5.0,fr,9511,195,397020,1,2,Active Shallow Crust,0.0,89.99019,0.0,10/14/9760 +-1.30582,46.18729,3391,6,18,6,45,21,4.05,5.0,fr,9512,67,397020,1,2,Active Shallow Crust,0.0,89.99019,0.0,06/18/3391 +-1.30582,46.18729,4368,8,21,9,58,50,4.05,15.0,fr,9513,87,397021,1,1,Active Shallow Crust,0.0,89.99019,0.0,08/21/4368 +-1.30582,46.18729,6524,3,19,21,49,30,4.35,5.0,fr,9514,130,397056,1,1,Active Shallow Crust,0.0,89.99027,0.0,03/19/6524 +-1.30582,46.18729,5990,9,28,1,13,11,4.35,15.0,fr,9515,119,397057,1,1,Active Shallow Crust,0.0,89.99027,0.0,09/28/5990 +-1.30582,46.18729,903,1,13,7,3,57,4.45,5.0,fr,9516,18,397068,1,1,Active Shallow Crust,0.0,89.99009,0.0,01/13/0903 +-1.30582,46.18729,8849,4,2,6,49,18,4.45,27.5,fr,9517,176,397073,1,1,Active Shallow Crust,240.0053,57.9947,0.0,04/02/8849 +-1.30582,46.18729,8008,9,19,17,56,37,4.55,5.0,fr,9518,160,397080,1,1,Active Shallow Crust,0.0,89.99007,0.0,09/19/8008 +-1.30582,46.18729,3330,8,4,8,44,13,4.75,27.5,fr,9519,66,397106,1,1,Active Shallow Crust,0.0,89.98991,0.0,08/04/3330 +-1.30582,46.18729,4898,10,14,21,48,50,4.95,15.0,fr,9520,97,397129,1,1,Active Shallow Crust,0.0,89.9899,0.0,10/14/4898 +-1.30582,46.18729,8633,9,2,17,32,37,5.05,5.0,fr,9521,172,397140,1,1,Active Shallow Crust,0.0,89.99007,0.0,09/02/8633 +-0.55172,47.99987,8500,1,18,4,15,33,3.65,5.0,fr,9522,169,397938,1,1,Active Shallow Crust,0.0,89.99011,-90.0,01/18/8500 +-0.55172,47.99987,837,9,24,14,38,42,3.75,5.0,fr,9523,16,397944,1,1,Active Shallow Crust,0.0,89.98995,0.0,09/24/0837 +-0.55172,47.99987,4993,3,30,0,22,45,3.85,15.0,fr,9524,99,397966,1,1,Active Shallow Crust,128.8954,89.99373,0.0,03/30/4993 +-0.55172,47.99987,2998,11,19,15,7,10,4.05,5.0,fr,9525,59,397989,1,1,Active Shallow Crust,128.8903,89.99384,0.0,11/19/2998 +-0.55172,47.99987,3120,12,19,12,18,37,4.25,5.0,fr,9526,62,398004,1,1,Active Shallow Crust,0.0,89.98983,0.0,12/19/3120 +4.03521,45.92942,6553,10,4,15,45,59,3.55,5.0,fr,9527,131,398400,1,1,Active Shallow Crust,0.0,89.99299,0.0,10/04/6553 +4.03521,45.92942,1152,9,27,1,51,11,3.65,5.0,fr,9528,23,398415,1,1,Active Shallow Crust,240.0009,58.013,0.0,09/27/1152 +4.03521,45.92942,6619,1,21,16,58,21,3.85,5.0,fr,9529,132,398436,1,1,Active Shallow Crust,0.0,89.99007,0.0,01/21/6619 +4.03521,45.92942,6727,1,19,3,18,34,4.15,5.0,fr,9530,134,398472,1,1,Active Shallow Crust,0.0,89.98946,0.0,01/19/6727 +4.03521,45.92942,1540,9,22,8,25,37,4.35,5.0,fr,9531,30,398502,1,1,Active Shallow Crust,0.0,89.9887,-90.0,09/22/1540 +4.03521,45.92942,3154,11,26,19,17,19,4.55,5.0,fr,9532,63,398520,1,1,Active Shallow Crust,0.0,89.98891,0.0,11/26/3154 +4.03521,45.92942,8046,6,3,9,53,35,5.25,5.0,fr,9533,160,398604,1,1,Active Shallow Crust,0.0,89.99009,0.0,06/03/8046 +4.03521,45.92942,1922,4,8,16,28,29,5.35,5.0,fr,9534,38,398619,1,1,Active Shallow Crust,240.0247,57.99778,0.0,04/08/1922 +2.92614,50.01358,2322,7,4,4,50,35,3.55,5.0,fr,9535,46,398880,1,1,Active Shallow Crust,0.0,89.99028,0.0,07/04/2322 +2.92614,50.01358,8439,5,21,5,13,51,3.55,15.0,fr,9536,168,398881,1,1,Active Shallow Crust,0.0,89.99028,0.0,05/21/8439 +2.92614,50.01358,4437,10,3,16,35,59,3.55,5.0,fr,9537,88,398883,1,1,Active Shallow Crust,240.0122,57.99822,0.0,10/03/4437 +2.92614,50.01358,97,7,5,7,48,1,3.65,5.0,fr,9538,1,398892,1,1,Active Shallow Crust,0.0,89.99134,0.0,07/05/0097 +2.92614,50.01358,3272,8,11,16,10,44,3.75,15.0,fr,9539,65,398905,1,1,Active Shallow Crust,0.0,89.98971,0.0,08/11/3272 +2.92614,50.01358,6308,8,29,21,55,46,3.85,5.0,fr,9540,126,398916,1,1,Active Shallow Crust,0.0,89.99082,0.0,08/29/6308 +2.92614,50.01358,6340,1,23,8,49,8,3.95,5.0,fr,9541,126,398928,1,1,Active Shallow Crust,0.0,89.98978,0.0,01/23/6340 +2.92614,50.01358,2034,8,19,18,44,37,4.05,15.0,fr,9542,40,398944,1,1,Active Shallow Crust,240.0067,58.00573,0.0,08/19/2034 +2.92614,50.01358,3620,6,19,4,8,32,4.15,5.0,fr,9543,72,398952,1,1,Active Shallow Crust,0.0,89.99026,0.0,06/19/3620 +2.92614,50.01358,975,4,17,0,30,32,4.25,5.0,fr,9544,19,398973,1,2,Active Shallow Crust,128.8934,89.98108,0.0,04/17/0975 +2.92614,50.01358,5638,12,2,16,38,39,4.25,5.0,fr,9545,112,398973,1,2,Active Shallow Crust,128.8934,89.98108,0.0,12/02/5638 +2.92614,50.01358,3201,8,20,17,38,49,4.95,5.0,fr,9546,64,399048,1,1,Active Shallow Crust,0.0,89.9903,0.0,08/20/3201 +-3.86685,43.71001,1436,3,28,5,0,30,3.55,5.0,fr,9547,28,399363,1,1,Active Shallow Crust,240.0116,57.998,0.0,03/28/1436 +-3.86685,43.71001,2614,4,9,22,33,24,3.65,27.5,fr,9548,52,399374,1,1,Active Shallow Crust,0.0,89.99026,0.0,04/09/2614 +-3.86685,43.71001,1544,6,3,13,29,56,3.65,15.0,fr,9549,30,399379,1,1,Active Shallow Crust,0.0,89.99014,-90.0,06/03/1544 +-3.86685,43.71001,4903,11,10,20,20,14,5.25,27.5,fr,9550,98,399566,1,1,Active Shallow Crust,0.0,89.99022,0.0,11/10/4903 +7.9154,44.84986,7337,7,21,0,10,8,3.55,5.0,fr,9551,146,399840,1,1,Active Shallow Crust,0.0,89.99285,0.0,07/21/7337 +7.9154,44.84986,1506,4,9,16,2,47,3.55,15.0,fr,9552,30,399841,1,1,Active Shallow Crust,0.0,89.99285,0.0,04/09/1506 +7.9154,44.84986,9249,4,20,0,39,29,3.65,5.0,fr,9553,184,399852,1,3,Active Shallow Crust,0.0,89.98726,0.0,04/20/9249 +7.9154,44.84986,3223,7,4,11,42,5,3.65,5.0,fr,9554,64,399852,1,3,Active Shallow Crust,0.0,89.98726,0.0,07/04/3223 +7.9154,44.84986,7841,6,22,2,31,9,3.65,5.0,fr,9555,156,399852,1,3,Active Shallow Crust,0.0,89.98726,0.0,06/22/7841 +7.9154,44.84986,8710,11,7,12,56,26,3.65,27.5,fr,9556,174,399863,1,1,Active Shallow Crust,128.9009,89.96349,0.0,11/07/8710 +7.9154,44.84986,954,8,30,3,3,21,3.75,5.0,fr,9557,19,399864,1,1,Active Shallow Crust,0.0,89.98864,0.0,08/30/0954 +7.9154,44.84986,143,1,12,23,21,47,3.75,15.0,fr,9558,2,399865,1,2,Active Shallow Crust,0.0,89.98864,0.0,01/12/0143 +7.9154,44.84986,2467,10,11,8,56,31,3.75,15.0,fr,9559,49,399865,1,2,Active Shallow Crust,0.0,89.98864,0.0,10/11/2467 +7.9154,44.84986,4304,11,22,15,52,44,3.75,27.5,fr,9560,86,399866,1,1,Active Shallow Crust,0.0,89.98864,0.0,11/22/4304 +7.9154,44.84986,3255,7,29,13,22,3,3.95,15.0,fr,9561,65,399889,1,1,Active Shallow Crust,0.0,89.99098,0.0,07/29/3255 +7.9154,44.84986,3427,12,29,4,49,43,4.15,27.5,fr,9562,68,399914,1,1,Active Shallow Crust,0.0,89.98925,0.0,12/29/3427 +7.9154,44.84986,6846,7,29,19,35,9,4.85,5.0,fr,9563,136,400002,1,1,Active Shallow Crust,0.0,89.99029,-90.0,07/29/6846 +7.9154,44.84986,4425,11,27,14,56,41,5.15,5.0,fr,9564,88,400032,1,1,Active Shallow Crust,0.0,89.9898,0.0,11/27/4425 +3.96009,42.08364,5169,7,15,9,57,53,3.65,5.0,fr,9565,103,400332,1,1,Active Shallow Crust,0.0,89.99,0.0,07/15/5169 +3.96009,42.08364,8954,7,20,11,14,36,3.75,5.0,fr,9566,179,400344,1,1,Active Shallow Crust,0.0,89.99108,0.0,07/20/8954 +3.96009,42.08364,157,10,14,5,49,18,3.85,15.0,fr,9567,3,400357,1,1,Active Shallow Crust,0.0,89.9894,0.0,10/14/0157 +3.96009,42.08364,7900,10,7,18,19,30,3.95,5.0,fr,9568,157,400368,1,1,Active Shallow Crust,0.0,89.99055,0.0,10/07/7900 +3.92422,50.59253,3868,8,15,13,40,28,3.55,5.0,fr,9569,77,400800,1,3,Active Shallow Crust,0.0,89.99039,0.0,08/15/3868 +3.92422,50.59253,1488,9,14,13,40,25,3.55,5.0,fr,9570,29,400800,1,3,Active Shallow Crust,0.0,89.99039,0.0,09/14/1488 +3.92422,50.59253,7948,9,28,6,46,38,3.55,5.0,fr,9571,158,400800,1,3,Active Shallow Crust,0.0,89.99039,0.0,09/28/7948 +3.92422,50.59253,5855,2,11,9,37,53,3.55,5.0,fr,9572,117,400803,1,2,Active Shallow Crust,240.0121,57.99874,0.0,02/11/5855 +3.92422,50.59253,7845,7,10,14,5,35,3.55,5.0,fr,9573,156,400803,1,2,Active Shallow Crust,240.0121,57.99874,0.0,07/10/7845 +3.92422,50.59253,4280,7,19,14,1,11,3.55,15.0,fr,9574,85,400810,1,1,Active Shallow Crust,128.8961,89.9936,0.0,07/19/4280 +3.92422,50.59253,8102,4,3,17,29,30,3.65,5.0,fr,9575,162,400812,1,2,Active Shallow Crust,0.0,89.98859,0.0,04/03/8102 +3.92422,50.59253,1113,9,12,8,43,7,3.65,5.0,fr,9576,22,400812,1,2,Active Shallow Crust,0.0,89.98859,0.0,09/12/1113 +3.92422,50.59253,3082,8,13,15,18,13,3.65,15.0,fr,9577,61,400813,1,3,Active Shallow Crust,0.0,89.98859,0.0,08/13/3082 +3.92422,50.59253,37,12,7,1,29,20,3.65,15.0,fr,9578,0,400813,1,3,Active Shallow Crust,0.0,89.98859,0.0,12/07/0037 +3.92422,50.59253,7885,1,12,20,48,38,3.65,15.0,fr,9579,157,400813,1,3,Active Shallow Crust,0.0,89.98859,0.0,01/12/7885 +3.92422,50.59253,7118,2,22,14,24,40,3.75,5.0,fr,9580,142,400824,1,3,Active Shallow Crust,0.0,89.98983,0.0,02/22/7118 +3.92422,50.59253,3004,2,2,12,47,11,3.75,5.0,fr,9581,60,400824,1,3,Active Shallow Crust,0.0,89.98983,0.0,02/02/3004 +3.92422,50.59253,3832,12,1,0,44,46,3.75,5.0,fr,9582,76,400824,1,3,Active Shallow Crust,0.0,89.98983,0.0,12/01/3832 +3.92422,50.59253,9034,12,6,1,33,52,3.85,5.0,fr,9583,180,400836,1,4,Active Shallow Crust,0.0,89.99094,0.0,12/06/9034 +3.92422,50.59253,2455,11,25,15,53,48,3.85,5.0,fr,9584,49,400836,1,4,Active Shallow Crust,0.0,89.99094,0.0,11/25/2455 +3.92422,50.59253,2601,8,19,22,28,45,3.85,5.0,fr,9585,52,400836,1,4,Active Shallow Crust,0.0,89.99094,0.0,08/19/2601 +3.92422,50.59253,414,1,25,3,3,38,3.85,5.0,fr,9586,8,400836,1,4,Active Shallow Crust,0.0,89.99094,0.0,01/25/0414 +3.92422,50.59253,6695,4,6,22,9,44,3.85,15.0,fr,9587,133,400843,1,1,Active Shallow Crust,0.0,89.99083,-90.0,04/06/6695 +3.92422,50.59253,5909,10,13,19,18,32,3.95,15.0,fr,9588,118,400849,1,1,Active Shallow Crust,0.0,89.9899,0.0,10/13/5909 +3.92422,50.59253,2498,12,4,0,31,11,3.95,5.0,fr,9589,49,400857,1,1,Active Shallow Crust,128.9,89.99294,0.0,12/04/2498 +3.92422,50.59253,7937,5,26,5,27,15,4.05,5.0,fr,9590,158,400866,1,1,Active Shallow Crust,0.0,89.9909,-90.0,05/26/7937 +3.92422,50.59253,9839,9,26,15,57,20,4.15,15.0,fr,9591,196,400873,1,1,Active Shallow Crust,0.0,89.99037,0.0,09/26/9839 +3.92422,50.59253,6634,7,26,15,57,56,4.35,5.0,fr,9592,132,400899,1,1,Active Shallow Crust,240.0093,57.99614,0.0,07/26/6634 +3.92422,50.59253,7243,8,14,5,13,44,4.45,5.0,fr,9593,144,400908,1,1,Active Shallow Crust,0.0,89.98978,0.0,08/14/7243 +3.92422,50.59253,3950,11,30,14,36,50,4.65,5.0,fr,9594,78,400932,1,1,Active Shallow Crust,0.0,89.99007,0.0,11/30/3950 +3.92422,50.59253,9750,9,16,6,58,22,4.85,27.5,fr,9595,194,400958,1,1,Active Shallow Crust,0.0,89.98997,0.0,09/16/9750 +-0.36391,41.48589,7537,7,28,6,10,14,3.85,15.0,fr,9596,150,401317,1,1,Active Shallow Crust,0.0,89.98997,0.0,07/28/7537 +1.25081,49.69149,9483,5,29,11,11,57,3.55,5.0,fr,9597,189,401760,1,1,Active Shallow Crust,0.0,89.99021,0.0,05/29/9483 +1.25081,49.69149,3329,5,2,0,40,15,3.65,5.0,fr,9598,66,401775,1,1,Active Shallow Crust,240.0017,58.01266,0.0,05/02/3329 +1.25081,49.69149,5702,10,9,1,4,16,3.75,5.0,fr,9599,114,401784,1,1,Active Shallow Crust,0.0,89.98964,0.0,10/09/5702 +1.25081,49.69149,5,11,13,16,14,29,3.95,5.0,fr,9600,0,401808,1,1,Active Shallow Crust,0.0,89.98971,0.0,11/13/0005 +1.25081,49.69149,7308,6,21,16,21,53,4.15,15.0,fr,9601,146,401833,1,1,Active Shallow Crust,0.0,89.99019,0.0,06/21/7308 +1.25081,49.69149,2035,5,14,7,4,19,4.35,5.0,fr,9602,40,401859,1,1,Active Shallow Crust,240.0093,57.9961,0.0,05/14/2035 +1.25081,49.69149,6783,12,14,3,40,0,4.75,5.0,fr,9603,135,401904,1,1,Active Shallow Crust,0.0,89.99017,0.0,12/14/6783 +5.2628,42.39691,8564,11,5,12,14,12,3.65,5.0,fr,9604,171,402252,1,1,Active Shallow Crust,0.0,89.98672,0.0,11/05/8564 +5.2628,42.39691,1639,9,2,12,54,9,4.85,5.0,fr,9605,32,402396,1,1,Active Shallow Crust,0.0,89.99,0.0,09/02/1639 +-5.39414,49.19886,4251,3,5,10,4,36,3.55,15.0,fr,9606,85,402721,1,1,Active Shallow Crust,0.0,89.98682,0.0,03/05/4251 +-5.39414,49.19886,2428,3,6,11,56,0,4.35,5.0,fr,9607,48,402816,1,1,Active Shallow Crust,0.0,89.98951,0.0,03/06/2428 +1.61092,52.6752,9113,7,2,23,11,13,3.55,5.0,fr,9608,182,403200,1,1,Active Shallow Crust,0.0,89.9893,0.0,07/02/9113 +1.61092,52.6752,5183,7,1,13,54,13,3.95,5.0,fr,9609,103,403248,1,1,Active Shallow Crust,0.0,89.99036,0.0,07/01/5183 +1.61092,52.6752,4258,6,16,20,17,59,3.95,5.0,fr,9610,85,403251,1,1,Active Shallow Crust,240.0208,58.0051,0.0,06/16/4258 +1.61092,52.6752,6286,3,22,0,55,9,4.45,5.0,fr,9611,125,403314,1,1,Active Shallow Crust,0.0,89.99012,-90.0,03/22/6286 +-0.98258,45.26346,7878,7,9,8,38,58,3.55,5.0,fr,9612,157,403680,1,1,Active Shallow Crust,0.0,89.99024,0.0,07/09/7878 +-0.98258,45.26346,6617,5,25,2,49,37,3.75,15.0,fr,9613,132,403705,1,1,Active Shallow Crust,0.0,89.99014,0.0,05/25/6617 +-0.98258,45.26346,8396,7,14,6,2,6,3.85,5.0,fr,9614,167,403716,1,1,Active Shallow Crust,0.0,89.98995,0.0,07/14/8396 +0.4865,44.71111,1186,2,9,14,28,58,3.55,5.0,fr,9615,23,404163,1,1,Active Shallow Crust,240.0121,57.99815,0.0,02/09/1186 +0.4865,44.71111,3649,6,29,6,23,26,3.65,5.0,fr,9616,72,404172,1,1,Active Shallow Crust,0.0,89.99002,0.0,06/29/3649 +0.4865,44.71111,6234,8,5,10,44,54,3.75,5.0,fr,9617,124,404190,1,1,Active Shallow Crust,0.0,89.98992,-90.0,08/05/6234 +0.4865,44.71111,3266,1,15,15,20,46,3.95,5.0,fr,9618,65,404208,1,2,Active Shallow Crust,0.0,89.99011,0.0,01/15/3266 +0.4865,44.71111,277,4,10,11,49,1,3.95,5.0,fr,9619,5,404208,1,2,Active Shallow Crust,0.0,89.99011,0.0,04/10/0277 +0.4865,44.71111,5669,11,15,19,41,3,3.95,15.0,fr,9620,113,404215,1,1,Active Shallow Crust,0.0,89.99,-90.0,11/15/5669 +6.96795,49.88202,2123,1,17,23,38,39,3.65,15.0,fr,9621,42,404653,1,1,Active Shallow Crust,0.0,89.98842,0.0,01/17/2123 +6.96795,49.88202,8048,1,3,7,17,56,3.75,5.0,fr,9622,160,404664,1,1,Active Shallow Crust,0.0,89.98968,0.0,01/03/8048 +6.96795,49.88202,6367,10,8,12,50,16,3.75,15.0,fr,9623,127,404665,1,1,Active Shallow Crust,0.0,89.98968,0.0,10/08/6367 +6.96795,49.88202,7932,12,25,1,32,59,3.75,27.5,fr,9624,158,404675,1,1,Active Shallow Crust,128.8953,89.96755,0.0,12/25/7932 +2.88366,40.0316,3594,11,4,7,8,19,3.75,27.5,fr,9625,71,405149,1,1,Active Shallow Crust,240.007,58.01746,0.0,11/04/3594 +2.88366,40.0316,8461,8,11,14,52,6,4.15,5.0,fr,9626,169,405192,1,1,Active Shallow Crust,0.0,89.99033,0.0,08/11/8461 +2.88366,40.0316,9387,7,28,11,24,53,4.25,5.0,fr,9627,187,405213,1,1,Active Shallow Crust,128.8951,89.981,0.0,07/28/9387 +6.48675,46.38797,8899,12,19,4,15,58,3.55,5.0,fr,9628,177,405600,1,3,Active Shallow Crust,0.0,89.99304,0.0,12/19/8899 +6.48675,46.38797,4958,10,14,1,48,50,3.55,5.0,fr,9629,99,405600,1,3,Active Shallow Crust,0.0,89.99304,0.0,10/14/4958 +6.48675,46.38797,3513,1,18,11,25,5,3.55,5.0,fr,9630,70,405600,1,3,Active Shallow Crust,0.0,89.99304,0.0,01/18/3513 +6.48675,46.38797,1159,11,21,5,17,7,3.55,27.5,fr,9631,23,405602,1,3,Active Shallow Crust,0.0,89.99304,0.0,11/21/1159 +6.48675,46.38797,7009,2,2,7,40,9,3.55,27.5,fr,9632,140,405602,1,3,Active Shallow Crust,0.0,89.99304,0.0,02/02/7009 +6.48675,46.38797,6798,4,27,3,45,24,3.55,27.5,fr,9633,135,405602,1,3,Active Shallow Crust,0.0,89.99304,0.0,04/27/6798 +6.48675,46.38797,9119,1,9,9,55,3,3.55,5.0,fr,9634,182,405603,1,1,Active Shallow Crust,240.0121,57.99836,0.0,01/09/9119 +6.48675,46.38797,4944,3,10,15,48,15,3.55,5.0,fr,9635,98,405609,1,1,Active Shallow Crust,128.8962,89.99304,0.0,03/10/4944 +6.48675,46.38797,2151,8,27,7,58,7,3.55,15.0,fr,9636,43,405610,1,1,Active Shallow Crust,128.8962,89.99304,0.0,08/27/2151 +6.48675,46.38797,1135,8,25,15,41,48,3.65,5.0,fr,9637,22,405612,1,2,Active Shallow Crust,0.0,89.9876,0.0,08/25/1135 +6.48675,46.38797,2799,8,13,22,9,49,3.65,5.0,fr,9638,55,405612,1,2,Active Shallow Crust,0.0,89.9876,0.0,08/13/2799 +6.48675,46.38797,4546,6,19,6,21,36,3.65,15.0,fr,9639,90,405613,1,3,Active Shallow Crust,0.0,89.9876,0.0,06/19/4546 +6.48675,46.38797,1309,6,4,23,52,23,3.65,15.0,fr,9640,26,405613,1,3,Active Shallow Crust,0.0,89.9876,0.0,06/04/1309 +6.48675,46.38797,6020,5,28,11,25,55,3.65,15.0,fr,9641,120,405613,1,3,Active Shallow Crust,0.0,89.9876,0.0,05/28/6020 +6.48675,46.38797,3363,9,16,6,50,17,3.65,27.5,fr,9642,67,405614,1,1,Active Shallow Crust,0.0,89.9876,0.0,09/16/3363 +6.48675,46.38797,9159,4,12,16,28,3,3.65,5.0,fr,9643,183,405621,1,1,Active Shallow Crust,128.9014,89.96287,0.0,04/12/9159 +6.48675,46.38797,7769,10,25,14,19,22,3.75,5.0,fr,9644,155,405624,1,1,Active Shallow Crust,0.0,89.98895,0.0,10/25/7769 +6.48675,46.38797,9953,12,16,13,30,22,3.75,27.5,fr,9645,199,405626,1,1,Active Shallow Crust,0.0,89.98895,0.0,12/16/9953 +6.48675,46.38797,7275,12,31,4,41,4,3.85,5.0,fr,9646,145,405636,1,2,Active Shallow Crust,0.0,89.99015,0.0,12/31/7275 +6.48675,46.38797,6561,12,17,1,24,54,3.85,5.0,fr,9647,131,405636,1,2,Active Shallow Crust,0.0,89.99015,0.0,12/17/6561 +6.48675,46.38797,4263,7,16,4,24,48,3.95,5.0,fr,9648,85,405648,1,1,Active Shallow Crust,0.0,89.99122,0.0,07/16/4263 +6.48675,46.38797,6748,1,7,4,21,11,3.95,15.0,fr,9649,134,405649,1,1,Active Shallow Crust,0.0,89.99122,0.0,01/07/6748 +6.48675,46.38797,4161,9,2,5,12,0,3.95,15.0,fr,9650,83,405652,1,1,Active Shallow Crust,240.0197,58.00504,0.0,09/02/4161 +6.48675,46.38797,7380,7,9,13,56,5,3.95,15.0,fr,9651,147,405655,1,1,Active Shallow Crust,0.0,89.99112,-90.0,07/09/7380 +6.48675,46.38797,1505,10,27,21,11,23,4.05,5.0,fr,9652,30,405663,1,1,Active Shallow Crust,240.0057,58.00594,0.0,10/27/1505 +6.48675,46.38797,7749,12,12,5,11,14,4.15,5.0,fr,9653,154,405672,1,2,Active Shallow Crust,0.0,89.98954,0.0,12/12/7749 +6.48675,46.38797,6532,9,13,12,59,44,4.15,5.0,fr,9654,130,405672,1,2,Active Shallow Crust,0.0,89.98954,0.0,09/13/6532 +6.48675,46.38797,4249,7,14,6,23,12,4.15,5.0,fr,9655,84,405681,1,1,Active Shallow Crust,128.8967,89.99477,0.0,07/14/4249 +6.48675,46.38797,1883,2,12,17,39,11,4.25,5.0,fr,9656,37,405684,1,1,Active Shallow Crust,0.0,89.99068,0.0,02/12/1883 +6.48675,46.38797,5882,6,3,3,3,59,4.25,5.0,fr,9657,117,405687,1,1,Active Shallow Crust,240.0079,57.99389,0.0,06/03/5882 +6.48675,46.38797,1123,10,22,4,20,27,4.35,5.0,fr,9658,22,405696,1,1,Active Shallow Crust,0.0,89.98892,0.0,10/22/1123 +6.48675,46.38797,2272,12,21,14,55,13,4.45,5.0,fr,9659,45,405708,1,2,Active Shallow Crust,0.0,89.99013,0.0,12/21/2272 +6.48675,46.38797,9491,11,16,22,2,37,4.45,5.0,fr,9660,189,405708,1,2,Active Shallow Crust,0.0,89.99013,0.0,11/16/9491 +6.48675,46.38797,2102,4,18,1,55,16,4.55,5.0,fr,9661,42,405726,1,1,Active Shallow Crust,0.0,89.9911,-90.0,04/18/2102 +6.48675,46.38797,9780,3,25,7,14,47,4.65,15.0,fr,9662,195,405742,1,1,Active Shallow Crust,128.8912,89.98672,0.0,03/25/9780 +6.48675,46.38797,9090,2,3,17,12,10,4.75,5.0,fr,9663,181,405750,1,1,Active Shallow Crust,0.0,89.9894,-90.0,02/03/9090 +6.48675,46.38797,980,6,22,20,38,35,4.75,5.0,fr,9664,19,405753,1,1,Active Shallow Crust,128.8888,89.98817,0.0,06/22/0980 +6.48675,46.38797,7928,8,9,1,39,27,5.35,5.0,fr,9665,158,405819,1,1,Active Shallow Crust,240.025,57.99793,0.0,08/09/7928 +6.68068,47.31588,785,6,15,1,17,52,3.55,5.0,fr,9666,15,406080,1,1,Active Shallow Crust,0.0,89.99316,0.0,06/15/0785 +6.68068,47.31588,3003,9,8,17,0,42,3.55,5.0,fr,9667,60,406083,1,1,Active Shallow Crust,240.0111,57.99847,0.0,09/08/3003 +6.68068,47.31588,6244,5,10,6,11,24,3.55,27.5,fr,9668,124,406085,1,1,Active Shallow Crust,240.0111,57.99838,0.0,05/10/6244 +6.68068,47.31588,8430,2,21,13,9,11,3.55,5.0,fr,9669,168,406086,1,1,Active Shallow Crust,0.0,89.99309,-90.0,02/21/8430 +6.68068,47.31588,9239,8,22,4,13,36,3.65,5.0,fr,9670,184,406092,1,2,Active Shallow Crust,0.0,89.98782,0.0,08/22/9239 +6.68068,47.31588,6020,9,3,8,49,48,3.65,5.0,fr,9671,120,406092,1,2,Active Shallow Crust,0.0,89.98782,0.0,09/03/6020 +6.68068,47.31588,3793,10,31,13,42,19,3.75,5.0,fr,9672,75,406113,1,1,Active Shallow Crust,128.8969,89.96751,0.0,10/31/3793 +6.68068,47.31588,7706,4,5,3,31,27,3.85,15.0,fr,9673,154,406117,1,1,Active Shallow Crust,0.0,89.99032,0.0,04/05/7706 +6.68068,47.31588,6887,6,6,0,4,56,3.85,5.0,fr,9674,137,406122,1,1,Active Shallow Crust,0.0,89.99021,-90.0,06/06/6887 +6.68068,47.31588,767,11,14,7,40,15,3.95,5.0,fr,9675,15,406128,1,1,Active Shallow Crust,0.0,89.99137,0.0,11/14/0767 +6.68068,47.31588,5915,10,19,21,55,55,4.05,5.0,fr,9676,118,406140,1,4,Active Shallow Crust,0.0,89.98846,0.0,10/19/5915 +6.68068,47.31588,4002,8,26,14,54,7,4.05,5.0,fr,9677,80,406140,1,4,Active Shallow Crust,0.0,89.98846,0.0,08/26/4002 +6.68068,47.31588,3967,9,18,18,51,8,4.05,5.0,fr,9678,79,406140,1,4,Active Shallow Crust,0.0,89.98846,0.0,09/18/3967 +6.68068,47.31588,4469,12,26,9,11,27,4.05,5.0,fr,9679,89,406140,1,4,Active Shallow Crust,0.0,89.98846,0.0,12/26/4469 +6.68068,47.31588,3610,5,25,22,47,2,4.15,15.0,fr,9680,72,406156,1,1,Active Shallow Crust,240.0094,57.9973,0.0,05/25/3610 +6.68068,47.31588,8730,12,7,16,10,44,4.15,15.0,fr,9681,174,406159,1,1,Active Shallow Crust,0.0,89.9896,-90.0,12/07/8730 +6.68068,47.31588,7137,6,4,1,34,37,4.15,5.0,fr,9682,142,406161,1,1,Active Shallow Crust,128.8964,89.99486,0.0,06/04/7137 +6.68068,47.31588,420,11,29,4,19,45,4.25,5.0,fr,9683,8,406170,1,1,Active Shallow Crust,0.0,89.99073,-90.0,11/29/0420 +6.68068,47.31588,3059,4,3,14,46,40,4.25,15.0,fr,9684,61,406171,1,1,Active Shallow Crust,0.0,89.99073,-90.0,04/03/3059 +6.68068,47.31588,3190,5,13,9,39,34,4.45,5.0,fr,9685,63,406188,1,1,Active Shallow Crust,0.0,89.9903,0.0,05/13/3190 +6.68068,47.31588,9850,7,4,17,55,38,4.45,27.5,fr,9686,196,406196,1,1,Active Shallow Crust,0.0,89.99018,-90.0,07/04/9850 +6.68068,47.31588,6451,9,9,23,5,43,4.55,5.0,fr,9687,129,406200,1,2,Active Shallow Crust,0.0,89.98919,0.0,09/09/6451 +6.68068,47.31588,3916,10,25,12,11,15,4.55,5.0,fr,9688,78,406200,1,2,Active Shallow Crust,0.0,89.98919,0.0,10/25/3916 +6.68068,47.31588,2738,11,28,20,51,4,4.55,5.0,fr,9689,54,406203,1,1,Active Shallow Crust,240.0094,57.9973,0.0,11/28/2738 +6.68068,47.31588,1070,6,6,13,34,4,5.05,5.0,fr,9690,21,406260,1,1,Active Shallow Crust,0.0,89.99027,0.0,06/06/1070 +6.68068,47.31588,2145,6,11,2,7,34,5.05,27.5,fr,9691,42,406262,1,1,Active Shallow Crust,0.0,89.99027,0.0,06/11/2145 +-4.69292,48.45352,7343,8,28,5,57,41,3.55,5.0,fr,9692,146,406560,1,2,Active Shallow Crust,0.0,89.99331,0.0,08/28/7343 +-4.69292,48.45352,8320,11,9,19,17,25,3.55,5.0,fr,9693,166,406560,1,2,Active Shallow Crust,0.0,89.99331,0.0,11/09/8320 +-4.69292,48.45352,371,4,30,22,39,8,3.55,15.0,fr,9694,7,406561,1,1,Active Shallow Crust,0.0,89.99331,0.0,04/30/0371 +-4.69292,48.45352,2940,3,9,22,52,45,3.55,15.0,fr,9695,58,406567,1,1,Active Shallow Crust,0.0,89.99323,-90.0,03/09/2940 +-4.69292,48.45352,79,7,22,20,40,29,3.65,5.0,fr,9696,1,406572,1,1,Active Shallow Crust,0.0,89.98808,0.0,07/22/0079 +-4.69292,48.45352,5883,5,21,11,15,35,3.65,27.5,fr,9697,117,406574,1,1,Active Shallow Crust,0.0,89.98808,0.0,05/21/5883 +-4.69292,48.45352,1389,2,27,4,9,26,3.75,5.0,fr,9698,27,406584,1,2,Active Shallow Crust,0.0,89.98937,0.0,02/27/1389 +-4.69292,48.45352,8739,2,19,19,14,0,3.75,5.0,fr,9699,174,406584,1,2,Active Shallow Crust,0.0,89.98937,0.0,02/19/8739 +-4.69292,48.45352,9677,11,1,8,7,58,3.75,15.0,fr,9700,193,406585,1,1,Active Shallow Crust,0.0,89.98937,0.0,11/01/9677 +-4.69292,48.45352,3222,6,4,6,14,47,3.85,5.0,fr,9701,64,406596,1,2,Active Shallow Crust,0.0,89.99053,0.0,06/04/3222 +-4.69292,48.45352,651,8,1,21,59,44,3.85,5.0,fr,9702,13,406596,1,2,Active Shallow Crust,0.0,89.99053,0.0,08/01/0651 +-4.69292,48.45352,9383,1,13,18,50,56,3.95,5.0,fr,9703,187,406608,1,1,Active Shallow Crust,0.0,89.99156,0.0,01/13/9383 +-4.69292,48.45352,5622,11,16,4,3,25,3.95,5.0,fr,9704,112,406617,1,1,Active Shallow Crust,128.9012,89.99367,0.0,11/16/5622 +-4.69292,48.45352,9825,6,12,3,43,9,4.05,5.0,fr,9705,196,406620,1,2,Active Shallow Crust,0.0,89.98872,0.0,06/12/9825 +-4.69292,48.45352,3737,12,1,20,30,3,4.05,5.0,fr,9706,74,406620,1,2,Active Shallow Crust,0.0,89.98872,0.0,12/01/3737 +-4.69292,48.45352,9128,2,15,17,59,47,4.25,15.0,fr,9707,182,406645,1,1,Active Shallow Crust,0.0,89.99104,0.0,02/15/9128 +-4.69292,48.45352,6892,2,22,4,8,3,4.75,5.0,fr,9708,137,406704,1,1,Active Shallow Crust,0.0,89.98992,0.0,02/22/6892 +-4.69292,48.45352,5800,7,27,6,37,3,6.65,15.0,fr,9709,115,406933,1,1,Active Shallow Crust,0.0,89.98999,0.0,07/27/5800 +2.21594,49.20918,1144,10,5,12,56,37,3.55,5.0,fr,9710,22,407040,1,1,Active Shallow Crust,0.0,89.99012,0.0,10/05/1144 +2.21594,49.20918,4984,1,23,15,14,8,3.85,15.0,fr,9711,99,407077,1,1,Active Shallow Crust,0.0,89.99067,0.0,01/23/4984 +2.21594,49.20918,5637,6,1,10,50,33,3.95,5.0,fr,9712,112,407097,1,1,Active Shallow Crust,128.9,89.99377,0.0,06/01/5637 +2.21594,49.20918,1726,7,17,2,55,4,4.05,5.0,fr,9713,34,407100,1,1,Active Shallow Crust,0.0,89.99074,0.0,07/17/1726 +2.21594,49.20918,6459,8,8,3,24,30,4.15,5.0,fr,9714,129,407118,1,1,Active Shallow Crust,0.0,89.98998,-90.0,08/08/6459 +4.13336,41.02819,1193,7,22,16,59,35,3.55,5.0,fr,9715,23,407529,1,1,Active Shallow Crust,128.896,89.99239,0.0,07/22/1193 +4.13336,41.02819,3179,6,8,8,0,32,3.85,5.0,fr,9716,63,407562,1,1,Active Shallow Crust,0.0,89.98911,-90.0,06/08/3179 +4.13336,41.02819,5520,9,30,18,26,12,4.25,5.0,fr,9717,110,407604,1,1,Active Shallow Crust,0.0,89.98981,0.0,09/30/5520 +6.10062,46.72852,4086,3,22,12,40,10,3.55,5.0,fr,9718,81,408000,1,1,Active Shallow Crust,0.0,89.99309,0.0,03/22/4086 +6.10062,46.72852,1003,11,22,11,25,36,3.65,5.0,fr,9719,20,408012,1,2,Active Shallow Crust,0.0,89.98768,0.0,11/22/1003 +6.10062,46.72852,1025,6,26,21,10,34,3.65,5.0,fr,9720,20,408012,1,2,Active Shallow Crust,0.0,89.98768,0.0,06/26/1025 +6.10062,46.72852,8624,4,15,16,43,39,3.65,15.0,fr,9721,172,408013,1,1,Active Shallow Crust,0.0,89.98768,0.0,04/15/8624 +6.10062,46.72852,4023,2,23,12,49,49,3.65,5.0,fr,9722,80,408015,1,1,Active Shallow Crust,240.0,58.01364,0.0,02/23/4023 +6.10062,46.72852,2543,1,12,20,43,48,3.65,15.0,fr,9723,50,408016,1,1,Active Shallow Crust,240.0,58.01364,0.0,01/12/2543 +6.10062,46.72852,2229,12,16,10,20,46,3.65,15.0,fr,9724,44,408022,1,1,Active Shallow Crust,128.9005,89.96353,0.0,12/16/2229 +6.10062,46.72852,6463,12,18,9,47,17,3.75,15.0,fr,9725,129,408034,1,1,Active Shallow Crust,128.8958,89.96749,0.0,12/18/6463 +6.10062,46.72852,4081,1,3,20,45,57,3.85,5.0,fr,9726,81,408036,1,1,Active Shallow Crust,0.0,89.99021,0.0,01/03/4081 +6.10062,46.72852,4081,11,28,4,30,54,3.85,15.0,fr,9727,81,408037,1,1,Active Shallow Crust,0.0,89.99021,0.0,11/28/4081 +6.10062,46.72852,8340,10,29,16,34,29,3.95,5.0,fr,9728,166,408048,1,1,Active Shallow Crust,0.0,89.99128,0.0,10/29/8340 +6.10062,46.72852,9487,3,4,22,32,38,3.95,15.0,fr,9729,189,408049,1,1,Active Shallow Crust,0.0,89.99128,0.0,03/04/9487 +6.10062,46.72852,6276,4,15,20,20,12,4.05,15.0,fr,9730,125,408061,1,1,Active Shallow Crust,0.0,89.98834,0.0,04/15/6276 +6.10062,46.72852,575,2,14,0,27,4,4.05,15.0,fr,9731,11,408070,1,1,Active Shallow Crust,128.8912,89.99223,0.0,02/14/0575 +6.10062,46.72852,139,12,1,15,6,41,4.35,5.0,fr,9732,2,408096,1,1,Active Shallow Crust,0.0,89.98899,0.0,12/01/0139 +6.10062,46.72852,4851,11,25,7,27,56,4.35,5.0,fr,9733,97,408102,1,1,Active Shallow Crust,0.0,89.98886,-90.0,11/25/4851 +6.10062,46.72852,6909,11,25,21,28,5,4.45,15.0,fr,9734,138,408109,1,1,Active Shallow Crust,0.0,89.99019,0.0,11/25/6909 +6.10062,46.72852,9473,11,20,22,49,47,4.55,15.0,fr,9735,189,408121,1,1,Active Shallow Crust,0.0,89.98907,0.0,11/20/9473 +6.10062,46.72852,2539,1,17,19,1,5,4.85,15.0,fr,9736,50,408157,1,1,Active Shallow Crust,0.0,89.99072,0.0,01/17/2539 +4.49968,52.37473,9522,4,17,16,10,44,5.05,5.0,fr,9737,190,408660,1,1,Active Shallow Crust,0.0,89.99014,0.0,04/17/9522 +-4.41231,49.02546,5734,7,22,7,2,2,3.75,15.0,fr,9738,114,408985,1,1,Active Shallow Crust,0.0,89.98949,0.0,07/22/5734 +-4.41231,49.02546,3347,10,18,13,9,49,3.85,15.0,fr,9739,66,408997,1,1,Active Shallow Crust,0.0,89.99064,0.0,10/18/3347 +3.41569,49.15277,2219,11,1,16,44,28,3.65,27.5,fr,9740,44,409454,1,1,Active Shallow Crust,0.0,89.99118,0.0,11/01/2219 +3.41569,49.15277,9036,6,26,8,23,56,3.75,5.0,fr,9741,180,409464,1,1,Active Shallow Crust,0.0,89.98952,0.0,06/26/9036 +3.41569,49.15277,8368,6,27,5,21,20,3.75,27.5,fr,9742,167,409469,1,1,Active Shallow Crust,240.0087,58.01758,0.0,06/27/8368 +3.41569,49.15277,7381,11,28,20,50,44,3.85,15.0,fr,9743,147,409477,1,1,Active Shallow Crust,0.0,89.99066,0.0,11/28/7381 +-1.54378,48.4633,1554,9,2,1,50,7,3.55,5.0,fr,9744,31,409920,1,3,Active Shallow Crust,0.0,89.98997,0.0,09/02/1554 +-1.54378,48.4633,4742,2,23,23,9,27,3.55,5.0,fr,9745,94,409920,1,3,Active Shallow Crust,0.0,89.98997,0.0,02/23/4742 +-1.54378,48.4633,256,4,16,18,22,48,3.55,5.0,fr,9746,5,409920,1,3,Active Shallow Crust,0.0,89.98997,0.0,04/16/0256 +-1.54378,48.4633,3280,5,14,12,44,11,3.55,15.0,fr,9747,65,409921,1,1,Active Shallow Crust,0.0,89.98997,0.0,05/14/3280 +-1.54378,48.4633,6005,1,20,9,2,41,3.65,5.0,fr,9748,120,409935,1,3,Active Shallow Crust,240.0011,58.01321,0.0,01/20/6005 +-1.54378,48.4633,3790,8,23,23,1,47,3.65,5.0,fr,9749,75,409935,1,3,Active Shallow Crust,240.0011,58.01321,0.0,08/23/3790 +-1.54378,48.4633,2166,8,23,9,20,37,3.65,5.0,fr,9750,43,409935,1,3,Active Shallow Crust,240.0011,58.01321,0.0,08/23/2166 +-1.54378,48.4633,8724,6,20,14,7,12,3.65,15.0,fr,9751,174,409936,1,1,Active Shallow Crust,240.0011,58.01321,0.0,06/20/8724 +-1.54378,48.4633,9525,12,29,4,47,30,3.65,5.0,fr,9752,190,409941,1,1,Active Shallow Crust,128.9005,89.96343,0.0,12/29/9525 +-1.54378,48.4633,2436,5,18,19,16,32,3.75,5.0,fr,9753,48,409944,1,3,Active Shallow Crust,0.0,89.98938,0.0,05/18/2436 +-1.54378,48.4633,699,8,9,6,16,31,3.75,5.0,fr,9754,13,409944,1,3,Active Shallow Crust,0.0,89.98938,0.0,08/09/0699 +-1.54378,48.4633,7328,3,31,12,48,26,3.75,5.0,fr,9755,146,409944,1,3,Active Shallow Crust,0.0,89.98938,0.0,03/31/7328 +-1.54378,48.4633,4225,3,14,19,19,17,3.75,15.0,fr,9756,84,409951,1,1,Active Shallow Crust,0.0,89.9906,-90.0,03/14/4225 +-1.54378,48.4633,3149,2,13,20,55,14,3.85,5.0,fr,9757,62,409956,1,2,Active Shallow Crust,0.0,89.99053,0.0,02/13/3149 +-1.54378,48.4633,3080,5,26,10,39,3,3.85,5.0,fr,9758,61,409956,1,2,Active Shallow Crust,0.0,89.99053,0.0,05/26/3080 +-1.54378,48.4633,5924,3,14,20,5,48,3.95,5.0,fr,9759,118,409968,1,1,Active Shallow Crust,0.0,89.99051,0.0,03/14/5924 +-1.54378,48.4633,7794,3,26,1,22,44,4.05,5.0,fr,9760,155,409980,1,1,Active Shallow Crust,0.0,89.98966,0.0,03/26/7794 +-1.54378,48.4633,8347,6,19,20,57,45,4.15,5.0,fr,9761,166,409992,1,1,Active Shallow Crust,0.0,89.98994,0.0,06/19/8347 +-1.54378,48.4633,5057,8,17,14,7,51,4.45,5.0,fr,9762,101,410034,1,1,Active Shallow Crust,0.0,89.9898,-90.0,08/17/5057 +-1.54378,48.4633,1331,2,27,14,54,56,4.55,27.5,fr,9763,26,410042,1,1,Active Shallow Crust,0.0,89.98995,0.0,02/27/1331 +-1.54378,48.4633,2214,4,8,18,33,49,4.75,15.0,fr,9764,44,410065,1,1,Active Shallow Crust,0.0,89.98992,0.0,04/08/2214 +-1.54378,48.4633,5599,11,4,4,28,46,5.05,5.0,fr,9765,111,410100,1,1,Active Shallow Crust,0.0,89.98989,0.0,11/04/5599 +-1.54378,48.4633,4234,7,9,16,53,55,5.15,5.0,fr,9766,84,410112,1,1,Active Shallow Crust,0.0,89.98993,0.0,07/09/4234 +-1.54378,48.4633,4273,1,24,7,51,42,5.15,5.0,fr,9767,85,410121,1,1,Active Shallow Crust,128.8827,89.99098,0.0,01/24/4273 +-1.54378,48.4633,6382,1,27,15,16,41,5.25,5.0,fr,9768,127,410124,1,1,Active Shallow Crust,0.0,89.99008,0.0,01/27/6382 +2.64238,53.20266,2578,12,11,14,58,10,3.85,5.0,fr,9769,51,410436,1,1,Active Shallow Crust,0.0,89.98931,0.0,12/11/2578 +2.64238,53.20266,9818,10,7,23,43,18,3.95,5.0,fr,9770,196,410448,1,1,Active Shallow Crust,0.0,89.99047,0.0,10/07/9818 +7.7791,45.88706,116,7,15,17,25,28,3.55,5.0,fr,9771,2,410880,1,2,Active Shallow Crust,0.0,89.99298,0.0,07/15/0116 +7.7791,45.88706,8810,7,25,17,0,14,3.55,5.0,fr,9772,176,410880,1,2,Active Shallow Crust,0.0,89.99298,0.0,07/25/8810 +7.7791,45.88706,2198,1,18,14,4,32,3.55,15.0,fr,9773,43,410881,1,1,Active Shallow Crust,0.0,89.99298,0.0,01/18/2198 +7.7791,45.88706,4311,1,20,9,18,40,3.55,15.0,fr,9774,86,410884,1,1,Active Shallow Crust,240.0107,57.99906,0.0,01/20/4311 +7.7791,45.88706,503,4,29,4,12,31,3.55,5.0,fr,9775,10,410886,1,1,Active Shallow Crust,0.0,89.9929,-90.0,04/29/0503 +7.7791,45.88706,4921,5,30,21,29,20,3.65,5.0,fr,9776,98,410892,1,3,Active Shallow Crust,0.0,89.98749,0.0,05/30/4921 +7.7791,45.88706,5062,5,5,15,56,55,3.65,5.0,fr,9777,101,410892,1,3,Active Shallow Crust,0.0,89.98749,0.0,05/05/5062 +7.7791,45.88706,2764,4,16,20,51,54,3.65,5.0,fr,9778,55,410892,1,3,Active Shallow Crust,0.0,89.98749,0.0,04/16/2764 +7.7791,45.88706,3514,8,21,11,32,0,3.65,5.0,fr,9779,70,410895,1,1,Active Shallow Crust,240.001,58.0134,0.0,08/21/3514 +7.7791,45.88706,9221,7,12,16,54,52,3.65,27.5,fr,9780,184,410897,1,1,Active Shallow Crust,240.001,58.01331,0.0,07/12/9221 +7.7791,45.88706,1649,9,17,11,41,56,3.75,5.0,fr,9781,32,410904,1,1,Active Shallow Crust,0.0,89.98885,0.0,09/17/1649 +7.7791,45.88706,4678,7,25,0,21,13,3.75,5.0,fr,9782,93,410910,1,2,Active Shallow Crust,0.0,89.98872,-90.0,07/25/4678 +7.7791,45.88706,456,10,15,10,3,16,3.75,5.0,fr,9783,9,410910,1,2,Active Shallow Crust,0.0,89.98872,-90.0,10/15/0456 +7.7791,45.88706,2878,1,25,7,25,25,3.75,15.0,fr,9784,57,410911,1,1,Active Shallow Crust,0.0,89.98872,-90.0,01/25/2878 +7.7791,45.88706,2927,7,21,4,22,5,3.85,5.0,fr,9785,58,410916,1,1,Active Shallow Crust,0.0,89.99006,0.0,07/21/2927 +7.7791,45.88706,371,1,26,7,42,47,3.85,15.0,fr,9786,7,410917,1,1,Active Shallow Crust,0.0,89.99006,0.0,01/26/0371 +7.7791,45.88706,7815,7,19,10,19,6,3.95,5.0,fr,9787,156,410928,1,2,Active Shallow Crust,0.0,89.99114,0.0,07/19/7815 +7.7791,45.88706,3486,10,24,10,37,52,3.95,5.0,fr,9788,69,410928,1,2,Active Shallow Crust,0.0,89.99114,0.0,10/24/3486 +7.7791,45.88706,2584,8,7,13,2,56,3.95,15.0,fr,9789,51,410938,1,1,Active Shallow Crust,128.8997,89.99335,0.0,08/07/2584 +7.7791,45.88706,3544,11,21,13,36,15,4.05,5.0,fr,9790,70,410949,1,1,Active Shallow Crust,128.8913,89.99408,0.0,11/21/3544 +7.7791,45.88706,9311,9,12,18,43,16,4.25,5.0,fr,9791,186,410964,1,1,Active Shallow Crust,0.0,89.99059,0.0,09/12/9311 +7.7791,45.88706,1430,12,17,10,0,49,4.25,15.0,fr,9792,28,410965,1,1,Active Shallow Crust,0.0,89.99059,0.0,12/17/1430 +7.7791,45.88706,646,3,7,20,27,33,4.35,15.0,fr,9793,12,410977,1,1,Active Shallow Crust,0.0,89.98882,0.0,03/07/0646 +7.7791,45.88706,2725,4,11,1,12,56,4.55,15.0,fr,9794,54,411001,1,1,Active Shallow Crust,0.0,89.9889,0.0,04/11/2725 +3.14879,49.37219,3932,4,1,7,42,48,3.55,27.5,fr,9795,78,411362,1,1,Active Shallow Crust,0.0,89.99015,0.0,04/01/3932 +3.14879,49.37219,7219,12,17,10,13,45,3.55,5.0,fr,9796,144,411369,1,1,Active Shallow Crust,128.8963,89.99343,0.0,12/17/7219 +3.14879,49.37219,9259,9,25,0,57,40,3.65,15.0,fr,9797,185,411379,1,1,Active Shallow Crust,0.0,89.99112,-90.0,09/25/9259 +3.14879,49.37219,3194,7,22,4,45,58,4.05,15.0,fr,9798,63,411427,1,1,Active Shallow Crust,0.0,89.99066,-90.0,07/22/3194 +3.14879,49.37219,509,3,7,22,53,23,4.25,5.0,fr,9799,10,411444,1,1,Active Shallow Crust,0.0,89.98973,0.0,03/07/0509 +3.14879,49.37219,390,10,2,20,24,57,4.25,27.5,fr,9800,7,411446,1,1,Active Shallow Crust,0.0,89.98973,0.0,10/02/0390 +3.14879,49.37219,21,5,31,14,13,36,4.35,5.0,fr,9801,0,411456,1,1,Active Shallow Crust,0.0,89.98954,0.0,05/31/0021 +3.14879,49.37219,987,7,11,18,34,9,4.55,5.0,fr,9802,19,411480,1,1,Active Shallow Crust,0.0,89.98962,0.0,07/11/0987 +6.65304,46.01793,5871,8,16,15,45,54,3.55,5.0,fr,9803,117,411840,1,2,Active Shallow Crust,0.0,89.993,0.0,08/16/5871 +6.65304,46.01793,9310,1,15,3,32,26,3.55,5.0,fr,9804,186,411840,1,2,Active Shallow Crust,0.0,89.993,0.0,01/15/9310 +6.65304,46.01793,103,12,8,11,8,22,3.55,15.0,fr,9805,2,411841,1,2,Active Shallow Crust,0.0,89.993,0.0,12/08/0103 +6.65304,46.01793,3049,2,15,4,53,1,3.55,15.0,fr,9806,60,411841,1,2,Active Shallow Crust,0.0,89.993,0.0,02/15/3049 +6.65304,46.01793,8963,7,7,18,40,8,3.55,5.0,fr,9807,179,411843,1,1,Active Shallow Crust,240.0117,57.99791,0.0,07/07/8963 +6.65304,46.01793,8935,11,5,10,50,36,3.55,5.0,fr,9808,178,411846,1,1,Active Shallow Crust,0.0,89.99292,-90.0,11/05/8935 +6.65304,46.01793,1628,2,8,6,5,53,3.65,5.0,fr,9809,32,411852,1,4,Active Shallow Crust,0.0,89.98752,0.0,02/08/1628 +6.65304,46.01793,2906,7,2,5,2,48,3.65,5.0,fr,9810,58,411852,1,4,Active Shallow Crust,0.0,89.98752,0.0,07/02/2906 +6.65304,46.01793,2534,9,6,12,39,3,3.65,5.0,fr,9811,50,411852,1,4,Active Shallow Crust,0.0,89.98752,0.0,09/06/2534 +6.65304,46.01793,2820,11,4,14,37,30,3.65,5.0,fr,9812,56,411852,1,4,Active Shallow Crust,0.0,89.98752,0.0,11/04/2820 +6.65304,46.01793,1762,2,7,2,40,31,3.65,15.0,fr,9813,35,411853,1,1,Active Shallow Crust,0.0,89.98752,0.0,02/07/1762 +6.65304,46.01793,6722,7,6,2,2,20,3.65,27.5,fr,9814,134,411854,1,1,Active Shallow Crust,0.0,89.98752,0.0,07/06/6722 +6.65304,46.01793,5119,4,28,3,14,20,3.65,5.0,fr,9815,102,411855,1,1,Active Shallow Crust,240.0003,58.01402,0.0,04/28/5119 +6.65304,46.01793,4884,11,22,9,44,11,3.65,15.0,fr,9816,97,411862,1,1,Active Shallow Crust,128.9003,89.96352,0.0,11/22/4884 +6.65304,46.01793,8668,2,5,18,27,55,3.75,5.0,fr,9817,173,411864,1,1,Active Shallow Crust,0.0,89.98888,0.0,02/05/8668 +6.65304,46.01793,645,7,27,5,56,14,3.75,5.0,fr,9818,12,411867,1,1,Active Shallow Crust,240.0073,58.01806,0.0,07/27/0645 +6.65304,46.01793,3502,5,5,0,55,14,3.75,15.0,fr,9819,70,411871,1,1,Active Shallow Crust,0.0,89.98875,-90.0,05/05/3502 +6.65304,46.01793,332,1,18,0,35,17,3.85,5.0,fr,9820,6,411876,1,1,Active Shallow Crust,0.0,89.99008,0.0,01/18/0332 +6.65304,46.01793,2633,5,11,6,46,19,3.85,15.0,fr,9821,52,411877,1,1,Active Shallow Crust,0.0,89.99008,0.0,05/11/2633 +6.65304,46.01793,6162,12,23,15,0,25,3.85,27.5,fr,9822,123,411881,1,1,Active Shallow Crust,240.0112,57.99822,0.0,12/23/6162 +6.65304,46.01793,2138,12,23,23,30,48,3.95,5.0,fr,9823,42,411888,1,1,Active Shallow Crust,0.0,89.99117,0.0,12/23/2138 +6.65304,46.01793,6911,3,8,3,36,43,3.95,15.0,fr,9824,138,411889,1,1,Active Shallow Crust,0.0,89.99117,0.0,03/08/6911 +6.65304,46.01793,151,7,20,15,13,23,4.15,15.0,fr,9825,3,411913,1,1,Active Shallow Crust,0.0,89.98947,0.0,07/20/0151 +6.65304,46.01793,1133,6,11,6,30,50,4.15,15.0,fr,9826,22,411916,1,1,Active Shallow Crust,240.0084,57.9971,0.0,06/11/1133 +6.65304,46.01793,3802,8,27,17,41,20,4.25,5.0,fr,9827,76,411924,1,1,Active Shallow Crust,0.0,89.99062,0.0,08/27/3802 +6.65304,46.01793,7718,5,27,14,58,13,4.35,5.0,fr,9828,154,411936,1,1,Active Shallow Crust,0.0,89.98885,0.0,05/27/7718 +6.65304,46.01793,7479,2,25,8,49,51,4.45,27.5,fr,9829,149,411956,1,1,Active Shallow Crust,0.0,89.98994,-90.0,02/25/7479 +6.65304,46.01793,1970,9,26,10,20,49,4.45,15.0,fr,9830,39,411958,1,1,Active Shallow Crust,128.8928,89.99379,0.0,09/26/1970 +6.65304,46.01793,2858,11,19,6,30,1,4.75,5.0,fr,9831,57,411993,1,2,Active Shallow Crust,128.8886,89.98814,0.0,11/19/2858 +6.65304,46.01793,680,8,19,20,0,51,4.75,5.0,fr,9832,13,411993,1,2,Active Shallow Crust,128.8886,89.98814,0.0,08/19/0680 +6.65304,46.01793,6647,6,29,6,25,20,5.05,15.0,fr,9833,132,412027,1,1,Active Shallow Crust,0.0,89.98992,-90.0,06/29/6647 +3.04558,46.55652,3917,10,2,22,14,30,3.55,5.0,fr,9834,78,412800,1,1,Active Shallow Crust,0.0,89.9896,0.0,10/02/3917 +3.04558,46.55652,6823,7,10,2,2,2,3.65,15.0,fr,9835,136,412816,1,1,Active Shallow Crust,240.0009,58.0128,0.0,07/10/6823 +3.04558,46.55652,5961,9,7,6,13,19,3.75,5.0,fr,9836,119,412824,1,1,Active Shallow Crust,0.0,89.98898,0.0,09/07/5961 +3.04558,46.55652,1077,7,12,2,54,21,3.75,27.5,fr,9837,21,412826,1,1,Active Shallow Crust,0.0,89.98898,0.0,07/12/1077 +3.04558,46.55652,8444,3,26,11,27,46,3.95,15.0,fr,9838,168,412849,1,1,Active Shallow Crust,0.0,89.98906,0.0,03/26/8444 +3.04558,46.55652,3618,6,2,2,43,10,4.25,5.0,fr,9839,72,412890,1,1,Active Shallow Crust,0.0,89.9906,-90.0,06/02/3618 +3.04558,46.55652,7629,11,7,6,6,20,4.75,5.0,fr,9840,152,412944,1,1,Active Shallow Crust,0.0,89.99042,0.0,11/07/7629 +3.04558,46.55652,6452,11,19,22,51,16,5.05,27.5,fr,9841,129,412988,1,1,Active Shallow Crust,0.0,89.99002,-90.0,11/19/6452 +-0.5121,45.03327,5473,7,31,5,45,7,3.55,5.0,fr,9842,109,413763,1,1,Active Shallow Crust,240.0119,57.9983,0.0,07/31/5473 +-0.5121,45.03327,7874,2,1,14,50,33,3.55,5.0,fr,9843,157,413766,1,1,Active Shallow Crust,0.0,89.99009,-90.0,02/01/7874 +-0.5121,45.03327,8194,3,11,22,30,0,3.75,5.0,fr,9844,163,413784,1,3,Active Shallow Crust,0.0,89.9901,0.0,03/11/8194 +-0.5121,45.03327,287,4,8,9,35,13,3.75,5.0,fr,9845,5,413784,1,3,Active Shallow Crust,0.0,89.9901,0.0,04/08/0287 +-0.5121,45.03327,8691,10,8,4,51,58,3.75,5.0,fr,9846,173,413784,1,3,Active Shallow Crust,0.0,89.9901,0.0,10/08/8691 +-0.5121,45.03327,1602,6,14,8,44,52,3.85,5.0,fr,9847,32,413799,1,1,Active Shallow Crust,240.0105,57.9978,0.0,06/14/1602 +-0.5121,45.03327,9794,1,13,16,45,3,3.85,15.0,fr,9848,195,413806,1,1,Active Shallow Crust,128.8959,89.9937,0.0,01/13/9794 +1.67568,47.60534,5187,9,10,20,7,45,3.55,27.5,fr,9849,103,414242,1,1,Active Shallow Crust,0.0,89.9898,0.0,09/10/5187 +1.67568,47.60534,986,5,17,18,49,2,3.65,5.0,fr,9850,19,414252,1,1,Active Shallow Crust,0.0,89.9894,0.0,05/17/0986 +1.67568,47.60534,2240,12,27,23,36,40,3.65,15.0,fr,9851,44,414262,1,1,Active Shallow Crust,128.9004,89.96355,0.0,12/27/2240 +1.67568,47.60534,8348,7,6,22,52,23,3.85,15.0,fr,9852,166,414277,1,1,Active Shallow Crust,0.0,89.99037,0.0,07/06/8348 +1.67568,47.60534,6483,9,20,16,42,44,4.15,5.0,fr,9853,129,414312,1,2,Active Shallow Crust,0.0,89.98978,0.0,09/20/6483 +1.67568,47.60534,8616,9,21,8,52,52,4.15,5.0,fr,9854,172,414312,1,2,Active Shallow Crust,0.0,89.98978,0.0,09/21/8616 +-2.85698,50.36805,1138,1,14,20,55,9,3.75,15.0,fr,9855,22,414748,1,1,Active Shallow Crust,240.0091,58.01771,0.0,01/14/1138 +6.24862,45.05147,8693,1,24,16,8,25,3.55,5.0,fr,9856,173,415200,1,1,Active Shallow Crust,0.0,89.99287,0.0,01/24/8693 +6.24862,45.05147,5124,3,8,0,32,30,3.55,15.0,fr,9857,102,415201,1,2,Active Shallow Crust,0.0,89.99287,0.0,03/08/5124 +6.24862,45.05147,8363,6,7,7,30,42,3.55,15.0,fr,9858,167,415201,1,2,Active Shallow Crust,0.0,89.99287,0.0,06/07/8363 +6.24862,45.05147,7462,2,5,18,37,41,3.55,5.0,fr,9859,149,415209,1,1,Active Shallow Crust,128.8961,89.99287,0.0,02/05/7462 +6.24862,45.05147,151,10,6,8,29,39,3.65,5.0,fr,9860,3,415218,1,1,Active Shallow Crust,0.0,89.98715,-90.0,10/06/0151 +6.24862,45.05147,3193,12,8,7,39,52,3.75,5.0,fr,9861,63,415224,1,2,Active Shallow Crust,0.0,89.98869,0.0,12/08/3193 +6.24862,45.05147,4771,11,21,5,0,50,3.75,5.0,fr,9862,95,415224,1,2,Active Shallow Crust,0.0,89.98869,0.0,11/21/4771 +6.24862,45.05147,9812,1,3,14,35,40,3.75,5.0,fr,9863,196,415227,1,2,Active Shallow Crust,240.0086,58.01685,0.0,01/03/9812 +6.24862,45.05147,3603,1,9,14,44,9,3.75,5.0,fr,9864,72,415227,1,2,Active Shallow Crust,240.0086,58.01685,0.0,01/09/3603 +6.24862,45.05147,7766,5,25,5,11,12,3.75,15.0,fr,9865,155,415234,1,1,Active Shallow Crust,128.8974,89.96686,0.0,05/25/7766 +6.24862,45.05147,7812,4,10,20,23,7,3.85,27.5,fr,9866,156,415244,1,1,Active Shallow Crust,0.0,89.9898,-90.0,04/10/7812 +6.24862,45.05147,1142,1,1,14,23,57,3.95,5.0,fr,9867,22,415248,1,1,Active Shallow Crust,0.0,89.99101,0.0,01/01/1142 +6.24862,45.05147,7353,4,7,17,29,27,3.95,27.5,fr,9868,147,415253,1,1,Active Shallow Crust,240.0189,58.00548,0.0,04/07/7353 +6.24862,45.05147,7577,3,20,21,52,46,4.05,5.0,fr,9869,151,415260,1,1,Active Shallow Crust,0.0,89.99199,0.0,03/20/7577 +6.24862,45.05147,3923,2,6,23,35,46,4.25,5.0,fr,9870,78,415284,1,1,Active Shallow Crust,0.0,89.99046,0.0,02/06/3923 +7.07116,45.41347,2967,9,13,5,30,27,3.55,5.0,fr,9871,59,415680,1,1,Active Shallow Crust,0.0,89.99292,0.0,09/13/2967 +7.07116,45.41347,6788,11,7,22,46,36,3.55,15.0,fr,9872,135,415684,1,1,Active Shallow Crust,240.0125,57.99844,0.0,11/07/6788 +7.07116,45.41347,5454,1,8,17,26,13,3.75,5.0,fr,9873,109,415707,1,1,Active Shallow Crust,240.0085,58.0172,0.0,01/08/5454 +7.07116,45.41347,2350,7,27,17,41,22,3.75,5.0,fr,9874,46,415710,1,1,Active Shallow Crust,0.0,89.98862,-90.0,07/27/2350 +7.07116,45.41347,3300,4,21,18,6,58,3.95,15.0,fr,9875,65,415729,1,1,Active Shallow Crust,0.0,89.99107,0.0,04/21/3300 +7.07116,45.41347,2416,5,5,22,50,20,4.35,5.0,fr,9876,48,415776,1,1,Active Shallow Crust,0.0,89.98872,0.0,05/05/2416 +7.07116,45.41347,4066,10,12,23,30,58,4.45,15.0,fr,9877,81,415798,1,1,Active Shallow Crust,128.8928,89.99372,0.0,10/12/4066 +7.07116,45.41347,6833,5,6,19,27,43,4.85,5.0,fr,9878,136,415842,1,1,Active Shallow Crust,0.0,89.99038,-90.0,05/06/6833 +7.07116,45.41347,5789,1,31,12,0,32,5.65,15.0,fr,9879,115,415933,1,1,Active Shallow Crust,0.0,89.9899,0.0,01/31/5789 +-2.4051,50.40127,253,6,23,10,24,50,3.75,5.0,fr,9880,5,416184,1,1,Active Shallow Crust,0.0,89.98979,0.0,06/23/0253 +4.34296,44.79778,2437,9,15,14,8,58,3.55,5.0,fr,9881,48,416640,1,2,Active Shallow Crust,0.0,89.99284,0.0,09/15/2437 +4.34296,44.79778,5256,2,21,5,36,28,3.55,5.0,fr,9882,105,416640,1,2,Active Shallow Crust,0.0,89.99284,0.0,02/21/5256 +4.34296,44.79778,6148,7,21,22,40,54,3.55,5.0,fr,9883,122,416643,1,1,Active Shallow Crust,240.0114,57.99841,0.0,07/21/6148 +4.34296,44.79778,7385,6,28,10,56,15,3.55,27.5,fr,9884,147,416648,1,1,Active Shallow Crust,0.0,89.99276,-90.0,06/28/7385 +4.34296,44.79778,1569,5,4,3,58,9,3.75,5.0,fr,9885,31,416664,1,1,Active Shallow Crust,0.0,89.98863,0.0,05/04/1569 +4.34296,44.79778,4984,4,17,14,14,44,3.85,5.0,fr,9886,99,416676,1,2,Active Shallow Crust,0.0,89.98987,0.0,04/17/4984 +4.34296,44.79778,908,4,14,15,35,17,3.85,5.0,fr,9887,18,416676,1,2,Active Shallow Crust,0.0,89.98987,0.0,04/14/0908 +4.34296,44.79778,2561,6,7,23,36,57,4.05,5.0,fr,9888,51,416700,1,1,Active Shallow Crust,0.0,89.99195,0.0,06/07/2561 +4.34296,44.79778,3161,4,23,13,23,24,4.05,15.0,fr,9889,63,416704,1,1,Active Shallow Crust,240.0053,58.006,0.0,04/23/3161 +4.34296,44.79778,1358,5,13,23,17,19,4.15,5.0,fr,9890,27,416712,1,1,Active Shallow Crust,0.0,89.98924,0.0,05/13/1358 +4.34296,44.79778,2808,6,22,22,59,18,4.25,5.0,fr,9891,56,416724,1,1,Active Shallow Crust,0.0,89.99041,0.0,06/22/2808 +4.34296,44.79778,2284,5,10,4,40,3,4.35,5.0,fr,9892,45,416745,1,1,Active Shallow Crust,128.8977,89.98296,0.0,05/10/2284 +4.34296,44.79778,1484,7,18,14,30,4,4.65,5.0,fr,9893,29,416775,1,1,Active Shallow Crust,240.0105,57.99396,0.0,07/18/1484 +4.34296,44.79778,3466,9,2,9,26,37,5.65,5.0,fr,9894,69,416892,1,1,Active Shallow Crust,0.0,89.98979,0.0,09/02/3466 +4.34296,44.79778,7952,10,22,5,17,3,5.65,27.5,fr,9895,159,416894,1,1,Active Shallow Crust,0.0,89.98979,0.0,10/22/7952 +-0.90454,43.0798,8938,7,12,15,15,54,3.55,5.0,fr,9896,178,417120,1,3,Active Shallow Crust,0.0,89.98988,0.0,07/12/8938 +-0.90454,43.0798,7784,7,13,15,6,35,3.55,5.0,fr,9897,155,417120,1,3,Active Shallow Crust,0.0,89.98988,0.0,07/13/7784 +-0.90454,43.0798,2597,4,25,18,35,59,3.55,5.0,fr,9898,51,417120,1,3,Active Shallow Crust,0.0,89.98988,0.0,04/25/2597 +-0.90454,43.0798,5561,1,21,2,17,5,3.55,15.0,fr,9899,111,417121,1,2,Active Shallow Crust,0.0,89.98988,0.0,01/21/5561 +-0.90454,43.0798,7281,8,7,19,6,10,3.55,15.0,fr,9900,145,417121,1,2,Active Shallow Crust,0.0,89.98988,0.0,08/07/7281 +-0.90454,43.0798,757,4,18,17,37,52,3.55,5.0,fr,9901,15,417123,1,1,Active Shallow Crust,240.0117,57.99823,0.0,04/18/0757 +-0.90454,43.0798,8196,1,22,21,46,8,3.55,5.0,fr,9902,163,417126,1,1,Active Shallow Crust,0.0,89.98975,-90.0,01/22/8196 +-0.90454,43.0798,3653,5,11,18,0,1,3.55,15.0,fr,9903,73,417127,1,1,Active Shallow Crust,0.0,89.98975,-90.0,05/11/3653 +-0.90454,43.0798,9763,8,22,1,35,44,3.55,15.0,fr,9904,195,417130,1,1,Active Shallow Crust,128.8967,89.99355,0.0,08/22/9763 +-0.90454,43.0798,7922,4,10,8,45,8,3.65,5.0,fr,9905,158,417132,1,4,Active Shallow Crust,0.0,89.99015,0.0,04/10/7922 +-0.90454,43.0798,385,12,22,0,22,8,3.65,5.0,fr,9906,7,417132,1,4,Active Shallow Crust,0.0,89.99015,0.0,12/22/0385 +-0.90454,43.0798,1196,8,6,3,44,8,3.65,5.0,fr,9907,23,417132,1,4,Active Shallow Crust,0.0,89.99015,0.0,08/06/1196 +-0.90454,43.0798,7676,8,14,20,6,26,3.65,5.0,fr,9908,153,417132,1,4,Active Shallow Crust,0.0,89.99015,0.0,08/14/7676 +-0.90454,43.0798,7822,3,20,21,50,40,3.65,15.0,fr,9909,156,417133,1,1,Active Shallow Crust,0.0,89.99015,0.0,03/20/7822 +-0.90454,43.0798,9732,9,5,3,4,48,3.65,5.0,fr,9910,194,417141,1,1,Active Shallow Crust,128.9006,89.96353,0.0,09/05/9732 +-0.90454,43.0798,9440,3,20,5,25,44,3.75,15.0,fr,9911,188,417145,1,2,Active Shallow Crust,0.0,89.98976,0.0,03/20/9440 +-0.90454,43.0798,9315,1,6,22,11,23,3.75,15.0,fr,9912,186,417145,1,2,Active Shallow Crust,0.0,89.98976,0.0,01/06/9315 +-0.90454,43.0798,7468,2,9,5,3,8,3.75,27.5,fr,9913,149,417146,1,1,Active Shallow Crust,0.0,89.98976,0.0,02/09/7468 +-0.90454,43.0798,2897,6,29,21,20,53,3.75,5.0,fr,9914,57,417147,1,3,Active Shallow Crust,240.008,58.01738,0.0,06/29/2897 +-0.90454,43.0798,2213,12,5,18,48,23,3.75,5.0,fr,9915,44,417147,1,3,Active Shallow Crust,240.008,58.01738,0.0,12/05/2213 +-0.90454,43.0798,1363,10,5,7,39,38,3.75,5.0,fr,9916,27,417147,1,3,Active Shallow Crust,240.008,58.01738,0.0,10/05/1363 +-0.90454,43.0798,564,2,19,7,58,25,3.75,5.0,fr,9917,11,417150,1,1,Active Shallow Crust,0.0,89.98964,-90.0,02/19/0564 +-0.90454,43.0798,6462,6,13,19,11,44,3.85,5.0,fr,9918,129,417156,1,3,Active Shallow Crust,0.0,89.99023,0.0,06/13/6462 +-0.90454,43.0798,3014,1,27,23,41,11,3.85,5.0,fr,9919,60,417156,1,3,Active Shallow Crust,0.0,89.99023,0.0,01/27/3014 +-0.90454,43.0798,4433,11,23,12,47,47,3.85,5.0,fr,9920,88,417156,1,3,Active Shallow Crust,0.0,89.99023,0.0,11/23/4433 +-0.90454,43.0798,9277,1,5,8,7,41,3.85,15.0,fr,9921,185,417160,1,1,Active Shallow Crust,240.0104,57.99769,0.0,01/05/9277 +-0.90454,43.0798,4410,5,14,20,30,0,3.95,15.0,fr,9922,88,417169,1,1,Active Shallow Crust,0.0,89.99013,0.0,05/14/4410 +-0.90454,43.0798,7079,10,2,18,23,0,4.15,5.0,fr,9923,141,417192,1,2,Active Shallow Crust,0.0,89.98985,0.0,10/02/7079 +-0.90454,43.0798,538,11,25,6,24,44,4.15,5.0,fr,9924,10,417192,1,2,Active Shallow Crust,0.0,89.98985,0.0,11/25/0538 +-0.90454,43.0798,3387,9,5,19,51,59,4.25,5.0,fr,9925,67,417204,1,1,Active Shallow Crust,0.0,89.99013,0.0,09/05/3387 +-0.90454,43.0798,2225,8,23,7,46,24,4.25,5.0,fr,9926,44,417207,1,1,Active Shallow Crust,240.0069,57.99395,0.0,08/23/2225 +-0.90454,43.0798,5226,3,28,10,34,35,4.25,5.0,fr,9927,104,417210,1,1,Active Shallow Crust,0.0,89.99001,-90.0,03/28/5226 +-0.90454,43.0798,1817,3,23,2,3,22,4.25,5.0,fr,9928,36,417213,1,1,Active Shallow Crust,128.8948,89.98096,0.0,03/23/1817 +-0.90454,43.0798,5277,1,26,16,4,26,4.25,15.0,fr,9929,105,417214,1,1,Active Shallow Crust,128.8948,89.98096,0.0,01/26/5277 +-0.90454,43.0798,1967,3,12,4,4,39,4.35,5.0,fr,9930,39,417216,1,1,Active Shallow Crust,0.0,89.9901,0.0,03/12/1967 +-0.90454,43.0798,3927,12,24,5,15,17,4.45,5.0,fr,9931,78,417228,1,1,Active Shallow Crust,0.0,89.98988,0.0,12/24/3927 +-0.90454,43.0798,8331,12,20,14,30,7,4.55,5.0,fr,9932,166,417240,1,1,Active Shallow Crust,0.0,89.9901,0.0,12/20/8331 +-0.90454,43.0798,6752,12,7,8,15,21,4.65,15.0,fr,9933,135,417253,1,1,Active Shallow Crust,0.0,89.98988,0.0,12/07/6752 +-0.90454,43.0798,8158,11,3,18,41,17,4.75,27.5,fr,9934,163,417266,1,1,Active Shallow Crust,0.0,89.99005,0.0,11/03/8158 +-0.90454,43.0798,7731,1,9,5,36,25,5.05,5.0,fr,9935,154,417300,1,1,Active Shallow Crust,0.0,89.99001,0.0,01/09/7731 +-0.90454,43.0798,969,8,15,7,52,46,5.15,5.0,fr,9936,19,417312,1,1,Active Shallow Crust,0.0,89.98993,0.0,08/15/0969 +-0.9045379,43.0798,5206,1,15,11,44,28,6.15,6.011322,fr,9937,104,417432,1,1,Active Shallow Crust,0.0,89.99001,0.0,01/15/5206 +4.32788,41.73157,3029,5,8,15,45,41,3.65,5.0,fr,9938,60,417612,1,1,Active Shallow Crust,0.0,89.99329,0.0,05/08/3029 +4.32788,41.73157,3386,9,28,19,41,21,3.75,5.0,fr,9939,67,417624,1,1,Active Shallow Crust,0.0,89.98804,0.0,09/28/3386 +4.32788,41.73157,8804,7,31,21,17,56,4.05,5.0,fr,9940,176,417660,1,1,Active Shallow Crust,0.0,89.99154,0.0,07/31/8804 +4.32788,41.73157,1669,4,26,2,16,14,5.05,5.0,fr,9941,33,417780,1,1,Active Shallow Crust,0.0,89.99063,0.0,04/26/1669 +4.32788,41.73157,9485,11,16,15,3,3,5.65,5.0,fr,9942,189,417852,1,1,Active Shallow Crust,0.0,89.98994,0.0,11/16/9485 +3.0621,45.91298,4269,9,25,14,57,31,3.55,5.0,fr,9943,85,418080,1,3,Active Shallow Crust,0.0,89.98948,0.0,09/25/4269 +3.0621,45.91298,659,9,2,10,32,10,3.55,5.0,fr,9944,13,418080,1,3,Active Shallow Crust,0.0,89.98948,0.0,09/02/0659 +3.0621,45.91298,3850,2,20,5,6,6,3.55,5.0,fr,9945,76,418080,1,3,Active Shallow Crust,0.0,89.98948,0.0,02/20/3850 +3.0621,45.91298,3662,10,1,1,26,54,3.55,15.0,fr,9946,73,418081,1,1,Active Shallow Crust,0.0,89.98948,0.0,10/01/3662 +3.0621,45.91298,1750,10,24,22,27,5,3.55,27.5,fr,9947,34,418082,1,1,Active Shallow Crust,0.0,89.98948,0.0,10/24/1750 +3.0621,45.91298,3802,11,29,6,10,8,3.55,5.0,fr,9948,76,418086,1,1,Active Shallow Crust,0.0,89.98936,-90.0,11/29/3802 +3.0621,45.91298,6550,12,4,15,42,15,3.55,15.0,fr,9949,130,418087,1,1,Active Shallow Crust,0.0,89.98936,-90.0,12/04/6550 +3.0621,45.91298,3065,6,4,0,49,18,3.55,5.0,fr,9950,61,418089,1,1,Active Shallow Crust,128.8969,89.99298,0.0,06/04/3065 +3.0621,45.91298,1752,4,23,12,49,5,3.55,15.0,fr,9951,35,418090,1,1,Active Shallow Crust,128.8969,89.99298,0.0,04/23/1752 +3.0621,45.91298,9687,8,30,3,40,39,3.65,5.0,fr,9952,193,418092,1,4,Active Shallow Crust,0.0,89.99062,0.0,08/30/9687 +3.0621,45.91298,2646,12,6,0,49,56,3.65,5.0,fr,9953,52,418092,1,4,Active Shallow Crust,0.0,89.99062,0.0,12/06/2646 +3.0621,45.91298,5579,11,3,21,56,6,3.65,5.0,fr,9954,111,418092,1,4,Active Shallow Crust,0.0,89.99062,0.0,11/03/5579 +3.0621,45.91298,5273,7,8,4,15,39,3.65,5.0,fr,9955,105,418092,1,4,Active Shallow Crust,0.0,89.99062,0.0,07/08/5273 +3.0621,45.91298,8266,7,2,15,17,38,3.65,15.0,fr,9956,165,418093,1,1,Active Shallow Crust,0.0,89.99062,0.0,07/02/8266 +3.0621,45.91298,876,11,29,18,18,52,3.65,5.0,fr,9957,17,418095,1,1,Active Shallow Crust,240.0012,58.01242,0.0,11/29/0876 +3.0621,45.91298,1937,10,17,11,13,34,3.65,5.0,fr,9958,38,418098,1,1,Active Shallow Crust,0.0,89.99051,-90.0,10/17/1937 +3.0621,45.91298,5413,9,28,8,11,55,3.75,5.0,fr,9959,108,418104,1,3,Active Shallow Crust,0.0,89.98885,0.0,09/28/5413 +3.0621,45.91298,1368,5,12,5,43,5,3.75,5.0,fr,9960,27,418104,1,3,Active Shallow Crust,0.0,89.98885,0.0,05/12/1368 +3.0621,45.91298,6868,6,29,21,41,30,3.75,5.0,fr,9961,137,418104,1,3,Active Shallow Crust,0.0,89.98885,0.0,06/29/6868 +3.0621,45.91298,2191,1,12,8,28,35,3.75,15.0,fr,9962,43,418105,1,1,Active Shallow Crust,0.0,89.98885,0.0,01/12/2191 +3.0621,45.91298,1381,6,15,1,28,39,3.75,5.0,fr,9963,27,418113,1,2,Active Shallow Crust,128.8961,89.96748,0.0,06/15/1381 +3.0621,45.91298,1375,2,18,0,50,57,3.75,5.0,fr,9964,27,418113,1,2,Active Shallow Crust,128.8961,89.96748,0.0,02/18/1375 +3.0621,45.91298,6410,6,9,9,1,4,3.85,5.0,fr,9965,128,418116,1,1,Active Shallow Crust,0.0,89.99007,0.0,06/09/6410 +3.0621,45.91298,5175,9,21,2,37,11,3.85,15.0,fr,9966,103,418117,1,1,Active Shallow Crust,0.0,89.99007,0.0,09/21/5175 +3.0621,45.91298,5028,8,5,23,21,42,3.85,27.5,fr,9967,100,418118,1,2,Active Shallow Crust,0.0,89.99007,0.0,08/05/5028 +3.0621,45.91298,7795,9,22,17,14,6,3.85,27.5,fr,9968,155,418118,1,2,Active Shallow Crust,0.0,89.99007,0.0,09/22/7795 +3.0621,45.91298,1815,10,3,23,50,20,3.85,5.0,fr,9969,36,418119,1,2,Active Shallow Crust,240.011,57.9976,0.0,10/03/1815 +3.0621,45.91298,801,8,17,11,19,17,3.85,5.0,fr,9970,16,418119,1,2,Active Shallow Crust,240.011,57.9976,0.0,08/17/0801 +3.0621,45.91298,5979,3,29,14,42,43,3.95,5.0,fr,9971,119,418128,1,2,Active Shallow Crust,0.0,89.98893,0.0,03/29/5979 +3.0621,45.91298,8095,8,24,13,54,57,3.95,5.0,fr,9972,161,418128,1,2,Active Shallow Crust,0.0,89.98893,0.0,08/24/8095 +3.0621,45.91298,9593,6,23,9,43,13,3.95,15.0,fr,9973,191,418129,1,2,Active Shallow Crust,0.0,89.98893,0.0,06/23/9593 +3.0621,45.91298,657,6,12,5,1,3,3.95,15.0,fr,9974,13,418129,1,2,Active Shallow Crust,0.0,89.98893,0.0,06/12/0657 +3.0621,45.91298,6832,6,14,19,58,39,3.95,5.0,fr,9975,136,418131,1,1,Active Shallow Crust,240.0199,58.00462,0.0,06/14/6832 +3.0621,45.91298,4578,3,8,19,18,24,3.95,5.0,fr,9976,91,418134,1,1,Active Shallow Crust,0.0,89.99104,-90.0,03/08/4578 +3.0621,45.91298,4817,10,9,11,36,24,3.95,15.0,fr,9977,96,418135,1,1,Active Shallow Crust,0.0,89.99104,-90.0,10/09/4817 +3.0621,45.91298,538,1,2,22,28,54,4.05,15.0,fr,9978,10,418141,1,2,Active Shallow Crust,0.0,89.99014,0.0,01/02/0538 +3.0621,45.91298,3245,12,21,22,18,58,4.05,15.0,fr,9979,64,418141,1,2,Active Shallow Crust,0.0,89.99014,0.0,12/21/3245 +3.0621,45.91298,3458,4,2,8,18,32,4.05,5.0,fr,9980,69,418143,1,1,Active Shallow Crust,240.0057,58.00577,0.0,04/02/3458 +3.0621,45.91298,9293,10,29,3,28,14,4.05,5.0,fr,9981,185,418149,1,1,Active Shallow Crust,128.8907,89.9931,0.0,10/29/9293 +3.0621,45.91298,5134,12,24,3,40,30,4.15,5.0,fr,9982,102,418152,1,2,Active Shallow Crust,0.0,89.98945,0.0,12/24/5134 +3.0621,45.91298,7009,6,16,1,11,54,4.15,5.0,fr,9983,140,418152,1,2,Active Shallow Crust,0.0,89.98945,0.0,06/16/7009 +3.0621,45.91298,3909,11,20,6,25,45,4.25,5.0,fr,9984,78,418164,1,1,Active Shallow Crust,0.0,89.9906,0.0,11/20/3909 +3.0621,45.91298,1893,12,11,10,44,41,4.25,15.0,fr,9985,37,418165,1,1,Active Shallow Crust,0.0,89.9906,0.0,12/11/1893 +3.0621,45.91298,9727,10,20,15,41,37,4.25,27.5,fr,9986,194,418172,1,1,Active Shallow Crust,0.0,89.99049,-90.0,10/20/9727 +3.0621,45.91298,8632,2,10,9,50,16,4.25,5.0,fr,9987,172,418173,1,1,Active Shallow Crust,128.8946,89.98093,0.0,02/10/8632 +3.0621,45.91298,1934,7,8,14,25,19,4.45,5.0,fr,9988,38,418191,1,1,Active Shallow Crust,240.0054,57.99456,0.0,07/08/1934 +3.0621,45.91298,3336,7,7,1,10,46,4.45,5.0,fr,9989,66,418194,1,1,Active Shallow Crust,0.0,89.98993,-90.0,07/07/3336 +3.0621,45.91298,2768,11,1,11,18,4,4.65,5.0,fr,9990,55,418221,1,2,Active Shallow Crust,128.8911,89.98717,0.0,11/01/2768 +3.0621,45.91298,4724,4,23,21,2,28,4.65,5.0,fr,9991,94,418221,1,2,Active Shallow Crust,128.8911,89.98717,0.0,04/23/4724 +3.0621,45.91298,2388,4,30,21,56,37,5.05,5.0,fr,9992,47,418260,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/30/2388 +3.0621,45.91298,1929,1,10,14,36,56,5.95,5.0,fr,9993,38,418368,1,1,Active Shallow Crust,0.0,89.99004,0.0,01/10/1929 +4.96755,51.8371,530,2,19,10,43,3,3.55,5.0,fr,9994,10,419040,1,1,Active Shallow Crust,0.0,89.98754,0.0,02/19/0530 +4.96755,51.8371,4662,9,5,9,41,37,3.65,5.0,fr,9995,93,419052,1,1,Active Shallow Crust,0.0,89.98889,0.0,09/05/4662 +4.96755,51.8371,9815,10,24,2,35,57,3.65,15.0,fr,9996,196,419053,1,1,Active Shallow Crust,0.0,89.98889,0.0,10/24/9815 +4.96755,51.8371,4950,8,22,7,22,35,3.65,5.0,fr,9997,98,419055,1,1,Active Shallow Crust,240.0017,58.01225,0.0,08/22/4950 +4.96755,51.8371,4385,8,8,20,44,2,3.95,5.0,fr,9998,87,419088,1,1,Active Shallow Crust,0.0,89.9882,0.0,08/08/4385 +4.96755,51.8371,1725,9,21,19,52,41,4.25,5.0,fr,9999,34,419124,1,1,Active Shallow Crust,0.0,89.98887,0.0,09/21/1725 +4.96755,51.8371,2939,7,26,19,21,6,4.25,15.0,fr,10000,58,419125,1,1,Active Shallow Crust,0.0,89.98887,0.0,07/26/2939 +1.7654,49.84389,4463,9,9,4,54,53,3.55,5.0,fr,10001,89,419520,1,1,Active Shallow Crust,0.0,89.99024,0.0,09/09/4463 +1.7654,49.84389,5119,10,29,10,17,33,3.65,5.0,fr,10002,102,419532,1,1,Active Shallow Crust,0.0,89.98986,0.0,10/29/5119 +1.7654,49.84389,3660,12,31,11,32,1,3.75,15.0,fr,10003,73,419545,1,1,Active Shallow Crust,0.0,89.98967,0.0,12/31/3660 +1.7654,49.84389,3133,2,13,19,27,22,3.95,5.0,fr,10004,62,419568,1,1,Active Shallow Crust,0.0,89.98974,0.0,02/13/3133 +1.7654,49.84389,707,6,14,10,8,55,4.25,5.0,fr,10005,14,419604,1,1,Active Shallow Crust,0.0,89.98983,0.0,06/14/0707 +1.7654,49.84389,4201,3,27,5,34,57,4.25,5.0,fr,10006,84,419613,1,1,Active Shallow Crust,128.8936,89.98096,0.0,03/27/4201 +2.62126,48.17808,5937,11,6,7,46,17,3.65,5.0,fr,10007,118,420012,1,1,Active Shallow Crust,0.0,89.99101,0.0,11/06/5937 +2.62126,48.17808,386,6,11,12,34,30,4.65,5.0,fr,10008,7,420132,1,1,Active Shallow Crust,0.0,89.98958,0.0,06/11/0386 +4.19211,43.18779,8671,3,31,14,42,11,3.65,15.0,fr,10009,173,420496,1,1,Active Shallow Crust,240.0022,58.01212,0.0,03/31/8671 +4.19211,43.18779,4477,8,9,1,20,46,3.65,5.0,fr,10010,89,420501,1,1,Active Shallow Crust,128.9011,89.96346,0.0,08/09/4477 +4.19211,43.18779,8092,11,13,22,40,12,3.95,5.0,fr,10011,161,420531,1,1,Active Shallow Crust,240.0194,58.00571,0.0,11/13/8092 +4.19211,43.18779,8112,4,4,5,46,42,4.05,5.0,fr,10012,162,420549,1,1,Active Shallow Crust,128.8919,89.9938,0.0,04/04/8112 +-2.20011,48.00721,8299,12,2,19,52,5,3.55,5.0,fr,10013,165,420960,1,2,Active Shallow Crust,0.0,89.98988,0.0,12/02/8299 +-2.20011,48.00721,1118,10,30,1,24,5,3.55,5.0,fr,10014,22,420960,1,2,Active Shallow Crust,0.0,89.98988,0.0,10/30/1118 +-2.20011,48.00721,8091,6,24,14,38,29,3.55,27.5,fr,10015,161,420962,1,1,Active Shallow Crust,0.0,89.98988,0.0,06/24/8091 +-2.20011,48.00721,8416,9,21,0,7,31,3.55,5.0,fr,10016,168,420963,1,1,Active Shallow Crust,240.012,57.99805,0.0,09/21/8416 +-2.20011,48.00721,5833,2,2,10,41,27,3.55,5.0,fr,10017,116,420969,1,1,Active Shallow Crust,128.8958,89.99326,0.0,02/02/5833 +-2.20011,48.00721,1008,2,22,7,53,51,3.65,5.0,fr,10018,20,420972,1,1,Active Shallow Crust,0.0,89.99098,0.0,02/22/1008 +-2.20011,48.00721,6089,7,13,23,54,58,3.75,5.0,fr,10019,121,420987,1,1,Active Shallow Crust,240.0086,58.01772,0.0,07/13/6089 +-2.20011,48.00721,9281,2,19,8,10,57,3.85,15.0,fr,10020,185,420997,1,1,Active Shallow Crust,0.0,89.99045,0.0,02/19/9281 +-2.20011,48.00721,5049,2,1,14,38,26,3.95,15.0,fr,10021,100,421009,1,1,Active Shallow Crust,0.0,89.98936,0.0,02/01/5049 +-2.20011,48.00721,9496,4,28,4,42,39,3.95,5.0,fr,10022,189,421011,1,1,Active Shallow Crust,240.0201,58.00496,0.0,04/28/9496 +-2.20011,48.00721,5713,9,6,8,52,32,4.05,15.0,fr,10023,114,421021,1,1,Active Shallow Crust,0.0,89.99052,0.0,09/06/5713 +-2.20011,48.00721,9845,8,27,3,53,41,4.15,5.0,fr,10024,196,421032,1,1,Active Shallow Crust,0.0,89.98985,0.0,08/27/9845 +-2.20011,48.00721,9214,2,8,9,19,16,4.25,15.0,fr,10025,184,421045,1,1,Active Shallow Crust,0.0,89.98945,0.0,02/08/9214 +-2.20011,48.00721,5757,8,17,3,6,12,4.35,5.0,fr,10026,115,421056,1,1,Active Shallow Crust,0.0,89.9906,0.0,08/17/5757 +-2.20011,48.00721,6542,4,3,4,49,15,4.45,15.0,fr,10027,130,421069,1,1,Active Shallow Crust,0.0,89.99043,0.0,04/03/6542 +-2.20011,48.00721,4093,2,6,18,10,25,5.65,5.0,fr,10028,81,421215,1,1,Active Shallow Crust,240.0389,57.99959,0.0,02/06/4093 +6.53742,48.95305,300,11,26,20,22,26,3.55,27.5,fr,10029,5,421442,1,1,Active Shallow Crust,0.0,89.98676,0.0,11/26/0300 +6.53742,48.95305,9250,10,29,12,57,56,3.65,15.0,fr,10030,184,421453,1,1,Active Shallow Crust,0.0,89.9882,0.0,10/29/9250 +6.53742,48.95305,6442,7,19,20,37,27,3.65,27.5,fr,10031,128,421457,1,1,Active Shallow Crust,240.0003,58.01353,0.0,07/19/6442 +6.53742,48.95305,1734,6,7,10,43,24,3.75,15.0,fr,10032,34,421465,1,1,Active Shallow Crust,0.0,89.98948,0.0,06/07/1734 +6.53742,48.95305,5104,10,15,11,28,59,3.85,5.0,fr,10033,102,421476,1,1,Active Shallow Crust,0.0,89.99062,0.0,10/15/5104 +6.53742,48.95305,9230,5,6,13,22,55,3.95,15.0,fr,10034,184,421489,1,1,Active Shallow Crust,0.0,89.99165,0.0,05/06/9230 +6.53742,48.95305,1291,11,25,12,41,45,4.15,5.0,fr,10035,25,421515,1,1,Active Shallow Crust,240.0084,57.99739,0.0,11/25/1291 +6.53742,48.95305,9540,1,29,3,0,48,4.65,15.0,fr,10036,190,421579,1,1,Active Shallow Crust,0.0,89.99056,-90.0,01/29/9540 +-3.15193,49.40888,5403,2,22,12,48,22,3.55,5.0,fr,10037,108,421923,1,1,Active Shallow Crust,240.0129,57.99825,0.0,02/22/5403 +-3.15193,49.40888,8744,8,23,4,59,50,3.75,27.5,fr,10038,174,421946,1,1,Active Shallow Crust,0.0,89.98958,0.0,08/23/8744 +-3.15193,49.40888,2425,1,18,20,46,21,3.85,5.0,fr,10039,48,421956,1,1,Active Shallow Crust,0.0,89.99071,0.0,01/18/2425 +-3.15193,49.40888,7191,3,10,8,15,45,3.85,27.5,fr,10040,143,421958,1,1,Active Shallow Crust,0.0,89.99071,0.0,03/10/7191 +-3.15193,49.40888,1456,2,4,0,45,14,3.85,5.0,fr,10041,29,421962,1,1,Active Shallow Crust,0.0,89.9906,-90.0,02/04/1456 +-3.15193,49.40888,281,5,5,11,32,35,4.25,15.0,fr,10042,5,422005,1,1,Active Shallow Crust,0.0,89.98974,0.0,05/05/0281 +1.80531,47.47984,3890,4,18,22,47,6,3.55,15.0,fr,10043,77,422401,1,1,Active Shallow Crust,0.0,89.98978,0.0,04/18/3890 +1.80531,47.47984,421,7,27,16,2,21,3.95,5.0,fr,10044,8,422448,1,1,Active Shallow Crust,0.0,89.99033,0.0,07/27/0421 +1.80531,47.47984,1578,5,10,0,32,29,3.95,5.0,fr,10045,31,422457,1,1,Active Shallow Crust,128.9003,89.99355,0.0,05/10/1578 +1.80531,47.47984,3557,8,10,18,42,9,4.35,5.0,fr,10046,71,422496,1,1,Active Shallow Crust,0.0,89.98982,0.0,08/10/3557 +1.80531,47.47984,9698,4,10,4,2,24,4.35,15.0,fr,10047,193,422497,1,1,Active Shallow Crust,0.0,89.98982,0.0,04/10/9698 +4.21849,40.49679,394,12,7,11,47,44,3.85,5.0,fr,10048,7,422916,1,1,Active Shallow Crust,0.0,89.98914,0.0,12/07/0394 +-2.43472,43.87995,2518,6,20,11,26,18,3.55,15.0,fr,10049,50,424321,1,1,Active Shallow Crust,0.0,89.9891,0.0,06/20/2518 +-2.43472,43.87995,3150,4,14,10,2,34,3.95,5.0,fr,10050,62,424377,1,1,Active Shallow Crust,128.9005,89.99427,0.0,04/14/3150 +-3.27939,47.09356,9973,2,25,15,0,0,3.55,5.0,fr,10051,199,424800,1,1,Active Shallow Crust,0.0,89.9897,0.0,02/25/9973 +5.9647,42.6213,2762,1,30,16,7,31,3.75,15.0,fr,10052,55,425314,1,1,Active Shallow Crust,128.8974,89.96742,0.0,01/30/2762 +5.9647,42.6213,103,1,8,2,59,48,4.15,5.0,fr,10053,2,425352,1,1,Active Shallow Crust,0.0,89.98885,0.0,01/08/0103 +6.47225,47.93069,1083,8,26,10,31,55,3.55,5.0,fr,10054,21,425760,1,2,Active Shallow Crust,0.0,89.99324,0.0,08/26/1083 +6.47225,47.93069,9145,4,9,16,18,30,3.55,5.0,fr,10055,182,425760,1,2,Active Shallow Crust,0.0,89.99324,0.0,04/09/9145 +6.47225,47.93069,4428,5,24,0,59,32,3.55,27.5,fr,10056,88,425762,1,1,Active Shallow Crust,0.0,89.99324,0.0,05/24/4428 +6.47225,47.93069,8796,11,5,14,19,43,3.65,5.0,fr,10057,175,425772,1,1,Active Shallow Crust,0.0,89.98795,0.0,11/05/8796 +6.47225,47.93069,5201,8,25,8,12,48,3.75,5.0,fr,10058,104,425784,1,2,Active Shallow Crust,0.0,89.98927,0.0,08/25/5201 +6.47225,47.93069,8025,12,21,17,43,14,3.75,5.0,fr,10059,160,425784,1,2,Active Shallow Crust,0.0,89.98927,0.0,12/21/8025 +6.47225,47.93069,3007,7,8,0,9,39,3.75,15.0,fr,10060,60,425785,1,1,Active Shallow Crust,0.0,89.98927,0.0,07/08/3007 +6.47225,47.93069,9803,8,20,5,18,42,3.75,5.0,fr,10061,196,425793,1,1,Active Shallow Crust,128.8957,89.96751,0.0,08/20/9803 +6.47225,47.93069,6515,8,29,1,59,38,3.75,15.0,fr,10062,130,425794,1,1,Active Shallow Crust,128.8957,89.96751,0.0,08/29/6515 +6.47225,47.93069,4790,6,5,4,20,11,3.85,5.0,fr,10063,95,425796,1,3,Active Shallow Crust,0.0,89.99043,0.0,06/05/4790 +6.47225,47.93069,3588,10,27,2,44,19,3.85,5.0,fr,10064,71,425796,1,3,Active Shallow Crust,0.0,89.99043,0.0,10/27/3588 +6.47225,47.93069,3122,2,20,4,6,52,3.85,5.0,fr,10065,62,425796,1,3,Active Shallow Crust,0.0,89.99043,0.0,02/20/3122 +6.47225,47.93069,7422,6,18,7,46,0,3.85,15.0,fr,10066,148,425797,1,1,Active Shallow Crust,0.0,89.99043,0.0,06/18/7422 +6.47225,47.93069,3780,1,4,5,46,6,3.85,5.0,fr,10067,75,425799,1,1,Active Shallow Crust,240.0113,57.99829,0.0,01/04/3780 +6.47225,47.93069,1111,1,11,10,25,8,3.85,15.0,fr,10068,22,425803,1,1,Active Shallow Crust,0.0,89.99033,-90.0,01/11/1111 +6.47225,47.93069,6669,11,21,10,52,54,3.85,5.0,fr,10069,133,425805,1,1,Active Shallow Crust,128.8958,89.99522,0.0,11/21/6669 +6.47225,47.93069,9664,3,22,10,50,21,3.85,15.0,fr,10070,193,425806,1,1,Active Shallow Crust,128.8958,89.99522,0.0,03/22/9664 +6.47225,47.93069,7465,3,20,7,4,46,3.95,5.0,fr,10071,149,425808,1,1,Active Shallow Crust,0.0,89.99147,0.0,03/20/7465 +6.47225,47.93069,9353,11,11,5,57,45,3.95,27.5,fr,10072,187,425813,1,1,Active Shallow Crust,240.0196,58.00491,0.0,11/11/9353 +6.47225,47.93069,6936,5,14,15,50,46,3.95,15.0,fr,10073,138,425815,1,1,Active Shallow Crust,0.0,89.99137,-90.0,05/14/6936 +6.47225,47.93069,9336,1,26,19,56,33,3.95,5.0,fr,10074,186,425817,1,1,Active Shallow Crust,128.9005,89.99361,0.0,01/26/9336 +6.47225,47.93069,1358,10,13,19,50,46,4.05,5.0,fr,10075,27,425820,1,1,Active Shallow Crust,0.0,89.9886,0.0,10/13/1358 +6.47225,47.93069,1882,6,28,2,19,30,4.05,5.0,fr,10076,37,425826,1,1,Active Shallow Crust,0.0,89.98847,-90.0,06/28/1882 +6.47225,47.93069,1147,7,4,7,24,8,4.05,5.0,fr,10077,22,425829,1,1,Active Shallow Crust,128.8914,89.9924,0.0,07/04/1147 +6.47225,47.93069,268,10,16,12,30,3,4.15,15.0,fr,10078,5,425836,1,1,Active Shallow Crust,240.0089,57.99791,0.0,10/16/0268 +6.47225,47.93069,8547,12,6,9,29,14,4.15,5.0,fr,10079,170,425838,1,1,Active Shallow Crust,0.0,89.98972,-90.0,12/06/8547 +6.47225,47.93069,1982,11,23,7,59,12,4.35,5.0,fr,10080,39,425865,1,1,Active Shallow Crust,128.8978,89.98259,0.0,11/23/1982 +6.47225,47.93069,6369,3,13,9,19,11,4.55,5.0,fr,10081,127,425880,1,1,Active Shallow Crust,0.0,89.98932,0.0,03/13/6369 +6.47225,47.93069,7664,4,23,12,15,33,4.65,5.0,fr,10082,153,425892,1,2,Active Shallow Crust,0.0,89.99048,0.0,04/23/7664 +6.47225,47.93069,7476,10,20,2,43,59,4.65,5.0,fr,10083,149,425892,1,2,Active Shallow Crust,0.0,89.99048,0.0,10/20/7476 +6.47225,47.93069,3068,11,5,3,25,40,4.65,5.0,fr,10084,61,425898,1,1,Active Shallow Crust,0.0,89.99036,-90.0,11/05/3068 +6.47225,47.93069,6833,10,31,15,1,8,4.75,5.0,fr,10085,136,425907,1,1,Active Shallow Crust,240.0081,58.00463,0.0,10/31/6833 +6.47225,47.93069,2292,12,19,2,26,30,4.75,5.0,fr,10086,45,425913,1,1,Active Shallow Crust,128.8884,89.98781,0.0,12/19/2292 +2.27208,44.48325,6852,10,21,20,57,53,3.55,5.0,fr,10087,137,426240,1,2,Active Shallow Crust,0.0,89.98921,0.0,10/21/6852 +2.27208,44.48325,210,10,10,8,37,39,3.55,5.0,fr,10088,4,426240,1,2,Active Shallow Crust,0.0,89.98921,0.0,10/10/0210 +2.27208,44.48325,9055,10,5,18,36,20,3.55,15.0,fr,10089,181,426241,1,1,Active Shallow Crust,0.0,89.98921,0.0,10/05/9055 +2.27208,44.48325,6721,3,14,11,4,35,3.65,5.0,fr,10090,134,426252,1,1,Active Shallow Crust,0.0,89.99038,0.0,03/14/6721 +2.27208,44.48325,3939,1,4,5,27,9,3.65,15.0,fr,10091,78,426259,1,1,Active Shallow Crust,0.0,89.99027,-90.0,01/04/3939 +2.27208,44.48325,1793,8,6,3,53,0,3.75,5.0,fr,10092,35,426264,1,2,Active Shallow Crust,359.9986,89.99142,0.0,08/06/1793 +2.27208,44.48325,8891,10,5,13,10,19,3.75,5.0,fr,10093,177,426264,1,2,Active Shallow Crust,359.9986,89.99142,0.0,10/05/8891 +2.27208,44.48325,3689,10,24,0,45,18,3.75,5.0,fr,10094,73,426267,1,1,Active Shallow Crust,240.008,58.01742,0.0,10/24/3689 +2.27208,44.48325,3449,2,2,7,21,12,3.75,5.0,fr,10095,68,426270,1,1,Active Shallow Crust,0.0,89.99133,-90.0,02/02/3449 +2.27208,44.48325,9301,1,6,18,12,16,3.75,27.5,fr,10096,186,426272,1,1,Active Shallow Crust,0.0,89.99133,-90.0,01/06/9301 +2.27208,44.48325,4332,8,2,15,56,28,3.95,15.0,fr,10097,86,426295,1,1,Active Shallow Crust,0.0,89.99081,-90.0,08/02/4332 +2.27208,44.48325,1942,7,12,7,57,58,4.05,5.0,fr,10098,38,426309,1,1,Active Shallow Crust,128.891,89.99393,0.0,07/12/1942 +2.27208,44.48325,720,7,22,4,43,4,4.35,15.0,fr,10099,14,426346,1,1,Active Shallow Crust,128.8984,89.9827,0.0,07/22/0720 +2.27208,44.48325,7903,4,4,7,1,57,4.85,15.0,fr,10100,158,426397,1,1,Active Shallow Crust,0.0,89.99033,0.0,04/04/7903 +2.27208,44.48325,1766,11,13,16,18,51,5.05,5.0,fr,10101,35,426420,1,1,Active Shallow Crust,0.0,89.98976,0.0,11/13/1766 +2.272095,44.48325,7522,9,17,5,3,14,6.75,11.99416,fr,10102,150,426624,1,1,Active Shallow Crust,0.0,89.99,0.0,09/17/7522 +6.9288,50.12613,8952,6,6,2,51,15,3.65,5.0,fr,10103,179,426732,1,1,Active Shallow Crust,0.0,89.98848,0.0,06/06/8952 +6.9288,50.12613,24,2,3,20,1,27,3.65,15.0,fr,10104,0,426733,1,1,Active Shallow Crust,0.0,89.98848,0.0,02/03/0024 +6.9288,50.12613,6842,1,13,19,27,33,3.75,5.0,fr,10105,136,426744,1,1,Active Shallow Crust,0.0,89.98973,0.0,01/13/6842 +6.9288,50.12613,2793,1,31,10,3,13,3.75,5.0,fr,10106,55,426753,1,1,Active Shallow Crust,128.8952,89.96755,0.0,01/31/2793 +6.9288,50.12613,5024,9,23,12,40,9,3.85,5.0,fr,10107,100,426756,1,1,Active Shallow Crust,0.0,89.99084,0.0,09/23/5024 +6.9288,50.12613,2502,4,3,18,39,21,3.95,27.5,fr,10108,50,426770,1,1,Active Shallow Crust,0.0,89.99184,0.0,04/03/2502 +6.9288,50.12613,4878,5,26,22,11,18,3.95,5.0,fr,10109,97,426771,1,1,Active Shallow Crust,240.0206,58.00526,0.0,05/26/4878 +6.9288,50.12613,8668,3,20,19,25,4,4.15,5.0,fr,10110,173,426792,1,2,Active Shallow Crust,0.0,89.99028,0.0,03/20/8668 +6.9288,50.12613,4114,4,9,2,6,6,4.15,5.0,fr,10111,82,426792,1,2,Active Shallow Crust,0.0,89.99028,0.0,04/09/4114 +6.9288,50.12613,1634,12,23,18,20,11,4.25,5.0,fr,10112,32,426804,1,1,Active Shallow Crust,0.0,89.99133,0.0,12/23/1634 +6.9288,50.12613,3234,8,4,19,30,5,5.15,27.5,fr,10113,64,426914,1,1,Active Shallow Crust,0.0,89.98975,0.0,08/04/3234 +4.93561,41.81453,8889,4,2,6,29,22,4.05,5.0,fr,10114,177,427260,1,1,Active Shallow Crust,0.0,89.99155,0.0,04/02/8889 +4.93561,41.81453,7302,9,5,10,43,53,5.15,5.0,fr,10115,146,427401,1,1,Active Shallow Crust,128.8862,89.99084,0.0,09/05/7302 +3.03372,40.326,1007,9,8,8,50,50,3.55,5.0,fr,10116,20,427680,1,1,Active Shallow Crust,0.0,89.98847,0.0,09/08/1007 +3.03372,40.326,6274,6,2,14,43,6,3.65,27.5,fr,10117,125,427694,1,1,Active Shallow Crust,0.0,89.98972,0.0,06/02/6274 +3.04653,44.86796,2151,2,25,11,11,26,3.55,5.0,fr,10118,43,428169,1,1,Active Shallow Crust,128.8961,89.99464,0.0,02/25/2151 +3.04653,44.86796,3524,12,5,11,35,9,3.65,15.0,fr,10119,70,428173,1,1,Active Shallow Crust,0.0,89.99045,0.0,12/05/3524 +3.04653,44.86796,5105,10,6,5,16,15,3.75,5.0,fr,10120,102,428184,1,1,Active Shallow Crust,0.0,89.98865,0.0,10/06/5105 +3.04653,44.86796,9073,11,7,16,58,48,3.75,27.5,fr,10121,181,428186,1,1,Active Shallow Crust,0.0,89.98865,0.0,11/07/9073 +3.04653,44.86796,6195,7,13,23,53,41,3.75,27.5,fr,10122,123,428189,1,1,Active Shallow Crust,240.0086,58.01729,0.0,07/13/6195 +3.04653,44.86796,8406,9,9,17,49,50,3.85,15.0,fr,10123,168,428197,1,1,Active Shallow Crust,0.0,89.98988,0.0,09/09/8406 +3.04653,44.86796,3923,6,7,8,53,46,3.95,15.0,fr,10124,78,428209,1,1,Active Shallow Crust,0.0,89.99098,0.0,06/07/3923 +3.04653,44.86796,5331,3,4,10,14,43,3.95,5.0,fr,10125,106,428214,1,1,Active Shallow Crust,0.0,89.99088,-90.0,03/04/5331 +3.04653,44.86796,4066,7,5,18,3,16,4.15,5.0,fr,10126,81,428232,1,1,Active Shallow Crust,0.0,89.98925,0.0,07/05/4066 +3.04653,44.86796,8703,5,28,9,53,0,4.25,5.0,fr,10127,174,428244,1,1,Active Shallow Crust,0.0,89.99043,0.0,05/28/8703 +3.04653,44.86796,7013,1,3,10,57,18,4.25,15.0,fr,10128,140,428245,1,1,Active Shallow Crust,0.0,89.99043,0.0,01/03/7013 +3.04653,44.86796,38,3,17,22,15,25,4.75,15.0,fr,10129,0,428305,1,1,Active Shallow Crust,0.0,89.99013,0.0,03/17/0038 +3.04653,44.86796,5084,5,19,5,7,52,5.35,15.0,fr,10130,101,428383,1,1,Active Shallow Crust,0.0,89.98998,-90.0,05/19/5084 +0.98562,48.89048,5303,7,13,8,56,39,3.55,15.0,fr,10131,106,428641,1,1,Active Shallow Crust,0.0,89.99005,0.0,07/13/5303 +0.98562,48.89048,8671,3,1,15,15,3,3.55,5.0,fr,10132,173,428643,1,1,Active Shallow Crust,240.0125,57.99819,0.0,03/01/8671 +0.98562,48.89048,4956,6,5,2,35,11,3.55,15.0,fr,10133,99,428650,1,1,Active Shallow Crust,128.8961,89.99337,0.0,06/05/4956 +0.98562,48.89048,6668,5,23,15,0,58,3.65,5.0,fr,10134,133,428661,1,1,Active Shallow Crust,128.9002,89.96351,0.0,05/23/6668 +0.98562,48.89048,5546,1,9,17,56,32,3.85,5.0,fr,10135,110,428679,1,1,Active Shallow Crust,240.0112,57.99786,0.0,01/09/5546 +0.98562,48.89048,2816,10,4,18,46,20,4.55,5.0,fr,10136,56,428766,1,1,Active Shallow Crust,0.0,89.98992,-90.0,10/04/2816 +-6.00279,49.27056,7339,6,10,15,13,39,3.65,27.5,fr,10137,146,429134,1,1,Active Shallow Crust,0.0,89.98827,0.0,06/10/7339 +3.52019,50.92882,9310,8,14,3,37,27,3.55,15.0,fr,10138,186,430081,1,1,Active Shallow Crust,0.0,89.99046,0.0,08/14/9310 +3.52019,50.92882,9755,1,10,4,12,53,3.75,15.0,fr,10139,195,430105,1,1,Active Shallow Crust,0.0,89.98991,0.0,01/10/9755 +3.52019,50.92882,990,2,1,21,20,57,4.05,15.0,fr,10140,19,430141,1,1,Active Shallow Crust,0.0,89.98928,0.0,02/01/0990 +3.52019,50.92882,7410,4,23,22,20,29,4.95,5.0,fr,10141,148,430251,1,1,Active Shallow Crust,240.0141,58.00487,0.0,04/23/7410 +2.74201,45.343,3798,12,19,9,42,38,3.55,5.0,fr,10142,75,430560,1,2,Active Shallow Crust,0.0,89.98937,0.0,12/19/3798 +2.74201,45.343,1289,2,17,18,48,2,3.55,5.0,fr,10143,25,430560,1,2,Active Shallow Crust,0.0,89.98937,0.0,02/17/1289 +2.74201,45.343,7820,11,20,18,41,41,3.55,15.0,fr,10144,156,430561,1,1,Active Shallow Crust,0.0,89.98937,0.0,11/20/7820 +2.74201,45.343,1676,9,30,2,36,0,3.55,27.5,fr,10145,33,430562,1,1,Active Shallow Crust,0.0,89.98937,0.0,09/30/1676 +2.74201,45.343,4331,10,27,7,22,1,3.55,15.0,fr,10146,86,430564,1,1,Active Shallow Crust,240.0124,57.99792,0.0,10/27/4331 +2.74201,45.343,2169,8,25,18,15,36,3.55,5.0,fr,10147,43,430566,1,1,Active Shallow Crust,0.0,89.98924,-90.0,08/25/2169 +2.74201,45.343,7097,8,15,22,50,53,3.65,5.0,fr,10148,141,430572,1,1,Active Shallow Crust,0.0,89.99052,0.0,08/15/7097 +2.74201,45.343,6039,4,22,16,11,50,3.75,5.0,fr,10149,120,430584,1,1,Active Shallow Crust,0.0,89.98874,0.0,04/22/6039 +2.74201,45.343,1047,5,6,0,28,59,3.75,15.0,fr,10150,20,430591,1,1,Active Shallow Crust,0.0,89.98861,-90.0,05/06/1047 +2.74201,45.343,7205,4,7,20,3,52,3.85,5.0,fr,10151,144,430596,1,1,Active Shallow Crust,0.0,89.98997,0.0,04/07/7205 +2.74201,45.343,4882,9,1,12,59,30,3.85,5.0,fr,10152,97,430599,1,2,Active Shallow Crust,240.0111,57.99776,0.0,09/01/4882 +2.74201,45.343,6690,2,5,10,43,10,3.85,5.0,fr,10153,133,430599,1,2,Active Shallow Crust,240.0111,57.99776,0.0,02/05/6690 +2.74201,45.343,1553,11,20,11,52,11,3.95,5.0,fr,10154,31,430608,1,1,Active Shallow Crust,0.0,89.99106,0.0,11/20/1553 +2.74201,45.343,1039,8,20,23,56,55,4.05,5.0,fr,10155,20,430623,1,1,Active Shallow Crust,240.006,58.00588,0.0,08/20/1039 +2.74201,45.343,9976,2,7,1,50,54,4.35,5.0,fr,10156,199,430665,1,1,Active Shallow Crust,128.8981,89.98273,0.0,02/07/9976 +2.74201,45.343,2680,1,2,23,34,1,4.65,5.0,fr,10157,53,430692,1,1,Active Shallow Crust,0.0,89.99001,0.0,01/02/2680 +2.74201,45.343,1641,10,21,9,39,19,4.95,15.0,fr,10158,32,430729,1,1,Active Shallow Crust,0.0,89.9901,0.0,10/21/1641 +2.74201,45.343,2914,3,23,8,40,37,5.05,5.0,fr,10159,58,430740,1,1,Active Shallow Crust,0.0,89.98991,0.0,03/23/2914 +-0.57152,45.30006,7258,9,3,15,36,48,3.75,15.0,fr,10160,145,431545,1,1,Active Shallow Crust,0.0,89.99014,0.0,09/03/7258 +-0.57152,45.30006,6449,12,30,3,56,11,3.95,15.0,fr,10161,128,431572,1,1,Active Shallow Crust,240.0197,58.00493,0.0,12/30/6449 +-0.57152,45.30006,5030,3,2,15,13,46,4.55,5.0,fr,10162,100,431640,1,1,Active Shallow Crust,0.0,89.98991,0.0,03/02/5030 +-0.57152,45.30006,5587,9,16,3,19,43,4.85,15.0,fr,10163,111,431677,1,1,Active Shallow Crust,0.0,89.99007,0.0,09/16/5587 +-0.57152,45.30006,7329,7,28,23,46,58,4.95,5.0,fr,10164,146,431688,1,1,Active Shallow Crust,0.0,89.98991,0.0,07/28/7329 +5.19563,50.03056,6067,10,17,22,31,55,3.75,5.0,fr,10165,121,432024,1,2,Active Shallow Crust,0.0,89.98971,0.0,10/17/6067 +5.19563,50.03056,965,1,21,6,23,58,3.75,5.0,fr,10166,19,432024,1,2,Active Shallow Crust,0.0,89.98971,0.0,01/21/0965 +0.83961,50.06527,2078,10,12,14,23,12,3.55,5.0,fr,10167,41,432480,1,1,Active Shallow Crust,0.0,89.99029,0.0,10/12/2078 +0.83961,50.06527,5087,5,28,23,59,47,3.65,5.0,fr,10168,101,432492,1,1,Active Shallow Crust,0.0,89.98991,0.0,05/28/5087 +0.83961,50.06527,1823,9,5,10,22,54,3.65,15.0,fr,10169,36,432493,1,1,Active Shallow Crust,0.0,89.98991,0.0,09/05/1823 +0.83961,50.06527,1085,12,4,9,38,29,3.75,15.0,fr,10170,21,432505,1,1,Active Shallow Crust,0.0,89.98972,0.0,12/04/1085 +0.83961,50.06527,1483,3,24,9,4,4,3.75,27.5,fr,10171,29,432506,1,1,Active Shallow Crust,0.0,89.98972,0.0,03/24/1483 +0.83961,50.06527,8627,9,16,5,30,29,3.85,5.0,fr,10172,172,432516,1,1,Active Shallow Crust,0.0,89.99026,0.0,09/16/8627 +0.83961,50.06527,7366,5,18,19,50,21,3.95,5.0,fr,10173,147,432528,1,1,Active Shallow Crust,0.0,89.98979,0.0,05/18/7366 +0.83961,50.06527,4789,9,13,4,48,53,3.95,15.0,fr,10174,95,432529,1,1,Active Shallow Crust,0.0,89.98979,0.0,09/13/4789 +0.83961,50.06527,2279,10,28,19,14,58,3.95,5.0,fr,10175,45,432534,1,1,Active Shallow Crust,0.0,89.99019,-90.0,10/28/2279 +0.83961,50.06527,729,6,20,0,16,52,4.25,5.0,fr,10176,14,432573,1,1,Active Shallow Crust,128.8937,89.9809,0.0,06/20/0729 +0.83961,50.06527,8797,9,21,21,14,2,4.45,15.0,fr,10177,175,432589,1,1,Active Shallow Crust,0.0,89.98995,0.0,09/21/8797 +0.83961,50.06527,634,7,9,14,24,35,4.95,15.0,fr,10178,12,432652,1,1,Active Shallow Crust,240.0137,58.00481,0.0,07/09/0634 +4.47437,44.02482,9146,7,16,22,58,0,3.55,5.0,fr,10179,182,432960,1,1,Active Shallow Crust,0.0,89.99275,0.0,07/16/9146 +4.47437,44.02482,8057,8,3,13,16,1,3.65,5.0,fr,10180,161,432972,1,1,Active Shallow Crust,0.0,89.98708,0.0,08/03/8057 +4.47437,44.02482,5515,7,29,3,32,14,3.65,15.0,fr,10181,110,432973,1,1,Active Shallow Crust,0.0,89.98708,0.0,07/29/5515 +4.47437,44.02482,1647,12,17,11,12,15,3.75,5.0,fr,10182,32,432984,1,1,Active Shallow Crust,0.0,89.98848,0.0,12/17/1647 +4.47437,44.02482,2370,9,30,14,18,44,3.85,5.0,fr,10183,47,432996,1,1,Active Shallow Crust,0.0,89.98973,0.0,09/30/2370 +4.47437,44.02482,3236,11,20,16,0,30,3.85,27.5,fr,10184,64,432998,1,1,Active Shallow Crust,0.0,89.98973,0.0,11/20/3236 +4.47437,44.02482,3356,9,10,15,17,32,3.85,15.0,fr,10185,67,433000,1,1,Active Shallow Crust,240.0109,57.99759,0.0,09/10/3356 +4.47437,44.02482,5166,6,22,14,52,43,3.85,5.0,fr,10186,103,433002,1,1,Active Shallow Crust,0.0,89.98962,-90.0,06/22/5166 +4.47437,44.02482,3793,7,23,7,32,6,3.95,5.0,fr,10187,75,433008,1,1,Active Shallow Crust,0.0,89.99085,0.0,07/23/3793 +4.47437,44.02482,7183,2,20,11,13,13,4.25,5.0,fr,10188,143,433044,1,1,Active Shallow Crust,0.0,89.99028,0.0,02/20/7183 +4.47437,44.02482,1829,9,4,17,52,19,4.35,5.0,fr,10189,36,433062,1,1,Active Shallow Crust,0.0,89.99124,-90.0,09/04/1829 +4.47437,44.02482,8280,12,22,13,14,9,4.55,5.0,fr,10190,165,433080,1,1,Active Shallow Crust,0.0,89.99083,0.0,12/22/8280 +4.47437,44.02482,9399,1,1,1,43,45,4.65,5.0,fr,10191,187,433092,1,1,Active Shallow Crust,0.0,89.98978,0.0,01/01/9399 +4.47437,44.02482,1970,1,21,22,47,0,4.65,27.5,fr,10192,39,433097,1,1,Active Shallow Crust,240.0103,57.99409,0.0,01/21/1970 +4.47437,44.02482,2462,3,16,11,56,42,4.95,5.0,fr,10193,49,433128,1,1,Active Shallow Crust,0.0,89.98987,0.0,03/16/2462 +4.47437,44.02482,2046,12,11,23,8,9,5.85,27.5,fr,10194,40,433238,1,1,Active Shallow Crust,0.0,89.99024,0.0,12/11/2046 +4.61699,40.55133,4077,6,19,1,0,35,3.65,5.0,fr,10195,81,433458,1,1,Active Shallow Crust,0.0,89.9931,-90.0,06/19/4077 +4.61699,40.55133,4656,5,8,17,42,32,3.85,5.0,fr,10196,93,433476,1,1,Active Shallow Crust,0.0,89.98915,0.0,05/08/4656 +4.61699,40.55133,23,2,5,3,52,48,3.85,5.0,fr,10197,0,433482,1,1,Active Shallow Crust,0.0,89.98903,-90.0,02/05/0023 +4.61699,40.55133,4194,9,23,8,30,20,4.25,15.0,fr,10198,83,433525,1,1,Active Shallow Crust,0.0,89.98973,0.0,09/23/4194 +4.61699,40.55133,1420,10,24,7,29,24,4.75,15.0,fr,10199,28,433585,1,1,Active Shallow Crust,0.0,89.99038,0.0,10/24/1420 +1.78285,48.13959,939,4,8,6,56,55,3.65,15.0,fr,10200,18,434893,1,1,Active Shallow Crust,0.0,89.9895,0.0,04/08/0939 +1.78285,48.13959,4715,4,29,12,0,29,3.75,27.5,fr,10201,94,434906,1,1,Active Shallow Crust,0.0,89.99065,0.0,04/29/4715 +1.78285,48.13959,8316,5,18,23,44,16,3.95,5.0,fr,10202,166,434928,1,1,Active Shallow Crust,0.0,89.99045,0.0,05/18/8316 +8.55601,48.54922,3641,8,29,11,42,42,3.55,27.5,fr,10203,72,435362,1,1,Active Shallow Crust,0.0,89.98665,0.0,08/29/3641 +8.55601,48.54922,6080,10,15,11,9,37,3.55,5.0,fr,10204,121,435363,1,1,Active Shallow Crust,240.0139,57.99877,0.0,10/15/6080 +8.55601,48.54922,2452,4,18,22,7,14,3.55,15.0,fr,10205,49,435364,1,1,Active Shallow Crust,240.0139,57.99877,0.0,04/18/2452 +8.55601,48.54922,7167,5,13,12,39,34,3.55,15.0,fr,10206,143,435367,1,1,Active Shallow Crust,0.0,89.9865,-90.0,05/13/7167 +8.55601,48.54922,2979,12,31,18,59,8,3.55,15.0,fr,10207,59,435370,1,1,Active Shallow Crust,128.8968,89.99332,0.0,12/31/2979 +8.55601,48.54922,7230,4,15,3,45,55,3.65,5.0,fr,10208,144,435372,1,1,Active Shallow Crust,0.0,89.9881,0.0,04/15/7230 +8.55601,48.54922,4188,6,26,1,55,54,3.75,5.0,fr,10209,83,435384,1,1,Active Shallow Crust,0.0,89.9894,0.0,06/26/4188 +8.55601,48.54922,3699,12,21,23,4,56,3.75,15.0,fr,10210,73,435385,1,1,Active Shallow Crust,0.0,89.9894,0.0,12/21/3699 +8.55601,48.54922,7424,3,13,12,36,43,3.75,5.0,fr,10211,148,435387,1,1,Active Shallow Crust,240.008,58.01764,0.0,03/13/7424 +8.55601,48.54922,7893,8,3,10,25,37,3.85,5.0,fr,10212,157,435396,1,1,Active Shallow Crust,0.0,89.99055,0.0,08/03/7893 +8.55601,48.54922,9419,6,12,23,48,14,3.85,15.0,fr,10213,188,435397,1,1,Active Shallow Crust,0.0,89.99055,0.0,06/12/9419 +8.55601,48.54922,563,10,12,6,55,35,3.95,15.0,fr,10214,11,435418,1,1,Active Shallow Crust,128.9011,89.99158,0.0,10/12/0563 +8.55601,48.54922,3003,5,10,8,17,48,4.05,15.0,fr,10215,60,435424,1,1,Active Shallow Crust,240.0068,58.00586,0.0,05/10/3003 +8.55601,48.54922,3140,2,1,6,30,11,4.15,15.0,fr,10216,62,435436,1,2,Active Shallow Crust,240.0095,57.99796,0.0,02/01/3140 +8.55601,48.54922,2914,10,24,2,8,52,4.15,15.0,fr,10217,58,435436,1,2,Active Shallow Crust,240.0095,57.99796,0.0,10/24/2914 +8.55601,48.54922,9888,10,6,23,8,10,4.25,15.0,fr,10218,197,435445,1,1,Active Shallow Crust,0.0,89.98808,0.0,10/06/9888 +8.55601,48.54922,239,7,19,2,40,49,4.45,5.0,fr,10219,4,435468,1,1,Active Shallow Crust,0.0,89.99052,0.0,07/19/0239 +8.55601,48.54922,2886,2,24,0,46,46,4.65,5.0,fr,10220,57,435492,1,1,Active Shallow Crust,0.0,89.98871,0.0,02/24/2886 +8.55601,48.54922,7200,1,13,0,42,39,4.95,5.0,fr,10221,143,435534,1,1,Active Shallow Crust,0.0,89.98922,-90.0,01/13/7200 +1.41191,52.03046,1124,7,27,19,39,53,3.85,5.0,fr,10222,22,435876,1,1,Active Shallow Crust,0.0,89.99012,0.0,07/27/1124 +1.41191,52.03046,6263,5,1,13,38,45,4.15,5.0,fr,10223,125,435915,1,1,Active Shallow Crust,240.0097,57.99749,0.0,05/01/6263 +1.41191,52.03046,1587,1,19,1,46,44,4.25,5.0,fr,10224,31,435930,1,1,Active Shallow Crust,0.0,89.99019,-90.0,01/19/1587 +1.41191,52.03046,5855,4,25,10,57,45,4.45,5.0,fr,10225,117,435957,1,1,Active Shallow Crust,128.8909,89.99368,0.0,04/25/5855 +-1.77331,47.6377,7008,12,6,9,2,33,3.55,5.0,fr,10226,140,436320,1,2,Active Shallow Crust,0.0,89.98981,0.0,12/06/7008 +-1.77331,47.6377,3446,4,1,14,10,10,3.55,5.0,fr,10227,68,436320,1,2,Active Shallow Crust,0.0,89.98981,0.0,04/01/3446 +-1.77331,47.6377,1093,10,25,10,9,14,3.55,15.0,fr,10228,21,436321,1,1,Active Shallow Crust,0.0,89.98981,0.0,10/25/1093 +-1.77331,47.6377,939,7,23,7,47,20,3.55,5.0,fr,10229,18,436323,1,1,Active Shallow Crust,240.0125,57.99817,0.0,07/23/0939 +-1.77331,47.6377,2317,9,17,0,1,24,3.55,27.5,fr,10230,46,436328,1,1,Active Shallow Crust,0.0,89.98969,-90.0,09/17/2317 +-1.77331,47.6377,4156,2,17,5,8,55,4.25,5.0,fr,10231,83,436404,1,1,Active Shallow Crust,0.0,89.99014,0.0,02/17/4156 +-1.77331,47.6377,5241,12,21,19,12,2,4.45,5.0,fr,10232,104,436434,1,1,Active Shallow Crust,0.0,89.99024,-90.0,12/21/5241 +-1.77331,47.6377,8722,1,11,7,44,23,4.65,5.0,fr,10233,174,436455,1,1,Active Shallow Crust,240.0112,57.99429,0.0,01/11/8722 +-1.773304,47.6377,665,2,20,18,53,28,6.35,7.567806,fr,10234,13,436656,1,1,Active Shallow Crust,0.0,89.98998,0.0,02/20/0665 +-4.03736,48.92565,6174,7,12,20,19,32,3.65,5.0,fr,10235,123,436812,1,1,Active Shallow Crust,0.0,89.98819,0.0,07/12/6174 +-4.03736,48.92565,1695,10,24,22,24,26,3.65,15.0,fr,10236,33,436816,1,1,Active Shallow Crust,240.0006,58.01384,0.0,10/24/1695 +-4.03736,48.92565,7587,6,13,16,57,58,3.85,5.0,fr,10237,151,436836,1,1,Active Shallow Crust,0.0,89.99062,0.0,06/13/7587 +-4.03736,48.92565,1254,4,18,13,21,56,4.15,5.0,fr,10238,25,436875,1,1,Active Shallow Crust,240.0096,57.99738,0.0,04/18/1254 +-4.03736,48.92565,2893,1,22,3,45,12,4.25,5.0,fr,10239,57,436884,1,1,Active Shallow Crust,0.0,89.99112,0.0,01/22/2893 +-4.03736,48.92565,3473,1,31,1,20,0,4.25,15.0,fr,10240,69,436885,1,1,Active Shallow Crust,0.0,89.99112,0.0,01/31/3473 +-4.03736,48.92565,5189,5,24,15,3,48,4.45,27.5,fr,10241,103,436910,1,1,Active Shallow Crust,0.0,89.99059,0.0,05/24/5189 +-4.03736,48.92565,3980,1,1,19,55,53,4.45,5.0,fr,10242,79,436914,1,1,Active Shallow Crust,0.0,89.99049,-90.0,01/01/3980 +-4.03736,48.92565,8604,12,3,1,44,15,4.55,5.0,fr,10243,172,436920,1,1,Active Shallow Crust,0.0,89.98952,0.0,12/03/8604 +2.01104,40.43911,2935,7,17,10,34,0,3.65,5.0,fr,10244,58,437292,1,1,Active Shallow Crust,0.0,89.98974,0.0,07/17/2935 +2.01104,40.43911,4840,11,7,13,6,11,3.75,5.0,fr,10245,96,437307,1,1,Active Shallow Crust,240.0076,58.01731,0.0,11/07/4840 +-2.63546,46.74639,4982,1,17,17,0,17,3.55,5.0,fr,10246,99,437760,1,1,Active Shallow Crust,0.0,89.98963,0.0,01/17/4982 +-2.63546,46.74639,2510,1,16,9,31,20,3.55,15.0,fr,10247,50,437767,1,1,Active Shallow Crust,0.0,89.98952,-90.0,01/16/2510 +-2.63546,46.74639,2362,2,12,22,5,25,3.75,15.0,fr,10248,47,437785,1,1,Active Shallow Crust,0.0,89.98902,0.0,02/12/2362 +-2.63546,46.74639,3084,11,25,23,8,19,4.05,5.0,fr,10249,61,437820,1,1,Active Shallow Crust,0.0,89.99029,0.0,11/25/3084 +-3.89423,49.20938,563,12,8,11,53,58,3.75,5.0,fr,10250,11,438264,1,1,Active Shallow Crust,0.0,89.98953,0.0,12/08/0563 +-3.89423,49.20938,6991,10,31,10,45,53,4.15,5.0,fr,10251,139,438312,1,1,Active Shallow Crust,0.0,89.9901,0.0,10/31/6991 +-3.89423,49.20938,7408,3,11,22,13,11,4.35,5.0,fr,10252,148,438336,1,1,Active Shallow Crust,0.0,89.98951,0.0,03/11/7408 +-3.89423,49.20938,5118,11,3,8,34,3,4.65,15.0,fr,10253,102,438373,1,1,Active Shallow Crust,0.0,89.98978,0.0,11/03/5118 +7.79171,49.85182,4780,1,28,23,19,0,3.55,5.0,fr,10254,95,438726,1,1,Active Shallow Crust,0.0,89.98685,-90.0,01/28/4780 +7.79171,49.85182,1896,9,29,15,41,1,3.85,15.0,fr,10255,37,438760,1,1,Active Shallow Crust,240.0117,57.99799,0.0,09/29/1896 +7.79171,49.85182,1414,10,12,7,45,24,3.85,15.0,fr,10256,28,438763,1,1,Active Shallow Crust,0.0,89.99068,-90.0,10/12/1414 +7.79171,49.85182,7922,8,4,21,9,4,3.95,5.0,fr,10257,158,438771,1,1,Active Shallow Crust,240.0209,58.00497,0.0,08/04/7922 +7.79171,49.85182,9985,5,31,4,10,25,3.95,5.0,fr,10258,199,438774,1,1,Active Shallow Crust,0.0,89.9917,-90.0,05/31/9985 +7.79171,49.85182,5456,11,9,14,13,28,4.15,5.0,fr,10259,109,438795,1,1,Active Shallow Crust,240.0091,57.99739,0.0,11/09/5456 +7.79171,49.85182,9877,2,26,14,42,30,4.55,5.0,fr,10260,197,438849,1,1,Active Shallow Crust,128.8929,89.98583,0.0,02/26/9877 +7.79171,49.85182,1311,5,22,16,29,18,4.75,15.0,fr,10261,26,438868,1,1,Active Shallow Crust,240.0086,58.00462,0.0,05/22/1311 +1.0546,46.50331,8312,6,21,1,24,1,3.55,5.0,fr,10262,166,439200,1,1,Active Shallow Crust,0.0,89.98959,0.0,06/21/8312 +1.0546,46.50331,5647,1,29,12,39,57,3.55,5.0,fr,10263,112,439203,1,1,Active Shallow Crust,240.0122,57.99837,0.0,01/29/5647 +1.0546,46.50331,3260,11,21,10,11,19,3.65,5.0,fr,10264,65,439212,1,1,Active Shallow Crust,0.0,89.99072,0.0,11/21/3260 +1.0546,46.50331,8097,4,17,0,19,4,3.85,5.0,fr,10265,161,439236,1,1,Active Shallow Crust,0.0,89.99017,0.0,04/17/8097 +1.0546,46.50331,9076,9,16,8,54,17,3.95,15.0,fr,10266,181,439249,1,1,Active Shallow Crust,0.0,89.99014,0.0,09/16/9076 +1.0546,46.50331,2107,2,12,3,29,11,4.05,5.0,fr,10267,42,439260,1,1,Active Shallow Crust,0.0,89.99024,0.0,02/12/2107 +1.0546,46.50331,9141,5,30,15,44,48,4.05,5.0,fr,10268,182,439266,1,1,Active Shallow Crust,0.0,89.99013,-90.0,05/30/9141 +1.0546,46.50331,5906,1,15,15,29,57,4.25,5.0,fr,10269,118,439284,1,1,Active Shallow Crust,0.0,89.98992,0.0,01/15/5906 +1.0546,46.50331,3995,4,15,2,25,6,4.45,5.0,fr,10270,79,439311,1,1,Active Shallow Crust,240.0052,57.99472,0.0,04/15/3995 +1.0546,46.50331,3353,4,1,17,11,55,4.75,5.0,fr,10271,67,439344,1,1,Active Shallow Crust,0.0,89.98997,0.0,04/01/3353 +1.0546,46.50331,8421,6,3,6,16,15,4.85,5.0,fr,10272,168,439356,1,1,Active Shallow Crust,0.0,89.9899,0.0,06/03/8421 +-3.87123,47.99057,2724,10,2,21,58,3,3.55,15.0,fr,10273,54,440161,1,1,Active Shallow Crust,0.0,89.98988,0.0,10/02/2724 +-3.87123,47.99057,3431,9,26,9,44,0,3.55,27.5,fr,10274,68,440171,1,1,Active Shallow Crust,128.8952,89.99494,0.0,09/26/3431 +-3.87123,47.99057,6592,3,30,9,41,34,3.65,5.0,fr,10275,131,440172,1,1,Active Shallow Crust,0.0,89.99097,0.0,03/30/6592 +-3.87123,47.99057,9933,9,17,6,37,14,3.75,15.0,fr,10276,198,440185,1,1,Active Shallow Crust,0.0,89.98928,0.0,09/17/9933 +-3.87123,47.99057,2253,6,12,0,7,51,3.95,5.0,fr,10277,45,440208,1,1,Active Shallow Crust,0.0,89.98936,0.0,06/12/2253 +-3.87123,47.99057,5994,7,5,16,13,12,4.15,15.0,fr,10278,119,440242,1,1,Active Shallow Crust,128.8969,89.99408,0.0,07/05/5994 +3.00396,39.91352,7629,12,30,19,44,0,3.55,5.0,fr,10279,152,440646,1,1,Active Shallow Crust,0.0,89.98827,-90.0,12/30/7629 +3.00396,39.91352,9346,10,30,4,20,23,3.85,15.0,fr,10280,186,440677,1,1,Active Shallow Crust,0.0,89.98905,0.0,10/30/9346 +3.00396,39.91352,9134,2,11,10,48,8,4.45,5.0,fr,10281,182,440748,1,1,Active Shallow Crust,0.0,89.99039,0.0,02/11/9134 +2.50553,44.91382,6985,11,19,1,6,43,3.55,5.0,fr,10282,139,441120,1,1,Active Shallow Crust,0.0,89.98929,0.0,11/19/6985 +2.50553,44.91382,1906,10,31,9,17,15,3.65,5.0,fr,10283,38,441132,1,1,Active Shallow Crust,0.0,89.99046,0.0,10/31/1906 +2.50553,44.91382,2303,6,15,13,42,35,3.75,5.0,fr,10284,46,441144,1,1,Active Shallow Crust,0.0,89.98866,0.0,06/15/2303 +2.50553,44.91382,7062,6,30,5,16,44,3.75,5.0,fr,10285,141,441147,1,1,Active Shallow Crust,240.0079,58.01761,0.0,06/30/7062 +2.50553,44.91382,1220,2,7,1,11,0,3.75,5.0,fr,10286,24,441150,1,1,Active Shallow Crust,0.0,89.99139,-90.0,02/07/1220 +2.50553,44.91382,1993,2,8,6,35,34,3.95,5.0,fr,10287,39,441168,1,1,Active Shallow Crust,0.0,89.99099,0.0,02/08/1993 +2.50553,44.91382,4189,2,10,9,23,17,4.05,5.0,fr,10288,83,441180,1,1,Active Shallow Crust,0.0,89.98996,0.0,02/10/4189 +2.50553,44.91382,2932,10,6,17,20,36,4.05,27.5,fr,10289,58,441182,1,1,Active Shallow Crust,0.0,89.98996,0.0,10/06/2932 +2.50553,44.91382,8246,12,28,0,44,32,4.55,5.0,fr,10290,164,441240,1,1,Active Shallow Crust,0.0,89.98984,0.0,12/28/8246 +-1.97408,48.83264,1870,1,21,11,57,14,3.55,5.0,fr,10291,37,441600,1,3,Active Shallow Crust,0.0,89.99004,0.0,01/21/1870 +-1.97408,48.83264,725,5,15,3,26,28,3.55,5.0,fr,10292,14,441600,1,3,Active Shallow Crust,0.0,89.99004,0.0,05/15/0725 +-1.97408,48.83264,9538,8,10,0,16,3,3.55,5.0,fr,10293,190,441600,1,3,Active Shallow Crust,0.0,89.99004,0.0,08/10/9538 +-1.97408,48.83264,3850,2,28,13,0,9,3.55,15.0,fr,10294,76,441601,1,1,Active Shallow Crust,0.0,89.99004,0.0,02/28/3850 +-1.97408,48.83264,9298,5,21,23,10,41,3.55,27.5,fr,10295,185,441602,1,1,Active Shallow Crust,0.0,89.99004,0.0,05/21/9298 +-1.97408,48.83264,8808,12,17,8,14,14,3.55,15.0,fr,10296,176,441604,1,1,Active Shallow Crust,240.0124,57.99831,0.0,12/17/8808 +-1.97408,48.83264,1153,8,28,21,44,53,3.75,5.0,fr,10297,23,441624,1,1,Active Shallow Crust,0.0,89.98946,0.0,08/28/1153 +-1.97408,48.83264,7244,10,22,9,11,44,3.85,5.0,fr,10298,144,441636,1,1,Active Shallow Crust,0.0,89.98943,0.0,10/22/7244 +-1.97408,48.83264,3173,5,6,11,38,26,3.85,27.5,fr,10299,63,441638,1,1,Active Shallow Crust,0.0,89.98943,0.0,05/06/3173 +-1.97408,48.83264,4874,2,19,13,5,34,3.85,5.0,fr,10300,97,441645,1,1,Active Shallow Crust,128.8951,89.99413,0.0,02/19/4874 +-1.97408,48.83264,6901,3,31,11,41,52,3.95,5.0,fr,10301,138,441648,1,1,Active Shallow Crust,0.0,89.98953,0.0,03/31/6901 +-1.97408,48.83264,5043,6,20,19,0,9,3.95,15.0,fr,10302,100,441649,1,1,Active Shallow Crust,0.0,89.98953,0.0,06/20/5043 +-1.97408,48.83264,7130,11,20,1,8,13,4.05,5.0,fr,10303,142,441660,1,1,Active Shallow Crust,0.0,89.98973,0.0,11/20/7130 +-1.97408,48.83264,2982,11,6,23,20,19,4.05,5.0,fr,10304,59,441669,1,1,Active Shallow Crust,128.8902,89.99347,0.0,11/06/2982 +-1.97408,48.83264,830,5,14,2,43,35,4.15,5.0,fr,10305,16,441672,1,1,Active Shallow Crust,0.0,89.99002,0.0,05/14/0830 +-1.97408,48.83264,1669,11,24,12,0,27,4.15,15.0,fr,10306,33,441673,1,1,Active Shallow Crust,0.0,89.99002,0.0,11/24/1669 +-1.97408,48.83264,4980,4,28,21,22,55,4.15,27.5,fr,10307,99,441674,1,1,Active Shallow Crust,0.0,89.99002,0.0,04/28/4980 +-1.97408,48.83264,5433,4,13,5,18,13,4.25,5.0,fr,10308,108,441684,1,1,Active Shallow Crust,0.0,89.99036,0.0,04/13/5433 +-1.97408,48.83264,4748,5,13,16,33,35,4.25,15.0,fr,10309,94,441685,1,1,Active Shallow Crust,0.0,89.99036,0.0,05/13/4748 +-1.97408,48.83264,6890,2,9,22,11,16,4.25,5.0,fr,10310,137,441690,1,1,Active Shallow Crust,0.0,89.99025,-90.0,02/09/6890 +-1.97408,48.83264,5861,9,9,15,53,48,4.35,15.0,fr,10311,117,441697,1,1,Active Shallow Crust,0.0,89.99009,0.0,09/09/5861 +-1.97408,48.83264,2940,2,21,22,9,21,4.45,15.0,fr,10312,58,441709,1,1,Active Shallow Crust,0.0,89.98999,0.0,02/21/2940 +-1.97408,48.83264,6114,10,24,4,17,17,4.45,15.0,fr,10313,122,441712,1,1,Active Shallow Crust,240.006,57.99479,0.0,10/24/6114 +-1.97408,48.83264,1830,2,8,17,21,8,4.45,27.5,fr,10314,36,441713,1,1,Active Shallow Crust,240.006,57.99479,0.0,02/08/1830 +-1.97408,48.83264,1787,10,10,3,7,51,4.65,15.0,fr,10315,35,441736,1,1,Active Shallow Crust,240.0117,57.99436,0.0,10/10/1787 +-1.97408,48.83264,9442,9,20,22,37,48,5.15,15.0,fr,10316,188,441793,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/20/9442 +-1.97408,48.83264,4744,3,4,14,9,49,5.15,27.5,fr,10317,94,441797,1,1,Active Shallow Crust,240.0211,58.00021,0.0,03/04/4744 +2.82071,40.97134,4999,10,3,12,42,41,3.55,27.5,fr,10318,99,442568,1,1,Active Shallow Crust,0.0,89.98845,-90.0,10/03/4999 +2.82071,40.97134,3701,7,13,13,13,54,3.65,5.0,fr,10319,74,442572,1,2,Active Shallow Crust,0.0,89.98982,0.0,07/13/3701 +2.82071,40.97134,5402,4,21,21,18,9,3.65,5.0,fr,10320,108,442572,1,2,Active Shallow Crust,0.0,89.98982,0.0,04/21/5402 +2.82071,40.97134,8031,6,8,8,7,16,3.65,15.0,fr,10321,160,442573,1,1,Active Shallow Crust,0.0,89.98982,0.0,06/08/8031 +2.82071,40.97134,1086,4,24,7,2,2,3.75,27.5,fr,10322,21,442586,1,1,Active Shallow Crust,0.0,89.99093,0.0,04/24/1086 +2.82071,40.97134,3895,10,9,13,1,44,4.15,15.0,fr,10323,77,442633,1,1,Active Shallow Crust,0.0,89.99046,0.0,10/09/3895 +2.82071,40.97134,4232,7,14,20,18,25,5.55,15.0,fr,10324,84,442804,1,1,Active Shallow Crust,240.028,58.00159,0.0,07/14/4232 +4.26676,43.9955,3830,1,1,6,4,10,3.55,5.0,fr,10325,76,443040,1,1,Active Shallow Crust,0.0,89.99274,0.0,01/01/3830 +4.26676,43.9955,6023,3,14,2,55,13,3.55,15.0,fr,10326,120,443041,1,1,Active Shallow Crust,0.0,89.99274,0.0,03/14/6023 +4.26676,43.9955,7417,3,12,3,9,12,3.55,15.0,fr,10327,148,443044,1,1,Active Shallow Crust,240.011,57.99875,0.0,03/12/7417 +4.26676,43.9955,7187,1,4,22,28,12,3.65,5.0,fr,10328,143,443058,1,1,Active Shallow Crust,0.0,89.98692,-90.0,01/04/7187 +4.26676,43.9955,5798,6,22,16,32,32,3.75,15.0,fr,10329,115,443074,1,1,Active Shallow Crust,128.8972,89.96745,0.0,06/22/5798 +4.26676,43.9955,6184,11,21,8,47,17,3.85,15.0,fr,10330,123,443077,1,1,Active Shallow Crust,0.0,89.98973,0.0,11/21/6184 +4.26676,43.9955,2650,9,4,22,14,10,3.95,5.0,fr,10331,52,443088,1,1,Active Shallow Crust,0.0,89.99084,0.0,09/04/2650 +4.26676,43.9955,2720,8,13,22,5,44,4.15,5.0,fr,10332,54,443112,1,1,Active Shallow Crust,0.0,89.98909,0.0,08/13/2720 +4.26676,43.9955,2481,11,16,10,11,1,4.25,5.0,fr,10333,49,443124,1,1,Active Shallow Crust,0.0,89.99028,0.0,11/16/2481 +4.26676,43.9955,450,7,31,20,8,29,4.55,5.0,fr,10334,8,443169,1,1,Active Shallow Crust,128.8945,89.98602,0.0,07/31/0450 +4.26676,43.9955,652,10,11,0,55,15,4.65,5.0,fr,10335,13,443172,1,1,Active Shallow Crust,0.0,89.98978,0.0,10/11/0652 +4.26676,43.9955,8206,8,3,11,49,24,4.75,5.0,fr,10336,164,443184,1,1,Active Shallow Crust,0.0,89.99089,0.0,08/03/8206 +4.26676,43.9955,9502,6,2,6,55,34,4.85,5.0,fr,10337,190,443199,1,1,Active Shallow Crust,240.0159,58.00234,0.0,06/02/9502 +4.26676,43.9955,3531,9,25,8,5,6,5.05,15.0,fr,10338,70,443221,1,1,Active Shallow Crust,0.0,89.98968,0.0,09/25/3531 +4.26676,43.9955,2129,3,31,2,20,13,5.65,5.0,fr,10339,42,443292,1,1,Active Shallow Crust,0.0,89.9903,0.0,03/31/2129 +4.266787,43.9955,5690,10,26,10,43,56,7.15,17.5,fr,10340,113,443472,1,1,Active Shallow Crust,0.0,89.98997,0.0,10/26/5690 +4.4834,42.69424,8949,10,3,20,29,51,3.75,5.0,fr,10341,178,443553,1,1,Active Shallow Crust,128.8969,89.96742,0.0,10/03/8949 +4.4834,42.69424,8647,9,20,9,17,53,3.95,5.0,fr,10342,172,443568,1,1,Active Shallow Crust,0.0,89.99065,0.0,09/20/8647 +3.98249,49.73597,8796,4,17,18,33,16,3.55,5.0,fr,10343,175,444000,1,1,Active Shallow Crust,0.0,89.99023,0.0,04/17/8796 +3.98249,49.73597,5616,7,1,0,15,31,3.95,5.0,fr,10344,112,444048,1,1,Active Shallow Crust,0.0,89.98972,0.0,07/01/5616 +3.98249,49.73597,2473,9,26,13,46,22,3.95,15.0,fr,10345,49,444049,1,1,Active Shallow Crust,0.0,89.98972,0.0,09/26/2473 +3.98249,49.73597,8108,2,25,7,10,10,4.25,15.0,fr,10346,162,444085,1,1,Active Shallow Crust,0.0,89.98981,0.0,02/25/8108 +3.98249,49.73597,2809,2,11,6,21,51,4.65,15.0,fr,10347,56,444133,1,1,Active Shallow Crust,0.0,89.9899,0.0,02/11/2809 +3.98249,49.73597,8570,9,16,9,1,7,4.85,5.0,fr,10348,171,444159,1,1,Active Shallow Crust,240.0188,58.00238,0.0,09/16/8570 +5.37226,49.0556,1209,12,20,23,0,35,4.35,5.0,fr,10349,24,444576,1,1,Active Shallow Crust,0.0,89.98948,0.0,12/20/1209 +4.08678,48.62472,2507,3,10,11,36,12,3.55,5.0,fr,10350,50,444969,1,1,Active Shallow Crust,128.8967,89.99333,0.0,03/10/2507 +4.08678,48.62472,8578,9,20,18,38,37,3.95,5.0,fr,10351,171,445008,1,1,Active Shallow Crust,0.0,89.99159,0.0,09/20/8578 +4.08678,48.62472,7065,5,6,20,30,2,4.05,15.0,fr,10352,141,445021,1,1,Active Shallow Crust,0.0,89.98875,0.0,05/06/7065 +8.71795,49.95069,7621,6,2,6,4,16,3.55,5.0,fr,10353,152,445440,1,4,Active Shallow Crust,0.0,89.98702,0.0,06/02/7621 +8.71795,49.95069,6098,2,22,8,34,26,3.55,5.0,fr,10354,121,445440,1,4,Active Shallow Crust,0.0,89.98702,0.0,02/22/6098 +8.71795,49.95069,4595,8,29,21,1,57,3.55,5.0,fr,10355,91,445440,1,4,Active Shallow Crust,0.0,89.98702,0.0,08/29/4595 +8.71795,49.95069,2516,11,7,18,59,40,3.55,5.0,fr,10356,50,445440,1,4,Active Shallow Crust,0.0,89.98702,0.0,11/07/2516 +8.71795,49.95069,6296,9,17,6,50,18,3.55,15.0,fr,10357,125,445441,1,2,Active Shallow Crust,0.0,89.98702,0.0,09/17/6296 +8.71795,49.95069,3942,2,8,15,21,27,3.55,15.0,fr,10358,78,445441,1,2,Active Shallow Crust,0.0,89.98702,0.0,02/08/3942 +8.71795,49.95069,1572,6,13,6,55,29,3.55,27.5,fr,10359,31,445442,1,1,Active Shallow Crust,0.0,89.98702,0.0,06/13/1572 +8.71795,49.95069,2801,6,22,11,21,40,3.65,5.0,fr,10360,56,445452,1,3,Active Shallow Crust,0.0,89.98843,0.0,06/22/2801 +8.71795,49.95069,1093,8,25,2,29,1,3.65,5.0,fr,10361,21,445452,1,3,Active Shallow Crust,0.0,89.98843,0.0,08/25/1093 +8.71795,49.95069,8074,10,29,4,56,51,3.65,5.0,fr,10362,161,445452,1,3,Active Shallow Crust,0.0,89.98843,0.0,10/29/8074 +8.71795,49.95069,852,12,4,5,24,12,3.65,15.0,fr,10363,17,445453,1,1,Active Shallow Crust,0.0,89.98843,0.0,12/04/0852 +8.71795,49.95069,7074,5,11,16,34,16,3.65,5.0,fr,10364,141,445458,1,1,Active Shallow Crust,0.0,89.9883,-90.0,05/11/7074 +8.71795,49.95069,6690,9,2,16,38,49,3.75,5.0,fr,10365,133,445464,1,1,Active Shallow Crust,0.0,89.98969,0.0,09/02/6690 +8.71795,49.95069,4676,1,25,3,23,17,3.75,15.0,fr,10366,93,445468,1,1,Active Shallow Crust,240.0095,58.01644,0.0,01/25/4676 +8.71795,49.95069,6853,9,8,9,34,33,3.75,15.0,fr,10367,137,445474,1,1,Active Shallow Crust,128.8963,89.96755,0.0,09/08/6853 +8.71795,49.95069,3134,10,18,22,45,10,3.85,5.0,fr,10368,62,445476,1,1,Active Shallow Crust,0.0,89.99081,0.0,10/18/3134 +8.71795,49.95069,1689,7,8,22,46,57,4.05,15.0,fr,10369,33,445501,1,1,Active Shallow Crust,0.0,89.9927,0.0,07/08/1689 +8.71795,49.95069,9297,4,11,7,20,49,4.05,27.5,fr,10370,185,445502,1,1,Active Shallow Crust,0.0,89.9927,0.0,04/11/9297 +8.71795,49.95069,6898,3,24,13,34,48,4.15,5.0,fr,10371,137,445512,1,1,Active Shallow Crust,0.0,89.98699,0.0,03/24/6898 +8.71795,49.95069,7325,10,5,10,54,19,4.15,15.0,fr,10372,146,445513,1,1,Active Shallow Crust,0.0,89.98699,0.0,10/05/7325 +8.71795,49.95069,6072,11,7,5,52,30,4.15,5.0,fr,10373,121,445515,1,1,Active Shallow Crust,240.0096,57.99747,0.0,11/07/6072 +8.71795,49.95069,3603,6,23,12,32,38,4.25,5.0,fr,10374,72,445530,1,1,Active Shallow Crust,0.0,89.98827,-90.0,06/23/3603 +8.71795,49.95069,6809,12,4,14,32,8,4.25,15.0,fr,10375,136,445531,1,1,Active Shallow Crust,0.0,89.98827,-90.0,12/04/6809 +8.71795,49.95069,7458,1,22,22,8,54,4.45,5.0,fr,10376,149,445548,1,1,Active Shallow Crust,0.0,89.99079,0.0,01/22/7458 +8.71795,49.95069,478,3,10,11,36,28,4.55,5.0,fr,10377,9,445560,1,2,Active Shallow Crust,0.0,89.99179,0.0,03/10/0478 +8.71795,49.95069,7534,2,6,21,58,50,4.55,5.0,fr,10378,150,445560,1,2,Active Shallow Crust,0.0,89.99179,0.0,02/06/7534 +8.71795,49.95069,9857,11,13,20,25,19,4.55,5.0,fr,10379,197,445569,1,1,Active Shallow Crust,128.8929,89.98584,0.0,11/13/9857 +8.31076,46.07525,4665,9,16,21,1,52,3.65,15.0,fr,10380,93,445933,1,1,Active Shallow Crust,0.0,89.98753,0.0,09/16/4665 +8.31076,46.07525,3563,3,22,9,43,59,3.65,5.0,fr,10381,71,445935,1,1,Active Shallow Crust,240.001,58.01277,0.0,03/22/3563 +8.31076,46.07525,6300,2,25,11,19,7,3.75,5.0,fr,10382,125,445944,1,2,Active Shallow Crust,0.0,89.98888,0.0,02/25/6300 +8.31076,46.07525,4291,4,2,3,45,33,3.75,5.0,fr,10383,85,445944,1,2,Active Shallow Crust,0.0,89.98888,0.0,04/02/4291 +8.31076,46.07525,8873,2,26,22,4,42,3.75,15.0,fr,10384,177,445945,1,1,Active Shallow Crust,0.0,89.98888,0.0,02/26/8873 +8.31076,46.07525,2789,1,24,23,42,0,3.85,5.0,fr,10385,55,445956,1,2,Active Shallow Crust,0.0,89.9901,0.0,01/24/2789 +8.31076,46.07525,2405,6,15,7,24,30,3.85,5.0,fr,10386,48,445956,1,2,Active Shallow Crust,0.0,89.9901,0.0,06/15/2405 +8.31076,46.07525,6193,10,8,19,17,53,3.95,5.0,fr,10387,123,445968,1,1,Active Shallow Crust,0.0,89.99117,0.0,10/08/6193 +8.31076,46.07525,9310,8,17,2,35,31,4.05,5.0,fr,10388,186,445980,1,2,Active Shallow Crust,0.0,89.99213,0.0,08/17/9310 +8.31076,46.07525,326,10,27,6,55,52,4.05,5.0,fr,10389,6,445980,1,2,Active Shallow Crust,0.0,89.99213,0.0,10/27/0326 +8.31076,46.07525,7167,10,29,22,15,0,4.25,5.0,fr,10390,143,446004,1,1,Active Shallow Crust,0.0,89.9875,0.0,10/29/7167 +8.31076,46.07525,1469,2,14,2,2,41,4.25,15.0,fr,10391,29,446014,1,1,Active Shallow Crust,128.8941,89.98093,0.0,02/14/1469 +8.31076,46.07525,2756,9,30,0,49,33,4.95,5.0,fr,10392,55,446088,1,1,Active Shallow Crust,0.0,89.98883,0.0,09/30/2756 +8.31076,46.07525,7690,3,18,18,18,27,4.95,5.0,fr,10393,153,446094,1,1,Active Shallow Crust,0.0,89.9887,-90.0,03/18/7690 +-0.30826,43.14052,5650,8,29,13,47,29,3.55,5.0,fr,10394,112,446400,1,11,Active Shallow Crust,0.0,89.98988,0.0,08/29/5650 +-0.30826,43.14052,435,12,14,2,38,58,3.55,5.0,fr,10395,8,446400,1,11,Active Shallow Crust,0.0,89.98988,0.0,12/14/0435 +-0.30826,43.14052,3601,8,4,21,29,55,3.55,5.0,fr,10396,72,446400,1,11,Active Shallow Crust,0.0,89.98988,0.0,08/04/3601 +-0.30826,43.14052,9858,3,21,1,8,11,3.55,5.0,fr,10397,197,446400,1,11,Active Shallow Crust,0.0,89.98988,0.0,03/21/9858 +-0.30826,43.14052,9825,3,21,3,52,26,3.55,5.0,fr,10398,196,446400,1,11,Active Shallow Crust,0.0,89.98988,0.0,03/21/9825 +-0.30826,43.14052,8752,12,31,4,57,9,3.55,5.0,fr,10399,175,446400,1,11,Active Shallow Crust,0.0,89.98988,0.0,12/31/8752 +-0.30826,43.14052,6672,6,22,5,1,0,3.55,5.0,fr,10400,133,446400,1,11,Active Shallow Crust,0.0,89.98988,0.0,06/22/6672 +-0.30826,43.14052,4209,1,23,8,42,8,3.55,5.0,fr,10401,84,446400,1,11,Active Shallow Crust,0.0,89.98988,0.0,01/23/4209 +-0.30826,43.14052,8433,4,1,9,45,56,3.55,5.0,fr,10402,168,446400,1,11,Active Shallow Crust,0.0,89.98988,0.0,04/01/8433 +-0.30826,43.14052,5276,1,23,4,58,12,3.55,5.0,fr,10403,105,446400,1,11,Active Shallow Crust,0.0,89.98988,0.0,01/23/5276 +-0.30826,43.14052,9925,3,6,17,22,35,3.55,5.0,fr,10404,198,446400,1,11,Active Shallow Crust,0.0,89.98988,0.0,03/06/9925 +-0.30826,43.14052,4979,9,5,6,34,15,3.55,15.0,fr,10405,99,446401,1,1,Active Shallow Crust,0.0,89.98988,0.0,09/05/4979 +-0.30826,43.14052,3873,5,15,9,6,23,3.55,27.5,fr,10406,77,446402,1,1,Active Shallow Crust,0.0,89.98988,0.0,05/15/3873 +-0.30826,43.14052,2782,12,30,10,5,46,3.55,15.0,fr,10407,55,446404,1,1,Active Shallow Crust,240.0119,57.99809,0.0,12/30/2782 +-0.30826,43.14052,8752,5,16,16,0,23,3.55,5.0,fr,10408,175,446406,1,1,Active Shallow Crust,0.0,89.99023,-90.0,05/16/8752 +-0.30826,43.14052,6057,11,22,7,45,49,3.55,5.0,fr,10409,121,446409,1,1,Active Shallow Crust,128.8964,89.99379,0.0,11/22/6057 +-0.30826,43.14052,7542,4,27,6,41,5,3.55,27.5,fr,10410,150,446411,1,1,Active Shallow Crust,128.8964,89.99379,0.0,04/27/7542 +-0.30826,43.14052,4665,3,8,13,28,29,3.65,5.0,fr,10411,93,446412,1,7,Active Shallow Crust,0.0,89.99017,0.0,03/08/4665 +-0.30826,43.14052,3775,5,29,10,4,14,3.65,5.0,fr,10412,75,446412,1,7,Active Shallow Crust,0.0,89.99017,0.0,05/29/3775 +-0.30826,43.14052,3048,11,28,7,12,8,3.65,5.0,fr,10413,60,446412,1,7,Active Shallow Crust,0.0,89.99017,0.0,11/28/3048 +-0.30826,43.14052,4204,4,6,0,58,17,3.65,5.0,fr,10414,84,446412,1,7,Active Shallow Crust,0.0,89.99017,0.0,04/06/4204 +-0.30826,43.14052,5523,8,5,5,14,35,3.65,5.0,fr,10415,110,446412,1,7,Active Shallow Crust,0.0,89.99017,0.0,08/05/5523 +-0.30826,43.14052,7364,4,6,13,0,52,3.65,5.0,fr,10416,147,446412,1,7,Active Shallow Crust,0.0,89.99017,0.0,04/06/7364 +-0.30826,43.14052,7613,11,25,4,22,37,3.65,5.0,fr,10417,152,446412,1,7,Active Shallow Crust,0.0,89.99017,0.0,11/25/7613 +-0.30826,43.14052,4724,12,28,15,42,49,3.65,15.0,fr,10418,94,446413,1,1,Active Shallow Crust,0.0,89.99017,0.0,12/28/4724 +-0.30826,43.14052,8545,8,1,12,53,39,3.65,27.5,fr,10419,170,446414,1,1,Active Shallow Crust,0.0,89.99017,0.0,08/01/8545 +-0.30826,43.14052,266,6,14,15,12,33,3.65,5.0,fr,10420,5,446415,1,2,Active Shallow Crust,240.0008,58.01278,0.0,06/14/0266 +-0.30826,43.14052,1169,12,19,13,40,7,3.65,5.0,fr,10421,23,446415,1,2,Active Shallow Crust,240.0008,58.01278,0.0,12/19/1169 +-0.30826,43.14052,4827,11,19,1,10,13,3.65,15.0,fr,10422,96,446416,1,2,Active Shallow Crust,240.0008,58.01278,0.0,11/19/4827 +-0.30826,43.14052,3018,5,25,23,11,13,3.65,15.0,fr,10423,60,446416,1,2,Active Shallow Crust,240.0008,58.01278,0.0,05/25/3018 +-0.30826,43.14052,3129,4,15,17,30,42,3.65,27.5,fr,10424,62,446417,1,1,Active Shallow Crust,240.0008,58.01269,0.0,04/15/3129 +-0.30826,43.14052,3728,4,19,1,19,19,3.65,5.0,fr,10425,74,446418,1,2,Active Shallow Crust,0.0,89.99005,-90.0,04/19/3728 +-0.30826,43.14052,7809,12,6,21,8,28,3.65,5.0,fr,10426,156,446418,1,2,Active Shallow Crust,0.0,89.99005,-90.0,12/06/7809 +-0.30826,43.14052,3853,4,25,2,20,44,3.65,5.0,fr,10427,77,446421,1,1,Active Shallow Crust,128.9008,89.96349,0.0,04/25/3853 +-0.30826,43.14052,6559,11,26,8,12,22,3.75,5.0,fr,10428,131,446424,1,4,Active Shallow Crust,0.0,89.99014,0.0,11/26/6559 +-0.30826,43.14052,1304,9,5,17,4,36,3.75,5.0,fr,10429,26,446424,1,4,Active Shallow Crust,0.0,89.99014,0.0,09/05/1304 +-0.30826,43.14052,9758,4,26,23,36,22,3.75,5.0,fr,10430,195,446424,1,4,Active Shallow Crust,0.0,89.99014,0.0,04/26/9758 +-0.30826,43.14052,34,12,16,19,28,1,3.75,5.0,fr,10431,0,446424,1,4,Active Shallow Crust,0.0,89.99014,0.0,12/16/0034 +-0.30826,43.14052,1036,9,27,12,29,36,3.75,15.0,fr,10432,20,446425,1,1,Active Shallow Crust,0.0,89.99014,0.0,09/27/1036 +-0.30826,43.14052,9153,10,9,9,41,12,3.75,5.0,fr,10433,183,446427,1,1,Active Shallow Crust,240.008,58.01749,0.0,10/09/9153 +-0.30826,43.14052,2379,6,25,1,36,51,3.75,5.0,fr,10434,47,446430,1,1,Active Shallow Crust,0.0,89.99002,-90.0,06/25/2379 +-0.30826,43.14052,2364,10,15,20,10,22,3.75,15.0,fr,10435,47,446431,1,1,Active Shallow Crust,0.0,89.99002,-90.0,10/15/2364 +-0.30826,43.14052,4470,7,22,18,54,58,3.75,5.0,fr,10436,89,446433,1,1,Active Shallow Crust,128.8968,89.96737,0.0,07/22/4470 +-0.30826,43.14052,6445,12,8,8,31,47,3.75,15.0,fr,10437,128,446434,1,1,Active Shallow Crust,128.8968,89.96737,0.0,12/08/6445 +-0.30826,43.14052,7467,10,25,7,48,59,3.85,5.0,fr,10438,149,446436,1,5,Active Shallow Crust,0.0,89.98991,0.0,10/25/7467 +-0.30826,43.14052,819,3,25,21,29,37,3.85,5.0,fr,10439,16,446436,1,5,Active Shallow Crust,0.0,89.98991,0.0,03/25/0819 +-0.30826,43.14052,2946,8,8,12,25,19,3.85,5.0,fr,10440,58,446436,1,5,Active Shallow Crust,0.0,89.98991,0.0,08/08/2946 +-0.30826,43.14052,8038,3,29,5,54,43,3.85,5.0,fr,10441,160,446436,1,5,Active Shallow Crust,0.0,89.98991,0.0,03/29/8038 +-0.30826,43.14052,2585,1,4,8,38,44,3.85,5.0,fr,10442,51,446436,1,5,Active Shallow Crust,0.0,89.98991,0.0,01/04/2585 +-0.30826,43.14052,7774,10,31,13,4,56,3.85,15.0,fr,10443,155,446437,1,2,Active Shallow Crust,0.0,89.98991,0.0,10/31/7774 +-0.30826,43.14052,3029,12,24,1,34,1,3.85,15.0,fr,10444,60,446437,1,2,Active Shallow Crust,0.0,89.98991,0.0,12/24/3029 +-0.30826,43.14052,4550,5,2,6,38,35,3.85,5.0,fr,10445,90,446439,1,1,Active Shallow Crust,240.0105,57.99772,0.0,05/02/4550 +-0.30826,43.14052,9836,2,16,11,4,16,3.85,15.0,fr,10446,196,446440,1,1,Active Shallow Crust,240.0105,57.99772,0.0,02/16/9836 +-0.30826,43.14052,991,10,3,10,3,47,3.85,5.0,fr,10447,19,446442,1,2,Active Shallow Crust,0.0,89.99012,-90.0,10/03/0991 +-0.30826,43.14052,2836,6,9,18,40,56,3.85,5.0,fr,10448,56,446442,1,2,Active Shallow Crust,0.0,89.99012,-90.0,06/09/2836 +-0.30826,43.14052,1593,10,26,18,51,8,3.85,5.0,fr,10449,31,446445,1,1,Active Shallow Crust,128.896,89.99381,0.0,10/26/1593 +-0.30826,43.14052,1292,9,4,14,4,48,3.95,5.0,fr,10450,25,446448,1,8,Active Shallow Crust,0.0,89.99014,0.0,09/04/1292 +-0.30826,43.14052,5560,1,2,19,11,41,3.95,5.0,fr,10451,111,446448,1,8,Active Shallow Crust,0.0,89.99014,0.0,01/02/5560 +-0.30826,43.14052,1163,4,19,12,5,37,3.95,5.0,fr,10452,23,446448,1,8,Active Shallow Crust,0.0,89.99014,0.0,04/19/1163 +-0.30826,43.14052,4369,1,23,14,29,12,3.95,5.0,fr,10453,87,446448,1,8,Active Shallow Crust,0.0,89.99014,0.0,01/23/4369 +-0.30826,43.14052,2227,1,25,20,42,36,3.95,5.0,fr,10454,44,446448,1,8,Active Shallow Crust,0.0,89.99014,0.0,01/25/2227 +-0.30826,43.14052,5341,8,15,4,37,34,3.95,5.0,fr,10455,106,446448,1,8,Active Shallow Crust,0.0,89.99014,0.0,08/15/5341 +-0.30826,43.14052,1677,11,7,0,49,48,3.95,5.0,fr,10456,33,446448,1,8,Active Shallow Crust,0.0,89.99014,0.0,11/07/1677 +-0.30826,43.14052,3837,2,8,15,42,8,3.95,5.0,fr,10457,76,446448,1,8,Active Shallow Crust,0.0,89.99014,0.0,02/08/3837 +-0.30826,43.14052,8461,1,3,21,50,29,3.95,27.5,fr,10458,169,446450,1,1,Active Shallow Crust,0.0,89.99014,0.0,01/03/8461 +-0.30826,43.14052,2694,11,23,10,7,52,3.95,15.0,fr,10459,53,446458,1,1,Active Shallow Crust,128.9007,89.99376,0.0,11/23/2694 +-0.30826,43.14052,7187,8,15,14,8,4,4.05,5.0,fr,10460,143,446460,1,4,Active Shallow Crust,0.0,89.98991,0.0,08/15/7187 +-0.30826,43.14052,836,4,1,12,5,19,4.05,5.0,fr,10461,16,446460,1,4,Active Shallow Crust,0.0,89.98991,0.0,04/01/0836 +-0.30826,43.14052,9033,3,16,14,16,35,4.05,5.0,fr,10462,180,446460,1,4,Active Shallow Crust,0.0,89.98991,0.0,03/16/9033 +-0.30826,43.14052,3029,12,28,17,43,28,4.05,5.0,fr,10463,60,446460,1,4,Active Shallow Crust,0.0,89.98991,0.0,12/28/3029 +-0.30826,43.14052,2518,4,22,14,44,22,4.05,27.5,fr,10464,50,446462,1,1,Active Shallow Crust,0.0,89.98991,0.0,04/22/2518 +-0.30826,43.14052,8895,11,3,1,27,29,4.05,5.0,fr,10465,177,446463,1,1,Active Shallow Crust,240.0055,58.00573,0.0,11/03/8895 +-0.30826,43.14052,7566,5,2,8,33,8,4.05,15.0,fr,10466,151,446464,1,1,Active Shallow Crust,240.0055,58.0057,0.0,05/02/7566 +-0.30826,43.14052,7760,1,30,16,28,6,4.05,27.5,fr,10467,155,446465,1,1,Active Shallow Crust,240.0055,58.0057,0.0,01/30/7760 +-0.30826,43.14052,1422,11,15,17,18,10,4.15,5.0,fr,10468,28,446472,1,3,Active Shallow Crust,0.0,89.99009,0.0,11/15/1422 +-0.30826,43.14052,8175,1,4,9,26,12,4.15,5.0,fr,10469,163,446472,1,3,Active Shallow Crust,0.0,89.99009,0.0,01/04/8175 +-0.30826,43.14052,5187,3,27,8,17,48,4.15,5.0,fr,10470,103,446472,1,3,Active Shallow Crust,0.0,89.99009,0.0,03/27/5187 +-0.30826,43.14052,9419,6,14,19,4,25,4.15,15.0,fr,10471,188,446473,1,1,Active Shallow Crust,0.0,89.99009,0.0,06/14/9419 +-0.30826,43.14052,2839,1,9,19,57,9,4.15,27.5,fr,10472,56,446474,1,1,Active Shallow Crust,0.0,89.99009,0.0,01/09/2839 +-0.30826,43.14052,8138,11,22,20,5,20,4.25,5.0,fr,10473,162,446484,1,2,Active Shallow Crust,0.0,89.98994,0.0,11/22/8138 +-0.30826,43.14052,2483,12,28,19,19,16,4.25,5.0,fr,10474,49,446484,1,2,Active Shallow Crust,0.0,89.98994,0.0,12/28/2483 +-0.30826,43.14052,4662,2,9,8,25,5,4.25,5.0,fr,10475,93,446487,1,1,Active Shallow Crust,240.0069,57.99393,0.0,02/09/4662 +-0.30826,43.14052,4225,12,14,3,48,17,4.35,5.0,fr,10476,84,446496,1,1,Active Shallow Crust,0.0,89.98993,0.0,12/14/4225 +-0.30826,43.14052,1188,7,15,14,25,7,4.35,15.0,fr,10477,23,446497,1,1,Active Shallow Crust,0.0,89.98993,0.0,07/15/1188 +-0.30826,43.14052,3422,1,24,19,47,55,4.35,27.5,fr,10478,68,446498,1,2,Active Shallow Crust,0.0,89.98993,0.0,01/24/3422 +-0.30826,43.14052,6884,7,5,22,6,59,4.35,27.5,fr,10479,137,446498,1,2,Active Shallow Crust,0.0,89.98993,0.0,07/05/6884 +-0.30826,43.14052,7328,4,24,9,39,26,4.35,15.0,fr,10480,146,446503,1,1,Active Shallow Crust,0.0,89.99,-90.0,04/24/7328 +-0.30826,43.14052,2980,10,2,9,3,22,4.45,5.0,fr,10481,59,446508,1,1,Active Shallow Crust,0.0,89.99004,0.0,10/02/2980 +-0.30826,43.14052,6328,6,24,15,8,35,4.45,15.0,fr,10482,126,446509,1,1,Active Shallow Crust,0.0,89.99004,0.0,06/24/6328 +-0.30826,43.14052,6033,8,17,0,47,32,4.55,5.0,fr,10483,120,446520,1,2,Active Shallow Crust,0.0,89.98997,0.0,08/17/6033 +-0.30826,43.14052,5245,9,11,18,19,45,4.55,5.0,fr,10484,104,446520,1,2,Active Shallow Crust,0.0,89.98997,0.0,09/11/5245 +-0.30826,43.14052,1260,6,13,3,50,48,4.55,15.0,fr,10485,25,446521,1,1,Active Shallow Crust,0.0,89.98997,0.0,06/13/1260 +-0.30826,43.14052,7639,12,12,7,13,44,4.55,5.0,fr,10486,152,446523,1,1,Active Shallow Crust,240.0084,57.9972,0.0,12/12/7639 +-0.30826,43.14052,9588,11,3,16,48,3,4.65,15.0,fr,10487,191,446533,1,1,Active Shallow Crust,0.0,89.99002,0.0,11/03/9588 +-0.30826,43.14052,7404,9,23,2,17,48,4.65,15.0,fr,10488,148,446542,1,1,Active Shallow Crust,128.892,89.98701,0.0,09/23/7404 +-0.30826,43.14052,6335,4,20,2,13,49,4.75,15.0,fr,10489,126,446545,1,1,Active Shallow Crust,0.0,89.98995,0.0,04/20/6335 +-0.30826,43.14052,2267,6,13,11,59,45,4.85,5.0,fr,10490,45,446556,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/13/2267 +-0.30826,43.14052,327,8,15,7,1,50,4.95,15.0,fr,10491,6,446569,1,1,Active Shallow Crust,0.0,89.99,0.0,08/15/0327 +-0.30826,43.14052,9506,9,11,20,1,58,5.05,5.0,fr,10492,190,446580,1,1,Active Shallow Crust,0.0,89.99002,0.0,09/11/9506 +-0.30826,43.14052,1804,3,16,4,7,30,5.05,5.0,fr,10493,36,446589,1,1,Active Shallow Crust,128.8869,89.99046,0.0,03/16/1804 +-0.3110324,43.14402,2346,2,7,14,27,54,6.25,5.719927,fr,10494,46,446727,1,1,Active Shallow Crust,240.0639,58.00125,0.0,02/07/2346 +2.23404,48.55524,8969,6,1,7,1,54,3.55,15.0,fr,10495,179,446890,1,1,Active Shallow Crust,128.8959,89.995,0.0,06/01/8969 +2.23404,48.55524,6493,4,23,12,0,59,3.75,5.0,fr,10496,129,446907,1,1,Active Shallow Crust,240.0083,58.01785,0.0,04/23/6493 +2.23404,48.55524,6747,1,30,21,27,37,3.85,5.0,fr,10497,134,446922,1,1,Active Shallow Crust,0.0,89.99044,-90.0,01/30/6747 +2.23404,48.55524,1286,8,19,5,20,9,5.05,27.5,fr,10498,25,447068,1,1,Active Shallow Crust,0.0,89.98979,-90.0,08/19/1286 +-0.06443,47.76598,6065,9,18,22,21,10,3.55,5.0,fr,10499,121,447360,1,1,Active Shallow Crust,0.0,89.99004,0.0,09/18/6065 +-0.06443,47.76598,8495,9,9,9,9,16,3.65,5.0,fr,10500,169,447372,1,1,Active Shallow Crust,0.0,89.99,0.0,09/09/8495 +-0.06443,47.76598,5773,2,18,0,15,16,3.65,15.0,fr,10501,115,447373,1,1,Active Shallow Crust,0.0,89.99,0.0,02/18/5773 +-0.06443,47.76598,2377,9,3,8,58,11,4.15,5.0,fr,10502,47,447432,1,1,Active Shallow Crust,0.0,89.99002,0.0,09/03/2377 +-0.06443,47.76598,3670,7,3,4,43,1,4.45,5.0,fr,10503,73,447468,1,2,Active Shallow Crust,0.0,89.99001,0.0,07/03/3670 +-0.06443,47.76598,8886,5,4,23,18,4,4.45,5.0,fr,10504,177,447468,1,2,Active Shallow Crust,0.0,89.99001,0.0,05/04/8886 +-0.06443,47.76598,8486,7,16,11,21,10,4.45,27.5,fr,10505,169,447470,1,1,Active Shallow Crust,0.0,89.99001,0.0,07/16/8486 +7.51731,48.56312,7961,9,11,12,4,33,3.55,5.0,fr,10506,159,447840,1,4,Active Shallow Crust,0.0,89.99332,0.0,09/11/7961 +7.51731,48.56312,2468,8,23,5,21,26,3.55,5.0,fr,10507,49,447840,1,4,Active Shallow Crust,0.0,89.99332,0.0,08/23/2468 +7.51731,48.56312,9659,6,23,15,12,5,3.55,5.0,fr,10508,193,447840,1,4,Active Shallow Crust,0.0,89.99332,0.0,06/23/9659 +7.51731,48.56312,7915,4,15,11,18,22,3.55,5.0,fr,10509,158,447840,1,4,Active Shallow Crust,0.0,89.99332,0.0,04/15/7915 +7.51731,48.56312,8652,1,9,21,19,39,3.55,15.0,fr,10510,173,447841,1,1,Active Shallow Crust,0.0,89.99332,0.0,01/09/8652 +7.51731,48.56312,5483,6,26,3,2,14,3.65,5.0,fr,10511,109,447852,1,1,Active Shallow Crust,0.0,89.98811,0.0,06/26/5483 +7.51731,48.56312,8736,3,8,2,56,26,3.65,15.0,fr,10512,174,447853,1,1,Active Shallow Crust,0.0,89.98811,0.0,03/08/8736 +7.51731,48.56312,4645,6,22,1,17,26,3.65,15.0,fr,10513,92,447859,1,1,Active Shallow Crust,0.0,89.98797,-90.0,06/22/4645 +7.51731,48.56312,7098,6,6,9,13,16,3.75,5.0,fr,10514,141,447864,1,1,Active Shallow Crust,0.0,89.9894,0.0,06/06/7098 +7.51731,48.56312,434,4,21,11,36,6,3.95,5.0,fr,10515,8,447888,1,1,Active Shallow Crust,0.0,89.99158,0.0,04/21/0434 +7.51731,48.56312,2168,2,18,3,14,5,3.95,15.0,fr,10516,43,447898,1,1,Active Shallow Crust,128.9008,89.99368,0.0,02/18/2168 +7.51731,48.56312,4725,9,6,14,20,34,4.05,15.0,fr,10517,94,447901,1,1,Active Shallow Crust,0.0,89.98874,0.0,09/06/4725 +7.51731,48.56312,8432,2,6,13,36,35,4.05,15.0,fr,10518,168,447904,1,1,Active Shallow Crust,240.0056,58.00604,0.0,02/06/8432 +7.51731,48.56312,2683,3,12,12,16,37,4.25,5.0,fr,10519,53,447924,1,1,Active Shallow Crust,0.0,89.99106,0.0,03/12/2683 +7.51731,48.56312,671,10,5,16,38,16,4.25,27.5,fr,10520,13,447935,1,1,Active Shallow Crust,128.8942,89.98103,0.0,10/05/0671 +7.51731,48.56312,2352,1,14,21,56,27,4.35,27.5,fr,10521,47,447938,1,1,Active Shallow Crust,0.0,89.98937,0.0,01/14/2352 +7.51731,48.56312,6295,7,6,22,24,49,4.45,5.0,fr,10522,125,447954,1,2,Active Shallow Crust,0.0,89.99042,-90.0,07/06/6295 +7.51731,48.56312,6057,1,21,4,10,59,4.45,5.0,fr,10523,121,447954,1,2,Active Shallow Crust,0.0,89.99042,-90.0,01/21/6057 +7.517314,48.56312,4091,11,27,9,42,0,6.25,6.744814,fr,10524,81,448164,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/27/4091 +3.17886,50.40765,7364,9,30,9,49,20,3.65,5.0,fr,10525,147,448332,1,1,Active Shallow Crust,0.0,89.99141,0.0,09/30/7364 +3.17886,50.40765,441,11,28,16,14,35,3.65,5.0,fr,10526,8,448335,1,2,Active Shallow Crust,240.0016,58.01269,0.0,11/28/0441 +3.17886,50.40765,4160,11,20,18,2,30,3.65,5.0,fr,10527,83,448335,1,2,Active Shallow Crust,240.0016,58.01269,0.0,11/20/4160 +3.17886,50.40765,1161,1,19,21,29,21,3.75,5.0,fr,10528,23,448347,1,1,Active Shallow Crust,240.0088,58.01767,0.0,01/19/1161 +3.17886,50.40765,3088,5,14,22,12,39,3.75,5.0,fr,10529,61,448353,1,1,Active Shallow Crust,128.896,89.96733,0.0,05/14/3088 +3.17886,50.40765,1988,7,1,11,56,40,4.05,5.0,fr,10530,39,448380,1,1,Active Shallow Crust,0.0,89.98916,0.0,07/01/1988 +3.17886,50.40765,5731,3,27,1,6,9,4.25,27.5,fr,10531,114,448406,1,1,Active Shallow Crust,0.0,89.98995,0.0,03/27/5731 +3.17886,50.40765,4689,9,20,2,13,27,4.35,5.0,fr,10532,93,448416,1,1,Active Shallow Crust,0.0,89.98976,0.0,09/20/4689 +3.17886,50.40765,9933,8,29,14,36,26,4.35,15.0,fr,10533,198,448417,1,1,Active Shallow Crust,0.0,89.98976,0.0,08/29/9933 +3.17886,50.40765,7202,3,31,12,48,59,4.75,5.0,fr,10534,144,448467,1,1,Active Shallow Crust,240.0089,58.00486,0.0,03/31/7202 +-1.13458,50.35328,2429,5,25,3,50,12,3.65,27.5,fr,10535,48,448814,1,1,Active Shallow Crust,0.0,89.98997,0.0,05/25/2429 +-1.13458,50.35328,5506,7,23,20,17,0,3.85,5.0,fr,10536,110,448836,1,1,Active Shallow Crust,0.0,89.98975,0.0,07/23/5506 +-1.13458,50.35328,1952,12,7,13,19,51,4.45,5.0,fr,10537,39,448908,1,1,Active Shallow Crust,0.0,89.98972,0.0,12/07/1952 +4.92282,50.85676,1661,4,7,12,15,42,3.55,27.5,fr,10538,33,449282,1,1,Active Shallow Crust,0.0,89.98727,0.0,04/07/1661 +4.92282,50.85676,151,5,14,6,8,21,3.55,27.5,fr,10539,3,449285,1,1,Active Shallow Crust,240.0119,57.99908,0.0,05/14/0151 +4.92282,50.85676,9266,3,20,13,53,22,3.55,5.0,fr,10540,185,449289,1,2,Active Shallow Crust,128.8967,89.99364,0.0,03/20/9266 +4.92282,50.85676,1291,9,16,5,47,52,3.55,5.0,fr,10541,25,449289,1,2,Active Shallow Crust,128.8967,89.99364,0.0,09/16/1291 +4.92282,50.85676,7696,10,12,4,30,50,3.65,15.0,fr,10542,153,449293,1,1,Active Shallow Crust,0.0,89.98866,0.0,10/12/7696 +4.92282,50.85676,6438,9,23,12,24,33,3.85,15.0,fr,10543,128,449317,1,1,Active Shallow Crust,0.0,89.99099,0.0,09/23/6438 +4.92282,50.85676,2107,7,11,5,12,10,3.85,5.0,fr,10544,42,449322,1,1,Active Shallow Crust,0.0,89.99088,-90.0,07/11/2107 +4.92282,50.85676,7728,10,18,16,17,21,3.95,15.0,fr,10545,154,449329,1,1,Active Shallow Crust,0.0,89.99197,0.0,10/18/7728 +4.92282,50.85676,4445,2,12,7,1,48,3.95,15.0,fr,10546,88,449335,1,1,Active Shallow Crust,0.0,89.99187,-90.0,02/12/4445 +4.92282,50.85676,5896,7,24,6,17,4,4.05,5.0,fr,10547,117,449346,1,1,Active Shallow Crust,0.0,89.98914,-90.0,07/24/5896 +4.92282,50.85676,2090,7,10,13,30,9,4.15,5.0,fr,10548,41,449352,1,1,Active Shallow Crust,0.0,89.99043,0.0,07/10/2090 +4.92282,50.85676,8282,11,24,2,19,8,5.05,15.0,fr,10549,165,449467,1,1,Active Shallow Crust,0.0,89.98969,-90.0,11/24/8282 +5.22088,41.98729,7710,5,25,17,28,56,3.75,15.0,fr,10550,154,449785,1,1,Active Shallow Crust,0.0,89.98809,0.0,05/25/7710 +5.22088,41.98729,3378,9,5,20,57,16,4.25,5.0,fr,10551,67,449850,1,1,Active Shallow Crust,0.0,89.98984,-90.0,09/05/3378 +2.92245,43.26563,3435,12,26,14,30,15,3.55,5.0,fr,10552,68,450243,1,1,Active Shallow Crust,240.0121,57.99794,0.0,12/26/3435 +2.92245,43.26563,5069,11,24,14,12,9,3.55,27.5,fr,10553,101,450245,1,1,Active Shallow Crust,240.0121,57.99785,0.0,11/24/5069 +2.92245,43.26563,4767,3,2,18,18,54,3.65,5.0,fr,10554,95,450252,1,1,Active Shallow Crust,0.0,89.99018,0.0,03/02/4767 +2.92245,43.26563,4043,4,10,18,9,20,3.65,27.5,fr,10555,80,450254,1,1,Active Shallow Crust,0.0,89.99018,0.0,04/10/4043 +2.92245,43.26563,4156,1,26,12,53,1,3.75,5.0,fr,10556,83,450264,1,3,Active Shallow Crust,0.0,89.99125,0.0,01/26/4156 +2.92245,43.26563,370,6,24,13,43,46,3.75,5.0,fr,10557,7,450264,1,3,Active Shallow Crust,0.0,89.99125,0.0,06/24/0370 +2.92245,43.26563,9656,4,26,18,23,35,3.75,5.0,fr,10558,193,450264,1,3,Active Shallow Crust,0.0,89.99125,0.0,04/26/9656 +2.92245,43.26563,5081,1,16,22,19,32,3.75,5.0,fr,10559,101,450267,1,1,Active Shallow Crust,240.0083,58.01746,0.0,01/16/5081 +2.92245,43.26563,4240,2,25,18,21,8,3.85,5.0,fr,10560,84,450276,1,1,Active Shallow Crust,0.0,89.9896,0.0,02/25/4240 +2.92245,43.26563,6820,3,6,16,26,16,4.05,5.0,fr,10561,136,450300,1,1,Active Shallow Crust,0.0,89.98968,0.0,03/06/6820 +2.92245,43.26563,379,9,6,11,47,32,4.15,5.0,fr,10562,7,450315,1,1,Active Shallow Crust,240.008,57.99707,0.0,09/06/0379 +2.92245,43.26563,5883,8,20,15,54,11,4.25,5.0,fr,10563,117,450324,1,1,Active Shallow Crust,0.0,89.99016,0.0,08/20/5883 +2.92245,43.26563,8757,7,29,18,50,12,4.45,5.0,fr,10564,175,450348,1,1,Active Shallow Crust,0.0,89.98958,0.0,07/29/8757 +7.50449,45.46322,2151,11,24,20,59,45,3.55,5.0,fr,10565,43,450720,1,4,Active Shallow Crust,0.0,89.99293,0.0,11/24/2151 +7.50449,45.46322,6549,12,23,12,40,44,3.55,5.0,fr,10566,130,450720,1,4,Active Shallow Crust,0.0,89.99293,0.0,12/23/6549 +7.50449,45.46322,462,4,12,9,59,0,3.55,5.0,fr,10567,9,450720,1,4,Active Shallow Crust,0.0,89.99293,0.0,04/12/0462 +7.50449,45.46322,2452,1,9,7,29,39,3.55,5.0,fr,10568,49,450720,1,4,Active Shallow Crust,0.0,89.99293,0.0,01/09/2452 +7.50449,45.46322,6317,8,17,22,35,43,3.55,15.0,fr,10569,126,450721,1,1,Active Shallow Crust,0.0,89.99293,0.0,08/17/6317 +7.50449,45.46322,6053,4,10,16,43,21,3.65,5.0,fr,10570,121,450735,1,1,Active Shallow Crust,240.0005,58.01257,0.0,04/10/6053 +7.50449,45.46322,3380,3,8,12,23,9,3.65,5.0,fr,10571,67,450741,1,1,Active Shallow Crust,128.8998,89.9635,0.0,03/08/3380 +7.50449,45.46322,3285,9,24,1,34,47,3.75,5.0,fr,10572,65,450750,1,1,Active Shallow Crust,0.0,89.98863,-90.0,09/24/3285 +7.50449,45.46322,2695,10,31,11,2,56,3.75,15.0,fr,10573,53,450754,1,1,Active Shallow Crust,128.8968,89.96748,0.0,10/31/2695 +7.50449,45.46322,7310,4,9,23,23,37,3.95,5.0,fr,10574,146,450768,1,1,Active Shallow Crust,0.0,89.99107,0.0,04/09/7310 +7.50449,45.46322,9698,4,7,17,47,48,4.05,5.0,fr,10575,193,450780,1,1,Active Shallow Crust,0.0,89.98807,0.0,04/07/9698 +7.50449,45.46322,9707,9,25,18,24,39,4.25,15.0,fr,10576,194,450811,1,1,Active Shallow Crust,0.0,89.99041,-90.0,09/25/9707 +7.50449,45.46322,8285,12,10,23,2,55,4.35,5.0,fr,10577,165,450816,1,1,Active Shallow Crust,0.0,89.98874,0.0,12/10/8285 +7.50449,45.46322,7396,11,24,15,19,43,4.35,15.0,fr,10578,147,450817,1,1,Active Shallow Crust,0.0,89.98874,0.0,11/24/7396 +7.50449,45.46322,2167,12,25,19,24,50,4.95,5.0,fr,10579,43,450888,1,1,Active Shallow Crust,0.0,89.99012,0.0,12/25/2167 +2.81509,42.71651,4559,2,25,1,36,51,3.55,5.0,fr,10580,91,451200,1,3,Active Shallow Crust,0.0,89.98888,0.0,02/25/4559 +2.81509,42.71651,6076,12,1,19,16,52,3.55,5.0,fr,10581,121,451200,1,3,Active Shallow Crust,0.0,89.98888,0.0,12/01/6076 +2.81509,42.71651,4298,5,19,5,47,31,3.55,5.0,fr,10582,85,451200,1,3,Active Shallow Crust,0.0,89.98888,0.0,05/19/4298 +2.81509,42.71651,7812,4,22,13,26,12,3.55,15.0,fr,10583,156,451201,1,1,Active Shallow Crust,0.0,89.98888,0.0,04/22/7812 +2.81509,42.71651,2533,9,28,23,24,0,3.55,27.5,fr,10584,50,451202,1,1,Active Shallow Crust,0.0,89.98888,0.0,09/28/2533 +2.81509,42.71651,2031,12,11,2,31,45,3.55,5.0,fr,10585,40,451209,1,1,Active Shallow Crust,128.8967,89.99259,0.0,12/11/2031 +2.81509,42.71651,7288,5,31,20,3,23,3.55,15.0,fr,10586,145,451210,1,1,Active Shallow Crust,128.8967,89.99259,0.0,05/31/7288 +2.81509,42.71651,4246,9,23,18,0,35,3.65,5.0,fr,10587,84,451212,1,6,Active Shallow Crust,0.0,89.9901,0.0,09/23/4246 +2.81509,42.71651,1282,11,20,7,24,21,3.65,5.0,fr,10588,25,451212,1,6,Active Shallow Crust,0.0,89.9901,0.0,11/20/1282 +2.81509,42.71651,2161,9,10,7,17,53,3.65,5.0,fr,10589,43,451212,1,6,Active Shallow Crust,0.0,89.9901,0.0,09/10/2161 +2.81509,42.71651,3409,2,2,5,40,41,3.65,5.0,fr,10590,68,451212,1,6,Active Shallow Crust,0.0,89.9901,0.0,02/02/3409 +2.81509,42.71651,8782,9,14,9,40,11,3.65,5.0,fr,10591,175,451212,1,6,Active Shallow Crust,0.0,89.9901,0.0,09/14/8782 +2.81509,42.71651,5828,3,12,10,39,17,3.65,5.0,fr,10592,116,451212,1,6,Active Shallow Crust,0.0,89.9901,0.0,03/12/5828 +2.81509,42.71651,1201,4,4,16,12,20,3.65,15.0,fr,10593,24,451213,1,1,Active Shallow Crust,0.0,89.9901,0.0,04/04/1201 +2.81509,42.71651,7649,1,22,10,1,29,3.75,5.0,fr,10594,152,451224,1,3,Active Shallow Crust,0.0,89.99117,0.0,01/22/7649 +2.81509,42.71651,9406,1,13,18,4,3,3.75,5.0,fr,10595,188,451224,1,3,Active Shallow Crust,0.0,89.99117,0.0,01/13/9406 +2.81509,42.71651,9553,1,20,22,25,2,3.75,5.0,fr,10596,191,451224,1,3,Active Shallow Crust,0.0,89.99117,0.0,01/20/9553 +2.81509,42.71651,4186,9,28,12,29,1,3.75,5.0,fr,10597,83,451227,1,3,Active Shallow Crust,240.008,58.0177,0.0,09/28/4186 +2.81509,42.71651,5516,11,10,23,24,59,3.75,5.0,fr,10598,110,451227,1,3,Active Shallow Crust,240.008,58.0177,0.0,11/10/5516 +2.81509,42.71651,6521,8,2,2,59,3,3.75,5.0,fr,10599,130,451227,1,3,Active Shallow Crust,240.008,58.0177,0.0,08/02/6521 +2.81509,42.71651,3217,5,25,5,52,3,3.75,15.0,fr,10600,64,451228,1,1,Active Shallow Crust,240.008,58.0177,0.0,05/25/3217 +2.81509,42.71651,1081,5,17,1,50,7,3.75,5.0,fr,10601,21,451230,1,1,Active Shallow Crust,0.0,89.99107,-90.0,05/17/1081 +2.81509,42.71651,2839,9,10,0,23,9,3.85,5.0,fr,10602,56,451236,1,1,Active Shallow Crust,0.0,89.98951,0.0,09/10/2839 +2.81509,42.71651,5737,3,23,15,29,54,3.85,5.0,fr,10603,114,451239,1,2,Active Shallow Crust,240.0109,57.99732,0.0,03/23/5737 +2.81509,42.71651,4625,3,16,8,50,28,3.85,5.0,fr,10604,92,451239,1,2,Active Shallow Crust,240.0109,57.99732,0.0,03/16/4625 +2.81509,42.71651,8298,7,9,20,1,32,3.85,5.0,fr,10605,165,451242,1,1,Active Shallow Crust,0.0,89.98939,-90.0,07/09/8298 +2.81509,42.71651,7729,9,19,0,49,29,3.95,5.0,fr,10606,154,451248,1,1,Active Shallow Crust,0.0,89.99065,0.0,09/19/7729 +2.81509,42.71651,3511,6,11,17,58,21,3.95,5.0,fr,10607,70,451254,1,1,Active Shallow Crust,0.0,89.99054,-90.0,06/11/3511 +2.81509,42.71651,675,2,6,16,47,55,4.15,15.0,fr,10608,13,451273,1,1,Active Shallow Crust,0.0,89.99072,0.0,02/06/0675 +2.81509,42.71651,745,1,25,15,43,57,4.15,5.0,fr,10609,14,451275,1,1,Active Shallow Crust,240.0082,57.99716,0.0,01/25/0745 +2.81509,42.71651,8102,2,25,5,48,27,4.25,5.0,fr,10610,162,451284,1,1,Active Shallow Crust,0.0,89.99007,0.0,02/25/8102 +2.81509,42.71651,1005,1,31,17,38,51,4.25,5.0,fr,10611,20,451290,1,1,Active Shallow Crust,0.0,89.98996,-90.0,01/31/1005 +2.81509,42.71651,7029,10,4,13,30,28,4.35,5.0,fr,10612,140,451296,1,1,Active Shallow Crust,0.0,89.98968,0.0,10/04/7029 +2.81509,42.71651,724,10,16,16,5,47,4.55,5.0,fr,10613,14,451323,1,1,Active Shallow Crust,240.0082,57.99725,0.0,10/16/0724 +2.81509,42.71651,6277,9,12,5,28,36,4.65,5.0,fr,10614,125,451332,1,1,Active Shallow Crust,0.0,89.98956,0.0,09/12/6277 +2.81509,42.71651,4960,10,24,10,3,43,4.85,5.0,fr,10615,99,451356,1,1,Active Shallow Crust,0.0,89.99004,0.0,10/24/4960 +1.79072,42.15244,637,12,24,1,13,12,3.55,5.0,fr,10616,12,451680,1,4,Active Shallow Crust,0.0,89.99065,0.0,12/24/0637 +1.79072,42.15244,6589,8,27,2,52,5,3.55,5.0,fr,10617,131,451680,1,4,Active Shallow Crust,0.0,89.99065,0.0,08/27/6589 +1.79072,42.15244,7308,7,16,7,15,28,3.55,5.0,fr,10618,146,451680,1,4,Active Shallow Crust,0.0,89.99065,0.0,07/16/7308 +1.79072,42.15244,8619,3,23,8,21,14,3.55,5.0,fr,10619,172,451680,1,4,Active Shallow Crust,0.0,89.99065,0.0,03/23/8619 +1.79072,42.15244,9358,8,22,9,12,2,3.55,15.0,fr,10620,187,451681,1,1,Active Shallow Crust,0.0,89.99065,0.0,08/22/9358 +1.79072,42.15244,7460,2,3,20,32,2,3.65,27.5,fr,10621,149,451694,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/03/7460 +1.79072,42.15244,6625,2,12,21,0,9,3.75,5.0,fr,10622,132,451704,1,1,Active Shallow Crust,0.0,89.98961,0.0,02/12/6625 +1.79072,42.15244,2881,11,15,12,52,58,3.85,15.0,fr,10623,57,451720,1,1,Active Shallow Crust,240.0102,57.99774,0.0,11/15/2881 +1.79072,42.15244,3349,10,20,11,22,46,4.05,5.0,fr,10624,66,451740,1,1,Active Shallow Crust,0.0,89.98949,0.0,10/20/3349 +1.79072,42.15244,9216,3,30,9,0,31,4.05,15.0,fr,10625,184,451741,1,1,Active Shallow Crust,0.0,89.98949,0.0,03/30/9216 +1.79072,42.15244,1985,7,12,20,32,50,4.15,15.0,fr,10626,39,451753,1,1,Active Shallow Crust,0.0,89.98969,0.0,07/12/1985 +3.70319,42.98382,3654,1,9,13,43,1,3.55,5.0,fr,10627,73,452163,1,1,Active Shallow Crust,240.0123,57.99794,0.0,01/09/3654 +3.70319,42.98382,1137,8,10,5,20,54,3.55,15.0,fr,10628,22,452170,1,1,Active Shallow Crust,128.8971,89.99262,0.0,08/10/1137 +3.70319,42.98382,5379,12,23,1,23,16,3.65,27.5,fr,10629,107,452174,1,1,Active Shallow Crust,0.0,89.99014,0.0,12/23/5379 +1.81606,41.48655,8949,7,27,14,26,21,3.55,5.0,fr,10630,178,452640,1,2,Active Shallow Crust,0.0,89.99055,0.0,07/27/8949 +1.81606,41.48655,8084,4,8,22,31,53,3.55,5.0,fr,10631,161,452640,1,2,Active Shallow Crust,0.0,89.99055,0.0,04/08/8084 +1.81606,41.48655,1300,5,13,21,19,57,3.65,15.0,fr,10632,25,452653,1,1,Active Shallow Crust,0.0,89.9899,0.0,05/13/1300 +1.81606,41.48655,3142,10,22,14,48,59,3.85,5.0,fr,10633,62,452676,1,1,Active Shallow Crust,0.0,89.99064,0.0,10/22/3142 +1.81606,41.48655,9025,1,15,3,18,42,3.95,5.0,fr,10634,180,452691,1,1,Active Shallow Crust,240.0192,58.00475,0.0,01/15/9025 +1.81606,41.48655,1918,4,28,10,19,42,4.05,5.0,fr,10635,38,452700,1,3,Active Shallow Crust,0.0,89.99044,0.0,04/28/1918 +1.81606,41.48655,5136,1,17,6,51,45,4.05,5.0,fr,10636,102,452700,1,3,Active Shallow Crust,0.0,89.99044,0.0,01/17/5136 +1.81606,41.48655,5644,1,27,14,53,41,4.05,5.0,fr,10637,112,452700,1,3,Active Shallow Crust,0.0,89.99044,0.0,01/27/5644 +1.81606,41.48655,3693,10,12,19,8,37,4.15,5.0,fr,10638,73,452715,1,1,Active Shallow Crust,240.0075,57.99708,0.0,10/12/3693 +1.81606,41.48655,2151,1,16,18,28,21,4.15,5.0,fr,10639,43,452718,1,1,Active Shallow Crust,0.0,89.99043,-90.0,01/16/2151 +1.81606,41.48655,2024,7,25,13,17,4,4.25,15.0,fr,10640,40,452731,1,1,Active Shallow Crust,0.0,89.98976,-90.0,07/25/2024 +1.81606,41.48655,6350,7,11,9,14,39,4.35,15.0,fr,10641,126,452737,1,1,Active Shallow Crust,0.0,89.99023,0.0,07/11/6350 +1.81606,41.48655,3011,4,19,23,41,26,4.35,15.0,fr,10642,60,452746,1,1,Active Shallow Crust,128.8986,89.98286,0.0,04/19/3011 +1.81606,41.48655,8351,12,29,5,58,4,4.55,27.5,fr,10643,167,452762,1,1,Active Shallow Crust,0.0,89.98985,0.0,12/29/8351 +1.81606,41.48655,4912,2,13,1,33,32,4.65,5.0,fr,10644,98,452775,1,1,Active Shallow Crust,240.0093,57.99399,0.0,02/13/4912 +-5.34236,49.74731,5870,12,3,6,30,32,3.55,5.0,fr,10645,117,453120,1,1,Active Shallow Crust,0.0,89.98697,0.0,12/03/5870 +-5.34236,49.74731,6650,3,25,23,47,25,4.25,5.0,fr,10646,132,453204,1,1,Active Shallow Crust,0.0,89.99126,0.0,03/25/6650 +2.11508,49.72707,1824,8,4,20,15,21,3.65,15.0,fr,10647,36,453613,1,1,Active Shallow Crust,0.0,89.99129,0.0,08/04/1824 +2.11508,49.72707,5723,8,31,2,13,16,3.65,5.0,fr,10648,114,453615,1,1,Active Shallow Crust,240.001,58.01307,0.0,08/31/5723 +2.11508,49.72707,2404,11,24,7,36,26,3.75,5.0,fr,10649,48,453624,1,1,Active Shallow Crust,0.0,89.98965,0.0,11/24/2404 +2.11508,49.72707,2170,11,15,17,36,1,3.75,15.0,fr,10650,43,453631,1,1,Active Shallow Crust,0.0,89.98952,-90.0,11/15/2170 +2.11508,49.72707,9819,6,14,14,47,45,4.15,5.0,fr,10651,196,453681,1,1,Active Shallow Crust,128.897,89.99429,0.0,06/14/9819 +2.11508,49.72707,7766,10,28,10,47,19,4.25,5.0,fr,10652,155,453684,1,1,Active Shallow Crust,0.0,89.98981,0.0,10/28/7766 +2.11508,49.72707,1032,9,11,21,50,36,4.35,5.0,fr,10653,20,453696,1,1,Active Shallow Crust,0.0,89.98962,0.0,09/11/1032 +2.11508,49.72707,3215,11,28,22,56,38,4.35,5.0,fr,10654,64,453702,1,1,Active Shallow Crust,0.0,89.9895,-90.0,11/28/3215 +3.80774,44.19359,137,12,13,9,37,43,3.55,5.0,fr,10655,2,454080,1,1,Active Shallow Crust,0.0,89.98916,0.0,12/13/0137 +3.80774,44.19359,5184,9,20,20,24,46,3.65,5.0,fr,10656,103,454092,1,1,Active Shallow Crust,0.0,89.99033,0.0,09/20/5184 +3.80774,44.19359,5664,4,18,16,42,57,3.85,5.0,fr,10657,113,454116,1,1,Active Shallow Crust,0.0,89.98976,0.0,04/18/5664 +3.80774,44.19359,4238,12,13,17,22,14,3.95,15.0,fr,10658,84,454129,1,1,Active Shallow Crust,0.0,89.99088,0.0,12/13/4238 +3.80774,44.19359,9765,1,21,23,1,30,4.15,5.0,fr,10659,195,454152,1,1,Active Shallow Crust,0.0,89.98913,0.0,01/21/9765 +3.80774,44.19359,3858,1,27,0,57,54,4.55,5.0,fr,10660,77,454200,1,2,Active Shallow Crust,0.0,89.98971,0.0,01/27/3858 +3.80774,44.19359,9631,12,19,1,15,49,4.55,5.0,fr,10661,192,454200,1,2,Active Shallow Crust,0.0,89.98971,0.0,12/19/9631 +3.80774,44.19359,3835,10,4,4,10,27,5.25,5.0,fr,10662,76,454284,1,1,Active Shallow Crust,0.0,89.98978,0.0,10/04/3835 +-2.10717,50.15697,4829,5,12,9,14,40,3.75,5.0,fr,10663,96,454590,1,1,Active Shallow Crust,0.0,89.98962,-90.0,05/12/4829 +-2.10717,50.15697,737,2,3,11,27,6,3.95,5.0,fr,10664,14,454617,1,1,Active Shallow Crust,128.8997,89.99389,0.0,02/03/0737 +2.37381,40.08949,8700,6,16,12,46,38,3.85,5.0,fr,10665,173,455082,1,1,Active Shallow Crust,0.0,89.98895,-90.0,06/16/8700 +-0.53783,48.40164,2860,7,1,15,10,44,3.55,27.5,fr,10666,57,455528,1,1,Active Shallow Crust,0.0,89.98985,-90.0,07/01/2860 +-0.53783,48.40164,858,1,4,2,16,45,3.65,5.0,fr,10667,17,455532,1,1,Active Shallow Crust,0.0,89.9903,0.0,01/04/0858 +-0.53783,48.40164,8906,6,9,3,39,0,3.85,15.0,fr,10668,178,455557,1,1,Active Shallow Crust,0.0,89.98993,0.0,06/09/8906 +-0.53783,48.40164,7020,8,23,15,25,6,3.95,5.0,fr,10669,140,455568,1,2,Active Shallow Crust,0.0,89.98997,0.0,08/23/7020 +-0.53783,48.40164,459,12,13,9,31,57,3.95,5.0,fr,10670,9,455568,1,2,Active Shallow Crust,0.0,89.98997,0.0,12/13/0459 +-0.53783,48.40164,6054,5,22,13,51,6,4.15,5.0,fr,10671,121,455601,1,1,Active Shallow Crust,128.8972,89.99371,0.0,05/22/6054 +-0.53783,48.40164,9378,12,30,20,22,8,4.45,27.5,fr,10672,187,455630,1,1,Active Shallow Crust,0.0,89.98991,0.0,12/30/9378 +-0.53783,48.40164,200,7,10,18,19,58,4.45,5.0,fr,10673,3,455631,1,1,Active Shallow Crust,240.0057,57.99479,0.0,07/10/0200 +3.74839,50.32045,8697,10,9,4,17,55,3.55,5.0,fr,10674,173,456000,1,4,Active Shallow Crust,0.0,89.99034,0.0,10/09/8697 +3.74839,50.32045,9518,6,20,18,27,57,3.55,5.0,fr,10675,190,456000,1,4,Active Shallow Crust,0.0,89.99034,0.0,06/20/9518 +3.74839,50.32045,4404,4,6,10,38,10,3.55,5.0,fr,10676,88,456000,1,4,Active Shallow Crust,0.0,89.99034,0.0,04/06/4404 +3.74839,50.32045,4723,7,31,16,6,56,3.55,5.0,fr,10677,94,456000,1,4,Active Shallow Crust,0.0,89.99034,0.0,07/31/4723 +3.74839,50.32045,3681,10,19,6,27,43,3.55,15.0,fr,10678,73,456001,1,1,Active Shallow Crust,0.0,89.99034,0.0,10/19/3681 +3.74839,50.32045,4229,9,3,3,18,52,3.55,5.0,fr,10679,84,456009,1,1,Active Shallow Crust,128.8964,89.99356,0.0,09/03/4229 +3.74839,50.32045,2881,10,10,14,18,22,3.65,5.0,fr,10680,57,456012,1,3,Active Shallow Crust,0.0,89.99139,0.0,10/10/2881 +3.74839,50.32045,4822,10,10,23,44,51,3.65,5.0,fr,10681,96,456012,1,3,Active Shallow Crust,0.0,89.99139,0.0,10/10/4822 +3.74839,50.32045,1329,7,24,3,49,57,3.65,5.0,fr,10682,26,456012,1,3,Active Shallow Crust,0.0,89.99139,0.0,07/24/1329 +3.74839,50.32045,431,12,21,15,44,57,3.65,15.0,fr,10683,8,456013,1,1,Active Shallow Crust,0.0,89.99139,0.0,12/21/0431 +3.74839,50.32045,2452,5,31,22,26,37,3.65,5.0,fr,10684,49,456015,1,1,Active Shallow Crust,240.0013,58.01302,0.0,05/31/2452 +3.74839,50.32045,68,7,24,18,15,17,3.65,15.0,fr,10685,1,456022,1,1,Active Shallow Crust,128.9008,89.96334,0.0,07/24/0068 +3.74839,50.32045,739,3,25,1,24,48,3.75,5.0,fr,10686,14,456024,1,1,Active Shallow Crust,0.0,89.98977,0.0,03/25/0739 +3.74839,50.32045,66,2,2,10,34,15,3.75,15.0,fr,10687,1,456025,1,1,Active Shallow Crust,0.0,89.98977,0.0,02/02/0066 +3.74839,50.32045,5699,11,13,18,12,45,3.75,5.0,fr,10688,113,456030,1,3,Active Shallow Crust,0.0,89.98965,-90.0,11/13/5699 +3.74839,50.32045,9082,5,7,22,29,4,3.75,5.0,fr,10689,181,456030,1,3,Active Shallow Crust,0.0,89.98965,-90.0,05/07/9082 +3.74839,50.32045,8112,4,29,13,3,45,3.75,5.0,fr,10690,162,456030,1,3,Active Shallow Crust,0.0,89.98965,-90.0,04/29/8112 +3.74839,50.32045,6407,5,13,11,33,24,3.85,5.0,fr,10691,128,456036,1,3,Active Shallow Crust,0.0,89.99088,0.0,05/13/6407 +3.74839,50.32045,3210,8,30,18,54,51,3.85,5.0,fr,10692,64,456036,1,3,Active Shallow Crust,0.0,89.99088,0.0,08/30/3210 +3.74839,50.32045,5880,12,14,9,54,4,3.85,5.0,fr,10693,117,456036,1,3,Active Shallow Crust,0.0,89.99088,0.0,12/14/5880 +3.74839,50.32045,9234,4,28,7,32,29,3.85,5.0,fr,10694,184,456039,1,1,Active Shallow Crust,240.0114,57.99781,0.0,04/28/9234 +3.74839,50.32045,9212,9,18,23,50,49,4.05,5.0,fr,10695,184,456060,1,1,Active Shallow Crust,0.0,89.98914,0.0,09/18/9212 +3.74839,50.32045,3129,7,14,16,40,42,4.15,5.0,fr,10696,62,456072,1,1,Active Shallow Crust,0.0,89.99032,0.0,07/14/3129 +3.74839,50.32045,4759,10,23,22,43,55,4.15,15.0,fr,10697,95,456073,1,1,Active Shallow Crust,0.0,89.99032,0.0,10/23/4759 +3.74839,50.32045,8052,12,27,7,16,24,4.25,15.0,fr,10698,161,456085,1,2,Active Shallow Crust,0.0,89.98994,0.0,12/27/8052 +3.74839,50.32045,6715,7,13,8,54,50,4.25,15.0,fr,10699,134,456085,1,2,Active Shallow Crust,0.0,89.98994,0.0,07/13/6715 +3.74839,50.32045,9607,8,19,23,40,3,4.35,5.0,fr,10700,192,456096,1,1,Active Shallow Crust,0.0,89.98975,0.0,08/19/9607 +3.74839,50.32045,4602,12,8,13,7,18,4.45,15.0,fr,10701,92,456109,1,1,Active Shallow Crust,0.0,89.98972,0.0,12/08/4602 +3.74839,50.32045,831,6,4,14,47,31,4.55,5.0,fr,10702,16,456120,1,1,Active Shallow Crust,0.0,89.98981,0.0,06/04/0831 +3.74839,50.32045,6309,8,9,15,48,11,4.65,5.0,fr,10703,126,456132,1,1,Active Shallow Crust,0.0,89.99002,0.0,08/09/6309 +3.74839,50.32045,5055,3,12,21,52,6,4.75,5.0,fr,10704,101,456144,1,1,Active Shallow Crust,0.0,89.9903,0.0,03/12/5055 +3.74839,50.32045,9669,10,20,7,2,35,5.65,5.0,fr,10705,193,456252,1,1,Active Shallow Crust,0.0,89.98995,0.0,10/20/9669 +6.4166,49.69061,9074,10,2,2,37,5,3.65,15.0,fr,10706,181,456493,1,1,Active Shallow Crust,0.0,89.98837,0.0,10/02/9074 +6.4166,49.69061,2896,1,29,1,33,43,3.85,5.0,fr,10707,57,456516,1,1,Active Shallow Crust,0.0,89.99076,0.0,01/29/2896 +6.4166,49.69061,4320,6,4,0,23,16,4.15,5.0,fr,10708,86,456552,1,1,Active Shallow Crust,0.0,89.99019,0.0,06/04/4320 +2.61346,45.45286,4125,1,21,7,15,13,3.55,5.0,fr,10709,82,457440,1,2,Active Shallow Crust,0.0,89.98939,0.0,01/21/4125 +2.61346,45.45286,2568,9,24,22,36,1,3.55,5.0,fr,10710,51,457440,1,2,Active Shallow Crust,0.0,89.98939,0.0,09/24/2568 +2.61346,45.45286,6949,2,19,5,54,11,3.55,15.0,fr,10711,138,457441,1,1,Active Shallow Crust,0.0,89.98939,0.0,02/19/6949 +2.61346,45.45286,1557,11,9,10,7,54,3.65,5.0,fr,10712,31,457452,1,4,Active Shallow Crust,0.0,89.99054,0.0,11/09/1557 +2.61346,45.45286,7583,2,9,2,34,56,3.65,5.0,fr,10713,151,457452,1,4,Active Shallow Crust,0.0,89.99054,0.0,02/09/7583 +2.61346,45.45286,4576,7,11,13,57,10,3.65,5.0,fr,10714,91,457452,1,4,Active Shallow Crust,0.0,89.99054,0.0,07/11/4576 +2.61346,45.45286,7730,2,10,21,0,47,3.65,5.0,fr,10715,154,457452,1,4,Active Shallow Crust,0.0,89.99054,0.0,02/10/7730 +2.61346,45.45286,3744,10,3,4,9,32,3.75,5.0,fr,10716,74,457464,1,1,Active Shallow Crust,0.0,89.98876,0.0,10/03/3744 +2.61346,45.45286,8782,8,8,20,55,59,4.05,27.5,fr,10717,175,457502,1,1,Active Shallow Crust,0.0,89.99005,0.0,08/08/8782 +2.61346,45.45286,4954,6,22,19,18,1,4.25,5.0,fr,10718,99,457524,1,2,Active Shallow Crust,0.0,89.99052,0.0,06/22/4954 +2.61346,45.45286,6273,7,11,12,7,23,4.25,5.0,fr,10719,125,457524,1,2,Active Shallow Crust,0.0,89.99052,0.0,07/11/6273 +2.61346,45.45286,2911,7,6,20,24,15,4.55,5.0,fr,10720,58,457563,1,1,Active Shallow Crust,240.009,57.99739,0.0,07/06/2911 +5.64966,44.71199,1710,6,18,4,6,54,3.55,5.0,fr,10721,34,457920,1,2,Active Shallow Crust,0.0,89.99284,0.0,06/18/1710 +5.64966,44.71199,5636,10,8,4,4,2,3.55,5.0,fr,10722,112,457920,1,2,Active Shallow Crust,0.0,89.99284,0.0,10/08/5636 +5.64966,44.71199,6117,11,23,9,11,39,3.65,5.0,fr,10723,122,457932,1,3,Active Shallow Crust,0.0,89.98723,0.0,11/23/6117 +5.64966,44.71199,4337,9,2,12,31,39,3.65,5.0,fr,10724,86,457932,1,3,Active Shallow Crust,0.0,89.98723,0.0,09/02/4337 +5.64966,44.71199,1390,9,20,9,47,44,3.65,5.0,fr,10725,27,457932,1,3,Active Shallow Crust,0.0,89.98723,0.0,09/20/1390 +5.64966,44.71199,7233,7,5,7,52,8,3.85,5.0,fr,10726,144,457956,1,1,Active Shallow Crust,0.0,89.98985,0.0,07/05/7233 +5.64966,44.71199,5577,9,25,1,41,4,3.85,27.5,fr,10727,111,457967,1,1,Active Shallow Crust,128.8948,89.99493,0.0,09/25/5577 +5.64966,44.71199,7097,10,10,1,17,42,4.05,5.0,fr,10728,141,457980,1,1,Active Shallow Crust,0.0,89.99194,0.0,10/10/7097 +5.64966,44.71199,7074,3,30,21,7,0,4.15,5.0,fr,10729,141,457992,1,2,Active Shallow Crust,0.0,89.98923,0.0,03/30/7074 +5.64966,44.71199,6058,3,18,18,19,15,4.15,5.0,fr,10730,121,457992,1,2,Active Shallow Crust,0.0,89.98923,0.0,03/18/6058 +5.64966,44.71199,6180,1,12,9,15,24,4.15,15.0,fr,10731,123,457993,1,1,Active Shallow Crust,0.0,89.98923,0.0,01/12/6180 +5.64966,44.71199,778,5,28,14,1,24,4.25,15.0,fr,10732,15,458011,1,1,Active Shallow Crust,0.0,89.99029,-90.0,05/28/0778 +5.64966,44.71199,8290,4,23,15,20,18,4.55,5.0,fr,10733,165,458040,1,1,Active Shallow Crust,0.0,89.99094,0.0,04/23/8290 +1.96636,44.95692,9931,2,21,9,1,45,3.55,27.5,fr,10734,198,458402,1,1,Active Shallow Crust,0.0,89.9893,0.0,02/21/9931 +1.96636,44.95692,6399,9,2,9,23,17,3.65,5.0,fr,10735,127,458412,1,1,Active Shallow Crust,0.0,89.99046,0.0,09/02/6399 +1.96636,44.95692,5733,3,10,19,23,26,3.85,27.5,fr,10736,114,458444,1,1,Active Shallow Crust,0.0,89.98978,-90.0,03/10/5733 +1.96636,44.95692,3156,8,12,18,45,55,4.15,15.0,fr,10737,63,458473,1,1,Active Shallow Crust,0.0,89.99017,0.0,08/12/3156 +1.96636,44.95692,6429,6,19,3,45,52,4.35,5.0,fr,10738,128,458496,1,1,Active Shallow Crust,0.0,89.99006,0.0,06/19/6429 +1.96636,44.95692,4989,5,5,1,41,8,4.75,5.0,fr,10739,99,458544,1,1,Active Shallow Crust,0.0,89.99014,0.0,05/05/4989 +1.96636,44.95692,1194,1,10,8,59,59,4.75,15.0,fr,10740,23,458545,1,1,Active Shallow Crust,0.0,89.99014,0.0,01/10/1194 +-2.97323,42.28575,2850,4,1,10,9,37,3.55,15.0,fr,10741,56,458884,1,1,Active Shallow Crust,240.0124,57.99807,0.0,04/01/2850 +-2.97323,42.28575,6316,3,7,2,42,20,3.55,27.5,fr,10742,126,458885,1,1,Active Shallow Crust,240.0124,57.99797,0.0,03/07/6316 +-2.97323,42.28575,4896,1,1,6,43,4,3.65,5.0,fr,10743,97,458892,1,1,Active Shallow Crust,0.0,89.99003,0.0,01/01/4896 +-2.97323,42.28575,5699,12,22,5,9,47,3.85,5.0,fr,10744,113,458916,1,1,Active Shallow Crust,0.0,89.98944,0.0,12/22/5699 +-2.97323,42.28575,1554,5,28,0,23,29,3.85,5.0,fr,10745,31,458925,1,1,Active Shallow Crust,128.8957,89.9934,0.0,05/28/1554 +-2.97323,42.28575,3995,6,22,11,46,7,4.05,5.0,fr,10746,79,458940,1,1,Active Shallow Crust,0.0,89.98951,0.0,06/22/3995 +-2.97323,42.28575,3435,2,17,17,57,27,4.05,5.0,fr,10747,68,458943,1,1,Active Shallow Crust,240.0052,58.00556,0.0,02/17/3435 +-2.97323,42.28575,3964,3,12,8,38,16,4.35,5.0,fr,10748,79,458976,1,2,Active Shallow Crust,0.0,89.9896,0.0,03/12/3964 +-2.97323,42.28575,2701,11,7,4,42,36,4.35,5.0,fr,10749,54,458976,1,2,Active Shallow Crust,0.0,89.9896,0.0,11/07/2701 +-2.97323,42.28575,8811,6,8,12,51,51,4.45,5.0,fr,10750,176,458988,1,1,Active Shallow Crust,0.0,89.98941,0.0,06/08/8811 +-2.7064,48.23413,7037,4,3,17,54,20,3.55,15.0,fr,10751,140,459361,1,1,Active Shallow Crust,0.0,89.98992,0.0,04/03/7037 +-2.7064,48.23413,8542,9,15,14,45,17,3.65,5.0,fr,10752,170,459372,1,2,Active Shallow Crust,0.0,89.99102,0.0,09/15/8542 +-2.7064,48.23413,2923,5,12,14,10,52,3.65,5.0,fr,10753,58,459372,1,2,Active Shallow Crust,0.0,89.99102,0.0,05/12/2923 +-2.7064,48.23413,2460,4,26,5,13,9,3.65,15.0,fr,10754,49,459379,1,1,Active Shallow Crust,0.0,89.99091,-90.0,04/26/2460 +-2.7064,48.23413,3257,2,17,6,42,5,3.75,27.5,fr,10755,65,459389,1,1,Active Shallow Crust,240.008,58.01781,0.0,02/17/3257 +-2.7064,48.23413,6000,6,2,12,28,43,3.75,5.0,fr,10756,119,459393,1,1,Active Shallow Crust,128.8962,89.96728,0.0,06/02/6000 +-2.7064,48.23413,8929,10,17,11,6,36,3.85,5.0,fr,10757,178,459396,1,1,Active Shallow Crust,0.0,89.99049,0.0,10/17/8929 +-2.7064,48.23413,7626,2,25,9,11,22,3.85,5.0,fr,10758,152,459399,1,1,Active Shallow Crust,240.0116,57.99784,0.0,02/25/7626 +-2.7064,48.23413,3813,12,4,21,16,17,3.85,27.5,fr,10759,76,459401,1,1,Active Shallow Crust,240.0116,57.99784,0.0,12/04/3813 +-2.7064,48.23413,9195,7,7,0,38,56,3.85,5.0,fr,10760,183,459405,1,1,Active Shallow Crust,128.8955,89.99406,0.0,07/07/9195 +-2.7064,48.23413,5333,3,15,10,12,44,3.95,5.0,fr,10761,106,459408,1,1,Active Shallow Crust,0.0,89.9894,0.0,03/15/5333 +-2.7064,48.23413,1706,9,21,15,57,57,4.05,5.0,fr,10762,34,459426,1,1,Active Shallow Crust,0.0,89.99045,-90.0,09/21/1706 +-2.7064,48.23413,2804,11,25,0,49,13,4.25,5.0,fr,10763,56,459444,1,1,Active Shallow Crust,0.0,89.9895,0.0,11/25/2804 +-2.7064,48.23413,8080,5,16,17,26,31,4.35,5.0,fr,10764,161,459456,1,1,Active Shallow Crust,0.0,89.99064,0.0,05/16/8080 +-2.7064,48.23413,4158,8,25,10,22,52,4.45,5.0,fr,10765,83,459468,1,1,Active Shallow Crust,0.0,89.99046,0.0,08/25/4158 +-2.7064,48.23413,1621,11,6,8,26,19,4.55,5.0,fr,10766,32,459483,1,1,Active Shallow Crust,240.0098,57.99741,0.0,11/06/1621 +-2.7064,48.23413,7629,6,5,13,57,53,5.15,5.0,fr,10767,152,459558,1,1,Active Shallow Crust,0.0,89.98977,-90.0,06/05/7629 +2.65201,41.3503,6733,12,26,10,8,36,3.55,5.0,fr,10768,134,459840,1,2,Active Shallow Crust,0.0,89.98865,0.0,12/26/6733 +2.65201,41.3503,334,10,16,0,3,56,3.55,5.0,fr,10769,6,459840,1,2,Active Shallow Crust,0.0,89.98865,0.0,10/16/0334 +2.65201,41.3503,9002,8,1,10,7,4,3.55,15.0,fr,10770,180,459844,1,1,Active Shallow Crust,240.0121,57.99803,0.0,08/01/9002 +2.65201,41.3503,5899,11,15,8,37,24,3.55,27.5,fr,10771,117,459848,1,1,Active Shallow Crust,0.0,89.98851,-90.0,11/15/5899 +2.65201,41.3503,8631,12,20,21,18,34,3.55,15.0,fr,10772,172,459850,1,1,Active Shallow Crust,128.8967,89.99243,0.0,12/20/8631 +2.65201,41.3503,6072,3,5,1,54,21,3.65,5.0,fr,10773,121,459852,1,2,Active Shallow Crust,0.0,89.98988,0.0,03/05/6072 +2.65201,41.3503,3182,3,13,9,43,7,3.65,5.0,fr,10774,63,459852,1,2,Active Shallow Crust,0.0,89.98988,0.0,03/13/3182 +2.65201,41.3503,3717,5,14,2,21,34,3.75,5.0,fr,10775,74,459864,1,3,Active Shallow Crust,0.0,89.99098,0.0,05/14/3717 +2.65201,41.3503,6584,11,25,12,44,10,3.75,5.0,fr,10776,131,459864,1,3,Active Shallow Crust,0.0,89.99098,0.0,11/25/6584 +2.65201,41.3503,1292,10,2,10,56,0,3.75,5.0,fr,10777,25,459864,1,3,Active Shallow Crust,0.0,89.99098,0.0,10/02/1292 +2.65201,41.3503,8212,3,2,17,18,31,3.75,15.0,fr,10778,164,459865,1,1,Active Shallow Crust,0.0,89.99098,0.0,03/02/8212 +2.65201,41.3503,9302,8,31,13,1,25,3.75,5.0,fr,10779,186,459870,1,1,Active Shallow Crust,0.0,89.99088,-90.0,08/31/9302 +2.65201,41.3503,8797,10,19,4,5,31,3.75,15.0,fr,10780,175,459871,1,1,Active Shallow Crust,0.0,89.99088,-90.0,10/19/8797 +2.65201,41.3503,9683,12,19,7,8,31,3.75,5.0,fr,10781,193,459873,1,1,Active Shallow Crust,128.8963,89.9674,0.0,12/19/9683 +2.65201,41.3503,2940,8,12,9,43,33,3.85,15.0,fr,10782,58,459877,1,2,Active Shallow Crust,0.0,89.98928,0.0,08/12/2940 +2.65201,41.3503,4027,2,23,5,14,36,3.85,15.0,fr,10783,80,459877,1,2,Active Shallow Crust,0.0,89.98928,0.0,02/23/4027 +2.65201,41.3503,321,12,30,14,36,12,3.85,5.0,fr,10784,6,459885,1,1,Active Shallow Crust,128.896,89.9933,0.0,12/30/0321 +2.65201,41.3503,2054,4,17,7,37,14,3.95,5.0,fr,10785,41,459888,1,1,Active Shallow Crust,0.0,89.99045,0.0,04/17/2054 +2.65201,41.3503,6999,10,2,21,49,37,3.95,27.5,fr,10786,139,459890,1,1,Active Shallow Crust,0.0,89.99045,0.0,10/02/6999 +2.65201,41.3503,5625,1,11,3,41,2,3.95,15.0,fr,10787,112,459892,1,1,Active Shallow Crust,240.0194,58.00465,0.0,01/11/5625 +2.65201,41.3503,5892,4,17,23,20,15,3.95,5.0,fr,10788,117,459894,1,1,Active Shallow Crust,0.0,89.99033,-90.0,04/17/5892 +2.65201,41.3503,3913,12,14,8,19,35,4.05,27.5,fr,10789,78,459902,1,1,Active Shallow Crust,0.0,89.98936,0.0,12/14/3913 +2.65201,41.3503,4247,11,9,4,10,1,4.05,15.0,fr,10790,84,459907,1,1,Active Shallow Crust,0.0,89.98923,-90.0,11/09/4247 +2.65201,41.3503,4215,4,26,18,40,14,4.15,15.0,fr,10791,84,459913,1,1,Active Shallow Crust,0.0,89.99052,0.0,04/26/4215 +2.65201,41.3503,1813,10,25,16,35,42,4.15,27.5,fr,10792,36,459914,1,1,Active Shallow Crust,0.0,89.99052,0.0,10/25/1813 +2.65201,41.3503,1268,9,29,1,7,3,4.25,15.0,fr,10793,25,459925,1,1,Active Shallow Crust,0.0,89.98985,0.0,09/29/1268 +2.65201,41.3503,6417,3,19,12,42,12,4.25,15.0,fr,10794,128,459928,1,1,Active Shallow Crust,240.0067,57.99388,0.0,03/19/6417 +2.65201,41.3503,4768,2,28,16,55,38,4.45,27.5,fr,10795,95,459950,1,1,Active Shallow Crust,0.0,89.9906,0.0,02/28/4768 +2.65201,41.3503,4482,9,19,13,28,15,4.75,15.0,fr,10796,89,459991,1,1,Active Shallow Crust,0.0,89.99038,-90.0,09/19/4482 +2.65201,41.3503,9617,9,1,10,27,41,4.75,15.0,fr,10797,192,459994,1,1,Active Shallow Crust,128.89,89.98814,0.0,09/01/9617 +2.65201,41.3503,8019,1,5,6,8,48,4.95,5.0,fr,10798,160,460008,1,1,Active Shallow Crust,0.0,89.99018,0.0,01/05/8019 +4.09492,47.99334,7333,6,19,1,33,8,3.65,15.0,fr,10799,146,460336,1,1,Active Shallow Crust,240.0018,58.01311,0.0,06/19/7333 +4.09492,47.99334,2319,10,2,2,8,34,3.95,5.0,fr,10800,46,460368,1,1,Active Shallow Crust,0.0,89.99149,0.0,10/02/2319 +4.09492,47.99334,846,8,29,10,27,53,4.05,15.0,fr,10801,16,460381,1,1,Active Shallow Crust,0.0,89.98862,0.0,08/29/0846 +-1.72083,41.74412,9293,3,14,2,37,47,3.55,5.0,fr,10802,185,460806,1,1,Active Shallow Crust,0.0,89.99049,-90.0,03/14/9293 +3.28283,52.83227,2089,11,19,0,38,25,4.55,15.0,fr,10803,41,461401,1,1,Active Shallow Crust,0.0,89.99036,0.0,11/19/2089 +1.94647,45.62498,4827,9,24,18,3,26,3.75,27.5,fr,10804,96,461786,1,1,Active Shallow Crust,0.0,89.9902,0.0,09/24/4827 +1.94647,45.62498,4121,2,8,13,18,38,3.85,27.5,fr,10805,82,461798,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/08/4121 +1.94647,45.62498,9720,6,17,16,37,15,3.85,5.0,fr,10806,194,461799,1,1,Active Shallow Crust,240.0105,57.99788,0.0,06/17/9720 +1.94647,45.62498,4497,1,2,18,32,53,3.95,5.0,fr,10807,89,461808,1,1,Active Shallow Crust,0.0,89.98999,0.0,01/02/4497 +1.94647,45.62498,7436,7,31,18,55,9,4.75,5.0,fr,10808,148,461904,1,1,Active Shallow Crust,0.0,89.98981,0.0,07/31/7436 +6.06378,50.39163,7935,3,17,20,43,20,3.55,5.0,fr,10809,158,462720,1,2,Active Shallow Crust,0.0,89.98714,0.0,03/17/7935 +6.06378,50.39163,6174,7,8,18,24,57,3.55,5.0,fr,10810,123,462720,1,2,Active Shallow Crust,0.0,89.98714,0.0,07/08/6174 +6.06378,50.39163,1242,4,14,18,27,26,3.55,15.0,fr,10811,24,462721,1,1,Active Shallow Crust,0.0,89.98714,0.0,04/14/1242 +6.06378,50.39163,855,9,17,0,50,15,3.55,5.0,fr,10812,17,462723,1,1,Active Shallow Crust,240.0126,57.99789,0.0,09/17/0855 +6.06378,50.39163,2907,5,6,10,17,55,3.55,5.0,fr,10813,58,462726,1,1,Active Shallow Crust,0.0,89.98699,-90.0,05/06/2907 +6.06378,50.39163,5099,3,26,0,3,30,3.65,15.0,fr,10814,101,462733,1,1,Active Shallow Crust,0.0,89.98854,0.0,03/26/5099 +6.06378,50.39163,2040,8,29,22,54,24,3.65,5.0,fr,10815,40,462735,1,2,Active Shallow Crust,240.0007,58.01294,0.0,08/29/2040 +6.06378,50.39163,2155,6,11,6,50,50,3.65,5.0,fr,10816,43,462735,1,2,Active Shallow Crust,240.0007,58.01294,0.0,06/11/2155 +6.06378,50.39163,2932,2,8,7,35,58,3.65,15.0,fr,10817,58,462742,1,1,Active Shallow Crust,128.9004,89.9636,0.0,02/08/2932 +6.06378,50.39163,5508,3,13,6,7,12,3.75,5.0,fr,10818,110,462744,1,2,Active Shallow Crust,0.0,89.98978,0.0,03/13/5508 +6.06378,50.39163,8440,8,8,14,13,41,3.75,5.0,fr,10819,168,462744,1,2,Active Shallow Crust,0.0,89.98978,0.0,08/08/8440 +6.06378,50.39163,1092,10,7,15,0,54,3.85,5.0,fr,10820,21,462756,1,1,Active Shallow Crust,0.0,89.9909,0.0,10/07/1092 +6.06378,50.39163,4075,7,24,21,1,35,3.85,15.0,fr,10821,81,462757,1,1,Active Shallow Crust,0.0,89.9909,0.0,07/24/4075 +6.06378,50.39163,802,10,24,7,9,29,3.95,27.5,fr,10822,16,462770,1,1,Active Shallow Crust,0.0,89.99189,0.0,10/24/0802 +6.06378,50.39163,1978,6,30,9,12,5,3.95,5.0,fr,10823,39,462771,1,1,Active Shallow Crust,240.0207,58.00491,0.0,06/30/1978 +6.06378,50.39163,5695,1,26,3,52,38,4.05,5.0,fr,10824,113,462780,1,1,Active Shallow Crust,0.0,89.98915,0.0,01/26/5695 +6.06378,50.39163,5129,9,30,12,6,32,4.05,15.0,fr,10825,102,462781,1,1,Active Shallow Crust,0.0,89.98915,0.0,09/30/5129 +6.06378,50.39163,5598,3,3,3,38,5,4.05,5.0,fr,10826,111,462786,1,1,Active Shallow Crust,0.0,89.98903,-90.0,03/03/5598 +6.06378,50.39163,5347,5,2,18,20,59,4.55,5.0,fr,10827,106,462840,1,1,Active Shallow Crust,0.0,89.98983,0.0,05/02/5347 +6.06378,50.39163,5659,7,12,23,32,4,5.05,15.0,fr,10828,113,462901,1,1,Active Shallow Crust,0.0,89.98971,0.0,07/12/5659 +7.82435,44.70763,2454,7,4,5,14,41,3.55,5.0,fr,10829,49,463200,1,3,Active Shallow Crust,0.0,89.99284,0.0,07/04/2454 +7.82435,44.70763,9086,3,5,15,48,28,3.55,5.0,fr,10830,181,463200,1,3,Active Shallow Crust,0.0,89.99284,0.0,03/05/9086 +7.82435,44.70763,4300,4,16,23,21,17,3.55,5.0,fr,10831,85,463200,1,3,Active Shallow Crust,0.0,89.99284,0.0,04/16/4300 +7.82435,44.70763,2139,10,2,23,55,45,3.65,5.0,fr,10832,42,463212,1,2,Active Shallow Crust,0.0,89.98723,0.0,10/02/2139 +7.82435,44.70763,9295,7,31,6,55,13,3.65,5.0,fr,10833,185,463212,1,2,Active Shallow Crust,0.0,89.98723,0.0,07/31/9295 +7.82435,44.70763,7522,8,27,12,48,9,3.75,5.0,fr,10834,150,463224,1,2,Active Shallow Crust,0.0,89.98862,0.0,08/27/7522 +7.82435,44.70763,9929,2,24,2,52,41,3.75,5.0,fr,10835,198,463224,1,2,Active Shallow Crust,0.0,89.98862,0.0,02/24/9929 +7.82435,44.70763,1667,9,24,20,27,15,3.75,15.0,fr,10836,33,463231,1,1,Active Shallow Crust,0.0,89.98848,-90.0,09/24/1667 +7.82435,44.70763,1636,7,13,17,19,46,3.85,15.0,fr,10837,32,463240,1,1,Active Shallow Crust,240.0114,57.99798,0.0,07/13/1636 +7.82435,44.70763,3825,8,28,16,33,42,3.95,5.0,fr,10838,76,463248,1,1,Active Shallow Crust,0.0,89.99096,0.0,08/28/3825 +7.82435,44.70763,6253,6,4,2,8,7,3.95,15.0,fr,10839,125,463258,1,1,Active Shallow Crust,128.9004,89.99548,0.0,06/04/6253 +7.82435,44.70763,8648,6,28,19,24,7,4.05,5.0,fr,10840,172,463260,1,1,Active Shallow Crust,0.0,89.99194,0.0,06/28/8648 +7.82435,44.70763,6712,9,5,3,43,54,4.05,5.0,fr,10841,134,463266,1,1,Active Shallow Crust,0.0,89.99184,-90.0,09/05/6712 +7.82435,44.70763,5479,4,27,10,18,18,4.05,5.0,fr,10842,109,463269,1,1,Active Shallow Crust,128.89,89.99396,0.0,04/27/5479 +7.82435,44.70763,6107,11,12,17,44,47,4.15,5.0,fr,10843,122,463272,1,1,Active Shallow Crust,0.0,89.98923,0.0,11/12/6107 +7.82435,44.70763,8487,11,15,18,50,38,4.25,5.0,fr,10844,169,463293,1,1,Active Shallow Crust,128.8939,89.98088,0.0,11/15/8487 +7.82435,44.70763,7585,5,5,7,9,37,4.35,5.0,fr,10845,151,463299,1,1,Active Shallow Crust,240.0078,57.99589,0.0,05/05/7585 +7.82435,44.70763,1587,9,5,12,6,22,4.95,5.0,fr,10846,31,463368,1,1,Active Shallow Crust,0.0,89.98999,0.0,09/05/1587 +7.82435,44.70763,6342,1,16,17,11,41,5.35,15.0,fr,10847,126,463426,1,1,Active Shallow Crust,128.8841,89.98804,0.0,01/16/6342 +-1.18852,45.24455,5276,4,25,21,59,22,3.55,5.0,fr,10848,105,463680,1,1,Active Shallow Crust,0.0,89.98935,0.0,04/25/5276 +-1.18852,45.24455,6459,7,9,0,41,28,3.65,15.0,fr,10849,129,463693,1,1,Active Shallow Crust,0.0,89.99051,0.0,07/09/6459 +-1.18852,45.24455,738,11,15,19,33,10,5.15,5.0,fr,10850,14,463872,1,1,Active Shallow Crust,0.0,89.98987,0.0,11/15/0738 +-1.18852,45.24455,3274,9,30,16,0,5,5.25,15.0,fr,10851,65,463891,1,1,Active Shallow Crust,0.0,89.9901,-90.0,09/30/3274 +-0.45319,44.76624,8769,11,27,2,46,48,3.55,5.0,fr,10852,175,464643,1,1,Active Shallow Crust,240.012,57.99812,0.0,11/27/8769 +-0.45319,44.76624,678,12,4,22,2,33,3.75,27.5,fr,10853,13,464669,1,1,Active Shallow Crust,240.0082,58.01753,0.0,12/04/0678 +-0.45319,44.76624,8146,10,17,23,53,29,3.75,5.0,fr,10854,162,464670,1,1,Active Shallow Crust,0.0,89.98993,-90.0,10/17/8146 +-0.45319,44.76624,3450,6,24,6,33,42,3.75,5.0,fr,10855,68,464673,1,1,Active Shallow Crust,128.8967,89.96736,0.0,06/24/3450 +-0.45319,44.76624,3312,12,27,22,45,15,4.05,5.0,fr,10856,66,464703,1,1,Active Shallow Crust,240.0057,58.00582,0.0,12/27/3312 +9.30951,49.00516,2573,8,1,5,32,3,3.55,5.0,fr,10857,51,465120,1,1,Active Shallow Crust,0.0,89.98677,0.0,08/01/2573 +9.30951,49.00516,149,9,16,14,33,17,3.65,5.0,fr,10858,2,465132,1,1,Active Shallow Crust,0.0,89.9882,0.0,09/16/0149 +9.30951,49.00516,1089,10,23,6,59,52,4.15,5.0,fr,10859,21,465201,1,1,Active Shallow Crust,128.8957,89.99337,0.0,10/23/1089 +9.30951,49.00516,6700,4,28,6,13,37,4.25,5.0,fr,10860,133,465204,1,1,Active Shallow Crust,0.0,89.98818,0.0,04/28/6700 +9.30951,49.00516,4906,1,29,11,18,39,4.75,5.0,fr,10861,98,465264,1,1,Active Shallow Crust,0.0,89.99003,0.0,01/29/4906 +9.30951,49.00516,8021,8,20,8,56,44,4.95,5.0,fr,10862,160,465288,1,1,Active Shallow Crust,0.0,89.98944,0.0,08/20/8021 +1.07173,47.96958,386,2,17,8,35,37,3.55,5.0,fr,10863,7,465600,1,1,Active Shallow Crust,0.0,89.98988,0.0,02/17/0386 +1.07173,47.96958,718,11,4,10,10,28,3.65,5.0,fr,10864,14,465612,1,1,Active Shallow Crust,0.0,89.98947,0.0,11/04/0718 +1.07173,47.96958,3277,1,23,9,26,37,3.85,5.0,fr,10865,65,465636,1,1,Active Shallow Crust,0.0,89.99044,0.0,01/23/3277 +1.07173,47.96958,451,7,13,9,4,8,4.15,5.0,fr,10866,9,465672,1,1,Active Shallow Crust,0.0,89.98985,0.0,07/13/0451 +1.07173,47.96958,5292,12,8,14,40,58,4.25,5.0,fr,10867,105,465684,1,1,Active Shallow Crust,0.0,89.9902,0.0,12/08/5292 +1.07173,47.96958,9288,10,18,15,55,50,4.65,15.0,fr,10868,185,465733,1,1,Active Shallow Crust,0.0,89.99001,0.0,10/18/9288 +1.07173,47.96958,4659,9,13,7,41,55,4.85,5.0,fr,10869,93,465756,1,1,Active Shallow Crust,0.0,89.99017,0.0,09/13/4659 +2.80677,49.4912,8923,11,9,12,14,26,3.55,5.0,fr,10870,178,466080,1,1,Active Shallow Crust,0.0,89.99017,0.0,11/09/8923 +2.80677,49.4912,8844,12,5,8,8,16,3.65,5.0,fr,10871,176,466092,1,1,Active Shallow Crust,0.0,89.99124,0.0,12/05/8844 +2.80677,49.4912,2569,12,30,13,5,10,3.65,15.0,fr,10872,51,466093,1,1,Active Shallow Crust,0.0,89.99124,0.0,12/30/2569 +2.80677,49.4912,9811,9,11,21,18,32,3.65,5.0,fr,10873,196,466098,1,1,Active Shallow Crust,0.0,89.99114,-90.0,09/11/9811 +2.80677,49.4912,5948,3,28,19,30,49,3.75,5.0,fr,10874,118,466113,1,1,Active Shallow Crust,128.8964,89.96731,0.0,03/28/5948 +2.80677,49.4912,3292,6,14,17,33,7,3.95,5.0,fr,10875,65,466128,1,1,Active Shallow Crust,0.0,89.98967,0.0,06/14/3292 +1.69091,44.8035,7480,7,24,23,37,11,3.55,5.0,fr,10876,149,466560,1,1,Active Shallow Crust,0.0,89.98927,0.0,07/24/7480 +1.69091,44.8035,3505,10,18,1,27,52,3.75,15.0,fr,10877,70,466591,1,1,Active Shallow Crust,0.0,89.98994,-90.0,10/18/3505 +1.69091,44.8035,4552,9,18,22,34,2,3.95,5.0,fr,10878,91,466608,1,2,Active Shallow Crust,0.0,89.98985,0.0,09/18/4552 +1.69091,44.8035,5952,2,20,8,51,43,3.95,5.0,fr,10879,119,466608,1,2,Active Shallow Crust,0.0,89.98985,0.0,02/20/5952 +-3.58444,43.04679,1588,8,16,9,7,10,3.55,15.0,fr,10880,31,467041,1,1,Active Shallow Crust,0.0,89.98895,0.0,08/16/1588 +-3.58444,43.04679,6559,7,4,19,28,9,3.55,27.5,fr,10881,131,467042,1,1,Active Shallow Crust,0.0,89.98895,0.0,07/04/6559 +-3.58444,43.04679,7603,4,19,10,0,22,3.55,5.0,fr,10882,152,467043,1,1,Active Shallow Crust,240.0127,57.9975,0.0,04/19/7603 +-3.58444,43.04679,8889,2,5,23,41,14,3.55,15.0,fr,10883,177,467047,1,1,Active Shallow Crust,0.0,89.98882,-90.0,02/05/8889 +-3.58444,43.04679,2078,8,2,22,18,33,3.65,15.0,fr,10884,41,467053,1,1,Active Shallow Crust,0.0,89.99015,0.0,08/02/2078 +-3.58444,43.04679,1677,11,17,9,4,25,3.65,27.5,fr,10885,33,467054,1,1,Active Shallow Crust,0.0,89.99015,0.0,11/17/1677 +-3.58444,43.04679,3813,5,28,18,58,33,3.65,5.0,fr,10886,76,467055,1,1,Active Shallow Crust,240.0011,58.01258,0.0,05/28/3813 +-3.58444,43.04679,9869,6,4,0,56,16,3.65,5.0,fr,10887,197,467058,1,1,Active Shallow Crust,0.0,89.99004,-90.0,06/04/9869 +-3.58444,43.04679,3799,11,6,23,38,48,3.75,5.0,fr,10888,75,467064,1,1,Active Shallow Crust,0.0,89.99122,0.0,11/06/3799 +-3.58444,43.04679,9230,7,30,13,2,6,3.75,15.0,fr,10889,184,467065,1,1,Active Shallow Crust,0.0,89.99122,0.0,07/30/9230 +-3.58444,43.04679,4811,10,22,8,7,25,3.85,5.0,fr,10890,96,467076,1,1,Active Shallow Crust,0.0,89.98956,0.0,10/22/4811 +-3.58444,43.04679,2759,1,18,4,40,41,3.95,5.0,fr,10891,55,467088,1,2,Active Shallow Crust,0.0,89.9907,0.0,01/18/2759 +-3.58444,43.04679,4907,8,6,11,17,26,3.95,5.0,fr,10892,98,467088,1,2,Active Shallow Crust,0.0,89.9907,0.0,08/06/4907 +-3.58444,43.04679,6393,4,20,19,6,57,4.05,5.0,fr,10893,127,467100,1,2,Active Shallow Crust,0.0,89.98964,0.0,04/20/6393 +-3.58444,43.04679,6862,9,26,17,20,14,4.05,5.0,fr,10894,137,467100,1,2,Active Shallow Crust,0.0,89.98964,0.0,09/26/6862 +-3.58444,43.04679,2326,1,15,16,37,31,4.05,27.5,fr,10895,46,467105,1,1,Active Shallow Crust,240.0055,58.00567,0.0,01/15/2326 +1.11855,44.08575,9728,11,1,19,36,34,3.75,27.5,fr,10896,194,467546,1,1,Active Shallow Crust,0.0,89.98993,0.0,11/01/9728 +1.11855,44.08575,2115,2,17,7,25,23,3.95,5.0,fr,10897,42,467568,1,2,Active Shallow Crust,0.0,89.98972,0.0,02/17/2115 +1.11855,44.08575,2823,6,2,0,33,20,3.95,5.0,fr,10898,56,467568,1,2,Active Shallow Crust,0.0,89.98972,0.0,06/02/2823 +1.11855,44.08575,6664,11,4,3,22,17,4.05,27.5,fr,10899,133,467582,1,1,Active Shallow Crust,0.0,89.98981,0.0,11/04/6664 +1.66687,42.26562,9659,10,24,11,20,37,3.55,5.0,fr,10900,193,468000,1,2,Active Shallow Crust,0.0,89.99067,0.0,10/24/9659 +1.66687,42.26562,1143,11,3,15,32,54,3.55,5.0,fr,10901,22,468000,1,2,Active Shallow Crust,0.0,89.99067,0.0,11/03/1143 +1.66687,42.26562,4988,1,31,4,19,18,3.55,5.0,fr,10902,99,468003,1,2,Active Shallow Crust,240.0119,57.99799,0.0,01/31/4988 +1.66687,42.26562,3088,4,27,17,21,22,3.55,5.0,fr,10903,61,468003,1,2,Active Shallow Crust,240.0119,57.99799,0.0,04/27/3088 +1.66687,42.26562,1401,8,21,17,23,53,3.55,5.0,fr,10904,28,468009,1,1,Active Shallow Crust,128.8968,89.99347,0.0,08/21/1401 +1.66687,42.26562,783,10,3,18,36,22,3.65,5.0,fr,10905,15,468012,1,3,Active Shallow Crust,0.0,89.99002,0.0,10/03/0783 +1.66687,42.26562,6377,5,24,12,2,33,3.65,5.0,fr,10906,127,468012,1,3,Active Shallow Crust,0.0,89.99002,0.0,05/24/6377 +1.66687,42.26562,7784,9,14,0,1,0,3.65,5.0,fr,10907,155,468012,1,3,Active Shallow Crust,0.0,89.99002,0.0,09/14/7784 +1.66687,42.26562,5150,11,20,7,58,47,3.65,15.0,fr,10908,102,468013,1,1,Active Shallow Crust,0.0,89.99002,0.0,11/20/5150 +1.66687,42.26562,6349,11,27,0,29,7,3.65,27.5,fr,10909,126,468014,1,1,Active Shallow Crust,0.0,89.99002,0.0,11/27/6349 +1.66687,42.26562,7770,6,8,19,33,7,3.75,5.0,fr,10910,155,468024,1,2,Active Shallow Crust,0.0,89.98962,0.0,06/08/7770 +1.66687,42.26562,9148,1,29,6,50,24,3.75,5.0,fr,10911,182,468024,1,2,Active Shallow Crust,0.0,89.98962,0.0,01/29/9148 +1.66687,42.26562,5875,6,8,18,57,39,3.75,5.0,fr,10912,117,468030,1,1,Active Shallow Crust,0.0,89.98951,-90.0,06/08/5875 +1.66687,42.26562,5324,6,9,2,2,6,3.85,5.0,fr,10913,106,468036,1,1,Active Shallow Crust,0.0,89.98943,0.0,06/09/5324 +1.66687,42.26562,6867,6,18,20,2,15,3.85,15.0,fr,10914,137,468037,1,1,Active Shallow Crust,0.0,89.98943,0.0,06/18/6867 +1.66687,42.26562,8285,8,27,17,18,50,3.85,5.0,fr,10915,165,468039,1,1,Active Shallow Crust,240.0104,57.99778,0.0,08/27/8285 +1.66687,42.26562,6173,6,26,20,12,34,3.95,5.0,fr,10916,123,468051,1,1,Active Shallow Crust,240.0192,58.00489,0.0,06/26/6173 +1.66687,42.26562,4605,5,7,17,7,16,3.95,5.0,fr,10917,92,468057,1,1,Active Shallow Crust,128.9008,89.99412,0.0,05/07/4605 +1.66687,42.26562,9314,11,10,23,24,47,4.05,5.0,fr,10918,186,468060,1,3,Active Shallow Crust,0.0,89.98951,0.0,11/10/9314 +1.66687,42.26562,1142,2,1,20,21,21,4.05,5.0,fr,10919,22,468060,1,3,Active Shallow Crust,0.0,89.98951,0.0,02/01/1142 +1.66687,42.26562,6717,4,29,5,19,26,4.05,5.0,fr,10920,134,468060,1,3,Active Shallow Crust,0.0,89.98951,0.0,04/29/6717 +1.66687,42.26562,6021,10,4,19,26,36,4.25,5.0,fr,10921,120,468084,1,1,Active Shallow Crust,0.0,89.99,0.0,10/04/6021 +1.66687,42.26562,6411,5,20,13,2,10,4.25,15.0,fr,10922,128,468085,1,1,Active Shallow Crust,0.0,89.99,0.0,05/20/6411 +1.66687,42.26562,1171,10,4,6,58,2,4.45,5.0,fr,10923,23,468108,1,1,Active Shallow Crust,0.0,89.99007,0.0,10/04/1171 +1.66687,42.26562,3414,4,23,10,48,13,4.75,15.0,fr,10924,68,468145,1,1,Active Shallow Crust,0.0,89.99016,0.0,04/23/3414 +1.66687,42.26562,3100,2,14,20,18,53,4.75,5.0,fr,10925,61,468153,1,1,Active Shallow Crust,128.8899,89.98805,0.0,02/14/3100 +2.7856,42.31107,3472,7,5,4,52,17,3.55,5.0,fr,10926,69,468480,1,3,Active Shallow Crust,0.0,89.98882,0.0,07/05/3472 +2.7856,42.31107,5496,10,5,12,12,56,3.55,5.0,fr,10927,109,468480,1,3,Active Shallow Crust,0.0,89.98882,0.0,10/05/5496 +2.7856,42.31107,388,10,19,12,42,54,3.55,5.0,fr,10928,7,468480,1,3,Active Shallow Crust,0.0,89.98882,0.0,10/19/0388 +2.7856,42.31107,8006,2,26,0,0,8,3.65,5.0,fr,10929,160,468492,1,2,Active Shallow Crust,0.0,89.99003,0.0,02/26/8006 +2.7856,42.31107,9889,1,21,1,0,56,3.65,5.0,fr,10930,197,468492,1,2,Active Shallow Crust,0.0,89.99003,0.0,01/21/9889 +2.7856,42.31107,1530,5,5,17,53,7,3.65,15.0,fr,10931,30,468493,1,1,Active Shallow Crust,0.0,89.99003,0.0,05/05/1530 +2.7856,42.31107,2850,12,24,3,49,3,3.65,15.0,fr,10932,56,468496,1,1,Active Shallow Crust,240.0008,58.01269,0.0,12/24/2850 +2.7856,42.31107,8805,1,31,13,26,49,3.75,15.0,fr,10933,176,468505,1,1,Active Shallow Crust,0.0,89.99111,0.0,01/31/8805 +2.7856,42.31107,9213,1,11,4,49,59,3.85,27.5,fr,10934,184,468518,1,1,Active Shallow Crust,0.0,89.98944,0.0,01/11/9213 +2.7856,42.31107,620,1,2,15,21,0,3.85,15.0,fr,10935,12,468523,1,1,Active Shallow Crust,0.0,89.98932,-90.0,01/02/0620 +2.7856,42.31107,6431,6,15,19,56,56,3.95,5.0,fr,10936,128,468528,1,1,Active Shallow Crust,0.0,89.99059,0.0,06/15/6431 +2.7856,42.31107,8292,9,14,2,24,13,4.05,15.0,fr,10937,165,468544,1,1,Active Shallow Crust,240.0058,58.00545,0.0,09/14/8292 +2.7856,42.31107,9500,10,14,19,41,46,4.05,27.5,fr,10938,189,468545,1,1,Active Shallow Crust,240.0058,58.00545,0.0,10/14/9500 +2.7856,42.31107,584,11,8,13,21,25,4.15,5.0,fr,10939,11,468552,1,1,Active Shallow Crust,0.0,89.99065,0.0,11/08/0584 +2.7856,42.31107,5387,12,20,4,9,34,4.15,27.5,fr,10940,107,468557,1,1,Active Shallow Crust,240.008,57.99723,0.0,12/20/5387 +2.7856,42.31107,7231,1,25,11,19,54,4.65,5.0,fr,10941,144,468612,1,2,Active Shallow Crust,0.0,89.98949,0.0,01/25/7231 +2.7856,42.31107,5186,5,8,12,56,44,4.65,5.0,fr,10942,103,468612,1,2,Active Shallow Crust,0.0,89.98949,0.0,05/08/5186 +2.7856,42.31107,8876,9,5,15,10,38,4.85,5.0,fr,10943,177,468636,1,1,Active Shallow Crust,0.0,89.98998,0.0,09/05/8876 +6.73358,47.70702,4446,9,5,15,12,8,3.55,5.0,fr,10944,88,468960,1,1,Active Shallow Crust,0.0,89.99322,0.0,09/05/4446 +6.73358,47.70702,4780,1,25,18,33,7,3.55,5.0,fr,10945,95,468963,1,1,Active Shallow Crust,240.0118,57.9988,0.0,01/25/4780 +6.73358,47.70702,3266,8,29,21,56,45,3.55,27.5,fr,10946,65,468965,1,1,Active Shallow Crust,240.0118,57.9987,0.0,08/29/3266 +6.73358,47.70702,67,1,14,3,51,20,3.55,5.0,fr,10947,1,468966,1,1,Active Shallow Crust,0.0,89.99313,-90.0,01/14/0067 +6.73358,47.70702,5209,8,5,12,26,42,3.55,15.0,fr,10948,104,468967,1,1,Active Shallow Crust,0.0,89.99313,-90.0,08/05/5209 +6.73358,47.70702,3716,1,29,17,6,58,3.65,5.0,fr,10949,74,468972,1,1,Active Shallow Crust,0.0,89.98791,0.0,01/29/3716 +6.73358,47.70702,7919,12,9,12,53,31,3.75,5.0,fr,10950,158,468984,1,2,Active Shallow Crust,0.0,89.98922,0.0,12/09/7919 +6.73358,47.70702,3574,5,22,11,25,6,3.75,5.0,fr,10951,71,468984,1,2,Active Shallow Crust,0.0,89.98922,0.0,05/22/3574 +6.73358,47.70702,5358,8,27,18,16,15,3.75,5.0,fr,10952,107,468990,1,1,Active Shallow Crust,0.0,89.9891,-90.0,08/27/5358 +6.73358,47.70702,3272,6,11,16,44,31,3.85,15.0,fr,10953,65,468997,1,2,Active Shallow Crust,0.0,89.99039,0.0,06/11/3272 +6.73358,47.70702,671,9,17,9,48,31,3.85,15.0,fr,10954,13,468997,1,2,Active Shallow Crust,0.0,89.99039,0.0,09/17/0671 +6.73358,47.70702,690,1,27,6,20,49,3.95,15.0,fr,10955,13,469009,1,1,Active Shallow Crust,0.0,89.99144,0.0,01/27/0690 +6.73358,47.70702,5956,9,12,20,36,54,4.05,5.0,fr,10956,119,469020,1,1,Active Shallow Crust,0.0,89.98855,0.0,09/12/5956 +6.73358,47.70702,9266,1,12,13,15,34,4.45,15.0,fr,10957,185,469069,1,1,Active Shallow Crust,0.0,89.99037,0.0,01/12/9266 +6.73358,47.70702,4010,10,24,6,51,52,4.75,5.0,fr,10958,80,469104,1,1,Active Shallow Crust,0.0,89.98977,0.0,10/24/4010 +6.73358,47.70702,1468,10,16,20,24,9,4.95,15.0,fr,10959,29,469129,1,1,Active Shallow Crust,0.0,89.99052,0.0,10/16/1468 +8.54825,51.17017,6141,3,30,0,24,31,3.65,15.0,fr,10960,122,469453,1,1,Active Shallow Crust,0.0,89.98873,0.0,03/30/6141 +8.54825,51.17017,3990,1,1,13,29,22,4.35,5.0,fr,10961,79,469545,1,1,Active Shallow Crust,128.8978,89.98225,0.0,01/01/3990 +3.80254,41.79185,8537,3,18,2,59,19,3.55,5.0,fr,10962,170,469920,1,1,Active Shallow Crust,0.0,89.98872,0.0,03/18/8537 +3.80254,41.79185,5641,12,6,8,54,0,3.55,15.0,fr,10963,112,469921,1,1,Active Shallow Crust,0.0,89.98872,0.0,12/06/5641 +3.80254,41.79185,959,11,5,10,41,35,3.55,27.5,fr,10964,19,469922,1,1,Active Shallow Crust,0.0,89.98872,0.0,11/05/0959 +3.80254,41.79185,7074,2,18,22,47,30,3.65,15.0,fr,10965,141,469942,1,1,Active Shallow Crust,128.9014,89.96343,0.0,02/18/7074 +3.80254,41.79185,8339,2,13,14,37,6,3.75,15.0,fr,10966,166,469945,1,1,Active Shallow Crust,0.0,89.99104,0.0,02/13/8339 +3.80254,41.79185,9224,9,6,22,45,54,3.85,5.0,fr,10967,184,469956,1,1,Active Shallow Crust,0.0,89.98936,0.0,09/06/9224 +3.80254,41.79185,519,8,7,4,15,47,4.25,15.0,fr,10968,10,470005,1,1,Active Shallow Crust,0.0,89.98992,0.0,08/07/0519 +3.80254,41.79185,1062,1,3,18,15,26,4.35,5.0,fr,10969,21,470019,1,2,Active Shallow Crust,240.0075,57.99578,0.0,01/03/1062 +3.80254,41.79185,5881,12,11,3,27,1,4.35,5.0,fr,10970,117,470019,1,2,Active Shallow Crust,240.0075,57.99578,0.0,12/11/5881 +-5.52599,47.12556,1896,4,8,19,26,27,3.55,5.0,fr,10971,37,470400,1,1,Active Shallow Crust,0.0,89.99314,0.0,04/08/1896 +2.18447,48.81538,1140,1,4,12,2,51,3.85,5.0,fr,10972,22,470916,1,1,Active Shallow Crust,0.0,89.9906,0.0,01/04/1140 +2.18447,48.81538,5705,1,10,5,3,33,4.05,27.5,fr,10973,114,470942,1,1,Active Shallow Crust,0.0,89.99066,0.0,01/10/5705 +2.18447,48.81538,7513,12,9,21,31,21,4.55,5.0,fr,10974,150,471000,1,1,Active Shallow Crust,0.0,89.9895,0.0,12/09/7513 +5.63903,48.83921,8981,12,23,6,14,9,4.15,15.0,fr,10975,179,471433,1,1,Active Shallow Crust,0.0,89.99002,0.0,12/23/8981 +5.63903,48.83921,9478,4,13,15,59,22,4.35,15.0,fr,10976,189,471457,1,1,Active Shallow Crust,0.0,89.98943,0.0,04/13/9478 +-2.04861,48.69269,9839,2,19,7,4,49,3.55,5.0,fr,10977,196,472320,1,5,Active Shallow Crust,0.0,89.99001,0.0,02/19/9839 +-2.04861,48.69269,9689,3,31,23,46,18,3.55,5.0,fr,10978,193,472320,1,5,Active Shallow Crust,0.0,89.99001,0.0,03/31/9689 +-2.04861,48.69269,375,11,30,8,41,39,3.55,5.0,fr,10979,7,472320,1,5,Active Shallow Crust,0.0,89.99001,0.0,11/30/0375 +-2.04861,48.69269,5571,9,15,8,49,43,3.55,5.0,fr,10980,111,472320,1,5,Active Shallow Crust,0.0,89.99001,0.0,09/15/5571 +-2.04861,48.69269,9981,2,5,18,18,57,3.55,5.0,fr,10981,199,472320,1,5,Active Shallow Crust,0.0,89.99001,0.0,02/05/9981 +-2.04861,48.69269,231,4,25,22,19,45,3.55,15.0,fr,10982,4,472321,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/25/0231 +-2.04861,48.69269,9712,1,31,18,18,43,3.55,5.0,fr,10983,194,472326,1,1,Active Shallow Crust,0.0,89.9899,-90.0,01/31/9712 +-2.04861,48.69269,8074,2,13,20,46,51,3.65,5.0,fr,10984,161,472332,1,1,Active Shallow Crust,0.0,89.9911,0.0,02/13/8074 +-2.04861,48.69269,7171,5,12,10,11,53,3.65,15.0,fr,10985,143,472333,1,1,Active Shallow Crust,0.0,89.9911,0.0,05/12/7171 +-2.04861,48.69269,8228,10,9,15,22,9,3.65,5.0,fr,10986,164,472335,1,1,Active Shallow Crust,240.0012,58.01279,0.0,10/09/8228 +-2.04861,48.69269,8912,1,24,8,54,22,3.75,5.0,fr,10987,178,472350,1,1,Active Shallow Crust,0.0,89.9893,-90.0,01/24/8912 +-2.04861,48.69269,3650,11,8,14,54,54,3.75,5.0,fr,10988,72,472353,1,1,Active Shallow Crust,128.8965,89.96729,0.0,11/08/3650 +-2.04861,48.69269,6954,7,9,10,56,27,3.85,5.0,fr,10989,139,472356,1,2,Active Shallow Crust,0.0,89.99058,0.0,07/09/6954 +-2.04861,48.69269,8362,4,21,7,4,57,3.85,5.0,fr,10990,167,472356,1,2,Active Shallow Crust,0.0,89.99058,0.0,04/21/8362 +-2.04861,48.69269,4074,6,13,2,30,48,3.95,15.0,fr,10991,81,472369,1,1,Active Shallow Crust,0.0,89.9895,0.0,06/13/4074 +-2.04861,48.69269,5873,8,27,13,10,59,3.95,5.0,fr,10992,117,472377,1,1,Active Shallow Crust,128.9001,89.9937,0.0,08/27/5873 +-2.04861,48.69269,6545,6,29,5,35,13,4.05,5.0,fr,10993,130,472380,1,2,Active Shallow Crust,0.0,89.99064,0.0,06/29/6545 +-2.04861,48.69269,4316,2,9,4,21,44,4.05,5.0,fr,10994,86,472380,1,2,Active Shallow Crust,0.0,89.99064,0.0,02/09/4316 +-2.04861,48.69269,2016,1,31,10,40,12,4.05,27.5,fr,10995,40,472382,1,1,Active Shallow Crust,0.0,89.99064,0.0,01/31/2016 +-2.04861,48.69269,7948,8,6,9,46,25,4.05,5.0,fr,10996,158,472383,1,1,Active Shallow Crust,240.0061,58.00591,0.0,08/06/7948 +-2.04861,48.69269,1557,8,29,19,53,24,4.15,5.0,fr,10997,31,472392,1,1,Active Shallow Crust,0.0,89.98999,0.0,08/29/1557 +-2.04861,48.69269,5017,9,30,10,13,12,4.15,15.0,fr,10998,100,472393,1,1,Active Shallow Crust,0.0,89.98999,0.0,09/30/5017 +-2.04861,48.69269,8374,6,6,5,14,28,4.15,5.0,fr,10999,167,472395,1,1,Active Shallow Crust,240.0087,57.99746,0.0,06/06/8374 +-2.04861,48.69269,7562,12,11,7,5,1,4.35,5.0,fr,11000,151,472416,1,1,Active Shallow Crust,0.0,89.9894,0.0,12/11/7562 +-2.04861,48.69269,1384,1,10,23,13,34,4.45,5.0,fr,11001,27,472434,1,1,Active Shallow Crust,0.0,89.99044,-90.0,01/10/1384 +-2.04861,48.69269,1221,9,14,13,52,39,4.55,5.0,fr,11002,24,472440,1,1,Active Shallow Crust,0.0,89.98947,0.0,09/14/1221 +-2.04861,48.69269,4494,12,28,12,54,43,5.35,5.0,fr,11003,89,472536,1,1,Active Shallow Crust,0.0,89.98994,0.0,12/28/4494 +7.58201,46.51677,6604,3,6,2,31,51,3.55,5.0,fr,11004,132,472800,1,6,Active Shallow Crust,0.0,89.99306,0.0,03/06/6604 +7.58201,46.51677,2442,11,7,5,44,53,3.55,5.0,fr,11005,48,472800,1,6,Active Shallow Crust,0.0,89.99306,0.0,11/07/2442 +7.58201,46.51677,8885,6,9,16,34,40,3.55,5.0,fr,11006,177,472800,1,6,Active Shallow Crust,0.0,89.99306,0.0,06/09/8885 +7.58201,46.51677,6588,10,31,0,5,27,3.55,5.0,fr,11007,131,472800,1,6,Active Shallow Crust,0.0,89.99306,0.0,10/31/6588 +7.58201,46.51677,6508,10,3,10,5,8,3.55,5.0,fr,11008,130,472800,1,6,Active Shallow Crust,0.0,89.99306,0.0,10/03/6508 +7.58201,46.51677,7625,11,12,0,37,37,3.55,5.0,fr,11009,152,472800,1,6,Active Shallow Crust,0.0,89.99306,0.0,11/12/7625 +7.58201,46.51677,1053,12,16,13,36,27,3.55,15.0,fr,11010,21,472801,1,5,Active Shallow Crust,0.0,89.99306,0.0,12/16/1053 +7.58201,46.51677,1660,9,13,8,47,35,3.55,15.0,fr,11011,33,472801,1,5,Active Shallow Crust,0.0,89.99306,0.0,09/13/1660 +7.58201,46.51677,608,11,6,9,5,2,3.55,15.0,fr,11012,12,472801,1,5,Active Shallow Crust,0.0,89.99306,0.0,11/06/0608 +7.58201,46.51677,6538,3,13,11,16,4,3.55,15.0,fr,11013,130,472801,1,5,Active Shallow Crust,0.0,89.99306,0.0,03/13/6538 +7.58201,46.51677,5704,5,26,20,0,35,3.55,15.0,fr,11014,114,472801,1,5,Active Shallow Crust,0.0,89.99306,0.0,05/26/5704 +7.58201,46.51677,5417,5,5,22,14,4,3.55,27.5,fr,11015,108,472802,1,1,Active Shallow Crust,0.0,89.99306,0.0,05/05/5417 +7.58201,46.51677,6826,10,4,3,38,25,3.55,5.0,fr,11016,136,472803,1,1,Active Shallow Crust,240.0125,57.99739,0.0,10/04/6826 +7.58201,46.51677,3542,7,8,17,34,13,3.55,5.0,fr,11017,70,472806,1,1,Active Shallow Crust,0.0,89.99298,-90.0,07/08/3542 +7.58201,46.51677,1650,4,3,10,55,24,3.55,5.0,fr,11018,32,472809,1,3,Active Shallow Crust,128.8969,89.99306,0.0,04/03/1650 +7.58201,46.51677,5224,11,2,21,18,46,3.55,5.0,fr,11019,104,472809,1,3,Active Shallow Crust,128.8969,89.99306,0.0,11/02/5224 +7.58201,46.51677,9390,4,20,15,34,2,3.55,5.0,fr,11020,187,472809,1,3,Active Shallow Crust,128.8969,89.99306,0.0,04/20/9390 +7.58201,46.51677,710,7,19,17,56,18,3.65,5.0,fr,11021,14,472812,1,8,Active Shallow Crust,0.0,89.98763,0.0,07/19/0710 +7.58201,46.51677,3661,9,7,6,25,48,3.65,5.0,fr,11022,73,472812,1,8,Active Shallow Crust,0.0,89.98763,0.0,09/07/3661 +7.58201,46.51677,1437,11,12,19,52,45,3.65,5.0,fr,11023,28,472812,1,8,Active Shallow Crust,0.0,89.98763,0.0,11/12/1437 +7.58201,46.51677,5516,4,29,3,50,28,3.65,5.0,fr,11024,110,472812,1,8,Active Shallow Crust,0.0,89.98763,0.0,04/29/5516 +7.58201,46.51677,220,4,4,1,36,19,3.65,5.0,fr,11025,4,472812,1,8,Active Shallow Crust,0.0,89.98763,0.0,04/04/0220 +7.58201,46.51677,5257,6,10,8,54,10,3.65,5.0,fr,11026,105,472812,1,8,Active Shallow Crust,0.0,89.98763,0.0,06/10/5257 +7.58201,46.51677,5274,6,28,11,55,46,3.65,5.0,fr,11027,105,472812,1,8,Active Shallow Crust,0.0,89.98763,0.0,06/28/5274 +7.58201,46.51677,361,7,9,18,57,11,3.65,5.0,fr,11028,7,472812,1,8,Active Shallow Crust,0.0,89.98763,0.0,07/09/0361 +7.58201,46.51677,5904,1,29,21,59,35,3.65,15.0,fr,11029,118,472813,1,2,Active Shallow Crust,0.0,89.98763,0.0,01/29/5904 +7.58201,46.51677,7933,11,12,8,50,43,3.65,15.0,fr,11030,158,472813,1,2,Active Shallow Crust,0.0,89.98763,0.0,11/12/7933 +7.58201,46.51677,8410,3,11,23,0,8,3.65,27.5,fr,11031,168,472814,1,1,Active Shallow Crust,0.0,89.98763,0.0,03/11/8410 +7.58201,46.51677,1050,9,21,22,52,53,3.65,5.0,fr,11032,20,472815,1,1,Active Shallow Crust,239.9998,58.01333,0.0,09/21/1050 +7.58201,46.51677,8151,6,30,9,59,45,3.65,15.0,fr,11033,163,472816,1,1,Active Shallow Crust,239.9998,58.01333,0.0,06/30/8151 +7.58201,46.51677,4377,6,19,8,25,55,3.65,5.0,fr,11034,87,472821,1,1,Active Shallow Crust,128.8996,89.96352,0.0,06/19/4377 +7.58201,46.51677,4646,5,2,4,39,53,3.75,5.0,fr,11035,92,472824,1,3,Active Shallow Crust,0.0,89.98898,0.0,05/02/4646 +7.58201,46.51677,5335,11,6,22,33,28,3.75,5.0,fr,11036,106,472824,1,3,Active Shallow Crust,0.0,89.98898,0.0,11/06/5335 +7.58201,46.51677,1163,3,30,20,37,9,3.75,5.0,fr,11037,23,472824,1,3,Active Shallow Crust,0.0,89.98898,0.0,03/30/1163 +7.58201,46.51677,5983,11,6,0,40,2,3.75,15.0,fr,11038,119,472825,1,3,Active Shallow Crust,0.0,89.98898,0.0,11/06/5983 +7.58201,46.51677,2654,5,1,15,56,17,3.75,15.0,fr,11039,53,472825,1,3,Active Shallow Crust,0.0,89.98898,0.0,05/01/2654 +7.58201,46.51677,2148,1,7,22,12,0,3.75,15.0,fr,11040,42,472825,1,3,Active Shallow Crust,0.0,89.98898,0.0,01/07/2148 +7.58201,46.51677,7854,3,12,8,6,43,3.75,27.5,fr,11041,157,472826,1,2,Active Shallow Crust,0.0,89.98898,0.0,03/12/7854 +7.58201,46.51677,9705,4,21,4,0,31,3.75,27.5,fr,11042,194,472826,1,2,Active Shallow Crust,0.0,89.98898,0.0,04/21/9705 +7.58201,46.51677,8887,5,23,3,32,13,3.75,5.0,fr,11043,177,472827,1,1,Active Shallow Crust,240.0086,58.01795,0.0,05/23/8887 +7.58201,46.51677,9687,10,12,4,33,35,3.75,15.0,fr,11044,193,472828,1,2,Active Shallow Crust,240.0086,58.01795,0.0,10/12/9687 +7.58201,46.51677,8082,9,20,3,14,3,3.75,15.0,fr,11045,161,472828,1,2,Active Shallow Crust,240.0086,58.01795,0.0,09/20/8082 +7.58201,46.51677,834,4,21,13,56,54,3.75,5.0,fr,11046,16,472833,1,1,Active Shallow Crust,128.8968,89.96691,0.0,04/21/0834 +7.58201,46.51677,683,3,23,7,1,41,3.85,5.0,fr,11047,13,472836,1,4,Active Shallow Crust,0.0,89.99017,0.0,03/23/0683 +7.58201,46.51677,1195,10,6,12,6,54,3.85,5.0,fr,11048,23,472836,1,4,Active Shallow Crust,0.0,89.99017,0.0,10/06/1195 +7.58201,46.51677,6527,1,14,20,50,55,3.85,5.0,fr,11049,130,472836,1,4,Active Shallow Crust,0.0,89.99017,0.0,01/14/6527 +7.58201,46.51677,6946,10,17,10,45,3,3.85,5.0,fr,11050,138,472836,1,4,Active Shallow Crust,0.0,89.99017,0.0,10/17/6946 +7.58201,46.51677,5559,6,17,20,25,55,3.85,15.0,fr,11051,111,472837,1,1,Active Shallow Crust,0.0,89.99017,0.0,06/17/5559 +7.58201,46.51677,1899,7,18,20,38,54,3.85,5.0,fr,11052,37,472839,1,2,Active Shallow Crust,240.0112,57.99717,0.0,07/18/1899 +7.58201,46.51677,788,10,13,22,24,0,3.85,5.0,fr,11053,15,472839,1,2,Active Shallow Crust,240.0112,57.99717,0.0,10/13/0788 +7.58201,46.51677,5293,8,13,13,9,34,3.85,15.0,fr,11054,105,472843,1,1,Active Shallow Crust,0.0,89.99006,-90.0,08/13/5293 +7.58201,46.51677,9111,12,27,9,9,14,3.85,15.0,fr,11055,182,472846,1,1,Active Shallow Crust,128.8963,89.99263,0.0,12/27/9111 +7.58201,46.51677,6403,1,11,6,9,34,3.95,5.0,fr,11056,128,472848,1,3,Active Shallow Crust,0.0,89.99124,0.0,01/11/6403 +7.58201,46.51677,8313,12,3,18,37,42,3.95,5.0,fr,11057,166,472848,1,3,Active Shallow Crust,0.0,89.99124,0.0,12/03/8313 +7.58201,46.51677,6036,4,17,16,27,3,3.95,5.0,fr,11058,120,472848,1,3,Active Shallow Crust,0.0,89.99124,0.0,04/17/6036 +7.58201,46.51677,4091,11,26,23,29,14,3.95,15.0,fr,11059,81,472849,1,1,Active Shallow Crust,0.0,89.99124,0.0,11/26/4091 +7.58201,46.51677,7113,5,2,3,47,22,3.95,5.0,fr,11060,142,472851,1,1,Active Shallow Crust,240.0191,58.00539,0.0,05/02/7113 +7.58201,46.51677,3375,2,28,19,34,32,3.95,15.0,fr,11061,67,472852,1,1,Active Shallow Crust,240.0191,58.00539,0.0,02/28/3375 +7.58201,46.51677,7426,1,2,13,51,54,3.95,5.0,fr,11062,148,472857,1,1,Active Shallow Crust,128.8998,89.99343,0.0,01/02/7426 +7.58201,46.51677,4405,8,7,22,26,39,4.05,5.0,fr,11063,88,472860,1,1,Active Shallow Crust,0.0,89.9883,0.0,08/07/4405 +7.58201,46.51677,3643,6,27,11,7,56,4.05,15.0,fr,11064,72,472861,1,1,Active Shallow Crust,0.0,89.9883,0.0,06/27/3643 +7.58201,46.51677,4292,5,29,10,51,39,4.05,5.0,fr,11065,85,472863,1,1,Active Shallow Crust,240.0057,58.00625,0.0,05/29/4292 +7.58201,46.51677,3479,9,28,22,8,47,4.05,5.0,fr,11066,69,472866,1,1,Active Shallow Crust,0.0,89.98816,-90.0,09/28/3479 +7.58201,46.51677,8053,11,22,23,54,6,4.15,5.0,fr,11067,161,472872,1,1,Active Shallow Crust,0.0,89.98956,0.0,11/22/8053 +7.58201,46.51677,6402,11,25,0,9,3,4.15,15.0,fr,11068,128,472873,1,2,Active Shallow Crust,0.0,89.98956,0.0,11/25/6402 +7.58201,46.51677,3773,2,10,8,59,4,4.15,15.0,fr,11069,75,472873,1,2,Active Shallow Crust,0.0,89.98956,0.0,02/10/3773 +7.58201,46.51677,7921,10,14,0,49,58,4.15,15.0,fr,11070,158,472879,1,1,Active Shallow Crust,0.0,89.98945,-90.0,10/14/7921 +7.58201,46.51677,6249,12,21,9,20,9,4.15,5.0,fr,11071,124,472881,1,1,Active Shallow Crust,128.8973,89.99478,0.0,12/21/6249 +7.58201,46.51677,922,8,19,10,24,50,4.25,5.0,fr,11072,18,472884,1,3,Active Shallow Crust,0.0,89.9907,0.0,08/19/0922 +7.58201,46.51677,2690,11,17,4,47,11,4.25,5.0,fr,11073,53,472884,1,3,Active Shallow Crust,0.0,89.9907,0.0,11/17/2690 +7.58201,46.51677,5695,10,16,8,30,32,4.25,5.0,fr,11074,113,472884,1,3,Active Shallow Crust,0.0,89.9907,0.0,10/16/5695 +7.58201,46.51677,2655,9,17,2,1,33,4.25,15.0,fr,11075,53,472885,1,2,Active Shallow Crust,0.0,89.9907,0.0,09/17/2655 +7.58201,46.51677,5498,1,18,1,55,33,4.25,15.0,fr,11076,109,472885,1,2,Active Shallow Crust,0.0,89.9907,0.0,01/18/5498 +7.58201,46.51677,4948,7,31,17,57,55,4.25,27.5,fr,11077,98,472886,1,1,Active Shallow Crust,0.0,89.9907,0.0,07/31/4948 +7.58201,46.51677,3826,8,29,13,18,53,4.25,5.0,fr,11078,76,472887,1,2,Active Shallow Crust,240.0074,57.99398,0.0,08/29/3826 +7.58201,46.51677,7900,3,27,22,29,54,4.25,5.0,fr,11079,157,472887,1,2,Active Shallow Crust,240.0074,57.99398,0.0,03/27/7900 +7.58201,46.51677,8999,4,11,4,16,24,4.25,5.0,fr,11080,179,472890,1,1,Active Shallow Crust,0.0,89.99059,-90.0,04/11/8999 +7.58201,46.51677,9514,3,19,23,28,18,4.35,5.0,fr,11081,190,472899,1,1,Active Shallow Crust,240.0079,57.99586,0.0,03/19/9514 +7.58201,46.51677,4695,7,11,13,3,3,4.45,5.0,fr,11082,93,472908,1,1,Active Shallow Crust,0.0,89.99015,0.0,07/11/4695 +7.58201,46.51677,5647,9,10,4,8,23,4.45,27.5,fr,11083,112,472910,1,1,Active Shallow Crust,0.0,89.99015,0.0,09/10/5647 +7.58201,46.51677,4899,3,30,1,18,31,4.45,5.0,fr,11084,97,472914,1,1,Active Shallow Crust,0.0,89.99004,-90.0,03/30/4899 +7.58201,46.51677,840,6,14,6,1,31,4.55,5.0,fr,11085,16,472926,1,1,Active Shallow Crust,0.0,89.9889,-90.0,06/14/0840 +7.58201,46.51677,8275,8,14,22,17,39,4.65,15.0,fr,11086,165,472933,1,1,Active Shallow Crust,0.0,89.99022,0.0,08/14/8275 +7.58201,46.51677,1762,6,10,17,1,46,4.75,5.0,fr,11087,35,472944,1,1,Active Shallow Crust,0.0,89.98954,0.0,06/10/1762 +7.58201,46.51677,8438,2,21,15,49,15,4.85,5.0,fr,11088,168,472962,1,1,Active Shallow Crust,0.0,89.99057,-90.0,02/21/8438 +7.58201,46.51677,4428,7,23,21,26,21,4.95,15.0,fr,11089,88,472969,1,1,Active Shallow Crust,0.0,89.9903,0.0,07/23/4428 +7.58201,46.51677,3138,2,4,4,34,14,5.05,5.0,fr,11090,62,472980,1,1,Active Shallow Crust,0.0,89.99013,0.0,02/04/3138 +7.58201,46.51677,4518,2,10,19,51,56,5.05,5.0,fr,11091,90,472983,1,1,Active Shallow Crust,240.0221,57.99741,0.0,02/10/4518 +7.58201,46.51677,4984,2,27,11,14,19,5.15,27.5,fr,11092,99,472994,1,1,Active Shallow Crust,0.0,89.9901,0.0,02/27/4984 +7.58201,46.51677,4510,11,6,12,51,57,5.15,5.0,fr,11093,90,472998,1,1,Active Shallow Crust,0.0,89.98998,-90.0,11/06/4510 +7.582008,46.51677,7428,1,22,7,56,50,6.15,6.011322,fr,11094,148,473121,1,1,Active Shallow Crust,128.856,89.98978,0.0,01/22/7428 +1.27242,42.19958,3254,11,29,13,46,46,3.55,5.0,fr,11095,65,473280,1,4,Active Shallow Crust,0.0,89.99066,0.0,11/29/3254 +1.27242,42.19958,5500,1,11,23,13,27,3.55,5.0,fr,11096,109,473280,1,4,Active Shallow Crust,0.0,89.99066,0.0,01/11/5500 +1.27242,42.19958,7354,7,18,4,0,9,3.55,5.0,fr,11097,147,473280,1,4,Active Shallow Crust,0.0,89.99066,0.0,07/18/7354 +1.27242,42.19958,9145,12,6,3,4,15,3.55,5.0,fr,11098,182,473280,1,4,Active Shallow Crust,0.0,89.99066,0.0,12/06/9145 +1.27242,42.19958,5768,5,21,8,34,53,3.55,5.0,fr,11099,115,473283,1,1,Active Shallow Crust,240.0117,57.99798,0.0,05/21/5768 +1.27242,42.19958,8961,11,15,14,56,59,3.65,15.0,fr,11100,179,473296,1,1,Active Shallow Crust,240.0006,58.0126,0.0,11/15/8961 +1.27242,42.19958,1724,3,27,13,24,46,3.75,5.0,fr,11101,34,473304,1,1,Active Shallow Crust,0.0,89.98962,0.0,03/27/1724 +1.27242,42.19958,4417,1,6,4,45,54,3.75,27.5,fr,11102,88,473306,1,1,Active Shallow Crust,0.0,89.98962,0.0,01/06/4417 +1.27242,42.19958,4331,11,20,14,31,16,3.75,5.0,fr,11103,86,473310,1,1,Active Shallow Crust,0.0,89.98949,-90.0,11/20/4331 +1.27242,42.19958,3887,10,1,3,11,35,3.85,5.0,fr,11104,77,473325,1,1,Active Shallow Crust,128.8961,89.99405,0.0,10/01/3887 +1.27242,42.19958,9550,6,9,17,37,28,4.05,5.0,fr,11105,190,473340,1,1,Active Shallow Crust,0.0,89.98949,0.0,06/09/9550 +1.27242,42.19958,2654,11,14,21,28,16,4.05,5.0,fr,11106,53,473343,1,1,Active Shallow Crust,240.0053,58.00566,0.0,11/14/2654 +1.27242,42.19958,2545,1,3,4,19,41,4.15,15.0,fr,11107,50,473353,1,1,Active Shallow Crust,0.0,89.9897,0.0,01/03/2545 +1.27242,42.19958,5803,9,30,21,49,29,4.15,15.0,fr,11108,116,473356,1,1,Active Shallow Crust,240.0076,57.9972,0.0,09/30/5803 +1.27242,42.19958,9647,2,1,16,40,29,4.35,15.0,fr,11109,192,473377,1,1,Active Shallow Crust,0.0,89.99033,0.0,02/01/9647 +1.27242,42.19958,7056,1,14,21,47,53,4.65,5.0,fr,11110,141,473412,1,1,Active Shallow Crust,0.0,89.99,0.0,01/14/7056 +1.27242,42.19958,6193,12,14,20,2,41,4.75,27.5,fr,11111,123,473426,1,1,Active Shallow Crust,0.0,89.99015,0.0,12/14/6193 +-3.24855,43.36792,5492,7,4,13,44,19,3.55,5.0,fr,11112,109,473760,1,2,Active Shallow Crust,0.0,89.98901,0.0,07/04/5492 +-3.24855,43.36792,6849,6,14,22,42,39,3.55,5.0,fr,11113,136,473760,1,2,Active Shallow Crust,0.0,89.98901,0.0,06/14/6849 +-3.24855,43.36792,9492,6,23,16,49,27,3.55,27.5,fr,11114,189,473762,1,1,Active Shallow Crust,0.0,89.98901,0.0,06/23/9492 +-3.24855,43.36792,7789,5,4,18,24,41,3.55,5.0,fr,11115,155,473769,1,1,Active Shallow Crust,128.8966,89.9945,0.0,05/04/7789 +-3.24855,43.36792,8342,11,11,12,41,9,3.65,5.0,fr,11116,166,473775,1,2,Active Shallow Crust,240.0007,58.01245,0.0,11/11/8342 +-3.24855,43.36792,5603,4,20,12,10,26,3.65,5.0,fr,11117,112,473775,1,2,Active Shallow Crust,240.0007,58.01245,0.0,04/20/5603 +-3.24855,43.36792,9965,11,9,12,29,1,3.65,15.0,fr,11118,199,473779,1,1,Active Shallow Crust,0.0,89.99009,-90.0,11/09/9965 +-3.24855,43.36792,9502,4,11,1,31,54,3.75,15.0,fr,11119,190,473785,1,1,Active Shallow Crust,0.0,89.99126,0.0,04/11/9502 +-3.24855,43.36792,6568,3,15,14,28,3,3.75,15.0,fr,11120,131,473788,1,1,Active Shallow Crust,240.008,58.01779,0.0,03/15/6568 +-3.24855,43.36792,6899,10,6,21,7,35,3.85,5.0,fr,11121,137,473796,1,1,Active Shallow Crust,0.0,89.98962,0.0,10/06/6899 +-3.24855,43.36792,2166,8,25,0,9,41,3.85,15.0,fr,11122,43,473797,1,1,Active Shallow Crust,0.0,89.98962,0.0,08/25/2166 +-3.24855,43.36792,7391,7,12,14,15,31,3.95,27.5,fr,11123,147,473810,1,1,Active Shallow Crust,0.0,89.99075,0.0,07/12/7391 +-3.24855,43.36792,2501,9,28,15,43,37,4.15,5.0,fr,11124,50,473832,1,1,Active Shallow Crust,0.0,89.99081,0.0,09/28/2501 +-3.24855,43.36792,7596,1,13,10,57,1,4.25,15.0,fr,11125,151,473851,1,1,Active Shallow Crust,0.0,89.99006,-90.0,01/13/7596 +-3.24855,43.36792,7558,7,18,2,27,13,4.35,5.0,fr,11126,151,473862,1,1,Active Shallow Crust,0.0,89.98967,-90.0,07/18/7558 +-3.24855,43.36792,1485,10,23,19,10,44,4.35,5.0,fr,11127,29,473865,1,1,Active Shallow Crust,128.8982,89.98292,0.0,10/23/1485 +-3.24855,43.36792,5375,4,23,21,59,37,4.45,15.0,fr,11128,107,473869,1,1,Active Shallow Crust,0.0,89.98959,0.0,04/23/5375 +-3.24855,43.36792,8919,7,14,20,41,42,4.85,5.0,fr,11129,178,473919,1,1,Active Shallow Crust,240.016,58.00214,0.0,07/14/8919 +2.24364,51.28413,4065,12,24,13,53,50,3.55,5.0,fr,11130,81,474240,1,1,Active Shallow Crust,0.0,89.99054,0.0,12/24/4065 +2.24364,51.28413,60,1,26,20,59,26,3.55,5.0,fr,11131,1,474243,1,1,Active Shallow Crust,240.0133,57.99817,0.0,01/26/0060 +2.24364,51.28413,1472,5,11,4,54,13,3.55,27.5,fr,11132,29,474245,1,1,Active Shallow Crust,240.0133,57.99807,0.0,05/11/1472 +2.24364,51.28413,6305,3,25,16,11,48,3.55,5.0,fr,11133,126,474246,1,1,Active Shallow Crust,0.0,89.99043,-90.0,03/25/6305 +2.24364,51.28413,5247,5,24,23,42,0,3.55,15.0,fr,11134,104,474250,1,1,Active Shallow Crust,128.8956,89.99369,0.0,05/24/5247 +2.24364,51.28413,5632,4,2,1,40,22,3.65,5.0,fr,11135,112,474252,1,1,Active Shallow Crust,0.0,89.98875,0.0,04/02/5632 +2.24364,51.28413,4715,2,19,21,55,37,3.65,27.5,fr,11136,94,474263,1,1,Active Shallow Crust,128.9005,89.96337,0.0,02/19/4715 +2.24364,51.28413,3302,11,28,6,37,13,3.75,5.0,fr,11137,66,474264,1,2,Active Shallow Crust,0.0,89.98998,0.0,11/28/3302 +2.24364,51.28413,8443,4,2,9,16,45,3.75,5.0,fr,11138,168,474264,1,2,Active Shallow Crust,0.0,89.98998,0.0,04/02/8443 +2.24364,51.28413,56,3,17,9,39,8,4.15,5.0,fr,11139,1,474312,1,1,Active Shallow Crust,0.0,89.99052,0.0,03/17/0056 +2.24364,51.28413,5884,1,29,19,26,21,4.25,5.0,fr,11140,117,474330,1,1,Active Shallow Crust,0.0,89.99003,-90.0,01/29/5884 +2.24364,51.28413,935,12,23,7,50,33,4.85,5.0,fr,11141,18,474396,1,1,Active Shallow Crust,0.0,89.99011,0.0,12/23/0935 +-1.42711,50.5989,2302,10,8,0,5,41,3.75,5.0,fr,11142,46,474744,1,1,Active Shallow Crust,0.0,89.98983,0.0,10/08/2302 +-1.42711,50.5989,7277,8,5,15,49,53,3.95,15.0,fr,11143,145,474778,1,1,Active Shallow Crust,128.8997,89.99394,0.0,08/05/7277 +-1.42711,50.5989,5043,5,26,8,47,44,4.15,27.5,fr,11144,100,474803,1,1,Active Shallow Crust,128.8969,89.99358,0.0,05/26/5043 +-1.42711,50.5989,4457,4,29,15,55,13,4.25,27.5,fr,11145,89,474806,1,1,Active Shallow Crust,0.0,89.98999,0.0,04/29/4457 +-1.42711,50.5989,5976,10,11,19,35,12,4.65,5.0,fr,11146,119,474861,1,1,Active Shallow Crust,128.8899,89.987,0.0,10/11/5976 +-1.42711,50.5989,7604,12,30,14,28,34,4.75,15.0,fr,11147,152,474865,1,1,Active Shallow Crust,0.0,89.98995,0.0,12/30/7604 +0.75253,43.3766,550,5,25,8,7,50,3.55,5.0,fr,11148,10,475200,1,1,Active Shallow Crust,0.0,89.98992,0.0,05/25/0550 +0.75253,43.3766,5150,4,20,11,38,16,3.55,27.5,fr,11149,102,475208,1,1,Active Shallow Crust,0.0,89.98981,-90.0,04/20/5150 +0.75253,43.3766,4931,3,1,1,7,32,3.65,5.0,fr,11150,98,475212,1,1,Active Shallow Crust,0.0,89.9902,0.0,03/01/4931 +0.75253,43.3766,1489,5,20,9,17,25,4.05,5.0,fr,11151,29,475260,1,1,Active Shallow Crust,0.0,89.99021,0.0,05/20/1489 +0.75253,43.3766,9861,4,16,23,15,57,4.35,5.0,fr,11152,197,475296,1,1,Active Shallow Crust,0.0,89.99015,0.0,04/16/9861 +-1.28808,47.00213,4937,1,5,20,58,17,3.55,5.0,fr,11153,98,475680,1,1,Active Shallow Crust,0.0,89.98969,0.0,01/05/4937 +-1.28808,47.00213,5782,12,27,22,22,27,3.55,15.0,fr,11154,115,475681,1,1,Active Shallow Crust,0.0,89.98969,0.0,12/27/5782 +-1.28808,47.00213,3195,3,28,15,39,16,3.75,5.0,fr,11155,63,475704,1,1,Active Shallow Crust,0.0,89.99044,0.0,03/28/3195 +-1.28808,47.00213,9824,10,31,4,13,48,3.75,27.5,fr,11156,196,475706,1,1,Active Shallow Crust,0.0,89.99044,0.0,10/31/9824 +-1.28808,47.00213,5251,10,16,12,18,2,3.85,5.0,fr,11157,105,475716,1,2,Active Shallow Crust,0.0,89.99026,0.0,10/16/5251 +-1.28808,47.00213,2087,8,24,21,6,40,3.85,5.0,fr,11158,41,475716,1,2,Active Shallow Crust,0.0,89.99026,0.0,08/24/2087 +-1.28808,47.00213,5328,7,5,6,38,21,3.85,15.0,fr,11159,106,475723,1,1,Active Shallow Crust,0.0,89.99015,-90.0,07/05/5328 +-1.28808,47.00213,8242,2,28,8,34,48,3.95,5.0,fr,11160,164,475737,1,1,Active Shallow Crust,128.9002,89.99349,0.0,02/28/8242 +-1.28808,47.00213,7220,1,10,21,12,15,4.05,5.0,fr,11161,144,475743,1,1,Active Shallow Crust,240.0061,58.00576,0.0,01/10/7220 +-1.28808,47.00213,9675,3,9,16,36,27,4.25,15.0,fr,11162,193,475765,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/09/9675 +-1.28808,47.00213,6180,5,22,16,47,12,4.65,5.0,fr,11163,123,475812,1,1,Active Shallow Crust,0.0,89.98982,0.0,05/22/6180 +-1.28808,47.00213,2684,10,30,16,56,48,4.75,15.0,fr,11164,53,475825,1,1,Active Shallow Crust,0.0,89.99007,0.0,10/30/2684 +-1.28808,47.00213,9949,11,24,4,25,3,4.95,5.0,fr,11165,198,475851,1,1,Active Shallow Crust,240.0122,58.0045,0.0,11/24/9949 +-1.28808,47.00213,1287,12,19,5,5,21,5.15,15.0,fr,11166,25,475882,1,1,Active Shallow Crust,128.8835,89.99105,0.0,12/19/1287 +2.80923,44.43739,3701,1,29,5,42,51,3.55,5.0,fr,11167,74,476160,1,1,Active Shallow Crust,0.0,89.9892,0.0,01/29/3701 +2.80923,44.43739,2739,3,3,8,52,43,3.55,15.0,fr,11168,54,476161,1,1,Active Shallow Crust,0.0,89.9892,0.0,03/03/2739 +2.80923,44.43739,1183,3,9,9,43,2,3.65,5.0,fr,11169,23,476172,1,1,Active Shallow Crust,0.0,89.99037,0.0,03/09/1183 +2.80923,44.43739,6994,5,22,16,3,54,3.75,15.0,fr,11170,139,476194,1,1,Active Shallow Crust,128.8974,89.96717,0.0,05/22/6994 +2.80923,44.43739,4748,3,20,2,10,15,3.85,5.0,fr,11171,94,476196,1,2,Active Shallow Crust,0.0,89.98981,0.0,03/20/4748 +2.80923,44.43739,2755,9,8,19,23,30,3.85,5.0,fr,11172,55,476196,1,2,Active Shallow Crust,0.0,89.98981,0.0,09/08/2755 +2.80923,44.43739,8111,1,4,8,29,5,3.85,5.0,fr,11173,162,476199,1,1,Active Shallow Crust,240.0103,57.99771,0.0,01/04/8111 +2.80923,44.43739,9518,4,11,0,8,41,3.95,5.0,fr,11174,190,476208,1,1,Active Shallow Crust,0.0,89.99091,0.0,04/11/9518 +2.80923,44.43739,7685,10,4,23,5,48,4.05,15.0,fr,11175,153,476221,1,1,Active Shallow Crust,0.0,89.98988,0.0,10/04/7685 +2.80923,44.43739,4259,10,12,18,52,46,4.25,5.0,fr,11176,85,476244,1,1,Active Shallow Crust,0.0,89.99035,0.0,10/12/4259 +2.80923,44.43739,9615,4,23,13,12,59,4.35,5.0,fr,11177,192,476262,1,1,Active Shallow Crust,0.0,89.98985,-90.0,04/23/9615 +2.80923,44.43739,2883,1,7,7,35,21,4.95,5.0,fr,11178,57,476328,1,1,Active Shallow Crust,0.0,89.98994,0.0,01/07/2883 +1.58152,52.29154,9069,2,28,17,7,23,3.65,15.0,fr,11179,181,476653,1,1,Active Shallow Crust,0.0,89.99038,0.0,02/28/9069 +3.87192,42.60753,1779,11,8,5,8,58,3.55,5.0,fr,11180,35,477120,1,1,Active Shallow Crust,0.0,89.98887,0.0,11/08/1779 +3.87192,42.60753,4918,1,10,1,31,8,3.55,27.5,fr,11181,98,477122,1,1,Active Shallow Crust,0.0,89.98887,0.0,01/10/4918 +3.87192,42.60753,5390,6,23,6,30,11,3.65,5.0,fr,11182,107,477135,1,1,Active Shallow Crust,240.0011,58.01295,0.0,06/23/5390 +3.87192,42.60753,8925,3,29,5,41,38,4.25,5.0,fr,11183,178,477213,1,1,Active Shallow Crust,128.895,89.9808,0.0,03/29/8925 +3.87192,42.60753,7707,7,24,10,55,54,4.35,5.0,fr,11184,154,477222,1,1,Active Shallow Crust,0.0,89.98954,-90.0,07/24/7707 +3.87192,42.60753,5844,5,13,22,34,13,4.95,27.5,fr,11185,116,477290,1,1,Active Shallow Crust,0.0,89.98963,0.0,05/13/5844 +-2.77857,47.68586,2937,9,24,9,18,45,3.55,5.0,fr,11186,58,477600,1,2,Active Shallow Crust,0.0,89.98981,0.0,09/24/2937 +-2.77857,47.68586,8718,7,14,21,20,40,3.55,5.0,fr,11187,174,477600,1,2,Active Shallow Crust,0.0,89.98981,0.0,07/14/8718 +-2.77857,47.68586,5136,4,16,10,38,35,3.55,15.0,fr,11188,102,477601,1,2,Active Shallow Crust,0.0,89.98981,0.0,04/16/5136 +-2.77857,47.68586,377,5,7,7,1,56,3.55,15.0,fr,11189,7,477601,1,2,Active Shallow Crust,0.0,89.98981,0.0,05/07/0377 +-2.77857,47.68586,6295,5,16,12,23,23,3.55,5.0,fr,11190,125,477603,1,1,Active Shallow Crust,240.0117,57.99834,0.0,05/16/6295 +-2.77857,47.68586,3839,11,17,5,53,40,3.55,5.0,fr,11191,76,477606,1,1,Active Shallow Crust,0.0,89.9897,-90.0,11/17/3839 +-2.77857,47.68586,4649,5,20,9,27,15,3.65,5.0,fr,11192,92,477612,1,1,Active Shallow Crust,0.0,89.99092,0.0,05/20/4649 +-2.77857,47.68586,5983,10,19,17,16,29,3.65,5.0,fr,11193,119,477615,1,1,Active Shallow Crust,240.001,58.01269,0.0,10/19/5983 +-2.77857,47.68586,4274,9,12,14,27,54,3.75,5.0,fr,11194,85,477624,1,1,Active Shallow Crust,0.0,89.98921,0.0,09/12/4274 +-2.77857,47.68586,553,10,9,4,57,25,3.75,15.0,fr,11195,11,477625,1,1,Active Shallow Crust,0.0,89.98921,0.0,10/09/0553 +-2.77857,47.68586,5207,3,28,10,9,21,3.75,5.0,fr,11196,104,477630,1,1,Active Shallow Crust,0.0,89.98909,-90.0,03/28/5207 +-2.77857,47.68586,9120,6,26,20,12,48,3.95,5.0,fr,11197,182,477648,1,1,Active Shallow Crust,0.0,89.98929,0.0,06/26/9120 +-2.77857,47.68586,3797,8,8,3,57,55,3.95,15.0,fr,11198,75,477649,1,1,Active Shallow Crust,0.0,89.98929,0.0,08/08/3797 +-2.77857,47.68586,3036,11,9,12,31,12,3.95,5.0,fr,11199,60,477651,1,1,Active Shallow Crust,240.0201,58.00491,0.0,11/09/3036 +-2.77857,47.68586,7774,9,5,14,32,40,4.05,5.0,fr,11200,155,477660,1,2,Active Shallow Crust,0.0,89.99046,0.0,09/05/7774 +-2.77857,47.68586,2527,7,21,1,51,25,4.05,5.0,fr,11201,50,477660,1,2,Active Shallow Crust,0.0,89.99046,0.0,07/21/2527 +-2.77857,47.68586,46,12,10,6,22,46,4.05,15.0,fr,11202,0,477661,1,2,Active Shallow Crust,0.0,89.99046,0.0,12/10/0046 +-2.77857,47.68586,4887,3,5,5,25,13,4.05,15.0,fr,11203,97,477661,1,2,Active Shallow Crust,0.0,89.99046,0.0,03/05/4887 +-2.77857,47.68586,4538,1,14,18,35,33,4.15,5.0,fr,11204,90,477672,1,2,Active Shallow Crust,0.0,89.98979,0.0,01/14/4538 +-2.77857,47.68586,889,4,18,14,36,39,4.15,5.0,fr,11205,17,477672,1,2,Active Shallow Crust,0.0,89.98979,0.0,04/18/0889 +-2.77857,47.68586,4027,6,29,22,37,46,4.15,5.0,fr,11206,80,477675,1,1,Active Shallow Crust,240.0087,57.99704,0.0,06/29/4027 +-2.77857,47.68586,9264,3,7,23,13,47,4.15,15.0,fr,11207,185,477679,1,1,Active Shallow Crust,0.0,89.98968,-90.0,03/07/9264 +-2.77857,47.68586,8896,1,8,13,12,28,4.15,5.0,fr,11208,177,477681,1,1,Active Shallow Crust,128.8975,89.99319,0.0,01/08/8896 +-2.77857,47.68586,9445,6,5,15,52,25,4.25,15.0,fr,11209,188,477685,1,1,Active Shallow Crust,0.0,89.98939,0.0,06/05/9445 +-2.77857,47.68586,278,1,24,19,47,45,4.25,5.0,fr,11210,5,477687,1,1,Active Shallow Crust,240.0078,57.99398,0.0,01/24/0278 +-2.77857,47.68586,143,9,6,23,27,32,4.35,15.0,fr,11211,2,477697,1,1,Active Shallow Crust,0.0,89.99054,0.0,09/06/0143 +-2.77857,47.68586,4836,11,20,21,37,55,4.45,5.0,fr,11212,96,477708,1,1,Active Shallow Crust,0.0,89.99036,0.0,11/20/4836 +-2.77857,47.68586,5838,12,23,20,24,17,4.45,15.0,fr,11213,116,477709,1,1,Active Shallow Crust,0.0,89.99036,0.0,12/23/5838 +-2.77857,47.68586,3760,1,24,23,18,15,4.55,5.0,fr,11214,75,477720,1,1,Active Shallow Crust,0.0,89.99034,0.0,01/24/3760 +-2.77857,47.68586,6663,6,9,21,54,53,4.55,15.0,fr,11215,133,477721,1,1,Active Shallow Crust,0.0,89.99034,0.0,06/09/6663 +-2.77857,47.68586,4811,1,21,9,12,18,4.65,5.0,fr,11216,96,477732,1,1,Active Shallow Crust,0.0,89.99043,0.0,01/21/4811 +-2.77857,47.68586,2271,12,9,23,47,14,4.85,5.0,fr,11217,45,477762,1,1,Active Shallow Crust,0.0,89.99001,-90.0,12/09/2271 +-2.77857,47.68586,4753,7,8,5,39,19,5.05,5.0,fr,11218,95,477786,1,1,Active Shallow Crust,0.0,89.99023,-90.0,07/08/4753 +5.63974,43.38387,9603,3,17,14,42,19,3.55,5.0,fr,11219,192,478080,1,1,Active Shallow Crust,0.0,89.99267,0.0,03/17/9603 +5.63974,43.38387,3083,6,24,3,46,4,3.65,27.5,fr,11220,61,478094,1,1,Active Shallow Crust,0.0,89.98694,0.0,06/24/3083 +5.63974,43.38387,6727,7,8,1,56,44,3.75,5.0,fr,11221,134,478104,1,1,Active Shallow Crust,0.0,89.98836,0.0,07/08/6727 +5.63974,43.38387,8439,1,29,18,54,16,3.85,15.0,fr,11222,168,478117,1,1,Active Shallow Crust,0.0,89.98962,0.0,01/29/8439 +5.63974,43.38387,3837,1,23,6,34,18,3.85,5.0,fr,11223,76,478125,1,1,Active Shallow Crust,128.8952,89.99481,0.0,01/23/3837 +5.63974,43.38387,5301,5,1,10,57,47,3.95,5.0,fr,11224,106,478128,1,2,Active Shallow Crust,0.0,89.99075,0.0,05/01/5301 +5.63974,43.38387,6486,6,22,21,2,21,3.95,5.0,fr,11225,129,478128,1,2,Active Shallow Crust,0.0,89.99075,0.0,06/22/6486 +5.63974,43.38387,3748,9,18,14,3,24,3.95,5.0,fr,11226,74,478131,1,1,Active Shallow Crust,240.0193,58.00583,0.0,09/18/3748 +5.63974,43.38387,1895,1,15,21,43,23,4.05,5.0,fr,11227,37,478140,1,2,Active Shallow Crust,0.0,89.99176,0.0,01/15/1895 +5.63974,43.38387,6100,4,22,15,11,53,4.05,5.0,fr,11228,121,478140,1,2,Active Shallow Crust,0.0,89.99176,0.0,04/22/6100 +5.63974,43.38387,9146,10,27,4,22,34,4.05,15.0,fr,11229,182,478141,1,1,Active Shallow Crust,0.0,89.99176,0.0,10/27/9146 +5.63974,43.38387,2726,8,16,8,3,32,4.15,5.0,fr,11230,54,478152,1,1,Active Shallow Crust,0.0,89.98898,0.0,08/16/2726 +5.63974,43.38387,9723,10,2,0,4,37,4.35,15.0,fr,11231,194,478177,1,1,Active Shallow Crust,0.0,89.99125,0.0,10/02/9723 +5.63974,43.38387,5061,9,13,12,33,27,4.45,5.0,fr,11232,101,478188,1,1,Active Shallow Crust,0.0,89.9896,0.0,09/13/5061 +5.63974,43.38387,441,3,2,2,15,35,4.45,15.0,fr,11233,8,478189,1,1,Active Shallow Crust,0.0,89.9896,0.0,03/02/0441 +0.72366,50.58231,3221,11,14,4,21,30,3.55,5.0,fr,11234,64,478560,1,1,Active Shallow Crust,0.0,89.99039,0.0,11/14/3221 +0.72366,50.58231,5258,2,7,22,24,13,3.55,27.5,fr,11235,105,478562,1,1,Active Shallow Crust,0.0,89.99039,0.0,02/07/5258 +0.72366,50.58231,4532,4,11,13,49,38,3.55,5.0,fr,11236,90,478563,1,1,Active Shallow Crust,240.0125,57.99836,0.0,04/11/4532 +0.72366,50.58231,2515,2,15,4,23,49,3.65,5.0,fr,11237,50,478572,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/15/2515 +0.72366,50.58231,7048,1,26,19,42,39,3.65,15.0,fr,11238,140,478579,1,1,Active Shallow Crust,0.0,89.9899,-90.0,01/26/7048 +0.72366,50.58231,9290,12,31,13,6,45,3.65,5.0,fr,11239,185,478581,1,1,Active Shallow Crust,128.9001,89.96349,0.0,12/31/9290 +0.72366,50.58231,8830,3,17,20,10,7,3.85,27.5,fr,11240,176,478601,1,1,Active Shallow Crust,240.0115,57.99791,0.0,03/17/8830 +3.6906,51.8243,7366,7,31,0,51,2,3.55,5.0,fr,11241,147,479040,1,1,Active Shallow Crust,0.0,89.99065,0.0,07/31/7366 +3.6906,51.8243,145,1,21,10,35,37,4.75,5.0,fr,11242,2,479184,1,1,Active Shallow Crust,0.0,89.98982,0.0,01/21/0145 +0.58346,50.70639,4652,2,17,4,51,41,3.55,5.0,fr,11243,93,479520,1,1,Active Shallow Crust,0.0,89.98962,0.0,02/17/4652 +0.58346,50.70639,1337,1,15,2,31,8,4.05,5.0,fr,11244,26,479589,1,1,Active Shallow Crust,128.89,89.99371,0.0,01/15/1337 +-2.77771,46.86925,5991,8,16,9,3,48,3.75,5.0,fr,11245,119,480033,1,1,Active Shallow Crust,128.8967,89.96724,0.0,08/16/5991 +-2.77771,46.86925,183,5,9,21,19,34,4.25,5.0,fr,11246,3,480093,1,1,Active Shallow Crust,128.8945,89.98096,0.0,05/09/0183 +-2.77771,46.86925,7880,8,21,8,24,10,5.05,5.0,fr,11247,157,480186,1,1,Active Shallow Crust,0.0,89.99007,-90.0,08/21/7880 +-2.77771,46.86925,5947,3,21,14,20,6,5.75,5.0,fr,11248,118,480264,1,1,Active Shallow Crust,0.0,89.98986,0.0,03/21/5947 +1.03825,45.0248,5168,12,20,5,51,19,3.55,5.0,fr,11249,103,480480,1,1,Active Shallow Crust,0.0,89.98931,0.0,12/20/5168 +1.03825,45.0248,2798,7,19,21,37,40,3.55,15.0,fr,11250,55,480481,1,1,Active Shallow Crust,0.0,89.98931,0.0,07/19/2798 +1.03825,45.0248,7413,8,24,5,21,36,3.75,5.0,fr,11251,148,480504,1,1,Active Shallow Crust,0.0,89.99009,0.0,08/24/7413 +1.03825,45.0248,4912,6,23,22,28,18,3.95,5.0,fr,11252,98,480528,1,1,Active Shallow Crust,0.0,89.98988,0.0,06/23/4912 +1.03825,45.0248,6369,7,9,21,34,46,4.05,5.0,fr,11253,127,480540,1,1,Active Shallow Crust,0.0,89.98998,0.0,07/09/6369 +1.03825,45.0248,3330,12,6,7,59,46,4.45,15.0,fr,11254,66,480598,1,1,Active Shallow Crust,128.8926,89.99368,0.0,12/06/3330 +1.03825,45.0248,6383,2,1,1,43,11,5.05,15.0,fr,11255,127,480670,1,1,Active Shallow Crust,128.8861,89.99053,0.0,02/01/6383 +2.69888,41.08776,5817,8,31,23,45,20,3.55,5.0,fr,11256,116,480960,1,1,Active Shallow Crust,0.0,89.9886,0.0,08/31/5817 +2.69888,41.08776,8133,5,5,3,26,48,3.75,5.0,fr,11257,162,480984,1,2,Active Shallow Crust,0.0,89.99094,0.0,05/05/8133 +2.69888,41.08776,7698,7,5,1,0,11,3.75,5.0,fr,11258,153,480984,1,2,Active Shallow Crust,0.0,89.99094,0.0,07/05/7698 +2.69888,41.08776,3940,1,23,8,40,35,3.95,15.0,fr,11259,78,481009,1,1,Active Shallow Crust,0.0,89.99041,0.0,01/23/3940 +2.69888,41.08776,4245,5,31,4,27,40,4.15,5.0,fr,11260,84,481032,1,1,Active Shallow Crust,0.0,89.99048,0.0,05/31/4245 +2.69888,41.08776,3679,1,26,18,20,13,4.45,5.0,fr,11261,73,481071,1,1,Active Shallow Crust,240.004,57.99462,0.0,01/26/3679 +2.69888,41.08776,1066,12,1,18,9,20,4.85,5.0,fr,11262,21,481116,1,1,Active Shallow Crust,0.0,89.98979,0.0,12/01/1066 +5.28893,50.78358,4310,8,1,8,37,18,3.55,5.0,fr,11263,86,481440,1,1,Active Shallow Crust,0.0,89.98725,0.0,08/01/4310 +5.28893,50.78358,4352,4,29,4,28,53,3.65,5.0,fr,11264,87,481452,1,1,Active Shallow Crust,0.0,89.98863,0.0,04/29/4352 +5.28893,50.78358,7450,4,22,15,19,45,3.65,15.0,fr,11265,148,481453,1,3,Active Shallow Crust,0.0,89.98863,0.0,04/22/7450 +5.28893,50.78358,4437,2,6,6,37,26,3.65,15.0,fr,11266,88,481453,1,3,Active Shallow Crust,0.0,89.98863,0.0,02/06/4437 +5.28893,50.78358,56,5,9,1,6,57,3.65,15.0,fr,11267,1,481453,1,3,Active Shallow Crust,0.0,89.98863,0.0,05/09/0056 +5.28893,50.78358,2754,1,19,13,32,20,3.65,5.0,fr,11268,55,481461,1,1,Active Shallow Crust,128.9006,89.96361,0.0,01/19/2754 +5.28893,50.78358,827,9,28,21,12,53,3.75,5.0,fr,11269,16,481470,1,1,Active Shallow Crust,0.0,89.98975,-90.0,09/28/0827 +5.28893,50.78358,9154,5,5,0,16,46,3.75,27.5,fr,11270,183,481475,1,1,Active Shallow Crust,128.8969,89.96707,0.0,05/05/9154 +5.28893,50.78358,9495,6,21,7,8,17,3.85,5.0,fr,11271,189,481476,1,1,Active Shallow Crust,0.0,89.99097,0.0,06/21/9495 +5.28893,50.78358,2207,2,17,16,15,37,3.85,27.5,fr,11272,44,481487,1,1,Active Shallow Crust,128.8941,89.99323,0.0,02/17/2207 +5.28893,50.78358,4814,10,31,18,6,13,4.05,5.0,fr,11273,96,481503,1,1,Active Shallow Crust,240.0064,58.00611,0.0,10/31/4814 +5.28893,50.78358,3557,10,22,5,39,7,4.15,15.0,fr,11274,71,481513,1,1,Active Shallow Crust,0.0,89.99041,0.0,10/22/3557 +5.28893,50.78358,5036,1,20,13,53,47,4.15,5.0,fr,11275,100,481515,1,1,Active Shallow Crust,240.0095,57.99702,0.0,01/20/5036 +5.28893,50.78358,4030,4,12,7,40,37,4.15,27.5,fr,11276,80,481523,1,1,Active Shallow Crust,128.8975,89.99361,0.0,04/12/4030 +5.28893,50.78358,3293,7,6,10,4,57,4.25,27.5,fr,11277,65,481532,1,1,Active Shallow Crust,0.0,89.99136,-90.0,07/06/3293 +5.28893,50.78358,4774,6,29,13,51,4,4.45,15.0,fr,11278,95,481549,1,1,Active Shallow Crust,0.0,89.99095,0.0,06/29/4774 +5.28893,50.78358,409,10,13,9,11,6,4.65,5.0,fr,11279,8,481572,1,1,Active Shallow Crust,0.0,89.98922,0.0,10/13/0409 +5.28893,50.78358,9988,1,24,16,49,21,4.65,15.0,fr,11280,199,481573,1,1,Active Shallow Crust,0.0,89.98922,0.0,01/24/9988 +5.28893,50.78358,2997,1,8,11,13,34,4.65,5.0,fr,11281,59,481575,1,1,Active Shallow Crust,240.0124,57.99433,0.0,01/08/2997 +5.28893,50.78358,4525,8,29,3,58,41,4.85,15.0,fr,11282,90,481600,1,1,Active Shallow Crust,240.0188,58.00261,0.0,08/29/4525 +5.28893,50.78358,6392,4,3,18,43,3,5.45,5.0,fr,11283,127,481668,1,1,Active Shallow Crust,0.0,89.98998,0.0,04/03/6392 +0.69672,52.64835,6677,5,25,16,26,27,3.85,5.0,fr,11284,133,481959,1,1,Active Shallow Crust,240.0118,57.99795,0.0,05/25/6677 +0.69672,52.64835,4568,7,11,4,53,12,4.15,5.0,fr,11285,91,481992,1,1,Active Shallow Crust,0.0,89.99004,0.0,07/11/4568 +7.06046,51.49487,9069,8,29,23,48,40,4.05,15.0,fr,11286,181,482464,1,1,Active Shallow Crust,240.0068,58.0057,0.0,08/29/9069 +3.35068,40.237,3737,10,20,13,53,11,3.75,15.0,fr,11287,74,482905,1,1,Active Shallow Crust,0.0,89.99083,0.0,10/20/3737 +-0.52377,48.80224,6132,7,1,6,9,52,3.55,5.0,fr,11288,122,483843,1,3,Active Shallow Crust,240.0123,57.99828,0.0,07/01/6132 +-0.52377,48.80224,2534,2,25,2,5,32,3.55,5.0,fr,11289,50,483843,1,3,Active Shallow Crust,240.0123,57.99828,0.0,02/25/2534 +-0.52377,48.80224,4246,4,14,4,19,55,3.55,5.0,fr,11290,84,483843,1,3,Active Shallow Crust,240.0123,57.99828,0.0,04/14/4246 +-0.52377,48.80224,3847,10,29,4,46,36,3.65,5.0,fr,11291,76,483852,1,1,Active Shallow Crust,0.0,89.98964,0.0,10/29/3847 +-0.52377,48.80224,231,12,21,7,48,16,3.75,5.0,fr,11292,4,483864,1,1,Active Shallow Crust,0.0,89.9901,0.0,12/21/0231 +-0.52377,48.80224,527,1,29,21,23,2,3.75,5.0,fr,11293,10,483873,1,1,Active Shallow Crust,128.8964,89.96735,0.0,01/29/0527 +-0.52377,48.80224,3635,10,24,2,26,26,3.75,27.5,fr,11294,72,483875,1,1,Active Shallow Crust,128.8964,89.96735,0.0,10/24/3635 +-0.52377,48.80224,228,9,13,22,50,5,3.85,15.0,fr,11295,4,483877,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/13/0228 +-0.52377,48.80224,6970,3,15,0,4,11,3.85,5.0,fr,11296,139,483885,1,1,Active Shallow Crust,128.8954,89.99383,0.0,03/15/6970 +-0.52377,48.80224,1605,12,23,1,43,44,3.95,5.0,fr,11297,32,483888,1,2,Active Shallow Crust,0.0,89.99004,0.0,12/23/1605 +-0.52377,48.80224,6102,3,21,6,50,54,3.95,5.0,fr,11298,122,483888,1,2,Active Shallow Crust,0.0,89.99004,0.0,03/21/6102 +-0.52377,48.80224,4710,10,8,14,51,16,4.05,5.0,fr,11299,94,483900,1,1,Active Shallow Crust,0.0,89.9902,0.0,10/08/4710 +-0.52377,48.80224,8381,9,15,13,8,51,4.35,15.0,fr,11300,167,483937,1,1,Active Shallow Crust,0.0,89.99008,0.0,09/15/8381 +-0.43939,45.17564,3390,10,13,12,6,53,3.65,27.5,fr,11301,67,484334,1,1,Active Shallow Crust,0.0,89.9901,0.0,10/13/3390 +-0.43939,45.17564,7430,3,1,11,57,51,4.65,27.5,fr,11302,148,484460,1,1,Active Shallow Crust,0.0,89.98999,-90.0,03/01/7430 +-1.65273,46.29243,388,8,11,17,7,39,3.65,5.0,fr,11303,7,484812,1,1,Active Shallow Crust,0.0,89.99068,0.0,08/11/0388 +-1.65273,46.29243,5044,2,20,1,43,52,4.45,5.0,fr,11304,100,484908,1,1,Active Shallow Crust,0.0,89.99011,0.0,02/20/5044 +-1.65273,46.29243,9552,3,15,6,49,53,4.45,27.5,fr,11305,191,484910,1,1,Active Shallow Crust,0.0,89.99011,0.0,03/15/9552 +7.36907,49.55415,6806,2,21,9,9,18,4.15,5.0,fr,11306,136,485832,1,1,Active Shallow Crust,0.0,89.99017,0.0,02/21/6806 +7.36907,49.55415,8422,1,4,19,24,3,4.65,5.0,fr,11307,168,485898,1,1,Active Shallow Crust,0.0,89.99068,-90.0,01/04/8422 +3.42105,42.80864,8157,2,6,22,59,37,3.55,5.0,fr,11308,163,486240,1,1,Active Shallow Crust,0.0,89.98891,0.0,02/06/8157 +3.42105,42.80864,5806,8,25,9,38,17,3.55,5.0,fr,11309,116,486243,1,1,Active Shallow Crust,240.0126,57.99766,0.0,08/25/5806 +3.42105,42.80864,4133,9,12,5,57,37,3.95,15.0,fr,11310,82,486289,1,1,Active Shallow Crust,0.0,89.99066,0.0,09/12/4133 +3.42105,42.80864,7974,2,1,3,32,6,4.75,27.5,fr,11311,159,486392,1,1,Active Shallow Crust,0.0,89.98966,-90.0,02/01/7974 +7.39802,46.23581,6539,7,10,7,8,23,3.55,5.0,fr,11312,130,486720,1,20,Active Shallow Crust,0.0,89.99303,0.0,07/10/6539 +7.39802,46.23581,5324,5,27,12,42,35,3.55,5.0,fr,11313,106,486720,1,20,Active Shallow Crust,0.0,89.99303,0.0,05/27/5324 +7.39802,46.23581,8758,3,18,4,40,44,3.55,5.0,fr,11314,175,486720,1,20,Active Shallow Crust,0.0,89.99303,0.0,03/18/8758 +7.39802,46.23581,1443,9,1,7,48,44,3.55,5.0,fr,11315,28,486720,1,20,Active Shallow Crust,0.0,89.99303,0.0,09/01/1443 +7.39802,46.23581,2605,6,7,7,30,23,3.55,5.0,fr,11316,52,486720,1,20,Active Shallow Crust,0.0,89.99303,0.0,06/07/2605 +7.39802,46.23581,1119,11,30,8,36,57,3.55,5.0,fr,11317,22,486720,1,20,Active Shallow Crust,0.0,89.99303,0.0,11/30/1119 +7.39802,46.23581,7822,1,2,13,48,53,3.55,5.0,fr,11318,156,486720,1,20,Active Shallow Crust,0.0,89.99303,0.0,01/02/7822 +7.39802,46.23581,2801,5,25,10,54,51,3.55,5.0,fr,11319,56,486720,1,20,Active Shallow Crust,0.0,89.99303,0.0,05/25/2801 +7.39802,46.23581,414,7,8,22,27,18,3.55,5.0,fr,11320,8,486720,1,20,Active Shallow Crust,0.0,89.99303,0.0,07/08/0414 +7.39802,46.23581,2828,4,26,9,9,35,3.55,5.0,fr,11321,56,486720,1,20,Active Shallow Crust,0.0,89.99303,0.0,04/26/2828 +7.39802,46.23581,1919,8,1,6,7,18,3.55,5.0,fr,11322,38,486720,1,20,Active Shallow Crust,0.0,89.99303,0.0,08/01/1919 +7.39802,46.23581,9254,10,19,12,54,22,3.55,5.0,fr,11323,185,486720,1,20,Active Shallow Crust,0.0,89.99303,0.0,10/19/9254 +7.39802,46.23581,2954,5,6,21,33,14,3.55,5.0,fr,11324,59,486720,1,20,Active Shallow Crust,0.0,89.99303,0.0,05/06/2954 +7.39802,46.23581,9920,9,11,8,51,20,3.55,5.0,fr,11325,198,486720,1,20,Active Shallow Crust,0.0,89.99303,0.0,09/11/9920 +7.39802,46.23581,4839,9,19,7,6,43,3.55,5.0,fr,11326,96,486720,1,20,Active Shallow Crust,0.0,89.99303,0.0,09/19/4839 +7.39802,46.23581,58,9,25,16,33,17,3.55,5.0,fr,11327,1,486720,1,20,Active Shallow Crust,0.0,89.99303,0.0,09/25/0058 +7.39802,46.23581,5548,1,28,23,52,21,3.55,5.0,fr,11328,110,486720,1,20,Active Shallow Crust,0.0,89.99303,0.0,01/28/5548 +7.39802,46.23581,7491,2,10,13,42,46,3.55,5.0,fr,11329,149,486720,1,20,Active Shallow Crust,0.0,89.99303,0.0,02/10/7491 +7.39802,46.23581,8868,3,31,17,29,23,3.55,5.0,fr,11330,177,486720,1,20,Active Shallow Crust,0.0,89.99303,0.0,03/31/8868 +7.39802,46.23581,9740,4,16,8,25,10,3.55,5.0,fr,11331,194,486720,1,20,Active Shallow Crust,0.0,89.99303,0.0,04/16/9740 +7.39802,46.23581,8562,10,16,21,41,10,3.55,15.0,fr,11332,171,486721,1,3,Active Shallow Crust,0.0,89.99303,0.0,10/16/8562 +7.39802,46.23581,2873,9,10,20,58,43,3.55,15.0,fr,11333,57,486721,1,3,Active Shallow Crust,0.0,89.99303,0.0,09/10/2873 +7.39802,46.23581,9032,10,18,22,47,28,3.55,15.0,fr,11334,180,486721,1,3,Active Shallow Crust,0.0,89.99303,0.0,10/18/9032 +7.39802,46.23581,4149,6,22,14,31,52,3.55,27.5,fr,11335,82,486722,1,3,Active Shallow Crust,0.0,89.99303,0.0,06/22/4149 +7.39802,46.23581,8706,1,18,15,30,5,3.55,27.5,fr,11336,174,486722,1,3,Active Shallow Crust,0.0,89.99303,0.0,01/18/8706 +7.39802,46.23581,4499,12,3,19,42,27,3.55,27.5,fr,11337,89,486722,1,3,Active Shallow Crust,0.0,89.99303,0.0,12/03/4499 +7.39802,46.23581,9367,9,12,8,23,21,3.55,5.0,fr,11338,187,486723,1,2,Active Shallow Crust,240.0114,57.99818,0.0,09/12/9367 +7.39802,46.23581,9319,6,10,9,21,1,3.55,5.0,fr,11339,186,486723,1,2,Active Shallow Crust,240.0114,57.99818,0.0,06/10/9319 +7.39802,46.23581,6780,4,28,13,16,50,3.55,15.0,fr,11340,135,486724,1,1,Active Shallow Crust,240.0114,57.99818,0.0,04/28/6780 +7.39802,46.23581,1209,4,16,11,30,32,3.55,27.5,fr,11341,24,486728,1,1,Active Shallow Crust,0.0,89.99294,-90.0,04/16/1209 +7.39802,46.23581,7676,3,25,7,19,22,3.55,5.0,fr,11342,153,486729,1,1,Active Shallow Crust,128.8971,89.99303,0.0,03/25/7676 +7.39802,46.23581,2412,7,9,16,42,25,3.55,15.0,fr,11343,48,486730,1,1,Active Shallow Crust,128.8971,89.99303,0.0,07/09/2412 +7.39802,46.23581,262,3,30,16,4,56,3.65,5.0,fr,11344,5,486732,1,11,Active Shallow Crust,0.0,89.98756,0.0,03/30/0262 +7.39802,46.23581,4483,2,18,18,39,5,3.65,5.0,fr,11345,89,486732,1,11,Active Shallow Crust,0.0,89.98756,0.0,02/18/4483 +7.39802,46.23581,4354,10,13,23,34,4,3.65,5.0,fr,11346,87,486732,1,11,Active Shallow Crust,0.0,89.98756,0.0,10/13/4354 +7.39802,46.23581,7958,8,24,23,16,57,3.65,5.0,fr,11347,159,486732,1,11,Active Shallow Crust,0.0,89.98756,0.0,08/24/7958 +7.39802,46.23581,5163,4,14,17,47,16,3.65,5.0,fr,11348,103,486732,1,11,Active Shallow Crust,0.0,89.98756,0.0,04/14/5163 +7.39802,46.23581,7256,8,19,12,7,17,3.65,5.0,fr,11349,145,486732,1,11,Active Shallow Crust,0.0,89.98756,0.0,08/19/7256 +7.39802,46.23581,5260,1,14,16,50,46,3.65,5.0,fr,11350,105,486732,1,11,Active Shallow Crust,0.0,89.98756,0.0,01/14/5260 +7.39802,46.23581,2946,5,2,3,38,54,3.65,5.0,fr,11351,58,486732,1,11,Active Shallow Crust,0.0,89.98756,0.0,05/02/2946 +7.39802,46.23581,7581,9,11,17,32,4,3.65,5.0,fr,11352,151,486732,1,11,Active Shallow Crust,0.0,89.98756,0.0,09/11/7581 +7.39802,46.23581,3928,1,26,20,37,53,3.65,5.0,fr,11353,78,486732,1,11,Active Shallow Crust,0.0,89.98756,0.0,01/26/3928 +7.39802,46.23581,4778,11,8,22,30,28,3.65,5.0,fr,11354,95,486732,1,11,Active Shallow Crust,0.0,89.98756,0.0,11/08/4778 +7.39802,46.23581,5863,4,3,9,16,31,3.65,15.0,fr,11355,117,486733,1,8,Active Shallow Crust,0.0,89.98756,0.0,04/03/5863 +7.39802,46.23581,2719,6,15,9,13,34,3.65,15.0,fr,11356,54,486733,1,8,Active Shallow Crust,0.0,89.98756,0.0,06/15/2719 +7.39802,46.23581,6428,10,13,4,24,8,3.65,15.0,fr,11357,128,486733,1,8,Active Shallow Crust,0.0,89.98756,0.0,10/13/6428 +7.39802,46.23581,269,8,8,0,19,10,3.65,15.0,fr,11358,5,486733,1,8,Active Shallow Crust,0.0,89.98756,0.0,08/08/0269 +7.39802,46.23581,9345,3,13,13,9,17,3.65,15.0,fr,11359,186,486733,1,8,Active Shallow Crust,0.0,89.98756,0.0,03/13/9345 +7.39802,46.23581,3439,5,16,9,47,30,3.65,15.0,fr,11360,68,486733,1,8,Active Shallow Crust,0.0,89.98756,0.0,05/16/3439 +7.39802,46.23581,7825,7,22,4,16,35,3.65,15.0,fr,11361,156,486733,1,8,Active Shallow Crust,0.0,89.98756,0.0,07/22/7825 +7.39802,46.23581,4225,1,1,21,27,49,3.65,15.0,fr,11362,84,486733,1,8,Active Shallow Crust,0.0,89.98756,0.0,01/01/4225 +7.39802,46.23581,3618,7,30,8,26,0,3.65,27.5,fr,11363,72,486734,1,1,Active Shallow Crust,0.0,89.98756,0.0,07/30/3618 +7.39802,46.23581,8116,12,2,16,14,29,3.65,5.0,fr,11364,162,486735,1,1,Active Shallow Crust,240.0018,58.01175,0.0,12/02/8116 +7.39802,46.23581,2321,11,13,18,17,7,3.65,15.0,fr,11365,46,486736,1,1,Active Shallow Crust,240.0018,58.01175,0.0,11/13/2321 +7.39802,46.23581,3704,8,29,4,15,25,3.65,5.0,fr,11366,74,486738,1,1,Active Shallow Crust,0.0,89.98743,-90.0,08/29/3704 +7.39802,46.23581,379,8,14,0,31,37,3.65,15.0,fr,11367,7,486742,1,3,Active Shallow Crust,128.8996,89.96352,0.0,08/14/0379 +7.39802,46.23581,482,9,2,6,32,15,3.65,15.0,fr,11368,9,486742,1,3,Active Shallow Crust,128.8996,89.96352,0.0,09/02/0482 +7.39802,46.23581,8816,6,16,0,6,1,3.65,15.0,fr,11369,176,486742,1,3,Active Shallow Crust,128.8996,89.96352,0.0,06/16/8816 +7.39802,46.23581,6277,12,14,9,32,31,3.75,5.0,fr,11370,125,486744,1,10,Active Shallow Crust,0.0,89.98892,0.0,12/14/6277 +7.39802,46.23581,4368,6,7,2,48,46,3.75,5.0,fr,11371,87,486744,1,10,Active Shallow Crust,0.0,89.98892,0.0,06/07/4368 +7.39802,46.23581,4895,2,22,16,1,28,3.75,5.0,fr,11372,97,486744,1,10,Active Shallow Crust,0.0,89.98892,0.0,02/22/4895 +7.39802,46.23581,2960,3,14,22,48,0,3.75,5.0,fr,11373,59,486744,1,10,Active Shallow Crust,0.0,89.98892,0.0,03/14/2960 +7.39802,46.23581,3737,4,18,9,26,3,3.75,5.0,fr,11374,74,486744,1,10,Active Shallow Crust,0.0,89.98892,0.0,04/18/3737 +7.39802,46.23581,5414,4,17,8,57,28,3.75,5.0,fr,11375,108,486744,1,10,Active Shallow Crust,0.0,89.98892,0.0,04/17/5414 +7.39802,46.23581,8127,8,5,8,29,31,3.75,5.0,fr,11376,162,486744,1,10,Active Shallow Crust,0.0,89.98892,0.0,08/05/8127 +7.39802,46.23581,6834,1,11,10,23,28,3.75,5.0,fr,11377,136,486744,1,10,Active Shallow Crust,0.0,89.98892,0.0,01/11/6834 +7.39802,46.23581,3767,10,18,12,20,57,3.75,5.0,fr,11378,75,486744,1,10,Active Shallow Crust,0.0,89.98892,0.0,10/18/3767 +7.39802,46.23581,9222,4,16,8,35,53,3.75,5.0,fr,11379,184,486744,1,10,Active Shallow Crust,0.0,89.98892,0.0,04/16/9222 +7.39802,46.23581,8785,11,26,20,13,49,3.75,15.0,fr,11380,175,486745,1,4,Active Shallow Crust,0.0,89.98892,0.0,11/26/8785 +7.39802,46.23581,757,12,10,11,2,36,3.75,15.0,fr,11381,15,486745,1,4,Active Shallow Crust,0.0,89.98892,0.0,12/10/0757 +7.39802,46.23581,5576,11,6,6,42,50,3.75,15.0,fr,11382,111,486745,1,4,Active Shallow Crust,0.0,89.98892,0.0,11/06/5576 +7.39802,46.23581,5277,11,14,21,32,40,3.75,15.0,fr,11383,105,486745,1,4,Active Shallow Crust,0.0,89.98892,0.0,11/14/5277 +7.39802,46.23581,736,4,2,21,3,3,3.75,27.5,fr,11384,14,486746,1,1,Active Shallow Crust,0.0,89.98892,0.0,04/02/0736 +7.39802,46.23581,2436,1,29,2,28,4,3.75,5.0,fr,11385,48,486750,1,1,Active Shallow Crust,0.0,89.98879,-90.0,01/29/2436 +7.39802,46.23581,9899,3,27,11,3,15,3.85,5.0,fr,11386,197,486756,1,5,Active Shallow Crust,0.0,89.99013,0.0,03/27/9899 +7.39802,46.23581,8941,5,9,12,18,27,3.85,5.0,fr,11387,178,486756,1,5,Active Shallow Crust,0.0,89.99013,0.0,05/09/8941 +7.39802,46.23581,9040,6,28,21,42,58,3.85,5.0,fr,11388,180,486756,1,5,Active Shallow Crust,0.0,89.99013,0.0,06/28/9040 +7.39802,46.23581,3774,9,13,9,37,18,3.85,5.0,fr,11389,75,486756,1,5,Active Shallow Crust,0.0,89.99013,0.0,09/13/3774 +7.39802,46.23581,3704,9,21,5,45,41,3.85,5.0,fr,11390,74,486756,1,5,Active Shallow Crust,0.0,89.99013,0.0,09/21/3704 +7.39802,46.23581,3445,9,23,20,35,11,3.85,15.0,fr,11391,68,486757,1,1,Active Shallow Crust,0.0,89.99013,0.0,09/23/3445 +7.39802,46.23581,1344,11,20,19,55,12,3.85,5.0,fr,11392,26,486759,1,1,Active Shallow Crust,240.0108,57.99746,0.0,11/20/1344 +7.39802,46.23581,5999,1,12,4,41,47,3.85,5.0,fr,11393,119,486762,1,1,Active Shallow Crust,0.0,89.99001,-90.0,01/12/5999 +7.39802,46.23581,9836,12,2,22,32,58,3.85,5.0,fr,11394,196,486765,1,2,Active Shallow Crust,128.8961,89.99506,0.0,12/02/9836 +7.39802,46.23581,3072,9,3,12,47,59,3.85,5.0,fr,11395,61,486765,1,2,Active Shallow Crust,128.8961,89.99506,0.0,09/03/3072 +7.39802,46.23581,5309,8,13,19,27,52,3.85,15.0,fr,11396,106,486766,1,1,Active Shallow Crust,128.8961,89.99506,0.0,08/13/5309 +7.39802,46.23581,2667,2,21,19,25,52,3.95,5.0,fr,11397,53,486768,1,6,Active Shallow Crust,0.0,89.9912,0.0,02/21/2667 +7.39802,46.23581,6910,11,1,8,46,52,3.95,5.0,fr,11398,138,486768,1,6,Active Shallow Crust,0.0,89.9912,0.0,11/01/6910 +7.39802,46.23581,3963,1,28,8,59,54,3.95,5.0,fr,11399,79,486768,1,6,Active Shallow Crust,0.0,89.9912,0.0,01/28/3963 +7.39802,46.23581,4178,1,20,6,27,35,3.95,5.0,fr,11400,83,486768,1,6,Active Shallow Crust,0.0,89.9912,0.0,01/20/4178 +7.39802,46.23581,9312,12,29,6,33,20,3.95,5.0,fr,11401,186,486768,1,6,Active Shallow Crust,0.0,89.9912,0.0,12/29/9312 +7.39802,46.23581,1679,6,4,0,44,19,3.95,5.0,fr,11402,33,486768,1,6,Active Shallow Crust,0.0,89.9912,0.0,06/04/1679 +7.39802,46.23581,6298,9,18,17,47,36,3.95,15.0,fr,11403,125,486769,1,2,Active Shallow Crust,0.0,89.9912,0.0,09/18/6298 +7.39802,46.23581,4999,7,25,11,8,19,3.95,15.0,fr,11404,99,486769,1,2,Active Shallow Crust,0.0,89.9912,0.0,07/25/4999 +7.39802,46.23581,6116,5,13,13,20,18,3.95,27.5,fr,11405,122,486770,1,2,Active Shallow Crust,0.0,89.9912,0.0,05/13/6116 +7.39802,46.23581,7962,11,6,14,33,29,3.95,27.5,fr,11406,159,486770,1,2,Active Shallow Crust,0.0,89.9912,0.0,11/06/7962 +7.39802,46.23581,9580,2,25,2,9,15,3.95,5.0,fr,11407,191,486771,1,1,Active Shallow Crust,240.0194,58.00484,0.0,02/25/9580 +7.39802,46.23581,2698,1,6,2,41,3,3.95,5.0,fr,11408,53,486777,1,2,Active Shallow Crust,128.9005,89.9956,0.0,01/06/2698 +7.39802,46.23581,9290,2,15,18,6,10,3.95,5.0,fr,11409,185,486777,1,2,Active Shallow Crust,128.9005,89.9956,0.0,02/15/9290 +7.39802,46.23581,6060,1,18,8,0,12,3.95,15.0,fr,11410,121,486778,1,1,Active Shallow Crust,128.9005,89.9956,0.0,01/18/6060 +7.39802,46.23581,6385,3,17,17,3,21,4.05,5.0,fr,11411,127,486780,1,7,Active Shallow Crust,0.0,89.98824,0.0,03/17/6385 +7.39802,46.23581,1517,6,14,0,24,18,4.05,5.0,fr,11412,30,486780,1,7,Active Shallow Crust,0.0,89.98824,0.0,06/14/1517 +7.39802,46.23581,3360,8,4,16,53,28,4.05,5.0,fr,11413,67,486780,1,7,Active Shallow Crust,0.0,89.98824,0.0,08/04/3360 +7.39802,46.23581,3720,3,29,21,17,10,4.05,5.0,fr,11414,74,486780,1,7,Active Shallow Crust,0.0,89.98824,0.0,03/29/3720 +7.39802,46.23581,7452,10,1,11,7,49,4.05,5.0,fr,11415,149,486780,1,7,Active Shallow Crust,0.0,89.98824,0.0,10/01/7452 +7.39802,46.23581,3015,9,8,22,49,56,4.05,5.0,fr,11416,60,486780,1,7,Active Shallow Crust,0.0,89.98824,0.0,09/08/3015 +7.39802,46.23581,4317,10,11,17,39,51,4.05,5.0,fr,11417,86,486780,1,7,Active Shallow Crust,0.0,89.98824,0.0,10/11/4317 +7.39802,46.23581,2324,5,13,1,49,8,4.05,15.0,fr,11418,46,486781,1,1,Active Shallow Crust,0.0,89.98824,0.0,05/13/2324 +7.39802,46.23581,4236,7,17,23,7,34,4.05,27.5,fr,11419,84,486782,1,2,Active Shallow Crust,0.0,89.98824,0.0,07/17/4236 +7.39802,46.23581,2445,8,21,6,26,29,4.05,27.5,fr,11420,48,486782,1,2,Active Shallow Crust,0.0,89.98824,0.0,08/21/2445 +7.39802,46.23581,6713,3,14,3,49,20,4.05,5.0,fr,11421,134,486783,1,2,Active Shallow Crust,240.0061,58.00548,0.0,03/14/6713 +7.39802,46.23581,733,2,25,22,2,0,4.05,5.0,fr,11422,14,486783,1,2,Active Shallow Crust,240.0061,58.00548,0.0,02/25/0733 +7.39802,46.23581,2038,2,17,3,54,3,4.05,5.0,fr,11423,40,486786,1,1,Active Shallow Crust,0.0,89.9881,-90.0,02/17/2038 +7.39802,46.23581,3275,5,20,20,3,26,4.05,15.0,fr,11424,65,486790,1,1,Active Shallow Crust,128.8902,89.99412,0.0,05/20/3275 +7.39802,46.23581,5096,1,24,10,47,48,4.15,5.0,fr,11425,101,486792,1,8,Active Shallow Crust,0.0,89.98951,0.0,01/24/5096 +7.39802,46.23581,948,2,24,23,29,46,4.15,5.0,fr,11426,18,486792,1,8,Active Shallow Crust,0.0,89.98951,0.0,02/24/0948 +7.39802,46.23581,998,9,1,3,30,16,4.15,5.0,fr,11427,19,486792,1,8,Active Shallow Crust,0.0,89.98951,0.0,09/01/0998 +7.39802,46.23581,6036,7,8,22,2,53,4.15,5.0,fr,11428,120,486792,1,8,Active Shallow Crust,0.0,89.98951,0.0,07/08/6036 +7.39802,46.23581,8855,6,27,14,22,42,4.15,5.0,fr,11429,177,486792,1,8,Active Shallow Crust,0.0,89.98951,0.0,06/27/8855 +7.39802,46.23581,7833,9,28,1,9,46,4.15,5.0,fr,11430,156,486792,1,8,Active Shallow Crust,0.0,89.98951,0.0,09/28/7833 +7.39802,46.23581,1444,7,19,1,22,12,4.15,5.0,fr,11431,28,486792,1,8,Active Shallow Crust,0.0,89.98951,0.0,07/19/1444 +7.39802,46.23581,2810,11,30,8,9,40,4.15,5.0,fr,11432,56,486792,1,8,Active Shallow Crust,0.0,89.98951,0.0,11/30/2810 +7.39802,46.23581,5970,5,11,12,8,51,4.15,15.0,fr,11433,119,486793,1,2,Active Shallow Crust,0.0,89.98951,0.0,05/11/5970 +7.39802,46.23581,6529,9,23,14,36,39,4.15,15.0,fr,11434,130,486793,1,2,Active Shallow Crust,0.0,89.98951,0.0,09/23/6529 +7.39802,46.23581,2043,6,10,23,40,26,4.15,27.5,fr,11435,40,486794,1,1,Active Shallow Crust,0.0,89.98951,0.0,06/10/2043 +7.39802,46.23581,1285,6,27,18,40,41,4.15,5.0,fr,11436,25,486795,1,1,Active Shallow Crust,240.0084,57.99729,0.0,06/27/1285 +7.39802,46.23581,9751,11,1,6,20,31,4.15,5.0,fr,11437,195,486798,1,1,Active Shallow Crust,0.0,89.98939,-90.0,11/01/9751 +7.39802,46.23581,8130,4,5,16,31,42,4.15,5.0,fr,11438,162,486801,1,2,Active Shallow Crust,128.8978,89.99301,0.0,04/05/8130 +7.39802,46.23581,5703,12,16,15,7,9,4.15,5.0,fr,11439,114,486801,1,2,Active Shallow Crust,128.8978,89.99301,0.0,12/16/5703 +7.39802,46.23581,4422,1,20,3,33,54,4.25,5.0,fr,11440,88,486804,1,4,Active Shallow Crust,0.0,89.99065,0.0,01/20/4422 +7.39802,46.23581,891,5,20,3,37,36,4.25,5.0,fr,11441,17,486804,1,4,Active Shallow Crust,0.0,89.99065,0.0,05/20/0891 +7.39802,46.23581,209,11,28,7,17,6,4.25,5.0,fr,11442,4,486804,1,4,Active Shallow Crust,0.0,89.99065,0.0,11/28/0209 +7.39802,46.23581,3165,9,5,19,30,10,4.25,5.0,fr,11443,63,486804,1,4,Active Shallow Crust,0.0,89.99065,0.0,09/05/3165 +7.39802,46.23581,4369,8,16,10,0,40,4.25,15.0,fr,11444,87,486805,1,2,Active Shallow Crust,0.0,89.99065,0.0,08/16/4369 +7.39802,46.23581,6833,8,3,8,56,47,4.25,15.0,fr,11445,136,486805,1,2,Active Shallow Crust,0.0,89.99065,0.0,08/03/6833 +7.39802,46.23581,7914,5,30,22,19,56,4.25,5.0,fr,11446,158,486807,1,1,Active Shallow Crust,240.0076,57.9938,0.0,05/30/7914 +7.39802,46.23581,1402,12,23,13,15,14,4.25,15.0,fr,11447,28,486811,1,1,Active Shallow Crust,0.0,89.99055,-90.0,12/23/1402 +7.39802,46.23581,8034,9,2,9,1,0,4.35,5.0,fr,11448,160,486816,1,1,Active Shallow Crust,0.0,89.98889,0.0,09/02/8034 +7.39802,46.23581,6279,3,17,15,57,58,4.35,15.0,fr,11449,125,486817,1,3,Active Shallow Crust,0.0,89.98889,0.0,03/17/6279 +7.39802,46.23581,8664,3,22,13,24,16,4.35,15.0,fr,11450,173,486817,1,3,Active Shallow Crust,0.0,89.98889,0.0,03/22/8664 +7.39802,46.23581,1561,1,28,20,41,1,4.35,15.0,fr,11451,31,486817,1,3,Active Shallow Crust,0.0,89.98889,0.0,01/28/1561 +7.39802,46.23581,9267,9,1,23,19,51,4.35,15.0,fr,11452,185,486820,1,1,Active Shallow Crust,240.0081,57.99562,0.0,09/01/9267 +7.39802,46.23581,7658,6,16,19,56,56,4.45,5.0,fr,11453,153,486828,1,5,Active Shallow Crust,0.0,89.9901,0.0,06/16/7658 +7.39802,46.23581,1762,2,27,9,35,39,4.45,5.0,fr,11454,35,486828,1,5,Active Shallow Crust,0.0,89.9901,0.0,02/27/1762 +7.39802,46.23581,298,8,23,21,43,28,4.45,5.0,fr,11455,5,486828,1,5,Active Shallow Crust,0.0,89.9901,0.0,08/23/0298 +7.39802,46.23581,6593,12,24,20,14,59,4.45,5.0,fr,11456,131,486828,1,5,Active Shallow Crust,0.0,89.9901,0.0,12/24/6593 +7.39802,46.23581,6383,9,30,18,11,57,4.45,5.0,fr,11457,127,486828,1,5,Active Shallow Crust,0.0,89.9901,0.0,09/30/6383 +7.39802,46.23581,6151,9,2,7,15,47,4.45,15.0,fr,11458,123,486829,1,2,Active Shallow Crust,0.0,89.9901,0.0,09/02/6151 +7.39802,46.23581,5432,2,20,5,58,0,4.45,15.0,fr,11459,108,486829,1,2,Active Shallow Crust,0.0,89.9901,0.0,02/20/5432 +7.39802,46.23581,3049,2,7,19,2,59,4.45,15.0,fr,11460,60,486832,1,2,Active Shallow Crust,240.0052,57.99435,0.0,02/07/3049 +7.39802,46.23581,1805,7,11,0,38,38,4.45,15.0,fr,11461,36,486832,1,2,Active Shallow Crust,240.0052,57.99435,0.0,07/11/1805 +7.39802,46.23581,5787,11,6,15,55,40,4.45,5.0,fr,11462,115,486834,1,1,Active Shallow Crust,0.0,89.98998,-90.0,11/06/5787 +7.39802,46.23581,3508,4,2,0,59,4,4.45,15.0,fr,11463,70,486835,1,1,Active Shallow Crust,0.0,89.98998,-90.0,04/02/3508 +7.39802,46.23581,1662,1,14,2,4,42,4.45,5.0,fr,11464,33,486837,1,1,Active Shallow Crust,128.893,89.99258,0.0,01/14/1662 +7.39802,46.23581,4607,8,4,7,41,46,4.55,5.0,fr,11465,92,486840,1,2,Active Shallow Crust,0.0,89.98897,0.0,08/04/4607 +7.39802,46.23581,5144,2,19,7,52,48,4.55,5.0,fr,11466,102,486840,1,2,Active Shallow Crust,0.0,89.98897,0.0,02/19/5144 +7.39802,46.23581,9168,3,25,1,16,57,4.55,27.5,fr,11467,183,486842,1,1,Active Shallow Crust,0.0,89.98897,0.0,03/25/9168 +7.39802,46.23581,1385,5,22,11,57,16,4.55,27.5,fr,11468,27,486845,1,1,Active Shallow Crust,240.0094,57.99733,0.0,05/22/1385 +7.39802,46.23581,9475,3,29,15,20,49,4.55,5.0,fr,11469,189,486846,1,1,Active Shallow Crust,0.0,89.99107,-90.0,03/29/9475 +7.39802,46.23581,616,7,28,10,4,16,4.65,5.0,fr,11470,12,486852,1,4,Active Shallow Crust,0.0,89.99017,0.0,07/28/0616 +7.39802,46.23581,2910,7,2,16,16,29,4.65,5.0,fr,11471,58,486852,1,4,Active Shallow Crust,0.0,89.99017,0.0,07/02/2910 +7.39802,46.23581,3103,2,2,13,11,38,4.65,5.0,fr,11472,62,486852,1,4,Active Shallow Crust,0.0,89.99017,0.0,02/02/3103 +7.39802,46.23581,2134,7,13,4,14,58,4.65,5.0,fr,11473,42,486852,1,4,Active Shallow Crust,0.0,89.99017,0.0,07/13/2134 +7.39802,46.23581,5852,11,13,0,24,52,4.65,27.5,fr,11474,117,486854,1,1,Active Shallow Crust,0.0,89.99017,0.0,11/13/5852 +7.39802,46.23581,5794,6,3,7,35,10,4.75,5.0,fr,11475,115,486864,1,1,Active Shallow Crust,0.0,89.98949,0.0,06/03/5794 +7.39802,46.23581,9522,10,21,8,1,53,4.75,15.0,fr,11476,190,486865,1,1,Active Shallow Crust,0.0,89.98949,0.0,10/21/9522 +7.39802,46.23581,931,9,28,1,23,42,4.75,27.5,fr,11477,18,486866,1,1,Active Shallow Crust,0.0,89.98949,0.0,09/28/0931 +7.39802,46.23581,5878,9,6,12,48,34,4.85,5.0,fr,11478,117,486876,1,1,Active Shallow Crust,0.0,89.99063,0.0,09/06/5878 +7.39802,46.23581,5150,2,21,10,17,19,4.85,27.5,fr,11479,102,486878,1,1,Active Shallow Crust,0.0,89.99063,0.0,02/21/5150 +7.39802,46.23581,8067,7,28,15,18,11,4.85,5.0,fr,11480,161,486882,1,1,Active Shallow Crust,0.0,89.99052,-90.0,07/28/8067 +7.39802,46.23581,9688,5,17,3,30,39,4.85,15.0,fr,11481,193,486886,1,1,Active Shallow Crust,128.893,89.98902,0.0,05/17/9688 +7.39802,46.23581,1141,6,29,21,34,5,4.95,5.0,fr,11482,22,486897,1,1,Active Shallow Crust,128.8903,89.98981,0.0,06/29/1141 +7.39802,46.23581,2344,1,1,6,36,2,5.05,5.0,fr,11483,46,486900,1,2,Active Shallow Crust,0.0,89.99007,0.0,01/01/2344 +7.39802,46.23581,1411,7,7,20,13,5,5.05,5.0,fr,11484,28,486900,1,2,Active Shallow Crust,0.0,89.99007,0.0,07/07/1411 +7.39802,46.23581,1580,6,30,16,18,55,5.05,15.0,fr,11485,31,486904,1,1,Active Shallow Crust,240.0218,57.9976,0.0,06/30/1580 +7.39802,46.23581,6783,4,26,6,45,40,5.05,27.5,fr,11486,135,486905,1,1,Active Shallow Crust,240.0218,57.9976,0.0,04/26/6783 +7.39802,46.23581,6471,1,30,22,50,48,5.15,5.0,fr,11487,129,486912,1,1,Active Shallow Crust,0.0,89.99005,0.0,01/30/6471 +7.39802,46.23581,5317,9,7,20,0,41,5.25,15.0,fr,11488,106,486931,1,1,Active Shallow Crust,0.0,89.99003,-90.0,09/07/5317 +7.398022,46.23581,6176,4,13,1,23,36,6.15,6.011322,fr,11489,123,487032,1,1,Active Shallow Crust,0.0,89.99003,0.0,04/13/6176 +7.397622,46.23629,2051,2,26,17,36,21,6.15,5.09789,fr,11490,41,487035,1,1,Active Shallow Crust,240.0645,57.99996,0.0,02/26/2051 +1.54728,41.30803,4755,8,22,8,23,1,3.55,5.0,fr,11491,95,487200,1,1,Active Shallow Crust,0.0,89.99053,0.0,08/22/4755 +1.54728,41.30803,6784,2,9,8,16,20,3.55,27.5,fr,11492,135,487202,1,1,Active Shallow Crust,0.0,89.99053,0.0,02/09/6784 +1.54728,41.30803,4621,5,18,10,56,8,3.55,5.0,fr,11493,92,487206,1,1,Active Shallow Crust,0.0,89.99043,-90.0,05/18/4621 +1.54728,41.30803,5710,11,1,3,16,37,3.55,5.0,fr,11494,114,487209,1,1,Active Shallow Crust,128.8964,89.99337,0.0,11/01/5710 +1.54728,41.30803,2824,6,11,3,50,37,3.65,5.0,fr,11495,56,487212,1,1,Active Shallow Crust,0.0,89.98988,0.0,06/11/2824 +1.54728,41.30803,3909,11,22,22,44,16,3.65,15.0,fr,11496,78,487213,1,1,Active Shallow Crust,0.0,89.98988,0.0,11/22/3909 +1.54728,41.30803,8973,8,22,4,43,51,3.65,27.5,fr,11497,179,487214,1,1,Active Shallow Crust,0.0,89.98988,0.0,08/22/8973 +1.54728,41.30803,3273,11,25,16,55,2,3.65,5.0,fr,11498,65,487218,1,1,Active Shallow Crust,0.0,89.98975,-90.0,11/25/3273 +1.54728,41.30803,3490,1,11,4,15,34,3.75,15.0,fr,11499,69,487225,1,1,Active Shallow Crust,0.0,89.98947,0.0,01/11/3490 +1.54728,41.30803,6601,1,10,3,0,57,3.85,5.0,fr,11500,132,487236,1,1,Active Shallow Crust,0.0,89.99062,0.0,01/10/6601 +1.54728,41.30803,5139,12,17,2,54,59,3.85,15.0,fr,11501,102,487240,1,1,Active Shallow Crust,240.0103,57.99754,0.0,12/17/5139 +1.54728,41.30803,5367,4,27,0,4,18,3.95,15.0,fr,11502,107,487249,1,1,Active Shallow Crust,0.0,89.99044,0.0,04/27/5367 +1.54728,41.30803,8335,5,17,19,45,27,4.05,5.0,fr,11503,166,487260,1,1,Active Shallow Crust,0.0,89.99042,0.0,05/17/8335 +1.54728,41.30803,1968,9,12,2,44,19,4.05,27.5,fr,11504,39,487265,1,1,Active Shallow Crust,240.0053,58.00568,0.0,09/12/1968 +1.54728,41.30803,1163,11,30,7,2,4,4.05,27.5,fr,11505,23,487271,1,1,Active Shallow Crust,128.8909,89.99414,0.0,11/30/1163 +1.54728,41.30803,703,7,28,22,58,23,4.15,15.0,fr,11506,14,487282,1,1,Active Shallow Crust,128.8984,89.99383,0.0,07/28/0703 +1.54728,41.30803,1810,7,10,5,55,9,4.25,5.0,fr,11507,36,487284,1,1,Active Shallow Crust,0.0,89.98985,0.0,07/10/1810 +1.54728,41.30803,5147,8,12,21,27,30,4.35,15.0,fr,11508,102,487303,1,1,Active Shallow Crust,0.0,89.99008,-90.0,08/12/5147 +1.54728,41.30803,6940,5,6,1,22,45,5.25,5.0,fr,11509,138,487404,1,1,Active Shallow Crust,0.0,89.9901,0.0,05/06/6940 +-4.08148,47.55979,1238,5,21,0,1,47,3.55,5.0,fr,11510,24,487680,1,1,Active Shallow Crust,0.0,89.99319,0.0,05/21/1238 +-4.08148,47.55979,7110,1,27,19,28,21,3.55,15.0,fr,11511,142,487681,1,1,Active Shallow Crust,0.0,89.99319,0.0,01/27/7110 +-4.08148,47.55979,9142,9,6,3,59,22,3.65,5.0,fr,11512,182,487692,1,1,Active Shallow Crust,0.0,89.98787,0.0,09/06/9142 +-4.08148,47.55979,400,6,6,8,11,50,3.65,5.0,fr,11513,7,487698,1,1,Active Shallow Crust,0.0,89.98773,-90.0,06/06/0400 +-4.08148,47.55979,6128,9,29,11,8,40,3.95,5.0,fr,11514,122,487728,1,1,Active Shallow Crust,0.0,89.99141,0.0,09/29/6128 +-4.08148,47.55979,5695,3,20,18,37,22,3.95,15.0,fr,11515,113,487735,1,1,Active Shallow Crust,0.0,89.99131,-90.0,03/20/5695 +4.88732,46.05004,5203,5,26,13,31,31,3.55,5.0,fr,11516,104,488160,1,1,Active Shallow Crust,0.0,89.993,0.0,05/26/5203 +4.88732,46.05004,2159,2,8,17,9,8,3.65,15.0,fr,11517,43,488173,1,1,Active Shallow Crust,0.0,89.98753,0.0,02/08/2159 +4.88732,46.05004,4607,10,5,16,49,24,3.75,5.0,fr,11518,92,488184,1,1,Active Shallow Crust,0.0,89.98888,0.0,10/05/4607 +4.88732,46.05004,130,5,6,22,15,28,3.75,15.0,fr,11519,2,488185,1,2,Active Shallow Crust,0.0,89.98888,0.0,05/06/0130 +4.88732,46.05004,7089,8,31,17,44,46,3.75,15.0,fr,11520,141,488185,1,2,Active Shallow Crust,0.0,89.98888,0.0,08/31/7089 +4.88732,46.05004,8312,11,2,16,17,24,3.85,15.0,fr,11521,166,488197,1,1,Active Shallow Crust,0.0,89.99009,0.0,11/02/8312 +4.88732,46.05004,1276,2,17,8,13,13,4.05,5.0,fr,11522,25,488220,1,1,Active Shallow Crust,0.0,89.98819,0.0,02/17/1276 +4.88732,46.05004,767,8,8,11,16,3,4.05,15.0,fr,11523,15,488221,1,1,Active Shallow Crust,0.0,89.98819,0.0,08/08/0767 +4.88732,46.05004,7291,4,22,23,27,55,4.15,5.0,fr,11524,145,488232,1,1,Active Shallow Crust,0.0,89.98948,0.0,04/22/7291 +4.88732,46.05004,3884,10,29,18,44,41,4.55,27.5,fr,11525,77,488282,1,1,Active Shallow Crust,0.0,89.98893,0.0,10/29/3884 +4.88732,46.05004,6425,10,9,14,19,4,5.25,5.0,fr,11526,128,488364,1,1,Active Shallow Crust,0.0,89.99011,0.0,10/09/6425 +-0.29236,47.3484,2934,1,21,17,59,13,3.55,5.0,fr,11527,58,488640,1,2,Active Shallow Crust,0.0,89.99018,0.0,01/21/2934 +-0.29236,47.3484,5421,5,8,16,20,0,3.55,5.0,fr,11528,108,488640,1,2,Active Shallow Crust,0.0,89.99018,0.0,05/08/5421 +-0.29236,47.3484,6270,1,23,13,40,29,3.55,15.0,fr,11529,125,488641,1,1,Active Shallow Crust,0.0,89.99018,0.0,01/23/6270 +-0.29236,47.3484,3234,7,11,9,8,53,3.55,5.0,fr,11530,64,488643,1,1,Active Shallow Crust,240.0122,57.99818,0.0,07/11/3234 +-0.29236,47.3484,5792,8,10,19,45,26,3.55,5.0,fr,11531,115,488646,1,1,Active Shallow Crust,0.0,89.99007,-90.0,08/10/5792 +-0.29236,47.3484,7174,3,17,21,33,53,3.55,15.0,fr,11532,143,488647,1,2,Active Shallow Crust,0.0,89.99007,-90.0,03/17/7174 +-0.29236,47.3484,9343,3,23,1,6,20,3.55,15.0,fr,11533,186,488647,1,2,Active Shallow Crust,0.0,89.99007,-90.0,03/23/9343 +-0.29236,47.3484,7608,7,20,15,5,26,3.75,27.5,fr,11534,152,488666,1,1,Active Shallow Crust,0.0,89.99017,0.0,07/20/7608 +-0.29236,47.3484,5901,4,13,5,4,38,3.75,15.0,fr,11535,118,488668,1,1,Active Shallow Crust,240.0084,58.01761,0.0,04/13/5901 +-0.29236,47.3484,8553,3,22,4,13,10,3.95,15.0,fr,11536,171,488692,1,1,Active Shallow Crust,240.0199,58.00502,0.0,03/22/8553 +-0.29236,47.3484,469,8,9,0,28,59,3.95,5.0,fr,11537,9,488694,1,1,Active Shallow Crust,0.0,89.98991,-90.0,08/09/0469 +-0.29236,47.3484,4943,3,15,6,3,51,4.05,5.0,fr,11538,98,488700,1,1,Active Shallow Crust,0.0,89.98991,0.0,03/15/4943 +-0.29236,47.3484,6174,7,31,6,11,41,4.05,15.0,fr,11539,123,488701,1,2,Active Shallow Crust,0.0,89.98991,0.0,07/31/6174 +-0.29236,47.3484,2349,2,13,12,46,44,4.05,15.0,fr,11540,46,488701,1,2,Active Shallow Crust,0.0,89.98991,0.0,02/13/2349 +-0.29236,47.3484,1940,11,13,4,53,0,4.15,5.0,fr,11541,38,488712,1,1,Active Shallow Crust,0.0,89.98994,0.0,11/13/1940 +-0.29236,47.3484,5246,11,13,19,9,36,4.25,5.0,fr,11542,104,488724,1,2,Active Shallow Crust,0.0,89.99008,0.0,11/13/5246 +-0.29236,47.3484,79,1,25,17,49,49,4.25,5.0,fr,11543,1,488724,1,2,Active Shallow Crust,0.0,89.99008,0.0,01/25/0079 +-0.29236,47.3484,6547,12,25,22,3,37,4.35,5.0,fr,11544,130,488736,1,1,Active Shallow Crust,0.0,89.98997,0.0,12/25/6547 +-0.29236,47.3484,2994,6,21,7,0,26,4.45,5.0,fr,11545,59,488748,1,1,Active Shallow Crust,0.0,89.99,0.0,06/21/2994 +-0.29236,47.3484,6108,8,4,14,47,3,4.55,15.0,fr,11546,122,488764,1,1,Active Shallow Crust,240.0096,57.99741,0.0,08/04/6108 +-0.29236,47.3484,2405,1,22,15,47,1,4.55,15.0,fr,11547,48,488770,1,1,Active Shallow Crust,128.8936,89.98579,0.0,01/22/2405 +-0.29236,47.3484,7988,10,10,8,37,1,4.95,5.0,fr,11548,159,488808,1,2,Active Shallow Crust,0.0,89.99003,0.0,10/10/7988 +-0.29236,47.3484,6534,12,15,15,8,49,4.95,5.0,fr,11549,130,488808,1,2,Active Shallow Crust,0.0,89.99003,0.0,12/15/6534 +-0.29236,47.3484,3816,9,21,5,20,12,4.95,15.0,fr,11550,76,488809,1,1,Active Shallow Crust,0.0,89.99003,0.0,09/21/3816 +-0.29236,47.3484,6649,3,28,10,24,44,5.35,5.0,fr,11551,132,488856,1,1,Active Shallow Crust,0.0,89.99,0.0,03/28/6649 +6.74829,48.34619,8042,3,10,12,39,29,3.55,5.0,fr,11552,160,489120,1,2,Active Shallow Crust,0.0,89.9933,0.0,03/10/8042 +6.74829,48.34619,7556,4,21,1,12,59,3.55,5.0,fr,11553,151,489120,1,2,Active Shallow Crust,0.0,89.9933,0.0,04/21/7556 +6.74829,48.34619,6858,11,8,16,55,31,3.75,15.0,fr,11554,137,489154,1,1,Active Shallow Crust,128.8974,89.96698,0.0,11/08/6858 +6.74829,48.34619,739,1,31,1,21,32,3.85,5.0,fr,11555,14,489162,1,1,Active Shallow Crust,0.0,89.9904,-90.0,01/31/0739 +6.74829,48.34619,1437,9,10,12,42,20,4.25,5.0,fr,11556,28,489207,1,1,Active Shallow Crust,240.0081,57.99435,0.0,09/10/1437 +6.74829,48.34619,9618,11,21,18,23,51,5.55,5.0,fr,11557,192,489369,1,1,Active Shallow Crust,128.8748,89.98972,0.0,11/21/9618 +6.74829,48.34619,9836,3,17,0,35,4,5.95,15.0,fr,11558,196,489409,1,1,Active Shallow Crust,0.0,89.98985,0.0,03/17/9836 +7.74449,46.14447,7503,10,5,4,49,53,3.55,5.0,fr,11559,150,489600,1,3,Active Shallow Crust,0.0,89.99301,0.0,10/05/7503 +7.74449,46.14447,5383,4,13,22,38,45,3.55,5.0,fr,11560,107,489600,1,3,Active Shallow Crust,0.0,89.99301,0.0,04/13/5383 +7.74449,46.14447,297,1,21,15,26,20,3.55,5.0,fr,11561,5,489600,1,3,Active Shallow Crust,0.0,89.99301,0.0,01/21/0297 +7.74449,46.14447,9508,4,21,5,35,13,3.55,27.5,fr,11562,190,489602,1,1,Active Shallow Crust,0.0,89.99301,0.0,04/21/9508 +7.74449,46.14447,8641,1,28,13,41,1,3.55,5.0,fr,11563,172,489603,1,1,Active Shallow Crust,240.0125,57.99785,0.0,01/28/8641 +7.74449,46.14447,6311,5,19,7,10,55,3.55,15.0,fr,11564,126,489604,1,2,Active Shallow Crust,240.0125,57.99785,0.0,05/19/6311 +7.74449,46.14447,7101,5,12,17,28,24,3.55,15.0,fr,11565,142,489604,1,2,Active Shallow Crust,240.0125,57.99785,0.0,05/12/7101 +7.74449,46.14447,1989,11,12,4,9,54,3.55,15.0,fr,11566,39,489607,1,1,Active Shallow Crust,0.0,89.99294,-90.0,11/12/1989 +7.74449,46.14447,664,7,25,10,37,6,3.55,5.0,fr,11567,13,489609,1,1,Active Shallow Crust,128.8966,89.99301,0.0,07/25/0664 +7.74449,46.14447,4060,8,21,12,16,18,3.55,27.5,fr,11568,81,489611,1,1,Active Shallow Crust,128.8966,89.99301,0.0,08/21/4060 +7.74449,46.14447,2364,4,28,8,44,10,3.65,5.0,fr,11569,47,489612,1,7,Active Shallow Crust,0.0,89.98755,0.0,04/28/2364 +7.74449,46.14447,3809,7,2,14,35,2,3.65,5.0,fr,11570,76,489612,1,7,Active Shallow Crust,0.0,89.98755,0.0,07/02/3809 +7.74449,46.14447,9629,4,21,12,11,17,3.65,5.0,fr,11571,192,489612,1,7,Active Shallow Crust,0.0,89.98755,0.0,04/21/9629 +7.74449,46.14447,3809,3,9,22,19,45,3.65,5.0,fr,11572,76,489612,1,7,Active Shallow Crust,0.0,89.98755,0.0,03/09/3809 +7.74449,46.14447,5140,6,30,22,33,35,3.65,5.0,fr,11573,102,489612,1,7,Active Shallow Crust,0.0,89.98755,0.0,06/30/5140 +7.74449,46.14447,5874,4,24,2,59,40,3.65,5.0,fr,11574,117,489612,1,7,Active Shallow Crust,0.0,89.98755,0.0,04/24/5874 +7.74449,46.14447,4205,3,22,2,55,19,3.65,5.0,fr,11575,84,489612,1,7,Active Shallow Crust,0.0,89.98755,0.0,03/22/4205 +7.74449,46.14447,4728,9,25,14,35,48,3.65,15.0,fr,11576,94,489613,1,1,Active Shallow Crust,0.0,89.98755,0.0,09/25/4728 +7.74449,46.14447,7981,5,23,17,25,4,3.65,27.5,fr,11577,159,489614,1,3,Active Shallow Crust,0.0,89.98755,0.0,05/23/7981 +7.74449,46.14447,344,7,2,19,43,1,3.65,27.5,fr,11578,6,489614,1,3,Active Shallow Crust,0.0,89.98755,0.0,07/02/0344 +7.74449,46.14447,5381,12,30,8,58,28,3.65,27.5,fr,11579,107,489614,1,3,Active Shallow Crust,0.0,89.98755,0.0,12/30/5381 +7.74449,46.14447,5396,6,1,15,46,45,3.65,5.0,fr,11580,107,489615,1,4,Active Shallow Crust,240.001,58.01293,0.0,06/01/5396 +7.74449,46.14447,2547,10,14,19,19,44,3.65,5.0,fr,11581,50,489615,1,4,Active Shallow Crust,240.001,58.01293,0.0,10/14/2547 +7.74449,46.14447,8195,5,13,23,30,39,3.65,5.0,fr,11582,163,489615,1,4,Active Shallow Crust,240.001,58.01293,0.0,05/13/8195 +7.74449,46.14447,1180,7,3,16,37,26,3.65,5.0,fr,11583,23,489615,1,4,Active Shallow Crust,240.001,58.01293,0.0,07/03/1180 +7.74449,46.14447,5342,11,27,12,10,9,3.65,5.0,fr,11584,106,489618,1,2,Active Shallow Crust,0.0,89.9874,-90.0,11/27/5342 +7.74449,46.14447,1801,6,20,11,3,51,3.65,5.0,fr,11585,36,489618,1,2,Active Shallow Crust,0.0,89.9874,-90.0,06/20/1801 +7.74449,46.14447,2722,10,25,0,16,40,3.65,5.0,fr,11586,54,489621,1,1,Active Shallow Crust,128.8999,89.96352,0.0,10/25/2722 +7.74449,46.14447,9810,2,5,5,45,52,3.75,5.0,fr,11587,196,489624,1,5,Active Shallow Crust,0.0,89.9889,0.0,02/05/9810 +7.74449,46.14447,2688,3,2,5,2,8,3.75,5.0,fr,11588,53,489624,1,5,Active Shallow Crust,0.0,89.9889,0.0,03/02/2688 +7.74449,46.14447,7069,2,26,15,39,32,3.75,5.0,fr,11589,141,489624,1,5,Active Shallow Crust,0.0,89.9889,0.0,02/26/7069 +7.74449,46.14447,3712,12,21,22,33,17,3.75,5.0,fr,11590,74,489624,1,5,Active Shallow Crust,0.0,89.9889,0.0,12/21/3712 +7.74449,46.14447,5452,3,29,13,23,38,3.75,5.0,fr,11591,109,489624,1,5,Active Shallow Crust,0.0,89.9889,0.0,03/29/5452 +7.74449,46.14447,3670,1,18,6,47,48,3.75,15.0,fr,11592,73,489625,1,1,Active Shallow Crust,0.0,89.9889,0.0,01/18/3670 +7.74449,46.14447,3288,8,9,2,14,56,3.75,27.5,fr,11593,65,489626,1,1,Active Shallow Crust,0.0,89.9889,0.0,08/09/3288 +7.74449,46.14447,5227,6,22,2,37,2,3.75,5.0,fr,11594,104,489627,1,1,Active Shallow Crust,240.0073,58.01751,0.0,06/22/5227 +7.74449,46.14447,9414,2,28,14,56,13,3.75,15.0,fr,11595,188,489634,1,1,Active Shallow Crust,128.8973,89.9669,0.0,02/28/9414 +7.74449,46.14447,8645,8,28,6,1,10,3.85,5.0,fr,11596,172,489636,1,4,Active Shallow Crust,0.0,89.9901,0.0,08/28/8645 +7.74449,46.14447,3063,6,12,3,29,54,3.85,5.0,fr,11597,61,489636,1,4,Active Shallow Crust,0.0,89.9901,0.0,06/12/3063 +7.74449,46.14447,7107,7,5,5,48,44,3.85,5.0,fr,11598,142,489636,1,4,Active Shallow Crust,0.0,89.9901,0.0,07/05/7107 +7.74449,46.14447,8082,11,18,12,59,19,3.85,5.0,fr,11599,161,489636,1,4,Active Shallow Crust,0.0,89.9901,0.0,11/18/8082 +7.74449,46.14447,5238,1,23,21,17,48,3.85,27.5,fr,11600,104,489641,1,1,Active Shallow Crust,240.0112,57.99829,0.0,01/23/5238 +7.74449,46.14447,3775,7,23,20,52,51,3.85,5.0,fr,11601,75,489642,1,1,Active Shallow Crust,0.0,89.98999,-90.0,07/23/3775 +7.74449,46.14447,3355,3,2,21,38,42,3.85,15.0,fr,11602,67,489643,1,2,Active Shallow Crust,0.0,89.98999,-90.0,03/02/3355 +7.74449,46.14447,3682,11,10,6,38,39,3.85,15.0,fr,11603,73,489643,1,2,Active Shallow Crust,0.0,89.98999,-90.0,11/10/3682 +7.74449,46.14447,269,12,22,12,8,24,3.95,5.0,fr,11604,5,489648,1,3,Active Shallow Crust,0.0,89.99118,0.0,12/22/0269 +7.74449,46.14447,7764,8,10,17,52,45,3.95,5.0,fr,11605,155,489648,1,3,Active Shallow Crust,0.0,89.99118,0.0,08/10/7764 +7.74449,46.14447,2787,6,26,10,8,31,3.95,5.0,fr,11606,55,489648,1,3,Active Shallow Crust,0.0,89.99118,0.0,06/26/2787 +7.74449,46.14447,4599,4,3,6,55,59,3.95,15.0,fr,11607,91,489649,1,1,Active Shallow Crust,0.0,89.99118,0.0,04/03/4599 +7.74449,46.14447,4296,11,24,22,23,48,3.95,15.0,fr,11608,85,489658,1,1,Active Shallow Crust,128.8996,89.99339,0.0,11/24/4296 +7.74449,46.14447,8837,8,14,11,47,23,4.05,5.0,fr,11609,176,489660,1,8,Active Shallow Crust,0.0,89.98821,0.0,08/14/8837 +7.74449,46.14447,8791,9,5,6,52,13,4.05,5.0,fr,11610,175,489660,1,8,Active Shallow Crust,0.0,89.98821,0.0,09/05/8791 +7.74449,46.14447,7498,10,24,9,36,5,4.05,5.0,fr,11611,149,489660,1,8,Active Shallow Crust,0.0,89.98821,0.0,10/24/7498 +7.74449,46.14447,1363,2,23,13,49,25,4.05,5.0,fr,11612,27,489660,1,8,Active Shallow Crust,0.0,89.98821,0.0,02/23/1363 +7.74449,46.14447,8300,6,30,4,19,22,4.05,5.0,fr,11613,165,489660,1,8,Active Shallow Crust,0.0,89.98821,0.0,06/30/8300 +7.74449,46.14447,9954,5,13,18,43,33,4.05,5.0,fr,11614,199,489660,1,8,Active Shallow Crust,0.0,89.98821,0.0,05/13/9954 +7.74449,46.14447,5733,5,27,4,36,49,4.05,5.0,fr,11615,114,489660,1,8,Active Shallow Crust,0.0,89.98821,0.0,05/27/5733 +7.74449,46.14447,4890,10,24,0,51,37,4.05,5.0,fr,11616,97,489660,1,8,Active Shallow Crust,0.0,89.98821,0.0,10/24/4890 +7.74449,46.14447,5036,11,28,20,22,26,4.05,15.0,fr,11617,100,489661,1,2,Active Shallow Crust,0.0,89.98821,0.0,11/28/5036 +7.74449,46.14447,2088,3,17,13,26,39,4.05,15.0,fr,11618,41,489661,1,2,Active Shallow Crust,0.0,89.98821,0.0,03/17/2088 +7.74449,46.14447,6719,12,6,2,10,20,4.05,5.0,fr,11619,134,489663,1,1,Active Shallow Crust,240.0051,58.00643,0.0,12/06/6719 +7.74449,46.14447,9210,8,29,6,53,43,4.05,5.0,fr,11620,184,489666,1,2,Active Shallow Crust,0.0,89.98808,-90.0,08/29/9210 +7.74449,46.14447,9687,8,29,3,28,0,4.05,5.0,fr,11621,193,489666,1,2,Active Shallow Crust,0.0,89.98808,-90.0,08/29/9687 +7.74449,46.14447,1559,12,27,5,28,41,4.05,5.0,fr,11622,31,489669,1,1,Active Shallow Crust,128.8906,89.99411,0.0,12/27/1559 +7.74449,46.14447,5827,5,13,21,54,0,4.15,5.0,fr,11623,116,489672,1,3,Active Shallow Crust,0.0,89.98949,0.0,05/13/5827 +7.74449,46.14447,2135,8,29,10,10,3,4.15,5.0,fr,11624,42,489672,1,3,Active Shallow Crust,0.0,89.98949,0.0,08/29/2135 +7.74449,46.14447,3710,10,12,10,42,9,4.15,5.0,fr,11625,74,489672,1,3,Active Shallow Crust,0.0,89.98949,0.0,10/12/3710 +7.74449,46.14447,3095,8,3,3,10,41,4.15,15.0,fr,11626,61,489673,1,1,Active Shallow Crust,0.0,89.98949,0.0,08/03/3095 +7.74449,46.14447,9670,3,30,15,31,10,4.15,27.5,fr,11627,193,489674,1,1,Active Shallow Crust,0.0,89.98949,0.0,03/30/9670 +7.74449,46.14447,3025,2,16,16,39,3,4.15,5.0,fr,11628,60,489675,1,2,Active Shallow Crust,240.0085,57.99772,0.0,02/16/3025 +7.74449,46.14447,2414,9,5,18,47,56,4.15,5.0,fr,11629,48,489675,1,2,Active Shallow Crust,240.0085,57.99772,0.0,09/05/2414 +7.74449,46.14447,5177,2,2,2,47,48,4.15,5.0,fr,11630,103,489678,1,2,Active Shallow Crust,0.0,89.98937,-90.0,02/02/5177 +7.74449,46.14447,895,9,11,5,49,25,4.15,5.0,fr,11631,17,489678,1,2,Active Shallow Crust,0.0,89.98937,-90.0,09/11/0895 +7.74449,46.14447,9296,4,4,23,24,7,4.25,5.0,fr,11632,185,489684,1,1,Active Shallow Crust,0.0,89.99064,0.0,04/04/9296 +7.74449,46.14447,3349,12,22,15,49,45,4.25,15.0,fr,11633,66,489685,1,1,Active Shallow Crust,0.0,89.99064,0.0,12/22/3349 +7.74449,46.14447,9486,2,1,12,18,46,4.25,15.0,fr,11634,189,489688,1,1,Active Shallow Crust,240.0075,57.99434,0.0,02/01/9486 +7.74449,46.14447,3804,10,13,1,24,48,4.35,5.0,fr,11635,76,489696,1,2,Active Shallow Crust,0.0,89.98888,0.0,10/13/3804 +7.74449,46.14447,6815,1,18,21,59,5,4.35,5.0,fr,11636,136,489696,1,2,Active Shallow Crust,0.0,89.98888,0.0,01/18/6815 +7.74449,46.14447,9262,4,16,6,18,22,4.35,15.0,fr,11637,185,489697,1,1,Active Shallow Crust,0.0,89.98888,0.0,04/16/9262 +7.74449,46.14447,198,9,2,18,18,3,4.35,5.0,fr,11638,3,489699,1,1,Active Shallow Crust,240.0083,57.99612,0.0,09/02/0198 +7.74449,46.14447,8867,12,9,0,43,50,4.35,5.0,fr,11639,177,489705,1,1,Active Shallow Crust,128.8984,89.98251,0.0,12/09/8867 +7.74449,46.14447,1521,9,27,1,24,25,4.45,15.0,fr,11640,30,489709,1,1,Active Shallow Crust,0.0,89.99008,0.0,09/27/1521 +7.74449,46.14447,2559,4,12,20,6,50,4.45,5.0,fr,11641,51,489711,1,1,Active Shallow Crust,240.0049,57.99466,0.0,04/12/2559 +7.74449,46.14447,9805,9,5,16,15,58,4.45,5.0,fr,11642,196,489714,1,1,Active Shallow Crust,0.0,89.98997,-90.0,09/05/9805 +7.74449,46.14447,1218,12,5,19,26,43,4.45,5.0,fr,11643,24,489717,1,1,Active Shallow Crust,128.8916,89.9938,0.0,12/05/1218 +7.74449,46.14447,8297,6,22,14,32,45,4.55,5.0,fr,11644,165,489723,1,2,Active Shallow Crust,240.0092,57.99741,0.0,06/22/8297 +7.74449,46.14447,1686,1,13,21,41,25,4.55,5.0,fr,11645,33,489723,1,2,Active Shallow Crust,240.0092,57.99741,0.0,01/13/1686 +7.74449,46.14447,2568,10,16,0,12,26,4.65,15.0,fr,11646,51,489733,1,1,Active Shallow Crust,0.0,89.99015,0.0,10/16/2568 +7.74449,46.14447,7056,6,26,5,14,7,4.65,5.0,fr,11647,141,489738,1,1,Active Shallow Crust,0.0,89.99004,-90.0,06/26/7056 +7.74449,46.14447,592,9,19,11,17,21,4.75,5.0,fr,11648,11,489744,1,1,Active Shallow Crust,0.0,89.98947,0.0,09/19/0592 +7.74449,46.14447,2100,2,9,23,4,37,4.75,27.5,fr,11649,41,489746,1,1,Active Shallow Crust,0.0,89.98947,0.0,02/09/2100 +7.74449,46.14447,8917,6,16,16,50,7,4.75,5.0,fr,11650,178,489747,1,1,Active Shallow Crust,240.0075,58.00423,0.0,06/16/8917 +7.74449,46.14447,927,2,19,7,6,22,4.85,5.0,fr,11651,18,489765,1,1,Active Shallow Crust,128.8926,89.98901,0.0,02/19/0927 +7.74449,46.14447,5798,4,4,23,49,11,4.95,5.0,fr,11652,115,489768,1,1,Active Shallow Crust,0.0,89.99024,0.0,04/04/5798 +7.74449,46.14447,8370,8,28,17,33,18,4.95,5.0,fr,11653,167,489771,1,1,Active Shallow Crust,240.0117,58.00451,0.0,08/28/8370 +7.74449,46.14447,9493,7,15,18,13,19,5.05,15.0,fr,11654,189,489781,1,1,Active Shallow Crust,0.0,89.99006,0.0,07/15/9493 +7.74449,46.14447,967,11,9,21,31,32,5.15,5.0,fr,11655,19,489792,1,1,Active Shallow Crust,0.0,89.99003,0.0,11/09/0967 +7.74449,46.14447,2603,12,16,14,19,9,5.25,5.0,fr,11656,52,489804,1,1,Active Shallow Crust,0.0,89.99013,0.0,12/16/2603 +7.74449,46.14447,6915,9,26,23,21,10,5.25,27.5,fr,11657,138,489815,1,1,Active Shallow Crust,128.8832,89.98716,0.0,09/26/6915 +7.744494,46.14447,5416,7,24,12,31,33,6.25,6.744814,fr,11658,108,489924,1,1,Active Shallow Crust,0.0,89.99001,0.0,07/24/5416 +7.744498,46.14447,6073,1,6,20,39,6,6.45,8.491219,fr,11659,121,489948,1,1,Active Shallow Crust,0.0,89.98994,0.0,01/06/6073 +1.46645,46.52966,6508,2,8,15,44,19,3.55,5.0,fr,11660,130,490560,1,3,Active Shallow Crust,0.0,89.98959,0.0,02/08/6508 +1.46645,46.52966,8828,6,1,14,39,5,3.55,5.0,fr,11661,176,490560,1,3,Active Shallow Crust,0.0,89.98959,0.0,06/01/8828 +1.46645,46.52966,7636,7,14,13,20,20,3.55,5.0,fr,11662,152,490560,1,3,Active Shallow Crust,0.0,89.98959,0.0,07/14/7636 +1.46645,46.52966,4345,3,4,3,34,49,3.55,5.0,fr,11663,86,490569,1,1,Active Shallow Crust,128.896,89.99393,0.0,03/04/4345 +1.46645,46.52966,4708,9,10,19,11,33,3.65,5.0,fr,11664,94,490572,1,4,Active Shallow Crust,0.0,89.99072,0.0,09/10/4708 +1.46645,46.52966,2121,7,27,23,35,27,3.65,5.0,fr,11665,42,490572,1,4,Active Shallow Crust,0.0,89.99072,0.0,07/27/2121 +1.46645,46.52966,8784,6,16,12,12,52,3.65,5.0,fr,11666,175,490572,1,4,Active Shallow Crust,0.0,89.99072,0.0,06/16/8784 +1.46645,46.52966,1243,6,4,4,43,54,3.65,5.0,fr,11667,24,490572,1,4,Active Shallow Crust,0.0,89.99072,0.0,06/04/1243 +1.46645,46.52966,4153,1,2,7,48,11,3.65,15.0,fr,11668,83,490573,1,1,Active Shallow Crust,0.0,89.99072,0.0,01/02/4153 +1.46645,46.52966,6351,5,2,0,50,57,3.75,5.0,fr,11669,127,490584,1,1,Active Shallow Crust,0.0,89.99036,0.0,05/02/6351 +1.46645,46.52966,1319,10,13,12,47,21,3.75,15.0,fr,11670,26,490588,1,1,Active Shallow Crust,240.0082,58.01743,0.0,10/13/1319 +1.46645,46.52966,2385,3,11,4,15,53,3.75,5.0,fr,11671,47,490593,1,1,Active Shallow Crust,128.8965,89.96737,0.0,03/11/2385 +1.46645,46.52966,7213,7,10,7,25,0,3.85,5.0,fr,11672,144,490596,1,1,Active Shallow Crust,0.0,89.99017,0.0,07/10/7213 +1.46645,46.52966,3151,10,25,23,54,50,3.95,5.0,fr,11673,63,490608,1,1,Active Shallow Crust,0.0,89.99015,0.0,10/25/3151 +1.46645,46.52966,8700,3,6,6,28,13,3.95,15.0,fr,11674,173,490609,1,1,Active Shallow Crust,0.0,89.99015,0.0,03/06/8700 +1.46645,46.52966,2528,5,7,18,43,36,4.05,15.0,fr,11675,50,490627,1,1,Active Shallow Crust,0.0,89.99014,-90.0,05/07/2528 +1.46645,46.52966,4360,7,27,9,11,27,4.15,5.0,fr,11676,87,490632,1,1,Active Shallow Crust,0.0,89.98957,0.0,07/27/4360 +1.46645,46.52966,6945,3,27,9,31,37,4.15,15.0,fr,11677,138,490633,1,1,Active Shallow Crust,0.0,89.98957,0.0,03/27/6945 +1.46645,46.52966,5395,10,15,6,11,5,4.35,5.0,fr,11678,107,490656,1,1,Active Shallow Crust,0.0,89.99033,0.0,10/15/5395 +1.46645,46.52966,3167,2,20,18,46,6,4.85,15.0,fr,11679,63,490717,1,1,Active Shallow Crust,0.0,89.98991,0.0,02/20/3167 +1.46645,46.52966,3940,6,19,21,42,30,5.25,5.0,fr,11680,78,490767,1,1,Active Shallow Crust,240.0255,58.00026,0.0,06/19/3940 +1.46645,46.52966,1815,8,3,13,57,3,5.35,5.0,fr,11681,36,490776,1,1,Active Shallow Crust,0.0,89.98995,0.0,08/03/1815 +4.16235,42.11242,1176,4,21,7,59,50,3.55,5.0,fr,11682,23,491040,1,1,Active Shallow Crust,0.0,89.99252,0.0,04/21/1176 +4.16235,42.11242,3949,9,27,3,14,25,3.65,15.0,fr,11683,78,491056,1,1,Active Shallow Crust,239.9998,58.01291,0.0,09/27/3949 +4.16235,42.11242,984,12,14,14,49,26,3.75,5.0,fr,11684,19,491064,1,1,Active Shallow Crust,0.0,89.98811,0.0,12/14/0984 +4.16235,42.11242,3881,12,22,4,33,57,6.05,15.0,fr,11685,77,491341,1,1,Active Shallow Crust,0.0,89.9899,0.0,12/22/3881 +1.93873,41.37205,4335,8,30,3,14,38,3.55,5.0,fr,11686,86,491520,1,1,Active Shallow Crust,0.0,89.99054,0.0,08/30/4335 +1.93873,41.37205,6752,7,2,11,30,23,3.55,15.0,fr,11687,135,491524,1,1,Active Shallow Crust,240.0119,57.99778,0.0,07/02/6752 +1.93873,41.37205,3947,7,23,5,34,33,3.55,5.0,fr,11688,78,491526,1,1,Active Shallow Crust,0.0,89.99043,-90.0,07/23/3947 +1.93873,41.37205,3022,3,16,7,22,21,3.65,5.0,fr,11689,60,491532,1,1,Active Shallow Crust,0.0,89.98988,0.0,03/16/3022 +1.93873,41.37205,803,6,23,5,51,0,3.65,15.0,fr,11690,16,491533,1,1,Active Shallow Crust,0.0,89.98988,0.0,06/23/0803 +1.93873,41.37205,4349,5,17,4,27,56,3.65,27.5,fr,11691,86,491537,1,1,Active Shallow Crust,240.0004,58.01288,0.0,05/17/4349 +1.93873,41.37205,4362,1,15,8,41,43,3.65,5.0,fr,11692,87,491538,1,1,Active Shallow Crust,0.0,89.98977,-90.0,01/15/4362 +1.93873,41.37205,1618,11,30,22,59,22,3.95,5.0,fr,11693,32,491568,1,1,Active Shallow Crust,0.0,89.99045,0.0,11/30/1618 +1.93873,41.37205,907,3,29,18,53,26,3.95,15.0,fr,11694,18,491569,1,1,Active Shallow Crust,0.0,89.99045,0.0,03/29/0907 +1.93873,41.37205,5650,12,13,9,26,55,4.05,5.0,fr,11695,112,491580,1,3,Active Shallow Crust,0.0,89.99043,0.0,12/13/5650 +1.93873,41.37205,1771,1,29,10,51,51,4.05,5.0,fr,11696,35,491580,1,3,Active Shallow Crust,0.0,89.99043,0.0,01/29/1771 +1.93873,41.37205,8056,4,29,17,43,13,4.05,5.0,fr,11697,161,491580,1,3,Active Shallow Crust,0.0,89.99043,0.0,04/29/8056 +1.93873,41.37205,5095,10,12,20,47,39,4.45,5.0,fr,11698,101,491628,1,3,Active Shallow Crust,0.0,89.98993,0.0,10/12/5095 +1.93873,41.37205,7142,3,7,4,3,10,4.45,5.0,fr,11699,142,491628,1,3,Active Shallow Crust,0.0,89.98993,0.0,03/07/7142 +1.93873,41.37205,9526,11,29,10,42,59,4.45,5.0,fr,11700,190,491628,1,3,Active Shallow Crust,0.0,89.98993,0.0,11/29/9526 +1.93873,41.37205,6944,4,20,21,1,23,4.45,5.0,fr,11701,138,491634,1,1,Active Shallow Crust,0.0,89.98981,-90.0,04/20/6944 +1.93873,41.37205,7812,9,20,16,13,23,4.65,5.0,fr,11702,156,491652,1,1,Active Shallow Crust,0.0,89.98987,0.0,09/20/7812 +1.93873,41.37205,7641,3,3,20,9,36,4.95,5.0,fr,11703,152,491688,1,1,Active Shallow Crust,0.0,89.99018,0.0,03/03/7641 +1.93873,41.37205,8617,12,9,22,19,56,5.35,5.0,fr,11704,172,491736,1,2,Active Shallow Crust,0.0,89.99,0.0,12/09/8617 +1.93873,41.37205,7920,6,3,10,53,51,5.35,5.0,fr,11705,158,491736,1,2,Active Shallow Crust,0.0,89.99,0.0,06/03/7920 +-3.58696,48.5612,3446,6,16,15,22,50,3.55,5.0,fr,11706,68,492000,1,3,Active Shallow Crust,0.0,89.98999,0.0,06/16/3446 +-3.58696,48.5612,9158,7,20,8,2,15,3.55,5.0,fr,11707,183,492000,1,3,Active Shallow Crust,0.0,89.98999,0.0,07/20/9158 +-3.58696,48.5612,7560,9,3,18,19,7,3.55,5.0,fr,11708,151,492000,1,3,Active Shallow Crust,0.0,89.98999,0.0,09/03/7560 +-3.58696,48.5612,1621,12,8,22,39,6,3.55,27.5,fr,11709,32,492002,1,1,Active Shallow Crust,0.0,89.98999,0.0,12/08/1621 +-3.58696,48.5612,1708,7,8,6,22,9,3.55,15.0,fr,11710,34,492004,1,1,Active Shallow Crust,240.013,57.99817,0.0,07/08/1708 +-3.58696,48.5612,5480,1,26,22,58,54,3.55,5.0,fr,11711,109,492006,1,1,Active Shallow Crust,0.0,89.98988,-90.0,01/26/5480 +-3.58696,48.5612,8692,8,24,19,2,59,3.65,15.0,fr,11712,173,492016,1,1,Active Shallow Crust,240.0012,58.01302,0.0,08/24/8692 +-3.58696,48.5612,1406,5,15,2,1,57,3.75,5.0,fr,11713,28,492024,1,1,Active Shallow Crust,0.0,89.9894,0.0,05/15/1406 +-3.58696,48.5612,7274,9,5,16,45,53,3.75,15.0,fr,11714,145,492025,1,1,Active Shallow Crust,0.0,89.9894,0.0,09/05/7274 +-3.58696,48.5612,4998,10,13,5,32,17,3.85,5.0,fr,11715,99,492039,1,1,Active Shallow Crust,240.0109,57.99802,0.0,10/13/4998 +-3.58696,48.5612,8713,12,15,19,48,37,4.15,5.0,fr,11716,174,492072,1,1,Active Shallow Crust,0.0,89.98997,0.0,12/15/8713 +-3.58696,48.5612,5396,5,7,14,44,58,4.35,15.0,fr,11717,107,492097,1,1,Active Shallow Crust,0.0,89.98937,0.0,05/07/5396 +-3.58696,48.5612,9945,5,12,13,47,57,4.55,5.0,fr,11718,198,492120,1,1,Active Shallow Crust,0.0,89.9905,0.0,05/12/9945 +-3.58696,48.5612,5878,12,3,23,20,47,4.95,15.0,fr,11719,117,492169,1,1,Active Shallow Crust,0.0,89.99001,0.0,12/03/5878 +-5.95951,48.45396,6288,12,31,5,37,51,3.95,5.0,fr,11720,125,492528,1,1,Active Shallow Crust,0.0,89.99156,0.0,12/31/6288 +-5.95951,48.45396,2519,2,8,15,24,4,3.95,5.0,fr,11721,50,492531,1,1,Active Shallow Crust,240.0198,58.005,0.0,02/08/2519 +-5.95951,48.45396,4144,12,10,21,57,41,4.75,5.0,fr,11722,82,492624,1,1,Active Shallow Crust,0.0,89.98992,0.0,12/10/4144 +0.42958,43.48372,1327,11,2,7,15,36,3.65,5.0,fr,11723,26,492972,1,1,Active Shallow Crust,0.0,89.98981,0.0,11/02/1327 +0.42958,43.48372,183,3,8,14,28,7,3.75,5.0,fr,11724,3,492984,1,1,Active Shallow Crust,0.0,89.98983,0.0,03/08/0183 +0.42958,43.48372,8677,10,22,20,22,36,3.75,5.0,fr,11725,173,492993,1,1,Active Shallow Crust,128.8969,89.96734,0.0,10/22/8677 +0.42958,43.48372,8831,9,18,7,32,7,4.35,15.0,fr,11726,176,493057,1,1,Active Shallow Crust,0.0,89.98999,0.0,09/18/8831 +0.42958,43.48372,3594,7,12,0,49,8,4.75,5.0,fr,11727,71,493110,1,1,Active Shallow Crust,0.0,89.99001,-90.0,07/12/3594 +1.91833,45.22171,2243,1,22,1,22,10,3.55,5.0,fr,11728,44,493449,1,1,Active Shallow Crust,128.8965,89.99378,0.0,01/22/2243 +1.91833,45.22171,5239,3,27,23,15,7,3.65,5.0,fr,11729,104,493452,1,1,Active Shallow Crust,0.0,89.9905,0.0,03/27/5239 +1.91833,45.22171,8847,12,26,16,12,29,3.85,15.0,fr,11730,176,493477,1,1,Active Shallow Crust,0.0,89.98994,0.0,12/26/8847 +1.91833,45.22171,396,2,18,4,0,43,4.25,5.0,fr,11731,7,493530,1,1,Active Shallow Crust,0.0,89.99037,-90.0,02/18/0396 +1.91833,45.22171,3861,1,19,11,14,31,4.75,15.0,fr,11732,77,493585,1,1,Active Shallow Crust,0.0,89.99019,0.0,01/19/3861 +2.10043,45.90161,6478,9,27,4,33,26,3.55,5.0,fr,11733,129,493920,1,1,Active Shallow Crust,0.0,89.98947,0.0,09/27/6478 +2.10043,45.90161,9389,8,5,1,53,1,3.55,15.0,fr,11734,187,493921,1,2,Active Shallow Crust,0.0,89.98947,0.0,08/05/9389 +2.10043,45.90161,7009,5,16,13,32,11,3.55,15.0,fr,11735,140,493921,1,2,Active Shallow Crust,0.0,89.98947,0.0,05/16/7009 +2.10043,45.90161,3350,11,17,11,25,35,3.65,5.0,fr,11736,66,493932,1,1,Active Shallow Crust,0.0,89.99062,0.0,11/17/3350 +2.10043,45.90161,9538,12,9,1,20,23,3.65,5.0,fr,11737,190,493941,1,1,Active Shallow Crust,128.9014,89.96352,0.0,12/09/9538 +2.10043,45.90161,1434,2,10,16,15,42,3.75,5.0,fr,11738,28,493944,1,1,Active Shallow Crust,0.0,89.98885,0.0,02/10/1434 +2.10043,45.90161,294,1,19,3,17,30,3.75,15.0,fr,11739,5,493945,1,1,Active Shallow Crust,0.0,89.98885,0.0,01/19/0294 +2.10043,45.90161,8749,7,29,12,51,52,3.75,5.0,fr,11740,174,493947,1,1,Active Shallow Crust,240.0085,58.01754,0.0,07/29/8749 +2.10043,45.90161,8378,11,12,5,10,9,3.85,15.0,fr,11741,167,493957,1,2,Active Shallow Crust,0.0,89.99007,0.0,11/12/8378 +2.10043,45.90161,8497,11,1,2,12,58,3.85,15.0,fr,11742,169,493957,1,2,Active Shallow Crust,0.0,89.99007,0.0,11/01/8497 +2.10043,45.90161,4139,2,22,3,11,17,3.95,5.0,fr,11743,82,493968,1,1,Active Shallow Crust,0.0,89.98893,0.0,02/22/4139 +2.10043,45.90161,6383,1,17,7,31,43,4.05,5.0,fr,11744,127,493980,1,1,Active Shallow Crust,0.0,89.99014,0.0,01/17/6383 +2.10043,45.90161,5450,2,3,1,30,6,4.05,5.0,fr,11745,108,493983,1,1,Active Shallow Crust,240.0058,58.00612,0.0,02/03/5450 +2.10043,45.90161,1140,7,7,8,14,42,4.15,5.0,fr,11746,22,494001,1,1,Active Shallow Crust,128.8978,89.99384,0.0,07/07/1140 +2.10043,45.90161,664,7,20,9,47,21,4.25,5.0,fr,11747,13,494004,1,1,Active Shallow Crust,0.0,89.99059,0.0,07/20/0664 +2.10043,45.90161,9473,10,9,21,58,58,4.35,5.0,fr,11748,189,494019,1,1,Active Shallow Crust,240.0082,57.99591,0.0,10/09/9473 +2.10043,45.90161,6312,6,23,12,32,31,4.55,5.0,fr,11749,126,494046,1,1,Active Shallow Crust,0.0,89.9899,-90.0,06/23/6312 +2.10043,45.90161,3025,5,5,16,50,16,5.15,5.0,fr,11750,60,494121,1,1,Active Shallow Crust,128.884,89.99115,0.0,05/05/3025 +2.10043,45.90161,1610,3,9,3,14,8,5.25,5.0,fr,11751,32,494124,1,1,Active Shallow Crust,0.0,89.99008,0.0,03/09/1610 +1.05135,51.11564,400,12,19,22,39,41,3.55,15.0,fr,11752,7,494401,1,1,Active Shallow Crust,0.0,89.9905,0.0,12/19/0400 +1.05135,51.11564,8408,3,11,9,5,18,3.75,5.0,fr,11753,168,494424,1,1,Active Shallow Crust,0.0,89.98994,0.0,03/11/8408 +1.05135,51.11564,2641,11,14,11,16,50,3.75,15.0,fr,11754,52,494425,1,1,Active Shallow Crust,0.0,89.98994,0.0,11/14/2641 +1.05135,51.11564,278,12,14,16,27,47,3.85,5.0,fr,11755,5,494436,1,1,Active Shallow Crust,0.0,89.98991,0.0,12/14/0278 +1.05135,51.11564,887,9,8,0,18,44,3.95,15.0,fr,11756,17,494449,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/08/0887 +1.05135,51.11564,8523,4,24,2,36,40,4.35,5.0,fr,11757,170,494496,1,2,Active Shallow Crust,0.0,89.98992,0.0,04/24/8523 +1.05135,51.11564,4299,9,20,5,59,39,4.35,5.0,fr,11758,85,494496,1,2,Active Shallow Crust,0.0,89.98992,0.0,09/20/4299 +1.05135,51.11564,1663,4,1,4,23,0,4.65,15.0,fr,11759,33,494542,1,1,Active Shallow Crust,128.8896,89.98703,0.0,04/01/1663 +-2.634,47.96991,57,2,4,11,10,29,3.55,5.0,fr,11760,1,494880,1,1,Active Shallow Crust,0.0,89.98988,0.0,02/04/0057 +-2.634,47.96991,5128,4,16,10,17,27,3.65,5.0,fr,11761,102,494892,1,1,Active Shallow Crust,0.0,89.99097,0.0,04/16/5128 +-2.634,47.96991,7547,6,25,20,29,29,3.75,5.0,fr,11762,150,494904,1,1,Active Shallow Crust,0.0,89.98927,0.0,06/25/7547 +-2.634,47.96991,8975,6,26,8,46,26,3.75,27.5,fr,11763,179,494906,1,2,Active Shallow Crust,0.0,89.98927,0.0,06/26/8975 +-2.634,47.96991,5950,5,1,14,1,35,3.75,27.5,fr,11764,118,494906,1,2,Active Shallow Crust,0.0,89.98927,0.0,05/01/5950 +-2.634,47.96991,5773,1,19,13,15,33,3.75,5.0,fr,11765,115,494907,1,1,Active Shallow Crust,240.0084,58.01761,0.0,01/19/5773 +-2.634,47.96991,3225,3,24,18,7,22,3.85,5.0,fr,11766,64,494916,1,1,Active Shallow Crust,0.0,89.99044,0.0,03/24/3225 +-2.634,47.96991,9148,5,3,12,16,56,3.95,5.0,fr,11767,182,494937,1,1,Active Shallow Crust,128.9003,89.99361,0.0,05/03/9148 +-2.634,47.96991,2025,6,2,20,11,41,4.05,5.0,fr,11768,40,494940,1,1,Active Shallow Crust,0.0,89.99051,0.0,06/02/2025 +-2.634,47.96991,1672,1,17,6,49,47,4.15,5.0,fr,11769,33,494952,1,1,Active Shallow Crust,0.0,89.98985,0.0,01/17/1672 +-2.634,47.96991,3425,9,25,10,14,13,4.25,5.0,fr,11770,68,494964,1,2,Active Shallow Crust,0.0,89.98944,0.0,09/25/3425 +-2.634,47.96991,6075,3,11,1,58,45,4.25,5.0,fr,11771,121,494964,1,2,Active Shallow Crust,0.0,89.98944,0.0,03/11/6075 +-2.634,47.96991,8221,10,26,22,44,47,4.25,15.0,fr,11772,164,494965,1,1,Active Shallow Crust,0.0,89.98944,0.0,10/26/8221 +-2.634,47.96991,6161,3,3,0,56,51,4.45,5.0,fr,11773,123,494988,1,2,Active Shallow Crust,0.0,89.99042,0.0,03/03/6161 +-2.634,47.96991,4002,11,7,6,58,33,4.45,5.0,fr,11774,80,494988,1,2,Active Shallow Crust,0.0,89.99042,0.0,11/07/4002 +-2.634,47.96991,3165,2,10,1,7,31,4.55,5.0,fr,11775,63,495000,1,2,Active Shallow Crust,0.0,89.99039,0.0,02/10/3165 +-2.634,47.96991,3355,8,3,22,16,11,4.55,5.0,fr,11776,67,495000,1,2,Active Shallow Crust,0.0,89.99039,0.0,08/03/3355 +-2.634,47.96991,9260,3,29,18,22,13,4.65,5.0,fr,11777,185,495012,1,1,Active Shallow Crust,0.0,89.98953,0.0,03/29/9260 +-2.634,47.96991,125,6,8,13,14,36,5.45,27.5,fr,11778,2,495110,1,1,Active Shallow Crust,0.0,89.99015,0.0,06/08/0125 +-2.35971,45.26716,6151,2,25,10,53,18,3.75,5.0,fr,11779,123,495384,1,1,Active Shallow Crust,0.0,89.98872,0.0,02/25/6151 +2.59467,43.34723,5285,7,28,4,49,14,3.75,5.0,fr,11780,105,495864,1,1,Active Shallow Crust,0.0,89.99126,0.0,07/28/5285 +2.59467,43.34723,213,4,24,10,19,54,3.75,15.0,fr,11781,4,495865,1,1,Active Shallow Crust,0.0,89.99126,0.0,04/24/0213 +2.59467,43.34723,6515,9,5,13,36,22,3.95,5.0,fr,11782,130,495888,1,1,Active Shallow Crust,0.0,89.99075,0.0,09/05/6515 +2.59467,43.34723,5051,10,27,8,9,4,4.05,27.5,fr,11783,101,495905,1,1,Active Shallow Crust,240.0053,58.00581,0.0,10/27/5051 +2.59467,43.34723,7057,9,10,0,6,3,4.55,5.0,fr,11784,141,495969,1,1,Active Shallow Crust,128.8949,89.98574,0.0,09/10/7057 +2.59467,43.34723,3284,7,12,5,3,45,4.65,5.0,fr,11785,65,495972,1,1,Active Shallow Crust,0.0,89.98966,0.0,07/12/3284 +9.41734,50.0202,4945,12,18,6,12,29,4.95,5.0,fr,11786,98,496488,1,1,Active Shallow Crust,0.0,89.98965,0.0,12/18/4945 +7.85286,50.23196,3636,8,6,12,23,43,3.55,5.0,fr,11787,72,496800,1,2,Active Shallow Crust,0.0,89.9871,0.0,08/06/3636 +7.85286,50.23196,8339,3,8,9,59,9,3.55,5.0,fr,11788,166,496800,1,2,Active Shallow Crust,0.0,89.9871,0.0,03/08/8339 +7.85286,50.23196,8490,11,18,19,31,57,3.55,5.0,fr,11789,169,496803,1,2,Active Shallow Crust,240.0121,57.99812,0.0,11/18/8490 +7.85286,50.23196,7311,5,6,8,1,8,3.55,5.0,fr,11790,146,496803,1,2,Active Shallow Crust,240.0121,57.99812,0.0,05/06/7311 +7.85286,50.23196,5888,2,23,16,20,30,3.65,5.0,fr,11791,117,496812,1,3,Active Shallow Crust,0.0,89.9885,0.0,02/23/5888 +7.85286,50.23196,2375,10,30,3,34,50,3.65,5.0,fr,11792,47,496812,1,3,Active Shallow Crust,0.0,89.9885,0.0,10/30/2375 +7.85286,50.23196,7679,7,9,13,55,6,3.65,5.0,fr,11793,153,496812,1,3,Active Shallow Crust,0.0,89.9885,0.0,07/09/7679 +7.85286,50.23196,9596,8,16,5,7,26,3.65,5.0,fr,11794,191,496821,1,1,Active Shallow Crust,128.9001,89.96359,0.0,08/16/9596 +7.85286,50.23196,9774,9,11,22,23,57,3.75,15.0,fr,11795,195,496825,1,1,Active Shallow Crust,0.0,89.98975,0.0,09/11/9774 +7.85286,50.23196,1026,11,25,0,37,50,3.75,15.0,fr,11796,20,496828,1,1,Active Shallow Crust,240.0091,58.01719,0.0,11/25/1026 +7.85286,50.23196,5163,11,30,10,37,20,3.95,15.0,fr,11797,103,496849,1,1,Active Shallow Crust,0.0,89.99186,0.0,11/30/5163 +7.85286,50.23196,449,7,2,10,57,15,3.95,5.0,fr,11798,8,496851,1,1,Active Shallow Crust,240.0196,58.0057,0.0,07/02/0449 +7.85286,50.23196,6180,10,17,16,8,17,3.95,5.0,fr,11799,123,496857,1,1,Active Shallow Crust,128.9008,89.99186,0.0,10/17/6180 +7.85286,50.23196,8522,10,13,6,52,35,4.05,5.0,fr,11800,170,496860,1,2,Active Shallow Crust,0.0,89.98912,0.0,10/13/8522 +7.85286,50.23196,8714,8,7,8,15,49,4.05,5.0,fr,11801,174,496860,1,2,Active Shallow Crust,0.0,89.98912,0.0,08/07/8714 +7.85286,50.23196,4354,12,22,15,43,44,4.05,5.0,fr,11802,87,496866,1,1,Active Shallow Crust,0.0,89.98899,-90.0,12/22/4354 +7.85286,50.23196,8804,9,10,20,15,13,4.15,15.0,fr,11803,176,496873,1,1,Active Shallow Crust,0.0,89.9903,0.0,09/10/8804 +7.85286,50.23196,1199,6,26,8,41,21,4.15,5.0,fr,11804,23,496878,1,1,Active Shallow Crust,0.0,89.99019,-90.0,06/26/1199 +7.85286,50.23196,9572,12,13,4,3,11,4.15,15.0,fr,11805,191,496882,1,1,Active Shallow Crust,128.8975,89.99354,0.0,12/13/9572 +7.85286,50.23196,9216,12,10,5,50,47,4.25,5.0,fr,11806,184,496884,1,1,Active Shallow Crust,0.0,89.99136,0.0,12/10/9216 +7.85286,50.23196,9253,10,28,7,43,20,4.45,5.0,fr,11807,185,496908,1,1,Active Shallow Crust,0.0,89.99084,0.0,10/28/9253 +7.85286,50.23196,1751,2,4,8,17,56,4.45,5.0,fr,11808,35,496911,1,1,Active Shallow Crust,240.0068,57.99463,0.0,02/04/1751 +7.85286,50.23196,6628,2,27,12,28,21,4.55,15.0,fr,11809,132,496924,1,1,Active Shallow Crust,240.0107,57.99748,0.0,02/27/6628 +-0.74073,51.03273,8844,4,11,2,46,59,3.65,5.0,fr,11810,176,497292,1,1,Active Shallow Crust,0.0,89.99011,0.0,04/11/8844 +-0.74073,51.03273,5405,9,9,17,57,54,3.75,15.0,fr,11811,108,497314,1,1,Active Shallow Crust,128.8961,89.96735,0.0,09/09/5405 +2.56447,50.77814,4227,7,16,4,56,18,3.55,5.0,fr,11812,84,497760,1,1,Active Shallow Crust,0.0,89.99043,0.0,07/16/4227 +2.56447,50.77814,832,2,17,21,24,31,3.55,27.5,fr,11813,16,497762,1,1,Active Shallow Crust,0.0,89.99043,0.0,02/17/0832 +2.56447,50.77814,4741,8,23,23,7,24,3.55,27.5,fr,11814,94,497768,1,1,Active Shallow Crust,0.0,89.99033,-90.0,08/23/4741 +2.56447,50.77814,7686,11,5,19,30,2,3.65,5.0,fr,11815,153,497772,1,1,Active Shallow Crust,0.0,89.98863,0.0,11/05/7686 +2.56447,50.77814,6213,7,5,0,27,28,3.65,5.0,fr,11816,124,497775,1,2,Active Shallow Crust,240.0018,58.01255,0.0,07/05/6213 +2.56447,50.77814,8887,9,6,12,3,45,3.65,5.0,fr,11817,177,497775,1,2,Active Shallow Crust,240.0018,58.01255,0.0,09/06/8887 +2.56447,50.77814,8407,8,31,19,41,57,3.75,5.0,fr,11818,168,497784,1,1,Active Shallow Crust,0.0,89.98987,0.0,08/31/8407 +2.56447,50.77814,3664,3,2,23,51,1,3.85,5.0,fr,11819,73,497796,1,2,Active Shallow Crust,0.0,89.99097,0.0,03/02/3664 +2.56447,50.77814,7123,1,27,17,3,25,3.85,5.0,fr,11820,142,497796,1,2,Active Shallow Crust,0.0,89.99097,0.0,01/27/7123 +2.56447,50.77814,8028,2,14,9,45,35,3.85,5.0,fr,11821,160,497805,1,1,Active Shallow Crust,128.8951,89.99323,0.0,02/14/8028 +2.56447,50.77814,135,2,11,23,53,34,3.95,5.0,fr,11822,2,497808,1,1,Active Shallow Crust,0.0,89.98994,0.0,02/11/0135 +2.56447,50.77814,5361,4,19,19,35,27,5.15,15.0,fr,11823,107,497953,1,1,Active Shallow Crust,0.0,89.98989,0.0,04/19/5361 +5.01529,47.86886,5567,6,11,17,12,41,3.55,5.0,fr,11824,111,498240,1,1,Active Shallow Crust,0.0,89.99323,0.0,06/11/5567 +5.01529,47.86886,281,4,25,3,40,13,3.65,15.0,fr,11825,5,498253,1,1,Active Shallow Crust,0.0,89.98795,0.0,04/25/0281 +5.01529,47.86886,684,9,20,0,28,21,3.95,5.0,fr,11826,13,498288,1,1,Active Shallow Crust,0.0,89.99146,0.0,09/20/0684 +5.01529,47.86886,193,4,6,6,37,42,4.05,5.0,fr,11827,3,498300,1,1,Active Shallow Crust,0.0,89.98859,0.0,04/06/0193 +5.01529,47.86886,8706,6,13,14,57,22,4.05,27.5,fr,11828,174,498311,1,1,Active Shallow Crust,128.8914,89.99239,0.0,06/13/8706 +5.01529,47.86886,800,6,29,13,42,46,4.15,5.0,fr,11829,15,498312,1,1,Active Shallow Crust,0.0,89.98983,0.0,06/29/0800 +5.01529,47.86886,9232,10,19,2,32,31,4.25,15.0,fr,11830,184,498325,1,1,Active Shallow Crust,0.0,89.99094,0.0,10/19/9232 +5.01529,47.86886,679,11,3,19,47,33,4.45,5.0,fr,11831,13,498348,1,1,Active Shallow Crust,0.0,89.99039,0.0,11/03/0679 +5.01529,47.86886,4516,10,25,18,1,4,5.15,5.0,fr,11832,90,498432,1,1,Active Shallow Crust,0.0,89.99035,0.0,10/25/4516 +3.7369,50.9327,3505,1,16,7,51,18,3.55,5.0,fr,11833,70,498720,1,1,Active Shallow Crust,0.0,89.99047,0.0,01/16/3505 +3.7369,50.9327,1190,8,9,18,2,34,3.55,27.5,fr,11834,23,498731,1,1,Active Shallow Crust,128.8954,89.99364,0.0,08/09/1190 +3.7369,50.9327,1036,12,29,22,39,44,3.65,15.0,fr,11835,20,498733,1,1,Active Shallow Crust,0.0,89.98867,0.0,12/29/1036 +3.7369,50.9327,5708,3,3,17,18,30,3.65,5.0,fr,11836,114,498738,1,1,Active Shallow Crust,0.0,89.9914,-90.0,03/03/5708 +3.7369,50.9327,3133,6,19,13,42,10,3.75,5.0,fr,11837,62,498744,1,1,Active Shallow Crust,0.0,89.98991,0.0,06/19/3133 +3.7369,50.9327,4818,3,15,5,12,45,3.75,15.0,fr,11838,96,498748,1,1,Active Shallow Crust,240.0094,58.01756,0.0,03/15/4818 +3.7369,50.9327,7000,11,22,18,47,28,3.75,5.0,fr,11839,139,498753,1,1,Active Shallow Crust,128.8959,89.96735,0.0,11/22/7000 +3.7369,50.9327,1019,2,13,11,13,30,3.85,27.5,fr,11840,20,498767,1,1,Active Shallow Crust,128.8952,89.99438,0.0,02/13/1019 +3.7369,50.9327,3846,5,17,14,33,58,3.95,5.0,fr,11841,76,498768,1,1,Active Shallow Crust,0.0,89.98997,0.0,05/17/3846 +3.74464,40.29399,4365,1,30,23,4,9,3.55,15.0,fr,11842,87,499204,1,1,Active Shallow Crust,240.0114,57.99823,0.0,01/30/4365 +3.74464,40.29399,1877,9,21,23,14,51,4.15,5.0,fr,11843,37,499272,1,1,Active Shallow Crust,0.0,89.99036,0.0,09/21/1877 +3.74464,40.29399,7318,11,25,21,13,56,4.25,5.0,fr,11844,146,499284,1,1,Active Shallow Crust,0.0,89.98969,0.0,11/25/7318 +-2.07349,46.25376,3746,7,25,3,56,41,3.65,27.5,fr,11845,74,499694,1,1,Active Shallow Crust,0.0,89.99068,0.0,07/25/3746 +-2.07349,46.25376,8305,3,8,18,44,48,3.65,27.5,fr,11846,166,499697,1,1,Active Shallow Crust,240.0007,58.01311,0.0,03/08/8305 +-2.07349,46.25376,4187,4,22,4,3,21,3.85,5.0,fr,11847,83,499716,1,1,Active Shallow Crust,0.0,89.99013,0.0,04/22/4187 +-2.07349,46.25376,9997,6,14,3,34,46,4.45,5.0,fr,11848,199,499791,1,1,Active Shallow Crust,240.0051,57.9946,0.0,06/14/9997 +-6.38827,49.36478,9314,3,9,8,47,16,4.05,5.0,fr,11849,186,500700,1,1,Active Shallow Crust,0.0,89.98892,0.0,03/09/9314 +3.865,40.17492,103,12,3,22,41,10,3.65,5.0,fr,11850,2,501132,1,1,Active Shallow Crust,0.0,89.9897,0.0,12/03/0103 +3.865,40.17492,171,7,29,18,41,2,3.85,15.0,fr,11851,3,501163,1,1,Active Shallow Crust,0.0,89.98897,-90.0,07/29/0171 +3.865,40.17492,2144,6,9,5,7,57,3.95,27.5,fr,11852,42,501170,1,1,Active Shallow Crust,0.0,89.99028,0.0,06/09/2144 +2.31624,43.17026,6104,9,24,7,8,4,3.55,5.0,fr,11853,122,501600,1,2,Active Shallow Crust,0.0,89.98897,0.0,09/24/6104 +2.31624,43.17026,3826,12,12,20,53,11,3.55,5.0,fr,11854,76,501600,1,2,Active Shallow Crust,0.0,89.98897,0.0,12/12/3826 +2.31624,43.17026,8089,5,15,1,50,19,3.55,15.0,fr,11855,161,501601,1,1,Active Shallow Crust,0.0,89.98897,0.0,05/15/8089 +2.31624,43.17026,151,4,17,7,56,32,3.65,5.0,fr,11856,3,501612,1,1,Active Shallow Crust,0.0,89.99017,0.0,04/17/0151 +2.31624,43.17026,8741,3,9,10,36,0,3.65,5.0,fr,11857,174,501618,1,1,Active Shallow Crust,0.0,89.99005,-90.0,03/09/8741 +2.31624,43.17026,305,10,24,1,25,45,3.95,27.5,fr,11858,6,501650,1,1,Active Shallow Crust,0.0,89.99072,0.0,10/24/0305 +2.31624,43.17026,8507,1,8,13,56,55,4.05,5.0,fr,11859,170,501663,1,1,Active Shallow Crust,240.0056,58.00552,0.0,01/08/8507 +2.31624,43.17026,1935,3,6,16,6,5,4.05,5.0,fr,11860,38,501666,1,1,Active Shallow Crust,0.0,89.98954,-90.0,03/06/1935 +2.31624,43.17026,3583,3,9,4,34,58,4.15,5.0,fr,11861,71,501672,1,1,Active Shallow Crust,0.0,89.99078,0.0,03/09/3583 +2.31624,43.17026,1376,7,15,4,20,9,4.55,5.0,fr,11862,27,501720,1,1,Active Shallow Crust,0.0,89.98953,0.0,07/15/1376 +0.96198,48.49313,1592,7,24,0,12,12,3.55,15.0,fr,11863,31,502081,1,1,Active Shallow Crust,0.0,89.98997,0.0,07/24/1592 +0.96198,48.49313,2444,12,18,5,34,9,3.65,5.0,fr,11864,48,502092,1,1,Active Shallow Crust,0.0,89.99032,0.0,12/18/2444 +0.96198,48.49313,8912,1,22,6,32,16,3.75,5.0,fr,11865,178,502104,1,1,Active Shallow Crust,0.0,89.99004,0.0,01/22/8912 +0.96198,48.49313,7401,3,28,13,17,9,3.75,15.0,fr,11866,148,502105,1,1,Active Shallow Crust,0.0,89.99004,0.0,03/28/7401 +0.96198,48.49313,669,8,11,13,15,7,4.75,15.0,fr,11867,13,502231,1,1,Active Shallow Crust,0.0,89.99002,-90.0,08/11/0669 +0.96198,48.49313,9849,9,24,15,42,14,5.25,5.0,fr,11868,196,502284,1,1,Active Shallow Crust,0.0,89.98997,0.0,09/24/9849 +3.03257,42.08098,3391,7,14,8,14,56,3.55,5.0,fr,11869,67,502560,1,1,Active Shallow Crust,0.0,89.98878,0.0,07/14/3391 +3.03257,42.08098,9099,7,13,17,56,25,3.55,15.0,fr,11870,181,502561,1,1,Active Shallow Crust,0.0,89.98878,0.0,07/13/9099 +3.03257,42.08098,8321,12,13,23,7,1,3.55,5.0,fr,11871,166,502566,1,1,Active Shallow Crust,0.0,89.98865,-90.0,12/13/8321 +3.03257,42.08098,2381,11,22,8,27,20,3.75,27.5,fr,11872,47,502586,1,1,Active Shallow Crust,0.0,89.99108,0.0,11/22/2381 +3.03257,42.08098,7170,8,13,3,32,57,3.95,15.0,fr,11873,143,502609,1,1,Active Shallow Crust,0.0,89.99055,0.0,08/13/7170 +3.03257,42.08098,2572,6,30,6,16,7,4.05,15.0,fr,11874,51,502621,1,1,Active Shallow Crust,0.0,89.98948,0.0,06/30/2572 +3.03257,42.08098,684,11,27,4,27,16,4.25,5.0,fr,11875,13,502644,1,1,Active Shallow Crust,0.0,89.98997,0.0,11/27/0684 +3.03257,42.08098,8319,3,25,16,50,47,4.35,5.0,fr,11876,166,502656,1,1,Active Shallow Crust,0.0,89.98957,0.0,03/25/8319 +3.03257,42.08098,386,1,16,9,15,47,4.35,15.0,fr,11877,7,502657,1,1,Active Shallow Crust,0.0,89.98957,0.0,01/16/0386 +3.03257,42.08098,9809,7,12,23,18,23,4.45,15.0,fr,11878,196,502669,1,2,Active Shallow Crust,0.0,89.98938,0.0,07/12/9809 +3.03257,42.08098,8181,1,21,1,16,20,4.45,15.0,fr,11879,163,502669,1,2,Active Shallow Crust,0.0,89.98938,0.0,01/21/8181 +3.03257,42.08098,642,1,24,2,43,0,4.85,5.0,fr,11880,12,502722,1,1,Active Shallow Crust,0.0,89.98983,-90.0,01/24/0642 +3.03257,42.08098,3055,9,26,20,41,23,4.85,5.0,fr,11881,61,502725,1,1,Active Shallow Crust,128.894,89.989,0.0,09/26/3055 +3.03257,42.08098,2645,10,18,6,48,43,5.45,15.0,fr,11882,52,502789,1,1,Active Shallow Crust,0.0,89.98992,0.0,10/18/2645 +1.96541,43.90711,1738,7,12,4,9,59,3.55,5.0,fr,11883,34,503043,1,1,Active Shallow Crust,240.0121,57.99803,0.0,07/12/1738 +1.96541,43.90711,7452,11,5,9,44,2,3.95,5.0,fr,11884,149,503088,1,1,Active Shallow Crust,0.0,89.98969,0.0,11/05/7452 +-1.04532,50.88474,9788,4,17,3,18,41,3.85,5.0,fr,11885,195,503556,1,1,Active Shallow Crust,0.0,89.98987,0.0,04/17/9788 +-1.04532,50.88474,9503,6,21,1,0,39,4.25,27.5,fr,11886,190,503606,1,1,Active Shallow Crust,0.0,89.99005,0.0,06/21/9503 +1.47476,41.16154,4658,1,23,16,56,39,3.55,5.0,fr,11887,93,504000,1,1,Active Shallow Crust,0.0,89.99051,0.0,01/23/4658 +1.47476,41.16154,2794,7,1,18,43,53,3.55,27.5,fr,11888,55,504002,1,1,Active Shallow Crust,0.0,89.99051,0.0,07/01/2794 +1.47476,41.16154,163,12,13,21,35,32,3.55,5.0,fr,11889,3,504003,1,2,Active Shallow Crust,240.0113,57.99831,0.0,12/13/0163 +1.47476,41.16154,9882,6,10,8,47,27,3.55,5.0,fr,11890,197,504003,1,2,Active Shallow Crust,240.0113,57.99831,0.0,06/10/9882 +1.47476,41.16154,355,4,3,20,13,44,3.65,5.0,fr,11891,7,504012,1,2,Active Shallow Crust,0.0,89.98985,0.0,04/03/0355 +1.47476,41.16154,3762,7,6,18,4,13,3.65,5.0,fr,11892,75,504012,1,2,Active Shallow Crust,0.0,89.98985,0.0,07/06/3762 +1.47476,41.16154,8394,3,16,2,11,41,3.65,15.0,fr,11893,167,504022,1,1,Active Shallow Crust,128.9008,89.96357,0.0,03/16/8394 +1.47476,41.16154,4149,1,28,6,49,28,3.75,5.0,fr,11894,82,504024,1,2,Active Shallow Crust,0.0,89.98945,0.0,01/28/4149 +1.47476,41.16154,4808,4,1,11,22,55,3.75,5.0,fr,11895,96,504024,1,2,Active Shallow Crust,0.0,89.98945,0.0,04/01/4808 +1.47476,41.16154,4018,3,19,22,51,2,3.75,15.0,fr,11896,80,504034,1,1,Active Shallow Crust,128.8972,89.96725,0.0,03/19/4018 +1.47476,41.16154,4945,1,8,11,35,23,3.85,5.0,fr,11897,98,504036,1,1,Active Shallow Crust,0.0,89.99059,0.0,01/08/4945 +1.47476,41.16154,9685,2,9,18,7,25,3.85,15.0,fr,11898,193,504037,1,1,Active Shallow Crust,0.0,89.99059,0.0,02/09/9685 +1.47476,41.16154,3983,11,23,6,22,23,4.15,5.0,fr,11899,79,504075,1,1,Active Shallow Crust,240.0074,57.99716,0.0,11/23/3983 +1.47476,41.16154,5972,5,20,7,40,12,4.15,15.0,fr,11900,119,504079,1,1,Active Shallow Crust,0.0,89.99038,-90.0,05/20/5972 +1.47476,41.16154,1471,8,23,2,51,13,4.55,5.0,fr,11901,29,504120,1,1,Active Shallow Crust,0.0,89.9898,0.0,08/23/1471 +1.47476,41.16154,7864,1,7,4,56,10,5.35,15.0,fr,11902,157,504217,1,1,Active Shallow Crust,0.0,89.98996,0.0,01/07/7864 +6.94578,50.7464,2682,4,11,12,14,3,3.55,5.0,fr,11903,53,504480,1,1,Active Shallow Crust,0.0,89.98724,0.0,04/11/2682 +6.94578,50.7464,4984,4,23,23,57,52,3.55,15.0,fr,11904,99,504481,1,1,Active Shallow Crust,0.0,89.98724,0.0,04/23/4984 +6.94578,50.7464,2736,5,8,22,28,2,3.55,5.0,fr,11905,54,504486,1,1,Active Shallow Crust,0.0,89.98709,-90.0,05/08/2736 +6.94578,50.7464,1796,7,11,0,20,37,3.65,5.0,fr,11906,35,504492,1,1,Active Shallow Crust,0.0,89.98862,0.0,07/11/1796 +6.94578,50.7464,83,12,14,17,24,58,3.65,15.0,fr,11907,1,504499,1,1,Active Shallow Crust,0.0,89.98849,-90.0,12/14/0083 +6.94578,50.7464,1141,8,14,21,36,11,3.75,15.0,fr,11908,22,504505,1,1,Active Shallow Crust,0.0,89.98986,0.0,08/14/1141 +6.94578,50.7464,7274,6,4,14,7,50,3.85,5.0,fr,11909,145,504516,1,1,Active Shallow Crust,0.0,89.99097,0.0,06/04/7274 +6.94578,50.7464,9353,1,20,12,37,38,3.85,27.5,fr,11910,187,504518,1,1,Active Shallow Crust,0.0,89.99097,0.0,01/20/9353 +6.94578,50.7464,7680,7,9,7,23,0,3.95,5.0,fr,11911,153,504528,1,1,Active Shallow Crust,0.0,89.99195,0.0,07/09/7680 +6.94578,50.7464,3683,3,8,4,30,13,3.95,15.0,fr,11912,73,504529,1,1,Active Shallow Crust,0.0,89.99195,0.0,03/08/3683 +6.94578,50.7464,6934,6,15,6,21,21,4.15,15.0,fr,11913,138,504559,1,1,Active Shallow Crust,0.0,89.9903,-90.0,06/15/6934 +6.94578,50.7464,1992,8,27,14,27,23,4.25,5.0,fr,11914,39,504567,1,1,Active Shallow Crust,240.0081,57.99429,0.0,08/27/1992 +6.94578,50.7464,889,7,20,6,46,12,4.35,5.0,fr,11915,17,504582,1,1,Active Shallow Crust,0.0,89.98972,-90.0,07/20/0889 +6.94578,50.7464,5684,10,6,2,26,4,4.95,27.5,fr,11916,113,504650,1,1,Active Shallow Crust,0.0,89.98981,0.0,10/06/5684 +-0.28056,42.04541,1902,6,25,16,34,34,3.55,27.5,fr,11917,38,504962,1,1,Active Shallow Crust,0.0,89.99017,0.0,06/25/1902 +-0.28056,42.04541,1652,9,16,21,58,24,3.65,5.0,fr,11918,33,504978,1,1,Active Shallow Crust,0.0,89.98988,-90.0,09/16/1652 +-0.28056,42.04541,2913,9,16,20,45,44,4.45,5.0,fr,11919,58,505068,1,1,Active Shallow Crust,0.0,89.99004,0.0,09/16/2913 +3.78166,48.45375,6812,1,29,8,37,20,4.05,15.0,fr,11920,136,505501,1,1,Active Shallow Crust,0.0,89.9906,0.0,01/29/6812 +3.78166,48.45375,9192,1,14,0,2,36,4.45,5.0,fr,11921,183,505548,1,1,Active Shallow Crust,0.0,89.99051,0.0,01/14/9192 +-2.22514,44.73092,390,1,28,14,43,51,3.75,27.5,fr,11922,7,505946,1,1,Active Shallow Crust,0.0,89.98862,0.0,01/28/0390 +-2.22514,44.73092,8955,8,30,20,9,28,4.25,5.0,fr,11923,179,506004,1,1,Active Shallow Crust,0.0,89.9904,0.0,08/30/8955 +-1.77926,47.23155,1003,12,15,2,49,50,3.55,5.0,fr,11924,20,506400,1,4,Active Shallow Crust,0.0,89.98973,0.0,12/15/1003 +-1.77926,47.23155,5597,12,22,5,39,20,3.55,5.0,fr,11925,111,506400,1,4,Active Shallow Crust,0.0,89.98973,0.0,12/22/5597 +-1.77926,47.23155,488,10,27,4,54,26,3.55,5.0,fr,11926,9,506400,1,4,Active Shallow Crust,0.0,89.98973,0.0,10/27/0488 +-1.77926,47.23155,2887,7,21,3,20,20,3.55,5.0,fr,11927,57,506400,1,4,Active Shallow Crust,0.0,89.98973,0.0,07/21/2887 +-1.77926,47.23155,5276,3,12,23,54,57,3.55,15.0,fr,11928,105,506401,1,1,Active Shallow Crust,0.0,89.98973,0.0,03/12/5276 +-1.77926,47.23155,2348,2,23,10,27,21,3.55,5.0,fr,11929,46,506406,1,1,Active Shallow Crust,0.0,89.98961,-90.0,02/23/2348 +-1.77926,47.23155,6074,4,18,10,5,14,3.55,5.0,fr,11930,121,506409,1,1,Active Shallow Crust,128.896,89.99401,0.0,04/18/6074 +-1.77926,47.23155,421,3,24,13,28,17,3.55,27.5,fr,11931,8,506411,1,1,Active Shallow Crust,128.896,89.99401,0.0,03/24/0421 +-1.77926,47.23155,1937,7,11,16,4,33,3.65,5.0,fr,11932,38,506412,1,1,Active Shallow Crust,0.0,89.98932,0.0,07/11/1937 +-1.77926,47.23155,6323,10,7,19,25,1,3.65,15.0,fr,11933,126,506416,1,1,Active Shallow Crust,240.0011,58.01278,0.0,10/07/6323 +-1.77926,47.23155,8985,8,6,19,37,42,3.75,5.0,fr,11934,179,506424,1,1,Active Shallow Crust,0.0,89.99048,0.0,08/06/8985 +-1.77926,47.23155,9198,6,3,8,26,29,3.75,15.0,fr,11935,183,506425,1,2,Active Shallow Crust,0.0,89.99048,0.0,06/03/9198 +-1.77926,47.23155,9186,3,9,0,16,1,3.75,15.0,fr,11936,183,506425,1,2,Active Shallow Crust,0.0,89.99048,0.0,03/09/9186 +-1.77926,47.23155,9082,6,15,13,35,50,3.75,5.0,fr,11937,181,506430,1,1,Active Shallow Crust,0.0,89.99037,-90.0,06/15/9082 +-1.77926,47.23155,7363,2,2,4,26,50,3.85,15.0,fr,11938,147,506437,1,1,Active Shallow Crust,0.0,89.9903,0.0,02/02/7363 +-1.77926,47.23155,8079,12,4,23,36,34,3.85,5.0,fr,11939,161,506445,1,1,Active Shallow Crust,128.8957,89.99333,0.0,12/04/8079 +-1.77926,47.23155,2341,7,2,20,40,29,3.95,5.0,fr,11940,46,506457,1,1,Active Shallow Crust,128.9002,89.99406,0.0,07/02/2341 +-1.77926,47.23155,2022,11,6,7,26,16,4.05,5.0,fr,11941,40,506460,1,2,Active Shallow Crust,0.0,89.99037,0.0,11/06/2022 +-1.77926,47.23155,1650,10,12,4,17,51,4.05,5.0,fr,11942,32,506460,1,2,Active Shallow Crust,0.0,89.99037,0.0,10/12/1650 +-1.77926,47.23155,9487,7,7,1,7,50,4.05,15.0,fr,11943,189,506461,1,1,Active Shallow Crust,0.0,89.99037,0.0,07/07/9487 +-1.77926,47.23155,2914,4,9,1,59,59,4.15,5.0,fr,11944,58,506472,1,1,Active Shallow Crust,0.0,89.9897,0.0,04/09/2914 +-1.77926,47.23155,4804,8,6,23,21,12,4.35,5.0,fr,11945,96,506496,1,1,Active Shallow Crust,0.0,89.98978,0.0,08/06/4804 +-1.77926,47.23155,6863,4,22,12,33,32,4.45,5.0,fr,11946,137,506511,1,1,Active Shallow Crust,240.0055,57.99467,0.0,04/22/6863 +-1.77926,47.23155,5042,7,5,18,44,14,4.65,5.0,fr,11947,100,506532,1,1,Active Shallow Crust,0.0,89.98987,0.0,07/05/5042 +-1.77926,47.23155,5507,4,26,17,22,56,4.65,27.5,fr,11948,110,506537,1,1,Active Shallow Crust,240.0111,57.99432,0.0,04/26/5507 +-1.77926,47.23155,9431,12,27,14,44,2,5.25,5.0,fr,11949,188,506604,1,1,Active Shallow Crust,0.0,89.99008,0.0,12/27/9431 +-1.77926,47.23155,6994,5,28,13,34,32,5.95,15.0,fr,11950,139,506698,1,1,Active Shallow Crust,128.8638,89.99013,0.0,05/28/6994 +6.45714,49.44561,6421,7,26,0,13,58,3.55,15.0,fr,11951,128,506881,1,1,Active Shallow Crust,0.0,89.98689,0.0,07/26/6421 +6.45714,49.44561,6441,10,4,19,44,10,3.55,5.0,fr,11952,128,506883,1,1,Active Shallow Crust,240.0124,57.9982,0.0,10/04/6441 +6.45714,49.44561,9344,3,10,10,15,10,3.55,5.0,fr,11953,186,506889,1,1,Active Shallow Crust,128.8959,89.99345,0.0,03/10/9344 +6.45714,49.44561,6515,10,27,18,24,54,3.65,5.0,fr,11954,130,506892,1,1,Active Shallow Crust,0.0,89.98831,0.0,10/27/6515 +6.45714,49.44561,4467,5,20,7,21,25,3.75,5.0,fr,11955,89,506913,1,1,Active Shallow Crust,128.8965,89.96754,0.0,05/20/4467 +6.45714,49.44561,5318,11,4,0,32,53,3.95,15.0,fr,11956,106,506929,1,1,Active Shallow Crust,0.0,89.99173,0.0,11/04/5318 +5.60619,50.33273,246,3,5,10,50,20,3.55,5.0,fr,11957,4,507360,1,1,Active Shallow Crust,0.0,89.98713,0.0,03/05/0246 +5.60619,50.33273,3425,5,17,20,16,41,3.55,15.0,fr,11958,68,507361,1,1,Active Shallow Crust,0.0,89.98713,0.0,05/17/3425 +5.60619,50.33273,8969,3,18,9,14,38,3.55,27.5,fr,11959,179,507362,1,1,Active Shallow Crust,0.0,89.98713,0.0,03/18/8969 +5.60619,50.33273,5421,11,3,5,43,29,3.55,15.0,fr,11960,108,507370,1,1,Active Shallow Crust,128.8965,89.99356,0.0,11/03/5421 +5.60619,50.33273,2733,10,23,12,34,29,3.65,5.0,fr,11961,54,507372,1,3,Active Shallow Crust,0.0,89.98853,0.0,10/23/2733 +5.60619,50.33273,8918,11,13,0,58,13,3.65,5.0,fr,11962,178,507372,1,3,Active Shallow Crust,0.0,89.98853,0.0,11/13/8918 +5.60619,50.33273,2917,7,29,8,48,38,3.65,5.0,fr,11963,58,507372,1,3,Active Shallow Crust,0.0,89.98853,0.0,07/29/2917 +5.60619,50.33273,3991,1,1,17,28,38,3.65,15.0,fr,11964,79,507373,1,3,Active Shallow Crust,0.0,89.98853,0.0,01/01/3991 +5.60619,50.33273,8789,9,19,19,25,12,3.65,15.0,fr,11965,175,507373,1,3,Active Shallow Crust,0.0,89.98853,0.0,09/19/8789 +5.60619,50.33273,68,9,23,22,22,48,3.65,15.0,fr,11966,1,507373,1,3,Active Shallow Crust,0.0,89.98853,0.0,09/23/0068 +5.60619,50.33273,1650,5,22,10,43,54,3.65,15.0,fr,11967,32,507382,1,1,Active Shallow Crust,128.8999,89.9636,0.0,05/22/1650 +5.60619,50.33273,9412,9,2,15,17,13,3.75,5.0,fr,11968,188,507384,1,1,Active Shallow Crust,0.0,89.98978,0.0,09/02/9412 +5.60619,50.33273,9048,10,4,2,53,49,3.75,15.0,fr,11969,180,507385,1,1,Active Shallow Crust,0.0,89.98978,0.0,10/04/9048 +5.60619,50.33273,7502,6,16,9,31,28,3.85,5.0,fr,11970,150,507396,1,2,Active Shallow Crust,0.0,89.99088,0.0,06/16/7502 +5.60619,50.33273,4560,5,16,1,45,44,3.85,5.0,fr,11971,91,507396,1,2,Active Shallow Crust,0.0,89.99088,0.0,05/16/4560 +5.60619,50.33273,1252,3,17,7,42,33,3.95,5.0,fr,11972,25,507408,1,1,Active Shallow Crust,0.0,89.99187,0.0,03/17/1252 +5.60619,50.33273,4805,11,28,17,56,46,4.05,15.0,fr,11973,96,507421,1,1,Active Shallow Crust,0.0,89.98914,0.0,11/28/4805 +5.60619,50.33273,2196,11,21,2,4,41,4.35,5.0,fr,11974,43,507456,1,2,Active Shallow Crust,0.0,89.98975,0.0,11/21/2196 +5.60619,50.33273,4492,8,12,5,50,2,4.35,5.0,fr,11975,89,507456,1,2,Active Shallow Crust,0.0,89.98975,0.0,08/12/4492 +5.60619,50.33273,6551,4,2,12,19,37,4.35,15.0,fr,11976,131,507457,1,1,Active Shallow Crust,0.0,89.98975,0.0,04/02/6551 +5.60619,50.33273,1890,10,30,18,50,15,4.35,27.5,fr,11977,37,507458,1,1,Active Shallow Crust,0.0,89.98975,0.0,10/30/1890 +5.60619,50.33273,4586,3,24,13,15,51,4.45,5.0,fr,11978,91,507477,1,1,Active Shallow Crust,128.891,89.99315,0.0,03/24/4586 +5.60619,50.33273,1974,6,10,21,3,51,5.25,5.0,fr,11979,39,507564,1,1,Active Shallow Crust,0.0,89.99,0.0,06/10/1974 +0.03641,46.83513,9993,8,6,12,36,13,3.55,5.0,fr,11980,199,507840,1,2,Active Shallow Crust,0.0,89.98997,0.0,08/06/9993 +0.03641,46.83513,9390,9,12,14,23,34,3.55,5.0,fr,11981,187,507840,1,2,Active Shallow Crust,0.0,89.98997,0.0,09/12/9390 +0.03641,46.83513,6584,6,12,21,51,45,3.55,5.0,fr,11982,131,507843,1,2,Active Shallow Crust,240.0122,57.99817,0.0,06/12/6584 +0.03641,46.83513,5492,5,17,18,13,40,3.55,5.0,fr,11983,109,507843,1,2,Active Shallow Crust,240.0122,57.99817,0.0,05/17/5492 +0.03641,46.83513,2361,12,30,17,7,25,3.55,15.0,fr,11984,47,507850,1,1,Active Shallow Crust,128.8962,89.99372,0.0,12/30/2361 +0.03641,46.83513,7504,11,18,11,3,36,3.65,5.0,fr,11985,150,507852,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/18/7504 +0.03641,46.83513,6845,2,4,7,48,30,3.65,15.0,fr,11986,136,507853,1,2,Active Shallow Crust,0.0,89.99001,0.0,02/04/6845 +0.03641,46.83513,3772,2,3,13,34,32,3.65,15.0,fr,11987,75,507853,1,2,Active Shallow Crust,0.0,89.99001,0.0,02/03/3772 +0.03641,46.83513,1855,9,25,22,39,43,3.75,5.0,fr,11988,37,507864,1,1,Active Shallow Crust,0.0,89.98998,0.0,09/25/1855 +0.03641,46.83513,9551,2,17,0,34,53,3.75,27.5,fr,11989,191,507869,1,1,Active Shallow Crust,240.0084,58.01757,0.0,02/17/9551 +0.03641,46.83513,8792,2,23,0,20,44,3.85,5.0,fr,11990,175,507876,1,2,Active Shallow Crust,0.0,89.99001,0.0,02/23/8792 +0.03641,46.83513,6383,3,9,0,7,31,3.85,5.0,fr,11991,127,507876,1,2,Active Shallow Crust,0.0,89.99001,0.0,03/09/6383 +0.03641,46.83513,7763,3,25,16,49,27,3.85,15.0,fr,11992,155,507877,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/25/7763 +0.03641,46.83513,5960,4,22,20,12,6,3.85,27.5,fr,11993,119,507878,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/22/5960 +0.03641,46.83513,4830,7,30,17,43,41,3.85,5.0,fr,11994,96,507879,1,1,Active Shallow Crust,240.0109,57.99781,0.0,07/30/4830 +0.03641,46.83513,4493,9,12,19,51,9,3.85,27.5,fr,11995,89,507884,1,1,Active Shallow Crust,0.0,89.99001,-90.0,09/12/4493 +0.03641,46.83513,8843,2,7,14,21,20,3.95,5.0,fr,11996,176,507888,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/07/8843 +0.03641,46.83513,2127,4,16,18,23,51,3.95,15.0,fr,11997,42,507889,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/16/2127 +0.03641,46.83513,9822,9,8,23,35,27,3.95,27.5,fr,11998,196,507890,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/08/9822 +0.03641,46.83513,5449,2,3,8,18,12,3.95,5.0,fr,11999,108,507894,1,1,Active Shallow Crust,0.0,89.98999,-90.0,02/03/5449 +0.03641,46.83513,6320,10,21,1,32,21,3.95,27.5,fr,12000,126,507899,1,1,Active Shallow Crust,128.9003,89.99373,0.0,10/21/6320 +0.03641,46.83513,4488,11,13,7,38,20,4.05,5.0,fr,12001,89,507900,1,1,Active Shallow Crust,0.0,89.99,0.0,11/13/4488 +0.03641,46.83513,3241,1,20,7,9,39,4.05,15.0,fr,12002,64,507901,1,1,Active Shallow Crust,0.0,89.99,0.0,01/20/3241 +0.03641,46.83513,8030,10,9,14,11,44,4.05,27.5,fr,12003,160,507902,1,1,Active Shallow Crust,0.0,89.99,0.0,10/09/8030 +0.03641,46.83513,4660,8,9,10,46,25,4.35,15.0,fr,12004,93,507940,1,1,Active Shallow Crust,240.0085,57.99595,0.0,08/09/4660 +0.03641,46.83513,321,9,4,14,38,46,4.45,5.0,fr,12005,6,507957,1,1,Active Shallow Crust,128.8921,89.99372,0.0,09/04/0321 +4.97694,40.87154,6074,7,28,18,55,11,3.65,5.0,fr,12006,121,508332,1,1,Active Shallow Crust,0.0,89.9932,0.0,07/28/6074 +4.97694,40.87154,2534,8,14,10,17,1,3.65,5.0,fr,12007,50,508335,1,1,Active Shallow Crust,240.0004,58.01231,0.0,08/14/2534 +4.97694,40.87154,4776,4,18,0,47,55,4.25,5.0,fr,12008,95,508407,1,1,Active Shallow Crust,240.0068,57.99371,0.0,04/18/4776 +4.97694,40.87154,135,4,1,16,17,34,4.25,15.0,fr,12009,2,508408,1,1,Active Shallow Crust,240.0068,57.99371,0.0,04/01/0135 +4.10292,47.35724,5549,2,19,10,24,56,3.55,5.0,fr,12010,110,508800,1,1,Active Shallow Crust,0.0,89.99317,0.0,02/19/5549 +4.10292,47.35724,5192,8,2,13,24,50,3.65,5.0,fr,12011,103,508812,1,1,Active Shallow Crust,0.0,89.98782,0.0,08/02/5192 +4.10292,47.35724,4347,11,5,11,26,16,3.75,5.0,fr,12012,86,508827,1,1,Active Shallow Crust,240.0089,58.01696,0.0,11/05/4347 +4.10292,47.35724,8144,2,22,11,5,11,4.05,5.0,fr,12013,162,508860,1,1,Active Shallow Crust,0.0,89.98847,0.0,02/22/8144 +4.10292,47.35724,7096,9,14,3,20,41,4.05,5.0,fr,12014,141,508863,1,1,Active Shallow Crust,240.0065,58.00551,0.0,09/14/7096 +7.10388,48.2614,6437,4,9,14,45,17,3.55,5.0,fr,12015,128,509280,1,1,Active Shallow Crust,0.0,89.99329,0.0,04/09/6437 +7.10388,48.2614,5776,1,20,8,48,5,3.65,5.0,fr,12016,115,509292,1,2,Active Shallow Crust,0.0,89.98804,0.0,01/20/5776 +7.10388,48.2614,8444,4,20,14,31,13,3.65,5.0,fr,12017,168,509292,1,2,Active Shallow Crust,0.0,89.98804,0.0,04/20/8444 +7.10388,48.2614,2061,3,15,1,29,18,3.65,15.0,fr,12018,41,509296,1,2,Active Shallow Crust,240.0013,58.01365,0.0,03/15/2061 +7.10388,48.2614,4536,12,20,15,19,48,3.65,15.0,fr,12019,90,509296,1,2,Active Shallow Crust,240.0013,58.01365,0.0,12/20/4536 +7.10388,48.2614,4427,6,1,22,52,43,3.75,5.0,fr,12020,88,509304,1,2,Active Shallow Crust,0.0,89.98933,0.0,06/01/4427 +7.10388,48.2614,3832,7,30,0,41,28,3.75,5.0,fr,12021,76,509304,1,2,Active Shallow Crust,0.0,89.98933,0.0,07/30/3832 +7.10388,48.2614,7821,8,19,15,2,47,3.85,5.0,fr,12022,156,509316,1,1,Active Shallow Crust,0.0,89.99049,0.0,08/19/7821 +7.10388,48.2614,6302,2,4,14,4,6,4.15,5.0,fr,12023,126,509352,1,1,Active Shallow Crust,0.0,89.98991,0.0,02/04/6302 +7.10388,48.2614,8103,6,14,20,31,58,4.15,15.0,fr,12024,162,509362,1,1,Active Shallow Crust,128.8983,89.99327,0.0,06/14/8103 +7.10388,48.2614,2424,6,1,13,14,30,4.25,5.0,fr,12025,48,509364,1,1,Active Shallow Crust,0.0,89.991,0.0,06/01/2424 +7.10388,48.2614,3466,10,5,20,22,5,4.35,15.0,fr,12026,69,509377,1,1,Active Shallow Crust,0.0,89.98931,0.0,10/05/3466 +7.10388,48.2614,4123,12,10,23,39,57,4.45,15.0,fr,12027,82,509389,1,1,Active Shallow Crust,0.0,89.99047,0.0,12/10/4123 +7.10388,48.2614,7362,5,9,2,24,35,4.65,5.0,fr,12028,147,509412,1,1,Active Shallow Crust,0.0,89.99054,0.0,05/09/7362 +7.10388,48.2614,7628,10,17,5,17,46,4.75,15.0,fr,12029,152,509425,1,1,Active Shallow Crust,0.0,89.98988,0.0,10/17/7628 +7.10388,48.2614,9842,10,14,10,14,53,4.75,5.0,fr,12030,196,509433,1,1,Active Shallow Crust,128.8883,89.98827,0.0,10/14/9842 +7.10388,48.2614,8992,7,28,6,23,24,5.45,5.0,fr,12031,179,509508,1,1,Active Shallow Crust,0.0,89.9902,0.0,07/28/8992 +7.10388,48.2614,6906,3,7,21,23,41,6.05,5.357596,fr,12032,138,509580,1,1,Active Shallow Crust,0.0,89.98999,0.0,03/07/6906 +-1.38659,45.63553,915,4,18,13,44,20,3.65,5.0,fr,12033,18,509772,1,1,Active Shallow Crust,0.0,89.99057,0.0,04/18/0915 +-1.38659,45.63553,3019,10,10,9,23,15,4.05,5.0,fr,12034,60,509820,1,1,Active Shallow Crust,0.0,89.99009,0.0,10/10/3019 +4.66735,47.30975,6310,9,28,3,40,4,3.55,5.0,fr,12035,126,510240,1,2,Active Shallow Crust,0.0,89.99316,0.0,09/28/6310 +4.66735,47.30975,8503,4,27,0,33,18,3.55,5.0,fr,12036,170,510240,1,2,Active Shallow Crust,0.0,89.99316,0.0,04/27/8503 +4.66735,47.30975,6037,3,25,3,32,26,3.55,15.0,fr,12037,120,510241,1,1,Active Shallow Crust,0.0,89.99316,0.0,03/25/6037 +4.66735,47.30975,9553,2,4,21,25,50,3.55,5.0,fr,12038,191,510249,1,1,Active Shallow Crust,128.896,89.99316,0.0,02/04/9553 +4.66735,47.30975,8153,5,31,14,11,34,3.65,5.0,fr,12039,163,510252,1,1,Active Shallow Crust,0.0,89.98782,0.0,05/31/8153 +4.66735,47.30975,3107,4,14,5,54,6,3.65,15.0,fr,12040,62,510253,1,1,Active Shallow Crust,0.0,89.98782,0.0,04/14/3107 +4.66735,47.30975,273,8,3,18,27,3,3.75,5.0,fr,12041,5,510264,1,2,Active Shallow Crust,0.0,89.98914,0.0,08/03/0273 +4.66735,47.30975,9722,7,28,17,26,29,3.75,5.0,fr,12042,194,510264,1,2,Active Shallow Crust,0.0,89.98914,0.0,07/28/9722 +4.66735,47.30975,6153,6,29,23,17,39,3.75,5.0,fr,12043,123,510267,1,2,Active Shallow Crust,240.0081,58.01808,0.0,06/29/6153 +4.66735,47.30975,1432,11,27,9,6,27,3.75,5.0,fr,12044,28,510267,1,2,Active Shallow Crust,240.0081,58.01808,0.0,11/27/1432 +4.66735,47.30975,6531,12,23,3,58,55,3.85,5.0,fr,12045,130,510279,1,1,Active Shallow Crust,240.0111,57.99834,0.0,12/23/6531 +4.66735,47.30975,8811,2,22,15,8,32,3.95,15.0,fr,12046,176,510289,1,1,Active Shallow Crust,0.0,89.99137,0.0,02/22/8811 +4.66417,47.94753,7649,3,11,18,23,15,3.55,5.0,fr,12047,152,510726,1,1,Active Shallow Crust,0.0,89.99316,-90.0,03/11/7649 +4.66417,47.94753,7222,10,10,10,30,50,3.55,27.5,fr,12048,144,510728,1,1,Active Shallow Crust,0.0,89.99316,-90.0,10/10/7222 +4.66417,47.94753,9023,9,8,9,10,26,3.65,5.0,fr,12049,180,510735,1,1,Active Shallow Crust,240.0012,58.0125,0.0,09/08/9023 +4.66417,47.94753,7767,9,9,15,38,57,3.65,5.0,fr,12050,155,510738,1,1,Active Shallow Crust,0.0,89.98782,-90.0,09/09/7767 +4.66417,47.94753,2683,5,28,14,7,13,3.75,15.0,fr,12051,53,510754,1,1,Active Shallow Crust,128.8964,89.96751,0.0,05/28/2683 +4.66417,47.94753,6692,3,31,16,4,52,4.25,15.0,fr,12052,133,510808,1,1,Active Shallow Crust,240.0076,57.99468,0.0,03/31/6692 +4.66417,47.94753,6196,2,23,1,31,17,4.65,5.0,fr,12053,123,510852,1,1,Active Shallow Crust,0.0,89.99048,0.0,02/23/6196 +-2.63641,45.92545,1355,8,6,13,15,41,4.25,15.0,fr,12054,27,511765,1,1,Active Shallow Crust,0.0,89.9906,0.0,08/06/1355 +2.61384,50.52156,8400,6,14,7,0,58,3.55,15.0,fr,12055,167,512161,1,1,Active Shallow Crust,0.0,89.99038,0.0,06/14/8400 +2.61384,50.52156,7712,10,28,21,26,17,3.65,5.0,fr,12056,154,512172,1,1,Active Shallow Crust,0.0,89.98857,0.0,10/28/7712 +2.61384,50.52156,1426,11,24,21,15,21,3.75,5.0,fr,12057,28,512184,1,1,Active Shallow Crust,0.0,89.98981,0.0,11/24/1426 +2.61384,50.52156,8681,12,9,14,23,39,3.75,5.0,fr,12058,173,512187,1,1,Active Shallow Crust,240.009,58.0175,0.0,12/09/8681 +2.61384,50.52156,2236,7,14,0,15,3,3.75,15.0,fr,12059,44,512188,1,1,Active Shallow Crust,240.009,58.0175,0.0,07/14/2236 +2.61384,50.52156,6990,1,8,23,4,19,3.85,27.5,fr,12060,139,512198,1,1,Active Shallow Crust,0.0,89.99092,0.0,01/08/6990 +2.61384,50.52156,6298,1,6,5,48,43,3.95,5.0,fr,12061,125,512208,1,1,Active Shallow Crust,0.0,89.98988,0.0,01/06/6298 +2.61384,50.52156,7882,10,24,19,41,15,4.15,5.0,fr,12062,157,512238,1,1,Active Shallow Crust,0.0,89.99025,-90.0,10/24/7882 +2.61384,50.52156,9952,2,25,18,10,30,4.25,5.0,fr,12063,199,512244,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/25/9952 +2.61384,50.52156,9290,10,6,10,8,59,4.35,5.0,fr,12064,185,512265,1,1,Active Shallow Crust,128.897,89.98272,0.0,10/06/9290 +0.49407,47.66904,9710,3,30,5,42,7,3.55,27.5,fr,12065,194,512642,1,1,Active Shallow Crust,0.0,89.98981,0.0,03/30/9710 +0.49407,47.66904,9158,12,22,18,49,11,3.65,5.0,fr,12066,183,512652,1,3,Active Shallow Crust,0.0,89.99017,0.0,12/22/9158 +0.49407,47.66904,8570,1,2,3,17,19,3.65,5.0,fr,12067,171,512652,1,3,Active Shallow Crust,0.0,89.99017,0.0,01/02/8570 +0.49407,47.66904,1023,5,25,9,0,41,3.65,5.0,fr,12068,20,512652,1,3,Active Shallow Crust,0.0,89.99017,0.0,05/25/1023 +0.49407,47.66904,6656,3,24,23,3,14,3.75,27.5,fr,12069,133,512666,1,1,Active Shallow Crust,0.0,89.98988,0.0,03/24/6656 +0.49407,47.66904,2670,1,5,10,29,37,3.85,5.0,fr,12070,53,512685,1,1,Active Shallow Crust,128.8956,89.99369,0.0,01/05/2670 +0.49407,47.66904,3495,8,26,22,37,27,4.05,27.5,fr,12071,69,512705,1,1,Active Shallow Crust,240.0061,58.00587,0.0,08/26/3495 +0.49407,47.66904,8167,12,3,22,13,50,4.85,5.0,fr,12072,163,512796,1,1,Active Shallow Crust,0.0,89.99002,0.0,12/03/8167 +-4.26002,48.9045,8953,11,25,21,21,16,3.65,5.0,fr,12073,179,513132,1,1,Active Shallow Crust,0.0,89.98818,0.0,11/25/8953 +-4.26002,48.9045,6113,6,11,7,1,15,3.75,5.0,fr,12074,122,513144,1,2,Active Shallow Crust,0.0,89.98947,0.0,06/11/6113 +-4.26002,48.9045,1349,9,26,8,40,54,3.75,5.0,fr,12075,26,513144,1,2,Active Shallow Crust,0.0,89.98947,0.0,09/26/1349 +-4.26002,48.9045,1831,3,30,0,3,7,3.95,5.0,fr,12076,36,513168,1,1,Active Shallow Crust,0.0,89.99164,0.0,03/30/1831 +-4.26002,48.9045,7447,9,29,18,5,11,4.05,5.0,fr,12077,148,513180,1,1,Active Shallow Crust,0.0,89.98882,0.0,09/29/7447 +-4.26002,48.9045,9440,9,7,23,31,20,4.45,5.0,fr,12078,188,513237,1,1,Active Shallow Crust,128.8913,89.99412,0.0,09/07/9440 +-4.26002,48.9045,2435,12,29,16,25,29,4.95,5.0,fr,12079,48,513297,1,1,Active Shallow Crust,128.8885,89.98999,0.0,12/29/2435 +-4.26002,48.9045,6291,12,9,8,12,23,5.05,5.0,fr,12080,125,513306,1,1,Active Shallow Crust,0.0,89.99046,-90.0,12/09/6291 +-4.26002,48.9045,8099,1,13,16,11,49,5.35,5.0,fr,12081,161,513336,1,1,Active Shallow Crust,0.0,89.98998,0.0,01/13/8099 +-0.02132,50.41596,3201,3,30,11,4,35,3.55,15.0,fr,12082,64,513607,1,1,Active Shallow Crust,0.0,89.99,-90.0,03/30/3201 +-0.02132,50.41596,5317,6,16,13,34,40,4.15,27.5,fr,12083,106,513674,1,1,Active Shallow Crust,0.0,89.99,0.0,06/16/5317 +-0.02132,50.41596,8164,8,23,8,50,32,4.15,5.0,fr,12084,163,513675,1,1,Active Shallow Crust,240.0092,57.99746,0.0,08/23/8164 +-0.02132,50.41596,7359,4,12,6,39,43,4.25,27.5,fr,12085,147,513692,1,1,Active Shallow Crust,0.0,89.99,-90.0,04/12/7359 +-0.02132,50.41596,2367,5,8,15,52,58,4.35,15.0,fr,12086,47,513697,1,1,Active Shallow Crust,0.0,89.99,0.0,05/08/2367 +-3.11215,43.24522,2609,9,14,13,59,50,3.55,5.0,fr,12087,52,514080,1,2,Active Shallow Crust,0.0,89.98898,0.0,09/14/2609 +-3.11215,43.24522,1782,6,26,5,38,11,3.55,5.0,fr,12088,35,514080,1,2,Active Shallow Crust,0.0,89.98898,0.0,06/26/1782 +-3.11215,43.24522,2384,12,14,14,0,52,3.55,5.0,fr,12089,47,514089,1,1,Active Shallow Crust,128.8965,89.99265,0.0,12/14/2384 +-3.11215,43.24522,8651,7,5,12,27,55,3.75,5.0,fr,12090,173,514104,1,1,Active Shallow Crust,0.0,89.99125,0.0,07/05/8651 +-3.11215,43.24522,8194,7,26,19,59,25,3.75,15.0,fr,12091,163,514105,1,1,Active Shallow Crust,0.0,89.99125,0.0,07/26/8194 +-3.11215,43.24522,5462,4,10,4,21,3,3.75,27.5,fr,12092,109,514106,1,1,Active Shallow Crust,0.0,89.99125,0.0,04/10/5462 +-3.11215,43.24522,3824,4,30,14,12,18,3.85,5.0,fr,12093,76,514116,1,2,Active Shallow Crust,0.0,89.9896,0.0,04/30/3824 +-3.11215,43.24522,9756,4,22,17,44,42,3.85,5.0,fr,12094,195,514116,1,2,Active Shallow Crust,0.0,89.9896,0.0,04/22/9756 +-3.11215,43.24522,153,11,28,12,6,44,3.85,27.5,fr,12095,3,514118,1,1,Active Shallow Crust,0.0,89.9896,0.0,11/28/0153 +-3.11215,43.24522,4433,5,24,10,27,37,3.85,15.0,fr,12096,88,514123,1,1,Active Shallow Crust,0.0,89.98948,-90.0,05/24/4433 +-3.11215,43.24522,497,5,30,10,14,26,3.95,5.0,fr,12097,9,514128,1,1,Active Shallow Crust,0.0,89.99073,0.0,05/30/0497 +-3.11215,43.24522,5659,8,14,11,25,39,4.25,15.0,fr,12098,113,514168,1,1,Active Shallow Crust,240.0069,57.99379,0.0,08/14/5659 +-3.11215,43.24522,78,9,23,18,11,1,5.65,15.0,fr,12099,1,514333,1,1,Active Shallow Crust,0.0,89.98985,0.0,09/23/0078 +-6.33484,47.16637,7420,2,17,11,54,4,3.55,5.0,fr,12100,148,514560,1,1,Active Shallow Crust,0.0,89.99314,0.0,02/17/7420 +0.77313,43.78595,6077,11,26,22,44,14,3.65,15.0,fr,12101,121,515053,1,1,Active Shallow Crust,0.0,89.99026,0.0,11/26/6077 +0.77313,43.78595,1688,7,4,20,37,56,3.85,15.0,fr,12102,33,515080,1,1,Active Shallow Crust,240.0105,57.9978,0.0,07/04/1688 +0.77313,43.78595,6504,1,29,23,23,47,4.35,5.0,fr,12103,130,515145,1,1,Active Shallow Crust,128.8984,89.98273,0.0,01/29/6504 +6.886,46.69552,3330,1,24,18,3,36,3.55,5.0,fr,12104,66,515520,1,6,Active Shallow Crust,0.0,89.99308,0.0,01/24/3330 +6.886,46.69552,3076,4,15,18,47,37,3.55,5.0,fr,12105,61,515520,1,6,Active Shallow Crust,0.0,89.99308,0.0,04/15/3076 +6.886,46.69552,7384,10,11,0,53,34,3.55,5.0,fr,12106,147,515520,1,6,Active Shallow Crust,0.0,89.99308,0.0,10/11/7384 +6.886,46.69552,8122,7,9,13,31,15,3.55,5.0,fr,12107,162,515520,1,6,Active Shallow Crust,0.0,89.99308,0.0,07/09/8122 +6.886,46.69552,6689,2,15,16,44,8,3.55,5.0,fr,12108,133,515520,1,6,Active Shallow Crust,0.0,89.99308,0.0,02/15/6689 +6.886,46.69552,3268,11,22,1,5,21,3.55,5.0,fr,12109,65,515520,1,6,Active Shallow Crust,0.0,89.99308,0.0,11/22/3268 +6.886,46.69552,2150,2,27,6,1,26,3.55,15.0,fr,12110,42,515521,1,1,Active Shallow Crust,0.0,89.99308,0.0,02/27/2150 +6.886,46.69552,2043,1,20,5,36,11,3.55,5.0,fr,12111,40,515523,1,4,Active Shallow Crust,240.0121,57.99807,0.0,01/20/2043 +6.886,46.69552,4083,10,2,20,31,50,3.55,5.0,fr,12112,81,515523,1,4,Active Shallow Crust,240.0121,57.99807,0.0,10/02/4083 +6.886,46.69552,4251,2,28,19,21,4,3.55,5.0,fr,12113,85,515523,1,4,Active Shallow Crust,240.0121,57.99807,0.0,02/28/4251 +6.886,46.69552,1610,7,25,19,36,38,3.55,5.0,fr,12114,32,515523,1,4,Active Shallow Crust,240.0121,57.99807,0.0,07/25/1610 +6.886,46.69552,8927,9,1,22,47,23,3.55,15.0,fr,12115,178,515524,1,1,Active Shallow Crust,240.0121,57.99807,0.0,09/01/8927 +6.886,46.69552,7039,6,21,0,46,33,3.55,27.5,fr,12116,140,515528,1,1,Active Shallow Crust,0.0,89.993,-90.0,06/21/7039 +6.886,46.69552,2338,10,24,5,6,13,3.55,5.0,fr,12117,46,515529,1,1,Active Shallow Crust,128.8958,89.99309,0.0,10/24/2338 +6.886,46.69552,6306,2,20,14,55,50,3.55,27.5,fr,12118,126,515531,1,1,Active Shallow Crust,128.8958,89.99309,0.0,02/20/6306 +6.886,46.69552,8816,12,17,16,38,20,3.65,5.0,fr,12119,176,515532,1,5,Active Shallow Crust,0.0,89.98767,0.0,12/17/8816 +6.886,46.69552,1711,10,4,3,33,5,3.65,5.0,fr,12120,34,515532,1,5,Active Shallow Crust,0.0,89.98767,0.0,10/04/1711 +6.886,46.69552,4003,10,5,21,7,47,3.65,5.0,fr,12121,80,515532,1,5,Active Shallow Crust,0.0,89.98767,0.0,10/05/4003 +6.886,46.69552,3424,9,5,1,28,38,3.65,5.0,fr,12122,68,515532,1,5,Active Shallow Crust,0.0,89.98767,0.0,09/05/3424 +6.886,46.69552,5944,7,28,15,37,19,3.65,5.0,fr,12123,118,515532,1,5,Active Shallow Crust,0.0,89.98767,0.0,07/28/5944 +6.886,46.69552,6855,11,14,20,20,21,3.65,15.0,fr,12124,137,515533,1,1,Active Shallow Crust,0.0,89.98767,0.0,11/14/6855 +6.886,46.69552,2269,1,1,12,58,35,3.65,5.0,fr,12125,45,515535,1,1,Active Shallow Crust,240.0013,58.01232,0.0,01/01/2269 +6.886,46.69552,8170,12,31,10,9,39,3.65,15.0,fr,12126,163,515536,1,1,Active Shallow Crust,240.0013,58.01232,0.0,12/31/8170 +6.886,46.69552,429,9,2,10,53,57,3.65,15.0,fr,12127,8,515539,1,1,Active Shallow Crust,0.0,89.98753,-90.0,09/02/0429 +6.886,46.69552,9482,2,22,15,7,33,3.65,5.0,fr,12128,189,515541,1,1,Active Shallow Crust,128.9008,89.96353,0.0,02/22/9482 +6.886,46.69552,1364,4,10,9,46,33,3.75,5.0,fr,12129,27,515544,1,6,Active Shallow Crust,0.0,89.98901,0.0,04/10/1364 +6.886,46.69552,2527,9,30,3,53,31,3.75,5.0,fr,12130,50,515544,1,6,Active Shallow Crust,0.0,89.98901,0.0,09/30/2527 +6.886,46.69552,1082,4,5,18,54,58,3.75,5.0,fr,12131,21,515544,1,6,Active Shallow Crust,0.0,89.98901,0.0,04/05/1082 +6.886,46.69552,7566,3,9,21,58,3,3.75,5.0,fr,12132,151,515544,1,6,Active Shallow Crust,0.0,89.98901,0.0,03/09/7566 +6.886,46.69552,9230,1,13,6,21,28,3.75,5.0,fr,12133,184,515544,1,6,Active Shallow Crust,0.0,89.98901,0.0,01/13/9230 +6.886,46.69552,5447,7,23,17,14,46,3.75,5.0,fr,12134,108,515544,1,6,Active Shallow Crust,0.0,89.98901,0.0,07/23/5447 +6.886,46.69552,2218,6,29,11,38,17,3.75,15.0,fr,12135,44,515545,1,1,Active Shallow Crust,0.0,89.98901,0.0,06/29/2218 +6.886,46.69552,217,10,21,21,14,40,3.75,5.0,fr,12136,4,515550,1,1,Active Shallow Crust,0.0,89.98888,-90.0,10/21/0217 +6.886,46.69552,9553,4,13,9,40,20,3.75,5.0,fr,12137,191,515553,1,1,Active Shallow Crust,128.8959,89.96749,0.0,04/13/9553 +6.886,46.69552,4404,6,28,14,31,56,3.75,15.0,fr,12138,88,515554,1,1,Active Shallow Crust,128.8959,89.96749,0.0,06/28/4404 +6.886,46.69552,2911,6,28,11,26,21,3.85,5.0,fr,12139,58,515556,1,3,Active Shallow Crust,0.0,89.9902,0.0,06/28/2911 +6.886,46.69552,4252,4,9,0,57,7,3.85,5.0,fr,12140,85,515556,1,3,Active Shallow Crust,0.0,89.9902,0.0,04/09/4252 +6.886,46.69552,8306,6,14,9,56,22,3.85,5.0,fr,12141,166,515556,1,3,Active Shallow Crust,0.0,89.9902,0.0,06/14/8306 +6.886,46.69552,8597,10,17,10,30,11,3.85,15.0,fr,12142,171,515557,1,2,Active Shallow Crust,0.0,89.9902,0.0,10/17/8597 +6.886,46.69552,4751,11,3,19,15,57,3.85,15.0,fr,12143,95,515557,1,2,Active Shallow Crust,0.0,89.9902,0.0,11/03/4751 +6.886,46.69552,4961,8,18,21,25,16,3.85,15.0,fr,12144,99,515563,1,1,Active Shallow Crust,0.0,89.9901,-90.0,08/18/4961 +6.886,46.69552,9122,3,31,18,6,35,3.85,27.5,fr,12145,182,515564,1,1,Active Shallow Crust,0.0,89.9901,-90.0,03/31/9122 +6.886,46.69552,5262,4,12,14,49,59,3.95,5.0,fr,12146,105,515568,1,3,Active Shallow Crust,0.0,89.99127,0.0,04/12/5262 +6.886,46.69552,8832,10,23,2,11,59,3.95,5.0,fr,12147,176,515568,1,3,Active Shallow Crust,0.0,89.99127,0.0,10/23/8832 +6.886,46.69552,6506,12,9,15,38,38,3.95,5.0,fr,12148,130,515568,1,3,Active Shallow Crust,0.0,89.99127,0.0,12/09/6506 +6.886,46.69552,3353,1,16,19,6,28,3.95,15.0,fr,12149,67,515569,1,2,Active Shallow Crust,0.0,89.99127,0.0,01/16/3353 +6.886,46.69552,2810,4,30,20,41,43,3.95,15.0,fr,12150,56,515569,1,2,Active Shallow Crust,0.0,89.99127,0.0,04/30/2810 +6.886,46.69552,5676,11,13,15,12,27,3.95,27.5,fr,12151,113,515570,1,2,Active Shallow Crust,0.0,89.99127,0.0,11/13/5676 +6.886,46.69552,9895,10,28,9,15,8,3.95,27.5,fr,12152,197,515570,1,2,Active Shallow Crust,0.0,89.99127,0.0,10/28/9895 +6.886,46.69552,6428,10,18,14,2,59,3.95,5.0,fr,12153,128,515574,1,2,Active Shallow Crust,0.0,89.99117,-90.0,10/18/6428 +6.886,46.69552,183,12,12,7,14,17,3.95,5.0,fr,12154,3,515574,1,2,Active Shallow Crust,0.0,89.99117,-90.0,12/12/0183 +6.886,46.69552,2731,9,22,1,2,16,3.95,5.0,fr,12155,54,515577,1,1,Active Shallow Crust,128.9002,89.99564,0.0,09/22/2731 +6.886,46.69552,102,8,2,3,35,17,4.05,5.0,fr,12156,2,515580,1,4,Active Shallow Crust,0.0,89.98833,0.0,08/02/0102 +6.886,46.69552,5444,11,19,13,59,13,4.05,5.0,fr,12157,108,515580,1,4,Active Shallow Crust,0.0,89.98833,0.0,11/19/5444 +6.886,46.69552,1912,4,1,17,20,43,4.05,5.0,fr,12158,38,515580,1,4,Active Shallow Crust,0.0,89.98833,0.0,04/01/1912 +6.886,46.69552,7777,12,6,2,50,31,4.05,5.0,fr,12159,155,515580,1,4,Active Shallow Crust,0.0,89.98833,0.0,12/06/7777 +6.886,46.69552,8976,7,18,2,18,40,4.05,15.0,fr,12160,179,515581,1,1,Active Shallow Crust,0.0,89.98833,0.0,07/18/8976 +6.886,46.69552,7370,10,3,22,11,17,4.05,5.0,fr,12161,147,515583,1,1,Active Shallow Crust,240.0057,58.00602,0.0,10/03/7370 +6.886,46.69552,5228,3,22,4,25,12,4.05,15.0,fr,12162,104,515584,1,1,Active Shallow Crust,240.0057,58.00599,0.0,03/22/5228 +6.886,46.69552,4857,9,6,1,1,28,4.15,5.0,fr,12163,97,515592,1,3,Active Shallow Crust,0.0,89.9896,0.0,09/06/4857 +6.886,46.69552,9244,10,4,5,55,56,4.15,5.0,fr,12164,184,515592,1,3,Active Shallow Crust,0.0,89.9896,0.0,10/04/9244 +6.886,46.69552,7081,4,17,3,56,38,4.15,5.0,fr,12165,141,515592,1,3,Active Shallow Crust,0.0,89.9896,0.0,04/17/7081 +6.886,46.69552,1667,2,23,1,19,25,4.15,5.0,fr,12166,33,515598,1,1,Active Shallow Crust,0.0,89.98948,-90.0,02/23/1667 +6.886,46.69552,85,10,31,18,28,21,4.25,5.0,fr,12167,1,515604,1,2,Active Shallow Crust,0.0,89.99073,0.0,10/31/0085 +6.886,46.69552,9558,5,18,14,27,30,4.25,5.0,fr,12168,191,515604,1,2,Active Shallow Crust,0.0,89.99073,0.0,05/18/9558 +6.886,46.69552,4915,2,22,1,33,0,4.25,15.0,fr,12169,98,515605,1,1,Active Shallow Crust,0.0,89.99073,0.0,02/22/4915 +6.886,46.69552,2016,10,7,3,57,15,4.25,27.5,fr,12170,40,515606,1,2,Active Shallow Crust,0.0,89.99073,0.0,10/07/2016 +6.886,46.69552,5279,6,30,13,38,24,4.25,27.5,fr,12171,105,515606,1,2,Active Shallow Crust,0.0,89.99073,0.0,06/30/5279 +6.886,46.69552,6706,11,2,11,2,11,4.25,5.0,fr,12172,134,515607,1,1,Active Shallow Crust,240.0076,57.99423,0.0,11/02/6706 +6.886,46.69552,1272,10,15,2,41,40,4.25,5.0,fr,12173,25,515613,1,1,Active Shallow Crust,128.8942,89.98096,0.0,10/15/1272 +6.886,46.69552,6701,1,22,7,35,11,4.35,5.0,fr,12174,134,515622,1,1,Active Shallow Crust,0.0,89.98886,-90.0,01/22/6701 +6.886,46.69552,8425,6,17,19,54,45,4.45,5.0,fr,12175,168,515631,1,1,Active Shallow Crust,240.0053,57.99436,0.0,06/17/8425 +6.886,46.69552,636,4,6,9,34,43,4.45,27.5,fr,12176,12,515633,1,1,Active Shallow Crust,240.0053,57.99438,0.0,04/06/0636 +6.886,46.69552,6882,3,8,18,7,30,4.45,5.0,fr,12177,137,515637,1,1,Active Shallow Crust,128.8926,89.99387,0.0,03/08/6882 +6.886,46.69552,3913,2,8,14,23,10,4.55,5.0,fr,12178,78,515640,1,1,Active Shallow Crust,0.0,89.98906,0.0,02/08/3913 +6.886,46.69552,5779,7,7,13,29,0,4.65,5.0,fr,12179,115,515652,1,1,Active Shallow Crust,0.0,89.99025,0.0,07/07/5779 +6.886,46.69552,2966,9,4,18,15,5,4.65,15.0,fr,12180,59,515656,1,1,Active Shallow Crust,240.0107,57.99428,0.0,09/04/2966 +6.886,46.69552,7235,12,20,19,42,4,4.95,5.0,fr,12181,144,515688,1,2,Active Shallow Crust,0.0,89.99034,0.0,12/20/7235 +6.886,46.69552,2829,3,5,22,45,18,4.95,5.0,fr,12182,56,515688,1,2,Active Shallow Crust,0.0,89.99034,0.0,03/05/2829 +6.886,46.69552,1415,6,8,18,50,55,5.05,5.0,fr,12183,28,515700,1,1,Active Shallow Crust,0.0,89.99016,0.0,06/08/1415 +6.886,46.69552,6399,9,14,22,21,46,5.05,5.0,fr,12184,127,515703,1,1,Active Shallow Crust,240.0222,57.99776,0.0,09/14/6399 +6.886,46.69552,5760,2,20,13,7,31,5.05,5.0,fr,12185,115,515706,1,1,Active Shallow Crust,0.0,89.99004,-90.0,02/20/5760 +6.886,46.69552,5192,7,25,21,40,4,5.45,5.0,fr,12186,103,515748,1,1,Active Shallow Crust,0.0,89.98991,0.0,07/25/5192 +6.885995,46.69552,3313,5,3,5,36,10,6.55,25.4727,fr,12187,66,515882,1,1,Active Shallow Crust,359.9999,89.99004,0.0,05/03/3313 +4.92867,47.08941,7781,5,25,7,14,43,3.55,5.0,fr,12188,155,516000,1,1,Active Shallow Crust,0.0,89.99313,0.0,05/25/7781 +4.92867,47.08941,978,11,18,18,8,28,3.55,27.5,fr,12189,19,516002,1,1,Active Shallow Crust,0.0,89.99313,0.0,11/18/0978 +4.92867,47.08941,6576,7,22,2,37,6,3.65,5.0,fr,12190,131,516012,1,1,Active Shallow Crust,0.0,89.98776,0.0,07/22/6576 +4.92867,47.08941,2941,9,15,23,28,41,3.75,5.0,fr,12191,58,516024,1,1,Active Shallow Crust,0.0,89.98909,0.0,09/15/2941 +4.92867,47.08941,9374,4,21,2,39,26,3.75,5.0,fr,12192,187,516030,1,1,Active Shallow Crust,0.0,89.98897,-90.0,04/21/9374 +4.92867,47.08941,5367,9,5,3,13,27,3.75,5.0,fr,12193,107,516033,1,1,Active Shallow Crust,128.897,89.9675,0.0,09/05/5367 +4.92867,47.08941,9441,11,15,22,45,19,3.85,15.0,fr,12194,188,516040,1,1,Active Shallow Crust,240.0111,57.99732,0.0,11/15/9441 +4.92867,47.08941,824,10,27,6,28,56,3.95,5.0,fr,12195,16,516048,1,2,Active Shallow Crust,0.0,89.99133,0.0,10/27/0824 +4.92867,47.08941,998,9,6,1,45,13,3.95,5.0,fr,12196,19,516048,1,2,Active Shallow Crust,0.0,89.99133,0.0,09/06/0998 +4.92867,47.08941,1703,4,10,12,27,43,3.95,15.0,fr,12197,34,516052,1,1,Active Shallow Crust,240.0208,58.00467,0.0,04/10/1703 +4.92867,47.08941,1621,3,23,10,13,41,4.25,15.0,fr,12198,32,516088,1,1,Active Shallow Crust,240.0079,57.99387,0.0,03/23/1621 +4.92867,47.08941,1243,2,20,12,52,31,5.05,5.0,fr,12199,24,516183,1,1,Active Shallow Crust,240.0226,57.99749,0.0,02/20/1243 +0.83645,45.00941,4284,9,15,1,3,16,3.55,5.0,fr,12200,85,516489,1,1,Active Shallow Crust,128.8965,89.99376,0.0,09/15/4284 +0.83645,45.00941,6274,12,20,3,37,44,4.35,5.0,fr,12201,125,516576,1,1,Active Shallow Crust,0.0,89.99007,0.0,12/20/6274 +5.98748,48.12466,308,2,28,20,38,27,3.75,5.0,fr,12202,6,516984,1,2,Active Shallow Crust,0.0,89.9893,0.0,02/28/0308 +5.98748,48.12466,8354,6,9,15,58,23,3.75,5.0,fr,12203,167,516984,1,2,Active Shallow Crust,0.0,89.9893,0.0,06/09/8354 +5.98748,48.12466,1454,5,4,21,51,10,3.85,5.0,fr,12204,29,516999,1,1,Active Shallow Crust,240.011,57.99822,0.0,05/04/1454 +-1.14501,49.95637,9662,5,8,14,33,45,3.65,15.0,fr,12205,193,517453,1,1,Active Shallow Crust,0.0,89.98988,0.0,05/08/9662 +0.46421,42.80523,5666,4,26,22,30,28,3.55,5.0,fr,12206,113,517920,1,6,Active Shallow Crust,0.0,89.98983,0.0,04/26/5666 +0.46421,42.80523,5663,6,13,14,16,24,3.55,5.0,fr,12207,113,517920,1,6,Active Shallow Crust,0.0,89.98983,0.0,06/13/5663 +0.46421,42.80523,6794,5,17,2,51,22,3.55,5.0,fr,12208,135,517920,1,6,Active Shallow Crust,0.0,89.98983,0.0,05/17/6794 +0.46421,42.80523,3491,11,4,12,12,58,3.55,5.0,fr,12209,69,517920,1,6,Active Shallow Crust,0.0,89.98983,0.0,11/04/3491 +0.46421,42.80523,6843,4,2,16,13,45,3.55,5.0,fr,12210,136,517920,1,6,Active Shallow Crust,0.0,89.98983,0.0,04/02/6843 +0.46421,42.80523,3424,9,27,17,19,12,3.55,5.0,fr,12211,68,517920,1,6,Active Shallow Crust,0.0,89.98983,0.0,09/27/3424 +0.46421,42.80523,1342,6,26,15,22,53,3.55,15.0,fr,12212,26,517921,1,3,Active Shallow Crust,0.0,89.98983,0.0,06/26/1342 +0.46421,42.80523,1405,11,5,0,3,21,3.55,15.0,fr,12213,28,517921,1,3,Active Shallow Crust,0.0,89.98983,0.0,11/05/1405 +0.46421,42.80523,3551,10,2,13,58,30,3.55,15.0,fr,12214,71,517921,1,3,Active Shallow Crust,0.0,89.98983,0.0,10/02/3551 +0.46421,42.80523,8356,10,16,1,55,5,3.55,5.0,fr,12215,167,517923,1,1,Active Shallow Crust,240.0119,57.99809,0.0,10/16/8356 +0.46421,42.80523,3227,10,23,5,16,32,3.55,5.0,fr,12216,64,517926,1,2,Active Shallow Crust,0.0,89.99018,-90.0,10/23/3227 +0.46421,42.80523,7482,3,26,22,26,31,3.55,5.0,fr,12217,149,517926,1,2,Active Shallow Crust,0.0,89.99018,-90.0,03/26/7482 +0.46421,42.80523,3664,10,23,11,0,15,3.55,15.0,fr,12218,73,517930,1,1,Active Shallow Crust,128.8965,89.99376,0.0,10/23/3664 +0.46421,42.80523,5204,6,15,7,16,59,3.65,5.0,fr,12219,104,517932,1,4,Active Shallow Crust,0.0,89.99011,0.0,06/15/5204 +0.46421,42.80523,4937,1,25,23,52,24,3.65,5.0,fr,12220,98,517932,1,4,Active Shallow Crust,0.0,89.99011,0.0,01/25/4937 +0.46421,42.80523,4517,5,29,6,18,34,3.65,5.0,fr,12221,90,517932,1,4,Active Shallow Crust,0.0,89.99011,0.0,05/29/4517 +0.46421,42.80523,8386,10,4,17,35,34,3.65,5.0,fr,12222,167,517932,1,4,Active Shallow Crust,0.0,89.99011,0.0,10/04/8386 +0.46421,42.80523,6905,6,15,10,25,16,3.65,15.0,fr,12223,138,517936,1,2,Active Shallow Crust,240.0007,58.0128,0.0,06/15/6905 +0.46421,42.80523,8782,11,5,20,17,18,3.65,15.0,fr,12224,175,517936,1,2,Active Shallow Crust,240.0007,58.0128,0.0,11/05/8782 +0.46421,42.80523,3451,8,3,19,13,2,3.65,5.0,fr,12225,69,517938,1,1,Active Shallow Crust,0.0,89.99,-90.0,08/03/3451 +0.46421,42.80523,6370,11,14,1,4,25,3.75,5.0,fr,12226,127,517944,1,5,Active Shallow Crust,0.0,89.99008,0.0,11/14/6370 +0.46421,42.80523,3068,9,7,10,36,18,3.75,5.0,fr,12227,61,517944,1,5,Active Shallow Crust,0.0,89.99008,0.0,09/07/3068 +0.46421,42.80523,5216,11,15,7,36,39,3.75,5.0,fr,12228,104,517944,1,5,Active Shallow Crust,0.0,89.99008,0.0,11/15/5216 +0.46421,42.80523,7239,3,5,19,47,30,3.75,5.0,fr,12229,144,517944,1,5,Active Shallow Crust,0.0,89.99008,0.0,03/05/7239 +0.46421,42.80523,842,2,9,16,20,59,3.75,5.0,fr,12230,16,517944,1,5,Active Shallow Crust,0.0,89.99008,0.0,02/09/0842 +0.46421,42.80523,9315,4,28,21,42,48,3.75,15.0,fr,12231,186,517945,1,1,Active Shallow Crust,0.0,89.99008,0.0,04/28/9315 +0.46421,42.80523,6688,8,13,12,32,54,3.75,27.5,fr,12232,133,517946,1,1,Active Shallow Crust,0.0,89.99008,0.0,08/13/6688 +0.46421,42.80523,199,11,30,19,59,15,3.75,5.0,fr,12233,3,517950,1,1,Active Shallow Crust,0.0,89.98997,-90.0,11/30/0199 +0.46421,42.80523,7558,8,7,11,19,43,3.85,15.0,fr,12234,151,517957,1,1,Active Shallow Crust,0.0,89.98985,0.0,08/07/7558 +0.46421,42.80523,2678,3,4,22,15,41,3.85,15.0,fr,12235,53,517966,1,1,Active Shallow Crust,128.8961,89.99361,0.0,03/04/2678 +0.46421,42.80523,1360,4,7,22,58,14,3.95,5.0,fr,12236,27,517968,1,1,Active Shallow Crust,0.0,89.99008,0.0,04/07/1360 +0.46421,42.80523,2379,3,1,10,5,46,3.95,5.0,fr,12237,47,517977,1,2,Active Shallow Crust,128.9008,89.99373,0.0,03/01/2379 +0.46421,42.80523,7121,10,15,20,43,32,3.95,5.0,fr,12238,142,517977,1,2,Active Shallow Crust,128.9008,89.99373,0.0,10/15/7121 +0.46421,42.80523,177,2,15,12,23,40,3.95,15.0,fr,12239,3,517978,1,1,Active Shallow Crust,128.9008,89.99373,0.0,02/15/0177 +0.46421,42.80523,8471,4,18,8,41,21,4.05,5.0,fr,12240,169,517980,1,1,Active Shallow Crust,0.0,89.99012,0.0,04/18/8471 +0.46421,42.80523,1069,6,15,6,55,47,4.05,5.0,fr,12241,21,517983,1,1,Active Shallow Crust,240.0054,58.00576,0.0,06/15/1069 +0.46421,42.80523,8048,11,30,9,59,12,4.05,15.0,fr,12242,160,517984,1,1,Active Shallow Crust,240.0054,58.00574,0.0,11/30/8048 +0.46421,42.80523,3090,11,3,20,21,33,4.05,15.0,fr,12243,61,517987,1,1,Active Shallow Crust,0.0,89.99001,-90.0,11/03/3090 +0.46421,42.80523,7032,5,5,11,47,51,4.15,5.0,fr,12244,140,517992,1,1,Active Shallow Crust,0.0,89.99004,0.0,05/05/7032 +0.46421,42.80523,2364,3,28,7,22,14,4.25,5.0,fr,12245,47,518004,1,1,Active Shallow Crust,0.0,89.99008,0.0,03/28/2364 +0.46421,42.80523,3505,2,5,11,32,58,4.45,15.0,fr,12246,70,518032,1,1,Active Shallow Crust,240.0044,57.99453,0.0,02/05/3505 +0.46421,42.80523,9090,9,16,11,29,55,4.55,5.0,fr,12247,181,518046,1,1,Active Shallow Crust,0.0,89.98994,-90.0,09/16/9090 +0.46421,42.80523,5796,1,23,13,38,11,4.85,5.0,fr,12248,115,518079,1,1,Active Shallow Crust,240.0157,58.00206,0.0,01/23/5796 +-2.1039,42.9479,6462,9,25,10,19,56,3.55,5.0,fr,12249,129,518400,1,4,Active Shallow Crust,0.0,89.98893,0.0,09/25/6462 +-2.1039,42.9479,8640,1,10,13,32,19,3.55,5.0,fr,12250,172,518400,1,4,Active Shallow Crust,0.0,89.98893,0.0,01/10/8640 +-2.1039,42.9479,5336,7,25,13,39,44,3.55,5.0,fr,12251,106,518400,1,4,Active Shallow Crust,0.0,89.98893,0.0,07/25/5336 +-2.1039,42.9479,2008,6,22,10,15,47,3.55,5.0,fr,12252,40,518400,1,4,Active Shallow Crust,0.0,89.98893,0.0,06/22/2008 +-2.1039,42.9479,9007,7,31,1,12,46,3.55,15.0,fr,12253,180,518401,1,1,Active Shallow Crust,0.0,89.98893,0.0,07/31/9007 +-2.1039,42.9479,4912,3,23,21,26,44,3.55,5.0,fr,12254,98,518409,1,1,Active Shallow Crust,128.897,89.99262,0.0,03/23/4912 +-2.1039,42.9479,3538,3,28,7,41,24,3.65,5.0,fr,12255,70,518412,1,2,Active Shallow Crust,0.0,89.99014,0.0,03/28/3538 +-2.1039,42.9479,9686,11,13,6,13,31,3.65,5.0,fr,12256,193,518412,1,2,Active Shallow Crust,0.0,89.99014,0.0,11/13/9686 +-2.1039,42.9479,7731,1,15,14,6,10,3.65,5.0,fr,12257,154,518418,1,1,Active Shallow Crust,0.0,89.99002,-90.0,01/15/7731 +-2.1039,42.9479,5526,4,8,3,59,53,3.75,5.0,fr,12258,110,518424,1,1,Active Shallow Crust,0.0,89.9912,0.0,04/08/5526 +-2.1039,42.9479,1407,12,20,0,9,22,3.75,15.0,fr,12259,28,518425,1,1,Active Shallow Crust,0.0,89.9912,0.0,12/20/1407 +-2.1039,42.9479,282,2,7,2,11,34,3.75,15.0,fr,12260,5,518431,1,1,Active Shallow Crust,0.0,89.9911,-90.0,02/07/0282 +-2.1039,42.9479,8248,10,14,20,39,33,3.75,27.5,fr,12261,164,518432,1,1,Active Shallow Crust,0.0,89.9911,-90.0,10/14/8248 +-2.1039,42.9479,6470,8,6,5,12,50,3.75,15.0,fr,12262,129,518434,1,1,Active Shallow Crust,128.8965,89.96743,0.0,08/06/6470 +-2.1039,42.9479,1932,3,8,18,0,32,3.85,27.5,fr,12263,38,518438,1,1,Active Shallow Crust,0.0,89.98955,0.0,03/08/1932 +-2.1039,42.9479,6978,7,15,1,13,56,3.85,27.5,fr,12264,139,518441,1,1,Active Shallow Crust,240.0103,57.99756,0.0,07/15/6978 +-2.1039,42.9479,3409,7,17,14,55,28,3.95,15.0,fr,12265,68,518449,1,1,Active Shallow Crust,0.0,89.99068,0.0,07/17/3409 +-2.1039,42.9479,2270,12,5,18,10,27,3.95,27.5,fr,12266,45,518456,1,1,Active Shallow Crust,0.0,89.99058,-90.0,12/05/2270 +-2.1039,42.9479,6072,9,12,20,26,12,4.15,5.0,fr,12267,121,518472,1,2,Active Shallow Crust,0.0,89.99075,0.0,09/12/6072 +-2.1039,42.9479,8958,6,13,18,9,36,4.15,5.0,fr,12268,179,518472,1,2,Active Shallow Crust,0.0,89.99075,0.0,06/13/8958 +-2.1039,42.9479,1562,1,3,23,0,41,4.15,15.0,fr,12269,31,518479,1,1,Active Shallow Crust,0.0,89.99065,-90.0,01/03/1562 +-2.1039,42.9479,3395,8,25,22,58,35,4.25,15.0,fr,12270,67,518485,1,1,Active Shallow Crust,0.0,89.9901,0.0,08/25/3395 +-2.1039,42.9479,4819,1,25,8,14,43,4.35,15.0,fr,12271,96,518503,1,1,Active Shallow Crust,0.0,89.98959,-90.0,01/25/4819 +-2.1039,42.9479,2004,3,19,18,41,48,4.45,15.0,fr,12272,40,518509,1,1,Active Shallow Crust,0.0,89.98952,0.0,03/19/2004 +-2.1039,42.9479,1118,11,26,12,8,19,4.45,27.5,fr,12273,22,518513,1,1,Active Shallow Crust,240.0045,57.99451,0.0,11/26/1118 +-2.1039,42.9479,6444,5,30,7,44,59,4.75,15.0,fr,12274,128,518548,1,1,Active Shallow Crust,240.0062,58.00424,0.0,05/30/6444 +-2.1039,42.9479,3573,8,28,23,22,42,4.85,5.0,fr,12275,71,518556,1,1,Active Shallow Crust,0.0,89.99008,0.0,08/28/3573 +-2.1039,42.9479,6957,9,15,20,12,43,4.95,15.0,fr,12276,139,518572,1,1,Active Shallow Crust,240.0105,58.00407,0.0,09/15/6957 +-2.1039,42.9479,105,7,18,5,7,26,5.25,15.0,fr,12277,2,518605,1,1,Active Shallow Crust,0.0,89.99009,0.0,07/18/0105 +0.093,41.67287,8129,9,21,9,9,47,3.55,5.0,fr,12278,162,518880,1,1,Active Shallow Crust,0.0,89.99,0.0,09/21/8129 +0.093,41.67287,7044,11,20,8,13,36,3.55,5.0,fr,12279,140,518889,1,1,Active Shallow Crust,128.8965,89.99371,0.0,11/20/7044 +-6.09386,46.77938,8876,3,31,14,36,35,3.85,5.0,fr,12280,177,519396,1,1,Active Shallow Crust,0.0,89.99022,0.0,03/31/8876 +4.14229,51.23601,8647,5,7,13,5,59,3.55,5.0,fr,12281,172,519840,1,1,Active Shallow Crust,0.0,89.98737,0.0,05/07/8647 +4.14229,51.23601,1202,10,28,1,3,0,3.65,15.0,fr,12282,24,519856,1,1,Active Shallow Crust,240.0009,58.01375,0.0,10/28/1202 +4.14229,51.23601,145,8,14,0,11,9,3.75,15.0,fr,12283,2,519865,1,1,Active Shallow Crust,0.0,89.98997,0.0,08/14/0145 +4.14229,51.23601,4967,12,24,10,8,0,3.85,15.0,fr,12284,99,519877,1,1,Active Shallow Crust,0.0,89.99106,0.0,12/24/4967 +4.14229,51.23601,2170,1,20,14,12,39,3.95,5.0,fr,12285,43,519888,1,1,Active Shallow Crust,0.0,89.98804,0.0,01/20/2170 +4.14229,51.23601,8833,8,19,14,42,49,4.05,5.0,fr,12286,176,519900,1,2,Active Shallow Crust,0.0,89.98935,0.0,08/19/8833 +4.14229,51.23601,5511,7,31,5,55,56,4.05,5.0,fr,12287,110,519900,1,2,Active Shallow Crust,0.0,89.98935,0.0,07/31/5511 +4.18338,51.6065,6056,1,25,0,33,20,3.65,5.0,fr,12288,121,520332,1,1,Active Shallow Crust,0.0,89.98884,0.0,01/25/6056 +4.18338,51.6065,1180,10,24,16,22,53,3.65,5.0,fr,12289,23,520341,1,1,Active Shallow Crust,128.9002,89.96309,0.0,10/24/1180 +4.18338,51.6065,3542,12,11,2,26,20,3.65,15.0,fr,12290,70,520342,1,1,Active Shallow Crust,128.9002,89.96309,0.0,12/11/3542 +4.18338,51.6065,3482,10,27,13,22,27,4.05,15.0,fr,12291,69,520381,1,1,Active Shallow Crust,0.0,89.98943,0.0,10/27/3482 +4.18338,51.6065,1643,12,7,19,59,42,4.35,5.0,fr,12292,32,520419,1,1,Active Shallow Crust,240.0099,57.99598,0.0,12/07/1643 +4.18338,51.6065,4256,6,11,11,12,0,4.65,5.0,fr,12293,85,520455,1,1,Active Shallow Crust,240.0127,57.99453,0.0,06/11/4256 +4.18338,51.6065,180,1,8,19,22,6,5.15,5.0,fr,12294,3,520512,1,1,Active Shallow Crust,0.0,89.99007,0.0,01/08/0180 +5.01691,41.96033,5382,2,24,11,31,44,3.65,15.0,fr,12295,107,520816,1,1,Active Shallow Crust,240.0007,58.01307,0.0,02/24/5382 +3.18661,49.7622,114,5,10,4,2,9,3.55,5.0,fr,12296,2,521289,1,1,Active Shallow Crust,128.8961,89.99348,0.0,05/10/0114 +3.18661,49.7622,3213,2,24,5,49,17,3.65,5.0,fr,12297,64,521292,1,1,Active Shallow Crust,0.0,89.99129,0.0,02/24/3213 +3.18661,49.7622,895,10,11,19,32,57,3.65,15.0,fr,12298,17,521296,1,1,Active Shallow Crust,240.0012,58.01342,0.0,10/11/0895 +3.18661,49.7622,1684,1,1,22,39,59,3.95,5.0,fr,12299,33,521331,1,1,Active Shallow Crust,240.0201,58.00524,0.0,01/01/1684 +3.18661,49.7622,288,6,20,14,0,12,4.25,5.0,fr,12300,5,521364,1,1,Active Shallow Crust,0.0,89.98981,0.0,06/20/0288 +-1.0674,50.09345,9670,8,10,1,33,42,3.65,5.0,fr,12301,193,521772,1,1,Active Shallow Crust,0.0,89.98991,0.0,08/10/9670 +-1.0674,50.09345,4975,8,7,7,14,26,3.85,5.0,fr,12302,99,521796,1,2,Active Shallow Crust,0.0,89.98969,0.0,08/07/4975 +-1.0674,50.09345,3985,8,22,19,37,22,3.85,5.0,fr,12303,79,521796,1,2,Active Shallow Crust,0.0,89.98969,0.0,08/22/3985 +-5.37644,48.79172,4830,11,3,5,43,28,3.65,5.0,fr,12304,96,522252,1,1,Active Shallow Crust,0.0,89.98816,0.0,11/03/4830 +-5.37644,48.79172,155,6,19,16,45,13,3.85,5.0,fr,12305,3,522276,1,1,Active Shallow Crust,0.0,89.99059,0.0,06/19/0155 +-5.37644,48.79172,9692,11,28,17,54,12,4.25,5.0,fr,12306,193,522327,1,1,Active Shallow Crust,240.0079,57.99419,0.0,11/28/9692 +-1.70602,47.37305,8836,3,4,13,22,21,3.55,5.0,fr,12307,176,522720,1,5,Active Shallow Crust,0.0,89.98975,0.0,03/04/8836 +-1.70602,47.37305,9514,1,30,19,41,11,3.55,5.0,fr,12308,190,522720,1,5,Active Shallow Crust,0.0,89.98975,0.0,01/30/9514 +-1.70602,47.37305,7035,2,26,9,33,0,3.55,5.0,fr,12309,140,522720,1,5,Active Shallow Crust,0.0,89.98975,0.0,02/26/7035 +-1.70602,47.37305,6883,5,6,12,44,49,3.55,5.0,fr,12310,137,522720,1,5,Active Shallow Crust,0.0,89.98975,0.0,05/06/6883 +-1.70602,47.37305,6622,10,30,16,23,22,3.55,5.0,fr,12311,132,522720,1,5,Active Shallow Crust,0.0,89.98975,0.0,10/30/6622 +-1.70602,47.37305,4600,5,1,0,34,47,3.55,5.0,fr,12312,91,522726,1,1,Active Shallow Crust,0.0,89.98964,-90.0,05/01/4600 +-1.70602,47.37305,856,10,26,22,1,59,3.55,15.0,fr,12313,17,522727,1,1,Active Shallow Crust,0.0,89.98964,-90.0,10/26/0856 +-1.70602,47.37305,9431,1,4,7,13,36,3.65,5.0,fr,12314,188,522732,1,4,Active Shallow Crust,0.0,89.98935,0.0,01/04/9431 +-1.70602,47.37305,1573,1,25,15,33,31,3.65,5.0,fr,12315,31,522732,1,4,Active Shallow Crust,0.0,89.98935,0.0,01/25/1573 +-1.70602,47.37305,3032,9,7,12,0,36,3.65,5.0,fr,12316,60,522732,1,4,Active Shallow Crust,0.0,89.98935,0.0,09/07/3032 +-1.70602,47.37305,371,2,11,6,10,59,3.65,5.0,fr,12317,7,522732,1,4,Active Shallow Crust,0.0,89.98935,0.0,02/11/0371 +-1.70602,47.37305,8184,7,6,18,32,18,3.65,27.5,fr,12318,163,522734,1,1,Active Shallow Crust,0.0,89.98935,0.0,07/06/8184 +-1.70602,47.37305,6071,10,27,7,43,46,3.75,5.0,fr,12319,121,522744,1,1,Active Shallow Crust,0.0,89.99051,0.0,10/27/6071 +-1.70602,47.37305,975,4,5,23,54,24,3.75,15.0,fr,12320,19,522745,1,1,Active Shallow Crust,0.0,89.99051,0.0,04/05/0975 +-1.70602,47.37305,5872,7,12,20,40,43,3.85,5.0,fr,12321,117,522756,1,1,Active Shallow Crust,0.0,89.99033,0.0,07/12/5872 +-1.70602,47.37305,3778,8,29,11,13,4,3.85,5.0,fr,12322,75,522759,1,1,Active Shallow Crust,240.011,57.99786,0.0,08/29/3778 +-1.70602,47.37305,8124,5,2,23,53,11,3.85,27.5,fr,12323,162,522761,1,1,Active Shallow Crust,240.011,57.99786,0.0,05/02/8124 +-1.70602,47.37305,1663,12,18,15,46,44,3.95,15.0,fr,12324,33,522772,1,1,Active Shallow Crust,240.0198,58.005,0.0,12/18/1663 +-1.70602,47.37305,3792,12,22,12,7,32,4.15,15.0,fr,12325,75,522793,1,1,Active Shallow Crust,0.0,89.98973,0.0,12/22/3792 +-1.70602,47.37305,2446,1,9,17,59,10,4.25,15.0,fr,12326,48,522805,1,1,Active Shallow Crust,0.0,89.99008,0.0,01/09/2446 +-1.70602,47.37305,5753,4,14,12,13,49,4.35,5.0,fr,12327,115,522816,1,1,Active Shallow Crust,0.0,89.98981,0.0,04/14/5753 +-1.70602,47.37305,5818,10,12,20,11,36,4.35,15.0,fr,12328,116,522817,1,1,Active Shallow Crust,0.0,89.98981,0.0,10/12/5818 +-1.70602,47.37305,3187,3,9,18,18,13,4.55,5.0,fr,12329,63,522840,1,3,Active Shallow Crust,0.0,89.98974,0.0,03/09/3187 +-1.70602,47.37305,6644,10,1,5,43,17,4.55,5.0,fr,12330,132,522840,1,3,Active Shallow Crust,0.0,89.98974,0.0,10/01/6644 +-1.70602,47.37305,7759,12,7,11,33,23,4.55,5.0,fr,12331,155,522840,1,3,Active Shallow Crust,0.0,89.98974,0.0,12/07/7759 +-1.70602,47.37305,966,5,7,5,49,40,4.55,27.5,fr,12332,19,522842,1,1,Active Shallow Crust,0.0,89.98974,0.0,05/07/0966 +-1.70602,47.37305,4367,10,10,18,32,52,5.35,27.5,fr,12333,87,522944,1,1,Active Shallow Crust,0.0,89.99,-90.0,10/10/4367 +-1.70602,47.37305,7162,10,2,22,38,23,5.65,15.0,fr,12334,143,522973,1,1,Active Shallow Crust,0.0,89.98995,0.0,10/02/7162 +0.97822,46.36436,94,6,30,15,56,4,3.65,5.0,fr,12335,1,523692,1,2,Active Shallow Crust,0.0,89.98992,0.0,06/30/0094 +0.97822,46.36436,6373,2,28,13,2,35,3.65,5.0,fr,12336,127,523692,1,2,Active Shallow Crust,0.0,89.98992,0.0,02/28/6373 +0.97822,46.36436,3761,7,26,23,51,23,3.75,5.0,fr,12337,75,523713,1,1,Active Shallow Crust,128.8967,89.96736,0.0,07/26/3761 +0.97822,46.36436,5779,3,4,11,17,2,3.85,5.0,fr,12338,115,523716,1,1,Active Shallow Crust,0.0,89.99015,0.0,03/04/5779 +0.97822,46.36436,9512,1,29,17,23,55,3.85,15.0,fr,12339,190,523717,1,1,Active Shallow Crust,0.0,89.99015,0.0,01/29/9512 +0.97822,46.36436,1144,10,8,15,8,2,4.05,5.0,fr,12340,22,523740,1,1,Active Shallow Crust,0.0,89.99022,0.0,10/08/1144 +0.97822,46.36436,1687,3,22,16,20,17,4.15,5.0,fr,12341,33,523752,1,1,Active Shallow Crust,0.0,89.98997,0.0,03/22/1687 +0.97822,46.36436,8961,9,27,15,45,17,4.25,5.0,fr,12342,179,523767,1,1,Active Shallow Crust,240.0075,57.99407,0.0,09/27/8961 +0.97822,46.36436,5167,10,14,10,34,49,4.55,5.0,fr,12343,103,523800,1,1,Active Shallow Crust,0.0,89.9901,0.0,10/14/5167 +0.97822,46.36436,3291,11,13,15,27,18,4.75,27.5,fr,12344,65,523826,1,1,Active Shallow Crust,0.0,89.98994,0.0,11/13/3291 +3.68144,44.30691,8806,11,16,8,58,1,3.55,5.0,fr,12345,176,524160,1,1,Active Shallow Crust,0.0,89.98917,0.0,11/16/8806 +3.68144,44.30691,9165,6,7,14,31,59,3.55,15.0,fr,12346,183,524170,1,1,Active Shallow Crust,128.8965,89.99459,0.0,06/07/9165 +3.68144,44.30691,5798,11,10,17,46,13,4.25,15.0,fr,12347,115,524245,1,1,Active Shallow Crust,0.0,89.99033,0.0,11/10/5798 +3.68144,44.30691,7273,6,11,7,59,29,4.45,5.0,fr,12348,145,524271,1,1,Active Shallow Crust,240.0048,57.99457,0.0,06/11/7273 +3.68144,44.30691,8996,4,11,17,59,5,4.85,27.5,fr,12349,179,524318,1,1,Active Shallow Crust,0.0,89.9903,0.0,04/11/8996 +-2.1782,41.96664,1010,8,30,2,42,23,3.75,5.0,fr,12350,20,524664,1,1,Active Shallow Crust,0.0,89.99107,0.0,08/30/1010 +-2.1782,41.96664,7846,5,6,4,48,44,3.85,27.5,fr,12351,156,524678,1,1,Active Shallow Crust,0.0,89.98939,0.0,05/06/7846 +-2.1782,41.96664,27,7,25,1,32,24,3.85,5.0,fr,12352,0,524682,1,1,Active Shallow Crust,0.0,89.98926,-90.0,07/25/0027 +-2.1782,41.96664,2740,9,27,10,19,59,3.95,5.0,fr,12353,54,524688,1,1,Active Shallow Crust,0.0,89.99054,0.0,09/27/2740 +-2.1782,41.96664,5398,5,12,18,30,21,4.15,5.0,fr,12354,107,524712,1,1,Active Shallow Crust,0.0,89.99061,0.0,05/12/5398 +-2.1782,41.96664,1577,11,10,22,49,46,4.25,5.0,fr,12355,31,524730,1,1,Active Shallow Crust,0.0,89.98984,-90.0,11/10/1577 +-2.1782,41.96664,4764,5,31,1,51,41,4.35,15.0,fr,12356,95,524737,1,1,Active Shallow Crust,0.0,89.98956,0.0,05/31/4764 +-2.1782,41.96664,30,4,26,17,44,57,4.55,27.5,fr,12357,0,524762,1,1,Active Shallow Crust,0.0,89.99052,0.0,04/26/0030 +1.08328,50.46753,4443,6,9,6,40,5,3.65,15.0,fr,12358,88,525613,1,1,Active Shallow Crust,0.0,89.98999,0.0,06/09/4443 +1.08328,50.46753,3919,2,22,15,18,30,3.85,27.5,fr,12359,78,525647,1,1,Active Shallow Crust,128.8954,89.99375,0.0,02/22/3919 +5.47793,51.66306,6508,3,6,0,11,19,3.55,5.0,fr,12360,130,526080,1,2,Active Shallow Crust,0.0,89.98749,0.0,03/06/6508 +5.47793,51.66306,4926,1,9,12,16,17,3.55,5.0,fr,12361,98,526080,1,2,Active Shallow Crust,0.0,89.98749,0.0,01/09/4926 +5.47793,51.66306,6748,2,26,2,16,44,3.55,15.0,fr,12362,134,526084,1,1,Active Shallow Crust,240.0138,57.99705,0.0,02/26/6748 +5.47793,51.66306,3780,2,25,17,59,53,3.75,15.0,fr,12363,75,526105,1,1,Active Shallow Crust,0.0,89.99007,0.0,02/25/3780 +5.47793,51.66306,8340,8,3,3,3,0,3.85,5.0,fr,12364,166,526122,1,1,Active Shallow Crust,0.0,89.99104,-90.0,08/03/8340 +2.60752,48.83242,9703,8,7,19,24,25,3.75,5.0,fr,12365,194,526584,1,1,Active Shallow Crust,0.0,89.98946,0.0,08/07/9703 +2.31281,50.38314,2786,2,3,16,28,38,3.65,5.0,fr,12366,55,527052,1,2,Active Shallow Crust,0.0,89.9914,0.0,02/03/2786 +2.31281,50.38314,1701,6,20,4,18,28,3.65,5.0,fr,12367,34,527052,1,2,Active Shallow Crust,0.0,89.9914,0.0,06/20/1701 +2.31281,50.38314,7593,5,30,6,51,34,3.65,5.0,fr,12368,151,527058,1,1,Active Shallow Crust,0.0,89.9913,-90.0,05/30/7593 +2.31281,50.38314,9480,3,25,8,3,55,3.75,15.0,fr,12369,189,527068,1,1,Active Shallow Crust,240.0089,58.01759,0.0,03/25/9480 +2.31281,50.38314,771,5,26,3,29,24,4.25,5.0,fr,12370,15,527127,1,1,Active Shallow Crust,240.0083,57.9944,0.0,05/26/0771 +2.31281,50.38314,8191,5,8,21,57,46,4.45,15.0,fr,12371,163,527152,1,1,Active Shallow Crust,240.0065,57.99477,0.0,05/08/8191 +2.31281,50.38314,2338,5,22,8,19,2,4.55,5.0,fr,12372,46,527166,1,1,Active Shallow Crust,0.0,89.98972,-90.0,05/22/2338 +2.31281,50.38314,3899,3,22,16,46,57,4.85,5.0,fr,12373,77,527196,1,1,Active Shallow Crust,0.0,89.98992,0.0,03/22/3899 +0.7206,44.05285,6396,3,8,9,28,22,3.55,5.0,fr,12374,127,527529,1,1,Active Shallow Crust,128.8965,89.99366,0.0,03/08/6396 +0.7206,44.05285,3225,4,13,16,44,18,3.65,5.0,fr,12375,64,527532,1,2,Active Shallow Crust,0.0,89.99031,0.0,04/13/3225 +0.7206,44.05285,1761,7,2,23,19,50,3.65,5.0,fr,12376,35,527532,1,2,Active Shallow Crust,0.0,89.99031,0.0,07/02/1761 +0.7206,44.05285,5564,12,14,11,10,13,3.95,15.0,fr,12377,111,527569,1,1,Active Shallow Crust,0.0,89.99028,0.0,12/14/5564 +4.07528,42.63676,1841,12,5,9,42,30,3.55,15.0,fr,12378,36,528484,1,1,Active Shallow Crust,240.0119,57.99789,0.0,12/05/1841 +4.07528,42.63676,6228,12,13,10,51,12,3.75,15.0,fr,12379,124,528505,1,1,Active Shallow Crust,0.0,89.98821,0.0,12/13/6228 +4.07528,42.63676,5593,2,23,12,19,35,3.95,5.0,fr,12380,111,528531,1,1,Active Shallow Crust,240.0186,58.00446,0.0,02/23/5593 +4.07528,42.63676,7951,10,28,16,30,36,4.55,5.0,fr,12381,159,528600,1,1,Active Shallow Crust,0.0,89.99062,0.0,10/28/7951 +4.07528,42.63676,2185,4,13,22,20,44,5.65,5.0,fr,12382,43,528732,1,1,Active Shallow Crust,0.0,89.99008,0.0,04/13/2185 +8.37624,45.55809,1030,4,19,14,38,6,3.55,5.0,fr,12383,20,528963,1,1,Active Shallow Crust,240.0124,57.99847,0.0,04/19/1030 +8.37624,45.55809,925,1,24,4,49,42,3.75,5.0,fr,12384,18,528984,1,1,Active Shallow Crust,0.0,89.98878,0.0,01/24/0925 +8.37624,45.55809,3379,10,3,10,46,23,3.85,5.0,fr,12385,67,528996,1,1,Active Shallow Crust,0.0,89.99001,0.0,10/03/3379 +8.37624,45.55809,2795,8,14,23,51,23,3.85,27.5,fr,12386,55,528998,1,1,Active Shallow Crust,0.0,89.99001,0.0,08/14/2795 +8.37624,45.55809,4399,1,4,12,10,33,3.95,5.0,fr,12387,87,529011,1,1,Active Shallow Crust,240.0188,58.00608,0.0,01/04/4399 +8.37624,45.55809,9024,8,26,5,6,11,4.35,15.0,fr,12388,180,529057,1,1,Active Shallow Crust,0.0,89.98875,0.0,08/26/9024 +8.37624,45.55809,2737,7,10,9,43,23,4.55,5.0,fr,12389,54,529089,1,1,Active Shallow Crust,128.8952,89.9856,0.0,07/10/2737 +4.80016,46.55628,8677,9,6,19,24,58,3.55,5.0,fr,12390,173,529440,1,1,Active Shallow Crust,0.0,89.99306,0.0,09/06/8677 +4.80016,46.55628,106,8,6,2,36,40,3.55,15.0,fr,12391,2,529441,1,1,Active Shallow Crust,0.0,89.99306,0.0,08/06/0106 +4.80016,46.55628,8343,5,2,2,20,38,3.65,5.0,fr,12392,166,529452,1,1,Active Shallow Crust,0.0,89.98764,0.0,05/02/8343 +4.80016,46.55628,4769,8,2,0,7,25,4.05,5.0,fr,12393,95,529500,1,1,Active Shallow Crust,0.0,89.9883,0.0,08/02/4769 +4.80016,46.55628,9157,11,19,1,9,7,4.35,5.0,fr,12394,183,529536,1,1,Active Shallow Crust,0.0,89.98896,0.0,11/19/9157 +4.80016,46.55628,3643,10,3,4,54,46,5.35,5.0,fr,12395,72,529656,1,1,Active Shallow Crust,0.0,89.99039,0.0,10/03/3643 +2.34594,50.77188,3789,12,20,13,34,43,3.55,5.0,fr,12396,75,529926,1,1,Active Shallow Crust,0.0,89.99033,-90.0,12/20/3789 +2.34594,50.77188,8707,12,4,6,27,58,3.55,27.5,fr,12397,174,529931,1,1,Active Shallow Crust,128.8958,89.99522,0.0,12/04/8707 +2.34594,50.77188,2562,3,4,11,1,32,3.65,15.0,fr,12398,51,529936,1,1,Active Shallow Crust,240.0016,58.0129,0.0,03/04/2562 +2.34594,50.77188,8376,10,26,3,37,50,3.75,5.0,fr,12399,167,529947,1,1,Active Shallow Crust,240.0089,58.01788,0.0,10/26/8376 +2.34594,50.77188,63,7,26,17,42,1,3.85,5.0,fr,12400,1,529956,1,3,Active Shallow Crust,0.0,89.99097,0.0,07/26/0063 +2.34594,50.77188,9564,12,11,20,29,38,3.85,5.0,fr,12401,191,529956,1,3,Active Shallow Crust,0.0,89.99097,0.0,12/11/9564 +2.34594,50.77188,2304,4,3,8,20,13,3.85,5.0,fr,12402,46,529956,1,3,Active Shallow Crust,0.0,89.99097,0.0,04/03/2304 +2.34594,50.77188,180,5,17,11,15,55,3.95,5.0,fr,12403,3,529968,1,1,Active Shallow Crust,0.0,89.98994,0.0,05/17/0180 +2.34594,50.77188,160,9,9,11,40,46,4.35,5.0,fr,12404,3,530019,1,1,Active Shallow Crust,240.0093,57.9962,0.0,09/09/0160 +2.34594,50.77188,3785,7,14,23,43,49,4.45,5.0,fr,12405,75,530031,1,1,Active Shallow Crust,240.0064,57.99489,0.0,07/14/3785 +3.7583,42.05454,987,4,2,4,39,31,3.55,15.0,fr,12406,19,530407,1,1,Active Shallow Crust,0.0,89.98864,-90.0,04/02/0987 +3.7583,42.05454,5446,6,14,6,26,49,4.85,5.0,fr,12407,108,530556,1,2,Active Shallow Crust,0.0,89.98994,0.0,06/14/5446 +3.7583,42.05454,6104,10,3,16,34,37,4.85,5.0,fr,12408,122,530556,1,2,Active Shallow Crust,0.0,89.98994,0.0,10/03/6104 +-0.95016,46.48888,4251,11,2,19,43,21,3.55,5.0,fr,12409,85,530880,1,1,Active Shallow Crust,0.0,89.98959,0.0,11/02/4251 +-0.95016,46.48888,8650,7,22,22,44,28,3.55,15.0,fr,12410,172,530881,1,1,Active Shallow Crust,0.0,89.98959,0.0,07/22/8650 +-0.95016,46.48888,7548,10,22,18,6,21,3.55,5.0,fr,12411,150,530883,1,1,Active Shallow Crust,240.0122,57.99813,0.0,10/22/7548 +-0.95016,46.48888,8417,9,29,3,41,21,3.55,5.0,fr,12412,168,530889,1,1,Active Shallow Crust,128.8962,89.99349,0.0,09/29/8417 +-0.95016,46.48888,83,4,1,0,27,14,3.65,5.0,fr,12413,1,530892,1,1,Active Shallow Crust,0.0,89.98994,0.0,04/01/0083 +-0.95016,46.48888,3896,10,4,7,10,30,3.65,15.0,fr,12414,77,530896,1,1,Active Shallow Crust,240.0011,58.01298,0.0,10/04/3896 +-0.95016,46.48888,4488,3,10,1,29,39,3.65,5.0,fr,12415,89,530898,1,1,Active Shallow Crust,0.0,89.98983,-90.0,03/10/4488 +-0.95016,46.48888,4253,8,15,0,12,49,3.85,5.0,fr,12416,85,530916,1,1,Active Shallow Crust,0.0,89.99017,0.0,08/15/4253 +-0.95016,46.48888,6939,1,21,2,59,35,3.85,15.0,fr,12417,138,530923,1,1,Active Shallow Crust,0.0,89.99006,-90.0,01/21/6939 +-0.95016,46.48888,1308,9,12,18,49,34,4.05,5.0,fr,12418,26,530943,1,1,Active Shallow Crust,240.006,58.00584,0.0,09/12/1308 +-0.95016,46.48888,9543,1,6,22,28,30,4.15,27.5,fr,12419,190,530954,1,1,Active Shallow Crust,0.0,89.99,0.0,01/06/9543 +-0.95016,46.48888,7687,2,21,13,45,17,4.15,15.0,fr,12420,153,530956,1,1,Active Shallow Crust,240.0084,57.99728,0.0,02/21/7687 +-0.95016,46.48888,8391,8,31,17,21,30,4.25,5.0,fr,12421,167,530967,1,1,Active Shallow Crust,240.0076,57.99405,0.0,08/31/8391 +-0.95016,46.48888,2760,9,3,22,13,10,4.35,5.0,fr,12422,55,530976,1,2,Active Shallow Crust,0.0,89.98998,0.0,09/03/2760 +-0.95016,46.48888,7407,7,3,13,48,4,4.35,5.0,fr,12423,148,530976,1,2,Active Shallow Crust,0.0,89.98998,0.0,07/03/7407 +-0.95016,46.48888,5522,3,19,16,46,6,4.35,27.5,fr,12424,110,530978,1,1,Active Shallow Crust,0.0,89.98998,0.0,03/19/5522 +-0.95016,46.48888,7253,7,22,9,40,36,4.35,5.0,fr,12425,145,530982,1,1,Active Shallow Crust,0.0,89.98986,-90.0,07/22/7253 +-0.95016,46.48888,4416,6,20,19,33,19,4.45,5.0,fr,12426,88,530991,1,1,Active Shallow Crust,240.0052,57.99464,0.0,06/20/4416 +-0.95016,46.48888,763,2,4,23,54,57,4.45,5.0,fr,12427,15,530997,1,1,Active Shallow Crust,128.8922,89.99369,0.0,02/04/0763 +-0.95016,46.48888,8242,3,19,6,14,5,4.55,5.0,fr,12428,164,531000,1,3,Active Shallow Crust,0.0,89.99012,0.0,03/19/8242 +-0.95016,46.48888,4857,11,14,10,35,11,4.55,5.0,fr,12429,97,531000,1,3,Active Shallow Crust,0.0,89.99012,0.0,11/14/4857 +-0.95016,46.48888,1135,12,4,20,52,37,4.55,5.0,fr,12430,22,531000,1,3,Active Shallow Crust,0.0,89.99012,0.0,12/04/1135 +-0.95016,46.48888,8706,10,8,22,46,58,4.65,27.5,fr,12431,174,531014,1,1,Active Shallow Crust,0.0,89.98997,0.0,10/08/8706 +-2.1075,42.53123,8199,10,19,8,2,50,3.55,5.0,fr,12432,163,531363,1,1,Active Shallow Crust,240.0121,57.998,0.0,10/19/8199 +-2.1075,42.53123,4821,12,26,0,49,14,3.55,15.0,fr,12433,96,531364,1,1,Active Shallow Crust,240.0121,57.998,0.0,12/26/4821 +-2.1075,42.53123,3755,5,19,17,47,37,3.65,5.0,fr,12434,75,531372,1,2,Active Shallow Crust,0.0,89.99007,0.0,05/19/3755 +-2.1075,42.53123,2808,10,22,16,42,12,3.65,5.0,fr,12435,56,531372,1,2,Active Shallow Crust,0.0,89.99007,0.0,10/22/2808 +-2.1075,42.53123,5427,4,1,20,0,55,3.75,15.0,fr,12436,108,531388,1,2,Active Shallow Crust,240.0081,58.01729,0.0,04/01/5427 +-2.1075,42.53123,3598,2,26,18,22,13,3.75,15.0,fr,12437,71,531388,1,2,Active Shallow Crust,240.0081,58.01729,0.0,02/26/3598 +-2.1075,42.53123,65,4,22,9,11,52,4.05,5.0,fr,12438,1,531429,1,1,Active Shallow Crust,128.8904,89.99374,0.0,04/22/0065 +-2.1075,42.53123,336,12,15,0,15,20,4.15,27.5,fr,12439,6,531437,1,1,Active Shallow Crust,240.0077,57.9969,0.0,12/15/0336 +-2.1075,42.53123,1154,8,11,0,9,42,4.55,5.0,fr,12440,23,531486,1,2,Active Shallow Crust,0.0,89.99049,-90.0,08/11/1154 +-2.1075,42.53123,2767,5,9,6,10,29,4.55,5.0,fr,12441,55,531486,1,2,Active Shallow Crust,0.0,89.99049,-90.0,05/09/2767 +-2.107498,42.53123,9388,5,3,17,56,5,6.15,6.011322,fr,12442,187,531672,1,1,Active Shallow Crust,0.0,89.98994,0.0,05/03/9388 +0.17754,51.46853,2210,12,18,10,9,35,3.55,5.0,fr,12443,44,531846,1,1,Active Shallow Crust,0.0,89.99007,-90.0,12/18/2210 +0.17754,51.46853,4761,12,19,12,58,59,3.75,5.0,fr,12444,95,531864,1,1,Active Shallow Crust,0.0,89.99002,0.0,12/19/4761 +0.17754,51.46853,5384,10,16,8,43,34,3.85,5.0,fr,12445,107,531885,1,1,Active Shallow Crust,128.8951,89.99374,0.0,10/16/5384 +0.17754,51.46853,6010,3,16,22,41,33,4.15,5.0,fr,12446,120,531912,1,1,Active Shallow Crust,0.0,89.98997,0.0,03/16/6010 +5.26646,43.73479,6130,8,28,16,32,39,3.55,15.0,fr,12447,122,532801,1,2,Active Shallow Crust,0.0,89.99271,0.0,08/28/6130 +5.26646,43.73479,2386,6,3,10,25,59,3.55,15.0,fr,12448,47,532801,1,2,Active Shallow Crust,0.0,89.99271,0.0,06/03/2386 +5.26646,43.73479,8731,2,18,0,9,35,3.55,5.0,fr,12449,174,532803,1,1,Active Shallow Crust,240.0123,57.99834,0.0,02/18/8731 +5.26646,43.73479,9481,2,13,19,51,57,3.55,15.0,fr,12450,189,532804,1,1,Active Shallow Crust,240.0123,57.99834,0.0,02/13/9481 +5.26646,43.73479,7212,9,27,15,37,28,3.55,27.5,fr,12451,144,532811,1,1,Active Shallow Crust,128.8972,89.99271,0.0,09/27/7212 +5.26646,43.73479,5704,7,20,18,9,58,3.65,5.0,fr,12452,114,532812,1,2,Active Shallow Crust,0.0,89.98701,0.0,07/20/5704 +5.26646,43.73479,7757,10,8,21,15,2,3.65,5.0,fr,12453,155,532812,1,2,Active Shallow Crust,0.0,89.98701,0.0,10/08/7757 +5.26646,43.73479,7850,9,7,10,16,4,3.65,15.0,fr,12454,156,532813,1,2,Active Shallow Crust,0.0,89.98701,0.0,09/07/7850 +5.26646,43.73479,7734,6,26,13,25,8,3.65,15.0,fr,12455,154,532813,1,2,Active Shallow Crust,0.0,89.98701,0.0,06/26/7734 +5.26646,43.73479,6311,5,25,11,52,19,3.65,15.0,fr,12456,126,532819,1,1,Active Shallow Crust,0.0,89.98686,-90.0,05/25/6311 +5.26646,43.73479,7587,12,24,7,21,35,3.65,5.0,fr,12457,151,532821,1,1,Active Shallow Crust,128.9004,89.96347,0.0,12/24/7587 +5.26646,43.73479,8288,1,29,14,7,35,3.75,5.0,fr,12458,165,532824,1,1,Active Shallow Crust,0.0,89.98843,0.0,01/29/8288 +5.26646,43.73479,405,12,23,22,10,35,3.85,15.0,fr,12459,8,532837,1,1,Active Shallow Crust,0.0,89.98969,0.0,12/23/0405 +5.26646,43.73479,3676,6,22,0,2,14,3.85,15.0,fr,12460,73,532840,1,1,Active Shallow Crust,240.0095,57.99789,0.0,06/22/3676 +5.26646,43.73479,4064,6,19,5,12,6,3.85,15.0,fr,12461,81,532846,1,1,Active Shallow Crust,128.8959,89.99226,0.0,06/19/4064 +5.26646,43.73479,1756,3,26,11,57,18,4.05,5.0,fr,12462,35,532860,1,2,Active Shallow Crust,0.0,89.99181,0.0,03/26/1756 +5.26646,43.73479,6798,3,20,8,51,56,4.05,5.0,fr,12463,135,532860,1,2,Active Shallow Crust,0.0,89.99181,0.0,03/20/6798 +5.26646,43.73479,6343,3,24,17,44,33,4.05,5.0,fr,12464,126,532863,1,1,Active Shallow Crust,240.0052,58.00583,0.0,03/24/6343 +5.26646,43.73479,2234,3,12,7,44,10,4.05,5.0,fr,12465,44,532866,1,1,Active Shallow Crust,0.0,89.99171,-90.0,03/12/2234 +5.26646,43.73479,7094,7,18,19,37,18,4.15,5.0,fr,12466,141,532875,1,1,Active Shallow Crust,240.0073,57.99736,0.0,07/18/7094 +5.26646,43.73479,9127,10,15,18,58,18,4.25,15.0,fr,12467,182,532885,1,1,Active Shallow Crust,0.0,89.99023,0.0,10/15/9127 +5.26646,43.73479,9924,11,12,22,42,44,4.25,27.5,fr,12468,198,532895,1,1,Active Shallow Crust,128.8955,89.98084,0.0,11/12/9924 +5.26646,43.73479,9811,2,6,4,58,25,4.35,5.0,fr,12469,196,532896,1,1,Active Shallow Crust,0.0,89.99129,0.0,02/06/9811 +5.26646,43.73479,4572,10,31,21,38,21,4.35,27.5,fr,12470,91,532898,1,1,Active Shallow Crust,0.0,89.99129,0.0,10/31/4572 +5.26646,43.73479,2499,10,29,19,7,20,4.65,5.0,fr,12471,49,532932,1,1,Active Shallow Crust,0.0,89.98973,0.0,10/29/2499 +5.26646,43.73479,2739,2,17,11,9,32,4.65,15.0,fr,12472,54,532933,1,1,Active Shallow Crust,0.0,89.98973,0.0,02/17/2739 +5.26646,43.73479,8877,3,23,18,39,20,4.85,5.0,fr,12473,177,532956,1,1,Active Shallow Crust,0.0,89.99021,0.0,03/23/8877 +5.26646,43.73479,4687,10,4,4,45,59,4.95,15.0,fr,12474,93,532969,1,1,Active Shallow Crust,0.0,89.98982,0.0,10/04/4687 +5.26646,43.73479,5134,12,12,1,50,25,6.55,15.0,fr,12475,102,533161,1,1,Active Shallow Crust,0.0,89.99008,0.0,12/12/5134 +7.53954,45.20418,1444,7,17,3,28,13,3.55,5.0,fr,12476,28,533280,1,2,Active Shallow Crust,0.0,89.9929,0.0,07/17/1444 +7.53954,45.20418,3390,3,21,22,29,55,3.55,5.0,fr,12477,67,533280,1,2,Active Shallow Crust,0.0,89.9929,0.0,03/21/3390 +7.53954,45.20418,8048,7,5,20,48,42,3.55,15.0,fr,12478,160,533281,1,2,Active Shallow Crust,0.0,89.9929,0.0,07/05/8048 +7.53954,45.20418,3140,9,29,21,19,17,3.55,15.0,fr,12479,62,533281,1,2,Active Shallow Crust,0.0,89.9929,0.0,09/29/3140 +7.53954,45.20418,8625,11,6,4,1,49,3.55,27.5,fr,12480,172,533285,1,1,Active Shallow Crust,240.0119,57.99863,0.0,11/06/8625 +7.53954,45.20418,8400,10,15,6,57,5,3.55,5.0,fr,12481,167,533286,1,1,Active Shallow Crust,0.0,89.99281,-90.0,10/15/8400 +7.53954,45.20418,5850,12,28,11,34,9,3.65,5.0,fr,12482,116,533292,1,2,Active Shallow Crust,0.0,89.98734,0.0,12/28/5850 +7.53954,45.20418,9938,11,8,8,57,15,3.65,5.0,fr,12483,198,533292,1,2,Active Shallow Crust,0.0,89.98734,0.0,11/08/9938 +7.53954,45.20418,8461,4,20,10,38,46,3.65,15.0,fr,12484,169,533296,1,1,Active Shallow Crust,240.0018,58.01259,0.0,04/20/8461 +7.53954,45.20418,4755,7,16,13,0,32,3.75,5.0,fr,12485,95,533304,1,2,Active Shallow Crust,0.0,89.98872,0.0,07/16/4755 +7.53954,45.20418,1831,9,13,13,44,41,3.75,5.0,fr,12486,36,533304,1,2,Active Shallow Crust,0.0,89.98872,0.0,09/13/1831 +7.53954,45.20418,7251,8,28,6,36,55,3.75,5.0,fr,12487,145,533310,1,1,Active Shallow Crust,0.0,89.98858,-90.0,08/28/7251 +7.53954,45.20418,3610,8,23,2,9,1,3.85,5.0,fr,12488,72,533316,1,1,Active Shallow Crust,0.0,89.98994,0.0,08/23/3610 +7.53954,45.20418,7422,9,27,22,26,42,3.85,5.0,fr,12489,148,533319,1,1,Active Shallow Crust,240.0115,57.99799,0.0,09/27/7422 +7.53954,45.20418,4753,5,15,2,13,34,3.95,5.0,fr,12490,95,533328,1,2,Active Shallow Crust,0.0,89.99104,0.0,05/15/4753 +7.53954,45.20418,6733,5,20,3,9,22,3.95,5.0,fr,12491,134,533328,1,2,Active Shallow Crust,0.0,89.99104,0.0,05/20/6733 +7.53954,45.20418,4078,3,30,21,33,55,3.95,5.0,fr,12492,81,533331,1,1,Active Shallow Crust,240.0199,58.00463,0.0,03/30/4078 +7.53954,45.20418,4291,5,13,6,11,25,4.05,5.0,fr,12493,85,533340,1,1,Active Shallow Crust,0.0,89.98801,0.0,05/13/4291 +7.53954,45.20418,4365,8,15,23,22,19,4.05,27.5,fr,12494,87,533342,1,1,Active Shallow Crust,0.0,89.98801,0.0,08/15/4365 +7.53954,45.20418,3952,12,2,8,46,20,4.05,27.5,fr,12495,79,533345,1,1,Active Shallow Crust,240.0058,58.00576,0.0,12/02/3952 +7.53954,45.20418,2237,5,24,0,3,59,4.05,5.0,fr,12496,44,533349,1,1,Active Shallow Crust,128.8904,89.99401,0.0,05/24/2237 +7.53954,45.20418,4136,4,21,3,13,42,4.15,5.0,fr,12497,82,533352,1,1,Active Shallow Crust,0.0,89.98932,0.0,04/21/4136 +7.53954,45.20418,3706,8,26,2,52,49,4.45,5.0,fr,12498,74,533388,1,1,Active Shallow Crust,0.0,89.98991,0.0,08/26/3706 +7.53954,45.20418,5845,7,20,5,26,42,4.45,5.0,fr,12499,116,533397,1,1,Active Shallow Crust,128.8922,89.9937,0.0,07/20/5845 +7.53954,45.20418,4171,6,28,5,52,25,4.85,5.0,fr,12500,83,533439,1,1,Active Shallow Crust,240.0166,58.00235,0.0,06/28/4171 +7.92505,49.74167,2131,5,30,23,39,52,3.55,5.0,fr,12501,42,533760,1,1,Active Shallow Crust,0.0,89.98697,0.0,05/30/2131 +7.92505,49.74167,1571,5,18,10,17,24,3.55,5.0,fr,12502,31,533766,1,1,Active Shallow Crust,0.0,89.98682,-90.0,05/18/1571 +7.92505,49.74167,1473,10,7,3,13,6,3.65,5.0,fr,12503,29,533772,1,4,Active Shallow Crust,0.0,89.98838,0.0,10/07/1473 +7.92505,49.74167,486,2,21,3,52,27,3.65,5.0,fr,12504,9,533772,1,4,Active Shallow Crust,0.0,89.98838,0.0,02/21/0486 +7.92505,49.74167,3523,4,9,12,35,59,3.65,5.0,fr,12505,70,533772,1,4,Active Shallow Crust,0.0,89.98838,0.0,04/09/3523 +7.92505,49.74167,4168,8,7,16,0,11,3.65,5.0,fr,12506,83,533772,1,4,Active Shallow Crust,0.0,89.98838,0.0,08/07/4168 +7.92505,49.74167,9614,8,9,10,13,36,3.65,27.5,fr,12507,192,533774,1,1,Active Shallow Crust,0.0,89.98838,0.0,08/09/9614 +7.92505,49.74167,8183,11,29,2,48,42,3.75,5.0,fr,12508,163,533793,1,1,Active Shallow Crust,128.8953,89.96754,0.0,11/29/8183 +7.92505,49.74167,8469,1,12,2,55,56,4.05,5.0,fr,12509,169,533820,1,1,Active Shallow Crust,0.0,89.98901,0.0,01/12/8469 +7.92505,49.74167,2060,2,10,11,47,22,4.25,27.5,fr,12510,41,533846,1,1,Active Shallow Crust,0.0,89.99126,0.0,02/10/2060 +7.92505,49.74167,5966,5,31,14,33,52,4.35,5.0,fr,12511,119,533856,1,1,Active Shallow Crust,0.0,89.98962,0.0,05/31/5966 +7.92505,49.74167,9705,9,10,15,57,50,4.65,15.0,fr,12512,194,533902,1,1,Active Shallow Crust,128.8902,89.98694,0.0,09/10/9705 +7.92505,49.74167,2836,10,13,23,25,4,4.85,15.0,fr,12513,56,533917,1,2,Active Shallow Crust,0.0,89.98978,0.0,10/13/2836 +7.92505,49.74167,6237,11,5,7,54,13,4.85,15.0,fr,12514,124,533917,1,2,Active Shallow Crust,0.0,89.98978,0.0,11/05/6237 +7.92505,49.74167,1554,12,27,23,44,51,5.75,5.0,fr,12515,31,534033,1,1,Active Shallow Crust,128.868,89.99108,0.0,12/27/1554 +-0.37901,42.99638,4421,11,22,13,5,34,3.55,5.0,fr,12516,88,534240,1,6,Active Shallow Crust,0.0,89.98986,0.0,11/22/4421 +-0.37901,42.99638,3858,7,8,23,45,12,3.55,5.0,fr,12517,77,534240,1,6,Active Shallow Crust,0.0,89.98986,0.0,07/08/3858 +-0.37901,42.99638,7595,10,10,5,36,3,3.55,5.0,fr,12518,151,534240,1,6,Active Shallow Crust,0.0,89.98986,0.0,10/10/7595 +-0.37901,42.99638,3647,5,6,4,22,12,3.55,5.0,fr,12519,72,534240,1,6,Active Shallow Crust,0.0,89.98986,0.0,05/06/3647 +-0.37901,42.99638,95,1,11,19,43,13,3.55,5.0,fr,12520,1,534240,1,6,Active Shallow Crust,0.0,89.98986,0.0,01/11/0095 +-0.37901,42.99638,3807,6,4,18,44,46,3.55,5.0,fr,12521,76,534240,1,6,Active Shallow Crust,0.0,89.98986,0.0,06/04/3807 +-0.37901,42.99638,8909,12,2,6,15,39,3.55,15.0,fr,12522,178,534241,1,4,Active Shallow Crust,0.0,89.98986,0.0,12/02/8909 +-0.37901,42.99638,9209,8,6,0,31,52,3.55,15.0,fr,12523,184,534241,1,4,Active Shallow Crust,0.0,89.98986,0.0,08/06/9209 +-0.37901,42.99638,4952,7,13,1,6,17,3.55,15.0,fr,12524,99,534241,1,4,Active Shallow Crust,0.0,89.98986,0.0,07/13/4952 +-0.37901,42.99638,3259,2,12,7,43,31,3.55,15.0,fr,12525,65,534241,1,4,Active Shallow Crust,0.0,89.98986,0.0,02/12/3259 +-0.37901,42.99638,6495,12,14,3,46,24,3.55,5.0,fr,12526,129,534249,1,2,Active Shallow Crust,128.8965,89.99377,0.0,12/14/6495 +-0.37901,42.99638,3968,5,30,23,16,31,3.55,5.0,fr,12527,79,534249,1,2,Active Shallow Crust,128.8965,89.99377,0.0,05/30/3968 +-0.37901,42.99638,7895,11,25,14,4,25,3.65,5.0,fr,12528,157,534252,1,6,Active Shallow Crust,0.0,89.99014,0.0,11/25/7895 +-0.37901,42.99638,6206,4,8,13,11,18,3.65,5.0,fr,12529,124,534252,1,6,Active Shallow Crust,0.0,89.99014,0.0,04/08/6206 +-0.37901,42.99638,5641,9,3,5,25,36,3.65,5.0,fr,12530,112,534252,1,6,Active Shallow Crust,0.0,89.99014,0.0,09/03/5641 +-0.37901,42.99638,4637,10,5,16,7,11,3.65,5.0,fr,12531,92,534252,1,6,Active Shallow Crust,0.0,89.99014,0.0,10/05/4637 +-0.37901,42.99638,6865,1,22,5,8,35,3.65,5.0,fr,12532,137,534252,1,6,Active Shallow Crust,0.0,89.99014,0.0,01/22/6865 +-0.37901,42.99638,9062,12,7,11,31,21,3.65,5.0,fr,12533,181,534252,1,6,Active Shallow Crust,0.0,89.99014,0.0,12/07/9062 +-0.37901,42.99638,8856,6,18,16,43,37,3.65,15.0,fr,12534,177,534253,1,2,Active Shallow Crust,0.0,89.99014,0.0,06/18/8856 +-0.37901,42.99638,4685,3,6,7,21,6,3.65,15.0,fr,12535,93,534253,1,2,Active Shallow Crust,0.0,89.99014,0.0,03/06/4685 +-0.37901,42.99638,4046,11,18,0,45,19,3.65,5.0,fr,12536,80,534255,1,1,Active Shallow Crust,240.0007,58.01287,0.0,11/18/4046 +-0.37901,42.99638,8319,9,8,4,7,17,3.65,27.5,fr,12537,166,534257,1,1,Active Shallow Crust,240.0007,58.01278,0.0,09/08/8319 +-0.37901,42.99638,4552,5,7,9,55,10,3.65,5.0,fr,12538,91,534258,1,1,Active Shallow Crust,0.0,89.99003,-90.0,05/07/4552 +-0.37901,42.99638,9638,6,2,21,27,0,3.65,5.0,fr,12539,192,534261,1,4,Active Shallow Crust,128.9007,89.96353,0.0,06/02/9638 +-0.37901,42.99638,1534,11,4,23,51,14,3.65,5.0,fr,12540,30,534261,1,4,Active Shallow Crust,128.9007,89.96353,0.0,11/04/1534 +-0.37901,42.99638,287,9,23,3,8,20,3.65,5.0,fr,12541,5,534261,1,4,Active Shallow Crust,128.9007,89.96353,0.0,09/23/0287 +-0.37901,42.99638,2425,9,9,2,46,10,3.65,5.0,fr,12542,48,534261,1,4,Active Shallow Crust,128.9007,89.96353,0.0,09/09/2425 +-0.37901,42.99638,6892,8,16,14,34,2,3.65,15.0,fr,12543,137,534262,1,1,Active Shallow Crust,128.9007,89.96353,0.0,08/16/6892 +-0.37901,42.99638,2745,9,19,4,20,38,3.75,5.0,fr,12544,54,534264,1,6,Active Shallow Crust,0.0,89.99011,0.0,09/19/2745 +-0.37901,42.99638,922,4,10,23,32,56,3.75,5.0,fr,12545,18,534264,1,6,Active Shallow Crust,0.0,89.99011,0.0,04/10/0922 +-0.37901,42.99638,3212,6,26,15,5,55,3.75,5.0,fr,12546,64,534264,1,6,Active Shallow Crust,0.0,89.99011,0.0,06/26/3212 +-0.37901,42.99638,3865,5,8,14,47,57,3.75,5.0,fr,12547,77,534264,1,6,Active Shallow Crust,0.0,89.99011,0.0,05/08/3865 +-0.37901,42.99638,8225,5,29,23,9,37,3.75,5.0,fr,12548,164,534264,1,6,Active Shallow Crust,0.0,89.99011,0.0,05/29/8225 +-0.37901,42.99638,3225,4,16,20,56,50,3.75,5.0,fr,12549,64,534264,1,6,Active Shallow Crust,0.0,89.99011,0.0,04/16/3225 +-0.37901,42.99638,9212,2,25,15,53,25,3.75,15.0,fr,12550,184,534265,1,4,Active Shallow Crust,0.0,89.99011,0.0,02/25/9212 +-0.37901,42.99638,701,12,29,8,13,10,3.75,15.0,fr,12551,14,534265,1,4,Active Shallow Crust,0.0,89.99011,0.0,12/29/0701 +-0.37901,42.99638,3483,6,8,15,39,33,3.75,15.0,fr,12552,69,534265,1,4,Active Shallow Crust,0.0,89.99011,0.0,06/08/3483 +-0.37901,42.99638,9116,9,20,17,1,59,3.75,15.0,fr,12553,182,534265,1,4,Active Shallow Crust,0.0,89.99011,0.0,09/20/9116 +-0.37901,42.99638,5205,12,4,15,32,40,3.75,5.0,fr,12554,104,534270,1,1,Active Shallow Crust,0.0,89.99,-90.0,12/04/5205 +-0.37901,42.99638,2557,1,27,3,38,2,3.75,5.0,fr,12555,51,534273,1,1,Active Shallow Crust,128.8969,89.96736,0.0,01/27/2557 +-0.37901,42.99638,8715,7,23,16,15,41,3.85,5.0,fr,12556,174,534276,1,3,Active Shallow Crust,0.0,89.98988,0.0,07/23/8715 +-0.37901,42.99638,2245,6,20,10,49,29,3.85,5.0,fr,12557,44,534276,1,3,Active Shallow Crust,0.0,89.98988,0.0,06/20/2245 +-0.37901,42.99638,3620,3,31,23,19,2,3.85,5.0,fr,12558,72,534276,1,3,Active Shallow Crust,0.0,89.98988,0.0,03/31/3620 +-0.37901,42.99638,5720,1,27,14,2,42,3.85,5.0,fr,12559,114,534279,1,2,Active Shallow Crust,240.0104,57.99772,0.0,01/27/5720 +-0.37901,42.99638,3582,4,13,17,53,25,3.85,5.0,fr,12560,71,534279,1,2,Active Shallow Crust,240.0104,57.99772,0.0,04/13/3582 +-0.37901,42.99638,6642,9,26,23,44,17,3.85,5.0,fr,12561,132,534282,1,1,Active Shallow Crust,0.0,89.9901,-90.0,09/26/6642 +-0.37901,42.99638,6135,2,10,23,34,13,3.85,5.0,fr,12562,122,534285,1,1,Active Shallow Crust,128.896,89.99364,0.0,02/10/6135 +-0.37901,42.99638,1957,3,23,23,32,13,3.95,5.0,fr,12563,39,534288,1,6,Active Shallow Crust,0.0,89.99011,0.0,03/23/1957 +-0.37901,42.99638,3222,2,25,21,55,14,3.95,5.0,fr,12564,64,534288,1,6,Active Shallow Crust,0.0,89.99011,0.0,02/25/3222 +-0.37901,42.99638,7565,2,28,23,28,54,3.95,5.0,fr,12565,151,534288,1,6,Active Shallow Crust,0.0,89.99011,0.0,02/28/7565 +-0.37901,42.99638,2874,10,9,3,58,47,3.95,5.0,fr,12566,57,534288,1,6,Active Shallow Crust,0.0,89.99011,0.0,10/09/2874 +-0.37901,42.99638,1298,11,25,14,44,21,3.95,5.0,fr,12567,25,534288,1,6,Active Shallow Crust,0.0,89.99011,0.0,11/25/1298 +-0.37901,42.99638,869,11,26,21,59,52,3.95,5.0,fr,12568,17,534288,1,6,Active Shallow Crust,0.0,89.99011,0.0,11/26/0869 +-0.37901,42.99638,3409,8,12,1,14,4,3.95,15.0,fr,12569,68,534289,1,2,Active Shallow Crust,0.0,89.99011,0.0,08/12/3409 +-0.37901,42.99638,8526,3,26,6,2,31,3.95,15.0,fr,12570,170,534289,1,2,Active Shallow Crust,0.0,89.99011,0.0,03/26/8526 +-0.37901,42.99638,2437,7,15,11,28,29,3.95,15.0,fr,12571,48,534298,1,1,Active Shallow Crust,128.9008,89.99374,0.0,07/15/2437 +-0.37901,42.99638,3600,8,22,16,4,6,4.05,5.0,fr,12572,71,534300,1,1,Active Shallow Crust,0.0,89.98989,0.0,08/22/3600 +-0.37901,42.99638,6301,3,1,8,44,7,4.05,15.0,fr,12573,126,534301,1,2,Active Shallow Crust,0.0,89.98989,0.0,03/01/6301 +-0.37901,42.99638,5291,2,12,9,33,40,4.05,15.0,fr,12574,105,534301,1,2,Active Shallow Crust,0.0,89.98989,0.0,02/12/5291 +-0.37901,42.99638,7310,8,24,1,33,46,4.05,5.0,fr,12575,146,534303,1,1,Active Shallow Crust,240.0054,58.00574,0.0,08/24/7310 +-0.37901,42.99638,9718,3,30,6,41,31,4.05,5.0,fr,12576,194,534306,1,1,Active Shallow Crust,0.0,89.99004,-90.0,03/30/9718 +-0.37901,42.99638,2984,7,14,21,19,1,4.15,5.0,fr,12577,59,534312,1,1,Active Shallow Crust,0.0,89.99007,0.0,07/14/2984 +-0.37901,42.99638,6168,12,22,17,6,44,4.15,15.0,fr,12578,123,534313,1,3,Active Shallow Crust,0.0,89.99007,0.0,12/22/6168 +-0.37901,42.99638,1377,1,23,5,3,5,4.15,15.0,fr,12579,27,534313,1,3,Active Shallow Crust,0.0,89.99007,0.0,01/23/1377 +-0.37901,42.99638,5615,12,2,18,10,53,4.15,15.0,fr,12580,112,534313,1,3,Active Shallow Crust,0.0,89.99007,0.0,12/02/5615 +-0.37901,42.99638,3399,6,3,16,33,51,4.15,27.5,fr,12581,67,534314,1,1,Active Shallow Crust,0.0,89.99007,0.0,06/03/3399 +-0.37901,42.99638,5114,12,6,22,18,41,4.25,5.0,fr,12582,102,534324,1,2,Active Shallow Crust,0.0,89.98991,0.0,12/06/5114 +-0.37901,42.99638,6569,12,19,12,20,34,4.25,5.0,fr,12583,131,534324,1,2,Active Shallow Crust,0.0,89.98991,0.0,12/19/6569 +-0.37901,42.99638,4051,9,21,3,14,50,4.25,15.0,fr,12584,81,534325,1,1,Active Shallow Crust,0.0,89.98991,0.0,09/21/4051 +-0.37901,42.99638,52,12,13,14,16,48,4.25,27.5,fr,12585,1,534326,1,1,Active Shallow Crust,0.0,89.98991,0.0,12/13/0052 +-0.37901,42.99638,763,3,20,22,53,3,4.25,5.0,fr,12586,15,534333,1,1,Active Shallow Crust,128.8949,89.98092,0.0,03/20/0763 +-0.37901,42.99638,599,7,21,1,36,19,4.35,5.0,fr,12587,11,534336,1,1,Active Shallow Crust,359.9999,89.99009,0.0,07/21/0599 +-0.37901,42.99638,3689,6,8,0,53,26,4.35,5.0,fr,12588,73,534339,1,1,Active Shallow Crust,240.0076,57.99581,0.0,06/08/3689 +-0.37901,42.99638,9310,8,31,15,21,2,4.35,5.0,fr,12589,186,534342,1,1,Active Shallow Crust,0.0,89.98997,-90.0,08/31/9310 +-0.37901,42.99638,1740,3,4,7,7,19,4.35,15.0,fr,12590,34,534343,1,1,Active Shallow Crust,0.0,89.98997,-90.0,03/04/1740 +-0.37901,42.99638,3115,3,25,6,10,50,4.45,5.0,fr,12591,62,534348,1,1,Active Shallow Crust,0.0,89.99002,0.0,03/25/3115 +-0.37901,42.99638,3770,4,19,4,8,28,4.45,5.0,fr,12592,75,534354,1,1,Active Shallow Crust,0.0,89.99007,-90.0,04/19/3770 +-0.37901,42.99638,5956,3,28,19,5,26,4.55,5.0,fr,12593,119,534360,1,2,Active Shallow Crust,0.0,89.98994,0.0,03/28/5956 +-0.37901,42.99638,6735,9,7,1,43,46,4.55,5.0,fr,12594,134,534360,1,2,Active Shallow Crust,0.0,89.98994,0.0,09/07/6735 +-0.37901,42.99638,1964,11,7,21,8,46,4.65,15.0,fr,12595,39,534373,1,2,Active Shallow Crust,0.0,89.99,0.0,11/07/1964 +-0.37901,42.99638,6393,4,1,4,45,0,4.65,15.0,fr,12596,127,534373,1,2,Active Shallow Crust,0.0,89.99,0.0,04/01/6393 +-0.37901,42.99638,4206,6,19,9,14,30,4.75,5.0,fr,12597,84,534384,1,1,Active Shallow Crust,0.0,89.99004,0.0,06/19/4206 +-0.37901,42.99638,9030,8,26,13,52,45,4.85,15.0,fr,12598,180,534400,1,1,Active Shallow Crust,240.0158,58.00208,0.0,08/26/9030 +-0.37901,42.99638,4348,11,17,1,58,2,4.95,27.5,fr,12599,86,534410,1,1,Active Shallow Crust,0.0,89.98997,0.0,11/17/4348 +-0.37901,42.99638,7312,8,8,20,14,36,5.05,5.0,fr,12600,146,534423,1,1,Active Shallow Crust,240.0204,57.99725,0.0,08/08/7312 +-0.37901,42.99638,9680,5,26,18,1,16,5.25,5.0,fr,12601,193,534444,1,1,Active Shallow Crust,0.0,89.98997,0.0,05/26/9680 +-0.37901,42.99638,1140,5,21,4,31,20,5.45,5.0,fr,12602,22,534468,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/21/1140 +-0.37901,42.99638,5174,6,15,20,50,21,5.75,15.0,fr,12603,103,534505,1,1,Active Shallow Crust,0.0,89.99,0.0,06/15/5174 +-0.37901,42.99638,5844,10,20,4,36,41,5.95,15.0,fr,12604,116,534532,1,1,Active Shallow Crust,240.0463,57.99976,0.0,10/20/5844 +1.6483,47.20599,5740,7,19,23,5,21,3.65,5.0,fr,12605,114,534732,1,1,Active Shallow Crust,0.0,89.98931,0.0,07/19/5740 +1.6483,47.20599,4668,10,7,4,24,40,3.85,5.0,fr,12606,93,534756,1,1,Active Shallow Crust,0.0,89.9903,0.0,10/07/4668 +1.6483,47.20599,7788,7,24,5,11,13,4.05,5.0,fr,12607,155,534780,1,1,Active Shallow Crust,0.0,89.99037,0.0,07/24/7788 +1.6483,47.20599,9113,4,24,16,53,42,4.05,15.0,fr,12608,182,534781,1,1,Active Shallow Crust,0.0,89.99037,0.0,04/24/9113 +1.6483,47.20599,86,6,13,13,45,58,4.15,15.0,fr,12609,1,534793,1,1,Active Shallow Crust,0.0,89.9897,0.0,06/13/0086 +1.6483,47.20599,171,7,1,3,32,30,4.35,5.0,fr,12610,3,534816,1,1,Active Shallow Crust,0.0,89.98977,0.0,07/01/0171 +1.6483,47.20599,700,5,7,17,17,11,4.45,27.5,fr,12611,13,534830,1,1,Active Shallow Crust,0.0,89.99027,0.0,05/07/0700 +1.6483,47.20599,1747,5,5,17,37,4,4.55,5.0,fr,12612,34,534840,1,1,Active Shallow Crust,0.0,89.99025,0.0,05/05/1747 +1.6483,47.20599,9385,2,18,10,58,47,4.65,15.0,fr,12613,187,534853,1,1,Active Shallow Crust,0.0,89.98986,0.0,02/18/9385 +1.6483,47.20599,9959,7,8,16,6,40,4.95,5.0,fr,12614,199,534888,1,1,Active Shallow Crust,0.0,89.99009,0.0,07/08/9959 +1.6483,47.20599,4641,12,15,13,40,22,5.15,15.0,fr,12615,92,534916,1,1,Active Shallow Crust,240.0201,58.00003,0.0,12/15/4641 +4.77399,41.52255,4930,6,18,5,18,23,3.55,15.0,fr,12616,98,535201,1,1,Active Shallow Crust,0.0,89.99245,0.0,06/18/4930 +4.77399,41.52255,4494,11,6,18,23,8,3.55,5.0,fr,12617,89,535206,1,1,Active Shallow Crust,0.0,89.99236,-90.0,11/06/4494 +4.77399,41.52255,4464,1,28,17,29,6,3.85,15.0,fr,12618,89,535237,1,1,Active Shallow Crust,0.0,89.98931,0.0,01/28/4464 +4.77399,41.52255,8762,4,5,7,46,51,3.95,5.0,fr,12619,175,535248,1,1,Active Shallow Crust,0.0,89.99047,0.0,04/05/8762 +4.77399,41.52255,5988,3,22,4,14,6,4.05,5.0,fr,12620,119,535263,1,1,Active Shallow Crust,240.0047,58.006,0.0,03/22/5988 +4.77399,41.52255,7427,12,11,15,21,17,4.15,5.0,fr,12621,148,535278,1,1,Active Shallow Crust,0.0,89.98852,-90.0,12/11/7427 +2.06782,44.45001,7066,3,26,12,0,51,3.55,5.0,fr,12622,141,535680,1,1,Active Shallow Crust,0.0,89.9892,0.0,03/26/7066 +2.06782,44.45001,8684,7,8,14,45,20,3.65,5.0,fr,12623,173,535698,1,1,Active Shallow Crust,0.0,89.99026,-90.0,07/08/8684 +2.06782,44.45001,3246,11,9,0,31,36,3.75,5.0,fr,12624,64,535710,1,1,Active Shallow Crust,0.0,89.99133,-90.0,11/09/3246 +2.06782,44.45001,836,12,13,0,48,0,4.05,27.5,fr,12625,16,535742,1,2,Active Shallow Crust,0.0,89.98988,0.0,12/13/0836 +2.06782,44.45001,6752,10,3,1,29,38,4.05,27.5,fr,12626,135,535742,1,2,Active Shallow Crust,0.0,89.98988,0.0,10/03/6752 +3.43934,50.15624,9888,4,3,18,30,45,3.55,5.0,fr,12627,197,536160,1,1,Active Shallow Crust,0.0,89.99031,0.0,04/03/9888 +3.43934,50.15624,2748,12,7,1,9,1,3.65,15.0,fr,12628,54,536173,1,1,Active Shallow Crust,0.0,89.99136,0.0,12/07/2748 +3.43934,50.15624,572,8,3,15,16,23,3.75,5.0,fr,12629,11,536184,1,3,Active Shallow Crust,0.0,89.98974,0.0,08/03/0572 +3.43934,50.15624,2040,11,11,1,19,13,3.75,5.0,fr,12630,40,536184,1,3,Active Shallow Crust,0.0,89.98974,0.0,11/11/2040 +3.43934,50.15624,6601,9,14,20,50,48,3.75,5.0,fr,12631,132,536184,1,3,Active Shallow Crust,0.0,89.98974,0.0,09/14/6601 +3.43934,50.15624,162,3,26,6,52,38,3.85,15.0,fr,12632,3,536200,1,1,Active Shallow Crust,240.0112,57.9979,0.0,03/26/0162 +3.43934,50.15624,7800,5,28,0,21,2,6.35,15.0,fr,12633,155,536497,1,1,Active Shallow Crust,0.0,89.98995,0.0,05/28/7800 +-2.28426,46.23378,9401,4,21,0,19,20,4.25,15.0,fr,12634,188,536728,1,1,Active Shallow Crust,240.0074,57.99422,0.0,04/21/9401 +-2.28426,46.23378,3482,12,10,17,59,33,4.75,5.0,fr,12635,69,536784,1,1,Active Shallow Crust,0.0,89.99036,0.0,12/10/3482 +0.67871,49.79562,3162,10,31,17,0,51,3.55,15.0,fr,12636,63,537121,1,1,Active Shallow Crust,0.0,89.99023,0.0,10/31/3162 +0.67871,49.79562,4935,6,20,15,3,41,3.55,5.0,fr,12637,98,537123,1,1,Active Shallow Crust,240.0124,57.99839,0.0,06/20/4935 +0.67871,49.79562,9898,11,27,0,54,34,3.65,5.0,fr,12638,197,537132,1,2,Active Shallow Crust,0.0,89.98985,0.0,11/27/9898 +0.67871,49.79562,2871,10,9,11,28,54,3.65,5.0,fr,12639,57,537132,1,2,Active Shallow Crust,0.0,89.98985,0.0,10/09/2871 +0.67871,49.79562,5430,4,27,10,53,19,3.75,5.0,fr,12640,108,537147,1,2,Active Shallow Crust,240.0088,58.01752,0.0,04/27/5430 +0.67871,49.79562,7399,8,12,8,43,37,3.75,5.0,fr,12641,147,537147,1,2,Active Shallow Crust,240.0088,58.01752,0.0,08/12/7399 +0.67871,49.79562,7653,3,8,22,27,8,3.95,5.0,fr,12642,153,537171,1,1,Active Shallow Crust,240.0202,58.0051,0.0,03/08/7653 +0.67871,49.79562,3619,11,12,9,0,47,4.05,15.0,fr,12643,72,537190,1,1,Active Shallow Crust,128.89,89.99359,0.0,11/12/3619 +0.67871,49.79562,8166,5,9,10,50,58,4.15,5.0,fr,12644,163,537192,1,1,Active Shallow Crust,0.0,89.98981,0.0,05/09/8166 +0.67871,49.79562,3602,1,22,22,10,14,4.15,15.0,fr,12645,72,537193,1,1,Active Shallow Crust,0.0,89.98981,0.0,01/22/3602 +-0.92131,44.99633,3990,6,18,12,41,55,3.75,15.0,fr,12646,79,537625,1,1,Active Shallow Crust,0.0,89.99009,0.0,06/18/3990 +-0.92131,44.99633,3278,11,24,11,26,30,4.95,5.0,fr,12647,65,537768,1,1,Active Shallow Crust,0.0,89.99004,0.0,11/24/3278 +-6.9192,48.203,190,5,30,5,39,40,3.55,5.0,fr,12648,3,538080,1,1,Active Shallow Crust,0.0,89.99328,0.0,05/30/0190 +-6.9192,48.203,9372,8,17,21,59,8,3.55,5.0,fr,12649,187,538083,1,1,Active Shallow Crust,240.0118,57.99902,0.0,08/17/9372 +-0.85652,42.39647,4740,9,11,13,25,12,3.55,5.0,fr,12650,94,538560,1,1,Active Shallow Crust,0.0,89.98976,0.0,09/11/4740 +-0.85652,42.39647,9653,8,21,5,17,37,3.55,27.5,fr,12651,193,538568,1,1,Active Shallow Crust,0.0,89.98964,-90.0,08/21/9653 +-0.85652,42.39647,3814,8,2,11,16,31,3.65,5.0,fr,12652,76,538581,1,1,Active Shallow Crust,128.9008,89.96352,0.0,08/02/3814 +-0.85652,42.39647,2635,12,29,17,41,19,3.75,5.0,fr,12653,52,538584,1,1,Active Shallow Crust,0.0,89.98965,0.0,12/29/2635 +-0.85652,42.39647,8819,3,23,22,47,20,3.75,27.5,fr,12654,176,538586,1,1,Active Shallow Crust,0.0,89.98965,0.0,03/23/8819 +-0.85652,42.39647,9009,4,21,19,32,18,3.85,5.0,fr,12655,180,538605,1,1,Active Shallow Crust,128.8961,89.99374,0.0,04/21/9009 +-0.85652,42.39647,8156,11,26,10,38,26,4.05,5.0,fr,12656,163,538620,1,1,Active Shallow Crust,0.0,89.99005,0.0,11/26/8156 +-0.85652,42.39647,4254,4,19,1,54,54,4.35,15.0,fr,12657,85,538660,1,1,Active Shallow Crust,240.0075,57.99574,0.0,04/19/4254 +-0.85652,42.39647,8858,11,14,11,41,59,4.95,5.0,fr,12658,177,538728,1,1,Active Shallow Crust,0.0,89.98997,0.0,11/14/8858 +-0.8565192,42.39647,7332,5,23,14,48,10,6.05,5.357596,fr,12659,146,538860,1,1,Active Shallow Crust,0.0,89.99,0.0,05/23/7332 +3.41882,52.70752,9246,9,28,22,28,14,3.75,27.5,fr,12660,184,539069,1,1,Active Shallow Crust,240.009,58.01779,0.0,09/28/9246 +3.41882,52.70752,3241,12,3,5,36,7,4.05,15.0,fr,12661,64,539110,1,1,Active Shallow Crust,128.8895,89.99399,0.0,12/03/3241 +3.41882,52.70752,8378,9,6,4,55,59,4.65,5.0,fr,12662,167,539172,1,1,Active Shallow Crust,0.0,89.98967,0.0,09/06/8378 +0.46125,41.30016,222,10,4,14,40,8,3.55,5.0,fr,12663,4,539520,1,2,Active Shallow Crust,0.0,89.99006,0.0,10/04/0222 +0.46125,41.30016,2237,12,12,10,15,38,3.55,5.0,fr,12664,44,539520,1,2,Active Shallow Crust,0.0,89.99006,0.0,12/12/2237 +0.46125,41.30016,2497,1,26,14,55,36,3.55,5.0,fr,12665,49,539523,1,1,Active Shallow Crust,240.0118,57.9981,0.0,01/26/2497 +0.46125,41.30016,9914,8,2,18,41,50,3.65,15.0,fr,12666,198,539533,1,1,Active Shallow Crust,0.0,89.98988,0.0,08/02/9914 +0.46125,41.30016,8840,1,25,0,23,19,3.85,5.0,fr,12667,176,539556,1,1,Active Shallow Crust,0.0,89.98994,0.0,01/25/8840 +0.46125,41.30016,9758,2,6,4,4,48,3.85,15.0,fr,12668,195,539566,1,1,Active Shallow Crust,128.8961,89.9938,0.0,02/06/9758 +0.46125,41.30016,9082,7,31,3,30,51,4.05,5.0,fr,12669,181,539586,1,1,Active Shallow Crust,0.0,89.99004,-90.0,07/31/9082 +0.46125,41.30016,5091,8,5,8,34,54,4.05,5.0,fr,12670,101,539589,1,1,Active Shallow Crust,128.8911,89.99374,0.0,08/05/5091 +0.46125,41.30016,6722,1,29,5,10,9,4.25,5.0,fr,12671,134,539610,1,1,Active Shallow Crust,0.0,89.98994,-90.0,01/29/6722 +5.26101,41.72241,1585,3,5,22,1,18,3.65,15.0,fr,12672,31,540013,1,1,Active Shallow Crust,0.0,89.99329,0.0,03/05/1585 +7.17979,43.03527,8232,7,8,10,20,9,3.65,15.0,fr,12673,164,540493,1,1,Active Shallow Crust,0.0,89.98686,0.0,07/08/8232 +7.17979,43.03527,6848,9,5,2,6,21,4.45,27.5,fr,12674,136,540599,1,1,Active Shallow Crust,128.8931,89.99346,0.0,09/05/6848 +7.17979,43.03527,4333,8,24,22,13,47,4.75,5.0,fr,12675,86,540624,1,1,Active Shallow Crust,0.0,89.99074,0.0,08/24/4333 +2.2801,49.99309,6334,8,8,8,16,24,3.55,5.0,fr,12676,126,540963,1,1,Active Shallow Crust,240.013,57.99822,0.0,08/08/6334 +2.2801,49.99309,9597,9,1,10,33,23,3.65,15.0,fr,12677,191,540973,1,1,Active Shallow Crust,0.0,89.99133,0.0,09/01/9597 +2.2801,49.99309,9544,10,20,8,34,25,3.75,15.0,fr,12678,190,540991,1,1,Active Shallow Crust,0.0,89.98958,-90.0,10/20/9544 +2.2801,49.99309,7319,3,9,0,53,14,3.95,5.0,fr,12679,146,541017,1,1,Active Shallow Crust,128.8995,89.99387,0.0,03/09/7319 +2.2801,49.99309,3471,8,14,12,4,56,4.05,5.0,fr,12680,69,541023,1,1,Active Shallow Crust,240.0068,58.00571,0.0,08/14/3471 +2.2801,49.99309,3320,1,31,0,50,51,4.55,15.0,fr,12681,66,541087,1,1,Active Shallow Crust,0.0,89.98963,-90.0,01/31/3320 +2.2801,49.99309,5138,8,2,17,59,30,4.85,5.0,fr,12682,102,541116,1,1,Active Shallow Crust,0.0,89.98984,0.0,08/02/5138 +-4.6673,47.63535,4213,7,11,10,59,34,3.75,5.0,fr,12683,84,541464,1,1,Active Shallow Crust,0.0,89.9892,0.0,07/11/4213 +-4.6673,47.63535,3461,8,4,14,15,6,3.75,27.5,fr,12684,69,541469,1,1,Active Shallow Crust,240.0074,58.01778,0.0,08/04/3461 +-4.6673,47.63535,7273,1,4,15,16,26,4.05,15.0,fr,12685,145,541510,1,1,Active Shallow Crust,128.8902,89.99427,0.0,01/04/7273 +0.99341,44.21091,3839,6,17,23,48,53,3.55,5.0,fr,12686,76,541920,1,1,Active Shallow Crust,0.0,89.99006,0.0,06/17/3839 +0.99341,44.21091,1940,7,26,23,8,59,3.65,5.0,fr,12687,38,541935,1,1,Active Shallow Crust,240.0008,58.01281,0.0,07/26/1940 +0.99341,44.21091,5461,11,26,0,13,57,3.75,15.0,fr,12688,109,541951,1,1,Active Shallow Crust,0.0,89.98984,-90.0,11/26/5461 +0.99341,44.21091,4936,5,16,10,30,4,3.95,15.0,fr,12689,98,541975,1,1,Active Shallow Crust,0.0,89.9902,-90.0,05/16/4936 +0.99341,44.21091,362,5,30,5,55,12,4.25,5.0,fr,12690,7,542004,1,1,Active Shallow Crust,0.0,89.98991,0.0,05/30/0362 +0.99341,44.21091,3223,7,7,11,52,3,4.45,15.0,fr,12691,64,542035,1,1,Active Shallow Crust,0.0,89.98994,-90.0,07/07/3223 +5.80733,47.84676,5122,11,12,18,40,41,3.55,5.0,fr,12692,102,542400,1,1,Active Shallow Crust,0.0,89.99323,0.0,11/12/5122 +5.80733,47.84676,8883,3,17,0,53,28,3.65,5.0,fr,12693,177,542412,1,1,Active Shallow Crust,0.0,89.98794,0.0,03/17/8883 +5.80733,47.84676,2147,6,5,20,58,10,3.85,5.0,fr,12694,42,542436,1,1,Active Shallow Crust,0.0,89.99042,0.0,06/05/2147 +5.80733,47.84676,3632,7,8,1,33,28,3.95,15.0,fr,12695,72,542449,1,1,Active Shallow Crust,0.0,89.99146,0.0,07/08/3632 +5.80733,47.84676,5452,1,20,21,19,7,4.25,5.0,fr,12696,109,542484,1,2,Active Shallow Crust,0.0,89.99093,0.0,01/20/5452 +5.80733,47.84676,2838,12,5,19,0,48,4.25,5.0,fr,12697,56,542484,1,2,Active Shallow Crust,0.0,89.99093,0.0,12/05/2838 +5.80733,47.84676,5761,2,11,11,37,42,4.35,5.0,fr,12698,115,542496,1,1,Active Shallow Crust,0.0,89.98922,0.0,02/11/5761 +5.80733,47.84676,4769,12,26,23,16,33,4.85,5.0,fr,12699,95,542556,1,1,Active Shallow Crust,0.0,89.9894,0.0,12/26/4769 +5.80733,47.84676,2846,4,28,0,55,17,5.05,5.0,fr,12700,56,542580,1,1,Active Shallow Crust,0.0,89.99037,0.0,04/28/2846 +8.65076,50.44111,7311,8,19,6,15,56,3.55,5.0,fr,12701,146,543360,1,2,Active Shallow Crust,0.0,89.98715,0.0,08/19/7311 +8.65076,50.44111,2400,11,21,9,33,25,3.55,5.0,fr,12702,47,543360,1,2,Active Shallow Crust,0.0,89.98715,0.0,11/21/2400 +8.65076,50.44111,7782,10,28,21,47,48,3.55,5.0,fr,12703,155,543363,1,1,Active Shallow Crust,240.0108,58.00053,0.0,10/28/7782 +8.65076,50.44111,419,6,19,15,49,17,3.55,27.5,fr,12704,8,543371,1,1,Active Shallow Crust,128.8979,89.99358,0.0,06/19/0419 +8.65076,50.44111,9973,1,4,14,48,44,3.65,5.0,fr,12705,199,543372,1,1,Active Shallow Crust,0.0,89.98856,0.0,01/04/9973 +8.65076,50.44111,7793,10,11,8,6,42,3.65,5.0,fr,12706,155,543375,1,1,Active Shallow Crust,240.0006,58.0136,0.0,10/11/7793 +8.65076,50.44111,4705,5,19,13,57,23,3.65,5.0,fr,12707,94,543378,1,1,Active Shallow Crust,0.0,89.98842,-90.0,05/19/4705 +8.65076,50.44111,1285,7,5,3,40,34,3.95,15.0,fr,12708,25,543409,1,1,Active Shallow Crust,0.0,89.9919,0.0,07/05/1285 +8.65076,50.44111,4867,6,2,5,43,50,4.15,5.0,fr,12709,97,543432,1,1,Active Shallow Crust,0.0,89.98712,0.0,06/02/4867 +8.65076,50.44111,7912,12,25,14,26,32,4.35,15.0,fr,12710,158,543466,1,1,Active Shallow Crust,128.8975,89.98221,0.0,12/25/7912 +-0.13539,44.24994,2573,9,19,22,14,17,3.55,5.0,fr,12711,51,543840,1,2,Active Shallow Crust,0.0,89.99007,0.0,09/19/2573 +-0.13539,44.24994,8301,8,26,7,39,30,3.55,5.0,fr,12712,166,543840,1,2,Active Shallow Crust,0.0,89.99007,0.0,08/26/8301 +-0.13539,44.24994,3737,4,30,9,49,44,3.95,27.5,fr,12713,74,543890,1,1,Active Shallow Crust,0.0,89.99003,0.0,04/30/3737 +-0.13539,44.24994,6198,11,17,6,21,28,4.15,5.0,fr,12714,123,543912,1,1,Active Shallow Crust,0.0,89.99004,0.0,11/17/6198 +0.45708,48.33186,5188,12,21,22,51,0,3.55,15.0,fr,12715,103,544321,1,1,Active Shallow Crust,0.0,89.98994,0.0,12/21/5188 +0.45708,48.33186,1646,5,20,21,29,49,4.15,5.0,fr,12716,32,544392,1,1,Active Shallow Crust,0.0,89.98992,0.0,05/20/1646 +0.45708,48.33186,5156,7,18,21,51,16,4.15,15.0,fr,12717,103,544393,1,1,Active Shallow Crust,0.0,89.98992,0.0,07/18/5156 +0.45708,48.33186,122,8,15,16,57,53,4.25,15.0,fr,12718,2,544405,1,1,Active Shallow Crust,0.0,89.99008,0.0,08/15/0122 +0.45708,48.33186,1506,5,16,12,35,54,4.25,15.0,fr,12719,30,544408,1,1,Active Shallow Crust,240.0079,57.99413,0.0,05/16/1506 +0.45708,48.33186,1688,9,28,7,32,34,4.55,5.0,fr,12720,33,544440,1,1,Active Shallow Crust,0.0,89.99006,0.0,09/28/1688 +0.45708,48.33186,9270,10,12,10,44,23,5.15,5.0,fr,12721,185,544521,1,1,Active Shallow Crust,128.8828,89.99104,0.0,10/12/9270 +1.5745,49.18201,2132,12,8,0,8,2,3.95,5.0,fr,12722,42,544848,1,1,Active Shallow Crust,0.0,89.9896,0.0,12/08/2132 +1.5745,49.18201,7657,4,25,5,1,54,4.05,5.0,fr,12723,153,544869,1,1,Active Shallow Crust,128.8902,89.99398,0.0,04/25/7657 +1.5745,49.18201,8430,4,6,5,0,36,5.45,5.0,fr,12724,168,545028,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/06/8430 +7.32859,48.28753,9088,8,24,8,57,55,3.55,5.0,fr,12725,181,545280,1,2,Active Shallow Crust,0.0,89.99329,0.0,08/24/9088 +7.32859,48.28753,6300,1,18,1,5,21,3.55,5.0,fr,12726,125,545280,1,2,Active Shallow Crust,0.0,89.99329,0.0,01/18/6300 +7.32859,48.28753,26,8,11,16,21,20,3.55,15.0,fr,12727,0,545281,1,2,Active Shallow Crust,0.0,89.99329,0.0,08/11/0026 +7.32859,48.28753,3626,5,6,1,46,56,3.55,15.0,fr,12728,72,545281,1,2,Active Shallow Crust,0.0,89.99329,0.0,05/06/3626 +7.32859,48.28753,7724,11,17,21,17,49,3.55,5.0,fr,12729,154,545286,1,1,Active Shallow Crust,0.0,89.99321,-90.0,11/17/7724 +7.32859,48.28753,2041,1,10,6,43,15,3.55,5.0,fr,12730,40,545289,1,1,Active Shallow Crust,128.8955,89.99329,0.0,01/10/2041 +7.32859,48.28753,9265,4,19,22,33,16,3.65,27.5,fr,12731,185,545294,1,1,Active Shallow Crust,0.0,89.98804,0.0,04/19/9265 +7.32859,48.28753,5227,2,15,18,53,38,3.65,27.5,fr,12732,104,545303,1,1,Active Shallow Crust,128.8995,89.96356,0.0,02/15/5227 +7.32859,48.28753,874,4,16,19,34,1,3.75,5.0,fr,12733,17,545304,1,1,Active Shallow Crust,0.0,89.98934,0.0,04/16/0874 +7.32859,48.28753,3220,8,23,2,58,52,3.75,15.0,fr,12734,64,545305,1,1,Active Shallow Crust,0.0,89.98934,0.0,08/23/3220 +7.32859,48.28753,5865,5,28,10,35,32,3.75,27.5,fr,12735,117,545306,1,1,Active Shallow Crust,0.0,89.98934,0.0,05/28/5865 +7.32859,48.28753,6410,1,29,12,25,48,3.85,5.0,fr,12736,128,545316,1,4,Active Shallow Crust,0.0,89.9905,0.0,01/29/6410 +7.32859,48.28753,6319,7,29,15,54,44,3.85,5.0,fr,12737,126,545316,1,4,Active Shallow Crust,0.0,89.9905,0.0,07/29/6319 +7.32859,48.28753,3610,1,17,8,44,30,3.85,5.0,fr,12738,72,545316,1,4,Active Shallow Crust,0.0,89.9905,0.0,01/17/3610 +7.32859,48.28753,4425,9,22,18,4,42,3.85,5.0,fr,12739,88,545316,1,4,Active Shallow Crust,0.0,89.9905,0.0,09/22/4425 +7.32859,48.28753,4169,3,7,11,29,47,3.95,5.0,fr,12740,83,545328,1,1,Active Shallow Crust,0.0,89.99153,0.0,03/07/4169 +7.32859,48.28753,266,12,19,15,12,58,4.05,5.0,fr,12741,5,545343,1,1,Active Shallow Crust,240.0065,58.00547,0.0,12/19/0266 +7.32859,48.28753,9689,3,27,21,32,48,4.15,5.0,fr,12742,193,545352,1,1,Active Shallow Crust,0.0,89.98991,0.0,03/27/9689 +7.32859,48.28753,586,6,8,5,22,11,4.35,5.0,fr,12743,11,545376,1,1,Active Shallow Crust,0.0,89.98931,0.0,06/08/0586 +7.32859,48.28753,8158,10,8,4,20,16,4.45,5.0,fr,12744,163,545388,1,1,Active Shallow Crust,0.0,89.99048,0.0,10/08/8158 +7.32859,48.28753,398,6,5,4,17,33,4.75,5.0,fr,12745,7,545424,1,1,Active Shallow Crust,0.0,89.98988,0.0,06/05/0398 +7.32859,48.28753,3395,11,11,10,5,1,4.75,27.5,fr,12746,67,545426,1,1,Active Shallow Crust,0.0,89.98988,0.0,11/11/3395 +-0.46682,44.35601,8934,11,2,13,3,23,4.65,15.0,fr,12747,178,546373,1,1,Active Shallow Crust,0.0,89.98997,0.0,11/02/8934 +3.17776,48.10952,6648,6,18,23,35,32,3.55,5.0,fr,12748,132,546720,1,1,Active Shallow Crust,0.0,89.9899,0.0,06/18/6648 +3.17776,48.10952,2400,1,21,13,36,14,3.55,5.0,fr,12749,47,546723,1,1,Active Shallow Crust,240.0124,57.9987,0.0,01/21/2400 +3.17776,48.10952,6239,5,4,8,0,8,3.85,5.0,fr,12750,124,546756,1,1,Active Shallow Crust,0.0,89.99046,0.0,05/04/6239 +3.17776,48.10952,8055,12,12,7,25,11,4.15,5.0,fr,12751,161,546792,1,1,Active Shallow Crust,0.0,89.98988,0.0,12/12/8055 +3.17776,48.10952,6376,6,4,23,41,36,4.25,5.0,fr,12752,127,546804,1,1,Active Shallow Crust,0.0,89.98947,0.0,06/04/6376 +3.17776,48.10952,1967,8,5,10,39,39,4.25,15.0,fr,12753,39,546805,1,1,Active Shallow Crust,0.0,89.98947,0.0,08/05/1967 +7.21596,47.50784,3961,1,17,9,52,43,3.55,5.0,fr,12754,79,547200,1,3,Active Shallow Crust,0.0,89.99319,0.0,01/17/3961 +7.21596,47.50784,6119,5,31,18,53,51,3.55,5.0,fr,12755,122,547200,1,3,Active Shallow Crust,0.0,89.99319,0.0,05/31/6119 +7.21596,47.50784,3315,3,23,21,48,4,3.55,5.0,fr,12756,66,547200,1,3,Active Shallow Crust,0.0,89.99319,0.0,03/23/3315 +7.21596,47.50784,6347,2,19,20,48,1,3.55,27.5,fr,12757,126,547202,1,1,Active Shallow Crust,0.0,89.99319,0.0,02/19/6347 +7.21596,47.50784,8433,11,10,19,39,44,3.55,5.0,fr,12758,168,547206,1,1,Active Shallow Crust,0.0,89.99311,-90.0,11/10/8433 +7.21596,47.50784,2775,8,14,15,13,52,3.55,15.0,fr,12759,55,547207,1,1,Active Shallow Crust,0.0,89.99311,-90.0,08/14/2775 +7.21596,47.50784,1763,7,15,4,57,27,3.65,5.0,fr,12760,35,547212,1,4,Active Shallow Crust,0.0,89.98786,0.0,07/15/1763 +7.21596,47.50784,6603,10,26,5,56,20,3.65,5.0,fr,12761,132,547212,1,4,Active Shallow Crust,0.0,89.98786,0.0,10/26/6603 +7.21596,47.50784,9443,7,14,10,20,59,3.65,5.0,fr,12762,188,547212,1,4,Active Shallow Crust,0.0,89.98786,0.0,07/14/9443 +7.21596,47.50784,8551,5,16,10,59,48,3.65,5.0,fr,12763,171,547212,1,4,Active Shallow Crust,0.0,89.98786,0.0,05/16/8551 +7.21596,47.50784,6747,12,8,15,47,13,3.65,15.0,fr,12764,134,547213,1,2,Active Shallow Crust,0.0,89.98786,0.0,12/08/6747 +7.21596,47.50784,9328,9,9,22,43,47,3.65,15.0,fr,12765,186,547213,1,2,Active Shallow Crust,0.0,89.98786,0.0,09/09/9328 +7.21596,47.50784,6448,5,8,7,8,0,3.65,15.0,fr,12766,128,547216,1,1,Active Shallow Crust,240.0021,58.01199,0.0,05/08/6448 +7.21596,47.50784,7704,2,11,18,35,21,3.65,27.5,fr,12767,154,547217,1,1,Active Shallow Crust,240.0021,58.0119,0.0,02/11/7704 +7.21596,47.50784,4194,3,12,0,3,3,3.65,5.0,fr,12768,83,547218,1,1,Active Shallow Crust,0.0,89.98772,-90.0,03/12/4194 +7.21596,47.50784,7059,4,14,20,20,56,3.75,5.0,fr,12769,141,547224,1,2,Active Shallow Crust,0.0,89.98918,0.0,04/14/7059 +7.21596,47.50784,9164,5,18,8,49,7,3.75,5.0,fr,12770,183,547224,1,2,Active Shallow Crust,0.0,89.98918,0.0,05/18/9164 +7.21596,47.50784,1123,3,31,13,52,1,3.75,27.5,fr,12771,22,547226,1,1,Active Shallow Crust,0.0,89.98918,0.0,03/31/1123 +7.21596,47.50784,3942,12,23,19,16,15,3.75,15.0,fr,12772,78,547228,1,1,Active Shallow Crust,240.0084,58.01815,0.0,12/23/3942 +7.21596,47.50784,4413,7,12,2,15,15,3.75,5.0,fr,12773,88,547230,1,1,Active Shallow Crust,0.0,89.98905,-90.0,07/12/4413 +7.21596,47.50784,4766,5,4,4,40,43,3.75,5.0,fr,12774,95,547233,1,1,Active Shallow Crust,128.8969,89.96751,0.0,05/04/4766 +7.21596,47.50784,5717,5,13,1,57,44,3.85,5.0,fr,12775,114,547239,1,1,Active Shallow Crust,240.0109,57.99695,0.0,05/13/5717 +7.21596,47.50784,8076,6,21,17,47,35,3.95,5.0,fr,12776,161,547248,1,1,Active Shallow Crust,0.0,89.9914,0.0,06/21/8076 +7.21596,47.50784,1071,7,27,21,54,30,3.95,5.0,fr,12777,21,547251,1,1,Active Shallow Crust,240.0197,58.0053,0.0,07/27/1071 +7.21596,47.50784,3199,10,16,20,27,48,3.95,5.0,fr,12778,63,547254,1,1,Active Shallow Crust,0.0,89.9913,-90.0,10/16/3199 +7.21596,47.50784,2555,10,10,12,56,45,4.05,5.0,fr,12779,51,547260,1,2,Active Shallow Crust,0.0,89.98851,0.0,10/10/2555 +7.21596,47.50784,2374,8,21,3,1,58,4.05,5.0,fr,12780,47,547260,1,2,Active Shallow Crust,0.0,89.98851,0.0,08/21/2374 +7.21596,47.50784,2675,9,11,16,37,11,4.05,15.0,fr,12781,53,547261,1,1,Active Shallow Crust,0.0,89.98851,0.0,09/11/2675 +7.21596,47.50784,7765,11,25,13,55,29,4.15,27.5,fr,12782,155,547274,1,1,Active Shallow Crust,0.0,89.98976,0.0,11/25/7765 +7.21596,47.50784,1857,4,12,11,17,43,4.15,27.5,fr,12783,37,547277,1,1,Active Shallow Crust,240.0087,57.99679,0.0,04/12/1857 +7.21596,47.50784,7411,5,18,9,36,27,4.25,5.0,fr,12784,148,547284,1,1,Active Shallow Crust,0.0,89.99088,0.0,05/18/7411 +7.21596,47.50784,8866,5,2,21,49,25,4.25,27.5,fr,12785,177,547286,1,1,Active Shallow Crust,0.0,89.99088,0.0,05/02/8866 +7.21596,47.50784,7332,8,19,23,36,45,4.25,5.0,fr,12786,146,547290,1,1,Active Shallow Crust,0.0,89.99077,-90.0,08/19/7332 +7.21596,47.50784,8219,9,5,14,54,15,4.35,5.0,fr,12787,164,547296,1,2,Active Shallow Crust,0.0,89.98915,0.0,09/05/8219 +7.21596,47.50784,7805,7,28,6,26,58,4.35,5.0,fr,12788,156,547296,1,2,Active Shallow Crust,0.0,89.98915,0.0,07/28/7805 +7.21596,47.50784,1619,5,20,2,0,6,4.45,15.0,fr,12789,32,547309,1,1,Active Shallow Crust,0.0,89.99033,0.0,05/20/1619 +7.21596,47.50784,9868,3,10,19,59,59,4.55,5.0,fr,12790,197,547320,1,1,Active Shallow Crust,0.0,89.98923,0.0,03/10/9868 +7.21596,47.50784,6257,1,26,10,0,12,4.75,5.0,fr,12791,125,547344,1,2,Active Shallow Crust,0.0,89.98973,0.0,01/26/6257 +7.21596,47.50784,1192,11,16,12,0,7,4.75,5.0,fr,12792,23,547344,1,2,Active Shallow Crust,0.0,89.98973,0.0,11/16/1192 +7.21596,47.50784,3440,9,12,20,43,26,4.95,5.0,fr,12793,68,547368,1,1,Active Shallow Crust,0.0,89.99049,0.0,09/12/3440 +7.21596,47.50784,3161,5,9,2,11,30,4.95,5.0,fr,12794,63,547374,1,1,Active Shallow Crust,0.0,89.99037,-90.0,05/09/3161 +7.21596,47.50784,5029,9,3,12,36,7,5.05,27.5,fr,12795,100,547382,1,1,Active Shallow Crust,0.0,89.99031,0.0,09/03/5029 +5.75944,47.45701,4998,10,1,7,11,14,3.55,5.0,fr,12796,99,547680,1,1,Active Shallow Crust,0.0,89.99318,0.0,10/01/4998 +5.75944,47.45701,2334,12,5,8,52,28,3.55,5.0,fr,12797,46,547686,1,1,Active Shallow Crust,0.0,89.9931,-90.0,12/05/2334 +5.75944,47.45701,8923,4,8,6,12,29,3.65,15.0,fr,12798,178,547693,1,2,Active Shallow Crust,0.0,89.98785,0.0,04/08/8923 +5.75944,47.45701,8282,5,17,7,41,10,3.65,15.0,fr,12799,165,547693,1,2,Active Shallow Crust,0.0,89.98785,0.0,05/17/8282 +5.75944,47.45701,4893,4,1,13,45,36,3.65,27.5,fr,12800,97,547703,1,1,Active Shallow Crust,128.9012,89.96291,0.0,04/01/4893 +5.75944,47.45701,8239,2,13,17,16,45,3.75,5.0,fr,12801,164,547713,1,1,Active Shallow Crust,128.897,89.96751,0.0,02/13/8239 +5.75944,47.45701,8152,12,6,9,56,1,3.85,15.0,fr,12802,163,547720,1,1,Active Shallow Crust,240.0119,57.99788,0.0,12/06/8152 +5.75944,47.45701,1599,1,15,2,41,27,3.95,5.0,fr,12803,31,547728,1,1,Active Shallow Crust,0.0,89.99139,0.0,01/15/1599 +5.75944,47.45701,226,8,7,15,15,4,4.05,15.0,fr,12804,4,547741,1,1,Active Shallow Crust,0.0,89.98849,0.0,08/07/0226 +5.75944,47.45701,8965,4,30,14,39,41,4.05,5.0,fr,12805,179,547746,1,1,Active Shallow Crust,0.0,89.98837,-90.0,04/30/8965 +5.75944,47.45701,6102,5,24,12,43,49,4.15,15.0,fr,12806,122,547753,1,1,Active Shallow Crust,0.0,89.98975,0.0,05/24/6102 +5.75944,47.45701,4616,6,8,3,44,33,4.25,5.0,fr,12807,92,547764,1,1,Active Shallow Crust,0.0,89.99086,0.0,06/08/4616 +5.75944,47.45701,4908,8,3,15,5,24,4.25,5.0,fr,12808,98,547767,1,1,Active Shallow Crust,240.0075,57.99453,0.0,08/03/4908 +5.75944,47.45701,4698,11,15,17,15,2,4.35,15.0,fr,12809,93,547777,1,1,Active Shallow Crust,0.0,89.98914,0.0,11/15/4698 +5.75944,47.45701,6372,8,4,18,17,41,4.45,5.0,fr,12810,127,547794,1,1,Active Shallow Crust,0.0,89.99021,-90.0,08/04/6372 +5.75944,47.45701,2564,7,9,23,21,46,4.75,15.0,fr,12811,51,547825,1,1,Active Shallow Crust,0.0,89.98972,0.0,07/09/2564 +5.75944,47.45701,4875,4,11,15,23,29,4.75,15.0,fr,12812,97,547831,1,1,Active Shallow Crust,0.0,89.9896,-90.0,04/11/4875 +5.75944,47.45701,5071,6,21,11,20,48,5.75,5.0,fr,12813,101,547944,1,1,Active Shallow Crust,0.0,89.99024,0.0,06/21/5071 +8.46258,47.51709,4735,4,14,22,34,36,3.55,5.0,fr,12814,94,548160,1,11,Active Shallow Crust,0.0,89.98638,0.0,04/14/4735 +8.46258,47.51709,4893,7,27,21,40,44,3.55,5.0,fr,12815,97,548160,1,11,Active Shallow Crust,0.0,89.98638,0.0,07/27/4893 +8.46258,47.51709,4171,12,30,21,8,47,3.55,5.0,fr,12816,83,548160,1,11,Active Shallow Crust,0.0,89.98638,0.0,12/30/4171 +8.46258,47.51709,204,12,9,1,48,25,3.55,5.0,fr,12817,4,548160,1,11,Active Shallow Crust,0.0,89.98638,0.0,12/09/0204 +8.46258,47.51709,2872,11,12,7,6,31,3.55,5.0,fr,12818,57,548160,1,11,Active Shallow Crust,0.0,89.98638,0.0,11/12/2872 +8.46258,47.51709,5930,1,5,10,52,23,3.55,5.0,fr,12819,118,548160,1,11,Active Shallow Crust,0.0,89.98638,0.0,01/05/5930 +8.46258,47.51709,511,5,21,11,11,16,3.55,5.0,fr,12820,10,548160,1,11,Active Shallow Crust,0.0,89.98638,0.0,05/21/0511 +8.46258,47.51709,1770,10,25,5,30,34,3.55,5.0,fr,12821,35,548160,1,11,Active Shallow Crust,0.0,89.98638,0.0,10/25/1770 +8.46258,47.51709,1117,12,6,15,0,15,3.55,5.0,fr,12822,22,548160,1,11,Active Shallow Crust,0.0,89.98638,0.0,12/06/1117 +8.46258,47.51709,8469,10,19,4,24,4,3.55,5.0,fr,12823,169,548160,1,11,Active Shallow Crust,0.0,89.98638,0.0,10/19/8469 +8.46258,47.51709,4698,4,28,9,38,52,3.55,5.0,fr,12824,93,548160,1,11,Active Shallow Crust,0.0,89.98638,0.0,04/28/4698 +8.46258,47.51709,9937,11,5,4,36,47,3.55,15.0,fr,12825,198,548161,1,2,Active Shallow Crust,0.0,89.98638,0.0,11/05/9937 +8.46258,47.51709,1903,7,1,17,19,31,3.55,15.0,fr,12826,38,548161,1,2,Active Shallow Crust,0.0,89.98638,0.0,07/01/1903 +8.46258,47.51709,3418,9,25,1,32,27,3.55,5.0,fr,12827,68,548163,1,2,Active Shallow Crust,240.0118,57.99848,0.0,09/25/3418 +8.46258,47.51709,2723,5,10,13,20,2,3.55,5.0,fr,12828,54,548163,1,2,Active Shallow Crust,240.0118,57.99848,0.0,05/10/2723 +8.46258,47.51709,9270,4,14,22,23,52,3.55,27.5,fr,12829,185,548165,1,1,Active Shallow Crust,240.0118,57.99839,0.0,04/14/9270 +8.46258,47.51709,6629,9,26,20,8,25,3.55,5.0,fr,12830,132,548166,1,2,Active Shallow Crust,0.0,89.98622,-90.0,09/26/6629 +8.46258,47.51709,3380,5,27,6,47,58,3.55,5.0,fr,12831,67,548166,1,2,Active Shallow Crust,0.0,89.98622,-90.0,05/27/3380 +8.46258,47.51709,2302,9,23,7,7,20,3.55,27.5,fr,12832,46,548168,1,2,Active Shallow Crust,0.0,89.98622,-90.0,09/23/2302 +8.46258,47.51709,753,8,17,3,33,10,3.55,27.5,fr,12833,15,548168,1,2,Active Shallow Crust,0.0,89.98622,-90.0,08/17/0753 +8.46258,47.51709,1447,4,30,4,37,46,3.55,5.0,fr,12834,28,548169,1,1,Active Shallow Crust,128.8991,89.99319,0.0,04/30/1447 +8.46258,47.51709,9776,11,27,16,15,1,3.65,5.0,fr,12835,195,548172,1,9,Active Shallow Crust,0.0,89.98786,0.0,11/27/9776 +8.46258,47.51709,9597,11,11,5,54,1,3.65,5.0,fr,12836,191,548172,1,9,Active Shallow Crust,0.0,89.98786,0.0,11/11/9597 +8.46258,47.51709,2425,7,4,0,55,46,3.65,5.0,fr,12837,48,548172,1,9,Active Shallow Crust,0.0,89.98786,0.0,07/04/2425 +8.46258,47.51709,1410,5,18,2,54,3,3.65,5.0,fr,12838,28,548172,1,9,Active Shallow Crust,0.0,89.98786,0.0,05/18/1410 +8.46258,47.51709,3637,10,19,9,25,26,3.65,5.0,fr,12839,72,548172,1,9,Active Shallow Crust,0.0,89.98786,0.0,10/19/3637 +8.46258,47.51709,7507,4,4,12,0,23,3.65,5.0,fr,12840,150,548172,1,9,Active Shallow Crust,0.0,89.98786,0.0,04/04/7507 +8.46258,47.51709,1748,5,12,18,20,2,3.65,5.0,fr,12841,34,548172,1,9,Active Shallow Crust,0.0,89.98786,0.0,05/12/1748 +8.46258,47.51709,3698,5,14,13,36,15,3.65,5.0,fr,12842,73,548172,1,9,Active Shallow Crust,0.0,89.98786,0.0,05/14/3698 +8.46258,47.51709,8066,11,18,22,12,40,3.65,5.0,fr,12843,161,548172,1,9,Active Shallow Crust,0.0,89.98786,0.0,11/18/8066 +8.46258,47.51709,3473,9,26,10,27,37,3.65,15.0,fr,12844,69,548173,1,4,Active Shallow Crust,0.0,89.98786,0.0,09/26/3473 +8.46258,47.51709,6471,12,1,17,34,52,3.65,15.0,fr,12845,129,548173,1,4,Active Shallow Crust,0.0,89.98786,0.0,12/01/6471 +8.46258,47.51709,3701,9,27,10,45,28,3.65,15.0,fr,12846,74,548173,1,4,Active Shallow Crust,0.0,89.98786,0.0,09/27/3701 +8.46258,47.51709,2394,6,20,14,53,35,3.65,15.0,fr,12847,47,548173,1,4,Active Shallow Crust,0.0,89.98786,0.0,06/20/2394 +8.46258,47.51709,7555,4,25,3,53,53,3.65,27.5,fr,12848,151,548174,1,1,Active Shallow Crust,0.0,89.98786,0.0,04/25/7555 +8.46258,47.51709,3983,2,11,10,7,24,3.65,5.0,fr,12849,79,548175,1,4,Active Shallow Crust,240.0007,58.01312,0.0,02/11/3983 +8.46258,47.51709,8028,3,27,5,20,49,3.65,5.0,fr,12850,160,548175,1,4,Active Shallow Crust,240.0007,58.01312,0.0,03/27/8028 +8.46258,47.51709,7641,2,25,21,48,40,3.65,5.0,fr,12851,152,548175,1,4,Active Shallow Crust,240.0007,58.01312,0.0,02/25/7641 +8.46258,47.51709,6605,5,28,17,28,32,3.65,5.0,fr,12852,132,548175,1,4,Active Shallow Crust,240.0007,58.01312,0.0,05/28/6605 +8.46258,47.51709,2674,6,25,11,18,4,3.65,5.0,fr,12853,53,548178,1,3,Active Shallow Crust,0.0,89.98772,-90.0,06/25/2674 +8.46258,47.51709,3543,11,19,15,13,12,3.65,5.0,fr,12854,70,548178,1,3,Active Shallow Crust,0.0,89.98772,-90.0,11/19/3543 +8.46258,47.51709,2012,5,1,19,8,49,3.65,5.0,fr,12855,40,548178,1,3,Active Shallow Crust,0.0,89.98772,-90.0,05/01/2012 +8.46258,47.51709,5698,2,1,15,38,42,3.75,5.0,fr,12856,113,548184,1,7,Active Shallow Crust,0.0,89.98918,0.0,02/01/5698 +8.46258,47.51709,457,12,30,17,52,3,3.75,5.0,fr,12857,9,548184,1,7,Active Shallow Crust,0.0,89.98918,0.0,12/30/0457 +8.46258,47.51709,6307,5,3,13,45,35,3.75,5.0,fr,12858,126,548184,1,7,Active Shallow Crust,0.0,89.98918,0.0,05/03/6307 +8.46258,47.51709,4431,9,26,16,26,59,3.75,5.0,fr,12859,88,548184,1,7,Active Shallow Crust,0.0,89.98918,0.0,09/26/4431 +8.46258,47.51709,5971,4,14,14,0,16,3.75,5.0,fr,12860,119,548184,1,7,Active Shallow Crust,0.0,89.98918,0.0,04/14/5971 +8.46258,47.51709,2295,12,8,9,43,38,3.75,5.0,fr,12861,45,548184,1,7,Active Shallow Crust,0.0,89.98918,0.0,12/08/2295 +8.46258,47.51709,3028,10,15,6,3,23,3.75,5.0,fr,12862,60,548184,1,7,Active Shallow Crust,0.0,89.98918,0.0,10/15/3028 +8.46258,47.51709,9171,2,4,4,30,28,3.75,15.0,fr,12863,183,548185,1,4,Active Shallow Crust,0.0,89.98918,0.0,02/04/9171 +8.46258,47.51709,4106,3,11,10,55,19,3.75,15.0,fr,12864,82,548185,1,4,Active Shallow Crust,0.0,89.98918,0.0,03/11/4106 +8.46258,47.51709,7109,3,8,20,14,42,3.75,15.0,fr,12865,142,548185,1,4,Active Shallow Crust,0.0,89.98918,0.0,03/08/7109 +8.46258,47.51709,3177,9,30,2,0,52,3.75,15.0,fr,12866,63,548185,1,4,Active Shallow Crust,0.0,89.98918,0.0,09/30/3177 +8.46258,47.51709,7454,4,7,16,7,10,3.75,15.0,fr,12867,149,548194,1,1,Active Shallow Crust,128.8967,89.96751,0.0,04/07/7454 +8.46258,47.51709,8377,1,30,18,46,34,3.85,5.0,fr,12868,167,548196,1,3,Active Shallow Crust,0.0,89.99036,0.0,01/30/8377 +8.46258,47.51709,1017,1,24,8,5,20,3.85,5.0,fr,12869,20,548196,1,3,Active Shallow Crust,0.0,89.99036,0.0,01/24/1017 +8.46258,47.51709,9011,7,2,3,58,56,3.85,5.0,fr,12870,180,548196,1,3,Active Shallow Crust,0.0,89.99036,0.0,07/02/9011 +8.46258,47.51709,9597,7,8,14,26,49,3.85,15.0,fr,12871,191,548197,1,9,Active Shallow Crust,0.0,89.99036,0.0,07/08/9597 +8.46258,47.51709,1762,2,25,20,25,47,3.85,15.0,fr,12872,35,548197,1,9,Active Shallow Crust,0.0,89.99036,0.0,02/25/1762 +8.46258,47.51709,9216,9,26,21,1,9,3.85,15.0,fr,12873,184,548197,1,9,Active Shallow Crust,0.0,89.99036,0.0,09/26/9216 +8.46258,47.51709,2493,9,27,8,12,26,3.85,15.0,fr,12874,49,548197,1,9,Active Shallow Crust,0.0,89.99036,0.0,09/27/2493 +8.46258,47.51709,5098,5,22,20,29,10,3.85,15.0,fr,12875,101,548197,1,9,Active Shallow Crust,0.0,89.99036,0.0,05/22/5098 +8.46258,47.51709,3733,3,30,15,6,5,3.85,15.0,fr,12876,74,548197,1,9,Active Shallow Crust,0.0,89.99036,0.0,03/30/3733 +8.46258,47.51709,5907,3,19,22,33,38,3.85,15.0,fr,12877,118,548197,1,9,Active Shallow Crust,0.0,89.99036,0.0,03/19/5907 +8.46258,47.51709,564,12,23,16,32,58,3.85,15.0,fr,12878,11,548197,1,9,Active Shallow Crust,0.0,89.99036,0.0,12/23/0564 +8.46258,47.51709,3666,3,9,17,26,33,3.85,15.0,fr,12879,73,548197,1,9,Active Shallow Crust,0.0,89.99036,0.0,03/09/3666 +8.46258,47.51709,5362,6,16,4,22,10,3.85,5.0,fr,12880,107,548199,1,1,Active Shallow Crust,240.0089,57.99911,0.0,06/16/5362 +8.46258,47.51709,1526,4,8,4,39,22,3.85,15.0,fr,12881,30,548200,1,1,Active Shallow Crust,240.0089,57.99911,0.0,04/08/1526 +8.46258,47.51709,73,8,31,8,15,4,3.85,5.0,fr,12882,1,548205,1,1,Active Shallow Crust,128.8951,89.99518,0.0,08/31/0073 +8.46258,47.51709,1462,11,30,22,42,32,3.95,5.0,fr,12883,29,548208,1,3,Active Shallow Crust,0.0,89.99141,0.0,11/30/1462 +8.46258,47.51709,1322,11,8,9,22,5,3.95,5.0,fr,12884,26,548208,1,3,Active Shallow Crust,0.0,89.99141,0.0,11/08/1322 +8.46258,47.51709,9894,11,11,22,24,4,3.95,5.0,fr,12885,197,548208,1,3,Active Shallow Crust,0.0,89.99141,0.0,11/11/9894 +8.46258,47.51709,5134,5,7,21,6,22,3.95,15.0,fr,12886,102,548209,1,1,Active Shallow Crust,0.0,89.99141,0.0,05/07/5134 +8.46258,47.51709,1550,1,21,21,38,38,3.95,5.0,fr,12887,30,548214,1,2,Active Shallow Crust,0.0,89.9913,-90.0,01/21/1550 +8.46258,47.51709,1919,9,2,12,51,48,3.95,5.0,fr,12888,38,548214,1,2,Active Shallow Crust,0.0,89.9913,-90.0,09/02/1919 +8.46258,47.51709,6512,1,21,16,1,15,3.95,15.0,fr,12889,130,548218,1,1,Active Shallow Crust,128.9013,89.99141,0.0,01/21/6512 +8.46258,47.51709,3778,6,5,12,24,56,3.95,27.5,fr,12890,75,548219,1,1,Active Shallow Crust,128.9013,89.99141,0.0,06/05/3778 +8.46258,47.51709,728,1,18,6,44,15,4.05,5.0,fr,12891,14,548220,1,3,Active Shallow Crust,0.0,89.99234,0.0,01/18/0728 +8.46258,47.51709,5144,3,11,19,35,34,4.05,5.0,fr,12892,102,548220,1,3,Active Shallow Crust,0.0,89.99234,0.0,03/11/5144 +8.46258,47.51709,2208,10,26,2,13,25,4.05,5.0,fr,12893,44,548220,1,3,Active Shallow Crust,0.0,89.99234,0.0,10/26/2208 +8.46258,47.51709,9935,5,17,0,40,48,4.05,15.0,fr,12894,198,548221,1,2,Active Shallow Crust,0.0,89.99234,0.0,05/17/9935 +8.46258,47.51709,623,10,21,22,17,37,4.05,15.0,fr,12895,12,548221,1,2,Active Shallow Crust,0.0,89.99234,0.0,10/21/0623 +8.46258,47.51709,6973,7,6,9,3,18,4.05,5.0,fr,12896,139,548229,1,1,Active Shallow Crust,128.8919,89.99234,0.0,07/06/6973 +8.46258,47.51709,3427,10,13,14,13,44,4.15,5.0,fr,12897,68,548232,1,2,Active Shallow Crust,0.0,89.99317,0.0,10/13/3427 +8.46258,47.51709,785,8,7,12,52,52,4.15,5.0,fr,12898,15,548232,1,2,Active Shallow Crust,0.0,89.99317,0.0,08/07/0785 +8.46258,47.51709,1995,12,11,16,30,31,4.15,15.0,fr,12899,39,548233,1,1,Active Shallow Crust,0.0,89.99317,0.0,12/11/1995 +8.46258,47.51709,9446,9,18,17,21,12,4.25,5.0,fr,12900,188,548244,1,1,Active Shallow Crust,0.0,89.98783,0.0,09/18/9446 +8.46258,47.51709,2695,6,6,9,6,0,4.25,15.0,fr,12901,53,548245,1,1,Active Shallow Crust,0.0,89.98783,0.0,06/06/2695 +8.46258,47.51709,735,11,12,19,21,59,4.25,27.5,fr,12902,14,548246,1,1,Active Shallow Crust,0.0,89.98783,0.0,11/12/0735 +8.46258,47.51709,3956,9,24,8,3,59,4.25,5.0,fr,12903,79,548247,1,1,Active Shallow Crust,240.0073,57.99414,0.0,09/24/3956 +8.46258,47.51709,7865,8,22,23,21,55,4.25,15.0,fr,12904,157,548254,1,1,Active Shallow Crust,128.8931,89.98099,0.0,08/22/7865 +8.46258,47.51709,9411,9,3,0,34,14,4.35,5.0,fr,12905,188,548256,1,1,Active Shallow Crust,0.0,89.98915,0.0,09/03/9411 +8.46258,47.51709,4838,10,19,11,16,9,4.35,27.5,fr,12906,96,548267,1,1,Active Shallow Crust,128.8977,89.98306,0.0,10/19/4838 +8.46258,47.51709,6239,4,11,10,39,17,4.45,5.0,fr,12907,124,548268,1,1,Active Shallow Crust,0.0,89.99033,0.0,04/11/6239 +8.46258,47.51709,146,9,23,10,19,26,4.55,5.0,fr,12908,2,548280,1,2,Active Shallow Crust,0.0,89.99139,0.0,09/23/0146 +8.46258,47.51709,9736,7,2,14,8,40,4.55,5.0,fr,12909,194,548280,1,2,Active Shallow Crust,0.0,89.99139,0.0,07/02/9736 +8.46258,47.51709,1215,5,3,19,0,49,4.65,5.0,fr,12910,24,548292,1,3,Active Shallow Crust,0.0,89.98848,0.0,05/03/1215 +8.46258,47.51709,4712,5,23,13,48,30,4.65,5.0,fr,12911,94,548292,1,3,Active Shallow Crust,0.0,89.98848,0.0,05/23/4712 +8.46258,47.51709,1771,1,25,8,22,32,4.65,5.0,fr,12912,35,548292,1,3,Active Shallow Crust,0.0,89.98848,0.0,01/25/1771 +8.46258,47.51709,8410,2,17,1,34,1,4.75,5.0,fr,12913,168,548304,1,1,Active Shallow Crust,0.0,89.98973,0.0,02/17/8410 +8.46258,47.51709,4452,10,5,1,45,5,4.75,15.0,fr,12914,89,548305,1,1,Active Shallow Crust,0.0,89.98973,0.0,10/05/4452 +8.46258,47.51709,9961,3,29,21,27,26,4.85,5.0,fr,12915,199,548316,1,2,Active Shallow Crust,0.0,89.99085,0.0,03/29/9961 +8.46258,47.51709,3422,8,2,15,58,44,4.85,5.0,fr,12916,68,548316,1,2,Active Shallow Crust,0.0,89.99085,0.0,08/02/3422 +8.46258,47.51709,2785,6,12,5,13,42,4.95,5.0,fr,12917,55,548337,1,1,Active Shallow Crust,128.8896,89.98947,0.0,06/12/2785 +8.46258,47.51709,6208,12,5,12,57,59,5.05,5.0,fr,12918,124,548340,1,1,Active Shallow Crust,0.0,89.99031,0.0,12/05/6208 +8.46258,47.51709,6157,10,29,5,43,55,5.05,27.5,fr,12919,123,548345,1,1,Active Shallow Crust,240.0227,57.99776,0.0,10/29/6157 +8.46258,47.51709,9987,11,13,0,21,14,5.15,5.0,fr,12920,199,548352,1,1,Active Shallow Crust,0.0,89.9892,0.0,11/13/9987 +8.46258,47.51709,4449,5,22,12,27,7,5.35,5.0,fr,12921,88,548376,1,1,Active Shallow Crust,0.0,89.98971,0.0,05/22/4449 +8.46258,47.51709,2382,1,24,1,58,57,5.35,15.0,fr,12922,47,548377,1,1,Active Shallow Crust,0.0,89.98971,0.0,01/24/2382 +8.46258,47.51709,5509,12,7,22,46,58,5.35,5.0,fr,12923,110,548385,1,1,Active Shallow Crust,128.8826,89.9882,0.0,12/07/5509 +8.46258,47.51709,4487,11,21,0,3,35,5.55,15.0,fr,12924,89,548404,1,1,Active Shallow Crust,240.0336,57.99989,0.0,11/21/4487 +8.46258,47.51709,7762,12,11,0,34,33,5.65,5.0,fr,12925,155,548412,1,1,Active Shallow Crust,0.0,89.99028,0.0,12/11/7762 +8.459584,47.5206,5963,9,5,10,39,5,6.25,5.719927,fr,12926,119,548487,1,1,Active Shallow Crust,240.0743,58.00012,0.0,09/05/5963 +1.02931,42.44927,5096,3,30,15,5,24,3.55,5.0,fr,12927,101,548640,1,6,Active Shallow Crust,0.0,89.9907,0.0,03/30/5096 +1.02931,42.44927,7107,3,18,8,16,53,3.55,5.0,fr,12928,142,548640,1,6,Active Shallow Crust,0.0,89.9907,0.0,03/18/7107 +1.02931,42.44927,7239,2,6,6,37,54,3.55,5.0,fr,12929,144,548640,1,6,Active Shallow Crust,0.0,89.9907,0.0,02/06/7239 +1.02931,42.44927,6543,4,3,13,47,59,3.55,5.0,fr,12930,130,548640,1,6,Active Shallow Crust,0.0,89.9907,0.0,04/03/6543 +1.02931,42.44927,9663,12,6,4,33,34,3.55,5.0,fr,12931,193,548640,1,6,Active Shallow Crust,0.0,89.9907,0.0,12/06/9663 +1.02931,42.44927,3126,2,16,18,40,31,3.55,5.0,fr,12932,62,548640,1,6,Active Shallow Crust,0.0,89.9907,0.0,02/16/3126 +1.02931,42.44927,3480,9,3,23,31,38,3.55,15.0,fr,12933,69,548641,1,1,Active Shallow Crust,0.0,89.9907,0.0,09/03/3480 +1.02931,42.44927,2232,12,18,16,30,23,3.55,5.0,fr,12934,44,548643,1,2,Active Shallow Crust,240.012,57.99785,0.0,12/18/2232 +1.02931,42.44927,9750,10,24,7,13,25,3.55,5.0,fr,12935,194,548643,1,2,Active Shallow Crust,240.012,57.99785,0.0,10/24/9750 +1.02931,42.44927,6344,7,4,3,44,3,3.55,15.0,fr,12936,126,548644,1,1,Active Shallow Crust,240.012,57.99785,0.0,07/04/6344 +1.02931,42.44927,7918,8,5,1,12,36,3.55,27.5,fr,12937,158,548645,1,1,Active Shallow Crust,240.012,57.99775,0.0,08/05/7918 +1.02931,42.44927,6583,3,9,22,48,58,3.55,5.0,fr,12938,131,548646,1,1,Active Shallow Crust,0.0,89.99059,-90.0,03/09/6583 +1.02931,42.44927,2035,6,4,19,38,20,3.55,5.0,fr,12939,40,548649,1,1,Active Shallow Crust,128.8967,89.99349,0.0,06/04/2035 +1.02931,42.44927,7890,10,29,12,2,23,3.65,5.0,fr,12940,157,548652,1,2,Active Shallow Crust,0.0,89.99005,0.0,10/29/7890 +1.02931,42.44927,9528,6,1,19,20,20,3.65,5.0,fr,12941,190,548652,1,2,Active Shallow Crust,0.0,89.99005,0.0,06/01/9528 +1.02931,42.44927,5786,1,27,5,12,15,3.65,15.0,fr,12942,115,548653,1,1,Active Shallow Crust,0.0,89.99005,0.0,01/27/5786 +1.02931,42.44927,2489,6,22,17,10,4,3.65,5.0,fr,12943,49,548655,1,1,Active Shallow Crust,240.001,58.01279,0.0,06/22/2489 +1.02931,42.44927,8672,3,27,4,59,18,3.65,15.0,fr,12944,173,548656,1,1,Active Shallow Crust,240.001,58.01279,0.0,03/27/8672 +1.02931,42.44927,2126,11,11,11,34,42,3.65,5.0,fr,12945,42,548658,1,1,Active Shallow Crust,0.0,89.98994,-90.0,11/11/2126 +1.02931,42.44927,666,3,5,18,49,43,3.65,27.5,fr,12946,13,548663,1,1,Active Shallow Crust,128.901,89.96345,0.0,03/05/0666 +1.02931,42.44927,735,3,10,19,3,29,3.75,5.0,fr,12947,14,548664,1,2,Active Shallow Crust,0.0,89.98965,0.0,03/10/0735 +1.02931,42.44927,4879,10,3,18,11,47,3.75,5.0,fr,12948,97,548664,1,2,Active Shallow Crust,0.0,89.98965,0.0,10/03/4879 +1.02931,42.44927,6186,11,15,14,47,34,3.75,15.0,fr,12949,123,548665,1,3,Active Shallow Crust,0.0,89.98965,0.0,11/15/6186 +1.02931,42.44927,7697,11,27,6,39,56,3.75,15.0,fr,12950,153,548665,1,3,Active Shallow Crust,0.0,89.98965,0.0,11/27/7697 +1.02931,42.44927,3305,10,27,18,46,9,3.75,15.0,fr,12951,66,548665,1,3,Active Shallow Crust,0.0,89.98965,0.0,10/27/3305 +1.02931,42.44927,1510,11,14,22,14,47,3.85,5.0,fr,12952,30,548676,1,1,Active Shallow Crust,0.0,89.98946,0.0,11/14/1510 +1.02931,42.44927,1796,8,5,20,15,2,3.85,15.0,fr,12953,35,548677,1,1,Active Shallow Crust,0.0,89.98946,0.0,08/05/1796 +1.02931,42.44927,5642,5,8,2,47,16,3.85,5.0,fr,12954,112,548682,1,1,Active Shallow Crust,0.0,89.98934,-90.0,05/08/5642 +1.02931,42.44927,4359,4,17,0,38,8,3.95,5.0,fr,12955,87,548688,1,1,Active Shallow Crust,0.0,89.98943,0.0,04/17/4359 +1.02931,42.44927,7541,9,20,20,45,48,3.95,15.0,fr,12956,150,548689,1,1,Active Shallow Crust,0.0,89.98943,0.0,09/20/7541 +1.02931,42.44927,9342,9,19,9,7,52,3.95,5.0,fr,12957,186,548691,1,1,Active Shallow Crust,240.0193,58.00501,0.0,09/19/9342 +1.02931,42.44927,6256,1,4,3,49,43,3.95,5.0,fr,12958,125,548694,1,1,Active Shallow Crust,0.0,89.9905,-90.0,01/04/6256 +1.02931,42.44927,8271,2,2,15,40,33,4.05,15.0,fr,12959,165,548701,1,1,Active Shallow Crust,0.0,89.98954,0.0,02/02/8271 +1.02931,42.44927,5453,8,2,11,3,10,4.25,5.0,fr,12960,109,548724,1,1,Active Shallow Crust,0.0,89.99003,0.0,08/02/5453 +1.02931,42.44927,4117,5,31,9,19,17,4.25,15.0,fr,12961,82,548734,1,1,Active Shallow Crust,128.895,89.98093,0.0,05/31/4117 +1.02931,42.44927,9561,7,2,2,7,51,4.45,15.0,fr,12962,191,548749,1,1,Active Shallow Crust,0.0,89.9901,0.0,07/02/9561 +1.02931,42.44927,9763,1,3,7,24,53,4.65,5.0,fr,12963,195,548772,1,1,Active Shallow Crust,0.0,89.99004,0.0,01/03/9763 +1.02931,42.44927,9577,12,28,4,49,2,4.75,5.0,fr,12964,191,548784,1,1,Active Shallow Crust,0.0,89.99019,0.0,12/28/9577 +1.02931,42.44927,8453,10,9,21,3,41,4.75,27.5,fr,12965,169,548786,1,1,Active Shallow Crust,0.0,89.99019,0.0,10/09/8453 +1.02931,42.44927,3740,12,5,15,46,35,4.95,5.0,fr,12966,74,548808,1,1,Active Shallow Crust,0.0,89.98997,0.0,12/05/3740 +1.02931,42.44927,6332,5,20,3,32,38,5.45,5.0,fr,12967,126,548874,1,1,Active Shallow Crust,0.0,89.99007,-90.0,05/20/6332 +2.65678,52.57048,2817,11,29,15,57,38,3.75,5.0,fr,12968,56,550584,1,1,Active Shallow Crust,0.0,89.99026,0.0,11/29/2817 +2.65678,52.57048,9280,12,15,21,25,34,3.85,15.0,fr,12969,185,550597,1,1,Active Shallow Crust,0.0,89.98915,0.0,12/15/9280 +5.1805,42.25152,9991,3,4,2,4,16,4.25,5.0,fr,12970,199,551124,1,1,Active Shallow Crust,0.0,89.99,0.0,03/04/9991 +5.1805,42.25152,4313,10,3,22,27,33,4.25,15.0,fr,12971,86,551125,1,1,Active Shallow Crust,0.0,89.99,0.0,10/03/4313 +2.48027,50.64678,5199,12,9,3,3,8,3.55,5.0,fr,12972,103,551520,1,1,Active Shallow Crust,0.0,89.99041,0.0,12/09/5199 +2.48027,50.64678,8532,12,27,15,32,59,3.55,27.5,fr,12973,170,551522,1,1,Active Shallow Crust,0.0,89.99041,0.0,12/27/8532 +2.48027,50.64678,6767,2,10,4,40,7,3.55,27.5,fr,12974,135,551525,1,1,Active Shallow Crust,240.0131,57.99793,0.0,02/10/6767 +2.48027,50.64678,8507,2,17,21,23,15,3.55,5.0,fr,12975,170,551526,1,1,Active Shallow Crust,0.0,89.9903,-90.0,02/17/8507 +2.48027,50.64678,4981,9,30,20,32,31,3.65,5.0,fr,12976,99,551532,1,3,Active Shallow Crust,0.0,89.9886,0.0,09/30/4981 +2.48027,50.64678,3185,4,22,17,44,51,3.65,5.0,fr,12977,63,551532,1,3,Active Shallow Crust,0.0,89.9886,0.0,04/22/3185 +2.48027,50.64678,6573,4,20,19,45,45,3.65,5.0,fr,12978,131,551532,1,3,Active Shallow Crust,0.0,89.9886,0.0,04/20/6573 +2.48027,50.64678,1013,7,8,7,26,21,3.85,5.0,fr,12979,20,551556,1,1,Active Shallow Crust,0.0,89.99094,0.0,07/08/1013 +2.48027,50.64678,7653,10,23,7,28,37,3.85,15.0,fr,12980,153,551557,1,1,Active Shallow Crust,0.0,89.99094,0.0,10/23/7653 +2.48027,50.64678,5850,10,19,6,2,2,3.95,5.0,fr,12981,116,551568,1,1,Active Shallow Crust,0.0,89.98991,0.0,10/19/5850 +2.48027,50.64678,7702,2,5,9,29,29,4.25,15.0,fr,12982,154,551605,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/05/7702 +2.48027,50.64678,3749,3,27,1,36,38,4.95,5.0,fr,12983,74,551694,1,1,Active Shallow Crust,359.9997,89.99032,-90.0,03/27/3749 +3.23212,49.50442,5025,3,11,19,10,17,3.55,5.0,fr,12984,100,552003,1,1,Active Shallow Crust,240.0121,57.99829,0.0,03/11/5025 +3.23212,49.50442,9847,6,4,5,27,7,3.55,15.0,fr,12985,196,552004,1,1,Active Shallow Crust,240.0121,57.99829,0.0,06/04/9847 +3.23212,49.50442,9153,3,4,14,54,37,3.65,5.0,fr,12986,183,552012,1,1,Active Shallow Crust,0.0,89.99125,0.0,03/04/9153 +3.23212,49.50442,9554,11,26,13,52,33,3.95,27.5,fr,12987,191,552050,1,1,Active Shallow Crust,0.0,89.98967,0.0,11/26/9554 +3.23212,49.50442,4918,5,15,7,55,20,4.25,5.0,fr,12988,98,552093,1,1,Active Shallow Crust,128.8936,89.98082,0.0,05/15/4918 +3.23212,49.50442,5452,4,8,8,1,15,5.35,5.0,fr,12989,109,552216,1,1,Active Shallow Crust,0.0,89.9901,0.0,04/08/5452 +-1.99734,46.80548,7483,3,25,4,22,14,3.55,5.0,fr,12990,149,552960,1,1,Active Shallow Crust,0.0,89.98965,0.0,03/25/7483 +-1.99734,46.80548,3484,8,27,4,36,12,3.55,5.0,fr,12991,69,552963,1,2,Active Shallow Crust,240.0124,57.99802,0.0,08/27/3484 +-1.99734,46.80548,8583,10,13,8,8,58,3.55,5.0,fr,12992,171,552963,1,2,Active Shallow Crust,240.0124,57.99802,0.0,10/13/8583 +-1.99734,46.80548,5315,3,30,21,55,33,3.65,5.0,fr,12993,106,552972,1,1,Active Shallow Crust,0.0,89.98923,0.0,03/30/5315 +-1.99734,46.80548,6684,6,30,6,30,1,3.65,5.0,fr,12994,133,552978,1,1,Active Shallow Crust,0.0,89.99067,-90.0,06/30/6684 +-1.99734,46.80548,2186,7,20,7,11,2,3.65,27.5,fr,12995,43,552980,1,1,Active Shallow Crust,0.0,89.99067,-90.0,07/20/2186 +-1.99734,46.80548,2433,7,12,23,7,14,3.75,5.0,fr,12996,48,552984,1,1,Active Shallow Crust,0.0,89.9904,0.0,07/12/2433 +-1.99734,46.80548,8352,2,2,14,11,38,3.75,15.0,fr,12997,167,552985,1,1,Active Shallow Crust,0.0,89.9904,0.0,02/02/8352 +-1.99734,46.80548,5602,3,1,2,0,9,3.75,27.5,fr,12998,112,552986,1,1,Active Shallow Crust,0.0,89.9904,0.0,03/01/5602 +-1.99734,46.80548,2833,12,14,20,47,55,3.85,5.0,fr,12999,56,553002,1,1,Active Shallow Crust,0.0,89.99011,-90.0,12/14/2833 +-1.99734,46.80548,6782,10,26,16,48,13,3.95,5.0,fr,13000,135,553014,1,1,Active Shallow Crust,0.0,89.99009,-90.0,10/26/6782 +-1.99734,46.80548,347,10,20,18,46,4,4.05,5.0,fr,13001,6,553020,1,1,Active Shallow Crust,0.0,89.9903,0.0,10/20/0347 +-1.99734,46.80548,7297,4,8,17,10,17,4.15,5.0,fr,13002,145,553032,1,1,Active Shallow Crust,0.0,89.98962,0.0,04/08/7297 +-1.99734,46.80548,2721,7,16,9,3,7,4.25,5.0,fr,13003,54,553044,1,1,Active Shallow Crust,0.0,89.98998,0.0,07/16/2721 +-1.99734,46.80548,7320,2,5,1,13,0,4.45,15.0,fr,13004,146,553069,1,1,Active Shallow Crust,0.0,89.9902,0.0,02/05/7320 +-1.99734,46.80548,9187,3,2,1,30,33,4.65,5.0,fr,13005,183,553101,1,1,Active Shallow Crust,128.8909,89.98699,0.0,03/02/9187 +1.2327,47.18179,4073,7,15,16,2,11,3.55,5.0,fr,13006,81,553440,1,3,Active Shallow Crust,0.0,89.98972,0.0,07/15/4073 +1.2327,47.18179,360,7,27,14,35,11,3.55,5.0,fr,13007,7,553440,1,3,Active Shallow Crust,0.0,89.98972,0.0,07/27/0360 +1.2327,47.18179,317,10,4,15,5,27,3.55,5.0,fr,13008,6,553440,1,3,Active Shallow Crust,0.0,89.98972,0.0,10/04/0317 +1.2327,47.18179,681,3,4,5,33,38,3.55,15.0,fr,13009,13,553441,1,1,Active Shallow Crust,0.0,89.98972,0.0,03/04/0681 +1.2327,47.18179,1382,12,10,19,51,24,3.65,5.0,fr,13010,27,553452,1,2,Active Shallow Crust,0.0,89.98931,0.0,12/10/1382 +1.2327,47.18179,420,1,21,1,19,38,3.65,5.0,fr,13011,8,553452,1,2,Active Shallow Crust,0.0,89.98931,0.0,01/21/0420 +1.2327,47.18179,781,12,18,14,38,38,3.65,15.0,fr,13012,15,553453,1,1,Active Shallow Crust,0.0,89.98931,0.0,12/18/0781 +1.2327,47.18179,5693,3,7,20,30,57,3.65,5.0,fr,13013,113,553455,1,1,Active Shallow Crust,240.0011,58.01289,0.0,03/07/5693 +1.2327,47.18179,1336,5,5,17,33,6,3.65,15.0,fr,13014,26,553456,1,1,Active Shallow Crust,240.0011,58.01289,0.0,05/05/1336 +1.2327,47.18179,1876,7,4,7,22,26,3.75,5.0,fr,13015,37,553464,1,1,Active Shallow Crust,0.0,89.99047,0.0,07/04/1876 +1.2327,47.18179,8154,4,24,3,41,54,3.95,15.0,fr,13016,163,553489,1,1,Active Shallow Crust,0.0,89.99027,0.0,04/24/8154 +1.2327,47.18179,7601,11,15,4,47,44,4.05,5.0,fr,13017,152,553500,1,1,Active Shallow Crust,0.0,89.99036,0.0,11/15/7601 +1.2327,47.18179,748,11,18,7,55,5,4.15,5.0,fr,13018,14,553521,1,1,Active Shallow Crust,128.8972,89.99399,0.0,11/18/0748 +1.2327,47.18179,5342,1,17,21,17,49,4.25,15.0,fr,13019,106,553525,1,1,Active Shallow Crust,0.0,89.99005,0.0,01/17/5342 +1.2327,47.18179,6410,6,6,16,13,10,4.35,5.0,fr,13020,128,553536,1,1,Active Shallow Crust,0.0,89.98977,0.0,06/06/6410 +1.2327,47.18179,2853,2,26,5,39,41,4.95,5.0,fr,13021,57,553608,1,1,Active Shallow Crust,0.0,89.99008,0.0,02/26/2853 +1.2327,47.18179,3506,12,26,14,57,6,5.15,5.0,fr,13022,70,553632,1,1,Active Shallow Crust,0.0,89.98995,0.0,12/26/3506 +-4.3523,49.5723,606,3,24,0,20,27,3.85,5.0,fr,13023,12,553956,1,1,Active Shallow Crust,0.0,89.99074,0.0,03/24/0606 +3.88869,44.33739,4746,4,23,10,28,35,3.55,5.0,fr,13024,94,554400,1,1,Active Shallow Crust,0.0,89.98918,0.0,04/23/4746 +3.88869,44.33739,6113,6,25,5,51,9,3.55,5.0,fr,13025,122,554406,1,1,Active Shallow Crust,0.0,89.98906,-90.0,06/25/6113 +3.88869,44.33739,9984,6,1,22,4,35,3.55,15.0,fr,13026,199,554407,1,1,Active Shallow Crust,0.0,89.98906,-90.0,06/01/9984 +3.88869,44.33739,7059,7,3,5,57,6,3.75,5.0,fr,13027,141,554430,1,1,Active Shallow Crust,0.0,89.99131,-90.0,07/03/7059 +3.88869,44.33739,6500,5,9,19,17,7,3.95,15.0,fr,13028,129,554449,1,1,Active Shallow Crust,0.0,89.9909,0.0,05/09/6500 +3.88869,44.33739,7168,7,5,19,5,30,4.05,27.5,fr,13029,143,554468,1,1,Active Shallow Crust,0.0,89.98975,-90.0,07/05/7168 +3.88869,44.33739,9556,2,6,17,20,34,4.25,5.0,fr,13030,191,554484,1,1,Active Shallow Crust,0.0,89.99033,0.0,02/06/9556 +3.88869,44.33739,1381,1,30,17,36,25,4.25,15.0,fr,13031,27,554485,1,1,Active Shallow Crust,0.0,89.99033,0.0,01/30/1381 +3.88869,44.33739,5085,12,27,6,55,41,4.65,5.0,fr,13032,101,554532,1,1,Active Shallow Crust,0.0,89.98984,0.0,12/27/5085 +4.92774,47.72939,2580,10,13,23,52,17,3.55,5.0,fr,13033,51,554880,1,1,Active Shallow Crust,0.0,89.99322,0.0,10/13/2580 +4.92774,47.72939,6879,8,23,15,4,14,3.55,15.0,fr,13034,137,554881,1,1,Active Shallow Crust,0.0,89.99322,0.0,08/23/6879 +4.92774,47.72939,2922,1,3,21,8,20,3.65,5.0,fr,13035,58,554892,1,1,Active Shallow Crust,0.0,89.98791,0.0,01/03/2922 +4.92774,47.72939,6886,12,23,21,54,20,3.65,15.0,fr,13036,137,554896,1,1,Active Shallow Crust,240.0014,58.01229,0.0,12/23/6886 +4.92774,47.72939,3750,2,3,22,56,26,3.75,15.0,fr,13037,74,554905,1,2,Active Shallow Crust,0.0,89.98923,0.0,02/03/3750 +4.92774,47.72939,5791,11,22,18,59,9,3.75,15.0,fr,13038,115,554905,1,2,Active Shallow Crust,0.0,89.98923,0.0,11/22/5791 +4.92774,47.72939,1945,12,24,11,55,37,3.75,5.0,fr,13039,38,554913,1,1,Active Shallow Crust,128.8968,89.96751,0.0,12/24/1945 +4.92774,47.72939,2674,10,23,17,31,34,3.85,27.5,fr,13040,53,554918,1,1,Active Shallow Crust,0.0,89.99039,0.0,10/23/2674 +4.92774,47.72939,5257,6,5,3,36,13,4.15,15.0,fr,13041,105,554956,1,1,Active Shallow Crust,240.0084,57.99739,0.0,06/05/5257 +4.92774,47.72939,8797,1,12,1,46,45,4.95,15.0,fr,13042,175,555058,1,1,Active Shallow Crust,128.8892,89.98991,0.0,01/12/8797 +2.19895,45.3861,7375,10,22,22,24,28,3.75,5.0,fr,13043,147,555384,1,1,Active Shallow Crust,0.0,89.98875,0.0,10/22/7375 +2.19895,45.3861,8461,3,20,8,21,0,3.75,5.0,fr,13044,169,555387,1,1,Active Shallow Crust,240.0079,58.01766,0.0,03/20/8461 +2.19895,45.3861,2044,7,18,6,56,50,3.95,27.5,fr,13045,40,555410,1,1,Active Shallow Crust,0.0,89.99107,0.0,07/18/2044 +2.19895,45.3861,9966,12,7,11,3,36,4.05,5.0,fr,13046,199,555426,1,1,Active Shallow Crust,0.0,89.98993,-90.0,12/07/9966 +2.19895,45.3861,1180,8,20,4,38,1,4.15,5.0,fr,13047,23,555441,1,1,Active Shallow Crust,128.8976,89.99379,0.0,08/20/1180 +2.19895,45.3861,6961,4,22,11,24,21,4.25,5.0,fr,13048,139,555450,1,1,Active Shallow Crust,0.0,89.9904,-90.0,04/22/6961 +2.19895,45.3861,3296,12,26,15,11,36,4.85,27.5,fr,13049,65,555518,1,1,Active Shallow Crust,0.0,89.98969,0.0,12/26/3296 +-2.70643,47.82802,1454,3,12,18,30,32,3.55,5.0,fr,13050,29,555840,1,3,Active Shallow Crust,0.0,89.98985,0.0,03/12/1454 +-2.70643,47.82802,16,1,2,11,59,57,3.55,5.0,fr,13051,0,555840,1,3,Active Shallow Crust,0.0,89.98985,0.0,01/02/0016 +-2.70643,47.82802,4999,12,16,0,43,28,3.55,5.0,fr,13052,99,555840,1,3,Active Shallow Crust,0.0,89.98985,0.0,12/16/4999 +-2.70643,47.82802,9572,9,30,0,49,18,3.55,27.5,fr,13053,191,555842,1,1,Active Shallow Crust,0.0,89.98985,0.0,09/30/9572 +-2.70643,47.82802,463,10,2,18,0,0,3.55,15.0,fr,13054,9,555850,1,1,Active Shallow Crust,128.8964,89.99323,0.0,10/02/0463 +-2.70643,47.82802,71,6,22,19,21,42,3.65,5.0,fr,13055,1,555852,1,2,Active Shallow Crust,0.0,89.99095,0.0,06/22/0071 +-2.70643,47.82802,8689,6,8,11,35,17,3.65,5.0,fr,13056,173,555852,1,2,Active Shallow Crust,0.0,89.99095,0.0,06/08/8689 +-2.70643,47.82802,3758,9,1,4,32,15,3.65,27.5,fr,13057,75,555854,1,1,Active Shallow Crust,0.0,89.99095,0.0,09/01/3758 +-2.70643,47.82802,8874,1,14,8,41,45,3.65,5.0,fr,13058,177,555855,1,1,Active Shallow Crust,240.0012,58.01299,0.0,01/14/8874 +-2.70643,47.82802,8048,6,10,11,22,39,3.75,5.0,fr,13059,160,555864,1,2,Active Shallow Crust,0.0,89.98924,0.0,06/10/8048 +-2.70643,47.82802,14,12,23,1,33,11,3.75,5.0,fr,13060,0,555864,1,2,Active Shallow Crust,0.0,89.98924,0.0,12/23/0014 +-2.70643,47.82802,9342,5,22,12,43,57,3.75,15.0,fr,13061,186,555865,1,1,Active Shallow Crust,0.0,89.98924,0.0,05/22/9342 +-2.70643,47.82802,45,11,30,3,19,38,3.75,27.5,fr,13062,0,555869,1,1,Active Shallow Crust,240.0086,58.01762,0.0,11/30/0045 +-2.70643,47.82802,9802,6,21,18,31,13,3.85,5.0,fr,13063,196,555879,1,1,Active Shallow Crust,240.0114,57.99771,0.0,06/21/9802 +-2.70643,47.82802,9467,11,13,7,5,52,3.85,15.0,fr,13064,189,555883,1,1,Active Shallow Crust,0.0,89.9903,-90.0,11/13/9467 +-2.70643,47.82802,9853,8,10,12,21,8,3.95,5.0,fr,13065,197,555888,1,2,Active Shallow Crust,0.0,89.98932,0.0,08/10/9853 +-2.70643,47.82802,1384,5,13,0,11,58,3.95,5.0,fr,13066,27,555888,1,2,Active Shallow Crust,0.0,89.98932,0.0,05/13/1384 +-2.70643,47.82802,726,2,28,16,22,23,3.95,15.0,fr,13067,14,555889,1,2,Active Shallow Crust,0.0,89.98932,0.0,02/28/0726 +-2.70643,47.82802,2829,12,13,16,55,21,3.95,15.0,fr,13068,56,555889,1,2,Active Shallow Crust,0.0,89.98932,0.0,12/13/2829 +-2.70643,47.82802,19,12,24,3,34,53,4.15,5.0,fr,13069,0,555915,1,2,Active Shallow Crust,240.0089,57.99734,0.0,12/24/0019 +-2.70643,47.82802,6550,2,1,7,48,44,4.15,5.0,fr,13070,130,555915,1,2,Active Shallow Crust,240.0089,57.99734,0.0,02/01/6550 +-2.70643,47.82802,2650,10,5,19,13,48,4.65,15.0,fr,13071,52,555973,1,1,Active Shallow Crust,0.0,89.99046,0.0,10/05/2650 +-2.70643,47.82802,3299,5,28,4,11,34,4.95,5.0,fr,13072,65,556011,1,1,Active Shallow Crust,240.0125,58.00452,0.0,05/28/3299 +-2.70643,47.82802,9533,3,16,15,47,59,5.05,15.0,fr,13073,190,556021,1,1,Active Shallow Crust,0.0,89.98976,0.0,03/16/9533 +8.0986,45.13375,7954,10,6,1,29,17,3.65,5.0,fr,13074,159,556332,1,1,Active Shallow Crust,0.0,89.98732,0.0,10/06/7954 +8.0986,45.13375,6077,3,4,8,21,24,3.65,5.0,fr,13075,121,556341,1,1,Active Shallow Crust,128.9019,89.9635,0.0,03/04/6077 +8.0986,45.13375,2565,8,10,12,15,16,3.85,15.0,fr,13076,51,556357,1,1,Active Shallow Crust,0.0,89.98993,0.0,08/10/2565 +8.0986,45.13375,8766,7,11,18,21,22,4.15,5.0,fr,13077,175,556392,1,1,Active Shallow Crust,0.0,89.99287,0.0,07/11/8766 +8.0986,45.13375,5479,1,28,23,28,52,4.75,5.0,fr,13078,109,556464,1,1,Active Shallow Crust,0.0,89.98928,0.0,01/28/5479 +0.57725,49.26449,8882,12,26,8,45,33,3.55,5.0,fr,13079,177,556800,1,1,Active Shallow Crust,0.0,89.99013,0.0,12/26/8882 +0.57725,49.26449,1827,12,2,2,41,31,3.75,5.0,fr,13080,36,556824,1,2,Active Shallow Crust,0.0,89.9902,0.0,12/02/1827 +0.57725,49.26449,5140,5,29,0,6,58,3.75,5.0,fr,13081,102,556824,1,2,Active Shallow Crust,0.0,89.9902,0.0,05/29/5140 +0.57725,49.26449,6255,9,24,17,14,49,3.75,15.0,fr,13082,125,556828,1,1,Active Shallow Crust,240.0086,58.01757,0.0,09/24/6255 +0.57725,49.26449,2008,4,21,14,1,37,3.75,5.0,fr,13083,40,556833,1,1,Active Shallow Crust,128.8964,89.96737,0.0,04/21/2008 +0.57725,49.26449,4777,1,26,23,21,54,3.85,5.0,fr,13084,95,556836,1,2,Active Shallow Crust,0.0,89.9901,0.0,01/26/4777 +0.57725,49.26449,3644,8,22,0,14,1,3.85,5.0,fr,13085,72,556836,1,2,Active Shallow Crust,0.0,89.9901,0.0,08/22/3644 +0.57725,49.26449,6129,5,9,14,18,56,3.85,5.0,fr,13086,122,556845,1,1,Active Shallow Crust,128.8955,89.99359,0.0,05/09/6129 +0.57725,49.26449,1981,2,14,22,59,5,4.05,5.0,fr,13087,39,556860,1,1,Active Shallow Crust,0.0,89.98982,0.0,02/14/1981 +0.57725,49.26449,1303,12,2,17,26,43,4.15,5.0,fr,13088,26,556872,1,1,Active Shallow Crust,0.0,89.9901,0.0,12/02/1303 +0.57725,49.26449,7367,1,5,18,22,58,4.55,5.0,fr,13089,147,556920,1,1,Active Shallow Crust,0.0,89.99011,0.0,01/05/7367 +3.08544,50.91984,8014,12,12,19,29,27,3.55,15.0,fr,13090,160,557761,1,1,Active Shallow Crust,0.0,89.99046,0.0,12/12/8014 +3.08544,50.91984,1674,12,1,18,52,7,3.55,5.0,fr,13091,33,557769,1,1,Active Shallow Crust,128.8956,89.99364,0.0,12/01/1674 +3.08544,50.91984,206,12,19,19,24,3,3.75,5.0,fr,13092,4,557784,1,2,Active Shallow Crust,0.0,89.9899,0.0,12/19/0206 +3.08544,50.91984,9520,3,22,12,39,28,3.75,5.0,fr,13093,190,557784,1,2,Active Shallow Crust,0.0,89.9899,0.0,03/22/9520 +3.08544,50.91984,1483,9,24,4,20,37,3.75,15.0,fr,13094,29,557785,1,1,Active Shallow Crust,0.0,89.9899,0.0,09/24/1483 +3.08544,50.91984,6411,1,12,21,26,1,3.85,5.0,fr,13095,128,557796,1,2,Active Shallow Crust,0.0,89.991,0.0,01/12/6411 +3.08544,50.91984,5720,4,21,4,18,18,3.85,5.0,fr,13096,114,557796,1,2,Active Shallow Crust,0.0,89.991,0.0,04/21/5720 +3.08544,50.91984,6144,8,12,10,25,47,3.95,15.0,fr,13097,122,557809,1,1,Active Shallow Crust,0.0,89.98997,0.0,08/12/6144 +3.08544,50.91984,3632,8,20,9,48,54,4.15,15.0,fr,13098,72,557833,1,1,Active Shallow Crust,0.0,89.99044,0.0,08/20/3632 +3.08544,50.91984,5215,10,5,5,57,36,4.15,5.0,fr,13099,104,557841,1,1,Active Shallow Crust,128.8972,89.99363,0.0,10/05/5215 +3.08544,50.91984,9274,12,20,5,32,2,4.65,5.0,fr,13100,185,557898,1,1,Active Shallow Crust,0.0,89.99003,-90.0,12/20/9274 +3.08544,50.91984,2247,11,2,22,35,31,4.75,5.0,fr,13101,44,557913,1,1,Active Shallow Crust,128.8872,89.98802,0.0,11/02/2247 +3.08544,50.91984,2574,11,14,12,2,26,5.15,5.0,fr,13102,51,557958,1,1,Active Shallow Crust,0.0,89.98981,-90.0,11/14/2574 +3.9052,48.97539,6170,8,17,5,38,43,3.65,27.5,fr,13103,123,558257,1,1,Active Shallow Crust,240.0017,58.01266,0.0,08/17/6170 +3.9052,48.97539,260,10,24,6,24,40,4.35,5.0,fr,13104,5,558336,1,1,Active Shallow Crust,0.0,89.98946,0.0,10/24/0260 +3.9052,48.97539,8140,8,30,7,12,59,5.75,5.0,fr,13105,162,558507,1,1,Active Shallow Crust,240.0443,58.00008,0.0,08/30/8140 +3.34271,42.66336,6608,4,15,9,13,57,3.55,15.0,fr,13106,132,558721,1,1,Active Shallow Crust,0.0,89.98888,0.0,04/15/6608 +3.34271,42.66336,2244,8,29,10,39,42,3.55,27.5,fr,13107,44,558725,1,2,Active Shallow Crust,240.0124,57.9974,0.0,08/29/2244 +3.34271,42.66336,1608,9,17,4,9,25,3.55,27.5,fr,13108,32,558725,1,2,Active Shallow Crust,240.0124,57.9974,0.0,09/17/1608 +3.34271,42.66336,6410,7,2,7,54,42,3.55,27.5,fr,13109,128,558731,1,1,Active Shallow Crust,128.896,89.99444,0.0,07/02/6410 +3.34271,42.66336,947,12,21,0,23,49,3.65,5.0,fr,13110,18,558732,1,1,Active Shallow Crust,0.0,89.99009,0.0,12/21/0947 +3.34271,42.66336,3057,2,8,6,55,1,3.65,5.0,fr,13111,61,558735,1,1,Active Shallow Crust,240.0003,58.01311,0.0,02/08/3057 +3.34271,42.66336,2602,9,10,17,42,51,3.75,27.5,fr,13112,52,558746,1,1,Active Shallow Crust,0.0,89.99117,0.0,09/10/2602 +3.34271,42.66336,8262,11,3,11,49,53,3.85,5.0,fr,13113,165,558762,1,1,Active Shallow Crust,0.0,89.98938,-90.0,11/03/8262 +3.34271,42.66336,4620,8,11,18,35,34,3.85,15.0,fr,13114,92,558763,1,1,Active Shallow Crust,0.0,89.98938,-90.0,08/11/4620 +3.34271,42.66336,6283,5,27,7,21,42,4.05,15.0,fr,13115,125,558781,1,1,Active Shallow Crust,0.0,89.98958,0.0,05/27/6283 +3.34271,42.66336,3400,12,9,2,33,54,4.15,5.0,fr,13116,67,558792,1,1,Active Shallow Crust,0.0,89.99071,0.0,12/09/3400 +3.34271,42.66336,4732,3,15,9,13,1,4.25,5.0,fr,13117,94,558804,1,1,Active Shallow Crust,0.0,89.99007,0.0,03/15/4732 +2.79481,50.13913,4045,7,30,22,8,40,3.55,5.0,fr,13118,80,559200,1,1,Active Shallow Crust,0.0,89.9903,0.0,07/30/4045 +2.79481,50.13913,5691,2,22,21,57,25,3.75,15.0,fr,13119,113,559231,1,1,Active Shallow Crust,0.0,89.98962,-90.0,02/22/5691 +2.79481,50.13913,1205,3,11,13,49,1,3.85,5.0,fr,13120,24,559236,1,1,Active Shallow Crust,0.0,89.99085,0.0,03/11/1205 +2.79481,50.13913,7088,12,3,18,11,32,4.35,5.0,fr,13121,141,559299,1,1,Active Shallow Crust,240.0094,57.99598,0.0,12/03/7088 +7.53208,47.67238,4299,9,26,18,21,14,3.55,5.0,fr,13122,85,559680,1,12,Active Shallow Crust,0.0,89.99321,0.0,09/26/4299 +7.53208,47.67238,4831,4,7,8,32,0,3.55,5.0,fr,13123,96,559680,1,12,Active Shallow Crust,0.0,89.99321,0.0,04/07/4831 +7.53208,47.67238,6626,4,28,4,17,31,3.55,5.0,fr,13124,132,559680,1,12,Active Shallow Crust,0.0,89.99321,0.0,04/28/6626 +7.53208,47.67238,4308,3,23,6,55,59,3.55,5.0,fr,13125,86,559680,1,12,Active Shallow Crust,0.0,89.99321,0.0,03/23/4308 +7.53208,47.67238,2168,5,7,12,30,49,3.55,5.0,fr,13126,43,559680,1,12,Active Shallow Crust,0.0,89.99321,0.0,05/07/2168 +7.53208,47.67238,8977,3,4,17,11,18,3.55,5.0,fr,13127,179,559680,1,12,Active Shallow Crust,0.0,89.99321,0.0,03/04/8977 +7.53208,47.67238,7434,9,30,12,37,13,3.55,5.0,fr,13128,148,559680,1,12,Active Shallow Crust,0.0,89.99321,0.0,09/30/7434 +7.53208,47.67238,6595,3,6,6,33,40,3.55,5.0,fr,13129,131,559680,1,12,Active Shallow Crust,0.0,89.99321,0.0,03/06/6595 +7.53208,47.67238,8528,2,19,7,14,53,3.55,5.0,fr,13130,170,559680,1,12,Active Shallow Crust,0.0,89.99321,0.0,02/19/8528 +7.53208,47.67238,7678,12,14,3,39,47,3.55,5.0,fr,13131,153,559680,1,12,Active Shallow Crust,0.0,89.99321,0.0,12/14/7678 +7.53208,47.67238,7577,5,4,16,0,7,3.55,5.0,fr,13132,151,559680,1,12,Active Shallow Crust,0.0,89.99321,0.0,05/04/7577 +7.53208,47.67238,208,6,19,9,52,11,3.55,5.0,fr,13133,4,559680,1,12,Active Shallow Crust,0.0,89.99321,0.0,06/19/0208 +7.53208,47.67238,4521,1,19,3,30,14,3.55,15.0,fr,13134,90,559681,1,1,Active Shallow Crust,0.0,89.99321,0.0,01/19/4521 +7.53208,47.67238,1709,12,17,4,9,49,3.55,27.5,fr,13135,34,559682,1,1,Active Shallow Crust,0.0,89.99321,0.0,12/17/1709 +7.53208,47.67238,6184,11,21,4,33,49,3.55,5.0,fr,13136,123,559683,1,3,Active Shallow Crust,240.013,57.9974,0.0,11/21/6184 +7.53208,47.67238,5091,6,28,17,47,59,3.55,5.0,fr,13137,101,559683,1,3,Active Shallow Crust,240.013,57.9974,0.0,06/28/5091 +7.53208,47.67238,7216,10,19,23,36,43,3.55,5.0,fr,13138,144,559683,1,3,Active Shallow Crust,240.013,57.9974,0.0,10/19/7216 +7.53208,47.67238,896,3,12,1,12,49,3.55,15.0,fr,13139,17,559684,1,2,Active Shallow Crust,240.013,57.9974,0.0,03/12/0896 +7.53208,47.67238,5847,4,17,10,37,33,3.55,15.0,fr,13140,116,559684,1,2,Active Shallow Crust,240.013,57.9974,0.0,04/17/5847 +7.53208,47.67238,8372,6,15,0,44,5,3.55,5.0,fr,13141,167,559686,1,1,Active Shallow Crust,0.0,89.99313,-90.0,06/15/8372 +7.53208,47.67238,3788,8,9,20,9,26,3.55,15.0,fr,13142,75,559687,1,1,Active Shallow Crust,0.0,89.99313,-90.0,08/09/3788 +7.53208,47.67238,9777,9,27,6,46,56,3.55,5.0,fr,13143,195,559689,1,3,Active Shallow Crust,128.8968,89.99321,0.0,09/27/9777 +7.53208,47.67238,9228,6,28,11,21,26,3.55,5.0,fr,13144,184,559689,1,3,Active Shallow Crust,128.8968,89.99321,0.0,06/28/9228 +7.53208,47.67238,8731,7,20,7,37,26,3.55,5.0,fr,13145,174,559689,1,3,Active Shallow Crust,128.8968,89.99321,0.0,07/20/8731 +7.53208,47.67238,3429,5,28,11,57,37,3.55,15.0,fr,13146,68,559690,1,2,Active Shallow Crust,128.8968,89.99321,0.0,05/28/3429 +7.53208,47.67238,1924,12,25,14,25,9,3.55,15.0,fr,13147,38,559690,1,2,Active Shallow Crust,128.8968,89.99321,0.0,12/25/1924 +7.53208,47.67238,935,9,16,13,10,55,3.65,5.0,fr,13148,18,559692,1,16,Active Shallow Crust,0.0,89.9879,0.0,09/16/0935 +7.53208,47.67238,3097,4,18,19,48,51,3.65,5.0,fr,13149,61,559692,1,16,Active Shallow Crust,0.0,89.9879,0.0,04/18/3097 +7.53208,47.67238,6217,10,18,0,32,47,3.65,5.0,fr,13150,124,559692,1,16,Active Shallow Crust,0.0,89.9879,0.0,10/18/6217 +7.53208,47.67238,6373,11,4,20,9,42,3.65,5.0,fr,13151,127,559692,1,16,Active Shallow Crust,0.0,89.9879,0.0,11/04/6373 +7.53208,47.67238,4453,6,4,2,30,55,3.65,5.0,fr,13152,89,559692,1,16,Active Shallow Crust,0.0,89.9879,0.0,06/04/4453 +7.53208,47.67238,7479,5,21,0,20,57,3.65,5.0,fr,13153,149,559692,1,16,Active Shallow Crust,0.0,89.9879,0.0,05/21/7479 +7.53208,47.67238,4691,1,27,10,45,36,3.65,5.0,fr,13154,93,559692,1,16,Active Shallow Crust,0.0,89.9879,0.0,01/27/4691 +7.53208,47.67238,8059,5,1,22,33,26,3.65,5.0,fr,13155,161,559692,1,16,Active Shallow Crust,0.0,89.9879,0.0,05/01/8059 +7.53208,47.67238,7751,5,5,8,24,56,3.65,5.0,fr,13156,155,559692,1,16,Active Shallow Crust,0.0,89.9879,0.0,05/05/7751 +7.53208,47.67238,8360,9,12,3,8,44,3.65,5.0,fr,13157,167,559692,1,16,Active Shallow Crust,0.0,89.9879,0.0,09/12/8360 +7.53208,47.67238,9257,1,14,7,59,27,3.65,5.0,fr,13158,185,559692,1,16,Active Shallow Crust,0.0,89.9879,0.0,01/14/9257 +7.53208,47.67238,1329,5,10,16,17,54,3.65,5.0,fr,13159,26,559692,1,16,Active Shallow Crust,0.0,89.9879,0.0,05/10/1329 +7.53208,47.67238,4337,7,18,13,29,8,3.65,5.0,fr,13160,86,559692,1,16,Active Shallow Crust,0.0,89.9879,0.0,07/18/4337 +7.53208,47.67238,2883,11,21,19,20,27,3.65,5.0,fr,13161,57,559692,1,16,Active Shallow Crust,0.0,89.9879,0.0,11/21/2883 +7.53208,47.67238,1348,6,10,15,49,30,3.65,5.0,fr,13162,26,559692,1,16,Active Shallow Crust,0.0,89.9879,0.0,06/10/1348 +7.53208,47.67238,8821,6,26,19,28,40,3.65,5.0,fr,13163,176,559692,1,16,Active Shallow Crust,0.0,89.9879,0.0,06/26/8821 +7.53208,47.67238,2824,12,16,1,39,59,3.65,15.0,fr,13164,56,559693,1,3,Active Shallow Crust,0.0,89.9879,0.0,12/16/2824 +7.53208,47.67238,4880,7,6,23,16,48,3.65,15.0,fr,13165,97,559693,1,3,Active Shallow Crust,0.0,89.9879,0.0,07/06/4880 +7.53208,47.67238,8174,6,3,7,3,3,3.65,15.0,fr,13166,163,559693,1,3,Active Shallow Crust,0.0,89.9879,0.0,06/03/8174 +7.53208,47.67238,8861,5,20,22,47,47,3.65,27.5,fr,13167,177,559694,1,3,Active Shallow Crust,0.0,89.9879,0.0,05/20/8861 +7.53208,47.67238,9213,10,15,14,32,49,3.65,27.5,fr,13168,184,559694,1,3,Active Shallow Crust,0.0,89.9879,0.0,10/15/9213 +7.53208,47.67238,7642,5,5,3,22,21,3.65,27.5,fr,13169,152,559694,1,3,Active Shallow Crust,0.0,89.9879,0.0,05/05/7642 +7.53208,47.67238,3674,9,6,20,6,32,3.65,15.0,fr,13170,73,559696,1,2,Active Shallow Crust,240.0014,58.01295,0.0,09/06/3674 +7.53208,47.67238,5871,8,25,14,33,24,3.65,15.0,fr,13171,117,559696,1,2,Active Shallow Crust,240.0014,58.01295,0.0,08/25/5871 +7.53208,47.67238,7178,12,25,20,23,19,3.65,5.0,fr,13172,143,559698,1,1,Active Shallow Crust,0.0,89.98775,-90.0,12/25/7178 +7.53208,47.67238,51,10,22,0,6,0,3.65,5.0,fr,13173,1,559701,1,2,Active Shallow Crust,128.9002,89.96355,0.0,10/22/0051 +7.53208,47.67238,9610,4,12,12,7,15,3.65,5.0,fr,13174,192,559701,1,2,Active Shallow Crust,128.9002,89.96355,0.0,04/12/9610 +7.53208,47.67238,7362,4,1,21,2,1,3.65,15.0,fr,13175,147,559702,1,1,Active Shallow Crust,128.9002,89.96355,0.0,04/01/7362 +7.53208,47.67238,8958,10,22,6,39,8,3.65,27.5,fr,13176,179,559703,1,1,Active Shallow Crust,128.9002,89.96355,0.0,10/22/8958 +7.53208,47.67238,8396,5,10,15,50,51,3.75,5.0,fr,13177,167,559704,1,6,Active Shallow Crust,0.0,89.98921,0.0,05/10/8396 +7.53208,47.67238,5929,3,3,3,44,12,3.75,5.0,fr,13178,118,559704,1,6,Active Shallow Crust,0.0,89.98921,0.0,03/03/5929 +7.53208,47.67238,1889,8,21,2,48,5,3.75,5.0,fr,13179,37,559704,1,6,Active Shallow Crust,0.0,89.98921,0.0,08/21/1889 +7.53208,47.67238,4871,7,5,11,26,48,3.75,5.0,fr,13180,97,559704,1,6,Active Shallow Crust,0.0,89.98921,0.0,07/05/4871 +7.53208,47.67238,1182,5,26,23,3,11,3.75,5.0,fr,13181,23,559704,1,6,Active Shallow Crust,0.0,89.98921,0.0,05/26/1182 +7.53208,47.67238,5188,10,15,17,1,40,3.75,5.0,fr,13182,103,559704,1,6,Active Shallow Crust,0.0,89.98921,0.0,10/15/5188 +7.53208,47.67238,820,3,4,13,4,12,3.75,15.0,fr,13183,16,559705,1,4,Active Shallow Crust,0.0,89.98921,0.0,03/04/0820 +7.53208,47.67238,1358,5,19,0,9,7,3.75,15.0,fr,13184,27,559705,1,4,Active Shallow Crust,0.0,89.98921,0.0,05/19/1358 +7.53208,47.67238,9564,3,17,6,36,54,3.75,15.0,fr,13185,191,559705,1,4,Active Shallow Crust,0.0,89.98921,0.0,03/17/9564 +7.53208,47.67238,3749,10,23,18,8,40,3.75,15.0,fr,13186,74,559705,1,4,Active Shallow Crust,0.0,89.98921,0.0,10/23/3749 +7.53208,47.67238,726,5,29,2,7,0,3.75,27.5,fr,13187,14,559706,1,1,Active Shallow Crust,0.0,89.98921,0.0,05/29/0726 +7.53208,47.67238,5667,1,8,21,2,9,3.75,5.0,fr,13188,113,559707,1,2,Active Shallow Crust,240.0087,58.01777,0.0,01/08/5667 +7.53208,47.67238,7800,6,5,14,28,0,3.75,5.0,fr,13189,155,559707,1,2,Active Shallow Crust,240.0087,58.01777,0.0,06/05/7800 +7.53208,47.67238,3075,10,24,18,44,16,3.75,15.0,fr,13190,61,559708,1,1,Active Shallow Crust,240.0087,58.01777,0.0,10/24/3075 +7.53208,47.67238,4207,4,4,8,14,20,3.75,15.0,fr,13191,84,559711,1,1,Active Shallow Crust,0.0,89.98909,-90.0,04/04/4207 +7.53208,47.67238,964,4,24,17,32,42,3.75,5.0,fr,13192,19,559713,1,1,Active Shallow Crust,128.8967,89.96751,0.0,04/24/0964 +7.53208,47.67238,9760,8,19,0,59,56,3.85,5.0,fr,13193,195,559716,1,3,Active Shallow Crust,0.0,89.99039,0.0,08/19/9760 +7.53208,47.67238,867,2,24,6,41,58,3.85,5.0,fr,13194,17,559716,1,3,Active Shallow Crust,0.0,89.99039,0.0,02/24/0867 +7.53208,47.67238,9432,4,22,14,15,11,3.85,5.0,fr,13195,188,559716,1,3,Active Shallow Crust,0.0,89.99039,0.0,04/22/9432 +7.53208,47.67238,6285,2,9,6,58,5,3.85,27.5,fr,13196,125,559718,1,1,Active Shallow Crust,0.0,89.99039,0.0,02/09/6285 +7.53208,47.67238,9151,1,13,8,41,1,3.85,15.0,fr,13197,183,559720,1,1,Active Shallow Crust,240.0111,57.9978,0.0,01/13/9151 +7.53208,47.67238,5197,10,21,20,10,57,3.85,27.5,fr,13198,103,559721,1,1,Active Shallow Crust,240.0111,57.9978,0.0,10/21/5197 +7.53208,47.67238,7004,3,17,15,5,35,3.85,5.0,fr,13199,140,559722,1,2,Active Shallow Crust,0.0,89.99027,-90.0,03/17/7004 +7.53208,47.67238,1535,12,8,18,47,2,3.85,5.0,fr,13200,30,559722,1,2,Active Shallow Crust,0.0,89.99027,-90.0,12/08/1535 +7.53208,47.67238,2799,8,31,11,59,43,3.85,27.5,fr,13201,55,559724,1,1,Active Shallow Crust,0.0,89.99027,-90.0,08/31/2799 +7.53208,47.67238,9843,6,27,17,48,17,3.85,5.0,fr,13202,196,559725,1,1,Active Shallow Crust,128.8966,89.99279,0.0,06/27/9843 +7.53208,47.67238,6328,12,19,23,7,29,3.95,5.0,fr,13203,126,559728,1,3,Active Shallow Crust,0.0,89.99143,0.0,12/19/6328 +7.53208,47.67238,7233,7,11,15,52,57,3.95,5.0,fr,13204,144,559728,1,3,Active Shallow Crust,0.0,89.99143,0.0,07/11/7233 +7.53208,47.67238,9790,2,21,4,42,19,3.95,5.0,fr,13205,195,559728,1,3,Active Shallow Crust,0.0,89.99143,0.0,02/21/9790 +7.53208,47.67238,9040,6,14,1,8,53,3.95,27.5,fr,13206,180,559730,1,1,Active Shallow Crust,0.0,89.99143,0.0,06/14/9040 +7.53208,47.67238,2443,8,18,15,58,31,3.95,5.0,fr,13207,48,559731,1,1,Active Shallow Crust,240.0201,58.00461,0.0,08/18/2443 +7.53208,47.67238,9289,8,23,5,50,51,3.95,15.0,fr,13208,185,559732,1,2,Active Shallow Crust,240.0201,58.00461,0.0,08/23/9289 +7.53208,47.67238,4993,4,5,7,13,20,3.95,15.0,fr,13209,99,559732,1,2,Active Shallow Crust,240.0201,58.00461,0.0,04/05/4993 +7.53208,47.67238,2433,6,28,18,23,23,3.95,5.0,fr,13210,48,559734,1,2,Active Shallow Crust,0.0,89.99133,-90.0,06/28/2433 +7.53208,47.67238,1653,5,23,0,7,19,3.95,5.0,fr,13211,33,559734,1,2,Active Shallow Crust,0.0,89.99133,-90.0,05/23/1653 +7.53208,47.67238,5822,9,12,20,32,37,3.95,15.0,fr,13212,116,559735,1,2,Active Shallow Crust,0.0,89.99133,-90.0,09/12/5822 +7.53208,47.67238,411,8,16,23,57,9,3.95,15.0,fr,13213,8,559735,1,2,Active Shallow Crust,0.0,89.99133,-90.0,08/16/0411 +7.53208,47.67238,1554,2,16,4,28,45,3.95,27.5,fr,13214,31,559739,1,1,Active Shallow Crust,128.9009,89.99358,0.0,02/16/1554 +7.53208,47.67238,1518,12,14,18,1,52,4.05,5.0,fr,13215,30,559740,1,4,Active Shallow Crust,0.0,89.98854,0.0,12/14/1518 +7.53208,47.67238,9071,7,7,6,17,5,4.05,5.0,fr,13216,181,559740,1,4,Active Shallow Crust,0.0,89.98854,0.0,07/07/9071 +7.53208,47.67238,1145,7,21,9,22,16,4.05,5.0,fr,13217,22,559740,1,4,Active Shallow Crust,0.0,89.98854,0.0,07/21/1145 +7.53208,47.67238,8411,11,21,15,45,58,4.05,5.0,fr,13218,168,559740,1,4,Active Shallow Crust,0.0,89.98854,0.0,11/21/8411 +7.53208,47.67238,2795,12,9,12,52,36,4.05,15.0,fr,13219,55,559741,1,1,Active Shallow Crust,0.0,89.98854,0.0,12/09/2795 +7.53208,47.67238,5033,1,3,6,30,1,4.05,27.5,fr,13220,100,559742,1,1,Active Shallow Crust,0.0,89.98854,0.0,01/03/5033 +7.53208,47.67238,5925,1,14,4,21,19,4.05,5.0,fr,13221,118,559743,1,3,Active Shallow Crust,240.0069,58.0052,0.0,01/14/5925 +7.53208,47.67238,2947,12,24,17,51,59,4.05,5.0,fr,13222,58,559743,1,3,Active Shallow Crust,240.0069,58.0052,0.0,12/24/2947 +7.53208,47.67238,1582,4,1,9,43,14,4.05,5.0,fr,13223,31,559743,1,3,Active Shallow Crust,240.0069,58.0052,0.0,04/01/1582 +7.53208,47.67238,4626,5,14,23,44,28,4.05,15.0,fr,13224,92,559750,1,1,Active Shallow Crust,128.8909,89.99236,0.0,05/14/4626 +7.53208,47.67238,9695,4,20,22,19,6,4.15,5.0,fr,13225,193,559752,1,3,Active Shallow Crust,0.0,89.98979,0.0,04/20/9695 +7.53208,47.67238,3153,7,28,22,37,35,4.15,5.0,fr,13226,63,559752,1,3,Active Shallow Crust,0.0,89.98979,0.0,07/28/3153 +7.53208,47.67238,97,3,18,23,44,46,4.15,5.0,fr,13227,1,559752,1,3,Active Shallow Crust,0.0,89.98979,0.0,03/18/0097 +7.53208,47.67238,5471,7,3,7,15,47,4.15,15.0,fr,13228,109,559753,1,5,Active Shallow Crust,0.0,89.98979,0.0,07/03/5471 +7.53208,47.67238,7331,8,27,3,50,27,4.15,15.0,fr,13229,146,559753,1,5,Active Shallow Crust,0.0,89.98979,0.0,08/27/7331 +7.53208,47.67238,6028,6,6,0,53,24,4.15,15.0,fr,13230,120,559753,1,5,Active Shallow Crust,0.0,89.98979,0.0,06/06/6028 +7.53208,47.67238,493,6,4,12,22,55,4.15,15.0,fr,13231,9,559753,1,5,Active Shallow Crust,0.0,89.98979,0.0,06/04/0493 +7.53208,47.67238,2727,8,1,9,54,44,4.15,15.0,fr,13232,54,559753,1,5,Active Shallow Crust,0.0,89.98979,0.0,08/01/2727 +7.53208,47.67238,9094,8,21,11,46,57,4.15,5.0,fr,13233,181,559755,1,1,Active Shallow Crust,240.0083,57.99754,0.0,08/21/9094 +7.53208,47.67238,8982,7,3,19,24,4,4.15,5.0,fr,13234,179,559758,1,1,Active Shallow Crust,0.0,89.98967,-90.0,07/03/8982 +7.53208,47.67238,6941,6,29,1,36,49,4.15,5.0,fr,13235,138,559761,1,1,Active Shallow Crust,128.8978,89.99319,0.0,06/29/6941 +7.53208,47.67238,8050,6,28,5,56,45,4.25,5.0,fr,13236,160,559764,1,2,Active Shallow Crust,0.0,89.9909,0.0,06/28/8050 +7.53208,47.67238,5666,10,18,23,18,29,4.25,5.0,fr,13237,113,559764,1,2,Active Shallow Crust,0.0,89.9909,0.0,10/18/5666 +7.53208,47.67238,7648,11,20,9,18,29,4.25,27.5,fr,13238,152,559772,1,1,Active Shallow Crust,0.0,89.99079,-90.0,11/20/7648 +7.53208,47.67238,1406,6,29,9,37,33,4.25,5.0,fr,13239,28,559773,1,2,Active Shallow Crust,128.8941,89.98099,0.0,06/29/1406 +7.53208,47.67238,8829,8,20,2,35,6,4.25,5.0,fr,13240,176,559773,1,2,Active Shallow Crust,128.8941,89.98099,0.0,08/20/8829 +7.53208,47.67238,7762,1,3,5,1,49,4.35,5.0,fr,13241,155,559776,1,2,Active Shallow Crust,0.0,89.98919,0.0,01/03/7762 +7.53208,47.67238,3327,5,30,14,6,49,4.35,5.0,fr,13242,66,559776,1,2,Active Shallow Crust,0.0,89.98919,0.0,05/30/3327 +7.53208,47.67238,4376,3,30,11,19,50,4.35,15.0,fr,13243,87,559777,1,2,Active Shallow Crust,0.0,89.98919,0.0,03/30/4376 +7.53208,47.67238,939,12,21,8,56,48,4.35,15.0,fr,13244,18,559777,1,2,Active Shallow Crust,0.0,89.98919,0.0,12/21/0939 +7.53208,47.67238,3767,8,21,3,3,16,4.35,27.5,fr,13245,75,559778,1,1,Active Shallow Crust,0.0,89.98919,0.0,08/21/3767 +7.53208,47.67238,6192,11,16,5,25,4,4.35,15.0,fr,13246,123,559780,1,1,Active Shallow Crust,240.0089,57.99594,0.0,11/16/6192 +7.53208,47.67238,2934,6,24,17,10,38,4.35,5.0,fr,13247,58,559782,1,1,Active Shallow Crust,0.0,89.98906,-90.0,06/24/2934 +7.53208,47.67238,7100,2,26,5,51,13,4.35,27.5,fr,13248,141,559784,1,1,Active Shallow Crust,0.0,89.98906,-90.0,02/26/7100 +7.53208,47.67238,7863,7,7,0,16,8,4.35,5.0,fr,13249,157,559785,1,1,Active Shallow Crust,128.8975,89.98258,0.0,07/07/7863 +7.53208,47.67238,3922,7,27,11,36,58,4.45,5.0,fr,13250,78,559788,1,1,Active Shallow Crust,0.0,89.99036,0.0,07/27/3922 +7.53208,47.67238,9501,5,9,22,42,0,4.45,5.0,fr,13251,190,559791,1,1,Active Shallow Crust,240.0055,57.99477,0.0,05/09/9501 +7.53208,47.67238,17,8,23,2,14,18,4.45,5.0,fr,13252,0,559794,1,1,Active Shallow Crust,0.0,89.99025,-90.0,08/23/0017 +7.53208,47.67238,5562,5,2,11,11,32,4.45,15.0,fr,13253,111,559798,1,1,Active Shallow Crust,128.8916,89.99398,0.0,05/02/5562 +7.53208,47.67238,9456,1,3,2,39,49,4.55,5.0,fr,13254,189,559800,1,1,Active Shallow Crust,0.0,89.98927,0.0,01/03/9456 +7.53208,47.67238,7064,9,22,9,56,48,4.75,5.0,fr,13255,141,559824,1,1,Active Shallow Crust,0.0,89.98976,0.0,09/22/7064 +7.53208,47.67238,7041,4,1,5,49,58,4.75,5.0,fr,13256,140,559833,1,2,Active Shallow Crust,128.8881,89.98824,0.0,04/01/7041 +7.53208,47.67238,5816,2,24,20,16,58,4.75,5.0,fr,13257,116,559833,1,2,Active Shallow Crust,128.8881,89.98824,0.0,02/24/5816 +7.53208,47.67238,2451,4,23,16,40,17,4.85,5.0,fr,13258,49,559836,1,1,Active Shallow Crust,0.0,89.98936,0.0,04/23/2451 +7.53208,47.67238,1227,9,6,0,15,7,4.85,5.0,fr,13259,24,559839,1,1,Active Shallow Crust,240.0177,58.0023,0.0,09/06/1227 +7.53208,47.67238,7923,2,21,1,47,1,4.95,5.0,fr,13260,158,559848,1,2,Active Shallow Crust,0.0,89.99052,0.0,02/21/7923 +7.53208,47.67238,5772,4,30,18,15,5,4.95,5.0,fr,13261,115,559848,1,2,Active Shallow Crust,0.0,89.99052,0.0,04/30/5772 +7.53208,47.67238,2318,2,15,19,34,37,4.95,15.0,fr,13262,46,559849,1,1,Active Shallow Crust,0.0,89.99052,0.0,02/15/2318 +7.53208,47.67238,8046,5,26,5,2,28,5.35,5.0,fr,13263,160,559896,1,1,Active Shallow Crust,0.0,89.98974,0.0,05/26/8046 +7.53208,47.67238,8789,3,5,9,55,3,5.55,15.0,fr,13264,175,559921,1,1,Active Shallow Crust,0.0,89.98981,0.0,03/05/8789 +2.89627,41.11797,8686,10,13,9,44,45,3.55,15.0,fr,13265,173,560161,1,1,Active Shallow Crust,0.0,89.9886,0.0,10/13/8686 +2.89627,41.11797,8350,2,8,17,43,59,3.55,5.0,fr,13266,166,560166,1,1,Active Shallow Crust,0.0,89.98847,-90.0,02/08/8350 +2.89627,41.11797,2826,9,24,22,27,6,3.55,5.0,fr,13267,56,560169,1,1,Active Shallow Crust,128.8972,89.9924,0.0,09/24/2826 +2.89627,41.11797,9573,5,31,7,55,21,3.65,5.0,fr,13268,191,560181,1,1,Active Shallow Crust,128.9003,89.9637,0.0,05/31/9573 +2.89627,41.11797,593,10,13,19,8,43,3.75,5.0,fr,13269,11,560190,1,1,Active Shallow Crust,0.0,89.99084,-90.0,10/13/0593 +2.89627,41.11797,9900,5,19,6,59,0,3.85,5.0,fr,13270,197,560202,1,1,Active Shallow Crust,0.0,89.98912,-90.0,05/19/9900 +2.89627,41.11797,7816,1,9,9,10,54,4.55,5.0,fr,13271,156,560289,1,1,Active Shallow Crust,128.895,89.98563,0.0,01/09/7816 +-2.41309,48.79792,3799,6,3,0,26,16,3.55,5.0,fr,13272,75,560640,1,1,Active Shallow Crust,0.0,89.99004,0.0,06/03/3799 +-2.41309,48.79792,6712,7,29,21,51,41,3.65,5.0,fr,13273,134,560652,1,3,Active Shallow Crust,0.0,89.99112,0.0,07/29/6712 +-2.41309,48.79792,51,1,31,14,9,58,3.65,5.0,fr,13274,1,560652,1,3,Active Shallow Crust,0.0,89.99112,0.0,01/31/0051 +-2.41309,48.79792,1164,9,26,9,11,39,3.65,5.0,fr,13275,23,560652,1,3,Active Shallow Crust,0.0,89.99112,0.0,09/26/1164 +-2.41309,48.79792,6952,8,14,21,56,39,3.65,15.0,fr,13276,139,560653,1,1,Active Shallow Crust,0.0,89.99112,0.0,08/14/6952 +-2.41309,48.79792,7573,12,24,2,34,23,3.75,5.0,fr,13277,151,560664,1,4,Active Shallow Crust,0.0,89.98945,0.0,12/24/7573 +-2.41309,48.79792,8144,8,7,22,44,58,3.75,5.0,fr,13278,162,560664,1,4,Active Shallow Crust,0.0,89.98945,0.0,08/07/8144 +-2.41309,48.79792,4912,7,13,8,34,43,3.75,5.0,fr,13279,98,560664,1,4,Active Shallow Crust,0.0,89.98945,0.0,07/13/4912 +-2.41309,48.79792,1741,5,9,12,30,53,3.75,5.0,fr,13280,34,560664,1,4,Active Shallow Crust,0.0,89.98945,0.0,05/09/1741 +-2.41309,48.79792,411,3,11,5,43,28,3.75,5.0,fr,13281,8,560673,1,1,Active Shallow Crust,128.8962,89.96729,0.0,03/11/0411 +-2.41309,48.79792,8870,12,9,18,56,7,3.85,5.0,fr,13282,177,560676,1,2,Active Shallow Crust,0.0,89.99059,0.0,12/09/8870 +-2.41309,48.79792,7475,9,11,1,16,16,3.85,5.0,fr,13283,149,560676,1,2,Active Shallow Crust,0.0,89.99059,0.0,09/11/7475 +-2.41309,48.79792,6388,7,14,11,48,49,3.85,15.0,fr,13284,127,560677,1,1,Active Shallow Crust,0.0,89.99059,0.0,07/14/6388 +-2.41309,48.79792,8764,11,15,10,57,52,3.85,5.0,fr,13285,175,560685,1,1,Active Shallow Crust,128.8952,89.99413,0.0,11/15/8764 +-2.41309,48.79792,877,10,17,12,46,16,3.95,5.0,fr,13286,17,560688,1,1,Active Shallow Crust,0.0,89.98952,0.0,10/17/0877 +-2.41309,48.79792,3810,10,1,21,51,37,3.95,5.0,fr,13287,76,560694,1,1,Active Shallow Crust,0.0,89.9894,-90.0,10/01/3810 +-2.41309,48.79792,9250,8,3,2,17,42,4.05,27.5,fr,13288,184,560711,1,1,Active Shallow Crust,128.8902,89.99346,0.0,08/03/9250 +-2.41309,48.79792,2077,6,23,16,36,19,4.45,27.5,fr,13289,41,560750,1,1,Active Shallow Crust,0.0,89.99057,0.0,06/23/2077 +-2.41309,48.79792,6618,12,3,8,5,31,4.45,15.0,fr,13290,132,560752,1,1,Active Shallow Crust,240.0061,57.99471,0.0,12/03/6618 +-2.41309,48.79792,2786,11,3,22,49,16,4.55,5.0,fr,13291,55,560760,1,1,Active Shallow Crust,0.0,89.98949,0.0,11/03/2786 +5.36098,46.50318,6218,5,4,14,16,25,3.65,5.0,fr,13292,124,561132,1,1,Active Shallow Crust,0.0,89.98763,0.0,05/04/6218 +5.36098,46.50318,9915,8,24,14,2,50,3.65,15.0,fr,13293,198,561133,1,1,Active Shallow Crust,0.0,89.98763,0.0,08/24/9915 +5.36098,46.50318,653,3,30,3,37,29,3.85,5.0,fr,13294,13,561156,1,1,Active Shallow Crust,0.0,89.99017,0.0,03/30/0653 +5.36098,46.50318,2048,12,17,13,32,50,3.95,15.0,fr,13295,40,561178,1,1,Active Shallow Crust,128.901,89.99343,0.0,12/17/2048 +5.36098,46.50318,2646,7,20,13,45,43,4.55,5.0,fr,13296,52,561246,1,1,Active Shallow Crust,0.0,89.9889,-90.0,07/20/2646 +5.36098,46.50318,5344,2,4,13,43,47,4.75,5.0,fr,13297,106,561264,1,1,Active Shallow Crust,0.0,89.98954,0.0,02/04/5344 +5.36098,46.50318,2353,3,13,17,19,20,5.05,5.0,fr,13298,47,561300,1,1,Active Shallow Crust,0.0,89.99012,0.0,03/13/2353 +5.22847,45.31361,2116,12,24,2,55,47,3.55,5.0,fr,13299,42,561600,1,1,Active Shallow Crust,0.0,89.99291,0.0,12/24/2116 +5.22847,45.31361,3475,2,7,5,40,22,3.65,5.0,fr,13300,69,561612,1,1,Active Shallow Crust,0.0,89.98736,0.0,02/07/3475 +5.22847,45.31361,3221,5,4,7,56,25,3.65,27.5,fr,13301,64,561614,1,1,Active Shallow Crust,0.0,89.98736,0.0,05/04/3221 +5.22847,45.31361,5849,7,28,18,38,57,3.65,5.0,fr,13302,116,561621,1,1,Active Shallow Crust,128.901,89.9635,0.0,07/28/5849 +5.22847,45.31361,3133,11,8,1,54,12,3.75,5.0,fr,13303,62,561624,1,1,Active Shallow Crust,0.0,89.98873,0.0,11/08/3133 +5.22847,45.31361,2237,10,11,4,15,2,3.75,27.5,fr,13304,44,561635,1,1,Active Shallow Crust,128.8969,89.96747,0.0,10/11/2237 +5.22847,45.31361,9838,11,19,23,35,0,3.95,5.0,fr,13305,196,561648,1,1,Active Shallow Crust,0.0,89.99105,0.0,11/19/9838 +5.22847,45.31361,2803,11,26,8,6,21,3.95,5.0,fr,13306,56,561651,1,1,Active Shallow Crust,240.0202,58.00469,0.0,11/26/2803 +5.22847,45.31361,3674,11,30,10,1,44,4.05,5.0,fr,13307,73,561660,1,1,Active Shallow Crust,0.0,89.98804,0.0,11/30/3674 +5.22847,45.31361,4642,10,7,15,39,20,4.05,5.0,fr,13308,92,561666,1,1,Active Shallow Crust,0.0,89.99194,-90.0,10/07/4642 +5.22847,45.31361,7431,1,9,19,33,49,4.15,27.5,fr,13309,148,561674,1,1,Active Shallow Crust,0.0,89.98933,0.0,01/09/7431 +5.22847,45.31361,5628,10,22,1,3,55,4.25,5.0,fr,13310,112,561684,1,1,Active Shallow Crust,0.0,89.99049,0.0,10/22/5628 +5.22847,45.31361,1443,9,4,6,48,42,4.25,15.0,fr,13311,28,561685,1,1,Active Shallow Crust,0.0,89.99049,0.0,09/04/1443 +5.22847,45.31361,4885,1,4,4,16,37,4.45,5.0,fr,13312,97,561708,1,1,Active Shallow Crust,0.0,89.98994,0.0,01/04/4885 +-0.9465,49.17343,1554,1,1,0,6,19,3.55,5.0,fr,13313,31,562080,1,1,Active Shallow Crust,0.0,89.99011,0.0,01/01/1554 +-0.9465,49.17343,9349,12,6,20,11,24,3.55,15.0,fr,13314,186,562081,1,1,Active Shallow Crust,0.0,89.99011,0.0,12/06/9349 +-0.9465,49.17343,9929,10,3,3,11,17,3.55,5.0,fr,13315,198,562083,1,1,Active Shallow Crust,240.0126,57.99818,0.0,10/03/9929 +-0.9465,49.17343,6777,8,3,8,9,44,3.55,15.0,fr,13316,135,562084,1,1,Active Shallow Crust,240.0126,57.99818,0.0,08/03/6777 +-0.9465,49.17343,436,6,1,14,43,59,3.55,5.0,fr,13317,8,562086,1,1,Active Shallow Crust,0.0,89.99,-90.0,06/01/0436 +-0.9465,49.17343,470,6,7,17,24,12,3.65,5.0,fr,13318,9,562092,1,1,Active Shallow Crust,0.0,89.98972,0.0,06/07/0470 +-0.9465,49.17343,4558,12,9,9,48,18,3.65,5.0,fr,13319,91,562098,1,1,Active Shallow Crust,0.0,89.99034,-90.0,12/09/4558 +-0.9465,49.17343,736,9,3,10,59,0,3.75,5.0,fr,13320,14,562104,1,1,Active Shallow Crust,0.0,89.99018,0.0,09/03/0736 +-0.9465,49.17343,5561,4,23,16,4,38,3.85,5.0,fr,13321,111,562116,1,1,Active Shallow Crust,0.0,89.99008,0.0,04/23/5561 +-0.9465,49.17343,6658,8,25,17,16,17,3.95,5.0,fr,13322,133,562131,1,1,Active Shallow Crust,240.0202,58.00512,0.0,08/25/6658 +-0.9465,49.17343,3269,4,15,11,54,22,4.15,5.0,fr,13323,65,562152,1,1,Active Shallow Crust,0.0,89.99009,0.0,04/15/3269 +-0.9465,49.17343,3271,2,3,22,37,24,4.15,5.0,fr,13324,65,562161,1,1,Active Shallow Crust,128.8971,89.9938,0.0,02/03/3271 +0.77101,48.87915,601,11,25,12,49,44,3.55,5.0,fr,13325,12,563040,1,1,Active Shallow Crust,0.0,89.99005,0.0,11/25/0601 +0.77101,48.87915,9923,8,11,17,55,39,3.55,5.0,fr,13326,198,563043,1,2,Active Shallow Crust,240.0124,57.99813,0.0,08/11/9923 +0.77101,48.87915,8273,12,18,21,52,42,3.55,5.0,fr,13327,165,563043,1,2,Active Shallow Crust,240.0124,57.99813,0.0,12/18/8273 +0.77101,48.87915,459,7,3,16,10,16,3.65,5.0,fr,13328,9,563055,1,1,Active Shallow Crust,240.0014,58.01286,0.0,07/03/0459 +0.77101,48.87915,900,4,27,9,44,41,3.75,5.0,fr,13329,17,563064,1,2,Active Shallow Crust,0.0,89.99012,0.0,04/27/0900 +0.77101,48.87915,3022,9,20,14,21,21,3.75,5.0,fr,13330,60,563064,1,2,Active Shallow Crust,0.0,89.99012,0.0,09/20/3022 +0.77101,48.87915,2972,9,30,19,19,35,4.25,5.0,fr,13331,59,563124,1,1,Active Shallow Crust,0.0,89.99,0.0,09/30/2972 +0.77101,48.87915,2915,8,7,22,50,36,4.85,5.0,fr,13332,58,563196,1,1,Active Shallow Crust,0.0,89.98997,0.0,08/07/2915 +0.77101,48.87915,858,1,27,23,31,15,5.65,5.0,fr,13333,17,563301,1,1,Active Shallow Crust,128.873,89.99046,0.0,01/27/0858 +-0.69191,45.83293,9049,7,9,7,55,51,3.55,5.0,fr,13334,180,564000,1,2,Active Shallow Crust,0.0,89.99034,0.0,07/09/9049 +-0.69191,45.83293,6479,5,29,20,22,25,3.55,5.0,fr,13335,129,564000,1,2,Active Shallow Crust,0.0,89.99034,0.0,05/29/6479 +-0.69191,45.83293,7705,7,17,10,22,31,3.65,15.0,fr,13336,154,564013,1,1,Active Shallow Crust,0.0,89.98982,0.0,07/17/7705 +-0.69191,45.83293,8200,12,28,17,1,17,3.75,5.0,fr,13337,163,564024,1,3,Active Shallow Crust,0.0,89.99023,0.0,12/28/8200 +-0.69191,45.83293,132,9,9,3,44,57,3.75,5.0,fr,13338,2,564024,1,3,Active Shallow Crust,0.0,89.99023,0.0,09/09/0132 +-0.69191,45.83293,9558,2,10,18,2,49,3.75,5.0,fr,13339,191,564024,1,3,Active Shallow Crust,0.0,89.99023,0.0,02/10/9558 +-0.69191,45.83293,5486,11,13,22,32,55,3.95,15.0,fr,13340,109,564049,1,1,Active Shallow Crust,0.0,89.99003,0.0,11/13/5486 +-0.69191,45.83293,8260,4,5,21,4,36,4.05,5.0,fr,13341,165,564060,1,1,Active Shallow Crust,0.0,89.99012,0.0,04/05/8260 +-0.69191,45.83293,9201,4,14,1,22,29,4.05,15.0,fr,13342,184,564067,1,1,Active Shallow Crust,0.0,89.99001,-90.0,04/14/9201 +-0.69191,45.83293,9575,2,4,19,50,20,4.05,5.0,fr,13343,191,564069,1,1,Active Shallow Crust,128.8906,89.99383,0.0,02/04/9575 +-0.69191,45.83293,1447,3,14,2,24,24,4.55,15.0,fr,13344,28,564127,1,1,Active Shallow Crust,0.0,89.98988,-90.0,03/14/1447 +3.76635,46.7947,4990,11,29,15,23,56,3.55,5.0,fr,13345,99,564480,1,1,Active Shallow Crust,0.0,89.98965,0.0,11/29/4990 +3.76635,46.7947,795,8,11,0,29,15,3.55,15.0,fr,13346,15,564481,1,1,Active Shallow Crust,0.0,89.98965,0.0,08/11/0795 +3.76635,46.7947,5399,12,28,16,50,8,3.65,5.0,fr,13347,107,564492,1,1,Active Shallow Crust,0.0,89.99077,0.0,12/28/5399 +3.76635,46.7947,2320,9,22,11,29,34,3.65,15.0,fr,13348,46,564493,1,1,Active Shallow Crust,0.0,89.99077,0.0,09/22/2320 +3.76635,46.7947,1539,6,10,18,7,31,3.95,5.0,fr,13349,30,564528,1,1,Active Shallow Crust,0.0,89.98911,0.0,06/10/1539 +3.76635,46.7947,3639,10,5,9,45,37,4.05,15.0,fr,13350,72,564541,1,1,Active Shallow Crust,0.0,89.9903,0.0,10/05/3639 +3.76635,46.7947,1644,2,21,19,48,56,4.95,15.0,fr,13351,32,564652,1,1,Active Shallow Crust,240.0122,58.00444,0.0,02/21/1644 +-3.32628,44.47127,125,2,12,12,35,56,3.55,5.0,fr,13352,2,564969,1,1,Active Shallow Crust,128.897,89.99281,0.0,02/12/0125 +0.73641,49.53589,8135,7,21,13,56,9,3.55,5.0,fr,13353,162,565440,1,2,Active Shallow Crust,0.0,89.99018,0.0,07/21/8135 +0.73641,49.53589,2744,8,15,15,28,1,3.55,5.0,fr,13354,54,565440,1,2,Active Shallow Crust,0.0,89.99018,0.0,08/15/2744 +0.73641,49.53589,8613,8,24,23,20,23,3.55,15.0,fr,13355,172,565441,1,1,Active Shallow Crust,0.0,89.99018,0.0,08/24/8613 +0.73641,49.53589,8829,6,13,0,15,33,3.55,15.0,fr,13356,176,565444,1,1,Active Shallow Crust,240.0125,57.99827,0.0,06/13/8829 +0.73641,49.53589,5033,10,26,23,53,28,3.65,5.0,fr,13357,100,565452,1,1,Active Shallow Crust,0.0,89.98979,0.0,10/26/5033 +0.73641,49.53589,898,8,8,17,22,38,3.75,5.0,fr,13358,17,565464,1,1,Active Shallow Crust,0.0,89.99025,0.0,08/08/0898 +0.73641,49.53589,704,1,26,2,28,29,4.05,5.0,fr,13359,14,565500,1,1,Active Shallow Crust,0.0,89.98988,0.0,01/26/0704 +0.73641,49.53589,8104,9,4,13,36,40,4.05,15.0,fr,13360,162,565501,1,1,Active Shallow Crust,0.0,89.98988,0.0,09/04/8104 +0.73641,49.53589,335,12,13,16,25,30,4.05,5.0,fr,13361,6,565506,1,1,Active Shallow Crust,0.0,89.99023,-90.0,12/13/0335 +0.73641,49.53589,7062,1,30,23,44,45,4.15,5.0,fr,13362,141,565512,1,1,Active Shallow Crust,0.0,89.99016,0.0,01/30/7062 +0.73641,49.53589,4259,3,15,13,23,39,4.35,5.0,fr,13363,85,565536,1,1,Active Shallow Crust,0.0,89.98991,0.0,03/15/4259 +0.73641,49.53589,7877,12,9,20,39,47,4.35,15.0,fr,13364,157,565537,1,1,Active Shallow Crust,0.0,89.98991,0.0,12/09/7877 +0.73641,49.53589,1806,9,24,7,54,15,4.55,15.0,fr,13365,36,565561,1,1,Active Shallow Crust,0.0,89.98991,0.0,09/24/1806 +3.44647,41.47032,2266,11,28,11,58,29,3.55,15.0,fr,13366,45,565930,1,1,Active Shallow Crust,128.8962,89.99433,0.0,11/28/2266 +3.44647,41.47032,6002,5,6,13,25,34,3.65,5.0,fr,13367,120,565932,1,1,Active Shallow Crust,0.0,89.9899,0.0,05/06/6002 +3.44647,41.47032,4942,9,18,1,57,37,3.65,5.0,fr,13368,98,565935,1,1,Active Shallow Crust,240.0003,58.01306,0.0,09/18/4942 +3.44647,41.47032,1066,9,9,5,44,57,3.75,5.0,fr,13369,21,565944,1,1,Active Shallow Crust,0.0,89.991,0.0,09/09/1066 +3.44647,41.47032,2200,6,22,11,26,10,3.75,5.0,fr,13370,43,565953,1,1,Active Shallow Crust,128.8971,89.96741,0.0,06/22/2200 +3.44647,41.47032,4613,11,24,3,10,42,3.85,15.0,fr,13371,92,565957,1,1,Active Shallow Crust,0.0,89.9893,0.0,11/24/4613 +3.44647,41.47032,708,1,6,3,56,5,3.85,5.0,fr,13372,14,565959,1,1,Active Shallow Crust,240.0103,57.99771,0.0,01/06/0708 +3.44647,41.47032,8409,10,21,15,50,17,3.95,27.5,fr,13373,168,565976,1,1,Active Shallow Crust,0.0,89.99036,-90.0,10/21/8409 +3.44647,41.47032,9657,7,7,19,26,44,4.35,15.0,fr,13374,193,566023,1,1,Active Shallow Crust,0.0,89.98935,-90.0,07/07/9657 +3.44647,41.47032,2970,6,12,15,45,6,4.75,15.0,fr,13375,59,566065,1,1,Active Shallow Crust,0.0,89.98956,0.0,06/12/2970 +7.0028,51.12157,4095,9,4,23,54,55,3.55,5.0,fr,13376,81,566400,1,3,Active Shallow Crust,0.0,89.98734,0.0,09/04/4095 +7.0028,51.12157,5638,7,26,7,21,14,3.55,5.0,fr,13377,112,566400,1,3,Active Shallow Crust,0.0,89.98734,0.0,07/26/5638 +7.0028,51.12157,9400,12,11,2,0,42,3.55,5.0,fr,13378,187,566400,1,3,Active Shallow Crust,0.0,89.98734,0.0,12/11/9400 +7.0028,51.12157,4894,11,3,7,37,28,3.55,5.0,fr,13379,97,566403,1,1,Active Shallow Crust,240.0132,57.99822,0.0,11/03/4894 +7.0028,51.12157,5774,12,27,23,26,37,3.65,5.0,fr,13380,115,566412,1,1,Active Shallow Crust,0.0,89.98872,0.0,12/27/5774 +7.0028,51.12157,8861,4,28,12,0,54,3.75,5.0,fr,13381,177,566424,1,1,Active Shallow Crust,0.0,89.98994,0.0,04/28/8861 +7.0028,51.12157,9574,7,31,6,14,3,3.85,5.0,fr,13382,191,566436,1,1,Active Shallow Crust,0.0,89.99104,0.0,07/31/9574 +7.0028,51.12157,5022,2,7,1,10,28,3.85,15.0,fr,13383,100,566437,1,1,Active Shallow Crust,0.0,89.99104,0.0,02/07/5022 +7.0028,51.12157,2372,6,2,4,55,15,4.15,15.0,fr,13384,47,566473,1,1,Active Shallow Crust,0.0,89.99049,0.0,06/02/2372 +1.08967,49.42187,686,6,10,13,37,59,3.55,5.0,fr,13385,13,566880,1,1,Active Shallow Crust,0.0,89.99016,0.0,06/10/0686 +1.08967,49.42187,8406,2,3,4,28,56,3.55,5.0,fr,13386,168,566883,1,1,Active Shallow Crust,240.0125,57.99822,0.0,02/03/8406 +1.08967,49.42187,5918,4,17,3,53,15,3.55,5.0,fr,13387,118,566889,1,1,Active Shallow Crust,128.8957,89.99344,0.0,04/17/5918 +1.08967,49.42187,1303,8,11,16,29,49,3.65,15.0,fr,13388,26,566893,1,1,Active Shallow Crust,0.0,89.98977,0.0,08/11/1303 +1.08967,49.42187,4348,8,28,19,22,4,3.65,5.0,fr,13389,86,566895,1,1,Active Shallow Crust,240.0013,58.01297,0.0,08/28/4348 +1.08967,49.42187,1776,8,1,0,41,17,3.75,15.0,fr,13390,35,566905,1,1,Active Shallow Crust,0.0,89.98958,0.0,08/01/1776 +1.08967,49.42187,7549,8,2,15,25,20,3.75,27.5,fr,13391,150,566906,1,1,Active Shallow Crust,0.0,89.98958,0.0,08/02/7549 +1.08967,49.42187,8215,1,13,10,36,24,3.95,27.5,fr,13392,164,566933,1,1,Active Shallow Crust,240.0202,58.00513,0.0,01/13/8215 +1.08967,49.42187,7721,2,14,22,50,0,4.15,5.0,fr,13393,154,566952,1,1,Active Shallow Crust,0.0,89.99014,0.0,02/14/7721 +1.08967,49.42187,3843,12,17,10,17,35,4.15,15.0,fr,13394,76,566953,1,1,Active Shallow Crust,0.0,89.99014,0.0,12/17/3843 +1.08967,49.42187,7274,4,2,16,14,41,4.35,5.0,fr,13395,145,566979,1,1,Active Shallow Crust,240.0092,57.99617,0.0,04/02/7274 +1.08967,49.42187,3319,12,17,3,39,42,4.45,15.0,fr,13396,66,566992,1,1,Active Shallow Crust,240.0062,57.99473,0.0,12/17/3319 +1.08967,49.42187,4716,9,19,15,21,5,4.55,5.0,fr,13397,94,567000,1,1,Active Shallow Crust,0.0,89.99014,0.0,09/19/4716 +1.08967,49.42187,5576,3,25,11,1,3,4.85,15.0,fr,13398,111,567043,1,1,Active Shallow Crust,0.0,89.98997,-90.0,03/25/5576 +1.72202,46.27863,6036,6,9,22,52,3,3.55,5.0,fr,13399,120,567360,1,2,Active Shallow Crust,0.0,89.98955,0.0,06/09/6036 +1.72202,46.27863,1869,7,24,4,54,0,3.55,5.0,fr,13400,37,567360,1,2,Active Shallow Crust,0.0,89.98955,0.0,07/24/1869 +1.72202,46.27863,4059,8,25,12,2,32,3.55,27.5,fr,13401,81,567362,1,1,Active Shallow Crust,0.0,89.98955,0.0,08/25/4059 +1.72202,46.27863,1252,7,12,12,25,2,3.55,5.0,fr,13402,25,567363,1,1,Active Shallow Crust,240.0121,57.99804,0.0,07/12/1252 +1.72202,46.27863,2462,3,30,2,28,59,3.55,5.0,fr,13403,49,567366,1,1,Active Shallow Crust,0.0,89.98943,-90.0,03/30/2462 +1.72202,46.27863,2849,6,16,8,55,57,3.65,5.0,fr,13404,56,567372,1,2,Active Shallow Crust,0.0,89.99068,0.0,06/16/2849 +1.72202,46.27863,4286,5,4,17,57,51,3.65,5.0,fr,13405,85,567372,1,2,Active Shallow Crust,0.0,89.99068,0.0,05/04/4286 +1.72202,46.27863,4404,12,30,17,28,6,3.65,5.0,fr,13406,88,567375,1,1,Active Shallow Crust,240.0011,58.01283,0.0,12/30/4404 +1.72202,46.27863,4844,10,24,14,37,15,3.75,5.0,fr,13407,96,567384,1,1,Active Shallow Crust,0.0,89.99031,0.0,10/24/4844 +1.72202,46.27863,5512,4,11,23,49,22,3.75,27.5,fr,13408,110,567386,1,1,Active Shallow Crust,0.0,89.99031,0.0,04/11/5512 +1.72202,46.27863,8402,1,21,20,22,15,3.85,5.0,fr,13409,168,567396,1,2,Active Shallow Crust,0.0,89.99014,0.0,01/21/8402 +1.72202,46.27863,1121,7,20,14,52,0,3.85,5.0,fr,13410,22,567396,1,2,Active Shallow Crust,0.0,89.99014,0.0,07/20/1121 +1.72202,46.27863,5703,8,29,6,38,56,3.95,5.0,fr,13411,114,567408,1,1,Active Shallow Crust,0.0,89.9901,0.0,08/29/5703 +1.72202,46.27863,87,2,4,8,22,44,3.95,15.0,fr,13412,1,567412,1,1,Active Shallow Crust,240.0198,58.00497,0.0,02/04/0087 +1.72202,46.27863,8660,7,2,15,27,1,4.05,5.0,fr,13413,173,567426,1,1,Active Shallow Crust,0.0,89.99009,-90.0,07/02/8660 +1.72202,46.27863,177,6,10,1,47,43,5.25,5.0,fr,13414,3,567567,1,1,Active Shallow Crust,240.0253,58.00026,0.0,06/10/0177 +4.48151,48.93309,3305,5,9,22,34,43,3.95,15.0,fr,13415,66,567898,1,1,Active Shallow Crust,128.9001,89.99373,0.0,05/09/3305 +3.38031,48.77126,4879,4,29,22,1,10,3.95,5.0,fr,13416,97,568848,1,1,Active Shallow Crust,0.0,89.98952,0.0,04/29/4879 +6.76326,48.98049,2955,2,25,19,42,41,4.15,15.0,fr,13417,59,569362,1,1,Active Shallow Crust,128.8964,89.99503,0.0,02/25/2955 +6.76326,48.98049,1081,10,30,12,27,0,4.65,5.0,fr,13418,21,569412,1,1,Active Shallow Crust,0.0,89.99067,0.0,10/30/1081 +6.9856,43.68231,4487,6,17,22,59,13,3.55,5.0,fr,13419,89,569760,1,2,Active Shallow Crust,0.0,89.99271,0.0,06/17/4487 +6.9856,43.68231,2413,5,12,3,51,1,3.55,5.0,fr,13420,48,569760,1,2,Active Shallow Crust,0.0,89.99271,0.0,05/12/2413 +6.9856,43.68231,5419,2,4,13,23,57,3.55,5.0,fr,13421,108,569763,1,1,Active Shallow Crust,240.0103,57.99889,0.0,02/04/5419 +6.9856,43.68231,308,10,9,8,2,31,3.65,5.0,fr,13422,6,569775,1,1,Active Shallow Crust,240.0018,58.01215,0.0,10/09/0308 +6.9856,43.68231,5195,7,14,13,9,29,3.85,5.0,fr,13423,103,569802,1,1,Active Shallow Crust,0.0,89.98956,-90.0,07/14/5195 +6.9856,43.68231,2235,6,4,10,33,55,3.95,5.0,fr,13424,44,569808,1,1,Active Shallow Crust,0.0,89.9908,0.0,06/04/2235 +6.9856,43.68231,6004,12,30,19,18,31,4.05,5.0,fr,13425,120,569823,1,1,Active Shallow Crust,240.0064,58.00541,0.0,12/30/6004 +6.9856,43.68231,4594,11,2,12,0,15,4.15,27.5,fr,13426,91,569834,1,1,Active Shallow Crust,0.0,89.98904,0.0,11/02/4594 +6.9856,43.68231,2159,9,18,16,37,42,4.35,5.0,fr,13427,43,569856,1,1,Active Shallow Crust,0.0,89.99129,0.0,09/18/2159 +6.9856,43.68231,7499,11,13,21,36,26,4.55,5.0,fr,13428,149,569880,1,1,Active Shallow Crust,0.0,89.99078,0.0,11/13/7499 +6.9856,43.68231,7597,10,10,4,57,36,4.75,5.0,fr,13429,151,569913,1,1,Active Shallow Crust,128.8895,89.98801,0.0,10/10/7597 +4.27988,46.99823,7325,5,14,3,3,29,3.55,15.0,fr,13430,146,570721,1,1,Active Shallow Crust,0.0,89.99313,0.0,05/14/7325 +4.27988,46.99823,8879,9,9,12,6,0,3.55,5.0,fr,13431,177,570723,1,1,Active Shallow Crust,240.0119,57.99779,0.0,09/09/8879 +4.27988,46.99823,4067,9,11,11,2,10,3.65,5.0,fr,13432,81,570732,1,1,Active Shallow Crust,0.0,89.98774,0.0,09/11/4067 +4.27988,46.99823,2745,1,20,2,13,32,3.65,15.0,fr,13433,54,570742,1,1,Active Shallow Crust,128.9003,89.96353,0.0,01/20/2745 +4.27988,46.99823,1849,5,1,3,57,50,3.75,5.0,fr,13434,36,570747,1,1,Active Shallow Crust,240.0078,58.01846,0.0,05/01/1849 +4.27988,46.99823,4666,9,12,16,15,28,3.85,5.0,fr,13435,93,570756,1,1,Active Shallow Crust,0.0,89.99026,0.0,09/12/4666 +4.27988,46.99823,7544,7,29,20,27,27,3.85,15.0,fr,13436,150,570757,1,1,Active Shallow Crust,0.0,89.99026,0.0,07/29/7544 +4.27988,46.99823,1755,6,17,17,27,28,3.85,5.0,fr,13437,35,570759,1,1,Active Shallow Crust,240.0109,57.99766,0.0,06/17/1755 +4.27988,46.99823,4471,6,17,14,5,45,3.95,15.0,fr,13438,89,570769,1,1,Active Shallow Crust,0.0,89.99132,0.0,06/17/4471 +4.27988,46.99823,8217,11,8,6,27,17,3.95,5.0,fr,13439,164,570777,1,1,Active Shallow Crust,128.9008,89.99349,0.0,11/08/8217 +4.27988,46.99823,1238,7,17,8,17,37,4.05,15.0,fr,13440,24,570787,1,1,Active Shallow Crust,0.0,89.98827,-90.0,07/17/1238 +4.27988,46.99823,5327,1,21,13,17,10,4.15,15.0,fr,13441,106,570793,1,1,Active Shallow Crust,0.0,89.98966,0.0,01/21/5327 +4.27988,46.99823,6094,4,25,21,42,17,4.25,15.0,fr,13442,121,570805,1,1,Active Shallow Crust,0.0,89.99078,0.0,04/25/6094 +4.27988,46.99823,5889,1,20,21,14,25,4.95,5.0,fr,13443,117,570888,1,1,Active Shallow Crust,0.0,89.99039,0.0,01/20/5889 +4.27988,46.99823,7482,6,27,9,13,52,5.05,5.0,fr,13444,149,570900,1,1,Active Shallow Crust,0.0,89.99021,0.0,06/27/7482 +4.27988,46.99823,586,4,25,9,21,43,5.15,5.0,fr,13445,11,570912,1,1,Active Shallow Crust,0.0,89.99019,0.0,04/25/0586 +2.01234,50.2434,7898,1,21,18,13,22,3.55,5.0,fr,13446,157,571200,1,1,Active Shallow Crust,0.0,89.99033,0.0,01/21/7898 +2.01234,50.2434,8129,9,13,23,18,34,3.55,5.0,fr,13447,162,571203,1,1,Active Shallow Crust,240.0126,57.99761,0.0,09/13/8129 +2.01234,50.2434,3376,12,25,12,29,35,3.65,5.0,fr,13448,67,571212,1,3,Active Shallow Crust,0.0,89.99138,0.0,12/25/3376 +2.01234,50.2434,5432,4,13,2,18,9,3.65,5.0,fr,13449,108,571212,1,3,Active Shallow Crust,0.0,89.99138,0.0,04/13/5432 +2.01234,50.2434,2271,12,15,15,38,57,3.65,5.0,fr,13450,45,571212,1,3,Active Shallow Crust,0.0,89.99138,0.0,12/15/2271 +2.01234,50.2434,8630,6,18,10,32,24,3.85,5.0,fr,13451,172,571236,1,1,Active Shallow Crust,0.0,89.99087,0.0,06/18/8630 +2.01234,50.2434,1286,7,30,3,37,22,3.85,15.0,fr,13452,25,571243,1,1,Active Shallow Crust,0.0,89.99076,-90.0,07/30/1286 +2.01234,50.2434,2193,8,13,2,31,13,3.95,5.0,fr,13453,43,571248,1,1,Active Shallow Crust,0.0,89.98983,0.0,08/13/2193 +2.01234,50.2434,6940,12,8,1,13,45,3.95,15.0,fr,13454,138,571249,1,1,Active Shallow Crust,0.0,89.98983,0.0,12/08/6940 +2.01234,50.2434,5975,11,7,14,33,56,4.15,5.0,fr,13455,119,571272,1,1,Active Shallow Crust,0.0,89.9903,0.0,11/07/5975 +2.01234,50.2434,4666,9,23,0,22,57,4.45,15.0,fr,13456,93,571309,1,1,Active Shallow Crust,0.0,89.9897,0.0,09/23/4666 +2.01234,50.2434,1480,9,19,0,33,17,4.65,5.0,fr,13457,29,571332,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/19/1480 +-1.82962,43.53219,5347,8,10,0,18,31,3.55,5.0,fr,13458,106,571680,1,1,Active Shallow Crust,0.0,89.99086,0.0,08/10/5347 +-1.82962,43.53219,6255,10,12,20,24,6,3.55,5.0,fr,13459,125,571689,1,1,Active Shallow Crust,128.8962,89.99451,0.0,10/12/6255 +-1.82962,43.53219,1354,11,2,9,25,14,3.85,5.0,fr,13460,27,571719,1,1,Active Shallow Crust,240.0104,57.99783,0.0,11/02/1354 +-1.82962,43.53219,5134,12,27,0,21,43,4.15,15.0,fr,13461,102,571753,1,1,Active Shallow Crust,0.0,89.98992,0.0,12/27/5134 +-1.82962,43.53219,6492,12,14,15,10,32,4.35,5.0,fr,13462,129,571785,1,1,Active Shallow Crust,128.8985,89.98266,0.0,12/14/6492 +8.43714,45.95779,7691,3,10,4,49,13,3.55,5.0,fr,13463,153,572163,1,1,Active Shallow Crust,240.0106,57.99983,0.0,03/10/7691 +8.43714,45.95779,9106,12,17,19,30,1,3.65,5.0,fr,13464,182,572175,1,1,Active Shallow Crust,240.0007,58.01233,0.0,12/17/9106 +8.43714,45.95779,8944,2,13,17,40,13,3.85,5.0,fr,13465,178,572205,1,1,Active Shallow Crust,128.8964,89.99504,0.0,02/13/8944 +8.43714,45.95779,1811,5,1,2,4,52,3.95,5.0,fr,13466,36,572208,1,1,Active Shallow Crust,0.0,89.99115,0.0,05/01/1811 +8.43714,45.95779,3126,1,23,7,53,35,4.75,5.0,fr,13467,62,572307,1,1,Active Shallow Crust,240.0069,58.00446,0.0,01/23/3126 +8.48571,49.92663,1625,3,25,14,43,26,3.55,5.0,fr,13468,32,572640,1,4,Active Shallow Crust,0.0,89.98701,0.0,03/25/1625 +8.48571,49.92663,5484,1,15,2,30,49,3.55,5.0,fr,13469,109,572640,1,4,Active Shallow Crust,0.0,89.98701,0.0,01/15/5484 +8.48571,49.92663,1155,3,1,18,54,6,3.55,5.0,fr,13470,23,572640,1,4,Active Shallow Crust,0.0,89.98701,0.0,03/01/1155 +8.48571,49.92663,6656,4,15,1,2,27,3.55,5.0,fr,13471,133,572640,1,4,Active Shallow Crust,0.0,89.98701,0.0,04/15/6656 +8.48571,49.92663,4506,7,26,11,19,9,3.55,15.0,fr,13472,90,572647,1,1,Active Shallow Crust,0.0,89.98687,-90.0,07/26/4506 +8.48571,49.92663,3777,12,20,20,55,5,3.55,27.5,fr,13473,75,572648,1,1,Active Shallow Crust,0.0,89.98687,-90.0,12/20/3777 +8.48571,49.92663,1662,12,15,17,14,27,3.65,5.0,fr,13474,33,572652,1,4,Active Shallow Crust,0.0,89.98843,0.0,12/15/1662 +8.48571,49.92663,535,5,14,9,58,55,3.65,5.0,fr,13475,10,572652,1,4,Active Shallow Crust,0.0,89.98843,0.0,05/14/0535 +8.48571,49.92663,4107,5,13,9,56,2,3.65,5.0,fr,13476,82,572652,1,4,Active Shallow Crust,0.0,89.98843,0.0,05/13/4107 +8.48571,49.92663,7927,1,2,12,30,45,3.65,5.0,fr,13477,158,572652,1,4,Active Shallow Crust,0.0,89.98843,0.0,01/02/7927 +8.48571,49.92663,2441,8,30,11,4,29,3.65,27.5,fr,13478,48,572657,1,1,Active Shallow Crust,240.0002,58.01249,0.0,08/30/2441 +8.48571,49.92663,7443,4,8,6,13,33,3.65,15.0,fr,13479,148,572659,1,1,Active Shallow Crust,0.0,89.9883,-90.0,04/08/7443 +8.48571,49.92663,1874,10,9,23,21,39,3.65,5.0,fr,13480,37,572661,1,1,Active Shallow Crust,128.9011,89.96359,0.0,10/09/1874 +8.48571,49.92663,539,5,19,15,46,25,3.75,5.0,fr,13481,10,572664,1,3,Active Shallow Crust,0.0,89.98969,0.0,05/19/0539 +8.48571,49.92663,1672,2,19,21,18,54,3.75,5.0,fr,13482,33,572664,1,3,Active Shallow Crust,0.0,89.98969,0.0,02/19/1672 +8.48571,49.92663,7295,12,23,8,41,53,3.75,5.0,fr,13483,145,572664,1,3,Active Shallow Crust,0.0,89.98969,0.0,12/23/7295 +8.48571,49.92663,9990,1,9,4,41,58,3.75,27.5,fr,13484,199,572666,1,1,Active Shallow Crust,0.0,89.98969,0.0,01/09/9990 +8.48571,49.92663,9229,9,23,21,41,51,3.75,15.0,fr,13485,184,572671,1,1,Active Shallow Crust,0.0,89.98957,-90.0,09/23/9229 +8.48571,49.92663,1218,2,28,3,6,49,3.75,5.0,fr,13486,24,572673,1,2,Active Shallow Crust,128.8985,89.96635,0.0,02/28/1218 +8.48571,49.92663,5655,6,30,8,55,35,3.75,5.0,fr,13487,113,572673,1,2,Active Shallow Crust,128.8985,89.96635,0.0,06/30/5655 +8.48571,49.92663,4375,1,29,17,53,2,3.85,5.0,fr,13488,87,572676,1,1,Active Shallow Crust,0.0,89.99081,0.0,01/29/4375 +8.48571,49.92663,8117,1,7,13,4,50,3.85,5.0,fr,13489,162,572679,1,1,Active Shallow Crust,240.0112,57.99822,0.0,01/07/8117 +8.48571,49.92663,3160,9,14,0,23,43,3.85,5.0,fr,13490,63,572682,1,1,Active Shallow Crust,0.0,89.9907,-90.0,09/14/3160 +8.48571,49.92663,1310,4,2,21,13,43,3.95,5.0,fr,13491,26,572694,1,1,Active Shallow Crust,0.0,89.99171,-90.0,04/02/1310 +8.48571,49.92663,7797,9,12,5,17,43,4.05,15.0,fr,13492,155,572701,1,1,Active Shallow Crust,0.0,89.9927,0.0,09/12/7797 +8.48571,49.92663,6488,11,11,5,47,2,4.05,5.0,fr,13493,129,572703,1,1,Active Shallow Crust,240.0073,58.00649,0.0,11/11/6488 +8.48571,49.92663,7280,5,17,13,14,2,4.15,5.0,fr,13494,145,572712,1,1,Active Shallow Crust,0.0,89.98698,0.0,05/17/7280 +8.48571,49.92663,9345,7,2,15,27,43,4.25,5.0,fr,13495,186,572724,1,2,Active Shallow Crust,0.0,89.9884,0.0,07/02/9345 +8.48571,49.92663,4781,1,28,5,57,27,4.25,5.0,fr,13496,95,572724,1,2,Active Shallow Crust,0.0,89.9884,0.0,01/28/4781 +8.48571,49.92663,8466,6,22,19,32,27,4.35,5.0,fr,13497,169,572739,1,1,Active Shallow Crust,240.0095,57.99565,0.0,06/22/8466 +8.48571,49.92663,8512,8,28,10,35,25,4.65,5.0,fr,13498,170,572772,1,1,Active Shallow Crust,0.0,89.98902,0.0,08/28/8512 +8.48571,49.92663,161,1,12,13,46,15,4.65,15.0,fr,13499,3,572773,1,1,Active Shallow Crust,0.0,89.98902,0.0,01/12/0161 +8.48571,49.92663,8005,9,30,8,50,10,4.85,15.0,fr,13500,160,572797,1,1,Active Shallow Crust,0.0,89.99128,0.0,09/30/8005 +8.48571,49.92663,7401,3,26,6,20,31,4.95,5.0,fr,13501,148,572808,1,1,Active Shallow Crust,0.0,89.98964,0.0,03/26/7401 +8.48571,49.92663,4611,1,15,23,55,25,5.45,5.0,fr,13502,92,572868,1,1,Active Shallow Crust,0.0,89.9898,0.0,01/15/4611 +5.14155,43.85104,235,1,29,7,16,6,3.55,5.0,fr,13503,4,573120,1,4,Active Shallow Crust,0.0,89.99273,0.0,01/29/0235 +5.14155,43.85104,4093,11,8,11,1,45,3.55,5.0,fr,13504,81,573120,1,4,Active Shallow Crust,0.0,89.99273,0.0,11/08/4093 +5.14155,43.85104,8872,6,8,9,53,34,3.55,5.0,fr,13505,177,573120,1,4,Active Shallow Crust,0.0,89.99273,0.0,06/08/8872 +5.14155,43.85104,2892,11,22,10,0,44,3.55,5.0,fr,13506,57,573120,1,4,Active Shallow Crust,0.0,89.99273,0.0,11/22/2892 +5.14155,43.85104,1996,6,18,19,12,33,3.55,5.0,fr,13507,39,573123,1,1,Active Shallow Crust,240.0132,57.99698,0.0,06/18/1996 +5.14155,43.85104,5239,1,14,5,15,27,3.55,15.0,fr,13508,104,573124,1,1,Active Shallow Crust,240.0132,57.99698,0.0,01/14/5239 +5.14155,43.85104,3877,3,25,11,54,58,3.55,5.0,fr,13509,77,573126,1,1,Active Shallow Crust,0.0,89.99265,-90.0,03/25/3877 +5.14155,43.85104,788,7,10,22,36,47,3.55,5.0,fr,13510,15,573129,1,2,Active Shallow Crust,128.8968,89.99273,0.0,07/10/0788 +5.14155,43.85104,3661,10,4,21,14,4,3.55,5.0,fr,13511,73,573129,1,2,Active Shallow Crust,128.8968,89.99273,0.0,10/04/3661 +5.14155,43.85104,9038,3,16,12,38,11,3.55,15.0,fr,13512,180,573130,1,1,Active Shallow Crust,128.8968,89.99273,0.0,03/16/9038 +5.14155,43.85104,5949,3,16,21,43,26,3.65,5.0,fr,13513,118,573132,1,2,Active Shallow Crust,0.0,89.98704,0.0,03/16/5949 +5.14155,43.85104,9185,3,29,6,19,16,3.65,5.0,fr,13514,183,573132,1,2,Active Shallow Crust,0.0,89.98704,0.0,03/29/9185 +5.14155,43.85104,4345,12,21,8,53,22,3.65,5.0,fr,13515,86,573135,1,1,Active Shallow Crust,240.0016,58.01242,0.0,12/21/4345 +5.14155,43.85104,936,7,17,23,49,24,3.65,27.5,fr,13516,18,573143,1,1,Active Shallow Crust,128.8999,89.96347,0.0,07/17/0936 +5.14155,43.85104,1821,4,9,2,13,12,3.75,5.0,fr,13517,36,573144,1,1,Active Shallow Crust,0.0,89.98845,0.0,04/09/1821 +5.14155,43.85104,3733,4,11,2,2,7,3.75,15.0,fr,13518,74,573145,1,2,Active Shallow Crust,0.0,89.98845,0.0,04/11/3733 +5.14155,43.85104,417,3,27,15,14,17,3.75,15.0,fr,13519,8,573145,1,2,Active Shallow Crust,0.0,89.98845,0.0,03/27/0417 +5.14155,43.85104,8295,10,27,17,43,53,3.75,27.5,fr,13520,165,573146,1,1,Active Shallow Crust,0.0,89.98845,0.0,10/27/8295 +5.14155,43.85104,1414,11,26,12,48,15,3.75,5.0,fr,13521,28,573153,1,1,Active Shallow Crust,128.8963,89.96745,0.0,11/26/1414 +5.14155,43.85104,1541,9,13,21,5,12,3.85,5.0,fr,13522,30,573156,1,2,Active Shallow Crust,0.0,89.9897,0.0,09/13/1541 +5.14155,43.85104,4512,2,1,22,8,5,3.85,5.0,fr,13523,90,573156,1,2,Active Shallow Crust,0.0,89.9897,0.0,02/01/4512 +5.14155,43.85104,7975,4,7,8,42,53,3.85,15.0,fr,13524,159,573157,1,1,Active Shallow Crust,0.0,89.9897,0.0,04/07/7975 +5.14155,43.85104,7109,8,11,5,44,23,3.85,15.0,fr,13525,142,573160,1,1,Active Shallow Crust,240.0102,57.9973,0.0,08/11/7109 +5.14155,43.85104,4960,6,25,14,0,27,3.85,27.5,fr,13526,99,573164,1,1,Active Shallow Crust,0.0,89.98959,-90.0,06/25/4960 +5.14155,43.85104,2664,7,3,8,37,25,3.95,5.0,fr,13527,53,573168,1,1,Active Shallow Crust,0.0,89.99082,0.0,07/03/2664 +5.14155,43.85104,2454,7,2,17,44,54,3.95,5.0,fr,13528,49,573171,1,1,Active Shallow Crust,240.0201,58.00507,0.0,07/02/2454 +5.14155,43.85104,531,2,14,19,38,14,4.15,5.0,fr,13529,10,573192,1,1,Active Shallow Crust,0.0,89.98907,0.0,02/14/0531 +5.14155,43.85104,9869,4,10,12,30,31,4.25,5.0,fr,13530,197,573204,1,1,Active Shallow Crust,0.0,89.99026,0.0,04/10/9869 +5.14155,43.85104,2575,10,24,0,35,52,4.25,15.0,fr,13531,51,573205,1,2,Active Shallow Crust,0.0,89.99026,0.0,10/24/2575 +5.14155,43.85104,3891,10,20,5,36,44,4.25,15.0,fr,13532,77,573205,1,2,Active Shallow Crust,0.0,89.99026,0.0,10/20/3891 +5.14155,43.85104,3976,6,17,18,25,32,4.25,27.5,fr,13533,79,573206,1,1,Active Shallow Crust,0.0,89.99026,0.0,06/17/3976 +5.14155,43.85104,1948,3,8,21,33,59,4.25,15.0,fr,13534,38,573214,1,1,Active Shallow Crust,128.8949,89.98085,0.0,03/08/1948 +5.14155,43.85104,7854,9,15,0,21,25,4.35,15.0,fr,13535,157,573217,1,1,Active Shallow Crust,0.0,89.99132,0.0,09/15/7854 +5.14155,43.85104,9669,4,22,23,35,48,4.45,15.0,fr,13536,193,573238,1,1,Active Shallow Crust,128.8921,89.99484,0.0,04/22/9669 +5.14155,43.85104,7954,10,6,21,45,56,4.65,27.5,fr,13537,159,573254,1,1,Active Shallow Crust,0.0,89.98975,0.0,10/06/7954 +5.14155,43.85104,5468,2,20,11,16,42,5.95,5.0,fr,13538,109,573411,1,1,Active Shallow Crust,240.0474,57.99993,0.0,02/20/5468 +-2.77336,42.31097,5723,6,22,22,9,35,3.55,15.0,fr,13539,114,573607,1,1,Active Shallow Crust,0.0,89.98869,-90.0,06/22/5723 +-2.77336,42.31097,9228,1,2,15,48,48,3.75,5.0,fr,13540,184,573624,1,1,Active Shallow Crust,0.0,89.99111,0.0,01/02/9228 +-2.77336,42.31097,718,6,22,3,25,47,3.75,5.0,fr,13541,14,573630,1,1,Active Shallow Crust,0.0,89.99101,-90.0,06/22/0718 +-2.77336,42.31097,584,12,15,3,9,10,3.85,5.0,fr,13542,11,573636,1,1,Active Shallow Crust,0.0,89.98944,0.0,12/15/0584 +-2.77336,42.31097,4949,10,16,9,56,35,4.15,5.0,fr,13543,98,573678,1,1,Active Shallow Crust,0.0,89.99055,-90.0,10/16/4949 +-2.77336,42.31097,8836,1,2,13,10,27,4.25,5.0,fr,13544,176,573687,1,1,Active Shallow Crust,240.0066,57.99408,0.0,01/02/8836 +-2.77336,42.31097,5615,8,22,19,30,13,4.25,5.0,fr,13545,112,573693,1,1,Active Shallow Crust,128.895,89.98079,0.0,08/22/5615 +9.54006,49.02735,9868,5,14,17,17,30,3.55,15.0,fr,13546,197,574081,1,1,Active Shallow Crust,0.0,89.98678,0.0,05/14/9868 +9.54006,49.02735,8033,6,25,2,57,53,3.75,5.0,fr,13547,160,574107,1,1,Active Shallow Crust,240.0065,58.01856,0.0,06/25/8033 +4.04389,51.70753,6817,2,23,5,27,1,3.65,5.0,fr,13548,136,574572,1,1,Active Shallow Crust,0.0,89.98886,0.0,02/23/6817 +4.04389,51.70753,3849,2,28,17,34,11,4.65,5.0,fr,13549,76,574692,1,1,Active Shallow Crust,0.0,89.98943,0.0,02/28/3849 +2.83088,50.52759,7969,12,30,8,48,36,3.55,5.0,fr,13550,159,575040,1,1,Active Shallow Crust,0.0,89.99039,0.0,12/30/7969 +2.83088,50.52759,507,9,30,12,18,43,3.65,5.0,fr,13551,10,575052,1,1,Active Shallow Crust,0.0,89.98857,0.0,09/30/0507 +2.83088,50.52759,6087,3,28,18,53,16,3.65,5.0,fr,13552,121,575055,1,1,Active Shallow Crust,240.0009,58.01325,0.0,03/28/6087 +2.83088,50.52759,3335,6,20,9,56,39,3.75,5.0,fr,13553,66,575064,1,2,Active Shallow Crust,0.0,89.98981,0.0,06/20/3335 +2.83088,50.52759,8383,10,1,15,12,28,3.75,5.0,fr,13554,167,575064,1,2,Active Shallow Crust,0.0,89.98981,0.0,10/01/8383 +2.83088,50.52759,4484,5,9,18,19,8,3.85,5.0,fr,13555,89,575076,1,2,Active Shallow Crust,0.0,89.99092,0.0,05/09/4484 +2.83088,50.52759,6296,12,17,5,35,0,3.85,5.0,fr,13556,125,575076,1,2,Active Shallow Crust,0.0,89.99092,0.0,12/17/6296 +2.83088,50.52759,5327,4,21,1,5,0,3.95,5.0,fr,13557,106,575088,1,1,Active Shallow Crust,0.0,89.98989,0.0,04/21/5327 +2.83088,50.52759,6236,10,14,15,43,37,4.15,15.0,fr,13558,124,575113,1,1,Active Shallow Crust,0.0,89.99036,0.0,10/14/6236 +2.83088,50.52759,5541,2,23,19,12,54,4.15,5.0,fr,13559,110,575115,1,1,Active Shallow Crust,240.0093,57.9976,0.0,02/23/5541 +2.83088,50.52759,5227,8,10,13,32,5,4.45,15.0,fr,13560,104,575158,1,1,Active Shallow Crust,128.8913,89.99374,0.0,08/10/5227 +2.83088,50.52759,8620,10,13,0,50,18,5.15,27.5,fr,13561,172,575234,1,1,Active Shallow Crust,0.0,89.98984,0.0,10/13/8620 +1.09585,43.67768,2943,7,13,3,49,53,3.65,15.0,fr,13562,58,575542,1,1,Active Shallow Crust,128.9003,89.96361,0.0,07/13/2943 +1.09585,43.67768,1694,11,26,20,44,25,3.85,5.0,fr,13563,33,575556,1,1,Active Shallow Crust,0.0,89.98968,0.0,11/26/1694 +6.34234,42.93652,9853,2,22,4,54,50,4.45,5.0,fr,13564,197,576114,1,1,Active Shallow Crust,0.0,89.9894,-90.0,02/22/9853 +2.1901,47.10288,3792,6,19,9,49,21,3.55,15.0,fr,13565,75,576481,1,2,Active Shallow Crust,0.0,89.9897,0.0,06/19/3792 +2.1901,47.10288,2683,8,27,17,19,0,3.55,15.0,fr,13566,53,576481,1,2,Active Shallow Crust,0.0,89.9897,0.0,08/27/2683 +2.1901,47.10288,1648,7,8,8,51,35,3.75,5.0,fr,13567,32,576504,1,1,Active Shallow Crust,0.0,89.9891,0.0,07/08/1648 +2.1901,47.10288,7166,1,27,6,46,3,3.75,5.0,fr,13568,143,576510,1,1,Active Shallow Crust,0.0,89.98897,-90.0,01/27/7166 +2.1901,47.10288,2125,5,7,3,42,15,3.85,5.0,fr,13569,42,576516,1,1,Active Shallow Crust,0.0,89.99028,0.0,05/07/2125 +2.1901,47.10288,7970,2,25,20,22,23,3.85,27.5,fr,13570,159,576518,1,1,Active Shallow Crust,0.0,89.99028,0.0,02/25/7970 +2.1901,47.10288,5910,6,17,14,9,46,4.05,5.0,fr,13571,118,576543,1,1,Active Shallow Crust,240.0061,58.00605,0.0,06/17/5910 +2.1901,47.10288,829,7,8,16,41,16,4.15,15.0,fr,13572,16,576553,1,1,Active Shallow Crust,0.0,89.98968,0.0,07/08/0829 +2.1901,47.10288,6585,7,4,4,13,13,5.25,5.0,fr,13573,131,576684,1,1,Active Shallow Crust,0.0,89.98981,0.0,07/04/6585 +-2.63248,49.18305,5694,3,7,10,49,27,3.65,27.5,fr,13574,113,576980,1,1,Active Shallow Crust,0.0,89.99109,-90.0,03/07/5694 +-2.63248,49.18305,2654,7,23,5,47,42,3.75,15.0,fr,13575,53,576985,1,1,Active Shallow Crust,0.0,89.98952,0.0,07/23/2654 +-2.63248,49.18305,988,5,20,4,3,54,3.75,27.5,fr,13576,19,576986,1,1,Active Shallow Crust,0.0,89.98952,0.0,05/20/0988 +-2.63248,49.18305,6555,8,24,21,13,19,3.95,15.0,fr,13577,131,577012,1,1,Active Shallow Crust,240.0203,58.00494,0.0,08/24/6555 +-2.63248,49.18305,8973,12,29,22,50,14,4.15,5.0,fr,13578,179,577032,1,2,Active Shallow Crust,0.0,89.99009,0.0,12/29/8973 +-2.63248,49.18305,7161,8,28,12,40,47,4.15,5.0,fr,13579,143,577032,1,2,Active Shallow Crust,0.0,89.99009,0.0,08/28/7161 +-2.63248,49.18305,4728,7,17,5,52,17,4.15,15.0,fr,13580,94,577036,1,1,Active Shallow Crust,240.0091,57.99738,0.0,07/17/4728 +-2.63248,49.18305,5993,6,5,14,59,32,4.15,5.0,fr,13581,119,577041,1,1,Active Shallow Crust,128.8973,89.99339,0.0,06/05/5993 +-2.63248,49.18305,8993,2,20,12,54,20,4.25,27.5,fr,13582,179,577049,1,1,Active Shallow Crust,240.0079,57.9943,0.0,02/20/8993 +-2.63248,49.18305,9556,6,4,12,41,33,4.65,5.0,fr,13583,191,577098,1,1,Active Shallow Crust,0.0,89.98966,-90.0,06/04/9556 +5.35301,44.5412,6010,12,31,9,30,43,3.55,5.0,fr,13584,120,577440,1,2,Active Shallow Crust,0.0,89.99281,0.0,12/31/6010 +5.35301,44.5412,4609,11,19,1,27,8,3.55,5.0,fr,13585,92,577440,1,2,Active Shallow Crust,0.0,89.99281,0.0,11/19/4609 +5.35301,44.5412,4340,9,1,1,30,36,3.65,5.0,fr,13586,86,577452,1,1,Active Shallow Crust,0.0,89.98719,0.0,09/01/4340 +5.35301,44.5412,1672,2,21,8,29,9,3.65,15.0,fr,13587,33,577453,1,1,Active Shallow Crust,0.0,89.98719,0.0,02/21/1672 +5.35301,44.5412,2768,1,24,21,5,43,3.75,5.0,fr,13588,55,577464,1,2,Active Shallow Crust,0.0,89.98858,0.0,01/24/2768 +5.35301,44.5412,9435,11,10,19,39,3,3.75,5.0,fr,13589,188,577464,1,2,Active Shallow Crust,0.0,89.98858,0.0,11/10/9435 +5.35301,44.5412,6102,5,6,9,44,29,3.85,5.0,fr,13590,122,577476,1,1,Active Shallow Crust,0.0,89.98982,0.0,05/06/6102 +5.35301,44.5412,1528,11,12,20,6,37,3.95,5.0,fr,13591,30,577488,1,1,Active Shallow Crust,0.0,89.99093,0.0,11/12/1528 +5.35301,44.5412,8585,6,17,10,31,16,4.15,5.0,fr,13592,171,577512,1,1,Active Shallow Crust,0.0,89.9892,0.0,06/17/8585 +5.35301,44.5412,4661,3,5,20,41,43,4.25,5.0,fr,13593,93,577527,1,1,Active Shallow Crust,240.0072,57.99455,0.0,03/05/4661 +5.35301,44.5412,3273,8,22,7,25,56,4.35,5.0,fr,13594,65,577536,1,1,Active Shallow Crust,0.0,89.99142,0.0,08/22/3273 +5.35301,44.5412,9749,7,31,20,11,22,4.65,5.0,fr,13595,194,577581,1,1,Active Shallow Crust,128.8914,89.98711,0.0,07/31/9749 +1.20411,47.84445,9257,2,9,17,13,4,3.55,5.0,fr,13596,185,577920,1,2,Active Shallow Crust,0.0,89.98985,0.0,02/09/9257 +1.20411,47.84445,6621,12,9,1,40,34,3.55,5.0,fr,13597,132,577920,1,2,Active Shallow Crust,0.0,89.98985,0.0,12/09/6621 +1.20411,47.84445,1436,7,5,20,42,23,3.75,5.0,fr,13598,28,577944,1,1,Active Shallow Crust,0.0,89.99059,0.0,07/05/1436 +1.20411,47.84445,7601,1,19,3,29,24,3.75,5.0,fr,13599,152,577947,1,1,Active Shallow Crust,240.0085,58.01766,0.0,01/19/7601 +1.20411,47.84445,4837,9,22,17,8,54,3.85,5.0,fr,13600,96,577956,1,3,Active Shallow Crust,0.0,89.99042,0.0,09/22/4837 +1.20411,47.84445,6360,7,27,21,13,22,3.85,5.0,fr,13601,127,577956,1,3,Active Shallow Crust,0.0,89.99042,0.0,07/27/6360 +1.20411,47.84445,1180,6,24,15,19,33,3.85,5.0,fr,13602,23,577956,1,3,Active Shallow Crust,0.0,89.99042,0.0,06/24/1180 +0.05517,42.35479,7326,2,28,23,51,14,3.75,5.0,fr,13603,146,578424,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/28/7326 +0.05517,42.35479,4830,3,11,1,3,10,3.85,15.0,fr,13604,96,578437,1,1,Active Shallow Crust,0.0,89.98998,0.0,03/11/4830 +0.05517,42.35479,1488,1,28,6,24,55,3.85,5.0,fr,13605,29,578439,1,1,Active Shallow Crust,240.0103,57.99771,0.0,01/28/1488 +0.05517,42.35479,3637,10,12,3,53,34,3.85,5.0,fr,13606,72,578445,1,1,Active Shallow Crust,128.8961,89.99371,0.0,10/12/3637 +0.05517,42.35479,3276,5,5,4,2,54,4.05,5.0,fr,13607,65,578463,1,1,Active Shallow Crust,240.0053,58.00571,0.0,05/05/3276 +0.05517,42.35479,6606,9,8,17,36,54,4.25,5.0,fr,13608,132,578484,1,1,Active Shallow Crust,0.0,89.98999,0.0,09/08/6606 +0.05517,42.35479,6775,6,17,9,27,9,4.25,15.0,fr,13609,135,578488,1,1,Active Shallow Crust,240.0067,57.99393,0.0,06/17/6775 +0.05517,42.35479,9188,5,8,8,9,2,4.35,5.0,fr,13610,183,578499,1,1,Active Shallow Crust,240.0075,57.99578,0.0,05/08/9188 +0.05517,42.35479,8597,12,2,15,59,26,5.85,5.0,fr,13611,171,578676,1,1,Active Shallow Crust,360.0,89.99,0.0,12/02/8597 +4.64273,43.65031,2662,3,23,18,9,54,3.55,5.0,fr,13612,53,578880,1,3,Active Shallow Crust,0.0,89.99271,0.0,03/23/2662 +4.64273,43.65031,9652,5,18,16,59,9,3.55,5.0,fr,13613,193,578880,1,3,Active Shallow Crust,0.0,89.99271,0.0,05/18/9652 +4.64273,43.65031,8913,8,19,3,43,9,3.55,5.0,fr,13614,178,578880,1,3,Active Shallow Crust,0.0,89.99271,0.0,08/19/8913 +4.64273,43.65031,4685,12,21,0,19,0,3.55,15.0,fr,13615,93,578881,1,1,Active Shallow Crust,0.0,89.99271,0.0,12/21/4685 +4.64273,43.65031,4024,2,10,5,15,8,3.75,5.0,fr,13616,80,578904,1,1,Active Shallow Crust,0.0,89.98841,0.0,02/10/4024 +4.64273,43.65031,348,5,7,15,4,48,3.75,15.0,fr,13617,6,578905,1,1,Active Shallow Crust,0.0,89.98841,0.0,05/07/0348 +4.64273,43.65031,6322,6,9,12,55,26,3.75,5.0,fr,13618,126,578910,1,1,Active Shallow Crust,0.0,89.98827,-90.0,06/09/6322 +4.64273,43.65031,3934,10,12,3,7,30,3.85,15.0,fr,13619,78,578917,1,1,Active Shallow Crust,0.0,89.98967,0.0,10/12/3934 +4.64273,43.65031,5465,8,12,19,12,6,3.85,15.0,fr,13620,109,578920,1,1,Active Shallow Crust,240.0108,57.99758,0.0,08/12/5465 +4.64273,43.65031,5515,8,5,8,21,16,3.95,5.0,fr,13621,110,578928,1,2,Active Shallow Crust,0.0,89.99079,0.0,08/05/5515 +4.64273,43.65031,7601,5,11,22,7,38,3.95,5.0,fr,13622,152,578928,1,2,Active Shallow Crust,0.0,89.99079,0.0,05/11/7601 +4.64273,43.65031,6527,9,17,3,28,18,3.95,5.0,fr,13623,130,578931,1,1,Active Shallow Crust,240.0194,58.00394,0.0,09/17/6527 +4.64273,43.65031,5897,4,15,4,31,42,3.95,5.0,fr,13624,117,578934,1,1,Active Shallow Crust,0.0,89.99068,-90.0,04/15/5897 +4.64273,43.65031,8211,12,11,3,43,2,4.05,5.0,fr,13625,164,578940,1,2,Active Shallow Crust,0.0,89.99179,0.0,12/11/8211 +4.64273,43.65031,2179,9,15,20,23,33,4.05,5.0,fr,13626,43,578940,1,2,Active Shallow Crust,0.0,89.99179,0.0,09/15/2179 +4.64273,43.65031,1039,11,16,10,21,12,4.15,5.0,fr,13627,20,578952,1,1,Active Shallow Crust,0.0,89.98903,0.0,11/16/1039 +4.64273,43.65031,4264,7,19,16,18,47,4.35,5.0,fr,13628,85,578985,1,1,Active Shallow Crust,128.8984,89.98238,0.0,07/19/4264 +4.64273,43.65031,4778,6,21,6,24,15,4.45,5.0,fr,13629,95,578988,1,1,Active Shallow Crust,0.0,89.98965,0.0,06/21/4778 +4.64273,43.65031,4650,4,12,8,10,28,4.55,15.0,fr,13630,92,579001,1,1,Active Shallow Crust,0.0,89.99077,0.0,04/12/4650 +4.64273,43.65031,5606,2,3,16,47,53,4.65,5.0,fr,13631,112,579012,1,1,Active Shallow Crust,0.0,89.98972,0.0,02/03/5606 +0.54552,45.93102,6192,8,8,18,23,3,3.55,5.0,fr,13632,123,579360,1,1,Active Shallow Crust,0.0,89.99036,0.0,08/08/6192 +0.54552,45.93102,168,6,24,12,19,15,3.55,5.0,fr,13633,3,579363,1,1,Active Shallow Crust,240.0121,57.99821,0.0,06/24/0168 +0.54552,45.93102,6101,12,31,22,52,18,3.65,5.0,fr,13634,122,579372,1,3,Active Shallow Crust,0.0,89.98985,0.0,12/31/6101 +0.54552,45.93102,213,3,11,3,51,26,3.65,5.0,fr,13635,4,579372,1,3,Active Shallow Crust,0.0,89.98985,0.0,03/11/0213 +0.54552,45.93102,1470,7,1,8,48,38,3.65,5.0,fr,13636,29,579372,1,3,Active Shallow Crust,0.0,89.98985,0.0,07/01/1470 +0.54552,45.93102,1593,10,24,10,38,32,3.65,27.5,fr,13637,31,579377,1,1,Active Shallow Crust,240.0009,58.01294,0.0,10/24/1593 +0.54552,45.93102,4823,7,30,12,44,15,3.95,15.0,fr,13638,96,579418,1,1,Active Shallow Crust,128.9005,89.99364,0.0,07/30/4823 +0.54552,45.93102,7334,6,4,23,20,45,3.95,27.5,fr,13639,146,579419,1,1,Active Shallow Crust,128.9005,89.99364,0.0,06/04/7334 +0.54552,45.93102,550,2,27,15,28,21,4.05,27.5,fr,13640,10,579422,1,1,Active Shallow Crust,0.0,89.99014,0.0,02/27/0550 +0.54552,45.93102,3287,8,6,9,8,23,4.05,5.0,fr,13641,65,579426,1,1,Active Shallow Crust,0.0,89.99003,-90.0,08/06/3287 +0.54552,45.93102,4941,1,10,3,26,37,4.15,5.0,fr,13642,98,579438,1,1,Active Shallow Crust,359.9998,89.99022,-90.0,01/10/4941 +0.54552,45.93102,8601,1,15,2,7,46,4.75,5.0,fr,13643,172,579504,1,1,Active Shallow Crust,0.0,89.99009,0.0,01/15/8601 +0.54552,45.93102,7782,6,8,20,33,14,5.15,27.5,fr,13644,155,579554,1,1,Active Shallow Crust,0.0,89.98999,0.0,06/08/7782 +3.53034,45.72477,6376,5,14,22,46,10,3.65,15.0,fr,13645,127,579853,1,1,Active Shallow Crust,0.0,89.99059,0.0,05/14/6376 +3.53034,45.72477,6572,9,2,21,41,24,3.75,5.0,fr,13646,131,579864,1,1,Active Shallow Crust,0.0,89.98882,0.0,09/02/6572 +3.53034,45.72477,3386,12,24,6,33,40,3.85,5.0,fr,13647,67,579876,1,1,Active Shallow Crust,0.0,89.99004,0.0,12/24/3386 +3.53034,45.72477,352,7,23,20,8,7,3.85,15.0,fr,13648,7,579877,1,1,Active Shallow Crust,0.0,89.99004,0.0,07/23/0352 +3.53034,45.72477,5316,2,20,11,14,15,4.05,5.0,fr,13649,106,579900,1,1,Active Shallow Crust,0.0,89.9901,0.0,02/20/5316 +3.53034,45.72477,4969,12,28,17,15,50,4.15,5.0,fr,13650,99,579912,1,1,Active Shallow Crust,0.0,89.98942,0.0,12/28/4969 +3.53034,45.72477,3374,7,21,4,57,16,4.25,5.0,fr,13651,67,579927,1,1,Active Shallow Crust,240.0076,57.99377,0.0,07/21/3374 +3.53034,45.72477,5065,3,6,22,29,38,4.75,5.0,fr,13652,101,579990,1,1,Active Shallow Crust,0.0,89.99016,-90.0,03/06/5065 +3.53034,45.72477,4592,1,31,16,36,34,4.95,5.0,fr,13653,91,580017,1,1,Active Shallow Crust,128.8901,89.98977,0.0,01/31/4592 +7.91468,50.61024,6119,11,3,4,35,47,3.55,5.0,fr,13654,122,580320,1,2,Active Shallow Crust,0.0,89.9872,0.0,11/03/6119 +7.91468,50.61024,1285,8,2,19,6,0,3.55,5.0,fr,13655,25,580320,1,2,Active Shallow Crust,0.0,89.9872,0.0,08/02/1285 +7.91468,50.61024,2685,12,14,11,56,49,3.55,5.0,fr,13656,53,580329,1,1,Active Shallow Crust,128.8956,89.9936,0.0,12/14/2685 +7.91468,50.61024,7835,3,18,22,2,21,3.65,5.0,fr,13657,156,580335,1,1,Active Shallow Crust,240.0017,58.01244,0.0,03/18/7835 +7.91468,50.61024,5593,11,15,15,31,27,3.75,27.5,fr,13658,111,580346,1,1,Active Shallow Crust,0.0,89.98983,0.0,11/15/5593 +7.91468,50.61024,6713,8,4,15,49,46,3.75,5.0,fr,13659,134,580347,1,1,Active Shallow Crust,240.0087,58.01775,0.0,08/04/6713 +7.91468,50.61024,3551,7,16,21,48,52,3.85,5.0,fr,13660,71,580356,1,1,Active Shallow Crust,0.0,89.99094,0.0,07/16/3551 +7.91468,50.61024,7137,12,23,6,33,21,4.05,27.5,fr,13661,142,580382,1,1,Active Shallow Crust,0.0,89.9892,0.0,12/23/7137 +6.5641,50.20628,4018,2,12,19,44,55,3.55,15.0,fr,13662,80,580801,1,1,Active Shallow Crust,0.0,89.98709,0.0,02/12/4018 +6.5641,50.20628,5960,1,17,12,39,1,3.65,5.0,fr,13663,119,580815,1,1,Active Shallow Crust,240.0012,58.01342,0.0,01/17/5960 +6.5641,50.20628,5685,7,1,4,53,5,3.75,5.0,fr,13664,113,580824,1,1,Active Shallow Crust,0.0,89.98975,0.0,07/01/5685 +6.5641,50.20628,3007,1,31,23,34,53,3.85,27.5,fr,13665,60,580847,1,1,Active Shallow Crust,128.8941,89.99543,0.0,01/31/3007 +6.5641,50.20628,3644,6,20,18,57,14,3.95,15.0,fr,13666,72,580849,1,1,Active Shallow Crust,0.0,89.99185,0.0,06/20/3644 +6.5641,50.20628,3654,11,9,19,55,44,3.95,27.5,fr,13667,73,580850,1,1,Active Shallow Crust,0.0,89.99185,0.0,11/09/3654 +-3.25181,43.7853,7745,10,12,15,36,29,3.65,15.0,fr,13668,154,581302,1,1,Active Shallow Crust,128.9006,89.96347,0.0,10/12/7745 +-3.25181,43.7853,1933,11,30,9,5,53,3.75,5.0,fr,13669,38,581304,1,1,Active Shallow Crust,0.0,89.99133,0.0,11/30/1933 +-3.25181,43.7853,3423,10,28,11,54,21,4.05,15.0,fr,13670,68,581350,1,1,Active Shallow Crust,128.8911,89.99386,0.0,10/28/3423 +-3.25181,43.7853,9533,8,5,5,35,12,4.15,5.0,fr,13671,190,581352,1,1,Active Shallow Crust,0.0,89.99088,0.0,08/05/9533 +6.11894,48.01408,4750,7,17,22,54,28,3.55,5.0,fr,13672,94,581760,1,1,Active Shallow Crust,0.0,89.99326,0.0,07/17/4750 +6.11894,48.01408,5160,4,3,20,9,36,3.65,5.0,fr,13673,103,581772,1,1,Active Shallow Crust,0.0,89.98798,0.0,04/03/5160 +6.11894,48.01408,4207,1,27,18,12,37,3.65,15.0,fr,13674,84,581776,1,1,Active Shallow Crust,240.0008,58.01315,0.0,01/27/4207 +6.11894,48.01408,6548,1,6,20,38,20,3.75,5.0,fr,13675,130,581787,1,1,Active Shallow Crust,240.0079,58.01801,0.0,01/06/6548 +6.11894,48.01408,7244,4,29,1,40,49,4.05,5.0,fr,13676,144,581820,1,1,Active Shallow Crust,0.0,89.98862,0.0,04/29/7244 +6.11894,48.01408,9985,5,31,7,50,52,4.45,5.0,fr,13677,199,581877,1,1,Active Shallow Crust,128.892,89.99402,0.0,05/31/9985 +6.11894,48.01408,7900,12,3,19,4,29,4.95,15.0,fr,13678,157,581935,1,1,Active Shallow Crust,0.0,89.99047,-90.0,12/03/7900 +-6.51374,47.69912,9343,7,27,8,36,16,3.55,15.0,fr,13679,186,582241,1,1,Active Shallow Crust,0.0,89.99321,0.0,07/27/9343 +6.52616,43.89438,9376,4,22,2,56,46,3.55,5.0,fr,13680,187,582720,1,3,Active Shallow Crust,0.0,89.99274,0.0,04/22/9376 +6.52616,43.89438,9723,10,6,6,55,29,3.55,5.0,fr,13681,194,582720,1,3,Active Shallow Crust,0.0,89.99274,0.0,10/06/9723 +6.52616,43.89438,8095,12,21,2,37,33,3.55,5.0,fr,13682,161,582720,1,3,Active Shallow Crust,0.0,89.99274,0.0,12/21/8095 +6.52616,43.89438,3027,1,26,10,28,55,3.55,15.0,fr,13683,60,582721,1,1,Active Shallow Crust,0.0,89.99274,0.0,01/26/3027 +6.52616,43.89438,6702,11,13,11,55,36,3.65,5.0,fr,13684,134,582732,1,3,Active Shallow Crust,0.0,89.98705,0.0,11/13/6702 +6.52616,43.89438,8728,10,21,12,9,29,3.65,5.0,fr,13685,174,582732,1,3,Active Shallow Crust,0.0,89.98705,0.0,10/21/8728 +6.52616,43.89438,6045,7,25,3,32,31,3.65,5.0,fr,13686,120,582732,1,3,Active Shallow Crust,0.0,89.98705,0.0,07/25/6045 +6.52616,43.89438,3158,2,19,1,30,35,3.85,5.0,fr,13687,63,582756,1,1,Active Shallow Crust,0.0,89.98971,0.0,02/19/3158 +6.52616,43.89438,3889,11,15,5,46,58,3.85,5.0,fr,13688,77,582762,1,1,Active Shallow Crust,0.0,89.98959,-90.0,11/15/3889 +6.52616,43.89438,7334,2,27,20,31,33,4.05,5.0,fr,13689,146,582780,1,1,Active Shallow Crust,0.0,89.99183,0.0,02/27/7334 +6.52616,43.89438,3792,8,26,11,53,6,4.05,15.0,fr,13690,75,582781,1,2,Active Shallow Crust,0.0,89.99183,0.0,08/26/3792 +6.52616,43.89438,1597,12,7,9,51,16,4.05,15.0,fr,13691,31,582781,1,2,Active Shallow Crust,0.0,89.99183,0.0,12/07/1597 +6.52616,43.89438,4393,10,13,19,12,48,4.15,5.0,fr,13692,87,582795,1,1,Active Shallow Crust,240.0085,57.99678,0.0,10/13/4393 +6.52616,43.89438,801,10,20,3,35,39,4.35,5.0,fr,13693,16,582816,1,1,Active Shallow Crust,0.0,89.99132,0.0,10/20/0801 +6.52616,43.89438,4477,10,2,16,28,43,4.45,5.0,fr,13694,89,582828,1,1,Active Shallow Crust,0.0,89.98969,0.0,10/02/4477 +6.52616,43.89438,3098,5,26,11,44,26,4.65,5.0,fr,13695,61,582852,1,1,Active Shallow Crust,0.0,89.98976,0.0,05/26/3098 +6.52616,43.89438,7392,10,19,18,22,42,4.75,5.0,fr,13696,147,582864,1,2,Active Shallow Crust,0.0,89.99088,0.0,10/19/7392 +6.52616,43.89438,4004,2,19,20,57,28,4.75,5.0,fr,13697,80,582864,1,2,Active Shallow Crust,0.0,89.99088,0.0,02/19/4004 +6.52616,43.89438,554,5,3,14,27,58,5.35,5.0,fr,13698,11,582936,1,1,Active Shallow Crust,0.0,89.98994,0.0,05/03/0554 +-3.88647,48.80433,6497,8,3,1,40,47,3.55,15.0,fr,13699,129,583681,1,1,Active Shallow Crust,0.0,89.99004,0.0,08/03/6497 +-3.88647,48.80433,1100,6,26,6,30,49,3.65,15.0,fr,13700,21,583699,1,1,Active Shallow Crust,0.0,89.99102,-90.0,06/26/1100 +-3.88647,48.80433,8204,3,6,18,46,58,3.75,15.0,fr,13701,164,583714,1,1,Active Shallow Crust,128.8965,89.96729,0.0,03/06/8204 +-3.88647,48.80433,5717,8,13,7,0,36,3.95,5.0,fr,13702,114,583728,1,1,Active Shallow Crust,0.0,89.98952,0.0,08/13/5717 +-3.88647,48.80433,9255,9,14,17,59,5,4.05,15.0,fr,13703,185,583741,1,1,Active Shallow Crust,0.0,89.99066,0.0,09/14/9255 +-3.88647,48.80433,5504,5,6,13,29,55,4.25,5.0,fr,13704,110,583767,1,1,Active Shallow Crust,240.008,57.99424,0.0,05/06/5504 +-3.88647,48.80433,5264,2,27,7,3,24,4.45,5.0,fr,13705,105,583797,1,1,Active Shallow Crust,128.8919,89.99352,0.0,02/27/5264 +-3.88647,48.80433,9203,2,9,20,37,37,4.55,5.0,fr,13706,184,583806,1,1,Active Shallow Crust,0.0,89.99044,-90.0,02/09/9203 +5.57194,51.79658,4984,7,24,5,53,50,3.65,15.0,fr,13707,99,584173,1,1,Active Shallow Crust,0.0,89.98888,0.0,07/24/4984 +5.57194,51.79658,8506,1,10,2,7,14,3.75,5.0,fr,13708,170,584184,1,1,Active Shallow Crust,0.0,89.99009,0.0,01/10/8506 +5.57194,51.79658,213,10,16,11,53,52,4.25,15.0,fr,13709,4,584245,1,1,Active Shallow Crust,0.0,89.98885,0.0,10/16/0213 +5.57194,51.79658,326,12,23,0,21,22,4.45,15.0,fr,13710,6,584272,1,1,Active Shallow Crust,240.0067,57.99527,0.0,12/23/0326 +1.27678,50.08466,1662,2,15,16,11,36,3.55,15.0,fr,13711,33,584641,1,1,Active Shallow Crust,0.0,89.9903,0.0,02/15/1662 +1.27678,50.08466,3568,10,12,4,51,39,3.75,5.0,fr,13712,71,584664,1,1,Active Shallow Crust,0.0,89.98972,0.0,10/12/3568 +1.27678,50.08466,2238,4,28,11,11,51,3.85,5.0,fr,13713,44,584676,1,1,Active Shallow Crust,0.0,89.98969,0.0,04/28/2238 +1.27678,50.08466,9957,1,13,17,55,23,3.85,15.0,fr,13714,199,584680,1,1,Active Shallow Crust,240.0114,57.99798,0.0,01/13/9957 +1.27678,50.08466,4890,4,18,12,18,42,4.35,5.0,fr,13715,97,584736,1,1,Active Shallow Crust,0.0,89.98969,0.0,04/18/4890 +1.27678,50.08466,9442,12,26,8,35,32,5.15,5.0,fr,13716,188,584832,1,1,Active Shallow Crust,0.0,89.99,0.0,12/26/9442 +8.03177,45.6527,3853,11,2,2,50,46,3.55,5.0,fr,13717,77,585120,1,1,Active Shallow Crust,0.0,89.9859,0.0,11/02/3853 +8.03177,45.6527,8566,10,14,3,12,20,3.55,15.0,fr,13718,171,585121,1,1,Active Shallow Crust,0.0,89.9859,0.0,10/14/8566 +8.03177,45.6527,2402,5,17,9,13,34,3.55,15.0,fr,13719,48,585130,1,1,Active Shallow Crust,128.8976,89.99295,0.0,05/17/2402 +8.03177,45.6527,5569,9,23,9,32,29,3.65,5.0,fr,13720,111,585132,1,3,Active Shallow Crust,0.0,89.98743,0.0,09/23/5569 +8.03177,45.6527,7579,1,23,1,3,39,3.65,5.0,fr,13721,151,585132,1,3,Active Shallow Crust,0.0,89.98743,0.0,01/23/7579 +8.03177,45.6527,9325,12,1,17,4,29,3.65,5.0,fr,13722,186,585132,1,3,Active Shallow Crust,0.0,89.98743,0.0,12/01/9325 +8.03177,45.6527,6448,5,22,2,41,25,3.65,5.0,fr,13723,128,585138,1,2,Active Shallow Crust,0.0,89.98729,-90.0,05/22/6448 +8.03177,45.6527,4677,2,11,10,42,47,3.65,5.0,fr,13724,93,585138,1,2,Active Shallow Crust,0.0,89.98729,-90.0,02/11/4677 +8.03177,45.6527,5362,9,14,21,59,30,3.75,5.0,fr,13725,107,585144,1,2,Active Shallow Crust,0.0,89.9888,0.0,09/14/5362 +8.03177,45.6527,7714,6,12,22,36,22,3.75,5.0,fr,13726,154,585144,1,2,Active Shallow Crust,0.0,89.9888,0.0,06/12/7714 +8.03177,45.6527,351,2,23,4,30,33,3.85,5.0,fr,13727,7,585156,1,1,Active Shallow Crust,0.0,89.99002,0.0,02/23/0351 +8.03177,45.6527,356,3,14,14,59,46,3.85,15.0,fr,13728,7,585163,1,1,Active Shallow Crust,0.0,89.98991,-90.0,03/14/0356 +8.03177,45.6527,4563,8,17,23,56,24,3.95,15.0,fr,13729,91,585169,1,1,Active Shallow Crust,0.0,89.9911,0.0,08/17/4563 +8.03177,45.6527,9914,1,12,16,51,9,3.95,15.0,fr,13730,198,585172,1,2,Active Shallow Crust,240.0215,58.00372,0.0,01/12/9914 +8.03177,45.6527,5858,12,6,1,49,11,3.95,15.0,fr,13731,117,585172,1,2,Active Shallow Crust,240.0215,58.00372,0.0,12/06/5858 +8.03177,45.6527,5548,3,26,4,42,6,4.05,5.0,fr,13732,110,585180,1,1,Active Shallow Crust,0.0,89.99207,0.0,03/26/5548 +8.03177,45.6527,1944,10,9,16,9,28,4.15,5.0,fr,13733,38,585192,1,1,Active Shallow Crust,0.0,89.99294,0.0,10/09/1944 +8.03177,45.6527,3023,1,12,10,54,30,4.15,15.0,fr,13734,60,585196,1,1,Active Shallow Crust,240.0083,57.9974,0.0,01/12/3023 +8.03177,45.6527,2719,11,17,9,24,33,4.25,5.0,fr,13735,54,585204,1,2,Active Shallow Crust,0.0,89.9874,0.0,11/17/2719 +8.03177,45.6527,6485,11,16,22,19,43,4.25,5.0,fr,13736,129,585204,1,2,Active Shallow Crust,0.0,89.9874,0.0,11/16/6485 +8.03177,45.6527,9843,8,2,18,19,15,4.25,15.0,fr,13737,196,585208,1,1,Active Shallow Crust,240.0077,57.99448,0.0,08/02/9843 +8.03177,45.6527,8692,1,18,5,8,18,4.75,5.0,fr,13738,173,585267,1,1,Active Shallow Crust,240.0076,58.00439,0.0,01/18/8692 +-0.21065,42.1902,6076,5,16,9,11,12,3.65,27.5,fr,13739,121,585614,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/16/6076 +-0.21065,42.1902,9052,4,10,10,51,24,3.85,5.0,fr,13740,181,585636,1,2,Active Shallow Crust,359.9999,89.99008,0.0,04/10/9052 +-0.21065,42.1902,1598,7,19,6,43,31,3.85,5.0,fr,13741,31,585636,1,2,Active Shallow Crust,359.9999,89.99008,0.0,07/19/1598 +1.19094,50.99143,7243,5,30,15,12,24,3.65,5.0,fr,13742,144,586092,1,1,Active Shallow Crust,0.0,89.9901,0.0,05/30/7243 +1.19094,50.99143,9968,8,4,20,52,59,3.75,5.0,fr,13743,199,586104,1,1,Active Shallow Crust,0.0,89.98991,0.0,08/04/9968 +1.19094,50.99143,4878,12,7,12,42,9,3.75,15.0,fr,13744,97,586105,1,2,Active Shallow Crust,0.0,89.98991,0.0,12/07/4878 +1.19094,50.99143,9214,11,16,22,32,46,3.75,15.0,fr,13745,184,586105,1,2,Active Shallow Crust,0.0,89.98991,0.0,11/16/9214 +1.19094,50.99143,6715,1,19,10,1,51,3.75,5.0,fr,13746,134,586107,1,1,Active Shallow Crust,240.0089,58.01768,0.0,01/19/6715 +1.19094,50.99143,2913,5,23,2,22,17,3.85,15.0,fr,13747,58,586117,1,1,Active Shallow Crust,0.0,89.98989,0.0,05/23/2913 +1.19094,50.99143,9067,4,5,7,15,37,3.85,5.0,fr,13748,181,586122,1,1,Active Shallow Crust,0.0,89.98977,-90.0,04/05/9067 +1.19094,50.99143,9448,3,5,22,47,40,3.85,5.0,fr,13749,188,586125,1,1,Active Shallow Crust,128.8949,89.99382,0.0,03/05/9448 +1.19094,50.99143,7258,5,23,3,55,57,3.95,5.0,fr,13750,145,586131,1,1,Active Shallow Crust,240.0204,58.00519,0.0,05/23/7258 +1.19094,50.99143,9323,10,23,6,40,22,4.35,5.0,fr,13751,186,586176,1,1,Active Shallow Crust,0.0,89.98989,0.0,10/23/9323 +2.54623,43.60457,6043,3,7,9,21,33,3.65,5.0,fr,13752,120,586578,1,1,Active Shallow Crust,0.0,89.99013,-90.0,03/07/6043 +2.54623,43.60457,6676,8,25,11,3,47,3.95,5.0,fr,13753,133,586608,1,1,Active Shallow Crust,0.0,89.99078,0.0,08/25/6676 +2.54623,43.60457,2890,3,17,10,51,1,4.55,5.0,fr,13754,57,586680,1,1,Active Shallow Crust,0.0,89.98961,0.0,03/17/2890 +0.99352,47.83241,7886,1,1,4,24,27,3.55,27.5,fr,13755,157,587042,1,1,Active Shallow Crust,0.0,89.98985,0.0,01/01/7886 +0.99352,47.83241,2755,9,3,4,3,58,3.65,5.0,fr,13756,55,587052,1,1,Active Shallow Crust,0.0,89.9902,0.0,09/03/2755 +0.99352,47.83241,2634,9,16,18,2,44,3.65,15.0,fr,13757,52,587053,1,1,Active Shallow Crust,0.0,89.9902,0.0,09/16/2634 +0.99352,47.83241,9176,6,22,14,49,7,3.65,5.0,fr,13758,183,587058,1,1,Active Shallow Crust,0.0,89.99008,-90.0,06/22/9176 +0.99352,47.83241,7668,10,2,6,43,36,3.75,15.0,fr,13759,153,587068,1,1,Active Shallow Crust,240.0085,58.01759,0.0,10/02/7668 +0.99352,47.83241,316,1,25,3,38,4,4.05,5.0,fr,13760,6,587106,1,1,Active Shallow Crust,0.0,89.98989,-90.0,01/25/0316 +0.99352,47.83241,329,8,1,6,44,28,4.25,5.0,fr,13761,6,587127,1,1,Active Shallow Crust,240.0079,57.99406,0.0,08/01/0329 +0.99352,47.83241,9903,2,21,6,45,17,4.75,5.0,fr,13762,198,587187,1,1,Active Shallow Crust,240.008,58.00457,0.0,02/21/9903 +5.74731,46.16486,3768,9,7,9,51,36,3.55,5.0,fr,13763,75,587520,1,2,Active Shallow Crust,0.0,89.99302,0.0,09/07/3768 +5.74731,46.16486,1260,8,10,3,21,49,3.55,5.0,fr,13764,25,587520,1,2,Active Shallow Crust,0.0,89.99302,0.0,08/10/1260 +5.74731,46.16486,241,3,3,17,59,58,3.55,15.0,fr,13765,4,587521,1,1,Active Shallow Crust,0.0,89.99302,0.0,03/03/0241 +5.74731,46.16486,9531,5,30,21,35,50,3.55,5.0,fr,13766,190,587523,1,1,Active Shallow Crust,240.0121,57.99875,0.0,05/30/9531 +5.74731,46.16486,4585,9,18,5,48,51,3.55,15.0,fr,13767,91,587524,1,1,Active Shallow Crust,240.0121,57.99875,0.0,09/18/4585 +5.74731,46.16486,2908,1,29,20,24,52,3.65,5.0,fr,13768,58,587532,1,1,Active Shallow Crust,0.0,89.98755,0.0,01/29/2908 +5.74731,46.16486,322,9,3,0,14,18,3.65,15.0,fr,13769,6,587533,1,1,Active Shallow Crust,0.0,89.98755,0.0,09/03/0322 +5.74731,46.16486,2252,4,28,1,32,52,3.65,5.0,fr,13770,45,587541,1,1,Active Shallow Crust,128.9005,89.96352,0.0,04/28/2252 +5.74731,46.16486,6383,4,7,22,12,18,3.75,15.0,fr,13771,127,587545,1,1,Active Shallow Crust,0.0,89.98891,0.0,04/07/6383 +5.74731,46.16486,8449,4,15,2,18,2,3.75,5.0,fr,13772,168,587547,1,1,Active Shallow Crust,240.0092,58.01755,0.0,04/15/8449 +5.74731,46.16486,2774,10,1,6,18,48,3.75,15.0,fr,13773,55,587551,1,1,Active Shallow Crust,0.0,89.98878,-90.0,10/01/2774 +5.74731,46.16486,9223,12,24,1,6,5,3.85,5.0,fr,13774,184,587565,1,1,Active Shallow Crust,128.8956,89.99258,0.0,12/24/9223 +5.74731,46.16486,104,9,19,13,48,56,3.85,27.5,fr,13775,2,587567,1,1,Active Shallow Crust,128.8956,89.99258,0.0,09/19/0104 +5.74731,46.16486,6151,6,5,4,5,26,3.95,15.0,fr,13776,123,587569,1,1,Active Shallow Crust,0.0,89.99119,0.0,06/05/6151 +5.74731,46.16486,7190,11,26,4,27,7,4.05,5.0,fr,13777,143,587580,1,1,Active Shallow Crust,0.0,89.98822,0.0,11/26/7190 +5.74731,46.16486,4113,8,27,15,30,9,4.15,5.0,fr,13778,82,587595,1,1,Active Shallow Crust,240.0081,57.99714,0.0,08/27/4113 +5.74731,46.16486,9657,12,21,14,0,36,4.15,5.0,fr,13779,193,587598,1,2,Active Shallow Crust,0.0,89.98938,-90.0,12/21/9657 +5.74731,46.16486,8971,4,22,15,11,8,4.15,5.0,fr,13780,179,587598,1,2,Active Shallow Crust,0.0,89.98938,-90.0,04/22/8971 +5.74731,46.16486,4428,3,7,23,12,18,4.25,5.0,fr,13781,88,587604,1,2,Active Shallow Crust,0.0,89.99064,0.0,03/07/4428 +5.74731,46.16486,499,1,11,8,13,48,4.25,5.0,fr,13782,9,587604,1,2,Active Shallow Crust,0.0,89.99064,0.0,01/11/0499 +5.74731,46.16486,4467,10,1,7,13,32,4.35,5.0,fr,13783,89,587616,1,1,Active Shallow Crust,0.0,89.98888,0.0,10/01/4467 +5.74731,46.16486,8378,7,22,21,43,58,4.45,15.0,fr,13784,167,587629,1,1,Active Shallow Crust,0.0,89.99009,0.0,07/22/8378 +5.74731,46.16486,172,4,2,1,11,34,4.65,5.0,fr,13785,3,587652,1,1,Active Shallow Crust,0.0,89.99016,0.0,04/02/0172 +6.63728,43.10618,550,8,14,9,30,30,3.55,27.5,fr,13786,10,588002,1,2,Active Shallow Crust,0.0,89.99264,0.0,08/14/0550 +6.63728,43.10618,4492,3,10,17,58,44,3.55,27.5,fr,13787,89,588002,1,2,Active Shallow Crust,0.0,89.99264,0.0,03/10/4492 +6.63728,43.10618,7783,1,3,17,6,15,5.45,5.0,fr,13788,155,588228,1,1,Active Shallow Crust,0.0,89.99008,0.0,01/03/7783 +0.67035,48.34438,7821,5,14,18,35,13,3.55,5.0,fr,13789,156,588483,1,1,Active Shallow Crust,240.0124,57.99833,0.0,05/14/7821 +0.67035,48.34438,2170,2,5,4,16,19,3.55,5.0,fr,13790,43,588486,1,1,Active Shallow Crust,0.0,89.98983,-90.0,02/05/2170 +0.67035,48.34438,3496,3,17,0,7,33,3.85,15.0,fr,13791,69,588517,1,1,Active Shallow Crust,0.0,89.98991,0.0,03/17/3496 +0.32153,42.51824,2581,6,7,20,13,59,3.55,5.0,fr,13792,51,588963,1,2,Active Shallow Crust,240.0119,57.99805,0.0,06/07/2581 +0.32153,42.51824,4645,3,1,22,9,54,3.55,5.0,fr,13793,92,588963,1,2,Active Shallow Crust,240.0119,57.99805,0.0,03/01/4645 +0.32153,42.51824,3280,3,24,10,21,47,3.55,5.0,fr,13794,65,588966,1,1,Active Shallow Crust,0.0,89.99014,-90.0,03/24/3280 +0.32153,42.51824,9162,12,11,20,36,36,3.65,5.0,fr,13795,183,588975,1,2,Active Shallow Crust,240.0008,58.01277,0.0,12/11/9162 +0.32153,42.51824,2861,6,28,10,15,7,3.65,5.0,fr,13796,57,588975,1,2,Active Shallow Crust,240.0008,58.01277,0.0,06/28/2861 +0.32153,42.51824,6785,5,6,2,5,4,3.65,27.5,fr,13797,135,588977,1,1,Active Shallow Crust,240.0008,58.01268,0.0,05/06/6785 +0.32153,42.51824,7880,10,16,2,47,53,3.65,5.0,fr,13798,157,588981,1,3,Active Shallow Crust,128.9007,89.96352,0.0,10/16/7880 +0.32153,42.51824,1501,9,27,15,23,6,3.65,5.0,fr,13799,30,588981,1,3,Active Shallow Crust,128.9007,89.96352,0.0,09/27/1501 +0.32153,42.51824,9136,1,14,19,53,0,3.65,5.0,fr,13800,182,588981,1,3,Active Shallow Crust,128.9007,89.96352,0.0,01/14/9136 +0.32153,42.51824,6528,3,17,14,49,15,3.75,5.0,fr,13801,130,588984,1,1,Active Shallow Crust,0.0,89.99004,0.0,03/17/6528 +0.32153,42.51824,3125,3,15,12,46,25,3.75,15.0,fr,13802,62,588985,1,1,Active Shallow Crust,0.0,89.99004,0.0,03/15/3125 +0.32153,42.51824,4691,11,14,9,28,8,3.75,5.0,fr,13803,93,588990,1,1,Active Shallow Crust,0.0,89.98992,-90.0,11/14/4691 +0.32153,42.51824,7156,6,7,18,37,28,3.85,5.0,fr,13804,143,588996,1,1,Active Shallow Crust,0.0,89.99014,0.0,06/07/7156 +0.32153,42.51824,1750,8,10,9,8,26,3.85,15.0,fr,13805,34,588997,1,1,Active Shallow Crust,0.0,89.99014,0.0,08/10/1750 +0.32153,42.51824,7266,3,19,15,48,41,3.95,5.0,fr,13806,145,589008,1,1,Active Shallow Crust,0.0,89.99004,0.0,03/19/7266 +0.32153,42.51824,4965,3,7,5,47,23,3.95,15.0,fr,13807,99,589015,1,1,Active Shallow Crust,0.0,89.98992,-90.0,03/07/4965 +0.32153,42.51824,1154,6,15,4,1,45,4.25,5.0,fr,13808,23,589044,1,2,Active Shallow Crust,0.0,89.99004,0.0,06/15/1154 +0.32153,42.51824,5706,8,27,14,34,9,4.25,5.0,fr,13809,114,589044,1,2,Active Shallow Crust,0.0,89.99004,0.0,08/27/5706 +0.32153,42.51824,907,6,24,16,4,6,4.25,5.0,fr,13810,18,589047,1,1,Active Shallow Crust,240.0068,57.9939,0.0,06/24/0907 +0.32153,42.51824,6118,12,26,3,53,27,4.35,5.0,fr,13811,122,589065,1,1,Active Shallow Crust,128.8985,89.98276,0.0,12/26/6118 +0.32153,42.51824,3187,10,14,7,15,19,4.45,27.5,fr,13812,63,589070,1,1,Active Shallow Crust,0.0,89.98994,0.0,10/14/3187 +0.32153,42.51824,5786,3,15,11,50,43,4.45,15.0,fr,13813,115,589072,1,1,Active Shallow Crust,240.0043,57.99448,0.0,03/15/5786 +0.32153,42.51824,1461,4,19,12,7,48,4.55,15.0,fr,13814,29,589084,1,1,Active Shallow Crust,240.0082,57.99717,0.0,04/19/1461 +7.58783,44.01753,9820,1,21,8,21,33,3.55,5.0,fr,13815,196,589440,1,3,Active Shallow Crust,0.0,89.99275,0.0,01/21/9820 +7.58783,44.01753,4764,8,26,14,14,28,3.55,5.0,fr,13816,95,589440,1,3,Active Shallow Crust,0.0,89.99275,0.0,08/26/4764 +7.58783,44.01753,5705,4,16,10,56,48,3.55,5.0,fr,13817,114,589440,1,3,Active Shallow Crust,0.0,89.99275,0.0,04/16/5705 +7.58783,44.01753,21,6,2,14,27,53,3.55,15.0,fr,13818,0,589441,1,1,Active Shallow Crust,0.0,89.99275,0.0,06/02/0021 +7.58783,44.01753,1529,11,30,21,28,51,3.55,5.0,fr,13819,30,589443,1,1,Active Shallow Crust,240.0109,57.9996,0.0,11/30/1529 +7.58783,44.01753,4009,3,2,14,31,40,3.55,27.5,fr,13820,80,589451,1,1,Active Shallow Crust,128.8954,89.99638,0.0,03/02/4009 +7.58783,44.01753,6538,11,1,3,44,1,3.65,5.0,fr,13821,130,589452,1,3,Active Shallow Crust,0.0,89.98708,0.0,11/01/6538 +7.58783,44.01753,5034,12,16,15,15,1,3.65,5.0,fr,13822,100,589452,1,3,Active Shallow Crust,0.0,89.98708,0.0,12/16/5034 +7.58783,44.01753,9970,11,19,9,32,53,3.65,5.0,fr,13823,199,589452,1,3,Active Shallow Crust,0.0,89.98708,0.0,11/19/9970 +7.58783,44.01753,9207,6,4,1,18,59,3.65,15.0,fr,13824,184,589453,1,2,Active Shallow Crust,0.0,89.98708,0.0,06/04/9207 +7.58783,44.01753,5949,12,3,11,35,16,3.65,15.0,fr,13825,118,589453,1,2,Active Shallow Crust,0.0,89.98708,0.0,12/03/5949 +7.58783,44.01753,3704,11,11,7,38,29,3.65,5.0,fr,13826,74,589461,1,2,Active Shallow Crust,128.9011,89.96348,0.0,11/11/3704 +7.58783,44.01753,5162,9,24,20,49,9,3.65,5.0,fr,13827,103,589461,1,2,Active Shallow Crust,128.9011,89.96348,0.0,09/24/5162 +7.58783,44.01753,5887,9,17,23,3,31,3.75,5.0,fr,13828,117,589464,1,2,Active Shallow Crust,0.0,89.98848,0.0,09/17/5887 +7.58783,44.01753,974,10,5,21,34,50,3.75,5.0,fr,13829,19,589464,1,2,Active Shallow Crust,0.0,89.98848,0.0,10/05/0974 +7.58783,44.01753,594,3,23,16,13,6,3.75,15.0,fr,13830,11,589465,1,1,Active Shallow Crust,0.0,89.98848,0.0,03/23/0594 +7.58783,44.01753,975,3,29,23,38,55,3.75,5.0,fr,13831,19,589473,1,1,Active Shallow Crust,128.8968,89.96745,0.0,03/29/0975 +7.58783,44.01753,5164,4,9,4,24,21,3.85,5.0,fr,13832,103,589476,1,5,Active Shallow Crust,0.0,89.98973,0.0,04/09/5164 +7.58783,44.01753,614,12,1,18,6,16,3.85,5.0,fr,13833,12,589476,1,5,Active Shallow Crust,0.0,89.98973,0.0,12/01/0614 +7.58783,44.01753,9840,7,25,10,19,14,3.85,5.0,fr,13834,196,589476,1,5,Active Shallow Crust,0.0,89.98973,0.0,07/25/9840 +7.58783,44.01753,2684,3,27,16,49,37,3.85,5.0,fr,13835,53,589476,1,5,Active Shallow Crust,0.0,89.98973,0.0,03/27/2684 +7.58783,44.01753,7279,10,9,23,38,57,3.85,5.0,fr,13836,145,589476,1,5,Active Shallow Crust,0.0,89.98973,0.0,10/09/7279 +7.58783,44.01753,6000,8,4,5,7,59,3.85,15.0,fr,13837,119,589477,1,2,Active Shallow Crust,0.0,89.98973,0.0,08/04/6000 +7.58783,44.01753,5651,11,16,11,58,14,3.85,15.0,fr,13838,113,589477,1,2,Active Shallow Crust,0.0,89.98973,0.0,11/16/5651 +7.58783,44.01753,127,8,15,6,29,26,3.85,15.0,fr,13839,2,589483,1,1,Active Shallow Crust,0.0,89.98962,-90.0,08/15/0127 +7.58783,44.01753,704,6,10,15,54,44,3.85,27.5,fr,13840,14,589487,1,1,Active Shallow Crust,128.8962,89.9923,0.0,06/10/0704 +7.58783,44.01753,8921,4,5,2,19,45,3.95,5.0,fr,13841,178,589491,1,1,Active Shallow Crust,240.0194,58.0056,0.0,04/05/8921 +7.58783,44.01753,1579,11,16,11,38,0,3.95,5.0,fr,13842,31,589494,1,1,Active Shallow Crust,0.0,89.99075,-90.0,11/16/1579 +7.58783,44.01753,9115,12,6,7,19,42,4.05,5.0,fr,13843,182,589500,1,1,Active Shallow Crust,0.0,89.99184,0.0,12/06/9115 +7.58783,44.01753,1699,11,16,2,27,29,4.15,5.0,fr,13844,33,589512,1,1,Active Shallow Crust,0.0,89.9891,0.0,11/16/1699 +7.58783,44.01753,4369,5,4,14,5,44,4.15,27.5,fr,13845,87,589514,1,1,Active Shallow Crust,0.0,89.9891,0.0,05/04/4369 +7.58783,44.01753,6208,12,22,20,53,8,4.35,5.0,fr,13846,124,589536,1,1,Active Shallow Crust,0.0,89.99134,0.0,12/22/6208 +7.58783,44.01753,6040,2,21,5,8,39,4.45,5.0,fr,13847,120,589548,1,1,Active Shallow Crust,0.0,89.98971,0.0,02/21/6040 +7.58783,44.01753,5959,6,15,7,19,54,4.55,15.0,fr,13848,119,589561,1,1,Active Shallow Crust,0.0,89.99083,0.0,06/15/5959 +7.58783,44.01753,2455,3,3,11,22,23,5.05,15.0,fr,13849,49,589627,1,1,Active Shallow Crust,0.0,89.98956,-90.0,03/03/2455 +7.58783,44.01753,4507,6,19,12,22,44,5.15,15.0,fr,13850,90,589633,1,1,Active Shallow Crust,0.0,89.98965,0.0,06/19/4507 +7.58783,44.01753,6036,12,9,20,8,40,5.15,15.0,fr,13851,120,589639,1,1,Active Shallow Crust,0.0,89.98953,-90.0,12/09/6036 +2.88358,46.27333,970,5,5,16,38,7,3.55,5.0,fr,13852,19,589920,1,3,Active Shallow Crust,0.0,89.98955,0.0,05/05/0970 +2.88358,46.27333,2400,2,16,16,33,37,3.55,5.0,fr,13853,47,589920,1,3,Active Shallow Crust,0.0,89.98955,0.0,02/16/2400 +2.88358,46.27333,4439,12,27,21,21,10,3.55,5.0,fr,13854,88,589920,1,3,Active Shallow Crust,0.0,89.98955,0.0,12/27/4439 +2.88358,46.27333,5869,5,3,13,23,28,3.55,15.0,fr,13855,117,589924,1,1,Active Shallow Crust,240.0128,57.99816,0.0,05/03/5869 +2.88358,46.27333,785,5,8,15,56,48,3.65,5.0,fr,13856,15,589941,1,1,Active Shallow Crust,128.9002,89.96352,0.0,05/08/0785 +2.88358,46.27333,3484,9,24,10,46,25,3.75,27.5,fr,13857,69,589946,1,1,Active Shallow Crust,0.0,89.98893,0.0,09/24/3484 +2.88358,46.27333,5990,11,14,5,17,6,3.85,5.0,fr,13858,119,589956,1,1,Active Shallow Crust,0.0,89.99013,0.0,11/14/5990 +2.88358,46.27333,9025,8,30,9,7,39,3.85,5.0,fr,13859,180,589962,1,1,Active Shallow Crust,0.0,89.99001,-90.0,08/30/9025 +2.88358,46.27333,7676,12,29,6,20,9,4.05,27.5,fr,13860,153,589982,1,1,Active Shallow Crust,0.0,89.9902,0.0,12/29/7676 +2.88358,46.27333,7646,12,3,22,29,26,4.05,15.0,fr,13861,152,589987,1,1,Active Shallow Crust,0.0,89.99009,-90.0,12/03/7646 +2.88358,46.27333,3154,7,16,8,57,3,4.15,15.0,fr,13862,63,589993,1,1,Active Shallow Crust,0.0,89.98952,0.0,07/16/3154 +2.88358,46.27333,4631,12,7,21,53,34,4.35,5.0,fr,13863,92,590016,1,1,Active Shallow Crust,0.0,89.99029,0.0,12/07/4631 +2.88358,46.27333,7522,3,9,9,48,53,4.45,5.0,fr,13864,150,590028,1,1,Active Shallow Crust,0.0,89.9901,0.0,03/09/7522 +2.88358,46.27333,2309,10,3,11,7,39,4.45,5.0,fr,13865,46,590034,1,1,Active Shallow Crust,0.0,89.98999,-90.0,10/03/2309 +0.81449,42.0199,1652,4,8,18,48,36,3.65,5.0,fr,13866,33,590415,1,1,Active Shallow Crust,240.0007,58.0129,0.0,04/08/1652 +0.81449,42.0199,9791,6,28,11,42,23,3.95,5.0,fr,13867,195,590457,1,1,Active Shallow Crust,128.9009,89.9938,0.0,06/28/9791 +0.81449,42.0199,1971,3,12,18,28,59,4.25,5.0,fr,13868,39,590487,1,1,Active Shallow Crust,240.0067,57.99384,0.0,03/12/1971 +0.81449,42.0199,8139,11,17,14,16,57,4.55,5.0,fr,13869,162,590520,1,1,Active Shallow Crust,0.0,89.98993,0.0,11/17/8139 +0.81449,42.0199,734,9,28,19,7,25,4.75,5.0,fr,13870,14,590547,1,1,Active Shallow Crust,240.006,58.00418,0.0,09/28/0734 +0.81449,42.0199,122,8,14,5,42,58,5.15,5.0,fr,13871,2,590598,1,1,Active Shallow Crust,0.0,89.98994,-90.0,08/14/0122 +1.88973,40.55496,2027,6,16,14,54,45,3.85,5.0,fr,13872,40,590919,1,1,Active Shallow Crust,240.0102,57.99763,0.0,06/16/2027 +1.88973,40.55496,1432,4,19,19,52,26,3.85,15.0,fr,13873,28,590920,1,1,Active Shallow Crust,240.0102,57.99763,0.0,04/19/1432 +1.88973,40.55496,8816,7,28,15,21,41,4.45,15.0,fr,13874,176,590989,1,1,Active Shallow Crust,0.0,89.98981,0.0,07/28/8816 +1.88973,40.55496,7643,11,4,1,16,58,4.75,5.0,fr,13875,152,591024,1,1,Active Shallow Crust,0.0,89.9899,0.0,11/04/7643 +1.88973,40.55496,2661,3,3,22,57,29,5.15,5.0,fr,13876,53,591072,1,1,Active Shallow Crust,0.0,89.98998,0.0,03/03/2661 +2.28915,42.76699,855,10,13,17,3,31,3.55,5.0,fr,13877,17,591360,1,2,Active Shallow Crust,0.0,89.9889,0.0,10/13/0855 +2.28915,42.76699,9312,8,9,20,19,48,3.55,5.0,fr,13878,186,591360,1,2,Active Shallow Crust,0.0,89.9889,0.0,08/09/9312 +2.28915,42.76699,9792,1,13,4,28,58,3.55,15.0,fr,13879,195,591361,1,1,Active Shallow Crust,0.0,89.9889,0.0,01/13/9792 +2.28915,42.76699,1095,3,29,7,45,59,3.55,15.0,fr,13880,21,591364,1,1,Active Shallow Crust,240.0117,57.99803,0.0,03/29/1095 +2.28915,42.76699,272,11,12,10,13,25,3.65,5.0,fr,13881,5,591372,1,5,Active Shallow Crust,0.0,89.9901,0.0,11/12/0272 +2.28915,42.76699,8397,5,26,14,30,28,3.65,5.0,fr,13882,167,591372,1,5,Active Shallow Crust,0.0,89.9901,0.0,05/26/8397 +2.28915,42.76699,8172,5,21,4,30,41,3.65,5.0,fr,13883,163,591372,1,5,Active Shallow Crust,0.0,89.9901,0.0,05/21/8172 +2.28915,42.76699,3174,10,15,13,2,19,3.65,5.0,fr,13884,63,591372,1,5,Active Shallow Crust,0.0,89.9901,0.0,10/15/3174 +2.28915,42.76699,6410,2,3,9,30,23,3.65,5.0,fr,13885,128,591372,1,5,Active Shallow Crust,0.0,89.9901,0.0,02/03/6410 +2.28915,42.76699,7748,10,3,5,21,50,3.65,15.0,fr,13886,154,591373,1,1,Active Shallow Crust,0.0,89.9901,0.0,10/03/7748 +2.28915,42.76699,7013,8,27,13,52,36,3.65,15.0,fr,13887,140,591376,1,1,Active Shallow Crust,240.0001,58.01266,0.0,08/27/7013 +2.28915,42.76699,6455,5,2,19,53,33,3.65,5.0,fr,13888,129,591381,1,1,Active Shallow Crust,128.9005,89.96346,0.0,05/02/6455 +2.28915,42.76699,8505,7,26,3,26,0,3.75,15.0,fr,13889,170,591385,1,1,Active Shallow Crust,0.0,89.99118,0.0,07/26/8505 +2.28915,42.76699,8720,7,6,13,41,16,3.75,27.5,fr,13890,174,591389,1,1,Active Shallow Crust,240.0076,58.01733,0.0,07/06/8720 +2.28915,42.76699,1974,5,25,2,31,31,3.85,5.0,fr,13891,39,591396,1,1,Active Shallow Crust,0.0,89.98952,0.0,05/25/1974 +2.28915,42.76699,7674,8,16,17,23,49,3.85,15.0,fr,13892,153,591397,1,1,Active Shallow Crust,0.0,89.98952,0.0,08/16/7674 +2.28915,42.76699,6467,9,23,19,30,21,3.95,5.0,fr,13893,129,591408,1,1,Active Shallow Crust,0.0,89.99066,0.0,09/23/6467 +2.28915,42.76699,3757,4,18,10,31,22,3.95,27.5,fr,13894,75,591419,1,1,Active Shallow Crust,128.9005,89.99416,0.0,04/18/3757 +2.28915,42.76699,3315,4,9,11,51,50,4.05,5.0,fr,13895,66,591420,1,1,Active Shallow Crust,0.0,89.98959,0.0,04/09/3315 +2.28915,42.76699,7591,8,30,15,38,24,4.15,5.0,fr,13896,151,591432,1,1,Active Shallow Crust,0.0,89.99072,0.0,08/30/7591 +2.28915,42.76699,3090,1,3,19,47,37,4.15,5.0,fr,13897,61,591438,1,1,Active Shallow Crust,0.0,89.99062,-90.0,01/03/3090 +2.28915,42.76699,6344,4,23,8,56,30,4.15,15.0,fr,13898,126,591439,1,1,Active Shallow Crust,0.0,89.99062,-90.0,04/23/6344 +2.28915,42.76699,134,6,26,20,2,16,4.35,5.0,fr,13899,2,591456,1,2,Active Shallow Crust,0.0,89.98969,0.0,06/26/0134 +2.28915,42.76699,3897,4,23,10,38,21,4.35,5.0,fr,13900,77,591456,1,2,Active Shallow Crust,0.0,89.98969,0.0,04/23/3897 +2.28915,42.76699,4236,6,16,8,56,14,4.45,5.0,fr,13901,84,591468,1,1,Active Shallow Crust,0.0,89.98949,0.0,06/16/4236 +2.28915,42.76699,7799,5,4,8,26,28,4.75,5.0,fr,13902,155,591504,1,1,Active Shallow Crust,0.0,89.98977,0.0,05/04/7799 +2.28915,42.76699,6900,9,14,6,32,46,5.05,5.0,fr,13903,137,591540,1,1,Active Shallow Crust,0.0,89.99013,0.0,09/14/6900 +2.28915,42.76699,4540,10,4,8,59,16,5.15,5.0,fr,13904,90,591558,1,1,Active Shallow Crust,0.0,89.98991,-90.0,10/04/4540 +5.68151,48.59234,745,9,28,0,29,6,3.55,5.0,fr,13905,14,591840,1,1,Active Shallow Crust,0.0,89.99333,0.0,09/28/0745 +5.68151,48.59234,7549,4,18,3,12,50,3.55,27.5,fr,13906,150,591842,1,1,Active Shallow Crust,0.0,89.99333,0.0,04/18/7549 +5.68151,48.59234,468,4,18,5,19,25,3.75,27.5,fr,13907,9,591872,1,1,Active Shallow Crust,0.0,89.98928,-90.0,04/18/0468 +5.68151,48.59234,9218,12,18,21,7,24,4.15,5.0,fr,13908,184,591912,1,1,Active Shallow Crust,0.0,89.98997,0.0,12/18/9218 +5.68151,48.59234,6109,8,28,10,7,48,4.35,5.0,fr,13909,122,591936,1,1,Active Shallow Crust,0.0,89.98938,0.0,08/28/6109 +5.22384,43.32953,1371,10,27,16,34,42,3.55,15.0,fr,13910,27,592324,1,1,Active Shallow Crust,240.0126,57.99693,0.0,10/27/1371 +5.22384,43.32953,3972,4,21,0,11,35,3.65,5.0,fr,13911,79,592332,1,2,Active Shallow Crust,0.0,89.98692,0.0,04/21/3972 +5.22384,43.32953,7298,2,3,13,20,5,3.65,5.0,fr,13912,145,592332,1,2,Active Shallow Crust,0.0,89.98692,0.0,02/03/7298 +5.22384,43.32953,5759,2,26,16,12,38,3.75,5.0,fr,13913,115,592344,1,1,Active Shallow Crust,0.0,89.98835,0.0,02/26/5759 +5.22384,43.32953,1136,1,7,23,53,40,3.75,15.0,fr,13914,22,592345,1,1,Active Shallow Crust,0.0,89.98835,0.0,01/07/1136 +5.22384,43.32953,3728,5,13,16,29,58,3.85,5.0,fr,13915,74,592356,1,1,Active Shallow Crust,0.0,89.98962,0.0,05/13/3728 +5.22384,43.32953,9772,6,7,8,29,3,3.85,15.0,fr,13916,195,592357,1,1,Active Shallow Crust,0.0,89.98962,0.0,06/07/9772 +5.22384,43.32953,3171,9,22,9,48,13,3.85,15.0,fr,13917,63,592360,1,1,Active Shallow Crust,240.0105,57.99853,0.0,09/22/3171 +5.22384,43.32953,4181,5,13,17,57,21,3.95,5.0,fr,13918,83,592368,1,1,Active Shallow Crust,0.0,89.99075,0.0,05/13/4181 +5.22384,43.32953,7249,6,24,8,45,21,4.05,5.0,fr,13919,144,592380,1,1,Active Shallow Crust,0.0,89.99175,0.0,06/24/7249 +5.22384,43.32953,2741,6,27,12,1,52,4.15,5.0,fr,13920,54,592392,1,1,Active Shallow Crust,0.0,89.98897,0.0,06/27/2741 +5.22384,43.32953,5684,3,4,10,18,45,4.15,15.0,fr,13921,113,592393,1,1,Active Shallow Crust,0.0,89.98897,0.0,03/04/5684 +5.22384,43.32953,1061,12,16,1,26,24,4.75,5.0,fr,13922,21,592464,1,1,Active Shallow Crust,0.0,89.99078,0.0,12/16/1061 +4.97118,48.11717,4235,4,25,3,6,52,3.65,15.0,fr,13923,84,592816,1,1,Active Shallow Crust,240.0022,58.01204,0.0,04/25/4235 +4.97118,48.11717,8312,1,28,10,49,50,3.65,15.0,fr,13924,166,592822,1,1,Active Shallow Crust,128.9004,89.96355,0.0,01/28/8312 +4.97118,48.11717,873,4,28,8,26,30,3.95,15.0,fr,13925,17,592849,1,2,Active Shallow Crust,0.0,89.9915,0.0,04/28/0873 +4.97118,48.11717,8484,1,15,23,52,47,3.95,15.0,fr,13926,169,592849,1,2,Active Shallow Crust,0.0,89.9915,0.0,01/15/8484 +4.97118,48.11717,2336,5,13,11,9,41,3.95,5.0,fr,13927,46,592851,1,1,Active Shallow Crust,240.0193,58.00564,0.0,05/13/2336 +4.97118,48.11717,560,11,10,20,40,4,4.25,5.0,fr,13928,11,592884,1,2,Active Shallow Crust,0.0,89.99097,0.0,11/10/0560 +4.97118,48.11717,1882,11,10,16,11,40,4.25,5.0,fr,13929,37,592884,1,2,Active Shallow Crust,0.0,89.99097,0.0,11/10/1882 +3.38884,51.05437,654,8,5,1,16,27,3.55,5.0,fr,13930,13,593283,1,1,Active Shallow Crust,240.0128,57.9976,0.0,08/05/0654 +3.38884,51.05437,9133,8,4,13,7,8,3.65,5.0,fr,13931,182,593298,1,1,Active Shallow Crust,359.9986,89.99142,-90.0,08/04/9133 +3.38884,51.05437,7344,5,19,19,55,44,3.65,15.0,fr,13932,146,593302,1,1,Active Shallow Crust,128.8999,89.96336,0.0,05/19/7344 +3.38884,51.05437,6468,10,30,8,12,47,3.75,5.0,fr,13933,129,593304,1,1,Active Shallow Crust,0.0,89.98993,0.0,10/30/6468 +3.38884,51.05437,3905,2,15,3,55,24,3.85,5.0,fr,13934,78,593316,1,1,Active Shallow Crust,0.0,89.99103,0.0,02/15/3905 +3.38884,51.05437,2363,12,9,4,20,30,3.85,5.0,fr,13935,47,593322,1,1,Active Shallow Crust,0.0,89.99092,-90.0,12/09/2363 +3.38884,51.05437,7082,6,16,16,59,1,4.05,5.0,fr,13936,141,593340,1,1,Active Shallow Crust,0.0,89.9893,0.0,06/16/7082 +3.38884,51.05437,7938,1,28,12,8,13,4.05,5.0,fr,13937,158,593349,1,1,Active Shallow Crust,128.8899,89.99376,0.0,01/28/7938 +3.38884,51.05437,2274,7,31,20,36,59,4.05,15.0,fr,13938,45,593350,1,1,Active Shallow Crust,128.8899,89.99376,0.0,07/31/2274 +3.38884,51.05437,7608,11,4,13,13,36,4.95,5.0,fr,13939,152,593448,1,1,Active Shallow Crust,0.0,89.98988,0.0,11/04/7608 +-0.61858,45.97468,3716,4,25,17,43,8,3.55,5.0,fr,13940,74,593760,1,1,Active Shallow Crust,0.0,89.99036,0.0,04/25/3716 +-0.61858,45.97468,6661,5,11,8,21,29,3.55,15.0,fr,13941,133,593770,1,1,Active Shallow Crust,128.8964,89.99343,0.0,05/11/6661 +-0.61858,45.97468,6087,6,17,9,8,20,3.65,5.0,fr,13942,121,593772,1,2,Active Shallow Crust,0.0,89.98985,0.0,06/17/6087 +-0.61858,45.97468,6869,11,21,11,5,27,3.65,5.0,fr,13943,137,593772,1,2,Active Shallow Crust,0.0,89.98985,0.0,11/21/6869 +-0.61858,45.97468,878,1,1,8,28,33,3.65,27.5,fr,13944,17,593783,1,1,Active Shallow Crust,128.9005,89.96352,0.0,01/01/0878 +-0.61858,45.97468,9108,9,9,20,57,41,3.75,5.0,fr,13945,182,593784,1,2,Active Shallow Crust,0.0,89.99026,0.0,09/09/9108 +-0.61858,45.97468,9578,10,12,23,43,34,3.75,5.0,fr,13946,191,593784,1,2,Active Shallow Crust,0.0,89.99026,0.0,10/12/9578 +-0.61858,45.97468,1969,4,23,11,53,39,3.85,5.0,fr,13947,39,593805,1,1,Active Shallow Crust,128.8956,89.9938,0.0,04/23/1969 +-0.61858,45.97468,1796,8,12,9,15,9,4.35,15.0,fr,13948,35,593863,1,1,Active Shallow Crust,0.0,89.99012,-90.0,08/12/1796 +-0.61858,45.97468,9280,5,10,5,33,35,4.45,15.0,fr,13949,185,593869,1,1,Active Shallow Crust,0.0,89.99005,0.0,05/10/9280 +-0.61858,45.97468,7410,11,9,23,43,12,4.55,5.0,fr,13950,148,593880,1,1,Active Shallow Crust,0.0,89.99003,0.0,11/09/7410 +-0.61858,45.97468,6495,8,21,8,28,33,4.75,15.0,fr,13951,129,593914,1,1,Active Shallow Crust,128.8889,89.98808,0.0,08/21/6495 +-0.61858,45.97468,8170,1,26,19,20,25,5.35,5.0,fr,13952,163,593985,1,1,Active Shallow Crust,128.8834,89.98806,0.0,01/26/8170 +8.78375,47.67876,3198,8,30,13,1,17,3.55,5.0,fr,13953,63,594240,1,11,Active Shallow Crust,0.0,89.98642,0.0,08/30/3198 +8.78375,47.67876,3631,11,25,13,7,8,3.55,5.0,fr,13954,72,594240,1,11,Active Shallow Crust,0.0,89.98642,0.0,11/25/3631 +8.78375,47.67876,89,11,20,12,35,58,3.55,5.0,fr,13955,1,594240,1,11,Active Shallow Crust,0.0,89.98642,0.0,11/20/0089 +8.78375,47.67876,8695,4,16,3,2,25,3.55,5.0,fr,13956,173,594240,1,11,Active Shallow Crust,0.0,89.98642,0.0,04/16/8695 +8.78375,47.67876,8508,2,13,6,56,1,3.55,5.0,fr,13957,170,594240,1,11,Active Shallow Crust,0.0,89.98642,0.0,02/13/8508 +8.78375,47.67876,7485,11,3,4,48,47,3.55,5.0,fr,13958,149,594240,1,11,Active Shallow Crust,0.0,89.98642,0.0,11/03/7485 +8.78375,47.67876,7697,6,18,3,48,58,3.55,5.0,fr,13959,153,594240,1,11,Active Shallow Crust,0.0,89.98642,0.0,06/18/7697 +8.78375,47.67876,7485,2,4,17,40,47,3.55,5.0,fr,13960,149,594240,1,11,Active Shallow Crust,0.0,89.98642,0.0,02/04/7485 +8.78375,47.67876,6207,5,19,1,36,9,3.55,5.0,fr,13961,124,594240,1,11,Active Shallow Crust,0.0,89.98642,0.0,05/19/6207 +8.78375,47.67876,4357,2,25,19,27,4,3.55,5.0,fr,13962,87,594240,1,11,Active Shallow Crust,0.0,89.98642,0.0,02/25/4357 +8.78375,47.67876,7423,3,13,9,49,27,3.55,5.0,fr,13963,148,594240,1,11,Active Shallow Crust,0.0,89.98642,0.0,03/13/7423 +8.78375,47.67876,3073,11,28,23,13,15,3.55,15.0,fr,13964,61,594241,1,1,Active Shallow Crust,0.0,89.98642,0.0,11/28/3073 +8.78375,47.67876,552,6,28,7,22,30,3.55,27.5,fr,13965,11,594242,1,1,Active Shallow Crust,0.0,89.98642,0.0,06/28/0552 +8.78375,47.67876,1328,1,13,22,47,40,3.55,15.0,fr,13966,26,594244,1,2,Active Shallow Crust,240.01,57.99819,0.0,01/13/1328 +8.78375,47.67876,7464,6,12,19,1,38,3.55,15.0,fr,13967,149,594244,1,2,Active Shallow Crust,240.01,57.99819,0.0,06/12/7464 +8.78375,47.67876,1349,3,24,22,39,23,3.55,5.0,fr,13968,26,594246,1,1,Active Shallow Crust,0.0,89.98627,-90.0,03/24/1349 +8.78375,47.67876,3010,7,28,8,20,49,3.55,15.0,fr,13969,60,594247,1,1,Active Shallow Crust,0.0,89.98627,-90.0,07/28/3010 +8.78375,47.67876,4671,2,1,23,28,52,3.55,5.0,fr,13970,93,594249,1,1,Active Shallow Crust,128.8959,89.99321,0.0,02/01/4671 +8.78375,47.67876,4572,6,2,20,32,9,3.55,27.5,fr,13971,91,594251,1,1,Active Shallow Crust,128.8959,89.99321,0.0,06/02/4572 +8.78375,47.67876,6936,8,3,2,42,57,3.65,5.0,fr,13972,138,594252,1,5,Active Shallow Crust,0.0,89.9879,0.0,08/03/6936 +8.78375,47.67876,3420,1,22,17,45,36,3.65,5.0,fr,13973,68,594252,1,5,Active Shallow Crust,0.0,89.9879,0.0,01/22/3420 +8.78375,47.67876,3504,11,21,19,47,44,3.65,5.0,fr,13974,70,594252,1,5,Active Shallow Crust,0.0,89.9879,0.0,11/21/3504 +8.78375,47.67876,7597,11,27,12,24,23,3.65,5.0,fr,13975,151,594252,1,5,Active Shallow Crust,0.0,89.9879,0.0,11/27/7597 +8.78375,47.67876,4879,9,21,10,4,36,3.65,5.0,fr,13976,97,594252,1,5,Active Shallow Crust,0.0,89.9879,0.0,09/21/4879 +8.78375,47.67876,8398,5,22,19,29,47,3.65,15.0,fr,13977,167,594253,1,3,Active Shallow Crust,0.0,89.9879,0.0,05/22/8398 +8.78375,47.67876,2060,5,13,9,39,45,3.65,15.0,fr,13978,41,594253,1,3,Active Shallow Crust,0.0,89.9879,0.0,05/13/2060 +8.78375,47.67876,3400,12,12,20,41,25,3.65,15.0,fr,13979,67,594253,1,3,Active Shallow Crust,0.0,89.9879,0.0,12/12/3400 +8.78375,47.67876,7097,5,16,12,27,19,3.65,27.5,fr,13980,141,594254,1,1,Active Shallow Crust,0.0,89.9879,0.0,05/16/7097 +8.78375,47.67876,7611,6,14,2,48,12,3.65,5.0,fr,13981,152,594255,1,3,Active Shallow Crust,240.0029,58.01245,0.0,06/14/7611 +8.78375,47.67876,6944,2,24,21,50,21,3.65,5.0,fr,13982,138,594255,1,3,Active Shallow Crust,240.0029,58.01245,0.0,02/24/6944 +8.78375,47.67876,4879,6,14,23,23,20,3.65,5.0,fr,13983,97,594255,1,3,Active Shallow Crust,240.0029,58.01245,0.0,06/14/4879 +8.78375,47.67876,2709,11,17,2,16,29,3.65,15.0,fr,13984,54,594256,1,2,Active Shallow Crust,240.0029,58.01245,0.0,11/17/2709 +8.78375,47.67876,1021,4,5,19,58,44,3.65,15.0,fr,13985,20,594256,1,2,Active Shallow Crust,240.0029,58.01245,0.0,04/05/1021 +8.78375,47.67876,4045,8,6,19,0,3,3.65,5.0,fr,13986,80,594258,1,2,Active Shallow Crust,0.0,89.98775,-90.0,08/06/4045 +8.78375,47.67876,7652,11,27,16,53,7,3.65,5.0,fr,13987,153,594258,1,2,Active Shallow Crust,0.0,89.98775,-90.0,11/27/7652 +8.78375,47.67876,88,9,10,20,58,21,3.75,5.0,fr,13988,1,594264,1,7,Active Shallow Crust,0.0,89.98921,0.0,09/10/0088 +8.78375,47.67876,9569,9,27,11,41,46,3.75,5.0,fr,13989,191,594264,1,7,Active Shallow Crust,0.0,89.98921,0.0,09/27/9569 +8.78375,47.67876,449,8,22,12,14,48,3.75,5.0,fr,13990,8,594264,1,7,Active Shallow Crust,0.0,89.98921,0.0,08/22/0449 +8.78375,47.67876,8893,3,9,15,59,56,3.75,5.0,fr,13991,177,594264,1,7,Active Shallow Crust,0.0,89.98921,0.0,03/09/8893 +8.78375,47.67876,8515,10,26,18,47,48,3.75,5.0,fr,13992,170,594264,1,7,Active Shallow Crust,0.0,89.98921,0.0,10/26/8515 +8.78375,47.67876,2612,11,7,6,37,12,3.75,5.0,fr,13993,52,594264,1,7,Active Shallow Crust,0.0,89.98921,0.0,11/07/2612 +8.78375,47.67876,6102,11,4,6,1,35,3.75,5.0,fr,13994,122,594264,1,7,Active Shallow Crust,0.0,89.98921,0.0,11/04/6102 +8.78375,47.67876,4628,4,23,20,0,32,3.75,15.0,fr,13995,92,594265,1,4,Active Shallow Crust,0.0,89.98921,0.0,04/23/4628 +8.78375,47.67876,6513,1,7,20,7,13,3.75,15.0,fr,13996,130,594265,1,4,Active Shallow Crust,0.0,89.98921,0.0,01/07/6513 +8.78375,47.67876,4946,9,11,16,35,25,3.75,15.0,fr,13997,98,594265,1,4,Active Shallow Crust,0.0,89.98921,0.0,09/11/4946 +8.78375,47.67876,5502,5,27,14,10,10,3.75,15.0,fr,13998,110,594265,1,4,Active Shallow Crust,0.0,89.98921,0.0,05/27/5502 +8.78375,47.67876,9586,6,6,3,41,6,3.75,5.0,fr,13999,191,594270,1,1,Active Shallow Crust,0.0,89.98909,-90.0,06/06/9586 +8.78375,47.67876,8710,3,16,12,51,10,3.75,15.0,fr,14000,174,594271,1,1,Active Shallow Crust,0.0,89.98909,-90.0,03/16/8710 +8.78375,47.67876,1205,11,16,16,54,2,3.75,15.0,fr,14001,24,594274,1,1,Active Shallow Crust,128.895,89.96751,0.0,11/16/1205 +8.78375,47.67876,9046,10,24,0,40,17,3.85,5.0,fr,14002,180,594276,1,1,Active Shallow Crust,0.0,89.99039,0.0,10/24/9046 +8.78375,47.67876,1807,8,24,7,43,3,3.85,15.0,fr,14003,36,594277,1,1,Active Shallow Crust,0.0,89.99039,0.0,08/24/1807 +8.78375,47.67876,561,7,29,17,45,9,3.85,5.0,fr,14004,11,594279,1,4,Active Shallow Crust,240.0093,57.99858,0.0,07/29/0561 +8.78375,47.67876,8806,1,13,15,36,30,3.85,5.0,fr,14005,176,594279,1,4,Active Shallow Crust,240.0093,57.99858,0.0,01/13/8806 +8.78375,47.67876,1863,10,26,15,2,11,3.85,5.0,fr,14006,37,594279,1,4,Active Shallow Crust,240.0093,57.99858,0.0,10/26/1863 +8.78375,47.67876,346,12,12,8,10,55,3.85,5.0,fr,14007,6,594279,1,4,Active Shallow Crust,240.0093,57.99858,0.0,12/12/0346 +8.78375,47.67876,5447,5,29,16,59,51,3.95,5.0,fr,14008,108,594288,1,1,Active Shallow Crust,0.0,89.99143,0.0,05/29/5447 +8.78375,47.67876,6877,10,22,8,9,58,3.95,15.0,fr,14009,137,594289,1,1,Active Shallow Crust,0.0,89.99143,0.0,10/22/6877 +8.78375,47.67876,9232,9,27,16,11,33,3.95,27.5,fr,14010,184,594290,1,1,Active Shallow Crust,0.0,89.99143,0.0,09/27/9232 +8.78375,47.67876,4925,12,2,9,3,20,4.05,15.0,fr,14011,98,594301,1,1,Active Shallow Crust,0.0,89.99236,0.0,12/02/4925 +8.78375,47.67876,234,11,21,14,0,15,4.05,5.0,fr,14012,4,594303,1,1,Active Shallow Crust,240.0067,58.00599,0.0,11/21/0234 +8.78375,47.67876,4594,12,13,7,39,27,4.05,15.0,fr,14013,91,594304,1,1,Active Shallow Crust,240.0067,58.00596,0.0,12/13/4594 +8.78375,47.67876,4748,6,1,16,38,28,4.05,5.0,fr,14014,94,594309,1,1,Active Shallow Crust,128.8919,89.99236,0.0,06/01/4748 +8.78375,47.67876,1044,8,10,7,15,36,4.15,5.0,fr,14015,20,594312,1,2,Active Shallow Crust,0.0,89.99319,0.0,08/10/1044 +8.78375,47.67876,1848,10,26,16,51,37,4.15,5.0,fr,14016,36,594312,1,2,Active Shallow Crust,0.0,89.99319,0.0,10/26/1848 +8.78375,47.67876,2182,1,30,12,34,5,4.15,5.0,fr,14017,43,594315,1,1,Active Shallow Crust,240.0078,57.99761,0.0,01/30/2182 +8.78375,47.67876,4158,10,28,7,24,58,4.25,27.5,fr,14018,83,594329,1,1,Active Shallow Crust,240.0082,57.99472,0.0,10/28/4158 +8.78375,47.67876,6649,11,29,1,27,26,4.25,5.0,fr,14019,132,594333,1,1,Active Shallow Crust,128.8957,89.98099,0.0,11/29/6649 +8.78375,47.67876,7094,7,10,20,59,19,4.35,5.0,fr,14020,141,594336,1,5,Active Shallow Crust,0.0,89.98919,0.0,07/10/7094 +8.78375,47.67876,4703,3,30,14,42,21,4.35,5.0,fr,14021,94,594336,1,5,Active Shallow Crust,0.0,89.98919,0.0,03/30/4703 +8.78375,47.67876,5119,9,28,22,6,1,4.35,5.0,fr,14022,102,594336,1,5,Active Shallow Crust,0.0,89.98919,0.0,09/28/5119 +8.78375,47.67876,6640,6,29,23,15,17,4.35,5.0,fr,14023,132,594336,1,5,Active Shallow Crust,0.0,89.98919,0.0,06/29/6640 +8.78375,47.67876,8075,5,31,5,16,20,4.35,5.0,fr,14024,161,594336,1,5,Active Shallow Crust,0.0,89.98919,0.0,05/31/8075 +8.78375,47.67876,3117,8,11,7,52,5,4.35,5.0,fr,14025,62,594339,1,1,Active Shallow Crust,240.0085,57.99615,0.0,08/11/3117 +8.78375,47.67876,147,8,9,2,59,22,4.35,15.0,fr,14026,2,594340,1,1,Active Shallow Crust,240.0085,57.99615,0.0,08/09/0147 +8.78375,47.67876,614,12,4,15,28,33,4.45,5.0,fr,14027,12,594348,1,1,Active Shallow Crust,0.0,89.99036,0.0,12/04/0614 +8.78375,47.67876,861,12,17,22,10,13,4.45,5.0,fr,14028,17,594354,1,1,Active Shallow Crust,0.0,89.99025,-90.0,12/17/0861 +8.78375,47.67876,4680,3,19,22,17,58,4.55,5.0,fr,14029,93,594360,1,1,Active Shallow Crust,0.0,89.99141,0.0,03/19/4680 +8.78375,47.67876,1971,2,10,1,57,3,4.55,15.0,fr,14030,39,594361,1,2,Active Shallow Crust,0.0,89.99141,0.0,02/10/1971 +8.78375,47.67876,6321,2,13,9,11,15,4.55,15.0,fr,14031,126,594361,1,2,Active Shallow Crust,0.0,89.99141,0.0,02/13/6321 +8.78375,47.67876,1693,5,31,2,19,38,4.55,5.0,fr,14032,33,594363,1,1,Active Shallow Crust,240.0094,57.99749,0.0,05/31/1693 +8.78375,47.67876,9137,10,2,23,10,59,4.55,15.0,fr,14033,182,594367,1,1,Active Shallow Crust,0.0,89.99131,-90.0,10/02/9137 +8.78375,47.67876,224,12,9,10,0,20,4.65,5.0,fr,14034,4,594375,1,1,Active Shallow Crust,240.0111,57.99478,0.0,12/09/0224 +8.78375,47.67876,4592,7,7,14,27,18,4.65,15.0,fr,14035,91,594376,1,1,Active Shallow Crust,240.0111,57.99478,0.0,07/07/4592 +8.78375,47.67876,9052,8,26,1,54,28,4.65,5.0,fr,14036,181,594378,1,1,Active Shallow Crust,0.0,89.98839,-90.0,08/26/9052 +8.78375,47.67876,9078,10,10,8,45,24,4.95,15.0,fr,14037,181,594409,1,1,Active Shallow Crust,0.0,89.98916,0.0,10/10/9078 +8.78375,47.67876,2817,8,12,18,17,56,5.35,5.0,fr,14038,56,594456,1,1,Active Shallow Crust,0.0,89.98974,0.0,08/12/2817 +8.78375,47.67876,6916,12,31,16,2,48,5.35,5.0,fr,14039,138,594459,1,1,Active Shallow Crust,240.0262,57.99792,0.0,12/31/6916 +8.78375,47.67876,3099,8,22,0,13,39,5.55,5.0,fr,14040,61,594483,1,1,Active Shallow Crust,240.034,57.9996,0.0,08/22/3099 +8.783747,47.67876,6783,10,20,22,38,18,6.25,6.744814,fr,14041,135,594573,1,1,Active Shallow Crust,128.8475,89.99039,0.0,10/20/6783 +8.783757,47.67876,9483,12,11,7,24,12,6.45,8.491219,fr,14042,189,594588,1,1,Active Shallow Crust,0.0,89.99011,0.0,12/11/9483 +8.783747,47.67876,6304,11,4,0,34,21,6.45,26.50878,fr,14043,126,594590,1,1,Active Shallow Crust,0.0,89.99011,0.0,11/04/6304 +-2.55732,49.72439,4618,3,12,10,29,37,3.75,15.0,fr,14044,92,594745,1,1,Active Shallow Crust,0.0,89.98965,0.0,03/12/4618 +-2.55732,49.72439,9586,11,12,15,39,27,4.65,15.0,fr,14045,191,594853,1,1,Active Shallow Crust,0.0,89.98989,0.0,11/12/9586 +3.78739,45.50268,7855,2,23,22,19,53,3.55,5.0,fr,14046,157,595200,1,1,Active Shallow Crust,0.0,89.9894,0.0,02/23/7855 +3.78739,45.50268,1264,4,8,6,30,8,3.65,15.0,fr,14047,25,595213,1,1,Active Shallow Crust,0.0,89.99055,0.0,04/08/1264 +3.78739,45.50268,2444,1,20,14,57,16,3.65,5.0,fr,14048,48,595215,1,1,Active Shallow Crust,240.0013,58.01307,0.0,01/20/2444 +3.78739,45.50268,6354,3,14,6,38,33,3.75,5.0,fr,14049,127,595224,1,1,Active Shallow Crust,0.0,89.98877,0.0,03/14/6354 +3.78739,45.50268,2201,11,7,5,10,4,3.75,5.0,fr,14050,44,595233,1,1,Active Shallow Crust,128.8961,89.96748,0.0,11/07/2201 +3.78739,45.50268,3749,9,3,3,1,6,3.85,5.0,fr,14051,74,595236,1,1,Active Shallow Crust,0.0,89.98999,0.0,09/03/3749 +3.78739,45.50268,8720,7,28,3,38,30,3.85,15.0,fr,14052,174,595237,1,1,Active Shallow Crust,0.0,89.98999,0.0,07/28/8720 +3.78739,45.50268,940,7,28,9,27,40,3.95,5.0,fr,14053,18,595248,1,1,Active Shallow Crust,0.0,89.99108,0.0,07/28/0940 +3.78739,45.50268,6322,1,25,21,38,53,4.15,15.0,fr,14054,126,595273,1,1,Active Shallow Crust,0.0,89.98937,0.0,01/25/6322 +3.78739,45.50268,8563,7,28,23,2,28,4.25,5.0,fr,14055,171,595290,1,1,Active Shallow Crust,0.0,89.99042,-90.0,07/28/8563 +3.78739,45.50268,1530,10,19,23,56,6,4.45,15.0,fr,14056,30,595309,1,1,Active Shallow Crust,0.0,89.98997,0.0,10/19/1530 +3.78739,45.50268,9807,7,14,18,19,7,4.55,5.0,fr,14057,196,595320,1,1,Active Shallow Crust,0.0,89.98994,0.0,07/14/9807 +3.78739,45.50268,4385,4,19,9,9,49,5.15,15.0,fr,14058,87,595393,1,1,Active Shallow Crust,0.0,89.98991,0.0,04/19/4385 +1.54372,46.66776,8370,7,10,11,27,33,3.55,5.0,fr,14059,167,595680,1,2,Active Shallow Crust,0.0,89.98962,0.0,07/10/8370 +1.54372,46.66776,9324,8,12,21,54,38,3.55,5.0,fr,14060,186,595680,1,2,Active Shallow Crust,0.0,89.98962,0.0,08/12/9324 +1.54372,46.66776,607,3,29,19,48,16,3.55,15.0,fr,14061,12,595681,1,1,Active Shallow Crust,0.0,89.98962,0.0,03/29/0607 +1.54372,46.66776,1443,10,18,8,5,47,3.55,15.0,fr,14062,28,595684,1,1,Active Shallow Crust,240.0123,57.99806,0.0,10/18/1443 +1.54372,46.66776,8104,2,19,6,44,47,3.55,15.0,fr,14063,162,595690,1,1,Active Shallow Crust,128.8961,89.99394,0.0,02/19/8104 +1.54372,46.66776,6164,7,24,23,44,3,3.65,27.5,fr,14064,123,595694,1,2,Active Shallow Crust,0.0,89.99075,0.0,07/24/6164 +1.54372,46.66776,6789,5,18,0,35,45,3.65,27.5,fr,14065,135,595694,1,2,Active Shallow Crust,0.0,89.99075,0.0,05/18/6789 +1.54372,46.66776,3238,5,13,19,2,23,3.65,5.0,fr,14066,64,595698,1,1,Active Shallow Crust,0.0,89.99064,-90.0,05/13/3238 +1.54372,46.66776,4431,5,17,5,20,57,3.75,5.0,fr,14067,88,595704,1,2,Active Shallow Crust,0.0,89.99038,0.0,05/17/4431 +1.54372,46.66776,1464,7,21,21,22,30,3.75,5.0,fr,14068,29,595704,1,2,Active Shallow Crust,0.0,89.99038,0.0,07/21/1464 +1.54372,46.66776,119,9,24,15,19,11,3.75,15.0,fr,14069,2,595705,1,1,Active Shallow Crust,0.0,89.99038,0.0,09/24/0119 +1.54372,46.66776,3816,11,6,15,5,56,3.75,15.0,fr,14070,76,595711,1,1,Active Shallow Crust,0.0,89.99027,-90.0,11/06/3816 +1.54372,46.66776,2549,8,30,1,51,23,3.95,5.0,fr,14071,50,595728,1,1,Active Shallow Crust,0.0,89.99017,0.0,08/30/2549 +1.54372,46.66776,4774,6,16,22,56,51,3.95,15.0,fr,14072,95,595729,1,1,Active Shallow Crust,0.0,89.99017,0.0,06/16/4774 +1.54372,46.66776,6286,7,18,2,56,58,3.95,5.0,fr,14073,125,595734,1,1,Active Shallow Crust,0.0,89.99006,-90.0,07/18/6286 +1.54372,46.66776,6814,9,28,21,51,8,4.05,5.0,fr,14074,136,595740,1,1,Active Shallow Crust,0.0,89.99027,0.0,09/28/6814 +1.54372,46.66776,1660,11,9,18,8,4,4.05,5.0,fr,14075,33,595746,1,1,Active Shallow Crust,0.0,89.99016,-90.0,11/09/1660 +1.54372,46.66776,390,6,30,5,40,32,4.05,27.5,fr,14076,7,595748,1,1,Active Shallow Crust,0.0,89.99016,-90.0,06/30/0390 +1.54372,46.66776,8449,1,13,9,10,48,4.15,5.0,fr,14077,168,595752,1,1,Active Shallow Crust,0.0,89.98959,0.0,01/13/8449 +1.54372,46.66776,1151,4,4,7,42,32,4.15,15.0,fr,14078,23,595753,1,1,Active Shallow Crust,0.0,89.98959,0.0,04/04/1151 +1.54372,46.66776,2010,8,13,20,3,40,5.05,15.0,fr,14079,40,595861,1,1,Active Shallow Crust,359.9998,89.99015,0.0,08/13/2010 +0.20031,50.42716,7581,7,3,0,5,47,3.55,15.0,fr,14080,151,596641,1,1,Active Shallow Crust,0.0,89.98996,0.0,07/03/7581 +0.20031,50.42716,3112,3,4,2,49,54,3.55,5.0,fr,14081,62,596649,1,1,Active Shallow Crust,128.8959,89.99368,0.0,03/04/3112 +0.20031,50.42716,6264,10,19,0,5,44,3.65,5.0,fr,14082,125,596652,1,2,Active Shallow Crust,0.0,89.98998,0.0,10/19/6264 +0.20031,50.42716,9382,3,24,7,42,20,3.65,5.0,fr,14083,187,596652,1,2,Active Shallow Crust,0.0,89.98998,0.0,03/24/9382 +0.20031,50.42716,6341,11,1,6,55,59,3.75,15.0,fr,14084,126,596665,1,1,Active Shallow Crust,0.0,89.98995,0.0,11/01/6341 +0.20031,50.42716,4782,3,1,10,16,4,3.75,27.5,fr,14085,95,596666,1,1,Active Shallow Crust,0.0,89.98995,0.0,03/01/4782 +0.20031,50.42716,8436,12,9,9,31,6,4.35,5.0,fr,14086,168,596736,1,1,Active Shallow Crust,0.0,89.99001,0.0,12/09/8436 +0.20031,50.42716,8448,1,23,19,23,40,4.65,5.0,fr,14087,168,596778,1,1,Active Shallow Crust,0.0,89.98998,-90.0,01/23/8448 +-4.62319,48.59692,2019,10,25,10,10,59,3.55,15.0,fr,14088,40,597124,1,1,Active Shallow Crust,240.0122,57.99777,0.0,10/25/2019 +-4.62319,48.59692,1243,1,3,19,42,27,3.55,5.0,fr,14089,24,597126,1,1,Active Shallow Crust,0.0,89.99326,-90.0,01/03/1243 +-4.62319,48.59692,4917,6,3,16,25,7,3.65,5.0,fr,14090,98,597132,1,3,Active Shallow Crust,0.0,89.98811,0.0,06/03/4917 +-4.62319,48.59692,4215,1,30,13,17,35,3.65,5.0,fr,14091,84,597132,1,3,Active Shallow Crust,0.0,89.98811,0.0,01/30/4215 +-4.62319,48.59692,3041,5,18,3,29,13,3.65,5.0,fr,14092,60,597132,1,3,Active Shallow Crust,0.0,89.98811,0.0,05/18/3041 +-4.62319,48.59692,8520,4,2,0,42,3,3.65,15.0,fr,14093,170,597136,1,1,Active Shallow Crust,240.0015,58.01316,0.0,04/02/8520 +-4.62319,48.59692,8514,5,11,20,31,23,3.75,5.0,fr,14094,170,597144,1,1,Active Shallow Crust,0.0,89.9894,0.0,05/11/8514 +-4.62319,48.59692,9300,7,9,4,56,35,3.75,5.0,fr,14095,185,597147,1,2,Active Shallow Crust,240.0084,58.0181,0.0,07/09/9300 +-4.62319,48.59692,1649,6,2,1,6,7,3.75,5.0,fr,14096,32,597147,1,2,Active Shallow Crust,240.0084,58.0181,0.0,06/02/1649 +-4.62319,48.59692,2056,12,20,9,4,33,3.85,5.0,fr,14097,41,597156,1,1,Active Shallow Crust,0.0,89.99055,0.0,12/20/2056 +-4.62319,48.59692,2023,9,27,17,57,32,3.85,15.0,fr,14098,40,597157,1,1,Active Shallow Crust,0.0,89.99055,0.0,09/27/2023 +-4.62319,48.59692,2703,6,4,8,5,22,4.25,27.5,fr,14099,54,597206,1,1,Active Shallow Crust,0.0,89.99107,0.0,06/04/2703 +-4.62319,48.59692,6886,9,9,17,13,15,4.35,5.0,fr,14100,137,597216,1,1,Active Shallow Crust,0.0,89.98938,0.0,09/09/6886 +-4.62319,48.59692,2270,4,14,4,19,19,4.95,5.0,fr,14101,45,597288,1,1,Active Shallow Crust,0.0,89.98935,0.0,04/14/2270 +-4.62319,48.59692,5937,1,19,11,18,17,5.25,5.0,fr,14102,118,597327,1,1,Active Shallow Crust,240.027,58.00055,0.0,01/19/5937 +-2.48389,49.46275,8702,1,16,15,32,35,3.55,5.0,fr,14103,174,597600,1,1,Active Shallow Crust,0.0,89.99017,0.0,01/16/8702 +-2.48389,49.46275,4656,10,26,23,38,40,3.65,5.0,fr,14104,93,597612,1,1,Active Shallow Crust,0.0,89.99124,0.0,10/26/4656 +-2.48389,49.46275,1744,7,14,1,45,19,3.65,5.0,fr,14105,34,597618,1,1,Active Shallow Crust,0.0,89.99113,-90.0,07/14/1744 +-2.48389,49.46275,3745,3,15,1,11,13,4.15,5.0,fr,14106,74,597675,1,1,Active Shallow Crust,240.0087,57.9976,0.0,03/15/3745 +-2.48389,49.46275,1116,2,18,20,18,16,4.15,15.0,fr,14107,22,597682,1,1,Active Shallow Crust,128.897,89.99343,0.0,02/18/1116 +-2.48389,49.46275,6982,6,28,15,48,6,4.25,15.0,fr,14108,139,597688,1,1,Active Shallow Crust,240.0083,57.99414,0.0,06/28/6982 +7.83919,48.72589,1485,6,15,3,55,16,3.55,5.0,fr,14109,29,598080,1,1,Active Shallow Crust,0.0,89.98669,0.0,06/15/1485 +7.83919,48.72589,4206,7,19,2,38,36,3.55,15.0,fr,14110,84,598081,1,1,Active Shallow Crust,0.0,89.98669,0.0,07/19/4206 +7.83919,48.72589,3435,5,30,19,49,0,3.55,5.0,fr,14111,68,598083,1,1,Active Shallow Crust,240.012,57.99871,0.0,05/30/3435 +7.83919,48.72589,6591,8,9,1,43,46,3.65,5.0,fr,14112,131,598092,1,1,Active Shallow Crust,0.0,89.98814,0.0,08/09/6591 +7.83919,48.72589,9068,7,21,1,14,40,3.65,15.0,fr,14113,181,598093,1,1,Active Shallow Crust,0.0,89.98814,0.0,07/21/9068 +7.83919,48.72589,711,2,21,19,8,59,3.65,5.0,fr,14114,14,598095,1,1,Active Shallow Crust,240.0019,58.01327,0.0,02/21/0711 +7.83919,48.72589,5950,1,16,11,40,28,3.65,15.0,fr,14115,118,598099,1,1,Active Shallow Crust,0.0,89.98801,-90.0,01/16/5950 +7.83919,48.72589,2178,9,23,12,16,40,3.75,5.0,fr,14116,43,598104,1,2,Active Shallow Crust,0.0,89.98943,0.0,09/23/2178 +7.83919,48.72589,37,5,30,18,7,18,3.75,5.0,fr,14117,0,598104,1,2,Active Shallow Crust,0.0,89.98943,0.0,05/30/0037 +7.83919,48.72589,8952,12,17,22,2,32,3.75,15.0,fr,14118,179,598105,1,1,Active Shallow Crust,0.0,89.98943,0.0,12/17/8952 +7.83919,48.72589,7291,11,10,0,51,15,3.75,15.0,fr,14119,145,598108,1,1,Active Shallow Crust,240.0098,58.01662,0.0,11/10/7291 +7.83919,48.72589,7242,5,5,6,13,38,3.95,5.0,fr,14120,144,598128,1,1,Active Shallow Crust,0.0,89.99161,0.0,05/05/7242 +7.83919,48.72589,6180,12,9,18,10,3,3.95,15.0,fr,14121,123,598132,1,1,Active Shallow Crust,240.0199,58.00485,0.0,12/09/6180 +7.83919,48.72589,8945,10,14,12,47,34,4.05,5.0,fr,14122,178,598140,1,1,Active Shallow Crust,0.0,89.98878,0.0,10/14/8945 +7.83919,48.72589,3186,4,30,3,11,4,4.05,5.0,fr,14123,63,598146,1,1,Active Shallow Crust,0.0,89.98865,-90.0,04/30/3186 +7.83919,48.72589,3448,2,22,15,52,15,4.15,5.0,fr,14124,68,598161,1,2,Active Shallow Crust,128.8982,89.99333,0.0,02/22/3448 +7.83919,48.72589,6940,5,28,17,50,42,4.15,5.0,fr,14125,138,598161,1,2,Active Shallow Crust,128.8982,89.99333,0.0,05/28/6940 +7.83919,48.72589,1897,2,24,14,3,27,4.25,5.0,fr,14126,37,598167,1,1,Active Shallow Crust,240.0085,57.99394,0.0,02/24/1897 +7.83919,48.72589,2923,12,10,10,49,1,4.35,15.0,fr,14127,58,598177,1,1,Active Shallow Crust,0.0,89.9894,0.0,12/10/2923 +7.83919,48.72589,1120,7,24,4,16,33,4.45,5.0,fr,14128,22,598188,1,1,Active Shallow Crust,0.0,89.99055,0.0,07/24/1120 +7.83919,48.72589,9394,11,1,23,50,51,5.15,5.0,fr,14129,187,598272,1,1,Active Shallow Crust,0.0,89.99051,0.0,11/01/9394 +7.83919,48.72589,9151,9,24,13,28,13,5.35,5.0,fr,14130,183,598296,1,1,Active Shallow Crust,0.0,89.98994,0.0,09/24/9151 +1.96344,47.75259,9814,9,22,10,45,58,3.55,27.5,fr,14131,196,598565,1,1,Active Shallow Crust,240.0122,57.99786,0.0,09/22/9814 +1.96344,47.75259,4740,11,20,17,22,27,3.65,5.0,fr,14132,94,598572,1,1,Active Shallow Crust,0.0,89.98943,0.0,11/20/4740 +1.96344,47.75259,8855,6,3,7,55,22,4.05,5.0,fr,14133,177,598629,1,1,Active Shallow Crust,128.8903,89.9938,0.0,06/03/8855 +1.96271,40.70187,3233,1,16,8,14,52,3.55,5.0,fr,14134,64,599040,1,1,Active Shallow Crust,0.0,89.99044,0.0,01/16/3233 +1.96271,40.70187,6419,6,5,11,11,38,3.75,15.0,fr,14135,128,599065,1,1,Active Shallow Crust,0.0,89.98937,0.0,06/05/6419 +1.96271,40.70187,7665,5,31,20,47,44,3.85,5.0,fr,14136,153,599085,1,1,Active Shallow Crust,128.8964,89.99391,0.0,05/31/7665 +1.96271,40.70187,8513,4,13,23,32,52,4.05,27.5,fr,14137,170,599111,1,1,Active Shallow Crust,128.8914,89.99355,0.0,04/13/8513 +1.96271,40.70187,7350,12,5,17,12,16,4.25,5.0,fr,14138,146,599124,1,1,Active Shallow Crust,0.0,89.98975,0.0,12/05/7350 +1.96271,40.70187,5000,6,23,10,30,16,4.25,27.5,fr,14139,99,599132,1,1,Active Shallow Crust,0.0,89.98964,-90.0,06/23/5000 +1.96271,40.70187,801,6,25,4,9,13,4.35,5.0,fr,14140,16,599136,1,1,Active Shallow Crust,0.0,89.9901,0.0,06/25/0801 +1.96271,40.70187,9667,6,11,8,34,38,4.55,5.0,fr,14141,193,599160,1,1,Active Shallow Crust,0.0,89.98972,0.0,06/11/9667 +1.96271,40.70187,8506,2,17,7,37,59,4.75,27.5,fr,14142,170,599186,1,1,Active Shallow Crust,0.0,89.98991,0.0,02/17/8506 +5.94621,48.37336,748,7,30,17,56,25,3.95,5.0,fr,14143,14,599574,1,1,Active Shallow Crust,0.0,89.99145,-90.0,07/30/0748 +5.94621,48.37336,2389,4,25,21,51,31,4.25,5.0,fr,14144,47,599604,1,1,Active Shallow Crust,0.0,89.99102,0.0,04/25/2389 +5.94621,48.37336,5721,12,3,16,22,55,5.05,5.0,fr,14145,114,599700,1,1,Active Shallow Crust,0.0,89.99047,0.0,12/03/5721 +3.63522,42.17093,9594,9,22,12,46,29,3.55,5.0,fr,14146,191,600000,1,1,Active Shallow Crust,0.0,89.98879,0.0,09/22/9594 +3.63522,42.17093,9802,10,6,22,12,55,3.55,15.0,fr,14147,196,600001,1,1,Active Shallow Crust,0.0,89.98879,0.0,10/06/9802 +3.63522,42.17093,3637,2,16,5,49,43,3.55,5.0,fr,14148,72,600009,1,1,Active Shallow Crust,128.8958,89.99439,0.0,02/16/3637 +3.63522,42.17093,6114,5,20,23,30,54,3.65,15.0,fr,14149,122,600013,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/20/6114 +3.63522,42.17093,5480,4,30,6,49,35,3.85,27.5,fr,14150,109,600038,1,1,Active Shallow Crust,0.0,89.98942,0.0,04/30/5480 +3.63522,42.17093,1646,9,2,1,38,12,4.35,5.0,fr,14151,32,600096,1,1,Active Shallow Crust,0.0,89.98959,0.0,09/02/1646 +3.63522,42.17093,8162,4,5,1,11,41,4.55,5.0,fr,14152,163,600126,1,1,Active Shallow Crust,0.0,89.99043,-90.0,04/05/8162 +4.30693,48.65653,4968,8,19,11,22,12,4.45,5.0,fr,14153,99,600591,1,1,Active Shallow Crust,240.0058,57.99485,0.0,08/19/4968 +-3.94028,43.98013,7586,8,20,1,25,25,3.75,5.0,fr,14154,151,601464,1,1,Active Shallow Crust,0.0,89.99136,0.0,08/20/7586 +-3.94028,43.98013,3418,6,22,21,30,29,4.05,27.5,fr,14155,68,601502,1,1,Active Shallow Crust,0.0,89.9898,0.0,06/22/3418 +2.94688,48.71448,7517,6,11,23,26,36,3.75,5.0,fr,14156,150,601944,1,1,Active Shallow Crust,0.0,89.98943,0.0,06/11/7517 +2.94688,48.71448,5807,11,23,0,18,46,4.15,27.5,fr,14157,116,601994,1,1,Active Shallow Crust,0.0,89.99,0.0,11/23/5807 +2.94688,48.71448,8800,8,18,1,48,33,4.45,5.0,fr,14158,175,602031,1,1,Active Shallow Crust,240.006,57.99475,0.0,08/18/8800 +2.94688,48.71448,8808,12,27,4,12,52,4.85,15.0,fr,14159,176,602077,1,1,Active Shallow Crust,0.0,89.99032,0.0,12/27/8808 +-0.27825,45.86725,5709,12,31,10,29,1,3.55,5.0,fr,14160,114,602400,1,2,Active Shallow Crust,0.0,89.98991,0.0,12/31/5709 +-0.27825,45.86725,7742,10,3,13,0,46,3.55,5.0,fr,14161,154,602400,1,2,Active Shallow Crust,0.0,89.98991,0.0,10/03/7742 +-0.27825,45.86725,6916,9,12,7,2,25,3.55,27.5,fr,14162,138,602402,1,1,Active Shallow Crust,0.0,89.98991,0.0,09/12/6916 +-0.27825,45.86725,7117,5,23,16,7,27,3.55,5.0,fr,14163,142,602403,1,1,Active Shallow Crust,240.0121,57.99816,0.0,05/23/7117 +-0.27825,45.86725,5222,11,13,12,58,58,3.65,15.0,fr,14164,104,602413,1,1,Active Shallow Crust,0.0,89.98983,0.0,11/13/5222 +-0.27825,45.86725,759,1,21,7,25,44,3.65,5.0,fr,14165,15,602415,1,1,Active Shallow Crust,240.0011,58.01284,0.0,01/21/0759 +-0.27825,45.86725,5466,1,20,14,8,0,3.75,5.0,fr,14166,109,602424,1,2,Active Shallow Crust,0.0,89.98989,0.0,01/20/5466 +-0.27825,45.86725,4060,2,20,6,29,52,3.75,5.0,fr,14167,81,602424,1,2,Active Shallow Crust,0.0,89.98989,0.0,02/20/4060 +-0.27825,45.86725,8881,10,9,14,42,54,4.05,15.0,fr,14168,177,602461,1,1,Active Shallow Crust,0.0,89.98988,0.0,10/09/8881 +-0.27825,45.86725,1154,10,31,8,13,52,4.45,15.0,fr,14169,23,602509,1,1,Active Shallow Crust,0.0,89.99004,0.0,10/31/1154 +-0.27825,45.86725,8738,5,9,13,16,6,4.65,15.0,fr,14170,174,602536,1,1,Active Shallow Crust,240.0106,57.99419,0.0,05/09/8738 +-0.27825,45.86725,9317,4,26,14,52,2,4.75,15.0,fr,14171,186,602545,1,1,Active Shallow Crust,0.0,89.98997,0.0,04/26/9317 +-0.27825,45.86725,7953,1,7,10,6,30,4.75,5.0,fr,14172,159,602553,1,1,Active Shallow Crust,128.8889,89.98808,0.0,01/07/7953 +-0.27825,45.86725,5037,4,1,3,39,53,4.95,5.0,fr,14173,100,602568,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/01/5037 +7.21685,50.5315,8435,4,1,13,1,48,3.55,5.0,fr,14174,168,602880,1,4,Active Shallow Crust,0.0,89.98718,0.0,04/01/8435 +7.21685,50.5315,4723,10,19,21,20,2,3.55,5.0,fr,14175,94,602880,1,4,Active Shallow Crust,0.0,89.98718,0.0,10/19/4723 +7.21685,50.5315,8342,4,3,14,7,40,3.55,5.0,fr,14176,166,602880,1,4,Active Shallow Crust,0.0,89.98718,0.0,04/03/8342 +7.21685,50.5315,6707,1,7,3,37,14,3.55,5.0,fr,14177,134,602880,1,4,Active Shallow Crust,0.0,89.98718,0.0,01/07/6707 +7.21685,50.5315,8958,9,12,13,55,34,3.55,15.0,fr,14178,179,602881,1,1,Active Shallow Crust,0.0,89.98718,0.0,09/12/8958 +7.21685,50.5315,950,3,30,3,5,32,3.55,5.0,fr,14179,18,602883,1,1,Active Shallow Crust,240.013,57.99788,0.0,03/30/0950 +7.21685,50.5315,6208,4,16,8,17,17,3.55,15.0,fr,14180,124,602887,1,1,Active Shallow Crust,0.0,89.98703,-90.0,04/16/6208 +7.21685,50.5315,4260,5,13,0,38,14,3.55,5.0,fr,14181,85,602889,1,1,Active Shallow Crust,128.8951,89.99359,0.0,05/13/4260 +7.21685,50.5315,9750,7,18,22,1,1,3.65,5.0,fr,14182,194,602892,1,3,Active Shallow Crust,0.0,89.98857,0.0,07/18/9750 +7.21685,50.5315,8153,6,24,7,56,14,3.65,5.0,fr,14183,163,602892,1,3,Active Shallow Crust,0.0,89.98857,0.0,06/24/8153 +7.21685,50.5315,6091,5,17,14,1,45,3.65,5.0,fr,14184,121,602892,1,3,Active Shallow Crust,0.0,89.98857,0.0,05/17/6091 +7.21685,50.5315,6575,8,27,5,59,15,3.65,5.0,fr,14185,131,602898,1,1,Active Shallow Crust,0.0,89.98844,-90.0,08/27/6575 +7.21685,50.5315,2545,1,29,0,59,52,3.75,5.0,fr,14186,50,602904,1,1,Active Shallow Crust,0.0,89.98981,0.0,01/29/2545 +7.21685,50.5315,1228,7,31,5,2,23,3.75,5.0,fr,14187,24,602907,1,2,Active Shallow Crust,240.0095,58.01778,0.0,07/31/1228 +7.21685,50.5315,6367,12,24,19,28,31,3.75,5.0,fr,14188,127,602907,1,2,Active Shallow Crust,240.0095,58.01778,0.0,12/24/6367 +7.21685,50.5315,8058,6,9,13,48,43,3.95,5.0,fr,14189,161,602928,1,2,Active Shallow Crust,0.0,89.99191,0.0,06/09/8058 +7.21685,50.5315,637,11,14,7,6,4,3.95,5.0,fr,14190,12,602928,1,2,Active Shallow Crust,0.0,89.99191,0.0,11/14/0637 +7.21685,50.5315,5810,5,5,6,46,55,3.95,15.0,fr,14191,116,602929,1,1,Active Shallow Crust,0.0,89.99191,0.0,05/05/5810 +7.21685,50.5315,5766,7,11,23,29,54,3.95,5.0,fr,14192,115,602934,1,1,Active Shallow Crust,0.0,89.99181,-90.0,07/11/5766 +7.21685,50.5315,4788,3,20,15,34,15,4.15,15.0,fr,14193,95,602962,1,1,Active Shallow Crust,128.8962,89.99358,0.0,03/20/4788 +7.21685,50.5315,1666,1,6,0,58,53,4.25,5.0,fr,14194,33,602967,1,1,Active Shallow Crust,240.0087,57.99392,0.0,01/06/1666 +7.21685,50.5315,8317,9,6,9,53,23,4.35,15.0,fr,14195,166,602983,1,1,Active Shallow Crust,0.0,89.98967,-90.0,09/06/8317 +7.21685,50.5315,7677,2,24,11,16,47,4.65,5.0,fr,14196,153,603012,1,1,Active Shallow Crust,0.0,89.98916,0.0,02/24/7677 +7.21685,50.5315,4951,10,8,8,46,21,4.95,5.0,fr,14197,99,603048,1,1,Active Shallow Crust,0.0,89.98977,0.0,10/08/4951 +1.10678,41.50265,5630,3,1,9,54,13,3.55,5.0,fr,14198,112,603360,1,1,Active Shallow Crust,0.0,89.99056,0.0,03/01/5630 +1.10678,41.50265,5805,8,9,9,16,14,3.55,5.0,fr,14199,116,603363,1,1,Active Shallow Crust,240.012,57.99791,0.0,08/09/5805 +1.10678,41.50265,3226,12,10,2,16,16,3.55,5.0,fr,14200,64,603369,1,1,Active Shallow Crust,128.8965,89.99434,0.0,12/10/3226 +1.10678,41.50265,4779,10,17,1,49,18,3.65,15.0,fr,14201,95,603373,1,2,Active Shallow Crust,0.0,89.98991,0.0,10/17/4779 +1.10678,41.50265,5966,9,3,8,52,13,3.65,15.0,fr,14202,119,603373,1,2,Active Shallow Crust,0.0,89.98991,0.0,09/03/5966 +1.10678,41.50265,9344,3,23,16,32,21,3.75,15.0,fr,14203,186,603388,1,1,Active Shallow Crust,240.0076,58.01756,0.0,03/23/9344 +1.10678,41.50265,6114,6,21,21,41,10,3.85,5.0,fr,14204,122,603396,1,1,Active Shallow Crust,0.0,89.99065,0.0,06/21/6114 +1.10678,41.50265,5871,7,22,4,47,41,3.95,5.0,fr,14205,117,603414,1,1,Active Shallow Crust,0.0,89.99036,-90.0,07/22/5871 +1.10678,41.50265,8447,1,13,11,34,33,4.05,5.0,fr,14206,168,603429,1,1,Active Shallow Crust,128.8913,89.99363,0.0,01/13/8447 +1.10678,41.50265,1393,7,8,3,6,52,4.15,5.0,fr,14207,27,603432,1,1,Active Shallow Crust,0.0,89.98959,0.0,07/08/1393 +1.10678,41.50265,4436,4,20,9,50,49,4.55,5.0,fr,14208,88,603480,1,1,Active Shallow Crust,0.0,89.98985,0.0,04/20/4436 +0.6754,45.80599,6314,5,14,16,38,0,3.55,5.0,fr,14209,126,604320,1,1,Active Shallow Crust,0.0,89.99033,0.0,05/14/6314 +0.6754,45.80599,6811,8,30,1,54,21,3.65,5.0,fr,14210,136,604332,1,2,Active Shallow Crust,0.0,89.98982,0.0,08/30/6811 +0.6754,45.80599,9126,4,20,19,36,13,3.65,5.0,fr,14211,182,604332,1,2,Active Shallow Crust,0.0,89.98982,0.0,04/20/9126 +0.6754,45.80599,256,4,8,21,19,57,3.75,5.0,fr,14212,5,604350,1,2,Active Shallow Crust,0.0,89.99011,-90.0,04/08/0256 +0.6754,45.80599,4572,8,19,5,37,10,3.75,5.0,fr,14213,91,604350,1,2,Active Shallow Crust,0.0,89.99011,-90.0,08/19/4572 +0.6754,45.80599,2079,5,13,4,25,49,3.85,15.0,fr,14214,41,604363,1,1,Active Shallow Crust,0.0,89.98993,-90.0,05/13/2079 +0.6754,45.80599,7147,6,6,7,4,2,3.95,5.0,fr,14215,142,604368,1,1,Active Shallow Crust,0.0,89.99002,0.0,06/06/7147 +0.6754,45.80599,3053,12,4,15,52,11,4.15,5.0,fr,14216,61,604392,1,1,Active Shallow Crust,0.0,89.98987,0.0,12/04/3053 +0.6754,45.80599,9038,11,6,2,38,40,5.45,5.0,fr,14217,180,604548,1,1,Active Shallow Crust,0.0,89.99004,0.0,11/06/9038 +-0.08366,50.67461,9009,5,20,8,28,51,3.55,5.0,fr,14218,180,604800,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/20/9009 +-0.08366,50.67461,2588,1,2,3,13,5,3.75,15.0,fr,14219,51,604831,1,1,Active Shallow Crust,0.0,89.98997,-90.0,01/02/2588 +-0.08366,50.67461,5765,7,10,0,28,5,3.85,15.0,fr,14220,115,604843,1,1,Active Shallow Crust,0.0,89.98999,-90.0,07/10/5765 +-0.08366,50.67461,7545,6,11,5,44,19,3.95,27.5,fr,14221,150,604856,1,1,Active Shallow Crust,0.0,89.98999,-90.0,06/11/7545 +-0.08366,50.67461,5949,2,11,17,38,14,4.15,5.0,fr,14222,118,604875,1,1,Active Shallow Crust,240.0093,57.99746,0.0,02/11/5949 +-0.08366,50.67461,1720,11,3,3,37,19,4.25,5.0,fr,14223,34,604890,1,1,Active Shallow Crust,0.0,89.98998,-90.0,11/03/1720 +-0.08366,50.67461,7934,7,11,11,54,10,4.55,5.0,fr,14224,158,604920,1,1,Active Shallow Crust,0.0,89.98999,0.0,07/11/7934 +-5.51334,48.5035,513,6,8,13,14,9,3.65,5.0,fr,14225,10,605292,1,1,Active Shallow Crust,0.0,89.98809,0.0,06/08/0513 +-5.51334,48.5035,1766,5,29,2,59,29,3.75,5.0,fr,14226,35,605307,1,1,Active Shallow Crust,240.0091,58.01745,0.0,05/29/1766 +-5.51334,48.5035,8087,8,17,18,41,46,3.85,5.0,fr,14227,161,605316,1,1,Active Shallow Crust,0.0,89.99054,0.0,08/17/8087 +-5.51334,48.5035,2905,5,27,1,59,3,5.95,15.0,fr,14228,58,605572,1,1,Active Shallow Crust,240.0564,57.99932,0.0,05/27/2905 +2.68935,48.96612,5509,11,26,23,1,21,3.55,15.0,fr,14229,110,605761,1,1,Active Shallow Crust,0.0,89.99007,0.0,11/26/5509 +2.68935,48.96612,6527,2,22,1,3,47,3.55,5.0,fr,14230,130,605766,1,1,Active Shallow Crust,0.0,89.98995,-90.0,02/22/6527 +2.68935,48.96612,6767,6,25,16,19,27,3.65,5.0,fr,14231,135,605775,1,1,Active Shallow Crust,240.0019,58.0128,0.0,06/25/6767 +2.68935,48.96612,8915,12,1,4,37,47,3.85,5.0,fr,14232,178,605796,1,1,Active Shallow Crust,0.0,89.99062,0.0,12/01/8915 +2.68935,48.96612,5746,1,16,0,50,22,4.05,5.0,fr,14233,114,605820,1,1,Active Shallow Crust,0.0,89.99069,0.0,01/16/5746 +-3.52048,49.10797,219,5,29,15,17,32,3.65,5.0,fr,14234,4,606252,1,2,Active Shallow Crust,0.0,89.99117,0.0,05/29/0219 +-3.52048,49.10797,707,6,20,5,41,7,3.65,5.0,fr,14235,14,606252,1,2,Active Shallow Crust,0.0,89.99117,0.0,06/20/0707 +-3.52048,49.10797,777,7,7,4,5,50,3.75,5.0,fr,14236,15,606270,1,1,Active Shallow Crust,0.0,89.98939,-90.0,07/07/0777 +-3.52048,49.10797,8621,2,22,11,54,15,4.15,15.0,fr,14237,172,606313,1,1,Active Shallow Crust,0.0,89.99007,0.0,02/22/8621 +-3.52048,49.10797,5832,1,22,16,45,25,5.75,5.0,fr,14238,116,606507,1,1,Active Shallow Crust,240.0445,58.00004,0.0,01/22/5832 +0.24349,48.31892,1844,6,25,22,46,51,3.55,5.0,fr,14239,36,606720,1,1,Active Shallow Crust,0.0,89.98994,0.0,06/25/1844 +0.24349,48.31892,7287,3,8,10,21,53,3.55,15.0,fr,14240,145,606721,1,1,Active Shallow Crust,0.0,89.98994,0.0,03/08/7287 +0.24349,48.31892,9252,5,13,18,11,11,3.55,5.0,fr,14241,185,606723,1,1,Active Shallow Crust,240.0123,57.99823,0.0,05/13/9252 +0.24349,48.31892,1167,12,29,1,5,49,3.75,5.0,fr,14242,23,606753,1,1,Active Shallow Crust,128.8965,89.96735,0.0,12/29/1167 +0.24349,48.31892,6660,11,5,15,13,40,3.95,15.0,fr,14243,133,606769,1,1,Active Shallow Crust,0.0,89.98995,0.0,11/05/6660 +0.24349,48.31892,2582,2,27,18,17,35,3.95,15.0,fr,14244,51,606775,1,1,Active Shallow Crust,0.0,89.98997,-90.0,02/27/2582 +0.24349,48.31892,2131,1,30,7,22,43,4.75,5.0,fr,14245,42,606870,1,1,Active Shallow Crust,0.0,89.98999,-90.0,01/30/2131 +-1.48116,44.2576,8054,1,28,3,19,1,3.55,15.0,fr,14246,161,607204,1,1,Active Shallow Crust,240.0123,57.99816,0.0,01/28/8054 +-0.38246,46.80405,5665,11,27,5,18,15,3.55,15.0,fr,14247,113,607681,1,1,Active Shallow Crust,0.0,89.99007,0.0,11/27/5665 +-0.38246,46.80405,9300,4,18,23,4,30,3.55,5.0,fr,14248,185,607689,1,1,Active Shallow Crust,128.8962,89.99374,0.0,04/18/9300 +-0.38246,46.80405,7259,10,12,19,31,28,3.65,5.0,fr,14249,145,607692,1,2,Active Shallow Crust,0.0,89.99001,0.0,10/12/7259 +-0.38246,46.80405,9310,2,16,2,57,13,3.65,5.0,fr,14250,186,607692,1,2,Active Shallow Crust,0.0,89.99001,0.0,02/16/9310 +-0.38246,46.80405,8404,1,3,8,25,4,3.65,15.0,fr,14251,168,607693,1,1,Active Shallow Crust,0.0,89.99001,0.0,01/03/8404 +-0.38246,46.80405,3201,6,12,22,48,4,3.65,27.5,fr,14252,64,607694,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/12/3201 +-0.38246,46.80405,2441,4,26,18,41,22,3.65,5.0,fr,14253,48,607695,1,1,Active Shallow Crust,240.0011,58.01296,0.0,04/26/2441 +-0.38246,46.80405,9065,10,19,0,51,36,3.75,15.0,fr,14254,181,607705,1,1,Active Shallow Crust,0.0,89.99006,0.0,10/19/9065 +-0.38246,46.80405,7916,12,20,2,39,8,3.75,5.0,fr,14255,158,607710,1,1,Active Shallow Crust,0.0,89.98994,-90.0,12/20/7916 +-0.38246,46.80405,8177,7,18,22,30,37,3.85,5.0,fr,14256,163,607716,1,1,Active Shallow Crust,0.0,89.98992,0.0,07/18/8177 +-0.38246,46.80405,9165,11,8,0,53,52,3.85,5.0,fr,14257,183,607722,1,2,Active Shallow Crust,0.0,89.99011,-90.0,11/08/9165 +-0.38246,46.80405,9649,6,24,14,19,50,3.85,5.0,fr,14258,192,607722,1,2,Active Shallow Crust,0.0,89.99011,-90.0,06/24/9649 +-0.38246,46.80405,8341,5,30,4,44,12,3.85,5.0,fr,14259,166,607725,1,1,Active Shallow Crust,128.8956,89.99374,0.0,05/30/8341 +-0.38246,46.80405,9617,10,13,15,11,35,3.95,5.0,fr,14260,192,607728,1,1,Active Shallow Crust,0.0,89.98993,0.0,10/13/9617 +-0.38246,46.80405,1435,12,28,4,40,5,4.05,5.0,fr,14261,28,607740,1,2,Active Shallow Crust,0.0,89.99005,0.0,12/28/1435 +-0.38246,46.80405,1398,12,8,18,49,49,4.05,5.0,fr,14262,27,607740,1,2,Active Shallow Crust,0.0,89.99005,0.0,12/08/1398 +-0.38246,46.80405,7157,12,10,11,45,51,4.15,5.0,fr,14263,143,607752,1,1,Active Shallow Crust,0.0,89.99005,0.0,12/10/7157 +-0.38246,46.80405,171,12,14,12,9,28,4.75,5.0,fr,14264,3,607824,1,1,Active Shallow Crust,0.0,89.99003,0.0,12/14/0171 +2.58476,51.80522,9730,2,15,7,52,23,4.15,5.0,fr,14265,194,608712,1,1,Active Shallow Crust,0.0,89.99062,0.0,02/15/9730 +5.45524,47.92811,8867,5,21,16,41,35,3.65,5.0,fr,14266,177,609132,1,1,Active Shallow Crust,0.0,89.98795,0.0,05/21/8867 +5.45524,47.92811,2364,9,15,11,1,36,3.75,5.0,fr,14267,47,609153,1,1,Active Shallow Crust,128.896,89.96751,0.0,09/15/2364 +5.45524,47.92811,9182,9,26,13,55,9,3.95,5.0,fr,14268,183,609168,1,1,Active Shallow Crust,0.0,89.99147,0.0,09/26/9182 +5.45524,47.92811,6154,2,6,10,15,20,3.95,5.0,fr,14269,123,609171,1,1,Active Shallow Crust,240.0209,58.00459,0.0,02/06/6154 +5.45524,47.92811,1726,7,14,22,44,18,5.25,5.0,fr,14270,34,609324,1,1,Active Shallow Crust,0.0,89.99046,0.0,07/14/1726 +6.87681,44.46744,4098,10,6,0,46,6,3.55,15.0,fr,14271,81,609601,1,2,Active Shallow Crust,0.0,89.99281,0.0,10/06/4098 +6.87681,44.46744,7948,4,23,1,40,37,3.55,15.0,fr,14272,158,609601,1,2,Active Shallow Crust,0.0,89.99281,0.0,04/23/7948 +6.87681,44.46744,9377,3,1,15,43,48,3.55,5.0,fr,14273,187,609603,1,1,Active Shallow Crust,240.0126,57.99829,0.0,03/01/9377 +6.87681,44.46744,3624,11,10,1,49,4,3.55,5.0,fr,14274,72,609606,1,1,Active Shallow Crust,0.0,89.99272,-90.0,11/10/3624 +6.87681,44.46744,8762,1,19,0,6,48,3.65,5.0,fr,14275,175,609612,1,8,Active Shallow Crust,0.0,89.98717,0.0,01/19/8762 +6.87681,44.46744,4041,3,11,0,57,49,3.65,5.0,fr,14276,80,609612,1,8,Active Shallow Crust,0.0,89.98717,0.0,03/11/4041 +6.87681,44.46744,4606,11,3,9,54,46,3.65,5.0,fr,14277,92,609612,1,8,Active Shallow Crust,0.0,89.98717,0.0,11/03/4606 +6.87681,44.46744,3124,9,27,17,18,47,3.65,5.0,fr,14278,62,609612,1,8,Active Shallow Crust,0.0,89.98717,0.0,09/27/3124 +6.87681,44.46744,2076,9,23,21,20,8,3.65,5.0,fr,14279,41,609612,1,8,Active Shallow Crust,0.0,89.98717,0.0,09/23/2076 +6.87681,44.46744,9389,7,30,20,24,26,3.65,5.0,fr,14280,187,609612,1,8,Active Shallow Crust,0.0,89.98717,0.0,07/30/9389 +6.87681,44.46744,5744,3,6,20,50,2,3.65,5.0,fr,14281,114,609612,1,8,Active Shallow Crust,0.0,89.98717,0.0,03/06/5744 +6.87681,44.46744,6659,3,9,1,50,7,3.65,5.0,fr,14282,133,609612,1,8,Active Shallow Crust,0.0,89.98717,0.0,03/09/6659 +6.87681,44.46744,3571,4,25,22,11,57,3.65,5.0,fr,14283,71,609615,1,1,Active Shallow Crust,240.0003,58.0127,0.0,04/25/3571 +6.87681,44.46744,6171,7,9,2,17,19,3.65,5.0,fr,14284,123,609621,1,1,Active Shallow Crust,128.9009,89.96349,0.0,07/09/6171 +6.87681,44.46744,2587,7,29,13,0,9,3.75,5.0,fr,14285,51,609624,1,2,Active Shallow Crust,0.0,89.98856,0.0,07/29/2587 +6.87681,44.46744,5739,12,4,11,40,15,3.75,5.0,fr,14286,114,609624,1,2,Active Shallow Crust,0.0,89.98856,0.0,12/04/5739 +6.87681,44.46744,8581,12,31,23,14,11,3.75,15.0,fr,14287,171,609625,1,2,Active Shallow Crust,0.0,89.98856,0.0,12/31/8581 +6.87681,44.46744,4577,2,3,8,53,1,3.75,15.0,fr,14288,91,609625,1,2,Active Shallow Crust,0.0,89.98856,0.0,02/03/4577 +6.87681,44.46744,7417,12,31,12,14,53,3.75,5.0,fr,14289,148,609627,1,1,Active Shallow Crust,240.009,58.01689,0.0,12/31/7417 +6.87681,44.46744,3823,5,20,9,55,39,3.75,15.0,fr,14290,76,609631,1,1,Active Shallow Crust,0.0,89.98843,-90.0,05/20/3823 +6.87681,44.46744,2101,7,19,5,4,41,3.85,5.0,fr,14291,42,609636,1,2,Active Shallow Crust,0.0,89.98981,0.0,07/19/2101 +6.87681,44.46744,4949,7,23,4,16,51,3.85,5.0,fr,14292,98,609636,1,2,Active Shallow Crust,0.0,89.98981,0.0,07/23/4949 +6.87681,44.46744,1710,6,11,17,34,2,3.85,15.0,fr,14293,34,609637,1,2,Active Shallow Crust,0.0,89.98981,0.0,06/11/1710 +6.87681,44.46744,1305,10,19,6,28,24,3.85,15.0,fr,14294,26,609637,1,2,Active Shallow Crust,0.0,89.98981,0.0,10/19/1305 +6.87681,44.46744,1831,10,31,15,5,56,3.85,27.5,fr,14295,36,609647,1,1,Active Shallow Crust,128.8952,89.9949,0.0,10/31/1831 +6.87681,44.46744,5234,12,17,10,28,8,3.95,5.0,fr,14296,104,609648,1,4,Active Shallow Crust,0.0,89.99092,0.0,12/17/5234 +6.87681,44.46744,6877,8,8,20,25,45,3.95,5.0,fr,14297,137,609648,1,4,Active Shallow Crust,0.0,89.99092,0.0,08/08/6877 +6.87681,44.46744,5289,3,6,9,55,30,3.95,5.0,fr,14298,105,609648,1,4,Active Shallow Crust,0.0,89.99092,0.0,03/06/5289 +6.87681,44.46744,8073,1,5,7,10,35,3.95,5.0,fr,14299,161,609648,1,4,Active Shallow Crust,0.0,89.99092,0.0,01/05/8073 +6.87681,44.46744,1531,3,8,4,42,20,3.95,15.0,fr,14300,30,609649,1,1,Active Shallow Crust,0.0,89.99092,0.0,03/08/1531 +6.87681,44.46744,8152,11,27,0,0,6,3.95,5.0,fr,14301,163,609654,1,1,Active Shallow Crust,0.0,89.99081,-90.0,11/27/8152 +6.87681,44.46744,8175,2,8,2,15,42,4.05,5.0,fr,14302,163,609660,1,2,Active Shallow Crust,0.0,89.99191,0.0,02/08/8175 +6.87681,44.46744,9718,2,3,14,28,19,4.05,5.0,fr,14303,194,609660,1,2,Active Shallow Crust,0.0,89.99191,0.0,02/03/9718 +6.87681,44.46744,7466,2,19,9,11,36,4.15,5.0,fr,14304,149,609672,1,1,Active Shallow Crust,0.0,89.98918,0.0,02/19/7466 +6.87681,44.46744,316,5,16,0,14,29,4.15,15.0,fr,14305,6,609673,1,1,Active Shallow Crust,0.0,89.98918,0.0,05/16/0316 +6.87681,44.46744,9798,1,10,9,45,46,4.15,27.5,fr,14306,195,609674,1,1,Active Shallow Crust,0.0,89.98918,0.0,01/10/9798 +6.87681,44.46744,6452,10,23,15,36,38,4.15,15.0,fr,14307,129,609682,1,1,Active Shallow Crust,128.897,89.99459,0.0,10/23/6452 +6.87681,44.46744,3351,4,3,11,54,33,4.25,5.0,fr,14308,67,609684,1,1,Active Shallow Crust,0.0,89.99036,0.0,04/03/3351 +6.87681,44.46744,7750,10,9,4,55,45,4.25,15.0,fr,14309,154,609685,1,1,Active Shallow Crust,0.0,89.99036,0.0,10/09/7750 +6.87681,44.46744,5333,5,8,21,9,3,4.35,15.0,fr,14310,106,609697,1,1,Active Shallow Crust,0.0,89.9914,0.0,05/08/5333 +6.87681,44.46744,6218,2,8,22,16,28,4.35,5.0,fr,14311,124,609702,1,1,Active Shallow Crust,0.0,89.9913,-90.0,02/08/6218 +6.87681,44.46744,4560,5,25,10,14,5,4.45,5.0,fr,14312,91,609708,1,2,Active Shallow Crust,0.0,89.98978,0.0,05/25/4560 +6.87681,44.46744,5091,10,8,20,49,55,4.45,5.0,fr,14313,101,609708,1,2,Active Shallow Crust,0.0,89.98978,0.0,10/08/5091 +6.87681,44.46744,1077,4,20,4,24,39,4.55,5.0,fr,14314,21,609720,1,1,Active Shallow Crust,0.0,89.9909,0.0,04/20/1077 +6.87681,44.46744,3672,8,7,5,7,18,4.55,15.0,fr,14315,73,609721,1,1,Active Shallow Crust,0.0,89.9909,0.0,08/07/3672 +6.87681,44.46744,8966,1,14,1,56,48,4.55,5.0,fr,14316,179,609723,1,1,Active Shallow Crust,240.009,57.99708,0.0,01/14/8966 +6.87681,44.46744,6890,12,22,21,21,9,5.65,5.0,fr,14317,137,609852,1,1,Active Shallow Crust,0.0,89.98973,0.0,12/22/6890 +6.87681,44.46744,6983,5,17,9,6,33,5.85,5.0,fr,14318,139,609876,1,1,Active Shallow Crust,0.0,89.98981,0.0,05/17/6983 +6.72856,45.5041,7464,11,12,22,8,40,3.55,5.0,fr,14319,149,610080,1,6,Active Shallow Crust,0.0,89.99294,0.0,11/12/7464 +6.72856,45.5041,3498,12,5,3,2,15,3.55,5.0,fr,14320,69,610080,1,6,Active Shallow Crust,0.0,89.99294,0.0,12/05/3498 +6.72856,45.5041,1708,10,2,11,53,2,3.55,5.0,fr,14321,34,610080,1,6,Active Shallow Crust,0.0,89.99294,0.0,10/02/1708 +6.72856,45.5041,1311,1,25,4,55,21,3.55,5.0,fr,14322,26,610080,1,6,Active Shallow Crust,0.0,89.99294,0.0,01/25/1311 +6.72856,45.5041,3805,10,15,22,8,15,3.55,5.0,fr,14323,76,610080,1,6,Active Shallow Crust,0.0,89.99294,0.0,10/15/3805 +6.72856,45.5041,3898,10,11,15,10,30,3.55,5.0,fr,14324,77,610080,1,6,Active Shallow Crust,0.0,89.99294,0.0,10/11/3898 +6.72856,45.5041,5020,4,15,23,49,16,3.55,27.5,fr,14325,100,610082,1,1,Active Shallow Crust,0.0,89.99294,0.0,04/15/5020 +6.72856,45.5041,8920,8,31,18,6,54,3.65,5.0,fr,14326,178,610092,1,3,Active Shallow Crust,0.0,89.9874,0.0,08/31/8920 +6.72856,45.5041,3674,1,13,14,56,36,3.65,5.0,fr,14327,73,610092,1,3,Active Shallow Crust,0.0,89.9874,0.0,01/13/3674 +6.72856,45.5041,9028,11,19,18,7,22,3.65,5.0,fr,14328,180,610092,1,3,Active Shallow Crust,0.0,89.9874,0.0,11/19/9028 +6.72856,45.5041,9986,2,12,11,54,37,3.65,27.5,fr,14329,199,610094,1,1,Active Shallow Crust,0.0,89.9874,0.0,02/12/9986 +6.72856,45.5041,703,1,31,0,52,59,3.65,5.0,fr,14330,14,610101,1,1,Active Shallow Crust,128.9003,89.96351,0.0,01/31/0703 +6.72856,45.5041,8716,11,15,9,10,26,3.75,15.0,fr,14331,174,610105,1,2,Active Shallow Crust,0.0,89.98877,0.0,11/15/8716 +6.72856,45.5041,914,7,12,7,42,4,3.75,15.0,fr,14332,18,610105,1,2,Active Shallow Crust,0.0,89.98877,0.0,07/12/0914 +6.72856,45.5041,8775,2,23,20,34,24,3.85,15.0,fr,14333,175,610117,1,1,Active Shallow Crust,0.0,89.98999,0.0,02/23/8775 +6.72856,45.5041,3183,1,18,2,48,10,3.95,15.0,fr,14334,63,610129,1,1,Active Shallow Crust,0.0,89.99108,0.0,01/18/3183 +6.72856,45.5041,7584,12,23,11,48,50,4.05,5.0,fr,14335,151,610140,1,2,Active Shallow Crust,0.0,89.98808,0.0,12/23/7584 +6.72856,45.5041,5891,6,29,6,53,8,4.05,5.0,fr,14336,117,610140,1,2,Active Shallow Crust,0.0,89.98808,0.0,06/29/5891 +6.72856,45.5041,7717,6,4,19,23,4,4.05,15.0,fr,14337,154,610141,1,1,Active Shallow Crust,0.0,89.98808,0.0,06/04/7717 +6.72856,45.5041,1637,10,11,5,13,51,4.05,5.0,fr,14338,32,610143,1,1,Active Shallow Crust,240.0059,58.00527,0.0,10/11/1637 +6.72856,45.5041,8099,2,22,4,6,23,4.15,15.0,fr,14339,161,610153,1,1,Active Shallow Crust,0.0,89.98937,0.0,02/22/8099 +6.72856,45.5041,7995,1,15,13,39,53,4.25,5.0,fr,14340,159,610164,1,1,Active Shallow Crust,0.0,89.99053,0.0,01/15/7995 +6.72856,45.5041,36,10,25,6,50,15,4.25,15.0,fr,14341,0,610165,1,1,Active Shallow Crust,0.0,89.99053,0.0,10/25/0036 +6.72856,45.5041,1793,3,24,14,35,1,4.45,5.0,fr,14342,35,610188,1,1,Active Shallow Crust,0.0,89.98997,0.0,03/24/1793 +6.72856,45.5041,7324,10,25,15,33,1,4.45,5.0,fr,14343,146,610191,1,1,Active Shallow Crust,240.0053,57.99461,0.0,10/25/7324 +6.72856,45.5041,9845,5,30,22,9,19,4.65,5.0,fr,14344,196,610212,1,1,Active Shallow Crust,0.0,89.99004,0.0,05/30/9845 +6.72856,45.5041,9809,6,5,18,36,3,4.65,15.0,fr,14345,196,610213,1,1,Active Shallow Crust,0.0,89.99004,0.0,06/05/9809 +1.81506,42.55684,401,3,5,20,52,33,3.55,5.0,fr,14346,8,610560,1,3,Active Shallow Crust,0.0,89.99072,0.0,03/05/0401 +1.81506,42.55684,8421,9,20,1,2,53,3.55,5.0,fr,14347,168,610560,1,3,Active Shallow Crust,0.0,89.99072,0.0,09/20/8421 +1.81506,42.55684,3207,11,25,1,32,7,3.55,5.0,fr,14348,64,610560,1,3,Active Shallow Crust,0.0,89.99072,0.0,11/25/3207 +1.81506,42.55684,9483,5,30,20,37,1,3.55,15.0,fr,14349,189,610561,1,1,Active Shallow Crust,0.0,89.99072,0.0,05/30/9483 +1.81506,42.55684,1526,2,10,20,15,14,3.55,5.0,fr,14350,30,610563,1,1,Active Shallow Crust,240.0121,57.99789,0.0,02/10/1526 +1.81506,42.55684,3260,10,24,8,53,41,3.55,15.0,fr,14351,65,610564,1,1,Active Shallow Crust,240.0121,57.99789,0.0,10/24/3260 +1.81506,42.55684,3614,6,22,23,49,7,3.55,15.0,fr,14352,72,610567,1,1,Active Shallow Crust,0.0,89.99061,-90.0,06/22/3614 +1.81506,42.55684,7602,12,10,23,39,51,3.65,5.0,fr,14353,152,610572,1,1,Active Shallow Crust,0.0,89.99007,0.0,12/10/7602 +1.81506,42.55684,5189,8,30,9,1,23,3.65,15.0,fr,14354,103,610573,1,1,Active Shallow Crust,0.0,89.99007,0.0,08/30/5189 +1.81506,42.55684,7845,11,30,3,41,44,3.65,5.0,fr,14355,156,610575,1,1,Active Shallow Crust,240.0009,58.01262,0.0,11/30/7845 +1.81506,42.55684,8482,6,22,0,53,32,3.75,5.0,fr,14356,169,610584,1,2,Active Shallow Crust,0.0,89.98968,0.0,06/22/8482 +1.81506,42.55684,6940,4,6,21,0,28,3.75,5.0,fr,14357,138,610584,1,2,Active Shallow Crust,0.0,89.98968,0.0,04/06/6940 +1.81506,42.55684,1100,6,6,4,4,0,3.75,27.5,fr,14358,21,610586,1,1,Active Shallow Crust,0.0,89.98968,0.0,06/06/1100 +1.81506,42.55684,5203,8,23,18,57,25,3.75,5.0,fr,14359,104,610587,1,1,Active Shallow Crust,240.0079,58.01743,0.0,08/23/5203 +1.81506,42.55684,2873,8,6,0,39,47,3.75,15.0,fr,14360,57,610594,1,1,Active Shallow Crust,128.8971,89.96742,0.0,08/06/2873 +1.81506,42.55684,4150,10,24,20,15,3,3.85,15.0,fr,14361,82,610597,1,1,Active Shallow Crust,0.0,89.98948,0.0,10/24/4150 +1.81506,42.55684,6429,2,7,16,45,1,3.95,5.0,fr,14362,128,610608,1,1,Active Shallow Crust,0.0,89.98946,0.0,02/07/6429 +1.81506,42.55684,7123,8,18,21,9,23,3.95,15.0,fr,14363,142,610615,1,1,Active Shallow Crust,0.0,89.99052,-90.0,08/18/7123 +1.81506,42.55684,4715,6,26,18,17,4,4.05,5.0,fr,14364,94,610620,1,1,Active Shallow Crust,0.0,89.98956,0.0,06/26/4715 +1.81506,42.55684,9193,2,4,2,13,5,4.05,15.0,fr,14365,183,610621,1,1,Active Shallow Crust,0.0,89.98956,0.0,02/04/9193 +1.81506,42.55684,7456,1,14,2,10,56,4.05,15.0,fr,14366,149,610624,1,1,Active Shallow Crust,240.0053,58.00563,0.0,01/14/7456 +1.81506,42.55684,9589,6,11,11,50,54,4.15,5.0,fr,14367,191,610632,1,1,Active Shallow Crust,0.0,89.98976,0.0,06/11/9589 +1.81506,42.55684,2442,7,7,18,26,30,4.25,27.5,fr,14368,48,610649,1,1,Active Shallow Crust,240.0068,57.99397,0.0,07/07/2442 +1.81506,42.55684,6134,10,18,10,0,26,4.45,5.0,fr,14369,122,610668,1,1,Active Shallow Crust,0.0,89.99011,0.0,10/18/6134 +1.81506,42.55684,4924,5,20,9,24,48,4.85,5.0,fr,14370,98,610716,1,1,Active Shallow Crust,0.0,89.99002,0.0,05/20/4924 +1.13126,46.64199,7276,10,2,9,57,31,3.55,5.0,fr,14371,145,611040,1,3,Active Shallow Crust,0.0,89.98962,0.0,10/02/7276 +1.13126,46.64199,9038,8,31,2,33,30,3.55,5.0,fr,14372,180,611040,1,3,Active Shallow Crust,0.0,89.98962,0.0,08/31/9038 +1.13126,46.64199,6842,11,2,17,21,16,3.55,5.0,fr,14373,136,611040,1,3,Active Shallow Crust,0.0,89.98962,0.0,11/02/6842 +1.13126,46.64199,4230,12,30,4,35,35,3.55,15.0,fr,14374,84,611041,1,3,Active Shallow Crust,0.0,89.98962,0.0,12/30/4230 +1.13126,46.64199,7823,9,7,5,26,16,3.55,15.0,fr,14375,156,611041,1,3,Active Shallow Crust,0.0,89.98962,0.0,09/07/7823 +1.13126,46.64199,9008,4,11,21,45,52,3.55,15.0,fr,14376,180,611041,1,3,Active Shallow Crust,0.0,89.98962,0.0,04/11/9008 +1.13126,46.64199,3828,7,31,17,20,42,3.55,5.0,fr,14377,76,611049,1,1,Active Shallow Crust,128.8963,89.99308,0.0,07/31/3828 +1.13126,46.64199,3117,8,18,12,30,58,3.65,5.0,fr,14378,62,611052,1,2,Active Shallow Crust,0.0,89.99075,0.0,08/18/3117 +1.13126,46.64199,267,6,20,0,28,14,3.65,5.0,fr,14379,5,611052,1,2,Active Shallow Crust,0.0,89.99075,0.0,06/20/0267 +1.13126,46.64199,929,2,7,3,5,32,3.65,5.0,fr,14380,18,611058,1,1,Active Shallow Crust,0.0,89.99064,-90.0,02/07/0929 +1.13126,46.64199,5352,7,22,9,51,21,3.65,5.0,fr,14381,107,611061,1,1,Active Shallow Crust,128.9002,89.96352,0.0,07/22/5352 +1.13126,46.64199,6236,9,20,15,26,13,3.75,5.0,fr,14382,124,611064,1,1,Active Shallow Crust,0.0,89.99038,0.0,09/20/6236 +1.13126,46.64199,718,5,25,15,15,25,3.75,5.0,fr,14383,14,611070,1,1,Active Shallow Crust,0.0,89.99026,-90.0,05/25/0718 +1.13126,46.64199,6105,2,5,23,7,14,3.85,5.0,fr,14384,122,611076,1,1,Active Shallow Crust,0.0,89.9902,0.0,02/05/6105 +1.13126,46.64199,399,4,2,16,30,52,3.85,5.0,fr,14385,7,611079,1,2,Active Shallow Crust,240.011,57.99773,0.0,04/02/0399 +1.13126,46.64199,8662,3,14,10,9,1,3.85,5.0,fr,14386,173,611079,1,2,Active Shallow Crust,240.011,57.99773,0.0,03/14/8662 +1.13126,46.64199,7428,4,7,22,6,27,3.95,5.0,fr,14387,148,611091,1,1,Active Shallow Crust,240.0198,58.00496,0.0,04/07/7428 +1.13126,46.64199,8894,10,10,20,50,11,4.05,5.0,fr,14388,177,611100,1,1,Active Shallow Crust,0.0,89.99026,0.0,10/10/8894 +1.13126,46.64199,3384,7,28,7,39,59,4.15,5.0,fr,14389,67,611112,1,1,Active Shallow Crust,0.0,89.98959,0.0,07/28/3384 +1.13126,46.64199,92,10,18,13,15,55,4.15,5.0,fr,14390,1,611121,1,1,Active Shallow Crust,128.8976,89.99349,0.0,10/18/0092 +1.13126,46.64199,6385,8,8,17,34,5,4.25,5.0,fr,14391,127,611124,1,2,Active Shallow Crust,0.0,89.98995,0.0,08/08/6385 +1.13126,46.64199,5157,1,23,0,21,39,4.25,5.0,fr,14392,103,611124,1,2,Active Shallow Crust,0.0,89.98995,0.0,01/23/5157 +1.13126,46.64199,8166,8,16,8,20,41,4.25,15.0,fr,14393,163,611125,1,3,Active Shallow Crust,0.0,89.98995,0.0,08/16/8166 +1.13126,46.64199,5634,5,14,19,25,3,4.25,15.0,fr,14394,112,611125,1,3,Active Shallow Crust,0.0,89.98995,0.0,05/14/5634 +1.13126,46.64199,8474,12,28,10,47,11,4.25,15.0,fr,14395,169,611125,1,3,Active Shallow Crust,0.0,89.98995,0.0,12/28/8474 +1.13126,46.64199,3527,7,9,3,9,8,4.45,15.0,fr,14396,70,611149,1,1,Active Shallow Crust,0.0,89.99017,0.0,07/09/3527 +1.13126,46.64199,3893,11,6,1,7,17,5.25,15.0,fr,14397,77,611245,1,1,Active Shallow Crust,0.0,89.98997,0.0,11/06/3893 +-0.03875,43.30362,6822,11,7,17,44,3,3.55,5.0,fr,14398,136,611520,1,3,Active Shallow Crust,0.0,89.99002,0.0,11/07/6822 +-0.03875,43.30362,3348,1,26,4,23,4,3.55,5.0,fr,14399,66,611520,1,3,Active Shallow Crust,0.0,89.99002,0.0,01/26/3348 +-0.03875,43.30362,7808,2,9,1,3,27,3.55,5.0,fr,14400,156,611520,1,3,Active Shallow Crust,0.0,89.99002,0.0,02/09/7808 +-0.03875,43.30362,4560,1,7,21,6,40,3.65,5.0,fr,14401,91,611532,1,2,Active Shallow Crust,0.0,89.98998,0.0,01/07/4560 +-0.03875,43.30362,988,5,9,10,3,1,3.65,5.0,fr,14402,19,611532,1,2,Active Shallow Crust,0.0,89.98998,0.0,05/09/0988 +-0.03875,43.30362,8088,6,24,22,40,23,3.65,15.0,fr,14403,161,611536,1,1,Active Shallow Crust,240.0008,58.01284,0.0,06/24/8088 +-0.03875,43.30362,2083,10,21,1,15,3,3.65,15.0,fr,14404,41,611542,1,1,Active Shallow Crust,128.9007,89.96351,0.0,10/21/2083 +-0.03875,43.30362,6160,9,7,11,43,39,3.75,5.0,fr,14405,123,611544,1,1,Active Shallow Crust,0.0,89.98998,0.0,09/07/6160 +-0.03875,43.30362,4240,8,12,23,12,55,3.75,5.0,fr,14406,84,611547,1,1,Active Shallow Crust,240.008,58.01751,0.0,08/12/4240 +-0.03875,43.30362,7974,7,23,9,34,40,3.85,5.0,fr,14407,159,611556,1,2,Active Shallow Crust,0.0,89.99001,0.0,07/23/7974 +-0.03875,43.30362,6778,12,17,18,49,27,3.85,5.0,fr,14408,135,611556,1,2,Active Shallow Crust,0.0,89.99001,0.0,12/17/6778 +-0.03875,43.30362,2905,5,20,3,2,50,3.85,27.5,fr,14409,58,611558,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/20/2905 +-0.03875,43.30362,8608,3,21,6,31,59,3.95,5.0,fr,14410,172,611568,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/21/8608 +-0.03875,43.30362,4614,9,12,13,2,14,4.25,5.0,fr,14411,92,611604,1,2,Active Shallow Crust,360.0,89.99001,0.0,09/12/4614 +-0.03875,43.30362,3954,5,22,12,31,53,4.25,5.0,fr,14412,79,611604,1,2,Active Shallow Crust,360.0,89.99001,0.0,05/22/3954 +-0.03875,43.30362,9493,3,23,0,30,3,4.35,5.0,fr,14413,189,611616,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/23/9493 +-0.03875,43.30362,2314,3,5,19,39,31,4.65,27.5,fr,14414,46,611654,1,1,Active Shallow Crust,0.0,89.99,0.0,03/05/2314 +5.5117,42.83221,4958,3,18,0,37,18,3.55,15.0,fr,14415,99,612001,1,1,Active Shallow Crust,0.0,89.99261,0.0,03/18/4958 +5.5117,42.83221,5991,6,5,1,2,21,3.65,5.0,fr,14416,119,612012,1,1,Active Shallow Crust,0.0,89.98682,0.0,06/05/5991 +5.5117,42.83221,9981,1,5,15,45,1,3.65,15.0,fr,14417,199,612013,1,1,Active Shallow Crust,0.0,89.98682,0.0,01/05/9981 +5.5117,42.83221,4276,11,7,1,38,7,3.75,5.0,fr,14418,85,612024,1,1,Active Shallow Crust,0.0,89.98825,0.0,11/07/4276 +5.5117,42.83221,9971,4,29,11,56,35,4.75,5.0,fr,14419,199,612144,1,1,Active Shallow Crust,0.0,89.99071,0.0,04/29/9971 +-3.17886,43.09762,9279,8,3,18,54,57,3.55,5.0,fr,14420,185,612480,1,3,Active Shallow Crust,0.0,89.98895,0.0,08/03/9279 +-3.17886,43.09762,8736,3,1,14,26,7,3.55,5.0,fr,14421,174,612480,1,3,Active Shallow Crust,0.0,89.98895,0.0,03/01/8736 +-3.17886,43.09762,7241,5,28,15,15,23,3.55,5.0,fr,14422,144,612480,1,3,Active Shallow Crust,0.0,89.98895,0.0,05/28/7241 +-3.17886,43.09762,1526,2,6,15,3,39,3.55,15.0,fr,14423,30,612481,1,1,Active Shallow Crust,0.0,89.98895,0.0,02/06/1526 +-3.17886,43.09762,3428,2,28,10,49,32,3.65,27.5,fr,14424,68,612494,1,1,Active Shallow Crust,0.0,89.99016,0.0,02/28/3428 +-3.17886,43.09762,5159,11,7,5,38,4,3.75,5.0,fr,14425,103,612504,1,1,Active Shallow Crust,0.0,89.99123,0.0,11/07/5159 +-3.17886,43.09762,7849,7,27,16,45,9,4.05,5.0,fr,14426,156,612540,1,1,Active Shallow Crust,0.0,89.98965,0.0,07/27/7849 +-3.17886,43.09762,1447,10,26,6,58,37,4.25,5.0,fr,14427,28,612564,1,1,Active Shallow Crust,0.0,89.99014,0.0,10/26/1447 +-3.17886,43.09762,1798,3,31,10,41,11,4.35,5.0,fr,14428,35,612576,1,1,Active Shallow Crust,0.0,89.98974,0.0,03/31/1798 +-3.17886,43.09762,4761,5,8,12,48,13,5.65,5.0,fr,14429,95,612732,1,1,Active Shallow Crust,0.0,89.99015,0.0,05/08/4761 +-3.59506,43.88311,941,3,14,15,21,40,3.55,5.0,fr,14430,18,612960,1,1,Active Shallow Crust,0.0,89.9891,0.0,03/14/0941 +-3.59506,43.88311,1314,6,23,12,43,24,3.55,5.0,fr,14431,26,612963,1,1,Active Shallow Crust,240.0125,57.99813,0.0,06/23/1314 +-3.59506,43.88311,3997,10,15,7,31,52,3.65,5.0,fr,14432,79,612975,1,1,Active Shallow Crust,240.0012,58.01245,0.0,10/15/3997 +-3.59506,43.88311,9104,3,7,8,7,47,3.65,15.0,fr,14433,182,612976,1,1,Active Shallow Crust,240.0012,58.01245,0.0,03/07/9104 +-3.28304,47.50264,4746,8,7,4,45,34,3.65,5.0,fr,14434,94,613458,1,1,Active Shallow Crust,0.0,89.99078,-90.0,08/07/4746 +-3.28304,47.50264,7238,2,1,13,25,24,3.75,5.0,fr,14435,144,613464,1,1,Active Shallow Crust,0.0,89.98917,0.0,02/01/7238 +-3.28304,47.50264,8285,3,9,20,59,43,3.85,5.0,fr,14436,165,613476,1,1,Active Shallow Crust,0.0,89.99036,0.0,03/09/8285 +-3.28304,47.50264,5986,8,25,10,56,21,3.95,5.0,fr,14437,119,613488,1,1,Active Shallow Crust,0.0,89.98926,0.0,08/25/5986 +-2.70637,48.63906,9476,8,7,11,11,54,3.55,5.0,fr,14438,189,613920,1,1,Active Shallow Crust,0.0,89.99001,0.0,08/07/9476 +-2.70637,48.63906,3342,1,25,19,6,45,3.55,15.0,fr,14439,66,613921,1,1,Active Shallow Crust,0.0,89.99001,0.0,01/25/3342 +-2.70637,48.63906,2165,8,27,19,36,3,3.55,5.0,fr,14440,43,613929,1,1,Active Shallow Crust,128.8953,89.995,0.0,08/27/2165 +-2.70637,48.63906,3970,10,20,9,22,18,3.65,5.0,fr,14441,79,613932,1,1,Active Shallow Crust,0.0,89.99109,0.0,10/20/3970 +-2.70637,48.63906,5882,2,7,0,1,19,3.65,27.5,fr,14442,117,613934,1,2,Active Shallow Crust,0.0,89.99109,0.0,02/07/5882 +-2.70637,48.63906,3155,12,18,15,2,26,3.65,27.5,fr,14443,63,613934,1,2,Active Shallow Crust,0.0,89.99109,0.0,12/18/3155 +-2.70637,48.63906,8989,7,14,6,4,22,3.75,5.0,fr,14444,179,613944,1,2,Active Shallow Crust,0.0,89.98941,0.0,07/14/8989 +-2.70637,48.63906,4854,6,22,23,16,38,3.75,5.0,fr,14445,97,613944,1,2,Active Shallow Crust,0.0,89.98941,0.0,06/22/4854 +-2.70637,48.63906,7039,2,15,15,10,46,3.75,15.0,fr,14446,140,613945,1,1,Active Shallow Crust,0.0,89.98941,0.0,02/15/7039 +-2.70637,48.63906,2190,5,18,13,59,45,3.75,27.5,fr,14447,43,613952,1,1,Active Shallow Crust,0.0,89.98929,-90.0,05/18/2190 +-2.70637,48.63906,283,7,10,3,17,12,3.85,27.5,fr,14448,5,613967,1,1,Active Shallow Crust,128.8955,89.9941,0.0,07/10/0283 +-2.70637,48.63906,2145,8,3,2,48,43,3.95,5.0,fr,14449,42,613968,1,1,Active Shallow Crust,0.0,89.98949,0.0,08/03/2145 +-2.70637,48.63906,6313,3,27,18,23,46,4.05,15.0,fr,14450,126,613981,1,1,Active Shallow Crust,0.0,89.99063,0.0,03/27/6313 +-2.70637,48.63906,8938,1,29,22,19,14,4.15,27.5,fr,14451,178,613994,1,1,Active Shallow Crust,0.0,89.98998,0.0,01/29/8938 +-2.70637,48.63906,2398,7,11,21,13,15,4.25,15.0,fr,14452,47,614005,1,1,Active Shallow Crust,0.0,89.98958,0.0,07/11/2398 +-2.70637,48.63906,3976,5,1,16,21,38,4.25,5.0,fr,14453,79,614007,1,1,Active Shallow Crust,240.0081,57.99387,0.0,05/01/3976 +-2.70637,48.63906,6766,5,23,11,21,54,4.85,15.0,fr,14454,135,614077,1,1,Active Shallow Crust,0.0,89.9903,0.0,05/23/6766 +-2.70637,48.63906,7432,7,28,16,25,55,5.35,5.0,fr,14455,148,614136,1,1,Active Shallow Crust,0.0,89.98993,0.0,07/28/7432 +0.41498,46.05599,2637,1,2,0,52,41,3.55,5.0,fr,14456,52,614400,1,2,Active Shallow Crust,0.0,89.98994,0.0,01/02/2637 +0.41498,46.05599,1187,8,16,20,16,47,3.55,5.0,fr,14457,23,614400,1,2,Active Shallow Crust,0.0,89.98994,0.0,08/16/1187 +0.41498,46.05599,6068,12,3,0,24,43,3.65,15.0,fr,14458,121,614413,1,1,Active Shallow Crust,0.0,89.98987,0.0,12/03/6068 +0.41498,46.05599,4814,10,28,22,15,25,3.65,5.0,fr,14459,96,614418,1,1,Active Shallow Crust,0.0,89.99014,-90.0,10/28/4814 +0.41498,46.05599,6186,5,17,10,38,57,3.75,5.0,fr,14460,123,614424,1,1,Active Shallow Crust,0.0,89.98992,0.0,05/17/6186 +0.41498,46.05599,84,8,3,2,29,43,3.75,27.5,fr,14461,1,614429,1,1,Active Shallow Crust,240.0084,58.01756,0.0,08/03/0084 +0.41498,46.05599,3487,10,11,3,20,54,3.85,5.0,fr,14462,69,614436,1,4,Active Shallow Crust,0.0,89.99009,0.0,10/11/3487 +0.41498,46.05599,1960,10,4,6,29,25,3.85,5.0,fr,14463,39,614436,1,4,Active Shallow Crust,0.0,89.99009,0.0,10/04/1960 +0.41498,46.05599,934,5,30,17,34,6,3.85,5.0,fr,14464,18,614436,1,4,Active Shallow Crust,0.0,89.99009,0.0,05/30/0934 +0.41498,46.05599,4866,12,7,19,20,0,3.85,5.0,fr,14465,97,614436,1,4,Active Shallow Crust,0.0,89.99009,0.0,12/07/4866 +0.41498,46.05599,3530,7,22,6,7,8,3.85,5.0,fr,14466,70,614445,1,1,Active Shallow Crust,128.8957,89.9938,0.0,07/22/3530 +0.41498,46.05599,4972,10,16,10,42,7,4.25,5.0,fr,14467,99,614487,1,1,Active Shallow Crust,240.0075,57.99407,0.0,10/16/4972 +0.41498,46.05599,707,3,17,13,28,59,4.55,27.5,fr,14468,14,614522,1,1,Active Shallow Crust,0.0,89.99004,0.0,03/17/0707 +0.41498,46.05599,2437,2,11,7,30,22,4.85,5.0,fr,14469,48,614559,1,1,Active Shallow Crust,240.0169,58.00229,0.0,02/11/2437 +0.41498,46.05599,8719,6,4,19,40,54,5.65,15.0,fr,14470,174,614653,1,1,Active Shallow Crust,360.0,89.99001,0.0,06/04/8719 +7.25059,44.11262,5979,5,25,15,39,48,3.55,5.0,fr,14471,119,615360,1,2,Active Shallow Crust,0.0,89.99276,0.0,05/25/5979 +7.25059,44.11262,5765,9,3,17,18,14,3.55,5.0,fr,14472,115,615360,1,2,Active Shallow Crust,0.0,89.99276,0.0,09/03/5765 +7.25059,44.11262,9029,10,22,11,19,17,3.55,15.0,fr,14473,180,615361,1,3,Active Shallow Crust,0.0,89.99276,0.0,10/22/9029 +7.25059,44.11262,3864,4,27,8,46,53,3.55,15.0,fr,14474,77,615361,1,3,Active Shallow Crust,0.0,89.99276,0.0,04/27/3864 +7.25059,44.11262,3802,11,16,19,23,53,3.55,15.0,fr,14475,76,615361,1,3,Active Shallow Crust,0.0,89.99276,0.0,11/16/3802 +7.25059,44.11262,4872,3,2,8,19,55,3.55,27.5,fr,14476,97,615365,1,1,Active Shallow Crust,240.0127,57.99756,0.0,03/02/4872 +7.25059,44.11262,9640,9,5,20,17,54,3.65,5.0,fr,14477,192,615372,1,3,Active Shallow Crust,0.0,89.98709,0.0,09/05/9640 +7.25059,44.11262,7893,8,25,12,56,43,3.65,5.0,fr,14478,157,615372,1,3,Active Shallow Crust,0.0,89.98709,0.0,08/25/7893 +7.25059,44.11262,6274,6,28,5,39,18,3.65,5.0,fr,14479,125,615372,1,3,Active Shallow Crust,0.0,89.98709,0.0,06/28/6274 +7.25059,44.11262,4427,1,18,21,0,48,3.65,27.5,fr,14480,88,615374,1,1,Active Shallow Crust,0.0,89.98709,0.0,01/18/4427 +7.25059,44.11262,7528,10,3,4,6,38,3.65,5.0,fr,14481,150,615375,1,1,Active Shallow Crust,240.0006,58.01337,0.0,10/03/7528 +7.25059,44.11262,1847,12,28,9,24,48,3.75,5.0,fr,14482,36,615384,1,2,Active Shallow Crust,0.0,89.98849,0.0,12/28/1847 +7.25059,44.11262,9138,11,2,22,25,25,3.75,5.0,fr,14483,182,615384,1,2,Active Shallow Crust,0.0,89.98849,0.0,11/02/9138 +7.25059,44.11262,4863,1,2,10,41,56,3.75,15.0,fr,14484,97,615385,1,1,Active Shallow Crust,0.0,89.98849,0.0,01/02/4863 +7.25059,44.11262,9870,12,22,13,56,11,3.85,5.0,fr,14485,197,615399,1,1,Active Shallow Crust,240.0101,57.99844,0.0,12/22/9870 +7.25059,44.11262,1054,6,22,22,10,36,3.85,5.0,fr,14486,21,615402,1,1,Active Shallow Crust,0.0,89.98963,-90.0,06/22/1054 +7.25059,44.11262,744,3,21,15,32,56,3.85,15.0,fr,14487,14,615406,1,1,Active Shallow Crust,128.8961,89.99231,0.0,03/21/0744 +7.25059,44.11262,7304,3,30,6,40,35,3.95,5.0,fr,14488,146,615408,1,1,Active Shallow Crust,0.0,89.99086,0.0,03/30/7304 +7.25059,44.11262,9204,6,2,21,8,6,3.95,15.0,fr,14489,184,615409,1,1,Active Shallow Crust,0.0,89.99086,0.0,06/02/9204 +7.25059,44.11262,4597,3,16,17,43,8,4.05,15.0,fr,14490,91,615421,1,1,Active Shallow Crust,0.0,89.99186,0.0,03/16/4597 +7.25059,44.11262,804,11,1,7,37,30,4.15,5.0,fr,14491,16,615432,1,1,Active Shallow Crust,0.0,89.98911,0.0,11/01/0804 +7.25059,44.11262,4035,10,29,13,34,37,4.15,5.0,fr,14492,80,615441,1,1,Active Shallow Crust,128.8983,89.99274,0.0,10/29/4035 +7.25059,44.11262,3544,6,29,9,46,21,4.25,5.0,fr,14493,70,615444,1,1,Active Shallow Crust,0.0,89.9903,0.0,06/29/3544 +7.25059,44.11262,7511,5,19,13,13,42,4.25,5.0,fr,14494,150,615450,1,1,Active Shallow Crust,0.0,89.99019,-90.0,05/19/7511 +7.25059,44.11262,1031,4,19,19,14,11,4.35,5.0,fr,14495,20,615465,1,1,Active Shallow Crust,128.8985,89.98294,0.0,04/19/1031 +7.25059,44.11262,1090,8,9,21,31,33,4.45,5.0,fr,14496,21,615468,1,1,Active Shallow Crust,0.0,89.98972,0.0,08/09/1090 +7.25059,44.11262,7460,2,20,12,20,39,4.45,5.0,fr,14497,149,615477,1,1,Active Shallow Crust,128.8925,89.99358,0.0,02/20/7460 +7.25059,44.11262,4488,12,30,22,43,1,4.55,5.0,fr,14498,89,615480,1,1,Active Shallow Crust,0.0,89.99084,0.0,12/30/4488 +7.25059,44.11262,9280,11,30,16,40,52,4.75,5.0,fr,14499,185,615504,1,1,Active Shallow Crust,359.9991,89.99091,0.0,11/30/9280 +7.25059,44.11262,250,7,9,5,3,43,4.95,5.0,fr,14500,4,615528,1,1,Active Shallow Crust,0.0,89.98988,0.0,07/09/0250 +5.56409,44.56892,7205,4,29,14,46,31,3.55,5.0,fr,14501,144,615840,1,1,Active Shallow Crust,0.0,89.99281,0.0,04/29/7205 +5.56409,44.56892,4238,2,11,7,0,52,3.55,27.5,fr,14502,84,615842,1,1,Active Shallow Crust,0.0,89.99281,0.0,02/11/4238 +5.56409,44.56892,4565,7,1,4,14,51,3.55,15.0,fr,14503,91,615847,1,1,Active Shallow Crust,0.0,89.99273,-90.0,07/01/4565 +5.56409,44.56892,8294,1,19,7,29,0,3.65,5.0,fr,14504,165,615858,1,1,Active Shallow Crust,0.0,89.98705,-90.0,01/19/8294 +5.56409,44.56892,6500,4,17,21,49,24,3.75,5.0,fr,14505,129,615864,1,1,Active Shallow Crust,0.0,89.98859,0.0,04/17/6500 +5.56409,44.56892,7026,9,6,22,34,3,3.95,5.0,fr,14506,140,615897,1,1,Active Shallow Crust,128.9003,89.9932,0.0,09/06/7026 +5.56409,44.56892,7186,4,1,8,25,37,4.05,5.0,fr,14507,143,615900,1,1,Active Shallow Crust,0.0,89.99192,0.0,04/01/7186 +5.56409,44.56892,1793,12,18,6,1,44,4.15,5.0,fr,14508,35,615918,1,1,Active Shallow Crust,0.0,89.98907,-90.0,12/18/1793 +5.56409,44.56892,7198,3,9,17,47,3,4.15,15.0,fr,14509,143,615922,1,1,Active Shallow Crust,128.8983,89.9928,0.0,03/09/7198 +5.56409,44.56892,8462,10,27,13,5,8,4.25,5.0,fr,14510,169,615924,1,1,Active Shallow Crust,0.0,89.99037,0.0,10/27/8462 +5.56409,44.56892,4826,10,1,7,2,17,4.25,27.5,fr,14511,96,615926,1,1,Active Shallow Crust,0.0,89.99037,0.0,10/01/4826 +5.56409,44.56892,6679,2,4,0,23,40,4.45,5.0,fr,14512,133,615948,1,1,Active Shallow Crust,0.0,89.98981,0.0,02/04/6679 +1.15781,41.24288,2169,3,22,16,5,47,3.65,15.0,fr,14513,43,616333,1,1,Active Shallow Crust,0.0,89.98986,0.0,03/22/2169 +1.15781,41.24288,8216,1,30,5,33,10,3.75,5.0,fr,14514,164,616344,1,1,Active Shallow Crust,0.0,89.98946,0.0,01/30/8216 +1.15781,41.24288,6000,10,18,13,2,5,3.75,15.0,fr,14515,119,616345,1,1,Active Shallow Crust,0.0,89.98946,0.0,10/18/6000 +1.15781,41.24288,4776,8,17,23,54,15,3.75,5.0,fr,14516,95,616347,1,1,Active Shallow Crust,240.0079,58.01734,0.0,08/17/4776 +1.15781,41.24288,5035,1,20,16,36,7,3.85,5.0,fr,14517,100,616356,1,2,Active Shallow Crust,0.0,89.99061,0.0,01/20/5035 +1.15781,41.24288,6199,3,19,16,53,18,3.85,5.0,fr,14518,123,616356,1,2,Active Shallow Crust,0.0,89.99061,0.0,03/19/6199 +1.15781,41.24288,5826,3,23,11,21,4,3.85,15.0,fr,14519,116,616357,1,1,Active Shallow Crust,0.0,89.99061,0.0,03/23/5826 +1.15781,41.24288,1705,2,23,20,37,58,3.95,5.0,fr,14520,34,616368,1,1,Active Shallow Crust,0.0,89.99043,0.0,02/23/1705 +1.15781,41.24288,9272,5,28,15,21,39,4.15,27.5,fr,14521,185,616400,1,1,Active Shallow Crust,0.0,89.99039,-90.0,05/28/9272 +1.15781,41.24288,812,10,14,2,47,25,4.25,5.0,fr,14522,16,616404,1,2,Active Shallow Crust,0.0,89.98984,0.0,10/14/0812 +1.15781,41.24288,4571,3,26,16,1,24,4.25,5.0,fr,14523,91,616404,1,2,Active Shallow Crust,0.0,89.98984,0.0,03/26/4571 +1.15781,41.24288,4278,3,27,1,5,24,4.25,15.0,fr,14524,85,616405,1,1,Active Shallow Crust,0.0,89.98984,0.0,03/27/4278 +1.15781,41.24288,9984,8,7,12,37,8,4.35,27.5,fr,14525,199,616421,1,1,Active Shallow Crust,240.0073,57.99567,0.0,08/07/9984 +1.15781,41.24288,2293,4,9,13,3,34,4.95,5.0,fr,14526,45,616488,1,1,Active Shallow Crust,0.0,89.99017,0.0,04/09/2293 +1.15781,41.24288,6838,4,25,3,56,0,4.95,5.0,fr,14527,136,616491,1,1,Active Shallow Crust,240.0097,58.00399,0.0,04/25/6838 +2.19176,51.53959,1234,3,20,23,5,46,3.55,5.0,fr,14528,24,616800,1,1,Active Shallow Crust,0.0,89.99059,0.0,03/20/1234 +2.19176,51.53959,4803,11,9,5,33,1,3.75,5.0,fr,14529,96,616824,1,1,Active Shallow Crust,0.0,89.99004,0.0,11/09/4803 +2.19176,51.53959,7023,1,15,19,30,43,3.85,5.0,fr,14530,140,616836,1,1,Active Shallow Crust,0.0,89.9889,0.0,01/15/7023 +2.19176,51.53959,8641,8,11,22,40,41,3.85,27.5,fr,14531,172,616838,1,1,Active Shallow Crust,0.0,89.9889,0.0,08/11/8641 +2.19176,51.53959,2008,1,7,8,51,24,3.95,27.5,fr,14532,40,616859,1,1,Active Shallow Crust,128.8998,89.99406,0.0,01/07/2008 +2.19176,51.53959,170,7,6,13,35,35,4.05,5.0,fr,14533,3,616866,1,1,Active Shallow Crust,0.0,89.9893,-90.0,07/06/0170 +2.19176,51.53959,5744,5,27,21,56,35,4.55,5.0,fr,14534,114,616920,1,1,Active Shallow Crust,0.0,89.99008,0.0,05/27/5744 +2.19176,51.53959,9952,4,9,16,5,11,5.25,27.5,fr,14535,199,617006,1,1,Active Shallow Crust,0.0,89.98981,0.0,04/09/9952 +4.65211,41.64122,5050,4,4,7,58,28,3.65,5.0,fr,14536,100,617292,1,1,Active Shallow Crust,0.0,89.99329,0.0,04/04/5050 +4.65211,41.64122,7340,8,17,18,39,11,3.65,15.0,fr,14537,146,617293,1,1,Active Shallow Crust,0.0,89.99329,0.0,08/17/7340 +1.74692,51.52688,5205,11,6,20,15,58,3.55,5.0,fr,14538,104,617760,1,2,Active Shallow Crust,0.0,89.99059,0.0,11/06/5205 +1.74692,51.52688,8834,11,29,1,1,12,3.55,5.0,fr,14539,176,617760,1,2,Active Shallow Crust,0.0,89.99059,0.0,11/29/8834 +1.74692,51.52688,8935,6,17,16,9,10,3.55,15.0,fr,14540,178,617761,1,2,Active Shallow Crust,0.0,89.99059,0.0,06/17/8935 +1.74692,51.52688,6204,12,26,6,17,52,3.55,15.0,fr,14541,124,617761,1,2,Active Shallow Crust,0.0,89.99059,0.0,12/26/6204 +1.74692,51.52688,1991,1,25,2,29,6,3.55,15.0,fr,14542,39,617770,1,1,Active Shallow Crust,128.8961,89.99373,0.0,01/25/1991 +1.74692,51.52688,2201,10,14,3,32,38,3.65,27.5,fr,14543,44,617777,1,1,Active Shallow Crust,240.0017,58.01266,0.0,10/14/2201 +1.74692,51.52688,3738,8,5,17,3,21,3.75,5.0,fr,14544,74,617784,1,1,Active Shallow Crust,0.0,89.99004,0.0,08/05/3738 +1.74692,51.52688,4587,2,18,13,38,54,3.85,5.0,fr,14545,91,617796,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/18/4587 +1.74692,51.52688,4614,6,28,19,3,8,3.95,15.0,fr,14546,92,617815,1,1,Active Shallow Crust,0.0,89.98999,-90.0,06/28/4614 +1.74692,51.52688,5294,9,8,12,26,38,4.15,5.0,fr,14547,105,617832,1,1,Active Shallow Crust,0.0,89.98978,0.0,09/08/5294 +1.74692,51.52688,1391,1,10,16,35,31,4.85,15.0,fr,14548,27,617917,1,1,Active Shallow Crust,0.0,89.99017,0.0,01/10/1391 +1.74692,51.52688,5638,6,11,11,24,13,5.35,5.0,fr,14549,112,617976,1,1,Active Shallow Crust,0.0,89.98993,0.0,06/11/5638 +9.15181,50.2434,2772,8,22,6,14,51,3.75,15.0,fr,14550,55,618265,1,1,Active Shallow Crust,0.0,89.98975,0.0,08/22/2772 +9.15181,50.2434,1038,10,29,2,9,28,3.85,5.0,fr,14551,20,618285,1,1,Active Shallow Crust,128.8959,89.99087,0.0,10/29/1038 +9.15181,50.2434,1406,2,3,4,5,34,4.25,15.0,fr,14552,28,618334,1,1,Active Shallow Crust,128.8936,89.98109,0.0,02/03/1406 +9.15181,50.2434,3393,5,27,20,4,41,4.55,15.0,fr,14553,67,618364,1,1,Active Shallow Crust,240.0114,57.99686,0.0,05/27/3393 +9.15181,50.2434,4515,6,2,19,11,11,4.55,15.0,fr,14554,90,618367,1,1,Active Shallow Crust,0.0,89.99174,-90.0,06/02/4515 +1.68793,50.75056,286,5,26,0,42,30,3.65,5.0,fr,14555,5,618732,1,2,Active Shallow Crust,0.0,89.99005,0.0,05/26/0286 +1.68793,50.75056,7257,3,27,13,26,37,3.65,5.0,fr,14556,145,618732,1,2,Active Shallow Crust,0.0,89.99005,0.0,03/27/7257 +1.68793,50.75056,6481,4,14,8,50,34,3.65,15.0,fr,14557,129,618733,1,1,Active Shallow Crust,0.0,89.99005,0.0,04/14/6481 +1.68793,50.75056,1791,7,4,20,14,49,3.75,5.0,fr,14558,35,618747,1,1,Active Shallow Crust,240.0088,58.01763,0.0,07/04/1791 +1.68793,50.75056,7487,4,17,14,13,53,3.85,5.0,fr,14559,149,618756,1,2,Active Shallow Crust,0.0,89.98984,0.0,04/17/7487 +1.68793,50.75056,9194,9,17,1,54,51,3.85,5.0,fr,14560,183,618756,1,2,Active Shallow Crust,0.0,89.98984,0.0,09/17/9194 +1.68793,50.75056,5810,11,21,17,2,54,3.95,5.0,fr,14561,116,618768,1,2,Active Shallow Crust,0.0,89.98994,0.0,11/21/5810 +1.68793,50.75056,5248,12,26,3,9,14,3.95,5.0,fr,14562,104,618768,1,2,Active Shallow Crust,0.0,89.98994,0.0,12/26/5248 +1.68793,50.75056,7904,10,9,1,23,49,4.45,5.0,fr,14563,158,618831,1,1,Active Shallow Crust,240.0065,57.99484,0.0,10/09/7904 +6.45094,44.41634,2524,2,28,12,54,15,3.55,5.0,fr,14564,50,619200,1,1,Active Shallow Crust,0.0,89.9928,0.0,02/28/2524 +6.45094,44.41634,3927,5,21,20,41,18,3.55,15.0,fr,14565,78,619201,1,1,Active Shallow Crust,0.0,89.9928,0.0,05/21/3927 +6.45094,44.41634,66,8,22,17,19,57,3.55,27.5,fr,14566,1,619202,1,1,Active Shallow Crust,0.0,89.9928,0.0,08/22/0066 +6.45094,44.41634,354,5,26,19,56,15,3.55,5.0,fr,14567,7,619203,1,2,Active Shallow Crust,240.0109,57.99876,0.0,05/26/0354 +6.45094,44.41634,7225,10,9,3,1,28,3.55,5.0,fr,14568,144,619203,1,2,Active Shallow Crust,240.0109,57.99876,0.0,10/09/7225 +6.45094,44.41634,1437,12,3,2,13,28,3.55,15.0,fr,14569,28,619204,1,1,Active Shallow Crust,240.0109,57.99876,0.0,12/03/1437 +6.45094,44.41634,8843,8,28,6,9,28,3.55,27.5,fr,14570,176,619211,1,1,Active Shallow Crust,128.8967,89.9928,0.0,08/28/8843 +6.45094,44.41634,7387,8,31,1,49,29,3.65,5.0,fr,14571,147,619212,1,4,Active Shallow Crust,0.0,89.98716,0.0,08/31/7387 +6.45094,44.41634,3739,9,4,13,40,20,3.65,5.0,fr,14572,74,619212,1,4,Active Shallow Crust,0.0,89.98716,0.0,09/04/3739 +6.45094,44.41634,9248,10,2,4,20,55,3.65,5.0,fr,14573,184,619212,1,4,Active Shallow Crust,0.0,89.98716,0.0,10/02/9248 +6.45094,44.41634,2365,6,14,1,52,52,3.65,5.0,fr,14574,47,619212,1,4,Active Shallow Crust,0.0,89.98716,0.0,06/14/2365 +6.45094,44.41634,5045,12,20,8,4,24,3.65,5.0,fr,14575,100,619215,1,1,Active Shallow Crust,240.0012,58.01251,0.0,12/20/5045 +6.45094,44.41634,6691,4,8,15,56,7,3.75,5.0,fr,14576,133,619224,1,3,Active Shallow Crust,0.0,89.98856,0.0,04/08/6691 +6.45094,44.41634,4443,12,18,21,19,13,3.75,5.0,fr,14577,88,619224,1,3,Active Shallow Crust,0.0,89.98856,0.0,12/18/4443 +6.45094,44.41634,6622,11,4,7,47,17,3.75,5.0,fr,14578,132,619224,1,3,Active Shallow Crust,0.0,89.98856,0.0,11/04/6622 +6.45094,44.41634,7185,3,8,5,21,7,3.75,15.0,fr,14579,143,619234,1,1,Active Shallow Crust,128.8972,89.96745,0.0,03/08/7185 +6.45094,44.41634,7070,12,7,2,49,58,3.85,5.0,fr,14580,141,619236,1,1,Active Shallow Crust,0.0,89.9898,0.0,12/07/7070 +6.45094,44.41634,9150,5,25,6,7,51,3.85,15.0,fr,14581,182,619240,1,1,Active Shallow Crust,240.011,57.9981,0.0,05/25/9150 +6.45094,44.41634,9649,6,15,17,7,31,3.85,5.0,fr,14582,192,619242,1,1,Active Shallow Crust,0.0,89.98969,-90.0,06/15/9649 +6.45094,44.41634,5311,3,30,15,15,54,3.85,5.0,fr,14583,106,619245,1,1,Active Shallow Crust,128.8963,89.99236,0.0,03/30/5311 +6.45094,44.41634,7501,2,15,3,11,38,3.95,5.0,fr,14584,150,619248,1,1,Active Shallow Crust,0.0,89.99091,0.0,02/15/7501 +6.45094,44.41634,3871,7,2,20,26,33,3.95,15.0,fr,14585,77,619249,1,1,Active Shallow Crust,0.0,89.99091,0.0,07/02/3871 +6.45094,44.41634,5326,11,4,3,28,48,4.05,5.0,fr,14586,106,619260,1,1,Active Shallow Crust,0.0,89.9919,0.0,11/04/5326 +6.45094,44.41634,8689,5,25,15,30,14,4.05,15.0,fr,14587,173,619261,1,1,Active Shallow Crust,0.0,89.9919,0.0,05/25/8689 +6.45094,44.41634,9619,9,22,17,37,17,4.05,5.0,fr,14588,192,619263,1,2,Active Shallow Crust,240.0057,58.0057,0.0,09/22/9619 +6.45094,44.41634,4252,3,25,1,40,11,4.05,5.0,fr,14589,85,619263,1,2,Active Shallow Crust,240.0057,58.0057,0.0,03/25/4252 +6.45094,44.41634,4259,8,9,21,9,51,4.05,15.0,fr,14590,85,619264,1,1,Active Shallow Crust,240.0057,58.00567,0.0,08/09/4259 +6.45094,44.41634,8052,6,23,11,30,13,4.15,5.0,fr,14591,161,619272,1,1,Active Shallow Crust,0.0,89.98917,0.0,06/23/8052 +6.45094,44.41634,5150,4,30,8,25,57,4.15,15.0,fr,14592,102,619273,1,1,Active Shallow Crust,0.0,89.98917,0.0,04/30/5150 +6.45094,44.41634,6602,12,7,6,9,38,4.45,15.0,fr,14593,132,619309,1,1,Active Shallow Crust,0.0,89.98978,0.0,12/07/6602 +6.45094,44.41634,8612,12,24,7,46,18,4.55,5.0,fr,14594,172,619320,1,1,Active Shallow Crust,0.0,89.99089,0.0,12/24/8612 +6.45094,44.41634,7146,9,18,5,56,18,5.05,27.5,fr,14595,142,619385,1,1,Active Shallow Crust,240.0212,57.99736,0.0,09/18/7146 +6.45094,44.41634,2950,5,26,11,50,37,5.35,27.5,fr,14596,58,619418,1,1,Active Shallow Crust,0.0,89.99002,0.0,05/26/2950 +0.87689,43.25167,8725,10,12,7,24,46,3.55,15.0,fr,14597,174,620161,1,1,Active Shallow Crust,0.0,89.9899,0.0,10/12/8725 +0.87689,43.25167,5296,6,14,9,48,37,3.65,5.0,fr,14598,105,620172,1,1,Active Shallow Crust,0.0,89.99018,0.0,06/14/5296 +0.87689,43.25167,6110,9,7,3,56,3,3.65,15.0,fr,14599,122,620173,1,2,Active Shallow Crust,0.0,89.99018,0.0,09/07/6110 +0.87689,43.25167,7834,7,31,9,9,27,3.65,15.0,fr,14600,156,620173,1,2,Active Shallow Crust,0.0,89.99018,0.0,07/31/7834 +0.87689,43.25167,204,12,6,6,35,25,3.65,27.5,fr,14601,4,620174,1,2,Active Shallow Crust,0.0,89.99018,0.0,12/06/0204 +0.87689,43.25167,2839,5,23,18,14,20,3.65,27.5,fr,14602,56,620174,1,2,Active Shallow Crust,0.0,89.99018,0.0,05/23/2839 +0.87689,43.25167,5350,2,22,2,41,35,3.75,5.0,fr,14603,106,620184,1,2,Active Shallow Crust,0.0,89.98979,0.0,02/22/5350 +0.87689,43.25167,9639,4,27,11,34,15,3.75,5.0,fr,14604,192,620184,1,2,Active Shallow Crust,0.0,89.98979,0.0,04/27/9639 +0.87689,43.25167,430,2,19,18,53,1,3.75,15.0,fr,14605,8,620188,1,1,Active Shallow Crust,240.0079,58.01753,0.0,02/19/0430 +4.85464,41.6686,6626,3,21,9,20,16,3.85,5.0,fr,14606,132,620676,1,1,Active Shallow Crust,0.0,89.98933,0.0,03/21/6626 +4.85464,41.6686,6968,10,19,20,26,0,3.95,5.0,fr,14607,139,620688,1,1,Active Shallow Crust,0.0,89.99049,0.0,10/19/6968 +4.85464,41.6686,8343,12,22,5,15,26,4.05,5.0,fr,14608,166,620700,1,1,Active Shallow Crust,0.0,89.99153,0.0,12/22/8343 +-1.91992,47.35493,5028,3,15,19,50,50,3.55,5.0,fr,14609,100,621120,1,2,Active Shallow Crust,0.0,89.98975,0.0,03/15/5028 +-1.91992,47.35493,3645,4,19,14,31,51,3.55,5.0,fr,14610,72,621120,1,2,Active Shallow Crust,0.0,89.98975,0.0,04/19/3645 +-1.91992,47.35493,7187,6,12,20,11,41,3.55,15.0,fr,14611,143,621124,1,1,Active Shallow Crust,240.0124,57.99817,0.0,06/12/7187 +-1.91992,47.35493,4506,12,2,18,39,6,3.65,5.0,fr,14612,90,621132,1,2,Active Shallow Crust,0.0,89.98934,0.0,12/02/4506 +-1.91992,47.35493,779,3,11,10,23,16,3.65,5.0,fr,14613,15,621132,1,2,Active Shallow Crust,0.0,89.98934,0.0,03/11/0779 +-1.91992,47.35493,4256,10,13,7,41,1,3.75,5.0,fr,14614,85,621153,1,1,Active Shallow Crust,128.8968,89.96725,0.0,10/13/4256 +-1.91992,47.35493,8650,1,4,9,8,0,3.85,5.0,fr,14615,172,621156,1,1,Active Shallow Crust,0.0,89.99033,0.0,01/04/8650 +-1.91992,47.35493,8054,1,25,21,42,38,3.95,5.0,fr,14616,161,621168,1,1,Active Shallow Crust,0.0,89.9903,0.0,01/25/8054 +-1.91992,47.35493,4051,9,1,13,28,43,4.05,15.0,fr,14617,81,621181,1,1,Active Shallow Crust,0.0,89.99039,0.0,09/01/4051 +-1.91992,47.35493,9941,9,24,19,41,17,4.15,15.0,fr,14618,198,621193,1,1,Active Shallow Crust,0.0,89.98973,0.0,09/24/9941 +-1.91992,47.35493,3181,5,21,13,10,30,4.55,5.0,fr,14619,63,621240,1,1,Active Shallow Crust,0.0,89.98974,0.0,05/21/3181 +-1.91992,47.35493,4840,9,2,14,29,14,4.75,5.0,fr,14620,96,621264,1,1,Active Shallow Crust,0.0,89.99014,0.0,09/02/4840 +-1.91992,47.35493,2123,11,14,11,5,34,4.85,15.0,fr,14621,42,621277,1,1,Active Shallow Crust,0.0,89.99006,0.0,11/14/2123 +8.07662,51.12022,8186,7,25,16,39,14,4.05,5.0,fr,14622,163,621660,1,1,Active Shallow Crust,0.0,89.99288,0.0,07/25/8186 +5.97935,47.48531,2352,9,18,9,26,53,3.55,27.5,fr,14623,47,622082,1,1,Active Shallow Crust,0.0,89.99319,0.0,09/18/2352 +5.97935,47.48531,2080,12,11,11,50,41,3.55,5.0,fr,14624,41,622089,1,1,Active Shallow Crust,128.8971,89.99319,0.0,12/11/2080 +5.97935,47.48531,6055,7,11,18,9,10,3.65,5.0,fr,14625,121,622092,1,1,Active Shallow Crust,0.0,89.98785,0.0,07/11/6055 +5.97935,47.48531,3027,9,19,7,13,16,3.65,27.5,fr,14626,60,622094,1,1,Active Shallow Crust,0.0,89.98785,0.0,09/19/3027 +5.97935,47.48531,1461,2,17,15,22,1,3.65,27.5,fr,14627,29,622097,1,1,Active Shallow Crust,240.0005,58.013,0.0,02/17/1461 +5.97935,47.48531,6518,11,17,17,56,26,3.65,15.0,fr,14628,130,622102,1,1,Active Shallow Crust,128.901,89.96355,0.0,11/17/6518 +5.97935,47.48531,5382,11,2,19,55,9,3.75,5.0,fr,14629,107,622104,1,1,Active Shallow Crust,0.0,89.98917,0.0,11/02/5382 +5.97935,47.48531,9079,8,2,9,1,59,3.75,5.0,fr,14630,181,622107,1,1,Active Shallow Crust,240.0082,58.01768,0.0,08/02/9079 +5.97935,47.48531,8375,7,30,20,4,34,3.75,5.0,fr,14631,167,622113,1,1,Active Shallow Crust,128.8967,89.96695,0.0,07/30/8375 +5.97935,47.48531,2031,6,13,10,17,7,3.85,5.0,fr,14632,40,622116,1,1,Active Shallow Crust,0.0,89.99035,0.0,06/13/2031 +5.97935,47.48531,2423,5,6,5,40,6,3.95,27.5,fr,14633,48,622130,1,1,Active Shallow Crust,0.0,89.9914,0.0,05/06/2423 +5.97935,47.48531,6491,4,15,17,39,4,4.05,15.0,fr,14634,129,622144,1,1,Active Shallow Crust,240.0066,58.00569,0.0,04/15/6491 +5.97935,47.48531,3941,7,11,12,0,8,4.25,5.0,fr,14635,78,622164,1,1,Active Shallow Crust,0.0,89.99087,0.0,07/11/3941 +5.97935,47.48531,3274,3,24,10,3,9,4.25,5.0,fr,14636,65,622167,1,1,Active Shallow Crust,240.0079,57.99412,0.0,03/24/3274 +5.97935,47.48531,7712,8,28,13,46,25,4.35,5.0,fr,14637,154,622176,1,1,Active Shallow Crust,0.0,89.98915,0.0,08/28/7712 +5.97935,47.48531,795,2,4,13,44,24,4.45,15.0,fr,14638,15,622192,1,1,Active Shallow Crust,240.0054,57.99482,0.0,02/04/0795 +5.97935,47.48531,7530,1,19,22,5,7,4.55,15.0,fr,14639,150,622210,1,1,Active Shallow Crust,128.8938,89.9857,0.0,01/19/7530 +5.97935,47.48531,2048,11,29,3,0,46,4.65,15.0,fr,14640,40,622219,1,1,Active Shallow Crust,0.0,89.99029,-90.0,11/29/2048 +5.97935,47.48531,6253,2,14,9,5,54,5.45,5.0,fr,14641,125,622317,1,1,Active Shallow Crust,128.8781,89.98907,0.0,02/14/6253 +2.99433,48.46007,6131,9,18,19,58,29,3.75,15.0,fr,14642,122,622585,1,1,Active Shallow Crust,0.0,89.98938,0.0,09/18/6131 +2.99433,48.46007,5453,5,17,17,31,54,3.85,27.5,fr,14643,109,622598,1,1,Active Shallow Crust,0.0,89.99053,0.0,05/17/5453 +2.99433,48.46007,7220,11,8,8,42,50,4.05,15.0,fr,14644,144,622621,1,1,Active Shallow Crust,0.0,89.9906,0.0,11/08/7220 +2.99433,48.46007,5900,8,13,20,37,56,4.65,5.0,fr,14645,117,622701,1,1,Active Shallow Crust,128.8906,89.98709,0.0,08/13/5900 +3.07858,43.55505,543,3,23,12,46,29,3.55,27.5,fr,14646,10,623048,1,1,Active Shallow Crust,0.0,89.98891,-90.0,03/23/0543 +3.07858,43.55505,9756,7,29,22,13,9,3.65,5.0,fr,14647,195,623058,1,1,Active Shallow Crust,0.0,89.99012,-90.0,07/29/9756 +3.07858,43.55505,8508,2,15,18,28,44,3.75,15.0,fr,14648,170,623065,1,1,Active Shallow Crust,0.0,89.99129,0.0,02/15/8508 +3.07858,43.55505,8572,8,11,7,4,49,3.95,5.0,fr,14649,171,623088,1,1,Active Shallow Crust,0.0,89.99078,0.0,08/11/8572 +3.07858,43.55505,8415,7,16,10,45,43,4.05,5.0,fr,14650,168,623100,1,1,Active Shallow Crust,0.0,89.98972,0.0,07/16/8415 +3.09721,53.20826,8118,12,18,22,0,10,3.55,15.0,fr,14651,162,623524,1,1,Active Shallow Crust,240.0135,57.99807,0.0,12/18/8118 +5.66638,51.92985,2639,5,12,7,30,45,3.55,5.0,fr,14652,52,624000,1,2,Active Shallow Crust,0.0,89.98756,0.0,05/12/2639 +5.66638,51.92985,6707,12,23,17,5,44,3.55,5.0,fr,14653,134,624000,1,2,Active Shallow Crust,0.0,89.98756,0.0,12/23/6707 +5.66638,51.92985,2275,11,12,23,35,56,3.55,15.0,fr,14654,45,624001,1,2,Active Shallow Crust,0.0,89.98756,0.0,11/12/2275 +5.66638,51.92985,7343,4,6,16,59,38,3.55,15.0,fr,14655,146,624001,1,2,Active Shallow Crust,0.0,89.98756,0.0,04/06/7343 +5.66638,51.92985,4537,1,24,9,32,50,3.85,5.0,fr,14656,90,624036,1,1,Active Shallow Crust,0.0,89.9912,0.0,01/24/4537 +-5.27235,49.88962,3646,5,31,21,26,1,4.45,5.0,fr,14657,72,624597,1,1,Active Shallow Crust,128.8913,89.99309,0.0,05/31/3646 +1.44004,52.41541,8559,12,6,21,9,22,3.55,5.0,fr,14658,171,625440,1,1,Active Shallow Crust,0.0,89.98923,0.0,12/06/8559 +1.44004,52.41541,9045,9,4,9,26,4,3.55,5.0,fr,14659,180,625443,1,1,Active Shallow Crust,240.013,57.99824,0.0,09/04/9045 +1.44004,52.41541,5683,10,29,22,0,0,4.35,15.0,fr,14660,113,625546,1,1,Active Shallow Crust,128.8965,89.9827,0.0,10/29/5683 +1.44004,52.41541,6552,4,30,3,28,55,4.65,5.0,fr,14661,131,625572,1,1,Active Shallow Crust,0.0,89.99003,0.0,04/30/6552 +-0.54497,46.11617,1892,9,24,7,17,31,3.55,5.0,fr,14662,37,625920,1,1,Active Shallow Crust,0.0,89.99039,0.0,09/24/1892 +-0.54497,46.11617,9620,12,1,1,13,46,3.55,15.0,fr,14663,192,625921,1,1,Active Shallow Crust,0.0,89.99039,0.0,12/01/9620 +-0.54497,46.11617,7684,2,26,13,24,48,3.55,5.0,fr,14664,153,625923,1,1,Active Shallow Crust,240.0122,57.99825,0.0,02/26/7684 +-0.54497,46.11617,5905,4,17,7,5,29,3.65,5.0,fr,14665,118,625932,1,1,Active Shallow Crust,0.0,89.98988,0.0,04/17/5905 +-0.54497,46.11617,5176,9,4,22,31,25,3.65,15.0,fr,14666,103,625933,1,1,Active Shallow Crust,0.0,89.98988,0.0,09/04/5176 +-0.54497,46.11617,8724,4,17,21,1,37,3.75,15.0,fr,14667,174,625945,1,1,Active Shallow Crust,0.0,89.99028,0.0,04/17/8724 +-0.54497,46.11617,5654,5,5,13,23,8,3.75,15.0,fr,14668,113,625948,1,1,Active Shallow Crust,240.0083,58.01744,0.0,05/05/5654 +-0.54497,46.11617,4807,11,27,7,30,54,3.75,5.0,fr,14669,96,625950,1,1,Active Shallow Crust,0.0,89.99017,-90.0,11/27/4807 +-0.54497,46.11617,755,8,25,17,35,11,3.85,15.0,fr,14670,15,625957,1,1,Active Shallow Crust,0.0,89.9901,0.0,08/25/0755 +-0.54497,46.11617,1310,1,30,7,15,59,3.95,5.0,fr,14671,26,625971,1,1,Active Shallow Crust,240.0197,58.00497,0.0,01/30/1310 +-0.54497,46.11617,8222,1,9,9,16,6,4.15,15.0,fr,14672,164,625996,1,1,Active Shallow Crust,240.0084,57.99731,0.0,01/09/8222 +-0.54497,46.11617,10,9,25,3,51,28,4.25,15.0,fr,14673,0,626005,1,1,Active Shallow Crust,0.0,89.98985,0.0,09/25/0010 +-0.54497,46.11617,4771,9,6,10,25,42,4.25,5.0,fr,14674,95,626007,1,1,Active Shallow Crust,240.0074,57.99409,0.0,09/06/4771 +-0.54497,46.11617,2465,4,12,13,0,7,4.35,5.0,fr,14675,49,626016,1,1,Active Shallow Crust,0.0,89.98991,0.0,04/12/2465 +6.41232,51.7818,8335,2,17,22,23,3,3.85,15.0,fr,14676,166,626437,1,1,Active Shallow Crust,0.0,89.99117,0.0,02/17/8335 +6.41232,51.7818,280,9,26,15,27,29,4.75,5.0,fr,14677,5,626550,1,1,Active Shallow Crust,0.0,89.99049,-90.0,09/26/0280 +0.65668,49.40034,2393,4,21,9,32,22,3.55,5.0,fr,14678,47,626880,1,1,Active Shallow Crust,0.0,89.99016,0.0,04/21/2393 +0.65668,49.40034,8643,6,10,14,37,50,3.85,15.0,fr,14679,172,626923,1,1,Active Shallow Crust,0.0,89.99001,-90.0,06/10/8643 +0.65668,49.40034,9100,12,2,7,41,54,3.95,5.0,fr,14680,181,626931,1,1,Active Shallow Crust,240.0202,58.00505,0.0,12/02/9100 +0.65668,49.40034,4819,1,28,14,49,28,4.55,5.0,fr,14681,96,627006,1,1,Active Shallow Crust,0.0,89.99003,-90.0,01/28/4819 +0.65668,49.40034,4275,12,1,18,10,47,4.65,15.0,fr,14682,85,627013,1,1,Active Shallow Crust,0.0,89.99006,0.0,12/01/4275 +0.65668,49.40034,6525,9,13,7,35,38,5.65,5.0,fr,14683,130,627138,1,1,Active Shallow Crust,0.0,89.99001,-90.0,09/13/6525 +-1.61147,48.7262,6722,5,21,16,14,48,3.55,5.0,fr,14684,134,627360,1,2,Active Shallow Crust,0.0,89.99002,0.0,05/21/6722 +-1.61147,48.7262,9366,3,21,17,46,11,3.55,5.0,fr,14685,187,627360,1,2,Active Shallow Crust,0.0,89.99002,0.0,03/21/9366 +-1.61147,48.7262,9804,4,1,1,5,11,3.55,5.0,fr,14686,196,627366,1,2,Active Shallow Crust,0.0,89.98991,-90.0,04/01/9804 +-1.61147,48.7262,5391,1,13,4,9,17,3.55,5.0,fr,14687,107,627366,1,2,Active Shallow Crust,0.0,89.98991,-90.0,01/13/5391 +-1.61147,48.7262,674,9,29,15,9,20,3.55,15.0,fr,14688,13,627370,1,1,Active Shallow Crust,128.8961,89.99418,0.0,09/29/0674 +-1.61147,48.7262,7833,8,23,23,48,26,3.65,5.0,fr,14689,156,627372,1,1,Active Shallow Crust,0.0,89.98962,0.0,08/23/7833 +-1.61147,48.7262,6032,4,3,16,7,18,3.65,15.0,fr,14690,120,627373,1,2,Active Shallow Crust,0.0,89.98962,0.0,04/03/6032 +-1.61147,48.7262,2344,2,11,14,28,3,3.65,15.0,fr,14691,46,627373,1,2,Active Shallow Crust,0.0,89.98962,0.0,02/11/2344 +-1.61147,48.7262,5206,9,29,18,44,54,3.65,5.0,fr,14692,104,627375,1,1,Active Shallow Crust,240.0013,58.01299,0.0,09/29/5206 +-1.61147,48.7262,2429,4,22,23,11,49,3.75,5.0,fr,14693,48,627384,1,2,Active Shallow Crust,0.0,89.98943,0.0,04/22/2429 +-1.61147,48.7262,9691,9,16,22,50,57,3.75,5.0,fr,14694,193,627384,1,2,Active Shallow Crust,0.0,89.98943,0.0,09/16/9691 +-1.61147,48.7262,4834,10,18,21,37,19,3.75,15.0,fr,14695,96,627385,1,2,Active Shallow Crust,0.0,89.98943,0.0,10/18/4834 +-1.61147,48.7262,9065,3,30,14,54,15,3.75,15.0,fr,14696,181,627385,1,2,Active Shallow Crust,0.0,89.98943,0.0,03/30/9065 +-1.61147,48.7262,6722,7,25,12,12,49,3.75,5.0,fr,14697,134,627390,1,1,Active Shallow Crust,0.0,89.99065,-90.0,07/25/6722 +-1.61147,48.7262,6666,7,2,16,12,5,3.85,15.0,fr,14698,133,627397,1,1,Active Shallow Crust,0.0,89.99058,0.0,07/02/6666 +-1.61147,48.7262,3843,10,18,19,51,21,3.95,5.0,fr,14699,76,627408,1,1,Active Shallow Crust,0.0,89.98951,0.0,10/18/3843 +-1.61147,48.7262,5851,4,17,11,46,50,3.95,27.5,fr,14700,117,627410,1,1,Active Shallow Crust,0.0,89.98951,0.0,04/17/5851 +-1.61147,48.7262,5352,2,1,2,15,56,4.05,5.0,fr,14701,107,627420,1,1,Active Shallow Crust,0.0,89.98972,0.0,02/01/5352 +-1.61147,48.7262,8340,11,28,9,19,23,4.05,5.0,fr,14702,166,627423,1,1,Active Shallow Crust,240.0064,58.00583,0.0,11/28/8340 +-1.61147,48.7262,7088,9,4,9,17,38,4.15,5.0,fr,14703,141,627432,1,1,Active Shallow Crust,0.0,89.99,0.0,09/04/7088 +-1.61147,48.7262,2917,4,23,22,1,36,4.35,15.0,fr,14704,58,627457,1,2,Active Shallow Crust,0.0,89.99007,0.0,04/23/2917 +-1.61147,48.7262,954,8,20,12,16,31,4.35,15.0,fr,14705,19,627457,1,2,Active Shallow Crust,0.0,89.99007,0.0,08/20/0954 +-1.61147,48.7262,4144,2,21,23,38,32,4.55,5.0,fr,14706,82,627489,1,1,Active Shallow Crust,128.8934,89.98577,0.0,02/21/4144 +-1.61147,48.7262,5712,8,6,6,14,6,5.15,27.5,fr,14707,114,627554,1,1,Active Shallow Crust,0.0,89.98998,0.0,08/06/5712 +-1.26989,47.81276,310,11,21,4,0,59,3.55,5.0,fr,14708,6,627840,1,3,Active Shallow Crust,0.0,89.98985,0.0,11/21/0310 +-1.26989,47.81276,8384,10,5,8,36,40,3.55,5.0,fr,14709,167,627840,1,3,Active Shallow Crust,0.0,89.98985,0.0,10/05/8384 +-1.26989,47.81276,330,5,30,3,4,28,3.55,5.0,fr,14710,6,627840,1,3,Active Shallow Crust,0.0,89.98985,0.0,05/30/0330 +-1.26989,47.81276,672,7,20,2,11,29,3.55,5.0,fr,14711,13,627849,1,1,Active Shallow Crust,128.8962,89.99407,0.0,07/20/0672 +-1.26989,47.81276,4782,7,30,10,11,18,3.65,5.0,fr,14712,95,627852,1,1,Active Shallow Crust,0.0,89.98944,0.0,07/30/4782 +-1.26989,47.81276,1968,12,9,23,8,12,3.65,5.0,fr,14713,39,627855,1,1,Active Shallow Crust,240.0013,58.01301,0.0,12/09/1968 +-1.26989,47.81276,8524,9,21,16,15,49,3.85,5.0,fr,14714,170,627876,1,1,Active Shallow Crust,0.0,89.99041,0.0,09/21/8524 +-1.26989,47.81276,4482,3,25,1,40,21,4.15,15.0,fr,14715,89,627913,1,1,Active Shallow Crust,0.0,89.98981,0.0,03/25/4482 +-1.26989,47.81276,4462,10,30,20,48,38,4.35,15.0,fr,14716,89,627937,1,1,Active Shallow Crust,0.0,89.98989,0.0,10/30/4462 +-1.26989,47.81276,3,4,4,8,21,59,4.45,5.0,fr,14717,0,627954,1,1,Active Shallow Crust,0.0,89.99028,-90.0,04/04/0003 +-1.26989,47.81276,4975,10,25,5,13,28,4.85,5.0,fr,14718,99,627996,1,1,Active Shallow Crust,0.0,89.99014,0.0,10/25/4975 +-1.26989,47.81276,7184,4,5,22,50,41,5.35,15.0,fr,14719,143,628057,1,1,Active Shallow Crust,0.0,89.98998,0.0,04/05/7184 +2.51379,45.95612,2894,10,8,11,30,53,3.55,5.0,fr,14720,57,628320,1,1,Active Shallow Crust,0.0,89.98949,0.0,10/08/2894 +2.51379,45.95612,2357,5,17,18,48,49,3.55,15.0,fr,14721,47,628321,1,1,Active Shallow Crust,0.0,89.98949,0.0,05/17/2357 +2.51379,45.95612,8729,6,15,20,55,17,3.55,27.5,fr,14722,174,628322,1,1,Active Shallow Crust,0.0,89.98949,0.0,06/15/8729 +2.51379,45.95612,2587,3,20,3,57,7,3.55,5.0,fr,14723,51,628323,1,2,Active Shallow Crust,240.0123,57.99815,0.0,03/20/2587 +2.51379,45.95612,1499,4,13,10,53,6,3.55,5.0,fr,14724,29,628323,1,2,Active Shallow Crust,240.0123,57.99815,0.0,04/13/1499 +2.51379,45.95612,6786,3,15,4,52,56,3.55,27.5,fr,14725,135,628325,1,1,Active Shallow Crust,240.0123,57.99805,0.0,03/15/6786 +2.51379,45.95612,6118,2,4,19,5,36,3.65,5.0,fr,14726,122,628332,1,1,Active Shallow Crust,0.0,89.99063,0.0,02/04/6118 +2.51379,45.95612,8173,10,18,5,47,33,3.75,5.0,fr,14727,163,628344,1,2,Active Shallow Crust,0.0,89.98886,0.0,10/18/8173 +2.51379,45.95612,9839,12,19,19,2,40,3.75,5.0,fr,14728,196,628344,1,2,Active Shallow Crust,0.0,89.98886,0.0,12/19/9839 +2.51379,45.95612,11,9,24,21,40,35,3.75,15.0,fr,14729,0,628345,1,1,Active Shallow Crust,0.0,89.98886,0.0,09/24/0011 +2.51379,45.95612,3314,1,28,15,15,9,3.75,5.0,fr,14730,66,628353,1,1,Active Shallow Crust,128.8969,89.96722,0.0,01/28/3314 +2.51379,45.95612,515,2,8,10,25,39,3.85,5.0,fr,14731,10,628356,1,1,Active Shallow Crust,0.0,89.99007,0.0,02/08/0515 +2.51379,45.95612,8295,8,14,23,37,34,3.85,27.5,fr,14732,165,628358,1,1,Active Shallow Crust,0.0,89.99007,0.0,08/14/8295 +2.51379,45.95612,3952,7,1,8,31,4,3.95,5.0,fr,14733,79,628368,1,3,Active Shallow Crust,0.0,89.98895,0.0,07/01/3952 +2.51379,45.95612,5680,12,2,21,24,25,3.95,5.0,fr,14734,113,628368,1,3,Active Shallow Crust,0.0,89.98895,0.0,12/02/5680 +2.51379,45.95612,1501,1,20,22,5,6,3.95,5.0,fr,14735,30,628368,1,3,Active Shallow Crust,0.0,89.98895,0.0,01/20/1501 +2.51379,45.95612,1939,5,27,1,50,6,3.95,15.0,fr,14736,38,628369,1,1,Active Shallow Crust,0.0,89.98895,0.0,05/27/1939 +2.51379,45.95612,4561,10,29,3,46,11,3.95,15.0,fr,14737,91,628372,1,1,Active Shallow Crust,240.0195,58.00494,0.0,10/29/4561 +2.51379,45.95612,5424,6,22,15,11,38,4.05,15.0,fr,14738,108,628381,1,1,Active Shallow Crust,0.0,89.99014,0.0,06/22/5424 +2.51379,45.95612,8402,5,3,3,33,44,4.15,15.0,fr,14739,168,628393,1,1,Active Shallow Crust,0.0,89.98946,0.0,05/03/8402 +2.51379,45.95612,8177,4,16,8,51,57,4.15,27.5,fr,14740,163,628400,1,1,Active Shallow Crust,0.0,89.98933,-90.0,04/16/8177 +2.51379,45.95612,4440,1,23,21,32,39,4.35,5.0,fr,14741,88,628416,1,1,Active Shallow Crust,0.0,89.99023,0.0,01/23/4440 +2.51379,45.95612,1429,7,3,7,36,43,4.65,5.0,fr,14742,28,628458,1,1,Active Shallow Crust,0.0,89.99001,-90.0,07/03/1429 +2.51379,45.95612,118,9,24,6,59,24,4.75,5.0,fr,14743,2,628473,1,1,Active Shallow Crust,128.8888,89.98814,0.0,09/24/0118 +4.7119,47.05938,534,6,6,17,12,41,3.55,5.0,fr,14744,10,628803,1,1,Active Shallow Crust,240.011,57.99934,0.0,06/06/0534 +4.7119,47.05938,4617,3,8,20,6,46,3.55,15.0,fr,14745,92,628804,1,1,Active Shallow Crust,240.011,57.99934,0.0,03/08/4617 +4.7119,47.05938,7288,10,23,8,35,41,3.65,5.0,fr,14746,145,628812,1,1,Active Shallow Crust,0.0,89.98775,0.0,10/23/7288 +4.7119,47.05938,126,4,12,9,26,47,3.85,5.0,fr,14747,2,628836,1,2,Active Shallow Crust,0.0,89.99027,0.0,04/12/0126 +4.7119,47.05938,624,10,5,21,57,5,3.85,5.0,fr,14748,12,628836,1,2,Active Shallow Crust,0.0,89.99027,0.0,10/05/0624 +4.7119,47.05938,4223,5,5,10,31,7,3.95,5.0,fr,14749,84,628848,1,1,Active Shallow Crust,0.0,89.99133,0.0,05/05/4223 +4.7119,47.05938,4678,12,3,1,19,8,4.15,15.0,fr,14750,93,628879,1,1,Active Shallow Crust,0.0,89.98955,-90.0,12/03/4678 +4.7119,47.05938,3304,12,4,18,34,0,4.35,5.0,fr,14751,66,628896,1,1,Active Shallow Crust,0.0,89.98906,0.0,12/04/3304 +4.7119,47.05938,9911,1,31,9,12,55,4.65,5.0,fr,14752,198,628932,1,1,Active Shallow Crust,0.0,89.99032,0.0,01/31/9911 +4.7119,47.05938,4062,5,24,14,17,38,4.95,15.0,fr,14753,81,628975,1,1,Active Shallow Crust,0.0,89.9903,-90.0,05/24/4062 +4.7119,47.05938,3203,1,5,17,18,8,5.05,5.0,fr,14754,64,628986,1,1,Active Shallow Crust,0.0,89.99011,-90.0,01/05/3203 +0.44833,43.89361,9527,9,29,4,8,32,3.55,5.0,fr,14755,190,629280,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/29/9527 +0.44833,43.89361,7584,7,31,11,10,22,3.65,5.0,fr,14756,151,629292,1,1,Active Shallow Crust,0.0,89.98988,0.0,07/31/7584 +0.44833,43.89361,9623,3,25,7,51,36,3.85,5.0,fr,14757,192,629316,1,1,Active Shallow Crust,0.0,89.99004,0.0,03/25/9623 +3.6944,46.00902,2553,9,3,5,56,6,3.65,5.0,fr,14758,51,629772,1,1,Active Shallow Crust,0.0,89.99064,0.0,09/03/2553 +3.6944,46.00902,3676,2,10,23,51,37,3.95,5.0,fr,14759,73,629808,1,2,Active Shallow Crust,0.0,89.98895,0.0,02/10/3676 +3.6944,46.00902,7156,12,19,0,12,13,3.95,5.0,fr,14760,143,629808,1,2,Active Shallow Crust,0.0,89.98895,0.0,12/19/7156 +3.6944,46.00902,9728,7,24,12,11,16,4.15,5.0,fr,14761,194,629835,1,1,Active Shallow Crust,240.0085,57.99716,0.0,07/24/9728 +3.6944,46.00902,9649,9,8,14,25,32,4.55,5.0,fr,14762,192,629886,1,1,Active Shallow Crust,0.0,89.98991,-90.0,09/08/9649 +3.6944,46.00902,5042,6,28,10,53,38,4.65,15.0,fr,14763,100,629893,1,1,Active Shallow Crust,0.0,89.99013,0.0,06/28/5042 +0.1385,44.41031,7699,10,23,22,28,50,3.75,5.0,fr,14764,153,630273,1,1,Active Shallow Crust,128.8969,89.96734,0.0,10/23/7699 +0.1385,44.41031,3394,5,6,3,16,5,3.95,5.0,fr,14765,67,630288,1,1,Active Shallow Crust,0.0,89.99006,0.0,05/06/3394 +2.4975,43.86122,3464,12,23,7,6,14,3.55,5.0,fr,14766,69,630720,1,1,Active Shallow Crust,0.0,89.9891,0.0,12/23/3464 +2.4975,43.86122,9669,7,7,6,18,43,3.85,5.0,fr,14767,193,630762,1,1,Active Shallow Crust,0.0,89.98959,-90.0,07/07/9669 +2.4975,43.86122,5868,6,6,12,5,47,4.65,15.0,fr,14768,117,630853,1,1,Active Shallow Crust,0.0,89.98975,0.0,06/06/5868 +2.4975,43.86122,8610,5,13,20,10,30,4.75,5.0,fr,14769,172,630864,1,1,Active Shallow Crust,0.0,89.98995,0.0,05/13/8610 +5.91227,49.25177,3580,2,13,4,41,38,3.55,5.0,fr,14770,71,631203,1,1,Active Shallow Crust,240.0116,57.99931,0.0,02/13/3580 +5.91227,49.25177,3211,8,25,0,7,47,3.65,5.0,fr,14771,64,631212,1,1,Active Shallow Crust,0.0,89.98827,0.0,08/25/3211 +5.91227,49.25177,6444,7,21,15,39,35,4.05,5.0,fr,14772,128,631260,1,1,Active Shallow Crust,0.0,89.98889,0.0,07/21/6444 +-2.56225,47.70531,6399,6,5,10,39,4,3.55,5.0,fr,14773,127,631680,1,2,Active Shallow Crust,0.0,89.98982,0.0,06/05/6399 +-2.56225,47.70531,9056,5,6,21,39,37,3.55,5.0,fr,14774,181,631680,1,2,Active Shallow Crust,0.0,89.98982,0.0,05/06/9056 +-2.56225,47.70531,3688,5,10,17,15,28,3.55,5.0,fr,14775,73,631683,1,3,Active Shallow Crust,240.0126,57.99787,0.0,05/10/3688 +-2.56225,47.70531,5104,9,27,23,13,7,3.55,5.0,fr,14776,102,631683,1,3,Active Shallow Crust,240.0126,57.99787,0.0,09/27/5104 +-2.56225,47.70531,4182,1,29,8,29,39,3.55,5.0,fr,14777,83,631683,1,3,Active Shallow Crust,240.0126,57.99787,0.0,01/29/4182 +-2.56225,47.70531,8695,9,20,3,34,30,3.65,5.0,fr,14778,173,631692,1,1,Active Shallow Crust,0.0,89.99093,0.0,09/20/8695 +-2.56225,47.70531,4455,6,26,6,39,46,3.65,5.0,fr,14779,89,631695,1,2,Active Shallow Crust,240.0008,58.01317,0.0,06/26/4455 +-2.56225,47.70531,7791,4,10,22,1,50,3.65,5.0,fr,14780,155,631695,1,2,Active Shallow Crust,240.0008,58.01317,0.0,04/10/7791 +-2.56225,47.70531,162,10,25,6,37,29,3.65,27.5,fr,14781,3,631703,1,1,Active Shallow Crust,128.8998,89.96355,0.0,10/25/0162 +-2.56225,47.70531,5067,7,28,12,59,32,3.75,5.0,fr,14782,101,631704,1,2,Active Shallow Crust,0.0,89.98922,0.0,07/28/5067 +-2.56225,47.70531,9056,9,16,18,3,31,3.75,5.0,fr,14783,181,631704,1,2,Active Shallow Crust,0.0,89.98922,0.0,09/16/9056 +-2.56225,47.70531,3794,5,18,6,47,32,3.85,5.0,fr,14784,75,631719,1,1,Active Shallow Crust,240.0111,57.99778,0.0,05/18/3794 +-2.56225,47.70531,1526,5,27,20,26,38,4.05,15.0,fr,14785,30,631741,1,1,Active Shallow Crust,0.0,89.99046,0.0,05/27/1526 +-2.56225,47.70531,8901,8,28,6,42,26,4.15,5.0,fr,14786,178,631755,1,1,Active Shallow Crust,240.0088,57.99728,0.0,08/28/8901 +-2.56225,47.70531,8175,7,3,12,13,0,4.25,5.0,fr,14787,163,631767,1,1,Active Shallow Crust,240.008,57.99414,0.0,07/03/8175 +-2.56225,47.70531,4871,8,25,3,49,49,4.55,15.0,fr,14788,97,631801,1,1,Active Shallow Crust,0.0,89.99034,0.0,08/25/4871 +-2.56225,47.70531,9010,11,1,11,4,19,4.95,5.0,fr,14789,180,631848,1,1,Active Shallow Crust,0.0,89.98985,0.0,11/01/9010 +-2.56225,47.70531,3822,12,21,7,18,41,5.25,5.0,fr,14790,76,631884,1,1,Active Shallow Crust,0.0,89.98993,0.0,12/21/3822 +4.15806,50.00965,7149,10,3,15,20,54,3.55,5.0,fr,14791,142,632160,1,3,Active Shallow Crust,0.0,89.98704,0.0,10/03/7149 +4.15806,50.00965,3887,2,19,10,40,30,3.55,5.0,fr,14792,77,632160,1,3,Active Shallow Crust,0.0,89.98704,0.0,02/19/3887 +4.15806,50.00965,7444,9,1,3,47,50,3.55,5.0,fr,14793,148,632160,1,3,Active Shallow Crust,0.0,89.98704,0.0,09/01/7444 +4.15806,50.00965,2047,3,8,20,34,44,3.75,5.0,fr,14794,40,632184,1,1,Active Shallow Crust,0.0,89.98971,0.0,03/08/2047 +4.15806,50.00965,8255,6,30,14,31,14,3.75,5.0,fr,14795,165,632190,1,1,Active Shallow Crust,0.0,89.98959,-90.0,06/30/8255 +4.15806,50.00965,2693,6,19,11,0,2,4.15,15.0,fr,14796,53,632233,1,1,Active Shallow Crust,0.0,89.99026,0.0,06/19/2693 +4.158061,50.00965,2857,2,4,22,50,3,6.05,5.357596,fr,14797,57,632460,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/04/2857 +-1.38827,42.06062,5397,12,16,1,40,42,3.55,5.0,fr,14798,107,632640,1,1,Active Shallow Crust,0.0,89.99064,0.0,12/16/5397 +-1.38827,42.06062,3458,7,5,22,55,49,3.65,5.0,fr,14799,69,632652,1,1,Active Shallow Crust,0.0,89.98999,0.0,07/05/3458 +-1.38827,42.06062,6658,9,5,22,48,56,3.75,5.0,fr,14800,133,632664,1,1,Active Shallow Crust,0.0,89.98959,0.0,09/05/6658 +-1.38827,42.06062,682,12,28,5,10,17,4.95,5.0,fr,14801,13,632808,1,1,Active Shallow Crust,0.0,89.98991,0.0,12/28/0682 +-0.58976,42.56269,8045,10,2,17,9,11,3.55,15.0,fr,14802,160,633121,1,1,Active Shallow Crust,0.0,89.98978,0.0,10/02/8045 +-0.58976,42.56269,2542,11,23,23,16,31,3.55,5.0,fr,14803,50,633126,1,1,Active Shallow Crust,0.0,89.98967,-90.0,11/23/2542 +-0.58976,42.56269,2704,1,6,21,38,12,3.65,5.0,fr,14804,54,633132,1,1,Active Shallow Crust,0.0,89.99007,0.0,01/06/2704 +-0.58976,42.56269,8886,8,30,11,37,18,3.65,5.0,fr,14805,177,633135,1,1,Active Shallow Crust,240.0007,58.01288,0.0,08/30/8886 +-0.58976,42.56269,7653,2,27,15,34,43,3.85,15.0,fr,14806,153,633163,1,1,Active Shallow Crust,0.0,89.99003,-90.0,02/27/7653 +-0.58976,42.56269,4727,1,7,0,30,50,5.95,5.0,fr,14807,94,633411,1,1,Active Shallow Crust,240.0457,57.99965,0.0,01/07/4727 +-1.23388,43.18269,8309,8,15,18,3,19,3.55,5.0,fr,14808,166,634560,1,4,Active Shallow Crust,0.0,89.99081,0.0,08/15/8309 +-1.23388,43.18269,1762,2,10,3,51,38,3.55,5.0,fr,14809,35,634560,1,4,Active Shallow Crust,0.0,89.99081,0.0,02/10/1762 +-1.23388,43.18269,8399,6,10,9,8,34,3.55,5.0,fr,14810,167,634560,1,4,Active Shallow Crust,0.0,89.99081,0.0,06/10/8399 +-1.23388,43.18269,1855,6,19,9,27,57,3.55,5.0,fr,14811,37,634560,1,4,Active Shallow Crust,0.0,89.99081,0.0,06/19/1855 +-1.23388,43.18269,5146,5,24,23,25,8,3.55,15.0,fr,14812,102,634561,1,2,Active Shallow Crust,0.0,89.99081,0.0,05/24/5146 +-1.23388,43.18269,5744,8,16,6,25,49,3.55,15.0,fr,14813,114,634561,1,2,Active Shallow Crust,0.0,89.99081,0.0,08/16/5744 +-1.23388,43.18269,4568,3,31,5,53,25,3.55,5.0,fr,14814,91,634563,1,6,Active Shallow Crust,240.0119,57.99814,0.0,03/31/4568 +-1.23388,43.18269,6604,10,22,21,11,2,3.55,5.0,fr,14815,132,634563,1,6,Active Shallow Crust,240.0119,57.99814,0.0,10/22/6604 +-1.23388,43.18269,4173,4,23,11,35,52,3.55,5.0,fr,14816,83,634563,1,6,Active Shallow Crust,240.0119,57.99814,0.0,04/23/4173 +-1.23388,43.18269,2313,7,9,9,26,3,3.55,5.0,fr,14817,46,634563,1,6,Active Shallow Crust,240.0119,57.99814,0.0,07/09/2313 +-1.23388,43.18269,308,7,24,11,49,49,3.55,5.0,fr,14818,6,634563,1,6,Active Shallow Crust,240.0119,57.99814,0.0,07/24/0308 +-1.23388,43.18269,3523,12,8,12,42,12,3.55,5.0,fr,14819,70,634563,1,6,Active Shallow Crust,240.0119,57.99814,0.0,12/08/3523 +-1.23388,43.18269,1788,8,19,14,57,9,3.65,5.0,fr,14820,35,634572,1,5,Active Shallow Crust,0.0,89.99017,0.0,08/19/1788 +-1.23388,43.18269,2445,2,1,20,15,25,3.65,5.0,fr,14821,48,634572,1,5,Active Shallow Crust,0.0,89.99017,0.0,02/01/2445 +-1.23388,43.18269,2284,11,28,12,25,9,3.65,5.0,fr,14822,45,634572,1,5,Active Shallow Crust,0.0,89.99017,0.0,11/28/2284 +-1.23388,43.18269,3,12,17,18,4,45,3.65,5.0,fr,14823,0,634572,1,5,Active Shallow Crust,0.0,89.99017,0.0,12/17/0003 +-1.23388,43.18269,4304,2,26,15,49,29,3.65,5.0,fr,14824,86,634572,1,5,Active Shallow Crust,0.0,89.99017,0.0,02/26/4304 +-1.23388,43.18269,2912,4,18,10,32,6,3.65,15.0,fr,14825,58,634573,1,1,Active Shallow Crust,0.0,89.99017,0.0,04/18/2912 +-1.23388,43.18269,3442,10,24,0,16,25,3.65,5.0,fr,14826,68,634575,1,1,Active Shallow Crust,240.001,58.01297,0.0,10/24/3442 +-1.23388,43.18269,2551,9,26,17,53,21,3.65,15.0,fr,14827,51,634576,1,1,Active Shallow Crust,240.001,58.01297,0.0,09/26/2551 +-1.23388,43.18269,7874,10,15,6,8,44,3.65,15.0,fr,14828,157,634579,1,2,Active Shallow Crust,0.0,89.99006,-90.0,10/15/7874 +-1.23388,43.18269,1277,12,6,11,15,41,3.65,15.0,fr,14829,25,634579,1,2,Active Shallow Crust,0.0,89.99006,-90.0,12/06/1277 +-1.23388,43.18269,6885,9,22,17,43,49,3.75,5.0,fr,14830,137,634584,1,3,Active Shallow Crust,0.0,89.98978,0.0,09/22/6885 +-1.23388,43.18269,6723,4,17,11,13,32,3.75,5.0,fr,14831,134,634584,1,3,Active Shallow Crust,0.0,89.98978,0.0,04/17/6723 +-1.23388,43.18269,7760,9,18,8,10,40,3.75,5.0,fr,14832,155,634584,1,3,Active Shallow Crust,0.0,89.98978,0.0,09/18/7760 +-1.23388,43.18269,3005,3,21,16,52,5,3.85,5.0,fr,14833,60,634596,1,4,Active Shallow Crust,0.0,89.98959,0.0,03/21/3005 +-1.23388,43.18269,8,12,19,3,40,10,3.85,5.0,fr,14834,0,634596,1,4,Active Shallow Crust,0.0,89.98959,0.0,12/19/0008 +-1.23388,43.18269,1932,5,2,23,35,41,3.85,5.0,fr,14835,38,634596,1,4,Active Shallow Crust,0.0,89.98959,0.0,05/02/1932 +-1.23388,43.18269,3089,10,30,23,47,22,3.85,5.0,fr,14836,61,634596,1,4,Active Shallow Crust,0.0,89.98959,0.0,10/30/3089 +-1.23388,43.18269,8239,9,25,3,53,56,3.85,15.0,fr,14837,164,634597,1,2,Active Shallow Crust,0.0,89.98959,0.0,09/25/8239 +-1.23388,43.18269,9993,6,26,19,2,44,3.85,15.0,fr,14838,199,634597,1,2,Active Shallow Crust,0.0,89.98959,0.0,06/26/9993 +-1.23388,43.18269,883,3,7,19,54,52,3.95,5.0,fr,14839,17,634608,1,1,Active Shallow Crust,0.0,89.98956,0.0,03/07/0883 +-1.23388,43.18269,2673,10,17,0,19,56,3.95,5.0,fr,14840,53,634614,1,1,Active Shallow Crust,0.0,89.98944,-90.0,10/17/2673 +-1.23388,43.18269,4111,9,15,2,53,40,3.95,5.0,fr,14841,82,634617,1,2,Active Shallow Crust,128.9008,89.99362,0.0,09/15/4111 +-1.23388,43.18269,6171,6,16,18,30,58,3.95,5.0,fr,14842,123,634617,1,2,Active Shallow Crust,128.9008,89.99362,0.0,06/16/6171 +-1.23388,43.18269,1015,4,27,20,53,26,4.05,5.0,fr,14843,20,634620,1,1,Active Shallow Crust,0.0,89.98966,0.0,04/27/1015 +-1.23388,43.18269,9358,4,17,7,46,24,4.15,15.0,fr,14844,187,634633,1,1,Active Shallow Crust,0.0,89.98987,0.0,04/17/9358 +-1.23388,43.18269,6876,8,3,20,3,39,4.25,15.0,fr,14845,137,634645,1,1,Active Shallow Crust,0.0,89.99014,0.0,08/03/6876 +-1.23388,43.18269,4150,7,10,19,30,17,4.25,5.0,fr,14846,82,634647,1,1,Active Shallow Crust,240.0071,57.99398,0.0,07/10/4150 +-1.23388,43.18269,3545,1,31,22,42,50,4.35,5.0,fr,14847,70,634656,1,2,Active Shallow Crust,0.0,89.98975,0.0,01/31/3545 +-1.23388,43.18269,600,6,6,0,42,30,4.35,5.0,fr,14848,11,634656,1,2,Active Shallow Crust,0.0,89.98975,0.0,06/06/0600 +-1.23388,43.18269,6832,8,29,5,17,4,4.35,15.0,fr,14849,136,634657,1,1,Active Shallow Crust,0.0,89.98975,0.0,08/29/6832 +-1.23388,43.18269,8930,3,2,8,1,31,4.35,5.0,fr,14850,178,634659,1,1,Active Shallow Crust,240.0077,57.99569,0.0,03/02/8930 +-1.23388,43.18269,1628,9,11,17,47,22,4.45,5.0,fr,14851,32,634668,1,2,Active Shallow Crust,0.0,89.99022,0.0,09/11/1628 +-1.23388,43.18269,5399,10,8,8,13,29,4.45,5.0,fr,14852,107,634668,1,2,Active Shallow Crust,0.0,89.99022,0.0,10/08/5399 +-1.23388,43.18269,4081,2,14,22,37,46,4.45,15.0,fr,14853,81,634669,1,1,Active Shallow Crust,0.0,89.99022,0.0,02/14/4081 +-1.23388,43.18269,2135,6,12,22,24,57,4.85,5.0,fr,14854,42,634725,1,1,Active Shallow Crust,128.8936,89.98906,0.0,06/12/2135 +-1.23388,43.18269,7471,12,20,19,13,19,5.05,5.0,fr,14855,149,634743,1,1,Active Shallow Crust,240.0205,57.99729,0.0,12/20/7471 +-1.23388,43.18269,1935,1,24,9,5,8,5.25,15.0,fr,14856,38,634774,1,1,Active Shallow Crust,128.885,89.98695,0.0,01/24/1935 +-1.23388,43.18269,3882,12,28,15,24,1,5.35,5.0,fr,14857,77,634782,1,1,Active Shallow Crust,0.0,89.98993,-90.0,12/28/3882 +-1.23388,43.18269,5624,11,7,20,49,10,5.85,5.0,fr,14858,112,634836,1,1,Active Shallow Crust,0.0,89.98997,0.0,11/07/5624 +6.63275,51.19978,5726,2,18,11,39,15,3.55,5.0,fr,14859,114,635040,1,1,Active Shallow Crust,0.0,89.98737,0.0,02/18/5726 +6.63275,51.19978,5767,5,25,5,29,6,3.55,5.0,fr,14860,115,635049,1,1,Active Shallow Crust,128.8948,89.99684,0.0,05/25/5767 +6.63275,51.19978,9033,1,5,13,22,35,3.65,5.0,fr,14861,180,635052,1,1,Active Shallow Crust,0.0,89.98874,0.0,01/05/9033 +6.63275,51.19978,4962,8,6,21,34,49,3.75,5.0,fr,14862,99,635064,1,1,Active Shallow Crust,0.0,89.98996,0.0,08/06/4962 +6.63275,51.19978,8739,1,13,7,43,26,3.75,15.0,fr,14863,174,635068,1,1,Active Shallow Crust,240.0091,58.01682,0.0,01/13/8739 +6.63275,51.19978,631,9,30,14,49,43,4.55,5.0,fr,14864,12,635160,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/30/0631 +6.63275,51.19978,5137,10,31,9,23,39,4.65,5.0,fr,14865,102,635178,1,1,Active Shallow Crust,0.0,89.98919,-90.0,10/31/5137 +4.00952,47.85381,837,11,2,4,32,43,3.55,5.0,fr,14866,16,635520,1,1,Active Shallow Crust,0.0,89.99323,0.0,11/02/0837 +4.00952,47.85381,1155,3,19,19,8,12,3.55,5.0,fr,14867,23,635529,1,1,Active Shallow Crust,128.8965,89.99323,0.0,03/19/1155 +4.00952,47.85381,4080,12,26,15,57,11,3.75,5.0,fr,14868,81,635547,1,1,Active Shallow Crust,240.0084,58.0174,0.0,12/26/4080 +4.00952,47.85381,5777,2,28,23,47,19,3.95,5.0,fr,14869,115,635568,1,1,Active Shallow Crust,0.0,89.99146,0.0,02/28/5777 +4.00952,47.85381,4515,1,8,7,23,49,4.35,15.0,fr,14870,90,635620,1,1,Active Shallow Crust,240.0087,57.99608,0.0,01/08/4515 +2.94235,40.85458,3966,9,11,10,17,49,3.55,5.0,fr,14871,79,636000,1,1,Active Shallow Crust,0.0,89.98856,0.0,09/11/3966 +2.94235,40.85458,3609,4,21,2,44,37,3.65,15.0,fr,14872,72,636013,1,1,Active Shallow Crust,0.0,89.98981,0.0,04/21/3609 +2.94235,40.85458,3787,12,16,1,38,51,3.65,15.0,fr,14873,75,636016,1,1,Active Shallow Crust,239.9999,58.01283,0.0,12/16/3787 +2.94235,40.85458,2674,1,26,0,28,16,3.75,5.0,fr,14874,53,636027,1,2,Active Shallow Crust,240.0082,58.01745,0.0,01/26/2674 +2.94235,40.85458,2283,1,1,0,54,34,3.75,5.0,fr,14875,45,636027,1,2,Active Shallow Crust,240.0082,58.01745,0.0,01/01/2283 +2.94235,40.85458,7839,7,25,19,9,24,3.85,5.0,fr,14876,156,636036,1,1,Active Shallow Crust,0.0,89.9892,0.0,07/25/7839 +6.31905,46.7559,9698,2,27,9,59,55,3.55,5.0,fr,14877,193,636480,1,7,Active Shallow Crust,0.0,89.99309,0.0,02/27/9698 +6.31905,46.7559,7773,7,16,17,44,20,3.55,5.0,fr,14878,155,636480,1,7,Active Shallow Crust,0.0,89.99309,0.0,07/16/7773 +6.31905,46.7559,7966,12,12,15,50,56,3.55,5.0,fr,14879,159,636480,1,7,Active Shallow Crust,0.0,89.99309,0.0,12/12/7966 +6.31905,46.7559,5662,7,17,18,45,35,3.55,5.0,fr,14880,113,636480,1,7,Active Shallow Crust,0.0,89.99309,0.0,07/17/5662 +6.31905,46.7559,7528,10,9,15,26,46,3.55,5.0,fr,14881,150,636480,1,7,Active Shallow Crust,0.0,89.99309,0.0,10/09/7528 +6.31905,46.7559,9948,9,26,2,59,52,3.55,5.0,fr,14882,198,636480,1,7,Active Shallow Crust,0.0,89.99309,0.0,09/26/9948 +6.31905,46.7559,7184,7,6,6,12,16,3.55,5.0,fr,14883,143,636480,1,7,Active Shallow Crust,0.0,89.99309,0.0,07/06/7184 +6.31905,46.7559,8004,1,7,5,13,35,3.55,15.0,fr,14884,160,636481,1,1,Active Shallow Crust,0.0,89.99309,0.0,01/07/8004 +6.31905,46.7559,3109,12,13,10,45,6,3.55,27.5,fr,14885,62,636482,1,1,Active Shallow Crust,0.0,89.99309,0.0,12/13/3109 +6.31905,46.7559,9365,8,17,4,37,51,3.55,5.0,fr,14886,187,636483,1,1,Active Shallow Crust,240.012,57.99794,0.0,08/17/9365 +6.31905,46.7559,3127,8,10,8,46,14,3.55,27.5,fr,14887,62,636485,1,1,Active Shallow Crust,240.012,57.99785,0.0,08/10/3127 +6.31905,46.7559,2596,4,11,3,31,25,3.55,5.0,fr,14888,51,636486,1,1,Active Shallow Crust,0.0,89.99301,-90.0,04/11/2596 +6.31905,46.7559,812,8,14,11,30,17,3.55,15.0,fr,14889,16,636490,1,1,Active Shallow Crust,128.8968,89.9931,0.0,08/14/0812 +6.31905,46.7559,9103,4,17,9,31,36,3.65,5.0,fr,14890,182,636492,1,4,Active Shallow Crust,0.0,89.98769,0.0,04/17/9103 +6.31905,46.7559,7090,8,31,2,25,42,3.65,5.0,fr,14891,141,636492,1,4,Active Shallow Crust,0.0,89.98769,0.0,08/31/7090 +6.31905,46.7559,1829,5,16,22,50,11,3.65,5.0,fr,14892,36,636492,1,4,Active Shallow Crust,0.0,89.98769,0.0,05/16/1829 +6.31905,46.7559,5523,4,5,6,35,27,3.65,5.0,fr,14893,110,636492,1,4,Active Shallow Crust,0.0,89.98769,0.0,04/05/5523 +6.31905,46.7559,8003,6,18,1,58,27,3.65,15.0,fr,14894,160,636493,1,1,Active Shallow Crust,0.0,89.98769,0.0,06/18/8003 +6.31905,46.7559,1071,2,11,7,57,44,3.65,5.0,fr,14895,21,636495,1,1,Active Shallow Crust,240.0012,58.01299,0.0,02/11/1071 +6.31905,46.7559,9041,12,10,12,39,53,3.75,5.0,fr,14896,180,636504,1,4,Active Shallow Crust,0.0,89.98902,0.0,12/10/9041 +6.31905,46.7559,7934,2,28,14,51,23,3.75,5.0,fr,14897,158,636504,1,4,Active Shallow Crust,0.0,89.98902,0.0,02/28/7934 +6.31905,46.7559,9589,2,21,0,39,15,3.75,5.0,fr,14898,191,636504,1,4,Active Shallow Crust,0.0,89.98902,0.0,02/21/9589 +6.31905,46.7559,3695,9,21,1,20,23,3.75,5.0,fr,14899,73,636504,1,4,Active Shallow Crust,0.0,89.98902,0.0,09/21/3695 +6.31905,46.7559,5000,10,22,17,12,56,3.85,5.0,fr,14900,99,636516,1,6,Active Shallow Crust,0.0,89.99022,0.0,10/22/5000 +6.31905,46.7559,9698,3,25,23,15,5,3.85,5.0,fr,14901,193,636516,1,6,Active Shallow Crust,0.0,89.99022,0.0,03/25/9698 +6.31905,46.7559,3432,10,6,18,46,24,3.85,5.0,fr,14902,68,636516,1,6,Active Shallow Crust,0.0,89.99022,0.0,10/06/3432 +6.31905,46.7559,1872,4,10,6,52,27,3.85,5.0,fr,14903,37,636516,1,6,Active Shallow Crust,0.0,89.99022,0.0,04/10/1872 +6.31905,46.7559,6986,10,11,21,29,18,3.85,5.0,fr,14904,139,636516,1,6,Active Shallow Crust,0.0,89.99022,0.0,10/11/6986 +6.31905,46.7559,7225,12,1,1,15,26,3.85,5.0,fr,14905,144,636516,1,6,Active Shallow Crust,0.0,89.99022,0.0,12/01/7225 +6.31905,46.7559,1143,8,5,15,25,38,3.85,5.0,fr,14906,22,636522,1,1,Active Shallow Crust,0.0,89.9901,-90.0,08/05/1143 +6.31905,46.7559,3685,4,2,15,30,5,3.85,15.0,fr,14907,73,636526,1,1,Active Shallow Crust,128.8953,89.99511,0.0,04/02/3685 +6.31905,46.7559,2101,11,11,22,42,17,3.95,5.0,fr,14908,42,636528,1,1,Active Shallow Crust,0.0,89.99128,0.0,11/11/2101 +6.31905,46.7559,2750,10,14,3,21,0,3.95,15.0,fr,14909,54,636529,1,1,Active Shallow Crust,0.0,89.99128,0.0,10/14/2750 +6.31905,46.7559,3193,10,24,16,42,54,3.95,5.0,fr,14910,63,636531,1,1,Active Shallow Crust,240.0198,58.00513,0.0,10/24/3193 +6.31905,46.7559,774,7,13,13,31,38,4.05,15.0,fr,14911,15,636541,1,1,Active Shallow Crust,0.0,89.98834,0.0,07/13/0774 +6.31905,46.7559,4812,5,23,7,43,59,4.05,5.0,fr,14912,96,636543,1,1,Active Shallow Crust,240.0061,58.00581,0.0,05/23/4812 +6.31905,46.7559,7436,9,11,8,31,10,4.15,5.0,fr,14913,148,636552,1,1,Active Shallow Crust,0.0,89.98961,0.0,09/11/7436 +6.31905,46.7559,2884,4,6,7,17,8,4.15,27.5,fr,14914,57,636554,1,1,Active Shallow Crust,0.0,89.98961,0.0,04/06/2884 +6.31905,46.7559,8196,3,2,17,35,54,4.15,5.0,fr,14915,163,636555,1,1,Active Shallow Crust,240.0087,57.99764,0.0,03/02/8196 +6.31905,46.7559,6700,2,19,6,25,1,4.15,15.0,fr,14916,133,636562,1,1,Active Shallow Crust,128.8968,89.9948,0.0,02/19/6700 +6.31905,46.7559,3252,1,25,12,30,51,4.35,5.0,fr,14917,65,636579,1,2,Active Shallow Crust,240.0086,57.99625,0.0,01/25/3252 +6.31905,46.7559,7483,11,9,0,39,36,4.35,5.0,fr,14918,149,636579,1,2,Active Shallow Crust,240.0086,57.99625,0.0,11/09/7483 +6.31905,46.7559,1468,6,23,20,56,7,4.35,5.0,fr,14919,29,636582,1,1,Active Shallow Crust,0.0,89.98887,-90.0,06/23/1468 +6.31905,46.7559,7432,10,18,7,0,5,4.45,5.0,fr,14920,148,636588,1,1,Active Shallow Crust,0.0,89.9902,0.0,10/18/7432 +6.31905,46.7559,5548,2,14,8,8,5,4.55,5.0,fr,14921,110,636600,1,2,Active Shallow Crust,0.0,89.98907,0.0,02/14/5548 +6.31905,46.7559,8530,8,13,18,33,21,4.55,5.0,fr,14922,170,636600,1,2,Active Shallow Crust,0.0,89.98907,0.0,08/13/8530 +6.31905,46.7559,192,6,28,23,12,27,4.65,27.5,fr,14923,3,636614,1,1,Active Shallow Crust,0.0,89.99026,0.0,06/28/0192 +6.31905,46.7559,3879,12,12,14,49,5,4.65,5.0,fr,14924,77,636615,1,1,Active Shallow Crust,240.0112,57.99405,0.0,12/12/3879 +6.31905,46.7559,9619,12,12,2,48,3,4.95,5.0,fr,14925,192,636648,1,1,Active Shallow Crust,0.0,89.99035,0.0,12/12/9619 +6.31905,46.7559,4623,5,13,23,7,24,5.45,5.0,fr,14926,92,636708,1,1,Active Shallow Crust,0.0,89.98992,0.0,05/13/4623 +5.67597,47.95716,6106,2,7,20,14,56,3.95,5.0,fr,14927,122,637011,1,1,Active Shallow Crust,240.0197,58.00549,0.0,02/07/6106 +5.67597,47.95716,5598,7,16,22,11,21,3.95,5.0,fr,14928,111,637017,1,1,Active Shallow Crust,128.9001,89.99574,0.0,07/16/5598 +5.67597,47.95716,2932,2,17,10,45,56,4.05,15.0,fr,14929,58,637021,1,1,Active Shallow Crust,0.0,89.98861,0.0,02/17/2932 +5.67597,47.95716,5397,5,9,13,59,42,4.85,5.0,fr,14930,107,637116,1,1,Active Shallow Crust,0.0,89.98942,0.0,05/09/5397 +4.73735,40.43127,3609,2,14,11,18,17,4.25,5.0,fr,14931,72,637524,1,1,Active Shallow Crust,0.0,89.98972,0.0,02/14/3609 +4.73735,40.43127,2060,11,30,21,47,8,4.55,5.0,fr,14932,41,637560,1,1,Active Shallow Crust,0.0,89.99029,0.0,11/30/2060 +7.44405,43.46736,3958,10,9,4,57,14,3.55,5.0,fr,14933,79,637920,1,1,Active Shallow Crust,0.0,89.99268,0.0,10/09/3958 +7.44405,43.46736,6788,11,6,1,14,57,3.65,5.0,fr,14934,135,637932,1,2,Active Shallow Crust,0.0,89.98695,0.0,11/06/6788 +7.44405,43.46736,5427,11,26,22,24,23,3.65,5.0,fr,14935,108,637932,1,2,Active Shallow Crust,0.0,89.98695,0.0,11/26/5427 +7.44405,43.46736,3406,2,1,6,26,40,3.85,5.0,fr,14936,68,637956,1,1,Active Shallow Crust,0.0,89.98964,0.0,02/01/3406 +7.44405,43.46736,9330,7,24,4,17,50,3.95,5.0,fr,14937,186,637968,1,1,Active Shallow Crust,0.0,89.99076,0.0,07/24/9330 +7.44405,43.46736,3298,9,22,2,4,57,3.95,5.0,fr,14938,65,637974,1,1,Active Shallow Crust,0.0,89.99065,-90.0,09/22/3298 +7.44405,43.46736,3812,5,25,9,44,26,4.05,27.5,fr,14939,76,637982,1,1,Active Shallow Crust,0.0,89.99177,0.0,05/25/3812 +7.44405,43.46736,3332,7,25,10,43,44,4.25,5.0,fr,14940,66,638004,1,1,Active Shallow Crust,0.0,89.99019,0.0,07/25/3332 +7.44405,43.46736,4773,4,23,7,54,28,4.25,15.0,fr,14941,95,638005,1,1,Active Shallow Crust,0.0,89.99019,0.0,04/23/4773 +7.44405,43.46736,2270,2,20,5,57,34,4.35,15.0,fr,14942,45,638017,1,1,Active Shallow Crust,0.0,89.99126,0.0,02/20/2270 +3.76221,44.45062,4645,3,27,11,38,30,3.55,5.0,fr,14943,92,638886,1,1,Active Shallow Crust,0.0,89.98907,-90.0,03/27/4645 +3.76221,44.45062,4995,2,1,12,3,25,3.65,5.0,fr,14944,99,638892,1,1,Active Shallow Crust,0.0,89.99038,0.0,02/01/4995 +3.76221,44.45062,2989,5,19,1,41,23,3.75,5.0,fr,14945,59,638913,1,1,Active Shallow Crust,128.8965,89.96745,0.0,05/19/2989 +5.403,46.24958,9165,6,22,22,17,45,3.75,5.0,fr,14946,183,639384,1,1,Active Shallow Crust,0.0,89.98892,0.0,06/22/9165 +5.403,46.24958,9474,7,15,20,53,36,3.75,5.0,fr,14947,189,639393,1,1,Active Shallow Crust,128.8969,89.96748,0.0,07/15/9474 +5.403,46.24958,9599,3,17,15,53,22,3.85,5.0,fr,14948,191,639396,1,1,Active Shallow Crust,0.0,89.99013,0.0,03/17/9599 +5.403,46.24958,1326,4,20,23,47,43,3.95,15.0,fr,14949,26,639418,1,1,Active Shallow Crust,128.9006,89.9934,0.0,04/20/1326 +5.403,46.24958,5933,8,24,21,8,52,4.05,15.0,fr,14950,118,639421,1,1,Active Shallow Crust,0.0,89.98824,0.0,08/24/5933 +5.403,46.24958,2667,4,28,12,28,39,4.15,15.0,fr,14951,53,639436,1,1,Active Shallow Crust,240.0092,57.99671,0.0,04/28/2667 +5.403,46.24958,7921,7,8,8,29,57,4.35,5.0,fr,14952,158,639456,1,1,Active Shallow Crust,0.0,89.98889,0.0,07/08/7921 +5.403,46.24958,6015,12,22,12,4,47,5.15,27.5,fr,14953,120,639554,1,1,Active Shallow Crust,0.0,89.99005,0.0,12/22/6015 +2.7112,50.00717,5988,6,30,14,15,41,3.55,5.0,fr,14954,119,639840,1,1,Active Shallow Crust,0.0,89.99028,0.0,06/30/5988 +2.7112,50.00717,7043,7,22,7,24,57,3.65,5.0,fr,14955,140,639852,1,1,Active Shallow Crust,0.0,89.99133,0.0,07/22/7043 +2.7112,50.00717,3410,1,3,22,30,55,3.75,15.0,fr,14956,68,639865,1,1,Active Shallow Crust,0.0,89.9897,0.0,01/03/3410 +2.7112,50.00717,153,3,23,16,25,48,3.75,5.0,fr,14957,3,639873,1,1,Active Shallow Crust,128.896,89.96732,0.0,03/23/0153 +2.7112,50.00717,6406,6,12,9,26,21,4.05,15.0,fr,14958,128,639901,1,1,Active Shallow Crust,0.0,89.99089,0.0,06/12/6406 +-0.69017,48.12392,5254,3,24,8,26,19,3.55,5.0,fr,14959,105,640320,1,1,Active Shallow Crust,0.0,89.98991,0.0,03/24/5254 +-0.69017,48.12392,4934,7,15,23,37,32,3.55,15.0,fr,14960,98,640324,1,1,Active Shallow Crust,240.0124,57.99818,0.0,07/15/4934 +-0.69017,48.12392,2587,9,18,16,29,55,3.65,5.0,fr,14961,51,640332,1,1,Active Shallow Crust,0.0,89.99025,0.0,09/18/2587 +-0.69017,48.12392,1859,3,13,16,39,29,3.75,5.0,fr,14962,37,640344,1,1,Active Shallow Crust,0.0,89.98997,0.0,03/13/1859 +-0.69017,48.12392,9358,1,31,18,12,20,3.75,15.0,fr,14963,187,640345,1,1,Active Shallow Crust,0.0,89.98997,0.0,01/31/9358 +-0.69017,48.12392,6294,10,5,18,31,47,3.75,5.0,fr,14964,125,640347,1,1,Active Shallow Crust,240.0085,58.01756,0.0,10/05/6294 +-0.69017,48.12392,7099,6,22,1,28,45,3.85,5.0,fr,14965,141,640356,1,1,Active Shallow Crust,0.0,89.98988,0.0,06/22/7099 +-0.69017,48.12392,7151,12,17,10,35,44,3.85,15.0,fr,14966,143,640357,1,1,Active Shallow Crust,0.0,89.98988,0.0,12/17/7151 +-0.69017,48.12392,8113,1,28,7,40,16,4.05,5.0,fr,14967,162,640389,1,1,Active Shallow Crust,128.8902,89.99385,0.0,01/28/8113 +-0.69017,48.12392,9887,1,21,20,31,49,4.15,5.0,fr,14968,197,640398,1,1,Active Shallow Crust,0.0,89.99019,-90.0,01/21/9887 +-0.69017,48.12392,5571,8,3,16,10,42,4.25,15.0,fr,14969,111,640405,1,1,Active Shallow Crust,0.0,89.98985,0.0,08/03/5571 +4.43575,43.62148,7647,9,19,0,39,11,3.55,15.0,fr,14970,152,640801,1,1,Active Shallow Crust,0.0,89.9927,0.0,09/19/7647 +4.43575,43.62148,179,2,6,17,43,28,3.55,5.0,fr,14971,3,640803,1,1,Active Shallow Crust,240.0117,57.99856,0.0,02/06/0179 +4.43575,43.62148,67,9,27,6,28,6,3.65,5.0,fr,14972,1,640818,1,1,Active Shallow Crust,0.0,89.98684,-90.0,09/27/0067 +4.43575,43.62148,3390,5,17,8,33,25,4.05,5.0,fr,14973,67,640860,1,1,Active Shallow Crust,0.0,89.99179,0.0,05/17/3390 +4.43575,43.62148,6656,8,5,8,19,42,4.15,5.0,fr,14974,133,640881,1,1,Active Shallow Crust,128.8987,89.99268,0.0,08/05/6656 +4.43575,43.62148,7440,7,21,9,14,8,4.85,15.0,fr,14975,148,640957,1,1,Active Shallow Crust,0.0,89.9902,0.0,07/21/7440 +8.75106,50.57521,459,7,5,15,22,5,3.55,5.0,fr,14976,9,641280,1,1,Active Shallow Crust,0.0,89.98719,0.0,07/05/0459 +8.75106,50.57521,7711,4,19,10,33,25,3.75,27.5,fr,14977,154,641306,1,1,Active Shallow Crust,0.0,89.98982,0.0,04/19/7711 +8.75106,50.57521,6384,2,22,5,27,51,3.85,5.0,fr,14978,127,641316,1,1,Active Shallow Crust,0.0,89.99093,0.0,02/22/6384 +8.75106,50.57521,3705,5,11,11,59,18,3.95,5.0,fr,14979,74,641328,1,1,Active Shallow Crust,0.0,89.99192,0.0,05/11/3705 +3.35611,41.99542,9520,11,1,20,54,48,3.65,5.0,fr,14980,190,641772,1,1,Active Shallow Crust,0.0,89.98998,0.0,11/01/9520 +3.35611,41.99542,138,11,30,9,53,46,3.85,5.0,fr,14981,2,641796,1,1,Active Shallow Crust,0.0,89.98939,0.0,11/30/0138 +3.35611,41.99542,2431,3,26,15,26,3,4.35,5.0,fr,14982,48,641856,1,1,Active Shallow Crust,0.0,89.98956,0.0,03/26/2431 +-4.96901,47.87725,5756,9,13,23,45,31,3.55,15.0,fr,14983,115,642241,1,1,Active Shallow Crust,0.0,89.99323,0.0,09/13/5756 +-4.96901,47.87725,3635,6,17,21,21,50,3.75,5.0,fr,14984,72,642264,1,1,Active Shallow Crust,0.0,89.98926,0.0,06/17/3635 +2.41355,51.5453,8506,1,11,23,7,14,3.55,5.0,fr,14985,170,642720,1,1,Active Shallow Crust,0.0,89.99059,0.0,01/11/8506 +2.41355,51.5453,3895,3,18,13,28,2,3.55,5.0,fr,14986,77,642723,1,1,Active Shallow Crust,240.0123,57.99828,0.0,03/18/3895 +2.41355,51.5453,2090,12,4,16,56,1,3.55,27.5,fr,14987,41,642725,1,1,Active Shallow Crust,240.0123,57.99818,0.0,12/04/2090 +2.41355,51.5453,3901,4,26,19,18,41,3.65,5.0,fr,14988,78,642732,1,1,Active Shallow Crust,0.0,89.98882,0.0,04/26/3901 +2.41355,51.5453,2910,9,25,4,47,13,3.65,27.5,fr,14989,58,642737,1,1,Active Shallow Crust,240.0014,58.01319,0.0,09/25/2910 +2.41355,51.5453,3524,11,10,3,31,49,3.75,5.0,fr,14990,70,642750,1,1,Active Shallow Crust,0.0,89.98992,-90.0,11/10/3524 +2.41355,51.5453,1561,6,24,21,0,18,3.85,15.0,fr,14991,31,642757,1,1,Active Shallow Crust,0.0,89.9889,0.0,06/24/1561 +2.41355,51.5453,9807,4,27,12,2,44,4.75,5.0,fr,14992,196,642864,1,1,Active Shallow Crust,0.0,89.98976,0.0,04/27/9807 +3.97316,50.35352,4427,1,26,6,57,54,3.55,5.0,fr,14993,88,643200,1,4,Active Shallow Crust,0.0,89.99035,0.0,01/26/4427 +3.97316,50.35352,2822,8,11,10,56,10,3.55,5.0,fr,14994,56,643200,1,4,Active Shallow Crust,0.0,89.99035,0.0,08/11/2822 +3.97316,50.35352,2712,11,18,10,25,50,3.55,5.0,fr,14995,54,643200,1,4,Active Shallow Crust,0.0,89.99035,0.0,11/18/2712 +3.97316,50.35352,3761,2,1,23,49,32,3.55,5.0,fr,14996,75,643200,1,4,Active Shallow Crust,0.0,89.99035,0.0,02/01/3761 +3.97316,50.35352,9019,11,4,23,6,20,3.55,15.0,fr,14997,180,643201,1,1,Active Shallow Crust,0.0,89.99035,0.0,11/04/9019 +3.97316,50.35352,8864,11,5,20,25,55,3.55,27.5,fr,14998,177,643205,1,1,Active Shallow Crust,240.0124,57.99808,0.0,11/05/8864 +3.97316,50.35352,759,8,2,23,51,55,3.55,5.0,fr,14999,15,643206,1,1,Active Shallow Crust,0.0,89.99023,-90.0,08/02/0759 +3.97316,50.35352,8330,6,28,11,26,20,3.55,27.5,fr,15000,166,643211,1,1,Active Shallow Crust,128.8956,89.99357,0.0,06/28/8330 +3.97316,50.35352,6073,8,26,2,18,55,3.65,5.0,fr,15001,121,643212,1,3,Active Shallow Crust,0.0,89.9914,0.0,08/26/6073 +3.97316,50.35352,3170,6,22,11,3,51,3.65,5.0,fr,15002,63,643212,1,3,Active Shallow Crust,0.0,89.9914,0.0,06/22/3170 +3.97316,50.35352,6557,5,24,2,57,18,3.65,5.0,fr,15003,131,643212,1,3,Active Shallow Crust,0.0,89.9914,0.0,05/24/6557 +3.97316,50.35352,8994,5,12,0,43,49,3.65,15.0,fr,15004,179,643213,1,1,Active Shallow Crust,0.0,89.9914,0.0,05/12/8994 +3.97316,50.35352,641,10,11,9,26,28,3.65,5.0,fr,15005,12,643221,1,1,Active Shallow Crust,128.9004,89.96335,0.0,10/11/0641 +3.97316,50.35352,8068,10,28,0,36,37,3.75,5.0,fr,15006,161,643224,1,2,Active Shallow Crust,0.0,89.98978,0.0,10/28/8068 +3.97316,50.35352,4341,11,21,0,13,7,3.75,5.0,fr,15007,86,643224,1,2,Active Shallow Crust,0.0,89.98978,0.0,11/21/4341 +3.97316,50.35352,5128,8,16,10,7,39,3.75,5.0,fr,15008,102,643227,1,1,Active Shallow Crust,240.009,58.01791,0.0,08/16/5128 +3.97316,50.35352,934,7,4,15,0,31,3.75,5.0,fr,15009,18,643233,1,1,Active Shallow Crust,128.8961,89.96733,0.0,07/04/0934 +3.97316,50.35352,5513,8,7,2,7,53,3.85,5.0,fr,15010,110,643236,1,2,Active Shallow Crust,0.0,89.99089,0.0,08/07/5513 +3.97316,50.35352,3887,12,29,23,37,47,3.85,5.0,fr,15011,77,643236,1,2,Active Shallow Crust,0.0,89.99089,0.0,12/29/3887 +3.97316,50.35352,1159,8,21,2,28,58,3.85,5.0,fr,15012,23,643239,1,1,Active Shallow Crust,240.0112,57.99795,0.0,08/21/1159 +3.97316,50.35352,7912,7,28,7,33,54,3.85,5.0,fr,15013,158,643242,1,1,Active Shallow Crust,0.0,89.99078,-90.0,07/28/7912 +3.97316,50.35352,8551,2,24,12,6,43,3.95,5.0,fr,15014,171,643248,1,2,Active Shallow Crust,0.0,89.98985,0.0,02/24/8551 +3.97316,50.35352,4748,11,23,15,4,33,3.95,5.0,fr,15015,94,643248,1,2,Active Shallow Crust,0.0,89.98985,0.0,11/23/4748 +3.97316,50.35352,1646,9,21,14,19,20,3.95,5.0,fr,15016,32,643257,1,1,Active Shallow Crust,128.8996,89.99391,0.0,09/21/1646 +3.97316,50.35352,8529,7,13,9,21,19,3.95,15.0,fr,15017,170,643258,1,1,Active Shallow Crust,128.8996,89.99391,0.0,07/13/8529 +3.97316,50.35352,131,12,14,16,3,26,4.05,15.0,fr,15018,2,643261,1,1,Active Shallow Crust,0.0,89.98914,0.0,12/14/0131 +3.97316,50.35352,6834,11,11,2,0,49,4.05,27.5,fr,15019,136,643262,1,1,Active Shallow Crust,0.0,89.98914,0.0,11/11/6834 +3.97316,50.35352,7613,6,8,13,31,55,4.05,5.0,fr,15020,152,643263,1,2,Active Shallow Crust,240.0068,58.00576,0.0,06/08/7613 +3.97316,50.35352,1293,9,1,0,41,22,4.05,5.0,fr,15021,25,643263,1,2,Active Shallow Crust,240.0068,58.00576,0.0,09/01/1293 +3.97316,50.35352,8799,1,8,8,18,52,4.05,27.5,fr,15022,175,643265,1,1,Active Shallow Crust,240.0068,58.00574,0.0,01/08/8799 +3.97316,50.35352,444,11,19,18,40,57,4.15,5.0,fr,15023,8,643272,1,1,Active Shallow Crust,0.0,89.99033,0.0,11/19/0444 +3.97316,50.35352,8597,2,17,9,22,15,4.35,15.0,fr,15024,171,643297,1,1,Active Shallow Crust,0.0,89.98975,0.0,02/17/8597 +3.97316,50.35352,4549,1,9,20,17,12,4.35,15.0,fr,15025,90,643306,1,1,Active Shallow Crust,128.8972,89.98271,0.0,01/09/4549 +3.97316,50.35352,5299,10,27,10,55,20,4.55,5.0,fr,15026,105,643320,1,1,Active Shallow Crust,0.0,89.98982,0.0,10/27/5299 +3.97316,50.35352,8196,12,13,13,5,6,4.55,15.0,fr,15027,163,643321,1,2,Active Shallow Crust,0.0,89.98982,0.0,12/13/8196 +3.97316,50.35352,7619,3,22,15,58,24,4.55,15.0,fr,15028,152,643321,1,2,Active Shallow Crust,0.0,89.98982,0.0,03/22/7619 +3.97316,50.35352,6207,11,15,6,14,15,4.55,15.0,fr,15029,124,643324,1,1,Active Shallow Crust,240.0105,57.99752,0.0,11/15/6207 +3.97316,50.35352,8072,5,27,8,56,36,4.65,5.0,fr,15030,161,643341,1,1,Active Shallow Crust,128.89,89.98698,0.0,05/27/8072 +3.97316,50.35352,3279,1,13,12,11,20,4.95,15.0,fr,15031,65,643369,1,1,Active Shallow Crust,0.0,89.98973,0.0,01/13/3279 +3.97316,50.35352,24,4,27,6,28,48,5.35,5.0,fr,15032,0,643422,1,1,Active Shallow Crust,0.0,89.99017,-90.0,04/27/0024 +3.97316,50.35352,9551,8,8,0,45,28,5.65,5.0,fr,15033,191,643461,1,1,Active Shallow Crust,128.8715,89.99044,0.0,08/08/9551 +3.973162,50.35352,6644,6,27,22,23,48,6.15,6.011322,fr,15034,132,643512,1,1,Active Shallow Crust,0.0,89.98999,0.0,06/27/6644 +5.38751,52.13477,3282,1,30,6,12,35,4.55,15.0,fr,15035,65,643804,1,1,Active Shallow Crust,240.011,57.99768,0.0,01/30/3282 +5.38751,52.13477,5887,12,26,1,38,29,5.25,5.0,fr,15036,117,643884,1,1,Active Shallow Crust,0.0,89.99038,0.0,12/26/5887 +4.11852,46.07131,9516,1,12,22,29,45,3.55,5.0,fr,15037,190,644160,1,1,Active Shallow Crust,0.0,89.993,0.0,01/12/9516 +4.11852,46.07131,6663,3,11,1,8,20,3.55,15.0,fr,15038,133,644161,1,1,Active Shallow Crust,0.0,89.993,0.0,03/11/6663 +4.11852,46.07131,8068,10,20,0,1,33,3.65,5.0,fr,15039,161,644172,1,1,Active Shallow Crust,0.0,89.98753,0.0,10/20/8068 +4.11852,46.07131,6434,8,13,8,9,52,3.65,15.0,fr,15040,128,644176,1,1,Active Shallow Crust,240.0013,58.01231,0.0,08/13/6434 +4.11852,46.07131,2983,11,16,9,10,48,3.85,15.0,fr,15041,59,644197,1,2,Active Shallow Crust,0.0,89.9901,0.0,11/16/2983 +4.11852,46.07131,3106,11,2,9,54,27,3.85,15.0,fr,15042,62,644197,1,2,Active Shallow Crust,0.0,89.9901,0.0,11/02/3106 +4.11852,46.07131,1918,8,6,4,13,19,3.95,5.0,fr,15043,38,644214,1,1,Active Shallow Crust,0.0,89.99107,-90.0,08/06/1918 +4.11852,46.07131,5296,3,16,6,6,2,4.05,5.0,fr,15044,105,644220,1,1,Active Shallow Crust,0.0,89.9882,0.0,03/16/5296 +4.11852,46.07131,2253,7,18,9,54,23,4.75,15.0,fr,15045,45,644311,1,1,Active Shallow Crust,0.0,89.98933,-90.0,07/18/2253 +4.11852,46.07131,610,12,17,21,23,13,4.95,5.0,fr,15046,12,644328,1,1,Active Shallow Crust,0.0,89.99023,0.0,12/17/0610 +-4.83152,48.16592,9345,3,15,23,5,47,3.55,15.0,fr,15047,186,644641,1,1,Active Shallow Crust,0.0,89.99327,0.0,03/15/9345 +-4.83152,48.16592,2063,4,7,2,54,19,3.55,5.0,fr,15048,41,644643,1,1,Active Shallow Crust,240.0112,57.99864,0.0,04/07/2063 +-4.83152,48.16592,9021,9,14,11,7,7,3.75,5.0,fr,15049,180,644664,1,1,Active Shallow Crust,0.0,89.98931,0.0,09/14/9021 +-4.83152,48.16592,3115,4,7,19,40,17,3.75,5.0,fr,15050,62,644673,1,1,Active Shallow Crust,128.8958,89.96752,0.0,04/07/3115 +-4.83152,48.16592,9764,3,6,15,24,48,3.85,5.0,fr,15051,195,644676,1,1,Active Shallow Crust,0.0,89.99048,0.0,03/06/9764 +-4.83152,48.16592,7339,5,12,17,49,16,4.05,5.0,fr,15052,146,644700,1,2,Active Shallow Crust,0.0,89.98866,0.0,05/12/7339 +-4.83152,48.16592,7698,7,2,15,4,51,4.05,5.0,fr,15053,153,644700,1,2,Active Shallow Crust,0.0,89.98866,0.0,07/02/7698 +-4.83152,48.16592,6586,5,21,20,24,3,4.25,5.0,fr,15054,131,644724,1,1,Active Shallow Crust,0.0,89.99099,0.0,05/21/6586 +-0.88282,43.9059,4246,4,1,9,48,22,3.55,5.0,fr,15055,84,645120,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/01/4246 +-0.88282,43.9059,1268,8,18,0,3,49,3.75,15.0,fr,15056,25,645148,1,1,Active Shallow Crust,240.0081,58.01751,0.0,08/18/1268 +-0.88282,43.9059,2118,4,29,15,2,11,3.75,15.0,fr,15057,42,645151,1,1,Active Shallow Crust,0.0,89.98978,-90.0,04/29/2118 +-0.88282,43.9059,4530,2,28,4,6,33,4.65,5.0,fr,15058,90,645252,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/28/4530 +5.3211,47.39925,5173,10,5,23,42,49,3.55,5.0,fr,15059,103,645600,1,4,Active Shallow Crust,0.0,89.99317,0.0,10/05/5173 +5.3211,47.39925,5140,6,21,11,43,0,3.55,5.0,fr,15060,102,645600,1,4,Active Shallow Crust,0.0,89.99317,0.0,06/21/5140 +5.3211,47.39925,2899,2,7,15,21,34,3.55,5.0,fr,15061,57,645600,1,4,Active Shallow Crust,0.0,89.99317,0.0,02/07/2899 +5.3211,47.39925,8023,3,15,21,23,29,3.55,5.0,fr,15062,160,645600,1,4,Active Shallow Crust,0.0,89.99317,0.0,03/15/8023 +5.3211,47.39925,2938,1,21,13,57,20,3.55,15.0,fr,15063,58,645601,1,1,Active Shallow Crust,0.0,89.99317,0.0,01/21/2938 +5.3211,47.39925,3927,5,27,9,17,49,3.65,5.0,fr,15064,78,645612,1,2,Active Shallow Crust,0.0,89.98783,0.0,05/27/3927 +5.3211,47.39925,297,9,6,15,58,34,3.65,5.0,fr,15065,5,645612,1,2,Active Shallow Crust,0.0,89.98783,0.0,09/06/0297 +5.3211,47.39925,7513,2,2,14,16,22,3.75,5.0,fr,15066,150,645624,1,1,Active Shallow Crust,0.0,89.98916,0.0,02/02/7513 +5.3211,47.39925,9212,12,21,21,7,54,3.75,15.0,fr,15067,184,645625,1,1,Active Shallow Crust,0.0,89.98916,0.0,12/21/9212 +5.3211,47.39925,8252,7,24,10,56,14,3.75,5.0,fr,15068,165,645627,1,1,Active Shallow Crust,240.0081,58.01864,0.0,07/24/8252 +5.3211,47.39925,6624,5,17,5,14,22,4.15,5.0,fr,15069,132,645672,1,1,Active Shallow Crust,0.0,89.98974,0.0,05/17/6624 +5.3211,47.39925,7256,2,27,18,31,43,4.45,5.0,fr,15070,145,645708,1,1,Active Shallow Crust,0.0,89.99031,0.0,02/27/7256 +5.3211,47.39925,8451,8,13,14,41,58,4.75,5.0,fr,15071,169,645750,1,1,Active Shallow Crust,0.0,89.98959,-90.0,08/13/8451 +5.3211,47.39925,6681,11,13,12,41,0,5.65,5.0,fr,15072,133,645852,1,1,Active Shallow Crust,0.0,89.99026,0.0,11/13/6681 +-3.37954,49.7924,4231,6,14,18,53,30,3.75,5.0,fr,15073,84,646113,1,1,Active Shallow Crust,128.8961,89.96732,0.0,06/14/4231 +-3.37954,49.7924,2152,4,26,0,39,26,3.85,5.0,fr,15074,43,646116,1,1,Active Shallow Crust,0.0,89.99078,0.0,04/26/2152 +-3.37954,49.7924,8418,4,23,9,7,44,4.85,5.0,fr,15075,168,646239,1,1,Active Shallow Crust,240.0187,58.00245,0.0,04/23/8418 +4.01274,50.72822,1331,2,8,23,27,22,3.55,5.0,fr,15076,26,646560,1,3,Active Shallow Crust,0.0,89.98724,0.0,02/08/1331 +4.01274,50.72822,9909,3,15,10,20,19,3.55,5.0,fr,15077,198,646560,1,3,Active Shallow Crust,0.0,89.98724,0.0,03/15/9909 +4.01274,50.72822,5592,7,11,11,42,38,3.55,5.0,fr,15078,111,646560,1,3,Active Shallow Crust,0.0,89.98724,0.0,07/11/5592 +4.01274,50.72822,2803,3,13,13,3,31,3.55,5.0,fr,15079,56,646566,1,1,Active Shallow Crust,0.0,89.98708,-90.0,03/13/2803 +4.01274,50.72822,8463,5,21,15,34,31,3.55,15.0,fr,15080,169,646570,1,1,Active Shallow Crust,128.8958,89.99361,0.0,05/21/8463 +4.01274,50.72822,3193,10,20,6,44,44,3.75,5.0,fr,15081,63,646584,1,1,Active Shallow Crust,0.0,89.98986,0.0,10/20/3193 +4.01274,50.72822,2455,6,1,20,4,19,3.75,15.0,fr,15082,49,646588,1,1,Active Shallow Crust,240.0086,58.01778,0.0,06/01/2455 +4.01274,50.72822,2435,6,25,3,19,27,3.85,5.0,fr,15083,48,646596,1,1,Active Shallow Crust,0.0,89.99096,0.0,06/25/2435 +4.01274,50.72822,3218,4,2,15,8,21,3.85,5.0,fr,15084,64,646602,1,1,Active Shallow Crust,0.0,89.99086,-90.0,04/02/3218 +4.01274,50.72822,4703,6,11,18,46,4,4.05,5.0,fr,15085,94,646620,1,1,Active Shallow Crust,0.0,89.98923,0.0,06/11/4703 +4.01274,50.72822,6737,3,14,2,9,2,4.35,5.0,fr,15086,134,646662,1,1,Active Shallow Crust,0.0,89.98972,-90.0,03/14/6737 +4.01274,50.72822,6690,7,30,8,29,46,4.75,5.0,fr,15087,133,646704,1,1,Active Shallow Crust,0.0,89.99038,0.0,07/30/6690 +-6.02667,48.30889,2048,7,5,16,45,32,3.65,5.0,fr,15088,40,647052,1,1,Active Shallow Crust,0.0,89.98804,0.0,07/05/2048 +-0.3226,48.41599,3761,4,7,3,1,36,3.55,15.0,fr,15089,75,647527,1,1,Active Shallow Crust,0.0,89.98985,-90.0,04/07/3761 +-0.3226,48.41599,9036,2,24,8,52,16,3.65,5.0,fr,15090,180,647532,1,1,Active Shallow Crust,0.0,89.98994,0.0,02/24/9036 +-0.3226,48.41599,7149,11,16,13,48,35,3.75,5.0,fr,15091,142,647544,1,1,Active Shallow Crust,0.0,89.99003,0.0,11/16/7149 +-0.3226,48.41599,5648,7,30,11,0,50,3.85,5.0,fr,15092,112,647556,1,1,Active Shallow Crust,0.0,89.98993,0.0,07/30/5648 +-0.3226,48.41599,4992,3,11,18,12,34,3.85,15.0,fr,15093,99,647557,1,1,Active Shallow Crust,0.0,89.98993,0.0,03/11/4992 +-0.3226,48.41599,8550,1,26,20,23,10,3.85,5.0,fr,15094,170,647559,1,1,Active Shallow Crust,240.0111,57.99783,0.0,01/26/8550 +-0.3226,48.41599,8109,2,15,10,17,35,3.85,5.0,fr,15095,162,647562,1,1,Active Shallow Crust,0.0,89.99011,-90.0,02/15/8109 +-0.3226,48.41599,989,10,4,3,42,8,3.95,5.0,fr,15096,19,647577,1,1,Active Shallow Crust,128.9001,89.9938,0.0,10/04/0989 +-0.3226,48.41599,1289,9,10,12,52,47,4.15,15.0,fr,15097,25,647596,1,1,Active Shallow Crust,240.0088,57.99743,0.0,09/10/1289 +-0.3226,48.41599,5271,12,1,13,32,2,4.25,5.0,fr,15098,105,647604,1,1,Active Shallow Crust,0.0,89.98991,0.0,12/01/5271 +-0.3226,48.41599,1040,8,7,9,51,26,4.35,5.0,fr,15099,20,647616,1,1,Active Shallow Crust,0.0,89.99001,0.0,08/07/1040 +-0.3226,48.41599,4940,6,12,15,4,38,4.35,5.0,fr,15100,98,647625,1,1,Active Shallow Crust,128.8974,89.98277,0.0,06/12/4940 +-0.3622934,48.46157,5555,6,29,19,57,43,7.05,14.36781,fr,15101,111,647943,1,1,Active Shallow Crust,240.1947,57.99961,0.0,06/29/5555 +-0.46123,48.54009,7812,1,26,19,36,22,3.55,15.0,fr,15102,156,648001,1,1,Active Shallow Crust,0.0,89.98998,0.0,01/26/7812 +-0.46123,48.54009,1315,2,11,5,59,58,3.65,5.0,fr,15103,26,648012,1,1,Active Shallow Crust,0.0,89.98996,0.0,02/11/1315 +-0.46123,48.54009,5150,4,11,11,1,6,3.65,27.5,fr,15104,102,648014,1,1,Active Shallow Crust,0.0,89.98996,0.0,04/11/5150 +-0.46123,48.54009,8368,3,25,15,37,50,3.75,5.0,fr,15105,167,648024,1,1,Active Shallow Crust,0.0,89.99006,0.0,03/25/8368 +-0.46123,48.54009,6524,1,17,7,34,51,3.85,5.0,fr,15106,130,648042,1,1,Active Shallow Crust,0.0,89.99014,-90.0,01/17/6524 +-0.46123,48.54009,7893,8,30,2,16,10,4.05,5.0,fr,15107,157,648060,1,1,Active Shallow Crust,0.0,89.98991,0.0,08/30/7893 +-0.46123,48.54009,8474,7,1,14,32,57,4.15,5.0,fr,15108,169,648075,1,1,Active Shallow Crust,240.0088,57.99739,0.0,07/01/8474 +-0.46123,48.54009,2084,4,15,17,8,40,4.25,15.0,fr,15109,41,648085,1,1,Active Shallow Crust,0.0,89.98994,0.0,04/15/2084 +-0.46123,48.54009,1808,12,31,7,30,46,4.45,15.0,fr,15110,36,648112,1,1,Active Shallow Crust,240.0058,57.9948,0.0,12/31/1808 +3.5011,49.29069,6981,12,23,8,6,34,3.75,5.0,fr,15111,139,648504,1,1,Active Shallow Crust,0.0,89.98955,0.0,12/23/6981 +-0.83274,50.50291,42,9,25,22,15,37,3.65,27.5,fr,15112,0,648974,1,1,Active Shallow Crust,0.0,89.99,0.0,09/25/0042 +-0.83274,50.50291,3266,11,21,19,29,56,3.75,5.0,fr,15113,65,648987,1,1,Active Shallow Crust,240.0089,58.01766,0.0,11/21/3266 +-0.83274,50.50291,8277,4,20,22,7,41,4.15,5.0,fr,15114,165,649041,1,1,Active Shallow Crust,128.8969,89.99377,0.0,04/20/8277 +-0.83274,50.50291,5880,1,22,11,46,18,4.65,27.5,fr,15115,117,649094,1,1,Active Shallow Crust,0.0,89.99006,0.0,01/22/5880 +-3.23204,50.07215,850,10,25,14,23,9,3.55,5.0,fr,15116,16,649443,1,1,Active Shallow Crust,240.0127,57.99783,0.0,10/25/0850 +-3.23204,50.07215,8075,1,18,11,14,40,3.75,5.0,fr,15117,161,649470,1,1,Active Shallow Crust,0.0,89.9896,-90.0,01/18/8075 +-3.23204,50.07215,2435,1,21,14,12,27,4.55,5.0,fr,15118,48,649566,1,1,Active Shallow Crust,0.0,89.98965,-90.0,01/21/2435 +-3.23204,50.07215,3054,1,4,17,56,45,4.75,27.5,fr,15119,61,649586,1,1,Active Shallow Crust,0.0,89.99024,0.0,01/04/3054 +0.71748,46.61463,7967,4,29,2,14,8,3.55,5.0,fr,15120,159,649920,1,2,Active Shallow Crust,0.0,89.98961,0.0,04/29/7967 +0.71748,46.61463,9268,1,19,17,34,4,3.55,5.0,fr,15121,185,649920,1,2,Active Shallow Crust,0.0,89.98961,0.0,01/19/9268 +0.71748,46.61463,9108,2,5,7,52,27,3.55,15.0,fr,15122,182,649927,1,1,Active Shallow Crust,0.0,89.99036,-90.0,02/05/9108 +0.71748,46.61463,4444,4,14,17,42,46,3.65,15.0,fr,15123,88,649933,1,1,Active Shallow Crust,0.0,89.98997,0.0,04/14/4444 +0.71748,46.61463,7975,7,23,9,9,18,3.65,5.0,fr,15124,159,649938,1,1,Active Shallow Crust,0.0,89.98985,-90.0,07/23/7975 +0.71748,46.61463,2790,2,13,6,2,14,3.75,5.0,fr,15125,55,649953,1,1,Active Shallow Crust,128.8965,89.96737,0.0,02/13/2790 +0.71748,46.61463,8745,8,27,1,32,47,3.85,5.0,fr,15126,174,649956,1,1,Active Shallow Crust,0.0,89.99019,0.0,08/27/8745 +0.71748,46.61463,8963,7,19,17,27,49,3.85,15.0,fr,15127,179,649957,1,1,Active Shallow Crust,0.0,89.99019,0.0,07/19/8963 +0.71748,46.61463,4281,9,19,9,26,49,3.85,5.0,fr,15128,85,649965,1,1,Active Shallow Crust,128.8956,89.99387,0.0,09/19/4281 +0.71748,46.61463,5447,6,16,18,20,45,3.95,5.0,fr,15129,108,649968,1,1,Active Shallow Crust,0.0,89.99017,0.0,06/16/5447 +0.71748,46.61463,2204,4,30,2,14,52,4.05,5.0,fr,15130,44,649980,1,1,Active Shallow Crust,0.0,89.98978,0.0,04/30/2204 +0.71748,46.61463,8087,6,22,5,7,26,4.15,15.0,fr,15131,161,649993,1,1,Active Shallow Crust,0.0,89.99002,0.0,06/22/8087 +0.71748,46.61463,2644,4,21,9,58,50,4.25,5.0,fr,15132,52,650013,1,1,Active Shallow Crust,128.8943,89.98095,0.0,04/21/2644 +0.71748,46.61463,437,7,19,19,6,44,4.35,5.0,fr,15133,8,650016,1,1,Active Shallow Crust,0.0,89.99001,0.0,07/19/0437 +0.71748,46.61463,7867,9,1,9,29,54,4.35,27.5,fr,15134,157,650018,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/01/7867 +0.71748,46.61463,2055,3,10,12,18,0,4.45,15.0,fr,15135,41,650029,1,1,Active Shallow Crust,0.0,89.98986,0.0,03/10/2055 +0.71748,46.61463,657,3,31,20,13,53,4.55,5.0,fr,15136,13,650046,1,1,Active Shallow Crust,0.0,89.99003,-90.0,03/31/0657 +0.71748,46.61463,1803,2,2,23,29,36,4.65,15.0,fr,15137,36,650059,1,1,Active Shallow Crust,0.0,89.98988,-90.0,02/02/1803 +0.71748,46.61463,1337,1,15,9,15,27,4.85,5.0,fr,15138,26,650079,1,1,Active Shallow Crust,240.0172,58.0023,0.0,01/15/1337 +0.71748,46.61463,7457,1,19,18,53,3,5.35,5.0,fr,15139,149,650136,1,1,Active Shallow Crust,0.0,89.98997,0.0,01/19/7457 +0.717496,46.61463,1556,3,4,13,23,12,6.75,11.99416,fr,15140,31,650304,1,2,Active Shallow Crust,360.0,89.99,0.0,03/04/1556 +0.717496,46.61463,1307,7,31,10,18,56,6.75,11.99416,fr,15141,26,650304,1,2,Active Shallow Crust,360.0,89.99,0.0,07/31/1307 +4.32258,51.50506,4737,11,21,19,18,59,3.55,5.0,fr,15142,94,650400,1,2,Active Shallow Crust,0.0,89.98745,0.0,11/21/4737 +4.32258,51.50506,4027,9,26,15,55,58,3.55,5.0,fr,15143,80,650400,1,2,Active Shallow Crust,0.0,89.98745,0.0,09/26/4027 +4.32258,51.50506,7005,2,25,2,19,14,3.65,15.0,fr,15144,140,650422,1,1,Active Shallow Crust,128.8992,89.96362,0.0,02/25/7005 +0.91097,51.23971,6184,7,4,12,55,39,4.25,5.0,fr,15145,123,651444,1,1,Active Shallow Crust,0.0,89.99013,0.0,07/04/6184 +0.91097,51.23971,9471,1,12,13,11,43,4.55,5.0,fr,15146,189,651480,1,1,Active Shallow Crust,0.0,89.99001,0.0,01/12/9471 +0.91097,51.23971,8420,2,25,8,45,50,5.45,5.0,fr,15147,168,651588,1,1,Active Shallow Crust,0.0,89.98999,0.0,02/25/8420 +-5.23841,49.07885,7674,6,21,3,52,11,3.65,5.0,fr,15148,153,651852,1,1,Active Shallow Crust,0.0,89.98823,0.0,06/21/7674 +-5.23841,49.07885,9309,11,29,21,56,44,4.05,5.0,fr,15149,186,651900,1,1,Active Shallow Crust,0.0,89.98885,0.0,11/29/9309 +-5.23841,49.07885,6732,5,19,13,27,11,4.05,15.0,fr,15150,134,651901,1,1,Active Shallow Crust,0.0,89.98885,0.0,05/19/6732 +-5.23841,49.07885,431,8,23,10,49,59,4.15,5.0,fr,15151,8,651912,1,1,Active Shallow Crust,0.0,89.99007,0.0,08/23/0431 +1.26377,45.44501,1177,12,24,11,38,37,3.95,27.5,fr,15152,23,652370,1,1,Active Shallow Crust,0.0,89.98996,0.0,12/24/1177 +1.26377,45.44501,9934,11,9,22,18,40,4.05,5.0,fr,15153,198,652380,1,1,Active Shallow Crust,0.0,89.99005,0.0,11/09/9934 +6.073,51.00813,7850,2,25,16,58,31,3.55,5.0,fr,15154,156,652800,1,2,Active Shallow Crust,0.0,89.98731,0.0,02/25/7850 +6.073,51.00813,779,1,22,15,12,52,3.55,5.0,fr,15155,15,652800,1,2,Active Shallow Crust,0.0,89.98731,0.0,01/22/0779 +6.073,51.00813,621,7,16,0,23,24,3.55,27.5,fr,15156,12,652802,1,2,Active Shallow Crust,0.0,89.98731,0.0,07/16/0621 +6.073,51.00813,8150,6,15,15,35,17,3.55,27.5,fr,15157,162,652802,1,2,Active Shallow Crust,0.0,89.98731,0.0,06/15/8150 +6.073,51.00813,4786,8,9,17,33,52,3.55,27.5,fr,15158,95,652805,1,1,Active Shallow Crust,240.0138,57.99713,0.0,08/09/4786 +6.073,51.00813,5526,11,19,10,23,30,3.55,5.0,fr,15159,110,652806,1,1,Active Shallow Crust,0.0,89.98716,-90.0,11/19/5526 +6.073,51.00813,37,8,18,1,26,11,3.55,27.5,fr,15160,0,652811,1,1,Active Shallow Crust,128.896,89.99365,0.0,08/18/0037 +6.073,51.00813,8878,2,21,15,48,17,3.65,5.0,fr,15161,177,652812,1,3,Active Shallow Crust,0.0,89.98869,0.0,02/21/8878 +6.073,51.00813,452,8,7,15,41,5,3.65,5.0,fr,15162,9,652812,1,3,Active Shallow Crust,0.0,89.98869,0.0,08/07/0452 +6.073,51.00813,4289,6,27,3,18,2,3.65,5.0,fr,15163,85,652812,1,3,Active Shallow Crust,0.0,89.98869,0.0,06/27/4289 +6.073,51.00813,8410,9,16,0,22,12,3.65,15.0,fr,15164,168,652813,1,1,Active Shallow Crust,0.0,89.98869,0.0,09/16/8410 +6.073,51.00813,1784,12,15,10,50,5,3.65,15.0,fr,15165,35,652816,1,1,Active Shallow Crust,240.0019,58.01309,0.0,12/15/1784 +6.073,51.00813,7134,7,23,6,40,11,3.65,5.0,fr,15166,142,652818,1,1,Active Shallow Crust,0.0,89.98856,-90.0,07/23/7134 +6.073,51.00813,9297,2,11,5,38,6,3.65,5.0,fr,15167,185,652821,1,1,Active Shallow Crust,128.9003,89.96361,0.0,02/11/9297 +6.073,51.00813,2408,8,6,5,28,20,3.75,5.0,fr,15168,48,652824,1,2,Active Shallow Crust,0.0,89.98992,0.0,08/06/2408 +6.073,51.00813,9172,9,3,19,39,53,3.75,5.0,fr,15169,183,652824,1,2,Active Shallow Crust,0.0,89.98992,0.0,09/03/9172 +6.073,51.00813,807,7,14,23,36,3,3.75,5.0,fr,15170,16,652830,1,1,Active Shallow Crust,0.0,89.9898,-90.0,07/14/0807 +6.073,51.00813,1369,4,6,17,19,31,3.85,5.0,fr,15171,27,652836,1,4,Active Shallow Crust,0.0,89.99101,0.0,04/06/1369 +6.073,51.00813,9094,9,17,7,25,11,3.85,5.0,fr,15172,181,652836,1,4,Active Shallow Crust,0.0,89.99101,0.0,09/17/9094 +6.073,51.00813,7063,4,19,5,14,53,3.85,5.0,fr,15173,141,652836,1,4,Active Shallow Crust,0.0,89.99101,0.0,04/19/7063 +6.073,51.00813,7838,12,18,7,55,6,3.85,5.0,fr,15174,156,652836,1,4,Active Shallow Crust,0.0,89.99101,0.0,12/18/7838 +6.073,51.00813,9820,4,20,2,11,42,3.85,5.0,fr,15175,196,652839,1,2,Active Shallow Crust,240.0118,57.99808,0.0,04/20/9820 +6.073,51.00813,4974,9,16,3,16,29,3.85,5.0,fr,15176,99,652839,1,2,Active Shallow Crust,240.0118,57.99808,0.0,09/16/4974 +6.073,51.00813,2777,8,24,5,4,43,3.85,27.5,fr,15177,55,652844,1,1,Active Shallow Crust,0.0,89.99091,-90.0,08/24/2777 +6.073,51.00813,5967,4,3,16,43,40,3.95,5.0,fr,15178,119,652848,1,2,Active Shallow Crust,0.0,89.99199,0.0,04/03/5967 +6.073,51.00813,5092,8,31,0,24,50,3.95,5.0,fr,15179,101,652848,1,2,Active Shallow Crust,0.0,89.99199,0.0,08/31/5092 +6.073,51.00813,1636,8,6,14,54,18,3.95,5.0,fr,15180,32,652851,1,1,Active Shallow Crust,240.02,58.00581,0.0,08/06/1636 +6.073,51.00813,9571,7,26,14,57,32,3.95,5.0,fr,15181,191,652857,1,1,Active Shallow Crust,128.899,89.994,0.0,07/26/9571 +6.073,51.00813,4946,10,30,11,40,28,3.95,15.0,fr,15182,98,652858,1,1,Active Shallow Crust,128.899,89.994,0.0,10/30/4946 +6.073,51.00813,7343,6,17,23,11,44,4.15,5.0,fr,15183,146,652872,1,3,Active Shallow Crust,0.0,89.99046,0.0,06/17/7343 +6.073,51.00813,9118,8,20,5,38,11,4.15,5.0,fr,15184,182,652872,1,3,Active Shallow Crust,0.0,89.99046,0.0,08/20/9118 +6.073,51.00813,7388,7,5,19,2,20,4.15,5.0,fr,15185,147,652872,1,3,Active Shallow Crust,0.0,89.99046,0.0,07/05/7388 +6.073,51.00813,4147,5,21,4,34,56,4.15,5.0,fr,15186,82,652881,1,1,Active Shallow Crust,128.8964,89.99364,0.0,05/21/4147 +6.073,51.00813,9557,12,16,6,53,58,4.35,15.0,fr,15187,191,652897,1,1,Active Shallow Crust,0.0,89.9899,0.0,12/16/9557 +6.073,51.00813,3524,4,17,7,22,53,4.45,15.0,fr,15188,70,652909,1,1,Active Shallow Crust,0.0,89.991,0.0,04/17/3524 +6.073,51.00813,8456,12,31,9,55,2,4.45,27.5,fr,15189,169,652910,1,1,Active Shallow Crust,0.0,89.991,0.0,12/31/8456 +6.073,51.00813,2464,2,16,6,14,41,5.95,5.0,fr,15190,49,653091,1,1,Active Shallow Crust,240.0584,58.00008,0.0,02/16/2464 +-4.74905,47.90084,7029,11,25,6,46,22,3.65,5.0,fr,15191,140,653298,1,1,Active Shallow Crust,0.0,89.98781,-90.0,11/25/7029 +-4.74905,47.90084,5525,8,21,22,17,13,3.85,15.0,fr,15192,110,653323,1,1,Active Shallow Crust,0.0,89.99032,-90.0,08/21/5525 +-4.74905,47.90084,6654,9,9,13,1,40,4.35,5.0,fr,15193,133,653376,1,1,Active Shallow Crust,0.0,89.98923,0.0,09/09/6654 +-4.74905,47.90084,5211,4,7,3,24,44,4.45,5.0,fr,15194,104,653388,1,1,Active Shallow Crust,0.0,89.9904,0.0,04/07/5211 +-4.74905,47.90084,8954,4,5,20,49,22,5.55,5.0,fr,15195,179,653520,1,1,Active Shallow Crust,0.0,89.98985,0.0,04/05/8954 +1.52122,49.44171,2700,5,9,9,39,11,3.85,5.0,fr,15196,53,653802,1,1,Active Shallow Crust,0.0,89.98943,-90.0,05/09/2700 +1.52122,49.44171,8594,2,21,12,4,17,3.95,5.0,fr,15197,171,653808,1,1,Active Shallow Crust,0.0,89.98965,0.0,02/21/8594 +1.52122,49.44171,7336,7,10,6,14,44,4.45,15.0,fr,15198,146,653869,1,1,Active Shallow Crust,0.0,89.99011,0.0,07/10/7336 +1.52122,49.44171,6164,5,25,2,44,25,4.55,5.0,fr,15199,123,653883,1,1,Active Shallow Crust,240.0102,57.99756,0.0,05/25/6164 +2.12701,50.7652,3929,6,21,4,25,32,3.55,5.0,fr,15200,78,654240,1,1,Active Shallow Crust,0.0,89.99043,0.0,06/21/3929 +2.12701,50.7652,4737,4,1,22,57,16,3.55,5.0,fr,15201,94,654243,1,1,Active Shallow Crust,240.0127,57.99804,0.0,04/01/4737 +2.12701,50.7652,3677,8,7,17,48,18,3.65,5.0,fr,15202,73,654261,1,1,Active Shallow Crust,128.8994,89.96361,0.0,08/07/3677 +2.12701,50.7652,8681,8,21,6,50,40,3.75,15.0,fr,15203,173,654265,1,1,Active Shallow Crust,0.0,89.98987,0.0,08/21/8681 +2.12701,50.7652,8482,12,5,5,22,58,3.95,5.0,fr,15204,169,654288,1,1,Active Shallow Crust,0.0,89.98994,0.0,12/05/8482 +2.12701,50.7652,314,5,6,7,2,44,4.15,5.0,fr,15205,6,654321,1,1,Active Shallow Crust,128.8966,89.99361,0.0,05/06/0314 +2.12701,50.7652,3378,12,6,6,48,48,4.55,5.0,fr,15206,67,654360,1,1,Active Shallow Crust,0.0,89.98991,0.0,12/06/3378 +7.1204,50.39663,6251,6,23,19,17,16,3.55,5.0,fr,15207,125,654720,1,6,Active Shallow Crust,0.0,89.98714,0.0,06/23/6251 +7.1204,50.39663,8269,3,28,20,7,8,3.55,5.0,fr,15208,165,654720,1,6,Active Shallow Crust,0.0,89.98714,0.0,03/28/8269 +7.1204,50.39663,6971,1,15,10,57,11,3.55,5.0,fr,15209,139,654720,1,6,Active Shallow Crust,0.0,89.98714,0.0,01/15/6971 +7.1204,50.39663,1510,9,8,9,32,39,3.55,5.0,fr,15210,30,654720,1,6,Active Shallow Crust,0.0,89.98714,0.0,09/08/1510 +7.1204,50.39663,5284,9,1,5,57,40,3.55,5.0,fr,15211,105,654720,1,6,Active Shallow Crust,0.0,89.98714,0.0,09/01/5284 +7.1204,50.39663,6099,3,10,17,43,6,3.55,5.0,fr,15212,121,654720,1,6,Active Shallow Crust,0.0,89.98714,0.0,03/10/6099 +7.1204,50.39663,7310,4,27,5,49,46,3.55,5.0,fr,15213,146,654726,1,4,Active Shallow Crust,0.0,89.98699,-90.0,04/27/7310 +7.1204,50.39663,9739,7,3,9,30,1,3.55,5.0,fr,15214,194,654726,1,4,Active Shallow Crust,0.0,89.98699,-90.0,07/03/9739 +7.1204,50.39663,6545,2,22,8,1,2,3.55,5.0,fr,15215,130,654726,1,4,Active Shallow Crust,0.0,89.98699,-90.0,02/22/6545 +7.1204,50.39663,8859,12,16,7,48,52,3.55,5.0,fr,15216,177,654726,1,4,Active Shallow Crust,0.0,89.98699,-90.0,12/16/8859 +7.1204,50.39663,2670,3,1,11,18,35,3.55,15.0,fr,15217,53,654727,1,1,Active Shallow Crust,0.0,89.98699,-90.0,03/01/2670 +7.1204,50.39663,6186,6,16,20,1,8,3.65,5.0,fr,15218,123,654732,1,3,Active Shallow Crust,0.0,89.98854,0.0,06/16/6186 +7.1204,50.39663,3416,11,14,20,39,50,3.65,5.0,fr,15219,68,654732,1,3,Active Shallow Crust,0.0,89.98854,0.0,11/14/3416 +7.1204,50.39663,6567,8,5,9,3,53,3.65,5.0,fr,15220,131,654732,1,3,Active Shallow Crust,0.0,89.98854,0.0,08/05/6567 +7.1204,50.39663,3215,1,16,11,15,27,3.65,15.0,fr,15221,64,654733,1,4,Active Shallow Crust,0.0,89.98854,0.0,01/16/3215 +7.1204,50.39663,2837,4,21,17,38,39,3.65,15.0,fr,15222,56,654733,1,4,Active Shallow Crust,0.0,89.98854,0.0,04/21/2837 +7.1204,50.39663,4005,1,26,18,39,45,3.65,15.0,fr,15223,80,654733,1,4,Active Shallow Crust,0.0,89.98854,0.0,01/26/4005 +7.1204,50.39663,4062,2,25,13,35,4,3.65,15.0,fr,15224,81,654733,1,4,Active Shallow Crust,0.0,89.98854,0.0,02/25/4062 +7.1204,50.39663,5150,8,11,12,11,22,3.65,5.0,fr,15225,102,654735,1,1,Active Shallow Crust,240.001,58.01362,0.0,08/11/5150 +7.1204,50.39663,4353,6,18,6,59,5,3.75,5.0,fr,15226,87,654744,1,2,Active Shallow Crust,0.0,89.98978,0.0,06/18/4353 +7.1204,50.39663,1471,9,7,7,36,53,3.75,5.0,fr,15227,29,654744,1,2,Active Shallow Crust,0.0,89.98978,0.0,09/07/1471 +7.1204,50.39663,3030,2,25,14,14,40,3.75,15.0,fr,15228,60,654745,1,1,Active Shallow Crust,0.0,89.98978,0.0,02/25/3030 +7.1204,50.39663,217,3,8,8,26,27,3.85,5.0,fr,15229,4,654756,1,2,Active Shallow Crust,0.0,89.9909,0.0,03/08/0217 +7.1204,50.39663,1227,9,17,2,4,34,3.85,5.0,fr,15230,24,654756,1,2,Active Shallow Crust,0.0,89.9909,0.0,09/17/1227 +7.1204,50.39663,8722,9,30,4,46,32,3.85,5.0,fr,15231,174,654762,1,1,Active Shallow Crust,0.0,89.99079,-90.0,09/30/8722 +7.1204,50.39663,7969,6,14,3,8,21,3.95,5.0,fr,15232,159,654777,1,1,Active Shallow Crust,128.9008,89.99189,0.0,06/14/7969 +7.1204,50.39663,8046,3,17,19,22,44,4.05,5.0,fr,15233,160,654780,1,1,Active Shallow Crust,0.0,89.98916,0.0,03/17/8046 +7.1204,50.39663,1236,5,12,20,22,3,4.05,15.0,fr,15234,24,654781,1,2,Active Shallow Crust,0.0,89.98916,0.0,05/12/1236 +7.1204,50.39663,2482,2,18,20,6,50,4.05,15.0,fr,15235,49,654781,1,2,Active Shallow Crust,0.0,89.98916,0.0,02/18/2482 +7.1204,50.39663,8021,7,1,19,49,26,4.35,5.0,fr,15236,160,654822,1,1,Active Shallow Crust,0.0,89.98965,-90.0,07/01/8021 +7.1204,50.39663,8711,10,24,5,17,35,4.45,5.0,fr,15237,174,654831,1,1,Active Shallow Crust,240.0066,57.99465,0.0,10/24/8711 +7.1204,50.39663,3492,11,7,22,52,58,4.55,5.0,fr,15238,69,654840,1,1,Active Shallow Crust,0.0,89.98984,0.0,11/07/3492 +7.1204,50.39663,8742,8,6,7,54,36,4.65,15.0,fr,15239,174,654856,1,1,Active Shallow Crust,240.0123,57.99459,0.0,08/06/8742 +7.1204,50.39663,9213,6,15,2,18,19,4.95,15.0,fr,15240,184,654889,1,1,Active Shallow Crust,0.0,89.98974,0.0,06/15/9213 +7.1204,50.39663,807,8,18,3,29,57,5.35,15.0,fr,15241,16,654937,1,1,Active Shallow Crust,0.0,89.99029,0.0,08/18/0807 +7.1204,50.39663,1588,2,11,16,45,31,5.45,5.0,fr,15242,31,654954,1,1,Active Shallow Crust,0.0,89.98978,-90.0,02/11/1588 +3.09455,47.96995,2757,3,25,16,50,34,3.55,5.0,fr,15243,55,655203,1,1,Active Shallow Crust,240.0122,57.99842,0.0,03/25/2757 +3.09455,47.96995,5195,7,29,4,45,14,3.75,5.0,fr,15244,103,655224,1,1,Active Shallow Crust,0.0,89.98927,0.0,07/29/5195 +3.09455,47.96995,246,10,17,16,18,49,4.05,15.0,fr,15245,4,655270,1,1,Active Shallow Crust,128.89,89.99431,0.0,10/17/0246 +3.40142,41.73319,7860,12,1,11,20,32,3.55,5.0,fr,15246,157,655680,1,1,Active Shallow Crust,0.0,89.98872,0.0,12/01/7860 +3.40142,41.73319,9755,1,2,2,8,59,3.65,5.0,fr,15247,195,655692,1,1,Active Shallow Crust,0.0,89.98994,0.0,01/02/9755 +3.40142,41.73319,6384,7,7,20,41,19,3.65,15.0,fr,15248,127,655702,1,1,Active Shallow Crust,128.9011,89.96343,0.0,07/07/6384 +3.40142,41.73319,1566,6,10,1,30,22,3.85,5.0,fr,15249,31,655716,1,1,Active Shallow Crust,0.0,89.98934,0.0,06/10/1566 +3.40142,41.73319,1790,8,14,22,4,33,3.95,5.0,fr,15250,35,655728,1,1,Active Shallow Crust,0.0,89.9905,0.0,08/14/1790 +3.40142,41.73319,4698,7,12,10,29,57,4.05,5.0,fr,15251,93,655740,1,1,Active Shallow Crust,0.0,89.98942,0.0,07/12/4698 +3.40142,41.73319,740,4,17,5,54,21,4.05,27.5,fr,15252,14,655745,1,1,Active Shallow Crust,240.0052,58.00544,0.0,04/17/0740 +3.40142,41.73319,4229,3,14,16,26,53,4.15,5.0,fr,15253,84,655752,1,2,Active Shallow Crust,0.0,89.99057,0.0,03/14/4229 +3.40142,41.73319,5488,3,19,18,20,7,4.15,5.0,fr,15254,109,655752,1,2,Active Shallow Crust,0.0,89.99057,0.0,03/19/5488 +3.40142,41.73319,8932,4,10,12,28,8,4.15,27.5,fr,15255,178,655757,1,1,Active Shallow Crust,240.0077,57.99723,0.0,04/10/8932 +3.40142,41.73319,1891,9,24,20,51,2,4.15,27.5,fr,15256,37,655760,1,1,Active Shallow Crust,0.0,89.99046,-90.0,09/24/1891 +3.40142,41.73319,5016,9,12,4,34,42,4.25,5.0,fr,15257,100,655764,1,1,Active Shallow Crust,0.0,89.98991,0.0,09/12/5016 +3.40142,41.73319,8410,2,7,4,32,25,4.55,5.0,fr,15258,168,655803,1,1,Active Shallow Crust,240.008,57.9971,0.0,02/07/8410 +3.40142,41.73319,7808,5,8,18,57,18,4.95,5.0,fr,15259,156,655857,1,1,Active Shallow Crust,128.8915,89.98973,0.0,05/08/7808 +3.40142,41.73319,2155,1,29,14,16,12,5.15,5.0,fr,15260,43,655875,1,1,Active Shallow Crust,240.0171,57.99952,0.0,01/29/2155 +-1.74296,44.9176,5721,4,13,3,34,53,3.85,5.0,fr,15261,114,656685,1,1,Active Shallow Crust,128.8957,89.99368,0.0,04/13/5721 +3.96238,48.10087,1031,2,28,5,40,29,3.55,5.0,fr,15262,20,657120,1,1,Active Shallow Crust,0.0,89.9899,0.0,02/28/1031 +3.96238,48.10087,8694,8,6,2,52,38,3.65,15.0,fr,15263,173,657136,1,1,Active Shallow Crust,240.0011,58.01318,0.0,08/06/8694 +7.3044,44.51706,9318,4,8,23,16,27,3.55,5.0,fr,15264,186,657600,1,4,Active Shallow Crust,0.0,89.99281,0.0,04/08/9318 +7.3044,44.51706,549,5,31,10,51,22,3.55,5.0,fr,15265,10,657600,1,4,Active Shallow Crust,0.0,89.99281,0.0,05/31/0549 +7.3044,44.51706,5942,11,5,18,10,44,3.55,5.0,fr,15266,118,657600,1,4,Active Shallow Crust,0.0,89.99281,0.0,11/05/5942 +7.3044,44.51706,6578,4,9,3,38,42,3.55,5.0,fr,15267,131,657600,1,4,Active Shallow Crust,0.0,89.99281,0.0,04/09/6578 +7.3044,44.51706,1545,5,26,21,47,34,3.55,15.0,fr,15268,30,657601,1,3,Active Shallow Crust,0.0,89.99281,0.0,05/26/1545 +7.3044,44.51706,8297,5,11,6,30,55,3.55,15.0,fr,15269,165,657601,1,3,Active Shallow Crust,0.0,89.99281,0.0,05/11/8297 +7.3044,44.51706,8868,5,13,2,55,58,3.55,15.0,fr,15270,177,657601,1,3,Active Shallow Crust,0.0,89.99281,0.0,05/13/8868 +7.3044,44.51706,2714,11,1,4,56,34,3.55,5.0,fr,15271,54,657603,1,2,Active Shallow Crust,240.0131,57.99767,0.0,11/01/2714 +7.3044,44.51706,4096,3,7,15,55,24,3.55,5.0,fr,15272,81,657603,1,2,Active Shallow Crust,240.0131,57.99767,0.0,03/07/4096 +7.3044,44.51706,2236,7,6,20,44,28,3.55,5.0,fr,15273,44,657606,1,2,Active Shallow Crust,0.0,89.99273,-90.0,07/06/2236 +7.3044,44.51706,5648,3,8,18,30,47,3.55,5.0,fr,15274,112,657606,1,2,Active Shallow Crust,0.0,89.99273,-90.0,03/08/5648 +7.3044,44.51706,9141,2,2,17,6,17,3.65,5.0,fr,15275,182,657612,1,6,Active Shallow Crust,0.0,89.98718,0.0,02/02/9141 +7.3044,44.51706,6100,3,17,2,51,59,3.65,5.0,fr,15276,121,657612,1,6,Active Shallow Crust,0.0,89.98718,0.0,03/17/6100 +7.3044,44.51706,5997,11,17,4,28,54,3.65,5.0,fr,15277,119,657612,1,6,Active Shallow Crust,0.0,89.98718,0.0,11/17/5997 +7.3044,44.51706,1604,3,30,6,41,44,3.65,5.0,fr,15278,32,657612,1,6,Active Shallow Crust,0.0,89.98718,0.0,03/30/1604 +7.3044,44.51706,1589,8,18,6,37,33,3.65,5.0,fr,15279,31,657612,1,6,Active Shallow Crust,0.0,89.98718,0.0,08/18/1589 +7.3044,44.51706,1317,4,21,2,19,43,3.65,5.0,fr,15280,26,657612,1,6,Active Shallow Crust,0.0,89.98718,0.0,04/21/1317 +7.3044,44.51706,6469,3,7,8,59,10,3.65,27.5,fr,15281,129,657614,1,2,Active Shallow Crust,0.0,89.98718,0.0,03/07/6469 +7.3044,44.51706,7456,10,15,7,42,49,3.65,27.5,fr,15282,149,657614,1,2,Active Shallow Crust,0.0,89.98718,0.0,10/15/7456 +7.3044,44.51706,2008,5,13,20,2,52,3.65,5.0,fr,15283,40,657615,1,2,Active Shallow Crust,240.0001,58.0141,0.0,05/13/2008 +7.3044,44.51706,7393,4,25,17,42,51,3.65,5.0,fr,15284,147,657615,1,2,Active Shallow Crust,240.0001,58.0141,0.0,04/25/7393 +7.3044,44.51706,5279,9,20,9,49,56,3.65,15.0,fr,15285,105,657619,1,1,Active Shallow Crust,0.0,89.98704,-90.0,09/20/5279 +7.3044,44.51706,2297,8,29,19,52,33,3.65,15.0,fr,15286,45,657622,1,1,Active Shallow Crust,128.9006,89.96349,0.0,08/29/2297 +7.3044,44.51706,506,11,25,7,57,6,3.75,5.0,fr,15287,10,657624,1,4,Active Shallow Crust,0.0,89.98858,0.0,11/25/0506 +7.3044,44.51706,7357,7,14,7,8,49,3.75,5.0,fr,15288,147,657624,1,4,Active Shallow Crust,0.0,89.98858,0.0,07/14/7357 +7.3044,44.51706,6363,8,27,16,32,14,3.75,5.0,fr,15289,127,657624,1,4,Active Shallow Crust,0.0,89.98858,0.0,08/27/6363 +7.3044,44.51706,2997,5,15,16,34,42,3.75,5.0,fr,15290,59,657624,1,4,Active Shallow Crust,0.0,89.98858,0.0,05/15/2997 +7.3044,44.51706,10,4,3,3,57,19,3.75,15.0,fr,15291,0,657625,1,1,Active Shallow Crust,0.0,89.98858,0.0,04/03/0010 +7.3044,44.51706,3784,7,28,5,25,37,3.75,5.0,fr,15292,75,657630,1,1,Active Shallow Crust,0.0,89.98844,-90.0,07/28/3784 +7.3044,44.51706,4615,1,6,18,45,13,3.75,5.0,fr,15293,92,657633,1,1,Active Shallow Crust,128.897,89.96745,0.0,01/06/4615 +7.3044,44.51706,7553,6,9,0,2,9,3.85,5.0,fr,15294,151,657636,1,2,Active Shallow Crust,0.0,89.98982,0.0,06/09/7553 +7.3044,44.51706,7619,8,27,3,22,40,3.85,5.0,fr,15295,152,657636,1,2,Active Shallow Crust,0.0,89.98982,0.0,08/27/7619 +7.3044,44.51706,9792,7,31,10,40,27,3.85,15.0,fr,15296,195,657637,1,1,Active Shallow Crust,0.0,89.98982,0.0,07/31/9792 +7.3044,44.51706,6367,2,14,5,42,15,3.85,5.0,fr,15297,127,657642,1,1,Active Shallow Crust,0.0,89.9897,-90.0,02/14/6367 +7.3044,44.51706,4597,7,29,11,58,22,3.85,5.0,fr,15298,91,657645,1,1,Active Shallow Crust,128.8966,89.99236,0.0,07/29/4597 +7.3044,44.51706,5963,6,16,4,20,52,3.95,5.0,fr,15299,119,657648,1,3,Active Shallow Crust,0.0,89.99093,0.0,06/16/5963 +7.3044,44.51706,4557,5,17,13,44,30,3.95,5.0,fr,15300,91,657648,1,3,Active Shallow Crust,0.0,89.99093,0.0,05/17/4557 +7.3044,44.51706,8300,4,12,16,42,30,3.95,5.0,fr,15301,165,657648,1,3,Active Shallow Crust,0.0,89.99093,0.0,04/12/8300 +7.3044,44.51706,7315,1,4,3,34,23,3.95,15.0,fr,15302,146,657649,1,2,Active Shallow Crust,0.0,89.99093,0.0,01/04/7315 +7.3044,44.51706,9810,2,5,14,33,56,3.95,15.0,fr,15303,196,657649,1,2,Active Shallow Crust,0.0,89.99093,0.0,02/05/9810 +7.3044,44.51706,9265,7,11,5,20,51,3.95,5.0,fr,15304,185,657651,1,1,Active Shallow Crust,240.0193,58.00525,0.0,07/11/9265 +7.3044,44.51706,1831,10,22,12,35,50,4.05,5.0,fr,15305,36,657660,1,3,Active Shallow Crust,0.0,89.99191,0.0,10/22/1831 +7.3044,44.51706,3240,3,11,11,2,0,4.05,5.0,fr,15306,64,657660,1,3,Active Shallow Crust,0.0,89.99191,0.0,03/11/3240 +7.3044,44.51706,1241,5,8,9,5,5,4.05,5.0,fr,15307,24,657660,1,3,Active Shallow Crust,0.0,89.99191,0.0,05/08/1241 +7.3044,44.51706,6138,8,28,5,35,7,4.05,15.0,fr,15308,122,657661,1,1,Active Shallow Crust,0.0,89.99191,0.0,08/28/6138 +7.3044,44.51706,6800,8,18,21,42,46,4.05,5.0,fr,15309,135,657669,1,1,Active Shallow Crust,128.892,89.99191,0.0,08/18/6800 +7.3044,44.51706,8604,6,6,8,37,29,4.15,5.0,fr,15310,172,657672,1,3,Active Shallow Crust,0.0,89.98919,0.0,06/06/8604 +7.3044,44.51706,547,5,7,15,45,31,4.15,5.0,fr,15311,10,657672,1,3,Active Shallow Crust,0.0,89.98919,0.0,05/07/0547 +7.3044,44.51706,4683,2,6,7,44,16,4.15,5.0,fr,15312,93,657672,1,3,Active Shallow Crust,0.0,89.98919,0.0,02/06/4683 +7.3044,44.51706,79,9,14,6,33,37,4.25,5.0,fr,15313,1,657684,1,2,Active Shallow Crust,0.0,89.99036,0.0,09/14/0079 +7.3044,44.51706,651,1,20,13,5,35,4.25,5.0,fr,15314,13,657684,1,2,Active Shallow Crust,0.0,89.99036,0.0,01/20/0651 +7.3044,44.51706,2716,11,6,3,42,7,4.25,15.0,fr,15315,54,657685,1,2,Active Shallow Crust,0.0,89.99036,0.0,11/06/2716 +7.3044,44.51706,5753,2,4,2,46,25,4.25,15.0,fr,15316,115,657685,1,2,Active Shallow Crust,0.0,89.99036,0.0,02/04/5753 +7.3044,44.51706,3099,1,25,2,2,24,4.35,5.0,fr,15317,61,657696,1,1,Active Shallow Crust,0.0,89.99141,0.0,01/25/3099 +7.3044,44.51706,7818,12,13,18,2,44,4.45,5.0,fr,15318,156,657708,1,1,Active Shallow Crust,0.0,89.98979,0.0,12/13/7818 +7.3044,44.51706,5534,4,17,9,35,39,4.45,15.0,fr,15319,110,657709,1,1,Active Shallow Crust,0.0,89.98979,0.0,04/17/5534 +7.3044,44.51706,7183,4,12,13,51,34,4.55,5.0,fr,15320,143,657720,1,1,Active Shallow Crust,0.0,89.99091,0.0,04/12/7183 +7.3044,44.51706,4717,5,9,20,18,20,4.55,5.0,fr,15321,94,657726,1,1,Active Shallow Crust,0.0,89.9908,-90.0,05/09/4717 +7.3044,44.51706,5069,5,27,5,15,4,4.65,5.0,fr,15322,101,657732,1,3,Active Shallow Crust,0.0,89.98987,0.0,05/27/5069 +7.3044,44.51706,749,8,20,11,9,0,4.65,5.0,fr,15323,14,657732,1,3,Active Shallow Crust,0.0,89.98987,0.0,08/20/0749 +7.3044,44.51706,9483,11,3,11,32,58,4.65,5.0,fr,15324,189,657732,1,3,Active Shallow Crust,0.0,89.98987,0.0,11/03/9483 +7.3044,44.51706,4603,11,11,3,0,44,4.65,27.5,fr,15325,92,657734,1,1,Active Shallow Crust,0.0,89.98987,0.0,11/11/4603 +7.3044,44.51706,3992,3,5,9,7,9,4.65,27.5,fr,15326,79,657737,1,1,Active Shallow Crust,240.0102,57.99408,0.0,03/05/3992 +7.3044,44.51706,8906,6,3,11,28,2,4.75,5.0,fr,15327,178,657744,1,1,Active Shallow Crust,0.0,89.98916,0.0,06/03/8906 +7.3044,44.51706,374,12,17,16,43,51,4.95,5.0,fr,15328,7,657768,1,1,Active Shallow Crust,0.0,89.98995,0.0,12/17/0374 +7.3044,44.51706,1943,12,24,22,33,32,5.05,5.0,fr,15329,38,657780,1,1,Active Shallow Crust,0.0,89.98977,0.0,12/24/1943 +7.3044,44.51706,2996,3,9,6,36,22,5.25,5.0,fr,15330,59,657804,1,1,Active Shallow Crust,0.0,89.98984,0.0,03/09/2996 +-1.86298,46.27331,6097,2,6,9,54,28,3.55,5.0,fr,15331,121,658560,1,1,Active Shallow Crust,0.0,89.98955,0.0,02/06/6097 +-1.86298,46.27331,5775,8,18,0,10,49,3.55,15.0,fr,15332,115,658561,1,1,Active Shallow Crust,0.0,89.98955,0.0,08/18/5775 +-1.86298,46.27331,8243,1,29,18,50,47,3.85,5.0,fr,15333,164,658596,1,1,Active Shallow Crust,0.0,89.99013,0.0,01/29/8243 +-1.86298,46.27331,2361,9,6,21,10,45,3.95,15.0,fr,15334,47,658609,1,1,Active Shallow Crust,0.0,89.9901,0.0,09/06/2361 +-1.86298,46.27331,9428,11,6,19,39,34,4.25,5.0,fr,15335,188,658647,1,1,Active Shallow Crust,240.0074,57.99408,0.0,11/06/9428 +-3.46117,44.17764,7803,7,22,4,49,39,3.55,5.0,fr,15336,156,659040,1,1,Active Shallow Crust,0.0,89.98915,0.0,07/22/7803 +-3.46117,44.17764,2865,12,10,5,22,29,4.95,15.0,fr,15337,57,659209,1,1,Active Shallow Crust,0.0,89.9899,0.0,12/10/2865 +1.14502,49.16182,4069,10,11,0,35,5,3.65,5.0,fr,15338,81,659532,1,3,Active Shallow Crust,0.0,89.98972,0.0,10/11/4069 +1.14502,49.16182,7037,12,14,21,51,32,3.65,5.0,fr,15339,140,659532,1,3,Active Shallow Crust,0.0,89.98972,0.0,12/14/7037 +1.14502,49.16182,8748,11,12,14,44,32,3.65,5.0,fr,15340,174,659532,1,3,Active Shallow Crust,0.0,89.98972,0.0,11/12/8748 +1.14502,49.16182,3228,4,25,1,35,31,3.65,5.0,fr,15341,64,659538,1,1,Active Shallow Crust,0.0,89.98959,-90.0,04/25/3228 +1.14502,49.16182,9511,3,20,22,31,57,3.75,5.0,fr,15342,190,659544,1,2,Active Shallow Crust,0.0,89.98952,0.0,03/20/9511 +1.14502,49.16182,8779,6,18,17,46,33,3.75,5.0,fr,15343,175,659544,1,2,Active Shallow Crust,0.0,89.98952,0.0,06/18/8779 +1.14502,49.16182,5433,9,24,12,8,57,3.75,5.0,fr,15344,108,659550,1,1,Active Shallow Crust,0.0,89.9894,-90.0,09/24/5433 +1.14502,49.16182,1013,9,22,1,51,27,3.85,5.0,fr,15345,20,659556,1,1,Active Shallow Crust,0.0,89.98949,0.0,09/22/1013 +1.14502,49.16182,7408,4,15,7,35,5,3.85,15.0,fr,15346,148,659557,1,2,Active Shallow Crust,0.0,89.98949,0.0,04/15/7408 +1.14502,49.16182,5283,10,31,23,28,7,3.85,15.0,fr,15347,105,659557,1,2,Active Shallow Crust,0.0,89.98949,0.0,10/31/5283 +1.14502,49.16182,7638,5,10,4,37,32,4.35,5.0,fr,15348,152,659616,1,1,Active Shallow Crust,0.0,89.99016,0.0,05/10/7638 +1.14502,49.16182,386,11,1,21,10,11,4.35,15.0,fr,15349,7,659617,1,1,Active Shallow Crust,0.0,89.99016,0.0,11/01/0386 +1.14502,49.16182,8949,9,15,22,35,36,4.45,5.0,fr,15350,178,659631,1,1,Active Shallow Crust,240.006,57.99477,0.0,09/15/8949 +1.14502,49.16182,4455,2,22,14,52,35,4.45,15.0,fr,15351,89,659638,1,1,Active Shallow Crust,128.8916,89.99357,0.0,02/22/4455 +-5.71658,48.06916,7043,2,2,12,3,4,3.55,5.0,fr,15352,140,660009,1,1,Active Shallow Crust,128.8966,89.99326,0.0,02/02/7043 +-5.71658,48.06916,2834,5,20,22,33,27,3.65,5.0,fr,15353,56,660012,1,1,Active Shallow Crust,0.0,89.98799,0.0,05/20/2834 +6.08239,51.61941,8918,1,2,20,42,29,3.55,5.0,fr,15354,178,660960,1,1,Active Shallow Crust,0.0,89.98748,0.0,01/02/8918 +6.08239,51.61941,7481,8,4,16,52,59,3.55,15.0,fr,15355,149,660961,1,1,Active Shallow Crust,0.0,89.98748,0.0,08/04/7481 +6.08239,51.61941,3718,5,23,3,57,1,3.65,5.0,fr,15356,74,660972,1,1,Active Shallow Crust,0.0,89.98884,0.0,05/23/3718 +6.08239,51.61941,6628,12,24,6,1,32,3.65,5.0,fr,15357,132,660975,1,1,Active Shallow Crust,240.0029,58.01193,0.0,12/24/6628 +6.08239,51.61941,7995,10,14,1,52,2,3.75,5.0,fr,15358,159,660984,1,1,Active Shallow Crust,0.0,89.99005,0.0,10/14/7995 +6.08239,51.61941,2998,2,19,8,20,31,3.95,15.0,fr,15359,59,661015,1,1,Active Shallow Crust,0.0,89.98801,-90.0,02/19/2998 +6.08239,51.61941,8464,12,14,1,25,55,4.15,15.0,fr,15360,169,661039,1,1,Active Shallow Crust,0.0,89.99048,-90.0,12/14/8464 +6.08239,51.61941,2874,9,13,16,52,9,4.15,5.0,fr,15361,57,661041,1,1,Active Shallow Crust,128.8965,89.99373,0.0,09/13/2874 +6.08239,51.61941,966,2,1,20,9,14,5.25,5.0,fr,15362,19,661164,1,1,Active Shallow Crust,0.0,89.99026,0.0,02/01/0966 +7.85019,47.83604,2355,7,10,17,56,5,3.55,5.0,fr,15363,47,661440,1,5,Active Shallow Crust,0.0,89.99323,0.0,07/10/2355 +7.85019,47.83604,6443,8,31,5,10,50,3.55,5.0,fr,15364,128,661440,1,5,Active Shallow Crust,0.0,89.99323,0.0,08/31/6443 +7.85019,47.83604,2996,6,14,17,0,27,3.55,5.0,fr,15365,59,661440,1,5,Active Shallow Crust,0.0,89.99323,0.0,06/14/2996 +7.85019,47.83604,7865,11,17,21,25,46,3.55,5.0,fr,15366,157,661440,1,5,Active Shallow Crust,0.0,89.99323,0.0,11/17/7865 +7.85019,47.83604,2334,7,26,5,13,21,3.55,5.0,fr,15367,46,661440,1,5,Active Shallow Crust,0.0,89.99323,0.0,07/26/2334 +7.85019,47.83604,1494,11,16,1,20,37,3.55,15.0,fr,15368,29,661441,1,1,Active Shallow Crust,0.0,89.99323,0.0,11/16/1494 +7.85019,47.83604,4663,1,15,1,39,25,3.55,5.0,fr,15369,93,661446,1,1,Active Shallow Crust,0.0,89.99316,-90.0,01/15/4663 +7.85019,47.83604,2915,4,11,5,43,16,3.55,27.5,fr,15370,58,661448,1,1,Active Shallow Crust,0.0,89.99316,-90.0,04/11/2915 +7.85019,47.83604,739,7,23,8,2,54,3.65,5.0,fr,15371,14,661452,1,4,Active Shallow Crust,0.0,89.98794,0.0,07/23/0739 +7.85019,47.83604,8276,1,31,3,20,23,3.65,5.0,fr,15372,165,661452,1,4,Active Shallow Crust,0.0,89.98794,0.0,01/31/8276 +7.85019,47.83604,2155,1,12,9,4,10,3.65,5.0,fr,15373,43,661452,1,4,Active Shallow Crust,0.0,89.98794,0.0,01/12/2155 +7.85019,47.83604,2901,11,1,19,41,50,3.65,5.0,fr,15374,58,661452,1,4,Active Shallow Crust,0.0,89.98794,0.0,11/01/2901 +7.85019,47.83604,4572,6,3,1,49,19,3.65,15.0,fr,15375,91,661453,1,2,Active Shallow Crust,0.0,89.98794,0.0,06/03/4572 +7.85019,47.83604,6425,4,11,12,39,54,3.65,15.0,fr,15376,128,661453,1,2,Active Shallow Crust,0.0,89.98794,0.0,04/11/6425 +7.85019,47.83604,8069,3,21,3,15,46,3.65,27.5,fr,15377,161,661454,1,1,Active Shallow Crust,0.0,89.98794,0.0,03/21/8069 +7.85019,47.83604,6773,12,11,10,34,9,3.65,5.0,fr,15378,135,661455,1,2,Active Shallow Crust,240.0019,58.0127,0.0,12/11/6773 +7.85019,47.83604,4490,5,5,9,45,47,3.65,5.0,fr,15379,89,661455,1,2,Active Shallow Crust,240.0019,58.0127,0.0,05/05/4490 +7.85019,47.83604,2298,9,15,12,1,22,3.75,27.5,fr,15380,45,661466,1,1,Active Shallow Crust,0.0,89.98925,0.0,09/15/2298 +7.85019,47.83604,6529,10,27,6,10,53,3.75,15.0,fr,15381,130,661471,1,1,Active Shallow Crust,0.0,89.98912,-90.0,10/27/6529 +7.85019,47.83604,5652,10,31,3,6,19,3.85,5.0,fr,15382,113,661476,1,2,Active Shallow Crust,0.0,89.99042,0.0,10/31/5652 +7.85019,47.83604,147,12,20,21,3,50,3.85,5.0,fr,15383,2,661476,1,2,Active Shallow Crust,0.0,89.99042,0.0,12/20/0147 +7.85019,47.83604,120,12,24,4,59,58,3.85,15.0,fr,15384,2,661477,1,1,Active Shallow Crust,0.0,89.99042,0.0,12/24/0120 +7.85019,47.83604,9146,11,16,6,37,30,3.85,5.0,fr,15385,182,661482,1,1,Active Shallow Crust,0.0,89.9903,-90.0,11/16/9146 +7.85019,47.83604,6382,10,3,10,39,49,3.85,27.5,fr,15386,127,661484,1,1,Active Shallow Crust,0.0,89.9903,-90.0,10/03/6382 +7.85019,47.83604,5436,3,8,2,7,51,3.95,5.0,fr,15387,108,661488,1,2,Active Shallow Crust,0.0,89.99146,0.0,03/08/5436 +7.85019,47.83604,6815,5,16,12,27,55,3.95,5.0,fr,15388,136,661488,1,2,Active Shallow Crust,0.0,89.99146,0.0,05/16/6815 +7.85019,47.83604,460,10,16,2,56,32,3.95,15.0,fr,15389,9,661489,1,1,Active Shallow Crust,0.0,89.99146,0.0,10/16/0460 +7.85019,47.83604,4801,5,22,4,51,1,3.95,27.5,fr,15390,96,661490,1,1,Active Shallow Crust,0.0,89.99146,0.0,05/22/4801 +7.85019,47.83604,7117,9,4,13,34,33,4.05,5.0,fr,15391,142,661500,1,2,Active Shallow Crust,0.0,89.98858,0.0,09/04/7117 +7.85019,47.83604,3264,11,26,19,9,4,4.05,5.0,fr,15392,65,661500,1,2,Active Shallow Crust,0.0,89.98858,0.0,11/26/3264 +7.85019,47.83604,1864,12,27,4,3,33,4.05,15.0,fr,15393,37,661501,1,2,Active Shallow Crust,0.0,89.98858,0.0,12/27/1864 +7.85019,47.83604,2658,10,15,16,59,8,4.05,15.0,fr,15394,53,661501,1,2,Active Shallow Crust,0.0,89.98858,0.0,10/15/2658 +7.85019,47.83604,8892,11,19,13,45,16,4.05,15.0,fr,15395,177,661507,1,1,Active Shallow Crust,0.0,89.98845,-90.0,11/19/8892 +7.85019,47.83604,3185,4,26,15,34,24,4.05,5.0,fr,15396,63,661509,1,1,Active Shallow Crust,128.8904,89.99429,0.0,04/26/3185 +7.85019,47.83604,9331,1,15,19,28,38,4.15,5.0,fr,15397,186,661512,1,1,Active Shallow Crust,0.0,89.98982,0.0,01/15/9331 +7.85019,47.83604,8989,10,13,5,12,13,4.25,5.0,fr,15398,179,661524,1,1,Active Shallow Crust,0.0,89.99093,0.0,10/13/8989 +7.85019,47.83604,7202,5,28,22,16,57,4.25,15.0,fr,15399,144,661525,1,1,Active Shallow Crust,0.0,89.99093,0.0,05/28/7202 +7.85019,47.83604,8333,1,10,23,59,24,4.25,5.0,fr,15400,166,661530,1,1,Active Shallow Crust,0.0,89.99082,-90.0,01/10/8333 +7.85019,47.83604,7026,6,2,4,18,38,4.25,5.0,fr,15401,140,661533,1,1,Active Shallow Crust,128.8947,89.981,0.0,06/02/7026 +7.85019,47.83604,2619,12,6,17,50,31,4.35,15.0,fr,15402,52,661537,1,1,Active Shallow Crust,0.0,89.98922,0.0,12/06/2619 +7.85019,47.83604,1800,10,31,17,9,40,4.55,5.0,fr,15403,35,661560,1,1,Active Shallow Crust,0.0,89.9893,0.0,10/31/1800 +7.85019,47.83604,584,10,17,14,26,52,4.55,5.0,fr,15404,11,661563,1,1,Active Shallow Crust,240.0094,57.9974,0.0,10/17/0584 +7.85019,47.83604,919,7,26,18,10,52,4.65,15.0,fr,15405,18,661573,1,1,Active Shallow Crust,0.0,89.99046,0.0,07/26/0919 +7.85019,47.83604,803,1,8,3,53,45,5.35,5.0,fr,15406,16,661656,1,1,Active Shallow Crust,0.0,89.98977,0.0,01/08/0803 +7.85019,47.83604,786,10,16,5,14,26,6.65,15.0,fr,15407,15,661813,1,1,Active Shallow Crust,359.9999,89.99006,0.0,10/16/0786 +8.65348,48.68622,4213,4,29,20,3,9,3.55,5.0,fr,15408,84,661920,1,1,Active Shallow Crust,0.0,89.98669,0.0,04/29/4213 +8.65348,48.68622,2822,9,21,20,18,59,3.55,5.0,fr,15409,56,661929,1,1,Active Shallow Crust,128.8932,89.99334,0.0,09/21/2822 +8.65348,48.68622,9883,1,13,8,23,48,3.65,5.0,fr,15410,197,661932,1,4,Active Shallow Crust,0.0,89.98814,0.0,01/13/9883 +8.65348,48.68622,8989,9,23,8,40,20,3.65,5.0,fr,15411,179,661932,1,4,Active Shallow Crust,0.0,89.98814,0.0,09/23/8989 +8.65348,48.68622,1906,8,28,18,28,15,3.65,5.0,fr,15412,38,661932,1,4,Active Shallow Crust,0.0,89.98814,0.0,08/28/1906 +8.65348,48.68622,5429,5,12,16,3,54,3.65,5.0,fr,15413,108,661932,1,4,Active Shallow Crust,0.0,89.98814,0.0,05/12/5429 +8.65348,48.68622,8294,6,16,19,4,7,3.75,15.0,fr,15414,165,661951,1,1,Active Shallow Crust,0.0,89.9893,-90.0,06/16/8294 +8.65348,48.68622,997,7,7,13,27,31,3.85,5.0,fr,15415,19,661956,1,2,Active Shallow Crust,0.0,89.99057,0.0,07/07/0997 +8.65348,48.68622,4582,4,27,7,4,32,3.85,5.0,fr,15416,91,661956,1,2,Active Shallow Crust,0.0,89.99057,0.0,04/27/4582 +8.65348,48.68622,1262,6,10,8,31,33,3.85,5.0,fr,15417,25,661962,1,1,Active Shallow Crust,0.0,89.99046,-90.0,06/10/1262 +8.65348,48.68622,5935,7,6,20,37,23,4.05,5.0,fr,15418,118,661980,1,2,Active Shallow Crust,0.0,89.99252,0.0,07/06/5935 +8.65348,48.68622,3312,11,5,1,40,50,4.05,5.0,fr,15419,66,661980,1,2,Active Shallow Crust,0.0,89.99252,0.0,11/05/3312 +8.65348,48.68622,9525,6,18,23,23,14,4.05,15.0,fr,15420,190,661981,1,1,Active Shallow Crust,0.0,89.99252,0.0,06/18/9525 +8.65348,48.68622,7250,11,16,7,12,48,4.15,27.5,fr,15421,144,661997,1,1,Active Shallow Crust,240.009,57.99837,0.0,11/16/7250 +8.65348,48.68622,4170,12,31,21,52,24,4.55,15.0,fr,15422,83,662044,1,1,Active Shallow Crust,240.0089,57.99782,0.0,12/31/4170 +8.65348,48.68622,1488,6,3,8,26,26,4.75,15.0,fr,15423,29,662068,1,1,Active Shallow Crust,240.0088,58.00457,0.0,06/03/1488 +-6.24656,46.8994,6627,2,3,12,41,24,3.55,5.0,fr,15424,132,662403,1,1,Active Shallow Crust,240.0113,57.99904,0.0,02/03/6627 +8.68349,51.06139,3654,5,5,9,54,55,4.35,5.0,fr,15425,73,663462,1,1,Active Shallow Crust,0.0,89.98979,-90.0,05/05/3654 +-6.69585,48.23019,177,3,2,23,17,17,3.55,27.5,fr,15426,3,663842,1,1,Active Shallow Crust,0.0,89.99329,0.0,03/02/0177 +5.01428,50.99175,496,7,27,12,37,19,3.55,5.0,fr,15427,9,664320,1,1,Active Shallow Crust,0.0,89.9873,0.0,07/27/0496 +5.01428,50.99175,7229,4,1,4,29,35,3.55,15.0,fr,15428,144,664321,1,1,Active Shallow Crust,0.0,89.9873,0.0,04/01/7229 +5.01428,50.99175,8968,1,4,14,32,27,3.55,15.0,fr,15429,179,664324,1,1,Active Shallow Crust,240.013,57.99764,0.0,01/04/8968 +5.01428,50.99175,5953,12,10,19,45,13,4.45,5.0,fr,15430,119,664428,1,1,Active Shallow Crust,0.0,89.99099,0.0,12/10/5953 +5.01428,50.99175,7101,12,13,6,41,51,4.55,5.0,fr,15431,142,664440,1,1,Active Shallow Crust,0.0,89.98996,0.0,12/13/7101 +5.01428,50.99175,5330,6,3,21,32,37,6.45,15.0,fr,15432,106,664678,1,1,Active Shallow Crust,128.8261,89.99046,0.0,06/03/5330 +7.05703,43.15539,993,6,11,11,48,10,3.65,5.0,fr,15433,19,664821,1,1,Active Shallow Crust,128.9007,89.96346,0.0,06/11/0993 +7.05703,43.15539,4983,7,3,19,17,27,3.75,5.0,fr,15434,99,664824,1,1,Active Shallow Crust,0.0,89.98831,0.0,07/03/4983 +7.05703,43.15539,8233,11,28,15,20,14,3.95,27.5,fr,15435,164,664853,1,1,Active Shallow Crust,240.0198,58.00525,0.0,11/28/8233 +7.05703,43.15539,5269,8,10,1,44,29,5.15,15.0,fr,15436,105,664993,1,1,Active Shallow Crust,0.0,89.9895,0.0,08/10/5269 +2.26233,42.36249,1868,3,27,9,44,4,3.55,5.0,fr,15437,37,665280,1,5,Active Shallow Crust,0.0,89.98882,0.0,03/27/1868 +2.26233,42.36249,5885,6,22,8,17,3,3.55,5.0,fr,15438,117,665280,1,5,Active Shallow Crust,0.0,89.98882,0.0,06/22/5885 +2.26233,42.36249,9341,10,28,19,31,6,3.55,5.0,fr,15439,186,665280,1,5,Active Shallow Crust,0.0,89.98882,0.0,10/28/9341 +2.26233,42.36249,4856,2,9,2,37,38,3.55,5.0,fr,15440,97,665280,1,5,Active Shallow Crust,0.0,89.98882,0.0,02/09/4856 +2.26233,42.36249,3419,9,26,10,32,39,3.55,5.0,fr,15441,68,665280,1,5,Active Shallow Crust,0.0,89.98882,0.0,09/26/3419 +2.26233,42.36249,3216,2,29,9,59,34,3.55,15.0,fr,15442,64,665281,1,3,Active Shallow Crust,0.0,89.98882,0.0,02/29/3216 +2.26233,42.36249,7998,3,10,12,15,2,3.55,15.0,fr,15443,159,665281,1,3,Active Shallow Crust,0.0,89.98882,0.0,03/10/7998 +2.26233,42.36249,3865,12,27,21,8,27,3.55,15.0,fr,15444,77,665281,1,3,Active Shallow Crust,0.0,89.98882,0.0,12/27/3865 +2.26233,42.36249,734,10,31,1,55,36,3.55,5.0,fr,15445,14,665283,1,1,Active Shallow Crust,240.0119,57.99802,0.0,10/31/0734 +2.26233,42.36249,6925,12,13,15,40,3,3.55,5.0,fr,15446,138,665289,1,2,Active Shallow Crust,128.8966,89.99255,0.0,12/13/6925 +2.26233,42.36249,2394,12,30,7,27,57,3.55,5.0,fr,15447,47,665289,1,2,Active Shallow Crust,128.8966,89.99255,0.0,12/30/2394 +2.26233,42.36249,1096,2,18,19,26,49,3.65,5.0,fr,15448,21,665292,1,4,Active Shallow Crust,0.0,89.99004,0.0,02/18/1096 +2.26233,42.36249,9722,9,21,9,10,10,3.65,5.0,fr,15449,194,665292,1,4,Active Shallow Crust,0.0,89.99004,0.0,09/21/9722 +2.26233,42.36249,5894,1,18,22,31,3,3.65,5.0,fr,15450,117,665292,1,4,Active Shallow Crust,0.0,89.99004,0.0,01/18/5894 +2.26233,42.36249,4811,5,22,16,28,3,3.65,5.0,fr,15451,96,665292,1,4,Active Shallow Crust,0.0,89.99004,0.0,05/22/4811 +2.26233,42.36249,5336,1,17,17,7,43,3.65,15.0,fr,15452,106,665293,1,1,Active Shallow Crust,0.0,89.99004,0.0,01/17/5336 +2.26233,42.36249,2268,5,17,19,5,25,3.65,5.0,fr,15453,45,665295,1,1,Active Shallow Crust,240.0004,58.01303,0.0,05/17/2268 +2.26233,42.36249,4997,8,25,20,41,25,3.65,15.0,fr,15454,99,665296,1,1,Active Shallow Crust,240.0004,58.01303,0.0,08/25/4997 +2.26233,42.36249,4672,8,26,9,2,49,3.75,5.0,fr,15455,93,665304,1,4,Active Shallow Crust,0.0,89.99112,0.0,08/26/4672 +2.26233,42.36249,9630,11,5,23,54,8,3.75,5.0,fr,15456,192,665304,1,4,Active Shallow Crust,0.0,89.99112,0.0,11/05/9630 +2.26233,42.36249,3477,8,9,1,38,12,3.75,5.0,fr,15457,69,665304,1,4,Active Shallow Crust,0.0,89.99112,0.0,08/09/3477 +2.26233,42.36249,2374,2,12,1,43,51,3.75,5.0,fr,15458,47,665304,1,4,Active Shallow Crust,0.0,89.99112,0.0,02/12/2374 +2.26233,42.36249,5448,8,12,9,6,14,3.75,15.0,fr,15459,108,665305,1,3,Active Shallow Crust,0.0,89.99112,0.0,08/12/5448 +2.26233,42.36249,7035,12,24,20,6,42,3.75,15.0,fr,15460,140,665305,1,3,Active Shallow Crust,0.0,89.99112,0.0,12/24/7035 +2.26233,42.36249,9504,5,25,1,2,26,3.75,15.0,fr,15461,190,665305,1,3,Active Shallow Crust,0.0,89.99112,0.0,05/25/9504 +2.26233,42.36249,6804,1,25,13,7,8,3.75,5.0,fr,15462,136,665307,1,2,Active Shallow Crust,240.0084,58.01749,0.0,01/25/6804 +2.26233,42.36249,7698,7,24,18,25,17,3.75,5.0,fr,15463,153,665307,1,2,Active Shallow Crust,240.0084,58.01749,0.0,07/24/7698 +2.26233,42.36249,7361,6,19,8,30,31,3.75,15.0,fr,15464,147,665308,1,1,Active Shallow Crust,240.0084,58.01749,0.0,06/19/7361 +2.26233,42.36249,5864,5,7,15,26,9,3.75,5.0,fr,15465,117,665310,1,1,Active Shallow Crust,0.0,89.99102,-90.0,05/07/5864 +2.26233,42.36249,5900,1,20,21,47,37,3.75,15.0,fr,15466,117,665311,1,1,Active Shallow Crust,0.0,89.99102,-90.0,01/20/5900 +2.26233,42.36249,9446,1,24,23,37,35,3.75,5.0,fr,15467,188,665313,1,1,Active Shallow Crust,128.8974,89.96742,0.0,01/24/9446 +2.26233,42.36249,4230,6,23,2,0,37,3.75,15.0,fr,15468,84,665314,1,1,Active Shallow Crust,128.8974,89.96742,0.0,06/23/4230 +2.26233,42.36249,4094,10,12,23,32,40,3.85,5.0,fr,15469,81,665316,1,3,Active Shallow Crust,0.0,89.98945,0.0,10/12/4094 +2.26233,42.36249,7024,12,9,10,16,9,3.85,5.0,fr,15470,140,665316,1,3,Active Shallow Crust,0.0,89.98945,0.0,12/09/7024 +2.26233,42.36249,8224,7,8,22,31,49,3.85,5.0,fr,15471,164,665316,1,3,Active Shallow Crust,0.0,89.98945,0.0,07/08/8224 +2.26233,42.36249,5476,10,30,11,40,6,3.85,15.0,fr,15472,109,665317,1,1,Active Shallow Crust,0.0,89.98945,0.0,10/30/5476 +2.26233,42.36249,4783,10,19,6,40,14,3.85,15.0,fr,15473,95,665323,1,1,Active Shallow Crust,0.0,89.98933,-90.0,10/19/4783 +2.26233,42.36249,9612,1,21,20,55,10,3.95,5.0,fr,15474,192,665328,1,1,Active Shallow Crust,0.0,89.9906,0.0,01/21/9612 +2.26233,42.36249,6992,9,3,4,55,42,4.05,5.0,fr,15475,139,665343,1,1,Active Shallow Crust,240.0054,58.00586,0.0,09/03/6992 +2.26233,42.36249,3507,4,11,19,36,9,4.15,15.0,fr,15476,70,665362,1,1,Active Shallow Crust,128.8985,89.99347,0.0,04/11/3507 +2.26233,42.36249,6711,5,12,1,20,4,4.25,5.0,fr,15477,134,665364,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/12/6711 +2.26233,42.36249,6465,2,25,20,20,18,4.25,27.5,fr,15478,129,665369,1,1,Active Shallow Crust,240.0067,57.99406,0.0,02/25/6465 +2.26233,42.36249,1729,12,17,3,27,31,4.25,15.0,fr,15479,34,665371,1,1,Active Shallow Crust,0.0,89.9899,-90.0,12/17/1729 +2.26233,42.36249,6371,10,7,16,5,12,4.35,5.0,fr,15480,127,665376,1,2,Active Shallow Crust,0.0,89.98962,0.0,10/07/6371 +2.26233,42.36249,1212,8,25,17,35,46,4.35,5.0,fr,15481,24,665376,1,2,Active Shallow Crust,0.0,89.98962,0.0,08/25/1212 +2.26233,42.36249,8642,2,3,1,4,40,4.45,27.5,fr,15482,172,665390,1,1,Active Shallow Crust,0.0,89.98943,0.0,02/03/8642 +2.26233,42.36249,3648,3,7,8,39,7,4.45,15.0,fr,15483,72,665395,1,1,Active Shallow Crust,0.0,89.99064,-90.0,03/07/3648 +2.26233,42.36249,1079,12,7,17,34,50,4.45,27.5,fr,15484,21,665396,1,1,Active Shallow Crust,0.0,89.99064,-90.0,12/07/1079 +2.26233,42.36249,4328,9,27,11,33,10,4.55,5.0,fr,15485,86,665400,1,1,Active Shallow Crust,0.0,89.99058,0.0,09/27/4328 +2.26233,42.36249,2165,2,14,9,55,1,4.65,5.0,fr,15486,43,665412,1,2,Active Shallow Crust,0.0,89.9895,0.0,02/14/2165 +2.26233,42.36249,7463,6,2,6,8,45,4.65,5.0,fr,15487,149,665412,1,2,Active Shallow Crust,0.0,89.9895,0.0,06/02/7463 +2.26233,42.36249,7241,12,16,2,53,11,4.65,15.0,fr,15488,144,665413,1,1,Active Shallow Crust,0.0,89.9895,0.0,12/16/7241 +2.26233,42.36249,7587,4,21,17,53,16,4.65,5.0,fr,15489,151,665421,1,1,Active Shallow Crust,128.8922,89.98701,0.0,04/21/7587 +2.26233,42.36249,1645,7,10,23,34,9,5.05,5.0,fr,15490,32,665460,1,1,Active Shallow Crust,0.0,89.99006,0.0,07/10/1645 +2.26233,42.36249,7689,6,14,1,52,11,5.05,15.0,fr,15491,153,665461,1,1,Active Shallow Crust,0.0,89.99006,0.0,06/14/7689 +2.26233,42.36249,99,10,29,2,9,59,5.25,15.0,fr,15492,1,665485,1,1,Active Shallow Crust,0.0,89.99,0.0,10/29/0099 +2.26233,42.36249,9696,9,7,14,52,38,5.35,5.0,fr,15493,193,665496,1,1,Active Shallow Crust,0.0,89.99015,0.0,09/07/9696 +2.26233,42.36249,5178,9,2,8,28,42,5.45,5.0,fr,15494,103,665508,1,1,Active Shallow Crust,0.0,89.98997,0.0,09/02/5178 +-0.82617,45.95719,3766,10,26,2,54,49,3.55,5.0,fr,15495,75,665760,1,1,Active Shallow Crust,0.0,89.99036,0.0,10/26/3766 +-0.82617,45.95719,808,4,10,5,53,36,3.55,15.0,fr,15496,16,665761,1,1,Active Shallow Crust,0.0,89.99036,0.0,04/10/0808 +-0.82617,45.95719,3514,1,2,10,47,35,3.55,5.0,fr,15497,70,665769,1,1,Active Shallow Crust,128.8964,89.99387,0.0,01/02/3514 +-0.82617,45.95719,1850,2,27,1,13,44,3.55,15.0,fr,15498,36,665770,1,1,Active Shallow Crust,128.8964,89.99387,0.0,02/27/1850 +-0.82617,45.95719,6797,8,13,16,5,45,3.95,15.0,fr,15499,135,665809,1,1,Active Shallow Crust,0.0,89.99005,0.0,08/13/6797 +-0.82617,45.95719,7519,10,22,2,51,37,4.05,5.0,fr,15500,150,665826,1,1,Active Shallow Crust,0.0,89.99003,-90.0,10/22/7519 +-0.82617,45.95719,7439,8,2,6,21,16,4.25,15.0,fr,15501,148,665845,1,1,Active Shallow Crust,0.0,89.98982,0.0,08/02/7439 +-0.82617,45.95719,7988,2,10,9,15,35,4.25,5.0,fr,15502,159,665850,1,1,Active Shallow Crust,0.0,89.9901,-90.0,02/10/7988 +-0.82617,45.95719,1641,4,14,18,18,41,4.95,5.0,fr,15503,32,665934,1,1,Active Shallow Crust,0.0,89.98991,-90.0,04/14/1641 +-0.82617,45.95719,4925,1,17,2,40,31,5.25,15.0,fr,15504,98,665968,1,1,Active Shallow Crust,240.0251,58.00023,0.0,01/17/4925 +-0.82617,45.95719,2363,7,19,22,54,20,6.05,15.0,fr,15505,47,666061,1,1,Active Shallow Crust,0.0,89.98999,0.0,07/19/2363 +-1.19781,44.8338,9136,4,12,22,10,23,3.55,5.0,fr,15506,182,666240,1,1,Active Shallow Crust,0.0,89.98927,0.0,04/12/9136 +-1.19781,44.8338,2389,11,17,19,59,20,5.75,5.0,fr,15507,47,666504,1,1,Active Shallow Crust,0.0,89.99005,0.0,11/17/2389 +1.184,46.37803,4904,8,6,0,29,4,3.55,5.0,fr,15508,98,666720,1,2,Active Shallow Crust,0.0,89.98956,0.0,08/06/4904 +1.184,46.37803,3283,9,4,9,4,42,3.55,5.0,fr,15509,65,666720,1,2,Active Shallow Crust,0.0,89.98956,0.0,09/04/3283 +1.184,46.37803,6321,12,2,12,47,31,3.55,5.0,fr,15510,126,666726,1,1,Active Shallow Crust,0.0,89.98944,-90.0,12/02/6321 +1.184,46.37803,4707,9,29,7,35,47,3.65,15.0,fr,15511,94,666733,1,1,Active Shallow Crust,0.0,89.9907,0.0,09/29/4707 +1.184,46.37803,1526,3,15,23,6,53,3.65,5.0,fr,15512,30,666735,1,1,Active Shallow Crust,240.001,58.01302,0.0,03/15/1526 +1.184,46.37803,3042,5,28,21,53,14,3.85,5.0,fr,15513,60,666756,1,1,Active Shallow Crust,0.0,89.99015,0.0,05/28/3042 +1.184,46.37803,5600,6,23,14,12,30,3.95,5.0,fr,15514,111,666771,1,1,Active Shallow Crust,240.0198,58.00503,0.0,06/23/5600 +1.184,46.37803,8020,6,23,0,14,18,4.05,5.0,fr,15515,160,666780,1,1,Active Shallow Crust,0.0,89.99022,0.0,06/23/8020 +1.184,46.37803,2513,10,24,11,3,9,4.05,15.0,fr,15516,50,666781,1,1,Active Shallow Crust,0.0,89.99022,0.0,10/24/2513 +1.184,46.37803,8168,8,16,2,34,8,4.15,5.0,fr,15517,163,666792,1,1,Active Shallow Crust,0.0,89.99041,0.0,08/16/8168 +1.184,46.37803,4302,6,12,5,56,51,4.15,15.0,fr,15518,86,666793,1,1,Active Shallow Crust,0.0,89.99041,0.0,06/12/4302 +1.184,46.37803,7675,6,28,9,49,10,4.25,5.0,fr,15519,153,666804,1,1,Active Shallow Crust,0.0,89.9899,0.0,06/28/7675 +1.184,46.37803,3423,4,7,5,4,23,4.35,5.0,fr,15520,68,666816,1,2,Active Shallow Crust,0.0,89.9903,0.0,04/07/3423 +1.184,46.37803,7037,7,13,16,55,3,4.35,5.0,fr,15521,140,666816,1,2,Active Shallow Crust,0.0,89.9903,0.0,07/13/7037 +1.184,46.37803,1000,8,1,6,12,32,4.35,5.0,fr,15522,19,666819,1,1,Active Shallow Crust,240.0083,57.99603,0.0,08/01/1000 +1.184,46.37803,3904,3,19,13,32,47,4.55,15.0,fr,15523,78,666841,1,1,Active Shallow Crust,0.0,89.9901,0.0,03/19/3904 +1.184,46.37803,1488,7,13,1,19,49,5.55,5.0,fr,15524,29,666960,1,1,Active Shallow Crust,359.9999,89.99008,0.0,07/13/1488 +7.1619,43.96936,9871,3,1,23,50,30,3.55,5.0,fr,15525,197,667200,1,1,Active Shallow Crust,0.0,89.99274,0.0,03/01/9871 +7.1619,43.96936,9450,8,2,13,46,23,3.55,15.0,fr,15526,188,667201,1,1,Active Shallow Crust,0.0,89.99274,0.0,08/02/9450 +7.1619,43.96936,2180,1,1,5,7,1,3.65,5.0,fr,15527,43,667212,1,1,Active Shallow Crust,0.0,89.98706,0.0,01/01/2180 +7.1619,43.96936,5824,1,12,0,46,5,3.65,15.0,fr,15528,116,667216,1,1,Active Shallow Crust,240.0008,58.01287,0.0,01/12/5824 +7.1619,43.96936,180,6,25,17,16,32,3.75,5.0,fr,15529,3,667224,1,3,Active Shallow Crust,0.0,89.98847,0.0,06/25/0180 +7.1619,43.96936,2601,10,23,5,4,57,3.75,5.0,fr,15530,52,667224,1,3,Active Shallow Crust,0.0,89.98847,0.0,10/23/2601 +7.1619,43.96936,9336,9,25,17,30,55,3.75,5.0,fr,15531,186,667224,1,3,Active Shallow Crust,0.0,89.98847,0.0,09/25/9336 +7.1619,43.96936,8098,12,31,3,53,57,3.85,5.0,fr,15532,161,667236,1,1,Active Shallow Crust,0.0,89.98972,0.0,12/31/8098 +7.1619,43.96936,8299,4,24,13,58,59,3.85,5.0,fr,15533,165,667239,1,1,Active Shallow Crust,240.011,57.99811,0.0,04/24/8299 +7.1619,43.96936,5005,6,10,2,7,50,3.85,5.0,fr,15534,100,667245,1,1,Active Shallow Crust,128.8961,89.99229,0.0,06/10/5005 +7.1619,43.96936,824,12,2,13,1,2,4.05,5.0,fr,15535,16,667260,1,1,Active Shallow Crust,0.0,89.99184,0.0,12/02/0824 +7.1619,43.96936,58,5,1,4,0,35,4.25,5.0,fr,15536,1,667284,1,1,Active Shallow Crust,0.0,89.99027,0.0,05/01/0058 +7.1619,43.96936,6945,12,5,13,25,32,4.25,27.5,fr,15537,138,667286,1,1,Active Shallow Crust,0.0,89.99027,0.0,12/05/6945 +7.1619,43.96936,4274,1,23,18,6,3,4.35,5.0,fr,15538,85,667296,1,1,Active Shallow Crust,0.0,89.99133,0.0,01/23/4274 +7.1619,43.96936,1647,6,2,7,11,37,4.35,27.5,fr,15539,32,667298,1,1,Active Shallow Crust,0.0,89.99133,0.0,06/02/1647 +7.1619,43.96936,639,9,4,4,13,23,4.35,5.0,fr,15540,12,667299,1,1,Active Shallow Crust,240.0078,57.99579,0.0,09/04/0639 +7.1619,43.96936,5177,12,23,9,22,6,4.45,5.0,fr,15541,103,667314,1,1,Active Shallow Crust,0.0,89.98958,-90.0,12/23/5177 +7.1619,43.96936,4685,3,29,12,24,40,5.25,5.0,fr,15542,93,667413,1,1,Active Shallow Crust,128.8844,89.98705,0.0,03/29/4685 +6.35831,46.50187,2635,11,14,5,24,5,3.55,5.0,fr,15543,52,667680,1,3,Active Shallow Crust,0.0,89.99306,0.0,11/14/2635 +6.35831,46.50187,4943,3,9,21,14,54,3.55,5.0,fr,15544,98,667680,1,3,Active Shallow Crust,0.0,89.99306,0.0,03/09/4943 +6.35831,46.50187,6906,2,6,19,35,7,3.55,5.0,fr,15545,138,667680,1,3,Active Shallow Crust,0.0,89.99306,0.0,02/06/6906 +6.35831,46.50187,9896,4,23,9,39,10,3.55,15.0,fr,15546,197,667681,1,3,Active Shallow Crust,0.0,89.99306,0.0,04/23/9896 +6.35831,46.50187,4243,10,24,12,21,54,3.55,15.0,fr,15547,84,667681,1,3,Active Shallow Crust,0.0,89.99306,0.0,10/24/4243 +6.35831,46.50187,2758,3,12,19,10,4,3.55,15.0,fr,15548,55,667681,1,3,Active Shallow Crust,0.0,89.99306,0.0,03/12/2758 +6.35831,46.50187,9657,12,12,9,25,11,3.55,15.0,fr,15549,193,667687,1,1,Active Shallow Crust,0.0,89.99298,-90.0,12/12/9657 +6.35831,46.50187,9525,2,24,0,51,30,3.55,5.0,fr,15550,190,667689,1,1,Active Shallow Crust,128.8958,89.99306,0.0,02/24/9525 +6.35831,46.50187,8533,1,29,21,55,19,3.65,5.0,fr,15551,170,667692,1,1,Active Shallow Crust,0.0,89.98763,0.0,01/29/8533 +6.35831,46.50187,4168,3,9,3,24,14,3.65,15.0,fr,15552,83,667693,1,1,Active Shallow Crust,0.0,89.98763,0.0,03/09/4168 +6.35831,46.50187,1514,10,28,12,40,0,3.65,27.5,fr,15553,30,667694,1,1,Active Shallow Crust,0.0,89.98763,0.0,10/28/1514 +6.35831,46.50187,4492,6,30,5,23,52,3.75,5.0,fr,15554,89,667710,1,1,Active Shallow Crust,0.0,89.98885,-90.0,06/30/4492 +6.35831,46.50187,4197,9,15,7,19,33,3.85,15.0,fr,15555,83,667717,1,2,Active Shallow Crust,0.0,89.99017,0.0,09/15/4197 +6.35831,46.50187,6414,11,30,8,5,22,3.85,15.0,fr,15556,128,667717,1,2,Active Shallow Crust,0.0,89.99017,0.0,11/30/6414 +6.35831,46.50187,5789,5,10,8,24,25,3.85,27.5,fr,15557,115,667718,1,1,Active Shallow Crust,0.0,89.99017,0.0,05/10/5789 +6.35831,46.50187,534,3,2,13,14,17,3.85,5.0,fr,15558,10,667722,1,2,Active Shallow Crust,0.0,89.99006,-90.0,03/02/0534 +6.35831,46.50187,6913,5,29,0,51,5,3.85,5.0,fr,15559,138,667722,1,2,Active Shallow Crust,0.0,89.99006,-90.0,05/29/6913 +6.35831,46.50187,6614,5,31,4,13,58,3.95,5.0,fr,15560,132,667728,1,1,Active Shallow Crust,0.0,89.99124,0.0,05/31/6614 +6.35831,46.50187,9656,5,31,22,24,38,3.95,15.0,fr,15561,193,667729,1,1,Active Shallow Crust,0.0,89.99124,0.0,05/31/9656 +6.35831,46.50187,7904,12,23,16,4,22,3.95,27.5,fr,15562,158,667730,1,1,Active Shallow Crust,0.0,89.99124,0.0,12/23/7904 +6.35831,46.50187,1647,12,18,5,56,54,3.95,27.5,fr,15563,32,667733,1,1,Active Shallow Crust,240.0193,58.00549,0.0,12/18/1647 +6.35831,46.50187,6019,7,7,16,32,23,4.05,15.0,fr,15564,120,667741,1,1,Active Shallow Crust,0.0,89.98829,0.0,07/07/6019 +6.35831,46.50187,2390,5,27,21,52,5,4.15,5.0,fr,15565,47,667752,1,2,Active Shallow Crust,0.0,89.98956,0.0,05/27/2390 +6.35831,46.50187,1141,7,9,22,16,43,4.15,5.0,fr,15566,22,667752,1,2,Active Shallow Crust,0.0,89.98956,0.0,07/09/1141 +6.35831,46.50187,8350,9,20,4,47,17,4.15,5.0,fr,15567,166,667761,1,1,Active Shallow Crust,128.8984,89.99304,0.0,09/20/8350 +6.35831,46.50187,9888,5,28,1,32,19,4.25,5.0,fr,15568,197,667767,1,1,Active Shallow Crust,240.0073,57.99419,0.0,05/28/9888 +6.35831,46.50187,4919,2,21,17,20,57,4.45,27.5,fr,15569,98,667799,1,1,Active Shallow Crust,128.8929,89.99261,0.0,02/21/4919 +6.35831,46.50187,5644,5,21,5,30,53,4.55,5.0,fr,15570,112,667800,1,1,Active Shallow Crust,0.0,89.98902,0.0,05/21/5644 +6.35831,46.50187,6171,8,28,13,10,49,4.55,5.0,fr,15571,123,667803,1,1,Active Shallow Crust,240.0091,57.99744,0.0,08/28/6171 +6.35831,46.50187,7014,12,18,21,25,43,5.15,15.0,fr,15572,140,667873,1,1,Active Shallow Crust,0.0,89.9901,0.0,12/18/7014 +6.35831,46.50187,9352,4,29,0,32,57,5.15,5.0,fr,15573,187,667878,1,1,Active Shallow Crust,0.0,89.98998,-90.0,04/29/9352 +6.35831,46.50187,2525,2,3,10,56,39,5.45,27.5,fr,15574,50,667910,1,1,Active Shallow Crust,0.0,89.98987,0.0,02/03/2525 +3.54744,40.26564,7924,10,13,9,41,16,3.55,5.0,fr,15575,158,668163,1,1,Active Shallow Crust,240.0112,57.99797,0.0,10/13/7924 +3.54744,40.26564,6710,3,10,14,12,54,3.75,15.0,fr,15576,134,668185,1,1,Active Shallow Crust,0.0,89.99083,0.0,03/10/6710 +3.54744,40.26564,2414,9,17,8,29,48,3.95,5.0,fr,15577,48,668208,1,1,Active Shallow Crust,0.0,89.99029,0.0,09/17/2414 +3.54744,40.26564,4931,9,3,6,40,35,3.95,15.0,fr,15578,98,668212,1,1,Active Shallow Crust,240.0191,58.00508,0.0,09/03/4931 +-2.84125,42.99958,6507,8,21,11,32,48,3.55,5.0,fr,15579,130,668640,1,2,Active Shallow Crust,0.0,89.98894,0.0,08/21/6507 +-2.84125,42.99958,4458,8,9,7,22,55,3.55,5.0,fr,15580,89,668640,1,2,Active Shallow Crust,0.0,89.98894,0.0,08/09/4458 +-2.84125,42.99958,3187,8,17,9,9,44,3.55,15.0,fr,15581,63,668644,1,1,Active Shallow Crust,240.0115,57.99802,0.0,08/17/3187 +-2.84125,42.99958,6365,8,16,1,5,59,3.55,5.0,fr,15582,127,668646,1,1,Active Shallow Crust,0.0,89.98881,-90.0,08/16/6365 +-2.84125,42.99958,6117,8,6,21,33,2,3.95,15.0,fr,15583,122,668689,1,1,Active Shallow Crust,0.0,89.99069,0.0,08/06/6117 +-2.84125,42.99958,7907,1,28,13,37,41,3.95,15.0,fr,15584,158,668695,1,1,Active Shallow Crust,0.0,89.99059,-90.0,01/28/7907 +-2.84125,42.99958,7469,6,18,8,29,49,4.05,5.0,fr,15585,149,668706,1,1,Active Shallow Crust,0.0,89.98951,-90.0,06/18/7469 +-2.84125,42.99958,7897,12,28,0,32,43,4.55,5.0,fr,15586,157,668760,1,1,Active Shallow Crust,0.0,89.9895,0.0,12/28/7897 +-2.84125,42.99958,6571,9,6,15,55,45,4.55,15.0,fr,15587,131,668764,1,1,Active Shallow Crust,240.0082,57.99729,0.0,09/06/6571 +-2.84125,42.99958,8397,8,26,4,45,25,5.05,5.0,fr,15588,167,668823,1,1,Active Shallow Crust,240.0204,57.99727,0.0,08/26/8397 +-3.06662,47.52326,9542,3,6,7,20,59,3.55,5.0,fr,15589,190,669600,1,1,Active Shallow Crust,0.0,89.98978,0.0,03/06/9542 +-3.06662,47.52326,3830,11,17,19,6,32,3.55,15.0,fr,15590,76,669601,1,1,Active Shallow Crust,0.0,89.98978,0.0,11/17/3830 +-3.06662,47.52326,1391,1,21,0,41,41,3.55,5.0,fr,15591,27,669603,1,1,Active Shallow Crust,240.0123,57.99852,0.0,01/21/1391 +-3.06662,47.52326,3509,2,10,22,9,16,3.55,27.5,fr,15592,70,669605,1,1,Active Shallow Crust,240.0123,57.99842,0.0,02/10/3509 +-3.06662,47.52326,8960,11,2,16,49,25,3.55,5.0,fr,15593,179,669609,1,1,Active Shallow Crust,128.896,89.9949,0.0,11/02/8960 +-3.06662,47.52326,215,2,1,6,6,12,3.55,27.5,fr,15594,4,669611,1,1,Active Shallow Crust,128.896,89.9949,0.0,02/01/0215 +-3.06662,47.52326,4490,7,11,10,8,58,3.75,5.0,fr,15595,89,669630,1,1,Active Shallow Crust,0.0,89.98906,-90.0,07/11/4490 +-3.06662,47.52326,1907,12,25,6,5,22,3.85,5.0,fr,15596,38,669636,1,1,Active Shallow Crust,0.0,89.99036,0.0,12/25/1907 +-3.06662,47.52326,6131,6,6,6,3,29,3.85,15.0,fr,15597,122,669637,1,1,Active Shallow Crust,0.0,89.99036,0.0,06/06/6131 +-3.06662,47.52326,5863,11,1,20,30,3,3.95,5.0,fr,15598,117,669648,1,1,Active Shallow Crust,0.0,89.98926,0.0,11/01/5863 +-3.06662,47.52326,7986,2,16,3,49,7,4.15,5.0,fr,15599,159,669672,1,1,Active Shallow Crust,0.0,89.98976,0.0,02/16/7986 +-3.06662,47.52326,4659,8,26,19,25,30,4.25,5.0,fr,15600,93,669684,1,1,Active Shallow Crust,0.0,89.98936,0.0,08/26/4659 +-3.06662,47.52326,6615,9,9,0,8,59,4.35,15.0,fr,15601,132,669697,1,1,Active Shallow Crust,0.0,89.99051,0.0,09/09/6615 +-3.06662,47.52326,2739,7,12,14,0,7,4.35,5.0,fr,15602,54,669705,1,1,Active Shallow Crust,128.8976,89.98283,0.0,07/12/2739 +-3.06662,47.52326,4188,4,9,1,37,3,4.45,5.0,fr,15603,83,669708,1,1,Active Shallow Crust,0.0,89.99033,0.0,04/09/4188 +-3.06662,47.52326,2728,1,13,22,12,24,5.25,5.0,fr,15604,54,669807,1,1,Active Shallow Crust,240.0261,58.00049,0.0,01/13/2728 +-1.42669,47.12589,3680,4,7,23,58,14,3.55,5.0,fr,15605,73,670080,1,5,Active Shallow Crust,0.0,89.98971,0.0,04/07/3680 +-1.42669,47.12589,5338,4,25,23,29,33,3.55,5.0,fr,15606,106,670080,1,5,Active Shallow Crust,0.0,89.98971,0.0,04/25/5338 +-1.42669,47.12589,2330,8,1,8,20,47,3.55,5.0,fr,15607,46,670080,1,5,Active Shallow Crust,0.0,89.98971,0.0,08/01/2330 +-1.42669,47.12589,3897,4,29,22,58,57,3.55,5.0,fr,15608,77,670080,1,5,Active Shallow Crust,0.0,89.98971,0.0,04/29/3897 +-1.42669,47.12589,6632,4,3,13,3,32,3.55,5.0,fr,15609,132,670080,1,5,Active Shallow Crust,0.0,89.98971,0.0,04/03/6632 +-1.42669,47.12589,536,2,24,15,7,59,3.55,27.5,fr,15610,10,670082,1,1,Active Shallow Crust,0.0,89.98971,0.0,02/24/0536 +-1.42669,47.12589,5421,12,3,16,15,39,3.55,5.0,fr,15611,108,670083,1,1,Active Shallow Crust,240.0122,57.99828,0.0,12/03/5421 +-1.42669,47.12589,8430,10,24,23,8,49,3.55,15.0,fr,15612,168,670090,1,1,Active Shallow Crust,128.8962,89.994,0.0,10/24/8430 +-1.42669,47.12589,1528,7,19,6,59,49,3.65,5.0,fr,15613,30,670101,1,1,Active Shallow Crust,128.9001,89.96354,0.0,07/19/1528 +-1.42669,47.12589,2976,4,4,1,44,26,3.75,5.0,fr,15614,59,670104,1,3,Active Shallow Crust,0.0,89.99046,0.0,04/04/2976 +-1.42669,47.12589,1017,11,29,5,13,17,3.75,5.0,fr,15615,20,670104,1,3,Active Shallow Crust,0.0,89.99046,0.0,11/29/1017 +-1.42669,47.12589,4527,6,28,2,8,46,3.75,5.0,fr,15616,90,670104,1,3,Active Shallow Crust,0.0,89.99046,0.0,06/28/4527 +-1.42669,47.12589,8436,3,12,20,31,52,3.85,5.0,fr,15617,168,670116,1,1,Active Shallow Crust,0.0,89.99029,0.0,03/12/8436 +-1.42669,47.12589,4944,7,30,5,35,52,3.85,5.0,fr,15618,98,670119,1,1,Active Shallow Crust,240.0108,57.99787,0.0,07/30/4944 +-1.42669,47.12589,3614,6,4,5,27,26,3.95,15.0,fr,15619,72,670129,1,1,Active Shallow Crust,0.0,89.99026,0.0,06/04/3614 +-1.42669,47.12589,7793,3,21,7,15,14,3.95,27.5,fr,15620,155,670130,1,1,Active Shallow Crust,0.0,89.99026,0.0,03/21/7793 +-1.42669,47.12589,7006,4,10,7,11,3,3.95,5.0,fr,15621,140,670134,1,1,Active Shallow Crust,0.0,89.99015,-90.0,04/10/7006 +-1.42669,47.12589,4418,10,26,8,31,5,4.05,5.0,fr,15622,88,670140,1,2,Active Shallow Crust,0.0,89.99036,0.0,10/26/4418 +-1.42669,47.12589,6008,5,27,14,46,27,4.05,5.0,fr,15623,120,670140,1,2,Active Shallow Crust,0.0,89.99036,0.0,05/27/6008 +-1.42669,47.12589,8742,9,4,16,51,40,4.05,27.5,fr,15624,174,670142,1,1,Active Shallow Crust,0.0,89.99036,0.0,09/04/8742 +-1.42669,47.12589,1179,6,23,3,53,13,4.25,5.0,fr,15625,23,670164,1,1,Active Shallow Crust,0.0,89.99004,0.0,06/23/1179 +-1.42669,47.12589,9585,4,11,0,16,4,4.35,15.0,fr,15626,191,670177,1,1,Active Shallow Crust,0.0,89.98975,0.0,04/11/9585 +-1.42669,47.12589,2401,11,4,5,9,5,4.65,5.0,fr,15627,48,670212,1,2,Active Shallow Crust,0.0,89.98985,0.0,11/04/2401 +-1.42669,47.12589,9149,11,11,18,49,14,4.65,5.0,fr,15628,182,670212,1,2,Active Shallow Crust,0.0,89.98985,0.0,11/11/9149 +-1.42669,47.12589,8106,7,17,4,42,59,4.65,15.0,fr,15629,162,670219,1,1,Active Shallow Crust,0.0,89.99022,-90.0,07/17/8106 +-1.42669,47.12589,3390,2,21,10,55,32,4.85,5.0,fr,15630,67,670239,1,1,Active Shallow Crust,240.0173,58.00243,0.0,02/21/3390 +-1.42669,47.12589,278,4,28,9,4,4,5.05,5.0,fr,15631,5,670260,1,1,Active Shallow Crust,0.0,89.98993,0.0,04/28/0278 +-1.42669,47.12589,811,5,24,8,28,37,5.25,5.0,fr,15632,16,670284,1,1,Active Shallow Crust,0.0,89.99007,0.0,05/24/0811 +-1.42669,47.12589,8327,4,22,15,57,15,5.25,5.0,fr,15633,166,670287,1,1,Active Shallow Crust,240.0258,58.00038,0.0,04/22/8327 +-1.42669,47.12589,3273,4,20,18,24,0,5.55,5.0,fr,15634,65,670320,1,1,Active Shallow Crust,0.0,89.99004,0.0,04/20/3273 +-1.42669,47.12589,5697,11,20,17,36,6,5.65,5.0,fr,15635,113,670332,1,1,Active Shallow Crust,0.0,89.99006,0.0,11/20/5697 +2.46182,42.39419,3309,9,13,23,26,3,3.55,5.0,fr,15636,66,670560,1,5,Active Shallow Crust,0.0,89.98883,0.0,09/13/3309 +2.46182,42.39419,2417,11,17,12,42,21,3.55,5.0,fr,15637,48,670560,1,5,Active Shallow Crust,0.0,89.98883,0.0,11/17/2417 +2.46182,42.39419,6188,2,26,6,7,47,3.55,5.0,fr,15638,123,670560,1,5,Active Shallow Crust,0.0,89.98883,0.0,02/26/6188 +2.46182,42.39419,8199,6,13,16,44,29,3.55,5.0,fr,15639,163,670560,1,5,Active Shallow Crust,0.0,89.98883,0.0,06/13/8199 +2.46182,42.39419,475,8,17,8,21,12,3.55,5.0,fr,15640,9,670560,1,5,Active Shallow Crust,0.0,89.98883,0.0,08/17/0475 +2.46182,42.39419,6155,8,19,9,32,26,3.55,15.0,fr,15641,123,670561,1,1,Active Shallow Crust,0.0,89.98883,0.0,08/19/6155 +2.46182,42.39419,7161,11,20,19,7,29,3.55,27.5,fr,15642,143,670562,1,1,Active Shallow Crust,0.0,89.98883,0.0,11/20/7161 +2.46182,42.39419,1974,7,15,21,6,52,3.55,5.0,fr,15643,39,670563,1,1,Active Shallow Crust,240.0124,57.99811,0.0,07/15/1974 +2.46182,42.39419,2940,10,4,12,30,45,3.55,5.0,fr,15644,58,670569,1,1,Active Shallow Crust,128.8967,89.99255,0.0,10/04/2940 +2.46182,42.39419,6038,11,18,22,0,59,3.65,5.0,fr,15645,120,670572,1,4,Active Shallow Crust,0.0,89.99004,0.0,11/18/6038 +2.46182,42.39419,9550,4,11,23,56,11,3.65,5.0,fr,15646,190,670572,1,4,Active Shallow Crust,0.0,89.99004,0.0,04/11/9550 +2.46182,42.39419,7455,7,9,15,49,3,3.65,5.0,fr,15647,149,670572,1,4,Active Shallow Crust,0.0,89.99004,0.0,07/09/7455 +2.46182,42.39419,7242,10,16,3,36,10,3.65,5.0,fr,15648,144,670572,1,4,Active Shallow Crust,0.0,89.99004,0.0,10/16/7242 +2.46182,42.39419,6956,6,24,9,48,52,3.65,15.0,fr,15649,139,670576,1,1,Active Shallow Crust,240.0004,58.01276,0.0,06/24/6956 +2.46182,42.39419,4020,11,3,0,55,50,3.75,5.0,fr,15650,80,670584,1,1,Active Shallow Crust,0.0,89.99113,0.0,11/03/4020 +2.46182,42.39419,3928,6,27,7,43,40,3.75,15.0,fr,15651,78,670585,1,1,Active Shallow Crust,0.0,89.99113,0.0,06/27/3928 +2.46182,42.39419,8044,2,18,19,45,16,3.85,5.0,fr,15652,160,670596,1,3,Active Shallow Crust,0.0,89.98946,0.0,02/18/8044 +2.46182,42.39419,2031,8,17,20,59,8,3.85,5.0,fr,15653,40,670596,1,3,Active Shallow Crust,0.0,89.98946,0.0,08/17/2031 +2.46182,42.39419,4614,8,10,17,2,14,3.85,5.0,fr,15654,92,670596,1,3,Active Shallow Crust,0.0,89.98946,0.0,08/10/4614 +2.46182,42.39419,1929,11,25,4,27,4,3.85,5.0,fr,15655,38,670599,1,1,Active Shallow Crust,240.0102,57.99807,0.0,11/25/1929 +2.46182,42.39419,3357,7,5,10,50,6,3.85,5.0,fr,15656,67,670602,1,1,Active Shallow Crust,0.0,89.98933,-90.0,07/05/3357 +2.46182,42.39419,2725,11,24,18,9,9,3.95,5.0,fr,15657,54,670608,1,1,Active Shallow Crust,0.0,89.9906,0.0,11/24/2725 +2.46182,42.39419,9289,9,29,8,33,54,3.95,5.0,fr,15658,185,670611,1,1,Active Shallow Crust,240.0193,58.00483,0.0,09/29/9289 +2.46182,42.39419,3672,8,15,14,21,30,3.95,15.0,fr,15659,73,670612,1,1,Active Shallow Crust,240.0193,58.00483,0.0,08/15/3672 +2.46182,42.39419,8135,9,20,4,53,3,4.05,15.0,fr,15660,162,670621,1,2,Active Shallow Crust,0.0,89.98953,0.0,09/20/8135 +2.46182,42.39419,3528,9,18,4,59,12,4.05,15.0,fr,15661,70,670621,1,2,Active Shallow Crust,0.0,89.98953,0.0,09/18/3528 +2.46182,42.39419,5356,6,5,22,4,41,4.15,15.0,fr,15662,107,670633,1,1,Active Shallow Crust,0.0,89.99067,0.0,06/05/5356 +2.46182,42.39419,2552,2,24,11,32,31,4.15,27.5,fr,15663,51,670634,1,1,Active Shallow Crust,0.0,89.99067,0.0,02/24/2552 +2.46182,42.39419,2255,12,15,8,48,1,4.45,27.5,fr,15664,45,670670,1,1,Active Shallow Crust,0.0,89.98943,0.0,12/15/2255 +2.46182,42.39419,4136,7,6,4,20,32,4.65,5.0,fr,15665,82,670692,1,1,Active Shallow Crust,0.0,89.9895,0.0,07/06/4136 +2.46182,42.39419,2696,3,8,9,58,45,4.85,5.0,fr,15666,53,670719,1,1,Active Shallow Crust,240.0155,58.00207,0.0,03/08/2696 +2.46182,42.39419,9996,7,27,22,34,44,5.15,5.0,fr,15667,199,670752,1,1,Active Shallow Crust,0.0,89.98997,0.0,07/27/9996 +2.46182,42.39419,1188,9,3,5,55,57,5.25,15.0,fr,15668,23,670765,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/03/1188 +2.46182,42.39419,3551,10,5,9,58,6,5.35,5.0,fr,15669,71,670776,1,1,Active Shallow Crust,0.0,89.99015,0.0,10/05/3551 +2.46182,42.39419,2411,10,18,5,31,17,5.45,5.0,fr,15670,48,670791,1,1,Active Shallow Crust,240.0257,57.99791,0.0,10/18/2411 +-2.04367,42.26103,7183,2,28,19,56,1,3.55,5.0,fr,15671,143,671040,1,2,Active Shallow Crust,0.0,89.98881,0.0,02/28/7183 +-2.04367,42.26103,8950,6,15,9,22,37,3.55,5.0,fr,15672,178,671040,1,2,Active Shallow Crust,0.0,89.98881,0.0,06/15/8950 +-2.04367,42.26103,6969,6,27,8,23,36,3.75,15.0,fr,15673,139,671065,1,1,Active Shallow Crust,0.0,89.9911,0.0,06/27/6969 +-2.04367,42.26103,5868,9,12,2,51,36,3.85,5.0,fr,15674,117,671076,1,1,Active Shallow Crust,0.0,89.98943,0.0,09/12/5868 +-2.04367,42.26103,1866,9,19,10,22,11,3.95,15.0,fr,15675,37,671089,1,1,Active Shallow Crust,0.0,89.99059,0.0,09/19/1866 +-2.04367,42.26103,5158,5,7,10,33,49,3.95,27.5,fr,15676,103,671093,1,1,Active Shallow Crust,240.0189,58.00517,0.0,05/07/5158 +-2.04367,42.26103,1001,5,1,3,33,6,4.45,5.0,fr,15677,20,671148,1,1,Active Shallow Crust,0.0,89.98941,0.0,05/01/1001 +-2.04367,42.26103,5742,9,24,16,0,11,4.55,15.0,fr,15678,114,671161,1,2,Active Shallow Crust,0.0,89.99056,0.0,09/24/5742 +-2.04367,42.26103,8232,8,21,8,54,13,4.55,15.0,fr,15679,164,671161,1,2,Active Shallow Crust,0.0,89.99056,0.0,08/21/8232 +-2.04367,42.26103,7589,7,2,5,24,23,4.75,5.0,fr,15680,151,671184,1,1,Active Shallow Crust,0.0,89.98969,0.0,07/02/7589 +9.27219,48.36699,8037,8,19,10,32,32,3.55,5.0,fr,15681,160,671520,1,3,Active Shallow Crust,0.0,89.9866,0.0,08/19/8037 +9.27219,48.36699,4004,6,13,18,30,51,3.55,5.0,fr,15682,80,671520,1,3,Active Shallow Crust,0.0,89.9866,0.0,06/13/4004 +9.27219,48.36699,3512,3,20,17,47,56,3.55,5.0,fr,15683,70,671520,1,3,Active Shallow Crust,0.0,89.9866,0.0,03/20/3512 +9.27219,48.36699,1615,7,18,7,12,9,3.55,27.5,fr,15684,32,671525,1,1,Active Shallow Crust,240.0127,57.99825,0.0,07/18/1615 +9.27219,48.36699,3310,8,10,21,52,45,3.55,5.0,fr,15685,66,671526,1,2,Active Shallow Crust,0.0,89.98644,-90.0,08/10/3310 +9.27219,48.36699,7470,8,13,13,28,5,3.55,5.0,fr,15686,149,671526,1,2,Active Shallow Crust,0.0,89.98644,-90.0,08/13/7470 +9.27219,48.36699,1599,1,5,18,20,27,3.55,5.0,fr,15687,31,671529,1,1,Active Shallow Crust,128.8971,89.9933,0.0,01/05/1599 +9.27219,48.36699,3342,7,23,15,14,0,3.65,15.0,fr,15688,66,671533,1,1,Active Shallow Crust,0.0,89.98806,0.0,07/23/3342 +9.27219,48.36699,5742,3,13,2,20,37,3.65,5.0,fr,15689,114,671535,1,2,Active Shallow Crust,240.0023,58.01176,0.0,03/13/5742 +9.27219,48.36699,7846,2,9,12,50,52,3.65,5.0,fr,15690,156,671535,1,2,Active Shallow Crust,240.0023,58.01176,0.0,02/09/7846 +9.27219,48.36699,9451,2,1,23,33,39,3.65,5.0,fr,15691,189,671538,1,1,Active Shallow Crust,0.0,89.98792,-90.0,02/01/9451 +9.27219,48.36699,5276,8,26,16,3,37,3.65,15.0,fr,15692,105,671542,1,1,Active Shallow Crust,128.8981,89.96356,0.0,08/26/5276 +9.27219,48.36699,3812,9,29,18,42,2,3.75,5.0,fr,15693,76,671544,1,2,Active Shallow Crust,0.0,89.98936,0.0,09/29/3812 +9.27219,48.36699,5248,3,22,4,41,28,3.75,5.0,fr,15694,104,671544,1,2,Active Shallow Crust,0.0,89.98936,0.0,03/22/5248 +9.27219,48.36699,9841,3,6,20,49,37,3.75,15.0,fr,15695,196,671545,1,1,Active Shallow Crust,0.0,89.98936,0.0,03/06/9841 +9.27219,48.36699,5568,6,1,15,42,49,3.75,5.0,fr,15696,111,671547,1,1,Active Shallow Crust,240.0094,58.01706,0.0,06/01/5568 +9.27219,48.36699,6411,11,18,13,6,35,3.85,15.0,fr,15697,128,671557,1,1,Active Shallow Crust,0.0,89.99052,0.0,11/18/6411 +9.27219,48.36699,624,10,27,23,29,48,3.85,5.0,fr,15698,12,671562,1,1,Active Shallow Crust,0.0,89.9904,-90.0,10/27/0624 +9.27219,48.36699,6949,1,16,21,59,49,3.95,15.0,fr,15699,138,671569,1,1,Active Shallow Crust,0.0,89.99155,0.0,01/16/6949 +9.27219,48.36699,2065,6,8,18,44,5,3.95,27.5,fr,15700,41,671570,1,1,Active Shallow Crust,0.0,89.99155,0.0,06/08/2065 +9.27219,48.36699,2434,12,6,19,34,3,4.15,5.0,fr,15701,48,671598,1,1,Active Shallow Crust,0.0,89.99321,-90.0,12/06/2434 +9.27219,48.36699,5475,3,13,3,17,41,4.25,5.0,fr,15702,109,671604,1,1,Active Shallow Crust,0.0,89.98803,0.0,03/13/5475 +9.27219,48.36699,5733,11,17,5,34,14,4.25,15.0,fr,15703,114,671605,1,1,Active Shallow Crust,0.0,89.98803,0.0,11/17/5733 +9.27219,48.36699,3671,4,26,8,30,45,4.25,5.0,fr,15704,73,671607,1,2,Active Shallow Crust,240.0084,57.9938,0.0,04/26/3671 +9.27219,48.36699,5507,9,13,7,0,55,4.25,5.0,fr,15705,110,671607,1,2,Active Shallow Crust,240.0084,57.9938,0.0,09/13/5507 +9.27219,48.36699,9164,3,10,11,47,26,4.35,5.0,fr,15706,183,671619,1,1,Active Shallow Crust,240.009,57.99558,0.0,03/10/9164 +9.27219,48.36699,6459,1,27,10,57,11,4.45,5.0,fr,15707,129,671628,1,1,Active Shallow Crust,0.0,89.99049,0.0,01/27/6459 +9.27219,48.36699,5027,3,6,6,38,25,4.45,15.0,fr,15708,100,671629,1,1,Active Shallow Crust,0.0,89.99049,0.0,03/06/5027 +9.27219,48.36699,1009,7,26,21,10,55,4.55,15.0,fr,15709,20,671644,1,1,Active Shallow Crust,240.01,57.99754,0.0,07/26/1009 +9.27219,48.36699,2683,7,31,7,4,26,5.05,5.0,fr,15710,53,671700,1,1,Active Shallow Crust,0.0,89.99046,0.0,07/31/2683 +5.53159,46.13671,5274,11,23,9,54,47,3.55,5.0,fr,15711,105,672000,1,1,Active Shallow Crust,0.0,89.99301,0.0,11/23/5274 +5.53159,46.13671,5457,5,18,2,34,15,3.55,15.0,fr,15712,109,672001,1,1,Active Shallow Crust,0.0,89.99301,0.0,05/18/5457 +5.53159,46.13671,5718,1,27,5,26,57,3.55,15.0,fr,15713,114,672004,1,1,Active Shallow Crust,240.0125,57.99842,0.0,01/27/5718 +5.53159,46.13671,1501,11,20,10,1,36,3.65,5.0,fr,15714,30,672012,1,1,Active Shallow Crust,0.0,89.98754,0.0,11/20/1501 +5.53159,46.13671,4836,8,23,3,48,13,3.65,5.0,fr,15715,96,672015,1,1,Active Shallow Crust,240.0014,58.01202,0.0,08/23/4836 +5.53159,46.13671,892,10,13,11,29,55,3.65,5.0,fr,15716,17,672018,1,1,Active Shallow Crust,0.0,89.9874,-90.0,10/13/0892 +5.53159,46.13671,1210,8,27,2,53,31,3.65,15.0,fr,15717,24,672022,1,1,Active Shallow Crust,128.8999,89.96352,0.0,08/27/1210 +5.53159,46.13671,5830,10,15,20,10,44,3.75,5.0,fr,15718,116,672027,1,1,Active Shallow Crust,240.0094,58.01661,0.0,10/15/5830 +5.53159,46.13671,8995,12,6,23,48,43,3.85,5.0,fr,15719,179,672036,1,3,Active Shallow Crust,0.0,89.9901,0.0,12/06/8995 +5.53159,46.13671,6189,10,11,22,46,19,3.85,5.0,fr,15720,123,672036,1,3,Active Shallow Crust,0.0,89.9901,0.0,10/11/6189 +5.53159,46.13671,7875,10,8,9,21,54,3.85,5.0,fr,15721,157,672036,1,3,Active Shallow Crust,0.0,89.9901,0.0,10/08/7875 +5.53159,46.13671,5170,2,14,6,18,53,4.05,5.0,fr,15722,103,672063,1,1,Active Shallow Crust,240.0057,58.00636,0.0,02/14/5170 +5.53159,46.13671,3128,10,13,1,18,12,4.35,15.0,fr,15723,62,672097,1,1,Active Shallow Crust,0.0,89.98887,0.0,10/13/3128 +5.53159,46.13671,587,3,22,11,5,52,4.45,15.0,fr,15724,11,672115,1,1,Active Shallow Crust,0.0,89.98997,-90.0,03/22/0587 +5.53159,46.13671,7588,4,2,13,40,46,4.75,5.0,fr,15725,151,672150,1,1,Active Shallow Crust,0.0,89.98934,-90.0,04/02/7588 +5.53159,46.13671,8413,1,1,6,57,36,5.05,15.0,fr,15726,168,672190,1,1,Active Shallow Crust,128.8855,89.99051,0.0,01/01/8413 +1.49027,43.71003,4510,4,5,16,28,36,3.55,5.0,fr,15727,90,672483,1,1,Active Shallow Crust,240.012,57.998,0.0,04/05/4510 +1.49027,43.71003,9196,5,11,14,31,34,3.55,15.0,fr,15728,183,672490,1,1,Active Shallow Crust,128.8965,89.99362,0.0,05/11/9196 +1.49027,43.71003,2012,3,10,21,36,38,3.65,27.5,fr,15729,40,672494,1,1,Active Shallow Crust,0.0,89.99026,0.0,03/10/2012 +1.49027,43.71003,1900,11,30,22,40,50,4.15,5.0,fr,15730,37,672552,1,1,Active Shallow Crust,0.0,89.98995,0.0,11/30/1900 +1.49027,43.71003,3664,10,12,17,36,58,4.65,27.5,fr,15731,73,672614,1,1,Active Shallow Crust,0.0,89.99024,0.0,10/12/3664 +4.12604,49.00767,3982,2,10,23,50,10,4.75,5.0,fr,15732,79,673104,1,1,Active Shallow Crust,0.0,89.99003,0.0,02/10/3982 +3.88115,41.9378,8929,6,9,23,21,46,3.55,5.0,fr,15733,178,673449,1,1,Active Shallow Crust,128.8965,89.99438,0.0,06/09/8929 +3.88115,41.9378,3783,8,2,21,6,4,3.85,5.0,fr,15734,75,673476,1,2,Active Shallow Crust,0.0,89.98938,0.0,08/02/3783 +3.88115,41.9378,4544,7,23,22,28,8,3.85,5.0,fr,15735,90,673476,1,2,Active Shallow Crust,0.0,89.98938,0.0,07/23/4544 +3.88115,41.9378,4107,11,25,20,39,5,4.35,5.0,fr,15736,82,673539,1,1,Active Shallow Crust,240.0074,57.99559,0.0,11/25/4107 +3.88115,41.9378,8996,1,4,4,39,40,4.45,15.0,fr,15737,179,673552,1,1,Active Shallow Crust,240.0039,57.99454,0.0,01/04/8996 +3.6455,52.07754,3064,4,4,10,53,46,3.55,15.0,fr,15738,61,673924,1,1,Active Shallow Crust,240.0132,57.9983,0.0,04/04/3064 +3.6455,52.07754,4294,3,26,7,52,29,3.55,5.0,fr,15739,85,673926,1,1,Active Shallow Crust,0.0,89.99059,-90.0,03/26/4294 +3.6455,52.07754,6284,6,21,13,26,28,3.65,15.0,fr,15740,125,673933,1,1,Active Shallow Crust,0.0,89.98895,0.0,06/21/6284 +3.6455,52.07754,3626,9,29,1,9,22,5.05,5.0,fr,15741,72,674103,1,1,Active Shallow Crust,240.0253,57.99816,0.0,09/29/3626 +3.6455,52.07754,5885,9,29,19,3,25,5.25,5.0,fr,15742,117,674124,1,1,Active Shallow Crust,0.0,89.98993,0.0,09/29/5885 +4.52762,48.68795,8748,7,30,6,42,51,3.55,5.0,fr,15743,174,674400,1,1,Active Shallow Crust,0.0,89.98669,0.0,07/30/8748 +4.52762,48.68795,9752,12,6,7,42,21,3.95,27.5,fr,15744,195,674450,1,1,Active Shallow Crust,0.0,89.9916,0.0,12/06/9752 +4.52762,48.68795,6381,9,12,3,44,20,4.05,27.5,fr,15745,127,674471,1,1,Active Shallow Crust,128.89,89.99438,0.0,09/12/6381 +4.52762,48.68795,4822,8,7,9,19,5,4.65,5.0,fr,15746,96,674532,1,1,Active Shallow Crust,0.0,89.99062,0.0,08/07/4822 +-1.17549,48.75794,2382,5,25,13,43,22,3.55,5.0,fr,15747,47,674883,1,1,Active Shallow Crust,240.0124,57.99823,0.0,05/25/2382 +-1.17549,48.75794,3128,9,22,21,25,21,3.55,5.0,fr,15748,62,674889,1,1,Active Shallow Crust,128.8961,89.99419,0.0,09/22/3128 +-1.17549,48.75794,1029,7,30,14,7,17,3.65,15.0,fr,15749,20,674893,1,1,Active Shallow Crust,0.0,89.98963,0.0,07/30/1029 +-1.17549,48.75794,441,5,19,9,45,54,3.65,15.0,fr,15750,8,674896,1,1,Active Shallow Crust,240.0012,58.01297,0.0,05/19/0441 +-1.17549,48.75794,5166,8,2,15,44,45,3.75,5.0,fr,15751,103,674904,1,1,Active Shallow Crust,0.0,89.98944,0.0,08/02/5166 +-1.17549,48.75794,6162,7,22,2,54,38,3.75,5.0,fr,15752,123,674913,1,1,Active Shallow Crust,128.8963,89.96741,0.0,07/22/6162 +-1.17549,48.75794,5296,9,30,22,44,17,3.75,15.0,fr,15753,105,674914,1,1,Active Shallow Crust,128.8963,89.96741,0.0,09/30/5296 +-1.17549,48.75794,7492,10,25,1,35,29,3.85,5.0,fr,15754,149,674916,1,1,Active Shallow Crust,359.9994,89.99059,0.0,10/25/7492 +-1.17549,48.75794,181,1,19,0,37,32,3.85,15.0,fr,15755,3,674917,1,1,Active Shallow Crust,359.9994,89.99059,0.0,01/19/0181 +-1.17549,48.75794,6155,9,4,10,54,5,3.85,15.0,fr,15756,123,674920,1,1,Active Shallow Crust,240.0111,57.99791,0.0,09/04/6155 +-1.17549,48.75794,8802,7,3,15,5,18,3.85,5.0,fr,15757,176,674922,1,1,Active Shallow Crust,0.0,89.99048,-90.0,07/03/8802 +-1.17549,48.75794,6614,1,23,11,59,11,3.95,5.0,fr,15758,132,674928,1,1,Active Shallow Crust,0.0,89.98952,0.0,01/23/6614 +-1.17549,48.75794,4634,1,4,4,57,36,3.95,27.5,fr,15759,92,674930,1,1,Active Shallow Crust,0.0,89.98952,0.0,01/04/4634 +-1.17549,48.75794,1715,5,28,19,29,17,3.95,5.0,fr,15760,34,674937,1,1,Active Shallow Crust,128.9002,89.99371,0.0,05/28/1715 +-1.17549,48.75794,536,8,14,20,31,43,4.05,5.0,fr,15761,10,674946,1,2,Active Shallow Crust,0.0,89.9896,-90.0,08/14/0536 +-1.17549,48.75794,2118,9,6,14,55,13,4.05,5.0,fr,15762,42,674946,1,2,Active Shallow Crust,0.0,89.9896,-90.0,09/06/2118 +-1.17549,48.75794,632,12,6,16,9,11,4.35,15.0,fr,15763,12,674977,1,1,Active Shallow Crust,0.0,89.99007,0.0,12/06/0632 +-1.17549,48.75794,1750,6,9,7,34,3,4.35,15.0,fr,15764,34,674980,1,1,Active Shallow Crust,240.009,57.99606,0.0,06/09/1750 +1.17489,48.50451,8395,12,5,18,41,36,3.65,5.0,fr,15765,167,675372,1,1,Active Shallow Crust,0.0,89.98958,0.0,12/05/8395 +1.17489,48.50451,1122,10,7,22,26,48,3.65,15.0,fr,15766,22,675376,1,1,Active Shallow Crust,240.0014,58.01275,0.0,10/07/1122 +1.17489,48.50451,1734,12,13,18,24,6,4.15,5.0,fr,15767,34,675432,1,1,Active Shallow Crust,0.0,89.98995,0.0,12/13/1734 +1.17489,48.50451,3419,8,1,11,49,32,4.45,5.0,fr,15768,68,675468,1,1,Active Shallow Crust,0.0,89.98992,0.0,08/01/3419 +1.17489,48.50451,2737,6,24,20,28,37,5.55,15.0,fr,15769,54,675601,1,1,Active Shallow Crust,0.0,89.98997,0.0,06/24/2737 +9.07937,48.98254,5982,11,2,6,13,33,3.65,5.0,fr,15770,119,675852,1,1,Active Shallow Crust,0.0,89.9882,0.0,11/02/5982 +9.07937,48.98254,5716,6,20,5,36,44,3.65,15.0,fr,15771,114,675853,1,3,Active Shallow Crust,0.0,89.9882,0.0,06/20/5716 +9.07937,48.98254,4512,4,10,1,59,9,3.65,15.0,fr,15772,90,675853,1,3,Active Shallow Crust,0.0,89.9882,0.0,04/10/4512 +9.07937,48.98254,232,11,23,2,6,13,3.65,15.0,fr,15773,4,675853,1,3,Active Shallow Crust,0.0,89.9882,0.0,11/23/0232 +9.07937,48.98254,2292,5,28,8,46,52,3.75,5.0,fr,15774,45,675864,1,1,Active Shallow Crust,0.0,89.98949,0.0,05/28/2292 +9.07937,48.98254,9472,2,6,10,56,13,3.75,5.0,fr,15775,189,675873,1,1,Active Shallow Crust,128.8954,89.96754,0.0,02/06/9472 +9.07937,48.98254,6859,3,4,21,35,59,3.85,15.0,fr,15776,137,675883,1,1,Active Shallow Crust,0.0,89.99052,-90.0,03/04/6859 +9.07937,48.98254,6250,3,8,17,3,11,4.05,5.0,fr,15777,124,675903,1,1,Active Shallow Crust,240.0077,58.00597,0.0,03/08/6250 +9.07937,48.98254,2929,12,14,15,44,8,4.35,15.0,fr,15778,58,675943,1,1,Active Shallow Crust,0.0,89.98934,-90.0,12/14/2929 +5.05745,41.01807,36,11,29,20,49,6,3.65,5.0,fr,15779,0,676332,1,1,Active Shallow Crust,0.0,89.99322,0.0,11/29/0036 +5.05745,41.01807,4717,5,16,9,58,15,4.15,5.0,fr,15780,94,676392,1,1,Active Shallow Crust,0.0,89.98856,0.0,05/16/4717 +4.32896,50.89632,2713,5,15,15,5,56,3.55,5.0,fr,15781,54,676800,1,3,Active Shallow Crust,0.0,89.98728,0.0,05/15/2713 +4.32896,50.89632,6552,6,13,8,48,4,3.55,5.0,fr,15782,131,676800,1,3,Active Shallow Crust,0.0,89.98728,0.0,06/13/6552 +4.32896,50.89632,1471,5,12,19,53,38,3.55,5.0,fr,15783,29,676800,1,3,Active Shallow Crust,0.0,89.98728,0.0,05/12/1471 +4.32896,50.89632,7799,12,7,1,19,55,3.55,15.0,fr,15784,155,676801,1,1,Active Shallow Crust,0.0,89.98728,0.0,12/07/7799 +4.32896,50.89632,3031,6,15,17,45,27,3.75,5.0,fr,15785,60,676833,1,1,Active Shallow Crust,128.8962,89.96757,0.0,06/15/3031 +4.32896,50.89632,4736,8,6,15,26,39,3.85,5.0,fr,15786,94,676836,1,2,Active Shallow Crust,0.0,89.991,0.0,08/06/4736 +4.32896,50.89632,9037,2,21,19,37,57,3.85,5.0,fr,15787,180,676836,1,2,Active Shallow Crust,0.0,89.991,0.0,02/21/9037 +4.32896,50.89632,2915,4,21,22,59,39,3.85,27.5,fr,15788,58,676838,1,1,Active Shallow Crust,0.0,89.991,0.0,04/21/2915 +4.32896,50.89632,4147,6,14,13,6,6,3.95,5.0,fr,15789,82,676848,1,1,Active Shallow Crust,0.0,89.99197,0.0,06/14/4147 +4.32896,50.89632,2007,12,27,20,22,34,4.05,27.5,fr,15790,40,676862,1,1,Active Shallow Crust,0.0,89.98927,0.0,12/27/2007 +4.32896,50.89632,387,5,15,22,40,31,4.15,5.0,fr,15791,7,676878,1,1,Active Shallow Crust,0.0,89.99033,-90.0,05/15/0387 +4.32896,50.89632,7916,1,23,11,15,47,4.55,5.0,fr,15792,158,676920,1,1,Active Shallow Crust,0.0,89.98994,0.0,01/23/7916 +2.6058,52.82305,4198,9,11,3,0,57,3.65,5.0,fr,15793,83,677292,1,1,Active Shallow Crust,0.0,89.98914,0.0,09/11/4198 +2.6058,52.82305,1176,3,22,16,30,51,3.85,5.0,fr,15794,23,677316,1,1,Active Shallow Crust,0.0,89.98921,0.0,03/22/1176 +2.6058,52.82305,4400,2,4,19,43,54,4.95,5.0,fr,15795,87,677448,1,1,Active Shallow Crust,0.0,89.99027,0.0,02/04/4400 +5.89431,43.81617,9893,9,23,20,18,58,3.55,5.0,fr,15796,197,677760,1,2,Active Shallow Crust,0.0,89.99272,0.0,09/23/9893 +5.89431,43.81617,3072,7,5,21,30,13,3.55,5.0,fr,15797,61,677760,1,2,Active Shallow Crust,0.0,89.99272,0.0,07/05/3072 +5.89431,43.81617,5827,5,23,19,35,16,3.55,15.0,fr,15798,116,677761,1,2,Active Shallow Crust,0.0,89.99272,0.0,05/23/5827 +5.89431,43.81617,2986,12,23,6,26,20,3.55,15.0,fr,15799,59,677761,1,2,Active Shallow Crust,0.0,89.99272,0.0,12/23/2986 +5.89431,43.81617,9045,6,27,3,54,31,3.55,15.0,fr,15800,180,677764,1,1,Active Shallow Crust,240.0113,57.99784,0.0,06/27/9045 +5.89431,43.81617,1681,12,2,14,13,55,3.55,5.0,fr,15801,33,677766,1,1,Active Shallow Crust,0.0,89.99264,-90.0,12/02/1681 +5.89431,43.81617,4602,11,28,13,35,0,3.65,5.0,fr,15802,92,677772,1,6,Active Shallow Crust,0.0,89.98703,0.0,11/28/4602 +5.89431,43.81617,7578,4,20,19,28,58,3.65,5.0,fr,15803,151,677772,1,6,Active Shallow Crust,0.0,89.98703,0.0,04/20/7578 +5.89431,43.81617,8212,1,15,21,42,45,3.65,5.0,fr,15804,164,677772,1,6,Active Shallow Crust,0.0,89.98703,0.0,01/15/8212 +5.89431,43.81617,7470,4,10,0,23,50,3.65,5.0,fr,15805,149,677772,1,6,Active Shallow Crust,0.0,89.98703,0.0,04/10/7470 +5.89431,43.81617,4068,9,4,8,29,40,3.65,5.0,fr,15806,81,677772,1,6,Active Shallow Crust,0.0,89.98703,0.0,09/04/4068 +5.89431,43.81617,14,1,29,21,33,45,3.65,5.0,fr,15807,0,677772,1,6,Active Shallow Crust,0.0,89.98703,0.0,01/29/0014 +5.89431,43.81617,8047,10,23,3,55,1,3.65,5.0,fr,15808,160,677775,1,1,Active Shallow Crust,240.0015,58.01278,0.0,10/23/8047 +5.89431,43.81617,8955,3,8,19,54,34,3.65,15.0,fr,15809,179,677782,1,1,Active Shallow Crust,128.8998,89.96391,0.0,03/08/8955 +5.89431,43.81617,8585,5,11,8,33,28,3.75,5.0,fr,15810,171,677784,1,2,Active Shallow Crust,0.0,89.98844,0.0,05/11/8585 +5.89431,43.81617,7213,7,17,8,6,26,3.75,5.0,fr,15811,144,677784,1,2,Active Shallow Crust,0.0,89.98844,0.0,07/17/7213 +5.89431,43.81617,8624,9,7,21,40,37,3.75,15.0,fr,15812,172,677785,1,2,Active Shallow Crust,0.0,89.98844,0.0,09/07/8624 +5.89431,43.81617,938,6,11,11,41,27,3.75,15.0,fr,15813,18,677785,1,2,Active Shallow Crust,0.0,89.98844,0.0,06/11/0938 +5.89431,43.81617,9338,3,22,15,42,25,3.75,5.0,fr,15814,186,677790,1,1,Active Shallow Crust,0.0,89.9883,-90.0,03/22/9338 +5.89431,43.81617,8181,7,10,4,31,6,3.85,5.0,fr,15815,163,677796,1,2,Active Shallow Crust,0.0,89.9897,0.0,07/10/8181 +5.89431,43.81617,5367,4,1,16,34,19,3.85,5.0,fr,15816,107,677796,1,2,Active Shallow Crust,0.0,89.9897,0.0,04/01/5367 +5.89431,43.81617,6901,3,30,5,1,36,3.95,5.0,fr,15817,138,677817,1,1,Active Shallow Crust,128.9008,89.99311,0.0,03/30/6901 +5.89431,43.81617,8960,7,30,8,38,42,4.05,5.0,fr,15818,179,677820,1,1,Active Shallow Crust,0.0,89.99181,0.0,07/30/8960 +5.89431,43.81617,1385,11,8,10,30,33,4.05,27.5,fr,15819,27,677822,1,1,Active Shallow Crust,0.0,89.99181,0.0,11/08/1385 +5.89431,43.81617,9865,11,5,1,56,49,4.05,5.0,fr,15820,197,677823,1,1,Active Shallow Crust,240.0052,58.00591,0.0,11/05/9865 +5.89431,43.81617,6739,7,13,23,56,44,4.15,5.0,fr,15821,134,677832,1,1,Active Shallow Crust,0.0,89.98906,0.0,07/13/6739 +5.89431,43.81617,7180,4,7,6,37,56,4.15,5.0,fr,15822,143,677835,1,1,Active Shallow Crust,240.0073,57.9976,0.0,04/07/7180 +5.89431,43.81617,6112,12,24,16,25,31,4.25,5.0,fr,15823,122,677844,1,2,Active Shallow Crust,0.0,89.99025,0.0,12/24/6112 +5.89431,43.81617,6033,7,23,10,52,51,4.25,5.0,fr,15824,120,677844,1,2,Active Shallow Crust,0.0,89.99025,0.0,07/23/6033 +5.89431,43.81617,7006,11,11,21,15,16,4.25,27.5,fr,15825,140,677846,1,1,Active Shallow Crust,0.0,89.99025,0.0,11/11/7006 +5.89431,43.81617,3578,2,12,23,36,15,4.25,5.0,fr,15826,71,677847,1,1,Active Shallow Crust,240.0069,57.99416,0.0,02/12/3578 +5.89431,43.81617,5368,1,14,9,39,47,4.45,5.0,fr,15827,107,677868,1,1,Active Shallow Crust,0.0,89.98967,0.0,01/14/5368 +5.89431,43.81617,1262,12,12,0,51,46,4.45,15.0,fr,15828,25,677869,1,1,Active Shallow Crust,0.0,89.98967,0.0,12/12/1262 +5.89431,43.81617,6488,2,26,18,1,1,4.65,5.0,fr,15829,129,677895,1,1,Active Shallow Crust,240.0102,57.99409,0.0,02/26/6488 +5.89431,43.81617,8748,4,28,0,36,18,4.95,5.0,fr,15830,174,677928,1,2,Active Shallow Crust,0.0,89.98984,0.0,04/28/8748 +5.89431,43.81617,929,8,29,19,38,30,4.95,5.0,fr,15831,18,677928,1,2,Active Shallow Crust,0.0,89.98984,0.0,08/29/0929 +5.89431,43.81617,1573,3,1,19,7,39,4.95,15.0,fr,15832,31,677932,1,1,Active Shallow Crust,240.0107,58.0042,0.0,03/01/1573 +5.89431,43.81617,7606,10,6,5,55,40,5.35,15.0,fr,15833,152,677977,1,1,Active Shallow Crust,0.0,89.98992,0.0,10/06/7606 +7.5692,51.30916,4524,6,27,15,10,56,4.05,5.0,fr,15834,90,678303,1,1,Active Shallow Crust,240.0066,58.00659,0.0,06/27/4524 +-3.358,47.76786,1354,6,11,11,7,23,3.55,5.0,fr,15835,27,678720,1,2,Active Shallow Crust,0.0,89.98983,0.0,06/11/1354 +-3.358,47.76786,4866,9,11,10,25,26,3.55,5.0,fr,15836,97,678720,1,2,Active Shallow Crust,0.0,89.98983,0.0,09/11/4866 +-3.358,47.76786,6771,9,12,21,18,24,3.55,5.0,fr,15837,135,678729,1,1,Active Shallow Crust,128.8959,89.99323,0.0,09/12/6771 +-3.358,47.76786,9080,4,1,17,27,3,3.65,5.0,fr,15838,181,678732,1,1,Active Shallow Crust,0.0,89.99094,0.0,04/01/9080 +-3.358,47.76786,6782,9,20,22,3,31,3.65,15.0,fr,15839,135,678733,1,1,Active Shallow Crust,0.0,89.99094,0.0,09/20/6782 +-3.358,47.76786,6752,6,20,6,10,9,3.65,5.0,fr,15840,135,678735,1,1,Active Shallow Crust,240.0013,58.01257,0.0,06/20/6752 +-3.358,47.76786,2586,2,24,21,33,21,3.75,5.0,fr,15841,51,678744,1,1,Active Shallow Crust,0.0,89.98923,0.0,02/24/2586 +-3.358,47.76786,5874,10,6,13,10,17,3.75,27.5,fr,15842,117,678746,1,2,Active Shallow Crust,0.0,89.98923,0.0,10/06/5874 +-3.358,47.76786,4877,11,29,12,1,41,3.75,27.5,fr,15843,97,678746,1,2,Active Shallow Crust,0.0,89.98923,0.0,11/29/4877 +-3.358,47.76786,5795,6,30,19,6,53,3.75,5.0,fr,15844,115,678747,1,1,Active Shallow Crust,240.0084,58.01757,0.0,06/30/5795 +-3.358,47.76786,7184,2,23,7,10,28,3.75,15.0,fr,15845,143,678748,1,1,Active Shallow Crust,240.0084,58.01757,0.0,02/23/7184 +-3.358,47.76786,9875,8,13,13,48,19,3.85,5.0,fr,15846,197,678756,1,2,Active Shallow Crust,0.0,89.9904,0.0,08/13/9875 +-3.358,47.76786,1207,4,30,17,27,10,3.85,5.0,fr,15847,24,678756,1,2,Active Shallow Crust,0.0,89.9904,0.0,04/30/1207 +-3.358,47.76786,7571,5,30,3,5,32,3.85,5.0,fr,15848,151,678762,1,1,Active Shallow Crust,0.0,89.9903,-90.0,05/30/7571 +-3.358,47.76786,5070,8,12,22,36,42,4.05,5.0,fr,15849,101,678780,1,1,Active Shallow Crust,0.0,89.99047,0.0,08/12/5070 +-3.358,47.76786,5728,11,30,22,18,16,4.05,15.0,fr,15850,114,678781,1,1,Active Shallow Crust,0.0,89.99047,0.0,11/30/5728 +-3.358,47.76786,6937,8,10,3,53,36,4.05,5.0,fr,15851,138,678786,1,1,Active Shallow Crust,0.0,89.99036,-90.0,08/10/6937 +-3.358,47.76786,5275,12,23,8,35,42,4.35,15.0,fr,15852,105,678826,1,1,Active Shallow Crust,128.8979,89.98258,0.0,12/23/5275 +-3.358,47.76786,3404,12,7,1,59,40,4.85,5.0,fr,15853,68,678876,1,1,Active Shallow Crust,0.0,89.99014,0.0,12/07/3404 +-0.99138,47.56518,8335,6,10,13,42,24,3.55,15.0,fr,15854,166,679201,1,2,Active Shallow Crust,0.0,89.98979,0.0,06/10/8335 +-0.99138,47.56518,6602,4,18,11,52,4,3.55,15.0,fr,15855,132,679201,1,2,Active Shallow Crust,0.0,89.98979,0.0,04/18/6602 +-0.99138,47.56518,1517,1,6,21,31,41,3.55,5.0,fr,15856,30,679209,1,1,Active Shallow Crust,128.8962,89.99362,0.0,01/06/1517 +-0.99138,47.56518,423,12,24,18,44,11,3.65,5.0,fr,15857,8,679212,1,1,Active Shallow Crust,0.0,89.99014,0.0,12/24/0423 +-0.99138,47.56518,1152,7,8,17,34,17,3.65,15.0,fr,15858,23,679213,1,1,Active Shallow Crust,0.0,89.99014,0.0,07/08/1152 +-0.99138,47.56518,2259,8,20,11,26,16,3.65,27.5,fr,15859,45,679217,1,1,Active Shallow Crust,240.0013,58.01283,0.0,08/20/2259 +-0.99138,47.56518,8778,9,23,0,23,52,3.75,5.0,fr,15860,175,679224,1,2,Active Shallow Crust,0.0,89.98987,0.0,09/23/8778 +-0.99138,47.56518,9310,2,9,9,48,27,3.75,5.0,fr,15861,186,679224,1,2,Active Shallow Crust,0.0,89.98987,0.0,02/09/9310 +-0.99138,47.56518,3633,1,16,23,22,18,3.85,5.0,fr,15862,72,679236,1,1,Active Shallow Crust,0.0,89.98976,0.0,01/16/3633 +-0.99138,47.56518,1192,4,24,1,11,32,3.95,5.0,fr,15863,23,679248,1,3,Active Shallow Crust,0.0,89.98981,0.0,04/24/1192 +-0.99138,47.56518,4442,5,2,13,9,16,3.95,5.0,fr,15864,88,679248,1,3,Active Shallow Crust,0.0,89.98981,0.0,05/02/4442 +-0.99138,47.56518,582,10,29,19,57,13,3.95,5.0,fr,15865,11,679248,1,3,Active Shallow Crust,0.0,89.98981,0.0,10/29/0582 +-0.99138,47.56518,7744,12,11,15,37,34,3.95,15.0,fr,15866,154,679249,1,1,Active Shallow Crust,0.0,89.98981,0.0,12/11/7744 +-0.99138,47.56518,8062,1,24,18,6,8,4.15,5.0,fr,15867,161,679272,1,1,Active Shallow Crust,0.0,89.9902,0.0,01/24/8062 +-0.99138,47.56518,4144,5,19,13,41,23,4.15,15.0,fr,15868,82,679273,1,2,Active Shallow Crust,0.0,89.9902,0.0,05/19/4144 +-0.99138,47.56518,5718,6,4,23,6,9,4.15,15.0,fr,15869,114,679273,1,2,Active Shallow Crust,0.0,89.9902,0.0,06/04/5718 +-0.99138,47.56518,514,3,3,13,42,41,4.45,5.0,fr,15870,10,679308,1,2,Active Shallow Crust,0.0,89.99004,0.0,03/03/0514 +-0.99138,47.56518,7214,12,15,22,13,32,4.45,5.0,fr,15871,144,679308,1,2,Active Shallow Crust,0.0,89.99004,0.0,12/15/7214 +-0.99138,47.56518,8327,7,8,3,17,26,4.65,5.0,fr,15872,166,679332,1,1,Active Shallow Crust,0.0,89.98993,0.0,07/08/8327 +-0.99138,47.56518,4125,6,4,10,36,34,4.65,5.0,fr,15873,82,679341,1,1,Active Shallow Crust,128.8909,89.98704,0.0,06/04/4125 +-0.99138,47.56518,7163,4,11,21,20,6,4.85,5.0,fr,15874,143,679359,1,1,Active Shallow Crust,240.0175,58.00241,0.0,04/11/7163 +-0.99138,47.56518,139,3,17,20,35,17,4.95,5.0,fr,15875,2,679368,1,1,Active Shallow Crust,0.0,89.98998,0.0,03/17/0139 +4.04357,52.33423,469,5,9,1,40,51,3.65,15.0,fr,15876,9,679693,1,1,Active Shallow Crust,0.0,89.98901,0.0,05/09/0469 +6.67347,50.95968,4913,3,25,6,16,24,3.55,5.0,fr,15877,98,680160,1,4,Active Shallow Crust,0.0,89.9873,0.0,03/25/4913 +6.67347,50.95968,9183,10,1,12,13,6,3.55,5.0,fr,15878,183,680160,1,4,Active Shallow Crust,0.0,89.9873,0.0,10/01/9183 +6.67347,50.95968,4389,9,8,7,37,47,3.55,5.0,fr,15879,87,680160,1,4,Active Shallow Crust,0.0,89.9873,0.0,09/08/4389 +6.67347,50.95968,398,9,2,11,50,23,3.55,5.0,fr,15880,7,680160,1,4,Active Shallow Crust,0.0,89.9873,0.0,09/02/0398 +6.67347,50.95968,389,6,23,6,12,18,3.55,15.0,fr,15881,7,680161,1,2,Active Shallow Crust,0.0,89.9873,0.0,06/23/0389 +6.67347,50.95968,499,11,13,21,57,35,3.55,15.0,fr,15882,9,680161,1,2,Active Shallow Crust,0.0,89.9873,0.0,11/13/0499 +6.67347,50.95968,6463,6,1,1,7,56,3.65,5.0,fr,15883,129,680172,1,1,Active Shallow Crust,0.0,89.98868,0.0,06/01/6463 +6.67347,50.95968,5579,12,22,5,6,9,3.65,15.0,fr,15884,111,680173,1,1,Active Shallow Crust,0.0,89.98868,0.0,12/22/5579 +6.67347,50.95968,2393,4,10,10,59,7,3.65,27.5,fr,15885,47,680174,1,1,Active Shallow Crust,0.0,89.98868,0.0,04/10/2393 +6.67347,50.95968,9675,4,12,16,49,51,3.75,5.0,fr,15886,193,680184,1,1,Active Shallow Crust,0.0,89.98991,0.0,04/12/9675 +6.67347,50.95968,8645,2,27,14,11,54,3.75,5.0,fr,15887,172,680187,1,1,Active Shallow Crust,240.0095,58.01755,0.0,02/27/8645 +6.67347,50.95968,3127,10,11,21,39,59,3.75,15.0,fr,15888,62,680188,1,1,Active Shallow Crust,240.0095,58.01755,0.0,10/11/3127 +6.67347,50.95968,8271,4,10,22,45,33,3.75,15.0,fr,15889,165,680191,1,1,Active Shallow Crust,0.0,89.98979,-90.0,04/10/8271 +6.67347,50.95968,1898,8,14,19,32,5,3.75,5.0,fr,15890,37,680193,1,1,Active Shallow Crust,128.8963,89.96757,0.0,08/14/1898 +6.67347,50.95968,3769,10,14,10,1,27,3.85,5.0,fr,15891,75,680196,1,4,Active Shallow Crust,0.0,89.991,0.0,10/14/3769 +6.67347,50.95968,6945,2,8,22,16,31,3.85,5.0,fr,15892,138,680196,1,4,Active Shallow Crust,0.0,89.991,0.0,02/08/6945 +6.67347,50.95968,6575,9,11,8,44,21,3.85,5.0,fr,15893,131,680196,1,4,Active Shallow Crust,0.0,89.991,0.0,09/11/6575 +6.67347,50.95968,3770,1,22,16,28,46,3.85,5.0,fr,15894,75,680196,1,4,Active Shallow Crust,0.0,89.991,0.0,01/22/3770 +6.67347,50.95968,2204,2,9,19,57,31,3.85,5.0,fr,15895,44,680199,1,1,Active Shallow Crust,240.0118,57.99803,0.0,02/09/2204 +6.67347,50.95968,9741,2,15,9,20,17,3.85,5.0,fr,15896,194,680202,1,2,Active Shallow Crust,0.0,89.99091,-90.0,02/15/9741 +6.67347,50.95968,7861,11,27,3,10,53,3.85,5.0,fr,15897,157,680202,1,2,Active Shallow Crust,0.0,89.99091,-90.0,11/27/7861 +6.67347,50.95968,8829,6,1,3,31,7,3.85,5.0,fr,15898,176,680205,1,1,Active Shallow Crust,128.8952,89.99326,0.0,06/01/8829 +6.67347,50.95968,4455,7,25,15,17,19,3.95,5.0,fr,15899,89,680208,1,2,Active Shallow Crust,0.0,89.99198,0.0,07/25/4455 +6.67347,50.95968,1201,3,19,0,31,13,3.95,5.0,fr,15900,24,680208,1,2,Active Shallow Crust,0.0,89.99198,0.0,03/19/1201 +6.67347,50.95968,1012,11,18,22,46,20,4.05,5.0,fr,15901,20,680220,1,3,Active Shallow Crust,0.0,89.98928,0.0,11/18/1012 +6.67347,50.95968,5609,9,12,23,54,7,4.05,5.0,fr,15902,112,680220,1,3,Active Shallow Crust,0.0,89.98928,0.0,09/12/5609 +6.67347,50.95968,7212,5,8,6,24,50,4.05,5.0,fr,15903,144,680220,1,3,Active Shallow Crust,0.0,89.98928,0.0,05/08/7212 +6.67347,50.95968,10000,5,26,1,34,12,4.05,15.0,fr,15904,199,680221,1,2,Active Shallow Crust,0.0,89.98928,0.0,05/26/10000 +6.67347,50.95968,1055,11,5,3,51,25,4.05,15.0,fr,15905,21,680221,1,2,Active Shallow Crust,0.0,89.98928,0.0,11/05/1055 +6.67347,50.95968,8484,12,13,1,54,8,4.35,5.0,fr,15906,169,680256,1,2,Active Shallow Crust,0.0,89.98988,0.0,12/13/8484 +6.67347,50.95968,6725,4,17,22,48,35,4.35,5.0,fr,15907,134,680256,1,2,Active Shallow Crust,0.0,89.98988,0.0,04/17/6725 +6.67347,50.95968,2785,9,1,15,10,21,4.35,27.5,fr,15908,55,680258,1,1,Active Shallow Crust,0.0,89.98988,0.0,09/01/2785 +6.67347,50.95968,2369,8,2,3,35,17,4.45,5.0,fr,15909,47,680268,1,2,Active Shallow Crust,0.0,89.99098,0.0,08/02/2369 +6.67347,50.95968,445,12,7,22,10,30,4.45,5.0,fr,15910,8,680268,1,2,Active Shallow Crust,0.0,89.99098,0.0,12/07/0445 +6.67347,50.95968,9957,4,2,21,29,29,4.45,27.5,fr,15911,199,680273,1,1,Active Shallow Crust,240.0067,57.99499,0.0,04/02/9957 +6.67347,50.95968,5078,4,25,9,48,55,4.55,15.0,fr,15912,101,680281,1,1,Active Shallow Crust,0.0,89.98996,0.0,04/25/5078 +6.67347,50.95968,6162,2,22,9,7,42,4.85,15.0,fr,15913,123,680317,1,1,Active Shallow Crust,0.0,89.99004,0.0,02/22/6162 +6.67347,50.95968,3438,9,4,2,6,50,4.95,5.0,fr,15914,68,680328,1,1,Active Shallow Crust,0.0,89.98986,0.0,09/04/3438 +6.67347,50.95968,7750,3,28,8,10,10,4.95,5.0,fr,15915,154,680334,1,1,Active Shallow Crust,0.0,89.98974,-90.0,03/28/7750 +-1.96278,43.65573,3448,4,13,23,9,14,3.65,5.0,fr,15916,68,680652,1,1,Active Shallow Crust,0.0,89.99025,0.0,04/13/3448 +-1.96278,43.65573,2393,7,14,6,18,59,3.95,5.0,fr,15917,47,680697,1,1,Active Shallow Crust,128.9008,89.99367,0.0,07/14/2393 +-1.96278,43.65573,7133,10,20,18,37,50,4.05,5.0,fr,15918,142,680700,1,1,Active Shallow Crust,0.0,89.98975,0.0,10/20/7133 +1.12028,48.76558,289,8,3,20,7,20,3.55,5.0,fr,15919,5,681120,1,1,Active Shallow Crust,0.0,89.99003,0.0,08/03/0289 +1.12028,48.76558,7473,8,9,7,4,30,3.65,5.0,fr,15920,149,681132,1,2,Active Shallow Crust,0.0,89.98963,0.0,08/09/7473 +1.12028,48.76558,1177,4,18,17,12,16,3.65,5.0,fr,15921,23,681132,1,2,Active Shallow Crust,0.0,89.98963,0.0,04/18/1177 +1.12028,48.76558,3628,7,25,3,17,3,3.75,15.0,fr,15922,72,681145,1,1,Active Shallow Crust,0.0,89.98944,0.0,07/25/3628 +1.12028,48.76558,9996,10,16,4,51,0,3.85,15.0,fr,15923,199,681163,1,1,Active Shallow Crust,0.0,89.99048,-90.0,10/16/9996 +1.12028,48.76558,1720,1,19,15,28,12,4.55,5.0,fr,15924,34,681240,1,1,Active Shallow Crust,0.0,89.99001,0.0,01/19/1720 +1.12028,48.76558,975,6,20,17,4,54,5.45,5.0,fr,15925,19,681357,1,1,Active Shallow Crust,128.8772,89.98895,0.0,06/20/0975 +4.83714,48.85716,7646,6,9,5,17,14,3.95,5.0,fr,15926,152,681651,1,1,Active Shallow Crust,240.0211,58.00481,0.0,06/09/7646 +4.83714,48.85716,1771,6,19,22,43,40,4.85,5.0,fr,15927,35,681759,1,1,Active Shallow Crust,240.0183,58.00245,0.0,06/19/1771 +-1.90972,48.16595,1298,12,6,23,48,35,3.55,5.0,fr,15928,25,682080,1,3,Active Shallow Crust,0.0,89.98991,0.0,12/06/1298 +-1.90972,48.16595,7821,2,12,11,44,47,3.55,5.0,fr,15929,156,682080,1,3,Active Shallow Crust,0.0,89.98991,0.0,02/12/7821 +-1.90972,48.16595,9410,8,15,19,36,44,3.55,5.0,fr,15930,188,682080,1,3,Active Shallow Crust,0.0,89.98991,0.0,08/15/9410 +-1.90972,48.16595,7223,5,21,4,54,37,3.55,15.0,fr,15931,144,682081,1,1,Active Shallow Crust,0.0,89.98991,0.0,05/21/7223 +-1.90972,48.16595,7354,5,6,18,47,2,3.65,5.0,fr,15932,147,682092,1,3,Active Shallow Crust,0.0,89.98951,0.0,05/06/7354 +-1.90972,48.16595,6093,2,5,20,38,12,3.65,5.0,fr,15933,121,682092,1,3,Active Shallow Crust,0.0,89.98951,0.0,02/05/6093 +-1.90972,48.16595,8686,4,29,12,28,26,3.65,5.0,fr,15934,173,682092,1,3,Active Shallow Crust,0.0,89.98951,0.0,04/29/8686 +-1.90972,48.16595,7148,12,14,21,29,59,3.65,15.0,fr,15935,142,682093,1,1,Active Shallow Crust,0.0,89.98951,0.0,12/14/7148 +-1.90972,48.16595,23,9,27,12,24,51,3.75,5.0,fr,15936,0,682104,1,3,Active Shallow Crust,0.0,89.99065,0.0,09/27/0023 +-1.90972,48.16595,304,9,19,3,19,4,3.75,5.0,fr,15937,6,682104,1,3,Active Shallow Crust,0.0,89.99065,0.0,09/19/0304 +-1.90972,48.16595,4106,6,18,10,54,18,3.75,5.0,fr,15938,82,682104,1,3,Active Shallow Crust,0.0,89.99065,0.0,06/18/4106 +-1.90972,48.16595,8806,11,26,5,45,38,3.75,15.0,fr,15939,176,682108,1,1,Active Shallow Crust,240.0086,58.01773,0.0,11/26/8806 +-1.90972,48.16595,6721,9,13,8,24,20,3.85,5.0,fr,15940,134,682116,1,1,Active Shallow Crust,0.0,89.99048,0.0,09/13/6721 +-1.90972,48.16595,5286,4,9,19,42,41,3.85,15.0,fr,15941,105,682120,1,1,Active Shallow Crust,240.0113,57.99784,0.0,04/09/5286 +-1.90972,48.16595,9266,11,20,6,32,35,3.95,15.0,fr,15942,185,682129,1,1,Active Shallow Crust,0.0,89.99045,0.0,11/20/9266 +-1.90972,48.16595,5390,1,26,23,8,50,4.15,5.0,fr,15943,107,682161,1,1,Active Shallow Crust,128.8974,89.99368,0.0,01/26/5390 +-1.90972,48.16595,3020,2,28,11,45,27,4.25,5.0,fr,15944,60,682164,1,2,Active Shallow Crust,0.0,89.99023,0.0,02/28/3020 +-1.90972,48.16595,4911,1,22,9,30,16,4.25,5.0,fr,15945,98,682164,1,2,Active Shallow Crust,0.0,89.99023,0.0,01/22/4911 +-1.90972,48.16595,6794,8,25,2,3,22,4.65,15.0,fr,15946,135,682213,1,1,Active Shallow Crust,0.0,89.99004,0.0,08/25/6794 +2.54907,40.79435,1686,9,21,6,33,54,3.55,5.0,fr,15947,33,682560,1,1,Active Shallow Crust,0.0,89.98855,0.0,09/21/1686 +2.54907,40.79435,1777,10,7,9,5,14,3.65,5.0,fr,15948,35,682572,1,1,Active Shallow Crust,0.0,89.98979,0.0,10/07/1777 +2.54907,40.79435,4130,12,28,0,56,17,3.65,15.0,fr,15949,82,682573,1,1,Active Shallow Crust,0.0,89.98979,0.0,12/28/4130 +2.54907,40.79435,3982,6,30,11,12,47,3.65,5.0,fr,15950,79,682575,1,1,Active Shallow Crust,240.0004,58.01274,0.0,06/30/3982 +2.54907,40.79435,8289,2,21,0,15,52,3.95,5.0,fr,15951,165,682611,1,1,Active Shallow Crust,240.0186,58.00512,0.0,02/21/8289 +2.54907,40.79435,3747,6,12,12,50,24,4.25,27.5,fr,15952,74,682646,1,1,Active Shallow Crust,0.0,89.98977,0.0,06/12/3747 +2.54907,40.79435,1412,9,9,6,10,38,4.45,5.0,fr,15953,28,682668,1,1,Active Shallow Crust,0.0,89.99052,0.0,09/09/1412 +3.1993,39.9425,1093,12,2,17,12,56,3.85,5.0,fr,15954,21,683562,1,1,Active Shallow Crust,0.0,89.98893,-90.0,12/02/1093 +-2.2339,43.48727,1989,3,3,7,5,23,3.55,5.0,fr,15955,39,684003,1,2,Active Shallow Crust,240.0112,57.99817,0.0,03/03/1989 +-2.2339,43.48727,4120,9,5,5,54,1,3.55,5.0,fr,15956,82,684003,1,2,Active Shallow Crust,240.0112,57.99817,0.0,09/05/4120 +-2.2339,43.48727,7995,2,18,14,13,25,3.65,5.0,fr,15957,159,684018,1,1,Active Shallow Crust,0.0,89.9901,-90.0,02/18/7995 +-2.2339,43.48727,8570,11,28,17,59,16,3.65,27.5,fr,15958,171,684023,1,1,Active Shallow Crust,128.9007,89.96346,0.0,11/28/8570 +-2.2339,43.48727,9245,5,14,3,48,34,3.75,5.0,fr,15959,184,684024,1,2,Active Shallow Crust,0.0,89.99128,0.0,05/14/9245 +-2.2339,43.48727,5685,11,22,22,31,44,3.75,5.0,fr,15960,113,684024,1,2,Active Shallow Crust,0.0,89.99128,0.0,11/22/5685 +-2.2339,43.48727,9714,2,26,11,59,2,3.85,5.0,fr,15961,194,684039,1,1,Active Shallow Crust,240.0107,57.9977,0.0,02/26/9714 +-2.2339,43.48727,6745,7,19,7,19,7,4.05,5.0,fr,15962,134,684066,1,1,Active Shallow Crust,0.0,89.98959,-90.0,07/19/6745 +-2.2339,43.48727,1006,11,21,4,40,21,5.25,5.0,fr,15963,20,684213,1,1,Active Shallow Crust,128.8849,89.9869,0.0,11/21/1006 +-3.24533,42.94982,8971,10,5,1,28,2,3.55,5.0,fr,15964,179,684480,1,1,Active Shallow Crust,0.0,89.98893,0.0,10/05/8971 +-3.24533,42.94982,982,9,10,17,37,5,3.55,15.0,fr,15965,19,684481,1,1,Active Shallow Crust,0.0,89.98893,0.0,09/10/0982 +-3.24533,42.94982,8632,7,16,3,24,50,3.55,15.0,fr,15966,172,684490,1,1,Active Shallow Crust,128.8967,89.99446,0.0,07/16/8632 +-3.24533,42.94982,2077,12,24,18,53,0,3.65,15.0,fr,15967,41,684493,1,2,Active Shallow Crust,0.0,89.99014,0.0,12/24/2077 +-3.24533,42.94982,1771,5,25,22,49,58,3.65,15.0,fr,15968,35,684493,1,2,Active Shallow Crust,0.0,89.99014,0.0,05/25/1771 +-3.24533,42.94982,8728,4,20,20,11,2,4.15,27.5,fr,15969,174,684554,1,1,Active Shallow Crust,0.0,89.99075,0.0,04/20/8728 +-3.24533,42.94982,3341,12,26,20,27,13,4.25,5.0,fr,15970,66,684564,1,1,Active Shallow Crust,0.0,89.99011,0.0,12/26/3341 +-3.24533,42.94982,753,4,1,7,22,16,4.25,5.0,fr,15971,15,684570,1,1,Active Shallow Crust,0.0,89.99,-90.0,04/01/0753 +-3.24533,42.94982,3230,10,21,0,43,32,4.25,15.0,fr,15972,64,684571,1,1,Active Shallow Crust,0.0,89.99,-90.0,10/21/3230 +-3.24533,42.94982,4494,8,4,21,29,46,4.25,5.0,fr,15973,89,684573,1,1,Active Shallow Crust,128.8946,89.98108,0.0,08/04/4494 +-3.24533,42.94982,3709,10,5,11,26,28,4.35,5.0,fr,15974,74,684576,1,1,Active Shallow Crust,0.0,89.98972,0.0,10/05/3709 +-3.24533,42.94982,2978,10,11,5,52,46,4.55,5.0,fr,15975,59,684600,1,1,Active Shallow Crust,0.0,89.98949,0.0,10/11/2978 +-3.24533,42.94982,2764,10,14,19,23,59,4.65,5.0,fr,15976,55,684612,1,1,Active Shallow Crust,0.0,89.9896,0.0,10/14/2764 +-3.24533,42.94982,5500,10,31,6,28,59,5.25,5.0,fr,15977,109,684684,1,1,Active Shallow Crust,0.0,89.99009,0.0,10/31/5500 +1.38846,47.45681,2219,10,25,10,15,37,3.55,15.0,fr,15978,44,684961,1,1,Active Shallow Crust,0.0,89.98977,0.0,10/25/2219 +1.38846,47.45681,2675,1,24,8,3,9,3.65,5.0,fr,15979,53,684972,1,2,Active Shallow Crust,0.0,89.98936,0.0,01/24/2675 +1.38846,47.45681,5172,5,27,7,50,38,3.65,5.0,fr,15980,103,684972,1,2,Active Shallow Crust,0.0,89.98936,0.0,05/27/5172 +1.38846,47.45681,9032,2,11,16,22,38,3.75,15.0,fr,15981,180,684985,1,1,Active Shallow Crust,0.0,89.99052,0.0,02/11/9032 +1.38846,47.45681,8066,11,27,10,35,41,3.75,27.5,fr,15982,161,684992,1,1,Active Shallow Crust,0.0,89.99041,-90.0,11/27/8066 +1.38846,47.45681,6307,9,24,15,46,35,4.05,5.0,fr,15983,126,685029,1,1,Active Shallow Crust,128.8904,89.99377,0.0,09/24/6307 +1.38846,47.45681,4329,7,8,8,19,20,4.15,27.5,fr,15984,86,685034,1,1,Active Shallow Crust,0.0,89.98975,0.0,07/08/4329 +1.388459,47.45681,5803,10,1,11,0,32,6.05,5.357596,fr,15985,116,685269,1,1,Active Shallow Crust,128.8589,89.98897,0.0,10/01/5803 +3.81222,41.1181,604,8,28,3,22,55,3.75,15.0,fr,15986,12,685474,1,1,Active Shallow Crust,128.8971,89.9674,0.0,08/28/0604 +3.81222,41.1181,2829,6,7,2,59,51,3.85,15.0,fr,15987,56,685480,1,1,Active Shallow Crust,240.0102,57.99764,0.0,06/07/2829 +3.81222,41.1181,1429,9,13,11,23,48,3.95,27.5,fr,15988,28,685490,1,1,Active Shallow Crust,0.0,89.99041,0.0,09/13/1429 +3.81222,41.1181,262,6,20,17,55,31,4.05,15.0,fr,15989,5,685501,1,1,Active Shallow Crust,0.0,89.98932,0.0,06/20/0262 +3.81222,41.1181,1743,7,6,3,8,12,4.85,5.0,fr,15990,34,685602,1,1,Active Shallow Crust,0.0,89.98968,-90.0,07/06/1743 +3.05674,49.88794,11,7,4,15,11,24,3.75,5.0,fr,15991,0,685944,1,1,Active Shallow Crust,0.0,89.98968,0.0,07/04/0011 +3.05674,49.88794,8244,9,12,6,32,1,3.75,5.0,fr,15992,164,685947,1,1,Active Shallow Crust,240.0089,58.01736,0.0,09/12/8244 +3.05674,49.88794,470,11,5,9,2,35,4.55,5.0,fr,15993,9,686040,1,1,Active Shallow Crust,0.0,89.98972,0.0,11/05/0470 +3.05674,49.88794,5060,8,5,0,16,12,5.35,15.0,fr,15994,101,686140,1,1,Active Shallow Crust,240.0277,57.99837,0.0,08/05/5060 +3.05674,49.88794,8027,1,17,13,1,1,5.65,15.0,fr,15995,160,686173,1,1,Active Shallow Crust,0.0,89.98986,0.0,01/17/8027 +4.69367,41.37637,3223,4,6,17,31,1,3.55,15.0,fr,15996,64,686401,1,2,Active Shallow Crust,0.0,89.99243,0.0,04/06/3223 +4.69367,41.37637,4861,7,10,0,46,28,3.55,15.0,fr,15997,97,686401,1,2,Active Shallow Crust,0.0,89.99243,0.0,07/10/4861 +4.69367,41.37637,900,11,16,21,2,8,3.65,15.0,fr,15998,17,686413,1,1,Active Shallow Crust,0.0,89.99326,0.0,11/16/0900 +4.69367,41.37637,8426,8,24,6,4,29,3.75,15.0,fr,15999,168,686425,1,1,Active Shallow Crust,0.0,89.98798,0.0,08/24/8426 +4.69367,41.37637,8293,7,29,23,22,33,4.15,27.5,fr,16000,165,686477,1,1,Active Shallow Crust,240.0079,57.99697,0.0,07/29/8293 +4.69367,41.37637,4926,12,21,17,46,35,4.45,5.0,fr,16001,98,686508,1,1,Active Shallow Crust,0.0,89.98926,0.0,12/21/4926 +1.02439,47.16908,1187,3,14,16,54,38,3.65,5.0,fr,16002,23,686895,1,1,Active Shallow Crust,240.0013,58.01265,0.0,03/14/1187 +1.02439,47.16908,8839,4,10,10,56,25,3.65,5.0,fr,16003,176,686898,1,1,Active Shallow Crust,0.0,89.99073,-90.0,04/10/8839 +1.02439,47.16908,669,12,29,1,56,49,3.65,27.5,fr,16004,13,686900,1,1,Active Shallow Crust,0.0,89.99073,-90.0,12/29/0669 +1.02439,47.16908,7886,7,28,7,8,32,3.85,5.0,fr,16005,157,686916,1,1,Active Shallow Crust,0.0,89.9903,0.0,07/28/7886 +1.02439,47.16908,1187,8,22,4,53,55,4.15,15.0,fr,16006,23,686962,1,1,Active Shallow Crust,128.8975,89.99356,0.0,08/22/1187 +1.02439,47.16908,8629,7,21,21,20,54,4.25,27.5,fr,16007,172,686966,1,1,Active Shallow Crust,0.0,89.99004,0.0,07/21/8629 +1.02439,47.16908,9598,6,17,3,13,31,4.55,5.0,fr,16008,191,687000,1,1,Active Shallow Crust,0.0,89.99024,0.0,06/17/9598 +1.02439,47.16908,9434,9,5,2,38,51,4.75,15.0,fr,16009,188,687031,1,1,Active Shallow Crust,0.0,89.98998,-90.0,09/05/9434 +1.02439,47.16908,8336,9,2,10,47,27,5.15,27.5,fr,16010,166,687074,1,1,Active Shallow Crust,0.0,89.98994,0.0,09/02/8336 +2.14148,47.36507,6162,11,4,20,20,19,3.65,5.0,fr,16011,123,687372,1,1,Active Shallow Crust,0.0,89.99087,0.0,11/04/6162 +2.14148,47.36507,1701,7,18,22,27,11,3.65,5.0,fr,16012,34,687378,1,2,Active Shallow Crust,0.0,89.99076,-90.0,07/18/1701 +2.14148,47.36507,1100,8,8,14,13,15,3.65,5.0,fr,16013,21,687378,1,2,Active Shallow Crust,0.0,89.99076,-90.0,08/08/1100 +2.14148,47.36507,5188,6,14,22,34,45,3.75,5.0,fr,16014,103,687384,1,1,Active Shallow Crust,0.0,89.98915,0.0,06/14/5188 +2.14148,47.36507,4744,1,13,6,38,55,4.35,5.0,fr,16015,94,687465,1,1,Active Shallow Crust,128.8978,89.98282,0.0,01/13/4744 +1.92475,52.80989,5764,1,29,23,39,1,3.55,15.0,fr,16016,115,687841,1,1,Active Shallow Crust,0.0,89.98933,0.0,01/29/5764 +1.92475,52.80989,7537,6,7,2,46,27,3.65,27.5,fr,16017,150,687854,1,1,Active Shallow Crust,0.0,89.99049,0.0,06/07/7537 +1.00116,46.76723,3709,2,9,16,1,15,3.55,5.0,fr,16018,74,688320,1,3,Active Shallow Crust,0.0,89.98964,0.0,02/09/3709 +1.00116,46.76723,8158,8,4,19,22,28,3.55,5.0,fr,16019,163,688320,1,3,Active Shallow Crust,0.0,89.98964,0.0,08/04/8158 +1.00116,46.76723,4825,1,5,16,35,10,3.55,5.0,fr,16020,96,688320,1,3,Active Shallow Crust,0.0,89.98964,0.0,01/05/4825 +1.00116,46.76723,215,2,15,19,35,26,3.55,15.0,fr,16021,4,688321,1,1,Active Shallow Crust,0.0,89.98964,0.0,02/15/0215 +1.00116,46.76723,3242,8,9,10,10,44,3.55,5.0,fr,16022,64,688323,1,1,Active Shallow Crust,240.0124,57.9982,0.0,08/09/3242 +1.00116,46.76723,6112,12,25,17,0,1,3.65,15.0,fr,16023,122,688333,1,2,Active Shallow Crust,0.0,89.99077,0.0,12/25/6112 +1.00116,46.76723,9569,6,18,23,12,44,3.65,15.0,fr,16024,191,688333,1,2,Active Shallow Crust,0.0,89.99077,0.0,06/18/9569 +1.00116,46.76723,1078,12,28,5,35,56,3.75,5.0,fr,16025,21,688344,1,1,Active Shallow Crust,0.0,89.9904,0.0,12/28/1078 +1.00116,46.76723,223,10,27,13,22,38,3.75,15.0,fr,16026,4,688345,1,1,Active Shallow Crust,0.0,89.9904,0.0,10/27/0223 +1.00116,46.76723,8451,2,14,4,11,13,3.75,5.0,fr,16027,169,688350,1,1,Active Shallow Crust,0.0,89.99029,-90.0,02/14/8451 +1.00116,46.76723,433,2,15,14,50,45,3.75,27.5,fr,16028,8,688355,1,1,Active Shallow Crust,128.8965,89.96731,0.0,02/15/0433 +1.00116,46.76723,2042,11,1,1,5,9,3.85,5.0,fr,16029,40,688356,1,2,Active Shallow Crust,0.0,89.99022,0.0,11/01/2042 +1.00116,46.76723,458,7,19,18,13,24,3.85,5.0,fr,16030,9,688356,1,2,Active Shallow Crust,0.0,89.99022,0.0,07/19/0458 +1.00116,46.76723,3622,5,26,14,21,18,3.85,5.0,fr,16031,72,688359,1,1,Active Shallow Crust,240.011,57.99788,0.0,05/26/3622 +1.00116,46.76723,8035,5,1,8,59,19,3.95,5.0,fr,16032,160,688371,1,1,Active Shallow Crust,240.0198,58.0051,0.0,05/01/8035 +1.00116,46.76723,6945,8,6,4,53,30,4.05,5.0,fr,16033,138,688380,1,1,Active Shallow Crust,0.0,89.99029,0.0,08/06/6945 +1.00116,46.76723,2414,12,8,1,36,31,4.05,15.0,fr,16034,48,688381,1,1,Active Shallow Crust,0.0,89.99029,0.0,12/08/2414 +1.00116,46.76723,8262,12,4,0,30,21,4.15,5.0,fr,16035,165,688395,1,1,Active Shallow Crust,240.0085,57.99734,0.0,12/04/8262 +1.00116,46.76723,1236,7,16,20,23,13,4.45,5.0,fr,16036,24,688431,1,1,Active Shallow Crust,240.0054,57.99473,0.0,07/16/1236 +1.00116,46.76723,5915,12,11,2,5,16,4.85,15.0,fr,16037,118,688477,1,1,Active Shallow Crust,0.0,89.98994,0.0,12/11/5915 +1.27976,49.0369,6658,9,4,4,3,58,3.55,5.0,fr,16038,133,688800,1,1,Active Shallow Crust,0.0,89.99008,0.0,09/04/6658 +1.27976,49.0369,3838,4,11,23,51,40,3.65,5.0,fr,16039,76,688812,1,1,Active Shallow Crust,0.0,89.98969,0.0,04/11/3838 +1.27976,49.0369,3020,10,31,19,39,49,3.75,5.0,fr,16040,60,688827,1,1,Active Shallow Crust,240.0086,58.01757,0.0,10/31/3020 +1.27976,49.0369,4628,4,10,15,38,41,3.85,15.0,fr,16041,92,688837,1,1,Active Shallow Crust,0.0,89.98947,0.0,04/10/4628 +1.27976,49.0369,3123,2,17,5,33,43,3.95,5.0,fr,16042,62,688848,1,1,Active Shallow Crust,0.0,89.98957,0.0,02/17/3123 +1.27976,49.0369,8432,3,9,7,20,33,4.05,5.0,fr,16043,168,688866,1,1,Active Shallow Crust,0.0,89.98965,-90.0,03/09/8432 +1.27976,49.0369,6192,1,10,2,28,9,4.35,15.0,fr,16044,123,688900,1,1,Active Shallow Crust,240.009,57.99603,0.0,01/10/6192 +1.27976,49.0369,1946,1,8,11,33,21,4.65,5.0,fr,16045,38,688932,1,1,Active Shallow Crust,0.0,89.99022,0.0,01/08/1946 +3.51435,48.66582,3687,7,30,23,25,16,3.85,27.5,fr,16046,73,689318,1,1,Active Shallow Crust,0.0,89.99057,0.0,07/30/3687 +3.51435,48.66582,6029,5,14,0,40,34,3.85,15.0,fr,16047,120,689320,1,1,Active Shallow Crust,240.0109,57.99785,0.0,05/14/6029 +3.51435,48.66582,1875,3,13,19,5,56,3.95,15.0,fr,16048,37,689335,1,1,Active Shallow Crust,0.0,89.98937,-90.0,03/13/1875 +3.51435,48.66582,9717,7,3,21,26,56,4.05,5.0,fr,16049,194,689343,1,1,Active Shallow Crust,240.0062,58.00605,0.0,07/03/9717 +3.51435,48.66582,2761,2,14,13,37,27,4.75,27.5,fr,16050,55,689426,1,1,Active Shallow Crust,0.0,89.98996,0.0,02/14/2761 +5.7107,51.69339,8594,3,14,10,12,56,3.65,5.0,fr,16051,171,689772,1,1,Active Shallow Crust,0.0,89.98886,0.0,03/14/8594 +5.7107,51.69339,3849,1,3,19,23,33,3.65,15.0,fr,16052,76,689773,1,1,Active Shallow Crust,0.0,89.98886,0.0,01/03/3849 +5.7107,51.69339,1693,8,29,6,17,21,3.75,27.5,fr,16053,33,689789,1,1,Active Shallow Crust,240.0092,58.01762,0.0,08/29/1693 +5.7107,51.69339,8677,2,16,3,11,7,3.95,5.0,fr,16054,173,689814,1,1,Active Shallow Crust,0.0,89.98803,-90.0,02/16/8677 +5.7107,51.69339,6169,7,10,5,0,45,4.25,5.0,fr,16055,123,689850,1,1,Active Shallow Crust,0.0,89.9887,-90.0,07/10/6169 +5.7107,51.69339,1219,11,4,13,37,9,4.45,5.0,fr,16056,24,689871,1,1,Active Shallow Crust,240.0069,57.99464,0.0,11/04/1219 +5.7107,51.69339,1247,9,20,9,28,17,5.05,15.0,fr,16057,24,689941,1,1,Active Shallow Crust,0.0,89.98999,0.0,09/20/1247 +5.01707,41.28417,4343,6,18,3,13,39,3.55,15.0,fr,16058,86,690247,1,1,Active Shallow Crust,0.0,89.99233,-90.0,06/18/4343 +5.01707,41.28417,5205,2,4,12,57,34,3.95,5.0,fr,16059,104,690288,1,2,Active Shallow Crust,0.0,89.99044,0.0,02/04/5205 +5.01707,41.28417,5695,2,2,21,53,21,3.95,5.0,fr,16060,113,690288,1,2,Active Shallow Crust,0.0,89.99044,0.0,02/02/5695 +5.01707,41.28417,1678,9,11,7,8,35,4.75,15.0,fr,16061,33,690385,1,1,Active Shallow Crust,0.0,89.99048,0.0,09/11/1678 +-2.70673,43.2939,6145,10,15,17,36,33,3.65,5.0,fr,16062,122,690732,1,1,Active Shallow Crust,0.0,89.99019,0.0,10/15/6145 +-2.70673,43.2939,4801,8,11,4,35,43,3.65,5.0,fr,16063,96,690741,1,1,Active Shallow Crust,128.9016,89.96346,0.0,08/11/4801 +-2.70673,43.2939,8446,9,23,11,42,36,3.75,27.5,fr,16064,168,690746,1,1,Active Shallow Crust,0.0,89.99126,0.0,09/23/8446 +-2.70673,43.2939,4034,4,21,22,15,25,3.75,5.0,fr,16065,80,690753,1,1,Active Shallow Crust,128.8969,89.96744,0.0,04/21/4034 +-2.70673,43.2939,5133,4,23,4,58,21,3.75,27.5,fr,16066,102,690755,1,1,Active Shallow Crust,128.8969,89.96744,0.0,04/23/5133 +-2.70673,43.2939,3263,2,6,6,37,38,3.85,5.0,fr,16067,65,690756,1,2,Active Shallow Crust,0.0,89.98961,0.0,02/06/3263 +-2.70673,43.2939,6315,10,18,18,11,25,3.85,5.0,fr,16068,126,690756,1,2,Active Shallow Crust,0.0,89.98961,0.0,10/18/6315 +-2.70673,43.2939,2717,1,30,13,5,56,4.45,5.0,fr,16069,54,690828,1,1,Active Shallow Crust,0.0,89.98959,0.0,01/30/2717 +1.46939,42.23274,1432,10,28,10,10,53,3.55,15.0,fr,16070,28,691201,1,1,Active Shallow Crust,0.0,89.99067,0.0,10/28/1432 +1.46939,42.23274,6440,4,18,19,20,20,3.55,5.0,fr,16071,128,691203,1,1,Active Shallow Crust,240.0117,57.9982,0.0,04/18/6440 +1.46939,42.23274,7122,10,1,20,18,23,3.55,27.5,fr,16072,142,691208,1,1,Active Shallow Crust,0.0,89.99056,-90.0,10/01/7122 +1.46939,42.23274,3148,10,13,10,34,49,3.65,5.0,fr,16073,62,691212,1,1,Active Shallow Crust,0.0,89.99002,0.0,10/13/3148 +1.46939,42.23274,2171,11,1,2,5,39,3.65,5.0,fr,16074,43,691215,1,2,Active Shallow Crust,240.0004,58.0128,0.0,11/01/2171 +1.46939,42.23274,9891,8,13,12,21,39,3.65,5.0,fr,16075,197,691215,1,2,Active Shallow Crust,240.0004,58.0128,0.0,08/13/9891 +1.46939,42.23274,6795,2,21,5,54,44,3.65,15.0,fr,16076,135,691222,1,1,Active Shallow Crust,128.9005,89.96358,0.0,02/21/6795 +1.46939,42.23274,8183,12,5,15,23,51,3.75,27.5,fr,16077,163,691235,1,1,Active Shallow Crust,128.8969,89.96728,0.0,12/05/8183 +1.46939,42.23274,5408,11,23,22,57,39,3.85,5.0,fr,16078,108,691236,1,1,Active Shallow Crust,0.0,89.98943,0.0,11/23/5408 +1.46939,42.23274,1828,8,17,5,28,29,3.85,5.0,fr,16079,36,691242,1,1,Active Shallow Crust,0.0,89.99065,-90.0,08/17/1828 +1.46939,42.23274,5414,1,16,5,22,51,3.95,5.0,fr,16080,108,691248,1,3,Active Shallow Crust,0.0,89.99058,0.0,01/16/5414 +1.46939,42.23274,1089,1,21,20,27,15,3.95,5.0,fr,16081,21,691248,1,3,Active Shallow Crust,0.0,89.99058,0.0,01/21/1089 +1.46939,42.23274,5482,4,18,5,18,53,3.95,5.0,fr,16082,109,691248,1,3,Active Shallow Crust,0.0,89.99058,0.0,04/18/5482 +1.46939,42.23274,7563,7,10,21,48,41,3.95,15.0,fr,16083,151,691249,1,2,Active Shallow Crust,0.0,89.99058,0.0,07/10/7563 +1.46939,42.23274,2733,9,17,12,44,55,3.95,15.0,fr,16084,54,691249,1,2,Active Shallow Crust,0.0,89.99058,0.0,09/17/2733 +1.46939,42.23274,2236,5,7,7,5,54,4.05,5.0,fr,16085,44,691269,1,1,Active Shallow Crust,128.8908,89.99371,0.0,05/07/2236 +1.46939,42.23274,89,2,15,16,20,29,4.15,15.0,fr,16086,1,691276,1,1,Active Shallow Crust,240.0077,57.99701,0.0,02/15/0089 +1.46939,42.23274,5068,12,19,1,24,40,4.35,5.0,fr,16087,101,691296,1,1,Active Shallow Crust,0.0,89.99034,0.0,12/19/5068 +1.46939,42.23274,841,7,27,5,4,37,4.75,15.0,fr,16088,16,691345,1,1,Active Shallow Crust,0.0,89.99015,0.0,07/27/0841 +1.46939,42.23274,7573,11,9,5,39,6,5.45,5.0,fr,16089,151,691428,1,1,Active Shallow Crust,0.0,89.98994,0.0,11/09/7573 +5.51408,50.19692,8253,2,21,6,19,34,3.55,5.0,fr,16090,165,691680,1,1,Active Shallow Crust,0.0,89.98709,0.0,02/21/8253 +5.51408,50.19692,6936,9,21,0,50,38,3.65,15.0,fr,16091,138,691693,1,1,Active Shallow Crust,0.0,89.98849,0.0,09/21/6936 +5.51408,50.19692,8823,9,5,21,43,24,3.75,5.0,fr,16092,176,691710,1,1,Active Shallow Crust,0.0,89.98962,-90.0,09/05/8823 +5.51408,50.19692,7235,3,25,7,22,5,3.75,5.0,fr,16093,144,691713,1,1,Active Shallow Crust,128.8964,89.96755,0.0,03/25/7235 +5.51408,50.19692,9988,8,29,2,2,53,3.85,27.5,fr,16094,199,691721,1,1,Active Shallow Crust,240.0112,57.99854,0.0,08/29/9988 +5.51408,50.19692,8379,11,10,3,38,39,4.15,27.5,fr,16095,167,691754,1,1,Active Shallow Crust,0.0,89.9903,0.0,11/10/8379 +5.51408,50.19692,5972,4,13,16,39,13,4.25,5.0,fr,16096,119,691764,1,1,Active Shallow Crust,0.0,89.99135,0.0,04/13/5972 +5.51408,50.19692,447,3,1,2,11,10,4.55,5.0,fr,16097,8,691803,1,1,Active Shallow Crust,240.0105,57.9975,0.0,03/01/0447 +5.51408,50.19692,4959,1,21,22,35,30,4.95,15.0,fr,16098,99,691858,1,1,Active Shallow Crust,128.8884,89.98969,0.0,01/21/4959 +3.0781,46.94714,9765,5,26,1,18,57,4.25,27.5,fr,16099,195,692246,1,1,Active Shallow Crust,0.0,89.98923,0.0,05/26/9765 +1.3276,51.89945,3172,11,6,13,1,29,3.55,5.0,fr,16100,63,692640,1,2,Active Shallow Crust,0.0,89.99067,0.0,11/06/3172 +1.3276,51.89945,492,4,25,5,20,29,3.55,5.0,fr,16101,9,692640,1,2,Active Shallow Crust,0.0,89.99067,0.0,04/25/0492 +1.3276,51.89945,2040,1,3,22,28,21,3.65,5.0,fr,16102,40,692652,1,1,Active Shallow Crust,0.0,89.9903,0.0,01/03/2040 +1.3276,51.89945,1552,10,17,17,13,9,3.75,27.5,fr,16103,31,692666,1,1,Active Shallow Crust,0.0,89.99011,0.0,10/17/1552 +1.3276,51.89945,8431,8,12,23,18,37,3.85,15.0,fr,16104,168,692686,1,1,Active Shallow Crust,128.895,89.99394,0.0,08/12/8431 +6.21959,45.96463,3262,8,27,1,6,1,3.55,5.0,fr,16105,65,693120,1,2,Active Shallow Crust,0.0,89.99299,0.0,08/27/3262 +6.21959,45.96463,1190,8,11,11,24,33,3.55,5.0,fr,16106,23,693120,1,2,Active Shallow Crust,0.0,89.99299,0.0,08/11/1190 +6.21959,45.96463,9971,3,8,4,49,33,3.55,15.0,fr,16107,199,693124,1,1,Active Shallow Crust,240.0111,57.99914,0.0,03/08/9971 +6.21959,45.96463,2990,6,25,9,36,16,3.65,5.0,fr,16108,59,693132,1,2,Active Shallow Crust,0.0,89.9875,0.0,06/25/2990 +6.21959,45.96463,9578,12,12,14,36,59,3.65,5.0,fr,16109,191,693132,1,2,Active Shallow Crust,0.0,89.9875,0.0,12/12/9578 +6.21959,45.96463,7614,12,11,12,6,31,3.65,15.0,fr,16110,152,693133,1,1,Active Shallow Crust,0.0,89.9875,0.0,12/11/7614 +6.21959,45.96463,9466,7,22,9,22,0,3.65,27.5,fr,16111,189,693134,1,1,Active Shallow Crust,0.0,89.9875,0.0,07/22/9466 +6.21959,45.96463,2258,9,5,21,4,43,3.65,5.0,fr,16112,45,693135,1,1,Active Shallow Crust,240.0007,58.01312,0.0,09/05/2258 +6.21959,45.96463,7058,5,28,16,20,57,3.65,5.0,fr,16113,141,693138,1,2,Active Shallow Crust,0.0,89.98736,-90.0,05/28/7058 +6.21959,45.96463,6740,9,8,12,23,44,3.65,5.0,fr,16114,134,693138,1,2,Active Shallow Crust,0.0,89.98736,-90.0,09/08/6740 +6.21959,45.96463,7298,6,12,6,47,50,3.75,5.0,fr,16115,145,693144,1,3,Active Shallow Crust,0.0,89.98886,0.0,06/12/7298 +6.21959,45.96463,5187,10,22,21,57,58,3.75,5.0,fr,16116,103,693144,1,3,Active Shallow Crust,0.0,89.98886,0.0,10/22/5187 +6.21959,45.96463,4464,10,6,3,3,56,3.75,5.0,fr,16117,89,693144,1,3,Active Shallow Crust,0.0,89.98886,0.0,10/06/4464 +6.21959,45.96463,5105,10,9,1,46,31,3.75,15.0,fr,16118,102,693145,1,1,Active Shallow Crust,0.0,89.98886,0.0,10/09/5105 +6.21959,45.96463,6245,4,25,21,10,37,3.75,27.5,fr,16119,124,693146,1,1,Active Shallow Crust,0.0,89.98886,0.0,04/25/6245 +6.21959,45.96463,1771,1,17,23,11,59,3.75,5.0,fr,16120,35,693147,1,2,Active Shallow Crust,240.0075,58.01777,0.0,01/17/1771 +6.21959,45.96463,4603,1,28,21,23,43,3.75,5.0,fr,16121,92,693147,1,2,Active Shallow Crust,240.0075,58.01777,0.0,01/28/4603 +6.21959,45.96463,2859,10,2,4,38,3,3.85,5.0,fr,16122,57,693156,1,1,Active Shallow Crust,0.0,89.99007,0.0,10/02/2859 +6.21959,45.96463,4475,5,1,9,42,59,3.85,15.0,fr,16123,89,693157,1,1,Active Shallow Crust,0.0,89.99007,0.0,05/01/4475 +6.21959,45.96463,6324,3,18,22,0,39,3.85,27.5,fr,16124,126,693158,1,1,Active Shallow Crust,0.0,89.99007,0.0,03/18/6324 +6.21959,45.96463,9625,5,3,18,27,17,3.85,15.0,fr,16125,192,693160,1,1,Active Shallow Crust,240.0102,57.99833,0.0,05/03/9625 +6.21959,45.96463,2123,5,29,8,1,12,3.85,5.0,fr,16126,42,693162,1,2,Active Shallow Crust,0.0,89.98996,-90.0,05/29/2123 +6.21959,45.96463,6708,1,14,21,21,58,3.85,5.0,fr,16127,134,693162,1,2,Active Shallow Crust,0.0,89.98996,-90.0,01/14/6708 +6.21959,45.96463,7888,8,13,1,22,2,3.85,15.0,fr,16128,157,693163,1,1,Active Shallow Crust,0.0,89.98996,-90.0,08/13/7888 +6.21959,45.96463,9650,5,2,20,48,56,3.85,15.0,fr,16129,192,693166,1,1,Active Shallow Crust,128.8967,89.99255,0.0,05/02/9650 +6.21959,45.96463,4812,5,22,21,40,36,3.95,5.0,fr,16130,96,693171,1,2,Active Shallow Crust,240.0201,58.00499,0.0,05/22/4812 +6.21959,45.96463,2654,9,4,8,44,45,3.95,5.0,fr,16131,53,693171,1,2,Active Shallow Crust,240.0201,58.00499,0.0,09/04/2654 +6.21959,45.96463,1545,8,15,12,52,28,4.05,5.0,fr,16132,30,693180,1,2,Active Shallow Crust,0.0,89.98817,0.0,08/15/1545 +6.21959,45.96463,3068,1,5,0,38,56,4.05,5.0,fr,16133,61,693180,1,2,Active Shallow Crust,0.0,89.98817,0.0,01/05/3068 +6.21959,45.96463,2493,3,10,14,50,7,4.05,15.0,fr,16134,49,693181,1,1,Active Shallow Crust,0.0,89.98817,0.0,03/10/2493 +6.21959,45.96463,2100,12,9,12,28,31,4.15,5.0,fr,16135,41,693192,1,1,Active Shallow Crust,0.0,89.98946,0.0,12/09/2100 +6.21959,45.96463,4851,7,18,13,23,46,4.25,5.0,fr,16136,97,693204,1,1,Active Shallow Crust,0.0,89.99061,0.0,07/18/4851 +6.21959,45.96463,4644,1,3,10,22,29,4.25,27.5,fr,16137,92,693209,1,1,Active Shallow Crust,240.0078,57.99392,0.0,01/03/4644 +6.21959,45.96463,6697,1,14,1,35,44,4.45,5.0,fr,16138,133,693228,1,1,Active Shallow Crust,0.0,89.99005,0.0,01/14/6697 +6.21959,45.96463,8456,5,10,0,48,21,4.45,15.0,fr,16139,169,693232,1,1,Active Shallow Crust,240.005,57.99477,0.0,05/10/8456 +6.21959,45.96463,8472,9,17,10,59,40,4.65,5.0,fr,16140,169,693252,1,2,Active Shallow Crust,0.0,89.99012,0.0,09/17/8472 +6.21959,45.96463,3536,6,15,20,7,3,4.65,5.0,fr,16141,70,693252,1,2,Active Shallow Crust,0.0,89.99012,0.0,06/15/3536 +6.21959,45.96463,6026,10,18,21,50,24,4.75,15.0,fr,16142,120,693268,1,1,Active Shallow Crust,240.0073,58.00451,0.0,10/18/6026 +6.21959,45.96463,9873,2,17,15,58,15,4.75,5.0,fr,16143,197,693270,1,1,Active Shallow Crust,0.0,89.98931,-90.0,02/17/9873 +-1.51733,42.18419,5029,11,30,4,44,23,3.55,5.0,fr,16144,100,693600,1,1,Active Shallow Crust,0.0,89.99066,0.0,11/30/5029 +-1.51733,42.18419,4481,9,25,18,0,45,4.05,15.0,fr,16145,89,693661,1,1,Active Shallow Crust,0.0,89.98949,0.0,09/25/4481 +-1.51733,42.18419,2049,6,3,21,2,28,4.65,5.0,fr,16146,40,693732,1,1,Active Shallow Crust,0.0,89.99,0.0,06/03/2049 +-0.20754,44.10704,9223,5,16,9,49,45,3.55,15.0,fr,16147,184,694081,1,1,Active Shallow Crust,0.0,89.99004,0.0,05/16/9223 +-0.20754,44.10704,4170,5,19,19,48,12,3.85,5.0,fr,16148,83,694125,1,1,Active Shallow Crust,128.8959,89.99375,0.0,05/19/4170 +-0.20754,44.10704,6801,12,13,14,18,39,4.45,5.0,fr,16149,136,694197,1,1,Active Shallow Crust,128.8927,89.9937,0.0,12/13/6801 +-1.60798,44.79387,782,3,23,1,5,59,3.55,5.0,fr,16150,15,694560,1,1,Active Shallow Crust,0.0,89.98927,0.0,03/23/0782 +-1.60798,44.79387,6216,6,17,2,50,26,3.75,5.0,fr,16151,124,694593,1,1,Active Shallow Crust,128.8969,89.96733,0.0,06/17/6216 +-1.60798,44.79387,8956,4,25,13,3,39,4.45,15.0,fr,16152,179,694669,1,1,Active Shallow Crust,0.0,89.98985,0.0,04/25/8956 +7.79103,47.44468,4479,12,23,22,21,34,3.55,5.0,fr,16153,89,695040,1,7,Active Shallow Crust,0.0,89.99318,0.0,12/23/4479 +7.79103,47.44468,8181,10,16,16,36,28,3.55,5.0,fr,16154,163,695040,1,7,Active Shallow Crust,0.0,89.99318,0.0,10/16/8181 +7.79103,47.44468,7505,2,9,6,55,1,3.55,5.0,fr,16155,150,695040,1,7,Active Shallow Crust,0.0,89.99318,0.0,02/09/7505 +7.79103,47.44468,9546,3,24,13,29,34,3.55,5.0,fr,16156,190,695040,1,7,Active Shallow Crust,0.0,89.99318,0.0,03/24/9546 +7.79103,47.44468,6271,9,21,9,57,42,3.55,5.0,fr,16157,125,695040,1,7,Active Shallow Crust,0.0,89.99318,0.0,09/21/6271 +7.79103,47.44468,3992,11,12,15,13,9,3.55,5.0,fr,16158,79,695040,1,7,Active Shallow Crust,0.0,89.99318,0.0,11/12/3992 +7.79103,47.44468,8115,11,3,13,43,46,3.55,5.0,fr,16159,162,695040,1,7,Active Shallow Crust,0.0,89.99318,0.0,11/03/8115 +7.79103,47.44468,9416,9,27,13,20,15,3.55,15.0,fr,16160,188,695041,1,2,Active Shallow Crust,0.0,89.99318,0.0,09/27/9416 +7.79103,47.44468,5583,6,9,22,0,4,3.55,15.0,fr,16161,111,695041,1,2,Active Shallow Crust,0.0,89.99318,0.0,06/09/5583 +7.79103,47.44468,1449,10,16,9,1,31,3.55,27.5,fr,16162,28,695042,1,2,Active Shallow Crust,0.0,89.99318,0.0,10/16/1449 +7.79103,47.44468,9994,10,5,14,18,10,3.55,27.5,fr,16163,199,695042,1,2,Active Shallow Crust,0.0,89.99318,0.0,10/05/9994 +7.79103,47.44468,6672,9,25,21,1,37,3.55,5.0,fr,16164,133,695043,1,1,Active Shallow Crust,240.0119,57.99828,0.0,09/25/6672 +7.79103,47.44468,385,4,19,17,29,35,3.55,15.0,fr,16165,7,695044,1,1,Active Shallow Crust,240.0119,57.99828,0.0,04/19/0385 +7.79103,47.44468,9227,11,22,0,6,31,3.55,27.5,fr,16166,184,695045,1,1,Active Shallow Crust,240.0119,57.99818,0.0,11/22/9227 +7.79103,47.44468,3094,5,13,2,24,33,3.55,15.0,fr,16167,61,695047,1,2,Active Shallow Crust,0.0,89.9931,-90.0,05/13/3094 +7.79103,47.44468,5811,10,2,8,2,19,3.55,15.0,fr,16168,116,695047,1,2,Active Shallow Crust,0.0,89.9931,-90.0,10/02/5811 +7.79103,47.44468,5661,6,19,9,7,29,3.55,27.5,fr,16169,113,695048,1,1,Active Shallow Crust,0.0,89.9931,-90.0,06/19/5661 +7.79103,47.44468,6802,9,18,4,57,21,3.55,5.0,fr,16170,136,695049,1,1,Active Shallow Crust,128.8969,89.99318,0.0,09/18/6802 +7.79103,47.44468,4268,5,12,4,59,49,3.55,15.0,fr,16171,85,695050,1,1,Active Shallow Crust,128.8969,89.99318,0.0,05/12/4268 +7.79103,47.44468,930,8,18,14,57,26,3.65,5.0,fr,16172,18,695052,1,4,Active Shallow Crust,0.0,89.98785,0.0,08/18/0930 +7.79103,47.44468,5484,11,5,3,50,45,3.65,5.0,fr,16173,109,695052,1,4,Active Shallow Crust,0.0,89.98785,0.0,11/05/5484 +7.79103,47.44468,7396,1,26,3,11,38,3.65,5.0,fr,16174,147,695052,1,4,Active Shallow Crust,0.0,89.98785,0.0,01/26/7396 +7.79103,47.44468,7569,5,20,22,35,14,3.65,5.0,fr,16175,151,695052,1,4,Active Shallow Crust,0.0,89.98785,0.0,05/20/7569 +7.79103,47.44468,1536,10,27,17,15,38,3.65,15.0,fr,16176,30,695053,1,2,Active Shallow Crust,0.0,89.98785,0.0,10/27/1536 +7.79103,47.44468,1296,1,20,6,3,16,3.65,15.0,fr,16177,25,695053,1,2,Active Shallow Crust,0.0,89.98785,0.0,01/20/1296 +7.79103,47.44468,6971,10,29,19,0,44,3.65,15.0,fr,16178,139,695056,1,1,Active Shallow Crust,240.0015,58.01326,0.0,10/29/6971 +7.79103,47.44468,4556,6,8,21,25,58,3.65,5.0,fr,16179,91,695058,1,2,Active Shallow Crust,0.0,89.9877,-90.0,06/08/4556 +7.79103,47.44468,4491,7,30,0,32,15,3.65,5.0,fr,16180,89,695058,1,2,Active Shallow Crust,0.0,89.9877,-90.0,07/30/4491 +7.79103,47.44468,2063,12,22,13,4,0,3.65,5.0,fr,16181,41,695061,1,1,Active Shallow Crust,128.9004,89.96354,0.0,12/22/2063 +7.79103,47.44468,1447,5,16,6,27,1,3.75,5.0,fr,16182,28,695064,1,10,Active Shallow Crust,0.0,89.98917,0.0,05/16/1447 +7.79103,47.44468,7687,1,26,18,53,17,3.75,5.0,fr,16183,153,695064,1,10,Active Shallow Crust,0.0,89.98917,0.0,01/26/7687 +7.79103,47.44468,4699,6,2,8,38,13,3.75,5.0,fr,16184,93,695064,1,10,Active Shallow Crust,0.0,89.98917,0.0,06/02/4699 +7.79103,47.44468,1882,10,13,20,37,51,3.75,5.0,fr,16185,37,695064,1,10,Active Shallow Crust,0.0,89.98917,0.0,10/13/1882 +7.79103,47.44468,8841,5,1,11,10,52,3.75,5.0,fr,16186,176,695064,1,10,Active Shallow Crust,0.0,89.98917,0.0,05/01/8841 +7.79103,47.44468,3592,6,5,21,35,59,3.75,5.0,fr,16187,71,695064,1,10,Active Shallow Crust,0.0,89.98917,0.0,06/05/3592 +7.79103,47.44468,7116,11,23,9,42,56,3.75,5.0,fr,16188,142,695064,1,10,Active Shallow Crust,0.0,89.98917,0.0,11/23/7116 +7.79103,47.44468,5661,10,21,5,13,34,3.75,5.0,fr,16189,113,695064,1,10,Active Shallow Crust,0.0,89.98917,0.0,10/21/5661 +7.79103,47.44468,5458,7,12,22,22,25,3.75,5.0,fr,16190,109,695064,1,10,Active Shallow Crust,0.0,89.98917,0.0,07/12/5458 +7.79103,47.44468,3500,7,4,2,28,41,3.75,5.0,fr,16191,69,695064,1,10,Active Shallow Crust,0.0,89.98917,0.0,07/04/3500 +7.79103,47.44468,2900,2,5,10,57,48,3.75,15.0,fr,16192,57,695065,1,3,Active Shallow Crust,0.0,89.98917,0.0,02/05/2900 +7.79103,47.44468,5887,12,11,0,4,17,3.75,15.0,fr,16193,117,695065,1,3,Active Shallow Crust,0.0,89.98917,0.0,12/11/5887 +7.79103,47.44468,8348,3,10,0,30,53,3.75,15.0,fr,16194,166,695065,1,3,Active Shallow Crust,0.0,89.98917,0.0,03/10/8348 +7.79103,47.44468,3217,12,8,6,22,58,3.75,5.0,fr,16195,64,695067,1,1,Active Shallow Crust,240.0084,58.0173,0.0,12/08/3217 +7.79103,47.44468,4093,6,21,10,58,31,3.75,15.0,fr,16196,81,695068,1,2,Active Shallow Crust,240.0084,58.0173,0.0,06/21/4093 +7.79103,47.44468,7264,3,9,9,0,45,3.75,15.0,fr,16197,145,695068,1,2,Active Shallow Crust,240.0084,58.0173,0.0,03/09/7264 +7.79103,47.44468,993,2,26,1,46,56,3.75,5.0,fr,16198,19,695070,1,1,Active Shallow Crust,0.0,89.98904,-90.0,02/26/0993 +7.79103,47.44468,9939,4,7,6,59,4,3.75,5.0,fr,16199,198,695073,1,3,Active Shallow Crust,128.8955,89.96751,0.0,04/07/9939 +7.79103,47.44468,6365,5,27,23,13,19,3.75,5.0,fr,16200,127,695073,1,3,Active Shallow Crust,128.8955,89.96751,0.0,05/27/6365 +7.79103,47.44468,941,11,29,0,2,44,3.75,5.0,fr,16201,18,695073,1,3,Active Shallow Crust,128.8955,89.96751,0.0,11/29/0941 +7.79103,47.44468,1017,10,14,4,47,49,3.85,5.0,fr,16202,20,695076,1,7,Active Shallow Crust,0.0,89.99034,0.0,10/14/1017 +7.79103,47.44468,40,9,11,17,0,46,3.85,5.0,fr,16203,0,695076,1,7,Active Shallow Crust,0.0,89.99034,0.0,09/11/0040 +7.79103,47.44468,6217,3,30,2,52,51,3.85,5.0,fr,16204,124,695076,1,7,Active Shallow Crust,0.0,89.99034,0.0,03/30/6217 +7.79103,47.44468,8205,3,18,4,23,17,3.85,5.0,fr,16205,164,695076,1,7,Active Shallow Crust,0.0,89.99034,0.0,03/18/8205 +7.79103,47.44468,5196,6,25,9,58,21,3.85,5.0,fr,16206,103,695076,1,7,Active Shallow Crust,0.0,89.99034,0.0,06/25/5196 +7.79103,47.44468,1418,5,18,4,20,4,3.85,5.0,fr,16207,28,695076,1,7,Active Shallow Crust,0.0,89.99034,0.0,05/18/1418 +7.79103,47.44468,5816,6,22,17,59,4,3.85,5.0,fr,16208,116,695076,1,7,Active Shallow Crust,0.0,89.99034,0.0,06/22/5816 +7.79103,47.44468,3614,7,30,13,59,48,3.85,15.0,fr,16209,72,695077,1,1,Active Shallow Crust,0.0,89.99034,0.0,07/30/3614 +7.79103,47.44468,7174,11,8,3,13,9,3.85,5.0,fr,16210,143,695079,1,1,Active Shallow Crust,240.0105,57.99842,0.0,11/08/7174 +7.79103,47.44468,8673,3,2,6,8,59,3.85,5.0,fr,16211,173,695085,1,2,Active Shallow Crust,128.8959,89.99276,0.0,03/02/8673 +7.79103,47.44468,1655,5,22,21,29,32,3.85,5.0,fr,16212,33,695085,1,2,Active Shallow Crust,128.8959,89.99276,0.0,05/22/1655 +7.79103,47.44468,4511,8,21,18,40,40,3.95,5.0,fr,16213,90,695088,1,2,Active Shallow Crust,0.0,89.99139,0.0,08/21/4511 +7.79103,47.44468,622,4,7,19,7,7,3.95,5.0,fr,16214,12,695088,1,2,Active Shallow Crust,0.0,89.99139,0.0,04/07/0622 +7.79103,47.44468,6506,10,26,6,59,39,3.95,15.0,fr,16215,130,695089,1,3,Active Shallow Crust,0.0,89.99139,0.0,10/26/6506 +7.79103,47.44468,6653,2,5,10,25,28,3.95,15.0,fr,16216,133,695089,1,3,Active Shallow Crust,0.0,89.99139,0.0,02/05/6653 +7.79103,47.44468,3463,4,14,16,51,10,3.95,15.0,fr,16217,69,695089,1,3,Active Shallow Crust,0.0,89.99139,0.0,04/14/3463 +7.79103,47.44468,4954,2,14,13,42,9,3.95,5.0,fr,16218,99,695091,1,1,Active Shallow Crust,240.0194,58.00485,0.0,02/14/4954 +7.79103,47.44468,660,3,31,7,53,12,3.95,15.0,fr,16219,13,695092,1,1,Active Shallow Crust,240.0194,58.00485,0.0,03/31/0660 +7.79103,47.44468,5754,4,3,23,36,9,4.05,5.0,fr,16220,115,695103,1,1,Active Shallow Crust,240.0066,58.00562,0.0,04/03/5754 +7.79103,47.44468,3640,4,6,18,3,30,4.05,27.5,fr,16221,72,695105,1,1,Active Shallow Crust,240.0066,58.00559,0.0,04/06/3640 +7.79103,47.44468,2558,10,23,21,31,42,4.05,27.5,fr,16222,51,695108,1,1,Active Shallow Crust,0.0,89.98836,-90.0,10/23/2558 +7.79103,47.44468,2464,9,17,1,53,21,4.05,5.0,fr,16223,49,695109,1,3,Active Shallow Crust,128.8894,89.99425,0.0,09/17/2464 +7.79103,47.44468,5739,10,24,7,58,54,4.05,5.0,fr,16224,114,695109,1,3,Active Shallow Crust,128.8894,89.99425,0.0,10/24/5739 +7.79103,47.44468,4929,6,8,10,10,58,4.05,5.0,fr,16225,98,695109,1,3,Active Shallow Crust,128.8894,89.99425,0.0,06/08/4929 +7.79103,47.44468,557,9,29,23,7,23,4.05,15.0,fr,16226,11,695110,1,1,Active Shallow Crust,128.8894,89.99425,0.0,09/29/0557 +7.79103,47.44468,2799,4,20,18,58,50,4.15,5.0,fr,16227,55,695112,1,1,Active Shallow Crust,0.0,89.98975,0.0,04/20/2799 +7.79103,47.44468,6610,9,30,5,4,30,4.15,27.5,fr,16228,132,695114,1,1,Active Shallow Crust,0.0,89.98975,0.0,09/30/6610 +7.79103,47.44468,7693,11,30,10,10,20,4.25,5.0,fr,16229,153,695124,1,2,Active Shallow Crust,0.0,89.99086,0.0,11/30/7693 +7.79103,47.44468,8243,9,24,16,29,12,4.25,5.0,fr,16230,164,695124,1,2,Active Shallow Crust,0.0,89.99086,0.0,09/24/8243 +7.79103,47.44468,6500,6,3,15,12,58,4.25,15.0,fr,16231,129,695125,1,1,Active Shallow Crust,0.0,89.99086,0.0,06/03/6500 +7.79103,47.44468,7649,5,29,19,56,25,4.25,15.0,fr,16232,152,695134,1,1,Active Shallow Crust,128.8947,89.98098,0.0,05/29/7649 +7.79103,47.44468,3265,3,15,8,24,27,4.35,5.0,fr,16233,65,695136,1,1,Active Shallow Crust,0.0,89.98914,0.0,03/15/3265 +7.79103,47.44468,94,5,5,12,21,15,4.35,15.0,fr,16234,1,695137,1,1,Active Shallow Crust,0.0,89.98914,0.0,05/05/0094 +7.79103,47.44468,7946,3,19,6,27,12,4.35,5.0,fr,16235,158,695145,1,1,Active Shallow Crust,128.8983,89.98257,0.0,03/19/7946 +7.79103,47.44468,2151,5,2,15,29,56,4.45,5.0,fr,16236,43,695148,1,1,Active Shallow Crust,0.0,89.99032,0.0,05/02/2151 +7.79103,47.44468,9091,5,21,3,7,2,4.45,15.0,fr,16237,181,695149,1,1,Active Shallow Crust,0.0,89.99032,0.0,05/21/9091 +7.79103,47.44468,1049,2,8,10,12,19,4.45,5.0,fr,16238,20,695154,1,1,Active Shallow Crust,0.0,89.99021,-90.0,02/08/1049 +7.79103,47.44468,1046,9,9,18,15,43,4.55,5.0,fr,16239,20,695160,1,1,Active Shallow Crust,0.0,89.98921,0.0,09/09/1046 +7.79103,47.44468,8142,7,5,13,0,11,4.55,15.0,fr,16240,162,695161,1,2,Active Shallow Crust,0.0,89.98921,0.0,07/05/8142 +7.79103,47.44468,8509,6,3,14,18,13,4.55,15.0,fr,16241,170,695161,1,2,Active Shallow Crust,0.0,89.98921,0.0,06/03/8509 +7.79103,47.44468,7175,5,12,7,39,2,4.55,5.0,fr,16242,143,695166,1,1,Active Shallow Crust,0.0,89.98909,-90.0,05/12/7175 +7.79103,47.44468,2628,4,3,11,48,19,4.65,5.0,fr,16243,52,695181,1,1,Active Shallow Crust,128.891,89.98679,0.0,04/03/2628 +7.79103,47.44468,6074,8,24,10,25,5,4.75,5.0,fr,16244,121,695190,1,1,Active Shallow Crust,0.0,89.9896,-90.0,08/24/6074 +7.79103,47.44468,1792,2,19,23,18,3,4.85,5.0,fr,16245,35,695196,1,1,Active Shallow Crust,0.0,89.98931,0.0,02/19/1792 +7.79103,47.44468,6122,8,16,5,52,22,4.85,27.5,fr,16246,122,695198,1,1,Active Shallow Crust,0.0,89.98931,0.0,08/16/6122 +7.79103,47.44468,5596,1,25,22,9,4,4.95,5.0,fr,16247,111,695208,1,1,Active Shallow Crust,0.0,89.99047,0.0,01/25/5596 +7.79103,47.44468,8492,10,26,12,56,11,4.95,27.5,fr,16248,169,695210,1,1,Active Shallow Crust,0.0,89.99047,0.0,10/26/8492 +7.79103,47.44468,2675,1,16,17,20,59,5.15,5.0,fr,16249,53,695235,1,1,Active Shallow Crust,240.0204,58.00006,0.0,01/16/2675 +7.79103,47.44468,5406,3,31,2,47,25,5.45,5.0,fr,16250,108,695268,1,1,Active Shallow Crust,0.0,89.99005,0.0,03/31/5406 +7.79103,47.44468,1722,5,1,19,32,31,5.95,5.0,fr,16251,34,695328,1,1,Active Shallow Crust,0.0,89.9901,0.0,05/01/1722 +7.791036,47.44468,260,6,17,21,42,25,6.35,7.567806,fr,16252,5,695376,1,1,Active Shallow Crust,0.0,89.99007,0.0,06/17/0260 +0.52383,50.96412,4802,4,21,1,0,28,3.85,5.0,fr,16253,96,695556,1,2,Active Shallow Crust,0.0,89.98988,0.0,04/21/4802 +0.52383,50.96412,9647,7,20,2,40,58,3.85,5.0,fr,16254,192,695556,1,2,Active Shallow Crust,0.0,89.98988,0.0,07/20/9647 +0.52383,50.96412,1374,7,3,7,20,43,3.95,15.0,fr,16255,27,695569,1,1,Active Shallow Crust,0.0,89.98998,0.0,07/03/1374 +0.52383,50.96412,8629,2,17,2,19,12,4.25,5.0,fr,16256,172,695613,1,1,Active Shallow Crust,128.8934,89.98094,0.0,02/17/8629 +1.06978,52.53233,41,2,23,9,18,8,3.65,5.0,fr,16257,0,696012,1,1,Active Shallow Crust,0.0,89.99043,0.0,02/23/0041 +1.06978,52.53233,3094,2,17,23,56,8,4.05,5.0,fr,16258,61,696063,1,1,Active Shallow Crust,240.007,58.00611,0.0,02/17/3094 +1.06978,52.53233,8663,2,16,6,20,33,4.25,5.0,fr,16259,173,696084,1,1,Active Shallow Crust,0.0,89.98972,0.0,02/16/8663 +1.06978,52.53233,1955,9,6,8,34,42,4.55,5.0,fr,16260,39,696123,1,1,Active Shallow Crust,240.0113,57.9977,0.0,09/06/1955 +1.06978,52.53233,5177,5,26,21,19,22,4.55,15.0,fr,16261,103,696130,1,1,Active Shallow Crust,128.8922,89.98577,0.0,05/26/5177 +1.06978,52.53233,5001,11,18,20,41,24,4.85,15.0,fr,16262,100,696163,1,1,Active Shallow Crust,0.0,89.98993,-90.0,11/18/5001 +0.76062,47.41924,2492,8,14,17,34,21,3.55,5.0,fr,16263,49,696480,1,1,Active Shallow Crust,0.0,89.98977,0.0,08/14/2492 +0.76062,47.41924,4573,5,20,15,54,17,3.55,15.0,fr,16264,91,696484,1,1,Active Shallow Crust,240.0122,57.99824,0.0,05/20/4573 +0.76062,47.41924,9628,11,8,16,21,41,3.65,5.0,fr,16265,192,696492,1,1,Active Shallow Crust,0.0,89.99012,0.0,11/08/9628 +0.76062,47.41924,2075,5,19,19,33,48,3.65,5.0,fr,16266,41,696498,1,1,Active Shallow Crust,0.0,89.99001,-90.0,05/19/2075 +0.76062,47.41924,8844,1,9,6,41,31,3.75,5.0,fr,16267,176,696504,1,1,Active Shallow Crust,0.0,89.98984,0.0,01/09/8844 +0.76062,47.41924,4802,6,21,18,37,19,3.75,15.0,fr,16268,96,696505,1,2,Active Shallow Crust,0.0,89.98984,0.0,06/21/4802 +0.76062,47.41924,1932,4,22,4,45,7,3.75,15.0,fr,16269,38,696505,1,2,Active Shallow Crust,0.0,89.98984,0.0,04/22/1932 +0.76062,47.41924,459,3,18,23,58,30,3.85,5.0,fr,16270,9,696516,1,2,Active Shallow Crust,0.0,89.98974,0.0,03/18/0459 +0.76062,47.41924,3005,6,1,14,45,20,3.85,5.0,fr,16271,60,696516,1,2,Active Shallow Crust,0.0,89.98974,0.0,06/01/3005 +0.76062,47.41924,1303,2,21,1,28,14,4.05,5.0,fr,16272,26,696540,1,1,Active Shallow Crust,0.0,89.98993,0.0,02/21/1303 +-1.41071,44.402,9717,8,17,14,19,0,3.75,15.0,fr,16273,194,696985,1,1,Active Shallow Crust,0.0,89.98998,0.0,08/17/9717 +3.89919,40.58799,8261,1,4,20,25,54,3.75,5.0,fr,16274,165,697947,1,1,Active Shallow Crust,240.0073,58.01741,0.0,01/04/8261 +3.89919,40.58799,2710,12,16,4,30,26,3.85,15.0,fr,16275,54,697966,1,1,Active Shallow Crust,128.8967,89.99323,0.0,12/16/2710 +3.89919,40.58799,8312,9,24,13,4,17,3.95,5.0,fr,16276,166,697968,1,1,Active Shallow Crust,0.0,89.99033,0.0,09/24/8312 +3.89919,40.58799,9457,8,30,18,37,13,4.05,5.0,fr,16277,189,697983,1,1,Active Shallow Crust,240.0048,58.00565,0.0,08/30/9457 +3.89919,40.58799,7659,1,12,1,40,44,4.15,5.0,fr,16278,153,697992,1,2,Active Shallow Crust,0.0,89.9904,0.0,01/12/7659 +3.89919,40.58799,7066,10,13,19,3,9,4.15,5.0,fr,16279,141,697992,1,2,Active Shallow Crust,0.0,89.9904,0.0,10/13/7066 +3.89919,40.58799,5643,12,2,20,30,48,4.35,5.0,fr,16280,112,698016,1,1,Active Shallow Crust,0.0,89.98933,0.0,12/02/5643 +3.89919,40.58799,9870,9,22,18,37,48,4.65,5.0,fr,16281,197,698052,1,1,Active Shallow Crust,0.0,89.99029,0.0,09/22/9870 +3.89919,40.58799,597,2,12,5,58,31,4.75,5.0,fr,16282,11,698064,1,1,Active Shallow Crust,0.0,89.99038,0.0,02/12/0597 +9.14707,49.36753,783,3,10,20,58,48,3.55,5.0,fr,16283,15,698400,1,1,Active Shallow Crust,0.0,89.98687,0.0,03/10/0783 +9.14707,49.36753,5854,2,15,18,37,42,3.55,27.5,fr,16284,117,698402,1,1,Active Shallow Crust,0.0,89.98687,0.0,02/15/5854 +9.14707,49.36753,8136,8,5,9,29,4,3.65,5.0,fr,16285,162,698421,1,1,Active Shallow Crust,128.9011,89.96358,0.0,08/05/8136 +9.14707,49.36753,3291,2,1,15,8,0,3.85,5.0,fr,16286,65,698436,1,1,Active Shallow Crust,0.0,89.9907,0.0,02/01/3291 +9.14707,49.36753,5595,10,8,16,35,47,4.05,5.0,fr,16287,111,698460,1,1,Active Shallow Crust,0.0,89.99261,0.0,10/08/5595 +9.14707,49.36753,7507,2,21,9,33,57,4.55,27.5,fr,16288,150,698522,1,1,Active Shallow Crust,0.0,89.99169,0.0,02/21/7507 +2.68461,51.29548,7326,1,25,12,24,22,3.85,5.0,fr,16289,146,698916,1,1,Active Shallow Crust,0.0,89.99107,0.0,01/25/7326 +2.68461,51.29548,9200,7,18,12,55,42,4.65,5.0,fr,16290,183,699012,1,1,Active Shallow Crust,0.0,89.99023,0.0,07/18/9200 +2.68461,51.29548,2318,12,31,13,19,31,4.75,5.0,fr,16291,46,699030,1,1,Active Shallow Crust,0.0,89.99039,-90.0,12/31/2318 +2.68461,51.29548,4304,2,6,18,46,46,5.95,15.0,fr,16292,86,699169,1,1,Active Shallow Crust,0.0,89.99004,0.0,02/06/4304 +-1.45641,41.9142,4691,10,23,18,26,42,3.65,5.0,fr,16293,93,699375,1,1,Active Shallow Crust,240.0007,58.01302,0.0,10/23/4691 +-1.45641,41.9142,6302,5,1,4,33,47,3.85,5.0,fr,16294,126,699396,1,1,Active Shallow Crust,0.0,89.98937,0.0,05/01/6302 +2.87002,53.20568,8444,5,14,8,45,11,3.55,5.0,fr,16295,168,699840,1,2,Active Shallow Crust,0.0,89.99094,0.0,05/14/8444 +2.87002,53.20568,4784,3,10,14,18,32,3.55,5.0,fr,16296,95,699840,1,2,Active Shallow Crust,0.0,89.99094,0.0,03/10/4784 +0.32099,51.34503,8105,3,4,11,53,47,3.55,5.0,fr,16297,162,700320,1,1,Active Shallow Crust,0.0,89.99016,0.0,03/04/8105 +0.32099,51.34503,8271,12,18,3,57,7,3.55,15.0,fr,16298,165,700321,1,1,Active Shallow Crust,0.0,89.99016,0.0,12/18/8271 +0.32099,51.34503,4729,3,23,17,43,7,3.75,5.0,fr,16299,94,700344,1,1,Active Shallow Crust,0.0,89.98999,0.0,03/23/4729 +0.32099,51.34503,404,6,19,0,56,10,3.95,5.0,fr,16300,8,700368,1,1,Active Shallow Crust,0.0,89.99007,0.0,06/19/0404 +0.32099,51.34503,7467,4,25,11,57,42,4.05,5.0,fr,16301,149,700383,1,1,Active Shallow Crust,240.0068,58.00599,0.0,04/25/7467 +6.19056,43.98629,5382,3,8,22,27,20,3.55,5.0,fr,16302,107,700800,1,4,Active Shallow Crust,0.0,89.99274,0.0,03/08/5382 +6.19056,43.98629,1307,2,12,21,40,44,3.55,5.0,fr,16303,26,700800,1,4,Active Shallow Crust,0.0,89.99274,0.0,02/12/1307 +6.19056,43.98629,6721,3,10,8,21,32,3.55,5.0,fr,16304,134,700800,1,4,Active Shallow Crust,0.0,89.99274,0.0,03/10/6721 +6.19056,43.98629,3130,4,13,3,38,15,3.55,5.0,fr,16305,62,700800,1,4,Active Shallow Crust,0.0,89.99274,0.0,04/13/3130 +6.19056,43.98629,4447,6,7,5,42,9,3.55,15.0,fr,16306,88,700801,1,1,Active Shallow Crust,0.0,89.99274,0.0,06/07/4447 +6.19056,43.98629,1156,4,24,1,4,17,3.55,5.0,fr,16307,23,700803,1,1,Active Shallow Crust,240.0131,57.99775,0.0,04/24/1156 +6.19056,43.98629,9179,8,17,10,35,58,3.55,15.0,fr,16308,183,700804,1,1,Active Shallow Crust,240.0131,57.99775,0.0,08/17/9179 +6.19056,43.98629,643,3,26,10,16,33,3.55,15.0,fr,16309,12,700810,1,1,Active Shallow Crust,128.8966,89.99274,0.0,03/26/0643 +6.19056,43.98629,4907,12,12,4,27,14,3.65,5.0,fr,16310,98,700812,1,5,Active Shallow Crust,0.0,89.98707,0.0,12/12/4907 +6.19056,43.98629,8623,3,6,22,43,59,3.65,5.0,fr,16311,172,700812,1,5,Active Shallow Crust,0.0,89.98707,0.0,03/06/8623 +6.19056,43.98629,9673,3,23,5,28,35,3.65,5.0,fr,16312,193,700812,1,5,Active Shallow Crust,0.0,89.98707,0.0,03/23/9673 +6.19056,43.98629,7558,8,7,0,12,20,3.65,5.0,fr,16313,151,700812,1,5,Active Shallow Crust,0.0,89.98707,0.0,08/07/7558 +6.19056,43.98629,8573,4,13,2,36,3,3.65,5.0,fr,16314,171,700812,1,5,Active Shallow Crust,0.0,89.98707,0.0,04/13/8573 +6.19056,43.98629,5475,1,14,20,28,47,3.65,27.5,fr,16315,109,700814,1,1,Active Shallow Crust,0.0,89.98707,0.0,01/14/5475 +6.19056,43.98629,6599,2,25,8,37,58,3.75,15.0,fr,16316,131,700825,1,2,Active Shallow Crust,0.0,89.98847,0.0,02/25/6599 +6.19056,43.98629,6581,10,23,0,45,32,3.75,15.0,fr,16317,131,700825,1,2,Active Shallow Crust,0.0,89.98847,0.0,10/23/6581 +6.19056,43.98629,4996,2,28,12,2,22,3.75,27.5,fr,16318,99,700826,1,1,Active Shallow Crust,0.0,89.98847,0.0,02/28/4996 +6.19056,43.98629,8118,3,23,16,46,55,3.85,5.0,fr,16319,162,700836,1,2,Active Shallow Crust,0.0,89.98972,0.0,03/23/8118 +6.19056,43.98629,3986,6,13,15,36,31,3.85,5.0,fr,16320,79,700836,1,2,Active Shallow Crust,0.0,89.98972,0.0,06/13/3986 +6.19056,43.98629,8212,8,6,11,36,8,3.85,15.0,fr,16321,164,700837,1,1,Active Shallow Crust,0.0,89.98972,0.0,08/06/8212 +6.19056,43.98629,8016,12,19,1,15,43,3.95,5.0,fr,16322,160,700848,1,4,Active Shallow Crust,0.0,89.99084,0.0,12/19/8016 +6.19056,43.98629,4980,1,13,3,24,4,3.95,5.0,fr,16323,99,700848,1,4,Active Shallow Crust,0.0,89.99084,0.0,01/13/4980 +6.19056,43.98629,2051,9,22,12,17,58,3.95,5.0,fr,16324,41,700848,1,4,Active Shallow Crust,0.0,89.99084,0.0,09/22/2051 +6.19056,43.98629,6041,1,9,5,16,36,3.95,5.0,fr,16325,120,700848,1,4,Active Shallow Crust,0.0,89.99084,0.0,01/09/6041 +6.19056,43.98629,4308,10,11,16,10,23,4.15,5.0,fr,16326,86,700872,1,3,Active Shallow Crust,0.0,89.98909,0.0,10/11/4308 +6.19056,43.98629,1782,2,10,22,2,25,4.15,5.0,fr,16327,35,700872,1,3,Active Shallow Crust,0.0,89.98909,0.0,02/10/1782 +6.19056,43.98629,3128,3,3,15,36,19,4.15,5.0,fr,16328,62,700872,1,3,Active Shallow Crust,0.0,89.98909,0.0,03/03/3128 +6.19056,43.98629,4556,7,19,8,55,32,4.15,5.0,fr,16329,91,700875,1,1,Active Shallow Crust,240.0075,57.99747,0.0,07/19/4556 +6.19056,43.98629,687,9,27,14,30,47,4.25,5.0,fr,16330,13,700884,1,1,Active Shallow Crust,0.0,89.99028,0.0,09/27/0687 +6.19056,43.98629,1375,3,7,1,31,17,4.25,15.0,fr,16331,27,700885,1,1,Active Shallow Crust,0.0,89.99028,0.0,03/07/1375 +6.19056,43.98629,536,8,23,1,23,36,4.55,5.0,fr,16332,10,700920,1,1,Active Shallow Crust,0.0,89.99082,0.0,08/23/0536 +6.19056,43.98629,7169,9,5,16,46,33,4.85,5.0,fr,16333,143,700956,1,2,Active Shallow Crust,0.0,89.99025,0.0,09/05/7169 +6.19056,43.98629,38,10,24,13,59,5,4.85,5.0,fr,16334,0,700956,1,2,Active Shallow Crust,0.0,89.99025,0.0,10/24/0038 +6.19056,43.98629,6820,7,24,14,59,19,4.95,27.5,fr,16335,136,700970,1,1,Active Shallow Crust,0.0,89.98987,0.0,07/24/6820 +6.19056,43.98629,2435,4,27,1,24,29,4.95,5.0,fr,16336,48,700971,1,1,Active Shallow Crust,240.0106,58.00446,0.0,04/27/2435 +8.8184,50.9522,685,4,27,2,48,58,3.55,27.5,fr,16337,13,701282,1,1,Active Shallow Crust,0.0,89.9873,0.0,04/27/0685 +8.8184,50.9522,6818,4,15,17,10,28,3.65,27.5,fr,16338,136,701297,1,1,Active Shallow Crust,240.0007,58.01365,0.0,04/15/6818 +7.21639,49.03413,3999,6,2,4,23,13,3.55,5.0,fr,16339,79,701763,1,1,Active Shallow Crust,240.0117,57.99901,0.0,06/02/3999 +7.21639,49.03413,7733,4,11,3,27,40,3.95,5.0,fr,16340,154,701808,1,1,Active Shallow Crust,0.0,89.99165,0.0,04/11/7733 +1.14153,44.49305,9219,5,6,6,45,7,3.75,5.0,fr,16341,184,702750,1,1,Active Shallow Crust,0.0,89.98988,-90.0,05/06/9219 +1.14153,44.49305,3179,9,5,6,55,27,3.85,15.0,fr,16342,63,702757,1,1,Active Shallow Crust,0.0,89.98981,0.0,09/05/3179 +1.14153,44.49305,220,12,20,22,43,28,4.15,5.0,fr,16343,4,702792,1,1,Active Shallow Crust,0.0,89.99008,0.0,12/20/0220 +-2.23101,43.90259,9361,7,7,4,30,13,5.05,5.0,fr,16344,187,703389,1,1,Active Shallow Crust,128.8865,89.99056,0.0,07/07/9361 +-0.27944,43.96392,911,8,4,19,7,25,4.55,5.0,fr,16345,18,703800,1,1,Active Shallow Crust,0.0,89.98996,0.0,08/04/0911 +-1.6593,45.88312,3443,5,5,14,28,33,3.55,15.0,fr,16346,68,704161,1,1,Active Shallow Crust,0.0,89.98947,0.0,05/05/3443 +-1.6593,45.88312,206,5,24,23,17,21,3.55,5.0,fr,16347,4,704169,1,1,Active Shallow Crust,128.8962,89.99386,0.0,05/24/0206 +-1.6593,45.88312,6149,11,5,19,10,56,3.65,15.0,fr,16348,122,704173,1,2,Active Shallow Crust,0.0,89.99062,0.0,11/05/6149 +-1.6593,45.88312,3377,7,27,4,27,23,3.65,15.0,fr,16349,67,704173,1,2,Active Shallow Crust,0.0,89.99062,0.0,07/27/3377 +-1.6593,45.88312,170,11,29,23,43,53,3.65,5.0,fr,16350,3,704181,1,1,Active Shallow Crust,128.9009,89.96351,0.0,11/29/0170 +-1.6593,45.88312,6278,12,27,13,1,48,3.85,5.0,fr,16351,125,704196,1,1,Active Shallow Crust,0.0,89.99006,0.0,12/27/6278 +-1.6593,45.88312,2503,8,25,2,4,39,4.15,5.0,fr,16352,50,704232,1,1,Active Shallow Crust,0.0,89.99033,0.0,08/25/2503 +-1.6593,45.88312,526,9,10,22,8,0,4.25,27.5,fr,16353,10,704246,1,1,Active Shallow Crust,0.0,89.98981,0.0,09/10/0526 +-1.6593,45.88312,7424,2,18,0,48,10,4.45,15.0,fr,16354,148,704269,1,1,Active Shallow Crust,0.0,89.99004,0.0,02/18/7424 +6.97713,46.83572,7029,3,2,1,36,40,3.55,5.0,fr,16355,140,704640,1,11,Active Shallow Crust,0.0,89.9931,0.0,03/02/7029 +6.97713,46.83572,5869,12,15,12,21,14,3.55,5.0,fr,16356,117,704640,1,11,Active Shallow Crust,0.0,89.9931,0.0,12/15/5869 +6.97713,46.83572,6175,12,9,1,20,24,3.55,5.0,fr,16357,123,704640,1,11,Active Shallow Crust,0.0,89.9931,0.0,12/09/6175 +6.97713,46.83572,9193,2,2,10,38,46,3.55,5.0,fr,16358,183,704640,1,11,Active Shallow Crust,0.0,89.9931,0.0,02/02/9193 +6.97713,46.83572,948,10,3,4,33,16,3.55,5.0,fr,16359,18,704640,1,11,Active Shallow Crust,0.0,89.9931,0.0,10/03/0948 +6.97713,46.83572,3222,7,22,11,49,56,3.55,5.0,fr,16360,64,704640,1,11,Active Shallow Crust,0.0,89.9931,0.0,07/22/3222 +6.97713,46.83572,8805,12,20,17,22,17,3.55,5.0,fr,16361,176,704640,1,11,Active Shallow Crust,0.0,89.9931,0.0,12/20/8805 +6.97713,46.83572,2982,2,24,19,36,28,3.55,5.0,fr,16362,59,704640,1,11,Active Shallow Crust,0.0,89.9931,0.0,02/24/2982 +6.97713,46.83572,7489,12,24,16,2,23,3.55,5.0,fr,16363,149,704640,1,11,Active Shallow Crust,0.0,89.9931,0.0,12/24/7489 +6.97713,46.83572,26,2,2,12,42,56,3.55,5.0,fr,16364,0,704640,1,11,Active Shallow Crust,0.0,89.9931,0.0,02/02/0026 +6.97713,46.83572,6571,2,2,5,34,6,3.55,5.0,fr,16365,131,704640,1,11,Active Shallow Crust,0.0,89.9931,0.0,02/02/6571 +6.97713,46.83572,7268,12,19,9,34,30,3.55,15.0,fr,16366,145,704641,1,4,Active Shallow Crust,0.0,89.9931,0.0,12/19/7268 +6.97713,46.83572,376,4,14,0,41,2,3.55,15.0,fr,16367,7,704641,1,4,Active Shallow Crust,0.0,89.9931,0.0,04/14/0376 +6.97713,46.83572,3711,1,27,17,38,14,3.55,15.0,fr,16368,74,704641,1,4,Active Shallow Crust,0.0,89.9931,0.0,01/27/3711 +6.97713,46.83572,1808,2,18,3,22,1,3.55,15.0,fr,16369,36,704641,1,4,Active Shallow Crust,0.0,89.9931,0.0,02/18/1808 +6.97713,46.83572,3373,3,21,3,35,33,3.55,27.5,fr,16370,67,704642,1,2,Active Shallow Crust,0.0,89.9931,0.0,03/21/3373 +6.97713,46.83572,5012,7,1,8,5,42,3.55,27.5,fr,16371,100,704642,1,2,Active Shallow Crust,0.0,89.9931,0.0,07/01/5012 +6.97713,46.83572,1384,10,7,4,12,35,3.55,5.0,fr,16372,27,704643,1,1,Active Shallow Crust,240.0114,57.99871,0.0,10/07/1384 +6.97713,46.83572,1647,1,8,9,46,46,3.55,15.0,fr,16373,32,704644,1,1,Active Shallow Crust,240.0114,57.99871,0.0,01/08/1647 +6.97713,46.83572,4931,6,12,11,43,52,3.55,5.0,fr,16374,98,704649,1,2,Active Shallow Crust,128.8949,89.99655,0.0,06/12/4931 +6.97713,46.83572,1098,3,4,19,48,6,3.55,5.0,fr,16375,21,704649,1,2,Active Shallow Crust,128.8949,89.99655,0.0,03/04/1098 +6.97713,46.83572,9212,3,23,4,46,44,3.55,27.5,fr,16376,184,704651,1,1,Active Shallow Crust,128.8949,89.99655,0.0,03/23/9212 +6.97713,46.83572,2740,4,25,22,56,47,3.65,5.0,fr,16377,54,704652,1,6,Active Shallow Crust,0.0,89.9877,0.0,04/25/2740 +6.97713,46.83572,4614,4,7,0,34,8,3.65,5.0,fr,16378,92,704652,1,6,Active Shallow Crust,0.0,89.9877,0.0,04/07/4614 +6.97713,46.83572,505,7,18,19,6,31,3.65,5.0,fr,16379,10,704652,1,6,Active Shallow Crust,0.0,89.9877,0.0,07/18/0505 +6.97713,46.83572,4388,3,18,14,45,56,3.65,5.0,fr,16380,87,704652,1,6,Active Shallow Crust,0.0,89.9877,0.0,03/18/4388 +6.97713,46.83572,4608,8,26,19,58,40,3.65,5.0,fr,16381,92,704652,1,6,Active Shallow Crust,0.0,89.9877,0.0,08/26/4608 +6.97713,46.83572,6777,8,10,6,1,41,3.65,5.0,fr,16382,135,704652,1,6,Active Shallow Crust,0.0,89.9877,0.0,08/10/6777 +6.97713,46.83572,1354,11,10,11,27,55,3.65,15.0,fr,16383,27,704653,1,6,Active Shallow Crust,0.0,89.9877,0.0,11/10/1354 +6.97713,46.83572,2823,7,6,13,8,40,3.65,15.0,fr,16384,56,704653,1,6,Active Shallow Crust,0.0,89.9877,0.0,07/06/2823 +6.97713,46.83572,5015,2,24,21,42,30,3.65,15.0,fr,16385,100,704653,1,6,Active Shallow Crust,0.0,89.9877,0.0,02/24/5015 +6.97713,46.83572,7096,5,12,23,43,23,3.65,15.0,fr,16386,141,704653,1,6,Active Shallow Crust,0.0,89.9877,0.0,05/12/7096 +6.97713,46.83572,4050,6,10,11,29,1,3.65,15.0,fr,16387,80,704653,1,6,Active Shallow Crust,0.0,89.9877,0.0,06/10/4050 +6.97713,46.83572,5372,12,27,19,6,10,3.65,15.0,fr,16388,107,704653,1,6,Active Shallow Crust,0.0,89.9877,0.0,12/27/5372 +6.97713,46.83572,8014,10,13,15,37,1,3.65,27.5,fr,16389,160,704654,1,2,Active Shallow Crust,0.0,89.9877,0.0,10/13/8014 +6.97713,46.83572,2329,4,26,23,17,7,3.65,27.5,fr,16390,46,704654,1,2,Active Shallow Crust,0.0,89.9877,0.0,04/26/2329 +6.97713,46.83572,6825,10,30,10,31,49,3.65,5.0,fr,16391,136,704655,1,1,Active Shallow Crust,239.9998,58.01341,0.0,10/30/6825 +6.97713,46.83572,2234,5,27,21,34,2,3.65,5.0,fr,16392,44,704658,1,1,Active Shallow Crust,0.0,89.98756,-90.0,05/27/2234 +6.97713,46.83572,6088,9,12,17,18,54,3.65,27.5,fr,16393,121,704660,1,2,Active Shallow Crust,0.0,89.98756,-90.0,09/12/6088 +6.97713,46.83572,9688,11,19,0,11,19,3.65,27.5,fr,16394,193,704660,1,2,Active Shallow Crust,0.0,89.98756,-90.0,11/19/9688 +6.97713,46.83572,6758,7,1,13,50,8,3.65,5.0,fr,16395,135,704661,1,2,Active Shallow Crust,128.9002,89.96353,0.0,07/01/6758 +6.97713,46.83572,6100,2,1,12,37,10,3.65,5.0,fr,16396,121,704661,1,2,Active Shallow Crust,128.9002,89.96353,0.0,02/01/6100 +6.97713,46.83572,9908,11,11,7,42,27,3.65,15.0,fr,16397,198,704662,1,1,Active Shallow Crust,128.9002,89.96353,0.0,11/11/9908 +6.97713,46.83572,1874,1,18,15,11,25,3.75,5.0,fr,16398,37,704664,1,12,Active Shallow Crust,0.0,89.98904,0.0,01/18/1874 +6.97713,46.83572,2721,2,26,0,1,59,3.75,5.0,fr,16399,54,704664,1,12,Active Shallow Crust,0.0,89.98904,0.0,02/26/2721 +6.97713,46.83572,6173,3,22,3,41,57,3.75,5.0,fr,16400,123,704664,1,12,Active Shallow Crust,0.0,89.98904,0.0,03/22/6173 +6.97713,46.83572,859,11,2,15,12,23,3.75,5.0,fr,16401,17,704664,1,12,Active Shallow Crust,0.0,89.98904,0.0,11/02/0859 +6.97713,46.83572,3523,2,6,12,16,36,3.75,5.0,fr,16402,70,704664,1,12,Active Shallow Crust,0.0,89.98904,0.0,02/06/3523 +6.97713,46.83572,372,11,16,17,15,42,3.75,5.0,fr,16403,7,704664,1,12,Active Shallow Crust,0.0,89.98904,0.0,11/16/0372 +6.97713,46.83572,9035,3,27,1,19,12,3.75,5.0,fr,16404,180,704664,1,12,Active Shallow Crust,0.0,89.98904,0.0,03/27/9035 +6.97713,46.83572,1433,10,1,22,2,19,3.75,5.0,fr,16405,28,704664,1,12,Active Shallow Crust,0.0,89.98904,0.0,10/01/1433 +6.97713,46.83572,8127,11,9,9,42,30,3.75,5.0,fr,16406,162,704664,1,12,Active Shallow Crust,0.0,89.98904,0.0,11/09/8127 +6.97713,46.83572,7748,11,28,4,50,17,3.75,5.0,fr,16407,154,704664,1,12,Active Shallow Crust,0.0,89.98904,0.0,11/28/7748 +6.97713,46.83572,3290,12,15,10,8,25,3.75,5.0,fr,16408,65,704664,1,12,Active Shallow Crust,0.0,89.98904,0.0,12/15/3290 +6.97713,46.83572,6424,12,16,1,55,49,3.75,5.0,fr,16409,128,704664,1,12,Active Shallow Crust,0.0,89.98904,0.0,12/16/6424 +6.97713,46.83572,2455,9,14,0,7,51,3.75,15.0,fr,16410,49,704665,1,2,Active Shallow Crust,0.0,89.98904,0.0,09/14/2455 +6.97713,46.83572,2936,4,7,16,0,51,3.75,15.0,fr,16411,58,704665,1,2,Active Shallow Crust,0.0,89.98904,0.0,04/07/2936 +6.97713,46.83572,6769,12,1,3,49,52,3.75,5.0,fr,16412,135,704667,1,2,Active Shallow Crust,240.0092,58.01749,0.0,12/01/6769 +6.97713,46.83572,6625,9,16,19,22,47,3.75,5.0,fr,16413,132,704667,1,2,Active Shallow Crust,240.0092,58.01749,0.0,09/16/6625 +6.97713,46.83572,2160,11,9,1,55,49,3.75,15.0,fr,16414,43,704668,1,1,Active Shallow Crust,240.0092,58.01749,0.0,11/09/2160 +6.97713,46.83572,144,3,29,17,14,36,3.75,27.5,fr,16415,2,704669,1,1,Active Shallow Crust,240.0092,58.01749,0.0,03/29/0144 +6.97713,46.83572,5953,12,25,3,59,1,3.75,5.0,fr,16416,119,704670,1,2,Active Shallow Crust,0.0,89.98891,-90.0,12/25/5953 +6.97713,46.83572,4578,1,11,23,17,49,3.75,5.0,fr,16417,91,704670,1,2,Active Shallow Crust,0.0,89.98891,-90.0,01/11/4578 +6.97713,46.83572,86,11,30,21,32,26,3.75,5.0,fr,16418,1,704673,1,1,Active Shallow Crust,128.8964,89.9675,0.0,11/30/0086 +6.97713,46.83572,3580,5,10,0,59,18,3.85,5.0,fr,16419,71,704676,1,5,Active Shallow Crust,0.0,89.99023,0.0,05/10/3580 +6.97713,46.83572,6280,10,11,13,59,17,3.85,5.0,fr,16420,125,704676,1,5,Active Shallow Crust,0.0,89.99023,0.0,10/11/6280 +6.97713,46.83572,6550,10,6,23,46,2,3.85,5.0,fr,16421,130,704676,1,5,Active Shallow Crust,0.0,89.99023,0.0,10/06/6550 +6.97713,46.83572,8346,2,2,20,17,40,3.85,5.0,fr,16422,166,704676,1,5,Active Shallow Crust,0.0,89.99023,0.0,02/02/8346 +6.97713,46.83572,8119,4,18,12,52,25,3.85,5.0,fr,16423,162,704676,1,5,Active Shallow Crust,0.0,89.99023,0.0,04/18/8119 +6.97713,46.83572,6429,2,12,9,44,47,3.85,15.0,fr,16424,128,704677,1,1,Active Shallow Crust,0.0,89.99023,0.0,02/12/6429 +6.97713,46.83572,1629,2,14,12,0,49,3.85,5.0,fr,16425,32,704682,1,2,Active Shallow Crust,0.0,89.99012,-90.0,02/14/1629 +6.97713,46.83572,6278,3,8,10,55,44,3.85,5.0,fr,16426,125,704682,1,2,Active Shallow Crust,0.0,89.99012,-90.0,03/08/6278 +6.97713,46.83572,4348,5,25,5,44,24,3.85,5.0,fr,16427,86,704685,1,2,Active Shallow Crust,128.8954,89.99268,0.0,05/25/4348 +6.97713,46.83572,9140,4,4,22,44,38,3.85,5.0,fr,16428,182,704685,1,2,Active Shallow Crust,128.8954,89.99268,0.0,04/04/9140 +6.97713,46.83572,3750,2,18,5,31,0,3.95,5.0,fr,16429,74,704688,1,7,Active Shallow Crust,0.0,89.99129,0.0,02/18/3750 +6.97713,46.83572,221,11,21,18,15,0,3.95,5.0,fr,16430,4,704688,1,7,Active Shallow Crust,0.0,89.99129,0.0,11/21/0221 +6.97713,46.83572,3223,10,13,9,30,29,3.95,5.0,fr,16431,64,704688,1,7,Active Shallow Crust,0.0,89.99129,0.0,10/13/3223 +6.97713,46.83572,306,2,23,17,58,1,3.95,5.0,fr,16432,6,704688,1,7,Active Shallow Crust,0.0,89.99129,0.0,02/23/0306 +6.97713,46.83572,6534,6,14,12,26,48,3.95,5.0,fr,16433,130,704688,1,7,Active Shallow Crust,0.0,89.99129,0.0,06/14/6534 +6.97713,46.83572,2710,7,20,15,47,27,3.95,5.0,fr,16434,54,704688,1,7,Active Shallow Crust,0.0,89.99129,0.0,07/20/2710 +6.97713,46.83572,9936,12,28,17,4,26,3.95,5.0,fr,16435,198,704688,1,7,Active Shallow Crust,0.0,89.99129,0.0,12/28/9936 +6.97713,46.83572,4653,10,25,2,19,56,3.95,15.0,fr,16436,93,704689,1,3,Active Shallow Crust,0.0,89.99129,0.0,10/25/4653 +6.97713,46.83572,9766,6,28,14,12,7,3.95,15.0,fr,16437,195,704689,1,3,Active Shallow Crust,0.0,89.99129,0.0,06/28/9766 +6.97713,46.83572,1520,7,15,21,50,46,3.95,15.0,fr,16438,30,704689,1,3,Active Shallow Crust,0.0,89.99129,0.0,07/15/1520 +6.97713,46.83572,8561,1,20,16,53,24,3.95,15.0,fr,16439,171,704698,1,1,Active Shallow Crust,128.9006,89.99347,0.0,01/20/8561 +6.97713,46.83572,9298,6,24,2,12,18,4.05,5.0,fr,16440,185,704700,1,2,Active Shallow Crust,0.0,89.98837,0.0,06/24/9298 +6.97713,46.83572,4183,11,19,1,38,12,4.05,5.0,fr,16441,83,704700,1,2,Active Shallow Crust,0.0,89.98837,0.0,11/19/4183 +6.97713,46.83572,2151,3,28,12,4,30,4.05,5.0,fr,16442,43,704703,1,1,Active Shallow Crust,240.0052,58.0063,0.0,03/28/2151 +6.97713,46.83572,8638,1,14,3,37,3,4.05,27.5,fr,16443,172,704708,1,1,Active Shallow Crust,0.0,89.98823,-90.0,01/14/8638 +6.97713,46.83572,4483,8,12,0,32,5,4.05,5.0,fr,16444,89,704709,1,1,Active Shallow Crust,128.8909,89.99418,0.0,08/12/4483 +6.97713,46.83572,6017,4,22,10,19,34,4.15,5.0,fr,16445,120,704712,1,3,Active Shallow Crust,0.0,89.98962,0.0,04/22/6017 +6.97713,46.83572,5342,10,15,18,24,55,4.15,5.0,fr,16446,106,704712,1,3,Active Shallow Crust,0.0,89.98962,0.0,10/15/5342 +6.97713,46.83572,8389,8,6,10,40,12,4.15,5.0,fr,16447,167,704712,1,3,Active Shallow Crust,0.0,89.98962,0.0,08/06/8389 +6.97713,46.83572,233,10,19,19,44,7,4.15,15.0,fr,16448,4,704713,1,1,Active Shallow Crust,0.0,89.98962,0.0,10/19/0233 +6.97713,46.83572,5902,11,2,4,18,22,4.15,5.0,fr,16449,118,704715,1,1,Active Shallow Crust,240.0082,57.99692,0.0,11/02/5902 +6.97713,46.83572,2069,4,6,14,21,34,4.15,15.0,fr,16450,41,704716,1,1,Active Shallow Crust,240.0082,57.99694,0.0,04/06/2069 +6.97713,46.83572,6775,4,23,19,35,41,4.15,15.0,fr,16451,135,704722,1,1,Active Shallow Crust,128.8971,89.99481,0.0,04/23/6775 +6.97713,46.83572,366,12,23,4,22,12,4.25,5.0,fr,16452,7,704724,1,2,Active Shallow Crust,0.0,89.99075,0.0,12/23/0366 +6.97713,46.83572,2277,10,26,16,46,57,4.25,5.0,fr,16453,45,704724,1,2,Active Shallow Crust,0.0,89.99075,0.0,10/26/2277 +6.97713,46.83572,2552,4,11,7,51,46,4.25,15.0,fr,16454,51,704725,1,2,Active Shallow Crust,0.0,89.99075,0.0,04/11/2552 +6.97713,46.83572,942,6,1,1,21,21,4.25,15.0,fr,16455,18,704725,1,2,Active Shallow Crust,0.0,89.99075,0.0,06/01/0942 +6.97713,46.83572,2499,9,28,5,32,51,4.25,15.0,fr,16456,49,704731,1,1,Active Shallow Crust,0.0,89.99065,-90.0,09/28/2499 +6.97713,46.83572,9997,5,22,17,28,39,4.25,5.0,fr,16457,199,704733,1,1,Active Shallow Crust,128.8934,89.98096,0.0,05/22/9997 +6.97713,46.83572,9815,12,9,17,12,41,4.35,5.0,fr,16458,196,704736,1,3,Active Shallow Crust,0.0,89.98901,0.0,12/09/9815 +6.97713,46.83572,2326,10,13,13,42,28,4.35,5.0,fr,16459,46,704736,1,3,Active Shallow Crust,0.0,89.98901,0.0,10/13/2326 +6.97713,46.83572,7266,8,9,23,26,5,4.35,5.0,fr,16460,145,704736,1,3,Active Shallow Crust,0.0,89.98901,0.0,08/09/7266 +6.97713,46.83572,4650,8,15,2,3,15,4.45,5.0,fr,16461,92,704748,1,1,Active Shallow Crust,0.0,89.99021,0.0,08/15/4650 +6.97713,46.83572,8235,4,28,23,27,58,4.45,27.5,fr,16462,164,704759,1,1,Active Shallow Crust,128.8915,89.99388,0.0,04/28/8235 +6.97713,46.83572,5079,11,18,1,10,22,4.55,5.0,fr,16463,101,704760,1,1,Active Shallow Crust,0.0,89.98909,0.0,11/18/5079 +6.97713,46.83572,3688,10,4,16,39,38,4.55,27.5,fr,16464,73,704765,1,1,Active Shallow Crust,240.0091,57.99729,0.0,10/04/3688 +6.97713,46.83572,3925,9,22,0,30,39,4.65,5.0,fr,16465,78,704772,1,1,Active Shallow Crust,0.0,89.99028,0.0,09/22/3925 +6.97713,46.83572,6315,9,4,22,2,31,4.65,5.0,fr,16466,126,704778,1,1,Active Shallow Crust,0.0,89.99017,-90.0,09/04/6315 +6.97713,46.83572,93,5,12,7,22,22,4.75,5.0,fr,16467,1,704787,1,1,Active Shallow Crust,240.0076,58.00471,0.0,05/12/0093 +6.97713,46.83572,3954,6,9,0,20,2,4.75,15.0,fr,16468,79,704794,1,1,Active Shallow Crust,128.8885,89.98819,0.0,06/09/3954 +6.97713,46.83572,781,5,31,18,9,8,4.85,27.5,fr,16469,15,704798,1,1,Active Shallow Crust,0.0,89.99073,0.0,05/31/0781 +6.97713,46.83572,1633,3,18,11,21,5,4.85,27.5,fr,16470,32,704801,1,1,Active Shallow Crust,240.0171,58.0026,0.0,03/18/1633 +6.97713,46.83572,6049,11,26,3,10,3,4.85,5.0,fr,16471,120,704802,1,1,Active Shallow Crust,0.0,89.99062,-90.0,11/26/6049 +6.97713,46.83572,2179,8,6,11,4,19,4.85,5.0,fr,16472,43,704805,1,1,Active Shallow Crust,128.8921,89.98906,0.0,08/06/2179 +6.97713,46.83572,5590,9,17,23,53,36,4.95,5.0,fr,16473,111,704811,1,1,Active Shallow Crust,240.0122,58.00439,0.0,09/17/5590 +6.97713,46.83572,6339,4,25,22,13,4,5.15,27.5,fr,16474,126,704834,1,1,Active Shallow Crust,0.0,89.99016,0.0,04/25/6339 +6.97713,46.83572,2582,9,17,20,3,41,5.55,5.0,fr,16475,51,704880,1,1,Active Shallow Crust,359.9997,89.99034,0.0,09/17/2582 +6.97713,46.83572,7815,9,29,11,18,13,5.65,5.0,fr,16476,156,704892,1,1,Active Shallow Crust,0.0,89.99016,0.0,09/29/7815 +6.97713,46.83572,7614,7,13,6,43,2,5.65,15.0,fr,16477,152,704902,1,1,Active Shallow Crust,128.8749,89.99034,0.0,07/13/7614 +6.977131,46.83572,9014,8,12,17,24,18,6.05,5.357596,fr,16478,180,704940,1,1,Active Shallow Crust,0.0,89.9901,0.0,08/12/9014 +6.55094,45.22013,9340,3,14,6,29,26,3.55,5.0,fr,16479,186,705120,1,4,Active Shallow Crust,0.0,89.9929,0.0,03/14/9340 +6.55094,45.22013,4524,5,8,10,54,29,3.55,5.0,fr,16480,90,705120,1,4,Active Shallow Crust,0.0,89.9929,0.0,05/08/4524 +6.55094,45.22013,4111,3,29,0,38,34,3.55,5.0,fr,16481,82,705120,1,4,Active Shallow Crust,0.0,89.9929,0.0,03/29/4111 +6.55094,45.22013,8821,7,15,21,24,1,3.55,5.0,fr,16482,176,705120,1,4,Active Shallow Crust,0.0,89.9929,0.0,07/15/8821 +6.55094,45.22013,9308,6,9,7,23,1,3.55,15.0,fr,16483,186,705124,1,1,Active Shallow Crust,240.012,57.99752,0.0,06/09/9308 +6.55094,45.22013,1299,11,1,6,9,14,3.55,5.0,fr,16484,25,705126,1,1,Active Shallow Crust,0.0,89.99281,-90.0,11/01/1299 +6.55094,45.22013,8878,3,17,20,19,7,3.65,5.0,fr,16485,177,705132,1,1,Active Shallow Crust,0.0,89.98734,0.0,03/17/8878 +6.55094,45.22013,8780,9,10,18,21,29,3.65,15.0,fr,16486,175,705133,1,1,Active Shallow Crust,0.0,89.98734,0.0,09/10/8780 +6.55094,45.22013,6716,12,30,22,52,37,3.65,5.0,fr,16487,134,705135,1,1,Active Shallow Crust,240.0012,58.01305,0.0,12/30/6716 +6.55094,45.22013,1422,1,23,8,24,48,3.75,5.0,fr,16488,28,705144,1,1,Active Shallow Crust,0.0,89.98872,0.0,01/23/1422 +6.55094,45.22013,1818,10,26,9,52,54,3.75,5.0,fr,16489,36,705147,1,1,Active Shallow Crust,240.0087,58.01793,0.0,10/26/1818 +6.55094,45.22013,264,3,5,22,52,56,3.75,5.0,fr,16490,5,705153,1,1,Active Shallow Crust,128.8968,89.96747,0.0,03/05/0264 +6.55094,45.22013,5299,11,11,0,23,22,3.85,5.0,fr,16491,105,705159,1,1,Active Shallow Crust,240.0108,57.99766,0.0,11/11/5299 +6.55094,45.22013,3808,10,3,12,55,30,3.95,5.0,fr,16492,76,705168,1,2,Active Shallow Crust,0.0,89.99104,0.0,10/03/3808 +6.55094,45.22013,6599,11,25,12,32,32,3.95,5.0,fr,16493,131,705168,1,2,Active Shallow Crust,0.0,89.99104,0.0,11/25/6599 +6.55094,45.22013,9885,7,2,15,31,3,3.95,5.0,fr,16494,197,705174,1,1,Active Shallow Crust,0.0,89.99094,-90.0,07/02/9885 +6.55094,45.22013,6219,3,22,22,36,38,4.05,15.0,fr,16495,124,705181,1,1,Active Shallow Crust,0.0,89.98801,0.0,03/22/6219 +6.55094,45.22013,4839,3,4,14,44,9,4.05,5.0,fr,16496,96,705189,1,1,Active Shallow Crust,128.8907,89.99401,0.0,03/04/4839 +6.55094,45.22013,6350,2,21,1,13,0,4.15,15.0,fr,16497,126,705196,1,1,Active Shallow Crust,240.0087,57.99693,0.0,02/21/6350 +6.55094,45.22013,1849,9,2,14,38,25,4.25,5.0,fr,16498,36,705213,1,1,Active Shallow Crust,128.8938,89.9809,0.0,09/02/1849 +6.55094,45.22013,4669,11,1,6,3,38,4.45,5.0,fr,16499,93,705228,1,1,Active Shallow Crust,0.0,89.98992,0.0,11/01/4669 +6.55094,45.22013,7040,4,9,11,4,44,4.55,27.5,fr,16500,140,705245,1,1,Active Shallow Crust,240.0089,57.9973,0.0,04/09/7040 +6.55094,45.22013,5617,10,3,11,23,32,4.65,27.5,fr,16501,112,705257,1,1,Active Shallow Crust,240.0105,57.99414,0.0,10/03/5617 +6.55094,45.22013,2686,6,6,4,38,50,4.85,5.0,fr,16502,53,705285,1,1,Active Shallow Crust,128.8928,89.9894,0.0,06/06/2686 +2.67086,51.93471,6622,2,14,5,18,27,3.65,5.0,fr,16503,132,705615,1,1,Active Shallow Crust,240.0019,58.01271,0.0,02/14/6622 +1.84101,40.81731,7304,9,25,5,39,58,3.55,5.0,fr,16504,146,706089,1,1,Active Shallow Crust,128.897,89.99332,0.0,09/25/7304 +1.84101,40.81731,4803,7,31,18,42,29,3.65,5.0,fr,16505,96,706092,1,1,Active Shallow Crust,0.0,89.9898,0.0,07/31/4803 +1.84101,40.81731,8312,10,1,14,14,8,3.85,5.0,fr,16506,166,706116,1,1,Active Shallow Crust,0.0,89.99055,0.0,10/01/8312 +1.84101,40.81731,3563,5,12,8,7,34,3.85,15.0,fr,16507,71,706117,1,1,Active Shallow Crust,0.0,89.99055,0.0,05/12/3563 +1.84101,40.81731,7914,7,21,12,20,41,3.85,5.0,fr,16508,158,706119,1,1,Active Shallow Crust,240.01,57.99772,0.0,07/21/7914 +1.84101,40.81731,9035,4,16,2,26,57,4.15,5.0,fr,16509,180,706152,1,1,Active Shallow Crust,0.0,89.99044,0.0,04/16/9035 +1.84101,40.81731,8096,10,20,14,16,33,4.15,5.0,fr,16510,161,706158,1,1,Active Shallow Crust,0.0,89.99033,-90.0,10/20/8096 +1.84101,40.81731,8191,7,31,1,59,51,4.15,15.0,fr,16511,163,706159,1,1,Active Shallow Crust,0.0,89.99033,-90.0,07/31/8191 +5.96221,49.63351,4151,2,19,1,4,45,3.55,5.0,fr,16512,83,706560,1,2,Active Shallow Crust,0.0,89.98694,0.0,02/19/4151 +5.96221,49.63351,9546,7,18,6,27,5,3.55,5.0,fr,16513,190,706560,1,2,Active Shallow Crust,0.0,89.98694,0.0,07/18/9546 +5.96221,49.63351,7692,4,14,13,49,18,3.75,15.0,fr,16514,153,706585,1,1,Active Shallow Crust,0.0,89.98962,0.0,04/14/7692 +4.69135,51.43536,7312,4,3,12,30,29,3.65,5.0,fr,16515,146,707058,1,1,Active Shallow Crust,0.0,89.98866,-90.0,04/03/7312 +4.69135,51.43536,7124,1,14,11,9,18,3.85,15.0,fr,16516,142,707077,1,1,Active Shallow Crust,0.0,89.9911,0.0,01/14/7124 +4.69135,51.43536,6155,12,17,6,48,10,4.05,5.0,fr,16517,123,707103,1,1,Active Shallow Crust,240.0073,58.00632,0.0,12/17/6155 +4.69135,51.43536,4457,3,13,1,9,17,4.35,27.5,fr,16518,89,707138,1,1,Active Shallow Crust,0.0,89.98999,0.0,03/13/4457 +5.34057,41.19078,5690,5,1,14,49,16,3.55,5.0,fr,16519,113,707520,1,1,Active Shallow Crust,0.0,89.99241,0.0,05/01/5690 +5.34057,41.19078,8773,5,29,3,1,9,3.65,15.0,fr,16520,175,707539,1,1,Active Shallow Crust,0.0,89.99316,-90.0,05/29/8773 +5.34057,41.19078,1475,2,8,20,59,15,3.85,5.0,fr,16521,29,707562,1,1,Active Shallow Crust,0.0,89.98913,-90.0,02/08/1475 +5.34057,41.19078,6806,4,21,17,30,6,4.05,5.0,fr,16522,136,707580,1,1,Active Shallow Crust,0.0,89.99146,0.0,04/21/6806 +5.34057,41.19078,6944,1,2,23,39,31,4.05,27.5,fr,16523,138,707585,1,1,Active Shallow Crust,240.0045,58.00565,0.0,01/02/6944 +7.03459,45.67142,3970,9,19,5,3,52,3.55,5.0,fr,16524,79,708000,1,1,Active Shallow Crust,0.0,89.99295,0.0,09/19/3970 +7.03459,45.67142,6742,1,15,20,9,39,3.55,15.0,fr,16525,134,708001,1,1,Active Shallow Crust,0.0,89.99295,0.0,01/15/6742 +7.03459,45.67142,8200,6,14,23,54,8,3.55,5.0,fr,16526,163,708006,1,1,Active Shallow Crust,0.0,89.99287,-90.0,06/14/8200 +7.03459,45.67142,3267,7,14,21,59,18,3.55,15.0,fr,16527,65,708007,1,1,Active Shallow Crust,0.0,89.99287,-90.0,07/14/3267 +7.03459,45.67142,8216,3,18,10,49,53,3.65,5.0,fr,16528,164,708015,1,1,Active Shallow Crust,240.0014,58.01242,0.0,03/18/8216 +7.03459,45.67142,3969,12,15,6,11,24,3.65,5.0,fr,16529,79,708021,1,1,Active Shallow Crust,128.9008,89.96351,0.0,12/15/3969 +7.03459,45.67142,250,1,10,7,22,33,3.75,5.0,fr,16530,4,708024,1,1,Active Shallow Crust,0.0,89.98881,0.0,01/10/0250 +7.03459,45.67142,4994,7,18,9,31,40,3.75,5.0,fr,16531,99,708027,1,1,Active Shallow Crust,240.0083,58.01819,0.0,07/18/4994 +7.03459,45.67142,8630,3,20,6,25,55,4.05,5.0,fr,16532,172,708060,1,1,Active Shallow Crust,0.0,89.98811,0.0,03/20/8630 +7.03459,45.67142,2954,10,28,6,57,0,4.15,5.0,fr,16533,59,708072,1,1,Active Shallow Crust,0.0,89.9894,0.0,10/28/2954 +7.03459,45.67142,1383,12,4,23,27,47,4.75,15.0,fr,16534,27,708145,1,1,Active Shallow Crust,0.0,89.98938,0.0,12/04/1383 +6.05183,46.33375,6465,12,7,5,19,2,3.55,5.0,fr,16535,129,708960,1,1,Active Shallow Crust,0.0,89.99303,0.0,12/07/6465 +6.05183,46.33375,5554,6,2,3,54,31,3.55,27.5,fr,16536,111,708962,1,1,Active Shallow Crust,0.0,89.99303,0.0,06/02/5554 +6.05183,46.33375,2511,12,9,8,4,15,3.55,5.0,fr,16537,50,708963,1,1,Active Shallow Crust,240.0124,57.99788,0.0,12/09/2511 +6.05183,46.33375,7059,6,23,23,34,21,3.55,15.0,fr,16538,141,708964,1,1,Active Shallow Crust,240.0124,57.99788,0.0,06/23/7059 +6.05183,46.33375,315,12,4,3,49,4,3.55,5.0,fr,16539,6,708966,1,2,Active Shallow Crust,0.0,89.99296,-90.0,12/04/0315 +6.05183,46.33375,250,4,12,2,9,6,3.55,5.0,fr,16540,4,708966,1,2,Active Shallow Crust,0.0,89.99296,-90.0,04/12/0250 +6.05183,46.33375,8513,12,23,11,8,58,3.65,5.0,fr,16541,170,708972,1,1,Active Shallow Crust,0.0,89.98759,0.0,12/23/8513 +6.05183,46.33375,8297,11,10,20,0,33,3.75,5.0,fr,16542,165,708984,1,2,Active Shallow Crust,0.0,89.98894,0.0,11/10/8297 +6.05183,46.33375,2788,6,11,10,32,40,3.75,5.0,fr,16543,55,708984,1,2,Active Shallow Crust,0.0,89.98894,0.0,06/11/2788 +6.05183,46.33375,5592,11,1,10,59,14,3.85,5.0,fr,16544,111,708996,1,4,Active Shallow Crust,0.0,89.99014,0.0,11/01/5592 +6.05183,46.33375,9780,10,13,7,58,45,3.85,5.0,fr,16545,195,708996,1,4,Active Shallow Crust,0.0,89.99014,0.0,10/13/9780 +6.05183,46.33375,7778,4,7,8,15,34,3.85,5.0,fr,16546,155,708996,1,4,Active Shallow Crust,0.0,89.99014,0.0,04/07/7778 +6.05183,46.33375,9503,8,29,5,1,31,3.85,5.0,fr,16547,190,708996,1,4,Active Shallow Crust,0.0,89.99014,0.0,08/29/9503 +6.05183,46.33375,4231,9,6,2,38,47,3.95,5.0,fr,16548,84,709011,1,1,Active Shallow Crust,240.0201,58.00424,0.0,09/06/4231 +6.05183,46.33375,3550,2,9,21,8,45,3.95,27.5,fr,16549,70,709013,1,1,Active Shallow Crust,240.0201,58.00424,0.0,02/09/3550 +6.05183,46.33375,8234,7,24,9,9,24,3.95,15.0,fr,16550,164,709015,1,1,Active Shallow Crust,0.0,89.99111,-90.0,07/24/8234 +6.05183,46.33375,7257,9,18,12,26,39,4.35,5.0,fr,16551,145,709065,1,1,Active Shallow Crust,128.8973,89.98301,0.0,09/18/7257 +6.05183,46.33375,236,9,27,8,54,20,4.65,27.5,fr,16552,4,709103,1,1,Active Shallow Crust,128.8911,89.9872,0.0,09/27/0236 +6.05183,46.33375,3886,12,3,17,35,40,4.75,5.0,fr,16553,77,709104,1,1,Active Shallow Crust,0.0,89.9895,0.0,12/03/3886 +6.05183,46.33375,1214,5,13,2,14,14,4.75,15.0,fr,16554,24,709111,1,1,Active Shallow Crust,0.0,89.98938,-90.0,05/13/1214 +6.05183,46.33375,2457,1,3,6,54,29,4.85,5.0,fr,16555,49,709122,1,1,Active Shallow Crust,0.0,89.99054,-90.0,01/03/2457 +6.05183,46.33375,9319,6,13,4,53,13,5.05,5.0,fr,16556,186,709140,1,1,Active Shallow Crust,0.0,89.99009,0.0,06/13/9319 +6.05183,46.33375,8854,8,30,15,30,29,5.35,15.0,fr,16557,177,709177,1,1,Active Shallow Crust,0.0,89.99036,0.0,08/30/8854 +2.3436,43.57228,6766,1,28,8,41,22,3.55,5.0,fr,16558,135,709440,1,1,Active Shallow Crust,0.0,89.98904,0.0,01/28/6766 +2.3436,43.57228,5143,2,6,12,25,3,3.65,5.0,fr,16559,102,709452,1,1,Active Shallow Crust,0.0,89.99023,0.0,02/06/5143 +2.3436,43.57228,2678,1,18,11,19,26,3.75,15.0,fr,16560,53,709465,1,1,Active Shallow Crust,0.0,89.99129,0.0,01/18/2678 +2.3436,43.57228,4977,5,27,0,11,23,4.15,5.0,fr,16561,99,709515,1,1,Active Shallow Crust,240.0081,57.99699,0.0,05/27/4977 +4.31179,52.71333,7700,2,2,23,38,29,3.75,15.0,fr,16562,153,710425,1,1,Active Shallow Crust,0.0,89.9903,0.0,02/02/7700 +5.74645,41.24245,2788,10,20,21,37,13,3.55,15.0,fr,16563,55,710881,1,1,Active Shallow Crust,0.0,89.99242,0.0,10/20/2788 +5.74645,41.24245,6141,10,17,17,46,7,3.75,5.0,fr,16564,122,710904,1,1,Active Shallow Crust,0.0,89.98795,0.0,10/17/6141 +5.74645,41.24245,4333,4,1,5,59,3,3.75,5.0,fr,16565,86,710907,1,1,Active Shallow Crust,240.0084,58.01762,0.0,04/01/4333 +-2.85505,49.5673,6720,1,17,16,28,29,3.65,5.0,fr,16566,134,711375,1,1,Active Shallow Crust,240.0017,58.01291,0.0,01/17/6720 +-2.85505,49.5673,9114,7,5,22,50,31,3.85,5.0,fr,16567,182,711396,1,1,Active Shallow Crust,0.0,89.99074,0.0,07/05/9114 +-2.85505,49.5673,2558,8,29,18,15,40,4.05,15.0,fr,16568,51,711421,1,1,Active Shallow Crust,0.0,89.99081,0.0,08/29/2558 +0.97024,47.43217,7934,5,9,19,25,11,3.65,5.0,fr,16569,158,711852,1,1,Active Shallow Crust,0.0,89.99012,0.0,05/09/7934 +0.97024,47.43217,8237,2,4,5,17,13,3.65,15.0,fr,16570,164,711853,1,1,Active Shallow Crust,0.0,89.99012,0.0,02/04/8237 +0.97024,47.43217,7024,8,14,4,55,4,3.75,5.0,fr,16571,140,711864,1,2,Active Shallow Crust,0.0,89.98984,0.0,08/14/7024 +0.97024,47.43217,3080,1,8,1,52,26,3.75,5.0,fr,16572,61,711864,1,2,Active Shallow Crust,0.0,89.98984,0.0,01/08/3080 +0.97024,47.43217,164,7,23,23,30,48,3.75,15.0,fr,16573,3,711865,1,1,Active Shallow Crust,0.0,89.98984,0.0,07/23/0164 +0.97024,47.43217,6725,1,13,9,52,35,3.85,27.5,fr,16574,134,711881,1,1,Active Shallow Crust,240.011,57.99791,0.0,01/13/6725 +0.97024,47.43217,6887,12,6,10,31,58,4.05,5.0,fr,16575,137,711900,1,1,Active Shallow Crust,0.0,89.98993,0.0,12/06/6887 +-3.13782,47.38029,5034,6,14,23,22,10,3.65,15.0,fr,16576,100,712333,1,1,Active Shallow Crust,0.0,89.99088,0.0,06/14/5034 +-3.13782,47.38029,4868,6,9,1,56,8,3.95,5.0,fr,16577,97,712368,1,2,Active Shallow Crust,0.0,89.98923,0.0,06/09/4868 +-3.13782,47.38029,2109,5,26,17,14,45,3.95,5.0,fr,16578,42,712368,1,2,Active Shallow Crust,0.0,89.98923,0.0,05/26/2109 +-3.13782,47.38029,1585,2,17,15,23,16,4.05,5.0,fr,16579,31,712380,1,1,Active Shallow Crust,0.0,89.9904,0.0,02/17/1585 +-3.13782,47.38029,3148,2,7,22,20,6,4.05,5.0,fr,16580,62,712386,1,1,Active Shallow Crust,0.0,89.99029,-90.0,02/07/3148 +-3.13782,47.38029,6992,9,9,2,58,26,4.65,15.0,fr,16581,139,712462,1,1,Active Shallow Crust,128.8909,89.98702,0.0,09/09/6992 +-3.13782,47.38029,623,5,15,10,0,39,4.95,5.0,fr,16582,12,712488,1,1,Active Shallow Crust,0.0,89.98978,0.0,05/15/0623 +-1.2864,43.86526,1662,5,10,21,20,7,3.75,5.0,fr,16583,33,712824,1,1,Active Shallow Crust,0.0,89.98989,0.0,05/10/1662 +-1.2864,43.86526,4098,7,14,2,13,26,3.75,5.0,fr,16584,81,712827,1,1,Active Shallow Crust,240.008,58.01756,0.0,07/14/4098 +-1.2864,43.86526,6149,6,16,5,17,25,3.95,5.0,fr,16585,122,712857,1,1,Active Shallow Crust,128.9008,89.99369,0.0,06/16/6149 +5.60118,49.7115,5615,2,2,23,57,36,3.55,5.0,fr,16586,112,713280,1,1,Active Shallow Crust,0.0,89.98696,0.0,02/02/5615 +5.60118,49.7115,6937,11,29,22,28,2,3.75,5.0,fr,16587,138,713304,1,1,Active Shallow Crust,0.0,89.98964,0.0,11/29/6937 +5.60118,49.7115,1589,1,4,22,34,21,3.85,5.0,fr,16588,31,713319,1,1,Active Shallow Crust,240.0109,57.99792,0.0,01/04/1589 +5.60118,49.7115,5059,5,21,4,24,17,4.05,5.0,fr,16589,101,713346,1,1,Active Shallow Crust,0.0,89.98887,-90.0,05/21/5059 +5.60118,49.7115,4558,4,15,9,2,8,4.25,5.0,fr,16590,91,713364,1,1,Active Shallow Crust,0.0,89.99126,0.0,04/15/4558 +8.12438,45.79376,3435,12,11,19,0,49,3.55,5.0,fr,16591,68,713760,1,4,Active Shallow Crust,0.0,89.98594,0.0,12/11/3435 +8.12438,45.79376,9623,3,21,10,24,28,3.55,5.0,fr,16592,192,713760,1,4,Active Shallow Crust,0.0,89.98594,0.0,03/21/9623 +8.12438,45.79376,9282,2,11,23,29,55,3.55,5.0,fr,16593,185,713760,1,4,Active Shallow Crust,0.0,89.98594,0.0,02/11/9282 +8.12438,45.79376,9677,10,29,17,6,32,3.55,5.0,fr,16594,193,713760,1,4,Active Shallow Crust,0.0,89.98594,0.0,10/29/9677 +8.12438,45.79376,4166,2,23,20,12,44,3.55,15.0,fr,16595,83,713761,1,2,Active Shallow Crust,0.0,89.98594,0.0,02/23/4166 +8.12438,45.79376,6895,4,26,6,55,6,3.55,15.0,fr,16596,137,713761,1,2,Active Shallow Crust,0.0,89.98594,0.0,04/26/6895 +8.12438,45.79376,3276,2,24,15,39,32,3.55,15.0,fr,16597,65,713764,1,1,Active Shallow Crust,240.0101,57.9987,0.0,02/24/3276 +8.12438,45.79376,5283,4,13,20,17,4,3.65,15.0,fr,16598,105,713773,1,1,Active Shallow Crust,0.0,89.98746,0.0,04/13/5283 +8.12438,45.79376,4400,3,16,23,46,36,3.65,27.5,fr,16599,87,713774,1,1,Active Shallow Crust,0.0,89.98746,0.0,03/16/4400 +8.12438,45.79376,2186,9,9,14,42,9,3.75,5.0,fr,16600,43,713784,1,2,Active Shallow Crust,0.0,89.98883,0.0,09/09/2186 +8.12438,45.79376,9566,7,21,7,42,47,3.75,5.0,fr,16601,191,713784,1,2,Active Shallow Crust,0.0,89.98883,0.0,07/21/9566 +8.12438,45.79376,8091,11,2,20,42,7,3.85,5.0,fr,16602,161,713796,1,2,Active Shallow Crust,0.0,89.99004,0.0,11/02/8091 +8.12438,45.79376,9122,12,2,7,28,0,3.85,5.0,fr,16603,182,713796,1,2,Active Shallow Crust,0.0,89.99004,0.0,12/02/9122 +8.12438,45.79376,6760,3,5,1,19,58,3.85,15.0,fr,16604,135,713797,1,1,Active Shallow Crust,0.0,89.99004,0.0,03/05/6760 +8.12438,45.79376,8704,8,31,14,41,39,3.85,5.0,fr,16605,174,713805,1,1,Active Shallow Crust,128.8949,89.99503,0.0,08/31/8704 +8.12438,45.79376,447,9,5,14,48,16,3.95,27.5,fr,16606,8,713816,1,1,Active Shallow Crust,0.0,89.99103,-90.0,09/05/0447 +8.12438,45.79376,344,7,5,11,29,13,3.95,15.0,fr,16607,6,713818,1,1,Active Shallow Crust,128.9028,89.99113,0.0,07/05/0344 +8.12438,45.79376,8385,6,14,10,8,51,4.05,5.0,fr,16608,167,713820,1,1,Active Shallow Crust,0.0,89.99209,0.0,06/14/8385 +1.44079,46.12726,1735,4,6,4,4,29,3.55,5.0,fr,16609,34,714240,1,2,Active Shallow Crust,0.0,89.98952,0.0,04/06/1735 +1.44079,46.12726,6004,5,28,20,27,20,3.55,5.0,fr,16610,120,714240,1,2,Active Shallow Crust,0.0,89.98952,0.0,05/28/6004 +1.44079,46.12726,3334,8,16,8,25,36,3.75,5.0,fr,16611,66,714264,1,1,Active Shallow Crust,0.0,89.99029,0.0,08/16/3334 +1.44079,46.12726,6034,3,31,11,5,53,3.75,15.0,fr,16612,120,714265,1,1,Active Shallow Crust,0.0,89.99029,0.0,03/31/6034 +1.44079,46.12726,3658,2,16,1,22,20,3.85,5.0,fr,16613,73,714276,1,1,Active Shallow Crust,0.0,89.9901,0.0,02/16/3658 +1.44079,46.12726,474,3,8,2,11,47,3.85,5.0,fr,16614,9,714279,1,1,Active Shallow Crust,240.0109,57.99785,0.0,03/08/0474 +1.44079,46.12726,3853,12,27,21,57,8,3.95,5.0,fr,16615,77,714288,1,1,Active Shallow Crust,0.0,89.99008,0.0,12/27/3853 +1.44079,46.12726,2910,7,5,5,5,19,4.15,5.0,fr,16616,58,714312,1,1,Active Shallow Crust,0.0,89.99036,0.0,07/05/2910 +1.44079,46.12726,5878,8,13,19,26,11,4.15,15.0,fr,16617,117,714313,1,1,Active Shallow Crust,0.0,89.99036,0.0,08/13/5878 +1.44079,46.12726,6955,1,3,18,28,29,4.25,5.0,fr,16618,139,714324,1,1,Active Shallow Crust,0.0,89.98985,0.0,01/03/6955 +1.44079,46.12726,95,7,9,7,59,1,4.45,5.0,fr,16619,1,714348,1,1,Active Shallow Crust,0.0,89.99008,0.0,07/09/0095 +1.44079,46.12726,9211,9,4,16,40,3,4.65,15.0,fr,16620,184,714373,1,1,Active Shallow Crust,0.0,89.99015,0.0,09/04/9211 +1.72218,52.16752,2027,12,28,8,10,31,3.65,15.0,fr,16621,40,714736,1,1,Active Shallow Crust,240.0015,58.01315,0.0,12/28/2027 +1.72218,52.16752,9400,3,8,0,9,2,3.65,27.5,fr,16622,187,714737,1,1,Active Shallow Crust,240.0015,58.01306,0.0,03/08/9400 +1.72218,52.16752,362,3,16,12,38,30,3.65,5.0,fr,16623,7,714738,1,1,Active Shallow Crust,0.0,89.99024,-90.0,03/16/0362 +1.72218,52.16752,4255,8,25,17,34,28,3.85,5.0,fr,16624,85,714765,1,1,Active Shallow Crust,128.895,89.99343,0.0,08/25/4255 +1.72218,52.16752,2048,4,11,19,13,47,5.35,5.0,fr,16625,40,714939,1,1,Active Shallow Crust,240.0297,57.99868,0.0,04/11/2048 +0.7141,49.13994,4687,8,23,20,18,13,3.55,5.0,fr,16626,93,715200,1,2,Active Shallow Crust,0.0,89.9901,0.0,08/23/4687 +0.7141,49.13994,6880,5,19,19,34,23,3.55,5.0,fr,16627,137,715200,1,2,Active Shallow Crust,0.0,89.9901,0.0,05/19/6880 +0.7141,49.13994,6559,3,10,11,26,31,3.55,15.0,fr,16628,131,715210,1,1,Active Shallow Crust,128.896,89.99381,0.0,03/10/6559 +0.7141,49.13994,6858,4,27,11,20,12,3.75,5.0,fr,16629,137,715224,1,2,Active Shallow Crust,0.0,89.99017,0.0,04/27/6858 +0.7141,49.13994,8563,4,22,11,54,17,3.75,5.0,fr,16630,171,715224,1,2,Active Shallow Crust,0.0,89.99017,0.0,04/22/8563 +0.7141,49.13994,329,8,7,9,53,56,3.75,15.0,fr,16631,6,715225,1,1,Active Shallow Crust,0.0,89.99017,0.0,08/07/0329 +0.7141,49.13994,5593,6,12,7,20,51,4.05,27.5,fr,16632,111,715265,1,1,Active Shallow Crust,240.0064,58.00594,0.0,06/12/5593 +7.79038,44.96833,5727,7,23,11,19,21,3.55,5.0,fr,16633,114,715680,1,1,Active Shallow Crust,0.0,89.99287,0.0,07/23/5727 +7.79038,44.96833,9382,9,30,20,36,10,3.65,5.0,fr,16634,187,715692,1,1,Active Shallow Crust,0.0,89.98728,0.0,09/30/9382 +7.79038,44.96833,7740,6,8,15,45,58,3.65,5.0,fr,16635,154,715698,1,1,Active Shallow Crust,0.0,89.98714,-90.0,06/08/7740 +7.79038,44.96833,3157,3,10,17,46,30,3.75,15.0,fr,16636,63,715705,1,1,Active Shallow Crust,0.0,89.98866,0.0,03/10/3157 +7.79038,44.96833,3857,3,5,16,32,47,4.15,5.0,fr,16637,77,715755,1,1,Active Shallow Crust,240.0084,57.99726,0.0,03/05/3857 +7.79038,44.96833,609,11,5,10,13,45,4.25,5.0,fr,16638,12,715767,1,1,Active Shallow Crust,240.007,57.99398,0.0,11/05/0609 +7.79038,44.96833,9587,3,13,8,53,55,4.25,5.0,fr,16639,191,715773,1,1,Active Shallow Crust,128.8942,89.98089,0.0,03/13/9587 +7.79038,44.96833,41,12,2,20,48,23,4.65,15.0,fr,16640,0,715813,1,1,Active Shallow Crust,0.0,89.98994,0.0,12/02/0041 +7.79038,44.96833,6007,10,12,2,38,4,5.55,5.0,fr,16641,120,715920,1,1,Active Shallow Crust,0.0,89.99001,0.0,10/12/6007 +6.64199,47.56787,8225,2,11,3,49,7,3.55,5.0,fr,16642,164,716160,1,1,Active Shallow Crust,0.0,89.99319,0.0,02/11/8225 +6.64199,47.56787,8933,1,2,16,35,12,3.55,15.0,fr,16643,178,716164,1,1,Active Shallow Crust,240.0133,57.9975,0.0,01/02/8933 +6.64199,47.56787,6330,11,15,7,59,43,3.55,5.0,fr,16644,126,716169,1,1,Active Shallow Crust,128.8963,89.99319,0.0,11/15/6330 +6.64199,47.56787,1821,10,20,16,33,13,3.65,5.0,fr,16645,36,716181,1,1,Active Shallow Crust,128.8994,89.96355,0.0,10/20/1821 +6.64199,47.56787,843,1,7,4,56,9,3.85,15.0,fr,16646,16,716197,1,1,Active Shallow Crust,0.0,89.99036,0.0,01/07/0843 +6.64199,47.56787,7387,4,8,15,12,22,3.85,5.0,fr,16647,147,716202,1,1,Active Shallow Crust,0.0,89.99026,-90.0,04/08/7387 +6.64199,47.56787,4948,3,3,16,21,12,3.95,15.0,fr,16648,98,716218,1,1,Active Shallow Crust,128.9001,89.9957,0.0,03/03/4948 +6.64199,47.56787,2869,5,17,7,35,2,4.15,5.0,fr,16649,57,716232,1,1,Active Shallow Crust,0.0,89.98977,0.0,05/17/2869 +6.64199,47.56787,2788,12,20,20,29,9,4.15,5.0,fr,16650,55,716238,1,1,Active Shallow Crust,0.0,89.98965,-90.0,12/20/2788 +6.64199,47.56787,3576,9,6,11,33,38,4.35,27.5,fr,16651,71,716261,1,1,Active Shallow Crust,240.0084,57.99627,0.0,09/06/3576 +6.64199,47.56787,8390,12,22,14,7,25,4.45,27.5,fr,16652,167,716273,1,1,Active Shallow Crust,240.0051,57.99471,0.0,12/22/8390 +6.64199,47.56787,6743,8,25,4,12,33,4.65,15.0,fr,16653,134,716293,1,1,Active Shallow Crust,0.0,89.99041,0.0,08/25/6743 +6.64199,47.56787,1329,12,15,22,35,58,4.85,5.0,fr,16654,26,716316,1,1,Active Shallow Crust,0.0,89.98933,0.0,12/15/1329 +6.64199,47.56787,6167,9,13,21,55,27,5.55,5.0,fr,16655,123,716403,1,1,Active Shallow Crust,240.0336,57.99963,0.0,09/13/6167 +5.30091,41.45691,6595,5,23,9,40,45,3.75,27.5,fr,16656,131,716666,1,1,Active Shallow Crust,0.0,89.98799,0.0,05/23/6595 +1.92616,46.29102,4305,8,13,14,25,41,3.65,15.0,fr,16657,86,717142,1,1,Active Shallow Crust,128.9004,89.96352,0.0,08/13/4305 +1.92616,46.29102,4204,4,12,8,8,20,3.75,15.0,fr,16658,84,717145,1,1,Active Shallow Crust,0.0,89.99031,0.0,04/12/4204 +1.92616,46.29102,234,5,14,14,22,44,3.85,5.0,fr,16659,4,717156,1,1,Active Shallow Crust,0.0,89.99014,0.0,05/14/0234 +1.92616,46.29102,5187,12,9,14,40,10,3.85,15.0,fr,16660,103,717157,1,1,Active Shallow Crust,0.0,89.99014,0.0,12/09/5187 +1.92616,46.29102,1829,3,10,15,14,19,3.85,5.0,fr,16661,36,717159,1,1,Active Shallow Crust,240.0108,57.99792,0.0,03/10/1829 +1.92616,46.29102,4376,5,27,23,0,23,3.95,5.0,fr,16662,87,717168,1,1,Active Shallow Crust,0.0,89.9901,0.0,05/27/4376 +1.92616,46.29102,2444,12,5,7,18,45,3.95,15.0,fr,16663,48,717178,1,1,Active Shallow Crust,128.9003,89.99341,0.0,12/05/2444 +1.92616,46.29102,9392,3,21,18,0,21,4.05,5.0,fr,16664,187,717180,1,1,Active Shallow Crust,0.0,89.9902,0.0,03/21/9392 +1.92616,46.29102,6933,5,5,12,36,8,4.15,15.0,fr,16665,138,717193,1,1,Active Shallow Crust,0.0,89.99039,0.0,05/05/6933 +1.92616,46.29102,7271,11,21,13,5,35,4.25,15.0,fr,16666,145,717205,1,1,Active Shallow Crust,0.0,89.98988,0.0,11/21/7271 +1.92616,46.29102,8861,5,30,2,0,52,4.25,27.5,fr,16667,177,717206,1,1,Active Shallow Crust,0.0,89.98988,0.0,05/30/8861 +1.92616,46.29102,9704,6,20,4,53,44,4.85,5.0,fr,16668,194,717282,1,1,Active Shallow Crust,0.0,89.99014,-90.0,06/20/9704 +1.92616,46.29102,3402,9,6,23,18,58,4.85,5.0,fr,16669,68,717285,1,1,Active Shallow Crust,128.8927,89.98902,0.0,09/06/3402 +0.85244,51.49621,2039,1,12,18,1,49,3.55,5.0,fr,16670,40,717600,1,1,Active Shallow Crust,0.0,89.9898,0.0,01/12/2039 +0.85244,51.49621,9518,12,17,2,21,27,3.65,5.0,fr,16671,190,717615,1,1,Active Shallow Crust,240.0016,58.013,0.0,12/17/9518 +0.85244,51.49621,8053,10,16,15,51,21,3.75,5.0,fr,16672,161,717630,1,1,Active Shallow Crust,0.0,89.98991,-90.0,10/16/8053 +0.85244,51.49621,3552,6,18,7,7,30,3.75,5.0,fr,16673,71,717633,1,1,Active Shallow Crust,128.8961,89.96736,0.0,06/18/3552 +4.76975,42.86756,3137,1,25,3,1,36,3.55,27.5,fr,16674,62,718082,1,1,Active Shallow Crust,0.0,89.99261,0.0,01/25/3137 +4.76975,42.86756,3795,6,22,11,15,19,4.05,15.0,fr,16675,75,718141,1,1,Active Shallow Crust,0.0,89.99168,0.0,06/22/3795 +4.76975,42.86756,9676,2,6,15,14,48,4.25,15.0,fr,16676,193,718165,1,1,Active Shallow Crust,0.0,89.9901,0.0,02/06/9676 +4.76975,42.86756,486,8,10,16,37,20,4.35,15.0,fr,16677,9,718177,1,1,Active Shallow Crust,0.0,89.99117,0.0,08/10/0486 +4.29106,41.32109,5222,11,20,4,1,51,3.55,5.0,fr,16678,104,718560,1,1,Active Shallow Crust,0.0,89.99242,0.0,11/20/5222 +4.29106,41.32109,6584,3,21,14,1,34,3.55,15.0,fr,16679,131,718561,1,1,Active Shallow Crust,0.0,89.99242,0.0,03/21/6584 +4.29106,41.32109,5650,10,9,4,16,8,3.55,5.0,fr,16680,112,718563,1,1,Active Shallow Crust,240.0109,57.99836,0.0,10/09/5650 +4.29106,41.32109,3664,6,2,19,15,54,3.65,5.0,fr,16681,73,718578,1,1,Active Shallow Crust,0.0,89.99317,-90.0,06/02/3664 +4.29106,41.32109,9773,6,3,15,23,36,4.15,5.0,fr,16682,195,718632,1,1,Active Shallow Crust,0.0,89.98861,0.0,06/03/9773 +4.29106,41.32109,5798,4,10,5,51,36,4.35,27.5,fr,16683,115,718658,1,1,Active Shallow Crust,0.0,89.99095,0.0,04/10/5798 +-6.82672,47.93762,6795,5,8,3,4,9,3.85,5.0,fr,16684,135,719079,1,1,Active Shallow Crust,240.0115,57.99813,0.0,05/08/6795 +-5.02236,47.32145,1110,2,9,22,23,56,4.25,5.0,fr,16685,22,719610,1,1,Active Shallow Crust,0.0,89.99073,-90.0,02/09/1110 +-5.02236,47.32145,8138,10,31,7,46,24,4.35,27.5,fr,16686,162,719618,1,1,Active Shallow Crust,0.0,89.98911,0.0,10/31/8138 +0.10457,43.59023,4153,10,28,10,25,9,3.55,27.5,fr,16687,83,720482,1,1,Active Shallow Crust,0.0,89.98996,0.0,10/28/4153 +0.10457,43.59023,884,8,21,10,29,0,3.55,15.0,fr,16688,17,720487,1,2,Active Shallow Crust,0.0,89.98996,-90.0,08/21/0884 +0.10457,43.59023,2978,10,19,10,32,11,3.55,15.0,fr,16689,59,720487,1,2,Active Shallow Crust,0.0,89.98996,-90.0,10/19/2978 +0.10457,43.59023,3128,7,31,16,13,41,3.65,5.0,fr,16690,62,720501,1,1,Active Shallow Crust,128.9006,89.96352,0.0,07/31/3128 +0.10457,43.59023,8063,10,1,11,50,33,3.85,5.0,fr,16691,161,720522,1,1,Active Shallow Crust,0.0,89.99003,-90.0,10/01/8063 +0.10457,43.59023,6363,6,28,13,41,57,4.05,27.5,fr,16692,127,720548,1,1,Active Shallow Crust,0.0,89.99001,-90.0,06/28/6363 +0.10457,43.59023,866,7,2,7,21,20,4.25,15.0,fr,16693,17,720565,1,1,Active Shallow Crust,0.0,89.99001,0.0,07/02/0866 +0.10457,43.59023,5526,12,20,19,18,30,4.45,5.0,fr,16694,110,720588,1,1,Active Shallow Crust,0.0,89.99,0.0,12/20/5526 +6.55064,49.58219,662,1,4,17,40,55,3.55,5.0,fr,16695,13,720966,1,1,Active Shallow Crust,0.0,89.98677,-90.0,01/04/0662 +6.55064,49.58219,6585,5,16,1,42,56,3.75,5.0,fr,16696,131,720984,1,1,Active Shallow Crust,0.0,89.98962,0.0,05/16/6585 +6.55064,49.58219,2075,7,21,2,57,31,3.85,5.0,fr,16697,41,720996,1,1,Active Shallow Crust,0.0,89.99075,0.0,07/21/2075 +6.55064,49.58219,1253,1,25,10,25,14,3.95,15.0,fr,16698,25,721009,1,1,Active Shallow Crust,0.0,89.99175,0.0,01/25/1253 +6.55064,49.58219,3107,2,12,21,34,19,4.15,5.0,fr,16699,62,721032,1,1,Active Shallow Crust,0.0,89.99017,0.0,02/12/3107 +6.55064,49.58219,2063,9,2,19,11,33,4.15,15.0,fr,16700,41,721033,1,1,Active Shallow Crust,0.0,89.99017,0.0,09/02/2063 +6.55064,49.58219,1546,12,15,4,1,6,4.45,5.0,fr,16701,30,721068,1,1,Active Shallow Crust,0.0,89.99072,0.0,12/15/1546 +6.55064,49.58219,6364,3,31,7,37,50,4.55,27.5,fr,16702,127,721082,1,1,Active Shallow Crust,0.0,89.98966,0.0,03/31/6364 +6.55064,49.58219,4194,6,18,6,3,39,4.65,5.0,fr,16703,83,721092,1,2,Active Shallow Crust,0.0,89.99078,0.0,06/18/4194 +6.55064,49.58219,5655,7,16,7,43,53,4.65,5.0,fr,16704,113,721092,1,2,Active Shallow Crust,0.0,89.99078,0.0,07/16/5655 +4.8169,40.57814,2037,9,21,18,49,27,3.55,5.0,fr,16705,40,721440,1,1,Active Shallow Crust,0.0,89.99234,0.0,09/21/2037 +4.8169,40.57814,3247,5,12,10,19,2,4.25,5.0,fr,16706,64,721530,1,1,Active Shallow Crust,0.0,89.98962,-90.0,05/12/3247 +4.8169,40.57814,7434,4,18,17,46,9,5.45,15.0,fr,16707,148,721669,1,1,Active Shallow Crust,0.0,89.98969,0.0,04/18/7434 +-0.35197,45.72582,2319,11,14,21,58,50,3.55,5.0,fr,16708,46,722400,1,1,Active Shallow Crust,0.0,89.98988,0.0,11/14/2319 +-0.35197,45.72582,8765,12,26,15,24,55,3.55,5.0,fr,16709,175,722409,1,1,Active Shallow Crust,128.8963,89.99384,0.0,12/26/8765 +-0.35197,45.72582,444,2,21,18,20,21,3.65,5.0,fr,16710,8,722412,1,1,Active Shallow Crust,0.0,89.98981,0.0,02/21/0444 +-0.35197,45.72582,8128,3,12,14,6,57,3.65,15.0,fr,16711,162,722413,1,1,Active Shallow Crust,0.0,89.98981,0.0,03/12/8128 +-0.35197,45.72582,4424,5,5,14,57,44,3.65,27.5,fr,16712,88,722414,1,1,Active Shallow Crust,0.0,89.98981,0.0,05/05/4424 +-0.35197,45.72582,4286,11,23,16,41,55,3.75,15.0,fr,16713,85,722425,1,1,Active Shallow Crust,0.0,89.98987,0.0,11/23/4286 +-0.35197,45.72582,3118,2,4,14,49,19,3.75,15.0,fr,16714,62,722428,1,1,Active Shallow Crust,240.0082,58.01756,0.0,02/04/3118 +-0.35197,45.72582,2891,4,18,7,43,17,3.75,5.0,fr,16715,57,722430,1,1,Active Shallow Crust,0.0,89.9901,-90.0,04/18/2891 +-0.35197,45.72582,808,1,24,10,57,31,3.85,5.0,fr,16716,16,722439,1,1,Active Shallow Crust,240.0107,57.99778,0.0,01/24/0808 +-0.35197,45.72582,7121,4,30,2,38,3,3.95,15.0,fr,16717,142,722449,1,2,Active Shallow Crust,0.0,89.99001,0.0,04/30/7121 +-0.35197,45.72582,2734,7,17,12,18,32,3.95,15.0,fr,16718,54,722449,1,2,Active Shallow Crust,0.0,89.99001,0.0,07/17/2734 +-0.35197,45.72582,9293,12,16,5,48,1,4.55,27.5,fr,16719,185,722525,1,1,Active Shallow Crust,240.0091,57.99731,0.0,12/16/9293 +-0.35197,45.72582,1678,3,10,8,12,15,5.95,27.5,fr,16720,33,722690,1,1,Active Shallow Crust,360.0,89.99,0.0,03/10/1678 +4.16397,45.81811,8184,10,17,22,15,53,3.65,15.0,fr,16721,163,723373,1,1,Active Shallow Crust,0.0,89.98747,0.0,10/17/8184 +4.16397,45.81811,3458,8,12,19,31,55,3.65,27.5,fr,16722,69,723374,1,1,Active Shallow Crust,0.0,89.98747,0.0,08/12/3458 +4.16397,45.81811,4926,6,12,21,23,7,3.65,15.0,fr,16723,98,723382,1,1,Active Shallow Crust,128.8996,89.96351,0.0,06/12/4926 +4.16397,45.81811,3884,6,27,15,51,36,3.85,5.0,fr,16724,77,723399,1,1,Active Shallow Crust,240.0111,57.9982,0.0,06/27/3884 +4.16397,45.81811,2719,1,28,11,56,52,3.95,15.0,fr,16725,54,723418,1,1,Active Shallow Crust,128.9011,89.99335,0.0,01/28/2719 +4.16397,45.81811,5910,5,23,16,9,6,4.15,27.5,fr,16726,118,723434,1,1,Active Shallow Crust,0.0,89.98943,0.0,05/23/5910 +4.16397,45.81811,5446,3,4,1,41,52,4.45,5.0,fr,16727,108,723468,1,1,Active Shallow Crust,0.0,89.99003,0.0,03/04/5446 +4.16397,45.81811,876,10,3,0,23,16,4.75,15.0,fr,16728,17,723505,1,2,Active Shallow Crust,0.0,89.9894,0.0,10/03/0876 +4.16397,45.81811,3419,1,1,15,33,25,4.75,15.0,fr,16729,68,723505,1,2,Active Shallow Crust,0.0,89.9894,0.0,01/01/3419 +2.29772,49.34291,4214,8,12,4,17,42,3.55,5.0,fr,16730,84,723843,1,1,Active Shallow Crust,240.0125,57.99866,0.0,08/12/4214 +2.29772,49.34291,3709,7,29,20,44,55,4.05,5.0,fr,16731,74,723906,1,1,Active Shallow Crust,0.0,89.99065,-90.0,07/29/3709 +2.29772,49.34291,2506,7,8,16,24,13,4.15,15.0,fr,16732,50,723922,1,1,Active Shallow Crust,128.8969,89.99424,0.0,07/08/2506 +2.29772,49.34291,2209,12,8,16,38,7,4.45,5.0,fr,16733,44,723948,1,1,Active Shallow Crust,0.0,89.98951,0.0,12/08/2209 +7.88524,47.58355,9030,10,12,23,14,18,3.55,5.0,fr,16734,180,724320,1,6,Active Shallow Crust,0.0,89.99319,0.0,10/12/9030 +7.88524,47.58355,3547,10,4,7,3,27,3.55,5.0,fr,16735,70,724320,1,6,Active Shallow Crust,0.0,89.99319,0.0,10/04/3547 +7.88524,47.58355,8230,10,16,14,20,12,3.55,5.0,fr,16736,164,724320,1,6,Active Shallow Crust,0.0,89.99319,0.0,10/16/8230 +7.88524,47.58355,1395,4,2,11,31,36,3.55,5.0,fr,16737,27,724320,1,6,Active Shallow Crust,0.0,89.99319,0.0,04/02/1395 +7.88524,47.58355,4569,11,4,16,51,2,3.55,5.0,fr,16738,91,724320,1,6,Active Shallow Crust,0.0,89.99319,0.0,11/04/4569 +7.88524,47.58355,9261,6,23,9,24,8,3.55,5.0,fr,16739,185,724320,1,6,Active Shallow Crust,0.0,89.99319,0.0,06/23/9261 +7.88524,47.58355,9992,9,4,11,1,39,3.55,15.0,fr,16740,199,724321,1,2,Active Shallow Crust,0.0,89.99319,0.0,09/04/9992 +7.88524,47.58355,1737,3,29,22,8,47,3.55,15.0,fr,16741,34,724321,1,2,Active Shallow Crust,0.0,89.99319,0.0,03/29/1737 +7.88524,47.58355,3075,9,11,19,33,41,3.55,5.0,fr,16742,61,724323,1,2,Active Shallow Crust,240.0127,57.99799,0.0,09/11/3075 +7.88524,47.58355,3656,4,27,16,58,13,3.55,5.0,fr,16743,73,724323,1,2,Active Shallow Crust,240.0127,57.99799,0.0,04/27/3656 +7.88524,47.58355,2730,5,3,19,15,10,3.55,15.0,fr,16744,54,724324,1,2,Active Shallow Crust,240.0127,57.99799,0.0,05/03/2730 +7.88524,47.58355,6235,7,10,11,31,35,3.55,15.0,fr,16745,124,724324,1,2,Active Shallow Crust,240.0127,57.99799,0.0,07/10/6235 +7.88524,47.58355,223,6,12,7,46,13,3.55,15.0,fr,16746,4,724327,1,2,Active Shallow Crust,0.0,89.99312,-90.0,06/12/0223 +7.88524,47.58355,4726,10,17,17,7,21,3.55,15.0,fr,16747,94,724327,1,2,Active Shallow Crust,0.0,89.99312,-90.0,10/17/4726 +7.88524,47.58355,1658,8,9,14,22,25,3.55,5.0,fr,16748,33,724329,1,2,Active Shallow Crust,128.8961,89.9932,0.0,08/09/1658 +7.88524,47.58355,7897,8,21,8,44,58,3.55,5.0,fr,16749,157,724329,1,2,Active Shallow Crust,128.8961,89.9932,0.0,08/21/7897 +7.88524,47.58355,2091,8,2,22,28,39,3.55,27.5,fr,16750,41,724331,1,1,Active Shallow Crust,128.8961,89.9932,0.0,08/02/2091 +7.88524,47.58355,6990,3,22,20,47,31,3.65,15.0,fr,16751,139,724333,1,2,Active Shallow Crust,0.0,89.98788,0.0,03/22/6990 +7.88524,47.58355,1847,10,18,13,38,47,3.65,15.0,fr,16752,36,724333,1,2,Active Shallow Crust,0.0,89.98788,0.0,10/18/1847 +7.88524,47.58355,6140,6,12,7,18,42,3.65,15.0,fr,16753,122,724336,1,1,Active Shallow Crust,240.0011,58.01357,0.0,06/12/6140 +7.88524,47.58355,496,7,6,13,50,35,3.65,27.5,fr,16754,9,724337,1,2,Active Shallow Crust,240.0011,58.01348,0.0,07/06/0496 +7.88524,47.58355,7316,9,25,10,14,50,3.65,27.5,fr,16755,146,724337,1,2,Active Shallow Crust,240.0011,58.01348,0.0,09/25/7316 +7.88524,47.58355,8264,10,18,12,11,26,3.65,5.0,fr,16756,165,724338,1,1,Active Shallow Crust,0.0,89.98773,-90.0,10/18/8264 +7.88524,47.58355,511,10,13,6,19,11,3.65,15.0,fr,16757,10,724342,1,1,Active Shallow Crust,128.9001,89.96355,0.0,10/13/0511 +7.88524,47.58355,7291,12,15,10,54,35,3.75,5.0,fr,16758,145,724344,1,4,Active Shallow Crust,0.0,89.9892,0.0,12/15/7291 +7.88524,47.58355,1288,4,1,11,3,20,3.75,5.0,fr,16759,25,724344,1,4,Active Shallow Crust,0.0,89.9892,0.0,04/01/1288 +7.88524,47.58355,1973,5,23,10,31,54,3.75,5.0,fr,16760,39,724344,1,4,Active Shallow Crust,0.0,89.9892,0.0,05/23/1973 +7.88524,47.58355,9771,8,8,5,19,2,3.75,5.0,fr,16761,195,724344,1,4,Active Shallow Crust,0.0,89.9892,0.0,08/08/9771 +7.88524,47.58355,6575,1,18,8,25,30,3.75,15.0,fr,16762,131,724345,1,1,Active Shallow Crust,0.0,89.9892,0.0,01/18/6575 +7.88524,47.58355,6005,12,20,10,48,43,3.75,27.5,fr,16763,120,724346,1,1,Active Shallow Crust,0.0,89.9892,0.0,12/20/6005 +7.88524,47.58355,2653,6,24,0,37,42,3.75,5.0,fr,16764,53,724350,1,1,Active Shallow Crust,0.0,89.98907,-90.0,06/24/2653 +7.88524,47.58355,7043,4,12,18,20,18,3.85,5.0,fr,16765,140,724356,1,5,Active Shallow Crust,0.0,89.99037,0.0,04/12/7043 +7.88524,47.58355,1464,5,31,15,7,17,3.85,5.0,fr,16766,29,724356,1,5,Active Shallow Crust,0.0,89.99037,0.0,05/31/1464 +7.88524,47.58355,7070,11,30,16,33,48,3.85,5.0,fr,16767,141,724356,1,5,Active Shallow Crust,0.0,89.99037,0.0,11/30/7070 +7.88524,47.58355,5668,5,20,19,6,13,3.85,5.0,fr,16768,113,724356,1,5,Active Shallow Crust,0.0,89.99037,0.0,05/20/5668 +7.88524,47.58355,7734,2,12,6,35,50,3.85,5.0,fr,16769,154,724356,1,5,Active Shallow Crust,0.0,89.99037,0.0,02/12/7734 +7.88524,47.58355,1386,8,25,0,6,35,3.85,15.0,fr,16770,27,724357,1,2,Active Shallow Crust,0.0,89.99037,0.0,08/25/1386 +7.88524,47.58355,2080,2,1,12,8,57,3.85,15.0,fr,16771,41,724357,1,2,Active Shallow Crust,0.0,89.99037,0.0,02/01/2080 +7.88524,47.58355,6281,4,10,14,0,26,3.85,27.5,fr,16772,125,724358,1,1,Active Shallow Crust,0.0,89.99037,0.0,04/10/6281 +7.88524,47.58355,2884,12,29,2,10,36,3.85,5.0,fr,16773,57,724359,1,1,Active Shallow Crust,240.0112,57.99807,0.0,12/29/2884 +7.88524,47.58355,1905,5,23,3,17,41,3.85,27.5,fr,16774,38,724364,1,1,Active Shallow Crust,0.0,89.99026,-90.0,05/23/1905 +7.88524,47.58355,7448,1,19,2,6,3,3.95,5.0,fr,16775,148,724368,1,2,Active Shallow Crust,0.0,89.99142,0.0,01/19/7448 +7.88524,47.58355,5712,6,27,8,1,0,3.95,5.0,fr,16776,114,724368,1,2,Active Shallow Crust,0.0,89.99142,0.0,06/27/5712 +7.88524,47.58355,2639,2,28,14,4,45,3.95,27.5,fr,16777,52,724370,1,1,Active Shallow Crust,0.0,89.99142,0.0,02/28/2639 +7.88524,47.58355,5596,5,26,5,47,19,3.95,5.0,fr,16778,111,724371,1,2,Active Shallow Crust,240.0193,58.00549,0.0,05/26/5596 +7.88524,47.58355,513,6,27,5,30,3,3.95,5.0,fr,16779,10,724371,1,2,Active Shallow Crust,240.0193,58.00549,0.0,06/27/0513 +7.88524,47.58355,8292,11,27,7,39,0,3.95,15.0,fr,16780,165,724372,1,1,Active Shallow Crust,240.0193,58.00549,0.0,11/27/8292 +7.88524,47.58355,9176,8,19,21,27,24,3.95,5.0,fr,16781,183,724374,1,1,Active Shallow Crust,0.0,89.99132,-90.0,08/19/9176 +7.88524,47.58355,11,9,11,23,19,18,3.95,5.0,fr,16782,0,724377,1,1,Active Shallow Crust,128.9004,89.99356,0.0,09/11/0011 +7.88524,47.58355,5840,12,23,14,35,42,4.05,5.0,fr,16783,116,724380,1,1,Active Shallow Crust,0.0,89.98853,0.0,12/23/5840 +7.88524,47.58355,7829,6,22,11,5,22,4.05,15.0,fr,16784,156,724390,1,1,Active Shallow Crust,128.8913,89.99235,0.0,06/22/7829 +7.88524,47.58355,9696,5,3,12,1,32,4.15,5.0,fr,16785,193,724395,1,1,Active Shallow Crust,240.0087,57.99744,0.0,05/03/9696 +7.88524,47.58355,5564,12,30,19,46,16,4.25,5.0,fr,16786,111,724404,1,2,Active Shallow Crust,0.0,89.99088,0.0,12/30/5564 +7.88524,47.58355,1527,4,14,4,5,58,4.25,5.0,fr,16787,30,724404,1,2,Active Shallow Crust,0.0,89.99088,0.0,04/14/1527 +7.88524,47.58355,2142,2,18,5,14,32,4.25,27.5,fr,16788,42,724406,1,1,Active Shallow Crust,0.0,89.99088,0.0,02/18/2142 +7.88524,47.58355,3991,2,27,6,1,10,4.25,5.0,fr,16789,79,724410,1,1,Active Shallow Crust,0.0,89.99078,-90.0,02/27/3991 +7.88524,47.58355,2603,7,27,4,37,37,4.35,15.0,fr,16790,52,724417,1,1,Active Shallow Crust,0.0,89.98917,0.0,07/27/2603 +7.88524,47.58355,560,5,6,4,46,38,4.35,27.5,fr,16791,11,724418,1,1,Active Shallow Crust,0.0,89.98917,0.0,05/06/0560 +7.88524,47.58355,7234,7,26,9,32,43,4.45,5.0,fr,16792,144,724428,1,1,Active Shallow Crust,0.0,89.99035,0.0,07/26/7234 +7.88524,47.58355,718,11,23,4,31,6,4.45,15.0,fr,16793,14,724432,1,1,Active Shallow Crust,240.0055,57.9951,0.0,11/23/0718 +7.88524,47.58355,9133,1,9,6,35,20,4.55,5.0,fr,16794,182,724440,1,2,Active Shallow Crust,0.0,89.98924,0.0,01/09/9133 +7.88524,47.58355,9037,1,25,13,3,29,4.55,5.0,fr,16795,180,724440,1,2,Active Shallow Crust,0.0,89.98924,0.0,01/25/9037 +7.88524,47.58355,9795,5,9,14,2,24,4.75,5.0,fr,16796,195,724464,1,1,Active Shallow Crust,0.0,89.98975,0.0,05/09/9795 +7.88524,47.58355,9293,2,27,18,16,7,4.95,15.0,fr,16797,185,724489,1,2,Active Shallow Crust,0.0,89.9905,0.0,02/27/9293 +7.88524,47.58355,5911,8,26,9,51,29,4.95,15.0,fr,16798,118,724489,1,2,Active Shallow Crust,0.0,89.9905,0.0,08/26/5911 +7.88524,47.58355,9843,3,17,23,14,7,5.05,5.0,fr,16799,196,724503,1,1,Active Shallow Crust,240.0228,57.99771,0.0,03/17/9843 +6.02143,50.63302,9222,1,4,9,52,19,3.55,5.0,fr,16800,184,724800,1,2,Active Shallow Crust,0.0,89.98721,0.0,01/04/9222 +6.02143,50.63302,4934,2,4,19,38,34,3.55,5.0,fr,16801,98,724800,1,2,Active Shallow Crust,0.0,89.98721,0.0,02/04/4934 +6.02143,50.63302,3508,10,26,13,11,2,3.55,15.0,fr,16802,70,724801,1,4,Active Shallow Crust,0.0,89.98721,0.0,10/26/3508 +6.02143,50.63302,1999,10,24,3,6,16,3.55,15.0,fr,16803,39,724801,1,4,Active Shallow Crust,0.0,89.98721,0.0,10/24/1999 +6.02143,50.63302,275,7,19,13,1,24,3.55,15.0,fr,16804,5,724801,1,4,Active Shallow Crust,0.0,89.98721,0.0,07/19/0275 +6.02143,50.63302,5985,6,16,5,3,44,3.55,15.0,fr,16805,119,724801,1,4,Active Shallow Crust,0.0,89.98721,0.0,06/16/5985 +6.02143,50.63302,6652,12,30,14,36,46,3.55,5.0,fr,16806,133,724803,1,1,Active Shallow Crust,240.0124,57.99818,0.0,12/30/6652 +6.02143,50.63302,5311,8,17,23,23,3,3.55,27.5,fr,16807,106,724805,1,1,Active Shallow Crust,240.0124,57.99808,0.0,08/17/5311 +6.02143,50.63302,5686,7,3,8,18,31,3.55,5.0,fr,16808,113,724806,1,1,Active Shallow Crust,0.0,89.98706,-90.0,07/03/5686 +6.02143,50.63302,7050,10,22,0,46,11,3.55,5.0,fr,16809,140,724809,1,2,Active Shallow Crust,128.8951,89.99361,0.0,10/22/7050 +6.02143,50.63302,479,8,7,17,55,3,3.55,5.0,fr,16810,9,724809,1,2,Active Shallow Crust,128.8951,89.99361,0.0,08/07/0479 +6.02143,50.63302,4714,3,25,14,1,41,3.55,27.5,fr,16811,94,724811,1,2,Active Shallow Crust,128.8951,89.99361,0.0,03/25/4714 +6.02143,50.63302,9436,6,5,14,54,44,3.55,27.5,fr,16812,188,724811,1,2,Active Shallow Crust,128.8951,89.99361,0.0,06/05/9436 +6.02143,50.63302,4203,7,21,5,31,44,3.65,5.0,fr,16813,84,724812,1,3,Active Shallow Crust,0.0,89.9886,0.0,07/21/4203 +6.02143,50.63302,4821,10,3,14,32,54,3.65,5.0,fr,16814,96,724812,1,3,Active Shallow Crust,0.0,89.9886,0.0,10/03/4821 +6.02143,50.63302,9029,11,12,6,27,53,3.65,5.0,fr,16815,180,724812,1,3,Active Shallow Crust,0.0,89.9886,0.0,11/12/9029 +6.02143,50.63302,6289,1,19,13,42,14,3.65,15.0,fr,16816,125,724813,1,4,Active Shallow Crust,0.0,89.9886,0.0,01/19/6289 +6.02143,50.63302,4466,1,9,9,58,26,3.65,15.0,fr,16817,89,724813,1,4,Active Shallow Crust,0.0,89.9886,0.0,01/09/4466 +6.02143,50.63302,2447,7,3,20,36,5,3.65,15.0,fr,16818,48,724813,1,4,Active Shallow Crust,0.0,89.9886,0.0,07/03/2447 +6.02143,50.63302,3978,11,3,11,1,32,3.65,15.0,fr,16819,79,724813,1,4,Active Shallow Crust,0.0,89.9886,0.0,11/03/3978 +6.02143,50.63302,6105,3,16,4,21,6,3.65,5.0,fr,16820,122,724815,1,1,Active Shallow Crust,240.0011,58.01314,0.0,03/16/6105 +6.02143,50.63302,3185,3,25,21,13,2,3.65,15.0,fr,16821,63,724816,1,1,Active Shallow Crust,240.0011,58.01314,0.0,03/25/3185 +6.02143,50.63302,645,5,20,5,46,45,3.65,27.5,fr,16822,12,724817,1,1,Active Shallow Crust,240.0011,58.01306,0.0,05/20/0645 +6.02143,50.63302,8623,11,13,3,17,34,3.65,5.0,fr,16823,172,724818,1,1,Active Shallow Crust,0.0,89.98846,-90.0,11/13/8623 +6.02143,50.63302,4607,6,6,13,59,18,3.65,15.0,fr,16824,92,724822,1,1,Active Shallow Crust,128.9,89.9636,0.0,06/06/4607 +6.02143,50.63302,5085,2,1,9,33,4,3.75,5.0,fr,16825,101,724824,1,5,Active Shallow Crust,0.0,89.98984,0.0,02/01/5085 +6.02143,50.63302,9350,3,11,6,33,51,3.75,5.0,fr,16826,186,724824,1,5,Active Shallow Crust,0.0,89.98984,0.0,03/11/9350 +6.02143,50.63302,2766,6,18,8,35,13,3.75,5.0,fr,16827,55,724824,1,5,Active Shallow Crust,0.0,89.98984,0.0,06/18/2766 +6.02143,50.63302,649,3,27,15,50,4,3.75,5.0,fr,16828,12,724824,1,5,Active Shallow Crust,0.0,89.98984,0.0,03/27/0649 +6.02143,50.63302,1702,5,30,13,10,42,3.75,5.0,fr,16829,34,724824,1,5,Active Shallow Crust,0.0,89.98984,0.0,05/30/1702 +6.02143,50.63302,8422,9,3,1,40,6,3.75,15.0,fr,16830,168,724825,1,1,Active Shallow Crust,0.0,89.98984,0.0,09/03/8422 +6.02143,50.63302,433,12,18,23,39,39,3.75,27.5,fr,16831,8,724826,1,1,Active Shallow Crust,0.0,89.98984,0.0,12/18/0433 +6.02143,50.63302,8734,3,30,9,54,44,3.75,15.0,fr,16832,174,724828,1,1,Active Shallow Crust,240.0082,58.01764,0.0,03/30/8734 +6.02143,50.63302,9130,12,11,9,51,36,3.85,5.0,fr,16833,182,724836,1,3,Active Shallow Crust,0.0,89.99094,0.0,12/11/9130 +6.02143,50.63302,1330,11,26,5,35,31,3.85,5.0,fr,16834,26,724836,1,3,Active Shallow Crust,0.0,89.99094,0.0,11/26/1330 +6.02143,50.63302,1802,6,15,2,15,41,3.85,5.0,fr,16835,36,724836,1,3,Active Shallow Crust,0.0,89.99094,0.0,06/15/1802 +6.02143,50.63302,1172,11,3,1,24,4,3.85,15.0,fr,16836,23,724843,1,1,Active Shallow Crust,0.0,89.99084,-90.0,11/03/1172 +6.02143,50.63302,5513,5,12,9,40,9,3.85,5.0,fr,16837,110,724845,1,1,Active Shallow Crust,128.895,89.99321,0.0,05/12/5513 +6.02143,50.63302,122,5,30,5,55,43,3.95,5.0,fr,16838,2,724848,1,3,Active Shallow Crust,0.0,89.99193,0.0,05/30/0122 +6.02143,50.63302,3305,11,21,21,31,54,3.95,5.0,fr,16839,66,724848,1,3,Active Shallow Crust,0.0,89.99193,0.0,11/21/3305 +6.02143,50.63302,4922,6,12,20,29,9,3.95,5.0,fr,16840,98,724848,1,3,Active Shallow Crust,0.0,89.99193,0.0,06/12/4922 +6.02143,50.63302,5417,6,17,19,41,17,3.95,15.0,fr,16841,108,724849,1,1,Active Shallow Crust,0.0,89.99193,0.0,06/17/5417 +6.02143,50.63302,7110,1,1,1,21,19,3.95,5.0,fr,16842,142,724851,1,1,Active Shallow Crust,240.0203,58.00523,0.0,01/01/7110 +6.02143,50.63302,2895,11,11,3,27,10,3.95,5.0,fr,16843,57,724857,1,1,Active Shallow Crust,128.8988,89.99395,0.0,11/11/2895 +6.02143,50.63302,5575,9,23,0,36,38,4.05,5.0,fr,16844,111,724860,1,1,Active Shallow Crust,0.0,89.98921,0.0,09/23/5575 +6.02143,50.63302,3320,5,25,11,43,42,4.05,27.5,fr,16845,66,724862,1,2,Active Shallow Crust,0.0,89.98921,0.0,05/25/3320 +6.02143,50.63302,1371,1,15,9,38,8,4.05,27.5,fr,16846,27,724862,1,2,Active Shallow Crust,0.0,89.98921,0.0,01/15/1371 +6.02143,50.63302,9252,8,9,3,21,26,4.05,15.0,fr,16847,185,724867,1,1,Active Shallow Crust,0.0,89.98908,-90.0,08/09/9252 +6.02143,50.63302,2829,7,7,11,7,53,4.25,5.0,fr,16848,56,724887,1,1,Active Shallow Crust,240.0081,57.99446,0.0,07/07/2829 +6.02143,50.63302,4113,7,11,23,6,59,4.35,5.0,fr,16849,82,724896,1,2,Active Shallow Crust,0.0,89.98981,0.0,07/11/4113 +6.02143,50.63302,5903,5,27,9,46,13,4.35,5.0,fr,16850,118,724896,1,2,Active Shallow Crust,0.0,89.98981,0.0,05/27/5903 +6.02143,50.63302,3643,1,29,18,9,10,4.35,5.0,fr,16851,72,724902,1,1,Active Shallow Crust,0.0,89.98969,-90.0,01/29/3643 +6.02143,50.63302,809,9,18,2,43,37,4.55,5.0,fr,16852,16,724920,1,1,Active Shallow Crust,0.0,89.98988,0.0,09/18/0809 +6.02143,50.63302,842,11,27,21,39,53,4.55,27.5,fr,16853,16,724925,1,1,Active Shallow Crust,240.0109,57.99772,0.0,11/27/0842 +6.02143,50.63302,1651,9,23,13,33,56,5.05,5.0,fr,16854,33,724980,1,1,Active Shallow Crust,0.0,89.98976,0.0,09/23/1651 +6.02143,50.63302,1798,8,29,14,6,12,5.15,5.0,fr,16855,35,724998,1,1,Active Shallow Crust,0.0,89.98975,-90.0,08/29/1798 +6.02143,50.63302,657,5,28,1,23,9,5.15,15.0,fr,16856,13,724999,1,1,Active Shallow Crust,0.0,89.98975,-90.0,05/28/0657 +6.02141,50.633,438,3,25,15,11,14,7.15,17.5,fr,16857,8,725241,1,1,Active Shallow Crust,128.7233,89.99013,0.0,03/25/0438 +6.51289,45.478,1706,8,31,3,46,7,3.55,5.0,fr,16858,34,725280,1,2,Active Shallow Crust,0.0,89.99293,0.0,08/31/1706 +6.51289,45.478,6465,1,7,4,1,23,3.55,5.0,fr,16859,129,725280,1,2,Active Shallow Crust,0.0,89.99293,0.0,01/07/6465 +6.51289,45.478,5377,3,18,23,7,32,3.55,15.0,fr,16860,107,725281,1,2,Active Shallow Crust,0.0,89.99293,0.0,03/18/5377 +6.51289,45.478,601,12,15,13,40,33,3.55,15.0,fr,16861,12,725281,1,2,Active Shallow Crust,0.0,89.99293,0.0,12/15/0601 +6.51289,45.478,8981,11,16,3,17,14,3.55,5.0,fr,16862,179,725286,1,1,Active Shallow Crust,0.0,89.99285,-90.0,11/16/8981 +6.51289,45.478,4365,7,15,13,30,46,3.55,15.0,fr,16863,87,725287,1,1,Active Shallow Crust,0.0,89.99285,-90.0,07/15/4365 +6.51289,45.478,2323,4,23,4,42,42,3.65,5.0,fr,16864,46,725292,1,4,Active Shallow Crust,0.0,89.9874,0.0,04/23/2323 +6.51289,45.478,5402,7,30,12,19,37,3.65,5.0,fr,16865,108,725292,1,4,Active Shallow Crust,0.0,89.9874,0.0,07/30/5402 +6.51289,45.478,7557,12,4,19,19,39,3.65,5.0,fr,16866,151,725292,1,4,Active Shallow Crust,0.0,89.9874,0.0,12/04/7557 +6.51289,45.478,5331,11,24,18,11,40,3.65,5.0,fr,16867,106,725292,1,4,Active Shallow Crust,0.0,89.9874,0.0,11/24/5331 +6.51289,45.478,1534,5,3,5,48,10,3.65,5.0,fr,16868,30,725301,1,1,Active Shallow Crust,128.9012,89.9635,0.0,05/03/1534 +6.51289,45.478,238,6,28,8,5,7,3.75,5.0,fr,16869,4,725304,1,1,Active Shallow Crust,0.0,89.98877,0.0,06/28/0238 +6.51289,45.478,1835,7,14,21,2,17,3.85,5.0,fr,16870,36,725316,1,2,Active Shallow Crust,0.0,89.98999,0.0,07/14/1835 +6.51289,45.478,5473,10,21,22,29,5,3.85,5.0,fr,16871,109,725316,1,2,Active Shallow Crust,0.0,89.98999,0.0,10/21/5473 +6.51289,45.478,7782,12,3,7,23,13,3.85,5.0,fr,16872,155,725322,1,1,Active Shallow Crust,0.0,89.98988,-90.0,12/03/7782 +6.51289,45.478,9405,7,23,0,54,21,3.95,5.0,fr,16873,188,725328,1,1,Active Shallow Crust,0.0,89.99107,0.0,07/23/9405 +6.51289,45.478,3320,7,16,6,47,47,4.25,5.0,fr,16874,66,725364,1,1,Active Shallow Crust,0.0,89.99052,0.0,07/16/3320 +6.51289,45.478,1199,7,15,23,13,0,4.35,5.0,fr,16875,23,725379,1,1,Active Shallow Crust,240.0085,57.99561,0.0,07/15/1199 +6.51289,45.478,7129,11,19,11,48,53,4.45,27.5,fr,16876,142,725390,1,1,Active Shallow Crust,0.0,89.98997,0.0,11/19/7129 +6.51289,45.478,8658,7,10,6,28,40,4.45,15.0,fr,16877,173,725392,1,1,Active Shallow Crust,240.0048,57.99484,0.0,07/10/8658 +6.51289,45.478,6026,3,21,16,28,15,4.55,5.0,fr,16878,120,725400,1,1,Active Shallow Crust,0.0,89.99106,0.0,03/21/6026 +6.51289,45.478,3507,12,17,17,9,17,4.65,5.0,fr,16879,70,725412,1,1,Active Shallow Crust,0.0,89.99004,0.0,12/17/3507 +6.51289,45.478,3831,3,4,15,41,21,4.85,5.0,fr,16880,76,725436,1,1,Active Shallow Crust,0.0,89.9905,0.0,03/04/3831 +6.51289,45.478,9468,7,22,3,40,39,4.85,15.0,fr,16881,189,725443,1,1,Active Shallow Crust,0.0,89.99039,-90.0,07/22/9468 +8.58265,50.92803,4210,2,18,4,38,42,4.05,5.0,fr,16882,84,726303,1,1,Active Shallow Crust,240.0065,58.0048,0.0,02/18/4210 +2.12995,46.30302,2684,2,22,8,32,32,3.55,5.0,fr,16883,53,726720,1,3,Active Shallow Crust,0.0,89.98955,0.0,02/22/2684 +2.12995,46.30302,3925,3,10,8,7,47,3.55,5.0,fr,16884,78,726720,1,3,Active Shallow Crust,0.0,89.98955,0.0,03/10/3925 +2.12995,46.30302,8704,4,23,11,41,17,3.55,5.0,fr,16885,174,726720,1,3,Active Shallow Crust,0.0,89.98955,0.0,04/23/8704 +2.12995,46.30302,1253,6,16,1,12,23,3.55,27.5,fr,16886,25,726722,1,1,Active Shallow Crust,0.0,89.98955,0.0,06/16/1253 +2.12995,46.30302,8096,8,24,22,41,47,3.55,5.0,fr,16887,161,726726,1,1,Active Shallow Crust,0.0,89.98943,-90.0,08/24/8096 +2.12995,46.30302,9452,10,3,2,55,58,3.65,15.0,fr,16888,189,726733,1,1,Active Shallow Crust,0.0,89.99068,0.0,10/03/9452 +2.12995,46.30302,3352,10,12,7,27,39,3.75,15.0,fr,16889,67,726745,1,1,Active Shallow Crust,0.0,89.98893,0.0,10/12/3352 +2.12995,46.30302,9342,7,26,8,47,46,3.85,5.0,fr,16890,186,726756,1,1,Active Shallow Crust,0.0,89.99014,0.0,07/26/9342 +2.12995,46.30302,7790,4,27,10,10,30,3.85,15.0,fr,16891,155,726757,1,1,Active Shallow Crust,0.0,89.99014,0.0,04/27/7790 +2.12995,46.30302,1986,2,19,12,16,32,4.05,5.0,fr,16892,39,726780,1,1,Active Shallow Crust,0.0,89.9902,0.0,02/19/1986 +2.12995,46.30302,9511,2,21,19,15,5,4.05,5.0,fr,16893,190,726783,1,1,Active Shallow Crust,240.0056,58.00589,0.0,02/21/9511 +2.12995,46.30302,5907,4,3,17,23,59,4.05,15.0,fr,16894,118,726787,1,1,Active Shallow Crust,0.0,89.99009,-90.0,04/03/5907 +2.12995,46.30302,5427,6,9,13,32,55,4.05,5.0,fr,16895,108,726789,1,1,Active Shallow Crust,128.8901,89.99413,0.0,06/09/5427 +2.12995,46.30302,9501,3,7,10,57,16,4.15,5.0,fr,16896,190,726795,1,1,Active Shallow Crust,240.0081,57.99741,0.0,03/07/9501 +2.12995,46.30302,8804,6,16,1,48,33,4.45,15.0,fr,16897,176,726838,1,1,Active Shallow Crust,128.8923,89.99382,0.0,06/16/8804 +2.12995,46.30302,4756,5,21,14,41,46,6.25,15.0,fr,16898,95,727045,1,1,Active Shallow Crust,0.0,89.99003,0.0,05/21/4756 +7.01799,45.01261,4160,5,21,1,12,36,3.55,5.0,fr,16899,83,727200,1,1,Active Shallow Crust,0.0,89.99287,0.0,05/21/4160 +7.01799,45.01261,6462,2,1,12,1,52,3.55,27.5,fr,16900,129,727202,1,2,Active Shallow Crust,0.0,89.99287,0.0,02/01/6462 +7.01799,45.01261,417,8,25,21,56,41,3.55,27.5,fr,16901,8,727202,1,2,Active Shallow Crust,0.0,89.99287,0.0,08/25/0417 +7.01799,45.01261,3467,5,30,10,49,19,3.55,27.5,fr,16902,69,727208,1,1,Active Shallow Crust,0.0,89.99279,-90.0,05/30/3467 +7.01799,45.01261,1866,11,15,20,25,3,3.65,5.0,fr,16903,37,727212,1,3,Active Shallow Crust,0.0,89.98729,0.0,11/15/1866 +7.01799,45.01261,8520,2,2,14,59,23,3.65,5.0,fr,16904,170,727212,1,3,Active Shallow Crust,0.0,89.98729,0.0,02/02/8520 +7.01799,45.01261,9978,7,16,5,28,10,3.65,5.0,fr,16905,199,727212,1,3,Active Shallow Crust,0.0,89.98729,0.0,07/16/9978 +7.01799,45.01261,7484,9,7,14,11,42,3.65,27.5,fr,16906,149,727223,1,1,Active Shallow Crust,128.9003,89.96349,0.0,09/07/7484 +7.01799,45.01261,1588,9,14,15,2,21,3.75,5.0,fr,16907,31,727224,1,2,Active Shallow Crust,0.0,89.98868,0.0,09/14/1588 +7.01799,45.01261,7161,1,23,0,17,48,3.75,5.0,fr,16908,143,727224,1,2,Active Shallow Crust,0.0,89.98868,0.0,01/23/7161 +7.01799,45.01261,2401,7,2,22,53,46,3.75,15.0,fr,16909,48,727225,1,3,Active Shallow Crust,0.0,89.98868,0.0,07/02/2401 +7.01799,45.01261,7183,9,24,7,58,26,3.75,15.0,fr,16910,143,727225,1,3,Active Shallow Crust,0.0,89.98868,0.0,09/24/7183 +7.01799,45.01261,526,6,30,19,39,35,3.75,15.0,fr,16911,10,727225,1,3,Active Shallow Crust,0.0,89.98868,0.0,06/30/0526 +7.01799,45.01261,1822,1,24,7,49,51,3.75,5.0,fr,16912,36,727227,1,1,Active Shallow Crust,240.0084,58.01728,0.0,01/24/1822 +7.01799,45.01261,6615,2,25,9,29,55,3.75,15.0,fr,16913,132,727228,1,2,Active Shallow Crust,240.0084,58.01728,0.0,02/25/6615 +7.01799,45.01261,4840,4,18,0,38,28,3.75,15.0,fr,16914,96,727228,1,2,Active Shallow Crust,240.0084,58.01728,0.0,04/18/4840 +7.01799,45.01261,387,4,1,10,41,10,3.85,5.0,fr,16915,7,727236,1,4,Active Shallow Crust,0.0,89.98991,0.0,04/01/0387 +7.01799,45.01261,9309,2,16,7,34,30,3.85,5.0,fr,16916,186,727236,1,4,Active Shallow Crust,0.0,89.98991,0.0,02/16/9309 +7.01799,45.01261,263,8,9,14,48,1,3.85,5.0,fr,16917,5,727236,1,4,Active Shallow Crust,0.0,89.98991,0.0,08/09/0263 +7.01799,45.01261,8799,2,3,18,8,15,3.85,5.0,fr,16918,175,727236,1,4,Active Shallow Crust,0.0,89.98991,0.0,02/03/8799 +7.01799,45.01261,3769,3,26,13,45,17,3.85,15.0,fr,16919,75,727237,1,1,Active Shallow Crust,0.0,89.98991,0.0,03/26/3769 +7.01799,45.01261,2846,4,13,3,8,11,3.85,15.0,fr,16920,56,727246,1,1,Active Shallow Crust,128.8949,89.99496,0.0,04/13/2846 +7.01799,45.01261,1068,9,29,7,41,59,3.95,27.5,fr,16921,21,727250,1,1,Active Shallow Crust,0.0,89.991,0.0,09/29/1068 +7.01799,45.01261,6140,10,2,23,54,38,3.95,5.0,fr,16922,122,727251,1,1,Active Shallow Crust,240.0189,58.00492,0.0,10/02/6140 +7.01799,45.01261,3943,1,26,11,40,12,4.05,5.0,fr,16923,78,727260,1,1,Active Shallow Crust,0.0,89.99198,0.0,01/26/3943 +7.01799,45.01261,1265,8,18,17,49,29,4.05,15.0,fr,16924,25,727261,1,1,Active Shallow Crust,0.0,89.99198,0.0,08/18/1265 +7.01799,45.01261,3872,12,2,8,48,17,4.05,15.0,fr,16925,77,727267,1,1,Active Shallow Crust,0.0,89.99189,-90.0,12/02/3872 +7.01799,45.01261,9864,5,8,3,19,4,4.15,5.0,fr,16926,197,727272,1,1,Active Shallow Crust,0.0,89.98928,0.0,05/08/9864 +7.01799,45.01261,9244,7,3,5,47,29,4.35,5.0,fr,16927,184,727296,1,1,Active Shallow Crust,0.0,89.98865,0.0,07/03/9244 +7.01799,45.01261,7509,8,17,13,16,36,4.35,5.0,fr,16928,150,727299,1,1,Active Shallow Crust,240.0081,57.9962,0.0,08/17/7509 +7.01799,45.01261,3727,5,24,12,47,2,4.45,5.0,fr,16929,74,727317,1,1,Active Shallow Crust,128.8918,89.99494,0.0,05/24/3727 +7.01799,45.01261,1034,8,2,7,11,0,4.55,5.0,fr,16930,20,727326,1,1,Active Shallow Crust,0.0,89.99088,-90.0,08/02/1034 +7.01799,45.01261,7985,10,6,19,1,34,4.65,5.0,fr,16931,159,727341,1,1,Active Shallow Crust,128.8919,89.98663,0.0,10/06/7985 +7.01799,45.01261,8714,11,8,23,30,7,4.65,15.0,fr,16932,174,727342,1,1,Active Shallow Crust,128.8919,89.98663,0.0,11/08/8714 +7.01799,45.01261,414,8,26,6,14,7,4.75,5.0,fr,16933,8,727347,1,1,Active Shallow Crust,240.0073,58.00412,0.0,08/26/0414 +7.01799,45.01261,1026,9,25,13,55,35,4.75,15.0,fr,16934,20,727348,1,1,Active Shallow Crust,240.0073,58.00412,0.0,09/25/1026 +7.01799,45.01261,6874,2,17,7,6,10,4.95,5.0,fr,16935,137,727368,1,1,Active Shallow Crust,0.0,89.99004,0.0,02/17/6874 +7.01799,45.01261,200,3,25,11,33,9,5.35,5.0,fr,16936,3,727416,1,1,Active Shallow Crust,0.0,89.99013,0.0,03/25/0200 +7.01799,45.01261,9796,1,24,19,39,16,5.45,5.0,fr,16937,195,727428,1,1,Active Shallow Crust,359.9996,89.99039,0.0,01/24/9796 +-1.64069,42.72382,9472,4,6,1,52,35,3.55,5.0,fr,16938,189,728160,1,4,Active Shallow Crust,0.0,89.99074,0.0,04/06/9472 +-1.64069,42.72382,112,5,12,3,47,40,3.55,5.0,fr,16939,2,728160,1,4,Active Shallow Crust,0.0,89.99074,0.0,05/12/0112 +-1.64069,42.72382,9582,11,21,20,20,29,3.55,5.0,fr,16940,191,728160,1,4,Active Shallow Crust,0.0,89.99074,0.0,11/21/9582 +-1.64069,42.72382,6188,1,16,3,51,12,3.55,5.0,fr,16941,123,728160,1,4,Active Shallow Crust,0.0,89.99074,0.0,01/16/6188 +-1.64069,42.72382,4945,8,6,10,12,9,3.55,15.0,fr,16942,98,728161,1,1,Active Shallow Crust,0.0,89.99074,0.0,08/06/4945 +-1.64069,42.72382,7108,2,2,23,48,44,3.55,5.0,fr,16943,142,728163,1,2,Active Shallow Crust,240.0118,57.99826,0.0,02/02/7108 +-1.64069,42.72382,4988,1,27,9,50,39,3.55,5.0,fr,16944,99,728163,1,2,Active Shallow Crust,240.0118,57.99826,0.0,01/27/4988 +-1.64069,42.72382,1267,2,3,4,41,2,3.65,5.0,fr,16945,25,728172,1,1,Active Shallow Crust,0.0,89.9901,0.0,02/03/1267 +-1.64069,42.72382,424,5,31,8,1,31,3.65,5.0,fr,16946,8,728175,1,1,Active Shallow Crust,240.0005,58.01273,0.0,05/31/0424 +-1.64069,42.72382,4341,9,9,6,7,17,3.65,5.0,fr,16947,86,728178,1,1,Active Shallow Crust,0.0,89.98998,-90.0,09/09/4341 +-1.64069,42.72382,5155,9,19,22,19,35,3.65,15.0,fr,16948,103,728179,1,1,Active Shallow Crust,0.0,89.98998,-90.0,09/19/5155 +-1.64069,42.72382,3080,2,29,11,18,35,3.65,5.0,fr,16949,61,728181,1,2,Active Shallow Crust,128.9007,89.96345,0.0,02/29/3080 +-1.64069,42.72382,386,2,10,4,24,58,3.65,5.0,fr,16950,7,728181,1,2,Active Shallow Crust,128.9007,89.96345,0.0,02/10/0386 +-1.64069,42.72382,9135,3,23,2,48,18,3.75,5.0,fr,16951,182,728184,1,2,Active Shallow Crust,0.0,89.9897,0.0,03/23/9135 +-1.64069,42.72382,4091,7,27,7,29,31,3.75,5.0,fr,16952,81,728184,1,2,Active Shallow Crust,0.0,89.9897,0.0,07/27/4091 +-1.64069,42.72382,4806,11,29,19,19,35,3.75,15.0,fr,16953,96,728185,1,1,Active Shallow Crust,0.0,89.9897,0.0,11/29/4806 +-1.64069,42.72382,350,3,13,2,30,3,3.75,27.5,fr,16954,6,728186,1,2,Active Shallow Crust,0.0,89.9897,0.0,03/13/0350 +-1.64069,42.72382,3414,1,20,3,49,4,3.75,27.5,fr,16955,68,728186,1,2,Active Shallow Crust,0.0,89.9897,0.0,01/20/3414 +-1.64069,42.72382,947,6,28,11,16,48,3.75,5.0,fr,16956,18,728187,1,1,Active Shallow Crust,240.008,58.01752,0.0,06/28/0947 +-1.64069,42.72382,3832,3,27,0,22,44,3.75,15.0,fr,16957,76,728188,1,1,Active Shallow Crust,240.008,58.01752,0.0,03/27/3832 +-1.64069,42.72382,9543,1,13,7,48,45,3.75,5.0,fr,16958,190,728190,1,1,Active Shallow Crust,0.0,89.98959,-90.0,01/13/9543 +-1.64069,42.72382,647,4,25,8,36,31,3.85,15.0,fr,16959,12,728197,1,1,Active Shallow Crust,0.0,89.98951,0.0,04/25/0647 +-1.64069,42.72382,390,1,28,2,2,6,3.85,5.0,fr,16960,7,728199,1,1,Active Shallow Crust,240.0103,57.9978,0.0,01/28/0390 +-1.64069,42.72382,5168,1,29,5,50,7,3.85,15.0,fr,16961,103,728200,1,1,Active Shallow Crust,240.0103,57.9978,0.0,01/29/5168 +-1.64069,42.72382,6617,12,20,19,21,2,3.95,15.0,fr,16962,132,728209,1,1,Active Shallow Crust,0.0,89.98949,0.0,12/20/6617 +-1.64069,42.72382,1366,2,26,8,10,58,4.05,5.0,fr,16963,27,728220,1,1,Active Shallow Crust,0.0,89.98959,0.0,02/26/1366 +-1.64069,42.72382,8894,10,15,1,2,51,4.05,15.0,fr,16964,177,728221,1,1,Active Shallow Crust,0.0,89.98959,0.0,10/15/8894 +-1.64069,42.72382,1110,8,13,2,44,31,4.15,5.0,fr,16965,22,728238,1,1,Active Shallow Crust,0.0,89.98967,-90.0,08/13/1110 +-1.64069,42.72382,251,2,13,13,58,35,4.25,5.0,fr,16966,5,728244,1,1,Active Shallow Crust,0.0,89.99007,0.0,02/13/0251 +-1.64069,42.72382,1493,11,30,12,55,33,4.35,5.0,fr,16967,29,728256,1,1,Active Shallow Crust,0.0,89.98968,0.0,11/30/1493 +-1.64069,42.72382,2543,2,26,13,48,37,4.75,5.0,fr,16968,50,728313,1,1,Active Shallow Crust,128.8898,89.98808,0.0,02/26/2543 +-1.64069,42.72382,2674,11,6,13,39,57,4.85,15.0,fr,16969,53,728317,1,1,Active Shallow Crust,0.0,89.99005,0.0,11/06/2674 +-1.64069,42.72382,4603,11,28,16,54,32,5.15,5.0,fr,16970,92,728355,1,1,Active Shallow Crust,240.0176,57.99963,0.0,11/28/4603 +7.0883,46.06971,8243,10,18,14,26,52,3.55,5.0,fr,16971,164,728640,1,2,Active Shallow Crust,0.0,89.993,0.0,10/18/8243 +7.0883,46.06971,7788,10,7,11,0,23,3.55,5.0,fr,16972,155,728640,1,2,Active Shallow Crust,0.0,89.993,0.0,10/07/7788 +7.0883,46.06971,1907,8,3,6,6,52,3.55,15.0,fr,16973,38,728641,1,2,Active Shallow Crust,0.0,89.993,0.0,08/03/1907 +7.0883,46.06971,6705,12,1,8,4,19,3.55,15.0,fr,16974,134,728641,1,2,Active Shallow Crust,0.0,89.993,0.0,12/01/6705 +7.0883,46.06971,4989,6,12,11,35,10,3.55,15.0,fr,16975,99,728644,1,3,Active Shallow Crust,240.013,57.99801,0.0,06/12/4989 +7.0883,46.06971,5971,12,23,16,19,38,3.55,15.0,fr,16976,119,728644,1,3,Active Shallow Crust,240.013,57.99801,0.0,12/23/5971 +7.0883,46.06971,8715,11,5,18,49,1,3.55,15.0,fr,16977,174,728644,1,3,Active Shallow Crust,240.013,57.99801,0.0,11/05/8715 +7.0883,46.06971,7893,4,11,6,3,46,3.55,5.0,fr,16978,157,728646,1,1,Active Shallow Crust,0.0,89.99292,-90.0,04/11/7893 +7.0883,46.06971,5633,3,12,15,13,0,3.65,5.0,fr,16979,112,728652,1,4,Active Shallow Crust,0.0,89.98753,0.0,03/12/5633 +7.0883,46.06971,1189,1,23,2,41,45,3.65,5.0,fr,16980,23,728652,1,4,Active Shallow Crust,0.0,89.98753,0.0,01/23/1189 +7.0883,46.06971,1060,11,16,18,40,6,3.65,5.0,fr,16981,21,728652,1,4,Active Shallow Crust,0.0,89.98753,0.0,11/16/1060 +7.0883,46.06971,1871,3,1,18,18,13,3.65,5.0,fr,16982,37,728652,1,4,Active Shallow Crust,0.0,89.98753,0.0,03/01/1871 +7.0883,46.06971,2631,12,21,19,24,2,3.65,15.0,fr,16983,52,728653,1,3,Active Shallow Crust,0.0,89.98753,0.0,12/21/2631 +7.0883,46.06971,6677,9,18,19,6,15,3.65,15.0,fr,16984,133,728653,1,3,Active Shallow Crust,0.0,89.98753,0.0,09/18/6677 +7.0883,46.06971,6891,5,1,7,16,59,3.65,15.0,fr,16985,137,728653,1,3,Active Shallow Crust,0.0,89.98753,0.0,05/01/6891 +7.0883,46.06971,3621,6,22,4,39,55,3.65,27.5,fr,16986,72,728654,1,1,Active Shallow Crust,0.0,89.98753,0.0,06/22/3621 +7.0883,46.06971,9535,5,28,13,32,48,3.65,5.0,fr,16987,190,728655,1,1,Active Shallow Crust,240.0004,58.01344,0.0,05/28/9535 +7.0883,46.06971,4425,1,5,18,59,57,3.65,15.0,fr,16988,88,728656,1,1,Active Shallow Crust,240.0004,58.01344,0.0,01/05/4425 +7.0883,46.06971,173,10,4,20,32,30,3.65,15.0,fr,16989,3,728659,1,1,Active Shallow Crust,0.0,89.98739,-90.0,10/04/0173 +7.0883,46.06971,4862,1,1,11,45,15,3.65,5.0,fr,16990,97,728661,1,1,Active Shallow Crust,128.9011,89.96352,0.0,01/01/4862 +7.0883,46.06971,1086,4,15,8,27,1,3.65,27.5,fr,16991,21,728663,1,1,Active Shallow Crust,128.9011,89.96352,0.0,04/15/1086 +7.0883,46.06971,8358,3,5,5,16,20,3.75,5.0,fr,16992,167,728664,1,4,Active Shallow Crust,0.0,89.98888,0.0,03/05/8358 +7.0883,46.06971,6185,11,7,3,47,33,3.75,5.0,fr,16993,123,728664,1,4,Active Shallow Crust,0.0,89.98888,0.0,11/07/6185 +7.0883,46.06971,7375,8,17,0,52,47,3.75,5.0,fr,16994,147,728664,1,4,Active Shallow Crust,0.0,89.98888,0.0,08/17/7375 +7.0883,46.06971,3713,12,20,23,30,9,3.75,5.0,fr,16995,74,728664,1,4,Active Shallow Crust,0.0,89.98888,0.0,12/20/3713 +7.0883,46.06971,1782,12,6,4,11,8,3.75,5.0,fr,16996,35,728667,1,3,Active Shallow Crust,240.0077,58.0182,0.0,12/06/1782 +7.0883,46.06971,2380,7,13,8,25,13,3.75,5.0,fr,16997,47,728667,1,3,Active Shallow Crust,240.0077,58.0182,0.0,07/13/2380 +7.0883,46.06971,6166,11,24,6,50,57,3.75,5.0,fr,16998,123,728667,1,3,Active Shallow Crust,240.0077,58.0182,0.0,11/24/6166 +7.0883,46.06971,7325,7,23,17,2,15,3.75,5.0,fr,16999,146,728670,1,1,Active Shallow Crust,0.0,89.98875,-90.0,07/23/7325 +7.0883,46.06971,9832,8,15,1,1,28,3.75,5.0,fr,17000,196,728673,1,3,Active Shallow Crust,128.8977,89.9669,0.0,08/15/9832 +7.0883,46.06971,9663,10,7,7,15,18,3.75,5.0,fr,17001,193,728673,1,3,Active Shallow Crust,128.8977,89.9669,0.0,10/07/9663 +7.0883,46.06971,8518,7,31,4,51,21,3.75,5.0,fr,17002,170,728673,1,3,Active Shallow Crust,128.8977,89.9669,0.0,07/31/8518 +7.0883,46.06971,950,10,24,4,11,49,3.75,15.0,fr,17003,18,728674,1,1,Active Shallow Crust,128.8977,89.9669,0.0,10/24/0950 +7.0883,46.06971,1050,2,7,21,53,23,3.85,5.0,fr,17004,20,728676,1,4,Active Shallow Crust,0.0,89.9901,0.0,02/07/1050 +7.0883,46.06971,4606,4,13,6,13,59,3.85,5.0,fr,17005,92,728676,1,4,Active Shallow Crust,0.0,89.9901,0.0,04/13/4606 +7.0883,46.06971,9201,11,4,11,8,16,3.85,5.0,fr,17006,184,728676,1,4,Active Shallow Crust,0.0,89.9901,0.0,11/04/9201 +7.0883,46.06971,3928,6,27,12,13,49,3.85,5.0,fr,17007,78,728676,1,4,Active Shallow Crust,0.0,89.9901,0.0,06/27/3928 +7.0883,46.06971,6196,3,22,3,2,37,3.85,15.0,fr,17008,123,728677,1,2,Active Shallow Crust,0.0,89.9901,0.0,03/22/6196 +7.0883,46.06971,385,3,28,8,49,8,3.85,15.0,fr,17009,7,728677,1,2,Active Shallow Crust,0.0,89.9901,0.0,03/28/0385 +7.0883,46.06971,7643,6,18,7,4,49,3.85,27.5,fr,17010,152,728681,1,1,Active Shallow Crust,240.0102,57.99795,0.0,06/18/7643 +7.0883,46.06971,7818,1,8,13,58,29,3.85,15.0,fr,17011,156,728683,1,1,Active Shallow Crust,0.0,89.98998,-90.0,01/08/7818 +7.0883,46.06971,521,1,19,5,57,52,3.85,5.0,fr,17012,10,728685,1,1,Active Shallow Crust,128.8954,89.99505,0.0,01/19/0521 +7.0883,46.06971,3000,5,16,0,52,57,3.95,5.0,fr,17013,59,728688,1,3,Active Shallow Crust,0.0,89.99117,0.0,05/16/3000 +7.0883,46.06971,1953,1,20,5,8,26,3.95,5.0,fr,17014,39,728688,1,3,Active Shallow Crust,0.0,89.99117,0.0,01/20/1953 +7.0883,46.06971,1047,10,18,15,59,36,3.95,5.0,fr,17015,20,728688,1,3,Active Shallow Crust,0.0,89.99117,0.0,10/18/1047 +7.0883,46.06971,9442,8,16,16,13,51,3.95,27.5,fr,17016,188,728690,1,1,Active Shallow Crust,0.0,89.99117,0.0,08/16/9442 +7.0883,46.06971,5877,2,16,4,43,56,3.95,15.0,fr,17017,117,728692,1,1,Active Shallow Crust,240.0204,58.00504,0.0,02/16/5877 +7.0883,46.06971,8534,6,25,12,38,45,3.95,5.0,fr,17018,170,728697,1,1,Active Shallow Crust,128.9004,89.99338,0.0,06/25/8534 +7.0883,46.06971,2950,10,2,21,47,10,3.95,15.0,fr,17019,58,728698,1,1,Active Shallow Crust,128.9004,89.99338,0.0,10/02/2950 +7.0883,46.06971,8342,10,14,17,48,5,4.05,5.0,fr,17020,166,728700,1,6,Active Shallow Crust,0.0,89.9882,0.0,10/14/8342 +7.0883,46.06971,558,5,29,18,7,21,4.05,5.0,fr,17021,11,728700,1,6,Active Shallow Crust,0.0,89.9882,0.0,05/29/0558 +7.0883,46.06971,5714,10,22,22,9,25,4.05,5.0,fr,17022,114,728700,1,6,Active Shallow Crust,0.0,89.9882,0.0,10/22/5714 +7.0883,46.06971,9552,12,19,20,26,50,4.05,5.0,fr,17023,191,728700,1,6,Active Shallow Crust,0.0,89.9882,0.0,12/19/9552 +7.0883,46.06971,4314,12,28,10,13,14,4.05,5.0,fr,17024,86,728700,1,6,Active Shallow Crust,0.0,89.9882,0.0,12/28/4314 +7.0883,46.06971,7485,4,16,11,42,39,4.05,5.0,fr,17025,149,728700,1,6,Active Shallow Crust,0.0,89.9882,0.0,04/16/7485 +7.0883,46.06971,9260,1,31,7,6,14,4.05,27.5,fr,17026,185,728702,1,2,Active Shallow Crust,0.0,89.9882,0.0,01/31/9260 +7.0883,46.06971,2210,3,22,12,52,43,4.05,27.5,fr,17027,44,728702,1,2,Active Shallow Crust,0.0,89.9882,0.0,03/22/2210 +7.0883,46.06971,1066,12,4,14,4,48,4.05,5.0,fr,17028,21,728706,1,1,Active Shallow Crust,0.0,89.98806,-90.0,12/04/1066 +7.0883,46.06971,2441,4,13,10,33,9,4.05,5.0,fr,17029,48,728709,1,1,Active Shallow Crust,128.8896,89.9941,0.0,04/13/2441 +7.0883,46.06971,420,2,8,5,31,5,4.15,5.0,fr,17030,8,728712,1,1,Active Shallow Crust,0.0,89.98948,0.0,02/08/0420 +7.0883,46.06971,5249,12,3,17,31,48,4.15,15.0,fr,17031,104,728719,1,1,Active Shallow Crust,0.0,89.98936,-90.0,12/03/5249 +7.0883,46.06971,4588,2,24,15,29,37,4.25,5.0,fr,17032,91,728724,1,1,Active Shallow Crust,0.0,89.99062,0.0,02/24/4588 +7.0883,46.06971,86,2,3,5,18,25,4.25,5.0,fr,17033,1,728733,1,1,Active Shallow Crust,128.8952,89.98093,0.0,02/03/0086 +7.0883,46.06971,1546,11,30,4,11,52,4.25,15.0,fr,17034,30,728734,1,1,Active Shallow Crust,128.8952,89.98093,0.0,11/30/1546 +7.0883,46.06971,2774,1,5,13,53,16,4.35,5.0,fr,17035,55,728736,1,2,Active Shallow Crust,0.0,89.98886,0.0,01/05/2774 +7.0883,46.06971,7519,10,11,9,16,4,4.35,5.0,fr,17036,150,728736,1,2,Active Shallow Crust,0.0,89.98886,0.0,10/11/7519 +7.0883,46.06971,9830,2,13,3,48,42,4.35,15.0,fr,17037,196,728737,1,3,Active Shallow Crust,0.0,89.98886,0.0,02/13/9830 +7.0883,46.06971,437,6,2,8,10,1,4.35,15.0,fr,17038,8,728737,1,3,Active Shallow Crust,0.0,89.98886,0.0,06/02/0437 +7.0883,46.06971,9373,3,6,1,26,25,4.35,15.0,fr,17039,187,728737,1,3,Active Shallow Crust,0.0,89.98886,0.0,03/06/9373 +7.0883,46.06971,6168,10,7,14,21,51,4.45,15.0,fr,17040,123,728752,1,1,Active Shallow Crust,240.0057,57.99436,0.0,10/07/6168 +7.0883,46.06971,4381,5,24,12,24,16,4.55,5.0,fr,17041,87,728760,1,1,Active Shallow Crust,0.0,89.98894,0.0,05/24/4381 +7.0883,46.06971,1411,1,29,18,44,40,4.55,5.0,fr,17042,28,728766,1,1,Active Shallow Crust,0.0,89.99105,-90.0,01/29/1411 +7.0883,46.06971,5846,8,4,3,36,14,4.65,5.0,fr,17043,116,728772,1,1,Active Shallow Crust,0.0,89.99014,0.0,08/04/5846 +7.0883,46.06971,9776,4,9,12,59,52,4.65,15.0,fr,17044,195,728773,1,1,Active Shallow Crust,0.0,89.99014,0.0,04/09/9776 +7.0883,46.06971,5125,9,18,6,10,25,4.65,5.0,fr,17045,102,728778,1,1,Active Shallow Crust,0.0,89.99003,-90.0,09/18/5125 +7.0883,46.06971,2040,4,30,12,43,40,4.75,27.5,fr,17046,40,728786,1,1,Active Shallow Crust,0.0,89.98946,0.0,04/30/2040 +7.0883,46.06971,2856,2,14,0,35,23,4.75,5.0,fr,17047,57,728793,1,2,Active Shallow Crust,128.8883,89.98815,0.0,02/14/2856 +7.0883,46.06971,4884,3,24,8,23,38,4.75,5.0,fr,17048,97,728793,1,2,Active Shallow Crust,128.8883,89.98815,0.0,03/24/4884 +7.0883,46.06971,5709,5,6,20,47,50,4.95,5.0,fr,17049,114,728811,1,1,Active Shallow Crust,240.0118,58.00436,0.0,05/06/5709 +7.0883,46.06971,6582,12,20,15,36,26,5.15,5.0,fr,17050,131,728835,1,1,Active Shallow Crust,240.0195,57.99987,0.0,12/20/6582 +7.0883,46.06971,3225,10,2,16,41,51,5.15,5.0,fr,17051,64,728838,1,1,Active Shallow Crust,0.0,89.98991,-90.0,10/02/3225 +7.0883,46.06971,6272,6,4,23,18,37,5.45,5.0,fr,17052,125,728877,1,1,Active Shallow Crust,128.8792,89.99226,0.0,06/04/6272 +1.64012,42.92701,5110,7,15,18,26,53,3.55,5.0,fr,17053,102,729120,1,2,Active Shallow Crust,0.0,89.99077,0.0,07/15/5110 +1.64012,42.92701,1934,4,3,15,42,12,3.55,5.0,fr,17054,38,729120,1,2,Active Shallow Crust,0.0,89.99077,0.0,04/03/1934 +1.64012,42.92701,100,7,29,14,51,7,3.55,15.0,fr,17055,1,729121,1,1,Active Shallow Crust,0.0,89.99077,0.0,07/29/0100 +1.64012,42.92701,8283,10,4,0,1,11,3.55,27.5,fr,17056,165,729122,1,1,Active Shallow Crust,0.0,89.99077,0.0,10/04/8283 +1.64012,42.92701,5681,3,4,13,17,28,3.55,27.5,fr,17057,113,729128,1,1,Active Shallow Crust,0.0,89.99066,-90.0,03/04/5681 +1.64012,42.92701,7736,7,15,10,32,18,3.65,5.0,fr,17058,154,729132,1,1,Active Shallow Crust,0.0,89.99013,0.0,07/15/7736 +1.64012,42.92701,933,4,11,22,1,39,3.75,5.0,fr,17059,18,729144,1,1,Active Shallow Crust,0.0,89.98974,0.0,04/11/0933 +1.64012,42.92701,731,8,23,14,52,4,3.75,15.0,fr,17060,14,729154,1,1,Active Shallow Crust,128.8971,89.96729,0.0,08/23/0731 +1.64012,42.92701,6571,9,17,19,29,35,3.85,15.0,fr,17061,131,729157,1,1,Active Shallow Crust,0.0,89.98955,0.0,09/17/6571 +1.64012,42.92701,1601,7,15,20,9,21,3.95,15.0,fr,17062,32,729172,1,1,Active Shallow Crust,240.0191,58.00494,0.0,07/15/1601 +1.64012,42.92701,9612,8,25,17,32,57,4.15,5.0,fr,17063,192,729192,1,1,Active Shallow Crust,0.0,89.98982,0.0,08/25/9612 +1.64012,42.92701,8416,8,21,3,4,32,4.65,5.0,fr,17064,168,729258,1,1,Active Shallow Crust,0.0,89.99,-90.0,08/21/8416 +1.64012,42.92701,5368,2,3,20,45,32,4.85,5.0,fr,17065,107,729279,1,1,Active Shallow Crust,240.0157,58.00206,0.0,02/03/5368 +2.64899,50.90919,6534,9,23,3,40,8,3.55,5.0,fr,17066,130,729600,1,1,Active Shallow Crust,0.0,89.99046,0.0,09/23/6534 +2.64899,50.90919,8896,6,23,18,34,29,3.75,5.0,fr,17067,177,729624,1,1,Active Shallow Crust,0.0,89.9899,0.0,06/23/8896 +2.64899,50.90919,7887,11,24,4,23,59,3.85,5.0,fr,17068,157,729636,1,1,Active Shallow Crust,0.0,89.991,0.0,11/24/7887 +2.64899,50.90919,6975,4,10,1,17,9,3.95,15.0,fr,17069,139,729649,1,1,Active Shallow Crust,0.0,89.98997,0.0,04/10/6975 +2.64899,50.90919,197,5,4,9,11,59,3.95,27.5,fr,17070,3,729659,1,1,Active Shallow Crust,128.8998,89.99398,0.0,05/04/0197 +2.64899,50.90919,5952,10,13,16,50,24,4.05,15.0,fr,17071,119,729664,1,1,Active Shallow Crust,240.0068,58.00595,0.0,10/13/5952 +2.64899,50.90919,2734,5,25,10,7,20,4.25,27.5,fr,17072,54,729686,1,1,Active Shallow Crust,0.0,89.99006,0.0,05/25/2734 +2.64899,50.90919,7612,7,2,22,0,22,4.25,5.0,fr,17073,152,729687,1,1,Active Shallow Crust,240.0084,57.99442,0.0,07/02/7612 +2.64899,50.90919,6786,9,6,10,30,33,4.75,5.0,fr,17074,135,729747,1,1,Active Shallow Crust,240.0092,58.00483,0.0,09/06/6786 +-1.70314,42.99343,5015,7,19,10,25,18,3.55,5.0,fr,17075,100,730080,1,3,Active Shallow Crust,0.0,89.99078,0.0,07/19/5015 +-1.70314,42.99343,513,9,24,18,34,9,3.55,5.0,fr,17076,10,730080,1,3,Active Shallow Crust,0.0,89.99078,0.0,09/24/0513 +-1.70314,42.99343,5758,4,8,21,16,5,3.55,5.0,fr,17077,115,730080,1,3,Active Shallow Crust,0.0,89.99078,0.0,04/08/5758 +-1.70314,42.99343,9000,10,6,10,28,45,3.55,5.0,fr,17078,179,730083,1,2,Active Shallow Crust,240.0121,57.99777,0.0,10/06/9000 +-1.70314,42.99343,9472,10,20,7,26,20,3.55,5.0,fr,17079,189,730083,1,2,Active Shallow Crust,240.0121,57.99777,0.0,10/20/9472 +-1.70314,42.99343,5013,4,14,2,19,30,3.65,5.0,fr,17080,100,730092,1,4,Active Shallow Crust,0.0,89.99014,0.0,04/14/5013 +-1.70314,42.99343,6872,6,8,8,39,26,3.65,5.0,fr,17081,137,730092,1,4,Active Shallow Crust,0.0,89.99014,0.0,06/08/6872 +-1.70314,42.99343,5694,8,6,20,46,52,3.65,5.0,fr,17082,113,730092,1,4,Active Shallow Crust,0.0,89.99014,0.0,08/06/5694 +-1.70314,42.99343,2635,9,12,7,50,21,3.65,5.0,fr,17083,52,730092,1,4,Active Shallow Crust,0.0,89.99014,0.0,09/12/2635 +-1.70314,42.99343,8031,1,9,17,27,16,3.65,5.0,fr,17084,160,730095,1,2,Active Shallow Crust,240.0009,58.01291,0.0,01/09/8031 +-1.70314,42.99343,2044,1,30,17,42,59,3.65,5.0,fr,17085,40,730095,1,2,Active Shallow Crust,240.0009,58.01291,0.0,01/30/2044 +-1.70314,42.99343,7945,8,7,21,45,4,3.65,5.0,fr,17086,158,730098,1,1,Active Shallow Crust,0.0,89.99003,-90.0,08/07/7945 +-1.70314,42.99343,9580,11,25,10,11,18,3.65,27.5,fr,17087,191,730100,1,1,Active Shallow Crust,0.0,89.99003,-90.0,11/25/9580 +-1.70314,42.99343,8827,7,13,1,13,58,3.65,5.0,fr,17088,176,730101,1,1,Active Shallow Crust,128.9009,89.96346,0.0,07/13/8827 +-1.70314,42.99343,3881,9,30,21,4,20,3.75,5.0,fr,17089,77,730104,1,1,Active Shallow Crust,0.0,89.98975,0.0,09/30/3881 +-1.70314,42.99343,7966,11,16,8,23,0,3.75,15.0,fr,17090,159,730105,1,1,Active Shallow Crust,0.0,89.98975,0.0,11/16/7966 +-1.70314,42.99343,2845,3,8,18,30,14,3.75,27.5,fr,17091,56,730106,1,1,Active Shallow Crust,0.0,89.98975,0.0,03/08/2845 +-1.70314,42.99343,1856,10,14,14,53,52,3.75,5.0,fr,17092,37,730107,1,1,Active Shallow Crust,240.0079,58.01762,0.0,10/14/1856 +-1.70314,42.99343,5132,12,16,7,31,10,3.75,5.0,fr,17093,102,730110,1,1,Active Shallow Crust,0.0,89.98963,-90.0,12/16/5132 +-1.70314,42.99343,4763,5,20,18,16,22,3.75,5.0,fr,17094,95,730113,1,1,Active Shallow Crust,128.897,89.96743,0.0,05/20/4763 +-1.70314,42.99343,3850,3,28,8,24,45,3.85,5.0,fr,17095,76,730116,1,3,Active Shallow Crust,0.0,89.98956,0.0,03/28/3850 +-1.70314,42.99343,137,5,6,4,7,51,3.85,5.0,fr,17096,2,730116,1,3,Active Shallow Crust,0.0,89.98956,0.0,05/06/0137 +-1.70314,42.99343,9165,10,30,7,48,38,3.85,5.0,fr,17097,183,730116,1,3,Active Shallow Crust,0.0,89.98956,0.0,10/30/9165 +-1.70314,42.99343,7447,1,23,0,44,26,3.85,15.0,fr,17098,148,730117,1,1,Active Shallow Crust,0.0,89.98956,0.0,01/23/7447 +-1.70314,42.99343,1294,11,4,16,42,16,3.95,5.0,fr,17099,25,730128,1,3,Active Shallow Crust,0.0,89.98953,0.0,11/04/1294 +-1.70314,42.99343,7805,4,4,14,21,19,3.95,5.0,fr,17100,156,730128,1,3,Active Shallow Crust,0.0,89.98953,0.0,04/04/7805 +-1.70314,42.99343,9352,6,26,14,2,34,3.95,5.0,fr,17101,187,730128,1,3,Active Shallow Crust,0.0,89.98953,0.0,06/26/9352 +-1.70314,42.99343,102,2,3,8,42,46,3.95,5.0,fr,17102,2,730134,1,1,Active Shallow Crust,0.0,89.99059,-90.0,02/03/0102 +-1.70314,42.99343,9957,7,10,6,30,57,4.05,5.0,fr,17103,199,730140,1,2,Active Shallow Crust,0.0,89.98963,0.0,07/10/9957 +-1.70314,42.99343,2819,8,6,20,46,15,4.05,5.0,fr,17104,56,730140,1,2,Active Shallow Crust,0.0,89.98963,0.0,08/06/2819 +-1.70314,42.99343,4272,1,27,13,37,12,4.05,5.0,fr,17105,85,730143,1,1,Active Shallow Crust,240.0055,58.00582,0.0,01/27/4272 +-1.70314,42.99343,1854,4,18,0,32,11,4.05,5.0,fr,17106,37,730146,1,1,Active Shallow Crust,0.0,89.98951,-90.0,04/18/1854 +-1.70314,42.99343,4480,11,13,18,43,12,4.05,5.0,fr,17107,89,730149,1,1,Active Shallow Crust,128.8908,89.99378,0.0,11/13/4480 +-1.70314,42.99343,7220,4,11,8,12,18,4.15,5.0,fr,17108,144,730152,1,1,Active Shallow Crust,0.0,89.98984,0.0,04/11/7220 +-1.70314,42.99343,1706,5,4,18,48,38,4.15,15.0,fr,17109,34,730153,1,1,Active Shallow Crust,0.0,89.98984,0.0,05/04/1706 +-1.70314,42.99343,8149,12,8,12,51,59,4.25,5.0,fr,17110,162,730164,1,1,Active Shallow Crust,0.0,89.99011,0.0,12/08/8149 +-1.70314,42.99343,7383,12,3,4,32,46,4.25,27.5,fr,17111,147,730166,1,2,Active Shallow Crust,0.0,89.99011,0.0,12/03/7383 +-1.70314,42.99343,1592,4,12,13,49,41,4.25,27.5,fr,17112,31,730166,1,2,Active Shallow Crust,0.0,89.99011,0.0,04/12/1592 +-1.70314,42.99343,5474,9,13,17,49,47,4.35,5.0,fr,17113,109,730176,1,1,Active Shallow Crust,0.0,89.98972,0.0,09/13/5474 +-1.70314,42.99343,5314,7,24,20,57,42,4.35,15.0,fr,17114,106,730177,1,1,Active Shallow Crust,0.0,89.98972,0.0,07/24/5314 +-1.70314,42.99343,1397,2,23,22,28,30,4.45,5.0,fr,17115,27,730188,1,1,Active Shallow Crust,0.0,89.99019,0.0,02/23/1397 +-1.70314,42.99343,2983,1,30,4,9,42,4.45,27.5,fr,17116,59,730193,1,1,Active Shallow Crust,240.0044,57.99456,0.0,01/30/2983 +-1.70314,42.99343,3806,9,23,4,10,28,4.55,5.0,fr,17117,76,730200,1,1,Active Shallow Crust,0.0,89.99009,0.0,09/23/3806 +-1.70314,42.99343,2263,1,11,19,47,4,4.75,15.0,fr,17118,45,730225,1,1,Active Shallow Crust,0.0,89.98981,0.0,01/11/2263 +-1.70314,42.99343,7625,6,9,3,1,26,4.75,15.0,fr,17119,152,730234,1,1,Active Shallow Crust,128.8896,89.9881,0.0,06/09/7625 +-1.70314,42.99343,6624,2,4,4,12,40,4.85,5.0,fr,17120,132,730236,1,1,Active Shallow Crust,0.0,89.99009,0.0,02/04/6624 +-1.70314,42.99343,8941,4,11,1,14,9,5.05,5.0,fr,17121,178,730260,1,1,Active Shallow Crust,359.9998,89.99016,0.0,04/11/8941 +-1.70314,42.99343,5255,6,8,13,45,41,5.05,15.0,fr,17122,105,730261,1,1,Active Shallow Crust,359.9998,89.99016,0.0,06/08/5255 +-1.70314,42.99343,9911,5,18,14,41,29,5.05,5.0,fr,17123,198,730266,1,1,Active Shallow Crust,0.0,89.99004,-90.0,05/18/9911 +2.5345,45.31006,8557,11,3,5,49,22,3.55,15.0,fr,17124,171,730561,1,1,Active Shallow Crust,0.0,89.98936,0.0,11/03/8557 +2.5345,45.31006,3625,6,4,1,8,38,3.55,5.0,fr,17125,72,730563,1,1,Active Shallow Crust,240.0118,57.99794,0.0,06/04/3625 +2.5345,45.31006,9129,3,25,8,51,41,3.55,5.0,fr,17126,182,730569,1,1,Active Shallow Crust,128.8971,89.99291,0.0,03/25/9129 +2.5345,45.31006,9396,5,17,10,43,30,3.75,5.0,fr,17127,187,730587,1,1,Active Shallow Crust,240.0081,58.01736,0.0,05/17/9396 +2.5345,45.31006,3322,2,16,21,18,25,3.95,5.0,fr,17128,66,730608,1,1,Active Shallow Crust,0.0,89.99105,0.0,02/16/3322 +2.5345,45.31006,5613,7,7,4,35,9,3.95,15.0,fr,17129,112,730609,1,1,Active Shallow Crust,0.0,89.99105,0.0,07/07/5613 +2.5345,45.31006,8287,3,2,10,37,45,3.95,5.0,fr,17130,165,730611,1,1,Active Shallow Crust,240.0201,58.00476,0.0,03/02/8287 +2.5345,45.31006,66,1,5,2,59,2,3.95,5.0,fr,17131,1,730617,1,1,Active Shallow Crust,128.9004,89.99441,0.0,01/05/0066 +2.5345,45.31006,3020,8,1,13,7,7,4.15,5.0,fr,17132,60,730632,1,1,Active Shallow Crust,0.0,89.98933,0.0,08/01/3020 +2.5345,45.31006,2703,8,22,8,27,0,4.35,5.0,fr,17133,54,730656,1,1,Active Shallow Crust,0.0,89.99012,0.0,08/22/2703 +2.5345,45.31006,6075,3,13,23,57,7,4.35,27.5,fr,17134,121,730658,1,1,Active Shallow Crust,0.0,89.99012,0.0,03/13/6075 +2.5345,45.31006,1101,7,12,18,35,50,5.25,5.0,fr,17135,22,730764,1,1,Active Shallow Crust,0.0,89.98998,0.0,07/12/1101 +6.56386,48.06941,1503,9,19,16,17,58,3.55,5.0,fr,17136,30,731040,1,4,Active Shallow Crust,0.0,89.99326,0.0,09/19/1503 +6.56386,48.06941,407,8,29,16,33,50,3.55,5.0,fr,17137,8,731040,1,4,Active Shallow Crust,0.0,89.99326,0.0,08/29/0407 +6.56386,48.06941,7291,3,22,13,47,32,3.55,5.0,fr,17138,145,731040,1,4,Active Shallow Crust,0.0,89.99326,0.0,03/22/7291 +6.56386,48.06941,3336,2,8,23,51,22,3.55,5.0,fr,17139,66,731040,1,4,Active Shallow Crust,0.0,89.99326,0.0,02/08/3336 +6.56386,48.06941,5864,10,8,13,17,5,3.55,15.0,fr,17140,117,731041,1,3,Active Shallow Crust,0.0,89.99326,0.0,10/08/5864 +6.56386,48.06941,7655,7,12,9,59,16,3.55,15.0,fr,17141,153,731041,1,3,Active Shallow Crust,0.0,89.99326,0.0,07/12/7655 +6.56386,48.06941,3797,7,4,22,56,32,3.55,15.0,fr,17142,75,731041,1,3,Active Shallow Crust,0.0,89.99326,0.0,07/04/3797 +6.56386,48.06941,5808,9,7,6,16,14,3.55,27.5,fr,17143,116,731042,1,1,Active Shallow Crust,0.0,89.99326,0.0,09/07/5808 +6.56386,48.06941,3157,5,28,12,46,31,3.55,5.0,fr,17144,63,731046,1,1,Active Shallow Crust,0.0,89.99319,-90.0,05/28/3157 +6.56386,48.06941,8110,4,16,2,59,5,3.55,5.0,fr,17145,162,731049,1,1,Active Shallow Crust,128.8968,89.99326,0.0,04/16/8110 +6.56386,48.06941,3608,8,22,5,7,16,3.65,5.0,fr,17146,72,731052,1,4,Active Shallow Crust,0.0,89.98799,0.0,08/22/3608 +6.56386,48.06941,4166,4,18,9,18,27,3.65,5.0,fr,17147,83,731052,1,4,Active Shallow Crust,0.0,89.98799,0.0,04/18/4166 +6.56386,48.06941,9435,4,6,4,33,38,3.65,5.0,fr,17148,188,731052,1,4,Active Shallow Crust,0.0,89.98799,0.0,04/06/9435 +6.56386,48.06941,1762,12,18,20,11,2,3.65,5.0,fr,17149,35,731052,1,4,Active Shallow Crust,0.0,89.98799,0.0,12/18/1762 +6.56386,48.06941,8351,12,29,5,49,32,3.75,5.0,fr,17150,167,731064,1,3,Active Shallow Crust,0.0,89.9893,0.0,12/29/8351 +6.56386,48.06941,2695,2,4,7,43,25,3.75,5.0,fr,17151,53,731064,1,3,Active Shallow Crust,0.0,89.9893,0.0,02/04/2695 +6.56386,48.06941,8291,1,21,4,58,20,3.75,5.0,fr,17152,165,731064,1,3,Active Shallow Crust,0.0,89.9893,0.0,01/21/8291 +6.56386,48.06941,7173,4,9,9,22,23,3.75,15.0,fr,17153,143,731065,1,1,Active Shallow Crust,0.0,89.9893,0.0,04/09/7173 +6.56386,48.06941,7101,7,13,22,54,29,3.75,5.0,fr,17154,142,731067,1,2,Active Shallow Crust,240.0081,58.01811,0.0,07/13/7101 +6.56386,48.06941,8356,12,19,0,25,43,3.75,5.0,fr,17155,167,731067,1,2,Active Shallow Crust,240.0081,58.01811,0.0,12/19/8356 +6.56386,48.06941,257,9,12,12,36,46,3.85,5.0,fr,17156,5,731076,1,2,Active Shallow Crust,0.0,89.99046,0.0,09/12/0257 +6.56386,48.06941,3477,9,16,4,7,52,3.85,5.0,fr,17157,69,731076,1,2,Active Shallow Crust,0.0,89.99046,0.0,09/16/3477 +6.56386,48.06941,2988,12,5,18,0,26,3.95,5.0,fr,17158,59,731088,1,1,Active Shallow Crust,0.0,89.99149,0.0,12/05/2988 +6.56386,48.06941,6060,10,2,15,52,3,3.95,15.0,fr,17159,121,731089,1,2,Active Shallow Crust,0.0,89.99149,0.0,10/02/6060 +6.56386,48.06941,4615,1,3,17,59,54,3.95,15.0,fr,17160,92,731089,1,2,Active Shallow Crust,0.0,89.99149,0.0,01/03/4615 +6.56386,48.06941,2156,5,13,18,38,53,3.95,5.0,fr,17161,43,731097,1,1,Active Shallow Crust,128.9009,89.99362,0.0,05/13/2156 +6.56386,48.06941,1303,7,21,9,58,43,4.05,5.0,fr,17162,26,731100,1,3,Active Shallow Crust,0.0,89.98863,0.0,07/21/1303 +6.56386,48.06941,3185,7,7,1,42,17,4.05,5.0,fr,17163,63,731100,1,3,Active Shallow Crust,0.0,89.98863,0.0,07/07/3185 +6.56386,48.06941,7529,10,13,8,43,34,4.05,5.0,fr,17164,150,731100,1,3,Active Shallow Crust,0.0,89.98863,0.0,10/13/7529 +6.56386,48.06941,1426,6,16,18,9,26,4.05,15.0,fr,17165,28,731101,1,1,Active Shallow Crust,0.0,89.98863,0.0,06/16/1426 +6.56386,48.06941,2580,11,22,11,2,6,4.05,5.0,fr,17166,51,731103,1,1,Active Shallow Crust,240.0061,58.00613,0.0,11/22/2580 +6.56386,48.06941,7571,10,14,11,22,23,4.05,5.0,fr,17167,151,731106,1,1,Active Shallow Crust,0.0,89.9885,-90.0,10/14/7571 +6.56386,48.06941,2770,4,30,2,24,57,4.25,15.0,fr,17168,55,731125,1,2,Active Shallow Crust,0.0,89.99097,0.0,04/30/2770 +6.56386,48.06941,1144,3,18,20,32,13,4.25,15.0,fr,17169,22,731125,1,2,Active Shallow Crust,0.0,89.99097,0.0,03/18/1144 +6.56386,48.06941,6744,12,13,12,37,44,4.35,5.0,fr,17170,134,731136,1,2,Active Shallow Crust,0.0,89.98927,0.0,12/13/6744 +6.56386,48.06941,2350,9,14,3,26,42,4.35,5.0,fr,17171,46,731136,1,2,Active Shallow Crust,0.0,89.98927,0.0,09/14/2350 +6.56386,48.06941,6295,12,9,0,7,40,4.35,5.0,fr,17172,125,731145,1,1,Active Shallow Crust,128.8972,89.9826,0.0,12/09/6295 +6.56386,48.06941,491,10,8,0,22,27,4.45,5.0,fr,17173,9,731148,1,1,Active Shallow Crust,0.0,89.99043,0.0,10/08/0491 +6.56386,48.06941,6052,4,25,20,39,23,4.45,5.0,fr,17174,121,731151,1,1,Active Shallow Crust,240.0058,57.99474,0.0,04/25/6052 +6.56386,48.06941,3117,8,25,3,25,44,4.45,5.0,fr,17175,62,731154,1,1,Active Shallow Crust,0.0,89.99033,-90.0,08/25/3117 +6.56386,48.06941,8123,1,5,23,52,6,4.45,15.0,fr,17176,162,731155,1,1,Active Shallow Crust,0.0,89.99033,-90.0,01/05/8123 +6.56386,48.06941,435,7,27,1,50,38,4.45,15.0,fr,17177,8,731158,1,1,Active Shallow Crust,128.892,89.99403,0.0,07/27/0435 +6.56386,48.06941,9291,12,23,7,6,31,4.85,5.0,fr,17178,185,731196,1,1,Active Shallow Crust,0.0,89.98944,0.0,12/23/9291 +6.56386,48.06941,4208,6,7,15,50,42,4.85,15.0,fr,17179,84,731197,1,1,Active Shallow Crust,0.0,89.98944,0.0,06/07/4208 +6.56386,48.06941,3836,12,16,21,22,9,4.95,15.0,fr,17180,76,731215,1,1,Active Shallow Crust,0.0,89.99048,-90.0,12/16/3836 +4.88075,49.2398,3132,1,10,9,51,46,3.65,15.0,fr,17181,62,731533,1,1,Active Shallow Crust,0.0,89.98827,0.0,01/10/3132 +4.88075,49.2398,6228,4,25,8,40,54,3.95,5.0,fr,17182,124,731568,1,1,Active Shallow Crust,0.0,89.99169,0.0,04/25/6228 +2.9259,41.52708,7473,12,25,21,36,12,3.55,5.0,fr,17183,149,732000,1,5,Active Shallow Crust,0.0,89.98868,0.0,12/25/7473 +2.9259,41.52708,3204,5,22,6,1,21,3.55,5.0,fr,17184,64,732000,1,5,Active Shallow Crust,0.0,89.98868,0.0,05/22/3204 +2.9259,41.52708,9890,11,3,7,3,38,3.55,5.0,fr,17185,197,732000,1,5,Active Shallow Crust,0.0,89.98868,0.0,11/03/9890 +2.9259,41.52708,3057,8,24,16,41,42,3.55,5.0,fr,17186,61,732000,1,5,Active Shallow Crust,0.0,89.98868,0.0,08/24/3057 +2.9259,41.52708,2261,4,17,10,0,33,3.55,5.0,fr,17187,45,732000,1,5,Active Shallow Crust,0.0,89.98868,0.0,04/17/2261 +2.9259,41.52708,2983,3,10,10,21,37,3.55,15.0,fr,17188,59,732001,1,1,Active Shallow Crust,0.0,89.98868,0.0,03/10/2983 +2.9259,41.52708,8939,2,11,22,16,59,3.55,15.0,fr,17189,178,732007,1,1,Active Shallow Crust,0.0,89.98855,-90.0,02/11/8939 +2.9259,41.52708,5548,4,20,14,4,38,3.65,5.0,fr,17190,110,732012,1,2,Active Shallow Crust,0.0,89.98991,0.0,04/20/5548 +2.9259,41.52708,4176,11,10,6,22,36,3.65,5.0,fr,17191,83,732012,1,2,Active Shallow Crust,0.0,89.98991,0.0,11/10/4176 +2.9259,41.52708,1840,10,18,2,25,23,3.65,15.0,fr,17192,36,732013,1,1,Active Shallow Crust,0.0,89.98991,0.0,10/18/1840 +2.9259,41.52708,4312,4,21,22,36,35,3.65,5.0,fr,17193,86,732015,1,1,Active Shallow Crust,240.0004,58.013,0.0,04/21/4312 +2.9259,41.52708,9260,10,28,15,4,38,3.65,15.0,fr,17194,185,732022,1,1,Active Shallow Crust,128.9001,89.9637,0.0,10/28/9260 +2.9259,41.52708,5260,5,28,15,45,13,3.75,5.0,fr,17195,105,732024,1,5,Active Shallow Crust,0.0,89.991,0.0,05/28/5260 +2.9259,41.52708,5743,7,23,13,51,2,3.75,5.0,fr,17196,114,732024,1,5,Active Shallow Crust,0.0,89.991,0.0,07/23/5743 +2.9259,41.52708,2164,9,27,19,37,1,3.75,5.0,fr,17197,43,732024,1,5,Active Shallow Crust,0.0,89.991,0.0,09/27/2164 +2.9259,41.52708,2988,2,1,21,8,45,3.75,5.0,fr,17198,59,732024,1,5,Active Shallow Crust,0.0,89.991,0.0,02/01/2988 +2.9259,41.52708,2543,5,4,17,13,30,3.75,5.0,fr,17199,50,732024,1,5,Active Shallow Crust,0.0,89.991,0.0,05/04/2543 +2.9259,41.52708,9985,11,3,19,31,45,3.75,5.0,fr,17200,199,732027,1,1,Active Shallow Crust,240.008,58.01713,0.0,11/03/9985 +2.9259,41.52708,9448,10,20,9,50,8,3.85,27.5,fr,17201,188,732038,1,1,Active Shallow Crust,0.0,89.98931,0.0,10/20/9448 +2.9259,41.52708,3692,9,6,3,41,7,4.05,5.0,fr,17202,73,732060,1,1,Active Shallow Crust,0.0,89.98939,0.0,09/06/3692 +2.9259,41.52708,3538,12,26,13,47,35,4.05,15.0,fr,17203,70,732061,1,1,Active Shallow Crust,0.0,89.98939,0.0,12/26/3538 +2.9259,41.52708,1629,3,6,4,1,13,4.05,27.5,fr,17204,32,732065,1,1,Active Shallow Crust,240.0051,58.00552,0.0,03/06/1629 +2.9259,41.52708,8649,1,28,5,3,50,4.25,5.0,fr,17205,172,732084,1,1,Active Shallow Crust,0.0,89.98988,0.0,01/28/8649 +2.9259,41.52708,9781,2,17,3,2,39,4.25,5.0,fr,17206,195,732087,1,1,Active Shallow Crust,240.0067,57.99388,0.0,02/17/9781 +2.9259,41.52708,5665,6,19,10,43,41,4.35,5.0,fr,17207,113,732096,1,1,Active Shallow Crust,0.0,89.98948,0.0,06/19/5665 +2.9259,41.52708,9489,5,17,21,41,14,4.45,15.0,fr,17208,189,732109,1,1,Active Shallow Crust,0.0,89.99062,0.0,05/17/9489 +2.9259,41.52708,7984,1,29,11,36,6,4.45,27.5,fr,17209,159,732113,1,1,Active Shallow Crust,240.0039,57.99442,0.0,01/29/7984 +2.9259,41.52708,1495,1,17,19,48,31,4.45,5.0,fr,17210,29,732117,1,1,Active Shallow Crust,128.8932,89.9933,0.0,01/17/1495 +2.9259,41.52708,314,11,17,10,22,53,4.65,5.0,fr,17211,6,732132,1,1,Active Shallow Crust,0.0,89.99043,0.0,11/17/0314 +2.9259,41.52708,9445,4,3,6,59,0,4.65,5.0,fr,17212,188,732135,1,1,Active Shallow Crust,240.0094,57.99385,0.0,04/03/9445 +2.9259,41.52708,409,12,14,10,26,35,4.75,5.0,fr,17213,8,732144,1,1,Active Shallow Crust,0.0,89.98957,0.0,12/14/0409 +2.9259,41.52708,7182,4,2,6,6,3,4.75,5.0,fr,17214,143,732153,1,1,Active Shallow Crust,128.8902,89.98789,0.0,04/02/7182 +2.9259,41.52708,9664,6,30,23,1,52,5.05,5.0,fr,17215,193,732180,1,1,Active Shallow Crust,0.0,89.98993,0.0,06/30/9664 +2.9259,41.52708,3422,6,28,1,3,39,5.25,5.0,fr,17216,68,732204,1,1,Active Shallow Crust,0.0,89.98987,0.0,06/28/3422 +0.50196,43.62635,7112,10,4,0,58,7,3.55,15.0,fr,17217,142,732481,1,1,Active Shallow Crust,0.0,89.98996,0.0,10/04/7112 +0.50196,43.62635,6912,6,23,8,9,46,3.55,15.0,fr,17218,138,732487,1,1,Active Shallow Crust,0.0,89.98985,-90.0,06/23/6912 +0.50196,43.62635,5192,1,27,13,23,18,3.65,27.5,fr,17219,103,732494,1,1,Active Shallow Crust,0.0,89.99024,0.0,01/27/5192 +0.50196,43.62635,2909,10,27,19,50,19,3.65,5.0,fr,17220,58,732495,1,1,Active Shallow Crust,240.0007,58.01287,0.0,10/27/2909 +0.50196,43.62635,5035,9,30,3,51,56,3.75,5.0,fr,17221,100,732504,1,1,Active Shallow Crust,0.0,89.98985,0.0,09/30/5035 +0.50196,43.62635,8427,11,18,9,27,12,3.85,27.5,fr,17222,168,732518,1,1,Active Shallow Crust,0.0,89.99031,0.0,11/18/8427 +0.50196,43.62635,3676,7,2,18,15,38,4.35,5.0,fr,17223,73,732579,1,1,Active Shallow Crust,240.0078,57.99585,0.0,07/02/3676 +0.32119,48.45647,8302,7,29,18,12,13,3.65,5.0,fr,17224,166,733452,1,1,Active Shallow Crust,0.0,89.98994,0.0,07/29/8302 +0.32119,48.45647,5674,11,28,20,51,50,3.65,5.0,fr,17225,113,733458,1,1,Active Shallow Crust,0.0,89.98982,-90.0,11/28/5674 +0.32119,48.45647,8483,7,12,20,18,3,3.75,15.0,fr,17226,169,733474,1,1,Active Shallow Crust,128.8964,89.96735,0.0,07/12/8483 +0.32119,48.45647,4237,2,15,19,18,57,3.95,5.0,fr,17227,84,733488,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/15/4237 +0.32119,48.45647,6674,2,13,20,43,39,4.15,5.0,fr,17228,133,733512,1,1,Active Shallow Crust,0.0,89.98994,0.0,02/13/6674 +8.81641,48.32159,1982,6,11,2,25,47,3.55,5.0,fr,17229,39,733920,1,4,Active Shallow Crust,0.0,89.98659,0.0,06/11/1982 +8.81641,48.32159,1718,7,7,21,39,3,3.55,5.0,fr,17230,34,733920,1,4,Active Shallow Crust,0.0,89.98659,0.0,07/07/1718 +8.81641,48.32159,2675,3,28,23,20,25,3.55,5.0,fr,17231,53,733920,1,4,Active Shallow Crust,0.0,89.98659,0.0,03/28/2675 +8.81641,48.32159,8002,4,9,21,46,27,3.55,5.0,fr,17232,160,733920,1,4,Active Shallow Crust,0.0,89.98659,0.0,04/09/8002 +8.81641,48.32159,6847,12,27,22,21,44,3.55,15.0,fr,17233,136,733921,1,2,Active Shallow Crust,0.0,89.98659,0.0,12/27/6847 +8.81641,48.32159,8429,3,15,7,39,16,3.55,15.0,fr,17234,168,733921,1,2,Active Shallow Crust,0.0,89.98659,0.0,03/15/8429 +8.81641,48.32159,5660,7,3,22,14,47,3.55,5.0,fr,17235,113,733923,1,2,Active Shallow Crust,240.0113,57.9983,0.0,07/03/5660 +8.81641,48.32159,628,7,10,14,7,40,3.55,5.0,fr,17236,12,733923,1,2,Active Shallow Crust,240.0113,57.9983,0.0,07/10/0628 +8.81641,48.32159,9629,4,8,20,54,35,3.55,15.0,fr,17237,192,733924,1,1,Active Shallow Crust,240.0113,57.9983,0.0,04/08/9629 +8.81641,48.32159,8287,7,6,21,8,8,3.55,5.0,fr,17238,165,733926,1,2,Active Shallow Crust,0.0,89.98643,-90.0,07/06/8287 +8.81641,48.32159,9083,5,31,5,55,39,3.55,5.0,fr,17239,181,733926,1,2,Active Shallow Crust,0.0,89.98643,-90.0,05/31/9083 +8.81641,48.32159,7687,1,29,8,37,18,3.65,5.0,fr,17240,153,733932,1,4,Active Shallow Crust,0.0,89.98804,0.0,01/29/7687 +8.81641,48.32159,9293,10,14,20,45,16,3.65,5.0,fr,17241,185,733932,1,4,Active Shallow Crust,0.0,89.98804,0.0,10/14/9293 +8.81641,48.32159,4093,4,6,3,57,7,3.65,5.0,fr,17242,81,733932,1,4,Active Shallow Crust,0.0,89.98804,0.0,04/06/4093 +8.81641,48.32159,6717,7,19,17,50,53,3.65,5.0,fr,17243,134,733932,1,4,Active Shallow Crust,0.0,89.98804,0.0,07/19/6717 +8.81641,48.32159,1326,2,26,15,6,31,3.65,15.0,fr,17244,26,733933,1,4,Active Shallow Crust,0.0,89.98804,0.0,02/26/1326 +8.81641,48.32159,5041,2,9,3,2,59,3.65,15.0,fr,17245,100,733933,1,4,Active Shallow Crust,0.0,89.98804,0.0,02/09/5041 +8.81641,48.32159,6552,1,9,1,44,9,3.65,15.0,fr,17246,131,733933,1,4,Active Shallow Crust,0.0,89.98804,0.0,01/09/6552 +8.81641,48.32159,1356,2,20,22,48,0,3.65,15.0,fr,17247,27,733933,1,4,Active Shallow Crust,0.0,89.98804,0.0,02/20/1356 +8.81641,48.32159,3142,10,16,21,48,31,3.65,27.5,fr,17248,62,733934,1,1,Active Shallow Crust,0.0,89.98804,0.0,10/16/3142 +8.81641,48.32159,2030,8,13,15,7,45,3.65,15.0,fr,17249,40,733936,1,1,Active Shallow Crust,240.0005,58.01363,0.0,08/13/2030 +8.81641,48.32159,6185,11,13,5,22,40,3.65,5.0,fr,17250,123,733938,1,3,Active Shallow Crust,0.0,89.98791,-90.0,11/13/6185 +8.81641,48.32159,9908,8,26,16,46,55,3.65,5.0,fr,17251,198,733938,1,3,Active Shallow Crust,0.0,89.98791,-90.0,08/26/9908 +8.81641,48.32159,822,8,12,2,21,11,3.65,5.0,fr,17252,16,733938,1,3,Active Shallow Crust,0.0,89.98791,-90.0,08/12/0822 +8.81641,48.32159,8254,1,22,12,56,25,3.65,5.0,fr,17253,165,733941,1,1,Active Shallow Crust,128.9031,89.96212,0.0,01/22/8254 +8.81641,48.32159,9268,1,21,1,19,23,3.75,5.0,fr,17254,185,733944,1,2,Active Shallow Crust,0.0,89.98935,0.0,01/21/9268 +8.81641,48.32159,4114,12,20,3,2,50,3.75,5.0,fr,17255,82,733944,1,2,Active Shallow Crust,0.0,89.98935,0.0,12/20/4114 +8.81641,48.32159,1354,10,2,8,21,31,3.75,15.0,fr,17256,27,733945,1,1,Active Shallow Crust,0.0,89.98935,0.0,10/02/1354 +8.81641,48.32159,7302,4,4,23,48,19,3.75,5.0,fr,17257,146,733947,1,2,Active Shallow Crust,240.0101,58.01583,0.0,04/04/7302 +8.81641,48.32159,7741,6,7,16,59,26,3.75,5.0,fr,17258,154,733947,1,2,Active Shallow Crust,240.0101,58.01583,0.0,06/07/7741 +8.81641,48.32159,5885,8,19,12,47,3,3.75,5.0,fr,17259,117,733953,1,1,Active Shallow Crust,128.8939,89.96752,0.0,08/19/5885 +8.81641,48.32159,9460,2,3,6,37,36,3.85,5.0,fr,17260,189,733956,1,2,Active Shallow Crust,0.0,89.99051,0.0,02/03/9460 +8.81641,48.32159,3015,3,11,13,37,29,3.85,5.0,fr,17261,60,733956,1,2,Active Shallow Crust,0.0,89.99051,0.0,03/11/3015 +8.81641,48.32159,9267,6,19,0,59,13,3.85,15.0,fr,17262,185,733957,1,4,Active Shallow Crust,0.0,89.99051,0.0,06/19/9267 +8.81641,48.32159,6736,10,25,8,18,9,3.85,15.0,fr,17263,134,733957,1,4,Active Shallow Crust,0.0,89.99051,0.0,10/25/6736 +8.81641,48.32159,3001,4,14,12,54,45,3.85,15.0,fr,17264,60,733957,1,4,Active Shallow Crust,0.0,89.99051,0.0,04/14/3001 +8.81641,48.32159,7584,12,17,8,28,7,3.85,15.0,fr,17265,151,733957,1,4,Active Shallow Crust,0.0,89.99051,0.0,12/17/7584 +8.81641,48.32159,3244,2,5,2,16,9,3.85,27.5,fr,17266,64,733958,1,1,Active Shallow Crust,0.0,89.99051,0.0,02/05/3244 +8.81641,48.32159,2017,7,25,17,11,49,3.85,5.0,fr,17267,40,733959,1,2,Active Shallow Crust,240.0107,57.99778,0.0,07/25/2017 +8.81641,48.32159,2105,4,14,23,11,32,3.85,5.0,fr,17268,42,733959,1,2,Active Shallow Crust,240.0107,57.99778,0.0,04/14/2105 +8.81641,48.32159,3461,8,7,21,13,32,3.85,5.0,fr,17269,69,733965,1,1,Active Shallow Crust,128.8979,89.99051,0.0,08/07/3461 +8.81641,48.32159,7854,8,12,12,47,23,3.95,5.0,fr,17270,157,733968,1,4,Active Shallow Crust,0.0,89.99154,0.0,08/12/7854 +8.81641,48.32159,211,7,28,15,41,5,3.95,5.0,fr,17271,4,733968,1,4,Active Shallow Crust,0.0,89.99154,0.0,07/28/0211 +8.81641,48.32159,4092,10,17,14,45,7,3.95,5.0,fr,17272,81,733968,1,4,Active Shallow Crust,0.0,89.99154,0.0,10/17/4092 +8.81641,48.32159,3066,9,20,18,17,40,3.95,5.0,fr,17273,61,733968,1,4,Active Shallow Crust,0.0,89.99154,0.0,09/20/3066 +8.81641,48.32159,9463,4,22,20,22,20,3.95,15.0,fr,17274,189,733969,1,2,Active Shallow Crust,0.0,89.99154,0.0,04/22/9463 +8.81641,48.32159,3473,7,21,9,43,38,3.95,15.0,fr,17275,69,733969,1,2,Active Shallow Crust,0.0,89.99154,0.0,07/21/3473 +8.81641,48.32159,7651,10,18,8,30,48,3.95,15.0,fr,17276,153,733972,1,1,Active Shallow Crust,240.0209,58.00528,0.0,10/18/7651 +8.81641,48.32159,1157,10,1,11,12,25,3.95,15.0,fr,17277,23,733975,1,1,Active Shallow Crust,0.0,89.99144,-90.0,10/01/1157 +8.81641,48.32159,8212,12,11,7,0,58,4.05,5.0,fr,17278,164,733980,1,1,Active Shallow Crust,0.0,89.99245,0.0,12/11/8212 +8.81641,48.32159,8859,1,4,9,53,7,4.05,15.0,fr,17279,177,733981,1,1,Active Shallow Crust,0.0,89.99245,0.0,01/04/8859 +8.81641,48.32159,4199,4,12,1,18,15,4.05,27.5,fr,17280,83,733982,1,1,Active Shallow Crust,0.0,89.99245,0.0,04/12/4199 +8.81641,48.32159,1990,2,26,14,56,7,4.05,27.5,fr,17281,39,733991,1,1,Active Shallow Crust,128.8882,89.99623,0.0,02/26/1990 +8.81641,48.32159,6107,9,5,19,25,1,4.15,5.0,fr,17282,122,733992,1,2,Active Shallow Crust,0.0,89.99328,0.0,09/05/6107 +8.81641,48.32159,3749,5,15,15,23,1,4.15,5.0,fr,17283,74,733992,1,2,Active Shallow Crust,0.0,89.99328,0.0,05/15/3749 +8.81641,48.32159,9053,3,20,9,55,11,4.15,5.0,fr,17284,181,733998,1,1,Active Shallow Crust,0.0,89.9932,-90.0,03/20/9053 +8.81641,48.32159,3344,4,3,12,3,37,4.15,5.0,fr,17285,66,734001,1,2,Active Shallow Crust,128.8975,89.99328,0.0,04/03/3344 +8.81641,48.32159,2182,6,26,10,28,48,4.15,5.0,fr,17286,43,734001,1,2,Active Shallow Crust,128.8975,89.99328,0.0,06/26/2182 +8.81641,48.32159,586,10,15,15,33,52,4.25,5.0,fr,17287,11,734004,1,1,Active Shallow Crust,0.0,89.98802,0.0,10/15/0586 +8.81641,48.32159,8696,1,8,13,57,23,4.25,15.0,fr,17288,173,734008,1,1,Active Shallow Crust,240.0081,57.99442,0.0,01/08/8696 +8.81641,48.32159,9822,7,28,7,55,7,4.35,5.0,fr,17289,196,734019,1,2,Active Shallow Crust,240.0085,57.99664,0.0,07/28/9822 +8.81641,48.32159,7701,8,30,18,56,24,4.35,5.0,fr,17290,154,734019,1,2,Active Shallow Crust,240.0085,57.99664,0.0,08/30/7701 +8.81641,48.32159,7720,7,22,1,15,39,4.45,5.0,fr,17291,154,734028,1,1,Active Shallow Crust,0.0,89.99049,0.0,07/22/7720 +8.81641,48.32159,9349,7,11,3,4,41,4.45,15.0,fr,17292,186,734029,1,1,Active Shallow Crust,0.0,89.99049,0.0,07/11/9349 +8.81641,48.32159,1689,9,30,17,16,58,4.55,5.0,fr,17293,33,734040,1,2,Active Shallow Crust,0.0,89.99152,0.0,09/30/1689 +8.81641,48.32159,8551,4,12,15,15,39,4.55,5.0,fr,17294,171,734040,1,2,Active Shallow Crust,0.0,89.99152,0.0,04/12/8551 +8.81641,48.32159,9374,7,3,6,24,3,4.55,27.5,fr,17295,187,734051,1,1,Active Shallow Crust,128.8936,89.98575,0.0,07/03/9374 +8.81641,48.32159,8625,9,6,9,59,48,4.65,5.0,fr,17296,172,734052,1,1,Active Shallow Crust,0.0,89.98866,0.0,09/06/8625 +8.81641,48.32159,1181,5,31,5,30,35,4.75,5.0,fr,17297,23,734073,1,1,Active Shallow Crust,128.8874,89.98868,0.0,05/31/1181 +8.81641,48.32159,3584,2,26,0,20,21,4.85,5.0,fr,17298,71,734076,1,2,Active Shallow Crust,0.0,89.99099,0.0,02/26/3584 +8.81641,48.32159,8637,5,8,17,4,49,4.85,5.0,fr,17299,172,734076,1,2,Active Shallow Crust,0.0,89.99099,0.0,05/08/8637 +8.81641,48.32159,4333,4,7,13,13,52,4.95,27.5,fr,17300,86,734090,1,1,Active Shallow Crust,0.0,89.9893,0.0,04/07/4333 +8.81641,48.32159,2816,8,31,23,29,30,4.95,5.0,fr,17301,56,734094,1,1,Active Shallow Crust,0.0,89.98917,-90.0,08/31/2816 +8.81641,48.32159,6113,5,29,9,25,41,4.95,5.0,fr,17302,122,734097,1,1,Active Shallow Crust,128.8887,89.99033,0.0,05/29/6113 +8.81641,48.32159,2482,9,17,23,23,45,5.15,5.0,fr,17303,49,734112,1,1,Active Shallow Crust,0.0,89.98937,0.0,09/17/2482 +8.81641,48.32159,1279,9,16,12,35,45,5.15,15.0,fr,17304,25,734113,1,1,Active Shallow Crust,0.0,89.98937,0.0,09/16/1279 +6.23866,44.39024,9325,3,22,5,34,29,3.55,27.5,fr,17305,186,734402,1,1,Active Shallow Crust,0.0,89.9928,0.0,03/22/9325 +6.23866,44.39024,3813,10,17,9,50,53,3.65,5.0,fr,17306,76,734412,1,1,Active Shallow Crust,0.0,89.98715,0.0,10/17/3813 +6.23866,44.39024,6692,6,13,22,20,17,3.75,5.0,fr,17307,133,734424,1,1,Active Shallow Crust,0.0,89.98856,0.0,06/13/6692 +6.23866,44.39024,914,6,4,1,4,50,3.75,15.0,fr,17308,18,734425,1,1,Active Shallow Crust,0.0,89.98856,0.0,06/04/0914 +6.23866,44.39024,7231,4,10,0,27,30,3.75,27.5,fr,17309,144,734426,1,1,Active Shallow Crust,0.0,89.98856,0.0,04/10/7231 +6.23866,44.39024,8778,11,16,5,17,32,3.75,27.5,fr,17310,175,734429,1,1,Active Shallow Crust,240.0089,58.01688,0.0,11/16/8778 +6.23866,44.39024,8490,10,19,18,14,40,3.75,27.5,fr,17311,169,734432,1,1,Active Shallow Crust,0.0,89.98842,-90.0,10/19/8490 +6.23866,44.39024,304,3,7,16,34,52,3.85,5.0,fr,17312,6,734439,1,1,Active Shallow Crust,240.0106,57.99847,0.0,03/07/0304 +6.23866,44.39024,4272,1,18,0,16,20,4.15,15.0,fr,17313,85,734479,1,1,Active Shallow Crust,0.0,89.98904,-90.0,01/18/4272 +6.23866,44.39024,2057,12,13,14,0,47,4.25,5.0,fr,17314,41,734484,1,2,Active Shallow Crust,0.0,89.99034,0.0,12/13/2057 +6.23866,44.39024,3300,7,28,13,56,20,4.25,5.0,fr,17315,65,734484,1,2,Active Shallow Crust,0.0,89.99034,0.0,07/28/3300 +6.23866,44.39024,6817,5,4,2,54,11,4.35,15.0,fr,17316,136,734500,1,1,Active Shallow Crust,240.0079,57.99596,0.0,05/04/6817 +6.23866,44.39024,2890,10,31,9,30,54,4.45,5.0,fr,17317,57,734508,1,1,Active Shallow Crust,0.0,89.98977,0.0,10/31/2890 +6.23866,44.39024,9434,7,21,6,39,2,5.15,15.0,fr,17318,188,734593,1,1,Active Shallow Crust,0.0,89.98972,0.0,07/21/9434 +7.6485,48.45103,9824,1,18,17,43,9,3.55,5.0,fr,17319,196,734880,1,6,Active Shallow Crust,0.0,89.99331,0.0,01/18/9824 +7.6485,48.45103,1262,8,16,3,13,7,3.55,5.0,fr,17320,25,734880,1,6,Active Shallow Crust,0.0,89.99331,0.0,08/16/1262 +7.6485,48.45103,7087,3,25,19,11,16,3.55,5.0,fr,17321,141,734880,1,6,Active Shallow Crust,0.0,89.99331,0.0,03/25/7087 +7.6485,48.45103,5433,7,18,11,4,46,3.55,5.0,fr,17322,108,734880,1,6,Active Shallow Crust,0.0,89.99331,0.0,07/18/5433 +7.6485,48.45103,4085,12,16,21,9,42,3.55,5.0,fr,17323,81,734880,1,6,Active Shallow Crust,0.0,89.99331,0.0,12/16/4085 +7.6485,48.45103,7752,3,22,6,37,29,3.55,5.0,fr,17324,155,734880,1,6,Active Shallow Crust,0.0,89.99331,0.0,03/22/7752 +7.6485,48.45103,7400,3,28,13,16,52,3.55,15.0,fr,17325,147,734881,1,1,Active Shallow Crust,0.0,89.99331,0.0,03/28/7400 +7.6485,48.45103,3078,10,24,1,48,38,3.55,5.0,fr,17326,61,734883,1,1,Active Shallow Crust,240.0118,57.99905,0.0,10/24/3078 +7.6485,48.45103,7015,9,28,16,41,2,3.55,5.0,fr,17327,140,734886,1,3,Active Shallow Crust,0.0,89.99323,-90.0,09/28/7015 +7.6485,48.45103,9341,2,23,5,28,58,3.55,5.0,fr,17328,186,734886,1,3,Active Shallow Crust,0.0,89.99323,-90.0,02/23/9341 +7.6485,48.45103,1751,4,30,18,47,13,3.55,5.0,fr,17329,35,734886,1,3,Active Shallow Crust,0.0,89.99323,-90.0,04/30/1751 +7.6485,48.45103,4311,6,22,5,20,15,3.55,27.5,fr,17330,86,734891,1,1,Active Shallow Crust,128.895,89.99666,0.0,06/22/4311 +7.6485,48.45103,8258,3,31,1,46,17,3.65,5.0,fr,17331,165,734892,1,1,Active Shallow Crust,0.0,89.98808,0.0,03/31/8258 +7.6485,48.45103,1760,12,24,12,53,4,3.65,15.0,fr,17332,35,734893,1,1,Active Shallow Crust,0.0,89.98808,0.0,12/24/1760 +7.6485,48.45103,656,10,21,22,44,58,3.65,5.0,fr,17333,13,734901,1,1,Active Shallow Crust,128.8994,89.96356,0.0,10/21/0656 +7.6485,48.45103,373,10,26,14,1,11,3.75,5.0,fr,17334,7,734904,1,1,Active Shallow Crust,0.0,89.98937,0.0,10/26/0373 +7.6485,48.45103,7727,7,9,9,14,37,3.75,15.0,fr,17335,154,734905,1,2,Active Shallow Crust,0.0,89.98937,0.0,07/09/7727 +7.6485,48.45103,519,7,2,7,21,14,3.75,15.0,fr,17336,10,734905,1,2,Active Shallow Crust,0.0,89.98937,0.0,07/02/0519 +7.6485,48.45103,3207,5,6,4,11,33,3.75,5.0,fr,17337,64,734907,1,2,Active Shallow Crust,240.0082,58.01755,0.0,05/06/3207 +7.6485,48.45103,6286,3,28,13,25,11,3.75,5.0,fr,17338,125,734907,1,2,Active Shallow Crust,240.0082,58.01755,0.0,03/28/6286 +7.6485,48.45103,2000,2,26,5,56,35,3.75,5.0,fr,17339,39,734913,1,2,Active Shallow Crust,128.8966,89.96752,0.0,02/26/2000 +7.6485,48.45103,3596,4,28,11,4,14,3.75,5.0,fr,17340,71,734913,1,2,Active Shallow Crust,128.8966,89.96752,0.0,04/28/3596 +7.6485,48.45103,8191,4,28,2,28,56,3.85,5.0,fr,17341,163,734916,1,1,Active Shallow Crust,0.0,89.99053,0.0,04/28/8191 +7.6485,48.45103,7253,11,27,14,0,37,3.95,5.0,fr,17342,145,734928,1,2,Active Shallow Crust,0.0,89.99156,0.0,11/27/7253 +7.6485,48.45103,1238,8,23,17,31,39,3.95,5.0,fr,17343,24,734928,1,2,Active Shallow Crust,0.0,89.99156,0.0,08/23/1238 +7.6485,48.45103,9551,8,25,22,10,54,3.95,15.0,fr,17344,191,734938,1,1,Active Shallow Crust,128.8998,89.99367,0.0,08/25/9551 +7.6485,48.45103,2813,5,21,0,33,2,4.05,5.0,fr,17345,56,734940,1,1,Active Shallow Crust,0.0,89.98872,0.0,05/21/2813 +7.6485,48.45103,6190,6,6,14,16,59,4.05,5.0,fr,17346,123,734943,1,1,Active Shallow Crust,240.006,58.00617,0.0,06/06/6190 +7.6485,48.45103,3576,8,25,16,26,42,4.15,5.0,fr,17347,71,734952,1,1,Active Shallow Crust,0.0,89.98994,0.0,08/25/3576 +7.6485,48.45103,9016,1,26,7,58,29,4.35,27.5,fr,17348,180,734978,1,1,Active Shallow Crust,0.0,89.98935,0.0,01/26/9016 +7.6485,48.45103,3630,5,6,12,14,51,4.35,5.0,fr,17349,72,734979,1,1,Active Shallow Crust,240.0087,57.99605,0.0,05/06/3630 +7.6485,48.45103,2520,4,14,5,12,36,4.45,5.0,fr,17350,50,734988,1,2,Active Shallow Crust,0.0,89.99051,0.0,04/14/2520 +7.6485,48.45103,6917,4,11,13,13,12,4.45,5.0,fr,17351,138,734988,1,2,Active Shallow Crust,0.0,89.99051,0.0,04/11/6917 +7.6485,48.45103,5749,11,28,18,41,42,4.45,27.5,fr,17352,114,734990,1,1,Active Shallow Crust,0.0,89.99051,0.0,11/28/5749 +7.6485,48.45103,8616,2,17,8,53,3,4.45,27.5,fr,17353,172,734993,1,1,Active Shallow Crust,240.0059,57.99483,0.0,02/17/8616 +7.6485,48.45103,6956,10,4,0,42,47,4.55,5.0,fr,17354,139,735000,1,1,Active Shallow Crust,0.0,89.98943,0.0,10/04/6956 +7.6485,48.45103,8125,1,4,20,43,21,4.55,5.0,fr,17355,162,735009,1,1,Active Shallow Crust,128.8936,89.98576,0.0,01/04/8125 +7.6485,48.45103,3441,6,19,0,52,42,4.85,5.0,fr,17356,68,735036,1,1,Active Shallow Crust,0.0,89.98952,0.0,06/19/3441 +7.6485,48.45103,1610,7,30,12,17,1,4.85,15.0,fr,17357,32,735040,1,1,Active Shallow Crust,240.0181,58.00244,0.0,07/30/1610 +7.6485,48.45103,7483,5,24,6,32,56,5.05,27.5,fr,17358,149,735062,1,1,Active Shallow Crust,0.0,89.99049,0.0,05/24/7483 +7.6485,48.45103,8094,8,22,0,36,8,5.15,5.0,fr,17359,161,735072,1,1,Active Shallow Crust,0.0,89.99046,0.0,08/22/8094 +7.6485,48.45103,5340,9,23,3,53,48,5.15,27.5,fr,17360,106,735074,1,1,Active Shallow Crust,0.0,89.99046,0.0,09/23/5340 +7.6485,48.45103,6621,11,16,17,28,57,5.25,5.0,fr,17361,132,735084,1,1,Active Shallow Crust,0.0,89.9896,0.0,11/16/6621 +7.6485,48.45103,5388,11,25,2,30,35,5.55,15.0,fr,17362,107,735121,1,1,Active Shallow Crust,0.0,89.98996,0.0,11/25/5388 +7.6485,48.45103,8970,2,8,21,17,50,5.85,15.0,fr,17363,179,735157,1,1,Active Shallow Crust,0.0,89.99005,0.0,02/08/8970 +3.09413,41.14789,8156,11,19,6,51,36,3.55,15.0,fr,17364,163,735361,1,1,Active Shallow Crust,0.0,89.98861,0.0,11/19/8156 +3.09413,41.14789,5785,4,20,17,58,31,3.75,5.0,fr,17365,115,735384,1,1,Active Shallow Crust,0.0,89.99095,0.0,04/20/5785 +3.09413,41.14789,4918,11,1,0,57,37,3.85,5.0,fr,17366,98,735396,1,1,Active Shallow Crust,0.0,89.98925,0.0,11/01/4918 +8.55848,47.65558,4863,9,30,17,9,22,3.55,5.0,fr,17367,97,735840,1,6,Active Shallow Crust,0.0,89.98641,0.0,09/30/4863 +8.55848,47.65558,4733,5,4,23,31,17,3.55,5.0,fr,17368,94,735840,1,6,Active Shallow Crust,0.0,89.98641,0.0,05/04/4733 +8.55848,47.65558,8962,3,12,8,16,37,3.55,5.0,fr,17369,179,735840,1,6,Active Shallow Crust,0.0,89.98641,0.0,03/12/8962 +8.55848,47.65558,498,6,25,7,0,2,3.55,5.0,fr,17370,9,735840,1,6,Active Shallow Crust,0.0,89.98641,0.0,06/25/0498 +8.55848,47.65558,2763,3,21,16,4,38,3.55,5.0,fr,17371,55,735840,1,6,Active Shallow Crust,0.0,89.98641,0.0,03/21/2763 +8.55848,47.65558,558,5,19,1,57,27,3.55,5.0,fr,17372,11,735840,1,6,Active Shallow Crust,0.0,89.98641,0.0,05/19/0558 +8.55848,47.65558,2248,3,2,3,2,17,3.55,15.0,fr,17373,44,735841,1,5,Active Shallow Crust,0.0,89.98641,0.0,03/02/2248 +8.55848,47.65558,2427,6,6,14,28,28,3.55,15.0,fr,17374,48,735841,1,5,Active Shallow Crust,0.0,89.98641,0.0,06/06/2427 +8.55848,47.65558,1138,12,20,7,58,10,3.55,15.0,fr,17375,22,735841,1,5,Active Shallow Crust,0.0,89.98641,0.0,12/20/1138 +8.55848,47.65558,5599,10,22,14,44,30,3.55,15.0,fr,17376,111,735841,1,5,Active Shallow Crust,0.0,89.98641,0.0,10/22/5599 +8.55848,47.65558,4577,5,3,6,37,49,3.55,15.0,fr,17377,91,735841,1,5,Active Shallow Crust,0.0,89.98641,0.0,05/03/4577 +8.55848,47.65558,2994,9,3,23,29,41,3.55,5.0,fr,17378,59,735843,1,3,Active Shallow Crust,240.0108,57.99821,0.0,09/03/2994 +8.55848,47.65558,4447,3,1,8,40,53,3.55,5.0,fr,17379,88,735843,1,3,Active Shallow Crust,240.0108,57.99821,0.0,03/01/4447 +8.55848,47.65558,1711,6,9,19,7,18,3.55,5.0,fr,17380,34,735843,1,3,Active Shallow Crust,240.0108,57.99821,0.0,06/09/1711 +8.55848,47.65558,9481,8,7,11,49,50,3.55,15.0,fr,17381,189,735844,1,1,Active Shallow Crust,240.0108,57.99821,0.0,08/07/9481 +8.55848,47.65558,2152,7,9,3,34,12,3.55,27.5,fr,17382,43,735845,1,1,Active Shallow Crust,240.0108,57.99811,0.0,07/09/2152 +8.55848,47.65558,1316,6,27,13,2,28,3.55,27.5,fr,17383,26,735848,1,2,Active Shallow Crust,0.0,89.98626,-90.0,06/27/1316 +8.55848,47.65558,6725,2,1,10,8,42,3.55,27.5,fr,17384,134,735848,1,2,Active Shallow Crust,0.0,89.98626,-90.0,02/01/6725 +8.55848,47.65558,4852,7,8,18,0,30,3.55,5.0,fr,17385,97,735849,1,1,Active Shallow Crust,128.8963,89.99321,0.0,07/08/4852 +8.55848,47.65558,3567,8,18,22,32,32,3.65,5.0,fr,17386,71,735852,1,10,Active Shallow Crust,0.0,89.98789,0.0,08/18/3567 +8.55848,47.65558,2760,1,3,13,3,47,3.65,5.0,fr,17387,55,735852,1,10,Active Shallow Crust,0.0,89.98789,0.0,01/03/2760 +8.55848,47.65558,2667,9,17,10,29,25,3.65,5.0,fr,17388,53,735852,1,10,Active Shallow Crust,0.0,89.98789,0.0,09/17/2667 +8.55848,47.65558,6617,4,7,19,30,2,3.65,5.0,fr,17389,132,735852,1,10,Active Shallow Crust,0.0,89.98789,0.0,04/07/6617 +8.55848,47.65558,1164,8,28,12,14,26,3.65,5.0,fr,17390,23,735852,1,10,Active Shallow Crust,0.0,89.98789,0.0,08/28/1164 +8.55848,47.65558,5713,10,11,13,37,55,3.65,5.0,fr,17391,114,735852,1,10,Active Shallow Crust,0.0,89.98789,0.0,10/11/5713 +8.55848,47.65558,2776,7,5,12,5,16,3.65,5.0,fr,17392,55,735852,1,10,Active Shallow Crust,0.0,89.98789,0.0,07/05/2776 +8.55848,47.65558,8294,10,13,16,41,33,3.65,5.0,fr,17393,165,735852,1,10,Active Shallow Crust,0.0,89.98789,0.0,10/13/8294 +8.55848,47.65558,7199,7,11,15,34,9,3.65,5.0,fr,17394,143,735852,1,10,Active Shallow Crust,0.0,89.98789,0.0,07/11/7199 +8.55848,47.65558,4582,2,3,7,33,25,3.65,5.0,fr,17395,91,735852,1,10,Active Shallow Crust,0.0,89.98789,0.0,02/03/4582 +8.55848,47.65558,243,1,13,16,26,57,3.65,15.0,fr,17396,4,735853,1,4,Active Shallow Crust,0.0,89.98789,0.0,01/13/0243 +8.55848,47.65558,5971,4,20,11,41,36,3.65,15.0,fr,17397,119,735853,1,4,Active Shallow Crust,0.0,89.98789,0.0,04/20/5971 +8.55848,47.65558,3683,12,28,18,12,31,3.65,15.0,fr,17398,73,735853,1,4,Active Shallow Crust,0.0,89.98789,0.0,12/28/3683 +8.55848,47.65558,2887,2,28,8,40,5,3.65,15.0,fr,17399,57,735853,1,4,Active Shallow Crust,0.0,89.98789,0.0,02/28/2887 +8.55848,47.65558,2241,8,26,10,21,25,3.65,27.5,fr,17400,44,735854,1,1,Active Shallow Crust,0.0,89.98789,0.0,08/26/2241 +8.55848,47.65558,6547,10,6,0,39,57,3.65,5.0,fr,17401,130,735855,1,1,Active Shallow Crust,239.9987,58.01473,0.0,10/06/6547 +8.55848,47.65558,2964,7,22,16,28,40,3.65,15.0,fr,17402,59,735856,1,1,Active Shallow Crust,239.9987,58.01473,0.0,07/22/2964 +8.55848,47.65558,4002,8,15,18,57,52,3.65,5.0,fr,17403,80,735858,1,1,Active Shallow Crust,0.0,89.98775,-90.0,08/15/4002 +8.55848,47.65558,6073,11,2,12,36,16,3.65,15.0,fr,17404,121,735862,1,1,Active Shallow Crust,128.9007,89.96355,0.0,11/02/6073 +8.55848,47.65558,9324,6,23,11,57,22,3.75,5.0,fr,17405,186,735864,1,3,Active Shallow Crust,0.0,89.98921,0.0,06/23/9324 +8.55848,47.65558,1715,1,28,22,42,39,3.75,5.0,fr,17406,34,735864,1,3,Active Shallow Crust,0.0,89.98921,0.0,01/28/1715 +8.55848,47.65558,861,12,29,11,44,55,3.75,5.0,fr,17407,17,735864,1,3,Active Shallow Crust,0.0,89.98921,0.0,12/29/0861 +8.55848,47.65558,5448,9,2,12,11,44,3.75,15.0,fr,17408,108,735865,1,3,Active Shallow Crust,0.0,89.98921,0.0,09/02/5448 +8.55848,47.65558,3015,6,25,5,40,31,3.75,15.0,fr,17409,60,735865,1,3,Active Shallow Crust,0.0,89.98921,0.0,06/25/3015 +8.55848,47.65558,3184,12,14,12,4,56,3.75,15.0,fr,17410,63,735865,1,3,Active Shallow Crust,0.0,89.98921,0.0,12/14/3184 +8.55848,47.65558,5763,10,2,20,4,31,3.75,27.5,fr,17411,115,735866,1,1,Active Shallow Crust,0.0,89.98921,0.0,10/02/5763 +8.55848,47.65558,8187,1,5,10,58,42,3.75,5.0,fr,17412,163,735867,1,3,Active Shallow Crust,240.0086,58.01685,0.0,01/05/8187 +8.55848,47.65558,1627,1,16,19,49,37,3.75,5.0,fr,17413,32,735867,1,3,Active Shallow Crust,240.0086,58.01685,0.0,01/16/1627 +8.55848,47.65558,9451,8,8,20,25,28,3.75,5.0,fr,17414,189,735867,1,3,Active Shallow Crust,240.0086,58.01685,0.0,08/08/9451 +8.55848,47.65558,3674,6,8,20,25,3,3.75,5.0,fr,17415,73,735870,1,2,Active Shallow Crust,0.0,89.98908,-90.0,06/08/3674 +8.55848,47.65558,1963,8,29,10,9,10,3.75,5.0,fr,17416,39,735870,1,2,Active Shallow Crust,0.0,89.98908,-90.0,08/29/1963 +8.55848,47.65558,502,8,11,11,48,50,3.85,5.0,fr,17417,10,735876,1,2,Active Shallow Crust,0.0,89.99038,0.0,08/11/0502 +8.55848,47.65558,3725,11,13,22,2,23,3.85,5.0,fr,17418,74,735876,1,2,Active Shallow Crust,0.0,89.99038,0.0,11/13/3725 +8.55848,47.65558,6467,8,15,21,56,59,3.85,15.0,fr,17419,129,735877,1,1,Active Shallow Crust,0.0,89.99038,0.0,08/15/6467 +8.55848,47.65558,3145,10,4,14,6,24,3.85,27.5,fr,17420,62,735878,1,1,Active Shallow Crust,0.0,89.99038,0.0,10/04/3145 +8.55848,47.65558,3064,7,23,8,5,8,3.85,5.0,fr,17421,61,735879,1,1,Active Shallow Crust,240.0107,57.99776,0.0,07/23/3064 +8.55848,47.65558,8503,7,8,13,54,30,3.85,15.0,fr,17422,170,735880,1,1,Active Shallow Crust,240.0107,57.99776,0.0,07/08/8503 +8.55848,47.65558,5791,10,16,2,1,29,3.85,5.0,fr,17423,115,735882,1,1,Active Shallow Crust,0.0,89.99027,-90.0,10/16/5791 +8.55848,47.65558,8040,4,16,6,57,55,3.85,5.0,fr,17424,160,735885,1,1,Active Shallow Crust,128.8966,89.99039,0.0,04/16/8040 +8.55848,47.65558,3940,9,24,5,54,16,3.85,15.0,fr,17425,78,735886,1,1,Active Shallow Crust,128.8966,89.99039,0.0,09/24/3940 +8.55848,47.65558,891,12,21,2,14,59,3.85,27.5,fr,17426,17,735887,1,1,Active Shallow Crust,128.8966,89.99039,0.0,12/21/0891 +8.55848,47.65558,4079,2,10,22,31,9,3.95,5.0,fr,17427,81,735888,1,5,Active Shallow Crust,0.0,89.99142,0.0,02/10/4079 +8.55848,47.65558,1863,11,2,22,1,18,3.95,5.0,fr,17428,37,735888,1,5,Active Shallow Crust,0.0,89.99142,0.0,11/02/1863 +8.55848,47.65558,458,9,18,9,30,37,3.95,5.0,fr,17429,9,735888,1,5,Active Shallow Crust,0.0,89.99142,0.0,09/18/0458 +8.55848,47.65558,7400,10,21,16,42,32,3.95,5.0,fr,17430,147,735888,1,5,Active Shallow Crust,0.0,89.99142,0.0,10/21/7400 +8.55848,47.65558,1587,3,16,21,0,27,3.95,5.0,fr,17431,31,735888,1,5,Active Shallow Crust,0.0,89.99142,0.0,03/16/1587 +8.55848,47.65558,3481,2,4,14,10,7,3.95,15.0,fr,17432,69,735889,1,1,Active Shallow Crust,0.0,89.99142,0.0,02/04/3481 +8.55848,47.65558,193,4,30,13,17,21,3.95,27.5,fr,17433,3,735890,1,2,Active Shallow Crust,0.0,89.99142,0.0,04/30/0193 +8.55848,47.65558,1223,5,20,10,38,3,3.95,27.5,fr,17434,24,735890,1,2,Active Shallow Crust,0.0,89.99142,0.0,05/20/1223 +8.55848,47.65558,6668,2,19,22,54,51,3.95,5.0,fr,17435,133,735891,1,3,Active Shallow Crust,240.0195,58.00526,0.0,02/19/6668 +8.55848,47.65558,2791,1,25,17,0,28,3.95,5.0,fr,17436,55,735891,1,3,Active Shallow Crust,240.0195,58.00526,0.0,01/25/2791 +8.55848,47.65558,7030,10,8,14,24,54,3.95,5.0,fr,17437,140,735891,1,3,Active Shallow Crust,240.0195,58.00526,0.0,10/08/7030 +8.55848,47.65558,5785,11,20,18,33,18,3.95,27.5,fr,17438,115,735893,1,1,Active Shallow Crust,240.0195,58.00526,0.0,11/20/5785 +8.55848,47.65558,2366,5,23,7,2,38,3.95,5.0,fr,17439,47,735894,1,1,Active Shallow Crust,0.0,89.99133,-90.0,05/23/2366 +8.55848,47.65558,3404,9,8,10,38,53,4.05,5.0,fr,17440,68,735900,1,2,Active Shallow Crust,0.0,89.99236,0.0,09/08/3404 +8.55848,47.65558,528,12,14,0,40,40,4.05,5.0,fr,17441,10,735900,1,2,Active Shallow Crust,0.0,89.99236,0.0,12/14/0528 +8.55848,47.65558,4693,12,16,2,46,19,4.05,15.0,fr,17442,93,735901,1,1,Active Shallow Crust,0.0,89.99236,0.0,12/16/4693 +8.55848,47.65558,7592,5,6,18,30,40,4.05,5.0,fr,17443,151,735906,1,1,Active Shallow Crust,0.0,89.99227,-90.0,05/06/7592 +8.55848,47.65558,7622,12,18,10,54,31,4.05,5.0,fr,17444,152,735909,1,2,Active Shallow Crust,128.8891,89.99618,0.0,12/18/7622 +8.55848,47.65558,7229,11,8,18,49,55,4.05,5.0,fr,17445,144,735909,1,2,Active Shallow Crust,128.8891,89.99618,0.0,11/08/7229 +8.55848,47.65558,5850,10,19,17,56,34,4.05,15.0,fr,17446,116,735910,1,2,Active Shallow Crust,128.8891,89.99618,0.0,10/19/5850 +8.55848,47.65558,6010,9,30,20,33,43,4.05,15.0,fr,17447,120,735910,1,2,Active Shallow Crust,128.8891,89.99618,0.0,09/30/6010 +8.55848,47.65558,666,12,4,13,18,0,4.15,5.0,fr,17448,13,735912,1,3,Active Shallow Crust,0.0,89.99319,0.0,12/04/0666 +8.55848,47.65558,1697,10,4,13,51,8,4.15,5.0,fr,17449,33,735912,1,3,Active Shallow Crust,0.0,89.99319,0.0,10/04/1697 +8.55848,47.65558,6884,6,7,12,47,31,4.15,5.0,fr,17450,137,735912,1,3,Active Shallow Crust,0.0,89.99319,0.0,06/07/6884 +8.55848,47.65558,3194,3,8,18,29,15,4.15,15.0,fr,17451,63,735913,1,4,Active Shallow Crust,0.0,89.99319,0.0,03/08/3194 +8.55848,47.65558,5415,4,9,11,27,19,4.15,15.0,fr,17452,108,735913,1,4,Active Shallow Crust,0.0,89.99319,0.0,04/09/5415 +8.55848,47.65558,2194,4,1,18,41,53,4.15,15.0,fr,17453,43,735913,1,4,Active Shallow Crust,0.0,89.99319,0.0,04/01/2194 +8.55848,47.65558,8478,1,17,10,34,16,4.15,15.0,fr,17454,169,735913,1,4,Active Shallow Crust,0.0,89.99319,0.0,01/17/8478 +8.55848,47.65558,6723,3,28,0,58,58,4.15,5.0,fr,17455,134,735915,1,2,Active Shallow Crust,240.0087,57.99763,0.0,03/28/6723 +8.55848,47.65558,8348,3,30,5,35,2,4.15,5.0,fr,17456,166,735915,1,2,Active Shallow Crust,240.0087,57.99763,0.0,03/30/8348 +8.55848,47.65558,5003,1,7,9,7,49,4.15,27.5,fr,17457,100,735917,1,1,Active Shallow Crust,240.0087,57.99761,0.0,01/07/5003 +8.55848,47.65558,9869,9,20,8,0,52,4.25,15.0,fr,17458,197,735925,1,1,Active Shallow Crust,0.0,89.98786,0.0,09/20/9869 +8.55848,47.65558,6533,11,10,5,34,5,4.25,5.0,fr,17459,130,735927,1,1,Active Shallow Crust,240.0086,57.99314,0.0,11/10/6533 +8.55848,47.65558,8171,1,24,12,11,26,4.25,5.0,fr,17460,163,735930,1,1,Active Shallow Crust,0.0,89.98772,-90.0,01/24/8171 +8.55848,47.65558,3169,9,21,5,29,20,4.35,5.0,fr,17461,63,735936,1,2,Active Shallow Crust,0.0,89.98918,0.0,09/21/3169 +8.55848,47.65558,5465,1,1,19,8,34,4.35,5.0,fr,17462,109,735936,1,2,Active Shallow Crust,0.0,89.98918,0.0,01/01/5465 +8.55848,47.65558,694,2,18,16,18,1,4.35,15.0,fr,17463,13,735943,1,1,Active Shallow Crust,0.0,89.98906,-90.0,02/18/0694 +8.55848,47.65558,467,2,26,1,28,56,4.35,27.5,fr,17464,9,735947,1,1,Active Shallow Crust,128.897,89.98306,0.0,02/26/0467 +8.55848,47.65558,4092,6,14,1,5,0,4.45,5.0,fr,17465,81,735948,1,2,Active Shallow Crust,0.0,89.99036,0.0,06/14/4092 +8.55848,47.65558,5092,7,19,9,40,38,4.45,5.0,fr,17466,101,735948,1,2,Active Shallow Crust,0.0,89.99036,0.0,07/19/5092 +8.55848,47.65558,5087,11,18,0,23,35,4.45,15.0,fr,17467,101,735949,1,1,Active Shallow Crust,0.0,89.99036,0.0,11/18/5087 +8.55848,47.65558,7831,1,25,1,59,27,4.45,5.0,fr,17468,156,735951,1,1,Active Shallow Crust,240.0057,57.99424,0.0,01/25/7831 +8.55848,47.65558,239,3,13,14,42,54,4.45,5.0,fr,17469,4,735954,1,1,Active Shallow Crust,0.0,89.99025,-90.0,03/13/0239 +8.55848,47.65558,6836,2,7,20,46,1,4.45,5.0,fr,17470,136,735957,1,1,Active Shallow Crust,128.8916,89.99277,0.0,02/07/6836 +8.55848,47.65558,2624,8,2,3,21,44,4.55,5.0,fr,17471,52,735960,1,2,Active Shallow Crust,0.0,89.99141,0.0,08/02/2624 +8.55848,47.65558,9851,9,7,7,59,11,4.55,5.0,fr,17472,197,735960,1,2,Active Shallow Crust,0.0,89.99141,0.0,09/07/9851 +8.55848,47.65558,4960,2,28,18,31,37,4.55,15.0,fr,17473,99,735961,1,1,Active Shallow Crust,0.0,89.99141,0.0,02/28/4960 +8.55848,47.65558,3284,2,28,19,3,7,4.55,5.0,fr,17474,65,735963,1,2,Active Shallow Crust,240.0096,57.99736,0.0,02/28/3284 +8.55848,47.65558,4139,10,10,23,7,21,4.55,5.0,fr,17475,82,735963,1,2,Active Shallow Crust,240.0096,57.99736,0.0,10/10/4139 +8.55848,47.65558,7532,9,17,16,13,16,4.55,5.0,fr,17476,150,735966,1,1,Active Shallow Crust,0.0,89.99131,-90.0,09/17/7532 +8.55848,47.65558,6750,4,30,6,12,3,4.65,5.0,fr,17477,134,735975,1,1,Active Shallow Crust,240.0116,57.99436,0.0,04/30/6750 +8.55848,47.65558,3593,5,30,21,30,14,4.75,5.0,fr,17478,71,735984,1,2,Active Shallow Crust,0.0,89.98976,0.0,05/30/3593 +8.55848,47.65558,3971,11,21,4,38,15,4.75,5.0,fr,17479,79,735984,1,2,Active Shallow Crust,0.0,89.98976,0.0,11/21/3971 +8.55848,47.65558,4286,9,5,0,18,56,4.75,5.0,fr,17480,85,735993,1,1,Active Shallow Crust,128.8882,89.98865,0.0,09/05/4286 +8.55848,47.65558,2126,6,9,17,24,29,4.85,5.0,fr,17481,42,735996,1,1,Active Shallow Crust,0.0,89.99088,0.0,06/09/2126 +8.55848,47.65558,6479,10,4,4,27,31,4.85,5.0,fr,17482,129,736002,1,1,Active Shallow Crust,0.0,89.99077,-90.0,10/04/6479 +8.55848,47.65558,6037,12,20,6,12,22,4.95,5.0,fr,17483,120,736014,1,1,Active Shallow Crust,0.0,89.98903,-90.0,12/20/6037 +8.55848,47.65558,7989,9,22,13,43,15,5.05,27.5,fr,17484,159,736022,1,1,Active Shallow Crust,0.0,89.99033,0.0,09/22/7989 +8.55848,47.65558,4256,9,15,6,23,29,5.65,15.0,fr,17485,85,736093,1,1,Active Shallow Crust,0.0,89.99031,0.0,09/15/4256 +8.55848,47.65558,9483,7,14,16,39,12,6.25,27.5,fr,17486,189,736166,1,1,Active Shallow Crust,0.0,89.99028,0.0,07/14/9483 +0.47054,45.79076,8326,12,27,12,45,33,3.55,5.0,fr,17487,166,736320,1,1,Active Shallow Crust,0.0,89.98989,0.0,12/27/8326 +0.47054,45.79076,1365,10,18,23,59,47,3.55,15.0,fr,17488,27,736321,1,1,Active Shallow Crust,0.0,89.98989,0.0,10/18/1365 +0.47054,45.79076,2861,9,30,3,14,57,3.55,27.5,fr,17489,57,736322,1,1,Active Shallow Crust,0.0,89.98989,0.0,09/30/2861 +0.47054,45.79076,3548,5,10,11,20,44,3.55,5.0,fr,17490,70,736326,1,1,Active Shallow Crust,0.0,89.99022,-90.0,05/10/3548 +0.47054,45.79076,4468,5,16,17,53,24,3.65,5.0,fr,17491,89,736332,1,3,Active Shallow Crust,0.0,89.98981,0.0,05/16/4468 +0.47054,45.79076,9142,12,22,22,23,19,3.65,5.0,fr,17492,182,736332,1,3,Active Shallow Crust,0.0,89.98981,0.0,12/22/9142 +0.47054,45.79076,492,8,23,21,57,5,3.65,5.0,fr,17493,9,736332,1,3,Active Shallow Crust,0.0,89.98981,0.0,08/23/0492 +0.47054,45.79076,8707,10,20,11,14,24,3.65,15.0,fr,17494,174,736333,1,3,Active Shallow Crust,0.0,89.98981,0.0,10/20/8707 +0.47054,45.79076,6348,4,10,3,4,37,3.65,15.0,fr,17495,126,736333,1,3,Active Shallow Crust,0.0,89.98981,0.0,04/10/6348 +0.47054,45.79076,3830,9,9,20,38,30,3.65,15.0,fr,17496,76,736333,1,3,Active Shallow Crust,0.0,89.98981,0.0,09/09/3830 +0.47054,45.79076,9511,7,16,15,44,31,3.85,5.0,fr,17497,190,736356,1,1,Active Shallow Crust,0.0,89.99004,0.0,07/16/9511 +0.47054,45.79076,3501,7,5,13,7,58,3.95,5.0,fr,17498,70,736368,1,1,Active Shallow Crust,0.0,89.99002,0.0,07/05/3501 +0.47054,45.79076,5532,3,30,20,11,6,4.05,15.0,fr,17499,110,736381,1,1,Active Shallow Crust,0.0,89.99011,0.0,03/30/5532 +0.47054,45.79076,3590,4,19,7,13,59,4.15,5.0,fr,17500,71,736392,1,1,Active Shallow Crust,0.0,89.99009,0.0,04/19/3590 +0.47054,45.79076,1884,7,25,16,0,16,4.35,5.0,fr,17501,37,736416,1,2,Active Shallow Crust,0.0,89.99003,0.0,07/25/1884 +0.47054,45.79076,436,11,1,21,59,34,4.35,5.0,fr,17502,8,736416,1,2,Active Shallow Crust,0.0,89.99003,0.0,11/01/0436 +0.47054,45.79076,8593,11,24,4,19,35,4.35,15.0,fr,17503,171,736417,1,1,Active Shallow Crust,0.0,89.99003,0.0,11/24/8593 +0.47054,45.79076,3682,5,1,1,4,42,4.45,15.0,fr,17504,73,736429,1,1,Active Shallow Crust,0.0,89.99002,0.0,05/01/3682 +0.47054,45.79076,5460,12,26,19,27,38,4.45,15.0,fr,17505,109,736432,1,1,Active Shallow Crust,240.0051,57.99463,0.0,12/26/5460 +1.00855,45.69562,4438,3,24,22,27,58,3.55,5.0,fr,17506,88,736800,1,1,Active Shallow Crust,0.0,89.98943,0.0,03/24/4438 +1.00855,45.69562,8305,1,5,1,48,31,3.75,15.0,fr,17507,166,736831,1,1,Active Shallow Crust,0.0,89.9901,-90.0,01/05/8305 +1.00855,45.69562,3746,7,7,21,25,38,4.05,5.0,fr,17508,74,736860,1,1,Active Shallow Crust,0.0,89.9901,0.0,07/07/3746 +1.00855,45.69562,1079,6,24,20,17,11,4.15,27.5,fr,17509,21,736877,1,1,Active Shallow Crust,240.0083,57.99724,0.0,06/24/1079 +1.00855,45.69562,1866,10,15,11,22,39,4.15,5.0,fr,17510,37,736881,1,1,Active Shallow Crust,128.8978,89.99382,0.0,10/15/1866 +1.00855,45.69562,1696,7,11,16,41,22,5.35,5.0,fr,17511,33,737016,1,1,Active Shallow Crust,0.0,89.99002,0.0,07/11/1696 +-0.33734,46.13296,4769,2,12,16,17,39,3.55,15.0,fr,17512,95,737281,1,1,Active Shallow Crust,0.0,89.98995,0.0,02/12/4769 +-0.33734,46.13296,5758,12,17,7,59,15,3.55,5.0,fr,17513,115,737283,1,1,Active Shallow Crust,240.0121,57.99817,0.0,12/17/5758 +-0.33734,46.13296,2069,4,17,6,42,35,3.55,5.0,fr,17514,41,737289,1,1,Active Shallow Crust,128.8962,89.99389,0.0,04/17/2069 +-0.33734,46.13296,9167,2,23,17,7,46,3.65,15.0,fr,17515,183,737293,1,1,Active Shallow Crust,0.0,89.98988,0.0,02/23/9167 +-0.33734,46.13296,1690,8,17,7,53,30,3.65,15.0,fr,17516,33,737302,1,1,Active Shallow Crust,128.9004,89.96352,0.0,08/17/1690 +-0.33734,46.13296,3134,7,4,14,50,34,3.75,5.0,fr,17517,62,737307,1,2,Active Shallow Crust,240.0083,58.01757,0.0,07/04/3134 +-0.33734,46.13296,6769,1,31,13,59,50,3.75,5.0,fr,17518,135,737307,1,2,Active Shallow Crust,240.0083,58.01757,0.0,01/31/6769 +-0.33734,46.13296,1449,2,22,15,51,16,3.85,5.0,fr,17519,28,737316,1,1,Active Shallow Crust,0.0,89.9901,0.0,02/22/1449 +-0.33734,46.13296,1653,2,2,5,23,45,3.85,5.0,fr,17520,33,737322,1,1,Active Shallow Crust,0.0,89.98999,-90.0,02/02/1653 +-0.33734,46.13296,912,4,10,22,21,58,3.95,5.0,fr,17521,18,737334,1,1,Active Shallow Crust,0.0,89.98997,-90.0,04/10/0912 +-0.33734,46.13296,4781,3,5,22,49,4,4.05,5.0,fr,17522,95,737340,1,1,Active Shallow Crust,0.0,89.98993,0.0,03/05/4781 +-0.33734,46.13296,6131,1,10,14,19,59,4.05,5.0,fr,17523,122,737349,1,1,Active Shallow Crust,128.8906,89.99361,0.0,01/10/6131 +-0.33734,46.13296,2040,12,10,21,31,58,4.15,5.0,fr,17524,40,737352,1,2,Active Shallow Crust,0.0,89.98993,0.0,12/10/2040 +-0.33734,46.13296,9706,2,27,3,36,50,4.15,5.0,fr,17525,194,737352,1,2,Active Shallow Crust,0.0,89.98993,0.0,02/27/9706 +-0.33734,46.13296,9574,11,11,2,48,42,4.25,15.0,fr,17526,191,737365,1,1,Active Shallow Crust,0.0,89.99005,0.0,11/11/9574 +-0.33734,46.13296,6096,9,10,12,56,34,4.75,5.0,fr,17527,121,737424,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/10/6096 +-0.33734,46.13296,8049,1,11,11,29,3,4.85,5.0,fr,17528,160,737436,1,1,Active Shallow Crust,0.0,89.99003,0.0,01/11/8049 +2.59335,46.09822,5386,9,6,8,47,3,3.55,5.0,fr,17529,107,737760,1,2,Active Shallow Crust,0.0,89.98951,0.0,09/06/5386 +2.59335,46.09822,4754,7,21,4,20,25,3.55,5.0,fr,17530,95,737760,1,2,Active Shallow Crust,0.0,89.98951,0.0,07/21/4754 +2.59335,46.09822,92,2,10,11,14,16,3.55,15.0,fr,17531,1,737761,1,2,Active Shallow Crust,0.0,89.98951,0.0,02/10/0092 +2.59335,46.09822,6804,2,8,0,24,23,3.55,15.0,fr,17532,136,737761,1,2,Active Shallow Crust,0.0,89.98951,0.0,02/08/6804 +2.59335,46.09822,1756,5,11,0,6,32,3.55,5.0,fr,17533,35,737763,1,2,Active Shallow Crust,240.0115,57.99837,0.0,05/11/1756 +2.59335,46.09822,4018,5,20,23,31,2,3.55,5.0,fr,17534,80,737763,1,2,Active Shallow Crust,240.0115,57.99837,0.0,05/20/4018 +2.59335,46.09822,3041,4,24,20,22,48,3.65,5.0,fr,17535,60,737772,1,3,Active Shallow Crust,0.0,89.99065,0.0,04/24/3041 +2.59335,46.09822,4589,12,27,20,50,11,3.65,5.0,fr,17536,91,737772,1,3,Active Shallow Crust,0.0,89.99065,0.0,12/27/4589 +2.59335,46.09822,977,10,19,1,46,42,3.65,5.0,fr,17537,19,737772,1,3,Active Shallow Crust,0.0,89.99065,0.0,10/19/0977 +2.59335,46.09822,5414,10,7,7,41,15,3.65,15.0,fr,17538,108,737776,1,1,Active Shallow Crust,240.0008,58.01281,0.0,10/07/5414 +2.59335,46.09822,434,12,28,11,42,19,3.65,27.5,fr,17539,8,737777,1,1,Active Shallow Crust,240.0008,58.01272,0.0,12/28/0434 +2.59335,46.09822,9211,3,21,21,26,15,3.65,15.0,fr,17540,184,737779,1,1,Active Shallow Crust,0.0,89.99055,-90.0,03/21/9211 +2.59335,46.09822,2430,4,12,16,4,33,3.75,15.0,fr,17541,48,737788,1,1,Active Shallow Crust,240.0087,58.01741,0.0,04/12/2430 +2.59335,46.09822,2243,10,21,8,20,4,3.75,5.0,fr,17542,44,737790,1,1,Active Shallow Crust,0.0,89.98876,-90.0,10/21/2243 +2.59335,46.09822,9545,4,6,11,22,7,3.75,5.0,fr,17543,190,737793,1,1,Active Shallow Crust,128.8964,89.96722,0.0,04/06/9545 +2.59335,46.09822,3897,2,12,5,49,17,3.85,5.0,fr,17544,77,737796,1,2,Active Shallow Crust,0.0,89.9901,0.0,02/12/3897 +2.59335,46.09822,2218,5,5,2,37,21,3.85,5.0,fr,17545,44,737796,1,2,Active Shallow Crust,0.0,89.9901,0.0,05/05/2218 +2.59335,46.09822,1158,5,13,21,20,30,3.85,27.5,fr,17546,23,737798,1,1,Active Shallow Crust,0.0,89.9901,0.0,05/13/1158 +2.59335,46.09822,9785,5,17,3,32,26,3.85,5.0,fr,17547,195,737799,1,1,Active Shallow Crust,240.011,57.9976,0.0,05/17/9785 +2.59335,46.09822,7218,11,9,8,8,46,3.95,27.5,fr,17548,144,737810,1,1,Active Shallow Crust,0.0,89.98897,0.0,11/09/7218 +2.59335,46.09822,7287,11,27,12,24,14,3.95,5.0,fr,17549,145,737814,1,1,Active Shallow Crust,0.0,89.99107,-90.0,11/27/7287 +2.59335,46.09822,171,10,20,23,37,56,4.25,5.0,fr,17550,3,737850,1,1,Active Shallow Crust,0.0,89.99052,-90.0,10/20/0171 +2.59335,46.09822,8299,1,21,1,24,40,4.95,5.0,fr,17551,165,737928,1,1,Active Shallow Crust,0.0,89.99023,0.0,01/21/8299 +2.59335,46.09822,1663,6,17,2,44,32,5.65,27.5,fr,17552,33,738014,1,1,Active Shallow Crust,0.0,89.99002,0.0,06/17/1663 +3.72713,44.04964,7420,11,19,14,45,39,3.55,15.0,fr,17553,148,738241,1,1,Active Shallow Crust,0.0,89.98913,0.0,11/19/7420 +3.72713,44.04964,8599,2,19,23,18,51,3.65,5.0,fr,17554,171,738252,1,1,Active Shallow Crust,0.0,89.99031,0.0,02/19/8599 +3.72713,44.04964,769,7,8,17,37,59,3.85,5.0,fr,17555,15,738276,1,1,Active Shallow Crust,0.0,89.98974,0.0,07/08/0769 +3.72713,44.04964,3726,4,27,7,0,18,3.85,15.0,fr,17556,74,738280,1,1,Active Shallow Crust,240.0108,57.99757,0.0,04/27/3726 +3.72713,44.04964,4370,5,8,7,47,4,3.85,5.0,fr,17557,87,738285,1,1,Active Shallow Crust,128.8961,89.99358,0.0,05/08/4370 +3.72713,44.04964,6174,5,25,20,33,13,3.95,5.0,fr,17558,123,738288,1,1,Active Shallow Crust,0.0,89.99085,0.0,05/25/6174 +3.72713,44.04964,548,5,30,14,3,29,3.95,27.5,fr,17559,10,738296,1,1,Active Shallow Crust,0.0,89.99075,-90.0,05/30/0548 +3.72713,44.04964,1390,2,26,4,50,37,4.35,5.0,fr,17560,27,738336,1,1,Active Shallow Crust,0.0,89.9899,0.0,02/26/1390 +3.72713,44.04964,5889,5,15,7,16,3,4.35,5.0,fr,17561,117,738339,1,1,Active Shallow Crust,240.0078,57.99593,0.0,05/15/5889 +-1.03405,48.63437,6859,3,7,13,47,19,3.55,5.0,fr,17562,137,739200,1,2,Active Shallow Crust,0.0,89.99001,0.0,03/07/6859 +-1.03405,48.63437,3556,4,6,6,12,31,3.55,5.0,fr,17563,71,739200,1,2,Active Shallow Crust,0.0,89.99001,0.0,04/06/3556 +-1.03405,48.63437,79,2,16,13,14,43,3.55,15.0,fr,17564,1,739201,1,2,Active Shallow Crust,0.0,89.99001,0.0,02/16/0079 +-1.03405,48.63437,2135,4,8,7,2,18,3.55,15.0,fr,17565,42,739201,1,2,Active Shallow Crust,0.0,89.99001,0.0,04/08/2135 +-1.03405,48.63437,4845,9,3,16,56,41,3.65,5.0,fr,17566,96,739212,1,2,Active Shallow Crust,0.0,89.98961,0.0,09/03/4845 +-1.03405,48.63437,7057,8,31,22,4,7,3.65,5.0,fr,17567,141,739212,1,2,Active Shallow Crust,0.0,89.98961,0.0,08/31/7057 +-1.03405,48.63437,5064,11,10,6,9,23,3.85,5.0,fr,17568,101,739236,1,1,Active Shallow Crust,0.0,89.99056,0.0,11/10/5064 +-1.03405,48.63437,4564,12,26,17,17,14,4.05,5.0,fr,17569,91,739260,1,1,Active Shallow Crust,0.0,89.98969,0.0,12/26/4564 +-1.03405,48.63437,54,3,10,12,59,23,4.05,27.5,fr,17570,1,739262,1,1,Active Shallow Crust,0.0,89.98969,0.0,03/10/0054 +-1.03405,48.63437,2135,1,24,11,7,31,4.05,15.0,fr,17571,42,739264,1,1,Active Shallow Crust,240.0065,58.00578,0.0,01/24/2135 +-1.03405,48.63437,2687,1,19,14,15,48,4.15,5.0,fr,17572,53,739272,1,1,Active Shallow Crust,0.0,89.98998,0.0,01/19/2687 +-1.03405,48.63437,7605,6,29,12,7,37,4.25,5.0,fr,17573,152,739284,1,1,Active Shallow Crust,0.0,89.99033,0.0,06/29/7605 +-1.03405,48.63437,7555,3,2,15,6,43,4.35,5.0,fr,17574,151,739302,1,1,Active Shallow Crust,0.0,89.98994,-90.0,03/02/7555 +-1.03405,48.63437,6902,4,9,14,3,52,4.95,15.0,fr,17575,138,739369,1,1,Active Shallow Crust,0.0,89.99003,0.0,04/09/6902 +-1.64607,46.70076,8683,1,1,5,23,32,3.55,5.0,fr,17576,173,739680,1,1,Active Shallow Crust,0.0,89.98962,0.0,01/01/8683 +-1.64607,46.70076,6491,8,10,7,19,54,3.55,15.0,fr,17577,129,739681,1,1,Active Shallow Crust,0.0,89.98962,0.0,08/10/6491 +-1.64607,46.70076,9703,1,26,13,29,47,3.55,5.0,fr,17578,194,739683,1,1,Active Shallow Crust,240.0123,57.99796,0.0,01/26/9703 +-1.64607,46.70076,4041,5,18,14,31,7,3.55,5.0,fr,17579,80,739689,1,1,Active Shallow Crust,128.8963,89.99309,0.0,05/18/4041 +-1.64607,46.70076,7770,6,23,5,24,57,3.65,5.0,fr,17580,155,739692,1,2,Active Shallow Crust,0.0,89.99075,0.0,06/23/7770 +-1.64607,46.70076,3888,2,1,6,17,56,3.65,5.0,fr,17581,77,739692,1,2,Active Shallow Crust,0.0,89.99075,0.0,02/01/3888 +-1.64607,46.70076,9506,7,12,18,30,59,3.65,5.0,fr,17582,190,739695,1,1,Active Shallow Crust,240.0012,58.01294,0.0,07/12/9506 +-1.64607,46.70076,1189,7,5,1,48,21,3.65,5.0,fr,17583,23,739698,1,1,Active Shallow Crust,0.0,89.99065,-90.0,07/05/1189 +-1.64607,46.70076,7362,1,28,3,47,45,3.85,5.0,fr,17584,147,739722,1,1,Active Shallow Crust,0.0,89.9901,-90.0,01/28/7362 +-1.64607,46.70076,2976,4,25,19,24,52,4.15,15.0,fr,17585,59,739753,1,1,Active Shallow Crust,0.0,89.9896,0.0,04/25/2976 +-1.64607,46.70076,1536,12,25,11,1,7,4.65,5.0,fr,17586,30,739815,1,1,Active Shallow Crust,240.011,57.99429,0.0,12/25/1536 +-1.64607,46.70076,1775,4,11,12,33,46,4.65,5.0,fr,17587,35,739821,1,1,Active Shallow Crust,128.8911,89.98698,0.0,04/11/1775 +0.04043,50.15688,1217,5,20,11,59,43,3.65,5.0,fr,17588,24,740172,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/20/1217 +0.04043,50.15688,7288,1,26,12,46,25,3.85,5.0,fr,17589,145,740196,1,1,Active Shallow Crust,0.0,89.99,0.0,01/26/7288 +0.04043,50.15688,8027,1,14,14,2,15,4.05,15.0,fr,17590,160,740221,1,1,Active Shallow Crust,0.0,89.99001,0.0,01/14/8027 +0.04043,50.15688,2967,7,15,20,20,0,4.25,15.0,fr,17591,59,740245,1,1,Active Shallow Crust,0.0,89.98999,0.0,07/15/2967 +0.04043,50.15688,3161,9,2,14,30,59,4.55,5.0,fr,17592,63,740280,1,1,Active Shallow Crust,360.0,89.99001,0.0,09/02/3161 +-6.42389,47.43295,4750,1,25,22,19,37,3.55,5.0,fr,17593,94,740649,1,1,Active Shallow Crust,128.8949,89.99659,0.0,01/25/4750 +-1.36457,43.30654,1293,2,27,13,47,4,3.55,5.0,fr,17594,25,741120,1,2,Active Shallow Crust,0.0,89.99083,0.0,02/27/1293 +-1.36457,43.30654,8570,6,4,2,1,54,3.55,5.0,fr,17595,171,741120,1,2,Active Shallow Crust,0.0,89.99083,0.0,06/04/8570 +-1.36457,43.30654,7198,6,19,21,59,0,3.55,15.0,fr,17596,143,741121,1,1,Active Shallow Crust,0.0,89.99083,0.0,06/19/7198 +-1.36457,43.30654,4263,2,13,7,47,26,3.55,5.0,fr,17597,85,741123,1,2,Active Shallow Crust,240.0119,57.99799,0.0,02/13/4263 +-1.36457,43.30654,1295,9,19,23,29,9,3.55,5.0,fr,17598,25,741123,1,2,Active Shallow Crust,240.0119,57.99799,0.0,09/19/1295 +-1.36457,43.30654,9275,4,13,11,39,33,3.55,5.0,fr,17599,185,741129,1,2,Active Shallow Crust,128.8965,89.99358,0.0,04/13/9275 +-1.36457,43.30654,3488,7,23,17,15,0,3.55,5.0,fr,17600,69,741129,1,2,Active Shallow Crust,128.8965,89.99358,0.0,07/23/3488 +-1.36457,43.30654,3196,6,12,19,44,21,3.75,5.0,fr,17601,63,741144,1,2,Active Shallow Crust,0.0,89.9898,0.0,06/12/3196 +-1.36457,43.30654,8646,11,2,0,37,20,3.75,5.0,fr,17602,172,741144,1,2,Active Shallow Crust,0.0,89.9898,0.0,11/02/8646 +-1.36457,43.30654,6269,11,5,6,27,33,3.75,15.0,fr,17603,125,741145,1,2,Active Shallow Crust,0.0,89.9898,0.0,11/05/6269 +-1.36457,43.30654,4244,3,18,21,16,16,3.75,15.0,fr,17604,84,741145,1,2,Active Shallow Crust,0.0,89.9898,0.0,03/18/4244 +-1.36457,43.30654,8325,8,23,13,38,10,3.75,5.0,fr,17605,166,741147,1,1,Active Shallow Crust,240.008,58.01746,0.0,08/23/8325 +-1.36457,43.30654,8718,7,23,18,18,24,3.75,5.0,fr,17606,174,741150,1,1,Active Shallow Crust,0.0,89.98969,-90.0,07/23/8718 +-1.36457,43.30654,490,9,19,20,6,55,3.75,15.0,fr,17607,9,741154,1,1,Active Shallow Crust,128.8968,89.9673,0.0,09/19/0490 +-1.36457,43.30654,2738,3,3,18,17,0,3.85,5.0,fr,17608,54,741156,1,1,Active Shallow Crust,0.0,89.98961,0.0,03/03/2738 +-1.36457,43.30654,139,1,24,11,45,22,3.85,15.0,fr,17609,2,741157,1,2,Active Shallow Crust,0.0,89.98961,0.0,01/24/0139 +-1.36457,43.30654,1773,2,23,6,37,56,3.85,15.0,fr,17610,35,741157,1,2,Active Shallow Crust,0.0,89.98961,0.0,02/23/1773 +-1.36457,43.30654,3636,12,4,7,25,2,3.85,5.0,fr,17611,72,741165,1,1,Active Shallow Crust,128.8959,89.99351,0.0,12/04/3636 +-1.36457,43.30654,9571,11,18,10,59,24,3.95,27.5,fr,17612,191,741170,1,1,Active Shallow Crust,0.0,89.98959,0.0,11/18/9571 +-1.36457,43.30654,6777,12,12,7,39,16,3.95,5.0,fr,17613,135,741174,1,1,Active Shallow Crust,0.0,89.98946,-90.0,12/12/6777 +-1.36457,43.30654,1283,1,29,15,55,28,4.05,5.0,fr,17614,25,741180,1,2,Active Shallow Crust,0.0,89.98969,0.0,01/29/1283 +-1.36457,43.30654,9555,11,3,8,27,56,4.05,5.0,fr,17615,191,741180,1,2,Active Shallow Crust,0.0,89.98969,0.0,11/03/9555 +-1.36457,43.30654,4958,5,27,8,46,1,4.05,5.0,fr,17616,99,741186,1,1,Active Shallow Crust,0.0,89.98956,-90.0,05/27/4958 +-1.36457,43.30654,9303,10,11,3,6,36,4.15,5.0,fr,17617,186,741192,1,1,Active Shallow Crust,0.0,89.98988,0.0,10/11/9303 +-1.36457,43.30654,5608,2,14,10,49,44,4.25,5.0,fr,17618,112,741213,1,1,Active Shallow Crust,128.8948,89.98096,0.0,02/14/5608 +-1.36457,43.30654,7623,3,27,9,38,42,4.35,5.0,fr,17619,152,741216,1,1,Active Shallow Crust,0.0,89.98978,0.0,03/27/7623 +-1.36457,43.30654,7592,8,31,20,25,5,4.35,15.0,fr,17620,151,741223,1,1,Active Shallow Crust,0.0,89.98965,-90.0,08/31/7592 +-1.36457,43.30654,9022,10,3,8,41,57,4.65,5.0,fr,17621,180,741258,1,2,Active Shallow Crust,0.0,89.99006,-90.0,10/03/9022 +-1.36457,43.30654,4227,5,5,4,42,52,4.65,5.0,fr,17622,84,741258,1,2,Active Shallow Crust,0.0,89.99006,-90.0,05/05/4227 +-1.36457,43.30654,9608,4,29,2,34,14,4.75,15.0,fr,17623,192,741265,1,1,Active Shallow Crust,0.0,89.98986,0.0,04/29/9608 +-1.36457,43.30654,2105,5,7,12,7,53,4.95,5.0,fr,17624,42,741294,1,1,Active Shallow Crust,0.0,89.99,-90.0,05/07/2105 +-1.36457,43.30654,142,10,20,15,44,26,5.05,5.0,fr,17625,2,741300,1,1,Active Shallow Crust,0.0,89.98988,0.0,10/20/0142 +-1.36457,43.30654,373,6,17,8,52,52,5.15,5.0,fr,17626,7,741312,1,1,Active Shallow Crust,0.0,89.99011,0.0,06/17/0373 +2.6618,42.42559,7266,12,19,7,54,54,3.55,5.0,fr,17627,145,741600,1,1,Active Shallow Crust,0.0,89.98884,0.0,12/19/7266 +2.6618,42.42559,8083,7,3,23,3,32,3.55,15.0,fr,17628,161,741601,1,1,Active Shallow Crust,0.0,89.98884,0.0,07/03/8083 +2.6618,42.42559,433,9,1,5,16,7,3.55,5.0,fr,17629,8,741609,1,1,Active Shallow Crust,128.8966,89.99255,0.0,09/01/0433 +2.6618,42.42559,3649,1,8,1,20,46,3.65,5.0,fr,17630,72,741615,1,1,Active Shallow Crust,240.0004,58.01246,0.0,01/08/3649 +2.6618,42.42559,8584,4,20,5,26,1,3.75,5.0,fr,17631,171,741624,1,2,Active Shallow Crust,0.0,89.99113,0.0,04/20/8584 +2.6618,42.42559,9528,12,5,18,38,52,3.75,5.0,fr,17632,190,741624,1,2,Active Shallow Crust,0.0,89.99113,0.0,12/05/9528 +2.6618,42.42559,5903,12,3,17,21,14,3.75,15.0,fr,17633,118,741625,1,1,Active Shallow Crust,0.0,89.99113,0.0,12/03/5903 +2.6618,42.42559,9521,9,20,5,22,54,3.85,5.0,fr,17634,190,741636,1,1,Active Shallow Crust,0.0,89.98946,0.0,09/20/9521 +2.6618,42.42559,1131,5,17,23,45,33,3.85,15.0,fr,17635,22,741637,1,1,Active Shallow Crust,0.0,89.98946,0.0,05/17/1131 +2.6618,42.42559,5717,8,13,6,2,18,3.95,27.5,fr,17636,114,741650,1,1,Active Shallow Crust,0.0,89.99061,0.0,08/13/5717 +2.6618,42.42559,2341,12,13,19,30,0,3.95,5.0,fr,17637,46,741654,1,1,Active Shallow Crust,0.0,89.9905,-90.0,12/13/2341 +2.6618,42.42559,1875,1,4,23,43,53,4.05,15.0,fr,17638,37,741661,1,1,Active Shallow Crust,0.0,89.98953,0.0,01/04/1875 +2.6618,42.42559,7939,4,18,23,7,13,4.05,27.5,fr,17639,158,741662,1,1,Active Shallow Crust,0.0,89.98953,0.0,04/18/7939 +2.6618,42.42559,5794,12,26,22,13,34,4.05,5.0,fr,17640,115,741663,1,1,Active Shallow Crust,240.0056,58.00567,0.0,12/26/5794 +2.6618,42.42559,6742,12,30,1,26,23,4.05,15.0,fr,17641,134,741664,1,1,Active Shallow Crust,240.0056,58.00564,0.0,12/30/6742 +2.6618,42.42559,2614,9,6,3,57,47,4.35,27.5,fr,17642,52,741707,1,1,Active Shallow Crust,128.8988,89.98261,0.0,09/06/2614 +2.6618,42.42559,3401,1,2,15,48,56,4.45,5.0,fr,17643,68,741708,1,1,Active Shallow Crust,0.0,89.98943,0.0,01/02/3401 +2.6618,42.42559,1990,1,15,2,24,28,4.95,15.0,fr,17644,39,741769,1,1,Active Shallow Crust,0.0,89.99034,0.0,01/15/1990 +4.20587,49.7684,9149,4,25,6,0,54,3.75,5.0,fr,17645,182,742113,1,1,Active Shallow Crust,128.8961,89.96754,0.0,04/25/9149 +4.20587,49.7684,856,3,2,2,35,38,3.95,15.0,fr,17646,17,742129,1,1,Active Shallow Crust,0.0,89.99178,0.0,03/02/0856 +4.20587,49.7684,1547,7,20,6,55,47,4.05,5.0,fr,17647,30,742140,1,1,Active Shallow Crust,0.0,89.98901,0.0,07/20/1547 +3.50853,44.67595,2537,11,29,10,59,36,3.55,5.0,fr,17648,50,742560,1,1,Active Shallow Crust,0.0,89.98924,0.0,11/29/2537 +3.50853,44.67595,1397,3,20,15,23,39,3.65,5.0,fr,17649,27,742572,1,1,Active Shallow Crust,0.0,89.99042,0.0,03/20/1397 +3.50853,44.67595,6639,1,16,15,41,47,3.65,5.0,fr,17650,132,742575,1,1,Active Shallow Crust,240.0002,58.01338,0.0,01/16/6639 +3.50853,44.67595,846,12,28,23,25,13,3.65,27.5,fr,17651,16,742577,1,1,Active Shallow Crust,240.0002,58.0133,0.0,12/28/0846 +3.50853,44.67595,4743,11,11,13,42,40,3.75,5.0,fr,17652,94,742584,1,1,Active Shallow Crust,0.0,89.98861,0.0,11/11/4743 +3.50853,44.67595,5892,10,17,15,30,19,3.75,15.0,fr,17653,117,742591,1,1,Active Shallow Crust,0.0,89.99136,-90.0,10/17/5892 +3.50853,44.67595,2830,2,27,19,26,45,3.85,5.0,fr,17654,56,742596,1,1,Active Shallow Crust,0.0,89.98985,0.0,02/27/2830 +3.50853,44.67595,8902,10,23,6,53,58,3.85,15.0,fr,17655,178,742597,1,1,Active Shallow Crust,0.0,89.98985,0.0,10/23/8902 +3.50853,44.67595,196,4,1,22,42,59,4.05,5.0,fr,17656,3,742620,1,1,Active Shallow Crust,0.0,89.98992,0.0,04/01/0196 +3.50853,44.67595,1632,1,13,1,27,11,4.05,15.0,fr,17657,32,742621,1,1,Active Shallow Crust,0.0,89.98992,0.0,01/13/1632 +3.50853,44.67595,2417,1,8,8,30,59,4.15,5.0,fr,17658,48,742632,1,1,Active Shallow Crust,0.0,89.98922,0.0,01/08/2417 +3.50853,44.67595,6973,12,3,4,10,47,4.15,5.0,fr,17659,139,742638,1,1,Active Shallow Crust,0.0,89.98909,-90.0,12/03/6973 +3.50853,44.67595,4810,8,14,9,29,53,4.45,5.0,fr,17660,96,742677,1,1,Active Shallow Crust,128.8923,89.99428,0.0,08/14/4810 +-1.58214,50.32503,6482,7,24,10,54,33,3.65,5.0,fr,17661,129,743052,1,1,Active Shallow Crust,0.0,89.98996,0.0,07/24/6482 +-1.58214,50.32503,169,8,24,21,12,29,4.25,5.0,fr,17662,3,743127,1,1,Active Shallow Crust,240.0083,57.99429,0.0,08/24/0169 +0.01484,51.20128,7201,4,26,17,11,33,3.55,27.5,fr,17663,144,744005,1,1,Active Shallow Crust,240.0127,57.99815,0.0,04/26/7201 +0.01484,51.20128,4031,6,28,9,29,54,3.65,15.0,fr,17664,80,744016,1,1,Active Shallow Crust,240.0016,58.01299,0.0,06/28/4031 +4.58514,46.52627,4169,3,14,13,8,22,3.55,5.0,fr,17665,83,744480,1,3,Active Shallow Crust,0.0,89.99306,0.0,03/14/4169 +4.58514,46.52627,1886,11,26,22,42,16,3.55,5.0,fr,17666,37,744480,1,3,Active Shallow Crust,0.0,89.99306,0.0,11/26/1886 +4.58514,46.52627,7447,8,21,8,47,21,3.55,5.0,fr,17667,148,744480,1,3,Active Shallow Crust,0.0,89.99306,0.0,08/21/7447 +4.58514,46.52627,1566,4,30,1,48,8,3.55,15.0,fr,17668,31,744481,1,1,Active Shallow Crust,0.0,89.99306,0.0,04/30/1566 +4.58514,46.52627,1004,3,14,8,38,18,3.65,15.0,fr,17669,20,744493,1,1,Active Shallow Crust,0.0,89.98763,0.0,03/14/1004 +4.58514,46.52627,7688,4,19,20,3,20,3.65,15.0,fr,17670,153,744499,1,1,Active Shallow Crust,0.0,89.98749,-90.0,04/19/7688 +4.58514,46.52627,2287,6,11,16,12,48,3.75,15.0,fr,17671,45,744505,1,1,Active Shallow Crust,0.0,89.98898,0.0,06/11/2287 +4.58514,46.52627,1840,11,27,4,16,42,3.75,5.0,fr,17672,36,744507,1,1,Active Shallow Crust,240.0084,58.01791,0.0,11/27/1840 +4.58514,46.52627,428,7,12,13,43,52,3.85,5.0,fr,17673,8,744516,1,1,Active Shallow Crust,0.0,89.99017,0.0,07/12/0428 +4.58514,46.52627,9960,7,27,17,0,22,3.85,15.0,fr,17674,199,744517,1,1,Active Shallow Crust,0.0,89.99017,0.0,07/27/9960 +4.58514,46.52627,761,12,25,23,43,47,3.85,5.0,fr,17675,15,744519,1,1,Active Shallow Crust,240.0106,57.99725,0.0,12/25/0761 +4.58514,46.52627,7210,4,1,18,52,1,4.05,5.0,fr,17676,144,744543,1,1,Active Shallow Crust,240.0062,58.00572,0.0,04/01/7210 +4.58514,46.52627,8409,8,1,8,15,31,4.05,5.0,fr,17677,168,744546,1,1,Active Shallow Crust,0.0,89.98816,-90.0,08/01/8409 +4.58514,46.52627,4918,7,14,20,9,18,4.05,27.5,fr,17678,98,744551,1,1,Active Shallow Crust,128.8906,89.99415,0.0,07/14/4918 +4.58514,46.52627,2377,2,18,2,1,5,4.95,5.0,fr,17679,47,744648,1,1,Active Shallow Crust,0.0,89.99031,0.0,02/18/2377 +4.58514,46.52627,3887,8,29,16,10,43,4.95,27.5,fr,17680,77,744650,1,1,Active Shallow Crust,0.0,89.99031,0.0,08/29/3887 +4.58514,46.52627,2199,9,26,3,2,22,5.65,5.0,fr,17681,43,744732,1,1,Active Shallow Crust,0.0,89.9901,0.0,09/26/2199 +-0.2101,51.19054,7747,5,22,6,7,6,3.65,5.0,fr,17682,154,744972,1,1,Active Shallow Crust,0.0,89.98997,0.0,05/22/7747 +-0.2101,51.19054,2050,4,2,2,15,51,3.75,5.0,fr,17683,40,744984,1,1,Active Shallow Crust,0.0,89.98996,0.0,04/02/2050 +-0.2101,51.19054,266,4,4,8,46,11,3.85,5.0,fr,17684,5,744996,1,1,Active Shallow Crust,0.0,89.98993,0.0,04/04/0266 +-0.2101,51.19054,4646,4,22,20,8,31,4.05,15.0,fr,17685,92,745021,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/22/4646 +-6.88125,48.75947,3227,6,18,13,45,49,4.25,5.0,fr,17686,64,745524,1,1,Active Shallow Crust,0.0,89.99109,0.0,06/18/3227 +3.66107,50.18407,7433,11,4,11,45,52,3.55,15.0,fr,17687,148,745921,1,1,Active Shallow Crust,0.0,89.99032,0.0,11/04/7433 +3.66107,50.18407,6530,4,23,5,26,30,3.65,5.0,fr,17688,130,745932,1,1,Active Shallow Crust,0.0,89.99137,0.0,04/23/6530 +3.66107,50.18407,2005,7,17,22,59,37,3.75,5.0,fr,17689,40,745944,1,1,Active Shallow Crust,0.0,89.98974,0.0,07/17/2005 +3.66107,50.18407,4328,7,16,9,50,39,3.85,5.0,fr,17690,86,745956,1,2,Active Shallow Crust,0.0,89.99086,0.0,07/16/4328 +3.66107,50.18407,2084,5,16,13,21,31,3.85,5.0,fr,17691,41,745956,1,2,Active Shallow Crust,0.0,89.99086,0.0,05/16/2084 +3.66107,50.18407,6877,5,9,20,26,10,4.25,5.0,fr,17692,137,746004,1,1,Active Shallow Crust,0.0,89.98991,0.0,05/09/6877 +8.27771,46.33268,3599,10,26,17,58,54,3.55,5.0,fr,17693,71,746400,1,3,Active Shallow Crust,0.0,89.98608,0.0,10/26/3599 +8.27771,46.33268,330,8,10,2,37,46,3.55,5.0,fr,17694,6,746400,1,3,Active Shallow Crust,0.0,89.98608,0.0,08/10/0330 +8.27771,46.33268,6913,7,7,15,49,43,3.55,5.0,fr,17695,138,746400,1,3,Active Shallow Crust,0.0,89.98608,0.0,07/07/6913 +8.27771,46.33268,8767,7,9,10,59,27,3.55,15.0,fr,17696,175,746401,1,2,Active Shallow Crust,0.0,89.98608,0.0,07/09/8767 +8.27771,46.33268,7285,6,23,12,5,1,3.55,15.0,fr,17697,145,746401,1,2,Active Shallow Crust,0.0,89.98608,0.0,06/23/7285 +8.27771,46.33268,8026,7,16,8,43,28,3.55,5.0,fr,17698,160,746406,1,1,Active Shallow Crust,0.0,89.98592,-90.0,07/16/8026 +8.27771,46.33268,4402,7,27,13,20,31,3.75,5.0,fr,17699,88,746424,1,1,Active Shallow Crust,0.0,89.98894,0.0,07/27/4402 +8.27771,46.33268,5257,10,17,14,33,6,3.85,15.0,fr,17700,105,746437,1,1,Active Shallow Crust,0.0,89.99014,0.0,10/17/5257 +8.27771,46.33268,9760,2,23,18,6,28,3.95,15.0,fr,17701,195,746449,1,1,Active Shallow Crust,0.0,89.99121,0.0,02/23/9760 +8.27771,46.33268,2096,10,27,1,51,54,4.05,5.0,fr,17702,41,746460,1,1,Active Shallow Crust,0.0,89.99217,0.0,10/27/2096 +8.27771,46.33268,6426,2,25,23,9,4,4.15,5.0,fr,17703,128,746472,1,1,Active Shallow Crust,0.0,89.99302,0.0,02/25/6426 +8.27771,46.33268,1222,10,29,12,46,28,5.25,5.0,fr,17704,24,746604,1,1,Active Shallow Crust,0.0,89.99017,0.0,10/29/1222 +8.09087,46.05179,6044,7,24,23,59,36,3.55,5.0,fr,17705,120,746880,1,3,Active Shallow Crust,0.0,89.986,0.0,07/24/6044 +8.09087,46.05179,9633,10,16,22,15,1,3.55,5.0,fr,17706,192,746880,1,3,Active Shallow Crust,0.0,89.986,0.0,10/16/9633 +8.09087,46.05179,9192,7,16,17,33,53,3.55,5.0,fr,17707,183,746880,1,3,Active Shallow Crust,0.0,89.986,0.0,07/16/9192 +8.09087,46.05179,5607,7,28,1,27,48,3.55,27.5,fr,17708,112,746882,1,1,Active Shallow Crust,0.0,89.986,0.0,07/28/5607 +8.09087,46.05179,2214,5,20,2,33,38,3.65,5.0,fr,17709,44,746892,1,2,Active Shallow Crust,0.0,89.98753,0.0,05/20/2214 +8.09087,46.05179,4678,1,21,13,6,28,3.65,5.0,fr,17710,93,746892,1,2,Active Shallow Crust,0.0,89.98753,0.0,01/21/4678 +8.09087,46.05179,7143,2,19,0,8,59,3.75,5.0,fr,17711,142,746904,1,2,Active Shallow Crust,0.0,89.98888,0.0,02/19/7143 +8.09087,46.05179,5264,9,10,11,52,41,3.75,5.0,fr,17712,105,746904,1,2,Active Shallow Crust,0.0,89.98888,0.0,09/10/5264 +8.09087,46.05179,3931,8,26,4,56,20,3.75,5.0,fr,17713,78,746907,1,1,Active Shallow Crust,240.0101,58.01729,0.0,08/26/3931 +8.09087,46.05179,8433,8,28,18,56,39,3.75,15.0,fr,17714,168,746908,1,1,Active Shallow Crust,240.0101,58.01729,0.0,08/28/8433 +8.09087,46.05179,2160,10,2,19,25,11,3.75,5.0,fr,17715,43,746910,1,1,Active Shallow Crust,0.0,89.98875,-90.0,10/02/2160 +8.09087,46.05179,8950,1,3,8,17,25,3.95,5.0,fr,17716,178,746928,1,1,Active Shallow Crust,0.0,89.99117,0.0,01/03/8950 +8.09087,46.05179,1346,6,7,22,9,31,3.95,15.0,fr,17717,26,746932,1,1,Active Shallow Crust,240.0208,58.00482,0.0,06/07/1346 +8.09087,46.05179,4840,9,24,6,49,19,4.05,5.0,fr,17718,96,746940,1,1,Active Shallow Crust,0.0,89.99213,0.0,09/24/4840 +8.09087,46.05179,2901,8,2,2,39,4,4.05,15.0,fr,17719,58,746941,1,1,Active Shallow Crust,0.0,89.99213,0.0,08/02/2901 +8.09087,46.05179,9266,3,25,6,28,3,4.05,15.0,fr,17720,185,746944,1,1,Active Shallow Crust,240.0046,58.00642,0.0,03/25/9266 +8.09087,46.05179,2046,4,13,14,13,40,4.05,5.0,fr,17721,40,746946,1,1,Active Shallow Crust,0.0,89.99203,-90.0,04/13/2046 +8.09087,46.05179,4268,3,4,10,13,9,4.15,5.0,fr,17722,85,746955,1,2,Active Shallow Crust,240.0082,57.9973,0.0,03/04/4268 +8.09087,46.05179,3332,6,15,9,37,11,4.15,5.0,fr,17723,66,746955,1,2,Active Shallow Crust,240.0082,57.9973,0.0,06/15/3332 +8.09087,46.05179,8402,9,18,0,7,50,5.05,15.0,fr,17724,168,747061,1,1,Active Shallow Crust,0.0,89.99004,0.0,09/18/8402 +0.12021,50.29217,7261,8,7,8,9,32,3.55,5.0,fr,17725,145,747363,1,1,Active Shallow Crust,240.0125,57.99825,0.0,08/07/7261 +0.12021,50.29217,6085,10,27,2,28,45,3.65,5.0,fr,17726,121,747372,1,2,Active Shallow Crust,0.0,89.99004,0.0,10/27/6085 +0.12021,50.29217,6610,4,18,5,18,4,3.65,5.0,fr,17727,132,747372,1,2,Active Shallow Crust,0.0,89.99004,0.0,04/18/6610 +0.12021,50.29217,7706,2,7,17,38,10,3.65,27.5,fr,17728,154,747374,1,1,Active Shallow Crust,0.0,89.99004,0.0,02/07/7706 +0.12021,50.29217,1731,8,24,3,35,36,3.75,5.0,fr,17729,34,747384,1,1,Active Shallow Crust,0.0,89.99001,0.0,08/24/1731 +0.12021,50.29217,5055,8,29,18,51,29,3.75,5.0,fr,17730,101,747387,1,1,Active Shallow Crust,240.0088,58.01766,0.0,08/29/5055 +0.12021,50.29217,9510,12,9,5,53,26,3.85,27.5,fr,17731,190,747398,1,1,Active Shallow Crust,0.0,89.99002,0.0,12/09/9510 +0.12021,50.29217,1583,11,30,0,48,56,3.85,15.0,fr,17732,31,747403,1,1,Active Shallow Crust,0.0,89.98998,-90.0,11/30/1583 +0.12021,50.29217,9413,6,28,3,59,48,4.15,15.0,fr,17733,188,747433,1,2,Active Shallow Crust,0.0,89.99001,0.0,06/28/9413 +0.12021,50.29217,8579,8,12,0,17,29,4.15,15.0,fr,17734,171,747433,1,2,Active Shallow Crust,0.0,89.99001,0.0,08/12/8579 +0.12021,50.29217,267,9,27,16,30,42,5.15,5.0,fr,17735,5,747555,1,1,Active Shallow Crust,240.022,58.0004,0.0,09/27/0267 +5.31635,46.10819,2051,1,1,3,43,45,3.55,5.0,fr,17736,41,747840,1,1,Active Shallow Crust,0.0,89.99301,0.0,01/01/2051 +5.31635,46.10819,7374,9,2,20,59,12,3.55,15.0,fr,17737,147,747841,1,1,Active Shallow Crust,0.0,89.99301,0.0,09/02/7374 +5.31635,46.10819,7433,2,18,6,13,24,3.65,5.0,fr,17738,148,747852,1,2,Active Shallow Crust,0.0,89.98754,0.0,02/18/7433 +5.31635,46.10819,4194,1,14,7,44,14,3.65,5.0,fr,17739,83,747852,1,2,Active Shallow Crust,0.0,89.98754,0.0,01/14/4194 +5.31635,46.10819,4567,8,23,2,39,52,3.65,15.0,fr,17740,91,747853,1,1,Active Shallow Crust,0.0,89.98754,0.0,08/23/4567 +5.31635,46.10819,1429,8,6,11,58,46,3.65,5.0,fr,17741,28,747858,1,1,Active Shallow Crust,0.0,89.9874,-90.0,08/06/1429 +5.31635,46.10819,827,11,30,18,23,1,3.75,5.0,fr,17742,16,747864,1,2,Active Shallow Crust,0.0,89.98889,0.0,11/30/0827 +5.31635,46.10819,194,4,11,9,46,41,3.75,5.0,fr,17743,3,747864,1,2,Active Shallow Crust,0.0,89.98889,0.0,04/11/0194 +5.31635,46.10819,8030,8,25,19,28,10,3.75,5.0,fr,17744,160,747867,1,1,Active Shallow Crust,240.0084,58.0168,0.0,08/25/8030 +5.31635,46.10819,959,7,19,5,33,0,3.75,5.0,fr,17745,19,747873,1,1,Active Shallow Crust,128.8963,89.96748,0.0,07/19/0959 +5.31635,46.10819,110,2,8,17,4,21,4.15,5.0,fr,17746,2,747912,1,1,Active Shallow Crust,0.0,89.98949,0.0,02/08/0110 +5.31635,46.10819,6716,5,21,5,30,0,4.15,5.0,fr,17747,134,747915,1,1,Active Shallow Crust,240.0082,57.99719,0.0,05/21/6716 +5.31635,46.10819,7359,10,5,21,6,43,4.15,5.0,fr,17748,147,747918,1,1,Active Shallow Crust,0.0,89.98936,-90.0,10/05/7359 +5.31635,46.10819,4175,4,26,17,49,34,4.25,5.0,fr,17749,83,747924,1,1,Active Shallow Crust,0.0,89.99063,0.0,04/26/4175 +5.31635,46.10819,7485,3,29,4,50,56,4.55,5.0,fr,17750,149,747960,1,1,Active Shallow Crust,0.0,89.98895,0.0,03/29/7485 +2.93272,46.02241,7664,1,27,10,46,53,3.55,5.0,fr,17751,153,748320,1,3,Active Shallow Crust,0.0,89.98949,0.0,01/27/7664 +2.93272,46.02241,3549,5,28,6,21,45,3.55,5.0,fr,17752,70,748320,1,3,Active Shallow Crust,0.0,89.98949,0.0,05/28/3549 +2.93272,46.02241,5595,10,21,8,16,9,3.55,5.0,fr,17753,111,748320,1,3,Active Shallow Crust,0.0,89.98949,0.0,10/21/5595 +2.93272,46.02241,4359,8,24,2,0,31,3.55,27.5,fr,17754,87,748322,1,1,Active Shallow Crust,0.0,89.98949,0.0,08/24/4359 +2.93272,46.02241,3796,12,7,22,31,57,3.55,5.0,fr,17755,75,748323,1,2,Active Shallow Crust,240.0123,57.99844,0.0,12/07/3796 +2.93272,46.02241,3586,9,27,18,2,12,3.55,5.0,fr,17756,71,748323,1,2,Active Shallow Crust,240.0123,57.99844,0.0,09/27/3586 +2.93272,46.02241,8079,7,28,11,27,5,3.55,27.5,fr,17757,161,748325,1,1,Active Shallow Crust,240.0123,57.99834,0.0,07/28/8079 +2.93272,46.02241,8477,12,23,17,42,33,3.65,5.0,fr,17758,169,748332,1,3,Active Shallow Crust,0.0,89.99064,0.0,12/23/8477 +2.93272,46.02241,5078,11,4,14,54,8,3.65,5.0,fr,17759,101,748332,1,3,Active Shallow Crust,0.0,89.99064,0.0,11/04/5078 +2.93272,46.02241,3569,1,30,19,41,19,3.65,5.0,fr,17760,71,748332,1,3,Active Shallow Crust,0.0,89.99064,0.0,01/30/3569 +2.93272,46.02241,9997,1,15,23,14,8,3.65,5.0,fr,17761,199,748335,1,1,Active Shallow Crust,240.0014,58.01256,0.0,01/15/9997 +2.93272,46.02241,2085,1,22,4,55,30,3.65,15.0,fr,17762,41,748336,1,1,Active Shallow Crust,240.0014,58.01256,0.0,01/22/2085 +2.93272,46.02241,8150,2,1,7,38,19,3.65,5.0,fr,17763,162,748341,1,1,Active Shallow Crust,128.8996,89.96352,0.0,02/01/8150 +2.93272,46.02241,5047,1,22,21,39,42,3.75,5.0,fr,17764,100,748344,1,1,Active Shallow Crust,0.0,89.98888,0.0,01/22/5047 +2.93272,46.02241,1253,4,5,11,21,3,3.75,15.0,fr,17765,25,748345,1,1,Active Shallow Crust,0.0,89.98888,0.0,04/05/1253 +2.93272,46.02241,4526,10,29,16,18,37,3.75,5.0,fr,17766,90,748350,1,1,Active Shallow Crust,0.0,89.98875,-90.0,10/29/4526 +2.93272,46.02241,5081,9,17,18,49,58,3.75,5.0,fr,17767,101,748353,1,1,Active Shallow Crust,128.8973,89.96722,0.0,09/17/5081 +2.93272,46.02241,1571,12,13,23,27,38,3.85,5.0,fr,17768,31,748356,1,4,Active Shallow Crust,0.0,89.99009,0.0,12/13/1571 +2.93272,46.02241,5934,4,27,13,17,28,3.85,5.0,fr,17769,118,748356,1,4,Active Shallow Crust,0.0,89.99009,0.0,04/27/5934 +2.93272,46.02241,9531,4,17,15,53,37,3.85,5.0,fr,17770,190,748356,1,4,Active Shallow Crust,0.0,89.99009,0.0,04/17/9531 +2.93272,46.02241,3647,7,19,14,44,16,3.85,5.0,fr,17771,72,748356,1,4,Active Shallow Crust,0.0,89.99009,0.0,07/19/3647 +2.93272,46.02241,9177,11,4,3,10,39,3.85,27.5,fr,17772,183,748367,1,2,Active Shallow Crust,128.8956,89.9938,0.0,11/04/9177 +2.93272,46.02241,5934,9,17,17,12,16,3.85,27.5,fr,17773,118,748367,1,2,Active Shallow Crust,128.8956,89.9938,0.0,09/17/5934 +2.93272,46.02241,3495,7,12,7,38,38,3.95,5.0,fr,17774,69,748368,1,1,Active Shallow Crust,0.0,89.98895,0.0,07/12/3495 +2.93272,46.02241,9652,1,30,4,27,33,3.95,27.5,fr,17775,193,748370,1,1,Active Shallow Crust,0.0,89.98895,0.0,01/30/9652 +2.93272,46.02241,113,1,26,16,1,38,3.95,5.0,fr,17776,2,748377,1,1,Active Shallow Crust,128.9,89.99337,0.0,01/26/0113 +2.93272,46.02241,7690,4,23,7,44,34,4.05,5.0,fr,17777,153,748380,1,1,Active Shallow Crust,0.0,89.99016,0.0,04/23/7690 +2.93272,46.02241,737,4,18,12,34,43,4.35,5.0,fr,17778,14,748416,1,1,Active Shallow Crust,0.0,89.99024,0.0,04/18/0737 +2.93272,46.02241,477,1,11,8,29,42,5.35,5.0,fr,17779,9,748536,1,1,Active Shallow Crust,0.0,89.98986,0.0,01/11/0477 +0.05199,51.98102,2764,6,4,23,27,35,3.55,27.5,fr,17780,55,748802,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/04/2764 +0.05199,51.98102,6224,10,12,13,38,21,3.95,5.0,fr,17781,124,748848,1,1,Active Shallow Crust,0.0,89.98999,0.0,10/12/6224 +3.624,42.83872,3628,2,9,16,32,20,3.55,5.0,fr,17782,72,749280,1,1,Active Shallow Crust,0.0,89.98891,0.0,02/09/3628 +3.624,42.83872,5014,11,24,21,30,17,3.65,5.0,fr,17783,100,749295,1,1,Active Shallow Crust,240.0011,58.01314,0.0,11/24/5014 +3.624,42.83872,9159,5,18,5,30,46,3.75,5.0,fr,17784,183,749307,1,1,Active Shallow Crust,240.0083,58.01732,0.0,05/18/9159 +3.624,42.83872,8965,8,27,6,9,13,3.75,5.0,fr,17785,179,749313,1,1,Active Shallow Crust,128.8967,89.96743,0.0,08/27/8965 +3.624,42.83872,4018,3,27,0,43,47,3.85,27.5,fr,17786,80,749321,1,1,Active Shallow Crust,240.0104,57.9978,0.0,03/27/4018 +3.624,42.83872,6255,9,9,23,17,27,3.95,15.0,fr,17787,125,749329,1,1,Active Shallow Crust,0.0,89.99067,0.0,09/09/6255 +3.624,42.83872,9983,7,1,3,30,17,4.85,15.0,fr,17788,199,749437,1,1,Active Shallow Crust,0.0,89.99007,0.0,07/01/9983 +5.36373,47.14832,617,9,6,19,0,32,3.65,15.0,fr,17789,12,749773,1,1,Active Shallow Crust,0.0,89.98778,0.0,09/06/0617 +5.36373,47.14832,5120,1,19,10,25,27,3.65,27.5,fr,17790,102,749774,1,1,Active Shallow Crust,0.0,89.98778,0.0,01/19/5120 +5.36373,47.14832,4748,5,1,9,48,18,3.85,5.0,fr,17791,94,749796,1,1,Active Shallow Crust,0.0,89.99029,0.0,05/01/4748 +5.36373,47.14832,83,12,8,12,14,33,3.95,5.0,fr,17792,1,749808,1,1,Active Shallow Crust,0.0,89.99135,0.0,12/08/0083 +5.36373,47.14832,7787,3,6,19,6,14,4.05,15.0,fr,17793,155,749821,1,1,Active Shallow Crust,0.0,89.98843,0.0,03/06/7787 +5.36373,47.14832,8485,4,4,21,46,14,4.05,27.5,fr,17794,169,749825,1,1,Active Shallow Crust,240.0052,58.0062,0.0,04/04/8485 +5.36373,47.14832,1697,4,3,12,56,19,4.35,27.5,fr,17795,33,749858,1,1,Active Shallow Crust,0.0,89.98907,0.0,04/03/1697 +5.36373,47.14832,1569,11,13,21,19,36,4.35,15.0,fr,17796,31,749866,1,1,Active Shallow Crust,128.897,89.98304,0.0,11/13/1569 +5.36373,47.14832,5365,12,26,5,48,27,4.55,5.0,fr,17797,107,749880,1,1,Active Shallow Crust,0.0,89.98916,0.0,12/26/5365 +5.36373,47.14832,9283,7,2,17,20,35,4.85,5.0,fr,17798,185,749916,1,1,Active Shallow Crust,0.0,89.98925,0.0,07/02/9283 +-1.01383,44.03002,989,10,13,20,39,48,3.65,5.0,fr,17799,19,750255,1,1,Active Shallow Crust,240.0009,58.01294,0.0,10/13/0989 +-1.01383,44.03002,5904,11,21,11,11,49,3.95,5.0,fr,17800,118,750288,1,1,Active Shallow Crust,0.0,89.98971,0.0,11/21/5904 +-1.01383,44.03002,3225,8,15,1,21,12,4.35,5.0,fr,17801,64,750345,1,1,Active Shallow Crust,128.8984,89.98281,0.0,08/15/3225 +-1.01383,44.03002,2347,11,8,5,8,50,4.55,5.0,fr,17802,46,750360,1,1,Active Shallow Crust,0.0,89.99026,0.0,11/08/2347 +-1.01383,44.03002,936,10,12,6,12,6,5.45,15.0,fr,17803,18,750472,1,1,Active Shallow Crust,240.0269,57.99813,0.0,10/12/0936 +-0.79832,42.12711,5719,5,8,21,34,20,4.05,15.0,fr,17804,114,750784,1,1,Active Shallow Crust,240.0053,58.00573,0.0,05/08/5719 +-0.79832,42.12711,5277,12,19,2,10,17,4.55,5.0,fr,17805,105,750843,1,1,Active Shallow Crust,240.0081,57.99712,0.0,12/19/5277 +-0.79832,42.12711,8569,10,9,10,13,9,5.05,5.0,fr,17806,171,750900,1,1,Active Shallow Crust,0.0,89.99002,0.0,10/09/8569 +2.15917,51.15308,5355,7,10,20,53,38,3.55,5.0,fr,17807,107,751200,1,1,Active Shallow Crust,0.0,89.99051,0.0,07/10/5355 +2.15917,51.15308,9341,3,21,8,57,2,3.55,27.5,fr,17808,186,751208,1,1,Active Shallow Crust,0.0,89.9904,-90.0,03/21/9341 +2.15917,51.15308,7057,3,23,13,55,22,3.55,5.0,fr,17809,141,751209,1,1,Active Shallow Crust,128.8952,89.99368,0.0,03/23/7057 +2.15917,51.15308,4368,3,27,10,30,5,3.75,5.0,fr,17810,87,751224,1,1,Active Shallow Crust,0.0,89.98995,0.0,03/27/4368 +2.15917,51.15308,5988,12,25,5,2,58,3.75,5.0,fr,17811,119,751233,1,1,Active Shallow Crust,128.8963,89.96735,0.0,12/25/5988 +2.15917,51.15308,8400,4,7,18,52,37,3.85,27.5,fr,17812,167,751238,1,1,Active Shallow Crust,0.0,89.99104,0.0,04/07/8400 +2.15917,51.15308,5970,6,10,14,42,26,3.85,5.0,fr,17813,119,751245,1,1,Active Shallow Crust,128.8952,89.99329,0.0,06/10/5970 +2.15917,51.15308,1508,5,3,13,35,29,4.25,15.0,fr,17814,30,751285,1,1,Active Shallow Crust,0.0,89.99011,0.0,05/03/1508 +2.15917,51.15308,6972,8,2,11,47,46,4.55,5.0,fr,17815,139,751320,1,1,Active Shallow Crust,0.0,89.99,0.0,08/02/6972 +3.77827,40.70658,980,12,28,12,22,29,3.55,5.0,fr,17816,19,751686,1,1,Active Shallow Crust,0.0,89.9884,-90.0,12/28/0980 +3.77827,40.70658,4616,5,7,4,21,14,4.15,5.0,fr,17817,92,751758,1,1,Active Shallow Crust,0.0,89.99031,-90.0,05/07/4616 +3.77827,40.70658,5601,11,10,11,14,1,4.25,15.0,fr,17818,112,751765,1,1,Active Shallow Crust,0.0,89.98975,0.0,11/10/5601 +3.77827,40.70658,2188,12,8,16,45,2,4.55,27.5,fr,17819,43,751802,1,1,Active Shallow Crust,0.0,89.99033,0.0,12/08/2188 +5.67934,43.12168,7609,5,12,18,57,9,3.65,5.0,fr,17820,152,752172,1,1,Active Shallow Crust,0.0,89.98688,0.0,05/12/7609 +5.67934,43.12168,1762,10,28,2,55,58,3.65,15.0,fr,17821,35,752182,1,1,Active Shallow Crust,128.9017,89.96346,0.0,10/28/1762 +5.67934,43.12168,1926,2,20,17,30,29,3.75,5.0,fr,17822,38,752187,1,1,Active Shallow Crust,240.0069,58.01775,0.0,02/20/1926 +5.67934,43.12168,6019,12,17,17,44,19,3.85,5.0,fr,17823,120,752202,1,1,Active Shallow Crust,0.0,89.98946,-90.0,12/17/6019 +5.67934,43.12168,8111,11,22,8,13,9,4.05,15.0,fr,17824,162,752224,1,1,Active Shallow Crust,240.0052,58.00608,0.0,11/22/8111 +5.67934,43.12168,8731,11,9,2,29,15,5.05,15.0,fr,17825,174,752341,1,1,Active Shallow Crust,0.0,89.98952,0.0,11/09/8731 +-0.57297,49.46273,1659,5,20,10,47,35,3.55,5.0,fr,17826,33,752640,1,1,Active Shallow Crust,0.0,89.99017,0.0,05/20/1659 +-0.57297,49.46273,6453,12,3,19,44,37,3.55,15.0,fr,17827,129,752641,1,2,Active Shallow Crust,0.0,89.99017,0.0,12/03/6453 +-0.57297,49.46273,3115,7,22,15,23,3,3.55,15.0,fr,17828,62,752641,1,2,Active Shallow Crust,0.0,89.99017,0.0,07/22/3115 +-0.57297,49.46273,5622,2,22,14,52,23,3.55,27.5,fr,17829,112,752642,1,1,Active Shallow Crust,0.0,89.99017,0.0,02/22/5622 +-0.57297,49.46273,5462,6,4,5,18,55,3.55,5.0,fr,17830,109,752643,1,1,Active Shallow Crust,240.0125,57.9982,0.0,06/04/5462 +-0.57297,49.46273,6297,7,7,8,6,23,3.55,15.0,fr,17831,125,752644,1,1,Active Shallow Crust,240.0125,57.9982,0.0,07/07/6297 +-0.57297,49.46273,7242,5,27,0,44,48,3.55,15.0,fr,17832,144,752647,1,1,Active Shallow Crust,0.0,89.99006,-90.0,05/27/7242 +-0.57297,49.46273,2477,9,18,13,46,5,3.65,5.0,fr,17833,49,752655,1,1,Active Shallow Crust,240.0015,58.01291,0.0,09/18/2477 +-0.57297,49.46273,6321,4,17,18,17,8,3.65,27.5,fr,17834,126,752663,1,1,Active Shallow Crust,128.9001,89.96352,0.0,04/17/6321 +-0.57297,49.46273,3627,10,27,2,49,1,3.75,5.0,fr,17835,72,752664,1,2,Active Shallow Crust,0.0,89.99024,0.0,10/27/3627 +-0.57297,49.46273,913,1,22,21,58,41,3.75,5.0,fr,17836,18,752664,1,2,Active Shallow Crust,0.0,89.99024,0.0,01/22/0913 +-0.57297,49.46273,3018,8,3,8,49,11,3.75,15.0,fr,17837,60,752665,1,1,Active Shallow Crust,0.0,89.99024,0.0,08/03/3018 +-0.57297,49.46273,7166,8,3,8,10,18,3.75,27.5,fr,17838,143,752666,1,1,Active Shallow Crust,0.0,89.99024,0.0,08/03/7166 +-0.57297,49.46273,6616,7,13,4,24,15,3.85,27.5,fr,17839,132,752678,1,1,Active Shallow Crust,0.0,89.99014,0.0,07/13/6616 +-0.57297,49.46273,6599,8,17,5,38,31,4.05,15.0,fr,17840,131,752701,1,1,Active Shallow Crust,0.0,89.98986,0.0,08/17/6599 +-0.57297,49.46273,6663,2,18,20,29,56,4.05,5.0,fr,17841,133,752709,1,1,Active Shallow Crust,128.89,89.99378,0.0,02/18/6663 +-0.57297,49.46273,3155,3,19,23,11,9,4.15,15.0,fr,17842,63,752713,1,1,Active Shallow Crust,0.0,89.99014,0.0,03/19/3155 +-0.57297,49.46273,8905,9,17,11,47,47,4.35,15.0,fr,17843,178,752737,1,2,Active Shallow Crust,0.0,89.98989,0.0,09/17/8905 +-0.57297,49.46273,1697,1,24,6,20,2,4.35,15.0,fr,17844,33,752737,1,2,Active Shallow Crust,0.0,89.98989,0.0,01/24/1697 +-0.57297,49.46273,6731,8,16,6,54,20,4.45,5.0,fr,17845,134,752748,1,1,Active Shallow Crust,0.0,89.99011,0.0,08/16/6731 +-0.57297,49.46273,2448,8,16,19,9,43,4.55,5.0,fr,17846,48,752760,1,1,Active Shallow Crust,0.0,89.9899,0.0,08/16/2448 +-0.57297,49.46273,9750,7,22,9,33,36,4.55,15.0,fr,17847,194,752764,1,1,Active Shallow Crust,240.0102,57.99753,0.0,07/22/9750 +-0.57297,49.46273,3345,11,25,15,24,31,4.95,15.0,fr,17848,66,752812,1,1,Active Shallow Crust,240.0134,58.00474,0.0,11/25/3345 +-3.74309,49.08805,5741,5,1,16,44,10,3.55,5.0,fr,17849,114,753120,1,1,Active Shallow Crust,0.0,89.9901,0.0,05/01/5741 +-3.74309,49.08805,329,4,27,12,22,42,3.55,15.0,fr,17850,6,753121,1,1,Active Shallow Crust,0.0,89.9901,0.0,04/27/0329 +-3.74309,49.08805,5083,10,14,4,10,48,3.65,5.0,fr,17851,101,753132,1,1,Active Shallow Crust,0.0,89.99117,0.0,10/14/5083 +-3.74309,49.08805,5255,10,28,13,32,10,3.65,5.0,fr,17852,105,753135,1,1,Active Shallow Crust,240.0015,58.01296,0.0,10/28/5255 +-3.74309,49.08805,6285,10,15,8,36,53,3.75,5.0,fr,17853,125,753144,1,1,Active Shallow Crust,0.0,89.98951,0.0,10/15/6285 +-3.74309,49.08805,9580,10,4,13,20,43,3.95,5.0,fr,17854,191,753168,1,2,Active Shallow Crust,0.0,89.98959,0.0,10/04/9580 +-3.74309,49.08805,1846,6,20,7,58,41,3.95,5.0,fr,17855,36,753168,1,2,Active Shallow Crust,0.0,89.98959,0.0,06/20/1846 +-3.74309,49.08805,1578,12,21,19,31,55,4.15,5.0,fr,17856,31,753201,1,1,Active Shallow Crust,128.8971,89.99421,0.0,12/21/1578 +-3.74309,49.08805,2020,11,11,9,21,3,4.15,15.0,fr,17857,40,753202,1,1,Active Shallow Crust,128.8971,89.99421,0.0,11/11/2020 +6.8411,48.48424,7051,1,18,8,16,52,3.65,5.0,fr,17858,141,753612,1,2,Active Shallow Crust,0.0,89.98808,0.0,01/18/7051 +6.8411,48.48424,1050,5,29,21,56,12,3.65,5.0,fr,17859,20,753612,1,2,Active Shallow Crust,0.0,89.98808,0.0,05/29/1050 +6.8411,48.48424,9520,4,17,6,43,10,3.85,5.0,fr,17860,190,753636,1,1,Active Shallow Crust,0.0,89.99054,0.0,04/17/9520 +6.8411,48.48424,8337,4,28,9,58,33,3.95,5.0,fr,17861,166,753648,1,1,Active Shallow Crust,0.0,89.99156,0.0,04/28/8337 +6.8411,48.48424,8961,7,9,9,35,0,3.95,15.0,fr,17862,179,753649,1,1,Active Shallow Crust,0.0,89.99156,0.0,07/09/8961 +6.8411,48.48424,752,9,21,7,27,34,4.05,5.0,fr,17863,15,753660,1,1,Active Shallow Crust,0.0,89.98872,0.0,09/21/0752 +6.8411,48.48424,6568,8,24,16,42,5,4.05,15.0,fr,17864,131,753664,1,1,Active Shallow Crust,240.0057,58.00637,0.0,08/24/6568 +6.8411,48.48424,4099,11,14,19,52,17,4.45,15.0,fr,17865,81,753709,1,1,Active Shallow Crust,0.0,89.99052,0.0,11/14/4099 +6.8411,48.48424,2325,12,28,5,48,8,4.55,5.0,fr,17866,46,753720,1,1,Active Shallow Crust,0.0,89.98943,0.0,12/28/2325 +6.8411,48.48424,9196,8,3,19,46,22,4.55,5.0,fr,17867,183,753729,1,1,Active Shallow Crust,128.8934,89.98576,0.0,08/03/9196 +6.8411,48.48424,1018,5,20,18,43,24,4.95,27.5,fr,17868,20,753770,1,1,Active Shallow Crust,359.9993,89.99066,0.0,05/20/1018 +6.8411,48.48424,486,6,20,12,46,59,5.65,5.0,fr,17869,9,753858,1,1,Active Shallow Crust,0.0,89.98975,-90.0,06/20/0486 +7.46923,45.72152,1609,2,22,4,56,37,3.55,5.0,fr,17870,32,754080,1,1,Active Shallow Crust,0.0,89.99296,0.0,02/22/1609 +7.46923,45.72152,255,11,4,3,16,41,3.55,15.0,fr,17871,5,754081,1,1,Active Shallow Crust,0.0,89.99296,0.0,11/04/0255 +7.46923,45.72152,9679,3,16,20,13,53,3.55,27.5,fr,17872,193,754082,1,1,Active Shallow Crust,0.0,89.99296,0.0,03/16/9679 +7.46923,45.72152,4371,5,21,11,26,50,3.65,5.0,fr,17873,87,754098,1,1,Active Shallow Crust,0.0,89.9873,-90.0,05/21/4371 +7.46923,45.72152,2436,2,12,14,6,21,3.65,15.0,fr,17874,48,754102,1,1,Active Shallow Crust,128.9003,89.96351,0.0,02/12/2436 +7.46923,45.72152,8839,3,30,1,55,59,3.75,5.0,fr,17875,176,754104,1,1,Active Shallow Crust,0.0,89.98882,0.0,03/30/8839 +7.46923,45.72152,6647,4,21,14,54,16,3.75,27.5,fr,17876,132,754106,1,1,Active Shallow Crust,0.0,89.98882,0.0,04/21/6647 +7.46923,45.72152,3041,6,8,18,30,53,3.85,5.0,fr,17877,60,754119,1,1,Active Shallow Crust,240.0105,57.99867,0.0,06/08/3041 +7.46923,45.72152,3278,5,9,7,46,48,4.05,5.0,fr,17878,65,754140,1,1,Active Shallow Crust,0.0,89.98812,0.0,05/09/3278 +7.46923,45.72152,3295,10,11,14,11,8,4.05,5.0,fr,17879,65,754143,1,1,Active Shallow Crust,240.006,58.00584,0.0,10/11/3295 +7.46923,45.72152,8334,4,24,23,1,49,4.25,15.0,fr,17880,166,754171,1,1,Active Shallow Crust,0.0,89.99046,-90.0,04/24/8334 +7.46923,45.72152,6745,2,28,9,46,48,4.55,5.0,fr,17881,134,754200,1,1,Active Shallow Crust,0.0,89.9911,0.0,02/28/6745 +7.46923,45.72152,753,12,5,12,21,37,4.85,5.0,fr,17882,15,754236,1,1,Active Shallow Crust,0.0,89.99054,0.0,12/05/0753 +2.7918,40.56086,4822,11,12,23,7,53,3.65,27.5,fr,17883,96,754580,1,1,Active Shallow Crust,0.0,89.98964,-90.0,11/12/4822 +2.7918,40.56086,4331,5,28,18,55,40,3.95,5.0,fr,17884,86,754608,1,1,Active Shallow Crust,0.0,89.99033,0.0,05/28/4331 +0.66017,42.82366,5075,5,22,0,15,12,3.55,5.0,fr,17885,101,755040,1,7,Active Shallow Crust,0.0,89.98983,0.0,05/22/5075 +0.66017,42.82366,1810,11,20,10,55,56,3.55,5.0,fr,17886,36,755040,1,7,Active Shallow Crust,0.0,89.98983,0.0,11/20/1810 +0.66017,42.82366,2297,7,2,17,24,56,3.55,5.0,fr,17887,45,755040,1,7,Active Shallow Crust,0.0,89.98983,0.0,07/02/2297 +0.66017,42.82366,9775,1,11,18,2,17,3.55,5.0,fr,17888,195,755040,1,7,Active Shallow Crust,0.0,89.98983,0.0,01/11/9775 +0.66017,42.82366,7255,4,11,17,29,50,3.55,5.0,fr,17889,145,755040,1,7,Active Shallow Crust,0.0,89.98983,0.0,04/11/7255 +0.66017,42.82366,190,11,21,18,49,9,3.55,5.0,fr,17890,3,755040,1,7,Active Shallow Crust,0.0,89.98983,0.0,11/21/0190 +0.66017,42.82366,4194,5,1,6,44,14,3.55,5.0,fr,17891,83,755040,1,7,Active Shallow Crust,0.0,89.98983,0.0,05/01/4194 +0.66017,42.82366,8405,8,17,4,49,48,3.55,15.0,fr,17892,168,755041,1,2,Active Shallow Crust,0.0,89.98983,0.0,08/17/8405 +0.66017,42.82366,9431,12,17,13,18,56,3.55,15.0,fr,17893,188,755041,1,2,Active Shallow Crust,0.0,89.98983,0.0,12/17/9431 +0.66017,42.82366,1522,12,4,10,28,36,3.55,27.5,fr,17894,30,755042,1,2,Active Shallow Crust,0.0,89.98983,0.0,12/04/1522 +0.66017,42.82366,5327,8,14,10,56,17,3.55,27.5,fr,17895,106,755042,1,2,Active Shallow Crust,0.0,89.98983,0.0,08/14/5327 +0.66017,42.82366,3090,1,5,20,4,4,3.55,5.0,fr,17896,61,755049,1,1,Active Shallow Crust,128.8966,89.99353,0.0,01/05/3090 +0.66017,42.82366,7681,5,31,1,19,35,3.55,15.0,fr,17897,153,755050,1,1,Active Shallow Crust,128.8966,89.99353,0.0,05/31/7681 +0.66017,42.82366,8621,10,4,8,32,53,3.65,5.0,fr,17898,172,755052,1,4,Active Shallow Crust,0.0,89.99011,0.0,10/04/8621 +0.66017,42.82366,5173,1,6,0,0,4,3.65,5.0,fr,17899,103,755052,1,4,Active Shallow Crust,0.0,89.99011,0.0,01/06/5173 +0.66017,42.82366,9750,1,18,14,31,36,3.65,5.0,fr,17900,194,755052,1,4,Active Shallow Crust,0.0,89.99011,0.0,01/18/9750 +0.66017,42.82366,6845,2,21,23,28,44,3.65,5.0,fr,17901,136,755052,1,4,Active Shallow Crust,0.0,89.99011,0.0,02/21/6845 +0.66017,42.82366,745,2,13,7,37,7,3.65,15.0,fr,17902,14,755053,1,2,Active Shallow Crust,0.0,89.99011,0.0,02/13/0745 +0.66017,42.82366,5417,9,6,1,22,19,3.65,15.0,fr,17903,108,755053,1,2,Active Shallow Crust,0.0,89.99011,0.0,09/06/5417 +0.66017,42.82366,2405,4,15,5,9,48,3.65,15.0,fr,17904,48,755056,1,1,Active Shallow Crust,240.0007,58.01279,0.0,04/15/2405 +0.66017,42.82366,1437,3,5,1,11,33,3.75,5.0,fr,17905,28,755064,1,1,Active Shallow Crust,0.0,89.98972,0.0,03/05/1437 +0.66017,42.82366,7406,11,6,16,59,50,3.75,27.5,fr,17906,148,755066,1,1,Active Shallow Crust,0.0,89.98972,0.0,11/06/7406 +0.66017,42.82366,4246,1,24,6,34,25,3.75,5.0,fr,17907,84,755070,1,1,Active Shallow Crust,0.0,89.99034,-90.0,01/24/4246 +0.66017,42.82366,1808,12,18,2,46,39,3.75,5.0,fr,17908,36,755073,1,1,Active Shallow Crust,128.897,89.96736,0.0,12/18/1808 +0.66017,42.82366,2382,2,7,23,8,46,3.85,5.0,fr,17909,47,755076,1,2,Active Shallow Crust,0.0,89.99018,0.0,02/07/2382 +0.66017,42.82366,1170,6,30,18,10,41,3.85,5.0,fr,17910,23,755076,1,2,Active Shallow Crust,0.0,89.99018,0.0,06/30/1170 +0.66017,42.82366,1283,9,6,11,10,14,3.85,15.0,fr,17911,25,755077,1,1,Active Shallow Crust,0.0,89.99018,0.0,09/06/1283 +0.66017,42.82366,1614,5,26,17,37,24,3.85,5.0,fr,17912,32,755082,1,1,Active Shallow Crust,0.0,89.99007,-90.0,05/26/1614 +0.66017,42.82366,945,4,8,23,58,46,3.85,15.0,fr,17913,18,755083,1,1,Active Shallow Crust,0.0,89.99007,-90.0,04/08/0945 +0.66017,42.82366,2183,5,25,7,3,30,3.95,5.0,fr,17914,43,755088,1,2,Active Shallow Crust,0.0,89.99008,0.0,05/25/2183 +0.66017,42.82366,8018,9,30,11,18,50,3.95,5.0,fr,17915,160,755088,1,2,Active Shallow Crust,0.0,89.99008,0.0,09/30/8018 +0.66017,42.82366,4478,12,24,0,20,8,3.95,15.0,fr,17916,89,755089,1,1,Active Shallow Crust,0.0,89.99008,0.0,12/24/4478 +0.66017,42.82366,66,7,30,0,5,50,3.95,15.0,fr,17917,1,755092,1,1,Active Shallow Crust,240.0193,58.00479,0.0,07/30/0066 +0.66017,42.82366,7295,8,5,9,22,36,4.05,15.0,fr,17918,145,755101,1,1,Active Shallow Crust,0.0,89.99012,0.0,08/05/7295 +0.66017,42.82366,7597,4,4,2,43,34,4.15,27.5,fr,17919,151,755114,1,1,Active Shallow Crust,0.0,89.98981,0.0,04/04/7597 +0.66017,42.82366,4210,11,19,9,38,25,4.15,27.5,fr,17920,84,755117,1,1,Active Shallow Crust,240.0079,57.99717,0.0,11/19/4210 +0.66017,42.82366,2631,8,10,3,6,51,4.25,5.0,fr,17921,52,755124,1,2,Active Shallow Crust,0.0,89.99009,0.0,08/10/2631 +0.66017,42.82366,4220,6,9,23,44,3,4.25,5.0,fr,17922,84,755124,1,2,Active Shallow Crust,0.0,89.99009,0.0,06/09/4220 +0.66017,42.82366,8219,5,23,11,35,25,4.35,5.0,fr,17923,164,755136,1,1,Active Shallow Crust,0.0,89.99006,0.0,05/23/8219 +0.66017,42.82366,3585,12,1,13,38,10,4.35,15.0,fr,17924,71,755137,1,1,Active Shallow Crust,0.0,89.99006,0.0,12/01/3585 +0.66017,42.82366,2761,7,19,7,14,38,4.35,5.0,fr,17925,55,755139,1,1,Active Shallow Crust,240.0075,57.99581,0.0,07/19/2761 +0.66017,42.82366,5088,6,29,23,8,4,4.55,15.0,fr,17926,101,755161,1,1,Active Shallow Crust,0.0,89.99006,0.0,06/29/5088 +0.66017,42.82366,6953,3,31,6,46,19,4.55,15.0,fr,17927,139,755164,1,1,Active Shallow Crust,240.0083,57.99718,0.0,03/31/6953 +0.66017,42.82366,4860,5,12,0,21,53,4.55,5.0,fr,17928,97,755169,1,1,Active Shallow Crust,128.8948,89.98578,0.0,05/12/4860 +0.66017,42.82366,377,9,19,16,10,57,4.65,27.5,fr,17929,7,755177,1,1,Active Shallow Crust,240.0098,57.99401,0.0,09/19/0377 +0.66017,42.82366,5497,7,13,20,34,58,4.65,5.0,fr,17930,109,755181,1,1,Active Shallow Crust,128.8921,89.98703,0.0,07/13/5497 +0.66017,42.82366,2349,12,22,14,16,50,4.95,5.0,fr,17931,46,755208,1,1,Active Shallow Crust,0.0,89.99004,0.0,12/22/2349 +0.66017,42.82366,3455,4,15,14,8,22,5.05,5.0,fr,17932,69,755220,1,1,Active Shallow Crust,0.0,89.98997,0.0,04/15/3455 +0.66017,42.82366,4712,7,29,4,33,36,5.25,15.0,fr,17933,94,755245,1,1,Active Shallow Crust,0.0,89.98994,0.0,07/29/4712 +0.66017,42.82366,8729,5,2,20,45,50,5.75,15.0,fr,17934,174,755311,1,1,Active Shallow Crust,0.0,89.98997,-90.0,05/02/8729 +5.28452,49.54479,1088,11,20,0,18,2,3.65,15.0,fr,17935,21,756016,1,1,Active Shallow Crust,240.0022,58.01241,0.0,11/20/1088 +5.28452,49.54479,1150,2,12,18,39,43,3.75,5.0,fr,17936,22,756030,1,1,Active Shallow Crust,0.0,89.98949,-90.0,02/12/1150 +5.28452,49.54479,8663,6,18,0,29,50,4.65,5.0,fr,17937,173,756132,1,1,Active Shallow Crust,0.0,89.99078,0.0,06/18/8663 +6.29767,45.45152,3385,7,21,1,21,12,3.55,5.0,fr,17938,67,756480,1,6,Active Shallow Crust,0.0,89.99293,0.0,07/21/3385 +6.29767,45.45152,98,8,29,10,25,35,3.55,5.0,fr,17939,1,756480,1,6,Active Shallow Crust,0.0,89.99293,0.0,08/29/0098 +6.29767,45.45152,7684,6,4,11,29,54,3.55,5.0,fr,17940,153,756480,1,6,Active Shallow Crust,0.0,89.99293,0.0,06/04/7684 +6.29767,45.45152,2011,8,20,10,11,32,3.55,5.0,fr,17941,40,756480,1,6,Active Shallow Crust,0.0,89.99293,0.0,08/20/2011 +6.29767,45.45152,6663,7,12,7,35,20,3.55,5.0,fr,17942,133,756480,1,6,Active Shallow Crust,0.0,89.99293,0.0,07/12/6663 +6.29767,45.45152,9636,2,20,19,6,54,3.55,5.0,fr,17943,192,756480,1,6,Active Shallow Crust,0.0,89.99293,0.0,02/20/9636 +6.29767,45.45152,6660,6,13,3,53,19,3.55,15.0,fr,17944,133,756481,1,1,Active Shallow Crust,0.0,89.99293,0.0,06/13/6660 +6.29767,45.45152,6958,9,4,20,40,57,3.65,5.0,fr,17945,139,756492,1,4,Active Shallow Crust,0.0,89.98739,0.0,09/04/6958 +6.29767,45.45152,5504,12,14,1,1,17,3.65,5.0,fr,17946,110,756492,1,4,Active Shallow Crust,0.0,89.98739,0.0,12/14/5504 +6.29767,45.45152,6013,6,21,8,20,27,3.65,5.0,fr,17947,120,756492,1,4,Active Shallow Crust,0.0,89.98739,0.0,06/21/6013 +6.29767,45.45152,5109,4,18,12,26,59,3.65,5.0,fr,17948,102,756492,1,4,Active Shallow Crust,0.0,89.98739,0.0,04/18/5109 +6.29767,45.45152,6672,7,6,9,49,26,3.65,15.0,fr,17949,133,756493,1,2,Active Shallow Crust,0.0,89.98739,0.0,07/06/6672 +6.29767,45.45152,7426,3,1,8,0,23,3.65,15.0,fr,17950,148,756493,1,2,Active Shallow Crust,0.0,89.98739,0.0,03/01/7426 +6.29767,45.45152,6526,5,10,12,13,32,3.65,27.5,fr,17951,130,756497,1,1,Active Shallow Crust,240.0009,58.01249,0.0,05/10/6526 +6.29767,45.45152,8647,1,18,2,48,5,3.75,5.0,fr,17952,172,756507,1,1,Active Shallow Crust,240.0087,58.01797,0.0,01/18/8647 +6.29767,45.45152,1182,10,19,16,1,53,3.85,5.0,fr,17953,23,756516,1,1,Active Shallow Crust,0.0,89.98998,0.0,10/19/1182 +6.29767,45.45152,4056,3,2,17,22,35,3.85,15.0,fr,17954,81,756517,1,1,Active Shallow Crust,0.0,89.98998,0.0,03/02/4056 +6.29767,45.45152,9723,8,15,7,25,35,3.85,5.0,fr,17955,194,756519,1,1,Active Shallow Crust,240.0111,57.99737,0.0,08/15/9723 +6.29767,45.45152,6463,9,3,23,24,47,3.95,15.0,fr,17956,129,756529,1,1,Active Shallow Crust,0.0,89.99107,0.0,09/03/6463 +6.29767,45.45152,755,9,8,12,14,54,4.05,15.0,fr,17957,15,756541,1,2,Active Shallow Crust,0.0,89.98807,0.0,09/08/0755 +6.29767,45.45152,1194,10,19,17,28,9,4.05,15.0,fr,17958,23,756541,1,2,Active Shallow Crust,0.0,89.98807,0.0,10/19/1194 +6.29767,45.45152,3941,2,11,15,51,26,4.15,15.0,fr,17959,78,756553,1,1,Active Shallow Crust,0.0,89.98936,0.0,02/11/3941 +6.29767,45.45152,4157,4,14,20,56,14,4.15,5.0,fr,17960,83,756555,1,1,Active Shallow Crust,240.0078,57.9976,0.0,04/14/4157 +6.29767,45.45152,4114,5,16,13,27,34,4.25,15.0,fr,17961,82,756565,1,1,Active Shallow Crust,0.0,89.99052,0.0,05/16/4114 +6.29767,45.45152,1540,3,10,12,38,31,4.35,5.0,fr,17962,30,756582,1,1,Active Shallow Crust,0.0,89.9886,-90.0,03/10/1540 +6.29767,45.45152,7240,11,17,3,47,28,4.45,15.0,fr,17963,144,756589,1,1,Active Shallow Crust,0.0,89.98996,0.0,11/17/7240 +6.29767,45.45152,6825,1,15,0,3,37,4.45,5.0,fr,17964,136,756591,1,2,Active Shallow Crust,240.0052,57.99446,0.0,01/15/6825 +6.29767,45.45152,4468,6,30,0,29,59,4.45,5.0,fr,17965,89,756591,1,2,Active Shallow Crust,240.0052,57.99446,0.0,06/30/4468 +6.29767,45.45152,5549,10,11,5,46,2,4.55,5.0,fr,17966,110,756603,1,1,Active Shallow Crust,240.009,57.99748,0.0,10/11/5549 +6.29767,45.45152,3399,2,8,14,9,15,4.55,27.5,fr,17967,67,756608,1,1,Active Shallow Crust,0.0,89.99094,-90.0,02/08/3399 +6.29767,45.45152,1775,9,8,14,41,35,4.55,15.0,fr,17968,35,756610,1,1,Active Shallow Crust,128.8941,89.98559,0.0,09/08/1775 +6.29767,45.45152,4997,1,7,6,9,38,4.75,5.0,fr,17969,99,756624,1,1,Active Shallow Crust,0.0,89.98933,0.0,01/07/4997 +6.29767,45.45152,3065,11,20,8,56,11,4.75,5.0,fr,17970,61,756633,1,1,Active Shallow Crust,128.8889,89.98811,0.0,11/20/3065 +6.29767,45.45152,9189,9,12,12,21,56,5.15,5.0,fr,17971,183,756675,1,1,Active Shallow Crust,240.0192,57.99993,0.0,09/12/9189 +6.29767,45.45152,9683,7,21,5,15,59,5.35,15.0,fr,17972,193,756697,1,1,Active Shallow Crust,0.0,89.9902,0.0,07/21/9683 +1.74275,41.34018,8638,11,28,9,38,50,3.55,5.0,fr,17973,172,756960,1,1,Active Shallow Crust,0.0,89.99054,0.0,11/28/8638 +1.74275,41.34018,1137,10,28,20,58,30,3.55,5.0,fr,17974,22,756963,1,1,Active Shallow Crust,240.0117,57.99823,0.0,10/28/1137 +1.74275,41.34018,8058,2,27,20,39,59,3.65,5.0,fr,17975,161,756972,1,3,Active Shallow Crust,0.0,89.98988,0.0,02/27/8058 +1.74275,41.34018,1642,6,30,11,50,35,3.65,5.0,fr,17976,32,756972,1,3,Active Shallow Crust,0.0,89.98988,0.0,06/30/1642 +1.74275,41.34018,9480,8,16,2,42,33,3.65,5.0,fr,17977,189,756972,1,3,Active Shallow Crust,0.0,89.98988,0.0,08/16/9480 +1.74275,41.34018,5658,2,16,14,12,26,3.65,5.0,fr,17978,113,756975,1,1,Active Shallow Crust,240.0007,58.01268,0.0,02/16/5658 +1.74275,41.34018,4881,5,10,19,38,53,3.85,27.5,fr,17979,97,756998,1,1,Active Shallow Crust,0.0,89.99062,0.0,05/10/4881 +1.74275,41.34018,8249,12,22,10,29,4,3.95,5.0,fr,17980,164,757008,1,1,Active Shallow Crust,0.0,89.99045,0.0,12/22/8249 +1.74275,41.34018,4611,11,22,18,12,34,4.15,5.0,fr,17981,92,757032,1,1,Active Shallow Crust,0.0,89.98956,0.0,11/22/4611 +1.74275,41.34018,1013,6,7,9,58,10,4.55,5.0,fr,17982,20,757080,1,2,Active Shallow Crust,0.0,89.98982,0.0,06/07/1013 +1.74275,41.34018,2432,3,4,8,41,18,4.55,5.0,fr,17983,48,757080,1,2,Active Shallow Crust,0.0,89.98982,0.0,03/04/2432 +1.74275,41.34018,5766,12,24,22,25,13,5.35,5.0,fr,17984,115,757176,1,1,Active Shallow Crust,0.0,89.98999,0.0,12/24/5766 +6.64728,51.8104,5272,2,2,0,58,47,4.05,5.0,fr,17985,105,757506,1,1,Active Shallow Crust,0.0,89.98936,-90.0,02/02/5272 +-5.11523,49.7698,6487,11,9,15,57,33,3.75,5.0,fr,17986,129,757944,1,1,Active Shallow Crust,0.0,89.98965,0.0,11/09/6487 +-0.87176,44.31783,3106,6,15,20,30,37,3.55,15.0,fr,17987,62,759361,1,1,Active Shallow Crust,0.0,89.99008,0.0,06/15/3106 +-0.87176,44.31783,4975,3,22,14,38,13,3.75,5.0,fr,17988,99,759387,1,1,Active Shallow Crust,240.0081,58.01757,0.0,03/22/4975 +-0.03037,48.56776,9235,2,14,16,26,13,3.55,5.0,fr,17989,184,759840,1,1,Active Shallow Crust,0.0,89.98999,0.0,02/14/9235 +-0.03037,48.56776,4112,1,12,19,56,20,3.65,5.0,fr,17990,82,759858,1,1,Active Shallow Crust,0.0,89.98999,-90.0,01/12/4112 +-0.03037,48.56776,4228,8,17,16,3,13,3.75,5.0,fr,17991,84,759864,1,2,Active Shallow Crust,0.0,89.99,0.0,08/17/4228 +-0.03037,48.56776,7631,1,31,3,47,3,3.75,5.0,fr,17992,152,759864,1,2,Active Shallow Crust,0.0,89.99,0.0,01/31/7631 +-2.22214,45.14383,3594,12,17,0,11,18,4.15,5.0,fr,17993,71,760392,1,1,Active Shallow Crust,0.0,89.9893,0.0,12/17/3594 +-0.11004,43.15999,5658,5,13,13,51,35,3.55,5.0,fr,17994,113,760800,1,8,Active Shallow Crust,0.0,89.99,0.0,05/13/5658 +-0.11004,43.15999,5576,11,8,21,34,49,3.55,5.0,fr,17995,111,760800,1,8,Active Shallow Crust,0.0,89.99,0.0,11/08/5576 +-0.11004,43.15999,8435,6,10,13,38,17,3.55,5.0,fr,17996,168,760800,1,8,Active Shallow Crust,0.0,89.99,0.0,06/10/8435 +-0.11004,43.15999,9002,11,26,14,0,22,3.55,5.0,fr,17997,180,760800,1,8,Active Shallow Crust,0.0,89.99,0.0,11/26/9002 +-0.11004,43.15999,6062,12,13,4,15,18,3.55,5.0,fr,17998,121,760800,1,8,Active Shallow Crust,0.0,89.99,0.0,12/13/6062 +-0.11004,43.15999,8139,12,7,14,21,27,3.55,5.0,fr,17999,162,760800,1,8,Active Shallow Crust,0.0,89.99,0.0,12/07/8139 +-0.11004,43.15999,323,3,3,19,44,11,3.55,5.0,fr,18000,6,760800,1,8,Active Shallow Crust,0.0,89.99,0.0,03/03/0323 +-0.11004,43.15999,6062,7,24,11,35,0,3.55,5.0,fr,18001,121,760800,1,8,Active Shallow Crust,0.0,89.99,0.0,07/24/6062 +-0.11004,43.15999,1080,2,15,14,33,18,3.55,15.0,fr,18002,21,760801,1,3,Active Shallow Crust,0.0,89.99,0.0,02/15/1080 +-0.11004,43.15999,2546,7,24,1,21,29,3.55,15.0,fr,18003,50,760801,1,3,Active Shallow Crust,0.0,89.99,0.0,07/24/2546 +-0.11004,43.15999,6456,2,29,21,58,52,3.55,15.0,fr,18004,129,760801,1,3,Active Shallow Crust,0.0,89.99,0.0,02/29/6456 +-0.11004,43.15999,9178,5,7,15,13,34,3.55,27.5,fr,18005,183,760802,1,4,Active Shallow Crust,0.0,89.99,0.0,05/07/9178 +-0.11004,43.15999,8648,7,30,6,2,36,3.55,27.5,fr,18006,172,760802,1,4,Active Shallow Crust,0.0,89.99,0.0,07/30/8648 +-0.11004,43.15999,99,11,5,0,37,52,3.55,27.5,fr,18007,1,760802,1,4,Active Shallow Crust,0.0,89.99,0.0,11/05/0099 +-0.11004,43.15999,408,11,8,18,12,6,3.55,27.5,fr,18008,8,760802,1,4,Active Shallow Crust,0.0,89.99,0.0,11/08/0408 +-0.11004,43.15999,136,3,21,6,1,6,3.55,5.0,fr,18009,2,760803,1,1,Active Shallow Crust,240.0119,57.99812,0.0,03/21/0136 +-0.11004,43.15999,481,11,17,9,56,43,3.55,5.0,fr,18010,9,760806,1,1,Active Shallow Crust,0.0,89.99,-90.0,11/17/0481 +-0.11004,43.15999,1123,4,8,21,53,4,3.55,27.5,fr,18011,22,760811,1,1,Active Shallow Crust,128.8965,89.99374,0.0,04/08/1123 +-0.11004,43.15999,7928,1,7,17,43,6,3.65,5.0,fr,18012,158,760812,1,6,Active Shallow Crust,0.0,89.98996,0.0,01/07/7928 +-0.11004,43.15999,5397,3,7,7,39,52,3.65,5.0,fr,18013,107,760812,1,6,Active Shallow Crust,0.0,89.98996,0.0,03/07/5397 +-0.11004,43.15999,7864,9,2,5,8,53,3.65,5.0,fr,18014,157,760812,1,6,Active Shallow Crust,0.0,89.98996,0.0,09/02/7864 +-0.11004,43.15999,45,10,11,0,41,32,3.65,5.0,fr,18015,0,760812,1,6,Active Shallow Crust,0.0,89.98996,0.0,10/11/0045 +-0.11004,43.15999,5793,5,12,22,57,46,3.65,5.0,fr,18016,115,760812,1,6,Active Shallow Crust,0.0,89.98996,0.0,05/12/5793 +-0.11004,43.15999,1331,8,28,12,34,44,3.65,5.0,fr,18017,26,760812,1,6,Active Shallow Crust,0.0,89.98996,0.0,08/28/1331 +-0.11004,43.15999,3397,2,12,7,48,33,3.65,15.0,fr,18018,67,760813,1,4,Active Shallow Crust,0.0,89.98996,0.0,02/12/3397 +-0.11004,43.15999,2523,3,19,22,41,55,3.65,15.0,fr,18019,50,760813,1,4,Active Shallow Crust,0.0,89.98996,0.0,03/19/2523 +-0.11004,43.15999,6294,7,28,23,26,20,3.65,15.0,fr,18020,125,760813,1,4,Active Shallow Crust,0.0,89.98996,0.0,07/28/6294 +-0.11004,43.15999,5623,10,3,23,19,7,3.65,15.0,fr,18021,112,760813,1,4,Active Shallow Crust,0.0,89.98996,0.0,10/03/5623 +-0.11004,43.15999,5640,4,12,3,20,22,3.65,27.5,fr,18022,112,760814,1,1,Active Shallow Crust,0.0,89.98996,0.0,04/12/5640 +-0.11004,43.15999,2361,9,28,4,5,53,3.65,5.0,fr,18023,47,760818,1,1,Active Shallow Crust,0.0,89.98995,-90.0,09/28/2361 +-0.11004,43.15999,7689,7,27,14,28,33,3.75,5.0,fr,18024,153,760824,1,5,Active Shallow Crust,0.0,89.98996,0.0,07/27/7689 +-0.11004,43.15999,3141,11,26,4,21,22,3.75,5.0,fr,18025,62,760824,1,5,Active Shallow Crust,0.0,89.98996,0.0,11/26/3141 +-0.11004,43.15999,5332,12,6,23,34,35,3.75,5.0,fr,18026,106,760824,1,5,Active Shallow Crust,0.0,89.98996,0.0,12/06/5332 +-0.11004,43.15999,8788,1,6,10,36,10,3.75,5.0,fr,18027,175,760824,1,5,Active Shallow Crust,0.0,89.98996,0.0,01/06/8788 +-0.11004,43.15999,7032,4,19,9,22,9,3.75,5.0,fr,18028,140,760824,1,5,Active Shallow Crust,0.0,89.98996,0.0,04/19/7032 +-0.11004,43.15999,1465,10,27,8,28,37,3.75,15.0,fr,18029,29,760825,1,2,Active Shallow Crust,0.0,89.98996,0.0,10/27/1465 +-0.11004,43.15999,5575,11,21,7,39,51,3.75,15.0,fr,18030,111,760825,1,2,Active Shallow Crust,0.0,89.98996,0.0,11/21/5575 +-0.11004,43.15999,7838,6,9,1,55,36,3.75,27.5,fr,18031,156,760826,1,1,Active Shallow Crust,0.0,89.98996,0.0,06/09/7838 +-0.11004,43.15999,286,6,23,22,26,36,3.75,5.0,fr,18032,5,760827,1,2,Active Shallow Crust,240.008,58.01751,0.0,06/23/0286 +-0.11004,43.15999,2482,10,9,15,14,53,3.75,5.0,fr,18033,49,760827,1,2,Active Shallow Crust,240.008,58.01751,0.0,10/09/2482 +-0.11004,43.15999,8848,6,18,2,34,1,3.75,5.0,fr,18034,176,760830,1,1,Active Shallow Crust,0.0,89.99003,-90.0,06/18/8848 +-0.11004,43.15999,2141,5,10,17,49,2,3.75,15.0,fr,18035,42,760831,1,1,Active Shallow Crust,0.0,89.99003,-90.0,05/10/2141 +-0.11004,43.15999,5504,3,10,17,26,10,3.75,5.0,fr,18036,110,760833,1,1,Active Shallow Crust,128.8969,89.96735,0.0,03/10/5504 +-0.11004,43.15999,2865,2,1,9,11,43,3.75,27.5,fr,18037,57,760835,1,1,Active Shallow Crust,128.8969,89.96735,0.0,02/01/2865 +-0.11004,43.15999,8709,3,18,17,45,25,3.85,5.0,fr,18038,174,760836,1,2,Active Shallow Crust,0.0,89.98999,0.0,03/18/8709 +-0.11004,43.15999,158,9,22,2,53,23,3.85,5.0,fr,18039,3,760836,1,2,Active Shallow Crust,0.0,89.98999,0.0,09/22/0158 +-0.11004,43.15999,931,3,10,19,40,50,3.85,15.0,fr,18040,18,760837,1,2,Active Shallow Crust,0.0,89.98999,0.0,03/10/0931 +-0.11004,43.15999,7506,3,7,21,7,43,3.85,15.0,fr,18041,150,760837,1,2,Active Shallow Crust,0.0,89.98999,0.0,03/07/7506 +-0.11004,43.15999,3648,1,8,0,50,36,3.85,5.0,fr,18042,72,760842,1,1,Active Shallow Crust,360.0,89.99004,-90.0,01/08/3648 +-0.11004,43.15999,558,2,11,9,33,13,3.95,5.0,fr,18043,11,760848,1,1,Active Shallow Crust,0.0,89.98999,0.0,02/11/0558 +-0.11004,43.15999,5814,11,22,7,15,52,3.95,15.0,fr,18044,116,760849,1,1,Active Shallow Crust,0.0,89.98999,0.0,11/22/5814 +-0.11004,43.15999,6047,12,6,7,35,26,3.95,5.0,fr,18045,120,760851,1,1,Active Shallow Crust,240.0193,58.00488,0.0,12/06/6047 +-0.11004,43.15999,2491,3,19,19,48,6,3.95,15.0,fr,18046,49,760852,1,1,Active Shallow Crust,240.0193,58.00488,0.0,03/19/2491 +-0.11004,43.15999,7306,2,9,16,50,59,3.95,5.0,fr,18047,146,760854,1,1,Active Shallow Crust,0.0,89.99002,-90.0,02/09/7306 +-0.11004,43.15999,9403,8,11,14,49,1,4.05,5.0,fr,18048,188,760860,1,1,Active Shallow Crust,0.0,89.98998,0.0,08/11/9403 +-0.11004,43.15999,7282,6,2,10,16,14,4.05,15.0,fr,18049,145,760861,1,1,Active Shallow Crust,0.0,89.98998,0.0,06/02/7282 +-0.11004,43.15999,1222,7,11,15,24,29,4.05,15.0,fr,18050,24,760864,1,1,Active Shallow Crust,240.0054,58.00571,0.0,07/11/1222 +-0.11004,43.15999,1457,1,30,21,45,5,4.15,5.0,fr,18051,29,760872,1,2,Active Shallow Crust,0.0,89.98997,0.0,01/30/1457 +-0.11004,43.15999,2680,6,5,22,25,26,4.15,5.0,fr,18052,53,760872,1,2,Active Shallow Crust,0.0,89.98997,0.0,06/05/2680 +-0.11004,43.15999,8317,2,19,15,46,21,4.15,15.0,fr,18053,166,760873,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/19/8317 +-0.11004,43.15999,8321,6,17,0,16,4,4.15,15.0,fr,18054,166,760879,1,1,Active Shallow Crust,0.0,89.98997,-90.0,06/17/8321 +-0.11004,43.15999,6729,3,18,23,37,53,4.25,5.0,fr,18055,134,760884,1,3,Active Shallow Crust,0.0,89.98999,0.0,03/18/6729 +-0.11004,43.15999,4157,7,22,19,37,28,4.25,5.0,fr,18056,83,760884,1,3,Active Shallow Crust,0.0,89.98999,0.0,07/22/4157 +-0.11004,43.15999,6007,3,14,0,44,50,4.25,5.0,fr,18057,120,760884,1,3,Active Shallow Crust,0.0,89.98999,0.0,03/14/6007 +-0.11004,43.15999,9442,9,10,13,11,33,4.25,15.0,fr,18058,188,760885,1,1,Active Shallow Crust,0.0,89.98999,0.0,09/10/9442 +-0.11004,43.15999,5354,3,17,13,12,16,4.35,5.0,fr,18059,107,760896,1,2,Active Shallow Crust,0.0,89.98998,0.0,03/17/5354 +-0.11004,43.15999,8080,7,11,23,5,7,4.35,5.0,fr,18060,161,760896,1,2,Active Shallow Crust,0.0,89.98998,0.0,07/11/8080 +-0.11004,43.15999,980,12,31,3,8,14,4.35,5.0,fr,18061,19,760899,1,1,Active Shallow Crust,240.0077,57.9958,0.0,12/31/0980 +-0.11004,43.15999,5674,4,2,7,45,15,4.55,5.0,fr,18062,113,760920,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/02/5674 +-0.11004,43.15999,4934,8,10,15,21,25,4.55,27.5,fr,18063,98,760922,1,1,Active Shallow Crust,0.0,89.99001,0.0,08/10/4934 +-0.11004,43.15999,3448,2,21,7,54,17,4.65,5.0,fr,18064,68,760932,1,2,Active Shallow Crust,0.0,89.98999,0.0,02/21/3448 +-0.11004,43.15999,3687,8,1,14,2,35,4.65,5.0,fr,18065,73,760932,1,2,Active Shallow Crust,0.0,89.98999,0.0,08/01/3687 +-0.11004,43.15999,4714,9,30,17,25,6,4.65,5.0,fr,18066,94,760941,1,1,Active Shallow Crust,128.892,89.98702,0.0,09/30/4714 +-0.11004,43.15999,7196,8,14,12,33,28,4.75,5.0,fr,18067,143,760944,1,1,Active Shallow Crust,0.0,89.99001,0.0,08/14/7196 +-0.11004,43.15999,3020,6,11,9,55,2,4.85,5.0,fr,18068,60,760956,1,1,Active Shallow Crust,0.0,89.98999,0.0,06/11/3020 +-0.11004,43.15999,1675,10,11,23,3,7,4.85,5.0,fr,18069,33,760962,1,1,Active Shallow Crust,0.0,89.99001,-90.0,10/11/1675 +-0.11004,43.15999,1090,1,10,5,1,20,4.85,15.0,fr,18070,21,760963,1,1,Active Shallow Crust,0.0,89.99001,-90.0,01/10/1090 +-0.11004,43.15999,3037,7,20,18,57,6,4.95,27.5,fr,18071,60,760973,1,1,Active Shallow Crust,240.0104,58.00421,0.0,07/20/3037 +-0.11004,43.15999,3674,1,21,23,35,27,5.05,5.0,fr,18072,73,760980,1,1,Active Shallow Crust,0.0,89.99001,0.0,01/21/3674 +-0.11004,43.15999,9709,7,5,0,12,31,5.15,27.5,fr,18073,194,760994,1,1,Active Shallow Crust,0.0,89.99,0.0,07/05/9709 +-0.11004,43.15999,8719,2,5,1,36,47,5.15,15.0,fr,18074,174,761002,1,1,Active Shallow Crust,128.8853,89.99104,0.0,02/05/8719 +-0.11004,43.15999,3323,8,14,6,8,33,5.35,5.0,fr,18075,66,761019,1,1,Active Shallow Crust,240.0228,57.99742,0.0,08/14/3323 +-0.11004,43.15999,6554,2,26,11,7,32,5.45,5.0,fr,18076,131,761034,1,1,Active Shallow Crust,360.0,89.99001,-90.0,02/26/6554 +-0.11004,43.15999,4147,3,25,7,49,28,5.55,15.0,fr,18077,82,761050,1,1,Active Shallow Crust,128.8787,89.98978,0.0,03/25/4147 +-0.11004,43.15999,7003,12,25,12,32,41,5.75,5.0,fr,18078,140,761070,1,1,Active Shallow Crust,360.0,89.99001,-90.0,12/25/7003 +-0.11004,43.15999,1713,3,5,0,29,18,5.95,27.5,fr,18079,34,761090,1,1,Active Shallow Crust,360.0,89.99,0.0,03/05/1713 +-3.44795,49.24912,5864,1,6,17,32,22,3.65,5.0,fr,18080,117,761295,1,1,Active Shallow Crust,240.0009,58.01334,0.0,01/06/5864 +-3.44795,49.24912,704,5,24,7,16,19,3.65,15.0,fr,18081,14,761302,1,1,Active Shallow Crust,128.901,89.96331,0.0,05/24/0704 +-3.44795,49.24912,7507,5,16,11,59,23,3.75,5.0,fr,18082,150,761304,1,1,Active Shallow Crust,0.0,89.98954,0.0,05/16/7507 +-3.44795,49.24912,475,10,28,22,34,2,4.05,5.0,fr,18083,9,761340,1,1,Active Shallow Crust,0.0,89.99075,0.0,10/28/0475 +7.34553,47.39437,3416,5,23,21,53,13,3.55,5.0,fr,18084,68,761760,1,4,Active Shallow Crust,0.0,89.99317,0.0,05/23/3416 +7.34553,47.39437,689,9,15,21,23,25,3.55,5.0,fr,18085,13,761760,1,4,Active Shallow Crust,0.0,89.99317,0.0,09/15/0689 +7.34553,47.39437,4170,6,6,18,44,0,3.55,5.0,fr,18086,83,761760,1,4,Active Shallow Crust,0.0,89.99317,0.0,06/06/4170 +7.34553,47.39437,1755,6,20,20,47,23,3.55,5.0,fr,18087,35,761760,1,4,Active Shallow Crust,0.0,89.99317,0.0,06/20/1755 +7.34553,47.39437,8283,3,16,11,21,5,3.55,15.0,fr,18088,165,761761,1,1,Active Shallow Crust,0.0,89.99317,0.0,03/16/8283 +7.34553,47.39437,1734,5,19,1,3,3,3.55,5.0,fr,18089,34,761763,1,1,Active Shallow Crust,240.0118,57.99791,0.0,05/19/1734 +7.34553,47.39437,6961,10,20,20,50,57,3.55,15.0,fr,18090,139,761764,1,1,Active Shallow Crust,240.0118,57.99791,0.0,10/20/6961 +7.34553,47.39437,2367,7,13,14,53,28,3.55,5.0,fr,18091,47,761766,1,1,Active Shallow Crust,0.0,89.9931,-90.0,07/13/2367 +7.34553,47.39437,9148,3,19,10,8,8,3.55,5.0,fr,18092,182,761769,1,2,Active Shallow Crust,128.8958,89.99317,0.0,03/19/9148 +7.34553,47.39437,1036,2,13,18,51,3,3.55,5.0,fr,18093,20,761769,1,2,Active Shallow Crust,128.8958,89.99317,0.0,02/13/1036 +7.34553,47.39437,7260,5,8,0,2,53,3.65,5.0,fr,18094,145,761772,1,6,Active Shallow Crust,0.0,89.98783,0.0,05/08/7260 +7.34553,47.39437,299,3,6,2,15,3,3.65,5.0,fr,18095,5,761772,1,6,Active Shallow Crust,0.0,89.98783,0.0,03/06/0299 +7.34553,47.39437,6441,5,22,0,52,14,3.65,5.0,fr,18096,128,761772,1,6,Active Shallow Crust,0.0,89.98783,0.0,05/22/6441 +7.34553,47.39437,6865,9,17,8,37,30,3.65,5.0,fr,18097,137,761772,1,6,Active Shallow Crust,0.0,89.98783,0.0,09/17/6865 +7.34553,47.39437,5110,11,5,20,47,46,3.65,5.0,fr,18098,102,761772,1,6,Active Shallow Crust,0.0,89.98783,0.0,11/05/5110 +7.34553,47.39437,6980,10,8,13,58,23,3.65,5.0,fr,18099,139,761772,1,6,Active Shallow Crust,0.0,89.98783,0.0,10/08/6980 +7.34553,47.39437,151,1,27,22,6,21,3.65,15.0,fr,18100,3,761773,1,1,Active Shallow Crust,0.0,89.98783,0.0,01/27/0151 +7.34553,47.39437,8778,4,29,15,19,29,3.65,27.5,fr,18101,175,761774,1,1,Active Shallow Crust,0.0,89.98783,0.0,04/29/8778 +7.34553,47.39437,7593,10,18,2,44,44,3.65,5.0,fr,18102,151,761775,1,1,Active Shallow Crust,240.0024,58.01227,0.0,10/18/7593 +7.34553,47.39437,8154,5,30,8,17,34,3.65,15.0,fr,18103,163,761776,1,2,Active Shallow Crust,240.0024,58.01227,0.0,05/30/8154 +7.34553,47.39437,4160,2,19,16,31,55,3.65,15.0,fr,18104,83,761776,1,2,Active Shallow Crust,240.0024,58.01227,0.0,02/19/4160 +7.34553,47.39437,3162,12,12,16,10,25,3.65,5.0,fr,18105,63,761781,1,1,Active Shallow Crust,128.9004,89.96354,0.0,12/12/3162 +7.34553,47.39437,4022,2,25,3,29,1,3.75,5.0,fr,18106,80,761784,1,5,Active Shallow Crust,0.0,89.98916,0.0,02/25/4022 +7.34553,47.39437,5604,1,12,11,23,14,3.75,5.0,fr,18107,112,761784,1,5,Active Shallow Crust,0.0,89.98916,0.0,01/12/5604 +7.34553,47.39437,1572,8,13,13,26,49,3.75,5.0,fr,18108,31,761784,1,5,Active Shallow Crust,0.0,89.98916,0.0,08/13/1572 +7.34553,47.39437,9479,2,4,21,30,27,3.75,5.0,fr,18109,189,761784,1,5,Active Shallow Crust,0.0,89.98916,0.0,02/04/9479 +7.34553,47.39437,4647,3,27,13,5,53,3.75,5.0,fr,18110,92,761784,1,5,Active Shallow Crust,0.0,89.98916,0.0,03/27/4647 +7.34553,47.39437,5240,12,10,13,26,28,3.75,27.5,fr,18111,104,761786,1,1,Active Shallow Crust,0.0,89.98916,0.0,12/10/5240 +7.34553,47.39437,657,2,16,15,14,27,3.75,15.0,fr,18112,13,761788,1,1,Active Shallow Crust,240.0077,58.01804,0.0,02/16/0657 +7.34553,47.39437,6003,4,28,8,56,13,3.75,5.0,fr,18113,120,761790,1,1,Active Shallow Crust,0.0,89.98903,-90.0,04/28/6003 +7.34553,47.39437,824,1,5,1,12,3,3.75,5.0,fr,18114,16,761793,1,1,Active Shallow Crust,128.896,89.96751,0.0,01/05/0824 +7.34553,47.39437,3486,3,28,4,55,21,3.85,5.0,fr,18115,69,761796,1,1,Active Shallow Crust,0.0,89.99033,0.0,03/28/3486 +7.34553,47.39437,6139,5,12,4,6,36,3.85,15.0,fr,18116,122,761797,1,1,Active Shallow Crust,0.0,89.99033,0.0,05/12/6139 +7.34553,47.39437,56,10,31,17,38,38,3.85,5.0,fr,18117,1,761805,1,1,Active Shallow Crust,128.8965,89.99275,0.0,10/31/0056 +7.34553,47.39437,1168,1,16,10,31,24,3.95,5.0,fr,18118,23,761808,1,2,Active Shallow Crust,0.0,89.99139,0.0,01/16/1168 +7.34553,47.39437,5609,4,27,8,50,0,3.95,5.0,fr,18119,112,761808,1,2,Active Shallow Crust,0.0,89.99139,0.0,04/27/5609 +7.34553,47.39437,6524,6,23,8,19,15,3.95,15.0,fr,18120,130,761809,1,2,Active Shallow Crust,0.0,89.99139,0.0,06/23/6524 +7.34553,47.39437,6640,4,29,11,11,12,3.95,15.0,fr,18121,132,761809,1,2,Active Shallow Crust,0.0,89.99139,0.0,04/29/6640 +7.34553,47.39437,6230,7,15,3,46,24,3.95,5.0,fr,18122,124,761814,1,1,Active Shallow Crust,0.0,89.99129,-90.0,07/15/6230 +7.34553,47.39437,558,7,21,2,17,58,4.05,5.0,fr,18123,11,761820,1,3,Active Shallow Crust,0.0,89.98848,0.0,07/21/0558 +7.34553,47.39437,1529,6,2,4,56,57,4.05,5.0,fr,18124,30,761820,1,3,Active Shallow Crust,0.0,89.98848,0.0,06/02/1529 +7.34553,47.39437,2588,9,23,20,45,31,4.05,5.0,fr,18125,51,761820,1,3,Active Shallow Crust,0.0,89.98848,0.0,09/23/2588 +7.34553,47.39437,8381,2,16,6,13,22,4.05,5.0,fr,18126,167,761823,1,3,Active Shallow Crust,240.0063,58.00597,0.0,02/16/8381 +7.34553,47.39437,3769,10,11,23,55,47,4.05,5.0,fr,18127,75,761823,1,3,Active Shallow Crust,240.0063,58.00597,0.0,10/11/3769 +7.34553,47.39437,7605,8,22,13,17,45,4.05,5.0,fr,18128,152,761823,1,3,Active Shallow Crust,240.0063,58.00597,0.0,08/22/7605 +7.34553,47.39437,5149,8,27,4,58,22,4.05,15.0,fr,18129,102,761824,1,1,Active Shallow Crust,240.0063,58.00595,0.0,08/27/5149 +7.34553,47.39437,2737,11,9,23,20,32,4.15,5.0,fr,18130,54,761832,1,1,Active Shallow Crust,0.0,89.98974,0.0,11/09/2737 +7.34553,47.39437,5233,10,2,0,32,17,4.15,15.0,fr,18131,104,761833,1,2,Active Shallow Crust,0.0,89.98974,0.0,10/02/5233 +7.34553,47.39437,3205,11,18,15,46,36,4.15,15.0,fr,18132,64,761833,1,2,Active Shallow Crust,0.0,89.98974,0.0,11/18/3205 +7.34553,47.39437,7329,4,13,18,53,58,4.15,5.0,fr,18133,146,761838,1,1,Active Shallow Crust,0.0,89.98962,-90.0,04/13/7329 +7.34553,47.39437,6331,6,13,22,52,5,4.15,5.0,fr,18134,126,761841,1,1,Active Shallow Crust,128.8972,89.99316,0.0,06/13/6331 +7.34553,47.39437,9593,11,8,1,42,1,4.25,5.0,fr,18135,191,761847,1,1,Active Shallow Crust,240.0081,57.99397,0.0,11/08/9593 +7.34553,47.39437,2166,6,10,17,29,40,4.25,15.0,fr,18136,43,761854,1,1,Active Shallow Crust,128.8947,89.98098,0.0,06/10/2166 +7.34553,47.39437,9406,5,27,4,17,53,4.35,15.0,fr,18137,188,761857,1,1,Active Shallow Crust,0.0,89.98913,0.0,05/27/9406 +7.34553,47.39437,299,1,17,22,2,10,4.55,5.0,fr,18138,5,761880,1,1,Active Shallow Crust,0.0,89.9892,0.0,01/17/0299 +7.34553,47.39437,6316,3,24,10,51,8,4.55,15.0,fr,18139,126,761881,1,1,Active Shallow Crust,0.0,89.9892,0.0,03/24/6316 +7.34553,47.39437,9891,7,21,15,31,57,4.75,15.0,fr,18140,197,761905,1,1,Active Shallow Crust,0.0,89.98971,0.0,07/21/9891 +7.34553,47.39437,7435,8,1,8,1,56,4.95,15.0,fr,18141,148,761929,1,1,Active Shallow Crust,0.0,89.99046,0.0,08/01/7435 +7.34553,47.39437,5459,2,16,15,51,47,5.15,15.0,fr,18142,109,761953,1,2,Active Shallow Crust,0.0,89.99026,0.0,02/16/5459 +7.34553,47.39437,7492,3,26,2,10,14,5.15,15.0,fr,18143,149,761953,1,2,Active Shallow Crust,0.0,89.99026,0.0,03/26/7492 +7.34553,47.39437,5884,4,11,2,1,10,5.25,5.0,fr,18144,117,761964,1,1,Active Shallow Crust,0.0,89.99036,0.0,04/11/5884 +7.34553,47.39437,715,11,1,19,30,6,5.35,5.0,fr,18145,14,761976,1,1,Active Shallow Crust,0.0,89.98969,0.0,11/01/0715 +7.34553,47.39437,4064,5,6,23,34,21,5.85,15.0,fr,18146,81,762043,1,1,Active Shallow Crust,0.0,89.99022,-90.0,05/06/4064 +7.34553,47.39437,264,3,12,1,28,40,5.95,5.0,fr,18147,5,762048,1,1,Active Shallow Crust,0.0,89.99009,0.0,03/12/0264 +2.08397,49.33457,7497,5,16,12,28,54,3.55,15.0,fr,18148,149,762241,1,1,Active Shallow Crust,0.0,89.99014,0.0,05/16/7497 +2.08397,49.33457,705,8,26,5,32,48,3.65,5.0,fr,18149,14,762258,1,1,Active Shallow Crust,0.0,89.99111,-90.0,08/26/0705 +2.08397,49.33457,7860,8,11,13,2,3,4.05,15.0,fr,18150,157,762301,1,1,Active Shallow Crust,0.0,89.99076,0.0,08/11/7860 +2.08397,49.33457,5229,2,18,23,59,5,4.15,15.0,fr,18151,104,762313,1,1,Active Shallow Crust,0.0,89.99012,0.0,02/18/5229 +2.08397,49.33457,8698,6,2,8,55,6,4.35,5.0,fr,18152,173,762336,1,1,Active Shallow Crust,0.0,89.98953,0.0,06/02/8698 +5.24022,49.7881,3532,4,17,17,0,31,3.95,15.0,fr,18153,70,762769,1,1,Active Shallow Crust,0.0,89.99178,0.0,04/17/3532 +5.94073,44.22044,7072,9,17,22,57,14,3.55,5.0,fr,18154,141,763200,1,1,Active Shallow Crust,0.0,89.99277,0.0,09/17/7072 +5.94073,44.22044,5776,10,20,2,11,3,3.55,5.0,fr,18155,115,763203,1,1,Active Shallow Crust,240.0108,57.99868,0.0,10/20/5776 +5.94073,44.22044,8922,2,21,11,47,25,3.65,5.0,fr,18156,178,763212,1,2,Active Shallow Crust,0.0,89.98712,0.0,02/21/8922 +5.94073,44.22044,8994,8,4,18,4,38,3.65,5.0,fr,18157,179,763212,1,2,Active Shallow Crust,0.0,89.98712,0.0,08/04/8994 +5.94073,44.22044,6322,1,6,4,45,42,3.65,27.5,fr,18158,126,763214,1,1,Active Shallow Crust,0.0,89.98712,0.0,01/06/6322 +5.94073,44.22044,5106,11,24,13,13,31,3.65,5.0,fr,18159,102,763218,1,1,Active Shallow Crust,0.0,89.98697,-90.0,11/24/5106 +5.94073,44.22044,1382,6,27,7,51,30,3.65,5.0,fr,18160,27,763221,1,1,Active Shallow Crust,128.9,89.96348,0.0,06/27/1382 +5.94073,44.22044,9080,11,15,20,43,30,3.75,5.0,fr,18161,181,763224,1,1,Active Shallow Crust,0.0,89.98852,0.0,11/15/9080 +5.94073,44.22044,7877,11,11,12,46,27,3.75,15.0,fr,18162,157,763225,1,1,Active Shallow Crust,0.0,89.98852,0.0,11/11/7877 +5.94073,44.22044,7889,12,18,7,32,35,3.85,5.0,fr,18163,157,763236,1,2,Active Shallow Crust,0.0,89.98977,0.0,12/18/7889 +5.94073,44.22044,6944,10,17,3,6,20,3.85,5.0,fr,18164,138,763236,1,2,Active Shallow Crust,0.0,89.98977,0.0,10/17/6944 +5.94073,44.22044,1691,1,2,15,42,38,3.85,15.0,fr,18165,33,763240,1,1,Active Shallow Crust,240.0108,57.99718,0.0,01/02/1691 +5.94073,44.22044,1243,2,13,22,36,26,3.95,5.0,fr,18166,24,763248,1,1,Active Shallow Crust,0.0,89.99088,0.0,02/13/1243 +5.94073,44.22044,9385,3,26,20,57,8,4.15,5.0,fr,18167,187,763272,1,1,Active Shallow Crust,0.0,89.98914,0.0,03/26/9385 +5.94073,44.22044,2721,9,30,2,29,47,4.15,15.0,fr,18168,54,763276,1,1,Active Shallow Crust,240.0081,57.9976,0.0,09/30/2721 +5.94073,44.22044,9363,5,27,4,17,27,4.25,27.5,fr,18169,187,763286,1,1,Active Shallow Crust,0.0,89.99032,0.0,05/27/9363 +5.94073,44.22044,5891,10,6,13,36,59,4.35,5.0,fr,18170,117,763302,1,1,Active Shallow Crust,0.0,89.99127,-90.0,10/06/5891 +8.68728,47.5404,4099,10,11,14,17,9,3.55,5.0,fr,18171,81,763680,1,11,Active Shallow Crust,0.0,89.98638,0.0,10/11/4099 +8.68728,47.5404,5507,12,30,6,35,31,3.55,5.0,fr,18172,110,763680,1,11,Active Shallow Crust,0.0,89.98638,0.0,12/30/5507 +8.68728,47.5404,2112,2,20,23,54,46,3.55,5.0,fr,18173,42,763680,1,11,Active Shallow Crust,0.0,89.98638,0.0,02/20/2112 +8.68728,47.5404,906,10,7,0,9,36,3.55,5.0,fr,18174,18,763680,1,11,Active Shallow Crust,0.0,89.98638,0.0,10/07/0906 +8.68728,47.5404,5485,5,30,22,55,58,3.55,5.0,fr,18175,109,763680,1,11,Active Shallow Crust,0.0,89.98638,0.0,05/30/5485 +8.68728,47.5404,5167,5,18,9,59,20,3.55,5.0,fr,18176,103,763680,1,11,Active Shallow Crust,0.0,89.98638,0.0,05/18/5167 +8.68728,47.5404,6419,1,17,7,29,25,3.55,5.0,fr,18177,128,763680,1,11,Active Shallow Crust,0.0,89.98638,0.0,01/17/6419 +8.68728,47.5404,6496,3,13,7,13,59,3.55,5.0,fr,18178,129,763680,1,11,Active Shallow Crust,0.0,89.98638,0.0,03/13/6496 +8.68728,47.5404,6589,5,21,8,20,56,3.55,5.0,fr,18179,131,763680,1,11,Active Shallow Crust,0.0,89.98638,0.0,05/21/6589 +8.68728,47.5404,5001,9,14,5,22,36,3.55,5.0,fr,18180,100,763680,1,11,Active Shallow Crust,0.0,89.98638,0.0,09/14/5001 +8.68728,47.5404,5931,10,9,14,46,27,3.55,5.0,fr,18181,118,763680,1,11,Active Shallow Crust,0.0,89.98638,0.0,10/09/5931 +8.68728,47.5404,9502,1,13,22,20,24,3.55,15.0,fr,18182,190,763681,1,2,Active Shallow Crust,0.0,89.98638,0.0,01/13/9502 +8.68728,47.5404,9890,8,6,23,31,12,3.55,15.0,fr,18183,197,763681,1,2,Active Shallow Crust,0.0,89.98638,0.0,08/06/9890 +8.68728,47.5404,8158,1,22,12,29,27,3.55,5.0,fr,18184,163,763683,1,3,Active Shallow Crust,240.0144,57.99846,0.0,01/22/8158 +8.68728,47.5404,3034,9,1,8,31,6,3.55,5.0,fr,18185,60,763683,1,3,Active Shallow Crust,240.0144,57.99846,0.0,09/01/3034 +8.68728,47.5404,5978,6,1,17,40,30,3.55,5.0,fr,18186,119,763683,1,3,Active Shallow Crust,240.0144,57.99846,0.0,06/01/5978 +8.68728,47.5404,2947,1,4,19,57,45,3.55,15.0,fr,18187,58,763684,1,1,Active Shallow Crust,240.0144,57.99846,0.0,01/04/2947 +8.68728,47.5404,3541,8,14,3,40,53,3.55,5.0,fr,18188,70,763686,1,1,Active Shallow Crust,0.0,89.98623,-90.0,08/14/3541 +8.68728,47.5404,2508,5,18,19,11,16,3.55,27.5,fr,18189,50,763688,1,1,Active Shallow Crust,0.0,89.98623,-90.0,05/18/2508 +8.68728,47.5404,2597,7,16,16,55,11,3.55,5.0,fr,18190,51,763689,1,1,Active Shallow Crust,128.8944,89.99319,0.0,07/16/2597 +8.68728,47.5404,9790,7,3,12,17,17,3.65,5.0,fr,18191,195,763692,1,9,Active Shallow Crust,0.0,89.98787,0.0,07/03/9790 +8.68728,47.5404,9082,7,27,17,37,42,3.65,5.0,fr,18192,181,763692,1,9,Active Shallow Crust,0.0,89.98787,0.0,07/27/9082 +8.68728,47.5404,4904,6,6,7,46,18,3.65,5.0,fr,18193,98,763692,1,9,Active Shallow Crust,0.0,89.98787,0.0,06/06/4904 +8.68728,47.5404,8464,11,26,9,56,17,3.65,5.0,fr,18194,169,763692,1,9,Active Shallow Crust,0.0,89.98787,0.0,11/26/8464 +8.68728,47.5404,4935,8,29,16,21,59,3.65,5.0,fr,18195,98,763692,1,9,Active Shallow Crust,0.0,89.98787,0.0,08/29/4935 +8.68728,47.5404,1078,9,1,7,44,52,3.65,5.0,fr,18196,21,763692,1,9,Active Shallow Crust,0.0,89.98787,0.0,09/01/1078 +8.68728,47.5404,3522,12,11,18,54,19,3.65,5.0,fr,18197,70,763692,1,9,Active Shallow Crust,0.0,89.98787,0.0,12/11/3522 +8.68728,47.5404,7750,2,28,19,38,55,3.65,5.0,fr,18198,154,763692,1,9,Active Shallow Crust,0.0,89.98787,0.0,02/28/7750 +8.68728,47.5404,7294,7,29,23,43,4,3.65,5.0,fr,18199,145,763692,1,9,Active Shallow Crust,0.0,89.98787,0.0,07/29/7294 +8.68728,47.5404,6150,2,28,11,3,13,3.65,15.0,fr,18200,122,763693,1,3,Active Shallow Crust,0.0,89.98787,0.0,02/28/6150 +8.68728,47.5404,5767,6,27,7,57,13,3.65,15.0,fr,18201,115,763693,1,3,Active Shallow Crust,0.0,89.98787,0.0,06/27/5767 +8.68728,47.5404,6189,2,10,18,39,6,3.65,15.0,fr,18202,123,763693,1,3,Active Shallow Crust,0.0,89.98787,0.0,02/10/6189 +8.68728,47.5404,582,10,18,19,9,32,3.65,5.0,fr,18203,11,763695,1,2,Active Shallow Crust,240.0018,58.01083,0.0,10/18/0582 +8.68728,47.5404,2729,6,4,2,28,18,3.65,5.0,fr,18204,54,763695,1,2,Active Shallow Crust,240.0018,58.01083,0.0,06/04/2729 +8.68728,47.5404,6118,2,6,7,42,21,3.65,15.0,fr,18205,122,763696,1,1,Active Shallow Crust,240.0018,58.01083,0.0,02/06/6118 +8.68728,47.5404,7989,1,29,23,15,37,3.65,27.5,fr,18206,159,763697,1,1,Active Shallow Crust,240.0018,58.01075,0.0,01/29/7989 +8.68728,47.5404,5384,7,19,7,33,4,3.65,15.0,fr,18207,107,763702,1,1,Active Shallow Crust,128.8999,89.96355,0.0,07/19/5384 +8.68728,47.5404,4270,3,9,11,18,9,3.75,5.0,fr,18208,85,763704,1,4,Active Shallow Crust,0.0,89.98918,0.0,03/09/4270 +8.68728,47.5404,5446,12,10,14,9,30,3.75,5.0,fr,18209,108,763704,1,4,Active Shallow Crust,0.0,89.98918,0.0,12/10/5446 +8.68728,47.5404,56,4,20,0,11,22,3.75,5.0,fr,18210,1,763704,1,4,Active Shallow Crust,0.0,89.98918,0.0,04/20/0056 +8.68728,47.5404,4561,6,23,13,7,37,3.75,5.0,fr,18211,91,763704,1,4,Active Shallow Crust,0.0,89.98918,0.0,06/23/4561 +8.68728,47.5404,7657,5,27,20,14,45,3.75,15.0,fr,18212,153,763705,1,2,Active Shallow Crust,0.0,89.98918,0.0,05/27/7657 +8.68728,47.5404,9785,4,5,0,34,55,3.75,15.0,fr,18213,195,763705,1,2,Active Shallow Crust,0.0,89.98918,0.0,04/05/9785 +8.68728,47.5404,635,9,22,8,31,14,3.75,5.0,fr,18214,12,763707,1,2,Active Shallow Crust,240.0065,58.01871,0.0,09/22/0635 +8.68728,47.5404,6206,6,25,12,24,2,3.75,5.0,fr,18215,124,763707,1,2,Active Shallow Crust,240.0065,58.01871,0.0,06/25/6206 +8.68728,47.5404,8708,6,16,22,21,32,3.75,15.0,fr,18216,174,763708,1,1,Active Shallow Crust,240.0065,58.01871,0.0,06/16/8708 +8.68728,47.5404,5933,2,25,0,41,20,3.75,27.5,fr,18217,118,763712,1,1,Active Shallow Crust,0.0,89.98906,-90.0,02/25/5933 +8.68728,47.5404,399,6,22,5,45,57,3.75,5.0,fr,18218,7,763713,1,3,Active Shallow Crust,128.8956,89.96751,0.0,06/22/0399 +8.68728,47.5404,1950,7,2,13,43,8,3.75,5.0,fr,18219,38,763713,1,3,Active Shallow Crust,128.8956,89.96751,0.0,07/02/1950 +8.68728,47.5404,8920,8,9,6,15,30,3.75,5.0,fr,18220,178,763713,1,3,Active Shallow Crust,128.8956,89.96751,0.0,08/09/8920 +8.68728,47.5404,7735,8,11,22,40,6,3.85,5.0,fr,18221,154,763716,1,5,Active Shallow Crust,0.0,89.99036,0.0,08/11/7735 +8.68728,47.5404,3485,9,2,10,17,35,3.85,5.0,fr,18222,69,763716,1,5,Active Shallow Crust,0.0,89.99036,0.0,09/02/3485 +8.68728,47.5404,4556,10,18,6,49,22,3.85,5.0,fr,18223,91,763716,1,5,Active Shallow Crust,0.0,89.99036,0.0,10/18/4556 +8.68728,47.5404,357,11,2,23,26,47,3.85,5.0,fr,18224,7,763716,1,5,Active Shallow Crust,0.0,89.99036,0.0,11/02/0357 +8.68728,47.5404,6177,12,14,16,50,23,3.85,5.0,fr,18225,123,763716,1,5,Active Shallow Crust,0.0,89.99036,0.0,12/14/6177 +8.68728,47.5404,6914,3,23,19,58,50,3.85,15.0,fr,18226,138,763717,1,3,Active Shallow Crust,0.0,89.99036,0.0,03/23/6914 +8.68728,47.5404,5019,10,27,6,19,58,3.85,15.0,fr,18227,100,763717,1,3,Active Shallow Crust,0.0,89.99036,0.0,10/27/5019 +8.68728,47.5404,315,7,4,17,44,10,3.85,15.0,fr,18228,6,763717,1,3,Active Shallow Crust,0.0,89.99036,0.0,07/04/0315 +8.68728,47.5404,5025,7,8,15,55,54,3.85,5.0,fr,18229,100,763719,1,1,Active Shallow Crust,240.0099,57.99788,0.0,07/08/5025 +8.68728,47.5404,7254,1,8,5,18,33,3.85,5.0,fr,18230,145,763722,1,1,Active Shallow Crust,0.0,89.99025,-90.0,01/08/7254 +8.68728,47.5404,6682,8,1,1,16,56,3.95,5.0,fr,18231,133,763728,1,5,Active Shallow Crust,0.0,89.99141,0.0,08/01/6682 +8.68728,47.5404,9988,4,1,19,30,1,3.95,5.0,fr,18232,199,763728,1,5,Active Shallow Crust,0.0,89.99141,0.0,04/01/9988 +8.68728,47.5404,9769,5,4,22,7,15,3.95,5.0,fr,18233,195,763728,1,5,Active Shallow Crust,0.0,89.99141,0.0,05/04/9769 +8.68728,47.5404,6572,6,18,1,50,22,3.95,5.0,fr,18234,131,763728,1,5,Active Shallow Crust,0.0,89.99141,0.0,06/18/6572 +8.68728,47.5404,1089,3,29,14,51,42,3.95,5.0,fr,18235,21,763728,1,5,Active Shallow Crust,0.0,89.99141,0.0,03/29/1089 +8.68728,47.5404,7952,5,19,5,0,51,3.95,15.0,fr,18236,159,763729,1,4,Active Shallow Crust,0.0,89.99141,0.0,05/19/7952 +8.68728,47.5404,2123,10,10,10,27,5,3.95,15.0,fr,18237,42,763729,1,4,Active Shallow Crust,0.0,89.99141,0.0,10/10/2123 +8.68728,47.5404,4289,5,18,7,42,1,3.95,15.0,fr,18238,85,763729,1,4,Active Shallow Crust,0.0,89.99141,0.0,05/18/4289 +8.68728,47.5404,8933,1,10,8,52,21,3.95,15.0,fr,18239,178,763729,1,4,Active Shallow Crust,0.0,89.99141,0.0,01/10/8933 +8.68728,47.5404,1233,3,9,8,48,4,3.95,27.5,fr,18240,24,763730,1,1,Active Shallow Crust,0.0,89.99141,0.0,03/09/1233 +8.68728,47.5404,2379,3,30,13,25,44,3.95,5.0,fr,18241,47,763731,1,2,Active Shallow Crust,240.0204,58.00565,0.0,03/30/2379 +8.68728,47.5404,2843,1,22,12,0,26,3.95,5.0,fr,18242,56,763731,1,2,Active Shallow Crust,240.0204,58.00565,0.0,01/22/2843 +8.68728,47.5404,9368,7,7,14,59,23,3.95,5.0,fr,18243,187,763734,1,1,Active Shallow Crust,0.0,89.99131,-90.0,07/07/9368 +8.68728,47.5404,1319,1,6,13,58,18,3.95,5.0,fr,18244,26,763737,1,2,Active Shallow Crust,128.9003,89.9957,0.0,01/06/1319 +8.68728,47.5404,9224,7,1,15,28,33,3.95,5.0,fr,18245,184,763737,1,2,Active Shallow Crust,128.9003,89.9957,0.0,07/01/9224 +8.68728,47.5404,1669,4,30,15,40,3,4.05,5.0,fr,18246,33,763740,1,5,Active Shallow Crust,0.0,89.99234,0.0,04/30/1669 +8.68728,47.5404,4089,9,5,18,24,2,4.05,5.0,fr,18247,81,763740,1,5,Active Shallow Crust,0.0,89.99234,0.0,09/05/4089 +8.68728,47.5404,1015,7,19,12,32,33,4.05,5.0,fr,18248,20,763740,1,5,Active Shallow Crust,0.0,89.99234,0.0,07/19/1015 +8.68728,47.5404,3472,5,15,11,9,6,4.05,5.0,fr,18249,69,763740,1,5,Active Shallow Crust,0.0,89.99234,0.0,05/15/3472 +8.68728,47.5404,3531,7,26,8,34,8,4.05,5.0,fr,18250,70,763740,1,5,Active Shallow Crust,0.0,89.99234,0.0,07/26/3531 +8.68728,47.5404,3239,9,24,3,36,0,4.05,15.0,fr,18251,64,763741,1,1,Active Shallow Crust,0.0,89.99234,0.0,09/24/3239 +8.68728,47.5404,4064,10,31,7,16,48,4.05,27.5,fr,18252,81,763742,1,1,Active Shallow Crust,0.0,89.99234,0.0,10/31/4064 +8.68728,47.5404,8162,6,14,11,51,27,4.05,15.0,fr,18253,163,763750,1,1,Active Shallow Crust,128.8899,89.99235,0.0,06/14/8162 +8.68728,47.5404,7948,1,31,21,13,35,4.15,5.0,fr,18254,158,763752,1,4,Active Shallow Crust,0.0,89.99318,0.0,01/31/7948 +8.68728,47.5404,4186,6,7,0,19,53,4.15,5.0,fr,18255,83,763752,1,4,Active Shallow Crust,0.0,89.99318,0.0,06/07/4186 +8.68728,47.5404,5723,1,9,11,15,7,4.15,5.0,fr,18256,114,763752,1,4,Active Shallow Crust,0.0,89.99318,0.0,01/09/5723 +8.68728,47.5404,3233,12,12,7,3,45,4.15,5.0,fr,18257,64,763752,1,4,Active Shallow Crust,0.0,89.99318,0.0,12/12/3233 +8.68728,47.5404,6867,4,17,3,17,9,4.15,15.0,fr,18258,137,763753,1,1,Active Shallow Crust,0.0,89.99318,0.0,04/17/6867 +8.68728,47.5404,1555,8,18,9,44,46,4.25,5.0,fr,18259,31,763764,1,4,Active Shallow Crust,0.0,89.98784,0.0,08/18/1555 +8.68728,47.5404,8823,5,2,0,38,24,4.25,5.0,fr,18260,176,763764,1,4,Active Shallow Crust,0.0,89.98784,0.0,05/02/8823 +8.68728,47.5404,3002,5,17,19,3,26,4.25,5.0,fr,18261,60,763764,1,4,Active Shallow Crust,0.0,89.98784,0.0,05/17/3002 +8.68728,47.5404,369,10,24,2,25,2,4.25,5.0,fr,18262,7,763764,1,4,Active Shallow Crust,0.0,89.98784,0.0,10/24/0369 +8.68728,47.5404,2183,11,28,14,12,35,4.25,5.0,fr,18263,43,763773,1,1,Active Shallow Crust,128.8941,89.98099,0.0,11/28/2183 +8.68728,47.5404,4694,8,20,1,53,47,4.35,5.0,fr,18264,93,763776,1,2,Active Shallow Crust,0.0,89.98916,0.0,08/20/4694 +8.68728,47.5404,393,8,7,9,24,24,4.35,5.0,fr,18265,7,763776,1,2,Active Shallow Crust,0.0,89.98916,0.0,08/07/0393 +8.68728,47.5404,4905,1,10,7,20,44,4.35,5.0,fr,18266,98,763779,1,1,Active Shallow Crust,240.0078,57.99634,0.0,01/10/4905 +8.68728,47.5404,9603,5,15,13,12,29,4.35,27.5,fr,18267,192,763781,1,1,Active Shallow Crust,240.0078,57.99634,0.0,05/15/9603 +8.68728,47.5404,3073,12,1,12,20,15,4.35,15.0,fr,18268,61,763783,1,2,Active Shallow Crust,0.0,89.98904,-90.0,12/01/3073 +8.68728,47.5404,5881,5,24,12,14,34,4.35,15.0,fr,18269,117,763783,1,2,Active Shallow Crust,0.0,89.98904,-90.0,05/24/5881 +8.68728,47.5404,434,8,11,21,30,20,4.45,15.0,fr,18270,8,763789,1,1,Active Shallow Crust,0.0,89.99034,0.0,08/11/0434 +8.68728,47.5404,3157,1,8,7,4,44,4.45,15.0,fr,18271,63,763798,1,1,Active Shallow Crust,128.8906,89.99517,0.0,01/08/3157 +8.68728,47.5404,8472,7,27,23,20,39,4.55,5.0,fr,18272,169,763803,1,2,Active Shallow Crust,240.0094,57.99778,0.0,07/27/8472 +8.68728,47.5404,2510,7,26,4,20,50,4.55,5.0,fr,18273,50,763803,1,2,Active Shallow Crust,240.0094,57.99778,0.0,07/26/2510 +8.68728,47.5404,4375,9,12,1,8,21,4.65,5.0,fr,18274,87,763812,1,4,Active Shallow Crust,0.0,89.98849,0.0,09/12/4375 +8.68728,47.5404,5906,2,3,20,59,3,4.65,5.0,fr,18275,118,763812,1,4,Active Shallow Crust,0.0,89.98849,0.0,02/03/5906 +8.68728,47.5404,245,3,25,5,49,32,4.65,5.0,fr,18276,4,763812,1,4,Active Shallow Crust,0.0,89.98849,0.0,03/25/0245 +8.68728,47.5404,367,4,15,7,44,30,4.65,5.0,fr,18277,7,763812,1,4,Active Shallow Crust,0.0,89.98849,0.0,04/15/0367 +8.68728,47.5404,2666,1,21,11,8,32,4.65,15.0,fr,18278,53,763813,1,2,Active Shallow Crust,0.0,89.98849,0.0,01/21/2666 +8.68728,47.5404,7681,7,5,9,8,39,4.65,15.0,fr,18279,153,763813,1,2,Active Shallow Crust,0.0,89.98849,0.0,07/05/7681 +8.68728,47.5404,229,10,28,17,8,43,4.65,5.0,fr,18280,4,763815,1,1,Active Shallow Crust,240.0116,57.994,0.0,10/28/0229 +8.68728,47.5404,7976,3,30,6,13,19,4.65,27.5,fr,18281,159,763820,1,1,Active Shallow Crust,0.0,89.98835,-90.0,03/30/7976 +8.68728,47.5404,2677,3,5,8,57,11,4.75,15.0,fr,18282,53,763825,1,1,Active Shallow Crust,0.0,89.98974,0.0,03/05/2677 +8.68728,47.5404,8787,3,17,9,21,29,4.75,15.0,fr,18283,175,763828,1,1,Active Shallow Crust,240.0078,58.00514,0.0,03/17/8787 +8.68728,47.5404,7451,8,30,19,55,57,4.75,5.0,fr,18284,149,763830,1,1,Active Shallow Crust,0.0,89.98962,-90.0,08/30/7451 +8.68728,47.5404,9577,9,26,5,57,55,4.95,15.0,fr,18285,191,763855,1,1,Active Shallow Crust,0.0,89.98901,-90.0,09/26/9577 +8.68728,47.5404,5576,10,2,21,3,32,5.05,5.0,fr,18286,111,763860,1,1,Active Shallow Crust,0.0,89.99031,0.0,10/02/5576 +8.68728,47.5404,1527,2,1,6,42,26,5.25,5.0,fr,18287,30,763884,1,1,Active Shallow Crust,0.0,89.99038,0.0,02/01/1527 +8.68728,47.5404,9409,10,18,11,29,19,5.35,5.0,fr,18288,188,763896,1,1,Active Shallow Crust,0.0,89.98972,0.0,10/18/9409 +8.68728,47.5404,7584,10,25,6,11,41,5.35,27.5,fr,18289,151,763901,1,1,Active Shallow Crust,240.0258,57.99831,0.0,10/25/7584 +8.68728,47.5404,7996,1,9,12,36,20,5.45,5.0,fr,18290,159,763908,1,1,Active Shallow Crust,0.0,89.9893,0.0,01/09/7996 +4.93311,43.82295,8786,9,29,17,28,53,3.55,5.0,fr,18291,175,764160,1,1,Active Shallow Crust,0.0,89.99272,0.0,09/29/8786 +4.93311,43.82295,9632,6,30,4,15,3,3.55,15.0,fr,18292,192,764161,1,2,Active Shallow Crust,0.0,89.99272,0.0,06/30/9632 +4.93311,43.82295,9986,9,5,16,14,28,3.55,15.0,fr,18293,199,764161,1,2,Active Shallow Crust,0.0,89.99272,0.0,09/05/9986 +4.93311,43.82295,1432,6,20,14,7,3,3.55,27.5,fr,18294,28,764162,1,1,Active Shallow Crust,0.0,89.99272,0.0,06/20/1432 +4.93311,43.82295,710,2,13,1,9,55,3.55,5.0,fr,18295,14,764163,1,1,Active Shallow Crust,240.0121,57.99857,0.0,02/13/0710 +4.93311,43.82295,8816,1,2,21,14,10,3.55,5.0,fr,18296,176,764166,1,1,Active Shallow Crust,0.0,89.99264,-90.0,01/02/8816 +4.93311,43.82295,6413,8,22,4,59,34,3.55,15.0,fr,18297,128,764170,1,1,Active Shallow Crust,128.8951,89.99636,0.0,08/22/6413 +4.93311,43.82295,4036,3,13,23,45,51,3.65,5.0,fr,18298,80,764172,1,2,Active Shallow Crust,0.0,89.98703,0.0,03/13/4036 +4.93311,43.82295,2308,1,25,15,32,35,3.65,5.0,fr,18299,46,764172,1,2,Active Shallow Crust,0.0,89.98703,0.0,01/25/2308 +4.93311,43.82295,4933,8,29,0,7,24,3.65,15.0,fr,18300,98,764173,1,1,Active Shallow Crust,0.0,89.98703,0.0,08/29/4933 +4.93311,43.82295,9930,12,8,8,40,42,3.65,5.0,fr,18301,198,764175,1,1,Active Shallow Crust,240.0003,58.01352,0.0,12/08/9930 +4.93311,43.82295,1747,1,10,3,27,33,3.65,5.0,fr,18302,34,764178,1,1,Active Shallow Crust,0.0,89.98689,-90.0,01/10/1747 +4.93311,43.82295,4100,8,20,0,12,5,3.75,5.0,fr,18303,81,764184,1,2,Active Shallow Crust,0.0,89.98844,0.0,08/20/4100 +4.93311,43.82295,8441,1,6,10,56,44,3.75,5.0,fr,18304,168,764184,1,2,Active Shallow Crust,0.0,89.98844,0.0,01/06/8441 +4.93311,43.82295,3774,9,11,4,20,10,3.75,15.0,fr,18305,75,764185,1,2,Active Shallow Crust,0.0,89.98844,0.0,09/11/3774 +4.93311,43.82295,9821,9,14,9,51,28,3.75,15.0,fr,18306,196,764185,1,2,Active Shallow Crust,0.0,89.98844,0.0,09/14/9821 +4.93311,43.82295,2996,12,25,8,40,41,3.75,5.0,fr,18307,59,764187,1,2,Active Shallow Crust,240.0083,58.01728,0.0,12/25/2996 +4.93311,43.82295,5987,9,10,6,12,27,3.75,5.0,fr,18308,119,764187,1,2,Active Shallow Crust,240.0083,58.01728,0.0,09/10/5987 +4.93311,43.82295,6168,3,10,18,58,1,3.75,5.0,fr,18309,123,764193,1,1,Active Shallow Crust,128.8976,89.96681,0.0,03/10/6168 +4.93311,43.82295,429,4,11,23,32,34,3.85,5.0,fr,18310,8,764196,1,1,Active Shallow Crust,0.0,89.9897,0.0,04/11/0429 +4.93311,43.82295,7859,5,4,11,21,41,3.95,5.0,fr,18311,157,764208,1,2,Active Shallow Crust,0.0,89.99082,0.0,05/04/7859 +4.93311,43.82295,9833,6,25,17,41,2,3.95,5.0,fr,18312,196,764208,1,2,Active Shallow Crust,0.0,89.99082,0.0,06/25/9833 +4.93311,43.82295,7776,9,28,3,14,52,4.05,5.0,fr,18313,155,764220,1,2,Active Shallow Crust,0.0,89.99181,0.0,09/28/7776 +4.93311,43.82295,1836,11,24,11,21,27,4.05,5.0,fr,18314,36,764220,1,2,Active Shallow Crust,0.0,89.99181,0.0,11/24/1836 +4.93311,43.82295,5805,12,3,22,18,1,4.05,15.0,fr,18315,116,764221,1,1,Active Shallow Crust,0.0,89.99181,0.0,12/03/5805 +4.93311,43.82295,2785,4,9,3,45,44,4.05,5.0,fr,18316,55,764226,1,1,Active Shallow Crust,0.0,89.99172,-90.0,04/09/2785 +4.93311,43.82295,8150,6,29,2,11,11,4.15,15.0,fr,18317,162,764233,1,1,Active Shallow Crust,0.0,89.98906,0.0,06/29/8150 +4.93311,43.82295,9830,1,28,16,47,47,4.15,5.0,fr,18318,196,764238,1,1,Active Shallow Crust,0.0,89.98894,-90.0,01/28/9830 +4.93311,43.82295,9707,2,5,17,52,5,4.25,27.5,fr,18319,194,764246,1,1,Active Shallow Crust,0.0,89.99025,0.0,02/05/9707 +4.93311,43.82295,5177,8,1,8,24,49,4.25,5.0,fr,18320,103,764247,1,1,Active Shallow Crust,240.0073,57.9942,0.0,08/01/5177 +4.93311,43.82295,9022,4,11,13,25,40,4.35,5.0,fr,18321,180,764256,1,1,Active Shallow Crust,0.0,89.99131,0.0,04/11/9022 +4.93311,43.82295,8777,10,8,12,24,27,4.35,15.0,fr,18322,175,764257,1,1,Active Shallow Crust,0.0,89.99131,0.0,10/08/8777 +4.93311,43.82295,8138,7,21,4,26,45,4.45,5.0,fr,18323,162,764271,1,1,Active Shallow Crust,240.0044,57.99453,0.0,07/21/8138 +4.93311,43.82295,4109,4,5,14,38,36,4.55,5.0,fr,18324,82,764283,1,1,Active Shallow Crust,240.0085,57.99762,0.0,04/05/4109 +4.93311,43.82295,7068,9,2,20,28,13,4.75,15.0,fr,18325,141,764314,1,1,Active Shallow Crust,128.8898,89.98802,0.0,09/02/7068 +4.93311,43.82295,5793,9,9,4,29,22,4.95,5.0,fr,18326,115,764337,1,1,Active Shallow Crust,128.8907,89.98964,0.0,09/09/5793 +4.93311,43.82295,7767,4,6,11,20,11,5.35,15.0,fr,18327,155,764383,1,1,Active Shallow Crust,0.0,89.98981,-90.0,04/06/7767 +4.933099,43.82294,1169,8,11,9,22,39,6.85,13.45767,fr,18328,23,764565,1,1,Active Shallow Crust,128.8092,89.99044,0.0,08/11/1169 +5.10323,48.00812,6360,6,10,0,9,44,3.55,5.0,fr,18329,127,764640,1,1,Active Shallow Crust,0.0,89.99326,0.0,06/10/6360 +5.10323,48.00812,2518,1,12,2,30,27,3.65,5.0,fr,18330,50,764652,1,2,Active Shallow Crust,0.0,89.98798,0.0,01/12/2518 +5.10323,48.00812,5204,7,3,18,1,9,3.65,5.0,fr,18331,104,764652,1,2,Active Shallow Crust,0.0,89.98798,0.0,07/03/5204 +5.10323,48.00812,5193,1,7,1,10,6,3.85,15.0,fr,18332,103,764677,1,1,Active Shallow Crust,0.0,89.99045,0.0,01/07/5193 +5.10323,48.00812,4472,3,18,22,39,7,3.85,27.5,fr,18333,89,764678,1,1,Active Shallow Crust,0.0,89.99045,0.0,03/18/4472 +5.10323,48.00812,5098,8,23,4,38,58,4.05,5.0,fr,18334,101,764700,1,1,Active Shallow Crust,0.0,89.98862,0.0,08/23/5098 +5.10323,48.00812,8983,9,12,0,23,54,4.05,15.0,fr,18335,179,764701,1,1,Active Shallow Crust,0.0,89.98862,0.0,09/12/8983 +5.10323,48.00812,3854,3,31,14,49,16,4.05,15.0,fr,18336,77,764707,1,1,Active Shallow Crust,0.0,89.98849,-90.0,03/31/3854 +5.10323,48.00812,2323,1,11,0,5,54,4.45,5.0,fr,18337,46,764748,1,1,Active Shallow Crust,0.0,89.99043,0.0,01/11/2323 +-0.23727,43.28443,3711,1,2,19,27,40,3.55,5.0,fr,18338,74,765120,1,4,Active Shallow Crust,0.0,89.98991,0.0,01/02/3711 +-0.23727,43.28443,7559,7,27,23,11,29,3.55,5.0,fr,18339,151,765120,1,4,Active Shallow Crust,0.0,89.98991,0.0,07/27/7559 +-0.23727,43.28443,6262,5,21,8,28,28,3.55,5.0,fr,18340,125,765120,1,4,Active Shallow Crust,0.0,89.98991,0.0,05/21/6262 +-0.23727,43.28443,8273,1,10,2,33,45,3.55,5.0,fr,18341,165,765120,1,4,Active Shallow Crust,0.0,89.98991,0.0,01/10/8273 +-0.23727,43.28443,5300,6,13,15,47,18,3.55,5.0,fr,18342,105,765129,1,1,Active Shallow Crust,128.8964,89.99369,0.0,06/13/5300 +-0.23727,43.28443,8048,6,26,7,55,56,3.65,5.0,fr,18343,160,765132,1,2,Active Shallow Crust,0.0,89.98998,0.0,06/26/8048 +-0.23727,43.28443,6724,4,13,7,17,41,3.65,5.0,fr,18344,134,765132,1,2,Active Shallow Crust,0.0,89.98998,0.0,04/13/6724 +-0.23727,43.28443,7853,7,15,22,32,40,3.65,15.0,fr,18345,157,765133,1,1,Active Shallow Crust,0.0,89.98998,0.0,07/15/7853 +-0.23727,43.28443,2875,7,25,14,9,37,3.65,15.0,fr,18346,57,765136,1,1,Active Shallow Crust,240.0007,58.01287,0.0,07/25/2875 +-0.23727,43.28443,382,12,13,11,8,2,3.65,15.0,fr,18347,7,765139,1,1,Active Shallow Crust,0.0,89.99007,-90.0,12/13/0382 +-0.23727,43.28443,395,9,9,16,37,5,3.75,5.0,fr,18348,7,765144,1,1,Active Shallow Crust,0.0,89.98997,0.0,09/09/0395 +-0.23727,43.28443,7087,12,6,10,37,45,3.75,15.0,fr,18349,141,765145,1,1,Active Shallow Crust,0.0,89.98997,0.0,12/06/7087 +-0.23727,43.28443,8099,1,3,22,58,7,3.75,15.0,fr,18350,161,765148,1,1,Active Shallow Crust,240.008,58.01752,0.0,01/03/8099 +-0.23727,43.28443,8011,5,31,3,21,14,3.75,27.5,fr,18351,160,765149,1,1,Active Shallow Crust,240.008,58.01752,0.0,05/31/8011 +-0.23727,43.28443,6646,10,28,16,48,6,3.85,5.0,fr,18352,132,765156,1,1,Active Shallow Crust,0.0,89.98993,0.0,10/28/6646 +-0.23727,43.28443,5072,3,20,10,55,11,3.85,15.0,fr,18353,101,765157,1,1,Active Shallow Crust,0.0,89.98993,0.0,03/20/5072 +-0.23727,43.28443,139,7,20,7,12,0,3.95,5.0,fr,18354,2,765168,1,2,Active Shallow Crust,0.0,89.99001,0.0,07/20/0139 +-0.23727,43.28443,735,4,9,18,15,50,3.95,5.0,fr,18355,14,765168,1,2,Active Shallow Crust,0.0,89.99001,0.0,04/09/0735 +-0.23727,43.28443,8626,4,4,19,35,56,4.15,5.0,fr,18356,172,765192,1,1,Active Shallow Crust,0.0,89.99,0.0,04/04/8626 +-0.23727,43.28443,1691,12,20,16,48,44,4.15,15.0,fr,18357,33,765193,1,2,Active Shallow Crust,0.0,89.99,0.0,12/20/1691 +-0.23727,43.28443,5775,1,5,7,30,49,4.15,15.0,fr,18358,115,765193,1,2,Active Shallow Crust,0.0,89.99,0.0,01/05/5775 +-0.23727,43.28443,6622,1,22,7,48,15,4.25,5.0,fr,18359,132,765213,1,1,Active Shallow Crust,128.8949,89.98091,0.0,01/22/6622 +-0.23727,43.28443,7431,10,24,6,0,27,4.35,5.0,fr,18360,148,765216,1,1,Active Shallow Crust,360.0,89.99004,0.0,10/24/7431 +-0.23727,43.28443,3433,2,12,18,6,11,4.55,5.0,fr,18361,68,765243,1,1,Active Shallow Crust,240.0084,57.99721,0.0,02/12/3433 +-0.23727,43.28443,7602,2,17,1,21,33,4.65,15.0,fr,18362,152,765253,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/17/7602 +-0.23727,43.28443,6980,1,5,12,29,49,4.95,5.0,fr,18363,139,765288,1,1,Active Shallow Crust,360.0,89.99002,0.0,01/05/6980 +-0.23727,43.28443,311,8,25,3,54,32,5.15,27.5,fr,18364,6,765320,1,1,Active Shallow Crust,0.0,89.99,-90.0,08/25/0311 +-0.23727,43.28443,46,6,26,17,54,19,5.25,5.0,fr,18365,0,765324,1,2,Active Shallow Crust,0.0,89.98998,0.0,06/26/0046 +-0.23727,43.28443,172,6,4,12,20,52,5.25,5.0,fr,18366,3,765324,1,2,Active Shallow Crust,0.0,89.98998,0.0,06/04/0172 +-0.23727,43.28443,6229,10,8,0,46,19,5.25,5.0,fr,18367,124,765333,1,1,Active Shallow Crust,128.8849,89.98698,0.0,10/08/6229 +-0.23727,43.28443,1944,10,9,20,31,47,5.65,5.0,fr,18368,38,765372,1,1,Active Shallow Crust,0.0,89.99,0.0,10/09/1944 +6.25875,45.70846,6035,9,17,2,46,42,3.55,5.0,fr,18369,120,766080,1,1,Active Shallow Crust,0.0,89.99296,0.0,09/17/6035 +6.25875,45.70846,3979,5,24,2,54,52,3.55,15.0,fr,18370,79,766081,1,1,Active Shallow Crust,0.0,89.99296,0.0,05/24/3979 +6.25875,45.70846,9195,4,8,15,1,6,3.55,15.0,fr,18371,183,766084,1,1,Active Shallow Crust,240.0129,57.99781,0.0,04/08/9195 +6.25875,45.70846,97,11,5,0,58,24,3.55,5.0,fr,18372,1,766089,1,1,Active Shallow Crust,128.8967,89.99296,0.0,11/05/0097 +6.25875,45.70846,2340,6,10,15,28,54,3.65,5.0,fr,18373,46,766092,1,5,Active Shallow Crust,0.0,89.98745,0.0,06/10/2340 +6.25875,45.70846,4886,8,18,16,0,12,3.65,5.0,fr,18374,97,766092,1,5,Active Shallow Crust,0.0,89.98745,0.0,08/18/4886 +6.25875,45.70846,2478,1,28,2,41,46,3.65,5.0,fr,18375,49,766092,1,5,Active Shallow Crust,0.0,89.98745,0.0,01/28/2478 +6.25875,45.70846,2748,7,23,14,28,33,3.65,5.0,fr,18376,54,766092,1,5,Active Shallow Crust,0.0,89.98745,0.0,07/23/2748 +6.25875,45.70846,6518,8,14,13,20,17,3.65,5.0,fr,18377,130,766092,1,5,Active Shallow Crust,0.0,89.98745,0.0,08/14/6518 +6.25875,45.70846,1869,9,27,10,16,47,3.65,5.0,fr,18378,37,766095,1,1,Active Shallow Crust,240.0007,58.01269,0.0,09/27/1869 +6.25875,45.70846,5047,11,27,12,22,45,3.65,27.5,fr,18379,100,766100,1,1,Active Shallow Crust,0.0,89.9873,-90.0,11/27/5047 +6.25875,45.70846,9066,8,5,4,49,15,3.75,5.0,fr,18380,181,766104,1,1,Active Shallow Crust,0.0,89.98882,0.0,08/05/9066 +6.25875,45.70846,7525,7,15,11,15,52,3.85,5.0,fr,18381,150,766116,1,1,Active Shallow Crust,0.0,89.99003,0.0,07/15/7525 +6.25875,45.70846,2578,3,28,16,4,27,3.85,5.0,fr,18382,51,766125,1,2,Active Shallow Crust,128.8959,89.99252,0.0,03/28/2578 +6.25875,45.70846,1839,2,5,20,43,45,3.85,5.0,fr,18383,36,766125,1,2,Active Shallow Crust,128.8959,89.99252,0.0,02/05/1839 +6.25875,45.70846,1384,3,22,20,47,35,3.85,15.0,fr,18384,27,766126,1,1,Active Shallow Crust,128.8959,89.99252,0.0,03/22/1384 +6.25875,45.70846,2055,4,12,5,50,39,3.95,5.0,fr,18385,41,766128,1,2,Active Shallow Crust,0.0,89.99111,0.0,04/12/2055 +6.25875,45.70846,3191,4,10,23,12,34,3.95,5.0,fr,18386,63,766128,1,2,Active Shallow Crust,0.0,89.99111,0.0,04/10/3191 +6.25875,45.70846,7129,6,8,16,16,18,3.95,5.0,fr,18387,142,766137,1,2,Active Shallow Crust,128.9005,89.99556,0.0,06/08/7129 +6.25875,45.70846,2731,12,27,16,9,19,3.95,5.0,fr,18388,54,766137,1,2,Active Shallow Crust,128.9005,89.99556,0.0,12/27/2731 +6.25875,45.70846,918,7,1,21,50,31,4.05,5.0,fr,18389,18,766140,1,1,Active Shallow Crust,0.0,89.98812,0.0,07/01/0918 +6.25875,45.70846,8552,12,3,9,19,10,4.05,27.5,fr,18390,171,766142,1,1,Active Shallow Crust,0.0,89.98812,0.0,12/03/8552 +6.25875,45.70846,4794,4,28,21,30,29,4.05,15.0,fr,18391,95,766144,1,1,Active Shallow Crust,240.0058,58.00599,0.0,04/28/4794 +6.25875,45.70846,4212,10,16,23,24,18,4.15,15.0,fr,18392,84,766153,1,1,Active Shallow Crust,0.0,89.98941,0.0,10/16/4212 +6.25875,45.70846,8165,6,23,7,19,32,4.25,15.0,fr,18393,163,766174,1,1,Active Shallow Crust,128.8943,89.98092,0.0,06/23/8165 +6.25875,45.70846,5765,9,30,17,54,12,4.35,5.0,fr,18394,115,766182,1,1,Active Shallow Crust,0.0,89.98866,-90.0,09/30/5765 +6.25875,45.70846,2325,6,11,9,37,31,4.35,5.0,fr,18395,46,766185,1,1,Active Shallow Crust,128.8976,89.98299,0.0,06/11/2325 +6.25875,45.70846,1573,3,9,0,58,16,4.55,5.0,fr,18396,31,766200,1,1,Active Shallow Crust,0.0,89.99109,0.0,03/09/1573 +6.25875,45.70846,6333,1,10,4,32,40,5.75,15.0,fr,18397,126,766345,1,1,Active Shallow Crust,0.0,89.98993,0.0,01/10/6333 +6.92886,44.87025,2868,11,2,17,4,2,3.55,5.0,fr,18398,57,766560,1,2,Active Shallow Crust,0.0,89.99285,0.0,11/02/2868 +6.92886,44.87025,8284,10,20,0,20,4,3.55,5.0,fr,18399,165,766560,1,2,Active Shallow Crust,0.0,89.99285,0.0,10/20/8284 +6.92886,44.87025,2076,10,11,22,9,25,3.55,27.5,fr,18400,41,766562,1,1,Active Shallow Crust,0.0,89.99285,0.0,10/11/2076 +6.92886,44.87025,8172,5,20,8,19,6,3.55,5.0,fr,18401,163,766563,1,1,Active Shallow Crust,240.0123,57.99741,0.0,05/20/8172 +6.92886,44.87025,6410,10,11,17,49,17,3.55,15.0,fr,18402,128,766570,1,1,Active Shallow Crust,128.8973,89.99285,0.0,10/11/6410 +6.92886,44.87025,9384,10,7,23,24,48,3.65,5.0,fr,18403,187,766572,1,2,Active Shallow Crust,0.0,89.98726,0.0,10/07/9384 +6.92886,44.87025,5670,3,21,4,32,38,3.65,5.0,fr,18404,113,766572,1,2,Active Shallow Crust,0.0,89.98726,0.0,03/21/5670 +6.92886,44.87025,8628,8,28,21,13,56,3.65,15.0,fr,18405,172,766573,1,1,Active Shallow Crust,0.0,89.98726,0.0,08/28/8628 +6.92886,44.87025,2270,10,11,9,29,44,3.65,5.0,fr,18406,45,766575,1,1,Active Shallow Crust,240.0005,58.01272,0.0,10/11/2270 +6.92886,44.87025,2549,1,5,13,55,37,3.65,15.0,fr,18407,50,766576,1,1,Active Shallow Crust,240.0005,58.01272,0.0,01/05/2549 +6.92886,44.87025,55,11,23,11,5,12,3.65,5.0,fr,18408,1,766578,1,1,Active Shallow Crust,0.0,89.98711,-90.0,11/23/0055 +6.92886,44.87025,9457,2,12,6,11,55,3.75,5.0,fr,18409,189,766584,1,2,Active Shallow Crust,0.0,89.98865,0.0,02/12/9457 +6.92886,44.87025,7441,3,31,12,56,0,3.75,5.0,fr,18410,148,766584,1,2,Active Shallow Crust,0.0,89.98865,0.0,03/31/7441 +6.92886,44.87025,6820,3,18,3,19,34,3.75,15.0,fr,18411,136,766585,1,2,Active Shallow Crust,0.0,89.98865,0.0,03/18/6820 +6.92886,44.87025,9628,12,24,18,12,22,3.75,15.0,fr,18412,192,766585,1,2,Active Shallow Crust,0.0,89.98865,0.0,12/24/9628 +6.92886,44.87025,5909,8,22,17,56,19,3.75,27.5,fr,18413,118,766589,1,1,Active Shallow Crust,240.009,58.01694,0.0,08/22/5909 +6.92886,44.87025,4171,5,5,14,34,45,3.85,5.0,fr,18414,83,766596,1,3,Active Shallow Crust,0.0,89.98988,0.0,05/05/4171 +6.92886,44.87025,7405,8,15,14,27,37,3.85,5.0,fr,18415,148,766596,1,3,Active Shallow Crust,0.0,89.98988,0.0,08/15/7405 +6.92886,44.87025,7281,11,12,0,3,28,3.85,5.0,fr,18416,145,766596,1,3,Active Shallow Crust,0.0,89.98988,0.0,11/12/7281 +6.92886,44.87025,8437,11,1,15,24,44,3.95,5.0,fr,18417,168,766608,1,2,Active Shallow Crust,0.0,89.99098,0.0,11/01/8437 +6.92886,44.87025,2415,6,30,3,59,36,3.95,5.0,fr,18418,48,766608,1,2,Active Shallow Crust,0.0,89.99098,0.0,06/30/2415 +6.92886,44.87025,8730,12,18,21,49,5,3.95,5.0,fr,18419,174,766611,1,1,Active Shallow Crust,240.0196,58.00423,0.0,12/18/8730 +6.92886,44.87025,1552,2,6,18,10,12,4.05,5.0,fr,18420,31,766620,1,2,Active Shallow Crust,0.0,89.99196,0.0,02/06/1552 +6.92886,44.87025,9744,11,6,2,49,22,4.05,5.0,fr,18421,194,766620,1,2,Active Shallow Crust,0.0,89.99196,0.0,11/06/9744 +6.92886,44.87025,8249,4,29,23,26,57,4.15,5.0,fr,18422,164,766632,1,1,Active Shallow Crust,0.0,89.98926,0.0,04/29/8249 +6.92886,44.87025,8836,9,11,4,38,3,4.15,5.0,fr,18423,176,766638,1,1,Active Shallow Crust,0.0,89.98913,-90.0,09/11/8836 +6.92886,44.87025,8246,4,25,1,4,35,4.15,5.0,fr,18424,164,766641,1,1,Active Shallow Crust,128.8975,89.99463,0.0,04/25/8246 +6.92886,44.87025,1461,5,11,9,16,14,4.25,5.0,fr,18425,29,766644,1,1,Active Shallow Crust,0.0,89.99043,0.0,05/11/1461 +6.92886,44.87025,4117,5,16,8,35,10,4.25,15.0,fr,18426,82,766645,1,1,Active Shallow Crust,0.0,89.99043,0.0,05/16/4117 +6.92886,44.87025,1225,10,6,11,34,52,4.35,5.0,fr,18427,24,766656,1,1,Active Shallow Crust,0.0,89.98862,0.0,10/06/1225 +6.92886,44.87025,1567,8,1,13,28,21,4.35,27.5,fr,18428,31,766658,1,1,Active Shallow Crust,0.0,89.98862,0.0,08/01/1567 +6.92886,44.87025,9183,6,28,14,16,29,4.35,5.0,fr,18429,183,766665,1,1,Active Shallow Crust,128.8989,89.98244,0.0,06/28/9183 +6.92886,44.87025,9305,10,23,0,20,43,4.45,15.0,fr,18430,186,766672,1,1,Active Shallow Crust,240.0046,57.99458,0.0,10/23/9305 +6.92886,44.87025,8793,7,16,15,2,58,4.55,15.0,fr,18431,175,766681,1,1,Active Shallow Crust,0.0,89.99096,0.0,07/16/8793 +6.92886,44.87025,4803,6,28,5,3,51,4.65,27.5,fr,18432,96,766703,1,1,Active Shallow Crust,128.8913,89.98713,0.0,06/28/4803 +6.92886,44.87025,5821,5,3,4,18,17,4.95,5.0,fr,18433,116,766728,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/03/5821 +8.36233,48.27449,3550,5,24,18,49,49,3.55,5.0,fr,18434,70,767040,1,2,Active Shallow Crust,0.0,89.98658,0.0,05/24/3550 +8.36233,48.27449,5891,3,6,14,36,9,3.55,5.0,fr,18435,117,767040,1,2,Active Shallow Crust,0.0,89.98658,0.0,03/06/5891 +8.36233,48.27449,5983,7,3,0,12,4,3.55,15.0,fr,18436,119,767041,1,2,Active Shallow Crust,0.0,89.98658,0.0,07/03/5983 +8.36233,48.27449,4540,10,19,16,2,30,3.55,15.0,fr,18437,90,767041,1,2,Active Shallow Crust,0.0,89.98658,0.0,10/19/4540 +8.36233,48.27449,9293,5,29,20,6,32,3.65,5.0,fr,18438,185,767052,1,1,Active Shallow Crust,0.0,89.98804,0.0,05/29/9293 +8.36233,48.27449,2179,7,8,6,18,55,3.65,5.0,fr,18439,43,767055,1,1,Active Shallow Crust,240.0024,58.01276,0.0,07/08/2179 +8.36233,48.27449,4954,2,22,7,36,17,3.75,5.0,fr,18440,99,767064,1,1,Active Shallow Crust,0.0,89.98933,0.0,02/22/4954 +8.36233,48.27449,6438,9,2,2,14,57,3.85,5.0,fr,18441,128,767076,1,1,Active Shallow Crust,0.0,89.99049,0.0,09/02/6438 +8.36233,48.27449,7799,8,19,6,48,49,3.85,15.0,fr,18442,155,767077,1,2,Active Shallow Crust,0.0,89.99049,0.0,08/19/7799 +8.36233,48.27449,7365,5,28,7,31,53,3.85,15.0,fr,18443,147,767077,1,2,Active Shallow Crust,0.0,89.99049,0.0,05/28/7365 +8.36233,48.27449,4395,2,15,18,18,6,4.05,15.0,fr,18444,87,767104,1,1,Active Shallow Crust,240.0053,58.0062,0.0,02/15/4395 +8.36233,48.27449,3705,6,22,11,30,56,4.05,15.0,fr,18445,74,767110,1,1,Active Shallow Crust,128.8907,89.99245,0.0,06/22/3705 +8.36233,48.27449,4729,8,14,9,14,24,4.15,5.0,fr,18446,94,767112,1,1,Active Shallow Crust,0.0,89.99327,0.0,08/14/4729 +8.36233,48.27449,3544,7,14,23,42,57,4.25,5.0,fr,18447,70,767124,1,1,Active Shallow Crust,0.0,89.98801,0.0,07/14/3544 +8.36233,48.27449,6182,8,23,4,47,20,4.35,15.0,fr,18448,123,767137,1,1,Active Shallow Crust,0.0,89.98931,0.0,08/23/6182 +-3.65846,48.41895,9670,4,4,4,16,33,3.55,27.5,fr,18449,193,767522,1,1,Active Shallow Crust,0.0,89.98996,0.0,04/04/9670 +-3.65846,48.41895,1880,3,24,23,53,22,3.55,5.0,fr,18450,37,767529,1,1,Active Shallow Crust,128.8952,89.99498,0.0,03/24/1880 +-3.65846,48.41895,4153,7,19,21,54,15,3.55,27.5,fr,18451,83,767531,1,1,Active Shallow Crust,128.8952,89.99498,0.0,07/19/4153 +-3.65846,48.41895,3602,2,22,21,57,26,3.65,15.0,fr,18452,72,767533,1,2,Active Shallow Crust,0.0,89.99105,0.0,02/22/3602 +-3.65846,48.41895,3417,5,7,11,16,12,3.65,15.0,fr,18453,68,767533,1,2,Active Shallow Crust,0.0,89.99105,0.0,05/07/3417 +-3.65846,48.41895,1869,7,16,12,21,12,3.65,5.0,fr,18454,37,767541,1,1,Active Shallow Crust,128.8995,89.96356,0.0,07/16/1869 +-3.65846,48.41895,2350,1,8,21,55,24,3.75,5.0,fr,18455,46,767544,1,1,Active Shallow Crust,0.0,89.98936,0.0,01/08/2350 +-3.65846,48.41895,4215,4,27,0,46,41,3.75,15.0,fr,18456,84,767545,1,1,Active Shallow Crust,0.0,89.98936,0.0,04/27/4215 +-3.65846,48.41895,8109,2,15,16,31,32,3.75,27.5,fr,18457,162,767546,1,1,Active Shallow Crust,0.0,89.98936,0.0,02/15/8109 +-3.65846,48.41895,1266,6,20,18,34,16,3.75,27.5,fr,18458,25,767552,1,1,Active Shallow Crust,0.0,89.98924,-90.0,06/20/1266 +-3.65846,48.41895,1684,12,5,1,43,24,4.15,5.0,fr,18459,33,767595,1,1,Active Shallow Crust,240.0091,57.99738,0.0,12/05/1684 +-3.65846,48.41895,6083,1,22,17,44,17,4.45,5.0,fr,18460,121,767628,1,1,Active Shallow Crust,0.0,89.9905,0.0,01/22/6083 +-3.65846,48.41895,4398,7,1,19,30,47,4.55,5.0,fr,18461,87,767640,1,1,Active Shallow Crust,0.0,89.99048,0.0,07/01/4398 +-3.65846,48.41895,8355,3,12,10,50,50,4.65,5.0,fr,18462,167,767652,1,1,Active Shallow Crust,0.0,89.98962,0.0,03/12/8355 +-3.29047,48.31741,5416,12,9,13,18,47,3.55,5.0,fr,18463,108,768000,1,3,Active Shallow Crust,0.0,89.98994,0.0,12/09/5416 +-3.29047,48.31741,1380,1,19,22,31,17,3.55,5.0,fr,18464,27,768000,1,3,Active Shallow Crust,0.0,89.98994,0.0,01/19/1380 +-3.29047,48.31741,7676,8,18,14,51,52,3.55,5.0,fr,18465,153,768000,1,3,Active Shallow Crust,0.0,89.98994,0.0,08/18/7676 +-3.29047,48.31741,8684,7,27,22,19,48,3.65,5.0,fr,18466,173,768012,1,1,Active Shallow Crust,0.0,89.99104,0.0,07/27/8684 +-3.29047,48.31741,1871,2,7,11,57,15,3.65,27.5,fr,18467,37,768014,1,1,Active Shallow Crust,0.0,89.99104,0.0,02/07/1871 +-3.29047,48.31741,7943,7,11,5,8,26,3.65,5.0,fr,18468,158,768015,1,1,Active Shallow Crust,240.001,58.0131,0.0,07/11/7943 +-3.29047,48.31741,4029,3,11,4,52,9,3.65,27.5,fr,18469,80,768017,1,1,Active Shallow Crust,240.001,58.01301,0.0,03/11/4029 +-3.29047,48.31741,6027,9,30,13,3,23,3.75,5.0,fr,18470,120,768024,1,3,Active Shallow Crust,0.0,89.98935,0.0,09/30/6027 +-3.29047,48.31741,5867,8,20,5,46,59,3.75,5.0,fr,18471,117,768024,1,3,Active Shallow Crust,0.0,89.98935,0.0,08/20/5867 +-3.29047,48.31741,2582,5,20,2,8,23,3.75,5.0,fr,18472,51,768024,1,3,Active Shallow Crust,0.0,89.98935,0.0,05/20/2582 +-3.29047,48.31741,9595,7,26,22,9,0,3.75,5.0,fr,18473,191,768027,1,1,Active Shallow Crust,240.0082,58.01757,0.0,07/26/9595 +-3.29047,48.31741,8026,3,15,5,47,31,3.75,5.0,fr,18474,160,768030,1,1,Active Shallow Crust,0.0,89.98922,-90.0,03/15/8026 +-3.29047,48.31741,4858,1,25,13,30,18,3.75,15.0,fr,18475,97,768034,1,1,Active Shallow Crust,128.8966,89.96728,0.0,01/25/4858 +-3.29047,48.31741,3346,1,23,19,35,8,4.05,5.0,fr,18476,66,768060,1,1,Active Shallow Crust,0.0,89.99057,0.0,01/23/3346 +-3.29047,48.31741,8890,11,25,17,32,4,4.05,27.5,fr,18477,177,768062,1,1,Active Shallow Crust,0.0,89.99057,0.0,11/25/8890 +-3.29047,48.31741,8333,2,17,16,22,21,4.05,27.5,fr,18478,166,768065,1,1,Active Shallow Crust,240.0061,58.00601,0.0,02/17/8333 +-3.29047,48.31741,3642,8,3,8,41,53,4.15,5.0,fr,18479,72,768081,1,1,Active Shallow Crust,128.8973,89.99328,0.0,08/03/3642 +-3.29047,48.31741,2614,1,26,7,12,55,4.45,5.0,fr,18480,52,768114,1,1,Active Shallow Crust,0.0,89.99037,-90.0,01/26/2614 +2.22954,50.25087,517,11,11,3,31,23,3.55,5.0,fr,18481,10,768960,1,1,Active Shallow Crust,0.0,89.99033,0.0,11/11/0517 +2.22954,50.25087,5037,12,26,9,24,29,3.55,5.0,fr,18482,100,768963,1,1,Active Shallow Crust,240.0128,57.99794,0.0,12/26/5037 +2.22954,50.25087,6413,5,13,16,23,11,3.65,5.0,fr,18483,128,768978,1,1,Active Shallow Crust,0.0,89.99128,-90.0,05/13/6413 +2.22954,50.25087,3853,9,28,19,56,15,3.85,5.0,fr,18484,77,768999,1,1,Active Shallow Crust,240.0111,57.99807,0.0,09/28/3853 +2.22954,50.25087,3282,12,30,4,35,51,3.95,5.0,fr,18485,65,769008,1,1,Active Shallow Crust,0.0,89.98983,0.0,12/30/3282 +2.22954,50.25087,9338,9,6,16,25,11,3.95,5.0,fr,18486,186,769011,1,1,Active Shallow Crust,240.0205,58.0048,0.0,09/06/9338 +1.25751,47.5821,2188,2,14,13,26,20,3.55,5.0,fr,18487,43,769920,1,1,Active Shallow Crust,0.0,89.9898,0.0,02/14/2188 +1.25751,47.5821,7743,7,11,22,35,10,3.65,5.0,fr,18488,154,769932,1,1,Active Shallow Crust,0.0,89.98939,0.0,07/11/7743 +1.25751,47.5821,2403,11,13,11,31,20,3.65,15.0,fr,18489,48,769933,1,1,Active Shallow Crust,0.0,89.98939,0.0,11/13/2403 +1.25751,47.5821,1775,1,17,6,26,1,3.75,5.0,fr,18490,35,769944,1,1,Active Shallow Crust,0.0,89.99055,0.0,01/17/1775 +1.25751,47.5821,2634,3,14,14,13,26,3.75,5.0,fr,18491,52,769950,1,1,Active Shallow Crust,0.0,89.99043,-90.0,03/14/2634 +1.25751,47.5821,2075,6,21,14,45,41,3.75,15.0,fr,18492,41,769951,1,1,Active Shallow Crust,0.0,89.99043,-90.0,06/21/2075 +1.25751,47.5821,2118,9,14,11,48,24,3.85,5.0,fr,18493,42,769956,1,2,Active Shallow Crust,0.0,89.99037,0.0,09/14/2118 +1.25751,47.5821,9260,10,4,0,14,10,3.85,5.0,fr,18494,185,769956,1,2,Active Shallow Crust,0.0,89.99037,0.0,10/04/9260 +1.25751,47.5821,4291,2,4,7,37,40,3.85,27.5,fr,18495,85,769958,1,1,Active Shallow Crust,0.0,89.99037,0.0,02/04/4291 +1.25751,47.5821,3492,7,14,21,33,55,4.15,15.0,fr,18496,69,769993,1,1,Active Shallow Crust,0.0,89.98977,0.0,07/14/3492 +1.25751,47.5821,728,4,14,19,26,16,4.35,5.0,fr,18497,14,770016,1,1,Active Shallow Crust,0.0,89.98985,0.0,04/14/0728 +3.95569,52.83761,2896,2,28,5,24,32,4.05,5.0,fr,18498,57,770943,1,1,Active Shallow Crust,240.0073,58.00574,0.0,02/28/2896 +3.95569,52.83761,5550,3,7,19,29,34,4.05,5.0,fr,18499,110,770949,1,1,Active Shallow Crust,128.8891,89.994,0.0,03/07/5550 +3.95569,52.83761,659,6,16,1,32,19,4.15,5.0,fr,18500,13,770955,1,1,Active Shallow Crust,240.0096,57.99781,0.0,06/16/0659 +2.93927,42.60217,8463,10,14,17,54,25,3.55,5.0,fr,18501,169,771363,1,2,Active Shallow Crust,240.0126,57.99746,0.0,10/14/8463 +2.93927,42.60217,8390,9,5,22,42,55,3.55,5.0,fr,18502,167,771363,1,2,Active Shallow Crust,240.0126,57.99746,0.0,09/05/8390 +2.93927,42.60217,3819,8,7,2,57,55,3.65,5.0,fr,18503,76,771372,1,1,Active Shallow Crust,0.0,89.99007,0.0,08/07/3819 +2.93927,42.60217,9787,10,17,19,7,47,3.65,15.0,fr,18504,195,771373,1,1,Active Shallow Crust,0.0,89.99007,0.0,10/17/9787 +2.93927,42.60217,5194,11,27,2,4,52,3.65,27.5,fr,18505,103,771380,1,1,Active Shallow Crust,0.0,89.98996,-90.0,11/27/5194 +2.93927,42.60217,5667,9,30,18,13,14,3.65,15.0,fr,18506,113,771382,1,1,Active Shallow Crust,128.9009,89.96345,0.0,09/30/5667 +2.93927,42.60217,543,4,15,5,32,18,3.85,15.0,fr,18507,10,771406,1,1,Active Shallow Crust,128.8957,89.99474,0.0,04/15/0543 +2.93927,42.60217,2528,12,25,10,48,0,3.95,5.0,fr,18508,50,771408,1,1,Active Shallow Crust,0.0,89.99063,0.0,12/25/2528 +2.93927,42.60217,3952,4,24,12,20,24,4.15,5.0,fr,18509,79,771432,1,2,Active Shallow Crust,0.0,89.9907,0.0,04/24/3952 +2.93927,42.60217,2826,9,7,5,32,33,4.15,5.0,fr,18510,56,771432,1,2,Active Shallow Crust,0.0,89.9907,0.0,09/07/2826 +2.93927,42.60217,4330,8,31,17,28,49,4.15,15.0,fr,18511,86,771433,1,3,Active Shallow Crust,0.0,89.9907,0.0,08/31/4330 +2.93927,42.60217,1814,12,10,14,8,40,4.15,15.0,fr,18512,36,771433,1,3,Active Shallow Crust,0.0,89.9907,0.0,12/10/1814 +2.93927,42.60217,8984,2,18,13,41,55,4.15,15.0,fr,18513,179,771433,1,3,Active Shallow Crust,0.0,89.9907,0.0,02/18/8984 +2.93927,42.60217,5673,8,11,13,26,31,4.25,5.0,fr,18514,113,771444,1,1,Active Shallow Crust,0.0,89.99005,0.0,08/11/5673 +2.93927,42.60217,2966,1,22,0,29,12,4.55,5.0,fr,18515,59,771480,1,1,Active Shallow Crust,0.0,89.98943,0.0,01/22/2966 +2.93927,42.60217,6201,9,14,21,8,18,4.55,5.0,fr,18516,124,771483,1,1,Active Shallow Crust,240.0081,57.99735,0.0,09/14/6201 +2.93927,42.60217,829,9,4,16,31,39,5.25,5.0,fr,18517,16,771567,1,1,Active Shallow Crust,240.0182,57.99983,0.0,09/04/0829 +2.93927,42.60217,2199,8,3,21,40,49,5.55,27.5,fr,18518,43,771602,1,1,Active Shallow Crust,0.0,89.98997,0.0,08/03/2199 +-5.12097,47.99795,775,11,29,13,22,20,3.65,5.0,fr,18519,15,771852,1,1,Active Shallow Crust,0.0,89.98797,0.0,11/29/0775 +-5.12097,47.99795,2926,5,24,12,9,17,4.05,5.0,fr,18520,58,771900,1,1,Active Shallow Crust,0.0,89.98862,0.0,05/24/2926 +-5.12097,47.99795,1732,5,14,9,56,7,4.05,15.0,fr,18521,34,771901,1,1,Active Shallow Crust,0.0,89.98862,0.0,05/14/1732 +-5.12097,47.99795,6504,3,20,5,22,18,4.15,27.5,fr,18522,130,771920,1,1,Active Shallow Crust,0.0,89.98974,-90.0,03/20/6504 +-1.09945,48.89672,2102,5,3,0,27,57,3.55,5.0,fr,18523,42,772320,1,1,Active Shallow Crust,0.0,89.99006,0.0,05/03/2102 +-1.09945,48.89672,8157,4,27,4,28,20,3.55,15.0,fr,18524,163,772321,1,1,Active Shallow Crust,0.0,89.99006,0.0,04/27/8157 +-1.09945,48.89672,7072,1,31,15,42,54,3.65,5.0,fr,18525,141,772332,1,1,Active Shallow Crust,0.0,89.98966,0.0,01/31/7072 +-1.09945,48.89672,7089,9,21,19,42,36,3.65,5.0,fr,18526,141,772341,1,1,Active Shallow Crust,128.9002,89.96357,0.0,09/21/7089 +-1.09945,48.89672,2957,10,29,15,48,34,3.75,5.0,fr,18527,59,772350,1,1,Active Shallow Crust,0.0,89.98935,-90.0,10/29/2957 +-1.09945,48.89672,7083,4,25,21,25,50,3.75,5.0,fr,18528,141,772353,1,1,Active Shallow Crust,128.8964,89.96729,0.0,04/25/7083 +-1.09945,48.89672,7376,3,26,7,52,20,3.85,5.0,fr,18529,147,772362,1,1,Active Shallow Crust,0.0,89.9905,-90.0,03/26/7376 +-1.09945,48.89672,5193,6,3,16,50,51,3.85,27.5,fr,18530,103,772367,1,1,Active Shallow Crust,128.8955,89.99355,0.0,06/03/5193 +-1.09945,48.89672,8335,1,31,17,58,2,3.95,5.0,fr,18531,166,772368,1,1,Active Shallow Crust,0.0,89.98954,0.0,01/31/8335 +-1.09945,48.89672,4050,5,25,17,32,29,4.05,15.0,fr,18532,80,772384,1,1,Active Shallow Crust,240.0063,58.00593,0.0,05/25/4050 +-1.09945,48.89672,6959,7,20,8,40,42,4.05,27.5,fr,18533,139,772391,1,1,Active Shallow Crust,128.8904,89.99348,0.0,07/20/6959 +-1.09945,48.89672,8534,2,12,5,18,30,4.15,5.0,fr,18534,170,772392,1,1,Active Shallow Crust,0.0,89.99003,0.0,02/12/8534 +-1.09945,48.89672,1296,10,10,9,22,2,4.15,15.0,fr,18535,25,772393,1,1,Active Shallow Crust,0.0,89.99003,0.0,10/10/1296 +-1.09945,48.89672,8576,9,20,8,3,29,4.35,15.0,fr,18536,171,772417,1,1,Active Shallow Crust,0.0,89.9901,0.0,09/20/8576 +-1.09945,48.89672,4447,12,18,14,30,45,4.35,15.0,fr,18537,88,772420,1,1,Active Shallow Crust,240.0089,57.99609,0.0,12/18/4447 +-1.09945,48.89672,6790,6,12,19,27,41,4.55,5.0,fr,18538,135,772440,1,1,Active Shallow Crust,0.0,89.99004,0.0,06/12/6790 +-1.09945,48.89672,9873,2,24,13,9,3,5.05,5.0,fr,18539,197,772500,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/24/9873 +-1.09945,48.89672,7528,8,4,13,54,55,5.55,15.0,fr,18540,150,772564,1,1,Active Shallow Crust,240.035,57.99995,0.0,08/04/7528 +6.93401,43.27516,6274,8,19,8,7,47,3.55,15.0,fr,18541,125,772804,1,1,Active Shallow Crust,240.0128,57.99739,0.0,08/19/6274 +6.93401,43.27516,4041,1,29,8,31,29,3.65,5.0,fr,18542,80,772812,1,1,Active Shallow Crust,0.0,89.98692,0.0,01/29/4041 +6.93401,43.27516,4642,12,19,0,33,55,3.65,15.0,fr,18543,92,772813,1,1,Active Shallow Crust,0.0,89.98692,0.0,12/19/4642 +6.93401,43.27516,609,1,17,20,17,26,3.75,5.0,fr,18544,12,772824,1,1,Active Shallow Crust,0.0,89.98833,0.0,01/17/0609 +6.93401,43.27516,8195,1,8,9,32,4,3.85,5.0,fr,18545,163,772842,1,1,Active Shallow Crust,0.0,89.98949,-90.0,01/08/8195 +6.93401,43.27516,6969,12,29,9,54,50,3.95,5.0,fr,18546,139,772848,1,1,Active Shallow Crust,0.0,89.99074,0.0,12/29/6969 +6.93401,43.27516,9125,4,11,6,17,45,4.05,5.0,fr,18547,182,772860,1,1,Active Shallow Crust,0.0,89.99174,0.0,04/11/9125 +6.93401,43.27516,1453,4,5,4,29,28,4.05,15.0,fr,18548,29,772861,1,1,Active Shallow Crust,0.0,89.99174,0.0,04/05/1453 +-2.92202,47.40075,1891,8,5,17,2,52,3.55,15.0,fr,18549,37,773281,1,2,Active Shallow Crust,0.0,89.98976,0.0,08/05/1891 +-2.92202,47.40075,9860,1,13,20,21,30,3.55,15.0,fr,18550,197,773281,1,2,Active Shallow Crust,0.0,89.98976,0.0,01/13/9860 +-2.92202,47.40075,7594,10,4,0,49,49,3.55,5.0,fr,18551,151,773283,1,1,Active Shallow Crust,240.0122,57.99797,0.0,10/04/7594 +-2.92202,47.40075,2685,3,13,16,58,8,3.65,5.0,fr,18552,53,773292,1,1,Active Shallow Crust,0.0,89.99088,0.0,03/13/2685 +-2.92202,47.40075,8632,11,16,17,15,48,3.75,5.0,fr,18553,172,773304,1,1,Active Shallow Crust,0.0,89.98916,0.0,11/16/8632 +-2.92202,47.40075,7708,1,12,19,8,46,3.85,5.0,fr,18554,154,773316,1,1,Active Shallow Crust,0.0,89.99033,0.0,01/12/7708 +-2.92202,47.40075,8443,9,14,11,32,23,3.85,15.0,fr,18555,168,773317,1,1,Active Shallow Crust,0.0,89.99033,0.0,09/14/8443 +-2.92202,47.40075,50,10,21,21,15,11,3.85,27.5,fr,18556,0,773318,1,2,Active Shallow Crust,0.0,89.99033,0.0,10/21/0050 +-2.92202,47.40075,70,12,28,8,27,17,3.85,27.5,fr,18557,1,773318,1,2,Active Shallow Crust,0.0,89.99033,0.0,12/28/0070 +-2.92202,47.40075,2630,9,21,20,38,49,3.95,5.0,fr,18558,52,773328,1,1,Active Shallow Crust,0.0,89.98923,0.0,09/21/2630 +-2.92202,47.40075,7230,7,9,8,18,56,3.95,15.0,fr,18559,144,773329,1,1,Active Shallow Crust,0.0,89.98923,0.0,07/09/7230 +-2.92202,47.40075,3435,12,27,16,35,1,4.15,5.0,fr,18560,68,773361,1,1,Active Shallow Crust,128.8974,89.99401,0.0,12/27/3435 +-2.92202,47.40075,9700,8,6,12,36,41,4.45,5.0,fr,18561,193,773388,1,1,Active Shallow Crust,0.0,89.99031,0.0,08/06/9700 +-2.92202,47.40075,1184,1,29,16,58,8,5.25,5.0,fr,18562,23,773490,1,1,Active Shallow Crust,0.0,89.98975,-90.0,01/29/1184 +0.22701,46.44579,4894,5,25,21,51,23,3.55,5.0,fr,18563,97,773760,1,3,Active Shallow Crust,0.0,89.99001,0.0,05/25/4894 +0.22701,46.44579,6936,2,8,1,32,58,3.55,5.0,fr,18564,138,773760,1,3,Active Shallow Crust,0.0,89.99001,0.0,02/08/6936 +0.22701,46.44579,3030,1,16,6,40,5,3.55,5.0,fr,18565,60,773760,1,3,Active Shallow Crust,0.0,89.99001,0.0,01/16/3030 +0.22701,46.44579,9754,3,19,15,58,4,3.55,15.0,fr,18566,195,773764,1,2,Active Shallow Crust,240.0122,57.99819,0.0,03/19/9754 +0.22701,46.44579,3235,7,2,14,14,53,3.55,15.0,fr,18567,64,773764,1,2,Active Shallow Crust,240.0122,57.99819,0.0,07/02/3235 +0.22701,46.44579,4898,1,6,22,24,32,3.65,5.0,fr,18568,97,773772,1,2,Active Shallow Crust,0.0,89.98994,0.0,01/06/4898 +0.22701,46.44579,146,11,30,12,30,40,3.65,5.0,fr,18569,2,773772,1,2,Active Shallow Crust,0.0,89.98994,0.0,11/30/0146 +0.22701,46.44579,9828,2,29,12,59,23,3.65,5.0,fr,18570,196,773778,1,1,Active Shallow Crust,0.0,89.99001,-90.0,02/29/9828 +0.22701,46.44579,3149,2,2,14,43,6,3.75,5.0,fr,18571,62,773784,1,1,Active Shallow Crust,0.0,89.99,0.0,02/02/3149 +0.22701,46.44579,7221,4,19,19,49,0,3.85,15.0,fr,18572,144,773797,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/19/7221 +0.22701,46.44579,3029,12,19,12,41,39,3.85,5.0,fr,18573,60,773802,1,1,Active Shallow Crust,0.0,89.99005,-90.0,12/19/3029 +0.22701,46.44579,6137,3,13,22,15,7,3.95,5.0,fr,18574,122,773811,1,1,Active Shallow Crust,240.0198,58.00498,0.0,03/13/6137 +0.22701,46.44579,3763,3,17,9,8,32,3.95,5.0,fr,18575,75,773814,1,1,Active Shallow Crust,0.0,89.99002,-90.0,03/17/3763 +0.22701,46.44579,8515,10,21,16,5,34,3.95,15.0,fr,18576,170,773818,1,1,Active Shallow Crust,128.9004,89.99377,0.0,10/21/8515 +0.22701,46.44579,5496,5,8,21,49,23,4.55,5.0,fr,18577,109,773880,1,1,Active Shallow Crust,0.0,89.98997,0.0,05/08/5496 +0.22701,46.44579,3554,3,9,8,29,2,5.45,5.0,fr,18578,71,773994,1,1,Active Shallow Crust,0.0,89.98999,-90.0,03/09/3554 +-2.33903,48.93818,7620,11,23,21,39,3,3.55,5.0,fr,18579,152,774243,1,1,Active Shallow Crust,240.0123,57.99784,0.0,11/23/7620 +-2.33903,48.93818,9401,7,5,22,41,27,3.55,5.0,fr,18580,188,774246,1,1,Active Shallow Crust,0.0,89.98995,-90.0,07/05/9401 +-2.33903,48.93818,3486,5,8,9,58,7,3.65,15.0,fr,18581,69,774256,1,1,Active Shallow Crust,240.001,58.01295,0.0,05/08/3486 +-2.33903,48.93818,825,4,9,14,12,23,3.65,15.0,fr,18582,16,774262,1,1,Active Shallow Crust,128.9002,89.9633,0.0,04/09/0825 +-2.33903,48.93818,8774,12,16,0,0,9,3.75,5.0,fr,18583,175,774264,1,1,Active Shallow Crust,0.0,89.98948,0.0,12/16/8774 +-2.33903,48.93818,5752,3,16,3,47,58,3.75,15.0,fr,18584,115,774265,1,1,Active Shallow Crust,0.0,89.98948,0.0,03/16/5752 +-2.33903,48.93818,5375,12,12,15,41,21,3.85,5.0,fr,18585,107,774276,1,1,Active Shallow Crust,0.0,89.99062,0.0,12/12/5375 +-2.33903,48.93818,3020,4,25,10,12,6,3.85,15.0,fr,18586,60,774277,1,1,Active Shallow Crust,0.0,89.99062,0.0,04/25/3020 +-2.33903,48.93818,5003,12,25,22,34,24,3.95,5.0,fr,18587,100,774288,1,1,Active Shallow Crust,0.0,89.98955,0.0,12/25/5003 +-2.33903,48.93818,9427,2,11,5,52,58,3.95,27.5,fr,18588,188,774290,1,1,Active Shallow Crust,0.0,89.98955,0.0,02/11/9427 +-2.33903,48.93818,2857,1,18,8,32,52,4.05,27.5,fr,18589,57,774302,1,1,Active Shallow Crust,0.0,89.99068,0.0,01/18/2857 +-2.33903,48.93818,6673,3,13,15,53,50,4.25,15.0,fr,18590,133,774325,1,1,Active Shallow Crust,0.0,89.98965,0.0,03/13/6673 +-2.33903,48.93818,6665,11,3,3,45,27,4.55,5.0,fr,18591,133,774363,1,1,Active Shallow Crust,240.0101,57.99743,0.0,11/03/6665 +-2.33903,48.93818,1082,2,18,13,30,39,4.65,5.0,fr,18592,21,774375,1,1,Active Shallow Crust,240.0117,57.99438,0.0,02/18/1082 +-2.33903,48.93818,5162,1,11,10,17,28,4.75,5.0,fr,18593,103,774384,1,1,Active Shallow Crust,0.0,89.99001,0.0,01/11/5162 +-2.33903,48.93818,7735,1,30,10,14,6,5.55,5.0,fr,18594,154,774480,1,1,Active Shallow Crust,0.0,89.99006,0.0,01/30/7735 +-2.33903,48.93818,3473,2,11,2,57,11,5.75,5.0,fr,18595,69,774513,1,1,Active Shallow Crust,128.8689,89.991,0.0,02/11/3473 +0.86308,50.45809,8289,9,5,0,37,37,3.55,5.0,fr,18596,165,774720,1,1,Active Shallow Crust,0.0,89.99037,0.0,09/05/8289 +0.86308,50.45809,8287,5,30,11,14,19,3.65,5.0,fr,18597,165,774738,1,1,Active Shallow Crust,0.0,89.98987,-90.0,05/30/8287 +0.86308,50.45809,7215,9,28,15,45,32,3.65,5.0,fr,18598,144,774741,1,1,Active Shallow Crust,128.8999,89.96348,0.0,09/28/7215 +0.86308,50.45809,1979,8,3,7,7,52,3.75,5.0,fr,18599,39,774744,1,1,Active Shallow Crust,0.0,89.9898,0.0,08/03/1979 +0.86308,50.45809,1349,11,29,0,42,37,4.05,5.0,fr,18600,26,774780,1,1,Active Shallow Crust,0.0,89.99007,0.0,11/29/1349 +5.45169,47.28842,5922,6,25,20,30,37,3.55,5.0,fr,18601,118,775203,1,1,Active Shallow Crust,240.012,57.99803,0.0,06/25/5922 +5.45169,47.28842,5978,1,2,1,13,3,3.65,5.0,fr,18602,119,775215,1,1,Active Shallow Crust,240.0004,58.01355,0.0,01/02/5978 +5.45169,47.28842,7987,10,15,11,20,19,3.65,5.0,fr,18603,159,775218,1,1,Active Shallow Crust,0.0,89.98766,-90.0,10/15/7987 +5.45169,47.28842,5800,5,5,13,6,34,3.75,27.5,fr,18604,115,775226,1,1,Active Shallow Crust,0.0,89.98914,0.0,05/05/5800 +5.45169,47.28842,1543,12,28,21,54,59,3.75,15.0,fr,18605,30,775228,1,1,Active Shallow Crust,240.0073,58.01778,0.0,12/28/1543 +5.45169,47.28842,2327,1,31,23,35,1,3.75,27.5,fr,18606,46,775232,1,1,Active Shallow Crust,0.0,89.98901,-90.0,01/31/2327 +5.45169,47.28842,4091,7,5,19,46,37,3.95,5.0,fr,18607,81,775248,1,1,Active Shallow Crust,0.0,89.99137,0.0,07/05/4091 +5.45169,47.28842,1877,10,21,16,38,18,4.05,5.0,fr,18608,37,775260,1,1,Active Shallow Crust,0.0,89.98846,0.0,10/21/1877 +5.45169,47.28842,4191,11,16,6,25,39,4.35,15.0,fr,18609,83,775297,1,1,Active Shallow Crust,0.0,89.98911,0.0,11/16/4191 +5.45169,47.28842,6000,8,17,20,35,15,4.45,5.0,fr,18610,119,775317,1,1,Active Shallow Crust,128.892,89.99393,0.0,08/17/6000 +5.45169,47.28842,1183,8,26,1,14,15,4.75,5.0,fr,18611,23,775344,1,1,Active Shallow Crust,0.0,89.98969,0.0,08/26/1183 +5.45169,47.28842,8950,7,7,21,35,1,4.85,27.5,fr,18612,178,775358,1,1,Active Shallow Crust,0.0,89.98928,0.0,07/07/8950 +5.45169,47.28842,3150,2,2,21,41,39,5.55,15.0,fr,18613,62,775441,1,1,Active Shallow Crust,0.0,89.98974,0.0,02/02/3150 +5.54434,48.06717,5372,5,28,20,59,40,3.55,5.0,fr,18614,107,776169,1,1,Active Shallow Crust,128.8956,89.99326,0.0,05/28/5372 +5.54434,48.06717,3563,4,30,12,25,51,3.65,5.0,fr,18615,71,776172,1,1,Active Shallow Crust,0.0,89.98799,0.0,04/30/3563 +5.54434,48.06717,1108,5,14,12,43,20,3.65,27.5,fr,18616,22,776174,1,1,Active Shallow Crust,0.0,89.98799,0.0,05/14/1108 +5.54434,48.06717,9829,10,18,5,32,16,3.65,5.0,fr,18617,196,776175,1,1,Active Shallow Crust,240.0008,58.01342,0.0,10/18/9829 +5.54434,48.06717,4014,9,25,11,46,20,3.75,5.0,fr,18618,80,776184,1,1,Active Shallow Crust,0.0,89.9893,0.0,09/25/4014 +5.54434,48.06717,2551,4,12,22,31,39,3.75,27.5,fr,18619,51,776186,1,1,Active Shallow Crust,0.0,89.9893,0.0,04/12/2551 +5.54434,48.06717,2787,12,17,15,15,31,3.95,5.0,fr,18620,55,776208,1,1,Active Shallow Crust,0.0,89.99149,0.0,12/17/2787 +5.54434,48.06717,2736,8,25,2,0,45,3.95,27.5,fr,18621,54,776210,1,1,Active Shallow Crust,0.0,89.99149,0.0,08/25/2736 +5.54434,48.06717,6452,8,6,11,0,7,4.65,5.0,fr,18622,129,776295,1,1,Active Shallow Crust,240.0117,57.99413,0.0,08/06/6452 +5.54434,48.06717,4756,2,5,15,44,41,4.85,15.0,fr,18623,95,776326,1,1,Active Shallow Crust,128.8918,89.98914,0.0,02/05/4756 +2.04347,50.63323,4859,6,21,8,20,11,3.55,5.0,fr,18624,97,776640,1,4,Active Shallow Crust,0.0,89.9904,0.0,06/21/4859 +2.04347,50.63323,4958,5,21,12,14,57,3.55,5.0,fr,18625,99,776640,1,4,Active Shallow Crust,0.0,89.9904,0.0,05/21/4958 +2.04347,50.63323,7653,2,22,11,27,22,3.55,5.0,fr,18626,153,776640,1,4,Active Shallow Crust,0.0,89.9904,0.0,02/22/7653 +2.04347,50.63323,7963,12,7,22,51,52,3.55,5.0,fr,18627,159,776640,1,4,Active Shallow Crust,0.0,89.9904,0.0,12/07/7963 +2.04347,50.63323,4904,10,27,14,34,47,3.65,5.0,fr,18628,98,776661,1,1,Active Shallow Crust,128.8993,89.9636,0.0,10/27/4904 +2.04347,50.63323,2599,4,25,3,5,15,3.75,27.5,fr,18629,51,776666,1,1,Active Shallow Crust,0.0,89.98984,0.0,04/25/2599 +2.04347,50.63323,744,7,18,16,6,45,3.85,5.0,fr,18630,14,776676,1,1,Active Shallow Crust,0.0,89.99094,0.0,07/18/0744 +2.04347,50.63323,71,1,20,9,27,26,4.15,27.5,fr,18631,1,776723,1,1,Active Shallow Crust,128.8972,89.99359,0.0,01/20/0071 +2.04347,50.63323,8934,9,11,15,49,6,4.35,15.0,fr,18632,178,776737,1,1,Active Shallow Crust,0.0,89.98981,0.0,09/11/8934 +7.37466,43.99363,6814,10,5,11,17,39,3.55,5.0,fr,18633,136,777120,1,1,Active Shallow Crust,0.0,89.99274,0.0,10/05/6814 +7.37466,43.99363,2453,12,6,5,55,14,3.55,27.5,fr,18634,49,777122,1,1,Active Shallow Crust,0.0,89.99274,0.0,12/06/2453 +7.37466,43.99363,5547,1,7,15,36,7,3.55,5.0,fr,18635,110,777126,1,1,Active Shallow Crust,0.0,89.99266,-90.0,01/07/5547 +7.37466,43.99363,5691,12,3,11,36,22,3.65,5.0,fr,18636,113,777135,1,2,Active Shallow Crust,240.0004,58.01276,0.0,12/03/5691 +7.37466,43.99363,8213,5,30,21,30,49,3.65,5.0,fr,18637,164,777135,1,2,Active Shallow Crust,240.0004,58.01276,0.0,05/30/8213 +7.37466,43.99363,1025,7,3,5,6,58,3.65,5.0,fr,18638,20,777138,1,1,Active Shallow Crust,0.0,89.98692,-90.0,07/03/1025 +7.37466,43.99363,9420,8,25,14,52,32,3.75,5.0,fr,18639,188,777144,1,1,Active Shallow Crust,0.0,89.98847,0.0,08/25/9420 +7.37466,43.99363,644,2,25,3,37,29,3.75,15.0,fr,18640,12,777145,1,1,Active Shallow Crust,0.0,89.98847,0.0,02/25/0644 +7.37466,43.99363,8770,4,30,4,40,54,3.85,5.0,fr,18641,175,777162,1,1,Active Shallow Crust,0.0,89.98961,-90.0,04/30/8770 +7.37466,43.99363,8640,2,2,16,40,52,3.95,5.0,fr,18642,172,777168,1,3,Active Shallow Crust,0.0,89.99084,0.0,02/02/8640 +7.37466,43.99363,2184,4,20,3,46,22,3.95,5.0,fr,18643,43,777168,1,3,Active Shallow Crust,0.0,89.99084,0.0,04/20/2184 +7.37466,43.99363,5609,6,4,10,27,47,3.95,5.0,fr,18644,112,777168,1,3,Active Shallow Crust,0.0,89.99084,0.0,06/04/5609 +7.37466,43.99363,4640,6,5,18,40,57,3.95,15.0,fr,18645,92,777169,1,2,Active Shallow Crust,0.0,89.99084,0.0,06/05/4640 +7.37466,43.99363,7215,12,2,13,37,40,3.95,15.0,fr,18646,144,777169,1,2,Active Shallow Crust,0.0,89.99084,0.0,12/02/7215 +7.37466,43.99363,7844,2,16,23,58,48,3.95,5.0,fr,18647,156,777171,1,1,Active Shallow Crust,240.0202,58.00495,0.0,02/16/7844 +7.37466,43.99363,2232,11,12,5,56,40,4.05,15.0,fr,18648,44,777181,1,1,Active Shallow Crust,0.0,89.99184,0.0,11/12/2232 +7.37466,43.99363,2865,4,15,9,12,53,4.05,5.0,fr,18649,57,777189,1,1,Active Shallow Crust,128.8902,89.99388,0.0,04/15/2865 +7.37466,43.99363,6035,4,27,22,11,53,4.15,5.0,fr,18650,120,777192,1,2,Active Shallow Crust,0.0,89.98909,0.0,04/27/6035 +7.37466,43.99363,1367,1,27,9,25,51,4.15,5.0,fr,18651,27,777192,1,2,Active Shallow Crust,0.0,89.98909,0.0,01/27/1367 +7.37466,43.99363,2359,2,4,17,14,42,4.25,5.0,fr,18652,47,777207,1,1,Active Shallow Crust,240.0068,57.99408,0.0,02/04/2359 +7.37466,43.99363,8380,3,27,16,18,23,4.35,5.0,fr,18653,167,777216,1,1,Active Shallow Crust,0.0,89.99133,0.0,03/27/8380 +7.37466,43.99363,4305,11,30,1,53,2,4.35,5.0,fr,18654,86,777219,1,1,Active Shallow Crust,240.0078,57.99597,0.0,11/30/4305 +7.37466,43.99363,4949,5,3,21,42,13,4.55,5.0,fr,18655,98,777243,1,1,Active Shallow Crust,240.0086,57.99757,0.0,05/03/4949 +7.37466,43.99363,1105,11,14,12,55,1,4.65,15.0,fr,18656,22,777253,1,1,Active Shallow Crust,0.0,89.98978,0.0,11/14/1105 +7.37466,43.99363,9529,8,13,11,45,5,4.75,5.0,fr,18657,190,777270,1,1,Active Shallow Crust,0.0,89.99078,-90.0,08/13/9529 +7.37466,43.99363,5749,6,27,4,33,56,5.55,5.0,fr,18658,114,777363,1,1,Active Shallow Crust,240.0268,58.00217,0.0,06/27/5749 +3.02902,48.84786,9557,3,6,7,30,31,3.55,5.0,fr,18659,191,777600,1,1,Active Shallow Crust,0.0,89.99004,0.0,03/06/9557 +3.02902,48.84786,8298,6,4,3,49,18,3.55,15.0,fr,18660,165,777607,1,1,Active Shallow Crust,0.0,89.98993,-90.0,06/04/8298 +3.02902,48.84786,5081,7,1,2,44,9,3.55,5.0,fr,18661,101,777609,1,2,Active Shallow Crust,128.8967,89.99336,0.0,07/01/5081 +3.02902,48.84786,1477,6,3,3,55,45,3.55,5.0,fr,18662,29,777609,1,2,Active Shallow Crust,128.8967,89.99336,0.0,06/03/1477 +3.02902,48.84786,2206,10,24,8,16,33,4.05,15.0,fr,18663,44,777664,1,1,Active Shallow Crust,240.0066,58.00557,0.0,10/24/2206 +3.02902,48.84786,3685,6,12,7,56,25,4.55,15.0,fr,18664,73,777724,1,1,Active Shallow Crust,240.0098,57.9976,0.0,06/12/3685 +-0.93909,46.8954,9601,1,3,10,34,24,3.55,5.0,fr,18665,192,778080,1,3,Active Shallow Crust,0.0,89.98966,0.0,01/03/9601 +-0.93909,46.8954,2207,3,23,14,16,3,3.55,5.0,fr,18666,44,778080,1,3,Active Shallow Crust,0.0,89.98966,0.0,03/23/2207 +-0.93909,46.8954,2658,7,18,23,32,58,3.55,5.0,fr,18667,53,778080,1,3,Active Shallow Crust,0.0,89.98966,0.0,07/18/2658 +-0.93909,46.8954,9691,4,14,10,54,18,3.65,15.0,fr,18668,193,778093,1,3,Active Shallow Crust,0.0,89.99002,0.0,04/14/9691 +-0.93909,46.8954,8710,12,5,15,33,1,3.65,15.0,fr,18669,174,778093,1,3,Active Shallow Crust,0.0,89.99002,0.0,12/05/8710 +-0.93909,46.8954,7019,4,23,5,17,46,3.65,15.0,fr,18670,140,778093,1,3,Active Shallow Crust,0.0,89.99002,0.0,04/23/7019 +-0.93909,46.8954,3235,7,1,14,33,49,3.65,27.5,fr,18671,64,778094,1,1,Active Shallow Crust,0.0,89.99002,0.0,07/01/3235 +-0.93909,46.8954,1910,9,14,20,33,29,3.75,5.0,fr,18672,38,778104,1,1,Active Shallow Crust,0.0,89.98974,0.0,09/14/1910 +-0.93909,46.8954,7869,11,27,13,24,53,3.75,15.0,fr,18673,157,778105,1,1,Active Shallow Crust,0.0,89.98974,0.0,11/27/7869 +-0.93909,46.8954,9109,2,12,15,5,15,3.75,27.5,fr,18674,182,778106,1,1,Active Shallow Crust,0.0,89.98974,0.0,02/12/9109 +-0.93909,46.8954,5921,9,1,23,53,38,3.75,15.0,fr,18675,118,778108,1,1,Active Shallow Crust,240.0085,58.01754,0.0,09/01/5921 +-0.93909,46.8954,2366,3,27,13,41,8,3.75,5.0,fr,18676,47,778113,1,1,Active Shallow Crust,128.8964,89.96738,0.0,03/27/2366 +-0.93909,46.8954,7104,6,24,3,49,14,3.85,27.5,fr,18677,142,778118,1,1,Active Shallow Crust,0.0,89.99024,0.0,06/24/7104 +-0.93909,46.8954,2021,4,2,9,3,13,3.85,5.0,fr,18678,40,778119,1,2,Active Shallow Crust,240.0109,57.99783,0.0,04/02/2021 +-0.93909,46.8954,6854,1,12,14,37,38,3.85,5.0,fr,18679,137,778119,1,2,Active Shallow Crust,240.0109,57.99783,0.0,01/12/6854 +-0.93909,46.8954,6317,9,13,21,53,50,3.95,5.0,fr,18680,126,778128,1,1,Active Shallow Crust,0.0,89.99022,0.0,09/13/6317 +-0.93909,46.8954,6812,11,27,8,21,54,3.95,5.0,fr,18681,136,778131,1,1,Active Shallow Crust,240.0199,58.00499,0.0,11/27/6812 +-0.93909,46.8954,2127,6,20,13,19,31,3.95,5.0,fr,18682,42,778134,1,1,Active Shallow Crust,0.0,89.9901,-90.0,06/20/2127 +-0.93909,46.8954,4537,8,15,18,24,23,4.05,5.0,fr,18683,90,778140,1,1,Active Shallow Crust,0.0,89.98983,0.0,08/15/4537 +-0.93909,46.8954,4274,2,16,12,9,40,4.05,15.0,fr,18684,85,778141,1,1,Active Shallow Crust,0.0,89.98983,0.0,02/16/4274 +-0.93909,46.8954,8951,7,19,23,54,8,4.05,27.5,fr,18685,179,778145,1,1,Active Shallow Crust,240.006,58.00583,0.0,07/19/8951 +-0.93909,46.8954,145,6,5,18,16,23,4.15,5.0,fr,18686,2,778158,1,1,Active Shallow Crust,0.0,89.98995,-90.0,06/05/0145 +-0.93909,46.8954,554,2,2,22,15,28,4.35,5.0,fr,18687,11,778176,1,3,Active Shallow Crust,0.0,89.99005,0.0,02/02/0554 +-0.93909,46.8954,5724,2,6,4,55,43,4.35,5.0,fr,18688,114,778176,1,3,Active Shallow Crust,0.0,89.99005,0.0,02/06/5724 +-0.93909,46.8954,8193,4,8,6,34,56,4.35,5.0,fr,18689,163,778176,1,3,Active Shallow Crust,0.0,89.99005,0.0,04/08/8193 +-0.93909,46.8954,7917,4,21,19,0,52,4.35,5.0,fr,18690,158,778185,1,1,Active Shallow Crust,128.8978,89.98273,0.0,04/21/7917 +-0.93909,46.8954,41,3,7,2,51,34,4.55,5.0,fr,18691,0,778206,1,1,Active Shallow Crust,0.0,89.99008,-90.0,03/07/0041 +-0.93909,46.8954,8668,8,21,6,19,26,4.95,5.0,fr,18692,173,778248,1,1,Active Shallow Crust,0.0,89.99003,0.0,08/21/8668 +-0.00336,50.8093,3356,7,13,13,28,34,3.65,5.0,fr,18693,67,778572,1,1,Active Shallow Crust,360.0,89.99,0.0,07/13/3356 +-0.00336,50.8093,6968,2,6,21,14,39,3.75,15.0,fr,18694,139,778591,1,1,Active Shallow Crust,0.0,89.99,-90.0,02/06/6968 +-0.00336,50.8093,26,3,9,4,17,2,3.95,5.0,fr,18695,0,778608,1,1,Active Shallow Crust,360.0,89.99,0.0,03/09/0026 +-0.00336,50.8093,1300,10,12,15,27,39,4.05,27.5,fr,18696,25,778625,1,1,Active Shallow Crust,240.0067,58.00594,0.0,10/12/1300 +-0.00336,50.8093,6147,9,27,19,15,15,4.25,5.0,fr,18697,122,778644,1,1,Active Shallow Crust,360.0,89.99,0.0,09/27/6147 +-1.05377,42.37485,6152,5,30,21,15,59,3.65,5.0,fr,18698,123,779052,1,1,Active Shallow Crust,0.0,89.99004,0.0,05/30/6152 +-1.05377,42.37485,16,2,10,0,59,2,3.75,5.0,fr,18699,0,779070,1,1,Active Shallow Crust,0.0,89.98952,-90.0,02/10/0016 +-1.05377,42.37485,4493,3,11,14,56,26,3.85,27.5,fr,18700,89,779078,1,1,Active Shallow Crust,0.0,89.98945,0.0,03/11/4493 +-1.05377,42.37485,535,8,1,11,10,15,3.95,5.0,fr,18701,10,779091,1,1,Active Shallow Crust,240.0193,58.00484,0.0,08/01/0535 +-1.05377,42.37485,2430,4,10,23,14,7,4.15,5.0,fr,18702,48,779115,1,1,Active Shallow Crust,240.0078,57.99726,0.0,04/10/2430 +-1.05377,42.37485,4630,2,25,21,49,3,4.75,15.0,fr,18703,92,779185,1,1,Active Shallow Crust,0.0,89.99017,0.0,02/25/4630 +1.59964,48.52604,6396,2,16,13,20,11,3.55,5.0,fr,18704,127,779520,1,1,Active Shallow Crust,0.0,89.98998,0.0,02/16/6396 +1.59964,48.52604,5084,6,19,15,47,41,3.75,5.0,fr,18705,101,779544,1,1,Active Shallow Crust,0.0,89.98939,0.0,06/19/5084 +1.59964,48.52604,1215,8,10,15,45,36,3.85,5.0,fr,18706,24,779556,1,1,Active Shallow Crust,0.0,89.99055,0.0,08/10/1215 +1.59964,48.52604,7656,7,15,20,30,57,3.95,5.0,fr,18707,153,779568,1,1,Active Shallow Crust,0.0,89.99052,0.0,07/15/7656 +1.59964,48.52604,5479,4,14,23,36,17,4.15,5.0,fr,18708,109,779592,1,1,Active Shallow Crust,0.0,89.98996,0.0,04/14/5479 +1.59964,48.52604,5455,2,3,3,58,52,4.25,15.0,fr,18709,109,779614,1,1,Active Shallow Crust,128.8939,89.9809,0.0,02/03/5455 +-6.22912,49.24578,722,9,4,1,31,20,3.55,5.0,fr,18710,14,780003,1,1,Active Shallow Crust,240.0113,57.99852,0.0,09/04/0722 +-0.07886,43.98248,834,4,8,20,13,5,3.75,5.0,fr,18711,16,780504,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/08/0834 +-0.07886,43.98248,1605,9,1,6,37,41,3.85,5.0,fr,18712,32,780516,1,1,Active Shallow Crust,0.0,89.98997,0.0,09/01/1605 +-0.07886,43.98248,4976,5,20,4,18,6,3.95,15.0,fr,18713,99,780538,1,1,Active Shallow Crust,128.9007,89.99371,0.0,05/20/4976 +-3.58128,48.15464,5228,12,15,6,22,53,3.55,5.0,fr,18714,104,780960,1,1,Active Shallow Crust,0.0,89.98991,0.0,12/15/5228 +-3.58128,48.15464,6456,12,7,1,47,12,3.55,27.5,fr,18715,129,780965,1,1,Active Shallow Crust,240.0125,57.99855,0.0,12/07/6456 +-3.58128,48.15464,4449,11,12,11,36,32,3.55,5.0,fr,18716,88,780969,1,1,Active Shallow Crust,128.8956,89.99327,0.0,11/12/4449 +-3.58128,48.15464,6059,11,3,0,13,8,3.65,5.0,fr,18717,121,780972,1,2,Active Shallow Crust,0.0,89.991,0.0,11/03/6059 +-3.58128,48.15464,3395,7,23,2,5,39,3.65,5.0,fr,18718,67,780972,1,2,Active Shallow Crust,0.0,89.991,0.0,07/23/3395 +-3.58128,48.15464,1409,12,27,0,46,57,3.65,15.0,fr,18719,28,780973,1,1,Active Shallow Crust,0.0,89.991,0.0,12/27/1409 +-3.58128,48.15464,8791,5,5,2,58,45,3.75,5.0,fr,18720,175,780984,1,1,Active Shallow Crust,0.0,89.98931,0.0,05/05/8791 +-3.58128,48.15464,8752,2,29,15,11,33,3.85,5.0,fr,18721,175,780996,1,1,Active Shallow Crust,0.0,89.99048,0.0,02/29/8752 +-3.58128,48.15464,3814,6,26,18,31,12,4.05,5.0,fr,18722,76,781020,1,1,Active Shallow Crust,0.0,89.99054,0.0,06/26/3814 +-3.58128,48.15464,7437,7,27,7,5,22,4.05,5.0,fr,18723,148,781023,1,1,Active Shallow Crust,240.0062,58.00597,0.0,07/27/7437 +-3.58128,48.15464,9676,11,25,20,38,11,4.15,5.0,fr,18724,193,781032,1,1,Active Shallow Crust,0.0,89.98988,0.0,11/25/9676 +-3.58128,48.15464,1011,6,8,18,6,42,4.15,15.0,fr,18725,20,781033,1,1,Active Shallow Crust,0.0,89.98988,0.0,06/08/1011 +-3.58128,48.15464,8721,3,11,4,19,55,4.15,5.0,fr,18726,174,781038,1,1,Active Shallow Crust,0.0,89.98977,-90.0,03/11/8721 +-3.58128,48.15464,1238,10,19,23,48,42,4.25,15.0,fr,18727,24,781054,1,1,Active Shallow Crust,128.8944,89.98076,0.0,10/19/1238 +-3.58128,48.15464,8058,8,30,0,16,35,4.35,5.0,fr,18728,161,781056,1,1,Active Shallow Crust,0.0,89.99062,0.0,08/30/8058 +1.4409,45.05444,9792,3,12,22,32,19,3.65,5.0,fr,18729,195,781452,1,2,Active Shallow Crust,0.0,89.99048,0.0,03/12/9792 +1.4409,45.05444,6750,5,20,12,50,43,3.65,5.0,fr,18730,134,781452,1,2,Active Shallow Crust,0.0,89.99048,0.0,05/20/6750 +1.4409,45.05444,9600,9,7,4,44,0,3.65,15.0,fr,18731,191,781453,1,1,Active Shallow Crust,0.0,89.99048,0.0,09/07/9600 +1.4409,45.05444,2145,11,29,19,33,17,3.85,15.0,fr,18732,42,781486,1,1,Active Shallow Crust,128.8959,89.9937,0.0,11/29/2145 +1.4409,45.05444,9532,5,14,18,46,50,5.15,15.0,fr,18733,190,781642,1,1,Active Shallow Crust,128.8845,89.99099,0.0,05/14/9532 +-2.2066,47.19431,7479,7,2,6,43,44,3.55,15.0,fr,18734,149,781921,1,1,Active Shallow Crust,0.0,89.98972,0.0,07/02/7479 +-2.2066,47.19431,9609,11,26,12,12,46,3.55,5.0,fr,18735,192,781926,1,1,Active Shallow Crust,0.0,89.9896,-90.0,11/26/9609 +-2.2066,47.19431,6638,7,27,13,36,51,3.55,15.0,fr,18736,132,781927,1,1,Active Shallow Crust,0.0,89.9896,-90.0,07/27/6638 +-2.2066,47.19431,85,5,22,17,52,17,3.65,5.0,fr,18737,1,781932,1,1,Active Shallow Crust,0.0,89.99084,0.0,05/22/0085 +-2.2066,47.19431,6711,2,25,13,36,2,3.65,15.0,fr,18738,134,781933,1,1,Active Shallow Crust,0.0,89.99084,0.0,02/25/6711 +-2.2066,47.19431,2401,5,12,12,2,34,3.65,15.0,fr,18739,48,781942,1,1,Active Shallow Crust,128.9007,89.96354,0.0,05/12/2401 +-2.2066,47.19431,2117,7,9,7,3,25,3.75,15.0,fr,18740,42,781945,1,1,Active Shallow Crust,0.0,89.98911,0.0,07/09/2117 +-2.2066,47.19431,7617,7,22,19,12,40,3.85,5.0,fr,18741,152,781956,1,1,Active Shallow Crust,0.0,89.9903,0.0,07/22/7617 +-2.2066,47.19431,1395,4,12,17,9,35,3.85,5.0,fr,18742,27,781959,1,2,Active Shallow Crust,240.0107,57.99767,0.0,04/12/1395 +-2.2066,47.19431,1673,1,6,13,20,28,3.85,5.0,fr,18743,33,781959,1,2,Active Shallow Crust,240.0107,57.99767,0.0,01/06/1673 +-2.2066,47.19431,5305,6,6,1,14,34,3.95,5.0,fr,18744,106,781968,1,2,Active Shallow Crust,0.0,89.98919,0.0,06/06/5305 +-2.2066,47.19431,7588,3,27,10,18,53,3.95,5.0,fr,18745,151,781968,1,2,Active Shallow Crust,0.0,89.98919,0.0,03/27/7588 +-2.2066,47.19431,9631,11,26,14,21,52,3.95,15.0,fr,18746,192,781969,1,1,Active Shallow Crust,0.0,89.98919,0.0,11/26/9631 +-2.2066,47.19431,8290,5,22,9,7,46,4.05,5.0,fr,18747,165,781980,1,2,Active Shallow Crust,0.0,89.99036,0.0,05/22/8290 +-2.2066,47.19431,5640,4,19,16,53,9,4.05,5.0,fr,18748,112,781980,1,2,Active Shallow Crust,0.0,89.99036,0.0,04/19/5640 +-2.2066,47.19431,2889,2,20,23,54,53,4.25,5.0,fr,18749,57,782004,1,2,Active Shallow Crust,0.0,89.98929,0.0,02/20/2889 +-2.2066,47.19431,7602,12,6,10,45,29,4.25,5.0,fr,18750,152,782004,1,2,Active Shallow Crust,0.0,89.98929,0.0,12/06/7602 +-2.2066,47.19431,2898,7,26,7,2,6,4.35,27.5,fr,18751,57,782018,1,1,Active Shallow Crust,0.0,89.99045,0.0,07/26/2898 +-2.2066,47.19431,2352,5,17,21,17,13,4.85,27.5,fr,18752,47,782078,1,1,Active Shallow Crust,0.0,89.99003,0.0,05/17/2352 +-2.2066,47.19431,1413,7,17,1,1,28,5.35,15.0,fr,18753,28,782137,1,1,Active Shallow Crust,0.0,89.99007,0.0,07/17/1413 +-4.65474,47.22453,5633,9,29,2,32,32,3.55,15.0,fr,18754,112,782401,1,1,Active Shallow Crust,0.0,89.99315,0.0,09/29/5633 +-4.65474,47.22453,8252,4,23,6,38,47,3.95,15.0,fr,18755,165,782452,1,1,Active Shallow Crust,240.0204,58.00452,0.0,04/23/8252 +-4.65474,47.22453,1712,5,17,13,0,27,5.35,5.0,fr,18756,34,782625,1,1,Active Shallow Crust,128.8827,89.98796,0.0,05/17/1712 +4.23408,47.24822,6636,9,21,11,0,52,3.65,5.0,fr,18757,132,782892,1,3,Active Shallow Crust,0.0,89.9878,0.0,09/21/6636 +4.23408,47.24822,9489,10,10,4,59,13,3.65,5.0,fr,18758,189,782892,1,3,Active Shallow Crust,0.0,89.9878,0.0,10/10/9489 +4.23408,47.24822,3708,11,11,4,16,27,3.65,5.0,fr,18759,74,782892,1,3,Active Shallow Crust,0.0,89.9878,0.0,11/11/3708 +4.23408,47.24822,6477,4,8,6,12,49,3.75,5.0,fr,18760,129,782904,1,1,Active Shallow Crust,0.0,89.98913,0.0,04/08/6477 +4.23408,47.24822,6866,5,22,0,32,23,3.85,5.0,fr,18761,137,782916,1,1,Active Shallow Crust,0.0,89.99031,0.0,05/22/6866 +4.23408,47.24822,4348,5,14,16,26,52,3.85,27.5,fr,18762,86,782918,1,1,Active Shallow Crust,0.0,89.99031,0.0,05/14/4348 +4.23408,47.24822,5989,8,31,18,57,58,4.15,5.0,fr,18763,119,782952,1,1,Active Shallow Crust,0.0,89.98971,0.0,08/31/5989 +5.3311,49.92461,6527,4,19,7,30,13,4.35,15.0,fr,18764,130,783457,1,1,Active Shallow Crust,0.0,89.98966,0.0,04/19/6527 +7.41371,45.32154,5398,4,30,11,31,32,3.55,5.0,fr,18765,107,783840,1,3,Active Shallow Crust,0.0,89.99291,0.0,04/30/5398 +7.41371,45.32154,8246,7,18,2,5,42,3.55,5.0,fr,18766,164,783840,1,3,Active Shallow Crust,0.0,89.99291,0.0,07/18/8246 +7.41371,45.32154,7746,11,30,11,50,42,3.55,5.0,fr,18767,154,783840,1,3,Active Shallow Crust,0.0,89.99291,0.0,11/30/7746 +7.41371,45.32154,5929,5,15,7,49,42,3.55,15.0,fr,18768,118,783841,1,1,Active Shallow Crust,0.0,89.99291,0.0,05/15/5929 +7.41371,45.32154,5885,6,30,3,2,37,3.55,5.0,fr,18769,117,783843,1,1,Active Shallow Crust,240.0121,57.99849,0.0,06/30/5885 +7.41371,45.32154,5588,6,18,6,28,44,3.55,5.0,fr,18770,111,783849,1,1,Active Shallow Crust,128.895,89.99645,0.0,06/18/5588 +7.41371,45.32154,2134,12,20,13,55,3,3.65,5.0,fr,18771,42,783852,1,1,Active Shallow Crust,0.0,89.98736,0.0,12/20/2134 +7.41371,45.32154,2362,6,25,1,10,4,3.65,27.5,fr,18772,47,783854,1,1,Active Shallow Crust,0.0,89.98736,0.0,06/25/2362 +7.41371,45.32154,1735,10,25,4,25,5,3.65,27.5,fr,18773,34,783863,1,1,Active Shallow Crust,128.901,89.9635,0.0,10/25/1735 +7.41371,45.32154,2313,5,17,11,35,13,3.75,5.0,fr,18774,46,783864,1,1,Active Shallow Crust,0.0,89.98874,0.0,05/17/2313 +7.41371,45.32154,3407,5,5,4,6,40,3.75,5.0,fr,18775,68,783867,1,1,Active Shallow Crust,240.008,58.01748,0.0,05/05/3407 +7.41371,45.32154,5193,9,25,20,49,44,3.75,15.0,fr,18776,103,783874,1,1,Active Shallow Crust,128.8972,89.96747,0.0,09/25/5193 +7.41371,45.32154,1167,8,30,12,57,51,3.85,5.0,fr,18777,23,783876,1,3,Active Shallow Crust,0.0,89.98996,0.0,08/30/1167 +7.41371,45.32154,773,4,30,1,33,36,3.85,5.0,fr,18778,15,783876,1,3,Active Shallow Crust,0.0,89.98996,0.0,04/30/0773 +7.41371,45.32154,8483,7,4,9,6,32,3.85,5.0,fr,18779,169,783876,1,3,Active Shallow Crust,0.0,89.98996,0.0,07/04/8483 +7.41371,45.32154,2709,8,11,11,1,13,3.85,15.0,fr,18780,54,783877,1,1,Active Shallow Crust,0.0,89.98996,0.0,08/11/2709 +7.41371,45.32154,2177,12,16,15,34,37,3.85,27.5,fr,18781,43,783878,1,1,Active Shallow Crust,0.0,89.98996,0.0,12/16/2177 +7.41371,45.32154,3599,9,7,16,16,7,3.95,5.0,fr,18782,71,783888,1,1,Active Shallow Crust,0.0,89.99105,0.0,09/07/3599 +7.41371,45.32154,6780,5,27,20,35,0,3.95,15.0,fr,18783,135,783889,1,1,Active Shallow Crust,0.0,89.99105,0.0,05/27/6780 +7.41371,45.32154,1285,3,16,14,40,21,3.95,27.5,fr,18784,25,783890,1,1,Active Shallow Crust,0.0,89.99105,0.0,03/16/1285 +7.41371,45.32154,9431,4,6,0,26,29,4.05,27.5,fr,18785,188,783911,1,1,Active Shallow Crust,128.8906,89.99402,0.0,04/06/9431 +7.41371,45.32154,5018,10,29,2,43,21,4.15,15.0,fr,18786,100,783916,1,1,Active Shallow Crust,240.008,57.99787,0.0,10/29/5018 +7.41371,45.32154,76,6,20,11,25,42,4.25,5.0,fr,18787,1,783930,1,1,Active Shallow Crust,0.0,89.99039,-90.0,06/20/0076 +7.41371,45.32154,2818,10,10,21,5,49,4.35,5.0,fr,18788,56,783939,1,1,Active Shallow Crust,240.0081,57.99631,0.0,10/10/2818 +7.41371,45.32154,2129,11,30,9,7,41,4.35,15.0,fr,18789,42,783940,1,1,Active Shallow Crust,240.0081,57.99631,0.0,11/30/2129 +7.41371,45.32154,4594,5,11,8,15,27,4.55,5.0,fr,18790,91,783960,1,1,Active Shallow Crust,0.0,89.99103,0.0,05/11/4594 +7.41371,45.32154,6069,9,15,3,6,5,4.75,15.0,fr,18791,121,783985,1,1,Active Shallow Crust,0.0,89.98931,0.0,09/15/6069 +2.02332,45.76342,4568,11,12,1,7,31,3.55,5.0,fr,18792,91,784800,1,2,Active Shallow Crust,0.0,89.98945,0.0,11/12/4568 +2.02332,45.76342,9225,11,23,20,58,24,3.55,5.0,fr,18793,184,784800,1,2,Active Shallow Crust,0.0,89.98945,0.0,11/23/9225 +2.02332,45.76342,8610,3,16,0,0,12,3.55,15.0,fr,18794,172,784801,1,1,Active Shallow Crust,0.0,89.98945,0.0,03/16/8610 +2.02332,45.76342,1349,2,23,9,16,44,3.65,5.0,fr,18795,26,784812,1,1,Active Shallow Crust,0.0,89.99059,0.0,02/23/1349 +2.02332,45.76342,9394,6,18,12,27,9,3.65,15.0,fr,18796,187,784813,1,1,Active Shallow Crust,0.0,89.99059,0.0,06/18/9394 +2.02332,45.76342,1864,7,7,6,39,16,3.75,5.0,fr,18797,37,784824,1,1,Active Shallow Crust,0.0,89.98882,0.0,07/07/1864 +2.02332,45.76342,5167,5,29,17,53,13,3.85,5.0,fr,18798,103,784839,1,1,Active Shallow Crust,240.0111,57.99769,0.0,05/29/5167 +2.02332,45.76342,7150,1,14,14,9,15,4.15,5.0,fr,18799,142,784872,1,2,Active Shallow Crust,0.0,89.98943,0.0,01/14/7150 +2.02332,45.76342,8028,3,9,7,21,48,4.15,5.0,fr,18800,160,784872,1,2,Active Shallow Crust,0.0,89.98943,0.0,03/09/8028 +2.02332,45.76342,6058,3,22,17,39,27,4.95,5.0,fr,18801,121,784974,1,1,Active Shallow Crust,0.0,89.99006,-90.0,03/22/6058 +2.023333,45.76342,1749,12,28,17,31,12,6.65,10.68981,fr,18802,34,785172,1,1,Active Shallow Crust,0.0,89.99002,0.0,12/28/1749 +6.91213,49.50072,520,4,6,12,27,26,3.55,15.0,fr,18803,10,785761,1,1,Active Shallow Crust,0.0,89.9869,0.0,04/06/0520 +6.91213,49.50072,7636,10,11,15,51,16,3.65,5.0,fr,18804,152,785772,1,1,Active Shallow Crust,0.0,89.98833,0.0,10/11/7636 +6.91213,49.50072,9329,6,13,9,32,51,3.75,15.0,fr,18805,186,785785,1,1,Active Shallow Crust,0.0,89.98959,0.0,06/13/9329 +6.91213,49.50072,2883,5,22,11,38,45,3.75,5.0,fr,18806,57,785787,1,2,Active Shallow Crust,240.009,58.01714,0.0,05/22/2883 +6.91213,49.50072,728,1,28,7,17,9,3.75,5.0,fr,18807,14,785787,1,2,Active Shallow Crust,240.009,58.01714,0.0,01/28/0728 +6.91213,49.50072,7787,6,29,22,22,45,3.75,27.5,fr,18808,155,785789,1,1,Active Shallow Crust,240.009,58.01714,0.0,06/29/7787 +6.91213,49.50072,9266,9,18,0,39,34,4.25,5.0,fr,18809,185,785850,1,1,Active Shallow Crust,0.0,89.99112,-90.0,09/18/9266 +3.33066,49.01464,5205,11,12,8,28,51,3.55,15.0,fr,18810,104,786247,1,1,Active Shallow Crust,0.0,89.98997,-90.0,11/12/5205 +2.71988,43.23415,7714,1,6,19,21,37,3.55,5.0,fr,18811,154,786720,1,1,Active Shallow Crust,0.0,89.98898,0.0,01/06/7714 +2.71988,43.23415,8617,8,22,5,45,9,3.75,5.0,fr,18812,172,786744,1,1,Active Shallow Crust,0.0,89.99125,0.0,08/22/8617 +2.71988,43.23415,1054,8,9,17,41,45,3.85,5.0,fr,18813,21,786756,1,1,Active Shallow Crust,0.0,89.9896,0.0,08/09/1054 +2.71988,43.23415,7528,3,18,4,49,41,3.85,15.0,fr,18814,150,786757,1,1,Active Shallow Crust,0.0,89.9896,0.0,03/18/7528 +2.71988,43.23415,2514,9,25,16,54,58,3.85,27.5,fr,18815,50,786758,1,1,Active Shallow Crust,0.0,89.9896,0.0,09/25/2514 +2.71988,43.23415,5855,11,21,11,13,32,3.95,5.0,fr,18816,117,786768,1,1,Active Shallow Crust,0.0,89.99073,0.0,11/21/5855 +2.71988,43.23415,8401,11,15,4,56,36,4.05,5.0,fr,18817,168,786780,1,1,Active Shallow Crust,0.0,89.98967,0.0,11/15/8401 +2.71988,43.23415,3947,8,9,11,41,25,4.15,5.0,fr,18818,78,786792,1,1,Active Shallow Crust,0.0,89.99079,0.0,08/09/3947 +1.70785,49.05686,9750,3,10,23,16,48,3.55,5.0,fr,18819,194,787200,1,1,Active Shallow Crust,0.0,89.99009,0.0,03/10/9750 +1.70785,49.05686,9087,10,26,4,5,55,3.55,27.5,fr,18820,181,787202,1,1,Active Shallow Crust,0.0,89.99009,0.0,10/26/9087 +1.70785,49.05686,374,5,2,6,38,45,3.55,5.0,fr,18821,7,787209,1,1,Active Shallow Crust,128.896,89.99422,0.0,05/02/0374 +1.70785,49.05686,2877,3,14,11,51,52,3.65,5.0,fr,18822,57,787212,1,1,Active Shallow Crust,0.0,89.98969,0.0,03/14/2877 +1.70785,49.05686,1327,5,21,23,54,25,3.65,15.0,fr,18823,26,787213,1,1,Active Shallow Crust,0.0,89.98969,0.0,05/21/1327 +1.70785,49.05686,2030,9,11,0,50,31,3.75,5.0,fr,18824,40,787224,1,1,Active Shallow Crust,0.0,89.9895,0.0,09/11/2030 +1.70785,49.05686,7106,12,13,23,41,39,4.05,5.0,fr,18825,142,787263,1,1,Active Shallow Crust,240.0065,58.00592,0.0,12/13/7106 +1.70785,49.05686,9040,4,2,10,13,21,5.15,5.0,fr,18826,180,787392,1,1,Active Shallow Crust,0.0,89.99005,0.0,04/02/9040 +-2.64038,42.1881,1535,6,21,0,28,29,3.65,5.0,fr,18827,30,787692,1,3,Active Shallow Crust,0.0,89.99001,0.0,06/21/1535 +-2.64038,42.1881,9853,3,7,23,40,39,3.65,5.0,fr,18828,197,787692,1,3,Active Shallow Crust,0.0,89.99001,0.0,03/07/9853 +-2.64038,42.1881,8172,3,28,14,48,5,3.65,5.0,fr,18829,163,787692,1,3,Active Shallow Crust,0.0,89.99001,0.0,03/28/8172 +-2.64038,42.1881,6697,5,15,1,12,23,3.65,5.0,fr,18830,133,787698,1,1,Active Shallow Crust,0.0,89.9899,-90.0,05/15/6697 +-2.64038,42.1881,3771,8,7,19,35,41,3.75,5.0,fr,18831,75,787704,1,2,Active Shallow Crust,0.0,89.9911,0.0,08/07/3771 +-2.64038,42.1881,3272,8,12,16,39,14,3.75,5.0,fr,18832,65,787704,1,2,Active Shallow Crust,0.0,89.9911,0.0,08/12/3272 +-2.64038,42.1881,6776,3,27,0,29,48,3.75,5.0,fr,18833,135,787707,1,1,Active Shallow Crust,240.0074,58.0179,0.0,03/27/6776 +-2.64038,42.1881,8791,8,7,19,50,45,3.75,15.0,fr,18834,175,787708,1,2,Active Shallow Crust,240.0074,58.0179,0.0,08/07/8791 +-2.64038,42.1881,2997,11,5,10,21,46,3.75,15.0,fr,18835,59,787708,1,2,Active Shallow Crust,240.0074,58.0179,0.0,11/05/2997 +-2.64038,42.1881,8247,8,15,12,18,37,3.75,5.0,fr,18836,164,787713,1,1,Active Shallow Crust,128.8972,89.96712,0.0,08/15/8247 +-2.64038,42.1881,9192,3,7,3,1,10,3.85,15.0,fr,18837,183,787717,1,1,Active Shallow Crust,0.0,89.98942,0.0,03/07/9192 +-2.64038,42.1881,9124,10,22,3,43,32,3.95,5.0,fr,18838,182,787728,1,1,Active Shallow Crust,0.0,89.99057,0.0,10/22/9124 +-2.64038,42.1881,1462,10,23,7,55,26,4.15,15.0,fr,18839,29,787753,1,1,Active Shallow Crust,0.0,89.99064,0.0,10/23/1462 +-2.64038,42.1881,9566,2,21,3,19,7,4.25,5.0,fr,18840,191,787764,1,1,Active Shallow Crust,0.0,89.98999,0.0,02/21/9566 +-2.64038,42.1881,5186,10,28,14,56,52,4.35,5.0,fr,18841,103,787779,1,1,Active Shallow Crust,240.0076,57.99569,0.0,10/28/5186 +-2.64038,42.1881,5263,2,2,20,22,44,4.45,5.0,fr,18842,105,787788,1,1,Active Shallow Crust,0.0,89.9894,0.0,02/02/5263 +-2.64038,42.1881,2009,9,25,10,22,51,4.45,5.0,fr,18843,40,787797,1,1,Active Shallow Crust,128.8931,89.99337,0.0,09/25/2009 +-2.64038,42.1881,1557,7,2,11,57,50,4.65,15.0,fr,18844,31,787813,1,1,Active Shallow Crust,0.0,89.99052,0.0,07/02/1557 +-2.64038,42.1881,7270,6,19,1,22,37,4.75,5.0,fr,18845,145,787830,1,1,Active Shallow Crust,0.0,89.98956,-90.0,06/19/7270 +-2.64038,42.1881,7075,7,9,9,47,45,4.95,5.0,fr,18846,141,787848,1,1,Active Shallow Crust,0.0,89.99031,0.0,07/09/7075 +-2.64038,42.1881,7725,8,2,8,44,7,5.25,5.0,fr,18847,154,787884,1,1,Active Shallow Crust,0.0,89.98997,0.0,08/02/7725 +2.31082,42.10271,2265,12,29,6,19,10,3.55,5.0,fr,18848,45,788160,1,2,Active Shallow Crust,0.0,89.98878,0.0,12/29/2265 +2.31082,42.10271,9930,1,14,12,58,18,3.55,5.0,fr,18849,198,788160,1,2,Active Shallow Crust,0.0,89.98878,0.0,01/14/9930 +2.31082,42.10271,5798,8,15,11,27,32,3.55,15.0,fr,18850,115,788161,1,1,Active Shallow Crust,0.0,89.98878,0.0,08/15/5798 +2.31082,42.10271,2536,3,24,16,32,45,3.55,27.5,fr,18851,50,788162,1,1,Active Shallow Crust,0.0,89.98878,0.0,03/24/2536 +2.31082,42.10271,4551,3,29,3,27,14,3.55,5.0,fr,18852,91,788163,1,1,Active Shallow Crust,240.0114,57.99843,0.0,03/29/4551 +2.31082,42.10271,4861,6,12,6,12,6,3.55,15.0,fr,18853,97,788164,1,1,Active Shallow Crust,240.0114,57.99843,0.0,06/12/4861 +2.31082,42.10271,1683,4,29,8,46,8,3.55,5.0,fr,18854,33,788169,1,1,Active Shallow Crust,128.8962,89.99439,0.0,04/29/1683 +2.31082,42.10271,4823,4,29,19,2,9,3.65,5.0,fr,18855,96,788172,1,4,Active Shallow Crust,0.0,89.99,0.0,04/29/4823 +2.31082,42.10271,1380,4,19,6,25,11,3.65,5.0,fr,18856,27,788172,1,4,Active Shallow Crust,0.0,89.99,0.0,04/19/1380 +2.31082,42.10271,6874,10,15,23,57,59,3.65,5.0,fr,18857,137,788172,1,4,Active Shallow Crust,0.0,89.99,0.0,10/15/6874 +2.31082,42.10271,4806,9,6,7,3,13,3.65,5.0,fr,18858,96,788172,1,4,Active Shallow Crust,0.0,89.99,0.0,09/06/4806 +2.31082,42.10271,4012,8,25,2,47,2,3.65,5.0,fr,18859,80,788178,1,2,Active Shallow Crust,0.0,89.98988,-90.0,08/25/4012 +2.31082,42.10271,1784,3,10,14,56,22,3.65,5.0,fr,18860,35,788178,1,2,Active Shallow Crust,0.0,89.98988,-90.0,03/10/1784 +2.31082,42.10271,5483,1,10,14,17,40,3.65,5.0,fr,18861,109,788181,1,1,Active Shallow Crust,128.9015,89.96344,0.0,01/10/5483 +2.31082,42.10271,4397,1,3,11,10,27,3.65,27.5,fr,18862,87,788183,1,1,Active Shallow Crust,128.9015,89.96344,0.0,01/03/4397 +2.31082,42.10271,2396,1,9,20,39,36,3.75,27.5,fr,18863,47,788186,1,1,Active Shallow Crust,0.0,89.99109,0.0,01/09/2396 +2.31082,42.10271,929,4,23,15,7,51,3.85,5.0,fr,18864,18,788196,1,1,Active Shallow Crust,0.0,89.98941,0.0,04/23/0929 +2.31082,42.10271,6404,6,5,15,48,42,3.85,5.0,fr,18865,128,788199,1,1,Active Shallow Crust,240.0105,57.99746,0.0,06/05/6404 +2.31082,42.10271,9289,4,24,6,48,48,3.85,5.0,fr,18866,185,788202,1,1,Active Shallow Crust,0.0,89.98928,-90.0,04/24/9289 +2.31082,42.10271,9333,11,22,5,3,7,4.15,5.0,fr,18867,186,788232,1,1,Active Shallow Crust,0.0,89.99062,0.0,11/22/9333 +2.31082,42.10271,602,11,7,23,38,32,4.25,5.0,fr,18868,12,788244,1,1,Active Shallow Crust,0.0,89.98997,0.0,11/07/0602 +2.31082,42.10271,5902,3,19,17,16,11,4.55,5.0,fr,18869,118,788280,1,2,Active Shallow Crust,0.0,89.99053,0.0,03/19/5902 +2.31082,42.10271,9520,8,29,23,13,55,4.55,5.0,fr,18870,190,788280,1,2,Active Shallow Crust,0.0,89.99053,0.0,08/29/9520 +2.31082,42.10271,9442,8,10,11,20,20,5.25,5.0,fr,18871,188,788364,1,1,Active Shallow Crust,0.0,89.98996,0.0,08/10/9442 +2.31082,42.10271,8047,6,11,9,7,21,5.55,15.0,fr,18872,160,788401,1,1,Active Shallow Crust,0.0,89.9899,0.0,06/11/8047 +-5.64911,48.21421,5298,9,6,8,4,18,3.85,5.0,fr,18873,105,788676,1,1,Active Shallow Crust,0.0,89.99049,0.0,09/06/5298 +-5.64911,48.21421,15,12,27,12,31,40,4.35,5.0,fr,18874,0,788736,1,1,Active Shallow Crust,0.0,89.9893,0.0,12/27/0015 +-5.64911,48.21421,8525,10,19,18,53,55,4.45,5.0,fr,18875,170,788751,1,1,Active Shallow Crust,240.0063,57.99467,0.0,10/19/8525 +-5.64911,48.21421,3195,1,7,4,16,36,4.95,15.0,fr,18876,63,788809,1,1,Active Shallow Crust,0.0,89.99062,0.0,01/07/3195 +5.30951,44.13869,3591,8,16,7,51,25,3.55,5.0,fr,18877,71,789120,1,1,Active Shallow Crust,0.0,89.99276,0.0,08/16/3591 +5.30951,44.13869,7404,6,26,20,7,2,3.55,15.0,fr,18878,148,789121,1,2,Active Shallow Crust,0.0,89.99276,0.0,06/26/7404 +5.30951,44.13869,2726,1,22,1,37,25,3.55,15.0,fr,18879,54,789121,1,2,Active Shallow Crust,0.0,89.99276,0.0,01/22/2726 +5.30951,44.13869,5326,4,26,9,34,22,3.55,27.5,fr,18880,106,789122,1,1,Active Shallow Crust,0.0,89.99276,0.0,04/26/5326 +5.30951,44.13869,6408,5,12,3,49,57,3.65,5.0,fr,18881,128,789132,1,2,Active Shallow Crust,0.0,89.9871,0.0,05/12/6408 +5.30951,44.13869,8709,7,24,9,2,32,3.65,5.0,fr,18882,174,789132,1,2,Active Shallow Crust,0.0,89.9871,0.0,07/24/8709 +5.30951,44.13869,2297,8,24,13,40,55,3.65,15.0,fr,18883,45,789133,1,2,Active Shallow Crust,0.0,89.9871,0.0,08/24/2297 +5.30951,44.13869,4329,9,22,8,56,11,3.65,15.0,fr,18884,86,789133,1,2,Active Shallow Crust,0.0,89.9871,0.0,09/22/4329 +5.30951,44.13869,2667,12,18,13,44,16,3.65,5.0,fr,18885,53,789141,1,1,Active Shallow Crust,128.8996,89.96348,0.0,12/18/2667 +5.30951,44.13869,7900,12,14,9,19,22,3.75,5.0,fr,18886,157,789144,1,2,Active Shallow Crust,0.0,89.9885,0.0,12/14/7900 +5.30951,44.13869,8792,6,26,7,14,51,3.75,5.0,fr,18887,175,789144,1,2,Active Shallow Crust,0.0,89.9885,0.0,06/26/8792 +5.30951,44.13869,9741,10,29,5,51,5,3.75,15.0,fr,18888,194,789145,1,1,Active Shallow Crust,0.0,89.9885,0.0,10/29/9741 +5.30951,44.13869,4541,9,16,4,42,45,3.85,5.0,fr,18889,90,789156,1,2,Active Shallow Crust,0.0,89.98975,0.0,09/16/4541 +5.30951,44.13869,9361,4,26,20,28,3,3.85,5.0,fr,18890,187,789156,1,2,Active Shallow Crust,0.0,89.98975,0.0,04/26/9361 +5.30951,44.13869,9220,8,6,16,33,31,3.85,15.0,fr,18891,184,789157,1,1,Active Shallow Crust,0.0,89.98975,0.0,08/06/9220 +5.30951,44.13869,5100,3,1,22,29,12,3.95,27.5,fr,18892,101,789170,1,1,Active Shallow Crust,0.0,89.99087,0.0,03/01/5100 +5.30951,44.13869,5257,4,13,4,15,47,3.95,27.5,fr,18893,105,789179,1,1,Active Shallow Crust,128.9005,89.99315,0.0,04/13/5257 +5.30951,44.13869,1064,10,6,18,54,27,4.05,5.0,fr,18894,21,789180,1,1,Active Shallow Crust,0.0,89.99186,0.0,10/06/1064 +5.30951,44.13869,6819,4,6,20,16,38,4.15,5.0,fr,18895,136,789195,1,1,Active Shallow Crust,240.0081,57.9971,0.0,04/06/6819 +5.30951,44.13869,3072,6,6,16,52,41,4.35,5.0,fr,18896,61,789216,1,1,Active Shallow Crust,0.0,89.99136,0.0,06/06/3072 +5.30951,44.13869,7163,9,12,19,17,35,4.35,15.0,fr,18897,143,789217,1,1,Active Shallow Crust,0.0,89.99136,0.0,09/12/7163 +5.30951,44.13869,1137,6,9,9,56,46,4.35,5.0,fr,18898,22,789219,1,1,Active Shallow Crust,240.0083,57.99585,0.0,06/09/1137 +5.30951,44.13869,4437,1,20,17,54,20,4.55,5.0,fr,18899,88,789240,1,2,Active Shallow Crust,0.0,89.99084,0.0,01/20/4437 +5.30951,44.13869,1670,5,27,19,43,10,4.55,5.0,fr,18900,33,789240,1,2,Active Shallow Crust,0.0,89.99084,0.0,05/27/1670 +5.30951,44.13869,2510,9,7,15,42,0,4.65,5.0,fr,18901,50,789252,1,1,Active Shallow Crust,0.0,89.9898,0.0,09/07/2510 +0.94153,44.47727,6751,5,27,10,25,31,3.55,5.0,fr,18902,135,789600,1,1,Active Shallow Crust,0.0,89.9901,0.0,05/27/6751 +0.94153,44.47727,1562,6,3,14,3,58,3.55,15.0,fr,18903,31,789601,1,2,Active Shallow Crust,0.0,89.9901,0.0,06/03/1562 +0.94153,44.47727,2569,3,24,10,12,35,3.55,15.0,fr,18904,51,789601,1,2,Active Shallow Crust,0.0,89.9901,0.0,03/24/2569 +0.94153,44.47727,607,8,15,19,10,12,4.05,5.0,fr,18905,12,789669,1,1,Active Shallow Crust,128.8908,89.99368,0.0,08/15/0607 +0.94153,44.47727,8920,10,2,7,45,32,5.25,5.0,fr,18906,178,789813,1,1,Active Shallow Crust,128.8843,89.98701,0.0,10/02/8920 +-0.7659,47.98464,607,11,18,6,50,34,3.55,5.0,fr,18907,12,790080,1,1,Active Shallow Crust,0.0,89.98988,0.0,11/18/0607 +-0.7659,47.98464,5560,4,21,0,53,51,3.55,5.0,fr,18908,111,790089,1,1,Active Shallow Crust,128.896,89.99409,0.0,04/21/5560 +-0.7659,47.98464,9263,4,1,14,23,42,3.65,5.0,fr,18909,185,790092,1,1,Active Shallow Crust,0.0,89.99023,0.0,04/01/9263 +-0.7659,47.98464,7424,11,1,2,21,59,3.65,5.0,fr,18910,148,790101,1,1,Active Shallow Crust,128.9003,89.96349,0.0,11/01/7424 +-0.7659,47.98464,1167,12,30,7,25,4,3.75,5.0,fr,18911,23,790104,1,1,Active Shallow Crust,0.0,89.98994,0.0,12/30/1167 +-0.7659,47.98464,5020,5,11,11,18,16,3.75,15.0,fr,18912,100,790105,1,2,Active Shallow Crust,0.0,89.98994,0.0,05/11/5020 +-0.7659,47.98464,3891,10,3,15,29,43,3.75,15.0,fr,18913,77,790105,1,2,Active Shallow Crust,0.0,89.98994,0.0,10/03/3891 +-0.7659,47.98464,8719,9,22,18,50,21,3.85,5.0,fr,18914,174,790116,1,1,Active Shallow Crust,0.0,89.98985,0.0,09/22/8719 +-0.7659,47.98464,2888,8,10,21,20,13,4.05,27.5,fr,18915,57,790142,1,1,Active Shallow Crust,0.0,89.99004,0.0,08/10/2888 +-0.7659,47.98464,8637,7,12,9,31,9,4.45,15.0,fr,18916,172,790189,1,1,Active Shallow Crust,0.0,89.99012,0.0,07/12/8637 +-0.7659,47.98464,9550,5,6,9,41,53,4.45,5.0,fr,18917,190,790197,1,1,Active Shallow Crust,128.8919,89.99371,0.0,05/06/9550 +4.81158,42.60528,9795,9,24,17,34,34,3.65,5.0,fr,18918,195,790572,1,1,Active Shallow Crust,0.0,89.98677,0.0,09/24/9795 +4.81158,42.60528,5915,9,7,1,48,44,3.65,5.0,fr,18919,118,790575,1,1,Active Shallow Crust,240.0011,58.01271,0.0,09/07/5915 +4.81158,42.60528,9869,10,17,18,30,57,4.05,5.0,fr,18920,197,790620,1,2,Active Shallow Crust,0.0,89.99165,0.0,10/17/9869 +4.81158,42.60528,2073,10,17,18,51,35,4.05,5.0,fr,18921,41,790620,1,2,Active Shallow Crust,0.0,89.99165,0.0,10/17/2073 +3.41423,41.06029,3362,2,4,23,50,59,3.65,5.0,fr,18922,67,791532,1,1,Active Shallow Crust,0.0,89.98984,0.0,02/04/3362 +3.41423,41.06029,1944,4,1,1,58,22,3.65,5.0,fr,18923,38,791535,1,1,Active Shallow Crust,240.0007,58.01274,0.0,04/01/1944 +3.41423,41.06029,2815,8,1,1,42,43,3.75,5.0,fr,18924,56,791544,1,1,Active Shallow Crust,0.0,89.99094,0.0,08/01/2815 +3.41423,41.06029,4581,1,31,7,53,39,3.75,5.0,fr,18925,91,791547,1,1,Active Shallow Crust,240.008,58.01699,0.0,01/31/4581 +3.41423,41.06029,4211,5,26,12,59,40,3.85,5.0,fr,18926,84,791556,1,1,Active Shallow Crust,0.0,89.98923,0.0,05/26/4211 +3.41423,41.06029,1152,8,17,20,36,18,4.35,5.0,fr,18927,23,791619,1,1,Active Shallow Crust,240.0074,57.99568,0.0,08/17/1152 +3.41423,41.06029,4729,2,11,8,33,35,4.35,5.0,fr,18928,94,791622,1,1,Active Shallow Crust,0.0,89.98928,-90.0,02/11/4729 +3.41423,41.06029,5137,2,3,22,17,26,4.55,15.0,fr,18929,102,791647,1,1,Active Shallow Crust,0.0,89.99027,-90.0,02/03/5137 +3.41423,41.06029,2010,8,29,22,9,2,4.65,15.0,fr,18930,40,791656,1,1,Active Shallow Crust,240.009,57.99396,0.0,08/29/2010 +1.65902,50.36036,9076,10,10,6,33,4,3.55,15.0,fr,18931,181,792004,1,1,Active Shallow Crust,240.0124,57.99842,0.0,10/10/9076 +1.65902,50.36036,4853,12,2,4,55,57,3.55,5.0,fr,18932,97,792006,1,1,Active Shallow Crust,0.0,89.99024,-90.0,12/02/4853 +1.65902,50.36036,7964,9,16,7,17,24,3.55,15.0,fr,18933,159,792007,1,1,Active Shallow Crust,0.0,89.99024,-90.0,09/16/7964 +1.65902,50.36036,3238,7,16,7,48,4,3.65,5.0,fr,18934,64,792012,1,1,Active Shallow Crust,0.0,89.98997,0.0,07/16/3238 +1.65902,50.36036,612,8,27,2,37,44,3.85,5.0,fr,18935,12,792039,1,1,Active Shallow Crust,240.0113,57.99791,0.0,08/27/0612 +1.65902,50.36036,2003,5,26,9,20,49,4.05,5.0,fr,18936,40,792063,1,1,Active Shallow Crust,240.0066,58.00592,0.0,05/26/2003 +1.65902,50.36036,9005,1,8,7,50,49,4.25,5.0,fr,18937,180,792084,1,1,Active Shallow Crust,0.0,89.98994,0.0,01/08/9005 +1.65902,50.36036,1896,4,7,20,3,54,4.35,5.0,fr,18938,37,792096,1,1,Active Shallow Crust,0.0,89.98975,0.0,04/07/1896 +2.09527,50.37597,347,2,10,12,25,5,3.65,5.0,fr,18939,6,792492,1,1,Active Shallow Crust,0.0,89.9914,0.0,02/10/0347 +2.09527,50.37597,3405,3,29,18,23,0,3.65,5.0,fr,18940,68,792501,1,1,Active Shallow Crust,128.8993,89.9636,0.0,03/29/3405 +2.09527,50.37597,9574,12,24,19,1,30,4.05,5.0,fr,18941,191,792540,1,1,Active Shallow Crust,0.0,89.98915,0.0,12/24/9574 +2.09527,50.37597,9825,3,4,14,36,42,4.05,15.0,fr,18942,196,792550,1,1,Active Shallow Crust,128.89,89.99368,0.0,03/04/9825 +0.34154,51.73454,5338,9,30,5,20,35,3.55,15.0,fr,18943,106,792961,1,2,Active Shallow Crust,0.0,89.98985,0.0,09/30/5338 +0.34154,51.73454,4933,10,9,13,11,42,3.55,15.0,fr,18944,98,792961,1,2,Active Shallow Crust,0.0,89.98985,0.0,10/09/4933 +0.34154,51.73454,465,4,5,9,51,58,3.55,5.0,fr,18945,9,792966,1,1,Active Shallow Crust,0.0,89.99013,-90.0,04/05/0465 +0.34154,51.73454,1867,2,7,18,27,31,3.65,5.0,fr,18946,37,792972,1,2,Active Shallow Crust,0.0,89.98991,0.0,02/07/1867 +0.34154,51.73454,9203,3,4,10,31,6,3.65,5.0,fr,18947,184,792972,1,2,Active Shallow Crust,0.0,89.98991,0.0,03/04/9203 +0.34154,51.73454,8508,3,1,13,49,31,3.65,5.0,fr,18948,170,792975,1,1,Active Shallow Crust,240.0016,58.01301,0.0,03/01/8508 +0.34154,51.73454,9210,7,27,18,4,4,3.75,5.0,fr,18949,184,792984,1,2,Active Shallow Crust,0.0,89.99008,0.0,07/27/9210 +0.34154,51.73454,661,8,12,4,0,7,3.75,5.0,fr,18950,13,792984,1,2,Active Shallow Crust,0.0,89.99008,0.0,08/12/0661 +0.34154,51.73454,5945,11,16,10,21,13,4.05,5.0,fr,18951,118,793026,1,1,Active Shallow Crust,0.0,89.99001,-90.0,11/16/5945 +0.34154,51.73454,9117,6,16,18,35,9,4.25,15.0,fr,18952,182,793045,1,1,Active Shallow Crust,0.0,89.99006,0.0,06/16/9117 +1.51754,46.26585,3942,4,8,0,30,27,3.55,5.0,fr,18953,78,793440,1,2,Active Shallow Crust,0.0,89.98954,0.0,04/08/3942 +1.51754,46.26585,3393,6,25,1,15,53,3.55,5.0,fr,18954,67,793440,1,2,Active Shallow Crust,0.0,89.98954,0.0,06/25/3393 +1.51754,46.26585,5881,11,13,21,5,27,3.55,15.0,fr,18955,117,793441,1,1,Active Shallow Crust,0.0,89.98954,0.0,11/13/5881 +1.51754,46.26585,3035,1,9,17,55,24,3.55,5.0,fr,18956,60,793443,1,1,Active Shallow Crust,240.0122,57.99839,0.0,01/09/3035 +1.51754,46.26585,9369,10,10,13,37,55,3.65,15.0,fr,18957,187,793456,1,2,Active Shallow Crust,240.0011,58.01297,0.0,10/10/9369 +1.51754,46.26585,9199,8,30,9,21,52,3.65,15.0,fr,18958,183,793456,1,2,Active Shallow Crust,240.0011,58.01297,0.0,08/30/9199 +1.51754,46.26585,9205,1,8,23,43,33,3.65,15.0,fr,18959,184,793459,1,1,Active Shallow Crust,0.0,89.99057,-90.0,01/08/9205 +1.51754,46.26585,3256,5,1,5,44,5,3.75,15.0,fr,18960,65,793465,1,1,Active Shallow Crust,0.0,89.99031,0.0,05/01/3256 +1.51754,46.26585,622,2,3,14,38,23,3.75,15.0,fr,18961,12,793468,1,1,Active Shallow Crust,240.0083,58.01764,0.0,02/03/0622 +1.51754,46.26585,3829,6,5,21,15,33,3.75,27.5,fr,18962,76,793475,1,1,Active Shallow Crust,128.8965,89.96736,0.0,06/05/3829 +1.51754,46.26585,7990,9,7,21,32,57,3.95,15.0,fr,18963,159,793498,1,1,Active Shallow Crust,128.9003,89.99395,0.0,09/07/7990 +1.51754,46.26585,3156,5,28,20,9,12,4.05,5.0,fr,18964,63,793500,1,2,Active Shallow Crust,0.0,89.9902,0.0,05/28/3156 +1.51754,46.26585,9318,4,16,1,9,0,4.05,5.0,fr,18965,186,793500,1,2,Active Shallow Crust,0.0,89.9902,0.0,04/16/9318 +1.51754,46.26585,7261,2,8,5,22,40,4.05,27.5,fr,18966,145,793502,1,1,Active Shallow Crust,0.0,89.9902,0.0,02/08/7261 +1.51754,46.26585,4813,12,1,12,55,53,4.45,5.0,fr,18967,96,793548,1,1,Active Shallow Crust,0.0,89.9901,0.0,12/01/4813 +1.51754,46.26585,9108,3,21,7,37,47,4.65,15.0,fr,18968,182,793576,1,1,Active Shallow Crust,240.0108,57.99427,0.0,03/21/9108 +1.51754,46.26585,9846,6,3,14,8,18,5.95,5.0,fr,18969,196,793731,1,1,Active Shallow Crust,240.0508,58.00057,0.0,06/03/9846 +-3.69038,50.43566,5868,8,23,15,1,39,5.05,15.0,fr,18970,117,794101,1,1,Active Shallow Crust,0.0,89.98972,0.0,08/23/5868 +-3.69038,50.43566,6808,8,6,9,6,43,5.15,5.0,fr,18971,136,794112,1,1,Active Shallow Crust,0.0,89.98981,0.0,08/06/6808 +-0.80035,44.46139,6565,5,12,22,1,20,3.65,15.0,fr,18972,131,794413,1,1,Active Shallow Crust,0.0,89.99038,0.0,05/12/6565 +-0.80035,44.46139,9825,5,15,13,23,8,4.65,5.0,fr,18973,196,794532,1,1,Active Shallow Crust,0.0,89.99011,0.0,05/15/9825 +6.01272,50.01347,6374,10,17,2,43,41,3.85,15.0,fr,18974,127,794917,1,1,Active Shallow Crust,0.0,89.99082,0.0,10/17/6374 +6.01272,50.01347,3719,3,27,21,10,35,3.85,5.0,fr,18975,74,794925,1,1,Active Shallow Crust,128.895,89.99541,0.0,03/27/3719 +6.01272,50.01347,8577,7,18,7,54,8,4.15,5.0,fr,18976,171,794952,1,1,Active Shallow Crust,0.0,89.99026,0.0,07/18/8577 +-0.14589,45.74266,4277,6,21,22,12,48,3.55,5.0,fr,18977,85,795360,1,1,Active Shallow Crust,0.0,89.9901,0.0,06/21/4277 +-0.14589,45.74266,7711,1,21,0,19,3,3.55,15.0,fr,18978,154,795361,1,2,Active Shallow Crust,0.0,89.9901,0.0,01/21/7711 +-0.14589,45.74266,7474,4,17,6,15,46,3.55,15.0,fr,18979,149,795361,1,2,Active Shallow Crust,0.0,89.9901,0.0,04/17/7474 +-0.14589,45.74266,6899,6,27,3,44,33,3.55,27.5,fr,18980,137,795362,1,1,Active Shallow Crust,0.0,89.9901,0.0,06/27/6899 +-0.14589,45.74266,4936,11,12,10,10,0,3.55,5.0,fr,18981,98,795363,1,1,Active Shallow Crust,240.0121,57.99816,0.0,11/12/4936 +-0.14589,45.74266,7307,6,16,12,7,35,3.55,15.0,fr,18982,146,795367,1,3,Active Shallow Crust,0.0,89.98999,-90.0,06/16/7307 +-0.14589,45.74266,3871,11,12,9,4,55,3.55,15.0,fr,18983,77,795367,1,3,Active Shallow Crust,0.0,89.98999,-90.0,11/12/3871 +-0.14589,45.74266,2993,12,4,12,48,41,3.55,15.0,fr,18984,59,795367,1,3,Active Shallow Crust,0.0,89.98999,-90.0,12/04/2993 +-0.14589,45.74266,1173,12,28,2,19,5,3.65,5.0,fr,18985,23,795372,1,2,Active Shallow Crust,0.0,89.99001,0.0,12/28/1173 +-0.14589,45.74266,7087,3,25,23,51,40,3.65,5.0,fr,18986,141,795372,1,2,Active Shallow Crust,0.0,89.99001,0.0,03/25/7087 +-0.14589,45.74266,1961,6,9,17,42,3,3.65,15.0,fr,18987,39,795373,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/09/1961 +-0.14589,45.74266,358,12,15,6,14,49,3.75,5.0,fr,18988,7,795390,1,1,Active Shallow Crust,0.0,89.98993,-90.0,12/15/0358 +-0.14589,45.74266,2544,10,5,21,45,12,3.75,15.0,fr,18989,50,795391,1,1,Active Shallow Crust,0.0,89.98993,-90.0,10/05/2544 +-0.14589,45.74266,935,6,23,7,16,0,3.85,5.0,fr,18990,18,795396,1,3,Active Shallow Crust,0.0,89.99004,0.0,06/23/0935 +-0.14589,45.74266,744,12,11,19,41,51,3.85,5.0,fr,18991,14,795396,1,3,Active Shallow Crust,0.0,89.99004,0.0,12/11/0744 +-0.14589,45.74266,953,9,18,1,50,55,3.85,5.0,fr,18992,19,795396,1,3,Active Shallow Crust,0.0,89.99004,0.0,09/18/0953 +-0.14589,45.74266,1393,9,1,8,31,23,3.95,5.0,fr,18993,27,795411,1,1,Active Shallow Crust,240.0197,58.00495,0.0,09/01/1393 +-0.14589,45.74266,1203,2,16,2,12,53,4.05,5.0,fr,18994,24,795420,1,1,Active Shallow Crust,0.0,89.98998,0.0,02/16/1203 +-0.14589,45.74266,6689,4,28,2,42,26,4.15,15.0,fr,18995,133,795433,1,1,Active Shallow Crust,0.0,89.98997,0.0,04/28/6689 +-0.14589,45.74266,7696,9,18,20,13,58,4.25,5.0,fr,18996,153,795453,1,1,Active Shallow Crust,128.8944,89.98092,0.0,09/18/7696 +-0.14589,45.74266,2703,4,13,12,21,9,4.55,15.0,fr,18997,54,795481,1,1,Active Shallow Crust,0.0,89.98998,0.0,04/13/2703 +-0.14589,45.74266,9245,8,20,0,8,58,4.75,5.0,fr,18998,184,795504,1,1,Active Shallow Crust,0.0,89.99,0.0,08/20/9245 +-0.14589,45.74266,2109,10,16,3,27,41,4.95,27.5,fr,18999,42,795539,1,1,Active Shallow Crust,128.8902,89.98978,0.0,10/16/2109 +-0.14589,45.74266,2486,12,22,9,21,5,5.25,15.0,fr,19000,49,795565,1,1,Active Shallow Crust,0.0,89.99,0.0,12/22/2486 +-0.14589,45.74266,5853,3,16,3,12,44,5.55,27.5,fr,19001,117,795602,1,1,Active Shallow Crust,0.0,89.98999,0.0,03/16/5853 +-2.36186,44.85425,804,3,3,17,33,41,3.55,5.0,fr,19002,16,795840,1,1,Active Shallow Crust,0.0,89.98928,0.0,03/03/0804 +-2.36186,44.85425,9473,9,18,12,17,49,3.55,15.0,fr,19003,189,795850,1,1,Active Shallow Crust,128.8962,89.99464,0.0,09/18/9473 +-3.17331,42.26014,2035,11,29,7,25,12,3.55,15.0,fr,19004,40,796321,1,1,Active Shallow Crust,0.0,89.98881,0.0,11/29/2035 +-3.17331,42.26014,9423,10,23,0,48,52,3.95,27.5,fr,19005,188,796370,1,1,Active Shallow Crust,0.0,89.99059,0.0,10/23/9423 +-3.17331,42.26014,9836,8,24,15,3,15,4.05,5.0,fr,19006,196,796380,1,1,Active Shallow Crust,0.0,89.98951,0.0,08/24/9836 +-3.17331,42.26014,6520,1,25,5,27,4,4.45,5.0,fr,19007,130,796428,1,1,Active Shallow Crust,0.0,89.98941,0.0,01/25/6520 +-3.17331,42.26014,6081,10,11,22,10,28,4.65,5.0,fr,19008,121,796452,1,1,Active Shallow Crust,0.0,89.98948,0.0,10/11/6081 +7.21555,45.95402,2610,2,28,11,16,35,3.55,5.0,fr,19009,52,796800,1,1,Active Shallow Crust,0.0,89.99299,0.0,02/28/2610 +7.21555,45.95402,4183,3,26,15,6,25,3.55,15.0,fr,19010,83,796801,1,1,Active Shallow Crust,0.0,89.99299,0.0,03/26/4183 +7.21555,45.95402,7373,11,13,10,56,25,3.55,5.0,fr,19011,147,796803,1,1,Active Shallow Crust,240.0123,57.99791,0.0,11/13/7373 +7.21555,45.95402,56,2,24,10,7,46,3.55,27.5,fr,19012,1,796805,1,1,Active Shallow Crust,240.0123,57.99781,0.0,02/24/0056 +7.21555,45.95402,4317,3,2,18,12,50,3.55,5.0,fr,19013,86,796806,1,2,Active Shallow Crust,0.0,89.9929,-90.0,03/02/4317 +7.21555,45.95402,6732,8,3,11,54,6,3.55,5.0,fr,19014,134,796806,1,2,Active Shallow Crust,0.0,89.9929,-90.0,08/03/6732 +7.21555,45.95402,8720,11,1,4,49,1,3.65,5.0,fr,19015,174,796812,1,2,Active Shallow Crust,0.0,89.9875,0.0,11/01/8720 +7.21555,45.95402,1650,11,1,9,17,40,3.65,5.0,fr,19016,32,796812,1,2,Active Shallow Crust,0.0,89.9875,0.0,11/01/1650 +7.21555,45.95402,3491,12,15,1,34,40,3.65,27.5,fr,19017,69,796814,1,1,Active Shallow Crust,0.0,89.9875,0.0,12/15/3491 +7.21555,45.95402,6975,6,22,11,23,8,3.65,5.0,fr,19018,139,796818,1,1,Active Shallow Crust,0.0,89.98736,-90.0,06/22/6975 +7.21555,45.95402,4155,7,3,13,13,8,3.75,5.0,fr,19019,83,796824,1,4,Active Shallow Crust,0.0,89.98886,0.0,07/03/4155 +7.21555,45.95402,3311,10,4,14,17,37,3.75,5.0,fr,19020,66,796824,1,4,Active Shallow Crust,0.0,89.98886,0.0,10/04/3311 +7.21555,45.95402,9236,10,26,21,41,1,3.75,5.0,fr,19021,184,796824,1,4,Active Shallow Crust,0.0,89.98886,0.0,10/26/9236 +7.21555,45.95402,1382,6,12,2,49,12,3.75,5.0,fr,19022,27,796824,1,4,Active Shallow Crust,0.0,89.98886,0.0,06/12/1382 +7.21555,45.95402,111,1,24,14,3,34,3.75,15.0,fr,19023,2,796825,1,1,Active Shallow Crust,0.0,89.98886,0.0,01/24/0111 +7.21555,45.95402,3693,11,21,16,5,5,3.75,5.0,fr,19024,73,796833,1,1,Active Shallow Crust,128.8967,89.96748,0.0,11/21/3693 +7.21555,45.95402,9044,3,12,2,42,22,3.85,5.0,fr,19025,180,796836,1,1,Active Shallow Crust,0.0,89.99007,0.0,03/12/9044 +7.21555,45.95402,4286,1,14,8,33,6,3.85,15.0,fr,19026,85,796837,1,1,Active Shallow Crust,0.0,89.99007,0.0,01/14/4286 +7.21555,45.95402,1636,12,11,6,56,36,3.85,15.0,fr,19027,32,796846,1,1,Active Shallow Crust,128.896,89.99504,0.0,12/11/1636 +7.21555,45.95402,1682,10,6,19,24,29,3.95,5.0,fr,19028,33,796848,1,4,Active Shallow Crust,0.0,89.99115,0.0,10/06/1682 +7.21555,45.95402,1931,12,25,11,32,46,3.95,5.0,fr,19029,38,796848,1,4,Active Shallow Crust,0.0,89.99115,0.0,12/25/1931 +7.21555,45.95402,9293,9,14,6,44,38,3.95,5.0,fr,19030,185,796848,1,4,Active Shallow Crust,0.0,89.99115,0.0,09/14/9293 +7.21555,45.95402,9156,9,27,21,0,1,3.95,5.0,fr,19031,183,796848,1,4,Active Shallow Crust,0.0,89.99115,0.0,09/27/9156 +7.21555,45.95402,9917,5,27,17,57,5,3.95,15.0,fr,19032,198,796849,1,1,Active Shallow Crust,0.0,89.99115,0.0,05/27/9917 +7.21555,45.95402,6003,4,2,1,24,2,3.95,5.0,fr,19033,120,796851,1,1,Active Shallow Crust,240.0193,58.00469,0.0,04/02/6003 +7.21555,45.95402,5039,12,3,15,47,38,4.05,5.0,fr,19034,100,796860,1,2,Active Shallow Crust,0.0,89.98817,0.0,12/03/5039 +7.21555,45.95402,5022,9,21,10,16,13,4.05,5.0,fr,19035,100,796860,1,2,Active Shallow Crust,0.0,89.98817,0.0,09/21/5022 +7.21555,45.95402,5300,9,18,18,54,13,4.05,15.0,fr,19036,105,796861,1,2,Active Shallow Crust,0.0,89.98817,0.0,09/18/5300 +7.21555,45.95402,4556,3,8,5,26,14,4.05,15.0,fr,19037,91,796861,1,2,Active Shallow Crust,0.0,89.98817,0.0,03/08/4556 +7.21555,45.95402,9443,5,2,19,36,46,4.15,5.0,fr,19038,188,796872,1,1,Active Shallow Crust,0.0,89.98946,0.0,05/02/9443 +7.21555,45.95402,17,3,20,23,57,45,4.15,5.0,fr,19039,0,796875,1,1,Active Shallow Crust,240.0081,57.99784,0.0,03/20/0017 +7.21555,45.95402,6534,10,16,6,37,24,4.25,5.0,fr,19040,130,796884,1,1,Active Shallow Crust,0.0,89.99061,0.0,10/16/6534 +7.21555,45.95402,4046,2,14,12,19,37,4.35,5.0,fr,19041,80,796896,1,3,Active Shallow Crust,0.0,89.98884,0.0,02/14/4046 +7.21555,45.95402,3953,1,19,5,33,37,4.35,5.0,fr,19042,79,796896,1,3,Active Shallow Crust,0.0,89.98884,0.0,01/19/3953 +7.21555,45.95402,8939,12,20,7,2,46,4.35,5.0,fr,19043,178,796896,1,3,Active Shallow Crust,0.0,89.98884,0.0,12/20/8939 +7.21555,45.95402,5413,10,4,4,9,17,4.55,15.0,fr,19044,108,796921,1,1,Active Shallow Crust,0.0,89.98891,0.0,10/04/5413 +1.39133,44.24248,3811,2,6,0,55,44,3.55,5.0,fr,19045,76,797280,1,1,Active Shallow Crust,0.0,89.98917,0.0,02/06/3811 +1.39133,44.24248,8023,8,26,19,33,26,3.65,15.0,fr,19046,160,797293,1,1,Active Shallow Crust,0.0,89.99034,0.0,08/26/8023 +1.39133,44.24248,5732,11,28,1,22,45,3.75,5.0,fr,19047,114,797313,1,1,Active Shallow Crust,128.8969,89.96732,0.0,11/28/5732 +1.39133,44.24248,9894,8,12,5,11,17,4.05,15.0,fr,19048,197,797341,1,1,Active Shallow Crust,0.0,89.98985,0.0,08/12/9894 +1.39133,44.24248,4608,3,26,8,18,6,4.25,15.0,fr,19049,92,797365,1,1,Active Shallow Crust,0.0,89.99032,0.0,03/26/4608 +1.61656,42.52402,6259,7,10,23,42,45,3.55,5.0,fr,19050,125,797760,1,2,Active Shallow Crust,0.0,89.99071,0.0,07/10/6259 +1.61656,42.52402,2169,7,9,8,31,7,3.55,5.0,fr,19051,43,797760,1,2,Active Shallow Crust,0.0,89.99071,0.0,07/09/2169 +1.61656,42.52402,7064,2,3,5,30,17,3.55,27.5,fr,19052,141,797762,1,1,Active Shallow Crust,0.0,89.99071,0.0,02/03/7064 +1.61656,42.52402,6823,9,1,8,1,43,3.55,5.0,fr,19053,136,797763,1,1,Active Shallow Crust,240.0117,57.99805,0.0,09/01/6823 +1.61656,42.52402,9829,3,14,21,57,6,3.55,5.0,fr,19054,196,797766,1,1,Active Shallow Crust,0.0,89.9906,-90.0,03/14/9829 +1.61656,42.52402,8218,2,8,4,28,41,3.55,5.0,fr,19055,164,797769,1,2,Active Shallow Crust,128.8963,89.9935,0.0,02/08/8218 +1.61656,42.52402,8709,12,23,15,51,5,3.55,5.0,fr,19056,174,797769,1,2,Active Shallow Crust,128.8963,89.9935,0.0,12/23/8709 +1.61656,42.52402,2064,3,18,2,56,45,3.65,5.0,fr,19057,41,797772,1,1,Active Shallow Crust,0.0,89.99007,0.0,03/18/2064 +1.61656,42.52402,1134,2,21,11,38,51,3.65,15.0,fr,19058,22,797773,1,2,Active Shallow Crust,0.0,89.99007,0.0,02/21/1134 +1.61656,42.52402,8498,8,12,11,56,13,3.65,15.0,fr,19059,169,797773,1,2,Active Shallow Crust,0.0,89.99007,0.0,08/12/8498 +1.61656,42.52402,7411,5,12,18,20,15,3.75,5.0,fr,19060,148,797784,1,3,Active Shallow Crust,0.0,89.98967,0.0,05/12/7411 +1.61656,42.52402,7604,3,10,8,16,54,3.75,5.0,fr,19061,152,797784,1,3,Active Shallow Crust,0.0,89.98967,0.0,03/10/7604 +1.61656,42.52402,19,5,4,18,34,17,3.75,5.0,fr,19062,0,797784,1,3,Active Shallow Crust,0.0,89.98967,0.0,05/04/0019 +1.61656,42.52402,3523,11,25,18,1,58,3.75,15.0,fr,19063,70,797785,1,1,Active Shallow Crust,0.0,89.98967,0.0,11/25/3523 +1.61656,42.52402,5244,11,20,20,56,47,3.85,5.0,fr,19064,104,797796,1,2,Active Shallow Crust,0.0,89.98948,0.0,11/20/5244 +1.61656,42.52402,551,8,5,16,17,38,3.85,5.0,fr,19065,11,797796,1,2,Active Shallow Crust,0.0,89.98948,0.0,08/05/0551 +1.61656,42.52402,5465,7,8,0,6,42,3.85,27.5,fr,19066,109,797798,1,1,Active Shallow Crust,0.0,89.98948,0.0,07/08/5465 +1.61656,42.52402,1152,6,19,1,27,9,3.85,5.0,fr,19067,23,797805,1,1,Active Shallow Crust,128.8957,89.99408,0.0,06/19/1152 +1.61656,42.52402,9531,1,22,21,45,16,3.95,5.0,fr,19068,190,797808,1,1,Active Shallow Crust,0.0,89.98945,0.0,01/22/9531 +1.61656,42.52402,55,10,6,17,4,54,3.95,5.0,fr,19069,1,797811,1,1,Active Shallow Crust,240.0193,58.00499,0.0,10/06/0055 +1.61656,42.52402,8930,1,16,1,33,9,4.05,5.0,fr,19070,178,797820,1,1,Active Shallow Crust,0.0,89.98956,0.0,01/16/8930 +1.61656,42.52402,7584,1,30,5,26,23,4.15,5.0,fr,19071,151,797832,1,1,Active Shallow Crust,0.0,89.98975,0.0,01/30/7584 +1.61656,42.52402,6721,10,23,19,18,24,4.15,5.0,fr,19072,134,797835,1,1,Active Shallow Crust,240.008,57.99717,0.0,10/23/6721 +1.61656,42.52402,1597,8,9,18,27,10,4.25,15.0,fr,19073,31,797845,1,1,Active Shallow Crust,0.0,89.99004,0.0,08/09/1597 +1.61656,42.52402,5722,8,11,1,55,56,4.35,5.0,fr,19074,114,797859,1,1,Active Shallow Crust,240.0074,57.99582,0.0,08/11/5722 +1.61656,42.52402,1896,7,3,17,33,1,4.75,5.0,fr,19075,37,797907,1,1,Active Shallow Crust,240.0061,58.00422,0.0,07/03/1896 +1.61656,42.52402,706,6,29,15,4,5,5.15,5.0,fr,19076,14,797952,1,1,Active Shallow Crust,0.0,89.98998,0.0,06/29/0706 +1.616565,42.52402,6046,4,14,12,36,38,6.35,7.567806,fr,19077,120,798096,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/14/6046 +4.97393,44.88554,4805,1,5,14,29,10,3.55,5.0,fr,19078,96,798240,1,1,Active Shallow Crust,0.0,89.99286,0.0,01/05/4805 +4.97393,44.88554,8730,9,21,1,23,13,3.55,5.0,fr,19079,174,798246,1,1,Active Shallow Crust,0.0,89.99277,-90.0,09/21/8730 +4.97393,44.88554,2239,1,21,22,36,33,3.65,5.0,fr,19080,44,798252,1,2,Active Shallow Crust,0.0,89.98727,0.0,01/21/2239 +4.97393,44.88554,4331,4,6,12,18,33,3.65,5.0,fr,19081,86,798252,1,2,Active Shallow Crust,0.0,89.98727,0.0,04/06/4331 +4.97393,44.88554,5703,3,1,5,18,51,3.65,5.0,fr,19082,114,798255,1,1,Active Shallow Crust,240.0003,58.01308,0.0,03/01/5703 +4.97393,44.88554,5440,7,31,6,19,50,3.75,5.0,fr,19083,108,798264,1,1,Active Shallow Crust,0.0,89.98865,0.0,07/31/5440 +4.97393,44.88554,3107,5,13,18,50,36,3.75,15.0,fr,19084,62,798274,1,1,Active Shallow Crust,128.8964,89.96746,0.0,05/13/3107 +4.97393,44.88554,1947,5,9,1,48,39,3.85,5.0,fr,19085,38,798276,1,1,Active Shallow Crust,0.0,89.98988,0.0,05/09/1947 +4.97393,44.88554,2079,4,28,4,31,14,3.95,15.0,fr,19086,41,798289,1,1,Active Shallow Crust,0.0,89.99098,0.0,04/28/2079 +4.97393,44.88554,2636,1,3,13,56,29,3.95,5.0,fr,19087,52,798291,1,1,Active Shallow Crust,240.0186,58.00499,0.0,01/03/2636 +4.97393,44.88554,1498,5,6,22,12,56,4.05,5.0,fr,19088,29,798300,1,1,Active Shallow Crust,0.0,89.99197,0.0,05/06/1498 +4.97393,44.88554,8639,4,20,14,27,46,4.25,5.0,fr,19089,172,798324,1,1,Active Shallow Crust,0.0,89.99043,0.0,04/20/8639 +4.97393,44.88554,4002,10,23,1,39,10,4.35,27.5,fr,19090,80,798338,1,1,Active Shallow Crust,0.0,89.98862,0.0,10/23/4002 +4.97393,44.88554,4893,8,8,5,18,19,4.75,5.0,fr,19091,97,798387,1,1,Active Shallow Crust,240.007,58.00431,0.0,08/08/4893 +4.97393,44.88554,8959,2,4,11,16,24,4.85,5.0,fr,19092,179,798396,1,1,Active Shallow Crust,0.0,89.9904,0.0,02/04/8959 +4.97393,44.88554,2371,8,26,7,23,27,4.95,27.5,fr,19093,47,798410,1,1,Active Shallow Crust,0.0,89.99002,0.0,08/26/2371 +4.97393,44.88554,5001,1,6,10,15,12,5.65,5.0,fr,19094,100,798492,1,1,Active Shallow Crust,0.0,89.98981,0.0,01/06/5001 +4.973936,44.88554,7458,4,12,4,43,55,6.35,7.567806,fr,19095,149,798576,1,1,Active Shallow Crust,0.0,89.99004,0.0,04/12/7458 +6.0829,45.42467,7966,3,12,4,16,48,3.55,5.0,fr,19096,159,798720,1,1,Active Shallow Crust,0.0,89.99292,0.0,03/12/7966 +6.0829,45.42467,2603,5,26,19,2,22,3.55,15.0,fr,19097,52,798721,1,1,Active Shallow Crust,0.0,89.99292,0.0,05/26/2603 +6.0829,45.42467,2222,5,30,11,58,10,3.55,5.0,fr,19098,44,798723,1,1,Active Shallow Crust,240.0129,57.99671,0.0,05/30/2222 +6.0829,45.42467,6419,5,7,15,17,14,3.55,15.0,fr,19099,128,798724,1,1,Active Shallow Crust,240.0129,57.99671,0.0,05/07/6419 +6.0829,45.42467,8605,12,28,20,13,47,3.55,5.0,fr,19100,172,798726,1,1,Active Shallow Crust,0.0,89.99284,-90.0,12/28/8605 +6.0829,45.42467,4580,4,26,4,42,53,3.65,5.0,fr,19101,91,798732,1,3,Active Shallow Crust,0.0,89.98738,0.0,04/26/4580 +6.0829,45.42467,5241,8,16,22,2,50,3.65,5.0,fr,19102,104,798732,1,3,Active Shallow Crust,0.0,89.98738,0.0,08/16/5241 +6.0829,45.42467,2185,3,7,17,24,26,3.65,5.0,fr,19103,43,798732,1,3,Active Shallow Crust,0.0,89.98738,0.0,03/07/2185 +6.0829,45.42467,6875,12,25,20,43,49,3.65,15.0,fr,19104,137,798733,1,1,Active Shallow Crust,0.0,89.98738,0.0,12/25/6875 +6.0829,45.42467,5873,4,24,1,6,8,3.65,5.0,fr,19105,117,798738,1,1,Active Shallow Crust,0.0,89.98724,-90.0,04/24/5873 +6.0829,45.42467,735,1,3,20,38,58,3.65,5.0,fr,19106,14,798741,1,1,Active Shallow Crust,128.9005,89.9635,0.0,01/03/0735 +6.0829,45.42467,2599,7,13,7,24,21,3.75,15.0,fr,19107,51,798745,1,1,Active Shallow Crust,0.0,89.98875,0.0,07/13/2599 +6.0829,45.42467,5559,1,20,13,56,28,3.85,5.0,fr,19108,111,798756,1,2,Active Shallow Crust,0.0,89.98998,0.0,01/20/5559 +6.0829,45.42467,5809,2,9,20,49,0,3.85,5.0,fr,19109,116,798756,1,2,Active Shallow Crust,0.0,89.98998,0.0,02/09/5809 +6.0829,45.42467,8740,11,11,2,16,18,3.85,5.0,fr,19110,174,798762,1,1,Active Shallow Crust,0.0,89.98986,-90.0,11/11/8740 +6.0829,45.42467,9512,7,7,14,11,38,3.95,27.5,fr,19111,190,798770,1,1,Active Shallow Crust,0.0,89.99107,0.0,07/07/9512 +6.0829,45.42467,4830,1,23,20,54,34,4.05,5.0,fr,19112,96,798780,1,2,Active Shallow Crust,0.0,89.98806,0.0,01/23/4830 +6.0829,45.42467,8636,11,15,16,6,31,4.05,5.0,fr,19113,172,798780,1,2,Active Shallow Crust,0.0,89.98806,0.0,11/15/8636 +6.0829,45.42467,4653,3,1,12,27,14,4.05,15.0,fr,19114,93,798781,1,1,Active Shallow Crust,0.0,89.98806,0.0,03/01/4653 +6.0829,45.42467,175,6,2,14,55,7,4.25,5.0,fr,19115,3,798810,1,1,Active Shallow Crust,0.0,89.9904,-90.0,06/02/0175 +6.0829,45.42467,5817,6,1,1,33,13,4.45,5.0,fr,19116,116,798828,1,1,Active Shallow Crust,0.0,89.98995,0.0,06/01/5817 +6.0829,45.42467,5611,6,15,16,48,56,4.55,5.0,fr,19117,112,798840,1,1,Active Shallow Crust,0.0,89.99104,0.0,06/15/5611 +6.0829,45.42467,5307,11,4,0,50,40,4.55,5.0,fr,19118,106,798849,1,1,Active Shallow Crust,128.8942,89.98607,0.0,11/04/5307 +6.0829,45.42467,7348,2,4,0,26,6,4.95,15.0,fr,19119,146,798892,1,1,Active Shallow Crust,240.0114,58.00438,0.0,02/04/7348 +6.082906,45.42467,1295,2,14,14,26,42,6.35,7.567806,fr,19120,25,799056,1,1,Active Shallow Crust,0.0,89.99013,0.0,02/14/1295 +-0.48494,45.85029,6794,6,5,21,59,6,3.55,5.0,fr,19121,135,799200,1,1,Active Shallow Crust,0.0,89.98991,0.0,06/05/6794 +-0.48494,45.85029,6496,10,21,6,34,57,3.55,15.0,fr,19122,129,799201,1,1,Active Shallow Crust,0.0,89.98991,0.0,10/21/6496 +-0.48494,45.85029,6950,5,28,20,47,57,3.75,5.0,fr,19123,138,799224,1,3,Active Shallow Crust,0.0,89.98989,0.0,05/28/6950 +-0.48494,45.85029,2250,7,1,14,59,31,3.75,5.0,fr,19124,44,799224,1,3,Active Shallow Crust,0.0,89.98989,0.0,07/01/2250 +-0.48494,45.85029,8382,7,15,19,57,39,3.75,5.0,fr,19125,167,799224,1,3,Active Shallow Crust,0.0,89.98989,0.0,07/15/8382 +-0.48494,45.85029,4635,5,7,19,4,19,3.75,27.5,fr,19126,92,799229,1,1,Active Shallow Crust,240.0083,58.01757,0.0,05/07/4635 +-0.48494,45.85029,7109,8,16,6,7,57,3.75,5.0,fr,19127,142,799233,1,1,Active Shallow Crust,128.8967,89.96735,0.0,08/16/7109 +-0.48494,45.85029,967,10,22,3,13,57,3.85,15.0,fr,19128,19,799237,1,1,Active Shallow Crust,0.0,89.99005,0.0,10/22/0967 +-0.48494,45.85029,1016,6,24,10,45,33,3.85,5.0,fr,19129,20,799239,1,2,Active Shallow Crust,240.0108,57.99778,0.0,06/24/1016 +-0.48494,45.85029,4101,5,14,11,16,5,3.85,5.0,fr,19130,82,799239,1,2,Active Shallow Crust,240.0108,57.99778,0.0,05/14/4101 +-0.48494,45.85029,8194,4,15,12,34,20,3.85,15.0,fr,19131,163,799243,1,1,Active Shallow Crust,0.0,89.98994,-90.0,04/15/8194 +-0.48494,45.85029,9342,7,15,4,46,26,3.95,5.0,fr,19132,186,799248,1,2,Active Shallow Crust,0.0,89.99003,0.0,07/15/9342 +-0.48494,45.85029,5150,4,20,10,21,13,3.95,5.0,fr,19133,102,799248,1,2,Active Shallow Crust,0.0,89.99003,0.0,04/20/5150 +-0.48494,45.85029,8788,5,1,5,11,27,4.05,5.0,fr,19134,175,799269,1,1,Active Shallow Crust,128.8906,89.99371,0.0,05/01/8788 +-0.48494,45.85029,6909,5,28,4,3,6,4.55,5.0,fr,19135,138,799326,1,1,Active Shallow Crust,0.0,89.99003,-90.0,05/28/6909 +-0.48494,45.85029,9322,1,19,12,11,24,4.65,15.0,fr,19136,186,799333,1,1,Active Shallow Crust,0.0,89.98997,0.0,01/19/9322 +-0.48494,45.85029,3127,1,25,6,25,47,4.85,5.0,fr,19137,62,799362,1,1,Active Shallow Crust,0.0,89.98996,-90.0,01/25/3127 +-0.48494,45.85029,4917,3,26,10,56,43,5.15,5.0,fr,19138,98,799398,1,1,Active Shallow Crust,0.0,89.99001,-90.0,03/26/4917 +5.13907,41.84154,4190,11,7,14,33,10,3.55,5.0,fr,19139,83,799680,1,1,Active Shallow Crust,0.0,89.99249,0.0,11/07/4190 +5.13907,41.84154,1785,3,18,5,34,58,4.15,27.5,fr,19140,35,799763,1,1,Active Shallow Crust,128.8993,89.99247,0.0,03/18/1785 +6.78705,48.09648,2777,2,15,21,28,39,3.55,5.0,fr,19141,55,800160,1,2,Active Shallow Crust,0.0,89.99326,0.0,02/15/2777 +6.78705,48.09648,3190,12,13,5,30,44,3.55,5.0,fr,19142,63,800160,1,2,Active Shallow Crust,0.0,89.99326,0.0,12/13/3190 +6.78705,48.09648,4753,2,19,10,1,4,3.55,15.0,fr,19143,95,800161,1,2,Active Shallow Crust,0.0,89.99326,0.0,02/19/4753 +6.78705,48.09648,2218,6,18,15,33,40,3.55,15.0,fr,19144,44,800161,1,2,Active Shallow Crust,0.0,89.99326,0.0,06/18/2218 +6.78705,48.09648,7986,1,31,12,26,51,3.55,5.0,fr,19145,159,800163,1,1,Active Shallow Crust,240.0111,57.9985,0.0,01/31/7986 +6.78705,48.09648,2806,6,4,2,12,37,3.55,15.0,fr,19146,56,800164,1,1,Active Shallow Crust,240.0111,57.9985,0.0,06/04/2806 +6.78705,48.09648,7630,5,18,21,12,3,3.55,27.5,fr,19147,152,800168,1,1,Active Shallow Crust,0.0,89.99319,-90.0,05/18/7630 +6.78705,48.09648,4222,6,4,17,41,1,3.65,5.0,fr,19148,84,800172,1,1,Active Shallow Crust,0.0,89.98799,0.0,06/04/4222 +6.78705,48.09648,8258,5,27,18,19,54,3.65,15.0,fr,19149,165,800173,1,1,Active Shallow Crust,0.0,89.98799,0.0,05/27/8258 +6.78705,48.09648,5327,7,16,15,43,27,3.65,5.0,fr,19150,106,800178,1,1,Active Shallow Crust,0.0,89.98785,-90.0,07/16/5327 +6.78705,48.09648,9112,1,14,2,2,48,3.75,5.0,fr,19151,182,800184,1,2,Active Shallow Crust,0.0,89.9893,0.0,01/14/9112 +6.78705,48.09648,9279,3,30,18,55,53,3.75,5.0,fr,19152,185,800184,1,2,Active Shallow Crust,0.0,89.9893,0.0,03/30/9279 +6.78705,48.09648,7745,6,14,13,53,3,3.75,5.0,fr,19153,154,800190,1,1,Active Shallow Crust,0.0,89.98917,-90.0,06/14/7745 +6.78705,48.09648,7745,1,7,21,16,32,3.85,27.5,fr,19154,154,800198,1,1,Active Shallow Crust,0.0,89.99046,0.0,01/07/7745 +6.78705,48.09648,8052,11,13,17,15,25,3.85,5.0,fr,19155,161,800199,1,1,Active Shallow Crust,240.0115,57.99772,0.0,11/13/8052 +6.78705,48.09648,4830,11,24,12,37,18,3.85,5.0,fr,19156,96,800205,1,3,Active Shallow Crust,128.8958,89.99523,0.0,11/24/4830 +6.78705,48.09648,2976,7,14,11,18,28,3.85,5.0,fr,19157,59,800205,1,3,Active Shallow Crust,128.8958,89.99523,0.0,07/14/2976 +6.78705,48.09648,9560,4,10,20,2,10,3.85,5.0,fr,19158,191,800205,1,3,Active Shallow Crust,128.8958,89.99523,0.0,04/10/9560 +6.78705,48.09648,2177,3,13,2,35,40,3.95,5.0,fr,19159,43,800208,1,2,Active Shallow Crust,0.0,89.9915,0.0,03/13/2177 +6.78705,48.09648,1771,10,6,23,7,44,3.95,5.0,fr,19160,35,800208,1,2,Active Shallow Crust,0.0,89.9915,0.0,10/06/1771 +6.78705,48.09648,6325,9,30,22,38,14,3.95,5.0,fr,19161,126,800214,1,1,Active Shallow Crust,0.0,89.9914,-90.0,09/30/6325 +6.78705,48.09648,6150,1,11,4,28,16,4.05,5.0,fr,19162,122,800220,1,2,Active Shallow Crust,0.0,89.98864,0.0,01/11/6150 +6.78705,48.09648,8614,8,25,21,2,49,4.05,5.0,fr,19163,172,800220,1,2,Active Shallow Crust,0.0,89.98864,0.0,08/25/8614 +6.78705,48.09648,2095,1,6,0,32,44,4.05,15.0,fr,19164,41,800221,1,1,Active Shallow Crust,0.0,89.98864,0.0,01/06/2095 +6.78705,48.09648,7248,5,27,12,21,26,4.05,5.0,fr,19165,144,800226,1,1,Active Shallow Crust,0.0,89.9885,-90.0,05/27/7248 +6.78705,48.09648,7798,10,11,14,47,3,4.15,5.0,fr,19166,155,800232,1,1,Active Shallow Crust,0.0,89.98988,0.0,10/11/7798 +6.78705,48.09648,5477,8,31,5,45,55,4.15,5.0,fr,19167,109,800235,1,1,Active Shallow Crust,240.0086,57.99708,0.0,08/31/5477 +6.78705,48.09648,420,6,19,9,32,11,4.25,5.0,fr,19168,8,800244,1,1,Active Shallow Crust,0.0,89.99097,0.0,06/19/0420 +6.78705,48.09648,8373,7,17,13,15,38,4.45,15.0,fr,19169,167,800269,1,1,Active Shallow Crust,0.0,89.99044,0.0,07/17/8373 +6.78705,48.09648,7224,11,25,15,36,4,4.65,5.0,fr,19170,144,800301,1,1,Active Shallow Crust,128.8909,89.98683,0.0,11/25/7224 +6.78705,48.09648,8569,8,3,14,28,1,5.65,15.0,fr,19171,171,800413,1,1,Active Shallow Crust,0.0,89.98979,0.0,08/03/8569 +8.85071,49.83937,6197,6,1,23,15,7,3.65,15.0,fr,19172,123,800653,1,1,Active Shallow Crust,0.0,89.98841,0.0,06/01/6197 +8.85071,49.83937,7738,11,16,21,3,38,3.65,5.0,fr,19173,154,800661,1,1,Active Shallow Crust,128.9014,89.96358,0.0,11/16/7738 +8.85071,49.83937,8428,6,12,3,37,30,3.75,27.5,fr,19174,168,800666,1,1,Active Shallow Crust,0.0,89.98967,0.0,06/12/8428 +8.85071,49.83937,5364,11,27,0,49,56,3.75,5.0,fr,19175,107,800667,1,1,Active Shallow Crust,240.0074,58.0191,0.0,11/27/5364 +8.85071,49.83937,7737,6,14,4,49,27,3.85,15.0,fr,19176,154,800677,1,1,Active Shallow Crust,0.0,89.99079,0.0,06/14/7737 +8.85071,49.83937,1079,5,18,16,27,31,3.85,5.0,fr,19177,21,800679,1,1,Active Shallow Crust,240.0123,57.99633,0.0,05/18/1079 +8.85071,49.83937,2569,8,28,2,4,55,3.95,5.0,fr,19178,51,800688,1,1,Active Shallow Crust,0.0,89.99179,0.0,08/28/2569 +8.85071,49.83937,7889,2,3,9,0,49,3.95,5.0,fr,19179,157,800697,1,1,Active Shallow Crust,128.9003,89.99179,0.0,02/03/7889 +8.85071,49.83937,4675,7,24,13,43,24,4.05,27.5,fr,19180,93,800702,1,1,Active Shallow Crust,0.0,89.99268,0.0,07/24/4675 +8.85071,49.83937,71,4,8,23,18,53,4.05,15.0,fr,19181,1,800704,1,1,Active Shallow Crust,240.0064,58.00568,0.0,04/08/0071 +8.85071,49.83937,7670,1,18,8,45,12,4.05,5.0,fr,19182,153,800709,1,1,Active Shallow Crust,128.8904,89.99268,0.0,01/18/7670 +8.85071,49.83937,7236,5,16,15,57,45,4.15,5.0,fr,19183,144,800712,1,1,Active Shallow Crust,0.0,89.98696,0.0,05/16/7236 +8.85071,49.83937,8251,3,15,21,28,41,4.65,5.0,fr,19184,165,800772,1,1,Active Shallow Crust,0.0,89.989,0.0,03/15/8251 +-3.15783,50.21158,192,4,22,17,5,52,3.75,15.0,fr,19185,3,801151,1,1,Active Shallow Crust,0.0,89.98963,-90.0,04/22/0192 +-3.15783,50.21158,8775,7,2,10,14,54,3.85,5.0,fr,19186,175,801165,1,1,Active Shallow Crust,128.8951,89.99429,0.0,07/02/8775 +1.42461,41.42199,8905,5,29,21,47,21,3.55,5.0,fr,19187,178,801600,1,1,Active Shallow Crust,0.0,89.99055,0.0,05/29/8905 +1.42461,41.42199,5023,4,16,4,0,44,3.65,15.0,fr,19188,100,801619,1,1,Active Shallow Crust,0.0,89.98978,-90.0,04/16/5023 +1.42461,41.42199,7284,1,23,22,58,55,3.75,5.0,fr,19189,145,801624,1,1,Active Shallow Crust,0.0,89.98949,0.0,01/23/7284 +1.42461,41.42199,1333,6,29,12,31,15,3.75,5.0,fr,19190,26,801627,1,1,Active Shallow Crust,240.0077,58.01751,0.0,06/29/1333 +1.42461,41.42199,9814,11,10,11,10,23,4.25,5.0,fr,19191,196,801684,1,1,Active Shallow Crust,0.0,89.98987,0.0,11/10/9814 +1.42461,41.42199,915,10,27,9,17,58,4.35,5.0,fr,19192,18,801696,1,1,Active Shallow Crust,0.0,89.99022,0.0,10/27/0915 +1.42461,41.42199,7408,6,11,10,17,29,4.45,5.0,fr,19193,148,801717,1,1,Active Shallow Crust,128.8931,89.99397,0.0,06/11/7408 +2.10356,48.68079,8592,7,19,15,13,26,4.05,5.0,fr,19194,171,802140,1,1,Active Shallow Crust,0.0,89.99064,0.0,07/19/8592 +2.10356,48.68079,7538,1,24,5,25,44,4.15,5.0,fr,19195,150,802161,1,1,Active Shallow Crust,128.8972,89.99332,0.0,01/24/7538 +2.10356,48.68079,2987,4,19,20,8,17,4.35,5.0,fr,19196,59,802179,1,1,Active Shallow Crust,240.009,57.99601,0.0,04/19/2987 +-0.67474,50.77439,854,12,10,2,54,46,3.65,5.0,fr,19197,17,802572,1,2,Active Shallow Crust,0.0,89.99005,0.0,12/10/0854 +-0.67474,50.77439,9491,9,22,2,1,7,3.65,5.0,fr,19198,189,802572,1,2,Active Shallow Crust,0.0,89.99005,0.0,09/22/9491 +-0.67474,50.77439,2809,12,17,20,28,2,3.95,15.0,fr,19199,56,802609,1,1,Active Shallow Crust,0.0,89.98994,0.0,12/17/2809 +-0.67474,50.77439,2237,10,24,19,16,14,5.05,5.0,fr,19200,44,802746,1,1,Active Shallow Crust,0.0,89.98996,-90.0,10/24/2237 +2.81559,47.16224,2906,6,23,17,28,8,3.55,5.0,fr,19201,58,803040,1,1,Active Shallow Crust,0.0,89.98972,0.0,06/23/2906 +2.81559,47.16224,5226,2,1,10,48,32,3.65,27.5,fr,19202,104,803060,1,1,Active Shallow Crust,0.0,89.99073,-90.0,02/01/5226 +2.81559,47.16224,200,4,30,1,58,49,4.05,5.0,fr,19203,3,803106,1,1,Active Shallow Crust,0.0,89.99025,-90.0,04/30/0200 +2.81559,47.16224,8491,6,30,2,24,47,4.15,5.0,fr,19204,169,803115,1,1,Active Shallow Crust,240.0083,57.99753,0.0,06/30/8491 +2.81559,47.16224,9866,4,7,12,29,39,5.15,27.5,fr,19205,197,803234,1,1,Active Shallow Crust,0.0,89.99022,0.0,04/07/9866 +1.98382,47.09187,1530,10,16,12,52,24,3.65,5.0,fr,19206,30,803532,1,1,Active Shallow Crust,0.0,89.98929,0.0,10/16/1530 +1.98382,47.09187,3351,7,11,7,7,52,3.65,5.0,fr,19207,67,803535,1,2,Active Shallow Crust,240.001,58.01302,0.0,07/11/3351 +1.98382,47.09187,774,12,21,4,52,48,3.65,5.0,fr,19208,15,803535,1,2,Active Shallow Crust,240.001,58.01302,0.0,12/21/0774 +1.98382,47.09187,8020,3,18,20,33,6,3.75,5.0,fr,19209,160,803544,1,1,Active Shallow Crust,0.0,89.99046,0.0,03/18/8020 +1.98382,47.09187,6983,6,1,4,10,18,3.75,5.0,fr,19210,139,803553,1,1,Active Shallow Crust,128.8966,89.96738,0.0,06/01/6983 +1.98382,47.09187,9044,12,30,17,31,16,3.85,5.0,fr,19211,180,803556,1,1,Active Shallow Crust,0.0,89.99028,0.0,12/30/9044 +1.98382,47.09187,5147,4,2,10,59,56,3.85,15.0,fr,19212,102,803557,1,1,Active Shallow Crust,0.0,89.99028,0.0,04/02/5147 +1.98382,47.09187,2422,3,29,21,32,56,3.85,15.0,fr,19213,48,803563,1,1,Active Shallow Crust,0.0,89.99017,-90.0,03/29/2422 +1.98382,47.09187,760,12,22,15,47,52,4.05,27.5,fr,19214,15,803582,1,1,Active Shallow Crust,0.0,89.99035,0.0,12/22/0760 +1.98382,47.09187,9884,3,2,16,27,9,4.15,5.0,fr,19215,197,803592,1,1,Active Shallow Crust,0.0,89.98968,0.0,03/02/9884 +1.98382,47.09187,2631,2,6,3,54,6,4.15,15.0,fr,19216,52,803596,1,2,Active Shallow Crust,240.0085,57.99742,0.0,02/06/2631 +1.98382,47.09187,2805,11,29,7,38,41,4.15,15.0,fr,19217,56,803596,1,2,Active Shallow Crust,240.0085,57.99742,0.0,11/29/2805 +1.98382,47.09187,3543,3,31,8,56,5,4.25,27.5,fr,19218,70,803606,1,1,Active Shallow Crust,0.0,89.99004,0.0,03/31/3543 +1.98382,47.09187,4359,12,28,14,53,6,4.25,5.0,fr,19219,87,803613,1,1,Active Shallow Crust,128.8943,89.98097,0.0,12/28/4359 +1.98382,47.09187,2146,10,24,21,21,22,4.45,5.0,fr,19220,42,803628,1,1,Active Shallow Crust,0.0,89.99026,0.0,10/24/2146 +1.98382,47.09187,4917,1,8,5,48,23,4.45,27.5,fr,19221,98,803630,1,1,Active Shallow Crust,0.0,89.99026,0.0,01/08/4917 +1.98382,47.09187,9498,3,22,3,10,3,4.75,5.0,fr,19222,189,803664,1,1,Active Shallow Crust,0.0,89.99008,0.0,03/22/9498 +1.98382,47.09187,8646,9,21,14,33,53,5.15,5.0,fr,19223,172,803712,1,1,Active Shallow Crust,0.0,89.98993,0.0,09/21/8646 +-0.04751,48.16745,1018,4,20,6,2,5,3.65,5.0,fr,19224,20,804012,1,1,Active Shallow Crust,0.0,89.98997,0.0,04/20/1018 +-0.04751,48.16745,2422,3,14,10,11,50,3.65,15.0,fr,19225,48,804013,1,1,Active Shallow Crust,0.0,89.98997,0.0,03/14/2422 +-0.04751,48.16745,8525,8,22,20,11,1,3.75,5.0,fr,19226,170,804024,1,1,Active Shallow Crust,0.0,89.98998,0.0,08/22/8525 +-0.04751,48.16745,9212,1,29,0,31,7,4.25,15.0,fr,19227,184,804085,1,1,Active Shallow Crust,0.0,89.99,0.0,01/29/9212 +-0.04751,48.16745,2562,5,31,23,48,3,4.65,15.0,fr,19228,51,804133,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/31/2562 +-0.04751,48.16745,5208,1,21,16,41,55,5.45,15.0,fr,19229,104,804229,1,1,Active Shallow Crust,360.0,89.99,0.0,01/21/5208 +3.93381,44.0799,9913,7,26,16,4,21,3.55,15.0,fr,19230,198,804481,1,1,Active Shallow Crust,0.0,89.98914,0.0,07/26/9913 +3.93381,44.0799,4000,5,31,17,44,48,3.65,5.0,fr,19231,79,804492,1,1,Active Shallow Crust,0.0,89.99032,0.0,05/31/4000 +3.93381,44.0799,5646,2,20,3,9,13,3.65,15.0,fr,19232,112,804493,1,1,Active Shallow Crust,0.0,89.99032,0.0,02/20/5646 +3.93381,44.0799,7269,12,22,13,39,44,3.85,5.0,fr,19233,145,804516,1,1,Active Shallow Crust,0.0,89.98975,0.0,12/22/7269 +3.93381,44.0799,8281,1,25,10,53,8,3.95,5.0,fr,19234,165,804537,1,1,Active Shallow Crust,128.9006,89.99429,0.0,01/25/8281 +3.93381,44.0799,715,11,25,16,7,45,4.15,5.0,fr,19235,14,804552,1,1,Active Shallow Crust,0.0,89.98911,0.0,11/25/0715 +3.01659,42.74753,1892,7,8,9,7,52,3.55,5.0,fr,19236,37,804966,1,1,Active Shallow Crust,0.0,89.98876,-90.0,07/08/1892 +3.01659,42.74753,6148,12,26,18,24,30,3.55,15.0,fr,19237,122,804970,1,1,Active Shallow Crust,128.8967,89.99259,0.0,12/26/6148 +3.01659,42.74753,9169,1,17,15,13,2,3.65,5.0,fr,19238,183,804972,1,3,Active Shallow Crust,0.0,89.9901,0.0,01/17/9169 +3.01659,42.74753,8133,3,25,21,39,45,3.65,5.0,fr,19239,162,804972,1,3,Active Shallow Crust,0.0,89.9901,0.0,03/25/8133 +3.01659,42.74753,8001,11,5,18,20,25,3.65,5.0,fr,19240,160,804972,1,3,Active Shallow Crust,0.0,89.9901,0.0,11/05/8001 +3.01659,42.74753,687,6,27,19,5,2,3.65,5.0,fr,19241,13,804975,1,1,Active Shallow Crust,240.0005,58.01274,0.0,06/27/0687 +3.01659,42.74753,5147,6,3,13,37,30,3.75,5.0,fr,19242,102,804984,1,1,Active Shallow Crust,0.0,89.99118,0.0,06/03/5147 +3.01659,42.74753,5456,7,24,14,40,25,3.75,15.0,fr,19243,109,804988,1,1,Active Shallow Crust,240.0081,58.0178,0.0,07/24/5456 +3.01659,42.74753,5747,11,24,10,30,1,3.85,5.0,fr,19244,114,804996,1,1,Active Shallow Crust,0.0,89.98952,0.0,11/24/5747 +3.01659,42.74753,5749,11,25,18,21,53,3.85,15.0,fr,19245,114,804997,1,1,Active Shallow Crust,0.0,89.98952,0.0,11/25/5749 +3.01659,42.74753,6,1,18,20,34,56,3.85,15.0,fr,19246,0,805003,1,1,Active Shallow Crust,0.0,89.9894,-90.0,01/18/0006 +3.01659,42.74753,997,7,10,7,51,28,3.95,15.0,fr,19247,19,805009,1,1,Active Shallow Crust,0.0,89.99065,0.0,07/10/0997 +3.01659,42.74753,490,2,4,4,57,32,3.95,15.0,fr,19248,9,805018,1,1,Active Shallow Crust,128.9005,89.99416,0.0,02/04/0490 +3.01659,42.74753,7591,6,10,22,18,47,4.15,5.0,fr,19249,151,805032,1,1,Active Shallow Crust,0.0,89.99072,0.0,06/10/7591 +3.01659,42.74753,544,8,18,11,39,31,4.15,15.0,fr,19250,10,805033,1,1,Active Shallow Crust,0.0,89.99072,0.0,08/18/0544 +3.01659,42.74753,3974,5,29,13,38,58,4.25,27.5,fr,19251,79,805046,1,3,Active Shallow Crust,0.0,89.99007,0.0,05/29/3974 +3.01659,42.74753,770,10,13,21,12,19,4.25,27.5,fr,19252,15,805046,1,3,Active Shallow Crust,0.0,89.99007,0.0,10/13/0770 +3.01659,42.74753,336,3,22,15,55,2,4.25,27.5,fr,19253,6,805046,1,3,Active Shallow Crust,0.0,89.99007,0.0,03/22/0336 +3.01659,42.74753,3607,11,17,7,21,47,4.25,5.0,fr,19254,72,805047,1,1,Active Shallow Crust,240.0068,57.99404,0.0,11/17/3607 +3.01659,42.74753,6448,8,14,11,42,39,4.35,5.0,fr,19255,128,805056,1,1,Active Shallow Crust,0.0,89.98968,0.0,08/14/6448 +3.01659,42.74753,7151,8,26,15,46,18,4.35,5.0,fr,19256,143,805059,1,1,Active Shallow Crust,240.0074,57.99578,0.0,08/26/7151 +3.01659,42.74753,9161,4,19,21,18,38,4.75,15.0,fr,19257,183,805108,1,1,Active Shallow Crust,240.0063,58.00423,0.0,04/19/9161 +3.01659,42.74753,3798,8,18,6,20,48,5.05,5.0,fr,19258,75,805149,1,1,Active Shallow Crust,128.8871,89.99049,0.0,08/18/3798 +3.01659,42.74753,719,5,23,23,2,35,5.55,15.0,fr,19259,14,805210,1,1,Active Shallow Crust,128.8789,89.98977,0.0,05/23/0719 +-4.64862,49.40914,4392,11,8,20,9,14,3.85,27.5,fr,19260,87,805478,1,1,Active Shallow Crust,0.0,89.99071,0.0,11/08/4392 +-4.64862,49.40914,1238,5,18,7,44,33,4.25,5.0,fr,19261,24,805530,1,1,Active Shallow Crust,0.0,89.9911,-90.0,05/18/1238 +-4.64862,49.40914,9166,3,16,17,4,11,4.35,5.0,fr,19262,183,805536,1,1,Active Shallow Crust,0.0,89.98955,0.0,03/16/9166 +-4.64862,49.40914,3908,7,25,5,24,54,4.85,15.0,fr,19263,78,805597,1,1,Active Shallow Crust,0.0,89.98972,0.0,07/25/3908 +-2.25268,50.67691,4698,11,11,5,45,59,3.95,5.0,fr,19264,93,805968,1,2,Active Shallow Crust,0.0,89.98992,0.0,11/11/4698 +-2.25268,50.67691,8700,11,17,13,36,39,3.95,5.0,fr,19265,173,805968,1,2,Active Shallow Crust,0.0,89.98992,0.0,11/17/8700 +-1.07463,44.29815,2291,9,18,22,5,22,4.15,5.0,fr,19266,45,806475,1,1,Active Shallow Crust,240.0082,57.99726,0.0,09/18/2291 +6.14992,47.12168,8836,9,19,13,54,41,3.55,15.0,fr,19267,176,807361,1,2,Active Shallow Crust,0.0,89.99314,0.0,09/19/8836 +6.14992,47.12168,8483,1,18,6,28,12,3.55,15.0,fr,19268,169,807361,1,2,Active Shallow Crust,0.0,89.99314,0.0,01/18/8483 +6.14992,47.12168,3995,1,14,3,11,33,3.55,5.0,fr,19269,79,807363,1,1,Active Shallow Crust,240.0129,57.99813,0.0,01/14/3995 +6.14992,47.12168,7452,10,17,18,0,50,3.55,27.5,fr,19270,149,807365,1,1,Active Shallow Crust,240.0129,57.99804,0.0,10/17/7452 +6.14992,47.12168,8841,12,8,18,7,1,3.55,5.0,fr,19271,176,807369,1,1,Active Shallow Crust,128.8956,89.99314,0.0,12/08/8841 +6.14992,47.12168,6604,12,15,10,1,41,3.65,5.0,fr,19272,132,807372,1,1,Active Shallow Crust,0.0,89.98777,0.0,12/15/6604 +6.14992,47.12168,3605,11,17,14,7,46,3.65,15.0,fr,19273,72,807373,1,1,Active Shallow Crust,0.0,89.98777,0.0,11/17/3605 +6.14992,47.12168,3521,5,21,15,42,58,3.65,27.5,fr,19274,70,807374,1,1,Active Shallow Crust,0.0,89.98777,0.0,05/21/3521 +6.14992,47.12168,841,1,11,2,3,30,3.65,5.0,fr,19275,16,807378,1,2,Active Shallow Crust,0.0,89.98763,-90.0,01/11/0841 +6.14992,47.12168,4026,4,29,0,48,57,3.65,5.0,fr,19276,80,807378,1,2,Active Shallow Crust,0.0,89.98763,-90.0,04/29/4026 +6.14992,47.12168,8868,12,6,6,12,24,3.65,5.0,fr,19277,177,807381,1,1,Active Shallow Crust,128.8998,89.96354,0.0,12/06/8868 +6.14992,47.12168,7021,1,23,7,54,16,3.75,5.0,fr,19278,140,807384,1,1,Active Shallow Crust,0.0,89.9891,0.0,01/23/7021 +6.14992,47.12168,284,2,19,22,28,3,3.75,27.5,fr,19279,5,807386,1,1,Active Shallow Crust,0.0,89.9891,0.0,02/19/0284 +6.14992,47.12168,5060,2,16,22,40,53,3.75,5.0,fr,19280,101,807387,1,2,Active Shallow Crust,240.0091,58.01716,0.0,02/16/5060 +6.14992,47.12168,4283,4,12,10,40,25,3.75,5.0,fr,19281,85,807387,1,2,Active Shallow Crust,240.0091,58.01716,0.0,04/12/4283 +6.14992,47.12168,4777,8,15,4,35,49,3.75,5.0,fr,19282,95,807390,1,1,Active Shallow Crust,0.0,89.98898,-90.0,08/15/4777 +6.14992,47.12168,7512,2,11,22,14,23,3.85,27.5,fr,19283,150,807398,1,1,Active Shallow Crust,0.0,89.99029,0.0,02/11/7512 +6.14992,47.12168,3681,9,7,9,59,43,3.95,5.0,fr,19284,73,807408,1,1,Active Shallow Crust,0.0,89.99134,0.0,09/07/3681 +6.14992,47.12168,7806,12,24,19,7,7,3.95,5.0,fr,19285,156,807417,1,1,Active Shallow Crust,128.9003,89.99351,0.0,12/24/7806 +6.14992,47.12168,4982,9,10,15,6,24,4.15,15.0,fr,19286,99,807433,1,1,Active Shallow Crust,0.0,89.98969,0.0,09/10/4982 +6.14992,47.12168,5358,2,19,0,51,9,4.75,5.0,fr,19287,107,807507,1,1,Active Shallow Crust,240.0077,58.00433,0.0,02/19/5358 +6.14992,47.12168,3434,1,5,9,23,46,5.75,5.0,fr,19288,68,807624,1,1,Active Shallow Crust,0.0,89.99018,0.0,01/05/3434 +0.7507,45.94597,3436,10,17,19,16,48,3.55,5.0,fr,19289,68,807840,1,3,Active Shallow Crust,0.0,89.99036,0.0,10/17/3436 +0.7507,45.94597,3604,10,25,3,56,25,3.55,5.0,fr,19290,72,807840,1,3,Active Shallow Crust,0.0,89.99036,0.0,10/25/3604 +0.7507,45.94597,657,9,24,19,30,18,3.55,5.0,fr,19291,13,807840,1,3,Active Shallow Crust,0.0,89.99036,0.0,09/24/0657 +0.7507,45.94597,3525,2,19,14,27,23,3.55,5.0,fr,19292,70,807843,1,1,Active Shallow Crust,240.0122,57.99809,0.0,02/19/3525 +0.7507,45.94597,2450,8,4,5,19,23,3.65,5.0,fr,19293,48,807852,1,7,Active Shallow Crust,0.0,89.98985,0.0,08/04/2450 +0.7507,45.94597,303,3,1,14,16,47,3.65,5.0,fr,19294,6,807852,1,7,Active Shallow Crust,0.0,89.98985,0.0,03/01/0303 +0.7507,45.94597,5727,1,14,14,44,8,3.65,5.0,fr,19295,114,807852,1,7,Active Shallow Crust,0.0,89.98985,0.0,01/14/5727 +0.7507,45.94597,279,11,17,16,11,26,3.65,5.0,fr,19296,5,807852,1,7,Active Shallow Crust,0.0,89.98985,0.0,11/17/0279 +0.7507,45.94597,9586,1,31,19,11,27,3.65,5.0,fr,19297,191,807852,1,7,Active Shallow Crust,0.0,89.98985,0.0,01/31/9586 +0.7507,45.94597,6766,10,14,16,56,52,3.65,5.0,fr,19298,135,807852,1,7,Active Shallow Crust,0.0,89.98985,0.0,10/14/6766 +0.7507,45.94597,9396,2,6,16,1,37,3.65,5.0,fr,19299,187,807852,1,7,Active Shallow Crust,0.0,89.98985,0.0,02/06/9396 +0.7507,45.94597,3160,7,22,20,49,2,3.65,5.0,fr,19300,63,807858,1,1,Active Shallow Crust,0.0,89.98973,-90.0,07/22/3160 +0.7507,45.94597,4769,12,25,11,43,38,3.85,5.0,fr,19301,95,807876,1,2,Active Shallow Crust,0.0,89.99007,0.0,12/25/4769 +0.7507,45.94597,4280,6,28,10,26,50,3.85,5.0,fr,19302,85,807876,1,2,Active Shallow Crust,0.0,89.99007,0.0,06/28/4280 +0.7507,45.94597,7916,12,5,15,17,40,3.95,5.0,fr,19303,158,807894,1,1,Active Shallow Crust,0.0,89.98993,-90.0,12/05/7916 +0.7507,45.94597,7373,11,3,12,55,5,4.05,5.0,fr,19304,147,807900,1,1,Active Shallow Crust,0.0,89.99014,0.0,11/03/7373 +0.7507,45.94597,9474,2,22,16,53,35,4.35,5.0,fr,19305,189,807936,1,1,Active Shallow Crust,0.0,89.98988,0.0,02/22/9474 +0.7507,45.94597,1042,4,24,21,7,57,4.35,5.0,fr,19306,20,807945,1,1,Active Shallow Crust,128.898,89.98276,0.0,04/24/1042 +0.7507,45.94597,6418,2,28,8,27,40,5.35,15.0,fr,19307,128,808057,1,1,Active Shallow Crust,0.0,89.98995,0.0,02/28/6418 +-0.79236,49.449,2995,1,15,0,34,52,3.55,5.0,fr,19308,59,808320,1,2,Active Shallow Crust,0.0,89.99017,0.0,01/15/2995 +-0.79236,49.449,5743,12,7,17,24,1,3.55,5.0,fr,19309,114,808320,1,2,Active Shallow Crust,0.0,89.99017,0.0,12/07/5743 +-0.79236,49.449,2009,3,11,2,13,46,3.55,5.0,fr,19310,40,808329,1,1,Active Shallow Crust,128.896,89.99385,0.0,03/11/2009 +-0.79236,49.449,8412,4,10,20,34,3,3.65,5.0,fr,19311,168,808332,1,1,Active Shallow Crust,0.0,89.98978,0.0,04/10/8412 +-0.79236,49.449,9451,10,14,10,35,28,3.65,5.0,fr,19312,189,808338,1,1,Active Shallow Crust,0.0,89.98965,-90.0,10/14/9451 +-0.79236,49.449,2160,5,3,23,33,15,3.75,27.5,fr,19313,43,808346,1,1,Active Shallow Crust,0.0,89.99023,0.0,05/03/2160 +-0.79236,49.449,5839,5,14,10,45,42,3.75,15.0,fr,19314,116,808348,1,1,Active Shallow Crust,240.0088,58.01766,0.0,05/14/5839 +-0.79236,49.449,8461,7,17,14,17,28,3.85,5.0,fr,19315,169,808356,1,1,Active Shallow Crust,0.0,89.99014,0.0,07/17/8461 +-0.79236,49.449,719,10,4,2,40,8,3.85,5.0,fr,19316,14,808359,1,1,Active Shallow Crust,240.0113,57.99788,0.0,10/04/0719 +-0.79236,49.449,7556,8,6,6,1,41,3.95,15.0,fr,19317,151,808375,1,1,Active Shallow Crust,0.0,89.99006,-90.0,08/06/7556 +-0.79236,49.449,8132,9,20,0,21,15,4.05,5.0,fr,19318,162,808383,1,1,Active Shallow Crust,240.0064,58.00595,0.0,09/20/8132 +-0.79236,49.449,3976,12,5,15,36,1,4.25,15.0,fr,19319,79,808414,1,1,Active Shallow Crust,128.8938,89.98094,0.0,12/05/3976 +-0.79236,49.449,111,7,10,9,57,7,4.55,5.0,fr,19320,2,808440,1,1,Active Shallow Crust,0.0,89.98989,0.0,07/10/0111 +-3.07359,48.74244,9832,5,7,14,2,18,3.55,15.0,fr,19321,196,808801,1,1,Active Shallow Crust,0.0,89.99003,0.0,05/07/9832 +-3.07359,48.74244,3111,9,15,4,57,6,3.55,5.0,fr,19322,62,808803,1,1,Active Shallow Crust,240.013,57.998,0.0,09/15/3111 +-3.07359,48.74244,4085,8,21,1,46,46,3.55,15.0,fr,19323,81,808810,1,1,Active Shallow Crust,128.8963,89.99335,0.0,08/21/4085 +-3.07359,48.74244,4661,10,21,4,37,3,3.65,5.0,fr,19324,93,808812,1,1,Active Shallow Crust,0.0,89.99111,0.0,10/21/4661 +-3.07359,48.74244,3020,9,18,20,47,29,3.65,15.0,fr,19325,60,808813,1,1,Active Shallow Crust,0.0,89.99111,0.0,09/18/3020 +-3.07359,48.74244,5021,10,1,21,2,30,3.65,5.0,fr,19326,100,808815,1,1,Active Shallow Crust,240.0018,58.01287,0.0,10/01/5021 +-3.07359,48.74244,2080,8,4,10,8,41,3.75,5.0,fr,19327,41,808824,1,1,Active Shallow Crust,0.0,89.98943,0.0,08/04/2080 +-3.07359,48.74244,3808,6,11,4,53,47,3.75,5.0,fr,19328,76,808827,1,1,Active Shallow Crust,240.0082,58.01762,0.0,06/11/3808 +-3.07359,48.74244,2549,4,10,0,20,45,3.95,15.0,fr,19329,50,808852,1,1,Active Shallow Crust,240.0196,58.00519,0.0,04/10/2549 +-3.07359,48.74244,4098,9,13,9,38,46,4.35,15.0,fr,19330,81,808906,1,1,Active Shallow Crust,128.8974,89.98287,0.0,09/13/4098 +-3.07359,48.74244,32,12,24,1,21,2,4.65,27.5,fr,19331,0,808934,1,1,Active Shallow Crust,0.0,89.98969,0.0,12/24/0032 +4.24748,45.96011,8602,9,19,22,27,27,3.55,27.5,fr,19332,172,809282,1,1,Active Shallow Crust,0.0,89.99299,0.0,09/19/8602 +4.24748,45.96011,8872,10,22,18,10,31,3.55,27.5,fr,19333,177,809285,1,1,Active Shallow Crust,240.0131,57.99703,0.0,10/22/8872 +4.24748,45.96011,4616,10,10,10,56,43,3.75,15.0,fr,19334,92,809308,1,1,Active Shallow Crust,240.0081,58.01842,0.0,10/10/4616 +4.24748,45.96011,2827,9,30,23,12,51,4.15,5.0,fr,19335,56,809361,1,1,Active Shallow Crust,128.8987,89.99297,0.0,09/30/2827 +4.24748,45.96011,4422,10,18,17,38,41,4.35,5.0,fr,19336,88,809382,1,1,Active Shallow Crust,0.0,89.98871,-90.0,10/18/4422 +4.24748,45.96011,7239,3,9,2,16,55,4.45,5.0,fr,19337,144,809388,1,1,Active Shallow Crust,0.0,89.99005,0.0,03/09/7239 +4.24748,45.96011,5336,11,30,9,27,27,5.15,15.0,fr,19338,106,809476,1,1,Active Shallow Crust,240.0192,58.00006,0.0,11/30/5336 +0.76347,42.28792,8512,12,9,6,31,43,3.55,5.0,fr,19339,170,809760,1,1,Active Shallow Crust,0.0,89.98975,0.0,12/09/8512 +0.76347,42.28792,7264,3,20,0,3,15,3.65,5.0,fr,19340,145,809772,1,1,Active Shallow Crust,0.0,89.99003,0.0,03/20/7264 +0.76347,42.28792,4761,11,28,9,20,17,3.65,15.0,fr,19341,95,809773,1,2,Active Shallow Crust,0.0,89.99003,0.0,11/28/4761 +0.76347,42.28792,2734,6,27,4,42,35,3.65,15.0,fr,19342,54,809773,1,2,Active Shallow Crust,0.0,89.99003,0.0,06/27/2734 +0.76347,42.28792,1659,6,12,22,49,4,3.65,27.5,fr,19343,33,809777,1,1,Active Shallow Crust,240.0008,58.01271,0.0,06/12/1659 +0.76347,42.28792,4486,6,24,0,19,42,3.65,15.0,fr,19344,89,809782,1,1,Active Shallow Crust,128.9007,89.96352,0.0,06/24/4486 +0.76347,42.28792,3301,5,14,16,16,36,3.85,5.0,fr,19345,66,809796,1,1,Active Shallow Crust,0.0,89.9901,0.0,05/14/3301 +0.76347,42.28792,6987,5,30,13,29,5,3.85,15.0,fr,19346,139,809797,1,1,Active Shallow Crust,0.0,89.9901,0.0,05/30/6987 +0.76347,42.28792,9548,2,2,3,40,54,3.85,5.0,fr,19347,190,809802,1,1,Active Shallow Crust,0.0,89.98998,-90.0,02/02/9548 +0.76347,42.28792,7290,7,10,15,51,2,4.75,5.0,fr,19348,145,809904,1,1,Active Shallow Crust,0.0,89.98993,0.0,07/10/7290 +0.76347,42.28792,385,12,18,6,8,31,5.45,15.0,fr,19349,7,809989,1,1,Active Shallow Crust,0.0,89.98995,0.0,12/18/0385 +-0.89374,43.49321,6510,4,6,0,50,25,3.55,5.0,fr,19350,130,810240,1,1,Active Shallow Crust,0.0,89.98994,0.0,04/06/6510 +-0.89374,43.49321,5599,3,2,5,20,33,3.65,5.0,fr,19351,111,810252,1,1,Active Shallow Crust,0.0,89.99022,0.0,03/02/5599 +-0.89374,43.49321,7806,8,17,13,5,58,3.65,15.0,fr,19352,156,810253,1,1,Active Shallow Crust,0.0,89.99022,0.0,08/17/7806 +-0.89374,43.49321,7830,4,26,3,31,2,3.65,5.0,fr,19353,156,810258,1,1,Active Shallow Crust,0.0,89.9901,-90.0,04/26/7830 +-0.89374,43.49321,7203,11,18,20,52,39,3.75,5.0,fr,19354,144,810267,1,1,Active Shallow Crust,240.0079,58.01755,0.0,11/18/7203 +-0.89374,43.49321,9473,4,18,14,33,29,3.85,5.0,fr,19355,189,810276,1,3,Active Shallow Crust,0.0,89.99029,0.0,04/18/9473 +-0.89374,43.49321,8069,8,21,10,57,1,3.85,5.0,fr,19356,161,810276,1,3,Active Shallow Crust,0.0,89.99029,0.0,08/21/8069 +-0.89374,43.49321,3436,1,14,17,55,44,3.85,5.0,fr,19357,68,810276,1,3,Active Shallow Crust,0.0,89.99029,0.0,01/14/3436 +-0.89374,43.49321,7262,9,22,1,0,59,4.05,15.0,fr,19358,145,810304,1,1,Active Shallow Crust,240.0055,58.00573,0.0,09/22/7262 +-0.89374,43.49321,5835,7,11,5,32,40,4.55,27.5,fr,19359,116,810362,1,1,Active Shallow Crust,0.0,89.98988,0.0,07/11/5835 +-0.89374,43.49321,1536,12,30,15,30,0,4.75,5.0,fr,19360,30,810384,1,1,Active Shallow Crust,0.0,89.98989,0.0,12/30/1536 +1.64174,45.06869,3769,2,19,13,19,20,3.95,5.0,fr,19361,75,810774,1,1,Active Shallow Crust,0.0,89.98977,-90.0,02/19/3769 +1.64174,45.06869,3168,11,16,12,7,41,4.45,5.0,fr,19362,63,810834,1,1,Active Shallow Crust,0.0,89.98978,-90.0,11/16/3168 +1.64174,45.06869,9757,12,8,11,45,6,5.15,5.0,fr,19363,195,810912,1,1,Active Shallow Crust,0.0,89.99012,0.0,12/08/9757 +1.64174,45.06869,7971,6,18,18,37,54,6.35,15.0,fr,19364,159,811063,1,1,Active Shallow Crust,360.0,89.99002,-90.0,06/18/7971 +1.13648,45.57035,9614,8,30,11,55,56,3.65,5.0,fr,19365,192,811218,1,1,Active Shallow Crust,0.0,89.99046,-90.0,08/30/9614 +1.13648,45.57035,5,11,26,1,45,18,3.75,5.0,fr,19366,0,811224,1,1,Active Shallow Crust,0.0,89.99019,0.0,11/26/0005 +1.13648,45.57035,8304,5,3,8,30,56,3.95,5.0,fr,19367,166,811251,1,1,Active Shallow Crust,240.0198,58.00488,0.0,05/03/8304 +1.13648,45.57035,4716,6,4,22,9,33,4.15,15.0,fr,19368,94,811273,1,1,Active Shallow Crust,0.0,89.99027,0.0,06/04/4716 +1.13648,45.57035,1149,12,21,8,37,26,4.15,27.5,fr,19369,22,811274,1,1,Active Shallow Crust,0.0,89.99027,0.0,12/21/1149 +1.13648,45.57035,9686,10,5,15,29,17,4.35,5.0,fr,19370,193,811296,1,1,Active Shallow Crust,0.0,89.99017,0.0,10/05/9686 +1.13648,45.57035,9487,8,22,23,25,8,4.55,15.0,fr,19371,189,811324,1,1,Active Shallow Crust,240.0089,57.99734,0.0,08/22/9487 +1.13648,45.57035,132,6,4,7,10,13,5.05,15.0,fr,19372,2,811381,1,1,Active Shallow Crust,0.0,89.98995,0.0,06/04/0132 +5.97137,46.84127,9212,12,26,4,21,41,3.55,15.0,fr,19373,184,811681,1,1,Active Shallow Crust,0.0,89.9931,0.0,12/26/9212 +5.97137,46.84127,51,9,27,22,13,23,3.55,15.0,fr,19374,1,811687,1,1,Active Shallow Crust,0.0,89.99302,-90.0,09/27/0051 +5.97137,46.84127,4457,12,7,20,20,53,3.65,5.0,fr,19375,89,811692,1,2,Active Shallow Crust,0.0,89.9877,0.0,12/07/4457 +5.97137,46.84127,2759,9,29,9,24,6,3.65,5.0,fr,19376,55,811692,1,2,Active Shallow Crust,0.0,89.9877,0.0,09/29/2759 +5.97137,46.84127,2735,9,28,22,22,29,3.65,15.0,fr,19377,54,811699,1,1,Active Shallow Crust,0.0,89.98756,-90.0,09/28/2735 +5.97137,46.84127,5021,6,24,5,59,39,3.75,5.0,fr,19378,100,811704,1,2,Active Shallow Crust,0.0,89.98904,0.0,06/24/5021 +5.97137,46.84127,9140,12,31,3,33,4,3.75,5.0,fr,19379,182,811704,1,2,Active Shallow Crust,0.0,89.98904,0.0,12/31/9140 +5.97137,46.84127,161,12,20,22,59,9,3.75,5.0,fr,19380,3,811707,1,1,Active Shallow Crust,240.0094,58.01699,0.0,12/20/0161 +5.97137,46.84127,8900,9,25,21,17,10,3.75,5.0,fr,19381,177,811710,1,1,Active Shallow Crust,0.0,89.98891,-90.0,09/25/8900 +5.97137,46.84127,6313,3,6,22,18,47,3.75,15.0,fr,19382,126,811714,1,1,Active Shallow Crust,128.8959,89.9675,0.0,03/06/6313 +5.97137,46.84127,2722,5,28,0,9,3,3.95,5.0,fr,19383,54,811734,1,1,Active Shallow Crust,0.0,89.9912,-90.0,05/28/2722 +5.97137,46.84127,39,2,24,8,24,51,4.25,5.0,fr,19384,0,811764,1,1,Active Shallow Crust,0.0,89.99075,0.0,02/24/0039 +5.97137,46.84127,415,12,25,7,53,1,5.35,5.0,fr,19385,8,811902,1,1,Active Shallow Crust,0.0,89.99033,-90.0,12/25/0415 +5.82908,41.38856,3480,8,17,2,22,44,3.75,5.0,fr,19386,69,812184,1,1,Active Shallow Crust,0.0,89.98798,0.0,08/17/3480 +-2.78128,50.10748,4129,11,14,0,15,53,3.55,5.0,fr,19387,82,812640,1,1,Active Shallow Crust,0.0,89.9903,0.0,11/14/4129 +4.44031,48.54944,7227,4,5,12,32,48,3.65,15.0,fr,19388,144,813133,1,1,Active Shallow Crust,0.0,89.9881,0.0,04/05/7227 +4.44031,48.54944,320,6,15,17,50,39,3.95,5.0,fr,19389,6,813171,1,1,Active Shallow Crust,240.0194,58.00551,0.0,06/15/0320 +4.30467,44.39734,4649,6,23,11,30,39,3.55,5.0,fr,19390,92,813600,1,1,Active Shallow Crust,0.0,89.9928,0.0,06/23/4649 +4.30467,44.39734,9617,5,10,21,38,20,3.75,5.0,fr,19391,192,813624,1,2,Active Shallow Crust,0.0,89.98856,0.0,05/10/9617 +4.30467,44.39734,5319,12,2,22,14,9,3.75,5.0,fr,19392,106,813624,1,2,Active Shallow Crust,0.0,89.98856,0.0,12/02/5319 +4.30467,44.39734,5431,12,12,10,12,54,3.75,15.0,fr,19393,108,813625,1,1,Active Shallow Crust,0.0,89.98856,0.0,12/12/5431 +4.30467,44.39734,9864,1,11,14,29,29,3.75,5.0,fr,19394,197,813630,1,1,Active Shallow Crust,0.0,89.98842,-90.0,01/11/9864 +4.30467,44.39734,9471,11,7,17,27,8,3.95,5.0,fr,19395,189,813648,1,1,Active Shallow Crust,0.0,89.99091,0.0,11/07/9471 +4.30467,44.39734,9960,7,7,11,5,6,3.95,5.0,fr,19396,199,813651,1,1,Active Shallow Crust,240.0191,58.00456,0.0,07/07/9960 +4.30467,44.39734,4671,10,19,23,26,47,4.45,15.0,fr,19397,93,813715,1,1,Active Shallow Crust,0.0,89.98965,-90.0,10/19/4671 +4.30467,44.39734,5396,8,25,21,40,18,4.55,5.0,fr,19398,107,813720,1,1,Active Shallow Crust,0.0,89.99088,0.0,08/25/5396 +4.30467,44.39734,819,1,7,4,12,15,4.85,15.0,fr,19399,16,813757,1,1,Active Shallow Crust,0.0,89.99032,0.0,01/07/0819 +4.30467,44.39734,3271,10,14,4,15,41,6.15,15.0,fr,19400,65,813913,1,1,Active Shallow Crust,0.0,89.98988,0.0,10/14/3271 +2.29966,44.88072,9866,7,12,21,5,28,3.55,5.0,fr,19401,197,814083,1,1,Active Shallow Crust,240.0123,57.99783,0.0,07/12/9866 +2.29966,44.88072,209,4,28,15,50,55,3.65,15.0,fr,19402,4,814093,1,2,Active Shallow Crust,0.0,89.99045,0.0,04/28/0209 +2.29966,44.88072,5311,6,10,16,46,17,3.65,15.0,fr,19403,106,814093,1,2,Active Shallow Crust,0.0,89.99045,0.0,06/10/5311 +2.29966,44.88072,2117,9,27,18,39,13,3.75,5.0,fr,19404,42,814104,1,1,Active Shallow Crust,0.0,89.98865,0.0,09/27/2117 +2.29966,44.88072,8607,5,5,6,42,59,3.85,5.0,fr,19405,172,814116,1,1,Active Shallow Crust,0.0,89.98988,0.0,05/05/8607 +2.29966,44.88072,226,8,23,21,8,58,3.95,5.0,fr,19406,4,814128,1,2,Active Shallow Crust,0.0,89.99098,0.0,08/23/0226 +2.29966,44.88072,657,5,7,6,1,49,3.95,5.0,fr,19407,13,814128,1,2,Active Shallow Crust,0.0,89.99098,0.0,05/07/0657 +2.29966,44.88072,4720,2,6,17,1,9,4.25,5.0,fr,19408,94,814164,1,1,Active Shallow Crust,0.0,89.99043,0.0,02/06/4720 +2.29966,44.88072,8523,4,20,21,36,11,4.55,27.5,fr,19409,170,814202,1,1,Active Shallow Crust,0.0,89.98983,0.0,04/20/8523 +2.29966,44.88072,1407,2,24,20,58,43,5.25,15.0,fr,19410,28,814294,1,1,Active Shallow Crust,128.8841,89.9871,0.0,02/24/1407 +2.29966,44.88072,8865,7,28,2,37,34,5.65,27.5,fr,19411,177,814334,1,1,Active Shallow Crust,0.0,89.99013,0.0,07/28/8865 +1.83377,47.87813,6585,7,2,9,22,20,3.55,5.0,fr,19412,131,814560,1,1,Active Shallow Crust,0.0,89.98985,0.0,07/02/6585 +1.83377,47.87813,9113,3,29,17,6,45,3.55,15.0,fr,19413,182,814570,1,1,Active Shallow Crust,128.8959,89.99408,0.0,03/29/9113 +1.83377,47.87813,2276,7,13,11,4,21,3.65,5.0,fr,19414,45,814572,1,1,Active Shallow Crust,0.0,89.98945,0.0,07/13/2276 +1.83377,47.87813,2070,1,16,4,10,32,3.75,27.5,fr,19415,41,814595,1,1,Active Shallow Crust,128.8963,89.9674,0.0,01/16/2070 +1.83377,47.87813,3431,1,8,22,24,9,4.05,5.0,fr,19416,68,814620,1,2,Active Shallow Crust,0.0,89.98954,0.0,01/08/3431 +1.83377,47.87813,5871,9,13,5,2,15,4.05,5.0,fr,19417,117,814620,1,2,Active Shallow Crust,0.0,89.98954,0.0,09/13/5871 +4.37685,50.65783,3402,6,14,12,33,17,3.55,5.0,fr,19418,68,815040,1,2,Active Shallow Crust,0.0,89.98721,0.0,06/14/3402 +4.37685,50.65783,1562,12,5,2,32,42,3.55,5.0,fr,19419,31,815040,1,2,Active Shallow Crust,0.0,89.98721,0.0,12/05/1562 +4.37685,50.65783,8606,5,23,5,56,21,3.55,15.0,fr,19420,172,815041,1,2,Active Shallow Crust,0.0,89.98721,0.0,05/23/8606 +4.37685,50.65783,7397,6,3,8,20,5,3.55,15.0,fr,19421,147,815041,1,2,Active Shallow Crust,0.0,89.98721,0.0,06/03/7397 +4.37685,50.65783,452,6,14,2,50,58,3.55,15.0,fr,19422,9,815044,1,2,Active Shallow Crust,240.0121,57.99887,0.0,06/14/0452 +4.37685,50.65783,9802,1,23,1,33,34,3.55,15.0,fr,19423,196,815044,1,2,Active Shallow Crust,240.0121,57.99887,0.0,01/23/9802 +4.37685,50.65783,3549,5,25,20,53,45,3.55,15.0,fr,19424,70,815050,1,1,Active Shallow Crust,128.8958,89.99361,0.0,05/25/3549 +4.37685,50.65783,7877,9,23,16,33,50,3.65,5.0,fr,19425,157,815052,1,2,Active Shallow Crust,0.0,89.9886,0.0,09/23/7877 +4.37685,50.65783,966,4,13,16,18,42,3.65,5.0,fr,19426,19,815052,1,2,Active Shallow Crust,0.0,89.9886,0.0,04/13/0966 +4.37685,50.65783,4464,3,17,10,28,6,3.65,15.0,fr,19427,89,815053,1,1,Active Shallow Crust,0.0,89.9886,0.0,03/17/4464 +4.37685,50.65783,9160,1,9,7,26,25,3.65,5.0,fr,19428,183,815055,1,1,Active Shallow Crust,240.0008,58.01292,0.0,01/09/9160 +4.37685,50.65783,5218,2,7,1,19,37,3.65,27.5,fr,19429,104,815057,1,1,Active Shallow Crust,240.0008,58.01283,0.0,02/07/5218 +4.37685,50.65783,6066,3,18,16,41,9,3.65,5.0,fr,19430,121,815058,1,1,Active Shallow Crust,0.0,89.98847,-90.0,03/18/6066 +4.37685,50.65783,418,4,21,8,34,40,3.65,5.0,fr,19431,8,815061,1,1,Active Shallow Crust,128.9005,89.9636,0.0,04/21/0418 +4.37685,50.65783,657,7,11,19,41,44,3.75,5.0,fr,19432,13,815064,1,1,Active Shallow Crust,0.0,89.98985,0.0,07/11/0657 +4.37685,50.65783,2918,6,16,12,30,35,3.85,15.0,fr,19433,58,815077,1,1,Active Shallow Crust,0.0,89.99095,0.0,06/16/2918 +4.37685,50.65783,6044,11,26,21,11,44,3.95,5.0,fr,19434,120,815088,1,1,Active Shallow Crust,0.0,89.99194,0.0,11/26/6044 +4.37685,50.65783,212,8,31,3,35,58,3.95,5.0,fr,19435,4,815094,1,1,Active Shallow Crust,0.0,89.99184,-90.0,08/31/0212 +4.37685,50.65783,1977,9,18,3,42,9,4.15,5.0,fr,19436,39,815112,1,1,Active Shallow Crust,0.0,89.99039,0.0,09/18/1977 +4.37685,50.65783,9090,6,7,7,43,55,4.25,5.0,fr,19437,181,815127,1,1,Active Shallow Crust,240.0079,57.99422,0.0,06/07/9090 +4.37685,50.65783,268,7,25,8,49,15,4.45,5.0,fr,19438,5,815148,1,1,Active Shallow Crust,0.0,89.99093,0.0,07/25/0268 +4.37685,50.65783,7633,4,4,20,12,36,4.65,5.0,fr,19439,152,815172,1,1,Active Shallow Crust,0.0,89.98919,0.0,04/04/7633 +4.37685,50.65783,8920,2,19,2,56,5,4.65,15.0,fr,19440,178,815173,1,1,Active Shallow Crust,0.0,89.98919,0.0,02/19/8920 +4.37685,50.65783,7319,9,22,6,40,50,4.75,5.0,fr,19441,146,815184,1,1,Active Shallow Crust,0.0,89.99036,0.0,09/22/7319 +4.37685,50.65783,5107,9,24,17,32,23,4.75,15.0,fr,19442,102,815185,1,1,Active Shallow Crust,0.0,89.99036,0.0,09/24/5107 +4.37685,50.65783,1047,4,24,12,13,41,4.75,5.0,fr,19443,20,815190,1,1,Active Shallow Crust,0.0,89.99025,-90.0,04/24/1047 +2.20949,41.54997,6970,12,24,1,16,17,3.55,5.0,fr,19444,139,815520,1,5,Active Shallow Crust,0.0,89.98868,0.0,12/24/6970 +2.20949,41.54997,760,3,21,13,39,11,3.55,5.0,fr,19445,15,815520,1,5,Active Shallow Crust,0.0,89.98868,0.0,03/21/0760 +2.20949,41.54997,1461,10,29,13,15,46,3.55,5.0,fr,19446,29,815520,1,5,Active Shallow Crust,0.0,89.98868,0.0,10/29/1461 +2.20949,41.54997,1786,11,11,21,10,22,3.55,5.0,fr,19447,35,815520,1,5,Active Shallow Crust,0.0,89.98868,0.0,11/11/1786 +2.20949,41.54997,8388,6,13,20,36,56,3.55,5.0,fr,19448,167,815520,1,5,Active Shallow Crust,0.0,89.98868,0.0,06/13/8388 +2.20949,41.54997,6915,3,28,16,11,53,3.55,5.0,fr,19449,138,815523,1,2,Active Shallow Crust,240.0114,57.99862,0.0,03/28/6915 +2.20949,41.54997,3413,1,6,1,46,49,3.55,5.0,fr,19450,68,815523,1,2,Active Shallow Crust,240.0114,57.99862,0.0,01/06/3413 +2.20949,41.54997,725,4,28,18,11,43,3.55,15.0,fr,19451,14,815524,1,1,Active Shallow Crust,240.0114,57.99862,0.0,04/28/0725 +2.20949,41.54997,2911,1,13,9,10,53,3.55,5.0,fr,19452,58,815526,1,4,Active Shallow Crust,0.0,89.98855,-90.0,01/13/2911 +2.20949,41.54997,3603,2,2,23,23,18,3.55,5.0,fr,19453,72,815526,1,4,Active Shallow Crust,0.0,89.98855,-90.0,02/02/3603 +2.20949,41.54997,2644,3,22,18,30,59,3.55,5.0,fr,19454,52,815526,1,4,Active Shallow Crust,0.0,89.98855,-90.0,03/22/2644 +2.20949,41.54997,6733,8,14,18,52,25,3.55,5.0,fr,19455,134,815526,1,4,Active Shallow Crust,0.0,89.98855,-90.0,08/14/6733 +2.20949,41.54997,3372,10,13,12,30,24,3.65,5.0,fr,19456,67,815532,1,2,Active Shallow Crust,0.0,89.98991,0.0,10/13/3372 +2.20949,41.54997,4451,4,5,22,25,27,3.65,5.0,fr,19457,89,815532,1,2,Active Shallow Crust,0.0,89.98991,0.0,04/05/4451 +2.20949,41.54997,6374,4,3,15,35,26,3.65,15.0,fr,19458,127,815533,1,2,Active Shallow Crust,0.0,89.98991,0.0,04/03/6374 +2.20949,41.54997,8182,10,24,19,52,37,3.65,15.0,fr,19459,163,815533,1,2,Active Shallow Crust,0.0,89.98991,0.0,10/24/8182 +2.20949,41.54997,4725,9,4,11,44,46,3.65,5.0,fr,19460,94,815538,1,1,Active Shallow Crust,0.0,89.98979,-90.0,09/04/4725 +2.20949,41.54997,8023,7,14,3,51,2,3.65,15.0,fr,19461,160,815539,1,1,Active Shallow Crust,0.0,89.98979,-90.0,07/14/8023 +2.20949,41.54997,1042,2,18,20,22,59,3.65,5.0,fr,19462,20,815541,1,1,Active Shallow Crust,128.9016,89.96343,0.0,02/18/1042 +2.20949,41.54997,1637,3,11,21,53,38,3.75,5.0,fr,19463,32,815544,1,6,Active Shallow Crust,0.0,89.991,0.0,03/11/1637 +2.20949,41.54997,4314,4,19,22,15,54,3.75,5.0,fr,19464,86,815544,1,6,Active Shallow Crust,0.0,89.991,0.0,04/19/4314 +2.20949,41.54997,8152,4,2,21,7,45,3.75,5.0,fr,19465,163,815544,1,6,Active Shallow Crust,0.0,89.991,0.0,04/02/8152 +2.20949,41.54997,9001,10,2,11,25,58,3.75,5.0,fr,19466,180,815544,1,6,Active Shallow Crust,0.0,89.991,0.0,10/02/9001 +2.20949,41.54997,3005,8,3,12,30,44,3.75,5.0,fr,19467,60,815544,1,6,Active Shallow Crust,0.0,89.991,0.0,08/03/3005 +2.20949,41.54997,5693,10,29,1,19,50,3.75,5.0,fr,19468,113,815544,1,6,Active Shallow Crust,0.0,89.991,0.0,10/29/5693 +2.20949,41.54997,7154,10,23,1,31,35,3.75,15.0,fr,19469,143,815545,1,2,Active Shallow Crust,0.0,89.991,0.0,10/23/7154 +2.20949,41.54997,7345,6,26,8,22,58,3.75,15.0,fr,19470,146,815545,1,2,Active Shallow Crust,0.0,89.991,0.0,06/26/7345 +2.20949,41.54997,5862,3,16,21,31,23,3.75,27.5,fr,19471,117,815549,1,1,Active Shallow Crust,240.0075,58.0175,0.0,03/16/5862 +2.20949,41.54997,8835,11,30,20,28,38,3.75,15.0,fr,19472,176,815551,1,1,Active Shallow Crust,0.0,89.99091,-90.0,11/30/8835 +2.20949,41.54997,8313,9,1,23,11,2,3.75,27.5,fr,19473,166,815552,1,1,Active Shallow Crust,0.0,89.99091,-90.0,09/01/8313 +2.20949,41.54997,1457,10,10,17,36,3,3.75,5.0,fr,19474,29,815553,1,1,Active Shallow Crust,128.8977,89.96741,0.0,10/10/1457 +2.20949,41.54997,6352,8,6,15,16,4,3.85,5.0,fr,19475,127,815562,1,2,Active Shallow Crust,0.0,89.98919,-90.0,08/06/6352 +2.20949,41.54997,9370,9,27,13,29,46,3.85,5.0,fr,19476,187,815562,1,2,Active Shallow Crust,0.0,89.98919,-90.0,09/27/9370 +2.20949,41.54997,6367,5,17,0,2,42,3.85,5.0,fr,19477,127,815565,1,1,Active Shallow Crust,128.8965,89.99332,0.0,05/17/6367 +2.20949,41.54997,6490,3,19,13,0,16,3.95,5.0,fr,19478,129,815568,1,2,Active Shallow Crust,0.0,89.99048,0.0,03/19/6490 +2.20949,41.54997,1650,4,12,6,15,52,3.95,5.0,fr,19479,32,815568,1,2,Active Shallow Crust,0.0,89.99048,0.0,04/12/1650 +2.20949,41.54997,1422,12,20,5,2,7,3.95,15.0,fr,19480,28,815569,1,1,Active Shallow Crust,0.0,89.99048,0.0,12/20/1422 +2.20949,41.54997,1521,5,29,19,48,48,3.95,15.0,fr,19481,30,815572,1,1,Active Shallow Crust,240.0193,58.00475,0.0,05/29/1521 +2.20949,41.54997,1140,9,16,3,3,58,4.15,15.0,fr,19482,22,815596,1,1,Active Shallow Crust,240.0078,57.99699,0.0,09/16/1140 +2.20949,41.54997,2890,9,24,10,52,8,4.15,5.0,fr,19483,57,815598,1,1,Active Shallow Crust,0.0,89.99043,-90.0,09/24/2890 +2.20949,41.54997,9392,3,2,5,34,9,4.15,5.0,fr,19484,187,815601,1,1,Active Shallow Crust,128.898,89.99432,0.0,03/02/9392 +2.20949,41.54997,7213,7,15,6,0,36,4.25,5.0,fr,19485,144,815610,1,1,Active Shallow Crust,0.0,89.98977,-90.0,07/15/7213 +2.20949,41.54997,8656,6,23,17,5,9,4.35,5.0,fr,19486,173,815616,1,1,Active Shallow Crust,0.0,89.98949,0.0,06/23/8656 +2.20949,41.54997,4650,4,19,6,57,27,4.35,5.0,fr,19487,92,815622,1,1,Active Shallow Crust,0.0,89.98936,-90.0,04/19/4650 +2.20949,41.54997,4781,5,1,12,42,38,4.45,5.0,fr,19488,95,815628,1,1,Active Shallow Crust,0.0,89.99063,0.0,05/01/4781 +2.20949,41.54997,3286,10,6,9,39,9,4.65,5.0,fr,19489,65,815652,1,1,Active Shallow Crust,0.0,89.99043,0.0,10/06/3286 +2.20949,41.54997,3631,2,18,22,57,36,4.75,5.0,fr,19490,72,815664,1,2,Active Shallow Crust,0.0,89.98957,0.0,02/18/3631 +2.20949,41.54997,2983,11,29,5,29,53,4.75,5.0,fr,19491,59,815664,1,2,Active Shallow Crust,0.0,89.98957,0.0,11/29/2983 +2.20949,41.54997,5362,7,19,2,5,23,4.75,15.0,fr,19492,107,815665,1,1,Active Shallow Crust,0.0,89.98957,0.0,07/19/5362 +2.20949,41.54997,2577,4,30,23,36,57,4.95,15.0,fr,19493,51,815689,1,1,Active Shallow Crust,0.0,89.99021,0.0,04/30/2577 +2.20949,41.54997,9236,2,22,0,36,23,4.95,5.0,fr,19494,184,815691,1,1,Active Shallow Crust,240.0099,58.00393,0.0,02/22/9236 +2.190066,41.57514,279,11,3,23,49,47,6.75,10.17163,fr,19495,5,815907,1,1,Active Shallow Crust,240.108,58.00009,0.0,11/03/0279 +0.92812,42.98433,3364,6,28,15,24,40,3.55,5.0,fr,19496,67,816000,1,1,Active Shallow Crust,0.0,89.98986,0.0,06/28/3364 +0.92812,42.98433,4049,11,5,22,41,51,3.55,27.5,fr,19497,80,816002,1,1,Active Shallow Crust,0.0,89.98986,0.0,11/05/4049 +0.92812,42.98433,4507,12,30,1,45,42,3.65,15.0,fr,19498,90,816019,1,1,Active Shallow Crust,0.0,89.99002,-90.0,12/30/4507 +0.92812,42.98433,7133,2,3,16,22,12,3.75,5.0,fr,19499,142,816024,1,3,Active Shallow Crust,0.0,89.98975,0.0,02/03/7133 +0.92812,42.98433,6077,10,28,23,46,31,3.75,5.0,fr,19500,121,816024,1,3,Active Shallow Crust,0.0,89.98975,0.0,10/28/6077 +0.92812,42.98433,3277,2,7,19,14,38,3.75,5.0,fr,19501,65,816024,1,3,Active Shallow Crust,0.0,89.98975,0.0,02/07/3277 +0.92812,42.98433,3920,7,7,13,26,41,3.75,27.5,fr,19502,78,816026,1,1,Active Shallow Crust,0.0,89.98975,0.0,07/07/3920 +0.92812,42.98433,5354,1,28,9,4,14,3.75,5.0,fr,19503,107,816033,1,3,Active Shallow Crust,128.8969,89.96736,0.0,01/28/5354 +0.92812,42.98433,7701,7,1,8,1,56,3.75,5.0,fr,19504,154,816033,1,3,Active Shallow Crust,128.8969,89.96736,0.0,07/01/7701 +0.92812,42.98433,9482,10,22,11,37,33,3.75,5.0,fr,19505,189,816033,1,3,Active Shallow Crust,128.8969,89.96736,0.0,10/22/9482 +0.92812,42.98433,36,5,13,10,30,54,3.85,5.0,fr,19506,0,816036,1,1,Active Shallow Crust,0.0,89.99021,0.0,05/13/0036 +0.92812,42.98433,2296,1,13,15,41,7,3.95,5.0,fr,19507,45,816048,1,4,Active Shallow Crust,0.0,89.99011,0.0,01/13/2296 +0.92812,42.98433,7433,6,15,3,39,38,3.95,5.0,fr,19508,148,816048,1,4,Active Shallow Crust,0.0,89.99011,0.0,06/15/7433 +0.92812,42.98433,4889,7,19,10,49,51,3.95,5.0,fr,19509,97,816048,1,4,Active Shallow Crust,0.0,89.99011,0.0,07/19/4889 +0.92812,42.98433,1429,1,7,12,29,1,3.95,5.0,fr,19510,28,816048,1,4,Active Shallow Crust,0.0,89.99011,0.0,01/07/1429 +0.92812,42.98433,4054,9,17,7,52,18,3.95,15.0,fr,19511,81,816049,1,2,Active Shallow Crust,0.0,89.99011,0.0,09/17/4054 +0.92812,42.98433,7633,7,10,23,44,14,3.95,15.0,fr,19512,152,816049,1,2,Active Shallow Crust,0.0,89.99011,0.0,07/10/7633 +0.92812,42.98433,601,1,19,16,38,4,4.45,5.0,fr,19513,12,816108,1,2,Active Shallow Crust,0.0,89.98986,0.0,01/19/0601 +0.92812,42.98433,3253,3,28,20,18,10,4.45,5.0,fr,19514,65,816108,1,2,Active Shallow Crust,0.0,89.98986,0.0,03/28/3253 +0.92812,42.98433,8799,5,26,10,3,39,4.55,5.0,fr,19515,175,816120,1,1,Active Shallow Crust,0.0,89.99008,0.0,05/26/8799 +0.92812,42.98433,618,4,18,3,26,20,4.65,27.5,fr,19516,12,816140,1,1,Active Shallow Crust,0.0,89.99001,-90.0,04/18/0618 +0.92812,42.98433,505,2,8,19,8,6,4.85,5.0,fr,19517,10,816156,1,1,Active Shallow Crust,0.0,89.99009,0.0,02/08/0505 +0.92812,42.98433,9137,1,8,11,28,29,4.95,15.0,fr,19518,182,816169,1,1,Active Shallow Crust,0.0,89.99007,0.0,01/08/9137 +4.62603,46.9188,4850,4,27,11,6,28,3.55,15.0,fr,19519,96,816481,1,1,Active Shallow Crust,0.0,89.99311,0.0,04/27/4850 +4.62603,46.9188,1391,7,30,18,41,38,3.65,5.0,fr,19520,27,816492,1,1,Active Shallow Crust,0.0,89.98772,0.0,07/30/1391 +4.62603,46.9188,4308,11,9,23,51,9,3.75,5.0,fr,19521,86,816513,1,1,Active Shallow Crust,128.8968,89.9675,0.0,11/09/4308 +4.62603,46.9188,428,4,13,23,4,32,3.85,5.0,fr,19522,8,816516,1,2,Active Shallow Crust,0.0,89.99025,0.0,04/13/0428 +4.62603,46.9188,2529,9,25,19,30,17,3.85,5.0,fr,19523,50,816516,1,2,Active Shallow Crust,0.0,89.99025,0.0,09/25/2529 +4.62603,46.9188,4064,8,27,17,38,46,3.85,15.0,fr,19524,81,816517,1,1,Active Shallow Crust,0.0,89.99025,0.0,08/27/4064 +4.62603,46.9188,2958,8,13,9,33,39,4.05,5.0,fr,19525,59,816546,1,1,Active Shallow Crust,0.0,89.98824,-90.0,08/13/2958 +4.62603,46.9188,5879,5,2,6,40,23,4.15,5.0,fr,19526,117,816555,1,1,Active Shallow Crust,240.0087,57.99736,0.0,05/02/5879 +4.62603,46.9188,2402,12,7,18,19,30,4.45,5.0,fr,19527,48,816588,1,1,Active Shallow Crust,0.0,89.99023,0.0,12/07/2402 +4.62603,46.9188,8493,1,7,5,28,49,4.55,5.0,fr,19528,169,816606,1,1,Active Shallow Crust,0.0,89.98898,-90.0,01/07/8493 +4.62603,46.9188,5014,9,20,18,11,45,4.55,5.0,fr,19529,100,816609,1,1,Active Shallow Crust,128.8942,89.98567,0.0,09/20/5014 +4.62603,46.9188,939,2,22,19,27,5,5.15,5.0,fr,19530,18,816672,1,1,Active Shallow Crust,0.0,89.99017,0.0,02/22/0939 +6.44476,48.81555,8214,6,1,17,39,20,3.65,5.0,fr,19531,164,816972,1,1,Active Shallow Crust,0.0,89.98817,0.0,06/01/8214 +6.44476,48.81555,1857,10,14,11,37,35,3.65,27.5,fr,19532,37,816974,1,1,Active Shallow Crust,0.0,89.98817,0.0,10/14/1857 +6.44476,48.81555,575,5,6,10,27,6,3.65,5.0,fr,19533,11,816975,1,1,Active Shallow Crust,240.0005,58.01346,0.0,05/06/0575 +6.44476,48.81555,777,10,31,14,10,56,4.15,15.0,fr,19534,15,817033,1,1,Active Shallow Crust,0.0,89.99001,0.0,10/31/0777 +6.44476,48.81555,9603,8,13,4,8,4,4.35,5.0,fr,19535,192,817056,1,1,Active Shallow Crust,0.0,89.98943,0.0,08/13/9603 +6.44476,48.81555,506,11,1,9,30,33,4.45,5.0,fr,19536,10,817068,1,1,Active Shallow Crust,0.0,89.99058,0.0,11/01/0506 +6.78861,44.32444,505,3,21,22,23,58,3.55,5.0,fr,19537,10,817443,1,2,Active Shallow Crust,240.012,57.99783,0.0,03/21/0505 +6.78861,44.32444,3901,6,20,17,37,23,3.55,5.0,fr,19538,78,817443,1,2,Active Shallow Crust,240.012,57.99783,0.0,06/20/3901 +6.78861,44.32444,1850,6,22,20,52,13,3.55,5.0,fr,19539,36,817446,1,1,Active Shallow Crust,0.0,89.99271,-90.0,06/22/1850 +6.78861,44.32444,3470,10,27,21,12,46,3.65,5.0,fr,19540,69,817452,1,1,Active Shallow Crust,0.0,89.98714,0.0,10/27/3470 +6.78861,44.32444,1366,3,31,14,21,28,3.65,5.0,fr,19541,27,817455,1,1,Active Shallow Crust,239.9999,58.01331,0.0,03/31/1366 +6.78861,44.32444,748,12,27,21,23,12,3.65,5.0,fr,19542,14,817458,1,1,Active Shallow Crust,0.0,89.98699,-90.0,12/27/0748 +6.78861,44.32444,8666,12,21,12,19,37,3.75,5.0,fr,19543,173,817464,1,2,Active Shallow Crust,0.0,89.98854,0.0,12/21/8666 +6.78861,44.32444,7982,12,21,1,41,13,3.75,5.0,fr,19544,159,817464,1,2,Active Shallow Crust,0.0,89.98854,0.0,12/21/7982 +6.78861,44.32444,3984,7,3,1,11,14,3.75,27.5,fr,19545,79,817469,1,1,Active Shallow Crust,240.0081,58.01815,0.0,07/03/3984 +6.78861,44.32444,9926,11,26,17,36,46,3.75,5.0,fr,19546,198,817473,1,1,Active Shallow Crust,128.8964,89.96745,0.0,11/26/9926 +6.78861,44.32444,2892,4,15,2,28,9,3.85,15.0,fr,19547,57,817477,1,1,Active Shallow Crust,0.0,89.98978,0.0,04/15/2892 +6.78861,44.32444,5899,5,18,15,36,10,3.95,5.0,fr,19548,117,817488,1,1,Active Shallow Crust,0.0,89.9909,0.0,05/18/5899 +6.78861,44.32444,9729,9,23,1,35,48,3.95,15.0,fr,19549,194,817489,1,3,Active Shallow Crust,0.0,89.9909,0.0,09/23/9729 +6.78861,44.32444,4841,6,10,8,51,55,3.95,15.0,fr,19550,96,817489,1,3,Active Shallow Crust,0.0,89.9909,0.0,06/10/4841 +6.78861,44.32444,5357,10,15,9,39,53,3.95,15.0,fr,19551,107,817489,1,3,Active Shallow Crust,0.0,89.9909,0.0,10/15/5357 +6.78861,44.32444,4291,4,28,4,10,46,3.95,5.0,fr,19552,85,817494,1,1,Active Shallow Crust,0.0,89.99079,-90.0,04/28/4291 +6.78861,44.32444,6240,8,8,23,13,18,4.05,15.0,fr,19553,124,817501,1,1,Active Shallow Crust,0.0,89.99189,0.0,08/08/6240 +6.78861,44.32444,6604,9,5,20,29,16,4.25,5.0,fr,19554,132,817524,1,1,Active Shallow Crust,0.0,89.99033,0.0,09/05/6604 +6.78861,44.32444,1129,10,9,12,22,47,4.25,15.0,fr,19555,22,817525,1,1,Active Shallow Crust,0.0,89.99033,0.0,10/09/1129 +6.78861,44.32444,6666,5,1,6,15,49,4.25,27.5,fr,19556,133,817526,1,1,Active Shallow Crust,0.0,89.99033,0.0,05/01/6666 +6.78861,44.32444,9419,2,19,1,30,4,4.55,5.0,fr,19557,188,817563,1,1,Active Shallow Crust,240.0086,57.99729,0.0,02/19/9419 +6.78861,44.32444,9751,6,8,9,20,16,5.35,15.0,fr,19558,195,817657,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/08/9751 +2.17221,52.17892,2784,11,5,6,20,52,3.55,27.5,fr,19559,55,817928,1,1,Active Shallow Crust,0.0,89.99062,-90.0,11/05/2784 +2.17221,52.17892,3651,12,18,4,59,30,4.55,15.0,fr,19560,73,818044,1,1,Active Shallow Crust,240.0111,57.99785,0.0,12/18/3651 +6.42803,43.08104,4184,8,26,5,20,36,4.35,15.0,fr,19561,83,818500,1,1,Active Shallow Crust,240.0077,57.99602,0.0,08/26/4184 +3.79768,50.08076,746,5,9,8,38,10,3.55,5.0,fr,19562,14,818886,1,1,Active Shallow Crust,0.0,89.99018,-90.0,05/09/0746 +3.79768,50.08076,7500,1,29,7,23,9,3.65,27.5,fr,19563,149,818894,1,1,Active Shallow Crust,0.0,89.99135,0.0,01/29/7500 +3.79768,50.08076,9224,8,1,17,53,33,3.85,5.0,fr,19564,184,818925,1,1,Active Shallow Crust,128.8954,89.99313,0.0,08/01/9224 +3.79768,50.08076,7236,9,19,21,59,23,4.05,5.0,fr,19565,144,818940,1,1,Active Shallow Crust,0.0,89.99091,0.0,09/19/7236 +3.79768,50.08076,9839,1,30,0,16,52,4.55,15.0,fr,19566,196,819004,1,1,Active Shallow Crust,240.0104,57.99748,0.0,01/30/9839 +-4.17933,48.64081,2943,8,14,23,26,12,3.65,15.0,fr,19567,58,819373,1,1,Active Shallow Crust,0.0,89.98812,0.0,08/14/2943 +-4.17933,48.64081,8990,10,14,14,16,33,3.75,5.0,fr,19568,179,819384,1,2,Active Shallow Crust,0.0,89.98942,0.0,10/14/8990 +-4.17933,48.64081,5736,12,4,16,49,14,3.75,5.0,fr,19569,114,819384,1,2,Active Shallow Crust,0.0,89.98942,0.0,12/04/5736 +-4.17933,48.64081,3940,2,7,17,37,34,4.15,5.0,fr,19570,78,819432,1,1,Active Shallow Crust,0.0,89.98998,0.0,02/07/3940 +-4.17933,48.64081,2273,4,20,19,8,15,4.15,15.0,fr,19571,45,819433,1,1,Active Shallow Crust,0.0,89.98998,0.0,04/20/2273 +-4.17933,48.64081,5299,2,11,17,31,33,4.15,5.0,fr,19572,105,819438,1,1,Active Shallow Crust,0.0,89.98987,-90.0,02/11/5299 +-4.17933,48.64081,7065,2,2,4,47,58,4.45,5.0,fr,19573,141,819474,1,1,Active Shallow Crust,0.0,89.99043,-90.0,02/02/7065 +-4.17933,48.64081,7760,10,18,6,39,42,4.85,5.0,fr,19574,155,819516,1,1,Active Shallow Crust,0.0,89.98956,0.0,10/18/7760 +-4.17933,48.64081,7658,3,10,22,50,22,4.85,15.0,fr,19575,153,819517,1,1,Active Shallow Crust,0.0,89.98956,0.0,03/10/7658 +2.74894,48.0522,3987,8,1,4,5,46,3.65,27.5,fr,19576,79,819854,1,1,Active Shallow Crust,0.0,89.99099,0.0,08/01/3987 +2.74894,48.0522,404,4,23,13,47,32,3.85,15.0,fr,19577,8,819877,1,1,Active Shallow Crust,0.0,89.99046,0.0,04/23/0404 +2.74894,48.0522,5502,7,14,2,17,29,4.05,15.0,fr,19578,110,819901,1,1,Active Shallow Crust,0.0,89.99052,0.0,07/14/5502 +2.74894,48.0522,5474,12,25,20,21,1,4.25,5.0,fr,19579,109,819924,1,1,Active Shallow Crust,0.0,89.98946,0.0,12/25/5474 +2.74894,48.0522,4249,10,28,12,44,10,4.45,5.0,fr,19580,84,819948,1,1,Active Shallow Crust,0.0,89.99043,0.0,10/28/4249 +0.04722,48.70534,1019,3,10,3,36,22,3.75,15.0,fr,19581,20,820345,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/10/1019 +0.04722,48.70534,6330,10,18,21,28,46,3.85,5.0,fr,19582,126,820356,1,4,Active Shallow Crust,0.0,89.98999,0.0,10/18/6330 +0.04722,48.70534,2998,12,7,16,23,28,3.85,5.0,fr,19583,59,820356,1,4,Active Shallow Crust,0.0,89.98999,0.0,12/07/2998 +0.04722,48.70534,4590,11,30,0,58,17,3.85,5.0,fr,19584,91,820356,1,4,Active Shallow Crust,0.0,89.98999,0.0,11/30/4590 +0.04722,48.70534,7241,3,31,12,30,17,3.85,5.0,fr,19585,144,820356,1,4,Active Shallow Crust,0.0,89.98999,0.0,03/31/7241 +0.04722,48.70534,914,2,24,7,41,39,4.05,5.0,fr,19586,18,820386,1,1,Active Shallow Crust,0.0,89.99001,-90.0,02/24/0914 +0.04722,48.70534,4311,12,19,5,54,26,4.15,5.0,fr,19587,86,820392,1,1,Active Shallow Crust,0.0,89.98999,0.0,12/19/4311 +0.04722,48.70534,9289,6,4,13,1,19,4.85,5.0,fr,19588,185,820476,1,1,Active Shallow Crust,0.0,89.99,0.0,06/04/9289 +-0.17709,44.92656,498,6,14,8,7,24,3.55,15.0,fr,19589,9,820801,1,1,Active Shallow Crust,0.0,89.98996,0.0,06/14/0498 +-0.17709,44.92656,5622,1,9,11,49,2,3.65,5.0,fr,19590,112,820812,1,1,Active Shallow Crust,0.0,89.99006,0.0,01/09/5622 +-0.17709,44.92656,6428,7,4,0,45,30,3.65,27.5,fr,19591,128,820814,1,1,Active Shallow Crust,0.0,89.99006,0.0,07/04/6428 +-0.17709,44.92656,7433,12,6,14,5,16,3.75,15.0,fr,19592,148,820825,1,1,Active Shallow Crust,0.0,89.99007,0.0,12/06/7433 +-0.17709,44.92656,9321,4,24,6,28,46,3.95,5.0,fr,19593,186,820848,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/24/9321 +-0.17709,44.92656,6212,11,26,16,35,5,3.95,15.0,fr,19594,124,820849,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/26/6212 +-0.17709,44.92656,5106,12,2,11,22,30,3.95,5.0,fr,19595,102,820851,1,1,Active Shallow Crust,240.0196,58.00492,0.0,12/02/5106 +-0.17709,44.92656,9915,3,1,22,39,27,4.05,15.0,fr,19596,198,820861,1,1,Active Shallow Crust,0.0,89.98996,0.0,03/01/9915 +-0.17709,44.92656,2955,8,23,22,32,56,4.55,5.0,fr,19597,59,820920,1,1,Active Shallow Crust,0.0,89.98998,0.0,08/23/2955 +-0.17709,44.92656,1376,2,17,23,15,21,4.85,5.0,fr,19598,27,820962,1,1,Active Shallow Crust,0.0,89.99,-90.0,02/17/1376 +6.36405,49.30879,9093,9,4,13,35,24,3.65,5.0,fr,19599,181,821292,1,1,Active Shallow Crust,0.0,89.98828,0.0,09/04/9093 +6.36405,49.30879,2613,8,5,12,27,46,3.75,5.0,fr,19600,52,821313,1,1,Active Shallow Crust,128.8955,89.96754,0.0,08/05/2613 +6.36405,49.30879,1328,8,18,20,23,59,3.95,5.0,fr,19601,26,821328,1,1,Active Shallow Crust,0.0,89.99171,0.0,08/18/1328 +6.36405,49.30879,1644,3,26,23,42,27,4.15,5.0,fr,19602,32,821352,1,1,Active Shallow Crust,0.0,89.99011,0.0,03/26/1644 +2.51781,43.20236,1549,4,13,9,54,20,3.55,5.0,fr,19603,30,822240,1,1,Active Shallow Crust,0.0,89.98898,0.0,04/13/1549 +2.51781,43.20236,6575,2,20,20,48,48,3.55,27.5,fr,19604,131,822245,1,1,Active Shallow Crust,240.0112,57.99817,0.0,02/20/6575 +2.51781,43.20236,8764,2,27,23,3,27,3.95,5.0,fr,19605,175,822297,1,1,Active Shallow Crust,128.9008,89.9942,0.0,02/27/8764 +2.51781,43.20236,5267,4,27,12,47,47,4.25,5.0,fr,19606,105,822324,1,1,Active Shallow Crust,0.0,89.99015,0.0,04/27/5267 +2.51781,43.20236,5202,6,26,6,51,39,4.25,5.0,fr,19607,104,822330,1,1,Active Shallow Crust,0.0,89.99004,-90.0,06/26/5202 +2.51781,43.20236,1987,5,11,12,12,3,4.35,5.0,fr,19608,39,822336,1,1,Active Shallow Crust,0.0,89.98975,0.0,05/11/1987 +5.7907,41.65491,8542,1,23,6,43,49,3.55,5.0,fr,19609,170,822723,1,1,Active Shallow Crust,240.0116,57.99789,0.0,01/23/8542 +5.7907,41.65491,6371,10,20,2,27,1,3.65,5.0,fr,19610,127,822732,1,1,Active Shallow Crust,0.0,89.99329,0.0,10/20/6371 +5.7907,41.65491,1411,1,27,5,29,55,3.65,5.0,fr,19611,28,822741,1,1,Active Shallow Crust,128.9018,89.96343,0.0,01/27/1411 +6.84009,44.72771,6984,6,1,21,58,30,3.55,5.0,fr,19612,139,823200,1,5,Active Shallow Crust,0.0,89.99284,0.0,06/01/6984 +6.84009,44.72771,4961,3,12,13,21,38,3.55,5.0,fr,19613,99,823200,1,5,Active Shallow Crust,0.0,89.99284,0.0,03/12/4961 +6.84009,44.72771,7028,3,13,20,30,21,3.55,5.0,fr,19614,140,823200,1,5,Active Shallow Crust,0.0,89.99284,0.0,03/13/7028 +6.84009,44.72771,6978,7,26,17,6,54,3.55,5.0,fr,19615,139,823200,1,5,Active Shallow Crust,0.0,89.99284,0.0,07/26/6978 +6.84009,44.72771,8229,1,4,15,12,22,3.55,5.0,fr,19616,164,823200,1,5,Active Shallow Crust,0.0,89.99284,0.0,01/04/8229 +6.84009,44.72771,9871,1,27,6,38,51,3.55,15.0,fr,19617,197,823201,1,1,Active Shallow Crust,0.0,89.99284,0.0,01/27/9871 +6.84009,44.72771,4628,10,12,4,28,10,3.55,27.5,fr,19618,92,823202,1,1,Active Shallow Crust,0.0,89.99284,0.0,10/12/4628 +6.84009,44.72771,2708,3,6,17,55,59,3.55,5.0,fr,19619,54,823206,1,1,Active Shallow Crust,0.0,89.99275,-90.0,03/06/2708 +6.84009,44.72771,7555,8,13,12,37,59,3.65,5.0,fr,19620,151,823212,1,1,Active Shallow Crust,0.0,89.98723,0.0,08/13/7555 +6.84009,44.72771,5276,1,14,3,27,4,3.65,15.0,fr,19621,105,823213,1,1,Active Shallow Crust,0.0,89.98723,0.0,01/14/5276 +6.84009,44.72771,6574,10,12,10,16,26,3.65,27.5,fr,19622,131,823214,1,1,Active Shallow Crust,0.0,89.98723,0.0,10/12/6574 +6.84009,44.72771,2957,4,21,16,23,26,3.65,15.0,fr,19623,59,823222,1,1,Active Shallow Crust,128.8997,89.96349,0.0,04/21/2957 +6.84009,44.72771,4599,9,29,11,54,33,3.75,5.0,fr,19624,91,823224,1,5,Active Shallow Crust,0.0,89.98862,0.0,09/29/4599 +6.84009,44.72771,5184,4,20,23,13,2,3.75,5.0,fr,19625,103,823224,1,5,Active Shallow Crust,0.0,89.98862,0.0,04/20/5184 +6.84009,44.72771,228,10,2,4,6,21,3.75,5.0,fr,19626,4,823224,1,5,Active Shallow Crust,0.0,89.98862,0.0,10/02/0228 +6.84009,44.72771,2393,8,31,23,49,34,3.75,5.0,fr,19627,47,823224,1,5,Active Shallow Crust,0.0,89.98862,0.0,08/31/2393 +6.84009,44.72771,7753,7,26,16,0,27,3.75,5.0,fr,19628,155,823224,1,5,Active Shallow Crust,0.0,89.98862,0.0,07/26/7753 +6.84009,44.72771,2490,3,27,23,48,15,3.75,15.0,fr,19629,49,823225,1,1,Active Shallow Crust,0.0,89.98862,0.0,03/27/2490 +6.84009,44.72771,7620,7,22,4,56,42,3.75,27.5,fr,19630,152,823226,1,1,Active Shallow Crust,0.0,89.98862,0.0,07/22/7620 +6.84009,44.72771,1317,7,12,22,51,6,3.85,5.0,fr,19631,26,823236,1,3,Active Shallow Crust,0.0,89.98985,0.0,07/12/1317 +6.84009,44.72771,8470,10,6,2,4,2,3.85,5.0,fr,19632,169,823236,1,3,Active Shallow Crust,0.0,89.98985,0.0,10/06/8470 +6.84009,44.72771,1777,3,22,12,10,44,3.85,5.0,fr,19633,35,823236,1,3,Active Shallow Crust,0.0,89.98985,0.0,03/22/1777 +6.84009,44.72771,235,2,4,18,46,31,3.85,15.0,fr,19634,4,823237,1,1,Active Shallow Crust,0.0,89.98985,0.0,02/04/0235 +6.84009,44.72771,9928,9,24,12,20,56,3.85,5.0,fr,19635,198,823239,1,1,Active Shallow Crust,240.0104,57.99806,0.0,09/24/9928 +6.84009,44.72771,3144,1,1,8,27,12,3.85,15.0,fr,19636,62,823240,1,1,Active Shallow Crust,240.0104,57.99806,0.0,01/01/3144 +6.84009,44.72771,2604,7,26,22,12,29,3.95,5.0,fr,19637,52,823251,1,2,Active Shallow Crust,240.0188,58.00556,0.0,07/26/2604 +6.84009,44.72771,6883,4,8,15,35,20,3.95,5.0,fr,19638,137,823251,1,2,Active Shallow Crust,240.0188,58.00556,0.0,04/08/6883 +6.84009,44.72771,6903,2,8,21,56,11,3.95,5.0,fr,19639,138,823254,1,1,Active Shallow Crust,0.0,89.99085,-90.0,02/08/6903 +6.84009,44.72771,9846,2,21,19,33,47,3.95,5.0,fr,19640,196,823257,1,1,Active Shallow Crust,128.9002,89.99322,0.0,02/21/9846 +6.84009,44.72771,8023,8,25,20,30,48,4.05,5.0,fr,19641,160,823260,1,1,Active Shallow Crust,0.0,89.99194,0.0,08/25/8023 +6.84009,44.72771,4038,7,12,14,20,19,4.05,5.0,fr,19642,80,823269,1,1,Active Shallow Crust,128.8896,89.99396,0.0,07/12/4038 +6.84009,44.72771,8936,12,25,7,57,33,4.15,5.0,fr,19643,178,823272,1,1,Active Shallow Crust,0.0,89.98923,0.0,12/25/8936 +6.84009,44.72771,5399,7,26,15,6,56,4.15,15.0,fr,19644,107,823273,1,1,Active Shallow Crust,0.0,89.98923,0.0,07/26/5399 +6.84009,44.72771,3467,5,4,16,46,9,4.15,5.0,fr,19645,69,823275,1,1,Active Shallow Crust,240.008,57.99771,0.0,05/04/3467 +6.84009,44.72771,2219,10,16,17,29,50,4.25,15.0,fr,19646,44,823285,1,1,Active Shallow Crust,0.0,89.9904,0.0,10/16/2219 +6.84009,44.72771,4376,8,14,18,41,26,4.25,5.0,fr,19647,87,823287,1,1,Active Shallow Crust,240.0068,57.99417,0.0,08/14/4376 +6.84009,44.72771,2604,2,14,10,30,47,4.35,5.0,fr,19648,52,823302,1,2,Active Shallow Crust,0.0,89.99134,-90.0,02/14/2604 +6.84009,44.72771,4805,2,2,4,25,4,4.35,5.0,fr,19649,96,823302,1,2,Active Shallow Crust,0.0,89.99134,-90.0,02/02/4805 +6.84009,44.72771,69,5,17,12,51,10,4.75,5.0,fr,19650,1,823344,1,1,Active Shallow Crust,0.0,89.9892,0.0,05/17/0069 +6.84009,44.72771,4248,1,24,14,22,46,5.25,5.0,fr,19651,84,823404,1,1,Active Shallow Crust,0.0,89.98988,0.0,01/24/4248 +-2.78081,49.70702,9268,6,8,23,58,49,4.25,15.0,fr,19652,185,823765,1,1,Active Shallow Crust,0.0,89.98981,0.0,06/08/9268 +-2.78081,49.70702,2055,4,27,4,44,15,4.25,5.0,fr,19653,41,823770,1,1,Active Shallow Crust,0.0,89.98969,-90.0,04/27/2055 +-6.29664,49.10151,4998,6,7,20,30,9,3.55,5.0,fr,19654,99,824163,1,1,Active Shallow Crust,240.0127,57.99793,0.0,06/07/4998 +-1.22373,46.73687,9348,7,13,14,32,24,3.55,5.0,fr,19655,186,824640,1,2,Active Shallow Crust,0.0,89.98963,0.0,07/13/9348 +-1.22373,46.73687,5357,3,29,5,23,5,3.55,5.0,fr,19656,107,824640,1,2,Active Shallow Crust,0.0,89.98963,0.0,03/29/5357 +-1.22373,46.73687,7790,11,11,8,9,40,3.55,15.0,fr,19657,155,824641,1,1,Active Shallow Crust,0.0,89.98963,0.0,11/11/7790 +-1.22373,46.73687,1169,8,19,14,3,10,3.55,27.5,fr,19658,23,824645,1,1,Active Shallow Crust,240.0125,57.99814,0.0,08/19/1169 +-1.22373,46.73687,2162,7,19,11,34,19,3.55,15.0,fr,19659,43,824650,1,1,Active Shallow Crust,128.8961,89.99395,0.0,07/19/2162 +-1.22373,46.73687,5633,1,10,12,34,14,3.65,5.0,fr,19660,112,824652,1,1,Active Shallow Crust,0.0,89.99076,0.0,01/10/5633 +-1.22373,46.73687,5502,6,24,20,9,3,3.65,5.0,fr,19661,110,824655,1,1,Active Shallow Crust,240.0011,58.013,0.0,06/24/5502 +-1.22373,46.73687,9830,7,28,5,59,3,3.65,5.0,fr,19662,196,824658,1,1,Active Shallow Crust,0.0,89.99065,-90.0,07/28/9830 +-1.22373,46.73687,7726,11,11,6,55,19,3.75,15.0,fr,19663,154,824665,1,1,Active Shallow Crust,0.0,89.99039,0.0,11/11/7726 +-1.22373,46.73687,1774,4,16,15,46,43,3.75,5.0,fr,19664,35,824667,1,1,Active Shallow Crust,240.0081,58.01759,0.0,04/16/1774 +-1.22373,46.73687,5559,2,8,18,12,42,3.85,5.0,fr,19665,111,824676,1,1,Active Shallow Crust,0.0,89.99021,0.0,02/08/5559 +-1.22373,46.73687,1456,10,2,0,46,49,3.85,5.0,fr,19666,29,824679,1,1,Active Shallow Crust,240.0109,57.99788,0.0,10/02/1456 +-1.22373,46.73687,6311,9,14,17,26,4,3.85,5.0,fr,19667,126,824682,1,1,Active Shallow Crust,0.0,89.9901,-90.0,09/14/6311 +-1.22373,46.73687,6794,7,17,3,45,32,3.85,15.0,fr,19668,135,824683,1,1,Active Shallow Crust,0.0,89.9901,-90.0,07/17/6794 +-1.22373,46.73687,1507,1,17,8,18,17,3.95,5.0,fr,19669,30,824688,1,1,Active Shallow Crust,0.0,89.99019,0.0,01/17/1507 +-1.22373,46.73687,7876,8,11,0,33,52,4.45,5.0,fr,19670,157,824748,1,1,Active Shallow Crust,0.0,89.99019,0.0,08/11/7876 +-1.22373,46.73687,8916,3,1,12,55,24,4.75,5.0,fr,19671,178,824784,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/01/8916 +-1.22373,46.73687,8756,4,19,5,38,2,4.85,5.0,fr,19672,175,824796,1,1,Active Shallow Crust,0.0,89.98994,0.0,04/19/8756 +-1.22373,46.73687,5875,12,1,19,43,54,4.95,5.0,fr,19673,117,824808,1,1,Active Shallow Crust,0.0,89.99,0.0,12/01/5875 +-1.22373,46.73687,2834,5,24,5,27,12,5.55,5.0,fr,19674,56,824880,1,1,Active Shallow Crust,0.0,89.98997,0.0,05/24/2834 +-5.63896,49.58146,7122,1,24,1,31,11,5.05,5.0,fr,19675,142,825780,1,1,Active Shallow Crust,0.0,89.98953,0.0,01/24/7122 +3.95309,48.73113,5209,6,25,17,27,47,3.75,15.0,fr,19676,104,826108,1,1,Active Shallow Crust,240.0092,58.01729,0.0,06/25/5209 +1.58982,44.2577,6180,10,4,6,19,8,3.55,15.0,fr,19677,123,826561,1,1,Active Shallow Crust,0.0,89.98917,0.0,10/04/6180 +1.58982,44.2577,8556,6,24,4,21,27,3.55,27.5,fr,19678,171,826565,1,1,Active Shallow Crust,240.0122,57.99807,0.0,06/24/8556 +1.58982,44.2577,4212,2,7,21,25,46,3.55,15.0,fr,19679,84,826570,1,1,Active Shallow Crust,128.8963,89.99368,0.0,02/07/4212 +1.58982,44.2577,5516,11,20,15,55,7,5.15,5.0,fr,19680,110,826752,1,1,Active Shallow Crust,0.0,89.98998,0.0,11/20/5516 +4.71463,46.4151,1339,10,1,13,23,9,3.55,5.0,fr,19681,26,827040,1,1,Active Shallow Crust,0.0,89.99305,0.0,10/01/1339 +4.71463,46.4151,1223,6,28,13,1,18,3.55,15.0,fr,19682,24,827041,1,2,Active Shallow Crust,0.0,89.99305,0.0,06/28/1223 +4.71463,46.4151,8740,8,11,3,2,30,3.55,15.0,fr,19683,174,827041,1,2,Active Shallow Crust,0.0,89.99305,0.0,08/11/8740 +4.71463,46.4151,9813,6,13,13,15,43,3.55,27.5,fr,19684,196,827042,1,1,Active Shallow Crust,0.0,89.99305,0.0,06/13/9813 +4.71463,46.4151,8902,4,3,0,39,3,3.55,5.0,fr,19685,178,827049,1,1,Active Shallow Crust,128.897,89.99305,0.0,04/03/8902 +4.71463,46.4151,7337,4,24,23,26,15,3.65,15.0,fr,19686,146,827062,1,1,Active Shallow Crust,128.8997,89.96352,0.0,04/24/7337 +4.71463,46.4151,1510,9,8,0,15,0,3.95,5.0,fr,19687,30,827088,1,1,Active Shallow Crust,0.0,89.99123,0.0,09/08/1510 +4.71463,46.4151,5858,6,12,7,8,3,4.05,5.0,fr,19688,117,827100,1,1,Active Shallow Crust,0.0,89.98827,0.0,06/12/5858 +4.71463,46.4151,7228,8,2,0,31,49,4.15,15.0,fr,19689,144,827113,1,1,Active Shallow Crust,0.0,89.98955,0.0,08/02/7228 +4.71463,46.4151,1613,8,23,19,18,29,4.25,5.0,fr,19690,32,827124,1,1,Active Shallow Crust,0.0,89.99068,0.0,08/23/1613 +4.71463,46.4151,2090,7,1,5,17,27,4.35,15.0,fr,19691,41,827140,1,1,Active Shallow Crust,240.0079,57.99615,0.0,07/01/2090 +4.71463,46.4151,2767,3,20,0,20,13,4.65,5.0,fr,19692,55,827172,1,1,Active Shallow Crust,0.0,89.9902,0.0,03/20/2767 +4.71463,46.4151,9714,10,14,8,2,17,4.65,5.0,fr,19693,194,827181,1,1,Active Shallow Crust,128.891,89.98721,0.0,10/14/9714 +4.71463,46.4151,4911,1,30,22,23,50,5.05,5.0,fr,19694,98,827220,1,1,Active Shallow Crust,0.0,89.9901,0.0,01/30/4911 +6.83363,49.9905,4190,5,15,0,53,45,3.55,5.0,fr,19695,83,827520,1,1,Active Shallow Crust,0.0,89.98703,0.0,05/15/4190 +6.83363,49.9905,9412,10,23,17,57,50,3.65,5.0,fr,19696,188,827532,1,1,Active Shallow Crust,0.0,89.98844,0.0,10/23/9412 +6.83363,49.9905,7740,10,4,4,27,3,3.75,5.0,fr,19697,154,827544,1,1,Active Shallow Crust,0.0,89.9897,0.0,10/04/7740 +6.83363,49.9905,7553,2,20,18,20,0,4.05,5.0,fr,19698,151,827580,1,1,Active Shallow Crust,0.0,89.98906,0.0,02/20/7553 +6.83363,49.9905,1504,12,30,0,3,58,4.25,5.0,fr,19699,30,827613,1,1,Active Shallow Crust,128.8945,89.98058,0.0,12/30/1504 +2.39917,44.3724,4759,10,31,4,46,55,3.55,5.0,fr,19700,95,828000,1,1,Active Shallow Crust,0.0,89.98919,0.0,10/31/4759 +2.39917,44.3724,2144,2,27,23,0,51,3.65,15.0,fr,19701,42,828013,1,1,Active Shallow Crust,0.0,89.99036,0.0,02/27/2144 +2.39917,44.3724,8357,7,7,11,26,21,3.65,5.0,fr,19702,167,828018,1,1,Active Shallow Crust,0.0,89.99025,-90.0,07/07/8357 +2.39917,44.3724,4613,11,1,0,17,10,3.65,15.0,fr,19703,92,828019,1,1,Active Shallow Crust,0.0,89.99025,-90.0,11/01/4613 +2.39917,44.3724,4377,3,5,5,36,18,3.75,5.0,fr,19704,87,828024,1,1,Active Shallow Crust,0.0,89.99141,0.0,03/05/4377 +2.39917,44.3724,3186,8,14,16,19,6,4.55,5.0,fr,19705,63,828120,1,1,Active Shallow Crust,0.0,89.98974,0.0,08/14/3186 +2.39917,44.3724,9361,9,30,7,29,26,4.75,5.0,fr,19706,187,828144,1,1,Active Shallow Crust,0.0,89.99004,0.0,09/30/9361 +2.97916,47.44333,2680,8,6,4,47,27,3.65,15.0,fr,19707,53,828496,1,1,Active Shallow Crust,240.0014,58.0131,0.0,08/06/2680 +2.97916,47.44333,2393,6,23,2,33,33,3.85,5.0,fr,19708,47,828525,1,1,Active Shallow Crust,128.8952,89.99397,0.0,06/23/2393 +2.97916,47.44333,425,5,7,14,4,59,3.95,15.0,fr,19709,8,828529,1,1,Active Shallow Crust,0.0,89.98924,0.0,05/07/0425 +2.97916,47.44333,1458,3,12,23,51,2,4.25,15.0,fr,19710,29,828568,1,1,Active Shallow Crust,240.0075,57.99414,0.0,03/12/1458 +2.97916,47.44333,2901,3,7,7,16,42,5.15,5.0,fr,19711,58,828672,1,1,Active Shallow Crust,359.9997,89.99027,0.0,03/07/2901 +5.01449,50.3772,9671,7,18,2,19,51,3.55,5.0,fr,19712,193,828960,1,1,Active Shallow Crust,0.0,89.98714,0.0,07/18/9671 +5.01449,50.3772,6701,5,22,15,37,12,3.75,5.0,fr,19713,134,828984,1,1,Active Shallow Crust,0.0,89.98978,0.0,05/22/6701 +5.01449,50.3772,7434,12,16,6,16,34,3.85,15.0,fr,19714,148,828997,1,1,Active Shallow Crust,0.0,89.9909,0.0,12/16/7434 +5.01449,50.3772,4238,6,9,16,11,32,4.05,5.0,fr,19715,84,829020,1,1,Active Shallow Crust,0.0,89.98915,0.0,06/09/4238 +5.01449,50.3772,8189,6,7,18,30,21,5.25,27.5,fr,19716,163,829172,1,1,Active Shallow Crust,0.0,89.98989,-90.0,06/07/8189 +1.33184,49.82586,4520,9,23,22,19,50,3.55,5.0,fr,19717,90,829440,1,1,Active Shallow Crust,0.0,89.99024,0.0,09/23/4520 +1.33184,49.82586,3687,1,29,2,10,32,3.55,15.0,fr,19718,73,829441,1,1,Active Shallow Crust,0.0,89.99024,0.0,01/29/3687 +1.33184,49.82586,976,8,14,6,30,39,3.55,5.0,fr,19719,19,829443,1,2,Active Shallow Crust,240.0126,57.99828,0.0,08/14/0976 +1.33184,49.82586,2589,10,2,18,23,47,3.55,5.0,fr,19720,51,829443,1,2,Active Shallow Crust,240.0126,57.99828,0.0,10/02/2589 +1.33184,49.82586,3154,5,30,2,49,3,3.65,5.0,fr,19721,63,829452,1,2,Active Shallow Crust,0.0,89.98985,0.0,05/30/3154 +1.33184,49.82586,3294,6,29,17,56,20,3.65,5.0,fr,19722,65,829452,1,2,Active Shallow Crust,0.0,89.98985,0.0,06/29/3294 +1.33184,49.82586,4873,6,13,20,25,47,3.75,5.0,fr,19723,97,829464,1,1,Active Shallow Crust,0.0,89.98966,0.0,06/13/4873 +1.33184,49.82586,6859,1,30,16,53,36,3.75,27.5,fr,19724,137,829466,1,1,Active Shallow Crust,0.0,89.98966,0.0,01/30/6859 +1.33184,49.82586,1315,3,7,10,39,24,3.95,15.0,fr,19725,26,829489,1,1,Active Shallow Crust,0.0,89.98974,0.0,03/07/1315 +1.33184,49.82586,9215,12,25,11,14,2,4.05,5.0,fr,19726,184,829503,1,1,Active Shallow Crust,240.0065,58.00604,0.0,12/25/9215 +1.33184,49.82586,6320,6,19,13,10,50,4.15,5.0,fr,19727,126,829512,1,2,Active Shallow Crust,0.0,89.99022,0.0,06/19/6320 +1.33184,49.82586,8339,11,2,3,27,52,4.15,5.0,fr,19728,166,829512,1,2,Active Shallow Crust,0.0,89.99022,0.0,11/02/8339 +1.33184,49.82586,9745,11,6,11,40,8,4.85,15.0,fr,19729,194,829600,1,1,Active Shallow Crust,240.0186,58.00257,0.0,11/06/9745 +-6.60439,47.96487,8397,9,12,11,34,4,3.85,5.0,fr,19730,167,829956,1,1,Active Shallow Crust,0.0,89.99044,0.0,09/12/8397 +4.61162,49.45244,4043,6,29,19,42,56,3.85,27.5,fr,19731,80,830447,1,1,Active Shallow Crust,128.8944,89.99304,0.0,06/29/4043 +4.61162,49.45244,4495,12,2,9,40,18,4.15,27.5,fr,19732,89,830474,1,1,Active Shallow Crust,0.0,89.99014,0.0,12/02/4495 +4.24645,50.14615,4281,6,17,2,37,39,3.65,5.0,fr,19733,85,830892,1,1,Active Shallow Crust,0.0,89.98848,0.0,06/17/4281 +4.24645,50.14615,9339,1,26,4,11,40,3.75,5.0,fr,19734,186,830904,1,1,Active Shallow Crust,0.0,89.98973,0.0,01/26/9339 +4.24645,50.14615,6897,9,12,19,55,23,3.75,15.0,fr,19735,137,830905,1,1,Active Shallow Crust,0.0,89.98973,0.0,09/12/6897 +4.24645,50.14615,8990,4,20,7,54,40,4.05,15.0,fr,19736,179,830941,1,1,Active Shallow Crust,0.0,89.9891,0.0,04/20/8990 +4.24645,50.14615,5343,2,9,10,32,19,4.15,5.0,fr,19737,106,830955,1,1,Active Shallow Crust,240.0092,57.99754,0.0,02/09/5343 +4.24645,50.14615,819,1,26,14,53,5,4.35,5.0,fr,19738,16,830976,1,1,Active Shallow Crust,0.0,89.98971,0.0,01/26/0819 +1.63718,52.03713,3872,3,14,23,15,55,4.45,5.0,fr,19739,77,831468,1,1,Active Shallow Crust,0.0,89.9901,0.0,03/14/3872 +1.63718,52.03713,7129,3,3,9,12,0,5.15,5.0,fr,19740,142,831555,1,1,Active Shallow Crust,240.0233,58.0006,0.0,03/03/7129 +3.86964,45.6451,8387,5,3,0,50,31,3.55,5.0,fr,19741,167,831840,1,3,Active Shallow Crust,0.0,89.98943,0.0,05/03/8387 +3.86964,45.6451,3338,1,22,23,20,56,3.55,5.0,fr,19742,66,831840,1,3,Active Shallow Crust,0.0,89.98943,0.0,01/22/3338 +3.86964,45.6451,4587,7,29,10,47,41,3.55,5.0,fr,19743,91,831840,1,3,Active Shallow Crust,0.0,89.98943,0.0,07/29/4587 +3.86964,45.6451,8686,1,16,12,17,20,3.55,5.0,fr,19744,173,831843,1,1,Active Shallow Crust,240.0119,57.99799,0.0,01/16/8686 +3.86964,45.6451,1553,4,6,8,13,28,3.65,5.0,fr,19745,31,831852,1,1,Active Shallow Crust,0.0,89.99058,0.0,04/06/1553 +3.86964,45.6451,6011,6,8,3,18,7,3.65,5.0,fr,19746,120,831858,1,1,Active Shallow Crust,0.0,89.99046,-90.0,06/08/6011 +3.86964,45.6451,4516,1,13,23,7,2,3.75,5.0,fr,19747,90,831870,1,1,Active Shallow Crust,0.0,89.98867,-90.0,01/13/4516 +3.86964,45.6451,7372,7,26,14,29,14,4.15,5.0,fr,19748,147,831912,1,1,Active Shallow Crust,0.0,89.9894,0.0,07/26/7372 +3.86964,45.6451,2749,10,22,1,53,7,4.25,5.0,fr,19749,54,831924,1,1,Active Shallow Crust,0.0,89.99055,0.0,10/22/2749 +3.86964,45.6451,4214,7,8,8,11,25,4.35,15.0,fr,19750,84,831943,1,1,Active Shallow Crust,0.0,89.99006,-90.0,07/08/4214 +3.86964,45.6451,8509,3,8,21,10,14,4.45,5.0,fr,19751,170,831954,1,1,Active Shallow Crust,0.0,89.98988,-90.0,03/08/8509 +7.6995,44.82619,9033,4,7,8,4,16,3.55,5.0,fr,19752,180,832320,1,1,Active Shallow Crust,0.0,89.99285,0.0,04/07/9033 +7.6995,44.82619,386,6,5,10,47,39,3.55,27.5,fr,19753,7,832322,1,1,Active Shallow Crust,0.0,89.99285,0.0,06/05/0386 +7.6995,44.82619,61,11,20,23,27,0,3.55,5.0,fr,19754,1,832329,1,1,Active Shallow Crust,128.896,89.99285,0.0,11/20/0061 +7.6995,44.82619,1615,7,1,19,50,25,3.65,5.0,fr,19755,32,832332,1,2,Active Shallow Crust,0.0,89.98725,0.0,07/01/1615 +7.6995,44.82619,1210,4,13,10,37,47,3.65,5.0,fr,19756,24,832332,1,2,Active Shallow Crust,0.0,89.98725,0.0,04/13/1210 +7.6995,44.82619,553,10,22,6,8,18,3.65,27.5,fr,19757,11,832337,1,1,Active Shallow Crust,240.002,58.01176,0.0,10/22/0553 +7.6995,44.82619,304,11,8,14,33,26,3.65,27.5,fr,19758,6,832340,1,1,Active Shallow Crust,0.0,89.98711,-90.0,11/08/0304 +7.6995,44.82619,2457,9,11,2,4,37,3.75,5.0,fr,19759,49,832344,1,2,Active Shallow Crust,0.0,89.98864,0.0,09/11/2457 +7.6995,44.82619,5127,9,30,16,10,13,3.75,5.0,fr,19760,102,832344,1,2,Active Shallow Crust,0.0,89.98864,0.0,09/30/5127 +7.6995,44.82619,4525,9,20,3,23,55,3.75,27.5,fr,19761,90,832346,1,1,Active Shallow Crust,0.0,89.98864,0.0,09/20/4525 +7.6995,44.82619,7827,12,7,19,21,13,3.75,5.0,fr,19762,156,832353,1,1,Active Shallow Crust,128.8961,89.96746,0.0,12/07/7827 +7.6995,44.82619,6003,10,19,4,52,42,3.75,15.0,fr,19763,120,832354,1,1,Active Shallow Crust,128.8961,89.96746,0.0,10/19/6003 +7.6995,44.82619,5300,6,29,19,15,8,3.85,5.0,fr,19764,105,832359,1,1,Active Shallow Crust,240.0112,57.99722,0.0,06/29/5300 +7.6995,44.82619,3421,2,21,8,39,42,3.85,5.0,fr,19765,68,832362,1,1,Active Shallow Crust,0.0,89.98975,-90.0,02/21/3421 +7.6995,44.82619,384,2,7,20,1,34,3.95,5.0,fr,19766,7,832368,1,1,Active Shallow Crust,0.0,89.99097,0.0,02/07/0384 +7.6995,44.82619,8711,11,16,4,20,26,3.95,15.0,fr,19767,174,832375,1,1,Active Shallow Crust,0.0,89.99087,-90.0,11/16/8711 +7.6995,44.82619,7238,4,12,13,0,23,4.15,15.0,fr,19768,144,832393,1,1,Active Shallow Crust,0.0,89.98924,0.0,04/12/7238 +7.6995,44.82619,4471,9,11,23,25,30,4.15,27.5,fr,19769,89,832400,1,1,Active Shallow Crust,0.0,89.98912,-90.0,09/11/4471 +7.6995,44.82619,5187,3,25,22,8,40,4.75,27.5,fr,19770,103,832466,1,1,Active Shallow Crust,0.0,89.98922,0.0,03/25/5187 +7.6995,44.82619,2715,6,9,11,39,56,4.95,5.0,fr,19771,54,832488,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/09/2715 +7.6995,44.82619,1991,2,7,17,51,48,5.25,27.5,fr,19772,39,832526,1,1,Active Shallow Crust,0.0,89.98989,0.0,02/07/1991 +3.76836,41.38225,5249,1,20,16,48,6,3.55,15.0,fr,19773,104,833281,1,1,Active Shallow Crust,0.0,89.98865,0.0,01/20/5249 +3.76836,41.38225,8325,12,22,16,44,55,3.65,5.0,fr,19774,166,833292,1,1,Active Shallow Crust,0.0,89.98988,0.0,12/22/8325 +3.76836,41.38225,7333,5,29,16,44,41,3.85,5.0,fr,19775,146,833316,1,1,Active Shallow Crust,0.0,89.98929,0.0,05/29/7333 +3.76836,41.38225,9101,8,14,5,49,27,3.95,15.0,fr,19776,182,833329,1,1,Active Shallow Crust,0.0,89.99046,0.0,08/14/9101 +3.76836,41.38225,4131,10,4,20,19,39,3.95,5.0,fr,19777,82,833331,1,1,Active Shallow Crust,240.0191,58.00477,0.0,10/04/4131 +3.76836,41.38225,8589,10,3,21,6,13,4.35,5.0,fr,19778,171,833376,1,1,Active Shallow Crust,0.0,89.98946,0.0,10/03/8589 +0.41929,48.99194,4471,2,9,13,30,42,3.65,5.0,fr,19779,89,833772,1,1,Active Shallow Crust,0.0,89.99005,0.0,02/09/4471 +0.41929,48.99194,3648,10,5,9,38,51,3.75,15.0,fr,19780,72,833785,1,1,Active Shallow Crust,0.0,89.99014,0.0,10/05/3648 +0.41929,48.99194,172,9,24,9,8,13,3.85,15.0,fr,19781,3,833806,1,1,Active Shallow Crust,128.8954,89.99371,0.0,09/24/0172 +0.41929,48.99194,1934,12,3,11,12,29,3.95,5.0,fr,19782,38,833811,1,1,Active Shallow Crust,240.0202,58.00507,0.0,12/03/1934 +0.41929,48.99194,9429,8,25,4,4,31,4.25,5.0,fr,19783,188,833844,1,2,Active Shallow Crust,0.0,89.99002,0.0,08/25/9429 +0.41929,48.99194,5744,3,1,12,26,10,4.25,5.0,fr,19784,114,833844,1,2,Active Shallow Crust,0.0,89.99002,0.0,03/01/5744 +0.41929,48.99194,7685,1,18,22,18,41,4.95,27.5,fr,19785,153,833930,1,1,Active Shallow Crust,0.0,89.99001,0.0,01/18/7685 +0.41929,48.99194,9200,4,13,20,41,55,5.15,5.0,fr,19786,183,833961,1,2,Active Shallow Crust,128.8824,89.99103,0.0,04/13/9200 +0.41929,48.99194,7248,8,4,0,41,19,5.15,5.0,fr,19787,144,833961,1,2,Active Shallow Crust,128.8824,89.99103,0.0,08/04/7248 +0.41929,48.99194,8813,3,18,8,14,41,5.25,5.0,fr,19788,176,833964,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/18/8813 +8.98587,50.59894,9142,10,9,3,18,16,3.55,5.0,fr,19789,182,834240,1,1,Active Shallow Crust,0.0,89.9872,0.0,10/09/9142 +8.98587,50.59894,9309,12,29,4,28,45,3.65,5.0,fr,19790,186,834252,1,1,Active Shallow Crust,0.0,89.98859,0.0,12/29/9309 +8.98587,50.59894,7171,2,7,12,51,17,3.65,5.0,fr,19791,143,834261,1,1,Active Shallow Crust,128.8994,89.9636,0.0,02/07/7171 +8.98587,50.59894,821,7,15,19,27,0,3.85,5.0,fr,19792,16,834276,1,1,Active Shallow Crust,0.0,89.99094,0.0,07/15/0821 +8.98587,50.59894,354,4,13,15,13,53,3.95,5.0,fr,19793,7,834288,1,1,Active Shallow Crust,0.0,89.99192,0.0,04/13/0354 +8.98587,50.59894,8279,6,2,5,49,59,5.15,5.0,fr,19794,165,834432,1,1,Active Shallow Crust,0.0,89.98985,0.0,06/02/8279 +4.84549,45.65373,3475,5,11,0,49,32,3.55,5.0,fr,19795,69,834720,1,1,Active Shallow Crust,0.0,89.99295,0.0,05/11/3475 +4.84549,45.65373,4415,2,27,3,13,8,3.65,5.0,fr,19796,88,834735,1,1,Active Shallow Crust,240.0014,58.01305,0.0,02/27/4415 +4.84549,45.65373,752,10,31,9,14,10,3.65,5.0,fr,19797,15,834741,1,1,Active Shallow Crust,128.8999,89.96351,0.0,10/31/0752 +4.84549,45.65373,9169,2,4,2,18,37,3.85,5.0,fr,19798,183,834756,1,2,Active Shallow Crust,0.0,89.99002,0.0,02/04/9169 +4.84549,45.65373,1901,9,29,2,15,45,3.85,5.0,fr,19799,38,834756,1,2,Active Shallow Crust,0.0,89.99002,0.0,09/29/1901 +4.84549,45.65373,9229,11,22,11,34,2,3.95,15.0,fr,19800,184,834769,1,1,Active Shallow Crust,0.0,89.9911,0.0,11/22/9229 +4.84549,45.65373,6941,10,18,7,35,48,3.95,5.0,fr,19801,138,834777,1,1,Active Shallow Crust,128.8996,89.99333,0.0,10/18/6941 +4.84549,45.65373,4590,2,25,23,32,39,4.25,27.5,fr,19802,91,834806,1,1,Active Shallow Crust,0.0,89.99055,0.0,02/25/4590 +4.84549,45.65373,6302,8,3,22,38,13,4.35,27.5,fr,19803,126,834818,1,1,Active Shallow Crust,0.0,89.98878,0.0,08/03/6302 +4.84549,45.65373,2140,8,2,4,36,3,4.45,5.0,fr,19804,42,834831,1,1,Active Shallow Crust,240.0049,57.99478,0.0,08/02/2140 +4.84549,45.65373,9563,1,12,1,48,22,4.55,27.5,fr,19805,191,834845,1,1,Active Shallow Crust,240.0092,57.99743,0.0,01/12/9563 +4.84549,45.65373,8980,1,4,20,52,11,4.75,15.0,fr,19806,179,834865,1,1,Active Shallow Crust,0.0,89.98937,0.0,01/04/8980 +2.33214,41.43494,5635,4,14,19,19,37,3.55,5.0,fr,19807,112,835200,1,1,Active Shallow Crust,0.0,89.98866,0.0,04/14/5635 +2.33214,41.43494,8984,2,16,13,23,54,3.55,15.0,fr,19808,179,835201,1,4,Active Shallow Crust,0.0,89.98866,0.0,02/16/8984 +2.33214,41.43494,7506,12,21,23,38,30,3.55,15.0,fr,19809,150,835201,1,4,Active Shallow Crust,0.0,89.98866,0.0,12/21/7506 +2.33214,41.43494,424,1,4,5,24,25,3.55,15.0,fr,19810,8,835201,1,4,Active Shallow Crust,0.0,89.98866,0.0,01/04/0424 +2.33214,41.43494,961,9,12,0,33,29,3.55,15.0,fr,19811,19,835201,1,4,Active Shallow Crust,0.0,89.98866,0.0,09/12/0961 +2.33214,41.43494,4516,3,30,20,9,31,3.55,5.0,fr,19812,90,835203,1,1,Active Shallow Crust,240.012,57.99839,0.0,03/30/4516 +2.33214,41.43494,5586,1,30,23,59,36,3.55,15.0,fr,19813,111,835204,1,2,Active Shallow Crust,240.012,57.99839,0.0,01/30/5586 +2.33214,41.43494,6898,2,19,16,23,16,3.55,15.0,fr,19814,137,835204,1,2,Active Shallow Crust,240.012,57.99839,0.0,02/19/6898 +2.33214,41.43494,2599,8,19,0,55,18,3.65,5.0,fr,19815,51,835212,1,2,Active Shallow Crust,0.0,89.98989,0.0,08/19/2599 +2.33214,41.43494,3216,5,12,11,59,13,3.65,5.0,fr,19816,64,835212,1,2,Active Shallow Crust,0.0,89.98989,0.0,05/12/3216 +2.33214,41.43494,1886,11,30,11,16,3,3.65,27.5,fr,19817,37,835214,1,1,Active Shallow Crust,0.0,89.98989,0.0,11/30/1886 +2.33214,41.43494,4900,7,15,14,41,11,3.65,15.0,fr,19818,97,835216,1,1,Active Shallow Crust,240.0004,58.01241,0.0,07/15/4900 +2.33214,41.43494,1903,6,29,2,41,6,3.75,5.0,fr,19819,38,835224,1,4,Active Shallow Crust,0.0,89.99099,0.0,06/29/1903 +2.33214,41.43494,7364,1,3,13,53,3,3.75,5.0,fr,19820,147,835224,1,4,Active Shallow Crust,0.0,89.99099,0.0,01/03/7364 +2.33214,41.43494,2821,6,19,0,40,35,3.75,5.0,fr,19821,56,835224,1,4,Active Shallow Crust,0.0,89.99099,0.0,06/19/2821 +2.33214,41.43494,6273,11,22,13,46,39,3.75,5.0,fr,19822,125,835224,1,4,Active Shallow Crust,0.0,89.99099,0.0,11/22/6273 +2.33214,41.43494,4297,7,15,13,13,3,3.75,5.0,fr,19823,85,835233,1,1,Active Shallow Crust,128.8969,89.96741,0.0,07/15/4297 +2.33214,41.43494,918,4,20,5,15,55,3.85,5.0,fr,19824,18,835236,1,1,Active Shallow Crust,0.0,89.9893,0.0,04/20/0918 +2.33214,41.43494,7975,8,29,12,25,41,3.85,15.0,fr,19825,159,835246,1,2,Active Shallow Crust,128.8963,89.99331,0.0,08/29/7975 +2.33214,41.43494,643,8,23,4,40,52,3.85,15.0,fr,19826,12,835246,1,2,Active Shallow Crust,128.8963,89.99331,0.0,08/23/0643 +2.33214,41.43494,2791,7,7,11,30,0,3.95,5.0,fr,19827,55,835248,1,1,Active Shallow Crust,0.0,89.99046,0.0,07/07/2791 +2.33214,41.43494,3374,11,4,20,0,20,3.95,15.0,fr,19828,67,835249,1,2,Active Shallow Crust,0.0,89.99046,0.0,11/04/3374 +2.33214,41.43494,7439,2,1,2,51,32,3.95,15.0,fr,19829,148,835249,1,2,Active Shallow Crust,0.0,89.99046,0.0,02/01/7439 +2.33214,41.43494,9686,6,9,1,6,35,3.95,5.0,fr,19830,193,835254,1,2,Active Shallow Crust,0.0,89.99035,-90.0,06/09/9686 +2.33214,41.43494,3718,6,7,0,30,1,3.95,5.0,fr,19831,74,835254,1,2,Active Shallow Crust,0.0,89.99035,-90.0,06/07/3718 +2.33214,41.43494,7838,12,22,17,26,42,4.05,5.0,fr,19832,156,835260,1,1,Active Shallow Crust,0.0,89.98937,0.0,12/22/7838 +2.33214,41.43494,4539,12,5,14,3,3,4.15,5.0,fr,19833,90,835272,1,1,Active Shallow Crust,0.0,89.99052,0.0,12/05/4539 +2.33214,41.43494,1372,7,25,15,55,36,4.15,15.0,fr,19834,27,835273,1,1,Active Shallow Crust,0.0,89.99052,0.0,07/25/1372 +2.33214,41.43494,5937,6,30,4,24,8,4.25,15.0,fr,19835,118,835285,1,1,Active Shallow Crust,0.0,89.98987,0.0,06/30/5937 +2.33214,41.43494,504,2,29,15,40,27,4.35,5.0,fr,19836,10,835296,1,1,Active Shallow Crust,0.0,89.98946,0.0,02/29/0504 +2.33214,41.43494,8542,8,9,11,29,10,4.55,5.0,fr,19837,170,835326,1,1,Active Shallow Crust,0.0,89.99033,-90.0,08/09/8542 +2.33214,41.43494,2669,4,26,15,1,45,4.65,15.0,fr,19838,53,835339,1,1,Active Shallow Crust,0.0,89.9903,-90.0,04/26/2669 +2.33214,41.43494,9202,9,27,10,46,19,4.85,5.0,fr,19839,184,835356,1,1,Active Shallow Crust,0.0,89.98985,0.0,09/27/9202 +2.33214,41.43494,4963,8,6,7,17,12,5.35,15.0,fr,19840,99,835417,1,1,Active Shallow Crust,0.0,89.99001,0.0,08/06/4963 +5.5598,43.90619,5267,3,24,2,38,1,3.55,5.0,fr,19841,105,835680,1,3,Active Shallow Crust,0.0,89.99274,0.0,03/24/5267 +5.5598,43.90619,6274,3,23,20,51,12,3.55,5.0,fr,19842,125,835680,1,3,Active Shallow Crust,0.0,89.99274,0.0,03/23/6274 +5.5598,43.90619,3524,8,12,15,55,2,3.55,5.0,fr,19843,70,835680,1,3,Active Shallow Crust,0.0,89.99274,0.0,08/12/3524 +5.5598,43.90619,4825,2,13,6,43,0,3.55,27.5,fr,19844,96,835682,1,1,Active Shallow Crust,0.0,89.99274,0.0,02/13/4825 +5.5598,43.90619,7411,9,1,1,23,40,3.55,5.0,fr,19845,148,835683,1,1,Active Shallow Crust,240.012,57.99831,0.0,09/01/7411 +5.5598,43.90619,7945,4,15,18,58,18,3.55,5.0,fr,19846,158,835686,1,2,Active Shallow Crust,0.0,89.99265,-90.0,04/15/7945 +5.5598,43.90619,4662,6,16,2,28,22,3.55,5.0,fr,19847,93,835686,1,2,Active Shallow Crust,0.0,89.99265,-90.0,06/16/4662 +5.5598,43.90619,8970,3,2,10,58,41,3.55,5.0,fr,19848,179,835689,1,2,Active Shallow Crust,128.8976,89.99274,0.0,03/02/8970 +5.5598,43.90619,7249,3,9,8,40,53,3.55,5.0,fr,19849,144,835689,1,2,Active Shallow Crust,128.8976,89.99274,0.0,03/09/7249 +5.5598,43.90619,6211,3,10,10,15,53,3.65,5.0,fr,19850,124,835692,1,3,Active Shallow Crust,0.0,89.98705,0.0,03/10/6211 +5.5598,43.90619,4742,11,20,0,30,0,3.65,5.0,fr,19851,94,835692,1,3,Active Shallow Crust,0.0,89.98705,0.0,11/20/4742 +5.5598,43.90619,8739,10,27,0,27,43,3.65,5.0,fr,19852,174,835692,1,3,Active Shallow Crust,0.0,89.98705,0.0,10/27/8739 +5.5598,43.90619,7994,12,16,11,43,29,3.65,27.5,fr,19853,159,835694,1,1,Active Shallow Crust,0.0,89.98705,0.0,12/16/7994 +5.5598,43.90619,7684,12,15,9,42,51,3.65,5.0,fr,19854,153,835698,1,2,Active Shallow Crust,0.0,89.9869,-90.0,12/15/7684 +5.5598,43.90619,3030,2,3,22,34,30,3.65,5.0,fr,19855,60,835698,1,2,Active Shallow Crust,0.0,89.9869,-90.0,02/03/3030 +5.5598,43.90619,1872,8,2,11,49,0,3.65,27.5,fr,19856,37,835700,1,1,Active Shallow Crust,0.0,89.9869,-90.0,08/02/1872 +5.5598,43.90619,1115,9,8,13,15,42,3.75,5.0,fr,19857,22,835704,1,4,Active Shallow Crust,0.0,89.98846,0.0,09/08/1115 +5.5598,43.90619,9134,8,30,10,22,5,3.75,5.0,fr,19858,182,835704,1,4,Active Shallow Crust,0.0,89.98846,0.0,08/30/9134 +5.5598,43.90619,5508,10,16,3,13,10,3.75,5.0,fr,19859,110,835704,1,4,Active Shallow Crust,0.0,89.98846,0.0,10/16/5508 +5.5598,43.90619,604,3,23,9,50,4,3.75,5.0,fr,19860,12,835704,1,4,Active Shallow Crust,0.0,89.98846,0.0,03/23/0604 +5.5598,43.90619,7599,7,9,23,32,19,3.75,5.0,fr,19861,151,835707,1,1,Active Shallow Crust,240.0083,58.0177,0.0,07/09/7599 +5.5598,43.90619,9761,11,3,16,41,24,3.75,5.0,fr,19862,195,835713,1,1,Active Shallow Crust,128.8968,89.96745,0.0,11/03/9761 +5.5598,43.90619,1101,10,17,0,54,23,3.85,5.0,fr,19863,22,835716,1,1,Active Shallow Crust,0.0,89.98972,0.0,10/17/1101 +5.5598,43.90619,3027,2,13,5,57,35,3.85,27.5,fr,19864,60,835718,1,1,Active Shallow Crust,0.0,89.98972,0.0,02/13/3027 +5.5598,43.90619,9252,4,16,4,9,41,3.85,5.0,fr,19865,185,835722,1,1,Active Shallow Crust,0.0,89.98959,-90.0,04/16/9252 +5.5598,43.90619,198,12,25,20,10,42,3.95,5.0,fr,19866,3,835728,1,1,Active Shallow Crust,0.0,89.99083,0.0,12/25/0198 +5.5598,43.90619,3507,6,30,17,4,25,3.95,27.5,fr,19867,70,835730,1,1,Active Shallow Crust,0.0,89.99083,0.0,06/30/3507 +5.5598,43.90619,8374,11,5,17,20,15,4.05,15.0,fr,19868,167,835741,1,1,Active Shallow Crust,0.0,89.99183,0.0,11/05/8374 +5.5598,43.90619,8578,5,5,3,27,45,4.05,27.5,fr,19869,171,835742,1,1,Active Shallow Crust,0.0,89.99183,0.0,05/05/8578 +5.5598,43.90619,9287,9,3,17,53,21,4.15,15.0,fr,19870,185,835753,1,2,Active Shallow Crust,0.0,89.98907,0.0,09/03/9287 +5.5598,43.90619,6445,10,13,19,3,58,4.15,15.0,fr,19871,128,835753,1,2,Active Shallow Crust,0.0,89.98907,0.0,10/13/6445 +5.5598,43.90619,1861,4,8,20,7,58,4.15,5.0,fr,19872,37,835755,1,2,Active Shallow Crust,240.0081,57.99728,0.0,04/08/1861 +5.5598,43.90619,1487,5,8,19,39,9,4.15,5.0,fr,19873,29,835755,1,2,Active Shallow Crust,240.0081,57.99728,0.0,05/08/1487 +5.5598,43.90619,5237,4,17,15,51,11,4.45,5.0,fr,19874,104,835791,1,1,Active Shallow Crust,240.0046,57.99477,0.0,04/17/5237 +5.5598,43.90619,5134,8,15,21,29,43,4.55,5.0,fr,19875,102,835803,1,1,Active Shallow Crust,240.0084,57.99735,0.0,08/15/5134 +5.5598,43.90619,5043,8,4,14,32,28,4.75,15.0,fr,19876,100,835825,1,1,Active Shallow Crust,0.0,89.99088,0.0,08/04/5043 +5.5598,43.90619,1393,3,22,12,44,29,5.15,15.0,fr,19877,27,835882,1,1,Active Shallow Crust,128.8851,89.991,0.0,03/22/1393 +5.5598,43.90619,4285,1,25,2,39,48,5.55,5.0,fr,19878,85,835920,1,1,Active Shallow Crust,0.0,89.98982,0.0,01/25/4285 +5.5598,43.90619,9498,6,18,17,53,49,5.55,15.0,fr,19879,189,835924,1,1,Active Shallow Crust,240.0269,58.00209,0.0,06/18/9498 +-5.50012,49.86693,7274,2,7,0,51,11,3.65,5.0,fr,19880,145,836172,1,1,Active Shallow Crust,0.0,89.98841,0.0,02/07/7274 +-5.50012,49.86693,3256,2,10,4,42,57,3.75,15.0,fr,19881,65,836188,1,1,Active Shallow Crust,240.0087,58.01729,0.0,02/10/3256 +-5.50012,49.86693,411,3,1,3,31,24,3.95,5.0,fr,19882,8,836208,1,1,Active Shallow Crust,0.0,89.9918,0.0,03/01/0411 +-3.37512,49.38999,654,8,26,8,34,13,3.55,5.0,fr,19883,13,836640,1,1,Active Shallow Crust,0.0,89.99016,0.0,08/26/0654 +-3.37512,49.38999,949,3,4,0,32,23,3.85,15.0,fr,19884,18,836680,1,1,Active Shallow Crust,240.0109,57.99826,0.0,03/04/0949 +-3.37512,49.38999,5783,7,26,23,36,39,4.25,5.0,fr,19885,115,836724,1,1,Active Shallow Crust,0.0,89.98974,0.0,07/26/5783 +5.19425,49.40771,7451,10,11,9,17,57,3.65,5.0,fr,19886,149,837132,1,1,Active Shallow Crust,0.0,89.9883,0.0,10/11/7451 +5.19425,49.40771,1437,10,15,11,41,45,4.25,5.0,fr,19887,28,837204,1,1,Active Shallow Crust,0.0,89.9912,0.0,10/15/1437 +4.63621,44.9704,5611,9,15,11,36,53,3.55,5.0,fr,19888,112,837600,1,1,Active Shallow Crust,0.0,89.99287,0.0,09/15/5611 +4.63621,44.9704,8552,8,28,14,17,3,3.55,5.0,fr,19889,171,837606,1,1,Active Shallow Crust,0.0,89.99278,-90.0,08/28/8552 +4.63621,44.9704,9325,1,23,19,28,40,3.65,5.0,fr,19890,186,837612,1,1,Active Shallow Crust,0.0,89.98728,0.0,01/23/9325 +4.63621,44.9704,7559,7,3,1,58,47,3.75,5.0,fr,19891,151,837624,1,1,Active Shallow Crust,0.0,89.98866,0.0,07/03/7559 +4.63621,44.9704,1802,7,19,14,55,14,3.85,5.0,fr,19892,36,837636,1,1,Active Shallow Crust,0.0,89.9899,0.0,07/19/1802 +4.63621,44.9704,6316,8,31,2,8,35,3.95,5.0,fr,19893,126,837648,1,1,Active Shallow Crust,0.0,89.991,0.0,08/31/6316 +4.63621,44.9704,954,10,20,9,2,59,3.95,15.0,fr,19894,19,837649,1,1,Active Shallow Crust,0.0,89.991,0.0,10/20/0954 +4.63621,44.9704,4308,5,24,1,51,45,4.55,15.0,fr,19895,86,837721,1,1,Active Shallow Crust,0.0,89.99097,0.0,05/24/4308 +4.63621,44.9704,4798,10,14,7,31,10,4.65,27.5,fr,19896,95,837737,1,1,Active Shallow Crust,240.0101,57.99449,0.0,10/14/4798 +4.63621,44.9704,6611,9,3,0,11,4,4.85,15.0,fr,19897,132,837757,1,1,Active Shallow Crust,0.0,89.99042,0.0,09/03/6611 +4.63621,44.9704,9631,9,8,14,45,6,4.85,5.0,fr,19898,192,837762,1,1,Active Shallow Crust,0.0,89.9903,-90.0,09/08/9631 +3.57576,47.78947,2091,8,10,3,30,43,3.55,5.0,fr,19899,41,838080,1,1,Active Shallow Crust,0.0,89.98984,0.0,08/10/2091 +3.57576,47.78947,4995,6,9,2,32,12,3.75,5.0,fr,19900,99,838107,1,1,Active Shallow Crust,240.0089,58.0174,0.0,06/09/4995 +-1.41856,43.98915,3072,6,28,12,0,26,3.55,15.0,fr,19901,61,838570,1,1,Active Shallow Crust,128.8963,89.99365,0.0,06/28/3072 +-1.41856,43.98915,1775,1,24,9,31,51,3.85,5.0,fr,19902,35,838596,1,1,Active Shallow Crust,0.0,89.98973,0.0,01/24/1775 +7.68159,50.58444,6883,6,15,1,32,17,3.55,5.0,fr,19903,137,839040,1,2,Active Shallow Crust,0.0,89.9872,0.0,06/15/6883 +7.68159,50.58444,9204,4,24,18,46,28,3.55,5.0,fr,19904,184,839040,1,2,Active Shallow Crust,0.0,89.9872,0.0,04/24/9204 +7.68159,50.58444,8391,4,9,18,23,38,3.65,5.0,fr,19905,167,839052,1,1,Active Shallow Crust,0.0,89.98859,0.0,04/09/8391 +7.68159,50.58444,8364,2,4,13,58,59,3.65,27.5,fr,19906,167,839054,1,1,Active Shallow Crust,0.0,89.98859,0.0,02/04/8364 +7.68159,50.58444,4269,11,12,8,0,48,3.75,5.0,fr,19907,85,839064,1,2,Active Shallow Crust,0.0,89.98983,0.0,11/12/4269 +7.68159,50.58444,6110,4,19,18,34,41,3.75,5.0,fr,19908,122,839064,1,2,Active Shallow Crust,0.0,89.98983,0.0,04/19/6110 +7.68159,50.58444,4033,5,24,19,29,47,3.75,15.0,fr,19909,80,839065,1,1,Active Shallow Crust,0.0,89.98983,0.0,05/24/4033 +7.68159,50.58444,1343,12,1,16,21,38,3.85,5.0,fr,19910,26,839076,1,1,Active Shallow Crust,0.0,89.99094,0.0,12/01/1343 +7.68159,50.58444,1115,5,14,23,11,39,3.85,5.0,fr,19911,22,839079,1,1,Active Shallow Crust,240.011,57.99807,0.0,05/14/1115 +7.68159,50.58444,9109,5,31,4,33,14,3.85,15.0,fr,19912,182,839080,1,1,Active Shallow Crust,240.011,57.99807,0.0,05/31/9109 +7.68159,50.58444,4188,4,10,1,9,53,3.95,5.0,fr,19913,83,839088,1,1,Active Shallow Crust,0.0,89.99192,0.0,04/10/4188 +7.68159,50.58444,3207,1,1,6,26,1,3.95,5.0,fr,19914,64,839097,1,1,Active Shallow Crust,128.9003,89.99394,0.0,01/01/3207 +7.68159,50.58444,2586,10,4,21,3,16,3.95,15.0,fr,19915,51,839098,1,1,Active Shallow Crust,128.9003,89.99394,0.0,10/04/2586 +7.68159,50.58444,3051,8,10,1,37,52,4.05,5.0,fr,19916,61,839100,1,1,Active Shallow Crust,0.0,89.9892,0.0,08/10/3051 +7.68159,50.58444,1213,3,3,21,39,9,4.05,15.0,fr,19917,24,839101,1,1,Active Shallow Crust,0.0,89.9892,0.0,03/03/1213 +7.68159,50.58444,5612,2,26,11,13,55,4.15,5.0,fr,19918,112,839112,1,2,Active Shallow Crust,0.0,89.99037,0.0,02/26/5612 +7.68159,50.58444,1763,9,16,13,29,39,4.15,5.0,fr,19919,35,839112,1,2,Active Shallow Crust,0.0,89.99037,0.0,09/16/1763 +7.68159,50.58444,6507,7,18,6,44,9,4.25,5.0,fr,19920,130,839124,1,1,Active Shallow Crust,0.0,89.99142,0.0,07/18/6507 +7.68159,50.58444,5618,9,25,13,3,44,4.35,5.0,fr,19921,112,839136,1,1,Active Shallow Crust,0.0,89.9898,0.0,09/25/5618 +7.68159,50.58444,6742,2,12,11,46,51,4.35,15.0,fr,19922,134,839137,1,1,Active Shallow Crust,0.0,89.9898,0.0,02/12/6742 +7.68159,50.58444,4238,9,28,15,51,2,4.55,27.5,fr,19923,84,839162,1,1,Active Shallow Crust,0.0,89.98988,0.0,09/28/4238 +-1.52261,45.75937,7069,10,28,13,0,24,3.55,5.0,fr,19924,141,839523,1,1,Active Shallow Crust,240.0122,57.99808,0.0,10/28/7069 +-1.52261,45.75937,9641,9,21,20,44,54,3.65,5.0,fr,19925,192,839532,1,1,Active Shallow Crust,0.0,89.99059,0.0,09/21/9641 +-1.52261,45.75937,6872,11,19,20,29,29,3.65,27.5,fr,19926,137,839534,1,1,Active Shallow Crust,0.0,89.99059,0.0,11/19/6872 +-1.52261,45.75937,5907,9,9,3,57,9,3.65,27.5,fr,19927,118,839537,1,1,Active Shallow Crust,240.0012,58.01282,0.0,09/09/5907 +-1.52261,45.75937,6383,10,24,13,57,52,3.75,5.0,fr,19928,127,839553,1,1,Active Shallow Crust,128.8968,89.96735,0.0,10/24/6383 +-1.52261,45.75937,5564,10,20,0,28,11,3.85,5.0,fr,19929,111,839556,1,1,Active Shallow Crust,0.0,89.99004,0.0,10/20/5564 +-1.52261,45.75937,3520,4,26,9,53,19,3.85,15.0,fr,19930,70,839557,1,1,Active Shallow Crust,0.0,89.99004,0.0,04/26/3520 +-1.52261,45.75937,4740,10,5,22,58,24,4.25,5.0,fr,19931,94,839607,1,1,Active Shallow Crust,240.0074,57.9941,0.0,10/05/4740 +-1.52261,45.75937,676,3,27,2,49,15,4.55,5.0,fr,19932,13,839640,1,1,Active Shallow Crust,0.0,89.98999,0.0,03/27/0676 +-1.522597,45.75937,6756,6,28,14,3,39,6.65,10.68981,fr,19933,135,839892,1,1,Active Shallow Crust,360.0,89.99,0.0,06/28/6756 +-2.04427,49.09515,2121,3,5,20,13,11,3.55,5.0,fr,19934,42,840000,1,3,Active Shallow Crust,0.0,89.9901,0.0,03/05/2121 +-2.04427,49.09515,2618,11,8,12,45,39,3.55,5.0,fr,19935,52,840000,1,3,Active Shallow Crust,0.0,89.9901,0.0,11/08/2618 +-2.04427,49.09515,4190,9,7,7,4,10,3.55,5.0,fr,19936,83,840000,1,3,Active Shallow Crust,0.0,89.9901,0.0,09/07/4190 +-2.04427,49.09515,6938,3,19,1,33,45,3.55,15.0,fr,19937,138,840001,1,1,Active Shallow Crust,0.0,89.9901,0.0,03/19/6938 +-2.04427,49.09515,8083,2,22,19,13,46,3.55,5.0,fr,19938,161,840003,1,1,Active Shallow Crust,240.0126,57.99781,0.0,02/22/8083 +-2.04427,49.09515,1060,8,22,8,15,35,3.55,15.0,fr,19939,21,840004,1,1,Active Shallow Crust,240.0126,57.99781,0.0,08/22/1060 +-2.04427,49.09515,223,6,18,10,47,29,3.55,5.0,fr,19940,4,840006,1,1,Active Shallow Crust,0.0,89.98998,-90.0,06/18/0223 +-2.04427,49.09515,2176,8,15,1,6,19,3.55,5.0,fr,19941,43,840009,1,1,Active Shallow Crust,128.8964,89.9934,0.0,08/15/2176 +-2.04427,49.09515,6155,7,29,7,8,0,3.55,27.5,fr,19942,123,840011,1,1,Active Shallow Crust,128.8964,89.9934,0.0,07/29/6155 +-2.04427,49.09515,1004,3,1,8,8,55,3.65,5.0,fr,19943,20,840012,1,2,Active Shallow Crust,0.0,89.99117,0.0,03/01/1004 +-2.04427,49.09515,9220,8,7,11,38,49,3.65,5.0,fr,19944,184,840012,1,2,Active Shallow Crust,0.0,89.99117,0.0,08/07/9220 +-2.04427,49.09515,9276,10,19,18,21,48,3.65,15.0,fr,19945,185,840013,1,4,Active Shallow Crust,0.0,89.99117,0.0,10/19/9276 +-2.04427,49.09515,7748,1,5,14,43,8,3.65,15.0,fr,19946,154,840013,1,4,Active Shallow Crust,0.0,89.99117,0.0,01/05/7748 +-2.04427,49.09515,2198,1,8,20,2,11,3.65,15.0,fr,19947,43,840013,1,4,Active Shallow Crust,0.0,89.99117,0.0,01/08/2198 +-2.04427,49.09515,4736,10,5,3,15,24,3.65,15.0,fr,19948,94,840013,1,4,Active Shallow Crust,0.0,89.99117,0.0,10/05/4736 +-2.04427,49.09515,2547,8,27,9,8,2,3.65,5.0,fr,19949,50,840015,1,1,Active Shallow Crust,240.0016,58.01263,0.0,08/27/2547 +-2.04427,49.09515,39,9,5,12,55,18,3.65,27.5,fr,19950,0,840017,1,1,Active Shallow Crust,240.0016,58.01254,0.0,09/05/0039 +-2.04427,49.09515,100,10,5,23,13,11,3.85,5.0,fr,19951,1,840036,1,2,Active Shallow Crust,0.0,89.99065,0.0,10/05/0100 +-2.04427,49.09515,9353,6,11,7,53,18,3.85,5.0,fr,19952,187,840036,1,2,Active Shallow Crust,0.0,89.99065,0.0,06/11/9353 +-2.04427,49.09515,6002,5,7,10,42,21,3.85,5.0,fr,19953,120,840045,1,1,Active Shallow Crust,128.8956,89.99416,0.0,05/07/6002 +-2.04427,49.09515,5964,2,2,4,34,55,3.95,5.0,fr,19954,119,840048,1,1,Active Shallow Crust,0.0,89.98959,0.0,02/02/5964 +-2.04427,49.09515,5186,11,30,20,32,2,3.95,15.0,fr,19955,103,840049,1,1,Active Shallow Crust,0.0,89.98959,0.0,11/30/5186 +-2.04427,49.09515,2549,9,17,14,25,18,4.05,15.0,fr,19956,50,840061,1,2,Active Shallow Crust,0.0,89.99072,0.0,09/17/2549 +-2.04427,49.09515,893,6,11,0,5,33,4.05,15.0,fr,19957,17,840061,1,2,Active Shallow Crust,0.0,89.99072,0.0,06/11/0893 +-2.04427,49.09515,4375,8,20,20,18,19,4.05,5.0,fr,19958,87,840063,1,1,Active Shallow Crust,240.0064,58.00596,0.0,08/20/4375 +-2.04427,49.09515,2205,9,5,16,17,50,4.15,5.0,fr,19959,44,840072,1,1,Active Shallow Crust,0.0,89.99007,0.0,09/05/2205 +-2.04427,49.09515,5640,9,7,11,4,28,4.35,5.0,fr,19960,112,840096,1,1,Active Shallow Crust,0.0,89.98949,0.0,09/07/5640 +-2.04427,49.09515,8464,8,1,3,20,24,4.45,15.0,fr,19961,169,840109,1,1,Active Shallow Crust,0.0,89.98946,0.0,08/01/8464 +-2.04427,49.09515,6100,12,9,6,34,34,4.45,5.0,fr,19962,121,840114,1,1,Active Shallow Crust,0.0,89.99052,-90.0,12/09/6100 +-2.04427,49.09515,4538,10,11,10,39,42,5.05,5.0,fr,19963,90,840180,1,1,Active Shallow Crust,0.0,89.99001,0.0,10/11/4538 +8.10922,47.60798,6337,8,28,11,56,58,3.55,5.0,fr,19964,126,840480,1,4,Active Shallow Crust,0.0,89.9864,0.0,08/28/6337 +8.10922,47.60798,3592,3,12,15,51,11,3.55,5.0,fr,19965,71,840480,1,4,Active Shallow Crust,0.0,89.9864,0.0,03/12/3592 +8.10922,47.60798,8091,3,10,17,40,2,3.55,5.0,fr,19966,161,840480,1,4,Active Shallow Crust,0.0,89.9864,0.0,03/10/8091 +8.10922,47.60798,4220,2,20,13,17,40,3.55,5.0,fr,19967,84,840480,1,4,Active Shallow Crust,0.0,89.9864,0.0,02/20/4220 +8.10922,47.60798,1671,1,22,14,57,29,3.55,15.0,fr,19968,33,840481,1,4,Active Shallow Crust,0.0,89.9864,0.0,01/22/1671 +8.10922,47.60798,8920,4,11,16,19,4,3.55,15.0,fr,19969,178,840481,1,4,Active Shallow Crust,0.0,89.9864,0.0,04/11/8920 +8.10922,47.60798,7850,2,1,1,34,58,3.55,15.0,fr,19970,156,840481,1,4,Active Shallow Crust,0.0,89.9864,0.0,02/01/7850 +8.10922,47.60798,9440,2,25,22,38,40,3.55,15.0,fr,19971,188,840481,1,4,Active Shallow Crust,0.0,89.9864,0.0,02/25/9440 +8.10922,47.60798,7621,11,20,2,52,1,3.55,15.0,fr,19972,152,840484,1,1,Active Shallow Crust,240.013,57.99811,0.0,11/20/7621 +8.10922,47.60798,6970,11,5,4,50,29,3.65,5.0,fr,19973,139,840492,1,1,Active Shallow Crust,0.0,89.98788,0.0,11/05/6970 +8.10922,47.60798,2275,5,15,0,39,9,3.65,15.0,fr,19974,45,840493,1,2,Active Shallow Crust,0.0,89.98788,0.0,05/15/2275 +8.10922,47.60798,4561,4,24,9,51,29,3.65,15.0,fr,19975,91,840493,1,2,Active Shallow Crust,0.0,89.98788,0.0,04/24/4561 +8.10922,47.60798,9763,1,22,14,2,32,3.65,5.0,fr,19976,195,840501,1,2,Active Shallow Crust,128.9018,89.96355,0.0,01/22/9763 +8.10922,47.60798,3609,9,10,9,6,36,3.65,5.0,fr,19977,72,840501,1,2,Active Shallow Crust,128.9018,89.96355,0.0,09/10/3609 +8.10922,47.60798,4591,4,12,23,8,7,3.75,5.0,fr,19978,91,840504,1,1,Active Shallow Crust,0.0,89.9892,0.0,04/12/4591 +8.10922,47.60798,3334,5,14,3,24,4,3.75,15.0,fr,19979,66,840505,1,1,Active Shallow Crust,0.0,89.9892,0.0,05/14/3334 +8.10922,47.60798,8223,7,19,12,19,31,3.75,27.5,fr,19980,164,840506,1,1,Active Shallow Crust,0.0,89.9892,0.0,07/19/8223 +8.10922,47.60798,9565,2,10,15,8,46,3.75,27.5,fr,19981,191,840509,1,1,Active Shallow Crust,240.0096,58.01785,0.0,02/10/9565 +8.10922,47.60798,172,8,24,9,8,25,3.75,5.0,fr,19982,3,840510,1,1,Active Shallow Crust,0.0,89.98907,-90.0,08/24/0172 +8.10922,47.60798,8851,11,22,1,14,8,3.85,5.0,fr,19983,177,840516,1,1,Active Shallow Crust,0.0,89.99037,0.0,11/22/8851 +8.10922,47.60798,7578,2,12,7,29,16,3.95,5.0,fr,19984,151,840528,1,2,Active Shallow Crust,0.0,89.99142,0.0,02/12/7578 +8.10922,47.60798,4018,11,18,13,15,27,3.95,5.0,fr,19985,80,840528,1,2,Active Shallow Crust,0.0,89.99142,0.0,11/18/4018 +8.10922,47.60798,9413,10,21,4,52,39,4.05,5.0,fr,19986,188,840543,1,1,Active Shallow Crust,240.006,58.00699,0.0,10/21/9413 +8.10922,47.60798,7346,5,19,17,35,9,4.15,5.0,fr,19987,146,840552,1,1,Active Shallow Crust,0.0,89.99319,0.0,05/19/7346 +8.10922,47.60798,4059,12,4,21,22,25,4.25,5.0,fr,19988,81,840564,1,2,Active Shallow Crust,0.0,89.98785,0.0,12/04/4059 +8.10922,47.60798,9713,2,25,7,17,59,4.25,5.0,fr,19989,194,840564,1,2,Active Shallow Crust,0.0,89.98785,0.0,02/25/9713 +8.10922,47.60798,8133,2,19,11,18,55,4.35,5.0,fr,19990,162,840576,1,1,Active Shallow Crust,0.0,89.98917,0.0,02/19/8133 +8.10922,47.60798,8037,4,21,17,29,22,4.35,15.0,fr,19991,160,840577,1,1,Active Shallow Crust,0.0,89.98917,0.0,04/21/8037 +8.10922,47.60798,3858,4,14,12,14,44,4.45,5.0,fr,19992,77,840588,1,1,Active Shallow Crust,0.0,89.99035,0.0,04/14/3858 +8.10922,47.60798,5644,8,8,4,49,58,4.65,15.0,fr,19993,112,840613,1,1,Active Shallow Crust,0.0,89.9885,0.0,08/08/5644 +8.10922,47.60798,9481,6,29,10,41,13,4.75,5.0,fr,19994,189,840624,1,1,Active Shallow Crust,0.0,89.98975,0.0,06/29/9481 +8.10922,47.60798,6792,10,25,2,30,2,4.95,15.0,fr,19995,135,840649,1,1,Active Shallow Crust,0.0,89.98914,0.0,10/25/6792 +8.10922,47.60798,1901,8,23,15,12,29,5.15,27.5,fr,19996,38,840674,1,1,Active Shallow Crust,0.0,89.98922,0.0,08/23/1901 +8.10922,47.60798,2883,7,27,7,4,39,5.45,15.0,fr,19997,57,840712,1,1,Active Shallow Crust,240.0301,57.99874,0.0,07/27/2883 +2.08167,46.56624,6038,10,4,16,24,21,3.55,5.0,fr,19998,120,840960,1,1,Active Shallow Crust,0.0,89.9896,0.0,10/04/6038 +2.08167,46.56624,1559,4,25,5,57,2,3.55,15.0,fr,19999,31,840961,1,1,Active Shallow Crust,0.0,89.9896,0.0,04/25/1559 +2.08167,46.56624,5399,2,16,12,19,43,3.65,27.5,fr,20000,107,840974,1,1,Active Shallow Crust,0.0,89.99073,0.0,02/16/5399 +2.08167,46.56624,8823,9,12,16,31,57,3.65,5.0,fr,20001,176,840981,1,1,Active Shallow Crust,128.9008,89.96352,0.0,09/12/8823 +2.08167,46.56624,765,2,18,2,26,18,3.75,5.0,fr,20002,15,840984,1,1,Active Shallow Crust,0.0,89.98898,0.0,02/18/0765 +2.08167,46.56624,6519,1,12,12,16,33,3.85,5.0,fr,20003,130,840996,1,1,Active Shallow Crust,0.0,89.99018,0.0,01/12/6519 +2.08167,46.56624,6718,8,18,7,43,12,3.85,15.0,fr,20004,134,840997,1,1,Active Shallow Crust,0.0,89.99018,0.0,08/18/6718 +2.08167,46.56624,496,10,4,7,48,45,3.95,5.0,fr,20005,9,841008,1,1,Active Shallow Crust,0.0,89.98907,0.0,10/04/0496 +2.08167,46.56624,8539,9,16,18,22,2,4.05,5.0,fr,20006,170,841020,1,2,Active Shallow Crust,0.0,89.99025,0.0,09/16/8539 +2.08167,46.56624,4494,1,18,9,3,7,4.05,5.0,fr,20007,89,841020,1,2,Active Shallow Crust,0.0,89.99025,0.0,01/18/4494 +2.08167,46.56624,949,7,19,23,16,35,4.05,5.0,fr,20008,18,841029,1,1,Active Shallow Crust,128.8904,89.99416,0.0,07/19/0949 +2.08167,46.56624,2156,2,16,14,2,50,4.35,15.0,fr,20009,43,841057,1,1,Active Shallow Crust,0.0,89.99034,0.0,02/16/2156 +2.08167,46.56624,2302,6,21,21,3,46,4.75,5.0,fr,20010,46,841104,1,1,Active Shallow Crust,0.0,89.99042,0.0,06/21/2302 +2.08167,46.56624,7436,11,3,6,48,6,5.15,5.0,fr,20011,148,841152,1,1,Active Shallow Crust,0.0,89.9901,0.0,11/03/7436 +2.08167,46.56624,7708,5,17,17,42,53,5.35,5.0,fr,20012,154,841179,1,1,Active Shallow Crust,240.0252,57.99789,0.0,05/17/7708 +4.40499,47.52854,9367,1,27,0,14,6,3.55,5.0,fr,20013,187,841440,1,1,Active Shallow Crust,0.0,89.99319,0.0,01/27/9367 +4.40499,47.52854,4130,2,3,12,54,3,3.55,5.0,fr,20014,82,841446,1,1,Active Shallow Crust,0.0,89.99311,-90.0,02/03/4130 +4.40499,47.52854,6545,2,13,16,45,3,3.55,15.0,fr,20015,130,841450,1,1,Active Shallow Crust,128.8967,89.99319,0.0,02/13/6545 +4.40499,47.52854,3899,10,6,18,58,50,3.65,5.0,fr,20016,77,841452,1,1,Active Shallow Crust,0.0,89.98786,0.0,10/06/3899 +4.40499,47.52854,6103,10,19,22,42,40,3.65,15.0,fr,20017,122,841453,1,1,Active Shallow Crust,0.0,89.98786,0.0,10/19/6103 +4.40499,47.52854,8668,6,9,1,47,47,3.75,5.0,fr,20018,173,841464,1,1,Active Shallow Crust,0.0,89.98918,0.0,06/09/8668 +4.40499,47.52854,8263,11,19,21,56,17,3.95,15.0,fr,20019,165,841489,1,1,Active Shallow Crust,0.0,89.99141,0.0,11/19/8263 +4.40499,47.52854,8366,12,11,7,35,42,4.05,5.0,fr,20020,167,841500,1,1,Active Shallow Crust,0.0,89.98851,0.0,12/11/8366 +4.40499,47.52854,1696,1,3,10,4,35,4.35,5.0,fr,20021,33,841536,1,1,Active Shallow Crust,0.0,89.98916,0.0,01/03/1696 +-1.24263,42.7681,2783,11,15,11,44,50,3.55,5.0,fr,20022,55,841920,1,3,Active Shallow Crust,0.0,89.99075,0.0,11/15/2783 +-1.24263,42.7681,1440,4,16,2,55,3,3.55,5.0,fr,20023,28,841920,1,3,Active Shallow Crust,0.0,89.99075,0.0,04/16/1440 +-1.24263,42.7681,8349,12,3,20,11,22,3.55,5.0,fr,20024,166,841920,1,3,Active Shallow Crust,0.0,89.99075,0.0,12/03/8349 +-1.24263,42.7681,8832,10,5,4,50,30,3.55,15.0,fr,20025,176,841921,1,1,Active Shallow Crust,0.0,89.99075,0.0,10/05/8832 +-1.24263,42.7681,9546,11,7,11,0,31,3.55,5.0,fr,20026,190,841923,1,2,Active Shallow Crust,240.0117,57.99815,0.0,11/07/9546 +-1.24263,42.7681,4549,5,21,23,49,27,3.55,5.0,fr,20027,90,841923,1,2,Active Shallow Crust,240.0117,57.99815,0.0,05/21/4549 +-1.24263,42.7681,848,2,9,0,55,31,3.55,15.0,fr,20028,16,841924,1,1,Active Shallow Crust,240.0117,57.99815,0.0,02/09/0848 +-1.24263,42.7681,388,2,22,10,33,50,3.55,5.0,fr,20029,7,841929,1,2,Active Shallow Crust,128.8967,89.99352,0.0,02/22/0388 +-1.24263,42.7681,5133,7,1,2,10,36,3.55,5.0,fr,20030,102,841929,1,2,Active Shallow Crust,128.8967,89.99352,0.0,07/01/5133 +-1.24263,42.7681,2717,7,25,21,43,3,3.65,5.0,fr,20031,54,841932,1,1,Active Shallow Crust,0.0,89.9901,0.0,07/25/2717 +-1.24263,42.7681,2747,6,30,21,23,15,3.65,15.0,fr,20032,54,841933,1,2,Active Shallow Crust,0.0,89.9901,0.0,06/30/2747 +-1.24263,42.7681,4871,1,19,19,56,8,3.65,15.0,fr,20033,97,841933,1,2,Active Shallow Crust,0.0,89.9901,0.0,01/19/4871 +-1.24263,42.7681,6442,12,24,20,27,21,3.65,15.0,fr,20034,128,841936,1,1,Active Shallow Crust,240.0005,58.01278,0.0,12/24/6442 +-1.24263,42.7681,9604,12,14,9,42,25,3.65,5.0,fr,20035,192,841938,1,1,Active Shallow Crust,0.0,89.98999,-90.0,12/14/9604 +-1.24263,42.7681,1640,3,28,12,30,1,3.75,5.0,fr,20036,32,841944,1,2,Active Shallow Crust,0.0,89.98971,0.0,03/28/1640 +-1.24263,42.7681,4946,9,15,18,32,50,3.75,5.0,fr,20037,98,841944,1,2,Active Shallow Crust,0.0,89.98971,0.0,09/15/4946 +-1.24263,42.7681,4349,10,3,12,31,51,3.75,27.5,fr,20038,86,841946,1,1,Active Shallow Crust,0.0,89.98971,0.0,10/03/4349 +-1.24263,42.7681,5735,1,24,19,5,40,3.75,5.0,fr,20039,114,841947,1,1,Active Shallow Crust,240.0079,58.01745,0.0,01/24/5735 +-1.24263,42.7681,4113,2,4,13,36,10,3.85,15.0,fr,20040,82,841957,1,1,Active Shallow Crust,0.0,89.98952,0.0,02/04/4113 +-1.24263,42.7681,9992,8,17,9,51,14,3.85,5.0,fr,20041,199,841959,1,1,Active Shallow Crust,240.0103,57.99767,0.0,08/17/9992 +-1.24263,42.7681,636,7,27,16,27,36,3.85,15.0,fr,20042,12,841966,1,2,Active Shallow Crust,128.8959,89.9941,0.0,07/27/0636 +-1.24263,42.7681,831,9,14,5,34,27,3.85,15.0,fr,20043,16,841966,1,2,Active Shallow Crust,128.8959,89.9941,0.0,09/14/0831 +-1.24263,42.7681,6740,10,22,4,11,19,3.95,15.0,fr,20044,134,841972,1,1,Active Shallow Crust,240.0191,58.00495,0.0,10/22/6740 +-1.24263,42.7681,4383,12,7,13,39,2,3.95,27.5,fr,20045,87,841973,1,1,Active Shallow Crust,240.0191,58.00495,0.0,12/07/4383 +-1.24263,42.7681,793,12,8,13,34,4,3.95,27.5,fr,20046,15,841976,1,1,Active Shallow Crust,0.0,89.99055,-90.0,12/08/0793 +-1.24263,42.7681,7386,4,16,4,37,24,4.15,5.0,fr,20047,147,841992,1,3,Active Shallow Crust,0.0,89.9898,0.0,04/16/7386 +-1.24263,42.7681,1272,4,22,19,45,50,4.15,5.0,fr,20048,25,841992,1,3,Active Shallow Crust,0.0,89.9898,0.0,04/22/1272 +-1.24263,42.7681,4505,7,16,10,45,36,4.15,5.0,fr,20049,90,841992,1,3,Active Shallow Crust,0.0,89.9898,0.0,07/16/4505 +-1.24263,42.7681,9529,1,14,4,31,3,4.15,27.5,fr,20050,190,841997,1,1,Active Shallow Crust,240.0078,57.99718,0.0,01/14/9529 +-1.24263,42.7681,3672,10,17,22,22,11,4.15,5.0,fr,20051,73,841998,1,1,Active Shallow Crust,0.0,89.98968,-90.0,10/17/3672 +-1.24263,42.7681,4742,12,5,18,44,27,4.25,5.0,fr,20052,94,842004,1,2,Active Shallow Crust,0.0,89.99008,0.0,12/05/4742 +-1.24263,42.7681,4948,9,9,14,7,4,4.25,5.0,fr,20053,98,842004,1,2,Active Shallow Crust,0.0,89.99008,0.0,09/09/4948 +-1.24263,42.7681,8106,2,3,16,42,38,4.25,27.5,fr,20054,162,842006,1,1,Active Shallow Crust,0.0,89.99008,0.0,02/03/8106 +-1.24263,42.7681,8139,1,21,16,58,43,4.35,5.0,fr,20055,162,842019,1,1,Active Shallow Crust,240.0076,57.99573,0.0,01/21/8139 +-1.24263,42.7681,8243,7,22,2,48,21,4.35,27.5,fr,20056,164,842027,1,1,Active Shallow Crust,128.8985,89.98277,0.0,07/22/8243 +-1.24263,42.7681,6003,6,5,18,38,14,4.45,15.0,fr,20057,120,842035,1,1,Active Shallow Crust,0.0,89.99004,-90.0,06/05/6003 +-1.24263,42.7681,3784,12,20,4,13,52,4.45,27.5,fr,20058,75,842036,1,1,Active Shallow Crust,0.0,89.99004,-90.0,12/20/3784 +-1.24263,42.7681,7639,3,18,23,39,19,4.55,5.0,fr,20059,152,842040,1,1,Active Shallow Crust,0.0,89.99005,0.0,03/18/7639 +-1.24263,42.7681,7345,1,21,21,53,9,4.65,27.5,fr,20060,146,842054,1,1,Active Shallow Crust,0.0,89.99009,0.0,01/21/7345 +2.30513,45.92248,3650,12,10,7,43,47,3.55,5.0,fr,20061,72,842400,1,3,Active Shallow Crust,0.0,89.98948,0.0,12/10/3650 +2.30513,45.92248,1172,5,1,22,7,35,3.55,5.0,fr,20062,23,842400,1,3,Active Shallow Crust,0.0,89.98948,0.0,05/01/1172 +2.30513,45.92248,2597,10,17,0,2,47,3.55,5.0,fr,20063,51,842400,1,3,Active Shallow Crust,0.0,89.98948,0.0,10/17/2597 +2.30513,45.92248,1889,4,8,13,34,21,3.55,27.5,fr,20064,37,842402,1,1,Active Shallow Crust,0.0,89.98948,0.0,04/08/1889 +2.30513,45.92248,9615,5,29,9,40,50,3.65,15.0,fr,20065,192,842413,1,1,Active Shallow Crust,0.0,89.99062,0.0,05/29/9615 +2.30513,45.92248,7955,1,20,7,24,6,3.65,15.0,fr,20066,159,842416,1,1,Active Shallow Crust,240.0009,58.01286,0.0,01/20/7955 +2.30513,45.92248,9297,1,17,0,13,36,3.65,5.0,fr,20067,185,842421,1,1,Active Shallow Crust,128.9001,89.96352,0.0,01/17/9297 +2.30513,45.92248,9471,5,18,4,27,39,3.75,5.0,fr,20068,189,842424,1,4,Active Shallow Crust,0.0,89.98885,0.0,05/18/9471 +2.30513,45.92248,7851,6,5,18,16,5,3.75,5.0,fr,20069,157,842424,1,4,Active Shallow Crust,0.0,89.98885,0.0,06/05/7851 +2.30513,45.92248,3863,5,7,6,11,51,3.75,5.0,fr,20070,77,842424,1,4,Active Shallow Crust,0.0,89.98885,0.0,05/07/3863 +2.30513,45.92248,2820,2,29,4,21,23,3.75,5.0,fr,20071,56,842424,1,4,Active Shallow Crust,0.0,89.98885,0.0,02/29/2820 +2.30513,45.92248,2419,9,28,1,11,33,3.75,27.5,fr,20072,48,842426,1,1,Active Shallow Crust,0.0,89.98885,0.0,09/28/2419 +2.30513,45.92248,8098,5,5,14,49,20,3.85,27.5,fr,20073,161,842438,1,1,Active Shallow Crust,0.0,89.99007,0.0,05/05/8098 +2.30513,45.92248,4887,11,27,0,9,57,3.85,27.5,fr,20074,97,842447,1,1,Active Shallow Crust,128.8957,89.99379,0.0,11/27/4887 +2.30513,45.92248,1567,11,10,9,2,36,4.15,15.0,fr,20075,31,842473,1,1,Active Shallow Crust,0.0,89.98946,0.0,11/10/1567 +2.30513,45.92248,7783,5,31,5,27,33,4.15,5.0,fr,20076,155,842475,1,1,Active Shallow Crust,240.0086,57.99715,0.0,05/31/7783 +2.30513,45.92248,8225,10,6,5,30,41,4.15,15.0,fr,20077,164,842476,1,1,Active Shallow Crust,240.0086,57.99718,0.0,10/06/8225 +2.30513,45.92248,2897,9,7,13,11,1,4.35,27.5,fr,20078,57,842498,1,1,Active Shallow Crust,0.0,89.99023,0.0,09/07/2897 +2.30513,45.92248,5899,3,3,7,1,12,4.45,5.0,fr,20079,117,842508,1,1,Active Shallow Crust,0.0,89.99004,0.0,03/03/5899 +2.30513,45.92248,1240,5,27,17,13,21,4.75,15.0,fr,20080,24,842548,1,1,Active Shallow Crust,240.0072,58.00447,0.0,05/27/1240 +2.284231,45.94765,4714,12,10,4,40,46,6.75,10.17163,fr,20081,94,842787,1,1,Active Shallow Crust,240.1253,58.00052,0.0,12/10/4714 +-1.67855,44.64961,1146,5,21,20,32,43,3.65,15.0,fr,20082,22,842893,1,1,Active Shallow Crust,0.0,89.99041,0.0,05/21/1146 +-1.67855,44.64961,2395,2,24,13,40,45,3.75,5.0,fr,20083,47,842904,1,1,Active Shallow Crust,0.0,89.99003,0.0,02/24/2395 +2.70924,42.16534,4680,11,29,9,15,44,3.55,5.0,fr,20084,93,843360,1,1,Active Shallow Crust,0.0,89.98879,0.0,11/29/4680 +2.70924,42.16534,8268,4,27,23,43,31,3.65,5.0,fr,20085,165,843372,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/27/8268 +2.70924,42.16534,5186,11,6,8,9,39,3.65,27.5,fr,20086,103,843374,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/06/5186 +2.70924,42.16534,7944,11,2,20,45,34,3.65,5.0,fr,20087,158,843375,1,1,Active Shallow Crust,240.0007,58.01334,0.0,11/02/7944 +2.70924,42.16534,5557,2,25,20,54,9,3.75,5.0,fr,20088,111,843387,1,1,Active Shallow Crust,240.0075,58.01747,0.0,02/25/5557 +2.70924,42.16534,1733,5,2,2,54,17,3.85,15.0,fr,20089,34,843397,1,1,Active Shallow Crust,0.0,89.98942,0.0,05/02/1733 +2.70924,42.16534,7414,10,6,5,6,21,3.85,5.0,fr,20090,148,843399,1,2,Active Shallow Crust,240.0105,57.99765,0.0,10/06/7414 +2.70924,42.16534,3034,12,27,6,44,36,3.85,5.0,fr,20091,60,843399,1,2,Active Shallow Crust,240.0105,57.99765,0.0,12/27/3034 +2.70924,42.16534,5831,2,18,18,57,27,4.05,5.0,fr,20092,116,843420,1,1,Active Shallow Crust,0.0,89.98949,0.0,02/18/5831 +2.70924,42.16534,2597,10,10,14,50,11,4.05,5.0,fr,20093,51,843423,1,1,Active Shallow Crust,240.0053,58.00574,0.0,10/10/2597 +2.70924,42.16534,4202,9,7,1,16,15,4.15,5.0,fr,20094,84,843432,1,1,Active Shallow Crust,0.0,89.99063,0.0,09/07/4202 +2.70924,42.16534,8960,10,17,13,24,37,4.35,5.0,fr,20095,179,843465,1,1,Active Shallow Crust,128.8988,89.98287,0.0,10/17/8960 +2.70924,42.16534,4080,6,4,13,29,30,4.45,15.0,fr,20096,81,843469,1,1,Active Shallow Crust,0.0,89.98939,0.0,06/04/4080 +2.70924,42.16534,2734,8,12,11,43,39,4.45,15.0,fr,20097,54,843472,1,1,Active Shallow Crust,240.0041,57.99451,0.0,08/12/2734 +2.70924,42.16534,5304,9,8,17,2,37,4.55,5.0,fr,20098,106,843483,1,1,Active Shallow Crust,240.0083,57.997,0.0,09/08/5304 +2.70924,42.16534,2803,8,9,5,1,10,4.65,5.0,fr,20099,56,843492,1,1,Active Shallow Crust,0.0,89.99052,0.0,08/09/2803 +2.70924,42.16534,799,5,10,1,43,3,5.35,5.0,fr,20100,15,843579,1,1,Active Shallow Crust,240.0222,58.001,0.0,05/10/0799 +3.9245,47.71407,6116,5,19,20,24,53,3.55,5.0,fr,20101,122,843840,1,1,Active Shallow Crust,0.0,89.98982,0.0,05/19/6116 +3.9245,47.71407,4296,6,9,22,52,6,3.55,15.0,fr,20102,85,843841,1,1,Active Shallow Crust,0.0,89.98982,0.0,06/09/4296 +3.9245,47.71407,1769,1,28,0,53,40,3.75,5.0,fr,20103,35,843864,1,1,Active Shallow Crust,0.0,89.98922,0.0,01/28/1769 +3.9245,47.71407,446,11,30,23,40,6,3.85,5.0,fr,20104,8,843876,1,1,Active Shallow Crust,0.0,89.99039,0.0,11/30/0446 +3.9245,47.71407,4961,8,24,10,48,23,3.95,15.0,fr,20105,99,843895,1,1,Active Shallow Crust,0.0,89.98917,-90.0,08/24/4961 +3.9245,47.71407,6602,2,4,14,23,12,4.45,27.5,fr,20106,132,843953,1,1,Active Shallow Crust,240.0056,57.99483,0.0,02/04/6602 +3.9245,47.71407,4308,6,16,5,34,55,4.65,5.0,fr,20107,86,843972,1,1,Active Shallow Crust,0.0,89.99044,0.0,06/16/4308 +-2.84695,45.90406,7805,9,1,16,34,16,3.85,5.0,fr,20108,156,844359,1,1,Active Shallow Crust,240.0106,57.99814,0.0,09/01/7805 +-1.31167,42.62243,7037,3,10,7,51,33,3.55,5.0,fr,20109,140,844800,1,1,Active Shallow Crust,0.0,89.99072,0.0,03/10/7037 +-1.31167,42.62243,3357,2,16,20,50,20,3.55,27.5,fr,20110,67,844805,1,1,Active Shallow Crust,240.0115,57.99827,0.0,02/16/3357 +-1.31167,42.62243,4307,10,21,22,48,40,3.55,5.0,fr,20111,86,844806,1,1,Active Shallow Crust,0.0,89.99062,-90.0,10/21/4307 +-1.31167,42.62243,6068,5,27,19,6,33,3.55,5.0,fr,20112,121,844809,1,2,Active Shallow Crust,128.8968,89.99351,0.0,05/27/6068 +-1.31167,42.62243,5680,11,23,17,1,8,3.55,5.0,fr,20113,113,844809,1,2,Active Shallow Crust,128.8968,89.99351,0.0,11/23/5680 +-1.31167,42.62243,9211,9,21,11,48,19,3.65,5.0,fr,20114,184,844812,1,2,Active Shallow Crust,0.0,89.99008,0.0,09/21/9211 +-1.31167,42.62243,8388,6,27,7,41,17,3.65,5.0,fr,20115,167,844812,1,2,Active Shallow Crust,0.0,89.99008,0.0,06/27/8388 +-1.31167,42.62243,4492,8,5,19,21,9,3.65,15.0,fr,20116,89,844816,1,1,Active Shallow Crust,240.0005,58.01273,0.0,08/05/4492 +-1.31167,42.62243,5718,8,21,23,53,22,3.65,5.0,fr,20117,114,844818,1,1,Active Shallow Crust,0.0,89.98997,-90.0,08/21/5718 +-1.31167,42.62243,8898,7,3,8,21,52,3.65,5.0,fr,20118,177,844821,1,1,Active Shallow Crust,128.9006,89.96345,0.0,07/03/8898 +-1.31167,42.62243,7367,5,22,10,26,29,3.75,5.0,fr,20119,147,844824,1,4,Active Shallow Crust,0.0,89.98969,0.0,05/22/7367 +-1.31167,42.62243,3633,2,27,12,44,2,3.75,5.0,fr,20120,72,844824,1,4,Active Shallow Crust,0.0,89.98969,0.0,02/27/3633 +-1.31167,42.62243,6706,10,4,3,44,45,3.75,5.0,fr,20121,134,844824,1,4,Active Shallow Crust,0.0,89.98969,0.0,10/04/6706 +-1.31167,42.62243,2185,10,10,7,10,37,3.75,5.0,fr,20122,43,844824,1,4,Active Shallow Crust,0.0,89.98969,0.0,10/10/2185 +-1.31167,42.62243,3253,5,2,3,12,16,3.85,5.0,fr,20123,65,844836,1,1,Active Shallow Crust,0.0,89.98949,0.0,05/02/3253 +-1.31167,42.62243,9724,12,20,13,17,18,3.85,15.0,fr,20124,194,844837,1,1,Active Shallow Crust,0.0,89.98949,0.0,12/20/9724 +-1.31167,42.62243,9907,7,22,23,4,43,3.95,5.0,fr,20125,198,844848,1,2,Active Shallow Crust,0.0,89.98946,0.0,07/22/9907 +-1.31167,42.62243,6833,12,29,16,25,20,3.95,5.0,fr,20126,136,844848,1,2,Active Shallow Crust,0.0,89.98946,0.0,12/29/6833 +-1.31167,42.62243,6929,12,6,1,34,52,3.95,15.0,fr,20127,138,844849,1,1,Active Shallow Crust,0.0,89.98946,0.0,12/06/6929 +-1.31167,42.62243,5045,7,14,11,26,21,4.05,5.0,fr,20128,100,844860,1,1,Active Shallow Crust,0.0,89.98957,0.0,07/14/5045 +-1.31167,42.62243,292,11,27,11,6,55,4.15,5.0,fr,20129,5,844872,1,2,Active Shallow Crust,0.0,89.98978,0.0,11/27/0292 +-1.31167,42.62243,8316,2,25,18,6,17,4.15,5.0,fr,20130,166,844872,1,2,Active Shallow Crust,0.0,89.98978,0.0,02/25/8316 +-1.31167,42.62243,4240,7,24,17,8,14,4.15,15.0,fr,20131,84,844879,1,1,Active Shallow Crust,0.0,89.98965,-90.0,07/24/4240 +-1.31167,42.62243,5692,6,5,23,19,3,4.25,5.0,fr,20132,113,844884,1,2,Active Shallow Crust,0.0,89.99006,0.0,06/05/5692 +-1.31167,42.62243,7628,7,26,9,52,30,4.25,5.0,fr,20133,152,844884,1,2,Active Shallow Crust,0.0,89.99006,0.0,07/26/7628 +-1.31167,42.62243,9831,11,19,8,10,53,4.25,15.0,fr,20134,196,844885,1,1,Active Shallow Crust,0.0,89.99006,0.0,11/19/9831 +-1.31167,42.62243,3459,8,20,15,10,4,4.35,15.0,fr,20135,69,844900,1,1,Active Shallow Crust,240.0077,57.9958,0.0,08/20/3459 +-1.31167,42.62243,2340,4,30,0,26,44,4.35,5.0,fr,20136,46,844905,1,1,Active Shallow Crust,128.8986,89.98276,0.0,04/30/2340 +-1.31167,42.62243,1303,1,21,15,59,25,4.45,15.0,fr,20137,26,844909,1,1,Active Shallow Crust,0.0,89.99013,0.0,01/21/1303 +-1.31167,42.62243,9398,8,15,23,51,56,4.75,5.0,fr,20138,187,844947,1,1,Active Shallow Crust,240.0061,58.00429,0.0,08/15/9398 +-1.31167,42.62243,8916,8,17,7,16,40,4.95,5.0,fr,20139,178,844968,1,1,Active Shallow Crust,0.0,89.99001,0.0,08/17/8916 +4.25401,45.30944,4492,3,29,18,35,23,3.55,5.0,fr,20140,89,845280,1,1,Active Shallow Crust,0.0,89.9929,0.0,03/29/4492 +4.25401,45.30944,8778,3,12,23,2,9,3.55,27.5,fr,20141,175,845285,1,1,Active Shallow Crust,240.012,57.99852,0.0,03/12/8778 +4.25401,45.30944,7533,5,25,1,44,50,3.65,5.0,fr,20142,150,845298,1,1,Active Shallow Crust,0.0,89.98721,-90.0,05/25/7533 +4.25401,45.30944,4497,3,13,17,51,58,3.95,5.0,fr,20143,89,845328,1,1,Active Shallow Crust,0.0,89.99105,0.0,03/13/4497 +4.25401,45.30944,2412,5,20,19,2,32,4.15,5.0,fr,20144,48,845355,1,1,Active Shallow Crust,240.0088,57.99723,0.0,05/20/2412 +3.27578,53.46111,9438,8,24,22,52,6,3.65,5.0,fr,20145,188,845772,1,1,Active Shallow Crust,0.0,89.9893,0.0,08/24/9438 +0.13907,50.68565,4860,1,21,19,46,43,3.65,5.0,fr,20146,97,846252,1,1,Active Shallow Crust,0.0,89.99004,0.0,01/21/4860 +0.13907,50.68565,9054,2,16,17,11,29,3.75,5.0,fr,20147,181,846264,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/16/9054 +0.13907,50.68565,9291,2,15,20,19,1,4.05,15.0,fr,20148,185,846301,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/15/9291 +6.9698,43.01111,5374,12,11,23,25,46,3.65,15.0,fr,20149,107,847213,1,1,Active Shallow Crust,0.0,89.98685,0.0,12/11/5374 +6.9698,43.01111,9891,4,5,13,29,27,3.85,5.0,fr,20150,197,847236,1,1,Active Shallow Crust,0.0,89.98956,0.0,04/05/9891 +6.9698,43.01111,341,9,30,6,59,23,4.25,5.0,fr,20151,6,847284,1,1,Active Shallow Crust,0.0,89.99012,0.0,09/30/0341 +6.9698,43.01111,3227,2,28,6,43,56,4.35,5.0,fr,20152,64,847296,1,1,Active Shallow Crust,0.0,89.9912,0.0,02/28/3227 +-2.48238,49.86353,6471,12,18,4,56,46,3.55,5.0,fr,20153,129,847683,1,1,Active Shallow Crust,240.0123,57.99812,0.0,12/18/6471 +-2.48238,49.86353,3165,11,24,19,13,27,3.95,5.0,fr,20154,63,847728,1,1,Active Shallow Crust,0.0,89.98975,0.0,11/24/3165 +5.19993,51.86844,149,12,28,11,58,26,3.55,5.0,fr,20155,2,848160,1,1,Active Shallow Crust,0.0,89.98755,0.0,12/28/0149 +5.19993,51.86844,2121,9,13,12,9,30,3.75,5.0,fr,20156,42,848184,1,2,Active Shallow Crust,0.0,89.9901,0.0,09/13/2121 +5.19993,51.86844,9538,7,11,16,51,13,3.75,5.0,fr,20157,190,848184,1,2,Active Shallow Crust,0.0,89.9901,0.0,07/11/9538 +5.19993,51.86844,1867,10,10,14,34,29,4.05,15.0,fr,20158,37,848221,1,1,Active Shallow Crust,0.0,89.98949,0.0,10/10/1867 +2.00378,46.42876,6116,8,15,15,59,31,3.55,27.5,fr,20159,122,848642,1,1,Active Shallow Crust,0.0,89.98957,0.0,08/15/6116 +2.00378,46.42876,9972,1,7,12,8,58,3.65,5.0,fr,20160,199,848652,1,1,Active Shallow Crust,0.0,89.99071,0.0,01/07/9972 +2.00378,46.42876,1983,5,30,21,56,55,3.65,15.0,fr,20161,39,848653,1,1,Active Shallow Crust,0.0,89.99071,0.0,05/30/1983 +2.00378,46.42876,2226,9,12,10,10,48,3.75,15.0,fr,20162,44,848665,1,1,Active Shallow Crust,0.0,89.98896,0.0,09/12/2226 +2.00378,46.42876,8296,12,18,2,6,33,3.85,15.0,fr,20163,165,848680,1,1,Active Shallow Crust,240.0108,57.99822,0.0,12/18/8296 +2.00378,46.42876,1725,4,27,21,52,9,3.95,5.0,fr,20164,34,848688,1,1,Active Shallow Crust,0.0,89.98904,0.0,04/27/1725 +2.00378,46.42876,5207,2,6,22,7,46,3.95,15.0,fr,20165,104,848692,1,1,Active Shallow Crust,240.0198,58.0052,0.0,02/06/5207 +2.00378,46.42876,458,6,9,0,22,45,3.95,5.0,fr,20166,9,848694,1,1,Active Shallow Crust,0.0,89.98891,-90.0,06/09/0458 +2.00378,46.42876,3223,2,16,5,6,34,4.05,15.0,fr,20167,64,848701,1,1,Active Shallow Crust,0.0,89.99023,0.0,02/16/3223 +2.00378,46.42876,9630,3,8,7,27,38,4.05,5.0,fr,20168,192,848703,1,1,Active Shallow Crust,240.0062,58.00578,0.0,03/08/9630 +2.00378,46.42876,2763,8,26,20,28,36,4.05,5.0,fr,20169,55,848709,1,1,Active Shallow Crust,128.8907,89.99365,0.0,08/26/2763 +2.00378,46.42876,2311,3,12,4,54,28,4.15,5.0,fr,20170,46,848715,1,1,Active Shallow Crust,240.0084,57.99744,0.0,03/12/2311 +2.00378,46.42876,2760,2,19,6,50,9,4.45,5.0,fr,20171,55,848754,1,1,Active Shallow Crust,0.0,89.99002,-90.0,02/19/2760 +2.00378,46.42876,1724,6,23,23,33,15,4.55,5.0,fr,20172,34,848760,1,1,Active Shallow Crust,0.0,89.9901,0.0,06/23/1724 +2.00378,46.42876,1195,3,16,22,9,56,4.55,5.0,fr,20173,23,848763,1,1,Active Shallow Crust,240.0093,57.99741,0.0,03/16/1195 +2.00378,46.42876,1957,1,4,2,11,53,4.55,5.0,fr,20174,39,848769,1,1,Active Shallow Crust,128.8937,89.98589,0.0,01/04/1957 +2.00378,46.42876,5179,12,27,21,59,56,4.75,5.0,fr,20175,103,848784,1,1,Active Shallow Crust,0.0,89.99039,0.0,12/27/5179 +2.00378,46.42876,5208,3,20,8,17,57,5.05,5.0,fr,20176,104,848820,1,1,Active Shallow Crust,0.0,89.99011,0.0,03/20/5208 +1.49096,44.78905,7698,6,16,13,48,10,3.85,5.0,fr,20177,153,849156,1,1,Active Shallow Crust,0.0,89.98987,0.0,06/16/7698 +1.49096,44.78905,9341,3,7,1,45,31,4.15,5.0,fr,20178,186,849192,1,1,Active Shallow Crust,0.0,89.99014,0.0,03/07/9341 +0.0537,47.23884,1626,9,27,2,59,48,3.55,5.0,fr,20179,32,849600,1,1,Active Shallow Crust,0.0,89.99,0.0,09/27/1626 +0.0537,47.23884,1047,7,31,18,18,41,3.55,15.0,fr,20180,20,849601,1,1,Active Shallow Crust,0.0,89.99,0.0,07/31/1047 +0.0537,47.23884,6774,5,13,9,51,32,3.55,27.5,fr,20181,135,849605,1,1,Active Shallow Crust,240.0123,57.99809,0.0,05/13/6774 +0.0537,47.23884,6229,2,23,1,46,53,3.55,5.0,fr,20182,124,849606,1,1,Active Shallow Crust,0.0,89.98999,-90.0,02/23/6229 +0.0537,47.23884,8700,9,12,12,58,41,3.55,5.0,fr,20183,173,849609,1,1,Active Shallow Crust,128.8962,89.99371,0.0,09/12/8700 +0.0537,47.23884,8389,5,27,13,25,48,3.65,15.0,fr,20184,167,849613,1,1,Active Shallow Crust,0.0,89.98999,0.0,05/27/8389 +0.0537,47.23884,6362,7,1,18,46,46,3.65,5.0,fr,20185,127,849615,1,1,Active Shallow Crust,240.0012,58.01292,0.0,07/01/6362 +0.0537,47.23884,6831,9,11,12,35,49,3.65,15.0,fr,20186,136,849619,1,1,Active Shallow Crust,0.0,89.99002,-90.0,09/11/6831 +0.0537,47.23884,1802,4,17,6,56,59,3.65,5.0,fr,20187,36,849621,1,1,Active Shallow Crust,128.9004,89.96351,0.0,04/17/1802 +0.0537,47.23884,3065,9,6,2,58,41,3.75,5.0,fr,20188,61,849624,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/06/3065 +0.0537,47.23884,3363,1,2,0,6,10,3.75,27.5,fr,20189,67,849626,1,1,Active Shallow Crust,0.0,89.99001,0.0,01/02/3363 +0.0537,47.23884,484,12,3,19,56,35,3.75,15.0,fr,20190,9,849634,1,1,Active Shallow Crust,128.8965,89.96735,0.0,12/03/0484 +0.0537,47.23884,5711,6,2,22,31,49,3.85,5.0,fr,20191,114,849636,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/02/5711 +0.0537,47.23884,6312,2,18,12,22,57,4.05,15.0,fr,20192,126,849661,1,1,Active Shallow Crust,360.0,89.99001,0.0,02/18/6312 +0.0537,47.23884,5819,8,24,5,58,51,4.15,5.0,fr,20193,116,849672,1,1,Active Shallow Crust,0.0,89.99,0.0,08/24/5819 +0.0537,47.23884,7564,5,24,11,6,0,4.45,15.0,fr,20194,151,849709,1,1,Active Shallow Crust,0.0,89.99,0.0,05/24/7564 +0.0537,47.23884,1307,3,13,9,15,51,4.65,5.0,fr,20195,26,849741,1,1,Active Shallow Crust,128.8909,89.98701,0.0,03/13/1307 +0.0537,47.23884,8118,2,22,2,54,8,4.85,5.0,fr,20196,162,849756,1,1,Active Shallow Crust,0.0,89.99,0.0,02/22/8118 +0.0537,47.23884,6520,8,19,0,4,0,5.35,5.0,fr,20197,130,849816,1,1,Active Shallow Crust,360.0,89.99,0.0,08/19/6520 +-2.56952,44.41813,4319,7,21,23,45,55,3.65,27.5,fr,20198,86,850094,1,1,Active Shallow Crust,0.0,89.99037,0.0,07/21/4319 +6.13507,51.98953,7019,9,30,12,40,35,3.75,5.0,fr,20199,140,850587,1,1,Active Shallow Crust,240.0094,58.018,0.0,09/30/7019 +6.13507,51.98953,4234,8,7,1,53,26,4.05,15.0,fr,20200,84,850621,1,1,Active Shallow Crust,0.0,89.98952,0.0,08/07/4234 +-2.97638,43.12243,8517,11,21,20,16,8,3.55,5.0,fr,20201,170,851040,1,1,Active Shallow Crust,0.0,89.98896,0.0,11/21/8517 +-2.97638,43.12243,3154,4,16,18,5,25,3.55,5.0,fr,20202,63,851043,1,1,Active Shallow Crust,240.0115,57.99842,0.0,04/16/3154 +-2.97638,43.12243,9418,2,23,19,24,52,3.55,15.0,fr,20203,188,851044,1,1,Active Shallow Crust,240.0115,57.99842,0.0,02/23/9418 +-2.97638,43.12243,4258,2,16,2,54,56,3.65,5.0,fr,20204,85,851052,1,3,Active Shallow Crust,0.0,89.99016,0.0,02/16/4258 +-2.97638,43.12243,5823,2,10,18,31,27,3.65,5.0,fr,20205,116,851052,1,3,Active Shallow Crust,0.0,89.99016,0.0,02/10/5823 +-2.97638,43.12243,8555,11,7,14,0,37,3.65,5.0,fr,20206,171,851052,1,3,Active Shallow Crust,0.0,89.99016,0.0,11/07/8555 +-2.97638,43.12243,368,12,20,18,56,8,3.65,15.0,fr,20207,7,851062,1,1,Active Shallow Crust,128.901,89.96346,0.0,12/20/0368 +-2.97638,43.12243,2970,6,16,9,49,13,3.75,5.0,fr,20208,59,851064,1,2,Active Shallow Crust,0.0,89.99123,0.0,06/16/2970 +-2.97638,43.12243,265,7,10,10,59,50,3.75,5.0,fr,20209,5,851064,1,2,Active Shallow Crust,0.0,89.99123,0.0,07/10/0265 +-2.97638,43.12243,4625,12,30,14,6,53,3.95,5.0,fr,20210,92,851088,1,1,Active Shallow Crust,0.0,89.99072,0.0,12/30/4625 +-2.97638,43.12243,3471,6,14,7,6,44,4.05,5.0,fr,20211,69,851100,1,1,Active Shallow Crust,0.0,89.98965,0.0,06/14/3471 +-2.97638,43.12243,2209,2,26,10,15,28,4.15,5.0,fr,20212,44,851112,1,1,Active Shallow Crust,0.0,89.99078,0.0,02/26/2209 +-2.97638,43.12243,8145,4,22,16,48,4,4.25,27.5,fr,20213,162,851126,1,1,Active Shallow Crust,0.0,89.99014,0.0,04/22/8145 +-2.97638,43.12243,1103,3,9,1,5,4,4.25,5.0,fr,20214,22,851133,1,1,Active Shallow Crust,128.8948,89.98109,0.0,03/09/1103 +-2.97638,43.12243,7992,11,4,17,30,25,4.35,5.0,fr,20215,159,851139,1,1,Active Shallow Crust,240.0078,57.99571,0.0,11/04/7992 +6.03933,51.85654,3507,4,26,8,36,12,3.55,15.0,fr,20216,70,851524,1,1,Active Shallow Crust,240.012,57.99817,0.0,04/26/3507 +6.03933,51.85654,3818,5,12,6,34,47,3.55,15.0,fr,20217,76,851527,1,1,Active Shallow Crust,0.0,89.9874,-90.0,05/12/3818 +6.03933,51.85654,3211,7,17,9,13,51,3.65,5.0,fr,20218,64,851532,1,1,Active Shallow Crust,0.0,89.9889,0.0,07/17/3211 +6.03933,51.85654,4467,9,8,22,33,30,3.65,15.0,fr,20219,89,851536,1,1,Active Shallow Crust,240.0021,58.01268,0.0,09/08/4467 +6.03933,51.85654,6860,11,4,7,47,33,3.75,15.0,fr,20220,137,851545,1,1,Active Shallow Crust,0.0,89.9901,0.0,11/04/6860 +6.03933,51.85654,4882,2,8,12,14,57,3.95,5.0,fr,20221,97,851568,1,1,Active Shallow Crust,0.0,89.98821,0.0,02/08/4882 +-1.48857,43.84434,865,8,27,1,53,33,3.55,5.0,fr,20222,17,852960,1,1,Active Shallow Crust,359.9991,89.99091,0.0,08/27/0865 +-1.48857,43.84434,7551,3,9,9,59,18,3.75,5.0,fr,20223,151,852984,1,1,Active Shallow Crust,0.0,89.98989,0.0,03/09/7551 +-1.48857,43.84434,8680,9,12,16,41,22,3.85,5.0,fr,20224,173,852996,1,1,Active Shallow Crust,0.0,89.9897,0.0,09/12/8680 +-1.48857,43.84434,6834,10,29,15,37,52,4.95,5.0,fr,20225,136,853137,1,1,Active Shallow Crust,128.8909,89.98975,0.0,10/29/6834 +4.72766,43.12916,4327,12,28,11,17,39,3.85,5.0,fr,20226,86,853476,1,1,Active Shallow Crust,0.0,89.98958,0.0,12/28/4327 +4.72766,43.12916,8096,4,16,5,37,51,3.95,5.0,fr,20227,161,853488,1,1,Active Shallow Crust,0.0,89.99072,0.0,04/16/8096 +4.72766,43.12916,9369,3,8,14,30,22,4.35,5.0,fr,20228,187,853545,1,1,Active Shallow Crust,128.8987,89.98291,0.0,03/08/9369 +4.72766,43.12916,3320,10,15,14,37,1,4.55,15.0,fr,20229,66,853564,1,1,Active Shallow Crust,240.0085,57.99732,0.0,10/15/3320 +2.54319,46.34843,7582,6,17,15,36,35,3.55,5.0,fr,20230,151,853920,1,1,Active Shallow Crust,0.0,89.98956,0.0,06/17/7582 +2.54319,46.34843,4136,10,13,2,3,43,3.55,15.0,fr,20231,82,853921,1,1,Active Shallow Crust,0.0,89.98956,0.0,10/13/4136 +2.54319,46.34843,8543,9,14,12,28,2,3.55,5.0,fr,20232,170,853923,1,2,Active Shallow Crust,240.0118,57.99813,0.0,09/14/8543 +2.54319,46.34843,3047,7,28,17,12,40,3.55,5.0,fr,20233,60,853923,1,2,Active Shallow Crust,240.0118,57.99813,0.0,07/28/3047 +2.54319,46.34843,745,4,15,2,51,18,3.55,5.0,fr,20234,14,853926,1,1,Active Shallow Crust,0.0,89.98944,-90.0,04/15/0745 +2.54319,46.34843,9009,3,28,3,9,29,3.55,5.0,fr,20235,180,853929,1,2,Active Shallow Crust,128.8967,89.99304,0.0,03/28/9009 +2.54319,46.34843,2070,10,9,4,54,40,3.55,5.0,fr,20236,41,853929,1,2,Active Shallow Crust,128.8967,89.99304,0.0,10/09/2070 +2.54319,46.34843,2703,4,21,19,39,39,3.75,5.0,fr,20237,54,853944,1,1,Active Shallow Crust,0.0,89.98895,0.0,04/21/2703 +2.54319,46.34843,4431,3,24,23,57,56,3.75,15.0,fr,20238,88,853948,1,1,Active Shallow Crust,240.0079,58.01796,0.0,03/24/4431 +2.54319,46.34843,42,12,29,5,33,38,3.85,5.0,fr,20239,0,853956,1,1,Active Shallow Crust,0.0,89.99014,0.0,12/29/0042 +2.54319,46.34843,7919,3,12,6,47,8,3.95,5.0,fr,20240,158,853968,1,1,Active Shallow Crust,0.0,89.98902,0.0,03/12/7919 +2.54319,46.34843,8919,12,22,19,36,50,4.05,5.0,fr,20241,178,853980,1,1,Active Shallow Crust,0.0,89.99021,0.0,12/22/8919 +2.54319,46.34843,6108,9,23,12,59,39,4.25,5.0,fr,20242,122,854007,1,1,Active Shallow Crust,240.0072,57.99417,0.0,09/23/6108 +2.54319,46.34843,2376,4,19,13,55,31,4.45,15.0,fr,20243,47,854029,1,1,Active Shallow Crust,0.0,89.99012,0.0,04/19/2376 +2.54319,46.34843,6494,9,25,6,33,42,4.75,15.0,fr,20244,129,854071,1,1,Active Shallow Crust,0.0,89.99027,-90.0,09/25/6494 +2.54319,46.34843,6622,12,9,20,42,39,5.15,5.0,fr,20245,132,854112,1,1,Active Shallow Crust,0.0,89.99007,0.0,12/09/6622 +2.54319,46.34843,1918,10,26,10,12,17,5.35,5.0,fr,20246,38,854145,1,1,Active Shallow Crust,128.8832,89.98814,0.0,10/26/1918 +2.54319,46.34843,5198,5,13,11,31,53,5.75,5.0,fr,20247,103,854190,1,1,Active Shallow Crust,0.0,89.98993,-90.0,05/13/5198 +-0.38068,44.90881,4990,7,29,17,47,37,3.65,27.5,fr,20248,99,854417,1,1,Active Shallow Crust,240.0009,58.01273,0.0,07/29/4990 +-0.38068,44.90881,7106,5,18,17,8,52,3.95,5.0,fr,20249,142,854451,1,1,Active Shallow Crust,240.0196,58.00491,0.0,05/18/7106 +-0.38068,44.90881,5084,1,4,1,33,23,4.45,5.0,fr,20250,101,854511,1,1,Active Shallow Crust,240.0049,57.99462,0.0,01/04/5084 +-0.38068,44.90881,5006,2,20,2,44,17,5.35,5.0,fr,20251,100,854616,1,1,Active Shallow Crust,0.0,89.99,0.0,02/20/5006 +-1.40277,44.81404,6614,11,1,19,51,42,3.85,15.0,fr,20252,132,854926,1,1,Active Shallow Crust,128.8961,89.99367,0.0,11/01/6614 +4.49641,40.67105,9203,5,20,6,31,3,3.55,15.0,fr,20253,184,855361,1,1,Active Shallow Crust,0.0,89.99236,0.0,05/20/9203 +4.49641,40.67105,3502,6,3,20,19,46,3.55,5.0,fr,20254,70,855369,1,1,Active Shallow Crust,128.896,89.99618,0.0,06/03/3502 +4.49641,40.67105,6393,7,27,22,0,5,3.65,15.0,fr,20255,127,855373,1,1,Active Shallow Crust,0.0,89.99319,0.0,07/27/6393 +4.49641,40.67105,1496,2,11,0,41,35,3.75,5.0,fr,20256,29,855384,1,1,Active Shallow Crust,0.0,89.98785,0.0,02/11/1496 +4.49641,40.67105,351,10,2,19,47,49,4.45,5.0,fr,20257,7,855468,1,1,Active Shallow Crust,0.0,89.98914,0.0,10/02/0351 +2.16574,49.46831,4857,9,6,1,16,25,3.55,15.0,fr,20258,97,855841,1,1,Active Shallow Crust,0.0,89.99017,0.0,09/06/4857 +2.16574,49.46831,5456,6,3,21,35,8,3.75,5.0,fr,20259,109,855864,1,1,Active Shallow Crust,0.0,89.98959,0.0,06/03/5456 +2.16574,49.46831,5371,2,10,17,57,53,4.65,5.0,fr,20260,107,855981,1,1,Active Shallow Crust,128.8903,89.98714,0.0,02/10/5371 +-1.67221,45.06167,1597,2,25,19,50,56,3.65,5.0,fr,20261,31,856332,1,1,Active Shallow Crust,0.0,89.99048,0.0,02/25/1597 +-1.67221,45.06167,4191,3,9,13,55,37,3.65,15.0,fr,20262,83,856336,1,1,Active Shallow Crust,240.0008,58.01297,0.0,03/09/4191 +3.68312,46.65359,7307,1,14,4,10,0,3.75,5.0,fr,20263,146,857304,1,1,Active Shallow Crust,0.0,89.98901,0.0,01/14/7307 +3.68312,46.65359,4992,9,16,23,42,22,3.95,5.0,fr,20264,99,857328,1,1,Active Shallow Crust,0.0,89.98908,0.0,09/16/4992 +3.68312,46.65359,7861,10,27,20,8,8,4.95,5.0,fr,20265,157,857448,1,1,Active Shallow Crust,0.0,89.99033,0.0,10/27/7861 +4.85017,43.67881,5577,11,24,11,1,27,3.55,5.0,fr,20266,111,857760,1,1,Active Shallow Crust,0.0,89.99271,0.0,11/24/5577 +4.85017,43.67881,8606,4,24,1,26,13,3.55,15.0,fr,20267,172,857761,1,1,Active Shallow Crust,0.0,89.99271,0.0,04/24/8606 +4.85017,43.67881,1352,5,18,9,53,21,3.55,27.5,fr,20268,27,857762,1,1,Active Shallow Crust,0.0,89.99271,0.0,05/18/1352 +4.85017,43.67881,9844,7,27,12,55,4,3.55,27.5,fr,20269,196,857768,1,1,Active Shallow Crust,0.0,89.99262,-90.0,07/27/9844 +4.85017,43.67881,5986,1,22,13,5,14,3.55,5.0,fr,20270,119,857769,1,1,Active Shallow Crust,128.8963,89.99635,0.0,01/22/5986 +4.85017,43.67881,5389,3,30,23,0,14,3.65,5.0,fr,20271,107,857772,1,2,Active Shallow Crust,0.0,89.987,0.0,03/30/5389 +4.85017,43.67881,9484,3,4,23,38,34,3.65,5.0,fr,20272,189,857772,1,2,Active Shallow Crust,0.0,89.987,0.0,03/04/9484 +4.85017,43.67881,8186,2,26,0,17,30,3.65,27.5,fr,20273,163,857774,1,1,Active Shallow Crust,0.0,89.987,0.0,02/26/8186 +4.85017,43.67881,3822,8,18,8,59,24,3.75,5.0,fr,20274,76,857793,1,1,Active Shallow Crust,128.8974,89.96745,0.0,08/18/3822 +4.85017,43.67881,8700,5,2,23,37,9,3.85,5.0,fr,20275,173,857796,1,3,Active Shallow Crust,0.0,89.98968,0.0,05/02/8700 +4.85017,43.67881,5048,1,10,0,50,37,3.85,5.0,fr,20276,100,857796,1,3,Active Shallow Crust,0.0,89.98968,0.0,01/10/5048 +4.85017,43.67881,7705,12,12,8,18,50,3.85,5.0,fr,20277,154,857796,1,3,Active Shallow Crust,0.0,89.98968,0.0,12/12/7705 +4.85017,43.67881,7017,2,7,23,0,34,3.95,5.0,fr,20278,140,857808,1,2,Active Shallow Crust,0.0,89.9908,0.0,02/07/7017 +4.85017,43.67881,5522,1,27,10,55,34,3.95,5.0,fr,20279,110,857808,1,2,Active Shallow Crust,0.0,89.9908,0.0,01/27/5522 +4.85017,43.67881,5669,6,16,6,45,55,3.95,5.0,fr,20280,113,857814,1,1,Active Shallow Crust,0.0,89.99069,-90.0,06/16/5669 +4.85017,43.67881,9568,9,17,21,31,54,3.95,5.0,fr,20281,191,857817,1,1,Active Shallow Crust,128.9,89.9931,0.0,09/17/9568 +4.85017,43.67881,1951,11,14,20,54,57,4.05,5.0,fr,20282,39,857820,1,2,Active Shallow Crust,0.0,89.9918,0.0,11/14/1951 +4.85017,43.67881,349,7,24,21,0,53,4.05,5.0,fr,20283,6,857820,1,2,Active Shallow Crust,0.0,89.9918,0.0,07/24/0349 +4.85017,43.67881,6155,5,29,0,58,5,4.05,15.0,fr,20284,123,857827,1,1,Active Shallow Crust,0.0,89.9917,-90.0,05/29/6155 +4.85017,43.67881,9525,12,21,0,13,45,4.15,5.0,fr,20285,190,857832,1,1,Active Shallow Crust,0.0,89.98904,0.0,12/21/9525 +4.85017,43.67881,5938,3,26,8,59,46,4.25,27.5,fr,20286,118,857846,1,1,Active Shallow Crust,0.0,89.99023,0.0,03/26/5938 +4.85017,43.67881,4453,12,24,14,16,16,4.35,27.5,fr,20287,89,857858,1,1,Active Shallow Crust,0.0,89.99129,0.0,12/24/4453 +4.85017,43.67881,2996,12,18,21,8,7,4.55,5.0,fr,20288,59,857880,1,2,Active Shallow Crust,0.0,89.99078,0.0,12/18/2996 +4.85017,43.67881,996,8,1,15,42,36,4.55,5.0,fr,20289,19,857880,1,2,Active Shallow Crust,0.0,89.99078,0.0,08/01/0996 +4.85017,43.67881,8616,10,29,2,38,30,4.55,5.0,fr,20290,172,857883,1,1,Active Shallow Crust,240.0089,57.99726,0.0,10/29/8616 +4.85017,43.67881,5965,4,2,2,8,6,4.75,15.0,fr,20291,119,857905,1,1,Active Shallow Crust,0.0,89.99084,0.0,04/02/5965 +4.85017,43.67881,7672,9,14,13,10,53,5.55,5.0,fr,20292,153,858003,1,1,Active Shallow Crust,240.0266,58.00213,0.0,09/14/7672 +4.85017,43.67881,229,5,6,4,10,33,5.85,5.0,fr,20293,4,858036,1,1,Active Shallow Crust,0.0,89.99018,0.0,05/06/0229 +1.54282,42.37844,1520,6,15,16,25,55,3.55,5.0,fr,20294,30,858240,1,4,Active Shallow Crust,0.0,89.99069,0.0,06/15/1520 +1.54282,42.37844,4079,5,4,20,8,16,3.55,5.0,fr,20295,81,858240,1,4,Active Shallow Crust,0.0,89.99069,0.0,05/04/4079 +1.54282,42.37844,1072,10,29,9,34,36,3.55,5.0,fr,20296,21,858240,1,4,Active Shallow Crust,0.0,89.99069,0.0,10/29/1072 +1.54282,42.37844,2552,12,24,15,8,5,3.55,5.0,fr,20297,51,858240,1,4,Active Shallow Crust,0.0,89.99069,0.0,12/24/2552 +1.54282,42.37844,8215,11,28,17,7,12,3.55,5.0,fr,20298,164,858246,1,1,Active Shallow Crust,0.0,89.99058,-90.0,11/28/8215 +1.54282,42.37844,5591,7,25,12,53,13,3.55,15.0,fr,20299,111,858247,1,1,Active Shallow Crust,0.0,89.99058,-90.0,07/25/5591 +1.54282,42.37844,1075,7,9,17,4,21,3.65,15.0,fr,20300,21,858253,1,1,Active Shallow Crust,0.0,89.99004,0.0,07/09/1075 +1.54282,42.37844,4964,1,15,16,4,25,3.75,5.0,fr,20301,99,858264,1,3,Active Shallow Crust,0.0,89.98965,0.0,01/15/4964 +1.54282,42.37844,6611,2,5,3,14,7,3.75,5.0,fr,20302,132,858264,1,3,Active Shallow Crust,0.0,89.98965,0.0,02/05/6611 +1.54282,42.37844,3257,7,6,3,36,36,3.75,5.0,fr,20303,65,858264,1,3,Active Shallow Crust,0.0,89.98965,0.0,07/06/3257 +1.54282,42.37844,9616,8,11,20,25,59,3.75,15.0,fr,20304,192,858265,1,1,Active Shallow Crust,0.0,89.98965,0.0,08/11/9616 +1.54282,42.37844,4315,4,13,14,33,45,3.85,5.0,fr,20305,86,858276,1,1,Active Shallow Crust,0.0,89.98946,0.0,04/13/4315 +1.54282,42.37844,6899,6,12,3,12,11,3.95,5.0,fr,20306,137,858288,1,1,Active Shallow Crust,0.0,89.98943,0.0,06/12/6899 +1.54282,42.37844,6843,11,27,12,27,10,4.05,5.0,fr,20307,136,858300,1,3,Active Shallow Crust,0.0,89.98952,0.0,11/27/6843 +1.54282,42.37844,7603,12,7,17,13,49,4.05,5.0,fr,20308,152,858300,1,3,Active Shallow Crust,0.0,89.98952,0.0,12/07/7603 +1.54282,42.37844,2575,10,28,20,0,8,4.05,5.0,fr,20309,51,858300,1,3,Active Shallow Crust,0.0,89.98952,0.0,10/28/2575 +1.54282,42.37844,3343,3,20,23,17,52,4.05,27.5,fr,20310,66,858302,1,1,Active Shallow Crust,0.0,89.98952,0.0,03/20/3343 +1.54282,42.37844,39,7,12,5,2,57,4.05,5.0,fr,20311,0,858303,1,1,Active Shallow Crust,240.0054,58.00571,0.0,07/12/0039 +1.54282,42.37844,1386,11,10,4,13,50,4.25,5.0,fr,20312,27,858327,1,1,Active Shallow Crust,240.0067,57.99393,0.0,11/10/1386 +1.54282,42.37844,419,3,3,22,56,50,4.25,27.5,fr,20313,8,858329,1,1,Active Shallow Crust,240.0067,57.99393,0.0,03/03/0419 +1.54282,42.37844,4196,11,2,0,26,32,4.35,5.0,fr,20314,83,858336,1,1,Active Shallow Crust,0.0,89.99036,0.0,11/02/4196 +1.54282,42.37844,7829,7,26,5,6,18,4.65,5.0,fr,20315,156,858372,1,2,Active Shallow Crust,0.0,89.99003,0.0,07/26/7829 +1.54282,42.37844,8090,12,20,1,51,9,4.65,5.0,fr,20316,161,858372,1,2,Active Shallow Crust,0.0,89.99003,0.0,12/20/8090 +1.54282,42.37844,6144,11,25,4,15,37,4.75,15.0,fr,20317,122,858385,1,1,Active Shallow Crust,0.0,89.99017,0.0,11/25/6144 +5.63384,48.20601,6065,12,30,15,41,2,3.55,5.0,fr,20318,121,858723,1,1,Active Shallow Crust,240.012,57.99797,0.0,12/30/6065 +1.25422,48.64058,3659,11,21,3,42,33,3.55,5.0,fr,20319,73,859200,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/21/3659 +1.25422,48.64058,3332,8,1,12,31,45,3.55,15.0,fr,20320,66,859207,1,1,Active Shallow Crust,0.0,89.98989,-90.0,08/01/3332 +1.25422,48.64058,8070,3,28,6,4,31,3.75,5.0,fr,20321,161,859230,1,1,Active Shallow Crust,0.0,89.99063,-90.0,03/28/8070 +1.25422,48.64058,7542,2,21,8,1,55,4.25,5.0,fr,20322,150,859284,1,1,Active Shallow Crust,0.0,89.99033,0.0,02/21/7542 +-0.18108,43.01614,6873,12,6,0,2,52,3.55,5.0,fr,20323,137,859680,1,16,Active Shallow Crust,0.0,89.99009,0.0,12/06/6873 +-0.18108,43.01614,4209,6,13,22,6,45,3.55,5.0,fr,20324,84,859680,1,16,Active Shallow Crust,0.0,89.99009,0.0,06/13/4209 +-0.18108,43.01614,1262,4,30,22,1,43,3.55,5.0,fr,20325,25,859680,1,16,Active Shallow Crust,0.0,89.99009,0.0,04/30/1262 +-0.18108,43.01614,2857,8,28,4,34,30,3.55,5.0,fr,20326,57,859680,1,16,Active Shallow Crust,0.0,89.99009,0.0,08/28/2857 +-0.18108,43.01614,7480,2,10,23,12,45,3.55,5.0,fr,20327,149,859680,1,16,Active Shallow Crust,0.0,89.99009,0.0,02/10/7480 +-0.18108,43.01614,137,4,13,19,5,42,3.55,5.0,fr,20328,2,859680,1,16,Active Shallow Crust,0.0,89.99009,0.0,04/13/0137 +-0.18108,43.01614,5704,2,22,10,4,24,3.55,5.0,fr,20329,114,859680,1,16,Active Shallow Crust,0.0,89.99009,0.0,02/22/5704 +-0.18108,43.01614,2574,2,5,16,42,30,3.55,5.0,fr,20330,51,859680,1,16,Active Shallow Crust,0.0,89.99009,0.0,02/05/2574 +-0.18108,43.01614,7135,2,8,12,10,26,3.55,5.0,fr,20331,142,859680,1,16,Active Shallow Crust,0.0,89.99009,0.0,02/08/7135 +-0.18108,43.01614,4785,1,21,19,17,32,3.55,5.0,fr,20332,95,859680,1,16,Active Shallow Crust,0.0,89.99009,0.0,01/21/4785 +-0.18108,43.01614,406,4,11,1,18,51,3.55,5.0,fr,20333,8,859680,1,16,Active Shallow Crust,0.0,89.99009,0.0,04/11/0406 +-0.18108,43.01614,4178,2,26,15,46,14,3.55,5.0,fr,20334,83,859680,1,16,Active Shallow Crust,0.0,89.99009,0.0,02/26/4178 +-0.18108,43.01614,3964,9,19,18,4,35,3.55,5.0,fr,20335,79,859680,1,16,Active Shallow Crust,0.0,89.99009,0.0,09/19/3964 +-0.18108,43.01614,1496,9,19,19,7,41,3.55,5.0,fr,20336,29,859680,1,16,Active Shallow Crust,0.0,89.99009,0.0,09/19/1496 +-0.18108,43.01614,3952,11,30,22,26,59,3.55,5.0,fr,20337,79,859680,1,16,Active Shallow Crust,0.0,89.99009,0.0,11/30/3952 +-0.18108,43.01614,2206,11,4,8,49,38,3.55,5.0,fr,20338,44,859680,1,16,Active Shallow Crust,0.0,89.99009,0.0,11/04/2206 +-0.18108,43.01614,446,7,10,3,41,20,3.55,15.0,fr,20339,8,859681,1,3,Active Shallow Crust,0.0,89.99009,0.0,07/10/0446 +-0.18108,43.01614,8628,6,24,17,13,33,3.55,15.0,fr,20340,172,859681,1,3,Active Shallow Crust,0.0,89.99009,0.0,06/24/8628 +-0.18108,43.01614,1171,12,9,9,2,18,3.55,15.0,fr,20341,23,859681,1,3,Active Shallow Crust,0.0,89.99009,0.0,12/09/1171 +-0.18108,43.01614,1438,3,7,14,3,7,3.55,27.5,fr,20342,28,859682,1,3,Active Shallow Crust,0.0,89.99009,0.0,03/07/1438 +-0.18108,43.01614,2569,12,18,12,32,17,3.55,27.5,fr,20343,51,859682,1,3,Active Shallow Crust,0.0,89.99009,0.0,12/18/2569 +-0.18108,43.01614,7601,7,9,15,39,11,3.55,27.5,fr,20344,152,859682,1,3,Active Shallow Crust,0.0,89.99009,0.0,07/09/7601 +-0.18108,43.01614,5426,1,6,9,36,21,3.55,5.0,fr,20345,108,859683,1,3,Active Shallow Crust,240.0119,57.9981,0.0,01/06/5426 +-0.18108,43.01614,6047,9,6,3,33,12,3.55,5.0,fr,20346,120,859683,1,3,Active Shallow Crust,240.0119,57.9981,0.0,09/06/6047 +-0.18108,43.01614,3210,4,13,15,25,11,3.55,5.0,fr,20347,64,859683,1,3,Active Shallow Crust,240.0119,57.9981,0.0,04/13/3210 +-0.18108,43.01614,429,6,22,23,11,2,3.55,15.0,fr,20348,8,859684,1,2,Active Shallow Crust,240.0119,57.9981,0.0,06/22/0429 +-0.18108,43.01614,6497,6,17,10,51,21,3.55,15.0,fr,20349,129,859684,1,2,Active Shallow Crust,240.0119,57.9981,0.0,06/17/6497 +-0.18108,43.01614,2547,11,15,1,9,37,3.55,5.0,fr,20350,50,859689,1,1,Active Shallow Crust,128.8965,89.99367,0.0,11/15/2547 +-0.18108,43.01614,9318,3,9,11,42,13,3.55,27.5,fr,20351,186,859691,1,1,Active Shallow Crust,128.8965,89.99367,0.0,03/09/9318 +-0.18108,43.01614,1958,4,6,7,26,53,3.65,5.0,fr,20352,39,859692,1,14,Active Shallow Crust,0.0,89.98994,0.0,04/06/1958 +-0.18108,43.01614,2017,11,23,20,36,52,3.65,5.0,fr,20353,40,859692,1,14,Active Shallow Crust,0.0,89.98994,0.0,11/23/2017 +-0.18108,43.01614,8474,10,31,12,0,57,3.65,5.0,fr,20354,169,859692,1,14,Active Shallow Crust,0.0,89.98994,0.0,10/31/8474 +-0.18108,43.01614,8677,3,17,1,19,35,3.65,5.0,fr,20355,173,859692,1,14,Active Shallow Crust,0.0,89.98994,0.0,03/17/8677 +-0.18108,43.01614,5335,6,29,23,17,59,3.65,5.0,fr,20356,106,859692,1,14,Active Shallow Crust,0.0,89.98994,0.0,06/29/5335 +-0.18108,43.01614,8915,1,5,1,46,48,3.65,5.0,fr,20357,178,859692,1,14,Active Shallow Crust,0.0,89.98994,0.0,01/05/8915 +-0.18108,43.01614,6875,8,3,3,5,47,3.65,5.0,fr,20358,137,859692,1,14,Active Shallow Crust,0.0,89.98994,0.0,08/03/6875 +-0.18108,43.01614,6712,8,25,17,6,44,3.65,5.0,fr,20359,134,859692,1,14,Active Shallow Crust,0.0,89.98994,0.0,08/25/6712 +-0.18108,43.01614,7988,9,16,21,55,8,3.65,5.0,fr,20360,159,859692,1,14,Active Shallow Crust,0.0,89.98994,0.0,09/16/7988 +-0.18108,43.01614,4312,6,2,2,5,3,3.65,5.0,fr,20361,86,859692,1,14,Active Shallow Crust,0.0,89.98994,0.0,06/02/4312 +-0.18108,43.01614,4691,1,20,6,28,0,3.65,5.0,fr,20362,93,859692,1,14,Active Shallow Crust,0.0,89.98994,0.0,01/20/4691 +-0.18108,43.01614,1118,3,3,5,4,58,3.65,5.0,fr,20363,22,859692,1,14,Active Shallow Crust,0.0,89.98994,0.0,03/03/1118 +-0.18108,43.01614,6631,1,9,0,40,3,3.65,5.0,fr,20364,132,859692,1,14,Active Shallow Crust,0.0,89.98994,0.0,01/09/6631 +-0.18108,43.01614,6043,5,19,8,43,15,3.65,5.0,fr,20365,120,859692,1,14,Active Shallow Crust,0.0,89.98994,0.0,05/19/6043 +-0.18108,43.01614,4617,3,14,11,46,26,3.65,15.0,fr,20366,92,859693,1,5,Active Shallow Crust,0.0,89.98994,0.0,03/14/4617 +-0.18108,43.01614,8328,2,14,6,50,56,3.65,15.0,fr,20367,166,859693,1,5,Active Shallow Crust,0.0,89.98994,0.0,02/14/8328 +-0.18108,43.01614,4363,3,30,0,47,58,3.65,15.0,fr,20368,87,859693,1,5,Active Shallow Crust,0.0,89.98994,0.0,03/30/4363 +-0.18108,43.01614,1532,9,17,19,2,43,3.65,15.0,fr,20369,30,859693,1,5,Active Shallow Crust,0.0,89.98994,0.0,09/17/1532 +-0.18108,43.01614,4435,11,8,3,19,21,3.65,15.0,fr,20370,88,859693,1,5,Active Shallow Crust,0.0,89.98994,0.0,11/08/4435 +-0.18108,43.01614,997,8,17,5,4,43,3.65,5.0,fr,20371,19,859695,1,3,Active Shallow Crust,240.0008,58.01285,0.0,08/17/0997 +-0.18108,43.01614,7504,3,27,15,52,1,3.65,5.0,fr,20372,150,859695,1,3,Active Shallow Crust,240.0008,58.01285,0.0,03/27/7504 +-0.18108,43.01614,3203,11,17,14,52,24,3.65,5.0,fr,20373,64,859695,1,3,Active Shallow Crust,240.0008,58.01285,0.0,11/17/3203 +-0.18108,43.01614,8292,2,7,2,57,15,3.65,15.0,fr,20374,165,859696,1,1,Active Shallow Crust,240.0008,58.01285,0.0,02/07/8292 +-0.18108,43.01614,2984,5,9,17,7,53,3.65,5.0,fr,20375,59,859698,1,1,Active Shallow Crust,0.0,89.99003,-90.0,05/09/2984 +-0.18108,43.01614,5073,12,4,18,58,33,3.65,15.0,fr,20376,101,859699,1,1,Active Shallow Crust,0.0,89.99003,-90.0,12/04/5073 +-0.18108,43.01614,7677,12,10,12,57,27,3.65,27.5,fr,20377,153,859700,1,1,Active Shallow Crust,0.0,89.99003,-90.0,12/10/7677 +-0.18108,43.01614,8578,12,29,19,0,21,3.65,5.0,fr,20378,171,859701,1,1,Active Shallow Crust,128.9007,89.96351,0.0,12/29/8578 +-0.18108,43.01614,1263,1,4,13,37,9,3.65,15.0,fr,20379,25,859702,1,3,Active Shallow Crust,128.9007,89.96351,0.0,01/04/1263 +-0.18108,43.01614,9436,4,21,13,34,3,3.65,15.0,fr,20380,188,859702,1,3,Active Shallow Crust,128.9007,89.96351,0.0,04/21/9436 +-0.18108,43.01614,3064,8,5,7,3,11,3.65,15.0,fr,20381,61,859702,1,3,Active Shallow Crust,128.9007,89.96351,0.0,08/05/3064 +-0.18108,43.01614,8070,1,2,10,4,35,3.75,5.0,fr,20382,161,859704,1,6,Active Shallow Crust,0.0,89.98994,0.0,01/02/8070 +-0.18108,43.01614,8970,5,15,11,8,48,3.75,5.0,fr,20383,179,859704,1,6,Active Shallow Crust,0.0,89.98994,0.0,05/15/8970 +-0.18108,43.01614,7894,12,28,23,7,21,3.75,5.0,fr,20384,157,859704,1,6,Active Shallow Crust,0.0,89.98994,0.0,12/28/7894 +-0.18108,43.01614,8335,4,25,0,35,53,3.75,5.0,fr,20385,166,859704,1,6,Active Shallow Crust,0.0,89.98994,0.0,04/25/8335 +-0.18108,43.01614,1933,6,26,8,46,25,3.75,5.0,fr,20386,38,859704,1,6,Active Shallow Crust,0.0,89.98994,0.0,06/26/1933 +-0.18108,43.01614,3917,7,25,19,23,18,3.75,5.0,fr,20387,78,859704,1,6,Active Shallow Crust,0.0,89.98994,0.0,07/25/3917 +-0.18108,43.01614,541,9,9,13,22,49,3.75,15.0,fr,20388,10,859705,1,1,Active Shallow Crust,0.0,89.98994,0.0,09/09/0541 +-0.18108,43.01614,2961,1,30,19,9,30,3.75,27.5,fr,20389,59,859706,1,2,Active Shallow Crust,0.0,89.98994,0.0,01/30/2961 +-0.18108,43.01614,9547,11,9,13,17,40,3.75,27.5,fr,20390,190,859706,1,2,Active Shallow Crust,0.0,89.98994,0.0,11/09/9547 +-0.18108,43.01614,558,10,1,12,52,16,3.75,5.0,fr,20391,11,859707,1,2,Active Shallow Crust,240.008,58.01748,0.0,10/01/0558 +-0.18108,43.01614,1329,4,24,11,39,52,3.75,5.0,fr,20392,26,859707,1,2,Active Shallow Crust,240.008,58.01748,0.0,04/24/1329 +-0.18108,43.01614,138,6,24,11,51,34,3.75,5.0,fr,20393,2,859710,1,2,Active Shallow Crust,0.0,89.99001,-90.0,06/24/0138 +-0.18108,43.01614,5302,10,12,19,10,34,3.75,5.0,fr,20394,106,859710,1,2,Active Shallow Crust,0.0,89.99001,-90.0,10/12/5302 +-0.18108,43.01614,1634,7,29,6,20,44,3.75,5.0,fr,20395,32,859713,1,2,Active Shallow Crust,128.897,89.96735,0.0,07/29/1634 +-0.18108,43.01614,8603,7,13,1,10,37,3.75,5.0,fr,20396,172,859713,1,2,Active Shallow Crust,128.897,89.96735,0.0,07/13/8603 +-0.18108,43.01614,9903,8,20,22,29,12,3.85,5.0,fr,20397,198,859716,1,3,Active Shallow Crust,0.0,89.99005,0.0,08/20/9903 +-0.18108,43.01614,2809,10,13,10,29,47,3.85,5.0,fr,20398,56,859716,1,3,Active Shallow Crust,0.0,89.99005,0.0,10/13/2809 +-0.18108,43.01614,186,8,14,15,48,31,3.85,5.0,fr,20399,3,859716,1,3,Active Shallow Crust,0.0,89.99005,0.0,08/14/0186 +-0.18108,43.01614,3381,8,10,12,39,1,3.85,15.0,fr,20400,67,859717,1,1,Active Shallow Crust,0.0,89.99005,0.0,08/10/3381 +-0.18108,43.01614,2937,8,17,17,36,17,3.85,27.5,fr,20401,58,859718,1,1,Active Shallow Crust,0.0,89.99005,0.0,08/17/2937 +-0.18108,43.01614,7826,12,17,18,19,41,3.85,5.0,fr,20402,156,859719,1,2,Active Shallow Crust,240.0104,57.99771,0.0,12/17/7826 +-0.18108,43.01614,3463,8,31,10,18,31,3.85,5.0,fr,20403,69,859719,1,2,Active Shallow Crust,240.0104,57.99771,0.0,08/31/3463 +-0.18108,43.01614,3732,6,14,20,7,0,3.85,5.0,fr,20404,74,859725,1,1,Active Shallow Crust,128.896,89.99372,0.0,06/14/3732 +-0.18108,43.01614,6229,9,17,0,36,30,3.85,15.0,fr,20405,124,859726,1,1,Active Shallow Crust,128.896,89.99372,0.0,09/17/6229 +-0.18108,43.01614,9867,3,19,12,42,46,3.95,5.0,fr,20406,197,859728,1,3,Active Shallow Crust,0.0,89.98997,0.0,03/19/9867 +-0.18108,43.01614,513,6,26,7,54,35,3.95,5.0,fr,20407,10,859728,1,3,Active Shallow Crust,0.0,89.98997,0.0,06/26/0513 +-0.18108,43.01614,3011,5,3,21,8,17,3.95,5.0,fr,20408,60,859728,1,3,Active Shallow Crust,0.0,89.98997,0.0,05/03/3011 +-0.18108,43.01614,3054,8,4,19,24,50,3.95,15.0,fr,20409,61,859729,1,2,Active Shallow Crust,0.0,89.98997,0.0,08/04/3054 +-0.18108,43.01614,6611,4,11,13,40,33,3.95,15.0,fr,20410,132,859729,1,2,Active Shallow Crust,0.0,89.98997,0.0,04/11/6611 +-0.18108,43.01614,7218,4,16,13,3,43,4.05,5.0,fr,20411,144,859740,1,4,Active Shallow Crust,0.0,89.99002,0.0,04/16/7218 +-0.18108,43.01614,35,10,29,15,40,33,4.05,5.0,fr,20412,0,859740,1,4,Active Shallow Crust,0.0,89.99002,0.0,10/29/0035 +-0.18108,43.01614,3003,11,13,18,22,0,4.05,5.0,fr,20413,60,859740,1,4,Active Shallow Crust,0.0,89.99002,0.0,11/13/3003 +-0.18108,43.01614,3311,10,18,6,24,47,4.05,5.0,fr,20414,66,859740,1,4,Active Shallow Crust,0.0,89.99002,0.0,10/18/3311 +-0.18108,43.01614,5994,5,11,5,13,35,4.05,15.0,fr,20415,119,859741,1,3,Active Shallow Crust,0.0,89.99002,0.0,05/11/5994 +-0.18108,43.01614,946,11,11,8,14,32,4.05,15.0,fr,20416,18,859741,1,3,Active Shallow Crust,0.0,89.99002,0.0,11/11/0946 +-0.18108,43.01614,444,6,9,17,38,56,4.05,15.0,fr,20417,8,859741,1,3,Active Shallow Crust,0.0,89.99002,0.0,06/09/0444 +-0.18108,43.01614,3601,11,26,5,20,48,4.05,5.0,fr,20418,72,859743,1,1,Active Shallow Crust,240.0054,58.00572,0.0,11/26/3601 +-0.18108,43.01614,1505,4,25,16,29,10,4.05,15.0,fr,20419,30,859744,1,2,Active Shallow Crust,240.0054,58.0057,0.0,04/25/1505 +-0.18108,43.01614,9978,2,26,3,25,31,4.05,15.0,fr,20420,199,859744,1,2,Active Shallow Crust,240.0054,58.0057,0.0,02/26/9978 +-0.18108,43.01614,7365,12,23,19,52,20,4.05,5.0,fr,20421,147,859749,1,1,Active Shallow Crust,128.8909,89.99371,0.0,12/23/7365 +-0.18108,43.01614,2885,12,2,8,47,36,4.05,15.0,fr,20422,57,859750,1,1,Active Shallow Crust,128.8909,89.99371,0.0,12/02/2885 +-0.18108,43.01614,6707,2,3,7,22,50,4.15,5.0,fr,20423,134,859752,1,5,Active Shallow Crust,0.0,89.98995,0.0,02/03/6707 +-0.18108,43.01614,6190,12,14,14,47,18,4.15,5.0,fr,20424,123,859752,1,5,Active Shallow Crust,0.0,89.98995,0.0,12/14/6190 +-0.18108,43.01614,2116,3,16,7,35,56,4.15,5.0,fr,20425,42,859752,1,5,Active Shallow Crust,0.0,89.98995,0.0,03/16/2116 +-0.18108,43.01614,1178,2,8,20,27,44,4.15,5.0,fr,20426,23,859752,1,5,Active Shallow Crust,0.0,89.98995,0.0,02/08/1178 +-0.18108,43.01614,6369,1,25,10,37,22,4.15,5.0,fr,20427,127,859752,1,5,Active Shallow Crust,0.0,89.98995,0.0,01/25/6369 +-0.18108,43.01614,2873,8,16,18,23,44,4.15,15.0,fr,20428,57,859753,1,2,Active Shallow Crust,0.0,89.98995,0.0,08/16/2873 +-0.18108,43.01614,3693,12,4,12,48,15,4.15,15.0,fr,20429,73,859753,1,2,Active Shallow Crust,0.0,89.98995,0.0,12/04/3693 +-0.18108,43.01614,3851,5,9,14,11,29,4.15,27.5,fr,20430,77,859754,1,1,Active Shallow Crust,0.0,89.98995,0.0,05/09/3851 +-0.18108,43.01614,2661,10,4,4,46,30,4.15,5.0,fr,20431,53,859758,1,1,Active Shallow Crust,0.0,89.98995,-90.0,10/04/2661 +-0.18108,43.01614,5519,1,13,6,34,1,4.15,15.0,fr,20432,110,859762,1,1,Active Shallow Crust,128.898,89.99377,0.0,01/13/5519 +-0.18108,43.01614,7127,9,2,12,50,59,4.25,5.0,fr,20433,142,859764,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/02/7127 +-0.18108,43.01614,9445,8,23,15,10,17,4.25,15.0,fr,20434,188,859765,1,2,Active Shallow Crust,0.0,89.99001,0.0,08/23/9445 +-0.18108,43.01614,1663,4,25,23,4,44,4.25,15.0,fr,20435,33,859765,1,2,Active Shallow Crust,0.0,89.99001,0.0,04/25/1663 +-0.18108,43.01614,8082,8,18,15,1,8,4.25,27.5,fr,20436,161,859766,1,1,Active Shallow Crust,0.0,89.99001,0.0,08/18/8082 +-0.18108,43.01614,7115,12,24,23,46,13,4.25,5.0,fr,20437,142,859767,1,3,Active Shallow Crust,240.0069,57.99394,0.0,12/24/7115 +-0.18108,43.01614,8719,10,22,1,41,6,4.25,5.0,fr,20438,174,859767,1,3,Active Shallow Crust,240.0069,57.99394,0.0,10/22/8719 +-0.18108,43.01614,2707,7,25,6,45,24,4.25,5.0,fr,20439,54,859767,1,3,Active Shallow Crust,240.0069,57.99394,0.0,07/25/2707 +-0.18108,43.01614,3627,11,5,3,33,9,4.35,5.0,fr,20440,72,859776,1,3,Active Shallow Crust,0.0,89.99,0.0,11/05/3627 +-0.18108,43.01614,3493,11,17,19,20,54,4.35,5.0,fr,20441,69,859776,1,3,Active Shallow Crust,0.0,89.99,0.0,11/17/3493 +-0.18108,43.01614,9121,7,21,12,12,3,4.35,5.0,fr,20442,182,859776,1,3,Active Shallow Crust,0.0,89.99,0.0,07/21/9121 +-0.18108,43.01614,7651,1,10,22,18,34,4.35,15.0,fr,20443,153,859780,1,1,Active Shallow Crust,240.0076,57.9958,0.0,01/10/7651 +-0.18108,43.01614,2582,6,23,20,32,52,4.35,27.5,fr,20444,51,859781,1,1,Active Shallow Crust,240.0076,57.9958,0.0,06/23/2582 +-0.18108,43.01614,1596,4,27,4,5,28,4.45,5.0,fr,20445,31,859788,1,2,Active Shallow Crust,0.0,89.99003,0.0,04/27/1596 +-0.18108,43.01614,4722,10,30,22,44,12,4.45,5.0,fr,20446,94,859788,1,2,Active Shallow Crust,0.0,89.99003,0.0,10/30/4722 +-0.18108,43.01614,4593,10,23,11,35,53,4.45,15.0,fr,20447,91,859789,1,2,Active Shallow Crust,0.0,89.99003,0.0,10/23/4593 +-0.18108,43.01614,9044,10,4,12,45,58,4.45,15.0,fr,20448,180,859789,1,2,Active Shallow Crust,0.0,89.99003,0.0,10/04/9044 +-0.18108,43.01614,5027,11,26,8,22,14,4.45,5.0,fr,20449,100,859791,1,1,Active Shallow Crust,240.0044,57.99453,0.0,11/26/5027 +-0.18108,43.01614,8489,12,6,15,22,13,4.45,27.5,fr,20450,169,859799,1,1,Active Shallow Crust,128.8929,89.99374,0.0,12/06/8489 +-0.18108,43.01614,7486,2,22,5,40,21,4.55,5.0,fr,20451,149,859800,1,3,Active Shallow Crust,0.0,89.99002,0.0,02/22/7486 +-0.18108,43.01614,6499,10,27,22,43,8,4.55,5.0,fr,20452,129,859800,1,3,Active Shallow Crust,0.0,89.99002,0.0,10/27/6499 +-0.18108,43.01614,3670,7,26,12,3,43,4.55,5.0,fr,20453,73,859800,1,3,Active Shallow Crust,0.0,89.99002,0.0,07/26/3670 +-0.18108,43.01614,8551,9,10,13,59,24,4.55,15.0,fr,20454,171,859801,1,1,Active Shallow Crust,0.0,89.99002,0.0,09/10/8551 +-0.18108,43.01614,8780,5,17,3,1,2,4.55,5.0,fr,20455,175,859803,1,1,Active Shallow Crust,240.0083,57.99719,0.0,05/17/8780 +-0.18108,43.01614,6370,8,5,23,40,40,4.65,5.0,fr,20456,127,859812,1,2,Active Shallow Crust,0.0,89.99,0.0,08/05/6370 +-0.18108,43.01614,7192,5,7,8,44,8,4.65,5.0,fr,20457,143,859812,1,2,Active Shallow Crust,0.0,89.99,0.0,05/07/7192 +-0.18108,43.01614,8778,7,5,4,25,41,4.65,15.0,fr,20458,175,859813,1,1,Active Shallow Crust,0.0,89.99,0.0,07/05/8778 +-0.18108,43.01614,1242,7,8,10,52,55,4.65,5.0,fr,20459,24,859818,1,1,Active Shallow Crust,0.0,89.99001,-90.0,07/08/1242 +-0.18108,43.01614,7240,9,1,15,28,26,4.65,27.5,fr,20460,144,859820,1,1,Active Shallow Crust,0.0,89.99001,-90.0,09/01/7240 +-0.18108,43.01614,3101,3,25,11,24,17,4.75,5.0,fr,20461,62,859824,1,1,Active Shallow Crust,0.0,89.98998,0.0,03/25/3101 +-0.18108,43.01614,6112,1,2,16,54,18,4.75,5.0,fr,20462,122,859830,1,1,Active Shallow Crust,0.0,89.98999,-90.0,01/02/6112 +-0.18108,43.01614,4304,2,16,7,5,49,4.85,5.0,fr,20463,86,859836,1,2,Active Shallow Crust,0.0,89.98999,0.0,02/16/4304 +-0.18108,43.01614,105,12,8,11,1,2,4.85,5.0,fr,20464,2,859836,1,2,Active Shallow Crust,0.0,89.98999,0.0,12/08/0105 +-0.18108,43.01614,3154,6,21,7,34,28,4.85,15.0,fr,20465,63,859840,1,1,Active Shallow Crust,240.0158,58.00207,0.0,06/21/3154 +-0.18108,43.01614,9551,10,31,12,11,14,4.95,15.0,fr,20466,191,859849,1,1,Active Shallow Crust,360.0,89.99002,0.0,10/31/9551 +-0.18108,43.01614,1823,10,26,22,26,35,4.95,5.0,fr,20467,36,859854,1,1,Active Shallow Crust,0.0,89.99,-90.0,10/26/1823 +-0.18108,43.01614,3836,12,15,22,19,38,5.05,27.5,fr,20468,76,859862,1,1,Active Shallow Crust,0.0,89.99,0.0,12/15/3836 +-0.18108,43.01614,9381,9,23,4,47,36,5.45,5.0,fr,20469,187,859908,1,1,Active Shallow Crust,0.0,89.98999,0.0,09/23/9381 +-0.18108,43.01614,1438,3,11,7,51,3,5.45,27.5,fr,20470,28,859910,1,1,Active Shallow Crust,0.0,89.98999,0.0,03/11/1438 +-0.18108,43.01614,1369,10,16,2,38,45,5.65,5.0,fr,20471,27,859932,1,1,Active Shallow Crust,0.0,89.99,0.0,10/16/1369 +-0.18108,43.01614,8551,2,27,10,42,5,5.85,5.0,fr,20472,171,859959,1,1,Active Shallow Crust,240.0404,57.99896,0.0,02/27/8551 +-0.18108,43.01614,4993,11,7,4,23,36,6.55,15.0,fr,20473,99,860041,1,1,Active Shallow Crust,360.0,89.99,0.0,11/07/4993 +-1.6012,45.2055,7405,1,17,15,6,51,3.55,5.0,fr,20474,148,860160,1,1,Active Shallow Crust,0.0,89.98934,0.0,01/17/7405 +-1.6012,45.2055,9508,2,24,9,53,8,3.75,5.0,fr,20475,190,860184,1,1,Active Shallow Crust,0.0,89.99012,0.0,02/24/9508 +7.82609,47.19106,6933,3,29,9,25,57,3.55,5.0,fr,20476,138,860640,1,7,Active Shallow Crust,0.0,89.99315,0.0,03/29/6933 +7.82609,47.19106,1706,7,3,15,11,16,3.55,5.0,fr,20477,34,860640,1,7,Active Shallow Crust,0.0,89.99315,0.0,07/03/1706 +7.82609,47.19106,7611,2,15,10,53,41,3.55,5.0,fr,20478,152,860640,1,7,Active Shallow Crust,0.0,89.99315,0.0,02/15/7611 +7.82609,47.19106,2587,5,29,23,49,30,3.55,5.0,fr,20479,51,860640,1,7,Active Shallow Crust,0.0,89.99315,0.0,05/29/2587 +7.82609,47.19106,665,2,4,8,23,19,3.55,5.0,fr,20480,13,860640,1,7,Active Shallow Crust,0.0,89.99315,0.0,02/04/0665 +7.82609,47.19106,482,7,3,23,32,49,3.55,5.0,fr,20481,9,860640,1,7,Active Shallow Crust,0.0,89.99315,0.0,07/03/0482 +7.82609,47.19106,5565,10,11,21,9,51,3.55,5.0,fr,20482,111,860640,1,7,Active Shallow Crust,0.0,89.99315,0.0,10/11/5565 +7.82609,47.19106,6337,8,2,6,31,58,3.55,15.0,fr,20483,126,860641,1,2,Active Shallow Crust,0.0,89.99315,0.0,08/02/6337 +7.82609,47.19106,9353,8,7,13,39,27,3.55,15.0,fr,20484,187,860641,1,2,Active Shallow Crust,0.0,89.99315,0.0,08/07/9353 +7.82609,47.19106,3591,8,26,13,23,50,3.55,27.5,fr,20485,71,860642,1,2,Active Shallow Crust,0.0,89.99315,0.0,08/26/3591 +7.82609,47.19106,6406,10,15,21,24,2,3.55,27.5,fr,20486,128,860642,1,2,Active Shallow Crust,0.0,89.99315,0.0,10/15/6406 +7.82609,47.19106,4516,9,14,17,59,49,3.55,5.0,fr,20487,90,860649,1,1,Active Shallow Crust,128.8956,89.99657,0.0,09/14/4516 +7.82609,47.19106,5210,1,21,16,47,44,3.65,5.0,fr,20488,104,860652,1,1,Active Shallow Crust,0.0,89.98779,0.0,01/21/5210 +7.82609,47.19106,565,12,7,0,20,54,3.65,15.0,fr,20489,11,860653,1,2,Active Shallow Crust,0.0,89.98779,0.0,12/07/0565 +7.82609,47.19106,8171,1,17,11,20,56,3.65,15.0,fr,20490,163,860653,1,2,Active Shallow Crust,0.0,89.98779,0.0,01/17/8171 +7.82609,47.19106,4986,10,10,22,45,20,3.65,27.5,fr,20491,99,860654,1,1,Active Shallow Crust,0.0,89.98779,0.0,10/10/4986 +7.82609,47.19106,5792,2,18,7,21,4,3.65,5.0,fr,20492,115,860655,1,1,Active Shallow Crust,240.0018,58.01207,0.0,02/18/5792 +7.82609,47.19106,6295,11,14,0,40,4,3.75,5.0,fr,20493,125,860664,1,3,Active Shallow Crust,0.0,89.98911,0.0,11/14/6295 +7.82609,47.19106,2774,6,6,11,55,22,3.75,5.0,fr,20494,55,860664,1,3,Active Shallow Crust,0.0,89.98911,0.0,06/06/2774 +7.82609,47.19106,8521,1,29,16,1,53,3.75,5.0,fr,20495,170,860664,1,3,Active Shallow Crust,0.0,89.98911,0.0,01/29/8521 +7.82609,47.19106,7460,5,22,6,43,56,3.75,27.5,fr,20496,149,860666,1,2,Active Shallow Crust,0.0,89.98911,0.0,05/22/7460 +7.82609,47.19106,4552,5,19,10,36,11,3.75,27.5,fr,20497,91,860666,1,2,Active Shallow Crust,0.0,89.98911,0.0,05/19/4552 +7.82609,47.19106,7402,4,10,12,27,25,3.85,5.0,fr,20498,148,860676,1,1,Active Shallow Crust,0.0,89.9903,0.0,04/10/7402 +7.82609,47.19106,4029,11,17,20,35,19,3.85,15.0,fr,20499,80,860677,1,1,Active Shallow Crust,0.0,89.9903,0.0,11/17/4029 +7.82609,47.19106,2713,5,29,8,51,1,3.95,5.0,fr,20500,54,860688,1,1,Active Shallow Crust,0.0,89.99136,0.0,05/29/2713 +7.82609,47.19106,9079,12,19,22,0,18,4.05,5.0,fr,20501,181,860700,1,1,Active Shallow Crust,0.0,89.98844,0.0,12/19/9079 +7.82609,47.19106,1265,1,20,6,25,4,4.05,5.0,fr,20502,25,860703,1,1,Active Shallow Crust,240.0064,58.00569,0.0,01/20/1265 +7.82609,47.19106,1041,11,17,17,6,17,4.15,5.0,fr,20503,20,860712,1,2,Active Shallow Crust,0.0,89.98969,0.0,11/17/1041 +7.82609,47.19106,5189,11,14,17,4,20,4.15,5.0,fr,20504,103,860712,1,2,Active Shallow Crust,0.0,89.98969,0.0,11/14/5189 +7.82609,47.19106,8353,6,7,9,25,50,4.15,15.0,fr,20505,167,860713,1,1,Active Shallow Crust,0.0,89.98969,0.0,06/07/8353 +7.82609,47.19106,1699,7,19,0,12,5,4.25,5.0,fr,20506,33,860724,1,2,Active Shallow Crust,0.0,89.99081,0.0,07/19/1699 +7.82609,47.19106,9201,8,24,13,40,49,4.25,5.0,fr,20507,184,860724,1,2,Active Shallow Crust,0.0,89.99081,0.0,08/24/9201 +7.82609,47.19106,141,2,7,22,26,48,4.25,5.0,fr,20508,2,860727,1,1,Active Shallow Crust,240.0072,57.99448,0.0,02/07/0141 +7.82609,47.19106,295,7,12,20,16,12,4.35,5.0,fr,20509,5,860736,1,2,Active Shallow Crust,0.0,89.98909,0.0,07/12/0295 +7.82609,47.19106,2854,6,30,0,9,27,4.35,5.0,fr,20510,57,860736,1,2,Active Shallow Crust,0.0,89.98909,0.0,06/30/2854 +7.82609,47.19106,2103,9,6,22,12,7,4.35,15.0,fr,20511,42,860737,1,1,Active Shallow Crust,0.0,89.98909,0.0,09/06/2103 +7.82609,47.19106,596,8,8,6,57,26,4.35,27.5,fr,20512,11,860747,1,1,Active Shallow Crust,128.8973,89.98304,0.0,08/08/0596 +7.82609,47.19106,5149,11,9,18,22,49,4.45,5.0,fr,20513,102,860748,1,1,Active Shallow Crust,0.0,89.99027,0.0,11/09/5149 +7.82609,47.19106,181,4,18,18,21,12,4.45,27.5,fr,20514,3,860750,1,1,Active Shallow Crust,0.0,89.99027,0.0,04/18/0181 +7.82609,47.19106,429,9,10,3,33,27,4.75,5.0,fr,20515,8,860784,1,1,Active Shallow Crust,0.0,89.98967,0.0,09/10/0429 +7.82609,47.19106,4513,1,25,6,8,41,4.75,5.0,fr,20516,90,860793,1,1,Active Shallow Crust,128.8882,89.98821,0.0,01/25/4513 +7.82609,47.19106,7158,11,26,15,9,28,4.85,15.0,fr,20517,143,860803,1,1,Active Shallow Crust,0.0,89.99068,-90.0,11/26/7158 +0.35676,41.83745,239,6,21,6,55,0,3.55,5.0,fr,20518,4,861120,1,1,Active Shallow Crust,0.0,89.99014,0.0,06/21/0239 +0.35676,41.83745,3320,8,16,10,56,13,3.75,5.0,fr,20519,66,861144,1,1,Active Shallow Crust,0.0,89.98993,0.0,08/16/3320 +0.35676,41.83745,3878,11,17,7,17,9,4.15,5.0,fr,20520,77,861195,1,1,Active Shallow Crust,240.0077,57.99719,0.0,11/17/3878 +0.35676,41.83745,7251,11,1,12,34,20,4.25,5.0,fr,20521,145,861204,1,1,Active Shallow Crust,0.0,89.98993,0.0,11/01/7251 +2.91542,50.65864,5910,4,7,8,53,44,3.55,5.0,fr,20522,118,861600,1,1,Active Shallow Crust,0.0,89.99041,0.0,04/07/5910 +2.91542,50.65864,1929,2,22,4,53,41,3.55,15.0,fr,20523,38,861601,1,1,Active Shallow Crust,0.0,89.99041,0.0,02/22/1929 +2.91542,50.65864,2478,11,26,9,35,26,4.15,15.0,fr,20524,49,861673,1,1,Active Shallow Crust,0.0,89.99039,0.0,11/26/2478 +2.91542,50.65864,1159,2,9,10,10,38,4.95,15.0,fr,20525,23,861775,1,1,Active Shallow Crust,359.9997,89.99032,-90.0,02/09/1159 +0.37808,46.72524,1926,10,12,23,4,55,3.55,5.0,fr,20526,38,862080,1,2,Active Shallow Crust,0.0,89.99007,0.0,10/12/1926 +0.37808,46.72524,6927,1,1,16,46,20,3.55,5.0,fr,20527,138,862080,1,2,Active Shallow Crust,0.0,89.99007,0.0,01/01/6927 +0.37808,46.72524,312,5,26,14,40,51,3.55,5.0,fr,20528,6,862083,1,1,Active Shallow Crust,240.0121,57.99822,0.0,05/26/0312 +0.37808,46.72524,5838,6,10,10,59,16,3.65,15.0,fr,20529,116,862093,1,4,Active Shallow Crust,0.0,89.98999,0.0,06/10/5838 +0.37808,46.72524,9438,4,10,1,9,58,3.65,15.0,fr,20530,188,862093,1,4,Active Shallow Crust,0.0,89.98999,0.0,04/10/9438 +0.37808,46.72524,117,4,10,23,13,27,3.65,15.0,fr,20531,2,862093,1,4,Active Shallow Crust,0.0,89.98999,0.0,04/10/0117 +0.37808,46.72524,2639,5,7,7,16,51,3.65,15.0,fr,20532,52,862093,1,4,Active Shallow Crust,0.0,89.98999,0.0,05/07/2639 +0.37808,46.72524,9342,5,29,11,36,45,3.65,27.5,fr,20533,186,862094,1,1,Active Shallow Crust,0.0,89.98999,0.0,05/29/9342 +0.37808,46.72524,7705,9,24,6,50,29,3.65,5.0,fr,20534,154,862101,1,1,Active Shallow Crust,128.9004,89.96349,0.0,09/24/7705 +0.37808,46.72524,5478,8,15,23,21,26,3.75,5.0,fr,20535,109,862104,1,1,Active Shallow Crust,0.0,89.99005,0.0,08/15/5478 +0.37808,46.72524,5380,9,10,1,1,59,3.85,5.0,fr,20536,107,862116,1,2,Active Shallow Crust,0.0,89.98991,0.0,09/10/5380 +0.37808,46.72524,7814,3,16,7,20,19,3.85,5.0,fr,20537,156,862116,1,2,Active Shallow Crust,0.0,89.98991,0.0,03/16/7814 +0.37808,46.72524,8171,3,16,14,46,35,3.85,15.0,fr,20538,163,862117,1,1,Active Shallow Crust,0.0,89.98991,0.0,03/16/8171 +0.37808,46.72524,3544,1,20,11,56,38,3.85,5.0,fr,20539,70,862125,1,1,Active Shallow Crust,128.8956,89.99358,0.0,01/20/3544 +0.37808,46.72524,3742,10,1,2,20,59,3.95,5.0,fr,20540,74,862131,1,1,Active Shallow Crust,240.0198,58.00499,0.0,10/01/3742 +0.37808,46.72524,2322,6,27,3,19,31,3.95,15.0,fr,20541,46,862132,1,1,Active Shallow Crust,240.0198,58.00499,0.0,06/27/2322 +0.37808,46.72524,2318,4,11,11,19,56,4.05,15.0,fr,20542,46,862141,1,1,Active Shallow Crust,0.0,89.99004,0.0,04/11/2318 +0.37808,46.72524,2773,11,29,22,25,42,4.15,5.0,fr,20543,55,862152,1,2,Active Shallow Crust,0.0,89.99004,0.0,11/29/2773 +0.37808,46.72524,2054,8,19,6,44,4,4.15,5.0,fr,20544,41,862152,1,2,Active Shallow Crust,0.0,89.99004,0.0,08/19/2054 +0.37808,46.72524,9610,2,18,15,41,47,4.15,15.0,fr,20545,192,862162,1,1,Active Shallow Crust,128.8975,89.99372,0.0,02/18/9610 +0.37808,46.72524,8372,11,3,21,24,40,4.35,5.0,fr,20546,167,862176,1,1,Active Shallow Crust,0.0,89.99002,0.0,11/03/8372 +0.37808,46.72524,4716,2,15,16,8,34,4.35,15.0,fr,20547,94,862177,1,2,Active Shallow Crust,0.0,89.99002,0.0,02/15/4716 +0.37808,46.72524,6510,7,28,18,40,50,4.35,15.0,fr,20548,130,862177,1,2,Active Shallow Crust,0.0,89.99002,0.0,07/28/6510 +0.37808,46.72524,6814,5,6,14,37,48,4.55,27.5,fr,20549,136,862211,1,1,Active Shallow Crust,128.8938,89.98578,0.0,05/06/6814 +0.37808,46.72524,3139,1,10,19,14,38,4.65,27.5,fr,20550,62,862223,1,1,Active Shallow Crust,128.8911,89.98701,0.0,01/10/3139 +0.37808,46.72524,7652,7,3,17,46,54,4.95,27.5,fr,20551,153,862250,1,1,Active Shallow Crust,0.0,89.99,0.0,07/03/7652 +0.37808,46.72524,9313,7,10,4,12,21,5.55,5.0,fr,20552,186,862320,1,1,Active Shallow Crust,360.0,89.99001,0.0,07/10/9313 +-3.83482,45.93641,7731,10,29,21,32,8,3.65,5.0,fr,20553,154,862581,1,1,Active Shallow Crust,128.9012,89.96352,0.0,10/29/7731 +7.3655,48.03701,3660,6,16,21,51,41,3.55,5.0,fr,20554,73,863040,1,3,Active Shallow Crust,0.0,89.99326,0.0,06/16/3660 +7.3655,48.03701,8318,4,4,13,9,51,3.55,5.0,fr,20555,166,863040,1,3,Active Shallow Crust,0.0,89.99326,0.0,04/04/8318 +7.3655,48.03701,2428,12,1,13,1,11,3.55,5.0,fr,20556,48,863040,1,3,Active Shallow Crust,0.0,89.99326,0.0,12/01/2428 +7.3655,48.03701,7424,8,22,13,9,15,3.55,15.0,fr,20557,148,863041,1,2,Active Shallow Crust,0.0,89.99326,0.0,08/22/7424 +7.3655,48.03701,647,12,18,16,25,8,3.55,15.0,fr,20558,12,863041,1,2,Active Shallow Crust,0.0,89.99326,0.0,12/18/0647 +7.3655,48.03701,9463,11,4,13,38,17,3.55,27.5,fr,20559,189,863045,1,1,Active Shallow Crust,240.0128,57.9981,0.0,11/04/9463 +7.3655,48.03701,5001,2,5,3,39,53,3.55,15.0,fr,20560,100,863050,1,1,Active Shallow Crust,128.8961,89.99326,0.0,02/05/5001 +7.3655,48.03701,339,2,21,9,11,49,3.65,5.0,fr,20561,6,863052,1,2,Active Shallow Crust,0.0,89.98798,0.0,02/21/0339 +7.3655,48.03701,8365,2,4,3,28,29,3.65,5.0,fr,20562,167,863052,1,2,Active Shallow Crust,0.0,89.98798,0.0,02/04/8365 +7.3655,48.03701,5326,3,19,2,47,2,3.65,5.0,fr,20563,106,863055,1,1,Active Shallow Crust,240.0018,58.01219,0.0,03/19/5326 +7.3655,48.03701,1419,6,20,6,12,55,3.65,15.0,fr,20564,28,863056,1,1,Active Shallow Crust,240.0018,58.01219,0.0,06/20/1419 +7.3655,48.03701,3706,1,31,19,23,32,3.65,5.0,fr,20565,74,863058,1,1,Active Shallow Crust,0.0,89.98784,-90.0,01/31/3706 +7.3655,48.03701,4030,11,19,6,56,27,3.65,5.0,fr,20566,80,863061,1,1,Active Shallow Crust,128.9001,89.96355,0.0,11/19/4030 +7.3655,48.03701,9725,2,3,2,40,15,3.75,5.0,fr,20567,194,863064,1,1,Active Shallow Crust,0.0,89.98929,0.0,02/03/9725 +7.3655,48.03701,264,10,20,12,30,27,3.75,15.0,fr,20568,5,863065,1,1,Active Shallow Crust,0.0,89.98929,0.0,10/20/0264 +7.3655,48.03701,6606,2,13,3,19,24,3.85,5.0,fr,20569,132,863076,1,1,Active Shallow Crust,0.0,89.99046,0.0,02/13/6606 +7.3655,48.03701,4370,12,25,18,10,38,3.85,5.0,fr,20570,87,863079,1,1,Active Shallow Crust,240.0116,57.99837,0.0,12/25/4370 +7.3655,48.03701,2286,1,25,3,28,40,4.05,15.0,fr,20571,45,863101,1,2,Active Shallow Crust,0.0,89.98862,0.0,01/25/2286 +7.3655,48.03701,3142,3,24,14,40,29,4.05,15.0,fr,20572,62,863101,1,2,Active Shallow Crust,0.0,89.98862,0.0,03/24/3142 +7.3655,48.03701,7547,10,20,19,15,34,4.15,5.0,fr,20573,150,863112,1,2,Active Shallow Crust,0.0,89.98986,0.0,10/20/7547 +7.3655,48.03701,8456,7,18,11,35,25,4.15,5.0,fr,20574,169,863112,1,2,Active Shallow Crust,0.0,89.98986,0.0,07/18/8456 +7.3655,48.03701,9951,1,28,13,21,41,4.25,5.0,fr,20575,199,863130,1,1,Active Shallow Crust,0.0,89.99086,-90.0,01/28/9951 +7.3655,48.03701,5774,7,25,3,45,43,4.35,5.0,fr,20576,115,863136,1,1,Active Shallow Crust,0.0,89.98927,0.0,07/25/5774 +7.3655,48.03701,7991,5,6,2,7,4,4.35,15.0,fr,20577,159,863137,1,1,Active Shallow Crust,0.0,89.98927,0.0,05/06/7991 +7.3655,48.03701,4997,9,24,5,19,51,4.45,5.0,fr,20578,99,863151,1,1,Active Shallow Crust,240.0058,57.99474,0.0,09/24/4997 +7.3655,48.03701,8389,2,20,14,38,56,4.45,5.0,fr,20579,167,863157,1,1,Active Shallow Crust,128.8924,89.99282,0.0,02/20/8389 +7.3655,48.03701,8657,1,24,4,20,34,4.55,5.0,fr,20580,173,863160,1,1,Active Shallow Crust,0.0,89.98933,0.0,01/24/8657 +7.3655,48.03701,9451,9,6,5,55,28,4.75,5.0,fr,20581,189,863184,1,1,Active Shallow Crust,0.0,89.98984,0.0,09/06/9451 +7.3655,48.03701,6404,8,6,11,43,12,4.85,27.5,fr,20582,128,863198,1,1,Active Shallow Crust,0.0,89.98943,0.0,08/06/6404 +7.3655,48.03701,7475,10,31,6,38,45,5.75,15.0,fr,20583,149,863305,1,1,Active Shallow Crust,0.0,89.98981,0.0,10/31/7475 +2.09431,44.84729,120,6,22,19,41,25,3.65,15.0,fr,20584,2,863539,1,1,Active Shallow Crust,0.0,89.99033,-90.0,06/22/0120 +2.09431,44.84729,9377,5,29,10,29,8,3.95,5.0,fr,20585,187,863574,1,1,Active Shallow Crust,0.0,89.99088,-90.0,05/29/9377 +2.09431,44.84729,1311,8,25,16,10,33,5.35,5.0,fr,20586,26,863745,1,1,Active Shallow Crust,128.8841,89.98805,0.0,08/25/1311 +3.5869,49.42839,2793,8,17,11,23,19,3.65,5.0,fr,20587,55,864012,1,1,Active Shallow Crust,0.0,89.99123,0.0,08/17/2793 +3.5869,49.42839,9689,5,17,7,55,55,4.15,27.5,fr,20588,193,864074,1,1,Active Shallow Crust,0.0,89.99014,0.0,05/17/9689 +6.97263,48.37302,4167,12,5,12,23,23,3.55,15.0,fr,20589,83,864481,1,1,Active Shallow Crust,0.0,89.9933,0.0,12/05/4167 +6.97263,48.37302,898,7,17,17,38,45,3.65,5.0,fr,20590,17,864492,1,2,Active Shallow Crust,0.0,89.98806,0.0,07/17/0898 +6.97263,48.37302,8217,1,26,18,42,49,3.65,5.0,fr,20591,164,864492,1,2,Active Shallow Crust,0.0,89.98806,0.0,01/26/8217 +6.97263,48.37302,4140,4,9,17,19,59,3.75,15.0,fr,20592,82,864505,1,1,Active Shallow Crust,0.0,89.98936,0.0,04/09/4140 +6.97263,48.37302,623,2,20,9,13,49,3.75,15.0,fr,20593,12,864511,1,1,Active Shallow Crust,0.0,89.98923,-90.0,02/20/0623 +6.97263,48.37302,6944,10,2,5,22,32,3.85,15.0,fr,20594,138,864517,1,1,Active Shallow Crust,0.0,89.99052,0.0,10/02/6944 +6.97263,48.37302,3849,3,19,4,28,37,3.95,5.0,fr,20595,76,864531,1,1,Active Shallow Crust,240.0202,58.0046,0.0,03/19/3849 +6.97263,48.37302,1010,12,9,12,14,46,4.05,27.5,fr,20596,20,864542,1,1,Active Shallow Crust,0.0,89.9887,0.0,12/09/1010 +6.97263,48.37302,4610,1,31,22,19,17,4.05,5.0,fr,20597,92,864543,1,1,Active Shallow Crust,240.0064,58.00587,0.0,01/31/4610 +6.97263,48.37302,9193,11,27,6,25,9,4.05,5.0,fr,20598,183,864546,1,1,Active Shallow Crust,0.0,89.98857,-90.0,11/27/9193 +6.97263,48.37302,65,11,8,10,11,31,4.65,5.0,fr,20599,1,864612,1,1,Active Shallow Crust,0.0,89.99056,0.0,11/08/0065 +3.89669,46.68524,9073,2,19,12,51,32,3.55,5.0,fr,20600,181,864960,1,2,Active Shallow Crust,0.0,89.98962,0.0,02/19/9073 +3.89669,46.68524,284,1,13,4,54,35,3.55,5.0,fr,20601,5,864960,1,2,Active Shallow Crust,0.0,89.98962,0.0,01/13/0284 +3.89669,46.68524,8654,8,24,18,22,41,3.55,15.0,fr,20602,173,864961,1,1,Active Shallow Crust,0.0,89.98962,0.0,08/24/8654 +3.89669,46.68524,53,4,4,18,18,16,3.75,5.0,fr,20603,1,864984,1,1,Active Shallow Crust,0.0,89.98901,0.0,04/04/0053 +3.89669,46.68524,8829,3,6,3,32,59,3.95,5.0,fr,20604,176,865008,1,1,Active Shallow Crust,0.0,89.98909,0.0,03/06/8829 +3.89669,46.68524,4936,1,4,11,24,13,3.95,15.0,fr,20605,98,865009,1,1,Active Shallow Crust,0.0,89.98909,0.0,01/04/4936 +3.89669,46.68524,7232,2,11,17,16,39,4.05,5.0,fr,20606,144,865020,1,1,Active Shallow Crust,0.0,89.99027,0.0,02/11/7232 +3.89669,46.68524,1977,3,21,2,31,20,4.05,5.0,fr,20607,39,865029,1,1,Active Shallow Crust,128.8908,89.99319,0.0,03/21/1977 +3.89669,46.68524,6643,3,10,10,21,2,4.25,15.0,fr,20608,132,865045,1,1,Active Shallow Crust,0.0,89.99073,0.0,03/10/6643 +3.89669,46.68524,5929,6,16,8,33,22,5.35,5.0,fr,20609,118,865176,1,1,Active Shallow Crust,0.0,89.98998,0.0,06/16/5929 +3.89669,46.68524,6023,10,25,23,37,27,5.45,5.0,fr,20610,120,865188,1,1,Active Shallow Crust,0.0,89.98991,0.0,10/25/6023 +0.35894,46.32095,1064,8,30,17,11,41,3.55,5.0,fr,20611,21,865440,1,1,Active Shallow Crust,0.0,89.98999,0.0,08/30/1064 +0.35894,46.32095,9647,6,18,11,0,56,3.55,15.0,fr,20612,192,865441,1,1,Active Shallow Crust,0.0,89.98999,0.0,06/18/9647 +0.35894,46.32095,9148,2,25,8,14,8,3.55,5.0,fr,20613,182,865446,1,1,Active Shallow Crust,0.0,89.98988,-90.0,02/25/9148 +0.35894,46.32095,7767,2,19,20,17,52,3.65,5.0,fr,20614,155,865452,1,3,Active Shallow Crust,0.0,89.98991,0.0,02/19/7767 +0.35894,46.32095,4263,7,21,23,44,36,3.65,5.0,fr,20615,85,865452,1,3,Active Shallow Crust,0.0,89.98991,0.0,07/21/4263 +0.35894,46.32095,7830,1,23,5,57,42,3.65,5.0,fr,20616,156,865452,1,3,Active Shallow Crust,0.0,89.98991,0.0,01/23/7830 +0.35894,46.32095,622,1,29,1,36,46,3.65,5.0,fr,20617,12,865455,1,1,Active Shallow Crust,240.001,58.01295,0.0,01/29/0622 +0.35894,46.32095,4920,7,30,0,0,20,3.75,5.0,fr,20618,98,865473,1,1,Active Shallow Crust,128.8966,89.96736,0.0,07/30/4920 +0.35894,46.32095,2863,9,30,3,1,45,3.75,15.0,fr,20619,57,865474,1,1,Active Shallow Crust,128.8966,89.96736,0.0,09/30/2863 +0.35894,46.32095,1957,5,12,19,35,4,4.05,5.0,fr,20620,39,865500,1,1,Active Shallow Crust,0.0,89.98997,0.0,05/12/1957 +0.35894,46.32095,2235,11,14,22,15,54,4.35,15.0,fr,20621,44,865540,1,1,Active Shallow Crust,240.0084,57.99591,0.0,11/14/2235 +0.35894,46.32095,6344,1,28,17,41,56,4.95,5.0,fr,20622,126,865608,1,1,Active Shallow Crust,0.0,89.99001,0.0,01/28/6344 +0.35894,46.32095,2793,5,18,3,54,43,5.25,5.0,fr,20623,55,865644,1,1,Active Shallow Crust,0.0,89.98997,0.0,05/18/2793 +0.35894,46.32095,3354,11,30,10,24,10,5.35,27.5,fr,20624,67,865658,1,1,Active Shallow Crust,360.0,89.99002,0.0,11/30/3354 +2.78258,50.78397,4018,1,20,0,42,37,3.65,5.0,fr,20625,80,865935,1,1,Active Shallow Crust,240.0016,58.01275,0.0,01/20/4018 +2.78258,50.78397,7927,10,1,6,19,33,4.05,5.0,fr,20626,158,865980,1,1,Active Shallow Crust,0.0,89.98924,0.0,10/01/7927 +2.78258,50.78397,5695,12,13,10,45,37,4.15,5.0,fr,20627,113,866001,1,1,Active Shallow Crust,128.8968,89.99361,0.0,12/13/5695 +2.78258,50.78397,1097,9,29,15,48,40,4.45,5.0,fr,20628,21,866028,1,1,Active Shallow Crust,0.0,89.98982,0.0,09/29/1097 +7.27526,50.90793,7051,4,27,18,17,52,3.55,5.0,fr,20629,141,866403,1,2,Active Shallow Crust,240.0133,57.99815,0.0,04/27/7051 +7.27526,50.90793,2727,9,3,23,32,9,3.55,5.0,fr,20630,54,866403,1,2,Active Shallow Crust,240.0133,57.99815,0.0,09/03/2727 +7.27526,50.90793,2701,2,14,12,25,10,3.65,5.0,fr,20631,54,866412,1,1,Active Shallow Crust,0.0,89.98866,0.0,02/14/2701 +7.27526,50.90793,7160,7,22,0,57,8,3.65,15.0,fr,20632,143,866413,1,1,Active Shallow Crust,0.0,89.98866,0.0,07/22/7160 +7.27526,50.90793,5917,12,18,11,59,41,3.85,5.0,fr,20633,118,866436,1,1,Active Shallow Crust,0.0,89.991,0.0,12/18/5917 +7.27526,50.90793,9795,2,24,0,14,1,3.95,5.0,fr,20634,195,866448,1,2,Active Shallow Crust,0.0,89.99197,0.0,02/24/9795 +7.27526,50.90793,1454,12,23,13,38,20,3.95,5.0,fr,20635,29,866448,1,2,Active Shallow Crust,0.0,89.99197,0.0,12/23/1454 +7.27526,50.90793,6871,4,19,12,41,57,3.95,5.0,fr,20636,137,866454,1,1,Active Shallow Crust,0.0,89.99188,-90.0,04/19/6871 +7.27526,50.90793,4163,6,1,15,26,38,4.45,27.5,fr,20637,83,866510,1,1,Active Shallow Crust,0.0,89.99097,0.0,06/01/4163 +0.83797,47.55724,8950,2,15,4,0,57,3.55,5.0,fr,20638,178,867366,1,2,Active Shallow Crust,0.0,89.98968,-90.0,02/15/8950 +0.83797,47.55724,3502,2,16,3,40,10,3.55,5.0,fr,20639,70,867366,1,2,Active Shallow Crust,0.0,89.98968,-90.0,02/16/3502 +0.83797,47.55724,3471,2,28,3,22,6,3.65,15.0,fr,20640,69,867373,1,1,Active Shallow Crust,0.0,89.99014,0.0,02/28/3471 +0.83797,47.55724,5603,3,28,7,57,9,3.65,5.0,fr,20641,112,867375,1,1,Active Shallow Crust,240.0013,58.01291,0.0,03/28/5603 +0.83797,47.55724,7624,5,10,14,25,32,3.95,27.5,fr,20642,152,867410,1,1,Active Shallow Crust,0.0,89.9898,0.0,05/10/7624 +0.83797,47.55724,9357,9,20,15,35,33,4.45,5.0,fr,20643,187,867468,1,1,Active Shallow Crust,0.0,89.99004,0.0,09/20/9357 +0.83797,47.55724,2695,6,29,6,51,53,4.55,5.0,fr,20644,53,867480,1,1,Active Shallow Crust,0.0,89.99004,0.0,06/29/2695 +0.83797,47.55724,1569,12,4,7,1,44,4.55,15.0,fr,20645,31,867481,1,1,Active Shallow Crust,0.0,89.99004,0.0,12/04/1569 +4.97175,47.47995,8392,9,11,17,39,13,3.55,5.0,fr,20646,167,867840,1,1,Active Shallow Crust,0.0,89.99319,0.0,09/11/8392 +4.97175,47.47995,7904,10,16,15,44,15,3.55,15.0,fr,20647,158,867841,1,2,Active Shallow Crust,0.0,89.99319,0.0,10/16/7904 +4.97175,47.47995,3853,5,5,14,21,14,3.55,15.0,fr,20648,77,867841,1,2,Active Shallow Crust,0.0,89.99319,0.0,05/05/3853 +4.97175,47.47995,254,11,19,22,49,6,3.55,5.0,fr,20649,5,867843,1,1,Active Shallow Crust,240.0124,57.99826,0.0,11/19/0254 +4.97175,47.47995,8305,6,11,19,21,26,3.65,27.5,fr,20650,166,867854,1,1,Active Shallow Crust,0.0,89.98785,0.0,06/11/8305 +4.97175,47.47995,6284,10,18,23,37,10,4.35,5.0,fr,20651,125,867945,1,1,Active Shallow Crust,128.8984,89.98257,0.0,10/18/6284 +4.97175,47.47995,6985,12,15,23,46,59,4.45,5.0,fr,20652,139,867948,1,1,Active Shallow Crust,0.0,89.99033,0.0,12/15/6985 +4.97175,47.47995,58,8,2,15,23,33,4.65,27.5,fr,20653,1,867974,1,1,Active Shallow Crust,0.0,89.99039,0.0,08/02/0058 +4.97175,47.47995,815,3,24,15,26,38,4.75,5.0,fr,20654,16,867987,1,1,Active Shallow Crust,240.0077,58.00462,0.0,03/24/0815 +6.01876,43.69873,2583,2,13,1,56,22,3.55,5.0,fr,20655,51,868320,1,2,Active Shallow Crust,0.0,89.99271,0.0,02/13/2583 +6.01876,43.69873,5952,3,23,5,7,54,3.55,5.0,fr,20656,119,868320,1,2,Active Shallow Crust,0.0,89.99271,0.0,03/23/5952 +6.01876,43.69873,3742,9,12,10,12,3,3.55,5.0,fr,20657,74,868326,1,1,Active Shallow Crust,0.0,89.99262,-90.0,09/12/3742 +6.01876,43.69873,3504,6,14,4,36,51,3.55,15.0,fr,20658,70,868327,1,1,Active Shallow Crust,0.0,89.99262,-90.0,06/14/3504 +6.01876,43.69873,1428,10,30,14,12,20,3.65,5.0,fr,20659,28,868335,1,1,Active Shallow Crust,239.9998,58.01391,0.0,10/30/1428 +6.01876,43.69873,4886,12,1,13,8,51,3.75,5.0,fr,20660,97,868344,1,2,Active Shallow Crust,0.0,89.98842,0.0,12/01/4886 +6.01876,43.69873,8788,4,12,15,35,34,3.75,5.0,fr,20661,175,868344,1,2,Active Shallow Crust,0.0,89.98842,0.0,04/12/8788 +6.01876,43.69873,7052,10,13,15,28,36,3.75,5.0,fr,20662,141,868353,1,1,Active Shallow Crust,128.8976,89.9668,0.0,10/13/7052 +6.01876,43.69873,4604,3,25,8,21,23,3.85,5.0,fr,20663,92,868356,1,2,Active Shallow Crust,0.0,89.98968,0.0,03/25/4604 +6.01876,43.69873,2544,2,3,18,50,53,3.85,5.0,fr,20664,50,868356,1,2,Active Shallow Crust,0.0,89.98968,0.0,02/03/2544 +6.01876,43.69873,3339,4,3,4,9,43,3.95,15.0,fr,20665,66,868369,1,1,Active Shallow Crust,0.0,89.9908,0.0,04/03/3339 +6.01876,43.69873,2258,9,1,20,40,54,3.95,27.5,fr,20666,45,868370,1,1,Active Shallow Crust,0.0,89.9908,0.0,09/01/2258 +6.01876,43.69873,992,4,11,7,40,15,4.05,5.0,fr,20667,19,868389,1,1,Active Shallow Crust,128.8905,89.99385,0.0,04/11/0992 +6.01876,43.69873,1410,12,4,13,46,10,4.35,27.5,fr,20668,28,868418,1,1,Active Shallow Crust,0.0,89.99129,0.0,12/04/1410 +6.01876,43.69873,3132,5,26,8,37,51,4.65,5.0,fr,20669,62,868452,1,1,Active Shallow Crust,0.0,89.98972,0.0,05/26/3132 +6.01876,43.69873,6954,8,30,11,58,31,4.65,15.0,fr,20670,139,868462,1,1,Active Shallow Crust,128.892,89.98707,0.0,08/30/6954 +6.01876,43.69873,876,2,28,14,38,53,5.15,5.0,fr,20671,17,868512,1,1,Active Shallow Crust,0.0,89.9896,0.0,02/28/0876 +6.01876,43.69873,162,12,11,20,12,0,5.25,15.0,fr,20672,3,868525,1,1,Active Shallow Crust,0.0,89.9897,0.0,12/11/0162 +7.10572,46.72146,4078,11,2,13,55,19,3.55,5.0,fr,20673,81,868800,1,6,Active Shallow Crust,0.0,89.99309,0.0,11/02/4078 +7.10572,46.72146,7454,3,28,1,35,38,3.55,5.0,fr,20674,149,868800,1,6,Active Shallow Crust,0.0,89.99309,0.0,03/28/7454 +7.10572,46.72146,5755,6,30,21,32,59,3.55,5.0,fr,20675,115,868800,1,6,Active Shallow Crust,0.0,89.99309,0.0,06/30/5755 +7.10572,46.72146,4077,12,19,3,40,28,3.55,5.0,fr,20676,81,868800,1,6,Active Shallow Crust,0.0,89.99309,0.0,12/19/4077 +7.10572,46.72146,3826,7,12,7,34,8,3.55,5.0,fr,20677,76,868800,1,6,Active Shallow Crust,0.0,89.99309,0.0,07/12/3826 +7.10572,46.72146,3842,4,27,21,20,34,3.55,5.0,fr,20678,76,868800,1,6,Active Shallow Crust,0.0,89.99309,0.0,04/27/3842 +7.10572,46.72146,1696,1,13,1,2,37,3.55,27.5,fr,20679,33,868802,1,1,Active Shallow Crust,0.0,89.99309,0.0,01/13/1696 +7.10572,46.72146,1980,7,17,18,3,5,3.55,5.0,fr,20680,39,868803,1,1,Active Shallow Crust,240.0123,57.99823,0.0,07/17/1980 +7.10572,46.72146,7263,12,19,17,40,12,3.55,5.0,fr,20681,145,868806,1,2,Active Shallow Crust,0.0,89.993,-90.0,12/19/7263 +7.10572,46.72146,6050,9,30,5,9,10,3.55,5.0,fr,20682,120,868806,1,2,Active Shallow Crust,0.0,89.993,-90.0,09/30/6050 +7.10572,46.72146,2961,1,4,19,49,26,3.65,5.0,fr,20683,59,868812,1,9,Active Shallow Crust,0.0,89.98768,0.0,01/04/2961 +7.10572,46.72146,3135,1,31,15,17,48,3.65,5.0,fr,20684,62,868812,1,9,Active Shallow Crust,0.0,89.98768,0.0,01/31/3135 +7.10572,46.72146,3730,1,6,0,2,5,3.65,5.0,fr,20685,74,868812,1,9,Active Shallow Crust,0.0,89.98768,0.0,01/06/3730 +7.10572,46.72146,6666,10,3,8,51,42,3.65,5.0,fr,20686,133,868812,1,9,Active Shallow Crust,0.0,89.98768,0.0,10/03/6666 +7.10572,46.72146,8534,7,11,21,1,26,3.65,5.0,fr,20687,170,868812,1,9,Active Shallow Crust,0.0,89.98768,0.0,07/11/8534 +7.10572,46.72146,4580,11,22,1,24,55,3.65,5.0,fr,20688,91,868812,1,9,Active Shallow Crust,0.0,89.98768,0.0,11/22/4580 +7.10572,46.72146,1493,9,12,14,4,10,3.65,5.0,fr,20689,29,868812,1,9,Active Shallow Crust,0.0,89.98768,0.0,09/12/1493 +7.10572,46.72146,2346,3,12,18,50,49,3.65,5.0,fr,20690,46,868812,1,9,Active Shallow Crust,0.0,89.98768,0.0,03/12/2346 +7.10572,46.72146,5625,8,18,23,35,14,3.65,5.0,fr,20691,112,868812,1,9,Active Shallow Crust,0.0,89.98768,0.0,08/18/5625 +7.10572,46.72146,1928,9,30,8,59,25,3.65,15.0,fr,20692,38,868813,1,2,Active Shallow Crust,0.0,89.98768,0.0,09/30/1928 +7.10572,46.72146,5452,3,14,8,49,23,3.65,15.0,fr,20693,109,868813,1,2,Active Shallow Crust,0.0,89.98768,0.0,03/14/5452 +7.10572,46.72146,6502,12,11,4,57,25,3.65,15.0,fr,20694,130,868816,1,3,Active Shallow Crust,240.0017,58.0128,0.0,12/11/6502 +7.10572,46.72146,8709,12,24,3,16,43,3.65,15.0,fr,20695,174,868816,1,3,Active Shallow Crust,240.0017,58.0128,0.0,12/24/8709 +7.10572,46.72146,5092,3,21,4,59,2,3.65,15.0,fr,20696,101,868816,1,3,Active Shallow Crust,240.0017,58.0128,0.0,03/21/5092 +7.10572,46.72146,5181,1,17,11,20,44,3.75,5.0,fr,20697,103,868824,1,4,Active Shallow Crust,0.0,89.98902,0.0,01/17/5181 +7.10572,46.72146,14,2,22,0,11,46,3.75,5.0,fr,20698,0,868824,1,4,Active Shallow Crust,0.0,89.98902,0.0,02/22/0014 +7.10572,46.72146,6438,7,16,18,53,27,3.75,5.0,fr,20699,128,868824,1,4,Active Shallow Crust,0.0,89.98902,0.0,07/16/6438 +7.10572,46.72146,6847,3,3,8,30,53,3.75,5.0,fr,20700,136,868824,1,4,Active Shallow Crust,0.0,89.98902,0.0,03/03/6847 +7.10572,46.72146,4037,7,4,11,58,53,3.75,5.0,fr,20701,80,868827,1,1,Active Shallow Crust,240.0083,58.01779,0.0,07/04/4037 +7.10572,46.72146,6412,5,26,23,10,20,3.75,27.5,fr,20702,128,868832,1,1,Active Shallow Crust,0.0,89.98889,-90.0,05/26/6412 +7.10572,46.72146,8528,10,8,12,59,25,3.75,5.0,fr,20703,170,868833,1,1,Active Shallow Crust,128.8956,89.96749,0.0,10/08/8528 +7.10572,46.72146,6895,8,24,19,17,31,3.85,5.0,fr,20704,137,868836,1,3,Active Shallow Crust,0.0,89.99021,0.0,08/24/6895 +7.10572,46.72146,9935,5,11,16,9,26,3.85,5.0,fr,20705,198,868836,1,3,Active Shallow Crust,0.0,89.99021,0.0,05/11/9935 +7.10572,46.72146,6784,3,13,2,33,19,3.85,5.0,fr,20706,135,868836,1,3,Active Shallow Crust,0.0,89.99021,0.0,03/13/6784 +7.10572,46.72146,7352,9,24,12,37,29,3.85,15.0,fr,20707,147,868837,1,2,Active Shallow Crust,0.0,89.99021,0.0,09/24/7352 +7.10572,46.72146,6099,7,12,13,41,49,3.85,15.0,fr,20708,121,868837,1,2,Active Shallow Crust,0.0,89.99021,0.0,07/12/6099 +7.10572,46.72146,2748,5,5,3,9,48,3.85,5.0,fr,20709,54,868839,1,4,Active Shallow Crust,240.0106,57.99863,0.0,05/05/2748 +7.10572,46.72146,7618,7,16,3,5,24,3.85,5.0,fr,20710,152,868839,1,4,Active Shallow Crust,240.0106,57.99863,0.0,07/16/7618 +7.10572,46.72146,6375,11,29,0,16,41,3.85,5.0,fr,20711,127,868839,1,4,Active Shallow Crust,240.0106,57.99863,0.0,11/29/6375 +7.10572,46.72146,8976,10,30,5,6,10,3.85,5.0,fr,20712,179,868839,1,4,Active Shallow Crust,240.0106,57.99863,0.0,10/30/8976 +7.10572,46.72146,6660,9,1,10,12,22,3.85,15.0,fr,20713,133,868840,1,1,Active Shallow Crust,240.0106,57.99863,0.0,09/01/6660 +7.10572,46.72146,4213,5,9,23,43,27,3.85,5.0,fr,20714,84,868845,1,3,Active Shallow Crust,128.8959,89.99511,0.0,05/09/4213 +7.10572,46.72146,9200,7,14,1,26,40,3.85,5.0,fr,20715,183,868845,1,3,Active Shallow Crust,128.8959,89.99511,0.0,07/14/9200 +7.10572,46.72146,9318,11,27,22,2,6,3.85,5.0,fr,20716,186,868845,1,3,Active Shallow Crust,128.8959,89.99511,0.0,11/27/9318 +7.10572,46.72146,8289,9,25,18,45,40,3.95,5.0,fr,20717,165,868848,1,2,Active Shallow Crust,0.0,89.99128,0.0,09/25/8289 +7.10572,46.72146,9719,1,8,21,4,3,3.95,5.0,fr,20718,194,868848,1,2,Active Shallow Crust,0.0,89.99128,0.0,01/08/9719 +7.10572,46.72146,3027,4,27,17,7,52,3.95,15.0,fr,20719,60,868849,1,3,Active Shallow Crust,0.0,89.99128,0.0,04/27/3027 +7.10572,46.72146,4996,1,3,23,53,56,3.95,15.0,fr,20720,99,868849,1,3,Active Shallow Crust,0.0,89.99128,0.0,01/03/4996 +7.10572,46.72146,4119,8,22,19,55,42,3.95,15.0,fr,20721,82,868849,1,3,Active Shallow Crust,0.0,89.99128,0.0,08/22/4119 +7.10572,46.72146,8677,3,7,21,27,49,4.05,5.0,fr,20722,173,868860,1,5,Active Shallow Crust,0.0,89.98833,0.0,03/07/8677 +7.10572,46.72146,6404,2,4,15,48,45,4.05,5.0,fr,20723,128,868860,1,5,Active Shallow Crust,0.0,89.98833,0.0,02/04/6404 +7.10572,46.72146,7999,4,15,2,10,43,4.05,5.0,fr,20724,159,868860,1,5,Active Shallow Crust,0.0,89.98833,0.0,04/15/7999 +7.10572,46.72146,3371,11,12,0,55,1,4.05,5.0,fr,20725,67,868860,1,5,Active Shallow Crust,0.0,89.98833,0.0,11/12/3371 +7.10572,46.72146,7421,3,26,1,2,13,4.05,5.0,fr,20726,148,868860,1,5,Active Shallow Crust,0.0,89.98833,0.0,03/26/7421 +7.10572,46.72146,9207,11,23,12,23,2,4.05,15.0,fr,20727,184,868864,1,2,Active Shallow Crust,240.0064,58.00579,0.0,11/23/9207 +7.10572,46.72146,1965,5,9,13,8,26,4.05,15.0,fr,20728,39,868864,1,2,Active Shallow Crust,240.0064,58.00579,0.0,05/09/1965 +7.10572,46.72146,1635,8,22,7,14,1,4.05,5.0,fr,20729,32,868869,1,1,Active Shallow Crust,128.89,89.99417,0.0,08/22/1635 +7.10572,46.72146,7391,10,18,13,28,58,4.15,5.0,fr,20730,147,868872,1,2,Active Shallow Crust,0.0,89.98961,0.0,10/18/7391 +7.10572,46.72146,5664,8,22,5,50,39,4.15,5.0,fr,20731,113,868872,1,2,Active Shallow Crust,0.0,89.98961,0.0,08/22/5664 +7.10572,46.72146,7805,11,13,11,19,15,4.25,15.0,fr,20732,156,868885,1,1,Active Shallow Crust,0.0,89.99074,0.0,11/13/7805 +7.10572,46.72146,3918,7,3,3,51,6,4.25,5.0,fr,20733,78,868890,1,1,Active Shallow Crust,0.0,89.99063,-90.0,07/03/3918 +7.10572,46.72146,5716,8,7,8,58,49,4.45,15.0,fr,20734,114,868909,1,1,Active Shallow Crust,0.0,89.99019,0.0,08/07/5716 +7.10572,46.72146,9406,5,19,6,33,35,4.45,5.0,fr,20735,188,868917,1,1,Active Shallow Crust,128.8922,89.99387,0.0,05/19/9406 +7.10572,46.72146,5636,10,28,0,56,51,4.55,15.0,fr,20736,112,868921,1,4,Active Shallow Crust,0.0,89.98907,0.0,10/28/5636 +7.10572,46.72146,8166,10,29,21,11,48,4.55,15.0,fr,20737,163,868921,1,4,Active Shallow Crust,0.0,89.98907,0.0,10/29/8166 +7.10572,46.72146,8109,11,8,3,40,53,4.55,15.0,fr,20738,162,868921,1,4,Active Shallow Crust,0.0,89.98907,0.0,11/08/8109 +7.10572,46.72146,3849,12,11,5,58,11,4.55,15.0,fr,20739,76,868921,1,4,Active Shallow Crust,0.0,89.98907,0.0,12/11/3849 +7.10572,46.72146,8012,11,27,10,26,29,4.65,5.0,fr,20740,160,868932,1,1,Active Shallow Crust,0.0,89.99026,0.0,11/27/8012 +7.10572,46.72146,4397,6,5,7,41,49,4.75,15.0,fr,20741,87,868945,1,1,Active Shallow Crust,0.0,89.98958,0.0,06/05/4397 +7.10572,46.72146,5386,8,16,12,54,4,4.85,5.0,fr,20742,107,868956,1,1,Active Shallow Crust,0.0,89.99072,0.0,08/16/5386 +7.10572,46.72146,1213,1,29,8,45,57,5.55,5.0,fr,20743,24,869040,1,1,Active Shallow Crust,0.0,89.99032,0.0,01/29/1213 +2.54947,51.42045,7055,6,3,18,58,27,3.55,15.0,fr,20744,141,869281,1,1,Active Shallow Crust,0.0,89.99057,0.0,06/03/7055 +2.54947,51.42045,6994,6,29,17,54,42,3.65,27.5,fr,20745,139,869297,1,1,Active Shallow Crust,240.0015,58.01277,0.0,06/29/6994 +2.54947,51.42045,4769,11,1,22,57,25,3.75,5.0,fr,20746,95,869304,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/01/4769 +2.54947,51.42045,6432,5,21,22,23,34,3.75,15.0,fr,20747,128,869305,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/21/6432 +2.54947,51.42045,9857,4,10,18,50,20,3.85,5.0,fr,20748,197,869316,1,1,Active Shallow Crust,0.0,89.9911,0.0,04/10/9857 +2.54947,51.42045,2007,1,10,4,49,39,3.95,5.0,fr,20749,40,869328,1,1,Active Shallow Crust,0.0,89.99008,0.0,01/10/2007 +2.54947,51.42045,8563,11,16,9,13,3,4.65,5.0,fr,20750,171,869412,1,1,Active Shallow Crust,0.0,89.99025,0.0,11/16/8563 +2.60488,41.61222,770,10,11,14,35,44,3.55,5.0,fr,20751,15,869760,1,2,Active Shallow Crust,0.0,89.98869,0.0,10/11/0770 +2.60488,41.61222,4642,11,19,7,0,21,3.55,5.0,fr,20752,92,869760,1,2,Active Shallow Crust,0.0,89.98869,0.0,11/19/4642 +2.60488,41.61222,4783,8,20,18,6,25,3.55,15.0,fr,20753,95,869761,1,1,Active Shallow Crust,0.0,89.98869,0.0,08/20/4783 +2.60488,41.61222,9760,6,13,7,7,43,3.55,27.5,fr,20754,195,869762,1,1,Active Shallow Crust,0.0,89.98869,0.0,06/13/9760 +2.60488,41.61222,4811,3,15,14,28,58,3.55,5.0,fr,20755,96,869766,1,1,Active Shallow Crust,0.0,89.98856,-90.0,03/15/4811 +2.60488,41.61222,4017,12,10,18,21,52,3.65,5.0,fr,20756,80,869772,1,4,Active Shallow Crust,0.0,89.98992,0.0,12/10/4017 +2.60488,41.61222,62,3,4,3,44,6,3.65,5.0,fr,20757,1,869772,1,4,Active Shallow Crust,0.0,89.98992,0.0,03/04/0062 +2.60488,41.61222,3419,12,19,2,59,40,3.65,5.0,fr,20758,68,869772,1,4,Active Shallow Crust,0.0,89.98992,0.0,12/19/3419 +2.60488,41.61222,1625,6,15,4,11,45,3.65,5.0,fr,20759,32,869772,1,4,Active Shallow Crust,0.0,89.98992,0.0,06/15/1625 +2.60488,41.61222,8871,12,6,11,26,1,3.65,5.0,fr,20760,177,869775,1,1,Active Shallow Crust,240.0014,58.01221,0.0,12/06/8871 +2.60488,41.61222,2536,7,22,15,28,54,3.65,5.0,fr,20761,50,869781,1,2,Active Shallow Crust,128.9012,89.96343,0.0,07/22/2536 +2.60488,41.61222,9029,8,17,7,57,59,3.65,5.0,fr,20762,180,869781,1,2,Active Shallow Crust,128.9012,89.96343,0.0,08/17/9029 +2.60488,41.61222,9244,5,13,20,48,5,3.75,5.0,fr,20763,184,869784,1,3,Active Shallow Crust,0.0,89.99102,0.0,05/13/9244 +2.60488,41.61222,5188,10,20,22,6,5,3.75,5.0,fr,20764,103,869784,1,3,Active Shallow Crust,0.0,89.99102,0.0,10/20/5188 +2.60488,41.61222,9522,6,17,19,25,52,3.75,5.0,fr,20765,190,869784,1,3,Active Shallow Crust,0.0,89.99102,0.0,06/17/9522 +2.60488,41.61222,7657,12,15,17,29,57,3.75,15.0,fr,20766,153,869785,1,3,Active Shallow Crust,0.0,89.99102,0.0,12/15/7657 +2.60488,41.61222,351,1,7,21,17,29,3.75,15.0,fr,20767,7,869785,1,3,Active Shallow Crust,0.0,89.99102,0.0,01/07/0351 +2.60488,41.61222,7498,6,23,11,50,50,3.75,15.0,fr,20768,149,869785,1,3,Active Shallow Crust,0.0,89.99102,0.0,06/23/7498 +2.60488,41.61222,5740,9,22,4,10,48,3.75,27.5,fr,20769,114,869786,1,1,Active Shallow Crust,0.0,89.99102,0.0,09/22/5740 +2.60488,41.61222,7521,10,11,7,52,10,3.75,27.5,fr,20770,150,869795,1,1,Active Shallow Crust,128.8964,89.96741,0.0,10/11/7521 +2.60488,41.61222,1924,4,18,7,37,28,3.85,5.0,fr,20771,38,869796,1,1,Active Shallow Crust,0.0,89.98933,0.0,04/18/1924 +2.60488,41.61222,501,10,20,0,9,59,3.85,15.0,fr,20772,10,869797,1,1,Active Shallow Crust,0.0,89.98933,0.0,10/20/0501 +2.60488,41.61222,9629,1,28,7,57,5,3.95,5.0,fr,20773,192,869808,1,4,Active Shallow Crust,0.0,89.99049,0.0,01/28/9629 +2.60488,41.61222,3401,11,19,18,26,30,3.95,5.0,fr,20774,68,869808,1,4,Active Shallow Crust,0.0,89.99049,0.0,11/19/3401 +2.60488,41.61222,5925,9,27,17,31,7,3.95,5.0,fr,20775,118,869808,1,4,Active Shallow Crust,0.0,89.99049,0.0,09/27/5925 +2.60488,41.61222,4389,4,8,19,21,48,3.95,5.0,fr,20776,87,869808,1,4,Active Shallow Crust,0.0,89.99049,0.0,04/08/4389 +2.60488,41.61222,2470,2,18,9,12,23,3.95,15.0,fr,20777,49,869809,1,1,Active Shallow Crust,0.0,89.99049,0.0,02/18/2470 +2.60488,41.61222,6284,1,10,7,54,15,3.95,15.0,fr,20778,125,869818,1,1,Active Shallow Crust,128.9011,89.99287,0.0,01/10/6284 +2.60488,41.61222,6145,3,18,12,37,49,4.05,5.0,fr,20779,122,869820,1,2,Active Shallow Crust,0.0,89.9894,0.0,03/18/6145 +2.60488,41.61222,4886,7,17,4,44,17,4.05,5.0,fr,20780,97,869820,1,2,Active Shallow Crust,0.0,89.9894,0.0,07/17/4886 +2.60488,41.61222,7942,11,9,10,55,6,4.05,27.5,fr,20781,158,869822,1,1,Active Shallow Crust,0.0,89.9894,0.0,11/09/7942 +2.60488,41.61222,2769,10,3,22,40,48,4.15,5.0,fr,20782,55,869832,1,2,Active Shallow Crust,0.0,89.99055,0.0,10/03/2769 +2.60488,41.61222,9615,2,15,7,13,7,4.15,5.0,fr,20783,192,869832,1,2,Active Shallow Crust,0.0,89.99055,0.0,02/15/9615 +2.60488,41.61222,4905,9,24,18,11,35,4.15,15.0,fr,20784,98,869833,1,1,Active Shallow Crust,0.0,89.99055,0.0,09/24/4905 +2.60488,41.61222,5669,12,23,22,54,50,4.15,27.5,fr,20785,113,869834,1,1,Active Shallow Crust,0.0,89.99055,0.0,12/23/5669 +2.60488,41.61222,7420,11,12,22,26,30,4.15,5.0,fr,20786,148,869835,1,1,Active Shallow Crust,240.008,57.99717,0.0,11/12/7420 +2.60488,41.61222,3291,2,17,18,22,19,4.15,5.0,fr,20787,65,869838,1,1,Active Shallow Crust,0.0,89.99044,-90.0,02/17/3291 +2.60488,41.61222,4653,5,27,21,50,8,4.25,5.0,fr,20788,93,869844,1,1,Active Shallow Crust,0.0,89.9899,0.0,05/27/4653 +2.60488,41.61222,9563,8,6,22,1,52,4.25,5.0,fr,20789,191,869847,1,1,Active Shallow Crust,240.0069,57.99379,0.0,08/06/9563 +2.60488,41.61222,6147,12,24,8,59,3,4.35,5.0,fr,20790,122,869856,1,1,Active Shallow Crust,0.0,89.98949,0.0,12/24/6147 +2.60488,41.61222,5503,10,22,15,38,22,4.35,15.0,fr,20791,110,869857,1,2,Active Shallow Crust,0.0,89.98949,0.0,10/22/5503 +2.60488,41.61222,8017,8,9,11,15,38,4.35,15.0,fr,20792,160,869857,1,2,Active Shallow Crust,0.0,89.98949,0.0,08/09/8017 +2.60488,41.61222,7191,3,10,3,57,38,4.35,27.5,fr,20793,143,869858,1,1,Active Shallow Crust,0.0,89.98949,0.0,03/10/7191 +2.60488,41.61222,479,2,3,3,22,25,4.45,5.0,fr,20794,9,869871,1,1,Active Shallow Crust,240.004,57.99438,0.0,02/03/0479 +2.60488,41.61222,860,9,6,11,26,23,4.55,15.0,fr,20795,17,869884,1,1,Active Shallow Crust,240.0079,57.99714,0.0,09/06/0860 +2.60488,41.61222,4008,3,26,13,51,58,4.55,5.0,fr,20796,80,869886,1,1,Active Shallow Crust,0.0,89.99035,-90.0,03/26/4008 +2.60488,41.61222,3150,8,13,15,6,34,4.65,5.0,fr,20797,62,869901,1,1,Active Shallow Crust,128.8923,89.98697,0.0,08/13/3150 +2.60488,41.61222,5619,2,14,20,15,12,4.85,5.0,fr,20798,112,869916,1,1,Active Shallow Crust,0.0,89.98987,0.0,02/14/5619 +2.60488,41.61222,4943,3,4,11,38,42,4.85,15.0,fr,20799,98,869917,1,1,Active Shallow Crust,0.0,89.98987,0.0,03/04/4943 +2.60488,41.61222,4953,1,10,20,10,8,4.95,5.0,fr,20800,99,869928,1,1,Active Shallow Crust,0.0,89.99022,0.0,01/10/4953 +2.60488,41.61222,9724,11,28,14,13,47,5.35,5.0,fr,20801,194,869985,1,1,Active Shallow Crust,128.8858,89.99201,0.0,11/28/9724 +2.60488,41.61222,2918,6,19,0,6,33,5.65,15.0,fr,20802,58,870013,1,1,Active Shallow Crust,0.0,89.98991,0.0,06/19/2918 +2.60488,41.61222,6376,7,16,7,24,22,5.75,5.0,fr,20803,127,870024,1,1,Active Shallow Crust,0.0,89.99011,0.0,07/16/6376 +2.604884,41.61222,3897,4,24,23,10,57,6.25,6.744814,fr,20804,77,870084,1,1,Active Shallow Crust,0.0,89.98997,0.0,04/24/3897 +-0.07185,45.8838,7682,1,7,2,44,33,3.55,5.0,fr,20805,153,870240,1,2,Active Shallow Crust,0.0,89.99002,0.0,01/07/7682 +-0.07185,45.8838,9139,3,23,11,32,9,3.55,5.0,fr,20806,182,870240,1,2,Active Shallow Crust,0.0,89.99002,0.0,03/23/9139 +-0.07185,45.8838,1832,9,5,5,31,41,3.55,27.5,fr,20807,36,870242,1,1,Active Shallow Crust,0.0,89.99002,0.0,09/05/1832 +-0.07185,45.8838,2729,5,12,8,40,46,3.55,5.0,fr,20808,54,870243,1,1,Active Shallow Crust,240.0121,57.99815,0.0,05/12/2729 +-0.07185,45.8838,7546,6,15,19,51,30,3.55,5.0,fr,20809,150,870249,1,1,Active Shallow Crust,128.8963,89.99369,0.0,06/15/7546 +-0.07185,45.8838,4065,4,30,21,19,41,3.65,5.0,fr,20810,81,870252,1,1,Active Shallow Crust,0.0,89.99003,0.0,04/30/4065 +-0.07185,45.8838,1213,1,1,19,3,18,3.65,5.0,fr,20811,24,870255,1,1,Active Shallow Crust,240.001,58.01289,0.0,01/01/1213 +-0.07185,45.8838,5466,5,22,5,36,22,3.65,15.0,fr,20812,109,870256,1,2,Active Shallow Crust,240.001,58.01289,0.0,05/22/5466 +-0.07185,45.8838,5898,5,6,14,59,27,3.65,15.0,fr,20813,117,870256,1,2,Active Shallow Crust,240.001,58.01289,0.0,05/06/5898 +-0.07185,45.8838,2472,5,19,21,32,44,3.75,5.0,fr,20814,49,870264,1,1,Active Shallow Crust,0.0,89.98998,0.0,05/19/2472 +-0.07185,45.8838,4165,6,5,3,51,9,3.75,15.0,fr,20815,83,870274,1,2,Active Shallow Crust,128.8967,89.96735,0.0,06/05/4165 +-0.07185,45.8838,7003,11,9,4,43,37,3.75,15.0,fr,20816,140,870274,1,2,Active Shallow Crust,128.8967,89.96735,0.0,11/09/7003 +-0.07185,45.8838,4032,2,7,16,21,33,3.85,5.0,fr,20817,80,870276,1,1,Active Shallow Crust,0.0,89.98998,0.0,02/07/4032 +-0.07185,45.8838,868,1,24,8,35,0,4.15,5.0,fr,20818,17,870312,1,1,Active Shallow Crust,0.0,89.99,0.0,01/24/0868 +-0.07185,45.8838,1009,2,9,10,52,42,4.15,27.5,fr,20819,20,870317,1,1,Active Shallow Crust,240.0083,57.99726,0.0,02/09/1009 +-0.07185,45.8838,4416,10,22,6,0,20,4.25,5.0,fr,20820,88,870324,1,1,Active Shallow Crust,0.0,89.99001,0.0,10/22/4416 +-0.07185,45.8838,4478,6,16,20,41,49,4.35,5.0,fr,20821,89,870345,1,1,Active Shallow Crust,128.8979,89.98276,0.0,06/16/4478 +-0.07185,45.8838,8191,5,5,20,56,31,4.45,5.0,fr,20822,163,870348,1,2,Active Shallow Crust,0.0,89.99,0.0,05/05/8191 +-0.07185,45.8838,5179,5,10,5,6,44,4.45,5.0,fr,20823,103,870348,1,2,Active Shallow Crust,0.0,89.99,0.0,05/10/5179 +-0.07185,45.8838,3194,12,21,10,7,50,4.45,27.5,fr,20824,63,870350,1,1,Active Shallow Crust,0.0,89.99,0.0,12/21/3194 +-0.07185,45.8838,4089,12,21,13,7,8,4.55,5.0,fr,20825,81,870360,1,1,Active Shallow Crust,0.0,89.99001,0.0,12/21/4089 +-0.07185,45.8838,318,6,15,23,25,10,4.65,5.0,fr,20826,6,870375,1,1,Active Shallow Crust,240.0106,57.99421,0.0,06/15/0318 +-0.07185,45.8838,4706,10,15,10,23,12,4.75,5.0,fr,20827,94,870384,1,1,Active Shallow Crust,0.0,89.99,0.0,10/15/4706 +5.78498,49.98426,3378,7,13,18,26,26,4.05,5.0,fr,20828,67,870783,1,2,Active Shallow Crust,240.0068,58.00569,0.0,07/13/3378 +5.78498,49.98426,6198,9,20,12,19,52,4.05,5.0,fr,20829,123,870783,1,2,Active Shallow Crust,240.0068,58.00569,0.0,09/20/6198 +-0.04693,44.80192,9386,7,18,7,39,36,3.65,5.0,fr,20830,187,871215,1,1,Active Shallow Crust,240.0009,58.01287,0.0,07/18/9386 +-0.04693,44.80192,1547,2,23,18,56,17,3.75,5.0,fr,20831,30,871224,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/23/1547 +-0.04693,44.80192,6699,6,7,13,2,17,5.65,5.0,fr,20832,133,871455,1,1,Active Shallow Crust,240.0325,58.0016,0.0,06/07/6699 +5.96351,46.19263,7417,9,8,4,59,10,3.55,5.0,fr,20833,148,871680,1,2,Active Shallow Crust,0.0,89.99302,0.0,09/08/7417 +5.96351,46.19263,2923,7,8,10,6,38,3.55,5.0,fr,20834,58,871680,1,2,Active Shallow Crust,0.0,89.99302,0.0,07/08/2923 +5.96351,46.19263,6481,2,11,20,10,28,3.55,15.0,fr,20835,129,871681,1,2,Active Shallow Crust,0.0,89.99302,0.0,02/11/6481 +5.96351,46.19263,3068,3,24,1,30,46,3.55,15.0,fr,20836,61,871681,1,2,Active Shallow Crust,0.0,89.99302,0.0,03/24/3068 +5.96351,46.19263,4952,8,9,14,38,21,3.65,5.0,fr,20837,99,871692,1,1,Active Shallow Crust,0.0,89.98756,0.0,08/09/4952 +5.96351,46.19263,3960,11,6,15,37,30,3.65,15.0,fr,20838,79,871693,1,1,Active Shallow Crust,0.0,89.98756,0.0,11/06/3960 +5.96351,46.19263,1983,9,20,0,17,9,3.65,27.5,fr,20839,39,871694,1,1,Active Shallow Crust,0.0,89.98756,0.0,09/20/1983 +5.96351,46.19263,9849,4,2,2,18,43,3.75,5.0,fr,20840,196,871704,1,2,Active Shallow Crust,0.0,89.98891,0.0,04/02/9849 +5.96351,46.19263,8178,9,5,9,22,49,3.75,5.0,fr,20841,163,871704,1,2,Active Shallow Crust,0.0,89.98891,0.0,09/05/8178 +5.96351,46.19263,4194,2,22,3,42,1,3.75,5.0,fr,20842,83,871710,1,1,Active Shallow Crust,0.0,89.98878,-90.0,02/22/4194 +5.96351,46.19263,1226,11,23,22,25,6,3.85,5.0,fr,20843,24,871716,1,3,Active Shallow Crust,0.0,89.99012,0.0,11/23/1226 +5.96351,46.19263,7985,5,22,22,7,52,3.85,5.0,fr,20844,159,871716,1,3,Active Shallow Crust,0.0,89.99012,0.0,05/22/7985 +5.96351,46.19263,571,11,4,15,58,59,3.85,5.0,fr,20845,11,871716,1,3,Active Shallow Crust,0.0,89.99012,0.0,11/04/0571 +5.96351,46.19263,4740,2,20,8,14,54,3.95,5.0,fr,20846,94,871728,1,2,Active Shallow Crust,0.0,89.99119,0.0,02/20/4740 +5.96351,46.19263,3571,11,15,3,59,37,3.95,5.0,fr,20847,71,871728,1,2,Active Shallow Crust,0.0,89.99119,0.0,11/15/3571 +5.96351,46.19263,8109,1,7,18,27,43,3.95,15.0,fr,20848,162,871738,1,1,Active Shallow Crust,128.9006,89.9956,0.0,01/07/8109 +5.96351,46.19263,6256,5,1,18,45,3,4.05,5.0,fr,20849,125,871740,1,1,Active Shallow Crust,0.0,89.98822,0.0,05/01/6256 +5.96351,46.19263,1118,2,19,9,58,39,4.05,27.5,fr,20850,22,871742,1,1,Active Shallow Crust,0.0,89.98822,0.0,02/19/1118 +5.96351,46.19263,4034,7,26,9,12,5,4.15,5.0,fr,20851,80,871752,1,1,Active Shallow Crust,0.0,89.9895,0.0,07/26/4034 +5.96351,46.19263,1607,8,30,13,54,53,4.45,5.0,fr,20852,32,871788,1,1,Active Shallow Crust,0.0,89.99009,0.0,08/30/1607 +5.96351,46.19263,7449,2,18,0,39,14,4.45,5.0,fr,20853,148,871791,1,1,Active Shallow Crust,240.0055,57.99452,0.0,02/18/7449 +5.96351,46.19263,9173,7,2,15,2,27,4.75,5.0,fr,20854,183,871824,1,1,Active Shallow Crust,0.0,89.98948,0.0,07/02/9173 +5.96351,46.19263,2918,4,23,21,22,1,5.05,5.0,fr,20855,58,871860,1,1,Active Shallow Crust,0.0,89.99007,0.0,04/23/2918 +-4.51659,44.88543,8004,1,21,19,11,42,4.45,5.0,fr,20856,160,872748,1,1,Active Shallow Crust,0.0,89.98986,0.0,01/21/8004 +-4.50599,47.10321,371,11,13,4,21,18,3.55,5.0,fr,20857,7,873123,1,1,Active Shallow Crust,240.0112,57.99881,0.0,11/13/0371 +-4.50599,47.10321,2569,3,28,13,34,25,4.55,5.0,fr,20858,51,873243,1,1,Active Shallow Crust,240.0097,57.99721,0.0,03/28/2569 +-1.81829,49.51249,9835,11,14,17,2,45,3.55,5.0,fr,20859,196,873600,1,1,Active Shallow Crust,0.0,89.99018,0.0,11/14/9835 +-1.81829,49.51249,8610,12,3,7,51,15,3.65,5.0,fr,20860,172,873612,1,1,Active Shallow Crust,0.0,89.98979,0.0,12/03/8610 +-1.81829,49.51249,4997,1,16,9,42,24,4.15,15.0,fr,20861,99,873673,1,1,Active Shallow Crust,0.0,89.99016,0.0,01/16/4997 +-1.81829,49.51249,1313,5,25,2,32,32,4.25,5.0,fr,20862,26,873690,1,1,Active Shallow Crust,0.0,89.98965,-90.0,05/25/1313 +-1.81829,49.51249,8211,8,14,22,53,51,4.35,15.0,fr,20863,164,873697,1,1,Active Shallow Crust,0.0,89.99023,0.0,08/14/8211 +6.44794,46.64248,8782,1,15,7,47,50,3.55,5.0,fr,20864,175,874080,1,4,Active Shallow Crust,0.0,89.99308,0.0,01/15/8782 +6.44794,46.64248,2447,9,25,14,26,27,3.55,5.0,fr,20865,48,874080,1,4,Active Shallow Crust,0.0,89.99308,0.0,09/25/2447 +6.44794,46.64248,4108,3,3,13,25,23,3.55,5.0,fr,20866,82,874080,1,4,Active Shallow Crust,0.0,89.99308,0.0,03/03/4108 +6.44794,46.64248,7628,5,2,2,3,27,3.55,5.0,fr,20867,152,874080,1,4,Active Shallow Crust,0.0,89.99308,0.0,05/02/7628 +6.44794,46.64248,1134,9,3,14,9,23,3.55,15.0,fr,20868,22,874081,1,1,Active Shallow Crust,0.0,89.99308,0.0,09/03/1134 +6.44794,46.64248,2227,5,9,20,57,23,3.55,27.5,fr,20869,44,874082,1,1,Active Shallow Crust,0.0,89.99308,0.0,05/09/2227 +6.44794,46.64248,5426,9,29,0,43,30,3.55,5.0,fr,20870,108,874083,1,1,Active Shallow Crust,240.0122,57.99762,0.0,09/29/5426 +6.44794,46.64248,4757,10,8,6,49,11,3.55,5.0,fr,20871,95,874086,1,1,Active Shallow Crust,0.0,89.993,-90.0,10/08/4757 +6.44794,46.64248,2013,8,19,13,56,41,3.55,5.0,fr,20872,40,874089,1,3,Active Shallow Crust,128.8966,89.99308,0.0,08/19/2013 +6.44794,46.64248,5065,7,20,3,29,6,3.55,5.0,fr,20873,101,874089,1,3,Active Shallow Crust,128.8966,89.99308,0.0,07/20/5065 +6.44794,46.64248,1729,11,21,13,52,53,3.55,5.0,fr,20874,34,874089,1,3,Active Shallow Crust,128.8966,89.99308,0.0,11/21/1729 +6.44794,46.64248,8742,1,20,8,51,53,3.65,5.0,fr,20875,174,874092,1,5,Active Shallow Crust,0.0,89.98766,0.0,01/20/8742 +6.44794,46.64248,4030,4,28,9,29,27,3.65,5.0,fr,20876,80,874092,1,5,Active Shallow Crust,0.0,89.98766,0.0,04/28/4030 +6.44794,46.64248,1080,9,15,23,42,54,3.65,5.0,fr,20877,21,874092,1,5,Active Shallow Crust,0.0,89.98766,0.0,09/15/1080 +6.44794,46.64248,5126,10,27,9,51,26,3.65,5.0,fr,20878,102,874092,1,5,Active Shallow Crust,0.0,89.98766,0.0,10/27/5126 +6.44794,46.64248,9251,8,12,6,27,25,3.65,5.0,fr,20879,185,874092,1,5,Active Shallow Crust,0.0,89.98766,0.0,08/12/9251 +6.44794,46.64248,9052,4,14,14,47,57,3.65,15.0,fr,20880,181,874093,1,1,Active Shallow Crust,0.0,89.98766,0.0,04/14/9052 +6.44794,46.64248,9870,12,18,3,51,47,3.65,5.0,fr,20881,197,874095,1,1,Active Shallow Crust,240.0009,58.01254,0.0,12/18/9870 +6.44794,46.64248,521,1,27,17,14,9,3.65,27.5,fr,20882,10,874097,1,1,Active Shallow Crust,240.0009,58.01245,0.0,01/27/0521 +6.44794,46.64248,9252,10,25,15,36,32,3.65,5.0,fr,20883,185,874101,1,1,Active Shallow Crust,128.9005,89.96352,0.0,10/25/9252 +6.44794,46.64248,5585,4,2,18,18,25,3.75,5.0,fr,20884,111,874104,1,4,Active Shallow Crust,0.0,89.989,0.0,04/02/5585 +6.44794,46.64248,1812,3,21,7,22,6,3.75,5.0,fr,20885,36,874104,1,4,Active Shallow Crust,0.0,89.989,0.0,03/21/1812 +6.44794,46.64248,8829,6,11,15,53,23,3.75,5.0,fr,20886,176,874104,1,4,Active Shallow Crust,0.0,89.989,0.0,06/11/8829 +6.44794,46.64248,8658,11,25,5,16,7,3.75,5.0,fr,20887,173,874104,1,4,Active Shallow Crust,0.0,89.989,0.0,11/25/8658 +6.44794,46.64248,8316,5,24,18,3,36,3.75,27.5,fr,20888,166,874106,1,1,Active Shallow Crust,0.0,89.989,0.0,05/24/8316 +6.44794,46.64248,2262,5,1,9,52,44,3.75,5.0,fr,20889,45,874110,1,1,Active Shallow Crust,0.0,89.98888,-90.0,05/01/2262 +6.44794,46.64248,780,2,19,12,18,3,3.85,5.0,fr,20890,15,874116,1,2,Active Shallow Crust,0.0,89.9902,0.0,02/19/0780 +6.44794,46.64248,3345,12,26,15,0,8,3.85,5.0,fr,20891,66,874116,1,2,Active Shallow Crust,0.0,89.9902,0.0,12/26/3345 +6.44794,46.64248,208,3,14,1,35,56,3.85,27.5,fr,20892,4,874118,1,1,Active Shallow Crust,0.0,89.9902,0.0,03/14/0208 +6.44794,46.64248,3902,11,9,7,42,21,3.85,5.0,fr,20893,78,874122,1,1,Active Shallow Crust,0.0,89.99008,-90.0,11/09/3902 +6.44794,46.64248,5641,6,3,8,46,57,3.85,5.0,fr,20894,112,874125,1,2,Active Shallow Crust,128.8965,89.99265,0.0,06/03/5641 +6.44794,46.64248,4341,2,27,6,58,44,3.85,5.0,fr,20895,86,874125,1,2,Active Shallow Crust,128.8965,89.99265,0.0,02/27/4341 +6.44794,46.64248,9091,4,14,4,53,55,3.95,5.0,fr,20896,181,874128,1,3,Active Shallow Crust,0.0,89.99126,0.0,04/14/9091 +6.44794,46.64248,2340,2,20,7,42,10,3.95,5.0,fr,20897,46,874128,1,3,Active Shallow Crust,0.0,89.99126,0.0,02/20/2340 +6.44794,46.64248,6061,9,3,2,20,14,3.95,5.0,fr,20898,121,874128,1,3,Active Shallow Crust,0.0,89.99126,0.0,09/03/6061 +6.44794,46.64248,4265,3,23,12,6,35,3.95,15.0,fr,20899,85,874129,1,1,Active Shallow Crust,0.0,89.99126,0.0,03/23/4265 +6.44794,46.64248,2705,10,25,19,25,18,3.95,5.0,fr,20900,54,874131,1,1,Active Shallow Crust,240.0195,58.00548,0.0,10/25/2705 +6.44794,46.64248,6608,10,4,18,19,17,3.95,5.0,fr,20901,132,874137,1,1,Active Shallow Crust,128.9002,89.99564,0.0,10/04/6608 +6.44794,46.64248,7334,6,25,11,1,11,4.15,5.0,fr,20902,146,874152,1,1,Active Shallow Crust,0.0,89.98959,0.0,06/25/7334 +6.44794,46.64248,9153,1,2,18,24,22,4.15,15.0,fr,20903,183,874153,1,1,Active Shallow Crust,0.0,89.98959,0.0,01/02/9153 +6.44794,46.64248,9243,11,2,7,45,59,4.25,5.0,fr,20904,184,874164,1,2,Active Shallow Crust,0.0,89.99072,0.0,11/02/9243 +6.44794,46.64248,380,10,25,18,5,32,4.25,5.0,fr,20905,7,874164,1,2,Active Shallow Crust,0.0,89.99072,0.0,10/25/0380 +6.44794,46.64248,9082,3,15,5,29,56,4.25,5.0,fr,20906,181,874167,1,1,Active Shallow Crust,240.008,57.99381,0.0,03/15/9082 +6.44794,46.64248,8577,8,23,6,36,17,4.35,15.0,fr,20907,171,874177,1,2,Active Shallow Crust,0.0,89.98898,0.0,08/23/8577 +6.44794,46.64248,890,5,21,16,32,17,4.35,15.0,fr,20908,17,874177,1,2,Active Shallow Crust,0.0,89.98898,0.0,05/21/0890 +6.44794,46.64248,6411,8,21,14,36,39,4.35,27.5,fr,20909,128,874178,1,1,Active Shallow Crust,0.0,89.98898,0.0,08/21/6411 +6.44794,46.64248,3850,2,13,13,27,12,4.45,15.0,fr,20910,76,874189,1,1,Active Shallow Crust,0.0,89.99017,0.0,02/13/3850 +6.44794,46.64248,1036,7,25,14,29,59,4.55,5.0,fr,20911,20,874200,1,1,Active Shallow Crust,0.0,89.98905,0.0,07/25/1036 +6.44794,46.64248,4287,9,27,7,55,29,4.55,15.0,fr,20912,85,874201,1,1,Active Shallow Crust,0.0,89.98905,0.0,09/27/4287 +6.44794,46.64248,13,7,20,7,44,43,4.65,5.0,fr,20913,0,874212,1,2,Active Shallow Crust,0.0,89.99024,0.0,07/20/0013 +6.44794,46.64248,8616,3,11,19,9,42,4.65,5.0,fr,20914,172,874212,1,2,Active Shallow Crust,0.0,89.99024,0.0,03/11/8616 +6.44794,46.64248,7666,7,14,23,14,53,4.65,15.0,fr,20915,153,874213,1,1,Active Shallow Crust,0.0,89.99024,0.0,07/14/7666 +6.44794,46.64248,4132,8,17,5,18,53,4.85,5.0,fr,20916,82,874236,1,1,Active Shallow Crust,0.0,89.9907,0.0,08/17/4132 +6.44794,46.64248,9753,1,22,22,52,22,4.95,5.0,fr,20917,195,874251,1,1,Active Shallow Crust,240.0117,58.00441,0.0,01/22/9753 +6.44794,46.64248,4215,3,15,2,11,20,5.05,5.0,fr,20918,84,874260,1,1,Active Shallow Crust,0.0,89.99015,0.0,03/15/4215 +6.44794,46.64248,4695,5,14,15,34,2,5.45,5.0,fr,20919,93,874308,1,1,Active Shallow Crust,0.0,89.9899,0.0,05/14/4695 +2.38008,47.77282,708,12,19,2,30,50,3.55,5.0,fr,20920,14,874560,1,2,Active Shallow Crust,0.0,89.98984,0.0,12/19/0708 +2.38008,47.77282,6447,6,30,12,11,17,3.55,5.0,fr,20921,128,874560,1,2,Active Shallow Crust,0.0,89.98984,0.0,06/30/6447 +2.38008,47.77282,2540,3,2,14,57,28,3.75,15.0,fr,20922,50,874585,1,1,Active Shallow Crust,0.0,89.98923,0.0,03/02/2540 +2.38008,47.77282,1708,4,4,9,39,19,3.85,27.5,fr,20923,34,874601,1,1,Active Shallow Crust,240.0113,57.99799,0.0,04/04/1708 +2.38008,47.77282,6601,5,25,8,11,48,4.55,15.0,fr,20924,132,874681,1,1,Active Shallow Crust,0.0,89.99036,0.0,05/25/6601 +2.38008,47.77282,3290,3,8,14,21,5,4.85,27.5,fr,20925,65,874718,1,1,Active Shallow Crust,0.0,89.99014,0.0,03/08/3290 +1.46584,44.38309,5350,4,12,11,25,50,3.95,15.0,fr,20926,106,875089,1,1,Active Shallow Crust,0.0,89.98977,0.0,04/12/5350 +1.46584,44.38309,3725,5,31,18,45,9,4.05,27.5,fr,20927,74,875102,1,1,Active Shallow Crust,0.0,89.98987,0.0,05/31/3725 +1.46584,44.38309,9033,2,13,8,6,9,4.25,15.0,fr,20928,180,875125,1,1,Active Shallow Crust,0.0,89.99034,0.0,02/13/9033 +1.46584,44.38309,9331,10,29,2,42,36,4.25,5.0,fr,20929,186,875127,1,1,Active Shallow Crust,240.007,57.99416,0.0,10/29/9331 +1.46584,44.38309,6789,9,23,12,2,14,4.35,5.0,fr,20930,135,875145,1,1,Active Shallow Crust,128.8981,89.98283,0.0,09/23/6789 +1.46584,44.38309,7227,10,18,3,50,7,4.65,5.0,fr,20931,144,875172,1,1,Active Shallow Crust,0.0,89.98985,0.0,10/18/7227 +6.64456,49.71853,1241,8,17,2,35,47,3.75,5.0,fr,20932,24,875544,1,1,Active Shallow Crust,0.0,89.98964,0.0,08/17/1241 +6.64456,49.71853,6656,12,13,4,58,48,4.75,5.0,fr,20933,133,875664,1,1,Active Shallow Crust,0.0,89.99017,0.0,12/13/6656 +6.64456,49.71853,2677,6,12,19,40,6,4.95,5.0,fr,20934,53,875688,1,1,Active Shallow Crust,0.0,89.98959,0.0,06/12/2677 +6.64456,49.71853,3011,10,7,8,43,49,5.25,5.0,fr,20935,60,875724,1,1,Active Shallow Crust,0.0,89.98987,0.0,10/07/3011 +7.64438,50.82689,8982,11,28,17,31,35,3.55,5.0,fr,20936,179,876003,1,1,Active Shallow Crust,240.0135,57.99776,0.0,11/28/8982 +7.64438,50.82689,5761,3,26,9,46,46,3.95,15.0,fr,20937,115,876055,1,1,Active Shallow Crust,0.0,89.99187,-90.0,03/26/5761 +7.64438,50.82689,8972,11,16,23,6,19,4.15,5.0,fr,20938,179,876072,1,1,Active Shallow Crust,0.0,89.99043,0.0,11/16/8972 +7.64438,50.82689,2133,2,14,18,51,27,4.85,5.0,fr,20939,42,876156,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/14/2133 +-1.21433,47.14329,3586,7,5,14,46,37,3.65,15.0,fr,20940,71,876493,1,1,Active Shallow Crust,0.0,89.9893,0.0,07/05/3586 +-1.21433,47.14329,1372,8,11,17,41,6,3.65,5.0,fr,20941,27,876498,1,1,Active Shallow Crust,0.0,89.99072,-90.0,08/11/1372 +-1.21433,47.14329,6874,10,24,6,15,25,3.75,15.0,fr,20942,137,876505,1,1,Active Shallow Crust,0.0,89.99046,0.0,10/24/6874 +-1.21433,47.14329,1468,1,21,21,50,0,3.75,15.0,fr,20943,29,876511,1,1,Active Shallow Crust,0.0,89.99036,-90.0,01/21/1468 +-1.21433,47.14329,8650,6,26,23,55,23,3.85,5.0,fr,20944,172,876525,1,1,Active Shallow Crust,128.8956,89.99393,0.0,06/26/8650 +-1.21433,47.14329,7348,7,21,2,57,53,3.95,5.0,fr,20945,146,876528,1,1,Active Shallow Crust,0.0,89.99026,0.0,07/21/7348 +-1.21433,47.14329,9606,9,8,21,35,52,4.05,5.0,fr,20946,192,876549,1,1,Active Shallow Crust,128.8904,89.99374,0.0,09/08/9606 +-1.21433,47.14329,5232,12,9,1,42,52,4.15,15.0,fr,20947,104,876553,1,1,Active Shallow Crust,0.0,89.98969,0.0,12/09/5232 +-1.21433,47.14329,934,3,18,10,22,8,4.25,5.0,fr,20948,18,876564,1,1,Active Shallow Crust,0.0,89.99004,0.0,03/18/0934 +-1.21433,47.14329,1933,2,8,14,50,9,5.35,5.0,fr,20949,38,876696,1,1,Active Shallow Crust,0.0,89.99007,0.0,02/08/1933 +-6.68226,49.19475,6325,5,7,6,12,55,3.75,5.0,fr,20950,126,876984,1,1,Active Shallow Crust,0.0,89.98953,0.0,05/07/6325 +5.6443,49.4675,5542,10,8,18,44,2,3.65,5.0,fr,20951,110,877452,1,2,Active Shallow Crust,0.0,89.98832,0.0,10/08/5542 +5.6443,49.4675,5373,1,15,4,7,21,3.65,5.0,fr,20952,107,877452,1,2,Active Shallow Crust,0.0,89.98832,0.0,01/15/5373 +5.6443,49.4675,4385,6,19,18,49,41,3.75,5.0,fr,20953,87,877464,1,1,Active Shallow Crust,0.0,89.98959,0.0,06/19/4385 +5.6443,49.4675,8257,9,4,9,35,44,4.55,5.0,fr,20954,165,877560,1,1,Active Shallow Crust,0.0,89.98964,0.0,09/04/8257 +3.62407,40.41272,4006,10,7,14,21,7,3.55,15.0,fr,20955,80,877921,1,1,Active Shallow Crust,0.0,89.98848,0.0,10/07/4006 +3.62407,40.41272,4760,9,21,0,30,18,3.55,27.5,fr,20956,95,877922,1,1,Active Shallow Crust,0.0,89.98848,0.0,09/21/4760 +3.62407,40.41272,7583,7,23,16,37,46,3.75,15.0,fr,20957,151,877951,1,1,Active Shallow Crust,0.0,89.99075,-90.0,07/23/7583 +3.62407,40.41272,9314,11,22,9,46,20,3.85,5.0,fr,20958,186,877959,1,1,Active Shallow Crust,240.0105,57.99752,0.0,11/22/9314 +3.62407,40.41272,1792,7,4,3,51,54,3.85,5.0,fr,20959,35,877965,1,1,Active Shallow Crust,128.896,89.99321,0.0,07/04/1792 +3.31068,48.00323,8737,8,15,20,13,54,3.55,5.0,fr,20960,174,878400,1,1,Active Shallow Crust,0.0,89.98988,0.0,08/15/8737 +3.31068,48.00323,3579,10,2,16,4,58,4.25,5.0,fr,20961,71,878490,1,1,Active Shallow Crust,0.0,89.98933,-90.0,10/02/3579 +8.52265,48.79934,3335,2,12,9,30,46,3.55,27.5,fr,20962,66,878882,1,1,Active Shallow Crust,0.0,89.98672,0.0,02/12/3335 +8.52265,48.79934,6913,6,6,11,53,22,3.55,5.0,fr,20963,138,878889,1,1,Active Shallow Crust,128.8978,89.99335,0.0,06/06/6913 +8.52265,48.79934,1697,5,6,10,8,45,3.65,5.0,fr,20964,33,878892,1,1,Active Shallow Crust,0.0,89.98816,0.0,05/06/1697 +8.52265,48.79934,170,5,14,2,7,54,3.75,15.0,fr,20965,3,878905,1,1,Active Shallow Crust,0.0,89.98945,0.0,05/14/0170 +8.52265,48.79934,2518,3,6,18,11,10,3.75,5.0,fr,20966,50,878907,1,2,Active Shallow Crust,240.0091,58.0182,0.0,03/06/2518 +8.52265,48.79934,7,3,1,17,58,36,3.75,5.0,fr,20967,0,878907,1,2,Active Shallow Crust,240.0091,58.0182,0.0,03/01/0007 +8.52265,48.79934,3870,6,6,21,4,57,3.75,15.0,fr,20968,77,878914,1,1,Active Shallow Crust,128.8987,89.96627,0.0,06/06/3870 +8.52265,48.79934,1468,12,18,17,54,53,3.85,5.0,fr,20969,29,878916,1,3,Active Shallow Crust,0.0,89.99059,0.0,12/18/1468 +8.52265,48.79934,6103,10,26,3,31,19,3.85,5.0,fr,20970,122,878916,1,3,Active Shallow Crust,0.0,89.99059,0.0,10/26/6103 +8.52265,48.79934,6597,10,21,4,33,22,3.85,5.0,fr,20971,131,878916,1,3,Active Shallow Crust,0.0,89.99059,0.0,10/21/6597 +8.52265,48.79934,1548,7,16,2,25,21,3.95,5.0,fr,20972,30,878928,1,3,Active Shallow Crust,0.0,89.99162,0.0,07/16/1548 +8.52265,48.79934,9108,1,23,0,11,18,3.95,5.0,fr,20973,182,878928,1,3,Active Shallow Crust,0.0,89.99162,0.0,01/23/9108 +8.52265,48.79934,5264,3,26,16,32,3,3.95,5.0,fr,20974,105,878928,1,3,Active Shallow Crust,0.0,89.99162,0.0,03/26/5264 +8.52265,48.79934,7235,12,1,16,8,41,3.95,15.0,fr,20975,144,878935,1,1,Active Shallow Crust,0.0,89.99152,-90.0,12/01/7235 +8.52265,48.79934,741,1,21,21,57,2,4.05,5.0,fr,20976,14,878940,1,1,Active Shallow Crust,0.0,89.99253,0.0,01/21/0741 +8.52265,48.79934,6967,10,25,19,0,48,4.25,15.0,fr,20977,139,878968,1,1,Active Shallow Crust,240.0079,57.99454,0.0,10/25/6967 +6.52347,50.44886,7210,3,19,21,14,55,3.55,5.0,fr,20978,144,879360,1,2,Active Shallow Crust,0.0,89.98716,0.0,03/19/7210 +6.52347,50.44886,9128,5,29,0,33,12,3.55,5.0,fr,20979,182,879360,1,2,Active Shallow Crust,0.0,89.98716,0.0,05/29/9128 +6.52347,50.44886,2259,9,18,20,34,26,3.55,15.0,fr,20980,45,879361,1,1,Active Shallow Crust,0.0,89.98716,0.0,09/18/2259 +6.52347,50.44886,6719,3,26,0,26,6,3.55,15.0,fr,20981,134,879370,1,1,Active Shallow Crust,128.8965,89.99358,0.0,03/26/6719 +6.52347,50.44886,5813,10,2,3,7,26,3.65,27.5,fr,20982,116,879374,1,1,Active Shallow Crust,0.0,89.98856,0.0,10/02/5813 +6.52347,50.44886,7187,10,19,8,5,6,3.75,5.0,fr,20983,143,879384,1,2,Active Shallow Crust,0.0,89.9898,0.0,10/19/7187 +6.52347,50.44886,8512,9,17,5,21,14,3.75,5.0,fr,20984,170,879384,1,2,Active Shallow Crust,0.0,89.9898,0.0,09/17/8512 +6.52347,50.44886,5109,1,18,11,54,1,3.75,5.0,fr,20985,102,879387,1,1,Active Shallow Crust,240.0096,58.01732,0.0,01/18/5109 +6.52347,50.44886,4188,6,22,12,40,51,3.75,5.0,fr,20986,83,879393,1,1,Active Shallow Crust,128.8955,89.96756,0.0,06/22/4188 +6.52347,50.44886,4397,9,24,19,43,59,3.85,5.0,fr,20987,87,879399,1,2,Active Shallow Crust,240.0119,57.99787,0.0,09/24/4397 +6.52347,50.44886,9164,12,4,22,51,46,3.85,5.0,fr,20988,183,879399,1,2,Active Shallow Crust,240.0119,57.99787,0.0,12/04/9164 +6.52347,50.44886,4790,5,30,10,39,12,3.85,15.0,fr,20989,95,879403,1,1,Active Shallow Crust,0.0,89.99081,-90.0,05/30/4790 +6.52347,50.44886,7040,11,18,11,35,52,4.15,5.0,fr,20990,140,879432,1,1,Active Shallow Crust,0.0,89.99034,0.0,11/18/7040 +6.52347,50.44886,5563,10,5,9,46,43,4.25,5.0,fr,20991,111,879444,1,1,Active Shallow Crust,0.0,89.99139,0.0,10/05/5563 +6.52347,50.44886,8962,2,12,15,12,54,4.35,5.0,fr,20992,179,879456,1,1,Active Shallow Crust,0.0,89.98978,0.0,02/12/8962 +6.52347,50.44886,454,5,15,16,10,20,4.35,5.0,fr,20993,9,879459,1,1,Active Shallow Crust,240.0095,57.9963,0.0,05/15/0454 +6.52347,50.44886,7951,1,15,12,12,47,4.65,5.0,fr,20994,159,879498,1,1,Active Shallow Crust,0.0,89.99084,-90.0,01/15/7951 +6.52347,50.44886,1899,9,3,0,44,38,4.75,5.0,fr,20995,37,879513,1,1,Active Shallow Crust,128.8875,89.98799,0.0,09/03/1899 +6.52347,50.44886,1803,10,21,20,51,27,5.45,5.0,fr,20996,36,879588,1,1,Active Shallow Crust,0.0,89.98991,0.0,10/21/1803 +0.8044,43.10922,2032,10,3,22,6,7,3.55,5.0,fr,20997,40,879840,1,1,Active Shallow Crust,0.0,89.98988,0.0,10/03/2032 +0.8044,43.10922,4932,9,11,8,44,35,3.55,15.0,fr,20998,98,879841,1,1,Active Shallow Crust,0.0,89.98988,0.0,09/11/4932 +0.8044,43.10922,4450,6,20,7,30,24,3.55,5.0,fr,20999,88,879849,1,1,Active Shallow Crust,128.8962,89.99402,0.0,06/20/4450 +0.8044,43.10922,6053,11,21,17,3,33,3.55,15.0,fr,21000,121,879850,1,1,Active Shallow Crust,128.8962,89.99402,0.0,11/21/6053 +0.8044,43.10922,5050,9,14,0,47,21,3.65,15.0,fr,21001,100,879853,1,1,Active Shallow Crust,0.0,89.99016,0.0,09/14/5050 +0.8044,43.10922,3533,3,7,2,54,16,3.65,5.0,fr,21002,70,879855,1,1,Active Shallow Crust,240.0009,58.01287,0.0,03/07/3533 +0.8044,43.10922,7771,4,18,0,35,40,3.65,15.0,fr,21003,155,879859,1,1,Active Shallow Crust,0.0,89.99004,-90.0,04/18/7771 +0.8044,43.10922,6217,6,6,0,6,48,3.75,5.0,fr,21004,124,879864,1,1,Active Shallow Crust,0.0,89.98977,0.0,06/06/6217 +0.8044,43.10922,8032,4,22,23,37,40,3.75,15.0,fr,21005,160,879865,1,1,Active Shallow Crust,0.0,89.98977,0.0,04/22/8032 +0.8044,43.10922,5550,1,6,18,54,49,3.75,5.0,fr,21006,110,879873,1,1,Active Shallow Crust,128.8967,89.96736,0.0,01/06/5550 +0.8044,43.10922,7128,7,23,17,32,13,3.85,5.0,fr,21007,142,879876,1,1,Active Shallow Crust,0.0,89.99023,0.0,07/23/7128 +0.8044,43.10922,5140,5,11,11,10,59,3.85,5.0,fr,21008,102,879879,1,1,Active Shallow Crust,240.0104,57.99774,0.0,05/11/5140 +0.8044,43.10922,7534,8,3,5,27,3,4.05,5.0,fr,21009,150,879900,1,1,Active Shallow Crust,0.0,89.99017,0.0,08/03/7534 +0.8044,43.10922,1357,9,29,16,15,34,4.25,5.0,fr,21010,27,879924,1,1,Active Shallow Crust,0.0,89.99014,0.0,09/29/1357 +0.8044,43.10922,2645,5,21,11,44,59,4.45,15.0,fr,21011,52,879958,1,1,Active Shallow Crust,128.8929,89.9938,0.0,05/21/2645 +3.91042,51.82685,6149,8,14,1,23,31,3.55,5.0,fr,21012,122,880329,1,1,Active Shallow Crust,128.895,89.99377,0.0,08/14/6149 +4.81515,41.25727,4523,1,12,3,48,3,3.65,15.0,fr,21013,90,880813,1,1,Active Shallow Crust,0.0,89.99324,0.0,01/12/4523 +-0.60554,46.38177,7783,1,25,6,51,23,3.55,5.0,fr,21014,155,881280,1,6,Active Shallow Crust,0.0,89.98956,0.0,01/25/7783 +-0.60554,46.38177,3546,7,30,1,24,23,3.55,5.0,fr,21015,70,881280,1,6,Active Shallow Crust,0.0,89.98956,0.0,07/30/3546 +-0.60554,46.38177,7655,6,14,19,25,55,3.55,5.0,fr,21016,153,881280,1,6,Active Shallow Crust,0.0,89.98956,0.0,06/14/7655 +-0.60554,46.38177,8962,5,15,19,21,39,3.55,5.0,fr,21017,179,881280,1,6,Active Shallow Crust,0.0,89.98956,0.0,05/15/8962 +-0.60554,46.38177,2820,5,31,23,15,19,3.55,5.0,fr,21018,56,881280,1,6,Active Shallow Crust,0.0,89.98956,0.0,05/31/2820 +-0.60554,46.38177,7950,9,25,14,43,57,3.55,5.0,fr,21019,158,881280,1,6,Active Shallow Crust,0.0,89.98956,0.0,09/25/7950 +-0.60554,46.38177,4971,1,23,6,18,53,3.55,15.0,fr,21020,99,881281,1,2,Active Shallow Crust,0.0,89.98956,0.0,01/23/4971 +-0.60554,46.38177,5032,8,9,22,48,33,3.55,15.0,fr,21021,100,881281,1,2,Active Shallow Crust,0.0,89.98956,0.0,08/09/5032 +-0.60554,46.38177,1697,2,19,18,53,22,3.75,5.0,fr,21022,33,881307,1,1,Active Shallow Crust,240.0083,58.01749,0.0,02/19/1697 +-0.60554,46.38177,4330,7,12,2,10,14,4.05,15.0,fr,21023,86,881341,1,1,Active Shallow Crust,0.0,89.99022,0.0,07/12/4330 +-0.60554,46.38177,4253,6,7,8,45,7,4.15,5.0,fr,21024,85,881352,1,1,Active Shallow Crust,0.0,89.98997,0.0,06/07/4253 +-0.60554,46.38177,57,10,17,11,0,3,4.35,5.0,fr,21025,1,881376,1,1,Active Shallow Crust,0.0,89.98996,0.0,10/17/0057 +-0.60554,46.38177,7136,2,14,17,30,36,4.45,5.0,fr,21026,142,881388,1,1,Active Shallow Crust,0.0,89.99013,0.0,02/14/7136 +-0.60554,46.38177,5080,12,29,2,34,18,4.85,5.0,fr,21027,101,881436,1,1,Active Shallow Crust,0.0,89.99007,0.0,12/29/5080 +-0.6055377,46.38177,682,3,15,8,13,29,6.15,6.011322,fr,21028,13,881592,1,1,Active Shallow Crust,0.0,89.98999,0.0,03/15/0682 +2.06552,52.68592,9585,4,14,5,44,13,3.95,5.0,fr,21029,191,882288,1,1,Active Shallow Crust,0.0,89.99036,0.0,04/14/9585 +-2.05712,47.88417,5301,7,23,4,55,24,3.65,5.0,fr,21030,106,882732,1,1,Active Shallow Crust,0.0,89.99096,0.0,07/23/5301 +-2.05712,47.88417,3677,8,19,8,52,44,3.65,5.0,fr,21031,73,882738,1,1,Active Shallow Crust,0.0,89.99085,-90.0,08/19/3677 +-2.05712,47.88417,9614,11,19,22,51,7,3.75,5.0,fr,21032,192,882744,1,1,Active Shallow Crust,0.0,89.98926,0.0,11/19/9614 +-2.05712,47.88417,3012,2,14,13,9,51,3.75,5.0,fr,21033,60,882747,1,1,Active Shallow Crust,240.0086,58.01775,0.0,02/14/3012 +-2.05712,47.88417,1221,8,23,1,2,17,3.85,5.0,fr,21034,24,882756,1,3,Active Shallow Crust,0.0,89.99043,0.0,08/23/1221 +-2.05712,47.88417,2792,11,8,21,27,12,3.85,5.0,fr,21035,55,882756,1,3,Active Shallow Crust,0.0,89.99043,0.0,11/08/2792 +-2.05712,47.88417,4981,9,13,2,9,59,3.85,5.0,fr,21036,99,882756,1,3,Active Shallow Crust,0.0,89.99043,0.0,09/13/4981 +-2.05712,47.88417,9303,7,4,0,41,24,4.15,5.0,fr,21037,186,882792,1,1,Active Shallow Crust,0.0,89.98983,0.0,07/04/9303 +-2.05712,47.88417,4036,1,12,3,25,17,4.15,5.0,fr,21038,80,882798,1,1,Active Shallow Crust,0.0,89.98972,-90.0,01/12/4036 +-2.05712,47.88417,9844,6,1,12,21,25,4.35,5.0,fr,21039,196,882816,1,2,Active Shallow Crust,0.0,89.99058,0.0,06/01/9844 +-2.05712,47.88417,5868,8,5,7,30,14,4.35,5.0,fr,21040,117,882816,1,2,Active Shallow Crust,0.0,89.99058,0.0,08/05/5868 +7.55376,48.31325,4254,5,26,20,31,45,3.55,15.0,fr,21041,85,883201,1,1,Active Shallow Crust,0.0,89.99329,0.0,05/26/4254 +7.55376,48.31325,732,12,4,20,35,50,3.55,27.5,fr,21042,14,883202,1,1,Active Shallow Crust,0.0,89.99329,0.0,12/04/0732 +7.55376,48.31325,9957,2,16,17,6,52,3.55,5.0,fr,21043,199,883203,1,1,Active Shallow Crust,240.012,57.99866,0.0,02/16/9957 +7.55376,48.31325,4941,5,25,19,7,34,3.65,15.0,fr,21044,98,883213,1,1,Active Shallow Crust,0.0,89.98804,0.0,05/25/4941 +7.55376,48.31325,1691,8,19,3,46,42,3.65,27.5,fr,21045,33,883214,1,2,Active Shallow Crust,0.0,89.98804,0.0,08/19/1691 +7.55376,48.31325,9224,2,20,6,28,7,3.65,27.5,fr,21046,184,883214,1,2,Active Shallow Crust,0.0,89.98804,0.0,02/20/9224 +7.55376,48.31325,8017,1,26,12,7,25,3.65,15.0,fr,21047,160,883216,1,1,Active Shallow Crust,240.0015,58.01257,0.0,01/26/8017 +7.55376,48.31325,6255,4,19,22,5,57,3.75,5.0,fr,21048,125,883224,1,3,Active Shallow Crust,0.0,89.98935,0.0,04/19/6255 +7.55376,48.31325,4647,4,3,20,52,21,3.75,5.0,fr,21049,92,883224,1,3,Active Shallow Crust,0.0,89.98935,0.0,04/03/4647 +7.55376,48.31325,2909,9,16,0,54,27,3.75,5.0,fr,21050,58,883224,1,3,Active Shallow Crust,0.0,89.98935,0.0,09/16/2909 +7.55376,48.31325,829,3,7,17,24,11,3.75,15.0,fr,21051,16,883225,1,1,Active Shallow Crust,0.0,89.98935,0.0,03/07/0829 +7.55376,48.31325,4738,4,5,13,41,42,3.75,15.0,fr,21052,94,883228,1,1,Active Shallow Crust,240.0089,58.01817,0.0,04/05/4738 +7.55376,48.31325,6106,3,21,7,55,57,3.75,5.0,fr,21053,122,883230,1,1,Active Shallow Crust,0.0,89.98922,-90.0,03/21/6106 +7.55376,48.31325,1450,2,20,21,36,47,3.75,5.0,fr,21054,28,883233,1,1,Active Shallow Crust,128.896,89.96752,0.0,02/20/1450 +7.55376,48.31325,1137,4,26,9,27,5,3.85,5.0,fr,21055,22,883236,1,2,Active Shallow Crust,0.0,89.9905,0.0,04/26/1137 +7.55376,48.31325,4269,8,29,7,31,8,3.85,5.0,fr,21056,85,883236,1,2,Active Shallow Crust,0.0,89.9905,0.0,08/29/4269 +7.55376,48.31325,5562,1,24,2,34,8,3.85,5.0,fr,21057,111,883239,1,1,Active Shallow Crust,240.01,57.99874,0.0,01/24/5562 +7.55376,48.31325,2007,8,1,2,12,41,3.85,5.0,fr,21058,40,883245,1,1,Active Shallow Crust,128.8963,89.99288,0.0,08/01/2007 +7.55376,48.31325,9589,8,11,5,10,46,3.85,27.5,fr,21059,191,883247,1,1,Active Shallow Crust,128.8963,89.99288,0.0,08/11/9589 +7.55376,48.31325,6626,3,25,10,6,42,3.95,5.0,fr,21060,132,883248,1,2,Active Shallow Crust,0.0,89.99154,0.0,03/25/6626 +7.55376,48.31325,9167,10,27,3,47,47,3.95,5.0,fr,21061,183,883248,1,2,Active Shallow Crust,0.0,89.99154,0.0,10/27/9167 +7.55376,48.31325,6019,10,25,19,46,15,3.95,5.0,fr,21062,120,883251,1,1,Active Shallow Crust,240.0197,58.00513,0.0,10/25/6019 +7.55376,48.31325,4027,12,27,15,54,26,3.95,15.0,fr,21063,80,883252,1,1,Active Shallow Crust,240.0197,58.00513,0.0,12/27/4027 +7.55376,48.31325,993,12,21,10,55,11,3.95,15.0,fr,21064,19,883255,1,1,Active Shallow Crust,0.0,89.99144,-90.0,12/21/0993 +7.55376,48.31325,5713,6,17,19,59,58,4.05,15.0,fr,21065,114,883261,1,1,Active Shallow Crust,0.0,89.98869,0.0,06/17/5713 +7.55376,48.31325,1214,4,28,1,9,34,4.05,15.0,fr,21066,24,883264,1,1,Active Shallow Crust,240.0063,58.00548,0.0,04/28/1214 +7.55376,48.31325,9547,1,12,22,26,36,4.05,5.0,fr,21067,190,883269,1,1,Active Shallow Crust,128.8907,89.99245,0.0,01/12/9547 +7.55376,48.31325,3929,1,18,4,5,13,4.15,5.0,fr,21068,78,883272,1,2,Active Shallow Crust,0.0,89.98991,0.0,01/18/3929 +7.55376,48.31325,8347,5,2,4,58,37,4.15,5.0,fr,21069,166,883272,1,2,Active Shallow Crust,0.0,89.98991,0.0,05/02/8347 +7.55376,48.31325,5410,12,31,15,6,29,4.15,15.0,fr,21070,108,883273,1,1,Active Shallow Crust,0.0,89.98991,0.0,12/31/5410 +7.55376,48.31325,9811,8,22,13,43,20,4.15,27.5,fr,21071,196,883274,1,1,Active Shallow Crust,0.0,89.98991,0.0,08/22/9811 +7.55376,48.31325,9524,1,10,6,17,19,4.25,5.0,fr,21072,190,883284,1,1,Active Shallow Crust,0.0,89.99101,0.0,01/10/9524 +7.55376,48.31325,6280,2,25,20,12,22,4.25,27.5,fr,21073,125,883286,1,1,Active Shallow Crust,0.0,89.99101,0.0,02/25/6280 +7.55376,48.31325,8419,7,19,0,12,23,4.25,5.0,fr,21074,168,883287,1,1,Active Shallow Crust,240.0084,57.994,0.0,07/19/8419 +7.55376,48.31325,9224,8,30,1,13,39,4.35,5.0,fr,21075,184,883296,1,1,Active Shallow Crust,0.0,89.98932,0.0,08/30/9224 +7.55376,48.31325,804,12,16,13,57,10,4.45,15.0,fr,21076,16,883309,1,1,Active Shallow Crust,0.0,89.99048,0.0,12/16/0804 +7.55376,48.31325,9557,3,8,4,15,9,4.45,5.0,fr,21077,191,883317,1,1,Active Shallow Crust,128.8919,89.99405,0.0,03/08/9557 +7.55376,48.31325,4904,11,2,12,17,52,4.55,5.0,fr,21078,98,883326,1,1,Active Shallow Crust,0.0,89.98927,-90.0,11/02/4904 +7.55376,48.31325,2327,12,5,12,47,36,5.05,15.0,fr,21079,46,883381,1,1,Active Shallow Crust,0.0,89.99046,0.0,12/05/2327 +7.55376,48.31325,4105,8,28,6,43,34,5.05,15.0,fr,21080,82,883387,1,1,Active Shallow Crust,0.0,89.99035,-90.0,08/28/4105 +7.55376,48.31325,6456,1,4,14,29,13,5.25,5.0,fr,21081,129,883410,1,1,Active Shallow Crust,0.0,89.99042,-90.0,01/04/6456 +7.55376,48.31325,1895,9,21,9,12,53,5.75,15.0,fr,21082,37,883465,1,1,Active Shallow Crust,0.0,89.98988,0.0,09/21/1895 +-3.44768,42.92434,5897,12,4,1,37,14,3.55,5.0,fr,21083,117,883680,1,2,Active Shallow Crust,0.0,89.98892,0.0,12/04/5897 +-3.44768,42.92434,5435,2,1,23,48,1,3.55,5.0,fr,21084,108,883680,1,2,Active Shallow Crust,0.0,89.98892,0.0,02/01/5435 +-3.44768,42.92434,9127,2,15,20,22,6,3.55,15.0,fr,21085,182,883681,1,1,Active Shallow Crust,0.0,89.98892,0.0,02/15/9127 +-3.44768,42.92434,6567,4,13,21,53,55,3.55,5.0,fr,21086,131,883683,1,1,Active Shallow Crust,240.0123,57.99797,0.0,04/13/6567 +-3.44768,42.92434,1396,12,31,18,18,23,3.55,5.0,fr,21087,27,883689,1,1,Active Shallow Crust,128.8967,89.99446,0.0,12/31/1396 +-3.44768,42.92434,2309,10,17,12,7,34,3.55,27.5,fr,21088,46,883691,1,1,Active Shallow Crust,128.8967,89.99446,0.0,10/17/2309 +-3.44768,42.92434,6450,3,6,5,16,23,3.65,5.0,fr,21089,128,883692,1,1,Active Shallow Crust,0.0,89.99013,0.0,03/06/6450 +-3.44768,42.92434,2388,4,24,0,35,1,3.65,15.0,fr,21090,47,883693,1,1,Active Shallow Crust,0.0,89.99013,0.0,04/24/2388 +-3.44768,42.92434,6097,6,23,0,7,24,3.75,15.0,fr,21091,121,883705,1,1,Active Shallow Crust,0.0,89.9912,0.0,06/23/6097 +-3.44768,42.92434,5924,7,20,23,56,40,3.85,5.0,fr,21092,118,883716,1,2,Active Shallow Crust,0.0,89.98955,0.0,07/20/5924 +-3.44768,42.92434,6560,5,13,11,33,23,3.85,5.0,fr,21093,131,883716,1,2,Active Shallow Crust,0.0,89.98955,0.0,05/13/6560 +-3.44768,42.92434,3039,2,21,13,29,15,3.95,5.0,fr,21094,60,883731,1,1,Active Shallow Crust,240.019,58.00467,0.0,02/21/3039 +-3.44768,42.92434,9017,3,24,22,5,18,3.95,27.5,fr,21095,180,883733,1,1,Active Shallow Crust,240.019,58.00467,0.0,03/24/9017 +-3.44768,42.92434,3782,10,30,10,39,26,4.05,5.0,fr,21096,75,883749,1,1,Active Shallow Crust,128.8913,89.99377,0.0,10/30/3782 +-3.44768,42.92434,4713,11,22,0,42,45,4.15,5.0,fr,21097,94,883752,1,2,Active Shallow Crust,0.0,89.99075,0.0,11/22/4713 +-3.44768,42.92434,666,3,24,23,45,1,4.15,5.0,fr,21098,13,883752,1,2,Active Shallow Crust,0.0,89.99075,0.0,03/24/0666 +-3.44768,42.92434,1968,5,22,4,2,31,4.25,5.0,fr,21099,39,883767,1,1,Active Shallow Crust,240.0068,57.99425,0.0,05/22/1968 +-3.44768,42.92434,3201,12,29,2,23,20,5.05,27.5,fr,21100,64,883865,1,1,Active Shallow Crust,240.0204,57.99733,0.0,12/29/3201 +0.89285,47.2942,6660,11,24,12,27,48,3.55,5.0,fr,21101,133,884160,1,1,Active Shallow Crust,0.0,89.98974,0.0,11/24/6660 +0.89285,47.2942,3796,12,12,4,23,44,3.55,5.0,fr,21102,75,884163,1,2,Active Shallow Crust,240.0121,57.99819,0.0,12/12/3796 +0.89285,47.2942,7502,5,12,12,11,2,3.55,5.0,fr,21103,150,884163,1,2,Active Shallow Crust,240.0121,57.99819,0.0,05/12/7502 +0.89285,47.2942,5589,4,20,22,34,42,3.75,5.0,fr,21104,111,884184,1,1,Active Shallow Crust,0.0,89.98981,0.0,04/20/5589 +0.89285,47.2942,9157,8,10,9,35,14,3.85,15.0,fr,21105,183,884197,1,1,Active Shallow Crust,0.0,89.98971,0.0,08/10/9157 +0.89285,47.2942,8946,6,2,23,18,20,3.85,5.0,fr,21106,178,884199,1,1,Active Shallow Crust,240.011,57.99786,0.0,06/02/8946 +0.89285,47.2942,3003,6,15,2,47,7,3.85,5.0,fr,21107,60,884202,1,1,Active Shallow Crust,0.0,89.9902,-90.0,06/15/3003 +0.89285,47.2942,5180,1,19,0,50,26,4.15,5.0,fr,21108,103,884241,1,1,Active Shallow Crust,128.8973,89.99379,0.0,01/19/5180 +0.89285,47.2942,4620,6,21,12,36,10,4.55,5.0,fr,21109,92,884283,1,1,Active Shallow Crust,240.0095,57.99741,0.0,06/21/4620 +6.29336,50.42046,9753,3,31,21,38,41,3.55,5.0,fr,21110,195,884640,1,4,Active Shallow Crust,0.0,89.98715,0.0,03/31/9753 +6.29336,50.42046,8599,6,4,4,17,2,3.55,5.0,fr,21111,171,884640,1,4,Active Shallow Crust,0.0,89.98715,0.0,06/04/8599 +6.29336,50.42046,4313,10,21,10,2,11,3.55,5.0,fr,21112,86,884640,1,4,Active Shallow Crust,0.0,89.98715,0.0,10/21/4313 +6.29336,50.42046,4016,11,14,20,8,21,3.55,5.0,fr,21113,80,884640,1,4,Active Shallow Crust,0.0,89.98715,0.0,11/14/4016 +6.29336,50.42046,9460,6,1,11,45,28,3.55,15.0,fr,21114,189,884641,1,1,Active Shallow Crust,0.0,89.98715,0.0,06/01/9460 +6.29336,50.42046,3882,2,1,10,50,39,3.55,5.0,fr,21115,77,884646,1,1,Active Shallow Crust,0.0,89.987,-90.0,02/01/3882 +6.29336,50.42046,6177,1,28,14,37,2,3.65,5.0,fr,21116,123,884652,1,2,Active Shallow Crust,0.0,89.98855,0.0,01/28/6177 +6.29336,50.42046,6144,11,18,5,21,29,3.65,5.0,fr,21117,122,884652,1,2,Active Shallow Crust,0.0,89.98855,0.0,11/18/6144 +6.29336,50.42046,7172,3,15,2,20,11,3.65,5.0,fr,21118,143,884658,1,1,Active Shallow Crust,0.0,89.98841,-90.0,03/15/7172 +6.29336,50.42046,9954,5,11,15,14,16,3.75,15.0,fr,21119,199,884665,1,2,Active Shallow Crust,0.0,89.98979,0.0,05/11/9954 +6.29336,50.42046,3314,4,18,12,53,37,3.75,15.0,fr,21120,66,884665,1,2,Active Shallow Crust,0.0,89.98979,0.0,04/18/3314 +6.29336,50.42046,8909,7,29,15,47,51,3.75,5.0,fr,21121,178,884667,1,1,Active Shallow Crust,240.0091,58.01779,0.0,07/29/8909 +6.29336,50.42046,9527,4,24,4,10,12,3.75,5.0,fr,21122,190,884670,1,1,Active Shallow Crust,0.0,89.98968,-90.0,04/24/9527 +6.29336,50.42046,2296,8,10,14,26,52,3.75,27.5,fr,21123,45,884675,1,1,Active Shallow Crust,128.8963,89.96756,0.0,08/10/2296 +6.29336,50.42046,7162,7,4,15,33,35,3.85,15.0,fr,21124,143,884677,1,2,Active Shallow Crust,0.0,89.99091,0.0,07/04/7162 +6.29336,50.42046,5798,10,14,0,29,50,3.85,15.0,fr,21125,115,884677,1,2,Active Shallow Crust,0.0,89.99091,0.0,10/14/5798 +6.29336,50.42046,4587,9,22,7,54,30,3.85,15.0,fr,21126,91,884680,1,1,Active Shallow Crust,240.0109,57.99786,0.0,09/22/4587 +6.29336,50.42046,5101,1,18,19,35,19,3.95,5.0,fr,21127,102,884688,1,2,Active Shallow Crust,0.0,89.99189,0.0,01/18/5101 +6.29336,50.42046,580,5,1,4,52,50,3.95,5.0,fr,21128,11,884688,1,2,Active Shallow Crust,0.0,89.99189,0.0,05/01/0580 +6.29336,50.42046,715,4,28,6,5,47,3.95,27.5,fr,21129,14,884696,1,1,Active Shallow Crust,0.0,89.9918,-90.0,04/28/0715 +6.29336,50.42046,4485,6,7,9,11,33,4.05,5.0,fr,21130,89,884700,1,2,Active Shallow Crust,0.0,89.98916,0.0,06/07/4485 +6.29336,50.42046,9437,1,4,15,13,38,4.05,5.0,fr,21131,188,884700,1,2,Active Shallow Crust,0.0,89.98916,0.0,01/04/9437 +6.29336,50.42046,2868,6,4,4,35,21,4.35,15.0,fr,21132,57,884743,1,1,Active Shallow Crust,0.0,89.98965,-90.0,06/04/2868 +6.29336,50.42046,9713,1,18,19,56,38,4.85,5.0,fr,21133,194,884796,1,1,Active Shallow Crust,0.0,89.98993,0.0,01/18/9713 +6.55048,51.67733,4691,1,9,23,21,13,3.75,5.0,fr,21134,93,885144,1,1,Active Shallow Crust,0.0,89.99007,0.0,01/09/4691 +6.55048,51.67733,9801,8,2,10,14,2,3.85,27.5,fr,21135,196,885167,1,1,Active Shallow Crust,128.8947,89.99557,0.0,08/02/9801 +6.55048,51.67733,9164,2,5,21,31,56,4.25,5.0,fr,21136,183,885207,1,1,Active Shallow Crust,240.009,57.99403,0.0,02/05/9164 +6.55048,51.67733,2578,10,6,17,42,15,4.35,5.0,fr,21137,51,885216,1,1,Active Shallow Crust,0.0,89.99004,0.0,10/06/2578 +6.55048,51.67733,4878,6,3,19,29,0,5.05,5.0,fr,21138,97,885300,1,1,Active Shallow Crust,0.0,89.98999,0.0,06/03/4878 +4.05637,47.60593,7669,6,27,12,51,47,3.65,15.0,fr,21139,153,885613,1,1,Active Shallow Crust,0.0,89.98788,0.0,06/27/7669 +4.05637,47.60593,9389,6,30,18,22,52,4.45,5.0,fr,21140,187,885708,1,1,Active Shallow Crust,0.0,89.99035,0.0,06/30/9389 +-0.1684,48.69201,672,8,19,11,15,48,3.65,5.0,fr,21141,13,886092,1,1,Active Shallow Crust,0.0,89.98999,0.0,08/19/0672 +-0.1684,48.69201,664,4,22,17,38,8,3.65,15.0,fr,21142,13,886096,1,1,Active Shallow Crust,240.0013,58.01294,0.0,04/22/0664 +-0.1684,48.69201,6477,3,21,14,11,48,3.85,5.0,fr,21143,129,886116,1,1,Active Shallow Crust,0.0,89.98998,0.0,03/21/6477 +-0.1684,48.69201,5884,6,5,5,19,3,3.85,15.0,fr,21144,117,886117,1,1,Active Shallow Crust,0.0,89.98998,0.0,06/05/5884 +-0.1684,48.69201,9430,4,21,9,45,3,3.85,5.0,fr,21145,188,886122,1,1,Active Shallow Crust,0.0,89.99002,-90.0,04/21/9430 +-0.1684,48.69201,3412,2,9,16,32,27,3.95,5.0,fr,21146,68,886128,1,1,Active Shallow Crust,0.0,89.99003,0.0,02/09/3412 +-0.1684,48.69201,4404,6,24,9,13,4,3.95,27.5,fr,21147,88,886133,1,1,Active Shallow Crust,240.0201,58.00502,0.0,06/24/4404 +-0.1684,48.69201,1413,10,20,3,30,2,4.05,15.0,fr,21148,28,886141,1,1,Active Shallow Crust,359.9999,89.99006,0.0,10/20/1413 +-0.1684,48.69201,252,5,6,7,36,36,4.45,5.0,fr,21149,5,886188,1,1,Active Shallow Crust,360.0,89.99004,0.0,05/06/0252 +-0.1684,48.69201,3888,11,5,4,51,9,4.65,5.0,fr,21150,77,886218,1,1,Active Shallow Crust,0.0,89.98997,-90.0,11/05/3888 +-0.1684,48.69201,6864,9,27,18,49,1,4.75,15.0,fr,21151,137,886225,1,1,Active Shallow Crust,0.0,89.99002,0.0,09/27/6864 +-0.1684,48.69201,5300,11,6,17,29,59,5.15,5.0,fr,21152,105,886272,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/06/5300 +-0.1684,48.69201,1853,6,15,15,56,18,5.25,5.0,fr,21153,37,886284,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/15/1853 +5.44475,45.99521,3342,3,11,21,25,19,3.55,5.0,fr,21154,66,886560,1,2,Active Shallow Crust,0.0,89.993,0.0,03/11/3342 +5.44475,45.99521,7317,11,24,3,36,58,3.55,5.0,fr,21155,146,886560,1,2,Active Shallow Crust,0.0,89.993,0.0,11/24/7317 +5.44475,45.99521,209,5,22,6,17,0,3.55,5.0,fr,21156,4,886566,1,1,Active Shallow Crust,0.0,89.99291,-90.0,05/22/0209 +5.44475,45.99521,8009,10,22,7,34,43,3.65,5.0,fr,21157,160,886572,1,2,Active Shallow Crust,0.0,89.98751,0.0,10/22/8009 +5.44475,45.99521,8027,8,18,14,47,20,3.65,5.0,fr,21158,160,886572,1,2,Active Shallow Crust,0.0,89.98751,0.0,08/18/8027 +5.44475,45.99521,3833,9,23,8,9,22,3.65,15.0,fr,21159,76,886573,1,2,Active Shallow Crust,0.0,89.98751,0.0,09/23/3833 +5.44475,45.99521,5949,8,28,6,49,14,3.65,15.0,fr,21160,118,886573,1,2,Active Shallow Crust,0.0,89.98751,0.0,08/28/5949 +5.44475,45.99521,3855,3,29,8,17,37,3.65,27.5,fr,21161,77,886583,1,1,Active Shallow Crust,128.9006,89.96352,0.0,03/29/3855 +5.44475,45.99521,9903,9,28,19,0,0,3.75,5.0,fr,21162,198,886584,1,1,Active Shallow Crust,0.0,89.98887,0.0,09/28/9903 +5.44475,45.99521,7362,3,29,0,44,15,3.85,5.0,fr,21163,147,886596,1,1,Active Shallow Crust,0.0,89.99008,0.0,03/29/7362 +5.44475,45.99521,614,8,19,6,2,14,3.85,15.0,fr,21164,12,886597,1,1,Active Shallow Crust,0.0,89.99008,0.0,08/19/0614 +5.44475,45.99521,3550,10,12,1,44,19,3.85,27.5,fr,21165,70,886598,1,1,Active Shallow Crust,0.0,89.99008,0.0,10/12/3550 +5.44475,45.99521,4143,9,12,14,33,17,4.05,15.0,fr,21166,82,886621,1,2,Active Shallow Crust,0.0,89.98818,0.0,09/12/4143 +5.44475,45.99521,8209,7,29,9,41,3,4.05,15.0,fr,21167,164,886621,1,2,Active Shallow Crust,0.0,89.98818,0.0,07/29/8209 +5.44475,45.99521,1241,4,29,8,5,0,4.05,5.0,fr,21168,24,886623,1,1,Active Shallow Crust,240.0063,58.00571,0.0,04/29/1241 +5.44475,45.99521,4901,10,7,15,25,52,4.15,5.0,fr,21169,98,886632,1,1,Active Shallow Crust,0.0,89.98946,0.0,10/07/4901 +5.44475,45.99521,9277,9,16,5,21,10,4.15,15.0,fr,21170,185,886633,1,1,Active Shallow Crust,0.0,89.98946,0.0,09/16/9277 +5.44475,45.99521,2023,3,12,11,19,24,4.25,5.0,fr,21171,40,886647,1,1,Active Shallow Crust,240.0074,57.99416,0.0,03/12/2023 +5.44475,45.99521,471,3,30,7,28,2,5.45,5.0,fr,21172,9,886788,1,1,Active Shallow Crust,0.0,89.98978,0.0,03/30/0471 +5.80536,51.82678,6987,2,21,8,39,34,3.65,5.0,fr,21173,139,887061,1,1,Active Shallow Crust,128.9003,89.9631,0.0,02/21/6987 +-3.23555,50.47208,1857,10,4,6,26,20,3.75,15.0,fr,21174,37,887551,1,1,Active Shallow Crust,0.0,89.98969,-90.0,10/04/1857 +-3.23555,50.47208,8835,3,10,13,22,43,3.75,5.0,fr,21175,176,887553,1,1,Active Shallow Crust,128.8964,89.96733,0.0,03/10/8835 +1.92134,49.06621,4352,1,28,10,1,17,3.55,5.0,fr,21176,87,888000,1,1,Active Shallow Crust,0.0,89.99009,0.0,01/28/4352 +1.92134,49.06621,2875,4,17,11,10,0,3.55,5.0,fr,21177,57,888006,1,1,Active Shallow Crust,0.0,89.98997,-90.0,04/17/2875 +1.92134,49.06621,8344,8,28,18,16,3,3.65,15.0,fr,21178,166,888013,1,2,Active Shallow Crust,0.0,89.98969,0.0,08/28/8344 +1.92134,49.06621,2653,5,31,9,43,28,3.65,15.0,fr,21179,53,888013,1,2,Active Shallow Crust,0.0,89.98969,0.0,05/31/2653 +1.92134,49.06621,5132,2,15,20,36,14,3.75,5.0,fr,21180,102,888027,1,1,Active Shallow Crust,240.0084,58.01775,0.0,02/15/5132 +1.92134,49.06621,7399,3,8,18,52,13,3.95,5.0,fr,21181,147,888048,1,1,Active Shallow Crust,0.0,89.98958,0.0,03/08/7399 +1.92134,49.06621,1465,1,14,12,37,10,4.15,5.0,fr,21182,29,888072,1,1,Active Shallow Crust,0.0,89.99007,0.0,01/14/1465 +1.92134,49.06621,8736,2,18,2,18,42,4.15,15.0,fr,21183,174,888082,1,1,Active Shallow Crust,128.8973,89.99338,0.0,02/18/8736 +1.92134,49.06621,1055,1,26,22,31,22,4.25,5.0,fr,21184,21,888090,1,1,Active Shallow Crust,0.0,89.9903,-90.0,01/26/1055 +4.04794,48.2401,6287,2,8,15,17,6,4.55,5.0,fr,21185,125,888600,1,1,Active Shallow Crust,0.0,89.98938,0.0,02/08/6287 +-2.01917,44.75231,788,3,14,21,35,45,3.95,5.0,fr,21186,15,889008,1,1,Active Shallow Crust,0.0,89.99097,0.0,03/14/0788 +4.93049,45.79577,1902,1,23,4,10,42,3.65,5.0,fr,21187,38,889452,1,1,Active Shallow Crust,0.0,89.98746,0.0,01/23/1902 +4.93049,45.79577,3370,11,16,20,23,17,3.65,5.0,fr,21188,67,889455,1,2,Active Shallow Crust,240.001,58.01345,0.0,11/16/3370 +4.93049,45.79577,4090,9,19,7,13,50,3.65,5.0,fr,21189,81,889455,1,2,Active Shallow Crust,240.001,58.01345,0.0,09/19/4090 +4.93049,45.79577,5527,10,30,0,48,6,3.75,5.0,fr,21190,110,889464,1,1,Active Shallow Crust,0.0,89.98883,0.0,10/30/5527 +4.93049,45.79577,7225,5,27,13,10,8,3.75,27.5,fr,21191,144,889466,1,1,Active Shallow Crust,0.0,89.98883,0.0,05/27/7225 +4.93049,45.79577,3007,8,7,19,38,24,3.75,5.0,fr,21192,60,889470,1,1,Active Shallow Crust,0.0,89.9887,-90.0,08/07/3007 +4.93049,45.79577,282,5,17,4,29,21,3.75,5.0,fr,21193,5,889473,1,1,Active Shallow Crust,128.8958,89.96748,0.0,05/17/0282 +4.93049,45.79577,3291,8,5,15,1,58,3.85,5.0,fr,21194,65,889476,1,1,Active Shallow Crust,0.0,89.99004,0.0,08/05/3291 +4.93049,45.79577,4062,7,13,0,34,18,3.85,5.0,fr,21195,81,889479,1,1,Active Shallow Crust,240.0111,57.99773,0.0,07/13/4062 +4.93049,45.79577,2359,12,18,21,28,48,3.95,5.0,fr,21196,47,889488,1,1,Active Shallow Crust,0.0,89.99113,0.0,12/18/2359 +4.93049,45.79577,3687,4,18,2,17,41,4.05,5.0,fr,21197,73,889500,1,1,Active Shallow Crust,0.0,89.98814,0.0,04/18/3687 +4.93049,45.79577,9752,7,19,2,34,53,4.15,5.0,fr,21198,195,889512,1,1,Active Shallow Crust,0.0,89.98943,0.0,07/19/9752 +4.93049,45.79577,557,6,23,10,26,9,4.35,15.0,fr,21199,11,889537,1,1,Active Shallow Crust,0.0,89.9888,0.0,06/23/0557 +4.93049,45.79577,4935,3,18,10,50,15,4.45,5.0,fr,21200,98,889548,1,1,Active Shallow Crust,0.0,89.99002,0.0,03/18/4935 +4.93049,45.79577,7820,9,20,19,4,32,4.45,15.0,fr,21201,156,889549,1,1,Active Shallow Crust,0.0,89.99002,0.0,09/20/7820 +4.82991,51.33281,2838,12,20,4,4,52,3.55,5.0,fr,21202,56,889920,1,1,Active Shallow Crust,0.0,89.9874,0.0,12/20/2838 +4.82991,51.33281,9606,10,17,11,50,5,3.75,27.5,fr,21203,192,889946,1,1,Active Shallow Crust,0.0,89.98999,0.0,10/17/9606 +4.82991,51.33281,2941,9,23,5,22,8,3.85,15.0,fr,21204,58,889957,1,1,Active Shallow Crust,0.0,89.99108,0.0,09/23/2941 +4.82991,51.33281,7857,5,4,20,21,35,3.95,5.0,fr,21205,157,889968,1,1,Active Shallow Crust,0.0,89.98808,0.0,05/04/7857 +4.82991,51.33281,2935,8,17,15,27,31,4.15,5.0,fr,21206,58,889995,1,1,Active Shallow Crust,240.0099,57.99728,0.0,08/17/2935 +4.82991,51.33281,9539,7,19,5,24,15,5.05,5.0,fr,21207,190,890109,1,1,Active Shallow Crust,128.883,89.99055,0.0,07/19/9539 +0.12511,48.84263,3127,9,8,21,3,34,3.55,5.0,fr,21208,62,890400,1,1,Active Shallow Crust,0.0,89.99004,0.0,09/08/3127 +0.12511,48.84263,3233,7,20,8,45,34,3.55,15.0,fr,21209,64,890401,1,1,Active Shallow Crust,0.0,89.99004,0.0,07/20/3233 +0.12511,48.84263,934,4,1,9,32,10,3.65,5.0,fr,21210,18,890412,1,1,Active Shallow Crust,0.0,89.99002,0.0,04/01/0934 +0.12511,48.84263,9409,4,7,22,26,57,3.65,15.0,fr,21211,188,890413,1,2,Active Shallow Crust,0.0,89.99002,0.0,04/07/9409 +0.12511,48.84263,4662,11,8,13,57,31,3.65,15.0,fr,21212,93,890413,1,2,Active Shallow Crust,0.0,89.99002,0.0,11/08/4662 +0.12511,48.84263,9923,8,5,14,22,27,3.95,5.0,fr,21213,198,890448,1,1,Active Shallow Crust,0.0,89.99005,0.0,08/05/9923 +0.12511,48.84263,9928,6,9,6,37,56,4.05,5.0,fr,21214,198,890460,1,1,Active Shallow Crust,0.0,89.98997,0.0,06/09/9928 +0.12511,48.84263,1311,9,30,19,52,44,4.05,5.0,fr,21215,26,890469,1,1,Active Shallow Crust,128.8902,89.99371,0.0,09/30/1311 +0.12511,48.84263,690,10,7,4,3,29,4.45,5.0,fr,21216,13,890508,1,1,Active Shallow Crust,0.0,89.98999,0.0,10/07/0690 +0.12511,48.84263,3703,7,4,6,36,58,4.65,15.0,fr,21217,74,890536,1,1,Active Shallow Crust,240.0117,57.99438,0.0,07/04/3703 +0.12511,48.84263,6706,7,25,7,53,21,5.25,5.0,fr,21218,134,890610,1,1,Active Shallow Crust,360.0,89.99001,-90.0,07/25/6706 +7.92007,47.33025,5322,4,22,21,52,55,3.55,5.0,fr,21219,106,890880,1,6,Active Shallow Crust,0.0,89.99316,0.0,04/22/5322 +7.92007,47.33025,3104,3,27,23,28,23,3.55,5.0,fr,21220,62,890880,1,6,Active Shallow Crust,0.0,89.99316,0.0,03/27/3104 +7.92007,47.33025,6549,8,8,13,0,55,3.55,5.0,fr,21221,130,890880,1,6,Active Shallow Crust,0.0,89.99316,0.0,08/08/6549 +7.92007,47.33025,2085,7,2,14,41,57,3.55,5.0,fr,21222,41,890880,1,6,Active Shallow Crust,0.0,89.99316,0.0,07/02/2085 +7.92007,47.33025,301,4,5,16,2,1,3.55,5.0,fr,21223,6,890880,1,6,Active Shallow Crust,0.0,89.99316,0.0,04/05/0301 +7.92007,47.33025,8234,4,3,19,3,29,3.55,5.0,fr,21224,164,890880,1,6,Active Shallow Crust,0.0,89.99316,0.0,04/03/8234 +7.92007,47.33025,9032,1,5,15,17,41,3.55,15.0,fr,21225,180,890881,1,2,Active Shallow Crust,0.0,89.99316,0.0,01/05/9032 +7.92007,47.33025,1957,11,24,8,45,51,3.55,15.0,fr,21226,39,890881,1,2,Active Shallow Crust,0.0,89.99316,0.0,11/24/1957 +7.92007,47.33025,9887,7,29,20,6,32,3.55,5.0,fr,21227,197,890886,1,1,Active Shallow Crust,0.0,89.99309,-90.0,07/29/9887 +7.92007,47.33025,6756,1,22,10,0,49,3.65,5.0,fr,21228,135,890892,1,6,Active Shallow Crust,0.0,89.98782,0.0,01/22/6756 +7.92007,47.33025,1991,10,1,3,28,46,3.65,5.0,fr,21229,39,890892,1,6,Active Shallow Crust,0.0,89.98782,0.0,10/01/1991 +7.92007,47.33025,6245,10,7,1,56,37,3.65,5.0,fr,21230,124,890892,1,6,Active Shallow Crust,0.0,89.98782,0.0,10/07/6245 +7.92007,47.33025,6182,4,10,1,12,23,3.65,5.0,fr,21231,123,890892,1,6,Active Shallow Crust,0.0,89.98782,0.0,04/10/6182 +7.92007,47.33025,2120,11,16,14,54,51,3.65,5.0,fr,21232,42,890892,1,6,Active Shallow Crust,0.0,89.98782,0.0,11/16/2120 +7.92007,47.33025,7562,3,1,7,25,37,3.65,5.0,fr,21233,151,890892,1,6,Active Shallow Crust,0.0,89.98782,0.0,03/01/7562 +7.92007,47.33025,1040,11,17,15,23,54,3.65,15.0,fr,21234,20,890893,1,3,Active Shallow Crust,0.0,89.98782,0.0,11/17/1040 +7.92007,47.33025,4345,3,4,7,27,39,3.65,15.0,fr,21235,86,890893,1,3,Active Shallow Crust,0.0,89.98782,0.0,03/04/4345 +7.92007,47.33025,6045,12,16,4,51,17,3.65,15.0,fr,21236,120,890893,1,3,Active Shallow Crust,0.0,89.98782,0.0,12/16/6045 +7.92007,47.33025,9033,1,9,21,5,16,3.65,5.0,fr,21237,180,890901,1,3,Active Shallow Crust,128.9007,89.96354,0.0,01/09/9033 +7.92007,47.33025,8332,4,8,10,8,51,3.65,5.0,fr,21238,166,890901,1,3,Active Shallow Crust,128.9007,89.96354,0.0,04/08/8332 +7.92007,47.33025,3252,1,26,4,36,46,3.65,5.0,fr,21239,65,890901,1,3,Active Shallow Crust,128.9007,89.96354,0.0,01/26/3252 +7.92007,47.33025,1540,8,19,7,26,28,3.75,5.0,fr,21240,30,890904,1,1,Active Shallow Crust,0.0,89.98914,0.0,08/19/1540 +7.92007,47.33025,3330,1,22,15,58,48,3.75,15.0,fr,21241,66,890908,1,2,Active Shallow Crust,240.008,58.01712,0.0,01/22/3330 +7.92007,47.33025,9256,12,17,5,36,14,3.75,15.0,fr,21242,185,890908,1,2,Active Shallow Crust,240.008,58.01712,0.0,12/17/9256 +7.92007,47.33025,7220,6,10,5,53,54,3.75,5.0,fr,21243,144,890913,1,1,Active Shallow Crust,128.896,89.96751,0.0,06/10/7220 +7.92007,47.33025,643,7,17,6,30,9,3.85,27.5,fr,21244,12,890918,1,1,Active Shallow Crust,0.0,89.99033,0.0,07/17/0643 +7.92007,47.33025,3509,10,22,17,43,14,3.85,5.0,fr,21245,70,890919,1,1,Active Shallow Crust,240.01,57.99776,0.0,10/22/3509 +7.92007,47.33025,6064,12,21,2,55,37,3.85,15.0,fr,21246,121,890920,1,1,Active Shallow Crust,240.01,57.99776,0.0,12/21/6064 +7.92007,47.33025,9872,2,16,20,51,16,3.95,5.0,fr,21247,197,890928,1,3,Active Shallow Crust,0.0,89.99138,0.0,02/16/9872 +7.92007,47.33025,8235,4,22,13,19,21,3.95,5.0,fr,21248,164,890928,1,3,Active Shallow Crust,0.0,89.99138,0.0,04/22/8235 +7.92007,47.33025,4648,11,9,16,20,19,3.95,5.0,fr,21249,92,890928,1,3,Active Shallow Crust,0.0,89.99138,0.0,11/09/4648 +7.92007,47.33025,6333,3,28,9,28,14,3.95,5.0,fr,21250,126,890931,1,2,Active Shallow Crust,240.0205,58.00458,0.0,03/28/6333 +7.92007,47.33025,6452,9,5,15,23,59,3.95,5.0,fr,21251,129,890931,1,2,Active Shallow Crust,240.0205,58.00458,0.0,09/05/6452 +7.92007,47.33025,2948,7,2,19,39,50,3.95,5.0,fr,21252,58,890937,1,1,Active Shallow Crust,128.8993,89.99353,0.0,07/02/2948 +7.92007,47.33025,103,2,14,21,3,57,4.05,5.0,fr,21253,2,890940,1,3,Active Shallow Crust,0.0,89.98847,0.0,02/14/0103 +7.92007,47.33025,4748,11,17,18,12,57,4.05,5.0,fr,21254,94,890940,1,3,Active Shallow Crust,0.0,89.98847,0.0,11/17/4748 +7.92007,47.33025,9845,12,31,11,35,54,4.05,5.0,fr,21255,196,890940,1,3,Active Shallow Crust,0.0,89.98847,0.0,12/31/9845 +7.92007,47.33025,3518,6,13,21,47,18,4.05,5.0,fr,21256,70,890943,1,1,Active Shallow Crust,240.0057,58.00629,0.0,06/13/3518 +7.92007,47.33025,7033,9,13,13,44,19,4.15,5.0,fr,21257,140,890952,1,3,Active Shallow Crust,0.0,89.98972,0.0,09/13/7033 +7.92007,47.33025,7407,12,27,10,55,11,4.15,5.0,fr,21258,148,890952,1,3,Active Shallow Crust,0.0,89.98972,0.0,12/27/7407 +7.92007,47.33025,5278,3,13,0,9,15,4.15,5.0,fr,21259,105,890952,1,3,Active Shallow Crust,0.0,89.98972,0.0,03/13/5278 +7.92007,47.33025,4285,11,30,9,20,33,4.15,15.0,fr,21260,85,890953,1,2,Active Shallow Crust,0.0,89.98972,0.0,11/30/4285 +7.92007,47.33025,2430,6,18,10,49,54,4.15,15.0,fr,21261,48,890953,1,2,Active Shallow Crust,0.0,89.98972,0.0,06/18/2430 +7.92007,47.33025,7970,3,24,3,44,43,4.15,27.5,fr,21262,159,890954,1,1,Active Shallow Crust,0.0,89.98972,0.0,03/24/7970 +7.92007,47.33025,4755,3,31,17,47,40,4.15,15.0,fr,21263,95,890956,1,1,Active Shallow Crust,240.0086,57.99688,0.0,03/31/4755 +7.92007,47.33025,4086,4,1,10,15,19,4.15,5.0,fr,21264,81,890961,1,1,Active Shallow Crust,128.8976,89.99315,0.0,04/01/4086 +7.92007,47.33025,2788,9,22,7,53,23,4.35,5.0,fr,21265,55,890976,1,2,Active Shallow Crust,0.0,89.98911,0.0,09/22/2788 +7.92007,47.33025,4441,11,21,6,50,35,4.35,5.0,fr,21266,88,890976,1,2,Active Shallow Crust,0.0,89.98911,0.0,11/21/4441 +7.92007,47.33025,155,8,31,16,52,57,4.45,5.0,fr,21267,3,890988,1,1,Active Shallow Crust,0.0,89.9903,0.0,08/31/0155 +7.92007,47.33025,8370,1,26,5,46,29,4.55,5.0,fr,21268,167,891006,1,1,Active Shallow Crust,0.0,89.98907,-90.0,01/26/8370 +7.92007,47.33025,6448,12,27,9,30,19,4.95,15.0,fr,21269,128,891049,1,1,Active Shallow Crust,0.0,89.99046,0.0,12/27/6448 +7.92007,47.33025,545,11,25,11,55,24,5.15,5.0,fr,21270,10,891072,1,1,Active Shallow Crust,0.0,89.99025,0.0,11/25/0545 +-4.76236,48.30986,480,1,4,20,58,4,3.55,5.0,fr,21271,9,891360,1,3,Active Shallow Crust,0.0,89.99329,0.0,01/04/0480 +-4.76236,48.30986,5057,7,21,1,13,52,3.55,5.0,fr,21272,101,891360,1,3,Active Shallow Crust,0.0,89.99329,0.0,07/21/5057 +-4.76236,48.30986,8607,3,5,12,17,52,3.55,5.0,fr,21273,172,891360,1,3,Active Shallow Crust,0.0,89.99329,0.0,03/05/8607 +-4.76236,48.30986,4026,11,11,12,14,57,3.75,5.0,fr,21274,80,891384,1,2,Active Shallow Crust,0.0,89.98934,0.0,11/11/4026 +-4.76236,48.30986,9588,7,2,4,0,36,3.75,5.0,fr,21275,191,891384,1,2,Active Shallow Crust,0.0,89.98934,0.0,07/02/9588 +-4.76236,48.30986,8933,9,27,21,32,14,3.75,5.0,fr,21276,178,891387,1,1,Active Shallow Crust,240.0079,58.01774,0.0,09/27/8933 +-4.76236,48.30986,2077,3,2,5,48,20,3.85,15.0,fr,21277,41,891397,1,1,Active Shallow Crust,0.0,89.9905,0.0,03/02/2077 +-4.76236,48.30986,496,3,25,15,31,16,4.25,15.0,fr,21278,9,891454,1,1,Active Shallow Crust,128.8936,89.98101,0.0,03/25/0496 +-4.76236,48.30986,6843,2,28,17,10,0,4.45,15.0,fr,21279,136,891469,1,1,Active Shallow Crust,0.0,89.99048,0.0,02/28/6843 +-4.76236,48.30986,1486,10,16,16,58,37,4.45,5.0,fr,21280,29,891471,1,1,Active Shallow Crust,240.0058,57.9951,0.0,10/16/1486 +-4.76236,48.30986,3439,1,3,19,37,36,4.95,15.0,fr,21281,68,891529,1,1,Active Shallow Crust,0.0,89.99063,0.0,01/03/3439 +-1.7228,50.84386,2185,9,6,14,15,29,3.55,15.0,fr,21282,43,891841,1,1,Active Shallow Crust,0.0,89.99045,0.0,09/06/2185 +-1.7228,50.84386,6648,6,20,14,54,34,3.65,5.0,fr,21283,132,891852,1,1,Active Shallow Crust,0.0,89.99007,0.0,06/20/6648 +-1.7228,50.84386,1371,6,4,14,53,19,3.85,15.0,fr,21284,27,891880,1,1,Active Shallow Crust,240.0116,57.99776,0.0,06/04/1371 +-1.29701,46.59522,3123,8,5,3,3,59,3.55,5.0,fr,21285,62,892320,1,2,Active Shallow Crust,0.0,89.98961,0.0,08/05/3123 +-1.29701,46.59522,9962,11,21,8,49,3,3.55,5.0,fr,21286,199,892320,1,2,Active Shallow Crust,0.0,89.98961,0.0,11/21/9962 +-1.29701,46.59522,5235,5,7,11,55,49,3.55,15.0,fr,21287,104,892321,1,1,Active Shallow Crust,0.0,89.98961,0.0,05/07/5235 +-1.29701,46.59522,5600,9,7,13,13,23,3.55,5.0,fr,21288,111,892326,1,1,Active Shallow Crust,0.0,89.98949,-90.0,09/07/5600 +-1.29701,46.59522,9603,11,30,0,40,33,3.65,15.0,fr,21289,192,892333,1,1,Active Shallow Crust,0.0,89.99074,0.0,11/30/9603 +-1.29701,46.59522,4857,5,28,9,34,35,3.65,5.0,fr,21290,97,892335,1,2,Active Shallow Crust,240.001,58.01281,0.0,05/28/4857 +-1.29701,46.59522,2886,2,17,14,52,13,3.65,5.0,fr,21291,57,892335,1,2,Active Shallow Crust,240.001,58.01281,0.0,02/17/2886 +-1.29701,46.59522,9559,6,6,10,45,29,3.65,15.0,fr,21292,191,892339,1,1,Active Shallow Crust,0.0,89.99063,-90.0,06/06/9559 +-1.29701,46.59522,491,9,4,0,7,44,3.75,15.0,fr,21293,9,892345,1,1,Active Shallow Crust,0.0,89.99036,0.0,09/04/0491 +-1.29701,46.59522,43,3,2,7,45,2,3.75,5.0,fr,21294,0,892347,1,1,Active Shallow Crust,240.0085,58.01762,0.0,03/02/0043 +-1.29701,46.59522,4904,10,6,20,47,21,3.75,15.0,fr,21295,98,892351,1,1,Active Shallow Crust,0.0,89.99026,-90.0,10/06/4904 +-1.29701,46.59522,8461,4,7,8,38,16,3.85,5.0,fr,21296,169,892356,1,2,Active Shallow Crust,0.0,89.99019,0.0,04/07/8461 +-1.29701,46.59522,8000,10,2,21,47,33,3.85,5.0,fr,21297,159,892356,1,2,Active Shallow Crust,0.0,89.99019,0.0,10/02/8000 +-1.29701,46.59522,3420,11,18,2,52,11,3.85,15.0,fr,21298,68,892357,1,1,Active Shallow Crust,0.0,89.99019,0.0,11/18/3420 +-1.29701,46.59522,9850,8,10,0,33,16,3.85,27.5,fr,21299,196,892358,1,1,Active Shallow Crust,0.0,89.99019,0.0,08/10/9850 +-1.29701,46.59522,5853,6,27,9,53,4,3.85,5.0,fr,21300,117,892365,1,1,Active Shallow Crust,128.8955,89.99387,0.0,06/27/5853 +-1.29701,46.59522,2301,7,7,5,58,17,3.95,5.0,fr,21301,46,892368,1,1,Active Shallow Crust,0.0,89.99017,0.0,07/07/2301 +-1.29701,46.59522,187,7,9,18,46,4,3.95,15.0,fr,21302,3,892375,1,1,Active Shallow Crust,0.0,89.99005,-90.0,07/09/0187 +-1.29701,46.59522,633,4,19,3,0,58,4.05,5.0,fr,21303,12,892380,1,1,Active Shallow Crust,0.0,89.99026,0.0,04/19/0633 +-1.29701,46.59522,3734,12,19,18,11,10,4.05,15.0,fr,21304,74,892390,1,1,Active Shallow Crust,128.8906,89.99367,0.0,12/19/3734 +-1.29701,46.59522,2000,6,24,6,30,6,4.15,5.0,fr,21305,39,892392,1,1,Active Shallow Crust,0.0,89.98958,0.0,06/24/2000 +-1.29701,46.59522,8793,12,2,11,47,4,4.35,15.0,fr,21306,175,892417,1,1,Active Shallow Crust,359.9997,89.99034,0.0,12/02/8793 +-1.29701,46.59522,7660,9,25,20,29,5,4.45,15.0,fr,21307,153,892429,1,1,Active Shallow Crust,0.0,89.99017,0.0,09/25/7660 +-1.29701,46.59522,420,3,23,21,38,23,4.45,5.0,fr,21308,8,892431,1,1,Active Shallow Crust,240.0054,57.99466,0.0,03/23/0420 +-1.29701,46.59522,4057,8,24,4,15,33,4.85,5.0,fr,21309,81,892476,1,1,Active Shallow Crust,0.0,89.98991,0.0,08/24/4057 +-1.29701,46.59522,4719,7,25,18,40,17,4.95,5.0,fr,21310,94,892494,1,1,Active Shallow Crust,0.0,89.98986,-90.0,07/25/4719 +-1.29701,46.59522,4476,4,12,18,13,32,5.65,27.5,fr,21311,89,892574,1,1,Active Shallow Crust,0.0,89.98996,0.0,04/12/4476 +-1.29701,46.59522,8232,10,30,19,20,36,6.95,15.09976,fr,21312,164,892729,1,1,Active Shallow Crust,360.0,89.98999,0.0,10/30/8232 +6.80315,44.98725,6279,3,19,20,23,10,3.55,15.0,fr,21313,125,892801,1,1,Active Shallow Crust,0.0,89.99287,0.0,03/19/6279 +6.80315,44.98725,4874,7,6,6,42,37,3.65,5.0,fr,21314,97,892812,1,2,Active Shallow Crust,0.0,89.98729,0.0,07/06/4874 +6.80315,44.98725,7400,10,30,13,0,16,3.65,5.0,fr,21315,147,892812,1,2,Active Shallow Crust,0.0,89.98729,0.0,10/30/7400 +6.80315,44.98725,5980,9,24,8,35,40,3.65,15.0,fr,21316,119,892813,1,1,Active Shallow Crust,0.0,89.98729,0.0,09/24/5980 +6.80315,44.98725,679,12,1,4,49,29,3.65,27.5,fr,21317,13,892814,1,1,Active Shallow Crust,0.0,89.98729,0.0,12/01/0679 +6.80315,44.98725,3266,10,15,17,10,35,3.65,15.0,fr,21318,65,892822,1,1,Active Shallow Crust,128.8999,89.96349,0.0,10/15/3266 +6.80315,44.98725,4399,3,29,8,24,19,3.75,5.0,fr,21319,87,892824,1,1,Active Shallow Crust,0.0,89.98867,0.0,03/29/4399 +6.80315,44.98725,431,10,22,4,12,49,3.85,27.5,fr,21320,8,892838,1,1,Active Shallow Crust,0.0,89.9899,0.0,10/22/0431 +6.80315,44.98725,2303,9,19,21,15,1,3.85,15.0,fr,21321,46,892840,1,1,Active Shallow Crust,240.0112,57.99811,0.0,09/19/2303 +6.80315,44.98725,9161,8,14,15,28,48,3.95,5.0,fr,21322,183,892854,1,1,Active Shallow Crust,0.0,89.9909,-90.0,08/14/9161 +6.80315,44.98725,3373,12,24,8,18,58,3.95,15.0,fr,21323,67,892858,1,1,Active Shallow Crust,128.9018,89.99325,0.0,12/24/3373 +6.80315,44.98725,2161,3,25,19,41,46,4.05,15.0,fr,21324,43,892864,1,1,Active Shallow Crust,240.006,58.00592,0.0,03/25/2161 +6.80315,44.98725,2462,8,13,10,14,12,4.15,15.0,fr,21325,49,892873,1,1,Active Shallow Crust,0.0,89.98927,0.0,08/13/2462 +6.80315,44.98725,8535,12,30,13,18,33,4.55,27.5,fr,21326,170,892922,1,1,Active Shallow Crust,0.0,89.99097,0.0,12/30/8535 +6.80315,44.98725,2474,4,29,2,30,33,4.65,27.5,fr,21327,49,892934,1,1,Active Shallow Crust,0.0,89.98995,0.0,04/29/2474 +6.80315,44.98725,6688,6,5,19,11,39,5.25,5.0,fr,21328,133,893004,1,1,Active Shallow Crust,0.0,89.98992,0.0,06/05/6688 +6.80315,44.98725,3988,12,2,23,32,48,5.35,15.0,fr,21329,79,893023,1,1,Active Shallow Crust,0.0,89.99001,-90.0,12/02/3988 +7.30887,47.64686,4310,10,15,6,5,43,3.55,5.0,fr,21330,86,893760,1,2,Active Shallow Crust,0.0,89.99321,0.0,10/15/4310 +7.30887,47.64686,5310,2,16,22,37,15,3.55,5.0,fr,21331,106,893760,1,2,Active Shallow Crust,0.0,89.99321,0.0,02/16/5310 +7.30887,47.64686,9734,8,7,10,41,6,3.55,15.0,fr,21332,194,893761,1,1,Active Shallow Crust,0.0,89.99321,0.0,08/07/9734 +7.30887,47.64686,6594,9,28,16,57,57,3.55,15.0,fr,21333,131,893764,1,1,Active Shallow Crust,240.0116,57.99857,0.0,09/28/6594 +7.30887,47.64686,4583,7,22,17,50,16,3.55,5.0,fr,21334,91,893766,1,1,Active Shallow Crust,0.0,89.99313,-90.0,07/22/4583 +7.30887,47.64686,4571,8,6,18,55,38,3.55,5.0,fr,21335,91,893769,1,1,Active Shallow Crust,128.8959,89.99321,0.0,08/06/4571 +7.30887,47.64686,6037,7,28,16,52,17,3.65,5.0,fr,21336,120,893772,1,4,Active Shallow Crust,0.0,89.98789,0.0,07/28/6037 +7.30887,47.64686,7554,11,17,8,22,13,3.65,5.0,fr,21337,151,893772,1,4,Active Shallow Crust,0.0,89.98789,0.0,11/17/7554 +7.30887,47.64686,4831,10,31,13,15,43,3.65,5.0,fr,21338,96,893772,1,4,Active Shallow Crust,0.0,89.98789,0.0,10/31/4831 +7.30887,47.64686,5132,4,1,20,41,1,3.65,5.0,fr,21339,102,893772,1,4,Active Shallow Crust,0.0,89.98789,0.0,04/01/5132 +7.30887,47.64686,205,1,6,10,56,11,3.65,15.0,fr,21340,4,893773,1,2,Active Shallow Crust,0.0,89.98789,0.0,01/06/0205 +7.30887,47.64686,1732,3,31,14,35,13,3.65,15.0,fr,21341,34,893773,1,2,Active Shallow Crust,0.0,89.98789,0.0,03/31/1732 +7.30887,47.64686,8207,7,6,3,16,11,3.65,27.5,fr,21342,164,893774,1,2,Active Shallow Crust,0.0,89.98789,0.0,07/06/8207 +7.30887,47.64686,4778,11,4,18,17,31,3.65,27.5,fr,21343,95,893774,1,2,Active Shallow Crust,0.0,89.98789,0.0,11/04/4778 +7.30887,47.64686,7626,11,8,8,3,15,3.65,5.0,fr,21344,152,893775,1,1,Active Shallow Crust,240.0014,58.01237,0.0,11/08/7626 +7.30887,47.64686,6892,7,29,1,28,19,3.65,15.0,fr,21345,137,893776,1,1,Active Shallow Crust,240.0014,58.01237,0.0,07/29/6892 +7.30887,47.64686,6681,11,9,7,58,38,3.65,15.0,fr,21346,133,893782,1,1,Active Shallow Crust,128.8998,89.96355,0.0,11/09/6681 +7.30887,47.64686,4600,3,22,6,50,20,3.75,5.0,fr,21347,91,893784,1,2,Active Shallow Crust,0.0,89.9892,0.0,03/22/4600 +7.30887,47.64686,146,1,10,17,19,55,3.75,5.0,fr,21348,2,893784,1,2,Active Shallow Crust,0.0,89.9892,0.0,01/10/0146 +7.30887,47.64686,7985,10,24,18,2,14,3.75,27.5,fr,21349,159,893786,1,1,Active Shallow Crust,0.0,89.9892,0.0,10/24/7985 +7.30887,47.64686,6230,9,8,17,39,43,3.75,15.0,fr,21350,124,893791,1,1,Active Shallow Crust,0.0,89.98908,-90.0,09/08/6230 +7.30887,47.64686,5326,12,2,14,56,18,3.75,5.0,fr,21351,106,893793,1,3,Active Shallow Crust,128.8965,89.96751,0.0,12/02/5326 +7.30887,47.64686,6493,6,20,10,13,57,3.75,5.0,fr,21352,129,893793,1,3,Active Shallow Crust,128.8965,89.96751,0.0,06/20/6493 +7.30887,47.64686,1747,12,17,11,27,28,3.75,5.0,fr,21353,34,893793,1,3,Active Shallow Crust,128.8965,89.96751,0.0,12/17/1747 +7.30887,47.64686,4624,7,1,2,47,16,3.75,15.0,fr,21354,92,893794,1,1,Active Shallow Crust,128.8965,89.96751,0.0,07/01/4624 +7.30887,47.64686,8690,1,14,3,43,8,3.85,5.0,fr,21355,173,893796,1,2,Active Shallow Crust,0.0,89.99038,0.0,01/14/8690 +7.30887,47.64686,740,1,22,20,41,36,3.85,5.0,fr,21356,14,893796,1,2,Active Shallow Crust,0.0,89.99038,0.0,01/22/0740 +7.30887,47.64686,2587,4,23,17,24,4,3.85,15.0,fr,21357,51,893797,1,1,Active Shallow Crust,0.0,89.99038,0.0,04/23/2587 +7.30887,47.64686,8278,7,5,11,1,50,3.85,15.0,fr,21358,165,893803,1,1,Active Shallow Crust,0.0,89.99027,-90.0,07/05/8278 +7.30887,47.64686,7054,11,24,15,37,2,3.85,5.0,fr,21359,141,893805,1,1,Active Shallow Crust,128.895,89.99279,0.0,11/24/7054 +7.30887,47.64686,9905,11,9,11,13,8,3.95,5.0,fr,21360,198,893808,1,2,Active Shallow Crust,0.0,89.99142,0.0,11/09/9905 +7.30887,47.64686,2470,8,20,6,5,10,3.95,5.0,fr,21361,49,893808,1,2,Active Shallow Crust,0.0,89.99142,0.0,08/20/2470 +7.30887,47.64686,9991,10,17,11,47,34,3.95,15.0,fr,21362,199,893809,1,1,Active Shallow Crust,0.0,89.99142,0.0,10/17/9991 +7.30887,47.64686,6515,9,6,3,23,46,3.95,5.0,fr,21363,130,893817,1,2,Active Shallow Crust,128.9006,89.99357,0.0,09/06/6515 +7.30887,47.64686,6060,1,1,15,35,12,3.95,5.0,fr,21364,121,893817,1,2,Active Shallow Crust,128.9006,89.99357,0.0,01/01/6060 +7.30887,47.64686,2772,4,18,15,16,17,4.05,5.0,fr,21365,55,893820,1,2,Active Shallow Crust,0.0,89.98854,0.0,04/18/2772 +7.30887,47.64686,4635,4,28,16,27,15,4.05,5.0,fr,21366,92,893820,1,2,Active Shallow Crust,0.0,89.98854,0.0,04/28/4635 +7.30887,47.64686,1794,3,11,19,45,1,4.05,15.0,fr,21367,35,893821,1,2,Active Shallow Crust,0.0,89.98854,0.0,03/11/1794 +7.30887,47.64686,5088,7,4,8,34,5,4.05,15.0,fr,21368,101,893821,1,2,Active Shallow Crust,0.0,89.98854,0.0,07/04/5088 +7.30887,47.64686,5504,1,20,13,1,24,4.05,15.0,fr,21369,110,893830,1,1,Active Shallow Crust,128.8904,89.99427,0.0,01/20/5504 +7.30887,47.64686,7127,9,6,4,38,20,4.15,5.0,fr,21370,142,893832,1,1,Active Shallow Crust,0.0,89.98978,0.0,09/06/7127 +7.30887,47.64686,4821,8,8,17,20,31,4.15,5.0,fr,21371,96,893835,1,1,Active Shallow Crust,240.0085,57.99728,0.0,08/08/4821 +7.30887,47.64686,7084,2,19,11,40,39,4.25,5.0,fr,21372,141,893844,1,2,Active Shallow Crust,0.0,89.9909,0.0,02/19/7084 +7.30887,47.64686,2132,2,15,21,51,22,4.25,5.0,fr,21373,42,893844,1,2,Active Shallow Crust,0.0,89.9909,0.0,02/15/2132 +7.30887,47.64686,6109,8,22,6,2,41,4.25,5.0,fr,21374,122,893847,1,2,Active Shallow Crust,240.0074,57.99464,0.0,08/22/6109 +7.30887,47.64686,5100,11,19,1,56,1,4.25,5.0,fr,21375,101,893847,1,2,Active Shallow Crust,240.0074,57.99464,0.0,11/19/5100 +7.30887,47.64686,3314,1,2,17,6,20,4.45,5.0,fr,21376,66,893871,1,1,Active Shallow Crust,240.0056,57.99469,0.0,01/02/3314 +7.30887,47.64686,2227,7,29,2,0,49,4.45,5.0,fr,21377,44,893877,1,2,Active Shallow Crust,128.8915,89.99397,0.0,07/29/2227 +7.30887,47.64686,7207,9,28,14,48,25,4.45,5.0,fr,21378,144,893877,1,2,Active Shallow Crust,128.8915,89.99397,0.0,09/28/7207 +7.30887,47.64686,4306,12,4,10,45,43,4.55,5.0,fr,21379,86,893880,1,1,Active Shallow Crust,0.0,89.98926,0.0,12/04/4306 +7.30887,47.64686,8204,3,4,9,34,37,4.55,27.5,fr,21380,164,893882,1,1,Active Shallow Crust,0.0,89.98926,0.0,03/04/8204 +7.30887,47.64686,1723,7,12,19,34,32,4.95,5.0,fr,21381,34,893928,1,1,Active Shallow Crust,0.0,89.99051,0.0,07/12/1723 +7.30887,47.64686,8302,6,18,20,48,12,5.05,15.0,fr,21382,166,893941,1,1,Active Shallow Crust,0.0,89.99033,0.0,06/18/8302 +7.30887,47.64686,6594,7,12,18,15,3,5.15,27.5,fr,21383,131,893960,1,1,Active Shallow Crust,0.0,89.9902,-90.0,07/12/6594 +7.30887,47.64686,138,7,27,12,0,52,5.25,5.0,fr,21384,2,893964,1,1,Active Shallow Crust,0.0,89.9904,0.0,07/27/0138 +7.30887,47.64686,9777,10,19,15,1,40,5.35,5.0,fr,21385,195,893982,1,1,Active Shallow Crust,0.0,89.98962,-90.0,10/19/9777 +7.30887,47.64686,974,1,25,19,1,35,5.45,5.0,fr,21386,19,893991,1,1,Active Shallow Crust,240.03,57.99868,0.0,01/25/0974 +7.30887,47.64686,1133,3,26,22,2,28,5.75,5.0,fr,21387,22,894030,1,1,Active Shallow Crust,0.0,89.99017,-90.0,03/26/1133 +7.30887,47.64686,4922,10,25,21,58,49,5.95,15.0,fr,21388,98,894052,1,1,Active Shallow Crust,240.055,57.99912,0.0,10/25/4922 +-1.5443,44.52584,9412,1,28,17,41,0,5.45,27.5,fr,21389,188,894470,1,1,Active Shallow Crust,0.0,89.98991,0.0,01/28/9412 +-1.5443,44.52584,118,5,15,11,34,22,5.65,5.0,fr,21390,2,894492,1,1,Active Shallow Crust,0.0,89.99007,0.0,05/15/0118 +-1.03404,45.9393,1394,3,10,14,31,30,3.55,5.0,fr,21391,27,894720,1,1,Active Shallow Crust,0.0,89.98948,0.0,03/10/1394 +-1.03404,45.9393,9558,1,7,22,15,51,3.55,15.0,fr,21392,191,894730,1,1,Active Shallow Crust,128.8964,89.99387,0.0,01/07/9558 +-1.03404,45.9393,4766,2,2,1,44,15,3.65,5.0,fr,21393,95,894732,1,2,Active Shallow Crust,0.0,89.99062,0.0,02/02/4766 +-1.03404,45.9393,3241,10,13,12,56,36,3.65,5.0,fr,21394,64,894732,1,2,Active Shallow Crust,0.0,89.99062,0.0,10/13/3241 +-1.03404,45.9393,4880,5,16,11,48,55,3.65,27.5,fr,21395,97,894734,1,1,Active Shallow Crust,0.0,89.99062,0.0,05/16/4880 +-1.03404,45.9393,4678,11,21,14,52,43,3.65,5.0,fr,21396,93,894735,1,1,Active Shallow Crust,240.0011,58.01283,0.0,11/21/4678 +-1.03404,45.9393,1944,3,8,2,57,38,3.65,5.0,fr,21397,38,894738,1,1,Active Shallow Crust,0.0,89.99052,-90.0,03/08/1944 +-1.03404,45.9393,2775,6,1,16,1,6,3.75,5.0,fr,21398,55,894744,1,1,Active Shallow Crust,0.0,89.99025,0.0,06/01/2775 +-1.03404,45.9393,5390,9,17,5,36,0,3.75,15.0,fr,21399,107,894745,1,3,Active Shallow Crust,0.0,89.99025,0.0,09/17/5390 +-1.03404,45.9393,2510,6,27,10,52,31,3.75,15.0,fr,21400,50,894745,1,3,Active Shallow Crust,0.0,89.99025,0.0,06/27/2510 +-1.03404,45.9393,5424,2,15,19,50,30,3.75,15.0,fr,21401,108,894745,1,3,Active Shallow Crust,0.0,89.99025,0.0,02/15/5424 +-1.03404,45.9393,9056,2,27,3,11,57,3.85,15.0,fr,21402,181,894757,1,1,Active Shallow Crust,0.0,89.99007,0.0,02/27/9056 +-1.03404,45.9393,2107,8,22,9,1,22,3.85,27.5,fr,21403,42,894758,1,1,Active Shallow Crust,0.0,89.99007,0.0,08/22/2107 +-1.03404,45.9393,9941,11,23,21,23,52,4.15,15.0,fr,21404,198,894793,1,1,Active Shallow Crust,0.0,89.99033,0.0,11/23/9941 +-1.03404,45.9393,4980,8,14,23,1,54,4.35,27.5,fr,21405,99,894821,1,1,Active Shallow Crust,240.0083,57.99599,0.0,08/14/4980 +-1.03404,45.9393,8186,6,7,20,1,39,4.35,5.0,fr,21406,163,894822,1,1,Active Shallow Crust,0.0,89.99011,-90.0,06/07/8186 +-1.03404,45.9393,867,10,30,18,28,27,4.45,5.0,fr,21407,17,894831,1,1,Active Shallow Crust,240.0052,57.99458,0.0,10/30/0867 +-1.03404,45.9393,2654,7,19,8,1,1,4.65,5.0,fr,21408,53,894855,1,1,Active Shallow Crust,240.0107,57.99416,0.0,07/19/2654 +-1.03404,45.9393,5392,1,10,18,14,10,4.65,5.0,fr,21409,107,894861,1,1,Active Shallow Crust,128.8913,89.98695,0.0,01/10/5392 +-1.03404,45.9393,5819,12,20,14,41,33,4.85,5.0,fr,21410,116,894876,1,1,Active Shallow Crust,0.0,89.99019,0.0,12/20/5819 +-1.03404,45.9393,684,9,25,8,37,50,5.15,27.5,fr,21411,13,894923,1,1,Active Shallow Crust,128.8839,89.99106,0.0,09/25/0684 +-1.03404,45.9393,8416,5,11,12,50,52,5.25,15.0,fr,21412,168,894925,1,1,Active Shallow Crust,0.0,89.99009,0.0,05/11/8416 +-1.49239,47.39073,3155,9,26,1,44,44,3.55,5.0,fr,21413,63,895200,1,4,Active Shallow Crust,0.0,89.98976,0.0,09/26/3155 +-1.49239,47.39073,6150,2,20,7,20,19,3.55,5.0,fr,21414,122,895200,1,4,Active Shallow Crust,0.0,89.98976,0.0,02/20/6150 +-1.49239,47.39073,4022,8,21,11,18,48,3.55,5.0,fr,21415,80,895200,1,4,Active Shallow Crust,0.0,89.98976,0.0,08/21/4022 +-1.49239,47.39073,110,7,22,21,15,41,3.55,5.0,fr,21416,2,895200,1,4,Active Shallow Crust,0.0,89.98976,0.0,07/22/0110 +-1.49239,47.39073,2031,11,23,8,6,13,3.55,15.0,fr,21417,40,895201,1,1,Active Shallow Crust,0.0,89.98976,0.0,11/23/2031 +-1.49239,47.39073,7830,4,5,4,59,51,3.55,27.5,fr,21418,156,895202,1,1,Active Shallow Crust,0.0,89.98976,0.0,04/05/7830 +-1.49239,47.39073,2060,3,7,3,28,24,3.55,5.0,fr,21419,41,895206,1,1,Active Shallow Crust,0.0,89.98964,-90.0,03/07/2060 +-1.49239,47.39073,899,4,12,12,18,31,3.55,15.0,fr,21420,17,895210,1,1,Active Shallow Crust,128.8961,89.99403,0.0,04/12/0899 +-1.49239,47.39073,3561,4,2,14,32,8,3.65,5.0,fr,21421,71,895212,1,1,Active Shallow Crust,0.0,89.98935,0.0,04/02/3561 +-1.49239,47.39073,3951,10,7,1,23,52,3.65,15.0,fr,21422,79,895213,1,1,Active Shallow Crust,0.0,89.98935,0.0,10/07/3951 +-1.49239,47.39073,8675,10,21,0,50,58,3.65,15.0,fr,21423,173,895219,1,1,Active Shallow Crust,0.0,89.99077,-90.0,10/21/8675 +-1.49239,47.39073,7505,8,26,3,48,43,3.75,15.0,fr,21424,150,895225,1,1,Active Shallow Crust,0.0,89.99051,0.0,08/26/7505 +-1.49239,47.39073,587,4,5,23,59,31,3.75,5.0,fr,21425,11,895230,1,1,Active Shallow Crust,0.0,89.9904,-90.0,04/05/0587 +-1.49239,47.39073,7763,5,27,9,18,47,3.75,27.5,fr,21426,155,895232,1,1,Active Shallow Crust,0.0,89.9904,-90.0,05/27/7763 +-1.49239,47.39073,1444,2,22,0,4,20,3.85,5.0,fr,21427,28,895236,1,1,Active Shallow Crust,0.0,89.99033,0.0,02/22/1444 +-1.49239,47.39073,3510,4,12,1,36,47,3.85,5.0,fr,21428,70,895245,1,1,Active Shallow Crust,128.8957,89.99335,0.0,04/12/3510 +-1.49239,47.39073,3913,7,25,11,24,1,3.95,27.5,fr,21429,78,895250,1,1,Active Shallow Crust,0.0,89.99031,0.0,07/25/3913 +-1.49239,47.39073,8434,3,4,15,2,1,3.95,15.0,fr,21430,168,895255,1,1,Active Shallow Crust,0.0,89.9902,-90.0,03/04/8434 +-1.49239,47.39073,4211,1,21,2,27,19,4.05,5.0,fr,21431,84,895260,1,2,Active Shallow Crust,0.0,89.9904,0.0,01/21/4211 +-1.49239,47.39073,1345,8,21,23,25,53,4.05,5.0,fr,21432,26,895260,1,2,Active Shallow Crust,0.0,89.9904,0.0,08/21/1345 +-1.49239,47.39073,1892,8,30,8,10,20,4.05,5.0,fr,21433,37,895269,1,1,Active Shallow Crust,128.8902,89.99376,0.0,08/30/1892 +-1.49239,47.39073,3393,6,19,2,10,56,4.25,15.0,fr,21434,67,895285,1,1,Active Shallow Crust,0.0,89.99009,0.0,06/19/3393 +-1.49239,47.39073,687,7,3,19,6,16,4.25,15.0,fr,21435,13,895291,1,1,Active Shallow Crust,0.0,89.98997,-90.0,07/03/0687 +-1.49239,47.39073,1504,10,28,15,25,36,4.45,5.0,fr,21436,30,895308,1,2,Active Shallow Crust,0.0,89.98971,0.0,10/28/1504 +-1.49239,47.39073,5786,11,17,7,46,11,4.45,5.0,fr,21437,115,895308,1,2,Active Shallow Crust,0.0,89.98971,0.0,11/17/5786 +-1.49239,47.39073,6885,2,4,18,3,26,4.55,5.0,fr,21438,137,895320,1,1,Active Shallow Crust,0.0,89.98975,0.0,02/04/6885 +-1.49239,47.39073,5209,5,9,10,18,42,4.65,15.0,fr,21439,104,895333,1,1,Active Shallow Crust,0.0,89.9899,0.0,05/09/5209 +-1.49239,47.39073,50,12,2,5,33,6,4.95,15.0,fr,21440,0,895372,1,1,Active Shallow Crust,240.0123,58.00454,0.0,12/02/0050 +-1.49239,47.39073,2420,7,29,13,9,4,5.15,15.0,fr,21441,48,895393,1,1,Active Shallow Crust,0.0,89.98999,0.0,07/29/2420 +-1.49239,47.39073,388,9,10,0,1,52,5.15,5.0,fr,21442,7,895395,1,1,Active Shallow Crust,240.0202,58.00005,0.0,09/10/0388 +-1.49239,47.39073,98,1,20,11,6,58,5.15,15.0,fr,21443,1,895402,1,1,Active Shallow Crust,128.8833,89.99099,0.0,01/20/0098 +-1.49239,47.39073,8241,3,25,22,43,47,5.55,15.0,fr,21444,164,895441,1,1,Active Shallow Crust,0.0,89.98993,0.0,03/25/8241 +3.54515,42.69349,3999,6,9,20,34,24,3.55,5.0,fr,21445,79,895680,1,1,Active Shallow Crust,0.0,89.98888,0.0,06/09/3999 +3.54515,42.69349,9770,7,8,14,31,45,3.55,15.0,fr,21446,195,895681,1,1,Active Shallow Crust,0.0,89.98888,0.0,07/08/9770 +3.54515,42.69349,3456,6,18,15,14,31,3.65,15.0,fr,21447,69,895693,1,1,Active Shallow Crust,0.0,89.99009,0.0,06/18/3456 +3.54515,42.69349,5588,1,11,3,11,20,3.75,5.0,fr,21448,111,895704,1,1,Active Shallow Crust,0.0,89.99117,0.0,01/11/5588 +3.54515,42.69349,2692,4,19,23,46,36,3.75,5.0,fr,21449,53,895707,1,1,Active Shallow Crust,240.0076,58.01781,0.0,04/19/2692 +3.54515,42.69349,7154,6,22,7,43,42,3.95,15.0,fr,21450,143,895729,1,1,Active Shallow Crust,0.0,89.99065,0.0,06/22/7154 +3.54515,42.69349,8189,8,18,22,12,10,4.15,5.0,fr,21451,163,895752,1,1,Active Shallow Crust,0.0,89.99072,0.0,08/18/8189 +2.15984,46.70345,5717,10,19,16,42,57,3.55,15.0,fr,21452,114,896161,1,1,Active Shallow Crust,0.0,89.98962,0.0,10/19/5717 +2.15984,46.70345,450,4,17,21,7,51,3.65,5.0,fr,21453,8,896172,1,1,Active Shallow Crust,0.0,89.99075,0.0,04/17/0450 +2.15984,46.70345,3927,7,20,2,38,33,3.65,27.5,fr,21454,78,896177,1,1,Active Shallow Crust,240.0007,58.01318,0.0,07/20/3927 +2.15984,46.70345,1082,11,27,23,20,55,3.75,5.0,fr,21455,21,896184,1,1,Active Shallow Crust,0.0,89.98901,0.0,11/27/1082 +2.15984,46.70345,2516,3,22,2,26,14,3.75,27.5,fr,21456,50,896186,1,1,Active Shallow Crust,0.0,89.98901,0.0,03/22/2516 +2.15984,46.70345,719,8,17,14,54,46,3.95,5.0,fr,21457,14,896211,1,1,Active Shallow Crust,240.0194,58.00534,0.0,08/17/0719 +2.15984,46.70345,3075,1,30,14,16,19,4.25,5.0,fr,21458,61,896244,1,1,Active Shallow Crust,0.0,89.99073,0.0,01/30/3075 +2.15984,46.70345,8000,4,15,7,10,51,4.35,5.0,fr,21459,159,896262,1,1,Active Shallow Crust,0.0,89.99025,-90.0,04/15/8000 +2.15984,46.70345,8225,8,28,20,7,3,4.65,5.0,fr,21460,164,896295,1,1,Active Shallow Crust,240.011,57.9944,0.0,08/28/8225 +2.15984,46.70345,13,10,16,14,58,59,5.15,5.0,fr,21461,0,896358,1,1,Active Shallow Crust,0.0,89.99002,-90.0,10/16/0013 +2.15984,46.70345,8191,4,17,20,31,55,5.45,5.0,fr,21462,163,896394,1,1,Active Shallow Crust,0.0,89.99019,-90.0,04/17/8191 +7.23654,51.14884,5690,2,8,7,9,53,3.65,5.0,fr,21463,113,896652,1,1,Active Shallow Crust,0.0,89.98872,0.0,02/08/5690 +7.23654,51.14884,8906,2,23,18,34,26,3.75,5.0,fr,21464,178,896664,1,1,Active Shallow Crust,0.0,89.98995,0.0,02/23/8906 +7.23654,51.14884,3999,4,7,3,54,18,3.95,15.0,fr,21465,79,896689,1,1,Active Shallow Crust,0.0,89.98803,0.0,04/07/3999 +5.83508,46.30607,6005,4,23,0,27,25,3.55,5.0,fr,21466,120,897120,1,2,Active Shallow Crust,0.0,89.99303,0.0,04/23/6005 +5.83508,46.30607,2947,2,21,2,31,4,3.55,5.0,fr,21467,58,897120,1,2,Active Shallow Crust,0.0,89.99303,0.0,02/21/2947 +5.83508,46.30607,3463,7,31,7,3,38,3.55,5.0,fr,21468,69,897123,1,2,Active Shallow Crust,240.0128,57.99757,0.0,07/31/3463 +5.83508,46.30607,3858,6,4,16,49,40,3.55,5.0,fr,21469,77,897123,1,2,Active Shallow Crust,240.0128,57.99757,0.0,06/04/3858 +5.83508,46.30607,15,11,29,16,57,25,3.65,5.0,fr,21470,0,897132,1,1,Active Shallow Crust,0.0,89.98758,0.0,11/29/0015 +5.83508,46.30607,3145,3,7,5,26,50,3.65,15.0,fr,21471,62,897133,1,1,Active Shallow Crust,0.0,89.98758,0.0,03/07/3145 +5.83508,46.30607,9544,8,11,10,51,28,3.75,5.0,fr,21472,190,897144,1,1,Active Shallow Crust,0.0,89.98893,0.0,08/11/9544 +5.83508,46.30607,4474,8,30,5,38,37,3.75,15.0,fr,21473,89,897145,1,1,Active Shallow Crust,0.0,89.98893,0.0,08/30/4474 +5.83508,46.30607,7181,1,3,22,42,6,3.85,15.0,fr,21474,143,897157,1,1,Active Shallow Crust,0.0,89.99014,0.0,01/03/7181 +5.83508,46.30607,6463,3,25,0,17,39,3.85,5.0,fr,21475,129,897165,1,2,Active Shallow Crust,128.8963,89.99261,0.0,03/25/6463 +5.83508,46.30607,8235,5,2,2,31,23,3.85,5.0,fr,21476,164,897165,1,2,Active Shallow Crust,128.8963,89.99261,0.0,05/02/8235 +5.83508,46.30607,5390,2,1,19,4,32,3.85,15.0,fr,21477,107,897166,1,1,Active Shallow Crust,128.8963,89.99261,0.0,02/01/5390 +5.83508,46.30607,8726,12,31,8,53,17,3.95,5.0,fr,21478,174,897168,1,1,Active Shallow Crust,0.0,89.99121,0.0,12/31/8726 +5.83508,46.30607,7644,12,24,14,36,44,3.95,5.0,fr,21479,152,897171,1,1,Active Shallow Crust,240.0195,58.00471,0.0,12/24/7644 +5.83508,46.30607,5642,5,30,7,27,50,3.95,15.0,fr,21480,112,897172,1,1,Active Shallow Crust,240.0195,58.00471,0.0,05/30/5642 +5.83508,46.30607,3777,11,6,19,38,49,4.05,15.0,fr,21481,75,897184,1,1,Active Shallow Crust,240.0057,58.00623,0.0,11/06/3777 +5.83508,46.30607,3510,10,14,15,12,44,4.35,5.0,fr,21482,70,897216,1,1,Active Shallow Crust,0.0,89.98891,0.0,10/14/3510 +5.83508,46.30607,7851,3,29,9,21,21,4.45,5.0,fr,21483,157,897228,1,1,Active Shallow Crust,0.0,89.99011,0.0,03/29/7851 +5.83508,46.30607,5375,9,30,13,26,18,4.55,27.5,fr,21484,107,897242,1,1,Active Shallow Crust,0.0,89.98898,0.0,09/30/5375 +5.83508,46.30607,5004,11,4,22,52,29,4.75,15.0,fr,21485,100,897265,1,1,Active Shallow Crust,0.0,89.9895,0.0,11/04/5004 +5.83508,46.30607,6189,1,16,15,8,28,4.75,27.5,fr,21486,123,897266,1,1,Active Shallow Crust,0.0,89.9895,0.0,01/16/6189 +5.83508,46.30607,4309,4,10,14,26,25,5.15,5.0,fr,21487,86,897312,1,1,Active Shallow Crust,0.0,89.99006,0.0,04/10/4309 +5.83508,46.30607,6470,10,25,8,50,53,5.65,5.0,fr,21488,129,897372,1,1,Active Shallow Crust,0.0,89.99006,0.0,10/25/6470 +5.83508,46.30607,616,6,5,9,16,29,5.85,5.0,fr,21489,12,897396,1,1,Active Shallow Crust,0.0,89.99013,0.0,06/05/0616 +-3.66164,43.73552,8477,9,29,7,11,35,3.55,5.0,fr,21490,169,897606,1,1,Active Shallow Crust,0.0,89.98895,-90.0,09/29/8477 +-3.66164,43.73552,1996,3,11,11,11,50,3.55,5.0,fr,21491,39,897609,1,1,Active Shallow Crust,128.8964,89.99271,0.0,03/11/1996 +-3.66164,43.73552,3628,3,1,4,34,49,3.65,15.0,fr,21492,72,897613,1,1,Active Shallow Crust,0.0,89.99026,0.0,03/01/3628 +4.87936,49.86333,8656,12,17,13,55,55,3.75,15.0,fr,21493,173,898108,1,1,Active Shallow Crust,240.0093,58.01791,0.0,12/17/8656 +-1.40183,48.33992,2885,5,14,20,27,45,3.55,5.0,fr,21494,57,898560,1,1,Active Shallow Crust,0.0,89.98994,0.0,05/14/2885 +-1.40183,48.33992,4244,7,7,2,29,11,3.55,27.5,fr,21495,84,898562,1,1,Active Shallow Crust,0.0,89.98994,0.0,07/07/4244 +-1.40183,48.33992,5656,5,14,14,26,19,3.55,15.0,fr,21496,113,898564,1,1,Active Shallow Crust,240.012,57.99848,0.0,05/14/5656 +-1.40183,48.33992,6132,11,29,5,42,25,3.55,5.0,fr,21497,122,898566,1,1,Active Shallow Crust,0.0,89.98983,-90.0,11/29/6132 +-1.40183,48.33992,4076,8,1,18,31,49,3.55,5.0,fr,21498,81,898569,1,1,Active Shallow Crust,128.8959,89.99413,0.0,08/01/4076 +-1.40183,48.33992,1040,5,6,17,57,24,3.65,5.0,fr,21499,20,898572,1,1,Active Shallow Crust,0.0,89.98955,0.0,05/06/1040 +-1.40183,48.33992,7382,7,7,6,52,21,3.65,27.5,fr,21500,147,898574,1,1,Active Shallow Crust,0.0,89.98955,0.0,07/07/7382 +-1.40183,48.33992,8745,6,11,2,37,35,3.85,5.0,fr,21501,174,898602,1,1,Active Shallow Crust,0.0,89.9904,-90.0,06/11/8745 +-1.40183,48.33992,8799,10,10,4,39,9,4.05,27.5,fr,21502,175,898622,1,1,Active Shallow Crust,0.0,89.98963,0.0,10/10/8799 +-1.40183,48.33992,8991,2,21,15,5,51,4.25,5.0,fr,21503,179,898644,1,1,Active Shallow Crust,0.0,89.99026,0.0,02/21/8991 +-1.40183,48.33992,7070,3,3,14,30,7,4.25,15.0,fr,21504,141,898648,1,1,Active Shallow Crust,240.008,57.99419,0.0,03/03/7070 +-1.40183,48.33992,4206,11,19,19,52,9,4.25,5.0,fr,21505,84,898650,1,1,Active Shallow Crust,0.0,89.99016,-90.0,11/19/4206 +-1.40183,48.33992,4053,11,28,8,0,23,4.35,5.0,fr,21506,81,898656,1,1,Active Shallow Crust,0.0,89.98999,0.0,11/28/4053 +-1.40183,48.33992,3046,4,2,21,42,27,4.35,15.0,fr,21507,60,898663,1,1,Active Shallow Crust,0.0,89.98988,-90.0,04/02/3046 +-1.40183,48.33992,4667,5,27,2,20,30,4.55,5.0,fr,21508,93,898680,1,1,Active Shallow Crust,0.0,89.98993,0.0,05/27/4667 +-1.40183,48.33992,3394,9,12,11,11,36,4.55,15.0,fr,21509,67,898690,1,1,Active Shallow Crust,128.8933,89.98586,0.0,09/12/3394 +-1.40183,48.33992,721,6,12,0,11,10,4.85,5.0,fr,21510,14,898716,1,1,Active Shallow Crust,0.0,89.98987,0.0,06/12/0721 +5.34298,41.86823,9567,1,1,23,55,41,3.85,5.0,fr,21511,191,899076,1,1,Active Shallow Crust,0.0,89.98936,0.0,01/01/9567 +2.62324,46.49007,200,3,14,19,36,27,3.55,5.0,fr,21512,3,900000,1,2,Active Shallow Crust,0.0,89.98959,0.0,03/14/0200 +2.62324,46.49007,9530,7,11,5,45,36,3.55,5.0,fr,21513,190,900000,1,2,Active Shallow Crust,0.0,89.98959,0.0,07/11/9530 +2.62324,46.49007,5830,8,8,1,21,0,3.65,5.0,fr,21514,116,900012,1,1,Active Shallow Crust,0.0,89.99072,0.0,08/08/5830 +2.62324,46.49007,6387,7,29,12,37,35,3.65,27.5,fr,21515,127,900014,1,1,Active Shallow Crust,0.0,89.99072,0.0,07/29/6387 +2.62324,46.49007,4250,5,9,19,50,35,3.85,15.0,fr,21516,84,900037,1,1,Active Shallow Crust,0.0,89.99017,0.0,05/09/4250 +2.62324,46.49007,8934,10,18,7,15,42,3.85,15.0,fr,21517,178,900040,1,1,Active Shallow Crust,240.0105,57.99765,0.0,10/18/8934 +2.62324,46.49007,7960,8,30,17,11,52,4.05,15.0,fr,21518,159,900061,1,2,Active Shallow Crust,0.0,89.99024,0.0,08/30/7960 +2.62324,46.49007,6625,9,13,21,38,11,4.05,15.0,fr,21519,132,900061,1,2,Active Shallow Crust,0.0,89.99024,0.0,09/13/6625 +2.62324,46.49007,8817,7,29,15,44,26,4.15,5.0,fr,21520,176,900081,1,1,Active Shallow Crust,128.8978,89.99391,0.0,07/29/8817 +2.62324,46.49007,1102,11,4,1,13,48,4.15,15.0,fr,21521,22,900082,1,1,Active Shallow Crust,128.8978,89.99391,0.0,11/04/1102 +2.62324,46.49007,7465,9,16,23,8,10,4.55,5.0,fr,21522,149,900126,1,1,Active Shallow Crust,0.0,89.99001,-90.0,09/16/7465 +2.62324,46.49007,4852,1,3,15,1,21,4.75,15.0,fr,21523,97,900154,1,1,Active Shallow Crust,128.8887,89.98795,0.0,01/03/4852 +3.07638,51.55985,8312,9,4,2,28,34,3.55,15.0,fr,21524,166,900481,1,1,Active Shallow Crust,0.0,89.99059,0.0,09/04/8312 +3.07638,51.55985,5460,3,4,15,34,52,3.75,5.0,fr,21525,109,900504,1,1,Active Shallow Crust,0.0,89.99004,0.0,03/04/5460 +3.07638,51.55985,1743,6,8,15,21,17,4.25,5.0,fr,21526,34,900570,1,1,Active Shallow Crust,0.0,89.99008,-90.0,06/08/1743 +3.07638,51.55985,7363,8,11,8,4,53,5.15,5.0,fr,21527,147,900672,1,1,Active Shallow Crust,0.0,89.99006,0.0,08/11/7363 +6.66674,46.6692,5062,3,3,21,4,58,3.55,5.0,fr,21528,101,900960,1,7,Active Shallow Crust,0.0,89.99308,0.0,03/03/5062 +6.66674,46.6692,8199,4,19,18,43,1,3.55,5.0,fr,21529,163,900960,1,7,Active Shallow Crust,0.0,89.99308,0.0,04/19/8199 +6.66674,46.6692,5391,7,28,10,49,48,3.55,5.0,fr,21530,107,900960,1,7,Active Shallow Crust,0.0,89.99308,0.0,07/28/5391 +6.66674,46.6692,9291,12,6,1,54,44,3.55,5.0,fr,21531,185,900960,1,7,Active Shallow Crust,0.0,89.99308,0.0,12/06/9291 +6.66674,46.6692,9270,7,31,15,19,52,3.55,5.0,fr,21532,185,900960,1,7,Active Shallow Crust,0.0,89.99308,0.0,07/31/9270 +6.66674,46.6692,1775,4,27,23,56,7,3.55,5.0,fr,21533,35,900960,1,7,Active Shallow Crust,0.0,89.99308,0.0,04/27/1775 +6.66674,46.6692,3517,9,3,15,32,36,3.55,5.0,fr,21534,70,900960,1,7,Active Shallow Crust,0.0,89.99308,0.0,09/03/3517 +6.66674,46.6692,9818,3,21,14,43,12,3.55,15.0,fr,21535,196,900961,1,4,Active Shallow Crust,0.0,89.99308,0.0,03/21/9818 +6.66674,46.6692,5875,12,4,19,4,32,3.55,15.0,fr,21536,117,900961,1,4,Active Shallow Crust,0.0,89.99308,0.0,12/04/5875 +6.66674,46.6692,7400,8,27,23,6,45,3.55,15.0,fr,21537,147,900961,1,4,Active Shallow Crust,0.0,89.99308,0.0,08/27/7400 +6.66674,46.6692,1682,8,4,6,4,3,3.55,15.0,fr,21538,33,900961,1,4,Active Shallow Crust,0.0,89.99308,0.0,08/04/1682 +6.66674,46.6692,7310,4,2,11,0,24,3.55,5.0,fr,21539,146,900963,1,1,Active Shallow Crust,240.0121,57.99786,0.0,04/02/7310 +6.66674,46.6692,3371,7,16,14,18,23,3.55,15.0,fr,21540,67,900964,1,2,Active Shallow Crust,240.0121,57.99786,0.0,07/16/3371 +6.66674,46.6692,7035,4,25,1,8,31,3.55,15.0,fr,21541,140,900964,1,2,Active Shallow Crust,240.0121,57.99786,0.0,04/25/7035 +6.66674,46.6692,7766,12,5,6,16,5,3.55,27.5,fr,21542,155,900965,1,1,Active Shallow Crust,240.0121,57.99777,0.0,12/05/7766 +6.66674,46.6692,1490,1,15,19,38,30,3.55,5.0,fr,21543,29,900966,1,1,Active Shallow Crust,0.0,89.993,-90.0,01/15/1490 +6.66674,46.6692,4218,1,5,21,8,7,3.55,5.0,fr,21544,84,900969,1,1,Active Shallow Crust,128.8952,89.99654,0.0,01/05/4218 +6.66674,46.6692,1252,1,23,23,51,21,3.55,27.5,fr,21545,25,900971,1,2,Active Shallow Crust,128.8952,89.99654,0.0,01/23/1252 +6.66674,46.6692,7292,2,12,11,15,30,3.55,27.5,fr,21546,145,900971,1,2,Active Shallow Crust,128.8952,89.99654,0.0,02/12/7292 +6.66674,46.6692,2983,6,19,19,18,23,3.65,5.0,fr,21547,59,900972,1,9,Active Shallow Crust,0.0,89.98766,0.0,06/19/2983 +6.66674,46.6692,5377,12,15,18,46,19,3.65,5.0,fr,21548,107,900972,1,9,Active Shallow Crust,0.0,89.98766,0.0,12/15/5377 +6.66674,46.6692,9711,10,28,13,13,51,3.65,5.0,fr,21549,194,900972,1,9,Active Shallow Crust,0.0,89.98766,0.0,10/28/9711 +6.66674,46.6692,6061,11,6,1,35,26,3.65,5.0,fr,21550,121,900972,1,9,Active Shallow Crust,0.0,89.98766,0.0,11/06/6061 +6.66674,46.6692,9667,5,1,13,35,49,3.65,5.0,fr,21551,193,900972,1,9,Active Shallow Crust,0.0,89.98766,0.0,05/01/9667 +6.66674,46.6692,2265,11,5,19,43,39,3.65,5.0,fr,21552,45,900972,1,9,Active Shallow Crust,0.0,89.98766,0.0,11/05/2265 +6.66674,46.6692,8404,2,21,13,56,55,3.65,5.0,fr,21553,168,900972,1,9,Active Shallow Crust,0.0,89.98766,0.0,02/21/8404 +6.66674,46.6692,969,8,25,17,2,14,3.65,5.0,fr,21554,19,900972,1,9,Active Shallow Crust,0.0,89.98766,0.0,08/25/0969 +6.66674,46.6692,8677,9,28,2,25,23,3.65,5.0,fr,21555,173,900972,1,9,Active Shallow Crust,0.0,89.98766,0.0,09/28/8677 +6.66674,46.6692,6972,7,21,16,46,29,3.65,15.0,fr,21556,139,900973,1,2,Active Shallow Crust,0.0,89.98766,0.0,07/21/6972 +6.66674,46.6692,325,12,24,15,10,9,3.65,15.0,fr,21557,6,900973,1,2,Active Shallow Crust,0.0,89.98766,0.0,12/24/0325 +6.66674,46.6692,9093,12,19,12,42,14,3.65,27.5,fr,21558,181,900974,1,3,Active Shallow Crust,0.0,89.98766,0.0,12/19/9093 +6.66674,46.6692,7980,9,28,22,27,15,3.65,27.5,fr,21559,159,900974,1,3,Active Shallow Crust,0.0,89.98766,0.0,09/28/7980 +6.66674,46.6692,5549,4,11,21,39,6,3.65,27.5,fr,21560,110,900974,1,3,Active Shallow Crust,0.0,89.98766,0.0,04/11/5549 +6.66674,46.6692,7301,7,31,16,42,34,3.65,5.0,fr,21561,146,900975,1,1,Active Shallow Crust,240.001,58.0131,0.0,07/31/7301 +6.66674,46.6692,7021,5,22,5,54,52,3.65,27.5,fr,21562,140,900977,1,1,Active Shallow Crust,240.001,58.01302,0.0,05/22/7021 +6.66674,46.6692,9115,5,14,4,10,37,3.65,5.0,fr,21563,182,900978,1,3,Active Shallow Crust,0.0,89.98753,-90.0,05/14/9115 +6.66674,46.6692,9990,3,14,16,11,51,3.65,5.0,fr,21564,199,900978,1,3,Active Shallow Crust,0.0,89.98753,-90.0,03/14/9990 +6.66674,46.6692,4296,9,2,14,41,41,3.65,5.0,fr,21565,85,900978,1,3,Active Shallow Crust,0.0,89.98753,-90.0,09/02/4296 +6.66674,46.6692,7348,10,25,20,26,44,3.65,5.0,fr,21566,146,900981,1,1,Active Shallow Crust,128.9007,89.96352,0.0,10/25/7348 +6.66674,46.6692,528,5,22,1,11,38,3.65,15.0,fr,21567,10,900982,1,1,Active Shallow Crust,128.9007,89.96352,0.0,05/22/0528 +6.66674,46.6692,9728,6,5,6,32,8,3.65,27.5,fr,21568,194,900983,1,1,Active Shallow Crust,128.9007,89.96352,0.0,06/05/9728 +6.66674,46.6692,9674,3,9,21,4,47,3.75,5.0,fr,21569,193,900984,1,5,Active Shallow Crust,0.0,89.98901,0.0,03/09/9674 +6.66674,46.6692,5617,10,17,3,20,53,3.75,5.0,fr,21570,112,900984,1,5,Active Shallow Crust,0.0,89.98901,0.0,10/17/5617 +6.66674,46.6692,8059,7,19,18,29,58,3.75,5.0,fr,21571,161,900984,1,5,Active Shallow Crust,0.0,89.98901,0.0,07/19/8059 +6.66674,46.6692,7833,9,15,12,32,14,3.75,5.0,fr,21572,156,900984,1,5,Active Shallow Crust,0.0,89.98901,0.0,09/15/7833 +6.66674,46.6692,4716,9,29,20,9,56,3.75,5.0,fr,21573,94,900984,1,5,Active Shallow Crust,0.0,89.98901,0.0,09/29/4716 +6.66674,46.6692,2125,10,2,2,0,21,3.75,15.0,fr,21574,42,900985,1,2,Active Shallow Crust,0.0,89.98901,0.0,10/02/2125 +6.66674,46.6692,5734,10,9,8,28,28,3.75,15.0,fr,21575,114,900985,1,2,Active Shallow Crust,0.0,89.98901,0.0,10/09/5734 +6.66674,46.6692,2015,5,11,21,6,10,3.75,27.5,fr,21576,40,900986,1,2,Active Shallow Crust,0.0,89.98901,0.0,05/11/2015 +6.66674,46.6692,9837,7,22,9,50,5,3.75,27.5,fr,21577,196,900986,1,2,Active Shallow Crust,0.0,89.98901,0.0,07/22/9837 +6.66674,46.6692,8216,12,27,17,32,25,3.75,5.0,fr,21578,164,900987,1,3,Active Shallow Crust,240.0076,58.01738,0.0,12/27/8216 +6.66674,46.6692,1838,12,6,22,0,42,3.75,5.0,fr,21579,36,900987,1,3,Active Shallow Crust,240.0076,58.01738,0.0,12/06/1838 +6.66674,46.6692,8799,3,15,23,30,7,3.75,5.0,fr,21580,175,900987,1,3,Active Shallow Crust,240.0076,58.01738,0.0,03/15/8799 +6.66674,46.6692,688,6,21,15,47,16,3.75,15.0,fr,21581,13,900988,1,1,Active Shallow Crust,240.0076,58.01738,0.0,06/21/0688 +6.66674,46.6692,1569,12,20,3,32,12,3.75,5.0,fr,21582,31,900990,1,1,Active Shallow Crust,0.0,89.98888,-90.0,12/20/1569 +6.66674,46.6692,1535,8,4,16,2,36,3.75,15.0,fr,21583,30,900994,1,1,Active Shallow Crust,128.8961,89.96749,0.0,08/04/1535 +6.66674,46.6692,6222,8,15,15,30,59,3.85,5.0,fr,21584,124,900996,1,3,Active Shallow Crust,0.0,89.9902,0.0,08/15/6222 +6.66674,46.6692,5200,2,18,23,1,45,3.85,5.0,fr,21585,103,900996,1,3,Active Shallow Crust,0.0,89.9902,0.0,02/18/5200 +6.66674,46.6692,2449,6,7,0,17,38,3.85,5.0,fr,21586,48,900996,1,3,Active Shallow Crust,0.0,89.9902,0.0,06/07/2449 +6.66674,46.6692,8489,7,16,4,39,22,3.85,15.0,fr,21587,169,900997,1,1,Active Shallow Crust,0.0,89.9902,0.0,07/16/8489 +6.66674,46.6692,9209,12,22,1,17,1,3.85,27.5,fr,21588,184,900998,1,1,Active Shallow Crust,0.0,89.9902,0.0,12/22/9209 +6.66674,46.6692,9296,7,3,7,23,51,3.85,5.0,fr,21589,185,900999,1,1,Active Shallow Crust,240.0114,57.99759,0.0,07/03/9296 +6.66674,46.6692,614,3,12,15,31,21,3.85,5.0,fr,21590,12,901002,1,3,Active Shallow Crust,0.0,89.99009,-90.0,03/12/0614 +6.66674,46.6692,4840,9,7,20,23,1,3.85,5.0,fr,21591,96,901002,1,3,Active Shallow Crust,0.0,89.99009,-90.0,09/07/4840 +6.66674,46.6692,8825,2,9,5,8,45,3.85,5.0,fr,21592,176,901002,1,3,Active Shallow Crust,0.0,89.99009,-90.0,02/09/8825 +6.66674,46.6692,2035,11,10,13,11,7,3.85,15.0,fr,21593,40,901003,1,1,Active Shallow Crust,0.0,89.99009,-90.0,11/10/2035 +6.66674,46.6692,3118,3,30,22,26,43,3.85,27.5,fr,21594,62,901004,1,1,Active Shallow Crust,0.0,89.99009,-90.0,03/30/3118 +6.66674,46.6692,3257,11,1,3,58,36,3.85,5.0,fr,21595,65,901005,1,1,Active Shallow Crust,128.8949,89.9951,0.0,11/01/3257 +6.66674,46.6692,9866,2,12,20,38,49,3.95,5.0,fr,21596,197,901008,1,4,Active Shallow Crust,0.0,89.99126,0.0,02/12/9866 +6.66674,46.6692,272,11,27,21,4,56,3.95,5.0,fr,21597,5,901008,1,4,Active Shallow Crust,0.0,89.99126,0.0,11/27/0272 +6.66674,46.6692,2626,9,28,7,34,41,3.95,5.0,fr,21598,52,901008,1,4,Active Shallow Crust,0.0,89.99126,0.0,09/28/2626 +6.66674,46.6692,6243,4,26,19,25,43,3.95,5.0,fr,21599,124,901008,1,4,Active Shallow Crust,0.0,89.99126,0.0,04/26/6243 +6.66674,46.6692,8449,2,24,13,9,1,3.95,15.0,fr,21600,168,901009,1,1,Active Shallow Crust,0.0,89.99126,0.0,02/24/8449 +6.66674,46.6692,1277,3,30,3,9,32,3.95,27.5,fr,21601,25,901010,1,2,Active Shallow Crust,0.0,89.99126,0.0,03/30/1277 +6.66674,46.6692,3720,4,18,13,59,35,3.95,27.5,fr,21602,74,901010,1,2,Active Shallow Crust,0.0,89.99126,0.0,04/18/3720 +6.66674,46.6692,2046,10,1,7,51,11,3.95,15.0,fr,21603,40,901015,1,1,Active Shallow Crust,0.0,89.99117,-90.0,10/01/2046 +6.66674,46.6692,6825,6,25,18,2,20,3.95,5.0,fr,21604,136,901017,1,1,Active Shallow Crust,128.9003,89.99564,0.0,06/25/6825 +6.66674,46.6692,5113,5,18,4,12,49,4.05,5.0,fr,21605,102,901020,1,2,Active Shallow Crust,0.0,89.98833,0.0,05/18/5113 +6.66674,46.6692,2185,3,23,11,21,36,4.05,5.0,fr,21606,43,901020,1,2,Active Shallow Crust,0.0,89.98833,0.0,03/23/2185 +6.66674,46.6692,6303,10,7,2,20,24,4.05,15.0,fr,21607,126,901021,1,1,Active Shallow Crust,0.0,89.98833,0.0,10/07/6303 +6.66674,46.6692,4654,8,17,16,33,44,4.05,5.0,fr,21608,93,901023,1,2,Active Shallow Crust,240.0061,58.00618,0.0,08/17/4654 +6.66674,46.6692,6927,8,31,18,53,2,4.05,5.0,fr,21609,138,901023,1,2,Active Shallow Crust,240.0061,58.00618,0.0,08/31/6927 +6.66674,46.6692,7961,7,13,5,52,0,4.15,5.0,fr,21610,159,901032,1,1,Active Shallow Crust,0.0,89.98959,0.0,07/13/7961 +6.66674,46.6692,2126,3,30,21,25,22,4.15,5.0,fr,21611,42,901038,1,1,Active Shallow Crust,0.0,89.98947,-90.0,03/30/2126 +6.66674,46.6692,725,1,10,22,9,45,4.25,5.0,fr,21612,14,901044,1,1,Active Shallow Crust,0.0,89.99073,0.0,01/10/0725 +6.66674,46.6692,9726,5,14,18,43,52,4.25,5.0,fr,21613,194,901053,1,1,Active Shallow Crust,128.8941,89.98095,0.0,05/14/9726 +6.66674,46.6692,4253,1,1,12,19,34,4.35,5.0,fr,21614,85,901056,1,3,Active Shallow Crust,0.0,89.98898,0.0,01/01/4253 +6.66674,46.6692,7421,6,23,8,54,50,4.35,5.0,fr,21615,148,901056,1,3,Active Shallow Crust,0.0,89.98898,0.0,06/23/7421 +6.66674,46.6692,7856,11,6,17,56,11,4.35,5.0,fr,21616,157,901056,1,3,Active Shallow Crust,0.0,89.98898,0.0,11/06/7856 +6.66674,46.6692,9042,7,4,13,16,50,4.35,5.0,fr,21617,180,901065,1,2,Active Shallow Crust,128.8983,89.98253,0.0,07/04/9042 +6.66674,46.6692,8038,12,19,7,23,30,4.35,5.0,fr,21618,160,901065,1,2,Active Shallow Crust,128.8983,89.98253,0.0,12/19/8038 +6.66674,46.6692,6241,5,15,10,32,40,4.65,5.0,fr,21619,124,901092,1,1,Active Shallow Crust,0.0,89.99025,0.0,05/15/6241 +6.66674,46.6692,463,4,21,17,42,57,4.75,5.0,fr,21620,9,901104,1,1,Active Shallow Crust,0.0,89.98957,0.0,04/21/0463 +6.66674,46.6692,1575,2,21,17,15,13,4.75,5.0,fr,21621,31,901113,1,1,Active Shallow Crust,128.8887,89.98818,0.0,02/21/1575 +6.66674,46.6692,7851,5,27,14,46,8,4.95,5.0,fr,21622,157,901128,1,1,Active Shallow Crust,0.0,89.99033,0.0,05/27/7851 +6.66674,46.6692,1795,9,19,5,36,57,4.95,15.0,fr,21623,35,901129,1,2,Active Shallow Crust,0.0,89.99033,0.0,09/19/1795 +6.66674,46.6692,5704,4,30,23,48,21,4.95,15.0,fr,21624,114,901129,1,2,Active Shallow Crust,0.0,89.99033,0.0,04/30/5704 +6.66674,46.6692,8928,2,22,16,33,10,5.15,5.0,fr,21625,178,901152,1,1,Active Shallow Crust,0.0,89.99013,0.0,02/22/8928 +6.66674,46.6692,1478,6,12,23,42,26,5.25,5.0,fr,21626,29,901164,1,2,Active Shallow Crust,0.0,89.99022,0.0,06/12/1478 +6.66674,46.6692,561,8,14,7,7,56,5.25,5.0,fr,21627,11,901164,1,2,Active Shallow Crust,0.0,89.99022,0.0,08/14/0561 +6.66674,46.6692,5377,2,3,19,14,7,5.25,15.0,fr,21628,107,901165,1,1,Active Shallow Crust,0.0,89.99022,0.0,02/03/5377 +6.66674,46.6692,9442,9,29,15,12,32,5.35,5.0,fr,21629,188,901176,1,1,Active Shallow Crust,0.0,89.99042,0.0,09/29/9442 +6.66674,46.6692,7721,7,4,21,24,41,5.55,5.0,fr,21630,154,901200,1,1,Active Shallow Crust,0.0,89.99031,0.0,07/04/7721 +-1.45839,45.49243,3833,2,3,1,44,28,3.75,5.0,fr,21631,76,901464,1,1,Active Shallow Crust,0.0,89.99017,0.0,02/03/3833 +-1.45839,45.49243,3087,11,28,0,48,23,3.85,5.0,fr,21632,61,901476,1,2,Active Shallow Crust,0.0,89.98999,0.0,11/28/3087 +-1.45839,45.49243,8474,5,12,12,41,33,3.85,5.0,fr,21633,169,901476,1,2,Active Shallow Crust,0.0,89.98999,0.0,05/12/8474 +-1.45839,45.49243,7393,5,22,6,27,56,3.85,27.5,fr,21634,147,901478,1,1,Active Shallow Crust,0.0,89.98999,0.0,05/22/7393 +-1.45839,45.49243,9700,7,30,22,38,52,4.35,27.5,fr,21635,193,901541,1,1,Active Shallow Crust,240.0081,57.99591,0.0,07/30/9700 +7.19755,51.38888,4897,5,9,18,51,55,3.75,15.0,fr,21636,97,901945,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/09/4897 +7.19755,51.38888,8411,11,19,2,35,51,4.65,5.0,fr,21637,168,902052,1,1,Active Shallow Crust,0.0,89.98936,0.0,11/19/8411 +-5.75635,48.88755,998,6,16,11,37,5,3.85,5.0,fr,21638,19,902919,1,1,Active Shallow Crust,240.0101,57.99786,0.0,06/16/0998 +-5.75635,48.88755,1293,9,30,11,9,3,3.95,15.0,fr,21639,25,902932,1,1,Active Shallow Crust,240.0206,58.00517,0.0,09/30/1293 +-2.07746,45.84358,133,3,1,16,15,45,3.75,5.0,fr,21640,2,903384,1,1,Active Shallow Crust,0.0,89.98884,0.0,03/01/0133 +-2.07746,45.84358,4425,3,14,16,51,18,4.15,5.0,fr,21641,88,903438,1,1,Active Shallow Crust,0.0,89.98932,-90.0,03/14/4425 +-2.07746,45.84358,4787,8,13,17,12,57,5.35,5.0,fr,21642,95,903576,1,1,Active Shallow Crust,0.0,89.98983,0.0,08/13/4787 +6.60046,43.3696,1772,10,23,2,29,45,3.55,5.0,fr,21643,35,903840,1,2,Active Shallow Crust,0.0,89.99267,0.0,10/23/1772 +6.60046,43.3696,3684,12,12,19,58,6,3.55,5.0,fr,21644,73,903840,1,2,Active Shallow Crust,0.0,89.99267,0.0,12/12/3684 +6.60046,43.3696,9578,6,5,23,12,32,3.65,5.0,fr,21645,191,903858,1,1,Active Shallow Crust,0.0,89.98679,-90.0,06/05/9578 +1.69686,52.80461,7958,12,20,20,24,3,3.85,5.0,fr,21646,159,904362,1,1,Active Shallow Crust,0.0,89.99017,-90.0,12/20/7958 +1.69686,52.80461,7889,10,3,14,40,28,4.65,5.0,fr,21647,157,904452,1,1,Active Shallow Crust,0.0,89.99012,0.0,10/03/7889 +3.58925,44.8193,1304,3,23,1,54,57,3.55,5.0,fr,21648,26,904800,1,1,Active Shallow Crust,0.0,89.98927,0.0,03/23/1304 +3.58925,44.8193,2985,2,2,6,16,35,3.55,15.0,fr,21649,59,904804,1,2,Active Shallow Crust,240.0119,57.99778,0.0,02/02/2985 +3.58925,44.8193,4821,2,11,23,5,15,3.55,15.0,fr,21650,96,904804,1,2,Active Shallow Crust,240.0119,57.99778,0.0,02/11/4821 +3.58925,44.8193,4224,2,20,12,20,13,3.65,5.0,fr,21651,84,904812,1,2,Active Shallow Crust,0.0,89.99044,0.0,02/20/4224 +3.58925,44.8193,13,5,2,12,20,46,3.65,5.0,fr,21652,0,904812,1,2,Active Shallow Crust,0.0,89.99044,0.0,05/02/0013 +3.58925,44.8193,6672,12,16,18,27,22,3.85,5.0,fr,21653,133,904842,1,1,Active Shallow Crust,0.0,89.98975,-90.0,12/16/6672 +3.58925,44.8193,8053,5,26,5,11,17,3.95,5.0,fr,21654,161,904848,1,2,Active Shallow Crust,0.0,89.99097,0.0,05/26/8053 +3.58925,44.8193,799,1,8,9,7,0,3.95,5.0,fr,21655,15,904848,1,2,Active Shallow Crust,0.0,89.99097,0.0,01/08/0799 +3.58925,44.8193,1594,2,3,7,36,17,3.95,15.0,fr,21656,31,904849,1,1,Active Shallow Crust,0.0,89.99097,0.0,02/03/1594 +3.58925,44.8193,5409,2,21,21,18,9,4.05,5.0,fr,21657,108,904869,1,1,Active Shallow Crust,128.8911,89.99296,0.0,02/21/5409 +3.58925,44.8193,2617,4,27,9,46,49,4.45,5.0,fr,21658,52,904908,1,1,Active Shallow Crust,0.0,89.98985,0.0,04/27/2617 +3.58925,44.8193,3346,7,4,5,17,37,4.45,15.0,fr,21659,66,904912,1,1,Active Shallow Crust,240.005,57.99454,0.0,07/04/3346 +3.58925,44.8193,8378,3,31,23,19,30,4.45,5.0,fr,21660,167,904917,1,1,Active Shallow Crust,128.8923,89.99365,0.0,03/31/8378 +3.58925,44.8193,202,5,21,11,11,16,4.75,5.0,fr,21661,4,904950,1,1,Active Shallow Crust,0.0,89.99001,-90.0,05/21/0202 +3.58925,44.8193,7725,11,4,0,4,8,5.25,5.0,fr,21662,154,905004,1,1,Active Shallow Crust,0.0,89.98989,0.0,11/04/7725 +3.58925,44.8193,1069,9,8,1,22,13,6.55,15.0,fr,21663,21,905161,1,1,Active Shallow Crust,359.9999,89.99004,0.0,09/08/1069 +-2.30219,43.34097,77,5,6,10,42,4,3.55,5.0,fr,21664,1,905280,1,1,Active Shallow Crust,0.0,89.989,0.0,05/06/0077 +-2.30219,43.34097,339,9,14,2,19,19,3.55,5.0,fr,21665,6,905283,1,1,Active Shallow Crust,240.0125,57.99814,0.0,09/14/0339 +-2.30219,43.34097,9474,1,15,22,8,43,3.65,15.0,fr,21666,189,905299,1,1,Active Shallow Crust,0.0,89.99008,-90.0,01/15/9474 +-2.30219,43.34097,9042,9,29,0,22,31,3.65,5.0,fr,21667,180,905301,1,1,Active Shallow Crust,128.9007,89.96346,0.0,09/29/9042 +-2.30219,43.34097,3699,5,17,3,37,15,3.75,5.0,fr,21668,73,905304,1,1,Active Shallow Crust,0.0,89.99126,0.0,05/17/3699 +-2.30219,43.34097,4243,8,5,2,8,26,3.75,5.0,fr,21669,84,905313,1,1,Active Shallow Crust,128.8967,89.96744,0.0,08/05/4243 +-2.30219,43.34097,5279,5,1,23,39,20,3.85,5.0,fr,21670,105,905316,1,1,Active Shallow Crust,0.0,89.98962,0.0,05/01/5279 +-2.30219,43.34097,5320,12,12,22,51,32,3.85,5.0,fr,21671,106,905322,1,1,Active Shallow Crust,0.0,89.98949,-90.0,12/12/5320 +-2.30219,43.34097,4413,6,19,16,28,50,3.95,5.0,fr,21672,88,905328,1,1,Active Shallow Crust,0.0,89.99075,0.0,06/19/4413 +-2.30219,43.34097,596,8,12,19,36,24,4.35,15.0,fr,21673,11,905377,1,1,Active Shallow Crust,0.0,89.98978,0.0,08/12/0596 +-2.30219,43.34097,6863,2,11,6,29,54,4.65,15.0,fr,21674,137,905422,1,1,Active Shallow Crust,128.8921,89.98705,0.0,02/11/6863 +-2.30219,43.34097,7710,3,22,11,12,41,4.85,5.0,fr,21675,154,905439,1,1,Active Shallow Crust,240.0159,58.00207,0.0,03/22/7710 +-2.302185,43.34097,6982,11,9,21,26,19,6.35,7.567806,fr,21676,139,905616,1,1,Active Shallow Crust,0.0,89.98999,0.0,11/09/6982 +4.36488,51.87435,7337,9,19,18,16,2,3.95,15.0,fr,21677,146,905809,1,1,Active Shallow Crust,0.0,89.98821,0.0,09/19/7337 +4.36488,51.87435,47,5,28,5,49,6,4.05,5.0,fr,21678,0,905820,1,1,Active Shallow Crust,0.0,89.98949,0.0,05/28/0047 +-1.71237,46.96632,3223,5,28,6,3,8,3.55,5.0,fr,21679,64,907680,1,5,Active Shallow Crust,0.0,89.98968,0.0,05/28/3223 +-1.71237,46.96632,408,9,28,4,2,5,3.55,5.0,fr,21680,8,907680,1,5,Active Shallow Crust,0.0,89.98968,0.0,09/28/0408 +-1.71237,46.96632,4387,10,31,3,58,9,3.55,5.0,fr,21681,87,907680,1,5,Active Shallow Crust,0.0,89.98968,0.0,10/31/4387 +-1.71237,46.96632,9074,3,29,10,44,16,3.55,5.0,fr,21682,181,907680,1,5,Active Shallow Crust,0.0,89.98968,0.0,03/29/9074 +-1.71237,46.96632,9558,4,4,21,45,22,3.55,5.0,fr,21683,191,907680,1,5,Active Shallow Crust,0.0,89.98968,0.0,04/04/9558 +-1.71237,46.96632,931,7,13,9,43,27,3.55,5.0,fr,21684,18,907683,1,1,Active Shallow Crust,240.0121,57.99832,0.0,07/13/0931 +-1.71237,46.96632,6778,2,10,23,18,3,3.55,15.0,fr,21685,135,907684,1,1,Active Shallow Crust,240.0121,57.99832,0.0,02/10/6778 +-1.71237,46.96632,1657,8,1,22,0,31,3.55,5.0,fr,21686,33,907686,1,2,Active Shallow Crust,0.0,89.98956,-90.0,08/01/1657 +-1.71237,46.96632,2670,5,10,2,7,55,3.55,5.0,fr,21687,53,907686,1,2,Active Shallow Crust,0.0,89.98956,-90.0,05/10/2670 +-1.71237,46.96632,5124,1,18,17,1,0,3.55,27.5,fr,21688,102,907688,1,1,Active Shallow Crust,0.0,89.98956,-90.0,01/18/5124 +-1.71237,46.96632,8978,3,29,14,51,4,3.55,5.0,fr,21689,179,907689,1,1,Active Shallow Crust,128.8961,89.99398,0.0,03/29/8978 +-1.71237,46.96632,8526,9,13,11,55,11,3.65,5.0,fr,21690,170,907692,1,1,Active Shallow Crust,0.0,89.98927,0.0,09/13/8526 +-1.71237,46.96632,9776,5,7,20,34,45,3.65,5.0,fr,21691,195,907695,1,1,Active Shallow Crust,240.0012,58.01281,0.0,05/07/9776 +-1.71237,46.96632,8489,8,8,15,2,0,3.65,15.0,fr,21692,169,907696,1,1,Active Shallow Crust,240.0012,58.01281,0.0,08/08/8489 +-1.71237,46.96632,6231,1,17,4,16,5,3.65,15.0,fr,21693,124,907699,1,1,Active Shallow Crust,0.0,89.99069,-90.0,01/17/6231 +-1.71237,46.96632,6054,7,25,9,43,57,3.65,5.0,fr,21694,121,907701,1,1,Active Shallow Crust,128.9,89.96353,0.0,07/25/6054 +-1.71237,46.96632,4996,7,22,10,50,3,3.75,15.0,fr,21695,99,907705,1,1,Active Shallow Crust,0.0,89.99043,0.0,07/22/4996 +-1.71237,46.96632,969,8,1,0,38,29,3.85,5.0,fr,21696,19,907716,1,1,Active Shallow Crust,0.0,89.99026,0.0,08/01/0969 +-1.71237,46.96632,8306,3,16,15,30,10,3.85,5.0,fr,21697,166,907722,1,1,Active Shallow Crust,0.0,89.99014,-90.0,03/16/8306 +-1.71237,46.96632,7150,1,31,11,9,16,3.95,5.0,fr,21698,142,907728,1,1,Active Shallow Crust,0.0,89.99023,0.0,01/31/7150 +-1.71237,46.96632,5036,11,20,1,9,59,3.95,15.0,fr,21699,100,907729,1,1,Active Shallow Crust,0.0,89.99023,0.0,11/20/5036 +-1.71237,46.96632,714,9,4,11,17,41,4.05,5.0,fr,21700,14,907740,1,2,Active Shallow Crust,0.0,89.99033,0.0,09/04/0714 +-1.71237,46.96632,3652,1,23,1,53,40,4.05,5.0,fr,21701,73,907740,1,2,Active Shallow Crust,0.0,89.99033,0.0,01/23/3652 +-1.71237,46.96632,5706,11,17,21,38,37,4.05,15.0,fr,21702,114,907741,1,1,Active Shallow Crust,0.0,89.99033,0.0,11/17/5706 +-1.71237,46.96632,3789,6,13,10,51,27,4.05,5.0,fr,21703,75,907746,1,1,Active Shallow Crust,0.0,89.99021,-90.0,06/13/3789 +-1.71237,46.96632,5120,9,10,2,57,5,4.05,5.0,fr,21704,102,907749,1,1,Active Shallow Crust,128.8903,89.99371,0.0,09/10/5120 +-1.71237,46.96632,9601,2,9,4,4,33,4.15,5.0,fr,21705,192,907761,1,1,Active Shallow Crust,128.8975,89.99353,0.0,02/09/9601 +-1.71237,46.96632,9456,4,14,14,5,17,4.25,27.5,fr,21706,189,907772,1,1,Active Shallow Crust,0.0,89.98989,-90.0,04/14/9456 +-1.71237,46.96632,902,2,17,4,57,40,4.35,5.0,fr,21707,18,907782,1,1,Active Shallow Crust,0.0,89.9903,-90.0,02/17/0902 +-1.71237,46.96632,9453,4,26,18,30,50,4.45,27.5,fr,21708,189,907790,1,1,Active Shallow Crust,0.0,89.99023,0.0,04/26/9453 +-1.71237,46.96632,358,2,3,11,35,51,4.55,5.0,fr,21709,7,907809,1,1,Active Shallow Crust,128.8937,89.98579,0.0,02/03/0358 +-1.712354,46.96632,9492,12,1,7,13,47,6.75,11.99416,fr,21710,189,908064,1,1,Active Shallow Crust,360.0,89.99,0.0,12/01/9492 +5.34792,43.21239,4486,1,1,2,32,27,3.55,5.0,fr,21711,89,908160,1,1,Active Shallow Crust,0.0,89.99265,0.0,01/01/4486 +5.34792,43.21239,2718,11,20,21,28,8,3.55,5.0,fr,21712,54,908163,1,1,Active Shallow Crust,240.0126,57.99699,0.0,11/20/2718 +5.34792,43.21239,4553,3,2,12,18,25,3.55,5.0,fr,21713,91,908169,1,1,Active Shallow Crust,128.8965,89.99265,0.0,03/02/4553 +5.34792,43.21239,3461,8,30,20,9,4,3.65,5.0,fr,21714,69,908172,1,1,Active Shallow Crust,0.0,89.9869,0.0,08/30/3461 +5.34792,43.21239,4434,5,16,10,22,0,3.65,15.0,fr,21715,88,908179,1,1,Active Shallow Crust,0.0,89.98675,-90.0,05/16/4434 +5.34792,43.21239,5404,4,9,10,40,50,3.85,5.0,fr,21716,108,908196,1,1,Active Shallow Crust,0.0,89.98959,0.0,04/09/5404 +5.34792,43.21239,3386,5,14,6,7,52,3.95,5.0,fr,21717,67,908211,1,1,Active Shallow Crust,240.0198,58.00535,0.0,05/14/3386 +5.34792,43.21239,4200,6,1,5,23,5,3.95,27.5,fr,21718,83,908216,1,1,Active Shallow Crust,0.0,89.99062,-90.0,06/01/4200 +5.34792,43.21239,7507,6,3,10,5,5,4.05,5.0,fr,21719,150,908220,1,1,Active Shallow Crust,0.0,89.99174,0.0,06/03/7507 +5.34792,43.21239,717,5,18,8,36,6,4.05,5.0,fr,21720,14,908226,1,1,Active Shallow Crust,0.0,89.99164,-90.0,05/18/0717 +8.00681,44.99191,8754,12,1,14,26,5,3.55,5.0,fr,21721,175,908646,1,1,Active Shallow Crust,0.0,89.98557,-90.0,12/01/8754 +8.00681,44.99191,7796,11,11,15,31,51,3.65,5.0,fr,21722,155,908652,1,2,Active Shallow Crust,0.0,89.98729,0.0,11/11/7796 +8.00681,44.99191,4490,12,25,1,42,9,3.65,5.0,fr,21723,89,908652,1,2,Active Shallow Crust,0.0,89.98729,0.0,12/25/4490 +8.00681,44.99191,2729,6,5,10,29,42,3.65,5.0,fr,21724,54,908655,1,1,Active Shallow Crust,240.0005,58.01152,0.0,06/05/2729 +8.00681,44.99191,3171,9,11,5,46,31,3.85,15.0,fr,21725,63,908677,1,1,Active Shallow Crust,0.0,89.98991,0.0,09/11/3171 +8.00681,44.99191,696,5,6,11,57,19,3.85,5.0,fr,21726,13,908679,1,1,Active Shallow Crust,240.0117,57.99756,0.0,05/06/0696 +8.00681,44.99191,4577,6,24,4,2,2,3.85,15.0,fr,21727,91,908686,1,1,Active Shallow Crust,128.8943,89.99495,0.0,06/24/4577 +8.00681,44.99191,9346,4,7,17,9,33,3.95,15.0,fr,21728,186,908689,1,1,Active Shallow Crust,0.0,89.991,0.0,04/07/9346 +8.00681,44.99191,7567,3,13,11,17,12,4.05,5.0,fr,21729,151,908700,1,1,Active Shallow Crust,0.0,89.99198,0.0,03/13/7567 +8.00681,44.99191,6518,12,23,7,12,16,4.25,5.0,fr,21730,130,908730,1,1,Active Shallow Crust,0.0,89.98711,-90.0,12/23/6518 +8.00681,44.99191,2754,6,16,22,16,45,4.55,15.0,fr,21731,55,908764,1,1,Active Shallow Crust,240.009,57.99736,0.0,06/16/2754 +5.47529,43.76226,3235,11,25,0,15,25,3.55,5.0,fr,21732,64,909120,1,1,Active Shallow Crust,0.0,89.99271,0.0,11/25/3235 +5.47529,43.76226,4395,11,3,2,20,41,3.55,5.0,fr,21733,87,909126,1,1,Active Shallow Crust,0.0,89.99263,-90.0,11/03/4395 +5.47529,43.76226,5774,5,26,3,11,20,3.65,5.0,fr,21734,115,909132,1,4,Active Shallow Crust,0.0,89.98701,0.0,05/26/5774 +5.47529,43.76226,9650,4,15,7,15,50,3.65,5.0,fr,21735,192,909132,1,4,Active Shallow Crust,0.0,89.98701,0.0,04/15/9650 +5.47529,43.76226,8184,5,31,17,59,4,3.65,5.0,fr,21736,163,909132,1,4,Active Shallow Crust,0.0,89.98701,0.0,05/31/8184 +5.47529,43.76226,8821,7,8,7,13,41,3.65,5.0,fr,21737,176,909132,1,4,Active Shallow Crust,0.0,89.98701,0.0,07/08/8821 +5.47529,43.76226,163,1,22,1,9,44,3.75,27.5,fr,21738,3,909146,1,1,Active Shallow Crust,0.0,89.98843,0.0,01/22/0163 +5.47529,43.76226,5366,1,24,11,16,30,3.85,5.0,fr,21739,107,909156,1,2,Active Shallow Crust,0.0,89.98969,0.0,01/24/5366 +5.47529,43.76226,9115,11,20,18,18,11,3.85,5.0,fr,21740,182,909156,1,2,Active Shallow Crust,0.0,89.98969,0.0,11/20/9115 +5.47529,43.76226,8587,1,16,7,8,24,3.85,15.0,fr,21741,171,909157,1,2,Active Shallow Crust,0.0,89.98969,0.0,01/16/8587 +5.47529,43.76226,2097,2,17,8,45,8,3.85,15.0,fr,21742,41,909157,1,2,Active Shallow Crust,0.0,89.98969,0.0,02/17/2097 +5.47529,43.76226,7519,9,27,20,58,8,3.95,15.0,fr,21743,150,909169,1,2,Active Shallow Crust,0.0,89.99081,0.0,09/27/7519 +5.47529,43.76226,4836,5,13,19,5,57,3.95,15.0,fr,21744,96,909169,1,2,Active Shallow Crust,0.0,89.99081,0.0,05/13/4836 +5.47529,43.76226,9088,9,3,14,55,16,4.05,5.0,fr,21745,181,909180,1,2,Active Shallow Crust,0.0,89.99181,0.0,09/03/9088 +5.47529,43.76226,8494,5,26,18,47,12,4.05,5.0,fr,21746,169,909180,1,2,Active Shallow Crust,0.0,89.99181,0.0,05/26/8494 +5.47529,43.76226,709,7,3,14,17,3,4.05,15.0,fr,21747,14,909181,1,1,Active Shallow Crust,0.0,89.99181,0.0,07/03/0709 +5.47529,43.76226,9639,6,13,18,32,36,4.05,27.5,fr,21748,192,909191,1,1,Active Shallow Crust,128.8918,89.99386,0.0,06/13/9639 +5.47529,43.76226,8629,2,17,8,4,4,4.15,15.0,fr,21749,172,909193,1,2,Active Shallow Crust,0.0,89.98905,0.0,02/17/8629 +5.47529,43.76226,7298,3,30,19,53,37,4.15,15.0,fr,21750,145,909193,1,2,Active Shallow Crust,0.0,89.98905,0.0,03/30/7298 +5.47529,43.76226,7621,5,29,17,27,24,4.25,15.0,fr,21751,152,909205,1,1,Active Shallow Crust,0.0,89.99024,0.0,05/29/7621 +5.47529,43.76226,9710,4,14,15,42,23,4.35,27.5,fr,21752,194,909218,1,1,Active Shallow Crust,0.0,89.9913,0.0,04/14/9710 +5.47529,43.76226,3846,11,30,12,7,57,4.35,27.5,fr,21753,76,909224,1,1,Active Shallow Crust,0.0,89.9912,-90.0,11/30/3846 +5.47529,43.76226,1423,6,5,14,57,35,4.55,15.0,fr,21754,28,909241,1,1,Active Shallow Crust,0.0,89.99078,0.0,06/05/1423 +5.47529,43.76226,8441,8,29,19,33,30,4.85,5.0,fr,21755,168,909279,1,1,Active Shallow Crust,240.0161,58.00232,0.0,08/29/8441 +5.47529,43.76226,2983,8,12,18,44,4,5.15,5.0,fr,21756,59,909312,1,1,Active Shallow Crust,0.0,89.98961,0.0,08/12/2983 +5.47529,43.76226,6167,3,16,14,57,10,6.35,15.0,fr,21757,123,909457,1,1,Active Shallow Crust,359.9998,89.99014,0.0,03/16/6167 +3.74104,45.75623,1680,4,6,4,15,49,3.55,5.0,fr,21758,33,909606,1,1,Active Shallow Crust,0.0,89.98933,-90.0,04/06/1680 +3.74104,45.75623,8263,1,9,3,40,42,3.65,5.0,fr,21759,165,909612,1,1,Active Shallow Crust,0.0,89.99059,0.0,01/09/8263 +3.74104,45.75623,94,2,16,17,13,11,3.75,5.0,fr,21760,1,909624,1,1,Active Shallow Crust,0.0,89.98882,0.0,02/16/0094 +3.74104,45.75623,4705,9,24,13,51,27,3.75,15.0,fr,21761,94,909625,1,1,Active Shallow Crust,0.0,89.98882,0.0,09/24/4705 +3.74104,45.75623,1214,12,4,9,16,43,3.75,27.5,fr,21762,24,909635,1,1,Active Shallow Crust,128.8961,89.96748,0.0,12/04/1214 +3.74104,45.75623,5960,10,6,0,48,4,4.05,15.0,fr,21763,119,909661,1,1,Active Shallow Crust,0.0,89.99011,0.0,10/06/5960 +3.74104,45.75623,5402,10,19,16,4,27,4.05,5.0,fr,21764,108,909663,1,1,Active Shallow Crust,240.0059,58.00564,0.0,10/19/5402 +3.74104,45.75623,2418,2,1,0,28,43,4.45,15.0,fr,21765,48,909709,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/01/2418 +4.41559,46.24356,1770,12,25,18,18,21,3.65,15.0,fr,21766,35,910102,1,1,Active Shallow Crust,128.8996,89.96352,0.0,12/25/1770 +4.41559,46.24356,5390,6,8,14,54,41,3.75,15.0,fr,21767,107,910105,1,1,Active Shallow Crust,0.0,89.98892,0.0,06/08/5390 +4.41559,46.24356,4351,7,6,1,25,25,3.85,15.0,fr,21768,87,910117,1,1,Active Shallow Crust,0.0,89.99013,0.0,07/06/4351 +4.41559,46.24356,8370,6,3,3,58,55,3.95,5.0,fr,21769,167,910128,1,1,Active Shallow Crust,0.0,89.9912,0.0,06/03/8370 +4.41559,46.24356,1979,8,27,2,28,25,3.95,15.0,fr,21770,39,910129,1,1,Active Shallow Crust,0.0,89.9912,0.0,08/27/1979 +4.41559,46.24356,633,9,21,22,10,45,4.15,5.0,fr,21771,12,910158,1,1,Active Shallow Crust,0.0,89.9894,-90.0,09/21/0633 +4.41559,46.24356,4822,8,14,7,43,48,4.35,5.0,fr,21772,96,910176,1,1,Active Shallow Crust,0.0,89.98889,0.0,08/14/4822 +4.41559,46.24356,3941,5,30,10,24,15,4.55,15.0,fr,21773,78,910201,1,1,Active Shallow Crust,0.0,89.98898,0.0,05/30/3941 +4.41559,46.24356,3435,8,25,20,28,35,4.75,27.5,fr,21774,68,910232,1,1,Active Shallow Crust,0.0,89.98936,-90.0,08/25/3435 +-0.09454,43.57159,6369,10,23,5,17,18,3.55,15.0,fr,21775,127,910561,1,1,Active Shallow Crust,0.0,89.98995,0.0,10/23/6369 +-0.09454,43.57159,1412,10,2,22,28,56,3.65,15.0,fr,21776,28,910576,1,1,Active Shallow Crust,240.0008,58.01284,0.0,10/02/1412 +-0.09454,43.57159,4636,9,16,8,38,13,3.65,5.0,fr,21777,92,910578,1,1,Active Shallow Crust,0.0,89.99001,-90.0,09/16/4636 +-0.09454,43.57159,3136,8,22,16,52,42,3.75,5.0,fr,21778,62,910584,1,2,Active Shallow Crust,0.0,89.99003,0.0,08/22/3136 +-0.09454,43.57159,5743,2,13,14,39,57,3.75,5.0,fr,21779,114,910584,1,2,Active Shallow Crust,0.0,89.99003,0.0,02/13/5743 +-0.09454,43.57159,932,2,25,12,40,59,3.75,5.0,fr,21780,18,910593,1,1,Active Shallow Crust,128.8969,89.96735,0.0,02/25/0932 +-0.09454,43.57159,8618,12,16,14,41,39,3.85,15.0,fr,21781,172,910597,1,1,Active Shallow Crust,0.0,89.98997,0.0,12/16/8618 +-0.09454,43.57159,2831,3,11,17,58,16,3.85,5.0,fr,21782,56,910599,1,1,Active Shallow Crust,240.0105,57.99775,0.0,03/11/2831 +-0.09454,43.57159,4590,7,11,16,29,34,3.95,5.0,fr,21783,91,910608,1,1,Active Shallow Crust,0.0,89.98999,0.0,07/11/4590 +-0.09454,43.57159,8134,9,16,8,21,33,4.25,5.0,fr,21784,162,910644,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/16/8134 +7.56805,47.41973,3614,8,10,1,57,42,3.55,5.0,fr,21785,72,911520,1,10,Active Shallow Crust,0.0,89.99318,0.0,08/10/3614 +7.56805,47.41973,3891,9,17,17,31,40,3.55,5.0,fr,21786,77,911520,1,10,Active Shallow Crust,0.0,89.99318,0.0,09/17/3891 +7.56805,47.41973,1021,6,12,20,34,39,3.55,5.0,fr,21787,20,911520,1,10,Active Shallow Crust,0.0,89.99318,0.0,06/12/1021 +7.56805,47.41973,6727,1,5,8,50,0,3.55,5.0,fr,21788,134,911520,1,10,Active Shallow Crust,0.0,89.99318,0.0,01/05/6727 +7.56805,47.41973,3824,12,25,18,36,35,3.55,5.0,fr,21789,76,911520,1,10,Active Shallow Crust,0.0,89.99318,0.0,12/25/3824 +7.56805,47.41973,3110,4,12,9,28,54,3.55,5.0,fr,21790,62,911520,1,10,Active Shallow Crust,0.0,89.99318,0.0,04/12/3110 +7.56805,47.41973,7617,6,3,13,46,2,3.55,5.0,fr,21791,152,911520,1,10,Active Shallow Crust,0.0,89.99318,0.0,06/03/7617 +7.56805,47.41973,556,12,19,23,53,43,3.55,5.0,fr,21792,11,911520,1,10,Active Shallow Crust,0.0,89.99318,0.0,12/19/0556 +7.56805,47.41973,6049,6,28,0,46,58,3.55,5.0,fr,21793,120,911520,1,10,Active Shallow Crust,0.0,89.99318,0.0,06/28/6049 +7.56805,47.41973,5341,8,28,17,44,0,3.55,5.0,fr,21794,106,911520,1,10,Active Shallow Crust,0.0,89.99318,0.0,08/28/5341 +7.56805,47.41973,2145,1,10,23,39,2,3.55,15.0,fr,21795,42,911521,1,6,Active Shallow Crust,0.0,89.99318,0.0,01/10/2145 +7.56805,47.41973,2720,11,16,0,40,14,3.55,15.0,fr,21796,54,911521,1,6,Active Shallow Crust,0.0,89.99318,0.0,11/16/2720 +7.56805,47.41973,5481,2,25,8,21,33,3.55,15.0,fr,21797,109,911521,1,6,Active Shallow Crust,0.0,89.99318,0.0,02/25/5481 +7.56805,47.41973,8469,2,19,19,46,59,3.55,15.0,fr,21798,169,911521,1,6,Active Shallow Crust,0.0,89.99318,0.0,02/19/8469 +7.56805,47.41973,6841,6,29,15,52,32,3.55,15.0,fr,21799,136,911521,1,6,Active Shallow Crust,0.0,89.99318,0.0,06/29/6841 +7.56805,47.41973,2237,11,11,18,2,38,3.55,15.0,fr,21800,44,911521,1,6,Active Shallow Crust,0.0,89.99318,0.0,11/11/2237 +7.56805,47.41973,1534,7,25,2,45,47,3.55,27.5,fr,21801,30,911522,1,5,Active Shallow Crust,0.0,89.99318,0.0,07/25/1534 +7.56805,47.41973,3002,2,16,0,12,33,3.55,27.5,fr,21802,60,911522,1,5,Active Shallow Crust,0.0,89.99318,0.0,02/16/3002 +7.56805,47.41973,9449,5,28,7,1,29,3.55,27.5,fr,21803,188,911522,1,5,Active Shallow Crust,0.0,89.99318,0.0,05/28/9449 +7.56805,47.41973,4034,6,10,19,43,11,3.55,27.5,fr,21804,80,911522,1,5,Active Shallow Crust,0.0,89.99318,0.0,06/10/4034 +7.56805,47.41973,2925,4,15,16,49,50,3.55,27.5,fr,21805,58,911522,1,5,Active Shallow Crust,0.0,89.99318,0.0,04/15/2925 +7.56805,47.41973,1394,1,3,4,47,43,3.55,5.0,fr,21806,27,911523,1,3,Active Shallow Crust,240.0118,57.99812,0.0,01/03/1394 +7.56805,47.41973,7109,3,24,9,8,37,3.55,5.0,fr,21807,142,911523,1,3,Active Shallow Crust,240.0118,57.99812,0.0,03/24/7109 +7.56805,47.41973,7860,10,10,7,38,48,3.55,5.0,fr,21808,157,911523,1,3,Active Shallow Crust,240.0118,57.99812,0.0,10/10/7860 +7.56805,47.41973,9323,9,12,23,0,41,3.55,5.0,fr,21809,186,911526,1,2,Active Shallow Crust,0.0,89.9931,-90.0,09/12/9323 +7.56805,47.41973,3537,6,30,11,36,18,3.55,5.0,fr,21810,70,911526,1,2,Active Shallow Crust,0.0,89.9931,-90.0,06/30/3537 +7.56805,47.41973,3634,2,9,15,16,10,3.55,15.0,fr,21811,72,911527,1,1,Active Shallow Crust,0.0,89.9931,-90.0,02/09/3634 +7.56805,47.41973,2613,9,19,18,10,56,3.55,5.0,fr,21812,52,911529,1,1,Active Shallow Crust,128.8965,89.99318,0.0,09/19/2613 +7.56805,47.41973,8577,4,1,3,10,5,3.55,15.0,fr,21813,171,911530,1,1,Active Shallow Crust,128.8965,89.99318,0.0,04/01/8577 +7.56805,47.41973,9192,11,13,9,53,17,3.65,5.0,fr,21814,183,911532,1,13,Active Shallow Crust,0.0,89.98784,0.0,11/13/9192 +7.56805,47.41973,9846,8,25,3,1,25,3.65,5.0,fr,21815,196,911532,1,13,Active Shallow Crust,0.0,89.98784,0.0,08/25/9846 +7.56805,47.41973,3405,10,7,15,7,33,3.65,5.0,fr,21816,68,911532,1,13,Active Shallow Crust,0.0,89.98784,0.0,10/07/3405 +7.56805,47.41973,3495,7,22,2,13,49,3.65,5.0,fr,21817,69,911532,1,13,Active Shallow Crust,0.0,89.98784,0.0,07/22/3495 +7.56805,47.41973,8206,12,28,21,45,44,3.65,5.0,fr,21818,164,911532,1,13,Active Shallow Crust,0.0,89.98784,0.0,12/28/8206 +7.56805,47.41973,749,11,20,18,42,20,3.65,5.0,fr,21819,14,911532,1,13,Active Shallow Crust,0.0,89.98784,0.0,11/20/0749 +7.56805,47.41973,8911,3,21,21,3,58,3.65,5.0,fr,21820,178,911532,1,13,Active Shallow Crust,0.0,89.98784,0.0,03/21/8911 +7.56805,47.41973,4556,8,7,20,15,56,3.65,5.0,fr,21821,91,911532,1,13,Active Shallow Crust,0.0,89.98784,0.0,08/07/4556 +7.56805,47.41973,34,4,25,1,6,27,3.65,5.0,fr,21822,0,911532,1,13,Active Shallow Crust,0.0,89.98784,0.0,04/25/0034 +7.56805,47.41973,7748,2,6,7,32,14,3.65,5.0,fr,21823,154,911532,1,13,Active Shallow Crust,0.0,89.98784,0.0,02/06/7748 +7.56805,47.41973,8085,11,12,10,24,31,3.65,5.0,fr,21824,161,911532,1,13,Active Shallow Crust,0.0,89.98784,0.0,11/12/8085 +7.56805,47.41973,6340,5,4,22,5,18,3.65,5.0,fr,21825,126,911532,1,13,Active Shallow Crust,0.0,89.98784,0.0,05/04/6340 +7.56805,47.41973,2135,1,28,6,51,4,3.65,5.0,fr,21826,42,911532,1,13,Active Shallow Crust,0.0,89.98784,0.0,01/28/2135 +7.56805,47.41973,4303,8,20,5,7,57,3.65,15.0,fr,21827,86,911533,1,6,Active Shallow Crust,0.0,89.98784,0.0,08/20/4303 +7.56805,47.41973,4977,8,10,8,54,16,3.65,15.0,fr,21828,99,911533,1,6,Active Shallow Crust,0.0,89.98784,0.0,08/10/4977 +7.56805,47.41973,5508,3,31,3,29,42,3.65,15.0,fr,21829,110,911533,1,6,Active Shallow Crust,0.0,89.98784,0.0,03/31/5508 +7.56805,47.41973,9811,1,19,13,6,47,3.65,15.0,fr,21830,196,911533,1,6,Active Shallow Crust,0.0,89.98784,0.0,01/19/9811 +7.56805,47.41973,618,4,2,20,49,11,3.65,15.0,fr,21831,12,911533,1,6,Active Shallow Crust,0.0,89.98784,0.0,04/02/0618 +7.56805,47.41973,2031,9,4,14,18,3,3.65,15.0,fr,21832,40,911533,1,6,Active Shallow Crust,0.0,89.98784,0.0,09/04/2031 +7.56805,47.41973,3557,9,15,18,2,54,3.65,27.5,fr,21833,71,911534,1,1,Active Shallow Crust,0.0,89.98784,0.0,09/15/3557 +7.56805,47.41973,4403,1,6,18,56,47,3.65,5.0,fr,21834,88,911535,1,1,Active Shallow Crust,240.0011,58.01279,0.0,01/06/4403 +7.56805,47.41973,4836,11,1,15,9,33,3.65,15.0,fr,21835,96,911536,1,2,Active Shallow Crust,240.0011,58.01279,0.0,11/01/4836 +7.56805,47.41973,9912,7,18,11,30,41,3.65,15.0,fr,21836,198,911536,1,2,Active Shallow Crust,240.0011,58.01279,0.0,07/18/9912 +7.56805,47.41973,4764,6,8,23,46,56,3.65,5.0,fr,21837,95,911538,1,4,Active Shallow Crust,0.0,89.98769,-90.0,06/08/4764 +7.56805,47.41973,193,7,13,9,12,40,3.65,5.0,fr,21838,3,911538,1,4,Active Shallow Crust,0.0,89.98769,-90.0,07/13/0193 +7.56805,47.41973,8611,7,19,5,30,34,3.65,5.0,fr,21839,172,911538,1,4,Active Shallow Crust,0.0,89.98769,-90.0,07/19/8611 +7.56805,47.41973,7335,8,16,17,42,41,3.65,5.0,fr,21840,146,911538,1,4,Active Shallow Crust,0.0,89.98769,-90.0,08/16/7335 +7.56805,47.41973,7504,8,1,18,8,32,3.65,5.0,fr,21841,150,911541,1,1,Active Shallow Crust,128.9005,89.96354,0.0,08/01/7504 +7.56805,47.41973,1207,10,2,7,18,17,3.65,15.0,fr,21842,24,911542,1,1,Active Shallow Crust,128.9005,89.96354,0.0,10/02/1207 +7.56805,47.41973,9200,11,19,14,26,50,3.65,27.5,fr,21843,183,911543,1,1,Active Shallow Crust,128.9005,89.96354,0.0,11/19/9200 +7.56805,47.41973,5637,2,14,4,33,5,3.75,5.0,fr,21844,112,911544,1,8,Active Shallow Crust,0.0,89.98916,0.0,02/14/5637 +7.56805,47.41973,5108,12,15,12,35,25,3.75,5.0,fr,21845,102,911544,1,8,Active Shallow Crust,0.0,89.98916,0.0,12/15/5108 +7.56805,47.41973,2195,12,2,13,18,12,3.75,5.0,fr,21846,43,911544,1,8,Active Shallow Crust,0.0,89.98916,0.0,12/02/2195 +7.56805,47.41973,8128,12,13,14,17,33,3.75,5.0,fr,21847,162,911544,1,8,Active Shallow Crust,0.0,89.98916,0.0,12/13/8128 +7.56805,47.41973,3855,4,20,1,0,5,3.75,5.0,fr,21848,77,911544,1,8,Active Shallow Crust,0.0,89.98916,0.0,04/20/3855 +7.56805,47.41973,441,4,29,18,28,38,3.75,5.0,fr,21849,8,911544,1,8,Active Shallow Crust,0.0,89.98916,0.0,04/29/0441 +7.56805,47.41973,7276,11,20,1,50,19,3.75,5.0,fr,21850,145,911544,1,8,Active Shallow Crust,0.0,89.98916,0.0,11/20/7276 +7.56805,47.41973,6463,10,11,4,47,4,3.75,5.0,fr,21851,129,911544,1,8,Active Shallow Crust,0.0,89.98916,0.0,10/11/6463 +7.56805,47.41973,5686,12,10,4,11,4,3.75,15.0,fr,21852,113,911545,1,5,Active Shallow Crust,0.0,89.98916,0.0,12/10/5686 +7.56805,47.41973,6763,8,2,21,39,25,3.75,15.0,fr,21853,135,911545,1,5,Active Shallow Crust,0.0,89.98916,0.0,08/02/6763 +7.56805,47.41973,261,3,29,1,5,26,3.75,15.0,fr,21854,5,911545,1,5,Active Shallow Crust,0.0,89.98916,0.0,03/29/0261 +7.56805,47.41973,7686,12,17,16,42,27,3.75,15.0,fr,21855,153,911545,1,5,Active Shallow Crust,0.0,89.98916,0.0,12/17/7686 +7.56805,47.41973,1461,12,3,6,18,47,3.75,15.0,fr,21856,29,911545,1,5,Active Shallow Crust,0.0,89.98916,0.0,12/03/1461 +7.56805,47.41973,5327,3,30,22,25,21,3.75,27.5,fr,21857,106,911546,1,1,Active Shallow Crust,0.0,89.98916,0.0,03/30/5327 +7.56805,47.41973,4169,2,4,9,37,57,3.75,5.0,fr,21858,83,911547,1,5,Active Shallow Crust,240.008,58.0177,0.0,02/04/4169 +7.56805,47.41973,8355,1,31,21,24,6,3.75,5.0,fr,21859,167,911547,1,5,Active Shallow Crust,240.008,58.0177,0.0,01/31/8355 +7.56805,47.41973,4974,8,27,14,16,19,3.75,5.0,fr,21860,99,911547,1,5,Active Shallow Crust,240.008,58.0177,0.0,08/27/4974 +7.56805,47.41973,4862,9,22,17,11,56,3.75,5.0,fr,21861,97,911547,1,5,Active Shallow Crust,240.008,58.0177,0.0,09/22/4862 +7.56805,47.41973,7621,9,5,7,19,59,3.75,5.0,fr,21862,152,911547,1,5,Active Shallow Crust,240.008,58.0177,0.0,09/05/7621 +7.56805,47.41973,5501,11,30,3,39,30,3.75,27.5,fr,21863,110,911549,1,3,Active Shallow Crust,240.008,58.0177,0.0,11/30/5501 +7.56805,47.41973,1758,8,2,10,27,35,3.75,27.5,fr,21864,35,911549,1,3,Active Shallow Crust,240.008,58.0177,0.0,08/02/1758 +7.56805,47.41973,6198,5,4,6,5,55,3.75,27.5,fr,21865,123,911549,1,3,Active Shallow Crust,240.008,58.0177,0.0,05/04/6198 +7.56805,47.41973,7601,1,12,15,59,57,3.75,5.0,fr,21866,152,911550,1,1,Active Shallow Crust,0.0,89.98904,-90.0,01/12/7601 +7.56805,47.41973,2745,9,6,23,47,23,3.75,5.0,fr,21867,54,911553,1,2,Active Shallow Crust,128.8958,89.96751,0.0,09/06/2745 +7.56805,47.41973,8822,6,28,22,51,29,3.75,5.0,fr,21868,176,911553,1,2,Active Shallow Crust,128.8958,89.96751,0.0,06/28/8822 +7.56805,47.41973,3308,12,20,2,22,45,3.75,15.0,fr,21869,66,911554,1,1,Active Shallow Crust,128.8958,89.96751,0.0,12/20/3308 +7.56805,47.41973,1465,7,27,23,30,5,3.85,5.0,fr,21870,29,911556,1,8,Active Shallow Crust,0.0,89.99034,0.0,07/27/1465 +7.56805,47.41973,7290,8,27,19,1,34,3.85,5.0,fr,21871,145,911556,1,8,Active Shallow Crust,0.0,89.99034,0.0,08/27/7290 +7.56805,47.41973,7336,5,30,14,32,6,3.85,5.0,fr,21872,146,911556,1,8,Active Shallow Crust,0.0,89.99034,0.0,05/30/7336 +7.56805,47.41973,5365,6,15,23,8,41,3.85,5.0,fr,21873,107,911556,1,8,Active Shallow Crust,0.0,89.99034,0.0,06/15/5365 +7.56805,47.41973,3699,12,7,20,25,55,3.85,5.0,fr,21874,73,911556,1,8,Active Shallow Crust,0.0,89.99034,0.0,12/07/3699 +7.56805,47.41973,6322,7,29,8,16,53,3.85,5.0,fr,21875,126,911556,1,8,Active Shallow Crust,0.0,89.99034,0.0,07/29/6322 +7.56805,47.41973,22,7,6,18,16,51,3.85,5.0,fr,21876,0,911556,1,8,Active Shallow Crust,0.0,89.99034,0.0,07/06/0022 +7.56805,47.41973,318,2,22,13,44,4,3.85,5.0,fr,21877,6,911556,1,8,Active Shallow Crust,0.0,89.99034,0.0,02/22/0318 +7.56805,47.41973,4618,11,26,1,29,30,3.85,15.0,fr,21878,92,911557,1,3,Active Shallow Crust,0.0,89.99034,0.0,11/26/4618 +7.56805,47.41973,6220,12,30,19,36,33,3.85,15.0,fr,21879,124,911557,1,3,Active Shallow Crust,0.0,89.99034,0.0,12/30/6220 +7.56805,47.41973,1330,1,14,17,47,7,3.85,15.0,fr,21880,26,911557,1,3,Active Shallow Crust,0.0,89.99034,0.0,01/14/1330 +7.56805,47.41973,6717,8,18,10,29,14,3.85,27.5,fr,21881,134,911558,1,2,Active Shallow Crust,0.0,89.99034,0.0,08/18/6717 +7.56805,47.41973,7913,5,27,10,45,19,3.85,27.5,fr,21882,158,911558,1,2,Active Shallow Crust,0.0,89.99034,0.0,05/27/7913 +7.56805,47.41973,9538,10,29,17,51,51,3.85,5.0,fr,21883,190,911559,1,1,Active Shallow Crust,240.0114,57.99844,0.0,10/29/9538 +7.56805,47.41973,4431,2,7,0,59,10,3.85,15.0,fr,21884,88,911560,1,2,Active Shallow Crust,240.0114,57.99844,0.0,02/07/4431 +7.56805,47.41973,7669,3,25,7,15,28,3.85,15.0,fr,21885,153,911560,1,2,Active Shallow Crust,240.0114,57.99844,0.0,03/25/7669 +7.56805,47.41973,8006,6,6,0,50,27,3.95,5.0,fr,21886,160,911568,1,2,Active Shallow Crust,0.0,89.99139,0.0,06/06/8006 +7.56805,47.41973,8650,10,24,23,20,43,3.95,5.0,fr,21887,172,911568,1,2,Active Shallow Crust,0.0,89.99139,0.0,10/24/8650 +7.56805,47.41973,9659,6,6,8,57,17,3.95,15.0,fr,21888,193,911569,1,2,Active Shallow Crust,0.0,89.99139,0.0,06/06/9659 +7.56805,47.41973,4394,8,6,21,17,55,3.95,15.0,fr,21889,87,911569,1,2,Active Shallow Crust,0.0,89.99139,0.0,08/06/4394 +7.56805,47.41973,9531,5,20,6,26,31,3.95,5.0,fr,21890,190,911571,1,2,Active Shallow Crust,240.0194,58.00545,0.0,05/20/9531 +7.56805,47.41973,5465,5,22,21,4,47,3.95,5.0,fr,21891,109,911571,1,2,Active Shallow Crust,240.0194,58.00545,0.0,05/22/5465 +7.56805,47.41973,5110,7,10,16,12,18,4.05,5.0,fr,21892,102,911580,1,6,Active Shallow Crust,0.0,89.98849,0.0,07/10/5110 +7.56805,47.41973,8781,10,4,16,25,19,4.05,5.0,fr,21893,175,911580,1,6,Active Shallow Crust,0.0,89.98849,0.0,10/04/8781 +7.56805,47.41973,4938,5,10,11,19,44,4.05,5.0,fr,21894,98,911580,1,6,Active Shallow Crust,0.0,89.98849,0.0,05/10/4938 +7.56805,47.41973,2529,9,22,0,4,0,4.05,5.0,fr,21895,50,911580,1,6,Active Shallow Crust,0.0,89.98849,0.0,09/22/2529 +7.56805,47.41973,4177,6,1,2,12,11,4.05,5.0,fr,21896,83,911580,1,6,Active Shallow Crust,0.0,89.98849,0.0,06/01/4177 +7.56805,47.41973,1007,7,23,14,57,35,4.05,5.0,fr,21897,20,911580,1,6,Active Shallow Crust,0.0,89.98849,0.0,07/23/1007 +7.56805,47.41973,241,12,14,22,39,3,4.05,15.0,fr,21898,4,911581,1,1,Active Shallow Crust,0.0,89.98849,0.0,12/14/0241 +7.56805,47.41973,6574,8,18,7,36,22,4.05,27.5,fr,21899,131,911582,1,1,Active Shallow Crust,0.0,89.98849,0.0,08/18/6574 +7.56805,47.41973,3066,5,22,11,47,15,4.05,5.0,fr,21900,61,911583,1,1,Active Shallow Crust,240.0059,58.00582,0.0,05/22/3066 +7.56805,47.41973,294,11,9,16,40,23,4.05,15.0,fr,21901,5,911584,1,1,Active Shallow Crust,240.0059,58.00579,0.0,11/09/0294 +7.56805,47.41973,378,4,10,5,44,48,4.05,5.0,fr,21902,7,911586,1,1,Active Shallow Crust,0.0,89.98836,-90.0,04/10/0378 +7.56805,47.41973,8366,12,19,23,55,47,4.05,5.0,fr,21903,167,911589,1,1,Active Shallow Crust,128.8906,89.99425,0.0,12/19/8366 +7.56805,47.41973,9431,8,4,11,25,41,4.15,5.0,fr,21904,188,911592,1,1,Active Shallow Crust,0.0,89.98974,0.0,08/04/9431 +7.56805,47.41973,4413,12,21,20,14,18,4.15,5.0,fr,21905,88,911595,1,1,Active Shallow Crust,240.0085,57.99689,0.0,12/21/4413 +7.56805,47.41973,3524,10,24,10,8,32,4.15,5.0,fr,21906,70,911601,1,1,Active Shallow Crust,128.8978,89.99316,0.0,10/24/3524 +7.56805,47.41973,1639,9,13,1,59,16,4.25,5.0,fr,21907,32,911604,1,5,Active Shallow Crust,0.0,89.99086,0.0,09/13/1639 +7.56805,47.41973,2606,1,10,19,22,2,4.25,5.0,fr,21908,52,911604,1,5,Active Shallow Crust,0.0,89.99086,0.0,01/10/2606 +7.56805,47.41973,7212,3,13,15,56,17,4.25,5.0,fr,21909,144,911604,1,5,Active Shallow Crust,0.0,89.99086,0.0,03/13/7212 +7.56805,47.41973,4379,12,22,19,44,55,4.25,5.0,fr,21910,87,911604,1,5,Active Shallow Crust,0.0,89.99086,0.0,12/22/4379 +7.56805,47.41973,5021,4,12,3,20,14,4.25,5.0,fr,21911,100,911604,1,5,Active Shallow Crust,0.0,89.99086,0.0,04/12/5021 +7.56805,47.41973,6473,7,24,23,50,13,4.25,15.0,fr,21912,129,911605,1,3,Active Shallow Crust,0.0,89.99086,0.0,07/24/6473 +7.56805,47.41973,7189,6,3,21,35,48,4.25,15.0,fr,21913,143,911605,1,3,Active Shallow Crust,0.0,89.99086,0.0,06/03/7189 +7.56805,47.41973,4154,10,19,8,33,55,4.25,15.0,fr,21914,83,911605,1,3,Active Shallow Crust,0.0,89.99086,0.0,10/19/4154 +7.56805,47.41973,5605,10,9,16,1,29,4.25,5.0,fr,21915,112,911607,1,1,Active Shallow Crust,240.0076,57.99449,0.0,10/09/5605 +7.56805,47.41973,1271,11,13,16,17,24,4.25,27.5,fr,21916,25,911609,1,1,Active Shallow Crust,240.0076,57.99449,0.0,11/13/1271 +7.56805,47.41973,9571,1,22,1,26,7,4.25,5.0,fr,21917,191,911610,1,2,Active Shallow Crust,0.0,89.99075,-90.0,01/22/9571 +7.56805,47.41973,3966,4,8,20,49,25,4.25,5.0,fr,21918,79,911610,1,2,Active Shallow Crust,0.0,89.99075,-90.0,04/08/3966 +7.56805,47.41973,7204,6,4,10,0,9,4.25,5.0,fr,21919,144,911613,1,2,Active Shallow Crust,128.8948,89.98098,0.0,06/04/7204 +7.56805,47.41973,6835,3,21,5,19,9,4.25,5.0,fr,21920,136,911613,1,2,Active Shallow Crust,128.8948,89.98098,0.0,03/21/6835 +7.56805,47.41973,6819,2,28,18,52,45,4.35,5.0,fr,21921,136,911616,1,5,Active Shallow Crust,0.0,89.98914,0.0,02/28/6819 +7.56805,47.41973,1123,2,9,16,22,50,4.35,5.0,fr,21922,22,911616,1,5,Active Shallow Crust,0.0,89.98914,0.0,02/09/1123 +7.56805,47.41973,6890,10,7,22,37,58,4.35,5.0,fr,21923,137,911616,1,5,Active Shallow Crust,0.0,89.98914,0.0,10/07/6890 +7.56805,47.41973,5521,12,30,15,49,13,4.35,5.0,fr,21924,110,911616,1,5,Active Shallow Crust,0.0,89.98914,0.0,12/30/5521 +7.56805,47.41973,6131,12,31,16,38,3,4.35,5.0,fr,21925,122,911616,1,5,Active Shallow Crust,0.0,89.98914,0.0,12/31/6131 +7.56805,47.41973,4685,4,21,22,27,29,4.35,15.0,fr,21926,93,911617,1,3,Active Shallow Crust,0.0,89.98914,0.0,04/21/4685 +7.56805,47.41973,1634,1,23,14,52,47,4.35,15.0,fr,21927,32,911617,1,3,Active Shallow Crust,0.0,89.98914,0.0,01/23/1634 +7.56805,47.41973,5062,10,11,12,46,23,4.35,15.0,fr,21928,101,911617,1,3,Active Shallow Crust,0.0,89.98914,0.0,10/11/5062 +7.56805,47.41973,1400,2,25,16,28,1,4.45,5.0,fr,21929,27,911628,1,4,Active Shallow Crust,0.0,89.99032,0.0,02/25/1400 +7.56805,47.41973,6662,10,30,7,32,59,4.45,5.0,fr,21930,133,911628,1,4,Active Shallow Crust,0.0,89.99032,0.0,10/30/6662 +7.56805,47.41973,7931,2,15,8,48,17,4.45,5.0,fr,21931,158,911628,1,4,Active Shallow Crust,0.0,89.99032,0.0,02/15/7931 +7.56805,47.41973,4396,4,13,7,4,15,4.45,5.0,fr,21932,87,911628,1,4,Active Shallow Crust,0.0,89.99032,0.0,04/13/4396 +7.56805,47.41973,9398,4,3,16,33,43,4.55,5.0,fr,21933,187,911640,1,2,Active Shallow Crust,0.0,89.98921,0.0,04/03/9398 +7.56805,47.41973,290,1,3,19,7,38,4.55,5.0,fr,21934,5,911640,1,2,Active Shallow Crust,0.0,89.98921,0.0,01/03/0290 +7.56805,47.41973,8590,7,20,13,45,29,4.55,15.0,fr,21935,171,911641,1,1,Active Shallow Crust,0.0,89.98921,0.0,07/20/8590 +7.56805,47.41973,5405,7,11,19,34,9,4.65,5.0,fr,21936,108,911652,1,1,Active Shallow Crust,0.0,89.99039,0.0,07/11/5405 +7.56805,47.41973,1871,10,26,11,18,47,4.65,15.0,fr,21937,37,911659,1,1,Active Shallow Crust,0.0,89.99027,-90.0,10/26/1871 +7.56805,47.41973,5633,11,23,0,57,3,4.75,5.0,fr,21938,112,911664,1,1,Active Shallow Crust,0.0,89.98972,0.0,11/23/5633 +7.56805,47.41973,7899,10,21,12,41,23,4.75,15.0,fr,21939,157,911665,1,1,Active Shallow Crust,0.0,89.98972,0.0,10/21/7899 +7.56805,47.41973,5645,10,5,6,55,0,4.85,5.0,fr,21940,112,911676,1,1,Active Shallow Crust,0.0,89.9893,0.0,10/05/5645 +7.56805,47.41973,263,1,20,22,10,58,4.85,5.0,fr,21941,5,911679,1,1,Active Shallow Crust,240.0176,58.00229,0.0,01/20/0263 +7.56805,47.41973,3387,11,24,15,29,52,4.85,5.0,fr,21942,67,911685,1,1,Active Shallow Crust,128.8926,89.98866,0.0,11/24/3387 +7.56805,47.41973,7712,8,19,23,48,24,4.95,5.0,fr,21943,154,911688,1,2,Active Shallow Crust,0.0,89.99047,0.0,08/19/7712 +7.56805,47.41973,6771,10,12,2,0,28,4.95,5.0,fr,21944,135,911688,1,2,Active Shallow Crust,0.0,89.99047,0.0,10/12/6771 +7.56805,47.41973,115,7,18,10,42,53,4.95,27.5,fr,21945,2,911690,1,1,Active Shallow Crust,0.0,89.99047,0.0,07/18/0115 +7.56805,47.41973,6043,7,4,17,54,24,5.25,15.0,fr,21946,120,911725,1,1,Active Shallow Crust,0.0,89.99036,0.0,07/04/6043 +7.56805,47.41973,7212,11,29,9,46,48,5.25,15.0,fr,21947,144,911734,1,1,Active Shallow Crust,128.8829,89.987,0.0,11/29/7212 +7.56805,47.41973,6622,6,8,15,16,33,5.55,5.0,fr,21948,132,911760,1,1,Active Shallow Crust,0.0,89.98976,0.0,06/08/6622 +7.56805,47.41973,6336,12,14,18,54,37,5.65,27.5,fr,21949,126,911777,1,1,Active Shallow Crust,240.0382,57.99945,0.0,12/14/6336 +7.56805,47.41973,5999,4,30,7,9,26,5.85,15.0,fr,21950,119,911806,1,1,Active Shallow Crust,128.8664,89.99152,0.0,04/30/5999 +7.568048,47.41973,1114,11,16,5,11,4,6.15,6.011322,fr,21951,22,911841,1,1,Active Shallow Crust,128.8546,89.98984,0.0,11/16/1114 +5.1038,48.64169,5588,8,20,2,35,55,4.55,27.5,fr,21952,111,912122,1,1,Active Shallow Crust,0.0,89.98946,0.0,08/20/5588 +5.1038,48.64169,2837,2,8,1,29,21,5.95,15.0,fr,21953,56,912289,1,1,Active Shallow Crust,0.0,89.9899,0.0,02/08/2837 +1.9887,42.18476,4022,7,5,16,7,18,3.55,5.0,fr,21954,80,912480,1,3,Active Shallow Crust,0.0,89.99066,0.0,07/05/4022 +1.9887,42.18476,7474,3,9,23,32,50,3.55,5.0,fr,21955,149,912480,1,3,Active Shallow Crust,0.0,89.99066,0.0,03/09/7474 +1.9887,42.18476,6754,3,2,2,57,43,3.55,5.0,fr,21956,135,912480,1,3,Active Shallow Crust,0.0,89.99066,0.0,03/02/6754 +1.9887,42.18476,9634,7,8,2,56,21,3.55,15.0,fr,21957,192,912481,1,1,Active Shallow Crust,0.0,89.99066,0.0,07/08/9634 +1.9887,42.18476,13,12,7,20,56,7,3.55,5.0,fr,21958,0,912486,1,1,Active Shallow Crust,0.0,89.99055,-90.0,12/07/0013 +1.9887,42.18476,3202,3,18,14,53,24,3.65,5.0,fr,21959,64,912492,1,2,Active Shallow Crust,0.0,89.99001,0.0,03/18/3202 +1.9887,42.18476,1610,5,21,4,12,35,3.65,5.0,fr,21960,32,912492,1,2,Active Shallow Crust,0.0,89.99001,0.0,05/21/1610 +1.9887,42.18476,6774,8,22,20,33,26,3.65,5.0,fr,21961,135,912495,1,2,Active Shallow Crust,240.001,58.01285,0.0,08/22/6774 +1.9887,42.18476,8417,4,9,13,21,18,3.65,5.0,fr,21962,168,912495,1,2,Active Shallow Crust,240.001,58.01285,0.0,04/09/8417 +1.9887,42.18476,9030,7,11,22,42,47,3.75,5.0,fr,21963,180,912504,1,1,Active Shallow Crust,0.0,89.98962,0.0,07/11/9030 +1.9887,42.18476,4389,7,12,22,15,58,3.75,5.0,fr,21964,87,912510,1,1,Active Shallow Crust,0.0,89.98949,-90.0,07/12/4389 +1.9887,42.18476,5995,2,8,6,9,28,3.85,5.0,fr,21965,119,912516,1,2,Active Shallow Crust,0.0,89.98942,0.0,02/08/5995 +1.9887,42.18476,7637,8,31,4,25,28,3.85,5.0,fr,21966,152,912516,1,2,Active Shallow Crust,0.0,89.98942,0.0,08/31/7637 +1.9887,42.18476,9467,10,23,13,39,15,3.85,15.0,fr,21967,189,912517,1,1,Active Shallow Crust,0.0,89.98942,0.0,10/23/9467 +1.9887,42.18476,4555,12,27,18,24,39,3.85,5.0,fr,21968,91,912519,1,1,Active Shallow Crust,240.0101,57.99767,0.0,12/27/4555 +1.9887,42.18476,5229,10,31,10,36,58,3.95,5.0,fr,21969,104,912528,1,1,Active Shallow Crust,0.0,89.99057,0.0,10/31/5229 +1.9887,42.18476,1216,9,17,6,12,53,4.05,15.0,fr,21970,24,912541,1,1,Active Shallow Crust,0.0,89.98949,0.0,09/17/1216 +1.9887,42.18476,6201,6,26,7,40,32,4.15,5.0,fr,21971,124,912552,1,1,Active Shallow Crust,0.0,89.9897,0.0,06/26/6201 +1.9887,42.18476,1966,5,19,3,52,40,4.15,5.0,fr,21972,39,912555,1,1,Active Shallow Crust,240.0076,57.99726,0.0,05/19/1966 +1.9887,42.18476,8034,1,1,5,49,47,4.15,15.0,fr,21973,160,912562,1,1,Active Shallow Crust,128.8983,89.99391,0.0,01/01/8034 +1.9887,42.18476,1655,1,26,4,58,57,4.25,5.0,fr,21974,33,912564,1,1,Active Shallow Crust,0.0,89.98999,0.0,01/26/1655 +1.9887,42.18476,8651,9,22,9,50,20,4.25,15.0,fr,21975,173,912571,1,1,Active Shallow Crust,0.0,89.98987,-90.0,09/22/8651 +1.9887,42.18476,9612,4,3,17,2,44,4.35,15.0,fr,21976,192,912577,1,1,Active Shallow Crust,0.0,89.99033,0.0,04/03/9612 +1.9887,42.18476,2680,1,31,16,28,16,5.15,15.0,fr,21977,53,912673,1,1,Active Shallow Crust,0.0,89.98993,0.0,01/31/2680 +2.01253,41.5184,8080,11,14,13,3,53,3.55,15.0,fr,21978,161,912961,1,2,Active Shallow Crust,0.0,89.98868,0.0,11/14/8080 +2.01253,41.5184,4017,10,18,12,46,55,3.55,15.0,fr,21979,80,912961,1,2,Active Shallow Crust,0.0,89.98868,0.0,10/18/4017 +2.01253,41.5184,7785,12,29,5,37,34,3.55,15.0,fr,21980,155,912967,1,1,Active Shallow Crust,0.0,89.98854,-90.0,12/29/7785 +2.01253,41.5184,7745,3,31,15,40,26,3.65,5.0,fr,21981,154,912972,1,2,Active Shallow Crust,0.0,89.98991,0.0,03/31/7745 +2.01253,41.5184,9218,6,26,9,53,49,3.65,5.0,fr,21982,184,912972,1,2,Active Shallow Crust,0.0,89.98991,0.0,06/26/9218 +2.01253,41.5184,6181,11,2,21,54,38,3.65,15.0,fr,21983,123,912973,1,1,Active Shallow Crust,0.0,89.98991,0.0,11/02/6181 +2.01253,41.5184,5640,11,8,6,51,37,3.65,5.0,fr,21984,112,912975,1,1,Active Shallow Crust,240.0013,58.01284,0.0,11/08/5640 +2.01253,41.5184,2712,8,31,20,21,37,3.75,5.0,fr,21985,54,912984,1,1,Active Shallow Crust,0.0,89.991,0.0,08/31/2712 +2.01253,41.5184,5815,10,17,0,13,37,3.75,15.0,fr,21986,116,912985,1,1,Active Shallow Crust,0.0,89.991,0.0,10/17/5815 +2.01253,41.5184,4446,2,9,10,0,45,3.75,15.0,fr,21987,88,912994,1,1,Active Shallow Crust,128.8972,89.96741,0.0,02/09/4446 +2.01253,41.5184,1805,8,12,5,35,2,3.85,5.0,fr,21988,36,912996,1,1,Active Shallow Crust,0.0,89.98931,0.0,08/12/1805 +2.01253,41.5184,3159,1,7,3,23,21,3.85,15.0,fr,21989,63,912997,1,1,Active Shallow Crust,0.0,89.98931,0.0,01/07/3159 +2.01253,41.5184,5311,11,1,10,8,26,3.95,5.0,fr,21990,106,913008,1,1,Active Shallow Crust,0.0,89.99047,0.0,11/01/5311 +2.01253,41.5184,4790,2,21,22,18,16,4.15,5.0,fr,21991,95,913032,1,1,Active Shallow Crust,0.0,89.99054,0.0,02/21/4790 +2.01253,41.5184,3656,8,21,1,50,7,4.15,5.0,fr,21992,73,913038,1,1,Active Shallow Crust,0.0,89.99043,-90.0,08/21/3656 +2.01253,41.5184,9302,7,14,8,7,55,4.25,5.0,fr,21993,186,913044,1,1,Active Shallow Crust,0.0,89.98988,0.0,07/14/9302 +2.01253,41.5184,3522,5,2,6,1,35,4.35,5.0,fr,21994,70,913059,1,1,Active Shallow Crust,240.0071,57.9958,0.0,05/02/3522 +2.01253,41.5184,3011,10,17,13,29,1,4.85,15.0,fr,21995,60,913117,1,1,Active Shallow Crust,0.0,89.98986,0.0,10/17/3011 +2.01253,41.5184,6746,2,7,4,29,43,4.85,5.0,fr,21996,134,913119,1,1,Active Shallow Crust,240.0151,58.00204,0.0,02/07/6746 +2.01253,41.5184,4422,9,15,17,43,19,4.95,15.0,fr,21997,88,913138,1,1,Active Shallow Crust,128.8917,89.98983,0.0,09/15/4422 +0.07685,41.25905,4026,5,31,16,0,43,3.65,5.0,fr,21998,80,913452,1,1,Active Shallow Crust,0.0,89.98997,0.0,05/31/4026 +0.07685,41.25905,3248,8,28,20,26,38,3.65,15.0,fr,21999,64,913453,1,1,Active Shallow Crust,0.0,89.98997,0.0,08/28/3248 +0.07685,41.25905,3859,4,9,13,40,13,4.25,5.0,fr,22000,77,913524,1,1,Active Shallow Crust,0.0,89.99,0.0,04/09/3859 +0.07685,41.25905,5940,9,8,15,37,10,4.55,27.5,fr,22001,118,913562,1,1,Active Shallow Crust,0.0,89.99,0.0,09/08/5940 +0.07685,41.25905,5938,10,7,20,50,53,4.75,5.0,fr,22002,118,913584,1,1,Active Shallow Crust,0.0,89.99001,0.0,10/07/5938 +7.23327,45.0376,8998,7,4,18,55,4,3.55,5.0,fr,22003,179,913920,1,6,Active Shallow Crust,0.0,89.99287,0.0,07/04/8998 +7.23327,45.0376,9073,2,10,10,0,5,3.55,5.0,fr,22004,181,913920,1,6,Active Shallow Crust,0.0,89.99287,0.0,02/10/9073 +7.23327,45.0376,8654,3,7,0,30,25,3.55,5.0,fr,22005,173,913920,1,6,Active Shallow Crust,0.0,89.99287,0.0,03/07/8654 +7.23327,45.0376,5281,2,15,4,35,30,3.55,5.0,fr,22006,105,913920,1,6,Active Shallow Crust,0.0,89.99287,0.0,02/15/5281 +7.23327,45.0376,3758,5,30,10,8,32,3.55,5.0,fr,22007,75,913920,1,6,Active Shallow Crust,0.0,89.99287,0.0,05/30/3758 +7.23327,45.0376,5655,2,13,19,2,49,3.55,5.0,fr,22008,113,913920,1,6,Active Shallow Crust,0.0,89.99287,0.0,02/13/5655 +7.23327,45.0376,6318,5,8,12,48,59,3.55,15.0,fr,22009,126,913921,1,5,Active Shallow Crust,0.0,89.99287,0.0,05/08/6318 +7.23327,45.0376,154,9,9,1,54,41,3.55,15.0,fr,22010,3,913921,1,5,Active Shallow Crust,0.0,89.99287,0.0,09/09/0154 +7.23327,45.0376,5379,2,9,0,42,28,3.55,15.0,fr,22011,107,913921,1,5,Active Shallow Crust,0.0,89.99287,0.0,02/09/5379 +7.23327,45.0376,1564,9,5,10,22,26,3.55,15.0,fr,22012,31,913921,1,5,Active Shallow Crust,0.0,89.99287,0.0,09/05/1564 +7.23327,45.0376,6374,7,21,3,54,56,3.55,15.0,fr,22013,127,913921,1,5,Active Shallow Crust,0.0,89.99287,0.0,07/21/6374 +7.23327,45.0376,5667,7,6,21,7,0,3.55,27.5,fr,22014,113,913922,1,3,Active Shallow Crust,0.0,89.99287,0.0,07/06/5667 +7.23327,45.0376,9297,5,30,7,13,6,3.55,27.5,fr,22015,185,913922,1,3,Active Shallow Crust,0.0,89.99287,0.0,05/30/9297 +7.23327,45.0376,5834,8,16,17,37,29,3.55,27.5,fr,22016,116,913922,1,3,Active Shallow Crust,0.0,89.99287,0.0,08/16/5834 +7.23327,45.0376,8651,7,16,10,57,55,3.55,5.0,fr,22017,173,913923,1,5,Active Shallow Crust,240.0114,57.99803,0.0,07/16/8651 +7.23327,45.0376,8764,6,24,1,44,50,3.55,5.0,fr,22018,175,913923,1,5,Active Shallow Crust,240.0114,57.99803,0.0,06/24/8764 +7.23327,45.0376,1020,2,14,21,12,49,3.55,5.0,fr,22019,20,913923,1,5,Active Shallow Crust,240.0114,57.99803,0.0,02/14/1020 +7.23327,45.0376,6027,6,19,3,11,4,3.55,5.0,fr,22020,120,913923,1,5,Active Shallow Crust,240.0114,57.99803,0.0,06/19/6027 +7.23327,45.0376,1565,2,19,9,38,36,3.55,5.0,fr,22021,31,913923,1,5,Active Shallow Crust,240.0114,57.99803,0.0,02/19/1565 +7.23327,45.0376,6002,1,16,19,10,7,3.55,27.5,fr,22022,120,913928,1,1,Active Shallow Crust,0.0,89.99279,-90.0,01/16/6002 +7.23327,45.0376,698,9,27,11,11,18,3.55,5.0,fr,22023,13,913929,1,1,Active Shallow Crust,128.896,89.99287,0.0,09/27/0698 +7.23327,45.0376,3942,5,5,17,13,29,3.65,5.0,fr,22024,78,913932,1,4,Active Shallow Crust,0.0,89.9873,0.0,05/05/3942 +7.23327,45.0376,305,10,27,14,11,38,3.65,5.0,fr,22025,6,913932,1,4,Active Shallow Crust,0.0,89.9873,0.0,10/27/0305 +7.23327,45.0376,4477,10,1,11,38,55,3.65,5.0,fr,22026,89,913932,1,4,Active Shallow Crust,0.0,89.9873,0.0,10/01/4477 +7.23327,45.0376,4997,4,5,0,8,10,3.65,5.0,fr,22027,99,913932,1,4,Active Shallow Crust,0.0,89.9873,0.0,04/05/4997 +7.23327,45.0376,4797,12,9,5,22,23,3.65,15.0,fr,22028,95,913933,1,2,Active Shallow Crust,0.0,89.9873,0.0,12/09/4797 +7.23327,45.0376,1589,11,21,10,19,14,3.65,15.0,fr,22029,31,913933,1,2,Active Shallow Crust,0.0,89.9873,0.0,11/21/1589 +7.23327,45.0376,7196,8,7,0,47,1,3.65,5.0,fr,22030,143,913935,1,3,Active Shallow Crust,240.0013,58.01262,0.0,08/07/7196 +7.23327,45.0376,794,5,10,5,34,17,3.65,5.0,fr,22031,15,913935,1,3,Active Shallow Crust,240.0013,58.01262,0.0,05/10/0794 +7.23327,45.0376,656,7,25,7,26,52,3.65,5.0,fr,22032,13,913935,1,3,Active Shallow Crust,240.0013,58.01262,0.0,07/25/0656 +7.23327,45.0376,3295,3,24,5,33,59,3.65,15.0,fr,22033,65,913936,1,1,Active Shallow Crust,240.0013,58.01262,0.0,03/24/3295 +7.23327,45.0376,6380,8,15,19,35,27,3.65,5.0,fr,22034,127,913938,1,2,Active Shallow Crust,0.0,89.98715,-90.0,08/15/6380 +7.23327,45.0376,6683,8,21,11,53,40,3.65,5.0,fr,22035,133,913938,1,2,Active Shallow Crust,0.0,89.98715,-90.0,08/21/6683 +7.23327,45.0376,9830,3,12,17,1,36,3.65,15.0,fr,22036,196,913939,1,1,Active Shallow Crust,0.0,89.98715,-90.0,03/12/9830 +7.23327,45.0376,3049,9,13,4,45,39,3.65,5.0,fr,22037,60,913941,1,1,Active Shallow Crust,128.9006,89.96349,0.0,09/13/3049 +7.23327,45.0376,5591,8,18,4,42,22,3.75,5.0,fr,22038,111,913944,1,6,Active Shallow Crust,0.0,89.98868,0.0,08/18/5591 +7.23327,45.0376,8883,1,21,7,14,19,3.75,5.0,fr,22039,177,913944,1,6,Active Shallow Crust,0.0,89.98868,0.0,01/21/8883 +7.23327,45.0376,2979,8,10,18,20,48,3.75,5.0,fr,22040,59,913944,1,6,Active Shallow Crust,0.0,89.98868,0.0,08/10/2979 +7.23327,45.0376,9523,12,24,1,34,1,3.75,5.0,fr,22041,190,913944,1,6,Active Shallow Crust,0.0,89.98868,0.0,12/24/9523 +7.23327,45.0376,3647,11,27,13,43,21,3.75,5.0,fr,22042,72,913944,1,6,Active Shallow Crust,0.0,89.98868,0.0,11/27/3647 +7.23327,45.0376,5121,4,1,16,56,3,3.75,5.0,fr,22043,102,913944,1,6,Active Shallow Crust,0.0,89.98868,0.0,04/01/5121 +7.23327,45.0376,5603,6,26,17,12,20,3.75,15.0,fr,22044,112,913945,1,2,Active Shallow Crust,0.0,89.98868,0.0,06/26/5603 +7.23327,45.0376,4168,10,4,17,54,6,3.75,15.0,fr,22045,83,913945,1,2,Active Shallow Crust,0.0,89.98868,0.0,10/04/4168 +7.23327,45.0376,3860,9,17,16,33,33,3.75,5.0,fr,22046,77,913950,1,1,Active Shallow Crust,0.0,89.98855,-90.0,09/17/3860 +7.23327,45.0376,2250,5,21,7,49,53,3.75,5.0,fr,22047,44,913953,1,3,Active Shallow Crust,128.8977,89.96686,0.0,05/21/2250 +7.23327,45.0376,7740,7,13,23,24,28,3.75,5.0,fr,22048,154,913953,1,3,Active Shallow Crust,128.8977,89.96686,0.0,07/13/7740 +7.23327,45.0376,1141,1,2,9,41,25,3.75,5.0,fr,22049,22,913953,1,3,Active Shallow Crust,128.8977,89.96686,0.0,01/02/1141 +7.23327,45.0376,8627,9,15,3,48,41,3.75,27.5,fr,22050,172,913955,1,2,Active Shallow Crust,128.8977,89.96686,0.0,09/15/8627 +7.23327,45.0376,7709,6,12,18,39,53,3.75,27.5,fr,22051,154,913955,1,2,Active Shallow Crust,128.8977,89.96686,0.0,06/12/7709 +7.23327,45.0376,7179,11,2,16,21,4,3.85,5.0,fr,22052,143,913956,1,3,Active Shallow Crust,0.0,89.98991,0.0,11/02/7179 +7.23327,45.0376,4218,4,7,23,28,11,3.85,5.0,fr,22053,84,913956,1,3,Active Shallow Crust,0.0,89.98991,0.0,04/07/4218 +7.23327,45.0376,7739,6,4,12,3,29,3.85,5.0,fr,22054,154,913956,1,3,Active Shallow Crust,0.0,89.98991,0.0,06/04/7739 +7.23327,45.0376,5106,5,14,7,15,49,3.85,15.0,fr,22055,102,913957,1,2,Active Shallow Crust,0.0,89.98991,0.0,05/14/5106 +7.23327,45.0376,5612,3,18,3,53,22,3.85,15.0,fr,22056,112,913957,1,2,Active Shallow Crust,0.0,89.98991,0.0,03/18/5612 +7.23327,45.0376,764,7,11,4,54,0,3.85,27.5,fr,22057,15,913958,1,1,Active Shallow Crust,0.0,89.98991,0.0,07/11/0764 +7.23327,45.0376,6129,3,3,19,27,47,3.85,5.0,fr,22058,122,913959,1,1,Active Shallow Crust,240.0109,57.99842,0.0,03/03/6129 +7.23327,45.0376,8091,2,3,20,21,57,3.85,15.0,fr,22059,161,913963,1,1,Active Shallow Crust,0.0,89.98979,-90.0,02/03/8091 +7.23327,45.0376,4212,4,18,14,12,45,3.85,27.5,fr,22060,84,913964,1,1,Active Shallow Crust,0.0,89.98979,-90.0,04/18/4212 +7.23327,45.0376,5453,7,23,19,37,35,3.85,15.0,fr,22061,109,913966,1,1,Active Shallow Crust,128.896,89.99496,0.0,07/23/5453 +7.23327,45.0376,9831,5,1,8,17,47,3.95,5.0,fr,22062,196,913968,1,2,Active Shallow Crust,0.0,89.991,0.0,05/01/9831 +7.23327,45.0376,6070,9,13,0,40,41,3.95,5.0,fr,22063,121,913968,1,2,Active Shallow Crust,0.0,89.991,0.0,09/13/6070 +7.23327,45.0376,2966,10,25,9,28,31,3.95,15.0,fr,22064,59,913969,1,1,Active Shallow Crust,0.0,89.991,0.0,10/25/2966 +7.23327,45.0376,2084,7,5,2,20,6,3.95,5.0,fr,22065,41,913971,1,1,Active Shallow Crust,240.0204,58.00487,0.0,07/05/2084 +7.23327,45.0376,6282,12,4,22,43,20,4.05,5.0,fr,22066,125,913980,1,2,Active Shallow Crust,0.0,89.99199,0.0,12/04/6282 +7.23327,45.0376,4815,9,3,12,12,43,4.05,5.0,fr,22067,96,913980,1,2,Active Shallow Crust,0.0,89.99199,0.0,09/03/4815 +7.23327,45.0376,2333,9,19,21,55,17,4.05,5.0,fr,22068,46,913986,1,1,Active Shallow Crust,0.0,89.99189,-90.0,09/19/2333 +7.23327,45.0376,752,12,13,7,26,6,4.05,5.0,fr,22069,15,913989,1,1,Active Shallow Crust,128.8916,89.99399,0.0,12/13/0752 +7.23327,45.0376,7211,2,16,13,44,47,4.15,5.0,fr,22070,144,913992,1,2,Active Shallow Crust,0.0,89.98929,0.0,02/16/7211 +7.23327,45.0376,8399,1,19,11,40,19,4.15,5.0,fr,22071,167,913992,1,2,Active Shallow Crust,0.0,89.98929,0.0,01/19/8399 +7.23327,45.0376,2009,11,1,21,4,54,4.15,15.0,fr,22072,40,913993,1,1,Active Shallow Crust,0.0,89.98929,0.0,11/01/2009 +7.23327,45.0376,3151,4,18,10,8,39,4.15,27.5,fr,22073,63,913994,1,1,Active Shallow Crust,0.0,89.98929,0.0,04/18/3151 +7.23327,45.0376,3365,4,27,14,54,43,4.15,27.5,fr,22074,67,914000,1,1,Active Shallow Crust,0.0,89.98916,-90.0,04/27/3365 +7.23327,45.0376,4636,2,7,23,54,52,4.15,5.0,fr,22075,92,914001,1,1,Active Shallow Crust,128.8982,89.99286,0.0,02/07/4636 +7.23327,45.0376,4365,3,3,16,51,50,4.25,5.0,fr,22076,87,914004,1,3,Active Shallow Crust,0.0,89.99045,0.0,03/03/4365 +7.23327,45.0376,3468,3,22,20,15,44,4.25,5.0,fr,22077,69,914004,1,3,Active Shallow Crust,0.0,89.99045,0.0,03/22/3468 +7.23327,45.0376,1197,5,20,1,46,38,4.25,5.0,fr,22078,23,914004,1,3,Active Shallow Crust,0.0,89.99045,0.0,05/20/1197 +7.23327,45.0376,8874,1,10,0,18,52,4.25,15.0,fr,22079,177,914008,1,1,Active Shallow Crust,240.0073,57.99367,0.0,01/10/8874 +7.23327,45.0376,3086,9,21,19,22,56,4.25,5.0,fr,22080,61,914013,1,1,Active Shallow Crust,128.8941,89.9809,0.0,09/21/3086 +7.23327,45.0376,6787,8,8,12,31,3,4.35,5.0,fr,22081,135,914019,1,1,Active Shallow Crust,240.0079,57.996,0.0,08/08/6787 +7.23327,45.0376,6335,8,2,11,2,19,4.35,5.0,fr,22082,126,914025,1,1,Active Shallow Crust,128.8985,89.98244,0.0,08/02/6335 +7.23327,45.0376,2311,3,10,7,11,4,4.45,15.0,fr,22083,46,914038,1,2,Active Shallow Crust,128.8929,89.99368,0.0,03/10/2311 +7.23327,45.0376,9876,2,21,18,39,9,4.45,15.0,fr,22084,197,914038,1,2,Active Shallow Crust,128.8929,89.99368,0.0,02/21/9876 +7.23327,45.0376,5309,1,18,14,7,40,4.55,5.0,fr,22085,106,914040,1,1,Active Shallow Crust,0.0,89.99098,0.0,01/18/5309 +7.23327,45.0376,5254,12,12,9,41,57,4.55,15.0,fr,22086,105,914047,1,1,Active Shallow Crust,0.0,89.99088,-90.0,12/12/5254 +7.23327,45.0376,1320,6,14,19,16,44,4.75,5.0,fr,22087,26,914064,1,1,Active Shallow Crust,0.0,89.98926,0.0,06/14/1320 +7.23327,45.0376,9795,10,25,1,10,5,4.75,27.5,fr,22088,195,914066,1,1,Active Shallow Crust,0.0,89.98926,0.0,10/25/9795 +7.23327,45.0376,3822,1,2,1,40,22,4.85,27.5,fr,22089,76,914078,1,1,Active Shallow Crust,0.0,89.99043,0.0,01/02/3822 +7.23327,45.0376,3328,11,17,17,32,4,5.25,5.0,fr,22090,66,914124,1,1,Active Shallow Crust,0.0,89.98993,0.0,11/17/3328 +7.23327,45.0376,5150,5,20,0,35,22,5.85,15.0,fr,22091,102,914197,1,1,Active Shallow Crust,0.0,89.98991,0.0,05/20/5150 +-0.47563,48.13885,1940,9,12,9,48,11,3.55,5.0,fr,22092,38,914400,1,2,Active Shallow Crust,0.0,89.98991,0.0,09/12/1940 +-0.47563,48.13885,6081,11,7,15,26,26,3.55,5.0,fr,22093,121,914400,1,2,Active Shallow Crust,0.0,89.98991,0.0,11/07/6081 +-0.47563,48.13885,7386,9,15,13,30,25,3.55,15.0,fr,22094,147,914401,1,1,Active Shallow Crust,0.0,89.98991,0.0,09/15/7386 +-0.47563,48.13885,4499,12,2,20,44,46,3.55,15.0,fr,22095,89,914404,1,1,Active Shallow Crust,240.0123,57.99818,0.0,12/02/4499 +-0.47563,48.13885,1237,4,27,20,8,9,3.65,5.0,fr,22096,24,914412,1,2,Active Shallow Crust,0.0,89.98988,0.0,04/27/1237 +-0.47563,48.13885,1671,7,26,10,18,4,3.65,5.0,fr,22097,33,914412,1,2,Active Shallow Crust,0.0,89.98988,0.0,07/26/1671 +-0.47563,48.13885,8307,11,25,12,24,53,3.65,5.0,fr,22098,166,914415,1,1,Active Shallow Crust,240.0013,58.01293,0.0,11/25/8307 +-0.47563,48.13885,8058,7,12,18,18,25,3.65,5.0,fr,22099,161,914418,1,1,Active Shallow Crust,0.0,89.99014,-90.0,07/12/8058 +-0.47563,48.13885,9120,4,17,15,37,48,3.75,15.0,fr,22100,182,914425,1,1,Active Shallow Crust,0.0,89.98997,0.0,04/17/9120 +-0.47563,48.13885,9536,5,1,18,42,29,4.15,5.0,fr,22101,190,914475,1,1,Active Shallow Crust,240.0088,57.99738,0.0,05/01/9536 +-0.47563,48.13885,417,11,8,23,9,28,4.15,5.0,fr,22102,8,914478,1,1,Active Shallow Crust,0.0,89.98997,-90.0,11/08/0417 +-0.47563,48.13885,9761,9,5,22,37,15,4.15,5.0,fr,22103,195,914481,1,1,Active Shallow Crust,128.8973,89.99368,0.0,09/05/9761 +-0.47563,48.13885,109,7,28,3,8,20,4.35,5.0,fr,22104,2,914496,1,1,Active Shallow Crust,0.0,89.98995,0.0,07/28/0109 +-0.47563,48.13885,1981,7,28,7,7,6,4.35,15.0,fr,22105,39,914506,1,1,Active Shallow Crust,128.8975,89.98276,0.0,07/28/1981 +-0.47563,48.13885,1831,10,25,9,39,49,5.55,5.0,fr,22106,36,914640,1,1,Active Shallow Crust,0.0,89.98998,0.0,10/25/1831 +-3.14903,49.00558,6777,7,8,21,52,20,3.55,5.0,fr,22107,135,914880,1,1,Active Shallow Crust,0.0,89.99007,0.0,07/08/6777 +-3.14903,49.00558,5538,9,22,22,59,35,3.55,15.0,fr,22108,110,914881,1,1,Active Shallow Crust,0.0,89.99007,0.0,09/22/5538 +-3.14903,49.00558,9039,5,20,10,0,56,3.55,15.0,fr,22109,180,914884,1,1,Active Shallow Crust,240.0118,57.99812,0.0,05/20/9039 +-3.14903,49.00558,2602,6,14,12,20,35,3.55,5.0,fr,22110,52,914886,1,1,Active Shallow Crust,0.0,89.98996,-90.0,06/14/2602 +-3.14903,49.00558,4477,3,6,22,39,12,3.55,15.0,fr,22111,89,914887,1,1,Active Shallow Crust,0.0,89.98996,-90.0,03/06/4477 +-3.14903,49.00558,2646,1,18,12,3,15,3.65,5.0,fr,22112,52,914892,1,2,Active Shallow Crust,0.0,89.99116,0.0,01/18/2646 +-3.14903,49.00558,3912,11,5,20,50,16,3.65,5.0,fr,22113,78,914892,1,2,Active Shallow Crust,0.0,89.99116,0.0,11/05/3912 +-3.14903,49.00558,8907,12,10,12,44,41,3.65,27.5,fr,22114,178,914897,1,1,Active Shallow Crust,240.0014,58.01281,0.0,12/10/8907 +-3.14903,49.00558,8843,2,15,10,17,6,3.75,5.0,fr,22115,176,914904,1,1,Active Shallow Crust,0.0,89.98949,0.0,02/15/8843 +-3.14903,49.00558,4623,8,3,15,45,15,3.85,5.0,fr,22116,92,914916,1,2,Active Shallow Crust,0.0,89.99063,0.0,08/03/4623 +-3.14903,49.00558,8770,1,3,14,41,31,3.85,5.0,fr,22117,175,914916,1,2,Active Shallow Crust,0.0,89.99063,0.0,01/03/8770 +-3.14903,49.00558,4943,10,30,3,13,53,4.05,5.0,fr,22118,98,914940,1,1,Active Shallow Crust,0.0,89.9907,0.0,10/30/4943 +3.12796,48.35468,8025,7,17,1,58,37,3.65,5.0,fr,22119,160,915375,1,1,Active Shallow Crust,240.0015,58.01274,0.0,07/17/8025 +4.78751,50.34601,459,5,14,15,19,35,3.55,5.0,fr,22120,9,915840,1,1,Active Shallow Crust,0.0,89.98713,0.0,05/14/0459 +4.78751,50.34601,6080,6,27,10,47,42,3.55,15.0,fr,22121,121,915841,1,1,Active Shallow Crust,0.0,89.98713,0.0,06/27/6080 +4.78751,50.34601,3726,8,24,16,35,13,3.65,5.0,fr,22122,74,915861,1,1,Active Shallow Crust,128.9005,89.96304,0.0,08/24/3726 +4.78751,50.34601,3221,4,10,7,1,15,3.75,15.0,fr,22123,64,915871,1,1,Active Shallow Crust,0.0,89.98965,-90.0,04/10/3221 +4.78751,50.34601,1259,6,19,1,47,10,3.85,15.0,fr,22124,25,915886,1,1,Active Shallow Crust,128.8961,89.99316,0.0,06/19/1259 +4.78751,50.34601,1452,11,16,7,14,13,3.95,15.0,fr,22125,29,915889,1,1,Active Shallow Crust,0.0,89.99188,0.0,11/16/1452 +4.78751,50.34601,1391,3,17,19,17,31,4.05,5.0,fr,22126,27,915900,1,1,Active Shallow Crust,0.0,89.98914,0.0,03/17/1391 +4.78751,50.34601,3510,7,20,16,24,12,4.05,15.0,fr,22127,70,915901,1,2,Active Shallow Crust,0.0,89.98914,0.0,07/20/3510 +4.78751,50.34601,381,2,13,21,29,0,4.05,15.0,fr,22128,7,915901,1,2,Active Shallow Crust,0.0,89.98914,0.0,02/13/0381 +4.78751,50.34601,5765,12,1,7,34,38,4.25,15.0,fr,22129,115,915925,1,1,Active Shallow Crust,0.0,89.99138,0.0,12/01/5765 +4.78751,50.34601,2003,8,1,0,7,38,4.55,5.0,fr,22130,40,915966,1,1,Active Shallow Crust,0.0,89.98971,-90.0,08/01/2003 +4.78751,50.34601,7935,7,17,13,29,56,4.75,5.0,fr,22131,158,915984,1,1,Active Shallow Crust,0.0,89.9903,0.0,07/17/7935 +4.78751,50.34601,450,12,18,4,55,29,5.15,5.0,fr,22132,8,916035,1,1,Active Shallow Crust,240.022,58.00038,0.0,12/18/0450 +2.86504,48.5808,7115,12,28,15,24,23,4.05,5.0,fr,22133,142,916386,1,1,Active Shallow Crust,0.0,89.99051,-90.0,12/28/7115 +2.86504,48.5808,9325,8,17,16,6,16,4.15,5.0,fr,22134,186,916392,1,1,Active Shallow Crust,0.0,89.98997,0.0,08/17/9325 +8.17727,47.10025,284,2,12,22,16,14,3.55,5.0,fr,22135,5,916800,1,6,Active Shallow Crust,0.0,89.98627,0.0,02/12/0284 +8.17727,47.10025,22,3,6,21,31,40,3.55,5.0,fr,22136,0,916800,1,6,Active Shallow Crust,0.0,89.98627,0.0,03/06/0022 +8.17727,47.10025,9799,12,31,11,24,30,3.55,5.0,fr,22137,195,916800,1,6,Active Shallow Crust,0.0,89.98627,0.0,12/31/9799 +8.17727,47.10025,7468,4,7,19,47,29,3.55,5.0,fr,22138,149,916800,1,6,Active Shallow Crust,0.0,89.98627,0.0,04/07/7468 +8.17727,47.10025,310,12,17,7,27,51,3.55,5.0,fr,22139,6,916800,1,6,Active Shallow Crust,0.0,89.98627,0.0,12/17/0310 +8.17727,47.10025,1896,9,26,7,51,41,3.55,5.0,fr,22140,37,916800,1,6,Active Shallow Crust,0.0,89.98627,0.0,09/26/1896 +8.17727,47.10025,264,12,16,1,37,38,3.55,15.0,fr,22141,5,916801,1,3,Active Shallow Crust,0.0,89.98627,0.0,12/16/0264 +8.17727,47.10025,6663,12,1,4,7,4,3.55,15.0,fr,22142,133,916801,1,3,Active Shallow Crust,0.0,89.98627,0.0,12/01/6663 +8.17727,47.10025,922,5,31,12,59,8,3.55,15.0,fr,22143,18,916801,1,3,Active Shallow Crust,0.0,89.98627,0.0,05/31/0922 +8.17727,47.10025,9369,6,30,16,21,59,3.55,27.5,fr,22144,187,916802,1,1,Active Shallow Crust,0.0,89.98627,0.0,06/30/9369 +8.17727,47.10025,8916,1,11,2,37,35,3.55,15.0,fr,22145,178,916807,1,1,Active Shallow Crust,0.0,89.98611,-90.0,01/11/8916 +8.17727,47.10025,1398,4,10,14,5,3,3.55,5.0,fr,22146,27,916809,1,1,Active Shallow Crust,128.8973,89.99313,0.0,04/10/1398 +8.17727,47.10025,6478,4,25,11,11,3,3.65,5.0,fr,22147,129,916812,1,6,Active Shallow Crust,0.0,89.98776,0.0,04/25/6478 +8.17727,47.10025,5990,10,25,2,28,0,3.65,5.0,fr,22148,119,916812,1,6,Active Shallow Crust,0.0,89.98776,0.0,10/25/5990 +8.17727,47.10025,8584,8,1,9,29,49,3.65,5.0,fr,22149,171,916812,1,6,Active Shallow Crust,0.0,89.98776,0.0,08/01/8584 +8.17727,47.10025,5127,8,11,15,59,23,3.65,5.0,fr,22150,102,916812,1,6,Active Shallow Crust,0.0,89.98776,0.0,08/11/5127 +8.17727,47.10025,7407,10,24,18,31,31,3.65,5.0,fr,22151,148,916812,1,6,Active Shallow Crust,0.0,89.98776,0.0,10/24/7407 +8.17727,47.10025,5293,6,3,2,7,50,3.65,5.0,fr,22152,105,916812,1,6,Active Shallow Crust,0.0,89.98776,0.0,06/03/5293 +8.17727,47.10025,5360,8,23,9,50,37,3.65,15.0,fr,22153,107,916813,1,4,Active Shallow Crust,0.0,89.98776,0.0,08/23/5360 +8.17727,47.10025,406,9,16,1,48,10,3.65,15.0,fr,22154,8,916813,1,4,Active Shallow Crust,0.0,89.98776,0.0,09/16/0406 +8.17727,47.10025,86,5,1,14,25,57,3.65,15.0,fr,22155,1,916813,1,4,Active Shallow Crust,0.0,89.98776,0.0,05/01/0086 +8.17727,47.10025,8157,1,7,22,48,22,3.65,15.0,fr,22156,163,916813,1,4,Active Shallow Crust,0.0,89.98776,0.0,01/07/8157 +8.17727,47.10025,6119,1,11,6,53,10,3.65,27.5,fr,22157,122,916814,1,1,Active Shallow Crust,0.0,89.98776,0.0,01/11/6119 +8.17727,47.10025,3070,2,17,19,20,25,3.65,5.0,fr,22158,61,916815,1,1,Active Shallow Crust,240.0013,58.01403,0.0,02/17/3070 +8.17727,47.10025,7534,2,19,7,54,51,3.65,15.0,fr,22159,150,916816,1,1,Active Shallow Crust,240.0013,58.01403,0.0,02/19/7534 +8.17727,47.10025,4340,5,28,14,35,5,3.65,27.5,fr,22160,86,916817,1,1,Active Shallow Crust,240.0013,58.01395,0.0,05/28/4340 +8.17727,47.10025,634,7,14,7,12,20,3.65,5.0,fr,22161,12,916818,1,2,Active Shallow Crust,0.0,89.98763,-90.0,07/14/0634 +8.17727,47.10025,2435,7,23,12,5,41,3.65,5.0,fr,22162,48,916818,1,2,Active Shallow Crust,0.0,89.98763,-90.0,07/23/2435 +8.17727,47.10025,8418,4,16,19,21,46,3.65,27.5,fr,22163,168,916820,1,1,Active Shallow Crust,0.0,89.98763,-90.0,04/16/8418 +8.17727,47.10025,1172,4,17,21,15,18,3.75,5.0,fr,22164,23,916827,1,1,Active Shallow Crust,240.0095,58.01572,0.0,04/17/1172 +8.17727,47.10025,1667,11,14,21,17,26,3.75,15.0,fr,22165,33,916831,1,1,Active Shallow Crust,0.0,89.98897,-90.0,11/14/1667 +8.17727,47.10025,7616,10,9,20,31,27,3.75,5.0,fr,22166,152,916833,1,1,Active Shallow Crust,128.8942,89.9675,0.0,10/09/7616 +8.17727,47.10025,3777,3,21,3,16,1,3.85,5.0,fr,22167,75,916836,1,3,Active Shallow Crust,0.0,89.99028,0.0,03/21/3777 +8.17727,47.10025,6702,11,13,11,48,39,3.85,5.0,fr,22168,134,916836,1,3,Active Shallow Crust,0.0,89.99028,0.0,11/13/6702 +8.17727,47.10025,1291,2,2,21,39,34,3.85,5.0,fr,22169,25,916836,1,3,Active Shallow Crust,0.0,89.99028,0.0,02/02/1291 +8.17727,47.10025,831,3,20,22,37,57,3.85,27.5,fr,22170,16,916838,1,1,Active Shallow Crust,0.0,89.99028,0.0,03/20/0831 +8.17727,47.10025,9456,8,8,11,13,23,3.95,5.0,fr,22171,189,916851,1,1,Active Shallow Crust,240.0201,58.00506,0.0,08/08/9456 +8.17727,47.10025,8813,1,4,4,39,17,3.95,27.5,fr,22172,176,916853,1,1,Active Shallow Crust,240.0201,58.00506,0.0,01/04/8813 +8.17727,47.10025,3016,4,26,1,50,6,4.05,5.0,fr,22173,60,916860,1,2,Active Shallow Crust,0.0,89.99228,0.0,04/26/3016 +8.17727,47.10025,1888,7,5,5,39,41,4.05,5.0,fr,22174,37,916860,1,2,Active Shallow Crust,0.0,89.99228,0.0,07/05/1888 +8.17727,47.10025,1047,5,15,10,52,51,4.05,27.5,fr,22175,20,916862,1,1,Active Shallow Crust,0.0,89.99228,0.0,05/15/1047 +8.17727,47.10025,4786,2,2,10,42,46,4.15,5.0,fr,22176,95,916872,1,1,Active Shallow Crust,0.0,89.99312,0.0,02/02/4786 +8.17727,47.10025,2620,1,21,2,43,11,4.15,5.0,fr,22177,52,916875,1,2,Active Shallow Crust,240.008,57.99804,0.0,01/21/2620 +8.17727,47.10025,4430,6,23,9,58,40,4.15,5.0,fr,22178,88,916875,1,2,Active Shallow Crust,240.008,57.99804,0.0,06/23/4430 +8.17727,47.10025,889,5,9,15,55,52,4.25,5.0,fr,22179,17,916884,1,1,Active Shallow Crust,0.0,89.98773,0.0,05/09/0889 +8.17727,47.10025,9417,3,8,15,16,10,4.25,5.0,fr,22180,188,916887,1,1,Active Shallow Crust,240.009,57.99388,0.0,03/08/9417 +8.17727,47.10025,6227,11,30,21,16,53,4.25,15.0,fr,22181,124,916894,1,1,Active Shallow Crust,128.8948,89.98097,0.0,11/30/6227 +8.17727,47.10025,499,11,26,18,15,49,4.35,5.0,fr,22182,9,916896,1,1,Active Shallow Crust,0.0,89.98907,0.0,11/26/0499 +8.17727,47.10025,3948,11,11,13,16,28,4.35,15.0,fr,22183,78,916897,1,1,Active Shallow Crust,0.0,89.98907,0.0,11/11/3948 +8.17727,47.10025,2576,9,22,7,21,21,4.35,5.0,fr,22184,51,916899,1,1,Active Shallow Crust,240.0089,57.99579,0.0,09/22/2576 +8.17727,47.10025,6664,3,13,15,27,59,4.45,5.0,fr,22185,133,916908,1,1,Active Shallow Crust,0.0,89.99026,0.0,03/13/6664 +8.17727,47.10025,4872,2,25,15,45,53,4.45,15.0,fr,22186,97,916909,1,1,Active Shallow Crust,0.0,89.99026,0.0,02/25/4872 +8.17727,47.10025,2941,5,7,6,14,2,4.55,5.0,fr,22187,58,916920,1,1,Active Shallow Crust,0.0,89.99132,0.0,05/07/2941 +8.17727,47.10025,2692,9,19,0,56,23,4.55,15.0,fr,22188,53,916924,1,1,Active Shallow Crust,240.0095,57.99733,0.0,09/19/2692 +8.17727,47.10025,5962,8,27,15,38,54,4.65,5.0,fr,22189,119,916938,1,1,Active Shallow Crust,0.0,89.98826,-90.0,08/27/5962 +8.17727,47.10025,1463,6,15,19,21,28,5.15,5.0,fr,22190,29,916992,1,1,Active Shallow Crust,0.0,89.98912,0.0,06/15/1463 +8.17727,47.10025,7765,3,12,1,57,53,5.35,5.0,fr,22191,155,917016,1,1,Active Shallow Crust,0.0,89.98962,0.0,03/12/7765 +0.2489,43.87593,586,6,13,21,20,37,3.55,5.0,fr,22192,11,917283,1,1,Active Shallow Crust,240.012,57.99812,0.0,06/13/0586 +0.2489,43.87593,3862,5,1,4,10,50,4.05,5.0,fr,22193,77,917340,1,1,Active Shallow Crust,0.0,89.99004,0.0,05/01/3862 +0.2489,43.87593,8766,1,21,1,12,26,4.25,5.0,fr,22194,175,917364,1,1,Active Shallow Crust,0.0,89.98995,0.0,01/21/8766 +0.2489,43.87593,268,5,25,16,35,48,4.45,27.5,fr,22195,5,917390,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/25/0268 +0.2489,43.87593,2742,7,8,6,19,41,4.95,5.0,fr,22196,54,917451,1,1,Active Shallow Crust,240.0107,58.00424,0.0,07/08/2742 +1.66682,52.4216,9182,9,15,11,36,39,4.25,5.0,fr,22197,183,917850,1,1,Active Shallow Crust,0.0,89.99027,-90.0,09/15/9182 +2.7207,51.68038,4640,12,22,8,5,33,3.55,5.0,fr,22198,92,918240,1,1,Active Shallow Crust,0.0,89.99062,0.0,12/22/4640 +2.7207,51.68038,6449,1,29,10,50,14,3.65,27.5,fr,22199,128,918254,1,1,Active Shallow Crust,0.0,89.98885,0.0,01/29/6449 +2.7207,51.68038,2055,3,14,18,0,17,4.45,15.0,fr,22200,41,918349,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/14/2055 +1.49168,45.86297,8627,8,8,14,16,10,3.55,5.0,fr,22201,172,918729,1,1,Active Shallow Crust,128.896,89.99386,0.0,08/08/8627 +1.49168,45.86297,6945,6,24,11,21,23,3.65,27.5,fr,22202,138,918734,1,1,Active Shallow Crust,0.0,89.99062,0.0,06/24/6945 +1.49168,45.86297,5520,5,3,21,22,14,3.75,5.0,fr,22203,110,918744,1,1,Active Shallow Crust,0.0,89.99024,0.0,05/03/5520 +1.49168,45.86297,2670,10,12,14,5,42,3.75,5.0,fr,22204,53,918747,1,1,Active Shallow Crust,240.0084,58.01749,0.0,10/12/2670 +1.49168,45.86297,1677,2,15,16,18,22,3.75,5.0,fr,22205,33,918750,1,1,Active Shallow Crust,0.0,89.99013,-90.0,02/15/1677 +1.49168,45.86297,194,3,22,10,29,12,3.85,5.0,fr,22206,3,918756,1,2,Active Shallow Crust,0.0,89.99006,0.0,03/22/0194 +1.49168,45.86297,3709,12,16,16,39,3,3.85,5.0,fr,22207,74,918756,1,2,Active Shallow Crust,0.0,89.99006,0.0,12/16/3709 +1.49168,45.86297,7228,2,7,21,45,34,3.85,15.0,fr,22208,144,918757,1,1,Active Shallow Crust,0.0,89.99006,0.0,02/07/7228 +1.49168,45.86297,2730,1,18,21,10,52,3.95,27.5,fr,22209,54,918773,1,1,Active Shallow Crust,240.0196,58.00516,0.0,01/18/2730 +1.49168,45.86297,9421,7,13,20,16,58,4.05,27.5,fr,22210,188,918782,1,1,Active Shallow Crust,0.0,89.99013,0.0,07/13/9421 +1.49168,45.86297,9161,3,27,11,28,40,4.25,5.0,fr,22211,183,918810,1,1,Active Shallow Crust,0.0,89.98969,-90.0,03/27/9161 +1.49168,45.86297,1624,7,23,21,47,7,4.35,5.0,fr,22212,32,918816,1,2,Active Shallow Crust,0.0,89.99021,0.0,07/23/1624 +1.49168,45.86297,3202,12,26,9,18,29,4.35,5.0,fr,22213,64,918816,1,2,Active Shallow Crust,0.0,89.99021,0.0,12/26/3202 +1.49168,45.86297,9617,7,6,20,46,15,4.85,15.0,fr,22214,192,918877,1,1,Active Shallow Crust,0.0,89.99017,0.0,07/06/9617 +1.73966,44.53811,7164,8,2,5,43,6,3.75,5.0,fr,22215,143,919224,1,1,Active Shallow Crust,0.0,89.99001,0.0,08/02/7164 +1.73966,44.53811,2641,1,2,6,47,24,3.85,15.0,fr,22216,52,919237,1,1,Active Shallow Crust,0.0,89.98982,0.0,01/02/2641 +1.73966,44.53811,8541,5,22,13,11,18,3.95,5.0,fr,22217,170,919251,1,1,Active Shallow Crust,240.0195,58.00493,0.0,05/22/8541 +1.73966,44.53811,121,10,19,15,59,16,4.05,5.0,fr,22218,2,919260,1,1,Active Shallow Crust,0.0,89.9899,0.0,10/19/0121 +1.73966,44.53811,3268,9,6,2,56,29,4.05,15.0,fr,22219,65,919261,1,1,Active Shallow Crust,0.0,89.9899,0.0,09/06/3268 +1.73966,44.53811,9623,12,25,8,20,37,4.05,5.0,fr,22220,192,919269,1,1,Active Shallow Crust,128.8907,89.99393,0.0,12/25/9623 +1.73966,44.53811,3179,11,10,5,58,14,4.15,5.0,fr,22221,63,919272,1,1,Active Shallow Crust,0.0,89.99009,0.0,11/10/3179 +1.73966,44.53811,8433,7,28,4,14,27,4.35,5.0,fr,22222,168,919296,1,2,Active Shallow Crust,0.0,89.98998,0.0,07/28/8433 +1.73966,44.53811,58,1,31,3,29,36,4.35,5.0,fr,22223,1,919296,1,2,Active Shallow Crust,0.0,89.98998,0.0,01/31/0058 +-0.35108,43.82056,3221,8,17,14,56,19,3.55,15.0,fr,22224,64,919681,1,1,Active Shallow Crust,0.0,89.99,0.0,08/17/3221 +-0.35108,43.82056,5592,3,19,9,0,23,3.55,5.0,fr,22225,111,919683,1,1,Active Shallow Crust,240.0119,57.99812,0.0,03/19/5592 +-0.35108,43.82056,2530,4,16,0,16,2,3.75,15.0,fr,22226,50,919705,1,1,Active Shallow Crust,0.0,89.98988,0.0,04/16/2530 +-0.35108,43.82056,3590,4,18,6,29,1,3.95,15.0,fr,22227,71,919729,1,1,Active Shallow Crust,0.0,89.98996,0.0,04/18/3590 +-0.35108,43.82056,1067,10,27,20,20,7,5.05,27.5,fr,22228,21,919862,1,1,Active Shallow Crust,0.0,89.98997,0.0,10/27/1067 +8.8518,50.70904,940,12,19,16,56,43,3.85,5.0,fr,22229,18,920199,1,1,Active Shallow Crust,240.0109,57.99787,0.0,12/19/0940 +8.8518,50.70904,9813,8,2,3,27,13,4.35,5.0,fr,22230,196,920256,1,1,Active Shallow Crust,0.0,89.98983,0.0,08/02/9813 +4.25459,40.90948,8094,1,3,9,19,48,3.65,15.0,fr,22231,161,920653,1,1,Active Shallow Crust,0.0,89.99321,0.0,01/03/8094 +4.25459,40.90948,5103,8,15,0,50,12,3.75,5.0,fr,22232,102,920664,1,1,Active Shallow Crust,0.0,89.98789,0.0,08/15/5103 +4.25459,40.90948,5551,9,15,9,18,9,4.25,27.5,fr,22233,111,920729,1,1,Active Shallow Crust,240.0062,57.99379,0.0,09/15/5551 +4.25459,40.90948,8683,9,12,19,23,2,4.25,15.0,fr,22234,173,920734,1,1,Active Shallow Crust,128.8952,89.98074,0.0,09/12/8683 +3.69877,50.55928,1354,5,20,6,10,15,3.55,5.0,fr,22235,27,921120,1,1,Active Shallow Crust,0.0,89.99039,0.0,05/20/1354 +3.69877,50.55928,1996,4,13,8,25,24,3.55,15.0,fr,22236,39,921121,1,1,Active Shallow Crust,0.0,89.99039,0.0,04/13/1996 +3.69877,50.55928,2068,4,23,1,16,43,3.55,27.5,fr,22237,41,921122,1,1,Active Shallow Crust,0.0,89.99039,0.0,04/23/2068 +3.69877,50.55928,2263,9,2,3,39,26,3.55,5.0,fr,22238,45,921123,1,1,Active Shallow Crust,240.0128,57.99827,0.0,09/02/2263 +3.69877,50.55928,7482,8,18,16,59,16,3.55,15.0,fr,22239,149,921124,1,1,Active Shallow Crust,240.0128,57.99827,0.0,08/18/7482 +3.69877,50.55928,8803,10,15,5,25,29,3.55,5.0,fr,22240,176,921129,1,2,Active Shallow Crust,128.8965,89.99359,0.0,10/15/8803 +3.69877,50.55928,6900,10,18,7,44,19,3.55,5.0,fr,22241,137,921129,1,2,Active Shallow Crust,128.8965,89.99359,0.0,10/18/6900 +3.69877,50.55928,1951,12,13,13,37,18,3.65,5.0,fr,22242,39,921132,1,3,Active Shallow Crust,0.0,89.98858,0.0,12/13/1951 +3.69877,50.55928,2405,7,6,11,14,0,3.65,5.0,fr,22243,48,921132,1,3,Active Shallow Crust,0.0,89.98858,0.0,07/06/2405 +3.69877,50.55928,323,12,8,18,12,45,3.65,5.0,fr,22244,6,921132,1,3,Active Shallow Crust,0.0,89.98858,0.0,12/08/0323 +3.69877,50.55928,8039,3,16,4,16,26,3.65,5.0,fr,22245,160,921135,1,1,Active Shallow Crust,240.0021,58.01273,0.0,03/16/8039 +3.69877,50.55928,8220,4,20,10,13,23,3.65,5.0,fr,22246,164,921138,1,1,Active Shallow Crust,0.0,89.99133,-90.0,04/20/8220 +3.69877,50.55928,6165,9,28,16,18,41,3.95,5.0,fr,22247,123,921168,1,2,Active Shallow Crust,0.0,89.98989,0.0,09/28/6165 +3.69877,50.55928,8783,8,26,11,41,45,3.95,5.0,fr,22248,175,921168,1,2,Active Shallow Crust,0.0,89.98989,0.0,08/26/8783 +3.69877,50.55928,6894,12,3,4,26,28,3.95,5.0,fr,22249,137,921174,1,1,Active Shallow Crust,0.0,89.98978,-90.0,12/03/6894 +3.69877,50.55928,9995,12,25,0,13,20,4.05,5.0,fr,22250,199,921180,1,1,Active Shallow Crust,0.0,89.98919,0.0,12/25/9995 +3.69877,50.55928,2027,1,17,20,1,47,4.05,5.0,fr,22251,40,921186,1,1,Active Shallow Crust,0.0,89.99089,-90.0,01/17/2027 +3.69877,50.55928,1087,3,26,6,6,37,4.15,15.0,fr,22252,21,921193,1,1,Active Shallow Crust,0.0,89.99036,0.0,03/26/1087 +3.69877,50.55928,2946,12,18,6,0,29,4.25,15.0,fr,22253,58,921205,1,1,Active Shallow Crust,0.0,89.98998,0.0,12/18/2946 +3.69877,50.55928,6410,10,12,10,20,18,5.25,15.0,fr,22254,128,921331,1,1,Active Shallow Crust,0.0,89.98993,-90.0,10/12/6410 +5.17826,40.89795,9725,2,7,20,31,24,3.55,5.0,fr,22255,194,921600,1,1,Active Shallow Crust,0.0,89.99238,0.0,02/07/9725 +5.17826,40.89795,5585,2,12,23,55,36,3.65,5.0,fr,22256,111,921618,1,1,Active Shallow Crust,0.0,89.99313,-90.0,02/12/5585 +5.17826,40.89795,9666,8,3,22,52,12,3.95,5.0,fr,22257,193,921648,1,1,Active Shallow Crust,0.0,89.99038,0.0,08/03/9666 +8.14826,50.63561,2806,6,12,5,40,34,3.55,5.0,fr,22258,56,922080,1,2,Active Shallow Crust,0.0,89.98721,0.0,06/12/2806 +8.14826,50.63561,3264,12,25,5,38,23,3.55,5.0,fr,22259,65,922080,1,2,Active Shallow Crust,0.0,89.98721,0.0,12/25/3264 +8.14826,50.63561,1440,12,15,22,55,52,3.55,27.5,fr,22260,28,922091,1,1,Active Shallow Crust,128.8967,89.99361,0.0,12/15/1440 +8.14826,50.63561,6981,12,17,9,4,45,3.85,5.0,fr,22261,139,922116,1,1,Active Shallow Crust,0.0,89.99094,0.0,12/17/6981 +8.14826,50.63561,310,6,12,2,52,50,3.95,15.0,fr,22262,6,922129,1,1,Active Shallow Crust,0.0,89.99193,0.0,06/12/0310 +8.14826,50.63561,5846,4,9,4,27,27,5.05,5.0,fr,22263,116,922269,1,1,Active Shallow Crust,128.8832,89.9901,0.0,04/09/5846 +-1.14548,44.15408,2133,1,22,17,37,23,3.65,5.0,fr,22264,42,922581,1,1,Active Shallow Crust,128.9008,89.96348,0.0,01/22/2133 +-1.14548,44.15408,9904,11,1,20,10,10,3.75,15.0,fr,22265,198,922585,1,1,Active Shallow Crust,0.0,89.98994,0.0,11/01/9904 +-1.14548,44.15408,4235,7,25,14,53,58,4.75,5.0,fr,22266,84,922704,1,1,Active Shallow Crust,0.0,89.99001,0.0,07/25/4235 +-1.76728,48.04274,9702,8,16,11,38,44,3.55,5.0,fr,22267,194,923040,1,1,Active Shallow Crust,0.0,89.98988,0.0,08/16/9702 +-1.76728,48.04274,2417,2,25,7,48,0,3.55,15.0,fr,22268,48,923041,1,1,Active Shallow Crust,0.0,89.98988,0.0,02/25/2417 +-1.76728,48.04274,8626,2,26,6,34,25,3.55,27.5,fr,22269,172,923042,1,1,Active Shallow Crust,0.0,89.98988,0.0,02/26/8626 +-1.76728,48.04274,4356,1,15,2,12,14,3.65,5.0,fr,22270,87,923052,1,1,Active Shallow Crust,0.0,89.98949,0.0,01/15/4356 +-1.76728,48.04274,6543,4,11,6,26,19,3.65,5.0,fr,22271,130,923055,1,2,Active Shallow Crust,240.0013,58.01291,0.0,04/11/6543 +-1.76728,48.04274,2974,6,5,17,0,55,3.65,5.0,fr,22272,59,923055,1,2,Active Shallow Crust,240.0013,58.01291,0.0,06/05/2974 +-1.76728,48.04274,4698,5,7,15,54,13,3.75,5.0,fr,22273,93,923064,1,3,Active Shallow Crust,0.0,89.99063,0.0,05/07/4698 +-1.76728,48.04274,4307,4,3,19,50,8,3.75,5.0,fr,22274,86,923064,1,3,Active Shallow Crust,0.0,89.99063,0.0,04/03/4307 +-1.76728,48.04274,4626,4,13,1,48,59,3.75,5.0,fr,22275,92,923064,1,3,Active Shallow Crust,0.0,89.99063,0.0,04/13/4626 +-1.76728,48.04274,4785,10,24,6,39,45,3.75,5.0,fr,22276,95,923067,1,1,Active Shallow Crust,240.0086,58.01761,0.0,10/24/4785 +-1.76728,48.04274,8389,7,13,4,8,28,3.85,5.0,fr,22277,167,923076,1,2,Active Shallow Crust,0.0,89.99046,0.0,07/13/8389 +-1.76728,48.04274,4651,7,19,13,54,21,3.85,5.0,fr,22278,93,923076,1,2,Active Shallow Crust,0.0,89.99046,0.0,07/19/4651 +-1.76728,48.04274,7191,2,10,14,35,31,3.85,5.0,fr,22279,143,923079,1,2,Active Shallow Crust,240.0109,57.99783,0.0,02/10/7191 +-1.76728,48.04274,2538,7,7,15,43,40,3.85,5.0,fr,22280,50,923079,1,2,Active Shallow Crust,240.0109,57.99783,0.0,07/07/2538 +-1.76728,48.04274,7913,2,20,22,5,41,3.95,15.0,fr,22281,158,923089,1,1,Active Shallow Crust,0.0,89.99043,0.0,02/20/7913 +-1.76728,48.04274,9407,4,21,1,42,52,4.05,27.5,fr,22282,188,923102,1,1,Active Shallow Crust,0.0,89.98957,0.0,04/21/9407 +-1.76728,48.04274,8806,1,23,19,10,14,4.25,5.0,fr,22283,176,923124,1,1,Active Shallow Crust,0.0,89.99021,0.0,01/23/8806 +-1.76728,48.04274,3591,5,15,18,33,26,4.45,5.0,fr,22284,71,923148,1,1,Active Shallow Crust,0.0,89.98983,0.0,05/15/3591 +-1.76728,48.04274,428,1,18,9,38,58,4.55,15.0,fr,22285,8,923161,1,1,Active Shallow Crust,0.0,89.98988,0.0,01/18/0428 +-1.76728,48.04274,9686,4,20,17,5,36,4.65,5.0,fr,22286,193,923178,1,1,Active Shallow Crust,0.0,89.98991,-90.0,04/20/9686 +-1.76728,48.04274,7624,9,7,1,59,12,5.35,5.0,fr,22287,152,923259,1,1,Active Shallow Crust,240.0262,57.99802,0.0,09/07/7624 +-1.767288,48.04273,9733,12,3,7,35,29,6.65,10.68981,fr,22288,194,923421,1,1,Active Shallow Crust,128.8166,89.98986,0.0,12/03/9733 +-1.16416,43.32778,40,8,29,5,47,42,3.55,5.0,fr,22289,0,924000,1,1,Active Shallow Crust,0.0,89.99083,0.0,08/29/0040 +-1.16416,43.32778,1234,6,20,18,2,46,3.55,27.5,fr,22290,24,924002,1,1,Active Shallow Crust,0.0,89.99083,0.0,06/20/1234 +-1.16416,43.32778,3033,8,10,7,27,10,3.55,5.0,fr,22291,60,924006,1,2,Active Shallow Crust,0.0,89.99072,-90.0,08/10/3033 +-1.16416,43.32778,8159,5,15,18,5,9,3.55,5.0,fr,22292,163,924006,1,2,Active Shallow Crust,0.0,89.99072,-90.0,05/15/8159 +-1.16416,43.32778,2818,7,12,20,7,19,3.65,5.0,fr,22293,56,924012,1,3,Active Shallow Crust,0.0,89.9902,0.0,07/12/2818 +-1.16416,43.32778,5500,8,16,0,23,50,3.65,5.0,fr,22294,109,924012,1,3,Active Shallow Crust,0.0,89.9902,0.0,08/16/5500 +-1.16416,43.32778,7453,7,24,12,46,45,3.65,5.0,fr,22295,149,924012,1,3,Active Shallow Crust,0.0,89.9902,0.0,07/24/7453 +-1.16416,43.32778,5018,4,19,16,14,52,3.65,27.5,fr,22296,100,924014,1,1,Active Shallow Crust,0.0,89.9902,0.0,04/19/5018 +-1.16416,43.32778,4972,5,12,9,55,16,3.65,15.0,fr,22297,99,924019,1,1,Active Shallow Crust,0.0,89.99008,-90.0,05/12/4972 +-1.16416,43.32778,1231,10,25,17,56,9,3.75,5.0,fr,22298,24,924027,1,1,Active Shallow Crust,240.0081,58.01755,0.0,10/25/1231 +-1.16416,43.32778,1706,6,21,22,51,18,3.75,27.5,fr,22299,34,924032,1,1,Active Shallow Crust,0.0,89.98969,-90.0,06/21/1706 +-1.16416,43.32778,4425,12,2,16,27,38,3.85,5.0,fr,22300,88,924036,1,2,Active Shallow Crust,0.0,89.98962,0.0,12/02/4425 +-1.16416,43.32778,3576,11,30,22,55,51,3.85,5.0,fr,22301,71,924036,1,2,Active Shallow Crust,0.0,89.98962,0.0,11/30/3576 +-1.16416,43.32778,5016,6,8,15,8,21,3.95,5.0,fr,22302,100,924048,1,1,Active Shallow Crust,0.0,89.98959,0.0,06/08/5016 +-1.16416,43.32778,230,9,26,14,32,3,3.95,15.0,fr,22303,4,924049,1,2,Active Shallow Crust,0.0,89.98959,0.0,09/26/0230 +-1.16416,43.32778,8151,10,24,9,27,53,3.95,15.0,fr,22304,163,924049,1,2,Active Shallow Crust,0.0,89.98959,0.0,10/24/8151 +-1.16416,43.32778,2626,2,13,4,9,25,3.95,5.0,fr,22305,52,924057,1,1,Active Shallow Crust,128.9006,89.99422,0.0,02/13/2626 +-1.16416,43.32778,2083,6,29,10,50,53,4.05,5.0,fr,22306,41,924060,1,1,Active Shallow Crust,0.0,89.98969,0.0,06/29/2083 +-1.16416,43.32778,9178,3,1,10,24,33,4.05,5.0,fr,22307,183,924069,1,1,Active Shallow Crust,128.8907,89.99381,0.0,03/01/9178 +-1.16416,43.32778,772,2,25,13,3,49,4.45,5.0,fr,22308,15,924108,1,1,Active Shallow Crust,0.0,89.99024,0.0,02/25/0772 +-1.16416,43.32778,7036,6,2,5,30,42,4.45,15.0,fr,22309,140,924109,1,1,Active Shallow Crust,0.0,89.99024,0.0,06/02/7036 +-1.16416,43.32778,9537,4,14,14,12,22,4.65,5.0,fr,22310,190,924132,1,1,Active Shallow Crust,0.0,89.99018,0.0,04/14/9537 +-1.16416,43.32778,5600,5,4,13,25,7,5.25,5.0,fr,22311,111,924204,1,2,Active Shallow Crust,0.0,89.98989,0.0,05/04/5600 +-1.16416,43.32778,3065,5,6,11,34,6,5.25,5.0,fr,22312,61,924204,1,2,Active Shallow Crust,0.0,89.98989,0.0,05/06/3065 +-1.16416,43.32778,293,3,13,22,6,33,5.25,5.0,fr,22313,5,924210,1,1,Active Shallow Crust,0.0,89.99004,-90.0,03/13/0293 +6.61328,44.03791,4444,12,9,13,1,56,3.55,5.0,fr,22314,88,924960,1,2,Active Shallow Crust,0.0,89.99275,0.0,12/09/4444 +6.61328,44.03791,8467,4,16,23,54,32,3.55,5.0,fr,22315,169,924960,1,2,Active Shallow Crust,0.0,89.99275,0.0,04/16/8467 +6.61328,44.03791,5457,3,1,10,8,58,3.55,15.0,fr,22316,109,924961,1,2,Active Shallow Crust,0.0,89.99275,0.0,03/01/5457 +6.61328,44.03791,5035,7,9,17,54,59,3.55,15.0,fr,22317,100,924961,1,2,Active Shallow Crust,0.0,89.99275,0.0,07/09/5035 +6.61328,44.03791,4217,1,24,17,37,18,3.55,5.0,fr,22318,84,924966,1,2,Active Shallow Crust,0.0,89.99267,-90.0,01/24/4217 +6.61328,44.03791,4813,6,28,13,16,38,3.55,5.0,fr,22319,96,924966,1,2,Active Shallow Crust,0.0,89.99267,-90.0,06/28/4813 +6.61328,44.03791,9258,4,7,21,46,0,3.65,5.0,fr,22320,185,924972,1,4,Active Shallow Crust,0.0,89.98708,0.0,04/07/9258 +6.61328,44.03791,9194,1,18,6,50,40,3.65,5.0,fr,22321,183,924972,1,4,Active Shallow Crust,0.0,89.98708,0.0,01/18/9194 +6.61328,44.03791,9556,1,30,4,51,39,3.65,5.0,fr,22322,191,924972,1,4,Active Shallow Crust,0.0,89.98708,0.0,01/30/9556 +6.61328,44.03791,5312,5,16,16,40,41,3.65,5.0,fr,22323,106,924972,1,4,Active Shallow Crust,0.0,89.98708,0.0,05/16/5312 +6.61328,44.03791,8662,5,7,7,54,2,3.65,5.0,fr,22324,173,924978,1,1,Active Shallow Crust,0.0,89.98693,-90.0,05/07/8662 +6.61328,44.03791,1047,10,18,16,20,9,3.65,15.0,fr,22325,20,924979,1,1,Active Shallow Crust,0.0,89.98693,-90.0,10/18/1047 +6.61328,44.03791,357,7,9,14,28,5,3.75,5.0,fr,22326,7,924984,1,2,Active Shallow Crust,0.0,89.98849,0.0,07/09/0357 +6.61328,44.03791,2164,12,28,16,31,25,3.75,5.0,fr,22327,43,924984,1,2,Active Shallow Crust,0.0,89.98849,0.0,12/28/2164 +6.61328,44.03791,8596,4,20,1,38,3,3.75,15.0,fr,22328,171,924988,1,1,Active Shallow Crust,240.0081,58.01731,0.0,04/20/8596 +6.61328,44.03791,581,9,2,4,15,17,3.95,5.0,fr,22329,11,925008,1,1,Active Shallow Crust,0.0,89.99085,0.0,09/02/0581 +6.61328,44.03791,6432,4,5,19,35,49,4.05,15.0,fr,22330,128,925021,1,1,Active Shallow Crust,0.0,89.99184,0.0,04/05/6432 +6.61328,44.03791,1292,7,9,3,7,16,4.05,15.0,fr,22331,25,925027,1,1,Active Shallow Crust,0.0,89.99175,-90.0,07/09/1292 +6.61328,44.03791,762,5,4,16,20,32,4.35,5.0,fr,22332,15,925059,1,1,Active Shallow Crust,240.008,57.99588,0.0,05/04/0762 +6.61328,44.03791,2666,5,16,0,37,43,4.55,15.0,fr,22333,53,925081,1,1,Active Shallow Crust,0.0,89.99083,0.0,05/16/2666 +6.61328,44.03791,2077,6,21,9,41,30,4.75,5.0,fr,22334,41,925110,1,1,Active Shallow Crust,0.0,89.99079,-90.0,06/21/2077 +6.61328,44.03791,7286,8,24,1,57,13,4.95,5.0,fr,22335,145,925128,1,1,Active Shallow Crust,0.0,89.98988,0.0,08/24/7286 +6.613285,44.03791,5037,5,3,17,6,26,6.35,7.567806,fr,22336,100,925296,1,1,Active Shallow Crust,0.0,89.99004,0.0,05/03/5037 +6.61328,44.03791,4466,3,6,0,12,12,6.95,15.09976,fr,22337,89,925378,1,1,Active Shallow Crust,128.7974,89.99041,0.0,03/06/4466 +-0.44664,48.94013,4587,6,17,9,20,55,3.55,5.0,fr,22338,91,925440,1,3,Active Shallow Crust,0.0,89.99007,0.0,06/17/4587 +-0.44664,48.94013,8517,12,30,23,4,27,3.55,5.0,fr,22339,170,925440,1,3,Active Shallow Crust,0.0,89.99007,0.0,12/30/8517 +-0.44664,48.94013,1977,2,19,18,4,5,3.55,5.0,fr,22340,39,925440,1,3,Active Shallow Crust,0.0,89.99007,0.0,02/19/1977 +-0.44664,48.94013,4389,12,8,23,40,54,3.65,5.0,fr,22341,87,925458,1,1,Active Shallow Crust,0.0,89.98992,-90.0,12/08/4389 +-0.44664,48.94013,2813,12,10,20,27,36,3.65,15.0,fr,22342,56,925459,1,1,Active Shallow Crust,0.0,89.98992,-90.0,12/10/2813 +-0.44664,48.94013,225,8,10,10,32,34,3.75,5.0,fr,22343,4,925464,1,3,Active Shallow Crust,0.0,89.99014,0.0,08/10/0225 +-0.44664,48.94013,546,8,16,18,58,45,3.75,5.0,fr,22344,10,925464,1,3,Active Shallow Crust,0.0,89.99014,0.0,08/16/0546 +-0.44664,48.94013,2097,3,6,21,42,5,3.75,5.0,fr,22345,41,925464,1,3,Active Shallow Crust,0.0,89.99014,0.0,03/06/2097 +-0.44664,48.94013,354,12,26,1,3,29,3.75,15.0,fr,22346,7,925465,1,1,Active Shallow Crust,0.0,89.99014,0.0,12/26/0354 +-0.44664,48.94013,5329,8,31,0,55,42,3.75,5.0,fr,22347,106,925470,1,1,Active Shallow Crust,0.0,89.99002,-90.0,08/31/5329 +-0.44664,48.94013,5810,9,30,12,19,18,3.85,5.0,fr,22348,116,925476,1,1,Active Shallow Crust,0.0,89.99004,0.0,09/30/5810 +-0.44664,48.94013,6097,5,20,2,36,53,3.85,27.5,fr,22349,121,925478,1,1,Active Shallow Crust,0.0,89.99004,0.0,05/20/6097 +-0.44664,48.94013,1173,5,28,6,35,21,3.95,15.0,fr,22350,23,925489,1,1,Active Shallow Crust,0.0,89.99007,0.0,05/28/1173 +-0.44664,48.94013,7220,6,8,14,39,59,3.95,27.5,fr,22351,144,925490,1,1,Active Shallow Crust,0.0,89.99007,0.0,06/08/7220 +-0.44664,48.94013,2319,7,29,19,36,36,4.05,5.0,fr,22352,46,925503,1,1,Active Shallow Crust,240.0064,58.00592,0.0,07/29/2319 +-0.44664,48.94013,6076,3,3,3,37,43,4.25,15.0,fr,22353,121,925525,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/03/6076 +-0.44664,48.94013,2457,5,2,1,8,13,4.85,5.0,fr,22354,49,925596,1,1,Active Shallow Crust,0.0,89.98999,0.0,05/02/2457 +-0.44664,48.94013,627,1,10,5,39,41,5.35,5.0,fr,22355,12,925656,1,1,Active Shallow Crust,0.0,89.98999,0.0,01/10/0627 +-0.44664,48.94013,737,11,8,2,34,5,5.85,27.5,fr,22356,14,925727,1,1,Active Shallow Crust,128.8646,89.99151,0.0,11/08/0737 +7.7218,45.48752,9259,10,12,1,31,1,3.55,5.0,fr,22357,185,925920,1,1,Active Shallow Crust,0.0,89.99293,0.0,10/12/9259 +7.7218,45.48752,5500,5,20,20,57,23,3.55,15.0,fr,22358,109,925921,1,2,Active Shallow Crust,0.0,89.99293,0.0,05/20/5500 +7.7218,45.48752,5315,4,12,22,32,48,3.55,15.0,fr,22359,106,925921,1,2,Active Shallow Crust,0.0,89.99293,0.0,04/12/5315 +7.7218,45.48752,5770,1,9,21,26,33,3.55,27.5,fr,22360,115,925931,1,1,Active Shallow Crust,128.8973,89.99293,0.0,01/09/5770 +7.7218,45.48752,674,7,27,19,53,19,3.75,15.0,fr,22361,13,925948,1,1,Active Shallow Crust,240.0083,58.01731,0.0,07/27/0674 +7.7218,45.48752,2166,1,19,8,57,30,3.75,5.0,fr,22362,43,925950,1,1,Active Shallow Crust,0.0,89.98864,-90.0,01/19/2166 +7.7218,45.48752,3995,8,25,16,49,49,3.85,5.0,fr,22363,79,925956,1,1,Active Shallow Crust,0.0,89.98999,0.0,08/25/3995 +7.7218,45.48752,7242,10,26,13,59,16,3.95,5.0,fr,22364,144,925968,1,1,Active Shallow Crust,0.0,89.99108,0.0,10/26/7242 +7.7218,45.48752,8887,12,22,13,37,3,3.95,5.0,fr,22365,177,925971,1,1,Active Shallow Crust,240.0198,58.00556,0.0,12/22/8887 +7.7218,45.48752,4807,2,15,9,39,42,4.05,5.0,fr,22366,96,925980,1,3,Active Shallow Crust,0.0,89.98808,0.0,02/15/4807 +7.7218,45.48752,80,10,31,16,32,26,4.05,5.0,fr,22367,1,925980,1,3,Active Shallow Crust,0.0,89.98808,0.0,10/31/0080 +7.7218,45.48752,9297,12,14,6,35,0,4.05,5.0,fr,22368,185,925980,1,3,Active Shallow Crust,0.0,89.98808,0.0,12/14/9297 +7.7218,45.48752,6954,5,5,4,23,22,4.05,27.5,fr,22369,139,925991,1,1,Active Shallow Crust,128.8904,89.99403,0.0,05/05/6954 +7.7218,45.48752,8462,6,29,14,41,9,4.25,5.0,fr,22370,169,926004,1,1,Active Shallow Crust,0.0,89.99052,0.0,06/29/8462 +7.7218,45.48752,2512,9,18,19,16,24,4.25,27.5,fr,22371,50,926012,1,1,Active Shallow Crust,0.0,89.99042,-90.0,09/18/2512 +7.7218,45.48752,3672,7,29,15,53,22,4.35,5.0,fr,22372,73,926016,1,1,Active Shallow Crust,0.0,89.98874,0.0,07/29/3672 +7.7218,45.48752,3235,6,12,13,49,21,4.35,5.0,fr,22373,64,926019,1,1,Active Shallow Crust,240.0085,57.9961,0.0,06/12/3235 +7.7218,45.48752,8286,5,27,4,10,4,4.35,5.0,fr,22374,165,926022,1,1,Active Shallow Crust,0.0,89.98861,-90.0,05/27/8286 +7.7218,45.48752,6476,6,6,2,33,31,4.45,5.0,fr,22375,129,926037,1,1,Active Shallow Crust,128.8917,89.99373,0.0,06/06/6476 +7.7218,45.48752,3721,11,20,16,17,4,4.85,15.0,fr,22376,74,926077,1,1,Active Shallow Crust,0.0,89.9905,0.0,11/20/3721 +3.17582,46.44779,9265,4,21,4,20,19,3.85,15.0,fr,22377,185,926443,1,1,Active Shallow Crust,0.0,89.99005,-90.0,04/21/9265 +3.17582,46.44779,8447,1,29,5,18,8,3.95,5.0,fr,22378,168,926448,1,1,Active Shallow Crust,0.0,89.98904,0.0,01/29/8447 +3.86659,51.44508,3737,12,11,15,34,47,3.75,27.5,fr,22379,74,926906,1,1,Active Shallow Crust,0.0,89.99001,0.0,12/11/3737 +3.86659,51.44508,6627,9,15,14,54,12,4.25,27.5,fr,22380,132,926966,1,1,Active Shallow Crust,0.0,89.99017,0.0,09/15/6627 +-1.50312,43.01561,7029,11,22,7,18,16,3.55,5.0,fr,22381,140,927840,1,5,Active Shallow Crust,0.0,89.99078,0.0,11/22/7029 +-1.50312,43.01561,661,5,23,9,51,58,3.55,5.0,fr,22382,13,927840,1,5,Active Shallow Crust,0.0,89.99078,0.0,05/23/0661 +-1.50312,43.01561,9565,8,4,13,38,16,3.55,5.0,fr,22383,191,927840,1,5,Active Shallow Crust,0.0,89.99078,0.0,08/04/9565 +-1.50312,43.01561,8854,7,27,21,59,56,3.55,5.0,fr,22384,177,927840,1,5,Active Shallow Crust,0.0,89.99078,0.0,07/27/8854 +-1.50312,43.01561,6519,8,24,9,33,21,3.55,5.0,fr,22385,130,927840,1,5,Active Shallow Crust,0.0,89.99078,0.0,08/24/6519 +-1.50312,43.01561,300,1,14,18,2,16,3.55,15.0,fr,22386,5,927841,1,2,Active Shallow Crust,0.0,89.99078,0.0,01/14/0300 +-1.50312,43.01561,8158,9,5,13,39,45,3.55,15.0,fr,22387,163,927841,1,2,Active Shallow Crust,0.0,89.99078,0.0,09/05/8158 +-1.50312,43.01561,6936,1,23,23,25,47,3.55,27.5,fr,22388,138,927842,1,1,Active Shallow Crust,0.0,89.99078,0.0,01/23/6936 +-1.50312,43.01561,2093,3,22,17,39,37,3.55,5.0,fr,22389,41,927846,1,1,Active Shallow Crust,0.0,89.99068,-90.0,03/22/2093 +-1.50312,43.01561,6968,8,27,22,26,3,3.65,5.0,fr,22390,139,927852,1,4,Active Shallow Crust,0.0,89.99014,0.0,08/27/6968 +-1.50312,43.01561,4255,12,27,21,2,43,3.65,5.0,fr,22391,85,927852,1,4,Active Shallow Crust,0.0,89.99014,0.0,12/27/4255 +-1.50312,43.01561,524,11,21,17,6,31,3.65,5.0,fr,22392,10,927852,1,4,Active Shallow Crust,0.0,89.99014,0.0,11/21/0524 +-1.50312,43.01561,2147,1,23,3,59,48,3.65,5.0,fr,22393,42,927852,1,4,Active Shallow Crust,0.0,89.99014,0.0,01/23/2147 +-1.50312,43.01561,9983,1,11,2,2,50,3.65,15.0,fr,22394,199,927853,1,1,Active Shallow Crust,0.0,89.99014,0.0,01/11/9983 +-1.50312,43.01561,9280,6,20,16,20,30,3.65,15.0,fr,22395,185,927859,1,1,Active Shallow Crust,0.0,89.99003,-90.0,06/20/9280 +-1.50312,43.01561,3758,5,7,2,50,1,3.75,5.0,fr,22396,75,927864,1,4,Active Shallow Crust,0.0,89.98975,0.0,05/07/3758 +-1.50312,43.01561,7540,11,13,6,36,32,3.75,5.0,fr,22397,150,927864,1,4,Active Shallow Crust,0.0,89.98975,0.0,11/13/7540 +-1.50312,43.01561,3063,6,19,5,17,38,3.75,5.0,fr,22398,61,927864,1,4,Active Shallow Crust,0.0,89.98975,0.0,06/19/3063 +-1.50312,43.01561,501,3,24,2,43,6,3.75,5.0,fr,22399,10,927864,1,4,Active Shallow Crust,0.0,89.98975,0.0,03/24/0501 +-1.50312,43.01561,952,10,26,12,26,20,3.75,15.0,fr,22400,19,927865,1,1,Active Shallow Crust,0.0,89.98975,0.0,10/26/0952 +-1.50312,43.01561,1452,12,4,17,9,57,3.75,5.0,fr,22401,29,927867,1,1,Active Shallow Crust,240.0078,58.01778,0.0,12/04/1452 +-1.50312,43.01561,4857,10,20,21,2,37,3.85,5.0,fr,22402,97,927876,1,1,Active Shallow Crust,0.0,89.98956,0.0,10/20/4857 +-1.50312,43.01561,3831,6,12,12,42,28,3.85,15.0,fr,22403,76,927877,1,1,Active Shallow Crust,0.0,89.98956,0.0,06/12/3831 +-1.50312,43.01561,9260,2,14,11,24,19,3.85,5.0,fr,22404,185,927879,1,1,Active Shallow Crust,240.0104,57.99773,0.0,02/14/9260 +-1.50312,43.01561,781,8,1,6,30,49,3.95,5.0,fr,22405,15,927888,1,4,Active Shallow Crust,0.0,89.98953,0.0,08/01/0781 +-1.50312,43.01561,7513,12,8,17,32,14,3.95,5.0,fr,22406,150,927888,1,4,Active Shallow Crust,0.0,89.98953,0.0,12/08/7513 +-1.50312,43.01561,720,6,16,22,19,23,3.95,5.0,fr,22407,14,927888,1,4,Active Shallow Crust,0.0,89.98953,0.0,06/16/0720 +-1.50312,43.01561,8012,4,21,18,11,9,3.95,5.0,fr,22408,160,927888,1,4,Active Shallow Crust,0.0,89.98953,0.0,04/21/8012 +-1.50312,43.01561,255,4,25,13,29,7,3.95,15.0,fr,22409,5,927889,1,1,Active Shallow Crust,0.0,89.98953,0.0,04/25/0255 +-1.50312,43.01561,3359,11,19,21,33,42,3.95,27.5,fr,22410,67,927890,1,1,Active Shallow Crust,0.0,89.98953,0.0,11/19/3359 +-1.50312,43.01561,2098,7,5,20,33,20,4.05,15.0,fr,22411,41,927901,1,1,Active Shallow Crust,0.0,89.98963,0.0,07/05/2098 +-1.50312,43.01561,5336,3,14,11,8,44,4.05,5.0,fr,22412,106,927903,1,1,Active Shallow Crust,240.0056,58.00572,0.0,03/14/5336 +-1.50312,43.01561,1343,11,12,16,4,53,4.05,5.0,fr,22413,26,927906,1,1,Active Shallow Crust,0.0,89.98952,-90.0,11/12/1343 +-1.50312,43.01561,2154,3,12,8,23,21,4.05,15.0,fr,22414,43,927910,1,1,Active Shallow Crust,128.8911,89.99378,0.0,03/12/2154 +-1.50312,43.01561,8059,6,30,3,52,13,4.15,5.0,fr,22415,161,927912,1,2,Active Shallow Crust,0.0,89.98984,0.0,06/30/8059 +-1.50312,43.01561,4585,9,20,4,4,50,4.15,5.0,fr,22416,91,927912,1,2,Active Shallow Crust,0.0,89.98984,0.0,09/20/4585 +-1.50312,43.01561,7718,1,12,2,6,51,4.25,5.0,fr,22417,154,927924,1,1,Active Shallow Crust,0.0,89.99012,0.0,01/12/7718 +-1.50312,43.01561,4994,5,11,6,32,50,4.35,5.0,fr,22418,99,927936,1,1,Active Shallow Crust,0.0,89.98972,0.0,05/11/4994 +-1.50312,43.01561,1820,1,15,15,59,30,4.65,15.0,fr,22419,36,927973,1,1,Active Shallow Crust,0.0,89.99013,0.0,01/15/1820 +-1.50312,43.01561,5987,1,7,19,47,56,4.65,5.0,fr,22420,119,927975,1,1,Active Shallow Crust,240.0097,57.99411,0.0,01/07/5987 +-1.50312,43.01561,6524,3,10,3,6,28,4.85,5.0,fr,22421,130,927996,1,1,Active Shallow Crust,0.0,89.9901,0.0,03/10/6524 +-1.50312,43.01561,385,3,30,8,44,13,5.25,5.0,fr,22422,7,928050,1,1,Active Shallow Crust,0.0,89.98999,-90.0,03/30/0385 +-1.503112,43.01561,5566,4,5,2,12,49,6.45,8.491219,fr,22423,111,928188,1,1,Active Shallow Crust,0.0,89.98998,0.0,04/05/5566 +-1.503108,43.01561,659,3,15,20,3,17,6.65,10.68981,fr,22424,13,928212,1,1,Active Shallow Crust,0.0,89.98998,0.0,03/15/0659 +5.45886,48.56305,885,6,2,18,53,39,3.55,5.0,fr,22425,17,928329,1,1,Active Shallow Crust,128.8961,89.99332,0.0,06/02/0885 +5.45886,48.56305,6064,12,22,12,17,6,3.75,5.0,fr,22426,121,928344,1,1,Active Shallow Crust,0.0,89.9894,0.0,12/22/6064 +5.45886,48.56305,9229,4,13,17,42,13,3.85,5.0,fr,22427,184,928356,1,1,Active Shallow Crust,0.0,89.99055,0.0,04/13/9229 +5.45886,48.56305,7953,8,14,21,26,51,3.85,15.0,fr,22428,159,928357,1,1,Active Shallow Crust,0.0,89.99055,0.0,08/14/7953 +8.29998,47.88479,5532,1,20,23,27,47,3.55,15.0,fr,22429,110,928810,1,1,Active Shallow Crust,128.8963,89.99324,0.0,01/20/5532 +8.29998,47.88479,6329,8,6,20,49,47,3.75,5.0,fr,22430,126,928824,1,2,Active Shallow Crust,0.0,89.98926,0.0,08/06/6329 +8.29998,47.88479,3374,11,1,1,23,17,3.75,5.0,fr,22431,67,928824,1,2,Active Shallow Crust,0.0,89.98926,0.0,11/01/3374 +8.29998,47.88479,3696,1,15,4,13,6,3.75,15.0,fr,22432,73,928825,1,2,Active Shallow Crust,0.0,89.98926,0.0,01/15/3696 +8.29998,47.88479,8442,11,11,13,11,9,3.75,15.0,fr,22433,168,928825,1,2,Active Shallow Crust,0.0,89.98926,0.0,11/11/8442 +8.29998,47.88479,7256,1,13,12,8,50,3.75,15.0,fr,22434,145,928828,1,1,Active Shallow Crust,240.0097,58.01783,0.0,01/13/7256 +8.29998,47.88479,6647,7,28,9,12,29,3.85,5.0,fr,22435,132,928842,1,1,Active Shallow Crust,0.0,89.99031,-90.0,07/28/6647 +8.29998,47.88479,8754,1,17,11,26,21,3.95,5.0,fr,22436,175,928848,1,1,Active Shallow Crust,0.0,89.99146,0.0,01/17/8754 +8.29998,47.88479,3825,9,4,5,7,1,3.95,15.0,fr,22437,76,928849,1,1,Active Shallow Crust,0.0,89.99146,0.0,09/04/3825 +8.29998,47.88479,4211,8,23,14,9,51,3.95,5.0,fr,22438,84,928851,1,2,Active Shallow Crust,240.0192,58.00462,0.0,08/23/4211 +8.29998,47.88479,8588,1,11,0,4,40,3.95,5.0,fr,22439,171,928851,1,2,Active Shallow Crust,240.0192,58.00462,0.0,01/11/8588 +8.29998,47.88479,7569,2,23,2,43,54,4.45,15.0,fr,22440,151,928912,1,1,Active Shallow Crust,240.0058,57.99509,0.0,02/23/7569 +3.44335,47.89654,185,2,1,6,32,18,3.55,5.0,fr,22441,3,929280,1,1,Active Shallow Crust,0.0,89.98986,0.0,02/01/0185 +3.44335,47.89654,3184,2,14,23,50,49,3.75,5.0,fr,22442,63,929304,1,1,Active Shallow Crust,0.0,89.98926,0.0,02/14/3184 +3.44335,47.89654,4120,6,21,3,11,42,4.45,5.0,fr,22443,82,929388,1,1,Active Shallow Crust,0.0,89.9904,0.0,06/21/4120 +2.35568,45.67144,802,4,22,5,31,7,3.65,5.0,fr,22444,16,929772,1,1,Active Shallow Crust,0.0,89.99058,0.0,04/22/0802 +2.35568,45.67144,4444,8,5,14,49,54,3.65,15.0,fr,22445,88,929773,1,2,Active Shallow Crust,0.0,89.99058,0.0,08/05/4444 +2.35568,45.67144,7296,1,23,10,46,36,3.65,15.0,fr,22446,145,929773,1,2,Active Shallow Crust,0.0,89.99058,0.0,01/23/7296 +2.35568,45.67144,7975,10,22,22,3,23,3.75,5.0,fr,22447,159,929787,1,2,Active Shallow Crust,240.0083,58.0176,0.0,10/22/7975 +2.35568,45.67144,7047,4,21,13,8,23,3.75,5.0,fr,22448,140,929787,1,2,Active Shallow Crust,240.0083,58.0176,0.0,04/21/7047 +2.35568,45.67144,535,10,5,17,40,13,3.75,27.5,fr,22449,10,929789,1,1,Active Shallow Crust,240.0083,58.0176,0.0,10/05/0535 +2.35568,45.67144,5437,11,25,21,8,58,3.75,5.0,fr,22450,108,929790,1,1,Active Shallow Crust,0.0,89.98868,-90.0,11/25/5437 +2.35568,45.67144,120,5,3,15,8,29,4.05,5.0,fr,22451,2,929820,1,2,Active Shallow Crust,0.0,89.9901,0.0,05/03/0120 +2.35568,45.67144,527,9,9,23,59,59,4.05,5.0,fr,22452,10,929820,1,2,Active Shallow Crust,0.0,89.9901,0.0,09/09/0527 +2.35568,45.67144,3987,5,13,16,44,53,4.15,5.0,fr,22453,79,929835,1,1,Active Shallow Crust,240.0084,57.99729,0.0,05/13/3987 +2.35568,45.67144,4578,11,11,16,50,54,4.25,5.0,fr,22454,91,929844,1,1,Active Shallow Crust,0.0,89.99055,0.0,11/11/4578 +2.35568,45.67144,1088,3,18,16,50,3,4.85,15.0,fr,22455,21,929917,1,1,Active Shallow Crust,0.0,89.98975,0.0,03/18/1088 +2.35568,45.67144,6508,11,10,19,6,1,5.05,5.0,fr,22456,130,929940,1,1,Active Shallow Crust,0.0,89.98997,0.0,11/10/6508 +-0.77691,45.28196,9631,4,23,1,55,29,3.75,5.0,fr,22457,192,930264,1,1,Active Shallow Crust,0.0,89.99014,0.0,04/23/9631 +-0.77691,45.28196,2605,10,6,22,37,9,3.95,5.0,fr,22458,52,930288,1,1,Active Shallow Crust,0.0,89.98993,0.0,10/06/2605 +-0.77691,45.28196,9726,7,24,3,1,30,4.85,15.0,fr,22459,194,930406,1,1,Active Shallow Crust,128.893,89.98901,0.0,07/24/9726 +5.89266,51.35193,4287,1,9,22,57,41,3.55,5.0,fr,22460,85,930720,1,3,Active Shallow Crust,0.0,89.9874,0.0,01/09/4287 +5.89266,51.35193,8462,11,13,10,9,47,3.55,5.0,fr,22461,169,930720,1,3,Active Shallow Crust,0.0,89.9874,0.0,11/13/8462 +5.89266,51.35193,9278,6,22,17,36,28,3.55,5.0,fr,22462,185,930720,1,3,Active Shallow Crust,0.0,89.9874,0.0,06/22/9278 +5.89266,51.35193,5890,8,18,12,23,48,3.55,15.0,fr,22463,117,930721,1,1,Active Shallow Crust,0.0,89.9874,0.0,08/18/5890 +5.89266,51.35193,9102,1,10,18,38,55,3.65,5.0,fr,22464,182,930732,1,2,Active Shallow Crust,0.0,89.98878,0.0,01/10/9102 +5.89266,51.35193,1001,8,15,11,11,44,3.65,5.0,fr,22465,20,930732,1,2,Active Shallow Crust,0.0,89.98878,0.0,08/15/1001 +5.89266,51.35193,5404,7,12,16,42,22,3.65,5.0,fr,22466,108,930735,1,1,Active Shallow Crust,240.0029,58.01213,0.0,07/12/5404 +5.89266,51.35193,294,1,20,8,38,56,3.75,15.0,fr,22467,5,930745,1,2,Active Shallow Crust,0.0,89.99,0.0,01/20/0294 +5.89266,51.35193,9930,9,30,10,54,46,3.75,15.0,fr,22468,198,930745,1,2,Active Shallow Crust,0.0,89.99,0.0,09/30/9930 +5.89266,51.35193,7515,11,15,5,38,9,3.75,15.0,fr,22469,150,930748,1,1,Active Shallow Crust,240.0083,58.01796,0.0,11/15/7515 +5.89266,51.35193,1179,3,14,12,35,35,3.75,15.0,fr,22470,23,930754,1,1,Active Shallow Crust,128.8961,89.96709,0.0,03/14/1179 +5.89266,51.35193,9014,2,19,10,2,18,3.85,27.5,fr,22471,180,930758,1,1,Active Shallow Crust,0.0,89.99108,0.0,02/19/9014 +5.89266,51.35193,8935,7,19,14,2,19,3.95,5.0,fr,22472,178,930768,1,2,Active Shallow Crust,0.0,89.98808,0.0,07/19/8935 +5.89266,51.35193,7706,11,21,22,15,34,3.95,5.0,fr,22473,154,930768,1,2,Active Shallow Crust,0.0,89.98808,0.0,11/21/7706 +5.89266,51.35193,4556,3,10,10,41,41,3.95,15.0,fr,22474,91,930775,1,1,Active Shallow Crust,0.0,89.99196,-90.0,03/10/4556 +5.89266,51.35193,5372,1,1,3,22,44,4.05,5.0,fr,22475,107,930780,1,1,Active Shallow Crust,0.0,89.98937,0.0,01/01/5372 +5.89266,51.35193,4260,10,25,19,0,21,4.45,5.0,fr,22476,85,930837,1,1,Active Shallow Crust,128.891,89.99329,0.0,10/25/4260 +6.16763,51.14247,8977,3,20,9,29,50,3.55,5.0,fr,22477,179,931200,1,4,Active Shallow Crust,0.0,89.98735,0.0,03/20/8977 +6.16763,51.14247,188,6,7,9,31,2,3.55,5.0,fr,22478,3,931200,1,4,Active Shallow Crust,0.0,89.98735,0.0,06/07/0188 +6.16763,51.14247,2570,3,23,7,33,13,3.55,5.0,fr,22479,51,931200,1,4,Active Shallow Crust,0.0,89.98735,0.0,03/23/2570 +6.16763,51.14247,3642,5,23,0,40,0,3.55,5.0,fr,22480,72,931200,1,4,Active Shallow Crust,0.0,89.98735,0.0,05/23/3642 +6.16763,51.14247,6514,9,11,22,34,43,3.55,27.5,fr,22481,130,931202,1,1,Active Shallow Crust,0.0,89.98735,0.0,09/11/6514 +6.16763,51.14247,7919,7,21,3,29,31,3.55,5.0,fr,22482,158,931203,1,1,Active Shallow Crust,240.0115,57.99845,0.0,07/21/7919 +6.16763,51.14247,2926,2,4,3,27,2,3.55,15.0,fr,22483,58,931210,1,1,Active Shallow Crust,128.8957,89.99368,0.0,02/04/2926 +6.16763,51.14247,2349,1,4,7,31,21,3.65,5.0,fr,22484,46,931212,1,1,Active Shallow Crust,0.0,89.98872,0.0,01/04/2349 +6.16763,51.14247,546,7,29,21,40,42,3.65,5.0,fr,22485,10,931215,1,1,Active Shallow Crust,240.0019,58.01263,0.0,07/29/0546 +6.16763,51.14247,6656,4,21,20,46,47,3.65,27.5,fr,22486,133,931217,1,1,Active Shallow Crust,240.0019,58.01254,0.0,04/21/6656 +6.16763,51.14247,2671,11,22,15,59,23,3.65,5.0,fr,22487,53,931218,1,1,Active Shallow Crust,0.0,89.98859,-90.0,11/22/2671 +6.16763,51.14247,4754,7,10,13,19,24,3.75,15.0,fr,22488,95,931225,1,2,Active Shallow Crust,0.0,89.98995,0.0,07/10/4754 +6.16763,51.14247,2047,6,23,1,38,34,3.75,15.0,fr,22489,40,931225,1,2,Active Shallow Crust,0.0,89.98995,0.0,06/23/2047 +6.16763,51.14247,8658,7,5,22,3,31,3.85,5.0,fr,22490,173,931236,1,2,Active Shallow Crust,0.0,89.99104,0.0,07/05/8658 +6.16763,51.14247,6023,4,29,1,31,9,3.85,5.0,fr,22491,120,931236,1,2,Active Shallow Crust,0.0,89.99104,0.0,04/29/6023 +6.16763,51.14247,8993,3,16,4,15,25,3.85,5.0,fr,22492,179,931245,1,1,Active Shallow Crust,128.8958,89.99329,0.0,03/16/8993 +6.16763,51.14247,9059,12,28,2,34,9,3.85,15.0,fr,22493,181,931246,1,1,Active Shallow Crust,128.8958,89.99329,0.0,12/28/9059 +6.16763,51.14247,1400,5,12,8,13,29,3.95,5.0,fr,22494,27,931248,1,1,Active Shallow Crust,0.0,89.98802,0.0,05/12/1400 +6.16763,51.14247,131,3,25,21,19,33,4.05,5.0,fr,22495,2,931260,1,1,Active Shallow Crust,0.0,89.98933,0.0,03/25/0131 +6.16763,51.14247,1759,3,30,5,35,13,4.05,5.0,fr,22496,35,931263,1,1,Active Shallow Crust,240.0068,58.00662,0.0,03/30/1759 +6.16763,51.14247,241,4,25,13,37,14,4.15,5.0,fr,22497,4,931281,1,1,Active Shallow Crust,128.8959,89.99366,0.0,04/25/0241 +6.16763,51.14247,4215,8,1,18,27,19,4.25,5.0,fr,22498,84,931284,1,1,Active Shallow Crust,0.0,89.98869,0.0,08/01/4215 +6.16763,51.14247,7212,2,5,8,13,32,4.25,15.0,fr,22499,144,931288,1,1,Active Shallow Crust,240.009,57.99437,0.0,02/05/7212 +6.16763,51.14247,5149,4,18,6,58,21,4.75,5.0,fr,22500,102,931344,1,1,Active Shallow Crust,0.0,89.99046,0.0,04/18/5149 +6.16763,51.14247,1650,11,4,20,2,4,5.25,15.0,fr,22501,32,931408,1,1,Active Shallow Crust,240.0289,58.00092,0.0,11/04/1650 +6.167641,51.14247,2363,3,27,13,23,42,6.55,9.418245,fr,22502,47,931566,1,1,Active Shallow Crust,0.0,89.98997,-90.0,03/27/2363 +7.27043,46.35131,2766,7,15,6,27,40,3.55,5.0,fr,22503,55,931680,1,19,Active Shallow Crust,0.0,89.99304,0.0,07/15/2766 +7.27043,46.35131,1970,2,23,9,48,22,3.55,5.0,fr,22504,39,931680,1,19,Active Shallow Crust,0.0,89.99304,0.0,02/23/1970 +7.27043,46.35131,4776,1,26,1,6,17,3.55,5.0,fr,22505,95,931680,1,19,Active Shallow Crust,0.0,89.99304,0.0,01/26/4776 +7.27043,46.35131,3769,10,6,5,47,47,3.55,5.0,fr,22506,75,931680,1,19,Active Shallow Crust,0.0,89.99304,0.0,10/06/3769 +7.27043,46.35131,1675,1,7,4,14,37,3.55,5.0,fr,22507,33,931680,1,19,Active Shallow Crust,0.0,89.99304,0.0,01/07/1675 +7.27043,46.35131,6048,6,19,5,24,11,3.55,5.0,fr,22508,120,931680,1,19,Active Shallow Crust,0.0,89.99304,0.0,06/19/6048 +7.27043,46.35131,2559,3,14,14,6,47,3.55,5.0,fr,22509,51,931680,1,19,Active Shallow Crust,0.0,89.99304,0.0,03/14/2559 +7.27043,46.35131,1969,7,15,11,23,50,3.55,5.0,fr,22510,39,931680,1,19,Active Shallow Crust,0.0,89.99304,0.0,07/15/1969 +7.27043,46.35131,7069,8,21,23,54,39,3.55,5.0,fr,22511,141,931680,1,19,Active Shallow Crust,0.0,89.99304,0.0,08/21/7069 +7.27043,46.35131,4332,5,16,11,10,12,3.55,5.0,fr,22512,86,931680,1,19,Active Shallow Crust,0.0,89.99304,0.0,05/16/4332 +7.27043,46.35131,2787,5,22,2,48,4,3.55,5.0,fr,22513,55,931680,1,19,Active Shallow Crust,0.0,89.99304,0.0,05/22/2787 +7.27043,46.35131,6885,12,15,23,35,35,3.55,5.0,fr,22514,137,931680,1,19,Active Shallow Crust,0.0,89.99304,0.0,12/15/6885 +7.27043,46.35131,5963,2,27,8,14,20,3.55,5.0,fr,22515,119,931680,1,19,Active Shallow Crust,0.0,89.99304,0.0,02/27/5963 +7.27043,46.35131,9768,8,6,20,9,30,3.55,5.0,fr,22516,195,931680,1,19,Active Shallow Crust,0.0,89.99304,0.0,08/06/9768 +7.27043,46.35131,3392,10,6,15,28,15,3.55,5.0,fr,22517,67,931680,1,19,Active Shallow Crust,0.0,89.99304,0.0,10/06/3392 +7.27043,46.35131,9903,1,25,20,11,38,3.55,5.0,fr,22518,198,931680,1,19,Active Shallow Crust,0.0,89.99304,0.0,01/25/9903 +7.27043,46.35131,356,10,6,6,23,27,3.55,5.0,fr,22519,7,931680,1,19,Active Shallow Crust,0.0,89.99304,0.0,10/06/0356 +7.27043,46.35131,3547,9,12,12,53,27,3.55,5.0,fr,22520,70,931680,1,19,Active Shallow Crust,0.0,89.99304,0.0,09/12/3547 +7.27043,46.35131,6100,1,2,19,6,15,3.55,5.0,fr,22521,121,931680,1,19,Active Shallow Crust,0.0,89.99304,0.0,01/02/6100 +7.27043,46.35131,6249,1,25,18,28,48,3.55,15.0,fr,22522,124,931681,1,8,Active Shallow Crust,0.0,89.99304,0.0,01/25/6249 +7.27043,46.35131,349,1,4,14,57,47,3.55,15.0,fr,22523,6,931681,1,8,Active Shallow Crust,0.0,89.99304,0.0,01/04/0349 +7.27043,46.35131,8947,7,23,18,59,6,3.55,15.0,fr,22524,178,931681,1,8,Active Shallow Crust,0.0,89.99304,0.0,07/23/8947 +7.27043,46.35131,8828,4,6,8,20,29,3.55,15.0,fr,22525,176,931681,1,8,Active Shallow Crust,0.0,89.99304,0.0,04/06/8828 +7.27043,46.35131,3264,12,31,16,27,10,3.55,15.0,fr,22526,65,931681,1,8,Active Shallow Crust,0.0,89.99304,0.0,12/31/3264 +7.27043,46.35131,3650,7,25,8,28,37,3.55,15.0,fr,22527,72,931681,1,8,Active Shallow Crust,0.0,89.99304,0.0,07/25/3650 +7.27043,46.35131,9311,5,10,23,49,58,3.55,15.0,fr,22528,186,931681,1,8,Active Shallow Crust,0.0,89.99304,0.0,05/10/9311 +7.27043,46.35131,610,12,29,0,47,5,3.55,15.0,fr,22529,12,931681,1,8,Active Shallow Crust,0.0,89.99304,0.0,12/29/0610 +7.27043,46.35131,3597,7,19,23,40,31,3.55,27.5,fr,22530,71,931682,1,2,Active Shallow Crust,0.0,89.99304,0.0,07/19/3597 +7.27043,46.35131,2106,10,24,19,36,11,3.55,27.5,fr,22531,42,931682,1,2,Active Shallow Crust,0.0,89.99304,0.0,10/24/2106 +7.27043,46.35131,5179,7,5,21,18,10,3.55,5.0,fr,22532,103,931683,1,4,Active Shallow Crust,240.0131,57.99699,0.0,07/05/5179 +7.27043,46.35131,1916,4,6,7,52,43,3.55,5.0,fr,22533,38,931683,1,4,Active Shallow Crust,240.0131,57.99699,0.0,04/06/1916 +7.27043,46.35131,4593,2,14,16,56,23,3.55,5.0,fr,22534,91,931683,1,4,Active Shallow Crust,240.0131,57.99699,0.0,02/14/4593 +7.27043,46.35131,528,8,15,3,29,34,3.55,5.0,fr,22535,10,931683,1,4,Active Shallow Crust,240.0131,57.99699,0.0,08/15/0528 +7.27043,46.35131,3608,2,19,1,24,13,3.55,5.0,fr,22536,72,931686,1,6,Active Shallow Crust,0.0,89.99296,-90.0,02/19/3608 +7.27043,46.35131,1567,9,19,0,29,5,3.55,5.0,fr,22537,31,931686,1,6,Active Shallow Crust,0.0,89.99296,-90.0,09/19/1567 +7.27043,46.35131,4299,5,7,19,55,15,3.55,5.0,fr,22538,85,931686,1,6,Active Shallow Crust,0.0,89.99296,-90.0,05/07/4299 +7.27043,46.35131,4743,9,22,18,52,44,3.55,5.0,fr,22539,94,931686,1,6,Active Shallow Crust,0.0,89.99296,-90.0,09/22/4743 +7.27043,46.35131,7199,9,18,13,49,37,3.55,5.0,fr,22540,143,931686,1,6,Active Shallow Crust,0.0,89.99296,-90.0,09/18/7199 +7.27043,46.35131,1895,8,26,0,30,51,3.55,5.0,fr,22541,37,931686,1,6,Active Shallow Crust,0.0,89.99296,-90.0,08/26/1895 +7.27043,46.35131,5796,8,29,21,22,53,3.55,15.0,fr,22542,115,931687,1,1,Active Shallow Crust,0.0,89.99296,-90.0,08/29/5796 +7.27043,46.35131,3039,4,12,13,34,7,3.55,27.5,fr,22543,60,931688,1,1,Active Shallow Crust,0.0,89.99296,-90.0,04/12/3039 +7.27043,46.35131,4299,4,8,3,9,48,3.55,5.0,fr,22544,85,931689,1,1,Active Shallow Crust,128.897,89.99304,0.0,04/08/4299 +7.27043,46.35131,7671,2,28,19,54,56,3.55,15.0,fr,22545,153,931690,1,1,Active Shallow Crust,128.897,89.99304,0.0,02/28/7671 +7.27043,46.35131,428,4,21,2,56,49,3.65,5.0,fr,22546,8,931692,1,17,Active Shallow Crust,0.0,89.98759,0.0,04/21/0428 +7.27043,46.35131,2678,4,23,17,57,1,3.65,5.0,fr,22547,53,931692,1,17,Active Shallow Crust,0.0,89.98759,0.0,04/23/2678 +7.27043,46.35131,3470,6,3,19,7,44,3.65,5.0,fr,22548,69,931692,1,17,Active Shallow Crust,0.0,89.98759,0.0,06/03/3470 +7.27043,46.35131,3862,3,15,22,47,38,3.65,5.0,fr,22549,77,931692,1,17,Active Shallow Crust,0.0,89.98759,0.0,03/15/3862 +7.27043,46.35131,7648,2,10,6,51,53,3.65,5.0,fr,22550,152,931692,1,17,Active Shallow Crust,0.0,89.98759,0.0,02/10/7648 +7.27043,46.35131,752,8,21,0,5,5,3.65,5.0,fr,22551,15,931692,1,17,Active Shallow Crust,0.0,89.98759,0.0,08/21/0752 +7.27043,46.35131,7715,2,28,15,1,1,3.65,5.0,fr,22552,154,931692,1,17,Active Shallow Crust,0.0,89.98759,0.0,02/28/7715 +7.27043,46.35131,621,8,19,12,55,59,3.65,5.0,fr,22553,12,931692,1,17,Active Shallow Crust,0.0,89.98759,0.0,08/19/0621 +7.27043,46.35131,7165,7,12,2,35,38,3.65,5.0,fr,22554,143,931692,1,17,Active Shallow Crust,0.0,89.98759,0.0,07/12/7165 +7.27043,46.35131,9220,3,3,11,14,46,3.65,5.0,fr,22555,184,931692,1,17,Active Shallow Crust,0.0,89.98759,0.0,03/03/9220 +7.27043,46.35131,1417,6,28,3,36,27,3.65,5.0,fr,22556,28,931692,1,17,Active Shallow Crust,0.0,89.98759,0.0,06/28/1417 +7.27043,46.35131,1685,6,14,18,24,36,3.65,5.0,fr,22557,33,931692,1,17,Active Shallow Crust,0.0,89.98759,0.0,06/14/1685 +7.27043,46.35131,8169,10,17,13,53,19,3.65,5.0,fr,22558,163,931692,1,17,Active Shallow Crust,0.0,89.98759,0.0,10/17/8169 +7.27043,46.35131,9901,5,27,21,57,28,3.65,5.0,fr,22559,198,931692,1,17,Active Shallow Crust,0.0,89.98759,0.0,05/27/9901 +7.27043,46.35131,6177,8,3,6,14,46,3.65,5.0,fr,22560,123,931692,1,17,Active Shallow Crust,0.0,89.98759,0.0,08/03/6177 +7.27043,46.35131,2657,11,7,3,7,25,3.65,5.0,fr,22561,53,931692,1,17,Active Shallow Crust,0.0,89.98759,0.0,11/07/2657 +7.27043,46.35131,5042,12,27,11,6,54,3.65,5.0,fr,22562,100,931692,1,17,Active Shallow Crust,0.0,89.98759,0.0,12/27/5042 +7.27043,46.35131,8045,5,25,6,9,32,3.65,15.0,fr,22563,160,931693,1,3,Active Shallow Crust,0.0,89.98759,0.0,05/25/8045 +7.27043,46.35131,581,7,17,13,59,52,3.65,15.0,fr,22564,11,931693,1,3,Active Shallow Crust,0.0,89.98759,0.0,07/17/0581 +7.27043,46.35131,1039,6,15,14,43,59,3.65,15.0,fr,22565,20,931693,1,3,Active Shallow Crust,0.0,89.98759,0.0,06/15/1039 +7.27043,46.35131,138,11,20,5,15,6,3.65,27.5,fr,22566,2,931694,1,1,Active Shallow Crust,0.0,89.98759,0.0,11/20/0138 +7.27043,46.35131,2554,7,10,16,34,50,3.65,15.0,fr,22567,51,931696,1,1,Active Shallow Crust,240.0023,58.01217,0.0,07/10/2554 +7.27043,46.35131,9969,9,7,16,22,10,3.65,5.0,fr,22568,199,931698,1,2,Active Shallow Crust,0.0,89.98745,-90.0,09/07/9969 +7.27043,46.35131,6619,3,22,11,33,46,3.65,5.0,fr,22569,132,931698,1,2,Active Shallow Crust,0.0,89.98745,-90.0,03/22/6619 +7.27043,46.35131,3509,10,20,3,2,44,3.65,5.0,fr,22570,70,931701,1,3,Active Shallow Crust,128.9001,89.96352,0.0,10/20/3509 +7.27043,46.35131,9605,7,27,6,1,39,3.65,5.0,fr,22571,192,931701,1,3,Active Shallow Crust,128.9001,89.96352,0.0,07/27/9605 +7.27043,46.35131,2447,10,3,3,29,33,3.65,5.0,fr,22572,48,931701,1,3,Active Shallow Crust,128.9001,89.96352,0.0,10/03/2447 +7.27043,46.35131,9552,3,22,6,28,31,3.65,15.0,fr,22573,191,931702,1,1,Active Shallow Crust,128.9001,89.96352,0.0,03/22/9552 +7.27043,46.35131,6338,2,15,5,56,27,3.75,5.0,fr,22574,126,931704,1,13,Active Shallow Crust,0.0,89.98895,0.0,02/15/6338 +7.27043,46.35131,2814,12,20,3,59,17,3.75,5.0,fr,22575,56,931704,1,13,Active Shallow Crust,0.0,89.98895,0.0,12/20/2814 +7.27043,46.35131,2569,7,5,9,43,10,3.75,5.0,fr,22576,51,931704,1,13,Active Shallow Crust,0.0,89.98895,0.0,07/05/2569 +7.27043,46.35131,8798,4,2,23,8,24,3.75,5.0,fr,22577,175,931704,1,13,Active Shallow Crust,0.0,89.98895,0.0,04/02/8798 +7.27043,46.35131,9582,1,9,0,34,37,3.75,5.0,fr,22578,191,931704,1,13,Active Shallow Crust,0.0,89.98895,0.0,01/09/9582 +7.27043,46.35131,4466,6,18,22,41,27,3.75,5.0,fr,22579,89,931704,1,13,Active Shallow Crust,0.0,89.98895,0.0,06/18/4466 +7.27043,46.35131,442,11,13,0,47,14,3.75,5.0,fr,22580,8,931704,1,13,Active Shallow Crust,0.0,89.98895,0.0,11/13/0442 +7.27043,46.35131,6368,6,20,21,23,44,3.75,5.0,fr,22581,127,931704,1,13,Active Shallow Crust,0.0,89.98895,0.0,06/20/6368 +7.27043,46.35131,1973,6,24,6,59,1,3.75,5.0,fr,22582,39,931704,1,13,Active Shallow Crust,0.0,89.98895,0.0,06/24/1973 +7.27043,46.35131,2955,2,7,21,1,24,3.75,5.0,fr,22583,59,931704,1,13,Active Shallow Crust,0.0,89.98895,0.0,02/07/2955 +7.27043,46.35131,98,1,4,3,1,20,3.75,5.0,fr,22584,1,931704,1,13,Active Shallow Crust,0.0,89.98895,0.0,01/04/0098 +7.27043,46.35131,2582,3,8,23,18,50,3.75,5.0,fr,22585,51,931704,1,13,Active Shallow Crust,0.0,89.98895,0.0,03/08/2582 +7.27043,46.35131,3415,12,27,23,10,43,3.75,5.0,fr,22586,68,931704,1,13,Active Shallow Crust,0.0,89.98895,0.0,12/27/3415 +7.27043,46.35131,8489,2,6,15,23,53,3.75,15.0,fr,22587,169,931705,1,2,Active Shallow Crust,0.0,89.98895,0.0,02/06/8489 +7.27043,46.35131,1802,6,24,17,49,58,3.75,15.0,fr,22588,36,931705,1,2,Active Shallow Crust,0.0,89.98895,0.0,06/24/1802 +7.27043,46.35131,7968,12,4,13,15,12,3.75,27.5,fr,22589,159,931706,1,1,Active Shallow Crust,0.0,89.98895,0.0,12/04/7968 +7.27043,46.35131,9253,6,5,12,31,33,3.75,5.0,fr,22590,185,931707,1,2,Active Shallow Crust,240.008,58.0183,0.0,06/05/9253 +7.27043,46.35131,5804,5,20,14,57,46,3.75,5.0,fr,22591,116,931707,1,2,Active Shallow Crust,240.008,58.0183,0.0,05/20/5804 +7.27043,46.35131,8538,10,23,0,24,5,3.75,5.0,fr,22592,170,931710,1,1,Active Shallow Crust,0.0,89.98882,-90.0,10/23/8538 +7.27043,46.35131,662,10,20,23,52,6,3.75,15.0,fr,22593,13,931711,1,1,Active Shallow Crust,0.0,89.98882,-90.0,10/20/0662 +7.27043,46.35131,5839,5,21,22,50,7,3.75,5.0,fr,22594,116,931713,1,2,Active Shallow Crust,128.8968,89.96749,0.0,05/21/5839 +7.27043,46.35131,1621,9,9,9,39,53,3.75,5.0,fr,22595,32,931713,1,2,Active Shallow Crust,128.8968,89.96749,0.0,09/09/1621 +7.27043,46.35131,639,5,8,17,57,43,3.85,5.0,fr,22596,12,931716,1,10,Active Shallow Crust,0.0,89.99014,0.0,05/08/0639 +7.27043,46.35131,6997,10,2,4,6,39,3.85,5.0,fr,22597,139,931716,1,10,Active Shallow Crust,0.0,89.99014,0.0,10/02/6997 +7.27043,46.35131,8257,6,7,20,59,32,3.85,5.0,fr,22598,165,931716,1,10,Active Shallow Crust,0.0,89.99014,0.0,06/07/8257 +7.27043,46.35131,9632,11,28,6,17,39,3.85,5.0,fr,22599,192,931716,1,10,Active Shallow Crust,0.0,89.99014,0.0,11/28/9632 +7.27043,46.35131,3274,4,18,1,7,57,3.85,5.0,fr,22600,65,931716,1,10,Active Shallow Crust,0.0,89.99014,0.0,04/18/3274 +7.27043,46.35131,4216,10,10,8,43,43,3.85,5.0,fr,22601,84,931716,1,10,Active Shallow Crust,0.0,89.99014,0.0,10/10/4216 +7.27043,46.35131,5652,1,3,4,50,11,3.85,5.0,fr,22602,113,931716,1,10,Active Shallow Crust,0.0,89.99014,0.0,01/03/5652 +7.27043,46.35131,2852,4,17,17,31,18,3.85,5.0,fr,22603,57,931716,1,10,Active Shallow Crust,0.0,89.99014,0.0,04/17/2852 +7.27043,46.35131,6192,2,2,11,3,41,3.85,5.0,fr,22604,123,931716,1,10,Active Shallow Crust,0.0,89.99014,0.0,02/02/6192 +7.27043,46.35131,4826,10,3,22,20,23,3.85,5.0,fr,22605,96,931716,1,10,Active Shallow Crust,0.0,89.99014,0.0,10/03/4826 +7.27043,46.35131,4890,3,5,3,12,56,3.85,15.0,fr,22606,97,931717,1,4,Active Shallow Crust,0.0,89.99014,0.0,03/05/4890 +7.27043,46.35131,5335,7,13,15,32,7,3.85,15.0,fr,22607,106,931717,1,4,Active Shallow Crust,0.0,89.99014,0.0,07/13/5335 +7.27043,46.35131,3895,7,13,10,23,46,3.85,15.0,fr,22608,77,931717,1,4,Active Shallow Crust,0.0,89.99014,0.0,07/13/3895 +7.27043,46.35131,9070,1,6,18,49,21,3.85,15.0,fr,22609,181,931717,1,4,Active Shallow Crust,0.0,89.99014,0.0,01/06/9070 +7.27043,46.35131,4991,8,14,22,5,21,3.85,27.5,fr,22610,99,931718,1,1,Active Shallow Crust,0.0,89.99014,0.0,08/14/4991 +7.27043,46.35131,6493,7,23,22,20,25,3.85,5.0,fr,22611,129,931719,1,2,Active Shallow Crust,240.0115,57.99744,0.0,07/23/6493 +7.27043,46.35131,5831,1,5,0,30,7,3.85,5.0,fr,22612,116,931719,1,2,Active Shallow Crust,240.0115,57.99744,0.0,01/05/5831 +7.27043,46.35131,4535,8,21,22,43,41,3.85,15.0,fr,22613,90,931720,1,1,Active Shallow Crust,240.0115,57.99744,0.0,08/21/4535 +7.27043,46.35131,168,2,27,12,43,12,3.85,5.0,fr,22614,3,931722,1,3,Active Shallow Crust,0.0,89.99003,-90.0,02/27/0168 +7.27043,46.35131,6830,8,24,4,58,26,3.85,5.0,fr,22615,136,931722,1,3,Active Shallow Crust,0.0,89.99003,-90.0,08/24/6830 +7.27043,46.35131,9601,3,1,22,57,45,3.85,5.0,fr,22616,192,931722,1,3,Active Shallow Crust,0.0,89.99003,-90.0,03/01/9601 +7.27043,46.35131,4025,10,9,7,8,44,3.95,5.0,fr,22617,80,931728,1,6,Active Shallow Crust,0.0,89.99122,0.0,10/09/4025 +7.27043,46.35131,9703,7,3,9,33,21,3.95,5.0,fr,22618,194,931728,1,6,Active Shallow Crust,0.0,89.99122,0.0,07/03/9703 +7.27043,46.35131,742,6,27,14,0,3,3.95,5.0,fr,22619,14,931728,1,6,Active Shallow Crust,0.0,89.99122,0.0,06/27/0742 +7.27043,46.35131,3737,5,6,14,18,46,3.95,5.0,fr,22620,74,931728,1,6,Active Shallow Crust,0.0,89.99122,0.0,05/06/3737 +7.27043,46.35131,2269,11,4,22,1,40,3.95,5.0,fr,22621,45,931728,1,6,Active Shallow Crust,0.0,89.99122,0.0,11/04/2269 +7.27043,46.35131,5472,10,2,12,19,30,3.95,5.0,fr,22622,109,931728,1,6,Active Shallow Crust,0.0,89.99122,0.0,10/02/5472 +7.27043,46.35131,3539,11,30,1,54,1,3.95,15.0,fr,22623,70,931729,1,3,Active Shallow Crust,0.0,89.99122,0.0,11/30/3539 +7.27043,46.35131,7228,2,16,3,4,28,3.95,15.0,fr,22624,144,931729,1,3,Active Shallow Crust,0.0,89.99122,0.0,02/16/7228 +7.27043,46.35131,3211,2,6,21,35,26,3.95,15.0,fr,22625,64,931729,1,3,Active Shallow Crust,0.0,89.99122,0.0,02/06/3211 +7.27043,46.35131,3708,12,14,12,16,2,3.95,27.5,fr,22626,74,931730,1,2,Active Shallow Crust,0.0,89.99122,0.0,12/14/3708 +7.27043,46.35131,2795,1,10,8,11,20,3.95,27.5,fr,22627,55,931730,1,2,Active Shallow Crust,0.0,89.99122,0.0,01/10/2795 +7.27043,46.35131,7378,9,24,4,21,53,3.95,5.0,fr,22628,147,931731,1,1,Active Shallow Crust,240.0199,58.00537,0.0,09/24/7378 +7.27043,46.35131,3771,11,4,11,44,34,3.95,15.0,fr,22629,75,931732,1,1,Active Shallow Crust,240.0199,58.00537,0.0,11/04/3771 +7.27043,46.35131,6428,8,24,1,39,51,3.95,5.0,fr,22630,128,931734,1,1,Active Shallow Crust,0.0,89.99111,-90.0,08/24/6428 +7.27043,46.35131,136,8,7,19,24,13,3.95,15.0,fr,22631,2,931735,1,1,Active Shallow Crust,0.0,89.99111,-90.0,08/07/0136 +7.27043,46.35131,4838,1,17,7,36,55,3.95,27.5,fr,22632,96,931736,1,1,Active Shallow Crust,0.0,89.99111,-90.0,01/17/4838 +7.27043,46.35131,3379,5,31,19,59,3,3.95,5.0,fr,22633,67,931737,1,1,Active Shallow Crust,128.9001,89.99342,0.0,05/31/3379 +7.27043,46.35131,4315,12,5,15,29,1,4.05,5.0,fr,22634,86,931740,1,3,Active Shallow Crust,0.0,89.98826,0.0,12/05/4315 +7.27043,46.35131,5982,6,14,23,8,40,4.05,5.0,fr,22635,119,931740,1,3,Active Shallow Crust,0.0,89.98826,0.0,06/14/5982 +7.27043,46.35131,7244,2,16,19,48,38,4.05,5.0,fr,22636,144,931740,1,3,Active Shallow Crust,0.0,89.98826,0.0,02/16/7244 +7.27043,46.35131,2716,10,8,7,18,25,4.05,15.0,fr,22637,54,931741,1,1,Active Shallow Crust,0.0,89.98826,0.0,10/08/2716 +7.27043,46.35131,7388,5,16,18,46,8,4.05,5.0,fr,22638,147,931743,1,1,Active Shallow Crust,240.0057,58.00576,0.0,05/16/7388 +7.27043,46.35131,7152,6,6,19,57,11,4.05,27.5,fr,22639,143,931748,1,1,Active Shallow Crust,0.0,89.98812,-90.0,06/06/7152 +7.27043,46.35131,5163,9,25,9,6,2,4.15,5.0,fr,22640,103,931752,1,3,Active Shallow Crust,0.0,89.98953,0.0,09/25/5163 +7.27043,46.35131,8820,10,11,4,21,52,4.15,5.0,fr,22641,176,931752,1,3,Active Shallow Crust,0.0,89.98953,0.0,10/11/8820 +7.27043,46.35131,777,1,23,2,56,28,4.15,5.0,fr,22642,15,931752,1,3,Active Shallow Crust,0.0,89.98953,0.0,01/23/0777 +7.27043,46.35131,7940,10,2,18,20,19,4.15,15.0,fr,22643,158,931753,1,5,Active Shallow Crust,0.0,89.98953,0.0,10/02/7940 +7.27043,46.35131,4540,3,1,19,27,15,4.15,15.0,fr,22644,90,931753,1,5,Active Shallow Crust,0.0,89.98953,0.0,03/01/4540 +7.27043,46.35131,9908,12,28,1,25,30,4.15,15.0,fr,22645,198,931753,1,5,Active Shallow Crust,0.0,89.98953,0.0,12/28/9908 +7.27043,46.35131,6846,9,9,6,38,55,4.15,15.0,fr,22646,136,931753,1,5,Active Shallow Crust,0.0,89.98953,0.0,09/09/6846 +7.27043,46.35131,1241,1,29,22,35,45,4.15,15.0,fr,22647,24,931753,1,5,Active Shallow Crust,0.0,89.98953,0.0,01/29/1241 +7.27043,46.35131,5631,1,5,8,25,3,4.15,27.5,fr,22648,112,931754,1,1,Active Shallow Crust,0.0,89.98953,0.0,01/05/5631 +7.27043,46.35131,112,1,2,7,25,53,4.15,5.0,fr,22649,2,931755,1,1,Active Shallow Crust,240.0085,57.99754,0.0,01/02/0112 +7.27043,46.35131,7907,7,27,18,38,29,4.25,5.0,fr,22650,158,931764,1,3,Active Shallow Crust,0.0,89.99067,0.0,07/27/7907 +7.27043,46.35131,7737,5,14,4,34,8,4.25,5.0,fr,22651,154,931764,1,3,Active Shallow Crust,0.0,89.99067,0.0,05/14/7737 +7.27043,46.35131,8428,6,29,7,17,14,4.25,5.0,fr,22652,168,931764,1,3,Active Shallow Crust,0.0,89.99067,0.0,06/29/8428 +7.27043,46.35131,9646,8,20,14,17,27,4.25,15.0,fr,22653,192,931765,1,2,Active Shallow Crust,0.0,89.99067,0.0,08/20/9646 +7.27043,46.35131,1835,2,26,23,16,16,4.25,15.0,fr,22654,36,931765,1,2,Active Shallow Crust,0.0,89.99067,0.0,02/26/1835 +7.27043,46.35131,9973,2,13,1,25,10,4.25,27.5,fr,22655,199,931766,1,1,Active Shallow Crust,0.0,89.99067,0.0,02/13/9973 +7.27043,46.35131,758,3,12,11,33,40,4.25,5.0,fr,22656,15,931767,1,1,Active Shallow Crust,240.0074,57.99418,0.0,03/12/0758 +7.27043,46.35131,2820,3,22,16,50,41,4.25,15.0,fr,22657,56,931768,1,1,Active Shallow Crust,240.0074,57.99418,0.0,03/22/2820 +7.27043,46.35131,8389,3,9,15,45,47,4.25,27.5,fr,22658,167,931772,1,1,Active Shallow Crust,0.0,89.99056,-90.0,03/09/8389 +7.27043,46.35131,7804,4,24,4,36,40,4.35,5.0,fr,22659,156,931776,1,3,Active Shallow Crust,0.0,89.98891,0.0,04/24/7804 +7.27043,46.35131,2432,3,6,0,53,10,4.35,5.0,fr,22660,48,931776,1,3,Active Shallow Crust,0.0,89.98891,0.0,03/06/2432 +7.27043,46.35131,5939,2,4,12,34,59,4.35,5.0,fr,22661,118,931776,1,3,Active Shallow Crust,0.0,89.98891,0.0,02/04/5939 +7.27043,46.35131,337,9,30,6,8,8,4.35,15.0,fr,22662,6,931777,1,2,Active Shallow Crust,0.0,89.98891,0.0,09/30/0337 +7.27043,46.35131,7755,6,10,7,49,29,4.35,15.0,fr,22663,155,931777,1,2,Active Shallow Crust,0.0,89.98891,0.0,06/10/7755 +7.27043,46.35131,3831,3,5,21,15,48,4.35,5.0,fr,22664,76,931779,1,1,Active Shallow Crust,240.0085,57.99626,0.0,03/05/3831 +7.27043,46.35131,6881,9,27,18,51,34,4.35,27.5,fr,22665,137,931781,1,1,Active Shallow Crust,240.0085,57.99626,0.0,09/27/6881 +7.27043,46.35131,2938,4,27,13,20,10,4.35,5.0,fr,22666,58,931782,1,1,Active Shallow Crust,0.0,89.98878,-90.0,04/27/2938 +7.27043,46.35131,4473,4,4,9,58,2,4.45,5.0,fr,22667,89,931788,1,3,Active Shallow Crust,0.0,89.99012,0.0,04/04/4473 +7.27043,46.35131,4750,8,20,16,16,36,4.45,5.0,fr,22668,94,931788,1,3,Active Shallow Crust,0.0,89.99012,0.0,08/20/4750 +7.27043,46.35131,8338,7,24,17,13,59,4.45,5.0,fr,22669,166,931788,1,3,Active Shallow Crust,0.0,89.99012,0.0,07/24/8338 +7.27043,46.35131,9824,7,4,1,0,52,4.45,15.0,fr,22670,196,931795,1,2,Active Shallow Crust,0.0,89.99001,-90.0,07/04/9824 +7.27043,46.35131,1870,10,13,9,51,0,4.45,15.0,fr,22671,37,931795,1,2,Active Shallow Crust,0.0,89.99001,-90.0,10/13/1870 +7.27043,46.35131,807,7,16,17,36,46,4.55,5.0,fr,22672,16,931800,1,1,Active Shallow Crust,0.0,89.98899,0.0,07/16/0807 +7.27043,46.35131,2881,10,11,9,40,18,4.65,5.0,fr,22673,57,931812,1,2,Active Shallow Crust,0.0,89.99019,0.0,10/11/2881 +7.27043,46.35131,1697,11,19,20,42,49,4.65,5.0,fr,22674,33,931812,1,2,Active Shallow Crust,0.0,89.99019,0.0,11/19/1697 +7.27043,46.35131,5292,5,18,1,20,0,4.75,5.0,fr,22675,105,931824,1,1,Active Shallow Crust,0.0,89.98951,0.0,05/18/5292 +7.27043,46.35131,7274,7,26,8,46,36,4.75,5.0,fr,22676,145,931827,1,2,Active Shallow Crust,240.0073,58.00474,0.0,07/26/7274 +7.27043,46.35131,7721,4,1,15,3,14,4.75,5.0,fr,22677,154,931827,1,2,Active Shallow Crust,240.0073,58.00474,0.0,04/01/7721 +7.27043,46.35131,3688,8,21,5,34,55,4.75,15.0,fr,22678,73,931828,1,1,Active Shallow Crust,240.0073,58.00474,0.0,08/21/3688 +7.27043,46.35131,6047,9,4,6,17,34,4.85,5.0,fr,22679,120,931839,1,1,Active Shallow Crust,240.0172,58.00228,0.0,09/04/6047 +7.27043,46.35131,4872,12,26,2,9,15,4.95,5.0,fr,22680,97,931848,1,1,Active Shallow Crust,0.0,89.99028,0.0,12/26/4872 +7.27043,46.35131,2672,3,9,6,28,4,4.95,5.0,fr,22681,53,931857,1,1,Active Shallow Crust,128.8899,89.98981,0.0,03/09/2672 +7.27043,46.35131,9347,7,9,19,40,14,5.05,5.0,fr,22682,186,931860,1,1,Active Shallow Crust,0.0,89.9901,0.0,07/09/9347 +7.27043,46.35131,3953,12,11,7,49,38,5.15,27.5,fr,22683,79,931874,1,1,Active Shallow Crust,0.0,89.99007,0.0,12/11/3953 +7.27043,46.35131,3946,10,5,4,1,38,5.15,5.0,fr,22684,78,931875,1,1,Active Shallow Crust,240.0194,58.00005,0.0,10/05/3946 +7.27043,46.35131,9568,9,21,2,7,49,5.25,5.0,fr,22685,191,931884,1,1,Active Shallow Crust,0.0,89.99017,0.0,09/21/9568 +7.27043,46.35131,5874,1,6,13,58,50,5.25,27.5,fr,22686,117,931892,1,1,Active Shallow Crust,0.0,89.99005,-90.0,01/06/5874 +7.27043,46.35131,8182,2,20,5,33,56,5.45,5.0,fr,22687,163,931908,1,1,Active Shallow Crust,0.0,89.98985,0.0,02/20/8182 +7.27043,46.35131,1037,7,29,2,56,56,5.45,27.5,fr,22688,20,931913,1,1,Active Shallow Crust,240.0287,57.99846,0.0,07/29/1037 +7.27043,46.35131,4385,2,6,21,10,0,5.45,5.0,fr,22689,87,931914,1,1,Active Shallow Crust,0.0,89.98972,-90.0,02/06/4385 +7.27043,46.35131,8793,7,8,6,43,11,5.55,15.0,fr,22690,175,931921,1,1,Active Shallow Crust,0.0,89.99025,0.0,07/08/8793 +7.27043,46.35131,7410,1,28,5,9,35,5.95,15.0,fr,22691,148,931969,1,1,Active Shallow Crust,0.0,89.98989,0.0,01/28/7410 +7.27043,46.35131,9008,3,21,19,32,52,5.95,27.5,fr,22692,180,931970,1,1,Active Shallow Crust,0.0,89.98989,0.0,03/21/9008 +7.270432,46.35131,20,5,24,22,48,36,6.15,6.011322,fr,22693,0,931992,1,1,Active Shallow Crust,0.0,89.99005,0.0,05/24/0020 +-3.67735,49.63286,8491,12,24,17,45,59,3.55,15.0,fr,22694,169,932164,1,1,Active Shallow Crust,240.013,57.9979,0.0,12/24/8491 +-3.67735,49.63286,7513,11,19,20,3,37,3.75,5.0,fr,22695,150,932184,1,1,Active Shallow Crust,0.0,89.98962,0.0,11/19/7513 +-3.67735,49.63286,5943,6,22,21,51,3,3.85,15.0,fr,22696,118,932200,1,1,Active Shallow Crust,240.0112,57.9978,0.0,06/22/5943 +-3.67735,49.63286,4258,9,1,21,24,21,4.05,15.0,fr,22697,85,932221,1,1,Active Shallow Crust,0.0,89.99081,0.0,09/01/4258 +-4.16033,47.82521,5997,9,5,20,51,11,3.75,5.0,fr,22698,119,932670,1,1,Active Shallow Crust,0.0,89.98912,-90.0,09/05/5997 +-4.16033,47.82521,1523,3,23,9,54,57,4.25,15.0,fr,22699,30,932728,1,1,Active Shallow Crust,240.008,57.99421,0.0,03/23/1523 +-4.16033,47.82521,8354,8,21,4,21,32,4.65,5.0,fr,22700,167,932772,1,1,Active Shallow Crust,0.0,89.99046,0.0,08/21/8354 +1.229,48.24309,69,4,19,7,4,37,3.65,5.0,fr,22701,1,933132,1,2,Active Shallow Crust,0.0,89.98952,0.0,04/19/0069 +1.229,48.24309,887,7,2,20,39,2,3.65,5.0,fr,22702,17,933132,1,2,Active Shallow Crust,0.0,89.98952,0.0,07/02/0887 +1.229,48.24309,5735,6,28,14,47,46,3.75,15.0,fr,22703,114,933154,1,1,Active Shallow Crust,128.8965,89.96728,0.0,06/28/5735 +1.229,48.24309,7436,8,16,15,46,23,4.05,5.0,fr,22704,148,933180,1,2,Active Shallow Crust,0.0,89.98962,0.0,08/16/7436 +1.229,48.24309,8904,6,2,10,44,4,4.05,5.0,fr,22705,178,933180,1,2,Active Shallow Crust,0.0,89.98962,0.0,06/02/8904 +1.229,48.24309,4054,4,9,21,27,14,4.15,5.0,fr,22706,81,933195,1,1,Active Shallow Crust,240.0087,57.99744,0.0,04/09/4054 +1.229,48.24309,2204,2,18,9,45,46,4.55,5.0,fr,22707,44,933240,1,1,Active Shallow Crust,0.0,89.98991,0.0,02/18/2204 +1.229,48.24309,3579,7,16,0,11,53,4.65,15.0,fr,22708,71,933253,1,1,Active Shallow Crust,0.0,89.99006,0.0,07/16/3579 +1.229,48.24309,649,11,7,0,45,35,4.65,5.0,fr,22709,12,933255,1,1,Active Shallow Crust,240.0114,57.99439,0.0,11/07/0649 +1.91324,48.01412,7080,11,9,16,3,6,3.55,5.0,fr,22710,141,933603,1,1,Active Shallow Crust,240.012,57.9982,0.0,11/09/7080 +1.91324,48.01412,535,4,12,3,39,7,4.15,27.5,fr,22711,10,933674,1,1,Active Shallow Crust,0.0,89.98986,0.0,04/12/0535 +1.91324,48.01412,3390,9,19,15,18,21,5.75,5.0,fr,22712,67,933864,1,1,Active Shallow Crust,0.0,89.98994,0.0,09/19/3390 +8.34842,44.89607,6065,9,23,18,24,17,3.55,5.0,fr,22713,121,934080,1,1,Active Shallow Crust,0.0,89.98571,0.0,09/23/6065 +8.34842,44.89607,6067,7,1,4,17,7,3.55,5.0,fr,22714,121,934083,1,1,Active Shallow Crust,240.0137,57.99879,0.0,07/01/6067 +8.34842,44.89607,6999,5,28,22,44,13,3.95,15.0,fr,22715,139,934129,1,1,Active Shallow Crust,0.0,89.99098,0.0,05/28/6999 +8.34842,44.89607,1144,3,6,21,46,3,3.95,5.0,fr,22716,22,934131,1,1,Active Shallow Crust,240.0186,58.00521,0.0,03/06/1144 +8.34842,44.89607,5704,3,27,2,31,16,4.05,5.0,fr,22717,114,934140,1,1,Active Shallow Crust,0.0,89.99197,0.0,03/27/5704 +8.34842,44.89607,8963,9,2,13,16,59,4.35,5.0,fr,22718,179,934182,1,1,Active Shallow Crust,0.0,89.98849,-90.0,09/02/8963 +-0.97798,50.62596,5956,9,26,17,15,11,3.95,5.0,fr,22719,119,934614,1,1,Active Shallow Crust,0.0,89.98979,-90.0,09/26/5956 +-0.97798,50.62596,3539,12,17,17,52,57,4.15,5.0,fr,22720,70,934638,1,1,Active Shallow Crust,0.0,89.98986,-90.0,12/17/3539 +-3.00653,50.09005,2672,11,21,2,17,19,4.75,5.0,fr,22721,53,935187,1,1,Active Shallow Crust,240.0089,58.00471,0.0,11/21/2672 +5.90852,45.14015,8643,4,14,9,35,29,3.55,5.0,fr,22722,172,935520,1,1,Active Shallow Crust,0.0,89.99289,0.0,04/14/8643 +5.90852,45.14015,6649,11,13,18,56,45,3.55,27.5,fr,22723,132,935522,1,1,Active Shallow Crust,0.0,89.99289,0.0,11/13/6649 +5.90852,45.14015,9206,1,22,2,33,40,3.65,5.0,fr,22724,184,935532,1,1,Active Shallow Crust,0.0,89.98732,0.0,01/22/9206 +5.90852,45.14015,3221,10,11,13,44,6,3.65,15.0,fr,22725,64,935533,1,1,Active Shallow Crust,0.0,89.98732,0.0,10/11/3221 +5.90852,45.14015,9206,5,16,7,33,2,3.65,5.0,fr,22726,184,935535,1,1,Active Shallow Crust,239.9996,58.01341,0.0,05/16/9206 +5.90852,45.14015,3999,8,18,18,28,20,3.65,5.0,fr,22727,79,935538,1,1,Active Shallow Crust,0.0,89.98717,-90.0,08/18/3999 +5.90852,45.14015,3624,10,20,5,53,15,3.75,5.0,fr,22728,72,935544,1,5,Active Shallow Crust,0.0,89.9887,0.0,10/20/3624 +5.90852,45.14015,7208,4,30,8,47,33,3.75,5.0,fr,22729,144,935544,1,5,Active Shallow Crust,0.0,89.9887,0.0,04/30/7208 +5.90852,45.14015,4294,10,3,15,52,35,3.75,5.0,fr,22730,85,935544,1,5,Active Shallow Crust,0.0,89.9887,0.0,10/03/4294 +5.90852,45.14015,1028,10,1,23,24,47,3.75,5.0,fr,22731,20,935544,1,5,Active Shallow Crust,0.0,89.9887,0.0,10/01/1028 +5.90852,45.14015,9238,4,14,5,9,27,3.75,5.0,fr,22732,184,935544,1,5,Active Shallow Crust,0.0,89.9887,0.0,04/14/9238 +5.90852,45.14015,9221,12,17,15,8,22,3.75,15.0,fr,22733,184,935545,1,1,Active Shallow Crust,0.0,89.9887,0.0,12/17/9221 +5.90852,45.14015,6567,9,3,9,46,29,3.75,27.5,fr,22734,131,935546,1,1,Active Shallow Crust,0.0,89.9887,0.0,09/03/6567 +5.90852,45.14015,1058,9,12,20,17,21,3.75,5.0,fr,22735,21,935547,1,1,Active Shallow Crust,240.0082,58.01726,0.0,09/12/1058 +5.90852,45.14015,1915,7,2,20,22,18,3.75,27.5,fr,22736,38,935552,1,1,Active Shallow Crust,0.0,89.98857,-90.0,07/02/1915 +5.90852,45.14015,4234,10,2,7,5,58,3.75,15.0,fr,22737,84,935554,1,1,Active Shallow Crust,128.8965,89.96747,0.0,10/02/4234 +5.90852,45.14015,9646,8,12,22,36,27,3.85,5.0,fr,22738,192,935565,1,1,Active Shallow Crust,128.8956,89.99496,0.0,08/12/9646 +5.90852,45.14015,2466,12,26,14,54,45,3.95,15.0,fr,22739,49,935569,1,1,Active Shallow Crust,0.0,89.99102,0.0,12/26/2466 +5.90852,45.14015,6528,12,30,10,21,2,3.95,15.0,fr,22740,130,935578,1,1,Active Shallow Crust,128.9004,89.99327,0.0,12/30/6528 +5.90852,45.14015,7883,4,21,20,27,43,4.05,5.0,fr,22741,157,935580,1,1,Active Shallow Crust,359.998,89.992,0.0,04/21/7883 +5.90852,45.14015,6105,8,5,10,7,54,4.05,5.0,fr,22742,122,935589,1,1,Active Shallow Crust,128.8915,89.992,0.0,08/05/6105 +5.90852,45.14015,5674,6,28,13,10,55,4.15,15.0,fr,22743,113,935593,1,1,Active Shallow Crust,0.0,89.9893,0.0,06/28/5674 +5.90852,45.14015,2869,3,23,5,35,31,4.45,15.0,fr,22744,57,935629,1,1,Active Shallow Crust,0.0,89.98991,0.0,03/23/2869 +5.90852,45.14015,3340,7,16,11,7,21,4.55,15.0,fr,22745,66,935647,1,1,Active Shallow Crust,0.0,89.9909,-90.0,07/16/3340 +5.90852,45.14015,6734,3,5,14,8,13,4.75,5.0,fr,22746,134,935664,1,1,Active Shallow Crust,0.0,89.98928,0.0,03/05/6734 +5.90852,45.14015,8746,11,30,4,25,46,4.75,5.0,fr,22747,174,935667,1,1,Active Shallow Crust,240.0074,58.00407,0.0,11/30/8746 +5.90852,45.14015,3366,7,3,10,46,11,4.95,5.0,fr,22748,67,935688,1,1,Active Shallow Crust,0.0,89.99007,0.0,07/03/3366 +5.90852,45.14015,9064,5,26,21,48,11,5.05,5.0,fr,22749,181,935700,1,1,Active Shallow Crust,0.0,89.98988,0.0,05/26/9064 +7.77939,48.33856,2513,4,6,2,29,47,3.55,5.0,fr,22750,50,936000,1,2,Active Shallow Crust,0.0,89.99329,0.0,04/06/2513 +7.77939,48.33856,4631,3,19,2,43,51,3.55,5.0,fr,22751,92,936000,1,2,Active Shallow Crust,0.0,89.99329,0.0,03/19/4631 +7.77939,48.33856,7577,8,12,9,34,10,3.55,15.0,fr,22752,151,936001,1,1,Active Shallow Crust,0.0,89.99329,0.0,08/12/7577 +7.77939,48.33856,8089,4,8,9,26,5,3.55,5.0,fr,22753,161,936003,1,1,Active Shallow Crust,240.0131,57.9976,0.0,04/08/8089 +7.77939,48.33856,3512,8,6,19,51,53,3.55,15.0,fr,22754,70,936004,1,1,Active Shallow Crust,240.0131,57.9976,0.0,08/06/3512 +7.77939,48.33856,3153,10,14,4,37,8,3.55,5.0,fr,22755,63,936009,1,1,Active Shallow Crust,128.8962,89.99329,0.0,10/14/3153 +7.77939,48.33856,2423,3,23,8,7,55,3.55,15.0,fr,22756,48,936010,1,1,Active Shallow Crust,128.8962,89.99329,0.0,03/23/2423 +7.77939,48.33856,5480,10,29,9,59,17,3.65,5.0,fr,22757,109,936012,1,3,Active Shallow Crust,0.0,89.98805,0.0,10/29/5480 +7.77939,48.33856,1439,9,3,10,55,17,3.65,5.0,fr,22758,28,936012,1,3,Active Shallow Crust,0.0,89.98805,0.0,09/03/1439 +7.77939,48.33856,7398,6,11,1,57,49,3.65,5.0,fr,22759,147,936012,1,3,Active Shallow Crust,0.0,89.98805,0.0,06/11/7398 +7.77939,48.33856,159,5,7,1,5,33,3.65,5.0,fr,22760,3,936021,1,1,Active Shallow Crust,128.9012,89.96295,0.0,05/07/0159 +7.77939,48.33856,3853,5,9,13,49,11,3.75,5.0,fr,22761,77,936024,1,1,Active Shallow Crust,0.0,89.98935,0.0,05/09/3853 +7.77939,48.33856,1599,3,24,16,37,24,3.75,15.0,fr,22762,31,936025,1,1,Active Shallow Crust,0.0,89.98935,0.0,03/24/1599 +7.77939,48.33856,6929,2,11,7,17,6,3.75,15.0,fr,22763,138,936028,1,1,Active Shallow Crust,240.0086,58.01798,0.0,02/11/6929 +7.77939,48.33856,4767,6,13,16,0,47,3.75,27.5,fr,22764,95,936032,1,1,Active Shallow Crust,0.0,89.98923,-90.0,06/13/4767 +7.77939,48.33856,5138,11,18,12,7,6,3.75,5.0,fr,22765,102,936033,1,1,Active Shallow Crust,128.8965,89.96698,0.0,11/18/5138 +7.77939,48.33856,5644,1,31,5,48,43,3.85,5.0,fr,22766,112,936036,1,5,Active Shallow Crust,0.0,89.99051,0.0,01/31/5644 +7.77939,48.33856,9837,7,10,1,11,32,3.85,5.0,fr,22767,196,936036,1,5,Active Shallow Crust,0.0,89.99051,0.0,07/10/9837 +7.77939,48.33856,2743,5,26,19,0,42,3.85,5.0,fr,22768,54,936036,1,5,Active Shallow Crust,0.0,89.99051,0.0,05/26/2743 +7.77939,48.33856,3637,4,29,20,59,26,3.85,5.0,fr,22769,72,936036,1,5,Active Shallow Crust,0.0,89.99051,0.0,04/29/3637 +7.77939,48.33856,1398,9,2,17,28,32,3.85,5.0,fr,22770,27,936036,1,5,Active Shallow Crust,0.0,89.99051,0.0,09/02/1398 +7.77939,48.33856,8430,10,30,20,34,15,3.85,5.0,fr,22771,168,936042,1,1,Active Shallow Crust,0.0,89.9904,-90.0,10/30/8430 +7.77939,48.33856,3608,1,7,6,16,56,3.95,5.0,fr,22772,72,936048,1,1,Active Shallow Crust,0.0,89.99154,0.0,01/07/3608 +7.77939,48.33856,9321,11,30,4,5,58,3.95,15.0,fr,22773,186,936055,1,1,Active Shallow Crust,0.0,89.99144,-90.0,11/30/9321 +7.77939,48.33856,1728,4,15,0,56,16,4.05,5.0,fr,22774,34,936060,1,2,Active Shallow Crust,0.0,89.98869,0.0,04/15/1728 +7.77939,48.33856,7408,3,10,17,21,33,4.05,5.0,fr,22775,148,936060,1,2,Active Shallow Crust,0.0,89.98869,0.0,03/10/7408 +7.77939,48.33856,4370,6,12,3,46,13,4.05,15.0,fr,22776,87,936061,1,2,Active Shallow Crust,0.0,89.98869,0.0,06/12/4370 +7.77939,48.33856,5245,5,20,15,7,4,4.05,15.0,fr,22777,104,936061,1,2,Active Shallow Crust,0.0,89.98869,0.0,05/20/5245 +7.77939,48.33856,2103,7,25,5,35,0,4.05,27.5,fr,22778,42,936071,1,1,Active Shallow Crust,128.8904,89.99435,0.0,07/25/2103 +7.77939,48.33856,7076,1,22,16,20,45,4.15,5.0,fr,22779,141,936072,1,1,Active Shallow Crust,0.0,89.98992,0.0,01/22/7076 +7.77939,48.33856,4970,5,9,15,4,41,4.15,15.0,fr,22780,99,936079,1,1,Active Shallow Crust,0.0,89.98981,-90.0,05/09/4970 +7.77939,48.33856,2369,2,27,7,30,7,4.25,27.5,fr,22781,47,936086,1,1,Active Shallow Crust,0.0,89.99102,0.0,02/27/2369 +7.77939,48.33856,1394,2,19,12,27,12,4.25,27.5,fr,22782,27,936095,1,1,Active Shallow Crust,128.8943,89.98102,0.0,02/19/1394 +7.77939,48.33856,2863,11,22,19,29,1,4.35,5.0,fr,22783,57,936102,1,1,Active Shallow Crust,0.0,89.9892,-90.0,11/22/2863 +7.77939,48.33856,2020,11,6,3,53,31,4.45,15.0,fr,22784,40,936109,1,1,Active Shallow Crust,0.0,89.99049,0.0,11/06/2020 +7.77939,48.33856,917,2,24,4,12,4,4.55,5.0,fr,22785,18,936120,1,3,Active Shallow Crust,0.0,89.9894,0.0,02/24/0917 +7.77939,48.33856,5122,9,23,21,44,28,4.55,5.0,fr,22786,102,936120,1,3,Active Shallow Crust,0.0,89.9894,0.0,09/23/5122 +7.77939,48.33856,9118,10,19,22,40,36,4.55,5.0,fr,22787,182,936120,1,3,Active Shallow Crust,0.0,89.9894,0.0,10/19/9118 +7.77939,48.33856,9174,3,31,10,28,17,4.55,5.0,fr,22788,183,936123,1,1,Active Shallow Crust,240.01,57.99708,0.0,03/31/9174 +7.77939,48.33856,9740,4,1,2,32,15,4.65,15.0,fr,22789,194,936133,1,1,Active Shallow Crust,0.0,89.99055,0.0,04/01/9740 +7.77939,48.33856,4139,5,2,17,40,46,4.75,5.0,fr,22790,82,936144,1,1,Active Shallow Crust,0.0,89.9899,0.0,05/02/4139 +7.77939,48.33856,8535,4,15,11,53,16,4.85,5.0,fr,22791,170,936156,1,1,Active Shallow Crust,0.0,89.98949,0.0,04/15/8535 +7.77939,48.33856,5711,4,11,20,9,21,4.85,5.0,fr,22792,114,936165,1,1,Active Shallow Crust,128.8922,89.98916,0.0,04/11/5711 +7.77939,48.33856,5124,5,26,2,55,9,5.75,15.0,fr,22793,102,936265,1,1,Active Shallow Crust,0.0,89.98988,0.0,05/26/5124 +7.77939,48.33856,1638,10,18,10,46,47,5.85,5.0,fr,22794,32,936279,1,1,Active Shallow Crust,240.0497,58.00012,0.0,10/18/1638 +7.77939,48.33856,2626,9,1,14,18,55,5.85,5.0,fr,22795,52,936285,1,1,Active Shallow Crust,128.8654,89.99142,0.0,09/01/2626 +-0.04816,51.4584,8359,12,31,2,40,49,3.55,5.0,fr,22796,167,936489,1,1,Active Shallow Crust,128.8958,89.99372,0.0,12/31/8359 +-0.04816,51.4584,7949,9,4,6,8,15,3.65,15.0,fr,22797,158,936499,1,1,Active Shallow Crust,0.0,89.99,-90.0,09/04/7949 +-0.04816,51.4584,80,6,22,5,47,46,3.75,27.5,fr,22798,1,936506,1,1,Active Shallow Crust,360.0,89.99002,0.0,06/22/0080 +-0.04816,51.4584,9177,11,4,2,15,27,3.95,15.0,fr,22799,183,936529,1,1,Active Shallow Crust,0.0,89.99,0.0,11/04/9177 +-0.04816,51.4584,3441,12,29,22,43,59,4.45,5.0,fr,22800,68,936588,1,1,Active Shallow Crust,0.0,89.99,0.0,12/29/3441 +-0.04816,51.4584,499,3,4,5,26,0,4.55,5.0,fr,22801,9,936603,1,1,Active Shallow Crust,240.0109,57.99765,0.0,03/04/0499 +-0.04816,51.4584,4642,6,27,0,38,50,4.75,5.0,fr,22802,92,936627,1,1,Active Shallow Crust,240.0095,58.00486,0.0,06/27/4642 +1.97237,48.80624,9812,10,25,13,49,57,3.55,15.0,fr,22803,196,936967,1,1,Active Shallow Crust,0.0,89.98992,-90.0,10/25/9812 +1.97237,48.80624,4891,4,18,20,47,17,3.65,15.0,fr,22804,97,936973,1,1,Active Shallow Crust,0.0,89.98964,0.0,04/18/4891 +1.97237,48.80624,2688,3,1,19,46,35,4.25,15.0,fr,22805,53,937045,1,1,Active Shallow Crust,0.0,89.99036,0.0,03/01/2688 +1.97237,48.80624,17,6,7,2,38,3,6.35,15.0,fr,22806,0,937297,1,1,Active Shallow Crust,360.0,89.99001,0.0,06/07/0017 +7.89965,49.11145,5703,11,14,18,52,26,3.65,5.0,fr,22807,114,937452,1,3,Active Shallow Crust,0.0,89.98824,0.0,11/14/5703 +7.89965,49.11145,5597,6,16,7,5,34,3.65,5.0,fr,22808,111,937452,1,3,Active Shallow Crust,0.0,89.98824,0.0,06/16/5597 +7.89965,49.11145,7346,2,15,18,47,43,3.65,5.0,fr,22809,146,937452,1,3,Active Shallow Crust,0.0,89.98824,0.0,02/15/7346 +7.89965,49.11145,4275,9,5,17,56,46,3.75,5.0,fr,22810,85,937464,1,1,Active Shallow Crust,0.0,89.98951,0.0,09/05/4275 +7.89965,49.11145,8951,8,13,4,18,38,3.85,5.0,fr,22811,179,937485,1,1,Active Shallow Crust,128.8953,89.99533,0.0,08/13/8951 +7.89965,49.11145,8783,6,5,18,30,2,3.95,5.0,fr,22812,175,937488,1,1,Active Shallow Crust,0.0,89.99167,0.0,06/05/8783 +7.89965,49.11145,4712,1,18,9,18,10,3.95,5.0,fr,22813,94,937491,1,1,Active Shallow Crust,240.0208,58.00491,0.0,01/18/4712 +7.89965,49.11145,8078,12,29,15,31,13,4.05,5.0,fr,22814,161,937500,1,1,Active Shallow Crust,0.0,89.98886,0.0,12/29/8078 +7.89965,49.11145,6695,2,22,18,50,25,4.05,15.0,fr,22815,133,937501,1,1,Active Shallow Crust,0.0,89.98886,0.0,02/22/6695 +7.89965,49.11145,3468,4,5,7,40,0,4.05,5.0,fr,22816,69,937503,1,1,Active Shallow Crust,240.0057,58.00611,0.0,04/05/3468 +7.89965,49.11145,3041,7,5,8,44,50,4.35,5.0,fr,22817,60,937545,1,2,Active Shallow Crust,128.8976,89.98265,0.0,07/05/3041 +7.89965,49.11145,2807,9,6,1,58,12,4.35,5.0,fr,22818,56,937545,1,2,Active Shallow Crust,128.8976,89.98265,0.0,09/06/2807 +7.89965,49.11145,6937,10,14,12,2,40,4.35,15.0,fr,22819,138,937546,1,1,Active Shallow Crust,128.8976,89.98265,0.0,10/14/6937 +7.89965,49.11145,9409,5,2,13,21,11,5.05,15.0,fr,22820,188,937621,1,1,Active Shallow Crust,0.0,89.98943,0.0,05/02/9409 +7.89965,49.11145,6392,10,15,16,10,21,5.15,15.0,fr,22821,127,937636,1,1,Active Shallow Crust,240.0212,58.00024,0.0,10/15/6392 +7.89965,49.11145,8861,2,16,23,47,37,5.45,5.0,fr,22822,177,937668,1,1,Active Shallow Crust,359.9996,89.99036,0.0,02/16/8861 +7.89965,49.11145,2175,11,5,9,31,15,5.45,15.0,fr,22823,43,937672,1,1,Active Shallow Crust,240.0312,57.9988,0.0,11/05/2175 +2.86692,40.70777,8887,11,27,5,3,11,3.65,5.0,fr,22824,177,937932,1,1,Active Shallow Crust,0.0,89.98978,0.0,11/27/8887 +2.86692,40.70777,1897,11,16,12,41,40,3.85,5.0,fr,22825,37,937956,1,1,Active Shallow Crust,0.0,89.98917,0.0,11/16/1897 +2.86692,40.70777,8028,1,1,12,52,24,4.95,5.0,fr,22826,160,938088,1,1,Active Shallow Crust,0.0,89.99008,0.0,01/01/8028 +3.72424,41.64577,8776,10,29,16,11,54,3.55,5.0,fr,22827,175,938400,1,1,Active Shallow Crust,0.0,89.98869,0.0,10/29/8776 +3.72424,41.64577,772,1,29,4,28,39,3.55,15.0,fr,22828,15,938407,1,1,Active Shallow Crust,0.0,89.98856,-90.0,01/29/0772 +3.72424,41.64577,843,5,8,14,3,49,3.65,5.0,fr,22829,16,938418,1,1,Active Shallow Crust,0.0,89.98981,-90.0,05/08/0843 +3.72424,41.64577,4459,7,1,4,47,44,3.85,5.0,fr,22830,89,938436,1,1,Active Shallow Crust,0.0,89.98933,0.0,07/01/4459 +3.72424,41.64577,6399,9,7,18,47,26,3.85,15.0,fr,22831,127,938443,1,1,Active Shallow Crust,0.0,89.9892,-90.0,09/07/6399 +3.72424,41.64577,7977,9,29,1,2,8,4.45,5.0,fr,22832,159,938508,1,1,Active Shallow Crust,0.0,89.99064,0.0,09/29/7977 +3.72424,41.64577,7153,8,31,8,22,31,4.55,5.0,fr,22833,143,938529,1,1,Active Shallow Crust,128.8949,89.98592,0.0,08/31/7153 +3.36178,43.73058,4278,1,6,10,9,49,3.65,5.0,fr,22834,85,938892,1,1,Active Shallow Crust,0.0,89.99026,0.0,01/06/4278 +3.36178,43.73058,5589,5,8,6,55,43,3.75,5.0,fr,22835,111,938904,1,2,Active Shallow Crust,0.0,89.99132,0.0,05/08/5589 +3.36178,43.73058,7626,6,5,18,16,42,3.75,5.0,fr,22836,152,938904,1,2,Active Shallow Crust,0.0,89.99132,0.0,06/05/7626 +3.36178,43.73058,923,6,27,0,28,6,4.35,15.0,fr,22837,18,938977,1,1,Active Shallow Crust,0.0,89.98985,0.0,06/27/0923 +4.13389,48.37911,6804,4,15,17,36,12,4.15,5.0,fr,22838,136,939435,1,1,Active Shallow Crust,240.0088,57.99767,0.0,04/15/6804 +-0.1007,41.65223,7843,1,22,21,41,15,3.55,15.0,fr,22839,156,939844,1,1,Active Shallow Crust,240.0118,57.99807,0.0,01/22/7843 +-0.1007,41.65223,9906,3,20,5,11,27,3.55,5.0,fr,22840,198,939849,1,1,Active Shallow Crust,128.8965,89.99376,0.0,03/20/9906 +-0.64072,47.45719,9962,10,26,15,44,25,3.55,5.0,fr,22841,199,940320,1,5,Active Shallow Crust,0.0,89.98977,0.0,10/26/9962 +-0.64072,47.45719,7326,4,26,1,38,57,3.55,5.0,fr,22842,146,940320,1,5,Active Shallow Crust,0.0,89.98977,0.0,04/26/7326 +-0.64072,47.45719,624,4,16,8,17,43,3.55,5.0,fr,22843,12,940320,1,5,Active Shallow Crust,0.0,89.98977,0.0,04/16/0624 +-0.64072,47.45719,9234,4,17,9,21,20,3.55,5.0,fr,22844,184,940320,1,5,Active Shallow Crust,0.0,89.98977,0.0,04/17/9234 +-0.64072,47.45719,3808,5,11,16,18,21,3.55,5.0,fr,22845,76,940320,1,5,Active Shallow Crust,0.0,89.98977,0.0,05/11/3808 +-0.64072,47.45719,5709,11,23,3,16,38,3.55,15.0,fr,22846,114,940321,1,5,Active Shallow Crust,0.0,89.98977,0.0,11/23/5709 +-0.64072,47.45719,6111,9,2,19,41,18,3.55,15.0,fr,22847,122,940321,1,5,Active Shallow Crust,0.0,89.98977,0.0,09/02/6111 +-0.64072,47.45719,6713,4,1,13,48,39,3.55,15.0,fr,22848,134,940321,1,5,Active Shallow Crust,0.0,89.98977,0.0,04/01/6713 +-0.64072,47.45719,6092,9,17,16,41,39,3.55,15.0,fr,22849,121,940321,1,5,Active Shallow Crust,0.0,89.98977,0.0,09/17/6092 +-0.64072,47.45719,4765,9,1,20,4,12,3.55,15.0,fr,22850,95,940321,1,5,Active Shallow Crust,0.0,89.98977,0.0,09/01/4765 +-0.64072,47.45719,6556,1,2,5,14,59,3.55,27.5,fr,22851,131,940322,1,1,Active Shallow Crust,0.0,89.98977,0.0,01/02/6556 +-0.64072,47.45719,2773,5,28,8,57,47,3.55,5.0,fr,22852,55,940323,1,2,Active Shallow Crust,240.0122,57.99818,0.0,05/28/2773 +-0.64072,47.45719,7132,9,17,10,40,26,3.55,5.0,fr,22853,142,940323,1,2,Active Shallow Crust,240.0122,57.99818,0.0,09/17/7132 +-0.64072,47.45719,7750,4,29,7,25,50,3.55,15.0,fr,22854,154,940324,1,1,Active Shallow Crust,240.0122,57.99818,0.0,04/29/7750 +-0.64072,47.45719,1319,5,4,14,39,45,3.55,27.5,fr,22855,26,940331,1,1,Active Shallow Crust,128.8961,89.99361,0.0,05/04/1319 +-0.64072,47.45719,8034,4,12,19,23,5,3.65,5.0,fr,22856,160,940332,1,1,Active Shallow Crust,0.0,89.99013,0.0,04/12/8034 +-0.64072,47.45719,5461,2,10,21,42,50,3.65,27.5,fr,22857,109,940334,1,1,Active Shallow Crust,0.0,89.99013,0.0,02/10/5461 +-0.64072,47.45719,3937,10,10,22,19,21,3.75,5.0,fr,22858,78,940344,1,4,Active Shallow Crust,0.0,89.98985,0.0,10/10/3937 +-0.64072,47.45719,735,2,15,5,51,55,3.75,5.0,fr,22859,14,940344,1,4,Active Shallow Crust,0.0,89.98985,0.0,02/15/0735 +-0.64072,47.45719,3093,2,11,20,20,26,3.75,5.0,fr,22860,61,940344,1,4,Active Shallow Crust,0.0,89.98985,0.0,02/11/3093 +-0.64072,47.45719,2549,1,7,16,34,9,3.75,5.0,fr,22861,50,940344,1,4,Active Shallow Crust,0.0,89.98985,0.0,01/07/2549 +-0.64072,47.45719,528,3,10,6,26,0,3.75,15.0,fr,22862,10,940348,1,1,Active Shallow Crust,240.0084,58.01754,0.0,03/10/0528 +-0.64072,47.45719,2643,11,19,10,35,13,3.85,5.0,fr,22863,52,940356,1,3,Active Shallow Crust,0.0,89.98975,0.0,11/19/2643 +-0.64072,47.45719,1179,10,25,6,9,48,3.85,5.0,fr,22864,23,940356,1,3,Active Shallow Crust,0.0,89.98975,0.0,10/25/1179 +-0.64072,47.45719,1689,1,18,4,36,19,3.85,5.0,fr,22865,33,940356,1,3,Active Shallow Crust,0.0,89.98975,0.0,01/18/1689 +-0.64072,47.45719,4828,4,2,15,46,47,3.85,15.0,fr,22866,96,940357,1,1,Active Shallow Crust,0.0,89.98975,0.0,04/02/4828 +-0.64072,47.45719,3456,1,7,11,33,3,3.85,15.0,fr,22867,69,940363,1,1,Active Shallow Crust,0.0,89.99023,-90.0,01/07/3456 +-0.64072,47.45719,257,4,29,11,43,18,3.95,5.0,fr,22868,5,940368,1,3,Active Shallow Crust,0.0,89.98978,0.0,04/29/0257 +-0.64072,47.45719,1564,3,25,2,25,52,3.95,5.0,fr,22869,31,940368,1,3,Active Shallow Crust,0.0,89.98978,0.0,03/25/1564 +-0.64072,47.45719,4248,9,14,16,10,27,3.95,5.0,fr,22870,84,940368,1,3,Active Shallow Crust,0.0,89.98978,0.0,09/14/4248 +-0.64072,47.45719,5333,1,22,20,52,56,3.95,5.0,fr,22871,106,940371,1,1,Active Shallow Crust,240.02,58.00502,0.0,01/22/5333 +-0.64072,47.45719,1844,8,11,3,19,31,3.95,15.0,fr,22872,36,940375,1,1,Active Shallow Crust,0.0,89.99021,-90.0,08/11/1844 +-0.64072,47.45719,3060,11,1,5,51,14,4.05,5.0,fr,22873,61,940380,1,2,Active Shallow Crust,0.0,89.98994,0.0,11/01/3060 +-0.64072,47.45719,7247,9,22,17,56,20,4.05,5.0,fr,22874,144,940380,1,2,Active Shallow Crust,0.0,89.98994,0.0,09/22/7247 +-0.64072,47.45719,6020,12,20,15,32,5,4.15,5.0,fr,22875,120,940392,1,2,Active Shallow Crust,0.0,89.99017,0.0,12/20/6020 +-0.64072,47.45719,9111,7,5,14,51,6,4.15,5.0,fr,22876,182,940392,1,2,Active Shallow Crust,0.0,89.99017,0.0,07/05/9111 +-0.64072,47.45719,8578,1,4,20,5,19,4.15,15.0,fr,22877,171,940393,1,1,Active Shallow Crust,0.0,89.99017,0.0,01/04/8578 +-0.64072,47.45719,2346,4,14,23,1,22,4.15,27.5,fr,22878,46,940394,1,1,Active Shallow Crust,0.0,89.99017,0.0,04/14/2346 +-0.64072,47.45719,4322,10,3,23,46,22,4.15,5.0,fr,22879,86,940395,1,1,Active Shallow Crust,240.0086,57.9974,0.0,10/03/4322 +-0.64072,47.45719,2386,1,18,1,47,15,4.15,5.0,fr,22880,47,940398,1,2,Active Shallow Crust,0.0,89.99006,-90.0,01/18/2386 +-0.64072,47.45719,8116,4,18,13,8,25,4.15,5.0,fr,22881,162,940398,1,2,Active Shallow Crust,0.0,89.99006,-90.0,04/18/8116 +-0.64072,47.45719,1287,3,26,15,31,55,4.15,5.0,fr,22882,25,940401,1,1,Active Shallow Crust,128.8974,89.9938,0.0,03/26/1287 +-0.64072,47.45719,8645,2,27,2,51,13,4.25,5.0,fr,22883,172,940404,1,2,Active Shallow Crust,0.0,89.9901,0.0,02/27/8645 +-0.64072,47.45719,5078,1,4,22,18,22,4.25,5.0,fr,22884,101,940404,1,2,Active Shallow Crust,0.0,89.9901,0.0,01/04/5078 +-0.64072,47.45719,4301,6,3,8,24,11,4.25,15.0,fr,22885,86,940408,1,1,Active Shallow Crust,240.0077,57.99414,0.0,06/03/4301 +-0.64072,47.45719,801,12,27,3,29,21,4.35,5.0,fr,22886,16,940416,1,1,Active Shallow Crust,0.0,89.99016,0.0,12/27/0801 +-0.64072,47.45719,6206,7,28,10,16,6,4.45,15.0,fr,22887,124,940429,1,1,Active Shallow Crust,0.0,89.99002,0.0,07/28/6206 +-0.64072,47.45719,4013,6,22,6,12,45,4.55,5.0,fr,22888,80,940440,1,1,Active Shallow Crust,0.0,89.99003,0.0,06/22/4013 +-0.64072,47.45719,9420,9,10,6,24,9,4.55,5.0,fr,22889,188,940443,1,1,Active Shallow Crust,240.0096,57.99739,0.0,09/10/9420 +-0.64072,47.45719,3746,12,29,12,50,21,4.55,5.0,fr,22890,74,940446,1,1,Active Shallow Crust,0.0,89.98991,-90.0,12/29/3746 +-0.64072,47.45719,4364,9,16,6,13,28,4.65,5.0,fr,22891,87,940452,1,2,Active Shallow Crust,0.0,89.98991,0.0,09/16/4364 +-0.64072,47.45719,4242,2,3,9,17,21,4.65,5.0,fr,22892,84,940452,1,2,Active Shallow Crust,0.0,89.98991,0.0,02/03/4242 +-0.64072,47.45719,464,2,19,14,15,31,4.65,15.0,fr,22893,9,940453,1,1,Active Shallow Crust,0.0,89.98991,0.0,02/19/0464 +-0.64072,47.45719,11,9,20,10,56,59,4.65,15.0,fr,22894,0,940459,1,1,Active Shallow Crust,0.0,89.99004,-90.0,09/20/0011 +-0.64072,47.45719,4930,1,30,12,7,39,4.75,5.0,fr,22895,98,940464,1,1,Active Shallow Crust,0.0,89.98994,0.0,01/30/4930 +-0.64072,47.45719,1665,5,15,20,42,38,4.75,5.0,fr,22896,33,940467,1,1,Active Shallow Crust,240.0079,58.00455,0.0,05/15/1665 +-0.64072,47.45719,7386,1,5,5,20,48,4.75,15.0,fr,22897,147,940468,1,1,Active Shallow Crust,240.0079,58.00455,0.0,01/05/7386 +-0.64072,47.45719,5391,7,31,3,14,34,5.15,15.0,fr,22898,107,940513,1,1,Active Shallow Crust,0.0,89.99,0.0,07/31/5391 +-0.64072,47.45719,682,9,11,10,0,57,5.75,15.0,fr,22899,13,940585,1,1,Active Shallow Crust,0.0,89.98997,0.0,09/11/0682 +8.34737,50.90342,3198,6,9,19,14,16,3.85,15.0,fr,22900,63,940840,1,1,Active Shallow Crust,240.0115,57.99788,0.0,06/09/3198 +8.34737,50.90342,6824,2,13,8,16,1,3.95,15.0,fr,22901,136,940849,1,1,Active Shallow Crust,0.0,89.99197,0.0,02/13/6824 +-3.82223,49.35082,9270,6,11,4,37,15,3.75,5.0,fr,22902,185,941304,1,1,Active Shallow Crust,0.0,89.98956,0.0,06/11/9270 +-3.82223,49.35082,6233,9,21,8,25,54,3.75,5.0,fr,22903,124,941307,1,1,Active Shallow Crust,240.0086,58.01791,0.0,09/21/6233 +-3.82223,49.35082,483,3,14,8,13,56,3.85,5.0,fr,22904,9,941319,1,2,Active Shallow Crust,240.0109,57.99806,0.0,03/14/0483 +-3.82223,49.35082,2346,9,1,11,47,19,3.85,5.0,fr,22905,46,941319,1,2,Active Shallow Crust,240.0109,57.99806,0.0,09/01/2346 +8.27197,47.23942,5736,8,9,18,32,40,3.55,5.0,fr,22906,114,941760,1,14,Active Shallow Crust,0.0,89.98631,0.0,08/09/5736 +8.27197,47.23942,7177,12,13,11,41,45,3.55,5.0,fr,22907,143,941760,1,14,Active Shallow Crust,0.0,89.98631,0.0,12/13/7177 +8.27197,47.23942,7093,7,2,2,50,48,3.55,5.0,fr,22908,141,941760,1,14,Active Shallow Crust,0.0,89.98631,0.0,07/02/7093 +8.27197,47.23942,3064,8,29,3,14,49,3.55,5.0,fr,22909,61,941760,1,14,Active Shallow Crust,0.0,89.98631,0.0,08/29/3064 +8.27197,47.23942,256,10,4,23,23,6,3.55,5.0,fr,22910,5,941760,1,14,Active Shallow Crust,0.0,89.98631,0.0,10/04/0256 +8.27197,47.23942,6499,6,16,18,20,40,3.55,5.0,fr,22911,129,941760,1,14,Active Shallow Crust,0.0,89.98631,0.0,06/16/6499 +8.27197,47.23942,9353,3,10,17,17,0,3.55,5.0,fr,22912,187,941760,1,14,Active Shallow Crust,0.0,89.98631,0.0,03/10/9353 +8.27197,47.23942,2868,7,6,11,6,21,3.55,5.0,fr,22913,57,941760,1,14,Active Shallow Crust,0.0,89.98631,0.0,07/06/2868 +8.27197,47.23942,6374,4,9,13,56,9,3.55,5.0,fr,22914,127,941760,1,14,Active Shallow Crust,0.0,89.98631,0.0,04/09/6374 +8.27197,47.23942,3787,11,2,5,17,56,3.55,5.0,fr,22915,75,941760,1,14,Active Shallow Crust,0.0,89.98631,0.0,11/02/3787 +8.27197,47.23942,5211,10,25,14,17,22,3.55,5.0,fr,22916,104,941760,1,14,Active Shallow Crust,0.0,89.98631,0.0,10/25/5211 +8.27197,47.23942,4041,5,25,18,0,47,3.55,5.0,fr,22917,80,941760,1,14,Active Shallow Crust,0.0,89.98631,0.0,05/25/4041 +8.27197,47.23942,5421,8,1,8,22,48,3.55,5.0,fr,22918,108,941760,1,14,Active Shallow Crust,0.0,89.98631,0.0,08/01/5421 +8.27197,47.23942,5312,7,12,15,6,16,3.55,5.0,fr,22919,106,941760,1,14,Active Shallow Crust,0.0,89.98631,0.0,07/12/5312 +8.27197,47.23942,8499,7,28,5,19,4,3.55,15.0,fr,22920,169,941761,1,2,Active Shallow Crust,0.0,89.98631,0.0,07/28/8499 +8.27197,47.23942,8097,8,27,4,59,57,3.55,15.0,fr,22921,161,941761,1,2,Active Shallow Crust,0.0,89.98631,0.0,08/27/8097 +8.27197,47.23942,2420,10,22,10,31,48,3.55,27.5,fr,22922,48,941762,1,1,Active Shallow Crust,0.0,89.98631,0.0,10/22/2420 +8.27197,47.23942,8663,3,28,1,4,31,3.55,5.0,fr,22923,173,941763,1,1,Active Shallow Crust,240.0127,57.99643,0.0,03/28/8663 +8.27197,47.23942,8300,3,22,7,43,18,3.55,5.0,fr,22924,165,941769,1,1,Active Shallow Crust,128.8975,89.99316,0.0,03/22/8300 +8.27197,47.23942,4897,2,25,18,21,44,3.55,27.5,fr,22925,97,941771,1,1,Active Shallow Crust,128.8975,89.99316,0.0,02/25/4897 +8.27197,47.23942,5782,1,22,20,31,1,3.65,5.0,fr,22926,115,941772,1,2,Active Shallow Crust,0.0,89.98779,0.0,01/22/5782 +8.27197,47.23942,5172,10,29,9,41,53,3.65,5.0,fr,22927,103,941772,1,2,Active Shallow Crust,0.0,89.98779,0.0,10/29/5172 +8.27197,47.23942,2185,6,30,19,6,10,3.65,27.5,fr,22928,43,941774,1,1,Active Shallow Crust,0.0,89.98779,0.0,06/30/2185 +8.27197,47.23942,6170,6,16,18,6,30,3.65,15.0,fr,22929,123,941779,1,1,Active Shallow Crust,0.0,89.98766,-90.0,06/16/6170 +8.27197,47.23942,5147,10,2,2,50,8,3.75,5.0,fr,22930,102,941784,1,2,Active Shallow Crust,0.0,89.98912,0.0,10/02/5147 +8.27197,47.23942,7177,12,13,1,20,32,3.75,5.0,fr,22931,143,941784,1,2,Active Shallow Crust,0.0,89.98912,0.0,12/13/7177 +8.27197,47.23942,4321,8,8,18,43,3,3.75,15.0,fr,22932,86,941785,1,1,Active Shallow Crust,0.0,89.98912,0.0,08/08/4321 +8.27197,47.23942,242,6,1,20,8,23,3.85,15.0,fr,22933,4,941797,1,1,Active Shallow Crust,0.0,89.9903,0.0,06/01/0242 +8.27197,47.23942,6428,6,5,10,43,27,3.85,5.0,fr,22934,128,941799,1,1,Active Shallow Crust,240.0114,57.998,0.0,06/05/6428 +8.27197,47.23942,6842,1,10,3,53,4,3.85,27.5,fr,22935,136,941801,1,1,Active Shallow Crust,240.0114,57.998,0.0,01/10/6842 +8.27197,47.23942,7620,12,3,11,57,3,3.95,5.0,fr,22936,152,941808,1,1,Active Shallow Crust,0.0,89.99136,0.0,12/03/7620 +8.27197,47.23942,8909,7,11,8,58,50,3.95,15.0,fr,22937,178,941809,1,1,Active Shallow Crust,0.0,89.99136,0.0,07/11/8909 +8.27197,47.23942,1887,7,22,20,45,57,3.95,27.5,fr,22938,37,941810,1,1,Active Shallow Crust,0.0,89.99136,0.0,07/22/1887 +8.27197,47.23942,4533,10,30,15,43,34,3.95,5.0,fr,22939,90,941811,1,1,Active Shallow Crust,240.0199,58.00542,0.0,10/30/4533 +8.27197,47.23942,5014,9,28,20,58,53,3.95,15.0,fr,22940,100,941818,1,1,Active Shallow Crust,128.9,89.99568,0.0,09/28/5014 +8.27197,47.23942,2944,12,5,6,46,29,4.05,5.0,fr,22941,58,941820,1,1,Active Shallow Crust,0.0,89.9923,0.0,12/05/2944 +8.27197,47.23942,8971,7,12,3,14,13,4.05,27.5,fr,22942,179,941822,1,1,Active Shallow Crust,0.0,89.9923,0.0,07/12/8971 +8.27197,47.23942,9490,8,12,4,48,22,4.05,15.0,fr,22943,189,941827,1,1,Active Shallow Crust,0.0,89.99221,-90.0,08/12/9490 +8.27197,47.23942,2395,4,13,16,25,42,4.05,27.5,fr,22944,47,941828,1,1,Active Shallow Crust,0.0,89.99221,-90.0,04/13/2395 +8.27197,47.23942,1888,9,29,22,7,15,4.05,5.0,fr,22945,37,941829,1,2,Active Shallow Crust,128.8891,89.99615,0.0,09/29/1888 +8.27197,47.23942,8161,1,26,10,1,29,4.05,5.0,fr,22946,163,941829,1,2,Active Shallow Crust,128.8891,89.99615,0.0,01/26/8161 +8.27197,47.23942,6997,8,29,3,8,16,4.35,5.0,fr,22947,139,941856,1,1,Active Shallow Crust,0.0,89.9891,0.0,08/29/6997 +8.27197,47.23942,6091,3,29,17,35,38,4.35,27.5,fr,22948,121,941858,1,1,Active Shallow Crust,0.0,89.9891,0.0,03/29/6091 +8.27197,47.23942,4460,1,14,22,17,2,4.35,5.0,fr,22949,89,941862,1,1,Active Shallow Crust,0.0,89.98897,-90.0,01/14/4460 +8.27197,47.23942,2461,2,4,23,23,45,4.45,15.0,fr,22950,49,941869,1,1,Active Shallow Crust,0.0,89.99028,0.0,02/04/2461 +8.27197,47.23942,823,6,3,8,2,26,4.55,15.0,fr,22951,16,941881,1,1,Active Shallow Crust,0.0,89.99134,0.0,06/03/0823 +8.27197,47.23942,3548,5,17,7,56,0,4.85,5.0,fr,22952,70,941916,1,1,Active Shallow Crust,0.0,89.9908,0.0,05/17/3548 +8.27197,47.23942,1573,3,8,23,44,7,4.95,5.0,fr,22953,31,941937,1,1,Active Shallow Crust,128.8894,89.98945,0.0,03/08/1573 +8.27197,47.23942,3757,9,16,23,20,26,5.25,27.5,fr,22954,75,941966,1,1,Active Shallow Crust,0.0,89.99033,0.0,09/16/3757 +8.27197,47.23942,1906,8,11,6,51,51,5.35,5.0,fr,22955,38,941976,1,1,Active Shallow Crust,0.0,89.98965,0.0,08/11/1906 +-0.25187,42.87206,689,3,5,17,10,45,3.55,5.0,fr,22956,13,942240,1,3,Active Shallow Crust,0.0,89.98984,0.0,03/05/0689 +-0.25187,42.87206,2674,2,16,1,0,21,3.55,5.0,fr,22957,53,942240,1,3,Active Shallow Crust,0.0,89.98984,0.0,02/16/2674 +-0.25187,42.87206,6120,8,24,10,11,42,3.55,5.0,fr,22958,122,942240,1,3,Active Shallow Crust,0.0,89.98984,0.0,08/24/6120 +-0.25187,42.87206,1241,5,9,8,43,22,3.55,15.0,fr,22959,24,942241,1,3,Active Shallow Crust,0.0,89.98984,0.0,05/09/1241 +-0.25187,42.87206,7194,9,13,12,48,59,3.55,15.0,fr,22960,143,942241,1,3,Active Shallow Crust,0.0,89.98984,0.0,09/13/7194 +-0.25187,42.87206,6462,1,8,16,5,28,3.55,15.0,fr,22961,129,942241,1,3,Active Shallow Crust,0.0,89.98984,0.0,01/08/6462 +-0.25187,42.87206,3367,10,22,16,6,14,3.55,27.5,fr,22962,67,942242,1,1,Active Shallow Crust,0.0,89.98984,0.0,10/22/3367 +-0.25187,42.87206,8342,3,26,22,3,33,3.55,5.0,fr,22963,166,942243,1,1,Active Shallow Crust,240.0119,57.99814,0.0,03/26/8342 +-0.25187,42.87206,7686,5,24,9,45,41,3.55,5.0,fr,22964,153,942246,1,2,Active Shallow Crust,0.0,89.99019,-90.0,05/24/7686 +-0.25187,42.87206,1768,2,5,5,59,28,3.55,5.0,fr,22965,35,942246,1,2,Active Shallow Crust,0.0,89.99019,-90.0,02/05/1768 +-0.25187,42.87206,7477,3,9,5,7,54,3.55,15.0,fr,22966,149,942247,1,1,Active Shallow Crust,0.0,89.99019,-90.0,03/09/7477 +-0.25187,42.87206,1176,4,6,23,22,34,3.65,5.0,fr,22967,23,942252,1,4,Active Shallow Crust,0.0,89.99012,0.0,04/06/1176 +-0.25187,42.87206,5766,4,2,14,49,24,3.65,5.0,fr,22968,115,942252,1,4,Active Shallow Crust,0.0,89.99012,0.0,04/02/5766 +-0.25187,42.87206,9623,11,7,10,52,45,3.65,5.0,fr,22969,192,942252,1,4,Active Shallow Crust,0.0,89.99012,0.0,11/07/9623 +-0.25187,42.87206,5401,9,30,19,39,57,3.65,5.0,fr,22970,108,942252,1,4,Active Shallow Crust,0.0,89.99012,0.0,09/30/5401 +-0.25187,42.87206,9418,1,17,13,50,47,3.65,15.0,fr,22971,188,942253,1,2,Active Shallow Crust,0.0,89.99012,0.0,01/17/9418 +-0.25187,42.87206,3097,12,26,4,55,41,3.65,15.0,fr,22972,61,942253,1,2,Active Shallow Crust,0.0,89.99012,0.0,12/26/3097 +-0.25187,42.87206,9285,9,12,4,13,37,3.65,27.5,fr,22973,185,942254,1,1,Active Shallow Crust,0.0,89.99012,0.0,09/12/9285 +-0.25187,42.87206,3469,9,1,21,54,24,3.65,5.0,fr,22974,69,942261,1,1,Active Shallow Crust,128.9007,89.96349,0.0,09/01/3469 +-0.25187,42.87206,5843,11,28,0,36,13,3.75,5.0,fr,22975,116,942264,1,1,Active Shallow Crust,0.0,89.9901,0.0,11/28/5843 +-0.25187,42.87206,3498,6,30,19,32,59,3.75,5.0,fr,22976,69,942270,1,1,Active Shallow Crust,0.0,89.98998,-90.0,06/30/3498 +-0.25187,42.87206,4118,11,15,18,45,46,3.75,15.0,fr,22977,82,942271,1,2,Active Shallow Crust,0.0,89.98998,-90.0,11/15/4118 +-0.25187,42.87206,1615,1,31,14,4,50,3.75,15.0,fr,22978,32,942271,1,2,Active Shallow Crust,0.0,89.98998,-90.0,01/31/1615 +-0.25187,42.87206,2063,11,24,10,55,15,3.85,5.0,fr,22979,41,942276,1,1,Active Shallow Crust,0.0,89.98986,0.0,11/24/2063 +-0.25187,42.87206,43,12,31,22,5,12,3.85,15.0,fr,22980,0,942286,1,1,Active Shallow Crust,128.896,89.99379,0.0,12/31/0043 +-0.25187,42.87206,8120,6,28,16,45,4,3.95,5.0,fr,22981,162,942288,1,2,Active Shallow Crust,0.0,89.99009,0.0,06/28/8120 +-0.25187,42.87206,2340,8,21,1,44,9,3.95,5.0,fr,22982,46,942288,1,2,Active Shallow Crust,0.0,89.99009,0.0,08/21/2340 +-0.25187,42.87206,3549,5,11,23,44,47,3.95,15.0,fr,22983,70,942289,1,1,Active Shallow Crust,0.0,89.99009,0.0,05/11/3549 +-0.25187,42.87206,7504,5,10,1,22,49,4.05,5.0,fr,22984,150,942300,1,4,Active Shallow Crust,359.9999,89.99013,0.0,05/10/7504 +-0.25187,42.87206,8393,1,16,8,14,16,4.05,5.0,fr,22985,167,942300,1,4,Active Shallow Crust,359.9999,89.99013,0.0,01/16/8393 +-0.25187,42.87206,4782,1,9,19,46,48,4.05,5.0,fr,22986,95,942300,1,4,Active Shallow Crust,359.9999,89.99013,0.0,01/09/4782 +-0.25187,42.87206,4305,8,30,18,33,7,4.05,5.0,fr,22987,86,942300,1,4,Active Shallow Crust,359.9999,89.99013,0.0,08/30/4305 +-0.25187,42.87206,6154,5,12,3,52,21,4.15,5.0,fr,22988,123,942312,1,2,Active Shallow Crust,0.0,89.99004,0.0,05/12/6154 +-0.25187,42.87206,3492,8,22,22,52,5,4.15,5.0,fr,22989,69,942312,1,2,Active Shallow Crust,0.0,89.99004,0.0,08/22/3492 +-0.25187,42.87206,950,10,15,10,56,33,4.25,27.5,fr,22990,18,942335,1,1,Active Shallow Crust,128.8949,89.98095,0.0,10/15/0950 +-0.25187,42.87206,2275,2,16,19,2,9,4.35,5.0,fr,22991,45,942342,1,1,Active Shallow Crust,0.0,89.98995,-90.0,02/16/2275 +-0.25187,42.87206,8805,4,1,6,29,4,4.45,27.5,fr,22992,176,942350,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/01/8805 +-0.25187,42.87206,1337,11,6,23,15,19,4.55,15.0,fr,22993,26,942370,1,2,Active Shallow Crust,128.8947,89.98579,0.0,11/06/1337 +-0.25187,42.87206,1724,10,13,7,13,27,4.55,15.0,fr,22994,34,942370,1,2,Active Shallow Crust,128.8947,89.98579,0.0,10/13/1724 +-0.25187,42.87206,3990,9,1,12,20,13,4.75,5.0,fr,22995,79,942393,1,1,Active Shallow Crust,128.8897,89.98806,0.0,09/01/3990 +-0.25187,42.87206,7174,3,13,11,1,25,5.15,5.0,fr,22996,143,942432,1,1,Active Shallow Crust,0.0,89.98997,0.0,03/13/7174 +-0.2496479,42.86924,105,6,5,21,48,33,6.55,26.92039,fr,22997,2,942605,1,1,Active Shallow Crust,240.0904,57.99989,0.0,06/05/0105 +3.40842,47.50945,6622,11,3,16,19,49,3.55,15.0,fr,22998,132,942721,1,1,Active Shallow Crust,0.0,89.98978,0.0,11/03/6622 +3.40842,47.50945,2456,7,12,9,59,29,3.55,5.0,fr,22999,49,942723,1,1,Active Shallow Crust,240.012,57.99826,0.0,07/12/2456 +3.40842,47.50945,7231,3,26,15,17,53,3.65,5.0,fr,23000,144,942738,1,1,Active Shallow Crust,0.0,89.99079,-90.0,03/26/7231 +3.40842,47.50945,420,1,10,13,40,44,3.75,5.0,fr,23001,8,942744,1,1,Active Shallow Crust,0.0,89.98918,0.0,01/10/0420 +3.40842,47.50945,5820,2,9,2,51,39,3.75,5.0,fr,23002,116,942750,1,1,Active Shallow Crust,0.0,89.98905,-90.0,02/09/5820 +3.40842,47.50945,5195,11,17,21,18,57,4.05,5.0,fr,23003,103,942780,1,1,Active Shallow Crust,0.0,89.99043,0.0,11/17/5195 +3.40842,47.50945,9373,10,6,0,16,35,4.65,15.0,fr,23004,187,942853,1,1,Active Shallow Crust,0.0,89.9904,0.0,10/06/9373 +4.09042,41.29298,6071,7,14,20,13,50,3.55,5.0,fr,23005,121,943200,1,1,Active Shallow Crust,0.0,89.99242,0.0,07/14/6071 +4.09042,41.29298,9036,7,3,1,12,13,3.55,15.0,fr,23006,180,943201,1,1,Active Shallow Crust,0.0,89.99242,0.0,07/03/9036 +4.09042,41.29298,6152,12,25,0,26,52,3.75,15.0,fr,23007,123,943234,1,1,Active Shallow Crust,128.8972,89.9674,0.0,12/25/6152 +4.09042,41.29298,6939,1,18,9,5,54,3.95,5.0,fr,23008,138,943248,1,1,Active Shallow Crust,0.0,89.99044,0.0,01/18/6939 +4.09042,41.29298,6460,10,28,2,34,3,4.75,15.0,fr,23009,129,943345,1,1,Active Shallow Crust,0.0,89.99049,0.0,10/28/6460 +4.09042,41.29298,9083,7,27,17,34,43,4.85,5.0,fr,23010,181,943362,1,1,Active Shallow Crust,0.0,89.9897,-90.0,07/27/9083 +4.47168,50.17826,2197,10,7,5,17,34,3.55,5.0,fr,23011,43,943680,1,1,Active Shallow Crust,0.0,89.98708,0.0,10/07/2197 +4.47168,50.17826,326,11,9,5,33,35,3.55,5.0,fr,23012,6,943683,1,1,Active Shallow Crust,240.0126,57.99771,0.0,11/09/0326 +4.47168,50.17826,3236,6,15,6,35,27,3.65,5.0,fr,23013,64,943695,1,1,Active Shallow Crust,240.0028,58.01208,0.0,06/15/3236 +4.47168,50.17826,2122,11,19,22,21,3,3.65,15.0,fr,23014,42,943696,1,1,Active Shallow Crust,240.0028,58.01208,0.0,11/19/2122 +4.47168,50.17826,6856,6,16,20,43,21,3.75,5.0,fr,23015,137,943704,1,2,Active Shallow Crust,0.0,89.98974,0.0,06/16/6856 +4.47168,50.17826,9670,7,19,18,3,37,3.75,5.0,fr,23016,193,943704,1,2,Active Shallow Crust,0.0,89.98974,0.0,07/19/9670 +4.47168,50.17826,9029,7,19,5,49,58,3.85,5.0,fr,23017,180,943716,1,1,Active Shallow Crust,0.0,89.99086,0.0,07/19/9029 +4.47168,50.17826,7157,1,17,2,40,34,3.85,27.5,fr,23018,143,943718,1,1,Active Shallow Crust,0.0,89.99086,0.0,01/17/7157 +4.47168,50.17826,7490,10,29,20,28,52,3.85,5.0,fr,23019,149,943725,1,1,Active Shallow Crust,128.8949,89.99314,0.0,10/29/7490 +4.47168,50.17826,7962,5,25,18,55,5,4.05,5.0,fr,23020,159,943740,1,1,Active Shallow Crust,0.0,89.98911,0.0,05/25/7962 +4.471675,50.17826,9085,8,25,5,31,8,6.55,25.4727,fr,23021,181,944042,1,1,Active Shallow Crust,0.0,89.99008,0.0,08/25/9085 +4.73499,41.1109,3144,8,6,19,12,54,3.55,15.0,fr,23022,62,944164,1,1,Active Shallow Crust,240.0129,57.99697,0.0,08/06/3144 +4.73499,41.1109,322,3,25,1,23,8,3.55,5.0,fr,23023,6,944166,1,1,Active Shallow Crust,0.0,89.99232,-90.0,03/25/0322 +4.73499,41.1109,6977,3,25,6,15,22,3.85,27.5,fr,23024,139,944198,1,1,Active Shallow Crust,0.0,89.98924,0.0,03/25/6977 +4.73499,41.1109,1591,7,1,4,0,32,4.05,27.5,fr,23025,31,944222,1,1,Active Shallow Crust,0.0,89.99146,0.0,07/01/1591 +-0.38634,50.52783,1150,4,19,9,25,4,3.65,5.0,fr,23026,22,945135,1,2,Active Shallow Crust,240.0015,58.01298,0.0,04/19/1150 +-0.38634,50.52783,9891,6,15,20,15,14,3.65,5.0,fr,23027,197,945135,1,2,Active Shallow Crust,240.0015,58.01298,0.0,06/15/9891 +-0.16603,43.42812,8230,9,3,12,44,34,3.55,27.5,fr,23028,164,945611,1,1,Active Shallow Crust,128.8964,89.99382,0.0,09/03/8230 +-0.16603,43.42812,9060,10,17,11,50,7,3.65,5.0,fr,23029,181,945612,1,1,Active Shallow Crust,0.0,89.99001,0.0,10/17/9060 +-0.16603,43.42812,7454,2,6,4,47,51,3.65,5.0,fr,23030,149,945615,1,1,Active Shallow Crust,240.0008,58.01283,0.0,02/06/7454 +-0.16603,43.42812,6029,2,4,11,42,45,3.95,5.0,fr,23031,120,945648,1,1,Active Shallow Crust,0.0,89.99004,0.0,02/04/6029 +-0.16603,43.42812,982,6,8,17,27,51,3.95,15.0,fr,23032,19,945652,1,1,Active Shallow Crust,240.0193,58.0049,0.0,06/08/0982 +-0.16603,43.42812,1213,3,22,2,19,21,4.25,5.0,fr,23033,24,945684,1,1,Active Shallow Crust,0.0,89.98998,0.0,03/22/1213 +-0.16603,43.42812,7804,1,4,21,31,48,4.35,5.0,fr,23034,156,945702,1,1,Active Shallow Crust,359.9999,89.99004,-90.0,01/04/7804 +-0.16603,43.42812,6920,2,21,3,6,45,4.45,5.0,fr,23035,138,945708,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/21/6920 +-0.16603,43.42812,7908,7,28,10,5,56,5.15,15.0,fr,23036,158,945793,1,1,Active Shallow Crust,0.0,89.98999,0.0,07/28/7908 +-2.85224,48.35658,6328,4,2,18,18,59,3.55,5.0,fr,23037,126,946080,1,1,Active Shallow Crust,0.0,89.98995,0.0,04/02/6328 +-2.85224,48.35658,230,12,10,20,7,39,3.55,15.0,fr,23038,4,946081,1,2,Active Shallow Crust,0.0,89.98995,0.0,12/10/0230 +-2.85224,48.35658,6752,2,12,2,16,23,3.55,15.0,fr,23039,135,946081,1,2,Active Shallow Crust,0.0,89.98995,0.0,02/12/6752 +-2.85224,48.35658,9217,11,1,6,18,45,3.55,27.5,fr,23040,184,946082,1,2,Active Shallow Crust,0.0,89.98995,0.0,11/01/9217 +-2.85224,48.35658,543,12,12,8,45,48,3.55,27.5,fr,23041,10,946082,1,2,Active Shallow Crust,0.0,89.98995,0.0,12/12/0543 +-2.85224,48.35658,4690,12,23,3,48,12,3.55,5.0,fr,23042,93,946083,1,1,Active Shallow Crust,240.0119,57.99845,0.0,12/23/4690 +-2.85224,48.35658,7134,8,10,22,18,12,3.55,5.0,fr,23043,142,946086,1,1,Active Shallow Crust,0.0,89.98983,-90.0,08/10/7134 +-2.85224,48.35658,6324,4,12,22,8,32,3.65,5.0,fr,23044,126,946092,1,1,Active Shallow Crust,0.0,89.99104,0.0,04/12/6324 +-2.85224,48.35658,5503,4,19,10,33,47,3.65,27.5,fr,23045,110,946097,1,1,Active Shallow Crust,240.0014,58.01289,0.0,04/19/5503 +-2.85224,48.35658,7400,2,3,18,33,20,3.75,5.0,fr,23046,147,946104,1,2,Active Shallow Crust,0.0,89.98936,0.0,02/03/7400 +-2.85224,48.35658,3531,1,22,0,33,12,3.75,5.0,fr,23047,70,946104,1,2,Active Shallow Crust,0.0,89.98936,0.0,01/22/3531 +-2.85224,48.35658,3084,1,19,3,1,44,3.85,5.0,fr,23048,61,946116,1,1,Active Shallow Crust,0.0,89.99051,0.0,01/19/3084 +-2.85224,48.35658,3381,3,23,8,16,7,3.95,5.0,fr,23049,67,946128,1,1,Active Shallow Crust,0.0,89.98943,0.0,03/23/3381 +-2.85224,48.35658,7431,6,7,9,58,6,3.95,27.5,fr,23050,148,946130,1,1,Active Shallow Crust,0.0,89.98943,0.0,06/07/7431 +-2.85224,48.35658,5435,7,21,6,48,12,4.15,5.0,fr,23051,108,946152,1,1,Active Shallow Crust,0.0,89.98992,0.0,07/21/5435 +-2.85224,48.35658,1210,9,1,21,9,50,4.15,15.0,fr,23052,24,946153,1,1,Active Shallow Crust,0.0,89.98992,0.0,09/01/1210 +-2.85224,48.35658,1128,5,13,20,39,45,4.55,5.0,fr,23053,22,946200,1,1,Active Shallow Crust,0.0,89.99046,0.0,05/13/1128 +-2.85224,48.35658,4972,9,9,15,3,50,4.65,5.0,fr,23054,99,946212,1,1,Active Shallow Crust,0.0,89.98961,0.0,09/09/4972 +-2.85224,48.35658,3369,8,16,9,22,49,4.65,5.0,fr,23055,67,946215,1,1,Active Shallow Crust,240.0115,57.99437,0.0,08/16/3369 +-2.858236,48.36348,3922,1,31,9,22,0,6.35,6.417864,fr,23056,78,946419,1,1,Active Shallow Crust,240.087,57.99937,0.0,01/31/3922 +-0.92317,49.97025,1132,11,18,0,8,27,3.75,5.0,fr,23057,22,946584,1,1,Active Shallow Crust,0.0,89.98969,0.0,11/18/1132 +-0.92317,49.97025,8842,12,15,3,45,35,3.85,5.0,fr,23058,176,946596,1,1,Active Shallow Crust,0.0,89.99024,0.0,12/15/8842 +-0.92317,49.97025,8014,3,20,2,7,56,4.05,5.0,fr,23059,160,946629,1,1,Active Shallow Crust,128.8899,89.99384,0.0,03/20/8014 +-0.92317,49.97025,3281,8,15,2,45,40,5.25,5.0,fr,23060,65,946764,1,1,Active Shallow Crust,0.0,89.99004,0.0,08/15/3281 +-0.92317,49.97025,4192,9,15,12,38,45,5.35,5.0,fr,23061,83,946776,1,1,Active Shallow Crust,0.0,89.98999,0.0,09/15/4192 +-1.57875,42.45407,7055,4,10,11,17,34,3.55,5.0,fr,23062,141,947040,1,1,Active Shallow Crust,0.0,89.9907,0.0,04/10/7055 +-1.57875,42.45407,6177,12,26,16,28,20,3.65,5.0,fr,23063,123,947052,1,1,Active Shallow Crust,0.0,89.99005,0.0,12/26/6177 +-1.57875,42.45407,6676,6,18,18,3,1,3.65,27.5,fr,23064,133,947054,1,1,Active Shallow Crust,0.0,89.99005,0.0,06/18/6676 +-1.57875,42.45407,303,4,15,9,16,24,3.75,5.0,fr,23065,6,947064,1,1,Active Shallow Crust,0.0,89.98965,0.0,04/15/0303 +-1.57875,42.45407,6508,9,12,10,37,22,3.75,15.0,fr,23066,130,947065,1,1,Active Shallow Crust,0.0,89.98965,0.0,09/12/6508 +-1.57875,42.45407,4709,2,1,7,5,20,3.85,5.0,fr,23067,94,947076,1,1,Active Shallow Crust,0.0,89.98946,0.0,02/01/4709 +-1.57875,42.45407,6090,6,13,19,22,16,3.85,5.0,fr,23068,121,947079,1,1,Active Shallow Crust,240.0102,57.9978,0.0,06/13/6090 +-1.57875,42.45407,3450,11,17,6,7,23,3.85,15.0,fr,23069,68,947086,1,1,Active Shallow Crust,128.8958,89.99407,0.0,11/17/3450 +-1.57875,42.45407,8817,3,17,1,55,32,4.05,5.0,fr,23070,176,947100,1,1,Active Shallow Crust,0.0,89.98954,0.0,03/17/8817 +-1.57875,42.45407,5880,10,7,11,59,15,4.05,5.0,fr,23071,117,947109,1,1,Active Shallow Crust,128.891,89.99372,0.0,10/07/5880 +-1.57875,42.45407,8173,4,11,6,39,16,4.25,15.0,fr,23072,163,947125,1,1,Active Shallow Crust,0.0,89.99003,0.0,04/11/8173 +-1.57875,42.45407,2074,2,12,21,50,15,4.35,5.0,fr,23073,41,947136,1,1,Active Shallow Crust,0.0,89.98963,0.0,02/12/2074 +-1.57875,42.45407,8188,11,9,23,11,4,4.55,5.0,fr,23074,163,947163,1,1,Active Shallow Crust,240.0081,57.99716,0.0,11/09/8188 +-1.57875,42.45407,2231,8,15,7,16,47,4.65,5.0,fr,23075,44,947172,1,1,Active Shallow Crust,0.0,89.99004,0.0,08/15/2231 +-1.57875,42.45407,8463,10,1,7,44,34,4.95,5.0,fr,23076,169,947208,1,1,Active Shallow Crust,0.0,89.98997,0.0,10/01/8463 +-0.12929,51.32462,8779,8,26,14,14,8,3.55,5.0,fr,23077,175,947523,1,1,Active Shallow Crust,240.0127,57.99823,0.0,08/26/8779 +-0.12929,51.32462,9541,1,22,15,3,29,3.65,5.0,fr,23078,190,947532,1,1,Active Shallow Crust,0.0,89.99,0.0,01/22/9541 +-0.12929,51.32462,5246,10,11,3,43,40,3.75,5.0,fr,23079,104,947544,1,1,Active Shallow Crust,0.0,89.98999,0.0,10/11/5246 +-0.12929,51.32462,2971,6,5,8,16,46,3.85,5.0,fr,23080,59,947556,1,1,Active Shallow Crust,0.0,89.98996,0.0,06/05/2971 +-0.12929,51.32462,2342,1,30,23,26,57,3.85,5.0,fr,23081,46,947559,1,1,Active Shallow Crust,240.0116,57.99793,0.0,01/30/2342 +5.01622,44.628,573,6,19,3,46,21,3.55,5.0,fr,23082,11,948000,1,3,Active Shallow Crust,0.0,89.99282,0.0,06/19/0573 +5.01622,44.628,4164,7,18,17,46,57,3.55,5.0,fr,23083,83,948000,1,3,Active Shallow Crust,0.0,89.99282,0.0,07/18/4164 +5.01622,44.628,1700,2,18,0,19,51,3.55,5.0,fr,23084,33,948000,1,3,Active Shallow Crust,0.0,89.99282,0.0,02/18/1700 +5.01622,44.628,3898,9,18,11,34,53,3.55,5.0,fr,23085,77,948006,1,1,Active Shallow Crust,0.0,89.99274,-90.0,09/18/3898 +5.01622,44.628,7032,8,23,17,28,37,3.65,5.0,fr,23086,140,948012,1,3,Active Shallow Crust,0.0,89.98721,0.0,08/23/7032 +5.01622,44.628,8848,9,20,20,12,39,3.65,5.0,fr,23087,176,948012,1,3,Active Shallow Crust,0.0,89.98721,0.0,09/20/8848 +5.01622,44.628,8719,10,7,10,23,36,3.65,5.0,fr,23088,174,948012,1,3,Active Shallow Crust,0.0,89.98721,0.0,10/07/8719 +5.01622,44.628,811,4,14,20,17,51,3.75,5.0,fr,23089,16,948024,1,2,Active Shallow Crust,0.0,89.9886,0.0,04/14/0811 +5.01622,44.628,2529,4,26,12,34,39,3.75,5.0,fr,23090,50,948024,1,2,Active Shallow Crust,0.0,89.9886,0.0,04/26/2529 +5.01622,44.628,1060,12,1,17,26,15,3.75,5.0,fr,23091,21,948027,1,1,Active Shallow Crust,240.0077,58.0177,0.0,12/01/1060 +5.01622,44.628,5439,8,28,3,43,21,3.75,15.0,fr,23092,108,948028,1,1,Active Shallow Crust,240.0077,58.0177,0.0,08/28/5439 +5.01622,44.628,813,1,26,23,45,26,3.75,5.0,fr,23093,16,948033,1,1,Active Shallow Crust,128.8967,89.96746,0.0,01/26/0813 +5.01622,44.628,4917,8,20,0,13,6,3.75,15.0,fr,23094,98,948034,1,1,Active Shallow Crust,128.8967,89.96746,0.0,08/20/4917 +5.01622,44.628,9565,7,9,12,14,37,3.75,27.5,fr,23095,191,948035,1,1,Active Shallow Crust,128.8967,89.96746,0.0,07/09/9565 +5.01622,44.628,6089,12,16,1,24,28,3.85,5.0,fr,23096,121,948036,1,1,Active Shallow Crust,0.0,89.98984,0.0,12/16/6089 +5.01622,44.628,6856,7,23,14,8,49,3.85,5.0,fr,23097,137,948045,1,1,Active Shallow Crust,128.8957,89.99238,0.0,07/23/6856 +5.01622,44.628,4878,9,26,1,28,39,3.95,5.0,fr,23098,97,948048,1,1,Active Shallow Crust,0.0,89.99094,0.0,09/26/4878 +5.01622,44.628,9276,10,6,20,37,40,3.95,15.0,fr,23099,185,948055,1,1,Active Shallow Crust,0.0,89.99084,-90.0,10/06/9276 +5.01622,44.628,7293,7,7,11,18,45,4.15,5.0,fr,23100,145,948072,1,1,Active Shallow Crust,0.0,89.98921,0.0,07/07/7293 +5.01622,44.628,6167,2,18,17,12,32,5.45,27.5,fr,23101,123,948230,1,1,Active Shallow Crust,0.0,89.99033,0.0,02/18/6167 +-1.8299,48.70967,8508,1,1,7,10,34,3.55,5.0,fr,23102,170,948480,1,2,Active Shallow Crust,0.0,89.99002,0.0,01/01/8508 +-1.8299,48.70967,4594,1,26,2,10,25,3.55,5.0,fr,23103,91,948480,1,2,Active Shallow Crust,0.0,89.99002,0.0,01/26/4594 +-1.8299,48.70967,2583,7,25,2,15,58,3.55,27.5,fr,23104,51,948482,1,1,Active Shallow Crust,0.0,89.99002,0.0,07/25/2583 +-1.8299,48.70967,3462,5,16,23,52,47,3.55,5.0,fr,23105,69,948483,1,1,Active Shallow Crust,240.0125,57.99804,0.0,05/16/3462 +-1.8299,48.70967,5105,4,18,0,15,14,3.55,5.0,fr,23106,102,948489,1,1,Active Shallow Crust,128.8958,89.99418,0.0,04/18/5105 +-1.8299,48.70967,661,5,18,3,26,23,3.65,5.0,fr,23107,13,948492,1,2,Active Shallow Crust,0.0,89.98962,0.0,05/18/0661 +-1.8299,48.70967,8119,10,19,22,43,2,3.65,5.0,fr,23108,162,948492,1,2,Active Shallow Crust,0.0,89.98962,0.0,10/19/8119 +-1.8299,48.70967,4831,10,28,4,5,4,3.65,27.5,fr,23109,96,948494,1,2,Active Shallow Crust,0.0,89.98962,0.0,10/28/4831 +-1.8299,48.70967,4217,6,13,12,10,20,3.65,27.5,fr,23110,84,948494,1,2,Active Shallow Crust,0.0,89.98962,0.0,06/13/4217 +-1.8299,48.70967,3564,12,19,12,9,48,3.65,5.0,fr,23111,71,948495,1,1,Active Shallow Crust,240.0013,58.01308,0.0,12/19/3564 +-1.8299,48.70967,6509,10,3,2,34,9,3.75,5.0,fr,23112,130,948504,1,1,Active Shallow Crust,0.0,89.98943,0.0,10/03/6509 +-1.8299,48.70967,4445,6,20,7,48,25,3.75,15.0,fr,23113,88,948505,1,1,Active Shallow Crust,0.0,89.98943,0.0,06/20/4445 +-1.8299,48.70967,5760,1,27,20,25,38,3.75,15.0,fr,23114,115,948508,1,1,Active Shallow Crust,240.0085,58.01762,0.0,01/27/5760 +-1.8299,48.70967,9851,2,17,5,23,3,3.85,5.0,fr,23115,197,948519,1,1,Active Shallow Crust,240.0111,57.99796,0.0,02/17/9851 +-1.8299,48.70967,7576,3,11,0,59,34,3.85,5.0,fr,23116,151,948525,1,1,Active Shallow Crust,128.8952,89.99411,0.0,03/11/7576 +-1.8299,48.70967,3143,4,29,2,54,18,3.95,5.0,fr,23117,62,948528,1,4,Active Shallow Crust,0.0,89.9895,0.0,04/29/3143 +-1.8299,48.70967,496,6,17,9,50,4,3.95,5.0,fr,23118,9,948528,1,4,Active Shallow Crust,0.0,89.9895,0.0,06/17/0496 +-1.8299,48.70967,1963,12,30,19,28,5,3.95,5.0,fr,23119,39,948528,1,4,Active Shallow Crust,0.0,89.9895,0.0,12/30/1963 +-1.8299,48.70967,9021,12,12,15,9,58,3.95,5.0,fr,23120,180,948528,1,4,Active Shallow Crust,0.0,89.9895,0.0,12/12/9021 +-1.8299,48.70967,3267,11,12,3,47,58,4.05,5.0,fr,23121,65,948540,1,1,Active Shallow Crust,0.0,89.98971,0.0,11/12/3267 +-1.8299,48.70967,9663,9,20,20,22,48,4.25,5.0,fr,23122,193,948564,1,1,Active Shallow Crust,0.0,89.99034,0.0,09/20/9663 +-1.8299,48.70967,8423,12,16,15,27,14,4.65,5.0,fr,23123,168,948612,1,1,Active Shallow Crust,0.0,89.99015,0.0,12/16/8423 +-1.8299,48.70967,1344,2,1,12,42,5,4.75,5.0,fr,23124,26,948624,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/01/1344 +-1.8299,48.70967,6820,8,28,3,35,44,6.15,15.0,fr,23125,136,948793,1,1,Active Shallow Crust,0.0,89.98998,0.0,08/28/6820 +3.14075,42.63292,5094,9,20,22,38,21,3.55,5.0,fr,23126,101,948963,1,1,Active Shallow Crust,240.0115,57.99827,0.0,09/20/5094 +3.14075,42.63292,3275,2,13,7,8,3,3.75,5.0,fr,23127,65,948984,1,1,Active Shallow Crust,0.0,89.99116,0.0,02/13/3275 +3.14075,42.63292,9584,9,2,22,17,14,3.75,15.0,fr,23128,191,948985,1,1,Active Shallow Crust,0.0,89.99116,0.0,09/02/9584 +3.14075,42.63292,4517,7,16,17,16,30,3.75,15.0,fr,23129,90,948991,1,1,Active Shallow Crust,0.0,89.99106,-90.0,07/16/4517 +3.14075,42.63292,9583,9,7,14,25,28,3.85,15.0,fr,23130,191,948997,1,1,Active Shallow Crust,0.0,89.98949,0.0,09/07/9583 +3.14075,42.63292,8244,6,22,12,28,22,4.05,5.0,fr,23131,164,949023,1,1,Active Shallow Crust,240.0053,58.00577,0.0,06/22/8244 +3.14075,42.63292,8879,2,2,0,21,53,4.15,15.0,fr,23132,177,949033,1,1,Active Shallow Crust,0.0,89.99071,0.0,02/02/8879 +3.14075,42.63292,5275,8,18,4,3,1,4.45,5.0,fr,23133,105,949068,1,1,Active Shallow Crust,0.0,89.98947,0.0,08/18/5275 +3.14075,42.63292,6819,10,28,23,43,4,5.15,5.0,fr,23134,136,949152,1,1,Active Shallow Crust,0.0,89.99001,0.0,10/28/6819 +4.83359,50.1051,4064,9,17,11,43,53,3.55,5.0,fr,23135,81,949920,1,2,Active Shallow Crust,0.0,89.98707,0.0,09/17/4064 +4.83359,50.1051,1138,12,16,0,46,49,3.55,5.0,fr,23136,22,949920,1,2,Active Shallow Crust,0.0,89.98707,0.0,12/16/1138 +4.83359,50.1051,4264,8,20,12,16,41,3.75,27.5,fr,23137,85,949946,1,1,Active Shallow Crust,0.0,89.98972,0.0,08/20/4264 +1.07665,51.50454,5108,2,18,17,18,3,3.55,5.0,fr,23138,102,950403,1,1,Active Shallow Crust,240.013,57.99817,0.0,02/18/5108 +1.07665,51.50454,4873,8,21,12,34,47,4.05,5.0,fr,23139,97,950460,1,1,Active Shallow Crust,0.0,89.9903,0.0,08/21/4873 +1.07665,51.50454,2606,3,28,12,24,4,4.05,15.0,fr,23140,52,950461,1,1,Active Shallow Crust,0.0,89.9903,0.0,03/28/2606 +1.07665,51.50454,747,3,28,5,4,31,4.05,5.0,fr,23141,14,950463,1,1,Active Shallow Crust,240.0068,58.00597,0.0,03/28/0747 +1.07665,51.50454,3614,9,20,16,2,46,4.25,5.0,fr,23142,72,950487,1,1,Active Shallow Crust,240.0087,57.99432,0.0,09/20/3614 +1.07665,51.50454,3350,9,16,23,44,15,4.35,15.0,fr,23143,66,950506,1,1,Active Shallow Crust,128.8966,89.98277,0.0,09/16/3350 +1.07665,51.50454,6043,9,1,18,19,35,5.55,5.0,fr,23144,120,950640,1,1,Active Shallow Crust,0.0,89.98995,0.0,09/01/6043 +6.42444,45.33601,8055,4,21,19,16,3,3.55,5.0,fr,23145,161,950880,1,2,Active Shallow Crust,0.0,89.99291,0.0,04/21/8055 +6.42444,45.33601,9921,12,5,9,43,58,3.55,5.0,fr,23146,198,950880,1,2,Active Shallow Crust,0.0,89.99291,0.0,12/05/9921 +6.42444,45.33601,8333,7,15,4,27,8,3.55,27.5,fr,23147,166,950882,1,1,Active Shallow Crust,0.0,89.99291,0.0,07/15/8333 +6.42444,45.33601,4452,8,13,8,20,59,3.55,15.0,fr,23148,89,950890,1,1,Active Shallow Crust,128.8955,89.99291,0.0,08/13/4452 +6.42444,45.33601,8626,5,5,4,15,28,3.65,5.0,fr,23149,172,950892,1,5,Active Shallow Crust,0.0,89.98737,0.0,05/05/8626 +6.42444,45.33601,3869,1,18,21,26,1,3.65,5.0,fr,23150,77,950892,1,5,Active Shallow Crust,0.0,89.98737,0.0,01/18/3869 +6.42444,45.33601,565,9,20,13,0,27,3.65,5.0,fr,23151,11,950892,1,5,Active Shallow Crust,0.0,89.98737,0.0,09/20/0565 +6.42444,45.33601,7939,6,30,22,40,13,3.65,5.0,fr,23152,158,950892,1,5,Active Shallow Crust,0.0,89.98737,0.0,06/30/7939 +6.42444,45.33601,5448,3,5,4,7,53,3.65,5.0,fr,23153,108,950892,1,5,Active Shallow Crust,0.0,89.98737,0.0,03/05/5448 +6.42444,45.33601,7816,3,16,15,41,57,3.65,15.0,fr,23154,156,950896,1,2,Active Shallow Crust,240.0011,58.01279,0.0,03/16/7816 +6.42444,45.33601,5310,10,11,20,15,0,3.65,15.0,fr,23155,106,950896,1,2,Active Shallow Crust,240.0011,58.01279,0.0,10/11/5310 +6.42444,45.33601,7284,1,11,1,21,37,3.65,5.0,fr,23156,145,950898,1,1,Active Shallow Crust,0.0,89.98722,-90.0,01/11/7284 +6.42444,45.33601,2924,8,22,13,42,54,3.75,5.0,fr,23157,58,950904,1,1,Active Shallow Crust,0.0,89.98874,0.0,08/22/2924 +6.42444,45.33601,6521,2,23,17,27,36,3.75,15.0,fr,23158,130,950911,1,1,Active Shallow Crust,0.0,89.98861,-90.0,02/23/6521 +6.42444,45.33601,4264,12,26,5,26,40,3.85,5.0,fr,23159,85,950916,1,2,Active Shallow Crust,0.0,89.98996,0.0,12/26/4264 +6.42444,45.33601,6426,1,27,9,4,38,3.85,5.0,fr,23160,128,950916,1,2,Active Shallow Crust,0.0,89.98996,0.0,01/27/6426 +6.42444,45.33601,7617,7,3,5,31,53,3.85,27.5,fr,23161,152,950918,1,1,Active Shallow Crust,0.0,89.98996,0.0,07/03/7617 +6.42444,45.33601,4300,11,19,9,56,19,3.85,15.0,fr,23162,85,950920,1,1,Active Shallow Crust,240.0117,57.99696,0.0,11/19/4300 +6.42444,45.33601,1829,9,10,5,11,45,3.95,5.0,fr,23163,36,950928,1,2,Active Shallow Crust,0.0,89.99106,0.0,09/10/1829 +6.42444,45.33601,4732,6,28,2,26,44,3.95,5.0,fr,23164,94,950928,1,2,Active Shallow Crust,0.0,89.99106,0.0,06/28/4732 +6.42444,45.33601,5458,8,2,11,47,57,3.95,27.5,fr,23165,109,950930,1,1,Active Shallow Crust,0.0,89.99106,0.0,08/02/5458 +6.42444,45.33601,4171,8,25,22,18,16,3.95,5.0,fr,23166,83,950931,1,1,Active Shallow Crust,240.0193,58.00534,0.0,08/25/4171 +6.42444,45.33601,5917,9,17,19,45,15,3.95,5.0,fr,23167,118,950934,1,1,Active Shallow Crust,0.0,89.99095,-90.0,09/17/5917 +6.42444,45.33601,615,7,3,19,20,42,3.95,27.5,fr,23168,12,950939,1,1,Active Shallow Crust,128.9013,89.99329,0.0,07/03/0615 +6.42444,45.33601,9650,9,3,2,44,2,4.05,5.0,fr,23169,192,950940,1,4,Active Shallow Crust,0.0,89.98804,0.0,09/03/9650 +6.42444,45.33601,6734,9,8,0,23,9,4.05,5.0,fr,23170,134,950940,1,4,Active Shallow Crust,0.0,89.98804,0.0,09/08/6734 +6.42444,45.33601,5305,12,16,19,43,45,4.05,5.0,fr,23171,106,950940,1,4,Active Shallow Crust,0.0,89.98804,0.0,12/16/5305 +6.42444,45.33601,7431,11,12,13,3,4,4.05,5.0,fr,23172,148,950940,1,4,Active Shallow Crust,0.0,89.98804,0.0,11/12/7431 +6.42444,45.33601,3290,1,31,2,1,51,4.05,15.0,fr,23173,65,950941,1,1,Active Shallow Crust,0.0,89.98804,0.0,01/31/3290 +6.42444,45.33601,7899,6,22,15,24,16,4.15,5.0,fr,23174,157,950952,1,1,Active Shallow Crust,0.0,89.98934,0.0,06/22/7899 +1.29775,52.53912,4773,12,19,13,17,8,3.55,5.0,fr,23175,95,951360,1,1,Active Shallow Crust,0.0,89.98927,0.0,12/19/4773 +1.29775,52.53912,4611,8,1,2,25,41,3.65,5.0,fr,23176,92,951372,1,1,Active Shallow Crust,0.0,89.99043,0.0,08/01/4611 +1.29775,52.53912,6846,10,19,5,34,53,4.25,5.0,fr,23177,136,951444,1,1,Active Shallow Crust,0.0,89.98972,0.0,10/19/6846 +3.25674,51.17981,2907,9,4,8,42,8,3.55,5.0,fr,23178,58,951840,1,1,Active Shallow Crust,0.0,89.99052,0.0,09/04/2907 +3.25674,51.17981,6351,4,17,0,3,21,3.55,5.0,fr,23179,127,951843,1,1,Active Shallow Crust,240.0127,57.9983,0.0,04/17/6351 +3.25674,51.17981,8806,2,19,8,50,37,3.75,5.0,fr,23180,176,951867,1,2,Active Shallow Crust,240.0091,58.01776,0.0,02/19/8806 +3.25674,51.17981,9164,11,4,11,2,19,3.75,5.0,fr,23181,183,951867,1,2,Active Shallow Crust,240.0091,58.01776,0.0,11/04/9164 +3.25674,51.17981,2503,9,15,1,29,46,3.85,5.0,fr,23182,50,951876,1,1,Active Shallow Crust,0.0,89.99105,0.0,09/15/2503 +3.25674,51.17981,1768,9,7,10,6,52,4.05,5.0,fr,23183,35,951900,1,1,Active Shallow Crust,0.0,89.98933,0.0,09/07/1768 +3.25674,51.17981,8675,12,20,13,48,9,4.05,15.0,fr,23184,173,951904,1,1,Active Shallow Crust,240.0067,58.00615,0.0,12/20/8675 +3.25674,51.17981,4172,8,17,2,42,42,4.05,5.0,fr,23185,83,951906,1,1,Active Shallow Crust,0.0,89.98921,-90.0,08/17/4172 +3.25674,51.17981,7275,3,25,12,12,10,4.55,27.5,fr,23186,145,951962,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/25/7275 +3.25674,51.17981,1190,5,22,8,23,12,4.75,5.0,fr,23187,23,951984,1,1,Active Shallow Crust,0.0,89.98968,0.0,05/22/1190 +3.25674,51.17981,3961,2,9,7,3,27,5.05,5.0,fr,23188,79,952020,1,1,Active Shallow Crust,0.0,89.98988,0.0,02/09/3961 +-3.52585,49.51151,5925,3,7,8,8,43,4.15,5.0,fr,23189,118,952392,1,1,Active Shallow Crust,0.0,89.99016,0.0,03/07/5925 +6.31207,48.9252,395,1,4,7,53,5,3.55,15.0,fr,23190,7,952804,1,1,Active Shallow Crust,240.0129,57.99757,0.0,01/04/0395 +6.31207,48.9252,2384,4,17,21,17,16,3.65,5.0,fr,23191,47,952815,1,1,Active Shallow Crust,240.0008,58.01378,0.0,04/17/2384 +6.31207,48.9252,9721,5,15,15,22,7,3.85,15.0,fr,23192,194,952837,1,1,Active Shallow Crust,0.0,89.99062,0.0,05/15/9721 +6.31207,48.9252,8740,12,23,2,30,26,4.45,5.0,fr,23193,174,952908,1,1,Active Shallow Crust,0.0,89.99059,0.0,12/23/8740 +3.01007,50.14524,4729,2,9,3,28,14,3.65,5.0,fr,23194,94,953292,1,2,Active Shallow Crust,0.0,89.99136,0.0,02/09/4729 +3.01007,50.14524,9195,3,28,0,22,17,3.65,5.0,fr,23195,183,953292,1,2,Active Shallow Crust,0.0,89.99136,0.0,03/28/9195 +3.01007,50.14524,8811,12,16,6,1,17,3.65,15.0,fr,23196,176,953296,1,1,Active Shallow Crust,240.002,58.01252,0.0,12/16/8811 +3.01007,50.14524,9330,6,6,17,36,31,3.75,5.0,fr,23197,186,953304,1,1,Active Shallow Crust,0.0,89.98973,0.0,06/06/9330 +3.01007,50.14524,3951,6,28,16,18,48,3.75,27.5,fr,23198,79,953306,1,1,Active Shallow Crust,0.0,89.98973,0.0,06/28/3951 +3.01007,50.14524,6044,7,17,7,59,18,3.85,5.0,fr,23199,120,953319,1,1,Active Shallow Crust,240.0112,57.99788,0.0,07/17/6044 +3.01007,50.14524,7620,12,25,9,20,7,4.05,5.0,fr,23200,152,953340,1,1,Active Shallow Crust,0.0,89.9891,0.0,12/25/7620 +3.01007,50.14524,4024,9,7,15,17,31,4.25,15.0,fr,23201,80,953368,1,1,Active Shallow Crust,240.0087,57.99399,0.0,09/07/4024 +3.01007,50.14524,6445,4,17,10,48,30,5.05,5.0,fr,23202,128,953460,1,1,Active Shallow Crust,0.0,89.99023,0.0,04/17/6445 +3.01007,50.14524,9782,5,14,10,30,50,5.25,5.0,fr,23203,195,953490,1,1,Active Shallow Crust,0.0,89.98984,-90.0,05/14/9782 +-2.77488,43.97995,6411,11,15,12,37,1,4.25,5.0,fr,23204,128,953844,1,1,Active Shallow Crust,0.0,89.99027,0.0,11/15/6411 +2.5378,42.53975,29,2,20,8,37,37,3.55,27.5,fr,23205,0,954242,1,1,Active Shallow Crust,0.0,89.98885,0.0,02/20/0029 +2.5378,42.53975,7059,6,21,3,2,55,3.65,5.0,fr,23206,141,954252,1,1,Active Shallow Crust,0.0,89.99007,0.0,06/21/7059 +2.5378,42.53975,894,4,18,2,46,58,3.65,27.5,fr,23207,17,954254,1,1,Active Shallow Crust,0.0,89.99007,0.0,04/18/0894 +2.5378,42.53975,5880,5,19,23,18,45,3.65,5.0,fr,23208,117,954258,1,1,Active Shallow Crust,0.0,89.98995,-90.0,05/19/5880 +2.5378,42.53975,1465,7,18,9,50,35,3.75,15.0,fr,23209,29,954265,1,1,Active Shallow Crust,0.0,89.99115,0.0,07/18/1465 +2.5378,42.53975,7946,6,14,4,12,27,3.75,5.0,fr,23210,158,954270,1,2,Active Shallow Crust,0.0,89.99104,-90.0,06/14/7946 +2.5378,42.53975,1595,8,20,11,9,21,3.75,5.0,fr,23211,31,954270,1,2,Active Shallow Crust,0.0,89.99104,-90.0,08/20/1595 +2.5378,42.53975,8856,6,23,1,24,42,3.85,5.0,fr,23212,177,954276,1,3,Active Shallow Crust,0.0,89.98948,0.0,06/23/8856 +2.5378,42.53975,5196,10,5,11,16,31,3.85,5.0,fr,23213,103,954276,1,3,Active Shallow Crust,0.0,89.98948,0.0,10/05/5196 +2.5378,42.53975,137,8,30,20,58,13,3.85,5.0,fr,23214,2,954276,1,3,Active Shallow Crust,0.0,89.98948,0.0,08/30/0137 +2.5378,42.53975,394,4,7,5,10,3,3.85,5.0,fr,23215,7,954279,1,1,Active Shallow Crust,240.0098,57.99797,0.0,04/07/0394 +2.5378,42.53975,8839,12,12,14,4,40,3.95,5.0,fr,23216,176,954288,1,1,Active Shallow Crust,0.0,89.99062,0.0,12/12/8839 +2.5378,42.53975,6396,7,17,20,24,9,3.95,5.0,fr,23217,127,954291,1,1,Active Shallow Crust,240.0192,58.00487,0.0,07/17/6396 +2.5378,42.53975,3224,3,30,22,14,53,4.05,5.0,fr,23218,64,954303,1,1,Active Shallow Crust,240.0053,58.00589,0.0,03/30/3224 +2.5378,42.53975,183,1,19,3,47,40,4.05,5.0,fr,23219,3,954309,1,1,Active Shallow Crust,128.8916,89.99269,0.0,01/19/0183 +2.5378,42.53975,9591,9,16,10,59,29,4.05,15.0,fr,23220,191,954310,1,1,Active Shallow Crust,128.8916,89.99269,0.0,09/16/9591 +2.5378,42.53975,6509,9,2,9,9,45,4.15,5.0,fr,23221,130,954312,1,1,Active Shallow Crust,0.0,89.99069,0.0,09/02/6509 +2.5378,42.53975,7916,6,12,6,24,36,4.15,15.0,fr,23222,158,954313,1,1,Active Shallow Crust,0.0,89.99069,0.0,06/12/7916 +2.5378,42.53975,6225,2,17,8,9,22,4.25,5.0,fr,23223,124,954324,1,1,Active Shallow Crust,0.0,89.99004,0.0,02/17/6225 +2.5378,42.53975,4255,8,21,17,13,4,4.35,15.0,fr,23224,85,954337,1,1,Active Shallow Crust,0.0,89.98965,0.0,08/21/4255 +2.5378,42.53975,9547,10,3,14,13,6,4.45,5.0,fr,23225,190,954351,1,1,Active Shallow Crust,240.0041,57.99445,0.0,10/03/9547 +2.5378,42.53975,8689,6,8,10,27,38,4.65,5.0,fr,23226,173,954375,1,1,Active Shallow Crust,240.0096,57.99417,0.0,06/08/8689 +2.5378,42.53975,1884,7,5,9,56,51,5.05,5.0,fr,23227,37,954420,1,1,Active Shallow Crust,0.0,89.99009,0.0,07/05/1884 +2.5378,42.53975,1232,1,21,1,33,58,5.65,5.0,fr,23228,24,954492,1,1,Active Shallow Crust,0.0,89.99007,0.0,01/21/1232 +4.79609,47.83865,3010,3,23,22,50,53,3.75,15.0,fr,23229,60,954745,1,1,Active Shallow Crust,0.0,89.98925,0.0,03/23/3010 +4.79609,47.83865,7203,1,24,4,24,23,3.85,5.0,fr,23230,144,954762,1,1,Active Shallow Crust,0.0,89.9903,-90.0,01/24/7203 +4.79609,47.83865,5408,10,17,19,59,13,3.95,15.0,fr,23231,108,954769,1,1,Active Shallow Crust,0.0,89.99146,0.0,10/17/5408 +4.79609,47.83865,7028,1,21,22,49,39,4.15,5.0,fr,23232,140,954798,1,1,Active Shallow Crust,0.0,89.98971,-90.0,01/21/7028 +4.796096,47.83865,5860,12,25,0,32,0,7.15,17.5,fr,23233,117,955159,1,1,Active Shallow Crust,359.9999,89.99001,-90.0,12/25/5860 +2.04356,45.10013,3621,12,27,18,27,41,3.65,5.0,fr,23234,72,955212,1,1,Active Shallow Crust,0.0,89.99049,0.0,12/27/3621 +2.04356,45.10013,538,11,28,1,31,19,3.75,15.0,fr,23235,10,955231,1,1,Active Shallow Crust,0.0,89.99142,-90.0,11/28/0538 +2.04356,45.10013,656,1,25,17,58,19,3.85,5.0,fr,23236,13,955236,1,1,Active Shallow Crust,0.0,89.98992,0.0,01/25/0656 +2.04356,45.10013,9014,4,14,13,28,46,3.95,15.0,fr,23237,180,955252,1,1,Active Shallow Crust,240.0197,58.00477,0.0,04/14/9014 +2.04356,45.10013,7127,7,23,4,58,34,5.75,15.0,fr,23238,142,955468,1,1,Active Shallow Crust,240.0397,57.99914,0.0,07/23/7127 +6.99378,47.4818,2726,7,14,17,32,43,3.55,5.0,fr,23239,54,955680,1,1,Active Shallow Crust,0.0,89.99319,0.0,07/14/2726 +6.99378,47.4818,4333,12,4,12,40,51,3.55,5.0,fr,23240,86,955686,1,1,Active Shallow Crust,0.0,89.9931,-90.0,12/04/4333 +6.99378,47.4818,3520,5,31,18,4,48,3.55,5.0,fr,23241,70,955689,1,1,Active Shallow Crust,128.8953,89.99659,0.0,05/31/3520 +6.99378,47.4818,567,12,31,14,38,35,3.65,5.0,fr,23242,11,955692,1,1,Active Shallow Crust,0.0,89.98785,0.0,12/31/0567 +6.99378,47.4818,8039,6,15,22,41,35,3.65,15.0,fr,23243,160,955693,1,1,Active Shallow Crust,0.0,89.98785,0.0,06/15/8039 +6.99378,47.4818,2478,2,2,17,12,11,3.75,15.0,fr,23244,49,955711,1,1,Active Shallow Crust,0.0,89.98904,-90.0,02/02/2478 +6.99378,47.4818,3094,5,21,3,36,31,3.75,15.0,fr,23245,61,955714,1,1,Active Shallow Crust,128.8966,89.96751,0.0,05/21/3094 +6.99378,47.4818,992,7,4,1,52,58,3.85,5.0,fr,23246,19,955716,1,1,Active Shallow Crust,0.0,89.99035,0.0,07/04/0992 +6.99378,47.4818,8469,9,29,23,58,8,3.95,5.0,fr,23247,169,955728,1,2,Active Shallow Crust,0.0,89.9914,0.0,09/29/8469 +6.99378,47.4818,9369,6,17,11,29,29,3.95,5.0,fr,23248,187,955728,1,2,Active Shallow Crust,0.0,89.9914,0.0,06/17/9369 +6.99378,47.4818,9358,12,29,5,25,31,4.05,5.0,fr,23249,187,955740,1,1,Active Shallow Crust,0.0,89.9885,0.0,12/29/9358 +6.99378,47.4818,245,10,23,23,4,14,4.15,27.5,fr,23250,4,955754,1,1,Active Shallow Crust,0.0,89.98975,0.0,10/23/0245 +6.99378,47.4818,2134,4,3,14,33,8,4.25,5.0,fr,23251,42,955767,1,1,Active Shallow Crust,240.0072,57.99434,0.0,04/03/2134 +6.99378,47.4818,1740,3,22,21,5,8,4.25,5.0,fr,23252,34,955770,1,1,Active Shallow Crust,0.0,89.99076,-90.0,03/22/1740 +6.99378,47.4818,696,9,28,16,36,3,4.35,5.0,fr,23253,13,955785,1,1,Active Shallow Crust,128.8976,89.98257,0.0,09/28/0696 +6.99378,47.4818,5471,7,21,20,49,40,4.75,5.0,fr,23254,109,955824,1,1,Active Shallow Crust,0.0,89.98973,0.0,07/21/5471 +6.99378,47.4818,3785,11,16,6,31,25,4.85,15.0,fr,23255,75,955840,1,1,Active Shallow Crust,240.0177,58.00244,0.0,11/16/3785 +6.99378,47.4818,2853,6,12,2,41,23,5.05,5.0,fr,23256,57,955860,1,1,Active Shallow Crust,0.0,89.9903,0.0,06/12/2853 +6.99378,47.4818,5245,7,20,1,44,28,5.15,5.0,fr,23257,104,955875,1,1,Active Shallow Crust,240.0202,58.00002,0.0,07/20/5245 +6.99378,47.4818,3247,8,3,7,17,2,5.55,5.0,fr,23258,64,955923,1,1,Active Shallow Crust,240.0336,57.99961,0.0,08/03/3247 +6.99378,47.4818,4182,5,25,2,0,52,5.65,5.0,fr,23259,83,955932,1,1,Active Shallow Crust,0.0,89.99028,0.0,05/25/4182 +1.2082,46.78042,4869,3,5,17,46,52,3.55,5.0,fr,23260,97,956160,1,3,Active Shallow Crust,0.0,89.98964,0.0,03/05/4869 +1.2082,46.78042,6463,3,16,22,33,13,3.55,5.0,fr,23261,129,956160,1,3,Active Shallow Crust,0.0,89.98964,0.0,03/16/6463 +1.2082,46.78042,8831,2,26,15,18,9,3.55,5.0,fr,23262,176,956160,1,3,Active Shallow Crust,0.0,89.98964,0.0,02/26/8831 +1.2082,46.78042,4914,8,7,5,47,47,3.55,5.0,fr,23263,98,956169,1,1,Active Shallow Crust,128.8965,89.9931,0.0,08/07/4914 +1.2082,46.78042,9075,1,20,17,59,48,3.65,5.0,fr,23264,181,956172,1,1,Active Shallow Crust,359.9992,89.99077,0.0,01/20/9075 +1.2082,46.78042,8773,12,16,1,9,13,3.65,5.0,fr,23265,175,956178,1,2,Active Shallow Crust,0.0,89.99066,-90.0,12/16/8773 +1.2082,46.78042,2026,8,17,0,1,5,3.65,5.0,fr,23266,40,956178,1,2,Active Shallow Crust,0.0,89.99066,-90.0,08/17/2026 +1.2082,46.78042,2843,3,2,8,56,9,3.95,15.0,fr,23267,56,956209,1,1,Active Shallow Crust,0.0,89.9902,0.0,03/02/2843 +1.2082,46.78042,1631,9,12,3,52,5,4.05,15.0,fr,23268,32,956221,1,1,Active Shallow Crust,0.0,89.9903,0.0,09/12/1631 +1.2082,46.78042,1570,12,26,11,0,19,4.15,5.0,fr,23269,31,956232,1,1,Active Shallow Crust,0.0,89.98962,0.0,12/26/1570 +1.2082,46.78042,1625,12,13,3,0,36,4.25,5.0,fr,23270,32,956247,1,1,Active Shallow Crust,240.0076,57.99422,0.0,12/13/1625 +1.2082,46.78042,6747,11,5,12,29,11,4.65,27.5,fr,23271,134,956294,1,1,Active Shallow Crust,0.0,89.98978,0.0,11/05/6747 +1.2082,46.78042,2355,2,16,19,6,55,5.35,5.0,fr,23272,47,956376,1,1,Active Shallow Crust,0.0,89.99,0.0,02/16/2355 +1.2082,46.78042,8298,10,30,12,54,35,6.05,15.0,fr,23273,165,956464,1,1,Active Shallow Crust,240.0569,58.00029,0.0,10/30/8298 +1.86984,49.32582,5934,9,28,16,8,30,3.85,5.0,fr,23274,118,956676,1,1,Active Shallow Crust,0.0,89.98953,0.0,09/28/5934 +1.86984,49.32582,6774,6,8,11,8,28,3.85,5.0,fr,23275,135,956679,1,1,Active Shallow Crust,240.0113,57.99775,0.0,06/08/6774 +1.86984,49.32582,6418,1,24,9,8,26,4.15,5.0,fr,23276,128,956712,1,1,Active Shallow Crust,0.0,89.99012,0.0,01/24/6418 +1.86984,49.32582,1676,5,28,13,1,54,4.15,5.0,fr,23277,33,956715,1,1,Active Shallow Crust,240.0089,57.99744,0.0,05/28/1676 +1.86984,49.32582,8628,10,14,10,3,16,4.15,15.0,fr,23278,172,956716,1,1,Active Shallow Crust,240.0089,57.99746,0.0,10/14/8628 +1.86984,49.32582,4317,9,8,7,38,14,5.15,15.0,fr,23279,86,956833,1,1,Active Shallow Crust,0.0,89.9901,0.0,09/08/4317 +8.25632,44.75405,1942,6,29,12,32,2,3.55,5.0,fr,23280,38,957123,1,1,Active Shallow Crust,240.014,57.99809,0.0,06/29/1942 +8.25632,44.75405,2080,7,25,5,16,27,3.75,5.0,fr,23281,41,957144,1,1,Active Shallow Crust,0.0,89.98862,0.0,07/25/2080 +8.25632,44.75405,9026,4,18,11,8,36,3.75,5.0,fr,23282,180,957150,1,1,Active Shallow Crust,0.0,89.98849,-90.0,04/18/9026 +8.25632,44.75405,4880,1,20,15,28,51,3.85,15.0,fr,23283,97,957160,1,1,Active Shallow Crust,240.0105,57.99884,0.0,01/20/4880 +8.25632,44.75405,7386,5,12,6,36,52,3.95,5.0,fr,23284,147,957171,1,1,Active Shallow Crust,240.0188,58.00658,0.0,05/12/7386 +8.25632,44.75405,1644,2,11,0,17,17,5.05,5.0,fr,23285,32,957300,1,1,Active Shallow Crust,0.0,89.98981,0.0,02/11/1644 +7.33964,44.25571,859,8,16,4,10,12,3.55,5.0,fr,23286,17,957600,1,10,Active Shallow Crust,0.0,89.99277,0.0,08/16/0859 +7.33964,44.25571,632,4,26,15,9,46,3.55,5.0,fr,23287,12,957600,1,10,Active Shallow Crust,0.0,89.99277,0.0,04/26/0632 +7.33964,44.25571,8327,1,22,15,40,40,3.55,5.0,fr,23288,166,957600,1,10,Active Shallow Crust,0.0,89.99277,0.0,01/22/8327 +7.33964,44.25571,1856,10,15,14,31,26,3.55,5.0,fr,23289,37,957600,1,10,Active Shallow Crust,0.0,89.99277,0.0,10/15/1856 +7.33964,44.25571,1080,7,13,15,37,7,3.55,5.0,fr,23290,21,957600,1,10,Active Shallow Crust,0.0,89.99277,0.0,07/13/1080 +7.33964,44.25571,919,12,22,5,44,5,3.55,5.0,fr,23291,18,957600,1,10,Active Shallow Crust,0.0,89.99277,0.0,12/22/0919 +7.33964,44.25571,7909,11,28,7,46,20,3.55,5.0,fr,23292,158,957600,1,10,Active Shallow Crust,0.0,89.99277,0.0,11/28/7909 +7.33964,44.25571,5901,2,28,16,4,12,3.55,5.0,fr,23293,118,957600,1,10,Active Shallow Crust,0.0,89.99277,0.0,02/28/5901 +7.33964,44.25571,7961,3,21,7,2,38,3.55,5.0,fr,23294,159,957600,1,10,Active Shallow Crust,0.0,89.99277,0.0,03/21/7961 +7.33964,44.25571,9001,9,18,6,10,48,3.55,5.0,fr,23295,180,957600,1,10,Active Shallow Crust,0.0,89.99277,0.0,09/18/9001 +7.33964,44.25571,3839,9,24,1,18,22,3.55,15.0,fr,23296,76,957601,1,6,Active Shallow Crust,0.0,89.99277,0.0,09/24/3839 +7.33964,44.25571,9131,2,1,12,39,5,3.55,15.0,fr,23297,182,957601,1,6,Active Shallow Crust,0.0,89.99277,0.0,02/01/9131 +7.33964,44.25571,2403,3,29,22,53,9,3.55,15.0,fr,23298,48,957601,1,6,Active Shallow Crust,0.0,89.99277,0.0,03/29/2403 +7.33964,44.25571,5075,11,1,3,22,15,3.55,15.0,fr,23299,101,957601,1,6,Active Shallow Crust,0.0,89.99277,0.0,11/01/5075 +7.33964,44.25571,9938,12,28,10,30,25,3.55,15.0,fr,23300,198,957601,1,6,Active Shallow Crust,0.0,89.99277,0.0,12/28/9938 +7.33964,44.25571,4238,9,1,21,32,32,3.55,15.0,fr,23301,84,957601,1,6,Active Shallow Crust,0.0,89.99277,0.0,09/01/4238 +7.33964,44.25571,6164,1,9,3,21,30,3.55,27.5,fr,23302,123,957602,1,1,Active Shallow Crust,0.0,89.99277,0.0,01/09/6164 +7.33964,44.25571,508,2,21,9,45,32,3.55,5.0,fr,23303,10,957603,1,2,Active Shallow Crust,240.0121,57.99795,0.0,02/21/0508 +7.33964,44.25571,8611,11,14,15,12,11,3.55,5.0,fr,23304,172,957603,1,2,Active Shallow Crust,240.0121,57.99795,0.0,11/14/8611 +7.33964,44.25571,930,2,28,1,11,59,3.55,5.0,fr,23305,18,957606,1,1,Active Shallow Crust,0.0,89.99269,-90.0,02/28/0930 +7.33964,44.25571,9828,10,18,8,45,17,3.55,27.5,fr,23306,196,957611,1,1,Active Shallow Crust,128.897,89.99277,0.0,10/18/9828 +7.33964,44.25571,6927,3,27,0,43,18,3.65,5.0,fr,23307,138,957612,1,8,Active Shallow Crust,0.0,89.98713,0.0,03/27/6927 +7.33964,44.25571,3350,10,1,5,18,39,3.65,5.0,fr,23308,66,957612,1,8,Active Shallow Crust,0.0,89.98713,0.0,10/01/3350 +7.33964,44.25571,2907,3,20,22,8,54,3.65,5.0,fr,23309,58,957612,1,8,Active Shallow Crust,0.0,89.98713,0.0,03/20/2907 +7.33964,44.25571,4511,10,11,7,4,1,3.65,5.0,fr,23310,90,957612,1,8,Active Shallow Crust,0.0,89.98713,0.0,10/11/4511 +7.33964,44.25571,8842,2,2,3,52,50,3.65,5.0,fr,23311,176,957612,1,8,Active Shallow Crust,0.0,89.98713,0.0,02/02/8842 +7.33964,44.25571,8319,8,19,0,54,26,3.65,5.0,fr,23312,166,957612,1,8,Active Shallow Crust,0.0,89.98713,0.0,08/19/8319 +7.33964,44.25571,3024,8,2,16,39,16,3.65,5.0,fr,23313,60,957612,1,8,Active Shallow Crust,0.0,89.98713,0.0,08/02/3024 +7.33964,44.25571,6771,8,24,14,34,41,3.65,5.0,fr,23314,135,957612,1,8,Active Shallow Crust,0.0,89.98713,0.0,08/24/6771 +7.33964,44.25571,1289,2,19,0,43,19,3.65,15.0,fr,23315,25,957613,1,1,Active Shallow Crust,0.0,89.98713,0.0,02/19/1289 +7.33964,44.25571,2604,9,2,18,3,52,3.65,15.0,fr,23316,52,957616,1,1,Active Shallow Crust,240.0,58.01396,0.0,09/02/2604 +7.33964,44.25571,4363,11,6,13,48,18,3.75,5.0,fr,23317,87,957624,1,3,Active Shallow Crust,0.0,89.98853,0.0,11/06/4363 +7.33964,44.25571,2413,7,23,21,25,18,3.75,5.0,fr,23318,48,957624,1,3,Active Shallow Crust,0.0,89.98853,0.0,07/23/2413 +7.33964,44.25571,2968,12,15,22,48,20,3.75,5.0,fr,23319,59,957624,1,3,Active Shallow Crust,0.0,89.98853,0.0,12/15/2968 +7.33964,44.25571,5525,5,25,6,7,27,3.75,15.0,fr,23320,110,957625,1,1,Active Shallow Crust,0.0,89.98853,0.0,05/25/5525 +7.33964,44.25571,8650,7,11,1,27,1,3.75,27.5,fr,23321,172,957626,1,1,Active Shallow Crust,0.0,89.98853,0.0,07/11/8650 +7.33964,44.25571,3820,8,26,10,27,30,3.75,5.0,fr,23322,76,957627,1,2,Active Shallow Crust,240.0085,58.01791,0.0,08/26/3820 +7.33964,44.25571,905,9,16,15,52,47,3.75,5.0,fr,23323,18,957627,1,2,Active Shallow Crust,240.0085,58.01791,0.0,09/16/0905 +7.33964,44.25571,2675,2,20,14,29,29,3.75,5.0,fr,23324,53,957630,1,1,Active Shallow Crust,0.0,89.9884,-90.0,02/20/2675 +7.33964,44.25571,1321,6,21,5,22,40,3.85,5.0,fr,23325,26,957636,1,4,Active Shallow Crust,0.0,89.98978,0.0,06/21/1321 +7.33964,44.25571,9127,9,30,8,53,21,3.85,5.0,fr,23326,182,957636,1,4,Active Shallow Crust,0.0,89.98978,0.0,09/30/9127 +7.33964,44.25571,1874,6,27,3,25,56,3.85,5.0,fr,23327,37,957636,1,4,Active Shallow Crust,0.0,89.98978,0.0,06/27/1874 +7.33964,44.25571,3577,2,22,12,44,34,3.85,5.0,fr,23328,71,957636,1,4,Active Shallow Crust,0.0,89.98978,0.0,02/22/3577 +7.33964,44.25571,133,1,3,23,6,33,3.85,5.0,fr,23329,2,957645,1,1,Active Shallow Crust,128.8965,89.99233,0.0,01/03/0133 +7.33964,44.25571,7968,12,3,7,9,21,3.95,5.0,fr,23330,159,957648,1,2,Active Shallow Crust,0.0,89.99088,0.0,12/03/7968 +7.33964,44.25571,4105,3,19,2,22,49,3.95,5.0,fr,23331,82,957648,1,2,Active Shallow Crust,0.0,89.99088,0.0,03/19/4105 +7.33964,44.25571,3270,11,21,22,42,47,3.95,27.5,fr,23332,65,957650,1,2,Active Shallow Crust,0.0,89.99088,0.0,11/21/3270 +7.33964,44.25571,3624,5,11,23,7,57,3.95,27.5,fr,23333,72,957650,1,2,Active Shallow Crust,0.0,89.99088,0.0,05/11/3624 +7.33964,44.25571,8355,7,6,21,15,27,3.95,5.0,fr,23334,167,957657,1,1,Active Shallow Crust,128.9016,89.99316,0.0,07/06/8355 +7.33964,44.25571,6721,10,25,3,6,59,4.05,5.0,fr,23335,134,957660,1,2,Active Shallow Crust,0.0,89.99187,0.0,10/25/6721 +7.33964,44.25571,4473,10,9,7,8,47,4.05,5.0,fr,23336,89,957660,1,2,Active Shallow Crust,0.0,89.99187,0.0,10/09/4473 +7.33964,44.25571,7957,3,28,19,14,24,4.05,5.0,fr,23337,159,957669,1,1,Active Shallow Crust,128.8917,89.99391,0.0,03/28/7957 +7.33964,44.25571,1744,9,5,5,39,52,4.15,5.0,fr,23338,34,957672,1,1,Active Shallow Crust,0.0,89.98914,0.0,09/05/1744 +7.33964,44.25571,5096,10,30,1,32,15,4.15,5.0,fr,23339,101,957675,1,1,Active Shallow Crust,240.0087,57.99683,0.0,10/30/5096 +7.33964,44.25571,601,12,24,1,58,17,4.25,5.0,fr,23340,12,957684,1,1,Active Shallow Crust,0.0,89.99032,0.0,12/24/0601 +7.33964,44.25571,8163,4,7,3,9,16,4.25,27.5,fr,23341,163,957689,1,1,Active Shallow Crust,240.0067,57.99385,0.0,04/07/8163 +7.33964,44.25571,7952,10,20,21,1,45,4.25,5.0,fr,23342,159,957690,1,1,Active Shallow Crust,0.0,89.99021,-90.0,10/20/7952 +7.33964,44.25571,4101,2,1,18,22,8,4.35,5.0,fr,23343,82,957696,1,1,Active Shallow Crust,0.0,89.99137,0.0,02/01/4101 +7.33964,44.25571,2153,3,3,12,47,41,4.35,27.5,fr,23344,43,957704,1,1,Active Shallow Crust,0.0,89.99127,-90.0,03/03/2153 +7.33964,44.25571,1281,5,11,2,40,20,4.55,5.0,fr,23345,25,957720,1,1,Active Shallow Crust,0.0,89.99086,0.0,05/11/1281 +7.33964,44.25571,1755,3,26,5,18,52,4.65,5.0,fr,23346,35,957732,1,1,Active Shallow Crust,0.0,89.98982,0.0,03/26/1755 +7.33964,44.25571,1814,5,21,9,43,12,4.65,5.0,fr,23347,36,957738,1,1,Active Shallow Crust,0.0,89.9897,-90.0,05/21/1814 +7.33964,44.25571,9083,4,10,14,2,6,4.75,5.0,fr,23348,181,957753,1,1,Active Shallow Crust,128.8896,89.98804,0.0,04/10/9083 +7.33964,44.25571,9632,11,13,23,44,30,4.85,15.0,fr,23349,192,957757,1,1,Active Shallow Crust,0.0,89.9903,0.0,11/13/9632 +7.33964,44.25571,9878,10,29,5,17,43,4.95,5.0,fr,23350,197,957768,1,1,Active Shallow Crust,0.0,89.98991,0.0,10/29/9878 +7.33964,44.25571,9971,3,3,7,48,44,4.95,15.0,fr,23351,199,957769,1,1,Active Shallow Crust,0.0,89.98991,0.0,03/03/9971 +7.33964,44.25571,2215,12,11,3,4,46,5.15,15.0,fr,23352,44,957799,1,1,Active Shallow Crust,0.0,89.98958,-90.0,12/11/2215 +7.33964,44.25571,4721,6,20,4,48,50,5.35,15.0,fr,23353,94,957820,1,1,Active Shallow Crust,240.0234,57.99754,0.0,06/20/4721 +7.33964,44.25571,6771,8,9,18,5,57,5.65,5.0,fr,23354,135,957858,1,1,Active Shallow Crust,0.0,89.99023,-90.0,08/09/6771 +7.33964,44.25571,7289,12,25,15,0,53,5.75,5.0,fr,23355,145,957864,1,2,Active Shallow Crust,0.0,89.99024,0.0,12/25/7289 +7.33964,44.25571,6748,4,11,22,41,5,5.75,5.0,fr,23356,134,957864,1,2,Active Shallow Crust,0.0,89.99024,0.0,04/11/6748 +7.33964,44.25571,1264,9,9,10,5,17,6.05,27.5,fr,23357,25,957908,1,1,Active Shallow Crust,0.0,89.99014,-90.0,09/09/1264 +7.331004,44.26642,1602,6,13,6,51,48,6.45,7.200962,fr,23358,32,957951,1,1,Active Shallow Crust,240.0844,57.99957,0.0,06/13/1602 +2.01406,42.58937,6898,5,9,21,9,24,3.55,5.0,fr,23359,137,958080,1,1,Active Shallow Crust,0.0,89.98886,0.0,05/09/6898 +2.01406,42.58937,2667,3,14,3,37,21,3.55,15.0,fr,23360,53,958081,1,1,Active Shallow Crust,0.0,89.98886,0.0,03/14/2667 +2.01406,42.58937,5978,5,16,6,49,6,3.55,5.0,fr,23361,119,958083,1,2,Active Shallow Crust,240.0122,57.99771,0.0,05/16/5978 +2.01406,42.58937,6391,5,28,11,53,9,3.55,5.0,fr,23362,127,958083,1,2,Active Shallow Crust,240.0122,57.99771,0.0,05/28/6391 +2.01406,42.58937,6460,12,17,2,20,47,3.55,5.0,fr,23363,129,958086,1,1,Active Shallow Crust,0.0,89.98873,-90.0,12/17/6460 +2.01406,42.58937,7710,12,25,12,9,53,3.55,5.0,fr,23364,154,958089,1,1,Active Shallow Crust,128.8965,89.99443,0.0,12/25/7710 +2.01406,42.58937,2219,4,15,5,37,55,3.65,5.0,fr,23365,44,958092,1,1,Active Shallow Crust,0.0,89.99007,0.0,04/15/2219 +2.01406,42.58937,558,12,28,11,55,12,3.65,27.5,fr,23366,11,958094,1,1,Active Shallow Crust,0.0,89.99007,0.0,12/28/0558 +2.01406,42.58937,3871,6,28,3,31,4,3.65,5.0,fr,23367,77,958101,1,2,Active Shallow Crust,128.9013,89.96345,0.0,06/28/3871 +2.01406,42.58937,8522,3,11,20,24,40,3.65,5.0,fr,23368,170,958101,1,2,Active Shallow Crust,128.9013,89.96345,0.0,03/11/8522 +2.01406,42.58937,626,10,12,21,26,18,3.75,5.0,fr,23369,12,958104,1,1,Active Shallow Crust,0.0,89.99116,0.0,10/12/0626 +2.01406,42.58937,5971,1,30,22,49,2,3.75,15.0,fr,23370,119,958105,1,3,Active Shallow Crust,0.0,89.99116,0.0,01/30/5971 +2.01406,42.58937,7364,7,11,6,22,16,3.75,15.0,fr,23371,147,958105,1,3,Active Shallow Crust,0.0,89.99116,0.0,07/11/7364 +2.01406,42.58937,167,7,29,6,13,18,3.75,15.0,fr,23372,3,958105,1,3,Active Shallow Crust,0.0,89.99116,0.0,07/29/0167 +2.01406,42.58937,2363,12,18,20,11,14,3.75,5.0,fr,23373,47,958113,1,1,Active Shallow Crust,128.8969,89.96742,0.0,12/18/2363 +2.01406,42.58937,6507,4,24,11,16,34,3.95,5.0,fr,23374,130,958128,1,2,Active Shallow Crust,0.0,89.99063,0.0,04/24/6507 +2.01406,42.58937,8926,9,25,13,56,6,3.95,5.0,fr,23375,178,958128,1,2,Active Shallow Crust,0.0,89.99063,0.0,09/25/8926 +2.01406,42.58937,1771,12,12,9,34,32,3.95,5.0,fr,23376,35,958131,1,1,Active Shallow Crust,240.0193,58.00502,0.0,12/12/1771 +2.01406,42.58937,3443,2,8,6,31,6,3.95,27.5,fr,23377,68,958133,1,1,Active Shallow Crust,240.0193,58.00502,0.0,02/08/3443 +2.01406,42.58937,5462,1,25,4,25,57,3.95,5.0,fr,23378,109,958137,1,1,Active Shallow Crust,128.9013,89.99297,0.0,01/25/5462 +2.01406,42.58937,8343,3,21,4,8,30,4.05,5.0,fr,23379,166,958143,1,2,Active Shallow Crust,240.0054,58.0057,0.0,03/21/8343 +2.01406,42.58937,1395,7,10,18,47,0,4.05,5.0,fr,23380,27,958143,1,2,Active Shallow Crust,240.0054,58.0057,0.0,07/10/1395 +2.01406,42.58937,2806,9,28,11,3,12,4.05,5.0,fr,23381,56,958149,1,1,Active Shallow Crust,128.8916,89.99374,0.0,09/28/2806 +2.01406,42.58937,6479,2,23,8,32,27,4.15,15.0,fr,23382,129,958153,1,1,Active Shallow Crust,0.0,89.9907,0.0,02/23/6479 +2.01406,42.58937,1845,6,27,0,28,15,4.25,5.0,fr,23383,36,958164,1,1,Active Shallow Crust,0.0,89.99005,0.0,06/27/1845 +2.01406,42.58937,6743,3,3,19,39,50,4.35,5.0,fr,23384,134,958176,1,1,Active Shallow Crust,0.0,89.98965,0.0,03/03/6743 +2.01406,42.58937,696,5,20,10,42,24,4.35,27.5,fr,23385,13,958178,1,1,Active Shallow Crust,0.0,89.98965,0.0,05/20/0696 +2.01406,42.58937,8053,12,4,10,16,24,4.55,5.0,fr,23386,161,958200,1,1,Active Shallow Crust,0.0,89.98943,0.0,12/04/8053 +6.80231,48.73278,6820,9,13,18,7,24,3.65,5.0,fr,23387,136,958572,1,1,Active Shallow Crust,0.0,89.98814,0.0,09/13/6820 +6.80231,48.73278,43,3,26,14,34,3,3.65,15.0,fr,23388,0,958573,1,1,Active Shallow Crust,0.0,89.98814,0.0,03/26/0043 +6.80231,48.73278,4787,1,20,3,12,34,4.05,5.0,fr,23389,95,958620,1,1,Active Shallow Crust,0.0,89.98878,0.0,01/20/4787 +6.80231,48.73278,1224,5,27,17,40,4,4.25,5.0,fr,23390,24,958644,1,1,Active Shallow Crust,0.0,89.99109,0.0,05/27/1224 +1.44031,50.35192,5141,1,8,21,3,6,3.55,5.0,fr,23391,102,959040,1,1,Active Shallow Crust,0.0,89.99035,0.0,01/08/5141 +1.44031,50.35192,4763,8,2,21,56,45,3.55,15.0,fr,23392,95,959041,1,1,Active Shallow Crust,0.0,89.99035,0.0,08/02/4763 +1.44031,50.35192,9070,7,28,6,23,1,3.65,15.0,fr,23393,181,959056,1,1,Active Shallow Crust,240.0018,58.01302,0.0,07/28/9070 +1.44031,50.35192,9727,11,2,15,48,55,3.75,27.5,fr,23394,194,959066,1,1,Active Shallow Crust,0.0,89.98978,0.0,11/02/9727 +1.44031,50.35192,9128,2,21,5,43,55,4.05,5.0,fr,23395,182,959100,1,1,Active Shallow Crust,0.0,89.99005,0.0,02/21/9128 +1.44031,50.35192,4834,11,6,12,38,39,4.55,5.0,fr,23396,96,959160,1,1,Active Shallow Crust,0.0,89.98982,0.0,11/06/4834 +1.54536,47.73075,3050,9,20,23,47,8,3.65,15.0,fr,23397,60,959533,1,1,Active Shallow Crust,0.0,89.98942,0.0,09/20/3050 +1.54536,47.73075,9715,5,28,19,37,56,3.75,5.0,fr,23398,194,959544,1,1,Active Shallow Crust,0.0,89.99057,0.0,05/28/9715 +1.54536,47.73075,9313,7,7,13,41,12,4.05,15.0,fr,23399,186,959581,1,1,Active Shallow Crust,0.0,89.99046,0.0,07/07/9313 +1.54536,47.73075,3881,4,26,1,5,33,4.75,5.0,fr,23400,77,959664,1,1,Active Shallow Crust,0.0,89.9902,0.0,04/26/3881 +5.44819,46.64408,857,12,4,9,52,24,3.55,5.0,fr,23401,17,960000,1,1,Active Shallow Crust,0.0,89.99308,0.0,12/04/0857 +5.44819,46.64408,2239,1,8,15,57,52,3.55,15.0,fr,23402,44,960001,1,1,Active Shallow Crust,0.0,89.99308,0.0,01/08/2239 +5.44819,46.64408,2229,8,18,6,11,13,3.55,5.0,fr,23403,44,960003,1,1,Active Shallow Crust,240.0132,57.99781,0.0,08/18/2229 +5.44819,46.64408,4445,1,30,13,28,53,3.75,5.0,fr,23404,88,960024,1,1,Active Shallow Crust,0.0,89.989,0.0,01/30/4445 +5.44819,46.64408,4289,3,10,0,37,39,3.95,5.0,fr,23405,85,960048,1,1,Active Shallow Crust,0.0,89.99126,0.0,03/10/4289 +5.44819,46.64408,1308,6,20,0,34,24,3.95,15.0,fr,23406,26,960058,1,1,Active Shallow Crust,128.8996,89.99345,0.0,06/20/1308 +5.44819,46.64408,1284,8,11,10,31,52,4.15,5.0,fr,23407,25,960081,1,1,Active Shallow Crust,128.8976,89.99306,0.0,08/11/1284 +5.44819,46.64408,7233,8,7,13,48,1,4.45,5.0,fr,23408,144,960108,1,1,Active Shallow Crust,0.0,89.99017,0.0,08/07/7233 +5.44819,46.64408,81,2,5,4,8,7,4.55,5.0,fr,23409,1,960120,1,1,Active Shallow Crust,0.0,89.98905,0.0,02/05/0081 +5.44819,46.64408,9434,9,26,4,2,26,4.55,27.5,fr,23410,188,960122,1,1,Active Shallow Crust,0.0,89.98905,0.0,09/26/9434 +5.44819,46.64408,9349,4,11,20,9,13,5.15,5.0,fr,23411,186,960192,1,1,Active Shallow Crust,0.0,89.99012,0.0,04/11/9349 +0.46364,51.22139,2930,4,18,2,43,27,3.65,15.0,fr,23412,58,960502,1,1,Active Shallow Crust,128.8999,89.96353,0.0,04/18/2930 +0.46364,51.22139,8499,2,16,13,15,37,3.75,15.0,fr,23413,169,960505,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/16/8499 +0.46364,51.22139,7178,1,19,15,50,52,4.05,5.0,fr,23414,143,960540,1,1,Active Shallow Crust,0.0,89.99001,0.0,01/19/7178 +0.46364,51.22139,3504,10,20,21,50,2,4.15,5.0,fr,23415,70,960552,1,1,Active Shallow Crust,0.0,89.98991,0.0,10/20/3504 +0.46364,51.22139,4435,7,5,17,14,5,4.35,5.0,fr,23416,88,960579,1,1,Active Shallow Crust,240.0096,57.99616,0.0,07/05/4435 +0.46364,51.22139,7229,11,7,9,9,38,4.85,5.0,fr,23417,144,960636,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/07/7229 +-0.92574,42.251,1474,10,3,23,37,6,3.55,15.0,fr,23418,29,960964,1,1,Active Shallow Crust,240.0118,57.99808,0.0,10/03/1474 +-0.92574,42.251,9622,3,25,23,47,33,4.45,5.0,fr,23419,192,961068,1,1,Active Shallow Crust,0.0,89.99007,0.0,03/25/9622 +-2.11901,48.95547,1105,4,10,4,22,15,3.55,5.0,fr,23420,22,961440,1,2,Active Shallow Crust,0.0,89.99007,0.0,04/10/1105 +-2.11901,48.95547,5805,11,19,21,36,18,3.55,5.0,fr,23421,116,961440,1,2,Active Shallow Crust,0.0,89.99007,0.0,11/19/5805 +-2.11901,48.95547,3681,9,5,1,8,35,3.55,5.0,fr,23422,73,961443,1,1,Active Shallow Crust,240.0128,57.99796,0.0,09/05/3681 +-2.11901,48.95547,2567,6,29,20,40,18,3.55,15.0,fr,23423,51,961447,1,1,Active Shallow Crust,0.0,89.98995,-90.0,06/29/2567 +-2.11901,48.95547,1565,1,5,23,32,50,3.65,5.0,fr,23424,31,961452,1,3,Active Shallow Crust,0.0,89.99115,0.0,01/05/1565 +-2.11901,48.95547,2461,9,23,9,16,18,3.65,5.0,fr,23425,49,961452,1,3,Active Shallow Crust,0.0,89.99115,0.0,09/23/2461 +-2.11901,48.95547,4038,9,22,13,32,53,3.65,5.0,fr,23426,80,961452,1,3,Active Shallow Crust,0.0,89.99115,0.0,09/22/4038 +-2.11901,48.95547,8838,5,11,13,34,27,3.65,15.0,fr,23427,176,961453,1,1,Active Shallow Crust,0.0,89.99115,0.0,05/11/8838 +-2.11901,48.95547,2615,8,19,22,17,1,3.75,5.0,fr,23428,52,961464,1,1,Active Shallow Crust,0.0,89.98948,0.0,08/19/2615 +-2.11901,48.95547,94,7,12,14,8,17,3.75,5.0,fr,23429,1,961470,1,1,Active Shallow Crust,0.0,89.98936,-90.0,07/12/0094 +-2.11901,48.95547,9050,11,17,11,47,6,3.75,15.0,fr,23430,180,961471,1,1,Active Shallow Crust,0.0,89.98936,-90.0,11/17/9050 +-2.11901,48.95547,227,8,22,8,13,12,3.85,15.0,fr,23431,4,961477,1,1,Active Shallow Crust,0.0,89.99062,0.0,08/22/0227 +-2.11901,48.95547,2720,9,27,23,40,34,3.95,5.0,fr,23432,54,961488,1,1,Active Shallow Crust,0.0,89.98956,0.0,09/27/2720 +-2.11901,48.95547,3456,2,22,1,17,14,3.95,15.0,fr,23433,69,961489,1,2,Active Shallow Crust,0.0,89.98956,0.0,02/22/3456 +-2.11901,48.95547,5479,10,20,14,57,32,3.95,15.0,fr,23434,109,961489,1,2,Active Shallow Crust,0.0,89.98956,0.0,10/20/5479 +-2.11901,48.95547,1499,5,15,19,20,50,4.05,5.0,fr,23435,29,961500,1,1,Active Shallow Crust,0.0,89.99069,0.0,05/15/1499 +-2.11901,48.95547,6708,8,18,15,4,21,4.25,5.0,fr,23436,134,961524,1,1,Active Shallow Crust,0.0,89.98965,0.0,08/18/6708 +-2.11901,48.95547,6083,3,9,19,44,43,4.25,5.0,fr,23437,121,961533,1,1,Active Shallow Crust,128.8938,89.98104,0.0,03/09/6083 +-2.11901,48.95547,9392,11,22,7,5,33,4.35,15.0,fr,23438,187,961537,1,1,Active Shallow Crust,0.0,89.98946,0.0,11/22/9392 +-2.11901,48.95547,367,11,29,17,28,41,4.45,5.0,fr,23439,7,961554,1,1,Active Shallow Crust,0.0,89.99049,-90.0,11/29/0367 +-2.11901,48.95547,3357,6,17,9,58,9,4.55,5.0,fr,23440,67,961569,1,1,Active Shallow Crust,128.893,89.98579,0.0,06/17/3357 +-2.11901,48.95547,8432,6,24,8,33,29,4.65,5.0,fr,23441,168,961572,1,1,Active Shallow Crust,0.0,89.98973,0.0,06/24/8432 +-2.11901,48.95547,2516,7,26,11,38,48,4.65,5.0,fr,23442,50,961575,1,1,Active Shallow Crust,240.0117,57.99443,0.0,07/26/2516 +-2.11901,48.95547,9243,11,23,17,45,31,4.85,5.0,fr,23443,184,961596,1,1,Active Shallow Crust,0.0,89.99036,0.0,11/23/9243 +-2.11901,48.95547,5573,3,27,19,57,30,5.25,15.0,fr,23444,111,961645,1,1,Active Shallow Crust,0.0,89.99017,0.0,03/27/5573 +-2.11901,48.95547,5348,8,11,2,0,15,5.45,5.0,fr,23445,106,961674,1,1,Active Shallow Crust,0.0,89.98985,-90.0,08/11/5348 +0.39746,47.12852,4145,8,6,9,25,18,3.55,5.0,fr,23446,82,961923,1,2,Active Shallow Crust,240.0123,57.99814,0.0,08/06/4145 +0.39746,47.12852,8350,9,12,7,19,39,3.55,5.0,fr,23447,166,961923,1,2,Active Shallow Crust,240.0123,57.99814,0.0,09/12/8350 +0.39746,47.12852,4763,8,11,0,7,29,3.55,5.0,fr,23448,95,961926,1,1,Active Shallow Crust,0.0,89.99002,-90.0,08/11/4763 +0.39746,47.12852,5980,3,27,22,51,52,3.65,5.0,fr,23449,119,961935,1,1,Active Shallow Crust,240.0012,58.01292,0.0,03/27/5980 +0.39746,47.12852,2668,6,17,6,11,41,3.75,5.0,fr,23450,53,961944,1,2,Active Shallow Crust,0.0,89.99012,0.0,06/17/2668 +0.39746,47.12852,2551,9,10,8,47,1,3.75,5.0,fr,23451,51,961944,1,2,Active Shallow Crust,0.0,89.99012,0.0,09/10/2551 +0.39746,47.12852,1899,1,13,12,48,29,3.75,27.5,fr,23452,37,961946,1,1,Active Shallow Crust,0.0,89.99012,0.0,01/13/1899 +0.39746,47.12852,2777,3,5,23,27,42,3.85,5.0,fr,23453,55,961956,1,2,Active Shallow Crust,0.0,89.98998,0.0,03/05/2777 +0.39746,47.12852,9285,2,4,21,50,31,3.85,5.0,fr,23454,185,961956,1,2,Active Shallow Crust,0.0,89.98998,0.0,02/04/9285 +0.39746,47.12852,4404,12,7,15,23,36,3.85,15.0,fr,23455,88,961957,1,2,Active Shallow Crust,0.0,89.98998,0.0,12/07/4404 +0.39746,47.12852,8257,8,15,21,54,23,3.85,15.0,fr,23456,165,961957,1,2,Active Shallow Crust,0.0,89.98998,0.0,08/15/8257 +0.39746,47.12852,5925,6,2,5,37,25,3.85,15.0,fr,23457,118,961963,1,1,Active Shallow Crust,0.0,89.98987,-90.0,06/02/5925 +0.39746,47.12852,622,10,17,20,54,5,3.95,5.0,fr,23458,12,961968,1,1,Active Shallow Crust,0.0,89.98999,0.0,10/17/0622 +0.39746,47.12852,4805,11,23,13,43,5,3.95,15.0,fr,23459,96,961969,1,1,Active Shallow Crust,0.0,89.98999,0.0,11/23/4805 +0.39746,47.12852,5689,11,24,0,44,18,4.05,15.0,fr,23460,113,961981,1,1,Active Shallow Crust,0.0,89.99011,0.0,11/24/5689 +0.39746,47.12852,9028,8,21,1,45,32,4.15,15.0,fr,23461,180,961993,1,1,Active Shallow Crust,0.0,89.9899,0.0,08/21/9028 +0.39746,47.12852,5981,2,8,11,8,1,4.15,5.0,fr,23462,119,962001,1,1,Active Shallow Crust,128.8975,89.99377,0.0,02/08/5981 +0.39746,47.12852,5633,11,16,5,2,9,4.25,27.5,fr,23463,112,962009,1,1,Active Shallow Crust,240.0077,57.99409,0.0,11/16/5633 +0.39746,47.12852,3706,6,20,1,58,14,4.45,5.0,fr,23464,74,962034,1,1,Active Shallow Crust,0.0,89.99,-90.0,06/20/3706 +0.39746,47.12852,9334,7,24,4,39,3,4.55,15.0,fr,23465,186,962041,1,1,Active Shallow Crust,0.0,89.98997,0.0,07/24/9334 +0.39746,47.12852,8073,8,27,9,32,32,5.65,5.0,fr,23466,161,962172,1,1,Active Shallow Crust,0.0,89.98998,0.0,08/27/8073 +-0.67935,46.2405,2483,9,3,16,3,4,3.65,27.5,fr,23467,49,962894,1,1,Active Shallow Crust,0.0,89.9899,0.0,09/03/2483 +-0.67935,46.2405,2569,5,23,16,57,47,3.65,5.0,fr,23468,51,962898,1,1,Active Shallow Crust,0.0,89.98978,-90.0,05/23/2569 +-0.67935,46.2405,214,11,22,5,44,14,3.75,5.0,fr,23469,4,962904,1,1,Active Shallow Crust,0.0,89.9903,0.0,11/22/0214 +-0.67935,46.2405,278,3,17,0,7,55,3.85,15.0,fr,23470,5,962917,1,2,Active Shallow Crust,0.0,89.99013,0.0,03/17/0278 +-0.67935,46.2405,4216,2,5,19,27,15,3.85,15.0,fr,23471,84,962917,1,2,Active Shallow Crust,0.0,89.99013,0.0,02/05/4216 +-0.67935,46.2405,7627,8,14,17,36,29,3.85,5.0,fr,23472,152,962919,1,1,Active Shallow Crust,240.0108,57.99775,0.0,08/14/7627 +-0.67935,46.2405,7055,1,14,8,12,35,3.85,5.0,fr,23473,141,962922,1,1,Active Shallow Crust,0.0,89.99001,-90.0,01/14/7055 +-0.67935,46.2405,5603,10,14,16,43,34,3.85,15.0,fr,23474,112,962926,1,1,Active Shallow Crust,128.8958,89.99383,0.0,10/14/5603 +-0.67935,46.2405,656,6,11,18,15,1,4.05,5.0,fr,23475,13,962940,1,1,Active Shallow Crust,0.0,89.9902,0.0,06/11/0656 +-0.67935,46.2405,4245,2,28,22,55,16,4.05,15.0,fr,23476,84,962947,1,1,Active Shallow Crust,0.0,89.99008,-90.0,02/28/4245 +-0.67935,46.2405,3788,3,31,16,22,38,4.35,5.0,fr,23477,75,962979,1,1,Active Shallow Crust,240.0083,57.99595,0.0,03/31/3788 +-0.67935,46.2405,9838,8,20,12,3,3,4.45,5.0,fr,23478,196,962988,1,1,Active Shallow Crust,0.0,89.9901,0.0,08/20/9838 +-0.67935,46.2405,3956,1,13,0,7,35,4.55,15.0,fr,23479,79,963001,1,2,Active Shallow Crust,0.0,89.99007,0.0,01/13/3956 +-0.67935,46.2405,3312,6,22,12,18,46,4.55,15.0,fr,23480,66,963001,1,2,Active Shallow Crust,0.0,89.99007,0.0,06/22/3312 +-0.67935,46.2405,564,3,9,5,32,14,4.95,15.0,fr,23481,11,963052,1,1,Active Shallow Crust,240.0118,58.00446,0.0,03/09/0564 +-0.67935,46.2405,1760,6,20,11,36,29,6.05,5.0,fr,23482,35,963183,1,1,Active Shallow Crust,240.056,58.00012,0.0,06/20/1760 +3.35479,50.02519,1834,3,2,5,11,28,3.55,5.0,fr,23483,36,963360,1,1,Active Shallow Crust,0.0,89.99028,0.0,03/02/1834 +3.35479,50.02519,8039,11,12,3,14,13,3.55,15.0,fr,23484,160,963370,1,1,Active Shallow Crust,128.8957,89.99352,0.0,11/12/8039 +3.35479,50.02519,3843,11,8,9,58,25,3.65,5.0,fr,23485,76,963372,1,2,Active Shallow Crust,0.0,89.99134,0.0,11/08/3843 +3.35479,50.02519,8752,8,16,2,5,21,3.65,5.0,fr,23486,175,963372,1,2,Active Shallow Crust,0.0,89.99134,0.0,08/16/8752 +3.35479,50.02519,1452,5,1,15,6,24,3.75,5.0,fr,23487,29,963384,1,1,Active Shallow Crust,0.0,89.98971,0.0,05/01/1452 +3.35479,50.02519,161,4,16,0,30,8,4.05,5.0,fr,23488,3,963420,1,1,Active Shallow Crust,0.0,89.99089,0.0,04/16/0161 +3.35479,50.02519,6807,9,6,7,16,15,4.85,5.0,fr,23489,136,963516,1,1,Active Shallow Crust,0.0,89.98985,0.0,09/06/6807 +8.58704,49.18494,7516,5,20,7,51,39,3.55,15.0,fr,23490,150,963841,1,1,Active Shallow Crust,0.0,89.98682,0.0,05/20/7516 +8.58704,49.18494,8472,12,6,22,53,35,3.65,5.0,fr,23491,169,963852,1,1,Active Shallow Crust,0.0,89.98825,0.0,12/06/8472 +8.58704,49.18494,4869,4,3,19,22,4,3.65,15.0,fr,23492,97,963853,1,1,Active Shallow Crust,0.0,89.98825,0.0,04/03/4869 +8.58704,49.18494,8128,8,9,1,22,4,3.75,5.0,fr,23493,162,963864,1,3,Active Shallow Crust,0.0,89.98953,0.0,08/09/8128 +8.58704,49.18494,6742,8,19,6,33,53,3.75,5.0,fr,23494,134,963864,1,3,Active Shallow Crust,0.0,89.98953,0.0,08/19/6742 +8.58704,49.18494,7186,8,3,7,2,20,3.75,5.0,fr,23495,143,963864,1,3,Active Shallow Crust,0.0,89.98953,0.0,08/03/7186 +8.58704,49.18494,8243,4,21,20,58,26,3.85,5.0,fr,23496,164,963885,1,1,Active Shallow Crust,128.8943,89.99533,0.0,04/21/8243 +8.58704,49.18494,9139,1,7,7,44,57,3.85,15.0,fr,23497,182,963886,1,1,Active Shallow Crust,128.8943,89.99533,0.0,01/07/9139 +8.58704,49.18494,5810,2,14,19,36,42,3.85,27.5,fr,23498,116,963887,1,1,Active Shallow Crust,128.8943,89.99533,0.0,02/14/5810 +8.58704,49.18494,2093,4,30,0,31,57,4.05,15.0,fr,23499,41,963901,1,1,Active Shallow Crust,0.0,89.99258,0.0,04/30/2093 +8.58704,49.18494,5126,10,22,12,2,23,4.15,5.0,fr,23500,102,963912,1,1,Active Shallow Crust,0.0,89.98679,0.0,10/22/5126 +8.58704,49.18494,6072,2,14,8,5,27,4.35,5.0,fr,23501,121,963936,1,1,Active Shallow Crust,0.0,89.9895,0.0,02/14/6072 +8.58704,49.18494,3060,11,23,16,51,45,4.35,27.5,fr,23502,61,963938,1,1,Active Shallow Crust,0.0,89.9895,0.0,11/23/3060 +8.58704,49.18494,8634,10,25,20,24,45,4.35,15.0,fr,23503,172,963943,1,1,Active Shallow Crust,0.0,89.98938,-90.0,10/25/8634 +8.58704,49.18494,902,3,3,20,53,40,4.45,5.0,fr,23504,18,963948,1,1,Active Shallow Crust,0.0,89.99065,0.0,03/03/0902 +-3.3856,43.49054,7004,9,5,7,57,22,3.75,15.0,fr,23505,140,964351,1,1,Active Shallow Crust,0.0,89.99118,-90.0,09/05/7004 +-3.3856,43.49054,2206,9,5,10,51,7,4.15,5.0,fr,23506,44,964392,1,1,Active Shallow Crust,0.0,89.99083,0.0,09/05/2206 +0.54061,44.44456,5875,11,19,4,38,1,3.75,27.5,fr,23507,117,964826,1,1,Active Shallow Crust,0.0,89.98999,0.0,11/19/5875 +4.78527,50.96035,7556,9,27,12,9,37,3.55,5.0,fr,23508,151,965280,1,1,Active Shallow Crust,0.0,89.9873,0.0,09/27/7556 +4.78527,50.96035,5320,7,10,11,18,38,3.55,5.0,fr,23509,106,965286,1,1,Active Shallow Crust,0.0,89.98715,-90.0,07/10/5320 +4.78527,50.96035,9469,4,9,7,51,1,3.55,5.0,fr,23510,189,965289,1,1,Active Shallow Crust,128.8951,89.99365,0.0,04/09/9469 +4.78527,50.96035,447,1,29,0,9,42,3.65,15.0,fr,23511,8,965293,1,1,Active Shallow Crust,0.0,89.98868,0.0,01/29/0447 +4.78527,50.96035,2636,3,16,2,14,58,3.75,5.0,fr,23512,52,965304,1,1,Active Shallow Crust,0.0,89.98991,0.0,03/16/2636 +4.78527,50.96035,6120,8,9,15,52,49,3.95,5.0,fr,23513,122,965328,1,1,Active Shallow Crust,0.0,89.99198,0.0,08/09/6120 +4.78527,50.96035,6214,4,6,22,27,51,3.95,15.0,fr,23514,124,965329,1,1,Active Shallow Crust,0.0,89.99198,0.0,04/06/6214 +4.78527,50.96035,6742,10,5,5,8,7,3.95,5.0,fr,23515,134,965331,1,1,Active Shallow Crust,240.0205,58.00513,0.0,10/05/6742 +4.78527,50.96035,6996,10,4,10,33,46,4.15,15.0,fr,23516,139,965353,1,1,Active Shallow Crust,0.0,89.99045,0.0,10/04/6996 +4.78527,50.96035,9440,2,20,4,55,48,4.75,5.0,fr,23517,188,965424,1,1,Active Shallow Crust,0.0,89.99043,0.0,02/20/9440 +-2.03971,42.67798,7438,8,21,6,51,23,3.55,5.0,fr,23518,148,965760,1,1,Active Shallow Crust,0.0,89.98888,0.0,08/21/7438 +-2.03971,42.67798,1016,7,18,14,23,35,3.55,15.0,fr,23519,20,965761,1,1,Active Shallow Crust,0.0,89.98888,0.0,07/18/1016 +-2.03971,42.67798,6346,11,16,12,4,42,3.55,5.0,fr,23520,126,965769,1,1,Active Shallow Crust,128.8967,89.99444,0.0,11/16/6346 +-2.03971,42.67798,6610,10,24,4,26,1,3.65,5.0,fr,23521,132,965772,1,1,Active Shallow Crust,0.0,89.99009,0.0,10/24/6610 +-2.03971,42.67798,5689,9,28,6,24,55,3.65,27.5,fr,23522,113,965777,1,1,Active Shallow Crust,240.0011,58.01244,0.0,09/28/5689 +-2.03971,42.67798,2504,2,7,18,53,25,3.65,27.5,fr,23523,50,965783,1,1,Active Shallow Crust,128.9007,89.96371,0.0,02/07/2504 +-2.03971,42.67798,4431,5,14,5,28,32,3.75,5.0,fr,23524,88,965790,1,1,Active Shallow Crust,0.0,89.99107,-90.0,05/14/4431 +-2.03971,42.67798,3537,6,30,17,31,42,3.85,15.0,fr,23525,70,965800,1,1,Active Shallow Crust,240.0106,57.99777,0.0,06/30/3537 +-2.03971,42.67798,6871,2,23,0,49,25,3.95,5.0,fr,23526,137,965808,1,2,Active Shallow Crust,0.0,89.99065,0.0,02/23/6871 +-2.03971,42.67798,3329,2,17,17,17,42,3.95,5.0,fr,23527,66,965808,1,2,Active Shallow Crust,0.0,89.99065,0.0,02/17/3329 +-2.03971,42.67798,2820,10,8,19,7,47,4.05,5.0,fr,23528,56,965820,1,1,Active Shallow Crust,0.0,89.98958,0.0,10/08/2820 +-2.03971,42.67798,8723,4,11,10,19,36,4.05,15.0,fr,23529,174,965821,1,1,Active Shallow Crust,0.0,89.98958,0.0,04/11/8723 +-2.03971,42.67798,9292,8,17,9,29,36,4.25,5.0,fr,23530,185,965844,1,1,Active Shallow Crust,0.0,89.99007,0.0,08/17/9292 +-2.03971,42.67798,2693,11,14,5,47,12,4.25,15.0,fr,23531,53,965848,1,1,Active Shallow Crust,240.0068,57.99419,0.0,11/14/2693 +-2.03971,42.67798,8694,5,9,4,9,42,4.35,5.0,fr,23532,173,965856,1,1,Active Shallow Crust,0.0,89.98967,0.0,05/09/8694 +-2.03971,42.67798,5622,9,6,23,55,36,4.35,5.0,fr,23533,112,965865,1,1,Active Shallow Crust,128.8988,89.98263,0.0,09/06/5622 +-2.03971,42.67798,7552,4,8,1,40,19,5.35,15.0,fr,23534,151,965977,1,1,Active Shallow Crust,0.0,89.9902,0.0,04/08/7552 +-2.03971,42.67798,8370,3,17,15,27,0,5.35,27.5,fr,23535,167,965981,1,1,Active Shallow Crust,240.0269,57.99735,0.0,03/17/8370 +-2.055253,42.69776,7142,10,22,2,19,23,6.65,9.065474,fr,23536,142,966135,1,1,Active Shallow Crust,240.0998,57.99995,0.0,10/22/7142 +-6.22651,47.8721,4876,8,13,1,28,37,4.05,5.0,fr,23537,97,966300,1,1,Active Shallow Crust,0.0,89.98859,0.0,08/13/4876 +-6.22651,47.8721,4118,1,13,9,25,48,5.05,27.5,fr,23538,82,966422,1,1,Active Shallow Crust,0.0,89.99037,0.0,01/13/4118 +4.61531,48.82623,8454,9,17,1,52,44,4.05,5.0,fr,23539,169,966780,1,1,Active Shallow Crust,0.0,89.9888,0.0,09/17/8454 +2.50196,41.05726,9842,4,19,19,16,19,3.55,15.0,fr,23540,196,967201,1,1,Active Shallow Crust,0.0,89.98859,0.0,04/19/9842 +2.50196,41.05726,2021,11,2,11,57,44,3.55,5.0,fr,23541,40,967203,1,1,Active Shallow Crust,240.0113,57.99816,0.0,11/02/2021 +2.50196,41.05726,9841,9,30,1,45,19,3.75,5.0,fr,23542,196,967224,1,3,Active Shallow Crust,0.0,89.99094,0.0,09/30/9841 +2.50196,41.05726,7574,8,18,14,45,58,3.75,5.0,fr,23543,151,967224,1,3,Active Shallow Crust,0.0,89.99094,0.0,08/18/7574 +2.50196,41.05726,6235,3,4,17,7,3,3.75,5.0,fr,23544,124,967224,1,3,Active Shallow Crust,0.0,89.99094,0.0,03/04/6235 +2.50196,41.05726,3412,3,7,2,41,41,4.05,5.0,fr,23545,68,967260,1,1,Active Shallow Crust,0.0,89.98931,0.0,03/07/3412 +2.50196,41.05726,511,9,28,0,31,42,4.15,5.0,fr,23546,10,967275,1,1,Active Shallow Crust,240.0077,57.99702,0.0,09/28/0511 +2.50196,41.05726,4473,3,16,4,46,33,4.35,5.0,fr,23547,89,967305,1,1,Active Shallow Crust,128.899,89.98256,0.0,03/16/4473 +2.50196,41.05726,9665,4,19,10,21,13,4.45,5.0,fr,23548,193,967314,1,1,Active Shallow Crust,0.0,89.99045,-90.0,04/19/9665 +6.73765,43.91974,1304,9,15,19,47,55,3.55,15.0,fr,23549,26,967687,1,1,Active Shallow Crust,0.0,89.99265,-90.0,09/15/1304 +6.73765,43.91974,9885,12,23,10,31,52,3.65,27.5,fr,23550,197,967694,1,1,Active Shallow Crust,0.0,89.98705,0.0,12/23/9885 +6.73765,43.91974,7387,4,25,0,53,13,3.75,5.0,fr,23551,147,967704,1,2,Active Shallow Crust,0.0,89.98846,0.0,04/25/7387 +6.73765,43.91974,3787,11,14,21,49,32,3.75,5.0,fr,23552,75,967704,1,2,Active Shallow Crust,0.0,89.98846,0.0,11/14/3787 +6.73765,43.91974,3320,3,13,6,35,54,3.75,15.0,fr,23553,66,967705,1,1,Active Shallow Crust,0.0,89.98846,0.0,03/13/3320 +6.73765,43.91974,8873,7,20,12,53,8,3.85,5.0,fr,23554,177,967719,1,1,Active Shallow Crust,240.0099,57.99818,0.0,07/20/8873 +6.73765,43.91974,1170,6,7,3,14,39,4.05,15.0,fr,23555,23,967741,1,2,Active Shallow Crust,0.0,89.99183,0.0,06/07/1170 +6.73765,43.91974,5979,1,15,18,18,5,4.05,15.0,fr,23556,119,967741,1,2,Active Shallow Crust,0.0,89.99183,0.0,01/15/5979 +6.73765,43.91974,5828,10,1,10,58,38,4.05,5.0,fr,23557,116,967749,1,1,Active Shallow Crust,128.8913,89.99387,0.0,10/01/5828 +6.73765,43.91974,8080,8,2,2,57,20,4.15,5.0,fr,23558,161,967752,1,1,Active Shallow Crust,0.0,89.98907,0.0,08/02/8080 +6.73765,43.91974,4657,1,24,20,16,5,4.15,15.0,fr,23559,93,967753,1,1,Active Shallow Crust,0.0,89.98907,0.0,01/24/4657 +6.73765,43.91974,9683,4,3,4,4,49,4.25,5.0,fr,23560,193,967764,1,1,Active Shallow Crust,0.0,89.99026,0.0,04/03/9683 +6.73765,43.91974,4192,6,21,6,35,54,4.55,5.0,fr,23561,83,967800,1,1,Active Shallow Crust,0.0,89.99081,0.0,06/21/4192 +6.73765,43.91974,5692,6,24,0,37,12,4.55,5.0,fr,23562,113,967809,1,1,Active Shallow Crust,128.8941,89.98602,0.0,06/24/5692 +6.73765,43.91974,5591,7,5,10,26,7,4.65,5.0,fr,23563,111,967812,1,1,Active Shallow Crust,0.0,89.98976,0.0,07/05/5591 +6.73765,43.91974,9508,11,16,2,5,40,4.85,15.0,fr,23564,190,967837,1,1,Active Shallow Crust,0.0,89.99024,0.0,11/16/9508 +6.73765,43.91974,6455,12,28,18,52,14,5.05,5.0,fr,23565,129,967860,1,1,Active Shallow Crust,0.0,89.98966,0.0,12/28/6455 +1.41435,47.85608,8869,5,17,14,8,38,3.85,5.0,fr,23566,177,968196,1,1,Active Shallow Crust,0.0,89.99042,0.0,05/17/8869 +1.41435,47.85608,4677,5,29,9,1,19,4.05,5.0,fr,23567,93,968223,1,1,Active Shallow Crust,240.0063,58.00591,0.0,05/29/4677 +-5.16897,49.222,5341,4,18,23,39,10,3.65,5.0,fr,23568,106,968652,1,1,Active Shallow Crust,0.0,89.98826,0.0,04/18/5341 +-5.16897,49.222,6349,6,26,2,19,5,3.95,5.0,fr,23569,126,968688,1,1,Active Shallow Crust,0.0,89.99169,0.0,06/26/6349 +-5.16897,49.222,2840,7,16,6,48,53,4.15,15.0,fr,23570,56,968722,1,1,Active Shallow Crust,128.8976,89.9934,0.0,07/16/2840 +4.92383,50.24127,4200,10,11,12,2,54,3.55,15.0,fr,23571,83,969121,1,1,Active Shallow Crust,0.0,89.9871,0.0,10/11/4200 +4.92383,50.24127,9558,10,3,23,33,11,3.55,5.0,fr,23572,191,969129,1,1,Active Shallow Crust,128.8953,89.99355,0.0,10/03/9558 +4.92383,50.24127,3276,1,10,5,29,52,3.65,15.0,fr,23573,65,969133,1,1,Active Shallow Crust,0.0,89.9885,0.0,01/10/3276 +4.92383,50.24127,7039,9,18,4,25,27,4.05,5.0,fr,23574,140,969186,1,1,Active Shallow Crust,0.0,89.98899,-90.0,09/18/7039 +4.92383,50.24127,7189,8,16,22,34,3,4.85,5.0,fr,23575,143,969279,1,1,Active Shallow Crust,240.0189,58.00262,0.0,08/16/7189 +4.0785,49.25128,9241,7,9,8,43,23,3.75,5.0,fr,23576,184,969624,1,1,Active Shallow Crust,0.0,89.98954,0.0,07/09/9241 +1.77702,51.91295,9720,9,21,11,0,35,3.65,27.5,fr,23577,194,970094,1,2,Active Shallow Crust,0.0,89.9903,0.0,09/21/9720 +1.77702,51.91295,3336,3,1,21,30,7,3.65,27.5,fr,23578,66,970094,1,2,Active Shallow Crust,0.0,89.9903,0.0,03/01/3336 +1.77702,51.91295,6637,10,11,17,29,3,3.75,15.0,fr,23579,132,970105,1,1,Active Shallow Crust,0.0,89.99012,0.0,10/11/6637 +1.77702,51.91295,3281,4,11,7,18,50,3.75,5.0,fr,23580,65,970110,1,1,Active Shallow Crust,0.0,89.99001,-90.0,04/11/3281 +1.77702,51.91295,4218,7,27,19,58,40,4.25,5.0,fr,23581,84,970170,1,1,Active Shallow Crust,0.0,89.99016,-90.0,07/27/4218 +5.55777,49.95464,8531,6,13,5,28,12,3.85,5.0,fr,23582,170,970599,1,1,Active Shallow Crust,240.0117,57.99807,0.0,06/13/8531 +5.55777,49.95464,1882,2,28,17,57,2,4.05,5.0,fr,23583,37,970620,1,1,Active Shallow Crust,0.0,89.98905,0.0,02/28/1882 +5.55777,49.95464,1871,2,8,5,59,47,4.45,5.0,fr,23584,37,970668,1,1,Active Shallow Crust,0.0,89.99079,0.0,02/08/1871 +5.55777,49.95464,677,10,19,17,25,47,4.75,15.0,fr,23585,13,970705,1,1,Active Shallow Crust,0.0,89.99022,0.0,10/19/0677 +7.55344,44.27978,9606,7,27,16,22,44,3.55,5.0,fr,23586,192,971040,1,6,Active Shallow Crust,0.0,89.99278,0.0,07/27/9606 +7.55344,44.27978,8297,9,9,10,52,19,3.55,5.0,fr,23587,165,971040,1,6,Active Shallow Crust,0.0,89.99278,0.0,09/09/8297 +7.55344,44.27978,7425,11,25,20,22,34,3.55,5.0,fr,23588,148,971040,1,6,Active Shallow Crust,0.0,89.99278,0.0,11/25/7425 +7.55344,44.27978,3627,12,28,3,36,8,3.55,5.0,fr,23589,72,971040,1,6,Active Shallow Crust,0.0,89.99278,0.0,12/28/3627 +7.55344,44.27978,5941,9,6,14,18,33,3.55,5.0,fr,23590,118,971040,1,6,Active Shallow Crust,0.0,89.99278,0.0,09/06/5941 +7.55344,44.27978,6415,7,4,19,38,36,3.55,5.0,fr,23591,128,971040,1,6,Active Shallow Crust,0.0,89.99278,0.0,07/04/6415 +7.55344,44.27978,7159,11,28,16,31,16,3.55,15.0,fr,23592,143,971041,1,3,Active Shallow Crust,0.0,89.99278,0.0,11/28/7159 +7.55344,44.27978,9784,8,28,11,27,39,3.55,15.0,fr,23593,195,971041,1,3,Active Shallow Crust,0.0,89.99278,0.0,08/28/9784 +7.55344,44.27978,1252,10,9,10,2,42,3.55,15.0,fr,23594,25,971041,1,3,Active Shallow Crust,0.0,89.99278,0.0,10/09/1252 +7.55344,44.27978,7148,3,27,7,18,20,3.55,27.5,fr,23595,142,971042,1,2,Active Shallow Crust,0.0,89.99278,0.0,03/27/7148 +7.55344,44.27978,6357,1,25,16,23,0,3.55,27.5,fr,23596,127,971042,1,2,Active Shallow Crust,0.0,89.99278,0.0,01/25/6357 +7.55344,44.27978,8812,7,15,4,55,57,3.55,5.0,fr,23597,176,971043,1,2,Active Shallow Crust,240.011,57.99905,0.0,07/15/8812 +7.55344,44.27978,3502,8,18,11,26,28,3.55,5.0,fr,23598,70,971043,1,2,Active Shallow Crust,240.011,57.99905,0.0,08/18/3502 +7.55344,44.27978,6471,2,26,15,21,38,3.55,5.0,fr,23599,129,971046,1,2,Active Shallow Crust,0.0,89.9927,-90.0,02/26/6471 +7.55344,44.27978,5181,9,22,15,7,6,3.55,5.0,fr,23600,103,971046,1,2,Active Shallow Crust,0.0,89.9927,-90.0,09/22/5181 +7.55344,44.27978,5011,4,27,16,16,42,3.55,15.0,fr,23601,100,971047,1,1,Active Shallow Crust,0.0,89.9927,-90.0,04/27/5011 +7.55344,44.27978,6797,10,4,9,13,18,3.55,5.0,fr,23602,135,971049,1,1,Active Shallow Crust,128.8971,89.99278,0.0,10/04/6797 +7.55344,44.27978,8044,11,19,9,30,41,3.65,5.0,fr,23603,160,971052,1,8,Active Shallow Crust,0.0,89.98713,0.0,11/19/8044 +7.55344,44.27978,2066,9,26,2,50,26,3.65,5.0,fr,23604,41,971052,1,8,Active Shallow Crust,0.0,89.98713,0.0,09/26/2066 +7.55344,44.27978,6318,3,16,10,59,41,3.65,5.0,fr,23605,126,971052,1,8,Active Shallow Crust,0.0,89.98713,0.0,03/16/6318 +7.55344,44.27978,9369,8,6,11,17,44,3.65,5.0,fr,23606,187,971052,1,8,Active Shallow Crust,0.0,89.98713,0.0,08/06/9369 +7.55344,44.27978,3419,11,27,19,21,54,3.65,5.0,fr,23607,68,971052,1,8,Active Shallow Crust,0.0,89.98713,0.0,11/27/3419 +7.55344,44.27978,9659,2,12,1,6,27,3.65,5.0,fr,23608,193,971052,1,8,Active Shallow Crust,0.0,89.98713,0.0,02/12/9659 +7.55344,44.27978,2300,3,15,8,26,3,3.65,5.0,fr,23609,45,971052,1,8,Active Shallow Crust,0.0,89.98713,0.0,03/15/2300 +7.55344,44.27978,7819,1,15,0,36,11,3.65,5.0,fr,23610,156,971052,1,8,Active Shallow Crust,0.0,89.98713,0.0,01/15/7819 +7.55344,44.27978,3613,5,15,3,50,34,3.65,15.0,fr,23611,72,971056,1,2,Active Shallow Crust,240.0011,58.0125,0.0,05/15/3613 +7.55344,44.27978,6449,4,16,9,16,51,3.65,15.0,fr,23612,128,971056,1,2,Active Shallow Crust,240.0011,58.0125,0.0,04/16/6449 +7.55344,44.27978,9310,1,30,12,48,14,3.65,5.0,fr,23613,186,971061,1,1,Active Shallow Crust,128.8999,89.96348,0.0,01/30/9310 +7.55344,44.27978,9090,10,14,18,34,44,3.75,5.0,fr,23614,181,971064,1,4,Active Shallow Crust,0.0,89.98853,0.0,10/14/9090 +7.55344,44.27978,3331,9,8,2,44,59,3.75,5.0,fr,23615,66,971064,1,4,Active Shallow Crust,0.0,89.98853,0.0,09/08/3331 +7.55344,44.27978,2825,6,25,22,2,24,3.75,5.0,fr,23616,56,971064,1,4,Active Shallow Crust,0.0,89.98853,0.0,06/25/2825 +7.55344,44.27978,60,6,28,10,1,13,3.75,5.0,fr,23617,1,971064,1,4,Active Shallow Crust,0.0,89.98853,0.0,06/28/0060 +7.55344,44.27978,3704,11,25,1,2,41,3.75,15.0,fr,23618,74,971065,1,3,Active Shallow Crust,0.0,89.98853,0.0,11/25/3704 +7.55344,44.27978,7546,2,2,7,20,44,3.75,15.0,fr,23619,150,971065,1,3,Active Shallow Crust,0.0,89.98853,0.0,02/02/7546 +7.55344,44.27978,8059,7,15,1,58,56,3.75,15.0,fr,23620,161,971065,1,3,Active Shallow Crust,0.0,89.98853,0.0,07/15/8059 +7.55344,44.27978,9960,12,29,8,36,28,3.75,15.0,fr,23621,199,971068,1,1,Active Shallow Crust,240.0069,58.01811,0.0,12/29/9960 +7.55344,44.27978,3184,12,8,12,10,53,3.75,5.0,fr,23622,63,971073,1,1,Active Shallow Crust,128.8967,89.96745,0.0,12/08/3184 +7.55344,44.27978,1620,9,11,21,58,46,3.85,5.0,fr,23623,32,971076,1,3,Active Shallow Crust,0.0,89.98978,0.0,09/11/1620 +7.55344,44.27978,4550,6,16,22,0,35,3.85,5.0,fr,23624,90,971076,1,3,Active Shallow Crust,0.0,89.98978,0.0,06/16/4550 +7.55344,44.27978,4063,11,8,13,59,29,3.85,5.0,fr,23625,81,971076,1,3,Active Shallow Crust,0.0,89.98978,0.0,11/08/4063 +7.55344,44.27978,9927,8,5,19,18,48,3.85,27.5,fr,23626,198,971078,1,1,Active Shallow Crust,0.0,89.98978,0.0,08/05/9927 +7.55344,44.27978,256,12,20,15,20,57,3.95,5.0,fr,23627,5,971088,1,1,Active Shallow Crust,0.0,89.99089,0.0,12/20/0256 +7.55344,44.27978,2452,5,25,10,51,52,3.95,15.0,fr,23628,49,971089,1,2,Active Shallow Crust,0.0,89.99089,0.0,05/25/2452 +7.55344,44.27978,405,2,4,15,27,29,3.95,15.0,fr,23629,8,971089,1,2,Active Shallow Crust,0.0,89.99089,0.0,02/04/0405 +7.55344,44.27978,3012,4,12,10,17,54,3.95,5.0,fr,23630,60,971091,1,1,Active Shallow Crust,240.0188,58.00517,0.0,04/12/3012 +7.55344,44.27978,8773,12,10,17,9,7,3.95,5.0,fr,23631,175,971094,1,1,Active Shallow Crust,0.0,89.99078,-90.0,12/10/8773 +7.55344,44.27978,1738,1,4,18,42,52,3.95,5.0,fr,23632,34,971097,1,1,Active Shallow Crust,128.9017,89.99317,0.0,01/04/1738 +7.55344,44.27978,8416,1,19,18,36,37,4.05,5.0,fr,23633,168,971100,1,4,Active Shallow Crust,0.0,89.99188,0.0,01/19/8416 +7.55344,44.27978,4562,6,10,12,18,6,4.05,5.0,fr,23634,91,971100,1,4,Active Shallow Crust,0.0,89.99188,0.0,06/10/4562 +7.55344,44.27978,3225,2,28,0,52,59,4.05,5.0,fr,23635,64,971100,1,4,Active Shallow Crust,0.0,89.99188,0.0,02/28/3225 +7.55344,44.27978,1052,6,29,2,13,31,4.05,5.0,fr,23636,21,971100,1,4,Active Shallow Crust,0.0,89.99188,0.0,06/29/1052 +7.55344,44.27978,9030,1,19,14,59,2,4.05,15.0,fr,23637,180,971101,1,1,Active Shallow Crust,0.0,89.99188,0.0,01/19/9030 +7.55344,44.27978,9330,11,19,19,0,50,4.05,5.0,fr,23638,186,971109,1,1,Active Shallow Crust,128.8904,89.99391,0.0,11/19/9330 +7.55344,44.27978,6710,10,11,3,26,55,4.15,5.0,fr,23639,134,971112,1,1,Active Shallow Crust,0.0,89.98914,0.0,10/11/6710 +7.55344,44.27978,9831,3,23,18,11,53,4.15,15.0,fr,23640,196,971113,1,1,Active Shallow Crust,0.0,89.98914,0.0,03/23/9831 +7.55344,44.27978,332,9,13,15,42,6,4.15,5.0,fr,23641,6,971115,1,2,Active Shallow Crust,240.0076,57.99716,0.0,09/13/0332 +7.55344,44.27978,3167,2,21,9,54,6,4.15,5.0,fr,23642,63,971115,1,2,Active Shallow Crust,240.0076,57.99716,0.0,02/21/3167 +7.55344,44.27978,4760,8,25,3,36,37,4.15,15.0,fr,23643,95,971116,1,1,Active Shallow Crust,240.0076,57.99719,0.0,08/25/4760 +7.55344,44.27978,3514,6,2,10,42,2,4.25,5.0,fr,23644,70,971124,1,2,Active Shallow Crust,0.0,89.99033,0.0,06/02/3514 +7.55344,44.27978,245,12,14,3,24,5,4.25,5.0,fr,23645,4,971124,1,2,Active Shallow Crust,0.0,89.99033,0.0,12/14/0245 +7.55344,44.27978,8242,6,20,2,6,9,4.25,15.0,fr,23646,164,971125,1,1,Active Shallow Crust,0.0,89.99033,0.0,06/20/8242 +7.55344,44.27978,8364,7,18,4,42,13,4.25,15.0,fr,23647,167,971128,1,1,Active Shallow Crust,240.007,57.99443,0.0,07/18/8364 +7.55344,44.27978,1149,5,27,11,59,52,4.35,5.0,fr,23648,22,971136,1,2,Active Shallow Crust,0.0,89.99138,0.0,05/27/1149 +7.55344,44.27978,5072,12,16,18,47,50,4.35,5.0,fr,23649,101,971136,1,2,Active Shallow Crust,0.0,89.99138,0.0,12/16/5072 +7.55344,44.27978,6337,11,24,7,29,37,4.35,27.5,fr,23650,126,971138,1,2,Active Shallow Crust,0.0,89.99138,0.0,11/24/6337 +7.55344,44.27978,5981,4,4,2,27,26,4.35,27.5,fr,23651,119,971138,1,2,Active Shallow Crust,0.0,89.99138,0.0,04/04/5981 +7.55344,44.27978,8781,6,1,9,7,44,4.45,5.0,fr,23652,175,971148,1,1,Active Shallow Crust,0.0,89.98975,0.0,06/01/8781 +7.55344,44.27978,7887,8,26,18,22,20,4.45,15.0,fr,23653,157,971158,1,1,Active Shallow Crust,128.893,89.9936,0.0,08/26/7887 +7.55344,44.27978,8026,4,3,23,11,17,4.75,5.0,fr,23654,160,971184,1,1,Active Shallow Crust,0.0,89.98912,0.0,04/03/8026 +7.55344,44.27978,2067,5,12,0,24,41,4.75,15.0,fr,23655,41,971188,1,1,Active Shallow Crust,240.0064,58.00454,0.0,05/12/2067 +7.55344,44.27978,8212,7,23,14,8,57,4.75,15.0,fr,23656,164,971194,1,1,Active Shallow Crust,128.8896,89.98804,0.0,07/23/8212 +7.55344,44.27978,7912,6,28,14,45,34,5.05,15.0,fr,23657,158,971221,1,2,Active Shallow Crust,0.0,89.98973,0.0,06/28/7912 +7.55344,44.27978,4417,4,3,10,31,23,5.05,15.0,fr,23658,88,971221,1,2,Active Shallow Crust,0.0,89.98973,0.0,04/03/4417 +7.55344,44.27978,9107,4,21,3,16,52,5.05,27.5,fr,23659,182,971222,1,1,Active Shallow Crust,0.0,89.98973,0.0,04/21/9107 +7.55344,44.27978,8816,10,31,2,49,42,5.05,5.0,fr,23660,176,971229,1,1,Active Shallow Crust,128.8864,89.99079,0.0,10/31/8816 +7.55344,44.27978,1788,4,18,16,37,2,5.25,15.0,fr,23661,35,971251,1,1,Active Shallow Crust,0.0,89.98969,-90.0,04/18/1788 +7.55344,44.27978,6740,1,31,16,39,7,5.35,5.0,fr,23662,134,971262,1,1,Active Shallow Crust,0.0,89.98988,-90.0,01/31/6740 +-5.70794,49.4383,477,5,24,22,43,57,3.55,5.0,fr,23663,9,971520,1,1,Active Shallow Crust,0.0,89.98689,0.0,05/24/0477 +-5.70794,49.4383,5158,8,4,10,3,53,4.05,5.0,fr,23664,103,971580,1,1,Active Shallow Crust,0.0,89.98894,0.0,08/04/5158 +1.89318,52.42735,6300,7,29,3,56,15,3.65,5.0,fr,23665,125,972012,1,1,Active Shallow Crust,0.0,89.99041,0.0,07/29/6300 +1.67962,48.66151,7037,5,17,4,49,43,3.55,5.0,fr,23666,140,972480,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/17/7037 +1.67962,48.66151,8106,3,12,17,37,47,3.75,5.0,fr,23667,162,972504,1,2,Active Shallow Crust,0.0,89.98942,0.0,03/12/8106 +1.67962,48.66151,3849,11,20,2,29,12,3.75,5.0,fr,23668,76,972504,1,2,Active Shallow Crust,0.0,89.98942,0.0,11/20/3849 +1.67962,48.66151,5112,1,31,0,23,44,3.85,5.0,fr,23669,102,972516,1,1,Active Shallow Crust,0.0,89.99057,0.0,01/31/5112 +3.88522,50.21725,9787,7,8,19,1,36,3.55,5.0,fr,23670,195,972960,1,3,Active Shallow Crust,0.0,89.99032,0.0,07/08/9787 +3.88522,50.21725,6617,11,25,7,48,14,3.55,5.0,fr,23671,132,972960,1,3,Active Shallow Crust,0.0,89.99032,0.0,11/25/6617 +3.88522,50.21725,7395,3,17,11,38,22,3.55,5.0,fr,23672,147,972960,1,3,Active Shallow Crust,0.0,89.99032,0.0,03/17/7395 +3.88522,50.21725,5627,4,14,11,57,38,3.55,15.0,fr,23673,112,972961,1,1,Active Shallow Crust,0.0,89.99032,0.0,04/14/5627 +3.88522,50.21725,4274,5,22,18,8,42,3.75,5.0,fr,23674,85,972984,1,1,Active Shallow Crust,0.0,89.98975,0.0,05/22/4274 +3.88522,50.21725,2897,12,20,13,23,31,3.85,5.0,fr,23675,57,972996,1,1,Active Shallow Crust,0.0,89.99086,0.0,12/20/2897 +3.88522,50.21725,5022,8,11,16,23,42,3.85,15.0,fr,23676,100,972997,1,2,Active Shallow Crust,0.0,89.99086,0.0,08/11/5022 +3.88522,50.21725,8996,7,8,19,14,32,3.85,15.0,fr,23677,179,972997,1,2,Active Shallow Crust,0.0,89.99086,0.0,07/08/8996 +3.88522,50.21725,1035,9,1,9,6,42,3.95,15.0,fr,23678,20,973009,1,1,Active Shallow Crust,0.0,89.98982,0.0,09/01/1035 +3.88522,50.21725,810,11,21,7,55,26,4.05,5.0,fr,23679,16,973020,1,1,Active Shallow Crust,0.0,89.98911,0.0,11/21/0810 +3.88522,50.21725,527,3,17,14,55,53,4.75,5.0,fr,23680,10,973104,1,1,Active Shallow Crust,0.0,89.99027,0.0,03/17/0527 +-0.77826,47.58128,8183,11,20,18,19,52,3.55,5.0,fr,23681,163,973440,1,2,Active Shallow Crust,0.0,89.9898,0.0,11/20/8183 +-0.77826,47.58128,4230,10,28,3,50,9,3.55,5.0,fr,23682,84,973440,1,2,Active Shallow Crust,0.0,89.9898,0.0,10/28/4230 +-0.77826,47.58128,8850,1,18,14,59,11,3.55,27.5,fr,23683,176,973442,1,1,Active Shallow Crust,0.0,89.9898,0.0,01/18/8850 +-0.77826,47.58128,3638,1,29,4,35,7,3.55,5.0,fr,23684,72,973443,1,1,Active Shallow Crust,240.0123,57.99825,0.0,01/29/3638 +-0.77826,47.58128,1802,12,10,14,14,32,3.65,27.5,fr,23685,36,973454,1,1,Active Shallow Crust,0.0,89.99015,0.0,12/10/1802 +-0.77826,47.58128,6259,10,9,22,44,37,3.65,5.0,fr,23686,125,973458,1,1,Active Shallow Crust,0.0,89.99004,-90.0,10/09/6259 +-0.77826,47.58128,487,1,2,0,39,33,3.75,15.0,fr,23687,9,973471,1,2,Active Shallow Crust,0.0,89.98975,-90.0,01/02/0487 +-0.77826,47.58128,3853,2,20,18,43,13,3.75,15.0,fr,23688,77,973471,1,2,Active Shallow Crust,0.0,89.98975,-90.0,02/20/3853 +-0.77826,47.58128,200,2,3,12,22,49,3.75,15.0,fr,23689,3,973474,1,1,Active Shallow Crust,128.8964,89.96739,0.0,02/03/0200 +-0.77826,47.58128,5781,7,1,16,4,18,3.85,5.0,fr,23690,115,973479,1,1,Active Shallow Crust,240.011,57.9978,0.0,07/01/5781 +-0.77826,47.58128,737,9,28,18,17,42,3.95,27.5,fr,23691,14,973490,1,1,Active Shallow Crust,0.0,89.98981,0.0,09/28/0737 +-0.77826,47.58128,8772,8,1,12,8,55,4.05,5.0,fr,23692,175,973503,1,1,Active Shallow Crust,240.0062,58.00583,0.0,08/01/8772 +-0.77826,47.58128,1280,4,18,5,41,11,4.15,5.0,fr,23693,25,973512,1,1,Active Shallow Crust,0.0,89.9902,0.0,04/18/1280 +-0.77826,47.58128,3941,2,8,21,21,59,4.15,5.0,fr,23694,78,973521,1,1,Active Shallow Crust,128.8974,89.99361,0.0,02/08/3941 +-0.77826,47.58128,5641,3,18,7,33,47,4.25,5.0,fr,23695,112,973524,1,1,Active Shallow Crust,0.0,89.99013,0.0,03/18/5641 +-0.77826,47.58128,634,10,30,3,58,36,4.25,27.5,fr,23696,12,973526,1,2,Active Shallow Crust,0.0,89.99013,0.0,10/30/0634 +-0.77826,47.58128,5117,5,1,20,0,40,4.25,27.5,fr,23697,102,973526,1,2,Active Shallow Crust,0.0,89.99013,0.0,05/01/5117 +-0.77826,47.58128,4129,9,22,12,53,46,4.35,5.0,fr,23698,82,973536,1,1,Active Shallow Crust,0.0,89.98985,0.0,09/22/4129 +-0.77826,47.58128,6890,8,17,23,42,17,4.35,15.0,fr,23699,137,973537,1,1,Active Shallow Crust,0.0,89.98985,0.0,08/17/6890 +-0.77826,47.58128,627,12,10,16,29,48,4.35,5.0,fr,23700,12,973545,1,1,Active Shallow Crust,128.8976,89.98277,0.0,12/10/0627 +-0.77826,47.58128,1917,3,9,23,18,5,4.45,5.0,fr,23701,38,973548,1,1,Active Shallow Crust,0.0,89.99004,0.0,03/09/1917 +-0.77826,47.58128,7620,9,22,13,2,4,4.55,15.0,fr,23702,152,973561,1,1,Active Shallow Crust,0.0,89.99005,0.0,09/22/7620 +-0.77826,47.58128,9949,10,10,1,27,50,5.55,27.5,fr,23703,198,973685,1,1,Active Shallow Crust,240.0337,57.99972,0.0,10/10/9949 +4.5363,47.41934,2455,3,22,21,9,43,3.75,5.0,fr,23704,49,973944,1,1,Active Shallow Crust,0.0,89.98916,0.0,03/22/2455 +4.5363,47.41934,3633,10,1,15,8,54,3.95,15.0,fr,23705,72,973972,1,1,Active Shallow Crust,240.0195,58.00541,0.0,10/01/3633 +4.5363,47.41934,4693,12,16,19,27,34,4.55,5.0,fr,23706,93,974040,1,1,Active Shallow Crust,0.0,89.98921,0.0,12/16/4693 +4.5363,47.41934,1905,8,7,11,10,28,4.85,5.0,fr,23707,38,974076,1,1,Active Shallow Crust,0.0,89.9893,0.0,08/07/1905 +4.31061,43.73663,995,1,3,9,15,35,3.55,5.0,fr,23708,19,974400,1,1,Active Shallow Crust,0.0,89.99271,0.0,01/03/0995 +4.31061,43.73663,3740,4,17,3,22,15,3.55,15.0,fr,23709,74,974401,1,1,Active Shallow Crust,0.0,89.99271,0.0,04/17/3740 +4.31061,43.73663,8900,4,9,4,34,37,3.65,5.0,fr,23710,177,974421,1,1,Active Shallow Crust,128.9013,89.96347,0.0,04/09/8900 +4.31061,43.73663,1295,6,15,16,53,26,3.75,5.0,fr,23711,25,974424,1,1,Active Shallow Crust,0.0,89.98843,0.0,06/15/1295 +4.31061,43.73663,505,12,8,19,10,19,4.15,5.0,fr,23712,10,974475,1,1,Active Shallow Crust,240.0084,57.99678,0.0,12/08/0505 +4.31061,43.73663,2818,12,4,7,23,57,4.25,5.0,fr,23713,56,974484,1,1,Active Shallow Crust,0.0,89.99023,0.0,12/04/2818 +4.31061,43.73663,8988,2,19,17,34,51,4.35,15.0,fr,23714,179,974500,1,1,Active Shallow Crust,240.0076,57.99583,0.0,02/19/8988 +4.31061,43.73663,389,7,2,21,52,47,4.55,5.0,fr,23715,7,974526,1,1,Active Shallow Crust,0.0,89.99068,-90.0,07/02/0389 +4.31061,43.73663,3554,5,2,20,20,23,5.05,5.0,fr,23716,71,974583,1,1,Active Shallow Crust,240.0208,57.99715,0.0,05/02/3554 +0.07725,50.94369,8084,10,13,7,13,6,3.55,5.0,fr,23717,161,974880,1,1,Active Shallow Crust,0.0,89.98997,0.0,10/13/8084 +0.07725,50.94369,632,6,27,7,26,13,3.65,27.5,fr,23718,12,974894,1,1,Active Shallow Crust,0.0,89.99,0.0,06/27/0632 +0.07725,50.94369,9793,11,19,14,44,3,3.95,5.0,fr,23719,195,974928,1,1,Active Shallow Crust,0.0,89.98997,0.0,11/19/9793 +0.07725,50.94369,6346,6,1,7,0,16,4.15,15.0,fr,23720,126,974959,1,1,Active Shallow Crust,0.0,89.98998,-90.0,06/01/6346 +0.07725,50.94369,5365,12,28,9,26,46,4.25,5.0,fr,23721,107,974964,1,1,Active Shallow Crust,360.0,89.99002,0.0,12/28/5365 +0.07725,50.94369,7411,11,26,16,44,42,4.75,5.0,fr,23722,148,975024,1,1,Active Shallow Crust,0.0,89.99,0.0,11/26/7411 +0.07725,50.94369,9329,6,23,13,36,32,4.85,5.0,fr,23723,186,975039,1,1,Active Shallow Crust,240.0191,58.00269,0.0,06/23/9329 +1.85459,51.0148,6846,10,15,15,25,23,3.55,5.0,fr,23724,136,975360,1,2,Active Shallow Crust,0.0,89.99049,0.0,10/15/6846 +1.85459,51.0148,1468,12,2,19,49,12,3.55,5.0,fr,23725,29,975360,1,2,Active Shallow Crust,0.0,89.99049,0.0,12/02/1468 +1.85459,51.0148,134,8,31,1,56,23,3.65,5.0,fr,23726,2,975372,1,1,Active Shallow Crust,0.0,89.9901,0.0,08/31/0134 +1.85459,51.0148,3763,10,28,19,37,41,3.75,5.0,fr,23727,75,975384,1,3,Active Shallow Crust,0.0,89.98992,0.0,10/28/3763 +1.85459,51.0148,1322,4,16,5,58,12,3.75,5.0,fr,23728,26,975384,1,3,Active Shallow Crust,0.0,89.98992,0.0,04/16/1322 +1.85459,51.0148,619,10,22,19,49,25,3.75,5.0,fr,23729,12,975384,1,3,Active Shallow Crust,0.0,89.98992,0.0,10/22/0619 +1.85459,51.0148,3412,8,28,4,10,9,3.85,5.0,fr,23730,68,975396,1,1,Active Shallow Crust,0.0,89.98989,0.0,08/28/3412 +1.85459,51.0148,4349,9,14,18,57,40,3.95,5.0,fr,23731,86,975408,1,2,Active Shallow Crust,0.0,89.98999,0.0,09/14/4349 +1.85459,51.0148,96,4,6,10,53,19,3.95,5.0,fr,23732,1,975408,1,2,Active Shallow Crust,0.0,89.98999,0.0,04/06/0096 +1.85459,51.0148,604,1,11,15,46,24,3.95,27.5,fr,23733,12,975419,1,1,Active Shallow Crust,128.8996,89.994,0.0,01/11/0604 +1.85459,51.0148,3999,3,14,17,10,34,4.25,5.0,fr,23734,79,975444,1,1,Active Shallow Crust,0.0,89.99008,0.0,03/14/3999 +1.85459,51.0148,5003,1,20,6,4,13,4.35,15.0,fr,23735,100,975457,1,1,Active Shallow Crust,0.0,89.9899,0.0,01/20/5003 +1.85459,51.0148,5255,7,4,21,4,53,4.45,5.0,fr,23736,105,975468,1,1,Active Shallow Crust,0.0,89.98987,0.0,07/04/5255 +1.85459,51.0148,9051,12,17,18,15,50,4.45,15.0,fr,23737,181,975469,1,1,Active Shallow Crust,0.0,89.98987,0.0,12/17/9051 +1.85459,51.0148,3643,1,16,13,13,52,4.85,27.5,fr,23738,72,975518,1,1,Active Shallow Crust,0.0,89.99006,0.0,01/16/3643 +1.85459,51.0148,8807,11,27,9,55,41,5.05,27.5,fr,23739,176,975542,1,1,Active Shallow Crust,0.0,89.99013,0.0,11/27/8807 +1.85459,51.0148,6573,4,6,5,32,15,5.25,5.0,fr,23740,131,975564,1,1,Active Shallow Crust,0.0,89.98991,0.0,04/06/6573 +2.3378,42.50808,1050,1,8,20,51,39,3.55,5.0,fr,23741,20,975840,1,4,Active Shallow Crust,0.0,89.98885,0.0,01/08/1050 +2.3378,42.50808,3431,2,13,7,23,15,3.55,5.0,fr,23742,68,975840,1,4,Active Shallow Crust,0.0,89.98885,0.0,02/13/3431 +2.3378,42.50808,8255,11,26,17,4,8,3.55,5.0,fr,23743,165,975840,1,4,Active Shallow Crust,0.0,89.98885,0.0,11/26/8255 +2.3378,42.50808,2467,1,4,21,41,55,3.55,5.0,fr,23744,49,975840,1,4,Active Shallow Crust,0.0,89.98885,0.0,01/04/2467 +2.3378,42.50808,5390,5,16,5,45,23,3.55,15.0,fr,23745,107,975841,1,1,Active Shallow Crust,0.0,89.98885,0.0,05/16/5390 +2.3378,42.50808,3344,7,17,22,30,41,3.55,15.0,fr,23746,66,975850,1,1,Active Shallow Crust,128.8962,89.99442,0.0,07/17/3344 +2.3378,42.50808,6337,3,4,2,50,19,3.65,5.0,fr,23747,126,975852,1,1,Active Shallow Crust,0.0,89.99006,0.0,03/04/6337 +2.3378,42.50808,9237,8,16,21,34,28,3.65,15.0,fr,23748,184,975853,1,1,Active Shallow Crust,0.0,89.99006,0.0,08/16/9237 +2.3378,42.50808,1161,5,2,2,16,38,3.65,15.0,fr,23749,23,975856,1,1,Active Shallow Crust,240.0009,58.01251,0.0,05/02/1161 +2.3378,42.50808,4218,5,20,13,11,35,3.65,5.0,fr,23750,84,975858,1,1,Active Shallow Crust,0.0,89.98994,-90.0,05/20/4218 +2.3378,42.50808,6384,5,24,12,43,56,3.75,5.0,fr,23751,127,975864,1,1,Active Shallow Crust,0.0,89.99114,0.0,05/24/6384 +2.3378,42.50808,127,8,13,23,35,32,3.75,15.0,fr,23752,2,975865,1,1,Active Shallow Crust,0.0,89.99114,0.0,08/13/0127 +2.3378,42.50808,4059,2,3,20,38,15,3.75,5.0,fr,23753,81,975873,1,1,Active Shallow Crust,128.8975,89.96742,0.0,02/03/4059 +2.3378,42.50808,3402,2,28,21,6,50,3.85,5.0,fr,23754,68,975876,1,2,Active Shallow Crust,0.0,89.98947,0.0,02/28/3402 +2.3378,42.50808,4717,12,30,8,59,51,3.85,5.0,fr,23755,94,975876,1,2,Active Shallow Crust,0.0,89.98947,0.0,12/30/4717 +2.3378,42.50808,3897,8,29,15,13,36,3.85,5.0,fr,23756,77,975882,1,1,Active Shallow Crust,0.0,89.98935,-90.0,08/29/3897 +2.3378,42.50808,505,9,21,10,55,10,3.95,27.5,fr,23757,10,975896,1,1,Active Shallow Crust,0.0,89.99051,-90.0,09/21/0505 +2.3378,42.50808,1581,11,10,15,15,59,4.15,5.0,fr,23758,31,975912,1,1,Active Shallow Crust,0.0,89.99068,0.0,11/10/1581 +2.3378,42.50808,4869,12,27,20,30,48,4.15,15.0,fr,23759,97,975913,1,1,Active Shallow Crust,0.0,89.99068,0.0,12/27/4869 +2.3378,42.50808,8700,10,18,9,46,39,4.15,27.5,fr,23760,173,975914,1,1,Active Shallow Crust,0.0,89.99068,0.0,10/18/8700 +2.3378,42.50808,6970,10,25,22,20,59,4.15,5.0,fr,23761,139,975915,1,1,Active Shallow Crust,240.008,57.9973,0.0,10/25/6970 +2.3378,42.50808,3289,2,3,21,44,41,4.55,5.0,fr,23762,65,975960,1,2,Active Shallow Crust,0.0,89.98942,0.0,02/03/3289 +2.3378,42.50808,1050,4,1,12,35,14,4.55,5.0,fr,23763,20,975960,1,2,Active Shallow Crust,0.0,89.98942,0.0,04/01/1050 +2.3378,42.50808,1614,8,23,19,50,3,5.45,15.0,fr,23764,32,976072,1,1,Active Shallow Crust,240.0258,57.99793,0.0,08/23/1614 +2.3378,42.50808,475,2,11,16,42,25,5.85,5.0,fr,23765,9,976122,1,1,Active Shallow Crust,0.0,89.98988,-90.0,02/11/0475 +7.12488,45.81282,8999,4,5,19,21,40,3.55,5.0,fr,23766,179,976326,1,1,Active Shallow Crust,0.0,89.99289,-90.0,04/05/8999 +7.12488,45.81282,594,10,31,17,42,24,3.65,5.0,fr,23767,11,976332,1,1,Active Shallow Crust,0.0,89.98747,0.0,10/31/0594 +7.12488,45.81282,9259,1,25,15,25,21,3.65,5.0,fr,23768,185,976338,1,1,Active Shallow Crust,0.0,89.98733,-90.0,01/25/9259 +7.12488,45.81282,7399,2,3,7,52,1,3.75,5.0,fr,23769,147,976344,1,2,Active Shallow Crust,0.0,89.98883,0.0,02/03/7399 +7.12488,45.81282,534,7,11,17,58,55,3.75,5.0,fr,23770,10,976344,1,2,Active Shallow Crust,0.0,89.98883,0.0,07/11/0534 +7.12488,45.81282,1135,1,1,8,12,15,3.75,5.0,fr,23771,22,976350,1,2,Active Shallow Crust,0.0,89.9887,-90.0,01/01/1135 +7.12488,45.81282,3588,12,15,13,11,33,3.75,5.0,fr,23772,71,976350,1,2,Active Shallow Crust,0.0,89.9887,-90.0,12/15/3588 +7.12488,45.81282,1107,1,7,5,36,48,3.85,5.0,fr,23773,22,976356,1,1,Active Shallow Crust,0.0,89.99005,0.0,01/07/1107 +7.12488,45.81282,9524,2,24,4,19,13,3.85,15.0,fr,23774,190,976363,1,1,Active Shallow Crust,0.0,89.98993,-90.0,02/24/9524 +7.12488,45.81282,2416,4,27,12,13,47,3.95,5.0,fr,23775,48,976368,1,2,Active Shallow Crust,0.0,89.99113,0.0,04/27/2416 +7.12488,45.81282,9256,7,2,12,40,56,3.95,5.0,fr,23776,185,976368,1,2,Active Shallow Crust,0.0,89.99113,0.0,07/02/9256 +7.12488,45.81282,7629,4,15,1,23,26,5.95,15.0,fr,23777,152,976609,1,1,Active Shallow Crust,0.0,89.98979,0.0,04/15/7629 +2.12108,45.24319,3476,5,18,16,12,54,3.55,5.0,fr,23778,69,976800,1,2,Active Shallow Crust,0.0,89.98935,0.0,05/18/3476 +2.12108,45.24319,5789,4,25,19,9,58,3.55,5.0,fr,23779,115,976800,1,2,Active Shallow Crust,0.0,89.98935,0.0,04/25/5789 +2.12108,45.24319,4354,4,29,17,7,8,3.55,15.0,fr,23780,87,976804,1,1,Active Shallow Crust,240.0117,57.99862,0.0,04/29/4354 +2.12108,45.24319,1126,9,4,5,52,40,3.55,5.0,fr,23781,22,976806,1,1,Active Shallow Crust,0.0,89.98923,-90.0,09/04/1126 +2.12108,45.24319,1345,6,1,0,30,55,3.65,5.0,fr,23782,26,976812,1,1,Active Shallow Crust,0.0,89.99051,0.0,06/01/1345 +2.12108,45.24319,3212,12,30,19,44,25,3.75,5.0,fr,23783,64,976824,1,1,Active Shallow Crust,0.0,89.98872,0.0,12/30/3212 +2.12108,45.24319,1729,3,9,14,26,12,4.25,5.0,fr,23784,34,976887,1,1,Active Shallow Crust,240.0072,57.99398,0.0,03/09/1729 +2.12108,45.24319,9912,6,9,10,30,21,4.85,5.0,fr,23785,198,976956,1,1,Active Shallow Crust,0.0,89.98967,0.0,06/09/9912 +-2.16205,44.04828,7493,7,31,14,0,20,3.95,27.5,fr,23786,149,977333,1,1,Active Shallow Crust,240.0191,58.00506,0.0,07/31/7493 +6.37971,42.67237,5169,7,22,19,34,46,3.75,5.0,fr,23787,103,977787,1,1,Active Shallow Crust,240.0087,58.01687,0.0,07/22/5169 +6.56364,45.87662,9614,8,6,9,55,0,3.55,5.0,fr,23788,192,978240,1,5,Active Shallow Crust,0.0,89.99298,0.0,08/06/9614 +6.56364,45.87662,3977,4,14,10,43,56,3.55,5.0,fr,23789,79,978240,1,5,Active Shallow Crust,0.0,89.99298,0.0,04/14/3977 +6.56364,45.87662,3265,1,9,6,16,34,3.55,5.0,fr,23790,65,978240,1,5,Active Shallow Crust,0.0,89.99298,0.0,01/09/3265 +6.56364,45.87662,7754,6,2,18,56,53,3.55,5.0,fr,23791,155,978240,1,5,Active Shallow Crust,0.0,89.99298,0.0,06/02/7754 +6.56364,45.87662,939,8,9,7,21,45,3.55,5.0,fr,23792,18,978240,1,5,Active Shallow Crust,0.0,89.99298,0.0,08/09/0939 +6.56364,45.87662,1502,5,13,1,30,45,3.55,15.0,fr,23793,30,978241,1,1,Active Shallow Crust,0.0,89.99298,0.0,05/13/1502 +6.56364,45.87662,8693,3,20,3,48,51,3.55,5.0,fr,23794,173,978249,1,1,Active Shallow Crust,128.8973,89.99298,0.0,03/20/8693 +6.56364,45.87662,4904,4,20,23,28,7,3.65,5.0,fr,23795,98,978252,1,2,Active Shallow Crust,0.0,89.98749,0.0,04/20/4904 +6.56364,45.87662,5455,8,29,19,58,49,3.65,5.0,fr,23796,109,978252,1,2,Active Shallow Crust,0.0,89.98749,0.0,08/29/5455 +6.56364,45.87662,333,6,25,13,11,55,3.65,5.0,fr,23797,6,978258,1,1,Active Shallow Crust,0.0,89.98734,-90.0,06/25/0333 +6.56364,45.87662,5185,5,23,4,23,35,3.75,5.0,fr,23798,103,978264,1,1,Active Shallow Crust,0.0,89.98885,0.0,05/23/5185 +6.56364,45.87662,258,9,12,9,4,37,3.75,27.5,fr,23799,5,978266,1,1,Active Shallow Crust,0.0,89.98885,0.0,09/12/0258 +6.56364,45.87662,6677,10,10,7,6,53,3.75,15.0,fr,23800,133,978271,1,2,Active Shallow Crust,0.0,89.98872,-90.0,10/10/6677 +6.56364,45.87662,1758,3,28,7,17,10,3.75,15.0,fr,23801,35,978271,1,2,Active Shallow Crust,0.0,89.98872,-90.0,03/28/1758 +6.56364,45.87662,1534,7,30,20,57,2,3.75,5.0,fr,23802,30,978273,1,1,Active Shallow Crust,128.8962,89.96748,0.0,07/30/1534 +6.56364,45.87662,9850,9,5,15,25,26,3.95,5.0,fr,23803,196,978288,1,4,Active Shallow Crust,0.0,89.99114,0.0,09/05/9850 +6.56364,45.87662,2740,11,24,21,15,20,3.95,5.0,fr,23804,54,978288,1,4,Active Shallow Crust,0.0,89.99114,0.0,11/24/2740 +6.56364,45.87662,8565,11,12,8,6,28,3.95,5.0,fr,23805,171,978288,1,4,Active Shallow Crust,0.0,89.99114,0.0,11/12/8565 +6.56364,45.87662,9535,12,29,1,18,49,3.95,5.0,fr,23806,190,978288,1,4,Active Shallow Crust,0.0,89.99114,0.0,12/29/9535 +6.56364,45.87662,3405,4,1,12,14,34,3.95,5.0,fr,23807,68,978297,1,2,Active Shallow Crust,128.9,89.99335,0.0,04/01/3405 +6.56364,45.87662,8063,10,23,2,4,45,3.95,5.0,fr,23808,161,978297,1,2,Active Shallow Crust,128.9,89.99335,0.0,10/23/8063 +6.56364,45.87662,2641,10,4,2,8,55,3.95,15.0,fr,23809,52,978298,1,1,Active Shallow Crust,128.9,89.99335,0.0,10/04/2641 +6.56364,45.87662,3470,3,13,4,20,18,4.05,5.0,fr,23810,69,978300,1,1,Active Shallow Crust,0.0,89.98816,0.0,03/13/3470 +6.56364,45.87662,9751,1,18,18,52,59,4.05,15.0,fr,23811,195,978301,1,1,Active Shallow Crust,0.0,89.98816,0.0,01/18/9751 +6.56364,45.87662,1058,9,2,3,40,47,4.05,5.0,fr,23812,21,978309,1,1,Active Shallow Crust,128.891,89.99408,0.0,09/02/1058 +6.56364,45.87662,2769,1,11,2,46,43,4.15,27.5,fr,23813,55,978317,1,1,Active Shallow Crust,240.0084,57.99703,0.0,01/11/2769 +6.56364,45.87662,7598,2,28,9,33,55,4.15,5.0,fr,23814,151,978318,1,1,Active Shallow Crust,0.0,89.98932,-90.0,02/28/7598 +6.56364,45.87662,280,9,25,19,21,10,4.25,5.0,fr,23815,5,978330,1,1,Active Shallow Crust,0.0,89.99049,-90.0,09/25/0280 +6.56364,45.87662,8363,5,22,16,24,22,4.35,5.0,fr,23816,167,978336,1,1,Active Shallow Crust,0.0,89.98882,0.0,05/22/8363 +6.56364,45.87662,7442,4,27,23,1,39,4.55,5.0,fr,23817,148,978360,1,1,Active Shallow Crust,0.0,89.9889,0.0,04/27/7442 +6.56364,45.87662,1502,9,4,9,47,23,4.55,5.0,fr,23818,30,978366,1,1,Active Shallow Crust,0.0,89.99101,-90.0,09/04/1502 +6.56364,45.87662,6280,9,18,10,12,47,4.65,5.0,fr,23819,125,978375,1,1,Active Shallow Crust,240.0106,57.99422,0.0,09/18/6280 +6.56364,45.87662,6666,2,7,15,13,21,4.95,27.5,fr,23820,133,978413,1,1,Active Shallow Crust,240.0118,58.00416,0.0,02/07/6666 +6.56364,45.87662,2129,3,9,6,45,23,5.45,15.0,fr,23821,42,978472,1,1,Active Shallow Crust,240.0284,57.99839,0.0,03/09/2129 +4.38703,44.54085,7420,12,2,21,1,5,3.55,5.0,fr,23822,148,978720,1,2,Active Shallow Crust,0.0,89.99281,0.0,12/02/7420 +4.38703,44.54085,4272,3,4,22,32,37,3.55,5.0,fr,23823,85,978720,1,2,Active Shallow Crust,0.0,89.99281,0.0,03/04/4272 +4.38703,44.54085,7785,5,14,7,51,45,3.55,5.0,fr,23824,155,978729,1,1,Active Shallow Crust,128.8955,89.99641,0.0,05/14/7785 +4.38703,44.54085,3010,3,17,0,17,48,3.65,15.0,fr,23825,60,978736,1,1,Active Shallow Crust,240.0011,58.01265,0.0,03/17/3010 +4.38703,44.54085,6085,10,1,12,10,42,3.75,5.0,fr,23826,121,978744,1,1,Active Shallow Crust,0.0,89.98858,0.0,10/01/6085 +4.38703,44.54085,3889,6,3,6,39,5,3.75,5.0,fr,23827,77,978750,1,1,Active Shallow Crust,0.0,89.98845,-90.0,06/03/3889 +4.38703,44.54085,1066,2,1,8,14,40,3.85,15.0,fr,23828,21,978763,1,1,Active Shallow Crust,0.0,89.98971,-90.0,02/01/1066 +4.38703,44.54085,31,6,20,3,36,14,3.95,15.0,fr,23829,0,978769,1,1,Active Shallow Crust,0.0,89.99093,0.0,06/20/0031 +4.38703,44.54085,3424,6,30,1,48,3,3.95,5.0,fr,23830,68,978774,1,1,Active Shallow Crust,0.0,89.99082,-90.0,06/30/3424 +4.38703,44.54085,1080,2,22,16,54,49,4.05,5.0,fr,23831,21,978780,1,1,Active Shallow Crust,0.0,89.99191,0.0,02/22/1080 +4.38703,44.54085,358,6,29,7,56,46,4.15,5.0,fr,23832,7,978795,1,1,Active Shallow Crust,240.0079,57.99758,0.0,06/29/0358 +4.38703,44.54085,4930,6,21,8,35,12,5.25,5.0,fr,23833,98,978927,1,1,Active Shallow Crust,240.0242,58.00007,0.0,06/21/4930 +-1.16546,49.15867,6572,6,25,10,17,54,3.55,5.0,fr,23834,131,979200,1,2,Active Shallow Crust,0.0,89.9901,0.0,06/25/6572 +-1.16546,49.15867,4857,12,13,11,12,7,3.55,5.0,fr,23835,97,979200,1,2,Active Shallow Crust,0.0,89.9901,0.0,12/13/4857 +-1.16546,49.15867,7870,5,14,18,17,15,3.55,15.0,fr,23836,157,979201,1,1,Active Shallow Crust,0.0,89.9901,0.0,05/14/7870 +-1.16546,49.15867,8761,7,12,23,28,30,3.55,5.0,fr,23837,175,979209,1,1,Active Shallow Crust,128.896,89.99341,0.0,07/12/8761 +-1.16546,49.15867,1076,12,11,13,22,47,3.55,27.5,fr,23838,21,979211,1,1,Active Shallow Crust,128.896,89.99341,0.0,12/11/1076 +-1.16546,49.15867,2999,5,18,14,46,57,3.65,27.5,fr,23839,59,979214,1,1,Active Shallow Crust,0.0,89.98972,0.0,05/18/2999 +-1.16546,49.15867,7436,11,2,14,42,25,3.65,15.0,fr,23840,148,979219,1,1,Active Shallow Crust,0.0,89.98959,-90.0,11/02/7436 +-1.16546,49.15867,8385,1,28,7,41,32,3.75,5.0,fr,23841,167,979224,1,2,Active Shallow Crust,0.0,89.98952,0.0,01/28/8385 +-1.16546,49.15867,5485,12,3,0,2,37,3.75,5.0,fr,23842,109,979224,1,2,Active Shallow Crust,0.0,89.98952,0.0,12/03/5485 +-1.16546,49.15867,8140,9,4,23,21,35,3.75,5.0,fr,23843,162,979227,1,1,Active Shallow Crust,240.0084,58.01779,0.0,09/04/8140 +-1.16546,49.15867,8649,3,9,1,58,47,3.75,5.0,fr,23844,172,979233,1,1,Active Shallow Crust,128.8962,89.9673,0.0,03/09/8649 +-1.16546,49.15867,7113,2,11,1,8,10,3.85,5.0,fr,23845,142,979236,1,2,Active Shallow Crust,0.0,89.98949,0.0,02/11/7113 +-1.16546,49.15867,7856,10,22,19,47,53,3.85,5.0,fr,23846,157,979236,1,2,Active Shallow Crust,0.0,89.98949,0.0,10/22/7856 +-1.16546,49.15867,5700,6,29,22,44,50,3.95,5.0,fr,23847,113,979248,1,2,Active Shallow Crust,0.0,89.9896,0.0,06/29/5700 +-1.16546,49.15867,4082,8,25,17,28,42,3.95,5.0,fr,23848,81,979248,1,2,Active Shallow Crust,0.0,89.9896,0.0,08/25/4082 +-1.16546,49.15867,8447,2,21,20,21,24,3.95,15.0,fr,23849,168,979249,1,1,Active Shallow Crust,0.0,89.9896,0.0,02/21/8447 +-1.16546,49.15867,3308,4,25,3,38,19,3.95,15.0,fr,23850,66,979252,1,1,Active Shallow Crust,240.0203,58.00486,0.0,04/25/3308 +-1.16546,49.15867,6080,2,9,21,3,28,4.05,15.0,fr,23851,121,979261,1,1,Active Shallow Crust,0.0,89.9898,0.0,02/09/6080 +-1.16546,49.15867,3580,12,17,2,31,54,4.05,5.0,fr,23852,71,979263,1,1,Active Shallow Crust,240.0064,58.00595,0.0,12/17/3580 +-1.16546,49.15867,1519,12,15,16,30,49,4.05,15.0,fr,23853,30,979270,1,1,Active Shallow Crust,128.89,89.99351,0.0,12/15/1519 +-1.16546,49.15867,7371,9,9,23,28,15,4.15,5.0,fr,23854,147,979272,1,1,Active Shallow Crust,0.0,89.99008,0.0,09/09/7371 +-1.16546,49.15867,505,10,7,5,13,7,4.65,5.0,fr,23855,10,979332,1,1,Active Shallow Crust,0.0,89.98978,0.0,10/07/0505 +-1.16546,49.15867,1417,2,27,3,6,10,5.55,15.0,fr,23856,28,979447,1,1,Active Shallow Crust,0.0,89.98999,-90.0,02/27/1417 +9.37112,48.50391,5852,10,8,8,9,5,3.55,15.0,fr,23857,117,979681,1,3,Active Shallow Crust,0.0,89.98664,0.0,10/08/5852 +9.37112,48.50391,830,2,3,0,30,39,3.55,15.0,fr,23858,16,979681,1,3,Active Shallow Crust,0.0,89.98664,0.0,02/03/0830 +9.37112,48.50391,2500,5,1,1,42,31,3.55,15.0,fr,23859,49,979681,1,3,Active Shallow Crust,0.0,89.98664,0.0,05/01/2500 +9.37112,48.50391,363,12,4,12,33,6,3.55,15.0,fr,23860,7,979684,1,1,Active Shallow Crust,240.0127,57.99584,0.0,12/04/0363 +9.37112,48.50391,4328,5,17,21,39,45,3.55,5.0,fr,23861,86,979686,1,1,Active Shallow Crust,0.0,89.98648,-90.0,05/17/4328 +9.37112,48.50391,9254,12,1,7,12,35,3.65,5.0,fr,23862,185,979692,1,3,Active Shallow Crust,0.0,89.98809,0.0,12/01/9254 +9.37112,48.50391,1733,7,4,15,49,22,3.65,5.0,fr,23863,34,979692,1,3,Active Shallow Crust,0.0,89.98809,0.0,07/04/1733 +9.37112,48.50391,7042,1,8,17,20,46,3.65,5.0,fr,23864,140,979692,1,3,Active Shallow Crust,0.0,89.98809,0.0,01/08/7042 +9.37112,48.50391,5286,12,28,14,3,26,3.65,5.0,fr,23865,105,979698,1,1,Active Shallow Crust,0.0,89.98795,-90.0,12/28/5286 +9.37112,48.50391,9003,2,17,4,45,25,3.75,5.0,fr,23866,180,979704,1,3,Active Shallow Crust,0.0,89.98939,0.0,02/17/9003 +9.37112,48.50391,1653,11,26,9,3,50,3.75,5.0,fr,23867,33,979704,1,3,Active Shallow Crust,0.0,89.98939,0.0,11/26/1653 +9.37112,48.50391,6801,11,26,9,21,54,3.75,5.0,fr,23868,136,979704,1,3,Active Shallow Crust,0.0,89.98939,0.0,11/26/6801 +9.37112,48.50391,5164,6,12,13,45,58,3.75,15.0,fr,23869,103,979714,1,1,Active Shallow Crust,128.8941,89.96752,0.0,06/12/5164 +9.37112,48.50391,5741,2,25,19,14,15,3.85,5.0,fr,23870,114,979716,1,1,Active Shallow Crust,0.0,89.99054,0.0,02/25/5741 +9.37112,48.50391,531,4,22,20,4,53,3.85,15.0,fr,23871,10,979717,1,1,Active Shallow Crust,0.0,89.99054,0.0,04/22/0531 +9.37112,48.50391,310,10,16,12,17,7,3.85,27.5,fr,23872,6,979718,1,1,Active Shallow Crust,0.0,89.99054,0.0,10/16/0310 +9.37112,48.50391,9017,6,29,15,2,28,4.15,5.0,fr,23873,180,979755,1,1,Active Shallow Crust,240.0082,57.99785,0.0,06/29/9017 +9.37112,48.50391,4871,12,5,19,52,42,4.55,27.5,fr,23874,97,979805,1,1,Active Shallow Crust,240.0098,57.99781,0.0,12/05/4871 +4.85317,42.34235,3147,7,25,18,35,38,3.85,15.0,fr,23875,62,980206,1,1,Active Shallow Crust,128.896,89.99472,0.0,07/25/3147 +4.85317,42.34235,8774,10,25,3,21,23,4.55,5.0,fr,23876,175,980280,1,1,Active Shallow Crust,0.0,89.99057,0.0,10/25/8774 +-1.53618,48.86557,1266,5,25,4,53,19,3.55,5.0,fr,23877,25,980640,1,1,Active Shallow Crust,0.0,89.99005,0.0,05/25/1266 +-1.53618,48.86557,8297,8,13,0,40,26,3.55,5.0,fr,23878,165,980646,1,1,Active Shallow Crust,0.0,89.98994,-90.0,08/13/8297 +-1.53618,48.86557,7174,6,13,3,12,20,3.55,5.0,fr,23879,143,980649,1,1,Active Shallow Crust,128.8962,89.99337,0.0,06/13/7174 +-1.53618,48.86557,9942,5,12,10,46,59,3.65,5.0,fr,23880,198,980652,1,1,Active Shallow Crust,0.0,89.98965,0.0,05/12/9942 +-1.53618,48.86557,4365,4,3,23,32,6,3.65,15.0,fr,23881,87,980653,1,1,Active Shallow Crust,0.0,89.98965,0.0,04/03/4365 +-1.53618,48.86557,6109,6,28,4,24,50,3.65,15.0,fr,23882,122,980656,1,1,Active Shallow Crust,240.0013,58.01299,0.0,06/28/6109 +-1.53618,48.86557,7558,6,12,18,47,20,3.65,15.0,fr,23883,151,980662,1,1,Active Shallow Crust,128.9004,89.96344,0.0,06/12/7558 +-1.53618,48.86557,4508,6,24,1,58,49,3.75,5.0,fr,23884,90,980664,1,1,Active Shallow Crust,0.0,89.98946,0.0,06/24/4508 +-1.53618,48.86557,4272,1,26,7,19,2,3.75,15.0,fr,23885,85,980671,1,1,Active Shallow Crust,0.0,89.98934,-90.0,01/26/4272 +-1.53618,48.86557,1409,6,30,12,13,42,3.85,5.0,fr,23886,28,980676,1,1,Active Shallow Crust,0.0,89.98943,0.0,06/30/1409 +-1.53618,48.86557,816,1,20,23,8,43,3.95,5.0,fr,23887,16,980688,1,2,Active Shallow Crust,0.0,89.98953,0.0,01/20/0816 +-1.53618,48.86557,4334,5,20,20,11,59,3.95,5.0,fr,23888,86,980688,1,2,Active Shallow Crust,0.0,89.98953,0.0,05/20/4334 +-1.53618,48.86557,6670,7,28,6,7,47,4.05,5.0,fr,23889,133,980700,1,1,Active Shallow Crust,0.0,89.98974,0.0,07/28/6670 +-1.53618,48.86557,4069,1,23,16,53,19,4.05,27.5,fr,23890,81,980702,1,1,Active Shallow Crust,0.0,89.98974,0.0,01/23/4069 +-1.53618,48.86557,4770,1,31,21,19,13,4.05,5.0,fr,23891,95,980703,1,1,Active Shallow Crust,240.0064,58.0059,0.0,01/31/4770 +-1.53618,48.86557,6260,6,24,10,59,41,4.55,5.0,fr,23892,125,980769,1,1,Active Shallow Crust,128.8933,89.98578,0.0,06/24/6260 +-1.53618,48.86557,8997,7,20,8,3,37,4.95,5.0,fr,23893,179,980811,1,1,Active Shallow Crust,240.013,58.00468,0.0,07/20/8997 +-1.53618,48.86557,2312,6,11,10,35,50,5.45,5.0,fr,23894,46,980868,1,1,Active Shallow Crust,0.0,89.98994,0.0,06/11/2312 +7.62112,50.20615,8221,5,10,6,51,20,3.55,5.0,fr,23895,164,981120,1,2,Active Shallow Crust,0.0,89.98709,0.0,05/10/8221 +7.62112,50.20615,8971,6,29,4,49,10,3.55,5.0,fr,23896,179,981120,1,2,Active Shallow Crust,0.0,89.98709,0.0,06/29/8971 +7.62112,50.20615,464,3,16,5,57,0,3.55,15.0,fr,23897,9,981121,1,1,Active Shallow Crust,0.0,89.98709,0.0,03/16/0464 +7.62112,50.20615,9033,9,6,22,27,15,3.55,5.0,fr,23898,180,981126,1,1,Active Shallow Crust,0.0,89.98695,-90.0,09/06/9033 +7.62112,50.20615,9899,5,17,12,17,11,3.55,5.0,fr,23899,197,981129,1,1,Active Shallow Crust,128.895,89.99677,0.0,05/17/9899 +7.62112,50.20615,8849,2,13,21,52,42,3.55,15.0,fr,23900,176,981130,1,1,Active Shallow Crust,128.895,89.99677,0.0,02/13/8849 +7.62112,50.20615,1874,12,18,4,10,11,3.65,5.0,fr,23901,37,981132,1,5,Active Shallow Crust,0.0,89.98849,0.0,12/18/1874 +7.62112,50.20615,7138,10,12,11,53,9,3.65,5.0,fr,23902,142,981132,1,5,Active Shallow Crust,0.0,89.98849,0.0,10/12/7138 +7.62112,50.20615,3240,10,5,12,41,10,3.65,5.0,fr,23903,64,981132,1,5,Active Shallow Crust,0.0,89.98849,0.0,10/05/3240 +7.62112,50.20615,1250,7,20,17,49,35,3.65,5.0,fr,23904,24,981132,1,5,Active Shallow Crust,0.0,89.98849,0.0,07/20/1250 +7.62112,50.20615,958,3,16,11,0,37,3.65,5.0,fr,23905,19,981132,1,5,Active Shallow Crust,0.0,89.98849,0.0,03/16/0958 +7.62112,50.20615,5352,1,30,2,2,31,3.65,15.0,fr,23906,107,981133,1,1,Active Shallow Crust,0.0,89.98849,0.0,01/30/5352 +7.62112,50.20615,3195,3,3,15,43,41,3.65,5.0,fr,23907,63,981135,1,1,Active Shallow Crust,240.0013,58.0134,0.0,03/03/3195 +7.62112,50.20615,8997,9,16,3,3,28,3.65,5.0,fr,23908,179,981138,1,1,Active Shallow Crust,0.0,89.98837,-90.0,09/16/8997 +7.62112,50.20615,2115,5,11,20,51,53,3.75,5.0,fr,23909,42,981144,1,1,Active Shallow Crust,0.0,89.98975,0.0,05/11/2115 +7.62112,50.20615,3918,7,14,16,12,24,3.85,5.0,fr,23910,78,981156,1,3,Active Shallow Crust,0.0,89.99086,0.0,07/14/3918 +7.62112,50.20615,2667,3,22,9,56,45,3.85,5.0,fr,23911,53,981156,1,3,Active Shallow Crust,0.0,89.99086,0.0,03/22/2667 +7.62112,50.20615,6670,4,26,12,47,21,3.85,5.0,fr,23912,133,981156,1,3,Active Shallow Crust,0.0,89.99086,0.0,04/26/6670 +7.62112,50.20615,3495,1,22,22,37,44,3.85,15.0,fr,23913,69,981157,1,1,Active Shallow Crust,0.0,89.99086,0.0,01/22/3495 +7.62112,50.20615,1916,3,13,23,18,15,3.95,5.0,fr,23914,38,981168,1,4,Active Shallow Crust,0.0,89.99185,0.0,03/13/1916 +7.62112,50.20615,5013,7,11,22,41,3,3.95,5.0,fr,23915,100,981168,1,4,Active Shallow Crust,0.0,89.99185,0.0,07/11/5013 +7.62112,50.20615,7950,4,14,4,8,48,3.95,5.0,fr,23916,158,981168,1,4,Active Shallow Crust,0.0,89.99185,0.0,04/14/7950 +7.62112,50.20615,3301,2,10,16,29,16,3.95,5.0,fr,23917,66,981168,1,4,Active Shallow Crust,0.0,89.99185,0.0,02/10/3301 +7.62112,50.20615,8978,5,24,8,33,56,3.95,5.0,fr,23918,179,981177,1,1,Active Shallow Crust,128.8997,89.99389,0.0,05/24/8978 +7.62112,50.20615,6168,5,31,1,23,57,4.05,5.0,fr,23919,123,981180,1,2,Active Shallow Crust,0.0,89.98911,0.0,05/31/6168 +7.62112,50.20615,3721,2,18,15,36,40,4.05,5.0,fr,23920,74,981180,1,2,Active Shallow Crust,0.0,89.98911,0.0,02/18/3721 +7.62112,50.20615,9602,11,7,16,30,16,4.05,15.0,fr,23921,192,981181,1,1,Active Shallow Crust,0.0,89.98911,0.0,11/07/9602 +7.62112,50.20615,1967,6,23,1,40,30,4.05,27.5,fr,23922,39,981182,1,1,Active Shallow Crust,0.0,89.98911,0.0,06/23/1967 +7.62112,50.20615,9728,10,18,3,22,7,4.15,15.0,fr,23923,194,981193,1,1,Active Shallow Crust,0.0,89.9903,0.0,10/18/9728 +7.62112,50.20615,796,4,29,13,15,54,4.15,5.0,fr,23924,15,981195,1,3,Active Shallow Crust,240.0088,57.99739,0.0,04/29/0796 +7.62112,50.20615,4031,1,22,1,40,41,4.15,5.0,fr,23925,80,981195,1,3,Active Shallow Crust,240.0088,57.99739,0.0,01/22/4031 +7.62112,50.20615,1753,3,21,15,57,57,4.15,5.0,fr,23926,35,981195,1,3,Active Shallow Crust,240.0088,57.99739,0.0,03/21/1753 +7.62112,50.20615,8466,9,2,5,45,50,4.35,5.0,fr,23927,169,981222,1,1,Active Shallow Crust,0.0,89.9896,-90.0,09/02/8466 +7.62112,50.20615,9077,10,25,23,16,12,4.55,27.5,fr,23928,181,981242,1,1,Active Shallow Crust,0.0,89.98979,0.0,10/25/9077 +7.62112,50.20615,9501,7,8,8,7,26,4.55,5.0,fr,23929,190,981246,1,1,Active Shallow Crust,0.0,89.98968,-90.0,07/08/9501 +7.62112,50.20615,5529,6,23,23,50,39,4.75,5.0,fr,23930,110,981270,1,1,Active Shallow Crust,0.0,89.99016,-90.0,06/23/5529 +3.04743,43.15193,692,1,15,13,7,39,3.65,5.0,fr,23931,13,981612,1,2,Active Shallow Crust,0.0,89.99017,0.0,01/15/0692 +3.04743,43.15193,8491,9,30,12,33,57,3.65,5.0,fr,23932,169,981612,1,2,Active Shallow Crust,0.0,89.99017,0.0,09/30/8491 +3.04743,43.15193,3349,9,6,10,11,23,3.65,15.0,fr,23933,66,981613,1,1,Active Shallow Crust,0.0,89.99017,0.0,09/06/3349 +3.04743,43.15193,2383,1,21,7,44,31,3.85,5.0,fr,23934,47,981636,1,1,Active Shallow Crust,0.0,89.98959,0.0,01/21/2383 +3.04743,43.15193,550,6,13,23,17,16,4.15,27.5,fr,23935,10,981677,1,1,Active Shallow Crust,240.0077,57.99715,0.0,06/13/0550 +3.04743,43.15193,5307,7,25,1,35,28,4.95,5.0,fr,23936,106,981768,1,1,Active Shallow Crust,0.0,89.98972,0.0,07/25/5307 +-1.58738,46.02604,6212,2,5,22,31,13,3.55,5.0,fr,23937,124,982080,1,2,Active Shallow Crust,0.0,89.98949,0.0,02/05/6212 +-1.58738,46.02604,2628,10,29,18,57,29,3.55,5.0,fr,23938,52,982080,1,2,Active Shallow Crust,0.0,89.98949,0.0,10/29/2628 +-1.58738,46.02604,6961,8,22,0,29,36,3.65,5.0,fr,23939,139,982092,1,1,Active Shallow Crust,0.0,89.99064,0.0,08/22/6961 +-1.58738,46.02604,30,8,3,14,20,36,3.65,15.0,fr,23940,0,982093,1,1,Active Shallow Crust,0.0,89.99064,0.0,08/03/0030 +-1.58738,46.02604,4754,6,25,8,27,41,3.65,27.5,fr,23941,95,982100,1,1,Active Shallow Crust,0.0,89.99053,-90.0,06/25/4754 +-1.58738,46.02604,794,9,15,23,9,25,3.75,5.0,fr,23942,15,982104,1,1,Active Shallow Crust,0.0,89.99026,0.0,09/15/0794 +-1.58738,46.02604,6479,3,27,13,17,7,3.75,5.0,fr,23943,129,982107,1,1,Active Shallow Crust,240.0085,58.01753,0.0,03/27/6479 +-1.58738,46.02604,4419,2,24,21,2,15,3.85,5.0,fr,23944,88,982116,1,2,Active Shallow Crust,0.0,89.99009,0.0,02/24/4419 +-1.58738,46.02604,7384,2,9,15,20,1,3.85,5.0,fr,23945,147,982116,1,2,Active Shallow Crust,0.0,89.99009,0.0,02/09/7384 +-1.58738,46.02604,4790,6,17,1,30,41,3.85,5.0,fr,23946,95,982119,1,2,Active Shallow Crust,240.0109,57.99785,0.0,06/17/4790 +-1.58738,46.02604,1206,7,17,10,34,24,3.85,5.0,fr,23947,24,982119,1,2,Active Shallow Crust,240.0109,57.99785,0.0,07/17/1206 +-1.58738,46.02604,9212,6,13,0,2,52,3.95,5.0,fr,23948,184,982128,1,1,Active Shallow Crust,0.0,89.99006,0.0,06/13/9212 +-1.58738,46.02604,5218,11,18,21,19,10,3.95,15.0,fr,23949,104,982135,1,1,Active Shallow Crust,0.0,89.98994,-90.0,11/18/5218 +-1.58738,46.02604,1273,3,20,20,36,43,3.95,5.0,fr,23950,25,982137,1,1,Active Shallow Crust,128.9004,89.99338,0.0,03/20/1273 +-1.58738,46.02604,9861,5,26,1,2,11,4.15,5.0,fr,23951,197,982152,1,1,Active Shallow Crust,0.0,89.99035,0.0,05/26/9861 +-1.58738,46.02604,7878,8,5,16,32,23,4.15,5.0,fr,23952,157,982158,1,1,Active Shallow Crust,0.0,89.99023,-90.0,08/05/7878 +-1.58738,46.02604,128,6,13,12,30,20,4.65,5.0,fr,23953,2,982212,1,2,Active Shallow Crust,0.0,89.99014,0.0,06/13/0128 +-1.58738,46.02604,2487,2,7,2,11,17,4.65,5.0,fr,23954,49,982212,1,2,Active Shallow Crust,0.0,89.99014,0.0,02/07/2487 +-1.58738,46.02604,7550,7,4,20,2,45,4.65,5.0,fr,23955,150,982215,1,1,Active Shallow Crust,240.0106,57.9943,0.0,07/04/7550 +-1.58738,46.02604,7781,8,13,8,4,12,5.15,5.0,fr,23956,155,982272,1,1,Active Shallow Crust,0.0,89.99001,0.0,08/13/7781 +5.05792,43.04028,4685,4,17,7,10,43,3.65,5.0,fr,23957,93,982575,1,1,Active Shallow Crust,240.0013,58.01189,0.0,04/17/4685 +5.05792,43.04028,3059,12,8,13,5,47,4.05,5.0,fr,23958,61,982620,1,1,Active Shallow Crust,0.0,89.99171,0.0,12/08/3059 +5.05792,43.04028,6901,1,27,8,7,31,4.05,15.0,fr,23959,138,982621,1,1,Active Shallow Crust,0.0,89.99171,0.0,01/27/6901 +-1.61468,44.38139,5470,2,3,20,38,16,3.65,5.0,fr,23960,109,983052,1,1,Active Shallow Crust,0.0,89.99036,0.0,02/03/5470 +4.4863,48.30314,16,4,25,3,45,44,3.65,5.0,fr,23961,0,983532,1,1,Active Shallow Crust,0.0,89.98804,0.0,04/25/0016 +4.4863,48.30314,5794,7,31,2,17,2,3.75,27.5,fr,23962,115,983552,1,1,Active Shallow Crust,0.0,89.98922,-90.0,07/31/5794 +4.4863,48.30314,6585,2,16,18,20,26,3.85,27.5,fr,23963,131,983558,1,1,Active Shallow Crust,0.0,89.9905,0.0,02/16/6585 +7.80141,44.04105,1250,6,2,10,31,31,3.55,5.0,fr,23964,24,984000,1,2,Active Shallow Crust,0.0,89.99275,0.0,06/02/1250 +7.80141,44.04105,9654,2,27,3,2,23,3.55,5.0,fr,23965,193,984000,1,2,Active Shallow Crust,0.0,89.99275,0.0,02/27/9654 +7.80141,44.04105,9755,12,1,4,11,19,3.65,5.0,fr,23966,195,984012,1,2,Active Shallow Crust,0.0,89.98708,0.0,12/01/9755 +7.80141,44.04105,3286,7,26,13,47,31,3.65,5.0,fr,23967,65,984012,1,2,Active Shallow Crust,0.0,89.98708,0.0,07/26/3286 +7.80141,44.04105,7808,2,8,14,42,19,3.65,5.0,fr,23968,156,984015,1,1,Active Shallow Crust,240.0015,58.01242,0.0,02/08/7808 +7.80141,44.04105,6847,3,30,15,47,30,3.65,15.0,fr,23969,136,984016,1,1,Active Shallow Crust,240.0015,58.01242,0.0,03/30/6847 +7.80141,44.04105,5313,9,3,22,23,57,3.75,5.0,fr,23970,106,984024,1,2,Active Shallow Crust,0.0,89.98849,0.0,09/03/5313 +7.80141,44.04105,5271,4,17,11,48,55,3.75,5.0,fr,23971,105,984024,1,2,Active Shallow Crust,0.0,89.98849,0.0,04/17/5271 +7.80141,44.04105,1790,5,27,19,18,12,3.85,5.0,fr,23972,35,984045,1,1,Active Shallow Crust,128.8961,89.99487,0.0,05/27/1790 +7.80141,44.04105,1013,9,19,20,22,12,3.95,27.5,fr,23973,20,984050,1,1,Active Shallow Crust,0.0,89.99085,0.0,09/19/1013 +7.80141,44.04105,1483,7,24,20,6,6,4.05,5.0,fr,23974,29,984060,1,1,Active Shallow Crust,0.0,89.99184,0.0,07/24/1483 +7.80141,44.04105,7878,8,16,13,23,4,4.05,15.0,fr,23975,157,984061,1,1,Active Shallow Crust,0.0,89.99184,0.0,08/16/7878 +7.80141,44.04105,7237,11,27,3,19,39,4.15,5.0,fr,23976,144,984072,1,1,Active Shallow Crust,0.0,89.9891,0.0,11/27/7237 +7.80141,44.04105,6210,3,20,2,29,6,4.35,5.0,fr,23977,124,984099,1,1,Active Shallow Crust,240.0074,57.99622,0.0,03/20/6210 +7.80141,44.04105,9506,11,10,6,48,56,4.45,5.0,fr,23978,190,984108,1,1,Active Shallow Crust,0.0,89.98971,0.0,11/10/9506 +-0.39272,42.58328,1182,11,27,4,26,21,3.55,27.5,fr,23979,23,984482,1,2,Active Shallow Crust,0.0,89.98979,0.0,11/27/1182 +-0.39272,42.58328,2578,4,23,17,26,17,3.55,27.5,fr,23980,51,984482,1,2,Active Shallow Crust,0.0,89.98979,0.0,04/23/2578 +-0.39272,42.58328,6357,7,24,16,48,59,3.75,5.0,fr,23981,127,984510,1,1,Active Shallow Crust,0.0,89.98993,-90.0,07/24/6357 +-0.39272,42.58328,1701,4,15,11,0,19,5.75,5.0,fr,23982,34,984750,1,1,Active Shallow Crust,0.0,89.99001,-90.0,04/15/1701 +1.86989,45.48628,7602,2,7,3,44,54,3.55,5.0,fr,23983,152,984960,1,2,Active Shallow Crust,0.0,89.9894,0.0,02/07/7602 +1.86989,45.48628,7324,10,16,10,6,42,3.55,5.0,fr,23984,146,984960,1,2,Active Shallow Crust,0.0,89.9894,0.0,10/16/7324 +1.86989,45.48628,7124,6,17,13,16,47,3.65,5.0,fr,23985,142,984972,1,1,Active Shallow Crust,0.0,89.99055,0.0,06/17/7124 +1.86989,45.48628,9879,9,20,6,41,12,3.85,5.0,fr,23986,197,984996,1,1,Active Shallow Crust,0.0,89.98999,0.0,09/20/9879 +1.86989,45.48628,171,2,13,7,30,38,3.85,15.0,fr,23987,3,985000,1,1,Active Shallow Crust,240.0105,57.99789,0.0,02/13/0171 +1.86989,45.48628,8613,1,29,9,36,22,4.25,5.0,fr,23988,172,985050,1,1,Active Shallow Crust,0.0,89.98962,-90.0,01/29/8613 +0.15818,51.07778,9209,8,10,10,12,7,3.85,5.0,fr,23989,184,985482,1,1,Active Shallow Crust,0.0,89.98994,-90.0,08/10/9209 +0.15818,51.07778,9474,1,9,5,10,27,4.45,5.0,fr,23990,189,985548,1,1,Active Shallow Crust,0.0,89.99002,0.0,01/09/9474 +7.49587,47.92422,872,1,7,22,27,9,3.55,5.0,fr,23991,17,985920,1,3,Active Shallow Crust,0.0,89.99324,0.0,01/07/0872 +7.49587,47.92422,4884,3,12,8,7,42,3.55,5.0,fr,23992,97,985920,1,3,Active Shallow Crust,0.0,89.99324,0.0,03/12/4884 +7.49587,47.92422,2309,5,31,5,14,31,3.55,5.0,fr,23993,46,985920,1,3,Active Shallow Crust,0.0,89.99324,0.0,05/31/2309 +7.49587,47.92422,4161,12,1,6,17,57,3.55,27.5,fr,23994,83,985922,1,1,Active Shallow Crust,0.0,89.99324,0.0,12/01/4161 +7.49587,47.92422,5230,9,24,17,3,19,3.55,5.0,fr,23995,104,985923,1,2,Active Shallow Crust,240.0113,57.99845,0.0,09/24/5230 +7.49587,47.92422,2738,11,16,6,53,58,3.55,5.0,fr,23996,54,985923,1,2,Active Shallow Crust,240.0113,57.99845,0.0,11/16/2738 +7.49587,47.92422,2315,10,4,6,14,16,3.65,5.0,fr,23997,46,985932,1,1,Active Shallow Crust,0.0,89.98795,0.0,10/04/2315 +7.49587,47.92422,4353,2,14,13,6,50,3.65,15.0,fr,23998,87,985933,1,1,Active Shallow Crust,0.0,89.98795,0.0,02/14/4353 +7.49587,47.92422,6398,12,30,14,52,51,3.65,5.0,fr,23999,127,985935,1,2,Active Shallow Crust,240.0004,58.01344,0.0,12/30/6398 +7.49587,47.92422,6714,12,28,17,23,20,3.65,5.0,fr,24000,134,985935,1,2,Active Shallow Crust,240.0004,58.01344,0.0,12/28/6714 +7.49587,47.92422,6544,1,23,20,41,56,3.65,5.0,fr,24001,130,985941,1,1,Active Shallow Crust,128.8994,89.96355,0.0,01/23/6544 +7.49587,47.92422,8212,1,29,3,14,22,3.75,5.0,fr,24002,164,985944,1,4,Active Shallow Crust,0.0,89.98927,0.0,01/29/8212 +7.49587,47.92422,7218,8,22,22,2,21,3.75,5.0,fr,24003,144,985944,1,4,Active Shallow Crust,0.0,89.98927,0.0,08/22/7218 +7.49587,47.92422,4783,10,23,3,22,48,3.75,5.0,fr,24004,95,985944,1,4,Active Shallow Crust,0.0,89.98927,0.0,10/23/4783 +7.49587,47.92422,6564,10,26,8,59,41,3.75,5.0,fr,24005,131,985944,1,4,Active Shallow Crust,0.0,89.98927,0.0,10/26/6564 +7.49587,47.92422,8305,10,26,4,42,33,3.75,15.0,fr,24006,166,985945,1,1,Active Shallow Crust,0.0,89.98927,0.0,10/26/8305 +7.49587,47.92422,3898,2,17,23,6,40,3.75,5.0,fr,24007,77,985947,1,1,Active Shallow Crust,240.0082,58.01818,0.0,02/17/3898 +7.49587,47.92422,2424,9,12,18,1,32,3.75,5.0,fr,24008,48,985950,1,1,Active Shallow Crust,0.0,89.98914,-90.0,09/12/2424 +7.49587,47.92422,1523,9,15,3,32,44,3.85,5.0,fr,24009,30,985956,1,4,Active Shallow Crust,0.0,89.99043,0.0,09/15/1523 +7.49587,47.92422,2574,2,22,1,17,12,3.85,5.0,fr,24010,51,985956,1,4,Active Shallow Crust,0.0,89.99043,0.0,02/22/2574 +7.49587,47.92422,1274,3,12,10,41,35,3.85,5.0,fr,24011,25,985956,1,4,Active Shallow Crust,0.0,89.99043,0.0,03/12/1274 +7.49587,47.92422,7440,2,3,15,58,29,3.85,5.0,fr,24012,148,985956,1,4,Active Shallow Crust,0.0,89.99043,0.0,02/03/7440 +7.49587,47.92422,8444,6,10,2,34,20,3.95,5.0,fr,24013,168,985968,1,1,Active Shallow Crust,0.0,89.99147,0.0,06/10/8444 +7.49587,47.92422,2001,7,20,19,59,3,3.95,27.5,fr,24014,40,985970,1,1,Active Shallow Crust,0.0,89.99147,0.0,07/20/2001 +7.49587,47.92422,7001,12,17,8,38,53,3.95,5.0,fr,24015,140,985971,1,1,Active Shallow Crust,240.0195,58.00501,0.0,12/17/7001 +7.49587,47.92422,8290,6,14,3,14,20,3.95,15.0,fr,24016,165,985972,1,1,Active Shallow Crust,240.0195,58.00501,0.0,06/14/8290 +7.49587,47.92422,2285,3,13,0,0,9,4.05,15.0,fr,24017,45,985981,1,2,Active Shallow Crust,0.0,89.9886,0.0,03/13/2285 +7.49587,47.92422,5740,12,30,14,25,29,4.05,15.0,fr,24018,114,985981,1,2,Active Shallow Crust,0.0,89.9886,0.0,12/30/5740 +7.49587,47.92422,5268,3,13,1,32,35,4.15,5.0,fr,24019,105,985992,1,4,Active Shallow Crust,0.0,89.98984,0.0,03/13/5268 +7.49587,47.92422,8599,12,26,6,40,58,4.15,5.0,fr,24020,171,985992,1,4,Active Shallow Crust,0.0,89.98984,0.0,12/26/8599 +7.49587,47.92422,8062,2,8,17,4,5,4.15,5.0,fr,24021,161,985992,1,4,Active Shallow Crust,0.0,89.98984,0.0,02/08/8062 +7.49587,47.92422,9205,2,14,14,24,20,4.15,5.0,fr,24022,184,985992,1,4,Active Shallow Crust,0.0,89.98984,0.0,02/14/9205 +7.49587,47.92422,5473,11,2,15,23,35,4.15,15.0,fr,24023,109,985993,1,1,Active Shallow Crust,0.0,89.98984,0.0,11/02/5473 +7.49587,47.92422,5347,12,19,2,31,38,4.15,15.0,fr,24024,106,986002,1,1,Active Shallow Crust,128.897,89.99323,0.0,12/19/5347 +7.49587,47.92422,5374,5,23,2,8,51,4.25,5.0,fr,24025,107,986004,1,1,Active Shallow Crust,0.0,89.99094,0.0,05/23/5374 +7.49587,47.92422,4076,11,2,23,58,27,4.25,15.0,fr,24026,81,986008,1,1,Active Shallow Crust,240.0082,57.9937,0.0,11/02/4076 +7.49587,47.92422,3665,11,12,6,24,3,4.25,5.0,fr,24027,73,986010,1,1,Active Shallow Crust,0.0,89.99084,-90.0,11/12/3665 +7.49587,47.92422,9508,8,20,16,36,19,4.35,5.0,fr,24028,190,986019,1,1,Active Shallow Crust,240.0087,57.99627,0.0,08/20/9508 +7.49587,47.92422,7308,6,12,7,25,13,4.45,15.0,fr,24029,146,986029,1,1,Active Shallow Crust,0.0,89.99041,0.0,06/12/7308 +7.49587,47.92422,2877,9,23,18,40,53,4.75,15.0,fr,24030,57,986065,1,1,Active Shallow Crust,0.0,89.98981,0.0,09/23/2877 +1.63377,51.00744,9458,11,28,4,59,30,3.55,5.0,fr,24031,189,986400,1,4,Active Shallow Crust,0.0,89.99049,0.0,11/28/9458 +1.63377,51.00744,3625,5,19,6,43,20,3.55,5.0,fr,24032,72,986400,1,4,Active Shallow Crust,0.0,89.99049,0.0,05/19/3625 +1.63377,51.00744,9021,10,16,18,0,7,3.55,5.0,fr,24033,180,986400,1,4,Active Shallow Crust,0.0,89.99049,0.0,10/16/9021 +1.63377,51.00744,4751,4,2,23,49,38,3.55,5.0,fr,24034,95,986400,1,4,Active Shallow Crust,0.0,89.99049,0.0,04/02/4751 +1.63377,51.00744,8739,9,8,7,13,10,3.55,5.0,fr,24035,174,986406,1,1,Active Shallow Crust,0.0,89.99037,-90.0,09/08/8739 +1.63377,51.00744,7953,12,2,21,51,29,3.55,5.0,fr,24036,159,986409,1,1,Active Shallow Crust,128.8956,89.99365,0.0,12/02/7953 +1.63377,51.00744,279,10,10,1,29,52,3.65,5.0,fr,24037,5,986412,1,1,Active Shallow Crust,0.0,89.9901,0.0,10/10/0279 +1.63377,51.00744,4472,11,16,7,27,26,3.65,5.0,fr,24038,89,986421,1,1,Active Shallow Crust,128.8999,89.96349,0.0,11/16/4472 +1.63377,51.00744,8705,5,7,13,38,38,3.75,15.0,fr,24039,174,986425,1,2,Active Shallow Crust,0.0,89.98992,0.0,05/07/8705 +1.63377,51.00744,5223,1,27,9,26,21,3.75,15.0,fr,24040,104,986425,1,2,Active Shallow Crust,0.0,89.98992,0.0,01/27/5223 +1.63377,51.00744,9108,5,19,17,51,43,3.85,5.0,fr,24041,182,986436,1,1,Active Shallow Crust,0.0,89.98989,0.0,05/19/9108 +1.63377,51.00744,7554,5,20,17,54,11,3.85,5.0,fr,24042,151,986439,1,1,Active Shallow Crust,240.0113,57.99798,0.0,05/20/7554 +1.63377,51.00744,234,5,22,15,59,35,3.95,15.0,fr,24043,4,986449,1,1,Active Shallow Crust,0.0,89.98999,0.0,05/22/0234 +1.63377,51.00744,6084,2,27,14,40,33,3.95,5.0,fr,24044,121,986451,1,2,Active Shallow Crust,240.0206,58.00508,0.0,02/27/6084 +1.63377,51.00744,2656,6,3,6,8,14,3.95,5.0,fr,24045,53,986451,1,2,Active Shallow Crust,240.0206,58.00508,0.0,06/03/2656 +1.63377,51.00744,7341,5,17,11,31,7,3.95,27.5,fr,24046,146,986459,1,2,Active Shallow Crust,128.8999,89.99349,0.0,05/17/7341 +1.63377,51.00744,2375,2,28,2,41,6,3.95,27.5,fr,24047,47,986459,1,2,Active Shallow Crust,128.8999,89.99349,0.0,02/28/2375 +1.63377,51.00744,5844,12,8,0,33,6,4.05,15.0,fr,24048,116,986461,1,1,Active Shallow Crust,0.0,89.99019,0.0,12/08/5844 +1.63377,51.00744,2880,10,4,23,3,46,4.35,15.0,fr,24049,57,986497,1,1,Active Shallow Crust,0.0,89.9899,0.0,10/04/2880 +1.63377,51.00744,7645,8,1,10,17,13,4.45,5.0,fr,24050,152,986508,1,1,Active Shallow Crust,0.0,89.98987,0.0,08/01/7645 +1.63377,51.00744,1652,6,18,22,39,54,5.15,5.0,fr,24051,33,986592,1,1,Active Shallow Crust,0.0,89.98994,0.0,06/18/1652 +1.63377,51.00744,8989,11,22,2,57,28,5.35,15.0,fr,24052,179,986617,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/22/8989 +1.63377,51.00744,3510,10,31,0,47,58,5.85,5.0,fr,24053,70,986676,1,1,Active Shallow Crust,0.0,89.99,0.0,10/31/3510 +1.633774,51.00744,5053,12,1,11,15,14,6.25,6.744814,fr,24054,101,986724,1,1,Active Shallow Crust,360.0,89.99004,0.0,12/01/5053 +7.7325,47.05164,7558,11,9,11,5,19,3.55,5.0,fr,24055,151,986880,1,1,Active Shallow Crust,0.0,89.99313,0.0,11/09/7558 +7.7325,47.05164,1113,3,14,19,52,10,3.55,5.0,fr,24056,22,986883,1,2,Active Shallow Crust,240.0112,57.9984,0.0,03/14/1113 +7.7325,47.05164,3608,9,7,15,29,57,3.55,5.0,fr,24057,72,986883,1,2,Active Shallow Crust,240.0112,57.9984,0.0,09/07/3608 +7.7325,47.05164,44,11,8,4,10,45,3.55,5.0,fr,24058,0,986889,1,1,Active Shallow Crust,128.8955,89.99657,0.0,11/08/0044 +7.7325,47.05164,3980,11,8,12,38,11,3.65,5.0,fr,24059,79,986895,1,1,Active Shallow Crust,240.001,58.01336,0.0,11/08/3980 +7.7325,47.05164,4739,4,22,2,2,59,3.65,15.0,fr,24060,94,986896,1,1,Active Shallow Crust,240.001,58.01336,0.0,04/22/4739 +7.7325,47.05164,9033,3,24,4,44,48,3.65,5.0,fr,24061,180,986898,1,1,Active Shallow Crust,0.0,89.98761,-90.0,03/24/9033 +7.7325,47.05164,1838,7,23,0,54,21,3.65,5.0,fr,24062,36,986901,1,1,Active Shallow Crust,128.8995,89.96353,0.0,07/23/1838 +7.7325,47.05164,756,12,1,14,55,36,3.65,15.0,fr,24063,15,986902,1,1,Active Shallow Crust,128.8995,89.96353,0.0,12/01/0756 +7.7325,47.05164,6221,8,3,22,36,55,3.75,5.0,fr,24064,124,986904,1,2,Active Shallow Crust,0.0,89.98908,0.0,08/03/6221 +7.7325,47.05164,6980,7,9,1,1,23,3.75,5.0,fr,24065,139,986904,1,2,Active Shallow Crust,0.0,89.98908,0.0,07/09/6980 +7.7325,47.05164,2000,1,8,20,6,4,3.75,27.5,fr,24066,39,986915,1,1,Active Shallow Crust,128.896,89.9675,0.0,01/08/2000 +7.7325,47.05164,211,1,5,13,43,26,3.85,5.0,fr,24067,4,986916,1,1,Active Shallow Crust,0.0,89.99027,0.0,01/05/0211 +7.7325,47.05164,7380,5,1,17,45,56,3.85,15.0,fr,24068,147,986917,1,1,Active Shallow Crust,0.0,89.99027,0.0,05/01/7380 +7.7325,47.05164,8803,8,2,23,7,29,3.85,27.5,fr,24069,176,986918,1,1,Active Shallow Crust,0.0,89.99027,0.0,08/02/8803 +7.7325,47.05164,5195,10,10,2,30,11,3.85,15.0,fr,24070,103,986926,1,1,Active Shallow Crust,128.8951,89.99271,0.0,10/10/5195 +7.7325,47.05164,6953,11,14,0,57,2,3.95,5.0,fr,24071,139,986928,1,2,Active Shallow Crust,0.0,89.99133,0.0,11/14/6953 +7.7325,47.05164,2739,3,15,21,0,16,3.95,5.0,fr,24072,54,986928,1,2,Active Shallow Crust,0.0,89.99133,0.0,03/15/2739 +7.7325,47.05164,2772,8,10,14,10,50,4.05,27.5,fr,24073,55,986942,1,1,Active Shallow Crust,0.0,89.98841,0.0,08/10/2772 +7.7325,47.05164,1750,3,9,10,37,54,4.15,5.0,fr,24074,34,986952,1,2,Active Shallow Crust,0.0,89.98967,0.0,03/09/1750 +7.7325,47.05164,6320,4,12,15,54,40,4.15,5.0,fr,24075,126,986952,1,2,Active Shallow Crust,0.0,89.98967,0.0,04/12/6320 +7.7325,47.05164,5611,10,10,13,4,59,4.15,15.0,fr,24076,112,986962,1,1,Active Shallow Crust,128.8973,89.99311,0.0,10/10/5611 +7.7325,47.05164,2978,7,24,23,30,21,4.35,5.0,fr,24077,59,986985,1,1,Active Shallow Crust,128.8977,89.98255,0.0,07/24/2978 +7.7325,47.05164,9961,3,9,6,18,31,4.45,5.0,fr,24078,199,986991,1,1,Active Shallow Crust,240.0052,57.99508,0.0,03/09/9961 +7.7325,47.05164,5942,4,18,5,47,11,4.45,15.0,fr,24079,118,986995,1,1,Active Shallow Crust,0.0,89.99014,-90.0,04/18/5942 +7.7325,47.05164,6078,8,19,20,47,19,4.55,27.5,fr,24080,121,987002,1,1,Active Shallow Crust,0.0,89.98914,0.0,08/19/6078 +7.7325,47.05164,8469,4,19,23,33,56,4.55,15.0,fr,24081,169,987007,1,1,Active Shallow Crust,0.0,89.98901,-90.0,04/19/8469 +7.7325,47.05164,8645,9,17,14,10,12,4.65,15.0,fr,24082,172,987013,1,1,Active Shallow Crust,0.0,89.99032,0.0,09/17/8645 +7.7325,47.05164,3016,4,2,13,10,34,4.65,5.0,fr,24083,60,987015,1,1,Active Shallow Crust,240.0113,57.99416,0.0,04/02/3016 +7.7325,47.05164,4295,4,10,19,43,25,4.65,15.0,fr,24084,85,987019,1,1,Active Shallow Crust,0.0,89.9902,-90.0,04/10/4295 +7.7325,47.05164,3192,5,5,6,36,25,5.15,15.0,fr,24085,63,987073,1,1,Active Shallow Crust,0.0,89.9902,0.0,05/05/3192 +7.7325,47.05164,8518,1,7,17,7,31,5.25,5.0,fr,24086,170,987084,1,1,Active Shallow Crust,0.0,89.9903,0.0,01/07/8518 +-2.63866,43.8569,6286,7,6,8,25,43,3.95,5.0,fr,24087,125,987408,1,1,Active Shallow Crust,0.0,89.99082,0.0,07/06/6286 +-2.63866,43.8569,598,9,30,23,5,32,4.45,27.5,fr,24088,11,987470,1,1,Active Shallow Crust,0.0,89.98968,0.0,09/30/0598 +-2.63866,43.8569,4231,12,2,11,31,34,4.75,5.0,fr,24089,84,987504,1,1,Active Shallow Crust,0.0,89.98995,0.0,12/02/4231 +6.78532,51.70563,2380,9,8,19,52,31,3.55,5.0,fr,24090,47,987840,1,1,Active Shallow Crust,0.0,89.9875,0.0,09/08/2380 +6.78532,51.70563,3917,1,4,6,41,18,3.55,5.0,fr,24091,78,987846,1,1,Active Shallow Crust,0.0,89.98736,-90.0,01/04/3917 +6.78532,51.70563,7715,6,27,16,56,4,3.55,5.0,fr,24092,154,987849,1,1,Active Shallow Crust,128.8953,89.99375,0.0,06/27/7715 +6.78532,51.70563,9393,3,18,20,28,58,4.75,5.0,fr,24093,187,987993,1,1,Active Shallow Crust,128.8868,89.98808,0.0,03/18/9393 +8.52552,47.90853,7142,4,4,17,18,13,3.55,5.0,fr,24094,142,988320,1,3,Active Shallow Crust,0.0,89.98648,0.0,04/04/7142 +8.52552,47.90853,9717,8,8,17,55,30,3.55,5.0,fr,24095,194,988320,1,3,Active Shallow Crust,0.0,89.98648,0.0,08/08/9717 +8.52552,47.90853,1105,4,30,17,15,32,3.55,5.0,fr,24096,22,988320,1,3,Active Shallow Crust,0.0,89.98648,0.0,04/30/1105 +8.52552,47.90853,7510,8,31,1,43,47,3.55,15.0,fr,24097,150,988321,1,1,Active Shallow Crust,0.0,89.98648,0.0,08/31/7510 +8.52552,47.90853,5645,4,17,4,23,9,3.55,5.0,fr,24098,112,988323,1,1,Active Shallow Crust,240.0121,57.99793,0.0,04/17/5645 +8.52552,47.90853,9279,9,27,3,28,1,3.65,15.0,fr,24099,185,988339,1,1,Active Shallow Crust,0.0,89.98781,-90.0,09/27/9279 +8.52552,47.90853,3832,6,25,16,39,36,3.75,5.0,fr,24100,76,988353,1,1,Active Shallow Crust,128.8972,89.96751,0.0,06/25/3832 +8.52552,47.90853,495,1,14,10,18,55,3.95,5.0,fr,24101,9,988368,1,2,Active Shallow Crust,0.0,89.99147,0.0,01/14/0495 +8.52552,47.90853,6604,10,8,5,42,22,3.95,5.0,fr,24102,132,988368,1,2,Active Shallow Crust,0.0,89.99147,0.0,10/08/6604 +8.52552,47.90853,611,2,14,2,3,56,3.95,27.5,fr,24103,12,988370,1,1,Active Shallow Crust,0.0,89.99147,0.0,02/14/0611 +8.52552,47.90853,6243,7,8,7,24,28,4.05,15.0,fr,24104,124,988381,1,1,Active Shallow Crust,0.0,89.9924,0.0,07/08/6243 +8.52552,47.90853,1985,10,26,1,30,12,4.05,5.0,fr,24105,39,988383,1,2,Active Shallow Crust,240.0056,58.00699,0.0,10/26/1985 +8.52552,47.90853,8317,7,25,23,0,28,4.05,5.0,fr,24106,166,988383,1,2,Active Shallow Crust,240.0056,58.00699,0.0,07/25/8317 +8.52552,47.90853,1503,3,14,21,50,27,4.05,5.0,fr,24107,30,988386,1,1,Active Shallow Crust,0.0,89.99231,-90.0,03/14/1503 +8.52552,47.90853,6014,1,23,4,54,57,4.25,5.0,fr,24108,120,988404,1,2,Active Shallow Crust,0.0,89.98792,0.0,01/23/6014 +8.52552,47.90853,4410,8,11,9,16,20,4.25,5.0,fr,24109,88,988404,1,2,Active Shallow Crust,0.0,89.98792,0.0,08/11/4410 +8.52552,47.90853,7342,10,9,5,52,25,4.25,15.0,fr,24110,146,988405,1,1,Active Shallow Crust,0.0,89.98792,0.0,10/09/7342 +8.52552,47.90853,3800,11,17,12,1,38,4.45,5.0,fr,24111,75,988428,1,1,Active Shallow Crust,0.0,89.9904,0.0,11/17/3800 +8.52552,47.90853,1828,11,17,5,31,51,4.45,15.0,fr,24112,36,988432,1,1,Active Shallow Crust,240.0053,57.99499,0.0,11/17/1828 +8.52552,47.90853,2869,10,12,3,38,24,4.45,5.0,fr,24113,57,988434,1,1,Active Shallow Crust,0.0,89.9903,-90.0,10/12/2869 +8.52552,47.90853,2561,7,20,0,7,36,4.55,5.0,fr,24114,51,988446,1,1,Active Shallow Crust,0.0,89.99135,-90.0,07/20/2561 +8.52552,47.90853,8824,10,2,1,56,54,4.65,15.0,fr,24115,176,988453,1,1,Active Shallow Crust,0.0,89.98857,0.0,10/02/8824 +8.52552,47.90853,9527,8,24,15,54,15,4.85,15.0,fr,24116,190,988480,1,1,Active Shallow Crust,240.0173,58.00261,0.0,08/24/9527 +8.52552,47.90853,8793,1,17,7,49,26,5.65,5.0,fr,24117,175,988572,1,1,Active Shallow Crust,0.0,89.99036,0.0,01/17/8793 +9.34042,48.75496,793,3,20,19,47,41,3.55,5.0,fr,24118,15,988800,1,2,Active Shallow Crust,0.0,89.9867,0.0,03/20/0793 +9.34042,48.75496,8637,2,11,13,41,23,3.55,5.0,fr,24119,172,988800,1,2,Active Shallow Crust,0.0,89.9867,0.0,02/11/8637 +9.34042,48.75496,847,1,27,14,18,10,3.65,5.0,fr,24120,16,988812,1,3,Active Shallow Crust,0.0,89.98815,0.0,01/27/0847 +9.34042,48.75496,8619,5,30,7,56,9,3.65,5.0,fr,24121,172,988812,1,3,Active Shallow Crust,0.0,89.98815,0.0,05/30/8619 +9.34042,48.75496,9397,3,9,9,46,15,3.65,5.0,fr,24122,187,988812,1,3,Active Shallow Crust,0.0,89.98815,0.0,03/09/9397 +9.34042,48.75496,8802,10,18,5,57,21,3.65,15.0,fr,24123,176,988813,1,1,Active Shallow Crust,0.0,89.98815,0.0,10/18/8802 +9.34042,48.75496,7166,8,6,16,40,2,3.75,15.0,fr,24124,143,988825,1,1,Active Shallow Crust,0.0,89.98944,0.0,08/06/7166 +9.34042,48.75496,5673,6,4,21,34,34,3.75,5.0,fr,24125,113,988827,1,1,Active Shallow Crust,240.0099,58.01698,0.0,06/04/5673 +9.34042,48.75496,5437,10,14,6,28,33,3.75,15.0,fr,24126,108,988831,1,1,Active Shallow Crust,0.0,89.98932,-90.0,10/14/5437 +9.34042,48.75496,2782,9,28,13,2,17,3.85,5.0,fr,24127,55,988836,1,1,Active Shallow Crust,0.0,89.99059,0.0,09/28/2782 +9.34042,48.75496,6890,9,20,16,1,30,4.05,5.0,fr,24128,137,988863,1,1,Active Shallow Crust,240.0067,58.00674,0.0,09/20/6890 +9.34042,48.75496,5638,11,22,10,50,8,4.45,15.0,fr,24129,112,988909,1,1,Active Shallow Crust,0.0,89.99056,0.0,11/22/5638 +9.34042,48.75496,8612,6,10,21,31,51,4.65,5.0,fr,24130,172,988932,1,1,Active Shallow Crust,0.0,89.98875,0.0,06/10/8612 +9.34042,48.75496,3214,2,4,7,14,25,4.75,5.0,fr,24131,64,988944,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/04/3214 +0.08791,43.17908,7051,9,15,7,40,26,3.55,5.0,fr,24132,141,989760,1,9,Active Shallow Crust,0.0,89.99001,0.0,09/15/7051 +0.08791,43.17908,7520,2,9,8,20,15,3.55,5.0,fr,24133,150,989760,1,9,Active Shallow Crust,0.0,89.99001,0.0,02/09/7520 +0.08791,43.17908,4034,3,12,0,52,59,3.55,5.0,fr,24134,80,989760,1,9,Active Shallow Crust,0.0,89.99001,0.0,03/12/4034 +0.08791,43.17908,4743,6,28,12,12,20,3.55,5.0,fr,24135,94,989760,1,9,Active Shallow Crust,0.0,89.99001,0.0,06/28/4743 +0.08791,43.17908,1459,2,8,21,21,3,3.55,5.0,fr,24136,29,989760,1,9,Active Shallow Crust,0.0,89.99001,0.0,02/08/1459 +0.08791,43.17908,4944,5,24,8,53,30,3.55,5.0,fr,24137,98,989760,1,9,Active Shallow Crust,0.0,89.99001,0.0,05/24/4944 +0.08791,43.17908,3692,2,5,7,55,9,3.55,5.0,fr,24138,73,989760,1,9,Active Shallow Crust,0.0,89.99001,0.0,02/05/3692 +0.08791,43.17908,7329,12,16,3,30,19,3.55,5.0,fr,24139,146,989760,1,9,Active Shallow Crust,0.0,89.99001,0.0,12/16/7329 +0.08791,43.17908,7740,4,22,20,12,11,3.55,5.0,fr,24140,154,989760,1,9,Active Shallow Crust,0.0,89.99001,0.0,04/22/7740 +0.08791,43.17908,3452,11,15,4,21,27,3.55,15.0,fr,24141,69,989761,1,2,Active Shallow Crust,0.0,89.99001,0.0,11/15/3452 +0.08791,43.17908,7297,11,17,8,7,9,3.55,15.0,fr,24142,145,989761,1,2,Active Shallow Crust,0.0,89.99001,0.0,11/17/7297 +0.08791,43.17908,7025,3,1,16,59,25,3.55,27.5,fr,24143,140,989762,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/01/7025 +0.08791,43.17908,5817,5,31,8,30,41,3.55,5.0,fr,24144,116,989763,1,1,Active Shallow Crust,240.0119,57.99813,0.0,05/31/5817 +0.08791,43.17908,206,6,25,8,26,29,3.55,15.0,fr,24145,4,989764,1,1,Active Shallow Crust,240.0119,57.99813,0.0,06/25/0206 +0.08791,43.17908,5601,7,12,5,24,4,3.55,5.0,fr,24146,112,989766,1,2,Active Shallow Crust,0.0,89.99001,-90.0,07/12/5601 +0.08791,43.17908,1872,10,20,22,36,30,3.55,5.0,fr,24147,37,989766,1,2,Active Shallow Crust,0.0,89.99001,-90.0,10/20/1872 +0.08791,43.17908,5328,8,19,21,17,49,3.55,15.0,fr,24148,106,989767,1,1,Active Shallow Crust,0.0,89.99001,-90.0,08/19/5328 +0.08791,43.17908,1881,9,5,19,31,47,3.55,27.5,fr,24149,37,989768,1,1,Active Shallow Crust,0.0,89.99001,-90.0,09/05/1881 +0.08791,43.17908,5484,4,30,22,43,52,3.55,5.0,fr,24150,109,989769,1,1,Active Shallow Crust,128.8965,89.99374,0.0,04/30/5484 +0.08791,43.17908,275,4,15,1,36,12,3.55,15.0,fr,24151,5,989770,1,1,Active Shallow Crust,128.8965,89.99374,0.0,04/15/0275 +0.08791,43.17908,7157,7,9,2,18,21,3.65,5.0,fr,24152,143,989772,1,4,Active Shallow Crust,0.0,89.98997,0.0,07/09/7157 +0.08791,43.17908,4426,12,25,10,57,7,3.65,5.0,fr,24153,88,989772,1,4,Active Shallow Crust,0.0,89.98997,0.0,12/25/4426 +0.08791,43.17908,943,10,3,19,5,8,3.65,5.0,fr,24154,18,989772,1,4,Active Shallow Crust,0.0,89.98997,0.0,10/03/0943 +0.08791,43.17908,1133,10,12,2,4,27,3.65,5.0,fr,24155,22,989772,1,4,Active Shallow Crust,0.0,89.98997,0.0,10/12/1133 +0.08791,43.17908,6979,11,23,8,25,11,3.65,15.0,fr,24156,139,989773,1,4,Active Shallow Crust,0.0,89.98997,0.0,11/23/6979 +0.08791,43.17908,1146,9,19,12,18,6,3.65,15.0,fr,24157,22,989773,1,4,Active Shallow Crust,0.0,89.98997,0.0,09/19/1146 +0.08791,43.17908,5050,11,15,19,59,18,3.65,15.0,fr,24158,100,989773,1,4,Active Shallow Crust,0.0,89.98997,0.0,11/15/5050 +0.08791,43.17908,7050,2,3,13,6,42,3.65,15.0,fr,24159,140,989773,1,4,Active Shallow Crust,0.0,89.98997,0.0,02/03/7050 +0.08791,43.17908,3134,11,20,9,28,53,3.65,5.0,fr,24160,62,989778,1,1,Active Shallow Crust,0.0,89.98995,-90.0,11/20/3134 +0.08791,43.17908,9044,6,18,16,5,46,3.65,5.0,fr,24161,180,989781,1,3,Active Shallow Crust,128.9007,89.96352,0.0,06/18/9044 +0.08791,43.17908,5773,10,22,11,4,14,3.65,5.0,fr,24162,115,989781,1,3,Active Shallow Crust,128.9007,89.96352,0.0,10/22/5773 +0.08791,43.17908,7795,10,16,11,56,24,3.65,5.0,fr,24163,155,989781,1,3,Active Shallow Crust,128.9007,89.96352,0.0,10/16/7795 +0.08791,43.17908,9294,8,15,23,10,16,3.75,5.0,fr,24164,185,989784,1,3,Active Shallow Crust,0.0,89.98996,0.0,08/15/9294 +0.08791,43.17908,7725,5,5,19,46,47,3.75,5.0,fr,24165,154,989784,1,3,Active Shallow Crust,0.0,89.98996,0.0,05/05/7725 +0.08791,43.17908,4891,5,10,8,48,51,3.75,5.0,fr,24166,97,989784,1,3,Active Shallow Crust,0.0,89.98996,0.0,05/10/4891 +0.08791,43.17908,4065,8,10,11,3,1,3.75,15.0,fr,24167,81,989785,1,1,Active Shallow Crust,0.0,89.98996,0.0,08/10/4065 +0.08791,43.17908,9342,1,13,8,53,26,3.75,5.0,fr,24168,186,989790,1,1,Active Shallow Crust,0.0,89.99003,-90.0,01/13/9342 +0.08791,43.17908,1412,6,18,10,32,31,3.75,15.0,fr,24169,28,989791,1,1,Active Shallow Crust,0.0,89.99003,-90.0,06/18/1412 +0.08791,43.17908,3724,10,28,8,24,37,3.85,5.0,fr,24170,74,989796,1,6,Active Shallow Crust,0.0,89.99,0.0,10/28/3724 +0.08791,43.17908,1782,9,10,12,28,37,3.85,5.0,fr,24171,35,989796,1,6,Active Shallow Crust,0.0,89.99,0.0,09/10/1782 +0.08791,43.17908,3320,12,16,12,41,33,3.85,5.0,fr,24172,66,989796,1,6,Active Shallow Crust,0.0,89.99,0.0,12/16/3320 +0.08791,43.17908,636,6,2,12,14,18,3.85,5.0,fr,24173,12,989796,1,6,Active Shallow Crust,0.0,89.99,0.0,06/02/0636 +0.08791,43.17908,675,7,30,12,0,47,3.85,5.0,fr,24174,13,989796,1,6,Active Shallow Crust,0.0,89.99,0.0,07/30/0675 +0.08791,43.17908,2113,4,18,6,20,11,3.85,5.0,fr,24175,42,989796,1,6,Active Shallow Crust,0.0,89.99,0.0,04/18/2113 +0.08791,43.17908,9289,12,4,11,14,7,3.85,15.0,fr,24176,185,989797,1,1,Active Shallow Crust,0.0,89.99,0.0,12/04/9289 +0.08791,43.17908,473,10,19,8,9,0,3.85,15.0,fr,24177,9,989800,1,1,Active Shallow Crust,240.0104,57.99773,0.0,10/19/0473 +0.08791,43.17908,4675,1,25,22,45,7,3.85,5.0,fr,24178,93,989802,1,3,Active Shallow Crust,0.0,89.98996,-90.0,01/25/4675 +0.08791,43.17908,3121,9,29,23,16,40,3.85,5.0,fr,24179,62,989802,1,3,Active Shallow Crust,0.0,89.98996,-90.0,09/29/3121 +0.08791,43.17908,1942,12,5,1,24,49,3.85,5.0,fr,24180,38,989802,1,3,Active Shallow Crust,0.0,89.98996,-90.0,12/05/1942 +0.08791,43.17908,1892,6,28,11,0,37,3.85,15.0,fr,24181,37,989803,1,1,Active Shallow Crust,0.0,89.98996,-90.0,06/28/1892 +0.08791,43.17908,3132,3,17,3,29,6,3.85,5.0,fr,24182,62,989805,1,1,Active Shallow Crust,128.896,89.9937,0.0,03/17/3132 +0.08791,43.17908,3487,4,2,19,18,51,3.85,27.5,fr,24183,69,989807,1,2,Active Shallow Crust,128.896,89.9937,0.0,04/02/3487 +0.08791,43.17908,1039,10,15,3,0,57,3.85,27.5,fr,24184,20,989807,1,2,Active Shallow Crust,128.896,89.9937,0.0,10/15/1039 +0.08791,43.17908,872,12,23,2,48,28,3.95,5.0,fr,24185,17,989808,1,3,Active Shallow Crust,0.0,89.99,0.0,12/23/0872 +0.08791,43.17908,3642,6,24,16,55,43,3.95,5.0,fr,24186,72,989808,1,3,Active Shallow Crust,0.0,89.99,0.0,06/24/3642 +0.08791,43.17908,6487,6,6,5,5,50,3.95,5.0,fr,24187,129,989808,1,3,Active Shallow Crust,0.0,89.99,0.0,06/06/6487 +0.08791,43.17908,7529,12,29,4,42,30,3.95,15.0,fr,24188,150,989809,1,2,Active Shallow Crust,0.0,89.99,0.0,12/29/7529 +0.08791,43.17908,4808,9,23,10,54,39,3.95,15.0,fr,24189,96,989809,1,2,Active Shallow Crust,0.0,89.99,0.0,09/23/4808 +0.08791,43.17908,5035,4,18,2,31,43,3.95,27.5,fr,24190,100,989810,1,1,Active Shallow Crust,0.0,89.99,0.0,04/18/5035 +0.08791,43.17908,1768,5,14,11,50,10,3.95,5.0,fr,24191,35,989811,1,1,Active Shallow Crust,240.0193,58.0049,0.0,05/14/1768 +0.08791,43.17908,6950,5,12,22,35,32,3.95,27.5,fr,24192,138,989816,1,1,Active Shallow Crust,0.0,89.99003,-90.0,05/12/6950 +0.08791,43.17908,1632,3,6,5,44,25,4.05,15.0,fr,24193,32,989821,1,2,Active Shallow Crust,0.0,89.98998,0.0,03/06/1632 +0.08791,43.17908,5544,2,28,14,57,20,4.05,15.0,fr,24194,110,989821,1,2,Active Shallow Crust,0.0,89.98998,0.0,02/28/5544 +0.08791,43.17908,4626,8,22,19,33,22,4.05,5.0,fr,24195,92,989829,1,2,Active Shallow Crust,128.891,89.9937,0.0,08/22/4626 +0.08791,43.17908,4249,10,20,19,4,32,4.05,5.0,fr,24196,84,989829,1,2,Active Shallow Crust,128.891,89.9937,0.0,10/20/4249 +0.08791,43.17908,5504,9,27,2,32,31,4.05,15.0,fr,24197,110,989830,1,1,Active Shallow Crust,128.891,89.9937,0.0,09/27/5504 +0.08791,43.17908,2002,10,20,13,41,22,4.15,5.0,fr,24198,40,989832,1,2,Active Shallow Crust,0.0,89.98998,0.0,10/20/2002 +0.08791,43.17908,3629,11,18,22,6,8,4.15,5.0,fr,24199,72,989832,1,2,Active Shallow Crust,0.0,89.98998,0.0,11/18/3629 +0.08791,43.17908,4066,9,3,22,13,2,4.15,5.0,fr,24200,81,989841,1,1,Active Shallow Crust,128.8981,89.99372,0.0,09/03/4066 +0.08791,43.17908,6977,5,26,0,33,42,4.15,27.5,fr,24201,139,989843,1,1,Active Shallow Crust,128.8981,89.99372,0.0,05/26/6977 +0.08791,43.17908,6008,11,6,0,31,26,4.25,5.0,fr,24202,120,989844,1,1,Active Shallow Crust,0.0,89.98999,0.0,11/06/6008 +0.08791,43.17908,6634,9,4,1,26,42,4.25,15.0,fr,24203,132,989845,1,2,Active Shallow Crust,0.0,89.98999,0.0,09/04/6634 +0.08791,43.17908,4871,4,19,19,22,30,4.25,15.0,fr,24204,97,989845,1,2,Active Shallow Crust,0.0,89.98999,0.0,04/19/4871 +0.08791,43.17908,6619,2,17,12,11,52,4.35,5.0,fr,24205,132,989856,1,2,Active Shallow Crust,0.0,89.98998,0.0,02/17/6619 +0.08791,43.17908,4535,3,28,17,43,52,4.35,5.0,fr,24206,90,989856,1,2,Active Shallow Crust,0.0,89.98998,0.0,03/28/4535 +0.08791,43.17908,4268,1,31,9,29,22,4.35,15.0,fr,24207,85,989860,1,1,Active Shallow Crust,240.0077,57.99582,0.0,01/31/4268 +0.08791,43.17908,9364,5,11,9,23,42,4.35,5.0,fr,24208,187,989865,1,1,Active Shallow Crust,128.8984,89.98276,0.0,05/11/9364 +0.08791,43.17908,3916,1,14,12,6,37,4.45,5.0,fr,24209,78,989868,1,1,Active Shallow Crust,0.0,89.99001,0.0,01/14/3916 +0.08791,43.17908,1588,12,27,20,3,10,4.45,5.0,fr,24210,31,989871,1,2,Active Shallow Crust,240.0044,57.99453,0.0,12/27/1588 +0.08791,43.17908,9929,11,11,1,7,41,4.45,5.0,fr,24211,198,989871,1,2,Active Shallow Crust,240.0044,57.99453,0.0,11/11/9929 +0.08791,43.17908,2140,1,29,23,30,0,4.45,5.0,fr,24212,42,989874,1,1,Active Shallow Crust,360.0,89.99002,-90.0,01/29/2140 +0.08791,43.17908,7988,11,19,5,26,0,4.65,5.0,fr,24213,159,989892,1,1,Active Shallow Crust,0.0,89.98999,0.0,11/19/7988 +0.08791,43.17908,6135,11,17,2,24,9,5.55,5.0,fr,24214,122,990000,1,1,Active Shallow Crust,360.0,89.99,0.0,11/17/6135 +0.08791,43.17908,8225,7,4,17,34,12,5.65,5.0,fr,24215,164,990012,1,1,Active Shallow Crust,360.0,89.99,0.0,07/04/8225 +-1.32668,48.47953,2235,2,12,13,33,54,3.55,15.0,fr,24216,44,990241,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/12/2235 +-1.32668,48.47953,8594,8,4,8,57,52,3.55,27.5,fr,24217,171,990242,1,1,Active Shallow Crust,0.0,89.98997,0.0,08/04/8594 +-1.32668,48.47953,4071,6,27,0,4,15,3.55,15.0,fr,24218,81,990247,1,1,Active Shallow Crust,0.0,89.98986,-90.0,06/27/4071 +-1.32668,48.47953,2913,4,12,5,13,8,3.65,5.0,fr,24219,58,990252,1,1,Active Shallow Crust,0.0,89.98957,0.0,04/12/2913 +-1.32668,48.47953,3505,9,17,22,3,1,3.65,15.0,fr,24220,70,990253,1,1,Active Shallow Crust,0.0,89.98957,0.0,09/17/3505 +-1.32668,48.47953,7996,10,15,14,55,51,3.75,5.0,fr,24221,159,990264,1,2,Active Shallow Crust,0.0,89.98938,0.0,10/15/7996 +-1.32668,48.47953,1190,8,7,6,41,17,3.75,5.0,fr,24222,23,990264,1,2,Active Shallow Crust,0.0,89.98938,0.0,08/07/1190 +-1.32668,48.47953,2290,10,21,19,26,44,3.75,5.0,fr,24223,45,990267,1,1,Active Shallow Crust,240.0086,58.01778,0.0,10/21/2290 +-1.32668,48.47953,9398,3,1,11,21,20,3.75,15.0,fr,24224,187,990268,1,1,Active Shallow Crust,240.0086,58.01778,0.0,03/01/9398 +-1.32668,48.47953,1781,3,5,1,53,37,3.85,5.0,fr,24225,35,990276,1,1,Active Shallow Crust,0.0,89.99053,0.0,03/05/1781 +-1.32668,48.47953,4772,4,12,21,2,6,4.25,5.0,fr,24226,95,990324,1,1,Active Shallow Crust,0.0,89.9903,0.0,04/12/4772 +-1.32668,48.47953,1073,9,7,11,20,2,4.65,5.0,fr,24227,21,990372,1,1,Active Shallow Crust,0.0,89.9901,0.0,09/07/1073 +1.86977,53.06248,7339,9,22,13,36,1,4.35,15.0,fr,24228,146,991300,1,1,Active Shallow Crust,240.0102,57.99618,0.0,09/22/7339 +2.33018,49.73492,6912,5,26,6,6,27,3.55,15.0,fr,24229,138,991687,1,1,Active Shallow Crust,0.0,89.99011,-90.0,05/26/6912 +2.33018,49.73492,9116,12,31,5,6,10,3.85,5.0,fr,24230,182,991716,1,1,Active Shallow Crust,0.0,89.99077,0.0,12/31/9116 +2.33018,49.73492,1551,9,15,3,39,40,4.25,27.5,fr,24231,31,991769,1,1,Active Shallow Crust,240.0083,57.99417,0.0,09/15/1551 +6.63957,45.36221,7703,6,5,12,44,54,3.55,5.0,fr,24232,154,992160,1,1,Active Shallow Crust,0.0,89.99291,0.0,06/05/7703 +6.63957,45.36221,4569,8,24,22,52,20,3.55,15.0,fr,24233,91,992161,1,1,Active Shallow Crust,0.0,89.99291,0.0,08/24/4569 +6.63957,45.36221,1685,11,9,21,28,56,3.55,15.0,fr,24234,33,992164,1,1,Active Shallow Crust,240.012,57.9986,0.0,11/09/1685 +6.63957,45.36221,4459,8,1,5,44,34,3.55,15.0,fr,24235,89,992167,1,1,Active Shallow Crust,0.0,89.99284,-90.0,08/01/4459 +6.63957,45.36221,9084,12,6,1,44,54,3.65,5.0,fr,24236,181,992172,1,2,Active Shallow Crust,0.0,89.98737,0.0,12/06/9084 +6.63957,45.36221,6681,10,16,10,20,38,3.65,5.0,fr,24237,133,992172,1,2,Active Shallow Crust,0.0,89.98737,0.0,10/16/6681 +6.63957,45.36221,4023,7,31,15,44,18,3.65,27.5,fr,24238,80,992180,1,1,Active Shallow Crust,0.0,89.98722,-90.0,07/31/4023 +6.63957,45.36221,4491,4,15,17,36,33,3.65,27.5,fr,24239,89,992183,1,1,Active Shallow Crust,128.9012,89.9635,0.0,04/15/4491 +6.63957,45.36221,7,4,2,5,19,12,3.75,15.0,fr,24240,0,992185,1,1,Active Shallow Crust,0.0,89.98875,0.0,04/02/0007 +6.63957,45.36221,5927,6,13,0,5,34,3.75,15.0,fr,24241,118,992191,1,1,Active Shallow Crust,0.0,89.98862,-90.0,06/13/5927 +6.63957,45.36221,1504,9,24,7,30,46,3.85,5.0,fr,24242,30,992202,1,1,Active Shallow Crust,0.0,89.98985,-90.0,09/24/1504 +6.63957,45.36221,9388,7,5,7,57,10,3.85,5.0,fr,24243,187,992205,1,1,Active Shallow Crust,128.8962,89.99248,0.0,07/05/9388 +6.63957,45.36221,5781,5,16,21,44,58,4.05,5.0,fr,24244,115,992220,1,1,Active Shallow Crust,0.0,89.98804,0.0,05/16/5781 +6.63957,45.36221,3061,5,1,12,6,28,4.05,15.0,fr,24245,61,992221,1,1,Active Shallow Crust,0.0,89.98804,0.0,05/01/3061 +6.63957,45.36221,8337,8,21,15,34,11,4.15,5.0,fr,24246,166,992232,1,1,Active Shallow Crust,0.0,89.98935,0.0,08/21/8337 +6.63957,45.36221,1325,6,10,9,26,18,4.25,5.0,fr,24247,26,992244,1,1,Active Shallow Crust,0.0,89.9905,0.0,06/10/1325 +6.63957,45.36221,8716,1,16,16,1,20,4.35,15.0,fr,24248,174,992257,1,1,Active Shallow Crust,0.0,89.98872,0.0,01/16/8716 +6.63957,45.36221,5505,1,13,12,34,30,4.35,27.5,fr,24249,110,992258,1,1,Active Shallow Crust,0.0,89.98872,0.0,01/13/5505 +6.63957,45.36221,568,9,21,7,28,52,4.35,5.0,fr,24250,11,992259,1,1,Active Shallow Crust,240.0086,57.99555,0.0,09/21/0568 +6.63957,45.36221,3894,8,2,17,22,32,4.55,5.0,fr,24251,77,992283,1,1,Active Shallow Crust,240.009,57.99727,0.0,08/02/3894 +6.63957,45.36221,9039,6,4,19,28,56,4.75,27.5,fr,24252,180,992306,1,1,Active Shallow Crust,0.0,89.98932,0.0,06/04/9039 +-2.57371,42.33579,6734,1,29,16,45,22,3.65,5.0,fr,24253,134,992652,1,1,Active Shallow Crust,0.0,89.99004,0.0,01/29/6734 +-2.57371,42.33579,7193,2,22,0,33,11,3.65,15.0,fr,24254,143,992653,1,2,Active Shallow Crust,0.0,89.99004,0.0,02/22/7193 +-2.57371,42.33579,9253,10,1,20,17,18,3.65,15.0,fr,24255,185,992653,1,2,Active Shallow Crust,0.0,89.99004,0.0,10/01/9253 +-2.57371,42.33579,5569,3,11,11,27,20,3.85,15.0,fr,24256,111,992680,1,1,Active Shallow Crust,240.0102,57.99768,0.0,03/11/5569 +-2.57371,42.33579,9234,10,9,21,29,42,4.25,5.0,fr,24257,184,992724,1,1,Active Shallow Crust,0.0,89.99001,0.0,10/09/9234 +-2.57371,42.33579,9403,12,23,10,28,43,4.95,5.0,fr,24258,188,992811,1,1,Active Shallow Crust,240.0101,58.00412,0.0,12/23/9403 +-2.57371,42.33579,4566,3,6,18,21,3,5.25,15.0,fr,24259,91,992851,1,1,Active Shallow Crust,0.0,89.98988,-90.0,03/06/4566 +-3.08333,50.35073,3321,2,1,11,40,31,3.75,15.0,fr,24260,66,993145,1,1,Active Shallow Crust,0.0,89.98978,0.0,02/01/3321 +0.12979,47.37798,5982,12,8,1,2,51,3.55,5.0,fr,24261,119,993600,1,1,Active Shallow Crust,0.0,89.98997,0.0,12/08/5982 +0.12979,47.37798,352,2,8,13,35,34,3.55,15.0,fr,24262,7,993601,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/08/0352 +0.12979,47.37798,3477,6,4,17,36,6,3.55,15.0,fr,24263,69,993604,1,1,Active Shallow Crust,240.0122,57.99817,0.0,06/04/3477 +0.12979,47.37798,7780,7,4,23,58,57,3.65,5.0,fr,24264,155,993612,1,1,Active Shallow Crust,0.0,89.98992,0.0,07/04/7780 +0.12979,47.37798,5449,4,1,14,24,50,3.65,15.0,fr,24265,108,993613,1,1,Active Shallow Crust,0.0,89.98992,0.0,04/01/5449 +0.12979,47.37798,5599,1,29,23,22,57,3.65,5.0,fr,24266,111,993621,1,1,Active Shallow Crust,128.9003,89.96351,0.0,01/29/5599 +0.12979,47.37798,7700,6,25,11,0,46,3.75,15.0,fr,24267,153,993625,1,1,Active Shallow Crust,0.0,89.99,0.0,06/25/7700 +0.12979,47.37798,9275,7,30,2,36,39,3.75,5.0,fr,24268,185,993627,1,2,Active Shallow Crust,240.0085,58.01759,0.0,07/30/9275 +0.12979,47.37798,7701,4,8,14,20,22,3.75,5.0,fr,24269,154,993627,1,2,Active Shallow Crust,240.0085,58.01759,0.0,04/08/7701 +0.12979,47.37798,5925,6,29,12,29,46,4.15,15.0,fr,24270,118,993673,1,2,Active Shallow Crust,359.9999,89.99005,0.0,06/29/5925 +0.12979,47.37798,406,9,26,9,45,24,4.15,15.0,fr,24271,8,993673,1,2,Active Shallow Crust,359.9999,89.99005,0.0,09/26/0406 +0.12979,47.37798,2556,4,23,9,31,50,4.95,5.0,fr,24272,51,993768,1,1,Active Shallow Crust,0.0,89.98999,0.0,04/23/2556 +-2.30463,42.92455,7561,12,18,7,46,28,3.55,5.0,fr,24273,151,994080,1,1,Active Shallow Crust,0.0,89.98892,0.0,12/18/7561 +-2.30463,42.92455,1996,10,23,9,23,9,3.65,5.0,fr,24274,39,994092,1,1,Active Shallow Crust,0.0,89.99013,0.0,10/23/1996 +-2.30463,42.92455,9522,4,20,5,47,33,3.65,15.0,fr,24275,190,994093,1,1,Active Shallow Crust,0.0,89.99013,0.0,04/20/9522 +-2.30463,42.92455,1637,10,19,5,36,6,3.65,5.0,fr,24276,32,994095,1,2,Active Shallow Crust,240.0003,58.01302,0.0,10/19/1637 +-2.30463,42.92455,1279,12,11,8,26,28,3.65,5.0,fr,24277,25,994095,1,2,Active Shallow Crust,240.0003,58.01302,0.0,12/11/1279 +-2.30463,42.92455,1115,5,30,7,37,39,3.75,15.0,fr,24278,22,994105,1,1,Active Shallow Crust,0.0,89.9912,0.0,05/30/1115 +-2.30463,42.92455,1907,3,28,0,34,11,3.85,15.0,fr,24279,38,994117,1,1,Active Shallow Crust,0.0,89.98955,0.0,03/28/1907 +-2.30463,42.92455,1356,10,26,22,15,6,3.85,5.0,fr,24280,27,994119,1,1,Active Shallow Crust,240.0106,57.99733,0.0,10/26/1356 +-2.30463,42.92455,6140,2,20,21,3,46,4.05,27.5,fr,24281,122,994142,1,1,Active Shallow Crust,0.0,89.98962,0.0,02/20/6140 +-2.30463,42.92455,8959,9,10,20,29,39,4.25,5.0,fr,24282,179,994164,1,1,Active Shallow Crust,0.0,89.9901,0.0,09/10/8959 +-2.30463,42.92455,2388,1,29,18,17,47,4.35,5.0,fr,24283,47,994176,1,1,Active Shallow Crust,0.0,89.98971,0.0,01/29/2388 +-2.30463,42.92455,2945,5,6,0,5,32,4.45,15.0,fr,24284,58,994195,1,1,Active Shallow Crust,0.0,89.9894,-90.0,05/06/2945 +-2.30463,42.92455,9158,5,7,7,45,36,4.85,27.5,fr,24285,183,994238,1,1,Active Shallow Crust,0.0,89.99008,0.0,05/07/9158 +6.51407,43.2254,3695,8,2,14,40,42,3.65,5.0,fr,24286,73,995052,1,1,Active Shallow Crust,0.0,89.9869,0.0,08/02/3695 +6.51407,43.2254,68,6,23,11,47,49,3.65,27.5,fr,24287,1,995054,1,1,Active Shallow Crust,0.0,89.9869,0.0,06/23/0068 +6.51407,43.2254,9973,6,26,2,14,44,3.65,15.0,fr,24288,199,995056,1,1,Active Shallow Crust,240.0016,58.01192,0.0,06/26/9973 +6.51407,43.2254,7697,6,18,13,6,43,4.15,5.0,fr,24289,153,995118,1,1,Active Shallow Crust,0.0,89.98882,-90.0,06/18/7697 +6.51407,43.2254,9286,4,27,22,38,55,5.25,5.0,fr,24290,185,995250,1,1,Active Shallow Crust,0.0,89.98949,-90.0,04/27/9286 +3.20157,41.7034,2677,1,18,21,36,38,3.55,5.0,fr,24291,53,995520,1,1,Active Shallow Crust,0.0,89.98871,0.0,01/18/2677 +3.20157,41.7034,8936,3,17,1,25,28,3.55,15.0,fr,24292,178,995527,1,1,Active Shallow Crust,0.0,89.98858,-90.0,03/17/8936 +3.20157,41.7034,8794,10,13,1,38,11,3.55,15.0,fr,24293,175,995530,1,1,Active Shallow Crust,128.8966,89.99435,0.0,10/13/8794 +3.20157,41.7034,7978,12,15,18,0,46,3.65,27.5,fr,24294,159,995540,1,1,Active Shallow Crust,0.0,89.98982,-90.0,12/15/7978 +3.20157,41.7034,6607,11,11,18,45,27,3.75,5.0,fr,24295,132,995544,1,1,Active Shallow Crust,0.0,89.99103,0.0,11/11/6607 +3.20157,41.7034,730,6,7,17,25,55,3.75,15.0,fr,24296,14,995545,1,2,Active Shallow Crust,0.0,89.99103,0.0,06/07/0730 +3.20157,41.7034,3481,5,17,7,49,52,3.75,15.0,fr,24297,69,995545,1,2,Active Shallow Crust,0.0,89.99103,0.0,05/17/3481 +3.20157,41.7034,3520,10,19,16,54,46,3.95,5.0,fr,24298,70,995568,1,1,Active Shallow Crust,0.0,89.9905,0.0,10/19/3520 +3.20157,41.7034,4331,1,27,2,29,24,4.05,5.0,fr,24299,86,995580,1,1,Active Shallow Crust,0.0,89.98942,0.0,01/27/4331 +3.20157,41.7034,240,5,8,15,22,17,4.25,5.0,fr,24300,4,995604,1,1,Active Shallow Crust,0.0,89.98991,0.0,05/08/0240 +3.20157,41.7034,9357,2,17,16,33,13,4.35,5.0,fr,24301,187,995616,1,1,Active Shallow Crust,0.0,89.98951,0.0,02/17/9357 +3.20157,41.7034,293,1,16,3,47,22,4.45,15.0,fr,24302,5,995629,1,1,Active Shallow Crust,0.0,89.99065,0.0,01/16/0293 +3.20157,41.7034,8984,4,28,16,45,16,4.65,5.0,fr,24303,179,995652,1,1,Active Shallow Crust,0.0,89.99045,0.0,04/28/8984 +2.77914,44.03764,7331,6,30,16,2,47,3.65,15.0,fr,24304,146,996013,1,1,Active Shallow Crust,0.0,89.99031,0.0,06/30/7331 +2.77914,44.03764,1963,7,14,3,59,10,3.65,5.0,fr,24305,39,996018,1,1,Active Shallow Crust,0.0,89.9902,-90.0,07/14/1963 +2.77914,44.03764,6943,9,22,5,18,55,3.85,27.5,fr,24306,138,996044,1,1,Active Shallow Crust,0.0,89.98962,-90.0,09/22/6943 +2.77914,44.03764,9032,5,28,21,57,51,3.95,15.0,fr,24307,180,996052,1,1,Active Shallow Crust,240.019,58.00488,0.0,05/28/9032 +2.77914,44.03764,9080,8,18,11,30,54,4.05,5.0,fr,24308,181,996060,1,1,Active Shallow Crust,0.0,89.98981,0.0,08/18/9080 +2.77914,44.03764,772,8,9,19,50,23,4.25,5.0,fr,24309,15,996084,1,1,Active Shallow Crust,0.0,89.99029,0.0,08/09/0772 +2.77914,44.03764,4413,11,18,6,38,56,4.35,5.0,fr,24310,88,996096,1,1,Active Shallow Crust,0.0,89.9899,0.0,11/18/4413 +2.77914,44.03764,9555,9,22,7,44,44,5.25,5.0,fr,24311,191,996207,1,1,Active Shallow Crust,240.0189,58.00004,0.0,09/22/9555 +4.35968,42.81083,6021,3,20,17,12,27,3.65,5.0,fr,24312,120,996492,1,1,Active Shallow Crust,0.0,89.98682,0.0,03/20/6021 +2.99843,45.12215,7507,3,25,4,28,37,3.55,15.0,fr,24313,150,996961,1,1,Active Shallow Crust,0.0,89.98933,0.0,03/25/7507 +2.99843,45.12215,5240,9,16,5,52,25,3.55,15.0,fr,24314,104,996970,1,1,Active Shallow Crust,128.8961,89.99288,0.0,09/16/5240 +2.99843,45.12215,2638,7,17,16,9,56,3.65,15.0,fr,24315,52,996973,1,1,Active Shallow Crust,0.0,89.99049,0.0,07/17/2638 +2.99843,45.12215,3542,4,17,12,16,39,3.75,5.0,fr,24316,70,996984,1,3,Active Shallow Crust,0.0,89.98869,0.0,04/17/3542 +2.99843,45.12215,5434,1,16,14,30,57,3.75,5.0,fr,24317,108,996984,1,3,Active Shallow Crust,0.0,89.98869,0.0,01/16/5434 +2.99843,45.12215,9062,7,26,3,51,27,3.75,5.0,fr,24318,181,996984,1,3,Active Shallow Crust,0.0,89.98869,0.0,07/26/9062 +2.99843,45.12215,3289,10,19,22,40,16,3.75,27.5,fr,24319,65,996986,1,1,Active Shallow Crust,0.0,89.98869,0.0,10/19/3289 +2.99843,45.12215,1519,6,11,5,27,3,3.75,5.0,fr,24320,30,996987,1,1,Active Shallow Crust,240.0083,58.01763,0.0,06/11/1519 +2.99843,45.12215,5628,3,6,1,56,45,3.95,5.0,fr,24321,112,997008,1,1,Active Shallow Crust,0.0,89.99102,0.0,03/06/5628 +2.99843,45.12215,6379,5,19,6,7,51,3.95,5.0,fr,24322,127,997014,1,1,Active Shallow Crust,0.0,89.99091,-90.0,05/19/6379 +2.99843,45.12215,5128,3,7,8,29,35,4.15,5.0,fr,24323,102,997032,1,2,Active Shallow Crust,0.0,89.9893,0.0,03/07/5128 +2.99843,45.12215,4149,8,9,18,38,9,4.15,5.0,fr,24324,82,997032,1,2,Active Shallow Crust,0.0,89.9893,0.0,08/09/4149 +2.99843,45.12215,6673,5,12,21,28,22,4.25,5.0,fr,24325,133,997044,1,1,Active Shallow Crust,0.0,89.99046,0.0,05/12/6673 +2.99843,45.12215,2010,10,26,16,54,25,4.25,15.0,fr,24326,40,997054,1,1,Active Shallow Crust,128.8945,89.9809,0.0,10/26/2010 +2.99843,45.12215,3364,10,2,3,53,30,4.35,5.0,fr,24327,67,997065,1,1,Active Shallow Crust,128.898,89.98273,0.0,10/02/3364 +2.99843,45.12215,4494,6,4,20,12,15,4.85,5.0,fr,24328,89,997116,1,1,Active Shallow Crust,0.0,89.98965,0.0,06/04/4494 +2.99843,45.12215,9014,2,3,2,55,37,5.25,5.0,fr,24329,180,997173,1,1,Active Shallow Crust,128.884,89.98699,0.0,02/03/9014 +1.12586,47.7073,3865,8,22,4,26,6,3.55,5.0,fr,24330,77,997440,1,2,Active Shallow Crust,0.0,89.98982,0.0,08/22/3865 +1.12586,47.7073,5832,9,21,15,2,9,3.55,5.0,fr,24331,116,997440,1,2,Active Shallow Crust,0.0,89.98982,0.0,09/21/5832 +1.12586,47.7073,7656,3,12,18,25,33,3.55,15.0,fr,24332,153,997441,1,1,Active Shallow Crust,0.0,89.98982,0.0,03/12/7656 +1.12586,47.7073,3535,6,3,1,27,7,3.65,5.0,fr,24333,70,997452,1,1,Active Shallow Crust,0.0,89.98942,0.0,06/03/3535 +1.12586,47.7073,4380,6,9,8,54,6,3.85,5.0,fr,24334,87,997476,1,1,Active Shallow Crust,0.0,89.99039,0.0,06/09/4380 +1.12586,47.7073,4523,2,12,10,43,39,3.85,27.5,fr,24335,90,997478,1,1,Active Shallow Crust,0.0,89.99039,0.0,02/12/4523 +1.12586,47.7073,1469,10,8,14,9,50,4.15,5.0,fr,24336,29,997512,1,1,Active Shallow Crust,0.0,89.9898,0.0,10/08/1469 +1.12586,47.7073,5053,8,19,12,44,2,4.25,27.5,fr,24337,101,997526,1,1,Active Shallow Crust,0.0,89.99015,0.0,08/19/5053 +-1.97168,42.82453,8199,5,26,5,18,43,3.55,5.0,fr,24338,163,997920,1,1,Active Shallow Crust,0.0,89.99075,0.0,05/26/8199 +-1.97168,42.82453,4440,11,5,5,15,36,3.55,15.0,fr,24339,88,997921,1,1,Active Shallow Crust,0.0,89.99075,0.0,11/05/4440 +-1.97168,42.82453,1041,11,21,17,41,46,3.55,27.5,fr,24340,20,997922,1,1,Active Shallow Crust,0.0,89.99075,0.0,11/21/1041 +-1.97168,42.82453,7935,8,5,7,28,2,3.55,5.0,fr,24341,158,997923,1,1,Active Shallow Crust,240.0117,57.99813,0.0,08/05/7935 +-1.97168,42.82453,3360,8,8,4,32,32,3.55,15.0,fr,24342,67,997924,1,1,Active Shallow Crust,240.0117,57.99813,0.0,08/08/3360 +-1.97168,42.82453,3074,12,3,9,25,20,3.55,27.5,fr,24343,61,997925,1,1,Active Shallow Crust,240.0117,57.99804,0.0,12/03/3074 +-1.97168,42.82453,8315,3,19,21,57,12,3.55,15.0,fr,24344,166,997927,1,1,Active Shallow Crust,0.0,89.99065,-90.0,03/19/8315 +-1.97168,42.82453,6295,5,24,8,20,47,3.55,5.0,fr,24345,125,997929,1,1,Active Shallow Crust,128.8967,89.99353,0.0,05/24/6295 +-1.97168,42.82453,9268,7,9,23,37,29,3.65,5.0,fr,24346,185,997932,1,2,Active Shallow Crust,0.0,89.99011,0.0,07/09/9268 +-1.97168,42.82453,3111,5,21,6,55,55,3.65,5.0,fr,24347,62,997932,1,2,Active Shallow Crust,0.0,89.99011,0.0,05/21/3111 +-1.97168,42.82453,4582,6,26,0,24,29,3.65,15.0,fr,24348,91,997933,1,2,Active Shallow Crust,0.0,89.99011,0.0,06/26/4582 +-1.97168,42.82453,5696,2,24,11,15,55,3.65,15.0,fr,24349,113,997933,1,2,Active Shallow Crust,0.0,89.99011,0.0,02/24/5696 +-1.97168,42.82453,3093,8,14,16,58,47,3.75,5.0,fr,24350,61,997944,1,1,Active Shallow Crust,0.0,89.98972,0.0,08/14/3093 +-1.97168,42.82453,8992,5,21,3,38,55,3.75,15.0,fr,24351,179,997945,1,1,Active Shallow Crust,0.0,89.98972,0.0,05/21/8992 +-1.97168,42.82453,9508,6,28,1,1,14,3.75,27.5,fr,24352,190,997946,1,2,Active Shallow Crust,0.0,89.98972,0.0,06/28/9508 +-1.97168,42.82453,4834,1,20,19,41,36,3.75,27.5,fr,24353,96,997946,1,2,Active Shallow Crust,0.0,89.98972,0.0,01/20/4834 +-1.97168,42.82453,3003,10,2,20,21,19,3.75,5.0,fr,24354,60,997947,1,1,Active Shallow Crust,240.0077,58.01771,0.0,10/02/3003 +-1.97168,42.82453,2447,2,27,17,1,47,3.75,5.0,fr,24355,48,997953,1,1,Active Shallow Crust,128.8971,89.96729,0.0,02/27/2447 +-1.97168,42.82453,196,11,30,14,58,56,3.85,5.0,fr,24356,3,997956,1,3,Active Shallow Crust,0.0,89.98952,0.0,11/30/0196 +-1.97168,42.82453,1383,4,15,8,10,42,3.85,5.0,fr,24357,27,997956,1,3,Active Shallow Crust,0.0,89.98952,0.0,04/15/1383 +-1.97168,42.82453,585,11,29,15,16,7,3.85,5.0,fr,24358,11,997956,1,3,Active Shallow Crust,0.0,89.98952,0.0,11/29/0585 +-1.97168,42.82453,5318,9,30,7,40,19,3.85,15.0,fr,24359,106,997957,1,2,Active Shallow Crust,0.0,89.98952,0.0,09/30/5318 +-1.97168,42.82453,4915,6,4,22,27,29,3.85,15.0,fr,24360,98,997957,1,2,Active Shallow Crust,0.0,89.98952,0.0,06/04/4915 +-1.97168,42.82453,351,8,2,11,3,56,3.85,27.5,fr,24361,7,997958,1,1,Active Shallow Crust,0.0,89.98952,0.0,08/02/0351 +-1.97168,42.82453,2288,2,23,6,26,8,3.95,5.0,fr,24362,45,997968,1,3,Active Shallow Crust,0.0,89.9895,0.0,02/23/2288 +-1.97168,42.82453,7658,10,23,7,45,25,3.95,5.0,fr,24363,153,997968,1,3,Active Shallow Crust,0.0,89.9895,0.0,10/23/7658 +-1.97168,42.82453,8775,5,9,9,1,40,3.95,5.0,fr,24364,175,997968,1,3,Active Shallow Crust,0.0,89.9895,0.0,05/09/8775 +-1.97168,42.82453,1888,12,28,14,42,5,3.95,15.0,fr,24365,37,997969,1,1,Active Shallow Crust,0.0,89.9895,0.0,12/28/1888 +-1.97168,42.82453,6666,12,4,6,35,3,3.95,5.0,fr,24366,133,997971,1,1,Active Shallow Crust,240.0192,58.00488,0.0,12/04/6666 +-1.97168,42.82453,4103,1,5,9,54,10,3.95,5.0,fr,24367,82,997974,1,1,Active Shallow Crust,0.0,89.99056,-90.0,01/05/4103 +-1.97168,42.82453,1907,4,11,22,37,28,4.05,5.0,fr,24368,38,997980,1,2,Active Shallow Crust,0.0,89.9896,0.0,04/11/1907 +-1.97168,42.82453,3972,10,4,21,35,54,4.05,5.0,fr,24369,79,997980,1,2,Active Shallow Crust,0.0,89.9896,0.0,10/04/3972 +-1.97168,42.82453,3885,1,4,19,4,27,4.05,5.0,fr,24370,77,997983,1,1,Active Shallow Crust,240.0054,58.00579,0.0,01/04/3885 +-1.97168,42.82453,4254,11,15,20,27,32,4.15,5.0,fr,24371,85,997992,1,1,Active Shallow Crust,0.0,89.98981,0.0,11/15/4254 +-1.97168,42.82453,1904,11,5,21,8,11,4.35,5.0,fr,24372,38,998019,1,1,Active Shallow Crust,240.0076,57.99582,0.0,11/05/1904 +-1.97168,42.82453,4225,9,3,6,13,19,4.35,15.0,fr,24373,84,998026,1,1,Active Shallow Crust,128.8985,89.98277,0.0,09/03/4225 +-1.97168,42.82453,6839,2,16,20,20,36,4.45,5.0,fr,24374,136,998028,1,1,Active Shallow Crust,0.0,89.99016,0.0,02/16/6839 +-1.97168,42.82453,6245,7,30,20,57,6,4.45,5.0,fr,24375,124,998031,1,1,Active Shallow Crust,240.0044,57.99454,0.0,07/30/6245 +-1.97168,42.82453,9284,3,25,9,55,2,4.55,5.0,fr,24376,185,998040,1,1,Active Shallow Crust,0.0,89.99006,0.0,03/25/9284 +-1.97168,42.82453,9884,2,23,21,59,25,4.85,15.0,fr,24377,197,998077,1,1,Active Shallow Crust,0.0,89.99007,0.0,02/23/9884 +-1.97168,42.82453,3264,4,1,9,11,41,4.85,5.0,fr,24378,65,998082,1,1,Active Shallow Crust,0.0,89.98995,-90.0,04/01/3264 +-1.97168,42.82453,6579,7,1,5,52,47,4.95,5.0,fr,24379,131,998088,1,1,Active Shallow Crust,0.0,89.99004,0.0,07/01/6579 +-1.97168,42.82453,5128,7,1,14,50,17,5.45,5.0,fr,24380,102,998157,1,1,Active Shallow Crust,128.8812,89.99231,0.0,07/01/5128 +7.15908,50.15323,1241,9,3,23,46,37,3.55,5.0,fr,24381,24,998400,1,1,Active Shallow Crust,0.0,89.98708,0.0,09/03/1241 +7.15908,50.15323,2869,12,9,19,40,22,3.55,5.0,fr,24382,57,998406,1,1,Active Shallow Crust,0.0,89.98693,-90.0,12/09/2869 +7.15908,50.15323,1449,3,29,15,14,52,3.65,5.0,fr,24383,28,998412,1,1,Active Shallow Crust,0.0,89.98848,0.0,03/29/1449 +7.15908,50.15323,8730,7,13,22,46,15,3.75,15.0,fr,24384,174,998425,1,1,Active Shallow Crust,0.0,89.98974,0.0,07/13/8730 +7.15908,50.15323,3282,6,24,4,27,40,3.85,5.0,fr,24385,65,998436,1,1,Active Shallow Crust,0.0,89.99085,0.0,06/24/3282 +7.15908,50.15323,9092,10,13,3,10,54,3.95,5.0,fr,24386,181,998451,1,1,Active Shallow Crust,240.0198,58.00544,0.0,10/13/9092 +7.15908,50.15323,9828,7,31,17,19,47,4.15,5.0,fr,24387,196,998472,1,1,Active Shallow Crust,0.0,89.99029,0.0,07/31/9828 +7.15908,50.15323,3082,7,25,8,26,36,4.35,15.0,fr,24388,61,998497,1,1,Active Shallow Crust,0.0,89.98971,0.0,07/25/3082 +7.15908,50.15323,3734,10,21,4,31,20,4.35,5.0,fr,24389,74,998499,1,1,Active Shallow Crust,240.0091,57.99597,0.0,10/21/3734 +7.15908,50.15323,762,5,23,10,56,54,4.55,5.0,fr,24390,15,998526,1,1,Active Shallow Crust,0.0,89.98966,-90.0,05/23/0762 +7.15908,50.15323,7029,9,13,12,48,59,4.95,5.0,fr,24391,140,998568,1,1,Active Shallow Crust,0.0,89.98969,0.0,09/13/7029 +0.82523,43.51889,9623,7,26,5,56,12,3.65,27.5,fr,24392,192,999374,1,1,Active Shallow Crust,0.0,89.99023,0.0,07/26/9623 +0.82523,43.51889,8275,7,25,0,48,59,4.05,5.0,fr,24393,165,999423,1,1,Active Shallow Crust,240.0055,58.00577,0.0,07/25/8275 +0.82523,43.51889,6567,12,21,3,55,30,4.25,5.0,fr,24394,131,999444,1,1,Active Shallow Crust,0.0,89.9902,0.0,12/21/6567 +0.82523,43.51889,3337,3,8,20,49,35,4.85,15.0,fr,24395,66,999517,1,1,Active Shallow Crust,0.0,89.98997,0.0,03/08/3337 +0.82523,43.51889,8591,1,8,14,12,49,4.95,5.0,fr,24396,171,999537,1,1,Active Shallow Crust,128.891,89.98984,0.0,01/08/8591 +0.82523,43.51889,5942,5,30,19,3,24,5.85,5.0,fr,24397,118,999636,1,1,Active Shallow Crust,360.0,89.99003,0.0,05/30/5942 +0.01933,46.4304,7786,8,19,17,47,47,3.55,15.0,fr,24398,155,999841,1,2,Active Shallow Crust,0.0,89.99001,0.0,08/19/7786 +0.01933,46.4304,5656,5,5,16,59,25,3.55,15.0,fr,24399,113,999841,1,2,Active Shallow Crust,0.0,89.99001,0.0,05/05/5656 +0.01933,46.4304,777,10,24,8,13,48,3.65,15.0,fr,24400,15,999853,1,1,Active Shallow Crust,0.0,89.99001,0.0,10/24/0777 +0.01933,46.4304,8695,3,10,14,5,1,3.65,5.0,fr,24401,173,999858,1,1,Active Shallow Crust,0.0,89.98999,-90.0,03/10/8695 +0.01933,46.4304,1624,9,19,3,2,36,3.85,27.5,fr,24402,32,999878,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/19/1624 +0.01933,46.4304,4080,2,3,23,29,29,4.05,5.0,fr,24403,81,999900,1,1,Active Shallow Crust,0.0,89.99,0.0,02/03/4080 +0.01933,46.4304,6591,3,22,10,41,39,4.15,5.0,fr,24404,131,999912,1,1,Active Shallow Crust,0.0,89.99,0.0,03/22/6591 +0.01933,46.4304,4412,12,7,23,11,18,4.75,5.0,fr,24405,88,999993,1,1,Active Shallow Crust,128.8887,89.98808,0.0,12/07/4412 +0.01933,46.4304,5993,4,23,11,5,22,4.85,5.0,fr,24406,119,999996,1,1,Active Shallow Crust,360.0,89.99,0.0,04/23/5993 +1.26675,44.36779,8826,10,6,11,24,33,3.75,5.0,fr,24407,176,1000347,1,1,Active Shallow Crust,240.0081,58.01744,0.0,10/06/8826 +1.26675,44.36779,3930,1,7,3,59,26,3.95,5.0,fr,24408,78,1000368,1,1,Active Shallow Crust,0.0,89.98977,0.0,01/07/3930 +1.26675,44.36779,8666,11,30,7,26,37,4.05,5.0,fr,24409,173,1000380,1,1,Active Shallow Crust,0.0,89.98987,0.0,11/30/8666 +1.26675,44.36779,585,4,7,11,51,45,4.45,15.0,fr,24410,11,1000429,1,1,Active Shallow Crust,0.0,89.98977,0.0,04/07/0585 +-1.81237,49.91201,9488,4,20,19,34,38,3.55,27.5,fr,24411,189,1000805,1,1,Active Shallow Crust,240.0126,57.99829,0.0,04/20/9488 +-1.81237,49.91201,4891,9,8,5,48,55,3.65,5.0,fr,24412,97,1000812,1,1,Active Shallow Crust,0.0,89.98987,0.0,09/08/4891 +-1.81237,49.91201,4863,8,24,12,34,14,3.65,15.0,fr,24413,97,1000822,1,1,Active Shallow Crust,128.8999,89.96359,0.0,08/24/4863 +0.36144,50.69624,1855,2,2,4,59,53,3.75,5.0,fr,24414,37,1001304,1,1,Active Shallow Crust,0.0,89.98985,0.0,02/02/1855 +0.36144,50.69624,589,7,15,13,6,46,3.95,5.0,fr,24415,11,1001328,1,1,Active Shallow Crust,0.0,89.98992,0.0,07/15/0589 +0.36144,50.69624,6924,6,10,14,19,8,4.15,5.0,fr,24416,138,1001355,1,1,Active Shallow Crust,240.0093,57.99747,0.0,06/10/6924 +0.36144,50.69624,6128,7,21,16,42,17,4.35,5.0,fr,24417,122,1001376,1,1,Active Shallow Crust,0.0,89.98998,0.0,07/21/6128 +0.36144,50.69624,6844,11,15,14,9,24,5.15,5.0,fr,24418,136,1001472,1,1,Active Shallow Crust,0.0,89.99,0.0,11/15/6844 +0.36144,50.69624,6443,4,2,10,10,17,5.25,5.0,fr,24419,128,1001487,1,1,Active Shallow Crust,240.0285,58.00081,0.0,04/02/6443 +-3.21194,47.64563,8926,5,3,21,59,55,3.55,5.0,fr,24420,178,1001760,1,2,Active Shallow Crust,0.0,89.98981,0.0,05/03/8926 +-3.21194,47.64563,752,6,19,13,40,18,3.55,5.0,fr,24421,15,1001760,1,2,Active Shallow Crust,0.0,89.98981,0.0,06/19/0752 +-3.21194,47.64563,6148,9,5,12,6,17,3.55,5.0,fr,24422,122,1001763,1,2,Active Shallow Crust,240.0122,57.9977,0.0,09/05/6148 +-3.21194,47.64563,2597,2,24,8,15,1,3.55,5.0,fr,24423,51,1001763,1,2,Active Shallow Crust,240.0122,57.9977,0.0,02/24/2597 +-3.21194,47.64563,7369,11,19,19,2,11,3.65,5.0,fr,24424,147,1001772,1,1,Active Shallow Crust,0.0,89.99092,0.0,11/19/7369 +-3.21194,47.64563,3252,9,7,19,24,44,3.65,5.0,fr,24425,65,1001775,1,1,Active Shallow Crust,240.0012,58.01286,0.0,09/07/3252 +-3.21194,47.64563,316,10,21,3,22,57,3.65,5.0,fr,24426,6,1001778,1,1,Active Shallow Crust,0.0,89.99081,-90.0,10/21/0316 +-3.21194,47.64563,281,1,14,15,27,51,3.75,5.0,fr,24427,5,1001784,1,2,Active Shallow Crust,0.0,89.9892,0.0,01/14/0281 +-3.21194,47.64563,1528,4,12,17,51,28,3.75,5.0,fr,24428,30,1001784,1,2,Active Shallow Crust,0.0,89.9892,0.0,04/12/1528 +-3.21194,47.64563,7667,12,26,2,20,50,3.75,15.0,fr,24429,153,1001785,1,2,Active Shallow Crust,0.0,89.9892,0.0,12/26/7667 +-3.21194,47.64563,8900,5,10,12,3,43,3.75,15.0,fr,24430,177,1001785,1,2,Active Shallow Crust,0.0,89.9892,0.0,05/10/8900 +-3.21194,47.64563,1460,9,10,20,55,3,3.75,27.5,fr,24431,29,1001786,1,1,Active Shallow Crust,0.0,89.9892,0.0,09/10/1460 +-3.21194,47.64563,1876,6,4,14,50,41,3.85,5.0,fr,24432,37,1001796,1,1,Active Shallow Crust,0.0,89.99038,0.0,06/04/1876 +-3.21194,47.64563,238,4,18,19,42,10,3.95,5.0,fr,24433,4,1001808,1,1,Active Shallow Crust,0.0,89.98928,0.0,04/18/0238 +-3.21194,47.64563,674,2,6,16,44,12,4.15,5.0,fr,24434,13,1001832,1,1,Active Shallow Crust,0.0,89.98978,0.0,02/06/0674 +-3.21194,47.64563,5069,5,20,7,42,34,4.35,5.0,fr,24435,101,1001856,1,1,Active Shallow Crust,0.0,89.99053,0.0,05/20/5069 +-3.21194,47.64563,9485,8,4,19,7,42,4.45,5.0,fr,24436,189,1001868,1,1,Active Shallow Crust,0.0,89.99036,0.0,08/04/9485 +-3.21194,47.64563,4612,8,5,19,49,7,5.15,5.0,fr,24437,92,1001952,1,1,Active Shallow Crust,0.0,89.98977,0.0,08/05/4612 +-3.21194,47.64563,6415,6,14,22,29,14,5.75,15.0,fr,24438,128,1002025,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/14/6415 +5.43478,44.02262,5847,11,9,5,35,24,3.55,15.0,fr,24439,116,1002241,1,1,Active Shallow Crust,0.0,89.99275,0.0,11/09/5847 +5.43478,44.02262,3022,1,15,13,59,26,3.55,15.0,fr,24440,60,1002250,1,1,Active Shallow Crust,128.8955,89.99275,0.0,01/15/3022 +5.43478,44.02262,862,8,1,1,30,45,3.65,5.0,fr,24441,17,1002252,1,1,Active Shallow Crust,0.0,89.98708,0.0,08/01/0862 +5.43478,44.02262,6248,4,21,3,31,53,3.65,15.0,fr,24442,124,1002253,1,2,Active Shallow Crust,0.0,89.98708,0.0,04/21/6248 +5.43478,44.02262,9140,2,21,11,36,55,3.65,15.0,fr,24443,182,1002253,1,2,Active Shallow Crust,0.0,89.98708,0.0,02/21/9140 +5.43478,44.02262,757,1,13,1,35,39,3.65,5.0,fr,24444,15,1002255,1,1,Active Shallow Crust,240.0012,58.01316,0.0,01/13/0757 +5.43478,44.02262,8392,7,2,15,49,15,3.65,5.0,fr,24445,167,1002261,1,1,Active Shallow Crust,128.9014,89.96348,0.0,07/02/8392 +5.43478,44.02262,7703,2,15,11,35,28,3.75,5.0,fr,24446,154,1002264,1,2,Active Shallow Crust,0.0,89.98848,0.0,02/15/7703 +5.43478,44.02262,574,4,15,2,58,54,3.75,5.0,fr,24447,11,1002264,1,2,Active Shallow Crust,0.0,89.98848,0.0,04/15/0574 +5.43478,44.02262,6805,4,16,10,37,46,3.75,27.5,fr,24448,136,1002266,1,1,Active Shallow Crust,0.0,89.98848,0.0,04/16/6805 +5.43478,44.02262,2077,10,3,21,51,14,3.75,15.0,fr,24449,41,1002268,1,1,Active Shallow Crust,240.0073,58.01809,0.0,10/03/2077 +5.43478,44.02262,2156,1,13,12,33,41,3.85,5.0,fr,24450,43,1002276,1,1,Active Shallow Crust,0.0,89.98973,0.0,01/13/2156 +5.43478,44.02262,7458,2,20,8,29,36,3.85,5.0,fr,24451,149,1002282,1,2,Active Shallow Crust,0.0,89.98962,-90.0,02/20/7458 +5.43478,44.02262,4496,1,1,0,26,4,3.85,5.0,fr,24452,89,1002282,1,2,Active Shallow Crust,0.0,89.98962,-90.0,01/01/4496 +5.43478,44.02262,9028,6,26,3,50,38,3.95,15.0,fr,24453,180,1002289,1,1,Active Shallow Crust,0.0,89.99085,0.0,06/26/9028 +5.43478,44.02262,8731,3,14,13,7,40,3.95,5.0,fr,24454,174,1002294,1,1,Active Shallow Crust,0.0,89.99075,-90.0,03/14/8731 +5.43478,44.02262,8598,1,3,15,33,18,4.05,5.0,fr,24455,171,1002300,1,1,Active Shallow Crust,0.0,89.99184,0.0,01/03/8598 +5.43478,44.02262,6238,12,17,7,14,53,4.05,27.5,fr,24456,124,1002302,1,1,Active Shallow Crust,0.0,89.99184,0.0,12/17/6238 +5.43478,44.02262,2144,8,17,12,52,12,4.05,5.0,fr,24457,42,1002303,1,1,Active Shallow Crust,240.0059,58.00573,0.0,08/17/2144 +5.43478,44.02262,3437,12,9,19,28,53,4.15,5.0,fr,24458,68,1002312,1,1,Active Shallow Crust,0.0,89.9891,0.0,12/09/3437 +5.43478,44.02262,9026,4,20,21,6,27,4.15,15.0,fr,24459,180,1002313,1,1,Active Shallow Crust,0.0,89.9891,0.0,04/20/9026 +5.43478,44.02262,2931,10,20,0,3,47,4.25,5.0,fr,24460,58,1002324,1,1,Active Shallow Crust,0.0,89.99028,0.0,10/20/2931 +5.43478,44.02262,171,7,4,9,40,50,4.45,5.0,fr,24461,3,1002351,1,1,Active Shallow Crust,240.0049,57.99429,0.0,07/04/0171 +5.43478,44.02262,3492,10,11,3,46,59,4.55,5.0,fr,24462,69,1002360,1,2,Active Shallow Crust,0.0,89.99083,0.0,10/11/3492 +5.43478,44.02262,7559,2,15,6,34,52,4.55,5.0,fr,24463,151,1002360,1,2,Active Shallow Crust,0.0,89.99083,0.0,02/15/7559 +5.43478,44.02262,7314,6,25,21,47,21,5.15,15.0,fr,24464,146,1002433,1,1,Active Shallow Crust,0.0,89.98965,0.0,06/25/7314 +5.43478,44.02262,4980,6,13,10,7,33,5.25,5.0,fr,24465,99,1002444,1,1,Active Shallow Crust,0.0,89.98975,0.0,06/13/4980 +6.67001,48.84311,1228,7,27,2,22,16,3.55,5.0,fr,24466,24,1002720,1,1,Active Shallow Crust,0.0,89.98672,0.0,07/27/1228 +6.67001,48.84311,4640,12,28,4,49,0,3.75,5.0,fr,24467,92,1002744,1,1,Active Shallow Crust,0.0,89.98946,0.0,12/28/4640 +6.67001,48.84311,7785,1,24,22,30,35,3.95,5.0,fr,24468,155,1002768,1,1,Active Shallow Crust,0.0,89.99162,0.0,01/24/7785 +6.67001,48.84311,1881,12,20,11,47,38,4.55,5.0,fr,24469,37,1002840,1,1,Active Shallow Crust,0.0,89.9895,0.0,12/20/1881 +2.68397,47.2692,3168,1,12,10,25,48,4.25,15.0,fr,24470,63,1003285,1,1,Active Shallow Crust,0.0,89.9893,0.0,01/12/3168 +2.68397,47.2692,8273,2,15,0,15,54,4.45,15.0,fr,24471,165,1003312,1,1,Active Shallow Crust,240.0056,57.99463,0.0,02/15/8273 +2.68397,47.2692,6702,11,6,11,42,44,4.95,5.0,fr,24472,134,1003368,1,1,Active Shallow Crust,0.0,89.98976,0.0,11/06/6702 +-0.56543,47.59697,5907,2,18,8,49,21,3.55,5.0,fr,24473,118,1003680,1,3,Active Shallow Crust,0.0,89.9898,0.0,02/18/5907 +-0.56543,47.59697,4229,5,22,15,54,6,3.55,5.0,fr,24474,84,1003680,1,3,Active Shallow Crust,0.0,89.9898,0.0,05/22/4229 +-0.56543,47.59697,4832,1,17,10,20,35,3.55,5.0,fr,24475,96,1003680,1,3,Active Shallow Crust,0.0,89.9898,0.0,01/17/4832 +-0.56543,47.59697,2397,11,21,2,12,54,3.55,5.0,fr,24476,47,1003683,1,1,Active Shallow Crust,240.0123,57.9982,0.0,11/21/2397 +-0.56543,47.59697,3535,2,24,7,53,4,3.55,5.0,fr,24477,70,1003689,1,1,Active Shallow Crust,128.8961,89.99362,0.0,02/24/3535 +-0.56543,47.59697,7294,6,17,17,50,36,3.65,5.0,fr,24478,145,1003692,1,2,Active Shallow Crust,0.0,89.99015,0.0,06/17/7294 +-0.56543,47.59697,842,3,11,3,4,19,3.65,5.0,fr,24479,16,1003692,1,2,Active Shallow Crust,0.0,89.99015,0.0,03/11/0842 +-0.56543,47.59697,6568,4,18,22,10,15,3.65,5.0,fr,24480,131,1003695,1,2,Active Shallow Crust,240.0012,58.01281,0.0,04/18/6568 +-0.56543,47.59697,5340,1,3,8,45,1,3.65,5.0,fr,24481,106,1003695,1,2,Active Shallow Crust,240.0012,58.01281,0.0,01/03/5340 +-0.56543,47.59697,3439,5,23,3,51,19,3.65,15.0,fr,24482,68,1003696,1,1,Active Shallow Crust,240.0012,58.01281,0.0,05/23/3439 +-0.56543,47.59697,2240,4,28,0,0,54,3.75,5.0,fr,24483,44,1003704,1,2,Active Shallow Crust,0.0,89.98988,0.0,04/28/2240 +-0.56543,47.59697,8234,8,24,22,9,44,3.75,5.0,fr,24484,164,1003704,1,2,Active Shallow Crust,0.0,89.98988,0.0,08/24/8234 +-0.56543,47.59697,7261,3,4,2,17,49,3.75,15.0,fr,24485,145,1003711,1,1,Active Shallow Crust,0.0,89.98975,-90.0,03/04/7261 +-0.56543,47.59697,2649,10,13,10,13,43,3.85,5.0,fr,24486,52,1003716,1,3,Active Shallow Crust,0.0,89.98977,0.0,10/13/2649 +-0.56543,47.59697,2336,1,24,9,39,2,3.85,5.0,fr,24487,46,1003716,1,3,Active Shallow Crust,0.0,89.98977,0.0,01/24/2336 +-0.56543,47.59697,4860,10,1,17,41,5,3.85,5.0,fr,24488,97,1003716,1,3,Active Shallow Crust,0.0,89.98977,0.0,10/01/4860 +-0.56543,47.59697,3891,5,19,15,5,33,3.85,15.0,fr,24489,77,1003717,1,3,Active Shallow Crust,0.0,89.98977,0.0,05/19/3891 +-0.56543,47.59697,7495,1,30,22,57,26,3.85,15.0,fr,24490,149,1003717,1,3,Active Shallow Crust,0.0,89.98977,0.0,01/30/7495 +-0.56543,47.59697,7538,11,20,13,56,19,3.85,15.0,fr,24491,150,1003717,1,3,Active Shallow Crust,0.0,89.98977,0.0,11/20/7538 +-0.56543,47.59697,7967,5,5,7,41,41,3.95,5.0,fr,24492,159,1003728,1,1,Active Shallow Crust,0.0,89.98981,0.0,05/05/7967 +-0.56543,47.59697,283,9,13,10,22,8,4.05,15.0,fr,24493,5,1003741,1,1,Active Shallow Crust,0.0,89.98996,0.0,09/13/0283 +-0.56543,47.59697,3866,5,16,0,26,3,4.25,5.0,fr,24494,77,1003764,1,2,Active Shallow Crust,0.0,89.99013,0.0,05/16/3866 +-0.56543,47.59697,4842,2,16,20,1,27,4.25,5.0,fr,24495,96,1003764,1,2,Active Shallow Crust,0.0,89.99013,0.0,02/16/4842 +-0.56543,47.59697,8781,2,11,10,16,54,4.25,15.0,fr,24496,175,1003765,1,1,Active Shallow Crust,0.0,89.99013,0.0,02/11/8781 +-0.56543,47.59697,2781,10,9,23,24,33,4.25,15.0,fr,24497,55,1003774,1,1,Active Shallow Crust,128.894,89.98093,0.0,10/09/2781 +-0.56543,47.59697,33,9,18,12,28,11,4.35,15.0,fr,24498,0,1003777,1,1,Active Shallow Crust,0.0,89.98985,0.0,09/18/0033 +-0.56543,47.59697,3001,12,15,12,1,27,4.45,5.0,fr,24499,60,1003788,1,1,Active Shallow Crust,0.0,89.99004,0.0,12/15/3001 +-0.56543,47.59697,4568,5,13,1,10,5,4.55,15.0,fr,24500,91,1003801,1,1,Active Shallow Crust,0.0,89.99005,0.0,05/13/4568 +-0.56543,47.59697,2527,11,7,0,12,36,4.85,5.0,fr,24501,50,1003836,1,1,Active Shallow Crust,0.0,89.98991,0.0,11/07/2527 +-0.56543,47.59697,92,8,3,13,56,52,5.25,5.0,fr,24502,1,1003884,1,1,Active Shallow Crust,0.0,89.99003,0.0,08/03/0092 +4.76084,45.51151,5464,10,12,9,51,29,3.55,5.0,fr,24503,109,1004160,1,2,Active Shallow Crust,0.0,89.99294,0.0,10/12/5464 +4.76084,45.51151,9918,4,26,3,14,10,3.55,5.0,fr,24504,198,1004160,1,2,Active Shallow Crust,0.0,89.99294,0.0,04/26/9918 +4.76084,45.51151,5153,2,18,14,3,27,3.55,15.0,fr,24505,103,1004164,1,1,Active Shallow Crust,240.0135,57.99763,0.0,02/18/5153 +4.76084,45.51151,3120,4,9,15,8,40,3.65,5.0,fr,24506,62,1004172,1,1,Active Shallow Crust,0.0,89.9874,0.0,04/09/3120 +4.76084,45.51151,8724,12,3,0,56,19,3.65,15.0,fr,24507,174,1004173,1,1,Active Shallow Crust,0.0,89.9874,0.0,12/03/8724 +4.76084,45.51151,8193,11,24,14,33,54,3.75,5.0,fr,24508,163,1004184,1,1,Active Shallow Crust,0.0,89.98878,0.0,11/24/8193 +4.76084,45.51151,9754,4,1,12,33,51,3.85,15.0,fr,24509,195,1004197,1,1,Active Shallow Crust,0.0,89.99,0.0,04/01/9754 +4.76084,45.51151,7432,11,21,4,49,13,4.05,5.0,fr,24510,148,1004220,1,2,Active Shallow Crust,0.0,89.98808,0.0,11/21/7432 +4.76084,45.51151,4865,9,21,7,40,56,4.05,5.0,fr,24511,97,1004220,1,2,Active Shallow Crust,0.0,89.98808,0.0,09/21/4865 +4.76084,45.51151,5531,10,22,10,34,22,4.25,27.5,fr,24512,110,1004249,1,1,Active Shallow Crust,240.0078,57.99367,0.0,10/22/5531 +4.76084,45.51151,7622,11,7,14,30,25,4.55,15.0,fr,24513,152,1004284,1,1,Active Shallow Crust,240.0089,57.99724,0.0,11/07/7622 +2.56971,52.44196,4184,6,19,7,32,38,3.85,5.0,fr,24514,83,1004676,1,1,Active Shallow Crust,0.0,89.98912,0.0,06/19/4184 +2.56971,52.44196,9814,10,12,20,33,9,4.05,15.0,fr,24515,196,1004704,1,1,Active Shallow Crust,240.007,58.00585,0.0,10/12/9814 +-1.45061,45.90226,3737,6,30,23,22,36,3.55,5.0,fr,24516,74,1005600,1,1,Active Shallow Crust,0.0,89.98947,0.0,06/30/3737 +-1.45061,45.90226,9143,5,14,9,48,9,3.55,15.0,fr,24517,182,1005601,1,1,Active Shallow Crust,0.0,89.98947,0.0,05/14/9143 +-1.45061,45.90226,1756,6,13,20,26,19,3.65,5.0,fr,24518,35,1005612,1,1,Active Shallow Crust,0.0,89.99062,0.0,06/13/1756 +-1.45061,45.90226,4151,1,5,22,53,8,3.65,15.0,fr,24519,83,1005613,1,1,Active Shallow Crust,0.0,89.99062,0.0,01/05/4151 +-1.45061,45.90226,2678,5,12,12,37,47,3.65,27.5,fr,24520,53,1005614,1,1,Active Shallow Crust,0.0,89.99062,0.0,05/12/2678 +-1.45061,45.90226,4947,12,8,10,54,6,3.65,5.0,fr,24521,98,1005615,1,1,Active Shallow Crust,240.0009,58.01284,0.0,12/08/4947 +-1.45061,45.90226,4754,6,6,23,0,6,3.65,15.0,fr,24522,95,1005619,1,1,Active Shallow Crust,0.0,89.99051,-90.0,06/06/4754 +-1.45061,45.90226,2249,8,18,11,23,43,3.75,5.0,fr,24523,44,1005624,1,1,Active Shallow Crust,0.0,89.99024,0.0,08/18/2249 +-1.45061,45.90226,5860,4,7,12,55,14,3.75,5.0,fr,24524,117,1005627,1,1,Active Shallow Crust,240.0083,58.01731,0.0,04/07/5860 +-1.45061,45.90226,4780,5,19,23,46,34,3.75,15.0,fr,24525,95,1005628,1,1,Active Shallow Crust,240.0083,58.01731,0.0,05/19/4780 +-1.45061,45.90226,8470,4,15,12,17,0,3.75,5.0,fr,24526,169,1005630,1,1,Active Shallow Crust,0.0,89.99014,-90.0,04/15/8470 +-1.45061,45.90226,9687,7,10,17,13,37,3.85,5.0,fr,24527,193,1005636,1,1,Active Shallow Crust,0.0,89.99007,0.0,07/10/9687 +-1.45061,45.90226,6223,10,9,0,56,25,3.85,15.0,fr,24528,124,1005637,1,1,Active Shallow Crust,0.0,89.99007,0.0,10/09/6223 +-1.45061,45.90226,9172,6,20,14,34,29,3.95,5.0,fr,24529,183,1005648,1,1,Active Shallow Crust,0.0,89.99004,0.0,06/20/9172 +-1.45061,45.90226,1428,4,16,7,59,28,3.95,5.0,fr,24530,28,1005651,1,1,Active Shallow Crust,240.0197,58.00502,0.0,04/16/1428 +-1.45061,45.90226,3773,6,27,8,5,21,3.95,5.0,fr,24531,75,1005654,1,1,Active Shallow Crust,0.0,89.98992,-90.0,06/27/3773 +-1.45061,45.90226,217,4,20,11,2,34,4.05,15.0,fr,24532,4,1005661,1,1,Active Shallow Crust,0.0,89.99014,0.0,04/20/0217 +-1.45061,45.90226,2355,12,4,22,31,21,4.15,15.0,fr,24533,47,1005673,1,1,Active Shallow Crust,0.0,89.99033,0.0,12/04/2355 +-1.45061,45.90226,2625,8,10,23,3,7,4.25,5.0,fr,24534,52,1005684,1,1,Active Shallow Crust,0.0,89.98981,0.0,08/10/2625 +-1.45061,45.90226,6323,11,10,8,44,35,4.45,5.0,fr,24535,126,1005708,1,1,Active Shallow Crust,0.0,89.99004,0.0,11/10/6323 +-1.45061,45.90226,8823,3,8,9,6,35,4.45,5.0,fr,24536,176,1005711,1,1,Active Shallow Crust,240.0052,57.99464,0.0,03/08/8823 +-1.45061,45.90226,3556,8,1,12,2,3,4.65,5.0,fr,24537,71,1005735,1,1,Active Shallow Crust,240.0107,57.99426,0.0,08/01/3556 +-1.45061,45.90226,4826,2,3,9,2,21,4.95,27.5,fr,24538,96,1005770,1,1,Active Shallow Crust,0.0,89.98985,0.0,02/03/4826 +4.05163,44.62451,5837,6,24,19,16,58,3.55,5.0,fr,24539,116,1006083,1,1,Active Shallow Crust,240.0104,57.99889,0.0,06/24/5837 +4.05163,44.62451,2249,8,12,18,37,50,3.65,15.0,fr,24540,44,1006093,1,1,Active Shallow Crust,0.0,89.98721,0.0,08/12/2249 +4.05163,44.62451,3985,1,7,3,46,37,4.05,5.0,fr,24541,79,1006146,1,1,Active Shallow Crust,0.0,89.99184,-90.0,01/07/3985 +4.05163,44.62451,9132,6,22,18,0,6,4.45,15.0,fr,24542,182,1006198,1,1,Active Shallow Crust,128.893,89.99364,0.0,06/22/9132 +4.05163,44.62451,1917,9,23,17,1,8,4.95,5.0,fr,24543,38,1006254,1,1,Active Shallow Crust,0.0,89.98986,-90.0,09/23/1917 +4.38268,50.04187,3425,10,1,0,0,3,3.75,5.0,fr,24544,68,1006593,1,1,Active Shallow Crust,128.8961,89.96755,0.0,10/01/3425 +4.38268,50.04187,6894,10,24,19,10,28,4.25,15.0,fr,24545,137,1006654,1,1,Active Shallow Crust,128.8935,89.98108,0.0,10/24/6894 +4.38268,50.04187,6735,2,20,10,8,41,4.65,5.0,fr,24546,134,1006692,1,1,Active Shallow Crust,0.0,89.99088,0.0,02/20/6735 +7.86391,49.3591,413,11,1,20,4,50,3.65,5.0,fr,24547,8,1007532,1,2,Active Shallow Crust,0.0,89.9883,0.0,11/01/0413 +7.86391,49.3591,8527,1,4,7,39,22,3.65,5.0,fr,24548,170,1007532,1,2,Active Shallow Crust,0.0,89.9883,0.0,01/04/8527 +7.86391,49.3591,6242,2,18,22,56,1,3.75,5.0,fr,24549,124,1007544,1,1,Active Shallow Crust,0.0,89.98956,0.0,02/18/6242 +7.86391,49.3591,2441,5,5,10,59,40,3.85,15.0,fr,24550,48,1007557,1,1,Active Shallow Crust,0.0,89.9907,0.0,05/05/2441 +7.86391,49.3591,513,6,1,5,32,44,3.95,5.0,fr,24551,10,1007568,1,1,Active Shallow Crust,0.0,89.99171,0.0,06/01/0513 +7.86391,49.3591,6590,1,1,5,37,58,4.05,15.0,fr,24552,131,1007581,1,1,Active Shallow Crust,0.0,89.98892,0.0,01/01/6590 +7.86391,49.3591,2867,7,5,10,55,53,4.25,5.0,fr,24553,57,1007604,1,1,Active Shallow Crust,0.0,89.9912,0.0,07/05/2867 +7.86391,49.3591,7827,11,18,4,37,24,4.45,5.0,fr,24554,156,1007628,1,1,Active Shallow Crust,0.0,89.99068,0.0,11/18/7827 +1.41377,48.91187,4280,4,9,10,54,39,3.55,15.0,fr,24555,85,1008001,1,1,Active Shallow Crust,0.0,89.99006,0.0,04/09/4280 +1.41377,48.91187,1347,9,10,3,18,17,3.85,5.0,fr,24556,26,1008039,1,1,Active Shallow Crust,240.0113,57.99776,0.0,09/10/1347 +1.41377,48.91187,3059,6,7,7,55,16,4.15,5.0,fr,24557,61,1008072,1,1,Active Shallow Crust,0.0,89.99004,0.0,06/07/3059 +4.10406,43.70719,2313,9,15,23,29,55,3.55,5.0,fr,24558,46,1008480,1,1,Active Shallow Crust,0.0,89.99271,0.0,09/15/2313 +4.10406,43.70719,4781,1,14,10,32,44,3.55,15.0,fr,24559,95,1008481,1,1,Active Shallow Crust,0.0,89.99271,0.0,01/14/4781 +4.10406,43.70719,5387,4,4,9,37,43,3.65,15.0,fr,24560,107,1008493,1,2,Active Shallow Crust,0.0,89.98701,0.0,04/04/5387 +4.10406,43.70719,7371,2,14,10,20,55,3.65,15.0,fr,24561,147,1008493,1,2,Active Shallow Crust,0.0,89.98701,0.0,02/14/7371 +4.10406,43.70719,7895,6,7,18,39,57,3.85,15.0,fr,24562,157,1008517,1,1,Active Shallow Crust,0.0,89.98968,0.0,06/07/7895 +4.10406,43.70719,9083,4,8,23,3,51,3.95,15.0,fr,24563,181,1008535,1,1,Active Shallow Crust,0.0,89.99069,-90.0,04/08/9083 +4.10406,43.70719,6821,9,24,20,58,55,3.95,5.0,fr,24564,136,1008537,1,1,Active Shallow Crust,128.9017,89.9931,0.0,09/24/6821 +4.10406,43.70719,6944,3,8,0,52,47,4.05,5.0,fr,24565,138,1008540,1,1,Active Shallow Crust,0.0,89.9918,0.0,03/08/6944 +4.10406,43.70719,9915,1,28,7,21,56,4.05,5.0,fr,24566,198,1008549,1,1,Active Shallow Crust,128.8918,89.99385,0.0,01/28/9915 +4.10406,43.70719,2353,11,5,22,21,44,4.35,5.0,fr,24567,47,1008576,1,1,Active Shallow Crust,0.0,89.99129,0.0,11/05/2353 +0.92052,50.19966,3363,11,23,6,22,19,3.55,15.0,fr,24568,67,1008961,1,1,Active Shallow Crust,0.0,89.99032,0.0,11/23/3363 +0.92052,50.19966,1090,1,11,15,36,51,3.55,5.0,fr,24569,21,1008969,1,1,Active Shallow Crust,128.896,89.99395,0.0,01/11/1090 +0.92052,50.19966,6198,12,23,4,8,52,3.65,5.0,fr,24570,123,1008972,1,2,Active Shallow Crust,0.0,89.98993,0.0,12/23/6198 +0.92052,50.19966,2586,9,2,4,21,57,3.65,5.0,fr,24571,51,1008972,1,2,Active Shallow Crust,0.0,89.98993,0.0,09/02/2586 +0.92052,50.19966,2405,9,15,15,35,56,3.65,5.0,fr,24572,48,1008978,1,1,Active Shallow Crust,0.0,89.98981,-90.0,09/15/2405 +0.92052,50.19966,9724,5,19,14,58,7,3.85,15.0,fr,24573,194,1008997,1,1,Active Shallow Crust,0.0,89.98972,0.0,05/19/9724 +0.92052,50.19966,9081,2,27,22,59,5,4.15,5.0,fr,24574,181,1009041,1,1,Active Shallow Crust,128.8969,89.99374,0.0,02/27/9081 +0.92052,50.19966,3071,9,18,12,0,3,4.65,15.0,fr,24575,61,1009099,1,1,Active Shallow Crust,0.0,89.9901,-90.0,09/18/3071 +0.92052,50.19966,3119,12,15,9,11,24,5.35,15.0,fr,24576,62,1009180,1,1,Active Shallow Crust,240.028,57.99836,0.0,12/15/3119 +2.0132,47.49075,5032,8,19,16,31,10,3.55,15.0,fr,24577,100,1009441,1,1,Active Shallow Crust,0.0,89.98978,0.0,08/19/5032 +2.0132,47.49075,4096,11,25,7,2,26,3.75,5.0,fr,24578,81,1009464,1,1,Active Shallow Crust,0.0,89.98917,0.0,11/25/4096 +2.0132,47.49075,2791,10,7,13,24,46,3.95,15.0,fr,24579,55,1009498,1,1,Active Shallow Crust,128.9001,89.99463,0.0,10/07/2791 +2.0132,47.49075,285,10,4,10,18,46,4.25,5.0,fr,24580,5,1009524,1,1,Active Shallow Crust,0.0,89.98935,0.0,10/04/0285 +2.0132,47.49075,4596,6,14,13,4,43,4.65,5.0,fr,24581,91,1009572,1,1,Active Shallow Crust,0.0,89.99039,0.0,06/14/4596 +1.61294,43.58473,7187,7,8,9,28,49,3.55,5.0,fr,24582,143,1009929,1,1,Active Shallow Crust,128.8965,89.99361,0.0,07/08/7187 +1.61294,43.58473,1128,12,29,14,16,50,3.85,5.0,fr,24583,22,1009956,1,1,Active Shallow Crust,0.0,89.98965,0.0,12/29/1128 +5.84185,46.95363,9613,6,23,13,50,41,3.55,5.0,fr,24584,192,1010400,1,2,Active Shallow Crust,0.0,89.99312,0.0,06/23/9613 +5.84185,46.95363,1361,5,10,8,21,20,3.55,5.0,fr,24585,27,1010400,1,2,Active Shallow Crust,0.0,89.99312,0.0,05/10/1361 +5.84185,46.95363,8303,4,13,22,56,26,3.55,15.0,fr,24586,166,1010401,1,1,Active Shallow Crust,0.0,89.99312,0.0,04/13/8303 +5.84185,46.95363,7199,7,6,17,7,49,3.55,15.0,fr,24587,143,1010404,1,1,Active Shallow Crust,240.012,57.99826,0.0,07/06/7199 +5.84185,46.95363,4723,4,4,11,29,42,3.55,5.0,fr,24588,94,1010409,1,1,Active Shallow Crust,128.8959,89.99312,0.0,04/04/4723 +5.84185,46.95363,9083,10,5,15,42,14,3.65,5.0,fr,24589,181,1010412,1,1,Active Shallow Crust,0.0,89.98773,0.0,10/05/9083 +5.84185,46.95363,1299,10,10,4,39,11,3.65,15.0,fr,24590,25,1010413,1,1,Active Shallow Crust,0.0,89.98773,0.0,10/10/1299 +5.84185,46.95363,5415,10,24,13,55,21,3.65,27.5,fr,24591,108,1010420,1,1,Active Shallow Crust,0.0,89.98759,-90.0,10/24/5415 +5.84185,46.95363,9616,9,13,3,20,32,3.85,15.0,fr,24592,192,1010443,1,1,Active Shallow Crust,0.0,89.99014,-90.0,09/13/9616 +5.84185,46.95363,3155,5,19,6,6,51,3.85,5.0,fr,24593,63,1010445,1,1,Active Shallow Crust,128.8957,89.99269,0.0,05/19/3155 +5.84185,46.95363,848,8,11,2,40,49,4.05,5.0,fr,24594,16,1010460,1,2,Active Shallow Crust,0.0,89.98839,0.0,08/11/0848 +5.84185,46.95363,8023,12,28,23,45,53,4.05,5.0,fr,24595,160,1010460,1,2,Active Shallow Crust,0.0,89.98839,0.0,12/28/8023 +5.84185,46.95363,2857,12,31,20,19,47,4.55,5.0,fr,24596,57,1010526,1,1,Active Shallow Crust,0.0,89.98899,-90.0,12/31/2857 +5.84185,46.95363,9063,12,19,21,12,58,4.65,5.0,fr,24597,181,1010535,1,1,Active Shallow Crust,240.0108,57.99427,0.0,12/19/9063 +5.84185,46.95363,2228,6,5,3,35,52,4.75,5.0,fr,24598,44,1010547,1,1,Active Shallow Crust,240.0077,58.00455,0.0,06/05/2228 +2.86743,50.91473,1905,4,25,22,49,52,3.55,5.0,fr,24599,38,1010886,1,1,Active Shallow Crust,0.0,89.99036,-90.0,04/25/1905 +2.86743,50.91473,7952,12,5,3,8,48,3.65,5.0,fr,24600,159,1010892,1,1,Active Shallow Crust,0.0,89.98867,0.0,12/05/7952 +2.86743,50.91473,1308,3,1,5,13,46,3.65,5.0,fr,24601,26,1010898,1,1,Active Shallow Crust,0.0,89.9914,-90.0,03/01/1308 +2.86743,50.91473,288,11,21,5,15,27,3.65,15.0,fr,24602,5,1010902,1,1,Active Shallow Crust,128.9,89.96361,0.0,11/21/0288 +2.86743,50.91473,7549,6,9,16,46,57,3.75,5.0,fr,24603,150,1010904,1,2,Active Shallow Crust,0.0,89.9899,0.0,06/09/7549 +2.86743,50.91473,7531,1,7,1,15,21,3.75,5.0,fr,24604,150,1010904,1,2,Active Shallow Crust,0.0,89.9899,0.0,01/07/7531 +2.86743,50.91473,6601,2,9,0,14,23,4.05,5.0,fr,24605,132,1010943,1,1,Active Shallow Crust,240.0065,58.00599,0.0,02/09/6601 +2.86743,50.91473,770,7,26,4,2,20,4.05,15.0,fr,24606,15,1010947,1,1,Active Shallow Crust,0.0,89.98915,-90.0,07/26/0770 +2.86743,50.91473,8901,4,10,1,4,43,4.15,5.0,fr,24607,178,1010952,1,1,Active Shallow Crust,0.0,89.99044,0.0,04/10/8901 +0.74658,50.97366,3293,5,30,14,4,35,3.65,15.0,fr,24608,65,1011373,1,1,Active Shallow Crust,0.0,89.9901,0.0,05/30/3293 +0.74658,50.97366,1410,11,21,20,44,5,3.65,27.5,fr,24609,28,1011374,1,1,Active Shallow Crust,0.0,89.9901,0.0,11/21/1410 +0.74658,50.97366,8692,10,3,16,24,12,3.65,5.0,fr,24610,173,1011378,1,1,Active Shallow Crust,0.0,89.98998,-90.0,10/03/8692 +0.74658,50.97366,304,1,18,14,35,38,3.65,5.0,fr,24611,6,1011381,1,1,Active Shallow Crust,128.9,89.96355,0.0,01/18/0304 +0.74658,50.97366,8330,2,9,22,26,52,3.85,27.5,fr,24612,166,1011401,1,1,Active Shallow Crust,240.0116,57.99794,0.0,02/09/8330 +0.74658,50.97366,4283,4,5,19,58,52,4.15,5.0,fr,24613,85,1011432,1,1,Active Shallow Crust,0.0,89.99005,0.0,04/05/4283 +0.74658,50.97366,3419,8,11,23,26,19,4.35,5.0,fr,24614,68,1011456,1,1,Active Shallow Crust,0.0,89.98989,0.0,08/11/3419 +0.74658,50.97366,7137,10,29,15,25,59,4.35,5.0,fr,24615,142,1011459,1,1,Active Shallow Crust,240.0096,57.99614,0.0,10/29/7137 +0.74658,50.97366,2140,4,1,7,50,8,5.05,5.0,fr,24616,42,1011549,1,1,Active Shallow Crust,128.8833,89.99047,0.0,04/01/2140 +2.11809,44.19547,8072,3,2,6,13,26,3.55,5.0,fr,24617,161,1011843,1,1,Active Shallow Crust,240.0122,57.99826,0.0,03/02/8072 +2.11809,44.19547,3417,3,18,0,45,39,3.65,5.0,fr,24618,68,1011852,1,1,Active Shallow Crust,0.0,89.99033,0.0,03/18/3417 +2.11809,44.19547,1315,12,28,2,0,23,3.65,5.0,fr,24619,26,1011855,1,1,Active Shallow Crust,240.0004,58.01283,0.0,12/28/1315 +2.11809,44.19547,5174,5,20,21,25,45,3.85,27.5,fr,24620,103,1011878,1,1,Active Shallow Crust,0.0,89.98976,0.0,05/20/5174 +2.11809,44.19547,8610,3,14,5,43,50,3.95,5.0,fr,24621,172,1011897,1,1,Active Shallow Crust,128.9002,89.9943,0.0,03/14/8610 +2.11809,44.19547,4973,8,22,5,44,35,4.15,5.0,fr,24622,99,1011912,1,1,Active Shallow Crust,0.0,89.98913,0.0,08/22/4973 +2.11809,44.19547,1830,5,8,1,35,41,4.25,5.0,fr,24623,36,1011924,1,1,Active Shallow Crust,0.0,89.99031,0.0,05/08/1830 +2.11809,44.19547,6890,12,30,7,17,10,4.35,5.0,fr,24624,137,1011936,1,1,Active Shallow Crust,0.0,89.98993,0.0,12/30/6890 +2.11809,44.19547,5877,12,29,18,22,33,4.35,5.0,fr,24625,117,1011939,1,1,Active Shallow Crust,240.0078,57.99594,0.0,12/29/5877 +5.70465,51.08345,2907,7,29,20,7,14,3.55,5.0,fr,24626,58,1012323,1,1,Active Shallow Crust,240.0131,57.99828,0.0,07/29/2907 +5.70465,51.08345,5482,11,19,22,49,19,3.65,5.0,fr,24627,109,1012332,1,2,Active Shallow Crust,0.0,89.98871,0.0,11/19/5482 +5.70465,51.08345,9240,8,14,19,28,14,3.65,5.0,fr,24628,184,1012332,1,2,Active Shallow Crust,0.0,89.98871,0.0,08/14/9240 +5.70465,51.08345,8713,5,26,0,43,50,3.65,27.5,fr,24629,174,1012334,1,1,Active Shallow Crust,0.0,89.98871,0.0,05/26/8713 +5.70465,51.08345,8104,8,14,15,57,37,3.75,5.0,fr,24630,162,1012344,1,1,Active Shallow Crust,0.0,89.98994,0.0,08/14/8104 +5.70465,51.08345,183,12,26,2,19,37,3.85,5.0,fr,24631,3,1012356,1,1,Active Shallow Crust,0.0,89.99103,0.0,12/26/0183 +5.70465,51.08345,5183,3,22,10,16,13,4.05,5.0,fr,24632,103,1012380,1,3,Active Shallow Crust,0.0,89.98931,0.0,03/22/5183 +5.70465,51.08345,5782,12,20,15,43,58,4.05,5.0,fr,24633,115,1012380,1,3,Active Shallow Crust,0.0,89.98931,0.0,12/20/5782 +5.70465,51.08345,2792,7,8,4,0,50,4.05,5.0,fr,24634,55,1012380,1,3,Active Shallow Crust,0.0,89.98931,0.0,07/08/2792 +5.70465,51.08345,2596,8,9,15,14,3,4.15,15.0,fr,24635,51,1012399,1,1,Active Shallow Crust,0.0,89.99036,-90.0,08/09/2596 +5.70465,51.08345,5878,7,25,13,6,56,4.25,5.0,fr,24636,117,1012413,1,1,Active Shallow Crust,128.8933,89.98112,0.0,07/25/5878 +5.70465,51.08345,39,2,14,13,13,51,4.35,27.5,fr,24637,0,1012418,1,1,Active Shallow Crust,0.0,89.98991,0.0,02/14/0039 +5.70465,51.08345,2432,8,12,9,1,43,4.65,15.0,fr,24638,48,1012453,1,1,Active Shallow Crust,0.0,89.98929,0.0,08/12/2432 +5.70465,51.08345,6623,6,13,16,7,59,4.95,27.5,fr,24639,132,1012499,1,1,Active Shallow Crust,128.8879,89.99014,0.0,06/13/6623 +5.70465,51.08345,9042,10,6,22,59,3,5.05,5.0,fr,24640,180,1012500,1,2,Active Shallow Crust,0.0,89.98986,0.0,10/06/9042 +5.70465,51.08345,8048,3,31,16,27,1,5.05,5.0,fr,24641,160,1012500,1,2,Active Shallow Crust,0.0,89.98986,0.0,03/31/8048 +5.70465,51.08345,4225,4,14,7,9,0,5.35,5.0,fr,24642,84,1012539,1,1,Active Shallow Crust,240.0288,57.99849,0.0,04/14/4225 +5.70465,51.08345,2796,7,31,14,8,38,5.35,15.0,fr,24643,55,1012540,1,1,Active Shallow Crust,240.0288,57.99849,0.0,07/31/2796 +-2.05289,48.28902,2597,3,15,22,6,27,3.55,5.0,fr,24644,51,1012800,1,2,Active Shallow Crust,0.0,89.98994,0.0,03/15/2597 +-2.05289,48.28902,3445,1,2,1,48,37,3.55,5.0,fr,24645,68,1012800,1,2,Active Shallow Crust,0.0,89.98994,0.0,01/02/3445 +-2.05289,48.28902,3714,6,18,10,34,1,3.55,15.0,fr,24646,74,1012801,1,1,Active Shallow Crust,0.0,89.98994,0.0,06/18/3714 +-2.05289,48.28902,964,3,30,6,35,7,3.55,27.5,fr,24647,19,1012802,1,1,Active Shallow Crust,0.0,89.98994,0.0,03/30/0964 +-2.05289,48.28902,3429,11,10,10,7,17,3.65,5.0,fr,24648,68,1012812,1,1,Active Shallow Crust,0.0,89.99103,0.0,11/10/3429 +-2.05289,48.28902,8905,10,25,21,9,18,3.75,15.0,fr,24649,178,1012825,1,1,Active Shallow Crust,0.0,89.98934,0.0,10/25/8905 +-2.05289,48.28902,8480,6,21,13,54,2,3.75,27.5,fr,24650,169,1012826,1,1,Active Shallow Crust,0.0,89.98934,0.0,06/21/8480 +-2.05289,48.28902,4221,10,7,22,1,48,3.75,5.0,fr,24651,84,1012830,1,1,Active Shallow Crust,0.0,89.98922,-90.0,10/07/4221 +-2.05289,48.28902,7368,12,22,16,22,55,3.85,5.0,fr,24652,147,1012836,1,1,Active Shallow Crust,0.0,89.9905,0.0,12/22/7368 +-2.05289,48.28902,2262,3,25,22,41,46,3.85,5.0,fr,24653,45,1012842,1,1,Active Shallow Crust,0.0,89.99039,-90.0,03/25/2262 +-2.05289,48.28902,5666,6,5,23,19,42,3.85,5.0,fr,24654,113,1012845,1,1,Active Shallow Crust,128.8957,89.99406,0.0,06/05/5666 +-2.05289,48.28902,8288,11,8,6,22,8,3.95,27.5,fr,24655,165,1012853,1,1,Active Shallow Crust,240.0198,58.00521,0.0,11/08/8288 +-2.05289,48.28902,5996,4,20,1,21,28,3.95,5.0,fr,24656,119,1012854,1,1,Active Shallow Crust,0.0,89.9893,-90.0,04/20/5996 +-2.05289,48.28902,6949,4,13,6,20,24,4.05,5.0,fr,24657,138,1012869,1,1,Active Shallow Crust,128.8904,89.9934,0.0,04/13/6949 +-2.05289,48.28902,7180,10,7,17,49,29,4.25,27.5,fr,24658,143,1012886,1,1,Active Shallow Crust,0.0,89.98951,0.0,10/07/7180 +-2.05289,48.28902,6911,10,25,19,25,44,4.35,5.0,fr,24659,138,1012899,1,1,Active Shallow Crust,240.0089,57.99593,0.0,10/25/6911 +-2.05289,48.28902,5267,11,18,0,44,31,5.35,27.5,fr,24660,105,1013027,1,1,Active Shallow Crust,128.882,89.98803,0.0,11/18/5267 +3.01503,44.46941,3665,2,9,2,31,32,3.55,5.0,fr,24661,73,1013760,1,1,Active Shallow Crust,0.0,89.9892,0.0,02/09/3665 +3.01503,44.46941,227,4,12,20,41,58,3.55,15.0,fr,24662,4,1013761,1,1,Active Shallow Crust,0.0,89.9892,0.0,04/12/0227 +3.01503,44.46941,9451,11,24,5,51,10,3.55,27.5,fr,24663,189,1013762,1,1,Active Shallow Crust,0.0,89.9892,0.0,11/24/9451 +3.01503,44.46941,8110,12,26,18,22,49,3.55,5.0,fr,24664,162,1013766,1,1,Active Shallow Crust,0.0,89.98908,-90.0,12/26/8110 +3.01503,44.46941,6104,4,17,2,45,58,3.65,5.0,fr,24665,122,1013772,1,1,Active Shallow Crust,0.0,89.99038,0.0,04/17/6104 +3.01503,44.46941,5287,11,10,15,13,54,3.75,5.0,fr,24666,105,1013784,1,2,Active Shallow Crust,0.0,89.99142,0.0,11/10/5287 +3.01503,44.46941,9222,7,7,12,36,56,3.75,5.0,fr,24667,184,1013784,1,2,Active Shallow Crust,0.0,89.99142,0.0,07/07/9222 +3.01503,44.46941,5289,5,28,13,50,37,3.75,27.5,fr,24668,105,1013786,1,2,Active Shallow Crust,0.0,89.99142,0.0,05/28/5289 +3.01503,44.46941,7051,8,21,9,29,30,3.75,27.5,fr,24669,141,1013786,1,2,Active Shallow Crust,0.0,89.99142,0.0,08/21/7051 +3.01503,44.46941,3834,7,5,12,30,2,3.85,5.0,fr,24670,76,1013799,1,1,Active Shallow Crust,240.0108,57.99746,0.0,07/05/3834 +3.01503,44.46941,6618,10,23,5,8,11,4.15,15.0,fr,24671,132,1013839,1,1,Active Shallow Crust,0.0,89.99088,-90.0,10/23/6618 +3.01503,44.46941,3382,9,15,12,18,26,4.25,5.0,fr,24672,67,1013847,1,1,Active Shallow Crust,240.0072,57.99412,0.0,09/15/3382 +3.01503,44.46941,808,8,16,17,41,12,4.95,5.0,fr,24673,16,1013937,1,1,Active Shallow Crust,128.8907,89.98968,0.0,08/16/0808 +0.2828,47.65547,2202,9,27,17,57,7,3.55,5.0,fr,24674,44,1014240,1,1,Active Shallow Crust,0.0,89.98981,0.0,09/27/2202 +0.2828,47.65547,6712,1,16,22,53,20,3.55,5.0,fr,24675,134,1014243,1,1,Active Shallow Crust,240.0124,57.9982,0.0,01/16/6712 +0.2828,47.65547,3701,10,10,3,23,9,3.55,5.0,fr,24676,74,1014246,1,1,Active Shallow Crust,0.0,89.99012,-90.0,10/10/3701 +0.2828,47.65547,9158,12,14,16,35,16,4.35,5.0,fr,24677,183,1014336,1,1,Active Shallow Crust,0.0,89.99003,0.0,12/14/9158 +0.2828,47.65547,2816,3,20,5,49,12,4.45,5.0,fr,24678,56,1014348,1,1,Active Shallow Crust,0.0,89.99006,0.0,03/20/2816 +0.2828,47.65547,6716,5,17,15,54,36,4.45,15.0,fr,24679,134,1014358,1,1,Active Shallow Crust,128.8919,89.99375,0.0,05/17/6716 +0.2828,47.65547,9503,9,6,11,46,6,4.95,15.0,fr,24680,190,1014415,1,1,Active Shallow Crust,0.0,89.98997,-90.0,09/06/9503 +0.32109,49.90888,6264,8,1,9,31,5,3.55,15.0,fr,24681,125,1014721,1,1,Active Shallow Crust,0.0,89.98985,0.0,08/01/6264 +0.32109,49.90888,108,10,11,21,0,33,3.55,5.0,fr,24682,2,1014729,1,1,Active Shallow Crust,128.8959,89.99371,0.0,10/11/0108 +0.32109,49.90888,2689,7,1,12,55,41,3.75,5.0,fr,24683,53,1014744,1,2,Active Shallow Crust,0.0,89.99001,0.0,07/01/2689 +0.32109,49.90888,9779,2,12,15,10,50,3.75,5.0,fr,24684,195,1014744,1,2,Active Shallow Crust,0.0,89.99001,0.0,02/12/9779 +0.32109,49.90888,7920,11,24,21,27,28,3.75,15.0,fr,24685,158,1014745,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/24/7920 +0.32109,49.90888,3371,6,20,19,29,33,3.85,5.0,fr,24686,67,1014762,1,1,Active Shallow Crust,0.0,89.99012,-90.0,06/20/3371 +0.32109,49.90888,750,4,15,0,24,36,4.05,15.0,fr,24687,14,1014781,1,1,Active Shallow Crust,0.0,89.98996,0.0,04/15/0750 +0.32109,49.90888,635,5,5,6,42,15,4.15,5.0,fr,24688,12,1014792,1,1,Active Shallow Crust,0.0,89.99003,0.0,05/05/0635 +0.32109,49.90888,9817,5,10,3,59,23,4.85,5.0,fr,24689,196,1014876,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/10/9817 +3.3716,52.95921,4294,4,26,11,44,28,3.65,15.0,fr,24690,85,1015213,1,1,Active Shallow Crust,0.0,89.98917,0.0,04/26/4294 +8.09332,49.38417,6410,4,17,8,25,9,3.55,5.0,fr,24691,128,1015680,1,2,Active Shallow Crust,0.0,89.98687,0.0,04/17/6410 +8.09332,49.38417,2532,4,10,19,25,22,3.55,5.0,fr,24692,50,1015680,1,2,Active Shallow Crust,0.0,89.98687,0.0,04/10/2532 +8.09332,49.38417,9133,11,7,10,7,6,3.65,27.5,fr,24693,182,1015694,1,1,Active Shallow Crust,0.0,89.9883,0.0,11/07/9133 +8.09332,49.38417,9847,2,27,0,40,21,3.65,5.0,fr,24694,196,1015695,1,1,Active Shallow Crust,240.0003,58.01236,0.0,02/27/9847 +8.09332,49.38417,4054,1,18,9,49,48,3.65,27.5,fr,24695,81,1015697,1,1,Active Shallow Crust,240.0003,58.01228,0.0,01/18/4054 +8.09332,49.38417,9799,12,6,14,3,16,3.75,5.0,fr,24696,195,1015704,1,1,Active Shallow Crust,0.0,89.98957,0.0,12/06/9799 +8.09332,49.38417,9201,2,9,19,2,35,3.75,15.0,fr,24697,184,1015705,1,1,Active Shallow Crust,0.0,89.98957,0.0,02/09/9201 +8.09332,49.38417,8824,7,2,1,58,7,3.95,15.0,fr,24698,176,1015738,1,1,Active Shallow Crust,128.8978,89.99586,0.0,07/02/8824 +8.09332,49.38417,1050,12,22,21,42,48,4.05,15.0,fr,24699,20,1015747,1,1,Active Shallow Crust,0.0,89.99253,-90.0,12/22/1050 +8.09332,49.38417,2571,1,28,17,45,4,4.15,5.0,fr,24700,51,1015752,1,1,Active Shallow Crust,0.0,89.98684,0.0,01/28/2571 +8.09332,49.38417,3923,6,12,11,50,44,4.15,5.0,fr,24701,78,1015755,1,1,Active Shallow Crust,240.0089,57.9974,0.0,06/12/3923 +8.09332,49.38417,6366,4,5,14,42,13,4.25,15.0,fr,24702,127,1015768,1,1,Active Shallow Crust,240.0078,57.99408,0.0,04/05/6366 +8.09332,49.38417,18,2,15,17,13,37,4.55,5.0,fr,24703,0,1015800,1,1,Active Shallow Crust,0.0,89.9917,0.0,02/15/0018 +8.09332,49.38417,3919,3,13,0,7,44,4.75,5.0,fr,24704,78,1015824,1,1,Active Shallow Crust,0.0,89.9901,0.0,03/13/3919 +8.09332,49.38417,6739,7,29,14,41,32,5.05,5.0,fr,24705,134,1015860,1,1,Active Shallow Crust,0.0,89.99066,0.0,07/29/6739 +5.05859,45.68287,2974,6,29,12,2,11,3.55,5.0,fr,24706,59,1016160,1,1,Active Shallow Crust,0.0,89.99296,0.0,06/29/2974 +5.05859,45.68287,6631,6,2,8,22,58,3.55,5.0,fr,24707,132,1016163,1,1,Active Shallow Crust,240.0119,57.99785,0.0,06/02/6631 +5.05859,45.68287,1696,8,31,15,16,6,3.55,15.0,fr,24708,33,1016167,1,1,Active Shallow Crust,0.0,89.99287,-90.0,08/31/1696 +5.05859,45.68287,4300,8,15,16,41,13,3.55,5.0,fr,24709,85,1016169,1,1,Active Shallow Crust,128.8972,89.99296,0.0,08/15/4300 +5.05859,45.68287,2331,6,14,17,34,44,3.65,15.0,fr,24710,46,1016173,1,1,Active Shallow Crust,0.0,89.98744,0.0,06/14/2331 +5.05859,45.68287,8482,1,9,20,51,19,3.75,5.0,fr,24711,169,1016184,1,2,Active Shallow Crust,0.0,89.98881,0.0,01/09/8482 +5.05859,45.68287,178,10,16,11,44,55,3.75,5.0,fr,24712,3,1016184,1,2,Active Shallow Crust,0.0,89.98881,0.0,10/16/0178 +5.05859,45.68287,6884,7,2,22,50,41,3.95,5.0,fr,24713,137,1016211,1,1,Active Shallow Crust,240.0192,58.00531,0.0,07/02/6884 +5.05859,45.68287,6127,8,1,0,34,40,3.95,15.0,fr,24714,122,1016218,1,1,Active Shallow Crust,128.9002,89.99333,0.0,08/01/6127 +5.05859,45.68287,6536,5,25,12,17,18,4.05,5.0,fr,24715,130,1016220,1,1,Active Shallow Crust,0.0,89.98811,0.0,05/25/6536 +5.05859,45.68287,4911,11,9,7,1,13,4.05,27.5,fr,24716,98,1016222,1,1,Active Shallow Crust,0.0,89.98811,0.0,11/09/4911 +5.05859,45.68287,2366,4,25,11,12,29,4.25,5.0,fr,24717,47,1016244,1,1,Active Shallow Crust,0.0,89.99056,0.0,04/25/2366 +5.05859,45.68287,9773,7,24,16,39,57,4.65,5.0,fr,24718,195,1016292,1,1,Active Shallow Crust,0.0,89.99007,0.0,07/24/9773 +5.05859,45.68287,3538,12,20,8,47,35,4.65,5.0,fr,24719,70,1016301,1,1,Active Shallow Crust,128.8915,89.98717,0.0,12/20/3538 +2.19492,44.33943,1796,12,14,13,0,53,3.55,5.0,fr,24720,35,1016640,1,1,Active Shallow Crust,0.0,89.98918,0.0,12/14/1796 +2.19492,44.33943,1309,11,25,15,6,25,3.55,15.0,fr,24721,26,1016641,1,1,Active Shallow Crust,0.0,89.98918,0.0,11/25/1309 +2.19492,44.33943,8618,6,2,17,8,49,3.55,5.0,fr,24722,172,1016646,1,1,Active Shallow Crust,0.0,89.98906,-90.0,06/02/8618 +2.19492,44.33943,2729,12,1,18,47,4,3.55,5.0,fr,24723,54,1016649,1,1,Active Shallow Crust,128.8961,89.99459,0.0,12/01/2729 +2.19492,44.33943,9680,6,28,9,48,47,3.65,5.0,fr,24724,193,1016658,1,1,Active Shallow Crust,0.0,89.99025,-90.0,06/28/9680 +2.19492,44.33943,6773,3,10,3,10,48,3.85,27.5,fr,24725,135,1016681,1,1,Active Shallow Crust,240.0104,57.99776,0.0,03/10/6773 +2.19492,44.33943,4673,11,23,2,37,18,3.95,5.0,fr,24726,93,1016688,1,1,Active Shallow Crust,0.0,89.9909,0.0,11/23/4673 +2.19492,44.33943,6278,10,22,1,6,31,3.95,15.0,fr,24727,125,1016689,1,1,Active Shallow Crust,0.0,89.9909,0.0,10/22/6278 +2.19492,44.33943,9966,4,19,4,49,15,4.05,5.0,fr,24728,199,1016703,1,1,Active Shallow Crust,240.0053,58.00583,0.0,04/19/9966 +2.19492,44.33943,860,5,18,17,2,25,4.95,27.5,fr,24729,17,1016810,1,1,Active Shallow Crust,0.0,89.98992,0.0,05/18/0860 +6.43259,48.18056,8237,9,24,13,41,3,3.55,5.0,fr,24730,164,1017600,1,1,Active Shallow Crust,0.0,89.99328,0.0,09/24/8237 +6.43259,48.18056,3958,8,31,1,46,22,3.55,5.0,fr,24731,79,1017603,1,1,Active Shallow Crust,240.0126,57.99762,0.0,08/31/3958 +6.43259,48.18056,2408,3,20,23,4,25,3.65,5.0,fr,24732,48,1017612,1,2,Active Shallow Crust,0.0,89.98801,0.0,03/20/2408 +6.43259,48.18056,1569,6,22,1,24,17,3.65,5.0,fr,24733,31,1017612,1,2,Active Shallow Crust,0.0,89.98801,0.0,06/22/1569 +6.43259,48.18056,8931,10,20,23,32,47,3.75,5.0,fr,24734,178,1017624,1,1,Active Shallow Crust,0.0,89.98932,0.0,10/20/8931 +6.43259,48.18056,1597,1,29,13,57,21,3.75,27.5,fr,24735,31,1017626,1,1,Active Shallow Crust,0.0,89.98932,0.0,01/29/1597 +6.43259,48.18056,297,3,11,23,45,0,3.75,15.0,fr,24736,5,1017634,1,1,Active Shallow Crust,128.8971,89.96697,0.0,03/11/0297 +6.43259,48.18056,5936,10,9,0,11,47,3.85,5.0,fr,24737,118,1017636,1,1,Active Shallow Crust,0.0,89.99048,0.0,10/09/5936 +6.43259,48.18056,5381,12,15,13,9,21,3.85,15.0,fr,24738,107,1017637,1,1,Active Shallow Crust,0.0,89.99048,0.0,12/15/5381 +6.43259,48.18056,9109,7,28,20,17,12,3.85,27.5,fr,24739,182,1017638,1,1,Active Shallow Crust,0.0,89.99048,0.0,07/28/9109 +6.43259,48.18056,601,7,16,10,47,28,3.95,15.0,fr,24740,12,1017649,1,1,Active Shallow Crust,0.0,89.99152,0.0,07/16/0601 +6.43259,48.18056,6979,2,13,14,35,32,4.05,5.0,fr,24741,139,1017660,1,1,Active Shallow Crust,0.0,89.98866,0.0,02/13/6979 +6.43259,48.18056,2230,3,21,7,25,52,4.05,15.0,fr,24742,44,1017664,1,1,Active Shallow Crust,240.0064,58.00559,0.0,03/21/2230 +6.43259,48.18056,2392,7,6,9,56,17,4.15,15.0,fr,24743,47,1017673,1,1,Active Shallow Crust,0.0,89.98989,0.0,07/06/2392 +6.43259,48.18056,573,12,25,2,29,44,4.15,5.0,fr,24744,11,1017678,1,2,Active Shallow Crust,0.0,89.98977,-90.0,12/25/0573 +6.43259,48.18056,4813,6,15,17,45,53,4.15,5.0,fr,24745,96,1017678,1,2,Active Shallow Crust,0.0,89.98977,-90.0,06/15/4813 +6.43259,48.18056,2389,7,15,0,18,40,4.25,5.0,fr,24746,47,1017684,1,1,Active Shallow Crust,0.0,89.99099,0.0,07/15/2389 +6.43259,48.18056,2510,10,22,23,33,0,4.35,5.0,fr,24747,50,1017696,1,1,Active Shallow Crust,0.0,89.98929,0.0,10/22/2510 +6.43259,48.18056,1756,9,18,23,27,13,4.35,5.0,fr,24748,35,1017699,1,1,Active Shallow Crust,240.0093,57.99589,0.0,09/18/1756 +6.43259,48.18056,1516,8,11,7,53,49,4.75,5.0,fr,24749,30,1017744,1,1,Active Shallow Crust,0.0,89.98987,0.0,08/11/1516 +6.43259,48.18056,1893,6,1,2,23,28,5.35,27.5,fr,24750,37,1017821,1,1,Active Shallow Crust,240.0262,57.99817,0.0,06/01/1893 +6.55079,47.42851,3536,12,14,0,40,14,3.55,5.0,fr,24751,70,1018080,1,2,Active Shallow Crust,0.0,89.99318,0.0,12/14/3536 +6.55079,47.42851,3917,4,25,6,15,9,3.55,5.0,fr,24752,78,1018080,1,2,Active Shallow Crust,0.0,89.99318,0.0,04/25/3917 +6.55079,47.42851,1708,10,2,21,48,35,3.55,15.0,fr,24753,34,1018081,1,1,Active Shallow Crust,0.0,89.99318,0.0,10/02/1708 +6.55079,47.42851,1743,9,2,22,24,29,3.55,27.5,fr,24754,34,1018082,1,1,Active Shallow Crust,0.0,89.99318,0.0,09/02/1743 +6.55079,47.42851,8747,7,20,21,36,30,3.55,5.0,fr,24755,174,1018086,1,1,Active Shallow Crust,0.0,89.9931,-90.0,07/20/8747 +6.55079,47.42851,3376,5,26,10,58,31,3.55,5.0,fr,24756,67,1018089,1,1,Active Shallow Crust,128.8969,89.99318,0.0,05/26/3376 +6.55079,47.42851,8658,2,10,3,39,48,3.65,5.0,fr,24757,173,1018092,1,1,Active Shallow Crust,0.0,89.98784,0.0,02/10/8658 +6.55079,47.42851,8524,9,16,17,43,50,3.65,27.5,fr,24758,170,1018097,1,1,Active Shallow Crust,240.0015,58.01249,0.0,09/16/8524 +6.55079,47.42851,144,7,3,10,7,21,3.85,5.0,fr,24759,2,1018116,1,1,Active Shallow Crust,0.0,89.99034,0.0,07/03/0144 +6.55079,47.42851,4538,9,14,0,28,54,3.95,5.0,fr,24760,90,1018128,1,1,Active Shallow Crust,0.0,89.99139,0.0,09/14/4538 +6.55079,47.42851,3932,11,30,10,38,18,4.05,5.0,fr,24761,78,1018140,1,1,Active Shallow Crust,0.0,89.98849,0.0,11/30/3932 +6.55079,47.42851,8632,9,23,8,19,48,4.05,15.0,fr,24762,172,1018150,1,1,Active Shallow Crust,128.8904,89.99425,0.0,09/23/8632 +6.55079,47.42851,4816,10,7,1,2,26,4.15,15.0,fr,24763,96,1018153,1,1,Active Shallow Crust,0.0,89.98975,0.0,10/07/4816 +6.55079,47.42851,2915,5,19,21,1,9,4.35,5.0,fr,24764,58,1018182,1,1,Active Shallow Crust,0.0,89.98901,-90.0,05/19/2915 +6.55079,47.42851,7149,7,19,23,38,7,4.35,5.0,fr,24765,142,1018185,1,1,Active Shallow Crust,128.8983,89.98257,0.0,07/19/7149 +6.55079,47.42851,9681,5,25,22,13,35,4.65,5.0,fr,24766,193,1018212,1,1,Active Shallow Crust,0.0,89.99039,0.0,05/25/9681 +-2.37625,41.94218,6383,3,23,8,59,12,3.55,5.0,fr,24767,127,1018560,1,2,Active Shallow Crust,0.0,89.98875,0.0,03/23/6383 +-2.37625,41.94218,8721,10,19,19,52,51,3.55,5.0,fr,24768,174,1018560,1,2,Active Shallow Crust,0.0,89.98875,0.0,10/19/8721 +-2.37625,41.94218,1371,8,3,13,22,22,3.65,5.0,fr,24769,27,1018572,1,1,Active Shallow Crust,0.0,89.98997,0.0,08/03/1371 +-2.37625,41.94218,3056,8,13,14,51,37,3.65,5.0,fr,24770,61,1018578,1,1,Active Shallow Crust,0.0,89.98985,-90.0,08/13/3056 +-2.37625,41.94218,5099,9,19,8,42,58,3.75,5.0,fr,24771,101,1018584,1,2,Active Shallow Crust,0.0,89.99107,0.0,09/19/5099 +-2.37625,41.94218,747,11,25,14,53,37,3.75,5.0,fr,24772,14,1018584,1,2,Active Shallow Crust,0.0,89.99107,0.0,11/25/0747 +-2.37625,41.94218,6053,12,14,9,19,39,3.75,15.0,fr,24773,121,1018588,1,1,Active Shallow Crust,240.0084,58.01755,0.0,12/14/6053 +-2.37625,41.94218,7471,6,8,1,33,31,3.85,15.0,fr,24774,149,1018603,1,1,Active Shallow Crust,0.0,89.98926,-90.0,06/08/7471 +-2.37625,41.94218,7689,2,23,14,31,42,3.95,5.0,fr,24775,153,1018608,1,2,Active Shallow Crust,0.0,89.99053,0.0,02/23/7689 +-2.37625,41.94218,9491,3,8,0,26,44,3.95,5.0,fr,24776,189,1018608,1,2,Active Shallow Crust,0.0,89.99053,0.0,03/08/9491 +-2.37625,41.94218,3713,11,17,11,16,18,3.95,15.0,fr,24777,74,1018615,1,1,Active Shallow Crust,0.0,89.99043,-90.0,11/17/3713 +-2.37625,41.94218,3558,12,25,21,44,4,5.65,5.0,fr,24778,71,1018812,1,1,Active Shallow Crust,0.0,89.98997,0.0,12/25/3558 +4.60688,42.5773,9293,10,21,19,9,2,3.85,5.0,fr,24779,185,1019076,1,1,Active Shallow Crust,0.0,89.98949,0.0,10/21/9293 +4.60688,42.5773,552,11,29,3,33,28,4.05,5.0,fr,24780,11,1019103,1,1,Active Shallow Crust,240.0055,58.00578,0.0,11/29/0552 +-1.83488,43.11699,3256,6,5,12,53,9,3.55,5.0,fr,24781,65,1020000,1,6,Active Shallow Crust,0.0,89.9908,0.0,06/05/3256 +-1.83488,43.11699,9181,1,5,9,31,12,3.55,5.0,fr,24782,183,1020000,1,6,Active Shallow Crust,0.0,89.9908,0.0,01/05/9181 +-1.83488,43.11699,8067,2,25,13,8,48,3.55,5.0,fr,24783,161,1020000,1,6,Active Shallow Crust,0.0,89.9908,0.0,02/25/8067 +-1.83488,43.11699,6394,8,21,9,56,7,3.55,5.0,fr,24784,127,1020000,1,6,Active Shallow Crust,0.0,89.9908,0.0,08/21/6394 +-1.83488,43.11699,4429,11,2,10,8,19,3.55,5.0,fr,24785,88,1020000,1,6,Active Shallow Crust,0.0,89.9908,0.0,11/02/4429 +-1.83488,43.11699,6440,8,22,14,41,38,3.55,5.0,fr,24786,128,1020000,1,6,Active Shallow Crust,0.0,89.9908,0.0,08/22/6440 +-1.83488,43.11699,7290,6,23,0,12,54,3.55,5.0,fr,24787,145,1020003,1,1,Active Shallow Crust,240.0119,57.99824,0.0,06/23/7290 +-1.83488,43.11699,4920,3,11,21,27,35,3.55,27.5,fr,24788,98,1020008,1,1,Active Shallow Crust,0.0,89.99069,-90.0,03/11/4920 +-1.83488,43.11699,54,2,15,2,52,24,3.65,5.0,fr,24789,1,1020012,1,3,Active Shallow Crust,0.0,89.99016,0.0,02/15/0054 +-1.83488,43.11699,7710,6,23,6,30,17,3.65,5.0,fr,24790,154,1020012,1,3,Active Shallow Crust,0.0,89.99016,0.0,06/23/7710 +-1.83488,43.11699,8553,1,7,13,7,25,3.65,5.0,fr,24791,171,1020012,1,3,Active Shallow Crust,0.0,89.99016,0.0,01/07/8553 +-1.83488,43.11699,5593,10,11,16,23,2,3.65,15.0,fr,24792,111,1020013,1,1,Active Shallow Crust,0.0,89.99016,0.0,10/11/5593 +-1.83488,43.11699,2567,6,30,7,11,23,3.65,27.5,fr,24793,51,1020014,1,1,Active Shallow Crust,0.0,89.99016,0.0,06/30/2567 +-1.83488,43.11699,9222,9,2,8,33,33,3.65,15.0,fr,24794,184,1020016,1,1,Active Shallow Crust,240.0006,58.013,0.0,09/02/9222 +-1.83488,43.11699,7760,7,6,19,6,58,3.65,27.5,fr,24795,155,1020020,1,1,Active Shallow Crust,0.0,89.99004,-90.0,07/06/7760 +-1.83488,43.11699,6186,9,9,20,49,13,3.75,5.0,fr,24796,123,1020024,1,1,Active Shallow Crust,0.0,89.98977,0.0,09/09/6186 +-1.83488,43.11699,7702,2,17,23,55,37,3.75,5.0,fr,24797,154,1020027,1,1,Active Shallow Crust,240.0081,58.01726,0.0,02/17/7702 +-1.83488,43.11699,3250,11,19,4,34,42,3.75,27.5,fr,24798,64,1020032,1,1,Active Shallow Crust,0.0,89.98965,-90.0,11/19/3250 +-1.83488,43.11699,1689,5,12,19,55,4,3.85,27.5,fr,24799,33,1020041,1,1,Active Shallow Crust,240.0105,57.99787,0.0,05/12/1689 +-1.83488,43.11699,9401,9,6,4,29,39,3.95,5.0,fr,24800,188,1020048,1,2,Active Shallow Crust,0.0,89.98955,0.0,09/06/9401 +-1.83488,43.11699,9634,7,16,1,35,18,3.95,5.0,fr,24801,192,1020048,1,2,Active Shallow Crust,0.0,89.98955,0.0,07/16/9634 +-1.83488,43.11699,9813,9,23,17,20,25,3.95,15.0,fr,24802,196,1020049,1,1,Active Shallow Crust,0.0,89.98955,0.0,09/23/9813 +-1.83488,43.11699,5625,11,2,0,14,1,3.95,5.0,fr,24803,112,1020051,1,1,Active Shallow Crust,240.0194,58.00489,0.0,11/02/5625 +-1.83488,43.11699,5380,6,26,3,5,50,4.15,5.0,fr,24804,107,1020072,1,1,Active Shallow Crust,0.0,89.98985,0.0,06/26/5380 +-1.83488,43.11699,2155,7,24,9,47,45,4.45,15.0,fr,24805,43,1020109,1,1,Active Shallow Crust,0.0,89.9902,0.0,07/24/2155 +-1.83488,43.11699,21,10,11,23,15,32,4.95,5.0,fr,24806,0,1020168,1,1,Active Shallow Crust,0.0,89.99008,0.0,10/11/0021 +-1.83488,43.11699,9633,5,15,9,13,15,5.15,5.0,fr,24807,192,1020192,1,1,Active Shallow Crust,0.0,89.99008,0.0,05/15/9633 +-0.63701,49.72341,5502,6,29,14,11,18,3.55,5.0,fr,24808,110,1020480,1,2,Active Shallow Crust,0.0,89.99022,0.0,06/29/5502 +-0.63701,49.72341,1259,1,6,17,32,13,3.55,5.0,fr,24809,25,1020480,1,2,Active Shallow Crust,0.0,89.99022,0.0,01/06/1259 +-0.63701,49.72341,1706,1,28,13,53,4,3.65,5.0,fr,24810,34,1020492,1,1,Active Shallow Crust,0.0,89.98983,0.0,01/28/1706 +-0.63701,49.72341,3422,2,25,6,45,35,3.65,5.0,fr,24811,68,1020495,1,1,Active Shallow Crust,240.0014,58.01289,0.0,02/25/3422 +-0.63701,49.72341,2004,11,9,11,57,54,3.65,5.0,fr,24812,40,1020498,1,1,Active Shallow Crust,0.0,89.98972,-90.0,11/09/2004 +-0.63701,49.72341,3185,4,9,7,45,17,3.75,15.0,fr,24813,63,1020508,1,1,Active Shallow Crust,240.0087,58.01767,0.0,04/09/3185 +-0.63701,49.72341,2602,11,25,9,16,24,3.75,5.0,fr,24814,52,1020510,1,1,Active Shallow Crust,0.0,89.99018,-90.0,11/25/2602 +-0.63701,49.72341,3482,9,18,0,32,0,3.85,15.0,fr,24815,69,1020517,1,1,Active Shallow Crust,0.0,89.9902,0.0,09/18/3482 +-0.63701,49.72341,6321,7,26,2,37,8,3.95,5.0,fr,24816,126,1020528,1,1,Active Shallow Crust,0.0,89.99023,0.0,07/26/6321 +-0.63701,49.72341,2875,6,13,5,56,11,4.15,5.0,fr,24817,57,1020552,1,1,Active Shallow Crust,0.0,89.9902,0.0,06/13/2875 +-0.63701,49.72341,1006,1,26,22,27,57,4.35,15.0,fr,24818,20,1020577,1,1,Active Shallow Crust,0.0,89.98994,0.0,01/26/1006 +-0.63701,49.72341,7136,5,29,13,41,54,4.55,5.0,fr,24819,142,1020603,1,1,Active Shallow Crust,240.0103,57.99757,0.0,05/29/7136 +-0.63701,49.72341,7546,11,23,15,20,24,5.05,5.0,fr,24820,150,1020663,1,1,Active Shallow Crust,240.0239,57.9979,0.0,11/23/7546 +5.01674,42.63294,9672,12,5,20,31,33,4.15,5.0,fr,24821,193,1021035,1,1,Active Shallow Crust,240.0081,57.99678,0.0,12/05/9672 +4.22205,52.58728,2721,4,25,22,14,9,3.85,15.0,fr,24822,54,1021477,1,1,Active Shallow Crust,0.0,89.99133,0.0,04/25/2721 +5.18644,45.5696,3906,5,17,12,57,27,3.55,5.0,fr,24823,78,1021920,1,1,Active Shallow Crust,0.0,89.99294,0.0,05/17/3906 +5.18644,45.5696,4964,11,26,5,24,53,3.55,15.0,fr,24824,99,1021921,1,2,Active Shallow Crust,0.0,89.99294,0.0,11/26/4964 +5.18644,45.5696,8321,9,23,6,35,59,3.55,15.0,fr,24825,166,1021921,1,2,Active Shallow Crust,0.0,89.99294,0.0,09/23/8321 +5.18644,45.5696,4788,12,26,19,22,21,3.55,5.0,fr,24826,95,1021929,1,1,Active Shallow Crust,128.896,89.99294,0.0,12/26/4788 +5.18644,45.5696,3670,3,21,1,33,11,3.65,5.0,fr,24827,73,1021932,1,2,Active Shallow Crust,0.0,89.98742,0.0,03/21/3670 +5.18644,45.5696,9424,4,11,23,11,19,3.65,5.0,fr,24828,188,1021932,1,2,Active Shallow Crust,0.0,89.98742,0.0,04/11/9424 +5.18644,45.5696,5464,8,9,16,53,35,3.65,15.0,fr,24829,109,1021933,1,1,Active Shallow Crust,0.0,89.98742,0.0,08/09/5464 +5.18644,45.5696,253,3,23,3,6,26,3.65,5.0,fr,24830,5,1021935,1,1,Active Shallow Crust,240.0009,58.01272,0.0,03/23/0253 +5.18644,45.5696,913,3,20,19,57,53,3.75,15.0,fr,24831,18,1021945,1,1,Active Shallow Crust,0.0,89.98878,0.0,03/20/0913 +5.18644,45.5696,4391,9,27,16,31,10,3.85,5.0,fr,24832,87,1021956,1,2,Active Shallow Crust,0.0,89.99001,0.0,09/27/4391 +5.18644,45.5696,7435,5,24,7,23,44,3.85,5.0,fr,24833,148,1021956,1,2,Active Shallow Crust,0.0,89.99001,0.0,05/24/7435 +5.18644,45.5696,2301,10,9,21,22,9,3.85,27.5,fr,24834,46,1021958,1,1,Active Shallow Crust,0.0,89.99001,0.0,10/09/2301 +5.18644,45.5696,1204,1,9,1,38,5,3.85,5.0,fr,24835,24,1021962,1,1,Active Shallow Crust,0.0,89.98989,-90.0,01/09/1204 +5.18644,45.5696,4587,7,10,3,33,4,3.95,5.0,fr,24836,91,1021968,1,2,Active Shallow Crust,0.0,89.99109,0.0,07/10/4587 +5.18644,45.5696,3037,7,20,22,4,49,3.95,5.0,fr,24837,60,1021968,1,2,Active Shallow Crust,0.0,89.99109,0.0,07/20/3037 +5.18644,45.5696,4299,6,6,8,31,1,3.95,15.0,fr,24838,85,1021969,1,1,Active Shallow Crust,0.0,89.99109,0.0,06/06/4299 +5.18644,45.5696,9787,6,4,6,59,0,4.15,5.0,fr,24839,195,1021995,1,1,Active Shallow Crust,240.0089,57.99684,0.0,06/04/9787 +5.18644,45.5696,5685,3,1,17,12,9,4.25,5.0,fr,24840,113,1022004,1,1,Active Shallow Crust,0.0,89.99054,0.0,03/01/5685 +5.18644,45.5696,4546,3,6,13,31,43,4.25,5.0,fr,24841,90,1022007,1,1,Active Shallow Crust,240.0074,57.99363,0.0,03/06/4546 +5.18644,45.5696,8393,10,24,0,45,21,4.35,15.0,fr,24842,167,1022017,1,1,Active Shallow Crust,0.0,89.98875,0.0,10/24/8393 +5.18644,45.5696,5863,11,6,9,10,31,4.35,5.0,fr,24843,117,1022019,1,2,Active Shallow Crust,240.0082,57.99595,0.0,11/06/5863 +5.18644,45.5696,9230,9,29,6,47,59,4.35,5.0,fr,24844,184,1022019,1,2,Active Shallow Crust,240.0082,57.99595,0.0,09/29/9230 +5.18644,45.5696,5763,1,12,17,47,5,4.45,27.5,fr,24845,115,1022030,1,1,Active Shallow Crust,0.0,89.98998,0.0,01/12/5763 +5.18644,45.5696,1917,7,3,18,7,16,5.05,5.0,fr,24846,38,1022109,1,1,Active Shallow Crust,128.8856,89.99047,0.0,07/03/1917 +5.18644,45.5696,985,12,13,12,31,2,5.35,27.5,fr,24847,19,1022138,1,1,Active Shallow Crust,0.0,89.99022,0.0,12/13/0985 +5.18644,45.5696,7263,11,24,14,17,42,5.75,27.5,fr,24848,145,1022186,1,1,Active Shallow Crust,0.0,89.9899,0.0,11/24/7263 +7.95467,47.07615,6464,10,10,19,18,31,3.55,5.0,fr,24849,129,1022400,1,2,Active Shallow Crust,0.0,89.99313,0.0,10/10/6464 +7.95467,47.07615,2905,7,9,6,6,34,3.55,5.0,fr,24850,58,1022400,1,2,Active Shallow Crust,0.0,89.99313,0.0,07/09/2905 +7.95467,47.07615,5660,8,17,1,17,13,3.55,5.0,fr,24851,113,1022409,1,1,Active Shallow Crust,128.8954,89.99657,0.0,08/17/5660 +7.95467,47.07615,5664,6,11,19,55,31,3.65,5.0,fr,24852,113,1022412,1,4,Active Shallow Crust,0.0,89.98776,0.0,06/11/5664 +7.95467,47.07615,8945,8,27,19,37,19,3.65,5.0,fr,24853,178,1022412,1,4,Active Shallow Crust,0.0,89.98776,0.0,08/27/8945 +7.95467,47.07615,9710,1,6,19,40,23,3.65,5.0,fr,24854,194,1022412,1,4,Active Shallow Crust,0.0,89.98776,0.0,01/06/9710 +7.95467,47.07615,1252,1,10,6,16,24,3.65,5.0,fr,24855,25,1022412,1,4,Active Shallow Crust,0.0,89.98776,0.0,01/10/1252 +7.95467,47.07615,5076,9,24,5,42,53,3.65,15.0,fr,24856,101,1022413,1,1,Active Shallow Crust,0.0,89.98776,0.0,09/24/5076 +7.95467,47.07615,2379,12,18,17,34,50,3.65,27.5,fr,24857,47,1022417,1,1,Active Shallow Crust,240.0019,58.01233,0.0,12/18/2379 +7.95467,47.07615,2911,4,14,13,8,27,3.65,5.0,fr,24858,58,1022421,1,3,Active Shallow Crust,128.9008,89.96354,0.0,04/14/2911 +7.95467,47.07615,3009,3,30,10,46,2,3.65,5.0,fr,24859,60,1022421,1,3,Active Shallow Crust,128.9008,89.96354,0.0,03/30/3009 +7.95467,47.07615,1926,6,4,10,36,40,3.65,5.0,fr,24860,38,1022421,1,3,Active Shallow Crust,128.9008,89.96354,0.0,06/04/1926 +7.95467,47.07615,461,10,13,9,58,27,3.75,5.0,fr,24861,9,1022424,1,1,Active Shallow Crust,0.0,89.98909,0.0,10/13/0461 +7.95467,47.07615,6151,12,1,1,52,20,3.75,5.0,fr,24862,123,1022430,1,1,Active Shallow Crust,0.0,89.98896,-90.0,12/01/6151 +7.95467,47.07615,8415,12,20,2,8,54,3.85,5.0,fr,24863,168,1022436,1,2,Active Shallow Crust,0.0,89.99027,0.0,12/20/8415 +7.95467,47.07615,8796,9,2,9,14,5,3.85,5.0,fr,24864,175,1022436,1,2,Active Shallow Crust,0.0,89.99027,0.0,09/02/8796 +7.95467,47.07615,9838,10,3,0,21,35,3.85,27.5,fr,24865,196,1022444,1,1,Active Shallow Crust,0.0,89.99017,-90.0,10/03/9838 +7.95467,47.07615,7356,11,20,15,32,8,4.05,5.0,fr,24866,147,1022466,1,1,Active Shallow Crust,0.0,89.98828,-90.0,11/20/7356 +7.95467,47.07615,4628,4,3,13,32,49,4.05,5.0,fr,24867,92,1022469,1,1,Active Shallow Crust,128.8903,89.99421,0.0,04/03/4628 +7.95467,47.07615,5430,9,6,8,59,22,4.15,5.0,fr,24868,108,1022472,1,2,Active Shallow Crust,0.0,89.98968,0.0,09/06/5430 +7.95467,47.07615,912,5,29,6,54,46,4.15,5.0,fr,24869,18,1022472,1,2,Active Shallow Crust,0.0,89.98968,0.0,05/29/0912 +7.95467,47.07615,669,7,7,22,26,58,4.15,15.0,fr,24870,13,1022473,1,1,Active Shallow Crust,0.0,89.98968,0.0,07/07/0669 +7.95467,47.07615,436,3,11,6,45,30,4.15,5.0,fr,24871,8,1022475,1,1,Active Shallow Crust,240.0081,57.99732,0.0,03/11/0436 +7.95467,47.07615,9073,3,31,0,31,40,4.45,27.5,fr,24872,181,1022510,1,1,Active Shallow Crust,0.0,89.99025,0.0,03/31/9073 +7.95467,47.07615,3244,12,7,19,32,23,4.45,15.0,fr,24873,64,1022518,1,1,Active Shallow Crust,128.8916,89.99391,0.0,12/07/3244 +7.95467,47.07615,2270,3,17,21,32,16,4.65,5.0,fr,24874,45,1022532,1,1,Active Shallow Crust,0.0,89.99032,0.0,03/17/2270 +7.95467,47.07615,6890,8,21,13,23,25,4.75,5.0,fr,24875,137,1022544,1,2,Active Shallow Crust,0.0,89.98965,0.0,08/21/6890 +7.95467,47.07615,2733,6,19,7,51,40,4.75,5.0,fr,24876,54,1022544,1,2,Active Shallow Crust,0.0,89.98965,0.0,06/19/2733 +-0.35291,47.61222,15,9,12,2,5,33,3.55,5.0,fr,24877,0,1022880,1,1,Active Shallow Crust,0.0,89.9898,0.0,09/12/0015 +-0.35291,47.61222,9966,9,1,5,0,4,3.55,15.0,fr,24878,199,1022881,1,2,Active Shallow Crust,0.0,89.9898,0.0,09/01/9966 +-0.35291,47.61222,2348,8,1,14,8,48,3.55,15.0,fr,24879,46,1022881,1,2,Active Shallow Crust,0.0,89.9898,0.0,08/01/2348 +-0.35291,47.61222,8992,1,18,19,22,56,3.65,5.0,fr,24880,179,1022898,1,1,Active Shallow Crust,0.0,89.99004,-90.0,01/18/8992 +-0.35291,47.61222,287,6,10,14,7,1,3.65,5.0,fr,24881,5,1022901,1,1,Active Shallow Crust,128.9004,89.96348,0.0,06/10/0287 +-0.35291,47.61222,9620,4,24,7,28,46,3.75,5.0,fr,24882,192,1022904,1,2,Active Shallow Crust,0.0,89.98988,0.0,04/24/9620 +-0.35291,47.61222,5900,4,20,18,17,21,3.75,5.0,fr,24883,117,1022904,1,2,Active Shallow Crust,0.0,89.98988,0.0,04/20/5900 +-0.35291,47.61222,7462,3,30,4,33,51,3.75,5.0,fr,24884,149,1022910,1,1,Active Shallow Crust,0.0,89.9901,-90.0,03/30/7462 +-0.35291,47.61222,4310,12,26,12,47,4,3.75,15.0,fr,24885,86,1022911,1,2,Active Shallow Crust,0.0,89.9901,-90.0,12/26/4310 +-0.35291,47.61222,4499,9,3,1,7,25,3.75,15.0,fr,24886,89,1022911,1,2,Active Shallow Crust,0.0,89.9901,-90.0,09/03/4499 +-0.35291,47.61222,4705,2,14,11,56,20,3.85,5.0,fr,24887,94,1022919,1,1,Active Shallow Crust,240.011,57.99784,0.0,02/14/4705 +-0.35291,47.61222,3750,1,8,15,9,58,3.95,5.0,fr,24888,74,1022928,1,1,Active Shallow Crust,0.0,89.99008,0.0,01/08/3750 +-0.35291,47.61222,5573,10,16,6,34,1,3.95,15.0,fr,24889,111,1022938,1,1,Active Shallow Crust,128.9003,89.9937,0.0,10/16/5573 +-0.35291,47.61222,4062,3,18,8,15,34,4.05,5.0,fr,24890,81,1022940,1,1,Active Shallow Crust,0.0,89.98997,0.0,03/18/4062 +-0.35291,47.61222,4660,4,9,20,57,20,4.05,5.0,fr,24891,93,1022949,1,1,Active Shallow Crust,128.8904,89.99367,0.0,04/09/4660 +-0.35291,47.61222,4321,4,4,11,23,14,4.15,15.0,fr,24892,86,1022956,1,1,Active Shallow Crust,240.0087,57.99738,0.0,04/04/4321 +-0.35291,47.61222,9990,6,27,14,7,13,4.45,5.0,fr,24893,199,1022988,1,1,Active Shallow Crust,0.0,89.99005,0.0,06/27/9990 +-0.35291,47.61222,2114,1,25,12,10,25,4.45,15.0,fr,24894,42,1022989,1,1,Active Shallow Crust,0.0,89.99005,0.0,01/25/2114 +-0.35291,47.61222,2554,1,1,1,4,7,4.75,5.0,fr,24895,51,1023027,1,1,Active Shallow Crust,240.0079,58.00455,0.0,01/01/2554 +-0.35291,47.61222,7881,2,21,7,23,44,4.85,27.5,fr,24896,157,1023038,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/21/7881 +4.08688,52.08184,3471,4,26,18,35,15,3.75,5.0,fr,24897,69,1023387,1,1,Active Shallow Crust,240.0087,58.01771,0.0,04/26/3471 +4.08688,52.08184,1158,7,23,9,4,37,4.05,5.0,fr,24898,23,1023429,1,1,Active Shallow Crust,128.8902,89.99303,0.0,07/23/1158 +-3.79356,47.7255,6888,6,14,4,57,21,3.55,5.0,fr,24899,137,1023840,1,1,Active Shallow Crust,0.0,89.98982,0.0,06/14/6888 +-3.79356,47.7255,3583,11,11,18,51,48,3.55,5.0,fr,24900,71,1023846,1,1,Active Shallow Crust,0.0,89.98971,-90.0,11/11/3583 +-3.79356,47.7255,845,9,4,20,37,55,3.65,5.0,fr,24901,16,1023852,1,1,Active Shallow Crust,0.0,89.99093,0.0,09/04/0845 +-3.79356,47.7255,4358,7,28,20,29,22,3.75,5.0,fr,24902,87,1023870,1,1,Active Shallow Crust,0.0,89.9891,-90.0,07/28/4358 +-3.79356,47.7255,4989,12,28,0,52,7,3.85,5.0,fr,24903,99,1023876,1,3,Active Shallow Crust,0.0,89.99039,0.0,12/28/4989 +-3.79356,47.7255,4832,5,21,7,10,6,3.85,5.0,fr,24904,96,1023876,1,3,Active Shallow Crust,0.0,89.99039,0.0,05/21/4832 +-3.79356,47.7255,6064,6,16,13,37,27,3.85,5.0,fr,24905,121,1023876,1,3,Active Shallow Crust,0.0,89.99039,0.0,06/16/6064 +-3.79356,47.7255,4057,10,27,22,46,25,3.85,15.0,fr,24906,81,1023877,1,1,Active Shallow Crust,0.0,89.99039,0.0,10/27/4057 +-3.79356,47.7255,6691,9,9,7,25,21,3.95,27.5,fr,24907,133,1023890,1,1,Active Shallow Crust,0.0,89.9893,0.0,09/09/6691 +-3.79356,47.7255,3895,1,22,2,38,27,4.95,5.0,fr,24908,77,1024008,1,1,Active Shallow Crust,0.0,89.98985,0.0,01/22/3895 +4.22924,43.59231,6475,11,29,22,2,49,3.55,5.0,fr,24909,129,1025280,1,2,Active Shallow Crust,0.0,89.9927,0.0,11/29/6475 +4.22924,43.59231,5531,9,14,13,39,52,3.55,5.0,fr,24910,110,1025280,1,2,Active Shallow Crust,0.0,89.9927,0.0,09/14/5531 +4.22924,43.59231,5272,6,6,6,49,25,3.55,15.0,fr,24911,105,1025281,1,1,Active Shallow Crust,0.0,89.9927,0.0,06/06/5272 +4.22924,43.59231,5395,12,2,1,36,35,3.65,5.0,fr,24912,107,1025292,1,1,Active Shallow Crust,0.0,89.98698,0.0,12/02/5395 +4.22924,43.59231,8296,4,1,18,40,34,3.65,15.0,fr,24913,165,1025293,1,1,Active Shallow Crust,0.0,89.98698,0.0,04/01/8296 +4.22924,43.59231,5767,12,20,5,12,8,3.65,15.0,fr,24914,115,1025296,1,1,Active Shallow Crust,240.0015,58.01216,0.0,12/20/5767 +4.22924,43.59231,406,5,26,3,13,11,3.65,15.0,fr,24915,8,1025299,1,1,Active Shallow Crust,0.0,89.98683,-90.0,05/26/0406 +4.22924,43.59231,6471,1,19,19,25,12,3.65,5.0,fr,24916,129,1025301,1,1,Active Shallow Crust,128.9014,89.96347,0.0,01/19/6471 +4.22924,43.59231,7123,7,27,0,58,17,3.85,15.0,fr,24917,142,1025323,1,1,Active Shallow Crust,0.0,89.98954,-90.0,07/27/7123 +4.22924,43.59231,4328,8,23,23,9,34,4.45,27.5,fr,24918,86,1025390,1,1,Active Shallow Crust,0.0,89.98963,0.0,08/23/4328 +4.22924,43.59231,9948,11,7,17,22,53,4.55,5.0,fr,24919,198,1025406,1,1,Active Shallow Crust,0.0,89.99065,-90.0,11/07/9948 +3.27642,47.61675,7844,5,22,5,10,1,3.85,5.0,fr,24920,156,1025796,1,1,Active Shallow Crust,0.0,89.99037,0.0,05/22/7844 +2.51841,52.69486,6710,2,15,9,3,2,3.65,5.0,fr,24921,134,1026252,1,1,Active Shallow Crust,0.0,89.98911,0.0,02/15/6710 +2.51841,52.69486,602,8,5,14,12,57,4.05,5.0,fr,24922,12,1026300,1,1,Active Shallow Crust,0.0,89.98969,0.0,08/05/0602 +0.15949,43.32244,7982,10,3,16,30,36,3.55,5.0,fr,24923,159,1026720,1,1,Active Shallow Crust,0.0,89.98991,0.0,10/03/7982 +0.15949,43.32244,1801,7,15,0,17,37,3.55,5.0,fr,24924,36,1026729,1,1,Active Shallow Crust,128.8965,89.9937,0.0,07/15/1801 +0.15949,43.32244,7986,10,4,14,40,44,3.65,5.0,fr,24925,159,1026732,1,1,Active Shallow Crust,0.0,89.98999,0.0,10/04/7986 +0.15949,43.32244,6485,9,29,1,33,6,3.75,5.0,fr,24926,129,1026750,1,1,Active Shallow Crust,0.0,89.99005,-90.0,09/29/6485 +0.15949,43.32244,6811,4,5,21,13,59,3.85,27.5,fr,24927,136,1026758,1,1,Active Shallow Crust,0.0,89.98994,0.0,04/05/6811 +0.15949,43.32244,9890,11,4,3,24,35,3.85,5.0,fr,24928,197,1026759,1,1,Active Shallow Crust,240.0104,57.99774,0.0,11/04/9890 +0.15949,43.32244,6785,9,3,7,24,25,3.95,5.0,fr,24929,135,1026774,1,1,Active Shallow Crust,0.0,89.99005,-90.0,09/03/6785 +0.15949,43.32244,4647,4,2,6,1,21,4.05,5.0,fr,24930,92,1026780,1,2,Active Shallow Crust,0.0,89.98994,0.0,04/02/4647 +0.15949,43.32244,7295,3,5,3,17,58,4.05,5.0,fr,24931,145,1026780,1,2,Active Shallow Crust,0.0,89.98994,0.0,03/05/7295 +0.15949,43.32244,9698,11,18,12,17,17,4.05,15.0,fr,24932,193,1026781,1,1,Active Shallow Crust,0.0,89.98994,0.0,11/18/9698 +0.15949,43.32244,8358,3,2,19,41,43,4.45,15.0,fr,24933,167,1026829,1,1,Active Shallow Crust,0.0,89.99,0.0,03/02/8358 +0.15949,43.32244,8973,10,15,15,22,35,4.45,27.5,fr,24934,179,1026830,1,1,Active Shallow Crust,0.0,89.99,0.0,10/15/8973 +0.15949,43.32244,131,2,18,20,1,25,4.85,27.5,fr,24935,2,1026881,1,1,Active Shallow Crust,240.0159,58.0021,0.0,02/18/0131 +0.15949,43.32244,6215,10,30,14,20,55,4.95,5.0,fr,24936,124,1026894,1,1,Active Shallow Crust,0.0,89.99001,-90.0,10/30/6215 +0.15949,43.32244,1777,3,18,6,0,6,5.05,15.0,fr,24937,35,1026901,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/18/1777 +0.15949,43.32244,6423,8,8,14,55,56,5.15,5.0,fr,24938,128,1026915,1,1,Active Shallow Crust,240.0179,57.99965,0.0,08/08/6423 +0.1594955,43.32244,6874,11,12,9,28,43,6.35,7.567806,fr,24939,137,1027056,1,1,Active Shallow Crust,360.0,89.99,0.0,11/12/6874 +5.39696,44.94229,8280,8,23,8,56,57,3.55,5.0,fr,24940,165,1027200,1,2,Active Shallow Crust,0.0,89.99286,0.0,08/23/8280 +5.39696,44.94229,8692,2,9,20,31,50,3.55,5.0,fr,24941,173,1027200,1,2,Active Shallow Crust,0.0,89.99286,0.0,02/09/8692 +5.39696,44.94229,4910,11,19,18,47,33,3.55,15.0,fr,24942,98,1027201,1,1,Active Shallow Crust,0.0,89.99286,0.0,11/19/4910 +5.39696,44.94229,3692,2,1,11,54,25,3.55,27.5,fr,24943,73,1027202,1,1,Active Shallow Crust,0.0,89.99286,0.0,02/01/3692 +5.39696,44.94229,8923,2,22,12,35,45,3.55,5.0,fr,24944,178,1027206,1,1,Active Shallow Crust,0.0,89.99278,-90.0,02/22/8923 +5.39696,44.94229,3064,10,25,13,12,8,3.55,5.0,fr,24945,61,1027209,1,1,Active Shallow Crust,128.8965,89.99287,0.0,10/25/3064 +5.39696,44.94229,4300,7,29,0,12,39,3.65,27.5,fr,24946,85,1027214,1,1,Active Shallow Crust,0.0,89.98727,0.0,07/29/4300 +5.39696,44.94229,7464,6,17,1,2,34,3.65,5.0,fr,24947,149,1027215,1,1,Active Shallow Crust,240.0013,58.01269,0.0,06/17/7464 +5.39696,44.94229,4205,12,1,19,48,44,3.65,5.0,fr,24948,84,1027218,1,1,Active Shallow Crust,0.0,89.98713,-90.0,12/01/4205 +5.39696,44.94229,9184,11,20,12,57,36,3.85,5.0,fr,24949,183,1027236,1,2,Active Shallow Crust,0.0,89.98989,0.0,11/20/9184 +5.39696,44.94229,5112,1,26,21,29,12,3.85,5.0,fr,24950,102,1027236,1,2,Active Shallow Crust,0.0,89.98989,0.0,01/26/5112 +5.39696,44.94229,1376,2,17,2,37,43,3.95,15.0,fr,24951,27,1027249,1,1,Active Shallow Crust,0.0,89.99099,0.0,02/17/1376 +5.39696,44.94229,2363,1,25,2,58,48,4.15,5.0,fr,24952,47,1027272,1,2,Active Shallow Crust,0.0,89.98927,0.0,01/25/2363 +5.39696,44.94229,3386,12,6,8,24,42,4.15,5.0,fr,24953,67,1027272,1,2,Active Shallow Crust,0.0,89.98927,0.0,12/06/3386 +5.39696,44.94229,4454,11,5,18,35,9,4.25,5.0,fr,24954,89,1027284,1,1,Active Shallow Crust,0.0,89.99043,0.0,11/05/4454 +5.39696,44.94229,5142,7,27,20,44,55,4.25,5.0,fr,24955,102,1027287,1,1,Active Shallow Crust,240.0071,57.99377,0.0,07/27/5142 +5.39696,44.94229,2215,6,5,18,49,46,4.85,5.0,fr,24956,44,1027356,1,1,Active Shallow Crust,0.0,89.99041,0.0,06/05/2215 +5.39696,44.94229,3692,2,11,0,52,45,5.65,5.0,fr,24957,73,1027452,1,1,Active Shallow Crust,0.0,89.98981,0.0,02/11/3692 +5.39696,44.94229,9049,2,11,20,13,11,6.05,15.0,fr,24958,180,1027501,1,1,Active Shallow Crust,0.0,89.98996,0.0,02/11/9049 +-0.05451,42.89171,2041,2,11,14,33,48,3.55,5.0,fr,24959,40,1027680,1,6,Active Shallow Crust,0.0,89.99001,0.0,02/11/2041 +-0.05451,42.89171,8184,8,12,4,21,1,3.55,5.0,fr,24960,163,1027680,1,6,Active Shallow Crust,0.0,89.99001,0.0,08/12/8184 +-0.05451,42.89171,5626,7,12,10,0,37,3.55,5.0,fr,24961,112,1027680,1,6,Active Shallow Crust,0.0,89.99001,0.0,07/12/5626 +-0.05451,42.89171,4210,1,2,2,50,16,3.55,5.0,fr,24962,84,1027680,1,6,Active Shallow Crust,0.0,89.99001,0.0,01/02/4210 +-0.05451,42.89171,4698,4,3,11,58,38,3.55,5.0,fr,24963,93,1027680,1,6,Active Shallow Crust,0.0,89.99001,0.0,04/03/4698 +-0.05451,42.89171,8318,11,28,3,51,5,3.55,5.0,fr,24964,166,1027680,1,6,Active Shallow Crust,0.0,89.99001,0.0,11/28/8318 +-0.05451,42.89171,2821,4,7,2,22,47,3.55,15.0,fr,24965,56,1027681,1,3,Active Shallow Crust,0.0,89.99001,0.0,04/07/2821 +-0.05451,42.89171,9365,7,20,12,25,58,3.55,15.0,fr,24966,187,1027681,1,3,Active Shallow Crust,0.0,89.99001,0.0,07/20/9365 +-0.05451,42.89171,9066,2,14,20,20,34,3.55,15.0,fr,24967,181,1027681,1,3,Active Shallow Crust,0.0,89.99001,0.0,02/14/9066 +-0.05451,42.89171,2381,4,22,22,4,37,3.55,27.5,fr,24968,47,1027682,1,2,Active Shallow Crust,0.0,89.99001,0.0,04/22/2381 +-0.05451,42.89171,604,1,16,1,5,54,3.55,27.5,fr,24969,12,1027682,1,2,Active Shallow Crust,0.0,89.99001,0.0,01/16/0604 +-0.05451,42.89171,4011,11,24,14,43,53,3.55,15.0,fr,24970,80,1027684,1,1,Active Shallow Crust,240.0119,57.9981,0.0,11/24/4011 +-0.05451,42.89171,5861,11,14,4,57,9,3.55,15.0,fr,24971,117,1027687,1,1,Active Shallow Crust,0.0,89.99001,-90.0,11/14/5861 +-0.05451,42.89171,1285,4,17,2,19,14,3.55,5.0,fr,24972,25,1027689,1,3,Active Shallow Crust,128.8965,89.99371,0.0,04/17/1285 +-0.05451,42.89171,6097,11,15,8,35,50,3.55,5.0,fr,24973,121,1027689,1,3,Active Shallow Crust,128.8965,89.99371,0.0,11/15/6097 +-0.05451,42.89171,8024,1,11,23,45,34,3.55,5.0,fr,24974,160,1027689,1,3,Active Shallow Crust,128.8965,89.99371,0.0,01/11/8024 +-0.05451,42.89171,76,2,13,8,20,24,3.55,15.0,fr,24975,1,1027690,1,1,Active Shallow Crust,128.8965,89.99371,0.0,02/13/0076 +-0.05451,42.89171,3997,2,6,21,54,46,3.65,5.0,fr,24976,79,1027692,1,5,Active Shallow Crust,0.0,89.99002,0.0,02/06/3997 +-0.05451,42.89171,8266,12,17,19,42,54,3.65,5.0,fr,24977,165,1027692,1,5,Active Shallow Crust,0.0,89.99002,0.0,12/17/8266 +-0.05451,42.89171,6835,10,12,8,34,26,3.65,5.0,fr,24978,136,1027692,1,5,Active Shallow Crust,0.0,89.99002,0.0,10/12/6835 +-0.05451,42.89171,4397,12,28,3,13,17,3.65,5.0,fr,24979,87,1027692,1,5,Active Shallow Crust,0.0,89.99002,0.0,12/28/4397 +-0.05451,42.89171,7557,3,28,3,39,43,3.65,5.0,fr,24980,151,1027692,1,5,Active Shallow Crust,0.0,89.99002,0.0,03/28/7557 +-0.05451,42.89171,760,8,24,1,24,4,3.65,15.0,fr,24981,15,1027693,1,2,Active Shallow Crust,0.0,89.99002,0.0,08/24/0760 +-0.05451,42.89171,6631,11,4,14,16,54,3.65,15.0,fr,24982,132,1027693,1,2,Active Shallow Crust,0.0,89.99002,0.0,11/04/6631 +-0.05451,42.89171,4984,6,21,14,46,39,3.65,5.0,fr,24983,99,1027695,1,1,Active Shallow Crust,240.0007,58.01283,0.0,06/21/4984 +-0.05451,42.89171,8958,6,10,16,38,20,3.65,5.0,fr,24984,179,1027701,1,1,Active Shallow Crust,128.9007,89.9635,0.0,06/10/8958 +-0.05451,42.89171,5668,9,18,9,2,48,3.75,5.0,fr,24985,113,1027704,1,3,Active Shallow Crust,0.0,89.99001,0.0,09/18/5668 +-0.05451,42.89171,6443,8,19,3,38,28,3.75,5.0,fr,24986,128,1027704,1,3,Active Shallow Crust,0.0,89.99001,0.0,08/19/6443 +-0.05451,42.89171,6182,2,7,12,9,10,3.75,5.0,fr,24987,123,1027704,1,3,Active Shallow Crust,0.0,89.99001,0.0,02/07/6182 +-0.05451,42.89171,4556,6,23,5,5,15,3.75,15.0,fr,24988,91,1027705,1,4,Active Shallow Crust,0.0,89.99001,0.0,06/23/4556 +-0.05451,42.89171,3406,1,30,19,52,21,3.75,15.0,fr,24989,68,1027705,1,4,Active Shallow Crust,0.0,89.99001,0.0,01/30/3406 +-0.05451,42.89171,9399,9,12,15,11,43,3.75,15.0,fr,24990,187,1027705,1,4,Active Shallow Crust,0.0,89.99001,0.0,09/12/9399 +-0.05451,42.89171,3378,4,11,19,56,33,3.75,15.0,fr,24991,67,1027705,1,4,Active Shallow Crust,0.0,89.99001,0.0,04/11/3378 +-0.05451,42.89171,6826,4,24,1,36,41,3.75,27.5,fr,24992,136,1027706,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/24/6826 +-0.05451,42.89171,4860,9,29,15,59,6,3.75,15.0,fr,24993,97,1027708,1,1,Active Shallow Crust,240.0079,58.01751,0.0,09/29/4860 +-0.05451,42.89171,7246,3,3,2,27,20,3.75,5.0,fr,24994,144,1027713,1,1,Active Shallow Crust,128.8969,89.96735,0.0,03/03/7246 +-0.05451,42.89171,6406,5,2,18,35,49,3.75,15.0,fr,24995,128,1027714,1,2,Active Shallow Crust,128.8969,89.96735,0.0,05/02/6406 +-0.05451,42.89171,8873,1,2,6,0,23,3.75,15.0,fr,24996,177,1027714,1,2,Active Shallow Crust,128.8969,89.96735,0.0,01/02/8873 +-0.05451,42.89171,995,6,22,3,37,20,3.85,5.0,fr,24997,19,1027716,1,2,Active Shallow Crust,0.0,89.98999,0.0,06/22/0995 +-0.05451,42.89171,5581,3,2,14,30,50,3.85,5.0,fr,24998,111,1027716,1,2,Active Shallow Crust,0.0,89.98999,0.0,03/02/5581 +-0.05451,42.89171,4870,1,27,2,50,53,3.85,15.0,fr,24999,97,1027717,1,1,Active Shallow Crust,0.0,89.98999,0.0,01/27/4870 +-0.05451,42.89171,6278,10,15,20,16,35,3.85,27.5,fr,25000,125,1027724,1,1,Active Shallow Crust,0.0,89.99,-90.0,10/15/6278 +-0.05451,42.89171,5164,6,4,3,21,21,3.85,5.0,fr,25001,103,1027725,1,1,Active Shallow Crust,128.896,89.99371,0.0,06/04/5164 +-0.05451,42.89171,9205,12,25,0,33,49,3.95,5.0,fr,25002,184,1027728,1,4,Active Shallow Crust,0.0,89.98998,0.0,12/25/9205 +-0.05451,42.89171,2915,10,26,5,33,58,3.95,5.0,fr,25003,58,1027728,1,4,Active Shallow Crust,0.0,89.98998,0.0,10/26/2915 +-0.05451,42.89171,5792,2,3,20,46,2,3.95,5.0,fr,25004,115,1027728,1,4,Active Shallow Crust,0.0,89.98998,0.0,02/03/5792 +-0.05451,42.89171,9684,8,17,22,51,51,3.95,5.0,fr,25005,193,1027728,1,4,Active Shallow Crust,0.0,89.98998,0.0,08/17/9684 +-0.05451,42.89171,8077,11,2,23,42,36,3.95,15.0,fr,25006,161,1027729,1,1,Active Shallow Crust,0.0,89.98998,0.0,11/02/8077 +-0.05451,42.89171,1715,12,26,2,28,10,3.95,5.0,fr,25007,34,1027731,1,1,Active Shallow Crust,240.0193,58.00488,0.0,12/26/1715 +-0.05451,42.89171,2413,2,10,19,21,39,3.95,5.0,fr,25008,48,1027737,1,2,Active Shallow Crust,128.9008,89.99372,0.0,02/10/2413 +-0.05451,42.89171,5193,4,7,20,34,58,3.95,5.0,fr,25009,103,1027737,1,2,Active Shallow Crust,128.9008,89.99372,0.0,04/07/5193 +-0.05451,42.89171,4827,3,9,7,45,43,4.05,5.0,fr,25010,96,1027740,1,4,Active Shallow Crust,0.0,89.99001,0.0,03/09/4827 +-0.05451,42.89171,4157,9,25,14,59,33,4.05,5.0,fr,25011,83,1027740,1,4,Active Shallow Crust,0.0,89.99001,0.0,09/25/4157 +-0.05451,42.89171,8900,2,20,6,37,25,4.05,5.0,fr,25012,177,1027740,1,4,Active Shallow Crust,0.0,89.99001,0.0,02/20/8900 +-0.05451,42.89171,6685,3,15,6,57,22,4.05,5.0,fr,25013,133,1027740,1,4,Active Shallow Crust,0.0,89.99001,0.0,03/15/6685 +-0.05451,42.89171,172,7,8,13,15,39,4.05,15.0,fr,25014,3,1027741,1,1,Active Shallow Crust,0.0,89.99001,0.0,07/08/0172 +-0.05451,42.89171,4557,4,17,4,30,31,4.05,5.0,fr,25015,91,1027746,1,1,Active Shallow Crust,0.0,89.98998,-90.0,04/17/4557 +-0.05451,42.89171,5390,6,27,14,34,19,4.05,5.0,fr,25016,107,1027749,1,2,Active Shallow Crust,128.891,89.99372,0.0,06/27/5390 +-0.05451,42.89171,7569,3,11,3,54,8,4.05,5.0,fr,25017,151,1027749,1,2,Active Shallow Crust,128.891,89.99372,0.0,03/11/7569 +-0.05451,42.89171,8419,1,16,16,9,25,4.15,5.0,fr,25018,168,1027752,1,2,Active Shallow Crust,0.0,89.98999,0.0,01/16/8419 +-0.05451,42.89171,6210,11,30,5,43,46,4.15,5.0,fr,25019,124,1027752,1,2,Active Shallow Crust,0.0,89.98999,0.0,11/30/6210 +-0.05451,42.89171,4592,6,22,12,5,14,4.15,15.0,fr,25020,91,1027753,1,1,Active Shallow Crust,0.0,89.98999,0.0,06/22/4592 +-0.05451,42.89171,1730,4,30,17,18,42,4.15,15.0,fr,25021,34,1027756,1,1,Active Shallow Crust,240.0078,57.99722,0.0,04/30/1730 +-0.05451,42.89171,5054,2,24,16,11,22,4.15,5.0,fr,25022,101,1027758,1,2,Active Shallow Crust,0.0,89.98999,-90.0,02/24/5054 +-0.05451,42.89171,8715,7,18,9,26,30,4.15,5.0,fr,25023,174,1027758,1,2,Active Shallow Crust,0.0,89.98999,-90.0,07/18/8715 +-0.05451,42.89171,3043,10,24,20,32,27,4.25,5.0,fr,25024,60,1027764,1,2,Active Shallow Crust,0.0,89.99,0.0,10/24/3043 +-0.05451,42.89171,7795,12,4,19,25,51,4.25,5.0,fr,25025,155,1027764,1,2,Active Shallow Crust,0.0,89.99,0.0,12/04/7795 +-0.05451,42.89171,3655,5,18,13,43,8,4.45,15.0,fr,25026,73,1027789,1,2,Active Shallow Crust,0.0,89.99001,0.0,05/18/3655 +-0.05451,42.89171,4014,6,20,19,36,51,4.45,15.0,fr,25027,80,1027789,1,2,Active Shallow Crust,0.0,89.99001,0.0,06/20/4014 +-0.05451,42.89171,8453,6,8,0,23,4,4.55,15.0,fr,25028,169,1027801,1,1,Active Shallow Crust,0.0,89.99,0.0,06/08/8453 +-0.05451,42.89171,895,9,15,0,57,15,4.55,27.5,fr,25029,17,1027805,1,1,Active Shallow Crust,240.0083,57.99717,0.0,09/15/0895 +-0.05451,42.89171,8532,12,13,16,30,57,4.55,5.0,fr,25030,170,1027806,1,1,Active Shallow Crust,0.0,89.98999,-90.0,12/13/8532 +-0.05451,42.89171,941,2,4,7,46,32,4.75,5.0,fr,25031,18,1027824,1,1,Active Shallow Crust,0.0,89.99,0.0,02/04/0941 +-0.05451,42.89171,1877,12,29,16,1,29,4.75,27.5,fr,25032,37,1027826,1,1,Active Shallow Crust,0.0,89.99,0.0,12/29/1877 +-0.05451,42.89171,6240,6,14,20,21,15,4.95,5.0,fr,25033,124,1027851,1,1,Active Shallow Crust,240.0103,58.00418,0.0,06/14/6240 +-0.05451,42.89171,1817,9,15,9,54,9,5.05,5.0,fr,25034,36,1027860,1,1,Active Shallow Crust,360.0,89.99,0.0,09/15/1817 +-0.05451,42.89171,8784,12,15,5,59,21,5.05,15.0,fr,25035,175,1027861,1,1,Active Shallow Crust,360.0,89.99,0.0,12/15/8784 +-0.05451,42.89171,3999,4,24,6,17,27,5.15,5.0,fr,25036,79,1027872,1,1,Active Shallow Crust,360.0,89.99,0.0,04/24/3999 +-0.05451,42.89171,7643,12,23,20,19,54,5.25,5.0,fr,25037,152,1027884,1,1,Active Shallow Crust,360.0,89.99001,0.0,12/23/7643 +-0.05451,42.89171,1584,11,5,15,40,23,5.25,15.0,fr,25038,31,1027885,1,1,Active Shallow Crust,360.0,89.99001,0.0,11/05/1584 +-0.05451,42.89171,7524,6,24,16,17,33,5.35,27.5,fr,25039,150,1027898,1,1,Active Shallow Crust,360.0,89.99,0.0,06/24/7524 +-0.05451,42.89171,4310,7,15,6,28,13,5.65,5.0,fr,25040,86,1027932,1,1,Active Shallow Crust,360.0,89.99,0.0,07/15/4310 +5.91204,41.53455,4153,1,18,5,51,46,3.55,5.0,fr,25041,83,1028160,1,1,Active Shallow Crust,0.0,89.99245,0.0,01/18/4153 +5.91204,41.53455,2711,5,3,10,48,46,3.75,5.0,fr,25042,54,1028184,1,1,Active Shallow Crust,0.0,89.98801,0.0,05/03/2711 +9.27839,49.25453,8405,4,20,5,24,6,3.55,5.0,fr,25043,168,1028643,1,1,Active Shallow Crust,240.0118,57.99688,0.0,04/20/8405 +3.59133,39.99959,4958,10,10,17,10,19,4.15,5.0,fr,25044,99,1029192,1,1,Active Shallow Crust,0.0,89.99032,0.0,10/10/4958 +-3.86376,47.58192,7588,2,5,8,35,11,3.65,5.0,fr,25045,151,1029615,1,1,Active Shallow Crust,240.0019,58.01273,0.0,02/05/7588 +-3.86376,47.58192,5958,2,5,3,11,3,3.65,5.0,fr,25046,119,1029618,1,1,Active Shallow Crust,0.0,89.9908,-90.0,02/05/5958 +-3.86376,47.58192,2053,2,15,8,7,1,4.05,15.0,fr,25047,41,1029664,1,1,Active Shallow Crust,240.0059,58.00578,0.0,02/15/2053 +-3.86376,47.58192,3266,7,1,2,27,55,5.15,5.0,fr,25048,65,1029792,1,1,Active Shallow Crust,0.0,89.98975,0.0,07/01/3266 +-3.86376,47.58192,7894,11,1,2,2,12,5.75,5.0,fr,25049,157,1029867,1,1,Active Shallow Crust,240.0398,58.00209,0.0,11/01/7894 +-3.04319,42.9749,8456,11,16,13,32,11,3.55,5.0,fr,25050,169,1030080,1,1,Active Shallow Crust,0.0,89.98893,0.0,11/16/8456 +-3.04319,42.9749,1820,4,28,20,39,37,3.55,5.0,fr,25051,36,1030089,1,2,Active Shallow Crust,128.8965,89.99447,0.0,04/28/1820 +-3.04319,42.9749,7581,6,27,23,10,7,3.55,5.0,fr,25052,151,1030089,1,2,Active Shallow Crust,128.8965,89.99447,0.0,06/27/7581 +-3.04319,42.9749,4389,7,17,3,19,48,3.65,5.0,fr,25053,87,1030092,1,2,Active Shallow Crust,0.0,89.99014,0.0,07/17/4389 +-3.04319,42.9749,9098,9,14,12,29,58,3.65,5.0,fr,25054,181,1030092,1,2,Active Shallow Crust,0.0,89.99014,0.0,09/14/9098 +-3.04319,42.9749,2109,11,15,15,27,39,3.65,15.0,fr,25055,42,1030093,1,1,Active Shallow Crust,0.0,89.99014,0.0,11/15/2109 +-3.04319,42.9749,6288,2,14,7,51,1,3.65,5.0,fr,25056,125,1030095,1,1,Active Shallow Crust,240.0014,58.01271,0.0,02/14/6288 +-3.04319,42.9749,5473,10,21,13,31,20,3.65,5.0,fr,25057,109,1030101,1,1,Active Shallow Crust,128.9007,89.96371,0.0,10/21/5473 +-3.04319,42.9749,7633,12,31,4,14,12,3.75,5.0,fr,25058,152,1030104,1,2,Active Shallow Crust,0.0,89.99121,0.0,12/31/7633 +-3.04319,42.9749,9532,9,2,2,55,5,3.75,5.0,fr,25059,190,1030104,1,2,Active Shallow Crust,0.0,89.99121,0.0,09/02/9532 +-3.04319,42.9749,5210,11,3,23,15,5,3.75,5.0,fr,25060,104,1030107,1,1,Active Shallow Crust,240.0085,58.01724,0.0,11/03/5210 +-3.04319,42.9749,9490,5,24,14,4,21,3.85,5.0,fr,25061,189,1030116,1,3,Active Shallow Crust,0.0,89.98956,0.0,05/24/9490 +-3.04319,42.9749,5708,6,12,4,3,14,3.85,5.0,fr,25062,114,1030116,1,3,Active Shallow Crust,0.0,89.98956,0.0,06/12/5708 +-3.04319,42.9749,2630,6,26,13,26,56,3.85,5.0,fr,25063,52,1030116,1,3,Active Shallow Crust,0.0,89.98956,0.0,06/26/2630 +-3.04319,42.9749,3461,11,24,7,3,37,3.85,15.0,fr,25064,69,1030117,1,1,Active Shallow Crust,0.0,89.98956,0.0,11/24/3461 +-3.04319,42.9749,2327,3,28,10,16,33,3.95,5.0,fr,25065,46,1030137,1,1,Active Shallow Crust,128.9011,89.99302,0.0,03/28/2327 +-3.04319,42.9749,1728,11,26,0,13,20,4.05,5.0,fr,25066,34,1030140,1,3,Active Shallow Crust,0.0,89.98962,0.0,11/26/1728 +-3.04319,42.9749,5625,11,2,20,0,24,4.05,5.0,fr,25067,112,1030140,1,3,Active Shallow Crust,0.0,89.98962,0.0,11/02/5625 +-3.04319,42.9749,3805,10,8,18,8,36,4.05,5.0,fr,25068,76,1030140,1,3,Active Shallow Crust,0.0,89.98962,0.0,10/08/3805 +6.23977,47.26158,1724,7,27,1,30,39,3.55,5.0,fr,25069,34,1030560,1,1,Active Shallow Crust,0.0,89.99316,0.0,07/27/1724 +6.23977,47.26158,580,7,12,2,11,7,3.55,15.0,fr,25070,11,1030561,1,2,Active Shallow Crust,0.0,89.99316,0.0,07/12/0580 +6.23977,47.26158,7830,8,9,16,7,9,3.55,15.0,fr,25071,156,1030561,1,2,Active Shallow Crust,0.0,89.99316,0.0,08/09/7830 +6.23977,47.26158,7918,5,26,21,34,15,3.55,5.0,fr,25072,158,1030563,1,1,Active Shallow Crust,240.0109,57.99912,0.0,05/26/7918 +6.23977,47.26158,1902,2,14,6,38,10,3.65,5.0,fr,25073,38,1030575,1,1,Active Shallow Crust,240.0008,58.01287,0.0,02/14/1902 +6.23977,47.26158,2490,3,26,10,22,57,3.75,5.0,fr,25074,49,1030590,1,1,Active Shallow Crust,0.0,89.989,-90.0,03/26/2490 +6.23977,47.26158,5463,9,6,22,0,4,3.75,15.0,fr,25075,109,1030591,1,1,Active Shallow Crust,0.0,89.989,-90.0,09/06/5463 +6.23977,47.26158,2620,6,17,15,0,19,3.85,5.0,fr,25076,52,1030596,1,1,Active Shallow Crust,0.0,89.99031,0.0,06/17/2620 +6.23977,47.26158,949,8,11,17,13,22,3.85,15.0,fr,25077,18,1030597,1,1,Active Shallow Crust,0.0,89.99031,0.0,08/11/0949 +6.23977,47.26158,40,8,27,18,57,51,3.85,5.0,fr,25078,0,1030602,1,1,Active Shallow Crust,0.0,89.9902,-90.0,08/27/0040 +6.23977,47.26158,1487,5,19,19,45,29,3.85,5.0,fr,25079,29,1030605,1,1,Active Shallow Crust,128.896,89.99274,0.0,05/19/1487 +6.23977,47.26158,5531,1,21,22,38,56,4.05,27.5,fr,25080,110,1030622,1,1,Active Shallow Crust,0.0,89.98846,0.0,01/21/5531 +6.23977,47.26158,9190,6,13,9,38,28,4.25,5.0,fr,25081,183,1030644,1,3,Active Shallow Crust,0.0,89.99083,0.0,06/13/9190 +6.23977,47.26158,5644,7,3,11,31,57,4.25,5.0,fr,25082,112,1030644,1,3,Active Shallow Crust,0.0,89.99083,0.0,07/03/5644 +6.23977,47.26158,7596,9,3,23,36,53,4.25,5.0,fr,25083,151,1030644,1,3,Active Shallow Crust,0.0,89.99083,0.0,09/03/7596 +6.23977,47.26158,7145,2,25,13,43,0,4.25,15.0,fr,25084,142,1030645,1,1,Active Shallow Crust,0.0,89.99083,0.0,02/25/7145 +6.23977,47.26158,2473,12,21,21,27,25,4.25,5.0,fr,25085,49,1030653,1,1,Active Shallow Crust,128.8934,89.98097,0.0,12/21/2473 +6.23977,47.26158,4748,2,14,22,53,18,4.35,15.0,fr,25086,94,1030657,1,2,Active Shallow Crust,0.0,89.9891,0.0,02/14/4748 +6.23977,47.26158,3179,10,31,7,35,38,4.35,15.0,fr,25087,63,1030657,1,2,Active Shallow Crust,0.0,89.9891,0.0,10/31/3179 +6.23977,47.26158,1964,1,8,6,32,52,4.55,15.0,fr,25088,39,1030687,1,1,Active Shallow Crust,0.0,89.98905,-90.0,01/08/1964 +6.239783,47.26158,8831,5,7,12,26,3,6.65,10.68981,fr,25089,176,1030932,1,1,Active Shallow Crust,0.0,89.99005,0.0,05/07/8831 +5.23845,49.1632,4081,2,4,12,32,19,4.65,5.0,fr,25090,81,1031172,1,1,Active Shallow Crust,0.0,89.99071,0.0,02/04/4081 +5.23845,49.1632,8330,3,3,6,2,40,4.85,5.0,fr,25091,166,1031199,1,1,Active Shallow Crust,240.0185,58.00246,0.0,03/03/8330 +5.23845,49.1632,606,2,19,12,19,34,5.15,15.0,fr,25092,12,1031233,1,1,Active Shallow Crust,0.0,89.98955,0.0,02/19/0606 +4.69637,40.69813,3850,11,27,8,49,3,3.55,5.0,fr,25093,76,1031526,1,1,Active Shallow Crust,0.0,89.99226,-90.0,11/27/3850 +4.69637,40.69813,851,4,2,5,34,54,3.75,27.5,fr,25094,17,1031546,1,1,Active Shallow Crust,0.0,89.98785,0.0,04/02/0851 +4.69637,40.69813,3480,11,5,0,36,9,3.85,5.0,fr,25095,69,1031556,1,1,Active Shallow Crust,0.0,89.98917,0.0,11/05/3480 +4.69637,40.69813,920,3,12,18,13,45,4.05,5.0,fr,25096,18,1031583,1,1,Active Shallow Crust,240.0053,58.00487,0.0,03/12/0920 +4.69637,40.69813,1605,9,2,20,57,45,4.85,5.0,fr,25097,32,1031685,1,1,Active Shallow Crust,128.8943,89.98917,0.0,09/02/1605 +4.684954,40.71312,169,10,18,16,10,38,6.55,8.079612,fr,25098,3,1031883,1,1,Active Shallow Crust,240.0828,57.99987,0.0,10/18/0169 +2.10957,40.9954,6377,12,15,1,40,56,3.55,27.5,fr,25099,127,1032002,1,2,Active Shallow Crust,0.0,89.98859,0.0,12/15/6377 +2.10957,40.9954,550,2,16,18,52,33,3.55,27.5,fr,25100,10,1032002,1,2,Active Shallow Crust,0.0,89.98859,0.0,02/16/0550 +2.10957,40.9954,4682,7,12,10,1,36,3.65,5.0,fr,25101,93,1032012,1,1,Active Shallow Crust,0.0,89.98982,0.0,07/12/4682 +2.10957,40.9954,7506,11,12,3,58,30,3.65,5.0,fr,25102,150,1032018,1,1,Active Shallow Crust,0.0,89.98971,-90.0,11/12/7506 +2.10957,40.9954,1745,3,28,21,54,32,3.75,27.5,fr,25103,34,1032026,1,1,Active Shallow Crust,0.0,89.99093,0.0,03/28/1745 +2.10957,40.9954,1800,10,4,22,3,51,3.85,5.0,fr,25104,35,1032036,1,1,Active Shallow Crust,0.0,89.98923,0.0,10/04/1800 +2.10957,40.9954,7171,8,22,22,9,10,3.95,5.0,fr,25105,143,1032048,1,1,Active Shallow Crust,0.0,89.99039,0.0,08/22/7171 +2.10957,40.9954,9809,4,28,1,6,14,4.15,5.0,fr,25106,196,1032072,1,1,Active Shallow Crust,0.0,89.99046,0.0,04/28/9809 +2.10957,40.9954,6168,4,22,2,18,11,4.35,27.5,fr,25107,123,1032101,1,1,Active Shallow Crust,240.0072,57.99576,0.0,04/22/6168 +2.14149,43.53968,8409,9,8,16,6,8,3.75,5.0,fr,25108,168,1032513,1,1,Active Shallow Crust,128.8973,89.96744,0.0,09/08/8409 +-1.07636,47.0194,6798,11,11,12,26,6,3.55,5.0,fr,25109,135,1032960,1,1,Active Shallow Crust,0.0,89.98969,0.0,11/11/6798 +-1.07636,47.0194,882,3,22,16,33,19,3.55,15.0,fr,25110,17,1032961,1,1,Active Shallow Crust,0.0,89.98969,0.0,03/22/0882 +-1.07636,47.0194,3512,7,22,5,4,1,3.55,15.0,fr,25111,70,1032964,1,1,Active Shallow Crust,240.0124,57.99815,0.0,07/22/3512 +-1.07636,47.0194,3635,1,4,19,39,31,3.65,5.0,fr,25112,72,1032978,1,1,Active Shallow Crust,0.0,89.9907,-90.0,01/04/3635 +-1.07636,47.0194,4977,7,12,10,29,53,3.65,15.0,fr,25113,99,1032979,1,1,Active Shallow Crust,0.0,89.9907,-90.0,07/12/4977 +-1.07636,47.0194,3823,10,21,9,39,26,3.65,5.0,fr,25114,76,1032981,1,1,Active Shallow Crust,128.9004,89.96339,0.0,10/21/3823 +-1.07636,47.0194,7342,11,27,15,40,33,3.75,5.0,fr,25115,146,1032984,1,3,Active Shallow Crust,0.0,89.99044,0.0,11/27/7342 +-1.07636,47.0194,2274,2,23,10,25,38,3.75,5.0,fr,25116,45,1032984,1,3,Active Shallow Crust,0.0,89.99044,0.0,02/23/2274 +-1.07636,47.0194,6207,12,10,3,8,25,3.75,5.0,fr,25117,124,1032984,1,3,Active Shallow Crust,0.0,89.99044,0.0,12/10/6207 +-1.07636,47.0194,4972,6,27,23,50,3,3.75,15.0,fr,25118,99,1032985,1,1,Active Shallow Crust,0.0,89.99044,0.0,06/27/4972 +-1.07636,47.0194,7948,9,9,18,34,13,3.85,15.0,fr,25119,158,1033006,1,1,Active Shallow Crust,128.8954,89.99392,0.0,09/09/7948 +-1.07636,47.0194,153,6,16,2,5,42,3.95,5.0,fr,25120,3,1033008,1,1,Active Shallow Crust,0.0,89.99024,0.0,06/16/0153 +-1.07636,47.0194,8531,3,4,23,24,42,3.95,5.0,fr,25121,170,1033011,1,1,Active Shallow Crust,240.02,58.00494,0.0,03/04/8531 +-1.07636,47.0194,1401,1,26,14,49,46,4.05,15.0,fr,25122,28,1033021,1,1,Active Shallow Crust,0.0,89.99033,0.0,01/26/1401 +-1.07636,47.0194,272,12,17,14,42,7,4.25,5.0,fr,25123,5,1033044,1,1,Active Shallow Crust,0.0,89.99002,0.0,12/17/0272 +-1.07636,47.0194,3721,12,22,13,43,37,4.25,15.0,fr,25124,74,1033045,1,1,Active Shallow Crust,0.0,89.99002,0.0,12/22/3721 +-1.07636,47.0194,3547,4,18,17,9,40,4.35,5.0,fr,25125,70,1033056,1,1,Active Shallow Crust,0.0,89.98974,0.0,04/18/3547 +-1.07636,47.0194,9627,4,27,9,59,57,4.45,5.0,fr,25126,192,1033068,1,1,Active Shallow Crust,0.0,89.99024,0.0,04/27/9627 +-1.07636,47.0194,7097,8,7,4,18,18,4.55,5.0,fr,25127,141,1033080,1,1,Active Shallow Crust,0.0,89.99022,0.0,08/07/7097 +4.4554,46.63706,2684,10,22,5,34,42,3.55,5.0,fr,25128,53,1033440,1,2,Active Shallow Crust,0.0,89.99307,0.0,10/22/2684 +4.4554,46.63706,6408,10,9,20,38,35,3.55,5.0,fr,25129,128,1033440,1,2,Active Shallow Crust,0.0,89.99307,0.0,10/09/6408 +4.4554,46.63706,3139,7,6,11,25,35,3.55,15.0,fr,25130,62,1033447,1,1,Active Shallow Crust,0.0,89.993,-90.0,07/06/3139 +4.4554,46.63706,3184,10,30,0,44,41,3.65,5.0,fr,25131,63,1033452,1,3,Active Shallow Crust,0.0,89.98766,0.0,10/30/3184 +4.4554,46.63706,2518,7,22,20,34,25,3.65,5.0,fr,25132,50,1033452,1,3,Active Shallow Crust,0.0,89.98766,0.0,07/22/2518 +4.4554,46.63706,7692,7,20,11,50,22,3.65,5.0,fr,25133,153,1033452,1,3,Active Shallow Crust,0.0,89.98766,0.0,07/20/7692 +4.4554,46.63706,4045,12,28,10,59,18,3.65,15.0,fr,25134,80,1033453,1,2,Active Shallow Crust,0.0,89.98766,0.0,12/28/4045 +4.4554,46.63706,5941,2,25,9,50,21,3.65,15.0,fr,25135,118,1033453,1,2,Active Shallow Crust,0.0,89.98766,0.0,02/25/5941 +4.4554,46.63706,5110,9,3,1,2,1,3.65,5.0,fr,25136,102,1033458,1,1,Active Shallow Crust,0.0,89.98752,-90.0,09/03/5110 +4.4554,46.63706,483,6,15,14,4,58,3.95,5.0,fr,25137,9,1033488,1,1,Active Shallow Crust,0.0,89.99126,0.0,06/15/0483 +4.4554,46.63706,8277,2,1,18,44,16,4.15,15.0,fr,25138,165,1033513,1,1,Active Shallow Crust,0.0,89.98959,0.0,02/01/8277 +4.4554,46.63706,8043,1,27,21,8,3,4.35,5.0,fr,25139,160,1033539,1,1,Active Shallow Crust,240.0081,57.9961,0.0,01/27/8043 +4.4554,46.63706,8582,11,26,18,59,33,4.35,15.0,fr,25140,171,1033540,1,1,Active Shallow Crust,240.0081,57.9961,0.0,11/26/8582 +4.4554,46.63706,7249,1,24,11,59,30,4.35,15.0,fr,25141,144,1033543,1,1,Active Shallow Crust,0.0,89.98885,-90.0,01/24/7249 +4.4554,46.63706,7053,1,24,21,28,1,4.35,5.0,fr,25142,141,1033545,1,1,Active Shallow Crust,128.8972,89.98302,0.0,01/24/7053 +4.4554,46.63706,3784,4,27,22,52,52,4.55,5.0,fr,25143,75,1033560,1,1,Active Shallow Crust,0.0,89.98905,0.0,04/27/3784 +4.4554,46.63706,836,4,17,18,50,47,4.65,5.0,fr,25144,16,1033572,1,1,Active Shallow Crust,0.0,89.99024,0.0,04/17/0836 +4.4554,46.63706,7984,12,9,3,43,4,5.05,5.0,fr,25145,159,1033623,1,1,Active Shallow Crust,240.022,57.99758,0.0,12/09/7984 +-3.95772,48.66206,2156,9,2,11,57,30,3.55,15.0,fr,25146,43,1033921,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/02/2156 +-3.95772,48.66206,6904,12,6,21,33,42,3.65,15.0,fr,25147,138,1033933,1,1,Active Shallow Crust,0.0,89.9911,0.0,12/06/6904 +-3.95772,48.66206,3189,12,31,0,19,49,3.75,5.0,fr,25148,63,1033944,1,2,Active Shallow Crust,0.0,89.98942,0.0,12/31/3189 +-3.95772,48.66206,4430,1,25,0,15,31,3.75,5.0,fr,25149,88,1033944,1,2,Active Shallow Crust,0.0,89.98942,0.0,01/25/4430 +-3.95772,48.66206,6063,3,16,4,53,57,3.75,15.0,fr,25150,121,1033948,1,1,Active Shallow Crust,240.0088,58.01743,0.0,03/16/6063 +-3.95772,48.66206,1242,3,13,23,32,18,3.95,15.0,fr,25151,24,1033969,1,1,Active Shallow Crust,0.0,89.98949,0.0,03/13/1242 +-3.95772,48.66206,2518,8,6,12,55,52,3.95,5.0,fr,25152,50,1033971,1,1,Active Shallow Crust,240.0199,58.00515,0.0,08/06/2518 +-3.95772,48.66206,5638,2,23,16,55,56,3.95,5.0,fr,25153,112,1033974,1,1,Active Shallow Crust,0.0,89.98937,-90.0,02/23/5638 +-3.95772,48.66206,1898,6,15,16,39,26,3.95,15.0,fr,25154,37,1033975,1,1,Active Shallow Crust,0.0,89.98937,-90.0,06/15/1898 +-3.95772,48.66206,2960,11,25,0,21,18,4.35,5.0,fr,25155,59,1034016,1,1,Active Shallow Crust,0.0,89.9894,0.0,11/25/2960 +-3.95772,48.66206,7508,4,5,16,46,16,5.25,5.0,fr,25156,150,1034124,1,1,Active Shallow Crust,0.0,89.99012,0.0,04/05/7508 +-0.30715,48.81613,4020,10,17,1,14,16,3.55,5.0,fr,25157,80,1034403,1,1,Active Shallow Crust,240.0125,57.99812,0.0,10/17/4020 +-0.30715,48.81613,5949,6,9,21,59,11,3.55,15.0,fr,25158,118,1034410,1,1,Active Shallow Crust,128.8961,89.99377,0.0,06/09/5949 +-0.30715,48.81613,1993,5,26,10,35,33,3.65,5.0,fr,25159,39,1034412,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/26/1993 +-0.30715,48.81613,2338,12,30,17,49,36,3.65,15.0,fr,25160,46,1034413,1,1,Active Shallow Crust,0.0,89.99001,0.0,12/30/2338 +-0.30715,48.81613,6822,9,13,13,21,31,3.85,5.0,fr,25161,136,1034436,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/13/6822 +-0.30715,48.81613,5749,9,7,12,33,35,3.95,5.0,fr,25162,114,1034448,1,2,Active Shallow Crust,0.0,89.99005,0.0,09/07/5749 +-0.30715,48.81613,1917,1,16,4,56,15,3.95,5.0,fr,25163,38,1034448,1,2,Active Shallow Crust,0.0,89.99005,0.0,01/16/1917 +-0.30715,48.81613,1410,3,8,20,24,9,3.95,27.5,fr,25164,28,1034453,1,1,Active Shallow Crust,240.0202,58.00503,0.0,03/08/1410 +-0.30715,48.81613,9630,1,18,10,27,55,4.05,15.0,fr,25165,192,1034461,1,1,Active Shallow Crust,0.0,89.98997,0.0,01/18/9630 +-0.30715,48.81613,8313,6,5,12,33,45,4.15,5.0,fr,25166,166,1034475,1,1,Active Shallow Crust,240.0089,57.99738,0.0,06/05/8313 +-0.30715,48.81613,2701,12,13,15,20,15,4.25,5.0,fr,25167,54,1034484,1,1,Active Shallow Crust,0.0,89.98999,0.0,12/13/2701 +-0.30715,48.81613,99,3,24,8,26,26,4.25,5.0,fr,25168,1,1034493,1,1,Active Shallow Crust,128.8939,89.98094,0.0,03/24/0099 +-0.30715,48.81613,8002,1,23,3,0,41,4.35,15.0,fr,25169,160,1034500,1,1,Active Shallow Crust,240.009,57.99606,0.0,01/23/8002 +-0.30715,48.81613,7915,6,7,21,28,37,4.35,15.0,fr,25170,158,1034503,1,1,Active Shallow Crust,0.0,89.98997,-90.0,06/07/7915 +-0.30715,48.81613,1905,5,20,3,55,35,4.45,5.0,fr,25171,38,1034508,1,1,Active Shallow Crust,0.0,89.98998,0.0,05/20/1905 +7.1446,43.29951,8208,12,13,10,31,5,3.55,5.0,fr,25172,164,1034880,1,1,Active Shallow Crust,0.0,89.99266,0.0,12/13/8208 +7.1446,43.29951,1303,12,2,5,56,21,3.55,5.0,fr,25173,26,1034883,1,1,Active Shallow Crust,240.0121,57.99842,0.0,12/02/1303 +7.1446,43.29951,4099,8,26,18,12,8,3.65,5.0,fr,25174,81,1034892,1,1,Active Shallow Crust,0.0,89.98692,0.0,08/26/4099 +7.1446,43.29951,5825,2,19,19,12,7,3.95,5.0,fr,25175,116,1034937,1,1,Active Shallow Crust,128.901,89.99306,0.0,02/19/5825 +7.1446,43.29951,5556,8,14,8,35,38,4.45,15.0,fr,25176,111,1034989,1,1,Active Shallow Crust,0.0,89.98959,0.0,08/14/5556 +7.1446,43.29951,5096,12,30,0,12,11,4.55,15.0,fr,25177,101,1035004,1,1,Active Shallow Crust,240.0084,57.99707,0.0,12/30/5096 +7.1446,43.29951,9535,5,14,22,45,11,5.45,5.0,fr,25178,190,1035108,1,1,Active Shallow Crust,0.0,89.99011,0.0,05/14/9535 +-1.51027,42.60021,4261,8,9,18,4,48,3.55,5.0,fr,25179,85,1035360,1,2,Active Shallow Crust,0.0,89.99072,0.0,08/09/4261 +-1.51027,42.60021,8349,12,4,8,57,18,3.55,5.0,fr,25180,166,1035360,1,2,Active Shallow Crust,0.0,89.99072,0.0,12/04/8349 +-1.51027,42.60021,7810,10,17,11,52,12,3.55,15.0,fr,25181,156,1035361,1,1,Active Shallow Crust,0.0,89.99072,0.0,10/17/7810 +-1.51027,42.60021,5299,4,26,6,9,43,3.55,27.5,fr,25182,105,1035362,1,1,Active Shallow Crust,0.0,89.99072,0.0,04/26/5299 +-1.51027,42.60021,55,4,20,10,46,26,3.55,5.0,fr,25183,1,1035363,1,1,Active Shallow Crust,240.012,57.99804,0.0,04/20/0055 +-1.51027,42.60021,4810,10,29,1,13,25,3.65,5.0,fr,25184,96,1035372,1,3,Active Shallow Crust,0.0,89.99007,0.0,10/29/4810 +-1.51027,42.60021,2668,4,16,10,16,26,3.65,5.0,fr,25185,53,1035372,1,3,Active Shallow Crust,0.0,89.99007,0.0,04/16/2668 +-1.51027,42.60021,8842,11,24,4,1,6,3.65,5.0,fr,25186,176,1035372,1,3,Active Shallow Crust,0.0,89.99007,0.0,11/24/8842 +-1.51027,42.60021,6691,6,30,15,33,9,3.65,5.0,fr,25187,133,1035378,1,1,Active Shallow Crust,0.0,89.98996,-90.0,06/30/6691 +-1.51027,42.60021,1421,4,8,14,15,9,3.75,5.0,fr,25188,28,1035384,1,1,Active Shallow Crust,0.0,89.98969,0.0,04/08/1421 +-1.51027,42.60021,4347,9,26,16,24,28,4.05,5.0,fr,25189,86,1035420,1,1,Active Shallow Crust,0.0,89.98956,0.0,09/26/4347 +-1.51027,42.60021,8156,9,15,16,6,28,4.25,5.0,fr,25190,163,1035444,1,1,Active Shallow Crust,0.0,89.99005,0.0,09/15/8156 +-1.51027,42.60021,1048,3,26,22,33,59,4.25,15.0,fr,25191,20,1035445,1,1,Active Shallow Crust,0.0,89.99005,0.0,03/26/1048 +-1.51027,42.60021,6822,7,18,15,21,25,4.25,5.0,fr,25192,136,1035450,1,1,Active Shallow Crust,0.0,89.98994,-90.0,07/18/6822 +-1.51027,42.60021,842,12,10,11,25,38,4.25,5.0,fr,25193,16,1035453,1,1,Active Shallow Crust,128.8949,89.98094,0.0,12/10/0842 +-1.51027,42.60021,6508,5,4,22,57,30,4.35,5.0,fr,25194,130,1035456,1,1,Active Shallow Crust,0.0,89.98965,0.0,05/04/6508 +-1.51027,42.60021,696,12,7,10,51,47,4.45,5.0,fr,25195,13,1035468,1,1,Active Shallow Crust,0.0,89.99012,0.0,12/07/0696 +-1.51027,42.60021,4722,9,24,7,19,15,4.65,5.0,fr,25196,94,1035498,1,1,Active Shallow Crust,0.0,89.98994,-90.0,09/24/4722 +-1.51027,42.60021,228,2,17,7,41,11,4.85,15.0,fr,25197,4,1035520,1,1,Active Shallow Crust,240.0156,58.00201,0.0,02/17/0228 +3.1063,52.57742,6033,3,8,11,0,31,4.95,5.0,fr,25198,120,1036011,1,1,Active Shallow Crust,240.0151,58.00507,0.0,03/08/6033 +4.49214,41.34888,3737,10,1,22,8,56,3.65,5.0,fr,25199,74,1036332,1,2,Active Shallow Crust,0.0,89.99326,0.0,10/01/3737 +4.49214,41.34888,2097,5,22,18,50,24,3.65,5.0,fr,25200,41,1036332,1,2,Active Shallow Crust,0.0,89.99326,0.0,05/22/2097 +4.49214,41.34888,2531,12,21,18,21,9,3.65,15.0,fr,25201,50,1036333,1,1,Active Shallow Crust,0.0,89.99326,0.0,12/21/2531 +4.49214,41.34888,2887,5,10,17,58,57,3.75,5.0,fr,25202,57,1036347,1,1,Active Shallow Crust,240.0071,58.01791,0.0,05/10/2887 +4.49214,41.34888,4369,10,15,0,30,48,4.05,15.0,fr,25203,87,1036381,1,1,Active Shallow Crust,0.0,89.99149,0.0,10/15/4369 +8.21096,46.84518,6475,12,23,14,16,7,3.55,5.0,fr,25204,129,1036800,1,8,Active Shallow Crust,0.0,89.98621,0.0,12/23/6475 +8.21096,46.84518,7024,7,6,15,52,38,3.55,5.0,fr,25205,140,1036800,1,8,Active Shallow Crust,0.0,89.98621,0.0,07/06/7024 +8.21096,46.84518,846,8,10,23,1,17,3.55,5.0,fr,25206,16,1036800,1,8,Active Shallow Crust,0.0,89.98621,0.0,08/10/0846 +8.21096,46.84518,9018,8,30,21,15,12,3.55,5.0,fr,25207,180,1036800,1,8,Active Shallow Crust,0.0,89.98621,0.0,08/30/9018 +8.21096,46.84518,1038,1,1,20,54,48,3.55,5.0,fr,25208,20,1036800,1,8,Active Shallow Crust,0.0,89.98621,0.0,01/01/1038 +8.21096,46.84518,4221,1,31,16,55,6,3.55,5.0,fr,25209,84,1036800,1,8,Active Shallow Crust,0.0,89.98621,0.0,01/31/4221 +8.21096,46.84518,991,3,6,20,42,9,3.55,5.0,fr,25210,19,1036800,1,8,Active Shallow Crust,0.0,89.98621,0.0,03/06/0991 +8.21096,46.84518,7566,1,13,7,9,23,3.55,5.0,fr,25211,151,1036800,1,8,Active Shallow Crust,0.0,89.98621,0.0,01/13/7566 +8.21096,46.84518,198,1,30,23,9,19,3.55,15.0,fr,25212,3,1036801,1,3,Active Shallow Crust,0.0,89.98621,0.0,01/30/0198 +8.21096,46.84518,1809,10,3,9,52,41,3.55,15.0,fr,25213,36,1036801,1,3,Active Shallow Crust,0.0,89.98621,0.0,10/03/1809 +8.21096,46.84518,4130,8,12,5,59,16,3.55,15.0,fr,25214,82,1036801,1,3,Active Shallow Crust,0.0,89.98621,0.0,08/12/4130 +8.21096,46.84518,7529,1,15,1,24,40,3.55,27.5,fr,25215,150,1036802,1,1,Active Shallow Crust,0.0,89.98621,0.0,01/15/7529 +8.21096,46.84518,3622,9,22,1,53,29,3.55,5.0,fr,25216,72,1036803,1,4,Active Shallow Crust,240.0139,57.99838,0.0,09/22/3622 +8.21096,46.84518,1471,2,7,17,34,54,3.55,5.0,fr,25217,29,1036803,1,4,Active Shallow Crust,240.0139,57.99838,0.0,02/07/1471 +8.21096,46.84518,1937,9,6,23,14,14,3.55,5.0,fr,25218,38,1036803,1,4,Active Shallow Crust,240.0139,57.99838,0.0,09/06/1937 +8.21096,46.84518,5767,7,9,11,18,30,3.55,5.0,fr,25219,115,1036803,1,4,Active Shallow Crust,240.0139,57.99838,0.0,07/09/5767 +8.21096,46.84518,4302,9,16,23,3,32,3.55,5.0,fr,25220,86,1036806,1,1,Active Shallow Crust,0.0,89.98605,-90.0,09/16/4302 +8.21096,46.84518,580,3,12,7,46,17,3.55,15.0,fr,25221,11,1036807,1,1,Active Shallow Crust,0.0,89.98605,-90.0,03/12/0580 +8.21096,46.84518,8085,1,9,0,54,45,3.55,5.0,fr,25222,161,1036809,1,2,Active Shallow Crust,128.8977,89.9931,0.0,01/09/8085 +8.21096,46.84518,5889,1,8,12,21,58,3.55,5.0,fr,25223,117,1036809,1,2,Active Shallow Crust,128.8977,89.9931,0.0,01/08/5889 +8.21096,46.84518,9910,11,5,9,35,48,3.55,15.0,fr,25224,198,1036810,1,2,Active Shallow Crust,128.8977,89.9931,0.0,11/05/9910 +8.21096,46.84518,8277,10,26,3,21,38,3.55,15.0,fr,25225,165,1036810,1,2,Active Shallow Crust,128.8977,89.9931,0.0,10/26/8277 +8.21096,46.84518,8517,6,3,8,18,53,3.65,5.0,fr,25226,170,1036812,1,5,Active Shallow Crust,0.0,89.98771,0.0,06/03/8517 +8.21096,46.84518,7704,7,4,6,8,14,3.65,5.0,fr,25227,154,1036812,1,5,Active Shallow Crust,0.0,89.98771,0.0,07/04/7704 +8.21096,46.84518,5894,9,11,18,10,10,3.65,5.0,fr,25228,117,1036812,1,5,Active Shallow Crust,0.0,89.98771,0.0,09/11/5894 +8.21096,46.84518,334,6,10,9,7,25,3.65,5.0,fr,25229,6,1036812,1,5,Active Shallow Crust,0.0,89.98771,0.0,06/10/0334 +8.21096,46.84518,2719,5,8,2,0,57,3.65,5.0,fr,25230,54,1036812,1,5,Active Shallow Crust,0.0,89.98771,0.0,05/08/2719 +8.21096,46.84518,6056,2,9,17,21,15,3.65,15.0,fr,25231,121,1036813,1,3,Active Shallow Crust,0.0,89.98771,0.0,02/09/6056 +8.21096,46.84518,7723,2,13,22,46,1,3.65,15.0,fr,25232,154,1036813,1,3,Active Shallow Crust,0.0,89.98771,0.0,02/13/7723 +8.21096,46.84518,6347,8,24,7,1,25,3.65,15.0,fr,25233,126,1036813,1,3,Active Shallow Crust,0.0,89.98771,0.0,08/24/6347 +8.21096,46.84518,3031,1,26,0,14,20,3.65,27.5,fr,25234,60,1036814,1,1,Active Shallow Crust,0.0,89.98771,0.0,01/26/3031 +8.21096,46.84518,5832,8,19,22,28,13,3.65,5.0,fr,25235,116,1036815,1,3,Active Shallow Crust,240.0001,58.01454,0.0,08/19/5832 +8.21096,46.84518,3730,11,23,17,14,7,3.65,5.0,fr,25236,74,1036815,1,3,Active Shallow Crust,240.0001,58.01454,0.0,11/23/3730 +8.21096,46.84518,5659,10,11,6,42,40,3.65,5.0,fr,25237,113,1036815,1,3,Active Shallow Crust,240.0001,58.01454,0.0,10/11/5659 +8.21096,46.84518,3532,11,24,21,17,27,3.65,15.0,fr,25238,70,1036816,1,1,Active Shallow Crust,240.0001,58.01454,0.0,11/24/3532 +8.21096,46.84518,4278,7,3,14,9,28,3.65,5.0,fr,25239,85,1036818,1,1,Active Shallow Crust,0.0,89.98756,-90.0,07/03/4278 +8.21096,46.84518,8960,7,1,8,54,34,3.65,15.0,fr,25240,179,1036822,1,2,Active Shallow Crust,128.8974,89.96353,0.0,07/01/8960 +8.21096,46.84518,5697,5,23,22,18,18,3.65,15.0,fr,25241,113,1036822,1,2,Active Shallow Crust,128.8974,89.96353,0.0,05/23/5697 +8.21096,46.84518,9342,3,14,8,48,19,3.75,5.0,fr,25242,186,1036824,1,6,Active Shallow Crust,0.0,89.98904,0.0,03/14/9342 +8.21096,46.84518,3396,7,19,4,58,19,3.75,5.0,fr,25243,67,1036824,1,6,Active Shallow Crust,0.0,89.98904,0.0,07/19/3396 +8.21096,46.84518,2793,7,1,12,9,9,3.75,5.0,fr,25244,55,1036824,1,6,Active Shallow Crust,0.0,89.98904,0.0,07/01/2793 +8.21096,46.84518,4994,7,23,21,56,20,3.75,5.0,fr,25245,99,1036824,1,6,Active Shallow Crust,0.0,89.98904,0.0,07/23/4994 +8.21096,46.84518,6502,12,27,12,26,6,3.75,5.0,fr,25246,130,1036824,1,6,Active Shallow Crust,0.0,89.98904,0.0,12/27/6502 +8.21096,46.84518,151,11,12,21,21,30,3.75,5.0,fr,25247,3,1036824,1,6,Active Shallow Crust,0.0,89.98904,0.0,11/12/0151 +8.21096,46.84518,8349,2,14,2,48,44,3.75,15.0,fr,25248,166,1036825,1,2,Active Shallow Crust,0.0,89.98904,0.0,02/14/8349 +8.21096,46.84518,2965,3,15,18,29,25,3.75,15.0,fr,25249,59,1036825,1,2,Active Shallow Crust,0.0,89.98904,0.0,03/15/2965 +8.21096,46.84518,4606,3,7,11,24,36,3.75,27.5,fr,25250,92,1036826,1,1,Active Shallow Crust,0.0,89.98904,0.0,03/07/4606 +8.21096,46.84518,610,4,4,16,14,22,3.75,5.0,fr,25251,12,1036827,1,2,Active Shallow Crust,240.0076,58.01746,0.0,04/04/0610 +8.21096,46.84518,2440,12,14,3,2,1,3.75,5.0,fr,25252,48,1036827,1,2,Active Shallow Crust,240.0076,58.01746,0.0,12/14/2440 +8.21096,46.84518,4461,9,18,18,8,13,3.75,5.0,fr,25253,89,1036830,1,2,Active Shallow Crust,0.0,89.98891,-90.0,09/18/4461 +8.21096,46.84518,4870,10,16,6,33,55,3.75,5.0,fr,25254,97,1036830,1,2,Active Shallow Crust,0.0,89.98891,-90.0,10/16/4870 +8.21096,46.84518,3012,1,26,5,32,52,3.75,5.0,fr,25255,60,1036833,1,2,Active Shallow Crust,128.8979,89.9675,0.0,01/26/3012 +8.21096,46.84518,3171,12,14,13,22,46,3.75,5.0,fr,25256,63,1036833,1,2,Active Shallow Crust,128.8979,89.9675,0.0,12/14/3171 +8.21096,46.84518,9310,7,21,12,9,45,3.85,5.0,fr,25257,186,1036836,1,7,Active Shallow Crust,0.0,89.99023,0.0,07/21/9310 +8.21096,46.84518,5921,7,11,18,33,35,3.85,5.0,fr,25258,118,1036836,1,7,Active Shallow Crust,0.0,89.99023,0.0,07/11/5921 +8.21096,46.84518,2609,11,27,5,45,14,3.85,5.0,fr,25259,52,1036836,1,7,Active Shallow Crust,0.0,89.99023,0.0,11/27/2609 +8.21096,46.84518,6096,4,25,9,50,33,3.85,5.0,fr,25260,121,1036836,1,7,Active Shallow Crust,0.0,89.99023,0.0,04/25/6096 +8.21096,46.84518,9167,11,6,2,38,53,3.85,5.0,fr,25261,183,1036836,1,7,Active Shallow Crust,0.0,89.99023,0.0,11/06/9167 +8.21096,46.84518,5104,1,15,8,0,10,3.85,5.0,fr,25262,102,1036836,1,7,Active Shallow Crust,0.0,89.99023,0.0,01/15/5104 +8.21096,46.84518,9099,3,10,2,7,0,3.85,5.0,fr,25263,181,1036836,1,7,Active Shallow Crust,0.0,89.99023,0.0,03/10/9099 +8.21096,46.84518,40,5,30,16,38,28,3.85,27.5,fr,25264,0,1036838,1,1,Active Shallow Crust,0.0,89.99023,0.0,05/30/0040 +8.21096,46.84518,1938,12,12,18,13,42,3.85,5.0,fr,25265,38,1036839,1,2,Active Shallow Crust,240.0098,57.99788,0.0,12/12/1938 +8.21096,46.84518,1850,2,9,13,2,18,3.85,5.0,fr,25266,36,1036839,1,2,Active Shallow Crust,240.0098,57.99788,0.0,02/09/1850 +8.21096,46.84518,9836,7,28,4,11,31,3.85,5.0,fr,25267,196,1036842,1,1,Active Shallow Crust,0.0,89.99012,-90.0,07/28/9836 +8.21096,46.84518,8923,10,17,7,13,56,3.85,15.0,fr,25268,178,1036843,1,1,Active Shallow Crust,0.0,89.99012,-90.0,10/17/8923 +8.21096,46.84518,364,10,18,14,52,1,3.85,5.0,fr,25269,7,1036845,1,1,Active Shallow Crust,128.8942,89.99512,0.0,10/18/0364 +8.21096,46.84518,3928,7,11,16,42,41,3.95,5.0,fr,25270,78,1036848,1,3,Active Shallow Crust,0.0,89.99129,0.0,07/11/3928 +8.21096,46.84518,7199,12,6,3,59,56,3.95,5.0,fr,25271,143,1036848,1,3,Active Shallow Crust,0.0,89.99129,0.0,12/06/7199 +8.21096,46.84518,3670,10,19,9,17,34,3.95,5.0,fr,25272,73,1036848,1,3,Active Shallow Crust,0.0,89.99129,0.0,10/19/3670 +8.21096,46.84518,3799,5,2,15,33,45,3.95,27.5,fr,25273,75,1036853,1,1,Active Shallow Crust,240.0211,58.00381,0.0,05/02/3799 +8.21096,46.84518,6677,12,22,7,8,38,3.95,27.5,fr,25274,133,1036859,1,1,Active Shallow Crust,128.9,89.99565,0.0,12/22/6677 +8.21096,46.84518,3512,10,23,10,57,15,4.05,5.0,fr,25275,70,1036860,1,1,Active Shallow Crust,0.0,89.99224,0.0,10/23/3512 +8.21096,46.84518,7590,6,20,21,1,50,4.05,15.0,fr,25276,151,1036867,1,1,Active Shallow Crust,0.0,89.99215,-90.0,06/20/7590 +8.21096,46.84518,9813,1,13,19,14,44,4.15,5.0,fr,25277,196,1036872,1,1,Active Shallow Crust,0.0,89.99309,0.0,01/13/9813 +8.21096,46.84518,2789,4,29,18,8,38,4.15,5.0,fr,25278,55,1036875,1,1,Active Shallow Crust,240.0091,57.99659,0.0,04/29/2789 +8.21096,46.84518,6685,4,26,0,59,36,4.25,5.0,fr,25279,133,1036884,1,3,Active Shallow Crust,0.0,89.98768,0.0,04/26/6685 +8.21096,46.84518,4237,11,9,9,10,38,4.25,5.0,fr,25280,84,1036884,1,3,Active Shallow Crust,0.0,89.98768,0.0,11/09/4237 +8.21096,46.84518,9241,8,27,11,20,23,4.25,5.0,fr,25281,184,1036884,1,3,Active Shallow Crust,0.0,89.98768,0.0,08/27/9241 +8.21096,46.84518,6476,2,12,23,0,54,4.25,15.0,fr,25282,129,1036885,1,1,Active Shallow Crust,0.0,89.98768,0.0,02/12/6476 +8.21096,46.84518,7454,1,16,1,19,8,4.25,5.0,fr,25283,149,1036887,1,1,Active Shallow Crust,240.0074,57.99446,0.0,01/16/7454 +8.21096,46.84518,9955,7,29,6,25,40,4.35,15.0,fr,25284,199,1036897,1,1,Active Shallow Crust,0.0,89.98901,0.0,07/29/9955 +8.21096,46.84518,3289,6,19,18,51,55,4.35,5.0,fr,25285,65,1036899,1,1,Active Shallow Crust,240.0094,57.99529,0.0,06/19/3289 +8.21096,46.84518,3055,5,2,20,8,44,4.45,5.0,fr,25286,61,1036911,1,1,Active Shallow Crust,240.0062,57.99458,0.0,05/02/3055 +8.21096,46.84518,5666,12,16,5,15,55,4.45,15.0,fr,25287,113,1036915,1,1,Active Shallow Crust,0.0,89.9901,-90.0,12/16/5666 +8.21096,46.84518,3271,8,27,11,50,49,4.45,27.5,fr,25288,65,1036916,1,1,Active Shallow Crust,0.0,89.9901,-90.0,08/27/3271 +8.21096,46.84518,6396,11,30,2,25,48,4.55,5.0,fr,25289,127,1036920,1,1,Active Shallow Crust,0.0,89.99127,0.0,11/30/6396 +8.21096,46.84518,5565,2,5,15,7,9,4.55,15.0,fr,25290,111,1036921,1,2,Active Shallow Crust,0.0,89.99127,0.0,02/05/5565 +8.21096,46.84518,3929,2,28,15,26,13,4.55,15.0,fr,25291,78,1036921,1,2,Active Shallow Crust,0.0,89.99127,0.0,02/28/3929 +8.21096,46.84518,5260,9,25,21,9,35,4.55,15.0,fr,25292,105,1036924,1,1,Active Shallow Crust,240.0091,57.99799,0.0,09/25/5260 +8.21096,46.84518,3364,1,17,10,46,27,4.65,5.0,fr,25293,67,1036932,1,1,Active Shallow Crust,0.0,89.98833,0.0,01/17/3364 +8.21096,46.84518,1978,6,6,6,14,12,4.65,15.0,fr,25294,39,1036939,1,1,Active Shallow Crust,0.0,89.9882,-90.0,06/06/1978 +8.21096,46.84518,8925,3,24,13,49,1,4.75,5.0,fr,25295,178,1036944,1,1,Active Shallow Crust,0.0,89.9896,0.0,03/24/8925 +8.21096,46.84518,3756,5,7,9,18,23,4.75,15.0,fr,25296,75,1036948,1,1,Active Shallow Crust,240.0081,58.00474,0.0,05/07/3756 +8.21096,46.84518,7148,8,6,12,23,1,4.85,5.0,fr,25297,142,1036956,1,1,Active Shallow Crust,0.0,89.99073,0.0,08/06/7148 +8.21096,46.84518,5972,7,3,15,12,7,4.95,5.0,fr,25298,119,1036968,1,2,Active Shallow Crust,0.0,89.98899,0.0,07/03/5972 +8.21096,46.84518,5222,12,25,6,45,2,4.95,5.0,fr,25299,104,1036968,1,2,Active Shallow Crust,0.0,89.98899,0.0,12/25/5222 +8.21096,46.84518,1358,4,21,17,43,45,4.95,15.0,fr,25300,27,1036975,1,1,Active Shallow Crust,0.0,89.98886,-90.0,04/21/1358 +8.21096,46.84518,1309,8,15,14,6,49,5.05,5.0,fr,25301,26,1036980,1,1,Active Shallow Crust,0.0,89.99019,0.0,08/15/1309 +8.21096,46.84518,7871,11,28,17,6,2,5.15,5.0,fr,25302,157,1036995,1,1,Active Shallow Crust,240.0196,58.00005,0.0,11/28/7871 +8.21096,46.84518,5333,11,16,14,35,41,5.45,15.0,fr,25303,106,1037029,1,2,Active Shallow Crust,0.0,89.99071,0.0,11/16/5333 +8.21096,46.84518,1123,10,17,10,47,42,5.45,15.0,fr,25304,22,1037029,1,2,Active Shallow Crust,0.0,89.99071,0.0,10/17/1123 +8.21096,46.84518,5872,11,9,10,27,37,5.75,15.0,fr,25305,117,1037065,1,1,Active Shallow Crust,0.0,89.99014,0.0,11/09/5872 +8.21096,46.84518,4004,2,26,18,35,33,5.75,5.0,fr,25306,80,1037067,1,1,Active Shallow Crust,240.0391,58.00183,0.0,02/26/4004 +5.38548,42.27836,4489,7,9,6,14,57,3.65,15.0,fr,25307,89,1037293,1,1,Active Shallow Crust,0.0,89.9867,0.0,07/09/4489 +-0.10401,45.0686,43,5,17,16,34,55,3.95,5.0,fr,25308,0,1037808,1,1,Active Shallow Crust,0.0,89.99003,0.0,05/17/0043 +-0.10401,45.0686,8556,11,29,7,11,13,4.65,15.0,fr,25309,171,1037902,1,1,Active Shallow Crust,128.8915,89.98701,0.0,11/29/8556 +3.33426,45.04295,2536,6,7,19,27,50,3.55,15.0,fr,25310,50,1038244,1,1,Active Shallow Crust,240.0117,57.99863,0.0,06/07/2536 +3.33426,45.04295,1417,3,25,5,30,56,3.65,5.0,fr,25311,28,1038252,1,2,Active Shallow Crust,0.0,89.99047,0.0,03/25/1417 +3.33426,45.04295,3900,11,2,13,57,21,3.65,5.0,fr,25312,77,1038252,1,2,Active Shallow Crust,0.0,89.99047,0.0,11/02/3900 +3.33426,45.04295,5813,10,26,4,30,8,3.65,15.0,fr,25313,116,1038253,1,1,Active Shallow Crust,0.0,89.99047,0.0,10/26/5813 +3.33426,45.04295,7094,7,6,0,11,16,3.65,5.0,fr,25314,141,1038255,1,1,Active Shallow Crust,240.0006,58.01322,0.0,07/06/7094 +3.33426,45.04295,1544,7,10,20,16,18,3.65,5.0,fr,25315,30,1038258,1,1,Active Shallow Crust,0.0,89.99036,-90.0,07/10/1544 +3.33426,45.04295,263,2,17,20,3,58,3.75,5.0,fr,25316,5,1038264,1,1,Active Shallow Crust,0.0,89.98868,0.0,02/17/0263 +3.33426,45.04295,5146,1,14,22,57,38,4.15,5.0,fr,25317,102,1038312,1,1,Active Shallow Crust,0.0,89.98929,0.0,01/14/5146 +3.33426,45.04295,3259,10,3,8,10,34,4.15,27.5,fr,25318,65,1038314,1,1,Active Shallow Crust,0.0,89.98929,0.0,10/03/3259 +3.33426,45.04295,1185,2,27,0,32,29,4.25,27.5,fr,25319,23,1038326,1,1,Active Shallow Crust,0.0,89.99045,0.0,02/27/1185 +3.33426,45.04295,9840,12,16,4,57,40,4.55,15.0,fr,25320,196,1038370,1,1,Active Shallow Crust,128.8944,89.98557,0.0,12/16/9840 +3.33426,45.04295,185,8,16,19,39,27,4.65,15.0,fr,25321,3,1038373,1,1,Active Shallow Crust,0.0,89.98996,0.0,08/16/0185 +3.33426,45.04295,9513,11,5,22,22,37,5.25,15.0,fr,25322,190,1038445,1,1,Active Shallow Crust,0.0,89.98993,0.0,11/05/9513 +-3.25511,44.20192,383,10,16,4,13,22,3.95,27.5,fr,25323,7,1038770,1,1,Active Shallow Crust,0.0,89.99088,0.0,10/16/0383 +6.52442,48.31896,662,3,23,1,10,51,3.55,5.0,fr,25324,13,1039200,1,2,Active Shallow Crust,0.0,89.99329,0.0,03/23/0662 +6.52442,48.31896,323,11,27,15,21,12,3.55,5.0,fr,25325,6,1039200,1,2,Active Shallow Crust,0.0,89.99329,0.0,11/27/0323 +6.52442,48.31896,7559,4,5,13,40,48,3.65,5.0,fr,25326,151,1039212,1,2,Active Shallow Crust,0.0,89.98804,0.0,04/05/7559 +6.52442,48.31896,8243,8,24,3,41,22,3.65,5.0,fr,25327,164,1039212,1,2,Active Shallow Crust,0.0,89.98804,0.0,08/24/8243 +6.52442,48.31896,809,3,5,14,8,50,3.95,5.0,fr,25328,16,1039248,1,1,Active Shallow Crust,0.0,89.99154,0.0,03/05/0809 +6.52442,48.31896,8554,6,6,19,35,16,4.05,5.0,fr,25329,171,1039260,1,2,Active Shallow Crust,0.0,89.98869,0.0,06/06/8554 +6.52442,48.31896,2882,2,18,18,21,42,4.05,5.0,fr,25330,57,1039260,1,2,Active Shallow Crust,0.0,89.98869,0.0,02/18/2882 +6.52442,48.31896,9467,3,12,10,48,56,4.15,15.0,fr,25331,189,1039273,1,1,Active Shallow Crust,0.0,89.98991,0.0,03/12/9467 +6.52442,48.31896,1113,1,21,4,30,9,4.55,15.0,fr,25332,22,1039321,1,1,Active Shallow Crust,0.0,89.9894,0.0,01/21/1113 +-1.00225,47.16027,878,9,7,7,30,54,3.55,15.0,fr,25333,17,1039681,1,1,Active Shallow Crust,0.0,89.98972,0.0,09/07/0878 +-1.00225,47.16027,3764,4,17,15,39,1,3.55,27.5,fr,25334,75,1039682,1,1,Active Shallow Crust,0.0,89.98972,0.0,04/17/3764 +-1.00225,47.16027,8791,6,10,1,5,55,3.55,15.0,fr,25335,175,1039690,1,1,Active Shallow Crust,128.896,89.994,0.0,06/10/8791 +-1.00225,47.16027,3778,7,9,14,43,3,3.65,5.0,fr,25336,75,1039692,1,3,Active Shallow Crust,0.0,89.9893,0.0,07/09/3778 +-1.00225,47.16027,5034,2,9,13,19,42,3.65,5.0,fr,25337,100,1039692,1,3,Active Shallow Crust,0.0,89.9893,0.0,02/09/5034 +-1.00225,47.16027,785,8,24,1,8,41,3.65,5.0,fr,25338,15,1039692,1,3,Active Shallow Crust,0.0,89.9893,0.0,08/24/0785 +-1.00225,47.16027,3313,12,11,4,39,42,3.65,5.0,fr,25339,66,1039695,1,1,Active Shallow Crust,240.0011,58.01287,0.0,12/11/3313 +-1.00225,47.16027,2208,9,25,1,19,7,3.75,5.0,fr,25340,44,1039704,1,2,Active Shallow Crust,0.0,89.99047,0.0,09/25/2208 +-1.00225,47.16027,7695,10,14,1,19,30,3.75,5.0,fr,25341,153,1039704,1,2,Active Shallow Crust,0.0,89.99047,0.0,10/14/7695 +-1.00225,47.16027,9408,11,5,2,35,6,3.85,5.0,fr,25342,188,1039716,1,2,Active Shallow Crust,0.0,89.9903,0.0,11/05/9408 +-1.00225,47.16027,7190,2,7,8,0,24,3.85,5.0,fr,25343,143,1039716,1,2,Active Shallow Crust,0.0,89.9903,0.0,02/07/7190 +-1.00225,47.16027,6467,5,17,21,42,50,3.85,5.0,fr,25344,129,1039719,1,1,Active Shallow Crust,240.0111,57.99779,0.0,05/17/6467 +-1.00225,47.16027,2997,2,23,16,34,47,3.95,15.0,fr,25345,59,1039729,1,1,Active Shallow Crust,0.0,89.99026,0.0,02/23/2997 +-1.00225,47.16027,7785,11,9,15,40,43,4.05,15.0,fr,25346,155,1039741,1,1,Active Shallow Crust,0.0,89.99036,0.0,11/09/7785 +-1.00225,47.16027,1805,5,19,18,10,40,4.15,5.0,fr,25347,36,1039752,1,1,Active Shallow Crust,0.0,89.98969,0.0,05/19/1805 +-1.00225,47.16027,1743,7,25,4,59,7,4.35,15.0,fr,25348,34,1039777,1,1,Active Shallow Crust,0.0,89.98976,0.0,07/25/1743 +-1.00225,47.16027,2367,6,21,3,2,59,4.45,15.0,fr,25349,47,1039789,1,1,Active Shallow Crust,0.0,89.99026,0.0,06/21/2367 +-1.00225,47.16027,6839,4,13,4,47,55,4.45,15.0,fr,25350,136,1039792,1,1,Active Shallow Crust,240.0055,57.99474,0.0,04/13/6839 +-1.00225,47.16027,127,2,9,0,5,45,4.55,15.0,fr,25351,2,1039807,1,1,Active Shallow Crust,0.0,89.99013,-90.0,02/09/0127 +-1.00225,47.16027,2723,7,13,16,20,15,4.65,27.5,fr,25352,54,1039820,1,1,Active Shallow Crust,0.0,89.99023,-90.0,07/13/2723 +-1.00225,47.16027,2465,12,14,17,8,32,5.05,15.0,fr,25353,49,1039861,1,1,Active Shallow Crust,0.0,89.98994,0.0,12/14/2465 +-1.00225,47.16027,3432,10,8,18,49,29,5.75,5.0,fr,25354,68,1039944,1,1,Active Shallow Crust,0.0,89.99005,0.0,10/08/3432 +8.11689,46.70547,4999,9,14,7,19,39,3.55,5.0,fr,25355,99,1040160,1,2,Active Shallow Crust,0.0,89.98617,0.0,09/14/4999 +8.11689,46.70547,1111,1,13,15,18,20,3.55,5.0,fr,25356,22,1040160,1,2,Active Shallow Crust,0.0,89.98617,0.0,01/13/1111 +8.11689,46.70547,2110,3,27,12,25,24,3.55,15.0,fr,25357,42,1040161,1,1,Active Shallow Crust,0.0,89.98617,0.0,03/27/2110 +8.11689,46.70547,7616,7,23,18,13,27,3.55,27.5,fr,25358,152,1040168,1,1,Active Shallow Crust,0.0,89.98601,-90.0,07/23/7616 +8.11689,46.70547,737,9,10,2,23,5,3.55,5.0,fr,25359,14,1040169,1,1,Active Shallow Crust,128.8944,89.99309,0.0,09/10/0737 +8.11689,46.70547,3850,5,22,14,2,33,3.65,5.0,fr,25360,76,1040172,1,2,Active Shallow Crust,0.0,89.98767,0.0,05/22/3850 +8.11689,46.70547,5803,7,2,11,44,47,3.65,5.0,fr,25361,116,1040172,1,2,Active Shallow Crust,0.0,89.98767,0.0,07/02/5803 +8.11689,46.70547,9291,10,12,14,27,48,3.65,15.0,fr,25362,185,1040173,1,2,Active Shallow Crust,0.0,89.98767,0.0,10/12/9291 +8.11689,46.70547,6277,7,16,8,38,37,3.65,15.0,fr,25363,125,1040173,1,2,Active Shallow Crust,0.0,89.98767,0.0,07/16/6277 +8.11689,46.70547,8855,4,7,8,43,11,3.65,5.0,fr,25364,177,1040175,1,1,Active Shallow Crust,239.9998,58.0135,0.0,04/07/8855 +8.11689,46.70547,7932,5,2,13,0,7,3.65,5.0,fr,25365,158,1040178,1,2,Active Shallow Crust,0.0,89.98753,-90.0,05/02/7932 +8.11689,46.70547,7473,2,16,1,8,36,3.65,5.0,fr,25366,149,1040178,1,2,Active Shallow Crust,0.0,89.98753,-90.0,02/16/7473 +8.11689,46.70547,355,8,22,23,0,28,3.75,5.0,fr,25367,7,1040184,1,6,Active Shallow Crust,0.0,89.98901,0.0,08/22/0355 +8.11689,46.70547,2441,12,6,15,30,34,3.75,5.0,fr,25368,48,1040184,1,6,Active Shallow Crust,0.0,89.98901,0.0,12/06/2441 +8.11689,46.70547,6242,1,16,10,10,42,3.75,5.0,fr,25369,124,1040184,1,6,Active Shallow Crust,0.0,89.98901,0.0,01/16/6242 +8.11689,46.70547,1986,2,25,22,35,9,3.75,5.0,fr,25370,39,1040184,1,6,Active Shallow Crust,0.0,89.98901,0.0,02/25/1986 +8.11689,46.70547,2133,12,13,23,29,7,3.75,5.0,fr,25371,42,1040184,1,6,Active Shallow Crust,0.0,89.98901,0.0,12/13/2133 +8.11689,46.70547,4918,3,10,16,50,31,3.75,5.0,fr,25372,98,1040184,1,6,Active Shallow Crust,0.0,89.98901,0.0,03/10/4918 +8.11689,46.70547,492,7,27,11,23,13,3.75,27.5,fr,25373,9,1040186,1,1,Active Shallow Crust,0.0,89.98901,0.0,07/27/0492 +8.11689,46.70547,115,6,20,1,37,4,3.75,15.0,fr,25374,2,1040188,1,1,Active Shallow Crust,240.0088,58.01704,0.0,06/20/0115 +8.11689,46.70547,3151,7,9,7,26,29,3.85,5.0,fr,25375,63,1040196,1,1,Active Shallow Crust,0.0,89.99021,0.0,07/09/3151 +8.11689,46.70547,4496,11,2,15,22,28,3.85,15.0,fr,25376,89,1040197,1,1,Active Shallow Crust,0.0,89.99021,0.0,11/02/4496 +8.11689,46.70547,807,5,21,2,33,44,3.85,5.0,fr,25377,16,1040199,1,2,Active Shallow Crust,240.0106,57.99776,0.0,05/21/0807 +8.11689,46.70547,1484,4,16,22,53,54,3.85,5.0,fr,25378,29,1040199,1,2,Active Shallow Crust,240.0106,57.99776,0.0,04/16/1484 +8.11689,46.70547,8544,7,3,6,34,52,3.85,5.0,fr,25379,170,1040205,1,2,Active Shallow Crust,128.8953,89.9951,0.0,07/03/8544 +8.11689,46.70547,6049,3,22,23,6,28,3.85,5.0,fr,25380,120,1040205,1,2,Active Shallow Crust,128.8953,89.9951,0.0,03/22/6049 +8.11689,46.70547,2541,10,2,23,44,57,3.95,5.0,fr,25381,50,1040208,1,6,Active Shallow Crust,0.0,89.99127,0.0,10/02/2541 +8.11689,46.70547,7074,7,29,7,59,13,3.95,5.0,fr,25382,141,1040208,1,6,Active Shallow Crust,0.0,89.99127,0.0,07/29/7074 +8.11689,46.70547,533,2,10,20,7,23,3.95,5.0,fr,25383,10,1040208,1,6,Active Shallow Crust,0.0,89.99127,0.0,02/10/0533 +8.11689,46.70547,3392,12,25,16,55,43,3.95,5.0,fr,25384,67,1040208,1,6,Active Shallow Crust,0.0,89.99127,0.0,12/25/3392 +8.11689,46.70547,6697,12,20,10,26,13,3.95,5.0,fr,25385,133,1040208,1,6,Active Shallow Crust,0.0,89.99127,0.0,12/20/6697 +8.11689,46.70547,5287,8,23,11,26,32,3.95,5.0,fr,25386,105,1040208,1,6,Active Shallow Crust,0.0,89.99127,0.0,08/23/5287 +8.11689,46.70547,4035,12,5,21,48,7,3.95,15.0,fr,25387,80,1040209,1,1,Active Shallow Crust,0.0,89.99127,0.0,12/05/4035 +8.11689,46.70547,8769,6,8,6,8,46,3.95,15.0,fr,25388,175,1040218,1,1,Active Shallow Crust,128.8985,89.99564,0.0,06/08/8769 +8.11689,46.70547,9237,12,12,19,52,56,4.05,5.0,fr,25389,184,1040220,1,2,Active Shallow Crust,0.0,89.99223,0.0,12/12/9237 +8.11689,46.70547,8274,3,4,9,58,40,4.05,5.0,fr,25390,165,1040220,1,2,Active Shallow Crust,0.0,89.99223,0.0,03/04/8274 +8.11689,46.70547,5903,3,14,9,5,39,4.05,15.0,fr,25391,118,1040221,1,2,Active Shallow Crust,0.0,89.99223,0.0,03/14/5903 +8.11689,46.70547,3348,5,23,3,1,26,4.05,15.0,fr,25392,66,1040221,1,2,Active Shallow Crust,0.0,89.99223,0.0,05/23/3348 +8.11689,46.70547,1399,3,27,16,8,27,4.15,5.0,fr,25393,27,1040232,1,1,Active Shallow Crust,0.0,89.99306,0.0,03/27/1399 +8.11689,46.70547,1293,6,15,8,48,0,4.15,15.0,fr,25394,25,1040233,1,1,Active Shallow Crust,0.0,89.99306,0.0,06/15/1293 +8.11689,46.70547,895,2,21,21,43,59,4.15,27.5,fr,25395,17,1040234,1,1,Active Shallow Crust,0.0,89.99306,0.0,02/21/0895 +8.11689,46.70547,9537,8,3,14,5,13,4.15,15.0,fr,25396,190,1040236,1,1,Active Shallow Crust,240.0076,57.99752,0.0,08/03/9537 +8.11689,46.70547,9280,11,24,22,10,55,4.55,5.0,fr,25397,185,1040280,1,1,Active Shallow Crust,0.0,89.99125,0.0,11/24/9280 +8.11689,46.70547,142,12,22,1,0,59,4.75,5.0,fr,25398,2,1040304,1,1,Active Shallow Crust,0.0,89.98958,0.0,12/22/0142 +8.11689,46.70547,8012,11,15,10,34,8,4.75,5.0,fr,25399,160,1040307,1,1,Active Shallow Crust,240.0073,58.00496,0.0,11/15/8012 +8.11689,46.70547,7655,9,4,2,9,38,4.95,5.0,fr,25400,153,1040331,1,1,Active Shallow Crust,240.0118,58.00489,0.0,09/04/7655 +8.11689,46.70547,3700,7,15,19,52,4,5.05,15.0,fr,25401,73,1040341,1,1,Active Shallow Crust,0.0,89.99016,0.0,07/15/3700 +8.11689,46.70547,5769,3,25,18,19,7,5.05,5.0,fr,25402,115,1040346,1,1,Active Shallow Crust,0.0,89.99004,-90.0,03/25/5769 +8.11689,46.70547,6885,11,9,9,41,53,5.85,5.0,fr,25403,137,1040436,1,1,Active Shallow Crust,0.0,89.9902,0.0,11/09/6885 +4.61367,41.23006,1418,10,18,8,18,18,3.65,5.0,fr,25404,28,1040652,1,1,Active Shallow Crust,0.0,89.99324,0.0,10/18/1418 +4.61367,41.23006,2336,4,26,7,10,6,3.85,5.0,fr,25405,46,1040676,1,1,Active Shallow Crust,0.0,89.98927,0.0,04/26/2336 +4.61367,41.23006,2527,12,13,15,26,36,3.85,15.0,fr,25406,50,1040677,1,1,Active Shallow Crust,0.0,89.98927,0.0,12/13/2527 +4.61367,41.23006,267,10,31,12,48,47,4.35,5.0,fr,25407,5,1040736,1,1,Active Shallow Crust,0.0,89.99094,0.0,10/31/0267 +0.45403,46.86458,192,2,9,1,28,25,3.55,15.0,fr,25408,3,1041121,1,2,Active Shallow Crust,0.0,89.99009,0.0,02/09/0192 +0.45403,46.86458,7102,9,4,14,19,46,3.55,15.0,fr,25409,142,1041121,1,2,Active Shallow Crust,0.0,89.99009,0.0,09/04/7102 +0.45403,46.86458,8580,5,25,10,7,56,3.55,5.0,fr,25410,171,1041126,1,1,Active Shallow Crust,0.0,89.98997,-90.0,05/25/8580 +0.45403,46.86458,7329,12,13,23,46,58,3.65,5.0,fr,25411,146,1041132,1,3,Active Shallow Crust,0.0,89.99001,0.0,12/13/7329 +0.45403,46.86458,1318,2,10,3,12,6,3.65,5.0,fr,25412,26,1041132,1,3,Active Shallow Crust,0.0,89.99001,0.0,02/10/1318 +0.45403,46.86458,5243,10,8,2,7,10,3.65,5.0,fr,25413,104,1041132,1,3,Active Shallow Crust,0.0,89.99001,0.0,10/08/5243 +0.45403,46.86458,5196,6,14,3,54,35,3.65,15.0,fr,25414,103,1041133,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/14/5196 +0.45403,46.86458,3246,7,16,1,18,54,3.75,5.0,fr,25415,64,1041144,1,2,Active Shallow Crust,0.0,89.99007,0.0,07/16/3246 +0.45403,46.86458,1107,2,26,7,32,29,3.75,5.0,fr,25416,22,1041144,1,2,Active Shallow Crust,0.0,89.99007,0.0,02/26/1107 +0.45403,46.86458,4413,1,30,5,52,42,3.75,5.0,fr,25417,88,1041147,1,2,Active Shallow Crust,240.0085,58.01754,0.0,01/30/4413 +0.45403,46.86458,6711,7,19,9,55,23,3.75,5.0,fr,25418,134,1041147,1,2,Active Shallow Crust,240.0085,58.01754,0.0,07/19/6711 +0.45403,46.86458,1998,1,30,16,40,9,3.75,5.0,fr,25419,39,1041150,1,1,Active Shallow Crust,0.0,89.98996,-90.0,01/30/1998 +0.45403,46.86458,3989,3,26,6,38,22,3.85,15.0,fr,25420,79,1041157,1,2,Active Shallow Crust,0.0,89.98993,0.0,03/26/3989 +0.45403,46.86458,2428,4,7,19,23,40,3.85,15.0,fr,25421,48,1041157,1,2,Active Shallow Crust,0.0,89.98993,0.0,04/07/2428 +0.45403,46.86458,1411,2,12,12,32,40,3.95,5.0,fr,25422,28,1041168,1,1,Active Shallow Crust,0.0,89.98994,0.0,02/12/1411 +0.45403,46.86458,4819,7,31,10,49,55,4.05,5.0,fr,25423,96,1041180,1,1,Active Shallow Crust,0.0,89.99007,0.0,07/31/4819 +0.45403,46.86458,3947,5,13,19,48,35,4.35,5.0,fr,25424,78,1041216,1,1,Active Shallow Crust,0.0,89.99005,0.0,05/13/3947 +0.45403,46.86458,4962,1,15,4,35,23,4.35,27.5,fr,25425,99,1041218,1,1,Active Shallow Crust,0.0,89.99005,0.0,01/15/4962 +0.45403,46.86458,1076,12,15,23,2,24,4.35,5.0,fr,25426,21,1041219,1,1,Active Shallow Crust,240.0085,57.99597,0.0,12/15/1076 +0.45403,46.86458,4287,12,18,9,2,48,4.45,5.0,fr,25427,85,1041237,1,1,Active Shallow Crust,128.8921,89.99373,0.0,12/18/4287 +0.45403,46.86458,7262,8,2,1,52,46,4.55,5.0,fr,25428,145,1041240,1,1,Active Shallow Crust,0.0,89.99005,0.0,08/02/7262 +0.45403,46.86458,6789,10,14,22,0,0,4.75,5.0,fr,25429,135,1041264,1,1,Active Shallow Crust,0.0,89.99004,0.0,10/14/6789 +0.45403,46.86458,9579,7,20,8,26,20,5.25,5.0,fr,25430,191,1041327,1,1,Active Shallow Crust,240.0257,58.00031,0.0,07/20/9579 +0.45403,46.86458,5863,4,26,23,38,4,5.35,15.0,fr,25431,117,1041346,1,1,Active Shallow Crust,128.8829,89.98805,0.0,04/26/5863 +5.14782,48.39485,1760,2,7,17,34,1,3.55,5.0,fr,25432,35,1041600,1,2,Active Shallow Crust,0.0,89.9933,0.0,02/07/1760 +5.14782,48.39485,4629,7,20,3,48,59,3.55,5.0,fr,25433,92,1041600,1,2,Active Shallow Crust,0.0,89.9933,0.0,07/20/4629 +5.14782,48.39485,3071,11,2,16,33,29,3.55,15.0,fr,25434,61,1041607,1,1,Active Shallow Crust,0.0,89.99323,-90.0,11/02/3071 +5.14782,48.39485,7629,2,28,19,50,8,3.65,5.0,fr,25435,152,1041612,1,1,Active Shallow Crust,0.0,89.98807,0.0,02/28/7629 +5.14782,48.39485,4772,6,2,4,25,36,3.75,5.0,fr,25436,95,1041624,1,1,Active Shallow Crust,0.0,89.98936,0.0,06/02/4772 +5.14782,48.39485,4205,1,5,5,47,35,4.15,5.0,fr,25437,84,1041675,1,1,Active Shallow Crust,240.0087,57.99753,0.0,01/05/4205 +5.14782,48.39485,6299,7,3,1,43,20,4.55,5.0,fr,25438,125,1041726,1,1,Active Shallow Crust,0.0,89.98929,-90.0,07/03/6299 +5.14782,48.39485,891,7,3,20,30,33,4.95,5.0,fr,25439,17,1041768,1,1,Active Shallow Crust,0.0,89.99065,0.0,07/03/0891 +8.03154,48.99979,434,12,31,4,27,51,3.55,5.0,fr,25440,8,1042080,1,3,Active Shallow Crust,0.0,89.98677,0.0,12/31/0434 +8.03154,48.99979,4418,4,1,19,35,23,3.55,5.0,fr,25441,88,1042080,1,3,Active Shallow Crust,0.0,89.98677,0.0,04/01/4418 +8.03154,48.99979,4578,4,19,23,15,32,3.55,5.0,fr,25442,91,1042080,1,3,Active Shallow Crust,0.0,89.98677,0.0,04/19/4578 +8.03154,48.99979,6180,10,31,22,44,0,3.55,15.0,fr,25443,123,1042084,1,1,Active Shallow Crust,240.0139,57.99737,0.0,10/31/6180 +8.03154,48.99979,4258,5,20,11,19,7,3.55,5.0,fr,25444,85,1042086,1,1,Active Shallow Crust,0.0,89.98662,-90.0,05/20/4258 +8.03154,48.99979,5755,2,12,10,8,40,3.55,15.0,fr,25445,115,1042090,1,1,Active Shallow Crust,128.8935,89.99339,0.0,02/12/5755 +8.03154,48.99979,6961,9,22,17,31,11,3.65,5.0,fr,25446,139,1042092,1,2,Active Shallow Crust,0.0,89.9882,0.0,09/22/6961 +8.03154,48.99979,5336,10,27,7,52,1,3.65,5.0,fr,25447,106,1042092,1,2,Active Shallow Crust,0.0,89.9882,0.0,10/27/5336 +8.03154,48.99979,6322,4,6,13,0,38,3.65,5.0,fr,25448,126,1042098,1,1,Active Shallow Crust,0.0,89.98807,-90.0,04/06/6322 +8.03154,48.99979,5048,11,28,23,0,57,3.65,15.0,fr,25449,100,1042099,1,1,Active Shallow Crust,0.0,89.98807,-90.0,11/28/5048 +8.03154,48.99979,8939,9,21,13,32,8,3.75,5.0,fr,25450,178,1042104,1,1,Active Shallow Crust,0.0,89.98949,0.0,09/21/8939 +8.03154,48.99979,4193,3,20,20,23,41,3.75,5.0,fr,25451,83,1042107,1,1,Active Shallow Crust,240.0097,58.01722,0.0,03/20/4193 +8.03154,48.99979,3656,9,6,22,36,33,3.75,5.0,fr,25452,73,1042113,1,1,Active Shallow Crust,128.8985,89.96629,0.0,09/06/3656 +8.03154,48.99979,7976,1,13,3,1,5,3.85,5.0,fr,25453,159,1042116,1,1,Active Shallow Crust,0.0,89.99063,0.0,01/13/7976 +8.03154,48.99979,6106,7,29,4,48,0,3.85,5.0,fr,25454,122,1042119,1,2,Active Shallow Crust,240.0094,57.99842,0.0,07/29/6106 +8.03154,48.99979,1186,4,21,13,29,22,3.85,5.0,fr,25455,23,1042119,1,2,Active Shallow Crust,240.0094,57.99842,0.0,04/21/1186 +8.03154,48.99979,6067,7,10,13,56,34,3.85,15.0,fr,25456,121,1042120,1,1,Active Shallow Crust,240.0094,57.99842,0.0,07/10/6067 +8.03154,48.99979,4097,10,1,2,56,35,3.95,5.0,fr,25457,81,1042128,1,2,Active Shallow Crust,0.0,89.99165,0.0,10/01/4097 +8.03154,48.99979,1763,6,16,3,17,37,3.95,5.0,fr,25458,35,1042128,1,2,Active Shallow Crust,0.0,89.99165,0.0,06/16/1763 +8.03154,48.99979,1847,4,14,19,43,16,3.95,5.0,fr,25459,36,1042137,1,1,Active Shallow Crust,128.8996,89.99583,0.0,04/14/1847 +8.03154,48.99979,1967,4,28,6,27,58,4.05,5.0,fr,25460,39,1042140,1,2,Active Shallow Crust,0.0,89.99256,0.0,04/28/1967 +8.03154,48.99979,624,8,18,9,14,53,4.05,5.0,fr,25461,12,1042140,1,2,Active Shallow Crust,0.0,89.99256,0.0,08/18/0624 +8.03154,48.99979,8469,7,14,11,34,24,4.15,27.5,fr,25462,169,1042154,1,1,Active Shallow Crust,0.0,89.98674,0.0,07/14/8469 +8.03154,48.99979,8902,4,25,16,13,2,4.15,5.0,fr,25463,178,1042158,1,1,Active Shallow Crust,0.0,89.99329,-90.0,04/25/8902 +8.03154,48.99979,396,11,10,22,52,22,4.25,15.0,fr,25464,7,1042165,1,1,Active Shallow Crust,0.0,89.98818,0.0,11/10/0396 +8.03154,48.99979,5428,6,20,20,1,16,4.25,15.0,fr,25465,108,1042168,1,1,Active Shallow Crust,240.0091,57.99399,0.0,06/20/5428 +8.03154,48.99979,3011,6,22,13,1,15,4.35,5.0,fr,25466,60,1042176,1,1,Active Shallow Crust,0.0,89.98946,0.0,06/22/3011 +8.03154,48.99979,8753,1,5,7,41,30,4.65,5.0,fr,25467,175,1042212,1,1,Active Shallow Crust,0.0,89.98881,0.0,01/05/8753 +8.03154,48.99979,2591,2,2,10,23,5,5.25,15.0,fr,25468,51,1042285,1,1,Active Shallow Crust,0.0,89.99065,0.0,02/02/2591 +-4.14619,50.39732,1979,4,17,7,47,18,3.95,5.0,fr,25469,39,1042608,1,1,Active Shallow Crust,0.0,89.99189,0.0,04/17/1979 +-4.14619,50.39732,4282,6,1,21,10,17,4.15,5.0,fr,25470,85,1042641,1,1,Active Shallow Crust,128.8975,89.99356,0.0,06/01/4282 +4.11806,49.63134,9820,6,1,18,59,33,3.75,27.5,fr,25471,196,1043066,1,1,Active Shallow Crust,0.0,89.98962,0.0,06/01/9820 +4.11806,49.63134,1767,1,6,17,18,33,4.05,5.0,fr,25472,35,1043100,1,1,Active Shallow Crust,0.0,89.98898,0.0,01/06/1767 +4.11806,49.63134,8931,8,26,7,0,37,4.35,5.0,fr,25473,178,1043136,1,1,Active Shallow Crust,0.0,89.9896,0.0,08/26/8931 +-4.01168,47.70365,2791,2,7,15,27,39,3.55,15.0,fr,25474,55,1043521,1,1,Active Shallow Crust,0.0,89.99322,0.0,02/07/2791 +-4.01168,47.70365,6289,5,7,20,26,56,3.65,5.0,fr,25475,125,1043532,1,1,Active Shallow Crust,0.0,89.98791,0.0,05/07/6289 +-4.01168,47.70365,8983,4,25,15,11,34,3.75,5.0,fr,25476,179,1043544,1,1,Active Shallow Crust,0.0,89.98922,0.0,04/25/8983 +-4.01168,47.70365,2036,5,16,9,32,41,3.75,15.0,fr,25477,40,1043554,1,1,Active Shallow Crust,128.8965,89.96751,0.0,05/16/2036 +-4.01168,47.70365,2516,5,19,18,38,3,3.85,5.0,fr,25478,50,1043556,1,1,Active Shallow Crust,0.0,89.99039,0.0,05/19/2516 +-4.01168,47.70365,2911,10,30,6,16,40,3.85,15.0,fr,25479,58,1043557,1,1,Active Shallow Crust,0.0,89.99039,0.0,10/30/2911 +-4.01168,47.70365,6681,8,9,10,50,24,4.15,5.0,fr,25480,133,1043592,1,1,Active Shallow Crust,0.0,89.9898,0.0,08/09/6681 +-4.01168,47.70365,760,10,1,1,56,21,4.25,5.0,fr,25481,15,1043604,1,1,Active Shallow Crust,0.0,89.99091,0.0,10/01/0760 +5.54874,48.70124,5264,7,18,20,54,16,3.95,15.0,fr,25482,105,1044055,1,1,Active Shallow Crust,0.0,89.9915,-90.0,07/18/5264 +5.54874,48.70124,3877,12,31,3,45,26,4.65,27.5,fr,25483,77,1044134,1,1,Active Shallow Crust,0.0,89.99062,0.0,12/31/3877 +5.54874,48.70124,3702,9,7,20,13,43,4.75,15.0,fr,25484,74,1044145,1,1,Active Shallow Crust,0.0,89.98997,0.0,09/07/3702 +5.54874,48.70124,772,12,28,20,57,12,4.95,5.0,fr,25485,15,1044168,1,1,Active Shallow Crust,0.0,89.98937,0.0,12/28/0772 +1.55251,51.90642,8415,11,18,10,50,10,3.65,5.0,fr,25486,168,1044492,1,1,Active Shallow Crust,0.0,89.9903,0.0,11/18/8415 +1.55251,51.90642,516,1,10,16,29,26,3.65,5.0,fr,25487,10,1044498,1,1,Active Shallow Crust,0.0,89.99018,-90.0,01/10/0516 +1.55251,51.90642,2299,6,27,11,25,49,3.85,5.0,fr,25488,45,1044519,1,1,Active Shallow Crust,240.0115,57.99794,0.0,06/27/2299 +1.55251,51.90642,848,6,20,9,15,53,3.95,5.0,fr,25489,16,1044528,1,2,Active Shallow Crust,0.0,89.99019,0.0,06/20/0848 +1.55251,51.90642,4452,2,2,11,31,16,3.95,5.0,fr,25490,89,1044528,1,2,Active Shallow Crust,0.0,89.99019,0.0,02/02/4452 +1.55251,51.90642,5260,11,11,7,6,46,4.05,27.5,fr,25491,105,1044542,1,1,Active Shallow Crust,0.0,89.99038,0.0,11/11/5260 +1.55251,51.90642,2553,8,18,14,23,20,4.25,15.0,fr,25492,51,1044565,1,1,Active Shallow Crust,0.0,89.99027,0.0,08/18/2553 +-0.77971,49.8469,3071,6,11,17,42,30,3.55,27.5,fr,25493,61,1044968,1,1,Active Shallow Crust,0.0,89.99014,-90.0,06/11/3071 +-0.77971,49.8469,7730,11,14,12,0,11,3.65,5.0,fr,25494,154,1044972,1,3,Active Shallow Crust,0.0,89.98986,0.0,11/14/7730 +-0.77971,49.8469,9042,10,13,13,20,30,3.65,5.0,fr,25495,180,1044972,1,3,Active Shallow Crust,0.0,89.98986,0.0,10/13/9042 +-0.77971,49.8469,4436,9,1,8,25,34,3.65,5.0,fr,25496,88,1044972,1,3,Active Shallow Crust,0.0,89.98986,0.0,09/01/4436 +-0.77971,49.8469,7622,10,25,19,29,16,3.85,5.0,fr,25497,152,1044996,1,1,Active Shallow Crust,0.0,89.99022,0.0,10/25/7622 +-0.77971,49.8469,9076,5,10,7,56,26,3.95,5.0,fr,25498,181,1045008,1,2,Active Shallow Crust,359.9998,89.99026,0.0,05/10/9076 +-0.77971,49.8469,6867,7,15,9,25,52,3.95,5.0,fr,25499,137,1045008,1,2,Active Shallow Crust,359.9998,89.99026,0.0,07/15/6867 +-0.77971,49.8469,5049,6,19,18,42,6,4.25,5.0,fr,25500,100,1045044,1,1,Active Shallow Crust,0.0,89.98983,0.0,06/19/5049 +-0.77971,49.8469,9001,11,29,20,34,31,4.75,5.0,fr,25501,180,1045104,1,1,Active Shallow Crust,0.0,89.99,0.0,11/29/9001 +0.54559,51.35456,4366,5,17,0,51,46,3.55,5.0,fr,25502,87,1045920,1,1,Active Shallow Crust,0.0,89.98977,0.0,05/17/4366 +0.54559,51.35456,1744,6,10,21,56,5,3.55,5.0,fr,25503,34,1045923,1,1,Active Shallow Crust,240.0127,57.9982,0.0,06/10/1744 +0.54559,51.35456,5340,4,22,7,29,32,3.75,5.0,fr,25504,106,1045950,1,1,Active Shallow Crust,0.0,89.98988,-90.0,04/22/5340 +0.54559,51.35456,4410,3,8,3,37,41,3.85,5.0,fr,25505,88,1045956,1,1,Active Shallow Crust,0.0,89.98997,0.0,03/08/4410 +0.54559,51.35456,4835,1,23,16,38,48,3.95,5.0,fr,25506,96,1045977,1,1,Active Shallow Crust,128.8998,89.99355,0.0,01/23/4835 +0.54559,51.35456,2987,1,7,10,22,35,4.05,27.5,fr,25507,59,1045982,1,1,Active Shallow Crust,0.0,89.98981,0.0,01/07/2987 +0.54559,51.35456,3371,6,18,10,35,53,4.75,15.0,fr,25508,67,1046074,1,1,Active Shallow Crust,128.8871,89.98805,0.0,06/18/3371 +0.54559,51.35456,1881,9,27,14,10,53,4.95,5.0,fr,25509,37,1046088,1,1,Active Shallow Crust,0.0,89.98994,0.0,09/27/1881 +-1.94432,45.30895,7898,8,4,13,49,0,4.05,5.0,fr,25510,157,1046460,1,1,Active Shallow Crust,0.0,89.99003,0.0,08/04/7898 +8.36707,47.37837,8157,12,6,7,13,17,3.55,5.0,fr,25511,163,1046880,1,7,Active Shallow Crust,0.0,89.98634,0.0,12/06/8157 +8.36707,47.37837,6454,2,2,5,11,4,3.55,5.0,fr,25512,129,1046880,1,7,Active Shallow Crust,0.0,89.98634,0.0,02/02/6454 +8.36707,47.37837,6713,9,13,7,29,59,3.55,5.0,fr,25513,134,1046880,1,7,Active Shallow Crust,0.0,89.98634,0.0,09/13/6713 +8.36707,47.37837,3702,8,21,17,14,28,3.55,5.0,fr,25514,74,1046880,1,7,Active Shallow Crust,0.0,89.98634,0.0,08/21/3702 +8.36707,47.37837,615,12,12,5,53,12,3.55,5.0,fr,25515,12,1046880,1,7,Active Shallow Crust,0.0,89.98634,0.0,12/12/0615 +8.36707,47.37837,5654,9,5,17,37,31,3.55,5.0,fr,25516,113,1046880,1,7,Active Shallow Crust,0.0,89.98634,0.0,09/05/5654 +8.36707,47.37837,8819,4,19,5,44,41,3.55,5.0,fr,25517,176,1046880,1,7,Active Shallow Crust,0.0,89.98634,0.0,04/19/8819 +8.36707,47.37837,8887,9,2,5,57,13,3.55,15.0,fr,25518,177,1046881,1,3,Active Shallow Crust,0.0,89.98634,0.0,09/02/8887 +8.36707,47.37837,4373,2,11,9,24,57,3.55,15.0,fr,25519,87,1046881,1,3,Active Shallow Crust,0.0,89.98634,0.0,02/11/4373 +8.36707,47.37837,3876,1,23,12,2,21,3.55,15.0,fr,25520,77,1046881,1,3,Active Shallow Crust,0.0,89.98634,0.0,01/23/3876 +8.36707,47.37837,2578,9,8,6,2,16,3.55,5.0,fr,25521,51,1046883,1,1,Active Shallow Crust,240.0125,57.99885,0.0,09/08/2578 +8.36707,47.37837,1402,10,4,13,22,31,3.55,15.0,fr,25522,28,1046884,1,1,Active Shallow Crust,240.0125,57.99885,0.0,10/04/1402 +8.36707,47.37837,9233,8,4,0,45,39,3.55,5.0,fr,25523,184,1046886,1,3,Active Shallow Crust,0.0,89.98618,-90.0,08/04/9233 +8.36707,47.37837,1167,7,11,16,49,47,3.55,5.0,fr,25524,23,1046886,1,3,Active Shallow Crust,0.0,89.98618,-90.0,07/11/1167 +8.36707,47.37837,9285,8,14,16,9,19,3.55,5.0,fr,25525,185,1046886,1,3,Active Shallow Crust,0.0,89.98618,-90.0,08/14/9285 +8.36707,47.37837,943,12,9,4,25,8,3.55,27.5,fr,25526,18,1046888,1,1,Active Shallow Crust,0.0,89.98618,-90.0,12/09/0943 +8.36707,47.37837,8478,1,20,0,32,40,3.55,5.0,fr,25527,169,1046889,1,3,Active Shallow Crust,128.8938,89.99317,0.0,01/20/8478 +8.36707,47.37837,2211,9,26,18,28,51,3.55,5.0,fr,25528,44,1046889,1,3,Active Shallow Crust,128.8938,89.99317,0.0,09/26/2211 +8.36707,47.37837,9103,12,14,0,54,54,3.55,5.0,fr,25529,182,1046889,1,3,Active Shallow Crust,128.8938,89.99317,0.0,12/14/9103 +8.36707,47.37837,7637,10,28,22,54,54,3.65,5.0,fr,25530,152,1046892,1,3,Active Shallow Crust,0.0,89.98783,0.0,10/28/7637 +8.36707,47.37837,9671,11,3,23,0,55,3.65,5.0,fr,25531,193,1046892,1,3,Active Shallow Crust,0.0,89.98783,0.0,11/03/9671 +8.36707,47.37837,2186,9,27,19,19,49,3.65,5.0,fr,25532,43,1046892,1,3,Active Shallow Crust,0.0,89.98783,0.0,09/27/2186 +8.36707,47.37837,2829,12,13,8,7,0,3.65,15.0,fr,25533,56,1046893,1,2,Active Shallow Crust,0.0,89.98783,0.0,12/13/2829 +8.36707,47.37837,2776,11,14,7,39,8,3.65,15.0,fr,25534,55,1046893,1,2,Active Shallow Crust,0.0,89.98783,0.0,11/14/2776 +8.36707,47.37837,1983,9,17,6,27,5,3.75,5.0,fr,25535,39,1046904,1,5,Active Shallow Crust,0.0,89.98915,0.0,09/17/1983 +8.36707,47.37837,1978,6,3,10,30,13,3.75,5.0,fr,25536,39,1046904,1,5,Active Shallow Crust,0.0,89.98915,0.0,06/03/1978 +8.36707,47.37837,510,4,15,2,14,12,3.75,5.0,fr,25537,10,1046904,1,5,Active Shallow Crust,0.0,89.98915,0.0,04/15/0510 +8.36707,47.37837,9885,2,21,17,11,34,3.75,5.0,fr,25538,197,1046904,1,5,Active Shallow Crust,0.0,89.98915,0.0,02/21/9885 +8.36707,47.37837,6212,11,29,9,54,6,3.75,5.0,fr,25539,124,1046904,1,5,Active Shallow Crust,0.0,89.98915,0.0,11/29/6212 +8.36707,47.37837,6864,4,2,20,34,46,3.75,15.0,fr,25540,137,1046905,1,1,Active Shallow Crust,0.0,89.98915,0.0,04/02/6864 +8.36707,47.37837,9683,7,21,15,51,37,3.75,27.5,fr,25541,193,1046906,1,1,Active Shallow Crust,0.0,89.98915,0.0,07/21/9683 +8.36707,47.37837,4922,1,25,17,4,43,3.75,5.0,fr,25542,98,1046910,1,3,Active Shallow Crust,0.0,89.98903,-90.0,01/25/4922 +8.36707,47.37837,8310,9,10,1,52,8,3.75,5.0,fr,25543,166,1046910,1,3,Active Shallow Crust,0.0,89.98903,-90.0,09/10/8310 +8.36707,47.37837,5464,3,27,20,0,53,3.75,5.0,fr,25544,109,1046910,1,3,Active Shallow Crust,0.0,89.98903,-90.0,03/27/5464 +8.36707,47.37837,2762,4,22,8,29,57,3.75,15.0,fr,25545,55,1046911,1,1,Active Shallow Crust,0.0,89.98903,-90.0,04/22/2762 +8.36707,47.37837,6765,12,15,8,34,53,3.75,27.5,fr,25546,135,1046912,1,1,Active Shallow Crust,0.0,89.98903,-90.0,12/15/6765 +8.36707,47.37837,7634,5,19,3,53,58,3.85,5.0,fr,25547,152,1046916,1,1,Active Shallow Crust,0.0,89.99033,0.0,05/19/7634 +8.36707,47.37837,9703,12,21,11,44,33,3.85,15.0,fr,25548,194,1046920,1,1,Active Shallow Crust,240.0116,57.99646,0.0,12/21/9703 +8.36707,47.37837,1151,3,12,16,2,0,3.85,5.0,fr,25549,23,1046922,1,1,Active Shallow Crust,0.0,89.99022,-90.0,03/12/1151 +8.36707,47.37837,2521,4,17,8,18,14,3.95,5.0,fr,25550,50,1046928,1,2,Active Shallow Crust,0.0,89.99139,0.0,04/17/2521 +8.36707,47.37837,8429,5,16,10,4,38,3.95,5.0,fr,25551,168,1046928,1,2,Active Shallow Crust,0.0,89.99139,0.0,05/16/8429 +8.36707,47.37837,841,12,8,22,12,1,3.95,15.0,fr,25552,16,1046929,1,1,Active Shallow Crust,0.0,89.99139,0.0,12/08/0841 +8.36707,47.37837,4861,1,25,10,4,57,3.95,27.5,fr,25553,97,1046933,1,1,Active Shallow Crust,240.0216,58.00405,0.0,01/25/4861 +8.36707,47.37837,8767,9,5,20,39,10,3.95,5.0,fr,25554,175,1046934,1,1,Active Shallow Crust,0.0,89.99128,-90.0,09/05/8767 +8.36707,47.37837,6647,10,25,21,4,36,3.95,15.0,fr,25555,132,1046935,1,1,Active Shallow Crust,0.0,89.99128,-90.0,10/25/6647 +8.36707,47.37837,193,10,24,16,45,59,3.95,15.0,fr,25556,3,1046938,1,1,Active Shallow Crust,128.9004,89.99569,0.0,10/24/0193 +8.36707,47.37837,555,4,15,17,37,8,4.05,5.0,fr,25557,11,1046940,1,2,Active Shallow Crust,0.0,89.99232,0.0,04/15/0555 +8.36707,47.37837,5775,9,8,16,49,9,4.05,5.0,fr,25558,115,1046940,1,2,Active Shallow Crust,0.0,89.99232,0.0,09/08/5775 +8.36707,47.37837,5614,4,18,0,3,48,4.05,27.5,fr,25559,112,1046942,1,1,Active Shallow Crust,0.0,89.99232,0.0,04/18/5614 +8.36707,47.37837,7457,1,21,6,57,57,4.05,15.0,fr,25560,149,1046944,1,1,Active Shallow Crust,240.0052,58.00644,0.0,01/21/7457 +8.36707,47.37837,1042,12,28,13,46,44,4.15,5.0,fr,25561,20,1046952,1,1,Active Shallow Crust,0.0,89.99316,0.0,12/28/1042 +8.36707,47.37837,2143,5,8,18,13,53,4.15,15.0,fr,25562,42,1046962,1,1,Active Shallow Crust,128.8995,89.99316,0.0,05/08/2143 +8.36707,47.37837,3969,9,19,14,15,24,4.25,15.0,fr,25563,79,1046965,1,1,Active Shallow Crust,0.0,89.9878,0.0,09/19/3969 +8.36707,47.37837,3397,3,17,15,0,6,4.35,15.0,fr,25564,67,1046977,1,1,Active Shallow Crust,0.0,89.98913,0.0,03/17/3397 +8.36707,47.37837,1543,5,30,14,9,46,4.35,5.0,fr,25565,30,1046982,1,1,Active Shallow Crust,0.0,89.989,-90.0,05/30/1543 +8.36707,47.37837,2696,3,27,14,48,6,4.45,5.0,fr,25566,53,1046988,1,1,Active Shallow Crust,0.0,89.99031,0.0,03/27/2696 +8.36707,47.37837,7100,12,4,13,38,32,4.45,5.0,fr,25567,141,1046991,1,1,Active Shallow Crust,240.0062,57.99506,0.0,12/04/7100 +8.36707,47.37837,1639,3,4,16,17,40,4.55,27.5,fr,25568,32,1047008,1,1,Active Shallow Crust,0.0,89.99126,-90.0,03/04/1639 +8.36707,47.37837,964,1,26,16,15,21,4.65,15.0,fr,25569,19,1047013,1,1,Active Shallow Crust,0.0,89.98845,0.0,01/26/0964 +8.36707,47.37837,3796,2,20,6,40,46,4.65,5.0,fr,25570,75,1047018,1,1,Active Shallow Crust,0.0,89.98832,-90.0,02/20/3796 +8.36707,47.37837,7848,2,20,4,45,56,4.75,5.0,fr,25571,156,1047024,1,1,Active Shallow Crust,0.0,89.98971,0.0,02/20/7848 +8.36707,47.37837,323,9,9,12,30,12,4.75,5.0,fr,25572,6,1047030,1,1,Active Shallow Crust,0.0,89.98959,-90.0,09/09/0323 +8.36707,47.37837,170,7,27,15,59,37,4.75,27.5,fr,25573,3,1047032,1,1,Active Shallow Crust,0.0,89.98959,-90.0,07/27/0170 +8.36707,47.37837,9326,8,14,0,11,7,4.85,5.0,fr,25574,186,1047036,1,2,Active Shallow Crust,0.0,89.99083,0.0,08/14/9326 +8.36707,47.37837,7682,2,1,23,15,19,4.85,5.0,fr,25575,153,1047036,1,2,Active Shallow Crust,0.0,89.99083,0.0,02/01/7682 +8.36707,47.37837,5707,9,9,14,23,54,4.85,15.0,fr,25576,114,1047037,1,1,Active Shallow Crust,0.0,89.99083,0.0,09/09/5707 +8.36707,47.37837,5206,3,23,5,59,57,5.25,15.0,fr,25577,104,1047085,1,1,Active Shallow Crust,0.0,89.99035,0.0,03/23/5206 +8.36707,47.37837,2438,10,13,4,20,44,5.45,5.0,fr,25578,48,1047111,1,1,Active Shallow Crust,240.0294,57.99879,0.0,10/13/2438 +8.36707,47.37837,6588,2,21,15,58,14,5.45,5.0,fr,25579,131,1047114,1,1,Active Shallow Crust,0.0,89.99069,-90.0,02/21/6588 +8.36707,47.37837,7258,12,18,5,48,26,5.65,5.0,fr,25580,145,1047132,1,1,Active Shallow Crust,0.0,89.99026,0.0,12/18/7258 +8.367069,47.37837,8539,1,30,23,54,43,6.05,5.357596,fr,25581,170,1047189,1,1,Active Shallow Crust,128.8589,89.98904,0.0,01/30/8539 +4.41335,51.63922,5022,9,10,11,15,13,3.65,5.0,fr,25582,100,1047372,1,1,Active Shallow Crust,0.0,89.98885,0.0,09/10/5022 +1.97495,46.02734,4078,8,28,10,24,53,3.55,5.0,fr,25583,81,1047840,1,1,Active Shallow Crust,0.0,89.98949,0.0,08/28/4078 +1.97495,46.02734,2031,12,26,10,20,56,3.55,5.0,fr,25584,40,1047846,1,1,Active Shallow Crust,0.0,89.98938,-90.0,12/26/2031 +1.97495,46.02734,4070,11,26,10,3,0,3.65,15.0,fr,25585,81,1047856,1,1,Active Shallow Crust,240.0011,58.0128,0.0,11/26/4070 +1.97495,46.02734,7978,4,4,18,54,0,3.75,5.0,fr,25586,159,1047864,1,1,Active Shallow Crust,0.0,89.99026,0.0,04/04/7978 +1.97495,46.02734,4751,7,27,0,37,4,3.75,5.0,fr,25587,95,1047867,1,2,Active Shallow Crust,240.0083,58.01739,0.0,07/27/4751 +1.97495,46.02734,3920,12,15,9,23,32,3.75,5.0,fr,25588,78,1047867,1,2,Active Shallow Crust,240.0083,58.01739,0.0,12/15/3920 +1.97495,46.02734,3898,3,4,5,5,45,3.75,5.0,fr,25589,77,1047873,1,1,Active Shallow Crust,128.8967,89.96735,0.0,03/04/3898 +1.97495,46.02734,812,3,20,22,40,38,3.95,15.0,fr,25590,16,1047889,1,1,Active Shallow Crust,0.0,89.99006,0.0,03/20/0812 +1.97495,46.02734,4646,4,11,15,6,12,4.35,5.0,fr,25591,92,1047939,1,1,Active Shallow Crust,240.0083,57.99588,0.0,04/11/4646 +1.97495,46.02734,6202,2,12,5,3,41,4.55,5.0,fr,25592,124,1047966,1,2,Active Shallow Crust,0.0,89.98992,-90.0,02/12/6202 +1.97495,46.02734,8874,10,13,4,35,26,4.55,5.0,fr,25593,177,1047966,1,2,Active Shallow Crust,0.0,89.98992,-90.0,10/13/8874 +1.97495,46.02734,4285,4,2,12,49,25,5.15,5.0,fr,25594,85,1048032,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/02/4285 +-2.85317,48.76139,2778,10,8,9,43,21,3.55,5.0,fr,25595,55,1048320,1,3,Active Shallow Crust,0.0,89.99003,0.0,10/08/2778 +-2.85317,48.76139,8737,3,4,10,30,8,3.55,5.0,fr,25596,174,1048320,1,3,Active Shallow Crust,0.0,89.99003,0.0,03/04/8737 +-2.85317,48.76139,4403,8,9,4,24,49,3.55,5.0,fr,25597,88,1048320,1,3,Active Shallow Crust,0.0,89.99003,0.0,08/09/4403 +-2.85317,48.76139,328,11,2,11,13,9,3.55,5.0,fr,25598,6,1048326,1,2,Active Shallow Crust,0.0,89.98991,-90.0,11/02/0328 +-2.85317,48.76139,1266,2,23,13,35,2,3.55,5.0,fr,25599,25,1048326,1,2,Active Shallow Crust,0.0,89.98991,-90.0,02/23/1266 +-2.85317,48.76139,2729,11,5,9,51,51,3.65,15.0,fr,25600,54,1048333,1,1,Active Shallow Crust,0.0,89.99111,0.0,11/05/2729 +-2.85317,48.76139,6806,9,5,2,42,14,3.75,5.0,fr,25601,136,1048344,1,2,Active Shallow Crust,0.0,89.98944,0.0,09/05/6806 +-2.85317,48.76139,6812,3,23,19,43,38,3.75,5.0,fr,25602,136,1048344,1,2,Active Shallow Crust,0.0,89.98944,0.0,03/23/6812 +-2.85317,48.76139,4830,4,4,13,53,26,3.85,5.0,fr,25603,96,1048359,1,3,Active Shallow Crust,240.0115,57.9976,0.0,04/04/4830 +-2.85317,48.76139,9135,10,19,18,4,46,3.85,5.0,fr,25604,182,1048359,1,3,Active Shallow Crust,240.0115,57.9976,0.0,10/19/9135 +-2.85317,48.76139,6653,10,9,18,11,13,3.85,5.0,fr,25605,133,1048359,1,3,Active Shallow Crust,240.0115,57.9976,0.0,10/09/6653 +-2.85317,48.76139,5352,3,12,14,3,40,3.85,27.5,fr,25606,107,1048361,1,1,Active Shallow Crust,240.0115,57.9976,0.0,03/12/5352 +-2.85317,48.76139,4332,3,3,15,29,1,3.85,5.0,fr,25607,86,1048365,1,1,Active Shallow Crust,128.8955,89.99412,0.0,03/03/4332 +-2.85317,48.76139,1858,8,5,20,50,58,3.95,5.0,fr,25608,37,1048368,1,1,Active Shallow Crust,0.0,89.98952,0.0,08/05/1858 +-2.85317,48.76139,3578,8,2,21,28,59,3.95,27.5,fr,25609,71,1048370,1,1,Active Shallow Crust,0.0,89.98952,0.0,08/02/3578 +-2.85317,48.76139,7827,6,23,23,28,50,3.95,5.0,fr,25610,156,1048371,1,1,Active Shallow Crust,240.0202,58.00495,0.0,06/23/7827 +-2.85317,48.76139,4639,4,13,9,57,4,4.05,27.5,fr,25611,92,1048382,1,1,Active Shallow Crust,0.0,89.99065,0.0,04/13/4639 +-2.85317,48.76139,8529,1,28,5,21,43,4.05,5.0,fr,25612,170,1048386,1,1,Active Shallow Crust,0.0,89.99055,-90.0,01/28/8529 +-2.85317,48.76139,5097,4,27,5,35,14,4.15,15.0,fr,25613,101,1048393,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/27/5097 +-2.85317,48.76139,5989,8,7,21,25,48,4.35,5.0,fr,25614,119,1048416,1,1,Active Shallow Crust,0.0,89.98941,0.0,08/07/5989 +-2.85317,48.76139,4262,6,28,0,21,37,4.75,5.0,fr,25615,85,1048470,1,1,Active Shallow Crust,0.0,89.98986,-90.0,06/28/4262 +0.74336,41.87636,3941,2,21,9,0,50,3.85,15.0,fr,25616,78,1048837,1,1,Active Shallow Crust,0.0,89.99004,0.0,02/21/3941 +0.74336,41.87636,9039,3,8,21,32,3,3.85,5.0,fr,25617,180,1048845,1,1,Active Shallow Crust,128.896,89.99369,0.0,03/08/9039 +0.74336,41.87636,5377,12,25,16,38,15,3.95,5.0,fr,25618,107,1048854,1,1,Active Shallow Crust,0.0,89.98981,-90.0,12/25/5377 +3.95399,51.57336,4841,7,29,1,34,22,3.85,5.0,fr,25619,96,1049319,1,1,Active Shallow Crust,240.0112,57.99829,0.0,07/29/4841 +3.95399,51.57336,7044,11,20,23,25,53,4.25,5.0,fr,25620,140,1049364,1,1,Active Shallow Crust,0.0,89.9902,0.0,11/20/7044 +3.95399,51.57336,2922,11,11,23,32,58,4.25,27.5,fr,25621,58,1049366,1,1,Active Shallow Crust,0.0,89.9902,0.0,11/11/2922 +3.95399,51.57336,5604,4,12,1,26,31,4.55,5.0,fr,25622,112,1049400,1,1,Active Shallow Crust,0.0,89.99009,0.0,04/12/5604 +3.95399,51.57336,1091,4,18,14,8,32,5.15,27.5,fr,25623,21,1049474,1,1,Active Shallow Crust,0.0,89.99007,0.0,04/18/1091 +2.07502,51.02172,5828,5,18,18,7,36,3.55,5.0,fr,25624,116,1050240,1,1,Active Shallow Crust,0.0,89.99049,0.0,05/18/5828 +2.07502,51.02172,3615,8,27,21,41,57,3.55,5.0,fr,25625,72,1050243,1,1,Active Shallow Crust,240.0129,57.99844,0.0,08/27/3615 +2.07502,51.02172,1884,7,31,19,49,26,3.65,15.0,fr,25626,37,1050253,1,1,Active Shallow Crust,0.0,89.98869,0.0,07/31/1884 +2.07502,51.02172,6624,9,29,6,45,42,3.75,5.0,fr,25627,132,1050264,1,1,Active Shallow Crust,0.0,89.98992,0.0,09/29/6624 +2.07502,51.02172,2408,5,16,8,2,37,3.95,5.0,fr,25628,48,1050288,1,2,Active Shallow Crust,0.0,89.99,0.0,05/16/2408 +2.07502,51.02172,8401,1,20,6,25,58,3.95,5.0,fr,25629,168,1050288,1,2,Active Shallow Crust,0.0,89.99,0.0,01/20/8401 +2.07502,51.02172,7182,4,22,15,7,41,4.05,5.0,fr,25630,143,1050300,1,2,Active Shallow Crust,0.0,89.9893,0.0,04/22/7182 +2.07502,51.02172,3426,6,6,21,14,29,4.05,5.0,fr,25631,68,1050300,1,2,Active Shallow Crust,0.0,89.9893,0.0,06/06/3426 +7.84153,51.09457,6135,6,18,3,59,4,3.85,15.0,fr,25632,122,1050757,1,1,Active Shallow Crust,0.0,89.99104,0.0,06/18/6135 +-3.07839,49.54917,1319,9,17,7,7,10,3.85,27.5,fr,25633,26,1051241,1,1,Active Shallow Crust,240.0115,57.99803,0.0,09/17/1319 +-3.07839,49.54917,7201,10,18,21,1,6,3.95,5.0,fr,25634,144,1051251,1,1,Active Shallow Crust,240.0206,58.005,0.0,10/18/7201 +6.08733,42.50203,7368,5,24,9,29,44,3.55,5.0,fr,25635,147,1051680,1,1,Active Shallow Crust,0.0,89.99257,0.0,05/24/7368 +6.08733,42.50203,5896,5,21,20,43,28,3.75,15.0,fr,25636,117,1051705,1,1,Active Shallow Crust,0.0,89.98819,0.0,05/21/5896 +6.08733,42.50203,5893,6,3,12,36,0,4.05,15.0,fr,25637,117,1051747,1,1,Active Shallow Crust,0.0,89.99154,-90.0,06/03/5893 +-0.16159,45.33506,9131,11,9,21,26,19,4.15,5.0,fr,25638,182,1052232,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/09/9131 +-0.16159,45.33506,4018,6,28,11,26,46,4.15,15.0,fr,25639,80,1052233,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/28/4018 +2.32753,45.27679,8031,3,28,21,53,21,3.55,5.0,fr,25640,160,1052646,1,1,Active Shallow Crust,0.0,89.98923,-90.0,03/28/8031 +2.32753,45.27679,9980,6,7,17,5,2,3.55,5.0,fr,25641,199,1052649,1,1,Active Shallow Crust,128.8963,89.9929,0.0,06/07/9980 +2.32753,45.27679,886,8,24,2,8,58,3.65,5.0,fr,25642,17,1052652,1,2,Active Shallow Crust,0.0,89.99052,0.0,08/24/0886 +2.32753,45.27679,4487,12,22,8,53,53,3.65,5.0,fr,25643,89,1052652,1,2,Active Shallow Crust,0.0,89.99052,0.0,12/22/4487 +2.32753,45.27679,4940,6,7,7,28,54,3.75,5.0,fr,25644,98,1052664,1,2,Active Shallow Crust,0.0,89.98872,0.0,06/07/4940 +2.32753,45.27679,7520,12,31,7,48,4,3.75,5.0,fr,25645,150,1052664,1,2,Active Shallow Crust,0.0,89.98872,0.0,12/31/7520 +2.32753,45.27679,1667,11,19,0,56,51,3.75,27.5,fr,25646,33,1052666,1,2,Active Shallow Crust,0.0,89.98872,0.0,11/19/1667 +2.32753,45.27679,3319,5,1,19,18,26,3.75,27.5,fr,25647,66,1052666,1,2,Active Shallow Crust,0.0,89.98872,0.0,05/01/3319 +2.32753,45.27679,4379,3,1,13,23,31,4.05,5.0,fr,25648,87,1052700,1,1,Active Shallow Crust,0.0,89.99002,0.0,03/01/4379 +2.32753,45.27679,4999,1,1,14,19,38,4.25,15.0,fr,25649,99,1052734,1,1,Active Shallow Crust,128.8949,89.9809,0.0,01/01/4999 +2.32753,45.27679,2855,5,11,1,31,7,4.65,5.0,fr,25650,57,1052772,1,1,Active Shallow Crust,0.0,89.99,0.0,05/11/2855 +-3.1351,46.97111,248,6,27,22,53,9,3.75,5.0,fr,25651,4,1053144,1,1,Active Shallow Crust,0.0,89.98907,0.0,06/27/0248 +-4.10849,48.78337,8730,6,28,21,45,18,3.55,15.0,fr,25652,174,1053601,1,1,Active Shallow Crust,0.0,89.98671,0.0,06/28/8730 +-4.10849,48.78337,6950,6,23,13,56,36,3.55,5.0,fr,25653,138,1053606,1,1,Active Shallow Crust,0.0,89.99328,-90.0,06/23/6950 +-4.10849,48.78337,7172,3,18,12,57,32,3.65,15.0,fr,25654,143,1053613,1,1,Active Shallow Crust,0.0,89.98816,0.0,03/18/7172 +-4.10849,48.78337,778,4,13,15,34,37,3.65,5.0,fr,25655,15,1053618,1,1,Active Shallow Crust,0.0,89.98802,-90.0,04/13/0778 +-4.10849,48.78337,3575,3,28,8,50,56,3.65,15.0,fr,25656,71,1053622,1,1,Active Shallow Crust,128.9009,89.96297,0.0,03/28/3575 +-4.10849,48.78337,4069,2,22,10,3,42,3.75,5.0,fr,25657,81,1053633,1,1,Active Shallow Crust,128.8964,89.967,0.0,02/22/4069 +-4.10849,48.78337,6956,8,30,1,12,41,4.05,5.0,fr,25658,139,1053660,1,1,Active Shallow Crust,0.0,89.98879,0.0,08/30/6956 +-4.10849,48.78337,7967,7,30,5,4,46,4.05,15.0,fr,25659,159,1053661,1,1,Active Shallow Crust,0.0,89.98879,0.0,07/30/7967 +-4.10849,48.78337,1242,11,15,7,36,6,4.15,27.5,fr,25660,24,1053674,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/15/1242 +-4.10849,48.78337,7657,8,17,5,50,2,4.35,5.0,fr,25661,153,1053696,1,1,Active Shallow Crust,0.0,89.98942,0.0,08/17/7657 +-4.10849,48.78337,3312,6,10,7,57,7,4.65,27.5,fr,25662,66,1053737,1,1,Active Shallow Crust,240.0117,57.99448,0.0,06/10/3312 +5.50578,48.9476,5446,11,8,13,10,9,3.55,15.0,fr,25663,108,1054090,1,1,Active Shallow Crust,128.8954,89.99338,0.0,11/08/5446 +5.50578,48.9476,5168,12,21,17,15,40,4.65,5.0,fr,25664,103,1054215,1,1,Active Shallow Crust,240.0117,57.99421,0.0,12/21/5168 +6.27953,47.00914,667,7,9,21,26,31,3.55,5.0,fr,25665,13,1054560,1,2,Active Shallow Crust,0.0,89.99313,0.0,07/09/0667 +6.27953,47.00914,4761,1,19,6,47,32,3.55,5.0,fr,25666,95,1054560,1,2,Active Shallow Crust,0.0,89.99313,0.0,01/19/4761 +6.27953,47.00914,1683,10,18,17,18,21,3.55,15.0,fr,25667,33,1054561,1,2,Active Shallow Crust,0.0,89.99313,0.0,10/18/1683 +6.27953,47.00914,8531,5,8,15,25,55,3.55,15.0,fr,25668,170,1054561,1,2,Active Shallow Crust,0.0,89.99313,0.0,05/08/8531 +6.27953,47.00914,4364,4,27,9,39,30,3.55,27.5,fr,25669,87,1054562,1,1,Active Shallow Crust,0.0,89.99313,0.0,04/27/4364 +6.27953,47.00914,5485,10,5,7,34,46,3.55,5.0,fr,25670,109,1054566,1,1,Active Shallow Crust,0.0,89.99304,-90.0,10/05/5485 +6.27953,47.00914,512,3,14,10,2,33,3.65,5.0,fr,25671,10,1054572,1,2,Active Shallow Crust,0.0,89.98774,0.0,03/14/0512 +6.27953,47.00914,6739,2,13,8,28,19,3.65,5.0,fr,25672,134,1054572,1,2,Active Shallow Crust,0.0,89.98774,0.0,02/13/6739 +6.27953,47.00914,1214,9,1,2,20,12,3.65,5.0,fr,25673,24,1054578,1,1,Active Shallow Crust,0.0,89.9876,-90.0,09/01/1214 +6.27953,47.00914,3441,8,11,3,31,33,3.75,5.0,fr,25674,68,1054584,1,2,Active Shallow Crust,0.0,89.98907,0.0,08/11/3441 +6.27953,47.00914,1037,10,12,14,21,6,3.75,5.0,fr,25675,20,1054584,1,2,Active Shallow Crust,0.0,89.98907,0.0,10/12/1037 +6.27953,47.00914,3555,2,6,12,3,59,3.75,15.0,fr,25676,71,1054585,1,1,Active Shallow Crust,0.0,89.98907,0.0,02/06/3555 +6.27953,47.00914,2034,6,12,10,15,46,3.85,15.0,fr,25677,40,1054597,1,1,Active Shallow Crust,0.0,89.99026,0.0,06/12/2034 +6.27953,47.00914,5859,3,3,5,0,11,3.85,27.5,fr,25678,117,1054598,1,1,Active Shallow Crust,0.0,89.99026,0.0,03/03/5859 +6.27953,47.00914,217,3,8,13,33,58,3.95,5.0,fr,25679,4,1054608,1,2,Active Shallow Crust,0.0,89.99133,0.0,03/08/0217 +6.27953,47.00914,2624,5,29,14,27,33,3.95,5.0,fr,25680,52,1054608,1,2,Active Shallow Crust,0.0,89.99133,0.0,05/29/2624 +6.27953,47.00914,3308,7,22,12,55,59,4.15,27.5,fr,25681,66,1054643,1,1,Active Shallow Crust,128.8966,89.99483,0.0,07/22/3308 +6.27953,47.00914,5252,7,2,2,10,24,4.25,5.0,fr,25682,105,1054644,1,1,Active Shallow Crust,0.0,89.99078,0.0,07/02/5252 +6.27953,47.00914,4216,11,6,22,2,2,4.25,15.0,fr,25683,84,1054651,1,1,Active Shallow Crust,0.0,89.99068,-90.0,11/06/4216 +6.27953,47.00914,9328,10,3,15,45,39,4.35,5.0,fr,25684,186,1054656,1,1,Active Shallow Crust,0.0,89.98905,0.0,10/03/9328 +3.42683,40.38411,7063,1,7,7,40,1,3.55,5.0,fr,25685,141,1055040,1,1,Active Shallow Crust,0.0,89.98848,0.0,01/07/7063 +3.42683,40.38411,8148,11,16,4,36,38,3.65,15.0,fr,25686,162,1055053,1,1,Active Shallow Crust,0.0,89.98973,0.0,11/16/8148 +3.42683,40.38411,5387,7,31,4,9,33,3.75,5.0,fr,25687,107,1055064,1,1,Active Shallow Crust,0.0,89.99084,0.0,07/31/5387 +3.42683,40.38411,1560,7,17,18,15,18,4.55,5.0,fr,25688,31,1055160,1,1,Active Shallow Crust,0.0,89.99028,0.0,07/17/1560 +-3.74994,49.49198,6295,6,12,19,27,7,3.55,5.0,fr,25689,125,1055520,1,1,Active Shallow Crust,0.0,89.99017,0.0,06/12/6295 +-3.74994,49.49198,7218,6,15,2,28,28,3.95,15.0,fr,25690,144,1055575,1,1,Active Shallow Crust,0.0,89.98955,-90.0,06/15/7218 +-3.74994,49.49198,5617,2,14,11,51,40,4.25,15.0,fr,25691,112,1055608,1,1,Active Shallow Crust,240.0082,57.99426,0.0,02/14/5617 +5.59535,42.97702,7800,3,1,23,21,11,3.55,5.0,fr,25692,155,1056000,1,1,Active Shallow Crust,0.0,89.99262,0.0,03/01/7800 +5.59535,42.97702,1159,3,26,18,8,11,3.55,5.0,fr,25693,23,1056003,1,1,Active Shallow Crust,240.0123,57.99722,0.0,03/26/1159 +5.59535,42.97702,2758,3,12,1,47,27,3.75,5.0,fr,25694,55,1056024,1,1,Active Shallow Crust,0.0,89.98828,0.0,03/12/2758 +5.59535,42.97702,52,2,20,5,37,23,3.75,15.0,fr,25695,1,1056025,1,1,Active Shallow Crust,0.0,89.98828,0.0,02/20/0052 +5.59535,42.97702,9639,9,23,23,11,10,3.85,5.0,fr,25696,192,1056036,1,1,Active Shallow Crust,0.0,89.98956,0.0,09/23/9639 +5.59535,42.97702,7308,6,20,11,27,48,3.85,15.0,fr,25697,146,1056040,1,1,Active Shallow Crust,240.0103,57.99784,0.0,06/20/7308 +5.59535,42.97702,3344,2,14,14,4,26,4.35,5.0,fr,25698,66,1056105,1,1,Active Shallow Crust,128.8992,89.98235,0.0,02/14/3344 +5.59535,42.97702,9588,3,16,9,18,33,5.05,5.0,fr,25699,191,1056180,1,1,Active Shallow Crust,0.0,89.9895,0.0,03/16/9588 +-4.29942,47.5372,1252,10,25,23,50,43,3.55,15.0,fr,25700,25,1056967,1,1,Active Shallow Crust,0.0,89.99311,-90.0,10/25/1252 +-4.29942,47.5372,965,6,15,5,11,57,3.75,5.0,fr,25701,19,1056984,1,1,Active Shallow Crust,0.0,89.98918,0.0,06/15/0965 +-4.29942,47.5372,706,4,8,11,11,3,3.95,5.0,fr,25702,14,1057008,1,1,Active Shallow Crust,0.0,89.99141,0.0,04/08/0706 +4.27392,51.74055,9763,7,21,13,54,29,3.55,5.0,fr,25703,195,1057440,1,1,Active Shallow Crust,0.0,89.98751,0.0,07/21/9763 +4.27392,51.74055,5282,6,1,5,53,49,4.15,5.0,fr,25704,105,1057512,1,1,Active Shallow Crust,0.0,89.99061,0.0,06/01/5282 +9.21553,49.75069,2964,6,13,21,46,15,3.65,5.0,fr,25705,59,1057932,1,1,Active Shallow Crust,0.0,89.98839,0.0,06/13/2964 +9.21553,49.75069,3589,12,30,4,0,45,3.95,15.0,fr,25706,71,1057969,1,1,Active Shallow Crust,0.0,89.99178,0.0,12/30/3589 +0.80462,45.68089,54,3,3,3,1,34,3.55,5.0,fr,25707,1,1058400,1,2,Active Shallow Crust,0.0,89.99031,0.0,03/03/0054 +0.80462,45.68089,4607,11,24,17,51,38,3.55,5.0,fr,25708,92,1058400,1,2,Active Shallow Crust,0.0,89.99031,0.0,11/24/4607 +0.80462,45.68089,2486,8,12,13,54,9,3.75,5.0,fr,25709,49,1058424,1,1,Active Shallow Crust,0.0,89.9902,0.0,08/12/2486 +0.80462,45.68089,1543,9,7,20,27,19,3.75,15.0,fr,25710,30,1058425,1,1,Active Shallow Crust,0.0,89.9902,0.0,09/07/1543 +0.80462,45.68089,5762,6,8,1,18,47,3.75,5.0,fr,25711,115,1058430,1,1,Active Shallow Crust,0.0,89.99009,-90.0,06/08/5762 +0.80462,45.68089,8809,2,17,19,30,5,3.85,5.0,fr,25712,176,1058436,1,1,Active Shallow Crust,0.0,89.99003,0.0,02/17/8809 +0.80462,45.68089,9139,1,18,0,9,18,3.95,15.0,fr,25713,182,1058449,1,2,Active Shallow Crust,0.0,89.99,0.0,01/18/9139 +0.80462,45.68089,3244,3,10,9,0,29,3.95,15.0,fr,25714,64,1058449,1,2,Active Shallow Crust,0.0,89.99,0.0,03/10/3244 +0.80462,45.68089,2751,3,15,0,47,42,4.05,5.0,fr,25715,55,1058460,1,2,Active Shallow Crust,0.0,89.9901,0.0,03/15/2751 +0.80462,45.68089,9377,8,23,9,47,17,4.05,5.0,fr,25716,187,1058460,1,2,Active Shallow Crust,0.0,89.9901,0.0,08/23/9377 +0.80462,45.68089,8238,5,21,4,11,53,4.25,27.5,fr,25717,164,1058486,1,1,Active Shallow Crust,0.0,89.99017,0.0,05/21/8238 +0.80462,45.68089,453,1,21,23,31,20,4.35,5.0,fr,25718,9,1058496,1,1,Active Shallow Crust,0.0,89.98983,0.0,01/21/0453 +0.80462,45.68089,7601,11,28,10,58,57,4.75,5.0,fr,25719,152,1058544,1,1,Active Shallow Crust,0.0,89.99004,0.0,11/28/7601 +0.80462,45.68089,6195,4,29,6,12,27,5.05,15.0,fr,25720,123,1058587,1,1,Active Shallow Crust,0.0,89.99002,-90.0,04/29/6195 +-3.57922,42.62758,9741,7,10,11,23,54,3.65,5.0,fr,25721,194,1059375,1,1,Active Shallow Crust,240.0005,58.01292,0.0,07/10/9741 +-3.57922,42.62758,9278,5,9,6,29,20,4.55,5.0,fr,25722,185,1059483,1,1,Active Shallow Crust,240.0082,57.99724,0.0,05/09/9278 +-3.57922,42.62758,3290,10,1,20,44,7,4.65,5.0,fr,25723,65,1059492,1,1,Active Shallow Crust,0.0,89.98954,0.0,10/01/3290 +8.88203,48.70956,7616,6,21,8,41,12,3.55,5.0,fr,25724,152,1059840,1,3,Active Shallow Crust,0.0,89.98669,0.0,06/21/7616 +8.88203,48.70956,2328,10,23,4,48,10,3.55,5.0,fr,25725,46,1059840,1,3,Active Shallow Crust,0.0,89.98669,0.0,10/23/2328 +8.88203,48.70956,8174,4,5,0,5,17,3.55,5.0,fr,25726,163,1059840,1,3,Active Shallow Crust,0.0,89.98669,0.0,04/05/8174 +8.88203,48.70956,1364,2,15,20,29,41,3.55,15.0,fr,25727,27,1059841,1,1,Active Shallow Crust,0.0,89.98669,0.0,02/15/1364 +8.88203,48.70956,1981,9,14,13,34,0,3.55,27.5,fr,25728,39,1059842,1,1,Active Shallow Crust,0.0,89.98669,0.0,09/14/1981 +8.88203,48.70956,1479,2,26,18,52,16,3.55,5.0,fr,25729,29,1059846,1,1,Active Shallow Crust,0.0,89.98653,-90.0,02/26/1479 +8.88203,48.70956,7158,2,11,2,36,22,3.65,15.0,fr,25730,143,1059853,1,1,Active Shallow Crust,0.0,89.98814,0.0,02/11/7158 +8.88203,48.70956,5462,12,23,4,27,51,3.85,5.0,fr,25731,109,1059876,1,1,Active Shallow Crust,0.0,89.99058,0.0,12/23/5462 +8.88203,48.70956,5183,2,17,0,31,54,3.85,5.0,fr,25732,103,1059879,1,2,Active Shallow Crust,240.0099,57.99895,0.0,02/17/5183 +8.88203,48.70956,4113,1,21,23,40,41,3.85,5.0,fr,25733,82,1059879,1,2,Active Shallow Crust,240.0099,57.99895,0.0,01/21/4113 +8.88203,48.70956,128,12,14,9,36,9,3.95,15.0,fr,25734,2,1059889,1,2,Active Shallow Crust,0.0,89.9916,0.0,12/14/0128 +8.88203,48.70956,767,12,30,19,48,40,3.95,15.0,fr,25735,15,1059889,1,2,Active Shallow Crust,0.0,89.9916,0.0,12/30/0767 +8.88203,48.70956,4858,3,6,16,4,44,3.95,5.0,fr,25736,97,1059894,1,1,Active Shallow Crust,0.0,89.99151,-90.0,03/06/4858 +8.88203,48.70956,8369,6,22,1,23,28,4.05,5.0,fr,25737,167,1059900,1,1,Active Shallow Crust,0.0,89.99252,0.0,06/22/8369 +8.88203,48.70956,5158,7,4,22,4,45,4.25,5.0,fr,25738,103,1059924,1,1,Active Shallow Crust,0.0,89.98811,0.0,07/04/5158 +8.88203,48.70956,5676,1,13,16,31,10,4.45,5.0,fr,25739,113,1059948,1,1,Active Shallow Crust,0.0,89.99055,0.0,01/13/5676 +8.88203,48.70956,4990,5,21,18,17,10,4.85,27.5,fr,25740,99,1059998,1,1,Active Shallow Crust,0.0,89.99106,0.0,05/21/4990 +0.9156,47.69496,4845,5,24,6,56,3,3.55,5.0,fr,25741,96,1060803,1,1,Active Shallow Crust,240.0123,57.99821,0.0,05/24/4845 +0.9156,47.69496,1559,1,22,19,30,41,3.95,5.0,fr,25742,31,1060851,1,1,Active Shallow Crust,240.0199,58.00501,0.0,01/22/1559 +0.9156,47.69496,3838,4,17,12,1,14,4.25,15.0,fr,25743,76,1060885,1,1,Active Shallow Crust,0.0,89.99014,0.0,04/17/3838 +0.9156,47.69496,6449,10,21,13,34,6,4.55,5.0,fr,25744,128,1060920,1,1,Active Shallow Crust,0.0,89.99007,0.0,10/21/6449 +0.898622,47.71474,2728,1,31,11,26,3,6.65,9.065474,fr,25745,54,1061175,1,1,Active Shallow Crust,240.1196,58.00032,0.0,01/31/2728 +2.98001,52.06794,4958,1,12,12,27,29,3.55,5.0,fr,25746,99,1061289,1,1,Active Shallow Crust,128.8953,89.9938,0.0,01/12/4958 +2.98001,52.06794,9882,12,23,14,11,54,3.65,5.0,fr,25747,197,1061292,1,1,Active Shallow Crust,0.0,89.98895,0.0,12/23/9882 +2.98001,52.06794,9021,7,12,3,1,37,3.75,15.0,fr,25748,180,1061305,1,1,Active Shallow Crust,0.0,89.99015,0.0,07/12/9021 +2.98001,52.06794,8396,7,24,0,6,25,4.35,5.0,fr,25749,167,1061376,1,1,Active Shallow Crust,0.0,89.99013,0.0,07/24/8396 +2.98001,52.06794,61,3,30,23,19,2,4.55,5.0,fr,25750,1,1061403,1,1,Active Shallow Crust,240.0112,57.99757,0.0,03/30/0061 +2.98001,52.06794,8942,7,4,3,48,37,4.75,15.0,fr,25751,178,1061425,1,1,Active Shallow Crust,0.0,89.98988,0.0,07/04/8942 +6.40453,49.06259,4483,3,2,11,1,33,3.65,15.0,fr,25752,89,1061773,1,1,Active Shallow Crust,0.0,89.98822,0.0,03/02/4483 +6.40453,49.06259,4724,2,20,20,9,59,3.65,5.0,fr,25753,94,1061778,1,1,Active Shallow Crust,0.0,89.98808,-90.0,02/20/4724 +6.40453,49.06259,9496,10,6,5,49,42,3.75,15.0,fr,25754,189,1061785,1,1,Active Shallow Crust,0.0,89.9895,0.0,10/06/9496 +6.40453,49.06259,7610,4,6,21,12,29,3.75,15.0,fr,25755,152,1061791,1,1,Active Shallow Crust,0.0,89.98938,-90.0,04/06/7610 +6.40453,49.06259,3561,10,22,2,15,37,4.15,15.0,fr,25756,71,1061833,1,1,Active Shallow Crust,0.0,89.99007,0.0,10/22/3561 +6.40453,49.06259,7591,3,1,5,41,10,4.45,27.5,fr,25757,151,1061870,1,1,Active Shallow Crust,0.0,89.99062,0.0,03/01/7591 +3.63549,44.56347,6139,12,11,15,47,39,3.55,27.5,fr,25758,122,1062242,1,1,Active Shallow Crust,0.0,89.98922,0.0,12/11/6139 +3.63549,44.56347,8303,7,23,11,27,7,3.55,5.0,fr,25759,166,1062246,1,1,Active Shallow Crust,0.0,89.9891,-90.0,07/23/8303 +3.63549,44.56347,4067,12,23,12,28,30,3.55,5.0,fr,25760,81,1062249,1,1,Active Shallow Crust,128.8962,89.99281,0.0,12/23/4067 +3.63549,44.56347,1973,12,29,8,10,7,3.65,5.0,fr,25761,39,1062252,1,1,Active Shallow Crust,0.0,89.99039,0.0,12/29/1973 +3.63549,44.56347,4760,1,21,23,15,36,3.65,5.0,fr,25762,95,1062255,1,1,Active Shallow Crust,240.0011,58.01312,0.0,01/21/4760 +3.63549,44.56347,8017,6,29,22,7,58,3.85,5.0,fr,25763,160,1062285,1,1,Active Shallow Crust,128.8958,89.99364,0.0,06/29/8017 +3.63549,44.56347,4071,2,12,3,44,59,4.55,5.0,fr,25764,81,1062360,1,1,Active Shallow Crust,0.0,89.98978,0.0,02/12/4071 +-1.11331,42.64427,4112,8,4,4,20,39,3.55,5.0,fr,25765,82,1062720,1,1,Active Shallow Crust,0.0,89.99073,0.0,08/04/4112 +-1.11331,42.64427,4919,5,28,22,54,57,3.55,15.0,fr,25766,98,1062721,1,1,Active Shallow Crust,0.0,89.99073,0.0,05/28/4919 +-1.11331,42.64427,3145,3,16,21,5,4,3.55,27.5,fr,25767,62,1062725,1,1,Active Shallow Crust,240.0121,57.99778,0.0,03/16/3145 +-1.11331,42.64427,6007,10,27,10,43,35,3.65,5.0,fr,25768,120,1062732,1,2,Active Shallow Crust,0.0,89.99008,0.0,10/27/6007 +-1.11331,42.64427,9779,7,19,4,59,9,3.65,5.0,fr,25769,195,1062732,1,2,Active Shallow Crust,0.0,89.99008,0.0,07/19/9779 +-1.11331,42.64427,7513,11,27,11,10,55,3.65,5.0,fr,25770,150,1062735,1,1,Active Shallow Crust,240.0009,58.01289,0.0,11/27/7513 +-1.11331,42.64427,8,2,11,4,25,7,3.65,27.5,fr,25771,0,1062737,1,1,Active Shallow Crust,240.0009,58.01281,0.0,02/11/0008 +-1.11331,42.64427,1652,5,11,21,11,24,3.75,5.0,fr,25772,33,1062744,1,3,Active Shallow Crust,0.0,89.98969,0.0,05/11/1652 +-1.11331,42.64427,3000,11,13,13,1,16,3.75,5.0,fr,25773,59,1062744,1,3,Active Shallow Crust,0.0,89.98969,0.0,11/13/3000 +-1.11331,42.64427,6121,8,13,22,19,20,3.75,5.0,fr,25774,122,1062744,1,3,Active Shallow Crust,0.0,89.98969,0.0,08/13/6121 +-1.11331,42.64427,5527,11,8,1,38,28,3.75,15.0,fr,25775,110,1062748,1,2,Active Shallow Crust,240.0077,58.01771,0.0,11/08/5527 +-1.11331,42.64427,6316,1,11,4,46,18,3.75,15.0,fr,25776,126,1062748,1,2,Active Shallow Crust,240.0077,58.01771,0.0,01/11/6316 +-1.11331,42.64427,7310,1,16,21,27,19,3.75,5.0,fr,25777,146,1062750,1,1,Active Shallow Crust,0.0,89.98957,-90.0,01/16/7310 +-1.11331,42.64427,2679,3,13,14,38,17,3.75,5.0,fr,25778,53,1062753,1,2,Active Shallow Crust,128.897,89.96729,0.0,03/13/2679 +-1.11331,42.64427,385,3,24,2,6,0,3.75,5.0,fr,25779,7,1062753,1,2,Active Shallow Crust,128.897,89.96729,0.0,03/24/0385 +-1.11331,42.64427,1138,7,3,19,15,16,3.85,5.0,fr,25780,22,1062759,1,2,Active Shallow Crust,240.0106,57.99762,0.0,07/03/1138 +-1.11331,42.64427,4596,6,27,13,12,39,3.85,5.0,fr,25781,91,1062759,1,2,Active Shallow Crust,240.0106,57.99762,0.0,06/27/4596 +-1.11331,42.64427,7512,7,11,17,28,12,3.85,27.5,fr,25782,150,1062761,1,1,Active Shallow Crust,240.0106,57.99762,0.0,07/11/7512 +-1.11331,42.64427,6913,4,21,6,45,35,3.95,5.0,fr,25783,138,1062768,1,1,Active Shallow Crust,0.0,89.98947,0.0,04/21/6913 +-1.11331,42.64427,2024,11,8,1,21,39,3.95,15.0,fr,25784,40,1062769,1,1,Active Shallow Crust,0.0,89.98947,0.0,11/08/2024 +-1.11331,42.64427,7284,2,10,13,47,12,3.95,5.0,fr,25785,145,1062771,1,1,Active Shallow Crust,240.0191,58.00475,0.0,02/10/7284 +-1.11331,42.64427,5105,2,26,10,37,35,3.95,15.0,fr,25786,102,1062772,1,1,Active Shallow Crust,240.0191,58.00475,0.0,02/26/5105 +-1.11331,42.64427,2712,10,30,11,35,39,5.65,27.5,fr,25787,54,1062974,1,1,Active Shallow Crust,359.9999,89.99008,0.0,10/30/2712 +4.01191,41.14655,7865,1,22,1,1,48,3.55,15.0,fr,25788,157,1063207,1,1,Active Shallow Crust,0.0,89.99232,-90.0,01/22/7865 +4.01191,41.14655,7131,9,18,13,55,19,3.65,5.0,fr,25789,142,1063221,1,1,Active Shallow Crust,128.9008,89.96342,0.0,09/18/7131 +4.01191,41.14655,2916,7,17,20,35,52,3.75,5.0,fr,25790,58,1063224,1,1,Active Shallow Crust,0.0,89.98794,0.0,07/17/2916 +4.01191,41.14655,6792,10,7,4,13,34,4.55,15.0,fr,25791,135,1063321,1,1,Active Shallow Crust,0.0,89.99039,0.0,10/07/6792 +7.31371,50.66613,5121,3,18,5,27,43,3.55,5.0,fr,25792,102,1063680,1,4,Active Shallow Crust,0.0,89.98721,0.0,03/18/5121 +7.31371,50.66613,6963,2,10,1,12,2,3.55,5.0,fr,25793,139,1063680,1,4,Active Shallow Crust,0.0,89.98721,0.0,02/10/6963 +7.31371,50.66613,8780,3,26,13,49,40,3.55,5.0,fr,25794,175,1063680,1,4,Active Shallow Crust,0.0,89.98721,0.0,03/26/8780 +7.31371,50.66613,7239,7,20,14,3,26,3.55,5.0,fr,25795,144,1063680,1,4,Active Shallow Crust,0.0,89.98721,0.0,07/20/7239 +7.31371,50.66613,4381,5,27,8,15,14,3.55,15.0,fr,25796,87,1063684,1,1,Active Shallow Crust,240.0125,57.99865,0.0,05/27/4381 +7.31371,50.66613,5230,12,22,17,1,27,3.55,27.5,fr,25797,104,1063688,1,1,Active Shallow Crust,0.0,89.98707,-90.0,12/22/5230 +7.31371,50.66613,177,3,13,16,43,20,3.65,5.0,fr,25798,3,1063692,1,2,Active Shallow Crust,0.0,89.98861,0.0,03/13/0177 +7.31371,50.66613,719,9,7,19,48,31,3.65,5.0,fr,25799,14,1063692,1,2,Active Shallow Crust,0.0,89.98861,0.0,09/07/0719 +7.31371,50.66613,5862,2,23,1,45,46,3.65,27.5,fr,25800,117,1063694,1,1,Active Shallow Crust,0.0,89.98861,0.0,02/23/5862 +7.31371,50.66613,3257,7,7,22,34,5,3.75,5.0,fr,25801,65,1063704,1,1,Active Shallow Crust,0.0,89.98985,0.0,07/07/3257 +7.31371,50.66613,6525,10,20,3,19,55,3.75,15.0,fr,25802,130,1063705,1,1,Active Shallow Crust,0.0,89.98985,0.0,10/20/6525 +7.31371,50.66613,2542,6,11,15,17,17,3.75,27.5,fr,25803,50,1063709,1,1,Active Shallow Crust,240.0085,58.01787,0.0,06/11/2542 +7.31371,50.66613,8874,6,10,1,7,0,3.85,5.0,fr,25804,177,1063719,1,2,Active Shallow Crust,240.0121,57.99774,0.0,06/10/8874 +7.31371,50.66613,9088,7,26,20,22,23,3.85,5.0,fr,25805,181,1063719,1,2,Active Shallow Crust,240.0121,57.99774,0.0,07/26/9088 +7.31371,50.66613,3878,6,12,12,53,52,3.95,5.0,fr,25806,77,1063728,1,1,Active Shallow Crust,0.0,89.99194,0.0,06/12/3878 +7.31371,50.66613,1142,2,13,13,44,22,3.95,5.0,fr,25807,22,1063737,1,1,Active Shallow Crust,128.9008,89.99194,0.0,02/13/1142 +7.31371,50.66613,7813,11,12,19,46,20,4.05,5.0,fr,25808,156,1063746,1,1,Active Shallow Crust,0.0,89.98909,-90.0,11/12/7813 +7.31371,50.66613,3438,5,12,0,50,23,4.05,15.0,fr,25809,68,1063750,1,1,Active Shallow Crust,128.8889,89.99461,0.0,05/12/3438 +7.31371,50.66613,2902,3,6,23,58,16,4.35,5.0,fr,25810,58,1063776,1,2,Active Shallow Crust,0.0,89.98982,0.0,03/06/2902 +7.31371,50.66613,4441,9,3,23,22,12,4.35,5.0,fr,25811,88,1063776,1,2,Active Shallow Crust,0.0,89.98982,0.0,09/03/4441 +7.31371,50.66613,7081,8,8,13,24,39,4.45,5.0,fr,25812,141,1063788,1,1,Active Shallow Crust,0.0,89.99093,0.0,08/08/7081 +7.31371,50.66613,2876,10,17,9,40,27,4.55,5.0,fr,25813,57,1063803,1,1,Active Shallow Crust,240.0106,57.99799,0.0,10/17/2876 +7.31371,50.66613,8657,11,30,9,35,33,4.75,15.0,fr,25814,173,1063825,1,1,Active Shallow Crust,0.0,89.99036,0.0,11/30/8657 +0.28643,41.69315,6776,2,13,20,2,24,3.65,5.0,fr,25815,135,1064172,1,1,Active Shallow Crust,0.0,89.98994,0.0,02/13/6776 +0.28643,41.69315,2555,1,8,7,17,34,3.95,5.0,fr,25816,51,1064208,1,1,Active Shallow Crust,0.0,89.98991,0.0,01/08/2555 +0.28643,41.69315,4979,4,5,0,28,52,3.95,5.0,fr,25817,99,1064211,1,1,Active Shallow Crust,240.0191,58.00486,0.0,04/05/4979 +0.28643,41.69315,7873,4,24,17,50,35,4.45,5.0,fr,25818,157,1064268,1,1,Active Shallow Crust,0.0,89.98998,0.0,04/24/7873 +-3.66744,44.15294,7989,12,28,15,53,17,4.15,5.0,fr,25819,159,1064712,1,1,Active Shallow Crust,0.0,89.98912,0.0,12/28/7989 +6.49562,51.3053,6839,10,4,19,23,30,3.55,5.0,fr,25820,136,1065123,1,1,Active Shallow Crust,240.0137,57.99712,0.0,10/04/6839 +6.49562,51.3053,1859,11,16,2,28,14,3.65,5.0,fr,25821,37,1065132,1,1,Active Shallow Crust,0.0,89.98876,0.0,11/16/1859 +6.49562,51.3053,2760,2,18,13,53,20,3.65,5.0,fr,25822,55,1065138,1,1,Active Shallow Crust,0.0,89.98863,-90.0,02/18/2760 +6.49562,51.3053,5449,7,4,2,11,34,3.75,5.0,fr,25823,108,1065150,1,1,Active Shallow Crust,0.0,89.98987,-90.0,07/04/5449 +6.49562,51.3053,4752,3,11,8,40,32,3.95,5.0,fr,25824,95,1065168,1,1,Active Shallow Crust,0.0,89.98807,0.0,03/11/4752 +6.49562,51.3053,4266,7,8,8,32,24,3.95,15.0,fr,25825,85,1065169,1,1,Active Shallow Crust,0.0,89.98807,0.0,07/08/4266 +6.49562,51.3053,2877,7,26,23,12,5,4.15,15.0,fr,25826,57,1065193,1,1,Active Shallow Crust,0.0,89.99052,0.0,07/26/2877 +6.49562,51.3053,8414,1,1,10,13,14,4.25,5.0,fr,25827,168,1065204,1,1,Active Shallow Crust,0.0,89.98873,0.0,01/01/8414 +6.49562,51.3053,5948,6,27,6,33,51,4.95,5.0,fr,25828,118,1065288,1,1,Active Shallow Crust,0.0,89.98994,0.0,06/27/5948 +6.49562,51.3053,4744,4,13,13,25,14,5.15,27.5,fr,25829,94,1065323,1,1,Active Shallow Crust,128.8811,89.99123,0.0,04/13/4744 +4.57196,41.49511,1567,11,21,13,54,6,3.55,5.0,fr,25830,31,1065600,1,1,Active Shallow Crust,0.0,89.99245,0.0,11/21/1567 +4.57196,41.49511,8278,8,27,23,53,3,3.65,5.0,fr,25831,165,1065612,1,1,Active Shallow Crust,0.0,89.99327,0.0,08/27/8278 +4.57196,41.49511,8698,8,22,10,59,37,3.65,15.0,fr,25832,173,1065613,1,1,Active Shallow Crust,0.0,89.99327,0.0,08/22/8698 +4.57196,41.49511,2,3,4,3,7,5,3.85,5.0,fr,25833,0,1065636,1,1,Active Shallow Crust,0.0,89.9893,0.0,03/04/0002 +4.57196,41.49511,9800,4,4,6,27,26,3.85,15.0,fr,25834,195,1065640,1,1,Active Shallow Crust,240.0102,57.99791,0.0,04/04/9800 +4.57196,41.49511,1417,1,4,7,57,55,4.25,5.0,fr,25835,28,1065690,1,1,Active Shallow Crust,0.0,89.98976,-90.0,01/04/1417 +7.59827,49.58023,3244,10,13,19,37,49,3.55,27.5,fr,25836,64,1066082,1,1,Active Shallow Crust,0.0,89.98692,0.0,10/13/3244 +7.59827,49.58023,7683,2,19,15,6,5,3.65,5.0,fr,25837,153,1066092,1,1,Active Shallow Crust,0.0,89.98834,0.0,02/19/7683 +7.59827,49.58023,6178,7,16,20,51,21,3.75,5.0,fr,25838,123,1066113,1,1,Active Shallow Crust,128.8968,89.96703,0.0,07/16/6178 +7.59827,49.58023,4386,11,28,7,28,17,4.25,27.5,fr,25839,87,1066169,1,1,Active Shallow Crust,240.008,57.99442,0.0,11/28/4386 +7.59827,49.58023,8399,12,14,13,28,24,4.45,5.0,fr,25840,167,1066194,1,1,Active Shallow Crust,0.0,89.99062,-90.0,12/14/8399 +2.74666,50.39623,5589,7,10,13,29,47,3.55,5.0,fr,25841,111,1066569,1,2,Active Shallow Crust,128.8966,89.99358,0.0,07/10/5589 +2.74666,50.39623,780,9,5,12,42,0,3.55,5.0,fr,25842,15,1066569,1,2,Active Shallow Crust,128.8966,89.99358,0.0,09/05/0780 +2.74666,50.39623,1942,10,15,1,56,59,3.75,27.5,fr,25843,38,1066586,1,1,Active Shallow Crust,0.0,89.98978,0.0,10/15/1942 +2.74666,50.39623,5888,9,6,3,41,12,3.85,5.0,fr,25844,117,1066596,1,1,Active Shallow Crust,0.0,89.9909,0.0,09/06/5888 +2.74666,50.39623,2373,9,19,3,44,18,3.95,15.0,fr,25845,47,1066609,1,1,Active Shallow Crust,0.0,89.98986,0.0,09/19/2373 +2.74666,50.39623,3269,6,14,9,31,1,3.95,27.5,fr,25846,65,1066613,1,1,Active Shallow Crust,240.0203,58.00511,0.0,06/14/3269 +2.74666,50.39623,7619,8,27,3,18,31,3.95,15.0,fr,25847,152,1066618,1,1,Active Shallow Crust,128.9,89.99392,0.0,08/27/7619 +2.74666,50.39623,4151,9,11,16,53,48,4.25,5.0,fr,25848,83,1066644,1,1,Active Shallow Crust,0.0,89.98995,0.0,09/11/4151 +2.74666,50.39623,5130,12,3,5,49,48,4.45,5.0,fr,25849,102,1066668,1,1,Active Shallow Crust,0.0,89.98974,0.0,12/03/5130 +2.74666,50.39623,9753,7,25,10,5,32,4.75,27.5,fr,25850,195,1066706,1,1,Active Shallow Crust,0.0,89.99031,0.0,07/25/9753 +-2.27609,47.45949,8607,4,2,2,42,4,3.55,5.0,fr,25851,172,1067040,1,2,Active Shallow Crust,0.0,89.98978,0.0,04/02/8607 +-2.27609,47.45949,966,4,6,1,41,58,3.55,5.0,fr,25852,19,1067040,1,2,Active Shallow Crust,0.0,89.98978,0.0,04/06/0966 +-2.27609,47.45949,5659,6,24,12,43,34,3.75,27.5,fr,25853,113,1067069,1,1,Active Shallow Crust,240.0082,58.01797,0.0,06/24/5659 +-2.27609,47.45949,8757,11,8,23,40,40,4.15,15.0,fr,25854,175,1067119,1,2,Active Shallow Crust,0.0,89.98963,-90.0,11/08/8757 +-2.27609,47.45949,6218,4,1,22,37,17,4.15,15.0,fr,25855,124,1067119,1,2,Active Shallow Crust,0.0,89.98963,-90.0,04/01/6218 +-2.27609,47.45949,9101,11,30,22,6,46,4.25,5.0,fr,25856,182,1067124,1,1,Active Shallow Crust,0.0,89.98934,0.0,11/30/9101 +-2.27609,47.45949,1142,7,28,6,17,19,4.45,5.0,fr,25857,22,1067148,1,1,Active Shallow Crust,0.0,89.99033,0.0,07/28/1142 +-2.27609,47.45949,1596,8,14,1,30,12,4.55,5.0,fr,25858,31,1067163,1,1,Active Shallow Crust,240.0096,57.99722,0.0,08/14/1596 +-2.27609,47.45949,2355,8,16,20,4,9,4.85,5.0,fr,25859,47,1067199,1,1,Active Shallow Crust,240.0175,58.0023,0.0,08/16/2355 +-2.27609,47.45949,9253,8,17,0,59,43,4.85,5.0,fr,25860,185,1067202,1,1,Active Shallow Crust,0.0,89.98996,-90.0,08/17/9253 +4.22022,48.51792,7312,2,8,17,5,55,3.65,15.0,fr,25861,146,1067536,1,1,Active Shallow Crust,240.0016,58.0132,0.0,02/08/7312 +4.22022,48.51792,4315,10,17,16,18,16,4.05,5.0,fr,25862,86,1067583,1,1,Active Shallow Crust,240.0062,58.00589,0.0,10/17/4315 +4.22022,48.51792,6041,2,13,11,41,3,4.15,5.0,fr,25863,120,1067592,1,1,Active Shallow Crust,0.0,89.98996,0.0,02/13/6041 +4.22022,48.51792,1888,2,19,5,35,47,4.25,5.0,fr,25864,37,1067604,1,1,Active Shallow Crust,0.0,89.99105,0.0,02/19/1888 +4.22022,48.51792,1546,2,9,23,13,47,4.65,15.0,fr,25865,30,1067662,1,1,Active Shallow Crust,128.8905,89.98686,0.0,02/09/1546 +-3.14335,48.19529,5584,4,3,5,9,48,3.55,5.0,fr,25866,111,1068000,1,1,Active Shallow Crust,0.0,89.98991,0.0,04/03/5584 +-3.14335,48.19529,970,5,18,22,47,22,3.55,5.0,fr,25867,19,1068006,1,1,Active Shallow Crust,0.0,89.9898,-90.0,05/18/0970 +-3.14335,48.19529,8255,4,1,18,39,20,3.65,5.0,fr,25868,165,1068012,1,2,Active Shallow Crust,0.0,89.99101,0.0,04/01/8255 +-3.14335,48.19529,1321,5,13,9,27,57,3.65,5.0,fr,25869,26,1068012,1,2,Active Shallow Crust,0.0,89.99101,0.0,05/13/1321 +-3.14335,48.19529,4341,4,13,1,50,0,3.65,5.0,fr,25870,86,1068021,1,1,Active Shallow Crust,128.9007,89.96355,0.0,04/13/4341 +-3.14335,48.19529,6897,7,12,7,39,50,4.05,5.0,fr,25871,137,1068060,1,2,Active Shallow Crust,0.0,89.99055,0.0,07/12/6897 +-3.14335,48.19529,3292,10,1,4,9,34,4.05,5.0,fr,25872,65,1068060,1,2,Active Shallow Crust,0.0,89.99055,0.0,10/01/3292 +-3.14335,48.19529,8468,1,10,22,20,58,4.25,5.0,fr,25873,169,1068084,1,1,Active Shallow Crust,0.0,89.98949,0.0,01/10/8468 +-3.14335,48.19529,251,1,19,3,2,5,4.35,5.0,fr,25874,5,1068096,1,1,Active Shallow Crust,0.0,89.99063,0.0,01/19/0251 +-3.14335,48.19529,6150,2,22,3,11,20,4.45,15.0,fr,25875,122,1068109,1,1,Active Shallow Crust,0.0,89.99046,0.0,02/22/6150 +-3.14335,48.19529,5522,1,7,14,4,18,4.55,15.0,fr,25876,110,1068121,1,1,Active Shallow Crust,0.0,89.99043,0.0,01/07/5522 +-3.14335,48.19529,8139,12,14,12,25,36,4.55,15.0,fr,25877,162,1068124,1,1,Active Shallow Crust,240.0098,57.9975,0.0,12/14/8139 +-3.14335,48.19529,6952,10,6,4,26,19,5.75,5.0,fr,25878,139,1068267,1,1,Active Shallow Crust,240.0433,57.99985,0.0,10/06/6952 +5.10556,50.51289,4310,12,6,14,9,54,3.55,15.0,fr,25879,86,1068481,1,1,Active Shallow Crust,0.0,89.98717,0.0,12/06/4310 +5.10556,50.51289,8306,12,9,19,49,55,3.55,15.0,fr,25880,166,1068484,1,1,Active Shallow Crust,240.0132,57.99805,0.0,12/09/8306 +5.10556,50.51289,1679,10,20,20,37,10,3.65,15.0,fr,25881,33,1068493,1,1,Active Shallow Crust,0.0,89.98857,0.0,10/20/1679 +5.10556,50.51289,2827,11,16,6,12,49,3.75,5.0,fr,25882,56,1068504,1,1,Active Shallow Crust,0.0,89.98981,0.0,11/16/2827 +5.10556,50.51289,7950,3,5,13,25,58,3.85,5.0,fr,25883,158,1068516,1,1,Active Shallow Crust,0.0,89.99092,0.0,03/05/7950 +5.10556,50.51289,7535,6,15,11,47,5,3.95,15.0,fr,25884,150,1068529,1,1,Active Shallow Crust,0.0,89.99191,0.0,06/15/7535 +5.10556,50.51289,531,10,30,5,26,56,3.95,5.0,fr,25885,10,1068537,1,1,Active Shallow Crust,128.8997,89.99393,0.0,10/30/0531 +5.10556,50.51289,3951,11,1,22,52,17,4.05,5.0,fr,25886,79,1068540,1,1,Active Shallow Crust,0.0,89.98918,0.0,11/01/3951 +5.10556,50.51289,4196,6,4,6,40,29,4.05,15.0,fr,25887,83,1068541,1,1,Active Shallow Crust,0.0,89.98918,0.0,06/04/4196 +5.10556,50.51289,2080,1,10,1,46,18,4.05,27.5,fr,25888,41,1068542,1,1,Active Shallow Crust,0.0,89.98918,0.0,01/10/2080 +5.10556,50.51289,8330,6,6,12,7,29,4.05,5.0,fr,25889,166,1068543,1,1,Active Shallow Crust,240.0063,58.00637,0.0,06/06/8330 +5.10556,50.51289,567,5,23,18,22,16,4.35,5.0,fr,25890,11,1068579,1,1,Active Shallow Crust,240.0091,57.99635,0.0,05/23/0567 +5.10556,50.51289,37,7,27,18,39,37,5.05,27.5,fr,25891,0,1068662,1,1,Active Shallow Crust,0.0,89.98973,0.0,07/27/0037 +2.48967,42.79889,2233,6,2,14,53,58,3.55,5.0,fr,25892,44,1068960,1,4,Active Shallow Crust,0.0,89.9889,0.0,06/02/2233 +2.48967,42.79889,5965,12,10,21,20,5,3.55,5.0,fr,25893,119,1068960,1,4,Active Shallow Crust,0.0,89.9889,0.0,12/10/5965 +2.48967,42.79889,101,12,22,16,55,51,3.55,5.0,fr,25894,2,1068960,1,4,Active Shallow Crust,0.0,89.9889,0.0,12/22/0101 +2.48967,42.79889,650,7,19,13,0,17,3.55,5.0,fr,25895,12,1068960,1,4,Active Shallow Crust,0.0,89.9889,0.0,07/19/0650 +2.48967,42.79889,2033,2,23,4,1,13,3.55,5.0,fr,25896,40,1068966,1,1,Active Shallow Crust,0.0,89.98877,-90.0,02/23/2033 +2.48967,42.79889,8396,12,9,21,24,37,3.65,5.0,fr,25897,167,1068972,1,5,Active Shallow Crust,0.0,89.9901,0.0,12/09/8396 +2.48967,42.79889,4510,1,11,22,54,4,3.65,5.0,fr,25898,90,1068972,1,5,Active Shallow Crust,0.0,89.9901,0.0,01/11/4510 +2.48967,42.79889,2358,7,4,0,39,3,3.65,5.0,fr,25899,47,1068972,1,5,Active Shallow Crust,0.0,89.9901,0.0,07/04/2358 +2.48967,42.79889,1613,9,24,18,11,8,3.65,5.0,fr,25900,32,1068972,1,5,Active Shallow Crust,0.0,89.9901,0.0,09/24/1613 +2.48967,42.79889,2366,2,10,13,43,43,3.65,5.0,fr,25901,47,1068972,1,5,Active Shallow Crust,0.0,89.9901,0.0,02/10/2366 +2.48967,42.79889,9247,12,6,8,36,34,3.65,5.0,fr,25902,184,1068975,1,1,Active Shallow Crust,240.0005,58.01319,0.0,12/06/9247 +2.48967,42.79889,2193,7,3,20,15,44,3.65,5.0,fr,25903,43,1068981,1,1,Active Shallow Crust,128.9004,89.96346,0.0,07/03/2193 +2.48967,42.79889,9575,3,13,17,11,42,3.75,5.0,fr,25904,191,1068984,1,1,Active Shallow Crust,0.0,89.99118,0.0,03/13/9575 +2.48967,42.79889,4298,6,19,2,11,59,3.75,15.0,fr,25905,85,1068985,1,2,Active Shallow Crust,0.0,89.99118,0.0,06/19/4298 +2.48967,42.79889,1238,3,3,21,6,1,3.75,15.0,fr,25906,24,1068985,1,2,Active Shallow Crust,0.0,89.99118,0.0,03/03/1238 +2.48967,42.79889,6595,10,20,18,37,7,3.85,5.0,fr,25907,131,1068996,1,1,Active Shallow Crust,0.0,89.98952,0.0,10/20/6595 +2.48967,42.79889,5197,11,30,12,8,41,3.95,5.0,fr,25908,103,1069008,1,3,Active Shallow Crust,0.0,89.99066,0.0,11/30/5197 +2.48967,42.79889,5986,11,18,0,25,43,3.95,5.0,fr,25909,119,1069008,1,3,Active Shallow Crust,0.0,89.99066,0.0,11/18/5986 +2.48967,42.79889,1434,11,12,4,37,27,3.95,5.0,fr,25910,28,1069008,1,3,Active Shallow Crust,0.0,89.99066,0.0,11/12/1434 +2.48967,42.79889,9801,5,12,9,15,16,3.95,5.0,fr,25911,196,1069014,1,2,Active Shallow Crust,0.0,89.99055,-90.0,05/12/9801 +2.48967,42.79889,2569,2,21,10,16,7,3.95,5.0,fr,25912,51,1069014,1,2,Active Shallow Crust,0.0,89.99055,-90.0,02/21/2569 +2.48967,42.79889,7738,8,12,6,46,27,4.05,5.0,fr,25913,154,1069020,1,1,Active Shallow Crust,0.0,89.9896,0.0,08/12/7738 +2.48967,42.79889,3485,8,30,10,21,29,4.05,15.0,fr,25914,69,1069030,1,1,Active Shallow Crust,128.8905,89.99376,0.0,08/30/3485 +2.48967,42.79889,3293,7,24,15,36,8,4.15,5.0,fr,25915,65,1069032,1,1,Active Shallow Crust,0.0,89.99073,0.0,07/24/3293 +2.48967,42.79889,451,6,28,20,44,18,4.15,5.0,fr,25916,9,1069035,1,1,Active Shallow Crust,240.0077,57.99707,0.0,06/28/0451 +2.48967,42.79889,1709,1,29,16,38,10,4.25,5.0,fr,25917,34,1069044,1,1,Active Shallow Crust,0.0,89.99008,0.0,01/29/1709 +2.48967,42.79889,1358,8,7,17,1,16,4.75,5.0,fr,25918,27,1069107,1,1,Active Shallow Crust,240.0062,58.00425,0.0,08/07/1358 +2.48967,42.79889,8775,1,9,17,38,50,4.85,15.0,fr,25919,175,1069123,1,1,Active Shallow Crust,0.0,89.98994,-90.0,01/09/8775 +2.48967,42.79889,8440,8,12,9,18,59,5.05,5.0,fr,25920,168,1069143,1,1,Active Shallow Crust,240.0203,57.9972,0.0,08/12/8440 +5.68989,44.45313,4817,11,19,3,39,31,3.55,5.0,fr,25921,96,1069443,1,1,Active Shallow Crust,240.0115,57.99823,0.0,11/19/4817 +5.68989,44.45313,2946,2,4,19,45,11,3.55,5.0,fr,25922,58,1069449,1,1,Active Shallow Crust,128.8962,89.99281,0.0,02/04/2946 +5.68989,44.45313,5852,8,31,16,22,33,3.65,5.0,fr,25923,117,1069452,1,1,Active Shallow Crust,0.0,89.98717,0.0,08/31/5852 +5.68989,44.45313,6614,10,24,1,37,12,3.65,5.0,fr,25924,132,1069458,1,1,Active Shallow Crust,0.0,89.98702,-90.0,10/24/6614 +5.68989,44.45313,9088,12,10,17,2,3,3.75,15.0,fr,25925,181,1069465,1,1,Active Shallow Crust,0.0,89.98856,0.0,12/10/9088 +5.68989,44.45313,2379,4,27,10,59,8,3.85,5.0,fr,25926,47,1069479,1,1,Active Shallow Crust,240.0107,57.99783,0.0,04/27/2379 +5.68989,44.45313,647,7,19,0,21,18,3.85,5.0,fr,25927,12,1069482,1,1,Active Shallow Crust,0.0,89.98969,-90.0,07/19/0647 +5.68989,44.45313,8342,5,17,20,40,36,4.15,5.0,fr,25928,166,1069512,1,1,Active Shallow Crust,0.0,89.98917,0.0,05/17/8342 +5.68989,44.45313,1980,8,18,15,7,3,4.45,15.0,fr,25929,39,1069549,1,1,Active Shallow Crust,0.0,89.98978,0.0,08/18/1980 +-0.905,48.10855,9496,12,10,20,37,50,3.55,5.0,fr,25930,189,1069920,1,1,Active Shallow Crust,0.0,89.9899,0.0,12/10/9496 +-0.905,48.10855,6131,6,26,4,17,56,3.55,15.0,fr,25931,122,1069924,1,1,Active Shallow Crust,240.0125,57.99822,0.0,06/26/6131 +-0.905,48.10855,5680,5,24,5,47,8,3.65,5.0,fr,25932,113,1069932,1,1,Active Shallow Crust,0.0,89.99025,0.0,05/24/5680 +-0.905,48.10855,7075,1,12,12,59,3,3.65,15.0,fr,25933,141,1069933,1,1,Active Shallow Crust,0.0,89.99025,0.0,01/12/7075 +-0.905,48.10855,8232,3,23,10,28,19,3.65,27.5,fr,25934,164,1069934,1,1,Active Shallow Crust,0.0,89.99025,0.0,03/23/8232 +-0.905,48.10855,2464,10,20,20,28,40,3.65,5.0,fr,25935,49,1069935,1,2,Active Shallow Crust,240.0013,58.01287,0.0,10/20/2464 +-0.905,48.10855,823,9,8,13,49,29,3.65,5.0,fr,25936,16,1069935,1,2,Active Shallow Crust,240.0013,58.01287,0.0,09/08/0823 +-0.905,48.10855,8102,9,19,6,55,50,3.65,5.0,fr,25937,162,1069938,1,1,Active Shallow Crust,0.0,89.99014,-90.0,09/19/8102 +-0.905,48.10855,5784,5,1,8,30,53,3.75,5.0,fr,25938,115,1069947,1,1,Active Shallow Crust,240.0084,58.01762,0.0,05/01/5784 +-0.905,48.10855,2341,3,4,8,47,17,3.75,15.0,fr,25939,46,1069948,1,1,Active Shallow Crust,240.0084,58.01762,0.0,03/04/2341 +-0.905,48.10855,196,6,6,16,34,29,3.85,5.0,fr,25940,3,1069956,1,1,Active Shallow Crust,0.0,89.98987,0.0,06/06/0196 +-0.905,48.10855,3318,5,22,5,30,8,3.85,15.0,fr,25941,66,1069960,1,1,Active Shallow Crust,240.0111,57.99784,0.0,05/22/3318 +-0.905,48.10855,4280,1,4,6,36,30,4.15,15.0,fr,25942,85,1069993,1,1,Active Shallow Crust,0.0,89.98988,0.0,01/04/4280 +-0.905,48.10855,1424,2,16,9,59,31,4.25,5.0,fr,25943,28,1070004,1,1,Active Shallow Crust,0.0,89.98985,0.0,02/16/1424 +-0.905,48.10855,1259,12,31,4,28,40,4.75,15.0,fr,25944,25,1070065,1,1,Active Shallow Crust,0.0,89.99006,0.0,12/31/1259 +7.65807,49.96158,4587,5,8,1,58,23,3.55,5.0,fr,25945,91,1070400,1,1,Active Shallow Crust,0.0,89.98702,0.0,05/08/4587 +7.65807,49.96158,1853,9,9,7,37,8,3.55,5.0,fr,25946,37,1070403,1,1,Active Shallow Crust,240.013,57.99744,0.0,09/09/1853 +7.65807,49.96158,6050,12,15,0,17,11,3.55,5.0,fr,25947,120,1070409,1,1,Active Shallow Crust,128.8963,89.99352,0.0,12/15/6050 +7.65807,49.96158,1798,4,18,22,27,1,3.65,5.0,fr,25948,35,1070412,1,3,Active Shallow Crust,0.0,89.98843,0.0,04/18/1798 +7.65807,49.96158,4051,9,3,12,50,7,3.65,5.0,fr,25949,81,1070412,1,3,Active Shallow Crust,0.0,89.98843,0.0,09/03/4051 +7.65807,49.96158,9817,3,28,11,25,43,3.65,5.0,fr,25950,196,1070412,1,3,Active Shallow Crust,0.0,89.98843,0.0,03/28/9817 +7.65807,49.96158,3205,1,24,3,44,21,3.65,5.0,fr,25951,64,1070418,1,1,Active Shallow Crust,0.0,89.9883,-90.0,01/24/3205 +7.65807,49.96158,560,6,17,9,37,24,3.75,5.0,fr,25952,11,1070427,1,1,Active Shallow Crust,240.0078,58.0179,0.0,06/17/0560 +7.65807,49.96158,4596,10,1,5,52,10,3.75,5.0,fr,25953,91,1070433,1,1,Active Shallow Crust,128.8962,89.96704,0.0,10/01/4596 +7.65807,49.96158,9152,7,7,14,37,51,3.85,5.0,fr,25954,183,1070436,1,2,Active Shallow Crust,0.0,89.99081,0.0,07/07/9152 +7.65807,49.96158,1344,4,10,23,13,27,3.85,5.0,fr,25955,26,1070436,1,2,Active Shallow Crust,0.0,89.99081,0.0,04/10/1344 +7.65807,49.96158,4161,10,15,14,37,47,3.95,15.0,fr,25956,83,1070449,1,1,Active Shallow Crust,0.0,89.99181,0.0,10/15/4161 +7.65807,49.96158,7073,5,23,18,37,59,4.05,5.0,fr,25957,141,1070469,1,1,Active Shallow Crust,128.8902,89.99271,0.0,05/23/7073 +7.65807,49.96158,6157,4,13,1,43,36,4.15,5.0,fr,25958,123,1070472,1,2,Active Shallow Crust,0.0,89.99024,0.0,04/13/6157 +7.65807,49.96158,4694,3,23,7,52,16,4.15,5.0,fr,25959,93,1070472,1,2,Active Shallow Crust,0.0,89.99024,0.0,03/23/4694 +7.65807,49.96158,3880,1,29,5,29,50,4.25,5.0,fr,25960,77,1070484,1,1,Active Shallow Crust,0.0,89.99131,0.0,01/29/3880 +7.65807,49.96158,7968,6,29,10,53,13,4.35,5.0,fr,25961,159,1070496,1,1,Active Shallow Crust,0.0,89.98967,0.0,06/29/7968 +7.65807,49.96158,712,10,31,21,26,44,4.45,27.5,fr,25962,14,1070513,1,1,Active Shallow Crust,240.0061,57.99482,0.0,10/31/0712 +7.65807,49.96158,4705,5,5,7,13,44,4.65,27.5,fr,25963,94,1070543,1,1,Active Shallow Crust,128.8898,89.98695,0.0,05/05/4705 +7.65807,49.96158,5080,11,28,20,9,49,4.75,5.0,fr,25964,101,1070544,1,1,Active Shallow Crust,0.0,89.99022,0.0,11/28/5080 +7.65807,49.96158,7606,1,7,20,32,32,5.65,15.0,fr,25965,152,1070653,1,1,Active Shallow Crust,0.0,89.99017,0.0,01/07/7606 +7.635469,49.98674,3596,5,14,6,55,43,6.75,10.17163,fr,25966,71,1070787,1,1,Active Shallow Crust,240.1456,57.99968,0.0,05/14/3596 +5.10496,49.89417,4479,6,14,21,56,40,3.55,5.0,fr,25967,89,1070880,1,1,Active Shallow Crust,0.0,89.98701,0.0,06/14/4479 +5.10496,49.89417,7637,10,9,18,29,20,3.55,15.0,fr,25968,152,1070884,1,1,Active Shallow Crust,240.012,57.99807,0.0,10/09/7637 +5.10496,49.89417,1459,5,22,13,41,4,3.65,5.0,fr,25969,29,1070892,1,1,Active Shallow Crust,0.0,89.98842,0.0,05/22/1459 +5.10496,49.89417,9355,1,6,19,57,58,3.65,5.0,fr,25970,187,1070898,1,1,Active Shallow Crust,0.0,89.98829,-90.0,01/06/9355 +2.08913,42.73478,1133,5,19,17,59,37,3.55,5.0,fr,25971,22,1071360,1,1,Active Shallow Crust,0.0,89.98889,0.0,05/19/1133 +2.08913,42.73478,9865,10,15,7,0,32,3.55,15.0,fr,25972,197,1071361,1,2,Active Shallow Crust,0.0,89.98889,0.0,10/15/9865 +2.08913,42.73478,4561,1,30,5,18,31,3.55,15.0,fr,25973,91,1071361,1,2,Active Shallow Crust,0.0,89.98889,0.0,01/30/4561 +2.08913,42.73478,2736,11,30,13,47,17,3.55,5.0,fr,25974,54,1071363,1,1,Active Shallow Crust,240.0116,57.99783,0.0,11/30/2736 +2.08913,42.73478,5411,3,16,22,18,20,3.55,5.0,fr,25975,108,1071366,1,1,Active Shallow Crust,0.0,89.98876,-90.0,03/16/5411 +2.08913,42.73478,7023,12,23,4,39,11,3.55,5.0,fr,25976,140,1071369,1,2,Active Shallow Crust,128.8968,89.99445,0.0,12/23/7023 +2.08913,42.73478,7786,2,22,6,4,48,3.55,5.0,fr,25977,155,1071369,1,2,Active Shallow Crust,128.8968,89.99445,0.0,02/22/7786 +2.08913,42.73478,1272,1,12,19,24,54,3.65,5.0,fr,25978,25,1071372,1,1,Active Shallow Crust,0.0,89.9901,0.0,01/12/1272 +2.08913,42.73478,923,4,21,3,51,34,3.65,15.0,fr,25979,18,1071373,1,1,Active Shallow Crust,0.0,89.9901,0.0,04/21/0923 +2.08913,42.73478,1101,2,3,10,32,24,3.65,5.0,fr,25980,22,1071378,1,1,Active Shallow Crust,0.0,89.98998,-90.0,02/03/1101 +2.08913,42.73478,785,5,3,1,55,22,3.75,5.0,fr,25981,15,1071384,1,1,Active Shallow Crust,0.0,89.99117,0.0,05/03/0785 +2.08913,42.73478,9334,10,6,13,56,7,3.75,15.0,fr,25982,186,1071385,1,1,Active Shallow Crust,0.0,89.99117,0.0,10/06/9334 +2.08913,42.73478,3305,1,22,7,54,29,3.75,5.0,fr,25983,66,1071387,1,1,Active Shallow Crust,240.008,58.01711,0.0,01/22/3305 +2.08913,42.73478,5216,12,21,6,20,35,3.75,5.0,fr,25984,104,1071390,1,1,Active Shallow Crust,0.0,89.99107,-90.0,12/21/5216 +2.08913,42.73478,4529,10,19,19,30,24,3.75,5.0,fr,25985,90,1071393,1,1,Active Shallow Crust,128.8976,89.96712,0.0,10/19/4529 +2.08913,42.73478,6612,1,12,18,51,4,3.85,5.0,fr,25986,132,1071396,1,1,Active Shallow Crust,0.0,89.98951,0.0,01/12/6612 +2.08913,42.73478,8361,11,16,16,13,32,3.95,5.0,fr,25987,167,1071408,1,1,Active Shallow Crust,0.0,89.99065,0.0,11/16/8361 +2.08913,42.73478,8986,10,18,12,51,46,3.95,15.0,fr,25988,179,1071415,1,1,Active Shallow Crust,0.0,89.99055,-90.0,10/18/8986 +2.08913,42.73478,8629,4,4,4,30,37,5.25,15.0,fr,25989,172,1071565,1,1,Active Shallow Crust,0.0,89.99006,0.0,04/04/8629 +2.089131,42.73478,1312,7,20,21,15,32,6.05,5.357596,fr,25990,26,1071660,1,1,Active Shallow Crust,0.0,89.99,0.0,07/20/1312 +-1.00472,41.68968,3695,2,26,2,39,29,3.85,15.0,fr,25991,73,1071877,1,1,Active Shallow Crust,0.0,89.98933,0.0,02/26/3695 +4.37038,41.46736,5025,2,13,10,24,12,3.65,15.0,fr,25992,100,1072333,1,2,Active Shallow Crust,0.0,89.99326,0.0,02/13/5025 +4.37038,41.46736,997,1,13,13,53,12,3.65,15.0,fr,25993,19,1072333,1,2,Active Shallow Crust,0.0,89.99326,0.0,01/13/0997 +4.37038,41.46736,3516,5,31,11,4,5,4.95,15.0,fr,25994,70,1072489,1,1,Active Shallow Crust,0.0,89.98944,0.0,05/31/3516 +5.47398,51.0533,1984,6,2,8,24,22,3.55,5.0,fr,25995,39,1072800,1,1,Active Shallow Crust,0.0,89.98732,0.0,06/02/1984 +5.47398,51.0533,852,6,30,13,30,44,3.55,5.0,fr,25996,17,1072803,1,1,Active Shallow Crust,240.0134,57.99812,0.0,06/30/0852 +5.47398,51.0533,9434,2,28,9,14,28,3.55,15.0,fr,25997,188,1072804,1,1,Active Shallow Crust,240.0134,57.99812,0.0,02/28/9434 +5.47398,51.0533,9408,12,9,21,9,43,3.75,15.0,fr,25998,188,1072825,1,1,Active Shallow Crust,0.0,89.98993,0.0,12/09/9408 +5.47398,51.0533,2321,12,27,4,38,15,3.75,27.5,fr,25999,46,1072826,1,1,Active Shallow Crust,0.0,89.98993,0.0,12/27/2321 +5.47398,51.0533,1924,7,11,14,59,18,3.75,5.0,fr,26000,38,1072830,1,2,Active Shallow Crust,0.0,89.98981,-90.0,07/11/1924 +5.47398,51.0533,8999,6,3,17,50,49,3.75,5.0,fr,26001,179,1072830,1,2,Active Shallow Crust,0.0,89.98981,-90.0,06/03/8999 +5.47398,51.0533,9499,8,17,15,40,2,3.75,15.0,fr,26002,189,1072831,1,1,Active Shallow Crust,0.0,89.98981,-90.0,08/17/9499 +5.47398,51.0533,959,6,12,5,40,48,3.75,5.0,fr,26003,19,1072833,1,2,Active Shallow Crust,128.8958,89.96757,0.0,06/12/0959 +5.47398,51.0533,8045,9,5,20,11,35,3.75,5.0,fr,26004,160,1072833,1,2,Active Shallow Crust,128.8958,89.96757,0.0,09/05/8045 +5.47398,51.0533,5917,10,14,18,58,44,3.85,5.0,fr,26005,118,1072836,1,2,Active Shallow Crust,0.0,89.99103,0.0,10/14/5917 +5.47398,51.0533,2405,2,26,9,13,7,3.85,5.0,fr,26006,48,1072836,1,2,Active Shallow Crust,0.0,89.99103,0.0,02/26/2405 +5.47398,51.0533,6682,7,19,2,25,44,3.85,15.0,fr,26007,133,1072837,1,1,Active Shallow Crust,0.0,89.99103,0.0,07/19/6682 +5.47398,51.0533,308,5,22,15,57,30,3.85,5.0,fr,26008,6,1072839,1,1,Active Shallow Crust,240.0112,57.99769,0.0,05/22/0308 +5.47398,51.0533,6980,1,17,16,6,1,3.85,5.0,fr,26009,139,1072845,1,1,Active Shallow Crust,128.8953,89.99327,0.0,01/17/6980 +5.47398,51.0533,965,3,30,3,2,45,3.95,5.0,fr,26010,19,1072848,1,1,Active Shallow Crust,0.0,89.988,0.0,03/30/0965 +5.47398,51.0533,251,4,26,8,25,43,3.95,5.0,fr,26011,5,1072857,1,1,Active Shallow Crust,128.8999,89.994,0.0,04/26/0251 +5.47398,51.0533,4657,12,4,3,53,43,4.05,5.0,fr,26012,93,1072860,1,2,Active Shallow Crust,0.0,89.9893,0.0,12/04/4657 +5.47398,51.0533,7052,2,1,20,1,10,4.05,5.0,fr,26013,141,1072860,1,2,Active Shallow Crust,0.0,89.9893,0.0,02/01/7052 +5.47398,51.0533,1720,7,30,4,31,15,4.25,5.0,fr,26014,34,1072884,1,2,Active Shallow Crust,0.0,89.98867,0.0,07/30/1720 +5.47398,51.0533,6371,1,17,3,38,24,4.25,5.0,fr,26015,127,1072884,1,2,Active Shallow Crust,0.0,89.98867,0.0,01/17/6371 +5.47398,51.0533,7988,3,10,3,12,37,4.25,5.0,fr,26016,159,1072887,1,1,Active Shallow Crust,240.0087,57.99395,0.0,03/10/7988 +5.47398,51.0533,1968,12,8,22,43,21,4.45,5.0,fr,26017,39,1072908,1,1,Active Shallow Crust,0.0,89.991,0.0,12/08/1968 +5.47398,51.0533,5238,9,26,15,1,2,4.75,15.0,fr,26018,104,1072945,1,1,Active Shallow Crust,0.0,89.99045,0.0,09/26/5238 +5.47398,51.0533,3792,11,11,11,10,5,5.05,5.0,fr,26019,75,1072989,1,1,Active Shallow Crust,128.883,89.99052,0.0,11/11/3792 +5.47398,51.0533,6379,2,20,22,36,39,5.25,5.0,fr,26020,127,1073004,1,1,Active Shallow Crust,0.0,89.99015,0.0,02/20/6379 +4.84056,47.58971,806,5,10,5,56,11,3.75,5.0,fr,26021,16,1073304,1,1,Active Shallow Crust,0.0,89.9892,0.0,05/10/0806 +4.84056,47.58971,9281,4,19,18,35,24,3.85,5.0,fr,26022,185,1073325,1,1,Active Shallow Crust,128.8946,89.99519,0.0,04/19/9281 +4.84056,47.58971,3831,12,6,5,46,38,3.95,27.5,fr,26023,76,1073330,1,1,Active Shallow Crust,0.0,89.99142,0.0,12/06/3831 +4.84056,47.58971,3026,3,11,13,17,14,4.05,15.0,fr,26024,60,1073341,1,1,Active Shallow Crust,0.0,89.98853,0.0,03/11/3026 +4.84056,47.58971,7489,5,16,8,57,40,4.15,5.0,fr,26025,149,1073355,1,1,Active Shallow Crust,240.0084,57.99747,0.0,05/16/7489 +4.84056,47.58971,9477,6,10,2,14,43,4.35,5.0,fr,26026,189,1073382,1,1,Active Shallow Crust,0.0,89.98904,-90.0,06/10/9477 +4.840566,47.58971,4419,1,25,22,22,56,6.35,7.567806,fr,26027,88,1073616,1,1,Active Shallow Crust,0.0,89.9901,0.0,01/25/4419 +-1.85223,47.08979,639,2,22,10,13,25,3.55,5.0,fr,26028,12,1073760,1,3,Active Shallow Crust,0.0,89.9897,0.0,02/22/0639 +-1.85223,47.08979,699,1,1,20,58,12,3.55,5.0,fr,26029,13,1073760,1,3,Active Shallow Crust,0.0,89.9897,0.0,01/01/0699 +-1.85223,47.08979,4317,3,8,6,29,29,3.55,5.0,fr,26030,86,1073760,1,3,Active Shallow Crust,0.0,89.9897,0.0,03/08/4317 +-1.85223,47.08979,902,8,17,10,8,39,3.55,5.0,fr,26031,18,1073763,1,1,Active Shallow Crust,240.0123,57.99791,0.0,08/17/0902 +-1.85223,47.08979,5737,8,19,17,50,44,3.55,15.0,fr,26032,114,1073767,1,1,Active Shallow Crust,0.0,89.98959,-90.0,08/19/5737 +-1.85223,47.08979,9433,4,9,18,55,7,3.55,5.0,fr,26033,188,1073769,1,1,Active Shallow Crust,128.8961,89.994,0.0,04/09/9433 +-1.85223,47.08979,2602,6,20,17,33,13,3.55,15.0,fr,26034,52,1073770,1,1,Active Shallow Crust,128.8961,89.994,0.0,06/20/2602 +-1.85223,47.08979,8446,12,8,22,24,4,3.65,5.0,fr,26035,168,1073772,1,4,Active Shallow Crust,0.0,89.98929,0.0,12/08/8446 +-1.85223,47.08979,6922,9,9,14,46,40,3.65,5.0,fr,26036,138,1073772,1,4,Active Shallow Crust,0.0,89.98929,0.0,09/09/6922 +-1.85223,47.08979,125,7,31,18,45,42,3.65,5.0,fr,26037,2,1073772,1,4,Active Shallow Crust,0.0,89.98929,0.0,07/31/0125 +-1.85223,47.08979,3026,2,16,15,22,32,3.65,5.0,fr,26038,60,1073772,1,4,Active Shallow Crust,0.0,89.98929,0.0,02/16/3026 +-1.85223,47.08979,9537,11,14,6,57,36,3.65,15.0,fr,26039,190,1073773,1,1,Active Shallow Crust,0.0,89.98929,0.0,11/14/9537 +-1.85223,47.08979,1624,2,24,9,10,50,3.65,5.0,fr,26040,32,1073775,1,1,Active Shallow Crust,240.0009,58.0131,0.0,02/24/1624 +-1.85223,47.08979,5575,3,6,22,5,59,3.65,5.0,fr,26041,111,1073778,1,1,Active Shallow Crust,0.0,89.99072,-90.0,03/06/5575 +-1.85223,47.08979,5733,8,9,18,51,14,3.65,27.5,fr,26042,114,1073780,1,1,Active Shallow Crust,0.0,89.99072,-90.0,08/09/5733 +-1.85223,47.08979,4822,10,11,10,10,32,3.75,5.0,fr,26043,96,1073784,1,3,Active Shallow Crust,0.0,89.99046,0.0,10/11/4822 +-1.85223,47.08979,3886,9,22,4,44,8,3.75,5.0,fr,26044,77,1073784,1,3,Active Shallow Crust,0.0,89.99046,0.0,09/22/3886 +-1.85223,47.08979,5257,3,15,5,51,7,3.75,5.0,fr,26045,105,1073784,1,3,Active Shallow Crust,0.0,89.99046,0.0,03/15/5257 +-1.85223,47.08979,5329,9,15,20,59,53,3.75,27.5,fr,26046,106,1073786,1,1,Active Shallow Crust,0.0,89.99046,0.0,09/15/5329 +-1.85223,47.08979,5629,12,5,7,11,13,3.75,15.0,fr,26047,112,1073788,1,1,Active Shallow Crust,240.0082,58.01764,0.0,12/05/5629 +-1.85223,47.08979,3274,12,8,8,31,53,3.85,5.0,fr,26048,65,1073796,1,1,Active Shallow Crust,0.0,89.99028,0.0,12/08/3274 +-1.85223,47.08979,5024,10,20,11,39,59,3.85,5.0,fr,26049,100,1073799,1,1,Active Shallow Crust,240.0109,57.99788,0.0,10/20/5024 +-1.85223,47.08979,7873,12,3,5,50,27,3.95,5.0,fr,26050,157,1073808,1,1,Active Shallow Crust,0.0,89.99025,0.0,12/03/7873 +-1.85223,47.08979,3961,8,20,10,11,31,3.95,15.0,fr,26051,79,1073818,1,1,Active Shallow Crust,128.9002,89.99404,0.0,08/20/3961 +-1.85223,47.08979,2030,5,28,1,16,20,4.25,5.0,fr,26052,40,1073844,1,1,Active Shallow Crust,0.0,89.99004,0.0,05/28/2030 +-1.85223,47.08979,6225,11,25,1,52,22,4.25,15.0,fr,26053,124,1073854,1,1,Active Shallow Crust,128.8941,89.98096,0.0,11/25/6225 +-1.85223,47.08979,7292,10,4,19,58,44,4.45,5.0,fr,26054,145,1073868,1,1,Active Shallow Crust,0.0,89.99026,0.0,10/04/7292 +-1.85223,47.08979,294,3,7,2,50,22,4.55,5.0,fr,26055,5,1073880,1,2,Active Shallow Crust,0.0,89.99023,0.0,03/07/0294 +-1.85223,47.08979,8882,11,17,6,26,20,4.55,5.0,fr,26056,177,1073880,1,2,Active Shallow Crust,0.0,89.99023,0.0,11/17/8882 +-1.85223,47.08979,9969,7,12,11,45,45,4.65,5.0,fr,26057,199,1073892,1,1,Active Shallow Crust,0.0,89.98984,0.0,07/12/9969 +-1.85223,47.08979,4016,9,6,3,29,35,4.65,5.0,fr,26058,80,1073895,1,1,Active Shallow Crust,240.011,57.99435,0.0,09/06/4016 +-1.85223,47.08979,7109,12,24,18,8,3,4.65,27.5,fr,26059,142,1073900,1,1,Active Shallow Crust,0.0,89.99021,-90.0,12/24/7109 +-1.85223,47.08979,8843,6,23,17,1,43,4.85,15.0,fr,26060,176,1073917,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/23/8843 +-1.85223,47.08979,551,3,21,3,24,15,5.05,15.0,fr,26061,11,1073947,1,1,Active Shallow Crust,0.0,89.99012,-90.0,03/21/0551 +-1.85223,47.08979,3827,5,4,14,57,25,5.55,5.0,fr,26062,76,1074003,1,1,Active Shallow Crust,240.0332,57.99961,0.0,05/04/3827 +-1.85223,47.08979,9642,7,18,4,43,34,5.65,15.0,fr,26063,192,1074013,1,1,Active Shallow Crust,0.0,89.99005,0.0,07/18/9642 +2.57683,41.20383,1251,8,16,3,21,20,3.55,15.0,fr,26064,25,1074241,1,1,Active Shallow Crust,0.0,89.98862,0.0,08/16/1251 +2.57683,41.20383,9307,12,1,8,16,9,3.75,5.0,fr,26065,186,1074264,1,2,Active Shallow Crust,0.0,89.99096,0.0,12/01/9307 +2.57683,41.20383,5780,4,29,15,27,48,3.75,5.0,fr,26066,115,1074264,1,2,Active Shallow Crust,0.0,89.99096,0.0,04/29/5780 +2.57683,41.20383,9018,2,17,16,47,1,3.75,15.0,fr,26067,180,1074265,1,1,Active Shallow Crust,0.0,89.99096,0.0,02/17/9018 +2.57683,41.20383,2118,10,5,8,35,42,3.85,5.0,fr,26068,42,1074279,1,2,Active Shallow Crust,240.0106,57.99752,0.0,10/05/2118 +2.57683,41.20383,958,2,25,13,50,12,3.85,5.0,fr,26069,19,1074279,1,2,Active Shallow Crust,240.0106,57.99752,0.0,02/25/0958 +2.57683,41.20383,5826,12,23,14,37,34,3.85,5.0,fr,26070,116,1074285,1,1,Active Shallow Crust,128.8964,89.99329,0.0,12/23/5826 +2.57683,41.20383,4612,3,18,23,30,23,3.95,5.0,fr,26071,92,1074288,1,1,Active Shallow Crust,0.0,89.99043,0.0,03/18/4612 +2.57683,41.20383,712,8,6,12,11,27,3.95,15.0,fr,26072,14,1074289,1,1,Active Shallow Crust,0.0,89.99043,0.0,08/06/0712 +2.57683,41.20383,2704,1,26,2,11,37,4.15,5.0,fr,26073,54,1074315,1,1,Active Shallow Crust,240.0075,57.99688,0.0,01/26/2704 +2.57683,41.20383,7096,7,23,8,19,59,4.25,15.0,fr,26074,141,1074325,1,1,Active Shallow Crust,0.0,89.98983,0.0,07/23/7096 +2.57683,41.20383,7075,6,13,1,48,33,4.25,27.5,fr,26075,141,1074326,1,1,Active Shallow Crust,0.0,89.98983,0.0,06/13/7075 +2.57683,41.20383,6097,2,8,18,12,19,4.45,15.0,fr,26076,121,1074349,1,1,Active Shallow Crust,0.0,89.99058,0.0,02/08/6097 +6.20979,48.15281,4026,9,27,23,45,41,3.55,15.0,fr,26077,80,1074721,1,1,Active Shallow Crust,0.0,89.99327,0.0,09/27/4026 +6.20979,48.15281,6381,12,25,22,11,37,3.55,5.0,fr,26078,127,1074723,1,2,Active Shallow Crust,240.0125,57.99842,0.0,12/25/6381 +6.20979,48.15281,1487,5,19,17,36,30,3.55,5.0,fr,26079,29,1074723,1,2,Active Shallow Crust,240.0125,57.99842,0.0,05/19/1487 +6.20979,48.15281,8787,2,28,17,35,14,3.55,5.0,fr,26080,175,1074726,1,1,Active Shallow Crust,0.0,89.99319,-90.0,02/28/8787 +6.20979,48.15281,2595,3,16,16,52,57,3.65,5.0,fr,26081,51,1074732,1,2,Active Shallow Crust,0.0,89.98801,0.0,03/16/2595 +6.20979,48.15281,7006,7,18,8,32,38,3.65,5.0,fr,26082,140,1074732,1,2,Active Shallow Crust,0.0,89.98801,0.0,07/18/7006 +6.20979,48.15281,6212,7,7,3,26,22,3.75,5.0,fr,26083,124,1074747,1,1,Active Shallow Crust,240.0079,58.01722,0.0,07/07/6212 +6.20979,48.15281,5973,10,24,10,9,53,3.85,5.0,fr,26084,119,1074756,1,1,Active Shallow Crust,0.0,89.99047,0.0,10/24/5973 +6.20979,48.15281,5058,1,9,5,12,53,3.95,5.0,fr,26085,101,1074771,1,1,Active Shallow Crust,240.0201,58.00471,0.0,01/09/5058 +6.20979,48.15281,2953,10,26,20,59,3,4.15,15.0,fr,26086,59,1074799,1,1,Active Shallow Crust,0.0,89.98977,-90.0,10/26/2953 +6.20979,48.15281,9832,11,28,14,39,14,4.25,5.0,fr,26087,196,1074804,1,1,Active Shallow Crust,0.0,89.99098,0.0,11/28/9832 +6.20979,48.15281,4159,11,30,3,51,42,4.35,5.0,fr,26088,83,1074822,1,1,Active Shallow Crust,0.0,89.98916,-90.0,11/30/4159 +6.20979,48.15281,8350,12,21,3,49,30,4.45,15.0,fr,26089,166,1074829,1,1,Active Shallow Crust,0.0,89.99045,0.0,12/21/8350 +6.20979,48.15281,9310,4,25,18,37,15,5.45,15.0,fr,26090,186,1074955,1,1,Active Shallow Crust,0.0,89.99007,-90.0,04/25/9310 +1.13964,50.20926,9803,6,1,3,52,1,3.75,5.0,fr,26091,196,1076184,1,1,Active Shallow Crust,0.0,89.98975,0.0,06/01/9803 +1.13964,50.20926,201,8,9,3,3,17,3.85,5.0,fr,26092,4,1076196,1,1,Active Shallow Crust,0.0,89.98972,0.0,08/09/0201 +-3.22179,48.86445,6330,3,29,22,10,1,3.55,5.0,fr,26093,126,1076643,1,1,Active Shallow Crust,240.0124,57.99818,0.0,03/29/6330 +-3.22179,48.86445,5902,3,10,14,59,49,3.65,5.0,fr,26094,118,1076652,1,1,Active Shallow Crust,0.0,89.99113,0.0,03/10/5902 +-3.22179,48.86445,5529,8,21,3,3,49,3.75,5.0,fr,26095,110,1076664,1,1,Active Shallow Crust,0.0,89.98946,0.0,08/21/5529 +-3.22179,48.86445,2080,8,30,21,30,1,3.75,5.0,fr,26096,41,1076667,1,1,Active Shallow Crust,240.0085,58.01762,0.0,08/30/2080 +-3.22179,48.86445,7343,8,18,21,30,32,3.85,5.0,fr,26097,146,1076676,1,1,Active Shallow Crust,0.0,89.99061,0.0,08/18/7343 +-3.22179,48.86445,1073,1,22,14,59,53,3.95,5.0,fr,26098,21,1076688,1,1,Active Shallow Crust,0.0,89.98953,0.0,01/22/1073 +-3.22179,48.86445,7608,8,1,13,8,31,3.95,27.5,fr,26099,152,1076690,1,1,Active Shallow Crust,0.0,89.98953,0.0,08/01/7608 +-3.22179,48.86445,5683,8,13,14,4,7,4.05,5.0,fr,26100,113,1076700,1,1,Active Shallow Crust,0.0,89.99068,0.0,08/13/5683 +-3.22179,48.86445,8,2,14,20,42,11,4.05,27.5,fr,26101,0,1076711,1,1,Active Shallow Crust,128.8898,89.99347,0.0,02/14/0008 +-3.22179,48.86445,9808,12,23,10,23,23,4.15,27.5,fr,26102,196,1076714,1,1,Active Shallow Crust,0.0,89.99003,0.0,12/23/9808 +-3.22179,48.86445,2068,9,7,20,2,49,4.65,5.0,fr,26103,41,1076778,1,1,Active Shallow Crust,0.0,89.98959,-90.0,09/07/2068 +-3.22179,48.86445,4983,7,31,8,42,42,5.85,5.0,fr,26104,99,1076919,1,2,Active Shallow Crust,240.0504,58.00033,0.0,07/31/4983 +-3.22179,48.86445,3808,8,28,11,35,53,5.85,5.0,fr,26105,76,1076919,1,2,Active Shallow Crust,240.0504,58.00033,0.0,08/28/3808 +-5.05981,46.34954,9967,2,26,17,35,18,3.95,5.0,fr,26106,199,1077177,1,1,Active Shallow Crust,128.8992,89.99342,0.0,02/26/9967 +-5.05981,46.34954,1761,4,8,21,10,7,4.65,5.0,fr,26107,35,1077252,1,1,Active Shallow Crust,0.0,89.99019,0.0,04/08/1761 +7.53912,49.19708,5488,7,1,13,4,57,3.55,5.0,fr,26108,109,1077600,1,2,Active Shallow Crust,0.0,89.98682,0.0,07/01/5488 +7.53912,49.19708,5968,6,2,2,1,28,3.55,5.0,fr,26109,119,1077600,1,2,Active Shallow Crust,0.0,89.98682,0.0,06/02/5968 +7.53912,49.19708,3778,7,11,19,37,41,3.55,15.0,fr,26110,75,1077601,1,1,Active Shallow Crust,0.0,89.98682,0.0,07/11/3778 +7.53912,49.19708,8935,1,1,5,53,50,3.55,27.5,fr,26111,178,1077605,1,1,Active Shallow Crust,240.0127,57.99767,0.0,01/01/8935 +7.53912,49.19708,1142,8,24,22,12,21,3.55,5.0,fr,26112,22,1077609,1,1,Active Shallow Crust,128.8949,89.9967,0.0,08/24/1142 +7.53912,49.19708,6099,7,12,2,11,3,3.75,5.0,fr,26113,121,1077630,1,1,Active Shallow Crust,0.0,89.98941,-90.0,07/12/6099 +7.53912,49.19708,4182,4,8,23,15,13,3.85,5.0,fr,26114,83,1077639,1,1,Active Shallow Crust,240.0114,57.99725,0.0,04/08/4182 +7.53912,49.19708,923,1,28,1,37,9,3.95,15.0,fr,26115,18,1077649,1,1,Active Shallow Crust,0.0,89.99168,0.0,01/28/0923 +7.53912,49.19708,1874,8,3,10,15,21,4.25,5.0,fr,26116,37,1077684,1,1,Active Shallow Crust,0.0,89.99117,0.0,08/03/1874 +7.53912,49.19708,2326,10,10,22,10,45,4.45,27.5,fr,26117,46,1077716,1,1,Active Shallow Crust,0.0,89.99054,-90.0,10/10/2326 +7.53912,49.19708,9133,7,15,11,8,44,4.65,15.0,fr,26118,182,1077742,1,1,Active Shallow Crust,128.8899,89.98734,0.0,07/15/9133 +6.68438,49.47337,2714,8,12,15,23,39,3.65,5.0,fr,26119,54,1078092,1,1,Active Shallow Crust,0.0,89.98832,0.0,08/12/2714 +6.68438,49.47337,8676,10,2,22,34,14,4.05,5.0,fr,26120,173,1078146,1,1,Active Shallow Crust,0.0,89.98882,-90.0,10/02/8676 +9.05101,50.10898,2517,1,25,12,37,8,3.55,5.0,fr,26121,50,1078560,1,1,Active Shallow Crust,0.0,89.98707,0.0,01/25/2517 +9.05101,50.10898,9361,5,5,15,23,50,3.65,5.0,fr,26122,187,1078578,1,1,Active Shallow Crust,0.0,89.98834,-90.0,05/05/9361 +9.05101,50.10898,1028,9,9,18,51,5,4.05,5.0,fr,26123,20,1078620,1,1,Active Shallow Crust,0.0,89.99273,0.0,09/09/1028 +9.05101,50.10898,8065,5,18,1,37,55,5.15,5.0,fr,26124,161,1078752,1,1,Active Shallow Crust,0.0,89.98975,0.0,05/18/8065 +2.36381,48.42961,8192,10,6,8,29,37,3.75,27.5,fr,26125,163,1079072,1,1,Active Shallow Crust,0.0,89.98925,-90.0,10/06/8192 +2.36381,48.42961,8955,12,11,22,41,42,3.85,27.5,fr,26126,179,1079078,1,1,Active Shallow Crust,0.0,89.99052,0.0,12/11/8955 +2.36381,48.42961,4080,3,14,3,34,41,3.95,5.0,fr,26127,81,1079088,1,1,Active Shallow Crust,0.0,89.98945,0.0,03/14/4080 +2.36381,48.42961,5357,9,1,10,20,56,4.45,5.0,fr,26128,107,1079151,1,1,Active Shallow Crust,240.0057,57.99487,0.0,09/01/5357 +-1.55833,43.69931,9009,9,23,9,53,57,3.55,5.0,fr,26129,180,1079520,1,1,Active Shallow Crust,0.0,89.99089,0.0,09/23/9009 +-1.55833,43.69931,5797,4,4,20,51,36,3.55,5.0,fr,26130,115,1079529,1,1,Active Shallow Crust,128.8967,89.99362,0.0,04/04/5797 +-1.55833,43.69931,6032,4,7,6,16,52,3.95,5.0,fr,26131,120,1079568,1,1,Active Shallow Crust,0.0,89.98965,0.0,04/07/6032 +-1.55833,43.69931,6873,11,9,4,51,6,4.15,15.0,fr,26132,137,1079599,1,1,Active Shallow Crust,0.0,89.98984,-90.0,11/09/6873 +-1.55833,43.69931,3653,8,17,15,23,44,4.25,5.0,fr,26133,73,1079604,1,1,Active Shallow Crust,0.0,89.99023,0.0,08/17/3653 +-1.55833,43.69931,2190,7,17,6,26,19,4.25,5.0,fr,26134,43,1079610,1,1,Active Shallow Crust,0.0,89.99012,-90.0,07/17/2190 +3.73526,51.57061,8048,11,11,16,29,6,3.75,15.0,fr,26135,160,1080025,1,1,Active Shallow Crust,0.0,89.99004,0.0,11/11/8048 +3.73526,51.57061,6355,5,23,20,56,4,3.85,27.5,fr,26136,127,1080038,1,1,Active Shallow Crust,0.0,89.98891,0.0,05/23/6355 +3.73526,51.57061,9980,6,26,10,12,16,4.35,15.0,fr,26137,199,1080103,1,1,Active Shallow Crust,0.0,89.98991,-90.0,06/26/9980 +0.25938,51.60169,6655,3,27,7,2,32,3.55,5.0,fr,26138,133,1080483,1,1,Active Shallow Crust,240.0127,57.99829,0.0,03/27/6655 +-1.52069,49.66641,1755,6,12,1,27,27,3.55,15.0,fr,26139,35,1081441,1,1,Active Shallow Crust,0.0,89.99021,0.0,06/12/1755 +-1.52069,49.66641,8167,8,15,7,52,55,3.55,5.0,fr,26140,163,1081443,1,1,Active Shallow Crust,240.0123,57.99818,0.0,08/15/8167 +-1.52069,49.66641,4985,10,2,15,21,12,3.65,5.0,fr,26141,99,1081452,1,1,Active Shallow Crust,0.0,89.98982,0.0,10/02/4985 +-1.52069,49.66641,8606,11,8,4,17,17,3.65,15.0,fr,26142,172,1081456,1,1,Active Shallow Crust,240.0014,58.01273,0.0,11/08/8606 +-1.52069,49.66641,3190,9,20,7,33,12,3.85,5.0,fr,26143,63,1081476,1,1,Active Shallow Crust,0.0,89.9896,0.0,09/20/3190 +-1.52069,49.66641,1472,3,23,1,9,26,4.45,5.0,fr,26144,29,1081551,1,1,Active Shallow Crust,240.0061,57.99494,0.0,03/23/1472 +-1.52069,49.66641,9815,8,26,23,37,20,5.75,5.0,fr,26145,196,1081710,1,1,Active Shallow Crust,0.0,89.99003,-90.0,08/26/9815 +3.48763,49.91065,7774,12,2,20,20,45,3.55,15.0,fr,26146,155,1081930,1,1,Active Shallow Crust,128.8963,89.99351,0.0,12/02/7774 +3.48763,49.91065,1242,3,24,19,57,48,3.75,5.0,fr,26147,24,1081944,1,1,Active Shallow Crust,0.0,89.98969,0.0,03/24/1242 +3.48763,49.91065,2569,2,6,12,32,43,3.75,27.5,fr,26148,51,1081946,1,1,Active Shallow Crust,0.0,89.98969,0.0,02/06/2569 +3.48763,49.91065,401,5,1,11,23,26,3.95,5.0,fr,26149,8,1081974,1,1,Active Shallow Crust,0.0,89.98964,-90.0,05/01/0401 +3.48763,49.91065,2953,4,25,2,12,47,3.95,15.0,fr,26150,59,1081978,1,1,Active Shallow Crust,128.8998,89.99386,0.0,04/25/2953 +3.48763,49.91065,3259,5,27,2,38,49,4.15,5.0,fr,26151,65,1081992,1,1,Active Shallow Crust,0.0,89.99023,0.0,05/27/3259 +3.48763,49.91065,8230,6,18,23,48,43,4.45,27.5,fr,26152,164,1082030,1,1,Active Shallow Crust,0.0,89.98963,0.0,06/18/8230 +4.29248,45.70643,2248,3,4,1,42,24,3.55,15.0,fr,26153,44,1082401,1,1,Active Shallow Crust,0.0,89.99296,0.0,03/04/2248 +4.29248,45.70643,3288,1,25,13,22,28,3.55,15.0,fr,26154,65,1082407,1,1,Active Shallow Crust,0.0,89.99287,-90.0,01/25/3288 +4.29248,45.70643,3245,4,8,13,30,15,3.65,5.0,fr,26155,64,1082412,1,1,Active Shallow Crust,0.0,89.98745,0.0,04/08/3245 +4.29248,45.70643,5980,6,8,2,39,52,3.65,5.0,fr,26156,119,1082418,1,1,Active Shallow Crust,0.0,89.9873,-90.0,06/08/5980 +4.29248,45.70643,989,2,14,7,9,46,3.75,5.0,fr,26157,19,1082430,1,1,Active Shallow Crust,0.0,89.98869,-90.0,02/14/0989 +4.29248,45.70643,3084,2,20,10,59,37,4.05,15.0,fr,26158,61,1082461,1,1,Active Shallow Crust,0.0,89.98812,0.0,02/20/3084 +4.29248,45.70643,4353,1,14,14,0,2,4.25,5.0,fr,26159,87,1082484,1,1,Active Shallow Crust,0.0,89.99056,0.0,01/14/4353 +-1.28994,50.07941,8124,9,1,16,1,39,3.55,5.0,fr,26160,162,1082889,1,1,Active Shallow Crust,128.8958,89.99353,0.0,09/01/8124 +-1.28994,50.07941,1461,3,26,23,1,2,3.65,5.0,fr,26161,29,1082892,1,1,Active Shallow Crust,0.0,89.98991,0.0,03/26/1461 +-1.28994,50.07941,3935,2,20,14,50,27,3.75,5.0,fr,26162,78,1082904,1,1,Active Shallow Crust,0.0,89.98972,0.0,02/20/3935 +-1.28994,50.07941,752,4,3,9,24,2,3.85,5.0,fr,26163,15,1082922,1,1,Active Shallow Crust,0.0,89.98957,-90.0,04/03/0752 +-1.28994,50.07941,7592,6,15,6,29,46,3.95,5.0,fr,26164,151,1082931,1,1,Active Shallow Crust,240.0203,58.00504,0.0,06/15/7592 +-1.28994,50.07941,5807,1,27,15,15,11,4.05,5.0,fr,26165,116,1082940,1,1,Active Shallow Crust,0.0,89.98999,0.0,01/27/5807 +1.12884,41.91382,1307,9,19,15,19,16,5.95,15.0,fr,26166,26,1083649,1,1,Active Shallow Crust,359.9999,89.99005,0.0,09/19/1307 +8.26008,49.02442,2800,9,1,17,16,14,3.55,5.0,fr,26167,55,1083840,1,3,Active Shallow Crust,0.0,89.98678,0.0,09/01/2800 +8.26008,49.02442,1541,8,25,0,5,21,3.55,5.0,fr,26168,30,1083840,1,3,Active Shallow Crust,0.0,89.98678,0.0,08/25/1541 +8.26008,49.02442,6509,6,3,14,55,53,3.55,5.0,fr,26169,130,1083840,1,3,Active Shallow Crust,0.0,89.98678,0.0,06/03/6509 +8.26008,49.02442,6281,4,20,6,27,44,3.55,15.0,fr,26170,125,1083841,1,1,Active Shallow Crust,0.0,89.98678,0.0,04/20/6281 +8.26008,49.02442,8408,2,1,7,5,13,3.55,27.5,fr,26171,168,1083842,1,1,Active Shallow Crust,0.0,89.98678,0.0,02/01/8408 +8.26008,49.02442,4038,8,19,12,0,5,3.55,15.0,fr,26172,80,1083847,1,1,Active Shallow Crust,0.0,89.98663,-90.0,08/19/4038 +8.26008,49.02442,4860,7,17,0,44,44,3.55,27.5,fr,26173,97,1083848,1,1,Active Shallow Crust,0.0,89.98663,-90.0,07/17/4860 +8.26008,49.02442,1305,12,13,3,23,13,3.65,5.0,fr,26174,26,1083852,1,2,Active Shallow Crust,0.0,89.98821,0.0,12/13/1305 +8.26008,49.02442,9363,4,20,2,41,34,3.65,5.0,fr,26175,187,1083852,1,2,Active Shallow Crust,0.0,89.98821,0.0,04/20/9363 +8.26008,49.02442,4652,3,16,20,13,11,3.65,5.0,fr,26176,93,1083855,1,2,Active Shallow Crust,240.0016,58.01283,0.0,03/16/4652 +8.26008,49.02442,1334,6,26,11,55,42,3.65,5.0,fr,26177,26,1083855,1,2,Active Shallow Crust,240.0016,58.01283,0.0,06/26/1334 +8.26008,49.02442,5318,1,12,16,26,41,3.65,15.0,fr,26178,106,1083862,1,1,Active Shallow Crust,128.8987,89.96357,0.0,01/12/5318 +8.26008,49.02442,4031,2,7,18,45,38,3.75,5.0,fr,26179,80,1083864,1,1,Active Shallow Crust,0.0,89.98949,0.0,02/07/4031 +8.26008,49.02442,4394,7,26,17,12,33,3.75,15.0,fr,26180,87,1083865,1,1,Active Shallow Crust,0.0,89.98949,0.0,07/26/4394 +8.26008,49.02442,1041,11,27,0,38,17,3.85,5.0,fr,26181,20,1083876,1,2,Active Shallow Crust,0.0,89.99064,0.0,11/27/1041 +8.26008,49.02442,5992,3,24,5,13,20,3.85,5.0,fr,26182,119,1083876,1,2,Active Shallow Crust,0.0,89.99064,0.0,03/24/5992 +8.26008,49.02442,6653,1,24,5,23,46,3.85,27.5,fr,26183,133,1083878,1,1,Active Shallow Crust,0.0,89.99064,0.0,01/24/6653 +8.26008,49.02442,5248,2,17,14,8,59,3.95,5.0,fr,26184,104,1083888,1,2,Active Shallow Crust,0.0,89.99165,0.0,02/17/5248 +8.26008,49.02442,6229,10,11,23,21,13,3.95,5.0,fr,26185,124,1083888,1,2,Active Shallow Crust,0.0,89.99165,0.0,10/11/6229 +8.26008,49.02442,2167,10,22,17,4,30,3.95,15.0,fr,26186,43,1083889,1,3,Active Shallow Crust,0.0,89.99165,0.0,10/22/2167 +8.26008,49.02442,3329,9,8,10,34,28,3.95,15.0,fr,26187,66,1083889,1,3,Active Shallow Crust,0.0,89.99165,0.0,09/08/3329 +8.26008,49.02442,9791,7,10,21,27,0,3.95,15.0,fr,26188,195,1083889,1,3,Active Shallow Crust,0.0,89.99165,0.0,07/10/9791 +8.26008,49.02442,3070,7,16,22,36,1,3.95,27.5,fr,26189,61,1083890,1,2,Active Shallow Crust,0.0,89.99165,0.0,07/16/3070 +8.26008,49.02442,1606,10,29,23,53,39,3.95,27.5,fr,26190,32,1083890,1,2,Active Shallow Crust,0.0,89.99165,0.0,10/29/1606 +8.26008,49.02442,3590,8,10,9,29,58,3.95,5.0,fr,26191,71,1083894,1,1,Active Shallow Crust,0.0,89.99156,-90.0,08/10/3590 +8.26008,49.02442,9127,12,24,6,8,21,3.95,15.0,fr,26192,182,1083895,1,1,Active Shallow Crust,0.0,89.99156,-90.0,12/24/9127 +8.26008,49.02442,5065,12,25,13,48,24,4.05,15.0,fr,26193,101,1083901,1,1,Active Shallow Crust,0.0,89.99256,0.0,12/25/5065 +8.26008,49.02442,2539,8,8,23,46,7,4.05,5.0,fr,26194,50,1083903,1,1,Active Shallow Crust,240.0073,58.00507,0.0,08/08/2539 +8.26008,49.02442,9122,9,5,15,25,56,4.15,5.0,fr,26195,182,1083912,1,2,Active Shallow Crust,0.0,89.98674,0.0,09/05/9122 +8.26008,49.02442,2742,2,17,5,20,54,4.15,5.0,fr,26196,54,1083912,1,2,Active Shallow Crust,0.0,89.98674,0.0,02/17/2742 +8.26008,49.02442,2705,8,13,12,3,38,4.15,15.0,fr,26197,54,1083913,1,1,Active Shallow Crust,0.0,89.98674,0.0,08/13/2705 +8.26008,49.02442,7666,8,25,22,16,59,4.15,27.5,fr,26198,153,1083914,1,1,Active Shallow Crust,0.0,89.98674,0.0,08/25/7666 +8.26008,49.02442,347,5,10,17,33,20,4.25,5.0,fr,26199,6,1083924,1,2,Active Shallow Crust,0.0,89.98818,0.0,05/10/0347 +8.26008,49.02442,538,5,10,22,28,34,4.25,5.0,fr,26200,10,1083924,1,2,Active Shallow Crust,0.0,89.98818,0.0,05/10/0538 +8.26008,49.02442,8921,4,26,0,18,36,4.25,5.0,fr,26201,178,1083927,1,1,Active Shallow Crust,240.0072,57.99467,0.0,04/26/8921 +8.26008,49.02442,4685,5,26,10,44,47,4.25,15.0,fr,26202,93,1083928,1,1,Active Shallow Crust,240.0072,57.99467,0.0,05/26/4685 +8.26008,49.02442,1638,2,21,3,33,44,4.25,15.0,fr,26203,32,1083934,1,1,Active Shallow Crust,128.8945,89.98104,0.0,02/21/1638 +8.26008,49.02442,8552,2,23,9,8,46,4.35,5.0,fr,26204,171,1083939,1,1,Active Shallow Crust,240.0098,57.99539,0.0,02/23/8552 +8.26008,49.02442,5589,5,12,2,10,43,4.65,27.5,fr,26205,111,1083977,1,1,Active Shallow Crust,240.0117,57.99424,0.0,05/12/5589 +8.26008,49.02442,7210,11,12,14,13,39,4.95,5.0,fr,26206,144,1084011,1,1,Active Shallow Crust,240.0132,58.00465,0.0,11/12/7210 +8.26008,49.02442,3929,3,7,19,56,13,5.05,5.0,fr,26207,78,1084026,1,1,Active Shallow Crust,0.0,89.99048,-90.0,03/07/3929 +2.88799,44.58107,28,1,11,4,27,19,3.55,5.0,fr,26208,0,1084320,1,3,Active Shallow Crust,0.0,89.98923,0.0,01/11/0028 +2.88799,44.58107,4490,9,20,15,41,17,3.55,5.0,fr,26209,89,1084320,1,3,Active Shallow Crust,0.0,89.98923,0.0,09/20/4490 +2.88799,44.58107,3757,2,24,9,36,9,3.55,5.0,fr,26210,75,1084320,1,3,Active Shallow Crust,0.0,89.98923,0.0,02/24/3757 +2.88799,44.58107,6613,12,27,15,59,4,3.55,15.0,fr,26211,132,1084321,1,1,Active Shallow Crust,0.0,89.98923,0.0,12/27/6613 +2.88799,44.58107,6658,10,26,14,59,4,3.55,27.5,fr,26212,133,1084331,1,1,Active Shallow Crust,128.8956,89.99461,0.0,10/26/6658 +2.88799,44.58107,661,2,25,19,58,20,3.65,5.0,fr,26213,13,1084335,1,1,Active Shallow Crust,240.0008,58.01303,0.0,02/25/0661 +2.88799,44.58107,9576,4,12,3,18,9,3.65,5.0,fr,26214,191,1084341,1,1,Active Shallow Crust,128.9002,89.96349,0.0,04/12/9576 +2.88799,44.58107,2739,2,4,23,39,17,3.75,5.0,fr,26215,54,1084344,1,1,Active Shallow Crust,0.0,89.98859,0.0,02/04/2739 +2.88799,44.58107,723,7,18,12,43,40,3.75,5.0,fr,26216,14,1084350,1,1,Active Shallow Crust,0.0,89.99134,-90.0,07/18/0723 +2.88799,44.58107,4241,12,10,17,48,57,3.85,5.0,fr,26217,84,1084356,1,1,Active Shallow Crust,0.0,89.98983,0.0,12/10/4241 +2.88799,44.58107,5042,10,20,16,9,39,3.85,27.5,fr,26218,100,1084364,1,1,Active Shallow Crust,0.0,89.98972,-90.0,10/20/5042 +2.88799,44.58107,9045,1,2,23,35,5,4.25,5.0,fr,26219,180,1084404,1,2,Active Shallow Crust,0.0,89.99037,0.0,01/02/9045 +2.88799,44.58107,7335,11,28,15,15,17,4.25,5.0,fr,26220,146,1084404,1,2,Active Shallow Crust,0.0,89.99037,0.0,11/28/7335 +2.88799,44.58107,7928,2,1,10,14,3,4.25,27.5,fr,26221,158,1084406,1,1,Active Shallow Crust,0.0,89.99037,0.0,02/01/7928 +2.88799,44.58107,84,11,14,6,17,32,4.45,5.0,fr,26222,1,1084428,1,1,Active Shallow Crust,0.0,89.98981,0.0,11/14/0084 +2.88799,44.58107,5786,5,17,1,5,4,4.45,5.0,fr,26223,115,1084431,1,1,Active Shallow Crust,240.005,57.99445,0.0,05/17/5786 +2.88799,44.58107,869,2,27,18,46,27,5.15,5.0,fr,26224,17,1084512,1,1,Active Shallow Crust,0.0,89.98975,0.0,02/27/0869 +4.67047,46.66734,3443,9,4,14,41,59,3.55,27.5,fr,26225,68,1084802,1,1,Active Shallow Crust,0.0,89.99308,0.0,09/04/3443 +4.67047,46.66734,7865,4,30,0,44,58,3.65,5.0,fr,26226,157,1084812,1,1,Active Shallow Crust,0.0,89.98766,0.0,04/30/7865 +4.67047,46.66734,6780,9,25,21,47,7,3.65,15.0,fr,26227,135,1084813,1,1,Active Shallow Crust,0.0,89.98766,0.0,09/25/6780 +4.67047,46.66734,8065,11,30,19,42,26,3.65,5.0,fr,26228,161,1084815,1,1,Active Shallow Crust,240.0019,58.01288,0.0,11/30/8065 +4.67047,46.66734,178,12,31,23,23,29,3.75,5.0,fr,26229,3,1084824,1,1,Active Shallow Crust,0.0,89.98901,0.0,12/31/0178 +4.67047,46.66734,9478,1,9,18,22,5,3.75,15.0,fr,26230,189,1084825,1,1,Active Shallow Crust,0.0,89.98901,0.0,01/09/9478 +4.67047,46.66734,4274,1,31,16,28,14,3.75,27.5,fr,26231,85,1084826,1,1,Active Shallow Crust,0.0,89.98901,0.0,01/31/4274 +4.67047,46.66734,6122,1,7,0,46,55,3.85,5.0,fr,26232,122,1084836,1,1,Active Shallow Crust,0.0,89.9902,0.0,01/07/6122 +4.67047,46.66734,7731,4,21,5,46,52,3.95,27.5,fr,26233,154,1084850,1,1,Active Shallow Crust,0.0,89.99126,0.0,04/21/7731 +4.67047,46.66734,7579,9,22,6,22,7,4.05,27.5,fr,26234,151,1084871,1,1,Active Shallow Crust,128.8913,89.99222,0.0,09/22/7579 +4.67047,46.66734,8946,8,17,13,30,21,4.15,27.5,fr,26235,178,1084874,1,1,Active Shallow Crust,0.0,89.98959,0.0,08/17/8946 +4.67047,46.66734,4039,7,3,23,26,1,4.25,15.0,fr,26236,80,1084888,1,1,Active Shallow Crust,240.0074,57.99415,0.0,07/03/4039 +4.67047,46.66734,6218,1,1,0,34,32,4.75,15.0,fr,26237,124,1084945,1,1,Active Shallow Crust,0.0,89.98957,0.0,01/01/6218 +4.67047,46.66734,216,3,10,14,57,41,5.05,5.0,fr,26238,4,1084983,1,1,Active Shallow Crust,240.0222,57.99753,0.0,03/10/0216 +0.07704,46.16531,6298,9,5,15,26,16,3.55,15.0,fr,26239,125,1085281,1,1,Active Shallow Crust,0.0,89.98996,0.0,09/05/6298 +0.07704,46.16531,6652,9,4,4,33,46,3.65,5.0,fr,26240,133,1085295,1,1,Active Shallow Crust,240.001,58.01289,0.0,09/04/6652 +0.07704,46.16531,4569,5,19,4,24,4,3.85,5.0,fr,26241,91,1085322,1,2,Active Shallow Crust,0.0,89.99,-90.0,05/19/4569 +0.07704,46.16531,9268,12,6,21,4,43,3.85,5.0,fr,26242,185,1085322,1,2,Active Shallow Crust,0.0,89.99,-90.0,12/06/9268 +0.07704,46.16531,6277,6,6,18,20,2,3.85,27.5,fr,26243,125,1085324,1,1,Active Shallow Crust,0.0,89.99,-90.0,06/06/6277 +0.07704,46.16531,8540,11,9,10,10,7,3.95,15.0,fr,26244,170,1085338,1,1,Active Shallow Crust,128.9004,89.9937,0.0,11/09/8540 +0.07704,46.16531,8931,6,20,0,55,9,4.75,5.0,fr,26245,178,1085424,1,1,Active Shallow Crust,0.0,89.98999,0.0,06/20/8931 +0.07704,46.16531,2889,10,9,14,18,53,5.65,5.0,fr,26246,57,1085532,1,1,Active Shallow Crust,360.0,89.99,0.0,10/09/2889 +-0.7529,46.09897,484,4,29,18,40,49,3.55,5.0,fr,26247,9,1085760,1,1,Active Shallow Crust,0.0,89.99039,0.0,04/29/0484 +-0.7529,46.09897,7114,1,15,7,15,25,3.55,15.0,fr,26248,142,1085764,1,1,Active Shallow Crust,240.0123,57.99809,0.0,01/15/7114 +-0.7529,46.09897,735,5,20,9,5,52,3.65,5.0,fr,26249,14,1085772,1,2,Active Shallow Crust,0.0,89.98988,0.0,05/20/0735 +-0.7529,46.09897,2844,1,8,14,40,52,3.65,5.0,fr,26250,56,1085772,1,2,Active Shallow Crust,0.0,89.98988,0.0,01/08/2844 +-0.7529,46.09897,4655,1,24,18,46,28,3.65,5.0,fr,26251,93,1085778,1,1,Active Shallow Crust,0.0,89.98975,-90.0,01/24/4655 +-0.7529,46.09897,5666,11,2,22,55,15,3.75,27.5,fr,26252,113,1085786,1,1,Active Shallow Crust,0.0,89.99028,0.0,11/02/5666 +-0.7529,46.09897,7559,5,30,8,37,22,3.95,5.0,fr,26253,151,1085808,1,1,Active Shallow Crust,0.0,89.99007,0.0,05/30/7559 +-0.7529,46.09897,2109,5,10,7,25,57,4.15,5.0,fr,26254,42,1085832,1,1,Active Shallow Crust,0.0,89.98992,0.0,05/10/2109 +-0.7529,46.09897,9652,7,14,4,37,7,4.35,15.0,fr,26255,193,1085863,1,1,Active Shallow Crust,0.0,89.99014,-90.0,07/14/9652 +-0.7529,46.09897,4020,2,28,12,27,10,5.15,5.0,fr,26256,80,1085955,1,1,Active Shallow Crust,240.0194,57.99994,0.0,02/28/4020 +4.67354,46.02042,4841,6,24,10,21,26,3.55,5.0,fr,26257,96,1086240,1,1,Active Shallow Crust,0.0,89.993,0.0,06/24/4841 +4.67354,46.02042,2751,2,2,10,6,52,3.55,5.0,fr,26258,55,1086243,1,1,Active Shallow Crust,240.0123,57.9982,0.0,02/02/2751 +4.67354,46.02042,9038,10,27,23,0,10,3.65,5.0,fr,26259,180,1086252,1,1,Active Shallow Crust,0.0,89.98752,0.0,10/27/9038 +4.67354,46.02042,6677,5,24,13,40,37,3.65,5.0,fr,26260,133,1086261,1,1,Active Shallow Crust,128.8996,89.96352,0.0,05/24/6677 +4.67354,46.02042,9006,4,22,0,52,51,3.65,15.0,fr,26261,180,1086262,1,1,Active Shallow Crust,128.8996,89.96352,0.0,04/22/9006 +4.67354,46.02042,3926,11,13,17,47,45,3.85,5.0,fr,26262,78,1086276,1,1,Active Shallow Crust,0.0,89.99008,0.0,11/13/3926 +4.67354,46.02042,2139,10,19,12,12,11,3.85,27.5,fr,26263,42,1086278,1,1,Active Shallow Crust,0.0,89.99008,0.0,10/19/2139 +4.67354,46.02042,2633,5,28,18,16,47,4.05,5.0,fr,26264,52,1086300,1,1,Active Shallow Crust,0.0,89.98819,0.0,05/28/2633 +4.67354,46.02042,122,2,27,3,40,30,4.05,15.0,fr,26265,2,1086301,1,2,Active Shallow Crust,0.0,89.98819,0.0,02/27/0122 +4.67354,46.02042,9479,8,30,0,20,27,4.05,15.0,fr,26266,189,1086301,1,2,Active Shallow Crust,0.0,89.98819,0.0,08/30/9479 +4.67354,46.02042,7285,8,29,23,0,49,4.15,5.0,fr,26267,145,1086312,1,1,Active Shallow Crust,0.0,89.98947,0.0,08/29/7285 +4.67354,46.02042,837,6,29,15,16,46,4.15,15.0,fr,26268,16,1086313,1,1,Active Shallow Crust,0.0,89.98947,0.0,06/29/0837 +4.67354,46.02042,3159,3,30,3,19,15,4.15,5.0,fr,26269,63,1086315,1,1,Active Shallow Crust,240.0091,57.99662,0.0,03/30/3159 +4.67354,46.02042,2765,4,7,6,29,18,4.25,15.0,fr,26270,55,1086325,1,1,Active Shallow Crust,0.0,89.99062,0.0,04/07/2765 +4.67354,46.02042,8703,1,12,9,16,17,5.65,5.0,fr,26271,174,1086498,1,1,Active Shallow Crust,0.0,89.98989,-90.0,01/12/8703 +4.673544,46.02042,7753,9,6,1,26,46,7.05,16.74827,fr,26272,155,1086667,1,1,Active Shallow Crust,0.0,89.99002,-90.0,09/06/7753 +-3.45781,50.05378,8020,10,3,5,26,22,3.65,5.0,fr,26273,160,1086741,1,1,Active Shallow Crust,128.8998,89.96359,0.0,10/03/8020 +3.79765,44.85021,112,5,30,8,43,13,3.55,5.0,fr,26274,2,1087680,1,4,Active Shallow Crust,0.0,89.98927,0.0,05/30/0112 +3.79765,44.85021,171,8,5,6,40,14,3.55,5.0,fr,26275,3,1087680,1,4,Active Shallow Crust,0.0,89.98927,0.0,08/05/0171 +3.79765,44.85021,4387,3,4,6,3,49,3.55,5.0,fr,26276,87,1087680,1,4,Active Shallow Crust,0.0,89.98927,0.0,03/04/4387 +3.79765,44.85021,9896,4,14,18,40,0,3.55,5.0,fr,26277,197,1087680,1,4,Active Shallow Crust,0.0,89.98927,0.0,04/14/9896 +3.79765,44.85021,9832,4,29,6,32,10,3.55,5.0,fr,26278,196,1087686,1,1,Active Shallow Crust,0.0,89.98915,-90.0,04/29/9832 +3.79765,44.85021,833,8,6,15,0,48,3.65,15.0,fr,26279,16,1087693,1,1,Active Shallow Crust,0.0,89.99044,0.0,08/06/0833 +3.79765,44.85021,1376,12,17,22,10,43,3.75,15.0,fr,26280,27,1087705,1,1,Active Shallow Crust,0.0,89.98864,0.0,12/17/1376 +3.79765,44.85021,8334,9,17,17,7,12,3.85,5.0,fr,26281,166,1087716,1,2,Active Shallow Crust,0.0,89.98988,0.0,09/17/8334 +3.79765,44.85021,3181,3,24,6,34,31,3.85,5.0,fr,26282,63,1087716,1,2,Active Shallow Crust,0.0,89.98988,0.0,03/24/3181 +3.79765,44.85021,4570,7,13,15,57,43,3.85,15.0,fr,26283,91,1087720,1,1,Active Shallow Crust,240.011,57.99776,0.0,07/13/4570 +3.79765,44.85021,7210,9,24,22,59,12,4.05,5.0,fr,26284,144,1087740,1,1,Active Shallow Crust,0.0,89.98995,0.0,09/24/7210 +3.79765,44.85021,2150,2,12,16,29,38,4.05,15.0,fr,26285,42,1087744,1,1,Active Shallow Crust,240.0054,58.00589,0.0,02/12/2150 +3.79765,44.85021,4327,4,25,22,36,1,4.25,5.0,fr,26286,86,1087764,1,1,Active Shallow Crust,0.0,89.99042,0.0,04/25/4327 +3.79765,44.85021,6708,3,29,0,51,15,4.35,5.0,fr,26287,134,1087776,1,1,Active Shallow Crust,0.0,89.99004,0.0,03/29/6708 +3.79765,44.85021,3921,8,24,11,39,38,5.05,27.5,fr,26288,78,1087871,1,1,Active Shallow Crust,128.8862,89.99042,0.0,08/24/3921 +3.4015,49.77361,1203,4,30,1,59,40,3.65,15.0,fr,26289,24,1088173,1,1,Active Shallow Crust,0.0,89.99129,0.0,04/30/1203 +3.4015,49.77361,6708,9,2,8,23,14,3.75,5.0,fr,26290,134,1088190,1,1,Active Shallow Crust,0.0,89.98953,-90.0,09/02/6708 +3.4015,49.77361,6222,1,14,18,2,1,3.85,5.0,fr,26291,124,1088205,1,1,Active Shallow Crust,128.8952,89.99424,0.0,01/14/6222 +3.4015,49.77361,5822,1,27,23,30,46,3.95,15.0,fr,26292,116,1088218,1,1,Active Shallow Crust,128.8997,89.99384,0.0,01/27/5822 +-0.71735,42.68678,1001,4,5,0,40,24,3.55,15.0,fr,26293,20,1088641,1,1,Active Shallow Crust,0.0,89.98981,0.0,04/05/1001 +-0.71735,42.68678,245,3,8,11,37,21,3.55,5.0,fr,26294,4,1088643,1,1,Active Shallow Crust,240.0118,57.99815,0.0,03/08/0245 +-0.71735,42.68678,4467,3,15,13,3,28,3.65,5.0,fr,26295,89,1088652,1,2,Active Shallow Crust,0.0,89.99009,0.0,03/15/4467 +-0.71735,42.68678,6322,10,9,12,3,54,3.65,5.0,fr,26296,126,1088652,1,2,Active Shallow Crust,0.0,89.99009,0.0,10/09/6322 +-0.71735,42.68678,2737,12,16,9,7,38,3.65,5.0,fr,26297,54,1088655,1,1,Active Shallow Crust,240.0006,58.01292,0.0,12/16/2737 +-0.71735,42.68678,5310,2,13,21,35,33,3.75,5.0,fr,26298,106,1088667,1,1,Active Shallow Crust,240.0079,58.01743,0.0,02/13/5310 +-0.71735,42.68678,9617,10,22,0,1,29,3.85,5.0,fr,26299,192,1088676,1,1,Active Shallow Crust,0.0,89.99016,0.0,10/22/9617 +-0.71735,42.68678,6172,10,15,22,2,45,3.85,15.0,fr,26300,123,1088677,1,1,Active Shallow Crust,0.0,89.99016,0.0,10/15/6172 +-0.71735,42.68678,5502,2,4,20,46,38,3.95,5.0,fr,26301,110,1088688,1,1,Active Shallow Crust,0.0,89.99006,0.0,02/04/5502 +3.02842,51.81412,9184,8,25,20,30,30,3.85,5.0,fr,26302,183,1089156,1,1,Active Shallow Crust,0.0,89.98897,0.0,08/25/9184 +3.02842,51.81412,4016,1,16,8,58,22,3.85,15.0,fr,26303,80,1089157,1,1,Active Shallow Crust,0.0,89.98897,0.0,01/16/4016 +3.02842,51.81412,2325,8,12,14,9,0,4.05,5.0,fr,26304,46,1089180,1,1,Active Shallow Crust,0.0,89.98948,0.0,08/12/2325 +-1.73593,50.04997,4300,10,20,15,47,6,3.55,5.0,fr,26305,85,1090080,1,1,Active Shallow Crust,0.0,89.99029,0.0,10/20/4300 +-1.73593,50.04997,2518,3,22,21,25,39,3.65,5.0,fr,26306,50,1090092,1,1,Active Shallow Crust,0.0,89.9899,0.0,03/22/2518 +-1.73593,50.04997,5930,2,12,11,54,55,3.65,5.0,fr,26307,118,1090095,1,1,Active Shallow Crust,240.0015,58.01286,0.0,02/12/5930 +-1.73593,50.04997,3942,9,15,17,1,0,3.65,5.0,fr,26308,78,1090101,1,1,Active Shallow Crust,128.9003,89.96347,0.0,09/15/3942 +-1.73593,50.04997,1189,5,5,3,13,25,3.95,5.0,fr,26309,23,1090128,1,1,Active Shallow Crust,0.0,89.98978,0.0,05/05/1189 +5.77843,49.35983,6841,5,1,14,1,12,3.85,15.0,fr,26310,136,1090597,1,1,Active Shallow Crust,0.0,89.9907,0.0,05/01/6841 +5.77843,49.35983,2341,6,20,15,58,32,3.85,15.0,fr,26311,46,1090600,1,1,Active Shallow Crust,240.0122,57.99776,0.0,06/20/2341 +5.77843,49.35983,2268,4,26,12,17,5,4.95,5.0,fr,26312,45,1090737,1,1,Active Shallow Crust,128.8884,89.99002,0.0,04/26/2268 +4.56065,43.50596,1428,7,3,21,26,43,3.55,5.0,fr,26313,28,1092000,1,1,Active Shallow Crust,0.0,89.99268,0.0,07/03/1428 +4.56065,43.50596,4181,7,8,18,8,4,3.55,5.0,fr,26314,83,1092003,1,1,Active Shallow Crust,240.0118,57.99861,0.0,07/08/4181 +4.56065,43.50596,5084,11,7,11,59,41,3.75,15.0,fr,26315,101,1092031,1,1,Active Shallow Crust,0.0,89.98824,-90.0,11/07/5084 +4.56065,43.50596,1353,9,13,9,52,32,4.15,5.0,fr,26316,27,1092075,1,1,Active Shallow Crust,240.0084,57.9969,0.0,09/13/1353 +4.56065,43.50596,483,6,10,2,31,18,4.25,5.0,fr,26317,9,1092084,1,1,Active Shallow Crust,0.0,89.9902,0.0,06/10/0483 +4.56065,43.50596,4018,1,31,12,58,13,4.45,5.0,fr,26318,80,1092108,1,1,Active Shallow Crust,0.0,89.98962,0.0,01/31/4018 +4.56065,43.50596,5727,9,17,11,10,45,5.55,5.0,fr,26319,114,1092240,1,1,Active Shallow Crust,0.0,89.98975,0.0,09/17/5727 +5.8775,50.12029,9475,12,11,9,20,34,3.55,5.0,fr,26320,189,1092486,1,1,Active Shallow Crust,0.0,89.98692,-90.0,12/11/9475 +5.8775,50.12029,4101,10,8,14,32,25,3.65,5.0,fr,26321,82,1092492,1,1,Active Shallow Crust,0.0,89.98847,0.0,10/08/4101 +5.8775,50.12029,864,9,23,16,32,30,3.65,5.0,fr,26322,17,1092495,1,1,Active Shallow Crust,240.0012,58.01283,0.0,09/23/0864 +5.8775,50.12029,3780,5,15,4,43,36,3.65,5.0,fr,26323,75,1092498,1,1,Active Shallow Crust,0.0,89.98834,-90.0,05/15/3780 +5.8775,50.12029,757,7,12,21,17,59,3.95,5.0,fr,26324,15,1092528,1,1,Active Shallow Crust,0.0,89.99184,0.0,07/12/0757 +5.8775,50.12029,6050,1,18,3,23,18,3.95,15.0,fr,26325,120,1092535,1,1,Active Shallow Crust,0.0,89.99174,-90.0,01/18/6050 +5.8775,50.12029,2986,4,10,12,11,58,4.15,27.5,fr,26326,59,1092554,1,1,Active Shallow Crust,0.0,89.99028,0.0,04/10/2986 +5.8775,50.12029,6014,12,12,13,14,3,4.35,5.0,fr,26327,120,1092576,1,1,Active Shallow Crust,0.0,89.9897,0.0,12/12/6014 +5.877521,50.12029,3648,10,30,15,20,33,6.85,13.45767,fr,26328,72,1092876,1,1,Active Shallow Crust,359.9999,89.99006,0.0,10/30/3648 +0.23133,43.46557,3204,4,30,21,47,25,3.65,15.0,fr,26329,64,1092973,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/30/3204 +0.23133,43.46557,6840,5,4,2,5,5,3.65,5.0,fr,26330,136,1092978,1,1,Active Shallow Crust,359.9999,89.9901,-90.0,05/04/6840 +0.23133,43.46557,3757,6,15,6,37,7,3.85,5.0,fr,26331,75,1093002,1,1,Active Shallow Crust,0.0,89.99001,-90.0,06/15/3757 +0.23133,43.46557,5855,4,18,20,6,48,4.25,5.0,fr,26332,117,1093047,1,1,Active Shallow Crust,240.007,57.99397,0.0,04/18/5855 +0.23133,43.46557,2756,6,25,15,57,4,4.35,5.0,fr,26333,55,1093056,1,1,Active Shallow Crust,0.0,89.98998,0.0,06/25/2756 +0.2313398,43.46557,4984,10,13,4,17,36,6.55,9.527304,fr,26334,99,1093320,1,1,Active Shallow Crust,360.0,89.99,0.0,10/13/4984 +4.49563,47.02899,1514,7,24,10,21,58,3.55,15.0,fr,26335,30,1093441,1,1,Active Shallow Crust,0.0,89.99313,0.0,07/24/1514 +4.49563,47.02899,1632,3,17,6,31,23,3.55,5.0,fr,26336,32,1093443,1,1,Active Shallow Crust,240.0114,57.99858,0.0,03/17/1632 +4.49563,47.02899,6525,9,1,21,36,2,3.55,27.5,fr,26337,130,1093445,1,1,Active Shallow Crust,240.0114,57.99849,0.0,09/01/6525 +4.49563,47.02899,9661,8,24,11,6,5,3.65,5.0,fr,26338,193,1093452,1,1,Active Shallow Crust,0.0,89.98775,0.0,08/24/9661 +4.49563,47.02899,8781,1,5,9,50,50,3.75,15.0,fr,26339,175,1093465,1,1,Active Shallow Crust,0.0,89.98908,0.0,01/05/8781 +4.49563,47.02899,3293,2,17,13,19,39,3.85,5.0,fr,26340,65,1093476,1,1,Active Shallow Crust,0.0,89.99026,0.0,02/17/3293 +4.49563,47.02899,5087,2,27,18,12,32,3.95,27.5,fr,26341,101,1093499,1,1,Active Shallow Crust,128.9006,89.99349,0.0,02/27/5087 +4.49563,47.02899,9790,10,20,9,35,12,4.05,5.0,fr,26342,195,1093500,1,1,Active Shallow Crust,0.0,89.9884,0.0,10/20/9790 +4.49563,47.02899,1418,9,18,15,28,37,4.35,5.0,fr,26343,28,1093536,1,1,Active Shallow Crust,0.0,89.98905,0.0,09/18/1418 +2.69353,52.95092,6531,12,29,22,42,46,3.85,15.0,fr,26344,130,1094437,1,1,Active Shallow Crust,0.0,89.98925,0.0,12/29/6531 +-0.01421,45.618,8421,9,9,3,43,16,3.55,5.0,fr,26345,168,1094880,1,1,Active Shallow Crust,0.0,89.99,0.0,09/09/8421 +-0.01421,45.618,2356,9,10,5,20,47,3.55,15.0,fr,26346,47,1094881,1,1,Active Shallow Crust,0.0,89.99,0.0,09/10/2356 +-0.01421,45.618,2371,1,22,5,1,38,3.55,15.0,fr,26347,47,1094887,1,1,Active Shallow Crust,0.0,89.99,-90.0,01/22/2371 +-0.01421,45.618,7276,7,27,18,43,49,3.55,5.0,fr,26348,145,1094889,1,1,Active Shallow Crust,128.8963,89.99374,0.0,07/27/7276 +-0.01421,45.618,6701,12,25,17,28,35,3.75,15.0,fr,26349,134,1094905,1,1,Active Shallow Crust,0.0,89.99,0.0,12/25/6701 +-0.01421,45.618,8131,11,17,2,18,11,3.75,15.0,fr,26350,162,1094914,1,1,Active Shallow Crust,128.8967,89.96735,0.0,11/17/8131 +-0.01421,45.618,4934,3,1,7,33,30,3.85,5.0,fr,26351,98,1094916,1,1,Active Shallow Crust,360.0,89.99001,0.0,03/01/4934 +-0.01421,45.618,5755,11,27,16,7,3,3.95,5.0,fr,26352,115,1094928,1,3,Active Shallow Crust,360.0,89.99001,0.0,11/27/5755 +-0.01421,45.618,78,9,4,2,58,42,3.95,5.0,fr,26353,1,1094928,1,3,Active Shallow Crust,360.0,89.99001,0.0,09/04/0078 +-0.01421,45.618,6398,8,18,5,31,25,3.95,5.0,fr,26354,127,1094928,1,3,Active Shallow Crust,360.0,89.99001,0.0,08/18/6398 +-0.01421,45.618,8742,3,15,12,12,12,3.95,5.0,fr,26355,174,1094934,1,1,Active Shallow Crust,0.0,89.99001,-90.0,03/15/8742 +-0.01421,45.618,3134,1,15,22,17,40,4.05,5.0,fr,26356,62,1094940,1,1,Active Shallow Crust,0.0,89.99,0.0,01/15/3134 +-0.01421,45.618,9057,9,1,19,3,45,4.05,5.0,fr,26357,181,1094949,1,1,Active Shallow Crust,128.8906,89.99372,0.0,09/01/9057 +-0.01421,45.618,5248,10,22,15,17,55,4.15,5.0,fr,26358,104,1094952,1,2,Active Shallow Crust,360.0,89.99001,0.0,10/22/5248 +-0.01421,45.618,2471,1,24,23,55,49,4.15,5.0,fr,26359,49,1094952,1,2,Active Shallow Crust,360.0,89.99001,0.0,01/24/2471 +-0.01421,45.618,4558,3,1,12,46,8,4.15,15.0,fr,26360,91,1094953,1,1,Active Shallow Crust,360.0,89.99001,0.0,03/01/4558 +-0.01421,45.618,2991,6,11,10,13,12,4.35,15.0,fr,26361,59,1094977,1,3,Active Shallow Crust,360.0,89.99001,0.0,06/11/2991 +-0.01421,45.618,6599,6,11,7,46,42,4.35,15.0,fr,26362,131,1094977,1,3,Active Shallow Crust,360.0,89.99001,0.0,06/11/6599 +-0.01421,45.618,7168,11,26,3,47,43,4.35,15.0,fr,26363,143,1094977,1,3,Active Shallow Crust,360.0,89.99001,0.0,11/26/7168 +-0.01421,45.618,7656,10,26,19,7,5,4.35,5.0,fr,26364,153,1094979,1,1,Active Shallow Crust,240.0082,57.99591,0.0,10/26/7656 +-0.01421,45.618,9204,4,6,10,18,31,4.45,5.0,fr,26365,184,1094988,1,1,Active Shallow Crust,0.0,89.99,0.0,04/06/9204 +-0.01421,45.618,1006,2,1,12,53,49,4.45,15.0,fr,26366,20,1094992,1,1,Active Shallow Crust,240.005,57.99465,0.0,02/01/1006 +-0.01421,45.618,1437,10,31,13,23,23,4.55,5.0,fr,26367,28,1095000,1,1,Active Shallow Crust,360.0,89.99,0.0,10/31/1437 +-0.01421,45.618,8822,6,14,20,48,35,5.15,15.0,fr,26368,176,1095073,1,1,Active Shallow Crust,360.0,89.99,0.0,06/14/8822 +7.75574,47.6975,9178,10,24,18,55,19,3.55,5.0,fr,26369,183,1095360,1,6,Active Shallow Crust,0.0,89.99321,0.0,10/24/9178 +7.75574,47.6975,4946,5,6,21,15,6,3.55,5.0,fr,26370,98,1095360,1,6,Active Shallow Crust,0.0,89.99321,0.0,05/06/4946 +7.75574,47.6975,8097,6,30,1,36,8,3.55,5.0,fr,26371,161,1095360,1,6,Active Shallow Crust,0.0,89.99321,0.0,06/30/8097 +7.75574,47.6975,1348,7,17,18,53,21,3.55,5.0,fr,26372,26,1095360,1,6,Active Shallow Crust,0.0,89.99321,0.0,07/17/1348 +7.75574,47.6975,5985,11,9,15,0,33,3.55,5.0,fr,26373,119,1095360,1,6,Active Shallow Crust,0.0,89.99321,0.0,11/09/5985 +7.75574,47.6975,8447,9,17,9,44,6,3.55,5.0,fr,26374,168,1095360,1,6,Active Shallow Crust,0.0,89.99321,0.0,09/17/8447 +7.75574,47.6975,3639,12,25,10,14,55,3.55,15.0,fr,26375,72,1095361,1,3,Active Shallow Crust,0.0,89.99321,0.0,12/25/3639 +7.75574,47.6975,3189,12,14,16,8,42,3.55,15.0,fr,26376,63,1095361,1,3,Active Shallow Crust,0.0,89.99321,0.0,12/14/3189 +7.75574,47.6975,3436,7,19,21,41,13,3.55,15.0,fr,26377,68,1095361,1,3,Active Shallow Crust,0.0,89.99321,0.0,07/19/3436 +7.75574,47.6975,5878,4,8,18,17,13,3.55,5.0,fr,26378,117,1095363,1,3,Active Shallow Crust,240.0113,57.99906,0.0,04/08/5878 +7.75574,47.6975,1302,10,24,16,3,17,3.55,5.0,fr,26379,26,1095363,1,3,Active Shallow Crust,240.0113,57.99906,0.0,10/24/1302 +7.75574,47.6975,3952,5,23,13,41,40,3.55,5.0,fr,26380,79,1095363,1,3,Active Shallow Crust,240.0113,57.99906,0.0,05/23/3952 +7.75574,47.6975,4274,6,12,22,53,54,3.55,15.0,fr,26381,85,1095364,1,1,Active Shallow Crust,240.0113,57.99906,0.0,06/12/4274 +7.75574,47.6975,9049,9,2,14,57,17,3.55,5.0,fr,26382,180,1095369,1,3,Active Shallow Crust,128.8953,89.9966,0.0,09/02/9049 +7.75574,47.6975,6384,5,3,5,53,20,3.55,5.0,fr,26383,127,1095369,1,3,Active Shallow Crust,128.8953,89.9966,0.0,05/03/6384 +7.75574,47.6975,8018,5,21,9,56,23,3.55,5.0,fr,26384,160,1095369,1,3,Active Shallow Crust,128.8953,89.9966,0.0,05/21/8018 +7.75574,47.6975,559,7,13,22,4,36,3.55,15.0,fr,26385,11,1095370,1,2,Active Shallow Crust,128.8953,89.9966,0.0,07/13/0559 +7.75574,47.6975,5560,2,5,6,6,31,3.55,15.0,fr,26386,111,1095370,1,2,Active Shallow Crust,128.8953,89.9966,0.0,02/05/5560 +7.75574,47.6975,8067,3,18,17,49,17,3.65,5.0,fr,26387,161,1095372,1,7,Active Shallow Crust,0.0,89.9879,0.0,03/18/8067 +7.75574,47.6975,5110,12,1,3,1,6,3.65,5.0,fr,26388,102,1095372,1,7,Active Shallow Crust,0.0,89.9879,0.0,12/01/5110 +7.75574,47.6975,1396,2,5,20,2,59,3.65,5.0,fr,26389,27,1095372,1,7,Active Shallow Crust,0.0,89.9879,0.0,02/05/1396 +7.75574,47.6975,7519,10,21,15,0,15,3.65,5.0,fr,26390,150,1095372,1,7,Active Shallow Crust,0.0,89.9879,0.0,10/21/7519 +7.75574,47.6975,6913,10,12,10,17,54,3.65,5.0,fr,26391,138,1095372,1,7,Active Shallow Crust,0.0,89.9879,0.0,10/12/6913 +7.75574,47.6975,4860,12,19,10,6,28,3.65,5.0,fr,26392,97,1095372,1,7,Active Shallow Crust,0.0,89.9879,0.0,12/19/4860 +7.75574,47.6975,3416,2,24,7,45,9,3.65,5.0,fr,26393,68,1095372,1,7,Active Shallow Crust,0.0,89.9879,0.0,02/24/3416 +7.75574,47.6975,5118,3,6,7,53,36,3.65,5.0,fr,26394,102,1095375,1,2,Active Shallow Crust,240.0,58.01348,0.0,03/06/5118 +7.75574,47.6975,3247,6,2,12,55,38,3.65,5.0,fr,26395,64,1095375,1,2,Active Shallow Crust,240.0,58.01348,0.0,06/02/3247 +7.75574,47.6975,918,5,2,6,5,21,3.65,15.0,fr,26396,18,1095376,1,2,Active Shallow Crust,240.0,58.01348,0.0,05/02/0918 +7.75574,47.6975,2958,11,20,10,33,13,3.65,15.0,fr,26397,59,1095376,1,2,Active Shallow Crust,240.0,58.01348,0.0,11/20/2958 +7.75574,47.6975,1741,5,31,5,35,14,3.75,5.0,fr,26398,34,1095384,1,7,Active Shallow Crust,0.0,89.98922,0.0,05/31/1741 +7.75574,47.6975,7119,2,13,8,42,25,3.75,5.0,fr,26399,142,1095384,1,7,Active Shallow Crust,0.0,89.98922,0.0,02/13/7119 +7.75574,47.6975,3011,2,14,4,4,58,3.75,5.0,fr,26400,60,1095384,1,7,Active Shallow Crust,0.0,89.98922,0.0,02/14/3011 +7.75574,47.6975,9694,12,6,20,40,0,3.75,5.0,fr,26401,193,1095384,1,7,Active Shallow Crust,0.0,89.98922,0.0,12/06/9694 +7.75574,47.6975,8659,1,12,18,20,11,3.75,5.0,fr,26402,173,1095384,1,7,Active Shallow Crust,0.0,89.98922,0.0,01/12/8659 +7.75574,47.6975,5620,3,25,17,49,46,3.75,5.0,fr,26403,112,1095384,1,7,Active Shallow Crust,0.0,89.98922,0.0,03/25/5620 +7.75574,47.6975,8033,12,13,9,22,54,3.75,5.0,fr,26404,160,1095384,1,7,Active Shallow Crust,0.0,89.98922,0.0,12/13/8033 +7.75574,47.6975,9480,12,24,18,59,22,3.75,15.0,fr,26405,189,1095385,1,4,Active Shallow Crust,0.0,89.98922,0.0,12/24/9480 +7.75574,47.6975,2364,11,8,3,34,42,3.75,15.0,fr,26406,47,1095385,1,4,Active Shallow Crust,0.0,89.98922,0.0,11/08/2364 +7.75574,47.6975,206,7,31,16,0,6,3.75,15.0,fr,26407,4,1095385,1,4,Active Shallow Crust,0.0,89.98922,0.0,07/31/0206 +7.75574,47.6975,668,11,14,1,42,17,3.75,15.0,fr,26408,13,1095385,1,4,Active Shallow Crust,0.0,89.98922,0.0,11/14/0668 +7.75574,47.6975,3594,5,18,4,58,39,3.75,27.5,fr,26409,71,1095386,1,2,Active Shallow Crust,0.0,89.98922,0.0,05/18/3594 +7.75574,47.6975,7634,7,30,5,34,24,3.75,27.5,fr,26410,152,1095386,1,2,Active Shallow Crust,0.0,89.98922,0.0,07/30/7634 +7.75574,47.6975,7428,9,27,5,18,27,3.75,5.0,fr,26411,148,1095387,1,3,Active Shallow Crust,240.0089,58.01744,0.0,09/27/7428 +7.75574,47.6975,4993,6,4,2,53,3,3.75,5.0,fr,26412,99,1095387,1,3,Active Shallow Crust,240.0089,58.01744,0.0,06/04/4993 +7.75574,47.6975,6822,2,6,3,57,45,3.75,5.0,fr,26413,136,1095387,1,3,Active Shallow Crust,240.0089,58.01744,0.0,02/06/6822 +7.75574,47.6975,5359,1,30,14,29,22,3.75,5.0,fr,26414,107,1095390,1,1,Active Shallow Crust,0.0,89.98909,-90.0,01/30/5359 +7.75574,47.6975,1237,1,22,8,41,33,3.75,27.5,fr,26415,24,1095392,1,1,Active Shallow Crust,0.0,89.98909,-90.0,01/22/1237 +7.75574,47.6975,4311,10,31,0,5,1,3.85,5.0,fr,26416,86,1095396,1,4,Active Shallow Crust,0.0,89.99039,0.0,10/31/4311 +7.75574,47.6975,8464,9,28,15,41,13,3.85,5.0,fr,26417,169,1095396,1,4,Active Shallow Crust,0.0,89.99039,0.0,09/28/8464 +7.75574,47.6975,2139,6,26,7,53,11,3.85,5.0,fr,26418,42,1095396,1,4,Active Shallow Crust,0.0,89.99039,0.0,06/26/2139 +7.75574,47.6975,2941,6,6,3,30,1,3.85,5.0,fr,26419,58,1095396,1,4,Active Shallow Crust,0.0,89.99039,0.0,06/06/2941 +7.75574,47.6975,9492,4,15,3,59,38,3.85,15.0,fr,26420,189,1095397,1,2,Active Shallow Crust,0.0,89.99039,0.0,04/15/9492 +7.75574,47.6975,8152,12,24,20,43,36,3.85,15.0,fr,26421,163,1095397,1,2,Active Shallow Crust,0.0,89.99039,0.0,12/24/8152 +7.75574,47.6975,3613,2,24,10,58,31,3.85,5.0,fr,26422,72,1095399,1,1,Active Shallow Crust,240.01,57.99784,0.0,02/24/3613 +7.75574,47.6975,5695,10,30,17,13,20,3.85,5.0,fr,26423,113,1095402,1,1,Active Shallow Crust,0.0,89.99028,-90.0,10/30/5695 +7.75574,47.6975,7174,3,13,22,15,38,3.85,5.0,fr,26424,143,1095405,1,1,Active Shallow Crust,128.895,89.99279,0.0,03/13/7174 +7.75574,47.6975,9473,3,7,17,56,45,3.95,27.5,fr,26425,189,1095410,1,1,Active Shallow Crust,0.0,89.99143,0.0,03/07/9473 +7.75574,47.6975,3745,8,13,22,59,26,3.95,5.0,fr,26426,74,1095411,1,1,Active Shallow Crust,240.0199,58.00499,0.0,08/13/3745 +7.75574,47.6975,3333,6,21,11,28,52,4.05,5.0,fr,26427,66,1095420,1,2,Active Shallow Crust,0.0,89.98855,0.0,06/21/3333 +7.75574,47.6975,8792,7,6,4,38,57,4.05,5.0,fr,26428,175,1095420,1,2,Active Shallow Crust,0.0,89.98855,0.0,07/06/8792 +7.75574,47.6975,644,9,6,6,41,38,4.05,15.0,fr,26429,12,1095421,1,3,Active Shallow Crust,0.0,89.98855,0.0,09/06/0644 +7.75574,47.6975,5486,1,14,14,39,36,4.05,15.0,fr,26430,109,1095421,1,3,Active Shallow Crust,0.0,89.98855,0.0,01/14/5486 +7.75574,47.6975,4625,2,3,16,18,42,4.05,15.0,fr,26431,92,1095421,1,3,Active Shallow Crust,0.0,89.98855,0.0,02/03/4625 +7.75574,47.6975,795,9,11,15,20,20,4.05,15.0,fr,26432,15,1095424,1,1,Active Shallow Crust,240.0064,58.00585,0.0,09/11/0795 +7.75574,47.6975,3292,5,13,8,32,15,4.05,5.0,fr,26433,65,1095426,1,1,Active Shallow Crust,0.0,89.98842,-90.0,05/13/3292 +7.75574,47.6975,2119,4,3,12,29,46,4.15,5.0,fr,26434,42,1095432,1,4,Active Shallow Crust,0.0,89.98979,0.0,04/03/2119 +7.75574,47.6975,3928,1,12,3,13,6,4.15,5.0,fr,26435,78,1095432,1,4,Active Shallow Crust,0.0,89.98979,0.0,01/12/3928 +7.75574,47.6975,9809,9,23,10,30,47,4.15,5.0,fr,26436,196,1095432,1,4,Active Shallow Crust,0.0,89.98979,0.0,09/23/9809 +7.75574,47.6975,6290,11,22,13,25,24,4.15,5.0,fr,26437,125,1095432,1,4,Active Shallow Crust,0.0,89.98979,0.0,11/22/6290 +7.75574,47.6975,5941,9,21,14,54,13,4.15,15.0,fr,26438,118,1095442,1,1,Active Shallow Crust,128.8974,89.9949,0.0,09/21/5941 +7.75574,47.6975,4723,4,27,7,17,10,4.25,5.0,fr,26439,94,1095444,1,2,Active Shallow Crust,0.0,89.99091,0.0,04/27/4723 +7.75574,47.6975,5332,9,22,5,3,10,4.25,5.0,fr,26440,106,1095444,1,2,Active Shallow Crust,0.0,89.99091,0.0,09/22/5332 +7.75574,47.6975,651,10,22,3,35,51,4.35,5.0,fr,26441,13,1095456,1,1,Active Shallow Crust,0.0,89.98919,0.0,10/22/0651 +7.75574,47.6975,7705,1,20,23,12,42,4.35,15.0,fr,26442,154,1095457,1,1,Active Shallow Crust,0.0,89.98919,0.0,01/20/7705 +7.75574,47.6975,1938,5,28,20,52,13,4.35,5.0,fr,26443,38,1095465,1,1,Active Shallow Crust,128.8974,89.98258,0.0,05/28/1938 +7.75574,47.6975,8066,1,27,9,36,38,4.45,15.0,fr,26444,161,1095469,1,1,Active Shallow Crust,0.0,89.99036,0.0,01/27/8066 +7.75574,47.6975,3083,4,5,23,9,35,4.45,5.0,fr,26445,61,1095471,1,1,Active Shallow Crust,240.0056,57.99481,0.0,04/05/3083 +7.75574,47.6975,1306,12,13,19,36,40,4.55,5.0,fr,26446,26,1095480,1,1,Active Shallow Crust,0.0,89.98927,0.0,12/13/1306 +7.75574,47.6975,5921,5,23,9,29,34,4.65,5.0,fr,26447,118,1095492,1,1,Active Shallow Crust,0.0,89.99043,0.0,05/23/5921 +7.75574,47.6975,347,11,27,19,57,8,4.65,5.0,fr,26448,6,1095501,1,1,Active Shallow Crust,128.8906,89.98727,0.0,11/27/0347 +7.75574,47.6975,1004,3,11,6,59,1,4.95,5.0,fr,26449,20,1095531,1,1,Active Shallow Crust,240.0125,58.00442,0.0,03/11/1004 +7.75574,47.6975,545,2,17,4,40,34,5.85,5.0,fr,26450,10,1095639,1,1,Active Shallow Crust,240.0488,58.00006,0.0,02/17/0545 +7.75574,47.6975,1239,6,28,6,3,17,5.95,5.0,fr,26451,24,1095648,1,1,Active Shallow Crust,0.0,89.99014,0.0,06/28/1239 +1.12378,43.00173,860,11,29,14,9,1,3.55,5.0,fr,26452,17,1095840,1,1,Active Shallow Crust,0.0,89.99078,0.0,11/29/0860 +1.12378,43.00173,1209,3,10,16,41,13,3.55,5.0,fr,26453,24,1095843,1,1,Active Shallow Crust,240.0115,57.99825,0.0,03/10/1209 +1.12378,43.00173,5413,10,12,17,43,3,3.55,5.0,fr,26454,108,1095846,1,1,Active Shallow Crust,0.0,89.99068,-90.0,10/12/5413 +1.12378,43.00173,5767,1,6,19,39,47,3.65,5.0,fr,26455,115,1095852,1,1,Active Shallow Crust,0.0,89.99014,0.0,01/06/5767 +1.12378,43.00173,5343,11,5,1,39,16,3.65,15.0,fr,26456,106,1095853,1,1,Active Shallow Crust,0.0,89.99014,0.0,11/05/5343 +1.12378,43.00173,292,5,22,12,27,42,3.75,15.0,fr,26457,5,1095865,1,1,Active Shallow Crust,0.0,89.98975,0.0,05/22/0292 +1.12378,43.00173,7107,2,1,21,1,28,3.85,5.0,fr,26458,142,1095879,1,1,Active Shallow Crust,240.0105,57.99765,0.0,02/01/7107 +1.12378,43.00173,789,2,20,17,26,50,3.95,15.0,fr,26459,15,1095889,1,1,Active Shallow Crust,0.0,89.98953,0.0,02/20/0789 +1.12378,43.00173,6072,4,24,7,59,50,3.95,5.0,fr,26460,121,1095897,1,1,Active Shallow Crust,128.9009,89.9936,0.0,04/24/6072 +1.12378,43.00173,5589,4,20,10,28,27,4.05,5.0,fr,26461,111,1095900,1,2,Active Shallow Crust,0.0,89.98963,0.0,04/20/5589 +1.12378,43.00173,397,4,30,22,5,47,4.05,5.0,fr,26462,7,1095900,1,2,Active Shallow Crust,0.0,89.98963,0.0,04/30/0397 +1.12378,43.00173,4471,7,15,20,22,57,4.05,5.0,fr,26463,89,1095909,1,1,Active Shallow Crust,128.891,89.99378,0.0,07/15/4471 +1.12378,43.00173,2139,1,16,11,11,6,4.25,15.0,fr,26464,42,1095928,1,1,Active Shallow Crust,240.0069,57.99396,0.0,01/16/2139 +1.12378,43.00173,2005,8,29,16,40,16,4.65,5.0,fr,26465,40,1095978,1,1,Active Shallow Crust,0.0,89.99001,-90.0,08/29/2005 +1.12378,43.00173,7468,12,10,23,7,28,5.45,15.0,fr,26466,149,1096069,1,1,Active Shallow Crust,0.0,89.99007,0.0,12/10/7468 +-2.70648,47.01242,5840,10,24,3,9,31,3.75,5.0,fr,26467,116,1096344,1,1,Active Shallow Crust,0.0,89.98907,0.0,10/24/5840 +-2.70648,47.01242,7624,9,27,19,16,10,3.95,5.0,fr,26468,152,1096371,1,1,Active Shallow Crust,240.0197,58.00502,0.0,09/27/7624 +-2.70648,47.01242,6641,10,8,3,0,47,4.45,5.0,fr,26469,132,1096437,1,1,Active Shallow Crust,128.8922,89.9939,0.0,10/08/6641 +-2.70648,47.01242,7924,6,2,16,2,34,4.95,5.0,fr,26470,158,1096488,1,1,Active Shallow Crust,0.0,89.98971,0.0,06/02/7924 +-2.49254,47.03241,8526,4,22,9,43,35,3.55,5.0,fr,26471,170,1096800,1,1,Active Shallow Crust,0.0,89.98969,0.0,04/22/8526 +-2.49254,47.03241,9701,6,7,15,45,48,3.55,5.0,fr,26472,194,1096803,1,1,Active Shallow Crust,240.0116,57.99826,0.0,06/07/9701 +-2.49254,47.03241,9232,10,23,14,27,21,3.55,5.0,fr,26473,184,1096806,1,1,Active Shallow Crust,0.0,89.98957,-90.0,10/23/9232 +-2.49254,47.03241,4200,7,1,1,41,4,3.65,15.0,fr,26474,83,1096813,1,1,Active Shallow Crust,0.0,89.99081,0.0,07/01/4200 +-2.49254,47.03241,930,6,20,13,35,41,3.65,5.0,fr,26475,18,1096815,1,1,Active Shallow Crust,240.0008,58.01298,0.0,06/20/0930 +-2.49254,47.03241,8,11,30,22,58,32,3.65,5.0,fr,26476,0,1096818,1,1,Active Shallow Crust,0.0,89.99071,-90.0,11/30/0008 +-2.49254,47.03241,5489,1,23,16,47,7,3.75,15.0,fr,26477,109,1096825,1,2,Active Shallow Crust,0.0,89.98908,0.0,01/23/5489 +-2.49254,47.03241,9483,5,6,20,25,58,3.75,15.0,fr,26478,189,1096825,1,2,Active Shallow Crust,0.0,89.98908,0.0,05/06/9483 +-2.49254,47.03241,1482,8,31,7,57,6,3.75,5.0,fr,26479,29,1096833,1,1,Active Shallow Crust,128.8971,89.96725,0.0,08/31/1482 +-2.49254,47.03241,4853,8,13,7,24,6,3.85,5.0,fr,26480,97,1096836,1,1,Active Shallow Crust,0.0,89.99026,0.0,08/13/4853 +-2.49254,47.03241,2134,12,12,13,33,29,4.25,5.0,fr,26481,42,1096884,1,1,Active Shallow Crust,0.0,89.98926,0.0,12/12/2134 +-2.49254,47.03241,1780,10,19,4,2,41,4.35,5.0,fr,26482,35,1096899,1,1,Active Shallow Crust,240.0087,57.996,0.0,10/19/1780 +-2.49254,47.03241,3225,9,26,19,56,59,4.45,15.0,fr,26483,64,1096909,1,1,Active Shallow Crust,0.0,89.99024,0.0,09/26/3225 +-2.49254,47.03241,4251,4,26,9,27,46,4.55,5.0,fr,26484,85,1096920,1,1,Active Shallow Crust,0.0,89.99022,0.0,04/26/4251 +6.55107,42.96173,2314,10,17,17,54,5,3.55,15.0,fr,26485,46,1097281,1,1,Active Shallow Crust,0.0,89.99262,0.0,10/17/2314 +6.55107,42.96173,1074,6,5,0,28,30,3.65,5.0,fr,26486,21,1097295,1,1,Active Shallow Crust,240.0001,58.01342,0.0,06/05/1074 +6.55107,42.96173,2655,7,27,1,12,45,3.65,27.5,fr,26487,53,1097297,1,1,Active Shallow Crust,240.0001,58.01334,0.0,07/27/2655 +6.55107,42.96173,153,5,24,6,41,52,3.85,15.0,fr,26488,3,1097317,1,1,Active Shallow Crust,0.0,89.98955,0.0,05/24/0153 +0.59872,49.66035,1145,11,15,5,38,51,3.55,5.0,fr,26489,22,1097760,1,2,Active Shallow Crust,0.0,89.99021,0.0,11/15/1145 +0.59872,49.66035,4151,8,14,6,52,21,3.55,5.0,fr,26490,83,1097760,1,2,Active Shallow Crust,0.0,89.99021,0.0,08/14/4151 +0.59872,49.66035,8062,3,3,14,19,12,3.55,5.0,fr,26491,161,1097769,1,1,Active Shallow Crust,128.896,89.99388,0.0,03/03/8062 +0.59872,49.66035,464,8,5,9,54,5,3.65,5.0,fr,26492,9,1097772,1,1,Active Shallow Crust,0.0,89.98982,0.0,08/05/0464 +0.59872,49.66035,4805,5,31,13,21,41,3.65,5.0,fr,26493,96,1097781,1,2,Active Shallow Crust,128.9002,89.96352,0.0,05/31/4805 +0.59872,49.66035,3563,1,25,2,12,53,3.65,5.0,fr,26494,71,1097781,1,2,Active Shallow Crust,128.9002,89.96352,0.0,01/25/3563 +0.59872,49.66035,8896,6,14,20,7,49,3.75,5.0,fr,26495,177,1097784,1,1,Active Shallow Crust,0.0,89.99028,0.0,06/14/8896 +0.59872,49.66035,6833,2,8,2,56,13,3.85,5.0,fr,26496,136,1097802,1,1,Active Shallow Crust,0.0,89.99007,-90.0,02/08/6833 +0.59872,49.66035,3782,7,11,8,41,2,4.05,5.0,fr,26497,75,1097820,1,1,Active Shallow Crust,0.0,89.98991,0.0,07/11/3782 +0.59872,49.66035,8324,9,25,7,18,27,4.05,15.0,fr,26498,166,1097824,1,1,Active Shallow Crust,240.0065,58.0059,0.0,09/25/8324 +0.59872,49.66035,5428,3,15,6,4,22,4.15,5.0,fr,26499,108,1097832,1,2,Active Shallow Crust,0.0,89.99019,0.0,03/15/5428 +0.59872,49.66035,3435,10,13,21,4,38,4.15,5.0,fr,26500,68,1097832,1,2,Active Shallow Crust,0.0,89.99019,0.0,10/13/3435 +0.59872,49.66035,1122,4,5,13,33,34,4.15,15.0,fr,26501,22,1097833,1,1,Active Shallow Crust,0.0,89.99019,0.0,04/05/1122 +0.59872,49.66035,2169,4,13,3,48,56,4.15,5.0,fr,26502,43,1097835,1,1,Active Shallow Crust,240.0091,57.99741,0.0,04/13/2169 +0.59872,49.66035,9134,4,3,19,33,34,4.35,5.0,fr,26503,182,1097862,1,1,Active Shallow Crust,0.0,89.99014,-90.0,04/03/9134 +0.59872,49.66035,5191,3,13,17,10,9,4.55,5.0,fr,26504,103,1097883,1,1,Active Shallow Crust,240.0102,57.99759,0.0,03/13/5191 +0.59872,49.66035,2082,5,11,14,53,24,4.65,5.0,fr,26505,41,1097892,1,1,Active Shallow Crust,0.0,89.99011,0.0,05/11/2082 +1.92972,50.11053,1067,9,9,5,37,31,3.55,15.0,fr,26506,21,1098244,1,1,Active Shallow Crust,240.0126,57.99819,0.0,09/09/1067 +1.92972,50.11053,4809,11,4,5,6,16,3.75,15.0,fr,26507,96,1098265,1,1,Active Shallow Crust,0.0,89.98972,0.0,11/04/4809 +1.92972,50.11053,793,8,17,1,15,50,3.75,5.0,fr,26508,15,1098267,1,1,Active Shallow Crust,240.0086,58.01769,0.0,08/17/0793 +1.92972,50.11053,7358,10,15,22,17,27,3.95,5.0,fr,26509,147,1098294,1,1,Active Shallow Crust,0.0,89.98968,-90.0,10/15/7358 +1.92972,50.11053,8226,2,27,14,5,12,4.15,5.0,fr,26510,164,1098315,1,1,Active Shallow Crust,240.009,57.99756,0.0,02/27/8226 +1.92972,50.11053,7460,12,31,19,49,23,4.25,5.0,fr,26511,149,1098324,1,1,Active Shallow Crust,0.0,89.98989,0.0,12/31/7460 +1.92972,50.11053,8493,9,18,5,52,52,4.25,5.0,fr,26512,169,1098330,1,1,Active Shallow Crust,0.0,89.98977,-90.0,09/18/8493 +1.92972,50.11053,280,12,16,10,50,26,4.35,5.0,fr,26513,5,1098336,1,1,Active Shallow Crust,0.0,89.9897,0.0,12/16/0280 +0.91527,41.48363,1033,10,24,15,59,14,3.65,27.5,fr,26514,20,1098737,1,1,Active Shallow Crust,240.0007,58.01269,0.0,10/24/1033 +0.91527,41.48363,6884,2,2,15,0,42,3.65,5.0,fr,26515,137,1098741,1,1,Active Shallow Crust,128.9009,89.9635,0.0,02/02/6884 +0.91527,41.48363,2621,7,6,11,22,43,3.95,15.0,fr,26516,52,1098772,1,1,Active Shallow Crust,240.0191,58.00484,0.0,07/06/2621 +0.91527,41.48363,2256,5,12,5,49,26,4.25,5.0,fr,26517,45,1098804,1,1,Active Shallow Crust,0.0,89.98988,0.0,05/12/2256 +0.91527,41.48363,3552,7,5,6,37,47,4.55,5.0,fr,26518,71,1098840,1,1,Active Shallow Crust,0.0,89.99014,0.0,07/05/3552 +0.91527,41.48363,813,5,25,11,7,0,4.55,5.0,fr,26519,16,1098846,1,1,Active Shallow Crust,0.0,89.99003,-90.0,05/25/0813 +6.96077,46.18502,1318,12,24,18,11,34,3.55,5.0,fr,26520,26,1099200,1,8,Active Shallow Crust,0.0,89.99302,0.0,12/24/1318 +6.96077,46.18502,3911,6,17,4,4,51,3.55,5.0,fr,26521,78,1099200,1,8,Active Shallow Crust,0.0,89.99302,0.0,06/17/3911 +6.96077,46.18502,5629,8,19,20,54,29,3.55,5.0,fr,26522,112,1099200,1,8,Active Shallow Crust,0.0,89.99302,0.0,08/19/5629 +6.96077,46.18502,8027,1,30,3,42,59,3.55,5.0,fr,26523,160,1099200,1,8,Active Shallow Crust,0.0,89.99302,0.0,01/30/8027 +6.96077,46.18502,4152,11,12,13,26,19,3.55,5.0,fr,26524,83,1099200,1,8,Active Shallow Crust,0.0,89.99302,0.0,11/12/4152 +6.96077,46.18502,4563,12,5,9,44,35,3.55,5.0,fr,26525,91,1099200,1,8,Active Shallow Crust,0.0,89.99302,0.0,12/05/4563 +6.96077,46.18502,7289,1,28,6,56,15,3.55,5.0,fr,26526,145,1099200,1,8,Active Shallow Crust,0.0,89.99302,0.0,01/28/7289 +6.96077,46.18502,4339,5,24,4,59,4,3.55,5.0,fr,26527,86,1099200,1,8,Active Shallow Crust,0.0,89.99302,0.0,05/24/4339 +6.96077,46.18502,8704,1,7,2,49,3,3.55,15.0,fr,26528,174,1099201,1,2,Active Shallow Crust,0.0,89.99302,0.0,01/07/8704 +6.96077,46.18502,1788,3,2,19,20,47,3.55,15.0,fr,26529,35,1099201,1,2,Active Shallow Crust,0.0,89.99302,0.0,03/02/1788 +6.96077,46.18502,9388,10,30,1,46,13,3.55,5.0,fr,26530,187,1099203,1,4,Active Shallow Crust,240.0117,57.99815,0.0,10/30/9388 +6.96077,46.18502,4906,9,12,2,42,4,3.55,5.0,fr,26531,98,1099203,1,4,Active Shallow Crust,240.0117,57.99815,0.0,09/12/4906 +6.96077,46.18502,1284,7,23,4,36,9,3.55,5.0,fr,26532,25,1099203,1,4,Active Shallow Crust,240.0117,57.99815,0.0,07/23/1284 +6.96077,46.18502,8800,12,5,14,12,51,3.55,5.0,fr,26533,175,1099203,1,4,Active Shallow Crust,240.0117,57.99815,0.0,12/05/8800 +6.96077,46.18502,3866,6,22,0,18,56,3.55,5.0,fr,26534,77,1099206,1,2,Active Shallow Crust,0.0,89.99294,-90.0,06/22/3866 +6.96077,46.18502,3423,8,8,15,58,59,3.55,5.0,fr,26535,68,1099206,1,2,Active Shallow Crust,0.0,89.99294,-90.0,08/08/3423 +6.96077,46.18502,6378,8,5,19,58,40,3.55,15.0,fr,26536,127,1099207,1,1,Active Shallow Crust,0.0,89.99294,-90.0,08/05/6378 +6.96077,46.18502,1322,6,16,20,12,47,3.55,5.0,fr,26537,26,1099209,1,2,Active Shallow Crust,128.8953,89.99651,0.0,06/16/1322 +6.96077,46.18502,7837,4,9,14,57,45,3.55,5.0,fr,26538,156,1099209,1,2,Active Shallow Crust,128.8953,89.99651,0.0,04/09/7837 +6.96077,46.18502,8903,4,1,20,21,10,3.55,15.0,fr,26539,178,1099210,1,1,Active Shallow Crust,128.8953,89.99651,0.0,04/01/8903 +6.96077,46.18502,8266,4,5,23,45,50,3.65,5.0,fr,26540,165,1099212,1,10,Active Shallow Crust,0.0,89.98756,0.0,04/05/8266 +6.96077,46.18502,6106,6,1,2,31,21,3.65,5.0,fr,26541,122,1099212,1,10,Active Shallow Crust,0.0,89.98756,0.0,06/01/6106 +6.96077,46.18502,4371,1,17,8,2,12,3.65,5.0,fr,26542,87,1099212,1,10,Active Shallow Crust,0.0,89.98756,0.0,01/17/4371 +6.96077,46.18502,5479,12,1,3,8,40,3.65,5.0,fr,26543,109,1099212,1,10,Active Shallow Crust,0.0,89.98756,0.0,12/01/5479 +6.96077,46.18502,2787,2,15,12,37,46,3.65,5.0,fr,26544,55,1099212,1,10,Active Shallow Crust,0.0,89.98756,0.0,02/15/2787 +6.96077,46.18502,7843,6,5,9,47,37,3.65,5.0,fr,26545,156,1099212,1,10,Active Shallow Crust,0.0,89.98756,0.0,06/05/7843 +6.96077,46.18502,1451,11,9,13,22,24,3.65,5.0,fr,26546,29,1099212,1,10,Active Shallow Crust,0.0,89.98756,0.0,11/09/1451 +6.96077,46.18502,5692,1,18,14,48,10,3.65,5.0,fr,26547,113,1099212,1,10,Active Shallow Crust,0.0,89.98756,0.0,01/18/5692 +6.96077,46.18502,1321,9,6,12,25,58,3.65,5.0,fr,26548,26,1099212,1,10,Active Shallow Crust,0.0,89.98756,0.0,09/06/1321 +6.96077,46.18502,2,12,21,20,6,15,3.65,5.0,fr,26549,0,1099212,1,10,Active Shallow Crust,0.0,89.98756,0.0,12/21/0002 +6.96077,46.18502,9258,6,12,1,9,27,3.65,15.0,fr,26550,185,1099213,1,2,Active Shallow Crust,0.0,89.98756,0.0,06/12/9258 +6.96077,46.18502,3272,7,14,17,4,46,3.65,15.0,fr,26551,65,1099213,1,2,Active Shallow Crust,0.0,89.98756,0.0,07/14/3272 +6.96077,46.18502,6067,12,7,10,53,20,3.65,27.5,fr,26552,121,1099214,1,2,Active Shallow Crust,0.0,89.98756,0.0,12/07/6067 +6.96077,46.18502,9931,1,7,8,15,8,3.65,27.5,fr,26553,198,1099214,1,2,Active Shallow Crust,0.0,89.98756,0.0,01/07/9931 +6.96077,46.18502,8672,8,19,8,8,57,3.65,5.0,fr,26554,173,1099215,1,2,Active Shallow Crust,240.0014,58.01239,0.0,08/19/8672 +6.96077,46.18502,2078,12,6,14,49,5,3.65,5.0,fr,26555,41,1099215,1,2,Active Shallow Crust,240.0014,58.01239,0.0,12/06/2078 +6.96077,46.18502,5927,12,31,12,51,17,3.65,5.0,fr,26556,118,1099221,1,1,Active Shallow Crust,128.901,89.96352,0.0,12/31/5927 +6.96077,46.18502,8523,12,3,17,24,28,3.75,5.0,fr,26557,170,1099224,1,2,Active Shallow Crust,0.0,89.98891,0.0,12/03/8523 +6.96077,46.18502,7314,12,16,0,52,25,3.75,5.0,fr,26558,146,1099224,1,2,Active Shallow Crust,0.0,89.98891,0.0,12/16/7314 +6.96077,46.18502,3823,12,16,16,38,37,3.75,15.0,fr,26559,76,1099225,1,2,Active Shallow Crust,0.0,89.98891,0.0,12/16/3823 +6.96077,46.18502,5699,5,18,11,37,46,3.75,15.0,fr,26560,113,1099225,1,2,Active Shallow Crust,0.0,89.98891,0.0,05/18/5699 +6.96077,46.18502,2147,5,5,20,57,15,3.75,5.0,fr,26561,42,1099227,1,2,Active Shallow Crust,240.0085,58.01756,0.0,05/05/2147 +6.96077,46.18502,2977,6,20,18,14,58,3.75,5.0,fr,26562,59,1099227,1,2,Active Shallow Crust,240.0085,58.01756,0.0,06/20/2977 +6.96077,46.18502,8838,7,29,0,31,7,3.75,5.0,fr,26563,176,1099230,1,1,Active Shallow Crust,0.0,89.98878,-90.0,07/29/8838 +6.96077,46.18502,8299,7,4,3,51,45,3.85,5.0,fr,26564,165,1099236,1,3,Active Shallow Crust,0.0,89.99011,0.0,07/04/8299 +6.96077,46.18502,4756,5,16,18,34,27,3.85,5.0,fr,26565,95,1099236,1,3,Active Shallow Crust,0.0,89.99011,0.0,05/16/4756 +6.96077,46.18502,9292,1,4,20,23,22,3.85,5.0,fr,26566,185,1099236,1,3,Active Shallow Crust,0.0,89.99011,0.0,01/04/9292 +6.96077,46.18502,2556,11,24,23,35,42,3.85,15.0,fr,26567,51,1099237,1,3,Active Shallow Crust,0.0,89.99011,0.0,11/24/2556 +6.96077,46.18502,3208,9,13,6,39,47,3.85,15.0,fr,26568,64,1099237,1,3,Active Shallow Crust,0.0,89.99011,0.0,09/13/3208 +6.96077,46.18502,146,6,14,10,56,30,3.85,15.0,fr,26569,2,1099237,1,3,Active Shallow Crust,0.0,89.99011,0.0,06/14/0146 +6.96077,46.18502,1817,9,17,20,58,2,3.85,27.5,fr,26570,36,1099244,1,1,Active Shallow Crust,0.0,89.99,-90.0,09/17/1817 +6.96077,46.18502,9995,11,3,15,40,15,3.95,5.0,fr,26571,199,1099248,1,4,Active Shallow Crust,0.0,89.99119,0.0,11/03/9995 +6.96077,46.18502,186,4,25,13,49,12,3.95,5.0,fr,26572,3,1099248,1,4,Active Shallow Crust,0.0,89.99119,0.0,04/25/0186 +6.96077,46.18502,3736,2,3,18,25,58,3.95,5.0,fr,26573,74,1099248,1,4,Active Shallow Crust,0.0,89.99119,0.0,02/03/3736 +6.96077,46.18502,8383,3,17,4,36,4,3.95,5.0,fr,26574,167,1099248,1,4,Active Shallow Crust,0.0,89.99119,0.0,03/17/8383 +6.96077,46.18502,7691,12,13,11,40,23,3.95,27.5,fr,26575,153,1099250,1,1,Active Shallow Crust,0.0,89.99119,0.0,12/13/7691 +6.96077,46.18502,1483,4,21,12,22,52,3.95,5.0,fr,26576,29,1099257,1,1,Active Shallow Crust,128.9008,89.99339,0.0,04/21/1483 +6.96077,46.18502,4642,10,20,10,18,8,4.05,5.0,fr,26577,92,1099260,1,1,Active Shallow Crust,0.0,89.98822,0.0,10/20/4642 +6.96077,46.18502,7935,12,10,0,45,14,4.05,5.0,fr,26578,158,1099266,1,1,Active Shallow Crust,0.0,89.98808,-90.0,12/10/7935 +6.96077,46.18502,6545,8,29,2,10,5,4.05,15.0,fr,26579,130,1099270,1,1,Active Shallow Crust,128.8915,89.99215,0.0,08/29/6545 +6.96077,46.18502,9779,3,24,17,50,23,4.15,5.0,fr,26580,195,1099272,1,3,Active Shallow Crust,0.0,89.9895,0.0,03/24/9779 +6.96077,46.18502,140,8,27,0,46,43,4.15,5.0,fr,26581,2,1099272,1,3,Active Shallow Crust,0.0,89.9895,0.0,08/27/0140 +6.96077,46.18502,4562,6,12,4,17,36,4.15,5.0,fr,26582,91,1099272,1,3,Active Shallow Crust,0.0,89.9895,0.0,06/12/4562 +6.96077,46.18502,7431,4,27,0,27,33,4.15,27.5,fr,26583,148,1099274,1,1,Active Shallow Crust,0.0,89.9895,0.0,04/27/7431 +6.96077,46.18502,9053,7,9,1,14,1,4.15,15.0,fr,26584,181,1099276,1,1,Active Shallow Crust,240.0086,57.9973,0.0,07/09/9053 +6.96077,46.18502,4981,11,26,0,41,4,4.15,5.0,fr,26585,99,1099281,1,1,Active Shallow Crust,128.8983,89.993,0.0,11/26/4981 +6.96077,46.18502,6689,5,21,23,39,27,4.25,5.0,fr,26586,133,1099284,1,3,Active Shallow Crust,0.0,89.99065,0.0,05/21/6689 +6.96077,46.18502,2911,5,1,7,31,40,4.25,5.0,fr,26587,58,1099284,1,3,Active Shallow Crust,0.0,89.99065,0.0,05/01/2911 +6.96077,46.18502,3759,9,4,12,14,58,4.25,5.0,fr,26588,75,1099284,1,3,Active Shallow Crust,0.0,89.99065,0.0,09/04/3759 +6.96077,46.18502,7583,3,19,0,42,43,4.25,15.0,fr,26589,151,1099285,1,1,Active Shallow Crust,0.0,89.99065,0.0,03/19/7583 +6.96077,46.18502,4386,10,6,6,36,31,4.25,5.0,fr,26590,87,1099293,1,2,Active Shallow Crust,128.895,89.98093,0.0,10/06/4386 +6.96077,46.18502,7348,4,15,2,2,17,4.25,5.0,fr,26591,146,1099293,1,2,Active Shallow Crust,128.895,89.98093,0.0,04/15/7348 +6.96077,46.18502,6079,5,18,18,39,40,4.35,5.0,fr,26592,121,1099302,1,2,Active Shallow Crust,0.0,89.98875,-90.0,05/18/6079 +6.96077,46.18502,4937,1,5,1,50,42,4.35,5.0,fr,26593,98,1099302,1,2,Active Shallow Crust,0.0,89.98875,-90.0,01/05/4937 +6.96077,46.18502,8919,7,8,1,11,0,4.45,5.0,fr,26594,178,1099308,1,4,Active Shallow Crust,0.0,89.99009,0.0,07/08/8919 +6.96077,46.18502,493,8,11,5,15,31,4.45,5.0,fr,26595,9,1099308,1,4,Active Shallow Crust,0.0,89.99009,0.0,08/11/0493 +6.96077,46.18502,2026,6,5,20,4,28,4.45,5.0,fr,26596,40,1099308,1,4,Active Shallow Crust,0.0,89.99009,0.0,06/05/2026 +6.96077,46.18502,567,9,21,21,46,19,4.45,5.0,fr,26597,11,1099308,1,4,Active Shallow Crust,0.0,89.99009,0.0,09/21/0567 +6.96077,46.18502,3421,3,8,2,4,4,4.45,27.5,fr,26598,68,1099310,1,1,Active Shallow Crust,0.0,89.99009,0.0,03/08/3421 +6.96077,46.18502,8041,2,11,22,43,8,4.45,5.0,fr,26599,160,1099311,1,1,Active Shallow Crust,240.0052,57.99468,0.0,02/11/8041 +6.96077,46.18502,7802,5,21,9,24,22,4.55,5.0,fr,26600,156,1099320,1,1,Active Shallow Crust,0.0,89.98896,0.0,05/21/7802 +6.96077,46.18502,8644,9,20,3,55,42,4.55,15.0,fr,26601,172,1099324,1,1,Active Shallow Crust,240.0097,57.99702,0.0,09/20/8644 +6.96077,46.18502,309,11,10,1,55,29,4.55,5.0,fr,26602,6,1099326,1,2,Active Shallow Crust,0.0,89.99107,-90.0,11/10/0309 +6.96077,46.18502,1532,1,9,6,51,32,4.55,5.0,fr,26603,30,1099326,1,2,Active Shallow Crust,0.0,89.99107,-90.0,01/09/1532 +6.96077,46.18502,6970,1,2,19,10,14,4.65,5.0,fr,26604,139,1099332,1,1,Active Shallow Crust,0.0,89.99016,0.0,01/02/6970 +6.96077,46.18502,7077,10,17,0,39,55,4.65,15.0,fr,26605,141,1099333,1,1,Active Shallow Crust,0.0,89.99016,0.0,10/17/7077 +6.96077,46.18502,4266,3,4,8,9,57,4.65,5.0,fr,26606,85,1099338,1,1,Active Shallow Crust,0.0,89.99004,-90.0,03/04/4266 +6.96077,46.18502,33,10,26,0,58,54,4.75,5.0,fr,26607,0,1099344,1,1,Active Shallow Crust,0.0,89.98948,0.0,10/26/0033 +6.96077,46.18502,2629,3,12,0,36,45,4.75,5.0,fr,26608,52,1099350,1,1,Active Shallow Crust,0.0,89.98936,-90.0,03/12/2629 +6.96077,46.18502,6134,5,19,22,7,19,4.85,5.0,fr,26609,122,1099356,1,1,Active Shallow Crust,0.0,89.99062,0.0,05/19/6134 +6.96077,46.18502,7766,4,25,6,19,48,4.95,15.0,fr,26610,155,1099369,1,1,Active Shallow Crust,0.0,89.99025,0.0,04/25/7766 +6.96077,46.18502,7926,6,19,8,36,46,5.05,5.0,fr,26611,158,1099389,1,1,Active Shallow Crust,128.8855,89.99052,0.0,06/19/7926 +6.96077,46.18502,8685,12,19,20,34,2,5.65,5.0,fr,26612,173,1099458,1,1,Active Shallow Crust,0.0,89.98992,-90.0,12/19/8685 +2.77424,41.23431,8914,8,26,15,28,24,3.55,15.0,fr,26613,178,1099681,1,1,Active Shallow Crust,0.0,89.98862,0.0,08/26/8914 +2.77424,41.23431,2865,8,29,17,32,1,3.55,5.0,fr,26614,57,1099686,1,1,Active Shallow Crust,0.0,89.98849,-90.0,08/29/2865 +2.77424,41.23431,6248,11,7,23,26,6,3.75,5.0,fr,26615,124,1099704,1,1,Active Shallow Crust,0.0,89.99097,0.0,11/07/6248 +2.77424,41.23431,7938,4,13,18,45,40,3.85,5.0,fr,26616,158,1099716,1,1,Active Shallow Crust,0.0,89.98927,0.0,04/13/7938 +2.77424,41.23431,7444,1,28,13,6,32,3.95,5.0,fr,26617,148,1099728,1,1,Active Shallow Crust,0.0,89.99043,0.0,01/28/7444 +2.77424,41.23431,3927,7,2,13,22,0,4.55,5.0,fr,26618,78,1099803,1,1,Active Shallow Crust,240.0078,57.99717,0.0,07/02/3927 +2.77424,41.23431,1202,6,27,4,49,23,4.65,5.0,fr,26619,24,1099812,1,1,Active Shallow Crust,0.0,89.99038,0.0,06/27/1202 +2.77424,41.23431,5789,5,8,5,55,59,4.65,5.0,fr,26620,115,1099815,1,1,Active Shallow Crust,240.0093,57.99403,0.0,05/08/5789 +-0.65952,42.41771,8647,4,6,18,26,31,3.55,5.0,fr,26621,172,1100160,1,1,Active Shallow Crust,0.0,89.98976,0.0,04/06/8647 +-0.65952,42.41771,9819,6,28,5,4,54,3.65,27.5,fr,26622,196,1100174,1,1,Active Shallow Crust,0.0,89.99005,0.0,06/28/9819 +-0.65952,42.41771,834,8,11,4,41,14,3.95,5.0,fr,26623,16,1100208,1,1,Active Shallow Crust,0.0,89.99002,0.0,08/11/0834 +-0.65952,42.41771,4129,6,28,10,10,0,4.55,27.5,fr,26624,82,1100282,1,1,Active Shallow Crust,0.0,89.99,0.0,06/28/4129 +-0.65952,42.41771,8509,3,30,6,52,36,5.35,15.0,fr,26625,170,1100380,1,1,Active Shallow Crust,240.0223,58.00106,0.0,03/30/8509 +4.3542,43.47706,6969,9,9,9,8,32,3.55,5.0,fr,26626,139,1100640,1,1,Active Shallow Crust,0.0,89.99268,0.0,09/09/6969 +4.3542,43.47706,7609,3,8,17,44,14,3.65,15.0,fr,26627,152,1100653,1,1,Active Shallow Crust,0.0,89.98695,0.0,03/08/7609 +4.3542,43.47706,5276,4,20,7,0,22,3.75,5.0,fr,26628,105,1100664,1,1,Active Shallow Crust,0.0,89.98837,0.0,04/20/5276 +4.3542,43.47706,8439,5,24,21,43,19,3.85,5.0,fr,26629,168,1100676,1,1,Active Shallow Crust,0.0,89.98964,0.0,05/24/8439 +4.3542,43.47706,355,11,20,0,28,50,3.95,15.0,fr,26630,7,1100689,1,1,Active Shallow Crust,0.0,89.99077,0.0,11/20/0355 +4.3542,43.47706,4488,2,27,14,4,7,4.05,5.0,fr,26631,89,1100700,1,1,Active Shallow Crust,0.0,89.99177,0.0,02/27/4488 +4.3542,43.47706,8896,11,15,10,15,43,4.25,5.0,fr,26632,177,1100724,1,2,Active Shallow Crust,0.0,89.9902,0.0,11/15/8896 +4.3542,43.47706,9623,10,21,17,13,14,4.25,5.0,fr,26633,192,1100724,1,2,Active Shallow Crust,0.0,89.9902,0.0,10/21/9623 +5.64466,44.04995,7423,11,27,2,39,45,3.55,5.0,fr,26634,148,1101600,1,1,Active Shallow Crust,0.0,89.99275,0.0,11/27/7423 +5.64466,44.04995,3373,10,26,18,16,6,3.55,27.5,fr,26635,67,1101602,1,1,Active Shallow Crust,0.0,89.99275,0.0,10/26/3373 +5.64466,44.04995,1671,2,11,12,8,30,3.55,15.0,fr,26636,33,1101610,1,1,Active Shallow Crust,128.8971,89.99275,0.0,02/11/1671 +5.64466,44.04995,7165,6,15,18,50,54,3.65,5.0,fr,26637,143,1101615,1,1,Active Shallow Crust,239.9994,58.01339,0.0,06/15/7165 +5.64466,44.04995,4403,2,23,10,31,48,3.75,5.0,fr,26638,88,1101624,1,2,Active Shallow Crust,0.0,89.98849,0.0,02/23/4403 +5.64466,44.04995,414,10,22,4,32,54,3.75,5.0,fr,26639,8,1101624,1,2,Active Shallow Crust,0.0,89.98849,0.0,10/22/0414 +5.64466,44.04995,8379,1,5,21,41,16,3.75,5.0,fr,26640,167,1101627,1,1,Active Shallow Crust,240.0088,58.0174,0.0,01/05/8379 +5.64466,44.04995,7356,8,16,12,6,54,3.75,27.5,fr,26641,147,1101632,1,1,Active Shallow Crust,0.0,89.98835,-90.0,08/16/7356 +5.64466,44.04995,205,10,2,2,38,1,3.85,15.0,fr,26642,4,1101637,1,1,Active Shallow Crust,0.0,89.98974,0.0,10/02/0205 +5.64466,44.04995,1424,10,30,19,20,26,3.85,5.0,fr,26643,28,1101639,1,1,Active Shallow Crust,240.0107,57.99815,0.0,10/30/1424 +5.64466,44.04995,7142,1,31,22,14,59,3.95,5.0,fr,26644,142,1101654,1,1,Active Shallow Crust,0.0,89.99075,-90.0,01/31/7142 +5.64466,44.04995,288,10,15,16,33,6,4.05,5.0,fr,26645,5,1101660,1,2,Active Shallow Crust,0.0,89.99185,0.0,10/15/0288 +5.64466,44.04995,7571,6,5,2,3,37,4.05,5.0,fr,26646,151,1101660,1,2,Active Shallow Crust,0.0,89.99185,0.0,06/05/7571 +5.64466,44.04995,9696,12,15,3,55,55,4.15,5.0,fr,26647,193,1101672,1,1,Active Shallow Crust,0.0,89.98911,0.0,12/15/9696 +5.64466,44.04995,5464,1,26,23,11,43,4.25,5.0,fr,26648,109,1101684,1,1,Active Shallow Crust,0.0,89.99029,0.0,01/26/5464 +5.64466,44.04995,3186,8,23,0,33,28,4.25,15.0,fr,26649,63,1101688,1,1,Active Shallow Crust,240.0067,57.99401,0.0,08/23/3186 +5.64466,44.04995,964,5,11,6,59,13,4.35,5.0,fr,26650,19,1101696,1,1,Active Shallow Crust,0.0,89.99134,0.0,05/11/0964 +5.64466,44.04995,2978,3,29,19,53,39,5.25,27.5,fr,26651,59,1101809,1,1,Active Shallow Crust,240.0191,57.99986,0.0,03/29/2978 +2.39258,43.31516,4932,5,6,13,23,47,3.55,15.0,fr,26652,98,1102081,1,1,Active Shallow Crust,0.0,89.989,0.0,05/06/4932 +2.39258,43.31516,1320,1,6,10,54,53,3.65,5.0,fr,26653,26,1102092,1,1,Active Shallow Crust,0.0,89.99019,0.0,01/06/1320 +2.39258,43.31516,5291,1,5,18,52,1,3.75,5.0,fr,26654,105,1102107,1,1,Active Shallow Crust,240.0078,58.01776,0.0,01/05/5291 +2.39258,43.31516,838,12,30,12,20,48,4.15,5.0,fr,26655,16,1102152,1,1,Active Shallow Crust,0.0,89.99081,0.0,12/30/0838 +2.39258,43.31516,890,4,30,7,37,56,4.55,15.0,fr,26656,17,1102201,1,1,Active Shallow Crust,0.0,89.98956,0.0,04/30/0890 +4.92178,51.46709,2251,9,25,4,58,41,3.65,5.0,fr,26657,45,1102572,1,1,Active Shallow Crust,0.0,89.9888,0.0,09/25/2251 +4.92178,51.46709,7534,9,1,21,42,21,3.95,5.0,fr,26658,150,1102608,1,1,Active Shallow Crust,0.0,89.98811,0.0,09/01/7534 +4.92178,51.46709,9943,1,20,17,48,32,4.05,5.0,fr,26659,198,1102623,1,1,Active Shallow Crust,240.0069,58.00555,0.0,01/20/9943 +4.92178,51.46709,7853,3,7,13,40,44,4.55,15.0,fr,26660,157,1102687,1,1,Active Shallow Crust,0.0,89.98995,-90.0,03/07/7853 +4.92178,51.46709,4899,12,16,16,27,37,5.25,5.0,fr,26661,97,1102764,1,1,Active Shallow Crust,0.0,89.99023,0.0,12/16/4899 +-1.86825,45.86356,3221,4,17,11,2,0,3.75,15.0,fr,26662,64,1103065,1,1,Active Shallow Crust,0.0,89.99024,0.0,04/17/3221 +1.57233,48.12896,2054,2,28,22,0,0,3.55,15.0,fr,26663,41,1103521,1,1,Active Shallow Crust,0.0,89.98991,0.0,02/28/2054 +1.57233,48.12896,4447,7,27,7,39,26,3.65,15.0,fr,26664,88,1103533,1,1,Active Shallow Crust,0.0,89.9895,0.0,07/27/4447 +1.57233,48.12896,76,3,15,2,10,15,3.65,5.0,fr,26665,1,1103535,1,1,Active Shallow Crust,240.0014,58.01288,0.0,03/15/0076 +1.57233,48.12896,8005,1,20,5,51,18,3.75,5.0,fr,26666,160,1103544,1,1,Active Shallow Crust,0.0,89.99065,0.0,01/20/8005 +1.57233,48.12896,9546,1,22,11,19,3,3.95,27.5,fr,26667,190,1103570,1,1,Active Shallow Crust,0.0,89.99045,0.0,01/22/9546 +1.57233,48.12896,3651,3,10,16,5,56,4.05,5.0,fr,26668,73,1103583,1,1,Active Shallow Crust,240.006,58.00596,0.0,03/10/3651 +1.57233,48.12896,2686,6,8,3,59,1,4.15,5.0,fr,26669,53,1103592,1,1,Active Shallow Crust,0.0,89.98988,0.0,06/08/2686 +1.57233,48.12896,4493,4,23,1,53,56,5.25,5.0,fr,26670,89,1103733,1,1,Active Shallow Crust,128.8823,89.98704,0.0,04/23/4493 +-0.95353,43.76171,5665,1,28,0,42,6,3.55,5.0,fr,26671,113,1104000,1,2,Active Shallow Crust,0.0,89.98998,0.0,01/28/5665 +-0.95353,43.76171,1711,7,9,18,38,43,3.55,5.0,fr,26672,34,1104000,1,2,Active Shallow Crust,0.0,89.98998,0.0,07/09/1711 +-0.95353,43.76171,5044,2,23,17,40,46,3.55,15.0,fr,26673,100,1104001,1,1,Active Shallow Crust,0.0,89.98998,0.0,02/23/5044 +-0.95353,43.76171,1125,12,19,20,35,17,4.15,5.0,fr,26674,22,1104075,1,1,Active Shallow Crust,240.008,57.99725,0.0,12/19/1125 +7.03133,47.22915,8317,5,10,23,23,15,3.55,5.0,fr,26675,166,1104480,1,2,Active Shallow Crust,0.0,89.99315,0.0,05/10/8317 +7.03133,47.22915,7684,8,20,1,56,38,3.55,5.0,fr,26676,153,1104480,1,2,Active Shallow Crust,0.0,89.99315,0.0,08/20/7684 +7.03133,47.22915,9222,7,3,6,54,14,3.55,27.5,fr,26677,184,1104482,1,1,Active Shallow Crust,0.0,89.99315,0.0,07/03/9222 +7.03133,47.22915,9052,11,25,10,54,7,3.55,5.0,fr,26678,181,1104483,1,1,Active Shallow Crust,240.0124,57.99808,0.0,11/25/9052 +7.03133,47.22915,8828,12,31,11,45,8,3.65,5.0,fr,26679,176,1104492,1,3,Active Shallow Crust,0.0,89.98779,0.0,12/31/8828 +7.03133,47.22915,192,8,11,18,29,17,3.65,5.0,fr,26680,3,1104492,1,3,Active Shallow Crust,0.0,89.98779,0.0,08/11/0192 +7.03133,47.22915,6940,10,11,5,42,33,3.65,5.0,fr,26681,138,1104492,1,3,Active Shallow Crust,0.0,89.98779,0.0,10/11/6940 +7.03133,47.22915,8392,11,8,8,41,25,3.65,15.0,fr,26682,167,1104493,1,1,Active Shallow Crust,0.0,89.98779,0.0,11/08/8392 +7.03133,47.22915,7620,6,10,15,0,40,3.65,5.0,fr,26683,152,1104495,1,1,Active Shallow Crust,240.0007,58.01281,0.0,06/10/7620 +7.03133,47.22915,208,7,29,18,25,36,3.65,5.0,fr,26684,4,1104501,1,1,Active Shallow Crust,128.9008,89.96354,0.0,07/29/0208 +7.03133,47.22915,7343,9,9,14,9,10,3.75,5.0,fr,26685,146,1104504,1,5,Active Shallow Crust,0.0,89.98912,0.0,09/09/7343 +7.03133,47.22915,9536,6,10,1,19,57,3.75,5.0,fr,26686,190,1104504,1,5,Active Shallow Crust,0.0,89.98912,0.0,06/10/9536 +7.03133,47.22915,2956,9,10,13,16,38,3.75,5.0,fr,26687,59,1104504,1,5,Active Shallow Crust,0.0,89.98912,0.0,09/10/2956 +7.03133,47.22915,9298,12,18,17,15,1,3.75,5.0,fr,26688,185,1104504,1,5,Active Shallow Crust,0.0,89.98912,0.0,12/18/9298 +7.03133,47.22915,1584,2,5,4,31,29,3.75,5.0,fr,26689,31,1104504,1,5,Active Shallow Crust,0.0,89.98912,0.0,02/05/1584 +7.03133,47.22915,8963,2,5,5,8,27,3.75,15.0,fr,26690,179,1104505,1,2,Active Shallow Crust,0.0,89.98912,0.0,02/05/8963 +7.03133,47.22915,2496,2,7,19,59,12,3.75,15.0,fr,26691,49,1104505,1,2,Active Shallow Crust,0.0,89.98912,0.0,02/07/2496 +7.03133,47.22915,11,6,20,5,30,14,3.75,5.0,fr,26692,0,1104507,1,1,Active Shallow Crust,240.0079,58.01749,0.0,06/20/0011 +7.03133,47.22915,6344,2,20,19,26,26,3.85,5.0,fr,26693,126,1104516,1,1,Active Shallow Crust,0.0,89.9903,0.0,02/20/6344 +7.03133,47.22915,5318,3,8,11,21,22,3.85,15.0,fr,26694,106,1104517,1,2,Active Shallow Crust,0.0,89.9903,0.0,03/08/5318 +7.03133,47.22915,5383,8,17,4,48,28,3.85,15.0,fr,26695,107,1104517,1,2,Active Shallow Crust,0.0,89.9903,0.0,08/17/5383 +7.03133,47.22915,3148,8,6,6,57,0,3.85,5.0,fr,26696,62,1104519,1,1,Active Shallow Crust,240.0114,57.99779,0.0,08/06/3148 +7.03133,47.22915,7416,11,25,21,46,39,3.85,15.0,fr,26697,148,1104523,1,1,Active Shallow Crust,0.0,89.99019,-90.0,11/25/7416 +7.03133,47.22915,7267,12,13,1,20,11,3.95,5.0,fr,26698,145,1104528,1,3,Active Shallow Crust,0.0,89.99136,0.0,12/13/7267 +7.03133,47.22915,2915,4,13,8,36,6,3.95,5.0,fr,26699,58,1104528,1,3,Active Shallow Crust,0.0,89.99136,0.0,04/13/2915 +7.03133,47.22915,1683,9,13,4,41,7,3.95,5.0,fr,26700,33,1104528,1,3,Active Shallow Crust,0.0,89.99136,0.0,09/13/1683 +7.03133,47.22915,1039,8,16,8,41,6,3.95,15.0,fr,26701,20,1104529,1,1,Active Shallow Crust,0.0,89.99136,0.0,08/16/1039 +7.03133,47.22915,7421,1,31,20,24,20,3.95,5.0,fr,26702,148,1104537,1,1,Active Shallow Crust,128.9,89.99352,0.0,01/31/7421 +7.03133,47.22915,2527,8,2,18,2,57,4.05,5.0,fr,26703,50,1104540,1,1,Active Shallow Crust,0.0,89.98845,0.0,08/02/2527 +7.03133,47.22915,6392,1,5,6,2,44,4.05,5.0,fr,26704,127,1104543,1,1,Active Shallow Crust,240.006,58.00623,0.0,01/05/6392 +7.03133,47.22915,8440,4,10,11,56,26,4.05,15.0,fr,26705,168,1104544,1,1,Active Shallow Crust,240.006,58.0062,0.0,04/10/8440 +7.03133,47.22915,656,10,10,7,3,40,4.15,5.0,fr,26706,13,1104552,1,2,Active Shallow Crust,0.0,89.9897,0.0,10/10/0656 +7.03133,47.22915,5643,6,25,11,53,21,4.15,5.0,fr,26707,112,1104552,1,2,Active Shallow Crust,0.0,89.9897,0.0,06/25/5643 +7.03133,47.22915,2555,7,31,4,44,20,4.15,15.0,fr,26708,51,1104553,1,1,Active Shallow Crust,0.0,89.9897,0.0,07/31/2555 +7.03133,47.22915,7330,10,11,15,41,57,4.25,15.0,fr,26709,146,1104565,1,1,Active Shallow Crust,0.0,89.99082,0.0,10/11/7330 +7.03133,47.22915,8222,4,28,8,58,18,4.25,15.0,fr,26710,164,1104571,1,1,Active Shallow Crust,0.0,89.99072,-90.0,04/28/8222 +7.03133,47.22915,5648,8,20,2,59,45,5.65,15.0,fr,26711,112,1104733,1,1,Active Shallow Crust,0.0,89.99023,0.0,08/20/5648 +5.46254,49.19313,645,8,31,7,36,37,3.95,5.0,fr,26712,12,1105008,1,1,Active Shallow Crust,0.0,89.99168,0.0,08/31/0645 +5.46254,49.19313,695,9,25,10,33,33,4.05,5.0,fr,26713,13,1105020,1,1,Active Shallow Crust,0.0,89.98888,0.0,09/25/0695 +0.58998,52.13123,2003,6,24,17,56,46,3.75,27.5,fr,26714,40,1105469,1,1,Active Shallow Crust,240.0091,58.01767,0.0,06/24/2003 +0.58998,52.13123,5775,4,9,9,59,2,3.85,5.0,fr,26715,115,1105482,1,1,Active Shallow Crust,0.0,89.99003,-90.0,04/09/5775 +0.58998,52.13123,2877,2,13,0,9,2,3.95,5.0,fr,26716,57,1105497,1,1,Active Shallow Crust,128.8996,89.99365,0.0,02/13/2877 +0.58998,52.13123,1303,7,13,14,46,3,4.25,15.0,fr,26717,26,1105525,1,1,Active Shallow Crust,0.0,89.98997,0.0,07/13/1303 +1.90542,46.95486,1277,10,29,22,30,43,3.55,5.0,fr,26718,25,1105920,1,1,Active Shallow Crust,0.0,89.98968,0.0,10/29/1277 +1.90542,46.95486,4224,3,2,9,24,27,3.55,5.0,fr,26719,84,1105926,1,1,Active Shallow Crust,0.0,89.98956,-90.0,03/02/4224 +1.90542,46.95486,3717,11,26,11,1,36,3.85,5.0,fr,26720,74,1105962,1,1,Active Shallow Crust,0.0,89.99014,-90.0,11/26/3717 +1.90542,46.95486,1032,12,5,20,8,39,4.15,5.0,fr,26721,20,1105992,1,1,Active Shallow Crust,0.0,89.98965,0.0,12/05/1032 +1.90542,46.95486,3963,3,31,22,29,27,4.45,5.0,fr,26722,79,1106028,1,1,Active Shallow Crust,0.0,89.99023,0.0,03/31/3963 +1.90542,46.95486,4392,3,26,18,24,57,4.45,15.0,fr,26723,87,1106029,1,1,Active Shallow Crust,0.0,89.99023,0.0,03/26/4392 +1.90542,46.95486,6942,4,25,2,30,57,4.65,5.0,fr,26724,138,1106058,1,1,Active Shallow Crust,0.0,89.99019,-90.0,04/25/6942 +3.9423,40.32205,1360,2,5,0,28,46,4.05,5.0,fr,26725,27,1106460,1,1,Active Shallow Crust,0.0,89.98919,0.0,02/05/1360 +-1.12014,48.09275,8186,5,12,2,13,41,3.55,5.0,fr,26726,163,1107363,1,1,Active Shallow Crust,240.0121,57.99839,0.0,05/12/8186 +-1.12014,48.09275,37,3,20,0,27,11,3.65,5.0,fr,26727,0,1107372,1,1,Active Shallow Crust,0.0,89.98949,0.0,03/20/0037 +-1.12014,48.09275,2504,10,8,3,7,37,3.75,5.0,fr,26728,50,1107384,1,3,Active Shallow Crust,0.0,89.99064,0.0,10/08/2504 +-1.12014,48.09275,6898,5,6,20,38,56,3.75,5.0,fr,26729,137,1107384,1,3,Active Shallow Crust,0.0,89.99064,0.0,05/06/6898 +-1.12014,48.09275,3476,12,18,9,42,49,3.75,5.0,fr,26730,69,1107384,1,3,Active Shallow Crust,0.0,89.99064,0.0,12/18/3476 +-1.12014,48.09275,3550,7,8,14,36,58,3.85,5.0,fr,26731,70,1107396,1,1,Active Shallow Crust,0.0,89.99046,0.0,07/08/3550 +-1.12014,48.09275,4144,9,28,8,26,48,3.95,15.0,fr,26732,82,1107409,1,1,Active Shallow Crust,0.0,89.99044,0.0,09/28/4144 +-1.12014,48.09275,6321,2,21,13,52,49,4.05,5.0,fr,26733,126,1107420,1,1,Active Shallow Crust,0.0,89.98959,0.0,02/21/6321 +-1.12014,48.09275,4791,9,23,16,8,10,4.15,15.0,fr,26734,95,1107433,1,2,Active Shallow Crust,0.0,89.98988,0.0,09/23/4791 +-1.12014,48.09275,5590,10,20,23,12,55,4.15,15.0,fr,26735,111,1107433,1,2,Active Shallow Crust,0.0,89.98988,0.0,10/20/5590 +-1.12014,48.09275,494,6,25,19,40,54,4.15,5.0,fr,26736,9,1107435,1,1,Active Shallow Crust,240.0087,57.99733,0.0,06/25/0494 +-1.12014,48.09275,9819,12,2,19,19,0,4.75,5.0,fr,26737,196,1107504,1,1,Active Shallow Crust,0.0,89.98985,0.0,12/02/9819 +6.01082,43.02972,7428,6,28,0,55,59,3.55,5.0,fr,26738,148,1107843,1,1,Active Shallow Crust,240.0113,57.99805,0.0,06/28/7428 +6.01082,43.02972,6472,11,10,11,15,3,3.75,5.0,fr,26739,129,1107864,1,1,Active Shallow Crust,0.0,89.98829,0.0,11/10/6472 +6.01082,43.02972,8684,3,25,23,9,45,3.75,27.5,fr,26740,173,1107866,1,1,Active Shallow Crust,0.0,89.98829,0.0,03/25/8684 +6.01082,43.02972,1275,10,20,20,24,49,4.35,15.0,fr,26741,25,1107937,1,1,Active Shallow Crust,0.0,89.9912,0.0,10/20/1275 +4.64903,42.31458,3413,9,6,18,2,57,3.65,5.0,fr,26742,68,1108332,1,2,Active Shallow Crust,0.0,89.98671,0.0,09/06/3413 +4.64903,42.31458,5435,4,5,4,14,31,3.65,5.0,fr,26743,108,1108332,1,2,Active Shallow Crust,0.0,89.98671,0.0,04/05/5435 +4.64903,42.31458,3526,5,16,22,0,4,3.65,15.0,fr,26744,70,1108333,1,1,Active Shallow Crust,0.0,89.98671,0.0,05/16/3526 +4.68245,44.0538,6437,3,3,15,48,3,3.55,5.0,fr,26745,128,1108800,1,1,Active Shallow Crust,0.0,89.99275,0.0,03/03/6437 +4.68245,44.0538,8633,5,23,8,55,44,3.55,27.5,fr,26746,172,1108802,1,1,Active Shallow Crust,0.0,89.99275,0.0,05/23/8633 +4.68245,44.0538,6111,8,4,13,14,48,3.55,5.0,fr,26747,122,1108803,1,1,Active Shallow Crust,240.012,57.99739,0.0,08/04/6111 +4.68245,44.0538,122,8,1,8,55,42,3.65,5.0,fr,26748,2,1108812,1,1,Active Shallow Crust,0.0,89.98708,0.0,08/01/0122 +4.68245,44.0538,3275,8,14,13,15,47,3.75,5.0,fr,26749,65,1108824,1,1,Active Shallow Crust,0.0,89.98849,0.0,08/14/3275 +4.68245,44.0538,9903,6,14,13,10,32,3.75,5.0,fr,26750,198,1108827,1,1,Active Shallow Crust,240.0072,58.01781,0.0,06/14/9903 +4.68245,44.0538,4103,1,24,6,56,14,3.75,15.0,fr,26751,82,1108828,1,1,Active Shallow Crust,240.0072,58.01781,0.0,01/24/4103 +4.68245,44.0538,9450,11,19,8,0,7,3.75,5.0,fr,26752,188,1108830,1,1,Active Shallow Crust,0.0,89.98835,-90.0,11/19/9450 +4.68245,44.0538,4472,10,6,11,18,52,3.75,5.0,fr,26753,89,1108833,1,1,Active Shallow Crust,128.8977,89.96682,0.0,10/06/4472 +4.68245,44.0538,9108,12,12,8,9,32,3.85,27.5,fr,26754,182,1108847,1,1,Active Shallow Crust,128.8956,89.99487,0.0,12/12/9108 +4.68245,44.0538,9555,6,18,13,7,49,3.95,5.0,fr,26755,191,1108848,1,2,Active Shallow Crust,0.0,89.99085,0.0,06/18/9555 +4.68245,44.0538,4520,12,9,18,19,19,3.95,5.0,fr,26756,90,1108848,1,2,Active Shallow Crust,0.0,89.99085,0.0,12/09/4520 +4.68245,44.0538,8339,11,20,20,56,24,4.05,5.0,fr,26757,166,1108860,1,1,Active Shallow Crust,0.0,89.99185,0.0,11/20/8339 +4.68245,44.0538,716,10,23,1,8,33,4.05,5.0,fr,26758,14,1108863,1,1,Active Shallow Crust,240.0051,58.00566,0.0,10/23/0716 +4.68245,44.0538,6579,7,31,9,6,8,4.15,15.0,fr,26759,131,1108873,1,1,Active Shallow Crust,0.0,89.98911,0.0,07/31/6579 +4.68245,44.0538,5692,9,25,14,49,43,4.35,15.0,fr,26760,113,1108897,1,1,Active Shallow Crust,0.0,89.99134,0.0,09/25/5692 +4.68245,44.0538,1390,12,13,15,57,15,4.35,27.5,fr,26761,27,1108907,1,1,Active Shallow Crust,128.8978,89.98294,0.0,12/13/1390 +4.68245,44.0538,3769,8,27,14,11,12,4.45,5.0,fr,26762,75,1108908,1,2,Active Shallow Crust,0.0,89.98972,0.0,08/27/3769 +4.68245,44.0538,5584,11,19,4,55,50,4.45,5.0,fr,26763,111,1108908,1,2,Active Shallow Crust,0.0,89.98972,0.0,11/19/5584 +4.68245,44.0538,4470,12,13,22,22,5,4.75,15.0,fr,26764,89,1108945,1,1,Active Shallow Crust,0.0,89.9909,0.0,12/13/4470 +4.68245,44.0538,3290,8,19,4,38,55,4.75,5.0,fr,26765,65,1108947,1,1,Active Shallow Crust,240.0069,58.00415,0.0,08/19/3290 +4.68245,44.0538,5489,7,19,23,40,9,4.85,27.5,fr,26766,109,1108958,1,1,Active Shallow Crust,0.0,89.99026,0.0,07/19/5489 +4.68245,44.0538,9274,2,21,1,35,51,5.25,5.0,fr,26767,185,1109010,1,1,Active Shallow Crust,0.0,89.98964,-90.0,02/21/9274 +4.68245,44.0538,7147,1,10,21,25,27,5.55,5.0,fr,26768,142,1109040,1,1,Active Shallow Crust,0.0,89.98985,0.0,01/10/7147 +-1.23302,46.32942,1526,2,6,9,39,37,3.55,5.0,fr,26769,30,1109280,1,2,Active Shallow Crust,0.0,89.98956,0.0,02/06/1526 +-1.23302,46.32942,8740,6,3,21,9,12,3.55,5.0,fr,26770,174,1109280,1,2,Active Shallow Crust,0.0,89.98956,0.0,06/03/8740 +-1.23302,46.32942,8186,2,26,3,24,49,3.55,15.0,fr,26771,163,1109281,1,1,Active Shallow Crust,0.0,89.98956,0.0,02/26/8186 +-1.23302,46.32942,3482,10,16,0,29,10,3.55,27.5,fr,26772,69,1109282,1,1,Active Shallow Crust,0.0,89.98956,0.0,10/16/3482 +-1.23302,46.32942,5688,4,9,21,42,26,3.55,5.0,fr,26773,113,1109283,1,1,Active Shallow Crust,240.0122,57.9981,0.0,04/09/5688 +-1.23302,46.32942,5815,10,17,11,36,53,3.65,5.0,fr,26774,116,1109292,1,1,Active Shallow Crust,0.0,89.99069,0.0,10/17/5815 +-1.23302,46.32942,1237,3,23,0,41,55,3.95,15.0,fr,26775,24,1109329,1,1,Active Shallow Crust,0.0,89.99011,0.0,03/23/1237 +-1.23302,46.32942,4705,6,27,21,32,54,3.95,27.5,fr,26776,94,1109330,1,1,Active Shallow Crust,0.0,89.99011,0.0,06/27/4705 +-1.23302,46.32942,9058,12,9,19,50,21,4.05,15.0,fr,26777,181,1109341,1,1,Active Shallow Crust,0.0,89.99021,0.0,12/09/9058 +-1.23302,46.32942,1161,12,5,8,43,25,4.15,5.0,fr,26778,23,1109361,1,1,Active Shallow Crust,128.8974,89.9939,0.0,12/05/1161 +-1.23302,46.32942,730,8,19,8,35,29,4.15,15.0,fr,26779,14,1109362,1,1,Active Shallow Crust,128.8974,89.9939,0.0,08/19/0730 +-1.23302,46.32942,7537,11,29,15,51,45,4.25,5.0,fr,26780,150,1109370,1,1,Active Shallow Crust,0.0,89.98978,-90.0,11/29/7537 +-1.23302,46.32942,379,6,15,22,42,51,4.65,15.0,fr,26781,7,1109413,1,1,Active Shallow Crust,0.0,89.99019,0.0,06/15/0379 +-1.23302,46.32942,1652,2,10,0,52,54,4.85,27.5,fr,26782,33,1109438,1,1,Active Shallow Crust,0.0,89.98987,0.0,02/10/1652 +-1.23302,46.32942,2943,5,4,18,2,54,5.15,15.0,fr,26783,58,1109473,1,1,Active Shallow Crust,0.0,89.99007,0.0,05/04/2943 +-0.40628,42.16954,1665,11,24,0,31,54,3.85,5.0,fr,26784,33,1109799,1,1,Active Shallow Crust,240.0103,57.99766,0.0,11/24/1665 +-0.40628,42.16954,1404,6,12,4,34,20,4.25,5.0,fr,26785,28,1109844,1,1,Active Shallow Crust,0.0,89.98998,0.0,06/12/1404 +3.86642,52.0799,3225,9,14,22,17,8,3.65,15.0,fr,26786,64,1110253,1,1,Active Shallow Crust,0.0,89.98895,0.0,09/14/3225 +6.86175,43.80121,3513,6,15,20,29,45,3.55,15.0,fr,26787,70,1110724,1,1,Active Shallow Crust,240.012,57.99777,0.0,06/15/3513 +6.86175,43.80121,3493,10,19,18,56,11,3.65,15.0,fr,26788,69,1110733,1,1,Active Shallow Crust,0.0,89.98703,0.0,10/19/3493 +6.86175,43.80121,3638,5,31,20,18,14,3.75,5.0,fr,26789,72,1110744,1,1,Active Shallow Crust,0.0,89.98843,0.0,05/31/3638 +6.86175,43.80121,5979,1,5,8,11,17,3.75,5.0,fr,26790,119,1110747,1,1,Active Shallow Crust,240.0087,58.01738,0.0,01/05/5979 +6.86175,43.80121,5856,10,12,18,33,6,3.85,5.0,fr,26791,117,1110759,1,1,Active Shallow Crust,240.0103,57.99848,0.0,10/12/5856 +6.86175,43.80121,3954,5,3,13,3,28,3.95,5.0,fr,26792,79,1110771,1,1,Active Shallow Crust,240.019,58.00455,0.0,05/03/3954 +6.86175,43.80121,649,5,15,21,23,25,3.95,5.0,fr,26793,12,1110777,1,1,Active Shallow Crust,128.8995,89.99541,0.0,05/15/0649 +6.86175,43.80121,362,6,30,17,6,21,4.05,5.0,fr,26794,7,1110780,1,3,Active Shallow Crust,0.0,89.99181,0.0,06/30/0362 +6.86175,43.80121,25,7,15,3,47,40,4.05,5.0,fr,26795,0,1110780,1,3,Active Shallow Crust,0.0,89.99181,0.0,07/15/0025 +6.86175,43.80121,7686,4,12,22,16,26,4.05,5.0,fr,26796,153,1110780,1,3,Active Shallow Crust,0.0,89.99181,0.0,04/12/7686 +6.86175,43.80121,1226,7,15,3,46,58,4.15,15.0,fr,26797,24,1110802,1,1,Active Shallow Crust,128.8978,89.99453,0.0,07/15/1226 +6.86175,43.80121,7995,5,6,15,38,33,4.45,5.0,fr,26798,159,1110834,1,1,Active Shallow Crust,0.0,89.98955,-90.0,05/06/7995 +6.86175,43.80121,6081,6,28,12,49,44,4.55,5.0,fr,26799,121,1110840,1,2,Active Shallow Crust,0.0,89.99079,0.0,06/28/6081 +6.86175,43.80121,9664,4,17,2,23,37,4.55,5.0,fr,26800,193,1110840,1,2,Active Shallow Crust,0.0,89.99079,0.0,04/17/9664 +6.86175,43.80121,4594,12,23,22,15,44,4.55,15.0,fr,26801,91,1110841,1,1,Active Shallow Crust,0.0,89.99079,0.0,12/23/4594 +6.86175,43.80121,7750,8,15,17,24,10,5.05,15.0,fr,26802,154,1110904,1,1,Active Shallow Crust,240.0209,57.99724,0.0,08/15/7750 +6.86175,43.80121,1221,9,15,3,18,21,6.05,15.0,fr,26803,24,1111021,1,1,Active Shallow Crust,0.0,89.99017,0.0,09/15/1221 +6.861763,43.80121,6929,2,11,4,25,31,6.65,10.68981,fr,26804,138,1111092,1,1,Active Shallow Crust,0.0,89.98994,0.0,02/11/6929 +-0.44291,47.06867,9715,12,30,18,32,35,3.55,5.0,fr,26805,194,1111200,1,1,Active Shallow Crust,0.0,89.99013,0.0,12/30/9715 +-0.44291,47.06867,3158,11,22,13,13,11,3.55,15.0,fr,26806,63,1111201,1,1,Active Shallow Crust,0.0,89.99013,0.0,11/22/3158 +-0.44291,47.06867,6968,4,12,20,43,59,3.55,27.5,fr,26807,139,1111208,1,1,Active Shallow Crust,0.0,89.99001,-90.0,04/12/6968 +-0.44291,47.06867,5874,11,22,17,22,17,3.55,5.0,fr,26808,117,1111209,1,1,Active Shallow Crust,128.8962,89.99377,0.0,11/22/5874 +-0.44291,47.06867,675,8,19,23,30,8,3.65,5.0,fr,26809,13,1111212,1,3,Active Shallow Crust,0.0,89.99005,0.0,08/19/0675 +-0.44291,47.06867,5578,8,1,15,18,10,3.65,5.0,fr,26810,111,1111212,1,3,Active Shallow Crust,0.0,89.99005,0.0,08/01/5578 +-0.44291,47.06867,8692,9,16,4,29,36,3.65,5.0,fr,26811,173,1111212,1,3,Active Shallow Crust,0.0,89.99005,0.0,09/16/8692 +-0.44291,47.06867,1350,3,11,7,54,17,3.65,15.0,fr,26812,26,1111213,1,1,Active Shallow Crust,0.0,89.99005,0.0,03/11/1350 +-0.44291,47.06867,3679,1,31,18,46,57,3.65,27.5,fr,26813,73,1111214,1,1,Active Shallow Crust,0.0,89.99005,0.0,01/31/3679 +-0.44291,47.06867,4684,9,1,17,25,28,3.65,5.0,fr,26814,93,1111215,1,1,Active Shallow Crust,240.0011,58.01298,0.0,09/01/4684 +-0.44291,47.06867,3664,1,23,4,7,50,3.75,5.0,fr,26815,73,1111224,1,1,Active Shallow Crust,0.0,89.99011,0.0,01/23/3664 +-0.44291,47.06867,6224,3,4,13,21,29,3.75,15.0,fr,26816,124,1111225,1,1,Active Shallow Crust,0.0,89.99011,0.0,03/04/6224 +-0.44291,47.06867,7509,3,30,23,26,13,3.85,5.0,fr,26817,150,1111236,1,3,Active Shallow Crust,0.0,89.98997,0.0,03/30/7509 +-0.44291,47.06867,5942,9,6,9,29,33,3.85,5.0,fr,26818,118,1111236,1,3,Active Shallow Crust,0.0,89.98997,0.0,09/06/5942 +-0.44291,47.06867,4158,1,4,4,33,17,3.85,5.0,fr,26819,83,1111236,1,3,Active Shallow Crust,0.0,89.98997,0.0,01/04/4158 +-0.44291,47.06867,3469,7,24,12,1,32,3.85,15.0,fr,26820,69,1111243,1,1,Active Shallow Crust,0.0,89.98985,-90.0,07/24/3469 +-0.44291,47.06867,4355,2,28,21,12,8,3.95,5.0,fr,26821,87,1111248,1,2,Active Shallow Crust,0.0,89.98997,0.0,02/28/4355 +-0.44291,47.06867,6296,7,25,11,9,43,3.95,5.0,fr,26822,125,1111248,1,2,Active Shallow Crust,0.0,89.98997,0.0,07/25/6296 +-0.44291,47.06867,7280,1,2,17,24,49,3.95,5.0,fr,26823,145,1111251,1,1,Active Shallow Crust,240.0199,58.00503,0.0,01/02/7280 +-0.44291,47.06867,4313,10,17,10,32,15,3.95,5.0,fr,26824,86,1111254,1,1,Active Shallow Crust,359.9999,89.99014,-90.0,10/17/4313 +-0.44291,47.06867,6879,10,1,0,40,6,3.95,5.0,fr,26825,137,1111257,1,1,Active Shallow Crust,128.9004,89.99364,0.0,10/01/6879 +-0.44291,47.06867,5613,8,31,1,26,52,4.05,5.0,fr,26826,112,1111260,1,1,Active Shallow Crust,0.0,89.9901,0.0,08/31/5613 +-0.44291,47.06867,5435,10,30,1,28,58,4.05,27.5,fr,26827,108,1111262,1,1,Active Shallow Crust,0.0,89.9901,0.0,10/30/5435 +-0.44291,47.06867,6861,10,13,12,56,2,4.35,15.0,fr,26828,137,1111306,1,1,Active Shallow Crust,128.8977,89.98274,0.0,10/13/6861 +-0.44291,47.06867,4681,2,12,8,51,38,4.55,5.0,fr,26829,93,1111320,1,2,Active Shallow Crust,0.0,89.98995,0.0,02/12/4681 +-0.44291,47.06867,3537,3,28,22,26,5,4.55,5.0,fr,26830,70,1111320,1,2,Active Shallow Crust,0.0,89.98995,0.0,03/28/3537 +-0.44291,47.06867,7710,8,23,15,38,2,4.65,27.5,fr,26831,154,1111334,1,1,Active Shallow Crust,0.0,89.98996,0.0,08/23/7710 +-0.44291,47.06867,26,3,29,20,15,14,4.95,27.5,fr,26832,0,1111370,1,1,Active Shallow Crust,0.0,89.98997,0.0,03/29/0026 +-0.44291,47.06867,6186,1,30,15,52,52,5.05,27.5,fr,26833,123,1111388,1,1,Active Shallow Crust,360.0,89.99004,-90.0,01/30/6186 +-3.72184,43.16916,6104,9,2,8,42,57,3.55,5.0,fr,26834,122,1111680,1,1,Active Shallow Crust,0.0,89.98897,0.0,09/02/6104 +-3.72184,43.16916,7095,8,19,23,28,2,3.55,15.0,fr,26835,141,1111681,1,2,Active Shallow Crust,0.0,89.98897,0.0,08/19/7095 +-3.72184,43.16916,3871,4,12,6,34,41,3.55,15.0,fr,26836,77,1111681,1,2,Active Shallow Crust,0.0,89.98897,0.0,04/12/3871 +-3.72184,43.16916,302,8,4,20,45,50,3.55,5.0,fr,26837,6,1111683,1,1,Active Shallow Crust,240.0118,57.99789,0.0,08/04/0302 +-3.72184,43.16916,6640,5,25,7,15,53,3.55,5.0,fr,26838,132,1111689,1,2,Active Shallow Crust,128.8962,89.99448,0.0,05/25/6640 +-3.72184,43.16916,8475,3,26,9,14,22,3.55,5.0,fr,26839,169,1111689,1,2,Active Shallow Crust,128.8962,89.99448,0.0,03/26/8475 +-3.72184,43.16916,3261,1,18,20,26,0,3.65,5.0,fr,26840,65,1111692,1,1,Active Shallow Crust,0.0,89.99017,0.0,01/18/3261 +-3.72184,43.16916,5215,10,30,12,32,24,3.65,15.0,fr,26841,104,1111693,1,1,Active Shallow Crust,0.0,89.99017,0.0,10/30/5215 +-3.72184,43.16916,9251,5,26,10,24,42,3.75,5.0,fr,26842,185,1111704,1,1,Active Shallow Crust,0.0,89.99123,0.0,05/26/9251 +-3.72184,43.16916,2313,11,2,20,32,32,3.75,5.0,fr,26843,46,1111707,1,1,Active Shallow Crust,240.0081,58.01717,0.0,11/02/2313 +-3.72184,43.16916,9734,6,29,13,11,3,3.75,5.0,fr,26844,194,1111710,1,1,Active Shallow Crust,0.0,89.99113,-90.0,06/29/9734 +-3.72184,43.16916,1919,4,1,4,13,53,3.75,5.0,fr,26845,38,1111713,1,1,Active Shallow Crust,128.8964,89.96743,0.0,04/01/1919 +-3.72184,43.16916,1149,7,31,17,9,44,3.95,5.0,fr,26846,22,1111731,1,1,Active Shallow Crust,240.0194,58.00522,0.0,07/31/1149 +-3.72184,43.16916,7167,3,24,15,41,32,4.05,5.0,fr,26847,143,1111749,1,1,Active Shallow Crust,128.8911,89.9938,0.0,03/24/7167 +-3.72184,43.16916,1589,7,30,5,36,32,4.15,27.5,fr,26848,31,1111754,1,1,Active Shallow Crust,0.0,89.99078,0.0,07/30/1589 +-3.72184,43.16916,3887,1,31,11,11,0,4.25,5.0,fr,26849,77,1111764,1,1,Active Shallow Crust,0.0,89.99014,0.0,01/31/3887 +-3.72184,43.16916,735,7,13,12,46,39,4.25,15.0,fr,26850,14,1111765,1,1,Active Shallow Crust,0.0,89.99014,0.0,07/13/0735 +-3.72184,43.16916,1163,1,24,1,20,23,4.35,5.0,fr,26851,23,1111782,1,1,Active Shallow Crust,0.0,89.98963,-90.0,01/24/1163 +-3.72184,43.16916,353,11,5,16,35,31,4.45,15.0,fr,26852,7,1111789,1,1,Active Shallow Crust,0.0,89.98956,0.0,11/05/0353 +-3.72184,43.16916,1195,1,19,19,6,44,4.65,5.0,fr,26853,23,1111812,1,1,Active Shallow Crust,0.0,89.98963,0.0,01/19/1195 +-3.72184,43.16916,1100,2,1,19,11,55,4.85,5.0,fr,26854,21,1111839,1,1,Active Shallow Crust,240.0159,58.00203,0.0,02/01/1100 +-3.72184,43.16916,9346,2,2,20,19,44,5.05,5.0,fr,26855,186,1111860,1,1,Active Shallow Crust,0.0,89.99019,0.0,02/02/9346 +3.8029,47.18521,729,4,14,3,33,26,3.55,15.0,fr,26856,14,1112161,1,1,Active Shallow Crust,0.0,89.98972,0.0,04/14/0729 +3.8029,47.18521,207,1,9,0,30,4,3.75,5.0,fr,26857,4,1112184,1,1,Active Shallow Crust,0.0,89.98911,0.0,01/09/0207 +3.8029,47.18521,687,4,8,17,5,42,3.75,5.0,fr,26858,13,1112187,1,1,Active Shallow Crust,240.008,58.01793,0.0,04/08/0687 +3.8029,47.18521,1368,2,26,11,44,47,3.75,27.5,fr,26859,27,1112195,1,1,Active Shallow Crust,128.897,89.96725,0.0,02/26/1368 +3.8029,47.18521,3104,4,11,5,41,28,3.85,5.0,fr,26860,62,1112196,1,1,Active Shallow Crust,0.0,89.9903,0.0,04/11/3104 +3.8029,47.18521,1790,4,4,10,3,40,4.05,5.0,fr,26861,35,1112220,1,1,Active Shallow Crust,0.0,89.99036,0.0,04/04/1790 +3.8029,47.18521,1968,9,29,8,15,27,4.15,15.0,fr,26862,39,1112233,1,1,Active Shallow Crust,0.0,89.98969,0.0,09/29/1968 +3.8029,47.18521,2022,9,3,7,39,10,4.45,15.0,fr,26863,40,1112269,1,1,Active Shallow Crust,0.0,89.99027,0.0,09/03/2022 +3.8029,47.18521,5590,1,5,22,29,39,4.45,5.0,fr,26864,111,1112274,1,1,Active Shallow Crust,0.0,89.99016,-90.0,01/05/5590 +0.59226,48.20715,243,5,24,22,31,29,3.55,27.5,fr,26865,4,1112645,1,2,Active Shallow Crust,240.0123,57.99802,0.0,05/24/0243 +0.59226,48.20715,9826,7,14,16,27,23,3.55,27.5,fr,26866,196,1112645,1,2,Active Shallow Crust,240.0123,57.99802,0.0,07/14/9826 +0.59226,48.20715,1493,4,10,4,2,52,3.55,5.0,fr,26867,29,1112649,1,1,Active Shallow Crust,128.8961,89.9937,0.0,04/10/1493 +0.59226,48.20715,856,12,6,3,47,25,3.65,5.0,fr,26868,17,1112658,1,1,Active Shallow Crust,0.0,89.99016,-90.0,12/06/0856 +0.59226,48.20715,9177,5,10,4,58,1,3.75,15.0,fr,26869,183,1112671,1,1,Active Shallow Crust,0.0,89.98988,-90.0,05/10/9177 +0.59226,48.20715,8086,2,11,14,49,33,4.25,5.0,fr,26870,161,1112724,1,1,Active Shallow Crust,0.0,89.98987,0.0,02/11/8086 +0.59226,48.20715,9739,3,20,5,2,52,4.65,5.0,fr,26871,194,1112775,1,1,Active Shallow Crust,240.0114,57.99434,0.0,03/20/9739 +3.86718,48.59254,1683,7,8,21,26,15,3.55,27.5,fr,26872,33,1113122,1,1,Active Shallow Crust,0.0,89.99,0.0,07/08/1683 +3.86718,48.59254,8801,10,4,4,55,54,3.65,27.5,fr,26873,176,1113134,1,1,Active Shallow Crust,0.0,89.99108,0.0,10/04/8801 +1.89958,49.7188,7280,7,21,12,50,1,3.55,5.0,fr,26874,145,1113600,1,1,Active Shallow Crust,0.0,89.99022,0.0,07/21/7280 +1.89958,49.7188,4723,4,18,18,40,57,3.55,15.0,fr,26875,94,1113604,1,1,Active Shallow Crust,240.0124,57.99821,0.0,04/18/4723 +1.89958,49.7188,3289,12,26,2,28,11,3.85,5.0,fr,26876,65,1113642,1,1,Active Shallow Crust,0.0,89.98949,-90.0,12/26/3289 +1.89958,49.7188,8685,1,20,7,44,6,3.95,5.0,fr,26877,173,1113648,1,1,Active Shallow Crust,0.0,89.98972,0.0,01/20/8685 +1.89958,49.7188,742,1,31,13,12,50,3.95,5.0,fr,26878,14,1113651,1,1,Active Shallow Crust,240.0202,58.00515,0.0,01/31/0742 +1.89958,49.7188,4322,4,26,14,44,58,4.15,5.0,fr,26879,86,1113681,1,1,Active Shallow Crust,128.8969,89.99387,0.0,04/26/4322 +1.89958,49.7188,7403,4,14,7,46,13,4.35,5.0,fr,26880,148,1113699,1,1,Active Shallow Crust,240.0092,57.99614,0.0,04/14/7403 +1.89958,49.7188,7817,6,26,7,51,31,4.75,5.0,fr,26881,156,1113747,1,1,Active Shallow Crust,240.0088,58.00471,0.0,06/26/7817 +-1.78514,46.82432,338,7,3,12,10,6,3.55,5.0,fr,26882,6,1114080,1,2,Active Shallow Crust,0.0,89.98965,0.0,07/03/0338 +-1.78514,46.82432,4609,9,12,22,7,52,3.55,5.0,fr,26883,92,1114080,1,2,Active Shallow Crust,0.0,89.98965,0.0,09/12/4609 +-1.78514,46.82432,1692,9,15,4,43,35,3.55,5.0,fr,26884,33,1114086,1,1,Active Shallow Crust,0.0,89.98953,-90.0,09/15/1692 +-1.78514,46.82432,683,10,28,12,36,53,3.65,5.0,fr,26885,13,1114092,1,2,Active Shallow Crust,0.0,89.98923,0.0,10/28/0683 +-1.78514,46.82432,4880,12,24,11,28,50,3.65,5.0,fr,26886,97,1114092,1,2,Active Shallow Crust,0.0,89.98923,0.0,12/24/4880 +-1.78514,46.82432,7866,12,8,21,9,34,3.75,5.0,fr,26887,157,1114104,1,1,Active Shallow Crust,0.0,89.99041,0.0,12/08/7866 +-1.78514,46.82432,8634,5,14,21,54,17,3.95,5.0,fr,26888,172,1114131,1,1,Active Shallow Crust,240.0196,58.005,0.0,05/14/8634 +-1.78514,46.82432,9122,10,23,10,54,31,4.15,15.0,fr,26889,182,1114156,1,1,Active Shallow Crust,240.0083,57.99741,0.0,10/23/9122 +-1.78514,46.82432,1065,11,6,14,46,12,4.25,15.0,fr,26890,21,1114168,1,1,Active Shallow Crust,240.0076,57.99408,0.0,11/06/1065 +-1.78514,46.82432,4646,3,25,14,38,9,4.35,5.0,fr,26891,92,1114185,1,1,Active Shallow Crust,128.8976,89.9828,0.0,03/25/4646 +-1.78514,46.82432,2805,3,14,20,6,46,4.55,5.0,fr,26892,56,1114200,1,2,Active Shallow Crust,0.0,89.99018,0.0,03/14/2805 +-1.78514,46.82432,8252,6,4,10,7,11,4.55,5.0,fr,26893,165,1114200,1,2,Active Shallow Crust,0.0,89.99018,0.0,06/04/8252 +-1.78514,46.82432,9013,1,20,22,37,58,4.55,15.0,fr,26894,180,1114201,1,1,Active Shallow Crust,0.0,89.99018,0.0,01/20/9013 +-4.11773,49.1888,181,7,6,8,25,2,3.55,5.0,fr,26895,3,1114563,1,1,Active Shallow Crust,240.0119,57.99809,0.0,07/06/0181 +-4.11773,49.1888,2795,3,16,16,1,21,3.65,15.0,fr,26896,55,1114576,1,1,Active Shallow Crust,240.0018,58.01295,0.0,03/16/2795 +-4.11773,49.1888,5959,5,17,22,35,19,3.85,27.5,fr,26897,119,1114598,1,1,Active Shallow Crust,0.0,89.99067,0.0,05/17/5959 +-4.11773,49.1888,4154,7,2,19,34,8,4.05,5.0,fr,26898,83,1114620,1,1,Active Shallow Crust,0.0,89.98888,0.0,07/02/4154 +1.81497,44.67796,2704,7,18,2,10,9,4.05,5.0,fr,26899,54,1115106,1,1,Active Shallow Crust,0.0,89.9898,-90.0,07/18/2704 +1.81497,44.67796,2049,9,13,0,49,43,5.05,5.0,fr,26900,40,1115220,1,1,Active Shallow Crust,0.0,89.99011,0.0,09/13/2049 +4.31646,43.072,1845,1,26,13,23,59,3.85,27.5,fr,26901,36,1115561,1,1,Active Shallow Crust,240.0111,57.99784,0.0,01/26/1845 +4.31646,43.072,3037,3,20,6,28,55,3.95,5.0,fr,26902,60,1115568,1,1,Active Shallow Crust,0.0,89.99071,0.0,03/20/3037 +6.21921,43.05555,8052,9,16,23,52,49,3.65,5.0,fr,26903,161,1116492,1,1,Active Shallow Crust,0.0,89.98687,0.0,09/16/8052 +6.21921,43.05555,4173,8,21,18,22,49,3.95,5.0,fr,26904,83,1116528,1,1,Active Shallow Crust,0.0,89.9907,0.0,08/21/4173 +-1.49666,50.85795,2038,2,13,18,4,1,3.55,27.5,fr,26905,40,1116962,1,1,Active Shallow Crust,0.0,89.99045,0.0,02/13/2038 +-1.49666,50.85795,6445,8,14,0,23,24,6.15,15.0,fr,26906,128,1117279,1,1,Active Shallow Crust,0.0,89.98998,-90.0,08/14/6445 +-0.40871,44.08838,4215,8,30,20,13,51,3.55,5.0,fr,26907,84,1117920,1,1,Active Shallow Crust,0.0,89.99004,0.0,08/30/4215 +-0.40871,44.08838,2887,2,18,7,16,43,3.65,5.0,fr,26908,57,1117932,1,2,Active Shallow Crust,0.0,89.98991,0.0,02/18/2887 +-0.40871,44.08838,408,8,8,22,38,47,3.65,5.0,fr,26909,8,1117932,1,2,Active Shallow Crust,0.0,89.98991,0.0,08/08/0408 +-0.40871,44.08838,7052,3,5,22,43,6,4.15,5.0,fr,26910,141,1117995,1,1,Active Shallow Crust,240.008,57.99725,0.0,03/05/7052 +2.0543,51.66418,3204,7,24,19,0,56,3.55,5.0,fr,26911,64,1118400,1,2,Active Shallow Crust,0.0,89.99062,0.0,07/24/3204 +2.0543,51.66418,1861,9,9,16,55,2,3.55,5.0,fr,26912,37,1118400,1,2,Active Shallow Crust,0.0,89.99062,0.0,09/09/1861 +2.0543,51.66418,8975,4,15,6,11,4,3.65,5.0,fr,26913,179,1118418,1,1,Active Shallow Crust,0.0,89.98872,-90.0,04/15/8975 +2.0543,51.66418,5576,11,29,2,37,16,3.85,5.0,fr,26914,111,1118442,1,1,Active Shallow Crust,0.0,89.99104,-90.0,11/29/5576 +2.0543,51.66418,2764,6,27,15,52,51,4.25,15.0,fr,26915,55,1118485,1,1,Active Shallow Crust,0.0,89.99022,0.0,06/27/2764 +2.0543,51.66418,3859,9,9,4,43,58,4.25,5.0,fr,26916,77,1118493,1,1,Active Shallow Crust,128.8935,89.98092,0.0,09/09/3859 +2.0543,51.66418,6315,11,20,8,15,23,4.95,27.5,fr,26917,126,1118570,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/20/6315 +-1.04483,48.23234,524,11,10,2,35,50,3.55,5.0,fr,26918,10,1118880,1,2,Active Shallow Crust,0.0,89.98992,0.0,11/10/0524 +-1.04483,48.23234,8432,5,18,11,2,6,3.55,5.0,fr,26919,168,1118880,1,2,Active Shallow Crust,0.0,89.98992,0.0,05/18/8432 +-1.04483,48.23234,9971,12,14,17,51,50,3.55,27.5,fr,26920,199,1118882,1,1,Active Shallow Crust,0.0,89.98992,0.0,12/14/9971 +-1.04483,48.23234,3452,1,27,11,39,45,3.55,15.0,fr,26921,69,1118887,1,1,Active Shallow Crust,0.0,89.98981,-90.0,01/27/3452 +-1.04483,48.23234,7316,3,18,7,58,14,3.85,5.0,fr,26922,146,1118919,1,1,Active Shallow Crust,240.011,57.99786,0.0,03/18/7316 +-1.04483,48.23234,5743,11,16,1,4,30,4.35,5.0,fr,26923,114,1118976,1,2,Active Shallow Crust,0.0,89.98997,0.0,11/16/5743 +-1.04483,48.23234,6497,9,28,21,31,12,4.35,5.0,fr,26924,129,1118976,1,2,Active Shallow Crust,0.0,89.98997,0.0,09/28/6497 +-1.04483,48.23234,8152,3,5,5,16,36,4.55,5.0,fr,26925,163,1119003,1,1,Active Shallow Crust,240.0099,57.99741,0.0,03/05/8152 +-1.04483,48.23234,8024,11,10,14,7,3,4.85,5.0,fr,26926,160,1119036,1,1,Active Shallow Crust,0.0,89.98985,0.0,11/10/8024 +5.06007,50.75276,233,11,20,1,2,10,3.55,5.0,fr,26927,4,1119360,1,2,Active Shallow Crust,0.0,89.98724,0.0,11/20/0233 +5.06007,50.75276,2452,10,6,20,32,34,3.55,5.0,fr,26928,49,1119360,1,2,Active Shallow Crust,0.0,89.98724,0.0,10/06/2452 +5.06007,50.75276,8027,2,9,10,18,13,3.65,5.0,fr,26929,160,1119372,1,1,Active Shallow Crust,0.0,89.98862,0.0,02/09/8027 +5.06007,50.75276,6054,4,23,0,54,17,3.85,5.0,fr,26930,121,1119405,1,1,Active Shallow Crust,128.8955,89.99323,0.0,04/23/6054 +5.06007,50.75276,7203,5,16,12,41,7,3.95,5.0,fr,26931,144,1119408,1,1,Active Shallow Crust,0.0,89.99195,0.0,05/16/7203 +5.06007,50.75276,975,7,28,10,55,32,4.15,5.0,fr,26932,19,1119432,1,1,Active Shallow Crust,0.0,89.99041,0.0,07/28/0975 +5.06007,50.75276,7301,7,30,14,47,8,4.35,5.0,fr,26933,146,1119456,1,1,Active Shallow Crust,0.0,89.98984,0.0,07/30/7301 +5.06007,50.75276,5103,9,11,11,40,26,4.35,15.0,fr,26934,102,1119463,1,1,Active Shallow Crust,0.0,89.98972,-90.0,09/11/5103 +5.06007,50.75276,1850,8,20,22,15,47,4.45,5.0,fr,26935,36,1119471,1,1,Active Shallow Crust,240.0066,57.99466,0.0,08/20/1850 +5.06007,50.75276,3936,2,23,17,2,47,4.65,5.0,fr,26936,78,1119495,1,1,Active Shallow Crust,240.0121,57.99466,0.0,02/23/3936 +1.83132,51.65791,8727,12,18,11,23,35,3.65,5.0,fr,26937,174,1120332,1,1,Active Shallow Crust,0.0,89.99024,0.0,12/18/8727 +1.83132,51.65791,6977,8,5,16,42,20,3.75,15.0,fr,26938,139,1120345,1,2,Active Shallow Crust,0.0,89.99006,0.0,08/05/6977 +1.83132,51.65791,7764,8,28,19,25,47,3.75,15.0,fr,26939,155,1120345,1,2,Active Shallow Crust,0.0,89.99006,0.0,08/28/7764 +1.83132,51.65791,1543,5,27,21,10,35,4.15,15.0,fr,26940,30,1120393,1,1,Active Shallow Crust,0.0,89.98981,0.0,05/27/1543 +3.14604,52.95688,6127,3,9,18,26,18,3.75,5.0,fr,26941,122,1120824,1,1,Active Shallow Crust,0.0,89.99035,0.0,03/09/6127 +3.14604,52.95688,8656,9,11,5,36,17,3.75,5.0,fr,26942,173,1120827,1,1,Active Shallow Crust,240.0093,58.01781,0.0,09/11/8656 +3.14604,52.95688,852,12,30,3,10,13,4.05,5.0,fr,26943,17,1120863,1,1,Active Shallow Crust,240.0074,58.00605,0.0,12/30/0852 +3.14604,52.95688,743,7,9,15,33,25,4.65,5.0,fr,26944,14,1120932,1,1,Active Shallow Crust,0.0,89.98972,0.0,07/09/0743 +-0.98038,47.96898,9470,1,4,13,56,2,3.55,5.0,fr,26945,189,1121280,1,1,Active Shallow Crust,0.0,89.98988,0.0,01/04/9470 +-0.98038,47.96898,547,8,8,1,52,34,3.65,5.0,fr,26946,10,1121292,1,1,Active Shallow Crust,0.0,89.99022,0.0,08/08/0547 +-0.98038,47.96898,5551,10,5,9,59,37,3.75,5.0,fr,26947,111,1121304,1,1,Active Shallow Crust,0.0,89.98994,0.0,10/05/5551 +-0.98038,47.96898,124,5,3,10,5,31,3.85,5.0,fr,26948,2,1121316,1,3,Active Shallow Crust,0.0,89.98985,0.0,05/03/0124 +-0.98038,47.96898,8469,6,29,20,38,3,3.85,5.0,fr,26949,169,1121316,1,3,Active Shallow Crust,0.0,89.98985,0.0,06/29/8469 +-0.98038,47.96898,8014,9,22,9,48,46,3.85,5.0,fr,26950,160,1121316,1,3,Active Shallow Crust,0.0,89.98985,0.0,09/22/8014 +-0.98038,47.96898,6228,10,4,15,2,52,3.85,5.0,fr,26951,124,1121319,1,1,Active Shallow Crust,240.011,57.99786,0.0,10/04/6228 +-0.98038,47.96898,2429,8,29,11,35,3,3.95,5.0,fr,26952,48,1121328,1,2,Active Shallow Crust,0.0,89.98988,0.0,08/29/2429 +-0.98038,47.96898,9729,11,16,7,33,12,3.95,5.0,fr,26953,194,1121328,1,2,Active Shallow Crust,0.0,89.98988,0.0,11/16/9729 +-0.98038,47.96898,125,3,13,1,55,23,4.15,5.0,fr,26954,2,1121355,1,1,Active Shallow Crust,240.0087,57.99736,0.0,03/13/0125 +-0.98038,47.96898,9704,5,3,10,35,8,4.35,5.0,fr,26955,194,1121385,1,1,Active Shallow Crust,128.8976,89.98278,0.0,05/03/9704 +-0.98038,47.96898,5114,4,4,21,55,22,4.45,15.0,fr,26956,102,1121389,1,1,Active Shallow Crust,0.0,89.99012,0.0,04/04/5114 +8.55349,49.43302,4090,1,29,23,14,8,3.55,5.0,fr,26957,81,1121760,1,3,Active Shallow Crust,0.0,89.98689,0.0,01/29/4090 +8.55349,49.43302,1160,5,1,5,49,48,3.55,5.0,fr,26958,23,1121760,1,3,Active Shallow Crust,0.0,89.98689,0.0,05/01/1160 +8.55349,49.43302,1518,10,26,4,32,49,3.55,5.0,fr,26959,30,1121760,1,3,Active Shallow Crust,0.0,89.98689,0.0,10/26/1518 +8.55349,49.43302,2590,7,8,2,32,49,3.55,27.5,fr,26960,51,1121762,1,1,Active Shallow Crust,0.0,89.98689,0.0,07/08/2590 +8.55349,49.43302,4464,1,9,23,4,26,3.55,5.0,fr,26961,89,1121763,1,1,Active Shallow Crust,240.0138,57.99794,0.0,01/09/4464 +8.55349,49.43302,2425,4,22,11,4,53,3.55,5.0,fr,26962,48,1121766,1,1,Active Shallow Crust,0.0,89.98673,-90.0,04/22/2425 +8.55349,49.43302,9286,6,5,11,50,8,3.65,5.0,fr,26963,185,1121772,1,1,Active Shallow Crust,0.0,89.98831,0.0,06/05/9286 +8.55349,49.43302,685,11,12,1,2,28,3.65,15.0,fr,26964,13,1121773,1,1,Active Shallow Crust,0.0,89.98831,0.0,11/12/0685 +8.55349,49.43302,1706,12,9,9,42,33,3.65,5.0,fr,26965,34,1121775,1,1,Active Shallow Crust,240.0019,58.01133,0.0,12/09/1706 +8.55349,49.43302,657,9,4,8,30,44,3.75,5.0,fr,26966,13,1121784,1,1,Active Shallow Crust,0.0,89.98958,0.0,09/04/0657 +8.55349,49.43302,8162,11,30,7,46,21,3.75,15.0,fr,26967,163,1121785,1,1,Active Shallow Crust,0.0,89.98958,0.0,11/30/8162 +8.55349,49.43302,9025,8,17,21,27,38,3.85,5.0,fr,26968,180,1121796,1,1,Active Shallow Crust,0.0,89.99072,0.0,08/17/9025 +8.55349,49.43302,2452,2,12,14,4,9,3.85,5.0,fr,26969,49,1121805,1,1,Active Shallow Crust,128.895,89.99536,0.0,02/12/2452 +8.55349,49.43302,8668,11,13,8,29,17,3.95,5.0,fr,26970,173,1121808,1,1,Active Shallow Crust,0.0,89.99172,0.0,11/13/8668 +8.55349,49.43302,9449,3,11,5,16,46,4.05,5.0,fr,26971,188,1121820,1,1,Active Shallow Crust,0.0,89.99262,0.0,03/11/9449 +8.55349,49.43302,9957,10,23,23,52,48,4.25,5.0,fr,26972,199,1121844,1,1,Active Shallow Crust,0.0,89.98828,0.0,10/23/9957 +8.55349,49.43302,9327,5,17,11,54,16,4.35,5.0,fr,26973,186,1121856,1,1,Active Shallow Crust,0.0,89.98956,0.0,05/17/9327 +8.55349,49.43302,3961,11,30,11,15,37,4.55,5.0,fr,26974,79,1121880,1,1,Active Shallow Crust,0.0,89.99171,0.0,11/30/3961 +8.55349,49.43302,5582,7,15,20,7,7,4.75,15.0,fr,26975,111,1121914,1,1,Active Shallow Crust,128.888,89.98792,0.0,07/15/5582 +8.55349,49.43302,6594,3,28,13,31,57,4.85,5.0,fr,26976,131,1121916,1,1,Active Shallow Crust,0.0,89.99119,0.0,03/28/6594 +2.84252,49.88163,4490,12,9,22,54,30,3.55,27.5,fr,26977,89,1122242,1,1,Active Shallow Crust,0.0,89.99025,0.0,12/09/4490 +2.84252,49.88163,3283,7,4,17,14,42,3.65,5.0,fr,26978,65,1122258,1,1,Active Shallow Crust,0.0,89.99121,-90.0,07/04/3283 +2.84252,49.88163,7307,5,12,16,14,49,3.75,5.0,fr,26979,146,1122273,1,1,Active Shallow Crust,128.8959,89.96755,0.0,05/12/7307 +2.84252,49.88163,6151,10,3,7,29,50,3.85,5.0,fr,26980,123,1122276,1,1,Active Shallow Crust,0.0,89.9908,0.0,10/03/6151 +2.84252,49.88163,6308,6,20,4,39,58,4.05,5.0,fr,26981,126,1122303,1,2,Active Shallow Crust,240.0067,58.00591,0.0,06/20/6308 +2.84252,49.88163,6049,6,17,8,36,24,4.05,5.0,fr,26982,120,1122303,1,2,Active Shallow Crust,240.0067,58.00591,0.0,06/17/6049 +2.44325,46.85122,9020,11,22,6,39,21,3.55,5.0,fr,26983,180,1122720,1,2,Active Shallow Crust,0.0,89.98965,0.0,11/22/9020 +2.44325,46.85122,8075,11,7,19,32,34,3.55,5.0,fr,26984,161,1122720,1,2,Active Shallow Crust,0.0,89.98965,0.0,11/07/8075 +2.44325,46.85122,3928,12,7,4,24,20,4.05,5.0,fr,26985,78,1122780,1,1,Active Shallow Crust,0.0,89.9903,0.0,12/07/3928 +2.44325,46.85122,3390,4,21,18,16,12,4.15,15.0,fr,26986,67,1122793,1,1,Active Shallow Crust,0.0,89.98963,0.0,04/21/3390 +2.44325,46.85122,1183,12,30,20,56,39,4.15,5.0,fr,26987,23,1122798,1,1,Active Shallow Crust,0.0,89.98951,-90.0,12/30/1183 +2.44325,46.85122,2089,8,26,9,50,16,4.95,5.0,fr,26988,41,1122888,1,1,Active Shallow Crust,0.0,89.98968,0.0,08/26/2089 +2.44325,46.85122,9297,9,12,3,2,5,5.15,15.0,fr,26989,185,1122916,1,1,Active Shallow Crust,240.0199,57.99997,0.0,09/12/9297 +-6.97521,49.02341,569,2,26,2,17,44,3.65,15.0,fr,26990,11,1123213,1,1,Active Shallow Crust,0.0,89.98821,0.0,02/26/0569 +8.17648,51.25351,2153,9,21,23,42,33,4.35,5.0,fr,26991,43,1123776,1,1,Active Shallow Crust,0.0,89.98995,0.0,09/21/2153 +8.17648,51.25351,3003,11,22,3,53,39,4.75,27.5,fr,26992,60,1123826,1,1,Active Shallow Crust,0.0,89.99049,0.0,11/22/3003 +3.11519,51.943,3124,12,10,19,6,12,3.55,5.0,fr,26993,62,1124160,1,1,Active Shallow Crust,0.0,89.99068,0.0,12/10/3124 +3.11519,51.943,9494,4,28,13,24,14,3.95,5.0,fr,26994,189,1124208,1,1,Active Shallow Crust,0.0,89.9902,0.0,04/28/9494 +3.11519,51.943,5222,6,8,7,45,0,4.85,5.0,fr,26995,104,1124316,1,1,Active Shallow Crust,0.0,89.99026,0.0,06/08/5222 +-1.55128,48.05985,891,7,9,20,14,17,3.55,5.0,fr,26996,17,1125120,1,1,Active Shallow Crust,0.0,89.98989,0.0,07/09/0891 +-1.55128,48.05985,5132,4,14,4,9,57,3.55,27.5,fr,26997,102,1125122,1,1,Active Shallow Crust,0.0,89.98989,0.0,04/14/5132 +-1.55128,48.05985,8662,8,6,4,15,10,3.55,5.0,fr,26998,173,1125123,1,1,Active Shallow Crust,240.0119,57.9982,0.0,08/06/8662 +-1.55128,48.05985,358,10,19,10,25,48,3.75,15.0,fr,26999,7,1125151,1,1,Active Shallow Crust,0.0,89.99052,-90.0,10/19/0358 +-1.55128,48.05985,3911,8,22,5,20,43,3.85,5.0,fr,27000,78,1125156,1,1,Active Shallow Crust,0.0,89.99046,0.0,08/22/3911 +-1.55128,48.05985,7415,1,15,4,59,27,3.85,15.0,fr,27001,148,1125157,1,2,Active Shallow Crust,0.0,89.99046,0.0,01/15/7415 +-1.55128,48.05985,5122,8,20,0,9,3,3.85,15.0,fr,27002,102,1125157,1,2,Active Shallow Crust,0.0,89.99046,0.0,08/20/5122 +-1.55128,48.05985,4725,10,20,13,10,32,3.85,27.5,fr,27003,94,1125164,1,1,Active Shallow Crust,0.0,89.99035,-90.0,10/20/4725 +-1.55128,48.05985,9685,12,27,16,46,32,3.95,5.0,fr,27004,193,1125174,1,1,Active Shallow Crust,0.0,89.99032,-90.0,12/27/9685 +-1.55128,48.05985,6341,3,27,21,19,46,4.05,5.0,fr,27005,126,1125183,1,1,Active Shallow Crust,240.0062,58.00594,0.0,03/27/6341 +-1.55128,48.05985,8006,5,7,1,33,14,4.15,27.5,fr,27006,160,1125200,1,1,Active Shallow Crust,0.0,89.98975,-90.0,05/07/8006 +-1.55128,48.05985,7925,10,22,2,38,36,4.75,5.0,fr,27007,158,1125264,1,1,Active Shallow Crust,0.0,89.98984,0.0,10/22/7925 +0.98525,52.40167,8002,8,24,5,19,55,3.55,5.0,fr,27008,160,1125600,1,1,Active Shallow Crust,0.0,89.99001,0.0,08/24/8002 +0.98525,52.40167,4209,11,27,17,49,30,3.75,5.0,fr,27009,84,1125624,1,1,Active Shallow Crust,0.0,89.99023,0.0,11/27/4209 +7.34252,45.83795,4213,6,8,21,12,23,3.55,5.0,fr,27010,84,1126080,1,1,Active Shallow Crust,0.0,89.99297,0.0,06/08/4213 +7.34252,45.83795,2079,4,3,11,22,7,3.55,15.0,fr,27011,41,1126081,1,3,Active Shallow Crust,0.0,89.99297,0.0,04/03/2079 +7.34252,45.83795,5655,4,11,5,13,46,3.55,15.0,fr,27012,113,1126081,1,3,Active Shallow Crust,0.0,89.99297,0.0,04/11/5655 +7.34252,45.83795,3906,12,4,1,27,52,3.55,15.0,fr,27013,78,1126081,1,3,Active Shallow Crust,0.0,89.99297,0.0,12/04/3906 +7.34252,45.83795,247,4,2,17,41,32,3.55,5.0,fr,27014,4,1126083,1,1,Active Shallow Crust,240.0115,57.99784,0.0,04/02/0247 +7.34252,45.83795,5540,6,1,22,22,46,3.55,5.0,fr,27015,110,1126086,1,1,Active Shallow Crust,0.0,89.9929,-90.0,06/01/5540 +7.34252,45.83795,3485,7,7,12,39,16,3.65,15.0,fr,27016,69,1126093,1,2,Active Shallow Crust,0.0,89.98748,0.0,07/07/3485 +7.34252,45.83795,8315,5,24,15,3,1,3.65,15.0,fr,27017,166,1126093,1,2,Active Shallow Crust,0.0,89.98748,0.0,05/24/8315 +7.34252,45.83795,1287,10,12,12,33,28,3.65,5.0,fr,27018,25,1126095,1,2,Active Shallow Crust,240.001,58.01302,0.0,10/12/1287 +7.34252,45.83795,2856,8,31,16,47,4,3.65,5.0,fr,27019,57,1126095,1,2,Active Shallow Crust,240.001,58.01302,0.0,08/31/2856 +7.34252,45.83795,6954,7,8,23,33,39,3.65,5.0,fr,27020,139,1126098,1,1,Active Shallow Crust,0.0,89.98734,-90.0,07/08/6954 +7.34252,45.83795,7019,8,13,3,59,52,3.75,5.0,fr,27021,140,1126104,1,1,Active Shallow Crust,0.0,89.98884,0.0,08/13/7019 +7.34252,45.83795,5223,4,6,5,18,41,3.75,27.5,fr,27022,104,1126106,1,2,Active Shallow Crust,0.0,89.98884,0.0,04/06/5223 +7.34252,45.83795,8706,8,7,13,25,31,3.75,27.5,fr,27023,174,1126106,1,2,Active Shallow Crust,0.0,89.98884,0.0,08/07/8706 +7.34252,45.83795,2304,6,24,18,10,51,3.75,15.0,fr,27024,46,1126114,1,1,Active Shallow Crust,128.896,89.96748,0.0,06/24/2304 +7.34252,45.83795,1537,3,20,12,29,44,3.85,5.0,fr,27025,30,1126116,1,1,Active Shallow Crust,0.0,89.99005,0.0,03/20/1537 +7.34252,45.83795,4483,8,24,10,17,31,3.85,5.0,fr,27026,89,1126122,1,1,Active Shallow Crust,0.0,89.98994,-90.0,08/24/4483 +7.34252,45.83795,3463,7,6,14,29,51,3.85,5.0,fr,27027,69,1126125,1,1,Active Shallow Crust,128.8952,89.99503,0.0,07/06/3463 +7.34252,45.83795,403,10,12,15,17,58,3.95,5.0,fr,27028,8,1126128,1,1,Active Shallow Crust,0.0,89.99113,0.0,10/12/0403 +7.34252,45.83795,2896,5,7,0,57,37,3.95,5.0,fr,27029,57,1126131,1,2,Active Shallow Crust,240.0202,58.00438,0.0,05/07/2896 +7.34252,45.83795,5853,11,10,16,10,37,3.95,5.0,fr,27030,117,1126131,1,2,Active Shallow Crust,240.0202,58.00438,0.0,11/10/5853 +7.34252,45.83795,9754,4,30,15,1,55,4.35,5.0,fr,27031,195,1126179,1,1,Active Shallow Crust,240.0083,57.99594,0.0,04/30/9754 +7.34252,45.83795,6979,1,7,4,18,17,4.65,27.5,fr,27032,139,1126214,1,1,Active Shallow Crust,0.0,89.9901,0.0,01/07/6979 +7.34252,45.83795,2897,10,24,15,20,10,4.95,15.0,fr,27033,57,1126249,1,1,Active Shallow Crust,0.0,89.99019,0.0,10/24/2897 +7.34252,45.83795,1341,3,27,13,59,27,5.55,5.0,fr,27034,26,1126323,1,1,Active Shallow Crust,240.0286,58.00237,0.0,03/27/1341 +7.342125,45.83843,1711,2,15,3,58,25,6.15,5.09789,fr,27035,34,1126395,1,1,Active Shallow Crust,240.0638,57.9998,0.0,02/15/1711 +7.52412,50.07094,8903,8,21,10,16,36,3.55,5.0,fr,27036,178,1126560,1,1,Active Shallow Crust,0.0,89.98705,0.0,08/21/8903 +7.52412,50.07094,7510,8,2,23,33,51,3.55,5.0,fr,27037,150,1126563,1,1,Active Shallow Crust,240.0133,57.99836,0.0,08/02/7510 +7.52412,50.07094,9005,12,8,2,43,40,3.65,5.0,fr,27038,180,1126572,1,2,Active Shallow Crust,0.0,89.98846,0.0,12/08/9005 +7.52412,50.07094,7715,5,17,18,47,43,3.65,5.0,fr,27039,154,1126572,1,2,Active Shallow Crust,0.0,89.98846,0.0,05/17/7715 +7.52412,50.07094,4392,5,31,1,14,59,3.65,15.0,fr,27040,87,1126573,1,2,Active Shallow Crust,0.0,89.98846,0.0,05/31/4392 +7.52412,50.07094,597,11,16,20,59,21,3.65,15.0,fr,27041,11,1126573,1,2,Active Shallow Crust,0.0,89.98846,0.0,11/16/0597 +7.52412,50.07094,6888,4,29,12,38,27,3.65,5.0,fr,27042,137,1126578,1,1,Active Shallow Crust,0.0,89.98833,-90.0,04/29/6888 +7.52412,50.07094,4811,1,13,12,36,54,3.75,5.0,fr,27043,96,1126584,1,1,Active Shallow Crust,0.0,89.98972,0.0,01/13/4811 +7.52412,50.07094,4198,1,18,8,19,43,3.85,5.0,fr,27044,83,1126596,1,3,Active Shallow Crust,0.0,89.99084,0.0,01/18/4198 +7.52412,50.07094,5328,6,21,6,3,4,3.85,5.0,fr,27045,106,1126596,1,3,Active Shallow Crust,0.0,89.99084,0.0,06/21/5328 +7.52412,50.07094,3727,4,4,23,16,2,3.85,5.0,fr,27046,74,1126596,1,3,Active Shallow Crust,0.0,89.99084,0.0,04/04/3727 +7.52412,50.07094,1574,4,12,11,24,34,3.85,27.5,fr,27047,31,1126598,1,1,Active Shallow Crust,0.0,89.99084,0.0,04/12/1574 +7.52412,50.07094,7468,3,11,22,7,45,3.85,5.0,fr,27048,149,1126599,1,1,Active Shallow Crust,240.0113,57.99808,0.0,03/11/7468 +7.52412,50.07094,5553,9,2,20,56,45,3.95,5.0,fr,27049,111,1126608,1,2,Active Shallow Crust,0.0,89.99183,0.0,09/02/5553 +7.52412,50.07094,8719,3,31,15,53,33,3.95,5.0,fr,27050,174,1126608,1,2,Active Shallow Crust,0.0,89.99183,0.0,03/31/8719 +7.52412,50.07094,9191,8,20,17,40,44,4.05,5.0,fr,27051,183,1126620,1,1,Active Shallow Crust,0.0,89.98908,0.0,08/20/9191 +7.52412,50.07094,9054,2,23,23,26,14,4.15,5.0,fr,27052,181,1126635,1,1,Active Shallow Crust,240.0093,57.99706,0.0,02/23/9054 +7.52412,50.07094,9373,4,21,15,55,45,4.25,15.0,fr,27053,187,1126645,1,1,Active Shallow Crust,0.0,89.99133,0.0,04/21/9373 +7.52412,50.07094,3776,1,31,4,30,52,4.45,15.0,fr,27054,75,1126669,1,1,Active Shallow Crust,0.0,89.99081,0.0,01/31/3776 +7.52412,50.07094,9857,11,16,23,7,22,4.45,5.0,fr,27055,197,1126677,1,1,Active Shallow Crust,128.8914,89.99311,0.0,11/16/9857 +7.52412,50.07094,5239,5,13,20,24,51,4.55,5.0,fr,27056,104,1126680,1,1,Active Shallow Crust,0.0,89.98976,0.0,05/13/5239 +7.52412,50.07094,4127,2,4,11,59,58,4.65,27.5,fr,27057,82,1126694,1,1,Active Shallow Crust,0.0,89.99088,0.0,02/04/4127 +1.46614,45.45915,7387,11,2,0,8,34,3.55,5.0,fr,27058,147,1127520,1,1,Active Shallow Crust,0.0,89.98939,0.0,11/02/7387 +1.46614,45.45915,3777,1,18,9,41,13,3.55,15.0,fr,27059,75,1127521,1,1,Active Shallow Crust,0.0,89.98939,0.0,01/18/3777 +1.46614,45.45915,9922,1,1,8,43,22,3.95,5.0,fr,27060,198,1127568,1,1,Active Shallow Crust,0.0,89.98996,0.0,01/01/9922 +1.46614,45.45915,6256,2,26,20,42,37,4.15,5.0,fr,27061,125,1127592,1,1,Active Shallow Crust,0.0,89.99025,0.0,02/26/6256 +1.46614,45.45915,3026,5,30,17,0,39,4.55,5.0,fr,27062,60,1127649,1,1,Active Shallow Crust,128.8943,89.98572,0.0,05/30/3026 +3.45401,43.2134,4481,12,22,3,35,8,3.55,5.0,fr,27063,89,1128000,1,1,Active Shallow Crust,0.0,89.98898,0.0,12/22/4481 +3.45401,43.2134,1754,9,6,0,29,14,3.65,27.5,fr,27064,35,1128017,1,2,Active Shallow Crust,240.0008,58.01334,0.0,09/06/1754 +3.45401,43.2134,3340,6,20,19,47,36,3.65,27.5,fr,27065,66,1128017,1,2,Active Shallow Crust,240.0008,58.01334,0.0,06/20/3340 +3.45401,43.2134,7830,12,25,12,48,43,3.75,5.0,fr,27066,156,1128024,1,1,Active Shallow Crust,0.0,89.99124,0.0,12/25/7830 +3.45401,43.2134,2295,4,29,4,53,43,3.85,5.0,fr,27067,45,1128036,1,1,Active Shallow Crust,0.0,89.98959,0.0,04/29/2295 +3.45401,43.2134,4098,3,20,17,49,43,4.55,5.0,fr,27068,81,1128120,1,1,Active Shallow Crust,0.0,89.98954,0.0,03/20/4098 +2.8655,46.91395,3100,8,19,5,47,8,3.75,5.0,fr,27069,61,1128504,1,1,Active Shallow Crust,0.0,89.98906,0.0,08/19/3100 +2.8655,46.91395,7215,3,27,19,45,31,3.75,15.0,fr,27070,144,1128505,1,1,Active Shallow Crust,0.0,89.98906,0.0,03/27/7215 +2.8655,46.91395,3775,1,10,4,54,57,3.75,5.0,fr,27071,75,1128513,1,1,Active Shallow Crust,128.8968,89.96724,0.0,01/10/3775 +2.8655,46.91395,4345,4,9,11,13,16,3.85,27.5,fr,27072,86,1128518,1,1,Active Shallow Crust,0.0,89.99025,0.0,04/09/4345 +2.8655,46.91395,2234,11,17,11,56,59,3.95,15.0,fr,27073,44,1128535,1,1,Active Shallow Crust,0.0,89.98901,-90.0,11/17/2234 +7.8714,46.02794,8218,5,29,12,41,2,3.55,5.0,fr,27074,164,1128960,1,1,Active Shallow Crust,0.0,89.993,0.0,05/29/8218 +7.8714,46.02794,5884,5,15,4,47,46,3.55,15.0,fr,27075,117,1128961,1,1,Active Shallow Crust,0.0,89.993,0.0,05/15/5884 +7.8714,46.02794,4399,5,2,19,45,52,3.55,27.5,fr,27076,87,1128962,1,1,Active Shallow Crust,0.0,89.993,0.0,05/02/4399 +7.8714,46.02794,9232,8,17,16,3,46,3.55,27.5,fr,27077,184,1128965,1,1,Active Shallow Crust,240.0125,57.9975,0.0,08/17/9232 +7.8714,46.02794,8869,8,7,20,25,11,3.55,15.0,fr,27078,177,1128967,1,1,Active Shallow Crust,0.0,89.99292,-90.0,08/07/8869 +7.8714,46.02794,8586,12,28,3,13,37,3.55,27.5,fr,27079,171,1128971,1,1,Active Shallow Crust,128.8967,89.993,0.0,12/28/8586 +7.8714,46.02794,8696,4,29,21,57,58,3.65,5.0,fr,27080,173,1128972,1,3,Active Shallow Crust,0.0,89.98752,0.0,04/29/8696 +7.8714,46.02794,4683,9,16,6,39,32,3.65,5.0,fr,27081,93,1128972,1,3,Active Shallow Crust,0.0,89.98752,0.0,09/16/4683 +7.8714,46.02794,270,1,17,3,44,32,3.65,5.0,fr,27082,5,1128972,1,3,Active Shallow Crust,0.0,89.98752,0.0,01/17/0270 +7.8714,46.02794,6976,5,27,13,35,26,3.65,15.0,fr,27083,139,1128973,1,1,Active Shallow Crust,0.0,89.98752,0.0,05/27/6976 +7.8714,46.02794,9748,5,27,14,46,14,3.65,5.0,fr,27084,194,1128975,1,1,Active Shallow Crust,240.0005,58.01387,0.0,05/27/9748 +7.8714,46.02794,8589,5,1,18,2,3,3.65,27.5,fr,27085,171,1128977,1,1,Active Shallow Crust,240.0005,58.01378,0.0,05/01/8589 +7.8714,46.02794,553,8,22,16,57,29,3.75,5.0,fr,27086,11,1128984,1,1,Active Shallow Crust,0.0,89.98888,0.0,08/22/0553 +7.8714,46.02794,5737,9,22,17,19,16,3.75,27.5,fr,27087,114,1128986,1,1,Active Shallow Crust,0.0,89.98888,0.0,09/22/5737 +7.8714,46.02794,9267,3,27,0,57,40,3.75,5.0,fr,27088,185,1128987,1,2,Active Shallow Crust,240.0083,58.01687,0.0,03/27/9267 +7.8714,46.02794,791,9,16,8,5,2,3.75,5.0,fr,27089,15,1128987,1,2,Active Shallow Crust,240.0083,58.01687,0.0,09/16/0791 +7.8714,46.02794,1918,11,28,15,20,57,3.75,27.5,fr,27090,38,1128992,1,1,Active Shallow Crust,0.0,89.98875,-90.0,11/28/1918 +7.8714,46.02794,8724,8,21,19,10,33,3.85,5.0,fr,27091,174,1128999,1,1,Active Shallow Crust,240.0104,57.99833,0.0,08/21/8724 +7.8714,46.02794,2931,3,4,22,26,28,3.85,5.0,fr,27092,58,1129005,1,2,Active Shallow Crust,128.896,89.99504,0.0,03/04/2931 +7.8714,46.02794,8534,2,16,5,29,43,3.85,5.0,fr,27093,170,1129005,1,2,Active Shallow Crust,128.896,89.99504,0.0,02/16/8534 +7.8714,46.02794,3825,4,24,16,54,56,3.95,5.0,fr,27094,76,1129011,1,1,Active Shallow Crust,240.0204,58.00485,0.0,04/24/3825 +7.8714,46.02794,5496,12,3,13,13,15,3.95,15.0,fr,27095,109,1129012,1,1,Active Shallow Crust,240.0204,58.00485,0.0,12/03/5496 +7.8714,46.02794,6800,2,1,17,46,24,3.95,27.5,fr,27096,135,1129013,1,1,Active Shallow Crust,240.0204,58.00485,0.0,02/01/6800 +7.8714,46.02794,3483,4,17,3,17,10,4.05,15.0,fr,27097,69,1129021,1,1,Active Shallow Crust,0.0,89.98819,0.0,04/17/3483 +7.8714,46.02794,3654,5,5,5,5,24,4.05,27.5,fr,27098,73,1129022,1,1,Active Shallow Crust,0.0,89.98819,0.0,05/05/3654 +7.8714,46.02794,4763,2,3,20,43,12,4.05,5.0,fr,27099,95,1129023,1,1,Active Shallow Crust,240.0064,58.00534,0.0,02/03/4763 +7.8714,46.02794,363,12,19,18,40,2,4.05,15.0,fr,27100,7,1129027,1,1,Active Shallow Crust,0.0,89.98805,-90.0,12/19/0363 +7.8714,46.02794,7192,8,11,11,31,57,4.05,15.0,fr,27101,143,1129030,1,1,Active Shallow Crust,128.8907,89.99409,0.0,08/11/7192 +7.8714,46.02794,1009,1,15,14,32,19,4.15,5.0,fr,27102,20,1129032,1,1,Active Shallow Crust,0.0,89.98947,0.0,01/15/1009 +7.8714,46.02794,1971,3,2,22,51,20,4.15,27.5,fr,27103,39,1129043,1,1,Active Shallow Crust,128.8977,89.99298,0.0,03/02/1971 +7.8714,46.02794,4089,7,25,21,54,46,4.25,5.0,fr,27104,81,1129044,1,1,Active Shallow Crust,0.0,89.99062,0.0,07/25/4089 +7.8714,46.02794,1950,10,27,4,11,48,4.25,27.5,fr,27105,38,1129046,1,1,Active Shallow Crust,0.0,89.99062,0.0,10/27/1950 +7.8714,46.02794,1255,1,29,15,3,43,4.35,15.0,fr,27106,25,1129066,1,1,Active Shallow Crust,128.8987,89.9825,0.0,01/29/1255 +7.8714,46.02794,7013,11,22,23,49,14,5.15,5.0,fr,27107,140,1129158,1,1,Active Shallow Crust,0.0,89.9899,-90.0,11/22/7013 +7.8714,46.02794,2338,2,7,23,53,7,5.25,27.5,fr,27108,46,1129166,1,1,Active Shallow Crust,0.0,89.9901,0.0,02/07/2338 +7.8714,46.02794,9765,3,18,9,35,45,5.45,5.0,fr,27109,195,1129188,1,1,Active Shallow Crust,0.0,89.98978,0.0,03/18/9765 +7.8714,46.02794,8561,2,27,12,48,58,5.45,5.0,fr,27110,171,1129191,1,1,Active Shallow Crust,240.0284,57.99845,0.0,02/27/8561 +7.8714,46.02794,1533,2,1,9,42,38,5.75,15.0,fr,27111,30,1129228,1,1,Active Shallow Crust,240.0407,57.99936,0.0,02/01/1533 +4.15664,46.46517,5791,12,8,4,10,54,3.55,5.0,fr,27112,115,1129440,1,1,Active Shallow Crust,0.0,89.99306,0.0,12/08/5791 +4.15664,46.46517,7307,11,30,16,35,52,3.65,5.0,fr,27113,146,1129452,1,1,Active Shallow Crust,0.0,89.98762,0.0,11/30/7307 +4.15664,46.46517,9859,6,16,18,14,29,4.15,5.0,fr,27114,197,1129512,1,1,Active Shallow Crust,0.0,89.98956,0.0,06/16/9859 +4.15664,46.46517,1014,7,26,19,23,17,4.95,5.0,fr,27115,20,1129614,1,1,Active Shallow Crust,0.0,89.99018,-90.0,07/26/1014 +6.16126,44.90893,2538,6,15,16,54,7,3.55,15.0,fr,27116,50,1129921,1,1,Active Shallow Crust,0.0,89.99286,0.0,06/15/2538 +6.16126,44.90893,6243,11,4,0,32,9,3.55,5.0,fr,27117,124,1129926,1,1,Active Shallow Crust,0.0,89.99277,-90.0,11/04/6243 +6.16126,44.90893,4600,6,13,19,27,39,3.65,27.5,fr,27118,91,1129934,1,1,Active Shallow Crust,0.0,89.98727,0.0,06/13/4600 +6.16126,44.90893,9704,9,25,19,39,53,3.65,5.0,fr,27119,194,1129941,1,1,Active Shallow Crust,128.8996,89.96349,0.0,09/25/9704 +6.16126,44.90893,3488,8,12,6,3,46,3.85,5.0,fr,27120,69,1129956,1,1,Active Shallow Crust,0.0,89.98989,0.0,08/12/3488 +6.16126,44.90893,8416,8,9,5,11,55,3.95,15.0,fr,27121,168,1129972,1,1,Active Shallow Crust,240.0187,58.0057,0.0,08/09/8416 +6.16126,44.90893,4316,6,13,0,15,58,4.25,15.0,fr,27122,86,1130011,1,1,Active Shallow Crust,0.0,89.99032,-90.0,06/13/4316 +6.16126,44.90893,694,5,11,10,11,18,4.75,5.0,fr,27123,13,1130064,1,1,Active Shallow Crust,0.0,89.98923,0.0,05/11/0694 +6.16126,44.90893,9419,9,12,16,45,8,4.85,5.0,fr,27124,188,1130076,1,1,Active Shallow Crust,0.0,89.9904,0.0,09/12/9419 +4.96818,51.22986,7652,12,4,21,20,8,3.55,5.0,fr,27125,153,1130400,1,2,Active Shallow Crust,0.0,89.98737,0.0,12/04/7652 +4.96818,51.22986,6979,2,26,13,25,50,3.55,5.0,fr,27126,139,1130400,1,2,Active Shallow Crust,0.0,89.98737,0.0,02/26/6979 +4.96818,51.22986,8068,7,3,11,8,27,4.05,5.0,fr,27127,161,1130463,1,1,Active Shallow Crust,240.0069,58.00601,0.0,07/03/8068 +4.96818,51.22986,5057,6,5,22,19,18,4.15,15.0,fr,27128,101,1130482,1,1,Active Shallow Crust,128.8973,89.99367,0.0,06/05/5057 +4.96818,51.22986,1890,7,6,17,49,30,4.25,5.0,fr,27129,37,1130484,1,1,Active Shallow Crust,0.0,89.98872,0.0,07/06/1890 +-3.05134,44.64121,8439,12,26,18,53,47,3.65,5.0,fr,27130,168,1130901,1,1,Active Shallow Crust,128.901,89.96349,0.0,12/26/8439 +5.40609,46.8966,6939,4,4,17,20,42,3.55,5.0,fr,27131,138,1131360,1,1,Active Shallow Crust,0.0,89.99311,0.0,04/04/6939 +5.40609,46.8966,6296,9,1,21,41,25,3.55,15.0,fr,27132,125,1131361,1,1,Active Shallow Crust,0.0,89.99311,0.0,09/01/6296 +5.40609,46.8966,493,7,23,16,4,27,3.65,5.0,fr,27133,9,1131372,1,1,Active Shallow Crust,0.0,89.98772,0.0,07/23/0493 +5.40609,46.8966,8585,2,5,22,51,30,3.75,5.0,fr,27134,171,1131384,1,1,Active Shallow Crust,0.0,89.98905,0.0,02/05/8585 +5.40609,46.8966,1571,4,2,1,10,57,3.75,5.0,fr,27135,31,1131393,1,1,Active Shallow Crust,128.8972,89.96693,0.0,04/02/1571 +5.40609,46.8966,6764,5,14,15,59,11,4.05,15.0,fr,27136,135,1131421,1,1,Active Shallow Crust,0.0,89.98837,0.0,05/14/6764 +5.40609,46.8966,5385,2,11,20,4,37,4.35,5.0,fr,27137,107,1131456,1,1,Active Shallow Crust,0.0,89.98903,0.0,02/11/5385 +5.40609,46.8966,9358,10,30,16,15,14,4.65,15.0,fr,27138,187,1131493,1,1,Active Shallow Crust,0.0,89.99029,0.0,10/30/9358 +5.40609,46.8966,4068,8,9,9,11,2,5.05,5.0,fr,27139,81,1131540,1,1,Active Shallow Crust,0.0,89.9902,0.0,08/09/4068 +4.41033,46.88832,7223,1,8,6,36,28,3.55,15.0,fr,27140,144,1132321,1,1,Active Shallow Crust,0.0,89.99311,0.0,01/08/7223 +4.41033,46.88832,7264,3,26,4,33,53,3.55,27.5,fr,27141,145,1132328,1,1,Active Shallow Crust,0.0,89.99303,-90.0,03/26/7264 +4.41033,46.88832,9088,1,7,20,21,7,3.55,27.5,fr,27142,181,1132331,1,1,Active Shallow Crust,128.8964,89.99311,0.0,01/07/9088 +4.41033,46.88832,9214,5,31,23,14,1,3.65,5.0,fr,27143,184,1132332,1,2,Active Shallow Crust,0.0,89.98772,0.0,05/31/9214 +4.41033,46.88832,5252,8,29,7,31,53,3.65,5.0,fr,27144,105,1132332,1,2,Active Shallow Crust,0.0,89.98772,0.0,08/29/5252 +4.41033,46.88832,7005,7,15,23,32,2,3.65,15.0,fr,27145,140,1132333,1,1,Active Shallow Crust,0.0,89.98772,0.0,07/15/7005 +4.41033,46.88832,6793,9,9,11,34,29,3.65,5.0,fr,27146,135,1132335,1,1,Active Shallow Crust,240.0016,58.0132,0.0,09/09/6793 +4.41033,46.88832,5910,2,10,2,3,32,3.75,5.0,fr,27147,118,1132347,1,1,Active Shallow Crust,240.0082,58.01799,0.0,02/10/5910 +4.41033,46.88832,189,12,18,23,15,35,3.75,5.0,fr,27148,3,1132353,1,1,Active Shallow Crust,128.8963,89.9675,0.0,12/18/0189 +4.41033,46.88832,9045,8,30,20,55,20,3.85,15.0,fr,27149,180,1132357,1,1,Active Shallow Crust,0.0,89.99024,0.0,08/30/9045 +4.41033,46.88832,2228,8,29,0,9,34,3.85,15.0,fr,27150,44,1132360,1,2,Active Shallow Crust,240.0119,57.99788,0.0,08/29/2228 +4.41033,46.88832,815,6,19,3,44,15,3.85,15.0,fr,27151,16,1132360,1,2,Active Shallow Crust,240.0119,57.99788,0.0,06/19/0815 +4.41033,46.88832,3133,3,25,10,42,9,3.85,5.0,fr,27152,62,1132362,1,1,Active Shallow Crust,0.0,89.99013,-90.0,03/25/3133 +4.41033,46.88832,5712,2,22,4,32,43,3.95,15.0,fr,27153,114,1132369,1,1,Active Shallow Crust,0.0,89.9913,0.0,02/22/5712 +4.41033,46.88832,8074,8,2,7,11,0,4.05,15.0,fr,27154,161,1132381,1,1,Active Shallow Crust,0.0,89.98837,0.0,08/02/8074 +4.41033,46.88832,902,6,22,1,58,0,4.15,15.0,fr,27155,18,1132393,1,1,Active Shallow Crust,0.0,89.98964,0.0,06/22/0902 +4.41033,46.88832,3405,4,14,5,14,31,4.25,5.0,fr,27156,68,1132407,1,1,Active Shallow Crust,240.0082,57.99376,0.0,04/14/3405 +4.41033,46.88832,1808,5,30,3,30,39,4.75,5.0,fr,27157,36,1132464,1,1,Active Shallow Crust,0.0,89.98961,0.0,05/30/1808 +7.7562,45.2283,3093,5,21,18,34,16,3.55,5.0,fr,27158,61,1132800,1,1,Active Shallow Crust,0.0,89.9929,0.0,05/21/3093 +7.7562,45.2283,2940,9,10,10,47,5,3.55,5.0,fr,27159,58,1132809,1,1,Active Shallow Crust,128.8958,89.9929,0.0,09/10/2940 +7.7562,45.2283,4748,9,5,8,22,4,3.65,5.0,fr,27160,94,1132812,1,1,Active Shallow Crust,0.0,89.98734,0.0,09/05/4748 +7.7562,45.2283,9736,8,5,4,31,40,3.65,15.0,fr,27161,194,1132813,1,1,Active Shallow Crust,0.0,89.98734,0.0,08/05/9736 +7.7562,45.2283,6977,8,2,17,47,26,3.65,15.0,fr,27162,139,1132822,1,1,Active Shallow Crust,128.9006,89.9635,0.0,08/02/6977 +7.7562,45.2283,4280,12,30,2,24,33,3.75,5.0,fr,27163,85,1132824,1,1,Active Shallow Crust,0.0,89.98872,0.0,12/30/4280 +7.7562,45.2283,286,2,22,7,4,0,3.75,15.0,fr,27164,5,1132825,1,1,Active Shallow Crust,0.0,89.98872,0.0,02/22/0286 +7.7562,45.2283,6816,3,13,5,52,37,3.85,5.0,fr,27165,136,1132836,1,1,Active Shallow Crust,0.0,89.98994,0.0,03/13/6816 +7.7562,45.2283,6820,8,7,7,57,54,4.05,5.0,fr,27166,136,1132866,1,1,Active Shallow Crust,0.0,89.99192,-90.0,08/07/6820 +7.7562,45.2283,8840,5,25,16,52,31,4.25,15.0,fr,27167,176,1132885,1,1,Active Shallow Crust,0.0,89.99049,0.0,05/25/8840 +7.7562,45.2283,8265,7,30,1,40,32,5.05,5.0,fr,27168,165,1132980,1,1,Active Shallow Crust,0.0,89.98989,0.0,07/30/8265 +8.33363,47.63198,7196,8,21,21,13,58,3.55,5.0,fr,27169,143,1133280,1,4,Active Shallow Crust,0.0,89.98641,0.0,08/21/7196 +8.33363,47.63198,5618,6,27,4,30,55,3.55,5.0,fr,27170,112,1133280,1,4,Active Shallow Crust,0.0,89.98641,0.0,06/27/5618 +8.33363,47.63198,4169,5,15,13,47,40,3.55,5.0,fr,27171,83,1133280,1,4,Active Shallow Crust,0.0,89.98641,0.0,05/15/4169 +8.33363,47.63198,4819,8,27,0,13,54,3.55,5.0,fr,27172,96,1133280,1,4,Active Shallow Crust,0.0,89.98641,0.0,08/27/4819 +8.33363,47.63198,9807,1,21,19,41,56,3.55,15.0,fr,27173,196,1133281,1,4,Active Shallow Crust,0.0,89.98641,0.0,01/21/9807 +8.33363,47.63198,4313,1,31,7,13,18,3.55,15.0,fr,27174,86,1133281,1,4,Active Shallow Crust,0.0,89.98641,0.0,01/31/4313 +8.33363,47.63198,7421,1,15,11,5,14,3.55,15.0,fr,27175,148,1133281,1,4,Active Shallow Crust,0.0,89.98641,0.0,01/15/7421 +8.33363,47.63198,4335,3,25,16,58,9,3.55,15.0,fr,27176,86,1133281,1,4,Active Shallow Crust,0.0,89.98641,0.0,03/25/4335 +8.33363,47.63198,7537,10,6,1,24,41,3.55,27.5,fr,27177,150,1133282,1,3,Active Shallow Crust,0.0,89.98641,0.0,10/06/7537 +8.33363,47.63198,8624,12,7,2,43,25,3.55,27.5,fr,27178,172,1133282,1,3,Active Shallow Crust,0.0,89.98641,0.0,12/07/8624 +8.33363,47.63198,8073,6,4,6,27,18,3.55,27.5,fr,27179,161,1133282,1,3,Active Shallow Crust,0.0,89.98641,0.0,06/04/8073 +8.33363,47.63198,3463,6,4,20,48,36,3.55,5.0,fr,27180,69,1133283,1,2,Active Shallow Crust,240.0118,57.99818,0.0,06/04/3463 +8.33363,47.63198,4177,5,1,1,16,1,3.55,5.0,fr,27181,83,1133283,1,2,Active Shallow Crust,240.0118,57.99818,0.0,05/01/4177 +8.33363,47.63198,6155,7,11,18,59,7,3.55,15.0,fr,27182,123,1133284,1,1,Active Shallow Crust,240.0118,57.99818,0.0,07/11/6155 +8.33363,47.63198,420,5,5,23,3,40,3.55,27.5,fr,27183,8,1133285,1,1,Active Shallow Crust,240.0118,57.99809,0.0,05/05/0420 +8.33363,47.63198,7372,2,2,19,27,10,3.55,5.0,fr,27184,147,1133286,1,1,Active Shallow Crust,0.0,89.98625,-90.0,02/02/7372 +8.33363,47.63198,3051,4,5,10,6,55,3.55,15.0,fr,27185,61,1133287,1,1,Active Shallow Crust,0.0,89.98625,-90.0,04/05/3051 +8.33363,47.63198,4592,1,5,10,41,41,3.55,5.0,fr,27186,91,1133289,1,1,Active Shallow Crust,128.8965,89.9932,0.0,01/05/4592 +8.33363,47.63198,5003,7,20,15,56,52,3.55,15.0,fr,27187,100,1133290,1,1,Active Shallow Crust,128.8965,89.9932,0.0,07/20/5003 +8.33363,47.63198,3969,4,13,13,5,4,3.55,27.5,fr,27188,79,1133291,1,1,Active Shallow Crust,128.8965,89.9932,0.0,04/13/3969 +8.33363,47.63198,9750,4,12,5,41,10,3.65,5.0,fr,27189,194,1133292,1,6,Active Shallow Crust,0.0,89.98788,0.0,04/12/9750 +8.33363,47.63198,9625,4,10,23,55,15,3.65,5.0,fr,27190,192,1133292,1,6,Active Shallow Crust,0.0,89.98788,0.0,04/10/9625 +8.33363,47.63198,2977,3,13,21,36,56,3.65,5.0,fr,27191,59,1133292,1,6,Active Shallow Crust,0.0,89.98788,0.0,03/13/2977 +8.33363,47.63198,7887,8,9,1,57,34,3.65,5.0,fr,27192,157,1133292,1,6,Active Shallow Crust,0.0,89.98788,0.0,08/09/7887 +8.33363,47.63198,6572,4,5,9,42,26,3.65,5.0,fr,27193,131,1133292,1,6,Active Shallow Crust,0.0,89.98788,0.0,04/05/6572 +8.33363,47.63198,2920,8,6,23,48,10,3.65,5.0,fr,27194,58,1133292,1,6,Active Shallow Crust,0.0,89.98788,0.0,08/06/2920 +8.33363,47.63198,2610,9,30,6,28,35,3.65,15.0,fr,27195,52,1133293,1,3,Active Shallow Crust,0.0,89.98788,0.0,09/30/2610 +8.33363,47.63198,1709,1,17,19,27,29,3.65,15.0,fr,27196,34,1133293,1,3,Active Shallow Crust,0.0,89.98788,0.0,01/17/1709 +8.33363,47.63198,4468,4,28,5,18,49,3.65,15.0,fr,27197,89,1133293,1,3,Active Shallow Crust,0.0,89.98788,0.0,04/28/4468 +8.33363,47.63198,9257,6,5,8,13,2,3.65,15.0,fr,27198,185,1133296,1,1,Active Shallow Crust,240.0009,58.01182,0.0,06/05/9257 +8.33363,47.63198,8372,8,28,0,45,37,3.65,5.0,fr,27199,167,1133301,1,1,Active Shallow Crust,128.8994,89.96355,0.0,08/28/8372 +8.33363,47.63198,3275,6,25,3,12,51,3.75,5.0,fr,27200,65,1133304,1,7,Active Shallow Crust,0.0,89.9892,0.0,06/25/3275 +8.33363,47.63198,9745,12,28,0,28,23,3.75,5.0,fr,27201,194,1133304,1,7,Active Shallow Crust,0.0,89.9892,0.0,12/28/9745 +8.33363,47.63198,395,6,11,7,34,4,3.75,5.0,fr,27202,7,1133304,1,7,Active Shallow Crust,0.0,89.9892,0.0,06/11/0395 +8.33363,47.63198,9122,10,6,7,40,12,3.75,5.0,fr,27203,182,1133304,1,7,Active Shallow Crust,0.0,89.9892,0.0,10/06/9122 +8.33363,47.63198,2952,4,9,8,1,42,3.75,5.0,fr,27204,59,1133304,1,7,Active Shallow Crust,0.0,89.9892,0.0,04/09/2952 +8.33363,47.63198,4379,9,12,11,1,21,3.75,5.0,fr,27205,87,1133304,1,7,Active Shallow Crust,0.0,89.9892,0.0,09/12/4379 +8.33363,47.63198,9656,7,29,16,25,33,3.75,5.0,fr,27206,193,1133304,1,7,Active Shallow Crust,0.0,89.9892,0.0,07/29/9656 +8.33363,47.63198,8420,11,4,11,0,22,3.75,15.0,fr,27207,168,1133305,1,2,Active Shallow Crust,0.0,89.9892,0.0,11/04/8420 +8.33363,47.63198,3823,6,18,10,27,43,3.75,15.0,fr,27208,76,1133305,1,2,Active Shallow Crust,0.0,89.9892,0.0,06/18/3823 +8.33363,47.63198,4807,1,15,15,36,13,3.75,5.0,fr,27209,96,1133307,1,1,Active Shallow Crust,240.009,58.01622,0.0,01/15/4807 +8.33363,47.63198,3507,2,25,1,33,15,3.85,5.0,fr,27210,70,1133316,1,3,Active Shallow Crust,0.0,89.99038,0.0,02/25/3507 +8.33363,47.63198,2597,12,4,14,45,38,3.85,5.0,fr,27211,51,1133316,1,3,Active Shallow Crust,0.0,89.99038,0.0,12/04/2597 +8.33363,47.63198,7009,6,14,5,23,41,3.85,5.0,fr,27212,140,1133316,1,3,Active Shallow Crust,0.0,89.99038,0.0,06/14/7009 +8.33363,47.63198,7173,11,27,10,48,15,3.85,15.0,fr,27213,143,1133317,1,2,Active Shallow Crust,0.0,89.99038,0.0,11/27/7173 +8.33363,47.63198,9060,1,30,4,59,5,3.85,15.0,fr,27214,181,1133317,1,2,Active Shallow Crust,0.0,89.99038,0.0,01/30/9060 +8.33363,47.63198,4283,11,18,13,47,8,3.85,27.5,fr,27215,85,1133318,1,1,Active Shallow Crust,0.0,89.99038,0.0,11/18/4283 +8.33363,47.63198,6260,5,17,15,28,50,3.85,5.0,fr,27216,125,1133319,1,1,Active Shallow Crust,240.0099,57.99893,0.0,05/17/6260 +8.33363,47.63198,8573,1,2,2,27,27,3.95,5.0,fr,27217,171,1133328,1,2,Active Shallow Crust,0.0,89.99142,0.0,01/02/8573 +8.33363,47.63198,1054,3,21,2,33,1,3.95,5.0,fr,27218,21,1133328,1,2,Active Shallow Crust,0.0,89.99142,0.0,03/21/1054 +8.33363,47.63198,2679,12,19,14,59,42,3.95,15.0,fr,27219,53,1133329,1,1,Active Shallow Crust,0.0,89.99142,0.0,12/19/2679 +8.33363,47.63198,6120,12,29,8,53,49,3.95,5.0,fr,27220,122,1133331,1,1,Active Shallow Crust,240.02,58.00599,0.0,12/29/6120 +8.33363,47.63198,837,12,22,16,32,18,3.95,5.0,fr,27221,16,1133334,1,1,Active Shallow Crust,0.0,89.99133,-90.0,12/22/0837 +8.33363,47.63198,9242,7,14,3,37,58,3.95,15.0,fr,27222,184,1133335,1,1,Active Shallow Crust,0.0,89.99133,-90.0,07/14/9242 +8.33363,47.63198,1290,5,4,6,33,39,3.95,27.5,fr,27223,25,1133336,1,1,Active Shallow Crust,0.0,89.99133,-90.0,05/04/1290 +8.33363,47.63198,8756,12,2,20,4,26,3.95,5.0,fr,27224,175,1133337,1,1,Active Shallow Crust,128.898,89.99571,0.0,12/02/8756 +8.33363,47.63198,8597,10,13,11,29,14,4.05,5.0,fr,27225,171,1133340,1,3,Active Shallow Crust,0.0,89.99236,0.0,10/13/8597 +8.33363,47.63198,7414,1,7,15,21,11,4.05,5.0,fr,27226,148,1133340,1,3,Active Shallow Crust,0.0,89.99236,0.0,01/07/7414 +8.33363,47.63198,850,1,28,23,2,40,4.05,5.0,fr,27227,16,1133340,1,3,Active Shallow Crust,0.0,89.99236,0.0,01/28/0850 +8.33363,47.63198,413,8,27,0,28,55,4.05,15.0,fr,27228,8,1133341,1,1,Active Shallow Crust,0.0,89.99236,0.0,08/27/0413 +8.33363,47.63198,6780,11,22,23,30,20,4.05,5.0,fr,27229,135,1133346,1,1,Active Shallow Crust,0.0,89.99227,-90.0,11/22/6780 +8.33363,47.63198,9044,9,8,4,29,52,4.05,15.0,fr,27230,180,1133347,1,1,Active Shallow Crust,0.0,89.99227,-90.0,09/08/9044 +8.33363,47.63198,1110,7,29,5,28,53,4.15,5.0,fr,27231,22,1133352,1,1,Active Shallow Crust,0.0,89.99319,0.0,07/29/1110 +8.33363,47.63198,1099,3,10,14,30,49,4.15,5.0,fr,27232,21,1133355,1,1,Active Shallow Crust,240.0096,57.99762,0.0,03/10/1099 +8.33363,47.63198,2765,12,21,16,23,0,4.25,5.0,fr,27233,55,1133364,1,1,Active Shallow Crust,0.0,89.98785,0.0,12/21/2765 +8.33363,47.63198,8184,6,3,15,52,16,4.25,15.0,fr,27234,163,1133365,1,1,Active Shallow Crust,0.0,89.98785,0.0,06/03/8184 +8.33363,47.63198,7023,3,4,20,40,44,4.25,5.0,fr,27235,140,1133370,1,1,Active Shallow Crust,0.0,89.98772,-90.0,03/04/7023 +8.33363,47.63198,5025,10,21,14,22,12,4.45,5.0,fr,27236,100,1133388,1,1,Active Shallow Crust,0.0,89.99036,0.0,10/21/5025 +8.33363,47.63198,7322,4,21,19,47,26,4.45,15.0,fr,27237,146,1133389,1,1,Active Shallow Crust,0.0,89.99036,0.0,04/21/7322 +8.33363,47.63198,8468,12,6,11,37,32,4.45,27.5,fr,27238,169,1133390,1,1,Active Shallow Crust,0.0,89.99036,0.0,12/06/8468 +8.33363,47.63198,7069,4,25,10,57,2,4.45,5.0,fr,27239,141,1133391,1,1,Active Shallow Crust,240.006,57.99439,0.0,04/25/7069 +8.33363,47.63198,7516,3,20,3,52,33,4.45,5.0,fr,27240,150,1133394,1,1,Active Shallow Crust,0.0,89.99024,-90.0,03/20/7516 +8.33363,47.63198,6670,10,7,12,48,48,4.45,5.0,fr,27241,133,1133397,1,1,Active Shallow Crust,128.8911,89.99518,0.0,10/07/6670 +8.33363,47.63198,3927,6,7,21,48,52,4.55,5.0,fr,27242,78,1133400,1,1,Active Shallow Crust,0.0,89.9914,0.0,06/07/3927 +8.33363,47.63198,2869,5,31,10,33,10,4.65,5.0,fr,27243,57,1133412,1,1,Active Shallow Crust,0.0,89.98851,0.0,05/31/2869 +8.33363,47.63198,2162,11,22,18,23,20,4.85,5.0,fr,27244,43,1133436,1,1,Active Shallow Crust,0.0,89.99087,0.0,11/22/2162 +8.33363,47.63198,9223,9,17,23,24,18,5.55,5.0,fr,27245,184,1133520,1,1,Active Shallow Crust,0.0,89.99048,0.0,09/17/9223 +8.33363,47.63198,808,9,25,8,1,53,5.85,5.0,fr,27246,16,1133556,1,1,Active Shallow Crust,0.0,89.99037,0.0,09/25/0808 +6.96538,44.61025,8904,3,6,9,5,22,3.55,5.0,fr,27247,178,1133760,1,4,Active Shallow Crust,0.0,89.99282,0.0,03/06/8904 +6.96538,44.61025,6353,9,19,21,40,49,3.55,5.0,fr,27248,127,1133760,1,4,Active Shallow Crust,0.0,89.99282,0.0,09/19/6353 +6.96538,44.61025,310,12,27,23,57,10,3.55,5.0,fr,27249,6,1133760,1,4,Active Shallow Crust,0.0,89.99282,0.0,12/27/0310 +6.96538,44.61025,2252,3,18,0,31,56,3.55,5.0,fr,27250,45,1133760,1,4,Active Shallow Crust,0.0,89.99282,0.0,03/18/2252 +6.96538,44.61025,6063,4,30,0,43,47,3.55,15.0,fr,27251,121,1133761,1,1,Active Shallow Crust,0.0,89.99282,0.0,04/30/6063 +6.96538,44.61025,1764,1,12,13,12,49,3.55,27.5,fr,27252,35,1133762,1,1,Active Shallow Crust,0.0,89.99282,0.0,01/12/1764 +6.96538,44.61025,5662,5,28,15,15,18,3.55,5.0,fr,27253,113,1133766,1,1,Active Shallow Crust,0.0,89.99274,-90.0,05/28/5662 +6.96538,44.61025,3913,12,19,9,25,13,3.65,5.0,fr,27254,78,1133772,1,1,Active Shallow Crust,0.0,89.98721,0.0,12/19/3913 +6.96538,44.61025,2719,9,11,19,9,6,3.65,15.0,fr,27255,54,1133773,1,3,Active Shallow Crust,0.0,89.98721,0.0,09/11/2719 +6.96538,44.61025,4907,2,17,0,3,31,3.65,15.0,fr,27256,98,1133773,1,3,Active Shallow Crust,0.0,89.98721,0.0,02/17/4907 +6.96538,44.61025,9056,4,3,12,13,47,3.65,15.0,fr,27257,181,1133773,1,3,Active Shallow Crust,0.0,89.98721,0.0,04/03/9056 +6.96538,44.61025,8108,10,15,6,23,9,3.65,27.5,fr,27258,162,1133774,1,1,Active Shallow Crust,0.0,89.98721,0.0,10/15/8108 +6.96538,44.61025,7816,2,5,19,37,29,3.65,15.0,fr,27259,156,1133776,1,1,Active Shallow Crust,240.0019,58.01219,0.0,02/05/7816 +6.96538,44.61025,8198,8,4,16,36,43,3.75,5.0,fr,27260,163,1133784,1,1,Active Shallow Crust,0.0,89.98859,0.0,08/04/8198 +6.96538,44.61025,2898,9,26,16,38,47,3.75,15.0,fr,27261,57,1133785,1,1,Active Shallow Crust,0.0,89.98859,0.0,09/26/2898 +6.96538,44.61025,7639,3,1,12,22,0,3.75,27.5,fr,27262,152,1133786,1,1,Active Shallow Crust,0.0,89.98859,0.0,03/01/7639 +6.96538,44.61025,3288,9,21,21,10,6,3.75,5.0,fr,27263,65,1133790,1,2,Active Shallow Crust,0.0,89.98846,-90.0,09/21/3288 +6.96538,44.61025,977,6,3,5,7,3,3.75,5.0,fr,27264,19,1133790,1,2,Active Shallow Crust,0.0,89.98846,-90.0,06/03/0977 +6.96538,44.61025,3928,6,10,5,5,52,3.75,5.0,fr,27265,78,1133793,1,1,Active Shallow Crust,128.897,89.96746,0.0,06/10/3928 +6.96538,44.61025,7578,7,27,8,33,11,3.85,5.0,fr,27266,151,1133796,1,1,Active Shallow Crust,0.0,89.98984,0.0,07/27/7578 +6.96538,44.61025,6991,12,30,22,36,44,3.85,15.0,fr,27267,139,1133797,1,1,Active Shallow Crust,0.0,89.98984,0.0,12/30/6991 +6.96538,44.61025,7881,5,13,22,32,43,3.85,5.0,fr,27268,157,1133799,1,1,Active Shallow Crust,240.0099,57.99793,0.0,05/13/7881 +6.96538,44.61025,8204,6,30,16,44,11,3.85,5.0,fr,27269,164,1133805,1,1,Active Shallow Crust,128.8967,89.99238,0.0,06/30/8204 +6.96538,44.61025,4678,11,7,7,54,37,3.85,15.0,fr,27270,93,1133806,1,1,Active Shallow Crust,128.8967,89.99238,0.0,11/07/4678 +6.96538,44.61025,5313,1,14,5,9,10,3.95,5.0,fr,27271,106,1133808,1,2,Active Shallow Crust,0.0,89.99094,0.0,01/14/5313 +6.96538,44.61025,7171,3,26,10,35,49,3.95,5.0,fr,27272,143,1133808,1,2,Active Shallow Crust,0.0,89.99094,0.0,03/26/7171 +6.96538,44.61025,7297,12,30,20,6,4,4.05,5.0,fr,27273,145,1133820,1,4,Active Shallow Crust,0.0,89.99193,0.0,12/30/7297 +6.96538,44.61025,8001,9,27,21,50,35,4.05,5.0,fr,27274,160,1133820,1,4,Active Shallow Crust,0.0,89.99193,0.0,09/27/8001 +6.96538,44.61025,747,12,13,12,16,44,4.05,5.0,fr,27275,14,1133820,1,4,Active Shallow Crust,0.0,89.99193,0.0,12/13/0747 +6.96538,44.61025,2513,5,24,8,19,30,4.05,5.0,fr,27276,50,1133820,1,4,Active Shallow Crust,0.0,89.99193,0.0,05/24/2513 +6.96538,44.61025,6190,5,21,19,57,47,4.05,5.0,fr,27277,123,1133823,1,1,Active Shallow Crust,240.0061,58.00568,0.0,05/21/6190 +6.96538,44.61025,6442,8,26,22,46,20,4.05,5.0,fr,27278,128,1133826,1,1,Active Shallow Crust,0.0,89.99183,-90.0,08/26/6442 +6.96538,44.61025,2853,11,24,12,27,47,4.15,15.0,fr,27279,57,1133833,1,1,Active Shallow Crust,0.0,89.9892,0.0,11/24/2853 +6.96538,44.61025,1174,11,22,18,23,53,4.25,5.0,fr,27280,23,1133844,1,2,Active Shallow Crust,0.0,89.99038,0.0,11/22/1174 +6.96538,44.61025,7718,2,22,13,37,30,4.25,5.0,fr,27281,154,1133844,1,2,Active Shallow Crust,0.0,89.99038,0.0,02/22/7718 +6.96538,44.61025,3379,7,5,17,8,47,4.35,5.0,fr,27282,67,1133856,1,1,Active Shallow Crust,0.0,89.99142,0.0,07/05/3379 +6.96538,44.61025,2027,9,11,18,53,27,4.35,15.0,fr,27283,40,1133857,1,1,Active Shallow Crust,0.0,89.99142,0.0,09/11/2027 +6.96538,44.61025,8640,7,26,22,29,47,4.45,5.0,fr,27284,172,1133874,1,1,Active Shallow Crust,0.0,89.98969,-90.0,07/26/8640 +6.96538,44.61025,4067,12,22,5,38,46,4.55,5.0,fr,27285,81,1133880,1,1,Active Shallow Crust,0.0,89.99092,0.0,12/22/4067 +6.96538,44.61025,7382,5,14,18,52,48,4.65,5.0,fr,27286,147,1133892,1,1,Active Shallow Crust,0.0,89.98988,0.0,05/14/7382 +6.96538,44.61025,7123,6,1,3,35,29,5.25,15.0,fr,27287,142,1133965,1,1,Active Shallow Crust,0.0,89.98986,0.0,06/01/7123 +6.96538,44.61025,9926,4,24,16,16,32,5.25,5.0,fr,27288,198,1133973,1,1,Active Shallow Crust,128.8843,89.98684,0.0,04/24/9926 +5.99574,48.7592,7945,12,5,22,51,45,3.75,5.0,fr,27289,158,1134264,1,1,Active Shallow Crust,0.0,89.98944,0.0,12/05/7945 +5.99574,48.7592,9613,7,24,4,15,8,3.85,5.0,fr,27290,192,1134276,1,2,Active Shallow Crust,0.0,89.99059,0.0,07/24/9613 +5.99574,48.7592,640,1,3,0,33,29,3.85,5.0,fr,27291,12,1134276,1,2,Active Shallow Crust,0.0,89.99059,0.0,01/03/0640 +5.99574,48.7592,4730,4,26,11,42,48,3.95,15.0,fr,27292,94,1134298,1,1,Active Shallow Crust,128.9002,89.99371,0.0,04/26/4730 +-0.4936,43.53318,6191,3,22,3,6,32,3.55,5.0,fr,27293,123,1134720,1,1,Active Shallow Crust,0.0,89.98994,0.0,03/22/6191 +-0.4936,43.53318,8186,4,1,19,26,55,3.55,5.0,fr,27294,163,1134723,1,2,Active Shallow Crust,240.0119,57.99812,0.0,04/01/8186 +-0.4936,43.53318,7717,1,17,13,50,5,3.55,5.0,fr,27295,154,1134723,1,2,Active Shallow Crust,240.0119,57.99812,0.0,01/17/7717 +-0.4936,43.53318,1505,12,20,6,6,55,3.75,27.5,fr,27296,30,1134749,1,1,Active Shallow Crust,240.008,58.01751,0.0,12/20/1505 +-0.4936,43.53318,8820,2,12,10,48,57,3.75,27.5,fr,27297,176,1134755,1,1,Active Shallow Crust,128.8968,89.96738,0.0,02/12/8820 +-0.4936,43.53318,3732,12,30,15,31,17,3.85,5.0,fr,27298,74,1134756,1,1,Active Shallow Crust,0.0,89.98997,0.0,12/30/3732 +-0.4936,43.53318,8352,11,26,21,15,43,3.85,5.0,fr,27299,167,1134759,1,1,Active Shallow Crust,240.0105,57.99773,0.0,11/26/8352 +-0.4936,43.53318,6604,9,13,9,18,29,3.85,5.0,fr,27300,132,1134765,1,1,Active Shallow Crust,128.8961,89.99369,0.0,09/13/6604 +-0.4936,43.53318,4480,7,6,19,48,1,4.65,5.0,fr,27301,89,1134852,1,1,Active Shallow Crust,0.0,89.98995,0.0,07/06/4480 +-0.4936,43.53318,9077,6,3,14,25,21,5.05,5.0,fr,27302,181,1134909,1,1,Active Shallow Crust,128.8867,89.99049,0.0,06/03/9077 +-0.4936,43.53318,3823,2,11,4,0,7,5.65,5.0,fr,27303,76,1134972,1,1,Active Shallow Crust,360.0,89.99002,0.0,02/11/3823 +8.34361,45.81705,8922,1,11,13,42,53,3.55,5.0,fr,27304,178,1135200,1,1,Active Shallow Crust,0.0,89.98595,0.0,01/11/8922 +8.34361,45.81705,5835,2,28,1,29,57,3.65,5.0,fr,27305,116,1135212,1,1,Active Shallow Crust,0.0,89.98747,0.0,02/28/5835 +8.34361,45.81705,7105,7,28,22,42,21,3.65,15.0,fr,27306,142,1135222,1,1,Active Shallow Crust,128.901,89.96351,0.0,07/28/7105 +8.34361,45.81705,5108,2,21,8,14,36,3.85,5.0,fr,27307,102,1135245,1,1,Active Shallow Crust,128.8941,89.99503,0.0,02/21/5108 +8.34361,45.81705,1057,3,10,8,53,35,5.05,5.0,fr,27308,21,1135380,1,1,Active Shallow Crust,0.0,89.99,0.0,03/10/1057 +2.89719,47.30287,8744,8,11,22,2,26,3.55,5.0,fr,27309,174,1135680,1,1,Active Shallow Crust,0.0,89.98975,0.0,08/11/8744 +2.89719,47.30287,340,7,16,6,19,29,3.65,5.0,fr,27310,6,1135695,1,1,Active Shallow Crust,240.0005,58.01337,0.0,07/16/0340 +2.89719,47.30287,5849,12,20,7,18,55,3.75,5.0,fr,27311,116,1135704,1,1,Active Shallow Crust,0.0,89.98914,0.0,12/20/5849 +2.89719,47.30287,4502,11,10,4,26,21,4.45,5.0,fr,27312,90,1135788,1,1,Active Shallow Crust,0.0,89.9903,0.0,11/10/4502 +7.71854,50.3411,2760,11,12,0,0,30,3.55,5.0,fr,27313,55,1136160,1,1,Active Shallow Crust,0.0,89.98713,0.0,11/12/2760 +7.71854,50.3411,880,11,19,15,44,5,3.55,15.0,fr,27314,17,1136167,1,1,Active Shallow Crust,0.0,89.98698,-90.0,11/19/0880 +7.71854,50.3411,4980,9,9,11,51,51,3.55,5.0,fr,27315,99,1136169,1,1,Active Shallow Crust,128.8954,89.99357,0.0,09/09/4980 +7.71854,50.3411,2857,12,4,9,12,29,3.65,5.0,fr,27316,57,1136172,1,1,Active Shallow Crust,0.0,89.98853,0.0,12/04/2857 +7.71854,50.3411,56,4,26,9,32,9,3.65,15.0,fr,27317,1,1136173,1,2,Active Shallow Crust,0.0,89.98853,0.0,04/26/0056 +7.71854,50.3411,7177,7,15,10,42,5,3.65,15.0,fr,27318,143,1136173,1,2,Active Shallow Crust,0.0,89.98853,0.0,07/15/7177 +7.71854,50.3411,7932,1,23,18,23,44,3.65,15.0,fr,27319,158,1136182,1,1,Active Shallow Crust,128.8994,89.9636,0.0,01/23/7932 +7.71854,50.3411,2170,11,21,18,10,1,3.75,5.0,fr,27320,43,1136184,1,1,Active Shallow Crust,0.0,89.98978,0.0,11/21/2170 +7.71854,50.3411,5045,11,7,2,4,42,3.75,5.0,fr,27321,100,1136190,1,1,Active Shallow Crust,0.0,89.98965,-90.0,11/07/5045 +7.71854,50.3411,9526,2,5,14,42,29,3.85,15.0,fr,27322,190,1136197,1,1,Active Shallow Crust,0.0,89.99089,0.0,02/05/9526 +7.71854,50.3411,5223,7,19,4,47,21,3.85,27.5,fr,27323,104,1136204,1,1,Active Shallow Crust,0.0,89.99078,-90.0,07/19/5223 +7.71854,50.3411,3145,2,22,15,31,38,3.85,27.5,fr,27324,62,1136207,1,2,Active Shallow Crust,128.8961,89.99316,0.0,02/22/3145 +7.71854,50.3411,4804,6,25,12,34,48,3.85,27.5,fr,27325,96,1136207,1,2,Active Shallow Crust,128.8961,89.99316,0.0,06/25/4804 +7.71854,50.3411,8680,10,31,12,51,2,3.95,15.0,fr,27326,173,1136212,1,1,Active Shallow Crust,240.0207,58.00494,0.0,10/31/8680 +7.71854,50.3411,4921,12,15,12,50,41,3.95,5.0,fr,27327,98,1136214,1,1,Active Shallow Crust,0.0,89.99178,-90.0,12/15/4921 +7.71854,50.3411,1925,9,28,22,18,9,3.95,5.0,fr,27328,38,1136217,1,1,Active Shallow Crust,128.8999,89.99391,0.0,09/28/1925 +7.71854,50.3411,7483,11,6,15,0,26,4.05,15.0,fr,27329,149,1136221,1,1,Active Shallow Crust,0.0,89.98914,0.0,11/06/7483 +7.71854,50.3411,6176,5,20,3,14,3,4.15,5.0,fr,27330,123,1136232,1,1,Active Shallow Crust,0.0,89.99033,0.0,05/20/6176 +7.71854,50.3411,9098,10,15,23,18,50,4.15,27.5,fr,27331,181,1136237,1,1,Active Shallow Crust,240.0088,57.99781,0.0,10/15/9098 +7.71854,50.3411,4732,7,17,9,3,44,4.25,15.0,fr,27332,94,1136245,1,1,Active Shallow Crust,0.0,89.99138,0.0,07/17/4732 +7.71854,50.3411,1792,1,19,21,24,31,4.35,27.5,fr,27333,35,1136261,1,1,Active Shallow Crust,240.0089,57.99631,0.0,01/19/1792 +7.715371,50.3446,6830,8,3,12,45,35,6.25,5.719927,fr,27334,136,1136487,1,1,Active Shallow Crust,240.0823,58.00004,0.0,08/03/6830 +9.21005,48.86895,6858,9,18,2,35,31,3.55,5.0,fr,27335,137,1136640,1,2,Active Shallow Crust,0.0,89.98673,0.0,09/18/6858 +9.21005,48.86895,4335,5,10,9,7,47,3.55,5.0,fr,27336,86,1136640,1,2,Active Shallow Crust,0.0,89.98673,0.0,05/10/4335 +9.21005,48.86895,5909,6,15,4,44,59,3.55,15.0,fr,27337,118,1136650,1,1,Active Shallow Crust,128.895,89.99337,0.0,06/15/5909 +9.21005,48.86895,1566,11,18,7,48,31,3.65,5.0,fr,27338,31,1136655,1,1,Active Shallow Crust,240.0022,58.0128,0.0,11/18/1566 +9.21005,48.86895,3633,8,24,0,25,31,3.85,5.0,fr,27339,72,1136676,1,1,Active Shallow Crust,0.0,89.99061,0.0,08/24/3633 +9.21005,48.86895,5795,4,15,18,35,43,4.25,5.0,fr,27340,115,1136724,1,1,Active Shallow Crust,0.0,89.98814,0.0,04/15/5795 +9.21005,48.86895,3962,2,24,7,17,38,4.55,5.0,fr,27341,79,1136760,1,1,Active Shallow Crust,0.0,89.99161,0.0,02/24/3962 +9.21005,48.86895,3784,10,19,22,27,18,4.75,15.0,fr,27342,75,1136785,1,1,Active Shallow Crust,0.0,89.99,0.0,10/19/3784 +9.21005,48.86895,3635,8,20,0,32,47,4.85,5.0,fr,27343,72,1136802,1,1,Active Shallow Crust,0.0,89.99098,-90.0,08/20/3635 +8.07325,44.46942,5198,2,5,11,35,26,3.55,5.0,fr,27344,103,1137120,1,1,Active Shallow Crust,0.0,89.98561,0.0,02/05/5198 +8.07325,44.46942,2969,5,11,3,4,44,3.65,5.0,fr,27345,59,1137132,1,1,Active Shallow Crust,0.0,89.98717,0.0,05/11/2969 +8.07325,44.46942,768,6,9,20,53,5,3.85,15.0,fr,27346,15,1137157,1,1,Active Shallow Crust,0.0,89.98981,0.0,06/09/0768 +8.07325,44.46942,4458,5,5,20,35,26,4.05,15.0,fr,27347,89,1137181,1,1,Active Shallow Crust,0.0,89.99191,0.0,05/05/4458 +8.07325,44.46942,5861,6,11,4,50,1,4.15,15.0,fr,27348,117,1137193,1,1,Active Shallow Crust,0.0,89.99279,0.0,06/11/5861 +8.07325,44.46942,5327,6,22,19,27,14,4.25,15.0,fr,27349,106,1137205,1,1,Active Shallow Crust,0.0,89.98714,0.0,06/22/5327 +8.07325,44.46942,5609,3,7,0,16,11,4.55,15.0,fr,27350,112,1137247,1,1,Active Shallow Crust,0.0,89.99079,-90.0,03/07/5609 +8.07325,44.46942,3977,11,27,22,13,24,4.85,5.0,fr,27351,79,1137276,1,1,Active Shallow Crust,0.0,89.99033,0.0,11/27/3977 +8.07325,44.46942,3387,11,2,14,56,47,4.95,5.0,fr,27352,67,1137288,1,1,Active Shallow Crust,0.0,89.99139,0.0,11/02/3387 +7.77969,50.71877,6570,3,20,0,28,48,3.55,5.0,fr,27353,131,1138086,1,1,Active Shallow Crust,0.0,89.98708,-90.0,03/20/6570 +7.77969,50.71877,9546,9,22,2,52,27,3.65,5.0,fr,27354,190,1138095,1,2,Active Shallow Crust,240.0013,58.01283,0.0,09/22/9546 +7.77969,50.71877,3863,3,20,15,14,54,3.65,5.0,fr,27355,77,1138095,1,2,Active Shallow Crust,240.0013,58.01283,0.0,03/20/3863 +7.77969,50.71877,3770,3,21,10,2,43,3.85,5.0,fr,27356,75,1138116,1,1,Active Shallow Crust,0.0,89.99096,0.0,03/21/3770 +7.77969,50.71877,3352,11,19,14,2,58,4.05,5.0,fr,27357,67,1138140,1,1,Active Shallow Crust,0.0,89.98923,0.0,11/19/3352 +7.77969,50.71877,8375,2,18,20,18,15,4.05,5.0,fr,27358,167,1138146,1,1,Active Shallow Crust,0.0,89.98911,-90.0,02/18/8375 +7.779671,50.71877,3250,7,30,7,54,15,6.95,19.90024,fr,27359,64,1138490,1,1,Active Shallow Crust,0.0,89.98997,0.0,07/30/3250 +2.6762,49.61683,7092,10,16,10,32,25,3.55,5.0,fr,27360,141,1138560,1,1,Active Shallow Crust,0.0,89.9902,0.0,10/16/7092 +2.6762,49.61683,5556,10,1,6,35,36,3.65,5.0,fr,27361,111,1138572,1,1,Active Shallow Crust,0.0,89.99126,0.0,10/01/5556 +2.6762,49.61683,2031,4,3,6,47,31,3.95,27.5,fr,27362,40,1138613,1,1,Active Shallow Crust,240.0202,58.00518,0.0,04/03/2031 +2.6762,49.61683,5362,1,26,20,25,44,4.05,15.0,fr,27363,107,1138621,1,1,Active Shallow Crust,0.0,89.99081,0.0,01/26/5362 +2.6762,49.61683,6097,6,9,22,38,53,4.15,5.0,fr,27364,121,1138632,1,1,Active Shallow Crust,0.0,89.99017,0.0,06/09/6097 +2.6762,49.61683,3107,5,17,9,15,39,4.35,15.0,fr,27365,62,1138657,1,1,Active Shallow Crust,0.0,89.98959,0.0,05/17/3107 +5.7414,45.51204,5498,11,8,18,50,25,3.55,5.0,fr,27366,109,1139040,1,4,Active Shallow Crust,0.0,89.99294,0.0,11/08/5498 +5.7414,45.51204,6282,2,21,19,23,54,3.55,5.0,fr,27367,125,1139040,1,4,Active Shallow Crust,0.0,89.99294,0.0,02/21/6282 +5.7414,45.51204,2621,6,16,3,28,37,3.55,5.0,fr,27368,52,1139040,1,4,Active Shallow Crust,0.0,89.99294,0.0,06/16/2621 +5.7414,45.51204,5012,1,12,13,39,42,3.55,5.0,fr,27369,100,1139040,1,4,Active Shallow Crust,0.0,89.99294,0.0,01/12/5012 +5.7414,45.51204,7748,3,4,1,44,7,3.55,15.0,fr,27370,154,1139041,1,2,Active Shallow Crust,0.0,89.99294,0.0,03/04/7748 +5.7414,45.51204,1184,4,5,20,26,32,3.55,15.0,fr,27371,23,1139041,1,2,Active Shallow Crust,0.0,89.99294,0.0,04/05/1184 +5.7414,45.51204,1436,3,27,8,6,11,3.55,5.0,fr,27372,28,1139043,1,1,Active Shallow Crust,240.0133,57.9977,0.0,03/27/1436 +5.7414,45.51204,1428,6,7,1,8,37,3.55,5.0,fr,27373,28,1139046,1,1,Active Shallow Crust,0.0,89.99285,-90.0,06/07/1428 +5.7414,45.51204,1505,11,30,16,38,34,3.55,15.0,fr,27374,30,1139050,1,1,Active Shallow Crust,128.8961,89.99294,0.0,11/30/1505 +5.7414,45.51204,4287,4,24,9,44,22,3.65,5.0,fr,27375,85,1139052,1,4,Active Shallow Crust,0.0,89.9874,0.0,04/24/4287 +5.7414,45.51204,8151,1,18,23,54,0,3.65,5.0,fr,27376,163,1139052,1,4,Active Shallow Crust,0.0,89.9874,0.0,01/18/8151 +5.7414,45.51204,7585,5,22,4,57,42,3.65,5.0,fr,27377,151,1139052,1,4,Active Shallow Crust,0.0,89.9874,0.0,05/22/7585 +5.7414,45.51204,6098,5,30,3,3,10,3.65,5.0,fr,27378,121,1139052,1,4,Active Shallow Crust,0.0,89.9874,0.0,05/30/6098 +5.7414,45.51204,5820,9,20,18,36,35,3.65,15.0,fr,27379,116,1139062,1,1,Active Shallow Crust,128.9003,89.96351,0.0,09/20/5820 +5.7414,45.51204,3988,8,14,22,33,54,3.75,5.0,fr,27380,79,1139064,1,1,Active Shallow Crust,0.0,89.98878,0.0,08/14/3988 +5.7414,45.51204,4277,8,8,6,6,2,3.85,15.0,fr,27381,85,1139077,1,1,Active Shallow Crust,0.0,89.99,0.0,08/08/4277 +5.7414,45.51204,5614,5,13,8,3,25,3.95,5.0,fr,27382,112,1139091,1,1,Active Shallow Crust,240.0202,58.00459,0.0,05/13/5614 +5.7414,45.51204,720,8,28,19,8,58,3.95,15.0,fr,27383,14,1139092,1,1,Active Shallow Crust,240.0202,58.00459,0.0,08/28/0720 +5.7414,45.51204,4961,10,4,2,1,44,3.95,5.0,fr,27384,99,1139097,1,1,Active Shallow Crust,128.9016,89.99331,0.0,10/04/4961 +5.7414,45.51204,5357,7,12,5,55,7,4.05,5.0,fr,27385,107,1139100,1,1,Active Shallow Crust,0.0,89.98808,0.0,07/12/5357 +5.7414,45.51204,8568,1,3,21,54,3,4.15,15.0,fr,27386,171,1139113,1,1,Active Shallow Crust,0.0,89.98937,0.0,01/03/8568 +5.7414,45.51204,1716,12,5,4,26,25,4.35,5.0,fr,27387,34,1139139,1,1,Active Shallow Crust,240.0082,57.99592,0.0,12/05/1716 +5.7414,45.51204,5899,7,4,12,31,41,4.45,5.0,fr,27388,117,1139148,1,1,Active Shallow Crust,0.0,89.98997,0.0,07/04/5899 +5.7414,45.51204,2349,11,15,12,19,44,4.65,15.0,fr,27389,46,1139176,1,1,Active Shallow Crust,240.0104,57.99434,0.0,11/15/2349 +5.7414,45.51204,9042,8,28,1,56,36,4.75,5.0,fr,27390,180,1139184,1,1,Active Shallow Crust,0.0,89.98935,0.0,08/28/9042 +5.7414,45.51204,6721,3,5,17,54,25,4.85,5.0,fr,27391,134,1139199,1,1,Active Shallow Crust,240.0166,58.0024,0.0,03/05/6721 +5.7414,45.51204,8052,9,9,4,20,46,5.05,5.0,fr,27392,161,1139220,1,1,Active Shallow Crust,0.0,89.98994,0.0,09/09/8052 +5.7414,45.51204,2112,8,14,13,16,16,5.45,5.0,fr,27393,42,1139268,1,1,Active Shallow Crust,0.0,89.98969,0.0,08/14/2112 +5.7414,45.51204,3576,2,27,18,41,44,5.85,5.0,fr,27394,71,1139319,1,1,Active Shallow Crust,240.0433,57.99952,0.0,02/27/3576 +5.741007,45.51252,5722,6,16,18,42,47,6.15,5.09789,fr,27395,114,1139355,1,1,Active Shallow Crust,240.0632,57.99974,0.0,06/16/5722 +3.58811,47.15316,9951,4,3,12,50,49,3.55,15.0,fr,27396,199,1139521,1,1,Active Shallow Crust,0.0,89.98972,0.0,04/03/9951 +3.58811,47.15316,12,3,15,9,12,58,4.35,5.0,fr,27397,0,1139619,1,1,Active Shallow Crust,240.0085,57.99611,0.0,03/15/0012 +6.60446,49.96284,4652,11,30,23,23,24,3.55,5.0,fr,27398,93,1140006,1,1,Active Shallow Crust,0.0,89.98688,-90.0,11/30/4652 +6.60446,49.96284,2341,6,18,16,5,30,3.75,5.0,fr,27399,46,1140024,1,1,Active Shallow Crust,0.0,89.98969,0.0,06/18/2341 +6.60446,49.96284,2281,10,18,20,25,45,3.85,15.0,fr,27400,45,1140037,1,1,Active Shallow Crust,0.0,89.99081,0.0,10/18/2281 +6.60446,49.96284,5234,9,14,20,59,12,4.05,15.0,fr,27401,104,1140064,1,1,Active Shallow Crust,240.006,58.00589,0.0,09/14/5234 +7.38195,47.14107,9334,2,25,13,31,34,3.55,5.0,fr,27402,186,1140480,1,4,Active Shallow Crust,0.0,89.99314,0.0,02/25/9334 +7.38195,47.14107,799,10,7,0,54,9,3.55,5.0,fr,27403,15,1140480,1,4,Active Shallow Crust,0.0,89.99314,0.0,10/07/0799 +7.38195,47.14107,8381,10,26,0,1,12,3.55,5.0,fr,27404,167,1140480,1,4,Active Shallow Crust,0.0,89.99314,0.0,10/26/8381 +7.38195,47.14107,5648,10,28,2,4,0,3.55,5.0,fr,27405,112,1140480,1,4,Active Shallow Crust,0.0,89.99314,0.0,10/28/5648 +7.38195,47.14107,7624,5,20,21,4,27,3.55,15.0,fr,27406,152,1140481,1,3,Active Shallow Crust,0.0,89.99314,0.0,05/20/7624 +7.38195,47.14107,8493,6,6,6,13,13,3.55,15.0,fr,27407,169,1140481,1,3,Active Shallow Crust,0.0,89.99314,0.0,06/06/8493 +7.38195,47.14107,50,4,26,9,50,43,3.55,15.0,fr,27408,0,1140481,1,3,Active Shallow Crust,0.0,89.99314,0.0,04/26/0050 +7.38195,47.14107,2163,7,16,1,5,50,3.55,27.5,fr,27409,43,1140482,1,1,Active Shallow Crust,0.0,89.99314,0.0,07/16/2163 +7.38195,47.14107,4983,2,22,4,19,19,3.55,27.5,fr,27410,99,1140485,1,1,Active Shallow Crust,240.0124,57.99747,0.0,02/22/4983 +7.38195,47.14107,858,7,19,14,33,4,3.55,5.0,fr,27411,17,1140486,1,1,Active Shallow Crust,0.0,89.99306,-90.0,07/19/0858 +7.38195,47.14107,6288,2,9,0,16,6,3.55,15.0,fr,27412,125,1140487,1,1,Active Shallow Crust,0.0,89.99306,-90.0,02/09/6288 +7.38195,47.14107,8078,1,20,23,2,3,3.65,5.0,fr,27413,161,1140492,1,3,Active Shallow Crust,0.0,89.98777,0.0,01/20/8078 +7.38195,47.14107,2529,11,1,18,54,24,3.65,5.0,fr,27414,50,1140492,1,3,Active Shallow Crust,0.0,89.98777,0.0,11/01/2529 +7.38195,47.14107,7669,5,18,22,32,11,3.65,5.0,fr,27415,153,1140492,1,3,Active Shallow Crust,0.0,89.98777,0.0,05/18/7669 +7.38195,47.14107,7886,2,21,0,8,57,3.65,15.0,fr,27416,157,1140493,1,3,Active Shallow Crust,0.0,89.98777,0.0,02/21/7886 +7.38195,47.14107,8000,8,14,13,5,43,3.65,15.0,fr,27417,159,1140493,1,3,Active Shallow Crust,0.0,89.98777,0.0,08/14/8000 +7.38195,47.14107,1611,12,14,5,8,49,3.65,15.0,fr,27418,32,1140493,1,3,Active Shallow Crust,0.0,89.98777,0.0,12/14/1611 +7.38195,47.14107,6935,12,8,12,17,44,3.65,5.0,fr,27419,138,1140495,1,5,Active Shallow Crust,240.0022,58.01249,0.0,12/08/6935 +7.38195,47.14107,3069,12,23,10,39,26,3.65,5.0,fr,27420,61,1140495,1,5,Active Shallow Crust,240.0022,58.01249,0.0,12/23/3069 +7.38195,47.14107,3453,8,25,8,7,23,3.65,5.0,fr,27421,69,1140495,1,5,Active Shallow Crust,240.0022,58.01249,0.0,08/25/3453 +7.38195,47.14107,4257,1,17,20,16,24,3.65,5.0,fr,27422,85,1140495,1,5,Active Shallow Crust,240.0022,58.01249,0.0,01/17/4257 +7.38195,47.14107,6576,4,18,6,54,15,3.65,5.0,fr,27423,131,1140495,1,5,Active Shallow Crust,240.0022,58.01249,0.0,04/18/6576 +7.38195,47.14107,208,9,15,6,24,26,3.65,27.5,fr,27424,4,1140497,1,1,Active Shallow Crust,240.0022,58.01241,0.0,09/15/0208 +7.38195,47.14107,8198,5,10,23,24,27,3.65,27.5,fr,27425,163,1140500,1,1,Active Shallow Crust,0.0,89.98763,-90.0,05/10/8198 +7.38195,47.14107,596,12,20,10,52,35,3.75,5.0,fr,27426,11,1140504,1,1,Active Shallow Crust,0.0,89.98911,0.0,12/20/0596 +7.38195,47.14107,7228,11,16,4,8,0,3.75,15.0,fr,27427,144,1140505,1,2,Active Shallow Crust,0.0,89.98911,0.0,11/16/7228 +7.38195,47.14107,4938,10,7,10,58,45,3.75,15.0,fr,27428,98,1140505,1,2,Active Shallow Crust,0.0,89.98911,0.0,10/07/4938 +7.38195,47.14107,8544,6,29,11,8,27,3.75,27.5,fr,27429,170,1140506,1,1,Active Shallow Crust,0.0,89.98911,0.0,06/29/8544 +7.38195,47.14107,35,3,31,19,3,14,3.75,5.0,fr,27430,0,1140507,1,1,Active Shallow Crust,240.0082,58.01836,0.0,03/31/0035 +7.38195,47.14107,5119,5,29,0,14,30,3.75,15.0,fr,27431,102,1140511,1,1,Active Shallow Crust,0.0,89.98898,-90.0,05/29/5119 +7.38195,47.14107,7327,12,17,7,9,17,3.85,5.0,fr,27432,146,1140516,1,1,Active Shallow Crust,0.0,89.99029,0.0,12/17/7327 +7.38195,47.14107,5501,1,5,21,14,13,3.85,15.0,fr,27433,110,1140517,1,1,Active Shallow Crust,0.0,89.99029,0.0,01/05/5501 +7.38195,47.14107,3327,8,18,0,16,34,3.85,15.0,fr,27434,66,1140520,1,1,Active Shallow Crust,240.0113,57.99739,0.0,08/18/3327 +7.38195,47.14107,2790,11,14,4,37,51,3.85,5.0,fr,27435,55,1140522,1,1,Active Shallow Crust,0.0,89.99017,-90.0,11/14/2790 +7.38195,47.14107,5162,6,18,9,36,20,3.95,5.0,fr,27436,103,1140528,1,3,Active Shallow Crust,0.0,89.99134,0.0,06/18/5162 +7.38195,47.14107,4201,12,18,1,2,37,3.95,5.0,fr,27437,84,1140528,1,3,Active Shallow Crust,0.0,89.99134,0.0,12/18/4201 +7.38195,47.14107,7541,2,15,21,18,54,3.95,5.0,fr,27438,150,1140528,1,3,Active Shallow Crust,0.0,89.99134,0.0,02/15/7541 +7.38195,47.14107,2346,4,25,0,20,46,3.95,5.0,fr,27439,46,1140534,1,2,Active Shallow Crust,0.0,89.99124,-90.0,04/25/2346 +7.38195,47.14107,7879,4,11,3,53,57,3.95,5.0,fr,27440,157,1140534,1,2,Active Shallow Crust,0.0,89.99124,-90.0,04/11/7879 +7.38195,47.14107,8280,9,26,2,53,12,3.95,5.0,fr,27441,165,1140537,1,1,Active Shallow Crust,128.8997,89.99351,0.0,09/26/8280 +7.38195,47.14107,8562,9,5,21,38,8,4.05,5.0,fr,27442,171,1140540,1,2,Active Shallow Crust,0.0,89.98843,0.0,09/05/8562 +7.38195,47.14107,6103,5,16,6,0,36,4.05,5.0,fr,27443,122,1140540,1,2,Active Shallow Crust,0.0,89.98843,0.0,05/16/6103 +7.38195,47.14107,2145,12,31,4,23,9,4.05,15.0,fr,27444,42,1140541,1,2,Active Shallow Crust,0.0,89.98843,0.0,12/31/2145 +7.38195,47.14107,2580,3,8,7,17,27,4.05,15.0,fr,27445,51,1140541,1,2,Active Shallow Crust,0.0,89.98843,0.0,03/08/2580 +7.38195,47.14107,586,1,13,2,16,28,4.05,27.5,fr,27446,11,1140542,1,1,Active Shallow Crust,0.0,89.98843,0.0,01/13/0586 +7.38195,47.14107,8364,6,26,18,31,32,4.15,5.0,fr,27447,167,1140552,1,2,Active Shallow Crust,0.0,89.98969,0.0,06/26/8364 +7.38195,47.14107,5724,8,22,1,28,43,4.15,5.0,fr,27448,114,1140552,1,2,Active Shallow Crust,0.0,89.98969,0.0,08/22/5724 +7.38195,47.14107,3400,1,27,8,47,28,4.15,5.0,fr,27449,67,1140558,1,1,Active Shallow Crust,0.0,89.98957,-90.0,01/27/3400 +7.38195,47.14107,5792,11,17,19,1,38,4.25,5.0,fr,27450,115,1140570,1,1,Active Shallow Crust,0.0,89.9907,-90.0,11/17/5792 +7.38195,47.14107,2291,1,26,17,40,1,4.25,5.0,fr,27451,45,1140573,1,1,Active Shallow Crust,128.8951,89.98042,0.0,01/26/2291 +7.38195,47.14107,9725,11,9,6,2,1,4.35,5.0,fr,27452,194,1140576,1,2,Active Shallow Crust,0.0,89.98907,0.0,11/09/9725 +7.38195,47.14107,7919,7,15,23,59,10,4.35,5.0,fr,27453,158,1140576,1,2,Active Shallow Crust,0.0,89.98907,0.0,07/15/7919 +7.38195,47.14107,6870,7,7,18,6,44,4.35,15.0,fr,27454,137,1140577,1,1,Active Shallow Crust,0.0,89.98907,0.0,07/07/6870 +7.38195,47.14107,6506,2,27,8,21,43,4.35,5.0,fr,27455,130,1140579,1,1,Active Shallow Crust,240.0083,57.9961,0.0,02/27/6506 +7.38195,47.14107,967,3,18,19,37,19,4.35,15.0,fr,27456,19,1140586,1,1,Active Shallow Crust,128.8984,89.98255,0.0,03/18/0967 +7.38195,47.14107,5402,2,14,6,7,53,4.45,5.0,fr,27457,108,1140588,1,1,Active Shallow Crust,0.0,89.99026,0.0,02/14/5402 +7.38195,47.14107,2909,6,8,15,34,17,4.45,5.0,fr,27458,58,1140591,1,1,Active Shallow Crust,240.0056,57.99453,0.0,06/08/2909 +7.38195,47.14107,9910,8,2,13,3,22,4.45,5.0,fr,27459,198,1140597,1,1,Active Shallow Crust,128.8921,89.99392,0.0,08/02/9910 +7.38195,47.14107,2946,8,18,8,42,47,4.55,15.0,fr,27460,58,1140601,1,1,Active Shallow Crust,0.0,89.98915,0.0,08/18/2946 +7.38195,47.14107,9213,1,4,6,42,23,4.65,5.0,fr,27461,184,1140612,1,2,Active Shallow Crust,0.0,89.99033,0.0,01/04/9213 +7.38195,47.14107,175,11,24,20,20,2,4.65,5.0,fr,27462,3,1140612,1,2,Active Shallow Crust,0.0,89.99033,0.0,11/24/0175 +7.38195,47.14107,3338,9,23,12,36,9,4.65,5.0,fr,27463,66,1140618,1,1,Active Shallow Crust,0.0,89.99022,-90.0,09/23/3338 +7.38195,47.14107,8786,11,2,13,53,50,4.65,15.0,fr,27464,175,1140622,1,1,Active Shallow Crust,128.8907,89.98724,0.0,11/02/8786 +7.38195,47.14107,5194,8,10,0,14,31,4.75,5.0,fr,27465,103,1140624,1,1,Active Shallow Crust,0.0,89.98966,0.0,08/10/5194 +7.38195,47.14107,8294,9,6,12,44,33,4.75,5.0,fr,27466,165,1140627,1,1,Active Shallow Crust,240.0077,58.00449,0.0,09/06/8294 +7.38195,47.14107,4624,9,11,1,27,25,4.85,15.0,fr,27467,92,1140640,1,1,Active Shallow Crust,240.0175,58.00248,0.0,09/11/4624 +7.38195,47.14107,2095,11,27,6,57,35,5.15,5.0,fr,27468,41,1140681,1,1,Active Shallow Crust,128.8831,89.99125,0.0,11/27/2095 +7.38195,47.14107,1641,12,20,12,41,57,5.45,5.0,fr,27469,32,1140708,1,1,Active Shallow Crust,0.0,89.98999,0.0,12/20/1641 +7.38195,47.14107,4543,6,10,20,46,47,5.55,15.0,fr,27470,90,1140721,1,1,Active Shallow Crust,0.0,89.98971,0.0,06/10/4543 +-0.23488,45.19322,2387,3,29,14,4,15,3.55,5.0,fr,27471,47,1140960,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/29/2387 +-0.23488,45.19322,3393,1,17,12,32,12,3.65,5.0,fr,27472,67,1140972,1,1,Active Shallow Crust,0.0,89.98991,0.0,01/17/3393 +-0.23488,45.19322,3536,11,24,18,59,52,3.75,5.0,fr,27473,70,1140984,1,1,Active Shallow Crust,0.0,89.98994,0.0,11/24/3536 +-0.23488,45.19322,6133,8,8,8,3,41,3.85,15.0,fr,27474,122,1140997,1,1,Active Shallow Crust,0.0,89.98994,0.0,08/08/6133 +-0.23488,45.19322,5377,10,6,9,4,53,4.05,27.5,fr,27475,107,1141028,1,1,Active Shallow Crust,0.0,89.99002,-90.0,10/06/5377 +-0.23488,45.19322,148,3,16,21,44,16,4.15,5.0,fr,27476,2,1141032,1,1,Active Shallow Crust,0.0,89.98998,0.0,03/16/0148 +-0.23488,45.19322,9690,7,10,13,52,31,4.75,5.0,fr,27477,193,1141107,1,1,Active Shallow Crust,240.007,58.0044,0.0,07/10/9690 +1.03143,46.09994,3077,10,30,9,2,30,3.55,15.0,fr,27478,61,1141441,1,1,Active Shallow Crust,0.0,89.98951,0.0,10/30/3077 +1.03143,46.09994,7791,6,23,2,59,10,3.55,15.0,fr,27479,155,1141444,1,1,Active Shallow Crust,240.012,57.9982,0.0,06/23/7791 +1.03143,46.09994,7370,3,28,16,54,50,3.55,15.0,fr,27480,147,1141450,1,1,Active Shallow Crust,128.8964,89.99388,0.0,03/28/7370 +1.03143,46.09994,416,6,29,9,20,37,3.65,5.0,fr,27481,8,1141458,1,1,Active Shallow Crust,0.0,89.99055,-90.0,06/29/0416 +1.03143,46.09994,8389,12,19,10,5,46,3.85,5.0,fr,27482,167,1141476,1,1,Active Shallow Crust,0.0,89.9901,0.0,12/19/8389 +1.03143,46.09994,5133,3,25,18,10,40,3.95,5.0,fr,27483,102,1141488,1,1,Active Shallow Crust,0.0,89.99007,0.0,03/25/5133 +1.03143,46.09994,8145,9,4,17,24,18,4.05,5.0,fr,27484,162,1141500,1,1,Active Shallow Crust,0.0,89.99017,0.0,09/04/8145 +1.03143,46.09994,9613,1,27,0,7,2,4.05,5.0,fr,27485,192,1141503,1,1,Active Shallow Crust,240.006,58.00581,0.0,01/27/9613 +1.03143,46.09994,7805,8,31,19,52,24,4.25,15.0,fr,27486,156,1141525,1,1,Active Shallow Crust,0.0,89.98985,0.0,08/31/7805 +1.03143,46.09994,695,5,2,22,27,55,4.45,15.0,fr,27487,13,1141549,1,1,Active Shallow Crust,0.0,89.99007,0.0,05/02/0695 +1.03143,46.09994,4525,4,20,18,51,37,4.45,5.0,fr,27488,90,1141554,1,1,Active Shallow Crust,0.0,89.98996,-90.0,04/20/4525 +-1.57456,50.72146,7278,1,2,15,0,40,4.35,15.0,fr,27489,145,1142497,1,1,Active Shallow Crust,0.0,89.98983,0.0,01/02/7278 +-1.57456,50.72146,3707,9,12,9,52,34,4.55,5.0,fr,27490,74,1142520,1,1,Active Shallow Crust,0.0,89.98991,0.0,09/12/3707 +-1.574543,50.72146,8779,9,4,21,51,44,6.75,11.99416,fr,27491,175,1142784,1,1,Active Shallow Crust,360.0,89.99001,0.0,09/04/8779 +-2.13774,46.92879,9461,5,16,2,25,37,3.55,5.0,fr,27492,189,1142880,1,3,Active Shallow Crust,0.0,89.98967,0.0,05/16/9461 +-2.13774,46.92879,2505,11,2,13,31,16,3.55,5.0,fr,27493,50,1142880,1,3,Active Shallow Crust,0.0,89.98967,0.0,11/02/2505 +-2.13774,46.92879,1477,9,16,13,3,10,3.55,5.0,fr,27494,29,1142880,1,3,Active Shallow Crust,0.0,89.98967,0.0,09/16/1477 +-2.13774,46.92879,2550,10,28,11,46,35,3.55,15.0,fr,27495,50,1142881,1,3,Active Shallow Crust,0.0,89.98967,0.0,10/28/2550 +-2.13774,46.92879,3402,9,15,22,23,15,3.55,15.0,fr,27496,68,1142881,1,3,Active Shallow Crust,0.0,89.98967,0.0,09/15/3402 +-2.13774,46.92879,2296,7,14,21,42,41,3.55,15.0,fr,27497,45,1142881,1,3,Active Shallow Crust,0.0,89.98967,0.0,07/14/2296 +-2.13774,46.92879,7005,8,11,3,33,41,3.55,5.0,fr,27498,140,1142883,1,2,Active Shallow Crust,240.0123,57.99819,0.0,08/11/7005 +-2.13774,46.92879,1059,1,15,3,46,21,3.55,5.0,fr,27499,21,1142883,1,2,Active Shallow Crust,240.0123,57.99819,0.0,01/15/1059 +-2.13774,46.92879,9250,4,24,3,23,34,3.65,5.0,fr,27500,184,1142892,1,2,Active Shallow Crust,0.0,89.99079,0.0,04/24/9250 +-2.13774,46.92879,7054,10,6,20,46,21,3.65,5.0,fr,27501,141,1142892,1,2,Active Shallow Crust,0.0,89.99079,0.0,10/06/7054 +-2.13774,46.92879,1474,10,30,0,30,49,3.65,15.0,fr,27502,29,1142893,1,1,Active Shallow Crust,0.0,89.99079,0.0,10/30/1474 +-2.13774,46.92879,3067,4,24,22,57,15,3.65,5.0,fr,27503,61,1142895,1,1,Active Shallow Crust,240.0005,58.0135,0.0,04/24/3067 +-2.13774,46.92879,1141,12,27,15,8,35,3.65,5.0,fr,27504,22,1142898,1,1,Active Shallow Crust,0.0,89.99068,-90.0,12/27/1141 +-2.13774,46.92879,9320,9,16,13,48,7,3.75,15.0,fr,27505,186,1142905,1,1,Active Shallow Crust,0.0,89.98906,0.0,09/16/9320 +-2.13774,46.92879,4721,3,1,8,57,32,3.75,15.0,fr,27506,94,1142908,1,1,Active Shallow Crust,240.0086,58.01763,0.0,03/01/4721 +-2.13774,46.92879,2266,12,25,21,50,53,3.95,15.0,fr,27507,45,1142938,1,1,Active Shallow Crust,128.9,89.99348,0.0,12/25/2266 +-2.13774,46.92879,9446,10,28,12,14,27,4.05,5.0,fr,27508,188,1142940,1,1,Active Shallow Crust,0.0,89.99032,0.0,10/28/9446 +-2.13774,46.92879,1469,10,11,1,28,20,4.05,15.0,fr,27509,29,1142944,1,1,Active Shallow Crust,240.0063,58.00594,0.0,10/11/1469 +-2.13774,46.92879,5865,1,14,12,9,0,4.15,15.0,fr,27510,117,1142962,1,1,Active Shallow Crust,128.8979,89.9931,0.0,01/14/5865 +-2.13774,46.92879,691,11,2,6,48,48,4.25,5.0,fr,27511,13,1142967,1,1,Active Shallow Crust,240.0076,57.99405,0.0,11/02/0691 +-2.13774,46.92879,744,5,24,13,12,4,4.25,27.5,fr,27512,14,1142975,1,1,Active Shallow Crust,128.8946,89.9807,0.0,05/24/0744 +-2.13774,46.92879,1132,7,16,18,1,6,4.35,5.0,fr,27513,22,1142976,1,1,Active Shallow Crust,0.0,89.9904,0.0,07/16/1132 +-2.13774,46.92879,3473,12,4,5,13,22,4.35,15.0,fr,27514,69,1142986,1,1,Active Shallow Crust,128.8978,89.9828,0.0,12/04/3473 +-2.13774,46.92879,1626,4,14,13,52,13,4.55,5.0,fr,27515,32,1143000,1,1,Active Shallow Crust,0.0,89.9902,0.0,04/14/1626 +-2.13774,46.92879,8497,9,16,11,43,32,5.15,5.0,fr,27516,169,1143078,1,1,Active Shallow Crust,0.0,89.99006,-90.0,09/16/8497 +4.532,48.05602,3832,6,15,23,40,25,3.55,5.0,fr,27517,76,1143366,1,1,Active Shallow Crust,0.0,89.99318,-90.0,06/15/3832 +4.532,48.05602,9894,6,2,21,15,13,3.65,15.0,fr,27518,197,1143382,1,1,Active Shallow Crust,128.901,89.96294,0.0,06/02/9894 +4.532,48.05602,2076,3,13,13,58,29,3.75,15.0,fr,27519,41,1143385,1,1,Active Shallow Crust,0.0,89.98929,0.0,03/13/2076 +4.532,48.05602,9562,10,17,9,3,9,3.95,5.0,fr,27520,191,1143408,1,1,Active Shallow Crust,0.0,89.99149,0.0,10/17/9562 +4.532,48.05602,6816,10,28,20,21,15,4.25,5.0,fr,27521,136,1143450,1,1,Active Shallow Crust,0.0,89.99086,-90.0,10/28/6816 +4.532,48.05602,8047,5,20,15,29,47,4.35,5.0,fr,27522,160,1143456,1,1,Active Shallow Crust,0.0,89.98927,0.0,05/20/8047 +4.532,48.05602,9274,10,10,14,20,25,4.65,5.0,fr,27523,185,1143501,1,1,Active Shallow Crust,128.8904,89.98728,0.0,10/10/9274 +1.6837,49.71012,677,6,15,3,54,17,3.55,5.0,fr,27524,13,1143840,1,1,Active Shallow Crust,0.0,89.99022,0.0,06/15/0677 +1.6837,49.71012,5278,4,17,7,39,49,3.55,5.0,fr,27525,105,1143843,1,1,Active Shallow Crust,240.0124,57.99809,0.0,04/17/5278 +1.6837,49.71012,4126,3,8,5,7,57,3.75,15.0,fr,27526,82,1143865,1,2,Active Shallow Crust,0.0,89.98964,0.0,03/08/4126 +1.6837,49.71012,2669,5,2,10,35,40,3.75,15.0,fr,27527,53,1143865,1,2,Active Shallow Crust,0.0,89.98964,0.0,05/02/2669 +1.6837,49.71012,4578,7,24,7,14,18,3.85,15.0,fr,27528,91,1143880,1,1,Active Shallow Crust,240.011,57.99798,0.0,07/24/4578 +1.6837,49.71012,1842,11,26,11,9,44,4.05,5.0,fr,27529,36,1143900,1,1,Active Shallow Crust,0.0,89.98991,0.0,11/26/1842 +1.6837,49.71012,1329,6,1,15,49,24,4.15,5.0,fr,27530,26,1143912,1,1,Active Shallow Crust,0.0,89.9902,0.0,06/01/1329 +1.6837,49.71012,1556,2,23,3,49,12,4.15,5.0,fr,27531,31,1143918,1,1,Active Shallow Crust,0.0,89.99008,-90.0,02/23/1556 +1.6837,49.71012,3200,1,23,9,31,57,4.15,15.0,fr,27532,63,1143922,1,1,Active Shallow Crust,128.897,89.99387,0.0,01/23/3200 +1.6837,49.71012,9689,5,5,1,15,41,5.25,5.0,fr,27533,193,1144044,1,1,Active Shallow Crust,0.0,89.9901,0.0,05/05/9689 +-0.85746,49.70984,3618,5,3,22,46,43,3.55,5.0,fr,27534,72,1144323,1,1,Active Shallow Crust,240.0125,57.99823,0.0,05/03/3618 +-0.85746,49.70984,732,12,22,15,14,40,3.75,5.0,fr,27535,14,1144344,1,1,Active Shallow Crust,0.0,89.99029,0.0,12/22/0732 +-0.85746,49.70984,4898,12,11,23,38,21,4.05,5.0,fr,27536,97,1144380,1,1,Active Shallow Crust,0.0,89.98991,0.0,12/11/4898 +-0.85746,49.70984,5320,6,16,3,38,8,4.15,5.0,fr,27537,106,1144398,1,1,Active Shallow Crust,0.0,89.99008,-90.0,06/16/5320 +-0.85746,49.70984,489,3,21,17,43,19,4.55,27.5,fr,27538,9,1144442,1,1,Active Shallow Crust,0.0,89.98994,0.0,03/21/0489 +-0.85746,49.70984,9770,1,9,12,0,29,5.65,15.0,fr,27539,195,1144573,1,1,Active Shallow Crust,0.0,89.98997,0.0,01/09/9770 +-4.87228,47.20047,3914,4,4,18,2,9,3.85,15.0,fr,27540,78,1144843,1,1,Active Shallow Crust,0.0,89.99019,-90.0,04/04/3914 +7.42905,44.3986,5768,4,9,12,52,17,3.55,5.0,fr,27541,115,1145280,1,3,Active Shallow Crust,0.0,89.9928,0.0,04/09/5768 +7.42905,44.3986,2690,10,14,18,16,41,3.55,5.0,fr,27542,53,1145280,1,3,Active Shallow Crust,0.0,89.9928,0.0,10/14/2690 +7.42905,44.3986,9620,2,10,8,54,38,3.55,5.0,fr,27543,192,1145280,1,3,Active Shallow Crust,0.0,89.9928,0.0,02/10/9620 +7.42905,44.3986,1568,8,22,23,11,3,3.55,15.0,fr,27544,31,1145281,1,3,Active Shallow Crust,0.0,89.9928,0.0,08/22/1568 +7.42905,44.3986,8138,6,16,3,48,4,3.55,15.0,fr,27545,162,1145281,1,3,Active Shallow Crust,0.0,89.9928,0.0,06/16/8138 +7.42905,44.3986,5916,12,9,3,34,41,3.55,15.0,fr,27546,118,1145281,1,3,Active Shallow Crust,0.0,89.9928,0.0,12/09/5916 +7.42905,44.3986,9995,3,3,0,54,49,3.55,5.0,fr,27547,199,1145283,1,3,Active Shallow Crust,240.0112,57.99834,0.0,03/03/9995 +7.42905,44.3986,3930,1,28,0,1,47,3.55,5.0,fr,27548,78,1145283,1,3,Active Shallow Crust,240.0112,57.99834,0.0,01/28/3930 +7.42905,44.3986,4826,12,30,14,34,19,3.55,5.0,fr,27549,96,1145283,1,3,Active Shallow Crust,240.0112,57.99834,0.0,12/30/4826 +7.42905,44.3986,2280,11,29,11,10,2,3.55,15.0,fr,27550,45,1145284,1,1,Active Shallow Crust,240.0112,57.99834,0.0,11/29/2280 +7.42905,44.3986,7262,3,1,10,26,22,3.55,27.5,fr,27551,145,1145285,1,1,Active Shallow Crust,240.0112,57.99824,0.0,03/01/7262 +7.42905,44.3986,8959,8,28,8,57,30,3.55,5.0,fr,27552,179,1145286,1,1,Active Shallow Crust,0.0,89.99271,-90.0,08/28/8959 +7.42905,44.3986,8448,4,22,12,18,1,3.55,5.0,fr,27553,168,1145289,1,3,Active Shallow Crust,128.895,89.9964,0.0,04/22/8448 +7.42905,44.3986,7371,3,20,16,19,15,3.55,5.0,fr,27554,147,1145289,1,3,Active Shallow Crust,128.895,89.9964,0.0,03/20/7371 +7.42905,44.3986,1683,11,11,17,10,3,3.55,5.0,fr,27555,33,1145289,1,3,Active Shallow Crust,128.895,89.9964,0.0,11/11/1683 +7.42905,44.3986,6849,4,26,22,58,24,3.55,15.0,fr,27556,136,1145290,1,1,Active Shallow Crust,128.895,89.9964,0.0,04/26/6849 +7.42905,44.3986,5862,11,20,12,53,14,3.65,5.0,fr,27557,117,1145292,1,8,Active Shallow Crust,0.0,89.98716,0.0,11/20/5862 +7.42905,44.3986,184,4,20,1,27,4,3.65,5.0,fr,27558,3,1145292,1,8,Active Shallow Crust,0.0,89.98716,0.0,04/20/0184 +7.42905,44.3986,9467,2,1,3,16,43,3.65,5.0,fr,27559,189,1145292,1,8,Active Shallow Crust,0.0,89.98716,0.0,02/01/9467 +7.42905,44.3986,7102,4,5,9,11,37,3.65,5.0,fr,27560,142,1145292,1,8,Active Shallow Crust,0.0,89.98716,0.0,04/05/7102 +7.42905,44.3986,2158,11,9,17,4,40,3.65,5.0,fr,27561,43,1145292,1,8,Active Shallow Crust,0.0,89.98716,0.0,11/09/2158 +7.42905,44.3986,4119,12,3,13,38,39,3.65,5.0,fr,27562,82,1145292,1,8,Active Shallow Crust,0.0,89.98716,0.0,12/03/4119 +7.42905,44.3986,2968,9,12,15,54,47,3.65,5.0,fr,27563,59,1145292,1,8,Active Shallow Crust,0.0,89.98716,0.0,09/12/2968 +7.42905,44.3986,894,4,18,18,25,31,3.65,5.0,fr,27564,17,1145292,1,8,Active Shallow Crust,0.0,89.98716,0.0,04/18/0894 +7.42905,44.3986,5318,12,28,21,22,51,3.65,15.0,fr,27565,106,1145293,1,1,Active Shallow Crust,0.0,89.98716,0.0,12/28/5318 +7.42905,44.3986,6275,1,2,22,39,5,3.65,27.5,fr,27566,125,1145294,1,1,Active Shallow Crust,0.0,89.98716,0.0,01/02/6275 +7.42905,44.3986,5818,1,31,1,11,49,3.65,27.5,fr,27567,116,1145300,1,1,Active Shallow Crust,0.0,89.98701,-90.0,01/31/5818 +7.42905,44.3986,9469,1,10,8,1,38,3.65,5.0,fr,27568,189,1145301,1,1,Active Shallow Crust,128.9001,89.96349,0.0,01/10/9469 +7.42905,44.3986,2096,5,7,1,6,46,3.75,5.0,fr,27569,41,1145304,1,6,Active Shallow Crust,0.0,89.98856,0.0,05/07/2096 +7.42905,44.3986,531,6,30,19,11,28,3.75,5.0,fr,27570,10,1145304,1,6,Active Shallow Crust,0.0,89.98856,0.0,06/30/0531 +7.42905,44.3986,4005,12,22,20,42,2,3.75,5.0,fr,27571,80,1145304,1,6,Active Shallow Crust,0.0,89.98856,0.0,12/22/4005 +7.42905,44.3986,719,6,18,7,10,22,3.75,5.0,fr,27572,14,1145304,1,6,Active Shallow Crust,0.0,89.98856,0.0,06/18/0719 +7.42905,44.3986,1723,6,16,19,23,47,3.75,5.0,fr,27573,34,1145304,1,6,Active Shallow Crust,0.0,89.98856,0.0,06/16/1723 +7.42905,44.3986,1045,9,13,16,20,52,3.75,5.0,fr,27574,20,1145304,1,6,Active Shallow Crust,0.0,89.98856,0.0,09/13/1045 +7.42905,44.3986,6627,1,1,11,48,45,3.75,15.0,fr,27575,132,1145305,1,4,Active Shallow Crust,0.0,89.98856,0.0,01/01/6627 +7.42905,44.3986,6462,10,7,6,22,57,3.75,15.0,fr,27576,129,1145305,1,4,Active Shallow Crust,0.0,89.98856,0.0,10/07/6462 +7.42905,44.3986,5933,6,30,8,11,40,3.75,15.0,fr,27577,118,1145305,1,4,Active Shallow Crust,0.0,89.98856,0.0,06/30/5933 +7.42905,44.3986,7102,8,31,12,44,33,3.75,15.0,fr,27578,142,1145305,1,4,Active Shallow Crust,0.0,89.98856,0.0,08/31/7102 +7.42905,44.3986,7156,8,11,15,27,32,3.75,5.0,fr,27579,143,1145307,1,3,Active Shallow Crust,240.0082,58.0178,0.0,08/11/7156 +7.42905,44.3986,239,12,6,20,47,41,3.75,5.0,fr,27580,4,1145307,1,3,Active Shallow Crust,240.0082,58.0178,0.0,12/06/0239 +7.42905,44.3986,703,3,21,14,33,30,3.75,5.0,fr,27581,14,1145307,1,3,Active Shallow Crust,240.0082,58.0178,0.0,03/21/0703 +7.42905,44.3986,3088,5,5,1,36,35,3.75,15.0,fr,27582,61,1145308,1,1,Active Shallow Crust,240.0082,58.0178,0.0,05/05/3088 +7.42905,44.3986,6270,10,10,14,0,56,3.75,27.5,fr,27583,125,1145309,1,1,Active Shallow Crust,240.0082,58.0178,0.0,10/10/6270 +7.42905,44.3986,2075,4,29,11,5,32,3.75,5.0,fr,27584,41,1145310,1,1,Active Shallow Crust,0.0,89.98842,-90.0,04/29/2075 +7.42905,44.3986,22,12,3,11,54,16,3.85,5.0,fr,27585,0,1145316,1,4,Active Shallow Crust,0.0,89.9898,0.0,12/03/0022 +7.42905,44.3986,7749,1,27,10,3,41,3.85,5.0,fr,27586,154,1145316,1,4,Active Shallow Crust,0.0,89.9898,0.0,01/27/7749 +7.42905,44.3986,2044,9,15,8,39,30,3.85,5.0,fr,27587,40,1145316,1,4,Active Shallow Crust,0.0,89.9898,0.0,09/15/2044 +7.42905,44.3986,8741,5,12,2,57,49,3.85,5.0,fr,27588,174,1145316,1,4,Active Shallow Crust,0.0,89.9898,0.0,05/12/8741 +7.42905,44.3986,9831,2,5,1,41,4,3.85,15.0,fr,27589,196,1145317,1,1,Active Shallow Crust,0.0,89.9898,0.0,02/05/9831 +7.42905,44.3986,7703,12,14,19,12,51,3.85,27.5,fr,27590,154,1145318,1,1,Active Shallow Crust,0.0,89.9898,0.0,12/14/7703 +7.42905,44.3986,3809,2,12,3,18,23,3.85,5.0,fr,27591,76,1145325,1,2,Active Shallow Crust,128.8958,89.9949,0.0,02/12/3809 +7.42905,44.3986,8357,11,22,15,20,42,3.85,5.0,fr,27592,167,1145325,1,2,Active Shallow Crust,128.8958,89.9949,0.0,11/22/8357 +7.42905,44.3986,7599,7,11,14,33,46,3.95,5.0,fr,27593,151,1145328,1,4,Active Shallow Crust,0.0,89.99091,0.0,07/11/7599 +7.42905,44.3986,6856,4,23,14,24,50,3.95,5.0,fr,27594,137,1145328,1,4,Active Shallow Crust,0.0,89.99091,0.0,04/23/6856 +7.42905,44.3986,4110,1,23,10,22,33,3.95,5.0,fr,27595,82,1145328,1,4,Active Shallow Crust,0.0,89.99091,0.0,01/23/4110 +7.42905,44.3986,9161,5,13,9,22,54,3.95,5.0,fr,27596,183,1145328,1,4,Active Shallow Crust,0.0,89.99091,0.0,05/13/9161 +7.42905,44.3986,508,2,10,4,58,23,3.95,15.0,fr,27597,10,1145329,1,1,Active Shallow Crust,0.0,89.99091,0.0,02/10/0508 +7.42905,44.3986,5170,7,10,16,5,22,3.95,5.0,fr,27598,103,1145331,1,3,Active Shallow Crust,240.0186,58.00566,0.0,07/10/5170 +7.42905,44.3986,4900,9,24,14,17,1,3.95,5.0,fr,27599,97,1145331,1,3,Active Shallow Crust,240.0186,58.00566,0.0,09/24/4900 +7.42905,44.3986,9769,1,21,9,2,14,3.95,5.0,fr,27600,195,1145331,1,3,Active Shallow Crust,240.0186,58.00566,0.0,01/21/9769 +7.42905,44.3986,3839,12,14,14,39,38,3.95,5.0,fr,27601,76,1145334,1,1,Active Shallow Crust,0.0,89.9908,-90.0,12/14/3839 +7.42905,44.3986,4554,2,20,10,33,24,4.05,5.0,fr,27602,91,1145340,1,3,Active Shallow Crust,0.0,89.9919,0.0,02/20/4554 +7.42905,44.3986,6338,11,16,16,5,44,4.05,5.0,fr,27603,126,1145340,1,3,Active Shallow Crust,0.0,89.9919,0.0,11/16/6338 +7.42905,44.3986,7929,6,12,11,33,52,4.05,5.0,fr,27604,158,1145340,1,3,Active Shallow Crust,0.0,89.9919,0.0,06/12/7929 +7.42905,44.3986,7368,8,23,9,44,54,4.05,15.0,fr,27605,147,1145341,1,1,Active Shallow Crust,0.0,89.9919,0.0,08/23/7368 +7.42905,44.3986,7130,7,18,15,1,14,4.15,5.0,fr,27606,142,1145352,1,5,Active Shallow Crust,0.0,89.98917,0.0,07/18/7130 +7.42905,44.3986,7907,9,24,22,14,43,4.15,5.0,fr,27607,158,1145352,1,5,Active Shallow Crust,0.0,89.98917,0.0,09/24/7907 +7.42905,44.3986,2028,2,4,10,30,37,4.15,5.0,fr,27608,40,1145352,1,5,Active Shallow Crust,0.0,89.98917,0.0,02/04/2028 +7.42905,44.3986,9563,12,10,4,32,55,4.15,5.0,fr,27609,191,1145352,1,5,Active Shallow Crust,0.0,89.98917,0.0,12/10/9563 +7.42905,44.3986,1209,9,1,13,42,40,4.15,5.0,fr,27610,24,1145352,1,5,Active Shallow Crust,0.0,89.98917,0.0,09/01/1209 +7.42905,44.3986,6450,4,18,9,51,45,4.15,27.5,fr,27611,128,1145354,1,1,Active Shallow Crust,0.0,89.98917,0.0,04/18/6450 +7.42905,44.3986,578,11,15,21,1,46,4.15,5.0,fr,27612,11,1145355,1,2,Active Shallow Crust,240.0079,57.99718,0.0,11/15/0578 +7.42905,44.3986,6029,3,17,22,28,22,4.15,5.0,fr,27613,120,1145355,1,2,Active Shallow Crust,240.0079,57.99718,0.0,03/17/6029 +7.42905,44.3986,527,7,21,16,7,27,4.15,5.0,fr,27614,10,1145361,1,1,Active Shallow Crust,128.898,89.99278,0.0,07/21/0527 +7.42905,44.3986,9820,5,1,20,3,6,4.25,5.0,fr,27615,196,1145364,1,2,Active Shallow Crust,0.0,89.99034,0.0,05/01/9820 +7.42905,44.3986,2974,5,27,12,0,35,4.25,5.0,fr,27616,59,1145364,1,2,Active Shallow Crust,0.0,89.99034,0.0,05/27/2974 +7.42905,44.3986,9124,12,14,23,58,54,4.25,15.0,fr,27617,182,1145365,1,1,Active Shallow Crust,0.0,89.99034,0.0,12/14/9124 +7.42905,44.3986,2849,2,12,18,0,32,4.25,27.5,fr,27618,56,1145366,1,1,Active Shallow Crust,0.0,89.99034,0.0,02/12/2849 +7.42905,44.3986,4954,6,25,17,46,58,4.25,5.0,fr,27619,99,1145373,1,1,Active Shallow Crust,128.8944,89.98087,0.0,06/25/4954 +7.42905,44.3986,4928,6,27,17,28,18,4.35,5.0,fr,27620,98,1145376,1,2,Active Shallow Crust,0.0,89.99139,0.0,06/27/4928 +7.42905,44.3986,8365,12,31,3,43,52,4.35,5.0,fr,27621,167,1145376,1,2,Active Shallow Crust,0.0,89.99139,0.0,12/31/8365 +7.42905,44.3986,3405,4,11,6,37,13,4.35,27.5,fr,27622,68,1145378,1,1,Active Shallow Crust,0.0,89.99139,0.0,04/11/3405 +7.42905,44.3986,2888,5,20,17,24,27,4.35,27.5,fr,27623,57,1145387,1,1,Active Shallow Crust,128.8974,89.98295,0.0,05/20/2888 +7.42905,44.3986,5746,7,26,21,17,12,4.45,5.0,fr,27624,114,1145388,1,3,Active Shallow Crust,0.0,89.98978,0.0,07/26/5746 +7.42905,44.3986,4679,8,19,12,11,30,4.45,5.0,fr,27625,93,1145388,1,3,Active Shallow Crust,0.0,89.98978,0.0,08/19/4679 +7.42905,44.3986,3334,6,30,6,10,2,4.45,5.0,fr,27626,66,1145388,1,3,Active Shallow Crust,0.0,89.98978,0.0,06/30/3334 +7.42905,44.3986,7861,5,25,11,4,17,4.55,5.0,fr,27627,157,1145400,1,1,Active Shallow Crust,0.0,89.99088,0.0,05/25/7861 +7.42905,44.3986,3283,12,4,22,6,10,4.55,15.0,fr,27628,65,1145401,1,2,Active Shallow Crust,0.0,89.99088,0.0,12/04/3283 +7.42905,44.3986,8840,3,17,16,58,47,4.55,15.0,fr,27629,176,1145401,1,2,Active Shallow Crust,0.0,89.99088,0.0,03/17/8840 +7.42905,44.3986,8919,7,18,7,52,14,4.65,5.0,fr,27630,178,1145412,1,1,Active Shallow Crust,0.0,89.98985,0.0,07/18/8919 +7.42905,44.3986,5867,8,4,2,36,52,4.65,15.0,fr,27631,117,1145416,1,1,Active Shallow Crust,240.0103,57.99392,0.0,08/04/5867 +7.42905,44.3986,3204,3,27,12,42,47,4.65,5.0,fr,27632,64,1145421,1,1,Active Shallow Crust,128.8918,89.98711,0.0,03/27/3204 +7.42905,44.3986,3271,5,1,6,34,11,4.75,5.0,fr,27633,65,1145424,1,1,Active Shallow Crust,0.0,89.98914,0.0,05/01/3271 +7.42905,44.3986,5189,11,6,5,52,30,4.85,5.0,fr,27634,103,1145436,1,1,Active Shallow Crust,0.0,89.99032,0.0,11/06/5189 +7.42905,44.3986,9875,2,7,2,32,57,4.95,5.0,fr,27635,197,1145448,1,1,Active Shallow Crust,0.0,89.98994,0.0,02/07/9875 +7.42905,44.3986,4003,10,1,17,8,38,5.15,5.0,fr,27636,80,1145472,1,1,Active Shallow Crust,0.0,89.98972,0.0,10/01/4003 +7.42905,44.3986,4483,10,6,3,16,59,5.35,5.0,fr,27637,89,1145496,1,1,Active Shallow Crust,0.0,89.99002,0.0,10/06/4483 +7.423473,44.4055,7850,12,3,15,59,41,6.35,6.417864,fr,27638,156,1145619,1,1,Active Shallow Crust,240.0763,58.00008,0.0,12/03/7850 +0.12144,44.00065,6255,4,23,16,46,25,3.55,5.0,fr,27639,125,1145766,1,1,Active Shallow Crust,0.0,89.99003,-90.0,04/23/6255 +0.12144,44.00065,3494,12,16,9,46,25,3.65,5.0,fr,27640,69,1145778,1,1,Active Shallow Crust,0.0,89.98998,-90.0,12/16/3494 +0.12144,44.00065,6216,4,27,12,2,19,3.75,5.0,fr,27641,124,1145784,1,2,Active Shallow Crust,0.0,89.99001,0.0,04/27/6216 +0.12144,44.00065,5757,12,2,22,39,9,3.75,5.0,fr,27642,115,1145784,1,2,Active Shallow Crust,0.0,89.99001,0.0,12/02/5757 +0.12144,44.00065,4594,8,2,2,16,39,4.05,5.0,fr,27643,91,1145826,1,1,Active Shallow Crust,0.0,89.99001,-90.0,08/02/4594 +0.12144,44.00065,4885,3,31,12,38,47,4.15,5.0,fr,27644,97,1145838,1,1,Active Shallow Crust,0.0,89.99,-90.0,03/31/4885 +0.12144,44.00065,6858,5,11,1,12,31,4.25,5.0,fr,27645,137,1145844,1,1,Active Shallow Crust,0.0,89.98997,0.0,05/11/6858 +5.21943,41.31075,6816,11,20,20,2,4,3.85,5.0,fr,27646,136,1146276,1,1,Active Shallow Crust,0.0,89.98927,0.0,11/20/6816 +5.21943,41.31075,8071,5,11,22,18,53,3.95,5.0,fr,27647,161,1146297,1,1,Active Shallow Crust,128.8997,89.99522,0.0,05/11/8071 +5.21943,41.31075,1354,2,8,16,36,42,4.15,5.0,fr,27648,27,1146318,1,1,Active Shallow Crust,0.0,89.98848,-90.0,02/08/1354 +5.21943,41.31075,5574,9,19,16,45,14,4.95,15.0,fr,27649,111,1146409,1,1,Active Shallow Crust,0.0,89.98942,0.0,09/19/5574 +-2.84527,45.07842,6587,4,24,7,5,13,3.65,5.0,fr,27650,131,1146732,1,1,Active Shallow Crust,0.0,89.99048,0.0,04/24/6587 +-2.84527,45.07842,6553,9,23,20,33,54,3.65,15.0,fr,27651,131,1146733,1,1,Active Shallow Crust,0.0,89.99048,0.0,09/23/6553 +2.67327,46.24014,6929,9,21,23,34,16,3.55,5.0,fr,27652,138,1147200,1,2,Active Shallow Crust,0.0,89.98954,0.0,09/21/6929 +2.67327,46.24014,989,2,15,10,38,51,3.55,5.0,fr,27653,19,1147200,1,2,Active Shallow Crust,0.0,89.98954,0.0,02/15/0989 +2.67327,46.24014,5949,9,28,2,13,6,3.55,15.0,fr,27654,118,1147201,1,1,Active Shallow Crust,0.0,89.98954,0.0,09/28/5949 +2.67327,46.24014,556,9,20,17,53,0,3.55,27.5,fr,27655,11,1147202,1,1,Active Shallow Crust,0.0,89.98954,0.0,09/20/0556 +2.67327,46.24014,6487,2,14,6,11,20,3.55,15.0,fr,27656,129,1147204,1,1,Active Shallow Crust,240.0121,57.9987,0.0,02/14/6487 +2.67327,46.24014,783,11,26,5,27,6,3.55,5.0,fr,27657,15,1147209,1,2,Active Shallow Crust,128.896,89.99303,0.0,11/26/0783 +2.67327,46.24014,4490,6,26,3,38,11,3.55,5.0,fr,27658,89,1147209,1,2,Active Shallow Crust,128.896,89.99303,0.0,06/26/4490 +2.67327,46.24014,9985,9,18,22,1,7,3.65,5.0,fr,27659,199,1147212,1,2,Active Shallow Crust,0.0,89.99068,0.0,09/18/9985 +2.67327,46.24014,1078,4,25,8,38,36,3.65,5.0,fr,27660,21,1147212,1,2,Active Shallow Crust,0.0,89.99068,0.0,04/25/1078 +2.67327,46.24014,1004,2,20,8,48,41,3.65,5.0,fr,27661,20,1147215,1,1,Active Shallow Crust,240.0014,58.01292,0.0,02/20/1004 +2.67327,46.24014,1204,7,5,2,37,44,3.75,15.0,fr,27662,24,1147225,1,1,Active Shallow Crust,0.0,89.98892,0.0,07/05/1204 +2.67327,46.24014,6911,9,2,16,24,50,3.85,5.0,fr,27663,138,1147236,1,1,Active Shallow Crust,0.0,89.99013,0.0,09/02/6911 +2.67327,46.24014,531,6,2,3,26,58,3.95,5.0,fr,27664,10,1147248,1,1,Active Shallow Crust,0.0,89.989,0.0,06/02/0531 +2.67327,46.24014,5249,11,2,9,55,2,3.95,27.5,fr,27665,104,1147250,1,1,Active Shallow Crust,0.0,89.989,0.0,11/02/5249 +2.67327,46.24014,341,11,26,12,58,0,3.95,27.5,fr,27666,6,1147253,1,1,Active Shallow Crust,240.0197,58.00489,0.0,11/26/0341 +2.67327,46.24014,4977,4,2,16,33,39,4.15,5.0,fr,27667,99,1147272,1,2,Active Shallow Crust,0.0,89.98951,0.0,04/02/4977 +2.67327,46.24014,6060,1,9,22,56,3,4.15,5.0,fr,27668,121,1147272,1,2,Active Shallow Crust,0.0,89.98951,0.0,01/09/6060 +2.67327,46.24014,6372,4,29,17,27,57,4.15,15.0,fr,27669,127,1147273,1,1,Active Shallow Crust,0.0,89.98951,0.0,04/29/6372 +2.67327,46.24014,2814,3,12,23,42,23,4.15,5.0,fr,27670,56,1147275,1,1,Active Shallow Crust,240.0087,57.99706,0.0,03/12/2814 +2.67327,46.24014,4283,7,21,4,41,43,4.15,5.0,fr,27671,85,1147278,1,1,Active Shallow Crust,0.0,89.9894,-90.0,07/21/4283 +2.67327,46.24014,4927,11,27,15,45,37,4.25,15.0,fr,27672,98,1147288,1,1,Active Shallow Crust,240.0076,57.99398,0.0,11/27/4927 +2.67327,46.24014,3177,11,22,16,26,45,4.35,27.5,fr,27673,63,1147298,1,1,Active Shallow Crust,0.0,89.99028,0.0,11/22/3177 +2.67327,46.24014,2365,10,20,17,8,24,4.35,15.0,fr,27674,47,1147303,1,1,Active Shallow Crust,0.0,89.99017,-90.0,10/20/2365 +2.67327,46.24014,4453,5,18,15,28,31,4.85,5.0,fr,27675,89,1147356,1,1,Active Shallow Crust,0.0,89.98985,0.0,05/18/4453 +2.67327,46.24014,2084,12,3,3,7,43,4.95,15.0,fr,27676,41,1147369,1,1,Active Shallow Crust,0.0,89.99026,0.0,12/03/2084 +2.62789,49.87491,2007,3,30,18,53,4,3.55,27.5,fr,27677,40,1147682,1,1,Active Shallow Crust,0.0,89.99025,0.0,03/30/2007 +2.62789,49.87491,1494,2,19,15,51,43,3.65,5.0,fr,27678,29,1147692,1,1,Active Shallow Crust,0.0,89.99131,0.0,02/19/1494 +2.62789,49.87491,6260,2,16,12,38,44,3.75,5.0,fr,27679,125,1147704,1,1,Active Shallow Crust,0.0,89.98968,0.0,02/16/6260 +2.62789,49.87491,62,5,11,20,1,15,3.85,5.0,fr,27680,1,1147719,1,1,Active Shallow Crust,240.0113,57.99814,0.0,05/11/0062 +2.62789,49.87491,3814,8,27,3,55,46,4.05,27.5,fr,27681,76,1147742,1,1,Active Shallow Crust,0.0,89.99086,0.0,08/27/3814 +2.62789,49.87491,4621,8,26,1,16,59,4.05,5.0,fr,27682,92,1147743,1,1,Active Shallow Crust,240.0065,58.00579,0.0,08/26/4621 +2.62789,49.87491,627,12,24,10,38,24,4.05,15.0,fr,27683,12,1147750,1,1,Active Shallow Crust,128.8903,89.99361,0.0,12/24/0627 +2.62789,49.87491,3275,5,24,22,37,40,4.25,15.0,fr,27684,65,1147765,1,1,Active Shallow Crust,0.0,89.98984,0.0,05/24/3275 +2.0114,52.93868,9398,2,15,20,35,27,3.85,5.0,fr,27685,187,1148196,1,1,Active Shallow Crust,0.0,89.98924,0.0,02/15/9398 +-1.52849,49.26662,1658,4,22,11,13,51,3.55,5.0,fr,27686,33,1148640,1,2,Active Shallow Crust,0.0,89.99013,0.0,04/22/1658 +-1.52849,49.26662,1043,7,11,13,22,23,3.55,5.0,fr,27687,20,1148640,1,2,Active Shallow Crust,0.0,89.99013,0.0,07/11/1043 +-1.52849,49.26662,3271,6,29,11,0,17,3.65,5.0,fr,27688,65,1148652,1,1,Active Shallow Crust,0.0,89.98974,0.0,06/29/3271 +-1.52849,49.26662,6998,10,10,10,0,1,3.65,15.0,fr,27689,139,1148653,1,1,Active Shallow Crust,0.0,89.98974,0.0,10/10/6998 +-1.52849,49.26662,4808,7,27,3,2,16,3.65,27.5,fr,27690,96,1148660,1,1,Active Shallow Crust,0.0,89.98962,-90.0,07/27/4808 +-1.52849,49.26662,5293,5,24,9,39,17,3.85,5.0,fr,27691,105,1148685,1,2,Active Shallow Crust,128.8956,89.9936,0.0,05/24/5293 +-1.52849,49.26662,364,2,19,12,22,34,3.85,5.0,fr,27692,7,1148685,1,2,Active Shallow Crust,128.8956,89.9936,0.0,02/19/0364 +-1.52849,49.26662,1624,8,23,20,27,53,4.35,5.0,fr,27693,32,1148742,1,1,Active Shallow Crust,0.0,89.99006,-90.0,08/23/1624 +-1.52849,49.26662,4179,12,5,1,15,35,4.45,5.0,fr,27694,83,1148754,1,1,Active Shallow Crust,0.0,89.98996,-90.0,12/05/4179 +-1.52849,49.26662,867,2,14,7,28,21,4.55,15.0,fr,27695,17,1148761,1,1,Active Shallow Crust,0.0,89.99011,0.0,02/14/0867 +-1.52849,49.26662,4960,12,9,1,32,1,5.85,5.0,fr,27696,99,1148922,1,1,Active Shallow Crust,0.0,89.98998,-90.0,12/09/4960 +-1.52849,49.26662,6165,8,25,7,31,42,6.15,15.0,fr,27697,123,1148953,1,1,Active Shallow Crust,0.0,89.99001,0.0,08/25/6165 +3.4873,43.61688,8008,7,21,20,54,54,3.55,5.0,fr,27698,160,1149120,1,2,Active Shallow Crust,0.0,89.98905,0.0,07/21/8008 +3.4873,43.61688,7968,3,6,19,46,58,3.55,5.0,fr,27699,159,1149120,1,2,Active Shallow Crust,0.0,89.98905,0.0,03/06/7968 +3.4873,43.61688,5339,4,1,6,22,44,3.65,5.0,fr,27700,106,1149138,1,1,Active Shallow Crust,0.0,89.99013,-90.0,04/01/5339 +3.4873,43.61688,7272,7,28,16,46,37,3.85,5.0,fr,27701,145,1149159,1,1,Active Shallow Crust,240.0104,57.99783,0.0,07/28/7272 +3.4873,43.61688,5368,4,30,6,46,31,4.25,5.0,fr,27702,107,1149210,1,1,Active Shallow Crust,0.0,89.9901,-90.0,04/30/5368 +3.4873,43.61688,783,9,12,9,45,14,4.35,5.0,fr,27703,15,1149216,1,1,Active Shallow Crust,0.0,89.98983,0.0,09/12/0783 +8.1646,44.61183,3478,7,14,20,52,17,4.15,5.0,fr,27704,69,1149672,1,1,Active Shallow Crust,0.0,89.99281,0.0,07/14/3478 +1.9875,41.11067,8572,1,4,5,32,15,3.55,27.5,fr,27705,171,1150082,1,1,Active Shallow Crust,0.0,89.9905,0.0,01/04/8572 +1.9875,41.11067,4466,1,15,4,54,38,3.55,5.0,fr,27706,89,1150083,1,1,Active Shallow Crust,240.0116,57.99815,0.0,01/15/4466 +1.9875,41.11067,8445,4,17,6,58,35,3.55,5.0,fr,27707,168,1150086,1,1,Active Shallow Crust,0.0,89.99039,-90.0,04/17/8445 +1.9875,41.11067,6211,9,20,12,57,7,3.65,5.0,fr,27708,124,1150092,1,1,Active Shallow Crust,0.0,89.98985,0.0,09/20/6211 +1.9875,41.11067,1742,4,12,0,41,59,3.65,27.5,fr,27709,34,1150094,1,1,Active Shallow Crust,0.0,89.98985,0.0,04/12/1742 +1.9875,41.11067,4178,5,1,1,32,18,3.65,15.0,fr,27710,83,1150102,1,1,Active Shallow Crust,128.9009,89.96357,0.0,05/01/4178 +1.9875,41.11067,9958,1,13,21,37,13,3.75,15.0,fr,27711,199,1150105,1,1,Active Shallow Crust,0.0,89.98944,0.0,01/13/9958 +1.9875,41.11067,1242,2,10,13,2,49,3.75,27.5,fr,27712,24,1150106,1,1,Active Shallow Crust,0.0,89.98944,0.0,02/10/1242 +1.9875,41.11067,692,11,4,22,33,36,4.05,15.0,fr,27713,13,1150141,1,2,Active Shallow Crust,0.0,89.99039,0.0,11/04/0692 +1.9875,41.11067,102,4,6,23,48,24,4.05,15.0,fr,27714,2,1150141,1,2,Active Shallow Crust,0.0,89.99039,0.0,04/06/0102 +1.9875,41.11067,6481,12,9,12,27,39,4.15,5.0,fr,27715,129,1150155,1,1,Active Shallow Crust,240.0073,57.99721,0.0,12/09/6481 +1.9875,41.11067,9934,4,18,19,7,1,4.35,5.0,fr,27716,198,1150176,1,1,Active Shallow Crust,0.0,89.99017,0.0,04/18/9934 +1.9875,41.11067,6186,11,2,10,48,22,4.35,15.0,fr,27717,123,1150177,1,1,Active Shallow Crust,0.0,89.99017,0.0,11/02/6186 +1.9875,41.11067,9785,10,6,2,8,48,4.35,27.5,fr,27718,195,1150187,1,1,Active Shallow Crust,128.8987,89.98284,0.0,10/06/9785 +1.9875,41.11067,8241,6,11,8,4,15,4.45,5.0,fr,27719,164,1150188,1,1,Active Shallow Crust,0.0,89.98989,0.0,06/11/8241 +1.9875,41.11067,8019,6,26,1,30,19,4.55,15.0,fr,27720,160,1150207,1,1,Active Shallow Crust,0.0,89.99028,-90.0,06/26/8019 +1.9875,41.11067,1088,8,28,9,52,31,4.65,15.0,fr,27721,21,1150213,1,1,Active Shallow Crust,0.0,89.98983,0.0,08/28/1088 +1.9875,41.11067,7229,12,13,14,34,19,5.45,5.0,fr,27722,144,1150311,1,1,Active Shallow Crust,240.0208,58.00115,0.0,12/13/7229 +5.70638,46.41912,2772,9,6,16,57,34,3.95,15.0,fr,27723,55,1150609,1,1,Active Shallow Crust,0.0,89.99123,0.0,09/06/2772 +5.70638,46.41912,8449,1,12,5,34,11,5.35,5.0,fr,27724,168,1150782,1,1,Active Shallow Crust,0.0,89.99026,-90.0,01/12/8449 +8.91604,49.34448,1167,1,19,10,4,32,3.55,15.0,fr,27725,23,1151041,1,1,Active Shallow Crust,0.0,89.98686,0.0,01/19/1167 +8.91604,49.34448,6850,6,18,2,32,10,3.65,5.0,fr,27726,136,1151052,1,2,Active Shallow Crust,0.0,89.98829,0.0,06/18/6850 +8.91604,49.34448,663,4,30,6,46,23,3.65,5.0,fr,27727,13,1151052,1,2,Active Shallow Crust,0.0,89.98829,0.0,04/30/0663 +8.91604,49.34448,3702,11,19,11,12,48,3.65,5.0,fr,27728,74,1151061,1,1,Active Shallow Crust,128.9027,89.9622,0.0,11/19/3702 +8.91604,49.34448,8300,4,28,14,24,53,3.85,5.0,fr,27729,165,1151076,1,1,Active Shallow Crust,0.0,89.9907,0.0,04/28/8300 +8.91604,49.34448,8832,1,12,7,42,54,3.85,5.0,fr,27730,176,1151082,1,1,Active Shallow Crust,0.0,89.99059,-90.0,01/12/8832 +8.91604,49.34448,2269,9,20,14,23,20,4.25,27.5,fr,27731,45,1151126,1,1,Active Shallow Crust,0.0,89.98826,0.0,09/20/2269 +8.91604,49.34448,3188,12,13,1,54,35,5.25,5.0,fr,27732,63,1151244,1,2,Active Shallow Crust,0.0,89.99072,0.0,12/13/3188 +8.91604,49.34448,4918,11,20,22,10,53,5.25,5.0,fr,27733,98,1151244,1,2,Active Shallow Crust,0.0,89.99072,0.0,11/20/4918 +8.17028,47.99881,5379,3,23,12,50,8,3.55,5.0,fr,27734,107,1151520,1,1,Active Shallow Crust,0.0,89.9865,0.0,03/23/5379 +8.17028,47.99881,3612,5,4,20,18,7,3.55,5.0,fr,27735,72,1151526,1,1,Active Shallow Crust,0.0,89.98635,-90.0,05/04/3612 +8.17028,47.99881,7756,10,26,11,10,51,3.55,5.0,fr,27736,155,1151529,1,1,Active Shallow Crust,128.8944,89.99326,0.0,10/26/7756 +8.17028,47.99881,268,1,30,4,32,51,3.65,5.0,fr,27737,5,1151532,1,2,Active Shallow Crust,0.0,89.98797,0.0,01/30/0268 +8.17028,47.99881,1658,8,22,20,29,31,3.65,5.0,fr,27738,33,1151532,1,2,Active Shallow Crust,0.0,89.98797,0.0,08/22/1658 +8.17028,47.99881,5602,3,6,20,13,27,3.65,5.0,fr,27739,112,1151535,1,1,Active Shallow Crust,240.0007,58.0138,0.0,03/06/5602 +8.17028,47.99881,7510,1,13,9,0,55,3.65,27.5,fr,27740,150,1151540,1,1,Active Shallow Crust,0.0,89.98783,-90.0,01/13/7510 +8.17028,47.99881,9800,10,30,4,30,17,3.75,5.0,fr,27741,195,1151544,1,1,Active Shallow Crust,0.0,89.98928,0.0,10/30/9800 +8.17028,47.99881,7937,6,10,6,2,7,3.75,15.0,fr,27742,158,1151545,1,1,Active Shallow Crust,0.0,89.98928,0.0,06/10/7937 +8.17028,47.99881,5205,1,3,23,42,14,3.85,5.0,fr,27743,104,1151556,1,1,Active Shallow Crust,0.0,89.99045,0.0,01/03/5205 +8.17028,47.99881,7966,3,9,14,24,47,3.85,27.5,fr,27744,159,1151558,1,1,Active Shallow Crust,0.0,89.99045,0.0,03/09/7966 +8.17028,47.99881,5198,5,15,3,24,35,3.85,15.0,fr,27745,103,1151560,1,1,Active Shallow Crust,240.012,57.99766,0.0,05/15/5198 +8.17028,47.99881,9365,4,30,22,50,56,3.95,5.0,fr,27746,187,1151568,1,1,Active Shallow Crust,0.0,89.99149,0.0,04/30/9365 +8.17028,47.99881,6658,7,26,15,53,3,3.95,15.0,fr,27747,133,1151578,1,1,Active Shallow Crust,128.9026,89.99149,0.0,07/26/6658 +8.17028,47.99881,1565,6,30,14,17,4,4.45,5.0,fr,27748,31,1151628,1,2,Active Shallow Crust,0.0,89.99043,0.0,06/30/1565 +8.17028,47.99881,8887,12,5,12,43,39,4.45,5.0,fr,27749,177,1151628,1,2,Active Shallow Crust,0.0,89.99043,0.0,12/05/8887 +8.17028,47.99881,4267,3,26,12,57,8,4.65,5.0,fr,27750,85,1151652,1,1,Active Shallow Crust,0.0,89.98859,0.0,03/26/4267 +8.17028,47.99881,4121,11,25,1,53,16,5.45,15.0,fr,27751,82,1151749,1,1,Active Shallow Crust,0.0,89.9894,0.0,11/25/4121 +5.84183,42.74023,5560,8,26,15,33,25,3.55,5.0,fr,27752,111,1152000,1,1,Active Shallow Crust,0.0,89.99259,0.0,08/26/5560 +-1.30855,49.28198,5543,8,22,5,13,37,3.55,5.0,fr,27753,110,1152480,1,1,Active Shallow Crust,0.0,89.99014,0.0,08/22/5543 +-1.30855,49.28198,3173,2,22,8,44,15,3.65,5.0,fr,27754,63,1152492,1,1,Active Shallow Crust,0.0,89.98974,0.0,02/22/3173 +-1.30855,49.28198,3945,7,9,22,43,0,3.75,27.5,fr,27755,78,1152506,1,1,Active Shallow Crust,0.0,89.98955,0.0,07/09/3945 +-1.30855,49.28198,1891,1,29,12,26,3,3.75,5.0,fr,27756,37,1152513,1,1,Active Shallow Crust,128.8963,89.9673,0.0,01/29/1891 +-1.30855,49.28198,4158,2,26,4,30,1,3.85,5.0,fr,27757,83,1152516,1,1,Active Shallow Crust,0.0,89.98952,0.0,02/26/4158 +-1.30855,49.28198,7304,8,15,4,42,2,3.95,15.0,fr,27758,146,1152532,1,1,Active Shallow Crust,240.0203,58.00506,0.0,08/15/7304 +-1.30855,49.28198,718,12,13,16,1,41,3.95,5.0,fr,27759,14,1152534,1,1,Active Shallow Crust,0.0,89.9895,-90.0,12/13/0718 +-1.30855,49.28198,2043,1,21,18,53,41,3.95,5.0,fr,27760,40,1152537,1,1,Active Shallow Crust,128.8998,89.99377,0.0,01/21/2043 +-1.30855,49.28198,545,2,3,21,31,50,4.05,5.0,fr,27761,10,1152540,1,1,Active Shallow Crust,0.0,89.98983,0.0,02/03/0545 +-1.30855,49.28198,9116,12,19,17,36,24,4.15,5.0,fr,27762,182,1152552,1,1,Active Shallow Crust,0.0,89.99011,0.0,12/19/9116 +-1.30855,49.28198,5469,1,2,21,33,47,4.15,5.0,fr,27763,109,1152555,1,1,Active Shallow Crust,240.0089,57.99747,0.0,01/02/5469 +-1.30855,49.28198,7644,5,18,14,56,48,4.35,5.0,fr,27764,152,1152576,1,1,Active Shallow Crust,0.0,89.99018,0.0,05/18/7644 +6.82556,47.84595,9488,7,14,4,57,40,3.55,5.0,fr,27765,189,1152960,1,4,Active Shallow Crust,0.0,89.99323,0.0,07/14/9488 +6.82556,47.84595,4366,6,22,15,33,17,3.55,5.0,fr,27766,87,1152960,1,4,Active Shallow Crust,0.0,89.99323,0.0,06/22/4366 +6.82556,47.84595,8417,6,24,0,29,50,3.55,5.0,fr,27767,168,1152960,1,4,Active Shallow Crust,0.0,89.99323,0.0,06/24/8417 +6.82556,47.84595,7562,6,13,2,32,1,3.55,5.0,fr,27768,151,1152960,1,4,Active Shallow Crust,0.0,89.99323,0.0,06/13/7562 +6.82556,47.84595,3862,8,27,16,23,53,3.55,5.0,fr,27769,77,1152966,1,1,Active Shallow Crust,0.0,89.99316,-90.0,08/27/3862 +6.82556,47.84595,5464,5,24,22,32,58,3.65,5.0,fr,27770,109,1152972,1,1,Active Shallow Crust,0.0,89.98794,0.0,05/24/5464 +6.82556,47.84595,1484,10,8,10,25,51,3.65,27.5,fr,27771,29,1152977,1,1,Active Shallow Crust,240.0017,58.01257,0.0,10/08/1484 +6.82556,47.84595,7188,7,10,6,40,21,3.75,5.0,fr,27772,143,1152984,1,2,Active Shallow Crust,0.0,89.98925,0.0,07/10/7188 +6.82556,47.84595,3992,3,23,16,35,19,3.75,5.0,fr,27773,79,1152984,1,2,Active Shallow Crust,0.0,89.98925,0.0,03/23/3992 +6.82556,47.84595,822,9,2,7,40,25,3.75,15.0,fr,27774,16,1152991,1,1,Active Shallow Crust,0.0,89.98912,-90.0,09/02/0822 +6.82556,47.84595,7687,10,31,22,58,44,3.85,5.0,fr,27775,153,1152999,1,1,Active Shallow Crust,240.0112,57.99791,0.0,10/31/7687 +6.82556,47.84595,7657,3,10,18,5,8,3.85,15.0,fr,27776,153,1153000,1,1,Active Shallow Crust,240.0112,57.99791,0.0,03/10/7657 +6.82556,47.84595,8670,6,27,1,56,49,3.85,15.0,fr,27777,173,1153006,1,1,Active Shallow Crust,128.8966,89.99281,0.0,06/27/8670 +6.82556,47.84595,3648,3,2,22,16,27,3.95,15.0,fr,27778,72,1153012,1,1,Active Shallow Crust,240.0197,58.00523,0.0,03/02/3648 +6.82556,47.84595,5853,1,29,21,23,46,3.95,5.0,fr,27779,117,1153017,1,1,Active Shallow Crust,128.9003,89.9936,0.0,01/29/5853 +6.82556,47.84595,4615,1,26,20,15,18,4.05,5.0,fr,27780,92,1153020,1,1,Active Shallow Crust,0.0,89.98858,0.0,01/26/4615 +6.82556,47.84595,3542,3,23,4,43,9,4.15,5.0,fr,27781,70,1153032,1,1,Active Shallow Crust,0.0,89.98982,0.0,03/23/3542 +6.82556,47.84595,1935,4,4,18,23,0,4.15,27.5,fr,27782,38,1153034,1,1,Active Shallow Crust,0.0,89.98982,0.0,04/04/1935 +6.82556,47.84595,7556,2,22,20,4,26,4.15,27.5,fr,27783,151,1153037,1,1,Active Shallow Crust,240.0088,57.99739,0.0,02/22/7556 +6.82556,47.84595,1301,9,9,13,23,27,4.45,15.0,fr,27784,26,1153069,1,1,Active Shallow Crust,0.0,89.99039,0.0,09/09/1301 +6.82556,47.84595,4825,11,21,7,53,45,4.55,5.0,fr,27785,96,1153080,1,1,Active Shallow Crust,0.0,89.9893,0.0,11/21/4825 +6.82556,47.84595,8488,8,10,17,25,22,4.65,5.0,fr,27786,169,1153095,1,1,Active Shallow Crust,240.0112,57.99441,0.0,08/10/8488 +6.82556,47.84595,239,12,4,2,19,44,5.65,5.0,fr,27787,4,1153218,1,1,Active Shallow Crust,0.0,89.99023,-90.0,12/04/0239 +6.82556,47.84595,3610,3,3,2,27,25,6.45,15.0,fr,27788,72,1153312,1,1,Active Shallow Crust,240.0962,57.99911,0.0,03/03/3610 +4.22265,44.25366,9434,7,7,15,19,3,3.55,5.0,fr,27789,188,1153920,1,2,Active Shallow Crust,0.0,89.99277,0.0,07/07/9434 +4.22265,44.25366,5495,4,23,5,28,11,3.55,5.0,fr,27790,109,1153920,1,2,Active Shallow Crust,0.0,89.99277,0.0,04/23/5495 +4.22265,44.25366,5915,5,23,16,33,25,3.55,5.0,fr,27791,118,1153923,1,1,Active Shallow Crust,240.0112,57.99926,0.0,05/23/5915 +4.22265,44.25366,8728,4,16,4,56,51,3.75,15.0,fr,27792,174,1153951,1,1,Active Shallow Crust,0.0,89.9884,-90.0,04/16/8728 +4.22265,44.25366,7133,9,5,14,50,37,3.85,5.0,fr,27793,142,1153956,1,3,Active Shallow Crust,0.0,89.98978,0.0,09/05/7133 +4.22265,44.25366,1731,11,13,0,53,39,3.85,5.0,fr,27794,34,1153956,1,3,Active Shallow Crust,0.0,89.98978,0.0,11/13/1731 +4.22265,44.25366,5697,7,10,21,27,8,3.85,5.0,fr,27795,113,1153956,1,3,Active Shallow Crust,0.0,89.98978,0.0,07/10/5697 +4.22265,44.25366,7861,4,24,22,55,1,3.85,15.0,fr,27796,157,1153960,1,1,Active Shallow Crust,240.0109,57.99756,0.0,04/24/7861 +4.22265,44.25366,5790,8,27,0,25,31,4.25,5.0,fr,27797,115,1154004,1,2,Active Shallow Crust,0.0,89.99032,0.0,08/27/5790 +4.22265,44.25366,7584,2,2,11,46,44,4.25,5.0,fr,27798,151,1154004,1,2,Active Shallow Crust,0.0,89.99032,0.0,02/02/7584 +4.22265,44.25366,7368,7,16,21,31,7,4.45,5.0,fr,27799,147,1154028,1,1,Active Shallow Crust,0.0,89.98975,0.0,07/16/7368 +4.22265,44.25366,7279,11,20,19,20,9,4.45,5.0,fr,27800,145,1154031,1,1,Active Shallow Crust,240.0042,57.99498,0.0,11/20/7279 +4.22265,44.25366,3672,1,1,3,17,56,4.45,5.0,fr,27801,73,1154037,1,1,Active Shallow Crust,128.8926,89.99359,0.0,01/01/3672 +4.59616,51.90683,9976,8,6,21,11,13,3.65,5.0,fr,27802,199,1154412,1,1,Active Shallow Crust,0.0,89.98891,0.0,08/06/9976 +4.59616,51.90683,5768,12,22,10,34,6,3.95,15.0,fr,27803,115,1154449,1,1,Active Shallow Crust,0.0,89.98822,0.0,12/22/5768 +5.86287,48.86827,627,6,19,9,53,5,3.95,5.0,fr,27804,12,1154937,1,1,Active Shallow Crust,128.8993,89.99372,0.0,06/19/0627 +5.86287,48.86827,9264,12,1,7,21,47,4.45,27.5,fr,27805,185,1154996,1,1,Active Shallow Crust,0.0,89.99048,-90.0,12/01/9264 +5.86287,48.86827,7381,5,28,15,52,57,4.85,5.0,fr,27806,147,1155036,1,1,Active Shallow Crust,0.0,89.9896,0.0,05/28/7381 +5.86287,48.86827,1700,9,5,11,56,26,4.85,15.0,fr,27807,33,1155037,1,1,Active Shallow Crust,0.0,89.9896,0.0,09/05/1700 +4.56109,50.31442,1505,9,12,2,28,5,3.55,5.0,fr,27808,30,1155360,1,1,Active Shallow Crust,0.0,89.98712,0.0,09/12/1505 +4.56109,50.31442,3973,3,30,22,18,53,3.55,5.0,fr,27809,79,1155363,1,1,Active Shallow Crust,240.0127,57.99833,0.0,03/30/3973 +4.56109,50.31442,1611,9,17,12,17,8,3.55,15.0,fr,27810,32,1155364,1,1,Active Shallow Crust,240.0127,57.99833,0.0,09/17/1611 +4.56109,50.31442,7075,9,19,9,55,51,3.55,5.0,fr,27811,141,1155366,1,1,Active Shallow Crust,0.0,89.98697,-90.0,09/19/7075 +4.56109,50.31442,8615,2,8,19,17,21,3.65,5.0,fr,27812,172,1155372,1,3,Active Shallow Crust,0.0,89.98853,0.0,02/08/8615 +4.56109,50.31442,1209,5,10,2,43,29,3.65,5.0,fr,27813,24,1155372,1,3,Active Shallow Crust,0.0,89.98853,0.0,05/10/1209 +4.56109,50.31442,1514,11,25,18,46,55,3.65,5.0,fr,27814,30,1155372,1,3,Active Shallow Crust,0.0,89.98853,0.0,11/25/1514 +4.56109,50.31442,7913,2,3,10,48,26,3.65,15.0,fr,27815,158,1155373,1,1,Active Shallow Crust,0.0,89.98853,0.0,02/03/7913 +4.56109,50.31442,3810,1,9,21,15,1,3.75,15.0,fr,27816,76,1155385,1,1,Active Shallow Crust,0.0,89.98977,0.0,01/09/3810 +4.56109,50.31442,704,7,7,10,43,31,3.75,5.0,fr,27817,14,1155387,1,1,Active Shallow Crust,240.0096,58.01749,0.0,07/07/0704 +4.56109,50.31442,1184,4,24,9,57,22,3.85,15.0,fr,27818,23,1155397,1,1,Active Shallow Crust,0.0,89.99088,0.0,04/24/1184 +4.56109,50.31442,9187,5,6,23,58,0,3.85,27.5,fr,27819,183,1155398,1,1,Active Shallow Crust,0.0,89.99088,0.0,05/06/9187 +4.56109,50.31442,1066,4,15,13,55,1,3.95,5.0,fr,27820,21,1155408,1,1,Active Shallow Crust,0.0,89.99187,0.0,04/15/1066 +4.56109,50.31442,7889,6,13,16,18,59,3.95,5.0,fr,27821,157,1155414,1,2,Active Shallow Crust,0.0,89.99178,-90.0,06/13/7889 +4.56109,50.31442,1560,11,14,19,48,32,3.95,5.0,fr,27822,31,1155414,1,2,Active Shallow Crust,0.0,89.99178,-90.0,11/14/1560 +4.56109,50.31442,2124,2,5,16,51,23,4.05,5.0,fr,27823,42,1155420,1,1,Active Shallow Crust,0.0,89.98914,0.0,02/05/2124 +4.56109,50.31442,4632,8,26,23,8,20,4.05,5.0,fr,27824,92,1155423,1,1,Active Shallow Crust,240.0064,58.00622,0.0,08/26/4632 +4.56109,50.31442,6093,4,29,4,32,44,4.15,15.0,fr,27825,121,1155433,1,1,Active Shallow Crust,0.0,89.99032,0.0,04/29/6093 +4.56109,50.31442,174,8,24,18,55,11,4.35,5.0,fr,27826,3,1155456,1,1,Active Shallow Crust,0.0,89.98975,0.0,08/24/0174 +4.56109,50.31442,744,3,28,7,12,38,4.55,5.0,fr,27827,14,1155480,1,1,Active Shallow Crust,0.0,89.98981,0.0,03/28/0744 +4.56109,50.31442,2931,12,30,8,10,12,4.65,15.0,fr,27828,58,1155493,1,1,Active Shallow Crust,0.0,89.98911,0.0,12/30/2931 +4.56109,50.31442,9840,12,30,20,32,42,4.85,5.0,fr,27829,196,1155516,1,1,Active Shallow Crust,0.0,89.98991,0.0,12/30/9840 +2.14477,44.59372,5491,11,30,16,36,33,3.55,5.0,fr,27830,109,1155840,1,1,Active Shallow Crust,0.0,89.98923,0.0,11/30/5491 +2.14477,44.59372,8619,5,2,15,29,30,3.55,15.0,fr,27831,172,1155841,1,1,Active Shallow Crust,0.0,89.98923,0.0,05/02/8619 +2.14477,44.59372,1111,12,7,21,38,5,3.75,5.0,fr,27832,22,1155864,1,1,Active Shallow Crust,0.0,89.98859,0.0,12/07/1111 +2.14477,44.59372,5357,3,30,11,45,13,3.75,15.0,fr,27833,107,1155868,1,1,Active Shallow Crust,240.0081,58.01753,0.0,03/30/5357 +2.14477,44.59372,9724,12,1,20,8,33,4.15,15.0,fr,27834,194,1155913,1,1,Active Shallow Crust,0.0,89.9892,0.0,12/01/9724 +2.14477,44.59372,2559,7,16,21,22,43,4.95,5.0,fr,27835,51,1156008,1,1,Active Shallow Crust,0.0,89.98997,0.0,07/16/2559 +2.14477,44.59372,860,3,7,12,23,55,5.35,5.0,fr,27836,17,1156059,1,1,Active Shallow Crust,240.0237,57.99767,0.0,03/07/0860 +2.14477,44.59372,3567,12,15,15,31,10,5.95,5.0,fr,27837,71,1156137,1,1,Active Shallow Crust,128.8669,89.99015,0.0,12/15/3567 +6.40171,44.01228,7734,8,6,11,48,48,3.55,5.0,fr,27838,154,1156320,1,2,Active Shallow Crust,0.0,89.99274,0.0,08/06/7734 +6.40171,44.01228,5072,9,20,3,37,15,3.55,5.0,fr,27839,101,1156320,1,2,Active Shallow Crust,0.0,89.99274,0.0,09/20/5072 +6.40171,44.01228,6509,12,19,6,3,18,3.55,15.0,fr,27840,130,1156321,1,1,Active Shallow Crust,0.0,89.99274,0.0,12/19/6509 +6.40171,44.01228,1492,2,9,13,43,10,3.55,5.0,fr,27841,29,1156326,1,1,Active Shallow Crust,0.0,89.99266,-90.0,02/09/1492 +6.40171,44.01228,4583,3,22,4,40,59,3.55,5.0,fr,27842,91,1156329,1,1,Active Shallow Crust,128.8975,89.99275,0.0,03/22/4583 +6.40171,44.01228,7288,12,30,6,45,8,3.65,5.0,fr,27843,145,1156332,1,2,Active Shallow Crust,0.0,89.98708,0.0,12/30/7288 +6.40171,44.01228,8425,7,6,9,26,24,3.65,5.0,fr,27844,168,1156332,1,2,Active Shallow Crust,0.0,89.98708,0.0,07/06/8425 +6.40171,44.01228,7585,5,29,17,10,5,3.65,15.0,fr,27845,151,1156339,1,1,Active Shallow Crust,0.0,89.98692,-90.0,05/29/7585 +6.40171,44.01228,9525,10,17,2,20,54,3.75,5.0,fr,27846,190,1156344,1,1,Active Shallow Crust,0.0,89.98848,0.0,10/17/9525 +6.40171,44.01228,1311,7,5,12,13,43,3.75,5.0,fr,27847,26,1156347,1,1,Active Shallow Crust,240.0073,58.01819,0.0,07/05/1311 +6.40171,44.01228,3256,2,15,12,17,37,3.85,5.0,fr,27848,65,1156365,1,1,Active Shallow Crust,128.897,89.9923,0.0,02/15/3256 +6.40171,44.01228,6593,4,28,16,58,43,3.95,5.0,fr,27849,131,1156368,1,2,Active Shallow Crust,0.0,89.99084,0.0,04/28/6593 +6.40171,44.01228,870,1,7,15,23,49,3.95,5.0,fr,27850,17,1156368,1,2,Active Shallow Crust,0.0,89.99084,0.0,01/07/0870 +6.40171,44.01228,6629,5,14,18,19,34,4.15,5.0,fr,27851,132,1156392,1,1,Active Shallow Crust,0.0,89.9891,0.0,05/14/6629 +6.40171,44.01228,409,8,20,23,40,46,4.15,5.0,fr,27852,8,1156398,1,1,Active Shallow Crust,0.0,89.98897,-90.0,08/20/0409 +6.40171,44.01228,2911,1,28,20,25,48,4.15,5.0,fr,27853,58,1156401,1,1,Active Shallow Crust,128.8987,89.99273,0.0,01/28/2911 +6.40171,44.01228,6814,7,30,8,30,53,4.25,15.0,fr,27854,136,1156411,1,1,Active Shallow Crust,0.0,89.99017,-90.0,07/30/6814 +6.40171,44.01228,2383,7,18,16,51,18,4.65,5.0,fr,27855,47,1156458,1,1,Active Shallow Crust,0.0,89.98966,-90.0,07/18/2383 +6.40171,44.01228,1266,7,31,20,15,49,5.05,5.0,fr,27856,25,1156500,1,1,Active Shallow Crust,0.0,89.98968,0.0,07/31/1266 +6.40171,44.01228,5750,1,29,17,40,13,5.05,15.0,fr,27857,114,1156510,1,1,Active Shallow Crust,128.8864,89.99078,0.0,01/29/5750 +6.40171,44.01228,8838,12,25,7,47,58,5.65,27.5,fr,27858,176,1156574,1,1,Active Shallow Crust,0.0,89.9903,0.0,12/25/8838 +4.35924,47.77711,5691,11,22,1,41,48,3.75,5.0,fr,27859,113,1156824,1,1,Active Shallow Crust,0.0,89.98923,0.0,11/22/5691 +4.35924,47.77711,6893,3,25,15,38,57,4.15,5.0,fr,27860,137,1156872,1,1,Active Shallow Crust,0.0,89.98981,0.0,03/25/6893 +4.35924,47.77711,9997,11,24,5,18,5,4.35,5.0,fr,27861,199,1156896,1,1,Active Shallow Crust,0.0,89.9892,0.0,11/24/9997 +4.35924,47.77711,5090,2,17,8,6,2,5.25,15.0,fr,27862,101,1157011,1,1,Active Shallow Crust,0.0,89.99031,-90.0,02/17/5090 +2.48205,41.72744,3897,5,18,17,51,59,3.55,5.0,fr,27863,77,1157280,1,2,Active Shallow Crust,0.0,89.98871,0.0,05/18/3897 +2.48205,41.72744,2478,2,2,8,15,57,3.55,5.0,fr,27864,49,1157280,1,2,Active Shallow Crust,0.0,89.98871,0.0,02/02/2478 +2.48205,41.72744,5974,5,29,19,23,2,3.55,15.0,fr,27865,119,1157281,1,1,Active Shallow Crust,0.0,89.98871,0.0,05/29/5974 +2.48205,41.72744,5400,5,18,2,5,58,3.55,27.5,fr,27866,107,1157282,1,1,Active Shallow Crust,0.0,89.98871,0.0,05/18/5400 +2.48205,41.72744,6233,4,14,3,39,43,3.55,15.0,fr,27867,124,1157284,1,1,Active Shallow Crust,240.0118,57.99797,0.0,04/14/6233 +2.48205,41.72744,189,11,4,7,15,4,3.55,5.0,fr,27868,3,1157289,1,1,Active Shallow Crust,128.8965,89.99435,0.0,11/04/0189 +2.48205,41.72744,3569,7,7,6,56,20,3.65,5.0,fr,27869,71,1157292,1,1,Active Shallow Crust,0.0,89.98994,0.0,07/07/3569 +2.48205,41.72744,2773,10,7,21,35,12,3.65,5.0,fr,27870,55,1157295,1,1,Active Shallow Crust,240.0006,58.01306,0.0,10/07/2773 +2.48205,41.72744,1094,6,1,16,38,39,3.65,5.0,fr,27871,21,1157298,1,2,Active Shallow Crust,0.0,89.98982,-90.0,06/01/1094 +2.48205,41.72744,4881,2,8,17,14,48,3.65,5.0,fr,27872,97,1157298,1,2,Active Shallow Crust,0.0,89.98982,-90.0,02/08/4881 +2.48205,41.72744,370,4,20,14,39,49,3.65,27.5,fr,27873,7,1157303,1,1,Active Shallow Crust,128.9007,89.96343,0.0,04/20/0370 +2.48205,41.72744,2709,11,24,17,49,4,3.75,5.0,fr,27874,54,1157304,1,1,Active Shallow Crust,0.0,89.99104,0.0,11/24/2709 +2.48205,41.72744,697,7,10,14,3,35,3.75,15.0,fr,27875,13,1157305,1,2,Active Shallow Crust,0.0,89.99104,0.0,07/10/0697 +2.48205,41.72744,8439,9,9,7,55,17,3.75,15.0,fr,27876,168,1157305,1,2,Active Shallow Crust,0.0,89.99104,0.0,09/09/8439 +2.48205,41.72744,7256,9,7,20,1,54,3.75,15.0,fr,27877,145,1157314,1,1,Active Shallow Crust,128.8977,89.96741,0.0,09/07/7256 +2.48205,41.72744,7129,12,3,4,13,35,3.95,5.0,fr,27878,142,1157328,1,1,Active Shallow Crust,0.0,89.9905,0.0,12/03/7129 +2.48205,41.72744,2595,3,12,21,59,24,3.95,15.0,fr,27879,51,1157329,1,2,Active Shallow Crust,0.0,89.9905,0.0,03/12/2595 +2.48205,41.72744,7903,1,3,18,21,27,3.95,15.0,fr,27880,158,1157329,1,2,Active Shallow Crust,0.0,89.9905,0.0,01/03/7903 +2.48205,41.72744,1772,9,5,17,1,22,3.95,27.5,fr,27881,35,1157330,1,1,Active Shallow Crust,0.0,89.9905,0.0,09/05/1772 +2.48205,41.72744,8248,8,7,11,19,24,3.95,5.0,fr,27882,164,1157334,1,1,Active Shallow Crust,0.0,89.99039,-90.0,08/07/8248 +2.48205,41.72744,9013,7,30,18,3,43,3.95,15.0,fr,27883,180,1157335,1,1,Active Shallow Crust,0.0,89.99039,-90.0,07/30/9013 +2.48205,41.72744,9347,6,12,20,51,54,3.95,5.0,fr,27884,186,1157337,1,1,Active Shallow Crust,128.9005,89.99406,0.0,06/12/9347 +2.48205,41.72744,7186,10,23,4,33,55,4.05,5.0,fr,27885,143,1157340,1,4,Active Shallow Crust,0.0,89.98942,0.0,10/23/7186 +2.48205,41.72744,4801,7,25,21,17,31,4.05,5.0,fr,27886,96,1157340,1,4,Active Shallow Crust,0.0,89.98942,0.0,07/25/4801 +2.48205,41.72744,6388,11,17,9,49,25,4.05,5.0,fr,27887,127,1157340,1,4,Active Shallow Crust,0.0,89.98942,0.0,11/17/6388 +2.48205,41.72744,7876,9,14,15,47,13,4.05,5.0,fr,27888,157,1157340,1,4,Active Shallow Crust,0.0,89.98942,0.0,09/14/7876 +2.48205,41.72744,2819,6,3,2,54,17,4.05,5.0,fr,27889,56,1157343,1,1,Active Shallow Crust,240.0054,58.00579,0.0,06/03/2819 +2.48205,41.72744,5853,10,1,4,46,5,4.05,5.0,fr,27890,117,1157349,1,1,Active Shallow Crust,128.8917,89.99365,0.0,10/01/5853 +2.48205,41.72744,3274,3,22,19,48,23,4.15,5.0,fr,27891,65,1157352,1,1,Active Shallow Crust,0.0,89.99057,0.0,03/22/3274 +2.48205,41.72744,8983,3,28,22,19,4,4.15,15.0,fr,27892,179,1157353,1,3,Active Shallow Crust,0.0,89.99057,0.0,03/28/8983 +2.48205,41.72744,9073,4,26,23,25,26,4.15,15.0,fr,27893,181,1157353,1,3,Active Shallow Crust,0.0,89.99057,0.0,04/26/9073 +2.48205,41.72744,5760,10,23,11,6,57,4.15,15.0,fr,27894,115,1157353,1,3,Active Shallow Crust,0.0,89.99057,0.0,10/23/5760 +2.48205,41.72744,3608,10,18,0,53,13,4.15,5.0,fr,27895,72,1157361,1,1,Active Shallow Crust,128.898,89.99435,0.0,10/18/3608 +2.48205,41.72744,8124,8,14,2,18,20,4.25,15.0,fr,27896,162,1157365,1,1,Active Shallow Crust,0.0,89.98991,0.0,08/14/8124 +2.48205,41.72744,3165,10,25,8,23,20,4.25,5.0,fr,27897,63,1157373,1,1,Active Shallow Crust,128.895,89.98105,0.0,10/25/3165 +2.48205,41.72744,3600,9,13,13,10,29,4.25,15.0,fr,27898,71,1157374,1,1,Active Shallow Crust,128.895,89.98105,0.0,09/13/3600 +2.48205,41.72744,5393,8,12,16,15,1,4.35,5.0,fr,27899,107,1157376,1,1,Active Shallow Crust,0.0,89.98951,0.0,08/12/5393 +2.48205,41.72744,2978,11,5,15,0,16,4.35,15.0,fr,27900,59,1157377,1,1,Active Shallow Crust,0.0,89.98951,0.0,11/05/2978 +2.48205,41.72744,6720,10,3,23,35,20,4.55,5.0,fr,27901,134,1157406,1,1,Active Shallow Crust,0.0,89.99037,-90.0,10/03/6720 +2.48205,41.72744,4574,2,14,17,27,9,4.65,5.0,fr,27902,91,1157412,1,1,Active Shallow Crust,0.0,89.99046,0.0,02/14/4574 +2.48205,41.72744,436,4,7,9,12,58,4.85,5.0,fr,27903,8,1157436,1,1,Active Shallow Crust,0.0,89.98989,0.0,04/07/0436 +2.48205,41.72744,8963,4,7,11,10,36,5.15,5.0,fr,27904,179,1157478,1,1,Active Shallow Crust,0.0,89.98974,-90.0,04/07/8963 +2.48205,41.72744,3687,12,17,4,53,29,5.45,5.0,fr,27905,73,1157511,1,1,Active Shallow Crust,240.0213,58.00122,0.0,12/17/3687 +3.2496,51.81793,3667,2,6,18,5,5,4.25,5.0,fr,27906,73,1157844,1,1,Active Shallow Crust,0.0,89.99026,0.0,02/06/3667 +3.2496,51.81793,6071,8,15,22,58,13,5.05,5.0,fr,27907,121,1157943,1,1,Active Shallow Crust,240.0252,57.99815,0.0,08/15/6071 +2.95259,51.04517,2960,3,19,17,29,24,3.55,5.0,fr,27908,59,1158240,1,1,Active Shallow Crust,0.0,89.99049,0.0,03/19/2960 +2.95259,51.04517,5941,2,15,10,51,5,3.55,15.0,fr,27909,118,1158241,1,1,Active Shallow Crust,0.0,89.99049,0.0,02/15/5941 +2.95259,51.04517,6674,7,7,7,57,21,3.55,15.0,fr,27910,133,1158244,1,1,Active Shallow Crust,240.0122,57.99833,0.0,07/07/6674 +2.95259,51.04517,2900,1,5,0,36,59,3.65,5.0,fr,27911,57,1158255,1,1,Active Shallow Crust,240.0019,58.01284,0.0,01/05/2900 +2.95259,51.04517,787,6,15,5,33,37,3.75,15.0,fr,27912,15,1158265,1,1,Active Shallow Crust,0.0,89.98993,0.0,06/15/0787 +2.95259,51.04517,4765,3,20,12,49,49,4.05,5.0,fr,27913,95,1158300,1,1,Active Shallow Crust,0.0,89.9893,0.0,03/20/4765 +2.95259,51.04517,1968,3,13,14,27,17,5.75,5.0,fr,27914,39,1158504,1,1,Active Shallow Crust,0.0,89.98992,0.0,03/13/1968 +2.95259,51.04517,4708,5,26,2,8,4,5.95,5.0,fr,27915,94,1158528,1,1,Active Shallow Crust,0.0,89.98999,0.0,05/26/4708 +3.77253,43.79166,7905,3,7,12,30,8,3.55,5.0,fr,27916,158,1158720,1,1,Active Shallow Crust,0.0,89.98908,0.0,03/07/7905 +3.77253,43.79166,4585,12,13,16,5,19,3.75,5.0,fr,27917,91,1158747,1,1,Active Shallow Crust,240.0083,58.01697,0.0,12/13/4585 +3.77253,43.79166,9576,4,13,16,59,37,3.85,5.0,fr,27918,191,1158756,1,1,Active Shallow Crust,0.0,89.98969,0.0,04/13/9576 +3.77253,43.79166,3007,3,31,10,57,17,3.85,5.0,fr,27919,60,1158759,1,1,Active Shallow Crust,240.011,57.99745,0.0,03/31/3007 +3.77253,43.79166,5275,7,13,11,5,6,4.75,15.0,fr,27920,105,1158871,1,1,Active Shallow Crust,0.0,89.98982,-90.0,07/13/5275 +7.25284,47.25503,4301,3,23,2,35,49,3.55,5.0,fr,27921,86,1159200,1,4,Active Shallow Crust,0.0,89.99316,0.0,03/23/4301 +7.25284,47.25503,58,10,8,5,19,42,3.55,5.0,fr,27922,1,1159200,1,4,Active Shallow Crust,0.0,89.99316,0.0,10/08/0058 +7.25284,47.25503,2655,4,5,6,39,49,3.55,5.0,fr,27923,53,1159200,1,4,Active Shallow Crust,0.0,89.99316,0.0,04/05/2655 +7.25284,47.25503,8253,2,4,19,31,15,3.55,5.0,fr,27924,165,1159200,1,4,Active Shallow Crust,0.0,89.99316,0.0,02/04/8253 +7.25284,47.25503,5489,2,17,18,46,4,3.55,15.0,fr,27925,109,1159201,1,1,Active Shallow Crust,0.0,89.99316,0.0,02/17/5489 +7.25284,47.25503,6467,9,20,2,48,1,3.55,5.0,fr,27926,129,1159203,1,1,Active Shallow Crust,240.0123,57.99832,0.0,09/20/6467 +7.25284,47.25503,8232,11,14,19,31,42,3.65,5.0,fr,27927,164,1159212,1,3,Active Shallow Crust,0.0,89.9878,0.0,11/14/8232 +7.25284,47.25503,3105,1,11,18,4,14,3.65,5.0,fr,27928,62,1159212,1,3,Active Shallow Crust,0.0,89.9878,0.0,01/11/3105 +7.25284,47.25503,7539,1,10,12,37,30,3.65,5.0,fr,27929,150,1159212,1,3,Active Shallow Crust,0.0,89.9878,0.0,01/10/7539 +7.25284,47.25503,8404,10,1,3,36,45,3.65,15.0,fr,27930,168,1159213,1,1,Active Shallow Crust,0.0,89.9878,0.0,10/01/8404 +7.25284,47.25503,4738,1,7,5,9,44,3.65,5.0,fr,27931,94,1159215,1,1,Active Shallow Crust,240.0023,58.01208,0.0,01/07/4738 +7.25284,47.25503,3954,3,6,14,36,5,3.65,15.0,fr,27932,79,1159219,1,1,Active Shallow Crust,0.0,89.98766,-90.0,03/06/3954 +7.25284,47.25503,8875,2,7,11,46,20,3.75,5.0,fr,27933,177,1159224,1,2,Active Shallow Crust,0.0,89.98913,0.0,02/07/8875 +7.25284,47.25503,1582,3,24,10,1,14,3.75,5.0,fr,27934,31,1159224,1,2,Active Shallow Crust,0.0,89.98913,0.0,03/24/1582 +7.25284,47.25503,6667,5,15,9,6,23,3.75,15.0,fr,27935,133,1159225,1,1,Active Shallow Crust,0.0,89.98913,0.0,05/15/6667 +7.25284,47.25503,8460,9,6,9,10,15,3.75,27.5,fr,27936,169,1159226,1,1,Active Shallow Crust,0.0,89.98913,0.0,09/06/8460 +7.25284,47.25503,8380,2,18,6,0,57,3.75,5.0,fr,27937,167,1159230,1,1,Active Shallow Crust,0.0,89.989,-90.0,02/18/8380 +7.25284,47.25503,9734,12,2,22,13,59,3.75,27.5,fr,27938,194,1159232,1,1,Active Shallow Crust,0.0,89.989,-90.0,12/02/9734 +7.25284,47.25503,4436,11,9,22,20,16,3.75,15.0,fr,27939,88,1159234,1,1,Active Shallow Crust,128.8971,89.96694,0.0,11/09/4436 +7.25284,47.25503,3107,1,6,4,5,37,3.85,5.0,fr,27940,62,1159236,1,2,Active Shallow Crust,0.0,89.99031,0.0,01/06/3107 +7.25284,47.25503,2951,11,22,22,47,26,3.85,5.0,fr,27941,59,1159236,1,2,Active Shallow Crust,0.0,89.99031,0.0,11/22/2951 +7.25284,47.25503,2357,6,17,11,25,2,3.85,5.0,fr,27942,47,1159242,1,1,Active Shallow Crust,0.0,89.9902,-90.0,06/17/2357 +7.25284,47.25503,1099,3,24,23,16,30,3.85,15.0,fr,27943,21,1159243,1,1,Active Shallow Crust,0.0,89.9902,-90.0,03/24/1099 +7.25284,47.25503,8498,7,30,22,25,22,3.95,5.0,fr,27944,169,1159248,1,3,Active Shallow Crust,0.0,89.99136,0.0,07/30/8498 +7.25284,47.25503,1826,6,11,2,6,8,3.95,5.0,fr,27945,36,1159248,1,3,Active Shallow Crust,0.0,89.99136,0.0,06/11/1826 +7.25284,47.25503,2673,11,24,9,47,42,3.95,5.0,fr,27946,53,1159248,1,3,Active Shallow Crust,0.0,89.99136,0.0,11/24/2673 +7.25284,47.25503,9635,7,4,9,0,12,3.95,15.0,fr,27947,192,1159249,1,1,Active Shallow Crust,0.0,89.99136,0.0,07/04/9635 +7.25284,47.25503,2132,5,7,5,14,38,3.95,5.0,fr,27948,42,1159251,1,1,Active Shallow Crust,240.0191,58.00549,0.0,05/07/2132 +7.25284,47.25503,7033,1,15,23,30,14,3.95,5.0,fr,27949,140,1159254,1,1,Active Shallow Crust,0.0,89.99126,-90.0,01/15/7033 +7.25284,47.25503,8429,3,25,14,35,59,4.05,5.0,fr,27950,168,1159260,1,1,Active Shallow Crust,0.0,89.98846,0.0,03/25/8429 +7.25284,47.25503,2754,3,30,11,5,22,4.05,15.0,fr,27951,55,1159261,1,1,Active Shallow Crust,0.0,89.98846,0.0,03/30/2754 +7.25284,47.25503,6755,7,27,5,18,34,4.05,5.0,fr,27952,135,1159263,1,1,Active Shallow Crust,240.0054,58.00611,0.0,07/27/6755 +7.25284,47.25503,2148,3,29,19,5,33,4.05,15.0,fr,27953,42,1159264,1,2,Active Shallow Crust,240.0054,58.00608,0.0,03/29/2148 +7.25284,47.25503,2895,11,17,16,29,41,4.05,15.0,fr,27954,57,1159264,1,2,Active Shallow Crust,240.0054,58.00608,0.0,11/17/2895 +7.25284,47.25503,7270,5,12,12,34,17,4.05,15.0,fr,27955,145,1159267,1,1,Active Shallow Crust,0.0,89.98832,-90.0,05/12/7270 +7.25284,47.25503,8986,4,13,6,44,16,4.15,5.0,fr,27956,179,1159272,1,1,Active Shallow Crust,0.0,89.98971,0.0,04/13/8986 +7.25284,47.25503,2340,4,21,7,56,56,4.15,5.0,fr,27957,46,1159278,1,1,Active Shallow Crust,0.0,89.98959,-90.0,04/21/2340 +7.25284,47.25503,5453,7,13,19,16,36,4.15,15.0,fr,27958,109,1159279,1,1,Active Shallow Crust,0.0,89.98959,-90.0,07/13/5453 +7.25284,47.25503,7856,1,8,7,15,30,4.25,5.0,fr,27959,157,1159284,1,2,Active Shallow Crust,0.0,89.99083,0.0,01/08/7856 +7.25284,47.25503,6726,7,7,11,9,39,4.25,5.0,fr,27960,134,1159284,1,2,Active Shallow Crust,0.0,89.99083,0.0,07/07/6726 +7.25284,47.25503,2005,8,29,9,35,29,4.25,5.0,fr,27961,40,1159293,1,1,Active Shallow Crust,128.8937,89.98097,0.0,08/29/2005 +7.25284,47.25503,1362,3,26,12,44,25,4.35,5.0,fr,27962,27,1159296,1,2,Active Shallow Crust,0.0,89.9891,0.0,03/26/1362 +7.25284,47.25503,6796,3,4,17,17,13,4.35,5.0,fr,27963,135,1159296,1,2,Active Shallow Crust,0.0,89.9891,0.0,03/04/6796 +7.25284,47.25503,9767,4,3,10,9,47,4.35,15.0,fr,27964,195,1159297,1,1,Active Shallow Crust,0.0,89.9891,0.0,04/03/9767 +7.25284,47.25503,871,6,17,23,51,35,4.35,15.0,fr,27965,17,1159303,1,1,Active Shallow Crust,0.0,89.98898,-90.0,06/17/0871 +7.25284,47.25503,3565,7,16,3,36,38,4.55,5.0,fr,27966,71,1159320,1,2,Active Shallow Crust,0.0,89.98917,0.0,07/16/3565 +7.25284,47.25503,4345,1,19,11,3,1,4.55,5.0,fr,27967,86,1159320,1,2,Active Shallow Crust,0.0,89.98917,0.0,01/19/4345 +7.25284,47.25503,4908,4,2,13,59,11,4.65,5.0,fr,27968,98,1159332,1,1,Active Shallow Crust,0.0,89.99036,0.0,04/02/4908 +7.25284,47.25503,8661,12,21,8,7,30,4.65,5.0,fr,27969,173,1159335,1,1,Active Shallow Crust,240.0112,57.99421,0.0,12/21/8661 +7.25284,47.25503,698,7,14,2,23,18,4.85,15.0,fr,27970,13,1159357,1,1,Active Shallow Crust,0.0,89.98927,0.0,07/14/0698 +7.25284,47.25503,2069,11,16,18,46,11,5.35,5.0,fr,27971,41,1159419,1,1,Active Shallow Crust,240.0256,57.99807,0.0,11/16/2069 +7.25284,47.25503,817,2,17,6,33,50,5.55,5.0,fr,27972,16,1159443,1,1,Active Shallow Crust,240.0334,57.99958,0.0,02/17/0817 +7.25284,47.25503,2173,1,4,23,11,9,6.15,15.0,fr,27973,43,1159519,1,1,Active Shallow Crust,0.0,89.98993,-90.0,01/04/2173 +-0.42542,45.58415,6522,1,8,5,23,46,3.55,5.0,fr,27974,130,1159680,1,2,Active Shallow Crust,0.0,89.98985,0.0,01/08/6522 +-0.42542,45.58415,9700,10,9,5,57,55,3.55,5.0,fr,27975,193,1159680,1,2,Active Shallow Crust,0.0,89.98985,0.0,10/09/9700 +-0.42542,45.58415,4721,6,16,23,41,38,3.55,27.5,fr,27976,94,1159682,1,1,Active Shallow Crust,0.0,89.98985,0.0,06/16/4721 +-0.42542,45.58415,3505,12,16,10,43,56,3.55,5.0,fr,27977,70,1159686,1,1,Active Shallow Crust,0.0,89.99018,-90.0,12/16/3505 +-0.42542,45.58415,9689,5,17,9,26,51,3.65,5.0,fr,27978,193,1159692,1,2,Active Shallow Crust,0.0,89.99017,0.0,05/17/9689 +-0.42542,45.58415,4772,1,3,11,56,18,3.65,5.0,fr,27979,95,1159692,1,2,Active Shallow Crust,0.0,89.99017,0.0,01/03/4772 +-0.42542,45.58415,8234,10,22,9,37,32,3.65,5.0,fr,27980,164,1159701,1,1,Active Shallow Crust,128.9004,89.96351,0.0,10/22/8234 +-0.42542,45.58415,3893,3,21,17,51,45,3.85,5.0,fr,27981,77,1159716,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/21/3893 +-0.42542,45.58415,4342,11,28,4,16,9,3.95,5.0,fr,27982,86,1159728,1,1,Active Shallow Crust,0.0,89.98998,0.0,11/28/4342 +-0.42542,45.58415,5776,7,17,11,49,6,4.25,5.0,fr,27983,115,1159773,1,1,Active Shallow Crust,128.8944,89.98094,0.0,07/17/5776 +-0.42542,45.58415,5367,12,18,17,15,39,4.75,5.0,fr,27984,107,1159833,1,1,Active Shallow Crust,128.889,89.98806,0.0,12/18/5367 +-0.42542,45.58415,3407,9,18,14,46,9,5.05,5.0,fr,27985,68,1159860,1,1,Active Shallow Crust,360.0,89.99004,0.0,09/18/3407 +-0.42542,45.58415,1168,9,23,18,40,55,5.25,15.0,fr,27986,23,1159885,1,1,Active Shallow Crust,360.0,89.99003,0.0,09/23/1168 +4.62948,46.27373,2321,6,6,6,26,6,3.55,5.0,fr,27987,46,1160163,1,1,Active Shallow Crust,240.0117,57.9982,0.0,06/06/2321 +4.62948,46.27373,8042,3,29,0,34,23,3.65,15.0,fr,27988,160,1160173,1,1,Active Shallow Crust,0.0,89.98758,0.0,03/29/8042 +4.62948,46.27373,2528,1,31,3,48,9,3.85,5.0,fr,27989,50,1160196,1,1,Active Shallow Crust,0.0,89.99013,0.0,01/31/2528 +4.62948,46.27373,2874,3,6,22,25,32,3.85,5.0,fr,27990,57,1160199,1,1,Active Shallow Crust,240.0109,57.99772,0.0,03/06/2874 +4.62948,46.27373,1659,10,1,4,47,11,3.85,15.0,fr,27991,33,1160206,1,1,Active Shallow Crust,128.8953,89.9926,0.0,10/01/1659 +4.62948,46.27373,5339,2,16,11,53,25,3.95,5.0,fr,27992,106,1160208,1,1,Active Shallow Crust,0.0,89.9912,0.0,02/16/5339 +4.62948,46.27373,8939,11,17,15,5,39,4.25,15.0,fr,27993,178,1160245,1,1,Active Shallow Crust,0.0,89.99066,0.0,11/17/8939 +4.62948,46.27373,8911,5,4,4,44,49,4.35,5.0,fr,27994,178,1160256,1,1,Active Shallow Crust,0.0,89.9889,0.0,05/04/8911 +5.06027,51.36425,9868,8,16,15,45,20,3.55,5.0,fr,27995,197,1161120,1,2,Active Shallow Crust,0.0,89.98741,0.0,08/16/9868 +5.06027,51.36425,9033,5,26,2,0,18,3.55,5.0,fr,27996,180,1161120,1,2,Active Shallow Crust,0.0,89.98741,0.0,05/26/9033 +5.06027,51.36425,252,1,31,7,35,53,3.65,5.0,fr,27997,5,1161135,1,1,Active Shallow Crust,240.0018,58.01268,0.0,01/31/0252 +5.06027,51.36425,950,3,22,18,18,36,3.75,5.0,fr,27998,18,1161150,1,1,Active Shallow Crust,0.0,89.98988,-90.0,03/22/0950 +5.06027,51.36425,4824,12,27,22,51,37,3.85,15.0,fr,27999,96,1161157,1,1,Active Shallow Crust,0.0,89.99109,0.0,12/27/4824 +5.06027,51.36425,8502,5,22,16,33,11,4.25,15.0,fr,28000,170,1161205,1,1,Active Shallow Crust,0.0,89.98875,0.0,05/22/8502 +5.06027,51.36425,5954,7,21,10,5,52,5.25,5.0,fr,28001,119,1161333,1,1,Active Shallow Crust,128.8846,89.98701,0.0,07/21/5954 +0.44545,52.25452,8771,5,20,13,4,55,3.55,15.0,fr,28002,175,1161607,1,1,Active Shallow Crust,0.0,89.98985,-90.0,05/20/8771 +0.44545,52.25452,1496,10,2,2,38,47,4.05,5.0,fr,28003,29,1161660,1,1,Active Shallow Crust,0.0,89.99002,0.0,10/02/1496 +1.60794,51.65121,8327,5,23,16,30,56,3.55,5.0,fr,28004,166,1162080,1,2,Active Shallow Crust,0.0,89.99062,0.0,05/23/8327 +1.60794,51.65121,8805,7,12,3,38,13,3.55,5.0,fr,28005,176,1162080,1,2,Active Shallow Crust,0.0,89.99062,0.0,07/12/8805 +1.60794,51.65121,2313,8,16,18,41,18,3.65,5.0,fr,28006,46,1162092,1,2,Active Shallow Crust,0.0,89.99024,0.0,08/16/2313 +1.60794,51.65121,1562,8,6,11,6,0,3.65,5.0,fr,28007,31,1162092,1,2,Active Shallow Crust,0.0,89.99024,0.0,08/06/1562 +1.60794,51.65121,7526,7,16,8,54,2,3.65,5.0,fr,28008,150,1162095,1,1,Active Shallow Crust,240.0019,58.0129,0.0,07/16/7526 +1.60794,51.65121,8253,3,7,1,4,4,3.75,5.0,fr,28009,165,1162104,1,1,Active Shallow Crust,0.0,89.99006,0.0,03/07/8253 +1.60794,51.65121,9145,11,14,4,34,22,3.85,5.0,fr,28010,182,1162116,1,1,Active Shallow Crust,0.0,89.99004,0.0,11/14/9145 +1.60794,51.65121,3619,2,3,9,27,29,3.85,15.0,fr,28011,72,1162120,1,1,Active Shallow Crust,240.0116,57.99805,0.0,02/03/3619 +1.60794,51.65121,7462,1,1,2,26,49,3.95,15.0,fr,28012,149,1162135,1,1,Active Shallow Crust,0.0,89.99001,-90.0,01/01/7462 +1.60794,51.65121,9572,6,17,18,5,41,4.65,15.0,fr,28013,191,1162213,1,1,Active Shallow Crust,0.0,89.98986,0.0,06/17/9572 +1.60794,51.65121,704,9,20,20,39,2,5.05,5.0,fr,28014,14,1162260,1,1,Active Shallow Crust,0.0,89.98998,0.0,09/20/0704 +1.87694,46.55444,2976,3,4,17,17,28,3.55,5.0,fr,28015,59,1162560,1,3,Active Shallow Crust,0.0,89.9896,0.0,03/04/2976 +1.87694,46.55444,629,5,7,4,16,27,3.55,5.0,fr,28016,12,1162560,1,3,Active Shallow Crust,0.0,89.9896,0.0,05/07/0629 +1.87694,46.55444,3335,9,29,2,54,11,3.55,5.0,fr,28017,66,1162560,1,3,Active Shallow Crust,0.0,89.9896,0.0,09/29/3335 +1.87694,46.55444,3682,9,7,17,52,11,3.55,5.0,fr,28018,73,1162566,1,1,Active Shallow Crust,0.0,89.98948,-90.0,09/07/3682 +1.87694,46.55444,6515,7,4,20,0,11,3.65,27.5,fr,28019,130,1162574,1,1,Active Shallow Crust,0.0,89.99073,0.0,07/04/6515 +1.87694,46.55444,3798,4,7,13,18,4,3.65,15.0,fr,28020,75,1162579,1,1,Active Shallow Crust,0.0,89.99062,-90.0,04/07/3798 +1.87694,46.55444,9659,11,8,2,4,1,3.75,5.0,fr,28021,193,1162584,1,2,Active Shallow Crust,0.0,89.99036,0.0,11/08/9659 +1.87694,46.55444,1791,2,9,7,9,27,3.75,5.0,fr,28022,35,1162584,1,2,Active Shallow Crust,0.0,89.99036,0.0,02/09/1791 +1.87694,46.55444,8421,2,22,17,9,44,3.75,5.0,fr,28023,168,1162587,1,1,Active Shallow Crust,240.0083,58.01774,0.0,02/22/8421 +1.87694,46.55444,6572,4,15,22,23,50,3.95,27.5,fr,28024,131,1162613,1,1,Active Shallow Crust,240.0199,58.00499,0.0,04/15/6572 +1.87694,46.55444,1001,1,4,7,59,0,4.05,15.0,fr,28025,20,1162621,1,2,Active Shallow Crust,0.0,89.99025,0.0,01/04/1001 +1.87694,46.55444,5749,4,26,6,1,43,4.05,15.0,fr,28026,114,1162621,1,2,Active Shallow Crust,0.0,89.99025,0.0,04/26/5749 +1.87694,46.55444,8577,12,18,17,10,36,4.25,5.0,fr,28027,171,1162650,1,1,Active Shallow Crust,0.0,89.98981,-90.0,12/18/8577 +1.87694,46.55444,7777,11,25,9,3,26,4.25,5.0,fr,28028,155,1162653,1,1,Active Shallow Crust,128.8943,89.98082,0.0,11/25/7777 +1.87694,46.55444,8778,6,12,21,59,14,4.55,5.0,fr,28029,175,1162680,1,1,Active Shallow Crust,0.0,89.99013,0.0,06/12/8778 +1.87694,46.55444,5977,6,23,8,22,10,4.75,5.0,fr,28030,119,1162704,1,1,Active Shallow Crust,0.0,89.98998,0.0,06/23/5977 +1.87694,46.55444,7028,7,6,2,6,36,5.95,15.0,fr,28031,140,1162852,1,1,Active Shallow Crust,240.0512,58.00066,0.0,07/06/7028 +5.63489,42.71391,8262,5,4,8,14,23,3.55,5.0,fr,28032,165,1163040,1,1,Active Shallow Crust,0.0,89.99259,0.0,05/04/8262 +5.63489,42.71391,4412,9,4,15,22,22,3.65,5.0,fr,28033,88,1163052,1,1,Active Shallow Crust,0.0,89.98679,0.0,09/04/4412 +5.63489,42.71391,1808,2,18,18,34,35,4.05,5.0,fr,28034,36,1163100,1,1,Active Shallow Crust,0.0,89.99167,0.0,02/18/1808 +5.63489,42.71391,5272,2,1,2,10,30,4.05,15.0,fr,28035,105,1163104,1,1,Active Shallow Crust,240.0053,58.00574,0.0,02/01/5272 +6.18018,46.22003,4393,4,21,23,38,50,3.55,5.0,fr,28036,87,1163520,1,1,Active Shallow Crust,0.0,89.99303,0.0,04/21/4393 +6.18018,46.22003,4371,4,6,21,30,22,3.55,15.0,fr,28037,87,1163521,1,3,Active Shallow Crust,0.0,89.99303,0.0,04/06/4371 +6.18018,46.22003,2843,4,26,0,1,42,3.55,15.0,fr,28038,56,1163521,1,3,Active Shallow Crust,0.0,89.99303,0.0,04/26/2843 +6.18018,46.22003,7248,1,9,17,9,57,3.55,15.0,fr,28039,144,1163521,1,3,Active Shallow Crust,0.0,89.99303,0.0,01/09/7248 +6.18018,46.22003,3727,4,17,9,47,15,3.65,5.0,fr,28040,74,1163532,1,3,Active Shallow Crust,0.0,89.98756,0.0,04/17/3727 +6.18018,46.22003,9284,12,21,7,4,48,3.65,5.0,fr,28041,185,1163532,1,3,Active Shallow Crust,0.0,89.98756,0.0,12/21/9284 +6.18018,46.22003,3987,5,11,22,11,2,3.65,5.0,fr,28042,79,1163532,1,3,Active Shallow Crust,0.0,89.98756,0.0,05/11/3987 +6.18018,46.22003,855,9,29,23,17,14,3.65,5.0,fr,28043,17,1163538,1,1,Active Shallow Crust,0.0,89.98742,-90.0,09/29/0855 +6.18018,46.22003,1458,3,21,7,27,9,3.75,5.0,fr,28044,29,1163544,1,2,Active Shallow Crust,0.0,89.98891,0.0,03/21/1458 +6.18018,46.22003,6097,3,9,21,7,8,3.75,5.0,fr,28045,121,1163544,1,2,Active Shallow Crust,0.0,89.98891,0.0,03/09/6097 +6.18018,46.22003,4342,5,11,22,3,50,3.85,15.0,fr,28046,86,1163557,1,1,Active Shallow Crust,0.0,89.99012,0.0,05/11/4342 +6.18018,46.22003,8669,10,27,21,16,58,3.85,5.0,fr,28047,173,1163562,1,1,Active Shallow Crust,0.0,89.99001,-90.0,10/27/8669 +6.18018,46.22003,4555,6,4,10,28,37,3.95,15.0,fr,28048,91,1163575,1,1,Active Shallow Crust,0.0,89.9911,-90.0,06/04/4555 +6.18018,46.22003,6140,3,13,0,8,12,4.05,5.0,fr,28049,122,1163580,1,3,Active Shallow Crust,0.0,89.98823,0.0,03/13/6140 +6.18018,46.22003,1721,1,29,4,13,52,4.05,5.0,fr,28050,34,1163580,1,3,Active Shallow Crust,0.0,89.98823,0.0,01/29/1721 +6.18018,46.22003,6345,10,19,16,39,16,4.05,5.0,fr,28051,126,1163580,1,3,Active Shallow Crust,0.0,89.98823,0.0,10/19/6345 +6.18018,46.22003,8544,8,3,1,8,6,4.05,5.0,fr,28052,170,1163583,1,1,Active Shallow Crust,240.0054,58.00612,0.0,08/03/8544 +6.18018,46.22003,4461,12,22,20,37,26,4.05,15.0,fr,28053,89,1163587,1,1,Active Shallow Crust,0.0,89.98809,-90.0,12/22/4461 +6.18018,46.22003,5795,1,31,15,8,37,4.15,5.0,fr,28054,115,1163592,1,2,Active Shallow Crust,0.0,89.98951,0.0,01/31/5795 +6.18018,46.22003,6461,2,27,1,51,50,4.15,5.0,fr,28055,129,1163592,1,2,Active Shallow Crust,0.0,89.98951,0.0,02/27/6461 +6.18018,46.22003,5164,3,1,13,51,11,4.25,15.0,fr,28056,103,1163605,1,1,Active Shallow Crust,0.0,89.99065,0.0,03/01/5164 +6.18018,46.22003,7611,6,17,11,40,31,4.35,15.0,fr,28057,152,1163617,1,1,Active Shallow Crust,0.0,89.98889,0.0,06/17/7611 +6.18018,46.22003,6033,4,17,3,10,54,4.35,27.5,fr,28058,120,1163618,1,1,Active Shallow Crust,0.0,89.98889,0.0,04/17/6033 +6.18018,46.22003,9021,4,7,14,21,36,4.45,5.0,fr,28059,180,1163628,1,1,Active Shallow Crust,0.0,89.9901,0.0,04/07/9021 +6.18018,46.22003,2558,9,14,2,40,45,4.65,15.0,fr,28060,51,1163653,1,1,Active Shallow Crust,0.0,89.99017,0.0,09/14/2558 +6.18018,46.22003,9767,6,5,8,44,54,4.85,5.0,fr,28061,195,1163679,1,1,Active Shallow Crust,240.0169,58.0024,0.0,06/05/9767 +6.18018,46.22003,3996,12,30,9,58,32,5.25,5.0,fr,28062,79,1163724,1,1,Active Shallow Crust,0.0,89.99014,0.0,12/30/3996 +6.18018,46.22003,3676,2,14,4,26,13,5.35,27.5,fr,28063,73,1163738,1,1,Active Shallow Crust,0.0,89.99033,0.0,02/14/3676 +6.18018,46.22003,545,7,11,1,29,59,5.45,15.0,fr,28064,10,1163749,1,1,Active Shallow Crust,0.0,89.98982,0.0,07/11/0545 +-2.633,48.77988,3592,3,31,5,5,56,3.55,5.0,fr,28065,71,1164000,1,2,Active Shallow Crust,0.0,89.99004,0.0,03/31/3592 +-2.633,48.77988,7483,9,25,12,32,53,3.55,5.0,fr,28066,149,1164000,1,2,Active Shallow Crust,0.0,89.99004,0.0,09/25/7483 +-2.633,48.77988,9251,6,28,5,52,57,3.55,15.0,fr,28067,185,1164001,1,1,Active Shallow Crust,0.0,89.99004,0.0,06/28/9251 +-2.633,48.77988,6157,8,27,4,21,23,3.55,15.0,fr,28068,123,1164007,1,1,Active Shallow Crust,0.0,89.98991,-90.0,08/27/6157 +-2.633,48.77988,9661,1,30,13,25,43,3.65,5.0,fr,28069,193,1164012,1,1,Active Shallow Crust,0.0,89.99112,0.0,01/30/9661 +-2.633,48.77988,8596,2,3,18,5,47,3.75,15.0,fr,28070,171,1164025,1,1,Active Shallow Crust,0.0,89.98944,0.0,02/03/8596 +-2.633,48.77988,8607,6,6,23,32,9,3.75,15.0,fr,28071,172,1164034,1,1,Active Shallow Crust,128.8969,89.96729,0.0,06/06/8607 +-2.633,48.77988,3881,3,7,4,9,31,4.25,15.0,fr,28072,77,1164085,1,1,Active Shallow Crust,0.0,89.98961,0.0,03/07/3881 +-2.633,48.77988,6484,1,19,14,36,11,4.35,15.0,fr,28073,129,1164097,1,1,Active Shallow Crust,0.0,89.98942,0.0,01/19/6484 +-2.633,48.77988,1389,6,9,8,0,44,4.35,5.0,fr,28074,27,1164099,1,1,Active Shallow Crust,240.0091,57.99606,0.0,06/09/1389 +-2.633,48.77988,2423,5,2,15,43,16,4.75,27.5,fr,28075,48,1164146,1,1,Active Shallow Crust,0.0,89.98998,0.0,05/02/2423 +-2.633,48.77988,6470,9,28,19,14,28,4.75,5.0,fr,28076,129,1164147,1,1,Active Shallow Crust,240.0084,58.00452,0.0,09/28/6470 +1.36567,44.91446,3028,6,12,11,22,1,3.65,5.0,fr,28077,60,1164492,1,1,Active Shallow Crust,0.0,89.99046,0.0,06/12/3028 +1.36567,44.91446,8769,5,7,19,11,34,3.85,5.0,fr,28078,175,1164516,1,1,Active Shallow Crust,0.0,89.98989,0.0,05/07/8769 +1.36567,44.91446,9025,1,10,13,17,48,4.05,5.0,fr,28079,180,1164540,1,1,Active Shallow Crust,0.0,89.98996,0.0,01/10/9025 +1.36567,44.91446,3795,1,20,17,46,34,4.15,5.0,fr,28080,75,1164552,1,1,Active Shallow Crust,0.0,89.99016,0.0,01/20/3795 +1.36567,44.91446,7111,11,15,18,48,57,4.15,5.0,fr,28081,142,1164555,1,1,Active Shallow Crust,240.0081,57.99729,0.0,11/15/7111 +1.36567,44.91446,2649,1,25,22,15,12,4.45,15.0,fr,28082,52,1164592,1,1,Active Shallow Crust,240.0049,57.99469,0.0,01/25/2649 +1.36567,44.91446,6738,7,23,21,26,16,5.25,15.0,fr,28083,134,1164688,1,1,Active Shallow Crust,240.0245,58.00008,0.0,07/23/6738 +3.46187,44.93132,9115,6,24,22,55,26,3.55,15.0,fr,28084,182,1164961,1,2,Active Shallow Crust,0.0,89.98929,0.0,06/24/9115 +3.46187,44.93132,2739,5,27,6,47,57,3.55,15.0,fr,28085,54,1164961,1,2,Active Shallow Crust,0.0,89.98929,0.0,05/27/2739 +3.46187,44.93132,4895,4,26,18,27,48,3.65,5.0,fr,28086,97,1164972,1,2,Active Shallow Crust,0.0,89.99046,0.0,04/26/4895 +3.46187,44.93132,5296,11,19,5,8,7,3.65,5.0,fr,28087,105,1164972,1,2,Active Shallow Crust,0.0,89.99046,0.0,11/19/5296 +3.46187,44.93132,1426,11,6,17,19,42,3.65,27.5,fr,28088,28,1164974,1,1,Active Shallow Crust,0.0,89.99046,0.0,11/06/1426 +3.46187,44.93132,3908,8,20,2,32,17,3.65,5.0,fr,28089,78,1164981,1,1,Active Shallow Crust,128.9006,89.96349,0.0,08/20/3908 +3.46187,44.93132,5535,11,13,21,56,0,3.75,5.0,fr,28090,110,1164984,1,2,Active Shallow Crust,0.0,89.98866,0.0,11/13/5535 +3.46187,44.93132,1512,8,20,10,25,36,3.75,5.0,fr,28091,30,1164984,1,2,Active Shallow Crust,0.0,89.98866,0.0,08/20/1512 +3.46187,44.93132,4044,5,12,16,28,22,3.75,5.0,fr,28092,80,1164987,1,1,Active Shallow Crust,240.0082,58.01717,0.0,05/12/4044 +3.46187,44.93132,7736,4,18,23,28,9,3.85,5.0,fr,28093,154,1164996,1,1,Active Shallow Crust,0.0,89.98989,0.0,04/18/7736 +3.46187,44.93132,9093,2,16,3,0,25,3.85,15.0,fr,28094,181,1164997,1,1,Active Shallow Crust,0.0,89.98989,0.0,02/16/9093 +3.46187,44.93132,8371,7,11,20,16,15,3.85,15.0,fr,28095,167,1165006,1,1,Active Shallow Crust,128.8956,89.99368,0.0,07/11/8371 +3.46187,44.93132,3713,5,26,14,43,7,4.05,5.0,fr,28096,74,1165023,1,1,Active Shallow Crust,240.0056,58.00563,0.0,05/26/3713 +3.46187,44.93132,6334,3,25,4,16,31,4.25,15.0,fr,28097,126,1165045,1,1,Active Shallow Crust,0.0,89.99043,0.0,03/25/6334 +3.46187,44.93132,1078,9,11,21,31,47,4.35,5.0,fr,28098,21,1165065,1,1,Active Shallow Crust,128.8983,89.98272,0.0,09/11/1078 +3.46187,44.93132,592,9,1,10,16,0,4.85,5.0,fr,28099,11,1165116,1,1,Active Shallow Crust,0.0,89.98961,0.0,09/01/0592 +3.46187,44.93132,7471,11,1,16,36,47,5.45,15.0,fr,28100,149,1165192,1,1,Active Shallow Crust,240.0276,57.99819,0.0,11/01/7471 +3.82176,40.44104,6566,11,7,7,11,21,3.55,5.0,fr,28101,131,1165449,1,1,Active Shallow Crust,128.8972,89.99232,0.0,11/07/6566 +5.72372,48.34464,5939,10,31,12,10,14,3.55,5.0,fr,28102,118,1165926,1,1,Active Shallow Crust,0.0,89.99322,-90.0,10/31/5939 +5.72372,48.34464,5915,11,26,15,27,28,3.65,5.0,fr,28103,118,1165935,1,1,Active Shallow Crust,240.0012,58.01273,0.0,11/26/5915 +5.72372,48.34464,2471,8,7,4,20,56,3.95,5.0,fr,28104,49,1165968,1,2,Active Shallow Crust,0.0,89.99154,0.0,08/07/2471 +5.72372,48.34464,219,1,4,18,1,37,3.95,5.0,fr,28105,4,1165968,1,2,Active Shallow Crust,0.0,89.99154,0.0,01/04/0219 +5.72372,48.34464,7277,12,14,23,56,59,4.05,15.0,fr,28106,145,1165981,1,1,Active Shallow Crust,0.0,89.98869,0.0,12/14/7277 +5.72372,48.34464,2589,3,24,18,19,27,4.25,5.0,fr,28107,51,1166007,1,1,Active Shallow Crust,240.0081,57.99415,0.0,03/24/2589 +5.72372,48.34464,4653,2,5,2,59,3,4.95,5.0,fr,28108,93,1166088,1,1,Active Shallow Crust,0.0,89.99064,0.0,02/05/4653 +0.71044,51.61998,3102,4,22,7,19,59,3.55,5.0,fr,28109,62,1166400,1,2,Active Shallow Crust,0.0,89.98982,0.0,04/22/3102 +0.71044,51.61998,8092,2,12,13,35,24,3.55,5.0,fr,28110,161,1166400,1,2,Active Shallow Crust,0.0,89.98982,0.0,02/12/8092 +0.71044,51.61998,4758,12,4,7,48,26,3.55,27.5,fr,28111,95,1166402,1,1,Active Shallow Crust,0.0,89.98982,0.0,12/04/4758 +0.71044,51.61998,1802,11,3,18,47,18,4.35,5.0,fr,28112,36,1166496,1,1,Active Shallow Crust,0.0,89.99003,0.0,11/03/1802 +5.05912,47.61973,7418,8,18,14,32,53,3.55,5.0,fr,28113,148,1166880,1,1,Active Shallow Crust,0.0,89.9932,0.0,08/18/7418 +5.05912,47.61973,5465,1,24,19,16,5,3.65,5.0,fr,28114,109,1166895,1,1,Active Shallow Crust,240.0006,58.01416,0.0,01/24/5465 +5.05912,47.61973,7613,4,27,12,52,20,3.75,27.5,fr,28115,152,1166906,1,1,Active Shallow Crust,0.0,89.9892,0.0,04/27/7613 +5.05912,47.61973,6531,5,5,21,16,24,3.85,5.0,fr,28116,130,1166919,1,1,Active Shallow Crust,240.0109,57.99844,0.0,05/05/6531 +5.05912,47.61973,6532,10,26,12,18,20,3.85,27.5,fr,28117,130,1166924,1,1,Active Shallow Crust,0.0,89.99026,-90.0,10/26/6532 +5.05912,47.61973,8343,4,6,10,4,57,4.15,5.0,fr,28118,166,1166952,1,1,Active Shallow Crust,0.0,89.98978,0.0,04/06/8343 +5.05912,47.61973,2904,8,14,0,13,8,4.55,5.0,fr,28119,58,1167009,1,1,Active Shallow Crust,128.8939,89.98571,0.0,08/14/2904 +5.05912,47.61973,6697,2,6,8,13,33,5.15,5.0,fr,28120,133,1167072,1,1,Active Shallow Crust,0.0,89.9903,0.0,02/06/6697 +-1.07305,41.54347,2800,9,20,17,38,36,3.55,5.0,fr,28121,55,1167360,1,1,Active Shallow Crust,0.0,89.99056,0.0,09/20/2800 +-3.22516,49.2683,9884,2,25,0,15,31,3.75,5.0,fr,28122,197,1167864,1,1,Active Shallow Crust,0.0,89.98955,0.0,02/25/9884 +-3.22516,49.2683,2454,2,23,4,48,34,3.75,5.0,fr,28123,49,1167873,1,1,Active Shallow Crust,128.8963,89.9673,0.0,02/23/2454 +-3.22516,49.2683,7379,2,12,22,3,53,4.45,15.0,fr,28124,147,1167949,1,1,Active Shallow Crust,0.0,89.98949,0.0,02/12/7379 +9.28474,50.132,4813,12,28,14,9,56,4.05,5.0,fr,28125,96,1168380,1,2,Active Shallow Crust,0.0,89.99273,0.0,12/28/4813 +9.28474,50.132,6327,10,26,11,50,17,4.05,5.0,fr,28126,126,1168380,1,2,Active Shallow Crust,0.0,89.99273,0.0,10/26/6327 +3.66903,42.57799,4961,8,12,23,23,25,3.55,5.0,fr,28127,99,1168800,1,1,Active Shallow Crust,0.0,89.98886,0.0,08/12/4961 +3.66903,42.57799,8030,3,29,4,29,46,3.85,15.0,fr,28128,160,1168837,1,1,Active Shallow Crust,0.0,89.98949,0.0,03/29/8030 +3.66903,42.57799,8441,10,8,23,30,59,4.05,15.0,fr,28129,168,1168861,1,1,Active Shallow Crust,0.0,89.98956,0.0,10/08/8441 +8.21216,51.01202,9670,11,23,18,45,12,3.65,5.0,fr,28130,193,1169292,1,1,Active Shallow Crust,0.0,89.98869,0.0,11/23/9670 +0.88327,48.35648,8244,10,20,6,23,4,3.85,15.0,fr,28131,164,1169797,1,1,Active Shallow Crust,0.0,89.98992,0.0,10/20/8244 +0.88327,48.35648,1421,8,25,7,26,32,3.95,5.0,fr,28132,28,1169808,1,1,Active Shallow Crust,0.0,89.98996,0.0,08/25/1421 +0.88327,48.35648,2708,7,2,15,31,18,3.95,27.5,fr,28133,54,1169810,1,1,Active Shallow Crust,0.0,89.98996,0.0,07/02/2708 +7.76747,49.22272,7350,10,30,20,7,10,3.55,5.0,fr,28134,146,1170249,1,1,Active Shallow Crust,128.897,89.99342,0.0,10/30/7350 +7.76747,49.22272,7684,4,5,20,28,49,3.75,5.0,fr,28135,153,1170264,1,2,Active Shallow Crust,0.0,89.98954,0.0,04/05/7684 +7.76747,49.22272,1524,7,30,22,15,6,3.75,5.0,fr,28136,30,1170264,1,2,Active Shallow Crust,0.0,89.98954,0.0,07/30/1524 +7.76747,49.22272,5487,11,18,17,4,22,3.75,5.0,fr,28137,109,1170273,1,2,Active Shallow Crust,128.8959,89.96754,0.0,11/18/5487 +7.76747,49.22272,447,8,24,2,19,4,3.75,5.0,fr,28138,8,1170273,1,2,Active Shallow Crust,128.8959,89.96754,0.0,08/24/0447 +7.76747,49.22272,3872,6,25,8,14,24,3.95,5.0,fr,28139,77,1170291,1,1,Active Shallow Crust,240.0202,58.00526,0.0,06/25/3872 +7.76747,49.22272,4763,6,3,13,14,3,4.15,5.0,fr,28140,95,1170312,1,1,Active Shallow Crust,0.0,89.9901,0.0,06/03/4763 +7.76747,49.22272,6289,3,16,22,58,57,4.25,5.0,fr,28141,125,1170324,1,1,Active Shallow Crust,0.0,89.99117,0.0,03/16/6289 +7.76747,49.22272,6532,5,5,5,19,38,4.25,5.0,fr,28142,130,1170327,1,1,Active Shallow Crust,240.0083,57.99416,0.0,05/05/6532 +7.76747,49.22272,3011,10,9,0,8,27,4.35,15.0,fr,28143,60,1170337,1,1,Active Shallow Crust,0.0,89.98951,0.0,10/09/3011 +7.76747,49.22272,1141,2,6,10,27,22,4.65,5.0,fr,28144,22,1170381,1,1,Active Shallow Crust,128.8904,89.98691,0.0,02/06/1141 +7.76747,49.22272,4757,12,19,22,38,39,5.25,5.0,fr,28145,95,1170444,1,1,Active Shallow Crust,0.0,89.98976,0.0,12/19/4757 +7.76747,49.22272,5272,5,22,11,49,20,5.45,5.0,fr,28146,105,1170468,1,1,Active Shallow Crust,0.0,89.98965,0.0,05/22/5272 +2.36145,53.4506,9950,5,25,20,43,25,3.55,5.0,fr,28147,198,1170729,1,1,Active Shallow Crust,128.8954,89.994,0.0,05/25/9950 +-4.02869,48.51952,4955,7,27,21,6,5,3.55,5.0,fr,28148,99,1171200,1,3,Active Shallow Crust,0.0,89.99332,0.0,07/27/4955 +-4.02869,48.51952,6041,4,27,17,22,1,3.55,5.0,fr,28149,120,1171200,1,3,Active Shallow Crust,0.0,89.99332,0.0,04/27/6041 +-4.02869,48.51952,4252,11,16,23,23,30,3.55,5.0,fr,28150,85,1171200,1,3,Active Shallow Crust,0.0,89.99332,0.0,11/16/4252 +-4.02869,48.51952,1649,6,26,5,15,33,3.55,5.0,fr,28151,32,1171203,1,1,Active Shallow Crust,240.0117,57.99924,0.0,06/26/1649 +-4.02869,48.51952,1667,9,7,14,55,37,3.65,5.0,fr,28152,33,1171215,1,1,Active Shallow Crust,240.0008,58.0134,0.0,09/07/1667 +-4.02869,48.51952,6251,4,4,1,21,57,3.75,15.0,fr,28153,125,1171225,1,1,Active Shallow Crust,0.0,89.98939,0.0,04/04/6251 +-4.02869,48.51952,4077,11,16,7,58,20,3.85,5.0,fr,28154,81,1171236,1,1,Active Shallow Crust,0.0,89.99054,0.0,11/16/4077 +-4.02869,48.51952,3630,6,20,16,22,50,3.85,15.0,fr,28155,72,1171237,1,1,Active Shallow Crust,0.0,89.99054,0.0,06/20/3630 +-4.02869,48.51952,5115,12,17,11,18,43,3.95,5.0,fr,28156,102,1171251,1,1,Active Shallow Crust,240.0204,58.00528,0.0,12/17/5115 +-4.02869,48.51952,452,9,19,1,11,33,3.95,5.0,fr,28157,9,1171254,1,1,Active Shallow Crust,0.0,89.99147,-90.0,09/19/0452 +-4.02869,48.51952,5217,10,28,15,50,26,4.05,15.0,fr,28158,104,1171261,1,1,Active Shallow Crust,0.0,89.98873,0.0,10/28/5217 +-4.02869,48.51952,5646,12,25,4,25,55,4.05,15.0,fr,28159,112,1171264,1,1,Active Shallow Crust,240.0063,58.00607,0.0,12/25/5646 +-4.02869,48.51952,2274,1,17,5,48,33,4.15,15.0,fr,28160,45,1171273,1,1,Active Shallow Crust,0.0,89.98996,0.0,01/17/2274 +-4.02869,48.51952,6034,8,13,20,55,13,4.15,27.5,fr,28161,120,1171274,1,1,Active Shallow Crust,0.0,89.98996,0.0,08/13/6034 +-4.02869,48.51952,1211,1,2,17,32,51,4.35,15.0,fr,28162,24,1171297,1,1,Active Shallow Crust,0.0,89.98936,0.0,01/02/1211 +-4.02869,48.51952,665,4,2,12,58,17,4.35,5.0,fr,28163,13,1171299,1,1,Active Shallow Crust,240.0085,57.99628,0.0,04/02/0665 +-4.02869,48.51952,5517,3,24,2,58,51,4.45,15.0,fr,28164,110,1171309,1,1,Active Shallow Crust,0.0,89.99052,0.0,03/24/5517 +-4.02869,48.51952,558,4,22,3,40,20,4.55,5.0,fr,28165,11,1171320,1,1,Active Shallow Crust,0.0,89.98944,0.0,04/22/0558 +-4.02869,48.51952,4887,7,23,7,38,45,5.25,5.0,fr,28166,97,1171407,1,1,Active Shallow Crust,240.0269,58.00049,0.0,07/23/4887 +-4.02869,48.51952,4149,9,27,0,1,24,5.45,5.0,fr,28167,82,1171437,1,1,Active Shallow Crust,128.8772,89.98914,0.0,09/27/4149 +-4.02869,48.51952,8121,9,4,21,51,8,5.55,5.0,fr,28168,162,1171443,1,1,Active Shallow Crust,240.0346,57.99994,0.0,09/04/8121 +-4.02869,48.51952,329,10,16,10,56,45,5.75,15.0,fr,28169,6,1171465,1,1,Active Shallow Crust,0.0,89.98991,0.0,10/16/0329 +-4.02869,48.51952,8291,1,27,6,56,33,5.95,5.0,fr,28170,165,1171497,1,1,Active Shallow Crust,128.8621,89.99009,0.0,01/27/8291 +1.71912,40.9324,1010,10,4,18,16,8,3.55,27.5,fr,28171,20,1171682,1,2,Active Shallow Crust,0.0,89.99048,0.0,10/04/1010 +1.71912,40.9324,4984,1,20,2,58,53,3.55,27.5,fr,28172,99,1171682,1,2,Active Shallow Crust,0.0,89.99048,0.0,01/20/4984 +1.71912,40.9324,1227,9,12,9,10,20,3.55,15.0,fr,28173,24,1171687,1,1,Active Shallow Crust,0.0,89.99036,-90.0,09/12/1227 +1.71912,40.9324,6353,4,22,3,4,42,3.65,5.0,fr,28174,127,1171692,1,3,Active Shallow Crust,0.0,89.98981,0.0,04/22/6353 +1.71912,40.9324,2333,12,28,0,40,15,3.65,5.0,fr,28175,46,1171692,1,3,Active Shallow Crust,0.0,89.98981,0.0,12/28/2333 +1.71912,40.9324,3816,3,28,6,7,17,3.65,5.0,fr,28176,76,1171692,1,3,Active Shallow Crust,0.0,89.98981,0.0,03/28/3816 +1.71912,40.9324,9438,9,29,9,58,4,3.75,5.0,fr,28177,188,1171704,1,2,Active Shallow Crust,0.0,89.98941,0.0,09/29/9438 +1.71912,40.9324,7782,5,29,2,40,45,3.75,5.0,fr,28178,155,1171704,1,2,Active Shallow Crust,0.0,89.98941,0.0,05/29/7782 +1.71912,40.9324,8244,12,20,20,19,25,3.85,15.0,fr,28179,164,1171717,1,1,Active Shallow Crust,0.0,89.99056,0.0,12/20/8244 +1.71912,40.9324,803,6,14,10,26,30,3.95,5.0,fr,28180,16,1171728,1,2,Active Shallow Crust,0.0,89.99039,0.0,06/14/0803 +1.71912,40.9324,3303,1,1,13,56,42,3.95,5.0,fr,28181,66,1171728,1,2,Active Shallow Crust,0.0,89.99039,0.0,01/01/3303 +1.71912,40.9324,3591,1,17,6,26,4,4.25,5.0,fr,28182,71,1171764,1,1,Active Shallow Crust,0.0,89.98979,0.0,01/17/3591 +1.71912,40.9324,1806,7,24,13,54,47,4.35,5.0,fr,28183,36,1171776,1,1,Active Shallow Crust,0.0,89.99014,0.0,07/24/1806 +1.71912,40.9324,3683,10,18,20,29,0,4.45,5.0,fr,28184,73,1171797,1,1,Active Shallow Crust,128.8931,89.99392,0.0,10/18/3683 +1.71912,40.9324,9352,8,12,5,33,14,4.55,15.0,fr,28185,187,1171807,1,1,Active Shallow Crust,0.0,89.99025,-90.0,08/12/9352 +1.71912,40.9324,4446,11,25,3,41,28,4.75,15.0,fr,28186,88,1171828,1,1,Active Shallow Crust,240.0057,58.00409,0.0,11/25/4446 +3.83346,45.24838,4331,8,10,0,23,24,3.55,5.0,fr,28187,86,1172160,1,3,Active Shallow Crust,0.0,89.98935,0.0,08/10/4331 +3.83346,45.24838,1768,7,24,6,11,37,3.55,5.0,fr,28188,35,1172160,1,3,Active Shallow Crust,0.0,89.98935,0.0,07/24/1768 +3.83346,45.24838,5410,11,15,17,28,44,3.55,5.0,fr,28189,108,1172160,1,3,Active Shallow Crust,0.0,89.98935,0.0,11/15/5410 +3.83346,45.24838,3119,9,17,22,59,30,3.55,5.0,fr,28190,62,1172166,1,1,Active Shallow Crust,0.0,89.98923,-90.0,09/17/3119 +3.83346,45.24838,9681,1,26,0,55,24,3.55,5.0,fr,28191,193,1172169,1,1,Active Shallow Crust,128.8957,89.99467,0.0,01/26/9681 +3.83346,45.24838,5436,2,11,8,45,3,3.65,15.0,fr,28192,108,1172173,1,1,Active Shallow Crust,0.0,89.99051,0.0,02/11/5436 +3.83346,45.24838,8571,3,24,3,8,9,3.75,5.0,fr,28193,171,1172184,1,2,Active Shallow Crust,0.0,89.98872,0.0,03/24/8571 +3.83346,45.24838,5774,12,25,2,57,22,3.75,5.0,fr,28194,115,1172184,1,2,Active Shallow Crust,0.0,89.98872,0.0,12/25/5774 +3.83346,45.24838,8255,5,20,17,13,58,3.75,15.0,fr,28195,165,1172185,1,1,Active Shallow Crust,0.0,89.98872,0.0,05/20/8255 +3.83346,45.24838,6061,4,7,14,18,38,4.25,5.0,fr,28196,121,1172244,1,1,Active Shallow Crust,0.0,89.99049,0.0,04/07/6061 +3.83346,45.24838,9376,4,20,20,40,37,4.35,5.0,fr,28197,187,1172256,1,1,Active Shallow Crust,0.0,89.9901,0.0,04/20/9376 +3.83346,45.24838,5610,8,29,2,45,0,4.35,15.0,fr,28198,112,1172257,1,1,Active Shallow Crust,0.0,89.9901,0.0,08/29/5610 +3.83346,45.24838,9689,8,19,21,53,24,4.55,5.0,fr,28199,193,1172280,1,1,Active Shallow Crust,0.0,89.9899,0.0,08/19/9689 +3.83346,45.24838,382,11,11,19,56,14,4.55,15.0,fr,28200,7,1172281,1,1,Active Shallow Crust,0.0,89.9899,0.0,11/11/0382 +3.83346,45.24838,7762,7,1,19,29,3,4.55,27.5,fr,28201,155,1172288,1,1,Active Shallow Crust,0.0,89.98978,-90.0,07/01/7762 +3.14185,44.35737,2647,1,18,9,10,0,3.55,5.0,fr,28202,52,1172640,1,1,Active Shallow Crust,0.0,89.98918,0.0,01/18/2647 +3.14185,44.35737,1754,10,23,20,21,45,3.55,27.5,fr,28203,35,1172651,1,1,Active Shallow Crust,128.8968,89.99279,0.0,10/23/1754 +3.14185,44.35737,3694,4,22,5,43,13,3.65,5.0,fr,28204,73,1172652,1,2,Active Shallow Crust,0.0,89.99036,0.0,04/22/3694 +3.14185,44.35737,6234,1,15,9,31,15,3.65,5.0,fr,28205,124,1172652,1,2,Active Shallow Crust,0.0,89.99036,0.0,01/15/6234 +3.14185,44.35737,349,11,13,5,35,10,3.75,27.5,fr,28206,6,1172666,1,1,Active Shallow Crust,0.0,89.99141,0.0,11/13/0349 +3.14185,44.35737,5065,5,24,22,36,5,3.85,15.0,fr,28207,101,1172677,1,1,Active Shallow Crust,0.0,89.98979,0.0,05/24/5065 +3.14185,44.35737,9457,3,27,6,4,20,3.95,5.0,fr,28208,189,1172688,1,1,Active Shallow Crust,0.0,89.9909,0.0,03/27/9457 +3.14185,44.35737,8641,3,16,11,18,31,4.45,5.0,fr,28209,172,1172748,1,1,Active Shallow Crust,0.0,89.98977,0.0,03/16/8641 +3.14185,44.35737,2700,4,19,19,45,45,4.55,5.0,fr,28210,53,1172763,1,1,Active Shallow Crust,240.0087,57.99728,0.0,04/19/2700 +3.14185,44.35737,8447,2,6,10,36,38,4.55,27.5,fr,28211,168,1172765,1,1,Active Shallow Crust,240.0087,57.99726,0.0,02/06/8447 +3.14185,44.35737,5069,7,28,5,39,45,5.55,5.0,fr,28212,101,1172880,1,1,Active Shallow Crust,0.0,89.9899,0.0,07/28/5069 +7.28761,45.43854,2606,12,22,19,19,27,3.65,5.0,fr,28213,52,1173132,1,1,Active Shallow Crust,0.0,89.98739,0.0,12/22/2606 +7.28761,45.43854,5591,4,28,17,22,28,3.85,5.0,fr,28214,111,1173156,1,2,Active Shallow Crust,0.0,89.98998,0.0,04/28/5591 +7.28761,45.43854,1384,5,16,15,14,49,3.85,5.0,fr,28215,27,1173156,1,2,Active Shallow Crust,0.0,89.98998,0.0,05/16/1384 +7.28761,45.43854,1834,12,18,15,32,21,3.85,15.0,fr,28216,36,1173157,1,1,Active Shallow Crust,0.0,89.98998,0.0,12/18/1834 +7.28761,45.43854,9373,2,1,23,2,35,3.95,5.0,fr,28217,187,1173168,1,1,Active Shallow Crust,0.0,89.99107,0.0,02/01/9373 +7.28761,45.43854,5113,6,18,0,43,32,4.05,5.0,fr,28218,102,1173189,1,2,Active Shallow Crust,128.891,89.99403,0.0,06/18/5113 +7.28761,45.43854,5372,9,9,14,19,14,4.05,5.0,fr,28219,107,1173189,1,2,Active Shallow Crust,128.891,89.99403,0.0,09/09/5372 +7.28761,45.43854,429,8,13,20,4,4,4.45,27.5,fr,28220,8,1173230,1,1,Active Shallow Crust,0.0,89.98996,0.0,08/13/0429 +7.46387,44.1368,5417,8,16,2,35,12,3.55,5.0,fr,28221,108,1173600,1,5,Active Shallow Crust,0.0,89.99276,0.0,08/16/5417 +7.46387,44.1368,7734,2,22,21,21,1,3.55,5.0,fr,28222,154,1173600,1,5,Active Shallow Crust,0.0,89.99276,0.0,02/22/7734 +7.46387,44.1368,712,4,19,7,16,42,3.55,5.0,fr,28223,14,1173600,1,5,Active Shallow Crust,0.0,89.99276,0.0,04/19/0712 +7.46387,44.1368,1481,8,31,0,46,5,3.55,5.0,fr,28224,29,1173600,1,5,Active Shallow Crust,0.0,89.99276,0.0,08/31/1481 +7.46387,44.1368,7000,11,26,19,38,47,3.55,5.0,fr,28225,139,1173600,1,5,Active Shallow Crust,0.0,89.99276,0.0,11/26/7000 +7.46387,44.1368,1106,1,23,3,16,22,3.55,15.0,fr,28226,22,1173601,1,3,Active Shallow Crust,0.0,89.99276,0.0,01/23/1106 +7.46387,44.1368,8552,8,1,21,56,14,3.55,15.0,fr,28227,171,1173601,1,3,Active Shallow Crust,0.0,89.99276,0.0,08/01/8552 +7.46387,44.1368,8941,3,30,16,5,5,3.55,15.0,fr,28228,178,1173601,1,3,Active Shallow Crust,0.0,89.99276,0.0,03/30/8941 +7.46387,44.1368,53,8,29,14,49,21,3.55,15.0,fr,28229,1,1173607,1,1,Active Shallow Crust,0.0,89.99268,-90.0,08/29/0053 +7.46387,44.1368,8245,6,8,14,15,12,3.55,5.0,fr,28230,164,1173609,1,2,Active Shallow Crust,128.8973,89.99277,0.0,06/08/8245 +7.46387,44.1368,531,7,10,21,1,50,3.55,5.0,fr,28231,10,1173609,1,2,Active Shallow Crust,128.8973,89.99277,0.0,07/10/0531 +7.46387,44.1368,3055,2,7,8,14,12,3.65,5.0,fr,28232,61,1173612,1,2,Active Shallow Crust,0.0,89.9871,0.0,02/07/3055 +7.46387,44.1368,7023,1,3,0,5,49,3.65,5.0,fr,28233,140,1173612,1,2,Active Shallow Crust,0.0,89.9871,0.0,01/03/7023 +7.46387,44.1368,137,6,13,10,40,36,3.65,15.0,fr,28234,2,1173613,1,1,Active Shallow Crust,0.0,89.9871,0.0,06/13/0137 +7.46387,44.1368,6606,12,20,18,1,50,3.65,5.0,fr,28235,132,1173615,1,2,Active Shallow Crust,240.0001,58.01326,0.0,12/20/6606 +7.46387,44.1368,5563,3,11,20,51,35,3.65,5.0,fr,28236,111,1173615,1,2,Active Shallow Crust,240.0001,58.01326,0.0,03/11/5563 +7.46387,44.1368,703,4,23,9,54,8,3.65,15.0,fr,28237,14,1173622,1,1,Active Shallow Crust,128.9007,89.96348,0.0,04/23/0703 +7.46387,44.1368,7908,9,20,1,2,4,3.75,5.0,fr,28238,158,1173624,1,2,Active Shallow Crust,0.0,89.9885,0.0,09/20/7908 +7.46387,44.1368,7015,3,5,10,4,3,3.75,5.0,fr,28239,140,1173624,1,2,Active Shallow Crust,0.0,89.9885,0.0,03/05/7015 +7.46387,44.1368,4820,2,13,18,25,9,3.75,5.0,fr,28240,96,1173633,1,1,Active Shallow Crust,128.8972,89.96745,0.0,02/13/4820 +7.46387,44.1368,2922,2,12,17,21,30,3.75,15.0,fr,28241,58,1173634,1,1,Active Shallow Crust,128.8972,89.96745,0.0,02/12/2922 +7.46387,44.1368,7277,2,16,3,36,7,3.85,5.0,fr,28242,145,1173636,1,1,Active Shallow Crust,0.0,89.98975,0.0,02/16/7277 +7.46387,44.1368,1451,6,17,7,9,23,3.85,15.0,fr,28243,29,1173637,1,1,Active Shallow Crust,0.0,89.98975,0.0,06/17/1451 +7.46387,44.1368,8259,2,14,14,23,25,3.85,5.0,fr,28244,165,1173639,1,1,Active Shallow Crust,240.0114,57.99781,0.0,02/14/8259 +7.46387,44.1368,8035,11,21,8,37,10,3.85,5.0,fr,28245,160,1173642,1,1,Active Shallow Crust,0.0,89.98963,-90.0,11/21/8035 +7.46387,44.1368,7026,7,26,7,52,5,3.95,5.0,fr,28246,140,1173648,1,1,Active Shallow Crust,0.0,89.99087,0.0,07/26/7026 +7.46387,44.1368,4739,7,30,9,14,44,3.95,15.0,fr,28247,94,1173652,1,1,Active Shallow Crust,240.0197,58.00501,0.0,07/30/4739 +7.46387,44.1368,1888,7,10,9,37,32,4.05,5.0,fr,28248,37,1173660,1,3,Active Shallow Crust,0.0,89.99186,0.0,07/10/1888 +7.46387,44.1368,8808,2,13,0,43,26,4.05,5.0,fr,28249,176,1173660,1,3,Active Shallow Crust,0.0,89.99186,0.0,02/13/8808 +7.46387,44.1368,9058,7,30,4,12,44,4.05,5.0,fr,28250,181,1173660,1,3,Active Shallow Crust,0.0,89.99186,0.0,07/30/9058 +7.46387,44.1368,5049,10,12,15,31,13,4.05,15.0,fr,28251,100,1173661,1,1,Active Shallow Crust,0.0,89.99186,0.0,10/12/5049 +7.46387,44.1368,9885,8,4,13,41,23,4.05,27.5,fr,28252,197,1173662,1,1,Active Shallow Crust,0.0,89.99186,0.0,08/04/9885 +7.46387,44.1368,1214,8,19,1,4,33,4.15,5.0,fr,28253,24,1173672,1,1,Active Shallow Crust,0.0,89.98912,0.0,08/19/1214 +7.46387,44.1368,6668,2,12,8,43,22,4.35,5.0,fr,28254,133,1173699,1,1,Active Shallow Crust,240.0077,57.99564,0.0,02/12/6668 +7.46387,44.1368,8303,5,25,1,12,26,4.35,5.0,fr,28255,166,1173705,1,1,Active Shallow Crust,128.8982,89.9824,0.0,05/25/8303 +7.46387,44.1368,5615,6,1,15,10,7,4.45,5.0,fr,28256,112,1173708,1,1,Active Shallow Crust,0.0,89.98973,0.0,06/01/5615 +7.46387,44.1368,9760,9,10,16,33,13,4.55,5.0,fr,28257,195,1173720,1,1,Active Shallow Crust,0.0,89.99084,0.0,09/10/9760 +7.46387,44.1368,7203,6,21,2,33,7,4.55,5.0,fr,28258,144,1173723,1,1,Active Shallow Crust,240.0088,57.99711,0.0,06/21/7203 +7.46387,44.1368,7810,10,26,5,51,35,4.75,5.0,fr,28259,156,1173744,1,2,Active Shallow Crust,0.0,89.98909,0.0,10/26/7810 +7.46387,44.1368,702,6,29,2,54,39,4.75,5.0,fr,28260,14,1173744,1,2,Active Shallow Crust,0.0,89.98909,0.0,06/29/0702 +7.46387,44.1368,1761,10,2,5,49,20,4.75,15.0,fr,28261,35,1173745,1,1,Active Shallow Crust,0.0,89.98909,0.0,10/02/1761 +7.46387,44.1368,8288,10,5,18,8,28,5.05,5.0,fr,28262,165,1173780,1,1,Active Shallow Crust,0.0,89.9897,0.0,10/05/8288 +7.46387,44.1368,8373,6,21,14,26,21,5.05,15.0,fr,28263,167,1173787,1,1,Active Shallow Crust,0.0,89.98959,-90.0,06/21/8373 +-2.03542,49.89631,1649,9,26,17,41,39,3.85,15.0,fr,28264,32,1174123,1,1,Active Shallow Crust,0.0,89.99069,-90.0,09/26/1649 +-2.03542,49.89631,276,10,27,1,29,12,3.95,27.5,fr,28265,5,1174130,1,1,Active Shallow Crust,0.0,89.98975,0.0,10/27/0276 +7.46499,49.69021,6856,7,17,19,34,58,3.75,5.0,fr,28266,137,1174584,1,1,Active Shallow Crust,0.0,89.98964,0.0,07/17/6856 +7.46499,49.69021,9173,1,4,18,2,58,3.75,5.0,fr,28267,183,1174593,1,1,Active Shallow Crust,128.8965,89.96754,0.0,01/04/9173 +7.46499,49.69021,6896,1,7,23,43,23,4.05,5.0,fr,28268,137,1174629,1,1,Active Shallow Crust,128.8893,89.9945,0.0,01/07/6896 +7.46499,49.69021,5982,4,15,16,23,20,4.15,27.5,fr,28269,119,1174634,1,1,Active Shallow Crust,0.0,89.99019,0.0,04/15/5982 +7.46499,49.69021,2268,12,1,5,56,44,4.25,15.0,fr,28270,45,1174645,1,1,Active Shallow Crust,0.0,89.99126,0.0,12/01/2268 +7.46499,49.69021,1723,2,28,5,39,9,4.35,5.0,fr,28271,34,1174656,1,1,Active Shallow Crust,0.0,89.98961,0.0,02/28/1723 +7.46499,49.69021,8934,3,29,4,28,8,4.85,5.0,fr,28272,178,1174716,1,1,Active Shallow Crust,0.0,89.98978,0.0,03/29/8934 +7.46499,49.69021,7249,12,14,11,11,37,4.95,5.0,fr,28273,144,1174737,1,1,Active Shallow Crust,128.8885,89.99004,0.0,12/14/7249 +2.85587,51.55542,2788,7,26,13,36,33,3.55,15.0,fr,28274,55,1175047,1,1,Active Shallow Crust,0.0,89.99049,-90.0,07/26/2788 +2.85587,51.55542,8089,7,15,9,19,0,3.65,5.0,fr,28275,161,1175052,1,1,Active Shallow Crust,0.0,89.98882,0.0,07/15/8089 +2.85587,51.55542,4741,12,2,10,1,5,4.05,5.0,fr,28276,94,1175100,1,1,Active Shallow Crust,0.0,89.98943,0.0,12/02/4741 +2.85587,51.55542,440,3,20,11,7,49,4.15,5.0,fr,28277,8,1175121,1,1,Active Shallow Crust,128.8965,89.99371,0.0,03/20/0440 +4.794,48.47282,4377,2,26,7,15,58,3.55,5.0,fr,28278,87,1175520,1,1,Active Shallow Crust,0.0,89.99332,0.0,02/26/4377 +-0.79046,47.17682,9710,1,2,0,59,32,3.55,15.0,fr,28279,194,1176010,1,1,Active Shallow Crust,128.8961,89.99358,0.0,01/02/9710 +-0.79046,47.17682,4141,9,16,20,26,41,3.65,15.0,fr,28280,82,1176013,1,2,Active Shallow Crust,0.0,89.99007,0.0,09/16/4141 +-0.79046,47.17682,4519,10,2,19,32,8,3.65,15.0,fr,28281,90,1176013,1,2,Active Shallow Crust,0.0,89.99007,0.0,10/02/4519 +-0.79046,47.17682,7708,3,16,23,23,53,3.65,5.0,fr,28282,154,1176015,1,1,Active Shallow Crust,240.0012,58.01277,0.0,03/16/7708 +-0.79046,47.17682,6688,9,17,9,41,8,3.75,5.0,fr,28283,133,1176024,1,1,Active Shallow Crust,0.0,89.98979,0.0,09/17/6688 +-0.79046,47.17682,5665,4,18,1,12,12,3.75,15.0,fr,28284,113,1176028,1,1,Active Shallow Crust,240.0083,58.01764,0.0,04/18/5665 +-0.79046,47.17682,7438,10,19,9,22,9,3.75,5.0,fr,28285,148,1176030,1,1,Active Shallow Crust,0.0,89.98967,-90.0,10/19/7438 +-0.79046,47.17682,7349,6,16,22,27,38,3.85,5.0,fr,28286,146,1176036,1,1,Active Shallow Crust,0.0,89.9903,0.0,06/16/7349 +-0.79046,47.17682,864,7,4,15,11,20,3.95,5.0,fr,28287,17,1176048,1,1,Active Shallow Crust,359.9997,89.99027,0.0,07/04/0864 +-0.79046,47.17682,3797,10,17,17,1,58,3.95,5.0,fr,28288,75,1176051,1,2,Active Shallow Crust,240.0199,58.00504,0.0,10/17/3797 +-0.79046,47.17682,6896,6,1,23,52,29,3.95,5.0,fr,28289,137,1176051,1,2,Active Shallow Crust,240.0199,58.00504,0.0,06/01/6896 +-0.79046,47.17682,6335,1,23,4,50,22,3.95,15.0,fr,28290,126,1176058,1,1,Active Shallow Crust,128.9003,89.99378,0.0,01/23/6335 +-0.79046,47.17682,8736,6,21,11,12,57,4.05,15.0,fr,28291,174,1176064,1,1,Active Shallow Crust,240.0061,58.00578,0.0,06/21/8736 +-0.79046,47.17682,6887,11,13,1,13,12,4.15,15.0,fr,28292,137,1176079,1,1,Active Shallow Crust,0.0,89.99001,-90.0,11/13/6887 +-0.79046,47.17682,5471,6,7,0,46,25,4.25,5.0,fr,28293,109,1176084,1,1,Active Shallow Crust,0.0,89.99005,0.0,06/07/5471 +-0.79046,47.17682,2377,5,26,1,42,0,4.25,15.0,fr,28294,47,1176085,1,1,Active Shallow Crust,0.0,89.99005,0.0,05/26/2377 +-0.79046,47.17682,8691,3,9,11,25,37,4.35,5.0,fr,28295,173,1176096,1,1,Active Shallow Crust,0.0,89.9901,0.0,03/09/8691 +-0.79046,47.17682,588,10,14,10,21,43,4.55,5.0,fr,28296,11,1176120,1,1,Active Shallow Crust,0.0,89.98997,0.0,10/14/0588 +-0.79046,47.17682,3240,3,31,0,33,14,4.75,5.0,fr,28297,64,1176150,1,1,Active Shallow Crust,0.0,89.98998,-90.0,03/31/3240 +-0.79046,47.17682,473,11,1,10,0,24,4.75,15.0,fr,28298,9,1176151,1,1,Active Shallow Crust,0.0,89.98998,-90.0,11/01/0473 +-3.80063,43.85787,1346,10,8,6,43,40,3.65,5.0,fr,28299,26,1176495,1,1,Active Shallow Crust,240.0012,58.01316,0.0,10/08/1346 +-3.80063,43.85787,9759,7,10,21,3,10,3.75,15.0,fr,28300,195,1176505,1,1,Active Shallow Crust,0.0,89.99133,0.0,07/10/9759 +5.87012,49.49679,8284,8,31,7,15,2,3.55,5.0,fr,28301,165,1176960,1,1,Active Shallow Crust,0.0,89.9869,0.0,08/31/8284 +5.87012,49.49679,736,3,4,14,8,42,3.65,5.0,fr,28302,14,1176972,1,1,Active Shallow Crust,0.0,89.98833,0.0,03/04/0736 +5.87012,49.49679,2862,3,25,2,51,4,3.75,5.0,fr,28303,57,1176984,1,1,Active Shallow Crust,0.0,89.98959,0.0,03/25/2862 +6.98145,45.27159,3490,7,13,18,50,23,3.55,5.0,fr,28304,69,1177440,1,1,Active Shallow Crust,0.0,89.9929,0.0,07/13/3490 +6.98145,45.27159,3425,10,18,21,37,16,3.55,15.0,fr,28305,68,1177441,1,2,Active Shallow Crust,0.0,89.9929,0.0,10/18/3425 +6.98145,45.27159,1581,12,9,5,46,19,3.55,15.0,fr,28306,31,1177441,1,2,Active Shallow Crust,0.0,89.9929,0.0,12/09/1581 +6.98145,45.27159,6404,7,8,2,43,20,3.65,5.0,fr,28307,128,1177452,1,1,Active Shallow Crust,0.0,89.98735,0.0,07/08/6404 +6.98145,45.27159,1773,11,30,21,30,33,3.65,15.0,fr,28308,35,1177453,1,1,Active Shallow Crust,0.0,89.98735,0.0,11/30/1773 +6.98145,45.27159,8856,9,6,12,56,9,3.65,5.0,fr,28309,177,1177458,1,1,Active Shallow Crust,0.0,89.98721,-90.0,09/06/8856 +6.98145,45.27159,8011,6,21,16,21,43,3.75,5.0,fr,28310,160,1177464,1,2,Active Shallow Crust,0.0,89.98872,0.0,06/21/8011 +6.98145,45.27159,8595,7,19,0,1,18,3.75,5.0,fr,28311,171,1177464,1,2,Active Shallow Crust,0.0,89.98872,0.0,07/19/8595 +6.98145,45.27159,5452,11,16,14,48,51,3.75,5.0,fr,28312,109,1177467,1,1,Active Shallow Crust,240.0074,58.01778,0.0,11/16/5452 +6.98145,45.27159,6242,10,1,4,5,6,3.85,15.0,fr,28313,124,1177486,1,1,Active Shallow Crust,128.8956,89.99246,0.0,10/01/6242 +6.98145,45.27159,5101,1,15,19,14,15,3.95,5.0,fr,28314,102,1177488,1,1,Active Shallow Crust,0.0,89.99104,0.0,01/15/5101 +6.98145,45.27159,6779,7,6,10,53,52,3.95,27.5,fr,28315,135,1177490,1,1,Active Shallow Crust,0.0,89.99104,0.0,07/06/6779 +6.98145,45.27159,2461,2,10,1,17,13,4.15,15.0,fr,28316,49,1177513,1,2,Active Shallow Crust,0.0,89.98933,0.0,02/10/2461 +6.98145,45.27159,4553,7,5,2,39,7,4.15,15.0,fr,28317,91,1177513,1,2,Active Shallow Crust,0.0,89.98933,0.0,07/05/4553 +6.98145,45.27159,2721,3,8,15,51,3,4.25,15.0,fr,28318,54,1177525,1,1,Active Shallow Crust,0.0,89.99049,0.0,03/08/2721 +6.98145,45.27159,968,9,1,0,7,38,4.35,5.0,fr,28319,19,1177536,1,1,Active Shallow Crust,0.0,89.9887,0.0,09/01/0968 +6.98145,45.27159,2733,5,13,21,49,44,4.55,5.0,fr,28320,54,1177569,1,1,Active Shallow Crust,128.8938,89.98607,0.0,05/13/2733 +5.28671,50.16672,6836,7,26,20,27,47,3.55,5.0,fr,28321,136,1177920,1,1,Active Shallow Crust,0.0,89.98708,0.0,07/26/6836 +5.28671,50.16672,628,8,16,9,26,58,3.55,15.0,fr,28322,12,1177921,1,1,Active Shallow Crust,0.0,89.98708,0.0,08/16/0628 +5.28671,50.16672,1606,12,17,5,52,25,3.85,5.0,fr,28323,32,1177956,1,1,Active Shallow Crust,0.0,89.99085,0.0,12/17/1606 +-1.34434,47.67235,6044,2,7,10,26,9,3.65,15.0,fr,28324,120,1178413,1,2,Active Shallow Crust,0.0,89.98941,0.0,02/07/6044 +-1.34434,47.67235,4888,11,15,21,26,10,3.65,15.0,fr,28325,97,1178413,1,2,Active Shallow Crust,0.0,89.98941,0.0,11/15/4888 +-1.34434,47.67235,5805,1,24,1,9,42,3.65,27.5,fr,28326,116,1178414,1,1,Active Shallow Crust,0.0,89.98941,0.0,01/24/5805 +-1.34434,47.67235,5870,7,14,10,43,1,3.85,27.5,fr,28327,117,1178438,1,1,Active Shallow Crust,0.0,89.99039,0.0,07/14/5870 +-1.34434,47.67235,5032,6,26,13,33,51,3.85,15.0,fr,28328,100,1178440,1,1,Active Shallow Crust,240.0111,57.99779,0.0,06/26/5032 +-1.34434,47.67235,940,6,28,7,31,17,3.85,27.5,fr,28329,18,1178444,1,1,Active Shallow Crust,0.0,89.99027,-90.0,06/28/0940 +-1.34434,47.67235,8459,2,17,14,11,23,3.95,5.0,fr,28330,169,1178448,1,2,Active Shallow Crust,0.0,89.99036,0.0,02/17/8459 +-1.34434,47.67235,9978,3,25,13,25,27,3.95,5.0,fr,28331,199,1178448,1,2,Active Shallow Crust,0.0,89.99036,0.0,03/25/9978 +-1.34434,47.67235,5588,4,23,5,48,38,3.95,27.5,fr,28332,111,1178450,1,1,Active Shallow Crust,0.0,89.99036,0.0,04/23/5588 +-1.34434,47.67235,7817,3,7,13,26,8,4.05,5.0,fr,28333,156,1178463,1,1,Active Shallow Crust,240.0062,58.00581,0.0,03/07/7817 +-1.34434,47.67235,8897,2,24,17,11,42,4.05,5.0,fr,28334,177,1178466,1,1,Active Shallow Crust,0.0,89.99034,-90.0,02/24/8897 +-1.34434,47.67235,4158,3,14,16,36,5,4.25,5.0,fr,28335,83,1178487,1,1,Active Shallow Crust,240.0078,57.99425,0.0,03/14/4158 +-1.34434,47.67235,9809,6,8,8,30,8,4.35,5.0,fr,28336,196,1178496,1,1,Active Shallow Crust,0.0,89.98986,0.0,06/08/9809 +-1.34434,47.67235,4098,9,13,19,32,37,4.85,15.0,fr,28337,81,1178557,1,1,Active Shallow Crust,0.0,89.99012,0.0,09/13/4098 +-1.34434,47.67235,8003,4,1,12,0,14,5.15,5.0,fr,28338,160,1178592,1,1,Active Shallow Crust,0.0,89.99004,0.0,04/01/8003 +-0.26141,48.15336,2954,6,4,9,12,4,3.65,27.5,fr,28339,59,1178894,1,1,Active Shallow Crust,0.0,89.98988,0.0,06/04/2954 +-0.26141,48.15336,2636,1,29,14,29,20,3.95,5.0,fr,28340,52,1178928,1,1,Active Shallow Crust,0.0,89.98992,0.0,01/29/2636 +-0.26141,48.15336,9604,12,29,10,47,15,4.25,5.0,fr,28341,192,1178967,1,1,Active Shallow Crust,240.0079,57.99416,0.0,12/29/9604 +-0.26141,48.15336,4885,6,11,23,57,52,5.95,5.0,fr,28342,97,1179177,1,1,Active Shallow Crust,128.8626,89.99012,0.0,06/11/4885 +-1.51279,50.06492,6086,12,9,1,21,21,3.55,5.0,fr,28343,121,1179360,1,1,Active Shallow Crust,0.0,89.99029,0.0,12/09/6086 +-1.51279,50.06492,4943,3,19,23,9,30,3.75,5.0,fr,28344,98,1179384,1,1,Active Shallow Crust,0.0,89.98972,0.0,03/19/4943 +1.79934,46.41666,4757,9,22,10,14,3,3.55,5.0,fr,28345,95,1179840,1,1,Active Shallow Crust,0.0,89.98957,0.0,09/22/4757 +1.79934,46.41666,1243,4,4,1,47,7,3.55,5.0,fr,28346,24,1179843,1,1,Active Shallow Crust,240.0121,57.99806,0.0,04/04/1243 +1.79934,46.41666,6628,7,1,8,6,53,3.55,5.0,fr,28347,132,1179846,1,2,Active Shallow Crust,0.0,89.98945,-90.0,07/01/6628 +1.79934,46.41666,8612,4,19,7,1,53,3.55,5.0,fr,28348,172,1179846,1,2,Active Shallow Crust,0.0,89.98945,-90.0,04/19/8612 +1.79934,46.41666,2342,11,19,1,1,4,3.55,27.5,fr,28349,46,1179848,1,1,Active Shallow Crust,0.0,89.98945,-90.0,11/19/2342 +1.79934,46.41666,7882,6,29,5,19,57,3.65,15.0,fr,28350,157,1179862,1,1,Active Shallow Crust,128.9005,89.96352,0.0,06/29/7882 +1.79934,46.41666,1411,7,19,20,6,14,3.75,5.0,fr,28351,28,1179864,1,2,Active Shallow Crust,0.0,89.99033,0.0,07/19/1411 +1.79934,46.41666,3186,2,11,1,48,19,3.75,5.0,fr,28352,63,1179864,1,2,Active Shallow Crust,0.0,89.99033,0.0,02/11/3186 +1.79934,46.41666,4262,10,6,7,28,26,3.75,5.0,fr,28353,85,1179873,1,1,Active Shallow Crust,128.8964,89.96736,0.0,10/06/4262 +1.79934,46.41666,37,6,25,0,4,39,3.95,5.0,fr,28354,0,1179891,1,1,Active Shallow Crust,240.0198,58.00494,0.0,06/25/0037 +1.79934,46.41666,8361,8,7,23,55,44,3.95,5.0,fr,28355,167,1179894,1,1,Active Shallow Crust,0.0,89.99001,-90.0,08/07/8361 +1.79934,46.41666,1149,12,23,21,3,3,4.05,5.0,fr,28356,22,1179900,1,1,Active Shallow Crust,0.0,89.99023,0.0,12/23/1149 +1.79934,46.41666,1154,6,1,5,39,52,4.65,5.0,fr,28357,23,1179972,1,1,Active Shallow Crust,0.0,89.9902,0.0,06/01/1154 +1.79934,46.41666,7853,2,15,0,13,38,4.95,5.0,fr,28358,157,1180014,1,1,Active Shallow Crust,0.0,89.98982,-90.0,02/15/7853 +-0.17023,41.50718,9740,4,25,13,44,4,3.55,5.0,fr,28359,194,1180320,1,1,Active Shallow Crust,0.0,89.99009,0.0,04/25/9740 +-0.17023,41.50718,2457,1,4,20,0,38,3.85,5.0,fr,28360,49,1180356,1,1,Active Shallow Crust,0.0,89.98997,0.0,01/04/2457 +-0.17023,41.50718,1999,7,13,22,15,21,4.05,15.0,fr,28361,39,1180381,1,1,Active Shallow Crust,0.0,89.99004,0.0,07/13/1999 +2.35313,40.76381,1309,8,24,3,23,53,3.65,5.0,fr,28362,26,1180818,1,1,Active Shallow Crust,0.0,89.98967,-90.0,08/24/1309 +2.35313,40.76381,4777,10,12,19,23,31,3.75,5.0,fr,28363,95,1180833,1,1,Active Shallow Crust,128.897,89.96739,0.0,10/12/4777 +2.35313,40.76381,9505,2,1,15,1,27,4.25,27.5,fr,28364,190,1180886,1,1,Active Shallow Crust,0.0,89.98976,0.0,02/01/9505 +1.57014,41.71449,8417,10,8,2,13,59,3.55,5.0,fr,28365,168,1181760,1,2,Active Shallow Crust,0.0,89.99059,0.0,10/08/8417 +1.57014,41.71449,1253,5,25,23,3,27,3.55,5.0,fr,28366,25,1181760,1,2,Active Shallow Crust,0.0,89.99059,0.0,05/25/1253 +1.57014,41.71449,4673,11,21,4,14,33,3.75,5.0,fr,28367,93,1181784,1,2,Active Shallow Crust,0.0,89.98954,0.0,11/21/4673 +1.57014,41.71449,1286,8,23,13,1,55,3.75,5.0,fr,28368,25,1181784,1,2,Active Shallow Crust,0.0,89.98954,0.0,08/23/1286 +1.57014,41.71449,4748,11,11,11,50,2,3.85,5.0,fr,28369,94,1181796,1,1,Active Shallow Crust,0.0,89.98934,0.0,11/11/4748 +1.57014,41.71449,2406,8,10,5,24,16,3.85,5.0,fr,28370,48,1181799,1,1,Active Shallow Crust,240.0103,57.99773,0.0,08/10/2406 +4.73014,42.46,6599,5,2,13,57,21,3.55,5.0,fr,28371,131,1182240,1,2,Active Shallow Crust,0.0,89.99256,0.0,05/02/6599 +4.73014,42.46,8112,8,17,18,35,10,3.55,5.0,fr,28372,162,1182240,1,2,Active Shallow Crust,0.0,89.99256,0.0,08/17/8112 +4.73014,42.46,5888,6,28,0,48,33,3.55,5.0,fr,28373,117,1182243,1,1,Active Shallow Crust,240.0115,57.99855,0.0,06/28/5888 +4.73014,42.46,9645,5,13,23,32,15,3.65,15.0,fr,28374,192,1182259,1,1,Active Shallow Crust,0.0,89.99329,-90.0,05/13/9645 +4.73014,42.46,162,11,27,7,1,17,3.85,5.0,fr,28375,3,1182276,1,1,Active Shallow Crust,0.0,89.98946,0.0,11/27/0162 +4.73014,42.46,7025,4,22,22,26,25,4.05,5.0,fr,28376,140,1182300,1,1,Active Shallow Crust,0.0,89.99163,0.0,04/22/7025 +5.51834,50.81398,9922,5,9,6,54,50,3.55,5.0,fr,28377,198,1182720,1,1,Active Shallow Crust,0.0,89.98726,0.0,05/09/9922 +5.51834,50.81398,7102,12,16,19,8,49,3.55,27.5,fr,28378,142,1182722,1,1,Active Shallow Crust,0.0,89.98726,0.0,12/16/7102 +5.51834,50.81398,2758,4,28,11,0,14,3.55,27.5,fr,28379,55,1182731,1,1,Active Shallow Crust,128.895,89.99363,0.0,04/28/2758 +5.51834,50.81398,4626,1,17,9,52,33,3.65,5.0,fr,28380,92,1182732,1,4,Active Shallow Crust,0.0,89.98864,0.0,01/17/4626 +5.51834,50.81398,6467,3,30,5,59,41,3.65,5.0,fr,28381,129,1182732,1,4,Active Shallow Crust,0.0,89.98864,0.0,03/30/6467 +5.51834,50.81398,5767,8,10,5,57,35,3.65,5.0,fr,28382,115,1182732,1,4,Active Shallow Crust,0.0,89.98864,0.0,08/10/5767 +5.51834,50.81398,5131,7,17,12,42,2,3.65,5.0,fr,28383,102,1182732,1,4,Active Shallow Crust,0.0,89.98864,0.0,07/17/5131 +5.51834,50.81398,6033,12,20,12,9,34,3.65,15.0,fr,28384,120,1182733,1,1,Active Shallow Crust,0.0,89.98864,0.0,12/20/6033 +5.51834,50.81398,3519,7,10,7,14,7,3.75,15.0,fr,28385,70,1182745,1,1,Active Shallow Crust,0.0,89.98988,0.0,07/10/3519 +5.51834,50.81398,2904,11,22,16,38,28,3.75,5.0,fr,28386,58,1182747,1,1,Active Shallow Crust,240.01,58.01777,0.0,11/22/2904 +5.51834,50.81398,6573,3,14,15,6,53,3.85,5.0,fr,28387,131,1182756,1,1,Active Shallow Crust,0.0,89.99098,0.0,03/14/6573 +5.51834,50.81398,2364,9,15,21,44,8,3.85,15.0,fr,28388,47,1182760,1,1,Active Shallow Crust,240.0117,57.99795,0.0,09/15/2364 +5.51834,50.81398,6580,6,9,17,0,47,3.85,5.0,fr,28389,131,1182765,1,1,Active Shallow Crust,128.8953,89.99323,0.0,06/09/6580 +5.51834,50.81398,978,8,2,4,14,54,3.95,5.0,fr,28390,19,1182768,1,1,Active Shallow Crust,0.0,89.99196,0.0,08/02/0978 +5.51834,50.81398,6648,8,14,8,0,17,3.95,15.0,fr,28391,132,1182775,1,1,Active Shallow Crust,0.0,89.99187,-90.0,08/14/6648 +5.51834,50.81398,9323,3,21,16,5,16,4.05,15.0,fr,28392,186,1182781,1,1,Active Shallow Crust,0.0,89.98925,0.0,03/21/9323 +5.51834,50.81398,4446,4,7,5,20,28,4.05,27.5,fr,28393,88,1182782,1,1,Active Shallow Crust,0.0,89.98925,0.0,04/07/4446 +5.51834,50.81398,7864,6,28,20,25,41,4.05,5.0,fr,28394,157,1182789,1,1,Active Shallow Crust,128.8894,89.99463,0.0,06/28/7864 +5.51834,50.81398,8668,2,4,4,6,37,4.15,5.0,fr,28395,173,1182792,1,1,Active Shallow Crust,0.0,89.99042,0.0,02/04/8668 +5.51834,50.81398,4489,12,13,10,47,56,4.15,15.0,fr,28396,89,1182793,1,1,Active Shallow Crust,0.0,89.99042,0.0,12/13/4489 +5.51834,50.81398,4087,12,22,13,29,52,4.15,5.0,fr,28397,81,1182801,1,2,Active Shallow Crust,128.8977,89.99361,0.0,12/22/4087 +5.51834,50.81398,6705,11,22,2,32,19,4.15,5.0,fr,28398,134,1182801,1,2,Active Shallow Crust,128.8977,89.99361,0.0,11/22/6705 +5.51834,50.81398,2761,12,4,17,16,11,4.25,5.0,fr,28399,55,1182804,1,2,Active Shallow Crust,0.0,89.98862,0.0,12/04/2761 +5.51834,50.81398,6582,7,4,22,50,38,4.25,5.0,fr,28400,131,1182804,1,2,Active Shallow Crust,0.0,89.98862,0.0,07/04/6582 +5.51834,50.81398,2061,2,9,14,38,20,4.35,15.0,fr,28401,41,1182817,1,1,Active Shallow Crust,0.0,89.98985,0.0,02/09/2061 +5.51834,50.81398,2917,11,11,18,36,43,4.45,5.0,fr,28402,58,1182831,1,1,Active Shallow Crust,240.0064,57.99494,0.0,11/11/2917 +5.51834,50.81398,8901,5,1,13,38,38,4.75,5.0,fr,28403,178,1182864,1,2,Active Shallow Crust,0.0,89.99039,0.0,05/01/8901 +5.51834,50.81398,8279,12,13,18,43,50,4.75,5.0,fr,28404,165,1182864,1,2,Active Shallow Crust,0.0,89.99039,0.0,12/13/8279 +5.51834,50.81398,8902,4,21,17,8,17,4.85,27.5,fr,28405,178,1182878,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/21/8902 +5.51834,50.81398,6573,9,27,3,42,55,4.95,5.0,fr,28406,131,1182888,1,1,Active Shallow Crust,0.0,89.98983,0.0,09/27/6573 +4.84387,46.30355,2875,2,25,7,3,4,3.55,5.0,fr,28407,57,1183203,1,1,Active Shallow Crust,240.0122,57.99875,0.0,02/25/2875 +4.84387,46.30355,1502,7,9,19,43,13,3.55,15.0,fr,28408,30,1183204,1,1,Active Shallow Crust,240.0122,57.99875,0.0,07/09/1502 +4.84387,46.30355,9494,7,25,3,54,10,3.55,5.0,fr,28409,189,1183206,1,1,Active Shallow Crust,0.0,89.99295,-90.0,07/25/9494 +4.84387,46.30355,2651,7,18,11,16,32,3.65,27.5,fr,28410,53,1183214,1,1,Active Shallow Crust,0.0,89.98758,0.0,07/18/2651 +4.84387,46.30355,9645,1,7,5,3,41,3.65,15.0,fr,28411,192,1183216,1,1,Active Shallow Crust,240.0022,58.01181,0.0,01/07/9645 +4.84387,46.30355,2203,8,14,8,43,41,4.05,5.0,fr,28412,44,1183266,1,1,Active Shallow Crust,0.0,89.98811,-90.0,08/14/2203 +4.84387,46.30355,4808,2,26,2,47,56,4.25,5.0,fr,28413,96,1183287,1,1,Active Shallow Crust,240.0081,57.99384,0.0,02/26/4808 +4.84387,46.30355,7084,5,24,6,57,33,4.35,5.0,fr,28414,141,1183299,1,1,Active Shallow Crust,240.0087,57.99593,0.0,05/24/7084 +4.84387,46.30355,5961,2,17,13,40,2,5.05,27.5,fr,28415,119,1183382,1,1,Active Shallow Crust,0.0,89.99009,0.0,02/17/5961 +4.84387,46.30355,8928,5,18,19,0,0,5.15,5.0,fr,28416,178,1183392,1,1,Active Shallow Crust,0.0,89.99006,0.0,05/18/8928 +3.64817,51.44202,1259,7,1,14,46,25,3.55,27.5,fr,28417,25,1183682,1,1,Active Shallow Crust,0.0,89.99057,0.0,07/01/1259 +3.64817,51.44202,8035,6,29,11,9,40,3.65,27.5,fr,28418,160,1183694,1,1,Active Shallow Crust,0.0,89.98879,0.0,06/29/8035 +3.64817,51.44202,7987,12,9,22,44,41,3.75,5.0,fr,28419,159,1183704,1,1,Active Shallow Crust,0.0,89.99001,0.0,12/09/7987 +3.64817,51.44202,8310,5,10,3,46,42,3.75,5.0,fr,28420,166,1183713,1,1,Active Shallow Crust,128.8956,89.96736,0.0,05/10/8310 +3.64817,51.44202,4930,4,16,5,20,42,3.85,5.0,fr,28421,98,1183722,1,1,Active Shallow Crust,0.0,89.991,-90.0,04/16/4930 +3.64817,51.44202,947,8,11,2,55,23,4.05,5.0,fr,28422,18,1183740,1,1,Active Shallow Crust,0.0,89.9894,0.0,08/11/0947 +3.64817,51.44202,9527,11,21,3,55,4,4.15,15.0,fr,28423,190,1183753,1,1,Active Shallow Crust,0.0,89.99055,0.0,11/21/9527 +3.64817,51.44202,899,8,4,4,31,36,4.35,15.0,fr,28424,17,1183777,1,1,Active Shallow Crust,0.0,89.98999,0.0,08/04/0899 +3.64817,51.44202,8833,1,24,6,29,53,4.55,27.5,fr,28425,176,1183808,1,1,Active Shallow Crust,0.0,89.98994,-90.0,01/24/8833 +3.64817,51.44202,2153,10,19,13,10,44,4.95,5.0,fr,28426,43,1183848,1,1,Active Shallow Crust,0.0,89.98997,0.0,10/19/2153 +3.64817,51.44202,7991,2,8,16,54,28,5.15,5.0,fr,28427,159,1183872,1,1,Active Shallow Crust,0.0,89.99004,0.0,02/08/7991 +0.81574,47.15596,2317,3,3,7,48,51,3.55,5.0,fr,28428,46,1184163,1,1,Active Shallow Crust,240.0121,57.9981,0.0,03/03/2317 +0.81574,47.15596,5543,1,22,5,19,52,3.65,5.0,fr,28429,110,1184172,1,3,Active Shallow Crust,0.0,89.99007,0.0,01/22/5543 +0.81574,47.15596,4726,11,4,12,39,53,3.65,5.0,fr,28430,94,1184172,1,3,Active Shallow Crust,0.0,89.99007,0.0,11/04/4726 +0.81574,47.15596,4628,3,29,7,55,44,3.65,5.0,fr,28431,92,1184172,1,3,Active Shallow Crust,0.0,89.99007,0.0,03/29/4628 +0.81574,47.15596,6721,10,30,23,53,20,3.65,15.0,fr,28432,134,1184173,1,1,Active Shallow Crust,0.0,89.99007,0.0,10/30/6721 +0.81574,47.15596,9026,12,31,8,48,7,3.75,5.0,fr,28433,180,1184190,1,1,Active Shallow Crust,0.0,89.98967,-90.0,12/31/9026 +0.81574,47.15596,7173,8,31,19,27,2,4.35,5.0,fr,28434,143,1184256,1,1,Active Shallow Crust,0.0,89.9901,0.0,08/31/7173 +0.81574,47.15596,3139,4,8,18,8,38,4.35,27.5,fr,28435,62,1184258,1,1,Active Shallow Crust,0.0,89.9901,0.0,04/08/3139 +0.81574,47.15596,837,7,23,12,45,44,4.65,5.0,fr,28436,16,1184292,1,1,Active Shallow Crust,0.0,89.9901,0.0,07/23/0837 +0.81574,47.15596,3734,7,12,16,52,3,4.65,5.0,fr,28437,74,1184295,1,1,Active Shallow Crust,240.0111,57.99427,0.0,07/12/3734 +0.81574,47.15596,6117,11,5,10,58,18,4.85,27.5,fr,28438,122,1184327,1,1,Active Shallow Crust,128.8924,89.98903,0.0,11/05/6117 +2.22646,45.78016,756,5,29,15,53,3,3.55,5.0,fr,28439,15,1184640,1,1,Active Shallow Crust,0.0,89.98945,0.0,05/29/0756 +2.22646,45.78016,5039,12,30,1,19,24,3.55,5.0,fr,28440,100,1184643,1,1,Active Shallow Crust,240.0118,57.99862,0.0,12/30/5039 +2.22646,45.78016,7679,1,31,12,5,45,3.55,27.5,fr,28441,153,1184645,1,1,Active Shallow Crust,240.0118,57.99852,0.0,01/31/7679 +2.22646,45.78016,868,10,29,9,50,20,3.65,15.0,fr,28442,17,1184653,1,1,Active Shallow Crust,0.0,89.9906,0.0,10/29/0868 +2.22646,45.78016,7134,4,3,11,24,29,3.75,5.0,fr,28443,142,1184664,1,1,Active Shallow Crust,0.0,89.98883,0.0,04/03/7134 +2.22646,45.78016,9159,7,5,7,36,33,3.85,5.0,fr,28444,183,1184679,1,1,Active Shallow Crust,240.0105,57.99804,0.0,07/05/9159 +2.22646,45.78016,5941,5,30,8,6,48,3.95,5.0,fr,28445,118,1184694,1,1,Active Shallow Crust,0.0,89.99102,-90.0,05/30/5941 +2.22646,45.78016,4994,2,4,1,7,49,4.15,15.0,fr,28446,99,1184716,1,1,Active Shallow Crust,240.0087,57.99712,0.0,02/04/4994 +1.75246,52.55135,3346,8,24,6,35,56,3.55,5.0,fr,28447,66,1185123,1,1,Active Shallow Crust,240.0127,57.99828,0.0,08/24/3346 +1.75246,52.55135,7340,2,11,22,6,48,3.65,5.0,fr,28448,146,1185132,1,2,Active Shallow Crust,0.0,89.99043,0.0,02/11/7340 +1.75246,52.55135,4991,11,21,18,19,38,3.65,5.0,fr,28449,99,1185132,1,2,Active Shallow Crust,0.0,89.99043,0.0,11/21/4991 +1.57676,50.22719,8802,8,26,11,4,52,3.55,5.0,fr,28450,176,1186080,1,1,Active Shallow Crust,0.0,89.99033,0.0,08/26/8802 +1.57676,50.22719,4349,11,26,15,55,50,3.95,5.0,fr,28451,86,1186128,1,1,Active Shallow Crust,0.0,89.98982,0.0,11/26/4349 +1.57676,50.22719,5236,2,16,19,36,49,4.35,5.0,fr,28452,104,1186176,1,1,Active Shallow Crust,0.0,89.98972,0.0,02/16/5236 +1.57676,50.22719,6766,11,21,14,51,43,4.75,15.0,fr,28453,135,1186225,1,1,Active Shallow Crust,0.0,89.98987,0.0,11/21/6766 +1.57676,50.22719,7813,5,18,13,0,22,5.95,5.0,fr,28454,156,1186371,1,1,Active Shallow Crust,240.0592,57.99984,0.0,05/18/7813 +2.35902,41.8423,4841,4,25,8,6,31,3.55,5.0,fr,28455,96,1186566,1,1,Active Shallow Crust,0.0,89.9886,-90.0,04/25/4841 +2.35902,41.8423,1426,1,31,16,22,23,3.65,5.0,fr,28456,28,1186572,1,1,Active Shallow Crust,0.0,89.98996,0.0,01/31/1426 +2.35902,41.8423,7007,12,6,18,36,38,3.65,27.5,fr,28457,140,1186574,1,1,Active Shallow Crust,0.0,89.98996,0.0,12/06/7007 +2.35902,41.8423,6836,8,27,22,27,6,3.75,15.0,fr,28458,136,1186585,1,1,Active Shallow Crust,0.0,89.99105,0.0,08/27/6836 +2.35902,41.8423,262,10,16,11,36,2,3.75,5.0,fr,28459,5,1186587,1,1,Active Shallow Crust,240.0076,58.01759,0.0,10/16/0262 +2.35902,41.8423,2301,12,1,13,47,27,3.75,5.0,fr,28460,46,1186593,1,1,Active Shallow Crust,128.8972,89.96741,0.0,12/01/2301 +2.35902,41.8423,6078,3,19,1,5,8,3.85,5.0,fr,28461,121,1186596,1,1,Active Shallow Crust,0.0,89.98936,0.0,03/19/6078 +2.35902,41.8423,8295,4,20,10,56,52,3.95,5.0,fr,28462,165,1186608,1,2,Active Shallow Crust,0.0,89.99052,0.0,04/20/8295 +2.35902,41.8423,5626,4,16,18,42,31,3.95,5.0,fr,28463,112,1186608,1,2,Active Shallow Crust,0.0,89.99052,0.0,04/16/5626 +2.35902,41.8423,4480,5,10,3,26,15,4.05,5.0,fr,28464,89,1186620,1,1,Active Shallow Crust,0.0,89.98944,0.0,05/10/4480 +2.35902,41.8423,6041,3,26,0,7,50,4.15,5.0,fr,28465,120,1186635,1,1,Active Shallow Crust,240.0078,57.99703,0.0,03/26/6041 +2.35902,41.8423,9334,9,14,14,55,30,4.15,5.0,fr,28466,186,1186638,1,1,Active Shallow Crust,0.0,89.99048,-90.0,09/14/9334 +2.35902,41.8423,9641,4,18,13,55,2,4.15,5.0,fr,28467,192,1186641,1,1,Active Shallow Crust,128.8985,89.99341,0.0,04/18/9641 +2.35902,41.8423,2555,10,13,8,33,48,4.35,5.0,fr,28468,51,1186656,1,1,Active Shallow Crust,0.0,89.98953,0.0,10/13/2555 +2.35902,41.8423,2945,11,27,18,36,37,4.55,15.0,fr,28469,58,1186681,1,1,Active Shallow Crust,0.0,89.99049,0.0,11/27/2945 +2.35902,41.8423,2215,11,13,10,40,27,4.65,5.0,fr,28470,44,1186692,1,1,Active Shallow Crust,0.0,89.99047,0.0,11/13/2215 +2.35902,41.8423,6698,4,26,20,25,38,4.75,27.5,fr,28471,133,1186709,1,1,Active Shallow Crust,240.0057,58.00423,0.0,04/26/6698 +2.35902,41.8423,9182,6,15,1,4,11,4.85,5.0,fr,28472,183,1186716,1,1,Active Shallow Crust,0.0,89.98991,0.0,06/15/9182 +8.2828,50.52639,5495,8,4,23,46,47,3.55,15.0,fr,28473,109,1187041,1,1,Active Shallow Crust,0.0,89.98717,0.0,08/04/5495 +8.2828,50.52639,3328,7,18,4,19,44,3.65,5.0,fr,28474,66,1187052,1,1,Active Shallow Crust,0.0,89.98857,0.0,07/18/3328 +8.2828,50.52639,5574,4,15,17,3,3,4.05,5.0,fr,28475,111,1187109,1,1,Active Shallow Crust,128.8917,89.99279,0.0,04/15/5574 +8.2828,50.52639,9849,4,6,21,18,30,4.15,5.0,fr,28476,196,1187112,1,1,Active Shallow Crust,0.0,89.98714,0.0,04/06/9849 +8.2828,50.52639,7460,5,29,15,55,3,4.15,5.0,fr,28477,149,1187121,1,1,Active Shallow Crust,128.8972,89.99358,0.0,05/29/7460 +8.2828,50.52639,2022,10,10,11,4,10,4.45,5.0,fr,28478,40,1187148,1,1,Active Shallow Crust,0.0,89.9909,0.0,10/10/2022 +8.2828,50.52639,1671,5,15,5,36,2,4.45,15.0,fr,28479,33,1187149,1,2,Active Shallow Crust,0.0,89.9909,0.0,05/15/1671 +8.2828,50.52639,3182,12,25,10,0,23,4.45,15.0,fr,28480,63,1187149,1,2,Active Shallow Crust,0.0,89.9909,0.0,12/25/3182 +8.2828,50.52639,155,1,1,4,41,25,5.45,15.0,fr,28481,3,1187269,1,1,Active Shallow Crust,0.0,89.98993,0.0,01/01/0155 +8.2828,50.52639,7432,8,5,21,9,6,6.15,15.0,fr,28482,148,1187353,1,1,Active Shallow Crust,0.0,89.98971,0.0,08/05/7432 +-3.28673,47.9106,3006,10,9,23,7,7,3.55,15.0,fr,28483,60,1187521,1,1,Active Shallow Crust,0.0,89.98986,0.0,10/09/3006 +-3.28673,47.9106,3550,5,27,4,49,24,3.65,15.0,fr,28484,70,1187536,1,1,Active Shallow Crust,240.0016,58.01302,0.0,05/27/3550 +-3.28673,47.9106,9694,3,23,16,55,24,3.65,15.0,fr,28485,193,1187539,1,1,Active Shallow Crust,0.0,89.99086,-90.0,03/23/9694 +-3.28673,47.9106,6775,3,14,17,10,3,3.65,5.0,fr,28486,135,1187541,1,1,Active Shallow Crust,128.9006,89.96355,0.0,03/14/6775 +-3.28673,47.9106,6495,4,11,8,4,4,3.75,15.0,fr,28487,129,1187545,1,1,Active Shallow Crust,0.0,89.98927,0.0,04/11/6495 +-3.28673,47.9106,1586,12,6,10,53,5,3.75,27.5,fr,28488,31,1187546,1,1,Active Shallow Crust,0.0,89.98927,0.0,12/06/1586 +-3.28673,47.9106,1701,7,16,7,16,14,3.75,15.0,fr,28489,34,1187554,1,1,Active Shallow Crust,128.8966,89.96727,0.0,07/16/1701 +-3.28673,47.9106,1809,5,23,11,23,4,3.85,5.0,fr,28490,36,1187556,1,1,Active Shallow Crust,0.0,89.99043,0.0,05/23/1809 +-3.28673,47.9106,9877,1,30,19,43,16,3.85,15.0,fr,28491,197,1187557,1,2,Active Shallow Crust,0.0,89.99043,0.0,01/30/9877 +-3.28673,47.9106,3662,12,29,0,41,55,3.85,15.0,fr,28492,73,1187557,1,2,Active Shallow Crust,0.0,89.99043,0.0,12/29/3662 +-3.28673,47.9106,9957,5,9,15,43,41,4.05,5.0,fr,28493,199,1187580,1,1,Active Shallow Crust,0.0,89.99049,0.0,05/09/9957 +-3.28673,47.9106,2064,5,3,7,49,2,4.05,5.0,fr,28494,41,1187583,1,1,Active Shallow Crust,240.0061,58.00604,0.0,05/03/2064 +-3.28673,47.9106,2024,6,8,16,5,23,4.15,5.0,fr,28495,40,1187592,1,1,Active Shallow Crust,0.0,89.98984,0.0,06/08/2024 +-3.28673,47.9106,9678,7,17,8,25,57,4.15,15.0,fr,28496,193,1187602,1,1,Active Shallow Crust,128.8971,89.99407,0.0,07/17/9678 +-3.28673,47.9106,4359,5,26,9,2,47,4.25,5.0,fr,28497,87,1187607,1,1,Active Shallow Crust,240.008,57.99425,0.0,05/26/4359 +-3.28673,47.9106,1592,11,22,8,42,38,4.55,5.0,fr,28498,31,1187640,1,1,Active Shallow Crust,0.0,89.99038,0.0,11/22/1592 +1.23628,46.1138,2119,2,9,20,16,9,3.55,5.0,fr,28499,42,1188000,1,1,Active Shallow Crust,0.0,89.98952,0.0,02/09/2119 +1.23628,46.1138,388,2,17,2,35,35,3.65,15.0,fr,28500,7,1188013,1,2,Active Shallow Crust,0.0,89.99065,0.0,02/17/0388 +1.23628,46.1138,7980,4,5,0,54,38,3.65,15.0,fr,28501,159,1188013,1,2,Active Shallow Crust,0.0,89.99065,0.0,04/05/7980 +1.23628,46.1138,4113,1,24,17,55,34,3.65,27.5,fr,28502,82,1188014,1,1,Active Shallow Crust,0.0,89.99065,0.0,01/24/4113 +1.23628,46.1138,4833,7,31,20,7,45,3.65,5.0,fr,28503,96,1188015,1,1,Active Shallow Crust,240.0008,58.01297,0.0,07/31/4833 +1.23628,46.1138,7767,1,26,17,8,52,3.65,5.0,fr,28504,155,1188018,1,1,Active Shallow Crust,0.0,89.99055,-90.0,01/26/7767 +1.23628,46.1138,3058,3,31,5,55,2,3.75,5.0,fr,28505,61,1188024,1,1,Active Shallow Crust,0.0,89.99028,0.0,03/31/3058 +1.23628,46.1138,99,10,11,11,54,44,3.75,15.0,fr,28506,1,1188025,1,1,Active Shallow Crust,0.0,89.99028,0.0,10/11/0099 +1.23628,46.1138,2273,7,6,18,43,45,3.95,5.0,fr,28507,45,1188048,1,1,Active Shallow Crust,0.0,89.99007,0.0,07/06/2273 +1.23628,46.1138,3256,11,22,12,22,55,3.95,15.0,fr,28508,65,1188055,1,1,Active Shallow Crust,0.0,89.98996,-90.0,11/22/3256 +1.23628,46.1138,9418,12,14,22,19,40,4.25,15.0,fr,28509,188,1188094,1,1,Active Shallow Crust,128.8946,89.98093,0.0,12/14/9418 +-3.77301,46.4944,989,12,3,9,36,40,3.65,5.0,fr,28510,19,1188501,1,1,Active Shallow Crust,128.9007,89.96352,0.0,12/03/0989 +1.76662,41.74687,9188,6,24,0,14,25,3.55,5.0,fr,28511,183,1188960,1,1,Active Shallow Crust,0.0,89.99059,0.0,06/24/9188 +1.76662,41.74687,154,7,30,18,13,10,3.65,5.0,fr,28512,3,1188972,1,3,Active Shallow Crust,0.0,89.98994,0.0,07/30/0154 +1.76662,41.74687,3442,5,17,15,21,43,3.65,5.0,fr,28513,68,1188972,1,3,Active Shallow Crust,0.0,89.98994,0.0,05/17/3442 +1.76662,41.74687,6057,8,28,3,42,10,3.65,5.0,fr,28514,121,1188972,1,3,Active Shallow Crust,0.0,89.98994,0.0,08/28/6057 +1.76662,41.74687,7003,6,4,21,42,2,3.85,5.0,fr,28515,140,1188996,1,1,Active Shallow Crust,0.0,89.98935,0.0,06/04/7003 +1.76662,41.74687,9032,12,8,2,14,11,3.85,15.0,fr,28516,180,1188997,1,1,Active Shallow Crust,0.0,89.98935,0.0,12/08/9032 +1.76662,41.74687,1697,4,6,3,47,6,4.25,5.0,fr,28517,33,1189044,1,1,Active Shallow Crust,0.0,89.98991,0.0,04/06/1697 +-2.23675,43.07121,8961,11,11,10,43,17,3.55,5.0,fr,28518,179,1189440,1,4,Active Shallow Crust,0.0,89.98895,0.0,11/11/8961 +-2.23675,43.07121,8455,1,25,4,36,59,3.55,5.0,fr,28519,169,1189440,1,4,Active Shallow Crust,0.0,89.98895,0.0,01/25/8455 +-2.23675,43.07121,7519,2,1,14,47,26,3.55,5.0,fr,28520,150,1189440,1,4,Active Shallow Crust,0.0,89.98895,0.0,02/01/7519 +-2.23675,43.07121,1640,12,15,3,11,11,3.55,5.0,fr,28521,32,1189440,1,4,Active Shallow Crust,0.0,89.98895,0.0,12/15/1640 +-2.23675,43.07121,683,6,16,18,20,1,3.65,15.0,fr,28522,13,1189456,1,1,Active Shallow Crust,240.0003,58.01305,0.0,06/16/0683 +-2.23675,43.07121,8376,4,2,22,39,24,3.65,5.0,fr,28523,167,1189458,1,1,Active Shallow Crust,0.0,89.99004,-90.0,04/02/8376 +-2.23675,43.07121,2862,3,13,23,7,23,3.75,5.0,fr,28524,57,1189464,1,2,Active Shallow Crust,0.0,89.99123,0.0,03/13/2862 +-2.23675,43.07121,8816,7,12,1,21,24,3.75,5.0,fr,28525,176,1189464,1,2,Active Shallow Crust,0.0,89.99123,0.0,07/12/8816 +-2.23675,43.07121,174,7,14,9,46,8,3.75,15.0,fr,28526,3,1189465,1,1,Active Shallow Crust,0.0,89.99123,0.0,07/14/0174 +-2.23675,43.07121,8179,2,1,10,39,23,3.85,27.5,fr,28527,163,1189478,1,1,Active Shallow Crust,0.0,89.98957,0.0,02/01/8179 +-2.23675,43.07121,1184,8,11,14,6,26,3.95,5.0,fr,28528,23,1189488,1,1,Active Shallow Crust,0.0,89.99071,0.0,08/11/1184 +-2.23675,43.07121,5632,11,4,21,37,31,3.95,15.0,fr,28529,112,1189489,1,1,Active Shallow Crust,0.0,89.99071,0.0,11/04/5632 +-2.23675,43.07121,5859,1,13,8,52,35,3.95,15.0,fr,28530,117,1189498,1,1,Active Shallow Crust,128.9012,89.99303,0.0,01/13/5859 +-2.23675,43.07121,49,11,25,16,47,56,4.05,5.0,fr,28531,0,1189500,1,1,Active Shallow Crust,0.0,89.98965,0.0,11/25/0049 +-2.23675,43.07121,49,10,20,23,3,34,4.05,15.0,fr,28532,0,1189501,1,2,Active Shallow Crust,0.0,89.98965,0.0,10/20/0049 +-2.23675,43.07121,7574,7,25,5,56,24,4.05,15.0,fr,28533,151,1189501,1,2,Active Shallow Crust,0.0,89.98965,0.0,07/25/7574 +-2.23675,43.07121,2887,10,6,3,5,8,4.15,5.0,fr,28534,57,1189515,1,1,Active Shallow Crust,240.0077,57.99729,0.0,10/06/2887 +-2.23675,43.07121,6294,12,5,21,50,52,4.25,15.0,fr,28535,125,1189534,1,1,Active Shallow Crust,128.8951,89.98082,0.0,12/05/6294 +-2.23675,43.07121,1282,1,26,12,29,31,4.55,5.0,fr,28536,25,1189560,1,1,Active Shallow Crust,0.0,89.98952,0.0,01/26/1282 +-2.23675,43.07121,8536,12,4,8,0,5,4.65,15.0,fr,28537,170,1189573,1,1,Active Shallow Crust,0.0,89.98962,0.0,12/04/8536 +-2.23675,43.07121,4154,3,13,20,23,38,4.75,5.0,fr,28538,83,1189593,1,1,Active Shallow Crust,128.8899,89.98798,0.0,03/13/4154 +-2.23675,43.07121,2990,3,26,4,31,36,5.35,5.0,fr,28539,59,1189656,1,1,Active Shallow Crust,0.0,89.9898,0.0,03/26/2990 +-4.18902,49.04679,8001,10,18,18,21,56,3.65,27.5,fr,28540,160,1189934,1,1,Active Shallow Crust,0.0,89.98822,0.0,10/18/8001 +-4.18902,49.04679,2823,2,13,18,55,34,3.75,15.0,fr,28541,56,1189954,1,1,Active Shallow Crust,128.8953,89.96754,0.0,02/13/2823 +-4.18902,49.04679,9628,10,8,20,48,54,3.85,5.0,fr,28542,192,1189956,1,1,Active Shallow Crust,0.0,89.99064,0.0,10/08/9628 +-4.18902,49.04679,6096,5,19,16,55,37,4.95,5.0,fr,28543,121,1190088,1,1,Active Shallow Crust,0.0,89.98945,0.0,05/19/6096 +4.55683,50.92854,1370,4,15,6,12,54,3.55,5.0,fr,28544,27,1190409,1,1,Active Shallow Crust,128.8959,89.99364,0.0,04/15/1370 +4.55683,50.92854,7623,6,29,23,46,51,3.65,15.0,fr,28545,152,1190413,1,2,Active Shallow Crust,0.0,89.98867,0.0,06/29/7623 +4.55683,50.92854,7705,2,1,11,43,28,3.65,15.0,fr,28546,154,1190413,1,2,Active Shallow Crust,0.0,89.98867,0.0,02/01/7705 +4.55683,50.92854,7034,4,11,15,36,53,3.65,5.0,fr,28547,140,1190415,1,2,Active Shallow Crust,240.002,58.01286,0.0,04/11/7034 +4.55683,50.92854,4618,12,16,12,27,7,3.65,5.0,fr,28548,92,1190415,1,2,Active Shallow Crust,240.002,58.01286,0.0,12/16/4618 +4.55683,50.92854,1877,7,10,7,2,7,3.85,5.0,fr,28549,37,1190439,1,1,Active Shallow Crust,240.0116,57.99849,0.0,07/10/1877 +4.55683,50.92854,693,1,7,11,5,28,5.15,5.0,fr,28550,13,1190592,1,1,Active Shallow Crust,0.0,89.98992,0.0,01/07/0693 +-0.99312,44.85315,5118,11,8,16,1,35,3.65,5.0,fr,28551,102,1190895,1,1,Active Shallow Crust,240.0009,58.01284,0.0,11/08/5118 +-0.99312,44.85315,3980,3,23,15,34,18,3.95,15.0,fr,28552,79,1190929,1,1,Active Shallow Crust,0.0,89.98985,0.0,03/23/3980 +-0.99312,44.85315,1511,1,20,15,20,34,4.15,15.0,fr,28553,30,1190953,1,1,Active Shallow Crust,0.0,89.99015,0.0,01/20/1511 +-3.36645,48.58135,3212,2,16,9,58,5,3.55,5.0,fr,28554,64,1191840,1,1,Active Shallow Crust,0.0,89.98999,0.0,02/16/3212 +-3.36645,48.58135,5425,9,24,0,20,12,3.65,15.0,fr,28555,108,1191853,1,4,Active Shallow Crust,0.0,89.99108,0.0,09/24/5425 +-3.36645,48.58135,8232,10,10,22,46,41,3.65,15.0,fr,28556,164,1191853,1,4,Active Shallow Crust,0.0,89.99108,0.0,10/10/8232 +-3.36645,48.58135,4832,5,4,16,30,44,3.65,15.0,fr,28557,96,1191853,1,4,Active Shallow Crust,0.0,89.99108,0.0,05/04/4832 +-3.36645,48.58135,1150,4,12,4,13,3,3.65,15.0,fr,28558,22,1191853,1,4,Active Shallow Crust,0.0,89.99108,0.0,04/12/1150 +-3.36645,48.58135,7387,12,21,3,7,31,3.65,27.5,fr,28559,147,1191857,1,1,Active Shallow Crust,240.001,58.01298,0.0,12/21/7387 +-3.36645,48.58135,8121,4,16,2,47,10,3.75,5.0,fr,28560,162,1191864,1,2,Active Shallow Crust,0.0,89.9894,0.0,04/16/8121 +-3.36645,48.58135,1982,8,24,0,27,29,3.75,5.0,fr,28561,39,1191864,1,2,Active Shallow Crust,0.0,89.9894,0.0,08/24/1982 +-3.36645,48.58135,8014,12,29,7,41,38,3.85,5.0,fr,28562,160,1191876,1,2,Active Shallow Crust,0.0,89.99055,0.0,12/29/8014 +-3.36645,48.58135,5790,3,18,18,31,49,3.85,5.0,fr,28563,115,1191876,1,2,Active Shallow Crust,0.0,89.99055,0.0,03/18/5790 +-3.36645,48.58135,5173,12,16,3,15,41,3.95,15.0,fr,28564,103,1191895,1,1,Active Shallow Crust,0.0,89.98936,-90.0,12/16/5173 +-3.36645,48.58135,4490,12,13,13,44,6,4.05,5.0,fr,28565,89,1191900,1,2,Active Shallow Crust,0.0,89.99062,0.0,12/13/4490 +-3.36645,48.58135,537,4,16,19,36,53,4.05,5.0,fr,28566,10,1191900,1,2,Active Shallow Crust,0.0,89.99062,0.0,04/16/0537 +-3.36645,48.58135,4201,2,26,0,30,13,4.15,5.0,fr,28567,84,1191921,1,1,Active Shallow Crust,128.8976,89.99332,0.0,02/26/4201 +-3.36645,48.58135,2273,6,15,16,37,0,4.25,5.0,fr,28568,45,1191924,1,1,Active Shallow Crust,0.0,89.98957,0.0,06/15/2273 +-3.36645,48.58135,3155,12,8,3,10,17,4.35,27.5,fr,28569,63,1191941,1,1,Active Shallow Crust,240.0087,57.99598,0.0,12/08/3155 +-3.36645,48.58135,6000,9,15,5,45,0,4.35,5.0,fr,28570,119,1191945,1,1,Active Shallow Crust,128.8974,89.98263,0.0,09/15/6000 +7.23484,48.1494,4283,12,21,13,0,56,3.55,5.0,fr,28571,85,1192320,1,1,Active Shallow Crust,0.0,89.99327,0.0,12/21/4283 +7.23484,48.1494,4396,4,21,12,0,5,3.65,5.0,fr,28572,87,1192335,1,1,Active Shallow Crust,240.0001,58.01354,0.0,04/21/4396 +7.23484,48.1494,9360,11,7,21,52,6,3.75,5.0,fr,28573,187,1192347,1,1,Active Shallow Crust,240.0083,58.01792,0.0,11/07/9360 +7.23484,48.1494,3064,6,20,3,38,49,3.75,5.0,fr,28574,61,1192350,1,1,Active Shallow Crust,0.0,89.98919,-90.0,06/20/3064 +7.23484,48.1494,8574,4,19,21,53,53,3.85,5.0,fr,28575,171,1192356,1,1,Active Shallow Crust,0.0,89.99047,0.0,04/19/8574 +7.23484,48.1494,6683,2,22,10,48,9,3.95,5.0,fr,28576,133,1192368,1,1,Active Shallow Crust,0.0,89.99151,0.0,02/22/6683 +7.23484,48.1494,1909,6,14,17,26,9,3.95,27.5,fr,28577,38,1192373,1,1,Active Shallow Crust,240.0196,58.00518,0.0,06/14/1909 +7.23484,48.1494,634,12,6,15,16,40,4.05,5.0,fr,28578,12,1192380,1,1,Active Shallow Crust,0.0,89.98865,0.0,12/06/0634 +7.23484,48.1494,9838,7,13,3,14,27,4.05,27.5,fr,28579,196,1192385,1,1,Active Shallow Crust,240.0063,58.00569,0.0,07/13/9838 +7.23484,48.1494,2888,4,26,19,14,25,4.35,5.0,fr,28580,57,1192425,1,1,Active Shallow Crust,128.897,89.98307,0.0,04/26/2888 +7.23484,48.1494,498,12,12,9,1,23,4.65,5.0,fr,28581,9,1192455,1,1,Active Shallow Crust,240.0114,57.99437,0.0,12/12/0498 +7.23484,48.1494,2267,11,22,14,13,45,4.95,5.0,fr,28582,45,1192488,1,1,Active Shallow Crust,0.0,89.9906,0.0,11/22/2267 +-0.07009,42.47915,9416,7,7,13,23,31,3.55,15.0,fr,28583,188,1192801,1,2,Active Shallow Crust,0.0,89.99001,0.0,07/07/9416 +-0.07009,42.47915,5445,11,20,13,37,55,3.55,15.0,fr,28584,108,1192801,1,2,Active Shallow Crust,0.0,89.99001,0.0,11/20/5445 +-0.07009,42.47915,4391,8,3,14,55,21,3.55,15.0,fr,28585,87,1192810,1,1,Active Shallow Crust,128.8965,89.99373,0.0,08/03/4391 +-0.07009,42.47915,9778,11,3,20,58,4,3.85,5.0,fr,28586,195,1192836,1,1,Active Shallow Crust,0.0,89.98996,0.0,11/03/9778 +-0.07009,42.47915,4663,3,3,16,36,58,3.95,5.0,fr,28587,93,1192854,1,1,Active Shallow Crust,0.0,89.98999,-90.0,03/03/4663 +-0.07009,42.47915,1096,2,15,18,23,22,4.05,27.5,fr,28588,21,1192862,1,1,Active Shallow Crust,0.0,89.99,0.0,02/15/1096 +0.47392,47.26734,525,5,16,2,31,40,3.55,5.0,fr,28589,10,1193280,1,2,Active Shallow Crust,0.0,89.99017,0.0,05/16/0525 +0.47392,47.26734,6096,2,13,19,21,18,3.55,5.0,fr,28590,121,1193280,1,2,Active Shallow Crust,0.0,89.99017,0.0,02/13/6096 +0.47392,47.26734,1145,10,16,2,11,12,3.55,5.0,fr,28591,22,1193283,1,1,Active Shallow Crust,240.0123,57.99819,0.0,10/16/1145 +0.47392,47.26734,1874,5,2,21,10,13,3.65,15.0,fr,28592,37,1193293,1,2,Active Shallow Crust,0.0,89.99009,0.0,05/02/1874 +0.47392,47.26734,3702,10,6,1,48,49,3.65,15.0,fr,28593,74,1193293,1,2,Active Shallow Crust,0.0,89.99009,0.0,10/06/3702 +0.47392,47.26734,5423,6,17,4,28,10,3.65,5.0,fr,28594,108,1193295,1,1,Active Shallow Crust,240.0011,58.01293,0.0,06/17/5423 +0.47392,47.26734,3124,8,6,5,2,40,3.75,5.0,fr,28595,62,1193304,1,1,Active Shallow Crust,0.0,89.99015,0.0,08/06/3124 +0.47392,47.26734,2405,6,24,8,3,45,3.75,15.0,fr,28596,48,1193311,1,1,Active Shallow Crust,0.0,89.99004,-90.0,06/24/2405 +0.47392,47.26734,6497,4,22,9,18,30,3.85,5.0,fr,28597,129,1193316,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/22/6497 +0.47392,47.26734,884,3,18,0,34,43,3.95,15.0,fr,28598,17,1193338,1,1,Active Shallow Crust,128.9003,89.99366,0.0,03/18/0884 +0.47392,47.26734,1725,2,23,2,11,39,4.35,5.0,fr,28599,34,1193382,1,1,Active Shallow Crust,0.0,89.99001,-90.0,02/23/1725 +0.47392,47.26734,9555,1,12,22,9,34,4.45,5.0,fr,28600,191,1193388,1,1,Active Shallow Crust,0.0,89.98998,0.0,01/12/9555 +0.47392,47.26734,9342,2,19,23,9,39,4.65,27.5,fr,28601,186,1193414,1,1,Active Shallow Crust,0.0,89.99,0.0,02/19/9342 +-1.28045,50.47617,7021,2,25,4,9,47,3.55,5.0,fr,28602,140,1193760,1,1,Active Shallow Crust,0.0,89.99037,0.0,02/25/7021 +-1.28045,50.47617,9086,5,12,8,16,41,3.55,5.0,fr,28603,181,1193766,1,1,Active Shallow Crust,0.0,89.99026,-90.0,05/12/9086 +-1.28045,50.47617,511,9,27,23,22,32,3.65,5.0,fr,28604,10,1193772,1,1,Active Shallow Crust,0.0,89.98999,0.0,09/27/0511 +-1.28045,50.47617,5889,1,24,0,14,34,3.75,15.0,fr,28605,117,1193785,1,1,Active Shallow Crust,0.0,89.98981,0.0,01/24/5889 +0.19679,42.64276,2977,4,22,16,12,5,3.55,5.0,fr,28606,59,1194240,1,1,Active Shallow Crust,0.0,89.99004,0.0,04/22/2977 +0.19679,42.64276,1045,10,17,7,14,35,3.55,15.0,fr,28607,20,1194241,1,1,Active Shallow Crust,0.0,89.99004,0.0,10/17/1045 +0.19679,42.64276,1910,7,2,13,7,55,3.65,5.0,fr,28608,38,1194252,1,2,Active Shallow Crust,0.0,89.99008,0.0,07/02/1910 +0.19679,42.64276,4609,11,14,15,6,9,3.65,5.0,fr,28609,92,1194252,1,2,Active Shallow Crust,0.0,89.99008,0.0,11/14/4609 +0.19679,42.64276,468,10,28,8,15,7,3.65,5.0,fr,28610,9,1194261,1,1,Active Shallow Crust,128.9008,89.9635,0.0,10/28/0468 +0.19679,42.64276,6242,3,13,15,37,15,3.75,5.0,fr,28611,124,1194264,1,3,Active Shallow Crust,0.0,89.99006,0.0,03/13/6242 +0.19679,42.64276,8703,8,24,15,24,9,3.75,5.0,fr,28612,174,1194264,1,3,Active Shallow Crust,0.0,89.99006,0.0,08/24/8703 +0.19679,42.64276,2158,3,6,15,54,40,3.75,5.0,fr,28613,43,1194264,1,3,Active Shallow Crust,0.0,89.99006,0.0,03/06/2158 +0.19679,42.64276,4694,8,17,5,0,36,4.05,5.0,fr,28614,93,1194300,1,2,Active Shallow Crust,0.0,89.98996,0.0,08/17/4694 +0.19679,42.64276,8715,2,9,6,59,22,4.05,5.0,fr,28615,174,1194300,1,2,Active Shallow Crust,0.0,89.98996,0.0,02/09/8715 +0.19679,42.64276,6392,5,30,4,40,49,4.05,5.0,fr,28616,127,1194303,1,1,Active Shallow Crust,240.0054,58.00571,0.0,05/30/6392 +0.19679,42.64276,5082,4,8,3,28,37,4.25,5.0,fr,28617,101,1194324,1,1,Active Shallow Crust,0.0,89.98996,0.0,04/08/5082 +0.19679,42.64276,7275,11,14,13,2,51,4.25,5.0,fr,28618,145,1194327,1,1,Active Shallow Crust,240.0068,57.99392,0.0,11/14/7275 +0.19679,42.64276,4411,9,2,23,27,55,4.55,5.0,fr,28619,88,1194360,1,1,Active Shallow Crust,0.0,89.99003,0.0,09/02/4411 +0.14355,49.24065,9356,3,10,18,22,15,3.55,5.0,fr,28620,187,1194726,1,1,Active Shallow Crust,0.0,89.99001,-90.0,03/10/9356 +0.14355,49.24065,9529,12,28,10,14,8,3.65,5.0,fr,28621,190,1194732,1,1,Active Shallow Crust,0.0,89.98991,0.0,12/28/9529 +0.14355,49.24065,3024,11,21,6,49,59,3.65,27.5,fr,28622,60,1194734,1,1,Active Shallow Crust,0.0,89.98991,0.0,11/21/3024 +0.14355,49.24065,1450,5,3,5,31,33,3.65,5.0,fr,28623,28,1194735,1,2,Active Shallow Crust,240.0014,58.01294,0.0,05/03/1450 +0.14355,49.24065,1902,10,30,9,24,37,3.65,5.0,fr,28624,38,1194735,1,2,Active Shallow Crust,240.0014,58.01294,0.0,10/30/1902 +0.14355,49.24065,5329,9,17,23,19,12,3.75,5.0,fr,28625,106,1194747,1,1,Active Shallow Crust,240.0087,58.01764,0.0,09/17/5329 +0.14355,49.24065,6075,6,7,21,7,11,3.75,5.0,fr,28626,121,1194753,1,1,Active Shallow Crust,128.8963,89.96735,0.0,06/07/6075 +0.14355,49.24065,1059,2,25,17,21,27,3.85,5.0,fr,28627,21,1194756,1,2,Active Shallow Crust,0.0,89.98995,0.0,02/25/1059 +0.14355,49.24065,8239,1,12,4,24,37,3.85,5.0,fr,28628,164,1194756,1,2,Active Shallow Crust,0.0,89.98995,0.0,01/12/8239 +0.14355,49.24065,8081,12,27,3,36,29,3.95,27.5,fr,28629,161,1194773,1,1,Active Shallow Crust,240.0202,58.00506,0.0,12/27/8081 +0.14355,49.24065,5558,11,7,2,9,29,4.15,5.0,fr,28630,111,1194792,1,1,Active Shallow Crust,0.0,89.99,0.0,11/07/5558 +0.14355,49.24065,5794,1,3,21,15,58,4.15,15.0,fr,28631,115,1194793,1,1,Active Shallow Crust,0.0,89.99,0.0,01/03/5794 +0.14355,49.24065,48,7,6,4,2,38,4.55,5.0,fr,28632,0,1194840,1,1,Active Shallow Crust,0.0,89.98998,0.0,07/06/0048 +0.14355,49.24065,8798,12,3,2,45,49,5.75,5.0,fr,28633,175,1194987,1,1,Active Shallow Crust,240.0447,58.0001,0.0,12/03/8798 +8.7845,50.3308,3319,2,4,13,26,18,3.55,5.0,fr,28634,66,1195200,1,2,Active Shallow Crust,0.0,89.98713,0.0,02/04/3319 +8.7845,50.3308,3943,7,16,12,30,55,3.55,5.0,fr,28635,78,1195200,1,2,Active Shallow Crust,0.0,89.98713,0.0,07/16/3943 +8.7845,50.3308,2728,1,15,5,17,8,3.85,5.0,fr,28636,54,1195236,1,1,Active Shallow Crust,0.0,89.99088,0.0,01/15/2728 +8.7845,50.3308,7416,4,1,12,18,2,3.95,5.0,fr,28637,148,1195248,1,3,Active Shallow Crust,0.0,89.99187,0.0,04/01/7416 +8.7845,50.3308,6620,10,2,3,1,2,3.95,5.0,fr,28638,132,1195248,1,3,Active Shallow Crust,0.0,89.99187,0.0,10/02/6620 +8.7845,50.3308,225,11,1,22,20,35,3.95,5.0,fr,28639,4,1195248,1,3,Active Shallow Crust,0.0,89.99187,0.0,11/01/0225 +8.7845,50.3308,1885,4,26,0,14,10,3.95,5.0,fr,28640,37,1195251,1,1,Active Shallow Crust,240.02,58.00441,0.0,04/26/1885 +8.7845,50.3308,5539,5,18,18,44,30,4.25,5.0,fr,28641,110,1195284,1,1,Active Shallow Crust,0.0,89.98849,0.0,05/18/5539 +8.7845,50.3308,4675,10,4,4,10,57,4.75,5.0,fr,28642,93,1195350,1,1,Active Shallow Crust,0.0,89.99018,-90.0,10/04/4675 +8.7845,50.3308,3667,1,6,12,6,20,4.75,5.0,fr,28643,73,1195353,1,1,Active Shallow Crust,128.8878,89.98798,0.0,01/06/3667 +5.30731,43.47393,8571,7,11,1,43,44,3.55,5.0,fr,28644,171,1195680,1,3,Active Shallow Crust,0.0,89.99268,0.0,07/11/8571 +5.30731,43.47393,9299,11,30,8,14,47,3.55,5.0,fr,28645,185,1195680,1,3,Active Shallow Crust,0.0,89.99268,0.0,11/30/9299 +5.30731,43.47393,1970,2,12,9,32,51,3.55,5.0,fr,28646,39,1195680,1,3,Active Shallow Crust,0.0,89.99268,0.0,02/12/1970 +5.30731,43.47393,2732,12,8,14,34,57,3.55,15.0,fr,28647,54,1195681,1,1,Active Shallow Crust,0.0,89.99268,0.0,12/08/2732 +5.30731,43.47393,5873,11,30,16,37,26,3.65,5.0,fr,28648,117,1195692,1,1,Active Shallow Crust,0.0,89.98695,0.0,11/30/5873 +5.30731,43.47393,1669,11,14,19,10,38,3.65,5.0,fr,28649,33,1195695,1,1,Active Shallow Crust,239.9997,58.01334,0.0,11/14/1669 +5.30731,43.47393,280,2,10,19,0,27,3.65,15.0,fr,28650,5,1195696,1,1,Active Shallow Crust,239.9997,58.01334,0.0,02/10/0280 +5.30731,43.47393,8655,8,25,17,55,59,3.65,27.5,fr,28651,173,1195697,1,1,Active Shallow Crust,239.9997,58.01325,0.0,08/25/8655 +5.30731,43.47393,5901,9,26,14,20,27,3.75,5.0,fr,28652,118,1195704,1,2,Active Shallow Crust,0.0,89.98837,0.0,09/26/5901 +5.30731,43.47393,2048,6,23,16,29,35,3.75,5.0,fr,28653,40,1195704,1,2,Active Shallow Crust,0.0,89.98837,0.0,06/23/2048 +5.30731,43.47393,8412,11,4,0,53,45,3.85,5.0,fr,28654,168,1195716,1,1,Active Shallow Crust,0.0,89.98964,0.0,11/04/8412 +5.30731,43.47393,3227,1,15,9,26,8,3.95,5.0,fr,28655,64,1195728,1,1,Active Shallow Crust,0.0,89.99077,0.0,01/15/3227 +5.30731,43.47393,7044,1,30,9,17,59,4.15,5.0,fr,28656,140,1195752,1,1,Active Shallow Crust,0.0,89.989,0.0,01/30/7044 +5.30731,43.47393,9577,11,16,4,32,0,4.25,5.0,fr,28657,191,1195764,1,1,Active Shallow Crust,0.0,89.9902,0.0,11/16/9577 +5.30731,43.47393,1449,7,14,9,0,21,4.25,5.0,fr,28658,28,1195767,1,1,Active Shallow Crust,240.0063,57.99411,0.0,07/14/1449 +5.30731,43.47393,6788,8,15,16,19,54,4.35,5.0,fr,28659,135,1195779,1,1,Active Shallow Crust,240.0083,57.99545,0.0,08/15/6788 +5.30731,43.47393,7351,3,23,12,28,54,4.55,5.0,fr,28660,147,1195800,1,1,Active Shallow Crust,0.0,89.99075,0.0,03/23/7351 +5.30731,43.47393,2077,9,17,13,12,22,4.55,15.0,fr,28661,41,1195801,1,1,Active Shallow Crust,0.0,89.99075,0.0,09/17/2077 +5.30731,43.47393,7435,4,27,3,42,17,4.75,15.0,fr,28662,148,1195825,1,2,Active Shallow Crust,0.0,89.99081,0.0,04/27/7435 +5.30731,43.47393,7360,4,12,19,53,34,4.75,15.0,fr,28663,147,1195825,1,2,Active Shallow Crust,0.0,89.99081,0.0,04/12/7360 +5.30731,43.47393,1721,3,30,19,48,37,4.85,5.0,fr,28664,34,1195845,1,1,Active Shallow Crust,128.8936,89.98885,0.0,03/30/1721 +5.30731,43.47393,2577,8,31,4,38,29,4.95,5.0,fr,28665,51,1195848,1,1,Active Shallow Crust,0.0,89.98978,0.0,08/31/2577 +5.30731,43.47393,5706,9,30,14,38,8,5.95,15.0,fr,28666,114,1195969,1,1,Active Shallow Crust,0.0,89.98984,0.0,09/30/5706 +2.26714,43.4276,2803,1,13,17,33,12,3.85,5.0,fr,28667,56,1196196,1,1,Active Shallow Crust,0.0,89.98963,0.0,01/13/2803 +2.26714,43.4276,3951,2,14,2,22,56,3.85,5.0,fr,28668,79,1196205,1,1,Active Shallow Crust,128.8959,89.99352,0.0,02/14/3951 +2.26714,43.4276,3043,1,26,22,47,33,4.05,5.0,fr,28669,60,1196220,1,1,Active Shallow Crust,0.0,89.9897,0.0,01/26/3043 +2.26714,43.4276,8956,4,11,14,12,55,4.15,5.0,fr,28670,179,1196232,1,1,Active Shallow Crust,0.0,89.99082,0.0,04/11/8956 +2.26714,43.4276,7726,10,11,14,1,0,4.95,15.0,fr,28671,154,1196329,1,1,Active Shallow Crust,0.0,89.98977,0.0,10/11/7726 +-0.86958,49.31136,8594,7,6,9,27,13,3.55,15.0,fr,28672,171,1196641,1,1,Active Shallow Crust,0.0,89.99014,0.0,07/06/8594 +-0.86958,49.31136,3270,7,1,11,3,0,3.65,5.0,fr,28673,65,1196652,1,1,Active Shallow Crust,0.0,89.98975,0.0,07/01/3270 +-0.86958,49.31136,2678,12,24,11,49,26,3.65,5.0,fr,28674,53,1196655,1,1,Active Shallow Crust,240.0015,58.01292,0.0,12/24/2678 +-0.86958,49.31136,9615,6,20,4,38,6,3.65,15.0,fr,28675,192,1196656,1,1,Active Shallow Crust,240.0015,58.01292,0.0,06/20/9615 +-0.86958,49.31136,6935,11,8,4,31,7,3.65,15.0,fr,28676,138,1196659,1,1,Active Shallow Crust,0.0,89.99037,-90.0,11/08/6935 +-0.86958,49.31136,8197,5,8,7,41,15,3.75,5.0,fr,28677,163,1196664,1,2,Active Shallow Crust,0.0,89.99021,0.0,05/08/8197 +-0.86958,49.31136,5122,11,30,12,47,22,3.75,5.0,fr,28678,102,1196664,1,2,Active Shallow Crust,0.0,89.99021,0.0,11/30/5122 +-0.86958,49.31136,7482,4,30,7,10,58,3.75,27.5,fr,28679,149,1196666,1,1,Active Shallow Crust,0.0,89.99021,0.0,04/30/7482 +-0.86958,49.31136,5047,12,18,20,31,29,3.85,5.0,fr,28680,100,1196676,1,1,Active Shallow Crust,0.0,89.99011,0.0,12/18/5047 +-0.86958,49.31136,3373,8,22,3,48,8,3.85,15.0,fr,28681,67,1196677,1,2,Active Shallow Crust,0.0,89.99011,0.0,08/22/3373 +-0.86958,49.31136,2156,7,13,12,24,53,3.85,15.0,fr,28682,43,1196677,1,2,Active Shallow Crust,0.0,89.99011,0.0,07/13/2156 +-0.86958,49.31136,4939,11,26,18,59,42,3.85,5.0,fr,28683,98,1196679,1,1,Active Shallow Crust,240.0113,57.99783,0.0,11/26/4939 +-0.86958,49.31136,9428,11,14,9,52,19,3.95,5.0,fr,28684,188,1196691,1,1,Active Shallow Crust,240.0203,58.00505,0.0,11/14/9428 +-0.86958,49.31136,462,10,30,3,4,32,4.05,15.0,fr,28685,9,1196701,1,1,Active Shallow Crust,0.0,89.98983,0.0,10/30/0462 +-0.86958,49.31136,453,1,15,18,58,27,4.15,5.0,fr,28686,9,1196712,1,1,Active Shallow Crust,0.0,89.99011,0.0,01/15/0453 +-0.86958,49.31136,8834,6,4,21,14,50,4.25,5.0,fr,28687,176,1196724,1,2,Active Shallow Crust,0.0,89.99009,0.0,06/04/8834 +-0.86958,49.31136,2969,2,19,18,53,32,4.25,5.0,fr,28688,59,1196724,1,2,Active Shallow Crust,0.0,89.99009,0.0,02/19/2969 +-0.86958,49.31136,7750,4,13,18,36,25,4.55,15.0,fr,28689,154,1196761,1,1,Active Shallow Crust,0.0,89.99013,0.0,04/13/7750 +-0.86958,49.31136,5495,5,9,16,29,32,4.55,15.0,fr,28690,109,1196767,1,1,Active Shallow Crust,0.0,89.99001,-90.0,05/09/5495 +-0.86958,49.31136,1520,8,16,8,3,12,4.95,5.0,fr,28691,30,1196808,1,1,Active Shallow Crust,0.0,89.99,0.0,08/16/1520 +-0.86958,49.31136,6704,6,28,20,3,37,5.05,5.0,fr,28692,134,1196820,1,1,Active Shallow Crust,0.0,89.99006,0.0,06/28/6704 +-4.88831,49.7918,9725,11,26,15,7,26,3.65,5.0,fr,28693,194,1197132,1,1,Active Shallow Crust,0.0,89.9884,0.0,11/26/9725 +-4.88831,49.7918,9275,2,28,9,55,30,4.15,15.0,fr,28694,185,1197193,1,1,Active Shallow Crust,0.0,89.99021,0.0,02/28/9275 +-4.88831,49.7918,6789,5,9,13,13,19,5.25,5.0,fr,28695,135,1197324,1,1,Active Shallow Crust,0.0,89.98988,0.0,05/09/6789 +3.65803,43.24366,2688,5,2,14,16,14,3.55,5.0,fr,28696,53,1198080,1,1,Active Shallow Crust,0.0,89.98898,0.0,05/02/2688 +3.65803,43.24366,2569,6,21,16,10,4,3.55,5.0,fr,28697,51,1198083,1,1,Active Shallow Crust,240.0119,57.99874,0.0,06/21/2569 +3.65803,43.24366,3512,1,31,19,5,58,3.65,15.0,fr,28698,70,1198093,1,1,Active Shallow Crust,0.0,89.99018,0.0,01/31/3512 +3.65803,43.24366,3338,8,26,2,30,25,3.65,15.0,fr,28699,66,1198096,1,1,Active Shallow Crust,240.0007,58.01315,0.0,08/26/3338 +3.65803,43.24366,5316,3,10,6,11,6,3.65,5.0,fr,28700,106,1198101,1,1,Active Shallow Crust,128.901,89.96346,0.0,03/10/5316 +4.65514,40.9644,6566,5,7,5,40,54,3.55,5.0,fr,28701,131,1198560,1,2,Active Shallow Crust,0.0,89.99239,0.0,05/07/6566 +4.65514,40.9644,9871,7,9,7,50,54,3.55,5.0,fr,28702,197,1198560,1,2,Active Shallow Crust,0.0,89.99239,0.0,07/09/9871 +4.65514,40.9644,1581,3,8,7,37,17,3.65,5.0,fr,28703,31,1198575,1,1,Active Shallow Crust,240.0012,58.01272,0.0,03/08/1581 +4.65514,40.9644,5549,10,26,23,26,21,3.95,15.0,fr,28704,110,1198609,1,1,Active Shallow Crust,0.0,89.99039,0.0,10/26/5549 +-6.6442,47.40556,7024,6,20,20,57,46,3.55,27.5,fr,28705,140,1199048,1,1,Active Shallow Crust,0.0,89.9931,-90.0,06/20/7024 +-0.65376,47.05267,2176,5,19,18,4,51,3.55,5.0,fr,28706,43,1199520,1,1,Active Shallow Crust,0.0,89.98969,0.0,05/19/2176 +-0.65376,47.05267,379,7,1,19,28,47,3.55,15.0,fr,28707,7,1199521,1,1,Active Shallow Crust,0.0,89.98969,0.0,07/01/0379 +-0.65376,47.05267,9042,10,1,22,48,30,3.55,27.5,fr,28708,180,1199522,1,1,Active Shallow Crust,0.0,89.98969,0.0,10/01/9042 +-0.65376,47.05267,9942,11,25,7,29,57,3.55,5.0,fr,28709,198,1199529,1,1,Active Shallow Crust,128.8963,89.99356,0.0,11/25/9942 +-0.65376,47.05267,1031,3,20,8,12,21,3.65,5.0,fr,28710,20,1199532,1,2,Active Shallow Crust,0.0,89.99005,0.0,03/20/1031 +-0.65376,47.05267,658,2,8,4,12,57,3.65,5.0,fr,28711,13,1199532,1,2,Active Shallow Crust,0.0,89.99005,0.0,02/08/0658 +-0.65376,47.05267,6437,4,4,13,59,57,3.65,15.0,fr,28712,128,1199533,1,1,Active Shallow Crust,0.0,89.99005,0.0,04/04/6437 +-0.65376,47.05267,8312,3,28,19,56,46,3.75,5.0,fr,28713,166,1199544,1,3,Active Shallow Crust,0.0,89.98977,0.0,03/28/8312 +-0.65376,47.05267,5411,4,22,22,55,42,3.75,5.0,fr,28714,108,1199544,1,3,Active Shallow Crust,0.0,89.98977,0.0,04/22/5411 +-0.65376,47.05267,118,7,4,9,56,12,3.75,5.0,fr,28715,2,1199544,1,3,Active Shallow Crust,0.0,89.98977,0.0,07/04/0118 +-0.65376,47.05267,556,5,15,19,28,0,3.75,15.0,fr,28716,11,1199545,1,2,Active Shallow Crust,0.0,89.98977,0.0,05/15/0556 +-0.65376,47.05267,6713,4,2,11,44,13,3.75,15.0,fr,28717,134,1199545,1,2,Active Shallow Crust,0.0,89.98977,0.0,04/02/6713 +-0.65376,47.05267,1749,6,17,18,4,48,3.75,5.0,fr,28718,34,1199547,1,1,Active Shallow Crust,240.0085,58.01749,0.0,06/17/1749 +-0.65376,47.05267,4337,7,8,3,13,1,3.85,5.0,fr,28719,86,1199556,1,2,Active Shallow Crust,0.0,89.99027,0.0,07/08/4337 +-0.65376,47.05267,61,12,16,23,21,57,3.85,5.0,fr,28720,1,1199556,1,2,Active Shallow Crust,0.0,89.99027,0.0,12/16/0061 +-0.65376,47.05267,9078,11,6,7,50,6,3.85,15.0,fr,28721,181,1199557,1,1,Active Shallow Crust,0.0,89.99027,0.0,11/06/9078 +-0.65376,47.05267,5154,5,1,21,16,52,3.85,5.0,fr,28722,103,1199559,1,1,Active Shallow Crust,240.0108,57.99778,0.0,05/01/5154 +-0.65376,47.05267,68,12,5,7,18,47,3.85,15.0,fr,28723,1,1199566,1,1,Active Shallow Crust,128.8957,89.99361,0.0,12/05/0068 +-0.65376,47.05267,3662,7,19,19,45,51,3.95,5.0,fr,28724,73,1199568,1,1,Active Shallow Crust,0.0,89.99025,0.0,07/19/3662 +-0.65376,47.05267,5640,3,18,2,52,57,3.95,27.5,fr,28725,112,1199570,1,1,Active Shallow Crust,0.0,89.99025,0.0,03/18/5640 +-0.65376,47.05267,9092,7,3,22,44,30,4.05,5.0,fr,28726,181,1199589,1,1,Active Shallow Crust,128.8904,89.99372,0.0,07/03/9092 +-0.65376,47.05267,4258,12,2,5,40,46,4.15,5.0,fr,28727,85,1199592,1,1,Active Shallow Crust,0.0,89.9901,0.0,12/02/4258 +-0.65376,47.05267,9825,3,26,21,53,14,4.25,5.0,fr,28728,196,1199604,1,1,Active Shallow Crust,0.0,89.99003,0.0,03/26/9825 +-0.65376,47.05267,3840,6,2,17,35,8,4.35,5.0,fr,28729,76,1199619,1,1,Active Shallow Crust,240.0086,57.99591,0.0,06/02/3840 +-0.65376,47.05267,970,8,1,17,47,46,4.45,5.0,fr,28730,19,1199634,1,1,Active Shallow Crust,0.0,89.99014,-90.0,08/01/0970 +-0.65376,47.05267,785,6,3,4,54,31,4.45,5.0,fr,28731,15,1199637,1,1,Active Shallow Crust,128.8921,89.9936,0.0,06/03/0785 +-0.65376,47.05267,8554,10,19,2,11,45,4.75,5.0,fr,28732,171,1199667,1,1,Active Shallow Crust,240.0077,58.00454,0.0,10/19/8554 +-0.65376,47.05267,7494,11,4,13,24,1,5.75,5.0,fr,28733,149,1199787,1,1,Active Shallow Crust,240.0392,58.00196,0.0,11/04/7494 +-0.6628386,47.06338,3173,3,3,18,54,48,6.45,7.200962,fr,28734,63,1199871,1,1,Active Shallow Crust,240.0928,57.99979,0.0,03/03/3173 +4.88857,45.39841,425,12,8,8,22,6,3.55,15.0,fr,28735,8,1200001,1,1,Active Shallow Crust,0.0,89.99292,0.0,12/08/0425 +4.88857,45.39841,7017,5,12,0,16,39,3.55,5.0,fr,28736,140,1200003,1,1,Active Shallow Crust,240.012,57.99822,0.0,05/12/7017 +4.88857,45.39841,5256,9,29,5,34,17,3.75,15.0,fr,28737,105,1200025,1,1,Active Shallow Crust,0.0,89.98875,0.0,09/29/5256 +4.88857,45.39841,3907,8,4,17,38,26,3.85,15.0,fr,28738,78,1200043,1,1,Active Shallow Crust,0.0,89.98986,-90.0,08/04/3907 +-1.597,49.52817,8501,6,14,4,23,17,3.55,5.0,fr,28739,170,1200480,1,1,Active Shallow Crust,0.0,89.99018,0.0,06/14/8501 +-1.597,49.52817,183,9,10,15,37,33,3.55,5.0,fr,28740,3,1200486,1,1,Active Shallow Crust,0.0,89.99007,-90.0,09/10/0183 +-1.597,49.52817,3195,2,17,10,39,8,3.55,5.0,fr,28741,63,1200489,1,1,Active Shallow Crust,128.8958,89.99345,0.0,02/17/3195 +-1.597,49.52817,5008,11,30,17,54,4,3.65,5.0,fr,28742,100,1200495,1,1,Active Shallow Crust,240.0011,58.01301,0.0,11/30/5008 +-1.597,49.52817,4697,9,18,12,11,58,3.75,15.0,fr,28743,93,1200508,1,1,Active Shallow Crust,240.0087,58.01773,0.0,09/18/4697 +-1.597,49.52817,2140,10,7,21,57,58,4.65,5.0,fr,28744,42,1200612,1,1,Active Shallow Crust,0.0,89.98985,0.0,10/07/2140 +3.99554,42.4914,7149,10,13,12,42,12,3.55,27.5,fr,28745,142,1200962,1,1,Active Shallow Crust,0.0,89.98885,0.0,10/13/7149 +3.99554,42.4914,8504,6,22,12,37,34,3.95,5.0,fr,28746,170,1201008,1,1,Active Shallow Crust,0.0,89.99062,0.0,06/22/8504 +2.26908,47.23932,6911,9,25,10,57,3,3.55,5.0,fr,28747,138,1201440,1,1,Active Shallow Crust,0.0,89.98973,0.0,09/25/6911 +2.26908,47.23932,1139,12,13,12,13,37,3.65,15.0,fr,28748,22,1201453,1,2,Active Shallow Crust,0.0,89.99084,0.0,12/13/1139 +2.26908,47.23932,426,4,22,8,13,19,3.65,15.0,fr,28749,8,1201453,1,2,Active Shallow Crust,0.0,89.99084,0.0,04/22/0426 +2.26908,47.23932,3763,5,2,22,9,45,3.75,5.0,fr,28750,75,1201464,1,1,Active Shallow Crust,0.0,89.98912,0.0,05/02/3763 +2.26908,47.23932,9143,2,8,0,46,57,3.75,15.0,fr,28751,182,1201465,1,1,Active Shallow Crust,0.0,89.98912,0.0,02/08/9143 +2.26908,47.23932,841,3,25,5,0,27,4.05,5.0,fr,28752,16,1201509,1,1,Active Shallow Crust,128.8903,89.99422,0.0,03/25/0841 +2.26908,47.23932,8709,1,21,1,22,37,4.25,5.0,fr,28753,174,1201524,1,1,Active Shallow Crust,0.0,89.9893,0.0,01/21/8709 +2.26908,47.23932,8084,4,22,11,59,38,4.35,5.0,fr,28754,161,1201536,1,1,Active Shallow Crust,0.0,89.99046,0.0,04/22/8084 +2.26908,47.23932,2780,12,20,13,27,55,4.75,15.0,fr,28755,55,1201585,1,1,Active Shallow Crust,0.0,89.98968,0.0,12/20/2780 +1.4678,50.74259,6209,2,11,17,6,28,3.55,15.0,fr,28756,124,1201921,1,2,Active Shallow Crust,0.0,89.99043,0.0,02/11/6209 +1.4678,50.74259,2409,12,2,11,31,29,3.55,15.0,fr,28757,48,1201921,1,2,Active Shallow Crust,0.0,89.99043,0.0,12/02/2409 +1.4678,50.74259,9717,2,12,18,42,6,3.75,5.0,fr,28758,194,1201944,1,1,Active Shallow Crust,0.0,89.98986,0.0,02/12/9717 +1.4678,50.74259,2321,1,5,23,10,37,3.75,5.0,fr,28759,46,1201953,1,1,Active Shallow Crust,128.8962,89.96734,0.0,01/05/2321 +1.4678,50.74259,7403,10,21,22,8,12,3.95,5.0,fr,28760,148,1201968,1,2,Active Shallow Crust,0.0,89.98994,0.0,10/21/7403 +1.4678,50.74259,3454,12,30,15,23,38,3.95,5.0,fr,28761,69,1201968,1,2,Active Shallow Crust,0.0,89.98994,0.0,12/30/3454 +1.4678,50.74259,1589,2,16,19,39,46,4.05,5.0,fr,28762,31,1201986,1,1,Active Shallow Crust,0.0,89.99002,-90.0,02/16/1589 +1.4678,50.74259,1575,4,30,13,3,23,4.25,5.0,fr,28763,31,1202004,1,1,Active Shallow Crust,0.0,89.99002,0.0,04/30/1575 +1.4678,50.74259,7922,6,1,18,16,29,4.75,5.0,fr,28764,158,1202064,1,1,Active Shallow Crust,0.0,89.98998,0.0,06/01/7922 +4.50932,51.16631,6482,12,12,16,58,33,3.55,5.0,fr,28765,129,1202400,1,2,Active Shallow Crust,0.0,89.98735,0.0,12/12/6482 +4.50932,51.16631,2793,7,5,9,20,15,3.55,5.0,fr,28766,55,1202400,1,2,Active Shallow Crust,0.0,89.98735,0.0,07/05/2793 +4.50932,51.16631,1781,7,1,3,24,40,3.55,15.0,fr,28767,35,1202401,1,2,Active Shallow Crust,0.0,89.98735,0.0,07/01/1781 +4.50932,51.16631,8745,7,3,15,32,22,3.55,15.0,fr,28768,174,1202401,1,2,Active Shallow Crust,0.0,89.98735,0.0,07/03/8745 +4.50932,51.16631,2980,4,27,23,2,8,3.55,27.5,fr,28769,59,1202411,1,1,Active Shallow Crust,128.8963,89.99368,0.0,04/27/2980 +4.50932,51.16631,1571,12,25,0,3,48,3.85,5.0,fr,28770,31,1202436,1,1,Active Shallow Crust,0.0,89.99104,0.0,12/25/1571 +4.50932,51.16631,5106,5,4,1,42,53,3.95,5.0,fr,28771,102,1202448,1,2,Active Shallow Crust,0.0,89.98803,0.0,05/04/5106 +4.50932,51.16631,9274,11,9,12,12,47,3.95,5.0,fr,28772,185,1202448,1,2,Active Shallow Crust,0.0,89.98803,0.0,11/09/9274 +4.50932,51.16631,9395,12,22,9,53,42,3.95,15.0,fr,28773,187,1202449,1,1,Active Shallow Crust,0.0,89.98803,0.0,12/22/9395 +4.50932,51.16631,8796,3,17,17,59,24,4.05,15.0,fr,28774,175,1202464,1,1,Active Shallow Crust,240.0073,58.00615,0.0,03/17/8796 +4.50932,51.16631,1286,1,12,0,28,47,4.15,5.0,fr,28775,25,1202481,1,1,Active Shallow Crust,128.8964,89.99366,0.0,01/12/1286 +4.50932,51.16631,2442,8,19,5,50,11,4.55,5.0,fr,28776,48,1202520,1,1,Active Shallow Crust,0.0,89.99,0.0,08/19/2442 +1.16512,50.60101,279,10,29,3,35,45,3.65,5.0,fr,28777,5,1202892,1,1,Active Shallow Crust,0.0,89.99002,0.0,10/29/0279 +1.16512,50.60101,7347,11,3,12,5,53,5.45,5.0,fr,28778,146,1203108,1,1,Active Shallow Crust,0.0,89.98994,0.0,11/03/7347 +-1.95938,50.03457,8451,7,30,8,34,9,3.75,5.0,fr,28779,169,1203864,1,1,Active Shallow Crust,0.0,89.98971,0.0,07/30/8451 +-1.95938,50.03457,3943,9,20,15,13,13,4.05,5.0,fr,28780,78,1203903,1,1,Active Shallow Crust,240.0066,58.00586,0.0,09/20/3943 +-1.95938,50.03457,9532,10,31,5,0,54,4.15,5.0,fr,28781,190,1203912,1,1,Active Shallow Crust,0.0,89.99026,0.0,10/31/9532 +4.65091,50.45036,4418,4,10,1,6,29,3.55,5.0,fr,28782,88,1204320,1,3,Active Shallow Crust,0.0,89.98716,0.0,04/10/4418 +4.65091,50.45036,1634,12,20,1,30,4,3.55,5.0,fr,28783,32,1204320,1,3,Active Shallow Crust,0.0,89.98716,0.0,12/20/1634 +4.65091,50.45036,9991,12,8,21,47,47,3.55,5.0,fr,28784,199,1204320,1,3,Active Shallow Crust,0.0,89.98716,0.0,12/08/9991 +4.65091,50.45036,243,5,3,12,37,15,3.55,15.0,fr,28785,4,1204321,1,1,Active Shallow Crust,0.0,89.98716,0.0,05/03/0243 +4.65091,50.45036,4594,5,11,9,40,54,3.55,5.0,fr,28786,91,1204323,1,1,Active Shallow Crust,240.0123,57.9977,0.0,05/11/4594 +4.65091,50.45036,6058,7,15,17,43,5,3.55,15.0,fr,28787,121,1204324,1,1,Active Shallow Crust,240.0123,57.9977,0.0,07/15/6058 +4.65091,50.45036,3746,9,20,3,19,41,3.55,5.0,fr,28788,74,1204326,1,2,Active Shallow Crust,0.0,89.98701,-90.0,09/20/3746 +4.65091,50.45036,9707,8,28,19,28,12,3.55,5.0,fr,28789,194,1204326,1,2,Active Shallow Crust,0.0,89.98701,-90.0,08/28/9707 +4.65091,50.45036,7419,7,12,13,26,55,3.65,5.0,fr,28790,148,1204332,1,2,Active Shallow Crust,0.0,89.98856,0.0,07/12/7419 +4.65091,50.45036,7385,1,3,4,21,29,3.65,5.0,fr,28791,147,1204332,1,2,Active Shallow Crust,0.0,89.98856,0.0,01/03/7385 +4.65091,50.45036,4386,12,7,11,52,29,3.65,27.5,fr,28792,87,1204334,1,2,Active Shallow Crust,0.0,89.98856,0.0,12/07/4386 +4.65091,50.45036,8122,10,22,6,14,30,3.65,27.5,fr,28793,162,1204334,1,2,Active Shallow Crust,0.0,89.98856,0.0,10/22/8122 +4.65091,50.45036,5635,6,1,9,2,50,3.65,5.0,fr,28794,112,1204338,1,2,Active Shallow Crust,0.0,89.98842,-90.0,06/01/5635 +4.65091,50.45036,5354,10,10,0,49,25,3.65,5.0,fr,28795,107,1204338,1,2,Active Shallow Crust,0.0,89.98842,-90.0,10/10/5354 +4.65091,50.45036,2989,9,17,20,12,13,3.75,15.0,fr,28796,59,1204345,1,1,Active Shallow Crust,0.0,89.9898,0.0,09/17/2989 +4.65091,50.45036,8136,7,6,6,51,28,3.75,5.0,fr,28797,162,1204347,1,1,Active Shallow Crust,240.0088,58.01753,0.0,07/06/8136 +4.65091,50.45036,3062,1,19,2,53,46,3.75,5.0,fr,28798,61,1204350,1,1,Active Shallow Crust,0.0,89.98968,-90.0,01/19/3062 +4.65091,50.45036,6681,9,25,11,56,16,3.85,5.0,fr,28799,133,1204356,1,3,Active Shallow Crust,0.0,89.99091,0.0,09/25/6681 +4.65091,50.45036,9351,3,12,18,30,24,3.85,5.0,fr,28800,187,1204356,1,3,Active Shallow Crust,0.0,89.99091,0.0,03/12/9351 +4.65091,50.45036,8737,9,29,23,10,34,3.85,5.0,fr,28801,174,1204356,1,3,Active Shallow Crust,0.0,89.99091,0.0,09/29/8737 +4.65091,50.45036,3264,4,28,19,55,57,3.85,15.0,fr,28802,65,1204357,1,2,Active Shallow Crust,0.0,89.99091,0.0,04/28/3264 +4.65091,50.45036,3723,9,2,1,30,41,3.85,15.0,fr,28803,74,1204357,1,2,Active Shallow Crust,0.0,89.99091,0.0,09/02/3723 +4.65091,50.45036,9765,8,12,21,34,34,3.95,5.0,fr,28804,195,1204368,1,2,Active Shallow Crust,0.0,89.9919,0.0,08/12/9765 +4.65091,50.45036,2896,7,29,4,29,57,3.95,5.0,fr,28805,57,1204368,1,2,Active Shallow Crust,0.0,89.9919,0.0,07/29/2896 +4.65091,50.45036,109,4,19,6,35,10,3.95,15.0,fr,28806,2,1204369,1,1,Active Shallow Crust,0.0,89.9919,0.0,04/19/0109 +4.65091,50.45036,7555,9,9,17,22,51,3.95,15.0,fr,28807,151,1204375,1,1,Active Shallow Crust,0.0,89.99181,-90.0,09/09/7555 +4.65091,50.45036,2573,4,28,4,14,27,3.95,27.5,fr,28808,51,1204376,1,1,Active Shallow Crust,0.0,89.99181,-90.0,04/28/2573 +4.65091,50.45036,984,1,6,20,49,4,3.95,5.0,fr,28809,19,1204377,1,1,Active Shallow Crust,128.8995,89.99393,0.0,01/06/0984 +4.65091,50.45036,6781,6,17,2,37,23,4.05,5.0,fr,28810,135,1204380,1,1,Active Shallow Crust,0.0,89.98917,0.0,06/17/6781 +4.65091,50.45036,2824,4,2,23,39,55,4.05,27.5,fr,28811,56,1204382,1,1,Active Shallow Crust,0.0,89.98917,0.0,04/02/2824 +4.65091,50.45036,76,10,7,22,37,39,4.05,5.0,fr,28812,1,1204386,1,1,Active Shallow Crust,0.0,89.98904,-90.0,10/07/0076 +4.65091,50.45036,6559,3,6,13,2,0,4.15,5.0,fr,28813,131,1204392,1,1,Active Shallow Crust,0.0,89.99035,0.0,03/06/6559 +4.65091,50.45036,9621,12,14,21,22,25,4.25,5.0,fr,28814,192,1204404,1,1,Active Shallow Crust,0.0,89.99139,0.0,12/14/9621 +4.65091,50.45036,209,5,17,4,55,46,4.25,15.0,fr,28815,4,1204408,1,1,Active Shallow Crust,240.009,57.9938,0.0,05/17/0209 +4.65091,50.45036,1186,3,26,4,20,27,4.35,15.0,fr,28816,23,1204417,1,1,Active Shallow Crust,0.0,89.98978,0.0,03/26/1186 +4.65091,50.45036,5665,11,18,14,54,7,4.55,15.0,fr,28817,113,1204441,1,1,Active Shallow Crust,0.0,89.98985,0.0,11/18/5665 +4.65091,50.45036,752,9,6,12,58,20,4.65,5.0,fr,28818,15,1204455,1,1,Active Shallow Crust,240.0122,57.9946,0.0,09/06/0752 +1.37417,41.68182,45,12,12,10,4,34,3.65,15.0,fr,28819,0,1204822,1,1,Active Shallow Crust,128.9008,89.96343,0.0,12/12/0045 +1.37417,41.68182,8696,6,6,21,24,41,3.75,5.0,fr,28820,173,1204824,1,1,Active Shallow Crust,0.0,89.98953,0.0,06/06/8696 +1.37417,41.68182,8927,3,22,16,9,36,3.95,5.0,fr,28821,178,1204848,1,2,Active Shallow Crust,0.0,89.99049,0.0,03/22/8927 +1.37417,41.68182,476,5,14,11,47,4,3.95,5.0,fr,28822,9,1204848,1,2,Active Shallow Crust,0.0,89.99049,0.0,05/14/0476 +1.37417,41.68182,9587,8,13,22,11,45,3.95,27.5,fr,28823,191,1204850,1,1,Active Shallow Crust,0.0,89.99049,0.0,08/13/9587 +1.37417,41.68182,5728,8,9,1,31,58,3.95,5.0,fr,28824,114,1204851,1,1,Active Shallow Crust,240.0192,58.0048,0.0,08/09/5728 +1.37417,41.68182,2757,6,18,18,21,32,4.05,15.0,fr,28825,55,1204861,1,1,Active Shallow Crust,0.0,89.99047,0.0,06/18/2757 +1.37417,41.68182,2160,5,10,20,57,59,4.15,5.0,fr,28826,43,1204872,1,1,Active Shallow Crust,0.0,89.98962,0.0,05/10/2160 +1.37417,41.68182,2445,5,10,13,52,26,4.25,15.0,fr,28827,48,1204885,1,1,Active Shallow Crust,0.0,89.98991,0.0,05/10/2445 +1.37417,41.68182,146,1,27,7,30,12,4.25,27.5,fr,28828,2,1204886,1,1,Active Shallow Crust,0.0,89.98991,0.0,01/27/0146 +1.37417,41.68182,3240,2,14,8,33,40,4.75,5.0,fr,28829,64,1204944,1,1,Active Shallow Crust,0.0,89.99007,0.0,02/14/3240 +4.28076,51.13392,1445,12,9,16,29,20,3.55,5.0,fr,28830,28,1205280,1,1,Active Shallow Crust,0.0,89.98734,0.0,12/09/1445 +4.28076,51.13392,4678,11,9,11,53,49,3.65,5.0,fr,28831,93,1205292,1,1,Active Shallow Crust,0.0,89.98872,0.0,11/09/4678 +4.28076,51.13392,3184,4,26,17,17,1,3.65,5.0,fr,28832,63,1205298,1,1,Active Shallow Crust,0.0,89.98859,-90.0,04/26/3184 +4.28076,51.13392,8258,6,25,4,10,6,3.75,5.0,fr,28833,165,1205304,1,1,Active Shallow Crust,0.0,89.98994,0.0,06/25/8258 +4.28076,51.13392,1857,11,9,18,34,56,3.85,5.0,fr,28834,37,1205316,1,1,Active Shallow Crust,0.0,89.99104,0.0,11/09/1857 +4.28076,51.13392,3816,7,3,5,27,20,3.85,15.0,fr,28835,76,1205317,1,1,Active Shallow Crust,0.0,89.99104,0.0,07/03/3816 +4.28076,51.13392,9610,1,26,18,17,51,4.45,5.0,fr,28836,192,1205388,1,1,Active Shallow Crust,0.0,89.99102,0.0,01/26/9610 +4.28076,51.13392,6681,8,9,18,0,33,4.55,15.0,fr,28837,133,1205401,1,1,Active Shallow Crust,0.0,89.98999,0.0,08/09/6681 +-6.04984,47.33998,7266,12,13,4,57,43,3.55,15.0,fr,28838,145,1205761,1,1,Active Shallow Crust,0.0,89.99316,0.0,12/13/7266 +-6.04984,47.33998,9738,1,10,14,33,35,4.35,5.0,fr,28839,194,1205859,1,1,Active Shallow Crust,240.0086,57.99599,0.0,01/10/9738 +5.31175,44.79941,361,9,25,10,1,45,3.55,5.0,fr,28840,7,1206240,1,1,Active Shallow Crust,0.0,89.99284,0.0,09/25/0361 +5.31175,44.79941,4042,4,3,9,54,3,3.55,15.0,fr,28841,80,1206241,1,1,Active Shallow Crust,0.0,89.99284,0.0,04/03/4042 +5.31175,44.79941,8141,12,30,11,4,40,3.55,5.0,fr,28842,162,1206246,1,1,Active Shallow Crust,0.0,89.99276,-90.0,12/30/8141 +5.31175,44.79941,2739,7,29,6,6,29,3.65,5.0,fr,28843,54,1206252,1,3,Active Shallow Crust,0.0,89.98724,0.0,07/29/2739 +5.31175,44.79941,9985,11,20,6,57,38,3.65,5.0,fr,28844,199,1206252,1,3,Active Shallow Crust,0.0,89.98724,0.0,11/20/9985 +5.31175,44.79941,2833,6,4,23,17,44,3.65,5.0,fr,28845,56,1206252,1,3,Active Shallow Crust,0.0,89.98724,0.0,06/04/2833 +5.31175,44.79941,6292,9,14,15,21,23,3.65,15.0,fr,28846,125,1206253,1,1,Active Shallow Crust,0.0,89.98724,0.0,09/14/6292 +5.31175,44.79941,484,2,13,1,28,32,3.65,27.5,fr,28847,9,1206254,1,1,Active Shallow Crust,0.0,89.98724,0.0,02/13/0484 +5.31175,44.79941,9020,11,20,15,46,22,3.75,5.0,fr,28848,180,1206264,1,3,Active Shallow Crust,0.0,89.98863,0.0,11/20/9020 +5.31175,44.79941,7018,7,7,20,27,58,3.75,5.0,fr,28849,140,1206264,1,3,Active Shallow Crust,0.0,89.98863,0.0,07/07/7018 +5.31175,44.79941,8679,11,21,11,38,33,3.75,5.0,fr,28850,173,1206264,1,3,Active Shallow Crust,0.0,89.98863,0.0,11/21/8679 +5.31175,44.79941,4981,5,7,17,55,11,3.75,5.0,fr,28851,99,1206270,1,1,Active Shallow Crust,0.0,89.9885,-90.0,05/07/4981 +5.31175,44.79941,5341,7,6,5,20,23,3.85,5.0,fr,28852,106,1206276,1,1,Active Shallow Crust,0.0,89.98987,0.0,07/06/5341 +5.31175,44.79941,8599,1,23,4,13,20,3.85,27.5,fr,28853,171,1206278,1,1,Active Shallow Crust,0.0,89.98987,0.0,01/23/8599 +5.31175,44.79941,5730,11,8,16,51,35,3.85,5.0,fr,28854,114,1206279,1,1,Active Shallow Crust,240.0101,57.99745,0.0,11/08/5730 +5.31175,44.79941,4139,11,6,11,24,56,4.05,5.0,fr,28855,82,1206300,1,1,Active Shallow Crust,0.0,89.99195,0.0,11/06/4139 +5.31175,44.79941,8574,10,25,7,0,4,4.35,27.5,fr,28856,171,1206338,1,1,Active Shallow Crust,0.0,89.9886,0.0,10/25/8574 +5.31175,44.79941,4476,9,4,6,20,42,4.35,5.0,fr,28857,89,1206345,1,1,Active Shallow Crust,128.8985,89.98244,0.0,09/04/4476 +5.31175,44.79941,5117,1,28,9,31,48,4.65,5.0,fr,28858,102,1206372,1,1,Active Shallow Crust,0.0,89.98991,0.0,01/28/5117 +5.31175,44.79941,8011,5,5,9,29,36,6.05,15.0,fr,28859,160,1206547,1,1,Active Shallow Crust,0.0,89.98981,-90.0,05/05/8011 +1.30808,48.37943,3761,8,25,0,42,54,3.55,5.0,fr,28860,75,1206720,1,2,Active Shallow Crust,0.0,89.98995,0.0,08/25/3761 +1.30808,48.37943,847,1,25,16,50,45,3.55,5.0,fr,28861,16,1206720,1,2,Active Shallow Crust,0.0,89.98995,0.0,01/25/0847 +1.30808,48.37943,695,7,18,0,7,46,3.55,5.0,fr,28862,13,1206723,1,1,Active Shallow Crust,240.012,57.99815,0.0,07/18/0695 +1.30808,48.37943,8302,2,2,3,45,41,3.75,5.0,fr,28863,166,1206744,1,1,Active Shallow Crust,0.0,89.98936,0.0,02/02/8302 +1.30808,48.37943,859,7,25,22,37,56,4.05,5.0,fr,28864,17,1206780,1,1,Active Shallow Crust,0.0,89.98964,0.0,07/25/0859 +1.30808,48.37943,4923,7,22,23,35,20,4.15,15.0,fr,28865,98,1206793,1,1,Active Shallow Crust,0.0,89.98993,0.0,07/22/4923 +1.30808,48.37943,818,9,24,13,3,4,4.25,5.0,fr,28866,16,1206813,1,1,Active Shallow Crust,128.8942,89.9809,0.0,09/24/0818 +-2.03091,50.29494,4767,6,14,8,23,2,3.65,15.0,fr,28867,95,1207213,1,1,Active Shallow Crust,0.0,89.99139,0.0,06/14/4767 +-2.03091,50.29494,726,4,24,7,8,52,4.15,5.0,fr,28868,14,1207272,1,1,Active Shallow Crust,0.0,89.99031,0.0,04/24/0726 +-2.030901,50.29494,2514,7,24,3,0,4,6.45,8.491219,fr,28869,50,1207548,1,1,Active Shallow Crust,359.9999,89.99004,0.0,07/24/2514 +-1.34,44.54616,7961,7,14,14,26,15,3.85,5.0,fr,28870,159,1207716,1,1,Active Shallow Crust,0.0,89.98982,0.0,07/14/7961 +0.48119,50.17914,8592,4,5,18,32,19,3.65,5.0,fr,28871,171,1208172,1,1,Active Shallow Crust,0.0,89.98993,0.0,04/05/8592 +0.48119,50.17914,9066,2,11,6,28,58,3.85,5.0,fr,28872,181,1208205,1,1,Active Shallow Crust,128.8953,89.99371,0.0,02/11/9066 +0.48119,50.17914,9454,11,27,21,56,21,3.95,5.0,fr,28873,189,1208208,1,1,Active Shallow Crust,0.0,89.99007,0.0,11/27/9454 +0.48119,50.17914,1165,9,26,9,35,56,3.95,15.0,fr,28874,23,1208209,1,1,Active Shallow Crust,0.0,89.99007,0.0,09/26/1165 +0.48119,50.17914,279,8,20,16,41,18,4.45,5.0,fr,28875,5,1208271,1,1,Active Shallow Crust,240.0063,57.99488,0.0,08/20/0279 +0.48119,50.17914,7916,5,3,20,46,2,5.05,15.0,fr,28876,158,1208341,1,1,Active Shallow Crust,0.0,89.99002,0.0,05/03/7916 +0.48119,50.17914,3456,5,16,21,53,41,5.15,15.0,fr,28877,69,1208353,1,1,Active Shallow Crust,0.0,89.99002,0.0,05/16/3456 +5.79674,42.33105,5687,1,20,11,4,12,3.75,5.0,fr,28878,113,1208664,1,1,Active Shallow Crust,0.0,89.98816,0.0,01/20/5687 +-0.6006,48.66406,9072,11,8,19,28,27,3.55,5.0,fr,28879,181,1209120,1,2,Active Shallow Crust,0.0,89.99001,0.0,11/08/9072 +-0.6006,48.66406,7895,9,20,0,8,37,3.55,5.0,fr,28880,157,1209120,1,2,Active Shallow Crust,0.0,89.99001,0.0,09/20/7895 +-0.6006,48.66406,5981,11,15,12,34,4,3.55,15.0,fr,28881,119,1209121,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/15/5981 +-0.6006,48.66406,6104,10,14,19,4,39,3.55,5.0,fr,28882,122,1209123,1,1,Active Shallow Crust,240.0125,57.99821,0.0,10/14/6104 +-0.6006,48.66406,8072,11,14,19,35,39,3.55,5.0,fr,28883,161,1209126,1,1,Active Shallow Crust,0.0,89.98989,-90.0,11/14/8072 +-0.6006,48.66406,6483,8,8,17,38,8,3.55,15.0,fr,28884,129,1209130,1,1,Active Shallow Crust,128.8961,89.99376,0.0,08/08/6483 +-0.6006,48.66406,4072,5,24,7,34,57,3.65,5.0,fr,28885,81,1209141,1,1,Active Shallow Crust,128.9001,89.96357,0.0,05/24/4072 +-0.6006,48.66406,9363,10,30,8,46,47,3.75,5.0,fr,28886,187,1209144,1,3,Active Shallow Crust,0.0,89.99008,0.0,10/30/9363 +-0.6006,48.66406,4499,6,1,13,13,39,3.75,5.0,fr,28887,89,1209144,1,3,Active Shallow Crust,0.0,89.99008,0.0,06/01/4499 +-0.6006,48.66406,1666,12,16,4,1,36,3.75,5.0,fr,28888,33,1209144,1,3,Active Shallow Crust,0.0,89.99008,0.0,12/16/1666 +-0.6006,48.66406,801,10,27,3,6,10,4.35,5.0,fr,28889,16,1209222,1,1,Active Shallow Crust,0.0,89.98994,-90.0,10/27/0801 +-0.6006,48.66406,2810,11,27,3,14,29,4.55,5.0,fr,28890,56,1209240,1,1,Active Shallow Crust,0.0,89.99,0.0,11/27/2810 +-0.6006,48.66406,1394,10,28,4,11,28,4.55,15.0,fr,28891,27,1209244,1,1,Active Shallow Crust,240.01,57.9975,0.0,10/28/1394 +-0.6006,48.66406,5664,8,12,13,37,54,4.65,5.0,fr,28892,113,1209252,1,1,Active Shallow Crust,0.0,89.98991,0.0,08/12/5664 +-0.6006,48.66406,9258,6,14,23,30,39,4.75,15.0,fr,28893,185,1209268,1,1,Active Shallow Crust,240.0083,58.00467,0.0,06/14/9258 +-0.6006,48.66406,2778,10,9,17,46,36,4.95,27.5,fr,28894,55,1209290,1,1,Active Shallow Crust,0.0,89.99003,0.0,10/09/2778 +-0.6006,48.66406,1086,4,14,19,39,34,5.15,5.0,fr,28895,21,1209312,1,1,Active Shallow Crust,0.0,89.98997,0.0,04/14/1086 +4.1985,50.3862,9293,3,13,19,8,39,3.55,5.0,fr,28896,185,1209600,1,5,Active Shallow Crust,0.0,89.98714,0.0,03/13/9293 +4.1985,50.3862,3282,7,19,12,21,22,3.55,5.0,fr,28897,65,1209600,1,5,Active Shallow Crust,0.0,89.98714,0.0,07/19/3282 +4.1985,50.3862,7205,2,22,0,29,40,3.55,5.0,fr,28898,144,1209600,1,5,Active Shallow Crust,0.0,89.98714,0.0,02/22/7205 +4.1985,50.3862,4540,7,30,20,42,52,3.55,5.0,fr,28899,90,1209600,1,5,Active Shallow Crust,0.0,89.98714,0.0,07/30/4540 +4.1985,50.3862,7296,1,16,11,37,22,3.55,5.0,fr,28900,145,1209600,1,5,Active Shallow Crust,0.0,89.98714,0.0,01/16/7296 +4.1985,50.3862,7301,10,19,20,23,3,3.55,15.0,fr,28901,146,1209601,1,2,Active Shallow Crust,0.0,89.98714,0.0,10/19/7301 +4.1985,50.3862,2067,5,25,7,27,13,3.55,15.0,fr,28902,41,1209601,1,2,Active Shallow Crust,0.0,89.98714,0.0,05/25/2067 +4.1985,50.3862,5515,9,17,14,15,0,3.55,5.0,fr,28903,110,1209603,1,1,Active Shallow Crust,240.0122,57.99852,0.0,09/17/5515 +4.1985,50.3862,6125,1,23,20,16,18,3.55,5.0,fr,28904,122,1209606,1,1,Active Shallow Crust,0.0,89.98699,-90.0,01/23/6125 +4.1985,50.3862,2828,8,5,8,14,47,3.55,5.0,fr,28905,56,1209609,1,1,Active Shallow Crust,128.8957,89.99357,0.0,08/05/2828 +4.1985,50.3862,4004,9,28,1,11,12,3.65,5.0,fr,28906,80,1209612,1,4,Active Shallow Crust,0.0,89.98854,0.0,09/28/4004 +4.1985,50.3862,8928,9,3,12,32,27,3.65,5.0,fr,28907,178,1209612,1,4,Active Shallow Crust,0.0,89.98854,0.0,09/03/8928 +4.1985,50.3862,6469,8,28,8,45,9,3.65,5.0,fr,28908,129,1209612,1,4,Active Shallow Crust,0.0,89.98854,0.0,08/28/6469 +4.1985,50.3862,3468,4,27,5,27,26,3.65,5.0,fr,28909,69,1209612,1,4,Active Shallow Crust,0.0,89.98854,0.0,04/27/3468 +4.1985,50.3862,576,7,23,14,3,35,3.65,15.0,fr,28910,11,1209613,1,5,Active Shallow Crust,0.0,89.98854,0.0,07/23/0576 +4.1985,50.3862,3985,1,1,22,20,40,3.65,15.0,fr,28911,79,1209613,1,5,Active Shallow Crust,0.0,89.98854,0.0,01/01/3985 +4.1985,50.3862,9371,7,22,3,45,43,3.65,15.0,fr,28912,187,1209613,1,5,Active Shallow Crust,0.0,89.98854,0.0,07/22/9371 +4.1985,50.3862,5293,6,7,10,20,19,3.65,15.0,fr,28913,105,1209613,1,5,Active Shallow Crust,0.0,89.98854,0.0,06/07/5293 +4.1985,50.3862,3015,5,25,14,4,23,3.65,15.0,fr,28914,60,1209613,1,5,Active Shallow Crust,0.0,89.98854,0.0,05/25/3015 +4.1985,50.3862,117,1,31,10,54,35,3.65,5.0,fr,28915,2,1209615,1,2,Active Shallow Crust,240.0021,58.0122,0.0,01/31/0117 +4.1985,50.3862,5709,8,25,22,11,22,3.65,5.0,fr,28916,114,1209615,1,2,Active Shallow Crust,240.0021,58.0122,0.0,08/25/5709 +4.1985,50.3862,615,10,7,5,44,13,3.65,15.0,fr,28917,12,1209616,1,1,Active Shallow Crust,240.0021,58.0122,0.0,10/07/0615 +4.1985,50.3862,5792,1,21,15,51,55,3.65,5.0,fr,28918,115,1209618,1,1,Active Shallow Crust,0.0,89.9884,-90.0,01/21/5792 +4.1985,50.3862,4684,1,23,3,7,5,3.65,5.0,fr,28919,93,1209621,1,1,Active Shallow Crust,128.9008,89.9636,0.0,01/23/4684 +4.1985,50.3862,9415,3,27,19,11,25,3.75,5.0,fr,28920,188,1209624,1,2,Active Shallow Crust,0.0,89.98978,0.0,03/27/9415 +4.1985,50.3862,3732,8,31,9,10,49,3.75,5.0,fr,28921,74,1209624,1,2,Active Shallow Crust,0.0,89.98978,0.0,08/31/3732 +4.1985,50.3862,1334,8,17,9,30,56,3.75,27.5,fr,28922,26,1209626,1,1,Active Shallow Crust,0.0,89.98978,0.0,08/17/1334 +4.1985,50.3862,2345,7,30,14,12,19,3.75,5.0,fr,28923,46,1209630,1,1,Active Shallow Crust,0.0,89.98967,-90.0,07/30/2345 +4.1985,50.3862,9672,5,7,0,31,26,3.75,5.0,fr,28924,193,1209633,1,2,Active Shallow Crust,128.8969,89.96706,0.0,05/07/9672 +4.1985,50.3862,2207,8,13,11,56,12,3.75,5.0,fr,28925,44,1209633,1,2,Active Shallow Crust,128.8969,89.96706,0.0,08/13/2207 +4.1985,50.3862,4463,2,28,20,57,21,3.85,27.5,fr,28926,89,1209638,1,1,Active Shallow Crust,0.0,89.9909,0.0,02/28/4463 +4.1985,50.3862,7799,8,29,19,14,46,3.85,5.0,fr,28927,155,1209642,1,1,Active Shallow Crust,0.0,89.99079,-90.0,08/29/7799 +4.1985,50.3862,7918,12,13,19,29,56,3.95,5.0,fr,28928,158,1209648,1,1,Active Shallow Crust,0.0,89.99188,0.0,12/13/7918 +4.1985,50.3862,6760,11,10,4,5,32,3.95,15.0,fr,28929,135,1209649,1,2,Active Shallow Crust,0.0,89.99188,0.0,11/10/6760 +4.1985,50.3862,4626,2,20,23,7,51,3.95,15.0,fr,28930,92,1209649,1,2,Active Shallow Crust,0.0,89.99188,0.0,02/20/4626 +4.1985,50.3862,8677,10,2,22,14,15,3.95,27.5,fr,28931,173,1209650,1,1,Active Shallow Crust,0.0,89.99188,0.0,10/02/8677 +4.1985,50.3862,5255,5,6,12,59,12,3.95,5.0,fr,28932,105,1209654,1,1,Active Shallow Crust,0.0,89.99179,-90.0,05/06/5255 +4.1985,50.3862,5231,11,7,18,30,3,3.95,27.5,fr,28933,104,1209659,1,2,Active Shallow Crust,128.8998,89.99391,0.0,11/07/5231 +4.1985,50.3862,1398,4,27,4,13,46,3.95,27.5,fr,28934,27,1209659,1,2,Active Shallow Crust,128.8998,89.99391,0.0,04/27/1398 +4.1985,50.3862,2472,1,13,11,8,36,4.05,5.0,fr,28935,49,1209660,1,2,Active Shallow Crust,0.0,89.98915,0.0,01/13/2472 +4.1985,50.3862,9272,5,29,22,27,35,4.05,5.0,fr,28936,185,1209660,1,2,Active Shallow Crust,0.0,89.98915,0.0,05/29/9272 +4.1985,50.3862,3100,7,23,17,18,15,4.05,27.5,fr,28937,61,1209662,1,1,Active Shallow Crust,0.0,89.98915,0.0,07/23/3100 +4.1985,50.3862,4948,1,8,17,47,26,4.05,5.0,fr,28938,98,1209663,1,1,Active Shallow Crust,240.006,58.00598,0.0,01/08/4948 +4.1985,50.3862,7786,2,21,11,8,1,4.15,5.0,fr,28939,155,1209672,1,1,Active Shallow Crust,0.0,89.99033,0.0,02/21/7786 +4.1985,50.3862,3517,12,13,20,54,24,4.15,5.0,fr,28940,70,1209675,1,1,Active Shallow Crust,240.0086,57.9978,0.0,12/13/3517 +4.1985,50.3862,3160,9,26,18,13,51,4.25,5.0,fr,28941,63,1209693,1,1,Active Shallow Crust,128.8928,89.98109,0.0,09/26/3160 +4.1985,50.3862,8059,12,11,16,56,25,4.35,5.0,fr,28942,161,1209696,1,1,Active Shallow Crust,0.0,89.98976,0.0,12/11/8059 +4.1985,50.3862,3637,5,10,6,34,11,4.45,5.0,fr,28943,72,1209708,1,1,Active Shallow Crust,0.0,89.99088,0.0,05/10/3637 +4.1985,50.3862,1246,7,29,8,27,16,4.45,27.5,fr,28944,24,1209710,1,1,Active Shallow Crust,0.0,89.99088,0.0,07/29/1246 +4.1985,50.3862,8788,2,27,21,42,25,4.55,5.0,fr,28945,175,1209720,1,1,Active Shallow Crust,0.0,89.98983,0.0,02/27/8788 +4.1985,50.3862,9856,7,24,5,34,38,4.55,15.0,fr,28946,197,1209721,1,1,Active Shallow Crust,0.0,89.98983,0.0,07/24/9856 +4.1985,50.3862,4601,7,4,19,41,17,4.65,15.0,fr,28947,92,1209733,1,1,Active Shallow Crust,0.0,89.98913,0.0,07/04/4601 +4.1985,50.3862,541,7,10,7,20,27,4.65,27.5,fr,28948,10,1209734,1,2,Active Shallow Crust,0.0,89.98913,0.0,07/10/0541 +4.1985,50.3862,5234,5,31,17,2,56,4.65,27.5,fr,28949,104,1209734,1,2,Active Shallow Crust,0.0,89.98913,0.0,05/31/5234 +4.1985,50.3862,8770,9,17,21,16,29,4.75,5.0,fr,28950,175,1209744,1,1,Active Shallow Crust,0.0,89.99031,0.0,09/17/8770 +4.1985,50.3862,2911,2,28,22,0,18,4.95,5.0,fr,28951,58,1209768,1,1,Active Shallow Crust,0.0,89.98973,0.0,02/28/2911 +4.1985,50.3862,6204,4,8,17,59,56,5.05,5.0,fr,28952,124,1209780,1,1,Active Shallow Crust,0.0,89.98971,0.0,04/08/6204 +4.1985,50.3862,2249,2,20,20,8,17,5.05,5.0,fr,28953,44,1209786,1,1,Active Shallow Crust,0.0,89.98959,-90.0,02/20/2249 +4.1985,50.3862,4146,8,5,19,30,37,5.45,5.0,fr,28954,82,1209828,1,1,Active Shallow Crust,0.0,89.9899,0.0,08/05/4146 +4.1985,50.3862,2968,12,29,0,33,56,5.75,15.0,fr,28955,59,1209874,1,1,Active Shallow Crust,128.8674,89.99096,0.0,12/29/2968 +5.59626,49.08524,5799,11,20,21,26,30,3.55,5.0,fr,28956,115,1210080,1,1,Active Shallow Crust,0.0,89.98679,0.0,11/20/5799 +5.59626,49.08524,7539,1,15,8,47,56,3.75,5.0,fr,28957,150,1210104,1,1,Active Shallow Crust,0.0,89.98951,0.0,01/15/7539 +7.51077,47.02672,4815,9,23,20,30,2,3.55,5.0,fr,28958,96,1210560,1,8,Active Shallow Crust,0.0,89.99313,0.0,09/23/4815 +7.51077,47.02672,2777,12,10,19,35,9,3.55,5.0,fr,28959,55,1210560,1,8,Active Shallow Crust,0.0,89.99313,0.0,12/10/2777 +7.51077,47.02672,3968,5,19,17,33,16,3.55,5.0,fr,28960,79,1210560,1,8,Active Shallow Crust,0.0,89.99313,0.0,05/19/3968 +7.51077,47.02672,9559,11,18,7,44,6,3.55,5.0,fr,28961,191,1210560,1,8,Active Shallow Crust,0.0,89.99313,0.0,11/18/9559 +7.51077,47.02672,8520,12,26,8,15,51,3.55,5.0,fr,28962,170,1210560,1,8,Active Shallow Crust,0.0,89.99313,0.0,12/26/8520 +7.51077,47.02672,9672,3,12,5,42,40,3.55,5.0,fr,28963,193,1210560,1,8,Active Shallow Crust,0.0,89.99313,0.0,03/12/9672 +7.51077,47.02672,5989,12,2,21,22,56,3.55,5.0,fr,28964,119,1210560,1,8,Active Shallow Crust,0.0,89.99313,0.0,12/02/5989 +7.51077,47.02672,1167,11,7,5,21,33,3.55,5.0,fr,28965,23,1210560,1,8,Active Shallow Crust,0.0,89.99313,0.0,11/07/1167 +7.51077,47.02672,8162,4,11,1,51,22,3.55,15.0,fr,28966,163,1210561,1,4,Active Shallow Crust,0.0,89.99313,0.0,04/11/8162 +7.51077,47.02672,1359,1,15,4,3,7,3.55,15.0,fr,28967,27,1210561,1,4,Active Shallow Crust,0.0,89.99313,0.0,01/15/1359 +7.51077,47.02672,9204,3,12,6,2,48,3.55,15.0,fr,28968,184,1210561,1,4,Active Shallow Crust,0.0,89.99313,0.0,03/12/9204 +7.51077,47.02672,802,11,10,23,14,20,3.55,15.0,fr,28969,16,1210561,1,4,Active Shallow Crust,0.0,89.99313,0.0,11/10/0802 +7.51077,47.02672,3071,8,13,14,32,52,3.55,27.5,fr,28970,61,1210562,1,2,Active Shallow Crust,0.0,89.99313,0.0,08/13/3071 +7.51077,47.02672,6479,12,22,7,58,41,3.55,27.5,fr,28971,129,1210562,1,2,Active Shallow Crust,0.0,89.99313,0.0,12/22/6479 +7.51077,47.02672,1008,2,2,20,7,13,3.55,5.0,fr,28972,20,1210563,1,2,Active Shallow Crust,240.0125,57.99831,0.0,02/02/1008 +7.51077,47.02672,2782,2,24,4,59,49,3.55,5.0,fr,28973,55,1210563,1,2,Active Shallow Crust,240.0125,57.99831,0.0,02/24/2782 +7.51077,47.02672,8736,9,30,21,13,40,3.55,15.0,fr,28974,174,1210564,1,1,Active Shallow Crust,240.0125,57.99831,0.0,09/30/8736 +7.51077,47.02672,7595,5,15,19,35,25,3.65,5.0,fr,28975,151,1210572,1,3,Active Shallow Crust,0.0,89.98775,0.0,05/15/7595 +7.51077,47.02672,589,5,22,7,37,34,3.65,5.0,fr,28976,11,1210572,1,3,Active Shallow Crust,0.0,89.98775,0.0,05/22/0589 +7.51077,47.02672,3745,1,8,6,13,19,3.65,5.0,fr,28977,74,1210572,1,3,Active Shallow Crust,0.0,89.98775,0.0,01/08/3745 +7.51077,47.02672,2116,6,6,1,35,20,3.65,15.0,fr,28978,42,1210573,1,1,Active Shallow Crust,0.0,89.98775,0.0,06/06/2116 +7.51077,47.02672,7245,8,4,21,27,35,3.65,5.0,fr,28979,144,1210575,1,2,Active Shallow Crust,240.0004,58.01294,0.0,08/04/7245 +7.51077,47.02672,7461,6,8,5,45,37,3.65,5.0,fr,28980,149,1210575,1,2,Active Shallow Crust,240.0004,58.01294,0.0,06/08/7461 +7.51077,47.02672,4168,7,20,11,30,0,3.65,27.5,fr,28981,83,1210577,1,1,Active Shallow Crust,240.0004,58.01286,0.0,07/20/4168 +7.51077,47.02672,2552,4,22,19,42,5,3.75,5.0,fr,28982,51,1210584,1,3,Active Shallow Crust,0.0,89.98908,0.0,04/22/2552 +7.51077,47.02672,1743,2,5,21,59,52,3.75,5.0,fr,28983,34,1210584,1,3,Active Shallow Crust,0.0,89.98908,0.0,02/05/1743 +7.51077,47.02672,4060,1,20,9,0,57,3.75,5.0,fr,28984,81,1210584,1,3,Active Shallow Crust,0.0,89.98908,0.0,01/20/4060 +7.51077,47.02672,952,12,23,13,47,59,3.75,15.0,fr,28985,19,1210585,1,1,Active Shallow Crust,0.0,89.98908,0.0,12/23/0952 +7.51077,47.02672,4744,6,8,8,30,59,3.75,5.0,fr,28986,94,1210587,1,1,Active Shallow Crust,240.0083,58.01726,0.0,06/08/4744 +7.51077,47.02672,1031,9,14,16,29,50,3.75,15.0,fr,28987,20,1210591,1,1,Active Shallow Crust,0.0,89.98895,-90.0,09/14/1031 +7.51077,47.02672,2147,10,22,6,11,11,3.75,15.0,fr,28988,42,1210594,1,2,Active Shallow Crust,128.8967,89.96693,0.0,10/22/2147 +7.51077,47.02672,3815,5,17,19,13,24,3.75,15.0,fr,28989,76,1210594,1,2,Active Shallow Crust,128.8967,89.96693,0.0,05/17/3815 +7.51077,47.02672,8847,12,23,1,36,28,3.85,5.0,fr,28990,176,1210596,1,1,Active Shallow Crust,0.0,89.99026,0.0,12/23/8847 +7.51077,47.02672,8779,2,20,23,5,14,3.95,15.0,fr,28991,175,1210609,1,6,Active Shallow Crust,0.0,89.99133,0.0,02/20/8779 +7.51077,47.02672,8611,1,2,9,59,10,3.95,15.0,fr,28992,172,1210609,1,6,Active Shallow Crust,0.0,89.99133,0.0,01/02/8611 +7.51077,47.02672,7229,3,19,2,29,14,3.95,15.0,fr,28993,144,1210609,1,6,Active Shallow Crust,0.0,89.99133,0.0,03/19/7229 +7.51077,47.02672,2295,4,26,17,57,31,3.95,15.0,fr,28994,45,1210609,1,6,Active Shallow Crust,0.0,89.99133,0.0,04/26/2295 +7.51077,47.02672,5120,7,4,4,16,57,3.95,15.0,fr,28995,102,1210609,1,6,Active Shallow Crust,0.0,89.99133,0.0,07/04/5120 +7.51077,47.02672,2297,9,14,23,54,34,3.95,15.0,fr,28996,45,1210609,1,6,Active Shallow Crust,0.0,89.99133,0.0,09/14/2297 +7.51077,47.02672,3213,8,7,23,12,36,3.95,27.5,fr,28997,64,1210610,1,1,Active Shallow Crust,0.0,89.99133,0.0,08/07/3213 +7.51077,47.02672,7555,9,25,3,57,0,3.95,27.5,fr,28998,151,1210613,1,1,Active Shallow Crust,240.0196,58.00537,0.0,09/25/7555 +7.51077,47.02672,6684,7,16,12,47,52,3.95,5.0,fr,28999,133,1210614,1,1,Active Shallow Crust,0.0,89.99123,-90.0,07/16/6684 +7.51077,47.02672,8037,10,10,2,37,42,4.05,5.0,fr,29000,160,1210620,1,2,Active Shallow Crust,0.0,89.9884,0.0,10/10/8037 +7.51077,47.02672,2732,8,11,5,15,13,4.05,5.0,fr,29001,54,1210620,1,2,Active Shallow Crust,0.0,89.9884,0.0,08/11/2732 +7.51077,47.02672,4093,8,22,6,47,5,4.05,15.0,fr,29002,81,1210621,1,2,Active Shallow Crust,0.0,89.9884,0.0,08/22/4093 +7.51077,47.02672,7616,1,26,22,56,15,4.05,15.0,fr,29003,152,1210621,1,2,Active Shallow Crust,0.0,89.9884,0.0,01/26/7616 +7.51077,47.02672,1375,12,5,20,27,32,4.05,27.5,fr,29004,27,1210625,1,1,Active Shallow Crust,240.0058,58.00624,0.0,12/05/1375 +7.51077,47.02672,3600,12,25,6,11,55,4.05,5.0,fr,29005,71,1210626,1,1,Active Shallow Crust,0.0,89.98827,-90.0,12/25/3600 +7.51077,47.02672,9135,9,12,1,35,44,4.05,5.0,fr,29006,182,1210629,1,1,Active Shallow Crust,128.891,89.99227,0.0,09/12/9135 +7.51077,47.02672,7877,2,24,8,15,20,4.15,5.0,fr,29007,157,1210632,1,1,Active Shallow Crust,0.0,89.98966,0.0,02/24/7877 +7.51077,47.02672,1943,12,24,2,11,21,4.15,27.5,fr,29008,38,1210634,1,1,Active Shallow Crust,0.0,89.98966,0.0,12/24/1943 +7.51077,47.02672,3254,11,24,15,0,11,4.25,5.0,fr,29009,65,1210644,1,1,Active Shallow Crust,0.0,89.99079,0.0,11/24/3254 +7.51077,47.02672,8490,7,15,14,18,1,4.25,15.0,fr,29010,169,1210645,1,1,Active Shallow Crust,0.0,89.99079,0.0,07/15/8490 +7.51077,47.02672,1596,10,24,16,5,8,4.25,27.5,fr,29011,31,1210646,1,1,Active Shallow Crust,0.0,89.99079,0.0,10/24/1596 +7.51077,47.02672,1790,10,24,2,5,55,4.25,27.5,fr,29012,35,1210649,1,1,Active Shallow Crust,240.0079,57.99411,0.0,10/24/1790 +7.51077,47.02672,9221,5,10,20,17,42,4.35,5.0,fr,29013,184,1210659,1,1,Active Shallow Crust,240.0083,57.99619,0.0,05/10/9221 +7.51077,47.02672,8777,4,26,16,47,23,4.35,27.5,fr,29014,175,1210667,1,1,Active Shallow Crust,128.8984,89.98254,0.0,04/26/8777 +7.51077,47.02672,8800,1,23,5,27,37,4.45,5.0,fr,29015,175,1210668,1,1,Active Shallow Crust,0.0,89.99024,0.0,01/23/8800 +7.51077,47.02672,6922,1,2,14,11,41,4.45,5.0,fr,29016,138,1210677,1,1,Active Shallow Crust,128.8916,89.9939,0.0,01/02/6922 +7.51077,47.02672,8960,3,18,11,30,45,4.55,27.5,fr,29017,179,1210691,1,1,Active Shallow Crust,128.894,89.98567,0.0,03/18/8960 +7.51077,47.02672,8374,1,11,0,26,51,4.65,5.0,fr,29018,167,1210695,1,1,Active Shallow Crust,240.0108,57.99444,0.0,01/11/8374 +7.51077,47.02672,3607,8,5,9,45,10,4.65,5.0,fr,29019,72,1210701,1,1,Active Shallow Crust,128.8914,89.98676,0.0,08/05/3607 +7.51077,47.02672,7104,3,6,5,48,33,4.85,5.0,fr,29020,142,1210722,1,1,Active Shallow Crust,0.0,89.99066,-90.0,03/06/7104 +7.51077,47.02672,1245,11,13,9,7,24,4.95,27.5,fr,29021,24,1210730,1,1,Active Shallow Crust,0.0,89.99039,0.0,11/13/1245 +7.51077,47.02672,7078,10,25,0,10,16,5.15,5.0,fr,29022,141,1210752,1,1,Active Shallow Crust,0.0,89.9902,0.0,10/25/7078 +7.510771,47.02672,7041,2,17,23,6,55,6.05,5.357596,fr,29023,140,1210860,1,1,Active Shallow Crust,0.0,89.98994,0.0,02/17/7041 +-1.15995,46.47131,2938,6,27,12,59,43,3.55,27.5,fr,29024,58,1211042,1,1,Active Shallow Crust,0.0,89.98959,0.0,06/27/2938 +-1.15995,46.47131,6411,4,16,1,21,26,3.65,5.0,fr,29025,128,1211052,1,1,Active Shallow Crust,0.0,89.99072,0.0,04/16/6411 +-1.15995,46.47131,9666,11,23,17,19,7,3.75,5.0,fr,29026,193,1211064,1,3,Active Shallow Crust,0.0,89.99035,0.0,11/23/9666 +-1.15995,46.47131,5196,11,23,17,18,5,3.75,5.0,fr,29027,103,1211064,1,3,Active Shallow Crust,0.0,89.99035,0.0,11/23/5196 +-1.15995,46.47131,2126,4,24,16,1,5,3.75,5.0,fr,29028,42,1211064,1,3,Active Shallow Crust,0.0,89.99035,0.0,04/24/2126 +-1.15995,46.47131,5646,2,1,1,48,15,3.85,5.0,fr,29029,112,1211076,1,2,Active Shallow Crust,0.0,89.99017,0.0,02/01/5646 +-1.15995,46.47131,4226,2,28,7,44,33,3.85,5.0,fr,29030,84,1211076,1,2,Active Shallow Crust,0.0,89.99017,0.0,02/28/4226 +-1.15995,46.47131,2526,11,13,23,26,21,3.85,15.0,fr,29031,50,1211077,1,1,Active Shallow Crust,0.0,89.99017,0.0,11/13/2526 +-1.15995,46.47131,945,6,10,5,55,11,3.85,27.5,fr,29032,18,1211078,1,1,Active Shallow Crust,0.0,89.99017,0.0,06/10/0945 +-1.15995,46.47131,5952,5,13,14,24,20,3.85,27.5,fr,29033,119,1211087,1,1,Active Shallow Crust,128.8956,89.99386,0.0,05/13/5952 +-1.15995,46.47131,661,9,20,12,45,6,3.95,5.0,fr,29034,13,1211088,1,1,Active Shallow Crust,0.0,89.99014,0.0,09/20/0661 +-1.15995,46.47131,3834,4,26,19,10,6,3.95,15.0,fr,29035,76,1211089,1,1,Active Shallow Crust,0.0,89.99014,0.0,04/26/3834 +-1.15995,46.47131,5654,5,21,19,8,53,4.05,5.0,fr,29036,113,1211103,1,1,Active Shallow Crust,240.0059,58.00584,0.0,05/21/5654 +-1.15995,46.47131,8715,1,18,23,57,34,4.15,27.5,fr,29037,174,1211114,1,1,Active Shallow Crust,0.0,89.99043,0.0,01/18/8715 +-1.15995,46.47131,2626,12,18,23,25,27,4.15,5.0,fr,29038,52,1211121,1,1,Active Shallow Crust,128.8974,89.99391,0.0,12/18/2626 +-1.15995,46.47131,1733,12,27,7,30,47,4.25,15.0,fr,29039,34,1211125,1,1,Active Shallow Crust,0.0,89.98991,0.0,12/27/1733 +-1.15995,46.47131,3582,2,4,15,40,22,4.25,5.0,fr,29040,71,1211130,1,1,Active Shallow Crust,0.0,89.9898,-90.0,02/04/3582 +-1.15995,46.47131,2077,3,3,15,48,42,4.35,5.0,fr,29041,41,1211136,1,1,Active Shallow Crust,0.0,89.99033,0.0,03/03/2077 +-1.15995,46.47131,4927,5,16,3,48,13,4.55,5.0,fr,29042,98,1211160,1,1,Active Shallow Crust,0.0,89.99011,0.0,05/16/4927 +-1.15995,46.47131,9592,12,29,1,55,20,4.65,5.0,fr,29043,191,1211172,1,1,Active Shallow Crust,0.0,89.99021,0.0,12/29/9592 +-1.15995,46.47131,8531,5,7,2,10,52,4.75,5.0,fr,29044,170,1211190,1,1,Active Shallow Crust,0.0,89.98985,-90.0,05/07/8531 +-1.15995,46.47131,9301,4,30,2,11,1,4.85,5.0,fr,29045,186,1211199,1,1,Active Shallow Crust,240.0172,58.00226,0.0,04/30/9301 +-1.15995,46.47131,2657,10,7,5,42,59,5.95,15.0,fr,29046,53,1211329,1,1,Active Shallow Crust,0.0,89.99002,0.0,10/07/2657 +1.31273,46.25268,6496,3,31,16,9,24,3.55,5.0,fr,29047,129,1211520,1,1,Active Shallow Crust,0.0,89.98954,0.0,03/31/6496 +1.31273,46.25268,2703,9,2,0,25,55,3.55,27.5,fr,29048,54,1211522,1,1,Active Shallow Crust,0.0,89.98954,0.0,09/02/2703 +1.31273,46.25268,3302,1,16,11,8,43,3.55,5.0,fr,29049,66,1211526,1,1,Active Shallow Crust,0.0,89.98942,-90.0,01/16/3302 +1.31273,46.25268,6906,6,5,18,17,0,3.55,15.0,fr,29050,138,1211530,1,1,Active Shallow Crust,128.8964,89.9939,0.0,06/05/6906 +1.31273,46.25268,870,7,21,2,24,0,3.65,15.0,fr,29051,17,1211533,1,1,Active Shallow Crust,0.0,89.99068,0.0,07/21/0870 +1.31273,46.25268,7041,10,30,17,17,19,3.75,5.0,fr,29052,140,1211544,1,1,Active Shallow Crust,0.0,89.99031,0.0,10/30/7041 +1.31273,46.25268,831,4,8,19,42,13,3.75,5.0,fr,29053,16,1211547,1,1,Active Shallow Crust,240.0084,58.01756,0.0,04/08/0831 +1.31273,46.25268,1715,10,8,4,48,41,3.75,15.0,fr,29054,34,1211548,1,1,Active Shallow Crust,240.0084,58.01756,0.0,10/08/1715 +1.31273,46.25268,5377,3,11,10,59,55,3.85,5.0,fr,29055,107,1211559,1,1,Active Shallow Crust,240.0105,57.99787,0.0,03/11/5377 +1.31273,46.25268,7924,8,29,18,43,0,3.95,5.0,fr,29056,158,1211577,1,1,Active Shallow Crust,128.9004,89.99395,0.0,08/29/7924 +1.31273,46.25268,6428,9,20,6,53,49,4.05,5.0,fr,29057,128,1211583,1,1,Active Shallow Crust,240.0059,58.00579,0.0,09/20/6428 +1.31273,46.25268,5681,1,10,9,13,47,4.15,5.0,fr,29058,113,1211592,1,1,Active Shallow Crust,0.0,89.99039,0.0,01/10/5681 +1.31273,46.25268,6379,11,1,9,26,33,4.15,5.0,fr,29059,127,1211601,1,1,Active Shallow Crust,128.8976,89.99388,0.0,11/01/6379 +1.31273,46.25268,7536,12,6,4,21,52,4.25,5.0,fr,29060,150,1211604,1,1,Active Shallow Crust,0.0,89.98988,0.0,12/06/7536 +1.31273,46.25268,8173,10,28,3,58,41,4.85,15.0,fr,29061,163,1211680,1,1,Active Shallow Crust,240.0171,58.00226,0.0,10/28/8173 +3.94271,43.41827,3960,9,7,17,35,10,3.65,5.0,fr,29062,79,1212012,1,2,Active Shallow Crust,0.0,89.99021,0.0,09/07/3960 +3.94271,43.41827,4297,7,17,2,16,20,3.65,5.0,fr,29063,85,1212012,1,2,Active Shallow Crust,0.0,89.99021,0.0,07/17/4297 +3.94271,43.41827,365,1,24,16,11,46,3.65,27.5,fr,29064,7,1212014,1,1,Active Shallow Crust,0.0,89.99021,0.0,01/24/0365 +3.94271,43.41827,904,7,16,18,13,59,4.05,5.0,fr,29065,18,1212063,1,1,Active Shallow Crust,240.0056,58.00552,0.0,07/16/0904 +2.72405,49.35836,7396,5,14,11,5,12,3.65,15.0,fr,29066,147,1212496,1,1,Active Shallow Crust,240.0008,58.01332,0.0,05/14/7396 +2.72405,49.35836,5567,10,25,3,9,24,3.75,5.0,fr,29067,111,1212504,1,1,Active Shallow Crust,0.0,89.98956,0.0,10/25/5567 +2.72405,49.35836,7162,7,24,18,42,26,3.75,15.0,fr,29068,143,1212505,1,1,Active Shallow Crust,0.0,89.98956,0.0,07/24/7162 +2.72405,49.35836,9884,12,3,21,44,22,3.95,27.5,fr,29069,197,1212530,1,1,Active Shallow Crust,0.0,89.98964,0.0,12/03/9884 +2.72405,49.35836,96,9,9,6,13,56,4.15,5.0,fr,29070,1,1212552,1,1,Active Shallow Crust,0.0,89.99013,0.0,09/09/0096 +2.72405,49.35836,1711,8,10,8,21,11,4.25,5.0,fr,29071,34,1212564,1,2,Active Shallow Crust,0.0,89.98973,0.0,08/10/1711 +2.72405,49.35836,508,6,3,22,44,29,4.25,5.0,fr,29072,10,1212564,1,2,Active Shallow Crust,0.0,89.98973,0.0,06/03/0508 +2.44803,51.92992,1010,2,12,12,2,11,3.85,15.0,fr,29073,20,1212997,1,1,Active Shallow Crust,0.0,89.98899,0.0,02/12/1010 +2.44803,51.92992,8275,8,4,22,7,5,4.35,15.0,fr,29074,165,1213057,1,1,Active Shallow Crust,0.0,89.9901,0.0,08/04/8275 +-3.87391,44.12782,7447,12,12,9,37,24,4.55,5.0,fr,29075,148,1213563,1,1,Active Shallow Crust,240.0086,57.99735,0.0,12/12/7447 +0.73369,52.00777,3500,4,22,10,52,24,3.55,5.0,fr,29076,69,1213923,1,1,Active Shallow Crust,240.0128,57.99828,0.0,04/22/3500 +0.73369,52.00777,5407,8,23,2,35,29,3.65,15.0,fr,29077,108,1213933,1,1,Active Shallow Crust,0.0,89.99032,0.0,08/23/5407 +0.73369,52.00777,61,7,13,23,4,38,4.05,15.0,fr,29078,1,1213990,1,1,Active Shallow Crust,128.8897,89.99368,0.0,07/13/0061 +-3.3897,43.90794,9760,4,24,1,33,14,3.55,5.0,fr,29079,195,1214886,1,1,Active Shallow Crust,0.0,89.98898,-90.0,04/24/9760 +-3.3897,43.90794,9045,8,7,12,0,11,3.55,5.0,fr,29080,180,1214889,1,1,Active Shallow Crust,128.8962,89.99455,0.0,08/07/9045 +-3.3897,43.90794,7245,11,19,14,4,10,3.65,15.0,fr,29081,144,1214893,1,2,Active Shallow Crust,0.0,89.99029,0.0,11/19/7245 +-3.3897,43.90794,4430,11,27,10,12,44,3.65,15.0,fr,29082,88,1214893,1,2,Active Shallow Crust,0.0,89.99029,0.0,11/27/4430 +8.13593,48.2503,3081,12,27,19,25,54,3.55,5.0,fr,29083,61,1215360,1,1,Active Shallow Crust,0.0,89.98657,0.0,12/27/3081 +8.13593,48.2503,6821,11,18,18,45,19,3.55,15.0,fr,29084,136,1215361,1,1,Active Shallow Crust,0.0,89.98657,0.0,11/18/6821 +8.13593,48.2503,3865,2,27,15,41,30,3.55,27.5,fr,29085,77,1215362,1,1,Active Shallow Crust,0.0,89.98657,0.0,02/27/3865 +8.13593,48.2503,5365,9,18,15,33,4,3.65,5.0,fr,29086,107,1215372,1,2,Active Shallow Crust,0.0,89.98803,0.0,09/18/5365 +8.13593,48.2503,4097,6,30,5,42,5,3.65,5.0,fr,29087,81,1215372,1,2,Active Shallow Crust,0.0,89.98803,0.0,06/30/4097 +8.13593,48.2503,5864,7,28,13,30,34,3.75,15.0,fr,29088,117,1215385,1,1,Active Shallow Crust,0.0,89.98933,0.0,07/28/5864 +8.13593,48.2503,7499,10,29,6,50,43,3.75,5.0,fr,29089,149,1215393,1,1,Active Shallow Crust,128.895,89.96752,0.0,10/29/7499 +8.13593,48.2503,1264,1,9,21,37,20,3.85,5.0,fr,29090,25,1215396,1,1,Active Shallow Crust,0.0,89.99049,0.0,01/09/1264 +8.13593,48.2503,4204,3,7,23,21,45,3.85,15.0,fr,29091,84,1215397,1,1,Active Shallow Crust,0.0,89.99049,0.0,03/07/4204 +8.13593,48.2503,9175,10,7,0,27,6,3.85,5.0,fr,29092,183,1215402,1,1,Active Shallow Crust,0.0,89.99038,-90.0,10/07/9175 +8.13593,48.2503,2476,5,21,22,54,15,3.95,5.0,fr,29093,49,1215411,1,1,Active Shallow Crust,240.0195,58.00527,0.0,05/21/2476 +8.13593,48.2503,6724,12,13,21,9,1,4.15,5.0,fr,29094,134,1215432,1,1,Active Shallow Crust,0.0,89.99327,0.0,12/13/6724 +8.13593,48.2503,6792,7,6,0,19,6,4.25,5.0,fr,29095,135,1215444,1,2,Active Shallow Crust,0.0,89.988,0.0,07/06/6792 +8.13593,48.2503,9125,1,7,15,46,54,4.25,5.0,fr,29096,182,1215444,1,2,Active Shallow Crust,0.0,89.988,0.0,01/07/9125 +8.13593,48.2503,5093,9,13,11,11,35,4.25,5.0,fr,29097,101,1215453,1,1,Active Shallow Crust,128.8948,89.98101,0.0,09/13/5093 +8.13593,48.2503,3377,5,25,0,17,51,4.55,5.0,fr,29098,67,1215480,1,1,Active Shallow Crust,0.0,89.99151,0.0,05/25/3377 +8.13593,48.2503,2998,12,26,0,36,55,4.65,5.0,fr,29099,59,1215492,1,1,Active Shallow Crust,0.0,89.98865,0.0,12/26/2998 +8.13593,48.2503,2737,3,20,21,36,48,5.05,5.0,fr,29100,54,1215540,1,1,Active Shallow Crust,0.0,89.99045,0.0,03/20/2737 +8.135946,48.2503,6562,7,6,18,8,27,6.75,11.99416,fr,29101,131,1215744,1,1,Active Shallow Crust,0.0,89.99003,0.0,07/06/6562 +2.83786,40.29652,1237,10,17,5,26,11,3.85,5.0,fr,29102,24,1215876,1,2,Active Shallow Crust,0.0,89.98911,0.0,10/17/1237 +2.83786,40.29652,7977,8,23,12,53,53,3.85,5.0,fr,29103,159,1215876,1,2,Active Shallow Crust,0.0,89.98911,0.0,08/23/7977 +2.24781,49.60176,7064,10,20,19,43,31,3.55,5.0,fr,29104,141,1216320,1,1,Active Shallow Crust,0.0,89.9902,0.0,10/20/7064 +2.24781,49.60176,1483,10,18,15,43,4,3.65,5.0,fr,29105,29,1216335,1,1,Active Shallow Crust,240.0016,58.01252,0.0,10/18/1483 +2.24781,49.60176,2697,3,20,0,16,17,3.85,5.0,fr,29106,53,1216356,1,1,Active Shallow Crust,0.0,89.99075,0.0,03/20/2697 +2.24781,49.60176,4221,7,8,10,1,13,4.45,27.5,fr,29107,84,1216430,1,1,Active Shallow Crust,0.0,89.98956,0.0,07/08/4221 +-1.17334,42.91355,6980,7,18,1,0,49,3.55,15.0,fr,29108,139,1216801,1,2,Active Shallow Crust,0.0,89.99077,0.0,07/18/6980 +-1.17334,42.91355,9811,4,15,4,41,5,3.55,15.0,fr,29109,196,1216801,1,2,Active Shallow Crust,0.0,89.99077,0.0,04/15/9811 +-1.17334,42.91355,8786,10,1,22,44,23,3.55,5.0,fr,29110,175,1216803,1,1,Active Shallow Crust,240.012,57.99802,0.0,10/01/8786 +-1.17334,42.91355,1421,9,1,4,14,28,3.55,5.0,fr,29111,28,1216806,1,1,Active Shallow Crust,0.0,89.99066,-90.0,09/01/1421 +-1.17334,42.91355,2372,1,7,5,11,37,3.55,15.0,fr,29112,47,1216810,1,1,Active Shallow Crust,128.8965,89.99354,0.0,01/07/2372 +-1.17334,42.91355,8968,1,16,11,17,0,3.65,5.0,fr,29113,179,1216812,1,2,Active Shallow Crust,0.0,89.99013,0.0,01/16/8968 +-1.17334,42.91355,3294,5,23,0,23,2,3.65,5.0,fr,29114,65,1216812,1,2,Active Shallow Crust,0.0,89.99013,0.0,05/23/3294 +-1.17334,42.91355,928,3,20,4,32,32,3.65,15.0,fr,29115,18,1216813,1,1,Active Shallow Crust,0.0,89.99013,0.0,03/20/0928 +-1.17334,42.91355,1627,10,14,21,42,27,3.65,5.0,fr,29116,32,1216815,1,1,Active Shallow Crust,240.001,58.01292,0.0,10/14/1627 +-1.17334,42.91355,1634,9,28,0,55,59,3.75,5.0,fr,29117,32,1216824,1,4,Active Shallow Crust,0.0,89.98973,0.0,09/28/1634 +-1.17334,42.91355,3477,5,21,17,57,35,3.75,5.0,fr,29118,69,1216824,1,4,Active Shallow Crust,0.0,89.98973,0.0,05/21/3477 +-1.17334,42.91355,2569,7,29,5,47,42,3.75,5.0,fr,29119,51,1216824,1,4,Active Shallow Crust,0.0,89.98973,0.0,07/29/2569 +-1.17334,42.91355,4376,1,12,6,35,51,3.75,5.0,fr,29120,87,1216824,1,4,Active Shallow Crust,0.0,89.98973,0.0,01/12/4376 +-1.17334,42.91355,5739,2,5,1,30,47,3.75,5.0,fr,29121,114,1216830,1,1,Active Shallow Crust,0.0,89.98962,-90.0,02/05/5739 +-1.17334,42.91355,7817,11,7,0,19,25,3.75,27.5,fr,29122,156,1216832,1,1,Active Shallow Crust,0.0,89.98962,-90.0,11/07/7817 +-1.17334,42.91355,9497,12,12,5,37,26,3.85,5.0,fr,29123,189,1216836,1,5,Active Shallow Crust,0.0,89.98954,0.0,12/12/9497 +-1.17334,42.91355,9844,4,19,15,27,19,3.85,5.0,fr,29124,196,1216836,1,5,Active Shallow Crust,0.0,89.98954,0.0,04/19/9844 +-1.17334,42.91355,6324,9,5,9,10,20,3.85,5.0,fr,29125,126,1216836,1,5,Active Shallow Crust,0.0,89.98954,0.0,09/05/6324 +-1.17334,42.91355,8946,5,7,14,26,2,3.85,5.0,fr,29126,178,1216836,1,5,Active Shallow Crust,0.0,89.98954,0.0,05/07/8946 +-1.17334,42.91355,310,5,28,13,7,13,3.85,5.0,fr,29127,6,1216836,1,5,Active Shallow Crust,0.0,89.98954,0.0,05/28/0310 +-1.17334,42.91355,5871,9,27,10,12,9,3.95,5.0,fr,29128,117,1216854,1,1,Active Shallow Crust,0.0,89.99057,-90.0,09/27/5871 +-1.17334,42.91355,4548,8,7,4,20,38,4.05,5.0,fr,29129,90,1216860,1,1,Active Shallow Crust,0.0,89.98962,0.0,08/07/4548 +-1.17334,42.91355,2836,2,13,18,2,58,5.05,5.0,fr,29130,56,1216980,1,1,Active Shallow Crust,0.0,89.99015,0.0,02/13/2836 +4.05964,43.96584,5999,7,25,13,53,16,3.55,5.0,fr,29131,119,1217283,1,1,Active Shallow Crust,240.0125,57.99707,0.0,07/25/5999 +4.05964,43.96584,4978,1,20,0,36,25,3.55,5.0,fr,29132,99,1217286,1,1,Active Shallow Crust,0.0,89.99266,-90.0,01/20/4978 +4.05964,43.96584,2267,10,17,14,51,58,3.65,5.0,fr,29133,45,1217292,1,2,Active Shallow Crust,0.0,89.98706,0.0,10/17/2267 +4.05964,43.96584,147,11,30,8,48,8,3.65,5.0,fr,29134,2,1217292,1,2,Active Shallow Crust,0.0,89.98706,0.0,11/30/0147 +4.05964,43.96584,9940,11,5,0,42,31,3.65,15.0,fr,29135,198,1217302,1,1,Active Shallow Crust,128.901,89.96348,0.0,11/05/9940 +4.05964,43.96584,6483,9,14,6,6,33,3.75,5.0,fr,29136,129,1217304,1,1,Active Shallow Crust,0.0,89.98847,0.0,09/14/6483 +4.05964,43.96584,8175,3,11,0,14,7,3.85,5.0,fr,29137,163,1217322,1,1,Active Shallow Crust,0.0,89.9896,-90.0,03/11/8175 +4.05964,43.96584,6868,2,20,12,4,32,3.95,15.0,fr,29138,137,1217329,1,1,Active Shallow Crust,0.0,89.99084,0.0,02/20/6868 +4.05964,43.96584,891,4,19,21,53,3,4.05,15.0,fr,29139,17,1217344,1,1,Active Shallow Crust,240.0062,58.0056,0.0,04/19/0891 +4.05964,43.96584,3046,4,23,8,33,45,4.05,5.0,fr,29140,60,1217349,1,1,Active Shallow Crust,128.8899,89.99388,0.0,04/23/3046 +4.05964,43.96584,597,3,25,6,18,41,4.15,5.0,fr,29141,11,1217352,1,2,Active Shallow Crust,0.0,89.98909,0.0,03/25/0597 +4.05964,43.96584,2218,2,4,10,32,15,4.15,5.0,fr,29142,44,1217352,1,2,Active Shallow Crust,0.0,89.98909,0.0,02/04/2218 +4.05964,43.96584,6238,5,22,10,2,22,4.15,5.0,fr,29143,124,1217355,1,1,Active Shallow Crust,240.0078,57.99757,0.0,05/22/6238 +4.05964,43.96584,99,4,17,5,45,48,4.35,5.0,fr,29144,1,1217385,1,1,Active Shallow Crust,128.898,89.98293,0.0,04/17/0099 +4.05964,43.96584,9314,5,17,20,4,25,4.55,5.0,fr,29145,186,1217406,1,1,Active Shallow Crust,0.0,89.99072,-90.0,05/17/9314 +4.05964,43.96584,121,12,3,12,18,49,4.85,5.0,fr,29146,2,1217436,1,1,Active Shallow Crust,0.0,89.99025,0.0,12/03/0121 +5.77563,44.59629,468,12,14,2,41,14,3.65,27.5,fr,29147,9,1217774,1,1,Active Shallow Crust,0.0,89.9872,0.0,12/14/0468 +5.77563,44.59629,3718,8,21,10,1,55,3.65,5.0,fr,29148,74,1217775,1,1,Active Shallow Crust,239.9999,58.01336,0.0,08/21/3718 +5.77563,44.59629,5572,11,6,1,5,11,3.85,27.5,fr,29149,111,1217801,1,1,Active Shallow Crust,240.0108,57.99746,0.0,11/06/5572 +5.77563,44.59629,6426,2,25,17,57,14,5.15,5.0,fr,29150,128,1217952,1,1,Active Shallow Crust,0.0,89.98975,0.0,02/25/6426 +4.45094,52.60734,691,9,25,8,38,42,3.55,5.0,fr,29151,13,1218240,1,1,Active Shallow Crust,0.0,89.98775,0.0,09/25/0691 +4.45094,52.60734,1213,10,10,18,13,10,3.65,15.0,fr,29152,24,1218253,1,1,Active Shallow Crust,0.0,89.98908,0.0,10/10/1213 +4.45094,52.60734,557,1,27,6,3,14,3.65,5.0,fr,29153,11,1218258,1,1,Active Shallow Crust,0.0,89.98896,-90.0,01/27/0557 +4.88344,47.97802,2291,8,17,13,19,11,4.35,15.0,fr,29154,45,1218820,1,1,Active Shallow Crust,240.0091,57.99556,0.0,08/17/2291 +4.88344,47.97802,2854,12,30,15,0,50,4.45,5.0,fr,29155,57,1218834,1,1,Active Shallow Crust,0.0,89.99031,-90.0,12/30/2854 +0.85023,49.01526,5568,5,2,19,33,53,3.55,15.0,fr,29156,111,1219207,1,1,Active Shallow Crust,0.0,89.98997,-90.0,05/02/5568 +0.85023,49.01526,1890,2,27,13,28,55,3.65,5.0,fr,29157,37,1219212,1,1,Active Shallow Crust,0.0,89.98969,0.0,02/27/1890 +0.85023,49.01526,1730,8,12,22,38,19,3.65,27.5,fr,29158,34,1219214,1,1,Active Shallow Crust,0.0,89.98969,0.0,08/12/1730 +0.85023,49.01526,8824,5,24,21,59,10,3.75,15.0,fr,29159,176,1219225,1,1,Active Shallow Crust,0.0,89.99015,0.0,05/24/8824 +0.85023,49.01526,3655,10,21,14,44,56,3.85,5.0,fr,29160,73,1219236,1,1,Active Shallow Crust,0.0,89.99005,0.0,10/21/3655 +0.85023,49.01526,1040,10,16,14,51,9,3.95,5.0,fr,29161,20,1219248,1,1,Active Shallow Crust,0.0,89.99009,0.0,10/16/1040 +0.85023,49.01526,3675,3,16,10,52,24,4.05,15.0,fr,29162,73,1219264,1,1,Active Shallow Crust,240.0064,58.00593,0.0,03/16/3675 +0.85023,49.01526,3553,7,3,13,29,55,4.15,15.0,fr,29163,71,1219276,1,1,Active Shallow Crust,240.009,57.99745,0.0,07/03/3553 +0.85023,49.01526,6210,4,25,3,51,10,5.15,5.0,fr,29164,124,1219392,1,1,Active Shallow Crust,0.0,89.99004,0.0,04/25/6210 +-1.56522,43.28491,1455,11,18,2,10,28,3.55,5.0,fr,29165,29,1219680,1,2,Active Shallow Crust,0.0,89.99082,0.0,11/18/1455 +-1.56522,43.28491,876,11,7,3,47,56,3.55,5.0,fr,29166,17,1219680,1,2,Active Shallow Crust,0.0,89.99082,0.0,11/07/0876 +-1.56522,43.28491,8188,10,10,17,19,57,3.55,15.0,fr,29167,163,1219687,1,1,Active Shallow Crust,0.0,89.99072,-90.0,10/10/8188 +-1.56522,43.28491,775,12,8,13,36,59,3.55,5.0,fr,29168,15,1219689,1,1,Active Shallow Crust,128.8963,89.99358,0.0,12/08/0775 +-1.56522,43.28491,240,6,28,1,59,29,3.65,5.0,fr,29169,4,1219692,1,3,Active Shallow Crust,0.0,89.99019,0.0,06/28/0240 +-1.56522,43.28491,4474,10,18,19,20,24,3.65,5.0,fr,29170,89,1219692,1,3,Active Shallow Crust,0.0,89.99019,0.0,10/18/4474 +-1.56522,43.28491,5702,8,17,2,24,52,3.65,5.0,fr,29171,114,1219692,1,3,Active Shallow Crust,0.0,89.99019,0.0,08/17/5702 +-1.56522,43.28491,6060,1,3,4,35,11,3.65,5.0,fr,29172,121,1219701,1,1,Active Shallow Crust,128.9005,89.96346,0.0,01/03/6060 +-1.56522,43.28491,3710,2,8,16,3,57,3.65,15.0,fr,29173,74,1219702,1,1,Active Shallow Crust,128.9005,89.96346,0.0,02/08/3710 +-1.56522,43.28491,7201,8,20,22,22,57,3.75,5.0,fr,29174,144,1219707,1,1,Active Shallow Crust,240.0081,58.01733,0.0,08/20/7201 +-1.56522,43.28491,6642,7,29,3,5,31,3.75,5.0,fr,29175,132,1219710,1,1,Active Shallow Crust,0.0,89.98968,-90.0,07/29/6642 +-1.56522,43.28491,8740,10,31,21,25,46,3.85,5.0,fr,29176,174,1219719,1,1,Active Shallow Crust,240.0102,57.99793,0.0,10/31/8740 +-1.56522,43.28491,2109,9,5,17,27,0,3.85,5.0,fr,29177,42,1219722,1,1,Active Shallow Crust,0.0,89.98949,-90.0,09/05/2109 +-1.56522,43.28491,1974,2,25,19,23,59,3.85,5.0,fr,29178,39,1219725,1,1,Active Shallow Crust,128.8957,89.99416,0.0,02/25/1974 +-1.56522,43.28491,2799,8,20,15,57,58,3.95,5.0,fr,29179,55,1219728,1,3,Active Shallow Crust,0.0,89.98958,0.0,08/20/2799 +-1.56522,43.28491,9093,6,12,20,39,47,3.95,5.0,fr,29180,181,1219728,1,3,Active Shallow Crust,0.0,89.98958,0.0,06/12/9093 +-1.56522,43.28491,7652,1,25,21,48,50,3.95,5.0,fr,29181,153,1219728,1,3,Active Shallow Crust,0.0,89.98958,0.0,01/25/7652 +-1.56522,43.28491,2541,4,6,11,32,57,3.95,5.0,fr,29182,50,1219734,1,2,Active Shallow Crust,0.0,89.98946,-90.0,04/06/2541 +-1.56522,43.28491,4495,2,28,0,25,22,3.95,5.0,fr,29183,89,1219734,1,2,Active Shallow Crust,0.0,89.98946,-90.0,02/28/4495 +-1.56522,43.28491,9032,7,23,3,25,11,3.95,5.0,fr,29184,180,1219737,1,2,Active Shallow Crust,128.9009,89.99363,0.0,07/23/9032 +-1.56522,43.28491,6740,9,24,17,24,57,3.95,5.0,fr,29185,134,1219737,1,2,Active Shallow Crust,128.9009,89.99363,0.0,09/24/6740 +-1.56522,43.28491,9162,6,10,13,29,29,4.05,5.0,fr,29186,183,1219743,1,1,Active Shallow Crust,240.0055,58.00558,0.0,06/10/9162 +-1.56522,43.28491,4967,4,10,16,37,26,4.15,5.0,fr,29187,99,1219752,1,1,Active Shallow Crust,0.0,89.98988,0.0,04/10/4967 +-1.56522,43.28491,9474,5,1,14,35,1,4.25,5.0,fr,29188,189,1219764,1,1,Active Shallow Crust,0.0,89.99017,0.0,05/01/9474 +-1.56522,43.28491,3650,11,9,14,19,58,4.25,5.0,fr,29189,72,1219767,1,1,Active Shallow Crust,240.0069,57.99399,0.0,11/09/3650 +-1.56522,43.28491,8642,1,18,16,52,25,4.35,5.0,fr,29190,172,1219782,1,1,Active Shallow Crust,0.0,89.98965,-90.0,01/18/8642 +-1.56522,43.28491,1637,4,3,1,35,36,4.35,5.0,fr,29191,32,1219785,1,1,Active Shallow Crust,128.8985,89.98278,0.0,04/03/1637 +-1.56522,43.28491,2078,10,1,7,4,54,4.45,15.0,fr,29192,41,1219789,1,1,Active Shallow Crust,0.0,89.99023,0.0,10/01/2078 +-1.56522,43.28491,6369,3,10,9,31,49,4.75,5.0,fr,29193,127,1219824,1,1,Active Shallow Crust,0.0,89.98986,0.0,03/10/6369 +-1.56522,43.28491,3211,9,27,3,41,52,5.25,5.0,fr,29194,64,1219884,1,1,Active Shallow Crust,0.0,89.98989,0.0,09/27/3211 +1.13407,51.24821,2246,6,3,17,29,34,3.55,15.0,fr,29195,44,1220161,1,1,Active Shallow Crust,0.0,89.99053,0.0,06/03/2246 +1.13407,51.24821,2306,4,30,7,41,59,3.55,27.5,fr,29196,46,1220162,1,1,Active Shallow Crust,0.0,89.99053,0.0,04/30/2306 +1.13407,51.24821,7142,3,18,2,26,11,3.65,5.0,fr,29197,142,1220172,1,1,Active Shallow Crust,0.0,89.99016,0.0,03/18/7142 +1.13407,51.24821,1761,12,7,15,23,6,3.85,5.0,fr,29198,35,1220205,1,1,Active Shallow Crust,128.8951,89.99386,0.0,12/07/1761 +1.13407,51.24821,2121,4,7,16,51,54,3.95,5.0,fr,29199,42,1220208,1,1,Active Shallow Crust,0.0,89.99004,0.0,04/07/2121 +1.13407,51.24821,6519,8,22,17,20,14,4.05,5.0,fr,29200,130,1220220,1,1,Active Shallow Crust,0.0,89.99024,0.0,08/22/6519 +1.13407,51.24821,5364,12,10,19,0,48,4.05,5.0,fr,29201,107,1220226,1,1,Active Shallow Crust,0.0,89.99013,-90.0,12/10/5364 +1.13407,51.24821,8950,5,28,0,15,37,4.25,5.0,fr,29202,178,1220244,1,1,Active Shallow Crust,0.0,89.99013,0.0,05/28/8950 +1.13407,51.24821,7600,11,27,21,13,54,4.35,5.0,fr,29203,151,1220256,1,1,Active Shallow Crust,0.0,89.98994,0.0,11/27/7600 +1.13407,51.24821,3093,1,13,3,9,10,4.55,15.0,fr,29204,61,1220281,1,1,Active Shallow Crust,0.0,89.99002,0.0,01/13/3093 +1.13407,51.24821,8273,5,4,5,27,14,4.55,15.0,fr,29205,165,1220284,1,1,Active Shallow Crust,240.0108,57.99773,0.0,05/04/8273 +1.13407,51.24821,5518,8,12,20,35,37,4.95,5.0,fr,29206,110,1220328,1,1,Active Shallow Crust,0.0,89.98992,0.0,08/12/5518 +7.08147,50.63915,8867,11,3,10,18,50,3.55,5.0,fr,29207,177,1220640,1,1,Active Shallow Crust,0.0,89.98721,0.0,11/03/8867 +7.08147,50.63915,521,12,23,3,11,7,3.55,27.5,fr,29208,10,1220642,1,1,Active Shallow Crust,0.0,89.98721,0.0,12/23/0521 +7.08147,50.63915,2042,4,16,22,17,22,3.55,15.0,fr,29209,40,1220650,1,1,Active Shallow Crust,128.8968,89.99361,0.0,04/16/2042 +7.08147,50.63915,4993,2,11,11,53,12,3.65,5.0,fr,29210,99,1220652,1,1,Active Shallow Crust,0.0,89.9886,0.0,02/11/4993 +7.08147,50.63915,2099,3,3,6,14,14,3.65,15.0,fr,29211,41,1220659,1,1,Active Shallow Crust,0.0,89.98847,-90.0,03/03/2099 +7.08147,50.63915,4171,11,25,3,18,15,3.75,15.0,fr,29212,83,1220665,1,1,Active Shallow Crust,0.0,89.98984,0.0,11/25/4171 +7.08147,50.63915,9976,9,26,19,39,46,3.75,5.0,fr,29213,199,1220673,1,2,Active Shallow Crust,128.8966,89.96707,0.0,09/26/9976 +7.08147,50.63915,4700,7,8,19,17,16,3.75,5.0,fr,29214,93,1220673,1,2,Active Shallow Crust,128.8966,89.96707,0.0,07/08/4700 +7.08147,50.63915,448,3,7,23,58,19,3.85,5.0,fr,29215,8,1220676,1,1,Active Shallow Crust,0.0,89.99094,0.0,03/07/0448 +7.08147,50.63915,9990,5,14,10,27,43,3.85,15.0,fr,29216,199,1220677,1,1,Active Shallow Crust,0.0,89.99094,0.0,05/14/9990 +7.08147,50.63915,2736,3,2,4,16,42,3.85,5.0,fr,29217,54,1220679,1,1,Active Shallow Crust,240.0105,57.99884,0.0,03/02/2736 +7.08147,50.63915,1684,10,10,11,50,31,4.15,5.0,fr,29218,33,1220721,1,1,Active Shallow Crust,128.8977,89.99359,0.0,10/10/1684 +7.08147,50.63915,9606,4,3,20,20,54,4.25,15.0,fr,29219,192,1220731,1,2,Active Shallow Crust,0.0,89.99133,-90.0,04/03/9606 +7.08147,50.63915,8826,12,24,8,27,41,4.25,15.0,fr,29220,176,1220731,1,2,Active Shallow Crust,0.0,89.99133,-90.0,12/24/8826 +7.08147,50.63915,8180,8,28,9,15,36,4.35,5.0,fr,29221,163,1220736,1,1,Active Shallow Crust,0.0,89.98981,0.0,08/28/8180 +7.08147,50.63915,8766,3,11,21,25,9,4.35,5.0,fr,29222,175,1220739,1,1,Active Shallow Crust,240.0089,57.99631,0.0,03/11/8766 +7.08147,50.63915,1665,3,19,3,18,1,4.45,5.0,fr,29223,33,1220748,1,1,Active Shallow Crust,0.0,89.99092,0.0,03/19/1665 +7.08147,50.63915,6285,11,8,14,0,42,4.45,15.0,fr,29224,125,1220749,1,1,Active Shallow Crust,0.0,89.99092,0.0,11/08/6285 +7.08147,50.63915,3727,11,20,6,28,57,4.45,5.0,fr,29225,74,1220751,1,1,Active Shallow Crust,240.006,57.99492,0.0,11/20/3727 +7.08147,50.63915,1912,8,5,7,21,24,4.55,15.0,fr,29226,38,1220761,1,1,Active Shallow Crust,0.0,89.98988,0.0,08/05/1912 +7.08147,50.63915,455,10,30,14,31,8,4.95,15.0,fr,29227,9,1220809,1,1,Active Shallow Crust,0.0,89.98979,0.0,10/30/0455 +7.08147,50.63915,4221,10,9,6,43,48,5.65,5.0,fr,29228,84,1220892,1,1,Active Shallow Crust,0.0,89.98973,0.0,10/09/4221 +1.60508,50.61798,8559,7,13,5,17,48,3.75,5.0,fr,29229,171,1221144,1,1,Active Shallow Crust,0.0,89.98984,0.0,07/13/8559 +1.60508,50.61798,6096,7,11,11,35,54,4.35,5.0,fr,29230,121,1221216,1,1,Active Shallow Crust,0.0,89.98981,0.0,07/11/6096 +1.60508,50.61798,6460,10,26,11,6,29,4.55,5.0,fr,29231,129,1221240,1,1,Active Shallow Crust,0.0,89.98988,0.0,10/26/6460 +-6.49749,48.66706,1146,2,2,14,51,46,3.65,5.0,fr,29232,22,1221612,1,1,Active Shallow Crust,0.0,89.98813,0.0,02/02/1146 +-6.56389,48.5217,990,12,12,1,7,53,3.95,5.0,fr,29233,19,1222128,1,1,Active Shallow Crust,0.0,89.99157,0.0,12/12/0990 +-6.56389,48.5217,8164,7,3,15,48,5,4.05,5.0,fr,29234,163,1222140,1,1,Active Shallow Crust,0.0,89.98873,0.0,07/03/8164 +-6.56389,48.5217,5358,10,15,4,43,53,4.95,5.0,fr,29235,107,1222248,1,1,Active Shallow Crust,0.0,89.98933,0.0,10/15/5358 +-4.94399,49.24466,6999,11,28,5,12,6,3.65,15.0,fr,29236,139,1222573,1,1,Active Shallow Crust,0.0,89.98827,0.0,11/28/6999 +-4.94399,49.24466,3197,10,28,17,5,26,3.65,15.0,fr,29237,63,1222579,1,1,Active Shallow Crust,0.0,89.98813,-90.0,10/28/3197 +-4.94399,49.24466,9350,3,1,8,13,45,3.75,15.0,fr,29238,186,1222585,1,1,Active Shallow Crust,0.0,89.98954,0.0,03/01/9350 +-4.94399,49.24466,1796,7,24,9,39,55,3.85,5.0,fr,29239,35,1222596,1,1,Active Shallow Crust,0.0,89.99068,0.0,07/24/1796 +-4.94399,49.24466,4828,4,28,3,0,4,3.85,27.5,fr,29240,96,1222598,1,1,Active Shallow Crust,0.0,89.99068,0.0,04/28/4828 +3.60318,51.69602,7588,8,11,14,19,49,3.55,27.5,fr,29241,151,1223042,1,1,Active Shallow Crust,0.0,89.99062,0.0,08/11/7588 +3.60318,51.69602,7476,8,25,15,48,15,4.35,5.0,fr,29242,149,1223136,1,1,Active Shallow Crust,0.0,89.99004,0.0,08/25/7476 +1.88423,47.61635,4193,6,10,14,18,43,3.55,5.0,fr,29243,83,1223526,1,1,Active Shallow Crust,0.0,89.98969,-90.0,06/10/4193 +1.88423,47.61635,8252,12,25,20,22,24,3.95,15.0,fr,29244,165,1223569,1,1,Active Shallow Crust,0.0,89.99035,0.0,12/25/8252 +1.88423,47.61635,4065,3,3,20,6,16,3.95,5.0,fr,29245,81,1223571,1,1,Active Shallow Crust,240.0202,58.00498,0.0,03/03/4065 +1.88423,47.61635,5693,6,14,22,22,43,4.35,5.0,fr,29246,113,1223616,1,1,Active Shallow Crust,0.0,89.98985,0.0,06/14/5693 +2.7724,45.73797,7846,6,21,8,24,31,3.55,5.0,fr,29247,156,1224000,1,3,Active Shallow Crust,0.0,89.98944,0.0,06/21/7846 +2.7724,45.73797,1573,3,16,21,48,54,3.55,5.0,fr,29248,31,1224000,1,3,Active Shallow Crust,0.0,89.98944,0.0,03/16/1573 +2.7724,45.73797,2641,11,9,19,38,58,3.55,5.0,fr,29249,52,1224000,1,3,Active Shallow Crust,0.0,89.98944,0.0,11/09/2641 +2.7724,45.73797,3627,4,14,12,6,12,3.55,15.0,fr,29250,72,1224001,1,2,Active Shallow Crust,0.0,89.98944,0.0,04/14/3627 +2.7724,45.73797,3556,2,21,4,32,27,3.55,15.0,fr,29251,71,1224001,1,2,Active Shallow Crust,0.0,89.98944,0.0,02/21/3556 +2.7724,45.73797,4165,1,1,4,51,59,3.65,15.0,fr,29252,83,1224016,1,1,Active Shallow Crust,240.0017,58.01276,0.0,01/01/4165 +2.7724,45.73797,6022,2,1,20,11,17,3.65,5.0,fr,29253,120,1224018,1,1,Active Shallow Crust,0.0,89.99048,-90.0,02/01/6022 +2.7724,45.73797,9848,7,4,0,17,29,3.75,5.0,fr,29254,196,1224024,1,2,Active Shallow Crust,0.0,89.98882,0.0,07/04/9848 +2.7724,45.73797,2006,10,23,6,32,55,3.75,5.0,fr,29255,40,1224024,1,2,Active Shallow Crust,0.0,89.98882,0.0,10/23/2006 +2.7724,45.73797,9250,5,23,5,56,58,3.85,5.0,fr,29256,184,1224036,1,1,Active Shallow Crust,0.0,89.99004,0.0,05/23/9250 +2.7724,45.73797,2894,9,23,18,46,6,3.85,5.0,fr,29257,57,1224045,1,1,Active Shallow Crust,128.8958,89.99377,0.0,09/23/2894 +2.7724,45.73797,4073,3,29,7,42,4,4.05,5.0,fr,29258,81,1224060,1,2,Active Shallow Crust,0.0,89.9901,0.0,03/29/4073 +2.7724,45.73797,4099,2,22,13,44,35,4.05,5.0,fr,29259,81,1224060,1,2,Active Shallow Crust,0.0,89.9901,0.0,02/22/4099 +2.7724,45.73797,7229,4,29,5,3,15,4.25,15.0,fr,29260,144,1224094,1,1,Active Shallow Crust,128.8943,89.98092,0.0,04/29/7229 +2.7724,45.73797,2387,2,1,8,39,2,4.35,15.0,fr,29261,47,1224097,1,1,Active Shallow Crust,0.0,89.9902,0.0,02/01/2387 +2.7724,45.73797,6799,11,27,22,45,41,5.05,15.0,fr,29262,135,1224181,1,1,Active Shallow Crust,0.0,89.98998,0.0,11/27/6799 +2.7724,45.73797,7234,7,19,7,25,54,5.65,15.0,fr,29263,144,1224253,1,1,Active Shallow Crust,0.0,89.98996,0.0,07/19/7234 +2.7724,45.73797,8467,10,21,8,34,17,5.95,5.0,fr,29264,169,1224288,1,1,Active Shallow Crust,0.0,89.99,0.0,10/21/8467 +2.772401,45.73797,1123,6,12,21,41,30,6.05,5.357596,fr,29265,22,1224300,1,1,Active Shallow Crust,0.0,89.99,0.0,06/12/1123 +-2.34619,47.72432,1997,8,20,7,50,7,3.55,5.0,fr,29266,39,1224960,1,1,Active Shallow Crust,0.0,89.98982,0.0,08/20/1997 +-2.34619,47.72432,6356,5,27,11,59,10,3.65,5.0,fr,29267,127,1224972,1,1,Active Shallow Crust,0.0,89.99093,0.0,05/27/6356 +-2.34619,47.72432,7744,2,4,1,52,2,3.65,15.0,fr,29268,154,1224973,1,1,Active Shallow Crust,0.0,89.99093,0.0,02/04/7744 +-2.34619,47.72432,951,4,9,16,22,35,3.75,5.0,fr,29269,19,1224984,1,2,Active Shallow Crust,0.0,89.98922,0.0,04/09/0951 +-2.34619,47.72432,2368,1,7,8,56,59,3.75,5.0,fr,29270,47,1224984,1,2,Active Shallow Crust,0.0,89.98922,0.0,01/07/2368 +-2.34619,47.72432,613,2,25,9,27,20,3.85,15.0,fr,29271,12,1224997,1,1,Active Shallow Crust,0.0,89.99039,0.0,02/25/0613 +-2.34619,47.72432,7254,4,29,21,34,53,3.85,5.0,fr,29272,145,1225005,1,1,Active Shallow Crust,128.8958,89.9928,0.0,04/29/7254 +-2.34619,47.72432,4864,6,14,12,21,0,3.95,5.0,fr,29273,97,1225011,1,1,Active Shallow Crust,240.02,58.00512,0.0,06/14/4864 +-2.34619,47.72432,4154,4,23,9,35,19,4.05,5.0,fr,29274,83,1225020,1,1,Active Shallow Crust,0.0,89.99046,0.0,04/23/4154 +-2.34619,47.72432,2234,4,26,18,7,49,4.05,27.5,fr,29275,44,1225022,1,1,Active Shallow Crust,0.0,89.99046,0.0,04/26/2234 +1.91463,43.10515,9607,11,3,2,5,9,3.55,5.0,fr,29276,192,1225920,1,1,Active Shallow Crust,0.0,89.9908,0.0,11/03/9607 +1.91463,43.10515,770,10,15,7,39,49,3.65,5.0,fr,29277,15,1225932,1,1,Active Shallow Crust,0.0,89.99016,0.0,10/15/0770 +1.91463,43.10515,3397,10,11,12,1,5,3.65,5.0,fr,29278,67,1225935,1,1,Active Shallow Crust,240.0009,58.01279,0.0,10/11/3397 +1.91463,43.10515,2035,2,10,2,11,14,3.75,5.0,fr,29279,40,1225944,1,1,Active Shallow Crust,0.0,89.98977,0.0,02/10/2035 +1.91463,43.10515,6700,9,20,9,28,34,4.05,27.5,fr,29280,133,1225982,1,1,Active Shallow Crust,0.0,89.98965,0.0,09/20/6700 +1.91463,43.10515,3689,12,15,5,10,41,4.15,5.0,fr,29281,73,1225992,1,1,Active Shallow Crust,0.0,89.98985,0.0,12/15/3689 +5.65992,46.02345,8351,10,25,5,53,58,3.55,5.0,fr,29282,167,1226400,1,2,Active Shallow Crust,0.0,89.993,0.0,10/25/8351 +5.65992,46.02345,3393,8,17,4,51,36,3.55,5.0,fr,29283,67,1226400,1,2,Active Shallow Crust,0.0,89.993,0.0,08/17/3393 +5.65992,46.02345,6989,8,19,6,18,13,3.55,15.0,fr,29284,139,1226401,1,2,Active Shallow Crust,0.0,89.993,0.0,08/19/6989 +5.65992,46.02345,3406,5,31,10,56,22,3.55,15.0,fr,29285,68,1226401,1,2,Active Shallow Crust,0.0,89.993,0.0,05/31/3406 +5.65992,46.02345,7271,3,11,19,44,36,3.55,15.0,fr,29286,145,1226410,1,1,Active Shallow Crust,128.8966,89.993,0.0,03/11/7271 +5.65992,46.02345,8179,6,20,14,54,4,3.65,5.0,fr,29287,163,1226412,1,1,Active Shallow Crust,0.0,89.98752,0.0,06/20/8179 +5.65992,46.02345,5766,9,16,11,2,44,3.65,15.0,fr,29288,115,1226413,1,1,Active Shallow Crust,0.0,89.98752,0.0,09/16/5766 +5.65992,46.02345,7049,8,4,5,48,9,3.65,15.0,fr,29289,140,1226422,1,1,Active Shallow Crust,128.9011,89.96352,0.0,08/04/7049 +5.65992,46.02345,1826,7,7,0,45,11,3.75,5.0,fr,29290,36,1226424,1,2,Active Shallow Crust,0.0,89.98888,0.0,07/07/1826 +5.65992,46.02345,3066,11,11,2,20,20,3.75,5.0,fr,29291,61,1226424,1,2,Active Shallow Crust,0.0,89.98888,0.0,11/11/3066 +5.65992,46.02345,4374,8,20,22,25,47,3.75,15.0,fr,29292,87,1226425,1,2,Active Shallow Crust,0.0,89.98888,0.0,08/20/4374 +5.65992,46.02345,760,4,26,11,26,5,3.75,15.0,fr,29293,15,1226425,1,2,Active Shallow Crust,0.0,89.98888,0.0,04/26/0760 +5.65992,46.02345,5576,6,24,15,58,7,3.75,15.0,fr,29294,111,1226428,1,1,Active Shallow Crust,240.009,58.01753,0.0,06/24/5576 +5.65992,46.02345,6204,5,17,0,28,59,3.75,27.5,fr,29295,124,1226435,1,1,Active Shallow Crust,128.8969,89.96748,0.0,05/17/6204 +5.65992,46.02345,3783,12,19,14,13,5,3.85,5.0,fr,29296,75,1226436,1,1,Active Shallow Crust,0.0,89.99009,0.0,12/19/3783 +5.65992,46.02345,9245,2,26,3,0,28,3.85,5.0,fr,29297,184,1226445,1,1,Active Shallow Crust,128.8953,89.99257,0.0,02/26/9245 +5.65992,46.02345,197,8,10,12,49,10,3.95,5.0,fr,29298,3,1226448,1,2,Active Shallow Crust,0.0,89.99117,0.0,08/10/0197 +5.65992,46.02345,7850,3,15,22,18,6,3.95,5.0,fr,29299,156,1226448,1,2,Active Shallow Crust,0.0,89.99117,0.0,03/15/7850 +5.65992,46.02345,2025,5,6,11,35,22,3.95,15.0,fr,29300,40,1226449,1,1,Active Shallow Crust,0.0,89.99117,0.0,05/06/2025 +5.65992,46.02345,6952,8,13,9,5,25,4.05,5.0,fr,29301,139,1226463,1,1,Active Shallow Crust,240.0055,58.00649,0.0,08/13/6952 +5.65992,46.02345,489,11,3,23,57,30,4.15,5.0,fr,29302,9,1226472,1,1,Active Shallow Crust,0.0,89.98947,0.0,11/03/0489 +5.65992,46.02345,6330,9,8,1,51,7,4.15,5.0,fr,29303,126,1226481,1,1,Active Shallow Crust,128.8976,89.99298,0.0,09/08/6330 +5.65992,46.02345,4173,9,7,17,12,19,4.15,15.0,fr,29304,83,1226482,1,1,Active Shallow Crust,128.8976,89.99298,0.0,09/07/4173 +5.65992,46.02345,5802,5,5,8,18,40,4.25,5.0,fr,29305,116,1226484,1,1,Active Shallow Crust,0.0,89.99062,0.0,05/05/5802 +5.65992,46.02345,8380,2,18,11,56,42,4.25,15.0,fr,29306,167,1226485,1,1,Active Shallow Crust,0.0,89.99062,0.0,02/18/8380 +5.65992,46.02345,6703,7,27,17,42,19,4.25,15.0,fr,29307,134,1226494,1,1,Active Shallow Crust,128.8944,89.98093,0.0,07/27/6703 +5.65992,46.02345,1447,11,21,13,3,12,4.35,15.0,fr,29308,28,1226503,1,1,Active Shallow Crust,0.0,89.98872,-90.0,11/21/1447 +5.65992,46.02345,3036,11,16,6,49,44,4.65,5.0,fr,29309,60,1226532,1,1,Active Shallow Crust,0.0,89.99014,0.0,11/16/3036 +5.65992,46.02345,9057,7,9,11,23,3,4.65,27.5,fr,29310,181,1226534,1,1,Active Shallow Crust,0.0,89.99014,0.0,07/09/9057 +5.65992,46.02345,6693,12,11,7,36,23,4.65,15.0,fr,29311,133,1226536,1,1,Active Shallow Crust,240.0106,57.9941,0.0,12/11/6693 +5.65992,46.02345,6036,8,21,14,40,4,4.85,5.0,fr,29312,120,1226565,1,1,Active Shallow Crust,128.8927,89.98901,0.0,08/21/6036 +5.65992,46.02345,3653,8,28,10,31,28,5.45,5.0,fr,29313,73,1226628,1,1,Active Shallow Crust,0.0,89.98978,0.0,08/28/3653 +4.80409,45.25591,429,5,19,20,51,14,3.55,15.0,fr,29314,8,1226884,1,1,Active Shallow Crust,240.0124,57.99856,0.0,05/19/0429 +4.80409,45.25591,1044,1,14,1,21,21,3.65,5.0,fr,29315,20,1226892,1,2,Active Shallow Crust,0.0,89.98735,0.0,01/14/1044 +4.80409,45.25591,4889,11,7,21,31,19,3.65,5.0,fr,29316,97,1226892,1,2,Active Shallow Crust,0.0,89.98735,0.0,11/07/4889 +4.80409,45.25591,7923,4,12,6,16,13,3.65,15.0,fr,29317,158,1226893,1,1,Active Shallow Crust,0.0,89.98735,0.0,04/12/7923 +4.80409,45.25591,6586,4,19,14,37,14,3.85,5.0,fr,29318,131,1226916,1,1,Active Shallow Crust,0.0,89.98995,0.0,04/19/6586 +4.80409,45.25591,7013,11,8,12,57,3,3.85,27.5,fr,29319,140,1226918,1,1,Active Shallow Crust,0.0,89.98995,0.0,11/08/7013 +-2.0106,45.5764,9484,3,21,12,13,57,3.75,15.0,fr,29320,189,1227388,1,1,Active Shallow Crust,240.0083,58.01738,0.0,03/21/9484 +-2.0106,45.5764,5199,8,5,6,52,0,4.15,5.0,fr,29321,103,1227432,1,1,Active Shallow Crust,0.0,89.98939,0.0,08/05/5199 +7.05431,44.75289,9932,3,6,20,12,35,3.55,5.0,fr,29322,198,1228320,1,3,Active Shallow Crust,0.0,89.99284,0.0,03/06/9932 +7.05431,44.75289,8028,5,11,9,22,59,3.55,5.0,fr,29323,160,1228320,1,3,Active Shallow Crust,0.0,89.99284,0.0,05/11/8028 +7.05431,44.75289,5625,2,26,13,20,30,3.55,5.0,fr,29324,112,1228320,1,3,Active Shallow Crust,0.0,89.99284,0.0,02/26/5625 +7.05431,44.75289,3164,6,29,14,26,33,3.55,5.0,fr,29325,63,1228326,1,1,Active Shallow Crust,0.0,89.99276,-90.0,06/29/3164 +7.05431,44.75289,3665,6,22,21,5,20,3.55,27.5,fr,29326,73,1228331,1,1,Active Shallow Crust,128.8964,89.99284,0.0,06/22/3665 +7.05431,44.75289,2985,8,3,9,11,16,3.65,5.0,fr,29327,59,1228332,1,3,Active Shallow Crust,0.0,89.98724,0.0,08/03/2985 +7.05431,44.75289,7244,8,11,8,48,10,3.65,5.0,fr,29328,144,1228332,1,3,Active Shallow Crust,0.0,89.98724,0.0,08/11/7244 +7.05431,44.75289,4417,1,23,7,9,43,3.65,5.0,fr,29329,88,1228332,1,3,Active Shallow Crust,0.0,89.98724,0.0,01/23/4417 +7.05431,44.75289,791,5,25,9,18,54,3.65,5.0,fr,29330,15,1228335,1,1,Active Shallow Crust,240.0016,58.01179,0.0,05/25/0791 +7.05431,44.75289,9451,2,12,15,11,56,3.65,5.0,fr,29331,189,1228341,1,1,Active Shallow Crust,128.8999,89.96349,0.0,02/12/9451 +7.05431,44.75289,3244,10,1,8,36,50,3.75,5.0,fr,29332,64,1228344,1,1,Active Shallow Crust,0.0,89.98862,0.0,10/01/3244 +7.05431,44.75289,9958,12,4,0,40,16,3.75,15.0,fr,29333,199,1228348,1,1,Active Shallow Crust,240.0083,58.0171,0.0,12/04/9958 +7.05431,44.75289,1277,5,20,10,52,17,3.75,5.0,fr,29334,25,1228350,1,2,Active Shallow Crust,0.0,89.98849,-90.0,05/20/1277 +7.05431,44.75289,1765,10,31,1,10,58,3.75,5.0,fr,29335,35,1228350,1,2,Active Shallow Crust,0.0,89.98849,-90.0,10/31/1765 +7.05431,44.75289,7934,12,1,7,11,7,3.85,5.0,fr,29336,158,1228356,1,2,Active Shallow Crust,0.0,89.98986,0.0,12/01/7934 +7.05431,44.75289,6017,9,6,5,48,42,3.85,5.0,fr,29337,120,1228356,1,2,Active Shallow Crust,0.0,89.98986,0.0,09/06/6017 +7.05431,44.75289,7649,4,2,0,59,32,3.85,15.0,fr,29338,152,1228357,1,2,Active Shallow Crust,0.0,89.98986,0.0,04/02/7649 +7.05431,44.75289,2615,8,27,10,47,19,3.85,15.0,fr,29339,52,1228357,1,2,Active Shallow Crust,0.0,89.98986,0.0,08/27/2615 +7.05431,44.75289,1116,1,13,9,49,10,3.85,5.0,fr,29340,22,1228359,1,1,Active Shallow Crust,240.011,57.99764,0.0,01/13/1116 +7.05431,44.75289,6256,8,16,16,5,3,3.95,15.0,fr,29341,125,1228369,1,1,Active Shallow Crust,0.0,89.99097,0.0,08/16/6256 +7.05431,44.75289,5241,6,11,16,25,25,3.95,5.0,fr,29342,104,1228371,1,1,Active Shallow Crust,240.0193,58.00549,0.0,06/11/5241 +7.05431,44.75289,5,8,14,18,11,1,4.05,5.0,fr,29343,0,1228380,1,2,Active Shallow Crust,0.0,89.99194,0.0,08/14/0005 +7.05431,44.75289,4093,6,6,5,2,39,4.05,5.0,fr,29344,81,1228380,1,2,Active Shallow Crust,0.0,89.99194,0.0,06/06/4093 +7.05431,44.75289,2944,11,16,17,24,34,4.05,15.0,fr,29345,58,1228381,1,1,Active Shallow Crust,0.0,89.99194,0.0,11/16/2944 +7.05431,44.75289,9774,3,17,23,40,11,4.15,5.0,fr,29346,195,1228392,1,1,Active Shallow Crust,0.0,89.98923,0.0,03/17/9774 +7.05431,44.75289,7678,12,10,10,58,7,4.15,5.0,fr,29347,153,1228395,1,1,Active Shallow Crust,240.008,57.99747,0.0,12/10/7678 +7.05431,44.75289,6405,11,29,9,51,17,4.25,5.0,fr,29348,128,1228404,1,3,Active Shallow Crust,0.0,89.9904,0.0,11/29/6405 +7.05431,44.75289,3040,8,21,2,3,41,4.25,5.0,fr,29349,60,1228404,1,3,Active Shallow Crust,0.0,89.9904,0.0,08/21/3040 +7.05431,44.75289,3525,5,22,16,22,56,4.25,5.0,fr,29350,70,1228404,1,3,Active Shallow Crust,0.0,89.9904,0.0,05/22/3525 +7.05431,44.75289,5163,12,26,14,55,39,4.25,5.0,fr,29351,103,1228413,1,1,Active Shallow Crust,128.8937,89.98135,0.0,12/26/5163 +7.05431,44.75289,9897,10,31,9,0,22,4.35,5.0,fr,29352,197,1228416,1,1,Active Shallow Crust,0.0,89.98859,0.0,10/31/9897 +7.05431,44.75289,2162,5,13,21,3,45,4.35,15.0,fr,29353,43,1228417,1,1,Active Shallow Crust,0.0,89.98859,0.0,05/13/2162 +7.05431,44.75289,9997,12,31,14,16,0,4.35,5.0,fr,29354,199,1228425,1,1,Active Shallow Crust,128.8974,89.98296,0.0,12/31/9997 +7.05431,44.75289,2696,7,13,15,8,2,4.35,15.0,fr,29355,53,1228426,1,1,Active Shallow Crust,128.8974,89.98296,0.0,07/13/2696 +7.05431,44.75289,1666,6,2,19,17,48,4.85,5.0,fr,29356,33,1228476,1,1,Active Shallow Crust,0.0,89.99038,0.0,06/02/1666 +7.05431,44.75289,1821,9,1,5,16,58,4.85,15.0,fr,29357,36,1228480,1,1,Active Shallow Crust,240.0164,58.00213,0.0,09/01/1821 +7.05431,44.75289,3776,7,23,11,16,46,5.25,5.0,fr,29358,75,1228524,1,1,Active Shallow Crust,0.0,89.98988,0.0,07/23/3776 +2.73078,53.32986,6464,3,1,7,18,36,3.95,5.0,fr,29359,129,1228848,1,1,Active Shallow Crust,0.0,89.9905,0.0,03/01/6464 +2.73078,53.32986,9270,11,30,13,39,6,4.45,5.0,fr,29360,185,1228908,1,1,Active Shallow Crust,0.0,89.99039,0.0,11/30/9270 +0.30131,49.51324,2977,11,7,3,20,53,3.55,15.0,fr,29361,59,1229770,1,1,Active Shallow Crust,128.8959,89.99387,0.0,11/07/2977 +0.30131,49.51324,1900,12,13,19,33,13,3.65,5.0,fr,29362,37,1229772,1,1,Active Shallow Crust,0.0,89.99015,0.0,12/13/1900 +0.30131,49.51324,6292,5,17,21,30,40,3.65,15.0,fr,29363,125,1229773,1,1,Active Shallow Crust,0.0,89.99015,0.0,05/17/6292 +0.30131,49.51324,8140,9,9,1,27,20,3.65,27.5,fr,29364,162,1229780,1,1,Active Shallow Crust,0.0,89.99004,-90.0,09/09/8140 +0.30131,49.51324,1172,11,13,2,21,16,3.65,5.0,fr,29365,23,1229781,1,1,Active Shallow Crust,128.9001,89.96352,0.0,11/13/1172 +0.30131,49.51324,9369,10,16,17,55,48,3.75,5.0,fr,29366,187,1229790,1,1,Active Shallow Crust,0.0,89.99014,-90.0,10/16/9369 +0.30131,49.51324,1875,2,5,11,47,23,3.75,15.0,fr,29367,37,1229794,1,1,Active Shallow Crust,128.8963,89.96734,0.0,02/05/1875 +0.30131,49.51324,4414,1,22,8,51,7,3.85,5.0,fr,29368,88,1229796,1,1,Active Shallow Crust,0.0,89.98986,0.0,01/22/4414 +0.30131,49.51324,9149,11,30,19,35,15,3.95,5.0,fr,29369,182,1229808,1,1,Active Shallow Crust,0.0,89.98993,0.0,11/30/9149 +0.30131,49.51324,5067,8,7,11,33,10,3.95,15.0,fr,29370,101,1229809,1,1,Active Shallow Crust,0.0,89.98993,0.0,08/07/5067 +0.30131,49.51324,9210,8,1,12,57,36,4.05,5.0,fr,29371,184,1229826,1,1,Active Shallow Crust,0.0,89.98999,-90.0,08/01/9210 +0.30131,49.51324,5598,2,8,2,52,32,4.45,5.0,fr,29372,111,1229868,1,1,Active Shallow Crust,0.0,89.98998,0.0,02/08/5598 +0.30131,49.51324,8070,8,6,17,10,27,4.55,5.0,fr,29373,161,1229880,1,1,Active Shallow Crust,0.0,89.99004,0.0,08/06/8070 +0.30131,49.51324,2554,5,12,13,6,51,4.75,5.0,fr,29374,51,1229904,1,1,Active Shallow Crust,0.0,89.99003,0.0,05/12/2554 +0.30131,49.51324,7551,2,2,16,58,6,5.15,5.0,fr,29375,151,1229961,1,1,Active Shallow Crust,128.8822,89.99104,0.0,02/02/7551 +0.30131,49.51324,7999,7,1,1,53,48,5.45,15.0,fr,29376,159,1229989,1,1,Active Shallow Crust,0.0,89.98999,0.0,07/01/7999 +-5.25527,49.48489,7594,7,15,19,21,56,3.75,27.5,fr,29377,151,1230269,1,1,Active Shallow Crust,240.0092,58.01727,0.0,07/15/7594 +-1.43565,50.2023,5396,3,17,10,58,13,3.55,5.0,fr,29378,107,1230720,1,1,Active Shallow Crust,0.0,89.99032,0.0,03/17/5396 +-1.43565,50.2023,366,1,20,11,20,47,3.65,5.0,fr,29379,7,1230732,1,1,Active Shallow Crust,0.0,89.98993,0.0,01/20/0366 +-1.43565,50.2023,8316,11,3,19,42,46,3.65,5.0,fr,29380,166,1230741,1,1,Active Shallow Crust,128.8999,89.96359,0.0,11/03/8316 +-1.43565,50.2023,2630,4,30,6,38,40,4.35,5.0,fr,29381,52,1230816,1,1,Active Shallow Crust,0.0,89.98972,0.0,04/30/2630 +-1.435633,50.2023,3141,2,27,13,10,20,6.75,11.99416,fr,29382,62,1231104,1,1,Active Shallow Crust,360.0,89.99001,0.0,02/27/3141 +-2.40714,50.00238,4700,4,6,15,6,42,3.65,5.0,fr,29383,93,1231215,1,1,Active Shallow Crust,240.0016,58.01291,0.0,04/06/4700 +-2.40714,50.00238,8395,8,16,18,2,52,4.15,5.0,fr,29384,167,1231272,1,1,Active Shallow Crust,0.0,89.99026,0.0,08/16/8395 +-2.40714,50.00238,5890,2,10,13,38,35,4.35,15.0,fr,29385,117,1231300,1,1,Active Shallow Crust,240.0092,57.9962,0.0,02/10/5890 +-2.40714,50.00238,2385,1,13,22,46,42,4.55,5.0,fr,29386,47,1231320,1,1,Active Shallow Crust,0.0,89.98975,0.0,01/13/2385 +-1.1553,49.55815,3830,11,8,3,35,48,3.55,5.0,fr,29387,76,1231680,1,3,Active Shallow Crust,0.0,89.99019,0.0,11/08/3830 +-1.1553,49.55815,4975,3,17,8,17,50,3.55,5.0,fr,29388,99,1231680,1,3,Active Shallow Crust,0.0,89.99019,0.0,03/17/4975 +-1.1553,49.55815,7981,10,28,6,6,53,3.55,5.0,fr,29389,159,1231680,1,3,Active Shallow Crust,0.0,89.99019,0.0,10/28/7981 +-1.1553,49.55815,1652,7,7,17,29,22,3.65,5.0,fr,29390,33,1231692,1,1,Active Shallow Crust,0.0,89.9898,0.0,07/07/1652 +-1.1553,49.55815,2639,12,24,8,50,54,3.75,5.0,fr,29391,52,1231704,1,1,Active Shallow Crust,0.0,89.98961,0.0,12/24/2639 +-1.1553,49.55815,1263,6,5,8,47,37,3.85,5.0,fr,29392,25,1231716,1,1,Active Shallow Crust,0.0,89.98958,0.0,06/05/1263 +-1.1553,49.55815,740,6,8,1,26,18,3.95,15.0,fr,29393,14,1231729,1,1,Active Shallow Crust,0.0,89.98969,0.0,06/08/0740 +-1.1553,49.55815,5982,7,29,23,40,59,3.95,27.5,fr,29394,119,1231733,1,1,Active Shallow Crust,240.0204,58.00488,0.0,07/29/5982 +-1.1553,49.55815,2308,8,27,22,1,1,4.25,15.0,fr,29395,46,1231765,1,1,Active Shallow Crust,0.0,89.98977,0.0,08/27/2308 +-1.1553,49.55815,7565,3,1,16,17,8,4.75,5.0,fr,29396,151,1231833,1,1,Active Shallow Crust,128.8877,89.98814,0.0,03/01/7565 +3.55043,49.04796,2774,3,2,14,20,28,3.55,5.0,fr,29397,55,1232160,1,1,Active Shallow Crust,0.0,89.99009,0.0,03/02/2774 +4.7034,48.96431,1659,10,4,11,29,12,3.95,15.0,fr,29398,33,1233178,1,1,Active Shallow Crust,128.9006,89.99374,0.0,10/04/1659 +4.7034,48.96431,9405,8,1,14,42,18,4.05,15.0,fr,29399,188,1233187,1,1,Active Shallow Crust,0.0,89.9887,-90.0,08/01/9405 +-2.91804,46.17129,2748,12,29,16,9,15,4.85,5.0,fr,29400,54,1233759,1,1,Active Shallow Crust,240.017,58.00232,0.0,12/29/2748 +1.59215,45.33367,2227,7,21,23,24,47,3.85,5.0,fr,29401,44,1234116,1,2,Active Shallow Crust,0.0,89.98996,0.0,07/21/2227 +1.59215,45.33367,3416,10,10,12,39,43,3.85,5.0,fr,29402,68,1234116,1,2,Active Shallow Crust,0.0,89.98996,0.0,10/10/3416 +1.59215,45.33367,9272,5,3,9,37,14,4.05,5.0,fr,29403,185,1234140,1,1,Active Shallow Crust,0.0,89.99004,0.0,05/03/9272 +1.59215,45.33367,3702,4,2,20,41,5,4.35,5.0,fr,29404,74,1234176,1,1,Active Shallow Crust,0.0,89.99012,0.0,04/02/3702 +1.59215,45.33367,1227,6,7,18,18,52,4.65,5.0,fr,29405,24,1234212,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/07/1227 +1.59215,45.33367,2714,9,2,15,12,59,5.05,5.0,fr,29406,54,1234260,1,1,Active Shallow Crust,0.0,89.98991,0.0,09/02/2714 +-3.8788,48.39805,7348,6,25,2,52,54,3.55,5.0,fr,29407,146,1234560,1,3,Active Shallow Crust,0.0,89.98996,0.0,06/25/7348 +-3.8788,48.39805,376,8,6,13,51,26,3.55,5.0,fr,29408,7,1234560,1,3,Active Shallow Crust,0.0,89.98996,0.0,08/06/0376 +-3.8788,48.39805,3688,1,8,23,36,16,3.55,5.0,fr,29409,73,1234560,1,3,Active Shallow Crust,0.0,89.98996,0.0,01/08/3688 +-3.8788,48.39805,3926,12,3,20,24,7,3.55,15.0,fr,29410,78,1234561,1,1,Active Shallow Crust,0.0,89.98996,0.0,12/03/3926 +-3.8788,48.39805,8914,6,21,0,4,53,3.65,5.0,fr,29411,178,1234572,1,2,Active Shallow Crust,0.0,89.99105,0.0,06/21/8914 +-3.8788,48.39805,9335,2,19,17,3,34,3.65,5.0,fr,29412,186,1234572,1,2,Active Shallow Crust,0.0,89.99105,0.0,02/19/9335 +-3.8788,48.39805,3816,3,9,6,17,35,3.65,5.0,fr,29413,76,1234575,1,1,Active Shallow Crust,240.0013,58.01316,0.0,03/09/3816 +-3.8788,48.39805,9449,6,1,10,45,38,3.75,5.0,fr,29414,188,1234584,1,1,Active Shallow Crust,0.0,89.98936,0.0,06/01/9449 +-3.8788,48.39805,2283,2,8,23,35,19,4.05,15.0,fr,29415,45,1234624,1,1,Active Shallow Crust,240.006,58.00621,0.0,02/08/2283 +-3.8788,48.39805,8324,4,6,3,49,43,4.25,5.0,fr,29416,166,1234644,1,1,Active Shallow Crust,0.0,89.98953,0.0,04/06/8324 +-3.8788,48.39805,6215,6,23,2,11,30,4.45,15.0,fr,29417,124,1234669,1,1,Active Shallow Crust,0.0,89.99049,0.0,06/23/6215 +-3.8788,48.39805,2816,5,2,0,16,11,4.55,15.0,fr,29418,56,1234681,1,1,Active Shallow Crust,0.0,89.99047,0.0,05/02/2816 +-3.8788,48.39805,7623,6,23,11,46,28,4.95,27.5,fr,29419,152,1234730,1,1,Active Shallow Crust,0.0,89.98997,0.0,06/23/7623 +-3.8788,48.39805,9453,6,14,9,37,23,5.05,15.0,fr,29420,189,1234747,1,1,Active Shallow Crust,0.0,89.98976,-90.0,06/14/9453 +-3.8788,48.39805,8356,8,1,22,20,54,5.35,5.0,fr,29421,167,1234779,1,1,Active Shallow Crust,240.0265,57.99818,0.0,08/01/8356 +5.18282,43.59063,9148,9,7,6,14,21,3.55,5.0,fr,29422,182,1235040,1,2,Active Shallow Crust,0.0,89.9927,0.0,09/07/9148 +5.18282,43.59063,9357,5,11,5,16,49,3.55,5.0,fr,29423,187,1235040,1,2,Active Shallow Crust,0.0,89.9927,0.0,05/11/9357 +5.18282,43.59063,5397,6,16,19,16,10,3.55,5.0,fr,29424,107,1235043,1,1,Active Shallow Crust,240.0116,57.99835,0.0,06/16/5397 +5.18282,43.59063,3178,6,24,16,47,41,3.55,15.0,fr,29425,63,1235044,1,1,Active Shallow Crust,240.0116,57.99835,0.0,06/24/3178 +5.18282,43.59063,7999,6,2,21,13,50,3.55,5.0,fr,29426,159,1235046,1,1,Active Shallow Crust,0.0,89.99261,-90.0,06/02/7999 +5.18282,43.59063,2044,2,26,17,28,32,3.65,5.0,fr,29427,40,1235052,1,2,Active Shallow Crust,0.0,89.98698,0.0,02/26/2044 +5.18282,43.59063,291,4,18,12,32,34,3.65,5.0,fr,29428,5,1235052,1,2,Active Shallow Crust,0.0,89.98698,0.0,04/18/0291 +5.18282,43.59063,4356,1,19,8,34,6,3.75,15.0,fr,29429,87,1235065,1,1,Active Shallow Crust,0.0,89.9884,0.0,01/19/4356 +5.18282,43.59063,3032,12,10,22,14,59,3.95,5.0,fr,29430,60,1235097,1,1,Active Shallow Crust,128.9009,89.99539,0.0,12/10/3032 +5.18282,43.59063,7054,1,4,0,16,25,4.05,27.5,fr,29431,141,1235108,1,1,Active Shallow Crust,0.0,89.99169,-90.0,01/04/7054 +5.18282,43.59063,7880,1,24,3,11,16,4.25,5.0,fr,29432,157,1235130,1,1,Active Shallow Crust,0.0,89.9901,-90.0,01/24/7880 +5.18282,43.59063,9753,7,28,20,48,15,4.25,15.0,fr,29433,195,1235131,1,1,Active Shallow Crust,0.0,89.9901,-90.0,07/28/9753 +5.18282,43.59063,881,1,3,13,52,7,4.45,15.0,fr,29434,17,1235152,1,1,Active Shallow Crust,240.0041,57.99483,0.0,01/03/0881 +5.18282,43.59063,2174,6,13,18,42,38,4.45,5.0,fr,29435,43,1235157,1,1,Active Shallow Crust,128.8922,89.99482,0.0,06/13/2174 +5.18282,43.59063,8195,2,6,8,4,2,4.85,5.0,fr,29436,163,1235199,1,1,Active Shallow Crust,240.0159,58.00191,0.0,02/06/8195 +2.37981,49.47635,108,6,29,8,14,20,3.65,5.0,fr,29437,2,1235532,1,1,Active Shallow Crust,0.0,89.99124,0.0,06/29/0108 +2.37981,49.47635,6176,6,10,13,57,31,3.75,5.0,fr,29438,123,1235544,1,1,Active Shallow Crust,0.0,89.98959,0.0,06/10/6176 +2.37981,49.47635,7264,12,27,14,44,54,3.85,5.0,fr,29439,145,1235556,1,1,Active Shallow Crust,0.0,89.99072,0.0,12/27/7264 +2.37981,49.47635,2226,11,8,1,40,18,3.85,5.0,fr,29440,44,1235565,1,1,Active Shallow Crust,128.895,89.9942,0.0,11/08/2226 +2.37981,49.47635,2335,3,10,14,49,54,4.05,5.0,fr,29441,46,1235580,1,1,Active Shallow Crust,0.0,89.99079,0.0,03/10/2335 +2.37981,49.47635,595,8,2,18,44,37,5.35,15.0,fr,29442,11,1235737,1,1,Active Shallow Crust,0.0,89.9901,0.0,08/02/0595 +-1.07823,49.69581,6996,11,20,13,34,29,3.65,5.0,fr,29443,139,1236492,1,1,Active Shallow Crust,0.0,89.98983,0.0,11/20/6996 +-1.07823,49.69581,8338,4,15,22,33,49,3.75,5.0,fr,29444,166,1236504,1,1,Active Shallow Crust,0.0,89.98964,0.0,04/15/8338 +-1.07823,49.69581,3682,7,1,5,19,59,4.25,15.0,fr,29445,73,1236565,1,1,Active Shallow Crust,0.0,89.9898,0.0,07/01/3682 +-1.07823,49.69581,5972,4,11,15,1,15,4.65,5.0,fr,29446,119,1236621,1,1,Active Shallow Crust,128.8901,89.98705,0.0,04/11/5972 +6.30827,46.10594,140,1,24,7,25,27,3.55,5.0,fr,29447,2,1236960,1,3,Active Shallow Crust,0.0,89.99301,0.0,01/24/0140 +6.30827,46.10594,4712,6,1,11,0,49,3.55,5.0,fr,29448,94,1236960,1,3,Active Shallow Crust,0.0,89.99301,0.0,06/01/4712 +6.30827,46.10594,1843,5,28,0,4,38,3.55,5.0,fr,29449,36,1236960,1,3,Active Shallow Crust,0.0,89.99301,0.0,05/28/1843 +6.30827,46.10594,3422,9,25,7,31,47,3.55,15.0,fr,29450,68,1236961,1,3,Active Shallow Crust,0.0,89.99301,0.0,09/25/3422 +6.30827,46.10594,9263,9,22,13,1,8,3.55,15.0,fr,29451,185,1236961,1,3,Active Shallow Crust,0.0,89.99301,0.0,09/22/9263 +6.30827,46.10594,5716,12,16,0,25,57,3.55,15.0,fr,29452,114,1236961,1,3,Active Shallow Crust,0.0,89.99301,0.0,12/16/5716 +6.30827,46.10594,2791,11,12,21,9,51,3.55,27.5,fr,29453,55,1236962,1,1,Active Shallow Crust,0.0,89.99301,0.0,11/12/2791 +6.30827,46.10594,4414,8,30,12,44,3,3.55,5.0,fr,29454,88,1236963,1,1,Active Shallow Crust,240.0124,57.99779,0.0,08/30/4414 +6.30827,46.10594,32,7,29,12,15,52,3.55,27.5,fr,29455,0,1236965,1,1,Active Shallow Crust,240.0124,57.9977,0.0,07/29/0032 +6.30827,46.10594,4515,2,12,7,26,1,3.55,5.0,fr,29456,90,1236966,1,2,Active Shallow Crust,0.0,89.99293,-90.0,02/12/4515 +6.30827,46.10594,4806,8,19,22,12,39,3.55,5.0,fr,29457,96,1236966,1,2,Active Shallow Crust,0.0,89.99293,-90.0,08/19/4806 +6.30827,46.10594,3581,3,13,18,58,55,3.55,27.5,fr,29458,71,1236971,1,1,Active Shallow Crust,128.8967,89.99301,0.0,03/13/3581 +6.30827,46.10594,3152,6,8,6,23,20,3.65,5.0,fr,29459,63,1236972,1,2,Active Shallow Crust,0.0,89.98754,0.0,06/08/3152 +6.30827,46.10594,2305,10,2,2,57,10,3.65,5.0,fr,29460,46,1236972,1,2,Active Shallow Crust,0.0,89.98754,0.0,10/02/2305 +6.30827,46.10594,5186,7,27,18,20,35,3.65,15.0,fr,29461,103,1236973,1,1,Active Shallow Crust,0.0,89.98754,0.0,07/27/5186 +6.30827,46.10594,4281,12,19,13,4,49,3.75,5.0,fr,29462,85,1236984,1,3,Active Shallow Crust,0.0,89.98889,0.0,12/19/4281 +6.30827,46.10594,7854,6,14,20,57,21,3.75,5.0,fr,29463,157,1236984,1,3,Active Shallow Crust,0.0,89.98889,0.0,06/14/7854 +6.30827,46.10594,9832,5,23,17,13,29,3.75,5.0,fr,29464,196,1236984,1,3,Active Shallow Crust,0.0,89.98889,0.0,05/23/9832 +6.30827,46.10594,9393,4,27,11,17,17,3.75,27.5,fr,29465,187,1236986,1,2,Active Shallow Crust,0.0,89.98889,0.0,04/27/9393 +6.30827,46.10594,6498,2,1,0,50,5,3.75,27.5,fr,29466,129,1236986,1,2,Active Shallow Crust,0.0,89.98889,0.0,02/01/6498 +6.30827,46.10594,8025,9,25,19,42,7,3.75,15.0,fr,29467,160,1236991,1,1,Active Shallow Crust,0.0,89.98876,-90.0,09/25/8025 +6.30827,46.10594,9878,7,26,12,38,30,3.75,5.0,fr,29468,197,1236993,1,1,Active Shallow Crust,128.8969,89.96748,0.0,07/26/9878 +6.30827,46.10594,309,7,9,3,28,12,3.85,5.0,fr,29469,6,1236996,1,1,Active Shallow Crust,0.0,89.9901,0.0,07/09/0309 +6.30827,46.10594,8100,4,19,19,59,41,3.85,5.0,fr,29470,161,1236999,1,1,Active Shallow Crust,240.0112,57.99798,0.0,04/19/8100 +6.30827,46.10594,8033,5,14,8,40,44,3.95,5.0,fr,29471,160,1237008,1,2,Active Shallow Crust,0.0,89.99118,0.0,05/14/8033 +6.30827,46.10594,515,6,4,2,54,13,3.95,5.0,fr,29472,10,1237008,1,2,Active Shallow Crust,0.0,89.99118,0.0,06/04/0515 +6.30827,46.10594,8960,12,2,5,17,18,3.95,15.0,fr,29473,179,1237009,1,1,Active Shallow Crust,0.0,89.99118,0.0,12/02/8960 +6.30827,46.10594,3436,11,10,6,8,4,3.95,27.5,fr,29474,68,1237010,1,1,Active Shallow Crust,0.0,89.99118,0.0,11/10/3436 +6.30827,46.10594,6645,12,27,6,14,37,3.95,15.0,fr,29475,132,1237018,1,1,Active Shallow Crust,128.8994,89.99339,0.0,12/27/6645 +6.30827,46.10594,406,2,15,4,40,34,3.95,27.5,fr,29476,8,1237019,1,1,Active Shallow Crust,128.8994,89.99339,0.0,02/15/0406 +6.30827,46.10594,1468,4,1,17,0,11,4.05,27.5,fr,29477,29,1237022,1,1,Active Shallow Crust,0.0,89.9882,0.0,04/01/1468 +6.30827,46.10594,80,4,29,1,15,18,4.25,15.0,fr,29478,1,1237045,1,1,Active Shallow Crust,0.0,89.99063,0.0,04/29/0080 +6.30827,46.10594,312,12,11,12,34,16,4.55,5.0,fr,29479,6,1237080,1,1,Active Shallow Crust,0.0,89.98895,0.0,12/11/0312 +6.30827,46.10594,654,4,16,12,14,38,4.75,15.0,fr,29480,13,1237105,1,1,Active Shallow Crust,0.0,89.98946,0.0,04/16/0654 +6.30827,46.10594,1531,7,13,14,17,17,4.85,5.0,fr,29481,30,1237116,1,1,Active Shallow Crust,0.0,89.99061,0.0,07/13/1531 +6.30827,46.10594,1542,7,8,0,35,36,5.05,5.0,fr,29482,30,1237146,1,1,Active Shallow Crust,0.0,89.98994,-90.0,07/08/1542 +0.52561,45.52528,9054,7,27,13,37,28,3.55,5.0,fr,29483,181,1237440,1,1,Active Shallow Crust,0.0,89.99029,0.0,07/27/9054 +0.52561,45.52528,7261,7,9,0,19,20,3.55,5.0,fr,29484,145,1237449,1,1,Active Shallow Crust,128.8963,89.99382,0.0,07/09/7261 +0.52561,45.52528,8984,2,15,14,11,2,3.65,5.0,fr,29485,179,1237455,1,1,Active Shallow Crust,240.0009,58.01299,0.0,02/15/8984 +0.52561,45.52528,9592,5,25,15,41,40,3.65,5.0,fr,29486,191,1237461,1,1,Active Shallow Crust,128.9005,89.96351,0.0,05/25/9592 +0.52561,45.52528,1775,10,26,7,34,51,3.85,5.0,fr,29487,35,1237476,1,1,Active Shallow Crust,0.0,89.99,0.0,10/26/1775 +0.52561,45.52528,1245,2,5,22,10,30,3.85,15.0,fr,29488,24,1237480,1,1,Active Shallow Crust,240.0107,57.99784,0.0,02/05/1245 +0.52561,45.52528,7539,5,21,11,20,37,4.45,15.0,fr,29489,150,1237549,1,1,Active Shallow Crust,0.0,89.98997,0.0,05/21/7539 +0.52561,45.52528,401,12,31,8,15,53,5.05,15.0,fr,29490,8,1237621,1,1,Active Shallow Crust,0.0,89.98994,0.0,12/31/0401 +3.6924,43.64731,9184,6,21,15,2,35,3.55,27.5,fr,29491,183,1237922,1,1,Active Shallow Crust,0.0,89.98905,0.0,06/21/9184 +3.6924,43.64731,7120,3,22,15,33,39,3.85,5.0,fr,29492,142,1237959,1,1,Active Shallow Crust,240.0101,57.99781,0.0,03/22/7120 +3.6924,43.64731,9527,6,20,11,23,19,4.05,5.0,fr,29493,190,1237989,1,1,Active Shallow Crust,128.8909,89.99384,0.0,06/20/9527 +3.6924,43.64731,8749,5,18,5,15,3,4.15,5.0,fr,29494,174,1237992,1,1,Active Shallow Crust,0.0,89.99086,0.0,05/18/8749 +3.6924,43.64731,881,4,2,11,36,19,5.25,15.0,fr,29495,17,1238125,1,1,Active Shallow Crust,0.0,89.9902,0.0,04/02/0881 +-2.85043,47.54344,5159,10,28,2,35,27,3.55,5.0,fr,29496,103,1238400,1,1,Active Shallow Crust,0.0,89.98979,0.0,10/28/5159 +-2.85043,47.54344,9221,9,22,1,0,57,3.75,5.0,fr,29497,184,1238424,1,1,Active Shallow Crust,0.0,89.98919,0.0,09/22/9221 +-2.85043,47.54344,542,11,5,11,59,40,3.75,5.0,fr,29498,10,1238427,1,1,Active Shallow Crust,240.0084,58.01736,0.0,11/05/0542 +-2.85043,47.54344,4699,8,20,6,23,27,3.85,5.0,fr,29499,93,1238436,1,2,Active Shallow Crust,0.0,89.99036,0.0,08/20/4699 +-2.85043,47.54344,477,12,16,16,23,53,3.85,5.0,fr,29500,9,1238436,1,2,Active Shallow Crust,0.0,89.99036,0.0,12/16/0477 +-2.85043,47.54344,9604,7,16,7,38,53,3.85,5.0,fr,29501,192,1238439,1,1,Active Shallow Crust,240.0109,57.99825,0.0,07/16/9604 +-2.85043,47.54344,2478,11,22,23,48,48,3.85,5.0,fr,29502,49,1238445,1,1,Active Shallow Crust,128.8956,89.99398,0.0,11/22/2478 +-2.85043,47.54344,2394,1,29,8,49,34,3.95,15.0,fr,29503,47,1238449,1,1,Active Shallow Crust,0.0,89.98927,0.0,01/29/2394 +-2.85043,47.54344,1257,9,4,6,13,9,3.95,27.5,fr,29504,25,1238453,1,1,Active Shallow Crust,240.0195,58.00511,0.0,09/04/1257 +-2.85043,47.54344,1678,9,26,2,33,8,4.05,5.0,fr,29505,33,1238460,1,2,Active Shallow Crust,0.0,89.99043,0.0,09/26/1678 +-2.85043,47.54344,3444,6,20,14,57,27,4.05,5.0,fr,29506,68,1238460,1,2,Active Shallow Crust,0.0,89.99043,0.0,06/20/3444 +-2.85043,47.54344,6038,7,22,5,58,44,4.15,27.5,fr,29507,120,1238474,1,1,Active Shallow Crust,0.0,89.98976,0.0,07/22/6038 +-2.85043,47.54344,4730,3,11,5,41,25,4.25,5.0,fr,29508,94,1238493,1,1,Active Shallow Crust,128.8938,89.98099,0.0,03/11/4730 +-2.85043,47.54344,1562,5,29,11,36,51,4.35,5.0,fr,29509,31,1238499,1,1,Active Shallow Crust,240.0087,57.99585,0.0,05/29/1562 +-2.85043,47.54344,8980,7,20,1,10,18,5.45,5.0,fr,29510,179,1238628,1,1,Active Shallow Crust,0.0,89.99007,0.0,07/20/8980 +1.33385,48.77637,3332,1,29,3,2,37,3.55,5.0,fr,29511,66,1238883,1,1,Active Shallow Crust,240.0124,57.99848,0.0,01/29/3332 +1.33385,48.77637,2638,12,16,1,26,7,3.65,5.0,fr,29512,52,1238892,1,1,Active Shallow Crust,0.0,89.98963,0.0,12/16/2638 +1.33385,48.77637,8847,1,25,2,58,57,3.75,15.0,fr,29513,176,1238905,1,1,Active Shallow Crust,0.0,89.98944,0.0,01/25/8847 +1.33385,48.77637,5686,5,31,6,43,2,4.45,5.0,fr,29514,113,1238994,1,1,Active Shallow Crust,0.0,89.98986,-90.0,05/31/5686 +3.33966,46.73049,8823,9,29,7,49,13,3.65,27.5,fr,29515,176,1239854,1,1,Active Shallow Crust,0.0,89.99076,0.0,09/29/8823 +3.33966,46.73049,5043,7,23,10,43,48,3.75,15.0,fr,29516,100,1239874,1,1,Active Shallow Crust,128.8968,89.96723,0.0,07/23/5043 +3.33966,46.73049,4640,1,12,0,28,57,3.85,5.0,fr,29517,92,1239876,1,1,Active Shallow Crust,0.0,89.99021,0.0,01/12/4640 +3.33966,46.73049,1512,12,29,7,22,3,4.15,27.5,fr,29518,30,1239914,1,1,Active Shallow Crust,0.0,89.98961,0.0,12/29/1512 +3.33966,46.73049,8127,5,6,12,20,48,4.75,15.0,fr,29519,162,1239985,1,1,Active Shallow Crust,0.0,89.98958,0.0,05/06/8127 +5.48625,45.74007,4292,8,16,23,7,21,3.55,5.0,fr,29520,85,1240320,1,3,Active Shallow Crust,0.0,89.99297,0.0,08/16/4292 +5.48625,45.74007,8886,8,31,6,35,59,3.55,5.0,fr,29521,177,1240320,1,3,Active Shallow Crust,0.0,89.99297,0.0,08/31/8886 +5.48625,45.74007,711,12,19,22,20,51,3.55,5.0,fr,29522,14,1240320,1,3,Active Shallow Crust,0.0,89.99297,0.0,12/19/0711 +5.48625,45.74007,746,2,11,2,23,29,3.55,15.0,fr,29523,14,1240321,1,1,Active Shallow Crust,0.0,89.99297,0.0,02/11/0746 +5.48625,45.74007,8613,7,12,8,11,51,3.55,5.0,fr,29524,172,1240323,1,2,Active Shallow Crust,240.0111,57.99846,0.0,07/12/8613 +5.48625,45.74007,399,10,4,18,47,54,3.55,5.0,fr,29525,7,1240323,1,2,Active Shallow Crust,240.0111,57.99846,0.0,10/04/0399 +5.48625,45.74007,6027,5,13,6,18,45,3.65,5.0,fr,29526,120,1240332,1,3,Active Shallow Crust,0.0,89.98746,0.0,05/13/6027 +5.48625,45.74007,4605,9,2,23,38,10,3.65,5.0,fr,29527,92,1240332,1,3,Active Shallow Crust,0.0,89.98746,0.0,09/02/4605 +5.48625,45.74007,5514,3,19,17,18,6,3.65,5.0,fr,29528,110,1240332,1,3,Active Shallow Crust,0.0,89.98746,0.0,03/19/5514 +5.48625,45.74007,8921,1,11,19,48,52,3.65,15.0,fr,29529,178,1240333,1,2,Active Shallow Crust,0.0,89.98746,0.0,01/11/8921 +5.48625,45.74007,3453,4,1,19,34,53,3.65,15.0,fr,29530,69,1240333,1,2,Active Shallow Crust,0.0,89.98746,0.0,04/01/3453 +5.48625,45.74007,8225,7,9,22,35,11,3.65,5.0,fr,29531,164,1240341,1,1,Active Shallow Crust,128.8998,89.96351,0.0,07/09/8225 +5.48625,45.74007,7068,1,10,21,4,27,3.75,5.0,fr,29532,141,1240344,1,1,Active Shallow Crust,0.0,89.98882,0.0,01/10/7068 +5.48625,45.74007,2025,2,3,14,59,34,3.75,15.0,fr,29533,40,1240345,1,1,Active Shallow Crust,0.0,89.98882,0.0,02/03/2025 +5.48625,45.74007,4894,5,8,21,10,24,3.75,5.0,fr,29534,97,1240350,1,1,Active Shallow Crust,0.0,89.98869,-90.0,05/08/4894 +5.48625,45.74007,7904,9,16,21,5,3,3.95,5.0,fr,29535,158,1240368,1,1,Active Shallow Crust,0.0,89.99112,0.0,09/16/7904 +5.48625,45.74007,4851,1,4,11,24,39,3.95,5.0,fr,29536,97,1240377,1,1,Active Shallow Crust,128.901,89.99334,0.0,01/04/4851 +5.48625,45.74007,8760,12,11,8,51,14,4.05,5.0,fr,29537,175,1240380,1,1,Active Shallow Crust,0.0,89.98813,0.0,12/11/8760 +5.48625,45.74007,4112,4,8,14,55,16,4.15,27.5,fr,29538,82,1240400,1,1,Active Shallow Crust,0.0,89.9893,-90.0,04/08/4112 +5.48625,45.74007,3972,12,7,12,11,14,4.25,5.0,fr,29539,79,1240407,1,1,Active Shallow Crust,240.0067,57.99454,0.0,12/07/3972 +5.48625,45.74007,8466,3,20,10,15,50,4.45,5.0,fr,29540,169,1240431,1,1,Active Shallow Crust,240.0048,57.99465,0.0,03/20/8466 +5.48625,45.74007,4481,5,15,19,14,38,4.75,15.0,fr,29541,89,1240465,1,1,Active Shallow Crust,0.0,89.9894,0.0,05/15/4481 +5.48625,45.74007,1436,5,23,14,50,34,4.95,5.0,fr,29542,28,1240488,1,1,Active Shallow Crust,0.0,89.99017,0.0,05/23/1436 +5.48625,45.74007,7187,10,28,17,41,25,5.05,27.5,fr,29543,143,1240502,1,1,Active Shallow Crust,0.0,89.98998,0.0,10/28/7187 +5.48625,45.74007,5909,2,8,1,45,1,6.55,15.0,fr,29544,118,1240681,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/08/5909 +-2.7068,42.0402,7406,5,10,11,42,44,3.55,5.0,fr,29545,148,1240800,1,1,Active Shallow Crust,0.0,89.98877,0.0,05/10/7406 +-2.7068,42.0402,6948,9,19,3,50,25,3.55,5.0,fr,29546,138,1240806,1,1,Active Shallow Crust,0.0,89.98864,-90.0,09/19/6948 +-2.7068,42.0402,6111,5,5,9,0,41,3.65,5.0,fr,29547,122,1240812,1,1,Active Shallow Crust,0.0,89.98999,0.0,05/05/6111 +-2.7068,42.0402,8412,11,27,8,52,24,3.65,15.0,fr,29548,168,1240819,1,1,Active Shallow Crust,0.0,89.98988,-90.0,11/27/8412 +-2.7068,42.0402,249,10,31,13,33,22,3.75,5.0,fr,29549,4,1240824,1,2,Active Shallow Crust,0.0,89.99107,0.0,10/31/0249 +-2.7068,42.0402,5641,2,3,15,33,57,3.75,5.0,fr,29550,112,1240824,1,2,Active Shallow Crust,0.0,89.99107,0.0,02/03/5641 +-2.7068,42.0402,4844,7,7,0,44,12,3.85,5.0,fr,29551,96,1240836,1,1,Active Shallow Crust,0.0,89.9894,0.0,07/07/4844 +-2.7068,42.0402,5001,6,6,11,54,25,3.85,5.0,fr,29552,100,1240845,1,1,Active Shallow Crust,128.8959,89.9947,0.0,06/06/5001 +-2.7068,42.0402,865,7,17,1,39,4,3.85,15.0,fr,29553,17,1240846,1,1,Active Shallow Crust,128.8959,89.9947,0.0,07/17/0865 +-2.7068,42.0402,8181,8,10,14,30,13,3.95,5.0,fr,29554,163,1240857,1,1,Active Shallow Crust,128.9007,89.99409,0.0,08/10/8181 +-2.7068,42.0402,9565,10,21,22,55,4,4.05,15.0,fr,29555,191,1240861,1,1,Active Shallow Crust,0.0,89.98947,0.0,10/21/9565 +-2.7068,42.0402,5183,5,29,13,52,15,4.75,27.5,fr,29556,103,1240946,1,1,Active Shallow Crust,0.0,89.98965,0.0,05/29/5183 +-2.7068,42.0402,3175,2,20,10,58,59,5.95,5.0,fr,29557,63,1241088,1,1,Active Shallow Crust,0.0,89.99007,0.0,02/20/3175 +8.78399,48.5727,52,7,15,22,9,31,3.55,15.0,fr,29558,1,1241281,1,1,Active Shallow Crust,0.0,89.98666,0.0,07/15/0052 +8.78399,48.5727,8376,7,2,0,8,7,3.55,5.0,fr,29559,167,1241283,1,2,Active Shallow Crust,240.0124,57.99893,0.0,07/02/8376 +8.78399,48.5727,8919,8,1,15,43,29,3.55,5.0,fr,29560,178,1241283,1,2,Active Shallow Crust,240.0124,57.99893,0.0,08/01/8919 +8.78399,48.5727,9894,7,12,23,54,44,3.55,5.0,fr,29561,197,1241289,1,1,Active Shallow Crust,128.8972,89.99333,0.0,07/12/9894 +8.78399,48.5727,9062,10,13,6,5,40,3.65,5.0,fr,29562,181,1241292,1,1,Active Shallow Crust,0.0,89.98811,0.0,10/13/9062 +8.78399,48.5727,7234,7,12,12,29,27,3.65,15.0,fr,29563,144,1241293,1,1,Active Shallow Crust,0.0,89.98811,0.0,07/12/7234 +8.78399,48.5727,6517,9,12,1,20,54,3.65,27.5,fr,29564,130,1241300,1,1,Active Shallow Crust,0.0,89.98797,-90.0,09/12/6517 +8.78399,48.5727,3297,8,7,16,53,18,3.75,15.0,fr,29565,65,1241305,1,1,Active Shallow Crust,0.0,89.9894,0.0,08/07/3297 +8.78399,48.5727,2337,2,7,17,28,8,3.85,15.0,fr,29566,46,1241317,1,3,Active Shallow Crust,0.0,89.99055,0.0,02/07/2337 +8.78399,48.5727,1736,2,6,22,25,56,3.85,15.0,fr,29567,34,1241317,1,3,Active Shallow Crust,0.0,89.99055,0.0,02/06/1736 +8.78399,48.5727,5529,7,13,13,34,36,3.85,15.0,fr,29568,110,1241317,1,3,Active Shallow Crust,0.0,89.99055,0.0,07/13/5529 +8.78399,48.5727,8885,10,21,3,22,21,3.95,5.0,fr,29569,177,1241331,1,1,Active Shallow Crust,240.0207,58.0049,0.0,10/21/8885 +8.78399,48.5727,1223,11,9,5,47,52,3.95,5.0,fr,29570,24,1241334,1,2,Active Shallow Crust,0.0,89.99149,-90.0,11/09/1223 +8.78399,48.5727,774,10,16,15,24,42,3.95,5.0,fr,29571,15,1241334,1,2,Active Shallow Crust,0.0,89.99149,-90.0,10/16/0774 +8.78399,48.5727,4342,3,2,20,33,5,4.05,5.0,fr,29572,86,1241340,1,1,Active Shallow Crust,0.0,89.99249,0.0,03/02/4342 +8.78399,48.5727,1037,1,27,10,8,5,4.05,15.0,fr,29573,20,1241347,1,1,Active Shallow Crust,0.0,89.99241,-90.0,01/27/1037 +8.78399,48.5727,6913,9,11,14,44,0,4.15,27.5,fr,29574,138,1241354,1,1,Active Shallow Crust,0.0,89.99331,0.0,09/11/6913 +8.78399,48.5727,1955,3,30,7,7,35,4.25,5.0,fr,29575,39,1241364,1,1,Active Shallow Crust,0.0,89.98808,0.0,03/30/1955 +8.78399,48.5727,4089,1,3,6,51,29,4.55,5.0,fr,29576,81,1241409,1,1,Active Shallow Crust,128.8925,89.98576,0.0,01/03/4089 +8.78399,48.5727,1495,6,9,13,32,7,5.45,5.0,fr,29577,29,1241514,1,1,Active Shallow Crust,0.0,89.9894,-90.0,06/09/1495 +4.78299,51.56952,3243,4,12,14,19,48,3.65,5.0,fr,29578,64,1241772,1,1,Active Shallow Crust,0.0,89.98883,0.0,04/12/3243 +4.78299,51.56952,2881,1,29,6,49,22,3.75,27.5,fr,29579,57,1241786,1,1,Active Shallow Crust,0.0,89.99004,0.0,01/29/2881 +0.40922,41.56883,2195,4,2,10,16,22,3.85,5.0,fr,29580,43,1242282,1,1,Active Shallow Crust,0.0,89.98987,-90.0,04/02/2195 +0.40922,41.56883,7930,8,19,10,57,2,4.15,5.0,fr,29581,158,1242312,1,1,Active Shallow Crust,0.0,89.99007,0.0,08/19/7930 +0.40922,41.56883,3107,11,6,8,15,24,4.45,15.0,fr,29582,62,1242349,1,1,Active Shallow Crust,0.0,89.98996,0.0,11/06/3107 +-1.44154,42.74615,4666,7,26,19,14,41,3.55,5.0,fr,29583,93,1242720,1,4,Active Shallow Crust,0.0,89.99075,0.0,07/26/4666 +-1.44154,42.74615,4834,12,23,18,12,32,3.55,5.0,fr,29584,96,1242720,1,4,Active Shallow Crust,0.0,89.99075,0.0,12/23/4834 +-1.44154,42.74615,4899,1,18,18,4,3,3.55,5.0,fr,29585,97,1242720,1,4,Active Shallow Crust,0.0,89.99075,0.0,01/18/4899 +-1.44154,42.74615,4236,10,13,20,37,23,3.55,5.0,fr,29586,84,1242720,1,4,Active Shallow Crust,0.0,89.99075,0.0,10/13/4236 +-1.44154,42.74615,5564,12,14,9,13,0,3.55,15.0,fr,29587,111,1242721,1,2,Active Shallow Crust,0.0,89.99075,0.0,12/14/5564 +-1.44154,42.74615,1691,9,8,2,48,8,3.55,15.0,fr,29588,33,1242721,1,2,Active Shallow Crust,0.0,89.99075,0.0,09/08/1691 +-1.44154,42.74615,1955,6,9,8,51,29,3.55,5.0,fr,29589,39,1242723,1,1,Active Shallow Crust,240.0117,57.99822,0.0,06/09/1955 +-1.44154,42.74615,5430,2,13,15,17,37,3.55,27.5,fr,29590,108,1242725,1,1,Active Shallow Crust,240.0117,57.99813,0.0,02/13/5430 +-1.44154,42.74615,4055,3,30,13,33,5,3.55,5.0,fr,29591,81,1242726,1,1,Active Shallow Crust,0.0,89.99064,-90.0,03/30/4055 +-1.44154,42.74615,5664,7,17,16,10,42,3.55,15.0,fr,29592,113,1242730,1,1,Active Shallow Crust,128.8967,89.99352,0.0,07/17/5664 +-1.44154,42.74615,2907,3,6,5,33,18,3.65,5.0,fr,29593,58,1242732,1,4,Active Shallow Crust,0.0,89.9901,0.0,03/06/2907 +-1.44154,42.74615,3921,3,20,6,40,14,3.65,5.0,fr,29594,78,1242732,1,4,Active Shallow Crust,0.0,89.9901,0.0,03/20/3921 +-1.44154,42.74615,7060,5,10,0,15,33,3.65,5.0,fr,29595,141,1242732,1,4,Active Shallow Crust,0.0,89.9901,0.0,05/10/7060 +-1.44154,42.74615,2990,3,11,20,39,28,3.65,5.0,fr,29596,59,1242732,1,4,Active Shallow Crust,0.0,89.9901,0.0,03/11/2990 +-1.44154,42.74615,2188,3,10,13,21,2,3.65,5.0,fr,29597,43,1242735,1,1,Active Shallow Crust,240.0006,58.01295,0.0,03/10/2188 +-1.44154,42.74615,4100,11,21,11,34,2,3.65,5.0,fr,29598,81,1242738,1,1,Active Shallow Crust,0.0,89.98998,-90.0,11/21/4100 +-1.44154,42.74615,3548,5,6,5,23,31,3.65,5.0,fr,29599,70,1242741,1,1,Active Shallow Crust,128.9004,89.96359,0.0,05/06/3548 +-1.44154,42.74615,7753,5,6,3,17,44,3.75,5.0,fr,29600,155,1242744,1,3,Active Shallow Crust,0.0,89.98971,0.0,05/06/7753 +-1.44154,42.74615,9168,12,15,19,46,30,3.75,5.0,fr,29601,183,1242744,1,3,Active Shallow Crust,0.0,89.98971,0.0,12/15/9168 +-1.44154,42.74615,6351,9,7,20,1,28,3.75,5.0,fr,29602,127,1242744,1,3,Active Shallow Crust,0.0,89.98971,0.0,09/07/6351 +-1.44154,42.74615,950,1,25,4,16,4,3.75,15.0,fr,29603,18,1242745,1,1,Active Shallow Crust,0.0,89.98971,0.0,01/25/0950 +-1.44154,42.74615,2127,1,12,21,33,1,3.75,5.0,fr,29604,42,1242750,1,2,Active Shallow Crust,0.0,89.98959,-90.0,01/12/2127 +-1.44154,42.74615,3999,11,20,13,0,15,3.75,5.0,fr,29605,79,1242750,1,2,Active Shallow Crust,0.0,89.98959,-90.0,11/20/3999 +-1.44154,42.74615,9737,9,9,2,23,30,3.85,5.0,fr,29606,194,1242759,1,1,Active Shallow Crust,240.0105,57.99762,0.0,09/09/9737 +-1.44154,42.74615,3976,5,1,14,26,16,3.85,5.0,fr,29607,79,1242765,1,1,Active Shallow Crust,128.8959,89.9941,0.0,05/01/3976 +-1.44154,42.74615,8296,4,25,19,53,47,3.95,5.0,fr,29608,165,1242774,1,1,Active Shallow Crust,0.0,89.99055,-90.0,04/25/8296 +-1.44154,42.74615,6379,2,28,20,13,51,3.95,15.0,fr,29609,127,1242778,1,1,Active Shallow Crust,128.901,89.99358,0.0,02/28/6379 +-1.44154,42.74615,6655,12,24,17,39,8,4.15,5.0,fr,29610,133,1242792,1,3,Active Shallow Crust,0.0,89.98979,0.0,12/24/6655 +-1.44154,42.74615,3667,9,16,11,1,53,4.15,5.0,fr,29611,73,1242792,1,3,Active Shallow Crust,0.0,89.98979,0.0,09/16/3667 +-1.44154,42.74615,1259,6,18,19,10,5,4.15,5.0,fr,29612,25,1242792,1,3,Active Shallow Crust,0.0,89.98979,0.0,06/18/1259 +-1.44154,42.74615,5343,9,23,22,31,15,4.15,27.5,fr,29613,106,1242794,1,1,Active Shallow Crust,0.0,89.98979,0.0,09/23/5343 +-1.44154,42.74615,5741,5,7,15,4,55,4.15,5.0,fr,29614,114,1242795,1,1,Active Shallow Crust,240.0078,57.99729,0.0,05/07/5741 +-1.44154,42.74615,6664,4,18,3,25,3,4.25,27.5,fr,29615,133,1242806,1,1,Active Shallow Crust,0.0,89.99007,0.0,04/18/6664 +-1.44154,42.74615,8670,7,8,23,37,36,4.25,15.0,fr,29616,173,1242814,1,1,Active Shallow Crust,128.8948,89.98095,0.0,07/08/8670 +-1.44154,42.74615,905,5,22,0,6,2,4.35,5.0,fr,29617,18,1242816,1,2,Active Shallow Crust,0.0,89.98968,0.0,05/22/0905 +-1.44154,42.74615,978,8,15,8,34,2,4.35,5.0,fr,29618,19,1242816,1,2,Active Shallow Crust,0.0,89.98968,0.0,08/15/0978 +-1.44154,42.74615,9849,8,6,4,27,23,4.35,15.0,fr,29619,196,1242817,1,1,Active Shallow Crust,0.0,89.98968,0.0,08/06/9849 +-1.44154,42.74615,1748,2,28,17,11,4,4.55,5.0,fr,29620,34,1242840,1,1,Active Shallow Crust,0.0,89.99004,0.0,02/28/1748 +-1.44154,42.74615,7186,5,27,21,24,48,4.75,5.0,fr,29621,143,1242864,1,1,Active Shallow Crust,0.0,89.98977,0.0,05/27/7186 +-1.44154,42.74615,8909,10,31,3,59,38,4.85,5.0,fr,29622,178,1242879,1,1,Active Shallow Crust,240.0156,58.00209,0.0,10/31/8909 +-1.44154,42.74615,2754,8,21,7,34,13,4.85,5.0,fr,29623,55,1242882,1,1,Active Shallow Crust,0.0,89.98994,-90.0,08/21/2754 +-1.44154,42.74615,6011,3,12,23,30,50,4.95,15.0,fr,29624,120,1242889,1,1,Active Shallow Crust,0.0,89.99003,0.0,03/12/6011 +-1.44154,42.74615,4623,7,27,9,13,46,5.05,5.0,fr,29625,92,1242900,1,1,Active Shallow Crust,0.0,89.99012,0.0,07/27/4623 +2.51109,49.35084,6064,3,15,6,41,27,3.55,5.0,fr,29626,121,1243200,1,1,Active Shallow Crust,0.0,89.99014,0.0,03/15/6064 +2.51109,49.35084,9093,6,24,2,56,55,3.85,5.0,fr,29627,181,1243242,1,1,Active Shallow Crust,0.0,89.99059,-90.0,06/24/9093 +2.51109,49.35084,2443,2,15,9,29,7,4.35,27.5,fr,29628,48,1243298,1,1,Active Shallow Crust,0.0,89.98954,0.0,02/15/2443 +2.51109,49.35084,5262,6,29,15,38,51,4.45,15.0,fr,29629,105,1243315,1,1,Active Shallow Crust,0.0,89.99057,-90.0,06/29/5262 +3.12552,43.2968,320,6,10,19,56,36,3.55,5.0,fr,29630,6,1243680,1,1,Active Shallow Crust,0.0,89.98899,0.0,06/10/0320 +3.12552,43.2968,2070,8,9,2,21,52,3.55,5.0,fr,29631,41,1243683,1,1,Active Shallow Crust,240.0122,57.99813,0.0,08/09/2070 +3.12552,43.2968,9978,5,14,16,32,32,3.65,5.0,fr,29632,199,1243701,1,1,Active Shallow Crust,128.9008,89.96346,0.0,05/14/9978 +3.12552,43.2968,8406,1,21,22,52,18,3.75,5.0,fr,29633,168,1243704,1,1,Active Shallow Crust,0.0,89.99126,0.0,01/21/8406 +3.12552,43.2968,3637,8,14,9,29,17,3.85,5.0,fr,29634,72,1243725,1,1,Active Shallow Crust,128.8959,89.99351,0.0,08/14/3637 +3.12552,43.2968,7871,12,17,23,43,53,3.95,27.5,fr,29635,157,1243730,1,1,Active Shallow Crust,0.0,89.99074,0.0,12/17/7871 +3.12552,43.2968,8179,9,11,10,59,42,4.35,5.0,fr,29636,163,1243776,1,1,Active Shallow Crust,0.0,89.98978,0.0,09/11/8179 +3.12552,43.2968,2076,1,6,7,23,18,4.55,27.5,fr,29637,41,1243802,1,1,Active Shallow Crust,0.0,89.98956,0.0,01/06/2076 +4.32222,42.4036,6662,5,12,7,59,34,3.65,27.5,fr,29638,133,1244174,1,1,Active Shallow Crust,0.0,89.98672,0.0,05/12/6662 +4.32222,42.4036,1221,12,28,14,22,12,4.05,5.0,fr,29639,24,1244220,1,1,Active Shallow Crust,0.0,89.99162,0.0,12/28/1221 +3.00035,43.41041,1101,6,17,16,7,52,3.65,27.5,fr,29640,22,1244654,1,1,Active Shallow Crust,0.0,89.9902,0.0,06/17/1101 +3.00035,43.41041,8817,4,29,0,0,34,3.85,27.5,fr,29641,176,1244678,1,1,Active Shallow Crust,0.0,89.98962,0.0,04/29/8817 +3.00035,43.41041,9724,11,5,9,50,44,4.15,15.0,fr,29642,194,1244722,1,1,Active Shallow Crust,128.898,89.99358,0.0,11/05/9724 +3.00035,43.41041,4311,2,6,15,47,16,4.25,27.5,fr,29643,86,1244726,1,1,Active Shallow Crust,0.0,89.99018,0.0,02/06/4311 +3.00035,43.41041,2441,5,3,4,47,38,4.25,15.0,fr,29644,48,1244734,1,1,Active Shallow Crust,128.8949,89.98083,0.0,05/03/2441 +5.37819,50.30265,9540,4,28,10,4,43,3.55,5.0,fr,29645,190,1245120,1,1,Active Shallow Crust,0.0,89.98712,0.0,04/28/9540 +5.37819,50.30265,6672,7,1,18,12,23,3.65,5.0,fr,29646,133,1245132,1,3,Active Shallow Crust,0.0,89.98852,0.0,07/01/6672 +5.37819,50.30265,5539,6,18,0,55,51,3.65,5.0,fr,29647,110,1245132,1,3,Active Shallow Crust,0.0,89.98852,0.0,06/18/5539 +5.37819,50.30265,2031,3,14,10,31,29,3.65,5.0,fr,29648,40,1245132,1,3,Active Shallow Crust,0.0,89.98852,0.0,03/14/2031 +5.37819,50.30265,5647,9,12,17,24,19,3.75,5.0,fr,29649,112,1245150,1,1,Active Shallow Crust,0.0,89.98965,-90.0,09/12/5647 +5.37819,50.30265,2634,4,12,7,39,40,3.85,5.0,fr,29650,52,1245156,1,2,Active Shallow Crust,0.0,89.99088,0.0,04/12/2634 +5.37819,50.30265,7519,11,11,20,50,26,3.85,5.0,fr,29651,150,1245156,1,2,Active Shallow Crust,0.0,89.99088,0.0,11/11/7519 +5.37819,50.30265,2305,5,28,13,24,41,3.85,27.5,fr,29652,46,1245158,1,1,Active Shallow Crust,0.0,89.99088,0.0,05/28/2305 +5.37819,50.30265,2287,3,19,19,42,9,4.05,5.0,fr,29653,45,1245180,1,1,Active Shallow Crust,0.0,89.98914,0.0,03/19/2287 +5.37819,50.30265,7165,8,3,1,51,26,4.05,15.0,fr,29654,143,1245181,1,1,Active Shallow Crust,0.0,89.98914,0.0,08/03/7165 +5.37819,50.30265,7401,11,2,7,45,40,4.15,15.0,fr,29655,148,1245193,1,1,Active Shallow Crust,0.0,89.99032,0.0,11/02/7401 +5.37819,50.30265,2501,7,22,21,51,10,4.35,5.0,fr,29656,50,1245216,1,1,Active Shallow Crust,0.0,89.98975,0.0,07/22/2501 +5.37819,50.30265,1027,11,7,10,5,42,4.45,5.0,fr,29657,20,1245234,1,1,Active Shallow Crust,0.0,89.99075,-90.0,11/07/1027 +5.37819,50.30265,4149,11,21,7,11,30,4.65,5.0,fr,29658,82,1245252,1,1,Active Shallow Crust,0.0,89.98911,0.0,11/21/4149 +5.37819,50.30265,1356,7,23,0,15,36,5.75,5.0,fr,29659,27,1245390,1,1,Active Shallow Crust,0.0,89.99016,-90.0,07/23/1356 +1.59704,41.04714,511,8,12,14,41,16,3.55,15.0,fr,29660,10,1245610,1,1,Active Shallow Crust,128.8963,89.99429,0.0,08/12/0511 +1.59704,41.04714,9368,7,19,18,25,3,3.65,5.0,fr,29661,187,1245612,1,2,Active Shallow Crust,0.0,89.98983,0.0,07/19/9368 +1.59704,41.04714,834,3,31,16,59,13,3.65,5.0,fr,29662,16,1245612,1,2,Active Shallow Crust,0.0,89.98983,0.0,03/31/0834 +1.59704,41.04714,6077,3,27,19,42,43,3.65,5.0,fr,29663,121,1245615,1,1,Active Shallow Crust,240.0006,58.01289,0.0,03/27/6077 +1.59704,41.04714,2824,2,21,20,52,33,3.75,5.0,fr,29664,56,1245624,1,1,Active Shallow Crust,0.0,89.98943,0.0,02/21/2824 +1.59704,41.04714,530,1,13,14,54,12,3.75,5.0,fr,29665,10,1245627,1,1,Active Shallow Crust,240.008,58.0173,0.0,01/13/0530 +1.59704,41.04714,6387,5,19,21,25,8,3.75,15.0,fr,29666,127,1245628,1,1,Active Shallow Crust,240.008,58.0173,0.0,05/19/6387 +1.59704,41.04714,3046,12,4,12,50,24,3.75,27.5,fr,29667,60,1245629,1,1,Active Shallow Crust,240.008,58.0173,0.0,12/04/3046 +1.59704,41.04714,3685,4,22,5,21,3,3.75,5.0,fr,29668,73,1245630,1,1,Active Shallow Crust,0.0,89.9893,-90.0,04/22/3685 +1.59704,41.04714,2434,11,12,22,26,21,3.85,5.0,fr,29669,48,1245636,1,2,Active Shallow Crust,0.0,89.99058,0.0,11/12/2434 +1.59704,41.04714,7785,2,4,21,15,11,3.85,5.0,fr,29670,155,1245636,1,2,Active Shallow Crust,0.0,89.99058,0.0,02/04/7785 +1.59704,41.04714,533,1,13,2,8,30,3.85,15.0,fr,29671,10,1245637,1,1,Active Shallow Crust,0.0,89.99058,0.0,01/13/0533 +1.59704,41.04714,7507,3,20,14,11,0,3.95,5.0,fr,29672,150,1245648,1,1,Active Shallow Crust,0.0,89.9904,0.0,03/20/7507 +1.59704,41.04714,257,6,7,17,52,52,4.05,15.0,fr,29673,5,1245661,1,1,Active Shallow Crust,0.0,89.99038,0.0,06/07/0257 +1.59704,41.04714,4242,2,6,12,2,23,4.25,5.0,fr,29674,84,1245684,1,1,Active Shallow Crust,0.0,89.98981,0.0,02/06/4242 +1.59704,41.04714,1501,10,12,14,13,1,4.35,15.0,fr,29675,30,1245700,1,1,Active Shallow Crust,240.0072,57.99568,0.0,10/12/1501 +1.15022,48.10647,7168,7,12,23,13,15,3.55,15.0,fr,29676,143,1246081,1,1,Active Shallow Crust,0.0,89.9899,0.0,07/12/7168 +1.15022,48.10647,1325,11,16,21,18,37,3.65,5.0,fr,29677,26,1246092,1,2,Active Shallow Crust,0.0,89.98949,0.0,11/16/1325 +1.15022,48.10647,8831,7,13,11,22,56,3.65,5.0,fr,29678,176,1246092,1,2,Active Shallow Crust,0.0,89.98949,0.0,07/13/8831 +1.15022,48.10647,235,11,17,15,24,16,3.65,15.0,fr,29679,4,1246093,1,1,Active Shallow Crust,0.0,89.98949,0.0,11/17/0235 +1.15022,48.10647,8134,3,8,11,19,53,3.95,5.0,fr,29680,162,1246134,1,1,Active Shallow Crust,0.0,89.99033,-90.0,03/08/8134 +1.15022,48.10647,7009,1,1,16,51,14,4.05,27.5,fr,29681,140,1246142,1,1,Active Shallow Crust,0.0,89.98959,0.0,01/01/7009 +1.15022,48.10647,1610,9,12,12,9,11,4.15,15.0,fr,29682,32,1246153,1,1,Active Shallow Crust,0.0,89.98988,0.0,09/12/1610 +1.15022,48.10647,376,11,25,8,20,38,4.35,5.0,fr,29683,7,1246179,1,1,Active Shallow Crust,240.0088,57.99596,0.0,11/25/0376 +1.15022,48.10647,4597,5,20,17,6,22,4.45,15.0,fr,29684,91,1246198,1,1,Active Shallow Crust,128.8917,89.99373,0.0,05/20/4597 +1.15022,48.10647,4065,2,7,9,13,32,4.65,5.0,fr,29685,81,1246212,1,1,Active Shallow Crust,0.0,89.99004,0.0,02/07/4065 +0.43696,47.93186,7817,8,21,12,8,56,3.55,5.0,fr,29686,156,1246560,1,1,Active Shallow Crust,0.0,89.98987,0.0,08/21/7817 +0.43696,47.93186,6111,12,12,10,32,30,3.65,5.0,fr,29687,122,1246572,1,1,Active Shallow Crust,0.0,89.98984,0.0,12/12/6111 +0.43696,47.93186,1862,10,26,20,0,28,3.65,27.5,fr,29688,37,1246577,1,1,Active Shallow Crust,240.0012,58.01286,0.0,10/26/1862 +0.43696,47.93186,6429,10,19,17,53,32,3.75,5.0,fr,29689,128,1246584,1,2,Active Shallow Crust,0.0,89.98994,0.0,10/19/6429 +0.43696,47.93186,9125,4,13,8,15,48,3.75,5.0,fr,29690,182,1246584,1,2,Active Shallow Crust,0.0,89.98994,0.0,04/13/9125 +0.43696,47.93186,7720,11,24,18,53,31,3.85,5.0,fr,29691,154,1246596,1,1,Active Shallow Crust,0.0,89.99014,0.0,11/24/7720 +0.43696,47.93186,1715,10,30,10,35,44,4.35,5.0,fr,29692,34,1246665,1,1,Active Shallow Crust,128.8976,89.98275,0.0,10/30/1715 +0.43696,47.93186,2380,12,10,17,58,22,4.65,5.0,fr,29693,47,1246692,1,1,Active Shallow Crust,0.0,89.99,0.0,12/10/2380 +0.43696,47.93186,6242,7,2,7,42,3,4.75,27.5,fr,29694,124,1246712,1,1,Active Shallow Crust,0.0,89.99002,-90.0,07/02/6242 +0.55066,47.4059,132,5,31,17,10,55,3.55,5.0,fr,29695,2,1247040,1,1,Active Shallow Crust,0.0,89.98976,0.0,05/31/0132 +0.55066,47.4059,9664,3,27,13,23,31,3.55,27.5,fr,29696,193,1247042,1,1,Active Shallow Crust,0.0,89.98976,0.0,03/27/9664 +0.55066,47.4059,3758,10,26,18,4,37,3.55,5.0,fr,29697,75,1247049,1,1,Active Shallow Crust,128.8961,89.9936,0.0,10/26/3758 +0.55066,47.4059,5065,8,3,0,50,45,3.65,5.0,fr,29698,101,1247052,1,1,Active Shallow Crust,0.0,89.99011,0.0,08/03/5065 +0.55066,47.4059,362,2,12,5,4,4,3.65,15.0,fr,29699,7,1247053,1,2,Active Shallow Crust,0.0,89.99011,0.0,02/12/0362 +0.55066,47.4059,8587,1,5,17,25,44,3.65,15.0,fr,29700,171,1247053,1,2,Active Shallow Crust,0.0,89.99011,0.0,01/05/8587 +0.55066,47.4059,9026,5,5,16,9,39,3.65,5.0,fr,29701,180,1247055,1,1,Active Shallow Crust,240.0012,58.01287,0.0,05/05/9026 +0.55066,47.4059,8413,11,5,13,15,47,3.85,15.0,fr,29702,168,1247080,1,1,Active Shallow Crust,240.011,57.99777,0.0,11/05/8413 +0.55066,47.4059,3826,4,7,19,58,5,3.95,15.0,fr,29703,76,1247089,1,1,Active Shallow Crust,0.0,89.98977,0.0,04/07/3826 +0.55066,47.4059,4509,11,8,12,29,17,3.95,27.5,fr,29704,90,1247099,1,1,Active Shallow Crust,128.9003,89.99354,0.0,11/08/4509 +0.55066,47.4059,3441,10,24,14,41,19,4.05,5.0,fr,29705,68,1247100,1,1,Active Shallow Crust,0.0,89.98992,0.0,10/24/3441 +0.55066,47.4059,8712,7,27,7,5,3,4.75,15.0,fr,29706,174,1247191,1,1,Active Shallow Crust,0.0,89.99003,-90.0,07/27/8712 +0.55066,47.4059,4431,9,19,18,21,21,4.85,5.0,fr,29707,88,1247196,1,1,Active Shallow Crust,0.0,89.99007,0.0,09/19/4431 +7.54651,46.77214,3406,6,24,7,0,46,3.55,5.0,fr,29708,68,1247520,1,4,Active Shallow Crust,0.0,89.9931,0.0,06/24/3406 +7.54651,46.77214,3818,11,16,21,55,48,3.55,5.0,fr,29709,76,1247520,1,4,Active Shallow Crust,0.0,89.9931,0.0,11/16/3818 +7.54651,46.77214,954,1,10,20,17,53,3.55,5.0,fr,29710,19,1247520,1,4,Active Shallow Crust,0.0,89.9931,0.0,01/10/0954 +7.54651,46.77214,8894,8,13,16,16,39,3.55,5.0,fr,29711,177,1247520,1,4,Active Shallow Crust,0.0,89.9931,0.0,08/13/8894 +7.54651,46.77214,6947,2,2,8,17,1,3.55,15.0,fr,29712,138,1247521,1,1,Active Shallow Crust,0.0,89.9931,0.0,02/02/6947 +7.54651,46.77214,7850,4,4,17,54,4,3.55,27.5,fr,29713,156,1247522,1,1,Active Shallow Crust,0.0,89.9931,0.0,04/04/7850 +7.54651,46.77214,5576,3,2,8,34,9,3.55,5.0,fr,29714,111,1247523,1,2,Active Shallow Crust,240.0114,57.99842,0.0,03/02/5576 +7.54651,46.77214,2758,6,21,20,18,13,3.55,5.0,fr,29715,55,1247523,1,2,Active Shallow Crust,240.0114,57.99842,0.0,06/21/2758 +7.54651,46.77214,9126,2,3,2,8,30,3.65,5.0,fr,29716,182,1247532,1,4,Active Shallow Crust,0.0,89.98769,0.0,02/03/9126 +7.54651,46.77214,1513,5,10,15,13,45,3.65,5.0,fr,29717,30,1247532,1,4,Active Shallow Crust,0.0,89.98769,0.0,05/10/1513 +7.54651,46.77214,9276,11,26,6,57,14,3.65,5.0,fr,29718,185,1247532,1,4,Active Shallow Crust,0.0,89.98769,0.0,11/26/9276 +7.54651,46.77214,319,9,11,16,38,23,3.65,5.0,fr,29719,6,1247532,1,4,Active Shallow Crust,0.0,89.98769,0.0,09/11/0319 +7.54651,46.77214,605,3,3,20,8,7,3.65,15.0,fr,29720,12,1247533,1,1,Active Shallow Crust,0.0,89.98769,0.0,03/03/0605 +7.54651,46.77214,3132,2,5,20,6,2,3.65,5.0,fr,29721,62,1247538,1,1,Active Shallow Crust,0.0,89.98755,-90.0,02/05/3132 +7.54651,46.77214,8063,2,20,13,16,34,3.75,5.0,fr,29722,161,1247544,1,2,Active Shallow Crust,0.0,89.98903,0.0,02/20/8063 +7.54651,46.77214,2442,9,6,10,3,36,3.75,5.0,fr,29723,48,1247544,1,2,Active Shallow Crust,0.0,89.98903,0.0,09/06/2442 +7.54651,46.77214,9402,6,21,13,3,58,3.75,15.0,fr,29724,188,1247545,1,1,Active Shallow Crust,0.0,89.98903,0.0,06/21/9402 +7.54651,46.77214,7345,2,26,6,53,53,3.75,5.0,fr,29725,146,1247550,1,1,Active Shallow Crust,0.0,89.9889,-90.0,02/26/7345 +7.54651,46.77214,2881,3,13,23,24,44,3.85,5.0,fr,29726,57,1247556,1,1,Active Shallow Crust,0.0,89.99022,0.0,03/13/2881 +7.54651,46.77214,970,1,5,15,38,20,3.85,27.5,fr,29727,19,1247558,1,1,Active Shallow Crust,0.0,89.99022,0.0,01/05/0970 +7.54651,46.77214,1504,2,3,23,12,20,3.85,5.0,fr,29728,30,1247559,1,1,Active Shallow Crust,240.0105,57.99743,0.0,02/03/1504 +7.54651,46.77214,3787,2,20,0,42,55,3.85,15.0,fr,29729,75,1247560,1,1,Active Shallow Crust,240.0105,57.99743,0.0,02/20/3787 +7.54651,46.77214,7248,11,30,19,50,3,3.85,5.0,fr,29730,144,1247562,1,1,Active Shallow Crust,0.0,89.9901,-90.0,11/30/7248 +7.54651,46.77214,8483,2,12,21,39,27,3.95,5.0,fr,29731,169,1247568,1,2,Active Shallow Crust,0.0,89.99129,0.0,02/12/8483 +7.54651,46.77214,7288,7,29,9,13,54,3.95,5.0,fr,29732,145,1247568,1,2,Active Shallow Crust,0.0,89.99129,0.0,07/29/7288 +7.54651,46.77214,8386,3,3,10,37,55,3.95,15.0,fr,29733,167,1247569,1,1,Active Shallow Crust,0.0,89.99129,0.0,03/03/8386 +7.54651,46.77214,7640,11,19,14,53,27,4.05,5.0,fr,29734,152,1247580,1,1,Active Shallow Crust,0.0,89.98835,0.0,11/19/7640 +7.54651,46.77214,6826,4,15,17,26,59,4.15,5.0,fr,29735,136,1247592,1,1,Active Shallow Crust,0.0,89.98962,0.0,04/15/6826 +7.54651,46.77214,7410,2,10,15,53,19,4.15,15.0,fr,29736,148,1247593,1,1,Active Shallow Crust,0.0,89.98962,0.0,02/10/7410 +7.54651,46.77214,9622,5,25,22,53,46,4.25,5.0,fr,29737,192,1247604,1,1,Active Shallow Crust,0.0,89.99075,0.0,05/25/9622 +7.54651,46.77214,4243,9,26,13,10,37,4.25,27.5,fr,29738,84,1247606,1,1,Active Shallow Crust,0.0,89.99075,0.0,09/26/4243 +7.54651,46.77214,7247,12,6,20,6,1,4.25,27.5,fr,29739,144,1247612,1,1,Active Shallow Crust,0.0,89.99064,-90.0,12/06/7247 +7.54651,46.77214,5503,9,16,4,27,50,4.25,5.0,fr,29740,110,1247613,1,1,Active Shallow Crust,128.8952,89.9804,0.0,09/16/5503 +7.54651,46.77214,306,7,15,14,15,16,4.35,5.0,fr,29741,6,1247616,1,1,Active Shallow Crust,0.0,89.989,0.0,07/15/0306 +7.54651,46.77214,1399,12,26,11,27,23,4.35,27.5,fr,29742,27,1247618,1,1,Active Shallow Crust,0.0,89.989,0.0,12/26/1399 +7.54651,46.77214,7609,8,2,20,30,21,4.35,15.0,fr,29743,152,1247626,1,1,Active Shallow Crust,128.8981,89.98254,0.0,08/02/7609 +7.54651,46.77214,8231,5,17,20,56,23,4.45,5.0,fr,29744,164,1247628,1,1,Active Shallow Crust,0.0,89.9902,0.0,05/17/8231 +7.54651,46.77214,809,5,16,15,21,25,4.45,5.0,fr,29745,16,1247634,1,1,Active Shallow Crust,0.0,89.99008,-90.0,05/16/0809 +7.54651,46.77214,7837,12,3,19,55,41,4.75,15.0,fr,29746,156,1247665,1,1,Active Shallow Crust,0.0,89.98959,0.0,12/03/7837 +7.54651,46.77214,8696,3,19,10,8,4,4.75,5.0,fr,29747,173,1247673,1,1,Active Shallow Crust,128.8887,89.98819,0.0,03/19/8696 +7.54651,46.77214,8341,6,4,23,36,5,4.85,5.0,fr,29748,166,1247676,1,1,Active Shallow Crust,0.0,89.99072,0.0,06/04/8341 +7.54651,46.77214,1059,1,20,19,30,48,5.35,5.0,fr,29749,21,1247739,1,1,Active Shallow Crust,240.0251,57.99803,0.0,01/20/1059 +7.54651,46.77214,4431,3,29,15,57,28,5.45,5.0,fr,29750,88,1247751,1,1,Active Shallow Crust,240.029,57.99858,0.0,03/29/4431 +7.54651,46.77214,3301,11,30,7,30,1,5.65,5.0,fr,29751,66,1247778,1,1,Active Shallow Crust,0.0,89.99004,-90.0,11/30/3301 +-1.69959,47.77869,4264,2,5,22,20,28,3.55,5.0,fr,29752,85,1248000,1,1,Active Shallow Crust,0.0,89.98984,0.0,02/05/4264 +-1.69959,47.77869,8741,7,13,7,55,44,3.55,27.5,fr,29753,174,1248002,1,1,Active Shallow Crust,0.0,89.98984,0.0,07/13/8741 +-1.69959,47.77869,2569,9,20,1,4,54,3.55,5.0,fr,29754,51,1248003,1,1,Active Shallow Crust,240.0124,57.99832,0.0,09/20/2569 +-1.69959,47.77869,4939,4,28,3,45,3,3.75,15.0,fr,29755,98,1248025,1,1,Active Shallow Crust,0.0,89.99058,0.0,04/28/4939 +-1.69959,47.77869,1333,7,2,2,18,17,3.85,5.0,fr,29756,26,1248036,1,1,Active Shallow Crust,0.0,89.9904,0.0,07/02/1333 +-1.69959,47.77869,6841,8,27,22,20,31,3.85,15.0,fr,29757,136,1248037,1,1,Active Shallow Crust,0.0,89.9904,0.0,08/27/6841 +-1.69959,47.77869,9691,10,12,8,29,25,3.95,5.0,fr,29758,193,1248051,1,1,Active Shallow Crust,240.02,58.00505,0.0,10/12/9691 +-1.69959,47.77869,5693,2,17,15,36,19,4.65,5.0,fr,29759,113,1248132,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/17/5693 +-1.69959,47.77869,9817,7,10,12,12,27,4.85,15.0,fr,29760,196,1248160,1,1,Active Shallow Crust,240.0176,58.00248,0.0,07/10/9817 +-4.51756,47.51415,4034,12,23,12,50,1,3.55,5.0,fr,29761,80,1248480,1,1,Active Shallow Crust,0.0,89.99319,0.0,12/23/4034 +-4.51756,47.51415,2836,3,9,5,50,36,3.95,5.0,fr,29762,56,1248537,1,1,Active Shallow Crust,128.8997,89.99355,0.0,03/09/2836 +-4.517531,47.51415,9082,8,9,19,0,17,7.15,17.5,fr,29763,181,1248912,1,1,Active Shallow Crust,359.9999,89.99,0.0,08/09/9082 +1.84047,48.9316,1603,6,27,3,5,38,3.65,15.0,fr,29764,32,1248976,1,1,Active Shallow Crust,240.0014,58.01304,0.0,06/27/1603 +1.84047,48.9316,5224,3,17,18,43,45,3.65,15.0,fr,29765,104,1248979,1,1,Active Shallow Crust,0.0,89.98955,-90.0,03/17/5224 +1.84047,48.9316,5995,8,9,21,18,51,3.75,5.0,fr,29766,119,1248984,1,1,Active Shallow Crust,0.0,89.98948,0.0,08/09/5995 +1.84047,48.9316,356,11,14,11,22,21,4.05,5.0,fr,29767,7,1249020,1,1,Active Shallow Crust,0.0,89.98975,0.0,11/14/0356 +6.22886,43.72488,8088,3,17,2,59,24,3.55,5.0,fr,29768,161,1249920,1,2,Active Shallow Crust,0.0,89.99271,0.0,03/17/8088 +6.22886,43.72488,6221,9,17,20,29,35,3.55,5.0,fr,29769,124,1249920,1,2,Active Shallow Crust,0.0,89.99271,0.0,09/17/6221 +6.22886,43.72488,4302,11,2,4,18,2,3.65,5.0,fr,29770,86,1249932,1,1,Active Shallow Crust,0.0,89.98701,0.0,11/02/4302 +6.22886,43.72488,4505,3,26,4,13,42,3.75,5.0,fr,29771,90,1249944,1,1,Active Shallow Crust,0.0,89.98843,0.0,03/26/4505 +6.22886,43.72488,7446,1,27,10,6,7,3.85,5.0,fr,29772,148,1249956,1,1,Active Shallow Crust,0.0,89.98969,0.0,01/27/7446 +6.22886,43.72488,9579,2,15,22,48,49,3.85,27.5,fr,29773,191,1249958,1,1,Active Shallow Crust,0.0,89.98969,0.0,02/15/9579 +6.22886,43.72488,8402,4,11,13,44,2,3.95,15.0,fr,29774,168,1249969,1,1,Active Shallow Crust,0.0,89.99081,0.0,04/11/8402 +6.22886,43.72488,4785,11,22,20,9,26,3.95,5.0,fr,29775,95,1249971,1,1,Active Shallow Crust,240.0196,58.00511,0.0,11/22/4785 +6.22886,43.72488,3367,2,25,16,31,56,4.05,5.0,fr,29776,67,1249980,1,1,Active Shallow Crust,0.0,89.99181,0.0,02/25/3367 +6.22886,43.72488,9872,4,5,6,53,52,4.05,15.0,fr,29777,197,1249981,1,1,Active Shallow Crust,0.0,89.99181,0.0,04/05/9872 +6.22886,43.72488,7478,4,9,6,13,36,4.25,5.0,fr,29778,149,1250004,1,1,Active Shallow Crust,0.0,89.99023,0.0,04/09/7478 +6.22886,43.72488,9172,4,9,2,50,30,5.25,5.0,fr,29779,183,1250130,1,1,Active Shallow Crust,0.0,89.98959,-90.0,04/09/9172 +6.22886,43.72488,723,1,14,5,39,1,5.85,15.0,fr,29780,14,1250197,1,1,Active Shallow Crust,0.0,89.99019,0.0,01/14/0723 +2.74547,40.82461,623,9,8,13,16,53,3.65,5.0,fr,29781,12,1250412,1,1,Active Shallow Crust,0.0,89.9898,0.0,09/08/0623 +2.74547,40.82461,751,10,11,20,57,56,3.65,15.0,fr,29782,15,1250413,1,1,Active Shallow Crust,0.0,89.9898,0.0,10/11/0751 +2.74547,40.82461,5684,11,12,16,38,23,3.95,5.0,fr,29783,113,1250451,1,1,Active Shallow Crust,240.0194,58.00448,0.0,11/12/5684 +2.74547,40.82461,2889,7,7,6,13,38,4.45,15.0,fr,29784,57,1250509,1,1,Active Shallow Crust,0.0,89.99052,0.0,07/07/2889 +4.84223,46.94891,7655,2,3,19,1,17,3.55,5.0,fr,29785,153,1250880,1,1,Active Shallow Crust,0.0,89.99312,0.0,02/03/7655 +4.84223,46.94891,2667,3,26,1,44,48,3.55,15.0,fr,29786,53,1250890,1,1,Active Shallow Crust,128.8956,89.99312,0.0,03/26/2667 +4.84223,46.94891,9450,8,3,17,12,52,3.65,5.0,fr,29787,188,1250892,1,1,Active Shallow Crust,0.0,89.98773,0.0,08/03/9450 +4.84223,46.94891,1854,7,14,7,58,29,3.75,5.0,fr,29788,37,1250904,1,1,Active Shallow Crust,0.0,89.98907,0.0,07/14/1854 +4.84223,46.94891,333,4,4,12,12,16,3.75,15.0,fr,29789,6,1250905,1,1,Active Shallow Crust,0.0,89.98907,0.0,04/04/0333 +4.84223,46.94891,9083,4,25,18,40,58,3.75,5.0,fr,29790,181,1250910,1,1,Active Shallow Crust,0.0,89.98894,-90.0,04/25/9083 +4.84223,46.94891,6219,9,28,5,55,4,3.85,15.0,fr,29791,124,1250917,1,1,Active Shallow Crust,0.0,89.99025,0.0,09/28/6219 +4.84223,46.94891,2475,5,14,23,20,3,3.95,5.0,fr,29792,49,1250928,1,2,Active Shallow Crust,0.0,89.99131,0.0,05/14/2475 +4.84223,46.94891,7811,11,14,22,26,0,3.95,5.0,fr,29793,156,1250928,1,2,Active Shallow Crust,0.0,89.99131,0.0,11/14/7811 +4.84223,46.94891,4599,5,3,18,29,42,4.05,5.0,fr,29794,91,1250943,1,1,Active Shallow Crust,240.0061,58.00592,0.0,05/03/4599 +4.84223,46.94891,1632,7,13,17,30,15,4.05,5.0,fr,29795,32,1250946,1,1,Active Shallow Crust,0.0,89.98825,-90.0,07/13/1632 +4.84223,46.94891,9909,1,8,23,23,27,4.15,5.0,fr,29796,198,1250952,1,1,Active Shallow Crust,0.0,89.98965,0.0,01/08/9909 +4.84223,46.94891,9768,3,24,6,46,35,4.15,5.0,fr,29797,195,1250955,1,1,Active Shallow Crust,240.0086,57.99732,0.0,03/24/9768 +4.84223,46.94891,6537,2,6,1,50,46,4.35,5.0,fr,29798,130,1250976,1,1,Active Shallow Crust,0.0,89.98904,0.0,02/06/6537 +4.84223,46.94891,8611,11,2,20,27,42,4.35,5.0,fr,29799,172,1250982,1,1,Active Shallow Crust,0.0,89.98891,-90.0,11/02/8611 +4.84223,46.94891,6085,10,6,4,9,3,4.35,5.0,fr,29800,121,1250985,1,1,Active Shallow Crust,128.8972,89.98303,0.0,10/06/6085 +4.84223,46.94891,806,6,20,9,45,3,4.45,5.0,fr,29801,16,1250988,1,1,Active Shallow Crust,0.0,89.99023,0.0,06/20/0806 +4.84223,46.94891,2024,11,14,17,28,19,5.25,5.0,fr,29802,40,1251084,1,1,Active Shallow Crust,0.0,89.99027,0.0,11/14/2024 +-5.08346,48.95864,5407,12,31,7,33,44,3.55,5.0,fr,29803,108,1251360,1,1,Active Shallow Crust,0.0,89.98676,0.0,12/31/5407 +-5.08346,48.95864,2352,6,7,10,18,48,3.55,5.0,fr,29804,47,1251363,1,1,Active Shallow Crust,240.0112,57.99907,0.0,06/07/2352 +-5.08346,48.95864,7967,10,27,15,16,28,3.55,15.0,fr,29805,159,1251364,1,1,Active Shallow Crust,240.0112,57.99907,0.0,10/27/7967 +-5.08346,48.95864,1891,1,17,1,52,30,3.75,15.0,fr,29806,37,1251385,1,1,Active Shallow Crust,0.0,89.98948,0.0,01/17/1891 +5.33908,51.76596,4450,6,3,22,33,5,3.55,5.0,fr,29807,88,1251840,1,1,Active Shallow Crust,0.0,89.98752,0.0,06/03/4450 +5.33908,51.76596,4280,10,30,21,13,4,3.75,5.0,fr,29808,85,1251864,1,1,Active Shallow Crust,0.0,89.99008,0.0,10/30/4280 +5.33908,51.76596,3257,2,14,22,27,1,3.75,15.0,fr,29809,65,1251868,1,1,Active Shallow Crust,240.0091,58.01744,0.0,02/14/3257 +5.33908,51.76596,6727,11,24,8,10,37,4.45,27.5,fr,29810,134,1251956,1,1,Active Shallow Crust,0.0,89.99104,-90.0,11/24/6727 +-5.3579,46.59143,3530,4,1,20,53,46,3.55,5.0,fr,29811,70,1252320,1,1,Active Shallow Crust,0.0,89.99307,0.0,04/01/3530 +-5.3579,46.59143,8870,6,29,22,37,40,3.55,15.0,fr,29812,177,1252330,1,1,Active Shallow Crust,128.8963,89.99307,0.0,06/29/8870 +-2.70678,42.45873,3936,3,26,13,39,33,3.65,5.0,fr,29813,78,1252812,1,2,Active Shallow Crust,0.0,89.99005,0.0,03/26/3936 +-2.70678,42.45873,4750,3,12,19,48,56,3.65,5.0,fr,29814,94,1252812,1,2,Active Shallow Crust,0.0,89.99005,0.0,03/12/4750 +-2.70678,42.45873,83,12,3,19,53,28,3.65,15.0,fr,29815,1,1252813,1,1,Active Shallow Crust,0.0,89.99005,0.0,12/03/0083 +-2.70678,42.45873,8303,3,19,8,6,43,3.75,5.0,fr,29816,166,1252824,1,1,Active Shallow Crust,0.0,89.99113,0.0,03/19/8303 +-2.70678,42.45873,5956,4,12,6,17,13,3.85,5.0,fr,29817,119,1252836,1,1,Active Shallow Crust,0.0,89.98946,0.0,04/12/5956 +-2.70678,42.45873,6148,9,24,23,32,17,3.95,15.0,fr,29818,122,1252858,1,1,Active Shallow Crust,128.9009,89.99413,0.0,09/24/6148 +-2.70678,42.45873,7649,4,14,8,10,19,4.15,15.0,fr,29819,152,1252876,1,1,Active Shallow Crust,240.0075,57.99739,0.0,04/14/7649 +-2.70678,42.45873,6125,4,1,10,40,20,4.45,27.5,fr,29820,122,1252910,1,1,Active Shallow Crust,0.0,89.98944,0.0,04/01/6125 +-3.63438,46.78375,8879,4,26,6,48,40,3.55,15.0,fr,29821,177,1253284,1,1,Active Shallow Crust,240.0121,57.99834,0.0,04/26/8879 +-3.63438,46.78375,4748,7,5,4,19,39,4.05,5.0,fr,29822,94,1253340,1,1,Active Shallow Crust,0.0,89.9903,0.0,07/05/4748 +8.18372,50.39199,2160,5,7,3,41,53,3.55,5.0,fr,29823,43,1253760,1,1,Active Shallow Crust,0.0,89.98714,0.0,05/07/2160 +8.18372,50.39199,4827,12,20,10,38,24,3.55,27.5,fr,29824,96,1253762,1,2,Active Shallow Crust,0.0,89.98714,0.0,12/20/4827 +8.18372,50.39199,4604,2,26,3,57,53,3.55,27.5,fr,29825,92,1253762,1,2,Active Shallow Crust,0.0,89.98714,0.0,02/26/4604 +8.18372,50.39199,1573,7,19,22,54,10,3.65,5.0,fr,29826,31,1253772,1,1,Active Shallow Crust,0.0,89.98854,0.0,07/19/1573 +8.18372,50.39199,4681,3,26,16,17,31,3.75,15.0,fr,29827,93,1253785,1,1,Active Shallow Crust,0.0,89.98978,0.0,03/26/4681 +8.18372,50.39199,7926,11,6,16,41,16,3.75,27.5,fr,29828,158,1253786,1,2,Active Shallow Crust,0.0,89.98978,0.0,11/06/7926 +8.18372,50.39199,1079,1,21,7,49,7,3.75,27.5,fr,29829,21,1253786,1,2,Active Shallow Crust,0.0,89.98978,0.0,01/21/1079 +8.18372,50.39199,156,9,18,5,58,24,3.75,15.0,fr,29830,3,1253791,1,1,Active Shallow Crust,0.0,89.98967,-90.0,09/18/0156 +8.18372,50.39199,1885,5,6,16,14,4,3.75,5.0,fr,29831,37,1253793,1,2,Active Shallow Crust,128.8939,89.96756,0.0,05/06/1885 +8.18372,50.39199,2554,10,11,10,34,8,3.75,5.0,fr,29832,51,1253793,1,2,Active Shallow Crust,128.8939,89.96756,0.0,10/11/2554 +8.18372,50.39199,458,1,29,20,3,22,3.85,5.0,fr,29833,9,1253796,1,2,Active Shallow Crust,0.0,89.9909,0.0,01/29/0458 +8.18372,50.39199,8286,11,29,11,37,15,3.85,5.0,fr,29834,165,1253796,1,2,Active Shallow Crust,0.0,89.9909,0.0,11/29/8286 +8.18372,50.39199,581,1,29,7,56,12,3.95,27.5,fr,29835,11,1253810,1,1,Active Shallow Crust,0.0,89.99189,0.0,01/29/0581 +8.18372,50.39199,193,1,3,0,34,10,4.05,5.0,fr,29836,3,1253820,1,1,Active Shallow Crust,0.0,89.99277,0.0,01/03/0193 +8.18372,50.39199,1633,12,9,7,45,50,4.15,5.0,fr,29837,32,1253832,1,1,Active Shallow Crust,0.0,89.98711,0.0,12/09/1633 +8.18372,50.39199,8053,9,3,18,38,48,4.15,5.0,fr,29838,161,1253838,1,1,Active Shallow Crust,0.0,89.98696,-90.0,09/03/8053 +8.18372,50.39199,2273,8,25,18,43,9,4.25,5.0,fr,29839,45,1253844,1,1,Active Shallow Crust,0.0,89.98851,0.0,08/25/2273 +8.18372,50.39199,5190,11,6,3,42,49,5.05,5.0,fr,29840,103,1253940,1,1,Active Shallow Crust,0.0,89.99085,0.0,11/06/5190 +8.18372,50.39199,8500,6,24,23,27,59,5.25,5.0,fr,29841,169,1253964,1,1,Active Shallow Crust,0.0,89.9891,0.0,06/24/8500 +-2.63996,42.60629,3060,10,9,7,37,47,3.55,5.0,fr,29842,61,1254240,1,1,Active Shallow Crust,0.0,89.98887,0.0,10/09/3060 +-2.63996,42.60629,6225,6,8,17,23,39,3.75,27.5,fr,29843,124,1254269,1,1,Active Shallow Crust,240.0078,58.01753,0.0,06/08/6225 +-2.63996,42.60629,8269,6,27,1,5,51,3.95,5.0,fr,29844,165,1254288,1,1,Active Shallow Crust,0.0,89.99063,0.0,06/27/8269 +-2.63996,42.60629,8654,4,30,20,29,54,4.05,5.0,fr,29845,173,1254300,1,1,Active Shallow Crust,0.0,89.98956,0.0,04/30/8654 +-2.63996,42.60629,7082,5,2,0,33,34,4.05,5.0,fr,29846,141,1254306,1,1,Active Shallow Crust,0.0,89.98944,-90.0,05/02/7082 +-2.63996,42.60629,8739,10,19,7,56,12,4.15,5.0,fr,29847,174,1254318,1,1,Active Shallow Crust,0.0,89.99059,-90.0,10/19/8739 +-2.63996,42.60629,2466,3,24,8,4,59,4.55,5.0,fr,29848,49,1254360,1,1,Active Shallow Crust,0.0,89.98944,0.0,03/24/2466 +-2.63996,42.60629,348,3,16,19,10,53,5.55,5.0,fr,29849,6,1254480,1,1,Active Shallow Crust,0.0,89.98997,0.0,03/16/0348 +-2.63996,42.60629,3363,10,5,7,8,43,5.75,5.0,fr,29850,67,1254510,1,1,Active Shallow Crust,0.0,89.98985,-90.0,10/05/3363 +-0.48986,47.73647,7241,7,10,14,12,45,3.55,5.0,fr,29851,144,1255200,1,1,Active Shallow Crust,0.0,89.98983,0.0,07/10/7241 +-0.48986,47.73647,746,5,20,13,59,6,3.55,5.0,fr,29852,14,1255209,1,1,Active Shallow Crust,128.8962,89.99364,0.0,05/20/0746 +-0.48986,47.73647,3819,8,22,1,16,38,3.65,5.0,fr,29853,76,1255212,1,1,Active Shallow Crust,0.0,89.99018,0.0,08/22/3819 +-0.48986,47.73647,7691,5,12,10,45,35,3.75,5.0,fr,29854,153,1255224,1,1,Active Shallow Crust,0.0,89.9899,0.0,05/12/7691 +-0.48986,47.73647,3082,12,12,6,54,14,3.85,5.0,fr,29855,61,1255236,1,5,Active Shallow Crust,0.0,89.9901,0.0,12/12/3082 +-0.48986,47.73647,647,4,29,20,42,26,3.85,5.0,fr,29856,12,1255236,1,5,Active Shallow Crust,0.0,89.9901,0.0,04/29/0647 +-0.48986,47.73647,7658,3,31,13,54,20,3.85,5.0,fr,29857,153,1255236,1,5,Active Shallow Crust,0.0,89.9901,0.0,03/31/7658 +-0.48986,47.73647,8292,12,6,9,55,45,3.85,5.0,fr,29858,165,1255236,1,5,Active Shallow Crust,0.0,89.9901,0.0,12/06/8292 +-0.48986,47.73647,1788,2,14,13,7,42,3.85,5.0,fr,29859,35,1255236,1,5,Active Shallow Crust,0.0,89.9901,0.0,02/14/1788 +-0.48986,47.73647,3987,3,7,18,50,30,4.15,5.0,fr,29860,79,1255272,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/07/3987 +-0.48986,47.73647,5815,7,21,18,26,53,4.85,5.0,fr,29861,116,1255356,1,1,Active Shallow Crust,0.0,89.99004,0.0,07/21/5815 +-0.48986,47.73647,3210,8,1,16,1,49,4.85,27.5,fr,29862,64,1255358,1,1,Active Shallow Crust,0.0,89.99004,0.0,08/01/3210 +-0.48986,47.73647,927,5,14,0,18,43,5.05,5.0,fr,29863,18,1255380,1,1,Active Shallow Crust,0.0,89.98997,0.0,05/14/0927 +2.72299,45.98944,5932,11,15,10,58,50,3.55,5.0,fr,29864,118,1256160,1,3,Active Shallow Crust,0.0,89.98949,0.0,11/15/5932 +2.72299,45.98944,6645,1,13,23,38,7,3.55,5.0,fr,29865,132,1256160,1,3,Active Shallow Crust,0.0,89.98949,0.0,01/13/6645 +2.72299,45.98944,8490,3,31,9,30,41,3.55,5.0,fr,29866,169,1256160,1,3,Active Shallow Crust,0.0,89.98949,0.0,03/31/8490 +2.72299,45.98944,6226,4,24,15,50,22,3.55,15.0,fr,29867,124,1256161,1,1,Active Shallow Crust,0.0,89.98949,0.0,04/24/6226 +2.72299,45.98944,958,10,30,4,58,57,3.75,5.0,fr,29868,19,1256184,1,1,Active Shallow Crust,0.0,89.98887,0.0,10/30/0958 +2.72299,45.98944,4451,12,1,7,42,25,3.75,15.0,fr,29869,89,1256185,1,1,Active Shallow Crust,0.0,89.98887,0.0,12/01/4451 +2.72299,45.98944,9059,4,20,3,21,6,3.75,27.5,fr,29870,181,1256189,1,1,Active Shallow Crust,240.0082,58.0177,0.0,04/20/9059 +2.72299,45.98944,691,12,19,6,59,41,3.85,5.0,fr,29871,13,1256202,1,1,Active Shallow Crust,0.0,89.98997,-90.0,12/19/0691 +2.72299,45.98944,8124,1,19,9,10,35,3.85,15.0,fr,29872,162,1256203,1,1,Active Shallow Crust,0.0,89.98997,-90.0,01/19/8124 +2.72299,45.98944,6497,10,6,10,13,9,3.95,5.0,fr,29873,129,1256208,1,1,Active Shallow Crust,0.0,89.98895,0.0,10/06/6497 +2.72299,45.98944,4401,9,24,20,15,23,3.95,5.0,fr,29874,88,1256211,1,1,Active Shallow Crust,240.0195,58.00506,0.0,09/24/4401 +2.72299,45.98944,9547,12,5,3,29,50,4.05,15.0,fr,29875,190,1256221,1,1,Active Shallow Crust,0.0,89.99015,0.0,12/05/9547 +2.72299,45.98944,3020,10,22,14,33,36,4.15,5.0,fr,29876,60,1256238,1,1,Active Shallow Crust,0.0,89.98934,-90.0,10/22/3020 +2.72299,45.98944,2269,4,28,10,53,4,4.25,5.0,fr,29877,45,1256244,1,2,Active Shallow Crust,0.0,89.99061,0.0,04/28/2269 +2.72299,45.98944,7848,2,22,12,13,49,4.25,5.0,fr,29878,156,1256244,1,2,Active Shallow Crust,0.0,89.99061,0.0,02/22/7848 +2.72299,45.98944,1804,9,28,20,31,17,4.35,27.5,fr,29879,36,1256258,1,1,Active Shallow Crust,0.0,89.99023,0.0,09/28/1804 +2.72299,45.98944,118,4,17,3,53,40,4.35,5.0,fr,29880,2,1256262,1,1,Active Shallow Crust,0.0,89.99013,-90.0,04/17/0118 +2.72299,45.98944,8785,4,15,15,34,1,4.85,15.0,fr,29881,175,1256320,1,1,Active Shallow Crust,240.017,58.00219,0.0,04/15/8785 +2.72299,45.98944,5568,11,7,18,35,50,5.05,5.0,fr,29882,111,1256340,1,1,Active Shallow Crust,0.0,89.99003,0.0,11/07/5568 +2.72299,45.98944,7822,6,17,7,25,31,5.15,5.0,fr,29883,156,1256352,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/17/7822 +2.72299,45.98944,6467,8,12,21,11,55,5.35,5.0,fr,29884,129,1256385,1,1,Active Shallow Crust,128.8835,89.988,0.0,08/12/6467 +2.09169,43.79587,9059,5,30,16,52,12,3.65,5.0,fr,29885,181,1256652,1,2,Active Shallow Crust,0.0,89.99027,0.0,05/30/9059 +2.09169,43.79587,3925,12,31,9,7,29,3.65,5.0,fr,29886,78,1256652,1,2,Active Shallow Crust,0.0,89.99027,0.0,12/31/3925 +2.09169,43.79587,8816,8,7,21,24,0,3.75,5.0,fr,29887,176,1256664,1,1,Active Shallow Crust,0.0,89.99133,0.0,08/07/8816 +2.09169,43.79587,5153,1,29,23,22,37,3.85,15.0,fr,29888,103,1256683,1,1,Active Shallow Crust,0.0,89.98958,-90.0,01/29/5153 +2.09169,43.79587,1487,4,13,15,4,37,3.95,5.0,fr,29889,29,1256688,1,1,Active Shallow Crust,0.0,89.99081,0.0,04/13/1487 +2.09169,43.79587,4600,1,8,3,12,25,4.15,5.0,fr,29890,91,1256712,1,1,Active Shallow Crust,0.0,89.99088,0.0,01/08/4600 +2.09169,43.79587,4569,3,4,17,15,12,4.35,27.5,fr,29891,91,1256744,1,1,Active Shallow Crust,0.0,89.98974,-90.0,03/04/4569 +2.77008,51.42561,2194,11,8,19,30,35,3.55,5.0,fr,29892,43,1258080,1,1,Active Shallow Crust,0.0,89.99057,0.0,11/08/2194 +2.77008,51.42561,9140,7,22,6,49,41,3.65,5.0,fr,29893,182,1258095,1,1,Active Shallow Crust,240.0015,58.01299,0.0,07/22/9140 +2.77008,51.42561,4825,1,16,9,6,36,4.15,5.0,fr,29894,96,1258152,1,1,Active Shallow Crust,0.0,89.99055,0.0,01/16/4825 +2.77008,51.42561,9238,5,16,12,56,36,4.55,15.0,fr,29895,184,1258207,1,1,Active Shallow Crust,0.0,89.98994,-90.0,05/16/9238 +7.08611,47.62093,6242,1,22,15,38,59,3.55,5.0,fr,29896,124,1258560,1,2,Active Shallow Crust,0.0,89.9932,0.0,01/22/6242 +7.08611,47.62093,2688,6,11,22,31,36,3.55,5.0,fr,29897,53,1258560,1,2,Active Shallow Crust,0.0,89.9932,0.0,06/11/2688 +7.08611,47.62093,2784,9,27,13,46,22,3.55,27.5,fr,29898,55,1258562,1,1,Active Shallow Crust,0.0,89.9932,0.0,09/27/2784 +7.08611,47.62093,4214,3,9,12,38,10,3.55,5.0,fr,29899,84,1258563,1,1,Active Shallow Crust,240.012,57.99826,0.0,03/09/4214 +7.08611,47.62093,59,11,22,1,32,18,3.55,27.5,fr,29900,1,1258568,1,1,Active Shallow Crust,0.0,89.99313,-90.0,11/22/0059 +7.08611,47.62093,7725,11,28,2,29,3,3.65,5.0,fr,29901,154,1258572,1,1,Active Shallow Crust,0.0,89.98788,0.0,11/28/7725 +7.08611,47.62093,7584,12,11,22,54,45,3.65,27.5,fr,29902,151,1258574,1,2,Active Shallow Crust,0.0,89.98788,0.0,12/11/7584 +7.08611,47.62093,5530,6,5,20,15,19,3.65,27.5,fr,29903,110,1258574,1,2,Active Shallow Crust,0.0,89.98788,0.0,06/05/5530 +7.08611,47.62093,2603,4,10,7,37,52,3.65,5.0,fr,29904,52,1258578,1,1,Active Shallow Crust,0.0,89.98775,-90.0,04/10/2603 +7.08611,47.62093,2009,6,26,6,24,10,3.75,5.0,fr,29905,40,1258584,1,1,Active Shallow Crust,0.0,89.9892,0.0,06/26/2009 +7.08611,47.62093,7798,2,6,3,44,16,3.75,15.0,fr,29906,155,1258585,1,1,Active Shallow Crust,0.0,89.9892,0.0,02/06/7798 +7.08611,47.62093,8499,4,16,3,31,18,3.75,27.5,fr,29907,169,1258586,1,1,Active Shallow Crust,0.0,89.9892,0.0,04/16/8499 +7.08611,47.62093,2098,7,12,23,24,36,3.85,5.0,fr,29908,41,1258596,1,2,Active Shallow Crust,0.0,89.99038,0.0,07/12/2098 +7.08611,47.62093,6120,11,8,15,35,50,3.85,5.0,fr,29909,122,1258596,1,2,Active Shallow Crust,0.0,89.99038,0.0,11/08/6120 +7.08611,47.62093,2830,6,25,15,46,39,3.85,27.5,fr,29910,56,1258598,1,1,Active Shallow Crust,0.0,89.99038,0.0,06/25/2830 +7.08611,47.62093,1941,9,26,8,35,12,3.85,5.0,fr,29911,38,1258599,1,1,Active Shallow Crust,240.0115,57.99757,0.0,09/26/1941 +7.08611,47.62093,7489,11,29,7,39,59,3.95,15.0,fr,29912,149,1258618,1,2,Active Shallow Crust,128.9002,89.99357,0.0,11/29/7489 +7.08611,47.62093,3862,7,13,13,2,57,3.95,15.0,fr,29913,77,1258618,1,2,Active Shallow Crust,128.9002,89.99357,0.0,07/13/3862 +7.08611,47.62093,1348,1,13,20,44,0,4.05,5.0,fr,29914,26,1258620,1,1,Active Shallow Crust,0.0,89.98853,0.0,01/13/1348 +7.08611,47.62093,8877,6,16,16,35,7,4.15,5.0,fr,29915,177,1258632,1,2,Active Shallow Crust,0.0,89.98978,0.0,06/16/8877 +7.08611,47.62093,5132,11,26,5,57,55,4.15,5.0,fr,29916,102,1258632,1,2,Active Shallow Crust,0.0,89.98978,0.0,11/26/5132 +7.08611,47.62093,9748,3,11,2,42,38,4.15,15.0,fr,29917,194,1258636,1,1,Active Shallow Crust,240.0089,57.997,0.0,03/11/9748 +7.08611,47.62093,7734,8,24,19,45,36,4.35,15.0,fr,29918,154,1258660,1,1,Active Shallow Crust,240.0083,57.99591,0.0,08/24/7734 +7.08611,47.62093,4381,1,8,12,8,11,4.45,5.0,fr,29919,87,1258668,1,1,Active Shallow Crust,0.0,89.99035,0.0,01/08/4381 +7.08611,47.62093,1680,10,23,9,17,48,4.65,15.0,fr,29920,33,1258693,1,1,Active Shallow Crust,0.0,89.99042,0.0,10/23/1680 +7.08611,47.62093,611,2,13,0,38,45,4.85,5.0,fr,29921,12,1258716,1,1,Active Shallow Crust,0.0,89.98935,0.0,02/13/0611 +7.08611,47.62093,8522,3,1,20,57,50,4.85,15.0,fr,29922,170,1258717,1,1,Active Shallow Crust,0.0,89.98935,0.0,03/01/8522 +7.08611,47.62093,9923,3,20,23,32,53,4.95,5.0,fr,29923,198,1258731,1,1,Active Shallow Crust,240.0123,58.00475,0.0,03/20/9923 +7.08611,47.62093,4050,7,20,17,47,19,5.05,5.0,fr,29924,80,1258749,1,1,Active Shallow Crust,128.8849,89.99062,0.0,07/20/4050 +1.56596,42.78176,9081,8,28,5,12,40,3.55,5.0,fr,29925,181,1259040,1,1,Active Shallow Crust,0.0,89.99075,0.0,08/28/9081 +1.56596,42.78176,628,9,19,9,54,37,3.55,15.0,fr,29926,12,1259044,1,1,Active Shallow Crust,240.0118,57.998,0.0,09/19/0628 +1.56596,42.78176,2701,7,4,7,11,52,3.55,5.0,fr,29927,54,1259046,1,1,Active Shallow Crust,0.0,89.99064,-90.0,07/04/2701 +1.56596,42.78176,4674,8,28,7,2,8,3.55,5.0,fr,29928,93,1259049,1,1,Active Shallow Crust,128.8965,89.99352,0.0,08/28/4674 +1.56596,42.78176,8106,11,2,13,15,17,3.65,5.0,fr,29929,162,1259052,1,2,Active Shallow Crust,0.0,89.9901,0.0,11/02/8106 +1.56596,42.78176,7666,6,19,14,31,27,3.65,5.0,fr,29930,153,1259052,1,2,Active Shallow Crust,0.0,89.9901,0.0,06/19/7666 +1.56596,42.78176,3474,2,19,6,19,41,3.65,15.0,fr,29931,69,1259053,1,1,Active Shallow Crust,0.0,89.9901,0.0,02/19/3474 +1.56596,42.78176,3542,1,10,10,34,40,3.65,27.5,fr,29932,70,1259054,1,1,Active Shallow Crust,0.0,89.9901,0.0,01/10/3542 +1.56596,42.78176,4801,3,17,22,19,31,3.65,15.0,fr,29933,96,1259056,1,2,Active Shallow Crust,240.0008,58.0128,0.0,03/17/4801 +1.56596,42.78176,5496,9,23,21,29,59,3.65,15.0,fr,29934,109,1259056,1,2,Active Shallow Crust,240.0008,58.0128,0.0,09/23/5496 +1.56596,42.78176,4709,7,20,5,59,1,3.65,5.0,fr,29935,94,1259061,1,1,Active Shallow Crust,128.9009,89.96346,0.0,07/20/4709 +1.56596,42.78176,8776,2,8,19,15,30,3.75,5.0,fr,29936,175,1259064,1,1,Active Shallow Crust,0.0,89.98972,0.0,02/08/8776 +1.56596,42.78176,3418,1,9,23,39,28,3.75,27.5,fr,29937,68,1259066,1,1,Active Shallow Crust,0.0,89.98972,0.0,01/09/3418 +1.56596,42.78176,5300,2,18,10,44,11,3.85,5.0,fr,29938,105,1259076,1,2,Active Shallow Crust,0.0,89.98952,0.0,02/18/5300 +1.56596,42.78176,5160,3,2,14,36,20,3.85,5.0,fr,29939,103,1259076,1,2,Active Shallow Crust,0.0,89.98952,0.0,03/02/5160 +1.56596,42.78176,1507,6,18,17,32,14,3.95,27.5,fr,29940,30,1259090,1,1,Active Shallow Crust,0.0,89.98949,0.0,06/18/1507 +1.56596,42.78176,2324,12,8,9,25,14,3.95,5.0,fr,29941,46,1259094,1,1,Active Shallow Crust,0.0,89.99055,-90.0,12/08/2324 +1.56596,42.78176,6474,9,2,17,46,9,4.15,15.0,fr,29942,129,1259116,1,1,Active Shallow Crust,240.0079,57.99708,0.0,09/02/6474 +1.56596,42.78176,7611,8,22,13,47,44,4.15,5.0,fr,29943,152,1259118,1,1,Active Shallow Crust,0.0,89.98968,-90.0,08/22/7611 +1.56596,42.78176,2450,10,16,8,15,36,4.45,5.0,fr,29944,48,1259148,1,1,Active Shallow Crust,0.0,89.99015,0.0,10/16/2450 +1.56596,42.78176,8896,9,5,23,28,52,4.55,5.0,fr,29945,177,1259160,1,1,Active Shallow Crust,0.0,89.99005,0.0,09/05/8896 +1.56596,42.78176,8367,11,10,4,34,25,4.75,5.0,fr,29946,167,1259184,1,1,Active Shallow Crust,0.0,89.98978,0.0,11/10/8367 +1.56596,42.78176,2504,11,9,18,30,48,5.55,5.0,fr,29947,50,1259283,1,1,Active Shallow Crust,240.0259,58.00188,0.0,11/09/2504 +1.56596,42.78176,8404,8,2,19,26,59,5.65,5.0,fr,29948,168,1259292,1,1,Active Shallow Crust,0.0,89.98994,0.0,08/02/8404 +9.77103,49.04909,6057,7,16,18,27,37,3.55,27.5,fr,29949,121,1259522,1,1,Active Shallow Crust,0.0,89.98678,0.0,07/16/6057 +9.77103,49.04909,3142,6,16,14,25,11,3.65,15.0,fr,29950,62,1259539,1,1,Active Shallow Crust,0.0,89.98808,-90.0,06/16/3142 +9.77103,49.04909,5935,8,17,20,59,34,3.65,15.0,fr,29951,118,1259542,1,1,Active Shallow Crust,128.8978,89.96357,0.0,08/17/5935 +9.77103,49.04909,262,6,2,7,25,18,3.95,15.0,fr,29952,5,1259572,1,1,Active Shallow Crust,240.0197,58.00566,0.0,06/02/0262 +2.24022,43.02523,2887,2,26,18,51,57,3.55,5.0,fr,29953,57,1260480,1,1,Active Shallow Crust,0.0,89.98895,0.0,02/26/2887 +2.24022,43.02523,8169,9,5,3,17,48,3.55,5.0,fr,29954,163,1260489,1,1,Active Shallow Crust,128.8963,89.99447,0.0,09/05/8169 +2.24022,43.02523,9472,9,8,19,44,47,3.55,15.0,fr,29955,189,1260490,1,1,Active Shallow Crust,128.8963,89.99447,0.0,09/08/9472 +2.24022,43.02523,5509,3,24,20,44,8,3.65,5.0,fr,29956,110,1260492,1,2,Active Shallow Crust,0.0,89.99014,0.0,03/24/5509 +2.24022,43.02523,2799,9,2,3,4,48,3.65,5.0,fr,29957,55,1260492,1,2,Active Shallow Crust,0.0,89.99014,0.0,09/02/2799 +2.24022,43.02523,2752,2,12,5,4,52,3.65,5.0,fr,29958,55,1260495,1,1,Active Shallow Crust,240.0008,58.01241,0.0,02/12/2752 +2.24022,43.02523,4242,12,13,21,29,23,3.65,5.0,fr,29959,84,1260501,1,1,Active Shallow Crust,128.8999,89.96371,0.0,12/13/4242 +2.24022,43.02523,7672,3,16,5,6,45,3.75,5.0,fr,29960,153,1260504,1,1,Active Shallow Crust,0.0,89.99122,0.0,03/16/7672 +2.24022,43.02523,3568,6,5,4,8,43,3.75,5.0,fr,29961,71,1260513,1,1,Active Shallow Crust,128.8967,89.96743,0.0,06/05/3568 +2.24022,43.02523,6841,4,12,6,10,59,3.95,5.0,fr,29962,136,1260528,1,1,Active Shallow Crust,0.0,89.9907,0.0,04/12/6841 +2.24022,43.02523,1741,8,15,12,52,49,3.95,15.0,fr,29963,34,1260529,1,1,Active Shallow Crust,0.0,89.9907,0.0,08/15/1741 +2.24022,43.02523,2462,1,30,14,28,25,4.15,15.0,fr,29964,49,1260556,1,1,Active Shallow Crust,240.0083,57.99719,0.0,01/30/2462 +2.24022,43.02523,825,6,29,18,56,31,4.95,27.5,fr,29965,16,1260650,1,1,Active Shallow Crust,0.0,89.9897,0.0,06/29/0825 +2.24022,43.02523,4368,2,2,23,58,18,4.95,5.0,fr,29966,87,1260651,1,1,Active Shallow Crust,240.0102,58.00421,0.0,02/02/4368 +2.24022,43.02523,8085,6,12,2,35,20,5.05,5.0,fr,29967,161,1260666,1,1,Active Shallow Crust,0.0,89.99005,-90.0,06/12/8085 +2.24022,43.02523,290,1,23,15,34,3,5.25,5.0,fr,29968,5,1260684,1,1,Active Shallow Crust,0.0,89.9901,0.0,01/23/0290 +2.42738,44.77045,8237,2,10,13,33,47,3.55,5.0,fr,29969,164,1261440,1,2,Active Shallow Crust,0.0,89.98927,0.0,02/10/8237 +2.42738,44.77045,3041,9,8,2,59,13,3.55,5.0,fr,29970,60,1261440,1,2,Active Shallow Crust,0.0,89.98927,0.0,09/08/3041 +2.42738,44.77045,9510,6,21,3,38,13,3.55,15.0,fr,29971,190,1261441,1,1,Active Shallow Crust,0.0,89.98927,0.0,06/21/9510 +2.42738,44.77045,9101,8,11,17,43,38,3.55,27.5,fr,29972,182,1261442,1,1,Active Shallow Crust,0.0,89.98927,0.0,08/11/9101 +2.42738,44.77045,2618,7,12,15,25,53,3.55,5.0,fr,29973,52,1261449,1,1,Active Shallow Crust,128.8971,89.99284,0.0,07/12/2618 +2.42738,44.77045,7492,9,17,21,12,0,3.65,5.0,fr,29974,149,1261452,1,2,Active Shallow Crust,0.0,89.99043,0.0,09/17/7492 +2.42738,44.77045,4600,9,29,7,18,43,3.65,5.0,fr,29975,91,1261452,1,2,Active Shallow Crust,0.0,89.99043,0.0,09/29/4600 +2.42738,44.77045,6043,11,7,9,9,13,3.65,15.0,fr,29976,120,1261453,1,1,Active Shallow Crust,0.0,89.99043,0.0,11/07/6043 +2.42738,44.77045,2241,4,15,10,10,36,3.65,27.5,fr,29977,44,1261454,1,1,Active Shallow Crust,0.0,89.99043,0.0,04/15/2241 +2.42738,44.77045,3336,7,19,14,29,0,3.85,5.0,fr,29978,66,1261476,1,1,Active Shallow Crust,0.0,89.98986,0.0,07/19/3336 +2.42738,44.77045,6542,5,29,10,35,34,3.85,5.0,fr,29979,130,1261479,1,1,Active Shallow Crust,240.0105,57.99798,0.0,05/29/6542 +2.42738,44.77045,886,7,2,8,3,45,3.95,5.0,fr,29980,17,1261488,1,1,Active Shallow Crust,0.0,89.99097,0.0,07/02/0886 +2.42738,44.77045,6416,4,30,19,36,21,3.95,5.0,fr,29981,128,1261497,1,1,Active Shallow Crust,128.901,89.99323,0.0,04/30/6416 +2.42738,44.77045,1463,12,6,3,29,16,4.05,5.0,fr,29982,29,1261506,1,2,Active Shallow Crust,0.0,89.98982,-90.0,12/06/1463 +2.42738,44.77045,8290,10,2,0,31,59,4.05,5.0,fr,29983,165,1261506,1,2,Active Shallow Crust,0.0,89.98982,-90.0,10/02/8290 +2.42738,44.77045,4746,11,14,17,9,31,4.25,5.0,fr,29984,94,1261527,1,1,Active Shallow Crust,240.0073,57.99385,0.0,11/14/4746 +2.42738,44.77045,2824,11,26,3,42,33,4.55,5.0,fr,29985,56,1261560,1,1,Active Shallow Crust,0.0,89.98981,0.0,11/26/2824 +2.42738,44.77045,8919,1,8,6,29,37,4.75,5.0,fr,29986,178,1261587,1,1,Active Shallow Crust,240.0069,58.0044,0.0,01/08/8919 +2.42738,44.77045,567,4,16,13,44,36,4.85,5.0,fr,29987,11,1261596,1,1,Active Shallow Crust,0.0,89.99038,0.0,04/16/0567 +4.73576,51.80533,2153,10,19,7,30,45,3.95,15.0,fr,29988,43,1261969,1,1,Active Shallow Crust,0.0,89.9882,0.0,10/19/2153 +4.73576,51.80533,2763,3,18,17,55,10,4.55,5.0,fr,29989,55,1262040,1,1,Active Shallow Crust,0.0,89.99014,0.0,03/18/2763 +2.16106,41.81078,8711,9,24,5,42,48,3.55,5.0,fr,29990,174,1262400,1,2,Active Shallow Crust,0.0,89.98872,0.0,09/24/8711 +2.16106,41.81078,2518,5,29,16,40,46,3.55,5.0,fr,29991,50,1262400,1,2,Active Shallow Crust,0.0,89.98872,0.0,05/29/2518 +2.16106,41.81078,2172,4,13,6,41,30,3.55,15.0,fr,29992,43,1262410,1,1,Active Shallow Crust,128.8963,89.99436,0.0,04/13/2172 +2.16106,41.81078,9026,8,6,17,22,25,3.65,15.0,fr,29993,180,1262413,1,2,Active Shallow Crust,0.0,89.98995,0.0,08/06/9026 +2.16106,41.81078,4008,5,29,5,55,41,3.65,15.0,fr,29994,80,1262413,1,2,Active Shallow Crust,0.0,89.98995,0.0,05/29/4008 +2.16106,41.81078,4992,3,4,18,10,47,3.85,5.0,fr,29995,99,1262436,1,3,Active Shallow Crust,0.0,89.98936,0.0,03/04/4992 +2.16106,41.81078,8089,2,21,8,12,53,3.85,5.0,fr,29996,161,1262436,1,3,Active Shallow Crust,0.0,89.98936,0.0,02/21/8089 +2.16106,41.81078,8734,8,10,3,38,0,3.85,5.0,fr,29997,174,1262436,1,3,Active Shallow Crust,0.0,89.98936,0.0,08/10/8734 +2.16106,41.81078,9382,12,15,12,52,32,3.85,27.5,fr,29998,187,1262438,1,1,Active Shallow Crust,0.0,89.98936,0.0,12/15/9382 +2.16106,41.81078,6056,2,23,1,47,36,3.95,5.0,fr,29999,121,1262448,1,1,Active Shallow Crust,0.0,89.99052,0.0,02/23/6056 +2.16106,41.81078,869,8,12,13,53,39,4.05,5.0,fr,30000,17,1262460,1,1,Active Shallow Crust,0.0,89.98943,0.0,08/12/0869 +2.16106,41.81078,7106,5,28,17,42,33,4.15,5.0,fr,30001,142,1262472,1,2,Active Shallow Crust,0.0,89.99059,0.0,05/28/7106 +2.16106,41.81078,6615,8,20,23,23,5,4.15,5.0,fr,30002,132,1262472,1,2,Active Shallow Crust,0.0,89.99059,0.0,08/20/6615 +2.16106,41.81078,3659,5,12,17,43,36,4.25,5.0,fr,30003,73,1262484,1,1,Active Shallow Crust,0.0,89.98993,0.0,05/12/3659 +2.16106,41.81078,2203,1,30,9,22,6,4.35,5.0,fr,30004,44,1262502,1,1,Active Shallow Crust,0.0,89.9894,-90.0,01/30/2203 +4.50466,45.73656,5870,12,27,1,32,0,3.55,5.0,fr,30005,117,1262880,1,1,Active Shallow Crust,0.0,89.99296,0.0,12/27/5870 +4.50466,45.73656,3120,11,7,10,25,19,3.85,15.0,fr,30006,62,1262917,1,1,Active Shallow Crust,0.0,89.99004,0.0,11/07/3120 +4.50466,45.73656,9634,11,6,22,18,55,3.95,5.0,fr,30007,192,1262928,1,1,Active Shallow Crust,0.0,89.99112,0.0,11/06/9634 +4.50466,45.73656,8733,2,5,0,38,58,3.95,15.0,fr,30008,174,1262929,1,1,Active Shallow Crust,0.0,89.99112,0.0,02/05/8733 +4.50466,45.73656,6424,6,19,16,20,36,4.35,5.0,fr,30009,128,1262976,1,2,Active Shallow Crust,0.0,89.98879,0.0,06/19/6424 +4.50466,45.73656,9137,3,14,21,46,10,4.35,5.0,fr,30010,182,1262976,1,2,Active Shallow Crust,0.0,89.98879,0.0,03/14/9137 +2.79097,45.08976,6988,8,1,23,9,4,3.55,5.0,fr,30011,139,1263360,1,5,Active Shallow Crust,0.0,89.98932,0.0,08/01/6988 +2.79097,45.08976,8644,5,24,9,47,55,3.55,5.0,fr,30012,172,1263360,1,5,Active Shallow Crust,0.0,89.98932,0.0,05/24/8644 +2.79097,45.08976,5245,3,11,7,58,58,3.55,5.0,fr,30013,104,1263360,1,5,Active Shallow Crust,0.0,89.98932,0.0,03/11/5245 +2.79097,45.08976,5843,12,30,22,28,22,3.55,5.0,fr,30014,116,1263360,1,5,Active Shallow Crust,0.0,89.98932,0.0,12/30/5843 +2.79097,45.08976,1530,10,23,19,53,28,3.55,5.0,fr,30015,30,1263360,1,5,Active Shallow Crust,0.0,89.98932,0.0,10/23/1530 +2.79097,45.08976,5540,7,31,21,40,27,3.55,5.0,fr,30016,110,1263366,1,1,Active Shallow Crust,0.0,89.9892,-90.0,07/31/5540 +2.79097,45.08976,6207,8,22,19,34,5,3.85,5.0,fr,30017,124,1263396,1,1,Active Shallow Crust,0.0,89.98992,0.0,08/22/6207 +2.79097,45.08976,1615,4,4,15,15,45,3.85,5.0,fr,30018,32,1263399,1,1,Active Shallow Crust,240.0109,57.99788,0.0,04/04/1615 +2.79097,45.08976,8415,11,21,23,34,47,3.95,5.0,fr,30019,168,1263417,1,1,Active Shallow Crust,128.9004,89.99438,0.0,11/21/8415 +2.79097,45.08976,9736,9,14,23,33,34,4.05,5.0,fr,30020,194,1263423,1,2,Active Shallow Crust,240.0056,58.00601,0.0,09/14/9736 +2.79097,45.08976,344,6,21,21,33,17,4.05,5.0,fr,30021,6,1263423,1,2,Active Shallow Crust,240.0056,58.00601,0.0,06/21/0344 +2.79097,45.08976,4308,1,18,22,36,1,4.35,5.0,fr,30022,86,1263456,1,1,Active Shallow Crust,0.0,89.99008,0.0,01/18/4308 +2.79097,45.08976,8775,5,6,16,43,16,4.45,5.0,fr,30023,175,1263471,1,1,Active Shallow Crust,240.0049,57.99453,0.0,05/06/8775 +4.60013,51.30096,983,5,27,1,56,50,3.55,15.0,fr,30024,19,1263850,1,1,Active Shallow Crust,128.895,89.9937,0.0,05/27/0983 +4.60013,51.30096,8612,7,5,9,20,28,3.75,5.0,fr,30025,172,1263864,1,1,Active Shallow Crust,0.0,89.98998,0.0,07/05/8612 +4.60013,51.30096,6285,7,17,4,13,1,4.25,5.0,fr,30026,125,1263924,1,1,Active Shallow Crust,0.0,89.98873,0.0,07/17/6285 +4.60013,51.30096,175,6,25,3,5,31,5.05,5.0,fr,30027,3,1264020,1,1,Active Shallow Crust,0.0,89.98991,0.0,06/25/0175 +-0.25958,50.0092,9342,8,7,4,20,32,3.55,15.0,fr,30028,186,1264327,1,1,Active Shallow Crust,0.0,89.99017,-90.0,08/07/9342 +-0.25958,50.0092,5703,2,11,20,17,51,3.85,5.0,fr,30029,114,1264356,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/11/5703 +-0.25958,50.0092,2012,7,14,14,54,16,3.95,5.0,fr,30030,40,1264368,1,1,Active Shallow Crust,0.0,89.99004,0.0,07/14/2012 +-0.25958,50.0092,5980,10,30,2,6,4,5.35,5.0,fr,30031,119,1264536,1,1,Active Shallow Crust,0.0,89.99001,0.0,10/30/5980 +1.38639,49.56666,2982,7,2,14,38,40,3.55,5.0,fr,30032,59,1265283,1,1,Active Shallow Crust,240.0124,57.99817,0.0,07/02/2982 +1.38639,49.56666,4360,4,22,14,55,30,3.55,5.0,fr,30033,87,1265289,1,1,Active Shallow Crust,128.8963,89.99346,0.0,04/22/4360 +1.38639,49.56666,6627,12,30,21,37,9,3.65,15.0,fr,30034,132,1265293,1,1,Active Shallow Crust,0.0,89.9898,0.0,12/30/6627 +1.38639,49.56666,2851,10,31,0,24,12,3.65,5.0,fr,30035,57,1265295,1,1,Active Shallow Crust,240.0013,58.01313,0.0,10/31/2851 +1.38639,49.56666,8679,2,17,19,18,3,3.75,5.0,fr,30036,173,1265304,1,1,Active Shallow Crust,0.0,89.98961,0.0,02/17/8679 +1.38639,49.56666,6828,4,2,9,51,25,3.75,15.0,fr,30037,136,1265305,1,1,Active Shallow Crust,0.0,89.98961,0.0,04/02/6828 +1.38639,49.56666,9292,4,15,19,30,3,3.85,5.0,fr,30038,185,1265316,1,1,Active Shallow Crust,0.0,89.98959,0.0,04/15/9292 +1.38639,49.56666,9258,12,7,15,51,20,3.85,5.0,fr,30039,185,1265322,1,1,Active Shallow Crust,0.0,89.98946,-90.0,12/07/9258 +1.38639,49.56666,4137,12,3,0,50,51,3.95,15.0,fr,30040,82,1265329,1,1,Active Shallow Crust,0.0,89.98969,0.0,12/03/4137 +1.38639,49.56666,3482,6,23,11,57,24,3.95,5.0,fr,30041,69,1265337,1,1,Active Shallow Crust,128.8998,89.99381,0.0,06/23/3482 +1.38639,49.56666,9277,7,6,8,54,16,4.05,15.0,fr,30042,185,1265347,1,1,Active Shallow Crust,0.0,89.98977,-90.0,07/06/9277 +1.38639,49.56666,7056,3,21,23,23,48,4.25,27.5,fr,30043,141,1265366,1,1,Active Shallow Crust,0.0,89.98978,0.0,03/21/7056 +1.38639,49.56666,8683,10,26,10,31,38,4.35,15.0,fr,30044,173,1265377,1,1,Active Shallow Crust,0.0,89.99023,0.0,10/26/8683 +1.38639,49.56666,9628,1,30,17,30,43,5.05,5.0,fr,30045,192,1265460,1,1,Active Shallow Crust,0.0,89.99011,0.0,01/30/9628 +-3.06211,46.70483,1041,3,9,1,47,36,3.95,5.0,fr,30046,20,1265814,1,1,Active Shallow Crust,0.0,89.98897,-90.0,03/09/1041 +5.56846,45.22752,8129,9,10,19,28,31,3.55,5.0,fr,30047,162,1266240,1,2,Active Shallow Crust,0.0,89.9929,0.0,09/10/8129 +5.56846,45.22752,279,1,21,21,51,53,3.55,5.0,fr,30048,5,1266240,1,2,Active Shallow Crust,0.0,89.9929,0.0,01/21/0279 +5.56846,45.22752,2521,8,30,18,33,14,3.55,27.5,fr,30049,50,1266242,1,1,Active Shallow Crust,0.0,89.9929,0.0,08/30/2521 +5.56846,45.22752,7832,2,21,6,52,32,3.55,5.0,fr,30050,156,1266243,1,1,Active Shallow Crust,240.0124,57.99836,0.0,02/21/7832 +5.56846,45.22752,4268,6,8,0,3,44,3.55,5.0,fr,30051,85,1266249,1,1,Active Shallow Crust,128.8977,89.9929,0.0,06/08/4268 +5.56846,45.22752,2089,3,7,3,43,1,3.65,5.0,fr,30052,41,1266252,1,2,Active Shallow Crust,0.0,89.98734,0.0,03/07/2089 +5.56846,45.22752,2472,7,1,2,42,29,3.65,5.0,fr,30053,49,1266252,1,2,Active Shallow Crust,0.0,89.98734,0.0,07/01/2472 +5.56846,45.22752,1802,2,10,3,49,5,3.65,5.0,fr,30054,36,1266255,1,1,Active Shallow Crust,240.0011,58.01255,0.0,02/10/1802 +5.56846,45.22752,854,4,18,10,40,33,3.65,15.0,fr,30055,17,1266259,1,1,Active Shallow Crust,0.0,89.98719,-90.0,04/18/0854 +5.56846,45.22752,1961,10,16,21,27,15,3.65,5.0,fr,30056,39,1266261,1,2,Active Shallow Crust,128.9002,89.9635,0.0,10/16/1961 +5.56846,45.22752,9958,9,4,18,20,47,3.65,5.0,fr,30057,199,1266261,1,2,Active Shallow Crust,128.9002,89.9635,0.0,09/04/9958 +5.56846,45.22752,7988,6,9,8,1,20,3.75,5.0,fr,30058,159,1266264,1,2,Active Shallow Crust,0.0,89.98872,0.0,06/09/7988 +5.56846,45.22752,3863,4,23,9,46,41,3.75,5.0,fr,30059,77,1266264,1,2,Active Shallow Crust,0.0,89.98872,0.0,04/23/3863 +5.56846,45.22752,1814,2,18,8,53,58,3.75,15.0,fr,30060,36,1266268,1,1,Active Shallow Crust,240.0083,58.01757,0.0,02/18/1814 +5.56846,45.22752,7900,10,11,19,21,42,3.85,5.0,fr,30061,157,1266276,1,1,Active Shallow Crust,0.0,89.98994,0.0,10/11/7900 +5.56846,45.22752,3602,9,12,8,15,2,3.85,5.0,fr,30062,72,1266279,1,1,Active Shallow Crust,240.0101,57.99743,0.0,09/12/3602 +5.56846,45.22752,518,4,8,17,37,38,3.85,5.0,fr,30063,10,1266285,1,1,Active Shallow Crust,128.8959,89.99246,0.0,04/08/0518 +5.56846,45.22752,6413,9,1,12,43,38,3.95,5.0,fr,30064,128,1266288,1,1,Active Shallow Crust,0.0,89.99104,0.0,09/01/6413 +5.56846,45.22752,7440,2,8,3,5,4,3.95,5.0,fr,30065,148,1266294,1,1,Active Shallow Crust,0.0,89.99094,-90.0,02/08/7440 +5.56846,45.22752,9783,7,5,9,16,9,3.95,5.0,fr,30066,195,1266297,1,1,Active Shallow Crust,128.9012,89.99328,0.0,07/05/9783 +5.56846,45.22752,9575,11,1,3,16,27,4.05,5.0,fr,30067,191,1266300,1,1,Active Shallow Crust,0.0,89.98802,0.0,11/01/9575 +5.56846,45.22752,9682,11,3,10,51,12,4.05,15.0,fr,30068,193,1266301,1,1,Active Shallow Crust,0.0,89.98802,0.0,11/03/9682 +5.56846,45.22752,8445,5,27,9,26,57,4.15,5.0,fr,30069,168,1266312,1,1,Active Shallow Crust,0.0,89.98932,0.0,05/27/8445 +5.56846,45.22752,8499,8,13,18,5,22,4.25,5.0,fr,30070,169,1266324,1,1,Active Shallow Crust,0.0,89.99049,0.0,08/13/8499 +5.56846,45.22752,157,11,29,17,3,1,4.35,5.0,fr,30071,3,1266336,1,1,Active Shallow Crust,0.0,89.98869,0.0,11/29/0157 +5.56846,45.22752,7228,8,29,12,3,52,4.45,15.0,fr,30072,144,1266349,1,1,Active Shallow Crust,0.0,89.98992,0.0,08/29/7228 +5.56846,45.22752,57,4,16,23,22,59,4.75,27.5,fr,30073,1,1266386,1,1,Active Shallow Crust,0.0,89.9893,0.0,04/16/0057 +5.56846,45.22752,7875,4,23,4,21,30,5.95,5.0,fr,30074,157,1266528,1,1,Active Shallow Crust,0.0,89.99014,0.0,04/23/7875 +-4.81779,47.75638,3993,8,12,10,52,15,3.55,5.0,fr,30075,79,1266720,1,1,Active Shallow Crust,0.0,89.99322,0.0,08/12/3993 +-4.81779,47.75638,6797,3,7,5,50,0,3.65,5.0,fr,30076,135,1266732,1,1,Active Shallow Crust,0.0,89.98792,0.0,03/07/6797 +-4.81779,47.75638,9930,7,8,18,23,18,3.95,15.0,fr,30077,198,1266769,1,1,Active Shallow Crust,0.0,89.99145,0.0,07/08/9930 +-4.81779,47.75638,4686,8,11,19,4,51,4.25,5.0,fr,30078,93,1266804,1,1,Active Shallow Crust,0.0,89.99091,0.0,08/11/4686 +-4.81779,47.75638,3144,8,13,1,35,20,4.85,5.0,fr,30079,62,1266879,1,1,Active Shallow Crust,240.018,58.00238,0.0,08/13/3144 +-0.41127,45.99175,9112,11,11,18,2,48,3.55,5.0,fr,30080,182,1267203,1,1,Active Shallow Crust,240.0121,57.99821,0.0,11/11/9112 +-0.41127,45.99175,1140,10,4,4,55,8,3.65,5.0,fr,30081,22,1267212,1,3,Active Shallow Crust,0.0,89.98985,0.0,10/04/1140 +-0.41127,45.99175,9390,4,6,10,36,26,3.65,5.0,fr,30082,187,1267212,1,3,Active Shallow Crust,0.0,89.98985,0.0,04/06/9390 +-0.41127,45.99175,8041,9,28,10,44,26,3.65,5.0,fr,30083,160,1267212,1,3,Active Shallow Crust,0.0,89.98985,0.0,09/28/8041 +-0.41127,45.99175,5239,10,23,12,11,9,3.65,5.0,fr,30084,104,1267215,1,1,Active Shallow Crust,240.0011,58.01288,0.0,10/23/5239 +-0.41127,45.99175,7131,4,24,19,22,46,3.65,5.0,fr,30085,142,1267218,1,1,Active Shallow Crust,0.0,89.99013,-90.0,04/24/7131 +-0.41127,45.99175,1989,8,30,9,58,45,3.75,15.0,fr,30086,39,1267225,1,1,Active Shallow Crust,0.0,89.98991,0.0,08/30/1989 +-0.41127,45.99175,3092,6,19,9,55,9,3.75,5.0,fr,30087,61,1267227,1,2,Active Shallow Crust,240.0083,58.01752,0.0,06/19/3092 +-0.41127,45.99175,5408,5,21,1,15,33,3.75,5.0,fr,30088,108,1267227,1,2,Active Shallow Crust,240.0083,58.01752,0.0,05/21/5408 +-0.41127,45.99175,9867,4,8,17,49,50,3.85,15.0,fr,30089,197,1267237,1,1,Active Shallow Crust,0.0,89.99008,0.0,04/08/9867 +-0.41127,45.99175,5077,5,6,21,35,2,3.95,5.0,fr,30090,101,1267248,1,1,Active Shallow Crust,0.0,89.99005,0.0,05/06/5077 +-0.41127,45.99175,7012,11,17,8,7,59,3.95,5.0,fr,30091,140,1267254,1,1,Active Shallow Crust,0.0,89.98994,-90.0,11/17/7012 +-0.41127,45.99175,7683,1,18,12,1,25,3.95,27.5,fr,30092,153,1267259,1,1,Active Shallow Crust,128.9004,89.99364,0.0,01/18/7683 +-0.41127,45.99175,5665,7,3,6,56,46,4.05,5.0,fr,30093,113,1267260,1,3,Active Shallow Crust,0.0,89.98991,0.0,07/03/5665 +-0.41127,45.99175,3529,8,30,23,28,47,4.05,5.0,fr,30094,70,1267260,1,3,Active Shallow Crust,0.0,89.98991,0.0,08/30/3529 +-0.41127,45.99175,2194,12,12,3,23,16,4.05,5.0,fr,30095,43,1267260,1,3,Active Shallow Crust,0.0,89.98991,0.0,12/12/2194 +-0.41127,45.99175,3145,9,15,15,57,15,4.45,5.0,fr,30096,62,1267308,1,1,Active Shallow Crust,0.0,89.99006,0.0,09/15/3145 +-0.41127,45.99175,9860,3,7,1,56,3,4.75,5.0,fr,30097,197,1267344,1,1,Active Shallow Crust,0.0,89.98999,0.0,03/07/9860 +-0.41127,45.99175,9117,9,13,22,51,36,4.95,5.0,fr,30098,182,1267368,1,1,Active Shallow Crust,0.0,89.99004,0.0,09/13/9117 +1.63048,49.96886,1069,10,30,0,55,31,3.65,5.0,fr,30099,21,1267692,1,1,Active Shallow Crust,0.0,89.98988,0.0,10/30/1069 +1.63048,49.96886,9867,5,10,16,33,31,3.65,5.0,fr,30100,197,1267695,1,1,Active Shallow Crust,240.0015,58.01301,0.0,05/10/9867 +1.63048,49.96886,3759,10,19,4,42,17,3.75,5.0,fr,30101,75,1267707,1,1,Active Shallow Crust,240.0085,58.01778,0.0,10/19/3759 +1.63048,49.96886,6282,6,9,18,35,0,4.15,5.0,fr,30102,125,1267752,1,1,Active Shallow Crust,0.0,89.99025,0.0,06/09/6282 +1.63048,49.96886,2031,1,25,21,59,27,4.15,15.0,fr,30103,40,1267753,1,1,Active Shallow Crust,0.0,89.99025,0.0,01/25/2031 +1.63048,49.96886,3885,9,28,3,6,32,4.75,5.0,fr,30104,77,1267824,1,1,Active Shallow Crust,0.0,89.98981,0.0,09/28/3885 +1.63048,49.96886,3903,9,12,6,13,21,5.35,5.0,fr,30105,78,1267896,1,1,Active Shallow Crust,0.0,89.98999,0.0,09/12/3903 +6.92305,51.60045,235,6,28,0,22,53,3.55,5.0,fr,30106,4,1268163,1,1,Active Shallow Crust,240.012,57.99878,0.0,06/28/0235 +6.92305,51.60045,3792,8,11,5,42,14,3.65,15.0,fr,30107,75,1268173,1,1,Active Shallow Crust,0.0,89.98884,0.0,08/11/3792 +6.92305,51.60045,9901,4,24,1,53,53,4.05,5.0,fr,30108,198,1268220,1,1,Active Shallow Crust,0.0,89.98943,0.0,04/24/9901 +6.92305,51.60045,8701,5,25,18,59,41,4.35,5.0,fr,30109,174,1268256,1,1,Active Shallow Crust,0.0,89.99003,0.0,05/25/8701 +2.62382,40.94111,7795,5,8,14,5,29,3.55,27.5,fr,30110,155,1268642,1,1,Active Shallow Crust,0.0,89.98857,0.0,05/08/7795 +2.62382,40.94111,8710,7,9,15,0,53,3.65,5.0,fr,30111,174,1268652,1,1,Active Shallow Crust,0.0,89.98981,0.0,07/09/8710 +2.62382,40.94111,6538,7,4,20,36,38,3.75,5.0,fr,30112,130,1268664,1,1,Active Shallow Crust,0.0,89.99092,0.0,07/04/6538 +2.62382,40.94111,397,7,20,21,43,7,3.95,5.0,fr,30113,7,1268688,1,2,Active Shallow Crust,0.0,89.99039,0.0,07/20/0397 +2.62382,40.94111,3693,5,31,0,17,40,3.95,5.0,fr,30114,73,1268688,1,2,Active Shallow Crust,0.0,89.99039,0.0,05/31/3693 +2.62382,40.94111,6524,4,5,20,35,9,5.25,5.0,fr,30115,130,1268844,1,1,Active Shallow Crust,0.0,89.98978,0.0,04/05/6524 +5.05949,48.88771,719,8,7,2,42,40,3.95,5.0,fr,30116,14,1269168,1,1,Active Shallow Crust,0.0,89.99163,0.0,08/07/0719 +5.05949,48.88771,5850,1,9,7,57,29,5.25,5.0,fr,30117,116,1269330,1,1,Active Shallow Crust,0.0,89.98958,-90.0,01/09/5850 +8.19767,48.63825,3353,1,4,18,26,4,3.55,5.0,fr,30118,67,1270080,1,2,Active Shallow Crust,0.0,89.98667,0.0,01/04/3353 +8.19767,48.63825,7309,6,23,19,27,43,3.55,5.0,fr,30119,146,1270080,1,2,Active Shallow Crust,0.0,89.98667,0.0,06/23/7309 +8.19767,48.63825,3131,2,12,9,14,17,3.65,5.0,fr,30120,62,1270092,1,1,Active Shallow Crust,0.0,89.98812,0.0,02/12/3131 +8.19767,48.63825,3210,12,12,14,6,11,3.65,5.0,fr,30121,64,1270101,1,2,Active Shallow Crust,128.8983,89.96356,0.0,12/12/3210 +8.19767,48.63825,5918,3,6,3,0,1,3.65,5.0,fr,30122,118,1270101,1,2,Active Shallow Crust,128.8983,89.96356,0.0,03/06/5918 +8.19767,48.63825,513,4,13,19,33,40,3.75,5.0,fr,30123,10,1270104,1,3,Active Shallow Crust,0.0,89.98941,0.0,04/13/0513 +8.19767,48.63825,5532,2,9,8,51,5,3.75,5.0,fr,30124,110,1270104,1,3,Active Shallow Crust,0.0,89.98941,0.0,02/09/5532 +8.19767,48.63825,1069,10,25,19,3,12,3.75,5.0,fr,30125,21,1270104,1,3,Active Shallow Crust,0.0,89.98941,0.0,10/25/1069 +8.19767,48.63825,5009,7,9,12,31,8,3.75,5.0,fr,30126,100,1270107,1,1,Active Shallow Crust,240.0093,58.01775,0.0,07/09/5009 +8.19767,48.63825,1689,10,21,21,42,46,3.85,5.0,fr,30127,33,1270116,1,2,Active Shallow Crust,0.0,89.99056,0.0,10/21/1689 +8.19767,48.63825,7077,1,3,4,45,21,3.85,5.0,fr,30128,141,1270116,1,2,Active Shallow Crust,0.0,89.99056,0.0,01/03/7077 +8.19767,48.63825,7470,3,13,13,19,52,3.95,5.0,fr,30129,149,1270128,1,1,Active Shallow Crust,0.0,89.99159,0.0,03/13/7470 +8.19767,48.63825,6884,2,6,21,8,8,4.15,5.0,fr,30130,137,1270152,1,1,Active Shallow Crust,0.0,89.99332,0.0,02/06/6884 +8.19767,48.63825,7233,9,18,7,5,11,4.25,5.0,fr,30131,144,1270164,1,3,Active Shallow Crust,0.0,89.98809,0.0,09/18/7233 +8.19767,48.63825,6157,8,23,11,57,57,4.25,5.0,fr,30132,123,1270164,1,3,Active Shallow Crust,0.0,89.98809,0.0,08/23/6157 +8.19767,48.63825,5449,3,14,17,51,49,4.25,5.0,fr,30133,108,1270164,1,3,Active Shallow Crust,0.0,89.98809,0.0,03/14/5449 +8.19767,48.63825,8586,5,31,0,50,7,4.25,5.0,fr,30134,171,1270173,1,1,Active Shallow Crust,128.8947,89.98103,0.0,05/31/8586 +8.19767,48.63825,8985,3,29,13,40,44,4.85,15.0,fr,30135,179,1270237,1,1,Active Shallow Crust,0.0,89.99105,0.0,03/29/8985 +8.19767,48.63825,4694,11,23,1,20,46,4.85,5.0,fr,30136,93,1270242,1,1,Active Shallow Crust,0.0,89.99094,-90.0,11/23/4694 +8.19767,48.63825,8519,12,2,3,39,7,5.55,5.0,fr,30137,170,1270326,1,1,Active Shallow Crust,0.0,89.99055,-90.0,12/02/8519 +8.19767,48.63825,3919,11,6,13,15,23,5.65,15.0,fr,30138,78,1270333,1,1,Active Shallow Crust,0.0,89.99049,0.0,11/06/3919 +7.19732,43.70676,6903,12,20,21,0,3,3.55,15.0,fr,30139,138,1270561,1,2,Active Shallow Crust,0.0,89.99271,0.0,12/20/6903 +7.19732,43.70676,6516,11,7,15,43,14,3.55,15.0,fr,30140,130,1270561,1,2,Active Shallow Crust,0.0,89.99271,0.0,11/07/6516 +7.19732,43.70676,5132,6,8,15,35,42,3.55,27.5,fr,30141,102,1270562,1,1,Active Shallow Crust,0.0,89.99271,0.0,06/08/5132 +7.19732,43.70676,1815,5,10,20,39,6,3.55,5.0,fr,30142,36,1270569,1,1,Active Shallow Crust,128.8956,89.99635,0.0,05/10/1815 +7.19732,43.70676,6306,11,13,15,47,50,3.65,15.0,fr,30143,126,1270573,1,1,Active Shallow Crust,0.0,89.98701,0.0,11/13/6306 +7.19732,43.70676,1261,2,27,3,17,30,3.75,5.0,fr,30144,25,1270584,1,1,Active Shallow Crust,0.0,89.98842,0.0,02/27/1261 +7.19732,43.70676,287,10,1,23,43,58,3.75,5.0,fr,30145,5,1270593,1,1,Active Shallow Crust,128.8977,89.9668,0.0,10/01/0287 +7.19732,43.70676,7096,8,5,15,39,18,3.75,15.0,fr,30146,141,1270594,1,1,Active Shallow Crust,128.8977,89.9668,0.0,08/05/7096 +7.19732,43.70676,8738,6,25,2,8,32,3.85,5.0,fr,30147,174,1270596,1,1,Active Shallow Crust,0.0,89.98968,0.0,06/25/8738 +7.19732,43.70676,3001,3,30,0,46,23,3.85,5.0,fr,30148,60,1270599,1,1,Active Shallow Crust,240.0107,57.99707,0.0,03/30/3001 +7.19732,43.70676,1190,1,2,6,20,36,3.85,5.0,fr,30149,23,1270605,1,1,Active Shallow Crust,128.8958,89.99484,0.0,01/02/1190 +7.19732,43.70676,1978,5,4,11,8,49,3.95,5.0,fr,30150,39,1270608,1,2,Active Shallow Crust,0.0,89.9908,0.0,05/04/1978 +7.19732,43.70676,3621,12,24,15,54,20,3.95,5.0,fr,30151,72,1270608,1,2,Active Shallow Crust,0.0,89.9908,0.0,12/24/3621 +7.19732,43.70676,9155,11,12,3,11,50,4.05,15.0,fr,30152,183,1270621,1,2,Active Shallow Crust,0.0,89.9918,0.0,11/12/9155 +7.19732,43.70676,6679,2,5,0,59,14,4.05,15.0,fr,30153,133,1270621,1,2,Active Shallow Crust,0.0,89.9918,0.0,02/05/6679 +7.19732,43.70676,4360,2,24,15,36,2,4.15,5.0,fr,30154,87,1270635,1,1,Active Shallow Crust,240.0079,57.99744,0.0,02/24/4360 +7.19732,43.70676,21,9,15,8,23,27,4.25,15.0,fr,30155,0,1270648,1,1,Active Shallow Crust,240.0067,57.99411,0.0,09/15/0021 +7.19732,43.70676,3772,11,10,18,4,36,4.25,5.0,fr,30156,75,1270653,1,1,Active Shallow Crust,128.8947,89.98084,0.0,11/10/3772 +7.19732,43.70676,218,10,26,3,57,19,4.25,15.0,fr,30157,4,1270654,1,1,Active Shallow Crust,128.8947,89.98084,0.0,10/26/0218 +7.19732,43.70676,8316,7,17,3,12,46,4.35,5.0,fr,30158,166,1270656,1,1,Active Shallow Crust,0.0,89.99129,0.0,07/17/8316 +7.19732,43.70676,8849,6,14,16,34,11,4.95,5.0,fr,30159,176,1270728,1,1,Active Shallow Crust,0.0,89.98981,0.0,06/14/8849 +2.47529,47.24963,6814,1,7,19,35,31,3.85,15.0,fr,30160,136,1271077,1,1,Active Shallow Crust,0.0,89.99031,0.0,01/07/6814 +2.47529,47.24963,7989,10,22,1,54,54,4.05,27.5,fr,30161,159,1271102,1,1,Active Shallow Crust,0.0,89.99038,0.0,10/22/7989 +-0.83778,45.54869,4798,2,2,15,25,25,3.55,27.5,fr,30162,95,1271522,1,1,Active Shallow Crust,0.0,89.99029,0.0,02/02/4798 +-0.83778,45.54869,7231,11,23,19,48,3,3.85,5.0,fr,30163,144,1271556,1,1,Active Shallow Crust,0.0,89.99,0.0,11/23/7231 +-0.83778,45.54869,5587,7,3,22,49,10,3.95,5.0,fr,30164,111,1271574,1,1,Active Shallow Crust,0.0,89.98986,-90.0,07/03/5587 +6.80978,50.85324,3489,3,4,23,30,34,3.55,5.0,fr,30165,69,1272000,1,2,Active Shallow Crust,0.0,89.98727,0.0,03/04/3489 +6.80978,50.85324,1123,2,16,22,43,32,3.55,5.0,fr,30166,22,1272000,1,2,Active Shallow Crust,0.0,89.98727,0.0,02/16/1123 +6.80978,50.85324,880,6,16,16,59,42,3.55,15.0,fr,30167,17,1272001,1,1,Active Shallow Crust,0.0,89.98727,0.0,06/16/0880 +6.80978,50.85324,4739,8,27,3,52,44,3.55,5.0,fr,30168,94,1272003,1,1,Active Shallow Crust,240.0138,57.99734,0.0,08/27/4739 +6.80978,50.85324,4271,8,22,22,20,39,3.55,15.0,fr,30169,85,1272004,1,1,Active Shallow Crust,240.0138,57.99734,0.0,08/22/4271 +6.80978,50.85324,3161,11,3,21,58,50,3.65,5.0,fr,30170,63,1272012,1,4,Active Shallow Crust,0.0,89.98866,0.0,11/03/3161 +6.80978,50.85324,5206,2,17,5,22,36,3.65,5.0,fr,30171,104,1272012,1,4,Active Shallow Crust,0.0,89.98866,0.0,02/17/5206 +6.80978,50.85324,7500,6,26,21,10,2,3.65,5.0,fr,30172,149,1272012,1,4,Active Shallow Crust,0.0,89.98866,0.0,06/26/7500 +6.80978,50.85324,1556,12,17,21,55,9,3.65,5.0,fr,30173,31,1272012,1,4,Active Shallow Crust,0.0,89.98866,0.0,12/17/1556 +6.80978,50.85324,7197,5,22,5,39,52,3.65,15.0,fr,30174,143,1272013,1,1,Active Shallow Crust,0.0,89.98866,0.0,05/22/7197 +6.80978,50.85324,2188,7,20,21,6,8,3.65,27.5,fr,30175,43,1272014,1,1,Active Shallow Crust,0.0,89.98866,0.0,07/20/2188 +6.80978,50.85324,1724,4,7,12,54,16,3.75,5.0,fr,30176,34,1272024,1,1,Active Shallow Crust,0.0,89.98988,0.0,04/07/1724 +6.80978,50.85324,9107,12,25,23,35,57,3.75,5.0,fr,30177,182,1272027,1,1,Active Shallow Crust,240.0081,58.01783,0.0,12/25/9107 +6.80978,50.85324,672,2,8,17,51,8,3.75,5.0,fr,30178,13,1272030,1,1,Active Shallow Crust,0.0,89.98977,-90.0,02/08/0672 +6.80978,50.85324,5194,10,19,0,47,11,3.75,5.0,fr,30179,103,1272033,1,1,Active Shallow Crust,128.8957,89.96757,0.0,10/19/5194 +6.80978,50.85324,4379,3,7,21,50,42,3.75,15.0,fr,30180,87,1272034,1,1,Active Shallow Crust,128.8957,89.96757,0.0,03/07/4379 +6.80978,50.85324,3124,9,1,6,18,47,3.95,15.0,fr,30181,62,1272049,1,1,Active Shallow Crust,0.0,89.99197,0.0,09/01/3124 +6.80978,50.85324,8200,10,16,8,20,27,3.95,27.5,fr,30182,163,1272050,1,1,Active Shallow Crust,0.0,89.99197,0.0,10/16/8200 +6.80978,50.85324,2504,8,18,2,29,35,3.95,15.0,fr,30183,50,1272052,1,1,Active Shallow Crust,240.0204,58.00478,0.0,08/18/2504 +6.80978,50.85324,6285,9,25,16,55,19,4.05,5.0,fr,30184,125,1272060,1,1,Active Shallow Crust,0.0,89.98926,0.0,09/25/6285 +6.80978,50.85324,8325,5,26,21,6,1,4.05,5.0,fr,30185,166,1272063,1,1,Active Shallow Crust,240.0061,58.00584,0.0,05/26/8325 +6.80978,50.85324,2038,5,8,4,9,39,4.15,5.0,fr,30186,40,1272081,1,2,Active Shallow Crust,128.8972,89.99362,0.0,05/08/2038 +6.80978,50.85324,3503,7,31,3,20,30,4.15,5.0,fr,30187,70,1272081,1,2,Active Shallow Crust,128.8972,89.99362,0.0,07/31/3503 +6.80978,50.85324,7890,7,7,13,58,47,4.25,5.0,fr,30188,157,1272093,1,1,Active Shallow Crust,128.8935,89.98111,0.0,07/07/7890 +6.80978,50.85324,9709,1,27,9,22,30,4.35,15.0,fr,30189,194,1272097,1,1,Active Shallow Crust,0.0,89.98986,0.0,01/27/9709 +6.80978,50.85324,2719,12,10,9,48,18,4.45,5.0,fr,30190,54,1272108,1,1,Active Shallow Crust,0.0,89.99097,0.0,12/10/2719 +6.80978,50.85324,6178,5,2,22,26,42,4.45,15.0,fr,30191,123,1272109,1,1,Active Shallow Crust,0.0,89.99097,0.0,05/02/6178 +6.80978,50.85324,8320,8,15,4,14,13,4.65,5.0,fr,30192,166,1272141,1,1,Active Shallow Crust,128.8899,89.98701,0.0,08/15/8320 +6.80978,50.85324,821,7,14,10,38,1,4.75,27.5,fr,30193,16,1272146,1,1,Active Shallow Crust,0.0,89.9904,0.0,07/14/0821 +6.80978,50.85324,3510,11,2,11,56,53,5.05,5.0,fr,30194,70,1272180,1,1,Active Shallow Crust,0.0,89.98981,0.0,11/02/3510 +6.80978,50.85324,5303,2,7,19,44,14,5.35,5.0,fr,30195,106,1272219,1,1,Active Shallow Crust,240.0286,57.99845,0.0,02/07/5303 +6.80978,50.85324,9251,8,23,9,28,48,5.55,27.5,fr,30196,185,1272242,1,1,Active Shallow Crust,0.0,89.98981,0.0,08/23/9251 +-3.76391,50.29593,3047,2,22,11,55,41,3.55,5.0,fr,30197,60,1272480,1,1,Active Shallow Crust,0.0,89.99033,0.0,02/22/3047 +7.66806,51.44239,457,10,26,9,28,32,3.55,5.0,fr,30198,9,1272966,1,1,Active Shallow Crust,0.0,89.98728,-90.0,10/26/0457 +1.00064,43.12672,7648,1,12,7,15,3,3.75,15.0,fr,30199,152,1273468,1,1,Active Shallow Crust,240.008,58.01735,0.0,01/12/7648 +1.00064,43.12672,9082,11,5,19,29,17,3.85,15.0,fr,30200,181,1273486,1,1,Active Shallow Crust,128.896,89.99348,0.0,11/05/9082 +1.00064,43.12672,1234,11,6,19,6,1,3.95,5.0,fr,30201,24,1273488,1,1,Active Shallow Crust,0.0,89.98956,0.0,11/06/1234 +1.00064,43.12672,6537,11,16,9,59,2,5.85,15.0,fr,30202,130,1273720,1,1,Active Shallow Crust,240.0405,57.99898,0.0,11/16/6537 +-3.49467,47.07208,5820,3,12,15,27,12,4.65,15.0,fr,30203,116,1274053,1,1,Active Shallow Crust,0.0,89.99032,0.0,03/12/5820 +3.14067,50.01959,2930,3,9,14,20,12,3.55,5.0,fr,30204,58,1274400,1,1,Active Shallow Crust,0.0,89.99028,0.0,03/09/2930 +3.14067,50.01959,143,6,20,11,29,46,3.85,5.0,fr,30205,2,1274439,1,1,Active Shallow Crust,240.0115,57.998,0.0,06/20/0143 +3.14067,50.01959,138,12,12,7,1,5,5.15,15.0,fr,30206,2,1274596,1,1,Active Shallow Crust,240.0219,58.00033,0.0,12/12/0138 +4.60785,50.07368,8979,3,10,22,13,0,3.55,5.0,fr,30207,179,1274886,1,1,Active Shallow Crust,0.0,89.98691,-90.0,03/10/8979 +4.60785,50.07368,9041,7,17,16,35,29,3.95,5.0,fr,30208,180,1274928,1,1,Active Shallow Crust,0.0,89.99183,0.0,07/17/9041 +4.60785,50.07368,789,8,25,3,49,41,4.05,5.0,fr,30209,15,1274949,1,1,Active Shallow Crust,128.8891,89.99454,0.0,08/25/0789 +-0.08803,45.47665,7975,3,24,0,3,11,3.55,5.0,fr,30210,159,1275360,1,2,Active Shallow Crust,0.0,89.98994,0.0,03/24/7975 +-0.08803,45.47665,2388,9,11,4,34,47,3.55,5.0,fr,30211,47,1275360,1,2,Active Shallow Crust,0.0,89.98994,0.0,09/11/2388 +-0.08803,45.47665,8984,1,18,19,36,57,3.85,5.0,fr,30212,179,1275396,1,2,Active Shallow Crust,0.0,89.98999,0.0,01/18/8984 +-0.08803,45.47665,4737,3,4,6,51,1,3.85,5.0,fr,30213,94,1275396,1,2,Active Shallow Crust,0.0,89.98999,0.0,03/04/4737 +-0.08803,45.47665,6645,12,3,7,42,34,3.85,15.0,fr,30214,132,1275397,1,1,Active Shallow Crust,0.0,89.98999,0.0,12/03/6645 +-0.08803,45.47665,7290,3,19,0,1,27,3.95,5.0,fr,30215,145,1275408,1,1,Active Shallow Crust,0.0,89.99003,0.0,03/19/7290 +-0.08803,45.47665,1019,7,6,4,19,55,3.95,27.5,fr,30216,20,1275410,1,1,Active Shallow Crust,0.0,89.99003,0.0,07/06/1019 +-0.08803,45.47665,7011,11,23,6,5,3,4.05,27.5,fr,30217,140,1275422,1,1,Active Shallow Crust,0.0,89.99,0.0,11/23/7011 +-0.08803,45.47665,7814,11,8,2,31,36,4.15,5.0,fr,30218,156,1275432,1,1,Active Shallow Crust,0.0,89.98997,0.0,11/08/7814 +-0.08803,45.47665,6365,5,7,7,38,46,4.45,5.0,fr,30219,127,1275468,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/07/6365 +-0.08803,45.47665,409,4,15,20,17,3,4.55,5.0,fr,30220,8,1275483,1,1,Active Shallow Crust,240.009,57.99732,0.0,04/15/0409 +-0.08803,45.47665,8362,2,12,2,30,28,5.35,5.0,fr,30221,167,1275576,1,2,Active Shallow Crust,0.0,89.99,0.0,02/12/8362 +-0.08803,45.47665,3714,7,15,18,4,3,5.35,5.0,fr,30222,74,1275576,1,2,Active Shallow Crust,0.0,89.99,0.0,07/15/3714 +-5.18916,47.8532,1044,3,9,15,51,47,3.55,5.0,fr,30223,20,1275849,1,1,Active Shallow Crust,128.8962,89.99323,0.0,03/09/1044 +-5.18916,47.8532,6997,7,2,2,12,33,3.65,27.5,fr,30224,139,1275854,1,1,Active Shallow Crust,0.0,89.98794,0.0,07/02/6997 +-5.18916,47.8532,8314,10,26,1,0,40,3.95,5.0,fr,30225,166,1275888,1,1,Active Shallow Crust,0.0,89.99146,0.0,10/26/8314 +-5.18916,47.8532,3972,12,20,15,5,43,3.95,27.5,fr,30226,79,1275893,1,1,Active Shallow Crust,240.0205,58.00432,0.0,12/20/3972 +-5.18916,47.8532,9519,7,15,16,52,15,4.45,5.0,fr,30227,190,1275957,1,1,Active Shallow Crust,128.8922,89.9928,0.0,07/15/9519 +-1.96434,49.63521,4905,11,18,14,38,4,3.75,5.0,fr,30228,98,1276344,1,1,Active Shallow Crust,0.0,89.98962,0.0,11/18/4905 +-1.96434,49.63521,9375,2,13,13,33,53,3.95,5.0,fr,30229,187,1276368,1,1,Active Shallow Crust,0.0,89.9897,0.0,02/13/9375 +-1.96434,49.63521,4296,7,16,0,15,22,4.45,15.0,fr,30230,85,1276429,1,1,Active Shallow Crust,0.0,89.99015,0.0,07/16/4296 +2.17852,50.50824,1822,6,15,6,25,45,3.65,5.0,fr,30231,36,1277292,1,2,Active Shallow Crust,0.0,89.99142,0.0,06/15/1822 +2.17852,50.50824,7492,10,11,22,12,54,3.65,5.0,fr,30232,149,1277292,1,2,Active Shallow Crust,0.0,89.99142,0.0,10/11/7492 +2.17852,50.50824,1016,4,3,11,3,31,4.45,5.0,fr,30233,20,1277388,1,1,Active Shallow Crust,0.0,89.98976,0.0,04/03/1016 +2.17852,50.50824,1339,11,29,17,35,39,4.45,15.0,fr,30234,26,1277389,1,1,Active Shallow Crust,0.0,89.98976,0.0,11/29/1339 +2.17852,50.50824,2727,5,10,19,9,54,5.75,5.0,fr,30235,54,1277553,1,1,Active Shallow Crust,128.8672,89.99097,0.0,05/10/2727 +-1.2048,47.54864,9320,12,17,7,9,23,3.55,5.0,fr,30236,186,1277760,1,3,Active Shallow Crust,0.0,89.98979,0.0,12/17/9320 +-1.2048,47.54864,9749,8,30,12,45,24,3.55,5.0,fr,30237,194,1277760,1,3,Active Shallow Crust,0.0,89.98979,0.0,08/30/9749 +-1.2048,47.54864,9204,5,8,5,26,46,3.55,5.0,fr,30238,184,1277760,1,3,Active Shallow Crust,0.0,89.98979,0.0,05/08/9204 +-1.2048,47.54864,1021,3,5,19,51,45,3.55,5.0,fr,30239,20,1277766,1,1,Active Shallow Crust,0.0,89.98967,-90.0,03/05/1021 +-1.2048,47.54864,8823,2,21,9,14,19,3.65,5.0,fr,30240,176,1277772,1,2,Active Shallow Crust,0.0,89.98939,0.0,02/21/8823 +-1.2048,47.54864,8553,6,8,12,34,16,3.65,5.0,fr,30241,171,1277772,1,2,Active Shallow Crust,0.0,89.98939,0.0,06/08/8553 +-1.2048,47.54864,8900,6,15,18,25,48,3.75,5.0,fr,30242,177,1277784,1,1,Active Shallow Crust,0.0,89.99054,0.0,06/15/8900 +-1.2048,47.54864,6719,7,31,1,33,6,3.75,15.0,fr,30243,134,1277791,1,1,Active Shallow Crust,0.0,89.99043,-90.0,07/31/6719 +-1.2048,47.54864,8940,8,11,12,26,18,3.85,5.0,fr,30244,178,1277796,1,1,Active Shallow Crust,0.0,89.99036,0.0,08/11/8940 +-1.2048,47.54864,3271,4,9,12,3,19,3.95,5.0,fr,30245,65,1277811,1,1,Active Shallow Crust,240.0198,58.00507,0.0,04/09/3271 +-1.2048,47.54864,6580,12,25,19,46,42,4.05,27.5,fr,30246,131,1277822,1,1,Active Shallow Crust,0.0,89.99043,0.0,12/25/6580 +-1.2048,47.54864,2138,8,26,19,11,44,4.25,15.0,fr,30247,42,1277845,1,1,Active Shallow Crust,0.0,89.99012,0.0,08/26/2138 +-1.2048,47.54864,2461,12,25,12,41,46,4.35,5.0,fr,30248,49,1277865,1,1,Active Shallow Crust,128.8976,89.98283,0.0,12/25/2461 +-1.2048,47.54864,1492,1,2,12,40,55,4.45,27.5,fr,30249,29,1277870,1,1,Active Shallow Crust,0.0,89.98974,0.0,01/02/1492 +-1.2048,47.54864,7641,6,7,11,56,31,4.55,5.0,fr,30250,152,1277883,1,1,Active Shallow Crust,240.0095,57.99742,0.0,06/07/7641 +-1.2048,47.54864,5484,6,16,16,22,58,4.85,5.0,fr,30251,109,1277916,1,1,Active Shallow Crust,0.0,89.9901,0.0,06/16/5484 +2.19743,49.86023,4212,3,7,23,41,42,3.55,5.0,fr,30252,84,1278240,1,1,Active Shallow Crust,0.0,89.99025,0.0,03/07/4212 +2.19743,49.86023,1047,9,4,7,29,55,3.65,27.5,fr,30253,20,1278257,1,1,Active Shallow Crust,240.0017,58.01284,0.0,09/04/1047 +2.19743,49.86023,6003,12,5,5,55,55,3.75,5.0,fr,30254,120,1278264,1,3,Active Shallow Crust,0.0,89.98967,0.0,12/05/6003 +2.19743,49.86023,7787,12,14,20,54,25,3.75,5.0,fr,30255,155,1278264,1,3,Active Shallow Crust,0.0,89.98967,0.0,12/14/7787 +2.19743,49.86023,5231,5,22,0,32,11,3.75,5.0,fr,30256,104,1278264,1,3,Active Shallow Crust,0.0,89.98967,0.0,05/22/5231 +2.19743,49.86023,9393,1,7,23,15,29,3.95,15.0,fr,30257,187,1278289,1,1,Active Shallow Crust,0.0,89.98975,0.0,01/07/9393 +2.19743,49.86023,9602,7,13,22,41,46,5.15,5.0,fr,30258,192,1278432,1,1,Active Shallow Crust,0.0,89.99021,0.0,07/13/9602 +-4.68003,48.04503,2405,10,18,15,27,41,3.55,5.0,fr,30259,48,1278720,1,1,Active Shallow Crust,0.0,89.99326,0.0,10/18/2405 +-4.68003,48.04503,6072,3,10,2,3,52,3.55,5.0,fr,30260,121,1278723,1,1,Active Shallow Crust,240.0123,57.99777,0.0,03/10/6072 +-4.68003,48.04503,2554,10,2,22,22,54,3.65,5.0,fr,30261,51,1278732,1,1,Active Shallow Crust,0.0,89.98798,0.0,10/02/2554 +-4.68003,48.04503,8910,10,31,22,54,37,3.65,15.0,fr,30262,178,1278733,1,1,Active Shallow Crust,0.0,89.98798,0.0,10/31/8910 +-4.68003,48.04503,6043,11,13,17,5,8,3.65,5.0,fr,30263,120,1278735,1,1,Active Shallow Crust,240.0025,58.01192,0.0,11/13/6043 +-4.68003,48.04503,161,4,2,9,16,13,3.75,5.0,fr,30264,3,1278747,1,1,Active Shallow Crust,240.0091,58.01733,0.0,04/02/0161 +-4.68003,48.04503,6678,6,29,11,53,36,3.85,5.0,fr,30265,133,1278756,1,2,Active Shallow Crust,0.0,89.99046,0.0,06/29/6678 +-4.68003,48.04503,7476,8,30,12,32,10,3.85,5.0,fr,30266,149,1278756,1,2,Active Shallow Crust,0.0,89.99046,0.0,08/30/7476 +-4.68003,48.04503,7475,4,15,18,59,11,4.05,5.0,fr,30267,149,1278780,1,1,Active Shallow Crust,0.0,89.98862,0.0,04/15/7475 +-4.68003,48.04503,3563,12,5,6,6,17,4.05,15.0,fr,30268,71,1278781,1,1,Active Shallow Crust,0.0,89.98862,0.0,12/05/3563 +0.40288,51.4782,3674,9,22,12,36,34,3.55,5.0,fr,30269,73,1279680,1,1,Active Shallow Crust,0.0,89.99019,0.0,09/22/3674 +0.40288,51.4782,1090,8,31,14,28,32,4.75,5.0,fr,30270,21,1279824,1,1,Active Shallow Crust,0.0,89.99004,0.0,08/31/1090 +6.47685,43.48839,5492,10,11,8,2,32,3.85,5.0,fr,30271,109,1280199,1,2,Active Shallow Crust,240.0103,57.99782,0.0,10/11/5492 +6.47685,43.48839,5391,10,31,11,18,32,3.85,5.0,fr,30272,107,1280199,1,2,Active Shallow Crust,240.0103,57.99782,0.0,10/31/5391 +6.47685,43.48839,8050,6,6,5,55,53,3.95,5.0,fr,30273,160,1280208,1,1,Active Shallow Crust,0.0,89.99077,0.0,06/06/8050 +6.47685,43.48839,4602,7,19,19,46,4,4.05,5.0,fr,30274,92,1280220,1,1,Active Shallow Crust,0.0,89.99177,0.0,07/19/4602 +7.51883,44.54132,878,8,28,9,29,24,3.55,5.0,fr,30275,17,1280640,1,3,Active Shallow Crust,0.0,89.99281,0.0,08/28/0878 +7.51883,44.54132,6005,2,15,19,40,5,3.55,5.0,fr,30276,120,1280640,1,3,Active Shallow Crust,0.0,89.99281,0.0,02/15/6005 +7.51883,44.54132,9261,5,4,11,37,27,3.55,5.0,fr,30277,185,1280640,1,3,Active Shallow Crust,0.0,89.99281,0.0,05/04/9261 +7.51883,44.54132,7348,7,7,23,50,44,3.55,15.0,fr,30278,146,1280641,1,4,Active Shallow Crust,0.0,89.99281,0.0,07/07/7348 +7.51883,44.54132,8410,8,23,7,31,34,3.55,15.0,fr,30279,168,1280641,1,4,Active Shallow Crust,0.0,89.99281,0.0,08/23/8410 +7.51883,44.54132,9422,5,31,8,4,10,3.55,15.0,fr,30280,188,1280641,1,4,Active Shallow Crust,0.0,89.99281,0.0,05/31/9422 +7.51883,44.54132,3321,3,22,3,17,14,3.55,15.0,fr,30281,66,1280641,1,4,Active Shallow Crust,0.0,89.99281,0.0,03/22/3321 +7.51883,44.54132,3424,6,17,20,47,58,3.55,5.0,fr,30282,68,1280643,1,1,Active Shallow Crust,240.0135,57.9973,0.0,06/17/3424 +7.51883,44.54132,9401,5,10,7,49,13,3.55,15.0,fr,30283,188,1280644,1,1,Active Shallow Crust,240.0135,57.9973,0.0,05/10/9401 +7.51883,44.54132,8201,8,22,23,20,32,3.55,15.0,fr,30284,164,1280647,1,1,Active Shallow Crust,0.0,89.99273,-90.0,08/22/8201 +7.51883,44.54132,3232,9,30,2,17,29,3.55,5.0,fr,30285,64,1280649,1,1,Active Shallow Crust,128.8957,89.99641,0.0,09/30/3232 +7.51883,44.54132,4844,9,29,20,50,17,3.55,15.0,fr,30286,96,1280650,1,2,Active Shallow Crust,128.8957,89.99641,0.0,09/29/4844 +7.51883,44.54132,7621,12,17,9,0,52,3.55,15.0,fr,30287,152,1280650,1,2,Active Shallow Crust,128.8957,89.99641,0.0,12/17/7621 +7.51883,44.54132,6600,12,11,17,12,52,3.65,5.0,fr,30288,131,1280652,1,9,Active Shallow Crust,0.0,89.98719,0.0,12/11/6600 +7.51883,44.54132,7800,6,21,5,59,43,3.65,5.0,fr,30289,155,1280652,1,9,Active Shallow Crust,0.0,89.98719,0.0,06/21/7800 +7.51883,44.54132,8145,4,22,4,39,58,3.65,5.0,fr,30290,162,1280652,1,9,Active Shallow Crust,0.0,89.98719,0.0,04/22/8145 +7.51883,44.54132,1318,4,16,23,11,31,3.65,5.0,fr,30291,26,1280652,1,9,Active Shallow Crust,0.0,89.98719,0.0,04/16/1318 +7.51883,44.54132,9312,9,7,17,40,5,3.65,5.0,fr,30292,186,1280652,1,9,Active Shallow Crust,0.0,89.98719,0.0,09/07/9312 +7.51883,44.54132,4478,4,8,22,25,56,3.65,5.0,fr,30293,89,1280652,1,9,Active Shallow Crust,0.0,89.98719,0.0,04/08/4478 +7.51883,44.54132,3130,8,16,4,35,40,3.65,5.0,fr,30294,62,1280652,1,9,Active Shallow Crust,0.0,89.98719,0.0,08/16/3130 +7.51883,44.54132,3184,9,16,20,19,5,3.65,5.0,fr,30295,63,1280652,1,9,Active Shallow Crust,0.0,89.98719,0.0,09/16/3184 +7.51883,44.54132,6591,5,25,20,14,7,3.65,5.0,fr,30296,131,1280652,1,9,Active Shallow Crust,0.0,89.98719,0.0,05/25/6591 +7.51883,44.54132,3042,6,22,20,47,6,3.65,15.0,fr,30297,60,1280653,1,2,Active Shallow Crust,0.0,89.98719,0.0,06/22/3042 +7.51883,44.54132,2715,3,27,15,57,40,3.65,15.0,fr,30298,54,1280653,1,2,Active Shallow Crust,0.0,89.98719,0.0,03/27/2715 +7.51883,44.54132,6961,12,23,0,57,16,3.65,5.0,fr,30299,139,1280655,1,3,Active Shallow Crust,240.0009,58.01271,0.0,12/23/6961 +7.51883,44.54132,1371,5,31,7,0,21,3.65,5.0,fr,30300,27,1280655,1,3,Active Shallow Crust,240.0009,58.01271,0.0,05/31/1371 +7.51883,44.54132,8091,5,4,1,45,32,3.65,5.0,fr,30301,161,1280655,1,3,Active Shallow Crust,240.0009,58.01271,0.0,05/04/8091 +7.51883,44.54132,1102,2,26,13,12,7,3.65,15.0,fr,30302,22,1280656,1,2,Active Shallow Crust,240.0009,58.01271,0.0,02/26/1102 +7.51883,44.54132,3238,10,7,22,24,38,3.65,15.0,fr,30303,64,1280656,1,2,Active Shallow Crust,240.0009,58.01271,0.0,10/07/3238 +7.51883,44.54132,7393,6,26,20,10,5,3.65,15.0,fr,30304,147,1280662,1,1,Active Shallow Crust,128.9001,89.96349,0.0,06/26/7393 +7.51883,44.54132,5762,9,17,3,48,2,3.75,5.0,fr,30305,115,1280664,1,5,Active Shallow Crust,0.0,89.98858,0.0,09/17/5762 +7.51883,44.54132,7618,11,3,17,26,58,3.75,5.0,fr,30306,152,1280664,1,5,Active Shallow Crust,0.0,89.98858,0.0,11/03/7618 +7.51883,44.54132,4740,7,17,10,49,22,3.75,5.0,fr,30307,94,1280664,1,5,Active Shallow Crust,0.0,89.98858,0.0,07/17/4740 +7.51883,44.54132,8805,8,11,19,16,36,3.75,5.0,fr,30308,176,1280664,1,5,Active Shallow Crust,0.0,89.98858,0.0,08/11/8805 +7.51883,44.54132,4048,2,8,21,21,47,3.75,5.0,fr,30309,80,1280664,1,5,Active Shallow Crust,0.0,89.98858,0.0,02/08/4048 +7.51883,44.54132,3857,11,19,20,55,59,3.75,15.0,fr,30310,77,1280665,1,2,Active Shallow Crust,0.0,89.98858,0.0,11/19/3857 +7.51883,44.54132,1113,9,7,18,28,0,3.75,15.0,fr,30311,22,1280665,1,2,Active Shallow Crust,0.0,89.98858,0.0,09/07/1113 +7.51883,44.54132,5496,3,18,14,53,49,3.75,5.0,fr,30312,109,1280667,1,2,Active Shallow Crust,240.0076,58.01778,0.0,03/18/5496 +7.51883,44.54132,5965,10,28,2,46,28,3.75,5.0,fr,30313,119,1280667,1,2,Active Shallow Crust,240.0076,58.01778,0.0,10/28/5965 +7.51883,44.54132,2855,5,28,12,37,14,3.75,5.0,fr,30314,57,1280670,1,1,Active Shallow Crust,0.0,89.98845,-90.0,05/28/2855 +7.51883,44.54132,5989,7,21,4,11,27,3.75,15.0,fr,30315,119,1280671,1,1,Active Shallow Crust,0.0,89.98845,-90.0,07/21/5989 +7.51883,44.54132,4515,4,15,3,38,36,3.75,5.0,fr,30316,90,1280673,1,1,Active Shallow Crust,128.8961,89.96746,0.0,04/15/4515 +7.51883,44.54132,4603,7,19,14,43,6,3.85,5.0,fr,30317,92,1280676,1,3,Active Shallow Crust,0.0,89.98982,0.0,07/19/4603 +7.51883,44.54132,5935,8,26,23,43,42,3.85,5.0,fr,30318,118,1280676,1,3,Active Shallow Crust,0.0,89.98982,0.0,08/26/5935 +7.51883,44.54132,4731,10,3,0,40,44,3.85,5.0,fr,30319,94,1280676,1,3,Active Shallow Crust,0.0,89.98982,0.0,10/03/4731 +7.51883,44.54132,7512,10,30,9,52,10,3.95,5.0,fr,30320,150,1280688,1,1,Active Shallow Crust,0.0,89.99093,0.0,10/30/7512 +7.51883,44.54132,5416,4,16,2,9,40,3.95,15.0,fr,30321,108,1280689,1,1,Active Shallow Crust,0.0,89.99093,0.0,04/16/5416 +7.51883,44.54132,5374,5,15,4,44,50,4.05,5.0,fr,30322,107,1280700,1,2,Active Shallow Crust,0.0,89.99191,0.0,05/15/5374 +7.51883,44.54132,4247,11,5,19,31,42,4.05,5.0,fr,30323,84,1280700,1,2,Active Shallow Crust,0.0,89.99191,0.0,11/05/4247 +7.51883,44.54132,2363,3,14,15,11,9,4.05,27.5,fr,30324,47,1280702,1,1,Active Shallow Crust,0.0,89.99191,0.0,03/14/2363 +7.51883,44.54132,9485,5,24,12,1,57,4.05,5.0,fr,30325,189,1280703,1,2,Active Shallow Crust,240.0062,58.00576,0.0,05/24/9485 +7.51883,44.54132,5871,8,2,16,47,4,4.05,5.0,fr,30326,117,1280703,1,2,Active Shallow Crust,240.0062,58.00576,0.0,08/02/5871 +7.51883,44.54132,2698,3,27,4,1,8,4.15,5.0,fr,30327,53,1280712,1,2,Active Shallow Crust,0.0,89.9892,0.0,03/27/2698 +7.51883,44.54132,9470,5,4,16,50,56,4.15,5.0,fr,30328,189,1280712,1,2,Active Shallow Crust,0.0,89.9892,0.0,05/04/9470 +7.51883,44.54132,2637,10,20,12,18,29,4.15,5.0,fr,30329,52,1280718,1,1,Active Shallow Crust,0.0,89.98907,-90.0,10/20/2637 +7.51883,44.54132,3546,1,13,7,39,34,4.25,5.0,fr,30330,70,1280724,1,2,Active Shallow Crust,0.0,89.99037,0.0,01/13/3546 +7.51883,44.54132,3172,2,16,14,53,13,4.25,5.0,fr,30331,63,1280724,1,2,Active Shallow Crust,0.0,89.99037,0.0,02/16/3172 +7.51883,44.54132,3655,3,31,11,50,20,4.25,15.0,fr,30332,73,1280728,1,1,Active Shallow Crust,240.0079,57.99389,0.0,03/31/3655 +7.51883,44.54132,6171,1,30,5,35,54,4.35,5.0,fr,30333,123,1280736,1,1,Active Shallow Crust,0.0,89.99142,0.0,01/30/6171 +7.51883,44.54132,4200,11,12,6,45,24,4.35,15.0,fr,30334,83,1280737,1,1,Active Shallow Crust,0.0,89.99142,0.0,11/12/4200 +7.51883,44.54132,8490,12,27,12,5,45,4.35,5.0,fr,30335,169,1280742,1,1,Active Shallow Crust,0.0,89.99132,-90.0,12/27/8490 +7.51883,44.54132,1561,11,5,23,14,20,4.45,15.0,fr,30336,31,1280752,1,1,Active Shallow Crust,240.005,57.99466,0.0,11/05/1561 +7.51883,44.54132,8389,9,22,16,5,46,4.55,5.0,fr,30337,167,1280763,1,2,Active Shallow Crust,240.0088,57.99704,0.0,09/22/8389 +7.51883,44.54132,9371,9,25,17,53,43,4.55,5.0,fr,30338,187,1280763,1,2,Active Shallow Crust,240.0088,57.99704,0.0,09/25/9371 +7.51883,44.54132,3851,5,21,17,42,27,4.65,5.0,fr,30339,77,1280772,1,1,Active Shallow Crust,0.0,89.98987,0.0,05/21/3851 +7.51883,44.54132,4708,4,12,2,1,28,4.65,5.0,fr,30340,94,1280778,1,1,Active Shallow Crust,0.0,89.98975,-90.0,04/12/4708 +7.51883,44.54132,3279,5,26,4,37,49,4.75,5.0,fr,30341,65,1280784,1,2,Active Shallow Crust,0.0,89.98917,0.0,05/26/3279 +7.51883,44.54132,9734,4,8,12,56,12,4.75,5.0,fr,30342,194,1280784,1,2,Active Shallow Crust,0.0,89.98917,0.0,04/08/9734 +7.51883,44.54132,3398,12,5,12,39,19,4.75,5.0,fr,30343,67,1280787,1,1,Active Shallow Crust,240.0068,58.00418,0.0,12/05/3398 +7.51883,44.54132,9965,5,3,5,12,52,4.85,5.0,fr,30344,199,1280799,1,1,Active Shallow Crust,240.0165,58.00214,0.0,05/03/9965 +4.92484,49.6207,6286,7,22,12,21,17,3.75,15.0,fr,30345,125,1281145,1,1,Active Shallow Crust,0.0,89.98962,0.0,07/22/6286 +4.92484,49.6207,3522,11,13,14,58,20,4.25,5.0,fr,30346,70,1281204,1,1,Active Shallow Crust,0.0,89.99124,0.0,11/13/3522 +-5.29052,48.52756,8476,8,4,18,12,21,3.55,15.0,fr,30347,169,1281601,1,2,Active Shallow Crust,0.0,89.99332,0.0,08/04/8476 +-5.29052,48.52756,2754,2,21,5,37,39,3.55,15.0,fr,30348,55,1281601,1,2,Active Shallow Crust,0.0,89.99332,0.0,02/21/2754 +-5.29052,48.52756,8302,4,8,5,59,5,3.55,5.0,fr,30349,166,1281606,1,1,Active Shallow Crust,0.0,89.99325,-90.0,04/08/8302 +-5.29052,48.52756,4027,8,27,9,13,10,3.75,5.0,fr,30350,80,1281624,1,1,Active Shallow Crust,0.0,89.98939,0.0,08/27/4027 +-5.29052,48.52756,1567,7,27,2,55,20,3.75,5.0,fr,30351,31,1281630,1,1,Active Shallow Crust,0.0,89.98927,-90.0,07/27/1567 +-5.29052,48.52756,3061,9,4,19,41,49,3.85,27.5,fr,30352,61,1281638,1,1,Active Shallow Crust,0.0,89.99055,0.0,09/04/3061 +-5.29052,48.52756,2483,5,7,19,59,3,4.15,5.0,fr,30353,49,1281672,1,1,Active Shallow Crust,0.0,89.98996,0.0,05/07/2483 +-5.29052,48.52756,4406,6,3,16,53,36,4.25,15.0,fr,30354,88,1281685,1,1,Active Shallow Crust,0.0,89.99105,0.0,06/03/4406 +-5.29052,48.52756,370,11,4,12,13,59,4.45,5.0,fr,30355,7,1281711,1,1,Active Shallow Crust,240.0058,57.99498,0.0,11/04/0370 +-5.29052,48.52756,8299,8,24,15,16,19,4.55,5.0,fr,30356,165,1281720,1,1,Active Shallow Crust,0.0,89.98944,0.0,08/24/8299 +3.29125,46.97998,6069,12,8,16,45,59,3.55,5.0,fr,30357,121,1282080,1,1,Active Shallow Crust,0.0,89.98968,0.0,12/08/6069 +-3.43834,48.43939,2553,11,13,3,19,20,3.55,15.0,fr,30358,51,1282561,1,3,Active Shallow Crust,0.0,89.98997,0.0,11/13/2553 +-3.43834,48.43939,34,5,13,7,2,59,3.55,15.0,fr,30359,0,1282561,1,3,Active Shallow Crust,0.0,89.98997,0.0,05/13/0034 +-3.43834,48.43939,7163,9,9,8,41,14,3.55,15.0,fr,30360,143,1282561,1,3,Active Shallow Crust,0.0,89.98997,0.0,09/09/7163 +-3.43834,48.43939,8068,4,20,21,56,43,3.55,27.5,fr,30361,161,1282562,1,1,Active Shallow Crust,0.0,89.98997,0.0,04/20/8068 +-3.43834,48.43939,4558,8,26,11,26,8,3.65,5.0,fr,30362,91,1282572,1,1,Active Shallow Crust,0.0,89.99106,0.0,08/26/4558 +-3.43834,48.43939,3385,12,20,11,4,33,3.65,15.0,fr,30363,67,1282573,1,1,Active Shallow Crust,0.0,89.99106,0.0,12/20/3385 +-3.43834,48.43939,681,3,5,18,52,40,3.65,27.5,fr,30364,13,1282583,1,1,Active Shallow Crust,128.8995,89.96356,0.0,03/05/0681 +-3.43834,48.43939,2723,5,14,0,58,37,3.75,15.0,fr,30365,54,1282585,1,1,Active Shallow Crust,0.0,89.98937,0.0,05/14/2723 +-3.43834,48.43939,3456,8,5,3,26,4,3.75,5.0,fr,30366,69,1282587,1,1,Active Shallow Crust,240.0086,58.01776,0.0,08/05/3456 +-3.43834,48.43939,3086,10,3,1,36,21,3.75,5.0,fr,30367,61,1282590,1,2,Active Shallow Crust,0.0,89.98925,-90.0,10/03/3086 +-3.43834,48.43939,9248,12,1,6,55,17,3.75,5.0,fr,30368,184,1282590,1,2,Active Shallow Crust,0.0,89.98925,-90.0,12/01/9248 +-3.43834,48.43939,465,7,10,2,24,44,3.85,5.0,fr,30369,9,1282596,1,3,Active Shallow Crust,0.0,89.99052,0.0,07/10/0465 +-3.43834,48.43939,9070,1,15,7,5,22,3.85,5.0,fr,30370,181,1282596,1,3,Active Shallow Crust,0.0,89.99052,0.0,01/15/9070 +-3.43834,48.43939,9860,12,17,8,1,33,3.85,5.0,fr,30371,197,1282596,1,3,Active Shallow Crust,0.0,89.99052,0.0,12/17/9860 +-3.43834,48.43939,6652,4,12,19,36,47,3.85,5.0,fr,30372,133,1282599,1,1,Active Shallow Crust,240.0114,57.9976,0.0,04/12/6652 +-3.43834,48.43939,9248,2,14,20,39,26,3.85,15.0,fr,30373,184,1282600,1,2,Active Shallow Crust,240.0114,57.9976,0.0,02/14/9248 +-3.43834,48.43939,6683,2,24,20,14,0,3.85,15.0,fr,30374,133,1282600,1,2,Active Shallow Crust,240.0114,57.9976,0.0,02/24/6683 +-3.43834,48.43939,9081,7,4,23,9,10,3.85,5.0,fr,30375,181,1282602,1,1,Active Shallow Crust,0.0,89.99042,-90.0,07/04/9081 +-3.43834,48.43939,6326,12,29,0,21,24,3.85,5.0,fr,30376,126,1282605,1,1,Active Shallow Crust,128.8957,89.9929,0.0,12/29/6326 +-3.43834,48.43939,4871,12,11,21,9,12,3.95,15.0,fr,30377,97,1282609,1,1,Active Shallow Crust,0.0,89.98945,0.0,12/11/4871 +-3.43834,48.43939,1370,3,26,10,50,40,3.95,5.0,fr,30378,27,1282611,1,1,Active Shallow Crust,240.02,58.00495,0.0,03/26/1370 +-3.43834,48.43939,7318,3,15,1,35,12,4.05,5.0,fr,30379,146,1282623,1,1,Active Shallow Crust,240.006,58.00589,0.0,03/15/7318 +-3.43834,48.43939,9011,6,14,8,29,52,4.05,5.0,fr,30380,180,1282626,1,1,Active Shallow Crust,0.0,89.99049,-90.0,06/14/9011 +-3.43834,48.43939,7179,6,27,6,21,52,4.25,5.0,fr,30381,143,1282644,1,1,Active Shallow Crust,0.0,89.98954,0.0,06/27/7179 +-3.43834,48.43939,2745,1,18,14,1,36,4.25,15.0,fr,30382,54,1282645,1,1,Active Shallow Crust,0.0,89.98954,0.0,01/18/2745 +-3.43834,48.43939,7986,1,22,15,33,20,4.55,5.0,fr,30383,159,1282680,1,1,Active Shallow Crust,0.0,89.99048,0.0,01/22/7986 +-3.43834,48.43939,2208,11,9,11,27,12,4.65,5.0,fr,30384,44,1282692,1,1,Active Shallow Crust,0.0,89.98963,0.0,11/09/2208 +-3.43834,48.43939,5447,6,15,9,3,47,4.75,5.0,fr,30385,108,1282704,1,1,Active Shallow Crust,0.0,89.98991,0.0,06/15/5447 +-3.43834,48.43939,1268,7,21,8,59,38,4.95,5.0,fr,30386,25,1282731,1,1,Active Shallow Crust,240.0129,58.00459,0.0,07/21/1268 +2.96952,52.70206,9040,9,3,15,50,18,3.85,5.0,fr,30387,180,1283556,1,1,Active Shallow Crust,0.0,89.98918,0.0,09/03/9040 +1.04406,52.14709,486,4,20,11,48,28,3.55,5.0,fr,30388,9,1284009,1,1,Active Shallow Crust,128.8954,89.99381,0.0,04/20/0486 +1.04406,52.14709,7620,10,31,9,20,16,3.85,5.0,fr,30389,152,1284036,1,1,Active Shallow Crust,0.0,89.99014,0.0,10/31/7620 +1.04406,52.14709,7283,6,13,19,44,28,4.15,5.0,fr,30390,145,1284072,1,1,Active Shallow Crust,0.0,89.98992,0.0,06/13/7283 +1.04406,52.14709,9155,12,2,20,16,14,4.85,15.0,fr,30391,183,1284163,1,1,Active Shallow Crust,0.0,89.98984,-90.0,12/02/9155 +1.04406,52.14709,9042,3,15,12,40,53,6.85,15.0,fr,30392,180,1284397,1,1,Active Shallow Crust,360.0,89.99,0.0,03/15/9042 +6.94956,43.94473,5600,11,14,12,19,36,3.55,5.0,fr,30393,111,1284483,1,1,Active Shallow Crust,240.0123,57.99786,0.0,11/14/5600 +6.94956,43.94473,266,4,7,22,59,45,3.55,15.0,fr,30394,5,1284484,1,1,Active Shallow Crust,240.0123,57.99786,0.0,04/07/0266 +6.94956,43.94473,889,9,29,18,53,47,3.65,5.0,fr,30395,17,1284495,1,1,Active Shallow Crust,240.0014,58.01294,0.0,09/29/0889 +6.94956,43.94473,1134,1,4,12,43,23,3.75,5.0,fr,30396,22,1284504,1,1,Active Shallow Crust,0.0,89.98846,0.0,01/04/1134 +6.94956,43.94473,9584,5,4,23,31,40,3.75,5.0,fr,30397,191,1284510,1,1,Active Shallow Crust,0.0,89.98833,-90.0,05/04/9584 +6.94956,43.94473,373,11,24,22,39,27,3.85,5.0,fr,30398,7,1284516,1,2,Active Shallow Crust,0.0,89.98972,0.0,11/24/0373 +6.94956,43.94473,2946,7,10,21,42,48,3.85,5.0,fr,30399,58,1284516,1,2,Active Shallow Crust,0.0,89.98972,0.0,07/10/2946 +6.94956,43.94473,1750,3,21,23,8,23,3.95,5.0,fr,30400,34,1284528,1,1,Active Shallow Crust,0.0,89.99084,0.0,03/21/1750 +6.94956,43.94473,2042,2,19,17,48,12,3.95,15.0,fr,30401,40,1284529,1,1,Active Shallow Crust,0.0,89.99084,0.0,02/19/2042 +6.94956,43.94473,5871,11,13,20,2,49,4.05,5.0,fr,30402,117,1284540,1,1,Active Shallow Crust,0.0,89.99184,0.0,11/13/5871 +6.94956,43.94473,3280,2,28,12,32,5,4.15,5.0,fr,30403,65,1284552,1,1,Active Shallow Crust,0.0,89.98908,0.0,02/28/3280 +6.14296,43.58094,2057,1,6,8,45,55,3.55,5.0,fr,30404,41,1284960,1,1,Active Shallow Crust,0.0,89.9927,0.0,01/06/2057 +6.14296,43.58094,4378,5,8,23,51,9,3.55,15.0,fr,30405,87,1284961,1,1,Active Shallow Crust,0.0,89.9927,0.0,05/08/4378 +6.14296,43.58094,9825,3,10,16,43,15,3.55,27.5,fr,30406,196,1284962,1,1,Active Shallow Crust,0.0,89.9927,0.0,03/10/9825 +6.14296,43.58094,8240,11,17,9,38,29,3.55,15.0,fr,30407,164,1284964,1,1,Active Shallow Crust,240.012,57.99886,0.0,11/17/8240 +6.14296,43.58094,1445,12,9,14,53,36,3.65,5.0,fr,30408,28,1284972,1,1,Active Shallow Crust,0.0,89.98698,0.0,12/09/1445 +6.14296,43.58094,6751,7,14,7,51,14,3.65,15.0,fr,30409,135,1284973,1,1,Active Shallow Crust,0.0,89.98698,0.0,07/14/6751 +6.14296,43.58094,2982,1,29,17,35,9,3.85,27.5,fr,30410,59,1285001,1,2,Active Shallow Crust,240.0097,57.99782,0.0,01/29/2982 +6.14296,43.58094,9651,9,20,13,13,10,3.85,27.5,fr,30411,193,1285001,1,2,Active Shallow Crust,240.0097,57.99782,0.0,09/20/9651 +6.14296,43.58094,8015,2,5,15,6,57,3.95,5.0,fr,30412,160,1285008,1,1,Active Shallow Crust,0.0,89.99078,0.0,02/05/8015 +6.14296,43.58094,6237,8,26,6,43,36,4.05,27.5,fr,30413,124,1285022,1,1,Active Shallow Crust,0.0,89.99178,0.0,08/26/6237 +6.14296,43.58094,7072,10,3,16,41,43,4.85,15.0,fr,30414,141,1285120,1,1,Active Shallow Crust,240.0158,58.00226,0.0,10/03/7072 +6.142962,43.58094,9904,4,9,13,27,9,6.15,6.011322,fr,30415,198,1285272,1,1,Active Shallow Crust,0.0,89.98992,0.0,04/09/9904 +3.53578,40.94273,8340,6,29,2,14,55,3.55,5.0,fr,30416,166,1285440,1,2,Active Shallow Crust,0.0,89.98857,0.0,06/29/8340 +3.53578,40.94273,1359,9,12,22,55,22,3.55,5.0,fr,30417,27,1285440,1,2,Active Shallow Crust,0.0,89.98857,0.0,09/12/1359 +3.53578,40.94273,782,7,22,9,49,13,3.75,5.0,fr,30418,15,1285464,1,2,Active Shallow Crust,0.0,89.99092,0.0,07/22/0782 +3.53578,40.94273,3693,8,31,0,29,53,3.75,5.0,fr,30419,73,1285464,1,2,Active Shallow Crust,0.0,89.99092,0.0,08/31/3693 +3.53578,40.94273,8061,7,31,10,26,9,3.75,27.5,fr,30420,161,1285466,1,1,Active Shallow Crust,0.0,89.99092,0.0,07/31/8061 +3.53578,40.94273,7696,2,1,8,2,35,3.85,15.0,fr,30421,153,1285477,1,1,Active Shallow Crust,0.0,89.98921,0.0,02/01/7696 +3.53578,40.94273,8505,9,25,3,9,7,4.15,5.0,fr,30422,170,1285518,1,1,Active Shallow Crust,0.0,89.99035,-90.0,09/25/8505 +6.12834,48.64973,8157,1,11,4,37,25,3.55,5.0,fr,30423,163,1285920,1,1,Active Shallow Crust,0.0,89.98668,0.0,01/11/8157 +6.12834,48.64973,9931,2,5,18,16,1,3.65,15.0,fr,30424,198,1285933,1,1,Active Shallow Crust,0.0,89.98812,0.0,02/05/9931 +6.12834,48.64973,7164,3,19,10,43,31,3.75,15.0,fr,30425,143,1285945,1,1,Active Shallow Crust,0.0,89.98942,0.0,03/19/7164 +6.12834,48.64973,3852,3,4,5,21,38,3.85,5.0,fr,30426,77,1285956,1,1,Active Shallow Crust,0.0,89.99057,0.0,03/04/3852 +6.12834,48.64973,9849,10,12,22,16,22,3.95,5.0,fr,30427,196,1285968,1,1,Active Shallow Crust,0.0,89.99159,0.0,10/12/9849 +0.70104,50.18962,9059,4,16,23,56,30,3.55,5.0,fr,30428,181,1286400,1,1,Active Shallow Crust,0.0,89.99032,0.0,04/16/9059 +0.70104,50.18962,6325,5,16,11,28,38,3.65,5.0,fr,30429,126,1286412,1,1,Active Shallow Crust,0.0,89.98993,0.0,05/16/6325 +0.70104,50.18962,6750,6,21,12,44,27,3.65,15.0,fr,30430,134,1286416,1,1,Active Shallow Crust,240.0016,58.013,0.0,06/21/6750 +0.70104,50.18962,9657,1,1,16,35,23,3.75,15.0,fr,30431,193,1286425,1,1,Active Shallow Crust,0.0,89.98975,0.0,01/01/9657 +0.70104,50.18962,5003,8,26,0,29,34,3.75,5.0,fr,30432,100,1286427,1,1,Active Shallow Crust,240.0088,58.01773,0.0,08/26/5003 +0.70104,50.18962,511,6,3,21,31,49,3.95,5.0,fr,30433,10,1286448,1,2,Active Shallow Crust,0.0,89.98981,0.0,06/03/0511 +0.70104,50.18962,4124,10,23,5,23,2,3.95,5.0,fr,30434,82,1286448,1,2,Active Shallow Crust,0.0,89.98981,0.0,10/23/4124 +0.70104,50.18962,2916,9,25,16,1,25,3.95,15.0,fr,30435,58,1286458,1,1,Active Shallow Crust,128.8998,89.99364,0.0,09/25/2916 +0.70104,50.18962,7530,5,22,23,37,54,4.25,5.0,fr,30436,150,1286484,1,1,Active Shallow Crust,0.0,89.98991,0.0,05/22/7530 +0.70104,50.18962,7481,7,20,9,47,40,4.55,27.5,fr,30437,149,1286522,1,1,Active Shallow Crust,0.0,89.99004,0.0,07/20/7481 +0.70104,50.18962,6576,11,15,6,6,55,4.55,15.0,fr,30438,131,1286527,1,1,Active Shallow Crust,0.0,89.98993,-90.0,11/15/6576 +0.70104,50.18962,6466,4,20,15,51,13,5.25,5.0,fr,30439,129,1286607,1,1,Active Shallow Crust,240.0281,58.00074,0.0,04/20/6466 +0.18114,50.03295,2414,6,25,6,11,3,3.65,5.0,fr,30440,48,1286895,1,1,Active Shallow Crust,240.0015,58.01299,0.0,06/25/2414 +0.18114,50.03295,7053,6,17,12,19,18,3.65,5.0,fr,30441,141,1286898,1,1,Active Shallow Crust,0.0,89.98996,-90.0,06/17/7053 +0.18114,50.03295,1673,4,22,3,53,43,3.75,27.5,fr,30442,33,1286909,1,1,Active Shallow Crust,240.0088,58.01763,0.0,04/22/1673 +0.18114,50.03295,1285,6,4,14,3,16,3.85,5.0,fr,30443,25,1286916,1,1,Active Shallow Crust,0.0,89.98997,0.0,06/04/1285 +0.18114,50.03295,8378,8,3,20,40,8,3.95,15.0,fr,30444,167,1286929,1,1,Active Shallow Crust,0.0,89.99004,0.0,08/03/8378 +0.18114,50.03295,4397,11,11,23,40,36,4.25,5.0,fr,30445,87,1286964,1,1,Active Shallow Crust,0.0,89.98996,0.0,11/11/4397 +0.18114,50.03295,3228,5,1,15,41,4,4.75,15.0,fr,30446,64,1287025,1,1,Active Shallow Crust,0.0,89.98998,0.0,05/01/3228 +4.07008,49.87292,14,2,5,8,52,29,3.55,15.0,fr,30447,0,1287361,1,1,Active Shallow Crust,0.0,89.987,0.0,02/05/0014 +4.07008,49.87292,7697,9,4,3,50,58,3.65,27.5,fr,30448,153,1287374,1,1,Active Shallow Crust,0.0,89.98842,0.0,09/04/7697 +4.07008,49.87292,7576,11,26,15,1,27,3.65,5.0,fr,30449,151,1287378,1,1,Active Shallow Crust,0.0,89.98828,-90.0,11/26/7576 +4.07008,49.87292,7262,4,20,9,37,55,3.75,27.5,fr,30450,145,1287386,1,1,Active Shallow Crust,0.0,89.98968,0.0,04/20/7262 +4.07008,49.87292,7868,4,8,9,29,32,3.85,5.0,fr,30451,157,1287396,1,1,Active Shallow Crust,0.0,89.9908,0.0,04/08/7868 +4.07008,49.87292,2645,11,11,8,3,25,4.25,5.0,fr,30452,52,1287444,1,1,Active Shallow Crust,0.0,89.99129,0.0,11/11/2645 +4.07008,49.87292,3275,7,11,18,19,1,4.65,15.0,fr,30453,65,1287493,1,1,Active Shallow Crust,0.0,89.99084,0.0,07/11/3275 +8.94615,48.20719,3367,10,18,19,24,19,3.55,5.0,fr,30454,67,1287840,1,8,Active Shallow Crust,0.0,89.98656,0.0,10/18/3367 +8.94615,48.20719,9053,10,27,12,57,15,3.55,5.0,fr,30455,181,1287840,1,8,Active Shallow Crust,0.0,89.98656,0.0,10/27/9053 +8.94615,48.20719,1817,6,10,13,36,35,3.55,5.0,fr,30456,36,1287840,1,8,Active Shallow Crust,0.0,89.98656,0.0,06/10/1817 +8.94615,48.20719,4453,4,27,4,29,17,3.55,5.0,fr,30457,89,1287840,1,8,Active Shallow Crust,0.0,89.98656,0.0,04/27/4453 +8.94615,48.20719,8968,6,30,5,34,42,3.55,5.0,fr,30458,179,1287840,1,8,Active Shallow Crust,0.0,89.98656,0.0,06/30/8968 +8.94615,48.20719,6546,3,26,9,9,2,3.55,5.0,fr,30459,130,1287840,1,8,Active Shallow Crust,0.0,89.98656,0.0,03/26/6546 +8.94615,48.20719,2578,7,13,5,12,38,3.55,5.0,fr,30460,51,1287840,1,8,Active Shallow Crust,0.0,89.98656,0.0,07/13/2578 +8.94615,48.20719,9856,6,20,9,3,8,3.55,5.0,fr,30461,197,1287840,1,8,Active Shallow Crust,0.0,89.98656,0.0,06/20/9856 +8.94615,48.20719,5360,3,16,0,21,16,3.55,15.0,fr,30462,107,1287841,1,6,Active Shallow Crust,0.0,89.98656,0.0,03/16/5360 +8.94615,48.20719,3531,1,27,15,42,42,3.55,15.0,fr,30463,70,1287841,1,6,Active Shallow Crust,0.0,89.98656,0.0,01/27/3531 +8.94615,48.20719,2158,12,17,19,10,14,3.55,15.0,fr,30464,43,1287841,1,6,Active Shallow Crust,0.0,89.98656,0.0,12/17/2158 +8.94615,48.20719,1799,10,18,6,36,13,3.55,15.0,fr,30465,35,1287841,1,6,Active Shallow Crust,0.0,89.98656,0.0,10/18/1799 +8.94615,48.20719,494,5,26,7,13,24,3.55,15.0,fr,30466,9,1287841,1,6,Active Shallow Crust,0.0,89.98656,0.0,05/26/0494 +8.94615,48.20719,362,10,26,13,41,38,3.55,15.0,fr,30467,7,1287841,1,6,Active Shallow Crust,0.0,89.98656,0.0,10/26/0362 +8.94615,48.20719,6909,2,3,7,9,51,3.55,27.5,fr,30468,138,1287842,1,1,Active Shallow Crust,0.0,89.98656,0.0,02/03/6909 +8.94615,48.20719,903,7,28,21,23,39,3.55,5.0,fr,30469,18,1287843,1,5,Active Shallow Crust,240.0131,57.99812,0.0,07/28/0903 +8.94615,48.20719,7796,7,1,2,30,58,3.55,5.0,fr,30470,155,1287843,1,5,Active Shallow Crust,240.0131,57.99812,0.0,07/01/7796 +8.94615,48.20719,361,4,2,3,57,45,3.55,5.0,fr,30471,7,1287843,1,5,Active Shallow Crust,240.0131,57.99812,0.0,04/02/0361 +8.94615,48.20719,7231,6,23,19,58,48,3.55,5.0,fr,30472,144,1287843,1,5,Active Shallow Crust,240.0131,57.99812,0.0,06/23/7231 +8.94615,48.20719,6553,1,26,12,28,56,3.55,5.0,fr,30473,131,1287843,1,5,Active Shallow Crust,240.0131,57.99812,0.0,01/26/6553 +8.94615,48.20719,5335,2,26,5,56,35,3.55,5.0,fr,30474,106,1287846,1,3,Active Shallow Crust,0.0,89.9864,-90.0,02/26/5335 +8.94615,48.20719,5915,6,6,3,18,10,3.55,5.0,fr,30475,118,1287846,1,3,Active Shallow Crust,0.0,89.9864,-90.0,06/06/5915 +8.94615,48.20719,3417,2,18,20,46,51,3.55,5.0,fr,30476,68,1287846,1,3,Active Shallow Crust,0.0,89.9864,-90.0,02/18/3417 +8.94615,48.20719,6891,12,17,21,37,23,3.55,15.0,fr,30477,137,1287847,1,1,Active Shallow Crust,0.0,89.9864,-90.0,12/17/6891 +8.94615,48.20719,9078,12,26,10,58,36,3.55,5.0,fr,30478,181,1287849,1,1,Active Shallow Crust,128.8979,89.99328,0.0,12/26/9078 +8.94615,48.20719,7740,11,14,18,1,52,3.55,15.0,fr,30479,154,1287850,1,1,Active Shallow Crust,128.8979,89.99328,0.0,11/14/7740 +8.94615,48.20719,9190,4,25,18,24,18,3.55,27.5,fr,30480,183,1287851,1,1,Active Shallow Crust,128.8979,89.99328,0.0,04/25/9190 +8.94615,48.20719,9327,4,17,22,21,33,3.65,5.0,fr,30481,186,1287852,1,10,Active Shallow Crust,0.0,89.98802,0.0,04/17/9327 +8.94615,48.20719,7407,10,26,16,0,16,3.65,5.0,fr,30482,148,1287852,1,10,Active Shallow Crust,0.0,89.98802,0.0,10/26/7407 +8.94615,48.20719,2400,9,21,3,7,6,3.65,5.0,fr,30483,47,1287852,1,10,Active Shallow Crust,0.0,89.98802,0.0,09/21/2400 +8.94615,48.20719,5818,10,25,18,51,1,3.65,5.0,fr,30484,116,1287852,1,10,Active Shallow Crust,0.0,89.98802,0.0,10/25/5818 +8.94615,48.20719,8205,7,29,20,40,9,3.65,5.0,fr,30485,164,1287852,1,10,Active Shallow Crust,0.0,89.98802,0.0,07/29/8205 +8.94615,48.20719,9831,7,9,17,38,28,3.65,5.0,fr,30486,196,1287852,1,10,Active Shallow Crust,0.0,89.98802,0.0,07/09/9831 +8.94615,48.20719,7420,12,22,9,1,0,3.65,5.0,fr,30487,148,1287852,1,10,Active Shallow Crust,0.0,89.98802,0.0,12/22/7420 +8.94615,48.20719,7476,11,19,8,35,18,3.65,5.0,fr,30488,149,1287852,1,10,Active Shallow Crust,0.0,89.98802,0.0,11/19/7476 +8.94615,48.20719,5645,1,2,4,8,18,3.65,5.0,fr,30489,112,1287852,1,10,Active Shallow Crust,0.0,89.98802,0.0,01/02/5645 +8.94615,48.20719,2296,11,3,13,52,58,3.65,5.0,fr,30490,45,1287852,1,10,Active Shallow Crust,0.0,89.98802,0.0,11/03/2296 +8.94615,48.20719,6104,5,16,9,27,28,3.65,15.0,fr,30491,122,1287853,1,4,Active Shallow Crust,0.0,89.98802,0.0,05/16/6104 +8.94615,48.20719,2578,3,16,3,6,59,3.65,15.0,fr,30492,51,1287853,1,4,Active Shallow Crust,0.0,89.98802,0.0,03/16/2578 +8.94615,48.20719,5638,3,1,19,59,55,3.65,15.0,fr,30493,112,1287853,1,4,Active Shallow Crust,0.0,89.98802,0.0,03/01/5638 +8.94615,48.20719,938,6,19,22,13,13,3.65,15.0,fr,30494,18,1287853,1,4,Active Shallow Crust,0.0,89.98802,0.0,06/19/0938 +8.94615,48.20719,8293,4,18,3,45,31,3.65,27.5,fr,30495,165,1287854,1,2,Active Shallow Crust,0.0,89.98802,0.0,04/18/8293 +8.94615,48.20719,765,8,24,23,17,1,3.65,27.5,fr,30496,15,1287854,1,2,Active Shallow Crust,0.0,89.98802,0.0,08/24/0765 +8.94615,48.20719,2267,4,10,16,39,40,3.65,5.0,fr,30497,45,1287855,1,5,Active Shallow Crust,240.0021,58.0119,0.0,04/10/2267 +8.94615,48.20719,9358,8,23,11,40,14,3.65,5.0,fr,30498,187,1287855,1,5,Active Shallow Crust,240.0021,58.0119,0.0,08/23/9358 +8.94615,48.20719,3452,12,17,10,31,22,3.65,5.0,fr,30499,69,1287855,1,5,Active Shallow Crust,240.0021,58.0119,0.0,12/17/3452 +8.94615,48.20719,4988,12,1,21,0,5,3.65,5.0,fr,30500,99,1287855,1,5,Active Shallow Crust,240.0021,58.0119,0.0,12/01/4988 +8.94615,48.20719,7093,4,5,13,22,49,3.65,5.0,fr,30501,141,1287855,1,5,Active Shallow Crust,240.0021,58.0119,0.0,04/05/7093 +8.94615,48.20719,1949,3,4,8,39,35,3.65,5.0,fr,30502,38,1287861,1,2,Active Shallow Crust,128.9006,89.96355,0.0,03/04/1949 +8.94615,48.20719,7354,5,31,20,10,36,3.65,5.0,fr,30503,147,1287861,1,2,Active Shallow Crust,128.9006,89.96355,0.0,05/31/7354 +8.94615,48.20719,4573,12,24,4,31,1,3.75,5.0,fr,30504,91,1287864,1,6,Active Shallow Crust,0.0,89.98933,0.0,12/24/4573 +8.94615,48.20719,3940,5,24,19,54,54,3.75,5.0,fr,30505,78,1287864,1,6,Active Shallow Crust,0.0,89.98933,0.0,05/24/3940 +8.94615,48.20719,868,10,31,8,49,19,3.75,5.0,fr,30506,17,1287864,1,6,Active Shallow Crust,0.0,89.98933,0.0,10/31/0868 +8.94615,48.20719,1346,10,19,17,23,40,3.75,5.0,fr,30507,26,1287864,1,6,Active Shallow Crust,0.0,89.98933,0.0,10/19/1346 +8.94615,48.20719,9522,1,21,21,56,37,3.75,5.0,fr,30508,190,1287864,1,6,Active Shallow Crust,0.0,89.98933,0.0,01/21/9522 +8.94615,48.20719,6422,8,7,11,4,24,3.75,5.0,fr,30509,128,1287864,1,6,Active Shallow Crust,0.0,89.98933,0.0,08/07/6422 +8.94615,48.20719,5771,8,8,7,34,54,3.75,15.0,fr,30510,115,1287865,1,2,Active Shallow Crust,0.0,89.98933,0.0,08/08/5771 +8.94615,48.20719,8815,8,19,3,20,20,3.75,15.0,fr,30511,176,1287865,1,2,Active Shallow Crust,0.0,89.98933,0.0,08/19/8815 +8.94615,48.20719,2665,10,8,12,19,15,3.75,5.0,fr,30512,53,1287867,1,1,Active Shallow Crust,240.0097,58.01725,0.0,10/08/2665 +8.94615,48.20719,9294,4,26,3,29,26,3.75,5.0,fr,30513,185,1287870,1,1,Active Shallow Crust,0.0,89.9892,-90.0,04/26/9294 +8.94615,48.20719,6645,9,9,0,21,52,3.75,5.0,fr,30514,132,1287873,1,2,Active Shallow Crust,128.8982,89.96623,0.0,09/09/6645 +8.94615,48.20719,5166,10,19,13,9,38,3.75,5.0,fr,30515,103,1287873,1,2,Active Shallow Crust,128.8982,89.96623,0.0,10/19/5166 +8.94615,48.20719,909,3,28,21,5,40,3.75,27.5,fr,30516,18,1287875,1,2,Active Shallow Crust,128.8982,89.96623,0.0,03/28/0909 +8.94615,48.20719,3710,7,18,15,12,29,3.75,27.5,fr,30517,74,1287875,1,2,Active Shallow Crust,128.8982,89.96623,0.0,07/18/3710 +8.94615,48.20719,1126,6,14,1,57,7,3.85,5.0,fr,30518,22,1287876,1,9,Active Shallow Crust,0.0,89.99049,0.0,06/14/1126 +8.94615,48.20719,4999,9,18,4,35,7,3.85,5.0,fr,30519,99,1287876,1,9,Active Shallow Crust,0.0,89.99049,0.0,09/18/4999 +8.94615,48.20719,4987,12,5,18,11,0,3.85,5.0,fr,30520,99,1287876,1,9,Active Shallow Crust,0.0,89.99049,0.0,12/05/4987 +8.94615,48.20719,3238,4,28,17,6,47,3.85,5.0,fr,30521,64,1287876,1,9,Active Shallow Crust,0.0,89.99049,0.0,04/28/3238 +8.94615,48.20719,9090,4,26,9,18,43,3.85,5.0,fr,30522,181,1287876,1,9,Active Shallow Crust,0.0,89.99049,0.0,04/26/9090 +8.94615,48.20719,4549,6,28,16,44,22,3.85,5.0,fr,30523,90,1287876,1,9,Active Shallow Crust,0.0,89.99049,0.0,06/28/4549 +8.94615,48.20719,9125,8,1,16,43,32,3.85,5.0,fr,30524,182,1287876,1,9,Active Shallow Crust,0.0,89.99049,0.0,08/01/9125 +8.94615,48.20719,9504,3,6,7,21,6,3.85,5.0,fr,30525,190,1287876,1,9,Active Shallow Crust,0.0,89.99049,0.0,03/06/9504 +8.94615,48.20719,5166,11,7,21,4,27,3.85,5.0,fr,30526,103,1287876,1,9,Active Shallow Crust,0.0,89.99049,0.0,11/07/5166 +8.94615,48.20719,4893,8,28,19,1,12,3.85,15.0,fr,30527,97,1287877,1,3,Active Shallow Crust,0.0,89.99049,0.0,08/28/4893 +8.94615,48.20719,5225,8,29,13,10,40,3.85,15.0,fr,30528,104,1287877,1,3,Active Shallow Crust,0.0,89.99049,0.0,08/29/5225 +8.94615,48.20719,3015,7,5,8,43,17,3.85,15.0,fr,30529,60,1287877,1,3,Active Shallow Crust,0.0,89.99049,0.0,07/05/3015 +8.94615,48.20719,1296,7,27,16,4,28,3.85,27.5,fr,30530,25,1287878,1,1,Active Shallow Crust,0.0,89.99049,0.0,07/27/1296 +8.94615,48.20719,4402,5,8,13,43,50,3.85,15.0,fr,30531,88,1287880,1,3,Active Shallow Crust,240.0116,57.99747,0.0,05/08/4402 +8.94615,48.20719,3413,2,6,3,4,36,3.85,15.0,fr,30532,68,1287880,1,3,Active Shallow Crust,240.0116,57.99747,0.0,02/06/3413 +8.94615,48.20719,3900,12,1,10,7,29,3.85,15.0,fr,30533,77,1287880,1,3,Active Shallow Crust,240.0116,57.99747,0.0,12/01/3900 +8.94615,48.20719,8286,2,25,6,2,50,3.85,15.0,fr,30534,165,1287883,1,1,Active Shallow Crust,0.0,89.99037,-90.0,02/25/8286 +8.94615,48.20719,6867,12,12,13,12,22,3.85,15.0,fr,30535,137,1287886,1,1,Active Shallow Crust,128.8949,89.99524,0.0,12/12/6867 +8.94615,48.20719,1355,10,5,19,18,15,3.95,5.0,fr,30536,27,1287888,1,4,Active Shallow Crust,0.0,89.99152,0.0,10/05/1355 +8.94615,48.20719,3789,12,29,13,1,19,3.95,5.0,fr,30537,75,1287888,1,4,Active Shallow Crust,0.0,89.99152,0.0,12/29/3789 +8.94615,48.20719,7612,8,5,16,1,47,3.95,5.0,fr,30538,152,1287888,1,4,Active Shallow Crust,0.0,89.99152,0.0,08/05/7612 +8.94615,48.20719,5941,11,15,14,45,18,3.95,5.0,fr,30539,118,1287888,1,4,Active Shallow Crust,0.0,89.99152,0.0,11/15/5941 +8.94615,48.20719,1323,6,17,19,33,32,3.95,15.0,fr,30540,26,1287889,1,2,Active Shallow Crust,0.0,89.99152,0.0,06/17/1323 +8.94615,48.20719,4471,8,5,13,35,2,3.95,15.0,fr,30541,89,1287889,1,2,Active Shallow Crust,0.0,89.99152,0.0,08/05/4471 +8.94615,48.20719,5386,3,19,21,14,16,3.95,5.0,fr,30542,107,1287891,1,1,Active Shallow Crust,240.0214,58.00344,0.0,03/19/5386 +8.94615,48.20719,8264,1,10,7,58,49,3.95,5.0,fr,30543,165,1287897,1,1,Active Shallow Crust,128.8987,89.99576,0.0,01/10/8264 +8.94615,48.20719,9670,6,29,1,4,49,4.05,5.0,fr,30544,193,1287900,1,8,Active Shallow Crust,0.0,89.99244,0.0,06/29/9670 +8.94615,48.20719,7174,2,3,8,32,50,4.05,5.0,fr,30545,143,1287900,1,8,Active Shallow Crust,0.0,89.99244,0.0,02/03/7174 +8.94615,48.20719,9118,12,11,13,9,9,4.05,5.0,fr,30546,182,1287900,1,8,Active Shallow Crust,0.0,89.99244,0.0,12/11/9118 +8.94615,48.20719,3152,9,26,22,27,16,4.05,5.0,fr,30547,63,1287900,1,8,Active Shallow Crust,0.0,89.99244,0.0,09/26/3152 +8.94615,48.20719,8944,5,8,12,1,45,4.05,5.0,fr,30548,178,1287900,1,8,Active Shallow Crust,0.0,89.99244,0.0,05/08/8944 +8.94615,48.20719,5480,5,25,5,49,30,4.05,5.0,fr,30549,109,1287900,1,8,Active Shallow Crust,0.0,89.99244,0.0,05/25/5480 +8.94615,48.20719,4354,10,13,2,37,2,4.05,5.0,fr,30550,87,1287900,1,8,Active Shallow Crust,0.0,89.99244,0.0,10/13/4354 +8.94615,48.20719,3301,8,6,3,11,59,4.05,5.0,fr,30551,66,1287900,1,8,Active Shallow Crust,0.0,89.99244,0.0,08/06/3301 +8.94615,48.20719,7311,6,3,23,50,34,4.05,15.0,fr,30552,146,1287901,1,1,Active Shallow Crust,0.0,89.99244,0.0,06/03/7311 +8.94615,48.20719,9985,3,24,6,47,32,4.05,27.5,fr,30553,199,1287902,1,1,Active Shallow Crust,0.0,89.99244,0.0,03/24/9985 +8.94615,48.20719,9198,9,19,5,5,51,4.05,5.0,fr,30554,183,1287903,1,1,Active Shallow Crust,240.0058,58.00576,0.0,09/19/9198 +8.94615,48.20719,8437,10,7,22,31,54,4.05,15.0,fr,30555,168,1287907,1,2,Active Shallow Crust,0.0,89.99236,-90.0,10/07/8437 +8.94615,48.20719,1207,4,2,20,3,39,4.05,15.0,fr,30556,24,1287907,1,2,Active Shallow Crust,0.0,89.99236,-90.0,04/02/1207 +8.94615,48.20719,5254,10,22,4,9,34,4.05,5.0,fr,30557,105,1287909,1,2,Active Shallow Crust,128.8919,89.99244,0.0,10/22/5254 +8.94615,48.20719,6749,4,24,10,22,35,4.05,5.0,fr,30558,134,1287909,1,2,Active Shallow Crust,128.8919,89.99244,0.0,04/24/6749 +8.94615,48.20719,1440,12,19,6,51,25,4.05,15.0,fr,30559,28,1287910,1,2,Active Shallow Crust,128.8919,89.99244,0.0,12/19/1440 +8.94615,48.20719,9240,2,13,22,4,56,4.05,15.0,fr,30560,184,1287910,1,2,Active Shallow Crust,128.8919,89.99244,0.0,02/13/9240 +8.94615,48.20719,8935,3,25,12,9,54,4.15,5.0,fr,30561,178,1287912,1,1,Active Shallow Crust,0.0,89.99326,0.0,03/25/8935 +8.94615,48.20719,3355,4,11,4,13,23,4.25,5.0,fr,30562,67,1287924,1,4,Active Shallow Crust,0.0,89.98799,0.0,04/11/3355 +8.94615,48.20719,669,7,9,15,4,53,4.25,5.0,fr,30563,13,1287924,1,4,Active Shallow Crust,0.0,89.98799,0.0,07/09/0669 +8.94615,48.20719,8017,3,19,14,4,29,4.25,5.0,fr,30564,160,1287924,1,4,Active Shallow Crust,0.0,89.98799,0.0,03/19/8017 +8.94615,48.20719,2827,8,19,7,56,41,4.25,5.0,fr,30565,56,1287924,1,4,Active Shallow Crust,0.0,89.98799,0.0,08/19/2827 +8.94615,48.20719,7917,8,21,21,40,13,4.25,5.0,fr,30566,158,1287927,1,2,Active Shallow Crust,240.0081,57.994,0.0,08/21/7917 +8.94615,48.20719,2667,10,25,3,57,42,4.25,5.0,fr,30567,53,1287927,1,2,Active Shallow Crust,240.0081,57.994,0.0,10/25/2667 +8.94615,48.20719,1982,11,14,12,35,42,4.25,27.5,fr,30568,39,1287929,1,1,Active Shallow Crust,240.0081,57.994,0.0,11/14/1982 +8.94615,48.20719,2086,2,12,17,53,43,4.25,5.0,fr,30569,41,1287930,1,1,Active Shallow Crust,0.0,89.98785,-90.0,02/12/2086 +8.94615,48.20719,4879,4,29,14,45,58,4.35,15.0,fr,30570,97,1287943,1,1,Active Shallow Crust,0.0,89.98917,-90.0,04/29/4879 +8.94615,48.20719,1519,8,1,1,9,50,4.35,27.5,fr,30571,30,1287944,1,1,Active Shallow Crust,0.0,89.98917,-90.0,08/01/1519 +8.94615,48.20719,8003,1,1,4,52,55,4.45,27.5,fr,30572,160,1287950,1,1,Active Shallow Crust,0.0,89.99046,0.0,01/01/8003 +8.94615,48.20719,5401,1,17,2,33,20,4.55,5.0,fr,30573,108,1287960,1,3,Active Shallow Crust,0.0,89.9915,0.0,01/17/5401 +8.94615,48.20719,6073,4,4,18,13,18,4.55,5.0,fr,30574,121,1287960,1,3,Active Shallow Crust,0.0,89.9915,0.0,04/04/6073 +8.94615,48.20719,2680,11,13,22,47,18,4.55,5.0,fr,30575,53,1287960,1,3,Active Shallow Crust,0.0,89.9915,0.0,11/13/2680 +8.94615,48.20719,8454,2,23,4,34,2,4.55,5.0,fr,30576,169,1287969,1,1,Active Shallow Crust,128.8936,89.98574,0.0,02/23/8454 +8.94615,48.20719,8396,1,28,5,39,36,4.65,5.0,fr,30577,167,1287972,1,1,Active Shallow Crust,0.0,89.98863,0.0,01/28/8396 +8.94615,48.20719,9049,8,11,18,23,10,4.65,27.5,fr,30578,180,1287974,1,1,Active Shallow Crust,0.0,89.98863,0.0,08/11/9049 +8.94615,48.20719,6601,2,18,7,27,42,4.65,27.5,fr,30579,132,1287977,1,1,Active Shallow Crust,240.0109,57.99439,0.0,02/18/6601 +8.94615,48.20719,2750,4,12,20,27,42,4.65,5.0,fr,30580,54,1287978,1,1,Active Shallow Crust,0.0,89.9885,-90.0,04/12/2750 +8.94615,48.20719,3809,3,19,7,19,38,4.75,15.0,fr,30581,76,1287985,1,1,Active Shallow Crust,0.0,89.98987,0.0,03/19/3809 +8.94615,48.20719,7553,2,20,3,4,27,4.75,27.5,fr,30582,151,1287995,1,1,Active Shallow Crust,128.8883,89.98782,0.0,02/20/7553 +8.94615,48.20719,8573,8,1,19,55,18,4.85,5.0,fr,30583,171,1287996,1,1,Active Shallow Crust,0.0,89.99097,0.0,08/01/8573 +8.94615,48.20719,1285,3,18,20,55,5,4.85,5.0,fr,30584,25,1288005,1,1,Active Shallow Crust,128.8915,89.98915,0.0,03/18/1285 +8.94615,48.20719,10000,9,2,23,4,14,4.95,5.0,fr,30585,199,1288008,1,1,Active Shallow Crust,0.0,89.98927,0.0,09/02/10000 +8.94615,48.20719,6756,10,30,3,34,57,4.95,5.0,fr,30586,135,1288017,1,1,Active Shallow Crust,128.8892,89.98952,0.0,10/30/6756 +8.94615,48.20719,6175,5,11,5,7,22,5.15,15.0,fr,30587,123,1288033,1,1,Active Shallow Crust,0.0,89.98935,0.0,05/11/6175 +8.94615,48.20719,5708,9,15,23,29,20,5.25,27.5,fr,30588,114,1288046,1,1,Active Shallow Crust,0.0,89.9905,0.0,09/15/5708 +8.94615,48.20719,4622,3,15,18,36,21,5.35,15.0,fr,30589,92,1288057,1,2,Active Shallow Crust,0.0,89.98985,0.0,03/15/4622 +8.94615,48.20719,8657,12,6,5,49,40,5.35,15.0,fr,30590,173,1288057,1,2,Active Shallow Crust,0.0,89.98985,0.0,12/06/8657 +8.94615,48.20719,6830,5,4,22,29,24,6.05,15.0,fr,30591,136,1288141,1,1,Active Shallow Crust,0.0,89.99017,0.0,05/04/6830 +0.82739,48.618,342,10,12,23,32,43,3.55,5.0,fr,30592,6,1288320,1,1,Active Shallow Crust,0.0,89.99,0.0,10/12/0342 +0.82739,48.618,36,6,23,4,29,49,3.55,27.5,fr,30593,0,1288322,1,1,Active Shallow Crust,0.0,89.99,0.0,06/23/0036 +0.82739,48.618,6697,9,28,3,32,46,3.75,15.0,fr,30594,133,1288345,1,1,Active Shallow Crust,0.0,89.99007,0.0,09/28/6697 +0.82739,48.618,1588,8,11,13,42,13,4.75,15.0,fr,30595,31,1288474,1,1,Active Shallow Crust,128.888,89.98808,0.0,08/11/1588 +0.82739,48.618,2597,2,28,19,59,44,5.25,15.0,fr,30596,51,1288525,1,1,Active Shallow Crust,0.0,89.98999,0.0,02/28/2597 +5.89721,47.98582,3502,2,8,18,22,30,3.55,5.0,fr,30597,70,1288800,1,1,Active Shallow Crust,0.0,89.99325,0.0,02/08/3502 +5.89721,47.98582,128,5,2,13,26,19,3.65,15.0,fr,30598,2,1288813,1,1,Active Shallow Crust,0.0,89.98797,0.0,05/02/0128 +5.89721,47.98582,5757,5,16,17,34,36,3.75,5.0,fr,30599,115,1288824,1,1,Active Shallow Crust,0.0,89.98928,0.0,05/16/5757 +5.89721,47.98582,4116,5,2,5,55,57,4.05,15.0,fr,30600,82,1288864,1,1,Active Shallow Crust,240.0056,58.00612,0.0,05/02/4116 +5.89721,47.98582,5213,4,21,13,42,32,4.25,5.0,fr,30601,104,1288884,1,1,Active Shallow Crust,0.0,89.99095,0.0,04/21/5213 +5.89721,47.98582,3739,8,4,0,56,13,4.45,5.0,fr,30602,74,1288911,1,1,Active Shallow Crust,240.0059,57.99495,0.0,08/04/3739 +5.89721,47.98582,741,11,28,5,10,31,4.65,15.0,fr,30603,14,1288942,1,1,Active Shallow Crust,128.8905,89.98728,0.0,11/28/0741 +5.89721,47.98582,9236,5,30,4,19,17,4.75,5.0,fr,30604,184,1288944,1,1,Active Shallow Crust,0.0,89.98983,0.0,05/30/9236 +5.68714,49.22265,8718,1,26,1,6,3,3.55,5.0,fr,30605,174,1289760,1,1,Active Shallow Crust,0.0,89.98683,0.0,01/26/8718 +5.68714,49.22265,7513,10,2,10,5,11,3.75,5.0,fr,30606,150,1289784,1,1,Active Shallow Crust,0.0,89.98954,0.0,10/02/7513 +5.68714,49.22265,1083,5,25,4,28,50,4.25,5.0,fr,30607,21,1289844,1,1,Active Shallow Crust,0.0,89.99117,0.0,05/25/1083 +8.2044,47.7465,8101,1,9,15,32,52,3.55,5.0,fr,30608,162,1290240,1,4,Active Shallow Crust,0.0,89.98644,0.0,01/09/8101 +8.2044,47.7465,7732,4,29,22,7,18,3.55,5.0,fr,30609,154,1290240,1,4,Active Shallow Crust,0.0,89.98644,0.0,04/29/7732 +8.2044,47.7465,4423,1,26,11,43,46,3.55,5.0,fr,30610,88,1290240,1,4,Active Shallow Crust,0.0,89.98644,0.0,01/26/4423 +8.2044,47.7465,2765,6,13,11,23,39,3.55,5.0,fr,30611,55,1290240,1,4,Active Shallow Crust,0.0,89.98644,0.0,06/13/2765 +8.2044,47.7465,2835,6,28,16,21,35,3.55,15.0,fr,30612,56,1290241,1,1,Active Shallow Crust,0.0,89.98644,0.0,06/28/2835 +8.2044,47.7465,5708,1,20,4,40,16,3.55,5.0,fr,30613,114,1290243,1,1,Active Shallow Crust,240.0151,57.99792,0.0,01/20/5708 +8.2044,47.7465,8645,12,2,23,55,43,3.55,5.0,fr,30614,172,1290249,1,1,Active Shallow Crust,128.894,89.99322,0.0,12/02/8645 +8.2044,47.7465,898,8,19,23,50,43,3.65,5.0,fr,30615,17,1290252,1,4,Active Shallow Crust,0.0,89.98792,0.0,08/19/0898 +8.2044,47.7465,2907,4,8,23,21,13,3.65,5.0,fr,30616,58,1290252,1,4,Active Shallow Crust,0.0,89.98792,0.0,04/08/2907 +8.2044,47.7465,8880,2,29,0,47,17,3.65,5.0,fr,30617,177,1290252,1,4,Active Shallow Crust,0.0,89.98792,0.0,02/29/8880 +8.2044,47.7465,3947,1,11,7,20,21,3.65,5.0,fr,30618,78,1290252,1,4,Active Shallow Crust,0.0,89.98792,0.0,01/11/3947 +8.2044,47.7465,4935,11,8,14,20,24,3.65,15.0,fr,30619,98,1290253,1,1,Active Shallow Crust,0.0,89.98792,0.0,11/08/4935 +8.2044,47.7465,2384,3,16,23,55,41,3.75,5.0,fr,30620,47,1290264,1,1,Active Shallow Crust,0.0,89.98923,0.0,03/16/2384 +8.2044,47.7465,1817,7,28,20,53,8,3.75,27.5,fr,30621,36,1290266,1,1,Active Shallow Crust,0.0,89.98923,0.0,07/28/1817 +8.2044,47.7465,4489,10,30,10,58,52,3.85,15.0,fr,30622,89,1290280,1,1,Active Shallow Crust,240.0107,57.9988,0.0,10/30/4489 +8.2044,47.7465,7023,11,23,10,5,19,3.85,15.0,fr,30623,140,1290286,1,1,Active Shallow Crust,128.8972,89.9904,0.0,11/23/7023 +8.2044,47.7465,2987,10,29,5,24,53,3.95,5.0,fr,30624,59,1290288,1,3,Active Shallow Crust,0.0,89.99144,0.0,10/29/2987 +8.2044,47.7465,8000,8,20,15,31,51,3.95,5.0,fr,30625,159,1290288,1,3,Active Shallow Crust,0.0,89.99144,0.0,08/20/8000 +8.2044,47.7465,2595,5,17,17,54,14,3.95,5.0,fr,30626,51,1290288,1,3,Active Shallow Crust,0.0,89.99144,0.0,05/17/2595 +8.2044,47.7465,8770,7,26,17,34,35,3.95,15.0,fr,30627,175,1290289,1,2,Active Shallow Crust,0.0,89.99144,0.0,07/26/8770 +8.2044,47.7465,3178,2,25,14,58,45,3.95,15.0,fr,30628,63,1290289,1,2,Active Shallow Crust,0.0,89.99144,0.0,02/25/3178 +8.2044,47.7465,2221,12,15,0,53,3,4.05,5.0,fr,30629,44,1290300,1,1,Active Shallow Crust,0.0,89.99237,0.0,12/15/2221 +8.2044,47.7465,1855,12,7,9,8,3,4.05,15.0,fr,30630,37,1290301,1,1,Active Shallow Crust,0.0,89.99237,0.0,12/07/1855 +8.2044,47.7465,1500,4,29,2,24,58,4.05,5.0,fr,30631,29,1290303,1,1,Active Shallow Crust,240.0069,58.00627,0.0,04/29/1500 +8.2044,47.7465,6890,6,1,1,38,55,4.05,5.0,fr,30632,137,1290309,1,1,Active Shallow Crust,128.89,89.99238,0.0,06/01/6890 +8.2044,47.7465,2938,12,14,10,24,7,4.15,5.0,fr,30633,58,1290312,1,1,Active Shallow Crust,0.0,89.9932,0.0,12/14/2938 +8.2044,47.7465,5896,12,31,23,37,33,4.15,5.0,fr,30634,117,1290321,1,1,Active Shallow Crust,128.8992,89.9932,0.0,12/31/5896 +8.2044,47.7465,6587,12,16,20,48,32,4.25,5.0,fr,30635,131,1290327,1,1,Active Shallow Crust,240.0078,57.99409,0.0,12/16/6587 +8.2044,47.7465,3832,12,21,22,7,50,4.55,5.0,fr,30636,76,1290360,1,1,Active Shallow Crust,0.0,89.99142,0.0,12/21/3832 +8.2044,47.7465,8445,12,3,17,38,44,4.65,5.0,fr,30637,168,1290372,1,1,Active Shallow Crust,0.0,89.98853,0.0,12/03/8445 +8.2044,47.7465,4315,12,18,23,42,47,4.85,5.0,fr,30638,86,1290405,1,1,Active Shallow Crust,128.8923,89.98912,0.0,12/18/4315 +8.2044,47.7465,3954,5,19,0,38,30,4.95,5.0,fr,30639,79,1290408,1,1,Active Shallow Crust,0.0,89.98917,0.0,05/19/3954 +8.2044,47.7465,7691,6,6,19,45,56,4.95,27.5,fr,30640,153,1290410,1,1,Active Shallow Crust,0.0,89.98917,0.0,06/06/7691 +8.2044,47.7465,3923,12,28,6,33,47,5.95,5.0,fr,30641,78,1290528,1,1,Active Shallow Crust,0.0,89.98972,0.0,12/28/3923 +4.28624,46.35455,8308,2,23,14,28,36,3.55,5.0,fr,30642,166,1290720,1,1,Active Shallow Crust,0.0,89.99304,0.0,02/23/8308 +4.28624,46.35455,9577,7,26,16,42,7,3.55,15.0,fr,30643,191,1290721,1,1,Active Shallow Crust,0.0,89.99304,0.0,07/26/9577 +4.28624,46.35455,983,8,9,2,59,58,3.75,5.0,fr,30644,19,1290744,1,1,Active Shallow Crust,0.0,89.98895,0.0,08/09/0983 +4.28624,46.35455,5622,11,13,15,45,11,3.85,5.0,fr,30645,112,1290756,1,1,Active Shallow Crust,0.0,89.99014,0.0,11/13/5622 +4.28624,46.35455,2026,9,26,18,45,59,3.95,5.0,fr,30646,40,1290768,1,1,Active Shallow Crust,0.0,89.99122,0.0,09/26/2026 +4.28624,46.35455,3523,6,12,20,1,36,4.15,5.0,fr,30647,70,1290798,1,1,Active Shallow Crust,0.0,89.98941,-90.0,06/12/3523 +4.28624,46.35455,3404,7,15,2,54,9,4.25,5.0,fr,30648,68,1290807,1,1,Active Shallow Crust,240.0075,57.9939,0.0,07/15/3404 +3.89024,41.26457,1323,12,27,11,19,12,3.55,27.5,fr,30649,26,1291205,1,1,Active Shallow Crust,240.0116,57.99831,0.0,12/27/1323 +3.89024,41.26457,4068,1,7,19,22,4,3.55,15.0,fr,30650,81,1291210,1,1,Active Shallow Crust,128.8968,89.99432,0.0,01/07/4068 +3.89024,41.26457,30,9,12,21,30,0,3.75,5.0,fr,30651,0,1291227,1,1,Active Shallow Crust,240.0083,58.01724,0.0,09/12/0030 +3.89024,41.26457,1373,6,17,19,44,24,3.85,15.0,fr,30652,27,1291246,1,1,Active Shallow Crust,128.8962,89.99329,0.0,06/17/1373 +3.89024,41.26457,2408,12,13,0,43,8,4.05,5.0,fr,30653,48,1291266,1,1,Active Shallow Crust,0.0,89.98922,-90.0,12/13/2408 +3.89024,41.26457,2541,4,23,6,26,12,4.15,5.0,fr,30654,50,1291275,1,1,Active Shallow Crust,240.0073,57.99722,0.0,04/23/2541 +3.89024,41.26457,4564,10,29,23,20,57,4.55,27.5,fr,30655,91,1291325,1,1,Active Shallow Crust,240.0077,57.99709,0.0,10/29/4564 +3.89024,41.26457,7882,9,17,22,50,10,4.85,27.5,fr,30656,157,1291364,1,1,Active Shallow Crust,0.0,89.9897,-90.0,09/17/7882 +7.23404,46.60682,719,12,29,4,59,36,3.55,5.0,fr,30657,14,1291680,1,5,Active Shallow Crust,0.0,89.99307,0.0,12/29/0719 +7.23404,46.60682,3007,1,8,6,40,50,3.55,5.0,fr,30658,60,1291680,1,5,Active Shallow Crust,0.0,89.99307,0.0,01/08/3007 +7.23404,46.60682,5042,2,18,22,3,28,3.55,5.0,fr,30659,100,1291680,1,5,Active Shallow Crust,0.0,89.99307,0.0,02/18/5042 +7.23404,46.60682,7242,3,2,0,43,28,3.55,5.0,fr,30660,144,1291680,1,5,Active Shallow Crust,0.0,89.99307,0.0,03/02/7242 +7.23404,46.60682,528,1,17,23,40,7,3.55,5.0,fr,30661,10,1291680,1,5,Active Shallow Crust,0.0,89.99307,0.0,01/17/0528 +7.23404,46.60682,3238,2,25,8,15,8,3.55,15.0,fr,30662,64,1291681,1,4,Active Shallow Crust,0.0,89.99307,0.0,02/25/3238 +7.23404,46.60682,1712,2,12,11,45,38,3.55,15.0,fr,30663,34,1291681,1,4,Active Shallow Crust,0.0,89.99307,0.0,02/12/1712 +7.23404,46.60682,2999,7,13,0,48,34,3.55,15.0,fr,30664,59,1291681,1,4,Active Shallow Crust,0.0,89.99307,0.0,07/13/2999 +7.23404,46.60682,6265,10,15,14,8,40,3.55,15.0,fr,30665,125,1291681,1,4,Active Shallow Crust,0.0,89.99307,0.0,10/15/6265 +7.23404,46.60682,5669,6,30,15,37,53,3.55,27.5,fr,30666,113,1291685,1,1,Active Shallow Crust,240.0112,57.99915,0.0,06/30/5669 +7.23404,46.60682,5417,12,11,14,30,39,3.55,5.0,fr,30667,108,1291686,1,1,Active Shallow Crust,0.0,89.99299,-90.0,12/11/5417 +7.23404,46.60682,4770,9,24,16,22,24,3.65,5.0,fr,30668,95,1291692,1,4,Active Shallow Crust,0.0,89.98765,0.0,09/24/4770 +7.23404,46.60682,7597,5,9,18,11,32,3.65,5.0,fr,30669,151,1291692,1,4,Active Shallow Crust,0.0,89.98765,0.0,05/09/7597 +7.23404,46.60682,5369,9,8,23,39,27,3.65,5.0,fr,30670,107,1291692,1,4,Active Shallow Crust,0.0,89.98765,0.0,09/08/5369 +7.23404,46.60682,134,12,20,12,1,49,3.65,5.0,fr,30671,2,1291692,1,4,Active Shallow Crust,0.0,89.98765,0.0,12/20/0134 +7.23404,46.60682,4897,10,25,11,28,54,3.65,15.0,fr,30672,97,1291693,1,1,Active Shallow Crust,0.0,89.98765,0.0,10/25/4897 +7.23404,46.60682,1528,9,15,17,54,18,3.65,27.5,fr,30673,30,1291694,1,2,Active Shallow Crust,0.0,89.98765,0.0,09/15/1528 +7.23404,46.60682,6648,2,24,0,18,0,3.65,27.5,fr,30674,132,1291694,1,2,Active Shallow Crust,0.0,89.98765,0.0,02/24/6648 +7.23404,46.60682,4348,12,17,13,13,31,3.65,5.0,fr,30675,86,1291695,1,1,Active Shallow Crust,240.0018,58.01222,0.0,12/17/4348 +7.23404,46.60682,1885,9,26,10,53,15,3.65,15.0,fr,30676,37,1291696,1,2,Active Shallow Crust,240.0018,58.01222,0.0,09/26/1885 +7.23404,46.60682,4156,3,14,19,22,24,3.65,15.0,fr,30677,83,1291696,1,2,Active Shallow Crust,240.0018,58.01222,0.0,03/14/4156 +7.23404,46.60682,2177,11,5,11,4,48,3.65,5.0,fr,30678,43,1291698,1,2,Active Shallow Crust,0.0,89.98751,-90.0,11/05/2177 +7.23404,46.60682,2994,3,30,1,27,50,3.65,5.0,fr,30679,59,1291698,1,2,Active Shallow Crust,0.0,89.98751,-90.0,03/30/2994 +7.23404,46.60682,2739,12,16,4,50,13,3.75,5.0,fr,30680,54,1291704,1,2,Active Shallow Crust,0.0,89.98899,0.0,12/16/2739 +7.23404,46.60682,1475,11,25,4,19,36,3.75,5.0,fr,30681,29,1291704,1,2,Active Shallow Crust,0.0,89.98899,0.0,11/25/1475 +7.23404,46.60682,8951,9,29,8,55,49,3.75,15.0,fr,30682,179,1291705,1,5,Active Shallow Crust,0.0,89.98899,0.0,09/29/8951 +7.23404,46.60682,3005,7,28,15,9,37,3.75,15.0,fr,30683,60,1291705,1,5,Active Shallow Crust,0.0,89.98899,0.0,07/28/3005 +7.23404,46.60682,5702,11,8,6,10,3,3.75,15.0,fr,30684,114,1291705,1,5,Active Shallow Crust,0.0,89.98899,0.0,11/08/5702 +7.23404,46.60682,8943,8,17,11,11,1,3.75,15.0,fr,30685,178,1291705,1,5,Active Shallow Crust,0.0,89.98899,0.0,08/17/8943 +7.23404,46.60682,3949,7,22,14,6,8,3.75,15.0,fr,30686,78,1291705,1,5,Active Shallow Crust,0.0,89.98899,0.0,07/22/3949 +7.23404,46.60682,9391,9,11,1,58,9,3.75,27.5,fr,30687,187,1291706,1,4,Active Shallow Crust,0.0,89.98899,0.0,09/11/9391 +7.23404,46.60682,1477,8,22,5,23,11,3.75,27.5,fr,30688,29,1291706,1,4,Active Shallow Crust,0.0,89.98899,0.0,08/22/1477 +7.23404,46.60682,2517,4,18,21,4,44,3.75,27.5,fr,30689,50,1291706,1,4,Active Shallow Crust,0.0,89.98899,0.0,04/18/2517 +7.23404,46.60682,3820,2,27,9,44,29,3.75,27.5,fr,30690,76,1291706,1,4,Active Shallow Crust,0.0,89.98899,0.0,02/27/3820 +7.23404,46.60682,6201,11,2,0,22,4,3.85,5.0,fr,30691,124,1291716,1,4,Active Shallow Crust,0.0,89.99019,0.0,11/02/6201 +7.23404,46.60682,740,5,1,1,22,41,3.85,5.0,fr,30692,14,1291716,1,4,Active Shallow Crust,0.0,89.99019,0.0,05/01/0740 +7.23404,46.60682,3149,2,22,17,7,30,3.85,5.0,fr,30693,62,1291716,1,4,Active Shallow Crust,0.0,89.99019,0.0,02/22/3149 +7.23404,46.60682,7725,4,9,16,33,50,3.85,5.0,fr,30694,154,1291716,1,4,Active Shallow Crust,0.0,89.99019,0.0,04/09/7725 +7.23404,46.60682,2354,12,8,15,33,1,3.85,5.0,fr,30695,47,1291722,1,1,Active Shallow Crust,0.0,89.99007,-90.0,12/08/2354 +7.23404,46.60682,4537,2,21,5,37,20,3.85,27.5,fr,30696,90,1291724,1,1,Active Shallow Crust,0.0,89.99007,-90.0,02/21/4537 +7.23404,46.60682,7898,5,24,14,49,46,3.95,5.0,fr,30697,157,1291728,1,1,Active Shallow Crust,0.0,89.99126,0.0,05/24/7898 +7.23404,46.60682,5078,6,2,13,45,2,3.95,15.0,fr,30698,101,1291729,1,2,Active Shallow Crust,0.0,89.99126,0.0,06/02/5078 +7.23404,46.60682,9039,11,12,2,1,0,3.95,15.0,fr,30699,180,1291729,1,2,Active Shallow Crust,0.0,89.99126,0.0,11/12/9039 +7.23404,46.60682,7756,1,27,8,41,18,3.95,5.0,fr,30700,155,1291731,1,1,Active Shallow Crust,240.0206,58.00495,0.0,01/27/7756 +7.23404,46.60682,3779,12,6,7,1,43,3.95,5.0,fr,30701,75,1291734,1,1,Active Shallow Crust,0.0,89.99116,-90.0,12/06/3779 +7.23404,46.60682,8008,8,28,6,1,9,3.95,5.0,fr,30702,160,1291737,1,1,Active Shallow Crust,128.8996,89.99345,0.0,08/28/8008 +7.23404,46.60682,7510,2,2,13,56,58,4.05,5.0,fr,30703,150,1291740,1,2,Active Shallow Crust,0.0,89.98831,0.0,02/02/7510 +7.23404,46.60682,71,5,24,4,51,16,4.05,5.0,fr,30704,1,1291740,1,2,Active Shallow Crust,0.0,89.98831,0.0,05/24/0071 +7.23404,46.60682,7474,11,12,18,30,39,4.05,15.0,fr,30705,149,1291741,1,1,Active Shallow Crust,0.0,89.98831,0.0,11/12/7474 +7.23404,46.60682,895,8,18,14,46,46,4.05,5.0,fr,30706,17,1291743,1,1,Active Shallow Crust,240.0064,58.00536,0.0,08/18/0895 +7.23404,46.60682,5550,5,5,10,35,49,4.05,5.0,fr,30707,110,1291746,1,2,Active Shallow Crust,0.0,89.98817,-90.0,05/05/5550 +7.23404,46.60682,7176,3,13,22,7,1,4.05,5.0,fr,30708,143,1291746,1,2,Active Shallow Crust,0.0,89.98817,-90.0,03/13/7176 +7.23404,46.60682,6031,6,28,21,45,54,4.15,5.0,fr,30709,120,1291752,1,2,Active Shallow Crust,0.0,89.98959,0.0,06/28/6031 +7.23404,46.60682,5546,1,23,1,51,32,4.15,5.0,fr,30710,110,1291752,1,2,Active Shallow Crust,0.0,89.98959,0.0,01/23/5546 +7.23404,46.60682,6,1,23,4,7,43,4.15,5.0,fr,30711,0,1291755,1,1,Active Shallow Crust,240.0078,57.99752,0.0,01/23/0006 +7.23404,46.60682,2392,8,4,4,33,17,4.15,15.0,fr,30712,47,1291759,1,1,Active Shallow Crust,0.0,89.98946,-90.0,08/04/2392 +7.23404,46.60682,1497,7,8,2,53,17,4.25,15.0,fr,30713,29,1291765,1,1,Active Shallow Crust,0.0,89.99072,0.0,07/08/1497 +7.23404,46.60682,5809,10,30,11,20,53,4.25,27.5,fr,30714,116,1291766,1,1,Active Shallow Crust,0.0,89.99072,0.0,10/30/5809 +7.23404,46.60682,9456,10,23,1,55,42,4.25,5.0,fr,30715,189,1291767,1,2,Active Shallow Crust,240.0073,57.99416,0.0,10/23/9456 +7.23404,46.60682,9146,11,10,1,42,0,4.25,5.0,fr,30716,182,1291767,1,2,Active Shallow Crust,240.0073,57.99416,0.0,11/10/9146 +7.23404,46.60682,5056,11,21,11,14,4,4.35,5.0,fr,30717,101,1291776,1,4,Active Shallow Crust,0.0,89.98897,0.0,11/21/5056 +7.23404,46.60682,6298,3,14,4,57,4,4.35,5.0,fr,30718,125,1291776,1,4,Active Shallow Crust,0.0,89.98897,0.0,03/14/6298 +7.23404,46.60682,868,8,20,15,19,10,4.35,5.0,fr,30719,17,1291776,1,4,Active Shallow Crust,0.0,89.98897,0.0,08/20/0868 +7.23404,46.60682,2899,11,30,11,51,32,4.35,5.0,fr,30720,57,1291776,1,4,Active Shallow Crust,0.0,89.98897,0.0,11/30/2899 +7.23404,46.60682,6819,8,2,0,4,36,4.45,5.0,fr,30721,136,1291788,1,1,Active Shallow Crust,0.0,89.99017,0.0,08/02/6819 +7.23404,46.60682,2486,1,2,21,12,47,4.55,5.0,fr,30722,49,1291800,1,2,Active Shallow Crust,0.0,89.98904,0.0,01/02/2486 +7.23404,46.60682,7776,10,4,14,15,7,4.55,5.0,fr,30723,155,1291800,1,2,Active Shallow Crust,0.0,89.98904,0.0,10/04/7776 +7.23404,46.60682,6628,7,24,0,54,1,4.65,5.0,fr,30724,132,1291812,1,1,Active Shallow Crust,0.0,89.99023,0.0,07/24/6628 +7.23404,46.60682,5826,2,11,12,37,16,4.95,5.0,fr,30725,116,1291848,1,2,Active Shallow Crust,0.0,89.99033,0.0,02/11/5826 +7.23404,46.60682,5410,12,22,15,2,46,4.95,5.0,fr,30726,108,1291848,1,2,Active Shallow Crust,0.0,89.99033,0.0,12/22/5410 +7.23404,46.60682,771,2,9,18,0,22,4.95,15.0,fr,30727,15,1291849,1,1,Active Shallow Crust,0.0,89.99033,0.0,02/09/0771 +7.23404,46.60682,509,2,18,9,58,18,5.15,5.0,fr,30728,10,1291872,1,1,Active Shallow Crust,0.0,89.99011,0.0,02/18/0509 +7.23404,46.60682,5214,5,29,4,39,47,5.35,5.0,fr,30729,104,1291905,1,1,Active Shallow Crust,128.8831,89.98792,0.0,05/29/5214 +7.23404,46.60682,8160,7,23,14,46,18,6.55,15.0,fr,30730,163,1292050,1,1,Active Shallow Crust,128.8293,89.99013,0.0,07/23/8160 +5.84836,43.41052,9782,4,30,18,5,51,3.55,5.0,fr,30731,195,1292160,1,1,Active Shallow Crust,0.0,89.99268,0.0,04/30/9782 +5.84836,43.41052,3522,11,17,17,38,34,3.55,5.0,fr,30732,70,1292163,1,1,Active Shallow Crust,240.0107,57.99931,0.0,11/17/3522 +5.84836,43.41052,5941,12,2,15,50,4,3.75,5.0,fr,30733,118,1292184,1,2,Active Shallow Crust,0.0,89.98837,0.0,12/02/5941 +5.84836,43.41052,9204,4,30,2,49,43,3.75,5.0,fr,30734,184,1292184,1,2,Active Shallow Crust,0.0,89.98837,0.0,04/30/9204 +5.84836,43.41052,6369,9,27,6,26,38,3.85,15.0,fr,30735,127,1292197,1,1,Active Shallow Crust,0.0,89.98962,0.0,09/27/6369 +5.84836,43.41052,5968,10,25,10,0,21,3.85,5.0,fr,30736,119,1292202,1,1,Active Shallow Crust,0.0,89.98951,-90.0,10/25/5968 +5.84836,43.41052,954,9,29,6,23,8,4.15,5.0,fr,30737,19,1292241,1,1,Active Shallow Crust,128.8975,89.99449,0.0,09/29/0954 +5.84836,43.41052,9904,7,24,13,12,11,4.35,15.0,fr,30738,198,1292260,1,1,Active Shallow Crust,240.0073,57.99612,0.0,07/24/9904 +5.84836,43.41052,3341,10,25,4,29,57,4.45,5.0,fr,30739,66,1292268,1,1,Active Shallow Crust,0.0,89.9896,0.0,10/25/3341 +4.78971,49.72659,4913,4,30,1,21,45,3.65,5.0,fr,30740,98,1292652,1,1,Active Shallow Crust,0.0,89.98838,0.0,04/30/4913 +4.78971,49.72659,8893,8,7,12,51,42,3.65,27.5,fr,30741,177,1292654,1,1,Active Shallow Crust,0.0,89.98838,0.0,08/07/8893 +4.78971,49.72659,7440,10,12,0,59,54,3.95,5.0,fr,30742,148,1292688,1,1,Active Shallow Crust,0.0,89.99178,0.0,10/12/7440 +4.78971,49.72659,9132,3,16,18,0,13,4.75,15.0,fr,30743,182,1292788,1,1,Active Shallow Crust,240.0089,58.00462,0.0,03/16/9132 +2.66274,50.26456,3902,3,10,22,28,42,3.55,15.0,fr,30744,78,1293121,1,1,Active Shallow Crust,0.0,89.99033,0.0,03/10/3902 +2.66274,50.26456,7142,12,31,16,25,42,3.65,5.0,fr,30745,142,1293132,1,1,Active Shallow Crust,0.0,89.99138,0.0,12/31/7142 +2.66274,50.26456,7006,7,28,14,7,44,4.25,5.0,fr,30746,140,1293204,1,1,Active Shallow Crust,0.0,89.98992,0.0,07/28/7006 +2.66274,50.26456,93,11,11,22,36,48,4.65,5.0,fr,30747,1,1293252,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/11/0093 +4.33346,41.05607,4799,12,9,5,22,48,3.65,5.0,fr,30748,95,1293618,1,1,Active Shallow Crust,0.0,89.99314,-90.0,12/09/4799 +4.33346,41.05607,8587,9,4,15,22,12,3.85,5.0,fr,30749,171,1293642,1,1,Active Shallow Crust,0.0,89.98911,-90.0,09/04/8587 +4.33346,41.05607,7788,11,16,13,49,35,4.35,5.0,fr,30750,155,1293702,1,1,Active Shallow Crust,0.0,89.99081,-90.0,11/16/7788 +1.3551,52.28503,6072,4,19,3,33,50,3.95,5.0,fr,30751,121,1294128,1,1,Active Shallow Crust,0.0,89.99027,0.0,04/19/6072 +1.3551,52.28503,9440,4,20,5,1,8,3.95,27.5,fr,30752,188,1294130,1,1,Active Shallow Crust,0.0,89.99027,0.0,04/20/9440 +1.3551,52.28503,9865,1,5,3,36,49,4.15,15.0,fr,30753,197,1294159,1,1,Active Shallow Crust,0.0,89.98984,-90.0,01/05/9865 +1.28028,41.1291,147,1,12,4,17,24,3.55,15.0,fr,30754,2,1294561,1,1,Active Shallow Crust,0.0,89.99051,0.0,01/12/0147 +1.28028,41.1291,9504,3,10,2,18,39,3.55,5.0,fr,30755,190,1294563,1,1,Active Shallow Crust,240.0117,57.99795,0.0,03/10/9504 +1.28028,41.1291,5184,12,14,8,51,56,3.55,5.0,fr,30756,103,1294569,1,1,Active Shallow Crust,128.8966,89.9943,0.0,12/14/5184 +1.28028,41.1291,4524,7,20,16,45,44,3.75,5.0,fr,30757,90,1294584,1,3,Active Shallow Crust,0.0,89.98944,0.0,07/20/4524 +1.28028,41.1291,2417,9,20,22,12,50,3.75,5.0,fr,30758,48,1294584,1,3,Active Shallow Crust,0.0,89.98944,0.0,09/20/2417 +1.28028,41.1291,5812,4,12,4,51,42,3.75,5.0,fr,30759,116,1294584,1,3,Active Shallow Crust,0.0,89.98944,0.0,04/12/5812 +1.28028,41.1291,847,2,23,12,28,16,3.85,15.0,fr,30760,16,1294597,1,1,Active Shallow Crust,0.0,89.99059,0.0,02/23/0847 +1.28028,41.1291,6611,6,4,17,1,14,4.15,5.0,fr,30761,132,1294632,1,1,Active Shallow Crust,0.0,89.98953,0.0,06/04/6611 +1.28028,41.1291,1387,6,20,5,7,7,4.25,5.0,fr,30762,27,1294644,1,1,Active Shallow Crust,0.0,89.98982,0.0,06/20/1387 +1.28028,41.1291,4266,9,25,2,19,1,4.55,5.0,fr,30763,85,1294689,1,1,Active Shallow Crust,128.895,89.98577,0.0,09/25/4266 +1.28028,41.1291,629,4,9,19,9,4,4.75,15.0,fr,30764,12,1294705,1,1,Active Shallow Crust,0.0,89.98998,0.0,04/09/0629 +1.28028,41.1291,1594,8,14,19,23,47,5.85,5.0,fr,30765,31,1294836,1,1,Active Shallow Crust,0.0,89.99004,0.0,08/14/1594 +5.4157,48.80974,6928,3,31,17,23,1,3.55,5.0,fr,30766,138,1295046,1,1,Active Shallow Crust,0.0,89.99328,-90.0,03/31/6928 +5.4157,48.80974,5000,2,5,16,26,0,3.55,15.0,fr,30767,99,1295050,1,1,Active Shallow Crust,128.8952,89.99336,0.0,02/05/5000 +4.80214,45.90828,6046,9,9,18,19,18,3.55,27.5,fr,30768,120,1295531,1,1,Active Shallow Crust,128.8956,89.99649,0.0,09/09/6046 +4.80214,45.90828,3359,6,27,14,18,10,3.65,5.0,fr,30769,67,1295532,1,1,Active Shallow Crust,0.0,89.9875,0.0,06/27/3359 +4.80214,45.90828,7431,11,2,11,57,12,3.65,27.5,fr,30770,148,1295537,1,1,Active Shallow Crust,240.0009,58.01312,0.0,11/02/7431 +4.80214,45.90828,6731,8,12,10,56,42,3.75,5.0,fr,30771,134,1295544,1,4,Active Shallow Crust,0.0,89.98885,0.0,08/12/6731 +4.80214,45.90828,6223,11,28,9,18,11,3.75,5.0,fr,30772,124,1295544,1,4,Active Shallow Crust,0.0,89.98885,0.0,11/28/6223 +4.80214,45.90828,9234,10,12,7,58,41,3.75,5.0,fr,30773,184,1295544,1,4,Active Shallow Crust,0.0,89.98885,0.0,10/12/9234 +4.80214,45.90828,2096,9,13,2,18,46,3.75,5.0,fr,30774,41,1295544,1,4,Active Shallow Crust,0.0,89.98885,0.0,09/13/2096 +4.80214,45.90828,6515,1,21,0,2,47,3.75,15.0,fr,30775,130,1295545,1,1,Active Shallow Crust,0.0,89.98885,0.0,01/21/6515 +4.80214,45.90828,8748,1,11,19,57,13,3.85,15.0,fr,30776,174,1295560,1,1,Active Shallow Crust,240.0106,57.9981,0.0,01/11/8748 +4.80214,45.90828,8804,11,23,5,0,31,3.95,5.0,fr,30777,176,1295568,1,1,Active Shallow Crust,0.0,89.99114,0.0,11/23/8804 +4.80214,45.90828,7389,5,8,8,31,34,4.05,5.0,fr,30778,147,1295580,1,2,Active Shallow Crust,0.0,89.98816,0.0,05/08/7389 +4.80214,45.90828,8488,9,28,16,54,27,4.05,5.0,fr,30779,169,1295580,1,2,Active Shallow Crust,0.0,89.98816,0.0,09/28/8488 +4.80214,45.90828,5948,7,21,16,36,12,4.25,5.0,fr,30780,118,1295604,1,3,Active Shallow Crust,0.0,89.9906,0.0,07/21/5948 +4.80214,45.90828,2190,7,12,21,29,42,4.25,5.0,fr,30781,43,1295604,1,3,Active Shallow Crust,0.0,89.9906,0.0,07/12/2190 +4.80214,45.90828,8605,2,9,10,38,56,4.25,5.0,fr,30782,172,1295604,1,3,Active Shallow Crust,0.0,89.9906,0.0,02/09/8605 +4.80214,45.90828,5917,3,12,2,36,26,4.25,15.0,fr,30783,118,1295605,1,1,Active Shallow Crust,0.0,89.9906,0.0,03/12/5917 +4.80214,45.90828,2887,4,11,23,44,43,4.45,15.0,fr,30784,57,1295629,1,1,Active Shallow Crust,0.0,89.99004,0.0,04/11/2887 +4.80214,45.90828,2186,2,19,19,23,57,4.45,5.0,fr,30785,43,1295637,1,1,Active Shallow Crust,128.8921,89.99377,0.0,02/19/2186 +3.24601,48.87631,5264,10,29,14,53,32,3.65,27.5,fr,30786,105,1296980,1,1,Active Shallow Crust,0.0,89.99103,-90.0,10/29/5264 +3.24601,48.87631,609,9,28,12,22,32,4.05,5.0,fr,30787,12,1297026,1,1,Active Shallow Crust,0.0,89.99057,-90.0,09/28/0609 +3.24601,48.87631,2409,5,8,12,9,40,4.15,5.0,fr,30788,48,1297032,1,1,Active Shallow Crust,0.0,89.99003,0.0,05/08/2409 +3.24601,48.87631,7065,7,27,8,25,37,4.35,27.5,fr,30789,141,1297061,1,1,Active Shallow Crust,240.0089,57.99612,0.0,07/27/7065 +5.85499,44.07692,440,11,25,5,15,8,3.55,5.0,fr,30790,8,1297920,1,3,Active Shallow Crust,0.0,89.99275,0.0,11/25/0440 +5.85499,44.07692,8193,9,7,17,0,25,3.55,5.0,fr,30791,163,1297920,1,3,Active Shallow Crust,0.0,89.99275,0.0,09/07/8193 +5.85499,44.07692,9262,5,21,16,6,4,3.55,5.0,fr,30792,185,1297920,1,3,Active Shallow Crust,0.0,89.99275,0.0,05/21/9262 +5.85499,44.07692,5683,6,25,9,12,33,3.55,27.5,fr,30793,113,1297922,1,1,Active Shallow Crust,0.0,89.99275,0.0,06/25/5683 +5.85499,44.07692,3752,4,27,1,52,52,3.55,15.0,fr,30794,75,1297924,1,1,Active Shallow Crust,240.0114,57.99837,0.0,04/27/3752 +5.85499,44.07692,6490,8,14,0,35,2,3.55,5.0,fr,30795,129,1297926,1,1,Active Shallow Crust,0.0,89.99267,-90.0,08/14/6490 +5.85499,44.07692,8173,1,29,13,38,28,3.65,5.0,fr,30796,163,1297932,1,2,Active Shallow Crust,0.0,89.98708,0.0,01/29/8173 +5.85499,44.07692,7396,1,24,7,20,17,3.65,5.0,fr,30797,147,1297932,1,2,Active Shallow Crust,0.0,89.98708,0.0,01/24/7396 +5.85499,44.07692,8157,5,28,17,19,29,3.65,15.0,fr,30798,163,1297933,1,1,Active Shallow Crust,0.0,89.98708,0.0,05/28/8157 +5.85499,44.07692,598,10,24,8,19,56,3.65,27.5,fr,30799,11,1297934,1,1,Active Shallow Crust,0.0,89.98708,0.0,10/24/0598 +5.85499,44.07692,9753,9,22,14,9,14,3.75,5.0,fr,30800,195,1297944,1,1,Active Shallow Crust,0.0,89.98849,0.0,09/22/9753 +5.85499,44.07692,347,2,2,9,0,13,3.75,5.0,fr,30801,6,1297950,1,1,Active Shallow Crust,0.0,89.98836,-90.0,02/02/0347 +5.85499,44.07692,3353,11,20,5,44,42,3.75,15.0,fr,30802,67,1297951,1,1,Active Shallow Crust,0.0,89.98836,-90.0,11/20/3353 +5.85499,44.07692,9929,3,31,7,59,39,3.85,5.0,fr,30803,198,1297956,1,1,Active Shallow Crust,0.0,89.98975,0.0,03/31/9929 +5.85499,44.07692,8179,8,12,9,57,3,3.85,15.0,fr,30804,163,1297966,1,1,Active Shallow Crust,128.8953,89.99487,0.0,08/12/8179 +5.85499,44.07692,4494,5,1,18,52,24,3.95,5.0,fr,30805,89,1297968,1,1,Active Shallow Crust,0.0,89.99086,0.0,05/01/4494 +5.85499,44.07692,4178,3,28,10,43,19,3.95,27.5,fr,30806,83,1297970,1,1,Active Shallow Crust,0.0,89.99086,0.0,03/28/4178 +5.85499,44.07692,8007,6,26,12,26,23,4.55,15.0,fr,30807,160,1298041,1,1,Active Shallow Crust,0.0,89.99084,0.0,06/26/8007 +5.85499,44.07692,4315,6,21,9,32,22,4.75,5.0,fr,30808,86,1298064,1,1,Active Shallow Crust,0.0,89.9909,0.0,06/21/4315 +5.85499,44.07692,7147,5,29,14,13,44,5.05,5.0,fr,30809,142,1298106,1,1,Active Shallow Crust,0.0,89.98957,-90.0,05/29/7147 +-2.55933,48.92043,8967,5,30,4,18,24,3.55,5.0,fr,30810,179,1298403,1,1,Active Shallow Crust,240.0128,57.99836,0.0,05/30/8967 +-2.55933,48.92043,5021,6,10,13,57,19,3.65,5.0,fr,30811,100,1298412,1,3,Active Shallow Crust,0.0,89.99114,0.0,06/10/5021 +-2.55933,48.92043,6960,2,1,14,26,13,3.65,5.0,fr,30812,139,1298412,1,3,Active Shallow Crust,0.0,89.99114,0.0,02/01/6960 +-2.55933,48.92043,3675,6,22,8,40,59,3.65,5.0,fr,30813,73,1298412,1,3,Active Shallow Crust,0.0,89.99114,0.0,06/22/3675 +-2.55933,48.92043,3699,2,10,9,52,33,3.75,5.0,fr,30814,73,1298424,1,1,Active Shallow Crust,0.0,89.98947,0.0,02/10/3699 +-2.55933,48.92043,4203,3,8,7,23,32,3.75,15.0,fr,30815,84,1298425,1,1,Active Shallow Crust,0.0,89.98947,0.0,03/08/4203 +-2.55933,48.92043,7647,2,13,11,10,16,3.75,5.0,fr,30816,152,1298427,1,1,Active Shallow Crust,240.0084,58.01813,0.0,02/13/7647 +-2.55933,48.92043,3449,1,14,12,54,45,3.75,5.0,fr,30817,68,1298430,1,1,Active Shallow Crust,0.0,89.98935,-90.0,01/14/3449 +-2.55933,48.92043,2729,12,10,6,30,57,4.05,15.0,fr,30818,54,1298470,1,1,Active Shallow Crust,128.8902,89.99441,0.0,12/10/2729 +-2.55933,48.92043,5962,1,1,3,11,22,4.45,5.0,fr,30819,119,1298511,1,1,Active Shallow Crust,240.006,57.99472,0.0,01/01/5962 +-2.55933,48.92043,3776,9,6,20,52,15,4.45,15.0,fr,30820,75,1298515,1,1,Active Shallow Crust,0.0,89.99049,-90.0,09/06/3776 +-2.55933,48.92043,1012,4,12,16,25,49,5.35,5.0,fr,30821,20,1298619,1,1,Active Shallow Crust,240.027,57.99823,0.0,04/12/1012 +-2.55933,48.92043,8740,5,20,20,20,29,5.95,15.0,fr,30822,174,1298695,1,1,Active Shallow Crust,0.0,89.99005,-90.0,05/20/8740 +-0.08113,47.3634,2051,10,15,1,33,7,3.55,5.0,fr,30823,41,1298880,1,1,Active Shallow Crust,0.0,89.98997,0.0,10/15/2051 +-0.08113,47.3634,6762,7,13,0,37,36,3.55,5.0,fr,30824,135,1298883,1,1,Active Shallow Crust,240.0123,57.99818,0.0,07/13/6762 +-0.08113,47.3634,5177,2,15,10,36,1,3.65,15.0,fr,30825,103,1298899,1,1,Active Shallow Crust,0.0,89.98999,-90.0,02/15/5177 +-0.08113,47.3634,2976,12,25,1,2,3,3.75,5.0,fr,30826,59,1298904,1,1,Active Shallow Crust,0.0,89.99,0.0,12/25/2976 +-0.08113,47.3634,2696,11,28,10,24,21,3.85,5.0,fr,30827,53,1298916,1,1,Active Shallow Crust,0.0,89.99003,0.0,11/28/2696 +-0.08113,47.3634,7368,10,16,7,46,2,3.95,15.0,fr,30828,147,1298929,1,1,Active Shallow Crust,360.0,89.99004,0.0,10/16/7368 +-0.08113,47.3634,7575,9,24,12,5,55,4.35,27.5,fr,30829,151,1298981,1,1,Active Shallow Crust,240.0086,57.99598,0.0,09/24/7575 +-0.08113,47.3634,8372,12,12,21,43,27,4.35,15.0,fr,30830,167,1298986,1,1,Active Shallow Crust,128.8977,89.98277,0.0,12/12/8372 +-0.08113,47.3634,5549,4,20,5,44,53,4.55,5.0,fr,30831,110,1299000,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/20/5549 +-0.08113,47.3634,6581,10,11,8,22,54,4.75,5.0,fr,30832,131,1299027,1,1,Active Shallow Crust,240.0078,58.00455,0.0,10/11/6581 +-0.08113,47.3634,4368,10,12,17,38,45,4.85,5.0,fr,30833,87,1299036,1,1,Active Shallow Crust,360.0,89.99001,0.0,10/12/4368 +-0.08113,47.3634,7920,1,27,0,7,11,4.85,15.0,fr,30834,158,1299037,1,1,Active Shallow Crust,360.0,89.99001,0.0,01/27/7920 +-0.08113,47.3634,4602,8,2,20,4,14,4.95,15.0,fr,30835,92,1299055,1,1,Active Shallow Crust,0.0,89.99001,-90.0,08/02/4602 +-0.08113,47.3634,9731,4,29,12,35,57,5.35,15.0,fr,30836,194,1299097,1,1,Active Shallow Crust,360.0,89.99,0.0,04/29/9731 +6.3758,49.93475,8540,7,29,3,18,27,3.55,15.0,fr,30837,170,1299361,1,1,Active Shallow Crust,0.0,89.98702,0.0,07/29/8540 +6.3758,49.93475,9637,3,22,3,25,28,3.65,5.0,fr,30838,192,1299372,1,1,Active Shallow Crust,0.0,89.98843,0.0,03/22/9637 +6.3758,49.93475,8995,11,30,14,42,32,3.65,15.0,fr,30839,179,1299373,1,1,Active Shallow Crust,0.0,89.98843,0.0,11/30/8995 +6.3758,49.93475,6051,12,3,23,37,58,3.95,5.0,fr,30840,121,1299408,1,1,Active Shallow Crust,0.0,89.99181,0.0,12/03/6051 +6.3758,49.93475,7835,9,17,17,50,36,3.95,27.5,fr,30841,156,1299410,1,1,Active Shallow Crust,0.0,89.99181,0.0,09/17/7835 +6.3758,49.93475,7823,5,30,13,36,59,4.05,15.0,fr,30842,156,1299421,1,1,Active Shallow Crust,0.0,89.98905,0.0,05/30/7823 +6.3758,49.93475,7595,5,14,16,17,50,4.05,5.0,fr,30843,151,1299429,1,1,Active Shallow Crust,128.8906,89.9927,0.0,05/14/7595 +6.3758,49.93475,7704,3,27,17,8,51,4.35,5.0,fr,30844,154,1299456,1,1,Active Shallow Crust,0.0,89.98966,0.0,03/27/7704 +3.2117,48.49375,5563,11,7,10,31,36,3.55,5.0,fr,30845,111,1299840,1,1,Active Shallow Crust,0.0,89.98997,0.0,11/07/5563 +0.85807,45.41556,4552,9,20,12,22,0,3.55,27.5,fr,30846,91,1300325,1,1,Active Shallow Crust,240.012,57.9982,0.0,09/20/4552 +0.85807,45.41556,4030,3,14,15,38,49,3.95,5.0,fr,30847,80,1300368,1,1,Active Shallow Crust,0.0,89.98995,0.0,03/14/4030 +4.88979,44.7425,6204,2,9,14,15,51,3.55,5.0,fr,30848,124,1300800,1,1,Active Shallow Crust,0.0,89.99284,0.0,02/09/6204 +4.88979,44.7425,5252,11,29,10,1,21,3.55,15.0,fr,30849,105,1300804,1,1,Active Shallow Crust,240.0118,57.99833,0.0,11/29/5252 +4.88979,44.7425,5239,9,10,10,6,9,3.65,5.0,fr,30850,104,1300812,1,1,Active Shallow Crust,0.0,89.98724,0.0,09/10/5239 +4.88979,44.7425,2770,12,26,22,51,58,3.65,15.0,fr,30851,55,1300813,1,3,Active Shallow Crust,0.0,89.98724,0.0,12/26/2770 +4.88979,44.7425,2071,12,11,3,5,23,3.65,15.0,fr,30852,41,1300813,1,3,Active Shallow Crust,0.0,89.98724,0.0,12/11/2071 +4.88979,44.7425,4714,9,30,14,25,21,3.65,15.0,fr,30853,94,1300813,1,3,Active Shallow Crust,0.0,89.98724,0.0,09/30/4714 +4.88979,44.7425,448,10,11,9,3,30,3.65,15.0,fr,30854,8,1300816,1,1,Active Shallow Crust,240.0013,58.01198,0.0,10/11/0448 +4.88979,44.7425,5211,12,27,12,51,17,3.75,5.0,fr,30855,104,1300824,1,1,Active Shallow Crust,0.0,89.98862,0.0,12/27/5211 +4.88979,44.7425,5652,4,19,21,29,55,3.75,5.0,fr,30856,113,1300827,1,1,Active Shallow Crust,240.0085,58.01715,0.0,04/19/5652 +4.88979,44.7425,2984,4,29,15,28,59,3.75,5.0,fr,30857,59,1300833,1,1,Active Shallow Crust,128.8966,89.96746,0.0,04/29/2984 +4.88979,44.7425,1456,11,28,7,37,12,3.85,5.0,fr,30858,29,1300836,1,2,Active Shallow Crust,0.0,89.98986,0.0,11/28/1456 +4.88979,44.7425,5242,10,13,20,48,30,3.85,5.0,fr,30859,104,1300836,1,2,Active Shallow Crust,0.0,89.98986,0.0,10/13/5242 +4.88979,44.7425,5640,6,10,10,46,35,3.85,15.0,fr,30860,112,1300837,1,1,Active Shallow Crust,0.0,89.98986,0.0,06/10/5640 +4.88979,44.7425,8975,9,16,1,38,54,3.85,5.0,fr,30861,179,1300839,1,1,Active Shallow Crust,240.0104,57.99863,0.0,09/16/8975 +4.88979,44.7425,6551,8,31,10,47,4,3.95,5.0,fr,30862,131,1300851,1,1,Active Shallow Crust,240.0192,58.00433,0.0,08/31/6551 +4.88979,44.7425,6770,10,10,8,57,41,4.05,15.0,fr,30863,135,1300870,1,1,Active Shallow Crust,128.8917,89.99194,0.0,10/10/6770 +4.88979,44.7425,7254,3,31,20,0,54,4.15,5.0,fr,30864,145,1300872,1,1,Active Shallow Crust,0.0,89.98923,0.0,03/31/7254 +4.88979,44.7425,2169,6,10,14,32,19,4.25,5.0,fr,30865,43,1300884,1,1,Active Shallow Crust,0.0,89.9904,0.0,06/10/2169 +4.88979,44.7425,4500,7,28,19,58,38,4.35,5.0,fr,30866,89,1300896,1,1,Active Shallow Crust,0.0,89.98859,0.0,07/28/4500 +4.88979,44.7425,3265,6,12,12,25,6,4.35,15.0,fr,30867,65,1300897,1,1,Active Shallow Crust,0.0,89.98859,0.0,06/12/3265 +4.88979,44.7425,820,3,1,14,50,56,4.45,5.0,fr,30868,16,1300908,1,2,Active Shallow Crust,0.0,89.98984,0.0,03/01/0820 +4.88979,44.7425,662,9,28,23,27,7,4.45,5.0,fr,30869,13,1300908,1,2,Active Shallow Crust,0.0,89.98984,0.0,09/28/0662 +4.88979,44.7425,5254,4,18,17,28,7,5.25,5.0,fr,30870,105,1301004,1,1,Active Shallow Crust,0.0,89.98988,0.0,04/18/5254 +-2.90815,42.8521,2998,2,20,22,35,59,3.55,5.0,fr,30871,59,1301760,1,2,Active Shallow Crust,0.0,89.98891,0.0,02/20/2998 +-2.90815,42.8521,652,9,28,18,2,46,3.55,5.0,fr,30872,13,1301760,1,2,Active Shallow Crust,0.0,89.98891,0.0,09/28/0652 +-2.90815,42.8521,6932,3,28,5,38,54,3.55,15.0,fr,30873,138,1301761,1,1,Active Shallow Crust,0.0,89.98891,0.0,03/28/6932 +-2.90815,42.8521,10000,6,11,17,43,35,3.55,15.0,fr,30874,199,1301767,1,1,Active Shallow Crust,0.0,89.98878,-90.0,06/11/10000 +-2.90815,42.8521,2395,5,7,18,44,22,3.65,5.0,fr,30875,47,1301772,1,1,Active Shallow Crust,0.0,89.99012,0.0,05/07/2395 +-2.90815,42.8521,7322,2,14,11,12,14,3.65,5.0,fr,30876,146,1301781,1,1,Active Shallow Crust,128.9007,89.96371,0.0,02/14/7322 +-2.90815,42.8521,9305,1,8,11,43,31,3.75,15.0,fr,30877,186,1301785,1,1,Active Shallow Crust,0.0,89.99119,0.0,01/08/9305 +-2.90815,42.8521,5216,9,30,10,1,16,3.85,5.0,fr,30878,104,1301796,1,1,Active Shallow Crust,0.0,89.98953,0.0,09/30/5216 +-2.90815,42.8521,2253,3,4,11,8,12,3.95,5.0,fr,30879,45,1301808,1,1,Active Shallow Crust,0.0,89.99067,0.0,03/04/2253 +-2.90815,42.8521,9683,7,3,22,4,51,3.95,5.0,fr,30880,193,1301811,1,1,Active Shallow Crust,240.0189,58.00503,0.0,07/03/9683 +-2.90815,42.8521,5782,9,10,0,1,36,4.05,5.0,fr,30881,115,1301820,1,1,Active Shallow Crust,0.0,89.98961,0.0,09/10/5782 +-2.90815,42.8521,8737,9,9,6,59,40,4.05,15.0,fr,30882,174,1301827,1,1,Active Shallow Crust,0.0,89.98949,-90.0,09/09/8737 +-2.90815,42.8521,3161,12,15,22,23,57,4.15,5.0,fr,30883,63,1301832,1,1,Active Shallow Crust,0.0,89.99074,0.0,12/15/3161 +-2.90815,42.8521,6675,10,31,15,24,38,4.25,5.0,fr,30884,133,1301844,1,1,Active Shallow Crust,0.0,89.99009,0.0,10/31/6675 +-2.90815,42.8521,651,6,8,11,4,46,4.25,15.0,fr,30885,13,1301845,1,1,Active Shallow Crust,0.0,89.99009,0.0,06/08/0651 +-2.90815,42.8521,6078,8,13,20,31,26,4.35,15.0,fr,30886,121,1301857,1,1,Active Shallow Crust,0.0,89.9897,0.0,08/13/6078 +-2.90815,42.8521,6467,9,22,10,29,26,4.85,5.0,fr,30887,129,1301925,1,1,Active Shallow Crust,128.8937,89.98904,0.0,09/22/6467 +-2.90815,42.8521,8041,3,25,23,13,16,5.15,15.0,fr,30888,160,1301953,1,1,Active Shallow Crust,0.0,89.99004,0.0,03/25/8041 +-2.90815,42.8521,2640,6,24,11,53,22,5.45,5.0,fr,30889,52,1301991,1,1,Active Shallow Crust,240.0261,57.99796,0.0,06/24/2640 +-2.11511,49.35725,7551,5,7,2,16,31,3.55,5.0,fr,30890,151,1302240,1,1,Active Shallow Crust,0.0,89.99015,0.0,05/07/7551 +-2.11511,49.35725,7902,7,13,0,57,53,3.55,15.0,fr,30891,158,1302241,1,1,Active Shallow Crust,0.0,89.99015,0.0,07/13/7902 +-2.11511,49.35725,6764,7,6,12,9,33,3.55,15.0,fr,30892,135,1302244,1,1,Active Shallow Crust,240.0127,57.99845,0.0,07/06/6764 +-2.11511,49.35725,3928,9,10,1,33,44,3.65,5.0,fr,30893,78,1302252,1,3,Active Shallow Crust,0.0,89.99122,0.0,09/10/3928 +-2.11511,49.35725,2092,1,19,20,18,29,3.65,5.0,fr,30894,41,1302252,1,3,Active Shallow Crust,0.0,89.99122,0.0,01/19/2092 +-2.11511,49.35725,6299,6,28,9,52,52,3.65,5.0,fr,30895,125,1302252,1,3,Active Shallow Crust,0.0,89.99122,0.0,06/28/6299 +-2.11511,49.35725,6449,5,11,11,19,16,3.65,15.0,fr,30896,128,1302253,1,1,Active Shallow Crust,0.0,89.99122,0.0,05/11/6449 +-2.11511,49.35725,2341,4,29,15,11,21,3.65,5.0,fr,30897,46,1302255,1,1,Active Shallow Crust,240.0014,58.01318,0.0,04/29/2341 +-2.11511,49.35725,1270,10,16,19,36,58,3.65,5.0,fr,30898,25,1302258,1,1,Active Shallow Crust,0.0,89.99112,-90.0,10/16/1270 +-2.11511,49.35725,4923,12,22,22,53,53,3.65,5.0,fr,30899,98,1302261,1,1,Active Shallow Crust,128.8999,89.96358,0.0,12/22/4923 +-2.11511,49.35725,102,11,20,9,41,18,3.65,27.5,fr,30900,2,1302263,1,1,Active Shallow Crust,128.8999,89.96358,0.0,11/20/0102 +-2.11511,49.35725,5707,1,21,22,25,40,3.75,27.5,fr,30901,114,1302266,1,1,Active Shallow Crust,0.0,89.98956,0.0,01/21/5707 +-2.11511,49.35725,6298,4,23,16,55,42,3.75,5.0,fr,30902,125,1302273,1,1,Active Shallow Crust,128.896,89.96754,0.0,04/23/6298 +-2.11511,49.35725,2393,10,29,17,10,34,3.85,15.0,fr,30903,47,1302277,1,1,Active Shallow Crust,0.0,89.9907,0.0,10/29/2393 +-2.11511,49.35725,5246,11,14,7,9,3,3.95,15.0,fr,30904,104,1302289,1,1,Active Shallow Crust,0.0,89.98964,0.0,11/14/5246 +-2.11511,49.35725,5479,7,23,3,8,43,4.05,5.0,fr,30905,109,1302300,1,1,Active Shallow Crust,0.0,89.99077,0.0,07/23/5479 +-2.11511,49.35725,2815,4,28,7,26,31,4.15,5.0,fr,30906,56,1302321,1,1,Active Shallow Crust,128.8968,89.99424,0.0,04/28/2815 +-2.11511,49.35725,4742,1,9,23,9,11,4.55,15.0,fr,30907,94,1302361,1,1,Active Shallow Crust,0.0,89.98962,0.0,01/09/4742 +-2.11511,49.35725,7655,10,16,22,31,44,4.55,5.0,fr,30908,153,1302369,1,1,Active Shallow Crust,128.8932,89.9858,0.0,10/16/7655 +-3.06891,47.93082,8157,1,9,1,4,23,3.55,5.0,fr,30909,163,1302720,1,2,Active Shallow Crust,0.0,89.98987,0.0,01/09/8157 +-3.06891,47.93082,9687,1,6,21,27,23,3.55,5.0,fr,30910,193,1302720,1,2,Active Shallow Crust,0.0,89.98987,0.0,01/06/9687 +-3.06891,47.93082,3370,11,6,0,27,0,3.55,15.0,fr,30911,67,1302721,1,1,Active Shallow Crust,0.0,89.98987,0.0,11/06/3370 +-3.06891,47.93082,5284,10,29,13,9,48,3.55,15.0,fr,30912,105,1302724,1,1,Active Shallow Crust,240.0124,57.99784,0.0,10/29/5284 +-3.06891,47.93082,3498,5,18,20,9,37,3.55,15.0,fr,30913,69,1302730,1,1,Active Shallow Crust,128.8968,89.99324,0.0,05/18/3498 +-3.06891,47.93082,7946,7,24,3,35,10,3.65,5.0,fr,30914,158,1302732,1,1,Active Shallow Crust,0.0,89.99097,0.0,07/24/7946 +-3.06891,47.93082,6042,9,19,17,45,13,3.65,5.0,fr,30915,120,1302735,1,1,Active Shallow Crust,240.001,58.01298,0.0,09/19/6042 +-3.06891,47.93082,5989,8,17,13,58,3,3.75,15.0,fr,30916,119,1302745,1,1,Active Shallow Crust,0.0,89.98927,0.0,08/17/5989 +-3.06891,47.93082,5192,2,4,4,51,6,3.75,5.0,fr,30917,103,1302747,1,1,Active Shallow Crust,240.0091,58.01729,0.0,02/04/5192 +-3.06891,47.93082,5081,9,21,0,7,28,3.85,27.5,fr,30918,101,1302758,1,1,Active Shallow Crust,0.0,89.99043,0.0,09/21/5081 +-3.06891,47.93082,1269,4,19,2,14,22,3.95,5.0,fr,30919,25,1302768,1,1,Active Shallow Crust,0.0,89.98934,0.0,04/19/1269 +-3.06891,47.93082,9320,12,30,15,6,16,3.95,15.0,fr,30920,186,1302769,1,1,Active Shallow Crust,0.0,89.98934,0.0,12/30/9320 +-3.06891,47.93082,829,10,23,22,48,36,4.15,5.0,fr,30921,16,1302792,1,1,Active Shallow Crust,0.0,89.98984,0.0,10/23/0829 +-3.06891,47.93082,8766,11,27,3,10,8,4.15,15.0,fr,30922,175,1302793,1,1,Active Shallow Crust,0.0,89.98984,0.0,11/27/8766 +-3.06891,47.93082,5561,5,21,22,31,0,4.15,15.0,fr,30923,111,1302796,1,1,Active Shallow Crust,240.0089,57.9972,0.0,05/21/5561 +-3.06891,47.93082,9548,12,11,13,51,30,4.25,15.0,fr,30924,190,1302805,1,1,Active Shallow Crust,0.0,89.98943,0.0,12/11/9548 +-3.06891,47.93082,9879,11,26,15,28,21,4.45,15.0,fr,30925,197,1302829,1,1,Active Shallow Crust,0.0,89.99041,0.0,11/26/9879 +-3.06891,47.93082,2129,5,21,6,42,2,4.85,27.5,fr,30926,42,1302878,1,1,Active Shallow Crust,0.0,89.99017,0.0,05/21/2129 +-3.06891,47.93082,1198,4,22,21,57,29,5.15,5.0,fr,30927,23,1302912,1,1,Active Shallow Crust,0.0,89.98982,0.0,04/22/1198 +-3.06891,47.93082,8056,6,11,10,6,7,5.25,15.0,fr,30928,161,1302934,1,1,Active Shallow Crust,128.8824,89.98703,0.0,06/11/8056 +-1.01206,49.43483,7979,1,11,2,12,40,3.55,15.0,fr,30929,159,1303201,1,1,Active Shallow Crust,0.0,89.99017,0.0,01/11/7979 +-1.01206,49.43483,3237,2,22,14,38,45,3.55,5.0,fr,30930,64,1303203,1,1,Active Shallow Crust,240.0125,57.99818,0.0,02/22/3237 +-1.01206,49.43483,762,4,25,7,58,15,3.65,15.0,fr,30931,15,1303216,1,1,Active Shallow Crust,240.0013,58.01281,0.0,04/25/0762 +-1.01206,49.43483,5961,4,19,19,46,9,3.75,5.0,fr,30932,119,1303224,1,2,Active Shallow Crust,0.0,89.98958,0.0,04/19/5961 +-1.01206,49.43483,7436,8,8,12,45,17,3.75,5.0,fr,30933,148,1303224,1,2,Active Shallow Crust,0.0,89.98958,0.0,08/08/7436 +-1.01206,49.43483,9778,9,27,17,50,15,3.85,5.0,fr,30934,195,1303236,1,1,Active Shallow Crust,0.0,89.98956,0.0,09/27/9778 +-1.01206,49.43483,1809,12,23,1,50,42,3.95,5.0,fr,30935,36,1303257,1,1,Active Shallow Crust,128.9,89.9938,0.0,12/23/1809 +-1.01206,49.43483,5252,4,16,0,34,4,4.05,15.0,fr,30936,105,1303261,1,1,Active Shallow Crust,0.0,89.98986,0.0,04/16/5252 +-1.01206,49.43483,9833,6,25,16,47,3,4.25,5.0,fr,30937,196,1303284,1,1,Active Shallow Crust,0.0,89.98975,0.0,06/25/9833 +-1.01206,49.43483,6247,4,21,16,25,9,4.35,5.0,fr,30938,124,1303296,1,1,Active Shallow Crust,0.0,89.99021,0.0,04/21/6247 +-1.01206,49.43483,133,4,23,8,24,34,4.35,15.0,fr,30939,2,1303297,1,1,Active Shallow Crust,0.0,89.99021,0.0,04/23/0133 +-1.01206,49.43483,8605,12,8,18,49,24,4.45,5.0,fr,30940,172,1303311,1,1,Active Shallow Crust,240.006,57.99481,0.0,12/08/8605 +-1.01206,49.43483,8557,11,9,6,12,11,5.35,5.0,fr,30941,171,1303416,1,1,Active Shallow Crust,0.0,89.99009,0.0,11/09/8557 +0.65304,41.32017,5360,12,24,11,40,7,3.55,5.0,fr,30942,107,1303680,1,1,Active Shallow Crust,0.0,89.98959,0.0,12/24/5360 +0.65304,41.32017,8955,9,12,10,12,33,3.65,5.0,fr,30943,179,1303692,1,1,Active Shallow Crust,0.0,89.98988,0.0,09/12/8955 +0.65304,41.32017,5929,4,12,20,40,0,3.85,5.0,fr,30944,118,1303719,1,1,Active Shallow Crust,240.0102,57.99775,0.0,04/12/5929 +0.65304,41.32017,8828,6,2,11,8,16,4.15,5.0,fr,30945,176,1303752,1,1,Active Shallow Crust,0.0,89.99004,0.0,06/02/8828 +1.99119,44.30614,8111,9,27,22,38,16,3.55,5.0,fr,30946,162,1304160,1,2,Active Shallow Crust,0.0,89.98917,0.0,09/27/8111 +1.99119,44.30614,1130,3,6,14,29,43,3.55,5.0,fr,30947,22,1304160,1,2,Active Shallow Crust,0.0,89.98917,0.0,03/06/1130 +1.99119,44.30614,4716,7,4,6,48,36,3.55,15.0,fr,30948,94,1304167,1,1,Active Shallow Crust,0.0,89.99088,-90.0,07/04/4716 +1.99119,44.30614,1645,7,29,21,58,3,3.65,5.0,fr,30949,32,1304172,1,1,Active Shallow Crust,0.0,89.99036,0.0,07/29/1645 +1.99119,44.30614,5859,1,13,12,51,7,3.65,15.0,fr,30950,117,1304176,1,1,Active Shallow Crust,240.0008,58.013,0.0,01/13/5859 +1.99119,44.30614,8629,11,30,13,22,9,3.65,5.0,fr,30951,172,1304178,1,1,Active Shallow Crust,0.0,89.99024,-90.0,11/30/8629 +1.99119,44.30614,7745,2,4,20,24,24,3.75,15.0,fr,30952,154,1304185,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/04/7745 +1.99119,44.30614,6966,5,9,22,26,25,3.95,5.0,fr,30953,139,1304208,1,1,Active Shallow Crust,0.0,89.98975,0.0,05/09/6966 +1.99119,44.30614,558,8,7,10,5,36,3.95,5.0,fr,30954,11,1304217,1,1,Active Shallow Crust,128.9006,89.99374,0.0,08/07/0558 +1.86522,41.2256,6563,6,6,16,7,15,3.55,5.0,fr,30955,131,1304640,1,3,Active Shallow Crust,0.0,89.99052,0.0,06/06/6563 +1.86522,41.2256,3341,7,18,14,38,11,3.55,5.0,fr,30956,66,1304640,1,3,Active Shallow Crust,0.0,89.99052,0.0,07/18/3341 +1.86522,41.2256,6227,3,15,7,34,34,3.55,5.0,fr,30957,124,1304640,1,3,Active Shallow Crust,0.0,89.99052,0.0,03/15/6227 +1.86522,41.2256,6719,6,16,1,32,36,3.55,27.5,fr,30958,134,1304642,1,1,Active Shallow Crust,0.0,89.99052,0.0,06/16/6719 +1.86522,41.2256,5745,9,1,14,43,56,3.55,15.0,fr,30959,114,1304644,1,1,Active Shallow Crust,240.0117,57.99818,0.0,09/01/5745 +1.86522,41.2256,6502,3,10,14,55,11,3.55,15.0,fr,30960,130,1304650,1,2,Active Shallow Crust,128.8967,89.99336,0.0,03/10/6502 +1.86522,41.2256,8480,6,30,12,22,34,3.55,15.0,fr,30961,169,1304650,1,2,Active Shallow Crust,128.8967,89.99336,0.0,06/30/8480 +1.86522,41.2256,2205,7,4,4,34,4,3.65,15.0,fr,30962,44,1304653,1,1,Active Shallow Crust,0.0,89.98986,0.0,07/04/2205 +1.86522,41.2256,4428,5,31,14,3,52,3.85,5.0,fr,30963,88,1304682,1,1,Active Shallow Crust,0.0,89.99049,-90.0,05/31/4428 +1.86522,41.2256,6881,10,25,2,12,16,3.95,5.0,fr,30964,137,1304688,1,1,Active Shallow Crust,0.0,89.99043,0.0,10/25/6881 +1.86522,41.2256,1912,8,4,20,16,25,3.95,5.0,fr,30965,38,1304691,1,1,Active Shallow Crust,240.019,58.00501,0.0,08/04/1912 +1.86522,41.2256,7766,8,18,15,39,26,4.05,5.0,fr,30966,155,1304700,1,1,Active Shallow Crust,0.0,89.9904,0.0,08/18/7766 +1.86522,41.2256,2277,6,13,9,53,8,4.25,5.0,fr,30967,45,1304727,1,1,Active Shallow Crust,240.0065,57.99396,0.0,06/13/2277 +1.86522,41.2256,1880,7,24,23,11,3,4.25,5.0,fr,30968,37,1304733,1,1,Active Shallow Crust,128.8952,89.9809,0.0,07/24/1880 +1.86522,41.2256,5871,3,22,9,52,52,4.45,5.0,fr,30969,117,1304748,1,1,Active Shallow Crust,0.0,89.98991,0.0,03/22/5871 +1.86522,41.2256,1840,7,1,15,13,25,4.45,15.0,fr,30970,36,1304749,1,1,Active Shallow Crust,0.0,89.98991,0.0,07/01/1840 +1.865232,41.2256,5487,7,20,16,37,33,6.65,10.68981,fr,30971,109,1305012,1,1,Active Shallow Crust,360.0,89.99002,0.0,07/20/5487 +1.86408,44.41645,4810,4,10,7,31,33,3.55,5.0,fr,30972,96,1305120,1,1,Active Shallow Crust,0.0,89.9892,0.0,04/10/4810 +1.86408,44.41645,4463,10,21,17,0,58,3.55,5.0,fr,30973,89,1305129,1,1,Active Shallow Crust,128.8962,89.9937,0.0,10/21/4463 +1.86408,44.41645,2021,4,1,3,46,30,3.65,27.5,fr,30974,40,1305134,1,1,Active Shallow Crust,0.0,89.99037,0.0,04/01/2021 +1.86408,44.41645,3923,3,2,21,34,14,3.85,15.0,fr,30975,78,1305157,1,1,Active Shallow Crust,0.0,89.9898,0.0,03/02/3923 +1.86408,44.41645,9849,10,9,23,32,56,3.85,15.0,fr,30976,196,1305160,1,1,Active Shallow Crust,240.0106,57.99757,0.0,10/09/9849 +1.86408,44.41645,6254,7,1,21,52,15,4.65,27.5,fr,30977,125,1305257,1,1,Active Shallow Crust,240.0101,57.99417,0.0,07/01/6254 +1.86408,44.41645,5725,5,15,2,54,30,4.75,27.5,fr,30978,114,1305266,1,1,Active Shallow Crust,0.0,89.99005,0.0,05/15/5725 +1.86408,44.41645,1868,3,27,19,9,47,5.05,27.5,fr,30979,37,1305302,1,1,Active Shallow Crust,0.0,89.99007,0.0,03/27/1868 +-5.30791,47.15098,1272,6,15,1,13,43,3.55,5.0,fr,30980,25,1305603,1,1,Active Shallow Crust,240.013,57.99731,0.0,06/15/1272 +-1.85764,46.68206,8940,12,24,22,9,32,3.55,5.0,fr,30981,178,1306080,1,2,Active Shallow Crust,0.0,89.98962,0.0,12/24/8940 +-1.85764,46.68206,2455,6,28,4,0,31,3.55,5.0,fr,30982,49,1306080,1,2,Active Shallow Crust,0.0,89.98962,0.0,06/28/2455 +-1.85764,46.68206,8705,6,27,10,23,44,3.55,15.0,fr,30983,174,1306084,1,1,Active Shallow Crust,240.0122,57.99793,0.0,06/27/8705 +-1.85764,46.68206,3590,2,25,14,7,9,3.65,5.0,fr,30984,71,1306092,1,1,Active Shallow Crust,0.0,89.99075,0.0,02/25/3590 +-1.85764,46.68206,327,11,2,18,42,28,3.65,27.5,fr,30985,6,1306103,1,1,Active Shallow Crust,128.9006,89.96353,0.0,11/02/0327 +-1.85764,46.68206,388,10,12,16,37,49,3.75,5.0,fr,30986,7,1306104,1,1,Active Shallow Crust,0.0,89.99039,0.0,10/12/0388 +-1.85764,46.68206,9682,12,18,21,17,1,3.95,27.5,fr,30987,193,1306130,1,1,Active Shallow Crust,0.0,89.99018,0.0,12/18/9682 +-1.85764,46.68206,5620,7,23,19,4,23,4.15,5.0,fr,30988,112,1306152,1,1,Active Shallow Crust,0.0,89.9896,0.0,07/23/5620 +9.34748,49.63828,6442,7,10,17,58,23,3.65,5.0,fr,30989,128,1306575,1,1,Active Shallow Crust,239.9998,58.01364,0.0,07/10/6442 +9.34748,49.63828,2811,10,30,14,39,8,4.45,15.0,fr,30990,56,1306669,1,1,Active Shallow Crust,0.0,89.99073,0.0,10/30/2811 +4.85168,43.01247,4057,12,13,6,58,37,3.65,15.0,fr,30991,81,1307533,1,1,Active Shallow Crust,0.0,89.98685,0.0,12/13/4057 +4.85168,43.01247,2170,4,9,17,14,32,5.05,5.0,fr,30992,43,1307703,1,1,Active Shallow Crust,240.0205,57.99709,0.0,04/09/2170 +4.85168,43.01247,9505,11,26,17,4,4,5.65,5.0,fr,30993,190,1307772,1,1,Active Shallow Crust,0.0,89.99014,0.0,11/26/9505 +-0.49508,49.59978,2868,6,25,10,59,10,3.55,5.0,fr,30994,57,1308006,1,1,Active Shallow Crust,0.0,89.99008,-90.0,06/25/2868 +-0.49508,49.59978,6149,4,3,23,21,57,3.65,5.0,fr,30995,122,1308012,1,1,Active Shallow Crust,0.0,89.99017,0.0,04/03/6149 +-0.49508,49.59978,4701,4,23,7,26,10,3.75,27.5,fr,30996,94,1308026,1,1,Active Shallow Crust,0.0,89.98994,0.0,04/23/4701 +-0.49508,49.59978,6249,6,22,23,33,44,3.85,15.0,fr,30997,124,1308037,1,1,Active Shallow Crust,0.0,89.98988,0.0,06/22/6249 +-0.49508,49.59978,6054,9,8,19,34,37,3.95,15.0,fr,30998,121,1308058,1,1,Active Shallow Crust,128.9,89.99381,0.0,09/08/6054 +-0.49508,49.59978,5020,12,14,6,24,44,4.05,5.0,fr,30999,100,1308060,1,1,Active Shallow Crust,0.0,89.98989,0.0,12/14/5020 +-0.49508,49.59978,8399,7,24,7,58,40,4.05,27.5,fr,31000,167,1308065,1,1,Active Shallow Crust,240.0066,58.00588,0.0,07/24/8399 +-0.49508,49.59978,2682,2,24,13,1,12,4.35,15.0,fr,31001,53,1308106,1,1,Active Shallow Crust,128.8971,89.9828,0.0,02/24/2682 +-0.49508,49.59978,9838,6,24,1,22,32,5.15,5.0,fr,31002,196,1308198,1,1,Active Shallow Crust,0.0,89.98997,-90.0,06/24/9838 +2.6907,42.83049,3035,5,27,9,20,3,3.55,5.0,fr,31003,60,1308480,1,2,Active Shallow Crust,0.0,89.98891,0.0,05/27/3035 +2.6907,42.83049,1689,6,26,15,4,34,3.55,5.0,fr,31004,33,1308480,1,2,Active Shallow Crust,0.0,89.98891,0.0,06/26/1689 +2.6907,42.83049,7555,8,16,22,59,5,3.55,15.0,fr,31005,151,1308481,1,1,Active Shallow Crust,0.0,89.98891,0.0,08/16/7555 +2.6907,42.83049,5740,8,6,19,26,1,3.55,27.5,fr,31006,114,1308482,1,1,Active Shallow Crust,0.0,89.98891,0.0,08/06/5740 +2.6907,42.83049,4438,3,9,18,17,40,3.55,5.0,fr,31007,88,1308483,1,1,Active Shallow Crust,240.0121,57.99836,0.0,03/09/4438 +2.6907,42.83049,3795,9,21,5,33,2,3.55,15.0,fr,31008,75,1308487,1,1,Active Shallow Crust,0.0,89.98878,-90.0,09/21/3795 +2.6907,42.83049,3719,6,4,5,35,11,3.65,5.0,fr,31009,74,1308492,1,4,Active Shallow Crust,0.0,89.99011,0.0,06/04/3719 +2.6907,42.83049,3896,7,23,7,45,44,3.65,5.0,fr,31010,77,1308492,1,4,Active Shallow Crust,0.0,89.99011,0.0,07/23/3896 +2.6907,42.83049,3415,9,19,21,37,58,3.65,5.0,fr,31011,68,1308492,1,4,Active Shallow Crust,0.0,89.99011,0.0,09/19/3415 +2.6907,42.83049,2389,7,24,11,26,1,3.65,5.0,fr,31012,47,1308492,1,4,Active Shallow Crust,0.0,89.99011,0.0,07/24/2389 +2.6907,42.83049,4159,10,15,16,50,27,3.65,15.0,fr,31013,83,1308493,1,1,Active Shallow Crust,0.0,89.99011,0.0,10/15/4159 +2.6907,42.83049,8752,9,24,4,27,43,3.65,5.0,fr,31014,175,1308495,1,2,Active Shallow Crust,240.0002,58.01298,0.0,09/24/8752 +2.6907,42.83049,2248,1,11,11,14,4,3.65,5.0,fr,31015,44,1308495,1,2,Active Shallow Crust,240.0002,58.01298,0.0,01/11/2248 +2.6907,42.83049,4535,1,21,22,24,8,3.65,15.0,fr,31016,90,1308502,1,1,Active Shallow Crust,128.9002,89.96346,0.0,01/21/4535 +2.6907,42.83049,2929,3,10,2,18,21,3.75,5.0,fr,31017,58,1308504,1,3,Active Shallow Crust,0.0,89.99119,0.0,03/10/2929 +2.6907,42.83049,4387,9,8,12,16,11,3.75,5.0,fr,31018,87,1308504,1,3,Active Shallow Crust,0.0,89.99119,0.0,09/08/4387 +2.6907,42.83049,3378,1,3,8,32,53,3.75,5.0,fr,31019,67,1308504,1,3,Active Shallow Crust,0.0,89.99119,0.0,01/03/3378 +2.6907,42.83049,3942,1,19,2,0,2,3.75,15.0,fr,31020,78,1308505,1,1,Active Shallow Crust,0.0,89.99119,0.0,01/19/3942 +2.6907,42.83049,3291,5,4,9,26,4,3.75,5.0,fr,31021,65,1308510,1,1,Active Shallow Crust,0.0,89.99109,-90.0,05/04/3291 +2.6907,42.83049,6239,8,29,11,58,59,3.75,15.0,fr,31022,124,1308511,1,1,Active Shallow Crust,0.0,89.99109,-90.0,08/29/6239 +2.6907,42.83049,4080,2,13,5,9,48,3.75,5.0,fr,31023,81,1308513,1,1,Active Shallow Crust,128.8966,89.96743,0.0,02/13/4080 +2.6907,42.83049,767,4,9,1,38,12,3.85,5.0,fr,31024,15,1308516,1,1,Active Shallow Crust,0.0,89.98953,0.0,04/09/0767 +2.6907,42.83049,8379,6,21,19,53,30,3.95,15.0,fr,31025,167,1308529,1,1,Active Shallow Crust,0.0,89.99067,0.0,06/21/8379 +2.6907,42.83049,8738,1,22,17,9,2,3.95,5.0,fr,31026,174,1308537,1,1,Active Shallow Crust,128.9007,89.99417,0.0,01/22/8738 +2.6907,42.83049,9233,4,20,8,31,17,4.05,5.0,fr,31027,184,1308540,1,1,Active Shallow Crust,0.0,89.9896,0.0,04/20/9233 +2.6907,42.83049,338,4,30,13,53,15,4.05,15.0,fr,31028,6,1308541,1,1,Active Shallow Crust,0.0,89.9896,0.0,04/30/0338 +2.6907,42.83049,2372,9,13,11,20,1,4.15,5.0,fr,31029,47,1308555,1,1,Active Shallow Crust,240.008,57.99721,0.0,09/13/2372 +2.6907,42.83049,3268,9,9,15,7,10,4.25,15.0,fr,31030,65,1308565,1,1,Active Shallow Crust,0.0,89.99009,0.0,09/09/3268 +2.6907,42.83049,988,6,20,17,8,23,4.55,5.0,fr,31031,19,1308600,1,1,Active Shallow Crust,0.0,89.98948,0.0,06/20/0988 +2.6907,42.83049,1257,8,19,23,49,28,4.75,5.0,fr,31032,25,1308624,1,1,Active Shallow Crust,0.0,89.98978,0.0,08/19/1257 +2.6907,42.83049,2348,12,16,3,35,52,4.75,27.5,fr,31033,46,1308626,1,1,Active Shallow Crust,0.0,89.98978,0.0,12/16/2348 +3.63606,49.18599,251,10,18,14,17,45,3.85,27.5,fr,31034,5,1308998,1,1,Active Shallow Crust,0.0,89.99067,0.0,10/18/0251 +3.63606,49.18599,650,4,19,17,4,41,4.15,15.0,fr,31035,12,1309033,1,1,Active Shallow Crust,0.0,89.99009,0.0,04/19/0650 +3.63606,49.18599,6557,10,17,6,45,56,5.15,15.0,fr,31036,131,1309153,1,1,Active Shallow Crust,0.0,89.99007,0.0,10/17/6557 +4.27342,47.63735,709,8,12,10,54,41,3.55,5.0,fr,31037,14,1309446,1,1,Active Shallow Crust,0.0,89.99313,-90.0,08/12/0709 +4.27342,47.63735,3926,3,11,14,21,6,3.65,5.0,fr,31038,78,1309452,1,1,Active Shallow Crust,0.0,89.98788,0.0,03/11/3926 +4.27342,47.63735,3366,2,24,13,13,47,3.65,27.5,fr,31039,67,1309454,1,1,Active Shallow Crust,0.0,89.98788,0.0,02/24/3366 +4.27342,47.63735,8648,6,17,11,31,18,3.75,5.0,fr,31040,172,1309464,1,1,Active Shallow Crust,0.0,89.9892,0.0,06/17/8648 +4.27342,47.63735,5457,5,6,19,47,16,3.85,5.0,fr,31041,109,1309479,1,1,Active Shallow Crust,240.0109,57.99755,0.0,05/06/5457 +4.27342,47.63735,2656,8,31,1,31,6,3.95,5.0,fr,31042,53,1309488,1,1,Active Shallow Crust,0.0,89.99142,0.0,08/31/2656 +7.02439,50.2615,9598,1,27,10,11,2,3.55,5.0,fr,31043,191,1309920,1,2,Active Shallow Crust,0.0,89.98711,0.0,01/27/9598 +7.02439,50.2615,7672,11,15,7,4,33,3.55,5.0,fr,31044,153,1309920,1,2,Active Shallow Crust,0.0,89.98711,0.0,11/15/7672 +7.02439,50.2615,5077,12,2,0,51,33,3.55,15.0,fr,31045,101,1309930,1,1,Active Shallow Crust,128.8951,89.99355,0.0,12/02/5077 +7.02439,50.2615,3979,10,14,11,27,32,3.65,5.0,fr,31046,79,1309932,1,1,Active Shallow Crust,0.0,89.98851,0.0,10/14/3979 +7.02439,50.2615,7701,3,27,3,27,52,3.65,5.0,fr,31047,154,1309935,1,2,Active Shallow Crust,240.0012,58.01356,0.0,03/27/7701 +7.02439,50.2615,2739,7,27,18,28,31,3.65,5.0,fr,31048,54,1309935,1,2,Active Shallow Crust,240.0012,58.01356,0.0,07/27/2739 +7.02439,50.2615,7227,10,3,8,57,52,3.65,5.0,fr,31049,144,1309938,1,1,Active Shallow Crust,0.0,89.98837,-90.0,10/03/7227 +7.02439,50.2615,5239,12,25,19,49,23,3.75,5.0,fr,31050,104,1309944,1,1,Active Shallow Crust,0.0,89.98976,0.0,12/25/5239 +7.02439,50.2615,8407,4,12,4,33,46,3.75,15.0,fr,31051,168,1309945,1,1,Active Shallow Crust,0.0,89.98976,0.0,04/12/8407 +7.02439,50.2615,6778,10,29,2,16,57,3.85,5.0,fr,31052,135,1309956,1,2,Active Shallow Crust,0.0,89.99088,0.0,10/29/6778 +7.02439,50.2615,4944,5,25,10,53,54,3.85,5.0,fr,31053,98,1309956,1,2,Active Shallow Crust,0.0,89.99088,0.0,05/25/4944 +7.02439,50.2615,2240,8,6,1,13,20,3.85,15.0,fr,31054,44,1309957,1,1,Active Shallow Crust,0.0,89.99088,0.0,08/06/2240 +7.02439,50.2615,9018,1,23,7,39,31,3.85,5.0,fr,31055,180,1309959,1,1,Active Shallow Crust,240.0119,57.99757,0.0,01/23/9018 +7.02439,50.2615,6699,1,5,14,15,26,4.05,5.0,fr,31056,133,1309980,1,1,Active Shallow Crust,0.0,89.98912,0.0,01/05/6699 +7.02439,50.2615,6298,12,7,23,20,21,4.15,5.0,fr,31057,125,1309992,1,2,Active Shallow Crust,0.0,89.9903,0.0,12/07/6298 +7.02439,50.2615,8691,7,6,18,26,13,4.15,5.0,fr,31058,173,1309992,1,2,Active Shallow Crust,0.0,89.9903,0.0,07/06/8691 +7.02439,50.2615,3294,12,21,0,13,13,4.25,15.0,fr,31059,65,1310005,1,1,Active Shallow Crust,0.0,89.99136,0.0,12/21/3294 +7.02439,50.2615,5927,9,19,1,43,58,4.45,5.0,fr,31060,118,1310028,1,1,Active Shallow Crust,0.0,89.99085,0.0,09/19/5927 +7.02439,50.2615,8873,4,14,11,1,44,4.95,5.0,fr,31061,177,1310088,1,2,Active Shallow Crust,0.0,89.98971,0.0,04/14/8873 +7.02439,50.2615,9051,8,18,10,6,56,4.95,5.0,fr,31062,181,1310088,1,2,Active Shallow Crust,0.0,89.98971,0.0,08/18/9051 +7.02439,50.2615,4573,10,21,22,18,50,5.05,15.0,fr,31063,91,1310101,1,1,Active Shallow Crust,0.0,89.98968,0.0,10/21/4573 +2.24945,45.13378,4620,7,14,8,21,58,3.55,5.0,fr,31064,92,1310400,1,1,Active Shallow Crust,0.0,89.98933,0.0,07/14/4620 +2.24945,45.13378,5770,2,8,1,17,42,3.65,5.0,fr,31065,115,1310412,1,1,Active Shallow Crust,0.0,89.99049,0.0,02/08/5770 +2.24945,45.13378,7039,5,14,5,53,10,3.65,5.0,fr,31066,140,1310418,1,1,Active Shallow Crust,0.0,89.99038,-90.0,05/14/7039 +2.24945,45.13378,8691,9,21,13,28,25,3.75,5.0,fr,31067,173,1310424,1,1,Active Shallow Crust,0.0,89.9887,0.0,09/21/8691 +2.24945,45.13378,2280,9,19,19,23,26,3.75,15.0,fr,31068,45,1310425,1,2,Active Shallow Crust,0.0,89.9887,0.0,09/19/2280 +2.24945,45.13378,9109,3,26,13,7,56,3.75,15.0,fr,31069,182,1310425,1,2,Active Shallow Crust,0.0,89.9887,0.0,03/26/9109 +2.24945,45.13378,3870,11,3,4,34,19,3.75,5.0,fr,31070,77,1310430,1,1,Active Shallow Crust,0.0,89.99142,-90.0,11/03/3870 +2.24945,45.13378,1858,12,15,10,34,2,3.95,5.0,fr,31071,37,1310448,1,2,Active Shallow Crust,0.0,89.99102,0.0,12/15/1858 +2.24945,45.13378,6714,3,21,7,42,29,3.95,5.0,fr,31072,134,1310448,1,2,Active Shallow Crust,0.0,89.99102,0.0,03/21/6714 +2.24945,45.13378,9782,2,16,20,35,16,4.05,5.0,fr,31073,195,1310460,1,1,Active Shallow Crust,0.0,89.99,0.0,02/16/9782 +2.24945,45.13378,7818,7,25,4,37,10,4.35,5.0,fr,31074,156,1310496,1,1,Active Shallow Crust,0.0,89.99009,0.0,07/25/7818 +2.24945,45.13378,3946,6,15,10,9,5,4.55,5.0,fr,31075,78,1310526,1,1,Active Shallow Crust,0.0,89.98976,-90.0,06/15/3946 +3.15573,41.9654,513,5,14,19,54,54,3.55,5.0,fr,31076,10,1310880,1,1,Active Shallow Crust,0.0,89.98875,0.0,05/14/0513 +3.15573,41.9654,4320,7,15,6,49,0,3.55,15.0,fr,31077,86,1310881,1,1,Active Shallow Crust,0.0,89.98875,0.0,07/15/4320 +3.15573,41.9654,9027,4,24,18,48,11,3.85,5.0,fr,31078,180,1310919,1,1,Active Shallow Crust,240.0104,57.9976,0.0,04/24/9027 +-2.70634,49.04278,9435,5,7,4,41,48,3.65,5.0,fr,31079,188,1311372,1,1,Active Shallow Crust,0.0,89.99117,0.0,05/07/9435 +-2.70634,49.04278,8871,9,5,23,31,31,3.65,15.0,fr,31080,177,1311373,1,1,Active Shallow Crust,0.0,89.99117,0.0,09/05/8871 +-2.70634,49.04278,4053,11,9,14,35,10,3.65,5.0,fr,31081,81,1311381,1,1,Active Shallow Crust,128.9007,89.96357,0.0,11/09/4053 +-2.70634,49.04278,186,9,16,15,29,4,3.85,5.0,fr,31082,3,1311396,1,1,Active Shallow Crust,0.0,89.99064,0.0,09/16/0186 +-2.70634,49.04278,6628,4,28,8,14,37,3.95,5.0,fr,31083,132,1311408,1,1,Active Shallow Crust,0.0,89.98957,0.0,04/28/6628 +-2.70634,49.04278,7262,6,2,22,15,7,4.05,5.0,fr,31084,145,1311420,1,1,Active Shallow Crust,0.0,89.99071,0.0,06/02/7262 +-2.70634,49.04278,8955,2,22,22,37,18,4.15,5.0,fr,31085,179,1311432,1,1,Active Shallow Crust,0.0,89.99006,0.0,02/22/8955 +-2.70634,49.04278,48,3,23,22,22,21,4.25,5.0,fr,31086,0,1311447,1,1,Active Shallow Crust,240.008,57.99423,0.0,03/23/0048 +-2.70634,49.04278,1218,9,7,16,14,50,4.55,5.0,fr,31087,24,1311483,1,1,Active Shallow Crust,240.0101,57.99764,0.0,09/07/1218 +-2.70634,49.04278,2793,6,12,8,5,44,4.55,5.0,fr,31088,55,1311486,1,1,Active Shallow Crust,0.0,89.99049,-90.0,06/12/2793 +-2.70634,49.04278,1586,8,27,18,6,34,4.65,5.0,fr,31089,31,1311492,1,1,Active Shallow Crust,0.0,89.98975,0.0,08/27/1586 +-5.02922,49.50746,5211,11,29,3,14,32,3.55,5.0,fr,31090,104,1311843,1,1,Active Shallow Crust,240.0122,57.998,0.0,11/29/5211 +-5.02922,49.50746,3312,5,16,4,23,24,3.75,5.0,fr,31091,66,1311864,1,1,Active Shallow Crust,0.0,89.98959,0.0,05/16/3312 +8.1841,46.19234,1496,2,4,9,2,19,3.55,5.0,fr,31092,29,1312320,1,2,Active Shallow Crust,0.0,89.98604,0.0,02/04/1496 +8.1841,46.19234,2624,7,2,13,52,36,3.55,5.0,fr,31093,52,1312320,1,2,Active Shallow Crust,0.0,89.98604,0.0,07/02/2624 +8.1841,46.19234,5802,6,17,4,55,19,3.55,15.0,fr,31094,116,1312321,1,3,Active Shallow Crust,0.0,89.98604,0.0,06/17/5802 +8.1841,46.19234,6413,11,17,9,47,3,3.55,15.0,fr,31095,128,1312321,1,3,Active Shallow Crust,0.0,89.98604,0.0,11/17/6413 +8.1841,46.19234,1517,2,3,23,13,8,3.55,15.0,fr,31096,30,1312321,1,3,Active Shallow Crust,0.0,89.98604,0.0,02/03/1517 +8.1841,46.19234,9991,6,16,2,20,21,3.55,27.5,fr,31097,199,1312322,1,1,Active Shallow Crust,0.0,89.98604,0.0,06/16/9991 +8.1841,46.19234,2037,8,23,3,8,11,3.55,5.0,fr,31098,40,1312323,1,3,Active Shallow Crust,240.0136,57.99753,0.0,08/23/2037 +8.1841,46.19234,2905,1,27,5,55,18,3.55,5.0,fr,31099,58,1312323,1,3,Active Shallow Crust,240.0136,57.99753,0.0,01/27/2905 +8.1841,46.19234,3680,4,5,14,40,27,3.55,5.0,fr,31100,73,1312323,1,3,Active Shallow Crust,240.0136,57.99753,0.0,04/05/3680 +8.1841,46.19234,3532,1,7,10,47,54,3.55,15.0,fr,31101,70,1312324,1,2,Active Shallow Crust,240.0136,57.99753,0.0,01/07/3532 +8.1841,46.19234,466,2,28,22,42,23,3.55,15.0,fr,31102,9,1312324,1,2,Active Shallow Crust,240.0136,57.99753,0.0,02/28/0466 +8.1841,46.19234,9159,1,13,19,11,45,3.65,5.0,fr,31103,183,1312332,1,1,Active Shallow Crust,0.0,89.98756,0.0,01/13/9159 +8.1841,46.19234,5526,6,9,17,50,35,3.65,15.0,fr,31104,110,1312333,1,2,Active Shallow Crust,0.0,89.98756,0.0,06/09/5526 +8.1841,46.19234,9718,11,8,13,23,22,3.65,15.0,fr,31105,194,1312333,1,2,Active Shallow Crust,0.0,89.98756,0.0,11/08/9718 +8.1841,46.19234,5290,6,1,0,43,31,3.85,5.0,fr,31106,105,1312356,1,4,Active Shallow Crust,0.0,89.99012,0.0,06/01/5290 +8.1841,46.19234,633,1,30,8,40,44,3.85,5.0,fr,31107,12,1312356,1,4,Active Shallow Crust,0.0,89.99012,0.0,01/30/0633 +8.1841,46.19234,5365,4,4,5,19,36,3.85,5.0,fr,31108,107,1312356,1,4,Active Shallow Crust,0.0,89.99012,0.0,04/04/5365 +8.1841,46.19234,2738,4,21,22,34,11,3.85,5.0,fr,31109,54,1312356,1,4,Active Shallow Crust,0.0,89.99012,0.0,04/21/2738 +8.1841,46.19234,8995,8,7,13,34,18,3.85,15.0,fr,31110,179,1312357,1,1,Active Shallow Crust,0.0,89.99012,0.0,08/07/8995 +8.1841,46.19234,5046,6,11,6,33,57,3.85,5.0,fr,31111,100,1312365,1,1,Active Shallow Crust,128.8972,89.99012,0.0,06/11/5046 +8.1841,46.19234,9089,2,8,16,27,45,3.95,5.0,fr,31112,181,1312368,1,1,Active Shallow Crust,0.0,89.99119,0.0,02/08/9089 +8.1841,46.19234,3249,5,8,5,48,22,4.15,5.0,fr,31113,64,1312398,1,1,Active Shallow Crust,0.0,89.99292,-90.0,05/08/3249 +8.1841,46.19234,324,4,20,15,4,20,4.25,5.0,fr,31114,6,1312404,1,1,Active Shallow Crust,0.0,89.98753,0.0,04/20/0324 +8.1841,46.19234,5969,10,30,22,47,43,4.25,5.0,fr,31115,119,1312407,1,1,Active Shallow Crust,240.0078,57.99333,0.0,10/30/5969 +8.1841,46.19234,7471,4,11,7,46,2,4.35,5.0,fr,31116,149,1312416,1,1,Active Shallow Crust,0.0,89.98888,0.0,04/11/7471 +8.1841,46.19234,7754,12,7,12,17,55,4.35,5.0,fr,31117,155,1312419,1,1,Active Shallow Crust,240.009,57.99524,0.0,12/07/7754 +8.1841,46.19234,4469,8,28,21,54,38,4.65,5.0,fr,31118,89,1312461,1,1,Active Shallow Crust,128.8911,89.98719,0.0,08/28/4469 +8.1841,46.19234,5168,5,11,17,8,1,5.25,5.0,fr,31119,103,1312524,1,1,Active Shallow Crust,0.0,89.99014,0.0,05/11/5168 +8.184119,46.19234,1200,3,18,0,5,13,6.85,13.45767,fr,31120,23,1312716,1,1,Active Shallow Crust,0.0,89.98997,0.0,03/18/1200 +1.21599,44.63376,9034,10,25,10,6,19,3.95,5.0,fr,31121,180,1312848,1,1,Active Shallow Crust,0.0,89.98981,0.0,10/25/9034 +1.21599,44.63376,3271,12,22,6,46,21,4.35,27.5,fr,31122,65,1312898,1,1,Active Shallow Crust,0.0,89.99,0.0,12/22/3271 +1.21599,44.63376,5747,4,4,20,0,33,4.45,5.0,fr,31123,114,1312908,1,1,Active Shallow Crust,0.0,89.98981,0.0,04/04/5747 +2.10698,51.40886,1623,1,6,7,29,7,3.65,27.5,fr,31124,32,1313294,1,1,Active Shallow Crust,0.0,89.98878,0.0,01/06/1623 +2.10698,51.40886,6911,6,7,11,21,27,3.95,5.0,fr,31125,138,1313328,1,1,Active Shallow Crust,0.0,89.99007,0.0,06/07/6911 +2.10698,51.40886,3634,11,10,13,32,14,4.05,5.0,fr,31126,72,1313343,1,1,Active Shallow Crust,240.0071,58.00596,0.0,11/10/3634 +2.10698,51.40886,8732,10,8,0,35,5,4.15,15.0,fr,31127,174,1313353,1,1,Active Shallow Crust,0.0,89.99054,0.0,10/08/8732 +2.10698,51.40886,1950,4,4,6,48,26,4.25,15.0,fr,31128,38,1313368,1,1,Active Shallow Crust,240.0086,57.99436,0.0,04/04/1950 +2.10698,51.40886,1222,6,9,16,52,48,4.35,5.0,fr,31129,24,1313382,1,1,Active Shallow Crust,0.0,89.98987,-90.0,06/09/1222 +0.51904,49.52478,3321,2,6,1,4,50,3.55,5.0,fr,31130,66,1313760,1,1,Active Shallow Crust,0.0,89.99018,0.0,02/06/3321 +0.51904,49.52478,7379,5,17,11,46,42,3.65,5.0,fr,31131,147,1313772,1,1,Active Shallow Crust,0.0,89.98979,0.0,05/17/7379 +0.51904,49.52478,1801,11,19,14,26,24,3.75,5.0,fr,31132,36,1313793,1,1,Active Shallow Crust,128.8962,89.96737,0.0,11/19/1801 +0.51904,49.52478,3018,9,14,5,49,58,3.85,27.5,fr,31133,60,1313798,1,1,Active Shallow Crust,0.0,89.99015,0.0,09/14/3018 +0.51904,49.52478,1288,8,1,19,55,8,3.95,27.5,fr,31134,25,1313813,1,1,Active Shallow Crust,240.0203,58.00496,0.0,08/01/1288 +0.51904,49.52478,5215,3,6,3,44,28,3.95,15.0,fr,31135,104,1313815,1,1,Active Shallow Crust,0.0,89.99007,-90.0,03/06/5215 +0.51904,49.52478,2892,1,22,3,19,25,3.95,5.0,fr,31136,57,1313817,1,1,Active Shallow Crust,128.9,89.9938,0.0,01/22/2892 +0.51904,49.52478,8973,10,7,11,33,36,4.05,5.0,fr,31137,179,1313823,1,1,Active Shallow Crust,240.0065,58.00596,0.0,10/07/8973 +0.51904,49.52478,8751,3,1,10,35,36,4.95,5.0,fr,31138,175,1313931,1,1,Active Shallow Crust,240.0134,58.00472,0.0,03/01/8751 +0.5186163,49.52526,1504,8,17,9,20,54,6.15,5.09789,fr,31139,30,1314075,1,1,Active Shallow Crust,240.0709,57.99961,0.0,08/17/1504 +0.51904,49.52478,6629,11,21,4,14,46,6.65,15.0,fr,31140,132,1314136,1,1,Active Shallow Crust,240.128,57.99982,0.0,11/21/6629 +0.49812,49.12836,1284,3,21,17,17,35,3.55,5.0,fr,31141,25,1314240,1,2,Active Shallow Crust,0.0,89.9901,0.0,03/21/1284 +0.49812,49.12836,7960,5,17,3,52,7,3.55,5.0,fr,31142,159,1314240,1,2,Active Shallow Crust,0.0,89.9901,0.0,05/17/7960 +0.49812,49.12836,8547,2,7,20,48,39,3.55,15.0,fr,31143,170,1314241,1,1,Active Shallow Crust,0.0,89.9901,0.0,02/07/8547 +0.49812,49.12836,3594,1,14,2,21,22,3.55,27.5,fr,31144,71,1314242,1,1,Active Shallow Crust,0.0,89.9901,0.0,01/14/3594 +0.49812,49.12836,6249,11,7,16,38,41,3.55,15.0,fr,31145,124,1314244,1,1,Active Shallow Crust,240.0124,57.99827,0.0,11/07/6249 +0.49812,49.12836,7167,10,22,1,49,51,3.65,5.0,fr,31146,143,1314252,1,1,Active Shallow Crust,0.0,89.99007,0.0,10/22/7167 +0.49812,49.12836,7272,5,13,14,5,48,3.65,15.0,fr,31147,145,1314253,1,1,Active Shallow Crust,0.0,89.99007,0.0,05/13/7272 +0.49812,49.12836,6317,5,23,16,44,34,3.65,15.0,fr,31148,126,1314256,1,1,Active Shallow Crust,240.0014,58.01289,0.0,05/23/6317 +0.49812,49.12836,9097,6,28,23,15,48,3.75,5.0,fr,31149,181,1314270,1,1,Active Shallow Crust,0.0,89.99006,-90.0,06/28/9097 +0.49812,49.12836,1348,2,22,1,53,59,3.75,27.5,fr,31150,26,1314272,1,1,Active Shallow Crust,0.0,89.99006,-90.0,02/22/1348 +0.49812,49.12836,2613,9,26,22,45,54,3.85,5.0,fr,31151,52,1314276,1,1,Active Shallow Crust,0.0,89.99007,0.0,09/26/2613 +0.49812,49.12836,9921,2,18,11,27,0,3.85,15.0,fr,31152,198,1314283,1,1,Active Shallow Crust,0.0,89.98996,-90.0,02/18/9921 +0.49812,49.12836,1840,2,21,16,29,23,3.95,15.0,fr,31153,36,1314289,1,1,Active Shallow Crust,0.0,89.99011,0.0,02/21/1840 +0.49812,49.12836,2530,12,7,23,37,28,3.95,5.0,fr,31154,50,1314291,1,1,Active Shallow Crust,240.0202,58.005,0.0,12/07/2530 +0.49812,49.12836,5667,5,2,16,57,15,4.65,15.0,fr,31155,113,1314379,1,1,Active Shallow Crust,0.0,89.99001,-90.0,05/02/5667 +0.49812,49.12836,6005,9,21,4,46,52,4.95,15.0,fr,31156,120,1314412,1,1,Active Shallow Crust,240.0132,58.00467,0.0,09/21/6005 +-3.8073,44.27529,4179,4,19,9,9,4,3.55,27.5,fr,31157,83,1314722,1,1,Active Shallow Crust,0.0,89.98917,0.0,04/19/4179 +-3.8073,44.27529,8705,6,14,10,9,47,3.85,15.0,fr,31158,174,1314763,1,1,Active Shallow Crust,0.0,89.98966,-90.0,06/14/8705 +4.37092,51.26869,5332,2,25,14,2,0,3.85,5.0,fr,31159,106,1315716,1,2,Active Shallow Crust,0.0,89.99107,0.0,02/25/5332 +4.37092,51.26869,6308,4,26,13,40,32,3.85,5.0,fr,31160,126,1315716,1,2,Active Shallow Crust,0.0,89.99107,0.0,04/26/6308 +4.37092,51.26869,567,12,1,12,46,1,4.05,5.0,fr,31161,11,1315740,1,1,Active Shallow Crust,0.0,89.98936,0.0,12/01/0567 +4.37092,51.26869,6005,9,16,6,17,34,4.25,5.0,fr,31162,120,1315764,1,1,Active Shallow Crust,0.0,89.98872,0.0,09/16/6005 +4.47892,43.36145,5277,2,7,15,21,16,3.55,15.0,fr,31163,105,1316161,1,1,Active Shallow Crust,0.0,89.99267,0.0,02/07/5277 +4.47892,43.36145,5480,1,26,22,28,48,3.65,5.0,fr,31164,109,1316172,1,1,Active Shallow Crust,0.0,89.98693,0.0,01/26/5480 +4.47892,43.36145,63,4,16,16,7,46,3.65,15.0,fr,31165,1,1316173,1,1,Active Shallow Crust,0.0,89.98693,0.0,04/16/0063 +4.47892,43.36145,7889,4,20,22,59,0,3.65,5.0,fr,31166,157,1316175,1,1,Active Shallow Crust,240.0017,58.01245,0.0,04/20/7889 +4.47892,43.36145,2128,1,12,15,52,49,4.15,15.0,fr,31167,42,1316233,1,1,Active Shallow Crust,0.0,89.98898,0.0,01/12/2128 +4.47892,43.36145,5532,4,5,0,7,39,4.35,5.0,fr,31168,110,1316256,1,1,Active Shallow Crust,0.0,89.99124,0.0,04/05/5532 +4.47892,43.36145,6656,3,17,18,2,48,4.85,27.5,fr,31169,133,1316318,1,1,Active Shallow Crust,0.0,89.99015,0.0,03/17/6656 +-1.95366,44.48398,8422,2,21,17,53,12,3.85,5.0,fr,31170,168,1316685,1,1,Active Shallow Crust,128.8955,89.99427,0.0,02/21/8422 +-4.99872,48.69484,5668,10,27,15,29,7,3.55,15.0,fr,31171,113,1317121,1,1,Active Shallow Crust,0.0,89.98669,0.0,10/27/5668 +-4.99872,48.69484,9764,4,24,1,9,11,3.55,5.0,fr,31172,195,1317123,1,1,Active Shallow Crust,240.0123,57.99897,0.0,04/24/9764 +-4.99872,48.69484,5541,8,13,1,7,15,3.65,5.0,fr,31173,110,1317132,1,1,Active Shallow Crust,0.0,89.98814,0.0,08/13/5541 +-4.99872,48.69484,2463,7,14,7,56,10,3.85,15.0,fr,31174,49,1317157,1,1,Active Shallow Crust,0.0,89.99058,0.0,07/14/2463 +-4.99872,48.69484,8880,9,22,2,6,37,4.05,5.0,fr,31175,177,1317180,1,1,Active Shallow Crust,0.0,89.98877,0.0,09/22/8880 +-4.99872,48.69484,6837,8,29,19,37,4,4.45,27.5,fr,31176,136,1317230,1,1,Active Shallow Crust,0.0,89.99055,0.0,08/29/6837 +-4.99872,48.69484,7626,1,16,15,54,47,4.55,27.5,fr,31177,152,1317251,1,1,Active Shallow Crust,128.8934,89.98577,0.0,01/16/7626 +4.82803,51.93889,4584,12,13,3,59,56,3.55,27.5,fr,31178,91,1317602,1,1,Active Shallow Crust,0.0,89.98756,0.0,12/13/4584 +4.82803,51.93889,3303,2,18,21,38,32,3.65,5.0,fr,31179,66,1317612,1,1,Active Shallow Crust,0.0,89.98892,0.0,02/18/3303 +4.82803,51.93889,8030,12,18,3,18,32,3.85,5.0,fr,31180,160,1317636,1,1,Active Shallow Crust,0.0,89.9912,0.0,12/18/8030 +4.82803,51.93889,9695,2,27,0,13,9,4.65,15.0,fr,31181,193,1317733,1,1,Active Shallow Crust,0.0,89.98949,0.0,02/27/9695 +4.82803,51.93889,6290,12,9,0,49,26,5.05,5.0,fr,31182,125,1317780,1,1,Active Shallow Crust,0.0,89.99005,0.0,12/09/6290 +2.13445,49.07516,1588,8,28,0,32,19,3.95,5.0,fr,31183,31,1318131,1,1,Active Shallow Crust,240.0202,58.00506,0.0,08/28/1588 +2.13445,49.07516,6230,12,31,1,59,12,4.05,5.0,fr,31184,124,1318140,1,1,Active Shallow Crust,0.0,89.99072,0.0,12/31/6230 +7.8135,45.6289,8793,4,1,11,46,13,3.55,5.0,fr,31185,175,1318560,1,1,Active Shallow Crust,0.0,89.99295,0.0,04/01/8793 +7.8135,45.6289,4966,9,28,14,27,56,3.55,15.0,fr,31186,99,1318561,1,1,Active Shallow Crust,0.0,89.99295,0.0,09/28/4966 +7.8135,45.6289,5108,2,2,6,19,13,3.55,5.0,fr,31187,102,1318563,1,1,Active Shallow Crust,240.0129,57.99762,0.0,02/02/5108 +7.8135,45.6289,3433,4,8,2,39,35,3.65,5.0,fr,31188,68,1318572,1,3,Active Shallow Crust,0.0,89.98743,0.0,04/08/3433 +7.8135,45.6289,1526,1,31,6,43,40,3.65,5.0,fr,31189,30,1318572,1,3,Active Shallow Crust,0.0,89.98743,0.0,01/31/1526 +7.8135,45.6289,2144,3,13,12,0,8,3.65,5.0,fr,31190,42,1318572,1,3,Active Shallow Crust,0.0,89.98743,0.0,03/13/2144 +7.8135,45.6289,6555,6,6,6,25,24,3.65,27.5,fr,31191,131,1318574,1,1,Active Shallow Crust,0.0,89.98743,0.0,06/06/6555 +7.8135,45.6289,1058,9,19,16,9,1,3.75,5.0,fr,31192,21,1318584,1,2,Active Shallow Crust,0.0,89.9888,0.0,09/19/1058 +7.8135,45.6289,5551,11,19,15,31,2,3.75,5.0,fr,31193,111,1318584,1,2,Active Shallow Crust,0.0,89.9888,0.0,11/19/5551 +7.8135,45.6289,3296,1,30,14,48,0,3.75,5.0,fr,31194,65,1318587,1,1,Active Shallow Crust,240.0076,58.01805,0.0,01/30/3296 +7.8135,45.6289,5623,5,27,2,31,21,3.85,5.0,fr,31195,112,1318596,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/27/5623 +7.8135,45.6289,3221,12,25,3,19,21,3.85,27.5,fr,31196,64,1318598,1,1,Active Shallow Crust,0.0,89.99001,0.0,12/25/3221 +7.8135,45.6289,2226,2,2,15,35,39,3.85,5.0,fr,31197,44,1318605,1,1,Active Shallow Crust,128.8968,89.99252,0.0,02/02/2226 +7.8135,45.6289,6760,7,31,16,29,31,3.85,15.0,fr,31198,135,1318606,1,1,Active Shallow Crust,128.8968,89.99252,0.0,07/31/6760 +7.8135,45.6289,9700,4,10,23,33,48,3.95,5.0,fr,31199,193,1318608,1,1,Active Shallow Crust,0.0,89.9911,0.0,04/10/9700 +7.8135,45.6289,1353,5,5,20,32,40,3.95,15.0,fr,31200,27,1318612,1,1,Active Shallow Crust,240.0198,58.00476,0.0,05/05/1353 +7.8135,45.6289,8506,8,23,7,13,56,4.05,5.0,fr,31201,170,1318620,1,2,Active Shallow Crust,0.0,89.98811,0.0,08/23/8506 +7.8135,45.6289,5013,2,22,15,21,44,4.05,5.0,fr,31202,100,1318620,1,2,Active Shallow Crust,0.0,89.98811,0.0,02/22/5013 +7.8135,45.6289,1070,3,30,21,27,53,4.05,27.5,fr,31203,21,1318622,1,1,Active Shallow Crust,0.0,89.98811,0.0,03/30/1070 +7.8135,45.6289,6508,11,1,5,29,40,4.05,5.0,fr,31204,130,1318629,1,1,Active Shallow Crust,128.891,89.99405,0.0,11/01/6508 +7.8135,45.6289,8256,5,13,8,48,18,4.25,5.0,fr,31205,165,1318647,1,1,Active Shallow Crust,240.008,57.99376,0.0,05/13/8256 +7.8135,45.6289,1317,10,12,3,46,30,4.25,5.0,fr,31206,26,1318650,1,1,Active Shallow Crust,0.0,89.99044,-90.0,10/12/1317 +7.8135,45.6289,5920,4,10,8,7,30,4.35,5.0,fr,31207,118,1318656,1,1,Active Shallow Crust,0.0,89.98877,0.0,04/10/5920 +7.8135,45.6289,4827,5,3,11,27,51,4.35,15.0,fr,31208,96,1318660,1,1,Active Shallow Crust,240.0086,57.99561,0.0,05/03/4827 +7.8135,45.6289,8859,3,15,14,20,9,4.35,15.0,fr,31209,177,1318666,1,1,Active Shallow Crust,128.8983,89.98248,0.0,03/15/8859 +7.8135,45.6289,7468,12,30,5,8,45,4.45,5.0,fr,31210,149,1318668,1,1,Active Shallow Crust,0.0,89.98999,0.0,12/30/7468 +7.8135,45.6289,4167,9,5,13,44,31,4.55,5.0,fr,31211,83,1318680,1,1,Active Shallow Crust,0.0,89.99108,0.0,09/05/4167 +7.8135,45.6289,4752,8,28,14,56,13,4.55,15.0,fr,31212,95,1318681,1,1,Active Shallow Crust,0.0,89.99108,0.0,08/28/4752 +7.8135,45.6289,150,6,19,11,15,35,4.95,5.0,fr,31213,2,1318728,1,1,Active Shallow Crust,0.0,89.99015,0.0,06/19/0150 +7.8135,45.6289,9429,1,19,13,55,4,5.05,5.0,fr,31214,188,1318743,1,1,Active Shallow Crust,240.0217,57.99749,0.0,01/19/9429 +7.8135,45.6289,5691,4,21,1,27,16,5.15,5.0,fr,31215,113,1318758,1,1,Active Shallow Crust,0.0,89.98982,-90.0,04/21/5691 +7.813498,45.6289,3865,7,29,17,54,2,6.15,6.011322,fr,31216,77,1318881,1,1,Active Shallow Crust,128.8574,89.98972,0.0,07/29/3865 +7.813528,45.6289,105,10,13,11,0,41,7.35,17.5,fr,31217,2,1319016,1,1,Active Shallow Crust,360.0,89.98999,0.0,10/13/0105 +0.90107,52.27068,4510,5,8,16,36,17,4.35,5.0,fr,31218,90,1320576,1,1,Active Shallow Crust,0.0,89.98987,0.0,05/08/4510 +5.66071,51.32205,6265,4,26,11,49,5,3.55,5.0,fr,31219,125,1320960,1,1,Active Shallow Crust,0.0,89.9874,0.0,04/26/6265 +5.66071,51.32205,3137,9,8,10,4,46,3.55,15.0,fr,31220,62,1320970,1,1,Active Shallow Crust,128.896,89.9937,0.0,09/08/3137 +5.66071,51.32205,9664,8,30,5,54,4,3.75,5.0,fr,31221,193,1320984,1,1,Active Shallow Crust,0.0,89.98999,0.0,08/30/9664 +5.66071,51.32205,4510,3,24,3,11,25,3.75,15.0,fr,31222,90,1320985,1,1,Active Shallow Crust,0.0,89.98999,0.0,03/24/4510 +5.66071,51.32205,8771,6,6,10,9,55,3.85,5.0,fr,31223,175,1320996,1,3,Active Shallow Crust,0.0,89.99107,0.0,06/06/8771 +5.66071,51.32205,4806,12,9,4,17,54,3.85,5.0,fr,31224,96,1320996,1,3,Active Shallow Crust,0.0,89.99107,0.0,12/09/4806 +5.66071,51.32205,7121,12,14,21,14,42,3.85,5.0,fr,31225,142,1320996,1,3,Active Shallow Crust,0.0,89.99107,0.0,12/14/7121 +5.66071,51.32205,6524,4,5,16,44,59,4.05,5.0,fr,31226,130,1321020,1,1,Active Shallow Crust,0.0,89.98936,0.0,04/05/6524 +5.66071,51.32205,3249,7,16,11,54,0,4.35,27.5,fr,31227,64,1321058,1,1,Active Shallow Crust,0.0,89.98997,0.0,07/16/3249 +5.66071,51.32205,5511,1,14,15,1,19,4.55,5.0,fr,31228,110,1321086,1,1,Active Shallow Crust,0.0,89.98992,-90.0,01/14/5511 +5.66071,51.32205,7533,1,10,7,54,58,4.75,5.0,fr,31229,150,1321104,1,1,Active Shallow Crust,0.0,89.9905,0.0,01/10/7533 +5.66071,51.32205,9469,12,23,10,55,27,4.95,5.0,fr,31230,189,1321128,1,1,Active Shallow Crust,0.0,89.98994,0.0,12/23/9469 +5.660712,51.32205,3571,12,17,6,51,7,6.15,6.011322,fr,31231,71,1321272,1,1,Active Shallow Crust,0.0,89.99004,0.0,12/17/3571 +2.08421,40.58609,5736,6,16,2,54,32,3.55,27.5,fr,31232,114,1321445,1,1,Active Shallow Crust,240.011,57.99844,0.0,06/16/5736 +2.30553,41.02647,300,10,20,12,15,28,3.55,15.0,fr,31233,5,1321921,1,1,Active Shallow Crust,0.0,89.98859,0.0,10/20/0300 +2.30553,41.02647,9804,11,17,4,39,33,3.65,5.0,fr,31234,196,1321932,1,1,Active Shallow Crust,0.0,89.98983,0.0,11/17/9804 +2.30553,41.02647,615,7,16,8,8,18,3.65,15.0,fr,31235,12,1321933,1,1,Active Shallow Crust,0.0,89.98983,0.0,07/16/0615 +2.30553,41.02647,4388,9,10,2,28,27,3.75,5.0,fr,31236,87,1321944,1,1,Active Shallow Crust,0.0,89.99094,0.0,09/10/4388 +2.30553,41.02647,9609,7,18,23,15,57,3.75,15.0,fr,31237,192,1321945,1,1,Active Shallow Crust,0.0,89.99094,0.0,07/18/9609 +2.30553,41.02647,1189,9,6,3,11,56,3.85,5.0,fr,31238,23,1321962,1,1,Active Shallow Crust,0.0,89.98911,-90.0,09/06/1189 +2.30553,41.02647,5231,10,17,8,13,43,3.85,15.0,fr,31239,104,1321966,1,1,Active Shallow Crust,128.8959,89.99327,0.0,10/17/5231 +2.30553,41.02647,6085,9,9,14,39,50,4.05,5.0,fr,31240,121,1321980,1,1,Active Shallow Crust,0.0,89.9893,0.0,09/09/6085 +2.30553,41.02647,3424,8,22,21,59,8,4.15,5.0,fr,31241,68,1321992,1,1,Active Shallow Crust,0.0,89.99047,0.0,08/22/3424 +2.30553,41.02647,7234,7,8,8,37,47,4.35,5.0,fr,31242,144,1322016,1,2,Active Shallow Crust,0.0,89.9894,0.0,07/08/7234 +2.30553,41.02647,4287,12,31,19,32,29,4.35,5.0,fr,31243,85,1322016,1,2,Active Shallow Crust,0.0,89.9894,0.0,12/31/4287 +2.30553,41.02647,1773,3,26,0,45,58,4.45,5.0,fr,31244,35,1322034,1,1,Active Shallow Crust,0.0,89.99044,-90.0,03/26/1773 +2.30553,41.02647,3270,11,26,4,24,59,4.75,5.0,fr,31245,65,1322070,1,1,Active Shallow Crust,0.0,89.99033,-90.0,11/26/3270 +2.30553,41.02647,384,3,8,6,22,27,5.35,5.0,fr,31246,7,1322136,1,1,Active Shallow Crust,0.0,89.98994,0.0,03/08/0384 +2.30553,41.02647,9281,11,12,5,6,0,5.85,5.0,fr,31247,185,1322196,1,1,Active Shallow Crust,0.0,89.99003,0.0,11/12/9281 +-0.23953,41.36193,5779,5,18,7,46,31,3.65,5.0,fr,31248,115,1322412,1,1,Active Shallow Crust,0.0,89.99009,0.0,05/18/5779 +-0.23953,41.36193,6693,7,2,11,32,34,3.65,5.0,fr,31249,133,1322415,1,1,Active Shallow Crust,240.0006,58.01277,0.0,07/02/6693 +5.39996,45.5981,5828,12,3,2,6,39,3.55,5.0,fr,31250,116,1322880,1,3,Active Shallow Crust,0.0,89.99294,0.0,12/03/5828 +5.39996,45.5981,1692,10,27,23,20,5,3.55,5.0,fr,31251,33,1322880,1,3,Active Shallow Crust,0.0,89.99294,0.0,10/27/1692 +5.39996,45.5981,959,7,24,18,10,44,3.55,5.0,fr,31252,19,1322880,1,3,Active Shallow Crust,0.0,89.99294,0.0,07/24/0959 +5.39996,45.5981,9735,1,11,2,17,16,3.55,15.0,fr,31253,194,1322881,1,1,Active Shallow Crust,0.0,89.99294,0.0,01/11/9735 +5.39996,45.5981,5588,8,24,7,10,6,3.55,5.0,fr,31254,111,1322883,1,1,Active Shallow Crust,240.0124,57.99707,0.0,08/24/5588 +5.39996,45.5981,3900,1,21,14,20,47,3.55,27.5,fr,31255,77,1322885,1,1,Active Shallow Crust,240.0124,57.99698,0.0,01/21/3900 +5.39996,45.5981,1683,11,30,13,50,38,3.55,5.0,fr,31256,33,1322886,1,1,Active Shallow Crust,0.0,89.99287,-90.0,11/30/1683 +5.39996,45.5981,3930,4,13,7,44,41,3.75,15.0,fr,31257,78,1322905,1,1,Active Shallow Crust,0.0,89.98879,0.0,04/13/3930 +5.39996,45.5981,642,2,18,11,18,59,3.75,5.0,fr,31258,12,1322907,1,2,Active Shallow Crust,240.0086,58.01808,0.0,02/18/0642 +5.39996,45.5981,9576,5,11,7,26,40,3.75,5.0,fr,31259,191,1322907,1,2,Active Shallow Crust,240.0086,58.01808,0.0,05/11/9576 +5.39996,45.5981,7245,6,14,6,11,44,3.85,5.0,fr,31260,144,1322916,1,4,Active Shallow Crust,0.0,89.99001,0.0,06/14/7245 +5.39996,45.5981,897,4,20,23,1,7,3.85,5.0,fr,31261,17,1322916,1,4,Active Shallow Crust,0.0,89.99001,0.0,04/20/0897 +5.39996,45.5981,9832,12,4,5,5,59,3.85,5.0,fr,31262,196,1322916,1,4,Active Shallow Crust,0.0,89.99001,0.0,12/04/9832 +5.39996,45.5981,5601,4,23,1,38,42,3.85,5.0,fr,31263,112,1322916,1,4,Active Shallow Crust,0.0,89.99001,0.0,04/23/5601 +5.39996,45.5981,2454,7,4,14,13,6,3.85,5.0,fr,31264,49,1322922,1,1,Active Shallow Crust,0.0,89.98989,-90.0,07/04/2454 +5.39996,45.5981,3017,11,10,15,47,23,3.95,5.0,fr,31265,60,1322928,1,1,Active Shallow Crust,0.0,89.9911,0.0,11/10/3017 +5.39996,45.5981,4708,4,22,22,24,17,3.95,5.0,fr,31266,94,1322934,1,1,Active Shallow Crust,0.0,89.99099,-90.0,04/22/4708 +5.39996,45.5981,3644,2,27,6,51,24,4.05,5.0,fr,31267,72,1322940,1,1,Active Shallow Crust,0.0,89.9881,0.0,02/27/3644 +5.39996,45.5981,4163,4,2,0,38,11,4.05,15.0,fr,31268,83,1322941,1,1,Active Shallow Crust,0.0,89.9881,0.0,04/02/4163 +5.39996,45.5981,5991,7,31,22,14,12,4.05,5.0,fr,31269,119,1322943,1,1,Active Shallow Crust,240.0061,58.00593,0.0,07/31/5991 +5.39996,45.5981,6674,1,31,13,23,19,4.15,5.0,fr,31270,133,1322955,1,1,Active Shallow Crust,240.0086,57.9971,0.0,01/31/6674 +5.39996,45.5981,3125,4,18,12,20,48,4.25,5.0,fr,31271,62,1322964,1,1,Active Shallow Crust,0.0,89.99055,0.0,04/18/3125 +5.39996,45.5981,5620,6,28,16,32,19,4.35,15.0,fr,31272,112,1322977,1,1,Active Shallow Crust,0.0,89.98876,0.0,06/28/5620 +5.39996,45.5981,3300,8,11,15,19,56,4.55,5.0,fr,31273,65,1323000,1,2,Active Shallow Crust,0.0,89.99107,0.0,08/11/3300 +5.39996,45.5981,3699,8,5,11,43,38,4.55,5.0,fr,31274,73,1323000,1,2,Active Shallow Crust,0.0,89.99107,0.0,08/05/3699 +5.39996,45.5981,9121,9,17,22,57,12,4.65,5.0,fr,31275,182,1323012,1,1,Active Shallow Crust,0.0,89.99006,0.0,09/17/9121 +1.20856,40.98251,6676,5,2,21,47,32,3.55,5.0,fr,31276,133,1323360,1,2,Active Shallow Crust,0.0,89.99049,0.0,05/02/6676 +1.20856,40.98251,7178,2,3,5,5,41,3.55,5.0,fr,31277,143,1323360,1,2,Active Shallow Crust,0.0,89.99049,0.0,02/03/7178 +1.20856,40.98251,7931,3,25,1,7,22,3.55,15.0,fr,31278,158,1323361,1,1,Active Shallow Crust,0.0,89.99049,0.0,03/25/7931 +1.20856,40.98251,4157,2,25,6,30,24,3.65,27.5,fr,31279,83,1323377,1,1,Active Shallow Crust,240.0007,58.0126,0.0,02/25/4157 +1.20856,40.98251,9982,9,7,7,6,14,3.75,15.0,fr,31280,199,1323385,1,1,Active Shallow Crust,0.0,89.98942,0.0,09/07/9982 +1.20856,40.98251,268,6,29,7,35,13,3.75,27.5,fr,31281,5,1323386,1,1,Active Shallow Crust,0.0,89.98942,0.0,06/29/0268 +1.20856,40.98251,5538,11,21,18,27,52,4.15,5.0,fr,31282,110,1323435,1,1,Active Shallow Crust,240.0075,57.9972,0.0,11/21/5538 +1.20856,40.98251,5592,12,2,21,36,33,4.25,5.0,fr,31283,111,1323444,1,1,Active Shallow Crust,0.0,89.9898,0.0,12/02/5592 +2.58564,42.27994,1859,1,2,21,33,48,3.55,5.0,fr,31284,37,1323840,1,2,Active Shallow Crust,0.0,89.98881,0.0,01/02/1859 +2.58564,42.27994,3622,3,8,4,49,55,3.55,5.0,fr,31285,72,1323840,1,2,Active Shallow Crust,0.0,89.98881,0.0,03/08/3622 +2.58564,42.27994,3349,7,16,8,23,55,3.55,15.0,fr,31286,66,1323847,1,1,Active Shallow Crust,0.0,89.98868,-90.0,07/16/3349 +2.58564,42.27994,6514,7,3,14,35,59,3.65,5.0,fr,31287,130,1323852,1,1,Active Shallow Crust,0.0,89.99003,0.0,07/03/6514 +2.58564,42.27994,2101,5,23,11,5,18,3.65,15.0,fr,31288,42,1323856,1,1,Active Shallow Crust,240.0006,58.01233,0.0,05/23/2101 +2.58564,42.27994,2001,3,29,2,23,45,3.75,5.0,fr,31289,40,1323864,1,1,Active Shallow Crust,0.0,89.99111,0.0,03/29/2001 +2.58564,42.27994,6173,7,22,10,11,32,3.75,15.0,fr,31290,123,1323868,1,1,Active Shallow Crust,240.0077,58.01721,0.0,07/22/6173 +2.58564,42.27994,956,5,31,23,48,15,3.75,5.0,fr,31291,19,1323873,1,1,Active Shallow Crust,128.8969,89.96712,0.0,05/31/0956 +2.58564,42.27994,5088,6,29,8,59,21,3.85,5.0,fr,31292,101,1323876,1,2,Active Shallow Crust,0.0,89.98943,0.0,06/29/5088 +2.58564,42.27994,9598,3,6,20,30,14,3.85,5.0,fr,31293,191,1323876,1,2,Active Shallow Crust,0.0,89.98943,0.0,03/06/9598 +2.58564,42.27994,5718,6,19,5,29,9,3.85,15.0,fr,31294,114,1323877,1,1,Active Shallow Crust,0.0,89.98943,0.0,06/19/5718 +2.58564,42.27994,3914,7,22,19,18,5,3.85,5.0,fr,31295,78,1323885,1,1,Active Shallow Crust,128.8965,89.9934,0.0,07/22/3914 +2.58564,42.27994,7307,8,13,5,21,0,3.95,5.0,fr,31296,146,1323888,1,1,Active Shallow Crust,0.0,89.99059,0.0,08/13/7307 +2.58564,42.27994,1376,2,4,11,28,13,3.95,15.0,fr,31297,27,1323889,1,1,Active Shallow Crust,0.0,89.99059,0.0,02/04/1376 +2.58564,42.27994,7311,2,17,15,18,37,3.95,27.5,fr,31298,146,1323890,1,1,Active Shallow Crust,0.0,89.99059,0.0,02/17/7311 +2.58564,42.27994,1578,6,28,18,21,3,4.05,5.0,fr,31299,31,1323900,1,1,Active Shallow Crust,0.0,89.98951,0.0,06/28/1578 +2.58564,42.27994,2011,8,24,21,57,6,4.05,27.5,fr,31300,40,1323902,1,1,Active Shallow Crust,0.0,89.98951,0.0,08/24/2011 +2.58564,42.27994,3287,5,9,10,55,10,4.15,5.0,fr,31301,65,1323912,1,4,Active Shallow Crust,0.0,89.99065,0.0,05/09/3287 +2.58564,42.27994,6380,1,30,22,47,0,4.15,5.0,fr,31302,127,1323912,1,4,Active Shallow Crust,0.0,89.99065,0.0,01/30/6380 +2.58564,42.27994,7260,11,3,0,52,38,4.15,5.0,fr,31303,145,1323912,1,4,Active Shallow Crust,0.0,89.99065,0.0,11/03/7260 +2.58564,42.27994,5206,1,27,6,10,35,4.15,5.0,fr,31304,104,1323912,1,4,Active Shallow Crust,0.0,89.99065,0.0,01/27/5206 +2.58564,42.27994,8472,10,1,11,35,36,4.25,5.0,fr,31305,169,1323924,1,1,Active Shallow Crust,0.0,89.99001,0.0,10/01/8472 +2.58564,42.27994,8266,9,1,18,18,41,4.35,5.0,fr,31306,165,1323945,1,1,Active Shallow Crust,128.8987,89.9826,0.0,09/01/8266 +2.58564,42.27994,3672,4,17,14,50,55,4.45,5.0,fr,31307,73,1323951,1,1,Active Shallow Crust,240.0041,57.99438,0.0,04/17/3672 +2.58564,42.27994,4217,12,25,20,3,17,4.65,5.0,fr,31308,84,1323972,1,1,Active Shallow Crust,0.0,89.98949,0.0,12/25/4217 +2.58564,42.27994,5415,10,26,20,14,4,4.65,5.0,fr,31309,108,1323975,1,1,Active Shallow Crust,240.0095,57.99397,0.0,10/26/5415 +2.58564,42.27994,7710,1,13,21,5,39,5.55,5.0,fr,31310,154,1324080,1,1,Active Shallow Crust,0.0,89.98992,0.0,01/13/7710 +2.585645,42.27994,5621,11,5,17,20,39,6.35,7.567806,fr,31311,112,1324176,1,1,Active Shallow Crust,359.9999,89.99004,0.0,11/05/5621 +1.16934,43.81923,801,8,19,13,0,54,3.75,5.0,fr,31312,16,1324344,1,1,Active Shallow Crust,0.0,89.98988,0.0,08/19/0801 +1.16934,43.81923,1322,2,26,6,3,58,3.75,5.0,fr,31313,26,1324353,1,1,Active Shallow Crust,128.8968,89.96745,0.0,02/26/1322 +1.16934,43.81923,3993,12,25,19,15,7,3.85,15.0,fr,31314,79,1324357,1,1,Active Shallow Crust,0.0,89.9897,0.0,12/25/3993 +1.16934,43.81923,1538,2,10,20,59,13,4.55,5.0,fr,31315,30,1324440,1,1,Active Shallow Crust,0.0,89.99022,0.0,02/10/1538 +3.32529,47.36916,7631,1,9,4,28,53,3.65,5.0,fr,31316,152,1324812,1,1,Active Shallow Crust,0.0,89.99087,0.0,01/09/7631 +3.32529,47.36916,3553,1,6,9,25,42,3.75,5.0,fr,31317,71,1324833,1,1,Active Shallow Crust,128.8971,89.96725,0.0,01/06/3553 +3.32529,47.36916,5613,9,21,5,31,1,3.85,15.0,fr,31318,112,1324837,1,1,Active Shallow Crust,0.0,89.99033,0.0,09/21/5613 +3.32529,47.36916,9952,1,17,3,19,36,4.65,15.0,fr,31319,199,1324939,1,1,Active Shallow Crust,0.0,89.99026,-90.0,01/17/9952 +3.32529,47.36916,561,6,22,5,0,57,4.95,5.0,fr,31320,11,1324968,1,1,Active Shallow Crust,0.0,89.98978,0.0,06/22/0561 +8.88062,47.81688,4574,12,21,3,16,1,3.55,5.0,fr,31321,91,1325280,1,1,Active Shallow Crust,0.0,89.98646,0.0,12/21/4574 +8.88062,47.81688,694,7,25,20,3,18,3.55,15.0,fr,31322,13,1325281,1,1,Active Shallow Crust,0.0,89.98646,0.0,07/25/0694 +8.88062,47.81688,2219,4,30,19,35,22,3.55,15.0,fr,31323,44,1325284,1,1,Active Shallow Crust,240.012,57.99802,0.0,04/30/2219 +8.88062,47.81688,8127,5,7,8,35,56,3.65,5.0,fr,31324,162,1325292,1,1,Active Shallow Crust,0.0,89.98793,0.0,05/07/8127 +8.88062,47.81688,1816,4,16,14,19,17,3.65,15.0,fr,31325,36,1325293,1,1,Active Shallow Crust,0.0,89.98793,0.0,04/16/1816 +8.88062,47.81688,1564,4,19,16,17,41,3.65,27.5,fr,31326,31,1325294,1,1,Active Shallow Crust,0.0,89.98793,0.0,04/19/1564 +8.88062,47.81688,4764,10,5,4,38,43,3.65,5.0,fr,31327,95,1325298,1,1,Active Shallow Crust,0.0,89.98779,-90.0,10/05/4764 +8.88062,47.81688,3567,1,22,4,3,28,3.75,5.0,fr,31328,71,1325304,1,2,Active Shallow Crust,0.0,89.98924,0.0,01/22/3567 +8.88062,47.81688,4497,6,27,0,12,22,3.75,5.0,fr,31329,89,1325304,1,2,Active Shallow Crust,0.0,89.98924,0.0,06/27/4497 +8.88062,47.81688,2441,10,18,19,44,12,3.75,27.5,fr,31330,48,1325306,1,1,Active Shallow Crust,0.0,89.98924,0.0,10/18/2441 +8.88062,47.81688,980,10,7,17,57,29,3.75,5.0,fr,31331,19,1325310,1,1,Active Shallow Crust,0.0,89.98912,-90.0,10/07/0980 +8.88062,47.81688,93,7,25,17,50,5,3.85,5.0,fr,31332,1,1325316,1,3,Active Shallow Crust,0.0,89.99041,0.0,07/25/0093 +8.88062,47.81688,8605,7,26,1,25,42,3.85,5.0,fr,31333,172,1325316,1,3,Active Shallow Crust,0.0,89.99041,0.0,07/26/8605 +8.88062,47.81688,4605,8,25,11,51,36,3.85,5.0,fr,31334,92,1325316,1,3,Active Shallow Crust,0.0,89.99041,0.0,08/25/4605 +8.88062,47.81688,3115,7,5,9,50,41,3.85,27.5,fr,31335,62,1325318,1,1,Active Shallow Crust,0.0,89.99041,0.0,07/05/3115 +8.88062,47.81688,6638,6,8,16,58,46,3.85,5.0,fr,31336,132,1325319,1,1,Active Shallow Crust,240.0107,57.99735,0.0,06/08/6638 +8.88062,47.81688,7261,12,9,8,8,25,3.85,5.0,fr,31337,145,1325322,1,1,Active Shallow Crust,0.0,89.9903,-90.0,12/09/7261 +8.88062,47.81688,2850,8,22,21,20,23,4.05,15.0,fr,31338,56,1325341,1,1,Active Shallow Crust,0.0,89.99239,0.0,08/22/2850 +8.88062,47.81688,8653,3,28,22,15,36,4.05,5.0,fr,31339,173,1325346,1,1,Active Shallow Crust,0.0,89.99229,-90.0,03/28/8653 +8.88062,47.81688,507,9,20,21,25,58,4.15,5.0,fr,31340,10,1325352,1,1,Active Shallow Crust,0.0,89.99321,0.0,09/20/0507 +8.88062,47.81688,5661,3,4,19,37,41,4.15,15.0,fr,31341,113,1325353,1,1,Active Shallow Crust,0.0,89.99321,0.0,03/04/5661 +8.88062,47.81688,5671,4,3,9,29,36,4.25,5.0,fr,31342,113,1325364,1,1,Active Shallow Crust,0.0,89.9879,0.0,04/03/5671 +8.88062,47.81688,7338,10,12,17,25,14,4.35,5.0,fr,31343,146,1325376,1,1,Active Shallow Crust,0.0,89.98922,0.0,10/12/7338 +8.88062,47.81688,8219,6,9,4,33,11,4.45,27.5,fr,31344,164,1325393,1,1,Active Shallow Crust,240.0047,57.99481,0.0,06/09/8219 +5.75472,51.45605,146,12,10,18,19,11,3.55,5.0,fr,31345,2,1325760,1,2,Active Shallow Crust,0.0,89.98743,0.0,12/10/0146 +5.75472,51.45605,5480,12,11,14,59,53,3.55,5.0,fr,31346,109,1325760,1,2,Active Shallow Crust,0.0,89.98743,0.0,12/11/5480 +5.75472,51.45605,4244,8,16,16,22,24,3.55,5.0,fr,31347,84,1325766,1,1,Active Shallow Crust,0.0,89.98729,-90.0,08/16/4244 +5.75472,51.45605,3460,3,29,1,40,9,3.65,5.0,fr,31348,69,1325772,1,1,Active Shallow Crust,0.0,89.9888,0.0,03/29/3460 +5.75472,51.45605,8616,10,31,11,31,4,3.75,5.0,fr,31349,172,1325784,1,2,Active Shallow Crust,0.0,89.99002,0.0,10/31/8616 +5.75472,51.45605,2799,6,11,7,29,32,3.75,5.0,fr,31350,55,1325784,1,2,Active Shallow Crust,0.0,89.99002,0.0,06/11/2799 +5.14877,49.02557,2184,5,22,6,25,34,3.75,5.0,fr,31351,43,1326273,1,1,Active Shallow Crust,128.8965,89.96701,0.0,05/22/2184 +5.14877,49.02557,7136,5,8,22,42,27,4.35,5.0,fr,31352,142,1326336,1,1,Active Shallow Crust,0.0,89.98947,0.0,05/08/7136 +3.83705,42.20029,1619,5,14,12,23,6,3.55,5.0,fr,31353,32,1326720,1,2,Active Shallow Crust,0.0,89.98879,0.0,05/14/1619 +3.83705,42.20029,7158,9,2,9,55,58,3.55,5.0,fr,31354,143,1326720,1,2,Active Shallow Crust,0.0,89.98879,0.0,09/02/7158 +3.83705,42.20029,4752,7,31,12,43,13,3.85,15.0,fr,31355,95,1326760,1,1,Active Shallow Crust,240.0107,57.99728,0.0,07/31/4752 +3.83705,42.20029,827,12,4,17,2,43,3.85,27.5,fr,31356,16,1326761,1,1,Active Shallow Crust,240.0107,57.99728,0.0,12/04/0827 +3.83705,42.20029,8619,9,15,17,23,54,3.95,5.0,fr,31357,172,1326768,1,1,Active Shallow Crust,0.0,89.99057,0.0,09/15/8619 +3.83705,42.20029,2199,9,18,15,40,41,4.25,5.0,fr,31358,43,1326810,1,1,Active Shallow Crust,0.0,89.98988,-90.0,09/18/2199 +3.83705,42.20029,8984,6,11,13,30,18,4.55,5.0,fr,31359,179,1326846,1,1,Active Shallow Crust,0.0,89.99044,-90.0,06/11/8984 +3.83705,42.20029,873,6,27,5,21,34,5.05,5.0,fr,31360,17,1326900,1,1,Active Shallow Crust,0.0,89.99004,0.0,06/27/0873 +-2.77411,43.14684,489,4,19,10,57,19,3.55,5.0,fr,31361,9,1327200,1,1,Active Shallow Crust,0.0,89.98897,0.0,04/19/0489 +-2.77411,43.14684,2609,8,18,17,56,18,3.55,15.0,fr,31362,52,1327201,1,1,Active Shallow Crust,0.0,89.98897,0.0,08/18/2609 +-2.77411,43.14684,5006,2,9,23,21,18,3.75,5.0,fr,31363,100,1327224,1,1,Active Shallow Crust,0.0,89.99123,0.0,02/09/5006 +-2.77411,43.14684,8977,5,25,8,55,59,3.75,15.0,fr,31364,179,1327225,1,1,Active Shallow Crust,0.0,89.99123,0.0,05/25/8977 +-2.77411,43.14684,7237,1,22,5,55,31,3.75,5.0,fr,31365,144,1327227,1,1,Active Shallow Crust,240.0084,58.0173,0.0,01/22/7237 +-2.77411,43.14684,3235,10,28,5,58,43,3.75,15.0,fr,31366,64,1327228,1,1,Active Shallow Crust,240.0084,58.0173,0.0,10/28/3235 +-2.77411,43.14684,900,2,23,4,8,58,3.85,27.5,fr,31367,17,1327238,1,1,Active Shallow Crust,0.0,89.98959,0.0,02/23/0900 +-2.77411,43.14684,3751,1,30,9,22,7,4.05,5.0,fr,31368,75,1327260,1,1,Active Shallow Crust,0.0,89.98965,0.0,01/30/3751 +-2.77411,43.14684,2153,6,5,22,22,48,4.55,5.0,fr,31369,43,1327320,1,1,Active Shallow Crust,0.0,89.98953,0.0,06/05/2153 +-2.77411,43.14684,1616,2,10,5,19,26,4.55,15.0,fr,31370,32,1327321,1,1,Active Shallow Crust,0.0,89.98953,0.0,02/10/1616 +-2.77411,43.14684,9143,12,17,12,26,57,4.95,5.0,fr,31371,182,1327371,1,1,Active Shallow Crust,240.0103,58.00422,0.0,12/17/9143 +6.32564,44.53333,4647,4,20,8,26,57,3.55,5.0,fr,31372,92,1327680,1,4,Active Shallow Crust,0.0,89.99281,0.0,04/20/4647 +6.32564,44.53333,7453,5,13,5,28,32,3.55,5.0,fr,31373,149,1327680,1,4,Active Shallow Crust,0.0,89.99281,0.0,05/13/7453 +6.32564,44.53333,2127,7,4,15,3,33,3.55,5.0,fr,31374,42,1327680,1,4,Active Shallow Crust,0.0,89.99281,0.0,07/04/2127 +6.32564,44.53333,4291,10,28,16,51,22,3.55,5.0,fr,31375,85,1327680,1,4,Active Shallow Crust,0.0,89.99281,0.0,10/28/4291 +6.32564,44.53333,1959,1,30,3,14,29,3.55,5.0,fr,31376,39,1327689,1,1,Active Shallow Crust,128.8963,89.99281,0.0,01/30/1959 +6.32564,44.53333,149,12,14,22,6,42,3.55,15.0,fr,31377,2,1327690,1,1,Active Shallow Crust,128.8963,89.99281,0.0,12/14/0149 +6.32564,44.53333,3361,11,8,11,19,43,3.65,5.0,fr,31378,67,1327692,1,1,Active Shallow Crust,0.0,89.98719,0.0,11/08/3361 +6.32564,44.53333,179,5,21,18,8,53,3.65,5.0,fr,31379,3,1327695,1,1,Active Shallow Crust,240.0011,58.01318,0.0,05/21/0179 +6.32564,44.53333,5559,4,15,5,47,29,3.75,5.0,fr,31380,111,1327704,1,1,Active Shallow Crust,0.0,89.98858,0.0,04/15/5559 +6.32564,44.53333,3208,7,3,3,28,6,3.75,27.5,fr,31381,64,1327706,1,1,Active Shallow Crust,0.0,89.98858,0.0,07/03/3208 +6.32564,44.53333,8718,10,17,20,10,1,3.85,5.0,fr,31382,174,1327716,1,1,Active Shallow Crust,0.0,89.98982,0.0,10/17/8718 +6.32564,44.53333,6744,7,15,14,1,9,3.85,15.0,fr,31383,134,1327717,1,1,Active Shallow Crust,0.0,89.98982,0.0,07/15/6744 +6.32564,44.53333,413,8,1,7,23,21,4.05,15.0,fr,31384,8,1327741,1,1,Active Shallow Crust,0.0,89.99191,0.0,08/01/0413 +6.32564,44.53333,9098,4,5,21,1,4,4.25,15.0,fr,31385,181,1327768,1,1,Active Shallow Crust,240.0073,57.99368,0.0,04/05/9098 +6.32564,44.53333,8522,4,8,17,40,32,4.25,5.0,fr,31386,170,1327773,1,1,Active Shallow Crust,128.8945,89.98087,0.0,04/08/8522 +6.32564,44.53333,8728,10,9,13,57,41,4.45,5.0,fr,31387,174,1327788,1,1,Active Shallow Crust,0.0,89.9898,0.0,10/09/8728 +6.32564,44.53333,1180,5,26,14,56,10,5.35,5.0,fr,31388,23,1327896,1,1,Active Shallow Crust,0.0,89.99004,0.0,05/26/1180 +6.32564,44.53333,5384,5,26,14,11,1,5.75,5.0,fr,31389,107,1327944,1,1,Active Shallow Crust,0.0,89.98972,0.0,05/26/5384 +0.87335,49.41132,1846,11,2,2,21,23,3.55,5.0,fr,31390,36,1328160,1,1,Active Shallow Crust,0.0,89.99016,0.0,11/02/1846 +0.87335,49.41132,6876,3,5,16,4,23,3.55,15.0,fr,31391,137,1328164,1,1,Active Shallow Crust,240.0125,57.99822,0.0,03/05/6876 +0.87335,49.41132,9264,5,30,8,51,22,3.55,5.0,fr,31392,185,1328169,1,1,Active Shallow Crust,128.8959,89.99385,0.0,05/30/9264 +0.87335,49.41132,6061,5,4,11,56,34,3.65,5.0,fr,31393,121,1328175,1,2,Active Shallow Crust,240.0013,58.01298,0.0,05/04/6061 +0.87335,49.41132,518,8,12,10,15,48,3.65,5.0,fr,31394,10,1328175,1,2,Active Shallow Crust,240.0013,58.01298,0.0,08/12/0518 +0.87335,49.41132,6622,7,19,11,6,47,3.65,15.0,fr,31395,132,1328179,1,1,Active Shallow Crust,0.0,89.98965,-90.0,07/19/6622 +0.87335,49.41132,3569,8,27,5,42,1,3.75,5.0,fr,31396,71,1328184,1,1,Active Shallow Crust,0.0,89.99023,0.0,08/27/3569 +0.87335,49.41132,5797,5,24,14,7,39,3.85,27.5,fr,31397,115,1328198,1,1,Active Shallow Crust,0.0,89.99013,0.0,05/24/5797 +0.87335,49.41132,5943,12,2,18,50,40,3.95,5.0,fr,31398,118,1328208,1,2,Active Shallow Crust,0.0,89.99017,0.0,12/02/5943 +0.87335,49.41132,227,11,16,15,19,13,3.95,5.0,fr,31399,4,1328208,1,2,Active Shallow Crust,0.0,89.99017,0.0,11/16/0227 +0.87335,49.41132,5585,2,2,4,57,29,4.25,5.0,fr,31400,111,1328253,1,1,Active Shallow Crust,128.8938,89.98093,0.0,02/02/5585 +0.87335,49.41132,8228,8,21,4,45,21,4.35,5.0,fr,31401,164,1328256,1,1,Active Shallow Crust,0.0,89.98988,0.0,08/21/8228 +0.87335,49.41132,9575,9,10,20,26,3,4.45,5.0,fr,31402,191,1328268,1,1,Active Shallow Crust,0.0,89.9901,0.0,09/10/9575 +0.87335,49.41132,4581,2,26,8,16,13,4.75,5.0,fr,31403,91,1328304,1,1,Active Shallow Crust,0.0,89.98991,0.0,02/26/4581 +0.87335,49.41132,2030,1,10,1,17,51,5.95,5.0,fr,31404,40,1328448,1,1,Active Shallow Crust,0.0,89.99001,0.0,01/10/2030 +0.87335,49.41132,6746,12,17,15,16,14,6.05,15.0,fr,31405,134,1328461,1,1,Active Shallow Crust,0.0,89.98998,0.0,12/17/6746 +4.02679,46.57539,5593,6,12,21,11,58,3.55,5.0,fr,31406,111,1328640,1,1,Active Shallow Crust,0.0,89.99306,0.0,06/12/5593 +4.02679,46.57539,1123,3,7,23,30,25,3.75,27.5,fr,31407,22,1328666,1,1,Active Shallow Crust,0.0,89.98899,0.0,03/07/1123 +4.02679,46.57539,8201,1,9,9,47,5,3.85,5.0,fr,31408,164,1328676,1,1,Active Shallow Crust,0.0,89.99019,0.0,01/09/8201 +4.02679,46.57539,6668,6,14,9,33,14,3.95,15.0,fr,31409,133,1328695,1,1,Active Shallow Crust,0.0,89.99115,-90.0,06/14/6668 +4.02679,46.57539,6167,12,18,15,46,28,4.25,5.0,fr,31410,123,1328727,1,1,Active Shallow Crust,240.0078,57.99371,0.0,12/18/6167 +4.02679,46.57539,7761,8,31,19,55,28,4.35,5.0,fr,31411,155,1328736,1,1,Active Shallow Crust,0.0,89.98896,0.0,08/31/7761 +4.02679,46.57539,8958,9,10,12,2,16,4.35,5.0,fr,31412,179,1328739,1,1,Active Shallow Crust,240.0088,57.99578,0.0,09/10/8958 +-0.94292,44.17404,2520,6,16,13,5,29,3.55,5.0,fr,31413,50,1329129,1,1,Active Shallow Crust,128.8965,89.99368,0.0,06/16/2520 +-0.94292,44.17404,1298,12,1,16,7,5,4.75,5.0,fr,31414,25,1329264,1,1,Active Shallow Crust,0.0,89.99001,0.0,12/01/1298 +0.14258,42.91099,9426,6,9,20,42,1,3.55,5.0,fr,31415,188,1329600,1,11,Active Shallow Crust,0.0,89.99007,0.0,06/09/9426 +0.14258,42.91099,3515,1,13,20,15,42,3.55,5.0,fr,31416,70,1329600,1,11,Active Shallow Crust,0.0,89.99007,0.0,01/13/3515 +0.14258,42.91099,9962,5,29,19,15,43,3.55,5.0,fr,31417,199,1329600,1,11,Active Shallow Crust,0.0,89.99007,0.0,05/29/9962 +0.14258,42.91099,3831,3,16,17,28,52,3.55,5.0,fr,31418,76,1329600,1,11,Active Shallow Crust,0.0,89.99007,0.0,03/16/3831 +0.14258,42.91099,6150,7,16,22,19,25,3.55,5.0,fr,31419,122,1329600,1,11,Active Shallow Crust,0.0,89.99007,0.0,07/16/6150 +0.14258,42.91099,1327,12,2,15,15,24,3.55,5.0,fr,31420,26,1329600,1,11,Active Shallow Crust,0.0,89.99007,0.0,12/02/1327 +0.14258,42.91099,7646,9,9,22,9,24,3.55,5.0,fr,31421,152,1329600,1,11,Active Shallow Crust,0.0,89.99007,0.0,09/09/7646 +0.14258,42.91099,4728,11,30,10,22,16,3.55,5.0,fr,31422,94,1329600,1,11,Active Shallow Crust,0.0,89.99007,0.0,11/30/4728 +0.14258,42.91099,9156,6,13,2,32,30,3.55,5.0,fr,31423,183,1329600,1,11,Active Shallow Crust,0.0,89.99007,0.0,06/13/9156 +0.14258,42.91099,9219,5,8,14,51,59,3.55,5.0,fr,31424,184,1329600,1,11,Active Shallow Crust,0.0,89.99007,0.0,05/08/9219 +0.14258,42.91099,3547,7,23,21,29,35,3.55,5.0,fr,31425,70,1329600,1,11,Active Shallow Crust,0.0,89.99007,0.0,07/23/3547 +0.14258,42.91099,3087,11,11,17,18,14,3.55,15.0,fr,31426,61,1329601,1,3,Active Shallow Crust,0.0,89.99007,0.0,11/11/3087 +0.14258,42.91099,6334,9,17,12,8,53,3.55,15.0,fr,31427,126,1329601,1,3,Active Shallow Crust,0.0,89.99007,0.0,09/17/6334 +0.14258,42.91099,6371,5,20,16,32,41,3.55,15.0,fr,31428,127,1329601,1,3,Active Shallow Crust,0.0,89.99007,0.0,05/20/6371 +0.14258,42.91099,5938,5,31,11,24,42,3.55,27.5,fr,31429,118,1329602,1,2,Active Shallow Crust,0.0,89.99007,0.0,05/31/5938 +0.14258,42.91099,5980,10,11,0,48,47,3.55,27.5,fr,31430,119,1329602,1,2,Active Shallow Crust,0.0,89.99007,0.0,10/11/5980 +0.14258,42.91099,179,4,11,4,3,39,3.55,5.0,fr,31431,3,1329603,1,1,Active Shallow Crust,240.0118,57.99814,0.0,04/11/0179 +0.14258,42.91099,4409,5,16,18,36,3,3.55,15.0,fr,31432,88,1329604,1,1,Active Shallow Crust,240.0118,57.99814,0.0,05/16/4409 +0.14258,42.91099,9557,7,7,8,39,41,3.55,27.5,fr,31433,191,1329605,1,1,Active Shallow Crust,240.0118,57.99805,0.0,07/07/9557 +0.14258,42.91099,8339,3,22,7,19,9,3.55,5.0,fr,31434,166,1329606,1,1,Active Shallow Crust,0.0,89.98996,-90.0,03/22/8339 +0.14258,42.91099,8880,4,1,19,38,21,3.55,15.0,fr,31435,177,1329607,1,1,Active Shallow Crust,0.0,89.98996,-90.0,04/01/8880 +0.14258,42.91099,2409,9,23,23,6,52,3.55,27.5,fr,31436,48,1329608,1,1,Active Shallow Crust,0.0,89.98996,-90.0,09/23/2409 +0.14258,42.91099,9487,12,30,20,38,22,3.55,5.0,fr,31437,189,1329609,1,1,Active Shallow Crust,128.8965,89.99377,0.0,12/30/9487 +0.14258,42.91099,5749,2,15,12,5,35,3.65,5.0,fr,31438,114,1329612,1,5,Active Shallow Crust,0.0,89.98992,0.0,02/15/5749 +0.14258,42.91099,3731,8,18,9,42,41,3.65,5.0,fr,31439,74,1329612,1,5,Active Shallow Crust,0.0,89.98992,0.0,08/18/3731 +0.14258,42.91099,6948,9,28,23,6,6,3.65,5.0,fr,31440,138,1329612,1,5,Active Shallow Crust,0.0,89.98992,0.0,09/28/6948 +0.14258,42.91099,3709,5,29,11,5,49,3.65,5.0,fr,31441,74,1329612,1,5,Active Shallow Crust,0.0,89.98992,0.0,05/29/3709 +0.14258,42.91099,7886,7,14,17,1,5,3.65,5.0,fr,31442,157,1329612,1,5,Active Shallow Crust,0.0,89.98992,0.0,07/14/7886 +0.14258,42.91099,7476,6,13,7,10,18,3.65,15.0,fr,31443,149,1329613,1,2,Active Shallow Crust,0.0,89.98992,0.0,06/13/7476 +0.14258,42.91099,8883,1,24,22,57,54,3.65,15.0,fr,31444,177,1329613,1,2,Active Shallow Crust,0.0,89.98992,0.0,01/24/8883 +0.14258,42.91099,2709,8,2,5,42,42,3.65,15.0,fr,31445,54,1329616,1,1,Active Shallow Crust,240.0007,58.01283,0.0,08/02/2709 +0.14258,42.91099,5352,9,20,7,23,39,3.65,15.0,fr,31446,107,1329619,1,4,Active Shallow Crust,0.0,89.99001,-90.0,09/20/5352 +0.14258,42.91099,946,10,22,22,5,48,3.65,15.0,fr,31447,18,1329619,1,4,Active Shallow Crust,0.0,89.99001,-90.0,10/22/0946 +0.14258,42.91099,1084,11,24,20,45,16,3.65,15.0,fr,31448,21,1329619,1,4,Active Shallow Crust,0.0,89.99001,-90.0,11/24/1084 +0.14258,42.91099,8896,1,28,20,50,37,3.65,15.0,fr,31449,177,1329619,1,4,Active Shallow Crust,0.0,89.99001,-90.0,01/28/8896 +0.14258,42.91099,5754,8,11,10,49,41,3.65,5.0,fr,31450,115,1329621,1,2,Active Shallow Crust,128.9007,89.96351,0.0,08/11/5754 +0.14258,42.91099,9425,3,19,12,51,25,3.65,5.0,fr,31451,188,1329621,1,2,Active Shallow Crust,128.9007,89.96351,0.0,03/19/9425 +0.14258,42.91099,6312,12,28,6,23,20,3.65,15.0,fr,31452,126,1329622,1,1,Active Shallow Crust,128.9007,89.96351,0.0,12/28/6312 +0.14258,42.91099,5573,6,22,15,1,18,3.75,5.0,fr,31453,111,1329624,1,14,Active Shallow Crust,0.0,89.98991,0.0,06/22/5573 +0.14258,42.91099,1549,10,30,12,53,42,3.75,5.0,fr,31454,30,1329624,1,14,Active Shallow Crust,0.0,89.98991,0.0,10/30/1549 +0.14258,42.91099,7632,8,6,23,39,54,3.75,5.0,fr,31455,152,1329624,1,14,Active Shallow Crust,0.0,89.98991,0.0,08/06/7632 +0.14258,42.91099,6531,5,17,19,14,52,3.75,5.0,fr,31456,130,1329624,1,14,Active Shallow Crust,0.0,89.98991,0.0,05/17/6531 +0.14258,42.91099,4362,8,22,2,54,1,3.75,5.0,fr,31457,87,1329624,1,14,Active Shallow Crust,0.0,89.98991,0.0,08/22/4362 +0.14258,42.91099,5541,7,1,17,6,48,3.75,5.0,fr,31458,110,1329624,1,14,Active Shallow Crust,0.0,89.98991,0.0,07/01/5541 +0.14258,42.91099,4921,7,25,21,25,31,3.75,5.0,fr,31459,98,1329624,1,14,Active Shallow Crust,0.0,89.98991,0.0,07/25/4921 +0.14258,42.91099,401,7,20,22,32,38,3.75,5.0,fr,31460,8,1329624,1,14,Active Shallow Crust,0.0,89.98991,0.0,07/20/0401 +0.14258,42.91099,5383,9,5,17,57,19,3.75,5.0,fr,31461,107,1329624,1,14,Active Shallow Crust,0.0,89.98991,0.0,09/05/5383 +0.14258,42.91099,8633,6,1,17,33,56,3.75,5.0,fr,31462,172,1329624,1,14,Active Shallow Crust,0.0,89.98991,0.0,06/01/8633 +0.14258,42.91099,4709,6,13,18,10,49,3.75,5.0,fr,31463,94,1329624,1,14,Active Shallow Crust,0.0,89.98991,0.0,06/13/4709 +0.14258,42.91099,6698,11,1,3,55,22,3.75,5.0,fr,31464,133,1329624,1,14,Active Shallow Crust,0.0,89.98991,0.0,11/01/6698 +0.14258,42.91099,1252,9,12,4,58,52,3.75,5.0,fr,31465,25,1329624,1,14,Active Shallow Crust,0.0,89.98991,0.0,09/12/1252 +0.14258,42.91099,5405,6,9,3,22,49,3.75,5.0,fr,31466,108,1329624,1,14,Active Shallow Crust,0.0,89.98991,0.0,06/09/5405 +0.14258,42.91099,5606,7,22,19,54,20,3.75,27.5,fr,31467,112,1329626,1,1,Active Shallow Crust,0.0,89.98991,0.0,07/22/5606 +0.14258,42.91099,4848,7,29,13,51,17,3.75,5.0,fr,31468,96,1329627,1,2,Active Shallow Crust,240.008,58.01751,0.0,07/29/4848 +0.14258,42.91099,2798,2,26,18,24,55,3.75,5.0,fr,31469,55,1329627,1,2,Active Shallow Crust,240.008,58.01751,0.0,02/26/2798 +0.14258,42.91099,876,12,30,6,53,43,3.75,15.0,fr,31470,17,1329631,1,1,Active Shallow Crust,0.0,89.98998,-90.0,12/30/0876 +0.14258,42.91099,8359,8,13,6,11,55,3.85,5.0,fr,31471,167,1329636,1,1,Active Shallow Crust,0.0,89.99004,0.0,08/13/8359 +0.14258,42.91099,9507,12,10,19,22,4,3.85,15.0,fr,31472,190,1329637,1,2,Active Shallow Crust,0.0,89.99004,0.0,12/10/9507 +0.14258,42.91099,5437,11,16,12,32,5,3.85,15.0,fr,31473,108,1329637,1,2,Active Shallow Crust,0.0,89.99004,0.0,11/16/5437 +0.14258,42.91099,4797,6,6,0,41,46,3.85,27.5,fr,31474,95,1329641,1,2,Active Shallow Crust,240.0104,57.99772,0.0,06/06/4797 +0.14258,42.91099,5533,4,21,1,56,28,3.85,27.5,fr,31475,110,1329641,1,2,Active Shallow Crust,240.0104,57.99772,0.0,04/21/5533 +0.14258,42.91099,9391,11,22,3,20,41,3.85,5.0,fr,31476,187,1329642,1,2,Active Shallow Crust,0.0,89.98991,-90.0,11/22/9391 +0.14258,42.91099,500,7,30,3,57,14,3.85,5.0,fr,31477,9,1329642,1,2,Active Shallow Crust,0.0,89.98991,-90.0,07/30/0500 +0.14258,42.91099,6522,8,8,23,8,4,3.85,5.0,fr,31478,130,1329645,1,2,Active Shallow Crust,128.8961,89.99371,0.0,08/08/6522 +0.14258,42.91099,8293,1,23,1,40,34,3.85,5.0,fr,31479,165,1329645,1,2,Active Shallow Crust,128.8961,89.99371,0.0,01/23/8293 +0.14258,42.91099,7124,10,7,0,13,52,3.85,15.0,fr,31480,142,1329646,1,3,Active Shallow Crust,128.8961,89.99371,0.0,10/07/7124 +0.14258,42.91099,4505,4,25,21,26,25,3.85,15.0,fr,31481,90,1329646,1,3,Active Shallow Crust,128.8961,89.99371,0.0,04/25/4505 +0.14258,42.91099,5096,4,25,10,8,42,3.85,15.0,fr,31482,101,1329646,1,3,Active Shallow Crust,128.8961,89.99371,0.0,04/25/5096 +0.14258,42.91099,1525,10,13,0,43,45,3.95,5.0,fr,31483,30,1329648,1,7,Active Shallow Crust,0.0,89.98995,0.0,10/13/1525 +0.14258,42.91099,5760,9,25,5,44,10,3.95,5.0,fr,31484,115,1329648,1,7,Active Shallow Crust,0.0,89.98995,0.0,09/25/5760 +0.14258,42.91099,3349,6,17,15,26,29,3.95,5.0,fr,31485,66,1329648,1,7,Active Shallow Crust,0.0,89.98995,0.0,06/17/3349 +0.14258,42.91099,1463,4,12,14,9,16,3.95,5.0,fr,31486,29,1329648,1,7,Active Shallow Crust,0.0,89.98995,0.0,04/12/1463 +0.14258,42.91099,7506,1,27,8,46,26,3.95,5.0,fr,31487,150,1329648,1,7,Active Shallow Crust,0.0,89.98995,0.0,01/27/7506 +0.14258,42.91099,1589,8,11,20,3,35,3.95,5.0,fr,31488,31,1329648,1,7,Active Shallow Crust,0.0,89.98995,0.0,08/11/1589 +0.14258,42.91099,7325,11,6,13,38,46,3.95,5.0,fr,31489,146,1329648,1,7,Active Shallow Crust,0.0,89.98995,0.0,11/06/7325 +0.14258,42.91099,6234,9,15,0,1,46,3.95,15.0,fr,31490,124,1329649,1,2,Active Shallow Crust,0.0,89.98995,0.0,09/15/6234 +0.14258,42.91099,455,5,5,20,39,7,3.95,15.0,fr,31491,9,1329649,1,2,Active Shallow Crust,0.0,89.98995,0.0,05/05/0455 +0.14258,42.91099,9088,5,16,9,23,46,3.95,27.5,fr,31492,181,1329650,1,1,Active Shallow Crust,0.0,89.98995,0.0,05/16/9088 +0.14258,42.91099,843,10,24,20,35,18,3.95,5.0,fr,31493,16,1329654,1,2,Active Shallow Crust,0.0,89.98998,-90.0,10/24/0843 +0.14258,42.91099,2264,8,11,1,58,3,3.95,5.0,fr,31494,45,1329654,1,2,Active Shallow Crust,0.0,89.98998,-90.0,08/11/2264 +0.14258,42.91099,3870,8,10,18,57,5,4.05,5.0,fr,31495,77,1329660,1,10,Active Shallow Crust,0.0,89.99001,0.0,08/10/3870 +0.14258,42.91099,6659,5,29,19,59,4,4.05,5.0,fr,31496,133,1329660,1,10,Active Shallow Crust,0.0,89.99001,0.0,05/29/6659 +0.14258,42.91099,3513,4,8,2,45,5,4.05,5.0,fr,31497,70,1329660,1,10,Active Shallow Crust,0.0,89.99001,0.0,04/08/3513 +0.14258,42.91099,7575,6,24,2,9,21,4.05,5.0,fr,31498,151,1329660,1,10,Active Shallow Crust,0.0,89.99001,0.0,06/24/7575 +0.14258,42.91099,5739,10,5,18,51,12,4.05,5.0,fr,31499,114,1329660,1,10,Active Shallow Crust,0.0,89.99001,0.0,10/05/5739 +0.14258,42.91099,5509,5,10,14,36,46,4.05,5.0,fr,31500,110,1329660,1,10,Active Shallow Crust,0.0,89.99001,0.0,05/10/5509 +0.14258,42.91099,1729,8,27,17,55,41,4.05,5.0,fr,31501,34,1329660,1,10,Active Shallow Crust,0.0,89.99001,0.0,08/27/1729 +0.14258,42.91099,1212,9,10,21,53,33,4.05,5.0,fr,31502,24,1329660,1,10,Active Shallow Crust,0.0,89.99001,0.0,09/10/1212 +0.14258,42.91099,4677,1,1,16,21,12,4.05,5.0,fr,31503,93,1329660,1,10,Active Shallow Crust,0.0,89.99001,0.0,01/01/4677 +0.14258,42.91099,8781,9,13,10,18,48,4.05,5.0,fr,31504,175,1329660,1,10,Active Shallow Crust,0.0,89.99001,0.0,09/13/8781 +0.14258,42.91099,6200,9,20,1,4,41,4.05,15.0,fr,31505,123,1329661,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/20/6200 +0.14258,42.91099,5,6,23,9,45,59,4.05,15.0,fr,31506,0,1329664,1,3,Active Shallow Crust,240.0054,58.00569,0.0,06/23/0005 +0.14258,42.91099,441,11,18,14,28,47,4.05,15.0,fr,31507,8,1329664,1,3,Active Shallow Crust,240.0054,58.00569,0.0,11/18/0441 +0.14258,42.91099,9529,10,23,21,31,45,4.05,15.0,fr,31508,190,1329664,1,3,Active Shallow Crust,240.0054,58.00569,0.0,10/23/9529 +0.14258,42.91099,8668,5,5,16,56,19,4.15,5.0,fr,31509,173,1329672,1,4,Active Shallow Crust,0.0,89.99005,0.0,05/05/8668 +0.14258,42.91099,3035,7,16,14,41,34,4.15,5.0,fr,31510,60,1329672,1,4,Active Shallow Crust,0.0,89.99005,0.0,07/16/3035 +0.14258,42.91099,6423,11,6,13,15,44,4.15,5.0,fr,31511,128,1329672,1,4,Active Shallow Crust,0.0,89.99005,0.0,11/06/6423 +0.14258,42.91099,4912,8,22,22,59,0,4.15,5.0,fr,31512,98,1329672,1,4,Active Shallow Crust,0.0,89.99005,0.0,08/22/4912 +0.14258,42.91099,7327,9,21,2,2,25,4.15,15.0,fr,31513,146,1329673,1,2,Active Shallow Crust,0.0,89.99005,0.0,09/21/7327 +0.14258,42.91099,9039,9,10,5,32,37,4.15,15.0,fr,31514,180,1329673,1,2,Active Shallow Crust,0.0,89.99005,0.0,09/10/9039 +0.14258,42.91099,1523,10,7,18,39,50,4.15,5.0,fr,31515,30,1329675,1,1,Active Shallow Crust,240.0078,57.99719,0.0,10/07/1523 +0.14258,42.91099,2605,11,20,21,10,54,4.15,27.5,fr,31516,52,1329677,1,1,Active Shallow Crust,240.0078,57.99717,0.0,11/20/2605 +0.14258,42.91099,6793,3,29,19,39,56,4.15,15.0,fr,31517,135,1329679,1,1,Active Shallow Crust,0.0,89.99005,-90.0,03/29/6793 +0.14258,42.91099,5436,8,16,8,8,40,4.25,5.0,fr,31518,108,1329684,1,2,Active Shallow Crust,0.0,89.99,0.0,08/16/5436 +0.14258,42.91099,3501,1,1,2,27,29,4.25,5.0,fr,31519,70,1329684,1,2,Active Shallow Crust,0.0,89.99,0.0,01/01/3501 +0.14258,42.91099,2220,7,25,14,55,17,4.25,15.0,fr,31520,44,1329685,1,1,Active Shallow Crust,0.0,89.99,0.0,07/25/2220 +0.14258,42.91099,9148,12,7,20,28,31,4.25,27.5,fr,31521,182,1329686,1,1,Active Shallow Crust,0.0,89.99,0.0,12/07/9148 +0.14258,42.91099,1542,5,25,5,28,24,4.25,27.5,fr,31522,30,1329689,1,1,Active Shallow Crust,240.0069,57.99395,0.0,05/25/1542 +0.14258,42.91099,7433,2,12,9,38,38,4.25,5.0,fr,31523,148,1329690,1,1,Active Shallow Crust,0.0,89.98999,-90.0,02/12/7433 +0.14258,42.91099,2809,2,27,0,40,35,4.35,5.0,fr,31524,56,1329696,1,3,Active Shallow Crust,0.0,89.98998,0.0,02/27/2809 +0.14258,42.91099,4236,8,25,22,36,45,4.35,5.0,fr,31525,84,1329696,1,3,Active Shallow Crust,0.0,89.98998,0.0,08/25/4236 +0.14258,42.91099,7081,5,23,5,35,9,4.35,5.0,fr,31526,141,1329696,1,3,Active Shallow Crust,0.0,89.98998,0.0,05/23/7081 +0.14258,42.91099,8610,12,15,12,15,3,4.35,27.5,fr,31527,172,1329698,1,1,Active Shallow Crust,0.0,89.98998,0.0,12/15/8610 +0.14258,42.91099,2634,11,2,15,36,6,4.35,5.0,fr,31528,52,1329699,1,2,Active Shallow Crust,240.0076,57.99579,0.0,11/02/2634 +0.14258,42.91099,4639,3,27,3,33,57,4.35,5.0,fr,31529,92,1329699,1,2,Active Shallow Crust,240.0076,57.99579,0.0,03/27/4639 +0.14258,42.91099,1541,1,18,22,36,35,4.45,5.0,fr,31530,30,1329708,1,1,Active Shallow Crust,0.0,89.99001,0.0,01/18/1541 +0.14258,42.91099,1355,11,4,11,48,9,4.45,15.0,fr,31531,27,1329709,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/04/1355 +0.14258,42.91099,6498,7,25,3,48,36,4.45,15.0,fr,31532,129,1329715,1,1,Active Shallow Crust,0.0,89.98997,-90.0,07/25/6498 +0.14258,42.91099,7566,11,13,12,28,3,4.45,5.0,fr,31533,151,1329717,1,1,Active Shallow Crust,128.8929,89.9937,0.0,11/13/7566 +0.14258,42.91099,3669,12,23,15,22,5,4.45,15.0,fr,31534,73,1329718,1,1,Active Shallow Crust,128.8929,89.9937,0.0,12/23/3669 +0.14258,42.91099,2798,3,9,23,52,19,4.55,15.0,fr,31535,55,1329721,1,1,Active Shallow Crust,0.0,89.99,0.0,03/09/2798 +0.14258,42.91099,5359,7,4,0,43,7,4.55,5.0,fr,31536,107,1329726,1,1,Active Shallow Crust,0.0,89.99003,-90.0,07/04/5359 +0.14258,42.91099,1142,12,9,18,41,28,4.65,5.0,fr,31537,22,1329732,1,2,Active Shallow Crust,0.0,89.98998,0.0,12/09/1142 +0.14258,42.91099,289,2,23,0,45,34,4.65,5.0,fr,31538,5,1329732,1,2,Active Shallow Crust,0.0,89.98998,0.0,02/23/0289 +0.14258,42.91099,4265,4,24,12,44,16,4.85,15.0,fr,31539,85,1329763,1,1,Active Shallow Crust,0.0,89.99001,-90.0,04/24/4265 +0.14258,42.91099,2752,2,1,10,22,17,4.95,15.0,fr,31540,55,1329769,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/01/2752 +0.14258,42.91099,9136,4,25,16,41,16,5.05,5.0,fr,31541,182,1329780,1,3,Active Shallow Crust,0.0,89.98998,0.0,04/25/9136 +0.14258,42.91099,2328,5,28,6,48,40,5.05,5.0,fr,31542,46,1329780,1,3,Active Shallow Crust,0.0,89.98998,0.0,05/28/2328 +0.14258,42.91099,121,8,8,22,35,12,5.05,5.0,fr,31543,2,1329780,1,3,Active Shallow Crust,0.0,89.98998,0.0,08/08/0121 +0.14258,42.91099,6002,2,1,0,12,19,5.15,5.0,fr,31544,120,1329792,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/01/6002 +0.14258,42.91099,7512,10,30,1,50,20,5.65,5.0,fr,31545,150,1329852,1,1,Active Shallow Crust,0.0,89.99,0.0,10/30/7512 +0.14258,42.91099,194,3,29,8,14,14,5.75,5.0,fr,31546,3,1329864,1,1,Active Shallow Crust,360.0,89.99001,0.0,03/29/0194 +0.1426068,42.91099,128,10,16,13,26,53,7.45,17.5,fr,31547,2,1330068,1,1,Active Shallow Crust,360.0,89.99,0.0,10/16/0128 +3.56498,50.67333,8607,12,24,15,5,36,3.55,15.0,fr,31548,172,1330081,1,1,Active Shallow Crust,0.0,89.99042,0.0,12/24/8607 +3.56498,50.67333,5906,5,15,17,0,4,3.55,15.0,fr,31549,118,1330087,1,1,Active Shallow Crust,0.0,89.9903,-90.0,05/15/5906 +3.56498,50.67333,9081,11,15,19,0,8,3.65,15.0,fr,31550,181,1330093,1,1,Active Shallow Crust,0.0,89.98861,0.0,11/15/9081 +3.56498,50.67333,4741,12,5,6,2,47,3.95,5.0,fr,31551,94,1330128,1,2,Active Shallow Crust,0.0,89.98992,0.0,12/05/4741 +3.56498,50.67333,8174,12,19,16,7,21,3.95,5.0,fr,31552,163,1330128,1,2,Active Shallow Crust,0.0,89.98992,0.0,12/19/8174 +3.56498,50.67333,6362,9,24,12,58,14,4.75,5.0,fr,31553,127,1330224,1,1,Active Shallow Crust,0.0,89.99036,0.0,09/24/6362 +3.56498,50.67333,4201,10,11,1,49,49,5.15,5.0,fr,31554,84,1330272,1,1,Active Shallow Crust,0.0,89.98987,0.0,10/11/4201 +3.56498,50.67333,8137,11,27,11,56,40,5.95,5.0,fr,31555,162,1330368,1,1,Active Shallow Crust,0.0,89.98991,0.0,11/27/8137 +-1.91485,47.761,8985,5,19,20,42,20,3.55,5.0,fr,31556,179,1330560,1,1,Active Shallow Crust,0.0,89.98983,0.0,05/19/8985 +-1.91485,47.761,9027,9,24,9,30,40,3.55,5.0,fr,31557,180,1330569,1,3,Active Shallow Crust,128.8965,89.99323,0.0,09/24/9027 +-1.91485,47.761,5607,4,21,1,42,29,3.55,5.0,fr,31558,112,1330569,1,3,Active Shallow Crust,128.8965,89.99323,0.0,04/21/5607 +-1.91485,47.761,5175,10,24,5,31,30,3.55,5.0,fr,31559,103,1330569,1,3,Active Shallow Crust,128.8965,89.99323,0.0,10/24/5175 +-1.91485,47.761,7250,5,3,0,51,47,3.75,5.0,fr,31560,144,1330584,1,1,Active Shallow Crust,0.0,89.99058,0.0,05/03/7250 +-1.91485,47.761,9577,9,26,5,45,30,3.75,15.0,fr,31561,191,1330585,1,1,Active Shallow Crust,0.0,89.99058,0.0,09/26/9577 +-1.91485,47.761,8044,4,22,20,58,12,3.95,27.5,fr,31562,160,1330610,1,1,Active Shallow Crust,0.0,89.99038,0.0,04/22/8044 +-1.91485,47.761,8409,5,28,23,26,5,4.05,15.0,fr,31563,168,1330624,1,1,Active Shallow Crust,240.0062,58.00581,0.0,05/28/8409 +-1.91485,47.761,4829,5,22,23,15,16,4.55,5.0,fr,31564,96,1330680,1,1,Active Shallow Crust,0.0,89.98981,0.0,05/22/4829 +2.47771,48.9581,469,4,4,8,50,24,3.65,5.0,fr,31565,9,1331532,1,2,Active Shallow Crust,0.0,89.99115,0.0,04/04/0469 +2.47771,48.9581,4937,4,21,20,52,12,3.65,5.0,fr,31566,98,1331532,1,2,Active Shallow Crust,0.0,89.99115,0.0,04/21/4937 +2.47771,48.9581,8547,11,16,9,50,55,3.65,15.0,fr,31567,170,1331533,1,1,Active Shallow Crust,0.0,89.99115,0.0,11/16/8547 +2.47771,48.9581,1194,5,12,9,47,12,3.75,15.0,fr,31568,23,1331545,1,1,Active Shallow Crust,0.0,89.98948,0.0,05/12/1194 +2.47771,48.9581,9644,12,28,22,15,48,3.75,5.0,fr,31569,192,1331547,1,1,Active Shallow Crust,240.0088,58.01741,0.0,12/28/9644 +-2.18312,50.01871,2129,6,7,15,39,29,4.65,15.0,fr,31570,42,1332133,1,1,Active Shallow Crust,0.0,89.98995,0.0,06/07/2129 +7.70766,48.83776,3277,7,1,15,32,6,3.55,5.0,fr,31571,65,1332483,1,1,Active Shallow Crust,240.0132,57.99756,0.0,07/01/3277 +7.70766,48.83776,8464,6,24,18,44,4,3.65,5.0,fr,31572,169,1332492,1,1,Active Shallow Crust,0.0,89.98817,0.0,06/24/8464 +7.70766,48.83776,2570,1,11,21,15,42,3.65,15.0,fr,31573,51,1332493,1,1,Active Shallow Crust,0.0,89.98817,0.0,01/11/2570 +7.70766,48.83776,6759,2,15,11,35,18,3.65,5.0,fr,31574,135,1332495,1,1,Active Shallow Crust,240.0014,58.01255,0.0,02/15/6759 +7.70766,48.83776,9579,7,19,23,6,12,3.65,15.0,fr,31575,191,1332499,1,1,Active Shallow Crust,0.0,89.98803,-90.0,07/19/9579 +7.70766,48.83776,9052,3,23,19,28,49,3.75,5.0,fr,31576,181,1332504,1,2,Active Shallow Crust,0.0,89.98946,0.0,03/23/9052 +7.70766,48.83776,2985,12,15,9,53,47,3.75,5.0,fr,31577,59,1332504,1,2,Active Shallow Crust,0.0,89.98946,0.0,12/15/2985 +7.70766,48.83776,2930,10,9,0,39,27,3.75,15.0,fr,31578,58,1332505,1,1,Active Shallow Crust,0.0,89.98946,0.0,10/09/2930 +7.70766,48.83776,8424,11,13,14,42,42,3.85,5.0,fr,31579,168,1332522,1,1,Active Shallow Crust,0.0,89.99049,-90.0,11/13/8424 +7.70766,48.83776,1473,2,18,18,27,13,3.95,5.0,fr,31580,29,1332528,1,1,Active Shallow Crust,0.0,89.99162,0.0,02/18/1473 +7.70766,48.83776,297,6,29,10,38,56,4.05,15.0,fr,31581,5,1332541,1,1,Active Shallow Crust,0.0,89.9888,0.0,06/29/0297 +7.70766,48.83776,1322,11,26,22,15,45,4.05,5.0,fr,31582,26,1332546,1,1,Active Shallow Crust,0.0,89.98867,-90.0,11/26/1322 +5.8091,43.67223,6881,4,26,9,59,6,3.55,5.0,fr,31583,137,1332960,1,2,Active Shallow Crust,0.0,89.99271,0.0,04/26/6881 +5.8091,43.67223,1533,12,23,21,1,30,3.55,5.0,fr,31584,30,1332960,1,2,Active Shallow Crust,0.0,89.99271,0.0,12/23/1533 +5.8091,43.67223,6403,11,17,0,28,10,3.55,15.0,fr,31585,128,1332961,1,1,Active Shallow Crust,0.0,89.99271,0.0,11/17/6403 +5.8091,43.67223,5145,5,5,13,59,17,3.55,27.5,fr,31586,102,1332962,1,1,Active Shallow Crust,0.0,89.99271,0.0,05/05/5145 +5.8091,43.67223,2339,6,27,21,57,30,3.55,5.0,fr,31587,46,1332966,1,1,Active Shallow Crust,0.0,89.99262,-90.0,06/27/2339 +5.8091,43.67223,8589,3,16,12,35,20,3.55,15.0,fr,31588,171,1332967,1,1,Active Shallow Crust,0.0,89.99262,-90.0,03/16/8589 +5.8091,43.67223,1237,1,7,21,4,0,3.55,27.5,fr,31589,24,1332968,1,2,Active Shallow Crust,0.0,89.99262,-90.0,01/07/1237 +5.8091,43.67223,649,3,30,1,12,24,3.55,27.5,fr,31590,12,1332968,1,2,Active Shallow Crust,0.0,89.99262,-90.0,03/30/0649 +5.8091,43.67223,1302,3,21,21,5,8,3.65,5.0,fr,31591,26,1332972,1,2,Active Shallow Crust,0.0,89.987,0.0,03/21/1302 +5.8091,43.67223,5019,6,5,7,48,53,3.65,5.0,fr,31592,100,1332972,1,2,Active Shallow Crust,0.0,89.987,0.0,06/05/5019 +5.8091,43.67223,6609,4,22,10,58,42,3.75,5.0,fr,31593,132,1332984,1,4,Active Shallow Crust,0.0,89.98841,0.0,04/22/6609 +5.8091,43.67223,5489,7,26,18,50,17,3.75,5.0,fr,31594,109,1332984,1,4,Active Shallow Crust,0.0,89.98841,0.0,07/26/5489 +5.8091,43.67223,4415,11,26,18,58,13,3.75,5.0,fr,31595,88,1332984,1,4,Active Shallow Crust,0.0,89.98841,0.0,11/26/4415 +5.8091,43.67223,7137,2,11,10,7,36,3.75,5.0,fr,31596,142,1332984,1,4,Active Shallow Crust,0.0,89.98841,0.0,02/11/7137 +5.8091,43.67223,1851,12,16,4,8,45,3.75,15.0,fr,31597,37,1332985,1,2,Active Shallow Crust,0.0,89.98841,0.0,12/16/1851 +5.8091,43.67223,6683,4,30,22,16,21,3.75,15.0,fr,31598,133,1332985,1,2,Active Shallow Crust,0.0,89.98841,0.0,04/30/6683 +5.8091,43.67223,1668,8,30,16,1,14,3.85,5.0,fr,31599,33,1332996,1,2,Active Shallow Crust,0.0,89.98967,0.0,08/30/1668 +5.8091,43.67223,7273,11,27,2,34,24,3.85,5.0,fr,31600,145,1332996,1,2,Active Shallow Crust,0.0,89.98967,0.0,11/27/7273 +5.8091,43.67223,1046,6,22,21,9,48,3.95,5.0,fr,31601,20,1333008,1,4,Active Shallow Crust,0.0,89.9908,0.0,06/22/1046 +5.8091,43.67223,2593,10,26,17,33,23,3.95,5.0,fr,31602,51,1333008,1,4,Active Shallow Crust,0.0,89.9908,0.0,10/26/2593 +5.8091,43.67223,2290,3,13,17,3,46,3.95,5.0,fr,31603,45,1333008,1,4,Active Shallow Crust,0.0,89.9908,0.0,03/13/2290 +5.8091,43.67223,6592,10,2,20,34,28,3.95,5.0,fr,31604,131,1333008,1,4,Active Shallow Crust,0.0,89.9908,0.0,10/02/6592 +5.8091,43.67223,3095,12,12,10,48,17,3.95,15.0,fr,31605,61,1333009,1,1,Active Shallow Crust,0.0,89.9908,0.0,12/12/3095 +5.8091,43.67223,4977,2,12,12,38,34,3.95,15.0,fr,31606,99,1333018,1,1,Active Shallow Crust,128.8999,89.9931,0.0,02/12/4977 +5.8091,43.67223,8766,3,10,20,23,12,4.05,5.0,fr,31607,175,1333020,1,2,Active Shallow Crust,0.0,89.9918,0.0,03/10/8766 +5.8091,43.67223,5026,1,27,12,49,29,4.05,5.0,fr,31608,100,1333020,1,2,Active Shallow Crust,0.0,89.9918,0.0,01/27/5026 +5.8091,43.67223,555,1,26,2,18,48,4.05,5.0,fr,31609,11,1333023,1,1,Active Shallow Crust,240.0054,58.00606,0.0,01/26/0555 +5.8091,43.67223,7,2,13,15,6,6,4.35,5.0,fr,31610,0,1333056,1,1,Active Shallow Crust,0.0,89.99129,0.0,02/13/0007 +5.8091,43.67223,1533,3,12,13,29,51,4.45,15.0,fr,31611,30,1333069,1,1,Active Shallow Crust,0.0,89.98965,0.0,03/12/1533 +5.8091,43.67223,3133,9,25,3,22,46,4.55,27.5,fr,31612,62,1333082,1,1,Active Shallow Crust,0.0,89.99078,0.0,09/25/3133 +5.8091,43.67223,6509,8,19,4,5,22,5.95,5.0,fr,31613,130,1333248,1,1,Active Shallow Crust,0.0,89.98987,0.0,08/19/6509 +-0.18866,46.4146,2412,12,17,5,4,8,3.55,5.0,fr,31614,48,1333440,1,1,Active Shallow Crust,0.0,89.99001,0.0,12/17/2412 +-0.18866,46.4146,4021,11,27,14,26,2,3.55,5.0,fr,31615,80,1333443,1,1,Active Shallow Crust,240.0122,57.99814,0.0,11/27/4021 +-0.18866,46.4146,399,11,16,20,49,34,3.65,15.0,fr,31616,7,1333453,1,3,Active Shallow Crust,0.0,89.98993,0.0,11/16/0399 +-0.18866,46.4146,7355,9,17,8,21,15,3.65,15.0,fr,31617,147,1333453,1,3,Active Shallow Crust,0.0,89.98993,0.0,09/17/7355 +-0.18866,46.4146,4979,7,25,12,12,9,3.65,15.0,fr,31618,99,1333453,1,3,Active Shallow Crust,0.0,89.98993,0.0,07/25/4979 +-0.18866,46.4146,7822,7,6,12,10,21,3.65,15.0,fr,31619,156,1333462,1,1,Active Shallow Crust,128.9004,89.96351,0.0,07/06/7822 +-0.18866,46.4146,9833,5,23,5,20,7,3.75,5.0,fr,31620,196,1333464,1,1,Active Shallow Crust,0.0,89.98999,0.0,05/23/9833 +-0.18866,46.4146,5595,7,18,17,31,44,3.75,15.0,fr,31621,111,1333465,1,1,Active Shallow Crust,0.0,89.98999,0.0,07/18/5595 +-0.18866,46.4146,4314,4,11,15,57,12,3.85,15.0,fr,31622,86,1333477,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/11/4314 +-0.18866,46.4146,3334,5,30,15,46,23,4.05,5.0,fr,31623,66,1333503,1,1,Active Shallow Crust,240.0059,58.00584,0.0,05/30/3334 +-0.18866,46.4146,3512,12,12,20,5,44,4.45,15.0,fr,31624,70,1333558,1,1,Active Shallow Crust,128.8922,89.99372,0.0,12/12/3512 +-0.18866,46.4146,2221,1,17,15,11,58,4.55,5.0,fr,31625,44,1333563,1,2,Active Shallow Crust,240.0093,57.99736,0.0,01/17/2221 +-0.18866,46.4146,2465,11,2,10,37,14,4.55,5.0,fr,31626,49,1333563,1,2,Active Shallow Crust,240.0093,57.99736,0.0,11/02/2465 +-0.18866,46.4146,4918,4,13,8,6,26,4.75,27.5,fr,31627,98,1333592,1,1,Active Shallow Crust,0.0,89.99001,-90.0,04/13/4918 +-0.18866,46.4146,3549,3,19,0,10,52,4.75,15.0,fr,31628,70,1333594,1,1,Active Shallow Crust,128.8887,89.98807,0.0,03/19/3549 +5.24385,51.02273,2719,2,19,12,27,53,3.55,5.0,fr,31629,54,1333920,1,1,Active Shallow Crust,0.0,89.98731,0.0,02/19/2719 +5.24385,51.02273,5652,2,24,0,28,51,3.65,5.0,fr,31630,113,1333932,1,1,Active Shallow Crust,0.0,89.98869,0.0,02/24/5652 +5.24385,51.02273,7351,8,4,19,39,16,3.75,5.0,fr,31631,147,1333944,1,1,Active Shallow Crust,0.0,89.98992,0.0,08/04/7351 +5.24385,51.02273,1754,1,1,15,26,51,3.85,5.0,fr,31632,35,1333965,1,1,Active Shallow Crust,128.8951,89.99551,0.0,01/01/1754 +5.24385,51.02273,9199,8,2,6,31,1,4.45,5.0,fr,31633,183,1334028,1,1,Active Shallow Crust,0.0,89.991,0.0,08/02/9199 +5.24385,51.02273,6709,9,25,13,8,36,4.65,5.0,fr,31634,134,1334052,1,1,Active Shallow Crust,0.0,89.98927,0.0,09/25/6709 +5.24385,51.02273,7259,6,18,8,39,27,4.85,5.0,fr,31635,145,1334085,1,1,Active Shallow Crust,128.8839,89.99361,0.0,06/18/7259 +5.24385,51.02273,3196,1,12,17,19,24,5.55,5.0,fr,31636,63,1334160,1,1,Active Shallow Crust,0.0,89.98985,0.0,01/12/3196 +2.18718,42.21678,2028,10,9,12,22,37,3.55,5.0,fr,31637,40,1334400,1,3,Active Shallow Crust,0.0,89.9888,0.0,10/09/2028 +2.18718,42.21678,5344,12,5,12,43,29,3.55,5.0,fr,31638,106,1334400,1,3,Active Shallow Crust,0.0,89.9888,0.0,12/05/5344 +2.18718,42.21678,6365,7,16,3,36,9,3.55,5.0,fr,31639,127,1334400,1,3,Active Shallow Crust,0.0,89.9888,0.0,07/16/6365 +2.18718,42.21678,45,5,4,16,31,5,3.55,15.0,fr,31640,0,1334401,1,1,Active Shallow Crust,0.0,89.9888,0.0,05/04/0045 +2.18718,42.21678,4627,9,20,22,49,52,3.55,5.0,fr,31641,92,1334403,1,1,Active Shallow Crust,240.0124,57.99815,0.0,09/20/4627 +2.18718,42.21678,5119,7,3,4,56,41,3.65,5.0,fr,31642,102,1334412,1,3,Active Shallow Crust,0.0,89.99001,0.0,07/03/5119 +2.18718,42.21678,6018,5,18,16,57,31,3.65,5.0,fr,31643,120,1334412,1,3,Active Shallow Crust,0.0,89.99001,0.0,05/18/6018 +2.18718,42.21678,6976,2,8,16,50,41,3.65,5.0,fr,31644,139,1334412,1,3,Active Shallow Crust,0.0,89.99001,0.0,02/08/6976 +2.18718,42.21678,8762,4,22,9,54,51,3.65,15.0,fr,31645,175,1334413,1,2,Active Shallow Crust,0.0,89.99001,0.0,04/22/8762 +2.18718,42.21678,146,2,25,15,1,9,3.65,15.0,fr,31646,2,1334413,1,2,Active Shallow Crust,0.0,89.99001,0.0,02/25/0146 +2.18718,42.21678,560,9,2,13,43,8,3.65,5.0,fr,31647,11,1334415,1,1,Active Shallow Crust,240.0005,58.01294,0.0,09/02/0560 +2.18718,42.21678,7185,2,12,1,8,30,3.65,15.0,fr,31648,143,1334419,1,1,Active Shallow Crust,0.0,89.9899,-90.0,02/12/7185 +2.18718,42.21678,1627,2,1,22,50,16,3.65,5.0,fr,31649,32,1334421,1,1,Active Shallow Crust,128.9007,89.96371,0.0,02/01/1627 +2.18718,42.21678,2849,2,24,14,58,56,3.75,5.0,fr,31650,56,1334424,1,4,Active Shallow Crust,0.0,89.9911,0.0,02/24/2849 +2.18718,42.21678,3726,1,24,6,11,42,3.75,5.0,fr,31651,74,1334424,1,4,Active Shallow Crust,0.0,89.9911,0.0,01/24/3726 +2.18718,42.21678,518,9,21,2,33,9,3.75,5.0,fr,31652,10,1334424,1,4,Active Shallow Crust,0.0,89.9911,0.0,09/21/0518 +2.18718,42.21678,5462,8,18,17,18,41,3.75,5.0,fr,31653,109,1334424,1,4,Active Shallow Crust,0.0,89.9911,0.0,08/18/5462 +2.18718,42.21678,8979,2,10,14,26,37,3.75,15.0,fr,31654,179,1334425,1,1,Active Shallow Crust,0.0,89.9911,0.0,02/10/8979 +2.18718,42.21678,8711,2,21,10,2,42,3.75,5.0,fr,31655,174,1334430,1,1,Active Shallow Crust,0.0,89.991,-90.0,02/21/8711 +2.18718,42.21678,6118,5,8,23,39,5,3.85,5.0,fr,31656,122,1334436,1,2,Active Shallow Crust,0.0,89.98943,0.0,05/08/6118 +2.18718,42.21678,7887,12,30,6,37,26,3.85,5.0,fr,31657,157,1334436,1,2,Active Shallow Crust,0.0,89.98943,0.0,12/30/7887 +2.18718,42.21678,530,12,30,8,56,37,3.85,15.0,fr,31658,10,1334437,1,2,Active Shallow Crust,0.0,89.98943,0.0,12/30/0530 +2.18718,42.21678,873,4,4,8,47,42,3.85,15.0,fr,31659,17,1334437,1,2,Active Shallow Crust,0.0,89.98943,0.0,04/04/0873 +2.18718,42.21678,5,2,18,0,55,56,3.95,5.0,fr,31660,0,1334448,1,2,Active Shallow Crust,0.0,89.99058,0.0,02/18/0005 +2.18718,42.21678,9597,8,3,1,51,5,3.95,5.0,fr,31661,191,1334448,1,2,Active Shallow Crust,0.0,89.99058,0.0,08/03/9597 +2.18718,42.21678,9560,8,3,22,18,21,3.95,27.5,fr,31662,191,1334453,1,1,Active Shallow Crust,240.0192,58.00515,0.0,08/03/9560 +2.18718,42.21678,3187,4,25,23,55,28,4.05,5.0,fr,31663,63,1334469,1,1,Active Shallow Crust,128.891,89.9937,0.0,04/25/3187 +2.18718,42.21678,5330,4,29,12,0,14,4.15,5.0,fr,31664,106,1334472,1,2,Active Shallow Crust,0.0,89.99064,0.0,04/29/5330 +2.18718,42.21678,7931,9,12,21,54,46,4.15,5.0,fr,31665,158,1334472,1,2,Active Shallow Crust,0.0,89.99064,0.0,09/12/7931 +2.18718,42.21678,9138,4,19,20,30,50,4.15,15.0,fr,31666,182,1334473,1,1,Active Shallow Crust,0.0,89.99064,0.0,04/19/9138 +2.18718,42.21678,4282,10,17,21,13,1,4.25,5.0,fr,31667,85,1334487,1,1,Active Shallow Crust,240.0066,57.99401,0.0,10/17/4282 +2.18718,42.21678,9944,11,23,1,32,17,4.45,5.0,fr,31668,198,1334508,1,1,Active Shallow Crust,0.0,89.9894,0.0,11/23/9944 +2.18718,42.21678,3580,9,17,11,28,9,4.55,5.0,fr,31669,71,1334520,1,1,Active Shallow Crust,0.0,89.99055,0.0,09/17/3580 +2.18718,42.21678,9078,3,22,8,10,0,4.55,5.0,fr,31670,181,1334526,1,1,Active Shallow Crust,0.0,89.99044,-90.0,03/22/9078 +2.18718,42.21678,2162,2,26,19,36,12,4.65,15.0,fr,31671,43,1334539,1,1,Active Shallow Crust,0.0,89.99042,-90.0,02/26/2162 +2.18718,42.21678,4750,11,4,8,45,51,4.75,5.0,fr,31672,94,1334550,1,1,Active Shallow Crust,0.0,89.98956,-90.0,11/04/4750 +0.92974,49.15109,1082,8,7,14,20,12,3.55,5.0,fr,31673,21,1334880,1,2,Active Shallow Crust,0.0,89.9901,0.0,08/07/1082 +0.92974,49.15109,4835,12,23,10,5,58,3.55,5.0,fr,31674,96,1334880,1,2,Active Shallow Crust,0.0,89.9901,0.0,12/23/4835 +0.92974,49.15109,8510,3,31,7,40,32,3.65,5.0,fr,31675,170,1334892,1,1,Active Shallow Crust,0.0,89.98972,0.0,03/31/8510 +0.92974,49.15109,1346,2,7,3,18,22,3.75,5.0,fr,31676,26,1334904,1,1,Active Shallow Crust,0.0,89.99017,0.0,02/07/1346 +0.92974,49.15109,1906,11,30,20,13,32,3.85,5.0,fr,31677,38,1334916,1,1,Active Shallow Crust,0.0,89.99007,0.0,11/30/1906 +0.92974,49.15109,9143,8,22,14,48,34,3.85,27.5,fr,31678,182,1334921,1,1,Active Shallow Crust,240.0112,57.99795,0.0,08/22/9143 +0.92974,49.15109,1485,8,7,22,38,36,3.85,5.0,fr,31679,29,1334922,1,1,Active Shallow Crust,0.0,89.98996,-90.0,08/07/1485 +0.92974,49.15109,4206,5,8,4,17,45,4.15,5.0,fr,31680,84,1334958,1,1,Active Shallow Crust,0.0,89.98997,-90.0,05/08/4206 +0.92974,49.15109,2322,9,19,1,58,17,4.35,5.0,fr,31681,46,1334976,1,1,Active Shallow Crust,0.0,89.99015,0.0,09/19/2322 +0.92974,49.15109,8383,11,21,23,57,54,4.45,27.5,fr,31682,167,1334993,1,1,Active Shallow Crust,240.006,57.99482,0.0,11/21/8383 +7.09241,42.89091,1343,6,30,7,45,39,3.65,5.0,fr,31683,26,1335372,1,1,Active Shallow Crust,0.0,89.98683,0.0,06/30/1343 +7.09241,42.89091,7210,5,26,7,1,37,3.85,5.0,fr,31684,144,1335396,1,1,Active Shallow Crust,0.0,89.98954,0.0,05/26/7210 +4.68532,43.39008,3927,12,27,9,37,49,3.55,5.0,fr,31685,78,1335840,1,1,Active Shallow Crust,0.0,89.99268,0.0,12/27/3927 +4.68532,43.39008,3925,3,9,23,19,23,3.55,5.0,fr,31686,78,1335843,1,1,Active Shallow Crust,240.0117,57.99869,0.0,03/09/3925 +4.68532,43.39008,498,7,24,5,1,15,3.55,5.0,fr,31687,9,1335849,1,1,Active Shallow Crust,128.8953,89.99634,0.0,07/24/0498 +4.68532,43.39008,5493,9,22,10,49,4,3.65,5.0,fr,31688,109,1335852,1,1,Active Shallow Crust,0.0,89.98694,0.0,09/22/5493 +4.68532,43.39008,3169,4,29,1,2,11,3.95,5.0,fr,31689,63,1335888,1,1,Active Shallow Crust,0.0,89.99075,0.0,04/29/3169 +4.68532,43.39008,9475,11,9,19,38,23,3.95,15.0,fr,31690,189,1335889,1,1,Active Shallow Crust,0.0,89.99075,0.0,11/09/9475 +4.68532,43.39008,2207,7,14,11,17,43,3.95,5.0,fr,31691,44,1335891,1,1,Active Shallow Crust,240.0191,58.00453,0.0,07/14/2207 +4.68532,43.39008,5783,12,26,14,20,46,4.05,15.0,fr,31692,115,1335901,1,1,Active Shallow Crust,0.0,89.99176,0.0,12/26/5783 +4.68532,43.39008,9445,3,29,17,29,4,4.15,27.5,fr,31693,188,1335914,1,1,Active Shallow Crust,0.0,89.98898,0.0,03/29/9445 +8.24444,46.58932,1069,11,21,1,22,5,3.55,5.0,fr,31694,21,1336320,1,4,Active Shallow Crust,0.0,89.98614,0.0,11/21/1069 +8.24444,46.58932,3753,2,18,15,56,29,3.55,5.0,fr,31695,75,1336320,1,4,Active Shallow Crust,0.0,89.98614,0.0,02/18/3753 +8.24444,46.58932,5488,11,9,8,8,46,3.55,5.0,fr,31696,109,1336320,1,4,Active Shallow Crust,0.0,89.98614,0.0,11/09/5488 +8.24444,46.58932,5742,1,30,15,2,20,3.55,5.0,fr,31697,114,1336320,1,4,Active Shallow Crust,0.0,89.98614,0.0,01/30/5742 +8.24444,46.58932,8267,6,5,4,25,47,3.55,15.0,fr,31698,165,1336321,1,2,Active Shallow Crust,0.0,89.98614,0.0,06/05/8267 +8.24444,46.58932,7626,5,8,18,19,6,3.55,15.0,fr,31699,152,1336321,1,2,Active Shallow Crust,0.0,89.98614,0.0,05/08/7626 +8.24444,46.58932,452,2,24,11,43,14,3.55,15.0,fr,31700,9,1336327,1,1,Active Shallow Crust,0.0,89.98598,-90.0,02/24/0452 +8.24444,46.58932,8561,3,4,22,22,20,3.55,5.0,fr,31701,171,1336329,1,1,Active Shallow Crust,128.8952,89.99307,0.0,03/04/8561 +8.24444,46.58932,4889,9,20,3,49,20,3.55,15.0,fr,31702,97,1336330,1,1,Active Shallow Crust,128.8952,89.99307,0.0,09/20/4889 +8.24444,46.58932,6450,3,14,11,48,9,3.65,27.5,fr,31703,128,1336334,1,1,Active Shallow Crust,0.0,89.98765,0.0,03/14/6450 +8.24444,46.58932,6363,7,17,18,32,51,3.75,5.0,fr,31704,127,1336344,1,4,Active Shallow Crust,0.0,89.98899,0.0,07/17/6363 +8.24444,46.58932,2247,1,21,7,36,26,3.75,5.0,fr,31705,44,1336344,1,4,Active Shallow Crust,0.0,89.98899,0.0,01/21/2247 +8.24444,46.58932,2387,7,31,5,22,43,3.75,5.0,fr,31706,47,1336344,1,4,Active Shallow Crust,0.0,89.98899,0.0,07/31/2387 +8.24444,46.58932,9971,9,16,14,54,56,3.75,5.0,fr,31707,199,1336344,1,4,Active Shallow Crust,0.0,89.98899,0.0,09/16/9971 +8.24444,46.58932,5705,12,9,3,37,45,3.85,27.5,fr,31708,114,1336358,1,1,Active Shallow Crust,0.0,89.99019,0.0,12/09/5705 +8.24444,46.58932,3223,11,28,8,36,40,3.85,5.0,fr,31709,64,1336362,1,2,Active Shallow Crust,0.0,89.99007,-90.0,11/28/3223 +8.24444,46.58932,7685,8,5,16,59,0,3.85,5.0,fr,31710,153,1336362,1,2,Active Shallow Crust,0.0,89.99007,-90.0,08/05/7685 +8.24444,46.58932,4439,7,5,4,4,56,3.95,15.0,fr,31711,88,1336369,1,1,Active Shallow Crust,0.0,89.99126,0.0,07/05/4439 +8.24444,46.58932,6969,10,30,18,13,30,4.05,15.0,fr,31712,139,1336381,1,1,Active Shallow Crust,0.0,89.9922,0.0,10/30/6969 +8.24444,46.58932,6457,8,6,15,49,38,4.05,5.0,fr,31713,129,1336386,1,1,Active Shallow Crust,0.0,89.99212,-90.0,08/06/6457 +8.24444,46.58932,4026,4,6,10,37,33,4.25,5.0,fr,31714,80,1336404,1,1,Active Shallow Crust,0.0,89.98762,0.0,04/06/4026 +8.24444,46.58932,6937,2,8,1,22,9,4.25,15.0,fr,31715,138,1336405,1,2,Active Shallow Crust,0.0,89.98762,0.0,02/08/6937 +8.24444,46.58932,8012,11,16,4,38,49,4.25,15.0,fr,31716,160,1336405,1,2,Active Shallow Crust,0.0,89.98762,0.0,11/16/8012 +8.24444,46.58932,5247,9,14,2,47,22,4.35,5.0,fr,31717,104,1336416,1,1,Active Shallow Crust,0.0,89.98896,0.0,09/14/5247 +8.24444,46.58932,1460,3,1,22,45,30,5.55,5.0,fr,31718,29,1336560,1,1,Active Shallow Crust,0.0,89.9903,0.0,03/01/1460 +4.55676,44.16868,9978,11,16,16,55,19,3.55,5.0,fr,31719,199,1336800,1,1,Active Shallow Crust,0.0,89.99277,0.0,11/16/9978 +4.55676,44.16868,3423,4,15,4,58,5,3.55,15.0,fr,31720,68,1336804,1,1,Active Shallow Crust,240.0108,57.99916,0.0,04/15/3423 +4.55676,44.16868,3379,7,5,14,11,42,3.55,15.0,fr,31721,67,1336807,1,1,Active Shallow Crust,0.0,89.99268,-90.0,07/05/3379 +4.55676,44.16868,9569,2,9,22,55,39,3.55,5.0,fr,31722,191,1336809,1,1,Active Shallow Crust,128.8965,89.99277,0.0,02/09/9569 +4.55676,44.16868,1629,8,31,21,16,24,3.65,5.0,fr,31723,32,1336812,1,1,Active Shallow Crust,0.0,89.98711,0.0,08/31/1629 +4.55676,44.16868,991,12,3,10,12,45,3.75,5.0,fr,31724,19,1336824,1,1,Active Shallow Crust,0.0,89.98851,0.0,12/03/0991 +4.55676,44.16868,6615,10,31,17,15,53,3.75,15.0,fr,31725,132,1336825,1,1,Active Shallow Crust,0.0,89.98851,0.0,10/31/6615 +4.55676,44.16868,813,8,27,4,26,44,3.85,5.0,fr,31726,16,1336842,1,1,Active Shallow Crust,0.0,89.98964,-90.0,08/27/0813 +4.55676,44.16868,4689,12,7,2,56,47,3.85,27.5,fr,31727,93,1336847,1,1,Active Shallow Crust,128.897,89.99232,0.0,12/07/4689 +4.55676,44.16868,4051,5,7,1,23,52,3.95,5.0,fr,31728,81,1336848,1,1,Active Shallow Crust,0.0,89.99088,0.0,05/07/4051 +4.55676,44.16868,5319,9,16,23,36,2,3.95,15.0,fr,31729,106,1336849,1,1,Active Shallow Crust,0.0,89.99088,0.0,09/16/5319 +4.55676,44.16868,606,8,28,1,49,13,3.95,5.0,fr,31730,12,1336851,1,1,Active Shallow Crust,240.02,58.00462,0.0,08/28/0606 +4.55676,44.16868,4550,1,28,19,59,17,3.95,27.5,fr,31731,90,1336856,1,1,Active Shallow Crust,0.0,89.99077,-90.0,01/28/4550 +4.55676,44.16868,4023,9,26,7,8,56,3.95,5.0,fr,31732,80,1336857,1,1,Active Shallow Crust,128.9004,89.99316,0.0,09/26/4023 +4.55676,44.16868,4381,5,3,12,16,28,3.95,15.0,fr,31733,87,1336858,1,1,Active Shallow Crust,128.9004,89.99316,0.0,05/03/4381 +4.55676,44.16868,7838,9,15,10,42,10,4.05,15.0,fr,31734,156,1336861,1,1,Active Shallow Crust,0.0,89.99187,0.0,09/15/7838 +4.55676,44.16868,6835,9,7,8,22,16,4.15,5.0,fr,31735,136,1336872,1,1,Active Shallow Crust,0.0,89.98912,0.0,09/07/6835 +4.55676,44.16868,3900,10,3,21,11,46,4.15,5.0,fr,31736,77,1336875,1,1,Active Shallow Crust,240.0082,57.9973,0.0,10/03/3900 +4.55676,44.16868,5232,10,16,10,3,13,4.25,5.0,fr,31737,104,1336884,1,1,Active Shallow Crust,0.0,89.9903,0.0,10/16/5232 +4.55676,44.16868,934,3,31,20,50,9,4.25,15.0,fr,31738,18,1336885,1,1,Active Shallow Crust,0.0,89.9903,0.0,03/31/0934 +4.55676,44.16868,6011,8,6,19,4,37,4.25,5.0,fr,31739,120,1336890,1,1,Active Shallow Crust,0.0,89.9902,-90.0,08/06/6011 +4.55676,44.16868,2484,7,8,14,30,18,5.25,15.0,fr,31740,49,1337005,1,1,Active Shallow Crust,0.0,89.98978,0.0,07/08/2484 +4.55676,44.16868,6527,7,16,16,6,22,5.85,27.5,fr,31741,130,1337078,1,1,Active Shallow Crust,0.0,89.98975,0.0,07/16/6527 +4.55676,44.16868,7609,12,24,11,54,8,6.65,15.0,fr,31742,152,1337176,1,1,Active Shallow Crust,240.1051,57.99993,0.0,12/24/7609 +-0.68829,50.3797,2012,10,6,12,10,15,3.55,5.0,fr,31743,40,1337280,1,1,Active Shallow Crust,0.0,89.99036,0.0,10/06/2012 +-0.68829,50.3797,6662,2,16,20,56,47,3.65,5.0,fr,31744,133,1337292,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/16/6662 +-0.68829,50.3797,7802,2,2,19,56,37,3.65,27.5,fr,31745,156,1337294,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/02/7802 +-0.68829,50.3797,871,2,1,21,49,29,3.65,5.0,fr,31746,17,1337295,1,1,Active Shallow Crust,240.0014,58.01299,0.0,02/01/0871 +-0.68829,50.3797,7946,11,19,5,11,56,3.75,27.5,fr,31747,158,1337306,1,1,Active Shallow Crust,0.0,89.98978,0.0,11/19/7946 +-0.68829,50.3797,1692,2,14,6,37,32,3.85,5.0,fr,31748,33,1337316,1,1,Active Shallow Crust,0.0,89.98975,0.0,02/14/1692 +-0.68829,50.3797,7601,4,19,3,0,24,3.85,5.0,fr,31749,152,1337319,1,1,Active Shallow Crust,240.0113,57.998,0.0,04/19/7601 +-0.68829,50.3797,9377,7,23,16,7,22,4.05,5.0,fr,31750,187,1337343,1,1,Active Shallow Crust,240.0066,58.00596,0.0,07/23/9377 +-0.68829,50.3797,9755,2,4,2,16,24,4.25,5.0,fr,31751,195,1337364,1,1,Active Shallow Crust,0.0,89.98994,0.0,02/04/9755 +-3.42899,47.62484,3115,5,2,20,51,13,3.55,15.0,fr,31752,62,1337764,1,1,Active Shallow Crust,240.0118,57.99802,0.0,05/02/3115 +-3.42899,47.62484,8658,7,2,18,20,28,3.55,5.0,fr,31753,173,1337766,1,2,Active Shallow Crust,0.0,89.98969,-90.0,07/02/8658 +-3.42899,47.62484,8058,9,12,23,3,40,3.55,5.0,fr,31754,161,1337766,1,2,Active Shallow Crust,0.0,89.98969,-90.0,09/12/8058 +-3.42899,47.62484,5675,8,23,0,48,10,3.65,15.0,fr,31755,113,1337773,1,1,Active Shallow Crust,0.0,89.99091,0.0,08/23/5675 +-3.42899,47.62484,2585,9,24,19,27,25,3.75,5.0,fr,31756,51,1337784,1,1,Active Shallow Crust,0.0,89.9892,0.0,09/24/2585 +-3.42899,47.62484,6387,7,11,18,36,19,3.85,5.0,fr,31757,127,1337796,1,1,Active Shallow Crust,0.0,89.99038,0.0,07/11/6387 +-3.42899,47.62484,3093,3,21,17,30,12,3.85,15.0,fr,31758,61,1337797,1,1,Active Shallow Crust,0.0,89.99038,0.0,03/21/3093 +-3.42899,47.62484,6605,1,18,17,21,20,3.85,15.0,fr,31759,132,1337803,1,1,Active Shallow Crust,0.0,89.99026,-90.0,01/18/6605 +-3.42899,47.62484,8481,10,19,20,8,27,4.15,5.0,fr,31760,169,1337832,1,1,Active Shallow Crust,0.0,89.98978,0.0,10/19/8481 +-3.42899,47.62484,5572,7,17,6,52,50,4.25,15.0,fr,31761,111,1337845,1,1,Active Shallow Crust,0.0,89.98937,0.0,07/17/5572 +-3.42899,47.62484,7880,11,26,13,47,18,4.65,15.0,fr,31762,157,1337899,1,1,Active Shallow Crust,0.0,89.99031,-90.0,11/26/7880 +-3.42899,47.62484,7823,6,4,4,25,45,4.85,5.0,fr,31763,156,1337916,1,1,Active Shallow Crust,0.0,89.9901,0.0,06/04/7823 +-3.42899,47.62484,8430,2,23,17,44,28,4.95,15.0,fr,31764,168,1337929,1,1,Active Shallow Crust,0.0,89.98983,0.0,02/23/8430 +3.04829,41.41091,5425,1,26,11,32,22,3.55,5.0,fr,31765,108,1338720,1,1,Active Shallow Crust,0.0,89.98866,0.0,01/26/5425 +3.04829,41.41091,9753,12,12,3,35,14,3.55,5.0,fr,31766,195,1338726,1,1,Active Shallow Crust,0.0,89.98853,-90.0,12/12/9753 +3.04829,41.41091,9398,10,25,19,36,40,3.65,15.0,fr,31767,187,1338733,1,1,Active Shallow Crust,0.0,89.98989,0.0,10/25/9398 +3.04829,41.41091,699,4,3,21,23,30,3.65,5.0,fr,31768,13,1338738,1,1,Active Shallow Crust,0.0,89.98977,-90.0,04/03/0699 +3.04829,41.41091,8924,4,16,11,55,16,3.85,5.0,fr,31769,178,1338756,1,1,Active Shallow Crust,0.0,89.98929,0.0,04/16/8924 +3.04829,41.41091,8462,6,4,17,51,25,3.85,27.5,fr,31770,169,1338758,1,1,Active Shallow Crust,0.0,89.98929,0.0,06/04/8462 +3.04829,41.41091,4484,11,28,18,56,43,4.05,15.0,fr,31771,89,1338781,1,1,Active Shallow Crust,0.0,89.98936,0.0,11/28/4484 +3.04829,41.41091,4589,5,6,14,3,43,4.25,27.5,fr,31772,91,1338806,1,1,Active Shallow Crust,0.0,89.98987,0.0,05/06/4589 +3.04829,41.41091,5960,9,1,21,8,45,4.65,5.0,fr,31773,119,1338852,1,1,Active Shallow Crust,0.0,89.99041,0.0,09/01/5960 +3.04829,41.41091,2196,8,5,19,14,7,4.65,5.0,fr,31774,43,1338855,1,1,Active Shallow Crust,240.0093,57.99383,0.0,08/05/2196 +3.04829,41.41091,4580,9,10,21,32,19,4.65,15.0,fr,31775,91,1338856,1,1,Active Shallow Crust,240.0093,57.99383,0.0,09/10/4580 +3.04829,41.41091,7157,10,31,5,4,56,5.15,5.0,fr,31776,143,1338912,1,1,Active Shallow Crust,0.0,89.98981,0.0,10/31/7157 +3.04829,41.41091,5729,7,14,18,25,41,5.15,27.5,fr,31777,114,1338914,1,1,Active Shallow Crust,0.0,89.98981,0.0,07/14/5729 +2.52157,40.38382,1845,9,5,6,2,5,3.55,5.0,fr,31778,36,1339200,1,1,Active Shallow Crust,0.0,89.98848,0.0,09/05/1845 +2.52157,40.38382,1773,3,10,3,31,25,3.55,27.5,fr,31779,35,1339202,1,1,Active Shallow Crust,0.0,89.98848,0.0,03/10/1773 +4.69093,42.05121,1785,9,25,22,52,47,3.55,5.0,fr,31780,35,1339680,1,1,Active Shallow Crust,0.0,89.99252,0.0,09/25/1785 +4.69093,42.05121,9812,2,9,8,41,6,3.55,15.0,fr,31781,196,1339681,1,1,Active Shallow Crust,0.0,89.99252,0.0,02/09/9812 +4.69093,42.05121,6922,9,13,2,47,26,3.65,5.0,fr,31782,138,1339692,1,1,Active Shallow Crust,0.0,89.99332,0.0,09/13/6922 +4.69093,42.05121,9863,6,17,15,20,16,3.65,15.0,fr,31783,197,1339696,1,1,Active Shallow Crust,240.002,58.01236,0.0,06/17/9863 +4.69093,42.05121,1192,4,19,8,52,4,3.75,5.0,fr,31784,23,1339704,1,1,Active Shallow Crust,0.0,89.98811,0.0,04/19/1192 +4.69093,42.05121,1975,12,29,17,0,49,3.75,5.0,fr,31785,39,1339707,1,1,Active Shallow Crust,240.0083,58.01722,0.0,12/29/1975 +4.69093,42.05121,4888,12,20,4,25,28,5.35,5.0,fr,31786,97,1339896,1,1,Active Shallow Crust,0.0,89.98962,0.0,12/20/4888 +2.11234,42.07096,3161,11,28,11,26,26,3.55,5.0,fr,31787,63,1340160,1,2,Active Shallow Crust,0.0,89.98877,0.0,11/28/3161 +2.11234,42.07096,555,2,1,3,35,55,3.55,5.0,fr,31788,11,1340160,1,2,Active Shallow Crust,0.0,89.98877,0.0,02/01/0555 +2.11234,42.07096,3913,10,9,10,46,52,3.55,15.0,fr,31789,78,1340164,1,2,Active Shallow Crust,240.0125,57.99759,0.0,10/09/3913 +2.11234,42.07096,7577,3,18,22,32,15,3.55,15.0,fr,31790,151,1340164,1,2,Active Shallow Crust,240.0125,57.99759,0.0,03/18/7577 +2.11234,42.07096,3500,5,31,22,20,57,3.65,5.0,fr,31791,69,1340172,1,2,Active Shallow Crust,0.0,89.98999,0.0,05/31/3500 +2.11234,42.07096,9392,9,5,11,29,48,3.65,5.0,fr,31792,187,1340172,1,2,Active Shallow Crust,0.0,89.98999,0.0,09/05/9392 +2.11234,42.07096,3789,7,14,2,43,39,3.75,5.0,fr,31793,75,1340184,1,1,Active Shallow Crust,0.0,89.99108,0.0,07/14/3789 +2.11234,42.07096,3846,11,29,19,20,24,3.75,15.0,fr,31794,76,1340191,1,1,Active Shallow Crust,0.0,89.99097,-90.0,11/29/3846 +2.11234,42.07096,6236,12,19,22,56,57,3.95,27.5,fr,31795,124,1340216,1,1,Active Shallow Crust,0.0,89.99045,-90.0,12/19/6236 +2.11234,42.07096,8318,11,15,2,15,11,4.15,15.0,fr,31796,166,1340233,1,1,Active Shallow Crust,0.0,89.99062,0.0,11/15/8318 +2.11234,42.07096,5397,3,4,0,36,10,4.25,5.0,fr,31797,107,1340244,1,1,Active Shallow Crust,0.0,89.98997,0.0,03/04/5397 +2.11234,42.07096,7229,4,4,1,8,11,4.35,15.0,fr,31798,144,1340257,1,1,Active Shallow Crust,0.0,89.98957,0.0,04/04/7229 +5.59143,48.45404,1263,12,27,11,28,22,3.55,15.0,fr,31799,25,1340647,1,2,Active Shallow Crust,0.0,89.99323,-90.0,12/27/1263 +5.59143,48.45404,469,11,18,20,19,17,3.55,15.0,fr,31800,9,1340647,1,2,Active Shallow Crust,0.0,89.99323,-90.0,11/18/0469 +5.59143,48.45404,6752,2,27,10,7,29,3.65,27.5,fr,31801,135,1340663,1,1,Active Shallow Crust,128.901,89.96296,0.0,02/27/6752 +5.59143,48.45404,387,8,18,4,13,29,3.85,5.0,fr,31802,7,1340676,1,1,Active Shallow Crust,0.0,89.99053,0.0,08/18/0387 +5.59143,48.45404,2021,6,8,23,46,4,4.05,5.0,fr,31803,40,1340703,1,1,Active Shallow Crust,240.0064,58.00575,0.0,06/08/2021 +8.10136,48.50097,7252,3,2,18,37,27,3.55,5.0,fr,31804,145,1341120,1,4,Active Shallow Crust,0.0,89.98663,0.0,03/02/7252 +8.10136,48.50097,2688,5,16,4,40,4,3.55,5.0,fr,31805,53,1341120,1,4,Active Shallow Crust,0.0,89.98663,0.0,05/16/2688 +8.10136,48.50097,5466,5,31,9,41,4,3.55,5.0,fr,31806,109,1341120,1,4,Active Shallow Crust,0.0,89.98663,0.0,05/31/5466 +8.10136,48.50097,4718,12,14,18,6,18,3.55,5.0,fr,31807,94,1341120,1,4,Active Shallow Crust,0.0,89.98663,0.0,12/14/4718 +8.10136,48.50097,2534,1,26,14,59,49,3.55,15.0,fr,31808,50,1341127,1,1,Active Shallow Crust,0.0,89.98648,-90.0,01/26/2534 +8.10136,48.50097,2806,5,23,7,40,1,3.55,15.0,fr,31809,56,1341130,1,1,Active Shallow Crust,128.8953,90.0,0.0,05/23/2806 +8.10136,48.50097,984,6,1,17,16,54,3.65,5.0,fr,31810,19,1341132,1,2,Active Shallow Crust,0.0,89.98809,0.0,06/01/0984 +8.10136,48.50097,4311,10,17,23,9,45,3.65,5.0,fr,31811,86,1341132,1,2,Active Shallow Crust,0.0,89.98809,0.0,10/17/4311 +8.10136,48.50097,3987,10,10,7,36,33,3.65,15.0,fr,31812,79,1341133,1,1,Active Shallow Crust,0.0,89.98809,0.0,10/10/3987 +8.10136,48.50097,4917,11,16,12,50,52,3.65,5.0,fr,31813,98,1341135,1,1,Active Shallow Crust,240.0024,58.01357,0.0,11/16/4917 +8.10136,48.50097,4661,11,3,0,55,3,3.65,15.0,fr,31814,93,1341139,1,1,Active Shallow Crust,0.0,89.98795,-90.0,11/03/4661 +8.10136,48.50097,3028,11,19,8,24,45,3.75,5.0,fr,31815,60,1341144,1,1,Active Shallow Crust,0.0,89.98939,0.0,11/19/3028 +8.10136,48.50097,9767,2,11,0,22,41,3.75,15.0,fr,31816,195,1341145,1,1,Active Shallow Crust,0.0,89.98939,0.0,02/11/9767 +8.10136,48.50097,1653,3,25,8,43,22,3.75,27.5,fr,31817,33,1341146,1,1,Active Shallow Crust,0.0,89.98939,0.0,03/25/1653 +8.10136,48.50097,6660,10,30,17,52,33,3.85,5.0,fr,31818,133,1341156,1,2,Active Shallow Crust,0.0,89.99054,0.0,10/30/6660 +8.10136,48.50097,8379,5,15,15,39,17,3.85,5.0,fr,31819,167,1341156,1,2,Active Shallow Crust,0.0,89.99054,0.0,05/15/8379 +8.10136,48.50097,2374,3,18,23,45,11,3.95,15.0,fr,31820,47,1341169,1,2,Active Shallow Crust,0.0,89.99157,0.0,03/18/2374 +8.10136,48.50097,5538,5,20,8,35,42,3.95,15.0,fr,31821,110,1341169,1,2,Active Shallow Crust,0.0,89.99157,0.0,05/20/5538 +8.10136,48.50097,6717,5,19,21,40,10,4.05,5.0,fr,31822,134,1341180,1,1,Active Shallow Crust,0.0,89.99249,0.0,05/19/6717 +8.10136,48.50097,6615,8,7,5,49,39,4.25,27.5,fr,31823,132,1341206,1,1,Active Shallow Crust,0.0,89.98806,0.0,08/07/6615 +8.10136,48.50097,9672,10,31,2,17,33,4.35,5.0,fr,31824,193,1341216,1,1,Active Shallow Crust,0.0,89.98936,0.0,10/31/9672 +8.10136,48.50097,6510,9,6,23,41,25,4.35,15.0,fr,31825,130,1341217,1,1,Active Shallow Crust,0.0,89.98936,0.0,09/06/6510 +-3.64028,47.19423,660,8,9,17,29,45,3.55,5.0,fr,31826,13,1341609,1,1,Active Shallow Crust,128.8962,89.99315,0.0,08/09/0660 +0.67248,41.73261,676,12,13,4,38,6,3.55,5.0,fr,31827,13,1342080,1,1,Active Shallow Crust,0.0,89.98965,0.0,12/13/0676 +0.67248,41.73261,7124,3,8,6,5,44,3.55,5.0,fr,31828,142,1342083,1,1,Active Shallow Crust,240.0119,57.99809,0.0,03/08/7124 +0.67248,41.73261,8419,1,18,10,14,0,3.65,5.0,fr,31829,168,1342092,1,1,Active Shallow Crust,0.0,89.98994,0.0,01/18/8419 +0.67248,41.73261,7465,3,3,13,23,29,3.65,27.5,fr,31830,149,1342094,1,1,Active Shallow Crust,0.0,89.98994,0.0,03/03/7465 +0.67248,41.73261,7234,1,1,16,54,36,3.65,15.0,fr,31831,144,1342102,1,1,Active Shallow Crust,128.9008,89.96351,0.0,01/01/7234 +0.67248,41.73261,4198,11,24,23,28,59,3.85,15.0,fr,31832,83,1342117,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/24/4198 +0.67248,41.73261,3710,9,29,2,41,18,4.05,5.0,fr,31833,74,1342140,1,2,Active Shallow Crust,0.0,89.98995,0.0,09/29/3710 +0.67248,41.73261,9573,12,18,13,44,45,4.05,5.0,fr,31834,191,1342140,1,2,Active Shallow Crust,0.0,89.98995,0.0,12/18/9573 +0.67248,41.73261,2645,3,4,9,15,29,4.15,5.0,fr,31835,52,1342152,1,1,Active Shallow Crust,0.0,89.9901,0.0,03/04/2645 +0.67248,41.73261,8608,8,18,17,54,37,4.55,5.0,fr,31836,172,1342206,1,1,Active Shallow Crust,0.0,89.99007,-90.0,08/18/8608 +-0.66393,48.9261,5403,6,16,22,8,54,3.55,5.0,fr,31837,108,1343040,1,2,Active Shallow Crust,0.0,89.99006,0.0,06/16/5403 +-0.66393,48.9261,1584,3,18,4,5,12,3.55,5.0,fr,31838,31,1343040,1,2,Active Shallow Crust,0.0,89.99006,0.0,03/18/1584 +-0.66393,48.9261,8364,9,3,23,13,58,3.65,5.0,fr,31839,167,1343052,1,1,Active Shallow Crust,0.0,89.98967,0.0,09/03/8364 +-0.66393,48.9261,8956,8,14,0,16,22,3.65,15.0,fr,31840,179,1343053,1,1,Active Shallow Crust,0.0,89.98967,0.0,08/14/8956 +-0.66393,48.9261,2528,3,10,8,55,43,3.65,5.0,fr,31841,50,1343055,1,1,Active Shallow Crust,240.0013,58.01295,0.0,03/10/2528 +-0.66393,48.9261,9895,7,29,11,10,25,3.75,5.0,fr,31842,197,1343064,1,1,Active Shallow Crust,0.0,89.99014,0.0,07/29/9895 +-0.66393,48.9261,3785,5,5,5,27,21,3.75,5.0,fr,31843,75,1343067,1,1,Active Shallow Crust,240.0085,58.0176,0.0,05/05/3785 +-0.66393,48.9261,4620,2,8,7,6,58,3.75,5.0,fr,31844,92,1343073,1,1,Active Shallow Crust,128.8964,89.96736,0.0,02/08/4620 +-0.66393,48.9261,139,8,26,12,32,56,3.95,15.0,fr,31845,2,1343089,1,1,Active Shallow Crust,0.0,89.99007,0.0,08/26/0139 +-0.66393,48.9261,445,1,18,14,28,18,3.95,27.5,fr,31846,8,1343090,1,1,Active Shallow Crust,0.0,89.99007,0.0,01/18/0445 +-0.66393,48.9261,7578,4,30,5,28,42,3.95,5.0,fr,31847,151,1343094,1,1,Active Shallow Crust,0.0,89.98996,-90.0,04/30/7578 +-0.66393,48.9261,3184,11,29,6,1,3,4.05,15.0,fr,31848,63,1343101,1,1,Active Shallow Crust,0.0,89.99022,0.0,11/29/3184 +-0.66393,48.9261,4809,11,5,10,51,9,4.15,5.0,fr,31849,96,1343112,1,2,Active Shallow Crust,0.0,89.99004,0.0,11/05/4809 +-0.66393,48.9261,3478,12,27,7,29,20,4.15,5.0,fr,31850,69,1343112,1,2,Active Shallow Crust,0.0,89.99004,0.0,12/27/3478 +-0.66393,48.9261,8926,4,12,8,18,25,4.45,5.0,fr,31851,178,1343154,1,1,Active Shallow Crust,0.0,89.98989,-90.0,04/12/8926 +-0.66393,48.9261,8366,10,29,3,43,14,4.65,5.0,fr,31852,167,1343175,1,1,Active Shallow Crust,240.0117,57.9944,0.0,10/29/8366 +-0.66393,48.9261,1161,5,4,13,55,3,4.75,5.0,fr,31853,23,1343184,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/04/1161 +-5.30757,48.93542,5513,4,12,13,43,41,3.55,5.0,fr,31854,110,1343520,1,1,Active Shallow Crust,0.0,89.98675,0.0,04/12/5513 +-5.30757,48.93542,4658,1,13,18,48,16,3.65,5.0,fr,31855,93,1343532,1,1,Active Shallow Crust,0.0,89.98819,0.0,01/13/4658 +-5.30757,48.93542,2870,7,14,9,9,16,3.95,15.0,fr,31856,57,1343569,1,1,Active Shallow Crust,0.0,89.99164,0.0,07/14/2870 +-5.30757,48.93542,5724,10,14,9,0,11,4.05,5.0,fr,31857,114,1343580,1,1,Active Shallow Crust,0.0,89.98882,0.0,10/14/5724 +-5.30757,48.93542,7590,11,19,12,49,1,4.05,5.0,fr,31858,151,1343586,1,1,Active Shallow Crust,0.0,89.98869,-90.0,11/19/7590 +-5.30757,48.93542,6059,2,10,17,34,40,4.35,5.0,fr,31859,121,1343622,1,1,Active Shallow Crust,0.0,89.98933,-90.0,02/10/6059 +-5.30757,48.93542,7001,10,22,17,16,52,5.15,5.0,fr,31860,140,1343712,1,1,Active Shallow Crust,0.0,89.9895,0.0,10/22/7001 +0.55514,43.35892,6718,3,9,19,33,1,4.25,5.0,fr,31861,134,1344084,1,1,Active Shallow Crust,0.0,89.99017,0.0,03/09/6718 +-1.05547,47.82914,2262,5,24,23,33,37,3.65,27.5,fr,31862,45,1344494,1,1,Active Shallow Crust,0.0,89.98944,0.0,05/24/2262 +-1.05547,47.82914,5059,8,18,15,36,7,3.75,5.0,fr,31863,101,1344504,1,1,Active Shallow Crust,0.0,89.99059,0.0,08/18/5059 +-1.05547,47.82914,9769,10,17,10,56,51,3.75,15.0,fr,31864,195,1344505,1,1,Active Shallow Crust,0.0,89.99059,0.0,10/17/9769 +-1.05547,47.82914,5179,8,24,21,49,47,3.75,5.0,fr,31865,103,1344507,1,1,Active Shallow Crust,240.0087,58.01747,0.0,08/24/5179 +-1.05547,47.82914,445,2,5,18,55,11,3.75,5.0,fr,31866,8,1344513,1,1,Active Shallow Crust,128.8965,89.96739,0.0,02/05/0445 +-1.05547,47.82914,6482,9,2,3,15,8,3.95,5.0,fr,31867,129,1344528,1,1,Active Shallow Crust,0.0,89.99039,0.0,09/02/6482 +-1.05547,47.82914,9832,6,10,15,4,23,4.05,15.0,fr,31868,196,1344541,1,1,Active Shallow Crust,0.0,89.98953,0.0,06/10/9832 +-1.05547,47.82914,8829,9,1,2,52,46,4.05,27.5,fr,31869,176,1344542,1,1,Active Shallow Crust,0.0,89.98953,0.0,09/01/8829 +-1.05547,47.82914,1930,4,27,13,12,28,4.25,5.0,fr,31870,38,1344570,1,1,Active Shallow Crust,0.0,89.99006,-90.0,04/27/1930 +-1.05547,47.82914,5268,3,8,2,0,6,4.35,15.0,fr,31871,105,1344577,1,1,Active Shallow Crust,0.0,89.98989,0.0,03/08/5268 +-1.05547,47.82914,5027,5,8,12,15,47,4.35,5.0,fr,31872,100,1344579,1,1,Active Shallow Crust,240.0087,57.99602,0.0,05/08/5027 +-1.05547,47.82914,6577,5,6,8,7,12,4.45,15.0,fr,31873,131,1344589,1,1,Active Shallow Crust,0.0,89.98979,0.0,05/06/6577 +-1.05547,47.82914,7882,4,21,18,5,36,4.45,5.0,fr,31874,157,1344591,1,1,Active Shallow Crust,240.0056,57.99479,0.0,04/21/7882 +2.89324,51.93907,6507,7,5,10,42,25,3.55,15.0,fr,31875,130,1344961,1,1,Active Shallow Crust,0.0,89.99068,0.0,07/05/6507 +2.89324,51.93907,4725,8,22,1,43,52,3.65,5.0,fr,31876,94,1344972,1,1,Active Shallow Crust,0.0,89.98892,0.0,08/22/4725 +2.89324,51.93907,5957,5,21,12,12,53,3.65,5.0,fr,31877,119,1344975,1,1,Active Shallow Crust,240.0016,58.01333,0.0,05/21/5957 +2.89324,51.93907,8593,9,18,13,8,54,3.75,5.0,fr,31878,171,1344984,1,1,Active Shallow Crust,0.0,89.99012,0.0,09/18/8593 +2.89324,51.93907,9440,7,7,1,38,12,3.95,15.0,fr,31879,188,1345009,1,1,Active Shallow Crust,0.0,89.9902,0.0,07/07/9440 +0.78323,45.27516,7301,7,4,11,49,50,3.65,15.0,fr,31880,146,1345453,1,1,Active Shallow Crust,0.0,89.98972,0.0,07/04/7301 +0.78323,45.27516,961,8,23,12,33,54,3.65,15.0,fr,31881,19,1345456,1,1,Active Shallow Crust,240.0009,58.01292,0.0,08/23/0961 +0.78323,45.27516,6696,12,1,13,51,23,4.65,15.0,fr,31882,133,1345573,1,1,Active Shallow Crust,0.0,89.99,0.0,12/01/6696 +2.90536,43.92531,4384,4,22,23,8,13,3.55,5.0,fr,31883,87,1345920,1,1,Active Shallow Crust,0.0,89.98911,0.0,04/22/4384 +2.90536,43.92531,1937,10,2,12,1,4,3.55,5.0,fr,31884,38,1345923,1,1,Active Shallow Crust,240.0113,57.99807,0.0,10/02/1937 +2.90536,43.92531,1912,6,19,18,11,59,3.55,5.0,fr,31885,38,1345926,1,1,Active Shallow Crust,0.0,89.98898,-90.0,06/19/1912 +2.90536,43.92531,4126,5,3,13,45,54,3.65,5.0,fr,31886,82,1345932,1,2,Active Shallow Crust,0.0,89.99029,0.0,05/03/4126 +2.90536,43.92531,524,1,26,9,4,5,3.65,5.0,fr,31887,10,1345932,1,2,Active Shallow Crust,0.0,89.99029,0.0,01/26/0524 +2.90536,43.92531,4809,9,1,9,22,28,3.75,5.0,fr,31888,96,1345944,1,2,Active Shallow Crust,0.0,89.99135,0.0,09/01/4809 +2.90536,43.92531,2107,2,21,10,7,7,3.75,5.0,fr,31889,42,1345944,1,2,Active Shallow Crust,0.0,89.99135,0.0,02/21/2107 +2.90536,43.92531,7731,6,13,2,29,35,3.95,5.0,fr,31890,154,1345968,1,1,Active Shallow Crust,0.0,89.99084,0.0,06/13/7731 +2.90536,43.92531,6002,8,8,9,11,36,4.25,5.0,fr,31891,120,1346010,1,1,Active Shallow Crust,0.0,89.99015,-90.0,08/08/6002 +2.90536,43.92531,9649,3,12,1,2,53,4.35,27.5,fr,31892,192,1346018,1,1,Active Shallow Crust,0.0,89.98988,0.0,03/12/9649 +2.90536,43.92531,5064,5,30,7,52,56,4.45,5.0,fr,31893,101,1346028,1,1,Active Shallow Crust,0.0,89.98969,0.0,05/30/5064 +2.90536,43.92531,1104,7,8,21,49,37,4.75,5.0,fr,31894,22,1346064,1,1,Active Shallow Crust,0.0,89.98997,0.0,07/08/1104 +7.06603,48.51094,8878,4,26,3,29,52,3.55,15.0,fr,31895,177,1346881,1,1,Active Shallow Crust,0.0,89.99332,0.0,04/26/8878 +7.06603,48.51094,3122,12,28,15,19,41,3.55,5.0,fr,31896,62,1346886,1,1,Active Shallow Crust,0.0,89.99324,-90.0,12/28/3122 +7.06603,48.51094,9954,5,27,0,38,56,3.65,15.0,fr,31897,199,1346893,1,1,Active Shallow Crust,0.0,89.98809,0.0,05/27/9954 +7.06603,48.51094,7356,1,7,9,31,58,3.85,27.5,fr,31898,147,1346918,1,1,Active Shallow Crust,0.0,89.99054,0.0,01/07/7356 +7.06603,48.51094,7137,4,23,5,46,42,3.95,5.0,fr,31899,142,1346928,1,1,Active Shallow Crust,0.0,89.99157,0.0,04/23/7137 +7.06603,48.51094,3000,7,8,12,48,39,4.05,5.0,fr,31900,59,1346940,1,1,Active Shallow Crust,0.0,89.98873,0.0,07/08/3000 +7.06603,48.51094,8029,12,29,22,38,52,5.25,5.0,fr,31901,160,1347090,1,1,Active Shallow Crust,0.0,89.99045,-90.0,12/29/8029 +0.39918,48.59373,3437,10,24,7,24,47,3.75,5.0,fr,31902,68,1347384,1,1,Active Shallow Crust,0.0,89.99007,0.0,10/24/3437 +0.39918,48.59373,5512,7,15,6,33,53,4.05,15.0,fr,31903,110,1347424,1,1,Active Shallow Crust,240.0063,58.00586,0.0,07/15/5512 +0.39918,48.59373,3061,10,30,11,52,23,4.15,5.0,fr,31904,61,1347441,1,1,Active Shallow Crust,128.8972,89.99374,0.0,10/30/3061 +4.00355,51.33769,8539,10,21,17,13,35,3.55,15.0,fr,31905,170,1347841,1,1,Active Shallow Crust,0.0,89.9874,0.0,10/21/8539 +4.00355,51.33769,4876,4,7,2,35,46,3.55,5.0,fr,31906,97,1347843,1,1,Active Shallow Crust,240.0135,57.99766,0.0,04/07/4876 +4.00355,51.33769,192,12,12,16,42,54,3.75,5.0,fr,31907,3,1347864,1,1,Active Shallow Crust,0.0,89.98999,0.0,12/12/0192 +4.00355,51.33769,7559,6,18,3,31,51,3.75,15.0,fr,31908,151,1347865,1,1,Active Shallow Crust,0.0,89.98999,0.0,06/18/7559 +4.00355,51.33769,8592,5,4,20,37,15,3.75,27.5,fr,31909,171,1347866,1,1,Active Shallow Crust,0.0,89.98999,0.0,05/04/8592 +4.00355,51.33769,2912,1,6,8,12,40,3.85,5.0,fr,31910,58,1347879,1,1,Active Shallow Crust,240.0119,57.99759,0.0,01/06/2912 +4.00355,51.33769,6484,8,11,16,42,10,3.95,5.0,fr,31911,129,1347888,1,1,Active Shallow Crust,0.0,89.98808,0.0,08/11/6484 +7.50217,49.44407,7409,12,30,11,11,2,3.55,27.5,fr,31912,148,1348325,1,1,Active Shallow Crust,240.0132,57.99791,0.0,12/30/7409 +7.50217,49.44407,2734,7,10,14,32,34,3.55,5.0,fr,31913,54,1348329,1,1,Active Shallow Crust,128.895,89.99672,0.0,07/10/2734 +7.50217,49.44407,511,5,30,22,32,31,3.65,5.0,fr,31914,10,1348332,1,1,Active Shallow Crust,0.0,89.98831,0.0,05/30/0511 +7.50217,49.44407,1263,10,19,3,40,35,3.65,5.0,fr,31915,25,1348335,1,1,Active Shallow Crust,240.0007,58.01278,0.0,10/19/1263 +7.50217,49.44407,5573,10,18,23,40,47,3.85,5.0,fr,31916,111,1348359,1,1,Active Shallow Crust,240.0114,57.99699,0.0,10/18/5573 +7.50217,49.44407,5935,7,12,1,41,24,4.25,5.0,fr,31917,118,1348404,1,1,Active Shallow Crust,0.0,89.99121,0.0,07/12/5935 +-3.82964,49.75403,9962,10,17,20,36,1,3.55,5.0,fr,31918,199,1348800,1,1,Active Shallow Crust,0.0,89.99023,0.0,10/17/9962 +-3.82964,49.75403,5499,3,20,17,3,24,3.95,15.0,fr,31919,109,1348849,1,1,Active Shallow Crust,0.0,89.98972,0.0,03/20/5499 +4.44535,42.28649,8403,8,2,1,44,35,3.55,5.0,fr,31920,168,1349280,1,1,Active Shallow Crust,0.0,89.99254,0.0,08/02/8403 +4.44535,42.28649,7875,5,30,6,49,48,3.65,5.0,fr,31921,157,1349292,1,1,Active Shallow Crust,0.0,89.9867,0.0,05/30/7875 +4.44535,42.28649,8084,2,19,19,15,32,3.65,15.0,fr,31922,161,1349293,1,1,Active Shallow Crust,0.0,89.9867,0.0,02/19/8084 +4.44535,42.28649,1214,2,12,11,56,39,4.85,15.0,fr,31923,24,1349443,1,1,Active Shallow Crust,0.0,89.98986,-90.0,02/12/1214 +-0.0051,47.50257,6229,4,26,15,55,4,3.65,5.0,fr,31924,124,1349772,1,1,Active Shallow Crust,0.0,89.99,0.0,04/26/6229 +-0.0051,47.50257,7494,7,11,13,46,32,3.65,15.0,fr,31925,149,1349773,1,1,Active Shallow Crust,0.0,89.99,0.0,07/11/7494 +-0.0051,47.50257,2580,10,15,14,45,25,3.75,5.0,fr,31926,51,1349784,1,1,Active Shallow Crust,360.0,89.99001,0.0,10/15/2580 +-0.0051,47.50257,100,4,11,17,17,52,3.85,5.0,fr,31927,1,1349796,1,2,Active Shallow Crust,360.0,89.99,0.0,04/11/0100 +-0.0051,47.50257,7695,9,11,15,27,49,3.85,5.0,fr,31928,153,1349796,1,2,Active Shallow Crust,360.0,89.99,0.0,09/11/7695 +-0.0051,47.50257,3907,2,22,14,4,59,3.85,15.0,fr,31929,78,1349800,1,1,Active Shallow Crust,240.011,57.99783,0.0,02/22/3907 +-0.0051,47.50257,2906,6,10,6,7,51,3.95,27.5,fr,31930,58,1349816,1,1,Active Shallow Crust,0.0,89.99,-90.0,06/10/2906 +-0.0051,47.50257,5034,4,19,23,55,46,4.15,5.0,fr,31931,100,1349832,1,1,Active Shallow Crust,360.0,89.99,0.0,04/19/5034 +-0.0051,47.50257,96,6,3,16,37,14,4.25,5.0,fr,31932,1,1349844,1,2,Active Shallow Crust,360.0,89.99,0.0,06/03/0096 +-0.0051,47.50257,2084,10,4,16,42,51,4.25,5.0,fr,31933,41,1349844,1,2,Active Shallow Crust,360.0,89.99,0.0,10/04/2084 +-0.0051,47.50257,8913,9,3,6,49,34,4.65,5.0,fr,31934,178,1349892,1,1,Active Shallow Crust,360.0,89.99,0.0,09/03/8913 +-3.31883,43.63803,1064,10,15,4,42,36,3.55,5.0,fr,31935,21,1350240,1,1,Active Shallow Crust,0.0,89.98905,0.0,10/15/1064 +-3.31883,43.63803,3606,12,6,22,16,28,3.85,27.5,fr,31936,72,1350281,1,1,Active Shallow Crust,240.0101,57.99791,0.0,12/06/3606 +-3.31883,43.63803,5949,9,9,0,18,29,4.15,15.0,fr,31937,118,1350313,1,1,Active Shallow Crust,0.0,89.99085,0.0,09/09/5949 +-3.31883,43.63803,3566,9,8,17,40,53,4.65,15.0,fr,31938,71,1350382,1,1,Active Shallow Crust,128.8918,89.98707,0.0,09/08/3566 +-3.31883,43.63803,3659,9,2,10,40,28,4.75,5.0,fr,31939,73,1350393,1,1,Active Shallow Crust,128.8893,89.98801,0.0,09/02/3659 +-3.17607,42.6792,8084,3,19,20,32,32,3.55,15.0,fr,31940,161,1350724,1,1,Active Shallow Crust,240.0116,57.99835,0.0,03/19/8084 +-3.17607,42.6792,2299,12,15,3,21,1,3.65,5.0,fr,31941,45,1350732,1,1,Active Shallow Crust,0.0,89.99009,0.0,12/15/2299 +-3.17607,42.6792,79,11,8,4,25,5,3.75,5.0,fr,31942,1,1350750,1,1,Active Shallow Crust,0.0,89.99107,-90.0,11/08/0079 +-3.17607,42.6792,3423,9,19,8,14,38,3.85,5.0,fr,31943,68,1350756,1,1,Active Shallow Crust,0.0,89.9895,0.0,09/19/3423 +-3.17607,42.6792,7420,3,5,20,32,4,3.95,5.0,fr,31944,148,1350771,1,1,Active Shallow Crust,240.0192,58.00489,0.0,03/05/7420 +-3.17607,42.6792,5408,10,12,19,9,10,4.05,5.0,fr,31945,108,1350780,1,1,Active Shallow Crust,0.0,89.98958,0.0,10/12/5408 +-3.17607,42.6792,5946,3,27,19,4,6,4.15,5.0,fr,31946,118,1350792,1,1,Active Shallow Crust,0.0,89.99071,0.0,03/27/5946 +-3.17607,42.6792,6772,5,12,4,15,1,4.15,5.0,fr,31947,135,1350801,1,1,Active Shallow Crust,128.8978,89.99443,0.0,05/12/6772 +-3.17607,42.6792,4016,6,28,16,40,30,4.55,5.0,fr,31948,80,1350843,1,1,Active Shallow Crust,240.0082,57.99711,0.0,06/28/4016 +7.94894,44.5887,7203,9,9,8,54,50,3.55,5.0,fr,31949,144,1351200,1,4,Active Shallow Crust,0.0,89.99282,0.0,09/09/7203 +7.94894,44.5887,8087,1,18,16,48,24,3.55,5.0,fr,31950,161,1351200,1,4,Active Shallow Crust,0.0,89.99282,0.0,01/18/8087 +7.94894,44.5887,3503,8,25,22,8,16,3.55,5.0,fr,31951,70,1351200,1,4,Active Shallow Crust,0.0,89.99282,0.0,08/25/3503 +7.94894,44.5887,5385,4,10,19,29,51,3.55,5.0,fr,31952,107,1351200,1,4,Active Shallow Crust,0.0,89.99282,0.0,04/10/5385 +7.94894,44.5887,953,10,5,8,14,38,3.65,5.0,fr,31953,19,1351212,1,2,Active Shallow Crust,0.0,89.9872,0.0,10/05/0953 +7.94894,44.5887,3546,7,15,16,37,7,3.65,5.0,fr,31954,70,1351212,1,2,Active Shallow Crust,0.0,89.9872,0.0,07/15/3546 +7.94894,44.5887,932,6,25,19,21,21,3.65,15.0,fr,31955,18,1351216,1,1,Active Shallow Crust,240.0015,58.01252,0.0,06/25/0932 +7.94894,44.5887,2556,6,20,22,2,41,3.75,5.0,fr,31956,51,1351224,1,1,Active Shallow Crust,0.0,89.98859,0.0,06/20/2556 +7.94894,44.5887,916,7,24,17,17,18,3.75,15.0,fr,31957,18,1351225,1,1,Active Shallow Crust,0.0,89.98859,0.0,07/24/0916 +7.94894,44.5887,8027,4,24,20,21,0,3.75,27.5,fr,31958,160,1351226,1,1,Active Shallow Crust,0.0,89.98859,0.0,04/24/8027 +7.94894,44.5887,6669,6,19,11,56,20,3.75,5.0,fr,31959,133,1351227,1,1,Active Shallow Crust,240.0074,58.01818,0.0,06/19/6669 +7.94894,44.5887,1081,3,21,6,46,33,3.85,15.0,fr,31960,21,1351237,1,1,Active Shallow Crust,0.0,89.98983,0.0,03/21/1081 +7.94894,44.5887,2112,5,10,14,31,27,3.85,15.0,fr,31961,42,1351240,1,1,Active Shallow Crust,240.0115,57.9977,0.0,05/10/2112 +7.94894,44.5887,4465,2,17,11,35,57,3.95,15.0,fr,31962,89,1351249,1,1,Active Shallow Crust,0.0,89.99094,0.0,02/17/4465 +7.94894,44.5887,3852,3,29,18,55,56,4.05,5.0,fr,31963,77,1351260,1,1,Active Shallow Crust,0.0,89.99192,0.0,03/29/3852 +7.94894,44.5887,5183,9,6,7,4,34,4.05,5.0,fr,31964,103,1351263,1,1,Active Shallow Crust,240.0062,58.00586,0.0,09/06/5183 +7.94894,44.5887,7218,6,9,12,47,57,4.05,5.0,fr,31965,144,1351266,1,1,Active Shallow Crust,0.0,89.99183,-90.0,06/09/7218 +7.94894,44.5887,144,3,28,3,0,0,4.15,5.0,fr,31966,2,1351272,1,1,Active Shallow Crust,0.0,89.9892,0.0,03/28/0144 +7.94894,44.5887,3646,2,17,20,55,37,4.25,5.0,fr,31967,72,1351287,1,1,Active Shallow Crust,240.007,57.99369,0.0,02/17/3646 +7.94894,44.5887,2145,5,18,4,47,16,4.35,5.0,fr,31968,42,1351296,1,2,Active Shallow Crust,0.0,89.99142,0.0,05/18/2145 +7.94894,44.5887,2687,10,14,14,27,29,4.35,5.0,fr,31969,53,1351296,1,2,Active Shallow Crust,0.0,89.99142,0.0,10/14/2687 +7.948942,44.5887,5102,5,23,6,52,2,6.15,5.942511,fr,31970,102,1351518,1,1,Active Shallow Crust,0.0,89.98998,-90.0,05/23/5102 +2.42898,49.21741,6000,1,6,23,5,28,3.75,5.0,fr,31971,119,1351704,1,1,Active Shallow Crust,0.0,89.98953,0.0,01/06/6000 +2.42898,49.21741,3128,3,26,15,22,19,4.05,5.0,fr,31972,62,1351740,1,1,Active Shallow Crust,0.0,89.99074,0.0,03/26/3128 +5.10616,51.1265,9030,7,11,16,22,25,3.55,5.0,fr,31973,180,1352160,1,1,Active Shallow Crust,0.0,89.98734,0.0,07/11/9030 +5.10616,51.1265,513,9,19,9,46,55,3.55,15.0,fr,31974,10,1352161,1,2,Active Shallow Crust,0.0,89.98734,0.0,09/19/0513 +5.10616,51.1265,570,5,16,10,0,26,3.55,15.0,fr,31975,11,1352161,1,2,Active Shallow Crust,0.0,89.98734,0.0,05/16/0570 +5.10616,51.1265,9967,4,2,13,53,40,3.55,27.5,fr,31976,199,1352162,1,1,Active Shallow Crust,0.0,89.98734,0.0,04/02/9967 +5.10616,51.1265,775,3,7,22,14,8,3.65,5.0,fr,31977,15,1352172,1,1,Active Shallow Crust,0.0,89.98872,0.0,03/07/0775 +5.10616,51.1265,645,10,26,23,48,15,3.75,5.0,fr,31978,12,1352184,1,1,Active Shallow Crust,0.0,89.98994,0.0,10/26/0645 +5.10616,51.1265,5931,9,26,12,8,9,3.75,5.0,fr,31979,118,1352193,1,1,Active Shallow Crust,128.8959,89.96757,0.0,09/26/5931 +5.10616,51.1265,8802,7,21,17,13,31,3.85,15.0,fr,31980,176,1352203,1,1,Active Shallow Crust,0.0,89.99094,-90.0,07/21/8802 +5.10616,51.1265,9331,12,6,16,59,9,3.95,5.0,fr,31981,186,1352208,1,1,Active Shallow Crust,0.0,89.98802,0.0,12/06/9331 +5.10616,51.1265,3962,7,15,8,47,9,3.95,15.0,fr,31982,79,1352209,1,1,Active Shallow Crust,0.0,89.98802,0.0,07/15/3962 +5.10616,51.1265,2477,8,25,15,44,59,3.95,27.5,fr,31983,49,1352210,1,1,Active Shallow Crust,0.0,89.98802,0.0,08/25/2477 +5.10616,51.1265,6862,10,13,8,25,6,4.25,5.0,fr,31984,137,1352244,1,1,Active Shallow Crust,0.0,89.98869,0.0,10/13/6862 +5.10616,51.1265,5941,1,7,10,16,36,4.35,5.0,fr,31985,118,1352259,1,1,Active Shallow Crust,240.0098,57.99599,0.0,01/07/5941 +5.10616,51.1265,8228,11,20,13,19,52,4.35,15.0,fr,31986,164,1352260,1,1,Active Shallow Crust,240.0098,57.99599,0.0,11/20/8228 +5.10616,51.1265,4220,4,27,13,37,20,4.65,5.0,fr,31987,84,1352292,1,1,Active Shallow Crust,0.0,89.9893,0.0,04/27/4220 +1.78937,43.21714,6264,5,25,10,36,51,3.55,15.0,fr,31988,125,1352641,1,1,Active Shallow Crust,0.0,89.99081,0.0,05/25/6264 +1.78937,43.21714,6426,5,3,14,41,17,3.75,5.0,fr,31989,128,1352670,1,1,Active Shallow Crust,0.0,89.98967,-90.0,05/03/6426 +1.78937,43.21714,3171,1,15,11,6,3,4.55,15.0,fr,31990,63,1352761,1,1,Active Shallow Crust,0.0,89.99012,0.0,01/15/3171 +1.78937,43.21714,6353,3,20,13,27,4,4.85,15.0,fr,31991,127,1352797,1,1,Active Shallow Crust,0.0,89.99013,0.0,03/20/6353 +1.78937,43.21714,98,2,26,2,30,16,5.95,27.5,fr,31992,1,1352930,1,1,Active Shallow Crust,0.0,89.99002,0.0,02/26/0098 +6.45999,47.28893,6020,12,3,11,35,50,3.55,5.0,fr,31993,120,1353120,1,1,Active Shallow Crust,0.0,89.99316,0.0,12/03/6020 +6.45999,47.28893,4249,7,26,13,2,27,3.55,15.0,fr,31994,84,1353121,1,2,Active Shallow Crust,0.0,89.99316,0.0,07/26/4249 +6.45999,47.28893,7135,5,27,8,33,49,3.55,15.0,fr,31995,142,1353121,1,2,Active Shallow Crust,0.0,89.99316,0.0,05/27/7135 +6.45999,47.28893,2073,3,15,16,4,58,3.55,5.0,fr,31996,41,1353123,1,1,Active Shallow Crust,240.0118,57.99809,0.0,03/15/2073 +6.45999,47.28893,6212,11,28,16,29,47,3.55,5.0,fr,31997,124,1353129,1,1,Active Shallow Crust,128.8957,89.99316,0.0,11/28/6212 +6.45999,47.28893,4505,8,3,15,7,28,3.65,5.0,fr,31998,90,1353132,1,1,Active Shallow Crust,0.0,89.98781,0.0,08/03/4505 +6.45999,47.28893,2749,1,28,1,52,2,3.65,15.0,fr,31999,54,1353133,1,2,Active Shallow Crust,0.0,89.98781,0.0,01/28/2749 +6.45999,47.28893,8702,1,15,22,6,31,3.65,15.0,fr,32000,174,1353133,1,2,Active Shallow Crust,0.0,89.98781,0.0,01/15/8702 +6.45999,47.28893,76,6,1,3,13,13,3.65,27.5,fr,32001,1,1353134,1,1,Active Shallow Crust,0.0,89.98781,0.0,06/01/0076 +6.45999,47.28893,818,1,21,21,16,30,3.65,5.0,fr,32002,16,1353141,1,1,Active Shallow Crust,128.8999,89.96354,0.0,01/21/0818 +6.45999,47.28893,5204,4,20,7,14,41,3.75,15.0,fr,32003,104,1353145,1,2,Active Shallow Crust,0.0,89.98914,0.0,04/20/5204 +6.45999,47.28893,5524,6,11,22,6,31,3.75,15.0,fr,32004,110,1353145,1,2,Active Shallow Crust,0.0,89.98914,0.0,06/11/5524 +6.45999,47.28893,6920,1,25,8,8,18,3.85,5.0,fr,32005,138,1353156,1,2,Active Shallow Crust,0.0,89.99032,0.0,01/25/6920 +6.45999,47.28893,6392,9,4,15,4,15,3.85,5.0,fr,32006,127,1353156,1,2,Active Shallow Crust,0.0,89.99032,0.0,09/04/6392 +6.45999,47.28893,455,4,19,10,52,38,3.95,5.0,fr,32007,9,1353168,1,1,Active Shallow Crust,0.0,89.99137,0.0,04/19/0455 +6.45999,47.28893,3221,9,22,9,33,5,3.95,27.5,fr,32008,64,1353179,1,1,Active Shallow Crust,128.9004,89.99353,0.0,09/22/3221 +6.45999,47.28893,1244,9,28,1,30,29,4.05,5.0,fr,32009,24,1353180,1,1,Active Shallow Crust,0.0,89.98846,0.0,09/28/1244 +6.45999,47.28893,3232,6,28,0,47,53,4.05,15.0,fr,32010,64,1353190,1,1,Active Shallow Crust,128.8911,89.99231,0.0,06/28/3232 +6.45999,47.28893,3887,7,10,18,36,51,4.15,5.0,fr,32011,77,1353192,1,1,Active Shallow Crust,0.0,89.98972,0.0,07/10/3887 +6.45999,47.28893,1276,1,27,6,22,46,4.15,15.0,fr,32012,25,1353199,1,1,Active Shallow Crust,0.0,89.98959,-90.0,01/27/1276 +6.45999,47.28893,4308,5,21,7,35,51,4.25,5.0,fr,32013,86,1353204,1,1,Active Shallow Crust,0.0,89.99084,0.0,05/21/4308 +6.45999,47.28893,7410,3,4,1,30,40,4.45,5.0,fr,32014,148,1353228,1,1,Active Shallow Crust,0.0,89.99029,0.0,03/04/7410 +6.45999,47.28893,8210,10,16,2,19,54,4.65,5.0,fr,32015,164,1353252,1,1,Active Shallow Crust,0.0,89.99036,0.0,10/16/8210 +6.45999,47.28893,5196,10,1,15,19,52,4.75,5.0,fr,32016,103,1353264,1,1,Active Shallow Crust,0.0,89.98969,0.0,10/01/5196 +6.45999,47.28893,7499,6,27,6,45,15,4.75,27.5,fr,32017,149,1353266,1,1,Active Shallow Crust,0.0,89.98969,0.0,06/27/7499 +6.45999,47.28893,8514,4,13,12,6,2,4.85,15.0,fr,32018,170,1353277,1,1,Active Shallow Crust,0.0,89.98928,0.0,04/13/8514 +6.45999,47.28893,3157,9,19,2,29,44,4.95,5.0,fr,32019,63,1353288,1,1,Active Shallow Crust,0.0,89.99045,0.0,09/19/3157 +6.45999,47.28893,738,7,14,6,10,37,4.95,5.0,fr,32020,14,1353297,1,1,Active Shallow Crust,128.8895,89.98988,0.0,07/14/0738 +6.45999,47.28893,8044,4,13,22,33,30,5.65,5.0,fr,32021,160,1353375,1,1,Active Shallow Crust,240.038,57.9995,0.0,04/13/8044 +6.459996,47.28893,7173,11,29,11,36,34,6.35,7.567806,fr,32022,143,1353456,1,1,Active Shallow Crust,0.0,89.99005,0.0,11/29/7173 +6.460003,47.28893,4552,6,4,21,47,57,6.65,10.68981,fr,32023,91,1353492,1,1,Active Shallow Crust,0.0,89.99005,0.0,06/04/4552 +4.18524,43.85142,8718,2,10,4,0,59,3.55,27.5,fr,32024,174,1353605,1,1,Active Shallow Crust,240.013,57.99692,0.0,02/10/8718 +4.18524,43.85142,4900,3,27,1,37,31,3.65,5.0,fr,32025,97,1353612,1,3,Active Shallow Crust,0.0,89.98704,0.0,03/27/4900 +4.18524,43.85142,7300,11,8,15,42,49,3.65,5.0,fr,32026,145,1353612,1,3,Active Shallow Crust,0.0,89.98704,0.0,11/08/7300 +4.18524,43.85142,7588,7,9,23,41,33,3.65,5.0,fr,32027,151,1353612,1,3,Active Shallow Crust,0.0,89.98704,0.0,07/09/7588 +4.18524,43.85142,5316,11,14,3,47,31,3.65,5.0,fr,32028,106,1353621,1,2,Active Shallow Crust,128.9001,89.96347,0.0,11/14/5316 +4.18524,43.85142,6985,12,8,23,32,53,3.65,5.0,fr,32029,139,1353621,1,2,Active Shallow Crust,128.9001,89.96347,0.0,12/08/6985 +4.18524,43.85142,4691,4,25,21,47,41,3.85,5.0,fr,32030,93,1353636,1,1,Active Shallow Crust,0.0,89.9897,0.0,04/25/4691 +4.18524,43.85142,2138,12,26,9,19,25,3.85,27.5,fr,32031,42,1353638,1,1,Active Shallow Crust,0.0,89.9897,0.0,12/26/2138 +4.18524,43.85142,2721,10,1,5,39,47,3.85,15.0,fr,32032,54,1353640,1,1,Active Shallow Crust,240.01,57.99734,0.0,10/01/2721 +4.18524,43.85142,4277,7,11,18,10,8,4.05,15.0,fr,32033,85,1353661,1,1,Active Shallow Crust,0.0,89.99182,0.0,07/11/4277 +4.18524,43.85142,5384,9,16,22,53,5,4.75,5.0,fr,32034,107,1353753,1,1,Active Shallow Crust,128.8894,89.98802,0.0,09/16/5384 +-1.75499,48.84933,3506,5,1,13,1,37,3.55,5.0,fr,32035,70,1354560,1,1,Active Shallow Crust,0.0,89.99004,0.0,05/01/3506 +-1.75499,48.84933,3507,1,30,13,3,1,3.55,5.0,fr,32036,70,1354566,1,1,Active Shallow Crust,0.0,89.98993,-90.0,01/30/3507 +-1.75499,48.84933,145,5,19,22,33,30,3.55,15.0,fr,32037,2,1354567,1,1,Active Shallow Crust,0.0,89.98993,-90.0,05/19/0145 +-1.75499,48.84933,7263,6,29,20,37,38,3.65,27.5,fr,32038,145,1354574,1,1,Active Shallow Crust,0.0,89.98965,0.0,06/29/7263 +-1.75499,48.84933,3141,11,20,14,53,12,3.75,5.0,fr,32039,62,1354584,1,2,Active Shallow Crust,0.0,89.98946,0.0,11/20/3141 +-1.75499,48.84933,3989,2,18,10,21,54,3.75,5.0,fr,32040,79,1354584,1,2,Active Shallow Crust,0.0,89.98946,0.0,02/18/3989 +-1.75499,48.84933,4593,8,26,5,56,29,3.75,15.0,fr,32041,91,1354588,1,1,Active Shallow Crust,240.0088,58.01763,0.0,08/26/4593 +-1.75499,48.84933,8107,2,7,21,43,13,3.85,5.0,fr,32042,162,1354596,1,2,Active Shallow Crust,0.0,89.98943,0.0,02/07/8107 +-1.75499,48.84933,8506,9,9,11,52,18,3.85,5.0,fr,32043,170,1354596,1,2,Active Shallow Crust,0.0,89.98943,0.0,09/09/8506 +-1.75499,48.84933,1217,2,27,23,31,10,3.85,15.0,fr,32044,24,1354597,1,1,Active Shallow Crust,0.0,89.98943,0.0,02/27/1217 +-1.75499,48.84933,6975,3,6,13,31,31,3.95,5.0,fr,32045,139,1354608,1,1,Active Shallow Crust,0.0,89.98953,0.0,03/06/6975 +-1.75499,48.84933,6110,8,20,5,21,5,4.05,5.0,fr,32046,122,1354620,1,2,Active Shallow Crust,0.0,89.98974,0.0,08/20/6110 +-1.75499,48.84933,9954,11,6,18,4,57,4.05,5.0,fr,32047,199,1354620,1,2,Active Shallow Crust,0.0,89.98974,0.0,11/06/9954 +-1.75499,48.84933,7088,6,1,13,4,28,4.15,5.0,fr,32048,141,1354641,1,1,Active Shallow Crust,128.897,89.99377,0.0,06/01/7088 +-1.75499,48.84933,2616,1,6,20,27,1,4.25,5.0,fr,32049,52,1354644,1,1,Active Shallow Crust,0.0,89.99036,0.0,01/06/2616 +-1.75499,48.84933,9395,4,16,16,13,54,4.35,5.0,fr,32050,187,1354656,1,1,Active Shallow Crust,0.0,89.99009,0.0,04/16/9395 +-1.75499,48.84933,4884,5,4,13,57,36,4.45,15.0,fr,32051,97,1354669,1,1,Active Shallow Crust,0.0,89.98999,0.0,05/04/4884 +-1.75499,48.84933,1992,11,3,0,46,36,4.55,15.0,fr,32052,39,1354681,1,1,Active Shallow Crust,0.0,89.99003,0.0,11/03/1992 +-1.75499,48.84933,7957,3,22,9,4,55,4.55,27.5,fr,32053,159,1354691,1,1,Active Shallow Crust,128.8933,89.98578,0.0,03/22/7957 +-1.75499,48.84933,1800,1,9,16,20,57,4.85,5.0,fr,32054,35,1354716,1,1,Active Shallow Crust,0.0,89.98997,0.0,01/09/1800 +-1.75499,48.84933,9548,3,24,8,46,29,4.95,5.0,fr,32055,190,1354728,1,1,Active Shallow Crust,0.0,89.99007,0.0,03/24/9548 +-1.75499,48.84933,8461,9,24,9,2,24,4.95,15.0,fr,32056,169,1354729,1,1,Active Shallow Crust,0.0,89.99007,0.0,09/24/8461 +-5.68807,49.03154,6529,2,25,17,11,40,3.75,5.0,fr,32057,130,1355067,1,1,Active Shallow Crust,240.0096,58.01687,0.0,02/25/6529 +4.66094,48.58058,4149,1,22,10,58,45,4.15,15.0,fr,32058,82,1355593,1,1,Active Shallow Crust,0.0,89.98997,0.0,01/22/4149 +4.66094,48.58058,716,7,8,16,32,58,4.55,5.0,fr,32059,14,1355640,1,1,Active Shallow Crust,0.0,89.98945,0.0,07/08/0716 +1.63862,43.99175,400,7,7,11,18,48,3.85,27.5,fr,32060,7,1356047,1,1,Active Shallow Crust,128.8958,89.99358,0.0,07/07/0400 +1.63862,43.99175,8907,5,12,4,39,11,4.35,5.0,fr,32061,178,1356105,1,1,Active Shallow Crust,128.8982,89.98268,0.0,05/12/8907 +3.26844,44.24497,3245,2,1,23,6,50,3.55,5.0,fr,32062,64,1356480,1,1,Active Shallow Crust,0.0,89.98917,0.0,02/01/3245 +3.26844,44.24497,2770,1,22,20,11,41,3.95,5.0,fr,32063,55,1356531,1,1,Active Shallow Crust,240.0192,58.00473,0.0,01/22/2770 +3.26844,44.24497,3209,5,12,4,45,31,4.05,5.0,fr,32064,64,1356543,1,1,Active Shallow Crust,240.0057,58.00581,0.0,05/12/3209 +3.26844,44.24497,8341,10,16,9,10,44,4.75,15.0,fr,32065,166,1356625,1,1,Active Shallow Crust,0.0,89.99002,0.0,10/16/8341 +4.75617,46.80822,9992,4,14,1,14,1,3.55,15.0,fr,32066,199,1357447,1,1,Active Shallow Crust,0.0,89.99302,-90.0,04/14/9992 +4.75617,46.80822,8189,9,30,22,36,39,3.65,5.0,fr,32067,163,1357452,1,1,Active Shallow Crust,0.0,89.98769,0.0,09/30/8189 +4.75617,46.80822,999,5,11,0,21,23,3.65,15.0,fr,32068,19,1357453,1,1,Active Shallow Crust,0.0,89.98769,0.0,05/11/0999 +4.75617,46.80822,7171,11,20,17,30,16,3.65,15.0,fr,32069,143,1357456,1,1,Active Shallow Crust,240.0017,58.01272,0.0,11/20/7171 +4.75617,46.80822,4446,10,19,15,2,7,3.75,5.0,fr,32070,88,1357464,1,1,Active Shallow Crust,0.0,89.98904,0.0,10/19/4446 +4.75617,46.80822,8921,12,19,15,4,52,3.75,5.0,fr,32071,178,1357467,1,2,Active Shallow Crust,240.0096,58.01652,0.0,12/19/8921 +4.75617,46.80822,4760,12,13,4,32,2,3.75,5.0,fr,32072,95,1357467,1,2,Active Shallow Crust,240.0096,58.01652,0.0,12/13/4760 +4.75617,46.80822,375,2,12,22,13,58,3.85,5.0,fr,32073,7,1357476,1,1,Active Shallow Crust,0.0,89.99023,0.0,02/12/0375 +4.75617,46.80822,4492,4,10,22,10,57,3.85,15.0,fr,32074,89,1357480,1,1,Active Shallow Crust,240.011,57.9976,0.0,04/10/4492 +4.75617,46.80822,985,12,15,23,19,58,3.85,27.5,fr,32075,19,1357481,1,1,Active Shallow Crust,240.011,57.9976,0.0,12/15/0985 +4.75617,46.80822,6859,9,29,21,42,38,4.05,15.0,fr,32076,137,1357504,1,1,Active Shallow Crust,240.0063,58.00545,0.0,09/29/6859 +4.75617,46.80822,5220,8,29,18,30,16,4.15,5.0,fr,32077,104,1357521,1,1,Active Shallow Crust,128.8979,89.99308,0.0,08/29/5220 +4.75617,46.80822,5933,3,28,7,15,15,4.25,5.0,fr,32078,118,1357524,1,1,Active Shallow Crust,0.0,89.99075,0.0,03/28/5933 +4.75617,46.80822,4256,8,13,0,8,47,4.35,5.0,fr,32079,85,1357536,1,1,Active Shallow Crust,0.0,89.98901,0.0,08/13/4256 +4.75617,46.80822,8849,2,13,10,50,32,4.95,27.5,fr,32080,176,1357619,1,1,Active Shallow Crust,128.8895,89.98985,0.0,02/13/8849 +-3.21518,48.05308,6460,3,24,18,4,57,3.55,5.0,fr,32081,129,1357920,1,3,Active Shallow Crust,0.0,89.98989,0.0,03/24/6460 +-3.21518,48.05308,1938,5,15,7,17,3,3.55,5.0,fr,32082,38,1357920,1,3,Active Shallow Crust,0.0,89.98989,0.0,05/15/1938 +-3.21518,48.05308,3718,11,17,18,19,45,3.55,5.0,fr,32083,74,1357920,1,3,Active Shallow Crust,0.0,89.98989,0.0,11/17/3718 +-3.21518,48.05308,7783,12,31,4,56,52,3.55,27.5,fr,32084,155,1357925,1,1,Active Shallow Crust,240.0118,57.99797,0.0,12/31/7783 +-3.21518,48.05308,1767,10,23,20,27,25,3.65,5.0,fr,32085,35,1357932,1,1,Active Shallow Crust,0.0,89.99099,0.0,10/23/1767 +-3.21518,48.05308,9644,10,11,22,18,5,3.65,15.0,fr,32086,192,1357933,1,2,Active Shallow Crust,0.0,89.99099,0.0,10/11/9644 +-3.21518,48.05308,4302,8,10,19,12,12,3.65,15.0,fr,32087,86,1357933,1,2,Active Shallow Crust,0.0,89.99099,0.0,08/10/4302 +-3.21518,48.05308,688,1,4,17,17,18,3.65,15.0,fr,32088,13,1357936,1,1,Active Shallow Crust,240.0008,58.01293,0.0,01/04/0688 +-3.21518,48.05308,6744,4,17,1,17,58,3.65,15.0,fr,32089,134,1357942,1,1,Active Shallow Crust,128.9004,89.96355,0.0,04/17/6744 +-3.21518,48.05308,42,1,14,22,12,21,3.75,5.0,fr,32090,0,1357944,1,1,Active Shallow Crust,0.0,89.98929,0.0,01/14/0042 +-3.21518,48.05308,996,1,30,18,10,19,3.75,27.5,fr,32091,19,1357946,1,1,Active Shallow Crust,0.0,89.98929,0.0,01/30/0996 +-3.21518,48.05308,2056,12,2,9,4,51,3.75,15.0,fr,32092,41,1357948,1,1,Active Shallow Crust,240.0086,58.01777,0.0,12/02/2056 +-3.21518,48.05308,1018,5,31,17,35,48,3.75,5.0,fr,32093,20,1357953,1,1,Active Shallow Crust,128.8964,89.96727,0.0,05/31/1018 +-3.21518,48.05308,8238,6,7,15,11,29,3.85,15.0,fr,32094,164,1357957,1,3,Active Shallow Crust,0.0,89.99046,0.0,06/07/8238 +-3.21518,48.05308,7228,1,16,4,18,46,3.85,15.0,fr,32095,144,1357957,1,3,Active Shallow Crust,0.0,89.99046,0.0,01/16/7228 +-3.21518,48.05308,8185,11,26,12,20,55,3.85,15.0,fr,32096,163,1357957,1,3,Active Shallow Crust,0.0,89.99046,0.0,11/26/8185 +-3.21518,48.05308,8988,6,17,1,4,46,3.95,5.0,fr,32097,179,1357968,1,1,Active Shallow Crust,0.0,89.98936,0.0,06/17/8988 +-3.21518,48.05308,4174,5,22,10,32,42,3.95,15.0,fr,32098,83,1357969,1,1,Active Shallow Crust,0.0,89.98936,0.0,05/22/4174 +-3.21518,48.05308,4464,4,4,11,41,42,4.05,5.0,fr,32099,89,1357980,1,1,Active Shallow Crust,0.0,89.99052,0.0,04/04/4464 +-3.21518,48.05308,3650,10,3,20,0,57,4.35,5.0,fr,32100,72,1358016,1,1,Active Shallow Crust,0.0,89.99061,0.0,10/03/3650 +-3.21518,48.05308,4124,5,23,7,10,26,4.65,5.0,fr,32101,82,1358052,1,1,Active Shallow Crust,0.0,89.98955,0.0,05/23/4124 +-3.21518,48.05308,4221,8,25,11,41,23,4.75,27.5,fr,32102,84,1358066,1,1,Active Shallow Crust,0.0,89.98984,0.0,08/25/4221 +-0.72739,51.42527,121,9,5,14,34,53,3.75,5.0,fr,32103,2,1358424,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/05/0121 +-0.72739,51.42527,107,11,6,14,4,41,3.75,15.0,fr,32104,2,1358425,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/06/0107 +6.61848,50.5839,3013,12,23,21,24,32,3.55,5.0,fr,32105,60,1358880,1,2,Active Shallow Crust,0.0,89.9872,0.0,12/23/3013 +6.61848,50.5839,8994,2,26,16,10,10,3.55,5.0,fr,32106,179,1358880,1,2,Active Shallow Crust,0.0,89.9872,0.0,02/26/8994 +6.61848,50.5839,8078,6,29,9,21,40,3.55,15.0,fr,32107,161,1358890,1,1,Active Shallow Crust,128.896,89.9936,0.0,06/29/8078 +6.61848,50.5839,7637,3,28,6,5,40,3.65,5.0,fr,32108,152,1358892,1,3,Active Shallow Crust,0.0,89.98859,0.0,03/28/7637 +6.61848,50.5839,462,2,6,19,39,0,3.65,5.0,fr,32109,9,1358892,1,3,Active Shallow Crust,0.0,89.98859,0.0,02/06/0462 +6.61848,50.5839,3364,12,6,19,0,4,3.65,5.0,fr,32110,67,1358892,1,3,Active Shallow Crust,0.0,89.98859,0.0,12/06/3364 +6.61848,50.5839,4180,1,19,21,45,4,3.65,15.0,fr,32111,83,1358893,1,1,Active Shallow Crust,0.0,89.98859,0.0,01/19/4180 +6.61848,50.5839,4584,4,11,9,12,46,3.65,15.0,fr,32112,91,1358896,1,1,Active Shallow Crust,240.0013,58.01368,0.0,04/11/4584 +6.61848,50.5839,15,8,19,22,54,15,3.75,15.0,fr,32113,0,1358905,1,1,Active Shallow Crust,0.0,89.98983,0.0,08/19/0015 +6.61848,50.5839,666,3,14,17,18,51,3.85,5.0,fr,32114,13,1358916,1,1,Active Shallow Crust,0.0,89.99094,0.0,03/14/0666 +6.61848,50.5839,4908,5,15,13,21,41,3.85,15.0,fr,32115,98,1358917,1,2,Active Shallow Crust,0.0,89.99094,0.0,05/15/4908 +6.61848,50.5839,4984,10,31,15,28,16,3.85,15.0,fr,32116,99,1358917,1,2,Active Shallow Crust,0.0,89.99094,0.0,10/31/4984 +6.61848,50.5839,7905,5,5,12,29,54,3.95,5.0,fr,32117,158,1358928,1,1,Active Shallow Crust,0.0,89.99192,0.0,05/05/7905 +6.61848,50.5839,3818,5,23,10,2,33,3.95,15.0,fr,32118,76,1358929,1,1,Active Shallow Crust,0.0,89.99192,0.0,05/23/3818 +6.61848,50.5839,4260,11,12,2,6,45,4.05,5.0,fr,32119,85,1358940,1,1,Active Shallow Crust,0.0,89.9892,0.0,11/12/4260 +6.61848,50.5839,1325,9,13,16,28,5,4.05,15.0,fr,32120,26,1358941,1,1,Active Shallow Crust,0.0,89.9892,0.0,09/13/1325 +6.61848,50.5839,6141,8,22,4,5,39,4.15,5.0,fr,32121,122,1358952,1,1,Active Shallow Crust,0.0,89.99037,0.0,08/22/6141 +6.61848,50.5839,6494,8,18,6,41,39,4.45,5.0,fr,32122,129,1358988,1,1,Active Shallow Crust,0.0,89.99091,0.0,08/18/6494 +6.61848,50.5839,244,1,3,5,9,15,4.55,5.0,fr,32123,4,1359000,1,1,Active Shallow Crust,0.0,89.98988,0.0,01/03/0244 +6.61848,50.5839,5016,1,12,5,30,42,4.95,5.0,fr,32124,100,1359048,1,1,Active Shallow Crust,0.0,89.98978,0.0,01/12/5016 +6.61848,50.5839,1357,2,5,5,7,25,5.45,5.0,fr,32125,27,1359108,1,1,Active Shallow Crust,0.0,89.98994,0.0,02/05/1357 +2.08664,41.66464,8700,8,31,19,5,29,3.55,5.0,fr,32126,173,1359360,1,2,Active Shallow Crust,0.0,89.9887,0.0,08/31/8700 +2.08664,41.66464,5788,10,13,6,6,7,3.55,5.0,fr,32127,115,1359360,1,2,Active Shallow Crust,0.0,89.9887,0.0,10/13/5788 +2.08664,41.66464,7504,1,23,5,5,39,3.55,15.0,fr,32128,150,1359361,1,2,Active Shallow Crust,0.0,89.9887,0.0,01/23/7504 +2.08664,41.66464,1157,4,29,4,18,18,3.55,15.0,fr,32129,23,1359361,1,2,Active Shallow Crust,0.0,89.9887,0.0,04/29/1157 +2.08664,41.66464,7788,9,13,22,26,52,3.65,5.0,fr,32130,155,1359372,1,3,Active Shallow Crust,0.0,89.98993,0.0,09/13/7788 +2.08664,41.66464,899,2,6,6,1,57,3.65,5.0,fr,32131,17,1359372,1,3,Active Shallow Crust,0.0,89.98993,0.0,02/06/0899 +2.08664,41.66464,3514,3,29,14,50,58,3.65,5.0,fr,32132,70,1359372,1,3,Active Shallow Crust,0.0,89.98993,0.0,03/29/3514 +2.08664,41.66464,1588,11,16,17,48,3,3.65,5.0,fr,32133,31,1359375,1,1,Active Shallow Crust,240.0005,58.01318,0.0,11/16/1588 +2.08664,41.66464,2671,6,26,4,45,56,3.75,5.0,fr,32134,53,1359384,1,2,Active Shallow Crust,0.0,89.99103,0.0,06/26/2671 +2.08664,41.66464,982,11,3,10,21,12,3.75,5.0,fr,32135,19,1359384,1,2,Active Shallow Crust,0.0,89.99103,0.0,11/03/0982 +2.08664,41.66464,2874,10,7,22,38,9,3.85,5.0,fr,32136,57,1359396,1,2,Active Shallow Crust,0.0,89.98933,0.0,10/07/2874 +2.08664,41.66464,1182,3,21,23,35,52,3.85,5.0,fr,32137,23,1359396,1,2,Active Shallow Crust,0.0,89.98933,0.0,03/21/1182 +2.08664,41.66464,1236,4,10,19,51,16,3.85,15.0,fr,32138,24,1359397,1,1,Active Shallow Crust,0.0,89.98933,0.0,04/10/1236 +2.08664,41.66464,289,9,30,13,57,59,3.95,5.0,fr,32139,5,1359408,1,1,Active Shallow Crust,0.0,89.99049,0.0,09/30/0289 +2.08664,41.66464,7236,9,4,20,32,27,4.05,15.0,fr,32140,144,1359427,1,1,Active Shallow Crust,0.0,89.98929,-90.0,09/04/7236 +2.08664,41.66464,6214,10,12,7,11,49,4.15,5.0,fr,32141,124,1359438,1,1,Active Shallow Crust,0.0,89.99045,-90.0,10/12/6214 +2.08664,41.66464,2293,5,6,7,28,33,4.15,5.0,fr,32142,45,1359441,1,1,Active Shallow Crust,128.8979,89.99434,0.0,05/06/2293 +2.08664,41.66464,985,7,18,1,8,20,4.35,5.0,fr,32143,19,1359456,1,2,Active Shallow Crust,0.0,89.9895,0.0,07/18/0985 +2.08664,41.66464,899,9,7,15,40,59,4.35,5.0,fr,32144,17,1359456,1,2,Active Shallow Crust,0.0,89.9895,0.0,09/07/0899 +2.08664,41.66464,5816,8,2,16,22,56,4.75,5.0,fr,32145,116,1359504,1,1,Active Shallow Crust,0.0,89.98959,0.0,08/02/5816 +2.08664,41.66464,5886,11,23,9,25,37,5.05,15.0,fr,32146,117,1359541,1,1,Active Shallow Crust,0.0,89.98995,0.0,11/23/5886 +5.464855,41.74883,9043,7,8,13,27,47,6.35,7.567806,fr,32147,180,1360176,1,1,Active Shallow Crust,0.0,89.98996,0.0,07/08/9043 +5.09854,42.10599,7586,12,18,11,52,10,3.55,5.0,fr,32148,151,1360320,1,1,Active Shallow Crust,0.0,89.99252,0.0,12/18/7586 +2.84488,43.12072,2123,8,24,19,7,42,3.55,5.0,fr,32149,42,1360800,1,2,Active Shallow Crust,0.0,89.98896,0.0,08/24/2123 +2.84488,43.12072,521,5,28,10,10,58,3.55,5.0,fr,32150,10,1360800,1,2,Active Shallow Crust,0.0,89.98896,0.0,05/28/0521 +2.84488,43.12072,3900,5,13,1,10,40,3.65,5.0,fr,32151,77,1360815,1,1,Active Shallow Crust,240.0007,58.01339,0.0,05/13/3900 +2.84488,43.12072,2274,5,23,14,53,18,3.65,5.0,fr,32152,45,1360821,1,1,Active Shallow Crust,128.9002,89.96346,0.0,05/23/2274 +2.84488,43.12072,789,1,31,14,30,22,3.85,5.0,fr,32153,15,1360836,1,1,Active Shallow Crust,0.0,89.98958,0.0,01/31/0789 +2.84488,43.12072,2016,6,3,2,49,44,3.85,5.0,fr,32154,40,1360845,1,1,Active Shallow Crust,128.8959,89.99348,0.0,06/03/2016 +2.84488,43.12072,8421,5,13,17,56,39,4.15,5.0,fr,32155,168,1360872,1,1,Active Shallow Crust,0.0,89.99078,0.0,05/13/8421 +0.34113,50.30322,2413,8,7,19,12,58,3.65,15.0,fr,32156,48,1361293,1,1,Active Shallow Crust,0.0,89.98995,0.0,08/07/2413 +0.34113,50.30322,2530,8,1,23,42,40,3.75,15.0,fr,32157,50,1361305,1,1,Active Shallow Crust,0.0,89.99009,0.0,08/01/2530 +0.34113,50.30322,2398,2,18,15,15,27,3.85,5.0,fr,32158,47,1361316,1,1,Active Shallow Crust,0.0,89.99003,0.0,02/18/2398 +0.34113,50.30322,7253,11,21,8,10,18,3.95,5.0,fr,32159,145,1361328,1,1,Active Shallow Crust,0.0,89.9901,0.0,11/21/7253 +0.34113,50.30322,7489,6,16,22,41,34,4.05,15.0,fr,32160,149,1361341,1,1,Active Shallow Crust,0.0,89.99004,0.0,06/16/7489 +0.34113,50.30322,7453,12,11,17,37,26,4.45,15.0,fr,32161,149,1361389,1,1,Active Shallow Crust,0.0,89.99,0.0,12/11/7453 +4.96881,50.61741,7702,11,29,6,47,26,3.55,5.0,fr,32162,154,1361760,1,2,Active Shallow Crust,0.0,89.98721,0.0,11/29/7702 +4.96881,50.61741,6778,10,25,9,32,19,3.55,5.0,fr,32163,135,1361760,1,2,Active Shallow Crust,0.0,89.98721,0.0,10/25/6778 +4.96881,50.61741,4212,10,17,21,50,20,3.65,5.0,fr,32164,84,1361781,1,1,Active Shallow Crust,128.8997,89.9636,0.0,10/17/4212 +4.96881,50.61741,1217,6,5,19,52,47,3.75,5.0,fr,32165,24,1361790,1,1,Active Shallow Crust,0.0,89.98972,-90.0,06/05/1217 +4.96881,50.61741,8395,3,6,16,34,11,3.75,5.0,fr,32166,167,1361793,1,2,Active Shallow Crust,128.8964,89.96706,0.0,03/06/8395 +4.96881,50.61741,2611,1,14,15,17,50,3.75,5.0,fr,32167,52,1361793,1,2,Active Shallow Crust,128.8964,89.96706,0.0,01/14/2611 +4.96881,50.61741,6368,7,14,9,30,23,3.75,27.5,fr,32168,127,1361795,1,1,Active Shallow Crust,128.8964,89.96706,0.0,07/14/6368 +4.96881,50.61741,1143,10,19,16,51,50,3.85,5.0,fr,32169,22,1361796,1,2,Active Shallow Crust,0.0,89.99094,0.0,10/19/1143 +4.96881,50.61741,3192,5,5,21,30,56,3.85,5.0,fr,32170,63,1361796,1,2,Active Shallow Crust,0.0,89.99094,0.0,05/05/3192 +4.96881,50.61741,274,12,18,11,47,11,3.85,27.5,fr,32171,5,1361798,1,1,Active Shallow Crust,0.0,89.99094,0.0,12/18/0274 +4.96881,50.61741,457,12,11,6,10,22,3.95,5.0,fr,32172,9,1361808,1,1,Active Shallow Crust,0.0,89.99193,0.0,12/11/0457 +4.96881,50.61741,1622,10,24,0,37,45,3.95,15.0,fr,32173,32,1361809,1,1,Active Shallow Crust,0.0,89.99193,0.0,10/24/1622 +4.96881,50.61741,9716,5,12,11,6,38,4.05,5.0,fr,32174,194,1361820,1,1,Active Shallow Crust,0.0,89.9892,0.0,05/12/9716 +4.96881,50.61741,7052,11,19,17,29,49,4.05,15.0,fr,32175,141,1361824,1,1,Active Shallow Crust,240.0063,58.00611,0.0,11/19/7052 +4.96881,50.61741,7022,8,21,15,17,8,4.15,5.0,fr,32176,140,1361835,1,2,Active Shallow Crust,240.0093,57.99728,0.0,08/21/7022 +4.96881,50.61741,7892,12,29,11,37,10,4.15,5.0,fr,32177,157,1361835,1,2,Active Shallow Crust,240.0093,57.99728,0.0,12/29/7892 +4.96881,50.61741,5429,5,28,9,18,52,4.25,15.0,fr,32178,108,1361845,1,1,Active Shallow Crust,0.0,89.99142,0.0,05/28/5429 +4.96881,50.61741,5543,5,17,10,16,24,4.55,5.0,fr,32179,110,1361880,1,1,Active Shallow Crust,0.0,89.98988,0.0,05/17/5543 +4.96881,50.61741,9957,1,21,11,25,39,4.55,15.0,fr,32180,199,1361890,1,1,Active Shallow Crust,128.8928,89.98588,0.0,01/21/9957 +4.96881,50.61741,7714,2,17,3,19,48,4.75,5.0,fr,32181,154,1361904,1,1,Active Shallow Crust,0.0,89.99036,0.0,02/17/7714 +4.96881,50.61741,3162,5,25,3,2,22,5.25,5.0,fr,32182,63,1361964,1,1,Active Shallow Crust,0.0,89.99005,0.0,05/25/3162 +4.96881,50.61741,6527,7,2,9,42,46,5.55,5.0,fr,32183,130,1362003,1,1,Active Shallow Crust,240.0368,58.00029,0.0,07/02/6527 +2.06119,41.25721,7152,3,6,5,8,59,3.55,5.0,fr,32184,143,1362240,1,1,Active Shallow Crust,0.0,89.98863,0.0,03/06/7152 +2.06119,41.25721,2569,12,25,4,21,16,3.55,15.0,fr,32185,51,1362241,1,2,Active Shallow Crust,0.0,89.98863,0.0,12/25/2569 +2.06119,41.25721,3285,1,19,12,33,48,3.55,15.0,fr,32186,65,1362241,1,2,Active Shallow Crust,0.0,89.98863,0.0,01/19/3285 +2.06119,41.25721,3025,11,6,10,33,13,3.55,15.0,fr,32187,60,1362244,1,1,Active Shallow Crust,240.0116,57.99848,0.0,11/06/3025 +2.06119,41.25721,8369,12,1,8,18,33,3.65,5.0,fr,32188,167,1362252,1,2,Active Shallow Crust,0.0,89.98987,0.0,12/01/8369 +2.06119,41.25721,9756,2,14,2,37,1,3.65,5.0,fr,32189,195,1362252,1,2,Active Shallow Crust,0.0,89.98987,0.0,02/14/9756 +2.06119,41.25721,981,3,31,23,53,13,3.65,27.5,fr,32190,19,1362254,1,1,Active Shallow Crust,0.0,89.98987,0.0,03/31/0981 +2.06119,41.25721,3721,12,23,15,58,20,3.65,5.0,fr,32191,74,1362258,1,1,Active Shallow Crust,0.0,89.98975,-90.0,12/23/3721 +2.06119,41.25721,5242,9,2,15,55,13,3.75,5.0,fr,32192,104,1362264,1,1,Active Shallow Crust,0.0,89.99097,0.0,09/02/5242 +2.06119,41.25721,4896,8,21,16,3,44,3.75,15.0,fr,32193,97,1362265,1,3,Active Shallow Crust,0.0,89.99097,0.0,08/21/4896 +2.06119,41.25721,417,4,21,6,2,3,3.75,15.0,fr,32194,8,1362265,1,3,Active Shallow Crust,0.0,89.99097,0.0,04/21/0417 +2.06119,41.25721,9389,8,12,7,25,47,3.75,15.0,fr,32195,187,1362265,1,3,Active Shallow Crust,0.0,89.99097,0.0,08/12/9389 +2.06119,41.25721,8986,9,17,10,1,2,3.95,5.0,fr,32196,179,1362288,1,1,Active Shallow Crust,0.0,89.99043,0.0,09/17/8986 +2.06119,41.25721,7742,3,27,11,51,23,3.95,5.0,fr,32197,154,1362297,1,1,Active Shallow Crust,128.9008,89.99402,0.0,03/27/7742 +2.06119,41.25721,1356,6,23,15,47,37,4.25,5.0,fr,32198,27,1362324,1,1,Active Shallow Crust,0.0,89.98984,0.0,06/23/1356 +2.06119,41.25721,758,8,4,16,18,27,4.55,5.0,fr,32199,15,1362360,1,1,Active Shallow Crust,0.0,89.99041,0.0,08/04/0758 +2.06119,41.25721,7751,10,4,0,52,59,4.75,15.0,fr,32200,155,1362385,1,1,Active Shallow Crust,0.0,89.98952,0.0,10/04/7751 +2.06119,41.25721,7422,7,7,12,21,39,4.75,15.0,fr,32201,148,1362388,1,1,Active Shallow Crust,240.0059,58.00405,0.0,07/07/7422 +2.061191,41.25721,7555,9,26,7,5,21,6.05,5.357596,fr,32202,151,1362540,1,1,Active Shallow Crust,0.0,89.98997,0.0,09/26/7555 +8.38231,50.66054,8614,7,13,1,40,8,3.75,15.0,fr,32203,172,1363234,1,1,Active Shallow Crust,128.8966,89.96756,0.0,07/13/8614 +8.38231,50.66054,5841,1,17,15,31,5,3.85,5.0,fr,32204,116,1363245,1,1,Active Shallow Crust,128.8972,89.99095,0.0,01/17/5841 +8.38231,50.66054,5125,9,14,21,37,21,4.25,5.0,fr,32205,102,1363287,1,1,Active Shallow Crust,240.0086,57.99459,0.0,09/14/5125 +0.43965,49.38893,2534,12,22,7,4,44,3.55,15.0,fr,32206,50,1363681,1,2,Active Shallow Crust,0.0,89.99015,0.0,12/22/2534 +0.43965,49.38893,7842,5,17,21,17,56,3.55,15.0,fr,32207,156,1363681,1,2,Active Shallow Crust,0.0,89.99015,0.0,05/17/7842 +0.43965,49.38893,4000,6,29,23,50,42,3.55,27.5,fr,32208,79,1363682,1,1,Active Shallow Crust,0.0,89.99015,0.0,06/29/4000 +0.43965,49.38893,9408,2,16,6,37,46,3.55,5.0,fr,32209,188,1363686,1,1,Active Shallow Crust,0.0,89.99004,-90.0,02/16/9408 +0.43965,49.38893,192,2,16,20,51,28,3.65,5.0,fr,32210,3,1363692,1,2,Active Shallow Crust,0.0,89.99013,0.0,02/16/0192 +0.43965,49.38893,1479,4,6,0,34,11,3.65,5.0,fr,32211,29,1363692,1,2,Active Shallow Crust,0.0,89.99013,0.0,04/06/1479 +0.43965,49.38893,8545,4,26,1,38,25,3.65,5.0,fr,32212,170,1363698,1,1,Active Shallow Crust,0.0,89.99001,-90.0,04/26/8545 +0.43965,49.38893,5762,5,31,17,43,12,3.65,27.5,fr,32213,115,1363700,1,1,Active Shallow Crust,0.0,89.99001,-90.0,05/31/5762 +0.43965,49.38893,3293,7,2,16,38,24,3.75,15.0,fr,32214,65,1363711,1,1,Active Shallow Crust,0.0,89.99011,-90.0,07/02/3293 +0.43965,49.38893,8813,11,26,15,53,46,3.95,5.0,fr,32215,176,1363728,1,1,Active Shallow Crust,0.0,89.98991,0.0,11/26/8813 +0.43965,49.38893,4253,12,27,20,51,40,4.05,15.0,fr,32216,85,1363741,1,1,Active Shallow Crust,0.0,89.99008,0.0,12/27/4253 +0.43965,49.38893,6291,1,17,18,19,9,4.15,5.0,fr,32217,125,1363752,1,2,Active Shallow Crust,0.0,89.98992,0.0,01/17/6291 +0.43965,49.38893,8396,10,24,14,15,46,4.15,5.0,fr,32218,167,1363752,1,2,Active Shallow Crust,0.0,89.98992,0.0,10/24/8396 +0.43965,49.38893,3812,4,23,13,13,30,4.25,5.0,fr,32219,76,1363773,1,1,Active Shallow Crust,128.8938,89.9809,0.0,04/23/3812 +0.43965,49.38893,23,9,2,23,38,9,4.35,5.0,fr,32220,0,1363779,1,1,Active Shallow Crust,240.0091,57.99607,0.0,09/02/0023 +0.43965,49.38893,6377,8,18,1,38,59,4.75,5.0,fr,32221,127,1363824,1,2,Active Shallow Crust,0.0,89.99001,0.0,08/18/6377 +0.43965,49.38893,2357,3,21,10,57,28,4.75,5.0,fr,32222,47,1363824,1,2,Active Shallow Crust,0.0,89.99001,0.0,03/21/2357 +0.43965,49.38893,8864,6,20,14,23,54,5.15,5.0,fr,32223,177,1363872,1,1,Active Shallow Crust,0.0,89.98998,0.0,06/20/8864 +6.27385,51.88587,7553,11,12,13,7,24,3.95,27.5,fr,32224,151,1364213,1,1,Active Shallow Crust,240.021,58.00514,0.0,11/12/7553 +6.27385,51.88587,5686,9,4,2,42,6,4.55,15.0,fr,32225,113,1364281,1,1,Active Shallow Crust,0.0,89.99016,0.0,09/04/5686 +0.30388,42.10598,3864,8,9,10,59,29,3.55,5.0,fr,32226,77,1365120,1,1,Active Shallow Crust,0.0,89.99018,0.0,08/09/3864 +0.30388,42.10598,7674,7,11,8,41,43,3.55,27.5,fr,32227,153,1365128,1,1,Active Shallow Crust,0.0,89.99007,-90.0,07/11/7674 +0.30388,42.10598,8200,7,17,1,21,16,3.65,5.0,fr,32228,163,1365132,1,1,Active Shallow Crust,0.0,89.99,0.0,07/17/8200 +0.30388,42.10598,1474,1,30,11,50,5,3.65,5.0,fr,32229,29,1365135,1,1,Active Shallow Crust,240.0007,58.01279,0.0,01/30/1474 +-2.77814,47.2781,6027,5,13,8,34,16,3.85,5.0,fr,32230,120,1365636,1,1,Active Shallow Crust,0.0,89.99031,0.0,05/13/6027 +-2.77814,47.2781,2163,7,26,14,5,27,4.25,5.0,fr,32231,43,1365684,1,1,Active Shallow Crust,0.0,89.9893,0.0,07/26/2163 +-2.77814,47.2781,2823,2,25,8,1,46,4.25,15.0,fr,32232,56,1365691,1,1,Active Shallow Crust,0.0,89.99072,-90.0,02/25/2823 +-2.77814,47.2781,1534,6,28,2,0,2,4.55,5.0,fr,32233,30,1365723,1,1,Active Shallow Crust,240.0096,57.99752,0.0,06/28/1534 +-2.77814,47.2781,9693,2,19,12,49,1,4.75,5.0,fr,32234,193,1365744,1,1,Active Shallow Crust,0.0,89.98969,0.0,02/19/9693 +0.53026,47.00364,4465,3,8,20,14,39,3.55,5.0,fr,32235,89,1366080,1,1,Active Shallow Crust,0.0,89.98969,0.0,03/08/4465 +0.53026,47.00364,5967,1,5,1,49,50,3.55,5.0,fr,32236,119,1366083,1,1,Active Shallow Crust,240.0122,57.99826,0.0,01/05/5967 +0.53026,47.00364,8897,3,10,0,28,38,3.55,5.0,fr,32237,177,1366089,1,1,Active Shallow Crust,128.8962,89.99355,0.0,03/10/8897 +0.53026,47.00364,9812,7,15,2,59,54,3.65,5.0,fr,32238,196,1366092,1,1,Active Shallow Crust,0.0,89.99004,0.0,07/15/9812 +0.53026,47.00364,4730,5,19,7,7,25,3.65,5.0,fr,32239,94,1366101,1,1,Active Shallow Crust,128.9003,89.96353,0.0,05/19/4730 +0.53026,47.00364,6267,4,25,17,43,20,3.75,5.0,fr,32240,125,1366104,1,1,Active Shallow Crust,0.0,89.98976,0.0,04/25/6267 +0.53026,47.00364,3413,12,9,4,54,50,3.85,5.0,fr,32241,68,1366116,1,1,Active Shallow Crust,0.0,89.99026,0.0,12/09/3413 +0.53026,47.00364,8455,8,16,13,33,39,4.05,5.0,fr,32242,169,1366140,1,1,Active Shallow Crust,0.0,89.98985,0.0,08/16/8455 +0.53026,47.00364,9748,8,16,19,55,33,4.15,15.0,fr,32243,194,1366153,1,1,Active Shallow Crust,0.0,89.99009,0.0,08/16/9748 +0.53026,47.00364,1373,1,8,13,11,27,4.15,15.0,fr,32244,27,1366159,1,1,Active Shallow Crust,0.0,89.98997,-90.0,01/08/1373 +0.53026,47.00364,8471,9,3,8,25,13,4.25,5.0,fr,32245,169,1366167,1,1,Active Shallow Crust,240.0077,57.99409,0.0,09/03/8471 +0.53026,47.00364,1471,9,3,9,47,22,5.35,5.0,fr,32246,29,1366296,1,1,Active Shallow Crust,0.0,89.99004,0.0,09/03/1471 +0.5302681,47.00364,992,2,10,20,17,53,6.45,8.491219,fr,32247,19,1366428,1,1,Active Shallow Crust,360.0,89.99,0.0,02/10/0992 +-5.22448,46.8842,846,2,12,12,7,18,3.65,5.0,fr,32248,16,1366572,1,1,Active Shallow Crust,0.0,89.98772,0.0,02/12/0846 +6.18915,49.66227,3115,8,15,0,50,27,3.55,5.0,fr,32249,62,1367040,1,1,Active Shallow Crust,0.0,89.98695,0.0,08/15/3115 +6.18915,49.66227,8508,12,15,22,56,33,3.55,15.0,fr,32250,170,1367041,1,1,Active Shallow Crust,0.0,89.98695,0.0,12/15/8508 +6.18915,49.66227,7902,11,27,21,38,33,3.65,15.0,fr,32251,158,1367053,1,1,Active Shallow Crust,0.0,89.98837,0.0,11/27/7902 +6.18915,49.66227,1788,6,26,7,42,49,3.75,5.0,fr,32252,35,1367070,1,1,Active Shallow Crust,0.0,89.98951,-90.0,06/26/1788 +6.18915,49.66227,1132,3,19,8,37,36,3.85,5.0,fr,32253,22,1367076,1,1,Active Shallow Crust,0.0,89.99076,0.0,03/19/1132 +6.18915,49.66227,4487,12,14,10,39,43,3.95,5.0,fr,32254,89,1367091,1,1,Active Shallow Crust,240.0202,58.00508,0.0,12/14/4487 +6.18915,49.66227,9830,2,11,22,54,47,4.25,5.0,fr,32255,196,1367124,1,1,Active Shallow Crust,0.0,89.99125,0.0,02/11/9830 +-2.30704,42.50746,1163,5,6,4,8,30,3.55,5.0,fr,32256,23,1367520,1,4,Active Shallow Crust,0.0,89.98885,0.0,05/06/1163 +-2.30704,42.50746,1519,8,12,18,38,32,3.55,5.0,fr,32257,30,1367520,1,4,Active Shallow Crust,0.0,89.98885,0.0,08/12/1519 +-2.30704,42.50746,8074,6,18,19,41,23,3.55,5.0,fr,32258,161,1367520,1,4,Active Shallow Crust,0.0,89.98885,0.0,06/18/8074 +-2.30704,42.50746,1715,12,25,19,31,55,3.55,5.0,fr,32259,34,1367520,1,4,Active Shallow Crust,0.0,89.98885,0.0,12/25/1715 +-2.30704,42.50746,2284,3,2,15,9,45,3.65,5.0,fr,32260,45,1367532,1,2,Active Shallow Crust,0.0,89.99006,0.0,03/02/2284 +-2.30704,42.50746,9604,12,26,22,35,43,3.65,5.0,fr,32261,192,1367532,1,2,Active Shallow Crust,0.0,89.99006,0.0,12/26/9604 +-2.30704,42.50746,7164,12,24,8,59,30,3.65,27.5,fr,32262,143,1367534,1,1,Active Shallow Crust,0.0,89.99006,0.0,12/24/7164 +-2.30704,42.50746,6637,9,26,13,50,25,3.65,27.5,fr,32263,132,1367537,1,1,Active Shallow Crust,240.0003,58.01307,0.0,09/26/6637 +-2.30704,42.50746,5600,8,16,17,49,25,3.75,5.0,fr,32264,111,1367544,1,1,Active Shallow Crust,0.0,89.99114,0.0,08/16/5600 +-2.30704,42.50746,7438,10,4,15,50,42,3.85,5.0,fr,32265,148,1367556,1,1,Active Shallow Crust,0.0,89.98947,0.0,10/04/7438 +-2.30704,42.50746,7700,6,4,17,23,5,4.15,27.5,fr,32266,153,1367600,1,1,Active Shallow Crust,0.0,89.99058,-90.0,06/04/7700 +-2.30704,42.50746,5805,1,21,19,45,4,4.35,5.0,fr,32267,116,1367616,1,1,Active Shallow Crust,0.0,89.98964,0.0,01/21/5805 +-2.30704,42.50746,3538,2,17,15,7,33,4.35,15.0,fr,32268,70,1367617,1,1,Active Shallow Crust,0.0,89.98964,0.0,02/17/3538 +-2.30704,42.50746,3290,4,20,23,24,38,4.55,5.0,fr,32269,65,1367640,1,1,Active Shallow Crust,0.0,89.98942,0.0,04/20/3290 +-2.30704,42.50746,9475,2,22,15,25,51,4.55,15.0,fr,32270,189,1367641,1,1,Active Shallow Crust,0.0,89.98942,0.0,02/22/9475 +-2.30704,42.50746,1010,3,28,16,11,39,4.65,5.0,fr,32271,20,1367652,1,1,Active Shallow Crust,0.0,89.98952,0.0,03/28/1010 +-2.30704,42.50746,9916,8,10,5,25,31,4.75,27.5,fr,32272,198,1367666,1,1,Active Shallow Crust,0.0,89.98973,0.0,08/10/9916 +-2.30704,42.50746,1953,9,18,16,34,4,4.85,5.0,fr,32273,39,1367679,1,1,Active Shallow Crust,240.0157,58.00206,0.0,09/18/1953 +4.83177,50.72152,7388,6,30,20,45,9,3.55,5.0,fr,32274,147,1368000,1,1,Active Shallow Crust,0.0,89.98723,0.0,06/30/7388 +4.83177,50.72152,7050,4,27,18,43,53,3.55,5.0,fr,32275,140,1368003,1,1,Active Shallow Crust,240.0119,57.99812,0.0,04/27/7050 +4.83177,50.72152,1787,11,19,16,48,49,3.65,5.0,fr,32276,35,1368021,1,1,Active Shallow Crust,128.901,89.96305,0.0,11/19/1787 +4.83177,50.72152,8449,2,11,3,23,25,3.75,5.0,fr,32277,168,1368033,1,1,Active Shallow Crust,128.8963,89.96756,0.0,02/11/8449 +4.83177,50.72152,6064,7,14,9,56,0,3.85,5.0,fr,32278,121,1368036,1,1,Active Shallow Crust,0.0,89.99096,0.0,07/14/6064 +4.83177,50.72152,4816,10,4,21,15,20,3.95,5.0,fr,32279,96,1368054,1,1,Active Shallow Crust,0.0,89.99185,-90.0,10/04/4816 +4.83177,50.72152,4958,11,16,23,40,26,4.35,5.0,fr,32280,99,1368096,1,1,Active Shallow Crust,0.0,89.98983,0.0,11/16/4958 +4.83177,50.72152,7602,7,3,14,43,31,4.85,5.0,fr,32281,152,1368156,1,1,Active Shallow Crust,0.0,89.98999,0.0,07/03/7602 +4.83177,50.72152,6262,10,25,19,37,44,5.05,5.0,fr,32282,125,1368180,1,1,Active Shallow Crust,0.0,89.98978,0.0,10/25/6262 +4.83177,50.72152,7948,9,22,20,50,19,5.75,5.0,fr,32283,158,1368270,1,1,Active Shallow Crust,359.9998,89.99025,-90.0,09/22/7948 +4.83177,50.72152,3224,5,11,7,5,56,5.95,5.0,fr,32284,64,1368291,1,1,Active Shallow Crust,240.0579,57.99993,0.0,05/11/3224 +-3.00456,49.68918,6374,10,5,15,39,17,4.25,5.0,fr,32285,127,1368564,1,1,Active Shallow Crust,0.0,89.9898,0.0,10/05/6374 +6.07814,48.26328,6140,4,21,15,38,57,3.55,27.5,fr,32286,122,1368962,1,1,Active Shallow Crust,0.0,89.99329,0.0,04/21/6140 +6.07814,48.26328,1424,10,2,18,17,13,3.65,5.0,fr,32287,28,1368972,1,1,Active Shallow Crust,0.0,89.98804,0.0,10/02/1424 +6.07814,48.26328,7712,6,12,19,35,55,3.65,5.0,fr,32288,154,1368975,1,1,Active Shallow Crust,240.0004,58.01388,0.0,06/12/7712 +6.07814,48.26328,7253,12,30,5,12,28,3.75,5.0,fr,32289,145,1368984,1,1,Active Shallow Crust,0.0,89.98933,0.0,12/30/7253 +6.07814,48.26328,8457,2,13,4,33,10,3.85,5.0,fr,32290,169,1369002,1,1,Active Shallow Crust,0.0,89.99039,-90.0,02/13/8457 +6.07814,48.26328,8205,2,25,14,51,49,4.25,15.0,fr,32291,164,1369045,1,1,Active Shallow Crust,0.0,89.991,0.0,02/25/8205 +6.07814,48.26328,3284,12,2,7,53,46,4.25,5.0,fr,32292,65,1369047,1,1,Active Shallow Crust,240.0079,57.99405,0.0,12/02/3284 +6.07814,48.26328,3394,9,5,9,57,5,4.35,5.0,fr,32293,67,1369056,1,1,Active Shallow Crust,0.0,89.98931,0.0,09/05/3394 +-0.30673,50.66312,2408,7,23,10,58,30,3.55,5.0,fr,32294,48,1369440,1,1,Active Shallow Crust,0.0,89.99001,0.0,07/23/2408 +0.17661,43.73319,8092,7,19,1,38,42,3.55,5.0,fr,32295,161,1369920,1,1,Active Shallow Crust,0.0,89.98998,0.0,07/19/8092 +0.17661,43.73319,7848,5,29,11,21,40,3.75,27.5,fr,32296,156,1369946,1,1,Active Shallow Crust,0.0,89.99005,0.0,05/29/7848 +0.17661,43.73319,4495,7,24,16,6,42,4.65,15.0,fr,32297,89,1370053,1,1,Active Shallow Crust,0.0,89.98999,0.0,07/24/4495 +0.17661,43.73319,9310,9,5,17,45,48,4.75,5.0,fr,32298,186,1370070,1,1,Active Shallow Crust,0.0,89.98999,-90.0,09/05/9310 +-0.1508,43.8394,2843,10,26,7,17,31,3.55,15.0,fr,32299,56,1370404,1,1,Active Shallow Crust,240.0119,57.99813,0.0,10/26/2843 +-0.1508,43.8394,1842,5,28,7,20,35,3.75,5.0,fr,32300,36,1370424,1,1,Active Shallow Crust,0.0,89.99007,0.0,05/28/1842 +-0.1508,43.8394,8119,9,3,13,26,0,3.75,15.0,fr,32301,162,1370425,1,1,Active Shallow Crust,0.0,89.99007,0.0,09/03/8119 +0.17326,45.22718,8481,1,19,23,7,35,3.55,15.0,fr,32302,169,1370881,1,1,Active Shallow Crust,0.0,89.99001,0.0,01/19/8481 +0.17326,45.22718,2761,12,31,1,49,36,3.65,5.0,fr,32303,55,1370895,1,1,Active Shallow Crust,240.0009,58.01289,0.0,12/31/2761 +0.17326,45.22718,9212,3,19,7,31,53,3.95,5.0,fr,32304,184,1370931,1,1,Active Shallow Crust,240.0196,58.00495,0.0,03/19/9212 +0.17326,45.22718,4668,7,11,20,4,3,4.05,27.5,fr,32305,93,1370951,1,1,Active Shallow Crust,128.8907,89.9937,0.0,07/11/4668 +3.47469,44.2761,7618,4,12,19,13,59,3.65,5.0,fr,32306,152,1371372,1,1,Active Shallow Crust,0.0,89.99035,0.0,04/12/7618 +3.47469,44.2761,9789,2,19,1,48,8,3.85,5.0,fr,32307,195,1371396,1,1,Active Shallow Crust,0.0,89.98978,0.0,02/19/9789 +3.47469,44.2761,2886,12,20,18,1,26,4.05,5.0,fr,32308,57,1371420,1,1,Active Shallow Crust,0.0,89.98985,0.0,12/20/2886 +3.47469,44.2761,6996,3,10,13,38,59,4.15,15.0,fr,32309,139,1371433,1,1,Active Shallow Crust,0.0,89.98914,0.0,03/10/6996 +3.47469,44.2761,7429,7,17,11,23,30,4.25,5.0,fr,32310,148,1371444,1,1,Active Shallow Crust,0.0,89.99033,0.0,07/17/7429 +3.47469,44.2761,3808,8,12,4,12,45,4.65,5.0,fr,32311,76,1371492,1,1,Active Shallow Crust,0.0,89.98982,0.0,08/12/3808 +3.47469,44.2761,8616,11,3,19,21,14,4.75,5.0,fr,32312,172,1371504,1,1,Active Shallow Crust,0.0,89.99002,0.0,11/03/8616 +3.47469,44.2761,9909,9,26,19,10,52,4.85,15.0,fr,32313,198,1371520,1,1,Active Shallow Crust,240.0164,58.00219,0.0,09/26/9909 +3.47469,44.2761,4160,6,26,20,40,44,5.05,5.0,fr,32314,83,1371540,1,1,Active Shallow Crust,0.0,89.98972,0.0,06/26/4160 +3.47469,44.2761,5140,10,21,10,18,46,5.15,5.0,fr,32315,102,1371552,1,1,Active Shallow Crust,0.0,89.99027,0.0,10/21/5140 +4.93641,41.13784,6403,9,29,23,43,29,3.55,5.0,fr,32316,128,1371840,1,1,Active Shallow Crust,0.0,89.99241,0.0,09/29/6403 +4.93641,41.13784,5070,4,8,19,29,7,3.65,5.0,fr,32317,101,1371852,1,2,Active Shallow Crust,0.0,89.99323,0.0,04/08/5070 +4.93641,41.13784,4254,12,8,10,3,11,3.65,5.0,fr,32318,85,1371852,1,2,Active Shallow Crust,0.0,89.99323,0.0,12/08/4254 +4.93641,41.13784,9300,5,25,17,50,58,3.75,5.0,fr,32319,185,1371864,1,1,Active Shallow Crust,0.0,89.98794,0.0,05/25/9300 +4.93641,41.13784,314,1,25,9,52,59,3.95,5.0,fr,32320,6,1371891,1,1,Active Shallow Crust,240.0193,58.00502,0.0,01/25/0314 +8.32847,48.5253,1164,9,13,15,27,23,3.55,5.0,fr,32321,23,1372320,1,4,Active Shallow Crust,0.0,89.98664,0.0,09/13/1164 +8.32847,48.5253,8623,9,22,17,10,29,3.55,5.0,fr,32322,172,1372320,1,4,Active Shallow Crust,0.0,89.98664,0.0,09/22/8623 +8.32847,48.5253,2742,9,13,8,41,18,3.55,5.0,fr,32323,54,1372320,1,4,Active Shallow Crust,0.0,89.98664,0.0,09/13/2742 +8.32847,48.5253,8316,3,10,5,48,22,3.55,5.0,fr,32324,166,1372320,1,4,Active Shallow Crust,0.0,89.98664,0.0,03/10/8316 +8.32847,48.5253,9643,10,15,11,3,55,3.55,15.0,fr,32325,192,1372324,1,1,Active Shallow Crust,240.0123,57.99856,0.0,10/15/9643 +8.32847,48.5253,7629,10,23,0,15,14,3.55,5.0,fr,32326,152,1372329,1,1,Active Shallow Crust,128.8961,89.99332,0.0,10/23/7629 +8.32847,48.5253,7538,10,28,9,25,43,3.65,5.0,fr,32327,150,1372332,1,3,Active Shallow Crust,0.0,89.9881,0.0,10/28/7538 +8.32847,48.5253,4591,8,16,1,27,14,3.65,5.0,fr,32328,91,1372332,1,3,Active Shallow Crust,0.0,89.9881,0.0,08/16/4591 +8.32847,48.5253,6155,3,13,12,56,1,3.65,5.0,fr,32329,123,1372332,1,3,Active Shallow Crust,0.0,89.9881,0.0,03/13/6155 +8.32847,48.5253,7540,6,11,8,30,29,3.65,5.0,fr,32330,150,1372341,1,1,Active Shallow Crust,128.903,89.96214,0.0,06/11/7540 +8.32847,48.5253,5415,5,12,7,54,32,3.75,5.0,fr,32331,108,1372347,1,1,Active Shallow Crust,240.0091,58.01685,0.0,05/12/5415 +8.32847,48.5253,9312,8,14,11,54,44,3.75,15.0,fr,32332,186,1372351,1,1,Active Shallow Crust,0.0,89.98927,-90.0,08/14/9312 +8.32847,48.5253,8966,3,20,12,6,25,3.85,5.0,fr,32333,179,1372356,1,1,Active Shallow Crust,0.0,89.99055,0.0,03/20/8966 +8.32847,48.5253,5381,1,3,5,15,47,3.95,5.0,fr,32334,107,1372368,1,2,Active Shallow Crust,0.0,89.99157,0.0,01/03/5381 +8.32847,48.5253,5599,12,15,18,45,8,3.95,5.0,fr,32335,111,1372368,1,2,Active Shallow Crust,0.0,89.99157,0.0,12/15/5599 +8.32847,48.5253,391,9,11,19,47,2,4.05,5.0,fr,32336,7,1372383,1,2,Active Shallow Crust,240.0072,58.00603,0.0,09/11/0391 +8.32847,48.5253,2871,10,3,13,57,1,4.05,5.0,fr,32337,57,1372383,1,2,Active Shallow Crust,240.0072,58.00603,0.0,10/03/2871 +8.32847,48.5253,7303,9,18,22,51,40,4.15,5.0,fr,32338,146,1372392,1,1,Active Shallow Crust,0.0,89.99331,0.0,09/18/7303 +8.32847,48.5253,8056,3,8,12,48,11,4.15,15.0,fr,32339,161,1372393,1,1,Active Shallow Crust,0.0,89.99331,0.0,03/08/8056 +-2.49392,46.62341,2425,2,23,23,26,24,3.55,5.0,fr,32340,48,1372800,1,1,Active Shallow Crust,0.0,89.98961,0.0,02/23/2425 +-2.49392,46.62341,1571,4,8,15,37,42,3.65,15.0,fr,32341,31,1372813,1,1,Active Shallow Crust,0.0,89.99074,0.0,04/08/1571 +-2.49392,46.62341,9065,8,13,14,47,6,3.75,5.0,fr,32342,181,1372824,1,1,Active Shallow Crust,0.0,89.989,0.0,08/13/9065 +-2.49392,46.62341,5932,6,6,9,12,21,4.05,5.0,fr,32343,118,1372869,1,1,Active Shallow Crust,128.8905,89.99319,0.0,06/06/5932 +-2.49392,46.62341,1536,10,29,13,21,12,4.25,15.0,fr,32344,30,1372885,1,1,Active Shallow Crust,0.0,89.99072,0.0,10/29/1536 +-2.49392,46.62341,9965,1,10,8,53,14,4.45,5.0,fr,32345,199,1372917,1,1,Active Shallow Crust,128.8922,89.99386,0.0,01/10/9965 +6.91793,47.98466,7525,8,15,9,53,58,3.55,15.0,fr,32346,150,1373281,1,1,Active Shallow Crust,0.0,89.99325,0.0,08/15/7525 +6.91793,47.98466,7806,5,28,7,36,2,3.75,5.0,fr,32347,156,1373310,1,1,Active Shallow Crust,0.0,89.98915,-90.0,05/28/7806 +6.91793,47.98466,9127,6,26,17,22,29,3.95,5.0,fr,32348,182,1373328,1,2,Active Shallow Crust,0.0,89.99149,0.0,06/26/9127 +6.91793,47.98466,4531,5,5,17,18,59,3.95,5.0,fr,32349,90,1373328,1,2,Active Shallow Crust,0.0,89.99149,0.0,05/05/4531 +6.91793,47.98466,3566,10,1,11,51,29,3.95,27.5,fr,32350,71,1373330,1,1,Active Shallow Crust,0.0,89.99149,0.0,10/01/3566 +6.91793,47.98466,751,5,8,20,5,33,3.95,5.0,fr,32351,15,1373331,1,1,Active Shallow Crust,240.0203,58.00531,0.0,05/08/0751 +6.91793,47.98466,2857,3,2,17,52,49,3.95,15.0,fr,32352,57,1373335,1,1,Active Shallow Crust,0.0,89.99139,-90.0,03/02/2857 +6.91793,47.98466,1097,4,1,16,55,25,4.05,15.0,fr,32353,21,1373341,1,1,Active Shallow Crust,0.0,89.98861,0.0,04/01/1097 +6.91793,47.98466,573,5,25,10,11,59,4.25,5.0,fr,32354,11,1373364,1,1,Active Shallow Crust,0.0,89.99095,0.0,05/25/0573 +6.91793,47.98466,5524,11,30,10,10,3,4.25,15.0,fr,32355,110,1373365,1,1,Active Shallow Crust,0.0,89.99095,0.0,11/30/5524 +6.91793,47.98466,9455,11,27,19,45,27,4.35,15.0,fr,32356,189,1373377,1,1,Active Shallow Crust,0.0,89.98925,0.0,11/27/9455 +6.91793,47.98466,7591,2,27,13,11,0,4.45,5.0,fr,32357,151,1373388,1,1,Active Shallow Crust,0.0,89.99042,0.0,02/27/7591 +6.91793,47.98466,7967,6,24,0,7,14,4.55,15.0,fr,32358,159,1373401,1,1,Active Shallow Crust,0.0,89.98933,0.0,06/24/7967 +6.917931,47.98466,2992,2,27,19,10,0,6.05,5.357596,fr,32359,59,1373580,1,1,Active Shallow Crust,0.0,89.98994,0.0,02/27/2992 +6.65588,48.20791,2385,4,16,14,9,6,3.55,5.0,fr,32360,47,1373760,1,6,Active Shallow Crust,0.0,89.99328,0.0,04/16/2385 +6.65588,48.20791,8495,12,25,19,28,5,3.55,5.0,fr,32361,169,1373760,1,6,Active Shallow Crust,0.0,89.99328,0.0,12/25/8495 +6.65588,48.20791,5407,1,5,5,14,29,3.55,5.0,fr,32362,108,1373760,1,6,Active Shallow Crust,0.0,89.99328,0.0,01/05/5407 +6.65588,48.20791,917,4,19,4,44,19,3.55,5.0,fr,32363,18,1373760,1,6,Active Shallow Crust,0.0,89.99328,0.0,04/19/0917 +6.65588,48.20791,2944,7,30,12,33,12,3.55,5.0,fr,32364,58,1373760,1,6,Active Shallow Crust,0.0,89.99328,0.0,07/30/2944 +6.65588,48.20791,8020,8,11,8,0,32,3.55,5.0,fr,32365,160,1373760,1,6,Active Shallow Crust,0.0,89.99328,0.0,08/11/8020 +6.65588,48.20791,1707,2,8,9,38,13,3.55,27.5,fr,32366,34,1373762,1,2,Active Shallow Crust,0.0,89.99328,0.0,02/08/1707 +6.65588,48.20791,8368,3,4,7,5,9,3.55,27.5,fr,32367,167,1373762,1,2,Active Shallow Crust,0.0,89.99328,0.0,03/04/8368 +6.65588,48.20791,9473,1,14,5,44,41,3.55,5.0,fr,32368,189,1373763,1,2,Active Shallow Crust,240.0128,57.99821,0.0,01/14/9473 +6.65588,48.20791,3745,7,17,12,51,29,3.55,5.0,fr,32369,74,1373763,1,2,Active Shallow Crust,240.0128,57.99821,0.0,07/17/3745 +6.65588,48.20791,1166,4,9,21,28,1,3.65,5.0,fr,32370,23,1373772,1,4,Active Shallow Crust,0.0,89.98802,0.0,04/09/1166 +6.65588,48.20791,3409,11,27,5,26,1,3.65,5.0,fr,32371,68,1373772,1,4,Active Shallow Crust,0.0,89.98802,0.0,11/27/3409 +6.65588,48.20791,7274,10,4,19,33,24,3.65,5.0,fr,32372,145,1373772,1,4,Active Shallow Crust,0.0,89.98802,0.0,10/04/7274 +6.65588,48.20791,4591,8,28,13,45,0,3.65,5.0,fr,32373,91,1373772,1,4,Active Shallow Crust,0.0,89.98802,0.0,08/28/4591 +6.65588,48.20791,4834,5,2,20,56,29,3.65,15.0,fr,32374,96,1373773,1,1,Active Shallow Crust,0.0,89.98802,0.0,05/02/4834 +6.65588,48.20791,365,9,10,3,47,22,3.65,5.0,fr,32375,7,1373781,1,1,Active Shallow Crust,128.901,89.96294,0.0,09/10/0365 +6.65588,48.20791,7298,6,19,1,12,29,3.75,5.0,fr,32376,145,1373784,1,1,Active Shallow Crust,0.0,89.98933,0.0,06/19/7298 +6.65588,48.20791,3513,11,22,20,38,59,3.85,5.0,fr,32377,70,1373796,1,3,Active Shallow Crust,0.0,89.99049,0.0,11/22/3513 +6.65588,48.20791,4077,10,9,0,17,13,3.85,5.0,fr,32378,81,1373796,1,3,Active Shallow Crust,0.0,89.99049,0.0,10/09/4077 +6.65588,48.20791,1597,2,22,13,13,54,3.85,5.0,fr,32379,31,1373796,1,3,Active Shallow Crust,0.0,89.99049,0.0,02/22/1597 +6.65588,48.20791,2355,1,28,15,20,50,3.85,5.0,fr,32380,47,1373802,1,1,Active Shallow Crust,0.0,89.99037,-90.0,01/28/2355 +6.65588,48.20791,9003,1,16,13,31,11,3.95,27.5,fr,32381,180,1373810,1,1,Active Shallow Crust,0.0,89.99152,0.0,01/16/9003 +6.65588,48.20791,2938,12,28,8,30,28,3.95,5.0,fr,32382,58,1373811,1,2,Active Shallow Crust,240.02,58.00533,0.0,12/28/2938 +6.65588,48.20791,1828,12,20,8,35,32,3.95,5.0,fr,32383,36,1373811,1,2,Active Shallow Crust,240.02,58.00533,0.0,12/20/1828 +6.65588,48.20791,2356,9,17,1,45,23,4.05,5.0,fr,32384,47,1373820,1,1,Active Shallow Crust,0.0,89.98866,0.0,09/17/2356 +6.65588,48.20791,7351,1,31,10,28,12,4.05,5.0,fr,32385,147,1373823,1,1,Active Shallow Crust,240.0064,58.00585,0.0,01/31/7351 +6.65588,48.20791,212,3,2,18,23,5,4.05,5.0,fr,32386,4,1373829,1,1,Active Shallow Crust,128.8899,89.99433,0.0,03/02/0212 +6.65588,48.20791,3294,12,23,23,28,49,4.15,5.0,fr,32387,65,1373832,1,1,Active Shallow Crust,0.0,89.9899,0.0,12/23/3294 +6.65588,48.20791,37,2,19,17,9,23,4.15,15.0,fr,32388,0,1373833,1,1,Active Shallow Crust,0.0,89.9899,0.0,02/19/0037 +6.65588,48.20791,1509,12,2,11,35,11,4.45,5.0,fr,32389,30,1373868,1,2,Active Shallow Crust,0.0,89.99046,0.0,12/02/1509 +6.65588,48.20791,4429,4,16,5,2,41,4.45,5.0,fr,32390,88,1373868,1,2,Active Shallow Crust,0.0,89.99046,0.0,04/16/4429 +6.65588,48.20791,7425,1,16,8,23,50,4.55,27.5,fr,32391,148,1373882,1,1,Active Shallow Crust,0.0,89.98937,0.0,01/16/7425 +6.65588,48.20791,9992,1,28,6,58,14,4.75,15.0,fr,32392,199,1373905,1,1,Active Shallow Crust,0.0,89.98987,0.0,01/28/9992 +6.65588,48.20791,9212,4,22,2,36,23,4.95,15.0,fr,32393,184,1373932,1,1,Active Shallow Crust,240.013,58.00459,0.0,04/22/9212 +6.65588,48.20791,268,4,14,7,21,28,5.05,5.0,fr,32394,5,1373940,1,1,Active Shallow Crust,0.0,89.99044,0.0,04/14/0268 +6.655882,48.20791,787,7,20,8,13,0,6.15,6.011322,fr,32395,15,1374072,1,1,Active Shallow Crust,0.0,89.98988,0.0,07/20/0787 +1.1145,49.81621,6314,8,1,20,1,33,3.55,15.0,fr,32396,126,1374241,1,1,Active Shallow Crust,0.0,89.99024,0.0,08/01/6314 +1.1145,49.81621,3956,8,31,14,21,18,3.55,5.0,fr,32397,79,1374249,1,1,Active Shallow Crust,128.8957,89.99349,0.0,08/31/3956 +1.1145,49.81621,6439,8,9,7,23,39,3.55,15.0,fr,32398,128,1374250,1,1,Active Shallow Crust,128.8957,89.99349,0.0,08/09/6439 +1.1145,49.81621,9281,12,15,23,17,14,3.65,5.0,fr,32399,185,1374252,1,1,Active Shallow Crust,0.0,89.98985,0.0,12/15/9281 +1.1145,49.81621,745,9,15,16,17,40,3.65,15.0,fr,32400,14,1374253,1,1,Active Shallow Crust,0.0,89.98985,0.0,09/15/0745 +1.1145,49.81621,4326,1,25,17,52,51,3.65,5.0,fr,32401,86,1374258,1,1,Active Shallow Crust,0.0,89.98973,-90.0,01/25/4326 +1.1145,49.81621,1363,9,11,22,35,33,3.75,5.0,fr,32402,27,1374264,1,1,Active Shallow Crust,0.0,89.98966,0.0,09/11/1363 +1.1145,49.81621,4430,10,5,0,51,56,4.05,5.0,fr,32403,88,1374306,1,1,Active Shallow Crust,0.0,89.98982,-90.0,10/05/4430 +1.1145,49.81621,3578,8,8,13,29,59,4.15,5.0,fr,32404,71,1374312,1,1,Active Shallow Crust,0.0,89.99022,0.0,08/08/3578 +1.1145,49.81621,81,1,22,3,36,41,5.95,5.0,fr,32405,1,1374528,1,1,Active Shallow Crust,359.9999,89.99004,0.0,01/22/0081 +-3.72308,47.86882,5146,7,7,6,54,14,3.55,5.0,fr,32406,102,1374720,1,1,Active Shallow Crust,0.0,89.98985,0.0,07/07/5146 +-3.72308,47.86882,5318,9,29,13,1,47,3.55,5.0,fr,32407,106,1374729,1,1,Active Shallow Crust,128.8961,89.99493,0.0,09/29/5318 +-3.72308,47.86882,9104,4,6,9,18,17,3.65,5.0,fr,32408,182,1374732,1,1,Active Shallow Crust,0.0,89.99096,0.0,04/06/9104 +-3.72308,47.86882,6444,9,7,20,35,24,3.65,5.0,fr,32409,128,1374738,1,1,Active Shallow Crust,0.0,89.99085,-90.0,09/07/6444 +-3.72308,47.86882,3659,1,19,1,37,44,3.75,5.0,fr,32410,73,1374744,1,1,Active Shallow Crust,0.0,89.98925,0.0,01/19/3659 +-3.72308,47.86882,1545,9,14,2,12,16,3.75,5.0,fr,32411,30,1374750,1,1,Active Shallow Crust,0.0,89.98913,-90.0,09/14/1545 +-3.72308,47.86882,2988,6,11,7,14,58,3.85,5.0,fr,32412,59,1374756,1,1,Active Shallow Crust,0.0,89.99043,0.0,06/11/2988 +-3.72308,47.86882,131,4,19,15,51,18,4.05,5.0,fr,32413,2,1374780,1,2,Active Shallow Crust,0.0,89.99049,0.0,04/19/0131 +-3.72308,47.86882,7339,12,26,0,25,35,4.05,5.0,fr,32414,146,1374780,1,2,Active Shallow Crust,0.0,89.99049,0.0,12/26/7339 +-3.72308,47.86882,1661,12,14,11,52,27,4.05,5.0,fr,32415,33,1374789,1,1,Active Shallow Crust,128.8902,89.99335,0.0,12/14/1661 +-3.72308,47.86882,8543,5,19,12,23,23,4.15,5.0,fr,32416,170,1374792,1,1,Active Shallow Crust,0.0,89.98983,0.0,05/19/8543 +-3.72308,47.86882,7400,7,26,20,32,45,4.25,15.0,fr,32417,147,1374805,1,1,Active Shallow Crust,0.0,89.98943,0.0,07/26/7400 +-3.72308,47.86882,5145,10,6,14,2,59,4.35,5.0,fr,32418,102,1374816,1,1,Active Shallow Crust,0.0,89.99057,0.0,10/06/5145 +-3.72308,47.86882,5901,4,1,2,42,5,4.55,5.0,fr,32419,118,1374840,1,1,Active Shallow Crust,0.0,89.99037,0.0,04/01/5901 +-3.72308,47.86882,7609,8,14,8,39,12,5.05,15.0,fr,32420,152,1374901,1,1,Active Shallow Crust,0.0,89.98977,0.0,08/14/7609 +-3.72308,47.86882,5366,3,12,5,58,1,5.25,5.0,fr,32421,107,1374924,1,1,Active Shallow Crust,0.0,89.98997,0.0,03/12/5366 +3.81326,46.54402,2676,2,29,4,36,48,3.55,5.0,fr,32422,53,1375200,1,1,Active Shallow Crust,0.0,89.98959,0.0,02/29/2676 +3.81326,46.54402,2553,1,12,2,8,5,3.55,5.0,fr,32423,51,1375206,1,1,Active Shallow Crust,0.0,89.98948,-90.0,01/12/2553 +3.81326,46.54402,5284,6,29,19,14,25,3.65,5.0,fr,32424,105,1375215,1,1,Active Shallow Crust,240.0012,58.01328,0.0,06/29/5284 +3.81326,46.54402,9779,2,9,11,54,19,3.75,5.0,fr,32425,195,1375224,1,1,Active Shallow Crust,0.0,89.98898,0.0,02/09/9779 +3.81326,46.54402,2426,8,29,7,24,25,3.75,27.5,fr,32426,48,1375229,1,2,Active Shallow Crust,240.0085,58.01767,0.0,08/29/2426 +3.81326,46.54402,9252,11,9,13,41,57,3.75,27.5,fr,32427,185,1375229,1,2,Active Shallow Crust,240.0085,58.01767,0.0,11/09/9252 +3.81326,46.54402,3469,10,14,16,48,10,3.95,15.0,fr,32428,69,1375249,1,1,Active Shallow Crust,0.0,89.98906,0.0,10/14/3469 +3.81326,46.54402,9870,4,20,13,38,56,3.95,15.0,fr,32429,197,1375255,1,1,Active Shallow Crust,0.0,89.98893,-90.0,04/20/9870 +7.33433,51.28248,1861,9,2,22,39,9,3.55,15.0,fr,32430,37,1375681,1,1,Active Shallow Crust,0.0,89.98739,0.0,09/02/1861 +7.33433,51.28248,1316,4,14,16,30,39,3.75,5.0,fr,32431,26,1375704,1,1,Active Shallow Crust,0.0,89.98998,0.0,04/14/1316 +9.37854,49.39014,5091,4,23,0,48,57,3.55,5.0,fr,32432,101,1376160,1,1,Active Shallow Crust,0.0,89.98687,0.0,04/23/5091 +9.37854,49.39014,6275,12,30,3,16,55,3.75,5.0,fr,32433,125,1376184,1,1,Active Shallow Crust,0.0,89.98957,0.0,12/30/6275 +9.37854,49.39014,8722,8,29,17,25,47,3.75,15.0,fr,32434,174,1376191,1,1,Active Shallow Crust,0.0,89.98945,-90.0,08/29/8722 +9.37854,49.39014,1984,12,7,0,44,44,4.35,15.0,fr,32435,39,1376257,1,1,Active Shallow Crust,0.0,89.98955,0.0,12/07/1984 +9.37854,49.39014,6247,8,15,23,55,13,5.35,15.0,fr,32436,124,1376377,1,1,Active Shallow Crust,0.0,89.99008,0.0,08/15/6247 +-0.77566,42.95574,519,5,22,9,37,26,3.55,5.0,fr,32437,10,1376640,1,4,Active Shallow Crust,0.0,89.98985,0.0,05/22/0519 +-0.77566,42.95574,479,3,8,6,47,27,3.55,5.0,fr,32438,9,1376640,1,4,Active Shallow Crust,0.0,89.98985,0.0,03/08/0479 +-0.77566,42.95574,3515,12,19,17,30,20,3.55,5.0,fr,32439,70,1376640,1,4,Active Shallow Crust,0.0,89.98985,0.0,12/19/3515 +-0.77566,42.95574,3648,2,2,9,46,14,3.55,5.0,fr,32440,72,1376640,1,4,Active Shallow Crust,0.0,89.98985,0.0,02/02/3648 +-0.77566,42.95574,3797,9,26,5,44,26,3.55,15.0,fr,32441,75,1376641,1,2,Active Shallow Crust,0.0,89.98985,0.0,09/26/3797 +-0.77566,42.95574,2836,9,1,2,14,7,3.55,15.0,fr,32442,56,1376641,1,2,Active Shallow Crust,0.0,89.98985,0.0,09/01/2836 +-0.77566,42.95574,8032,5,28,4,6,0,3.55,27.5,fr,32443,160,1376642,1,1,Active Shallow Crust,0.0,89.98985,0.0,05/28/8032 +-0.77566,42.95574,5836,8,19,8,44,39,3.65,5.0,fr,32444,116,1376652,1,4,Active Shallow Crust,0.0,89.99014,0.0,08/19/5836 +-0.77566,42.95574,6969,7,24,2,19,47,3.65,5.0,fr,32445,139,1376652,1,4,Active Shallow Crust,0.0,89.99014,0.0,07/24/6969 +-0.77566,42.95574,1727,3,28,14,9,22,3.65,5.0,fr,32446,34,1376652,1,4,Active Shallow Crust,0.0,89.99014,0.0,03/28/1727 +-0.77566,42.95574,4284,12,8,15,4,20,3.65,5.0,fr,32447,85,1376652,1,4,Active Shallow Crust,0.0,89.99014,0.0,12/08/4284 +-0.77566,42.95574,4951,5,31,7,45,36,3.65,5.0,fr,32448,99,1376655,1,1,Active Shallow Crust,240.0007,58.01297,0.0,05/31/4951 +-0.77566,42.95574,3154,9,7,9,15,32,3.65,15.0,fr,32449,63,1376656,1,1,Active Shallow Crust,240.0007,58.01297,0.0,09/07/3154 +-0.77566,42.95574,1502,4,28,10,52,15,3.65,27.5,fr,32450,30,1376657,1,1,Active Shallow Crust,240.0007,58.01288,0.0,04/28/1502 +-0.77566,42.95574,459,3,18,17,44,47,3.65,5.0,fr,32451,9,1376661,1,1,Active Shallow Crust,128.9007,89.96352,0.0,03/18/0459 +-0.77566,42.95574,7535,7,19,3,8,37,3.75,5.0,fr,32452,150,1376664,1,3,Active Shallow Crust,0.0,89.98974,0.0,07/19/7535 +-0.77566,42.95574,7223,8,13,2,47,49,3.75,5.0,fr,32453,144,1376664,1,3,Active Shallow Crust,0.0,89.98974,0.0,08/13/7223 +-0.77566,42.95574,9079,5,16,21,30,51,3.75,5.0,fr,32454,181,1376664,1,3,Active Shallow Crust,0.0,89.98974,0.0,05/16/9079 +-0.77566,42.95574,1223,8,23,7,46,38,3.75,15.0,fr,32455,24,1376665,1,1,Active Shallow Crust,0.0,89.98974,0.0,08/23/1223 +-0.77566,42.95574,3544,5,11,22,42,22,3.75,27.5,fr,32456,70,1376666,1,1,Active Shallow Crust,0.0,89.98974,0.0,05/11/3544 +-0.77566,42.95574,633,9,24,11,2,57,3.85,15.0,fr,32457,12,1376677,1,2,Active Shallow Crust,0.0,89.9902,0.0,09/24/0633 +-0.77566,42.95574,4764,7,25,1,42,46,3.85,15.0,fr,32458,95,1376677,1,2,Active Shallow Crust,0.0,89.9902,0.0,07/25/4764 +-0.77566,42.95574,641,5,22,20,44,35,3.95,5.0,fr,32459,12,1376688,1,1,Active Shallow Crust,0.0,89.9901,0.0,05/22/0641 +-0.77566,42.95574,7062,9,10,3,0,55,3.95,5.0,fr,32460,141,1376694,1,1,Active Shallow Crust,0.0,89.98999,-90.0,09/10/7062 +-0.77566,42.95574,230,5,19,11,49,34,3.95,27.5,fr,32461,4,1376696,1,1,Active Shallow Crust,0.0,89.98999,-90.0,05/19/0230 +-0.77566,42.95574,1064,8,25,16,25,44,3.95,15.0,fr,32462,21,1376698,1,1,Active Shallow Crust,128.9006,89.99389,0.0,08/25/1064 +-0.77566,42.95574,4061,12,5,14,26,8,4.05,15.0,fr,32463,81,1376701,1,1,Active Shallow Crust,0.0,89.99014,0.0,12/05/4061 +-0.77566,42.95574,217,4,12,4,28,12,4.15,5.0,fr,32464,4,1376712,1,3,Active Shallow Crust,0.0,89.98983,0.0,04/12/0217 +-0.77566,42.95574,3332,9,4,20,45,30,4.15,5.0,fr,32465,66,1376712,1,3,Active Shallow Crust,0.0,89.98983,0.0,09/04/3332 +-0.77566,42.95574,8038,12,25,15,31,43,4.15,5.0,fr,32466,160,1376712,1,3,Active Shallow Crust,0.0,89.98983,0.0,12/25/8038 +-0.77566,42.95574,9734,6,26,20,49,46,4.15,5.0,fr,32467,194,1376718,1,1,Active Shallow Crust,0.0,89.99018,-90.0,06/26/9734 +-0.77566,42.95574,1834,6,28,18,27,38,4.25,15.0,fr,32468,36,1376725,1,1,Active Shallow Crust,0.0,89.99011,0.0,06/28/1834 +-0.77566,42.95574,8636,3,16,16,29,38,4.35,5.0,fr,32469,172,1376745,1,1,Active Shallow Crust,128.8984,89.98277,0.0,03/16/8636 +-0.77566,42.95574,3364,3,2,22,25,47,4.45,15.0,fr,32470,67,1376749,1,1,Active Shallow Crust,0.0,89.98985,0.0,03/02/3364 +-0.77566,42.95574,6244,4,26,9,21,12,4.65,27.5,fr,32471,124,1376774,1,1,Active Shallow Crust,0.0,89.99012,0.0,04/26/6244 +-0.77566,42.95574,8294,1,4,5,23,36,4.75,5.0,fr,32472,165,1376784,1,1,Active Shallow Crust,0.0,89.99004,0.0,01/04/8294 +-0.77566,42.95574,1145,6,29,19,44,24,4.85,5.0,fr,32473,22,1376802,1,1,Active Shallow Crust,0.0,89.98997,-90.0,06/29/1145 +-0.77566,42.95574,8169,1,16,4,25,8,5.25,5.0,fr,32474,163,1376844,1,1,Active Shallow Crust,0.0,89.98996,0.0,01/16/8169 +-0.77566,42.95574,6191,11,22,2,6,20,5.55,27.5,fr,32475,123,1376882,1,1,Active Shallow Crust,0.0,89.99004,0.0,11/22/6191 +-2.7799,48.90222,7759,4,11,3,44,49,3.55,5.0,fr,32476,155,1377120,1,1,Active Shallow Crust,0.0,89.99006,0.0,04/11/7759 +-2.7799,48.90222,2386,7,6,9,0,34,3.75,5.0,fr,32477,47,1377144,1,1,Active Shallow Crust,0.0,89.98947,0.0,07/06/2386 +-2.7799,48.90222,2996,12,28,2,39,52,3.75,15.0,fr,32478,59,1377145,1,1,Active Shallow Crust,0.0,89.98947,0.0,12/28/2996 +-2.7799,48.90222,1382,6,11,11,22,23,3.95,5.0,fr,32479,27,1377168,1,1,Active Shallow Crust,0.0,89.98954,0.0,06/11/1382 +-2.7799,48.90222,6893,8,10,14,1,10,4.05,5.0,fr,32480,137,1377180,1,1,Active Shallow Crust,0.0,89.99068,0.0,08/10/6893 +-2.7799,48.90222,6642,4,15,22,41,24,4.15,5.0,fr,32481,132,1377192,1,1,Active Shallow Crust,0.0,89.99004,0.0,04/15/6642 +3.52094,44.01905,2795,9,21,12,53,28,3.55,15.0,fr,32482,55,1377601,1,1,Active Shallow Crust,0.0,89.98912,0.0,09/21/2795 +3.52094,44.01905,5446,10,26,3,10,53,3.65,15.0,fr,32483,108,1377619,1,1,Active Shallow Crust,0.0,89.9902,-90.0,10/26/5446 +3.52094,44.01905,4391,8,7,21,6,59,3.75,15.0,fr,32484,87,1377628,1,1,Active Shallow Crust,240.008,58.0177,0.0,08/07/4391 +3.52094,44.01905,2892,5,21,7,53,7,3.95,5.0,fr,32485,57,1377648,1,1,Active Shallow Crust,0.0,89.99085,0.0,05/21/2892 +3.52094,44.01905,8840,6,15,7,13,51,3.95,5.0,fr,32486,176,1377654,1,1,Active Shallow Crust,0.0,89.99075,-90.0,06/15/8840 +3.52094,44.01905,171,5,22,11,12,19,4.15,15.0,fr,32487,3,1377673,1,1,Active Shallow Crust,0.0,89.9891,0.0,05/22/0171 +3.52094,44.01905,7487,6,30,21,0,29,4.35,5.0,fr,32488,149,1377696,1,1,Active Shallow Crust,0.0,89.9899,0.0,06/30/7487 +3.52094,44.01905,5094,1,30,13,40,18,4.65,5.0,fr,32489,101,1377735,1,1,Active Shallow Crust,240.0101,57.99412,0.0,01/30/5094 +3.73344,48.69866,1238,4,1,8,26,41,3.65,5.0,fr,32490,24,1378098,1,1,Active Shallow Crust,0.0,89.991,-90.0,04/01/1238 +3.73344,48.69866,9464,9,8,5,58,5,3.75,5.0,fr,32491,189,1378113,1,1,Active Shallow Crust,128.8965,89.96729,0.0,09/08/9464 +3.73344,48.69866,3503,4,30,8,2,33,4.05,5.0,fr,32492,70,1378140,1,1,Active Shallow Crust,0.0,89.99065,0.0,04/30/3503 +1.99467,45.36061,3709,2,5,21,36,38,3.55,5.0,fr,32493,74,1378560,1,1,Active Shallow Crust,0.0,89.98937,0.0,02/05/3709 +1.99467,45.36061,1972,6,21,7,26,28,3.55,5.0,fr,32494,39,1378563,1,1,Active Shallow Crust,240.0122,57.99805,0.0,06/21/1972 +1.99467,45.36061,8146,2,26,6,39,22,3.55,5.0,fr,32495,162,1378566,1,1,Active Shallow Crust,0.0,89.98925,-90.0,02/26/8146 +1.99467,45.36061,1377,3,6,7,13,33,3.65,5.0,fr,32496,27,1378572,1,1,Active Shallow Crust,0.0,89.99052,0.0,03/06/1377 +1.99467,45.36061,9338,7,22,3,49,45,3.65,5.0,fr,32497,186,1378581,1,1,Active Shallow Crust,128.9004,89.9635,0.0,07/22/9338 +1.99467,45.36061,7800,4,24,22,28,4,3.75,5.0,fr,32498,155,1378584,1,1,Active Shallow Crust,0.0,89.99015,0.0,04/24/7800 +1.99467,45.36061,3952,1,4,17,19,20,3.75,15.0,fr,32499,79,1378591,1,1,Active Shallow Crust,0.0,89.99004,-90.0,01/04/3952 +1.99467,45.36061,8874,9,15,2,36,53,4.35,5.0,fr,32500,177,1378656,1,1,Active Shallow Crust,0.0,89.99013,0.0,09/15/8874 +6.76023,42.9866,6348,6,4,18,40,48,5.05,5.0,fr,32501,126,1379706,1,1,Active Shallow Crust,0.0,89.98938,-90.0,06/04/6348 +6.76023,42.9866,7998,9,3,20,17,37,6.55,15.0,fr,32502,159,1379881,1,1,Active Shallow Crust,0.0,89.98996,0.0,09/03/7998 +-2.42067,47.17503,8552,3,25,3,21,34,3.55,5.0,fr,32503,171,1380000,1,1,Active Shallow Crust,0.0,89.98972,0.0,03/25/8552 +-2.42067,47.17503,7900,5,16,16,29,31,3.55,15.0,fr,32504,157,1380001,1,1,Active Shallow Crust,0.0,89.98972,0.0,05/16/7900 +-2.42067,47.17503,1850,9,16,10,54,35,3.65,5.0,fr,32505,36,1380012,1,1,Active Shallow Crust,0.0,89.99084,0.0,09/16/1850 +-2.42067,47.17503,6861,6,8,22,57,47,3.65,5.0,fr,32506,137,1380018,1,1,Active Shallow Crust,0.0,89.99073,-90.0,06/08/6861 +-2.42067,47.17503,494,2,21,1,11,48,3.75,5.0,fr,32507,9,1380024,1,1,Active Shallow Crust,0.0,89.98911,0.0,02/21/0494 +-2.42067,47.17503,144,1,27,7,33,8,3.95,15.0,fr,32508,2,1380049,1,1,Active Shallow Crust,0.0,89.98919,0.0,01/27/0144 +-2.42067,47.17503,4900,9,24,19,57,32,4.25,5.0,fr,32509,97,1380093,1,1,Active Shallow Crust,128.8938,89.98097,0.0,09/24/4900 +-2.42067,47.17503,6356,1,6,15,25,41,4.45,5.0,fr,32510,127,1380111,1,1,Active Shallow Crust,240.0053,57.99477,0.0,01/06/6356 +-2.42067,47.17503,2064,5,21,9,35,25,4.75,5.0,fr,32511,41,1380144,1,1,Active Shallow Crust,0.0,89.98967,0.0,05/21/2064 +-2.42067,47.17503,1770,1,13,20,35,12,4.75,15.0,fr,32512,35,1380148,1,1,Active Shallow Crust,240.0078,58.0044,0.0,01/13/1770 +-1.08891,49.29689,4294,5,9,3,59,15,3.55,27.5,fr,32513,85,1380482,1,1,Active Shallow Crust,0.0,89.99014,0.0,05/09/4294 +-1.08891,49.29689,9346,5,9,19,47,10,3.55,5.0,fr,32514,186,1380483,1,1,Active Shallow Crust,240.0127,57.99822,0.0,05/09/9346 +-1.08891,49.29689,8704,7,31,5,53,53,3.55,27.5,fr,32515,174,1380488,1,1,Active Shallow Crust,0.0,89.99002,-90.0,07/31/8704 +-1.08891,49.29689,312,7,11,14,17,46,3.65,5.0,fr,32516,6,1380492,1,2,Active Shallow Crust,0.0,89.98975,0.0,07/11/0312 +-1.08891,49.29689,9446,11,8,15,24,10,3.65,5.0,fr,32517,188,1380492,1,2,Active Shallow Crust,0.0,89.98975,0.0,11/08/9446 +-1.08891,49.29689,9974,10,28,20,4,28,3.65,5.0,fr,32518,199,1380495,1,1,Active Shallow Crust,240.0011,58.01305,0.0,10/28/9974 +-1.08891,49.29689,6048,1,13,12,26,52,4.05,5.0,fr,32519,120,1380540,1,1,Active Shallow Crust,0.0,89.98983,0.0,01/13/6048 +-1.08891,49.29689,1032,9,26,21,36,23,4.15,5.0,fr,32520,20,1380552,1,2,Active Shallow Crust,0.0,89.99011,0.0,09/26/1032 +-1.08891,49.29689,548,1,19,17,11,2,4.15,5.0,fr,32521,10,1380552,1,2,Active Shallow Crust,0.0,89.99011,0.0,01/19/0548 +-1.08891,49.29689,3835,5,29,15,38,30,4.35,5.0,fr,32522,76,1380576,1,1,Active Shallow Crust,0.0,89.99018,0.0,05/29/3835 +-1.08891,49.29689,7172,7,31,0,21,49,4.45,5.0,fr,32523,143,1380588,1,1,Active Shallow Crust,0.0,89.99008,0.0,07/31/7172 +-1.08891,49.29689,7184,12,25,14,10,27,4.65,5.0,fr,32524,143,1380612,1,1,Active Shallow Crust,0.0,89.98981,0.0,12/25/7184 +-1.08891,49.29689,8071,8,22,11,9,0,4.75,5.0,fr,32525,161,1380624,1,1,Active Shallow Crust,0.0,89.99009,0.0,08/22/8071 +-1.08891,49.29689,9062,2,25,11,35,51,5.15,5.0,fr,32526,181,1380672,1,1,Active Shallow Crust,0.0,89.9901,0.0,02/25/9062 +-1.088906,49.29689,3693,1,1,2,37,35,6.25,6.744814,fr,32527,73,1380804,1,1,Active Shallow Crust,0.0,89.99,0.0,01/01/3693 +-0.47591,42.02448,3873,4,17,23,17,28,3.65,15.0,fr,32528,77,1380979,1,1,Active Shallow Crust,0.0,89.98987,-90.0,04/17/3873 +3.613,41.08935,7723,12,6,0,56,42,3.55,5.0,fr,32529,154,1381446,1,1,Active Shallow Crust,0.0,89.98846,-90.0,12/06/7723 +3.613,41.08935,3669,4,12,7,51,35,3.55,5.0,fr,32530,73,1381449,1,1,Active Shallow Crust,128.897,89.9924,0.0,04/12/3669 +3.613,41.08935,6704,10,4,17,42,10,3.65,5.0,fr,32531,134,1381452,1,1,Active Shallow Crust,0.0,89.98984,0.0,10/04/6704 +3.613,41.08935,2367,12,21,11,43,44,3.85,15.0,fr,32532,47,1381477,1,1,Active Shallow Crust,0.0,89.98924,0.0,12/21/2367 +3.613,41.08935,9228,6,16,10,54,11,4.55,5.0,fr,32533,184,1381560,1,1,Active Shallow Crust,0.0,89.99039,0.0,06/16/9228 +0.8414,52.52509,3085,1,21,9,58,14,3.55,15.0,fr,32534,61,1381921,1,1,Active Shallow Crust,0.0,89.99003,0.0,01/21/3085 +0.8414,52.52509,7639,1,3,3,10,14,3.55,5.0,fr,32535,152,1381929,1,1,Active Shallow Crust,128.8958,89.99348,0.0,01/03/7639 +0.8414,52.52509,7580,3,25,10,15,27,3.85,15.0,fr,32536,151,1381957,1,1,Active Shallow Crust,0.0,89.99023,0.0,03/25/7580 +0.8414,52.52509,117,5,31,14,24,29,4.35,5.0,fr,32537,2,1382016,1,1,Active Shallow Crust,0.0,89.98992,0.0,05/31/0117 +0.8414,52.52509,7869,12,17,2,54,48,4.65,5.0,fr,32538,157,1382052,1,1,Active Shallow Crust,0.0,89.99006,0.0,12/17/7869 +-0.59527,50.90968,3555,6,22,16,2,15,3.75,15.0,fr,32539,71,1382425,1,1,Active Shallow Crust,0.0,89.9899,0.0,06/22/3555 +-0.59527,50.90968,9704,5,18,7,1,52,4.75,5.0,fr,32540,194,1382544,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/18/9704 +4.61895,48.19516,9549,5,18,0,26,2,3.75,5.0,fr,32541,190,1382910,1,1,Active Shallow Crust,0.0,89.9892,-90.0,05/18/9549 +4.61895,48.19516,6295,9,25,6,45,28,3.85,5.0,fr,32542,125,1382919,1,1,Active Shallow Crust,240.0115,57.99798,0.0,09/25/6295 +4.61895,48.19516,6087,2,26,18,10,55,4.15,27.5,fr,32543,121,1382954,1,1,Active Shallow Crust,0.0,89.98989,0.0,02/26/6087 +5.05808,43.70697,7361,12,18,2,5,4,3.55,5.0,fr,32544,147,1383360,1,3,Active Shallow Crust,0.0,89.99271,0.0,12/18/7361 +5.05808,43.70697,2558,12,25,8,58,51,3.55,5.0,fr,32545,51,1383360,1,3,Active Shallow Crust,0.0,89.99271,0.0,12/25/2558 +5.05808,43.70697,3658,1,28,12,27,17,3.55,5.0,fr,32546,73,1383360,1,3,Active Shallow Crust,0.0,89.99271,0.0,01/28/3658 +5.05808,43.70697,8101,6,28,7,2,52,3.55,15.0,fr,32547,162,1383361,1,3,Active Shallow Crust,0.0,89.99271,0.0,06/28/8101 +5.05808,43.70697,6825,9,8,18,43,5,3.55,15.0,fr,32548,136,1383361,1,3,Active Shallow Crust,0.0,89.99271,0.0,09/08/6825 +5.05808,43.70697,7648,7,23,11,14,32,3.55,15.0,fr,32549,152,1383361,1,3,Active Shallow Crust,0.0,89.99271,0.0,07/23/7648 +5.05808,43.70697,3226,8,8,8,5,11,3.55,15.0,fr,32550,64,1383364,1,1,Active Shallow Crust,240.011,57.99844,0.0,08/08/3226 +5.05808,43.70697,5685,5,13,5,54,46,3.55,5.0,fr,32551,113,1383366,1,1,Active Shallow Crust,0.0,89.99262,-90.0,05/13/5685 +5.05808,43.70697,5093,10,12,2,14,34,3.65,5.0,fr,32552,101,1383372,1,2,Active Shallow Crust,0.0,89.98701,0.0,10/12/5093 +5.05808,43.70697,7888,4,25,6,35,39,3.65,5.0,fr,32553,157,1383372,1,2,Active Shallow Crust,0.0,89.98701,0.0,04/25/7888 +5.05808,43.70697,2984,6,15,3,52,51,3.65,5.0,fr,32554,59,1383381,1,1,Active Shallow Crust,128.8997,89.96347,0.0,06/15/2984 +5.05808,43.70697,6827,3,10,5,16,21,3.75,5.0,fr,32555,136,1383384,1,3,Active Shallow Crust,0.0,89.98842,0.0,03/10/6827 +5.05808,43.70697,7049,1,9,1,48,53,3.75,5.0,fr,32556,140,1383384,1,3,Active Shallow Crust,0.0,89.98842,0.0,01/09/7049 +5.05808,43.70697,5732,11,3,18,29,4,3.75,5.0,fr,32557,114,1383384,1,3,Active Shallow Crust,0.0,89.98842,0.0,11/03/5732 +5.05808,43.70697,2815,4,10,15,39,51,3.75,5.0,fr,32558,56,1383390,1,1,Active Shallow Crust,0.0,89.98829,-90.0,04/10/2815 +5.05808,43.70697,5217,9,17,9,5,6,3.75,5.0,fr,32559,104,1383393,1,1,Active Shallow Crust,128.8978,89.9668,0.0,09/17/5217 +5.05808,43.70697,5547,4,15,3,48,29,3.85,5.0,fr,32560,110,1383396,1,2,Active Shallow Crust,0.0,89.98968,0.0,04/15/5547 +5.05808,43.70697,3568,1,24,13,10,23,3.85,5.0,fr,32561,71,1383396,1,2,Active Shallow Crust,0.0,89.98968,0.0,01/24/3568 +5.05808,43.70697,6168,4,29,6,36,43,3.85,15.0,fr,32562,123,1383397,1,3,Active Shallow Crust,0.0,89.98968,0.0,04/29/6168 +5.05808,43.70697,6717,7,29,1,45,13,3.85,15.0,fr,32563,134,1383397,1,3,Active Shallow Crust,0.0,89.98968,0.0,07/29/6717 +5.05808,43.70697,1307,3,10,16,52,57,3.85,15.0,fr,32564,26,1383397,1,3,Active Shallow Crust,0.0,89.98968,0.0,03/10/1307 +5.05808,43.70697,8031,10,20,15,7,49,3.85,5.0,fr,32565,160,1383405,1,1,Active Shallow Crust,128.8958,89.99226,0.0,10/20/8031 +5.05808,43.70697,3767,6,21,6,16,54,3.85,15.0,fr,32566,75,1383406,1,1,Active Shallow Crust,128.8958,89.99226,0.0,06/21/3767 +5.05808,43.70697,5505,1,14,17,0,5,3.95,5.0,fr,32567,110,1383408,1,1,Active Shallow Crust,0.0,89.9908,0.0,01/14/5505 +5.05808,43.70697,1308,11,27,14,0,41,4.05,5.0,fr,32568,26,1383420,1,1,Active Shallow Crust,0.0,89.9918,0.0,11/27/1308 +5.05808,43.70697,253,4,16,13,59,59,4.05,15.0,fr,32569,5,1383421,1,1,Active Shallow Crust,0.0,89.9918,0.0,04/16/0253 +5.05808,43.70697,8595,3,22,5,38,37,4.05,27.5,fr,32570,171,1383431,1,1,Active Shallow Crust,128.8917,89.99385,0.0,03/22/8595 +5.05808,43.70697,182,1,6,12,29,57,4.15,5.0,fr,32571,3,1383432,1,2,Active Shallow Crust,0.0,89.98904,0.0,01/06/0182 +5.05808,43.70697,5063,3,7,5,19,24,4.15,5.0,fr,32572,101,1383432,1,2,Active Shallow Crust,0.0,89.98904,0.0,03/07/5063 +5.05808,43.70697,6395,4,30,20,42,59,4.65,5.0,fr,32573,127,1383492,1,1,Active Shallow Crust,0.0,89.98972,0.0,04/30/6395 +5.05808,43.70697,6170,5,10,1,22,33,4.85,5.0,fr,32574,123,1383516,1,1,Active Shallow Crust,0.0,89.9902,0.0,05/10/6170 +5.05808,43.70697,9340,6,19,13,57,0,4.95,5.0,fr,32575,186,1383528,1,1,Active Shallow Crust,0.0,89.98981,0.0,06/19/9340 +5.05808,43.70697,5378,2,18,8,43,36,4.95,5.0,fr,32576,107,1383531,1,1,Active Shallow Crust,240.0106,58.00415,0.0,02/18/5378 +5.05808,43.70697,5259,2,28,16,52,59,5.05,5.0,fr,32577,105,1383540,1,1,Active Shallow Crust,0.0,89.98962,0.0,02/28/5259 +1.35839,50.21844,368,6,9,9,43,40,3.55,15.0,fr,32578,7,1383841,1,1,Active Shallow Crust,0.0,89.99032,0.0,06/09/0368 +1.35839,50.21844,2925,5,30,16,30,15,3.65,5.0,fr,32579,58,1383852,1,1,Active Shallow Crust,0.0,89.98994,0.0,05/30/2925 +1.35839,50.21844,6579,1,2,1,22,54,3.75,15.0,fr,32580,131,1383868,1,1,Active Shallow Crust,240.0087,58.01781,0.0,01/02/6579 +1.35839,50.21844,2325,3,9,13,4,28,3.75,27.5,fr,32581,46,1383872,1,1,Active Shallow Crust,0.0,89.98963,-90.0,03/09/2325 +1.35839,50.21844,2487,11,26,23,44,24,3.85,5.0,fr,32582,49,1383882,1,1,Active Shallow Crust,0.0,89.9896,-90.0,11/26/2487 +1.35839,50.21844,3550,5,31,20,51,38,3.95,5.0,fr,32583,70,1383888,1,1,Active Shallow Crust,0.0,89.98982,0.0,05/31/3550 +1.35839,50.21844,2332,12,4,2,54,19,4.05,5.0,fr,32584,46,1383906,1,1,Active Shallow Crust,0.0,89.98991,-90.0,12/04/2332 +1.35839,50.21844,2653,12,11,19,5,48,4.15,15.0,fr,32585,53,1383913,1,1,Active Shallow Crust,0.0,89.9903,0.0,12/11/2653 +-0.5772,42.97625,4066,2,17,3,46,24,3.55,5.0,fr,32586,81,1384320,1,3,Active Shallow Crust,0.0,89.98985,0.0,02/17/4066 +-0.5772,42.97625,3189,1,3,8,35,16,3.55,5.0,fr,32587,63,1384320,1,3,Active Shallow Crust,0.0,89.98985,0.0,01/03/3189 +-0.5772,42.97625,8670,9,26,12,16,35,3.55,5.0,fr,32588,173,1384320,1,3,Active Shallow Crust,0.0,89.98985,0.0,09/26/8670 +-0.5772,42.97625,7561,5,15,20,46,55,3.55,27.5,fr,32589,151,1384322,1,4,Active Shallow Crust,0.0,89.98985,0.0,05/15/7561 +-0.5772,42.97625,7382,2,2,19,54,5,3.55,27.5,fr,32590,147,1384322,1,4,Active Shallow Crust,0.0,89.98985,0.0,02/02/7382 +-0.5772,42.97625,8180,10,16,6,55,40,3.55,27.5,fr,32591,163,1384322,1,4,Active Shallow Crust,0.0,89.98985,0.0,10/16/8180 +-0.5772,42.97625,4905,4,4,21,46,39,3.55,27.5,fr,32592,98,1384322,1,4,Active Shallow Crust,0.0,89.98985,0.0,04/04/4905 +-0.5772,42.97625,642,3,18,12,36,23,3.55,5.0,fr,32593,12,1384323,1,3,Active Shallow Crust,240.0119,57.99812,0.0,03/18/0642 +-0.5772,42.97625,2158,7,28,17,26,40,3.55,5.0,fr,32594,43,1384323,1,3,Active Shallow Crust,240.0119,57.99812,0.0,07/28/2158 +-0.5772,42.97625,9100,1,10,19,9,29,3.55,5.0,fr,32595,181,1384323,1,3,Active Shallow Crust,240.0119,57.99812,0.0,01/10/9100 +-0.5772,42.97625,4073,10,6,18,27,8,3.55,27.5,fr,32596,81,1384325,1,1,Active Shallow Crust,240.0119,57.99802,0.0,10/06/4073 +-0.5772,42.97625,3394,12,11,21,40,39,3.55,15.0,fr,32597,67,1384327,1,1,Active Shallow Crust,0.0,89.98974,-90.0,12/11/3394 +-0.5772,42.97625,128,12,10,1,55,41,3.55,5.0,fr,32598,2,1384329,1,1,Active Shallow Crust,128.8963,89.994,0.0,12/10/0128 +-0.5772,42.97625,1184,4,1,20,1,40,3.55,15.0,fr,32599,23,1384330,1,1,Active Shallow Crust,128.8963,89.994,0.0,04/01/1184 +-0.5772,42.97625,9674,7,16,5,58,25,3.65,5.0,fr,32600,193,1384332,1,5,Active Shallow Crust,0.0,89.99014,0.0,07/16/9674 +-0.5772,42.97625,5887,11,5,0,6,40,3.65,5.0,fr,32601,117,1384332,1,5,Active Shallow Crust,0.0,89.99014,0.0,11/05/5887 +-0.5772,42.97625,2478,10,9,9,7,36,3.65,5.0,fr,32602,49,1384332,1,5,Active Shallow Crust,0.0,89.99014,0.0,10/09/2478 +-0.5772,42.97625,9643,5,31,13,35,41,3.65,5.0,fr,32603,192,1384332,1,5,Active Shallow Crust,0.0,89.99014,0.0,05/31/9643 +-0.5772,42.97625,6651,4,17,21,32,47,3.65,5.0,fr,32604,133,1384332,1,5,Active Shallow Crust,0.0,89.99014,0.0,04/17/6651 +-0.5772,42.97625,12,4,4,2,0,32,3.65,15.0,fr,32605,0,1384333,1,3,Active Shallow Crust,0.0,89.99014,0.0,04/04/0012 +-0.5772,42.97625,9707,11,2,23,30,16,3.65,15.0,fr,32606,194,1384333,1,3,Active Shallow Crust,0.0,89.99014,0.0,11/02/9707 +-0.5772,42.97625,656,12,27,11,11,27,3.65,15.0,fr,32607,13,1384333,1,3,Active Shallow Crust,0.0,89.99014,0.0,12/27/0656 +-0.5772,42.97625,7499,2,2,4,52,31,3.65,5.0,fr,32608,149,1384338,1,1,Active Shallow Crust,0.0,89.99002,-90.0,02/02/7499 +-0.5772,42.97625,5029,8,5,21,23,54,3.65,5.0,fr,32609,100,1384341,1,1,Active Shallow Crust,128.9008,89.96353,0.0,08/05/5029 +-0.5772,42.97625,5861,12,2,19,51,38,3.75,5.0,fr,32610,117,1384344,1,5,Active Shallow Crust,0.0,89.98975,0.0,12/02/5861 +-0.5772,42.97625,939,4,13,0,15,9,3.75,5.0,fr,32611,18,1384344,1,5,Active Shallow Crust,0.0,89.98975,0.0,04/13/0939 +-0.5772,42.97625,5408,2,5,3,16,29,3.75,5.0,fr,32612,108,1384344,1,5,Active Shallow Crust,0.0,89.98975,0.0,02/05/5408 +-0.5772,42.97625,713,9,1,15,45,17,3.75,5.0,fr,32613,14,1384344,1,5,Active Shallow Crust,0.0,89.98975,0.0,09/01/0713 +-0.5772,42.97625,5596,12,21,19,50,44,3.75,5.0,fr,32614,111,1384344,1,5,Active Shallow Crust,0.0,89.98975,0.0,12/21/5596 +-0.5772,42.97625,3831,10,29,3,10,19,3.75,15.0,fr,32615,76,1384345,1,2,Active Shallow Crust,0.0,89.98975,0.0,10/29/3831 +-0.5772,42.97625,5056,7,30,18,34,3,3.75,15.0,fr,32616,101,1384345,1,2,Active Shallow Crust,0.0,89.98975,0.0,07/30/5056 +-0.5772,42.97625,5824,3,15,11,24,11,3.75,5.0,fr,32617,116,1384347,1,2,Active Shallow Crust,240.0079,58.01754,0.0,03/15/5824 +-0.5772,42.97625,5727,7,31,2,35,48,3.75,5.0,fr,32618,114,1384347,1,2,Active Shallow Crust,240.0079,58.01754,0.0,07/31/5727 +-0.5772,42.97625,7322,1,19,14,51,28,3.75,15.0,fr,32619,146,1384348,1,1,Active Shallow Crust,240.0079,58.01754,0.0,01/19/7322 +-0.5772,42.97625,7452,12,14,16,3,22,3.75,27.5,fr,32620,149,1384349,1,1,Active Shallow Crust,240.0079,58.01754,0.0,12/14/7452 +-0.5772,42.97625,6264,1,12,23,12,32,3.75,5.0,fr,32621,125,1384353,1,1,Active Shallow Crust,128.8969,89.96736,0.0,01/12/6264 +-0.5772,42.97625,9500,4,2,22,36,15,3.85,5.0,fr,32622,189,1384356,1,4,Active Shallow Crust,0.0,89.9902,0.0,04/02/9500 +-0.5772,42.97625,7640,4,27,10,38,26,3.85,5.0,fr,32623,152,1384356,1,4,Active Shallow Crust,0.0,89.9902,0.0,04/27/7640 +-0.5772,42.97625,3323,4,20,15,3,52,3.85,5.0,fr,32624,66,1384356,1,4,Active Shallow Crust,0.0,89.9902,0.0,04/20/3323 +-0.5772,42.97625,3302,9,1,18,54,45,3.85,5.0,fr,32625,66,1384356,1,4,Active Shallow Crust,0.0,89.9902,0.0,09/01/3302 +-0.5772,42.97625,9724,6,3,14,44,45,3.85,15.0,fr,32626,194,1384357,1,1,Active Shallow Crust,0.0,89.9902,0.0,06/03/9724 +-0.5772,42.97625,8720,3,11,6,52,19,3.85,27.5,fr,32627,174,1384358,1,1,Active Shallow Crust,0.0,89.9902,0.0,03/11/8720 +-0.5772,42.97625,2411,6,17,8,3,13,3.85,5.0,fr,32628,48,1384359,1,1,Active Shallow Crust,240.0103,57.99775,0.0,06/17/2411 +-0.5772,42.97625,3909,2,24,10,7,38,3.85,15.0,fr,32629,78,1384360,1,1,Active Shallow Crust,240.0103,57.99775,0.0,02/24/3909 +-0.5772,42.97625,657,2,5,22,46,32,3.85,15.0,fr,32630,13,1384363,1,1,Active Shallow Crust,0.0,89.9901,-90.0,02/05/0657 +-0.5772,42.97625,2291,7,17,19,59,41,3.95,5.0,fr,32631,45,1384368,1,1,Active Shallow Crust,0.0,89.9901,0.0,07/17/2291 +-0.5772,42.97625,6989,3,18,14,55,57,3.95,15.0,fr,32632,139,1384372,1,1,Active Shallow Crust,240.0193,58.00491,0.0,03/18/6989 +-0.5772,42.97625,6470,7,25,0,8,15,4.05,5.0,fr,32633,129,1384380,1,1,Active Shallow Crust,0.0,89.99014,0.0,07/25/6470 +-0.5772,42.97625,8768,3,23,7,47,20,4.05,15.0,fr,32634,175,1384381,1,1,Active Shallow Crust,0.0,89.99014,0.0,03/23/8768 +-0.5772,42.97625,6690,12,3,18,43,27,4.15,5.0,fr,32635,133,1384392,1,2,Active Shallow Crust,0.0,89.98983,0.0,12/03/6690 +-0.5772,42.97625,8910,12,15,8,13,17,4.15,5.0,fr,32636,178,1384392,1,2,Active Shallow Crust,0.0,89.98983,0.0,12/15/8910 +-0.5772,42.97625,3702,2,16,20,3,21,4.15,15.0,fr,32637,74,1384393,1,1,Active Shallow Crust,0.0,89.98983,0.0,02/16/3702 +-0.5772,42.97625,4480,4,15,19,35,43,4.15,5.0,fr,32638,89,1384395,1,1,Active Shallow Crust,240.0078,57.99723,0.0,04/15/4480 +-0.5772,42.97625,4551,4,17,21,22,38,4.15,27.5,fr,32639,91,1384400,1,1,Active Shallow Crust,0.0,89.99018,-90.0,04/17/4551 +-0.5772,42.97625,1946,3,18,13,37,20,4.25,15.0,fr,32640,38,1384405,1,1,Active Shallow Crust,0.0,89.99011,0.0,03/18/1946 +-0.5772,42.97625,3697,9,23,10,19,28,4.35,15.0,fr,32641,73,1384417,1,2,Active Shallow Crust,0.0,89.99009,0.0,09/23/3697 +-0.5772,42.97625,6908,6,8,6,29,23,4.35,15.0,fr,32642,138,1384417,1,2,Active Shallow Crust,0.0,89.99009,0.0,06/08/6908 +-0.5772,42.97625,1787,5,21,5,30,30,4.35,5.0,fr,32643,35,1384425,1,1,Active Shallow Crust,128.8985,89.98277,0.0,05/21/1787 +-0.5772,42.97625,2920,12,29,0,49,27,4.45,27.5,fr,32644,58,1384430,1,1,Active Shallow Crust,0.0,89.98985,0.0,12/29/2920 +-0.5772,42.97625,9196,12,28,15,1,9,4.45,27.5,fr,32645,183,1384433,1,1,Active Shallow Crust,240.0044,57.99456,0.0,12/28/9196 +-0.5772,42.97625,9742,6,14,3,15,41,4.45,15.0,fr,32646,194,1384438,1,1,Active Shallow Crust,128.893,89.99362,0.0,06/14/9742 +-0.5772,42.97625,6566,11,4,16,10,40,4.55,5.0,fr,32647,131,1384440,1,2,Active Shallow Crust,0.0,89.99008,0.0,11/04/6566 +-0.5772,42.97625,5951,8,10,12,19,37,4.55,5.0,fr,32648,119,1384440,1,2,Active Shallow Crust,0.0,89.99008,0.0,08/10/5951 +-0.5772,42.97625,9292,5,20,22,44,44,4.55,15.0,fr,32649,185,1384441,1,2,Active Shallow Crust,0.0,89.99008,0.0,05/20/9292 +-0.5772,42.97625,5732,4,21,3,5,0,4.55,15.0,fr,32650,114,1384441,1,2,Active Shallow Crust,0.0,89.99008,0.0,04/21/5732 +-0.5772,42.97625,8570,7,31,12,37,54,4.65,15.0,fr,32651,171,1384453,1,1,Active Shallow Crust,0.0,89.99012,0.0,07/31/8570 +-0.5772,42.97625,5069,12,7,16,25,16,4.85,5.0,fr,32652,101,1384476,1,1,Active Shallow Crust,0.0,89.99009,0.0,12/07/5069 +-0.5772,42.97625,4074,5,30,14,21,49,4.85,5.0,fr,32653,81,1384485,1,1,Active Shallow Crust,128.8938,89.98899,0.0,05/30/4074 +-0.5772,42.97625,8233,4,29,16,57,29,4.95,5.0,fr,32654,164,1384488,1,1,Active Shallow Crust,0.0,89.99006,0.0,04/29/8233 +-0.5771945,42.97625,5269,5,23,23,48,34,6.35,7.567806,fr,32655,105,1384656,1,1,Active Shallow Crust,0.0,89.98998,0.0,05/23/5269 +-0.80946,41.7119,2976,11,20,10,14,42,3.85,15.0,fr,32656,59,1384837,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/20/2976 +-0.32242,42.72778,4673,4,1,19,4,54,3.55,5.0,fr,32657,93,1385280,1,1,Active Shallow Crust,0.0,89.98981,0.0,04/01/4673 +-0.32242,42.72778,8728,8,21,9,45,16,3.55,15.0,fr,32658,174,1385284,1,1,Active Shallow Crust,240.0119,57.99808,0.0,08/21/8728 +-0.32242,42.72778,4433,8,7,18,4,46,3.55,15.0,fr,32659,88,1385290,1,1,Active Shallow Crust,128.8965,89.99375,0.0,08/07/4433 +-0.32242,42.72778,367,1,12,1,57,37,3.75,5.0,fr,32660,7,1385304,1,1,Active Shallow Crust,0.0,89.99007,0.0,01/12/0367 +-0.32242,42.72778,9301,12,4,11,45,35,3.75,15.0,fr,32661,186,1385305,1,1,Active Shallow Crust,0.0,89.99007,0.0,12/04/9301 +-0.32242,42.72778,6390,3,7,20,38,28,3.75,5.0,fr,32662,127,1385313,1,1,Active Shallow Crust,128.897,89.96732,0.0,03/07/6390 +-0.32242,42.72778,6429,11,24,1,55,51,3.95,5.0,fr,32663,128,1385328,1,1,Active Shallow Crust,0.0,89.99007,0.0,11/24/6429 +-0.32242,42.72778,7828,4,15,2,7,34,3.95,27.5,fr,32664,156,1385330,1,1,Active Shallow Crust,0.0,89.99007,0.0,04/15/7828 +-0.32242,42.72778,2349,2,2,4,8,6,4.05,5.0,fr,32665,46,1385343,1,1,Active Shallow Crust,240.0054,58.00571,0.0,02/02/2349 +-0.32242,42.72778,2797,5,2,12,58,36,4.05,5.0,fr,32666,55,1385349,1,1,Active Shallow Crust,128.891,89.99375,0.0,05/02/2797 +-0.32242,42.72778,5157,11,5,1,27,45,4.15,15.0,fr,32667,103,1385353,1,1,Active Shallow Crust,0.0,89.99002,0.0,11/05/5157 +-0.32242,42.72778,4552,8,3,22,47,55,4.35,5.0,fr,32668,91,1385376,1,1,Active Shallow Crust,0.0,89.99004,0.0,08/03/4552 +-0.32242,42.72778,3462,12,16,13,54,55,4.45,15.0,fr,32669,69,1385389,1,1,Active Shallow Crust,0.0,89.98998,0.0,12/16/3462 +-0.32242,42.72778,1236,2,4,17,23,45,4.65,27.5,fr,32670,24,1385414,1,1,Active Shallow Crust,0.0,89.98995,0.0,02/04/1236 +-0.32242,42.72778,251,9,15,10,15,59,5.25,15.0,fr,32671,5,1385485,1,1,Active Shallow Crust,0.0,89.98999,0.0,09/15/0251 +8.65479,47.79384,5038,7,17,14,39,0,3.55,5.0,fr,32672,100,1385760,1,7,Active Shallow Crust,0.0,89.98645,0.0,07/17/5038 +8.65479,47.79384,7508,6,11,20,19,15,3.55,5.0,fr,32673,150,1385760,1,7,Active Shallow Crust,0.0,89.98645,0.0,06/11/7508 +8.65479,47.79384,9704,8,4,4,11,36,3.55,5.0,fr,32674,194,1385760,1,7,Active Shallow Crust,0.0,89.98645,0.0,08/04/9704 +8.65479,47.79384,110,2,27,2,51,46,3.55,5.0,fr,32675,2,1385760,1,7,Active Shallow Crust,0.0,89.98645,0.0,02/27/0110 +8.65479,47.79384,9890,5,4,17,54,51,3.55,5.0,fr,32676,197,1385760,1,7,Active Shallow Crust,0.0,89.98645,0.0,05/04/9890 +8.65479,47.79384,3350,4,4,7,58,53,3.55,5.0,fr,32677,66,1385760,1,7,Active Shallow Crust,0.0,89.98645,0.0,04/04/3350 +8.65479,47.79384,1020,8,19,5,11,6,3.55,5.0,fr,32678,20,1385760,1,7,Active Shallow Crust,0.0,89.98645,0.0,08/19/1020 +8.65479,47.79384,7097,1,2,12,26,36,3.55,15.0,fr,32679,141,1385761,1,2,Active Shallow Crust,0.0,89.98645,0.0,01/02/7097 +8.65479,47.79384,7890,12,16,20,33,36,3.55,15.0,fr,32680,157,1385761,1,2,Active Shallow Crust,0.0,89.98645,0.0,12/16/7890 +8.65479,47.79384,2811,3,20,18,25,40,3.55,5.0,fr,32681,56,1385763,1,1,Active Shallow Crust,240.0128,57.99804,0.0,03/20/2811 +8.65479,47.79384,5976,10,13,9,54,39,3.55,5.0,fr,32682,119,1385766,1,1,Active Shallow Crust,0.0,89.9863,-90.0,10/13/5976 +8.65479,47.79384,2392,8,8,0,40,39,3.55,15.0,fr,32683,47,1385770,1,1,Active Shallow Crust,128.8939,89.99323,0.0,08/08/2392 +8.65479,47.79384,8247,5,19,9,37,47,3.65,5.0,fr,32684,164,1385772,1,2,Active Shallow Crust,0.0,89.98792,0.0,05/19/8247 +8.65479,47.79384,9185,4,22,10,30,36,3.65,5.0,fr,32685,183,1385772,1,2,Active Shallow Crust,0.0,89.98792,0.0,04/22/9185 +8.65479,47.79384,9051,6,2,4,28,48,3.65,15.0,fr,32686,181,1385773,1,3,Active Shallow Crust,0.0,89.98792,0.0,06/02/9051 +8.65479,47.79384,5189,12,17,0,16,57,3.65,15.0,fr,32687,103,1385773,1,3,Active Shallow Crust,0.0,89.98792,0.0,12/17/5189 +8.65479,47.79384,3827,5,23,0,46,7,3.65,15.0,fr,32688,76,1385773,1,3,Active Shallow Crust,0.0,89.98792,0.0,05/23/3827 +8.65479,47.79384,4234,3,12,18,12,17,3.65,5.0,fr,32689,84,1385775,1,1,Active Shallow Crust,240.0024,58.01131,0.0,03/12/4234 +8.65479,47.79384,1916,11,14,17,54,28,3.65,27.5,fr,32690,38,1385780,1,1,Active Shallow Crust,0.0,89.98779,-90.0,11/14/1916 +8.65479,47.79384,4488,5,12,4,28,13,3.65,27.5,fr,32691,89,1385783,1,1,Active Shallow Crust,128.9028,89.96355,0.0,05/12/4488 +8.65479,47.79384,645,4,22,11,17,27,3.75,5.0,fr,32692,12,1385784,1,5,Active Shallow Crust,0.0,89.98923,0.0,04/22/0645 +8.65479,47.79384,9185,1,13,4,38,11,3.75,5.0,fr,32693,183,1385784,1,5,Active Shallow Crust,0.0,89.98923,0.0,01/13/9185 +8.65479,47.79384,7964,1,10,22,8,18,3.75,5.0,fr,32694,159,1385784,1,5,Active Shallow Crust,0.0,89.98923,0.0,01/10/7964 +8.65479,47.79384,1649,7,4,4,18,50,3.75,5.0,fr,32695,32,1385784,1,5,Active Shallow Crust,0.0,89.98923,0.0,07/04/1649 +8.65479,47.79384,6061,4,7,22,58,18,3.75,5.0,fr,32696,121,1385784,1,5,Active Shallow Crust,0.0,89.98923,0.0,04/07/6061 +8.65479,47.79384,3816,1,22,23,29,43,3.75,15.0,fr,32697,76,1385785,1,1,Active Shallow Crust,0.0,89.98923,0.0,01/22/3816 +8.65479,47.79384,1376,6,2,16,4,4,3.75,27.5,fr,32698,27,1385786,1,1,Active Shallow Crust,0.0,89.98923,0.0,06/02/1376 +8.65479,47.79384,3440,11,15,3,7,27,3.75,5.0,fr,32699,68,1385787,1,1,Active Shallow Crust,240.0074,58.01794,0.0,11/15/3440 +8.65479,47.79384,1103,12,4,16,10,28,3.75,5.0,fr,32700,22,1385790,1,1,Active Shallow Crust,0.0,89.98911,-90.0,12/04/1103 +8.65479,47.79384,8666,11,30,11,49,13,3.85,5.0,fr,32701,173,1385796,1,4,Active Shallow Crust,0.0,89.99041,0.0,11/30/8666 +8.65479,47.79384,8979,12,9,21,8,39,3.85,5.0,fr,32702,179,1385796,1,4,Active Shallow Crust,0.0,89.99041,0.0,12/09/8979 +8.65479,47.79384,7492,11,24,19,26,48,3.85,5.0,fr,32703,149,1385796,1,4,Active Shallow Crust,0.0,89.99041,0.0,11/24/7492 +8.65479,47.79384,1348,11,6,16,12,43,3.85,5.0,fr,32704,26,1385796,1,4,Active Shallow Crust,0.0,89.99041,0.0,11/06/1348 +8.65479,47.79384,615,1,29,13,40,59,3.85,15.0,fr,32705,12,1385797,1,3,Active Shallow Crust,0.0,89.99041,0.0,01/29/0615 +8.65479,47.79384,4821,8,17,22,45,23,3.85,15.0,fr,32706,96,1385797,1,3,Active Shallow Crust,0.0,89.99041,0.0,08/17/4821 +8.65479,47.79384,381,12,7,23,21,42,3.85,15.0,fr,32707,7,1385797,1,3,Active Shallow Crust,0.0,89.99041,0.0,12/07/0381 +8.65479,47.79384,7585,9,16,16,10,37,3.85,5.0,fr,32708,151,1385802,1,1,Active Shallow Crust,0.0,89.9903,-90.0,09/16/7585 +8.65479,47.79384,1202,11,17,19,18,27,3.95,5.0,fr,32709,24,1385808,1,4,Active Shallow Crust,0.0,89.99145,0.0,11/17/1202 +8.65479,47.79384,9593,3,30,13,23,31,3.95,5.0,fr,32710,191,1385808,1,4,Active Shallow Crust,0.0,89.99145,0.0,03/30/9593 +8.65479,47.79384,4591,7,8,16,53,14,3.95,5.0,fr,32711,91,1385808,1,4,Active Shallow Crust,0.0,89.99145,0.0,07/08/4591 +8.65479,47.79384,1848,5,3,21,51,57,3.95,5.0,fr,32712,36,1385808,1,4,Active Shallow Crust,0.0,89.99145,0.0,05/03/1848 +8.65479,47.79384,6910,3,25,13,48,26,3.95,27.5,fr,32713,138,1385810,1,1,Active Shallow Crust,0.0,89.99145,0.0,03/25/6910 +8.65479,47.79384,6467,5,29,14,28,0,3.95,5.0,fr,32714,129,1385811,1,1,Active Shallow Crust,240.02,58.0042,0.0,05/29/6467 +8.65479,47.79384,9241,10,21,18,24,7,4.05,5.0,fr,32715,184,1385820,1,1,Active Shallow Crust,0.0,89.99238,0.0,10/21/9241 +8.65479,47.79384,1858,7,22,4,28,37,4.05,5.0,fr,32716,37,1385823,1,2,Active Shallow Crust,240.0072,58.00566,0.0,07/22/1858 +8.65479,47.79384,4244,7,20,16,7,15,4.05,5.0,fr,32717,84,1385823,1,2,Active Shallow Crust,240.0072,58.00566,0.0,07/20/4244 +8.65479,47.79384,7618,9,6,0,12,46,4.05,15.0,fr,32718,152,1385824,1,1,Active Shallow Crust,240.0072,58.00563,0.0,09/06/7618 +8.65479,47.79384,5557,8,25,6,44,48,4.05,5.0,fr,32719,111,1385829,1,1,Active Shallow Crust,128.8915,89.99238,0.0,08/25/5557 +8.65479,47.79384,132,4,23,5,9,0,4.25,15.0,fr,32720,2,1385845,1,1,Active Shallow Crust,0.0,89.98789,0.0,04/23/0132 +8.65479,47.79384,7804,5,18,14,13,19,4.25,5.0,fr,32721,156,1385853,1,1,Active Shallow Crust,128.8929,89.981,0.0,05/18/7804 +8.65479,47.79384,5957,5,11,20,58,9,4.35,5.0,fr,32722,119,1385856,1,1,Active Shallow Crust,0.0,89.98921,0.0,05/11/5957 +8.65479,47.79384,9802,10,6,16,46,18,4.35,15.0,fr,32723,196,1385857,1,2,Active Shallow Crust,0.0,89.98921,0.0,10/06/9802 +8.65479,47.79384,7033,12,27,23,23,2,4.35,15.0,fr,32724,140,1385857,1,2,Active Shallow Crust,0.0,89.98921,0.0,12/27/7033 +8.65479,47.79384,6129,2,27,0,15,15,4.45,5.0,fr,32725,122,1385868,1,1,Active Shallow Crust,0.0,89.99039,0.0,02/27/6129 +8.65479,47.79384,3384,12,13,10,42,10,4.45,5.0,fr,32726,67,1385877,1,1,Active Shallow Crust,128.8919,89.99519,0.0,12/13/3384 +8.65479,47.79384,4727,7,29,0,10,6,4.55,5.0,fr,32727,94,1385880,1,2,Active Shallow Crust,0.0,89.99143,0.0,07/29/4727 +8.65479,47.79384,6673,7,28,9,49,41,4.55,5.0,fr,32728,133,1385880,1,2,Active Shallow Crust,0.0,89.99143,0.0,07/28/6673 +8.65479,47.79384,6319,9,9,8,50,18,4.55,5.0,fr,32729,126,1385883,1,1,Active Shallow Crust,240.0092,57.99807,0.0,09/09/6319 +8.65479,47.79384,8188,9,8,22,29,11,4.65,5.0,fr,32730,163,1385892,1,2,Active Shallow Crust,0.0,89.98854,0.0,09/08/8188 +8.65479,47.79384,8340,4,13,4,51,32,4.65,5.0,fr,32731,166,1385892,1,2,Active Shallow Crust,0.0,89.98854,0.0,04/13/8340 +8.65479,47.79384,4909,5,27,20,1,1,4.65,27.5,fr,32732,98,1385903,1,1,Active Shallow Crust,128.8914,89.98631,0.0,05/27/4909 +8.65479,47.79384,9512,7,29,13,33,6,4.75,15.0,fr,32733,190,1385908,1,1,Active Shallow Crust,240.0085,58.00457,0.0,07/29/9512 +8.65479,47.79384,8673,10,14,23,39,46,4.75,5.0,fr,32734,173,1385913,1,1,Active Shallow Crust,128.8876,89.98866,0.0,10/14/8673 +8.65479,47.79384,7042,7,1,2,42,13,4.95,15.0,fr,32735,140,1385929,1,1,Active Shallow Crust,0.0,89.98918,0.0,07/01/7042 +8.65479,47.79384,9351,11,5,16,14,47,4.95,27.5,fr,32736,187,1385930,1,1,Active Shallow Crust,0.0,89.98918,0.0,11/05/9351 +8.65479,47.79384,6388,10,6,20,35,36,4.95,5.0,fr,32737,127,1385937,1,1,Active Shallow Crust,128.889,89.9903,0.0,10/06/6388 +8.65479,47.79384,6284,11,9,20,12,9,5.05,15.0,fr,32738,125,1385941,1,1,Active Shallow Crust,0.0,89.99036,0.0,11/09/6284 +8.65479,47.79384,792,8,20,11,4,25,5.35,5.0,fr,32739,15,1385976,1,1,Active Shallow Crust,0.0,89.98976,0.0,08/20/0792 +8.65479,47.79384,5607,8,13,6,34,25,5.35,5.0,fr,32740,112,1385979,1,1,Active Shallow Crust,240.0257,57.99803,0.0,08/13/5607 +8.65479,47.79384,708,2,1,11,48,39,5.35,15.0,fr,32741,14,1385980,1,1,Active Shallow Crust,240.0257,57.99803,0.0,02/01/0708 +8.65481,47.79384,2563,12,30,23,42,53,6.85,13.45767,fr,32742,51,1386156,1,1,Active Shallow Crust,0.0,89.98997,0.0,12/30/2563 +4.733,52.40712,1816,9,22,22,58,13,3.55,5.0,fr,32743,36,1386240,1,1,Active Shallow Crust,0.0,89.98769,0.0,09/22/1816 +3.85988,46.29257,1411,11,25,6,58,38,3.55,5.0,fr,32744,28,1386720,1,1,Active Shallow Crust,0.0,89.98955,0.0,11/25/1411 +3.85988,46.29257,6637,4,6,12,29,23,3.55,15.0,fr,32745,132,1386721,1,1,Active Shallow Crust,0.0,89.98955,0.0,04/06/6637 +3.85988,46.29257,9122,1,7,13,20,59,4.05,5.0,fr,32746,182,1386786,1,1,Active Shallow Crust,0.0,89.99009,-90.0,01/07/9122 +3.85988,46.29257,4592,1,10,16,7,31,4.45,15.0,fr,32747,91,1386829,1,1,Active Shallow Crust,0.0,89.99011,0.0,01/10/4592 +3.85988,46.29257,8534,5,4,15,6,39,4.55,15.0,fr,32748,170,1386841,1,1,Active Shallow Crust,0.0,89.99008,0.0,05/04/8534 +3.82344,45.89837,1945,7,29,7,58,49,3.55,15.0,fr,32749,38,1387201,1,1,Active Shallow Crust,0.0,89.98947,0.0,07/29/1945 +3.82344,45.89837,2010,5,18,8,11,57,3.55,15.0,fr,32750,40,1387204,1,1,Active Shallow Crust,240.0126,57.99814,0.0,05/18/2010 +3.82344,45.89837,6256,3,29,17,48,11,3.65,5.0,fr,32751,125,1387212,1,1,Active Shallow Crust,0.0,89.99062,0.0,03/29/6256 +3.82344,45.89837,5771,11,16,3,14,26,3.65,5.0,fr,32752,115,1387215,1,1,Active Shallow Crust,240.0007,58.01272,0.0,11/16/5771 +3.82344,45.89837,7316,7,19,7,18,5,3.75,5.0,fr,32753,146,1387224,1,1,Active Shallow Crust,0.0,89.98885,0.0,07/19/7316 +3.82344,45.89837,7961,1,11,23,38,27,3.75,27.5,fr,32754,159,1387226,1,1,Active Shallow Crust,0.0,89.98885,0.0,01/11/7961 +3.82344,45.89837,6518,11,17,18,0,22,3.75,5.0,fr,32755,130,1387230,1,1,Active Shallow Crust,0.0,89.98872,-90.0,11/17/6518 +3.82344,45.89837,5996,1,2,16,29,33,3.85,5.0,fr,32756,119,1387236,1,1,Active Shallow Crust,0.0,89.99007,0.0,01/02/5996 +3.82344,45.89837,1944,12,7,22,41,29,3.95,5.0,fr,32757,38,1387251,1,1,Active Shallow Crust,240.0198,58.0048,0.0,12/07/1944 +3.82344,45.89837,8609,2,9,0,16,34,4.05,5.0,fr,32758,172,1387260,1,1,Active Shallow Crust,0.0,89.99014,0.0,02/09/8609 +3.82344,45.89837,6653,1,25,6,44,48,4.05,15.0,fr,32759,133,1387270,1,1,Active Shallow Crust,128.8908,89.9931,0.0,01/25/6653 +3.82344,45.89837,8329,9,25,23,54,16,4.25,15.0,fr,32760,166,1387285,1,1,Active Shallow Crust,0.0,89.99059,0.0,09/25/8329 +3.82344,45.89837,8256,4,27,18,23,59,4.55,5.0,fr,32761,165,1387329,1,1,Active Shallow Crust,128.8941,89.98586,0.0,04/27/8256 +1.6273,48.92194,9276,7,31,9,36,47,3.55,5.0,fr,32762,185,1387680,1,1,Active Shallow Crust,0.0,89.99006,0.0,07/31/9276 +3.74807,42.72331,154,5,14,13,28,39,3.85,5.0,fr,32763,3,1388196,1,2,Active Shallow Crust,0.0,89.98951,0.0,05/14/0154 +3.74807,42.72331,1063,7,17,1,40,24,3.85,5.0,fr,32764,21,1388196,1,2,Active Shallow Crust,0.0,89.98951,0.0,07/17/1063 +3.74807,42.72331,4562,7,15,19,55,59,4.65,5.0,fr,32765,91,1388292,1,1,Active Shallow Crust,0.0,89.98956,0.0,07/15/4562 +8.35248,50.03726,3056,1,7,16,26,37,3.55,5.0,fr,32766,61,1388640,1,3,Active Shallow Crust,0.0,89.98705,0.0,01/07/3056 +8.35248,50.03726,8679,1,30,1,42,27,3.55,5.0,fr,32767,173,1388640,1,3,Active Shallow Crust,0.0,89.98705,0.0,01/30/8679 +8.35248,50.03726,2914,11,7,8,27,30,3.55,5.0,fr,32768,58,1388640,1,3,Active Shallow Crust,0.0,89.98705,0.0,11/07/2914 +8.35248,50.03726,3671,3,14,14,10,22,3.55,15.0,fr,32769,73,1388641,1,1,Active Shallow Crust,0.0,89.98705,0.0,03/14/3671 +8.35248,50.03726,4954,10,31,23,39,58,3.55,5.0,fr,32770,99,1388643,1,1,Active Shallow Crust,240.0145,57.99796,0.0,10/31/4954 +8.35248,50.03726,3341,2,9,13,4,2,3.55,5.0,fr,32771,66,1388649,1,2,Active Shallow Crust,128.8956,89.99352,0.0,02/09/3341 +8.35248,50.03726,6724,7,9,16,45,58,3.55,5.0,fr,32772,134,1388649,1,2,Active Shallow Crust,128.8956,89.99352,0.0,07/09/6724 +8.35248,50.03726,6831,3,17,9,18,15,3.65,5.0,fr,32773,136,1388652,1,5,Active Shallow Crust,0.0,89.98846,0.0,03/17/6831 +8.35248,50.03726,3070,7,26,5,41,49,3.65,5.0,fr,32774,61,1388652,1,5,Active Shallow Crust,0.0,89.98846,0.0,07/26/3070 +8.35248,50.03726,51,9,21,0,55,35,3.65,5.0,fr,32775,1,1388652,1,5,Active Shallow Crust,0.0,89.98846,0.0,09/21/0051 +8.35248,50.03726,2556,12,2,22,55,51,3.65,5.0,fr,32776,51,1388652,1,5,Active Shallow Crust,0.0,89.98846,0.0,12/02/2556 +8.35248,50.03726,4884,11,12,9,49,7,3.65,5.0,fr,32777,97,1388652,1,5,Active Shallow Crust,0.0,89.98846,0.0,11/12/4884 +8.35248,50.03726,6182,1,22,4,46,17,3.65,5.0,fr,32778,123,1388658,1,1,Active Shallow Crust,0.0,89.98832,-90.0,01/22/6182 +8.35248,50.03726,6096,3,16,7,27,26,3.65,5.0,fr,32779,121,1388661,1,1,Active Shallow Crust,128.9001,89.96359,0.0,03/16/6096 +8.35248,50.03726,8646,11,2,13,57,13,3.75,5.0,fr,32780,172,1388670,1,1,Active Shallow Crust,0.0,89.98959,-90.0,11/02/8646 +8.35248,50.03726,6586,6,15,5,49,9,3.85,5.0,fr,32781,131,1388676,1,1,Active Shallow Crust,0.0,89.99083,0.0,06/15/6586 +8.35248,50.03726,2492,9,6,0,54,7,3.85,15.0,fr,32782,49,1388677,1,1,Active Shallow Crust,0.0,89.99083,0.0,09/06/2492 +8.35248,50.03726,8952,5,23,12,44,3,3.95,5.0,fr,32783,179,1388688,1,2,Active Shallow Crust,0.0,89.99183,0.0,05/23/8952 +8.35248,50.03726,3072,3,30,11,59,1,3.95,5.0,fr,32784,61,1388688,1,2,Active Shallow Crust,0.0,89.99183,0.0,03/30/3072 +8.35248,50.03726,5634,8,22,6,27,50,3.95,15.0,fr,32785,112,1388689,1,1,Active Shallow Crust,0.0,89.99183,0.0,08/22/5634 +8.35248,50.03726,4927,12,28,12,6,46,4.05,5.0,fr,32786,98,1388700,1,1,Active Shallow Crust,0.0,89.99271,0.0,12/28/4927 +8.35248,50.03726,61,5,11,21,48,27,4.05,15.0,fr,32787,1,1388701,1,1,Active Shallow Crust,0.0,89.99271,0.0,05/11/0061 +8.35248,50.03726,6744,6,29,13,40,8,4.05,15.0,fr,32788,134,1388704,1,1,Active Shallow Crust,240.0068,58.00581,0.0,06/29/6744 +8.35248,50.03726,8715,2,17,2,35,34,4.15,15.0,fr,32789,174,1388713,1,1,Active Shallow Crust,0.0,89.98701,0.0,02/17/8715 +8.35248,50.03726,4087,4,4,23,56,55,4.25,5.0,fr,32790,81,1388724,1,2,Active Shallow Crust,0.0,89.98843,0.0,04/04/4087 +8.35248,50.03726,4739,1,19,2,26,19,4.25,5.0,fr,32791,94,1388724,1,2,Active Shallow Crust,0.0,89.98843,0.0,01/19/4739 +8.35248,50.03726,9601,4,5,14,21,50,4.35,5.0,fr,32792,192,1388736,1,1,Active Shallow Crust,0.0,89.98969,0.0,04/05/9601 +8.35248,50.03726,6197,1,23,12,10,46,4.35,5.0,fr,32793,123,1388739,1,1,Active Shallow Crust,240.0092,57.99622,0.0,01/23/6197 +8.35248,50.03726,7649,4,12,7,46,45,4.55,5.0,fr,32794,152,1388760,1,2,Active Shallow Crust,0.0,89.99181,0.0,04/12/7649 +8.35248,50.03726,3402,2,19,13,53,25,4.55,5.0,fr,32795,68,1388760,1,2,Active Shallow Crust,0.0,89.99181,0.0,02/19/3402 +8.35248,50.03726,5366,6,1,20,9,52,4.75,5.0,fr,32796,107,1388784,1,1,Active Shallow Crust,0.0,89.99023,0.0,06/01/5366 +8.35248,50.03726,5041,6,27,2,39,37,4.75,5.0,fr,32797,100,1388787,1,1,Active Shallow Crust,240.0089,58.00452,0.0,06/27/5041 +8.35248,50.03726,6473,8,11,7,23,40,4.85,15.0,fr,32798,129,1388800,1,1,Active Shallow Crust,240.0186,58.00247,0.0,08/11/6473 +8.35248,50.03726,4005,9,25,13,58,33,4.95,15.0,fr,32799,80,1388818,1,1,Active Shallow Crust,128.8879,89.98968,0.0,09/25/4005 +8.35248,50.03726,2617,8,22,17,36,39,5.45,5.0,fr,32800,52,1388868,1,1,Active Shallow Crust,0.0,89.98982,0.0,08/22/2617 +1.22518,49.29705,870,1,6,11,23,29,3.55,5.0,fr,32801,17,1389120,1,1,Active Shallow Crust,0.0,89.99014,0.0,01/06/0870 +1.22518,49.29705,4763,3,4,10,53,54,3.65,5.0,fr,32802,95,1389135,1,1,Active Shallow Crust,240.0013,58.01276,0.0,03/04/4763 +1.22518,49.29705,9212,6,27,9,32,55,3.75,5.0,fr,32803,184,1389144,1,1,Active Shallow Crust,0.0,89.98956,0.0,06/27/9212 +1.22518,49.29705,9046,1,17,0,12,46,4.25,15.0,fr,32804,180,1389214,1,1,Active Shallow Crust,128.8937,89.98093,0.0,01/17/9046 +1.22518,49.29705,6658,8,12,7,36,59,4.45,15.0,fr,32805,133,1389229,1,2,Active Shallow Crust,0.0,89.99008,0.0,08/12/6658 +1.22518,49.29705,6826,6,25,23,6,1,4.45,15.0,fr,32806,136,1389229,1,2,Active Shallow Crust,0.0,89.99008,0.0,06/25/6826 +1.22518,49.29705,4751,1,10,3,19,21,5.15,5.0,fr,32807,95,1389312,1,1,Active Shallow Crust,0.0,89.9901,0.0,01/10/4751 +4.1807,48.13268,9844,10,23,22,25,22,3.65,5.0,fr,32808,196,1389612,1,1,Active Shallow Crust,0.0,89.98801,0.0,10/23/9844 +4.1807,48.13268,8250,2,28,18,41,50,3.85,5.0,fr,32809,164,1389639,1,1,Active Shallow Crust,240.0107,57.99821,0.0,02/28/8250 +4.1807,48.13268,8868,6,26,8,23,11,3.95,5.0,fr,32810,177,1389648,1,1,Active Shallow Crust,0.0,89.99151,0.0,06/26/8868 +-1.61857,48.32339,2587,10,14,0,55,11,3.55,5.0,fr,32811,51,1390080,1,1,Active Shallow Crust,0.0,89.98994,0.0,10/14/2587 +-1.61857,48.32339,1628,8,7,23,28,55,3.65,15.0,fr,32812,32,1390093,1,1,Active Shallow Crust,0.0,89.98954,0.0,08/07/1628 +-1.61857,48.32339,915,5,27,22,25,4,3.75,15.0,fr,32813,18,1390105,1,1,Active Shallow Crust,0.0,89.98935,0.0,05/27/0915 +-1.61857,48.32339,5288,1,23,23,55,25,3.75,27.5,fr,32814,105,1390106,1,1,Active Shallow Crust,0.0,89.98935,0.0,01/23/5288 +-1.61857,48.32339,2916,10,23,12,31,47,3.85,5.0,fr,32815,58,1390116,1,1,Active Shallow Crust,0.0,89.99051,0.0,10/23/2916 +-1.61857,48.32339,8591,2,24,20,39,51,3.85,15.0,fr,32816,171,1390117,1,1,Active Shallow Crust,0.0,89.99051,0.0,02/24/8591 +-1.61857,48.32339,7592,4,11,11,55,53,3.95,15.0,fr,32817,151,1390129,1,1,Active Shallow Crust,0.0,89.99048,0.0,04/11/7592 +-1.61857,48.32339,4406,4,24,23,39,21,4.05,5.0,fr,32818,88,1390140,1,1,Active Shallow Crust,0.0,89.98963,0.0,04/24/4406 +-1.61857,48.32339,9573,7,3,6,50,40,4.15,27.5,fr,32819,191,1390154,1,1,Active Shallow Crust,0.0,89.98992,0.0,07/03/9573 +-1.61857,48.32339,768,2,8,22,16,45,4.25,5.0,fr,32820,15,1390164,1,3,Active Shallow Crust,0.0,89.99026,0.0,02/08/0768 +-1.61857,48.32339,287,7,20,20,57,29,4.25,5.0,fr,32821,5,1390164,1,3,Active Shallow Crust,0.0,89.99026,0.0,07/20/0287 +-1.61857,48.32339,5768,7,23,6,32,22,4.25,5.0,fr,32822,115,1390164,1,3,Active Shallow Crust,0.0,89.99026,0.0,07/23/5768 +-1.61857,48.32339,9225,7,5,12,55,15,4.35,5.0,fr,32823,184,1390176,1,1,Active Shallow Crust,0.0,89.98999,0.0,07/05/9225 +-1.61857,48.32339,5064,3,28,12,34,43,4.35,15.0,fr,32824,101,1390177,1,1,Active Shallow Crust,0.0,89.98999,0.0,03/28/5064 +-1.61857,48.32339,341,6,4,16,38,7,4.35,5.0,fr,32825,6,1390182,1,1,Active Shallow Crust,0.0,89.98988,-90.0,06/04/0341 +-1.61857,48.32339,5962,12,13,23,41,40,4.45,5.0,fr,32826,119,1390191,1,1,Active Shallow Crust,240.0059,57.99467,0.0,12/13/5962 +-1.61857,48.32339,3025,6,4,14,30,37,4.65,27.5,fr,32827,60,1390214,1,1,Active Shallow Crust,0.0,89.99007,0.0,06/04/3025 +-1.61857,48.32339,9599,4,6,3,46,12,4.75,15.0,fr,32828,191,1390225,1,1,Active Shallow Crust,0.0,89.98989,0.0,04/06/9599 +-1.61857,48.32339,1251,1,2,20,19,31,5.15,5.0,fr,32829,25,1390272,1,1,Active Shallow Crust,0.0,89.9899,0.0,01/02/1251 +-0.14658,50.93281,9844,9,29,6,42,33,3.65,5.0,fr,32830,196,1390572,1,1,Active Shallow Crust,359.9999,89.99009,0.0,09/29/9844 +-0.14658,50.93281,3755,2,5,5,42,52,3.75,5.0,fr,32831,75,1390584,1,1,Active Shallow Crust,0.0,89.99006,0.0,02/05/3755 +-0.14658,50.93281,417,9,15,5,15,46,3.85,5.0,fr,32832,8,1390596,1,1,Active Shallow Crust,0.0,89.99002,0.0,09/15/0417 +-0.14658,50.93281,1664,8,8,10,5,15,4.25,5.0,fr,32833,33,1390644,1,1,Active Shallow Crust,0.0,89.98997,0.0,08/08/1664 +5.10054,44.77113,1362,1,2,6,11,56,3.55,5.0,fr,32834,27,1391040,1,1,Active Shallow Crust,0.0,89.99284,0.0,01/02/1362 +5.10054,44.77113,3497,11,21,8,38,43,3.55,27.5,fr,32835,69,1391042,1,1,Active Shallow Crust,0.0,89.99284,0.0,11/21/3497 +5.10054,44.77113,6692,7,23,1,16,16,3.55,27.5,fr,32836,133,1391051,1,1,Active Shallow Crust,128.8963,89.99284,0.0,07/23/6692 +5.10054,44.77113,7410,10,5,20,0,21,3.65,5.0,fr,32837,148,1391052,1,2,Active Shallow Crust,0.0,89.98724,0.0,10/05/7410 +5.10054,44.77113,3296,3,26,6,7,40,3.65,5.0,fr,32838,65,1391052,1,2,Active Shallow Crust,0.0,89.98724,0.0,03/26/3296 +5.10054,44.77113,7526,10,9,0,6,50,3.65,15.0,fr,32839,150,1391053,1,1,Active Shallow Crust,0.0,89.98724,0.0,10/09/7526 +5.10054,44.77113,633,10,25,6,50,21,3.65,27.5,fr,32840,12,1391054,1,1,Active Shallow Crust,0.0,89.98724,0.0,10/25/0633 +5.10054,44.77113,4381,9,8,8,58,28,3.65,5.0,fr,32841,87,1391055,1,1,Active Shallow Crust,240.0017,58.01247,0.0,09/08/4381 +5.10054,44.77113,6080,5,14,15,9,23,3.75,15.0,fr,32842,121,1391065,1,1,Active Shallow Crust,0.0,89.98862,0.0,05/14/6080 +5.10054,44.77113,2111,11,16,22,23,23,3.85,5.0,fr,32843,42,1391076,1,1,Active Shallow Crust,0.0,89.98986,0.0,11/16/2111 +5.10054,44.77113,5664,3,25,12,25,34,3.85,15.0,fr,32844,113,1391077,1,1,Active Shallow Crust,0.0,89.98986,0.0,03/25/5664 +5.10054,44.77113,8639,8,2,5,2,27,3.85,5.0,fr,32845,172,1391079,1,1,Active Shallow Crust,240.0108,57.99752,0.0,08/02/8639 +5.10054,44.77113,5555,12,3,13,33,33,3.95,5.0,fr,32846,111,1391088,1,1,Active Shallow Crust,0.0,89.99097,0.0,12/03/5555 +5.10054,44.77113,1534,3,4,13,59,48,3.95,15.0,fr,32847,30,1391095,1,1,Active Shallow Crust,0.0,89.99086,-90.0,03/04/1534 +5.10054,44.77113,7053,7,15,16,33,41,4.05,5.0,fr,32848,141,1391100,1,1,Active Shallow Crust,0.0,89.99195,0.0,07/15/7053 +5.10054,44.77113,2926,7,5,21,22,50,4.25,5.0,fr,32849,58,1391124,1,1,Active Shallow Crust,0.0,89.99041,0.0,07/05/2926 +5.10054,44.77113,2916,7,15,19,34,2,4.35,15.0,fr,32850,58,1391137,1,1,Active Shallow Crust,0.0,89.9886,0.0,07/15/2916 +5.10054,44.77113,3475,12,26,3,14,21,4.45,5.0,fr,32851,69,1391148,1,1,Active Shallow Crust,0.0,89.98984,0.0,12/26/3475 +5.10054,44.77113,4492,1,28,1,0,35,4.85,15.0,fr,32852,89,1391206,1,1,Active Shallow Crust,128.8931,89.98937,0.0,01/28/4492 +5.10054,44.77113,6167,11,18,23,53,51,4.95,15.0,fr,32853,123,1391209,1,1,Active Shallow Crust,0.0,89.99,0.0,11/18/6167 +5.10054,44.77113,1949,5,13,15,8,10,5.45,5.0,fr,32854,38,1391268,1,1,Active Shallow Crust,0.0,89.99036,0.0,05/13/1949 +3.3948,44.13219,3559,12,11,0,51,45,3.65,5.0,fr,32855,71,1391535,1,1,Active Shallow Crust,240.0013,58.01276,0.0,12/11/3559 +3.3948,44.13219,9143,11,10,11,8,13,3.75,5.0,fr,32856,182,1391547,1,1,Active Shallow Crust,240.0081,58.01781,0.0,11/10/9143 +3.3948,44.13219,4143,1,4,6,31,33,3.85,5.0,fr,32857,82,1391562,1,2,Active Shallow Crust,0.0,89.98963,-90.0,01/04/4143 +3.3948,44.13219,7845,7,30,15,47,54,3.85,5.0,fr,32858,156,1391562,1,2,Active Shallow Crust,0.0,89.98963,-90.0,07/30/7845 +3.3948,44.13219,5126,8,20,22,48,1,4.05,5.0,fr,32859,102,1391580,1,3,Active Shallow Crust,0.0,89.98982,0.0,08/20/5126 +3.3948,44.13219,4423,7,5,22,18,52,4.05,5.0,fr,32860,88,1391580,1,3,Active Shallow Crust,0.0,89.98982,0.0,07/05/4423 +3.3948,44.13219,5363,1,31,3,26,48,4.05,5.0,fr,32861,107,1391580,1,3,Active Shallow Crust,0.0,89.98982,0.0,01/31/5363 +3.3948,44.13219,9222,3,22,5,55,27,4.05,5.0,fr,32862,184,1391586,1,1,Active Shallow Crust,0.0,89.98971,-90.0,03/22/9222 +3.3948,44.13219,9716,10,1,11,26,13,4.15,5.0,fr,32863,194,1391592,1,1,Active Shallow Crust,0.0,89.98912,0.0,10/01/9716 +3.3948,44.13219,8393,3,13,15,10,35,4.85,5.0,fr,32864,167,1391685,1,1,Active Shallow Crust,128.8932,89.98912,0.0,03/13/8393 +-1.39473,45.22523,3931,7,14,12,39,37,3.55,5.0,fr,32865,78,1392003,1,1,Active Shallow Crust,240.012,57.9981,0.0,07/14/3931 +7.13918,51.01495,5862,4,22,11,26,40,3.55,5.0,fr,32866,117,1392480,1,1,Active Shallow Crust,0.0,89.98731,0.0,04/22/5862 +7.13918,51.01495,5908,12,16,8,21,44,3.55,5.0,fr,32867,118,1392486,1,1,Active Shallow Crust,0.0,89.98717,-90.0,12/16/5908 +7.13918,51.01495,5154,3,13,3,13,54,3.55,5.0,fr,32868,103,1392489,1,2,Active Shallow Crust,128.8961,89.99366,0.0,03/13/5154 +7.13918,51.01495,3451,6,15,1,21,17,3.55,5.0,fr,32869,69,1392489,1,2,Active Shallow Crust,128.8961,89.99366,0.0,06/15/3451 +7.13918,51.01495,9933,12,9,1,5,57,3.85,15.0,fr,32870,198,1392526,1,1,Active Shallow Crust,128.8947,89.99326,0.0,12/09/9933 +7.13918,51.01495,4680,10,3,1,25,53,3.95,5.0,fr,32871,93,1392528,1,1,Active Shallow Crust,0.0,89.992,0.0,10/03/4680 +7.13918,51.01495,3756,6,2,14,53,41,3.95,15.0,fr,32872,75,1392529,1,1,Active Shallow Crust,0.0,89.992,0.0,06/02/3756 +7.13918,51.01495,8934,10,12,0,43,43,4.15,5.0,fr,32873,178,1392552,1,2,Active Shallow Crust,0.0,89.99046,0.0,10/12/8934 +7.13918,51.01495,5895,5,24,22,2,57,4.15,5.0,fr,32874,117,1392552,1,2,Active Shallow Crust,0.0,89.99046,0.0,05/24/5895 +7.13918,51.01495,6839,12,18,5,1,35,4.15,5.0,fr,32875,136,1392558,1,1,Active Shallow Crust,0.0,89.99035,-90.0,12/18/6839 +7.13918,51.01495,2929,6,24,4,52,29,4.35,5.0,fr,32876,58,1392576,1,1,Active Shallow Crust,0.0,89.9899,0.0,06/24/2929 +7.13918,51.01495,6137,3,26,18,37,24,5.25,5.0,fr,32877,122,1392693,1,1,Active Shallow Crust,128.885,89.98699,0.0,03/26/6137 +7.17917,46.21061,4073,10,4,10,34,42,3.55,5.0,fr,32878,81,1392960,1,2,Active Shallow Crust,0.0,89.99302,0.0,10/04/4073 +7.17917,46.21061,2435,5,25,18,23,30,3.55,5.0,fr,32879,48,1392960,1,2,Active Shallow Crust,0.0,89.99302,0.0,05/25/2435 +7.17917,46.21061,5330,9,20,11,22,39,3.55,15.0,fr,32880,106,1392961,1,4,Active Shallow Crust,0.0,89.99302,0.0,09/20/5330 +7.17917,46.21061,4678,4,15,0,11,21,3.55,15.0,fr,32881,93,1392961,1,4,Active Shallow Crust,0.0,89.99302,0.0,04/15/4678 +7.17917,46.21061,1747,11,1,12,3,35,3.55,15.0,fr,32882,34,1392961,1,4,Active Shallow Crust,0.0,89.99302,0.0,11/01/1747 +7.17917,46.21061,1358,2,8,14,29,24,3.55,15.0,fr,32883,27,1392961,1,4,Active Shallow Crust,0.0,89.99302,0.0,02/08/1358 +7.17917,46.21061,8692,5,17,0,11,20,3.55,27.5,fr,32884,173,1392962,1,2,Active Shallow Crust,0.0,89.99302,0.0,05/17/8692 +7.17917,46.21061,7035,3,5,12,30,38,3.55,27.5,fr,32885,140,1392962,1,2,Active Shallow Crust,0.0,89.99302,0.0,03/05/7035 +7.17917,46.21061,9483,12,7,9,58,21,3.55,5.0,fr,32886,189,1392963,1,1,Active Shallow Crust,240.0124,57.99819,0.0,12/07/9483 +7.17917,46.21061,8850,3,3,13,13,13,3.55,15.0,fr,32887,176,1392964,1,1,Active Shallow Crust,240.0124,57.99819,0.0,03/03/8850 +7.17917,46.21061,6497,4,6,7,31,28,3.55,5.0,fr,32888,129,1392966,1,2,Active Shallow Crust,0.0,89.99294,-90.0,04/06/6497 +7.17917,46.21061,432,12,13,21,48,41,3.55,5.0,fr,32889,8,1392966,1,2,Active Shallow Crust,0.0,89.99294,-90.0,12/13/0432 +7.17917,46.21061,682,4,16,13,55,8,3.55,15.0,fr,32890,13,1392970,1,1,Active Shallow Crust,128.8952,89.99651,0.0,04/16/0682 +7.17917,46.21061,3562,5,27,4,45,20,3.65,5.0,fr,32891,71,1392972,1,5,Active Shallow Crust,0.0,89.98756,0.0,05/27/3562 +7.17917,46.21061,2082,7,17,19,30,21,3.65,5.0,fr,32892,41,1392972,1,5,Active Shallow Crust,0.0,89.98756,0.0,07/17/2082 +7.17917,46.21061,5460,4,6,23,0,10,3.65,5.0,fr,32893,109,1392972,1,5,Active Shallow Crust,0.0,89.98756,0.0,04/06/5460 +7.17917,46.21061,1454,11,30,14,36,14,3.65,5.0,fr,32894,29,1392972,1,5,Active Shallow Crust,0.0,89.98756,0.0,11/30/1454 +7.17917,46.21061,3216,7,5,11,20,56,3.65,5.0,fr,32895,64,1392972,1,5,Active Shallow Crust,0.0,89.98756,0.0,07/05/3216 +7.17917,46.21061,8517,9,18,15,44,13,3.65,15.0,fr,32896,170,1392973,1,4,Active Shallow Crust,0.0,89.98756,0.0,09/18/8517 +7.17917,46.21061,5209,3,4,0,42,16,3.65,15.0,fr,32897,104,1392973,1,4,Active Shallow Crust,0.0,89.98756,0.0,03/04/5209 +7.17917,46.21061,7489,5,12,17,6,43,3.65,15.0,fr,32898,149,1392973,1,4,Active Shallow Crust,0.0,89.98756,0.0,05/12/7489 +7.17917,46.21061,6662,4,28,3,15,24,3.65,15.0,fr,32899,133,1392973,1,4,Active Shallow Crust,0.0,89.98756,0.0,04/28/6662 +7.17917,46.21061,902,9,16,5,17,23,3.65,27.5,fr,32900,18,1392974,1,2,Active Shallow Crust,0.0,89.98756,0.0,09/16/0902 +7.17917,46.21061,653,5,11,18,20,5,3.65,27.5,fr,32901,13,1392974,1,2,Active Shallow Crust,0.0,89.98756,0.0,05/11/0653 +7.17917,46.21061,9532,10,28,16,45,5,3.65,5.0,fr,32902,190,1392975,1,5,Active Shallow Crust,240.0008,58.01275,0.0,10/28/9532 +7.17917,46.21061,9757,2,27,11,7,5,3.65,5.0,fr,32903,195,1392975,1,5,Active Shallow Crust,240.0008,58.01275,0.0,02/27/9757 +7.17917,46.21061,9900,10,11,2,52,50,3.65,5.0,fr,32904,197,1392975,1,5,Active Shallow Crust,240.0008,58.01275,0.0,10/11/9900 +7.17917,46.21061,7849,1,23,11,57,24,3.65,5.0,fr,32905,156,1392975,1,5,Active Shallow Crust,240.0008,58.01275,0.0,01/23/7849 +7.17917,46.21061,6494,7,6,23,36,19,3.65,5.0,fr,32906,129,1392975,1,5,Active Shallow Crust,240.0008,58.01275,0.0,07/06/6494 +7.17917,46.21061,5059,11,27,10,20,26,3.65,5.0,fr,32907,101,1392978,1,3,Active Shallow Crust,0.0,89.98742,-90.0,11/27/5059 +7.17917,46.21061,3871,1,26,20,9,18,3.65,5.0,fr,32908,77,1392978,1,3,Active Shallow Crust,0.0,89.98742,-90.0,01/26/3871 +7.17917,46.21061,3983,8,16,16,55,34,3.65,5.0,fr,32909,79,1392978,1,3,Active Shallow Crust,0.0,89.98742,-90.0,08/16/3983 +7.17917,46.21061,3821,9,6,4,6,36,3.65,5.0,fr,32910,76,1392981,1,1,Active Shallow Crust,128.9004,89.96352,0.0,09/06/3821 +7.17917,46.21061,2648,7,9,7,35,24,3.75,5.0,fr,32911,52,1392984,1,7,Active Shallow Crust,0.0,89.98891,0.0,07/09/2648 +7.17917,46.21061,6575,9,18,5,55,50,3.75,5.0,fr,32912,131,1392984,1,7,Active Shallow Crust,0.0,89.98891,0.0,09/18/6575 +7.17917,46.21061,7995,10,1,3,34,11,3.75,5.0,fr,32913,159,1392984,1,7,Active Shallow Crust,0.0,89.98891,0.0,10/01/7995 +7.17917,46.21061,9573,6,18,12,42,14,3.75,5.0,fr,32914,191,1392984,1,7,Active Shallow Crust,0.0,89.98891,0.0,06/18/9573 +7.17917,46.21061,5078,7,19,20,57,28,3.75,5.0,fr,32915,101,1392984,1,7,Active Shallow Crust,0.0,89.98891,0.0,07/19/5078 +7.17917,46.21061,1281,3,9,18,5,55,3.75,5.0,fr,32916,25,1392984,1,7,Active Shallow Crust,0.0,89.98891,0.0,03/09/1281 +7.17917,46.21061,9703,9,14,6,28,26,3.75,5.0,fr,32917,194,1392984,1,7,Active Shallow Crust,0.0,89.98891,0.0,09/14/9703 +7.17917,46.21061,9999,3,12,10,35,41,3.75,15.0,fr,32918,199,1392985,1,3,Active Shallow Crust,0.0,89.98891,0.0,03/12/9999 +7.17917,46.21061,6742,6,10,19,49,44,3.75,15.0,fr,32919,134,1392985,1,3,Active Shallow Crust,0.0,89.98891,0.0,06/10/6742 +7.17917,46.21061,935,4,9,9,0,28,3.75,15.0,fr,32920,18,1392985,1,3,Active Shallow Crust,0.0,89.98891,0.0,04/09/0935 +7.17917,46.21061,5083,9,12,14,46,35,3.75,5.0,fr,32921,101,1392987,1,2,Active Shallow Crust,240.008,58.0182,0.0,09/12/5083 +7.17917,46.21061,2581,1,5,14,14,33,3.75,5.0,fr,32922,51,1392987,1,2,Active Shallow Crust,240.008,58.0182,0.0,01/05/2581 +7.17917,46.21061,9497,9,23,22,12,52,3.75,27.5,fr,32923,189,1392989,1,1,Active Shallow Crust,240.008,58.0182,0.0,09/23/9497 +7.17917,46.21061,2312,12,19,9,8,29,3.75,5.0,fr,32924,46,1392990,1,1,Active Shallow Crust,0.0,89.98878,-90.0,12/19/2312 +7.17917,46.21061,4694,4,10,3,35,44,3.75,15.0,fr,32925,93,1392991,1,1,Active Shallow Crust,0.0,89.98878,-90.0,04/10/4694 +7.17917,46.21061,3407,10,2,0,11,23,3.75,5.0,fr,32926,68,1392993,1,1,Active Shallow Crust,128.8961,89.96748,0.0,10/02/3407 +7.17917,46.21061,6190,5,6,11,8,40,3.75,15.0,fr,32927,123,1392994,1,2,Active Shallow Crust,128.8961,89.96748,0.0,05/06/6190 +7.17917,46.21061,9846,11,22,8,6,56,3.75,15.0,fr,32928,196,1392994,1,2,Active Shallow Crust,128.8961,89.96748,0.0,11/22/9846 +7.17917,46.21061,1727,1,5,10,12,41,3.85,5.0,fr,32929,34,1392996,1,5,Active Shallow Crust,0.0,89.99012,0.0,01/05/1727 +7.17917,46.21061,1576,1,1,14,16,42,3.85,5.0,fr,32930,31,1392996,1,5,Active Shallow Crust,0.0,89.99012,0.0,01/01/1576 +7.17917,46.21061,1968,6,26,6,41,14,3.85,5.0,fr,32931,39,1392996,1,5,Active Shallow Crust,0.0,89.99012,0.0,06/26/1968 +7.17917,46.21061,3239,10,18,7,4,30,3.85,5.0,fr,32932,64,1392996,1,5,Active Shallow Crust,0.0,89.99012,0.0,10/18/3239 +7.17917,46.21061,3812,1,23,4,5,33,3.85,5.0,fr,32933,76,1392996,1,5,Active Shallow Crust,0.0,89.99012,0.0,01/23/3812 +7.17917,46.21061,8179,2,26,1,39,16,3.85,15.0,fr,32934,163,1392997,1,2,Active Shallow Crust,0.0,89.99012,0.0,02/26/8179 +7.17917,46.21061,3566,3,31,1,26,1,3.85,15.0,fr,32935,71,1392997,1,2,Active Shallow Crust,0.0,89.99012,0.0,03/31/3566 +7.17917,46.21061,5056,7,15,9,37,31,3.85,27.5,fr,32936,101,1392998,1,1,Active Shallow Crust,0.0,89.99012,0.0,07/15/5056 +7.17917,46.21061,2547,2,2,16,7,11,3.85,5.0,fr,32937,50,1392999,1,2,Active Shallow Crust,240.011,57.99765,0.0,02/02/2547 +7.17917,46.21061,805,5,21,12,0,55,3.85,5.0,fr,32938,16,1392999,1,2,Active Shallow Crust,240.011,57.99765,0.0,05/21/0805 +7.17917,46.21061,4118,9,15,8,34,44,3.85,5.0,fr,32939,82,1393002,1,1,Active Shallow Crust,0.0,89.99001,-90.0,09/15/4118 +7.17917,46.21061,2812,12,11,15,0,58,3.85,5.0,fr,32940,56,1393005,1,3,Active Shallow Crust,128.8956,89.99506,0.0,12/11/2812 +7.17917,46.21061,3881,12,26,6,13,37,3.85,5.0,fr,32941,77,1393005,1,3,Active Shallow Crust,128.8956,89.99506,0.0,12/26/3881 +7.17917,46.21061,9710,10,13,11,56,55,3.85,5.0,fr,32942,194,1393005,1,3,Active Shallow Crust,128.8956,89.99506,0.0,10/13/9710 +7.17917,46.21061,8775,8,20,3,20,59,3.95,5.0,fr,32943,175,1393008,1,5,Active Shallow Crust,0.0,89.9912,0.0,08/20/8775 +7.17917,46.21061,1832,12,15,20,50,53,3.95,5.0,fr,32944,36,1393008,1,5,Active Shallow Crust,0.0,89.9912,0.0,12/15/1832 +7.17917,46.21061,2432,8,10,3,49,56,3.95,5.0,fr,32945,48,1393008,1,5,Active Shallow Crust,0.0,89.9912,0.0,08/10/2432 +7.17917,46.21061,1922,11,17,2,54,13,3.95,5.0,fr,32946,38,1393008,1,5,Active Shallow Crust,0.0,89.9912,0.0,11/17/1922 +7.17917,46.21061,5026,2,5,8,45,38,3.95,5.0,fr,32947,100,1393008,1,5,Active Shallow Crust,0.0,89.9912,0.0,02/05/5026 +7.17917,46.21061,4030,1,1,6,59,31,3.95,15.0,fr,32948,80,1393009,1,3,Active Shallow Crust,0.0,89.9912,0.0,01/01/4030 +7.17917,46.21061,3849,9,19,1,17,8,3.95,15.0,fr,32949,76,1393009,1,3,Active Shallow Crust,0.0,89.9912,0.0,09/19/3849 +7.17917,46.21061,1308,10,12,10,26,0,3.95,15.0,fr,32950,26,1393009,1,3,Active Shallow Crust,0.0,89.9912,0.0,10/12/1308 +7.17917,46.21061,4147,12,25,17,11,23,3.95,27.5,fr,32951,82,1393013,1,1,Active Shallow Crust,240.0198,58.00562,0.0,12/25/4147 +7.17917,46.21061,9624,4,7,6,34,23,3.95,5.0,fr,32952,192,1393014,1,1,Active Shallow Crust,0.0,89.99109,-90.0,04/07/9624 +7.17917,46.21061,5519,9,2,14,37,21,3.95,27.5,fr,32953,110,1393019,1,1,Active Shallow Crust,128.9001,89.99339,0.0,09/02/5519 +7.17917,46.21061,994,11,21,19,35,14,4.05,5.0,fr,32954,19,1393020,1,3,Active Shallow Crust,0.0,89.98823,0.0,11/21/0994 +7.17917,46.21061,7096,12,15,21,7,26,4.05,5.0,fr,32955,141,1393020,1,3,Active Shallow Crust,0.0,89.98823,0.0,12/15/7096 +7.17917,46.21061,9231,11,20,21,38,3,4.05,5.0,fr,32956,184,1393020,1,3,Active Shallow Crust,0.0,89.98823,0.0,11/20/9231 +7.17917,46.21061,3975,7,13,17,46,24,4.05,15.0,fr,32957,79,1393021,1,3,Active Shallow Crust,0.0,89.98823,0.0,07/13/3975 +7.17917,46.21061,1404,12,7,9,6,36,4.05,15.0,fr,32958,28,1393021,1,3,Active Shallow Crust,0.0,89.98823,0.0,12/07/1404 +7.17917,46.21061,2748,6,14,17,2,7,4.05,15.0,fr,32959,54,1393021,1,3,Active Shallow Crust,0.0,89.98823,0.0,06/14/2748 +7.17917,46.21061,397,10,31,4,7,53,4.05,27.5,fr,32960,7,1393022,1,2,Active Shallow Crust,0.0,89.98823,0.0,10/31/0397 +7.17917,46.21061,2782,9,20,11,29,41,4.05,27.5,fr,32961,55,1393022,1,2,Active Shallow Crust,0.0,89.98823,0.0,09/20/2782 +7.17917,46.21061,8562,10,16,2,39,54,4.05,5.0,fr,32962,171,1393023,1,1,Active Shallow Crust,240.0058,58.00585,0.0,10/16/8562 +7.17917,46.21061,6597,4,30,20,39,21,4.05,5.0,fr,32963,131,1393029,1,2,Active Shallow Crust,128.8897,89.99412,0.0,04/30/6597 +7.17917,46.21061,2951,1,9,22,42,2,4.05,5.0,fr,32964,59,1393029,1,2,Active Shallow Crust,128.8897,89.99412,0.0,01/09/2951 +7.17917,46.21061,8188,5,19,16,27,42,4.05,15.0,fr,32965,163,1393030,1,2,Active Shallow Crust,128.8897,89.99412,0.0,05/19/8188 +7.17917,46.21061,3634,6,22,19,42,41,4.05,15.0,fr,32966,72,1393030,1,2,Active Shallow Crust,128.8897,89.99412,0.0,06/22/3634 +7.17917,46.21061,940,6,5,19,3,56,4.15,5.0,fr,32967,18,1393032,1,1,Active Shallow Crust,0.0,89.98951,0.0,06/05/0940 +7.17917,46.21061,1255,12,10,3,2,7,4.15,15.0,fr,32968,25,1393036,1,1,Active Shallow Crust,240.0085,57.99733,0.0,12/10/1255 +7.17917,46.21061,7671,1,8,2,18,7,4.15,5.0,fr,32969,153,1393038,1,1,Active Shallow Crust,0.0,89.98939,-90.0,01/08/7671 +7.17917,46.21061,6984,7,29,19,18,23,4.25,5.0,fr,32970,139,1393044,1,5,Active Shallow Crust,0.0,89.99065,0.0,07/29/6984 +7.17917,46.21061,1131,8,14,6,20,42,4.25,5.0,fr,32971,22,1393044,1,5,Active Shallow Crust,0.0,89.99065,0.0,08/14/1131 +7.17917,46.21061,2800,12,11,13,4,22,4.25,5.0,fr,32972,55,1393044,1,5,Active Shallow Crust,0.0,89.99065,0.0,12/11/2800 +7.17917,46.21061,2174,5,30,18,43,13,4.25,5.0,fr,32973,43,1393044,1,5,Active Shallow Crust,0.0,89.99065,0.0,05/30/2174 +7.17917,46.21061,674,2,1,9,30,5,4.25,5.0,fr,32974,13,1393044,1,5,Active Shallow Crust,0.0,89.99065,0.0,02/01/0674 +7.17917,46.21061,5859,2,10,8,24,20,4.25,15.0,fr,32975,117,1393045,1,2,Active Shallow Crust,0.0,89.99065,0.0,02/10/5859 +7.17917,46.21061,2486,11,2,12,48,49,4.25,15.0,fr,32976,49,1393045,1,2,Active Shallow Crust,0.0,89.99065,0.0,11/02/2486 +7.17917,46.21061,3491,5,7,23,28,19,4.35,5.0,fr,32977,69,1393056,1,2,Active Shallow Crust,0.0,89.98888,0.0,05/07/3491 +7.17917,46.21061,2007,7,17,7,16,0,4.35,5.0,fr,32978,40,1393056,1,2,Active Shallow Crust,0.0,89.98888,0.0,07/17/2007 +7.17917,46.21061,7592,7,5,4,20,10,4.35,15.0,fr,32979,151,1393057,1,3,Active Shallow Crust,0.0,89.98888,0.0,07/05/7592 +7.17917,46.21061,6995,4,24,18,1,29,4.35,15.0,fr,32980,139,1393057,1,3,Active Shallow Crust,0.0,89.98888,0.0,04/24/6995 +7.17917,46.21061,537,11,10,1,43,35,4.35,15.0,fr,32981,10,1393057,1,3,Active Shallow Crust,0.0,89.98888,0.0,11/10/0537 +7.17917,46.21061,7118,3,5,3,11,9,4.35,27.5,fr,32982,142,1393058,1,1,Active Shallow Crust,0.0,89.98888,0.0,03/05/7118 +7.17917,46.21061,9614,9,5,13,53,17,4.35,5.0,fr,32983,192,1393065,1,1,Active Shallow Crust,128.8972,89.98301,0.0,09/05/9614 +7.17917,46.21061,8651,12,9,1,2,10,4.55,5.0,fr,32984,173,1393083,1,2,Active Shallow Crust,240.0092,57.99766,0.0,12/09/8651 +7.17917,46.21061,5296,7,11,10,44,7,4.55,5.0,fr,32985,105,1393083,1,2,Active Shallow Crust,240.0092,57.99766,0.0,07/11/5296 +7.17917,46.21061,5169,2,15,8,58,4,4.55,5.0,fr,32986,103,1393086,1,1,Active Shallow Crust,0.0,89.99107,-90.0,02/15/5169 +7.17917,46.21061,7129,1,27,17,35,44,4.65,5.0,fr,32987,142,1393092,1,2,Active Shallow Crust,0.0,89.99017,0.0,01/27/7129 +7.17917,46.21061,5717,11,5,3,28,58,4.65,5.0,fr,32988,114,1393092,1,2,Active Shallow Crust,0.0,89.99017,0.0,11/05/5717 +7.17917,46.21061,7878,2,17,6,51,36,4.65,15.0,fr,32989,157,1393093,1,1,Active Shallow Crust,0.0,89.99017,0.0,02/17/7878 +7.17917,46.21061,9730,12,19,2,53,0,4.75,5.0,fr,32990,194,1393104,1,1,Active Shallow Crust,0.0,89.98948,0.0,12/19/9730 +7.17917,46.21061,7995,3,14,16,26,16,4.75,5.0,fr,32991,159,1393107,1,2,Active Shallow Crust,240.0075,58.00454,0.0,03/14/7995 +7.17917,46.21061,5832,5,21,5,52,19,4.75,5.0,fr,32992,116,1393107,1,2,Active Shallow Crust,240.0075,58.00454,0.0,05/21/5832 +7.17917,46.21061,857,3,24,0,57,42,4.85,5.0,fr,32993,17,1393116,1,2,Active Shallow Crust,0.0,89.99062,0.0,03/24/0857 +7.17917,46.21061,9898,10,26,10,14,31,4.85,5.0,fr,32994,197,1393116,1,2,Active Shallow Crust,0.0,89.99062,0.0,10/26/9898 +7.17917,46.21061,632,9,2,1,11,50,4.95,15.0,fr,32995,12,1393129,1,1,Active Shallow Crust,0.0,89.99025,0.0,09/02/0632 +7.17917,46.21061,5626,10,14,5,46,17,4.95,27.5,fr,32996,112,1393130,1,1,Active Shallow Crust,0.0,89.99025,0.0,10/14/5626 +7.17917,46.21061,3734,4,20,17,46,20,4.95,5.0,fr,32997,74,1393131,1,2,Active Shallow Crust,240.0118,58.00457,0.0,04/20/3734 +7.17917,46.21061,5280,7,28,14,33,52,4.95,5.0,fr,32998,105,1393131,1,2,Active Shallow Crust,240.0118,58.00457,0.0,07/28/5280 +7.17917,46.21061,5476,4,4,10,3,16,4.95,27.5,fr,32999,109,1393133,1,1,Active Shallow Crust,240.0118,58.00459,0.0,04/04/5476 +7.17917,46.21061,9490,3,3,12,15,11,4.95,5.0,fr,33000,189,1393134,1,1,Active Shallow Crust,0.0,89.99014,-90.0,03/03/9490 +7.17917,46.21061,6136,10,15,4,36,3,5.15,5.0,fr,33001,122,1393152,1,1,Active Shallow Crust,0.0,89.99004,0.0,10/15/6136 +7.17917,46.21061,1669,1,22,19,36,25,5.35,5.0,fr,33002,33,1393176,1,1,Active Shallow Crust,0.0,89.99033,0.0,01/22/1669 +7.17917,46.21061,3499,12,16,7,58,52,6.05,5.357596,fr,33003,69,1393269,1,1,Active Shallow Crust,128.8607,89.98897,0.0,12/16/3499 +3.46558,52.45534,8592,9,10,14,9,14,3.65,5.0,fr,33004,171,1393452,1,1,Active Shallow Crust,0.0,89.98904,0.0,09/10/8592 +8.44759,51.03693,7445,11,18,17,17,14,3.75,27.5,fr,33005,148,1393955,1,1,Active Shallow Crust,128.897,89.96757,0.0,11/18/7445 +-0.36777,47.20867,5897,1,19,10,16,53,3.55,5.0,fr,33006,117,1394400,1,1,Active Shallow Crust,0.0,89.99015,0.0,01/19/5897 +-0.36777,47.20867,4254,11,2,1,6,5,3.55,5.0,fr,33007,85,1394403,1,1,Active Shallow Crust,240.0123,57.99823,0.0,11/02/4254 +-0.36777,47.20867,1668,1,10,11,2,24,3.55,15.0,fr,33008,33,1394404,1,1,Active Shallow Crust,240.0123,57.99823,0.0,01/10/1668 +-0.36777,47.20867,5506,1,29,19,36,50,3.65,5.0,fr,33009,110,1394412,1,3,Active Shallow Crust,0.0,89.99008,0.0,01/29/5506 +-0.36777,47.20867,5081,5,24,16,40,4,3.65,5.0,fr,33010,101,1394412,1,3,Active Shallow Crust,0.0,89.99008,0.0,05/24/5081 +-0.36777,47.20867,6400,7,2,18,33,20,3.65,5.0,fr,33011,127,1394412,1,3,Active Shallow Crust,0.0,89.99008,0.0,07/02/6400 +-0.36777,47.20867,8195,7,16,23,55,1,3.75,5.0,fr,33012,163,1394427,1,1,Active Shallow Crust,240.0084,58.0176,0.0,07/16/8195 +-0.36777,47.20867,4334,10,5,8,20,59,3.75,5.0,fr,33013,86,1394433,1,1,Active Shallow Crust,128.8966,89.96735,0.0,10/05/4334 +-0.36777,47.20867,8836,1,4,13,6,1,3.85,15.0,fr,33014,176,1394437,1,1,Active Shallow Crust,0.0,89.99,0.0,01/04/8836 +-0.36777,47.20867,9357,6,17,2,22,44,3.85,5.0,fr,33015,187,1394439,1,1,Active Shallow Crust,240.011,57.99781,0.0,06/17/9357 +-0.36777,47.20867,3885,9,13,22,3,50,3.95,15.0,fr,33016,77,1394449,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/13/3885 +-0.36777,47.20867,8617,6,23,19,22,16,4.05,5.0,fr,33017,172,1394460,1,1,Active Shallow Crust,0.0,89.98989,0.0,06/23/8617 +-0.36777,47.20867,9105,4,22,12,29,43,4.05,5.0,fr,33018,182,1394466,1,1,Active Shallow Crust,0.0,89.99001,-90.0,04/22/9105 +-0.36777,47.20867,5544,10,26,14,53,38,4.15,5.0,fr,33019,110,1394472,1,1,Active Shallow Crust,0.0,89.98991,0.0,10/26/5544 +-0.36777,47.20867,4631,9,12,18,10,44,4.25,5.0,fr,33020,92,1394490,1,1,Active Shallow Crust,0.0,89.98994,-90.0,09/12/4631 +-0.36777,47.20867,6884,3,17,20,24,26,4.35,5.0,fr,33021,137,1394505,1,1,Active Shallow Crust,128.8977,89.98275,0.0,03/17/6884 +-0.36777,47.20867,3392,10,9,3,10,12,4.55,5.0,fr,33022,67,1394520,1,1,Active Shallow Crust,0.0,89.98998,0.0,10/09/3392 +-0.36777,47.20867,6708,4,28,7,9,27,4.55,15.0,fr,33023,134,1394521,1,1,Active Shallow Crust,0.0,89.98998,0.0,04/28/6708 +-0.36777,47.20867,6051,4,20,17,3,54,4.65,5.0,fr,33024,121,1394532,1,1,Active Shallow Crust,0.0,89.98998,0.0,04/20/6051 +-0.36777,47.20867,625,4,1,13,5,26,4.75,5.0,fr,33025,12,1394544,1,1,Active Shallow Crust,0.0,89.99,0.0,04/01/0625 +-0.36777,47.20867,4011,6,24,0,31,27,4.85,27.5,fr,33026,80,1394558,1,1,Active Shallow Crust,0.0,89.99003,0.0,06/24/4011 +6.41685,42.40756,2172,11,1,7,59,5,3.55,15.0,fr,33027,43,1394881,1,1,Active Shallow Crust,0.0,89.99255,0.0,11/01/2172 +5.46628,49.81825,3766,11,2,7,3,7,3.55,15.0,fr,33028,75,1395367,1,1,Active Shallow Crust,0.0,89.98684,-90.0,11/02/3766 +5.46628,49.81825,3562,7,14,18,8,55,4.35,27.5,fr,33029,71,1395458,1,1,Active Shallow Crust,0.0,89.98964,0.0,07/14/3562 +5.46628,49.81825,1700,9,5,0,42,22,4.45,5.0,fr,33030,33,1395468,1,1,Active Shallow Crust,0.0,89.99077,0.0,09/05/1700 +-5.78378,47.92385,5045,11,29,3,47,50,3.95,5.0,fr,33031,100,1395897,1,1,Active Shallow Crust,128.8995,89.99361,0.0,11/29/5045 +-5.78378,47.92385,5283,3,1,2,9,14,4.05,5.0,fr,33032,105,1395906,1,1,Active Shallow Crust,0.0,89.98846,-90.0,03/01/5283 +1.1014,42.59197,7917,8,1,17,27,2,3.55,5.0,fr,33033,158,1396320,1,5,Active Shallow Crust,0.0,89.99072,0.0,08/01/7917 +1.1014,42.59197,5312,8,15,5,48,36,3.55,5.0,fr,33034,106,1396320,1,5,Active Shallow Crust,0.0,89.99072,0.0,08/15/5312 +1.1014,42.59197,3168,1,22,18,49,0,3.55,5.0,fr,33035,63,1396320,1,5,Active Shallow Crust,0.0,89.99072,0.0,01/22/3168 +1.1014,42.59197,6916,5,30,11,46,28,3.55,5.0,fr,33036,138,1396320,1,5,Active Shallow Crust,0.0,89.99072,0.0,05/30/6916 +1.1014,42.59197,4047,10,27,22,12,40,3.55,5.0,fr,33037,80,1396320,1,5,Active Shallow Crust,0.0,89.99072,0.0,10/27/4047 +1.1014,42.59197,1109,5,1,17,31,56,3.55,15.0,fr,33038,22,1396321,1,2,Active Shallow Crust,0.0,89.99072,0.0,05/01/1109 +1.1014,42.59197,236,12,21,3,55,34,3.55,15.0,fr,33039,4,1396321,1,2,Active Shallow Crust,0.0,89.99072,0.0,12/21/0236 +1.1014,42.59197,3803,8,16,7,52,16,3.55,5.0,fr,33040,76,1396323,1,2,Active Shallow Crust,240.0116,57.99837,0.0,08/16/3803 +1.1014,42.59197,287,8,10,18,37,5,3.55,5.0,fr,33041,5,1396323,1,2,Active Shallow Crust,240.0116,57.99837,0.0,08/10/0287 +1.1014,42.59197,2109,12,27,16,43,49,3.55,27.5,fr,33042,42,1396325,1,1,Active Shallow Crust,240.0116,57.99827,0.0,12/27/2109 +1.1014,42.59197,795,2,5,20,53,31,3.65,5.0,fr,33043,15,1396332,1,4,Active Shallow Crust,0.0,89.99007,0.0,02/05/0795 +1.1014,42.59197,3531,3,2,22,16,40,3.65,5.0,fr,33044,70,1396332,1,4,Active Shallow Crust,0.0,89.99007,0.0,03/02/3531 +1.1014,42.59197,3425,2,14,20,54,12,3.65,5.0,fr,33045,68,1396332,1,4,Active Shallow Crust,0.0,89.99007,0.0,02/14/3425 +1.1014,42.59197,4106,1,11,15,17,4,3.65,5.0,fr,33046,82,1396332,1,4,Active Shallow Crust,0.0,89.99007,0.0,01/11/4106 +1.1014,42.59197,2044,2,19,5,6,2,3.65,15.0,fr,33047,40,1396333,1,4,Active Shallow Crust,0.0,89.99007,0.0,02/19/2044 +1.1014,42.59197,8154,10,19,0,13,5,3.65,15.0,fr,33048,163,1396333,1,4,Active Shallow Crust,0.0,89.99007,0.0,10/19/8154 +1.1014,42.59197,2958,6,19,17,31,25,3.65,15.0,fr,33049,59,1396333,1,4,Active Shallow Crust,0.0,89.99007,0.0,06/19/2958 +1.1014,42.59197,6829,12,3,10,42,15,3.65,15.0,fr,33050,136,1396333,1,4,Active Shallow Crust,0.0,89.99007,0.0,12/03/6829 +1.1014,42.59197,321,1,11,0,58,14,3.65,5.0,fr,33051,6,1396341,1,1,Active Shallow Crust,128.9004,89.96359,0.0,01/11/0321 +1.1014,42.59197,9509,6,20,18,9,29,3.75,5.0,fr,33052,190,1396344,1,4,Active Shallow Crust,0.0,89.98968,0.0,06/20/9509 +1.1014,42.59197,533,1,30,2,52,27,3.75,5.0,fr,33053,10,1396344,1,4,Active Shallow Crust,0.0,89.98968,0.0,01/30/0533 +1.1014,42.59197,6790,2,26,19,51,19,3.75,5.0,fr,33054,135,1396344,1,4,Active Shallow Crust,0.0,89.98968,0.0,02/26/6790 +1.1014,42.59197,7720,8,29,14,26,6,3.75,5.0,fr,33055,154,1396344,1,4,Active Shallow Crust,0.0,89.98968,0.0,08/29/7720 +1.1014,42.59197,238,6,16,5,40,30,3.75,15.0,fr,33056,4,1396345,1,2,Active Shallow Crust,0.0,89.98968,0.0,06/16/0238 +1.1014,42.59197,6953,9,17,1,40,59,3.75,15.0,fr,33057,139,1396345,1,2,Active Shallow Crust,0.0,89.98968,0.0,09/17/6953 +1.1014,42.59197,7434,1,29,16,5,34,3.75,27.5,fr,33058,148,1396349,1,1,Active Shallow Crust,240.0079,58.01761,0.0,01/29/7434 +1.1014,42.59197,7653,5,20,13,0,50,3.85,5.0,fr,33059,153,1396356,1,1,Active Shallow Crust,0.0,89.98949,0.0,05/20/7653 +1.1014,42.59197,1166,7,4,16,32,19,3.85,5.0,fr,33060,23,1396359,1,1,Active Shallow Crust,240.0104,57.99778,0.0,07/04/1166 +1.1014,42.59197,2087,9,15,2,9,37,3.85,15.0,fr,33061,41,1396360,1,1,Active Shallow Crust,240.0104,57.99778,0.0,09/15/2087 +1.1014,42.59197,8125,11,24,10,49,46,3.95,5.0,fr,33062,162,1396368,1,2,Active Shallow Crust,0.0,89.98946,0.0,11/24/8125 +1.1014,42.59197,8247,9,11,19,17,55,3.95,5.0,fr,33063,164,1396368,1,2,Active Shallow Crust,0.0,89.98946,0.0,09/11/8247 +1.1014,42.59197,3449,4,16,1,41,36,3.95,5.0,fr,33064,68,1396371,1,1,Active Shallow Crust,240.0192,58.00505,0.0,04/16/3449 +1.1014,42.59197,5090,4,20,4,15,30,3.95,5.0,fr,33065,101,1396377,1,1,Active Shallow Crust,128.901,89.99356,0.0,04/20/5090 +1.1014,42.59197,5112,4,21,20,39,32,4.05,5.0,fr,33066,102,1396383,1,2,Active Shallow Crust,240.0054,58.00574,0.0,04/21/5112 +1.1014,42.59197,503,3,4,8,10,42,4.05,5.0,fr,33067,10,1396383,1,2,Active Shallow Crust,240.0054,58.00574,0.0,03/04/0503 +1.1014,42.59197,1016,8,5,22,43,36,4.15,5.0,fr,33068,20,1396392,1,3,Active Shallow Crust,0.0,89.98977,0.0,08/05/1016 +1.1014,42.59197,3936,5,19,0,18,50,4.15,5.0,fr,33069,78,1396392,1,3,Active Shallow Crust,0.0,89.98977,0.0,05/19/3936 +1.1014,42.59197,3550,7,16,14,27,38,4.15,5.0,fr,33070,70,1396392,1,3,Active Shallow Crust,0.0,89.98977,0.0,07/16/3550 +1.1014,42.59197,3593,10,19,6,0,16,4.15,5.0,fr,33071,71,1396395,1,1,Active Shallow Crust,240.0077,57.99727,0.0,10/19/3593 +1.1014,42.59197,2763,6,24,18,37,51,4.35,5.0,fr,33072,55,1396416,1,1,Active Shallow Crust,0.0,89.98965,0.0,06/24/2763 +1.1014,42.59197,5611,9,28,9,23,24,4.45,5.0,fr,33073,112,1396428,1,1,Active Shallow Crust,0.0,89.99012,0.0,09/28/5611 +1.1014,42.59197,666,3,30,18,30,56,4.55,5.0,fr,33074,13,1396440,1,1,Active Shallow Crust,0.0,89.99002,0.0,03/30/0666 +1.1014,42.59197,4980,6,16,3,46,39,4.55,27.5,fr,33075,99,1396442,1,1,Active Shallow Crust,0.0,89.99002,0.0,06/16/4980 +1.1014,42.59197,8816,3,1,14,30,10,4.65,15.0,fr,33076,176,1396453,1,1,Active Shallow Crust,0.0,89.99006,0.0,03/01/8816 +1.1014,42.59197,863,2,3,1,58,37,4.65,15.0,fr,33077,17,1396459,1,1,Active Shallow Crust,0.0,89.98994,-90.0,02/03/0863 +1.1014,42.59197,4423,3,2,21,10,20,4.75,27.5,fr,33078,88,1396475,1,1,Active Shallow Crust,128.8898,89.98808,0.0,03/02/4423 +1.1014,42.59197,5778,2,10,14,12,56,5.55,5.0,fr,33079,115,1396560,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/10/5778 +1.101427,42.59197,7972,2,27,10,37,30,7.25,17.5,fr,33080,159,1396764,1,1,Active Shallow Crust,360.0,89.99001,0.0,02/27/7972 +2.30026,47.63718,9834,10,6,21,3,47,4.25,5.0,fr,33081,196,1396884,1,1,Active Shallow Crust,0.0,89.98938,0.0,10/06/9834 +-3.70383,46.6392,9733,11,8,17,24,4,3.75,5.0,fr,33082,194,1397304,1,1,Active Shallow Crust,0.0,89.989,0.0,11/08/9733 +1.9384,51.14646,2221,7,6,5,41,25,3.65,15.0,fr,33083,44,1397773,1,1,Active Shallow Crust,0.0,89.99014,0.0,07/06/2221 +1.9384,51.14646,4247,10,20,13,39,24,3.65,27.5,fr,33084,84,1397774,1,1,Active Shallow Crust,0.0,89.99014,0.0,10/20/4247 +1.9384,51.14646,8378,3,19,8,45,11,3.75,5.0,fr,33085,167,1397784,1,1,Active Shallow Crust,0.0,89.98995,0.0,03/19/8378 +1.9384,51.14646,9711,8,16,6,16,22,3.75,5.0,fr,33086,194,1397787,1,1,Active Shallow Crust,240.0089,58.01789,0.0,08/16/9711 +1.9384,51.14646,7508,2,4,0,5,51,3.85,5.0,fr,33087,150,1397796,1,2,Active Shallow Crust,0.0,89.98992,0.0,02/04/7508 +1.9384,51.14646,3912,11,16,8,23,57,3.85,5.0,fr,33088,78,1397796,1,2,Active Shallow Crust,0.0,89.98992,0.0,11/16/3912 +1.9384,51.14646,3730,11,29,21,35,25,4.05,5.0,fr,33089,74,1397820,1,2,Active Shallow Crust,0.0,89.99022,0.0,11/29/3730 +1.9384,51.14646,2646,7,24,21,26,9,4.05,5.0,fr,33090,52,1397820,1,2,Active Shallow Crust,0.0,89.99022,0.0,07/24/2646 +1.9384,51.14646,7827,3,9,20,8,47,4.55,5.0,fr,33091,156,1397880,1,1,Active Shallow Crust,0.0,89.99,0.0,03/09/7827 +1.9384,51.14646,5365,9,24,1,14,33,4.65,15.0,fr,33092,107,1397902,1,1,Active Shallow Crust,128.8898,89.98692,0.0,09/24/5365 +1.9384,51.14646,5352,7,9,5,56,45,5.55,5.0,fr,33093,107,1398006,1,1,Active Shallow Crust,359.9999,89.99007,-90.0,07/09/5352 +1.882339,51.20728,4272,9,8,16,17,10,7.35,17.5,fr,33094,85,1398219,1,1,Active Shallow Crust,240.3304,58.00006,0.0,09/08/4272 +4.19515,46.85748,3678,2,5,0,24,22,3.55,15.0,fr,33095,73,1398244,1,1,Active Shallow Crust,240.0117,57.99839,0.0,02/05/3678 +4.19515,46.85748,60,6,21,22,50,23,3.65,5.0,fr,33096,1,1398261,1,1,Active Shallow Crust,128.9,89.96353,0.0,06/21/0060 +4.19515,46.85748,763,5,17,16,54,16,3.85,15.0,fr,33097,15,1398280,1,1,Active Shallow Crust,240.0115,57.99728,0.0,05/17/0763 +4.19515,46.85748,7458,2,24,14,41,28,3.95,27.5,fr,33098,149,1398299,1,1,Active Shallow Crust,128.901,89.99348,0.0,02/24/7458 +4.19515,46.85748,3389,4,27,11,13,12,4.05,27.5,fr,33099,67,1398302,1,1,Active Shallow Crust,0.0,89.98837,0.0,04/27/3389 +4.19515,46.85748,4435,4,16,4,6,57,4.15,5.0,fr,33100,88,1398312,1,1,Active Shallow Crust,0.0,89.98963,0.0,04/16/4435 +4.19515,46.85748,8303,8,18,5,28,53,4.15,27.5,fr,33101,166,1398314,1,1,Active Shallow Crust,0.0,89.98963,0.0,08/18/8303 +4.19515,46.85748,1294,7,22,3,1,51,4.15,15.0,fr,33102,25,1398322,1,1,Active Shallow Crust,128.8976,89.99309,0.0,07/22/1294 +4.19515,46.85748,7227,5,6,4,38,40,4.35,15.0,fr,33103,144,1398340,1,1,Active Shallow Crust,240.0085,57.99559,0.0,05/06/7227 +4.19515,46.85748,5677,9,28,17,3,26,4.55,5.0,fr,33104,113,1398360,1,1,Active Shallow Crust,0.0,89.9891,0.0,09/28/5677 +-2.99513,47.66597,8276,1,10,22,7,6,3.55,5.0,fr,33105,165,1398723,1,2,Active Shallow Crust,240.0118,57.99805,0.0,01/10/8276 +-2.99513,47.66597,5828,4,20,9,7,27,3.55,5.0,fr,33106,116,1398723,1,2,Active Shallow Crust,240.0118,57.99805,0.0,04/20/5828 +-2.99513,47.66597,2884,5,25,16,56,52,3.55,15.0,fr,33107,57,1398730,1,2,Active Shallow Crust,128.8965,89.99321,0.0,05/25/2884 +-2.99513,47.66597,259,8,16,1,22,5,3.55,15.0,fr,33108,5,1398730,1,2,Active Shallow Crust,128.8965,89.99321,0.0,08/16/0259 +-2.99513,47.66597,7523,3,19,23,27,52,3.65,5.0,fr,33109,150,1398732,1,6,Active Shallow Crust,0.0,89.99092,0.0,03/19/7523 +-2.99513,47.66597,3890,12,8,9,33,30,3.65,5.0,fr,33110,77,1398732,1,6,Active Shallow Crust,0.0,89.99092,0.0,12/08/3890 +-2.99513,47.66597,8036,5,18,17,54,40,3.65,5.0,fr,33111,160,1398732,1,6,Active Shallow Crust,0.0,89.99092,0.0,05/18/8036 +-2.99513,47.66597,1888,3,5,16,3,40,3.65,5.0,fr,33112,37,1398732,1,6,Active Shallow Crust,0.0,89.99092,0.0,03/05/1888 +-2.99513,47.66597,3345,7,29,20,23,30,3.65,5.0,fr,33113,66,1398732,1,6,Active Shallow Crust,0.0,89.99092,0.0,07/29/3345 +-2.99513,47.66597,3251,10,13,15,7,58,3.65,5.0,fr,33114,65,1398732,1,6,Active Shallow Crust,0.0,89.99092,0.0,10/13/3251 +-2.99513,47.66597,2387,3,31,1,0,57,3.65,5.0,fr,33115,47,1398738,1,1,Active Shallow Crust,0.0,89.99081,-90.0,03/31/2387 +-2.99513,47.66597,1943,7,15,2,15,10,3.65,15.0,fr,33116,38,1398742,1,1,Active Shallow Crust,128.8996,89.96355,0.0,07/15/1943 +-2.99513,47.66597,9377,2,6,5,30,7,3.75,5.0,fr,33117,187,1398744,1,2,Active Shallow Crust,0.0,89.98921,0.0,02/06/9377 +-2.99513,47.66597,9640,7,2,5,23,12,3.75,5.0,fr,33118,192,1398744,1,2,Active Shallow Crust,0.0,89.98921,0.0,07/02/9640 +-2.99513,47.66597,547,9,23,2,25,6,3.75,15.0,fr,33119,10,1398748,1,1,Active Shallow Crust,240.0084,58.01756,0.0,09/23/0547 +-2.99513,47.66597,2669,12,15,13,11,52,3.85,5.0,fr,33120,53,1398756,1,1,Active Shallow Crust,0.0,89.99039,0.0,12/15/2669 +-2.99513,47.66597,5974,5,27,15,43,31,3.85,27.5,fr,33121,119,1398758,1,1,Active Shallow Crust,0.0,89.99039,0.0,05/27/5974 +-2.99513,47.66597,5129,12,11,9,51,55,3.85,5.0,fr,33122,102,1398759,1,1,Active Shallow Crust,240.0112,57.99752,0.0,12/11/5129 +-2.99513,47.66597,3810,6,5,2,44,34,3.95,15.0,fr,33123,76,1398769,1,2,Active Shallow Crust,0.0,89.98929,0.0,06/05/3810 +-2.99513,47.66597,7972,10,10,6,17,11,3.95,15.0,fr,33124,159,1398769,1,2,Active Shallow Crust,0.0,89.98929,0.0,10/10/7972 +-2.99513,47.66597,7855,11,29,13,57,25,4.05,5.0,fr,33125,157,1398780,1,1,Active Shallow Crust,0.0,89.99046,0.0,11/29/7855 +-2.99513,47.66597,3771,3,20,21,55,57,4.05,15.0,fr,33126,75,1398781,1,2,Active Shallow Crust,0.0,89.99046,0.0,03/20/3771 +-2.99513,47.66597,4276,10,20,14,14,16,4.05,15.0,fr,33127,85,1398781,1,2,Active Shallow Crust,0.0,89.99046,0.0,10/20/4276 +-2.99513,47.66597,3459,5,18,0,35,17,4.05,5.0,fr,33128,69,1398789,1,1,Active Shallow Crust,128.8899,89.99427,0.0,05/18/3459 +-2.99513,47.66597,4486,5,12,4,25,56,4.15,5.0,fr,33129,89,1398792,1,2,Active Shallow Crust,0.0,89.98979,0.0,05/12/4486 +-2.99513,47.66597,3521,3,25,22,37,45,4.15,5.0,fr,33130,70,1398792,1,2,Active Shallow Crust,0.0,89.98979,0.0,03/25/3521 +-2.99513,47.66597,6223,8,17,5,53,33,4.25,5.0,fr,33131,124,1398804,1,1,Active Shallow Crust,0.0,89.98938,0.0,08/17/6223 +-2.99513,47.66597,409,6,17,19,9,46,4.35,5.0,fr,33132,8,1398816,1,1,Active Shallow Crust,0.0,89.99054,0.0,06/17/0409 +-2.99513,47.66597,7284,3,4,0,23,54,4.45,15.0,fr,33133,145,1398829,1,1,Active Shallow Crust,0.0,89.99036,0.0,03/04/7284 +-2.99513,47.66597,7290,1,19,10,20,17,4.45,15.0,fr,33134,145,1398838,1,1,Active Shallow Crust,128.8919,89.99338,0.0,01/19/7290 +-2.99513,47.66597,6782,10,25,22,6,36,4.55,27.5,fr,33135,135,1398842,1,1,Active Shallow Crust,0.0,89.99033,0.0,10/25/6782 +-2.995126,47.66597,3822,1,29,3,44,47,6.25,6.744814,fr,33136,76,1399044,1,1,Active Shallow Crust,0.0,89.98997,0.0,01/29/3822 +0.21147,44.55245,2538,11,23,3,5,33,3.55,5.0,fr,33137,50,1399200,1,1,Active Shallow Crust,0.0,89.9899,0.0,11/23/2538 +0.21147,44.55245,1605,10,27,20,46,4,3.65,27.5,fr,33138,32,1399214,1,1,Active Shallow Crust,0.0,89.98999,0.0,10/27/1605 +0.21147,44.55245,5587,12,18,6,45,24,4.15,27.5,fr,33139,111,1399274,1,1,Active Shallow Crust,0.0,89.98998,0.0,12/18/5587 +0.21147,44.55245,6641,2,20,8,53,26,4.25,15.0,fr,33140,132,1399288,1,1,Active Shallow Crust,240.0072,57.99399,0.0,02/20/6641 +3.47111,40.11846,7481,10,21,19,32,35,3.55,5.0,fr,33141,149,1399686,1,1,Active Shallow Crust,0.0,89.9883,-90.0,10/21/7481 +3.47111,40.11846,4005,5,10,16,20,18,4.05,5.0,fr,33142,80,1399740,1,1,Active Shallow Crust,0.0,89.98916,0.0,05/10/4005 +3.47111,40.11846,5245,7,28,13,20,44,4.55,5.0,fr,33143,104,1399800,1,1,Active Shallow Crust,0.0,89.99024,0.0,07/28/5245 +9.24123,48.61838,7978,1,14,18,49,33,3.55,5.0,fr,33144,159,1400640,1,1,Active Shallow Crust,0.0,89.98666,0.0,01/14/7978 +9.24123,48.61838,8709,1,20,6,8,46,3.65,15.0,fr,33145,174,1400653,1,2,Active Shallow Crust,0.0,89.98812,0.0,01/20/8709 +9.24123,48.61838,7453,4,13,14,55,53,3.65,15.0,fr,33146,149,1400653,1,2,Active Shallow Crust,0.0,89.98812,0.0,04/13/7453 +9.24123,48.61838,8305,10,14,22,59,20,3.65,5.0,fr,33147,166,1400661,1,1,Active Shallow Crust,128.9022,89.96356,0.0,10/14/8305 +9.24123,48.61838,349,6,4,1,51,56,3.75,5.0,fr,33148,6,1400667,1,1,Active Shallow Crust,240.0085,58.01746,0.0,06/04/0349 +9.24123,48.61838,4332,9,4,21,29,52,3.75,5.0,fr,33149,86,1400670,1,1,Active Shallow Crust,0.0,89.98929,-90.0,09/04/4332 +9.24123,48.61838,6488,1,24,11,49,21,3.75,15.0,fr,33150,129,1400674,1,1,Active Shallow Crust,128.8976,89.96753,0.0,01/24/6488 +9.24123,48.61838,9306,11,23,15,27,58,3.95,5.0,fr,33151,186,1400688,1,1,Active Shallow Crust,0.0,89.99158,0.0,11/23/9306 +9.24123,48.61838,4925,10,4,10,47,17,3.95,5.0,fr,33152,98,1400694,1,1,Active Shallow Crust,0.0,89.99149,-90.0,10/04/4925 +9.24123,48.61838,2238,5,11,10,20,40,4.05,15.0,fr,33153,44,1400701,1,1,Active Shallow Crust,0.0,89.9925,0.0,05/11/2238 +9.24123,48.61838,3295,9,1,2,9,8,4.05,5.0,fr,33154,65,1400709,1,1,Active Shallow Crust,128.8913,89.9925,0.0,09/01/3295 +9.24123,48.61838,7303,8,6,6,6,31,4.15,15.0,fr,33155,146,1400713,1,1,Active Shallow Crust,0.0,89.99332,0.0,08/06/7303 +9.24123,48.61838,882,7,5,16,56,51,5.65,5.0,fr,33156,17,1400895,1,1,Active Shallow Crust,240.0396,57.99965,0.0,07/05/0882 +7.82793,49.60589,6637,10,27,1,22,30,3.55,5.0,fr,33157,132,1401120,1,1,Active Shallow Crust,0.0,89.98693,0.0,10/27/6637 +7.82793,49.60589,2046,2,5,21,54,40,3.55,15.0,fr,33158,40,1401121,1,1,Active Shallow Crust,0.0,89.98693,0.0,02/05/2046 +7.82793,49.60589,8873,9,27,1,37,17,3.55,5.0,fr,33159,177,1401123,1,1,Active Shallow Crust,240.0129,57.99849,0.0,09/27/8873 +7.82793,49.60589,9485,12,31,19,24,46,3.65,5.0,fr,33160,189,1401132,1,1,Active Shallow Crust,0.0,89.98835,0.0,12/31/9485 +7.82793,49.60589,8736,8,12,10,14,11,3.65,5.0,fr,33161,174,1401135,1,1,Active Shallow Crust,240.0017,58.01306,0.0,08/12/8736 +7.82793,49.60589,1168,11,15,12,26,9,3.65,5.0,fr,33162,23,1401141,1,1,Active Shallow Crust,128.8999,89.96358,0.0,11/15/1168 +7.82793,49.60589,225,10,6,20,2,47,3.95,27.5,fr,33163,4,1401170,1,1,Active Shallow Crust,0.0,89.99175,0.0,10/06/0225 +7.82793,49.60589,7255,10,12,17,38,51,4.05,15.0,fr,33164,145,1401190,1,1,Active Shallow Crust,128.8893,89.99449,0.0,10/12/7255 +7.82793,49.60589,5090,9,24,23,57,54,4.25,5.0,fr,33165,101,1401207,1,1,Active Shallow Crust,240.0081,57.99409,0.0,09/24/5090 +7.82793,49.60589,813,9,22,2,17,3,4.35,15.0,fr,33166,16,1401226,1,1,Active Shallow Crust,128.8966,89.98267,0.0,09/22/0813 +7.82793,49.60589,4654,9,14,3,8,11,4.75,27.5,fr,33167,93,1401266,1,1,Active Shallow Crust,0.0,89.99015,0.0,09/14/4654 +3.26135,48.2489,1977,3,22,8,4,53,3.75,5.0,fr,33168,39,1401624,1,1,Active Shallow Crust,0.0,89.98933,0.0,03/22/1977 +3.26135,48.2489,9092,7,23,9,24,33,4.65,5.0,fr,33169,181,1401732,1,1,Active Shallow Crust,0.0,89.98959,0.0,07/23/9092 +3.26135,48.2489,1532,12,11,20,14,41,4.95,5.0,fr,33170,30,1401777,1,1,Active Shallow Crust,128.8893,89.98974,0.0,12/11/1532 +3.26135,48.2489,7973,1,8,18,59,39,5.45,27.5,fr,33171,159,1401830,1,1,Active Shallow Crust,0.0,89.98982,0.0,01/08/7973 +3.26135,48.2489,821,9,20,15,14,38,5.75,5.0,fr,33172,16,1401864,1,1,Active Shallow Crust,359.9999,89.99013,0.0,09/20/0821 +3.26372,50.5384,9387,9,7,6,15,5,3.75,5.0,fr,33173,187,1402584,1,2,Active Shallow Crust,0.0,89.98981,0.0,09/07/9387 +3.26372,50.5384,9535,3,24,10,37,3,3.75,5.0,fr,33174,190,1402584,1,2,Active Shallow Crust,0.0,89.98981,0.0,03/24/9535 +6.42888,50.31357,9258,5,6,10,23,33,3.55,5.0,fr,33175,185,1403040,1,1,Active Shallow Crust,0.0,89.98712,0.0,05/06/9258 +6.42888,50.31357,4381,12,25,16,36,44,3.55,27.5,fr,33176,87,1403042,1,1,Active Shallow Crust,0.0,89.98712,0.0,12/25/4381 +6.42888,50.31357,4929,8,13,18,13,20,3.55,5.0,fr,33177,98,1403043,1,2,Active Shallow Crust,240.0131,57.99822,0.0,08/13/4929 +6.42888,50.31357,8122,6,6,3,48,26,3.55,5.0,fr,33178,162,1403043,1,2,Active Shallow Crust,240.0131,57.99822,0.0,06/06/8122 +6.42888,50.31357,8749,10,20,23,30,4,3.65,5.0,fr,33179,174,1403052,1,2,Active Shallow Crust,0.0,89.98852,0.0,10/20/8749 +6.42888,50.31357,6503,10,30,5,30,59,3.65,5.0,fr,33180,130,1403052,1,2,Active Shallow Crust,0.0,89.98852,0.0,10/30/6503 +6.42888,50.31357,1127,9,22,18,41,58,3.75,5.0,fr,33181,22,1403073,1,1,Active Shallow Crust,128.8958,89.96706,0.0,09/22/1127 +6.42888,50.31357,3502,3,2,10,43,7,4.05,5.0,fr,33182,70,1403100,1,1,Active Shallow Crust,0.0,89.98914,0.0,03/02/3502 +6.42888,50.31357,744,12,11,8,20,17,4.15,5.0,fr,33183,14,1403112,1,1,Active Shallow Crust,0.0,89.99032,0.0,12/11/0744 +6.42888,50.31357,3226,7,8,13,21,10,4.25,5.0,fr,33184,64,1403130,1,1,Active Shallow Crust,0.0,89.99127,-90.0,07/08/3226 +6.42888,50.31357,8728,6,30,23,44,5,5.25,5.0,fr,33185,174,1403247,1,1,Active Shallow Crust,240.0283,58.00076,0.0,06/30/8728 +6.428876,50.31356,9094,5,27,12,20,46,6.35,7.567806,fr,33186,181,1403385,1,1,Active Shallow Crust,128.8357,89.99102,0.0,05/27/9094 +0.62105,42.0009,2272,4,22,0,58,31,3.55,15.0,fr,33187,45,1403524,1,1,Active Shallow Crust,240.0118,57.99824,0.0,04/22/2272 +0.62105,42.0009,3716,5,4,20,32,35,3.65,15.0,fr,33188,74,1403533,1,1,Active Shallow Crust,0.0,89.98998,0.0,05/04/3716 +0.62105,42.0009,4513,4,7,10,32,35,3.75,5.0,fr,33189,90,1403544,1,1,Active Shallow Crust,0.0,89.99033,0.0,04/07/4513 +0.62105,42.0009,7331,3,15,15,35,31,4.15,5.0,fr,33190,146,1403598,1,1,Active Shallow Crust,0.0,89.99003,-90.0,03/15/7331 +0.62105,42.0009,7581,7,24,12,30,38,4.55,5.0,fr,33191,151,1403640,1,1,Active Shallow Crust,0.0,89.98993,0.0,07/24/7581 +3.20642,45.15422,2261,6,19,16,15,0,3.55,15.0,fr,33192,45,1404001,1,1,Active Shallow Crust,0.0,89.98933,0.0,06/19/2261 +3.20642,45.15422,5833,4,10,9,47,28,3.55,5.0,fr,33193,116,1404003,1,1,Active Shallow Crust,240.0123,57.99835,0.0,04/10/5833 +3.20642,45.15422,5907,9,3,13,29,52,3.65,15.0,fr,33194,118,1404022,1,1,Active Shallow Crust,128.901,89.9635,0.0,09/03/5907 +3.20642,45.15422,9978,1,10,1,15,42,3.75,15.0,fr,33195,199,1404034,1,1,Active Shallow Crust,128.8972,89.96719,0.0,01/10/9978 +3.20642,45.15422,2279,1,19,15,10,22,3.95,5.0,fr,33196,45,1404048,1,1,Active Shallow Crust,0.0,89.99103,0.0,01/19/2279 +3.20642,45.15422,3408,9,3,19,54,21,3.95,5.0,fr,33197,68,1404054,1,2,Active Shallow Crust,0.0,89.99092,-90.0,09/03/3408 +3.20642,45.15422,926,7,18,16,56,10,3.95,5.0,fr,33198,18,1404054,1,2,Active Shallow Crust,0.0,89.99092,-90.0,07/18/0926 +3.20642,45.15422,9094,2,5,19,35,20,4.05,5.0,fr,33199,181,1404060,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/05/9094 +3.20642,45.15422,4814,11,22,11,52,11,4.05,5.0,fr,33200,96,1404066,1,1,Active Shallow Crust,0.0,89.98988,-90.0,11/22/4814 +3.20642,45.15422,5164,10,1,15,46,9,4.15,5.0,fr,33201,103,1404072,1,1,Active Shallow Crust,0.0,89.98931,0.0,10/01/5164 +3.20642,45.15422,4450,5,6,20,36,47,4.35,15.0,fr,33202,88,1404100,1,1,Active Shallow Crust,240.0083,57.99563,0.0,05/06/4450 +3.20642,45.15422,8650,4,7,20,25,30,4.45,5.0,fr,33203,172,1404108,1,1,Active Shallow Crust,0.0,89.98991,0.0,04/07/8650 +3.20642,45.15422,5925,1,2,17,36,46,4.55,5.0,fr,33204,118,1404120,1,1,Active Shallow Crust,0.0,89.98988,0.0,01/02/5925 +3.20642,45.15422,5417,12,17,9,11,30,4.55,15.0,fr,33205,108,1404121,1,1,Active Shallow Crust,0.0,89.98988,0.0,12/17/5417 +6.9396,47.08948,4285,9,23,13,45,3,3.55,5.0,fr,33206,85,1404480,1,2,Active Shallow Crust,0.0,89.99313,0.0,09/23/4285 +6.9396,47.08948,8788,6,22,5,43,41,3.55,5.0,fr,33207,175,1404480,1,2,Active Shallow Crust,0.0,89.99313,0.0,06/22/8788 +6.9396,47.08948,3495,11,30,16,3,13,3.55,15.0,fr,33208,69,1404481,1,4,Active Shallow Crust,0.0,89.99313,0.0,11/30/3495 +6.9396,47.08948,8272,12,3,11,59,55,3.55,15.0,fr,33209,165,1404481,1,4,Active Shallow Crust,0.0,89.99313,0.0,12/03/8272 +6.9396,47.08948,3851,6,29,9,22,56,3.55,15.0,fr,33210,77,1404481,1,4,Active Shallow Crust,0.0,89.99313,0.0,06/29/3851 +6.9396,47.08948,1059,4,2,0,32,26,3.55,15.0,fr,33211,21,1404481,1,4,Active Shallow Crust,0.0,89.99313,0.0,04/02/1059 +6.9396,47.08948,7109,2,18,3,51,40,3.55,27.5,fr,33212,142,1404482,1,2,Active Shallow Crust,0.0,89.99313,0.0,02/18/7109 +6.9396,47.08948,2989,8,14,22,36,59,3.55,27.5,fr,33213,59,1404482,1,2,Active Shallow Crust,0.0,89.99313,0.0,08/14/2989 +6.9396,47.08948,2548,8,16,20,22,50,3.55,5.0,fr,33214,50,1404483,1,1,Active Shallow Crust,240.0125,57.9986,0.0,08/16/2548 +6.9396,47.08948,1555,3,12,2,31,56,3.55,15.0,fr,33215,31,1404484,1,1,Active Shallow Crust,240.0125,57.9986,0.0,03/12/1555 +6.9396,47.08948,4785,7,18,8,42,49,3.55,5.0,fr,33216,95,1404486,1,1,Active Shallow Crust,0.0,89.99306,-90.0,07/18/4785 +6.9396,47.08948,9563,7,8,2,18,0,3.55,5.0,fr,33217,191,1404489,1,2,Active Shallow Crust,128.8959,89.99313,0.0,07/08/9563 +6.9396,47.08948,2719,5,1,13,49,7,3.55,5.0,fr,33218,54,1404489,1,2,Active Shallow Crust,128.8959,89.99313,0.0,05/01/2719 +6.9396,47.08948,6912,5,28,8,19,8,3.65,5.0,fr,33219,138,1404492,1,7,Active Shallow Crust,0.0,89.98776,0.0,05/28/6912 +6.9396,47.08948,1782,8,3,18,6,11,3.65,5.0,fr,33220,35,1404492,1,7,Active Shallow Crust,0.0,89.98776,0.0,08/03/1782 +6.9396,47.08948,1107,4,24,21,46,46,3.65,5.0,fr,33221,22,1404492,1,7,Active Shallow Crust,0.0,89.98776,0.0,04/24/1107 +6.9396,47.08948,4028,1,22,13,49,55,3.65,5.0,fr,33222,80,1404492,1,7,Active Shallow Crust,0.0,89.98776,0.0,01/22/4028 +6.9396,47.08948,4411,1,7,17,31,45,3.65,5.0,fr,33223,88,1404492,1,7,Active Shallow Crust,0.0,89.98776,0.0,01/07/4411 +6.9396,47.08948,8864,9,2,15,6,50,3.65,5.0,fr,33224,177,1404492,1,7,Active Shallow Crust,0.0,89.98776,0.0,09/02/8864 +6.9396,47.08948,5080,4,16,1,39,22,3.65,5.0,fr,33225,101,1404492,1,7,Active Shallow Crust,0.0,89.98776,0.0,04/16/5080 +6.9396,47.08948,8078,1,30,21,5,2,3.65,15.0,fr,33226,161,1404493,1,5,Active Shallow Crust,0.0,89.98776,0.0,01/30/8078 +6.9396,47.08948,2757,2,9,20,31,29,3.65,15.0,fr,33227,55,1404493,1,5,Active Shallow Crust,0.0,89.98776,0.0,02/09/2757 +6.9396,47.08948,2326,10,23,20,8,16,3.65,15.0,fr,33228,46,1404493,1,5,Active Shallow Crust,0.0,89.98776,0.0,10/23/2326 +6.9396,47.08948,4824,7,3,22,43,56,3.65,15.0,fr,33229,96,1404493,1,5,Active Shallow Crust,0.0,89.98776,0.0,07/03/4824 +6.9396,47.08948,92,2,25,0,48,27,3.65,15.0,fr,33230,1,1404493,1,5,Active Shallow Crust,0.0,89.98776,0.0,02/25/0092 +6.9396,47.08948,2322,1,19,21,25,9,3.65,5.0,fr,33231,46,1404495,1,1,Active Shallow Crust,240.0018,58.01273,0.0,01/19/2322 +6.9396,47.08948,96,10,14,8,26,59,3.65,15.0,fr,33232,1,1404496,1,1,Active Shallow Crust,240.0018,58.01273,0.0,10/14/0096 +6.9396,47.08948,3364,9,26,20,17,1,3.65,5.0,fr,33233,67,1404501,1,2,Active Shallow Crust,128.9002,89.96354,0.0,09/26/3364 +6.9396,47.08948,868,5,24,9,51,54,3.65,5.0,fr,33234,17,1404501,1,2,Active Shallow Crust,128.9002,89.96354,0.0,05/24/0868 +6.9396,47.08948,5046,4,15,22,23,16,3.65,27.5,fr,33235,100,1404503,1,1,Active Shallow Crust,128.9002,89.96354,0.0,04/15/5046 +6.9396,47.08948,8332,4,23,2,34,40,3.75,5.0,fr,33236,166,1404504,1,3,Active Shallow Crust,0.0,89.98909,0.0,04/23/8332 +6.9396,47.08948,399,11,29,9,58,18,3.75,5.0,fr,33237,7,1404504,1,3,Active Shallow Crust,0.0,89.98909,0.0,11/29/0399 +6.9396,47.08948,6145,1,16,12,23,56,3.75,5.0,fr,33238,122,1404504,1,3,Active Shallow Crust,0.0,89.98909,0.0,01/16/6145 +6.9396,47.08948,6026,3,19,7,19,44,3.75,15.0,fr,33239,120,1404505,1,1,Active Shallow Crust,0.0,89.98909,0.0,03/19/6026 +6.9396,47.08948,6989,1,15,0,42,27,3.75,5.0,fr,33240,139,1404507,1,2,Active Shallow Crust,240.0091,58.01789,0.0,01/15/6989 +6.9396,47.08948,4137,5,14,12,52,11,3.75,5.0,fr,33241,82,1404507,1,2,Active Shallow Crust,240.0091,58.01789,0.0,05/14/4137 +6.9396,47.08948,2339,5,5,6,50,56,3.75,5.0,fr,33242,46,1404510,1,1,Active Shallow Crust,0.0,89.98897,-90.0,05/05/2339 +6.9396,47.08948,2309,9,7,14,43,29,3.75,5.0,fr,33243,46,1404513,1,1,Active Shallow Crust,128.8971,89.9675,0.0,09/07/2309 +6.9396,47.08948,5162,8,3,21,53,29,3.75,15.0,fr,33244,103,1404514,1,1,Active Shallow Crust,128.8971,89.9675,0.0,08/03/5162 +6.9396,47.08948,6139,5,29,10,15,17,3.85,5.0,fr,33245,122,1404516,1,4,Active Shallow Crust,0.0,89.99028,0.0,05/29/6139 +6.9396,47.08948,5761,5,2,13,18,3,3.85,5.0,fr,33246,115,1404516,1,4,Active Shallow Crust,0.0,89.99028,0.0,05/02/5761 +6.9396,47.08948,3970,7,25,5,8,23,3.85,5.0,fr,33247,79,1404516,1,4,Active Shallow Crust,0.0,89.99028,0.0,07/25/3970 +6.9396,47.08948,9874,12,16,0,53,20,3.85,5.0,fr,33248,197,1404516,1,4,Active Shallow Crust,0.0,89.99028,0.0,12/16/9874 +6.9396,47.08948,2885,2,2,1,16,44,3.85,15.0,fr,33249,57,1404517,1,4,Active Shallow Crust,0.0,89.99028,0.0,02/02/2885 +6.9396,47.08948,1058,7,3,5,9,35,3.85,15.0,fr,33250,21,1404517,1,4,Active Shallow Crust,0.0,89.99028,0.0,07/03/1058 +6.9396,47.08948,2751,1,31,17,2,5,3.85,15.0,fr,33251,55,1404517,1,4,Active Shallow Crust,0.0,89.99028,0.0,01/31/2751 +6.9396,47.08948,8491,5,12,19,47,31,3.85,15.0,fr,33252,169,1404517,1,4,Active Shallow Crust,0.0,89.99028,0.0,05/12/8491 +6.9396,47.08948,8840,12,1,21,39,28,3.85,5.0,fr,33253,176,1404519,1,2,Active Shallow Crust,240.011,57.99733,0.0,12/01/8840 +6.9396,47.08948,3391,12,15,17,17,19,3.85,5.0,fr,33254,67,1404519,1,2,Active Shallow Crust,240.011,57.99733,0.0,12/15/3391 +6.9396,47.08948,8168,6,29,21,10,30,3.85,5.0,fr,33255,163,1404522,1,2,Active Shallow Crust,0.0,89.99017,-90.0,06/29/8168 +6.9396,47.08948,4291,11,1,14,55,35,3.85,5.0,fr,33256,85,1404522,1,2,Active Shallow Crust,0.0,89.99017,-90.0,11/01/4291 +6.9396,47.08948,1295,10,1,11,41,27,3.85,15.0,fr,33257,25,1404523,1,1,Active Shallow Crust,0.0,89.99017,-90.0,10/01/1295 +6.9396,47.08948,1773,1,15,10,53,58,3.85,5.0,fr,33258,35,1404525,1,3,Active Shallow Crust,128.8967,89.99271,0.0,01/15/1773 +6.9396,47.08948,4193,9,26,8,26,45,3.85,5.0,fr,33259,83,1404525,1,3,Active Shallow Crust,128.8967,89.99271,0.0,09/26/4193 +6.9396,47.08948,5290,9,3,14,3,54,3.85,5.0,fr,33260,105,1404525,1,3,Active Shallow Crust,128.8967,89.99271,0.0,09/03/5290 +6.9396,47.08948,4365,1,14,21,44,40,3.85,15.0,fr,33261,87,1404526,1,1,Active Shallow Crust,128.8967,89.99271,0.0,01/14/4365 +6.9396,47.08948,7743,4,22,9,49,37,3.95,5.0,fr,33262,154,1404528,1,1,Active Shallow Crust,0.0,89.99133,0.0,04/22/7743 +6.9396,47.08948,2231,8,10,6,34,28,3.95,15.0,fr,33263,44,1404529,1,1,Active Shallow Crust,0.0,89.99133,0.0,08/10/2231 +6.9396,47.08948,98,2,3,18,1,14,3.95,27.5,fr,33264,1,1404530,1,2,Active Shallow Crust,0.0,89.99133,0.0,02/03/0098 +6.9396,47.08948,5085,11,20,19,9,47,3.95,27.5,fr,33265,101,1404530,1,2,Active Shallow Crust,0.0,89.99133,0.0,11/20/5085 +6.9396,47.08948,854,8,18,3,44,7,3.95,5.0,fr,33266,17,1404534,1,1,Active Shallow Crust,0.0,89.99123,-90.0,08/18/0854 +6.9396,47.08948,8960,10,23,0,19,5,4.05,5.0,fr,33267,179,1404540,1,4,Active Shallow Crust,0.0,89.98842,0.0,10/23/8960 +6.9396,47.08948,6149,12,4,13,52,4,4.05,5.0,fr,33268,122,1404540,1,4,Active Shallow Crust,0.0,89.98842,0.0,12/04/6149 +6.9396,47.08948,355,9,27,8,30,20,4.05,5.0,fr,33269,7,1404540,1,4,Active Shallow Crust,0.0,89.98842,0.0,09/27/0355 +6.9396,47.08948,918,9,17,22,58,19,4.05,5.0,fr,33270,18,1404540,1,4,Active Shallow Crust,0.0,89.98842,0.0,09/17/0918 +6.9396,47.08948,4341,1,20,17,43,11,4.15,5.0,fr,33271,86,1404552,1,1,Active Shallow Crust,0.0,89.98968,0.0,01/20/4341 +6.9396,47.08948,740,9,4,2,36,48,4.15,27.5,fr,33272,14,1404554,1,1,Active Shallow Crust,0.0,89.98968,0.0,09/04/0740 +6.9396,47.08948,4656,4,15,6,48,46,4.15,5.0,fr,33273,93,1404555,1,1,Active Shallow Crust,240.0087,57.99747,0.0,04/15/4656 +6.9396,47.08948,9597,12,11,0,56,15,4.15,15.0,fr,33274,191,1404559,1,1,Active Shallow Crust,0.0,89.98956,-90.0,12/11/9597 +6.9396,47.08948,2373,12,3,14,16,15,4.25,5.0,fr,33275,47,1404564,1,3,Active Shallow Crust,0.0,89.9908,0.0,12/03/2373 +6.9396,47.08948,3425,8,24,2,26,34,4.25,5.0,fr,33276,68,1404564,1,3,Active Shallow Crust,0.0,89.9908,0.0,08/24/3425 +6.9396,47.08948,1558,9,7,3,58,11,4.25,5.0,fr,33277,31,1404564,1,3,Active Shallow Crust,0.0,89.9908,0.0,09/07/1558 +6.9396,47.08948,8175,3,10,4,4,19,4.25,5.0,fr,33278,163,1404570,1,1,Active Shallow Crust,0.0,89.99069,-90.0,03/10/8175 +6.9396,47.08948,8409,6,26,22,17,17,4.35,5.0,fr,33279,168,1404576,1,4,Active Shallow Crust,0.0,89.98907,0.0,06/26/8409 +6.9396,47.08948,1859,3,19,17,19,20,4.35,5.0,fr,33280,37,1404576,1,4,Active Shallow Crust,0.0,89.98907,0.0,03/19/1859 +6.9396,47.08948,3480,1,20,5,4,3,4.35,5.0,fr,33281,69,1404576,1,4,Active Shallow Crust,0.0,89.98907,0.0,01/20/3480 +6.9396,47.08948,471,10,8,1,37,28,4.35,5.0,fr,33282,9,1404576,1,4,Active Shallow Crust,0.0,89.98907,0.0,10/08/0471 +6.9396,47.08948,1594,6,15,9,40,32,4.35,15.0,fr,33283,31,1404577,1,1,Active Shallow Crust,0.0,89.98907,0.0,06/15/1594 +6.9396,47.08948,9266,5,13,11,18,48,4.45,5.0,fr,33284,185,1404588,1,2,Active Shallow Crust,0.0,89.99026,0.0,05/13/9266 +6.9396,47.08948,7195,3,26,1,46,18,4.45,5.0,fr,33285,143,1404588,1,2,Active Shallow Crust,0.0,89.99026,0.0,03/26/7195 +6.9396,47.08948,4549,4,3,20,8,8,4.45,15.0,fr,33286,90,1404589,1,1,Active Shallow Crust,0.0,89.99026,0.0,04/03/4549 +6.9396,47.08948,6667,2,21,4,50,50,4.45,5.0,fr,33287,133,1404591,1,1,Active Shallow Crust,240.0053,57.995,0.0,02/21/6667 +6.9396,47.08948,2197,12,21,10,17,50,4.55,5.0,fr,33288,43,1404600,1,1,Active Shallow Crust,0.0,89.98914,0.0,12/21/2197 +6.9396,47.08948,9105,10,15,16,53,18,4.65,5.0,fr,33289,182,1404612,1,1,Active Shallow Crust,0.0,89.99033,0.0,10/15/9105 +6.9396,47.08948,6,10,21,12,36,19,4.65,5.0,fr,33290,0,1404621,1,1,Active Shallow Crust,128.8909,89.98677,0.0,10/21/0006 +6.9396,47.08948,5803,4,21,7,54,2,4.75,5.0,fr,33291,116,1404624,1,1,Active Shallow Crust,0.0,89.98965,0.0,04/21/5803 +6.9396,47.08948,4688,4,25,23,47,1,4.75,5.0,fr,33292,93,1404633,1,1,Active Shallow Crust,128.8889,89.98775,0.0,04/25/4688 +6.9396,47.08948,5488,3,10,0,2,59,4.85,5.0,fr,33293,109,1404636,1,1,Active Shallow Crust,0.0,89.98924,0.0,03/10/5488 +6.9396,47.08948,5499,6,29,12,56,5,4.85,5.0,fr,33294,109,1404639,1,1,Active Shallow Crust,240.0174,58.00243,0.0,06/29/5499 +6.9396,47.08948,8491,1,21,21,27,53,5.05,15.0,fr,33295,169,1404661,1,1,Active Shallow Crust,0.0,89.99023,0.0,01/21/8491 +6.9396,47.08948,973,9,15,4,48,39,5.15,5.0,fr,33296,19,1404678,1,2,Active Shallow Crust,0.0,89.99009,-90.0,09/15/0973 +6.9396,47.08948,9216,11,27,6,2,14,5.15,5.0,fr,33297,184,1404678,1,2,Active Shallow Crust,0.0,89.99009,-90.0,11/27/9216 +6.939601,47.08948,4850,10,30,21,12,13,6.05,5.357596,fr,33298,96,1404780,1,1,Active Shallow Crust,0.0,89.98995,0.0,10/30/4850 +6.9396,47.08948,5701,3,27,0,11,57,6.05,5.0,fr,33299,114,1404783,1,1,Active Shallow Crust,240.0573,58.00042,0.0,03/27/5701 +1.79202,41.07905,3273,3,14,14,45,15,3.55,15.0,fr,33300,65,1405441,1,1,Active Shallow Crust,0.0,89.9905,0.0,03/14/3273 +1.79202,41.07905,1199,12,9,14,4,17,3.55,5.0,fr,33301,23,1405446,1,1,Active Shallow Crust,0.0,89.99039,-90.0,12/09/1199 +1.79202,41.07905,4233,3,29,2,15,35,3.65,5.0,fr,33302,84,1405455,1,1,Active Shallow Crust,240.0008,58.01278,0.0,03/29/4233 +1.79202,41.07905,2123,7,25,22,42,56,3.95,5.0,fr,33303,42,1405488,1,1,Active Shallow Crust,0.0,89.99041,0.0,07/25/2123 +1.79202,41.07905,9020,8,15,7,50,17,4.05,5.0,fr,33304,180,1405500,1,1,Active Shallow Crust,0.0,89.99038,0.0,08/15/9020 +1.79202,41.07905,2680,2,14,6,18,9,4.25,5.0,fr,33305,53,1405527,1,1,Active Shallow Crust,240.0066,57.99395,0.0,02/14/2680 +1.79202,41.07905,8203,1,15,15,8,30,4.45,15.0,fr,33306,164,1405549,1,1,Active Shallow Crust,0.0,89.98988,0.0,01/15/8203 +1.79202,41.07905,5574,5,27,0,26,55,4.45,27.5,fr,33307,111,1405550,1,1,Active Shallow Crust,0.0,89.98988,0.0,05/27/5574 +1.79202,41.07905,3950,8,14,11,9,5,4.45,5.0,fr,33308,78,1405554,1,1,Active Shallow Crust,0.0,89.98977,-90.0,08/14/3950 +1.79202,41.07905,1500,3,10,18,24,18,4.65,15.0,fr,33309,29,1405573,1,1,Active Shallow Crust,0.0,89.98982,0.0,03/10/1500 +1.79202,41.07905,3623,6,12,17,53,58,4.65,5.0,fr,33310,72,1405575,1,1,Active Shallow Crust,240.0091,57.99398,0.0,06/12/3623 +1.79202,41.07905,3429,3,20,19,44,17,5.05,5.0,fr,33311,68,1405620,1,1,Active Shallow Crust,0.0,89.98986,0.0,03/20/3429 +1.79202,41.07905,6287,6,14,12,54,22,5.05,15.0,fr,33312,125,1405621,1,1,Active Shallow Crust,0.0,89.98986,0.0,06/14/6287 +-2.6391,43.44074,5,12,25,2,11,50,3.55,15.0,fr,33313,0,1405927,1,1,Active Shallow Crust,0.0,89.98889,-90.0,12/25/0005 +-2.6391,43.44074,3323,4,27,21,8,18,3.65,5.0,fr,33314,66,1405932,1,1,Active Shallow Crust,0.0,89.99021,0.0,04/27/3323 +-2.6391,43.44074,7260,11,15,5,26,46,3.85,5.0,fr,33315,145,1405959,1,1,Active Shallow Crust,240.0104,57.99769,0.0,11/15/7260 +-2.6391,43.44074,5625,7,12,21,53,53,3.95,15.0,fr,33316,112,1405969,1,1,Active Shallow Crust,0.0,89.99076,0.0,07/12/5625 +-2.6391,43.44074,8656,11,29,8,37,4,4.35,15.0,fr,33317,173,1406020,1,1,Active Shallow Crust,240.0077,57.99562,0.0,11/29/8656 +-2.6391,43.44074,4800,10,2,8,25,26,4.45,15.0,fr,33318,95,1406032,1,1,Active Shallow Crust,240.0044,57.99451,0.0,10/02/4800 +0.24538,46.85006,9775,1,19,12,32,7,3.55,15.0,fr,33319,195,1406401,1,1,Active Shallow Crust,0.0,89.99009,0.0,01/19/9775 +0.24538,46.85006,9297,1,17,3,27,48,3.55,5.0,fr,33320,185,1406403,1,2,Active Shallow Crust,240.0122,57.99819,0.0,01/17/9297 +0.24538,46.85006,8085,5,15,21,16,5,3.55,5.0,fr,33321,161,1406403,1,2,Active Shallow Crust,240.0122,57.99819,0.0,05/15/8085 +0.24538,46.85006,3972,9,27,8,45,39,3.65,5.0,fr,33322,79,1406412,1,2,Active Shallow Crust,0.0,89.99001,0.0,09/27/3972 +0.24538,46.85006,8371,5,23,14,18,6,3.65,5.0,fr,33323,167,1406412,1,2,Active Shallow Crust,0.0,89.99001,0.0,05/23/8371 +0.24538,46.85006,2458,4,10,14,24,24,3.65,15.0,fr,33324,49,1406413,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/10/2458 +0.24538,46.85006,4667,8,30,5,39,2,3.75,5.0,fr,33325,93,1406424,1,2,Active Shallow Crust,0.0,89.99007,0.0,08/30/4667 +0.24538,46.85006,2758,5,11,7,41,55,3.75,5.0,fr,33326,55,1406424,1,2,Active Shallow Crust,0.0,89.99007,0.0,05/11/2758 +0.24538,46.85006,290,1,14,23,50,32,3.75,15.0,fr,33327,5,1406425,1,2,Active Shallow Crust,0.0,89.99007,0.0,01/14/0290 +0.24538,46.85006,1012,7,9,4,51,2,3.75,15.0,fr,33328,20,1406425,1,2,Active Shallow Crust,0.0,89.99007,0.0,07/09/1012 +0.24538,46.85006,9494,11,29,15,45,54,3.75,27.5,fr,33329,189,1406432,1,1,Active Shallow Crust,0.0,89.98995,-90.0,11/29/9494 +0.24538,46.85006,1164,4,3,18,22,51,3.85,5.0,fr,33330,23,1406439,1,1,Active Shallow Crust,240.0109,57.99782,0.0,04/03/1164 +0.24538,46.85006,2181,10,24,5,18,20,3.95,5.0,fr,33331,43,1406448,1,2,Active Shallow Crust,0.0,89.98994,0.0,10/24/2181 +0.24538,46.85006,5822,5,1,20,56,39,3.95,5.0,fr,33332,116,1406448,1,2,Active Shallow Crust,0.0,89.98994,0.0,05/01/5822 +0.24538,46.85006,6562,6,6,13,52,25,3.95,15.0,fr,33333,131,1406452,1,1,Active Shallow Crust,240.0198,58.005,0.0,06/06/6562 +0.24538,46.85006,438,7,6,15,58,44,4.05,5.0,fr,33334,8,1406460,1,1,Active Shallow Crust,0.0,89.98994,0.0,07/06/0438 +0.24538,46.85006,9576,11,5,2,15,34,4.05,5.0,fr,33335,191,1406469,1,1,Active Shallow Crust,128.8904,89.99376,0.0,11/05/9576 +0.24538,46.85006,9088,2,4,21,24,26,4.25,5.0,fr,33336,181,1406484,1,1,Active Shallow Crust,0.0,89.98999,0.0,02/04/9088 +0.24538,46.85006,8785,1,3,3,16,39,4.35,5.0,fr,33337,175,1406505,1,1,Active Shallow Crust,128.8977,89.98275,0.0,01/03/8785 +0.24538,46.85006,8460,12,13,21,12,18,4.55,15.0,fr,33338,169,1406521,1,1,Active Shallow Crust,0.0,89.98998,0.0,12/13/8460 +6.75169,44.58498,7945,3,30,22,8,19,3.55,5.0,fr,33339,158,1406880,1,6,Active Shallow Crust,0.0,89.99282,0.0,03/30/7945 +6.75169,44.58498,1241,10,4,0,27,8,3.55,5.0,fr,33340,24,1406880,1,6,Active Shallow Crust,0.0,89.99282,0.0,10/04/1241 +6.75169,44.58498,1309,12,23,21,30,11,3.55,5.0,fr,33341,26,1406880,1,6,Active Shallow Crust,0.0,89.99282,0.0,12/23/1309 +6.75169,44.58498,2088,1,30,15,52,53,3.55,5.0,fr,33342,41,1406880,1,6,Active Shallow Crust,0.0,89.99282,0.0,01/30/2088 +6.75169,44.58498,4909,4,7,23,51,15,3.55,5.0,fr,33343,98,1406880,1,6,Active Shallow Crust,0.0,89.99282,0.0,04/07/4909 +6.75169,44.58498,9025,6,19,9,6,18,3.55,5.0,fr,33344,180,1406880,1,6,Active Shallow Crust,0.0,89.99282,0.0,06/19/9025 +6.75169,44.58498,9537,5,11,13,6,5,3.55,15.0,fr,33345,190,1406881,1,3,Active Shallow Crust,0.0,89.99282,0.0,05/11/9537 +6.75169,44.58498,5247,11,10,2,45,44,3.55,15.0,fr,33346,104,1406881,1,3,Active Shallow Crust,0.0,89.99282,0.0,11/10/5247 +6.75169,44.58498,5627,4,19,1,35,0,3.55,15.0,fr,33347,112,1406881,1,3,Active Shallow Crust,0.0,89.99282,0.0,04/19/5627 +6.75169,44.58498,2511,7,19,6,8,30,3.55,27.5,fr,33348,50,1406882,1,1,Active Shallow Crust,0.0,89.99282,0.0,07/19/2511 +6.75169,44.58498,7843,11,5,9,18,33,3.55,5.0,fr,33349,156,1406883,1,1,Active Shallow Crust,240.0111,57.99908,0.0,11/05/7843 +6.75169,44.58498,7504,11,1,3,11,47,3.55,5.0,fr,33350,150,1406886,1,1,Active Shallow Crust,0.0,89.99274,-90.0,11/01/7504 +6.75169,44.58498,4093,6,26,6,35,5,3.55,5.0,fr,33351,81,1406889,1,2,Active Shallow Crust,128.8964,89.99282,0.0,06/26/4093 +6.75169,44.58498,1685,3,11,7,26,29,3.55,5.0,fr,33352,33,1406889,1,2,Active Shallow Crust,128.8964,89.99282,0.0,03/11/1685 +6.75169,44.58498,7571,9,13,15,33,26,3.65,5.0,fr,33353,151,1406892,1,6,Active Shallow Crust,0.0,89.9872,0.0,09/13/7571 +6.75169,44.58498,9357,5,30,12,25,43,3.65,5.0,fr,33354,187,1406892,1,6,Active Shallow Crust,0.0,89.9872,0.0,05/30/9357 +6.75169,44.58498,8019,10,31,1,37,20,3.65,5.0,fr,33355,160,1406892,1,6,Active Shallow Crust,0.0,89.9872,0.0,10/31/8019 +6.75169,44.58498,7861,1,30,9,21,43,3.65,5.0,fr,33356,157,1406892,1,6,Active Shallow Crust,0.0,89.9872,0.0,01/30/7861 +6.75169,44.58498,4141,6,23,21,20,29,3.65,5.0,fr,33357,82,1406892,1,6,Active Shallow Crust,0.0,89.9872,0.0,06/23/4141 +6.75169,44.58498,7100,5,29,18,6,19,3.65,5.0,fr,33358,141,1406892,1,6,Active Shallow Crust,0.0,89.9872,0.0,05/29/7100 +6.75169,44.58498,5992,10,8,17,37,49,3.65,15.0,fr,33359,119,1406893,1,3,Active Shallow Crust,0.0,89.9872,0.0,10/08/5992 +6.75169,44.58498,6828,8,23,15,6,56,3.65,15.0,fr,33360,136,1406893,1,3,Active Shallow Crust,0.0,89.9872,0.0,08/23/6828 +6.75169,44.58498,7798,4,16,9,30,49,3.65,15.0,fr,33361,155,1406893,1,3,Active Shallow Crust,0.0,89.9872,0.0,04/16/7798 +6.75169,44.58498,7062,12,24,18,36,46,3.65,15.0,fr,33362,141,1406896,1,1,Active Shallow Crust,239.9999,58.01347,0.0,12/24/7062 +6.75169,44.58498,6017,1,9,12,43,46,3.65,15.0,fr,33363,120,1406899,1,1,Active Shallow Crust,0.0,89.98705,-90.0,01/09/6017 +6.75169,44.58498,9338,11,4,22,13,16,3.65,5.0,fr,33364,186,1406901,1,2,Active Shallow Crust,128.9011,89.96349,0.0,11/04/9338 +6.75169,44.58498,7869,2,19,13,58,13,3.65,5.0,fr,33365,157,1406901,1,2,Active Shallow Crust,128.9011,89.96349,0.0,02/19/7869 +6.75169,44.58498,2701,8,7,11,31,46,3.75,5.0,fr,33366,54,1406904,1,4,Active Shallow Crust,0.0,89.98859,0.0,08/07/2701 +6.75169,44.58498,1685,10,12,12,58,52,3.75,5.0,fr,33367,33,1406904,1,4,Active Shallow Crust,0.0,89.98859,0.0,10/12/1685 +6.75169,44.58498,8653,8,9,11,25,0,3.75,5.0,fr,33368,173,1406904,1,4,Active Shallow Crust,0.0,89.98859,0.0,08/09/8653 +6.75169,44.58498,8549,5,13,21,7,20,3.75,5.0,fr,33369,170,1406904,1,4,Active Shallow Crust,0.0,89.98859,0.0,05/13/8549 +6.75169,44.58498,7029,6,12,8,13,50,3.75,27.5,fr,33370,140,1406906,1,1,Active Shallow Crust,0.0,89.98859,0.0,06/12/7029 +6.75169,44.58498,400,2,9,2,14,27,3.75,5.0,fr,33371,7,1406910,1,2,Active Shallow Crust,0.0,89.98846,-90.0,02/09/0400 +6.75169,44.58498,1343,11,12,12,16,10,3.75,5.0,fr,33372,26,1406910,1,2,Active Shallow Crust,0.0,89.98846,-90.0,11/12/1343 +6.75169,44.58498,2043,12,24,13,56,33,3.75,15.0,fr,33373,40,1406911,1,1,Active Shallow Crust,0.0,89.98846,-90.0,12/24/2043 +6.75169,44.58498,4365,9,30,18,17,16,3.75,27.5,fr,33374,87,1406912,1,1,Active Shallow Crust,0.0,89.98846,-90.0,09/30/4365 +6.75169,44.58498,9953,6,16,23,47,56,3.75,15.0,fr,33375,199,1406914,1,1,Active Shallow Crust,128.8974,89.96746,0.0,06/16/9953 +6.75169,44.58498,3438,12,13,2,25,25,3.85,5.0,fr,33376,68,1406916,1,3,Active Shallow Crust,0.0,89.98983,0.0,12/13/3438 +6.75169,44.58498,2194,9,3,3,15,51,3.85,5.0,fr,33377,43,1406916,1,3,Active Shallow Crust,0.0,89.98983,0.0,09/03/2194 +6.75169,44.58498,493,11,6,15,37,18,3.85,5.0,fr,33378,9,1406916,1,3,Active Shallow Crust,0.0,89.98983,0.0,11/06/0493 +6.75169,44.58498,9346,10,14,13,37,10,3.85,15.0,fr,33379,186,1406917,1,1,Active Shallow Crust,0.0,89.98983,0.0,10/14/9346 +6.75169,44.58498,402,3,2,13,4,22,3.85,27.5,fr,33380,8,1406918,1,1,Active Shallow Crust,0.0,89.98983,0.0,03/02/0402 +6.75169,44.58498,1576,6,22,7,56,45,3.85,5.0,fr,33381,31,1406922,1,1,Active Shallow Crust,0.0,89.98972,-90.0,06/22/1576 +6.75169,44.58498,2744,10,21,13,36,19,3.85,5.0,fr,33382,54,1406925,1,1,Active Shallow Crust,128.8957,89.99492,0.0,10/21/2744 +6.75169,44.58498,7732,5,31,2,17,35,3.95,5.0,fr,33383,154,1406928,1,3,Active Shallow Crust,0.0,89.99094,0.0,05/31/7732 +6.75169,44.58498,894,9,20,6,54,34,3.95,5.0,fr,33384,17,1406928,1,3,Active Shallow Crust,0.0,89.99094,0.0,09/20/0894 +6.75169,44.58498,612,10,3,4,39,6,3.95,5.0,fr,33385,12,1406928,1,3,Active Shallow Crust,0.0,89.99094,0.0,10/03/0612 +6.75169,44.58498,5098,1,16,11,31,2,3.95,15.0,fr,33386,101,1406929,1,1,Active Shallow Crust,0.0,89.99094,0.0,01/16/5098 +6.75169,44.58498,3952,9,8,13,14,7,3.95,5.0,fr,33387,79,1406931,1,1,Active Shallow Crust,240.0199,58.00507,0.0,09/08/3952 +6.75169,44.58498,9100,5,26,16,25,19,4.05,5.0,fr,33388,181,1406940,1,3,Active Shallow Crust,0.0,89.99192,0.0,05/26/9100 +6.75169,44.58498,5036,1,6,10,41,13,4.05,5.0,fr,33389,100,1406940,1,3,Active Shallow Crust,0.0,89.99192,0.0,01/06/5036 +6.75169,44.58498,961,10,25,15,2,56,4.05,5.0,fr,33390,19,1406940,1,3,Active Shallow Crust,0.0,89.99192,0.0,10/25/0961 +6.75169,44.58498,8364,8,3,14,49,48,4.05,5.0,fr,33391,167,1406946,1,1,Active Shallow Crust,0.0,89.99183,-90.0,08/03/8364 +6.75169,44.58498,9824,7,5,11,0,14,4.15,5.0,fr,33392,196,1406952,1,1,Active Shallow Crust,0.0,89.9892,0.0,07/05/9824 +6.75169,44.58498,4763,6,4,19,16,32,4.15,15.0,fr,33393,95,1406956,1,1,Active Shallow Crust,240.008,57.99714,0.0,06/04/4763 +6.75169,44.58498,5767,2,6,2,9,30,4.15,5.0,fr,33394,115,1406958,1,1,Active Shallow Crust,0.0,89.98907,-90.0,02/06/5767 +6.75169,44.58498,6142,5,2,12,14,38,4.35,5.0,fr,33395,122,1406982,1,1,Active Shallow Crust,0.0,89.99133,-90.0,05/02/6142 +6.75169,44.58498,7881,3,22,22,37,16,4.65,5.0,fr,33396,157,1407015,1,1,Active Shallow Crust,240.0101,57.9943,0.0,03/22/7881 +6.75169,44.58498,423,2,3,4,44,17,5.15,5.0,fr,33397,8,1407072,1,1,Active Shallow Crust,0.0,89.98975,0.0,02/03/0423 +6.75169,44.58498,9535,10,8,0,2,10,5.25,5.0,fr,33398,190,1407084,1,1,Active Shallow Crust,0.0,89.98985,0.0,10/08/9535 +6.75169,44.58498,3825,1,15,7,57,39,5.55,5.0,fr,33399,76,1407120,1,1,Active Shallow Crust,0.0,89.98994,0.0,01/15/3825 +-0.14069,47.62706,2846,9,10,11,43,54,3.55,5.0,fr,33400,56,1407360,1,3,Active Shallow Crust,0.0,89.99002,0.0,09/10/2846 +-0.14069,47.62706,9711,2,15,16,16,47,3.55,5.0,fr,33401,194,1407360,1,3,Active Shallow Crust,0.0,89.99002,0.0,02/15/9711 +-0.14069,47.62706,8223,11,26,16,4,40,3.55,5.0,fr,33402,164,1407360,1,3,Active Shallow Crust,0.0,89.99002,0.0,11/26/8223 +-0.14069,47.62706,7158,1,27,14,48,14,3.55,27.5,fr,33403,143,1407362,1,1,Active Shallow Crust,0.0,89.99002,0.0,01/27/7158 +-0.14069,47.62706,797,7,31,10,29,29,3.65,27.5,fr,33404,15,1407377,1,1,Active Shallow Crust,240.0012,58.01281,0.0,07/31/0797 +-0.14069,47.62706,1791,9,6,2,44,1,3.65,5.0,fr,33405,35,1407378,1,1,Active Shallow Crust,0.0,89.99004,-90.0,09/06/1791 +-0.14069,47.62706,5163,6,12,10,47,39,3.65,5.0,fr,33406,103,1407381,1,1,Active Shallow Crust,128.9003,89.96352,0.0,06/12/5163 +-0.14069,47.62706,1643,8,8,10,59,41,3.75,15.0,fr,33407,32,1407385,1,1,Active Shallow Crust,0.0,89.99004,0.0,08/08/1643 +-0.14069,47.62706,2642,11,23,13,56,41,3.95,5.0,fr,33408,52,1407408,1,1,Active Shallow Crust,0.0,89.98995,0.0,11/23/2642 +-0.14069,47.62706,7823,7,6,16,19,19,3.95,5.0,fr,33409,156,1407417,1,1,Active Shallow Crust,128.9002,89.99371,0.0,07/06/7823 +-0.14069,47.62706,5930,9,25,2,16,26,4.05,5.0,fr,33410,118,1407420,1,1,Active Shallow Crust,0.0,89.98997,0.0,09/25/5930 +-0.14069,47.62706,1619,7,27,4,9,35,4.05,15.0,fr,33411,32,1407430,1,1,Active Shallow Crust,128.8904,89.99367,0.0,07/27/1619 +-0.14069,47.62706,7330,6,25,12,4,58,4.15,5.0,fr,33412,146,1407441,1,1,Active Shallow Crust,128.8974,89.99372,0.0,06/25/7330 +-0.14069,47.62706,1545,1,26,1,56,50,4.45,5.0,fr,33413,30,1407468,1,1,Active Shallow Crust,0.0,89.98997,0.0,01/26/1545 +-0.14069,47.62706,1834,9,16,20,5,27,4.45,5.0,fr,33414,36,1407474,1,1,Active Shallow Crust,0.0,89.99001,-90.0,09/16/1834 +-0.14069,47.62706,6408,10,26,5,26,0,5.35,5.0,fr,33415,128,1407576,1,1,Active Shallow Crust,0.0,89.99,0.0,10/26/6408 +-0.76689,50.24351,9467,5,15,20,40,29,3.55,5.0,fr,33416,189,1407840,1,1,Active Shallow Crust,0.0,89.99033,0.0,05/15/9467 +-0.76689,50.24351,7935,2,20,23,22,25,4.45,15.0,fr,33417,158,1407955,1,1,Active Shallow Crust,0.0,89.98988,-90.0,02/20/7935 +-0.76689,50.24351,4868,12,15,5,30,28,4.55,5.0,fr,33418,97,1407960,1,1,Active Shallow Crust,0.0,89.99006,0.0,12/15/4868 +0.90636,48.75438,5571,11,8,3,57,11,3.55,5.0,fr,33419,111,1408320,1,1,Active Shallow Crust,0.0,89.99003,0.0,11/08/5571 +0.90636,48.75438,1687,8,19,17,16,49,3.55,5.0,fr,33420,33,1408323,1,1,Active Shallow Crust,240.0125,57.99813,0.0,08/19/1687 +0.90636,48.75438,3536,4,14,23,46,55,3.75,5.0,fr,33421,70,1408344,1,1,Active Shallow Crust,0.0,89.9901,0.0,04/14/3536 +0.90636,48.75438,363,3,27,8,5,17,3.75,15.0,fr,33422,7,1408354,1,1,Active Shallow Crust,128.8964,89.96735,0.0,03/27/0363 +0.90636,48.75438,8385,1,21,7,37,15,4.25,15.0,fr,33423,167,1408405,1,1,Active Shallow Crust,0.0,89.98997,0.0,01/21/8385 +0.90636,48.75438,7083,5,16,12,38,0,4.25,27.5,fr,33424,141,1408415,1,1,Active Shallow Crust,128.894,89.98091,0.0,05/16/7083 +1.72732,53.18613,8484,3,12,12,0,58,3.55,5.0,fr,33425,169,1408800,1,1,Active Shallow Crust,0.0,89.98943,0.0,03/12/8484 +1.72732,53.18613,7132,4,3,16,43,38,3.55,5.0,fr,33426,142,1408803,1,1,Active Shallow Crust,240.0127,57.99827,0.0,04/03/7132 +1.72732,53.18613,1343,9,26,4,36,44,3.75,5.0,fr,33427,26,1408827,1,1,Active Shallow Crust,240.0093,58.01764,0.0,09/26/1343 +1.72732,53.18613,8181,11,20,18,11,39,5.15,5.0,fr,33428,163,1408992,1,1,Active Shallow Crust,0.0,89.98994,0.0,11/20/8181 +-0.9152,42.66572,7483,7,5,19,4,37,3.55,5.0,fr,33429,149,1409280,1,2,Active Shallow Crust,0.0,89.98981,0.0,07/05/7483 +-0.9152,42.66572,324,11,13,14,2,30,3.55,5.0,fr,33430,6,1409280,1,2,Active Shallow Crust,0.0,89.98981,0.0,11/13/0324 +-0.9152,42.66572,3133,5,15,13,38,33,3.55,5.0,fr,33431,62,1409286,1,3,Active Shallow Crust,0.0,89.98969,-90.0,05/15/3133 +-0.9152,42.66572,6745,8,8,12,2,24,3.55,5.0,fr,33432,134,1409286,1,3,Active Shallow Crust,0.0,89.98969,-90.0,08/08/6745 +-0.9152,42.66572,7969,6,14,4,3,30,3.55,5.0,fr,33433,159,1409286,1,3,Active Shallow Crust,0.0,89.98969,-90.0,06/14/7969 +-0.9152,42.66572,3655,10,26,14,4,9,3.55,27.5,fr,33434,73,1409291,1,1,Active Shallow Crust,128.8967,89.99352,0.0,10/26/3655 +-0.9152,42.66572,1269,2,15,16,41,44,3.65,27.5,fr,33435,25,1409294,1,1,Active Shallow Crust,0.0,89.99009,0.0,02/15/1269 +-0.9152,42.66572,1042,7,24,1,22,41,3.65,5.0,fr,33436,20,1409295,1,1,Active Shallow Crust,240.0008,58.01284,0.0,07/24/1042 +-0.9152,42.66572,508,1,30,7,35,7,3.75,5.0,fr,33437,10,1409304,1,2,Active Shallow Crust,0.0,89.98969,0.0,01/30/0508 +-0.9152,42.66572,1264,3,19,15,39,7,3.75,5.0,fr,33438,25,1409304,1,2,Active Shallow Crust,0.0,89.98969,0.0,03/19/1264 +-0.9152,42.66572,9629,12,8,5,8,16,3.75,5.0,fr,33439,192,1409313,1,1,Active Shallow Crust,128.8968,89.96735,0.0,12/08/9629 +-0.9152,42.66572,5315,1,10,13,43,48,3.75,27.5,fr,33440,106,1409315,1,1,Active Shallow Crust,128.8968,89.96735,0.0,01/10/5315 +-0.9152,42.66572,314,1,13,8,56,27,3.85,5.0,fr,33441,6,1409316,1,3,Active Shallow Crust,0.0,89.99016,0.0,01/13/0314 +-0.9152,42.66572,8146,5,4,11,15,54,3.85,5.0,fr,33442,162,1409316,1,3,Active Shallow Crust,0.0,89.99016,0.0,05/04/8146 +-0.9152,42.66572,9389,6,11,14,30,37,3.85,5.0,fr,33443,187,1409316,1,3,Active Shallow Crust,0.0,89.99016,0.0,06/11/9389 +-0.9152,42.66572,9873,12,2,1,19,2,3.85,15.0,fr,33444,197,1409317,1,2,Active Shallow Crust,0.0,89.99016,0.0,12/02/9873 +-0.9152,42.66572,6796,3,30,12,31,39,3.85,15.0,fr,33445,135,1409317,1,2,Active Shallow Crust,0.0,89.99016,0.0,03/30/6796 +-0.9152,42.66572,9965,3,19,21,28,34,3.85,15.0,fr,33446,199,1409326,1,1,Active Shallow Crust,128.8961,89.99377,0.0,03/19/9965 +-0.9152,42.66572,3481,3,24,11,41,40,4.05,5.0,fr,33447,69,1409340,1,1,Active Shallow Crust,0.0,89.9901,0.0,03/24/3481 +-0.9152,42.66572,162,1,28,0,49,8,4.25,15.0,fr,33448,3,1409365,1,1,Active Shallow Crust,0.0,89.99007,0.0,01/28/0162 +-0.9152,42.66572,4791,5,21,15,56,32,4.45,5.0,fr,33449,95,1409388,1,1,Active Shallow Crust,0.0,89.99014,0.0,05/21/4791 +-0.9152,42.66572,905,1,18,9,47,1,4.75,15.0,fr,33450,18,1409431,1,1,Active Shallow Crust,0.0,89.9901,-90.0,01/18/0905 +2.43424,41.98829,2649,10,23,11,9,56,3.55,5.0,fr,33451,52,1409760,1,2,Active Shallow Crust,0.0,89.98875,0.0,10/23/2649 +2.43424,41.98829,4926,10,21,7,48,31,3.55,5.0,fr,33452,98,1409760,1,2,Active Shallow Crust,0.0,89.98875,0.0,10/21/4926 +2.43424,41.98829,6791,3,6,3,36,20,3.55,15.0,fr,33453,135,1409761,1,1,Active Shallow Crust,0.0,89.98875,0.0,03/06/6791 +2.43424,41.98829,2490,6,14,4,25,46,3.55,27.5,fr,33454,49,1409762,1,1,Active Shallow Crust,0.0,89.98875,0.0,06/14/2490 +2.43424,41.98829,1574,11,18,15,5,24,3.55,5.0,fr,33455,31,1409766,1,1,Active Shallow Crust,0.0,89.98862,-90.0,11/18/1574 +2.43424,41.98829,570,6,11,20,9,29,3.65,5.0,fr,33456,11,1409772,1,2,Active Shallow Crust,0.0,89.98998,0.0,06/11/0570 +2.43424,41.98829,7264,3,7,13,17,35,3.65,5.0,fr,33457,145,1409772,1,2,Active Shallow Crust,0.0,89.98998,0.0,03/07/7264 +2.43424,41.98829,9107,9,15,12,48,19,3.65,15.0,fr,33458,182,1409773,1,1,Active Shallow Crust,0.0,89.98998,0.0,09/15/9107 +2.43424,41.98829,4436,8,1,3,14,6,3.75,5.0,fr,33459,88,1409784,1,2,Active Shallow Crust,0.0,89.99107,0.0,08/01/4436 +2.43424,41.98829,3314,11,26,18,20,40,3.75,5.0,fr,33460,66,1409784,1,2,Active Shallow Crust,0.0,89.99107,0.0,11/26/3314 +2.43424,41.98829,316,3,10,11,47,55,3.75,15.0,fr,33461,6,1409785,1,1,Active Shallow Crust,0.0,89.99107,0.0,03/10/0316 +2.43424,41.98829,9469,5,21,12,11,40,3.85,5.0,fr,33462,189,1409796,1,1,Active Shallow Crust,0.0,89.98939,0.0,05/21/9469 +2.43424,41.98829,519,5,9,2,13,16,3.85,15.0,fr,33463,10,1409797,1,1,Active Shallow Crust,0.0,89.98939,0.0,05/09/0519 +2.43424,41.98829,4578,5,23,4,33,35,3.85,27.5,fr,33464,91,1409798,1,1,Active Shallow Crust,0.0,89.98939,0.0,05/23/4578 +2.43424,41.98829,1573,3,30,14,21,27,3.85,5.0,fr,33465,31,1409802,1,1,Active Shallow Crust,0.0,89.98927,-90.0,03/30/1573 +2.43424,41.98829,3133,5,16,0,24,42,3.95,15.0,fr,33466,62,1409809,1,1,Active Shallow Crust,0.0,89.99054,0.0,05/16/3133 +2.43424,41.98829,4446,5,16,19,32,1,4.05,5.0,fr,33467,88,1409820,1,1,Active Shallow Crust,0.0,89.98946,0.0,05/16/4446 +2.43424,41.98829,5311,4,25,8,54,44,4.05,15.0,fr,33468,106,1409821,1,1,Active Shallow Crust,0.0,89.98946,0.0,04/25/5311 +2.43424,41.98829,4108,4,25,1,57,54,4.05,5.0,fr,33469,82,1409823,1,1,Active Shallow Crust,240.005,58.00608,0.0,04/25/4108 +2.43424,41.98829,2907,2,17,16,35,18,4.25,5.0,fr,33470,58,1409853,1,1,Active Shallow Crust,128.8954,89.98078,0.0,02/17/2907 +2.43424,41.98829,1964,9,24,8,0,8,4.35,27.5,fr,33471,39,1409861,1,1,Active Shallow Crust,240.0075,57.99562,0.0,09/24/1964 +2.43424,41.98829,6185,7,12,6,5,59,4.85,27.5,fr,33472,123,1409918,1,1,Active Shallow Crust,0.0,89.98993,0.0,07/12/6185 +8.08507,50.25733,1370,1,7,11,51,58,3.55,15.0,fr,33473,27,1410241,1,1,Active Shallow Crust,0.0,89.98711,0.0,01/07/1370 +8.08507,50.25733,9396,5,27,4,19,45,3.65,5.0,fr,33474,187,1410252,1,1,Active Shallow Crust,0.0,89.98851,0.0,05/27/9396 +8.08507,50.25733,8656,2,2,11,5,20,3.65,15.0,fr,33475,173,1410253,1,1,Active Shallow Crust,0.0,89.98851,0.0,02/02/8656 +8.08507,50.25733,4458,10,3,7,26,47,3.65,5.0,fr,33476,89,1410258,1,1,Active Shallow Crust,0.0,89.98837,-90.0,10/03/4458 +8.08507,50.25733,6642,6,6,23,53,49,3.75,5.0,fr,33477,132,1410264,1,1,Active Shallow Crust,0.0,89.98976,0.0,06/06/6642 +8.08507,50.25733,1500,7,27,4,58,36,3.75,5.0,fr,33478,29,1410267,1,2,Active Shallow Crust,240.0074,58.01844,0.0,07/27/1500 +8.08507,50.25733,2069,12,27,14,10,28,3.75,5.0,fr,33479,41,1410267,1,2,Active Shallow Crust,240.0074,58.01844,0.0,12/27/2069 +8.08507,50.25733,8627,2,19,1,56,38,3.75,5.0,fr,33480,172,1410270,1,1,Active Shallow Crust,0.0,89.98964,-90.0,02/19/8627 +8.08507,50.25733,7233,11,8,2,55,20,3.85,5.0,fr,33481,144,1410276,1,1,Active Shallow Crust,0.0,89.99087,0.0,11/08/7233 +8.08507,50.25733,8313,6,4,1,23,14,3.95,5.0,fr,33482,166,1410288,1,1,Active Shallow Crust,0.0,89.99187,0.0,06/04/8313 +8.08507,50.25733,7073,3,29,10,44,19,3.95,15.0,fr,33483,141,1410289,1,1,Active Shallow Crust,0.0,89.99187,0.0,03/29/7073 +8.08507,50.25733,994,9,7,5,40,54,3.95,5.0,fr,33484,19,1410294,1,1,Active Shallow Crust,0.0,89.99177,-90.0,09/07/0994 +8.08507,50.25733,8066,4,4,1,19,11,4.05,5.0,fr,33485,161,1410306,1,1,Active Shallow Crust,0.0,89.99267,-90.0,04/04/8066 +8.08507,50.25733,6083,3,18,2,22,37,4.15,5.0,fr,33486,121,1410312,1,1,Active Shallow Crust,0.0,89.98708,0.0,03/18/6083 +8.08507,50.25733,8482,11,7,15,4,9,4.15,27.5,fr,33487,169,1410323,1,1,Active Shallow Crust,128.8961,89.99354,0.0,11/07/8482 +8.08507,50.25733,444,3,24,19,48,58,4.25,5.0,fr,33488,8,1410324,1,1,Active Shallow Crust,0.0,89.98848,0.0,03/24/0444 +8.08507,50.25733,1207,2,1,17,30,51,4.25,27.5,fr,33489,24,1410326,1,1,Active Shallow Crust,0.0,89.98848,0.0,02/01/1207 +8.08507,50.25733,3070,12,5,16,50,28,4.35,5.0,fr,33490,61,1410342,1,1,Active Shallow Crust,0.0,89.98962,-90.0,12/05/3070 +8.08507,50.25733,5850,9,10,22,54,46,4.45,5.0,fr,33491,116,1410348,1,1,Active Shallow Crust,0.0,89.99085,0.0,09/10/5850 +8.08507,50.25733,6850,8,14,16,2,38,4.45,15.0,fr,33492,136,1410352,1,1,Active Shallow Crust,240.0068,57.99468,0.0,08/14/6850 +8.08507,50.25733,4033,5,24,9,30,16,4.55,27.5,fr,33493,80,1410371,1,1,Active Shallow Crust,128.8922,89.98586,0.0,05/24/4033 +8.08507,50.25733,1444,9,1,22,56,19,4.65,15.0,fr,33494,28,1410382,1,1,Active Shallow Crust,128.8904,89.98651,0.0,09/01/1444 +8.08507,50.25733,6559,2,12,4,28,48,5.25,5.0,fr,33495,131,1410444,1,1,Active Shallow Crust,0.0,89.99089,0.0,02/12/6559 +2.12272,48.02424,8311,6,19,11,51,31,3.65,5.0,fr,33496,166,1410732,1,1,Active Shallow Crust,0.0,89.99098,0.0,06/19/8311 +2.12272,48.02424,7592,7,2,1,33,23,4.65,5.0,fr,33497,151,1410855,1,1,Active Shallow Crust,240.0112,57.9944,0.0,07/02/7592 +2.12272,48.02424,3390,6,14,8,30,29,5.05,27.5,fr,33498,67,1410902,1,1,Active Shallow Crust,0.0,89.9898,0.0,06/14/3390 +3.27234,45.94533,7805,3,3,5,12,15,3.55,15.0,fr,33499,156,1411201,1,1,Active Shallow Crust,0.0,89.98948,0.0,03/03/7805 +3.27234,45.94533,2584,10,19,6,43,19,3.55,27.5,fr,33500,51,1411202,1,1,Active Shallow Crust,0.0,89.98948,0.0,10/19/2584 +3.27234,45.94533,9585,10,3,12,46,10,3.55,5.0,fr,33501,191,1411206,1,1,Active Shallow Crust,0.0,89.98936,-90.0,10/03/9585 +3.27234,45.94533,3707,10,13,8,59,32,3.55,15.0,fr,33502,74,1411210,1,1,Active Shallow Crust,128.8956,89.99474,0.0,10/13/3707 +3.27234,45.94533,3297,9,17,23,53,44,3.55,27.5,fr,33503,65,1411211,1,1,Active Shallow Crust,128.8956,89.99474,0.0,09/17/3297 +3.27234,45.94533,1974,12,3,23,45,55,3.65,5.0,fr,33504,39,1411212,1,2,Active Shallow Crust,0.0,89.99062,0.0,12/03/1974 +3.27234,45.94533,2997,8,14,2,22,53,3.65,5.0,fr,33505,59,1411212,1,2,Active Shallow Crust,0.0,89.99062,0.0,08/14/2997 +3.27234,45.94533,2444,8,2,15,10,33,3.65,15.0,fr,33506,48,1411213,1,1,Active Shallow Crust,0.0,89.99062,0.0,08/02/2444 +3.27234,45.94533,5392,8,13,23,24,31,3.65,5.0,fr,33507,107,1411218,1,1,Active Shallow Crust,0.0,89.99052,-90.0,08/13/5392 +3.27234,45.94533,9964,9,9,3,29,1,3.65,5.0,fr,33508,199,1411221,1,1,Active Shallow Crust,128.8999,89.96352,0.0,09/09/9964 +3.27234,45.94533,7626,1,10,6,16,45,3.75,5.0,fr,33509,152,1411224,1,2,Active Shallow Crust,0.0,89.98886,0.0,01/10/7626 +3.27234,45.94533,3688,8,8,21,47,39,3.75,5.0,fr,33510,73,1411224,1,2,Active Shallow Crust,0.0,89.98886,0.0,08/08/3688 +3.27234,45.94533,7771,2,22,16,53,16,3.75,15.0,fr,33511,155,1411225,1,1,Active Shallow Crust,0.0,89.98886,0.0,02/22/7771 +3.27234,45.94533,8846,4,7,19,20,5,3.75,27.5,fr,33512,176,1411226,1,1,Active Shallow Crust,0.0,89.98886,0.0,04/07/8846 +3.27234,45.94533,3271,1,30,14,1,28,3.85,5.0,fr,33513,65,1411236,1,1,Active Shallow Crust,0.0,89.99007,0.0,01/30/3271 +3.27234,45.94533,7893,12,1,8,15,36,3.85,27.5,fr,33514,157,1411238,1,1,Active Shallow Crust,0.0,89.99007,0.0,12/01/7893 +3.27234,45.94533,2640,6,23,6,21,42,3.85,5.0,fr,33515,52,1411239,1,1,Active Shallow Crust,240.0108,57.99767,0.0,06/23/2640 +3.27234,45.94533,8926,10,8,2,16,10,3.85,5.0,fr,33516,178,1411242,1,1,Active Shallow Crust,0.0,89.98996,-90.0,10/08/8926 +3.27234,45.94533,6483,1,31,2,40,30,3.95,27.5,fr,33517,129,1411259,1,1,Active Shallow Crust,128.9006,89.99447,0.0,01/31/6483 +3.27234,45.94533,8738,12,8,23,53,32,4.05,5.0,fr,33518,174,1411260,1,2,Active Shallow Crust,0.0,89.99014,0.0,12/08/8738 +3.27234,45.94533,7457,5,6,2,34,39,4.05,5.0,fr,33519,149,1411260,1,2,Active Shallow Crust,0.0,89.99014,0.0,05/06/7457 +3.27234,45.94533,8934,9,23,14,1,50,4.05,15.0,fr,33520,178,1411261,1,1,Active Shallow Crust,0.0,89.99014,0.0,09/23/8934 +3.27234,45.94533,8830,1,27,10,24,32,4.15,5.0,fr,33521,176,1411272,1,1,Active Shallow Crust,0.0,89.98946,0.0,01/27/8830 +3.27234,45.94533,3152,9,18,23,25,54,4.15,5.0,fr,33522,63,1411275,1,1,Active Shallow Crust,240.0085,57.9972,0.0,09/18/3152 +3.27234,45.94533,8925,4,4,5,43,35,4.15,15.0,fr,33523,178,1411276,1,1,Active Shallow Crust,240.0085,57.99722,0.0,04/04/8925 +3.27234,45.94533,3848,3,24,20,59,4,4.25,5.0,fr,33524,76,1411284,1,1,Active Shallow Crust,0.0,89.9906,0.0,03/24/3848 +3.27234,45.94533,4926,8,11,13,30,51,4.35,15.0,fr,33525,98,1411303,1,1,Active Shallow Crust,0.0,89.99011,-90.0,08/11/4926 +3.27234,45.94533,3057,6,20,12,53,1,4.55,5.0,fr,33526,61,1411320,1,1,Active Shallow Crust,0.0,89.99002,0.0,06/20/3057 +3.27234,45.94533,3804,7,24,22,32,24,4.55,15.0,fr,33527,76,1411321,1,1,Active Shallow Crust,0.0,89.99002,0.0,07/24/3804 +3.27234,45.94533,8778,9,26,1,17,1,4.55,5.0,fr,33528,175,1411323,1,2,Active Shallow Crust,240.0092,57.9972,0.0,09/26/8778 +3.27234,45.94533,7706,5,16,12,49,10,4.55,5.0,fr,33529,154,1411323,1,2,Active Shallow Crust,240.0092,57.9972,0.0,05/16/7706 +3.27234,45.94533,5357,2,12,12,56,6,4.55,5.0,fr,33530,107,1411329,1,1,Active Shallow Crust,128.8941,89.98586,0.0,02/12/5357 +2.17172,44.99061,3954,3,4,15,48,31,3.55,15.0,fr,33531,79,1411684,1,1,Active Shallow Crust,240.0121,57.99804,0.0,03/04/3954 +2.17172,44.99061,9799,3,9,0,23,0,3.65,5.0,fr,33532,195,1411692,1,1,Active Shallow Crust,0.0,89.99046,0.0,03/09/9799 +2.17172,44.99061,7642,4,1,1,13,56,3.65,15.0,fr,33533,152,1411693,1,1,Active Shallow Crust,0.0,89.99046,0.0,04/01/7642 +2.17172,44.99061,2688,10,6,1,23,6,4.15,5.0,fr,33534,53,1411752,1,1,Active Shallow Crust,0.0,89.98927,0.0,10/06/2688 +2.17172,44.99061,6831,7,1,3,42,6,4.45,15.0,fr,33535,136,1411789,1,1,Active Shallow Crust,0.0,89.98988,0.0,07/01/6831 +2.17172,44.99061,6902,12,28,1,39,13,4.65,15.0,fr,33536,138,1411819,1,1,Active Shallow Crust,0.0,89.98983,-90.0,12/28/6902 +6.04336,45.68142,3081,10,22,19,54,28,3.55,5.0,fr,33537,61,1412160,1,1,Active Shallow Crust,0.0,89.99296,0.0,10/22/3081 +6.04336,45.68142,9038,6,20,3,4,42,3.55,5.0,fr,33538,180,1412163,1,3,Active Shallow Crust,240.0108,57.99917,0.0,06/20/9038 +6.04336,45.68142,2940,3,24,12,56,15,3.55,5.0,fr,33539,58,1412163,1,3,Active Shallow Crust,240.0108,57.99917,0.0,03/24/2940 +6.04336,45.68142,4513,7,29,12,25,55,3.55,5.0,fr,33540,90,1412163,1,3,Active Shallow Crust,240.0108,57.99917,0.0,07/29/4513 +6.04336,45.68142,9630,4,8,0,1,58,3.55,15.0,fr,33541,192,1412167,1,1,Active Shallow Crust,0.0,89.99287,-90.0,04/08/9630 +6.04336,45.68142,7885,10,13,2,11,0,3.65,15.0,fr,33542,157,1412173,1,1,Active Shallow Crust,0.0,89.98744,0.0,10/13/7885 +6.04336,45.68142,9774,11,25,19,56,28,3.65,27.5,fr,33543,195,1412174,1,1,Active Shallow Crust,0.0,89.98744,0.0,11/25/9774 +6.04336,45.68142,3236,11,23,14,34,58,3.65,5.0,fr,33544,64,1412178,1,1,Active Shallow Crust,0.0,89.9873,-90.0,11/23/3236 +6.04336,45.68142,9425,8,29,2,42,33,3.75,5.0,fr,33545,188,1412184,1,4,Active Shallow Crust,0.0,89.98881,0.0,08/29/9425 +6.04336,45.68142,4822,7,27,0,54,32,3.75,5.0,fr,33546,96,1412184,1,4,Active Shallow Crust,0.0,89.98881,0.0,07/27/4822 +6.04336,45.68142,5563,7,29,13,34,18,3.75,5.0,fr,33547,111,1412184,1,4,Active Shallow Crust,0.0,89.98881,0.0,07/29/5563 +6.04336,45.68142,9230,9,24,9,28,21,3.75,5.0,fr,33548,184,1412184,1,4,Active Shallow Crust,0.0,89.98881,0.0,09/24/9230 +6.04336,45.68142,925,8,29,22,53,23,3.75,27.5,fr,33549,18,1412186,1,2,Active Shallow Crust,0.0,89.98881,0.0,08/29/0925 +6.04336,45.68142,7447,12,27,10,31,10,3.75,27.5,fr,33550,148,1412186,1,2,Active Shallow Crust,0.0,89.98881,0.0,12/27/7447 +6.04336,45.68142,8248,1,19,7,56,8,3.75,5.0,fr,33551,164,1412193,1,1,Active Shallow Crust,128.8964,89.96748,0.0,01/19/8248 +6.04336,45.68142,9900,7,26,0,29,12,3.85,5.0,fr,33552,197,1412196,1,2,Active Shallow Crust,0.0,89.99003,0.0,07/26/9900 +6.04336,45.68142,9648,3,20,12,15,55,3.85,5.0,fr,33553,192,1412196,1,2,Active Shallow Crust,0.0,89.99003,0.0,03/20/9648 +6.04336,45.68142,2123,12,4,10,37,30,3.85,27.5,fr,33554,42,1412201,1,1,Active Shallow Crust,240.0108,57.99828,0.0,12/04/2123 +6.04336,45.68142,3313,4,22,8,1,59,3.95,5.0,fr,33555,66,1412208,1,2,Active Shallow Crust,0.0,89.99111,0.0,04/22/3313 +6.04336,45.68142,8613,6,7,10,48,50,3.95,5.0,fr,33556,172,1412208,1,2,Active Shallow Crust,0.0,89.99111,0.0,06/07/8613 +6.04336,45.68142,233,5,25,10,52,46,3.95,27.5,fr,33557,4,1412213,1,1,Active Shallow Crust,240.0199,58.0042,0.0,05/25/0233 +6.04336,45.68142,3125,8,30,8,45,0,3.95,27.5,fr,33558,62,1412219,1,1,Active Shallow Crust,128.8995,89.99333,0.0,08/30/3125 +6.04336,45.68142,363,2,26,0,17,30,4.05,5.0,fr,33559,7,1412220,1,1,Active Shallow Crust,0.0,89.98811,0.0,02/26/0363 +6.04336,45.68142,3190,5,22,7,8,31,4.05,15.0,fr,33560,63,1412221,1,1,Active Shallow Crust,0.0,89.98811,0.0,05/22/3190 +6.04336,45.68142,3064,5,18,19,0,38,4.05,15.0,fr,33561,61,1412224,1,1,Active Shallow Crust,240.0049,58.00623,0.0,05/18/3064 +6.04336,45.68142,5890,3,10,2,51,45,4.55,5.0,fr,33562,117,1412280,1,1,Active Shallow Crust,0.0,89.99109,0.0,03/10/5890 +6.04336,45.68142,9712,10,31,22,21,17,4.65,5.0,fr,33563,194,1412292,1,1,Active Shallow Crust,0.0,89.99007,0.0,10/31/9712 +6.04336,45.68142,1621,5,26,17,20,58,5.35,15.0,fr,33564,32,1412383,1,1,Active Shallow Crust,0.0,89.99013,-90.0,05/26/1621 +6.04336,45.68142,903,4,23,18,17,54,5.55,5.0,fr,33565,18,1412400,1,1,Active Shallow Crust,0.0,89.99014,0.0,04/23/0903 +3.49191,47.64956,2161,11,15,12,26,36,3.75,5.0,fr,33566,43,1412664,1,1,Active Shallow Crust,0.0,89.9892,0.0,11/15/2161 +-1.27904,47.40799,825,5,13,8,54,49,3.55,5.0,fr,33567,16,1413120,1,3,Active Shallow Crust,0.0,89.98976,0.0,05/13/0825 +-1.27904,47.40799,1040,10,26,4,51,26,3.55,5.0,fr,33568,20,1413120,1,3,Active Shallow Crust,0.0,89.98976,0.0,10/26/1040 +-1.27904,47.40799,3375,9,30,5,43,36,3.55,5.0,fr,33569,67,1413120,1,3,Active Shallow Crust,0.0,89.98976,0.0,09/30/3375 +-1.27904,47.40799,4510,7,25,15,16,12,3.55,15.0,fr,33570,90,1413121,1,1,Active Shallow Crust,0.0,89.98976,0.0,07/25/4510 +-1.27904,47.40799,2177,1,24,12,55,49,3.55,5.0,fr,33571,43,1413123,1,1,Active Shallow Crust,240.0122,57.99813,0.0,01/24/2177 +-1.27904,47.40799,8294,3,20,18,9,44,3.55,15.0,fr,33572,165,1413124,1,1,Active Shallow Crust,240.0122,57.99813,0.0,03/20/8294 +-1.27904,47.40799,479,9,18,18,54,51,3.55,15.0,fr,33573,9,1413127,1,1,Active Shallow Crust,0.0,89.98965,-90.0,09/18/0479 +-1.27904,47.40799,6005,4,24,10,30,37,3.65,5.0,fr,33574,120,1413135,1,1,Active Shallow Crust,240.0013,58.01264,0.0,04/24/6005 +-1.27904,47.40799,460,4,22,7,25,25,3.75,15.0,fr,33575,9,1413145,1,1,Active Shallow Crust,0.0,89.99052,0.0,04/22/0460 +-1.27904,47.40799,5714,10,12,2,3,24,3.85,5.0,fr,33576,114,1413156,1,1,Active Shallow Crust,0.0,89.99033,0.0,10/12/5714 +-1.27904,47.40799,8697,6,15,11,15,7,3.85,5.0,fr,33577,173,1413159,1,1,Active Shallow Crust,240.0109,57.99803,0.0,06/15/8697 +-1.27904,47.40799,1604,3,8,12,10,31,3.95,5.0,fr,33578,32,1413168,1,1,Active Shallow Crust,0.0,89.99031,0.0,03/08/1604 +-1.27904,47.40799,6260,3,11,19,59,36,3.95,27.5,fr,33579,125,1413170,1,1,Active Shallow Crust,0.0,89.99031,0.0,03/11/6260 +-1.27904,47.40799,1407,9,25,22,0,11,3.95,5.0,fr,33580,28,1413171,1,2,Active Shallow Crust,240.0198,58.00493,0.0,09/25/1407 +-1.27904,47.40799,9312,5,3,8,54,34,3.95,5.0,fr,33581,186,1413171,1,2,Active Shallow Crust,240.0198,58.00493,0.0,05/03/9312 +-1.27904,47.40799,328,7,24,14,34,14,3.95,5.0,fr,33582,6,1413174,1,1,Active Shallow Crust,0.0,89.9902,-90.0,07/24/0328 +-1.27904,47.40799,4869,5,14,18,14,17,4.05,5.0,fr,33583,97,1413180,1,3,Active Shallow Crust,0.0,89.9904,0.0,05/14/4869 +-1.27904,47.40799,6491,6,26,5,31,14,4.05,5.0,fr,33584,129,1413180,1,3,Active Shallow Crust,0.0,89.9904,0.0,06/26/6491 +-1.27904,47.40799,8900,8,8,2,44,1,4.05,5.0,fr,33585,177,1413180,1,3,Active Shallow Crust,0.0,89.9904,0.0,08/08/8900 +-1.27904,47.40799,9067,8,21,18,55,7,4.15,5.0,fr,33586,181,1413192,1,1,Active Shallow Crust,0.0,89.98974,0.0,08/21/9067 +-1.27904,47.40799,7973,2,6,5,9,7,4.15,5.0,fr,33587,159,1413198,1,1,Active Shallow Crust,0.0,89.98962,-90.0,02/06/7973 +-1.27904,47.40799,4205,11,21,16,5,16,4.25,5.0,fr,33588,84,1413204,1,1,Active Shallow Crust,0.0,89.99009,0.0,11/21/4205 +-1.27904,47.40799,27,9,22,0,22,49,4.55,5.0,fr,33589,0,1413240,1,1,Active Shallow Crust,0.0,89.98975,0.0,09/22/0027 +-1.27904,47.40799,2457,10,1,11,25,19,5.15,5.0,fr,33590,49,1413315,1,1,Active Shallow Crust,240.0201,58.0001,0.0,10/01/2457 +-4.28069,49.71376,5346,12,26,11,4,41,4.05,15.0,fr,33591,106,1413661,1,1,Active Shallow Crust,0.0,89.989,0.0,12/26/5346 +0.65475,45.40025,7885,12,10,15,23,3,3.55,5.0,fr,33592,157,1414080,1,1,Active Shallow Crust,0.0,89.99026,0.0,12/10/7885 +0.65475,45.40025,4022,12,26,3,12,18,4.05,27.5,fr,33593,80,1414148,1,1,Active Shallow Crust,0.0,89.98993,-90.0,12/26/4022 +0.65475,45.40025,9953,6,2,2,13,5,4.55,5.0,fr,33594,199,1414203,1,1,Active Shallow Crust,240.009,57.99726,0.0,06/02/9953 +7.34865,48.92333,1852,7,8,6,18,17,3.55,5.0,fr,33595,37,1414560,1,1,Active Shallow Crust,0.0,89.98675,0.0,07/08/1852 +-1.73095,45.73995,562,3,14,22,1,48,3.65,5.0,fr,33596,11,1415061,1,1,Active Shallow Crust,128.9007,89.96351,0.0,03/14/0562 +-1.73095,45.73995,7986,4,1,3,45,39,3.85,5.0,fr,33597,159,1415076,1,1,Active Shallow Crust,0.0,89.99004,0.0,04/01/7986 +-1.73095,45.73995,3618,6,25,22,48,20,4.25,5.0,fr,33598,72,1415124,1,1,Active Shallow Crust,0.0,89.98978,0.0,06/25/3618 +1.08629,41.09638,3483,7,7,19,25,26,3.55,5.0,fr,33599,69,1415520,1,3,Active Shallow Crust,0.0,89.9905,0.0,07/07/3483 +1.08629,41.09638,5208,6,1,12,42,11,3.55,5.0,fr,33600,104,1415520,1,3,Active Shallow Crust,0.0,89.9905,0.0,06/01/5208 +1.08629,41.09638,1124,5,30,7,30,4,3.55,5.0,fr,33601,22,1415520,1,3,Active Shallow Crust,0.0,89.9905,0.0,05/30/1124 +1.08629,41.09638,2998,12,5,3,30,14,3.55,15.0,fr,33602,59,1415521,1,2,Active Shallow Crust,0.0,89.9905,0.0,12/05/2998 +1.08629,41.09638,9236,2,18,1,19,18,3.55,15.0,fr,33603,184,1415521,1,2,Active Shallow Crust,0.0,89.9905,0.0,02/18/9236 +1.08629,41.09638,8126,12,30,3,26,2,3.55,27.5,fr,33604,162,1415522,1,2,Active Shallow Crust,0.0,89.9905,0.0,12/30/8126 +1.08629,41.09638,7948,7,27,2,52,34,3.55,27.5,fr,33605,158,1415522,1,2,Active Shallow Crust,0.0,89.9905,0.0,07/27/7948 +1.08629,41.09638,9550,5,28,20,39,6,3.55,5.0,fr,33606,190,1415529,1,1,Active Shallow Crust,128.8964,89.99335,0.0,05/28/9550 +1.08629,41.09638,6613,12,17,19,18,13,3.65,27.5,fr,33607,132,1415537,1,1,Active Shallow Crust,240.0006,58.0126,0.0,12/17/6613 +1.08629,41.09638,1076,9,17,9,27,26,3.75,5.0,fr,33608,21,1415544,1,2,Active Shallow Crust,0.0,89.98943,0.0,09/17/1076 +1.08629,41.09638,39,11,30,5,42,14,3.75,5.0,fr,33609,0,1415544,1,2,Active Shallow Crust,0.0,89.98943,0.0,11/30/0039 +1.08629,41.09638,8115,4,13,18,53,53,3.75,5.0,fr,33610,162,1415547,1,1,Active Shallow Crust,240.0079,58.01733,0.0,04/13/8115 +1.08629,41.09638,9257,10,21,2,55,13,3.75,5.0,fr,33611,185,1415550,1,1,Active Shallow Crust,0.0,89.98931,-90.0,10/21/9257 +1.08629,41.09638,7916,12,4,19,45,59,4.05,5.0,fr,33612,158,1415580,1,1,Active Shallow Crust,0.0,89.99039,0.0,12/04/7916 +1.08629,41.09638,6122,2,21,13,13,32,4.05,5.0,fr,33613,122,1415583,1,1,Active Shallow Crust,240.0052,58.00569,0.0,02/21/6122 +1.08629,41.09638,2830,7,22,2,40,29,4.05,5.0,fr,33614,56,1415589,1,1,Active Shallow Crust,128.8915,89.99359,0.0,07/22/2830 +1.08629,41.09638,345,7,16,15,5,23,4.15,5.0,fr,33615,6,1415592,1,1,Active Shallow Crust,0.0,89.98952,0.0,07/16/0345 +1.08629,41.09638,5796,1,17,18,11,7,4.25,5.0,fr,33616,115,1415604,1,1,Active Shallow Crust,0.0,89.98981,0.0,01/17/5796 +1.08629,41.09638,6846,11,18,3,6,9,4.35,15.0,fr,33617,136,1415626,1,1,Active Shallow Crust,128.8988,89.9827,0.0,11/18/6846 +1.08629,41.09638,4595,5,2,9,15,33,4.45,5.0,fr,33618,91,1415637,1,1,Active Shallow Crust,128.8933,89.9936,0.0,05/02/4595 +1.08629,41.09638,1108,3,21,7,38,25,5.25,15.0,fr,33619,22,1415734,1,1,Active Shallow Crust,128.8859,89.98698,0.0,03/21/1108 +-1.33556,48.07652,3730,9,12,6,18,12,3.55,5.0,fr,33620,74,1416000,1,1,Active Shallow Crust,0.0,89.98989,0.0,09/12/3730 +-1.33556,48.07652,6694,9,10,16,56,53,3.55,15.0,fr,33621,133,1416001,1,1,Active Shallow Crust,0.0,89.98989,0.0,09/10/6694 +-1.33556,48.07652,7629,7,9,15,57,49,3.65,5.0,fr,33622,152,1416012,1,1,Active Shallow Crust,0.0,89.98949,0.0,07/09/7629 +-1.33556,48.07652,5871,12,23,3,34,40,3.65,15.0,fr,33623,117,1416013,1,1,Active Shallow Crust,0.0,89.98949,0.0,12/23/5871 +-1.33556,48.07652,6394,9,26,21,58,34,3.65,5.0,fr,33624,127,1416015,1,1,Active Shallow Crust,240.0016,58.01268,0.0,09/26/6394 +-1.33556,48.07652,434,12,4,22,30,3,3.85,15.0,fr,33625,8,1416037,1,2,Active Shallow Crust,0.0,89.99046,0.0,12/04/0434 +-1.33556,48.07652,5080,2,15,9,37,53,3.85,15.0,fr,33626,101,1416037,1,2,Active Shallow Crust,0.0,89.99046,0.0,02/15/5080 +-1.33556,48.07652,6296,11,21,10,7,30,3.95,5.0,fr,33627,125,1416057,1,1,Active Shallow Crust,128.9001,89.99362,0.0,11/21/6296 +-1.33556,48.07652,1740,10,27,8,41,5,4.05,5.0,fr,33628,34,1416060,1,1,Active Shallow Crust,0.0,89.98958,0.0,10/27/1740 +-1.33556,48.07652,66,8,23,10,45,57,4.15,15.0,fr,33629,1,1416073,1,1,Active Shallow Crust,0.0,89.98987,0.0,08/23/0066 +-1.33556,48.07652,3445,10,30,0,9,35,4.15,15.0,fr,33630,68,1416082,1,1,Active Shallow Crust,128.8974,89.99367,0.0,10/30/3445 +-1.33556,48.07652,2351,10,10,16,16,6,4.25,5.0,fr,33631,47,1416084,1,1,Active Shallow Crust,0.0,89.99022,0.0,10/10/2351 +-1.33556,48.07652,4898,10,9,17,54,4,4.75,5.0,fr,33632,97,1416144,1,1,Active Shallow Crust,0.0,89.98985,0.0,10/09/4898 +-2.98629,45.61458,4378,1,28,3,37,33,3.75,5.0,fr,33633,87,1416504,1,1,Active Shallow Crust,0.0,89.98879,0.0,01/28/4378 +-7.172,48.5865,8745,3,26,14,29,32,4.55,5.0,fr,33634,174,1417080,1,1,Active Shallow Crust,0.0,89.98945,0.0,03/26/8745 +1.09585,52.91609,3718,8,7,17,19,11,3.85,5.0,fr,33635,74,1417479,1,1,Active Shallow Crust,240.0117,57.99807,0.0,08/07/3718 +8.84965,48.95949,4837,11,11,6,58,24,3.55,5.0,fr,33636,96,1417920,1,2,Active Shallow Crust,0.0,89.98676,0.0,11/11/4837 +8.84965,48.95949,3987,8,29,23,36,34,3.55,5.0,fr,33637,79,1417920,1,2,Active Shallow Crust,0.0,89.98676,0.0,08/29/3987 +8.84965,48.95949,8848,10,2,0,26,52,3.55,15.0,fr,33638,176,1417924,1,1,Active Shallow Crust,240.0141,57.99778,0.0,10/02/8848 +8.84965,48.95949,101,8,20,23,27,46,3.65,5.0,fr,33639,2,1417932,1,4,Active Shallow Crust,0.0,89.9882,0.0,08/20/0101 +8.84965,48.95949,8380,11,26,13,45,44,3.65,5.0,fr,33640,167,1417932,1,4,Active Shallow Crust,0.0,89.9882,0.0,11/26/8380 +8.84965,48.95949,6798,12,29,11,1,44,3.65,5.0,fr,33641,135,1417932,1,4,Active Shallow Crust,0.0,89.9882,0.0,12/29/6798 +8.84965,48.95949,7586,11,20,8,55,32,3.65,5.0,fr,33642,151,1417932,1,4,Active Shallow Crust,0.0,89.9882,0.0,11/20/7586 +8.84965,48.95949,555,7,30,14,23,8,3.85,5.0,fr,33643,11,1417956,1,3,Active Shallow Crust,0.0,89.99062,0.0,07/30/0555 +8.84965,48.95949,4239,2,27,10,56,47,3.85,5.0,fr,33644,84,1417956,1,3,Active Shallow Crust,0.0,89.99062,0.0,02/27/4239 +8.84965,48.95949,9536,3,25,1,46,42,3.85,5.0,fr,33645,190,1417956,1,3,Active Shallow Crust,0.0,89.99062,0.0,03/25/9536 +8.84965,48.95949,8063,9,24,18,58,35,3.85,5.0,fr,33646,161,1417962,1,1,Active Shallow Crust,0.0,89.99052,-90.0,09/24/8063 +8.84965,48.95949,3633,2,16,8,30,36,3.95,15.0,fr,33647,72,1417969,1,1,Active Shallow Crust,0.0,89.99165,0.0,02/16/3633 +8.84965,48.95949,4121,7,6,7,1,38,3.95,5.0,fr,33648,82,1417971,1,1,Active Shallow Crust,240.0204,58.00469,0.0,07/06/4121 +8.84965,48.95949,9357,1,8,3,27,42,3.95,15.0,fr,33649,187,1417972,1,1,Active Shallow Crust,240.0204,58.00469,0.0,01/08/9357 +8.84965,48.95949,2038,3,23,11,36,27,4.15,5.0,fr,33650,40,1417992,1,1,Active Shallow Crust,0.0,89.98672,0.0,03/23/2038 +8.84965,48.95949,5354,1,24,20,31,23,4.15,5.0,fr,33651,107,1417995,1,1,Active Shallow Crust,240.0085,57.99822,0.0,01/24/5354 +8.84965,48.95949,6134,6,29,19,6,22,4.35,5.0,fr,33652,122,1418016,1,1,Active Shallow Crust,0.0,89.98946,0.0,06/29/6134 +-3.5184,43.19492,5336,4,23,15,9,2,3.55,5.0,fr,33653,106,1418400,1,3,Active Shallow Crust,0.0,89.98898,0.0,04/23/5336 +-3.5184,43.19492,6136,1,18,20,50,7,3.55,5.0,fr,33654,122,1418400,1,3,Active Shallow Crust,0.0,89.98898,0.0,01/18/6136 +-3.5184,43.19492,5916,5,11,16,57,47,3.55,5.0,fr,33655,118,1418400,1,3,Active Shallow Crust,0.0,89.98898,0.0,05/11/5916 +-3.5184,43.19492,2594,4,28,12,59,46,3.55,15.0,fr,33656,51,1418401,1,1,Active Shallow Crust,0.0,89.98898,0.0,04/28/2594 +-3.5184,43.19492,7420,11,22,14,3,23,3.55,27.5,fr,33657,148,1418402,1,1,Active Shallow Crust,0.0,89.98898,0.0,11/22/7420 +-3.5184,43.19492,307,10,4,15,18,54,3.55,5.0,fr,33658,6,1418403,1,1,Active Shallow Crust,240.0115,57.99826,0.0,10/04/0307 +-3.5184,43.19492,720,11,4,17,12,5,3.65,5.0,fr,33659,14,1418412,1,1,Active Shallow Crust,0.0,89.99017,0.0,11/04/0720 +-3.5184,43.19492,5271,10,31,1,30,6,3.65,5.0,fr,33660,105,1418418,1,1,Active Shallow Crust,0.0,89.99006,-90.0,10/31/5271 +-3.5184,43.19492,6214,2,10,20,35,19,3.65,5.0,fr,33661,124,1418421,1,1,Active Shallow Crust,128.9013,89.96346,0.0,02/10/6214 +-3.5184,43.19492,6918,7,22,17,30,54,3.65,27.5,fr,33662,138,1418423,1,1,Active Shallow Crust,128.9013,89.96346,0.0,07/22/6918 +-3.5184,43.19492,7923,12,16,12,22,51,3.75,5.0,fr,33663,158,1418424,1,3,Active Shallow Crust,0.0,89.99124,0.0,12/16/7923 +-3.5184,43.19492,577,8,24,0,30,59,3.75,5.0,fr,33664,11,1418424,1,3,Active Shallow Crust,0.0,89.99124,0.0,08/24/0577 +-3.5184,43.19492,4797,4,21,20,15,26,3.75,5.0,fr,33665,95,1418424,1,3,Active Shallow Crust,0.0,89.99124,0.0,04/21/4797 +-3.5184,43.19492,3407,9,30,1,55,32,3.75,15.0,fr,33666,68,1418425,1,1,Active Shallow Crust,0.0,89.99124,0.0,09/30/3407 +-3.5184,43.19492,6373,3,3,17,21,59,3.85,5.0,fr,33667,127,1418436,1,3,Active Shallow Crust,0.0,89.98959,0.0,03/03/6373 +-3.5184,43.19492,2548,6,12,16,8,1,3.85,5.0,fr,33668,50,1418436,1,3,Active Shallow Crust,0.0,89.98959,0.0,06/12/2548 +-3.5184,43.19492,785,11,17,9,20,24,3.85,5.0,fr,33669,15,1418436,1,3,Active Shallow Crust,0.0,89.98959,0.0,11/17/0785 +-3.5184,43.19492,6226,7,5,18,57,2,4.25,5.0,fr,33670,124,1418484,1,1,Active Shallow Crust,0.0,89.99015,0.0,07/05/6226 +-3.5184,43.19492,2464,7,3,17,49,49,4.25,27.5,fr,33671,49,1418495,1,1,Active Shallow Crust,128.895,89.98083,0.0,07/03/2464 +-3.5184,43.19492,4254,6,16,22,0,9,4.35,5.0,fr,33672,85,1418496,1,1,Active Shallow Crust,0.0,89.98975,0.0,06/16/4254 +-3.5184,43.19492,8184,9,19,23,45,35,4.45,5.0,fr,33673,163,1418517,1,1,Active Shallow Crust,128.8931,89.99348,0.0,09/19/8184 +-3.5184,43.19492,2788,1,4,11,14,13,5.55,5.0,fr,33674,55,1418640,1,1,Active Shallow Crust,0.0,89.99007,0.0,01/04/2788 +0.53592,42.9484,8643,9,9,23,6,33,3.55,5.0,fr,33675,172,1418880,1,3,Active Shallow Crust,0.0,89.98985,0.0,09/09/8643 +0.53592,42.9484,3077,9,4,21,45,57,3.55,5.0,fr,33676,61,1418880,1,3,Active Shallow Crust,0.0,89.98985,0.0,09/04/3077 +0.53592,42.9484,9314,4,21,23,26,29,3.55,5.0,fr,33677,186,1418880,1,3,Active Shallow Crust,0.0,89.98985,0.0,04/21/9314 +0.53592,42.9484,4784,12,10,0,32,46,3.55,15.0,fr,33678,95,1418881,1,2,Active Shallow Crust,0.0,89.98985,0.0,12/10/4784 +0.53592,42.9484,3570,12,21,8,17,29,3.55,15.0,fr,33679,71,1418881,1,2,Active Shallow Crust,0.0,89.98985,0.0,12/21/3570 +0.53592,42.9484,1039,5,31,12,5,11,3.55,27.5,fr,33680,20,1418882,1,1,Active Shallow Crust,0.0,89.98985,0.0,05/31/1039 +0.53592,42.9484,6661,3,17,23,23,37,3.55,5.0,fr,33681,133,1418883,1,1,Active Shallow Crust,240.0118,57.99814,0.0,03/17/6661 +0.53592,42.9484,6982,7,16,2,25,40,3.65,5.0,fr,33682,139,1418892,1,5,Active Shallow Crust,0.0,89.99014,0.0,07/16/6982 +0.53592,42.9484,7153,2,7,17,7,9,3.65,5.0,fr,33683,143,1418892,1,5,Active Shallow Crust,0.0,89.99014,0.0,02/07/7153 +0.53592,42.9484,7733,8,15,8,39,43,3.65,5.0,fr,33684,154,1418892,1,5,Active Shallow Crust,0.0,89.99014,0.0,08/15/7733 +0.53592,42.9484,8360,9,18,11,6,57,3.65,5.0,fr,33685,167,1418892,1,5,Active Shallow Crust,0.0,89.99014,0.0,09/18/8360 +0.53592,42.9484,565,6,6,15,33,9,3.65,5.0,fr,33686,11,1418892,1,5,Active Shallow Crust,0.0,89.99014,0.0,06/06/0565 +0.53592,42.9484,5244,9,30,15,29,41,3.65,15.0,fr,33687,104,1418893,1,3,Active Shallow Crust,0.0,89.99014,0.0,09/30/5244 +0.53592,42.9484,4511,6,15,18,50,1,3.65,15.0,fr,33688,90,1418893,1,3,Active Shallow Crust,0.0,89.99014,0.0,06/15/4511 +0.53592,42.9484,9453,3,11,21,58,44,3.65,15.0,fr,33689,189,1418893,1,3,Active Shallow Crust,0.0,89.99014,0.0,03/11/9453 +0.53592,42.9484,6060,10,20,17,20,22,3.65,15.0,fr,33690,121,1418902,1,1,Active Shallow Crust,128.9005,89.96352,0.0,10/20/6060 +0.53592,42.9484,5455,3,31,4,11,8,3.75,5.0,fr,33691,109,1418904,1,2,Active Shallow Crust,0.0,89.98974,0.0,03/31/5455 +0.53592,42.9484,4201,2,5,21,14,54,3.75,5.0,fr,33692,84,1418904,1,2,Active Shallow Crust,0.0,89.98974,0.0,02/05/4201 +0.53592,42.9484,6122,5,16,11,19,25,3.75,15.0,fr,33693,122,1418905,1,1,Active Shallow Crust,0.0,89.98974,0.0,05/16/6122 +0.53592,42.9484,3858,4,12,8,33,40,3.75,27.5,fr,33694,77,1418906,1,2,Active Shallow Crust,0.0,89.98974,0.0,04/12/3858 +0.53592,42.9484,8872,12,21,3,43,33,3.75,27.5,fr,33695,177,1418906,1,2,Active Shallow Crust,0.0,89.98974,0.0,12/21/8872 +0.53592,42.9484,8137,6,4,14,11,17,3.85,5.0,fr,33696,162,1418916,1,2,Active Shallow Crust,0.0,89.9902,0.0,06/04/8137 +0.53592,42.9484,6846,5,30,8,5,17,3.85,5.0,fr,33697,136,1418916,1,2,Active Shallow Crust,0.0,89.9902,0.0,05/30/6846 +0.53592,42.9484,2877,6,2,22,40,24,3.85,15.0,fr,33698,57,1418923,1,1,Active Shallow Crust,0.0,89.99009,-90.0,06/02/2877 +0.53592,42.9484,4628,4,28,8,34,2,3.95,15.0,fr,33699,92,1418929,1,2,Active Shallow Crust,0.0,89.9901,0.0,04/28/4628 +0.53592,42.9484,5992,3,16,13,27,46,3.95,15.0,fr,33700,119,1418929,1,2,Active Shallow Crust,0.0,89.9901,0.0,03/16/5992 +0.53592,42.9484,1077,1,8,18,24,15,3.95,27.5,fr,33701,21,1418939,1,1,Active Shallow Crust,128.9009,89.9936,0.0,01/08/1077 +0.53592,42.9484,6052,5,31,15,38,15,4.05,5.0,fr,33702,121,1418940,1,2,Active Shallow Crust,0.0,89.99014,0.0,05/31/6052 +0.53592,42.9484,3629,6,17,8,52,28,4.05,5.0,fr,33703,72,1418940,1,2,Active Shallow Crust,0.0,89.99014,0.0,06/17/3629 +0.53592,42.9484,2534,5,9,22,4,43,4.05,15.0,fr,33704,50,1418941,1,1,Active Shallow Crust,0.0,89.99014,0.0,05/09/2534 +0.53592,42.9484,6245,5,6,22,23,50,4.15,5.0,fr,33705,124,1418952,1,1,Active Shallow Crust,0.0,89.98983,0.0,05/06/6245 +0.53592,42.9484,5450,12,4,5,28,15,4.15,15.0,fr,33706,108,1418953,1,1,Active Shallow Crust,0.0,89.98983,0.0,12/04/5450 +0.53592,42.9484,3071,6,22,13,28,37,4.15,5.0,fr,33707,61,1418961,1,2,Active Shallow Crust,128.8981,89.99376,0.0,06/22/3071 +0.53592,42.9484,1012,4,27,17,11,22,4.15,5.0,fr,33708,20,1418961,1,2,Active Shallow Crust,128.8981,89.99376,0.0,04/27/1012 +0.53592,42.9484,7403,12,25,6,7,50,4.25,5.0,fr,33709,148,1418964,1,2,Active Shallow Crust,0.0,89.9901,0.0,12/25/7403 +0.53592,42.9484,8580,4,13,14,50,40,4.25,5.0,fr,33710,171,1418964,1,2,Active Shallow Crust,0.0,89.9901,0.0,04/13/8580 +0.53592,42.9484,3686,11,14,7,46,34,4.35,5.0,fr,33711,73,1418976,1,1,Active Shallow Crust,0.0,89.99008,0.0,11/14/3686 +0.53592,42.9484,895,8,12,9,45,42,4.35,27.5,fr,33712,17,1418978,1,1,Active Shallow Crust,0.0,89.99008,0.0,08/12/0895 +0.53592,42.9484,3403,11,28,0,47,17,4.35,5.0,fr,33713,68,1418979,1,2,Active Shallow Crust,240.0077,57.99581,0.0,11/28/3403 +0.53592,42.9484,3271,8,25,7,1,38,4.35,5.0,fr,33714,65,1418979,1,2,Active Shallow Crust,240.0077,57.99581,0.0,08/25/3271 +0.53592,42.9484,4948,12,3,23,39,23,4.35,5.0,fr,33715,98,1418982,1,1,Active Shallow Crust,0.0,89.98997,-90.0,12/03/4948 +0.53592,42.9484,369,3,29,20,53,13,4.45,5.0,fr,33716,7,1418988,1,1,Active Shallow Crust,0.0,89.98985,0.0,03/29/0369 +0.53592,42.9484,5523,7,15,15,45,38,4.65,5.0,fr,33717,110,1419012,1,1,Active Shallow Crust,0.0,89.99012,0.0,07/15/5523 +0.53592,42.9484,8269,5,15,3,47,52,4.65,5.0,fr,33718,165,1419021,1,1,Active Shallow Crust,128.892,89.98703,0.0,05/15/8269 +0.53592,42.9484,1124,5,15,17,49,29,4.75,5.0,fr,33719,22,1419024,1,1,Active Shallow Crust,0.0,89.99004,0.0,05/15/1124 +0.53592,42.9484,3520,12,15,2,30,15,5.25,27.5,fr,33720,70,1419086,1,1,Active Shallow Crust,0.0,89.98996,0.0,12/15/3520 +0.53592,42.9484,9922,3,8,18,1,15,5.85,5.0,fr,33721,198,1419156,1,1,Active Shallow Crust,0.0,89.99,0.0,03/08/9922 +0.53592,42.9484,2730,2,17,5,48,38,5.95,27.5,fr,33722,54,1419173,1,1,Active Shallow Crust,240.0462,57.99974,0.0,02/17/2730 +6.88293,42.86667,2160,3,25,5,16,24,3.65,5.0,fr,33723,43,1419381,1,1,Active Shallow Crust,128.9011,89.96346,0.0,03/25/2160 +2.43013,50.90324,1115,7,23,23,20,44,3.55,5.0,fr,33724,22,1419840,1,1,Active Shallow Crust,0.0,89.99046,0.0,07/23/1115 +2.43013,50.90324,681,3,14,8,40,34,3.55,15.0,fr,33725,13,1419844,1,1,Active Shallow Crust,240.0126,57.99818,0.0,03/14/0681 +2.43013,50.90324,2839,11,26,0,11,2,3.75,15.0,fr,33726,56,1419865,1,1,Active Shallow Crust,0.0,89.9899,0.0,11/26/2839 +2.43013,50.90324,8736,2,23,10,53,36,3.75,27.5,fr,33727,174,1419869,1,1,Active Shallow Crust,240.0086,58.01777,0.0,02/23/8736 +2.43013,50.90324,6045,4,6,11,46,57,3.85,5.0,fr,33728,120,1419876,1,2,Active Shallow Crust,0.0,89.991,0.0,04/06/6045 +2.43013,50.90324,7398,12,17,9,53,40,3.85,5.0,fr,33729,147,1419876,1,2,Active Shallow Crust,0.0,89.991,0.0,12/17/7398 +2.43013,50.90324,7859,5,29,11,39,1,4.15,5.0,fr,33730,157,1419912,1,1,Active Shallow Crust,0.0,89.99044,0.0,05/29/7859 +2.43013,50.90324,65,7,2,0,2,44,4.15,15.0,fr,33731,1,1419913,1,1,Active Shallow Crust,0.0,89.99044,0.0,07/02/0065 +2.43013,50.90324,8034,1,11,3,2,8,4.35,5.0,fr,33732,160,1419939,1,1,Active Shallow Crust,240.0096,57.99605,0.0,01/11/8034 +2.43013,50.90324,3627,8,16,4,24,54,4.45,5.0,fr,33733,72,1419948,1,1,Active Shallow Crust,0.0,89.98985,0.0,08/16/3627 +-6.20583,48.83776,6550,10,19,22,23,26,3.75,15.0,fr,33734,130,1420345,1,1,Active Shallow Crust,0.0,89.98946,0.0,10/19/6550 +4.56448,42.83936,6731,3,17,2,39,48,3.55,5.0,fr,33735,134,1420800,1,1,Active Shallow Crust,0.0,89.99261,0.0,03/17/6731 +-0.2915,49.21507,1039,11,21,10,30,19,3.55,5.0,fr,33736,20,1421280,1,1,Active Shallow Crust,0.0,89.99012,0.0,11/21/1039 +-0.2915,49.21507,4136,6,27,0,2,44,3.65,5.0,fr,33737,82,1421292,1,1,Active Shallow Crust,0.0,89.99009,0.0,06/27/4136 +-0.2915,49.21507,9459,4,21,7,9,31,3.65,5.0,fr,33738,189,1421301,1,1,Active Shallow Crust,128.9002,89.96349,0.0,04/21/9459 +-0.2915,49.21507,3178,5,6,20,53,48,3.75,5.0,fr,33739,63,1421304,1,1,Active Shallow Crust,0.0,89.98986,0.0,05/06/3178 +-0.2915,49.21507,7190,10,14,20,27,13,3.75,5.0,fr,33740,143,1421310,1,1,Active Shallow Crust,0.0,89.99007,-90.0,10/14/7190 +-0.2915,49.21507,9747,12,13,21,32,10,3.85,5.0,fr,33741,194,1421316,1,2,Active Shallow Crust,0.0,89.99009,0.0,12/13/9747 +-0.2915,49.21507,4118,6,23,1,21,43,3.85,5.0,fr,33742,82,1421316,1,2,Active Shallow Crust,0.0,89.99009,0.0,06/23/4118 +-0.2915,49.21507,2679,2,26,10,16,11,3.85,27.5,fr,33743,53,1421318,1,1,Active Shallow Crust,0.0,89.99009,0.0,02/26/2679 +-0.2915,49.21507,3192,3,25,3,40,48,3.95,5.0,fr,33744,63,1421328,1,1,Active Shallow Crust,359.9999,89.99013,0.0,03/25/3192 +-0.2915,49.21507,5350,8,29,11,51,48,4.05,15.0,fr,33745,106,1421341,1,1,Active Shallow Crust,0.0,89.99004,0.0,08/29/5350 +-0.2915,49.21507,9331,8,7,3,3,24,4.15,5.0,fr,33746,186,1421352,1,2,Active Shallow Crust,0.0,89.9901,0.0,08/07/9331 +-0.2915,49.21507,4301,1,13,22,56,53,4.15,5.0,fr,33747,86,1421352,1,2,Active Shallow Crust,0.0,89.9901,0.0,01/13/4301 +-0.2915,49.21507,1945,10,6,5,51,0,4.35,5.0,fr,33748,38,1421385,1,1,Active Shallow Crust,128.8972,89.98275,0.0,10/06/1945 +-0.2915,49.21507,1720,8,29,5,17,27,5.55,5.0,fr,33749,34,1421520,1,1,Active Shallow Crust,0.0,89.98999,0.0,08/29/1720 +5.9482,44.88209,6432,11,25,13,21,10,3.55,5.0,fr,33750,128,1421760,1,3,Active Shallow Crust,0.0,89.99285,0.0,11/25/6432 +5.9482,44.88209,826,2,2,0,50,38,3.55,5.0,fr,33751,16,1421760,1,3,Active Shallow Crust,0.0,89.99285,0.0,02/02/0826 +5.9482,44.88209,5803,10,22,8,4,5,3.55,5.0,fr,33752,116,1421760,1,3,Active Shallow Crust,0.0,89.99285,0.0,10/22/5803 +5.9482,44.88209,7868,10,5,22,54,28,3.55,15.0,fr,33753,157,1421761,1,1,Active Shallow Crust,0.0,89.99285,0.0,10/05/7868 +5.9482,44.88209,9331,8,12,2,15,42,3.55,15.0,fr,33754,186,1421767,1,1,Active Shallow Crust,0.0,89.99277,-90.0,08/12/9331 +5.9482,44.88209,2706,12,15,19,11,52,3.75,27.5,fr,33755,54,1421786,1,1,Active Shallow Crust,0.0,89.98865,0.0,12/15/2706 +5.9482,44.88209,2660,10,6,0,41,43,3.75,5.0,fr,33756,53,1421790,1,1,Active Shallow Crust,0.0,89.98852,-90.0,10/06/2660 +5.9482,44.88209,9421,5,31,17,33,50,3.85,15.0,fr,33757,188,1421797,1,1,Active Shallow Crust,0.0,89.98988,0.0,05/31/9421 +5.9482,44.88209,1312,1,31,5,40,27,3.95,5.0,fr,33758,26,1421808,1,1,Active Shallow Crust,0.0,89.99098,0.0,01/31/1312 +5.9482,44.88209,6856,8,26,6,4,25,4.05,5.0,fr,33759,137,1421820,1,1,Active Shallow Crust,0.0,89.99197,0.0,08/26/6856 +5.9482,44.88209,9424,12,1,20,2,27,4.35,27.5,fr,33760,188,1421867,1,1,Active Shallow Crust,128.8975,89.98296,0.0,12/01/9424 +5.9482,44.88209,9974,5,11,14,31,12,4.45,5.0,fr,33761,199,1421871,1,1,Active Shallow Crust,240.0046,57.99482,0.0,05/11/9974 +5.9482,44.88209,4563,1,21,1,43,8,4.85,5.0,fr,33762,91,1421922,1,1,Active Shallow Crust,0.0,89.99029,-90.0,01/21/4563 +-1.10671,45.79698,6959,4,12,22,59,6,3.55,5.0,fr,33763,139,1422240,1,1,Active Shallow Crust,0.0,89.98946,0.0,04/12/6959 +-1.10671,45.79698,8526,1,24,22,0,44,3.55,5.0,fr,33764,170,1422246,1,1,Active Shallow Crust,0.0,89.98933,-90.0,01/24/8526 +-1.10671,45.79698,6372,9,3,2,1,43,3.55,15.0,fr,33765,127,1422250,1,1,Active Shallow Crust,128.8964,89.99385,0.0,09/03/6372 +-1.10671,45.79698,5271,10,30,11,44,19,3.65,5.0,fr,33766,105,1422252,1,1,Active Shallow Crust,0.0,89.9906,0.0,10/30/5271 +-1.10671,45.79698,8840,2,19,16,34,40,3.65,15.0,fr,33767,176,1422253,1,1,Active Shallow Crust,0.0,89.9906,0.0,02/19/8840 +-1.10671,45.79698,6006,8,13,14,7,0,3.75,5.0,fr,33768,120,1422264,1,1,Active Shallow Crust,0.0,89.99023,0.0,08/13/6006 +-1.10671,45.79698,5685,4,29,0,57,10,3.75,5.0,fr,33769,113,1422267,1,1,Active Shallow Crust,240.0085,58.01755,0.0,04/29/5685 +-1.10671,45.79698,8794,9,11,13,50,41,3.75,27.5,fr,33770,175,1422269,1,1,Active Shallow Crust,240.0085,58.01755,0.0,09/11/8794 +-1.10671,45.79698,8968,2,23,12,55,39,3.85,5.0,fr,33771,179,1422276,1,1,Active Shallow Crust,0.0,89.99004,0.0,02/23/8968 +-1.10671,45.79698,7881,12,7,12,2,49,3.85,15.0,fr,33772,157,1422286,1,1,Active Shallow Crust,128.8961,89.99316,0.0,12/07/7881 +-1.10671,45.79698,657,3,12,12,23,34,4.05,5.0,fr,33773,13,1422300,1,1,Active Shallow Crust,0.0,89.99011,0.0,03/12/0657 +-1.10671,45.79698,1291,2,18,23,36,0,4.15,5.0,fr,33774,25,1422312,1,1,Active Shallow Crust,0.0,89.99031,0.0,02/18/1291 +-1.10671,45.79698,803,10,29,6,23,55,4.15,27.5,fr,33775,16,1422314,1,1,Active Shallow Crust,0.0,89.99031,0.0,10/29/0803 +-4.81741,49.93354,109,5,16,3,22,59,4.25,27.5,fr,33776,2,1422806,1,1,Active Shallow Crust,0.0,89.9913,0.0,05/16/0109 +4.75852,46.16208,6250,11,8,3,21,2,3.55,5.0,fr,33777,124,1423200,1,1,Active Shallow Crust,0.0,89.99302,0.0,11/08/6250 +4.75852,46.16208,5766,1,31,12,1,52,3.55,15.0,fr,33778,115,1423204,1,1,Active Shallow Crust,240.0116,57.99843,0.0,01/31/5766 +4.75852,46.16208,1757,12,21,11,12,47,3.65,5.0,fr,33779,35,1423215,1,1,Active Shallow Crust,240.0009,58.01235,0.0,12/21/1757 +4.75852,46.16208,2419,3,25,0,8,8,3.75,5.0,fr,33780,48,1423224,1,1,Active Shallow Crust,0.0,89.98891,0.0,03/25/2419 +4.75852,46.16208,2761,1,13,11,22,29,3.75,5.0,fr,33781,55,1423233,1,1,Active Shallow Crust,128.8958,89.96748,0.0,01/13/2761 +4.75852,46.16208,1390,10,17,16,24,20,3.85,5.0,fr,33782,27,1423236,1,2,Active Shallow Crust,0.0,89.99011,0.0,10/17/1390 +4.75852,46.16208,2772,8,27,16,21,15,3.85,5.0,fr,33783,55,1423236,1,2,Active Shallow Crust,0.0,89.99011,0.0,08/27/2772 +4.75852,46.16208,1191,12,4,23,40,38,4.15,27.5,fr,33784,23,1423274,1,1,Active Shallow Crust,0.0,89.98949,0.0,12/04/1191 +4.75852,46.16208,4572,4,24,1,46,45,4.15,27.5,fr,33785,91,1423280,1,1,Active Shallow Crust,0.0,89.98938,-90.0,04/24/4572 +4.75852,46.16208,8386,3,9,6,58,10,4.25,5.0,fr,33786,167,1423287,1,1,Active Shallow Crust,240.0074,57.99376,0.0,03/09/8386 +4.75852,46.16208,6790,8,9,9,33,27,5.15,5.0,fr,33787,135,1423392,1,1,Active Shallow Crust,0.0,89.99004,0.0,08/09/6790 +5.7521,41.92063,1614,9,10,6,19,20,3.55,5.0,fr,33788,32,1424160,1,1,Active Shallow Crust,0.0,89.9925,0.0,09/10/1614 +5.7521,41.92063,9818,8,11,22,51,44,4.05,5.0,fr,33789,196,1424220,1,1,Active Shallow Crust,0.0,89.99156,0.0,08/11/9818 +5.57742,46.53179,5326,6,1,20,40,54,3.55,5.0,fr,33790,106,1425120,1,1,Active Shallow Crust,0.0,89.99306,0.0,06/01/5326 +5.57742,46.53179,336,3,17,21,16,47,3.55,15.0,fr,33791,6,1425121,1,1,Active Shallow Crust,0.0,89.99306,0.0,03/17/0336 +5.57742,46.53179,5861,8,7,10,39,44,3.55,5.0,fr,33792,117,1425123,1,1,Active Shallow Crust,240.0109,57.99916,0.0,08/07/5861 +5.57742,46.53179,5723,5,11,23,27,10,3.65,5.0,fr,33793,114,1425132,1,2,Active Shallow Crust,0.0,89.98763,0.0,05/11/5723 +5.57742,46.53179,7275,5,13,3,40,24,3.65,5.0,fr,33794,145,1425132,1,2,Active Shallow Crust,0.0,89.98763,0.0,05/13/7275 +5.57742,46.53179,1081,12,28,2,14,32,3.65,5.0,fr,33795,21,1425135,1,1,Active Shallow Crust,240.0006,58.0138,0.0,12/28/1081 +5.57742,46.53179,1790,9,6,1,13,23,3.75,5.0,fr,33796,35,1425144,1,1,Active Shallow Crust,0.0,89.98898,0.0,09/06/1790 +5.57742,46.53179,7973,1,30,3,8,54,3.75,15.0,fr,33797,159,1425145,1,1,Active Shallow Crust,0.0,89.98898,0.0,01/30/7973 +5.57742,46.53179,3637,7,23,16,5,35,3.85,15.0,fr,33798,72,1425157,1,1,Active Shallow Crust,0.0,89.99018,0.0,07/23/3637 +5.57742,46.53179,640,8,8,19,21,36,4.15,5.0,fr,33799,12,1425192,1,1,Active Shallow Crust,0.0,89.98957,0.0,08/08/0640 +5.57742,46.53179,7129,11,27,3,0,11,4.65,5.0,fr,33800,142,1425261,1,1,Active Shallow Crust,128.8908,89.98721,0.0,11/27/7129 +9.50969,49.27684,1247,10,22,21,37,13,3.75,5.0,fr,33801,24,1425633,1,1,Active Shallow Crust,128.897,89.96754,0.0,10/22/1247 +9.50969,49.27684,9825,3,10,18,31,28,3.85,5.0,fr,33802,196,1425636,1,1,Active Shallow Crust,0.0,89.99068,0.0,03/10/9825 +9.50969,49.27684,2632,8,14,9,24,43,3.95,15.0,fr,33803,52,1425649,1,1,Active Shallow Crust,0.0,89.9917,0.0,08/14/2632 +9.50969,49.27684,8140,1,26,15,26,47,4.15,15.0,fr,33804,162,1425673,1,1,Active Shallow Crust,0.0,89.98681,0.0,01/26/8140 +9.50969,49.27684,6863,8,12,21,14,3,4.25,5.0,fr,33805,137,1425684,1,1,Active Shallow Crust,0.0,89.98824,0.0,08/12/6863 +-3.38155,43.07241,5310,7,26,8,32,39,3.55,5.0,fr,33806,106,1426080,1,2,Active Shallow Crust,0.0,89.98895,0.0,07/26/5310 +-3.38155,43.07241,6543,4,23,9,43,2,3.55,5.0,fr,33807,130,1426080,1,2,Active Shallow Crust,0.0,89.98895,0.0,04/23/6543 +-3.38155,43.07241,6700,11,11,8,49,30,3.55,15.0,fr,33808,133,1426081,1,1,Active Shallow Crust,0.0,89.98895,0.0,11/11/6700 +-3.38155,43.07241,9697,7,7,14,30,28,3.75,5.0,fr,33809,193,1426104,1,1,Active Shallow Crust,0.0,89.99123,0.0,07/07/9697 +-3.38155,43.07241,6307,10,23,12,4,33,3.75,5.0,fr,33810,126,1426113,1,1,Active Shallow Crust,128.8962,89.96743,0.0,10/23/6307 +-3.38155,43.07241,2179,11,13,15,59,42,3.85,5.0,fr,33811,43,1426116,1,1,Active Shallow Crust,0.0,89.98957,0.0,11/13/2179 +-3.38155,43.07241,4220,7,30,14,54,4,3.85,5.0,fr,33812,84,1426119,1,1,Active Shallow Crust,240.011,57.99733,0.0,07/30/4220 +-3.38155,43.07241,7497,10,2,3,49,9,3.95,5.0,fr,33813,149,1426131,1,1,Active Shallow Crust,240.0192,58.00489,0.0,10/02/7497 +-3.38155,43.07241,5822,12,3,2,43,45,3.95,15.0,fr,33814,116,1426132,1,1,Active Shallow Crust,240.0192,58.00489,0.0,12/03/5822 +-3.38155,43.07241,1516,1,26,0,32,21,4.05,5.0,fr,33815,30,1426140,1,1,Active Shallow Crust,0.0,89.98965,0.0,01/26/1516 +-3.38155,43.07241,1917,3,25,20,43,59,4.45,5.0,fr,33816,38,1426188,1,1,Active Shallow Crust,0.0,89.98955,0.0,03/25/1917 +-3.38155,43.07241,4639,7,1,3,40,53,4.65,5.0,fr,33817,92,1426215,1,1,Active Shallow Crust,240.0096,57.99412,0.0,07/01/4639 +-3.38155,43.07241,1930,11,29,2,14,37,4.75,5.0,fr,33818,38,1426227,1,1,Active Shallow Crust,240.0062,58.00433,0.0,11/29/1930 +-3.38155,43.07241,2991,5,24,14,55,37,5.05,5.0,fr,33819,59,1426260,1,1,Active Shallow Crust,0.0,89.99017,0.0,05/24/2991 +-3.38155,43.07241,8883,9,23,23,28,47,5.65,5.0,fr,33820,177,1426332,1,1,Active Shallow Crust,0.0,89.99015,0.0,09/23/8883 +2.03781,41.92502,7204,7,6,15,35,35,3.55,5.0,fr,33821,144,1426560,1,1,Active Shallow Crust,0.0,89.98875,0.0,07/06/7204 +2.03781,41.92502,8759,3,1,6,13,20,3.55,15.0,fr,33822,175,1426570,1,1,Active Shallow Crust,128.8968,89.99438,0.0,03/01/8759 +2.03781,41.92502,929,1,25,15,19,1,3.65,15.0,fr,33823,18,1426573,1,2,Active Shallow Crust,0.0,89.98997,0.0,01/25/0929 +2.03781,41.92502,8432,5,2,17,28,35,3.65,15.0,fr,33824,168,1426573,1,2,Active Shallow Crust,0.0,89.98997,0.0,05/02/8432 +2.03781,41.92502,2012,10,10,11,6,12,3.65,15.0,fr,33825,40,1426576,1,1,Active Shallow Crust,240.0011,58.01305,0.0,10/10/2012 +2.03781,41.92502,6172,5,12,7,2,52,3.75,15.0,fr,33826,123,1426585,1,2,Active Shallow Crust,0.0,89.99106,0.0,05/12/6172 +2.03781,41.92502,8081,7,5,10,9,4,3.75,15.0,fr,33827,161,1426585,1,2,Active Shallow Crust,0.0,89.99106,0.0,07/05/8081 +2.03781,41.92502,7352,1,9,9,52,30,3.85,5.0,fr,33828,147,1426596,1,2,Active Shallow Crust,0.0,89.98938,0.0,01/09/7352 +2.03781,41.92502,2856,10,12,3,22,1,3.85,5.0,fr,33829,57,1426596,1,2,Active Shallow Crust,0.0,89.98938,0.0,10/12/2856 +2.03781,41.92502,1337,2,8,3,35,7,4.25,5.0,fr,33830,26,1426644,1,1,Active Shallow Crust,0.0,89.98994,0.0,02/08/1337 +2.03781,41.92502,1464,11,10,14,24,22,4.45,15.0,fr,33831,29,1426669,1,1,Active Shallow Crust,0.0,89.98935,0.0,11/10/1464 +-1.84522,42.28456,8069,6,14,22,31,33,3.55,15.0,fr,33832,161,1427044,1,1,Active Shallow Crust,240.0114,57.99834,0.0,06/14/8069 +-1.84522,42.28456,8612,8,20,22,57,43,3.65,27.5,fr,33833,172,1427063,1,1,Active Shallow Crust,128.9005,89.96358,0.0,08/20/8612 +-1.84522,42.28456,2206,4,15,3,44,19,3.75,5.0,fr,33834,44,1427064,1,1,Active Shallow Crust,0.0,89.98963,0.0,04/15/2206 +-1.84522,42.28456,9528,3,8,16,54,58,3.85,5.0,fr,33835,190,1427076,1,1,Active Shallow Crust,0.0,89.98943,0.0,03/08/9528 +-1.84522,42.28456,9404,3,9,13,15,31,3.85,5.0,fr,33836,188,1427082,1,1,Active Shallow Crust,0.0,89.99065,-90.0,03/09/9404 +-1.84522,42.28456,518,3,28,5,11,12,4.05,5.0,fr,33837,10,1427100,1,1,Active Shallow Crust,0.0,89.98951,0.0,03/28/0518 +-1.84522,42.28456,1426,2,27,21,18,7,4.35,5.0,fr,33838,28,1427136,1,1,Active Shallow Crust,0.0,89.99035,0.0,02/27/1426 +4.60341,43.24549,7123,1,5,2,7,24,3.95,5.0,fr,33839,142,1427571,1,1,Active Shallow Crust,240.0203,58.00492,0.0,01/05/7123 +4.60341,43.24549,954,5,1,13,41,14,4.25,5.0,fr,33840,19,1427610,1,1,Active Shallow Crust,0.0,89.99004,-90.0,05/01/0954 +4.60341,43.24549,1031,10,11,4,1,10,4.95,5.0,fr,33841,20,1427688,1,1,Active Shallow Crust,0.0,89.98974,0.0,10/11/1031 +0.93625,41.89527,1543,5,22,7,5,35,3.55,15.0,fr,33842,30,1428001,1,1,Active Shallow Crust,0.0,89.98968,0.0,05/22/1543 +0.93625,41.89527,5039,5,4,19,35,19,3.65,5.0,fr,33843,100,1428012,1,1,Active Shallow Crust,0.0,89.98997,0.0,05/04/5039 +0.93625,41.89527,2849,4,6,8,52,34,4.15,15.0,fr,33844,56,1428073,1,1,Active Shallow Crust,0.0,89.99013,0.0,04/06/2849 +0.93625,41.89527,6892,3,17,4,25,55,4.15,27.5,fr,33845,137,1428080,1,1,Active Shallow Crust,0.0,89.99001,-90.0,03/17/6892 +0.16222,49.63743,8066,12,4,20,45,20,3.55,5.0,fr,33846,161,1428960,1,2,Active Shallow Crust,0.0,89.99,0.0,12/04/8066 +0.16222,49.63743,2650,3,5,22,28,31,3.55,5.0,fr,33847,52,1428960,1,2,Active Shallow Crust,0.0,89.99,0.0,03/05/2650 +0.16222,49.63743,9462,2,22,16,3,59,3.65,5.0,fr,33848,189,1428972,1,1,Active Shallow Crust,0.0,89.99,0.0,02/22/9462 +0.16222,49.63743,4758,5,14,5,41,27,3.75,5.0,fr,33849,95,1428984,1,1,Active Shallow Crust,0.0,89.98995,0.0,05/14/4758 +0.16222,49.63743,7682,4,21,17,49,16,3.75,5.0,fr,33850,153,1428987,1,1,Active Shallow Crust,240.0088,58.01762,0.0,04/21/7682 +0.16222,49.63743,3753,6,18,18,33,50,3.85,15.0,fr,33851,75,1428997,1,1,Active Shallow Crust,0.0,89.99003,0.0,06/18/3753 +0.16222,49.63743,1589,2,3,23,56,38,3.85,5.0,fr,33852,31,1428999,1,1,Active Shallow Crust,240.0113,57.99788,0.0,02/03/1589 +0.16222,49.63743,1130,2,21,19,26,41,3.85,5.0,fr,33853,22,1429005,1,1,Active Shallow Crust,128.8953,89.99371,0.0,02/21/1130 +0.16222,49.63743,1381,8,11,15,35,15,4.05,5.0,fr,33854,27,1429020,1,1,Active Shallow Crust,0.0,89.99001,0.0,08/11/1381 +0.16222,49.63743,6133,6,15,6,3,11,4.15,5.0,fr,33855,122,1429041,1,1,Active Shallow Crust,128.897,89.99371,0.0,06/15/6133 +0.16222,49.63743,4383,3,7,9,32,48,4.25,5.0,fr,33856,87,1429044,1,1,Active Shallow Crust,0.0,89.98997,0.0,03/07/4383 +0.16222,49.63743,4969,5,4,20,57,5,4.25,5.0,fr,33857,99,1429047,1,1,Active Shallow Crust,240.0083,57.9942,0.0,05/04/4969 +0.16222,49.63743,3915,3,27,15,28,51,4.35,5.0,fr,33858,78,1429059,1,1,Active Shallow Crust,240.0092,57.99607,0.0,03/27/3915 +0.16222,49.63743,3413,11,6,17,53,33,4.45,5.0,fr,33859,68,1429071,1,1,Active Shallow Crust,240.0061,57.99483,0.0,11/06/3413 +0.16222,49.63743,2225,2,25,16,24,26,4.55,27.5,fr,33860,44,1429082,1,1,Active Shallow Crust,0.0,89.99,0.0,02/25/2225 +0.16222,49.63743,4647,3,10,20,39,8,4.65,5.0,fr,33861,92,1429092,1,1,Active Shallow Crust,0.0,89.98999,0.0,03/10/4647 +0.5861,46.73964,450,1,7,19,25,59,3.55,5.0,fr,33862,8,1429440,1,2,Active Shallow Crust,0.0,89.98963,0.0,01/07/0450 +0.5861,46.73964,4763,7,3,5,45,3,3.55,5.0,fr,33863,95,1429440,1,2,Active Shallow Crust,0.0,89.98963,0.0,07/03/4763 +0.5861,46.73964,2351,6,15,18,8,36,3.55,5.0,fr,33864,47,1429443,1,1,Active Shallow Crust,240.0121,57.9982,0.0,06/15/2351 +0.5861,46.73964,3878,5,27,1,26,57,3.65,15.0,fr,33865,77,1429453,1,1,Active Shallow Crust,0.0,89.98999,0.0,05/27/3878 +0.5861,46.73964,6158,6,21,18,32,10,3.65,15.0,fr,33866,123,1429456,1,1,Active Shallow Crust,240.001,58.01284,0.0,06/21/6158 +0.5861,46.73964,336,8,25,19,6,3,3.65,5.0,fr,33867,6,1429461,1,1,Active Shallow Crust,128.9005,89.96353,0.0,08/25/0336 +0.5861,46.73964,8152,3,16,21,31,19,3.65,15.0,fr,33868,163,1429462,1,1,Active Shallow Crust,128.9005,89.96353,0.0,03/16/8152 +0.5861,46.73964,2508,3,21,15,16,14,3.75,5.0,fr,33869,50,1429464,1,1,Active Shallow Crust,0.0,89.98971,0.0,03/21/2508 +0.5861,46.73964,4792,12,3,11,1,58,3.85,5.0,fr,33870,95,1429476,1,1,Active Shallow Crust,0.0,89.99021,0.0,12/03/4792 +0.5861,46.73964,6971,5,24,10,1,15,3.85,15.0,fr,33871,139,1429477,1,1,Active Shallow Crust,0.0,89.99021,0.0,05/24/6971 +0.5861,46.73964,9719,5,23,11,27,32,3.85,5.0,fr,33872,194,1429485,1,1,Active Shallow Crust,128.8957,89.99358,0.0,05/23/9719 +0.5861,46.73964,1081,11,12,1,34,26,3.95,15.0,fr,33873,21,1429489,1,1,Active Shallow Crust,0.0,89.99019,0.0,11/12/1081 +0.5861,46.73964,3887,1,5,5,18,34,4.05,5.0,fr,33874,77,1429500,1,1,Active Shallow Crust,0.0,89.9898,0.0,01/05/3887 +0.5861,46.73964,4527,4,5,11,35,26,4.05,5.0,fr,33875,90,1429503,1,1,Active Shallow Crust,240.0059,58.00592,0.0,04/05/4527 +0.5861,46.73964,3979,9,1,1,37,43,4.35,15.0,fr,33876,79,1429537,1,1,Active Shallow Crust,0.0,89.99003,0.0,09/01/3979 +0.5861,46.73964,3427,8,24,0,51,33,4.55,15.0,fr,33877,68,1429561,1,1,Active Shallow Crust,0.0,89.98989,0.0,08/24/3427 +0.5861,46.73964,6607,3,6,12,22,0,4.65,15.0,fr,33878,132,1429576,1,1,Active Shallow Crust,240.0109,57.99422,0.0,03/06/6607 +0.5861,46.73964,3586,5,15,23,3,54,4.75,5.0,fr,33879,71,1429593,1,1,Active Shallow Crust,128.8886,89.98813,0.0,05/15/3586 +0.5861,46.73964,723,5,21,19,25,4,4.75,27.5,fr,33880,14,1429595,1,1,Active Shallow Crust,128.8886,89.98813,0.0,05/21/0723 +0.5861,46.73964,2493,7,13,12,14,19,5.25,15.0,fr,33881,49,1429645,1,1,Active Shallow Crust,0.0,89.98999,0.0,07/13/2493 +1.96025,50.50096,1889,8,7,17,42,54,3.55,5.0,fr,33882,37,1429920,1,4,Active Shallow Crust,0.0,89.99038,0.0,08/07/1889 +1.96025,50.50096,7760,9,18,23,8,31,3.55,5.0,fr,33883,155,1429920,1,4,Active Shallow Crust,0.0,89.99038,0.0,09/18/7760 +1.96025,50.50096,9305,7,19,20,33,13,3.55,5.0,fr,33884,186,1429920,1,4,Active Shallow Crust,0.0,89.99038,0.0,07/19/9305 +1.96025,50.50096,9799,2,25,23,32,12,3.55,5.0,fr,33885,195,1429920,1,4,Active Shallow Crust,0.0,89.99038,0.0,02/25/9799 +1.96025,50.50096,3420,8,21,19,12,31,3.75,5.0,fr,33886,68,1429950,1,1,Active Shallow Crust,0.0,89.98969,-90.0,08/21/3420 +1.96025,50.50096,6806,8,6,19,6,23,3.85,27.5,fr,33887,136,1429967,1,1,Active Shallow Crust,128.8952,89.99376,0.0,08/06/6806 +1.96025,50.50096,123,11,8,14,6,52,4.15,5.0,fr,33888,2,1429992,1,1,Active Shallow Crust,0.0,89.99036,0.0,11/08/0123 +1.96025,50.50096,4060,2,3,11,49,56,4.25,27.5,fr,33889,81,1430006,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/03/4060 +1.96025,50.50096,5882,6,17,10,39,36,5.25,5.0,fr,33890,117,1430124,1,1,Active Shallow Crust,0.0,89.99003,0.0,06/17/5882 +-1.72484,46.14973,448,10,14,12,52,3,3.55,5.0,fr,33891,8,1430400,1,1,Active Shallow Crust,0.0,89.98952,0.0,10/14/0448 +-1.72484,46.14973,7313,1,29,4,16,52,3.55,15.0,fr,33892,146,1430401,1,1,Active Shallow Crust,0.0,89.98952,0.0,01/29/7313 +-1.72484,46.14973,7435,11,20,10,50,52,4.15,15.0,fr,33893,148,1430482,1,1,Active Shallow Crust,128.8976,89.99344,0.0,11/20/7435 +4.08291,41.96663,7838,7,14,16,25,36,3.65,15.0,fr,33894,156,1431379,1,1,Active Shallow Crust,0.0,89.99324,-90.0,07/14/7838 +4.08291,41.96663,434,10,2,18,37,27,3.85,5.0,fr,33895,8,1431396,1,1,Active Shallow Crust,0.0,89.98939,0.0,10/02/0434 +4.08291,41.96663,6137,2,25,7,34,2,3.95,5.0,fr,33896,122,1431417,1,1,Active Shallow Crust,128.901,89.9929,0.0,02/25/6137 +4.08291,41.96663,8693,5,4,3,44,59,4.15,15.0,fr,33897,173,1431433,1,1,Active Shallow Crust,0.0,89.98872,0.0,05/04/8693 +4.08291,41.96663,5696,7,9,15,3,53,5.05,5.0,fr,33898,113,1431540,1,1,Active Shallow Crust,359.9993,89.99066,0.0,07/09/5696 +-4.33073,48.76194,8502,10,23,13,15,12,3.55,5.0,fr,33899,170,1431840,1,2,Active Shallow Crust,0.0,89.9867,0.0,10/23/8502 +-4.33073,48.76194,6218,11,16,0,58,15,3.55,5.0,fr,33900,124,1431840,1,2,Active Shallow Crust,0.0,89.9867,0.0,11/16/6218 +-4.33073,48.76194,5292,9,23,21,49,46,3.55,15.0,fr,33901,105,1431841,1,1,Active Shallow Crust,0.0,89.9867,0.0,09/23/5292 +-4.33073,48.76194,5093,1,1,5,39,42,3.65,5.0,fr,33902,101,1431852,1,1,Active Shallow Crust,0.0,89.98815,0.0,01/01/5093 +-4.33073,48.76194,4467,9,2,17,31,27,3.65,5.0,fr,33903,89,1431861,1,1,Active Shallow Crust,128.9001,89.96357,0.0,09/02/4467 +-4.33073,48.76194,1382,11,23,23,23,3,3.75,5.0,fr,33904,27,1431864,1,2,Active Shallow Crust,0.0,89.98944,0.0,11/23/1382 +-4.33073,48.76194,4105,5,12,19,19,3,3.75,5.0,fr,33905,82,1431864,1,2,Active Shallow Crust,0.0,89.98944,0.0,05/12/4105 +-4.33073,48.76194,114,6,16,11,7,36,3.75,15.0,fr,33906,2,1431865,1,1,Active Shallow Crust,0.0,89.98944,0.0,06/16/0114 +-4.33073,48.76194,1389,8,21,7,38,32,3.75,5.0,fr,33907,27,1431870,1,1,Active Shallow Crust,0.0,89.98932,-90.0,08/21/1389 +-4.33073,48.76194,5133,11,23,7,53,55,3.85,15.0,fr,33908,102,1431877,1,1,Active Shallow Crust,0.0,89.99059,0.0,11/23/5133 +-4.33073,48.76194,1910,2,15,18,2,33,3.85,27.5,fr,33909,38,1431878,1,1,Active Shallow Crust,0.0,89.99059,0.0,02/15/1910 +-4.33073,48.76194,7830,12,19,13,7,26,4.05,5.0,fr,33910,156,1431906,1,1,Active Shallow Crust,0.0,89.98866,-90.0,12/19/7830 +-4.33073,48.76194,1919,7,24,4,33,41,4.15,5.0,fr,33911,38,1431912,1,1,Active Shallow Crust,0.0,89.99001,0.0,07/24/1919 +-4.33073,48.76194,9355,12,20,23,13,14,4.25,15.0,fr,33912,187,1431925,1,1,Active Shallow Crust,0.0,89.99109,0.0,12/20/9355 +-4.33073,48.76194,8277,4,24,0,19,55,4.65,27.5,fr,33913,165,1431974,1,1,Active Shallow Crust,0.0,89.99063,0.0,04/24/8277 +0.57133,47.80708,9775,9,6,19,20,41,3.75,5.0,fr,33914,195,1432350,1,1,Active Shallow Crust,0.0,89.9898,-90.0,09/06/9775 +0.57133,47.80708,6850,6,25,2,36,37,3.75,15.0,fr,33915,136,1432354,1,1,Active Shallow Crust,128.8966,89.96733,0.0,06/25/6850 +0.57133,47.80708,9777,7,22,5,2,16,3.85,15.0,fr,33916,195,1432357,1,1,Active Shallow Crust,0.0,89.98981,0.0,07/22/9777 +0.57133,47.80708,6996,11,20,10,8,31,3.85,5.0,fr,33917,139,1432362,1,1,Active Shallow Crust,0.0,89.9903,-90.0,11/20/6996 +0.57133,47.80708,233,6,19,9,25,58,3.95,5.0,fr,33918,4,1432368,1,1,Active Shallow Crust,0.0,89.98985,0.0,06/19/0233 +0.57133,47.80708,9292,11,15,7,18,37,4.05,5.0,fr,33919,185,1432380,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/15/9292 +0.57133,47.80708,2902,8,30,8,50,10,4.05,5.0,fr,33920,58,1432383,1,1,Active Shallow Crust,240.0063,58.00589,0.0,08/30/2902 +0.57133,47.80708,6271,6,4,6,16,25,4.45,15.0,fr,33921,125,1432429,1,1,Active Shallow Crust,0.0,89.99009,0.0,06/04/6271 +2.24478,44.08442,825,7,16,10,31,47,3.55,15.0,fr,33922,16,1432807,1,1,Active Shallow Crust,0.0,89.98901,-90.0,07/16/0825 +2.24478,44.08442,84,8,11,2,2,43,3.95,5.0,fr,33923,1,1432857,1,1,Active Shallow Crust,128.9006,89.99315,0.0,08/11/0084 +2.24478,44.08442,8966,1,7,20,55,33,4.05,15.0,fr,33924,179,1432861,1,1,Active Shallow Crust,0.0,89.98981,0.0,01/07/8966 +2.24478,44.08442,1124,10,24,4,23,31,4.15,5.0,fr,33925,22,1432872,1,1,Active Shallow Crust,0.0,89.98911,0.0,10/24/1124 +2.24478,44.08442,4226,12,2,0,11,0,4.35,5.0,fr,33926,84,1432896,1,1,Active Shallow Crust,0.0,89.98991,0.0,12/02/4226 +2.24478,44.08442,1184,4,25,13,59,56,5.05,5.0,fr,33927,23,1432980,1,1,Active Shallow Crust,0.0,89.98969,0.0,04/25/1184 +1.77174,46.01476,4260,6,7,13,15,26,3.55,5.0,fr,33928,85,1433280,1,2,Active Shallow Crust,0.0,89.98949,0.0,06/07/4260 +1.77174,46.01476,4709,1,23,17,12,10,3.55,5.0,fr,33929,94,1433280,1,2,Active Shallow Crust,0.0,89.98949,0.0,01/23/4709 +1.77174,46.01476,7429,4,29,22,24,55,3.65,5.0,fr,33930,148,1433292,1,1,Active Shallow Crust,0.0,89.99064,0.0,04/29/7429 +1.77174,46.01476,3387,6,12,3,29,48,3.65,15.0,fr,33931,67,1433293,1,2,Active Shallow Crust,0.0,89.99064,0.0,06/12/3387 +1.77174,46.01476,7536,7,26,18,38,59,3.65,15.0,fr,33932,150,1433293,1,2,Active Shallow Crust,0.0,89.99064,0.0,07/26/7536 +1.77174,46.01476,9193,6,14,14,12,6,3.75,5.0,fr,33933,183,1433304,1,1,Active Shallow Crust,0.0,89.99026,0.0,06/14/9193 +1.77174,46.01476,3994,11,15,19,31,8,3.85,27.5,fr,33934,79,1433318,1,1,Active Shallow Crust,0.0,89.99008,0.0,11/15/3994 +1.77174,46.01476,8242,4,20,15,47,47,3.85,15.0,fr,33935,164,1433320,1,1,Active Shallow Crust,240.0107,57.99785,0.0,04/20/8242 +1.77174,46.01476,3572,12,7,6,3,13,3.95,5.0,fr,33936,71,1433328,1,1,Active Shallow Crust,0.0,89.99006,0.0,12/07/3572 +1.77174,46.01476,6266,7,18,15,47,22,4.05,15.0,fr,33937,125,1433341,1,1,Active Shallow Crust,0.0,89.99016,0.0,07/18/6266 +1.77174,46.01476,988,10,11,19,51,55,4.15,5.0,fr,33938,19,1433352,1,1,Active Shallow Crust,0.0,89.99035,0.0,10/11/0988 +1.77174,46.01476,906,2,10,8,37,8,4.75,5.0,fr,33939,18,1433424,1,1,Active Shallow Crust,0.0,89.98988,0.0,02/10/0906 +1.77174,46.01476,7501,6,14,6,4,19,4.85,5.0,fr,33940,150,1433436,1,1,Active Shallow Crust,0.0,89.98981,0.0,06/14/7501 +1.77174,46.01476,4564,5,30,1,26,56,4.95,15.0,fr,33941,91,1433449,1,1,Active Shallow Crust,0.0,89.98987,0.0,05/30/4564 +1.77174,46.01476,1099,2,3,9,52,4,5.15,5.0,fr,33942,21,1433472,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/03/1099 +3.34889,50.66885,9555,9,18,12,9,9,3.65,5.0,fr,33943,191,1433772,1,1,Active Shallow Crust,0.0,89.98861,0.0,09/18/9555 +3.34889,50.66885,2777,7,12,3,51,47,3.65,5.0,fr,33944,55,1433775,1,1,Active Shallow Crust,240.0021,58.01262,0.0,07/12/2777 +3.34889,50.66885,1438,3,21,3,19,27,3.75,5.0,fr,33945,28,1433784,1,1,Active Shallow Crust,0.0,89.98985,0.0,03/21/1438 +3.34889,50.66885,1240,7,1,18,54,55,4.15,5.0,fr,33946,24,1433832,1,1,Active Shallow Crust,0.0,89.99039,0.0,07/01/1240 +3.34889,50.66885,1443,11,30,16,39,30,4.25,5.0,fr,33947,28,1433844,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/30/1443 +3.34889,50.66885,685,11,13,13,39,8,4.65,5.0,fr,33948,13,1433892,1,1,Active Shallow Crust,0.0,89.99009,0.0,11/13/0685 +3.34889,50.66885,2102,6,2,4,54,8,5.55,5.0,fr,33949,42,1434000,1,1,Active Shallow Crust,0.0,89.99009,0.0,06/02/2102 +-6.04857,48.71836,717,7,15,8,3,8,3.65,5.0,fr,33950,14,1434732,1,1,Active Shallow Crust,0.0,89.98814,0.0,07/15/0717 +-6.04857,48.71836,3715,4,11,23,9,45,3.85,15.0,fr,33951,74,1434757,1,1,Active Shallow Crust,0.0,89.99058,0.0,04/11/3715 +-6.04857,48.71836,337,10,6,13,0,44,3.95,5.0,fr,33952,6,1434768,1,1,Active Shallow Crust,0.0,89.99161,0.0,10/06/0337 +1.02261,43.53591,8412,8,6,6,2,57,3.55,15.0,fr,33953,168,1435210,1,1,Active Shallow Crust,128.8962,89.99361,0.0,08/06/8412 +1.02261,43.53591,5936,8,28,13,20,47,3.65,5.0,fr,33954,118,1435221,1,1,Active Shallow Crust,128.9007,89.96347,0.0,08/28/5936 +1.02261,43.53591,687,7,24,0,39,23,3.75,5.0,fr,33955,13,1435227,1,1,Active Shallow Crust,240.0082,58.01749,0.0,07/24/0687 +1.02261,43.53591,5852,7,25,11,10,40,4.25,15.0,fr,33956,117,1435285,1,1,Active Shallow Crust,0.0,89.9902,0.0,07/25/5852 +2.82152,45.48574,4977,10,25,19,33,16,3.55,5.0,fr,33957,99,1435680,1,3,Active Shallow Crust,0.0,89.9894,0.0,10/25/4977 +2.82152,45.48574,6148,8,23,3,36,49,3.55,5.0,fr,33958,122,1435680,1,3,Active Shallow Crust,0.0,89.9894,0.0,08/23/6148 +2.82152,45.48574,4786,1,12,19,24,3,3.55,5.0,fr,33959,95,1435680,1,3,Active Shallow Crust,0.0,89.9894,0.0,01/12/4786 +2.82152,45.48574,2619,6,16,23,5,16,3.55,15.0,fr,33960,52,1435681,1,2,Active Shallow Crust,0.0,89.9894,0.0,06/16/2619 +2.82152,45.48574,9541,2,16,5,19,53,3.55,15.0,fr,33961,190,1435681,1,2,Active Shallow Crust,0.0,89.9894,0.0,02/16/9541 +2.82152,45.48574,2382,1,10,0,19,0,3.65,5.0,fr,33962,47,1435692,1,1,Active Shallow Crust,0.0,89.99055,0.0,01/10/2382 +2.82152,45.48574,7233,12,17,19,37,34,3.65,5.0,fr,33963,144,1435695,1,1,Active Shallow Crust,240.0008,58.01247,0.0,12/17/7233 +2.82152,45.48574,1603,10,20,10,39,53,3.75,5.0,fr,33964,32,1435704,1,1,Active Shallow Crust,0.0,89.98877,0.0,10/20/1603 +2.82152,45.48574,8946,7,23,22,47,4,3.75,15.0,fr,33965,178,1435708,1,1,Active Shallow Crust,240.0084,58.01711,0.0,07/23/8946 +2.82152,45.48574,375,6,2,11,33,32,3.75,5.0,fr,33966,7,1435713,1,1,Active Shallow Crust,128.8965,89.96748,0.0,06/02/0375 +2.82152,45.48574,2036,5,28,12,6,11,3.95,5.0,fr,33967,40,1435728,1,1,Active Shallow Crust,0.0,89.99108,0.0,05/28/2036 +2.82152,45.48574,7594,5,25,17,46,42,4.05,5.0,fr,33968,151,1435740,1,1,Active Shallow Crust,0.0,89.99006,0.0,05/25/7594 +2.82152,45.48574,6071,9,13,13,47,44,4.15,5.0,fr,33969,121,1435758,1,1,Active Shallow Crust,0.0,89.98925,-90.0,09/13/6071 +2.82152,45.48574,9599,9,17,17,28,26,4.35,15.0,fr,33970,191,1435777,1,1,Active Shallow Crust,0.0,89.99015,0.0,09/17/9599 +2.82152,45.48574,7017,12,9,20,46,54,4.75,5.0,fr,33971,140,1435824,1,1,Active Shallow Crust,0.0,89.99023,0.0,12/09/7017 +2.82152,45.48574,6593,12,15,4,1,40,5.05,15.0,fr,33972,131,1435867,1,1,Active Shallow Crust,0.0,89.98982,-90.0,12/15/6593 +2.82152,45.48574,8329,6,7,6,3,7,5.85,27.5,fr,33973,166,1435958,1,1,Active Shallow Crust,0.0,89.98998,0.0,06/07/8329 +-3.91816,50.41673,6724,3,13,19,16,58,3.75,15.0,fr,33974,134,1437145,1,1,Active Shallow Crust,0.0,89.98979,0.0,03/13/6724 +-3.91816,50.41673,5426,7,10,19,54,59,5.25,5.0,fr,33975,108,1437330,1,1,Active Shallow Crust,0.0,89.9899,-90.0,07/10/5426 +3.53743,49.66995,6438,4,22,1,20,9,3.55,5.0,fr,33976,128,1438080,1,1,Active Shallow Crust,0.0,89.99021,0.0,04/22/6438 +3.53743,49.66995,427,5,30,17,2,21,3.75,5.0,fr,33977,8,1438104,1,1,Active Shallow Crust,0.0,89.98963,0.0,05/30/0427 +3.53743,49.66995,8167,7,28,13,56,20,3.95,15.0,fr,33978,163,1438135,1,1,Active Shallow Crust,0.0,89.98959,-90.0,07/28/8167 +3.53743,49.66995,2013,12,23,14,40,21,4.35,5.0,fr,33979,40,1438176,1,1,Active Shallow Crust,0.0,89.98961,0.0,12/23/2013 +9.04409,48.3445,5126,7,18,3,49,4,3.55,5.0,fr,33980,102,1438560,1,9,Active Shallow Crust,0.0,89.9866,0.0,07/18/5126 +9.04409,48.3445,2190,10,10,17,25,43,3.55,5.0,fr,33981,43,1438560,1,9,Active Shallow Crust,0.0,89.9866,0.0,10/10/2190 +9.04409,48.3445,7449,8,28,1,42,2,3.55,5.0,fr,33982,148,1438560,1,9,Active Shallow Crust,0.0,89.9866,0.0,08/28/7449 +9.04409,48.3445,5712,1,18,3,20,29,3.55,5.0,fr,33983,114,1438560,1,9,Active Shallow Crust,0.0,89.9866,0.0,01/18/5712 +9.04409,48.3445,2056,5,14,14,19,6,3.55,5.0,fr,33984,41,1438560,1,9,Active Shallow Crust,0.0,89.9866,0.0,05/14/2056 +9.04409,48.3445,6376,12,19,11,51,25,3.55,5.0,fr,33985,127,1438560,1,9,Active Shallow Crust,0.0,89.9866,0.0,12/19/6376 +9.04409,48.3445,1128,9,22,18,46,16,3.55,5.0,fr,33986,22,1438560,1,9,Active Shallow Crust,0.0,89.9866,0.0,09/22/1128 +9.04409,48.3445,7304,7,1,9,49,58,3.55,5.0,fr,33987,146,1438560,1,9,Active Shallow Crust,0.0,89.9866,0.0,07/01/7304 +9.04409,48.3445,172,11,27,3,39,44,3.55,5.0,fr,33988,3,1438560,1,9,Active Shallow Crust,0.0,89.9866,0.0,11/27/0172 +9.04409,48.3445,5605,12,4,9,27,15,3.55,15.0,fr,33989,112,1438561,1,6,Active Shallow Crust,0.0,89.9866,0.0,12/04/5605 +9.04409,48.3445,5153,2,24,22,6,6,3.55,15.0,fr,33990,103,1438561,1,6,Active Shallow Crust,0.0,89.9866,0.0,02/24/5153 +9.04409,48.3445,776,1,24,2,22,28,3.55,15.0,fr,33991,15,1438561,1,6,Active Shallow Crust,0.0,89.9866,0.0,01/24/0776 +9.04409,48.3445,7996,8,14,16,16,12,3.55,15.0,fr,33992,159,1438561,1,6,Active Shallow Crust,0.0,89.9866,0.0,08/14/7996 +9.04409,48.3445,1851,9,5,11,30,22,3.55,15.0,fr,33993,37,1438561,1,6,Active Shallow Crust,0.0,89.9866,0.0,09/05/1851 +9.04409,48.3445,9037,10,23,11,7,49,3.55,15.0,fr,33994,180,1438561,1,6,Active Shallow Crust,0.0,89.9866,0.0,10/23/9037 +9.04409,48.3445,125,5,5,3,40,30,3.55,27.5,fr,33995,2,1438562,1,1,Active Shallow Crust,0.0,89.9866,0.0,05/05/0125 +9.04409,48.3445,9808,11,20,6,36,4,3.55,5.0,fr,33996,196,1438563,1,1,Active Shallow Crust,240.0102,57.99835,0.0,11/20/9808 +9.04409,48.3445,2903,6,22,1,7,31,3.55,15.0,fr,33997,58,1438564,1,1,Active Shallow Crust,240.0102,57.99835,0.0,06/22/2903 +9.04409,48.3445,8367,2,14,9,12,49,3.55,27.5,fr,33998,167,1438565,1,1,Active Shallow Crust,240.0102,57.99825,0.0,02/14/8367 +9.04409,48.3445,8188,11,8,1,22,5,3.55,5.0,fr,33999,163,1438566,1,3,Active Shallow Crust,0.0,89.98644,-90.0,11/08/8188 +9.04409,48.3445,2705,5,12,5,14,43,3.55,5.0,fr,34000,54,1438566,1,3,Active Shallow Crust,0.0,89.98644,-90.0,05/12/2705 +9.04409,48.3445,2985,12,26,4,55,8,3.55,5.0,fr,34001,59,1438566,1,3,Active Shallow Crust,0.0,89.98644,-90.0,12/26/2985 +9.04409,48.3445,3207,4,17,19,24,6,3.55,15.0,fr,34002,64,1438567,1,2,Active Shallow Crust,0.0,89.98644,-90.0,04/17/3207 +9.04409,48.3445,4505,8,3,5,20,35,3.55,15.0,fr,34003,90,1438567,1,2,Active Shallow Crust,0.0,89.98644,-90.0,08/03/4505 +9.04409,48.3445,7756,8,4,10,27,12,3.55,5.0,fr,34004,155,1438569,1,2,Active Shallow Crust,128.8973,89.9933,0.0,08/04/7756 +9.04409,48.3445,4725,5,5,3,6,25,3.55,5.0,fr,34005,94,1438569,1,2,Active Shallow Crust,128.8973,89.9933,0.0,05/05/4725 +9.04409,48.3445,9573,11,1,20,50,58,3.65,5.0,fr,34006,191,1438572,1,14,Active Shallow Crust,0.0,89.98805,0.0,11/01/9573 +9.04409,48.3445,2086,8,25,8,24,9,3.65,5.0,fr,34007,41,1438572,1,14,Active Shallow Crust,0.0,89.98805,0.0,08/25/2086 +9.04409,48.3445,4725,6,24,0,9,0,3.65,5.0,fr,34008,94,1438572,1,14,Active Shallow Crust,0.0,89.98805,0.0,06/24/4725 +9.04409,48.3445,89,10,2,9,52,46,3.65,5.0,fr,34009,1,1438572,1,14,Active Shallow Crust,0.0,89.98805,0.0,10/02/0089 +9.04409,48.3445,6305,6,5,18,40,6,3.65,5.0,fr,34010,126,1438572,1,14,Active Shallow Crust,0.0,89.98805,0.0,06/05/6305 +9.04409,48.3445,3651,4,25,16,26,22,3.65,5.0,fr,34011,73,1438572,1,14,Active Shallow Crust,0.0,89.98805,0.0,04/25/3651 +9.04409,48.3445,7722,10,29,4,17,9,3.65,5.0,fr,34012,154,1438572,1,14,Active Shallow Crust,0.0,89.98805,0.0,10/29/7722 +9.04409,48.3445,2447,12,19,10,46,2,3.65,5.0,fr,34013,48,1438572,1,14,Active Shallow Crust,0.0,89.98805,0.0,12/19/2447 +9.04409,48.3445,4609,11,5,20,29,50,3.65,5.0,fr,34014,92,1438572,1,14,Active Shallow Crust,0.0,89.98805,0.0,11/05/4609 +9.04409,48.3445,9147,3,25,18,47,8,3.65,5.0,fr,34015,182,1438572,1,14,Active Shallow Crust,0.0,89.98805,0.0,03/25/9147 +9.04409,48.3445,3701,9,22,20,30,8,3.65,5.0,fr,34016,74,1438572,1,14,Active Shallow Crust,0.0,89.98805,0.0,09/22/3701 +9.04409,48.3445,1953,5,13,0,14,46,3.65,5.0,fr,34017,39,1438572,1,14,Active Shallow Crust,0.0,89.98805,0.0,05/13/1953 +9.04409,48.3445,233,10,5,15,53,50,3.65,5.0,fr,34018,4,1438572,1,14,Active Shallow Crust,0.0,89.98805,0.0,10/05/0233 +9.04409,48.3445,3963,10,8,1,47,8,3.65,5.0,fr,34019,79,1438572,1,14,Active Shallow Crust,0.0,89.98805,0.0,10/08/3963 +9.04409,48.3445,509,4,30,1,14,8,3.65,15.0,fr,34020,10,1438573,1,4,Active Shallow Crust,0.0,89.98805,0.0,04/30/0509 +9.04409,48.3445,5552,6,21,10,3,47,3.65,15.0,fr,34021,111,1438573,1,4,Active Shallow Crust,0.0,89.98805,0.0,06/21/5552 +9.04409,48.3445,8975,4,9,16,35,20,3.65,15.0,fr,34022,179,1438573,1,4,Active Shallow Crust,0.0,89.98805,0.0,04/09/8975 +9.04409,48.3445,7457,6,15,21,5,10,3.65,15.0,fr,34023,149,1438573,1,4,Active Shallow Crust,0.0,89.98805,0.0,06/15/7457 +9.04409,48.3445,6458,10,27,15,21,12,3.65,27.5,fr,34024,129,1438574,1,1,Active Shallow Crust,0.0,89.98805,0.0,10/27/6458 +9.04409,48.3445,8527,8,29,12,3,58,3.65,5.0,fr,34025,170,1438575,1,1,Active Shallow Crust,240.0013,58.01398,0.0,08/29/8527 +9.04409,48.3445,6245,8,3,6,59,53,3.65,5.0,fr,34026,124,1438578,1,1,Active Shallow Crust,0.0,89.98792,-90.0,08/03/6245 +9.04409,48.3445,8338,12,1,17,22,20,3.65,15.0,fr,34027,166,1438579,1,2,Active Shallow Crust,0.0,89.98792,-90.0,12/01/8338 +9.04409,48.3445,4021,6,20,16,30,39,3.65,15.0,fr,34028,80,1438579,1,2,Active Shallow Crust,0.0,89.98792,-90.0,06/20/4021 +9.04409,48.3445,6076,1,7,20,25,24,3.65,27.5,fr,34029,121,1438580,1,1,Active Shallow Crust,0.0,89.98792,-90.0,01/07/6076 +9.04409,48.3445,4839,1,13,14,10,33,3.65,5.0,fr,34030,96,1438581,1,2,Active Shallow Crust,128.9007,89.96356,0.0,01/13/4839 +9.04409,48.3445,9104,3,3,10,20,30,3.65,5.0,fr,34031,182,1438581,1,2,Active Shallow Crust,128.9007,89.96356,0.0,03/03/9104 +9.04409,48.3445,1534,2,10,22,13,24,3.75,5.0,fr,34032,30,1438584,1,10,Active Shallow Crust,0.0,89.98935,0.0,02/10/1534 +9.04409,48.3445,583,1,24,20,26,7,3.75,5.0,fr,34033,11,1438584,1,10,Active Shallow Crust,0.0,89.98935,0.0,01/24/0583 +9.04409,48.3445,9753,1,18,20,49,37,3.75,5.0,fr,34034,195,1438584,1,10,Active Shallow Crust,0.0,89.98935,0.0,01/18/9753 +9.04409,48.3445,1516,12,16,8,9,21,3.75,5.0,fr,34035,30,1438584,1,10,Active Shallow Crust,0.0,89.98935,0.0,12/16/1516 +9.04409,48.3445,3328,12,9,13,51,22,3.75,5.0,fr,34036,66,1438584,1,10,Active Shallow Crust,0.0,89.98935,0.0,12/09/3328 +9.04409,48.3445,1205,12,15,10,7,38,3.75,5.0,fr,34037,24,1438584,1,10,Active Shallow Crust,0.0,89.98935,0.0,12/15/1205 +9.04409,48.3445,1284,6,14,5,3,23,3.75,5.0,fr,34038,25,1438584,1,10,Active Shallow Crust,0.0,89.98935,0.0,06/14/1284 +9.04409,48.3445,7334,7,19,5,44,34,3.75,5.0,fr,34039,146,1438584,1,10,Active Shallow Crust,0.0,89.98935,0.0,07/19/7334 +9.04409,48.3445,2222,8,27,13,58,13,3.75,5.0,fr,34040,44,1438584,1,10,Active Shallow Crust,0.0,89.98935,0.0,08/27/2222 +9.04409,48.3445,5380,3,30,2,6,51,3.75,5.0,fr,34041,107,1438584,1,10,Active Shallow Crust,0.0,89.98935,0.0,03/30/5380 +9.04409,48.3445,4489,1,6,18,28,7,3.75,15.0,fr,34042,89,1438585,1,2,Active Shallow Crust,0.0,89.98935,0.0,01/06/4489 +9.04409,48.3445,4341,5,7,8,44,57,3.75,15.0,fr,34043,86,1438585,1,2,Active Shallow Crust,0.0,89.98935,0.0,05/07/4341 +9.04409,48.3445,1855,8,5,14,24,6,3.75,5.0,fr,34044,37,1438587,1,3,Active Shallow Crust,240.007,58.01873,0.0,08/05/1855 +9.04409,48.3445,5598,12,26,20,48,56,3.75,5.0,fr,34045,111,1438587,1,3,Active Shallow Crust,240.007,58.01873,0.0,12/26/5598 +9.04409,48.3445,4739,11,13,9,37,55,3.75,5.0,fr,34046,94,1438587,1,3,Active Shallow Crust,240.007,58.01873,0.0,11/13/4739 +9.04409,48.3445,4169,11,5,5,0,43,3.75,15.0,fr,34047,83,1438588,1,2,Active Shallow Crust,240.007,58.01873,0.0,11/05/4169 +9.04409,48.3445,5247,4,14,22,15,5,3.75,15.0,fr,34048,104,1438588,1,2,Active Shallow Crust,240.007,58.01873,0.0,04/14/5247 +9.04409,48.3445,3328,2,1,22,45,48,3.75,5.0,fr,34049,66,1438590,1,2,Active Shallow Crust,0.0,89.98923,-90.0,02/01/3328 +9.04409,48.3445,7286,9,20,20,2,57,3.75,5.0,fr,34050,145,1438590,1,2,Active Shallow Crust,0.0,89.98923,-90.0,09/20/7286 +9.04409,48.3445,8336,12,1,11,59,28,3.75,15.0,fr,34051,166,1438591,1,1,Active Shallow Crust,0.0,89.98923,-90.0,12/01/8336 +9.04409,48.3445,6810,9,9,14,42,4,3.75,15.0,fr,34052,136,1438594,1,1,Active Shallow Crust,128.8964,89.96752,0.0,09/09/6810 +9.04409,48.3445,8916,3,9,7,32,19,3.85,5.0,fr,34053,178,1438596,1,5,Active Shallow Crust,0.0,89.99051,0.0,03/09/8916 +9.04409,48.3445,8604,7,15,10,6,26,3.85,5.0,fr,34054,172,1438596,1,5,Active Shallow Crust,0.0,89.99051,0.0,07/15/8604 +9.04409,48.3445,9873,1,5,15,49,23,3.85,5.0,fr,34055,197,1438596,1,5,Active Shallow Crust,0.0,89.99051,0.0,01/05/9873 +9.04409,48.3445,3713,8,21,18,43,18,3.85,5.0,fr,34056,74,1438596,1,5,Active Shallow Crust,0.0,89.99051,0.0,08/21/3713 +9.04409,48.3445,3226,8,29,2,39,9,3.85,5.0,fr,34057,64,1438596,1,5,Active Shallow Crust,0.0,89.99051,0.0,08/29/3226 +9.04409,48.3445,3781,3,21,20,58,24,3.85,15.0,fr,34058,75,1438597,1,1,Active Shallow Crust,0.0,89.99051,0.0,03/21/3781 +9.04409,48.3445,9197,12,31,17,14,22,3.85,27.5,fr,34059,183,1438598,1,4,Active Shallow Crust,0.0,89.99051,0.0,12/31/9197 +9.04409,48.3445,9562,5,7,7,7,45,3.85,27.5,fr,34060,191,1438598,1,4,Active Shallow Crust,0.0,89.99051,0.0,05/07/9562 +9.04409,48.3445,9019,4,22,9,24,52,3.85,27.5,fr,34061,180,1438598,1,4,Active Shallow Crust,0.0,89.99051,0.0,04/22/9019 +9.04409,48.3445,250,7,2,20,0,11,3.85,27.5,fr,34062,4,1438598,1,4,Active Shallow Crust,0.0,89.99051,0.0,07/02/0250 +9.04409,48.3445,4500,11,11,4,9,49,3.85,5.0,fr,34063,89,1438599,1,2,Active Shallow Crust,240.0114,57.99665,0.0,11/11/4500 +9.04409,48.3445,3118,7,10,21,45,20,3.85,5.0,fr,34064,62,1438599,1,2,Active Shallow Crust,240.0114,57.99665,0.0,07/10/3118 +9.04409,48.3445,6319,11,19,23,15,39,3.85,5.0,fr,34065,126,1438602,1,1,Active Shallow Crust,0.0,89.9904,-90.0,11/19/6319 +9.04409,48.3445,1793,8,5,23,55,8,3.85,15.0,fr,34066,35,1438603,1,1,Active Shallow Crust,0.0,89.9904,-90.0,08/05/1793 +9.04409,48.3445,3326,5,23,13,11,16,3.85,5.0,fr,34067,66,1438605,1,1,Active Shallow Crust,128.8956,89.99525,0.0,05/23/3326 +9.04409,48.3445,7846,11,15,7,24,10,3.85,15.0,fr,34068,156,1438606,1,1,Active Shallow Crust,128.8956,89.99525,0.0,11/15/7846 +9.04409,48.3445,974,5,2,0,22,13,3.95,5.0,fr,34069,19,1438608,1,5,Active Shallow Crust,0.0,89.99154,0.0,05/02/0974 +9.04409,48.3445,1349,8,11,12,13,11,3.95,5.0,fr,34070,26,1438608,1,5,Active Shallow Crust,0.0,89.99154,0.0,08/11/1349 +9.04409,48.3445,7961,5,4,16,7,42,3.95,5.0,fr,34071,159,1438608,1,5,Active Shallow Crust,0.0,89.99154,0.0,05/04/7961 +9.04409,48.3445,928,1,17,15,7,56,3.95,5.0,fr,34072,18,1438608,1,5,Active Shallow Crust,0.0,89.99154,0.0,01/17/0928 +9.04409,48.3445,8408,11,23,16,25,39,3.95,5.0,fr,34073,168,1438608,1,5,Active Shallow Crust,0.0,89.99154,0.0,11/23/8408 +9.04409,48.3445,9714,3,31,7,1,11,3.95,15.0,fr,34074,194,1438609,1,5,Active Shallow Crust,0.0,89.99154,0.0,03/31/9714 +9.04409,48.3445,642,2,27,19,43,13,3.95,15.0,fr,34075,12,1438609,1,5,Active Shallow Crust,0.0,89.99154,0.0,02/27/0642 +9.04409,48.3445,5264,12,30,18,8,43,3.95,15.0,fr,34076,105,1438609,1,5,Active Shallow Crust,0.0,89.99154,0.0,12/30/5264 +9.04409,48.3445,8581,10,2,13,40,41,3.95,15.0,fr,34077,171,1438609,1,5,Active Shallow Crust,0.0,89.99154,0.0,10/02/8581 +9.04409,48.3445,3161,5,24,17,59,28,3.95,15.0,fr,34078,63,1438609,1,5,Active Shallow Crust,0.0,89.99154,0.0,05/24/3161 +9.04409,48.3445,9447,8,10,3,19,12,3.95,5.0,fr,34079,188,1438611,1,2,Active Shallow Crust,240.0203,58.00459,0.0,08/10/9447 +9.04409,48.3445,3145,9,28,7,37,16,3.95,5.0,fr,34080,62,1438611,1,2,Active Shallow Crust,240.0203,58.00459,0.0,09/28/3145 +9.04409,48.3445,661,9,11,16,22,51,3.95,5.0,fr,34081,13,1438614,1,1,Active Shallow Crust,0.0,89.99145,-90.0,09/11/0661 +9.04409,48.3445,4655,1,1,0,52,28,3.95,15.0,fr,34082,93,1438615,1,1,Active Shallow Crust,0.0,89.99145,-90.0,01/01/4655 +9.04409,48.3445,8018,1,18,5,13,28,3.95,27.5,fr,34083,160,1438616,1,1,Active Shallow Crust,0.0,89.99145,-90.0,01/18/8018 +9.04409,48.3445,7561,1,24,0,57,19,3.95,5.0,fr,34084,151,1438617,1,1,Active Shallow Crust,128.8995,89.99577,0.0,01/24/7561 +9.04409,48.3445,2304,1,5,4,37,16,4.05,5.0,fr,34085,46,1438620,1,8,Active Shallow Crust,0.0,89.99246,0.0,01/05/2304 +9.04409,48.3445,3517,9,30,8,46,39,4.05,5.0,fr,34086,70,1438620,1,8,Active Shallow Crust,0.0,89.99246,0.0,09/30/3517 +9.04409,48.3445,3449,1,5,7,27,32,4.05,5.0,fr,34087,68,1438620,1,8,Active Shallow Crust,0.0,89.99246,0.0,01/05/3449 +9.04409,48.3445,1409,7,27,23,59,33,4.05,5.0,fr,34088,28,1438620,1,8,Active Shallow Crust,0.0,89.99246,0.0,07/27/1409 +9.04409,48.3445,1193,6,23,22,51,18,4.05,5.0,fr,34089,23,1438620,1,8,Active Shallow Crust,0.0,89.99246,0.0,06/23/1193 +9.04409,48.3445,1475,9,30,8,30,22,4.05,5.0,fr,34090,29,1438620,1,8,Active Shallow Crust,0.0,89.99246,0.0,09/30/1475 +9.04409,48.3445,7425,11,4,7,49,44,4.05,5.0,fr,34091,148,1438620,1,8,Active Shallow Crust,0.0,89.99246,0.0,11/04/7425 +9.04409,48.3445,6310,9,9,5,27,40,4.05,5.0,fr,34092,126,1438620,1,8,Active Shallow Crust,0.0,89.99246,0.0,09/09/6310 +9.04409,48.3445,7755,4,19,20,33,50,4.05,27.5,fr,34093,155,1438622,1,1,Active Shallow Crust,0.0,89.99246,0.0,04/19/7755 +9.04409,48.3445,266,9,24,18,45,10,4.05,5.0,fr,34094,5,1438623,1,1,Active Shallow Crust,240.0071,58.00546,0.0,09/24/0266 +9.04409,48.3445,8245,6,3,2,1,19,4.15,5.0,fr,34095,164,1438632,1,5,Active Shallow Crust,0.0,89.99328,0.0,06/03/8245 +9.04409,48.3445,7541,5,15,6,2,16,4.15,5.0,fr,34096,150,1438632,1,5,Active Shallow Crust,0.0,89.99328,0.0,05/15/7541 +9.04409,48.3445,6330,9,24,15,36,56,4.15,5.0,fr,34097,126,1438632,1,5,Active Shallow Crust,0.0,89.99328,0.0,09/24/6330 +9.04409,48.3445,6865,7,14,0,30,12,4.15,5.0,fr,34098,137,1438632,1,5,Active Shallow Crust,0.0,89.99328,0.0,07/14/6865 +9.04409,48.3445,8049,9,1,9,15,33,4.15,5.0,fr,34099,160,1438632,1,5,Active Shallow Crust,0.0,89.99328,0.0,09/01/8049 +9.04409,48.3445,5740,5,10,5,28,59,4.15,15.0,fr,34100,114,1438633,1,2,Active Shallow Crust,0.0,89.99328,0.0,05/10/5740 +9.04409,48.3445,5048,4,13,4,44,12,4.15,15.0,fr,34101,100,1438633,1,2,Active Shallow Crust,0.0,89.99328,0.0,04/13/5048 +9.04409,48.3445,6624,10,26,16,55,16,4.15,27.5,fr,34102,132,1438634,1,1,Active Shallow Crust,0.0,89.99328,0.0,10/26/6624 +9.04409,48.3445,4540,3,23,20,6,33,4.15,5.0,fr,34103,90,1438635,1,2,Active Shallow Crust,240.0089,57.99757,0.0,03/23/4540 +9.04409,48.3445,8644,5,12,2,43,55,4.15,5.0,fr,34104,172,1438635,1,2,Active Shallow Crust,240.0089,57.99757,0.0,05/12/8644 +9.04409,48.3445,8450,9,1,5,44,26,4.15,27.5,fr,34105,168,1438637,1,1,Active Shallow Crust,240.0089,57.99754,0.0,09/01/8450 +9.04409,48.3445,7281,3,2,0,58,4,4.15,5.0,fr,34106,145,1438638,1,1,Active Shallow Crust,0.0,89.9932,-90.0,03/02/7281 +9.04409,48.3445,8868,1,27,11,41,42,4.15,5.0,fr,34107,177,1438641,1,2,Active Shallow Crust,128.8974,89.99329,0.0,01/27/8868 +9.04409,48.3445,6990,2,11,15,37,27,4.15,5.0,fr,34108,139,1438641,1,2,Active Shallow Crust,128.8974,89.99329,0.0,02/11/6990 +9.04409,48.3445,1254,10,12,17,59,38,4.15,15.0,fr,34109,25,1438642,1,1,Active Shallow Crust,128.8974,89.99329,0.0,10/12/1254 +9.04409,48.3445,4295,5,28,7,51,41,4.15,27.5,fr,34110,85,1438643,1,1,Active Shallow Crust,128.8974,89.99329,0.0,05/28/4295 +9.04409,48.3445,6361,3,1,5,10,11,4.25,5.0,fr,34111,127,1438644,1,3,Active Shallow Crust,0.0,89.98802,0.0,03/01/6361 +9.04409,48.3445,7899,6,10,18,17,24,4.25,5.0,fr,34112,157,1438644,1,3,Active Shallow Crust,0.0,89.98802,0.0,06/10/7899 +9.04409,48.3445,4229,11,3,17,44,8,4.25,5.0,fr,34113,84,1438644,1,3,Active Shallow Crust,0.0,89.98802,0.0,11/03/4229 +9.04409,48.3445,9901,8,9,8,57,51,4.25,5.0,fr,34114,198,1438647,1,1,Active Shallow Crust,240.0074,57.99477,0.0,08/09/9901 +9.04409,48.3445,2375,6,17,17,25,21,4.25,5.0,fr,34115,47,1438650,1,1,Active Shallow Crust,0.0,89.98788,-90.0,06/17/2375 +9.04409,48.3445,1012,10,19,19,56,5,4.25,15.0,fr,34116,20,1438654,1,1,Active Shallow Crust,128.8938,89.98102,0.0,10/19/1012 +9.04409,48.3445,2044,9,18,17,12,4,4.25,27.5,fr,34117,40,1438655,1,1,Active Shallow Crust,128.8938,89.98102,0.0,09/18/2044 +9.04409,48.3445,9756,6,5,4,35,31,4.35,5.0,fr,34118,195,1438656,1,2,Active Shallow Crust,0.0,89.98933,0.0,06/05/9756 +9.04409,48.3445,7615,5,28,10,42,36,4.35,5.0,fr,34119,152,1438656,1,2,Active Shallow Crust,0.0,89.98933,0.0,05/28/7615 +9.04409,48.3445,1521,4,7,17,1,25,4.35,27.5,fr,34120,30,1438658,1,2,Active Shallow Crust,0.0,89.98933,0.0,04/07/1521 +9.04409,48.3445,4856,2,15,0,46,56,4.35,27.5,fr,34121,97,1438658,1,2,Active Shallow Crust,0.0,89.98933,0.0,02/15/4856 +9.04409,48.3445,8845,6,6,2,32,57,4.35,5.0,fr,34122,176,1438659,1,2,Active Shallow Crust,240.0093,57.99614,0.0,06/06/8845 +9.04409,48.3445,9091,2,26,19,27,38,4.35,5.0,fr,34123,181,1438659,1,2,Active Shallow Crust,240.0093,57.99614,0.0,02/26/9091 +9.04409,48.3445,1025,5,5,4,58,24,4.45,5.0,fr,34124,20,1438668,1,2,Active Shallow Crust,0.0,89.99049,0.0,05/05/1025 +9.04409,48.3445,7069,1,29,15,21,46,4.45,5.0,fr,34125,141,1438668,1,2,Active Shallow Crust,0.0,89.99049,0.0,01/29/7069 +9.04409,48.3445,7749,3,19,3,45,44,4.45,27.5,fr,34126,154,1438673,1,1,Active Shallow Crust,240.005,57.99495,0.0,03/19/7749 +9.04409,48.3445,4984,10,13,17,22,57,4.55,5.0,fr,34127,99,1438680,1,4,Active Shallow Crust,0.0,89.99152,0.0,10/13/4984 +9.04409,48.3445,2486,5,7,17,22,41,4.55,5.0,fr,34128,49,1438680,1,4,Active Shallow Crust,0.0,89.99152,0.0,05/07/2486 +9.04409,48.3445,292,7,28,1,36,23,4.55,5.0,fr,34129,5,1438680,1,4,Active Shallow Crust,0.0,89.99152,0.0,07/28/0292 +9.04409,48.3445,8189,8,25,5,43,33,4.55,5.0,fr,34130,163,1438680,1,4,Active Shallow Crust,0.0,89.99152,0.0,08/25/8189 +9.04409,48.3445,8698,7,2,15,38,49,4.55,27.5,fr,34131,173,1438682,1,1,Active Shallow Crust,0.0,89.99152,0.0,07/02/8698 +9.04409,48.3445,8455,7,6,2,52,15,4.55,5.0,fr,34132,169,1438689,1,1,Active Shallow Crust,128.8942,89.98575,0.0,07/06/8455 +9.04409,48.3445,4615,11,15,18,47,18,4.65,5.0,fr,34133,92,1438692,1,1,Active Shallow Crust,0.0,89.98866,0.0,11/15/4615 +9.04409,48.3445,9315,2,28,10,30,18,4.65,15.0,fr,34134,186,1438693,1,1,Active Shallow Crust,0.0,89.98866,0.0,02/28/9315 +9.04409,48.3445,8420,6,5,5,22,57,4.65,5.0,fr,34135,168,1438695,1,1,Active Shallow Crust,240.0114,57.99485,0.0,06/05/8420 +9.04409,48.3445,6086,5,25,0,52,1,4.65,5.0,fr,34136,121,1438701,1,1,Active Shallow Crust,128.8904,89.9873,0.0,05/25/6086 +9.04409,48.3445,4312,11,24,21,7,10,4.75,5.0,fr,34137,86,1438704,1,1,Active Shallow Crust,0.0,89.9899,0.0,11/24/4312 +9.04409,48.3445,6077,9,25,20,30,2,4.75,5.0,fr,34138,121,1438710,1,1,Active Shallow Crust,0.0,89.98978,-90.0,09/25/6077 +9.04409,48.3445,2877,12,23,2,16,6,4.85,5.0,fr,34139,57,1438716,1,1,Active Shallow Crust,0.0,89.991,0.0,12/23/2877 +9.04409,48.3445,349,10,5,7,33,55,4.85,15.0,fr,34140,6,1438717,1,1,Active Shallow Crust,0.0,89.991,0.0,10/05/0349 +9.04409,48.3445,3147,11,4,2,44,47,4.95,5.0,fr,34141,62,1438728,1,1,Active Shallow Crust,0.0,89.9893,0.0,11/04/3147 +9.04409,48.3445,8322,4,30,14,22,51,4.95,15.0,fr,34142,166,1438729,1,1,Active Shallow Crust,0.0,89.9893,0.0,04/30/8322 +9.04409,48.3445,508,12,13,20,48,11,5.25,5.0,fr,34143,10,1438767,1,1,Active Shallow Crust,240.0269,58.00056,0.0,12/13/0508 +9.04409,48.3445,219,7,24,16,38,51,5.25,5.0,fr,34144,4,1438770,1,1,Active Shallow Crust,0.0,89.99042,-90.0,07/24/0219 +9.04409,48.3445,7250,11,18,20,40,19,5.45,5.0,fr,34145,144,1438788,1,1,Active Shallow Crust,0.0,89.98946,0.0,11/18/7250 +9.04409,48.3445,9309,8,1,17,50,15,5.45,5.0,fr,34146,186,1438797,1,1,Active Shallow Crust,128.8777,89.9887,0.0,08/01/9309 +9.04409,48.3445,43,6,3,3,24,30,5.55,5.0,fr,34147,0,1438800,1,1,Active Shallow Crust,0.0,89.99062,0.0,06/03/0043 +9.04409,48.3445,1898,3,7,18,27,49,5.85,15.0,fr,34148,37,1438837,1,1,Active Shallow Crust,0.0,89.98956,0.0,03/07/1898 +-0.84924,45.13927,1722,11,1,8,14,26,3.55,5.0,fr,34149,34,1439040,1,1,Active Shallow Crust,0.0,89.99022,0.0,11/01/1722 +-0.84924,45.13927,799,5,21,13,20,18,3.75,5.0,fr,34150,15,1439064,1,1,Active Shallow Crust,0.0,89.99011,0.0,05/21/0799 +-0.84924,45.13927,8991,1,14,15,5,19,3.75,15.0,fr,34151,179,1439065,1,1,Active Shallow Crust,0.0,89.99011,0.0,01/14/8991 +2.4666,52.94728,9621,8,15,20,7,20,3.95,5.0,fr,34152,192,1439571,1,1,Active Shallow Crust,240.0206,58.00544,0.0,08/15/9621 +2.25825,52.30838,2234,12,16,23,32,52,3.85,27.5,fr,34153,44,1440041,1,1,Active Shallow Crust,240.0118,57.99787,0.0,12/16/2234 +7.88907,49.98724,3679,12,5,16,20,16,3.55,15.0,fr,34154,73,1440481,1,1,Active Shallow Crust,0.0,89.98703,0.0,12/05/3679 +7.88907,49.98724,4320,12,3,21,20,21,3.55,27.5,fr,34155,86,1440482,1,1,Active Shallow Crust,0.0,89.98703,0.0,12/03/4320 +7.88907,49.98724,7534,11,27,6,9,13,3.65,5.0,fr,34156,150,1440492,1,2,Active Shallow Crust,0.0,89.98844,0.0,11/27/7534 +7.88907,49.98724,5776,2,17,19,39,32,3.65,5.0,fr,34157,115,1440492,1,2,Active Shallow Crust,0.0,89.98844,0.0,02/17/5776 +7.88907,49.98724,9895,10,5,6,3,9,3.65,15.0,fr,34158,197,1440493,1,2,Active Shallow Crust,0.0,89.98844,0.0,10/05/9895 +7.88907,49.98724,5627,7,24,5,8,43,3.65,15.0,fr,34159,112,1440493,1,2,Active Shallow Crust,0.0,89.98844,0.0,07/24/5627 +7.88907,49.98724,90,9,25,5,29,40,3.75,15.0,fr,34160,1,1440505,1,1,Active Shallow Crust,0.0,89.9897,0.0,09/25/0090 +7.88907,49.98724,6775,1,28,12,52,37,3.85,5.0,fr,34161,135,1440516,1,1,Active Shallow Crust,0.0,89.99082,0.0,01/28/6775 +7.88907,49.98724,5879,4,29,2,27,19,3.85,15.0,fr,34162,117,1440517,1,1,Active Shallow Crust,0.0,89.99082,0.0,04/29/5879 +7.88907,49.98724,3091,7,22,2,29,41,3.85,15.0,fr,34163,61,1440520,1,1,Active Shallow Crust,240.0121,57.99756,0.0,07/22/3091 +7.88907,49.98724,9429,9,1,13,22,59,4.05,15.0,fr,34164,188,1440541,1,1,Active Shallow Crust,0.0,89.98906,0.0,09/01/9429 +7.88907,49.98724,8005,2,13,1,23,25,4.05,27.5,fr,34165,160,1440542,1,1,Active Shallow Crust,0.0,89.98906,0.0,02/13/8005 +7.88907,49.98724,298,2,21,2,9,12,4.05,27.5,fr,34166,5,1440548,1,1,Active Shallow Crust,0.0,89.98894,-90.0,02/21/0298 +7.88907,49.98724,5296,6,18,6,37,45,4.15,5.0,fr,34167,105,1440552,1,1,Active Shallow Crust,0.0,89.99025,0.0,06/18/5296 +7.88907,49.98724,16,3,1,1,18,24,4.15,15.0,fr,34168,0,1440553,1,1,Active Shallow Crust,0.0,89.99025,0.0,03/01/0016 +7.88907,49.98724,8154,4,29,20,41,1,4.25,5.0,fr,34169,163,1440564,1,1,Active Shallow Crust,0.0,89.99131,0.0,04/29/8154 +7.88907,49.98724,799,3,19,3,32,27,4.35,5.0,fr,34170,15,1440585,1,1,Active Shallow Crust,128.8974,89.9827,0.0,03/19/0799 +7.88907,49.98724,7069,1,27,3,24,22,4.55,5.0,fr,34171,141,1440600,1,1,Active Shallow Crust,0.0,89.98975,0.0,01/27/7069 +7.88907,49.98724,6880,6,26,6,20,22,4.65,15.0,fr,34172,137,1440622,1,1,Active Shallow Crust,128.8898,89.98695,0.0,06/26/6880 +7.88907,49.98724,2588,11,21,0,19,1,5.45,5.0,fr,34173,51,1440708,1,1,Active Shallow Crust,0.0,89.98981,0.0,11/21/2588 +3.28972,52.19981,3759,11,25,12,15,18,3.65,5.0,fr,34174,75,1440972,1,1,Active Shallow Crust,0.0,89.98898,0.0,11/25/3759 +3.28972,52.19981,7946,2,23,16,1,35,3.75,5.0,fr,34175,158,1440984,1,1,Active Shallow Crust,0.0,89.99018,0.0,02/23/7946 +-0.11177,51.71504,1131,2,6,6,46,30,3.85,27.5,fr,34176,22,1441478,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/06/1131 +-0.11177,51.71504,6384,7,9,19,35,20,3.85,5.0,fr,34177,127,1441482,1,1,Active Shallow Crust,0.0,89.99001,-90.0,07/09/6384 +-0.11177,51.71504,2356,5,14,16,36,5,3.95,15.0,fr,34178,47,1441495,1,1,Active Shallow Crust,360.0,89.99003,-90.0,05/14/2356 +2.34718,49.08369,8913,8,30,11,10,32,3.55,15.0,fr,34179,178,1441921,1,1,Active Shallow Crust,0.0,89.99009,0.0,08/30/8913 +2.34718,49.08369,2333,2,22,17,48,24,3.55,5.0,fr,34180,46,1441926,1,1,Active Shallow Crust,0.0,89.98997,-90.0,02/22/2333 +2.34718,49.08369,4096,10,11,3,6,8,3.75,5.0,fr,34181,81,1441950,1,1,Active Shallow Crust,0.0,89.98939,-90.0,10/11/4096 +1.04791,47.56987,2887,8,4,20,19,22,3.55,5.0,fr,34182,57,1442400,1,1,Active Shallow Crust,0.0,89.98979,0.0,08/04/2887 +1.04791,47.56987,3602,7,7,22,40,45,3.55,15.0,fr,34183,72,1442404,1,1,Active Shallow Crust,240.012,57.99811,0.0,07/07/3602 +1.04791,47.56987,8627,10,29,12,6,38,3.55,15.0,fr,34184,172,1442407,1,1,Active Shallow Crust,0.0,89.98968,-90.0,10/29/8627 +1.04791,47.56987,4730,8,18,9,52,27,3.65,15.0,fr,34185,94,1442413,1,1,Active Shallow Crust,0.0,89.98939,0.0,08/18/4730 +1.04791,47.56987,9347,11,18,1,53,55,3.65,5.0,fr,34186,186,1442415,1,1,Active Shallow Crust,240.0011,58.01285,0.0,11/18/9347 +1.04791,47.56987,9071,3,6,3,10,58,3.85,5.0,fr,34187,181,1442439,1,1,Active Shallow Crust,240.011,57.99792,0.0,03/06/9071 +1.04791,47.56987,2914,8,29,4,49,27,4.05,27.5,fr,34188,58,1442462,1,1,Active Shallow Crust,0.0,89.99043,0.0,08/29/2914 +1.04791,47.56987,9106,6,5,3,59,26,4.15,15.0,fr,34189,182,1442473,1,1,Active Shallow Crust,0.0,89.98977,0.0,06/05/9106 +1.04791,47.56987,362,2,6,11,40,38,4.95,5.0,fr,34190,7,1442571,1,1,Active Shallow Crust,240.0124,58.00458,0.0,02/06/0362 +1.04484,43.94438,9394,6,2,13,26,53,3.65,5.0,fr,34191,187,1442892,1,1,Active Shallow Crust,0.0,89.9903,0.0,06/02/9394 +1.04484,43.94438,3802,5,2,9,32,40,3.65,5.0,fr,34192,76,1442898,1,1,Active Shallow Crust,0.0,89.99018,-90.0,05/02/3802 +1.04484,43.94438,9845,3,1,15,7,50,4.15,5.0,fr,34193,196,1442958,1,1,Active Shallow Crust,0.0,89.98988,-90.0,03/01/9845 +1.04484,43.94438,6405,1,18,6,7,37,4.25,15.0,fr,34194,128,1442968,1,1,Active Shallow Crust,240.007,57.9939,0.0,01/18/6405 +1.04484,43.94438,2255,7,30,1,0,13,4.45,5.0,fr,34195,45,1442991,1,1,Active Shallow Crust,240.0046,57.99453,0.0,07/30/2255 +-5.70572,46.27107,9772,2,27,21,31,34,3.75,5.0,fr,34196,195,1443384,1,1,Active Shallow Crust,0.0,89.98893,0.0,02/27/9772 +-5.70572,46.27107,1325,1,10,18,30,45,3.85,5.0,fr,34197,26,1443396,1,1,Active Shallow Crust,0.0,89.99013,0.0,01/10/1325 +-1.25125,45.51159,2370,1,7,19,2,22,3.75,15.0,fr,34198,47,1443865,1,1,Active Shallow Crust,0.0,89.99017,0.0,01/07/2370 +-1.25125,45.51159,1004,7,2,23,20,57,3.85,5.0,fr,34199,20,1443876,1,1,Active Shallow Crust,0.0,89.99,0.0,07/02/1004 +-1.25125,45.51159,7333,12,19,13,4,36,4.15,5.0,fr,34200,146,1443915,1,1,Active Shallow Crust,240.0083,57.99714,0.0,12/19/7333 +-1.25125,45.51159,8070,1,27,15,43,31,5.35,15.0,fr,34201,161,1444060,1,1,Active Shallow Crust,240.0243,57.99775,0.0,01/27/8070 +8.84862,48.06965,2030,9,29,10,37,45,3.55,5.0,fr,34202,40,1444320,1,1,Active Shallow Crust,0.0,89.98653,0.0,09/29/2030 +8.84862,48.06965,1676,6,22,5,13,41,3.55,15.0,fr,34203,33,1444321,1,1,Active Shallow Crust,0.0,89.98653,0.0,06/22/1676 +8.84862,48.06965,8653,4,22,9,49,10,3.65,15.0,fr,34204,173,1444333,1,1,Active Shallow Crust,0.0,89.98799,0.0,04/22/8653 +8.84862,48.06965,792,12,10,6,23,5,3.75,27.5,fr,34205,15,1444346,1,1,Active Shallow Crust,0.0,89.9893,0.0,12/10/0792 +8.84862,48.06965,1397,4,27,13,31,7,3.75,15.0,fr,34206,27,1444348,1,1,Active Shallow Crust,240.0093,58.01587,0.0,04/27/1397 +8.84862,48.06965,9396,12,25,12,15,28,3.75,5.0,fr,34207,187,1444353,1,1,Active Shallow Crust,128.897,89.96752,0.0,12/25/9396 +8.84862,48.06965,9004,5,12,2,49,12,3.85,5.0,fr,34208,180,1444359,1,1,Active Shallow Crust,240.0113,57.99841,0.0,05/12/9004 +8.84862,48.06965,5407,2,27,14,12,8,3.85,5.0,fr,34209,108,1444365,1,1,Active Shallow Crust,128.8977,89.99046,0.0,02/27/5407 +8.84862,48.06965,8663,5,12,16,52,50,3.95,5.0,fr,34210,173,1444368,1,1,Active Shallow Crust,0.0,89.99149,0.0,05/12/8663 +8.84862,48.06965,2022,2,15,0,23,34,4.05,5.0,fr,34211,40,1444389,1,1,Active Shallow Crust,128.8882,89.99621,0.0,02/15/2022 +8.84862,48.06965,9304,12,18,4,8,11,4.25,5.0,fr,34212,186,1444404,1,1,Active Shallow Crust,0.0,89.98796,0.0,12/18/9304 +8.84862,48.06965,5082,4,23,19,48,55,4.35,15.0,fr,34213,101,1444423,1,1,Active Shallow Crust,0.0,89.98914,-90.0,04/23/5082 +8.84862,48.06965,8025,10,1,4,15,21,4.55,15.0,fr,34214,160,1444441,1,1,Active Shallow Crust,0.0,89.99148,0.0,10/01/8025 +8.84862,48.06965,715,11,6,16,42,55,4.75,5.0,fr,34215,14,1444464,1,1,Active Shallow Crust,0.0,89.98985,0.0,11/06/0715 +8.848639,48.06965,7747,5,9,21,43,49,6.85,13.30363,fr,34216,154,1444722,1,1,Active Shallow Crust,0.0,89.99006,-90.0,05/09/7747 +-3.03925,42.13752,2790,6,24,15,44,10,3.55,15.0,fr,34217,55,1444801,1,1,Active Shallow Crust,0.0,89.98878,0.0,06/24/2790 +-3.03925,42.13752,7996,6,6,19,39,14,3.55,5.0,fr,34218,159,1444803,1,1,Active Shallow Crust,240.0117,57.998,0.0,06/06/7996 +-3.03925,42.13752,5866,9,29,0,24,14,3.65,15.0,fr,34219,117,1444819,1,1,Active Shallow Crust,0.0,89.98989,-90.0,09/29/5866 +-3.03925,42.13752,5213,4,6,4,14,19,4.15,15.0,fr,34220,104,1444873,1,1,Active Shallow Crust,0.0,89.99063,0.0,04/06/5213 +-3.37075,48.98629,3111,5,6,19,29,46,3.55,15.0,fr,34221,62,1445767,1,1,Active Shallow Crust,0.0,89.98996,-90.0,05/06/3111 +-3.37075,48.98629,8289,6,16,1,41,25,3.65,5.0,fr,34222,165,1445772,1,1,Active Shallow Crust,0.0,89.99115,0.0,06/16/8289 +-3.37075,48.98629,5606,4,15,4,12,26,3.85,5.0,fr,34223,112,1445796,1,1,Active Shallow Crust,0.0,89.99063,0.0,04/15/5606 +-3.37075,48.98629,8134,6,8,17,59,36,4.15,5.0,fr,34224,162,1445832,1,2,Active Shallow Crust,0.0,89.99005,0.0,06/08/8134 +-3.37075,48.98629,5741,2,2,18,43,31,4.15,5.0,fr,34225,114,1445832,1,2,Active Shallow Crust,0.0,89.99005,0.0,02/02/5741 +-3.37075,48.98629,952,12,11,5,20,6,4.75,5.0,fr,34226,19,1445913,1,1,Active Shallow Crust,128.8879,89.98811,0.0,12/11/0952 +0.2415,49.7733,271,7,9,16,37,32,3.55,5.0,fr,34227,5,1446240,1,1,Active Shallow Crust,0.0,89.99003,0.0,07/09/0271 +0.2415,49.7733,229,3,16,22,14,44,3.55,15.0,fr,34228,4,1446244,1,1,Active Shallow Crust,240.0125,57.99823,0.0,03/16/0229 +0.2415,49.7733,2358,10,26,10,0,13,3.55,27.5,fr,34229,47,1446251,1,1,Active Shallow Crust,128.896,89.99369,0.0,10/26/2358 +0.2415,49.7733,8157,4,24,14,57,35,3.65,15.0,fr,34230,163,1446253,1,1,Active Shallow Crust,0.0,89.99002,0.0,04/24/8157 +0.2415,49.7733,7756,9,2,1,55,27,3.65,15.0,fr,34231,155,1446262,1,1,Active Shallow Crust,128.9001,89.96351,0.0,09/02/7756 +0.2415,49.7733,588,12,30,11,15,14,3.75,5.0,fr,34232,11,1446264,1,1,Active Shallow Crust,0.0,89.98997,0.0,12/30/0588 +0.2415,49.7733,8450,5,11,23,56,26,3.75,5.0,fr,34233,168,1446270,1,1,Active Shallow Crust,0.0,89.99003,-90.0,05/11/8450 +0.2415,49.7733,5837,9,24,18,28,11,3.75,5.0,fr,34234,116,1446273,1,1,Active Shallow Crust,128.8963,89.96735,0.0,09/24/5837 +0.2415,49.7733,8064,10,17,15,22,39,3.85,5.0,fr,34235,161,1446276,1,1,Active Shallow Crust,0.0,89.99006,0.0,10/17/8064 +0.2415,49.7733,3450,10,6,11,48,12,3.95,5.0,fr,34236,68,1446288,1,1,Active Shallow Crust,0.0,89.98998,0.0,10/06/3450 +0.2415,49.7733,7757,10,6,0,18,34,5.25,27.5,fr,34237,155,1446446,1,1,Active Shallow Crust,0.0,89.98999,0.0,10/06/7757 +2.63492,51.55057,4358,12,25,19,34,1,3.75,5.0,fr,34238,87,1446744,1,1,Active Shallow Crust,0.0,89.99004,0.0,12/25/4358 +2.63492,51.55057,4936,10,9,21,48,42,3.75,15.0,fr,34239,98,1446745,1,1,Active Shallow Crust,0.0,89.99004,0.0,10/09/4936 +2.63492,51.55057,2494,6,21,13,58,59,3.75,5.0,fr,34240,49,1446750,1,1,Active Shallow Crust,0.0,89.98992,-90.0,06/21/2494 +2.63492,51.55057,8431,8,1,6,56,59,3.85,5.0,fr,34241,168,1446762,1,1,Active Shallow Crust,0.0,89.99102,-90.0,08/01/8431 +2.63492,51.55057,9517,5,12,7,47,46,3.85,15.0,fr,34242,190,1446766,1,1,Active Shallow Crust,128.8952,89.99445,0.0,05/12/9517 +2.63492,51.55057,795,5,30,12,26,50,4.05,15.0,fr,34243,15,1446784,1,1,Active Shallow Crust,240.0069,58.00572,0.0,05/30/0795 +2.63492,51.55057,556,3,11,11,59,59,4.15,15.0,fr,34244,11,1446793,1,1,Active Shallow Crust,0.0,89.99057,0.0,03/11/0556 +2.63492,51.55057,5508,7,17,6,33,11,4.35,5.0,fr,34245,110,1446816,1,1,Active Shallow Crust,0.0,89.99001,0.0,07/17/5508 +2.63492,51.55057,6774,2,7,1,42,43,4.95,5.0,fr,34246,135,1446897,1,1,Active Shallow Crust,128.8878,89.98962,0.0,02/07/6774 +6.63048,49.09032,7707,11,27,20,47,53,3.55,27.5,fr,34247,154,1447211,1,1,Active Shallow Crust,128.8968,89.9934,0.0,11/27/7707 +6.63048,49.09032,5382,12,27,2,57,44,3.75,15.0,fr,34248,107,1447225,1,2,Active Shallow Crust,0.0,89.98951,0.0,12/27/5382 +6.63048,49.09032,3395,3,4,7,6,49,3.75,15.0,fr,34249,67,1447225,1,2,Active Shallow Crust,0.0,89.98951,0.0,03/04/3395 +6.63048,49.09032,4162,2,9,3,11,13,3.75,5.0,fr,34250,83,1447230,1,1,Active Shallow Crust,0.0,89.98939,-90.0,02/09/4162 +6.63048,49.09032,4003,8,19,12,47,1,3.95,5.0,fr,34251,80,1447251,1,1,Active Shallow Crust,240.0199,58.00481,0.0,08/19/4003 +6.63048,49.09032,2412,4,15,6,39,26,4.05,27.5,fr,34252,48,1447262,1,1,Active Shallow Crust,0.0,89.98886,0.0,04/15/2412 +6.63048,49.09032,2242,10,6,11,47,12,4.05,5.0,fr,34253,44,1447266,1,1,Active Shallow Crust,0.0,89.98873,-90.0,10/06/2242 +6.63048,49.09032,3580,8,25,3,9,31,4.15,5.0,fr,34254,71,1447272,1,1,Active Shallow Crust,0.0,89.99007,0.0,08/25/3580 +6.63048,49.09032,1831,8,4,4,21,32,4.45,5.0,fr,34255,36,1447308,1,1,Active Shallow Crust,0.0,89.99062,0.0,08/04/1831 +0.42734,41.98154,721,8,5,13,32,46,3.55,5.0,fr,34256,14,1448160,1,1,Active Shallow Crust,0.0,89.99016,0.0,08/05/0721 +0.42734,41.98154,1824,8,21,14,11,41,4.15,15.0,fr,34257,36,1448242,1,1,Active Shallow Crust,128.8982,89.99378,0.0,08/21/1824 +2.79726,43.37898,4650,8,13,7,27,46,3.55,15.0,fr,34258,92,1448641,1,1,Active Shallow Crust,0.0,89.98901,0.0,08/13/4650 +2.79726,43.37898,7764,12,5,6,20,11,3.65,15.0,fr,34259,155,1448653,1,1,Active Shallow Crust,0.0,89.9902,0.0,12/05/7764 +2.79726,43.37898,2066,9,2,7,39,46,3.65,5.0,fr,34260,41,1448655,1,1,Active Shallow Crust,240.0003,58.01293,0.0,09/02/2066 +2.79726,43.37898,2627,2,11,14,37,28,3.85,5.0,fr,34261,52,1448676,1,1,Active Shallow Crust,0.0,89.98962,0.0,02/11/2627 +2.79726,43.37898,1889,9,18,4,48,31,3.85,5.0,fr,34262,37,1448679,1,1,Active Shallow Crust,240.0104,57.99772,0.0,09/18/1889 +2.79726,43.37898,9023,8,15,0,14,51,3.95,5.0,fr,34263,180,1448688,1,1,Active Shallow Crust,0.0,89.99075,0.0,08/15/9023 +2.79726,43.37898,220,11,17,11,31,27,4.15,27.5,fr,34264,4,1448714,1,1,Active Shallow Crust,0.0,89.99081,0.0,11/17/0220 +2.79726,43.37898,7075,10,30,10,5,14,4.65,15.0,fr,34265,141,1448773,1,1,Active Shallow Crust,0.0,89.98967,0.0,10/30/7075 +-1.18241,42.49867,6765,1,29,3,32,57,3.55,5.0,fr,34266,135,1449120,1,2,Active Shallow Crust,0.0,89.99071,0.0,01/29/6765 +-1.18241,42.49867,3168,5,17,16,18,34,3.55,5.0,fr,34267,63,1449120,1,2,Active Shallow Crust,0.0,89.99071,0.0,05/17/3168 +-1.18241,42.49867,1984,11,20,3,49,35,3.55,5.0,fr,34268,39,1449123,1,1,Active Shallow Crust,240.0115,57.9982,0.0,11/20/1984 +-1.18241,42.49867,6028,2,19,2,33,59,3.55,15.0,fr,34269,120,1449130,1,1,Active Shallow Crust,128.8966,89.99349,0.0,02/19/6028 +-1.18241,42.49867,6363,10,20,21,29,28,3.65,5.0,fr,34270,127,1449132,1,1,Active Shallow Crust,0.0,89.99006,0.0,10/20/6363 +-1.18241,42.49867,9344,5,16,21,26,21,3.65,5.0,fr,34271,186,1449141,1,1,Active Shallow Crust,128.9012,89.96345,0.0,05/16/9344 +-1.18241,42.49867,4077,8,11,5,25,22,3.75,5.0,fr,34272,81,1449144,1,1,Active Shallow Crust,0.0,89.98966,0.0,08/11/4077 +-1.18241,42.49867,6076,9,28,17,55,47,3.75,27.5,fr,34273,121,1449146,1,1,Active Shallow Crust,0.0,89.98966,0.0,09/28/6076 +-1.18241,42.49867,8932,9,28,22,22,41,3.75,5.0,fr,34274,178,1449147,1,1,Active Shallow Crust,240.0081,58.01738,0.0,09/28/8932 +-1.18241,42.49867,4388,1,22,20,58,59,3.75,15.0,fr,34275,87,1449151,1,1,Active Shallow Crust,0.0,89.98955,-90.0,01/22/4388 +-1.18241,42.49867,6574,7,27,23,27,31,3.85,5.0,fr,34276,131,1449156,1,1,Active Shallow Crust,0.0,89.98947,0.0,07/27/6574 +-1.18241,42.49867,3173,12,17,20,3,26,3.85,15.0,fr,34277,63,1449157,1,2,Active Shallow Crust,0.0,89.98947,0.0,12/17/3173 +-1.18241,42.49867,9505,11,8,3,10,49,3.85,15.0,fr,34278,190,1449157,1,2,Active Shallow Crust,0.0,89.98947,0.0,11/08/9505 +-1.18241,42.49867,2998,8,8,14,20,51,3.85,27.5,fr,34279,59,1449158,1,1,Active Shallow Crust,0.0,89.98947,0.0,08/08/2998 +-1.18241,42.49867,9195,10,23,12,8,29,3.85,15.0,fr,34280,183,1449166,1,1,Active Shallow Crust,128.8959,89.99408,0.0,10/23/9195 +-1.18241,42.49867,5704,3,12,20,46,20,3.95,27.5,fr,34281,114,1449170,1,1,Active Shallow Crust,0.0,89.98945,0.0,03/12/5704 +-1.18241,42.49867,8431,6,15,19,11,17,3.95,5.0,fr,34282,168,1449171,1,1,Active Shallow Crust,240.0193,58.00487,0.0,06/15/8431 +-1.18241,42.49867,5157,11,27,19,37,34,4.05,15.0,fr,34283,103,1449181,1,1,Active Shallow Crust,0.0,89.98955,0.0,11/27/5157 +-1.18241,42.49867,2100,3,27,20,0,55,4.05,27.5,fr,34284,41,1449188,1,1,Active Shallow Crust,0.0,89.99049,-90.0,03/27/2100 +-1.18241,42.49867,5789,9,4,21,52,35,4.25,5.0,fr,34285,115,1449204,1,2,Active Shallow Crust,0.0,89.99004,0.0,09/04/5789 +-1.18241,42.49867,3227,3,8,12,55,24,4.25,5.0,fr,34286,64,1449204,1,2,Active Shallow Crust,0.0,89.99004,0.0,03/08/3227 +-1.18241,42.49867,8620,2,25,20,11,44,4.35,15.0,fr,34287,172,1449217,1,2,Active Shallow Crust,0.0,89.98964,0.0,02/25/8620 +-1.18241,42.49867,852,9,15,3,22,12,4.35,15.0,fr,34288,17,1449217,1,2,Active Shallow Crust,0.0,89.98964,0.0,09/15/0852 +-1.18241,42.49867,5199,11,5,23,40,9,4.45,27.5,fr,34289,103,1449236,1,1,Active Shallow Crust,0.0,89.98999,-90.0,11/05/5199 +-1.18241,42.49867,8314,8,22,2,5,11,5.65,5.0,fr,34290,166,1449372,1,1,Active Shallow Crust,0.0,89.99006,0.0,08/22/8314 +4.03936,42.22934,2876,8,10,8,31,21,3.55,5.0,fr,34291,57,1449609,1,1,Active Shallow Crust,128.8971,89.99253,0.0,08/10/2876 +4.03936,42.22934,8781,2,24,4,50,4,3.85,5.0,fr,34292,175,1449639,1,1,Active Shallow Crust,240.0098,57.99856,0.0,02/24/8781 +4.03936,42.22934,616,6,21,4,50,11,3.95,5.0,fr,34293,12,1449648,1,2,Active Shallow Crust,0.0,89.99058,0.0,06/21/0616 +4.03936,42.22934,9696,5,28,17,38,7,3.95,5.0,fr,34294,193,1449648,1,2,Active Shallow Crust,0.0,89.99058,0.0,05/28/9696 +4.03936,42.22934,5055,12,20,0,53,14,4.05,15.0,fr,34295,101,1449661,1,1,Active Shallow Crust,0.0,89.9916,0.0,12/20/5055 +-2.99332,47.2578,5908,2,24,12,27,11,3.55,5.0,fr,34296,118,1450080,1,1,Active Shallow Crust,0.0,89.98973,0.0,02/24/5908 +-2.99332,47.2578,2906,5,30,0,9,10,3.65,5.0,fr,34297,58,1450092,1,1,Active Shallow Crust,0.0,89.99085,0.0,05/30/2906 +-2.99332,47.2578,3777,4,19,16,15,4,3.65,5.0,fr,34298,75,1450095,1,1,Active Shallow Crust,240.001,58.01306,0.0,04/19/3777 +-2.99332,47.2578,8557,9,15,7,52,57,3.75,15.0,fr,34299,171,1450105,1,2,Active Shallow Crust,0.0,89.98913,0.0,09/15/8557 +-2.99332,47.2578,130,12,6,4,19,36,3.75,15.0,fr,34300,2,1450105,1,2,Active Shallow Crust,0.0,89.98913,0.0,12/06/0130 +-2.99332,47.2578,7784,1,9,1,55,46,4.25,5.0,fr,34301,155,1450170,1,1,Active Shallow Crust,0.0,89.99072,-90.0,01/09/7784 +-2.99332,47.2578,5568,6,6,11,21,7,4.45,27.5,fr,34302,111,1450190,1,1,Active Shallow Crust,0.0,89.99029,0.0,06/06/5568 +-3.019884,47.28901,7955,7,30,9,55,14,6.85,11.41276,fr,34303,159,1450479,1,1,Active Shallow Crust,240.1485,57.99971,0.0,07/30/7955 +-5.35897,48.38333,9142,12,9,11,41,27,3.55,5.0,fr,34304,182,1451049,1,1,Active Shallow Crust,128.8955,89.9933,0.0,12/09/9142 +-5.35897,48.38333,3618,6,8,14,23,41,3.65,5.0,fr,34305,72,1451052,1,1,Active Shallow Crust,0.0,89.98806,0.0,06/08/3618 +-5.35897,48.38333,626,5,16,15,29,8,3.65,15.0,fr,34306,12,1451062,1,1,Active Shallow Crust,128.8996,89.96356,0.0,05/16/0626 +-5.35897,48.38333,7705,12,28,22,13,25,3.95,5.0,fr,34307,154,1451094,1,1,Active Shallow Crust,0.0,89.99145,-90.0,12/28/7705 +1.58933,43.18387,5846,4,25,7,25,56,3.55,5.0,fr,34308,116,1452000,1,1,Active Shallow Crust,0.0,89.99081,0.0,04/25/5846 +1.58933,43.18387,8075,5,10,20,7,49,3.55,5.0,fr,34309,161,1452006,1,1,Active Shallow Crust,0.0,89.9907,-90.0,05/10/8075 +1.58933,43.18387,4564,9,30,4,25,16,3.65,5.0,fr,34310,91,1452012,1,2,Active Shallow Crust,0.0,89.99017,0.0,09/30/4564 +1.58933,43.18387,6153,5,9,3,46,52,3.65,5.0,fr,34311,123,1452012,1,2,Active Shallow Crust,0.0,89.99017,0.0,05/09/6153 +1.58933,43.18387,254,10,8,22,21,32,3.75,5.0,fr,34312,5,1452024,1,1,Active Shallow Crust,0.0,89.98978,0.0,10/08/0254 +1.58933,43.18387,444,8,25,15,47,47,3.75,5.0,fr,34313,8,1452030,1,1,Active Shallow Crust,0.0,89.98966,-90.0,08/25/0444 +1.58933,43.18387,4874,7,14,7,39,16,3.85,15.0,fr,34314,97,1452037,1,1,Active Shallow Crust,0.0,89.98959,0.0,07/14/4874 +1.58933,43.18387,6216,4,23,8,11,22,4.45,5.0,fr,34315,124,1452108,1,1,Active Shallow Crust,0.0,89.99022,0.0,04/23/6216 +1.31044,47.31944,1961,10,7,21,8,1,3.55,5.0,fr,34316,39,1452480,1,1,Active Shallow Crust,0.0,89.98975,0.0,10/07/1961 +1.31044,47.31944,2491,5,11,1,29,24,3.55,15.0,fr,34317,49,1452484,1,1,Active Shallow Crust,240.012,57.99818,0.0,05/11/2491 +1.31044,47.31944,5255,7,20,17,36,41,3.85,5.0,fr,34318,105,1452516,1,1,Active Shallow Crust,0.0,89.99032,0.0,07/20/5255 +1.31044,47.31944,2662,6,16,14,17,17,3.85,27.5,fr,34319,53,1452518,1,1,Active Shallow Crust,0.0,89.99032,0.0,06/16/2662 +1.31044,47.31944,9211,3,17,18,39,10,3.95,5.0,fr,34320,184,1452528,1,1,Active Shallow Crust,0.0,89.9903,0.0,03/17/9211 +1.31044,47.31944,4099,10,31,4,34,14,4.05,5.0,fr,34321,81,1452543,1,1,Active Shallow Crust,240.006,58.006,0.0,10/31/4099 +0.35746,43.34087,5468,3,23,7,52,29,3.55,5.0,fr,34322,109,1452960,1,1,Active Shallow Crust,0.0,89.98991,0.0,03/23/5468 +0.35746,43.34087,5999,2,8,7,19,3,3.65,5.0,fr,34323,119,1452972,1,1,Active Shallow Crust,0.0,89.9902,0.0,02/08/5999 +0.35746,43.34087,534,3,12,16,11,30,3.65,27.5,fr,34324,10,1452974,1,1,Active Shallow Crust,0.0,89.9902,0.0,03/12/0534 +0.35746,43.34087,6553,11,25,4,58,58,3.65,5.0,fr,34325,131,1452978,1,1,Active Shallow Crust,0.0,89.99008,-90.0,11/25/6553 +0.35746,43.34087,9422,10,17,7,40,32,4.05,5.0,fr,34326,188,1453020,1,1,Active Shallow Crust,0.0,89.98994,0.0,10/17/9422 +0.35746,43.34087,232,1,25,9,45,17,4.35,15.0,fr,34327,4,1453057,1,1,Active Shallow Crust,0.0,89.98996,0.0,01/25/0232 +0.35746,43.34087,6636,9,15,2,55,28,4.65,5.0,fr,34328,132,1453092,1,2,Active Shallow Crust,0.0,89.99005,0.0,09/15/6636 +0.35746,43.34087,257,2,7,2,43,13,4.65,5.0,fr,34329,5,1453092,1,2,Active Shallow Crust,0.0,89.99005,0.0,02/07/0257 +3.96119,45.13629,1593,12,23,5,36,45,3.55,27.5,fr,34330,31,1453442,1,1,Active Shallow Crust,0.0,89.98933,0.0,12/23/1593 +3.96119,45.13629,6988,3,19,3,43,45,3.65,27.5,fr,34331,139,1453454,1,1,Active Shallow Crust,0.0,89.99049,0.0,03/19/6988 +3.96119,45.13629,6020,5,17,15,38,59,3.75,5.0,fr,34332,120,1453464,1,1,Active Shallow Crust,0.0,89.9887,0.0,05/17/6020 +3.96119,45.13629,7490,10,23,14,54,48,3.75,15.0,fr,34333,149,1453465,1,1,Active Shallow Crust,0.0,89.9887,0.0,10/23/7490 +3.96119,45.13629,6259,12,13,7,29,19,3.85,5.0,fr,34334,125,1453476,1,1,Active Shallow Crust,0.0,89.98993,0.0,12/13/6259 +3.96119,45.13629,9161,4,26,6,2,44,3.95,15.0,fr,34335,183,1453489,1,1,Active Shallow Crust,0.0,89.99102,0.0,04/26/9161 +3.96119,45.13629,3991,5,8,16,49,19,4.05,5.0,fr,34336,79,1453500,1,3,Active Shallow Crust,0.0,89.99,0.0,05/08/3991 +3.96119,45.13629,9828,6,22,14,7,38,4.05,5.0,fr,34337,196,1453500,1,3,Active Shallow Crust,0.0,89.99,0.0,06/22/9828 +3.96119,45.13629,8173,5,14,23,52,18,4.05,5.0,fr,34338,163,1453500,1,3,Active Shallow Crust,0.0,89.99,0.0,05/14/8173 +3.96119,45.13629,5374,10,23,4,41,55,4.25,5.0,fr,34339,107,1453524,1,1,Active Shallow Crust,0.0,89.99047,0.0,10/23/5374 +3.96119,45.13629,8441,1,25,5,27,34,4.25,5.0,fr,34340,168,1453527,1,1,Active Shallow Crust,240.0074,57.994,0.0,01/25/8441 +3.96119,45.13629,590,6,8,22,38,6,4.65,5.0,fr,34341,11,1453572,1,1,Active Shallow Crust,0.0,89.98997,0.0,06/08/0590 +3.96119,45.13629,6153,9,14,4,54,24,4.75,5.0,fr,34342,123,1453584,1,1,Active Shallow Crust,0.0,89.99017,0.0,09/14/6153 +3.96119,45.13629,3445,3,5,7,0,22,4.85,5.0,fr,34343,68,1453605,1,1,Active Shallow Crust,128.893,89.98917,0.0,03/05/3445 +-0.81717,48.64944,3837,2,12,6,16,49,3.55,5.0,fr,34344,76,1454400,1,2,Active Shallow Crust,0.0,89.99001,0.0,02/12/3837 +-0.81717,48.64944,1153,6,27,23,14,40,3.55,5.0,fr,34345,23,1454400,1,2,Active Shallow Crust,0.0,89.99001,0.0,06/27/1153 +-0.81717,48.64944,5026,12,20,2,16,20,3.55,15.0,fr,34346,100,1454401,1,1,Active Shallow Crust,0.0,89.99001,0.0,12/20/5026 +-0.81717,48.64944,1479,3,11,19,11,41,3.65,5.0,fr,34347,29,1454412,1,2,Active Shallow Crust,0.0,89.99035,0.0,03/11/1479 +-0.81717,48.64944,6182,4,4,17,39,20,3.65,5.0,fr,34348,123,1454412,1,2,Active Shallow Crust,0.0,89.99035,0.0,04/04/6182 +-0.81717,48.64944,991,6,20,0,18,15,3.65,15.0,fr,34349,19,1454413,1,1,Active Shallow Crust,0.0,89.99035,0.0,06/20/0991 +-0.81717,48.64944,6629,12,2,18,24,22,3.65,5.0,fr,34350,132,1454421,1,1,Active Shallow Crust,128.9004,89.9635,0.0,12/02/6629 +-0.81717,48.64944,9404,12,10,23,44,44,3.85,5.0,fr,34351,188,1454442,1,1,Active Shallow Crust,0.0,89.98986,-90.0,12/10/9404 +-0.81717,48.64944,4465,6,10,7,58,52,4.05,5.0,fr,34352,89,1454463,1,1,Active Shallow Crust,240.0063,58.00594,0.0,06/10/4465 +-0.81717,48.64944,5423,12,7,0,37,18,4.25,27.5,fr,34353,108,1454486,1,1,Active Shallow Crust,0.0,89.98995,0.0,12/07/5423 +-0.81717,48.64944,2056,2,24,14,2,16,4.55,5.0,fr,34354,41,1454529,1,1,Active Shallow Crust,128.8934,89.98576,0.0,02/24/2056 +-0.81717,48.64944,6597,3,12,23,23,46,4.75,5.0,fr,34355,131,1454544,1,1,Active Shallow Crust,0.0,89.98996,0.0,03/12/6597 +-4.87383,49.38724,2128,9,23,14,53,7,3.55,15.0,fr,34356,42,1454881,1,1,Active Shallow Crust,0.0,89.98687,0.0,09/23/2128 +-4.87383,49.38724,2364,2,16,2,57,39,3.65,15.0,fr,34357,47,1454899,1,1,Active Shallow Crust,0.0,89.98817,-90.0,02/16/2364 +-4.87383,49.38724,5456,3,30,14,2,45,4.65,5.0,fr,34358,109,1455012,1,1,Active Shallow Crust,0.0,89.99075,0.0,03/30/5456 +3.51774,46.37082,7508,9,27,6,44,3,3.55,5.0,fr,34359,150,1455360,1,1,Active Shallow Crust,0.0,89.98956,0.0,09/27/7508 +3.51774,46.37082,5842,4,10,0,42,31,3.65,5.0,fr,34360,116,1455372,1,1,Active Shallow Crust,0.0,89.9907,0.0,04/10/5842 +3.51774,46.37082,8730,1,8,3,11,17,3.75,5.0,fr,34361,174,1455384,1,1,Active Shallow Crust,0.0,89.98895,0.0,01/08/8730 +3.51774,46.37082,3335,11,27,2,7,52,3.75,15.0,fr,34362,66,1455385,1,1,Active Shallow Crust,0.0,89.98895,0.0,11/27/3335 +3.51774,46.37082,2987,2,27,1,49,19,4.05,5.0,fr,34363,59,1455420,1,1,Active Shallow Crust,0.0,89.99022,0.0,02/27/2987 +3.75557,47.43401,4007,3,25,9,50,11,3.75,15.0,fr,34364,80,1455865,1,1,Active Shallow Crust,0.0,89.98917,0.0,03/25/4007 +3.75557,47.43401,8496,9,8,9,31,41,3.85,5.0,fr,34365,169,1455876,1,1,Active Shallow Crust,0.0,89.99034,0.0,09/08/8496 +3.75557,47.43401,8852,9,5,4,21,31,3.85,15.0,fr,34366,177,1455877,1,1,Active Shallow Crust,0.0,89.99034,0.0,09/05/8852 +3.75557,47.43401,8529,11,4,19,13,0,4.05,15.0,fr,34367,170,1455907,1,1,Active Shallow Crust,0.0,89.9903,-90.0,11/04/8529 +3.1944,52.705,7582,6,21,11,15,54,3.95,5.0,fr,34368,151,1456368,1,1,Active Shallow Crust,0.0,89.99036,0.0,06/21/7582 +-0.2225,43.6961,381,11,12,16,58,23,3.55,5.0,fr,34369,7,1456800,1,1,Active Shallow Crust,0.0,89.98997,0.0,11/12/0381 +-0.2225,43.6961,8804,6,11,8,22,13,3.65,15.0,fr,34370,176,1456813,1,1,Active Shallow Crust,0.0,89.99005,0.0,06/11/8804 +-0.2225,43.6961,2664,3,15,12,13,16,3.75,15.0,fr,34371,53,1456828,1,1,Active Shallow Crust,240.008,58.0175,0.0,03/15/2664 +-0.2225,43.6961,63,5,13,6,48,47,3.85,5.0,fr,34372,1,1456836,1,1,Active Shallow Crust,0.0,89.99,0.0,05/13/0063 +-0.2225,43.6961,6614,11,1,21,15,13,4.45,15.0,fr,34373,132,1456909,1,1,Active Shallow Crust,0.0,89.98997,0.0,11/01/6614 +4.37619,45.84853,4870,4,5,10,33,29,3.55,15.0,fr,34374,97,1457281,1,1,Active Shallow Crust,0.0,89.99297,0.0,04/05/4870 +4.37619,45.84853,6418,10,6,12,42,57,3.55,5.0,fr,34375,128,1457283,1,1,Active Shallow Crust,240.0121,57.99758,0.0,10/06/6418 +4.37619,45.84853,1945,10,13,22,56,8,3.65,5.0,fr,34376,38,1457292,1,2,Active Shallow Crust,0.0,89.98748,0.0,10/13/1945 +4.37619,45.84853,655,12,25,9,17,57,3.65,5.0,fr,34377,13,1457292,1,2,Active Shallow Crust,0.0,89.98748,0.0,12/25/0655 +4.37619,45.84853,2077,9,25,16,59,57,3.85,5.0,fr,34378,41,1457316,1,1,Active Shallow Crust,0.0,89.99005,0.0,09/25/2077 +4.37619,45.84853,4452,9,10,14,34,58,3.85,27.5,fr,34379,89,1457321,1,1,Active Shallow Crust,240.0112,57.99751,0.0,09/10/4452 +4.37619,45.84853,7559,1,30,21,24,38,3.95,5.0,fr,34380,151,1457328,1,1,Active Shallow Crust,0.0,89.99113,0.0,01/30/7559 +4.37619,45.84853,3510,8,12,16,52,9,3.95,5.0,fr,34381,70,1457337,1,1,Active Shallow Crust,128.8997,89.99335,0.0,08/12/3510 +4.37619,45.84853,4207,9,3,7,13,41,4.15,27.5,fr,34382,84,1457354,1,1,Active Shallow Crust,0.0,89.98944,0.0,09/03/4207 +4.37619,45.84853,7561,5,29,19,35,48,4.15,5.0,fr,34383,151,1457358,1,1,Active Shallow Crust,0.0,89.98932,-90.0,05/29/7561 +4.37619,45.84853,1916,4,29,5,39,8,4.25,5.0,fr,34384,38,1457364,1,1,Active Shallow Crust,0.0,89.99059,0.0,04/29/1916 +4.37619,45.84853,5070,10,11,17,2,27,4.55,5.0,fr,34385,101,1457400,1,1,Active Shallow Crust,0.0,89.98889,0.0,10/11/5070 +4.376194,45.84853,5309,4,24,14,1,11,6.25,6.667607,fr,34386,106,1457610,1,1,Active Shallow Crust,0.0,89.98999,-90.0,04/24/5309 +-5.74425,47.09967,8130,2,24,1,37,42,4.45,15.0,fr,34387,162,1457869,1,1,Active Shallow Crust,0.0,89.99026,0.0,02/24/8130 +-3.93369,47.43808,1722,9,25,12,54,41,3.55,15.0,fr,34388,34,1458241,1,1,Active Shallow Crust,0.0,89.98977,0.0,09/25/1722 +-3.93369,47.43808,8127,5,15,17,41,29,3.55,27.5,fr,34389,162,1458251,1,1,Active Shallow Crust,128.8966,89.99318,0.0,05/15/8127 +-3.93369,47.43808,8398,11,17,12,21,36,3.75,5.0,fr,34390,167,1458264,1,1,Active Shallow Crust,0.0,89.98917,0.0,11/17/8398 +-3.93369,47.43808,6712,3,5,5,24,15,3.75,15.0,fr,34391,134,1458265,1,1,Active Shallow Crust,0.0,89.98917,0.0,03/05/6712 +-3.93369,47.43808,2927,6,5,2,25,19,3.75,15.0,fr,34392,58,1458274,1,1,Active Shallow Crust,128.8962,89.96751,0.0,06/05/2927 +-3.93369,47.43808,8227,9,23,2,7,57,3.95,27.5,fr,34393,164,1458290,1,1,Active Shallow Crust,0.0,89.98924,0.0,09/23/8227 +-3.93369,47.43808,1901,9,11,18,26,0,4.55,15.0,fr,34394,38,1458370,1,1,Active Shallow Crust,128.8937,89.98569,0.0,09/11/1901 +5.63013,42.04022,147,12,8,18,55,49,4.45,5.0,fr,34395,2,1459308,1,1,Active Shallow Crust,0.0,89.98937,0.0,12/08/0147 +3.97151,47.46589,7803,5,11,6,24,46,3.55,5.0,fr,34396,156,1459689,1,1,Active Shallow Crust,128.8964,89.99319,0.0,05/11/7803 +3.97151,47.46589,6808,8,23,16,37,7,3.65,5.0,fr,34397,136,1459692,1,2,Active Shallow Crust,0.0,89.99088,0.0,08/23/6808 +3.97151,47.46589,4949,4,22,18,28,9,3.65,5.0,fr,34398,98,1459692,1,2,Active Shallow Crust,0.0,89.99088,0.0,04/22/4949 +3.97151,47.46589,4223,5,20,7,40,16,3.65,15.0,fr,34399,84,1459693,1,1,Active Shallow Crust,0.0,89.99088,0.0,05/20/4223 +3.97151,47.46589,8500,7,15,13,18,21,3.65,5.0,fr,34400,169,1459701,1,1,Active Shallow Crust,128.9012,89.96326,0.0,07/15/8500 +3.97151,47.46589,7624,7,9,2,58,3,3.75,5.0,fr,34401,152,1459704,1,1,Active Shallow Crust,0.0,89.98917,0.0,07/09/7624 +3.97151,47.46589,5232,7,18,7,57,12,3.85,15.0,fr,34402,104,1459717,1,1,Active Shallow Crust,0.0,89.99035,0.0,07/18/5232 +3.97151,47.46589,6234,8,6,16,5,52,4.15,5.0,fr,34403,124,1459752,1,1,Active Shallow Crust,0.0,89.98975,0.0,08/06/6234 +3.97151,47.46589,2292,11,26,3,43,26,4.35,5.0,fr,34404,45,1459776,1,1,Active Shallow Crust,0.0,89.9905,0.0,11/26/2292 +3.97151,47.46589,8942,5,6,1,0,8,4.45,5.0,fr,34405,178,1459788,1,1,Active Shallow Crust,0.0,89.99033,0.0,05/06/8942 +1.38298,52.66916,1438,1,11,23,32,3,3.55,15.0,fr,34406,28,1460161,1,1,Active Shallow Crust,0.0,89.9893,0.0,01/11/1438 +1.38298,52.66916,1399,11,20,14,43,0,3.65,5.0,fr,34407,27,1460172,1,1,Active Shallow Crust,0.0,89.99046,0.0,11/20/1399 +1.38298,52.66916,8901,9,29,7,29,47,3.75,5.0,fr,34408,178,1460187,1,1,Active Shallow Crust,240.0092,58.01754,0.0,09/29/8901 +1.38298,52.66916,730,9,3,4,59,2,4.35,5.0,fr,34409,14,1460256,1,1,Active Shallow Crust,0.0,89.99026,0.0,09/03/0730 +1.38298,52.66916,4033,7,11,2,15,12,4.95,5.0,fr,34410,80,1460328,1,1,Active Shallow Crust,0.0,89.98993,0.0,07/11/4033 +2.43135,52.56636,2746,12,30,9,17,19,4.95,5.0,fr,34411,54,1460808,1,1,Active Shallow Crust,0.0,89.99021,0.0,12/30/2746 +2.43135,52.56636,6789,6,3,17,14,11,5.45,5.0,fr,34412,135,1460874,1,1,Active Shallow Crust,0.0,89.98991,-90.0,06/03/6789 +0.26669,44.28554,3865,5,18,10,50,56,3.65,5.0,fr,34413,77,1461132,1,2,Active Shallow Crust,0.0,89.98994,0.0,05/18/3865 +0.26669,44.28554,9561,5,3,6,36,54,3.65,5.0,fr,34414,191,1461132,1,2,Active Shallow Crust,0.0,89.98994,0.0,05/03/9561 +0.26669,44.28554,4433,3,20,6,28,17,3.75,5.0,fr,34415,88,1461150,1,1,Active Shallow Crust,0.0,89.98985,-90.0,03/20/4433 +0.26669,44.28554,9659,10,10,4,15,3,4.05,27.5,fr,34416,193,1461182,1,1,Active Shallow Crust,0.0,89.9901,0.0,10/10/9659 +3.60025,46.5123,931,1,4,20,15,20,3.65,5.0,fr,34417,18,1461612,1,1,Active Shallow Crust,0.0,89.99072,0.0,01/04/0931 +3.60025,46.5123,7854,6,30,21,20,39,4.35,15.0,fr,34418,157,1461697,1,1,Active Shallow Crust,0.0,89.99033,0.0,06/30/7854 +3.60025,46.5123,9588,8,26,5,45,31,4.35,5.0,fr,34419,191,1461705,1,1,Active Shallow Crust,128.8978,89.98278,0.0,08/26/9588 +0.86763,44.33603,745,2,23,6,23,10,4.15,5.0,fr,34420,14,1462152,1,2,Active Shallow Crust,0.0,89.99006,0.0,02/23/0745 +0.86763,44.33603,6892,8,4,20,45,47,4.15,5.0,fr,34421,137,1462152,1,2,Active Shallow Crust,0.0,89.99006,0.0,08/04/6892 +0.86763,44.33603,7125,8,25,20,34,30,4.25,27.5,fr,34422,142,1462172,1,1,Active Shallow Crust,0.0,89.98981,-90.0,08/25/7125 +0.86763,44.33603,5959,10,24,10,43,37,4.35,15.0,fr,34423,119,1462177,1,1,Active Shallow Crust,0.0,89.98995,0.0,10/24/5959 +-0.64418,45.15765,2788,8,1,18,42,25,3.85,5.0,fr,34424,55,1462599,1,1,Active Shallow Crust,240.0107,57.99766,0.0,08/01/2788 +6.62632,44.70215,9104,10,26,3,14,3,3.55,5.0,fr,34425,182,1463040,1,2,Active Shallow Crust,0.0,89.99284,0.0,10/26/9104 +6.62632,44.70215,9611,3,17,17,35,7,3.55,5.0,fr,34426,192,1463040,1,2,Active Shallow Crust,0.0,89.99284,0.0,03/17/9611 +6.62632,44.70215,1426,10,29,1,14,46,3.55,15.0,fr,34427,28,1463041,1,2,Active Shallow Crust,0.0,89.99284,0.0,10/29/1426 +6.62632,44.70215,2436,8,6,0,14,25,3.55,15.0,fr,34428,48,1463041,1,2,Active Shallow Crust,0.0,89.99284,0.0,08/06/2436 +6.62632,44.70215,8935,11,4,0,45,40,3.55,15.0,fr,34429,178,1463044,1,1,Active Shallow Crust,240.013,57.99687,0.0,11/04/8935 +6.62632,44.70215,4473,12,26,10,37,50,3.55,5.0,fr,34430,89,1463046,1,2,Active Shallow Crust,0.0,89.99275,-90.0,12/26/4473 +6.62632,44.70215,717,12,22,6,20,37,3.55,5.0,fr,34431,14,1463046,1,2,Active Shallow Crust,0.0,89.99275,-90.0,12/22/0717 +6.62632,44.70215,4813,4,9,15,0,16,3.65,5.0,fr,34432,96,1463052,1,5,Active Shallow Crust,0.0,89.98722,0.0,04/09/4813 +6.62632,44.70215,1430,3,10,3,53,5,3.65,5.0,fr,34433,28,1463052,1,5,Active Shallow Crust,0.0,89.98722,0.0,03/10/1430 +6.62632,44.70215,2616,11,5,12,24,56,3.65,5.0,fr,34434,52,1463052,1,5,Active Shallow Crust,0.0,89.98722,0.0,11/05/2616 +6.62632,44.70215,8225,9,8,13,56,13,3.65,5.0,fr,34435,164,1463052,1,5,Active Shallow Crust,0.0,89.98722,0.0,09/08/8225 +6.62632,44.70215,1794,8,18,19,40,8,3.65,5.0,fr,34436,35,1463052,1,5,Active Shallow Crust,0.0,89.98722,0.0,08/18/1794 +6.62632,44.70215,7331,10,24,15,24,56,3.65,15.0,fr,34437,146,1463053,1,2,Active Shallow Crust,0.0,89.98722,0.0,10/24/7331 +6.62632,44.70215,9274,2,8,8,50,58,3.65,15.0,fr,34438,185,1463053,1,2,Active Shallow Crust,0.0,89.98722,0.0,02/08/9274 +6.62632,44.70215,7955,8,18,8,17,50,3.65,5.0,fr,34439,159,1463055,1,1,Active Shallow Crust,240.001,58.01291,0.0,08/18/7955 +6.62632,44.70215,9205,11,7,6,3,37,3.65,5.0,fr,34440,184,1463058,1,2,Active Shallow Crust,0.0,89.98708,-90.0,11/07/9205 +6.62632,44.70215,8829,11,8,6,44,2,3.65,5.0,fr,34441,176,1463058,1,2,Active Shallow Crust,0.0,89.98708,-90.0,11/08/8829 +6.62632,44.70215,6354,3,7,10,22,48,3.65,5.0,fr,34442,127,1463061,1,1,Active Shallow Crust,128.9014,89.96349,0.0,03/07/6354 +6.62632,44.70215,7567,10,22,22,24,0,3.75,5.0,fr,34443,151,1463064,1,3,Active Shallow Crust,0.0,89.98862,0.0,10/22/7567 +6.62632,44.70215,1630,12,19,6,53,57,3.75,5.0,fr,34444,32,1463064,1,3,Active Shallow Crust,0.0,89.98862,0.0,12/19/1630 +6.62632,44.70215,4549,6,11,18,29,1,3.75,5.0,fr,34445,90,1463064,1,3,Active Shallow Crust,0.0,89.98862,0.0,06/11/4549 +6.62632,44.70215,7860,5,11,6,52,10,3.75,15.0,fr,34446,157,1463065,1,1,Active Shallow Crust,0.0,89.98862,0.0,05/11/7860 +6.62632,44.70215,1440,8,3,15,30,37,3.75,5.0,fr,34447,28,1463067,1,1,Active Shallow Crust,240.0087,58.01748,0.0,08/03/1440 +6.62632,44.70215,2208,9,24,20,21,9,3.75,5.0,fr,34448,44,1463070,1,2,Active Shallow Crust,0.0,89.98848,-90.0,09/24/2208 +6.62632,44.70215,7468,11,20,15,13,58,3.75,5.0,fr,34449,149,1463070,1,2,Active Shallow Crust,0.0,89.98848,-90.0,11/20/7468 +6.62632,44.70215,8429,7,13,14,48,21,3.85,5.0,fr,34450,168,1463079,1,1,Active Shallow Crust,240.0112,57.99737,0.0,07/13/8429 +6.62632,44.70215,451,6,26,1,45,38,3.95,15.0,fr,34451,9,1463098,1,1,Active Shallow Crust,128.9006,89.99548,0.0,06/26/0451 +6.62632,44.70215,2598,6,24,6,27,39,4.05,5.0,fr,34452,51,1463100,1,1,Active Shallow Crust,0.0,89.99194,0.0,06/24/2598 +6.62632,44.70215,6306,1,31,14,37,40,4.05,15.0,fr,34453,126,1463101,1,1,Active Shallow Crust,0.0,89.99194,0.0,01/31/6306 +6.62632,44.70215,9822,5,30,0,33,29,4.05,5.0,fr,34454,196,1463106,1,2,Active Shallow Crust,0.0,89.99184,-90.0,05/30/9822 +6.62632,44.70215,2580,8,29,20,16,8,4.05,5.0,fr,34455,51,1463106,1,2,Active Shallow Crust,0.0,89.99184,-90.0,08/29/2580 +6.62632,44.70215,4485,6,10,6,11,19,4.15,5.0,fr,34456,89,1463115,1,1,Active Shallow Crust,240.0082,57.99716,0.0,06/10/4485 +6.62632,44.70215,3213,12,6,15,57,54,4.15,5.0,fr,34457,64,1463118,1,1,Active Shallow Crust,0.0,89.9891,-90.0,12/06/3213 +6.62632,44.70215,316,1,3,12,47,3,4.25,5.0,fr,34458,6,1463124,1,2,Active Shallow Crust,0.0,89.99039,0.0,01/03/0316 +6.62632,44.70215,5503,5,28,22,43,38,4.25,5.0,fr,34459,110,1463124,1,2,Active Shallow Crust,0.0,89.99039,0.0,05/28/5503 +6.62632,44.70215,6745,11,10,4,35,10,4.25,15.0,fr,34460,134,1463125,1,1,Active Shallow Crust,0.0,89.99039,0.0,11/10/6745 +6.62632,44.70215,6762,12,2,6,36,10,4.25,5.0,fr,34461,135,1463127,1,1,Active Shallow Crust,240.0066,57.99405,0.0,12/02/6762 +6.62632,44.70215,1698,5,1,7,32,43,4.35,5.0,fr,34462,33,1463136,1,1,Active Shallow Crust,0.0,89.98859,0.0,05/01/1698 +6.62632,44.70215,6506,12,12,10,58,23,4.35,5.0,fr,34463,130,1463139,1,1,Active Shallow Crust,240.008,57.99588,0.0,12/12/6506 +6.62632,44.70215,2958,3,4,9,2,7,4.35,15.0,fr,34464,59,1463140,1,1,Active Shallow Crust,240.008,57.99588,0.0,03/04/2958 +6.62632,44.70215,928,8,24,14,29,45,4.35,5.0,fr,34465,18,1463145,1,1,Active Shallow Crust,128.8979,89.98296,0.0,08/24/0928 +6.62632,44.70215,8554,9,20,12,56,52,4.45,27.5,fr,34466,171,1463150,1,1,Active Shallow Crust,0.0,89.98983,0.0,09/20/8554 +6.62632,44.70215,485,6,24,20,43,29,4.45,5.0,fr,34467,9,1463151,1,1,Active Shallow Crust,240.0051,57.99412,0.0,06/24/0485 +6.62632,44.70215,3168,6,29,21,24,41,4.55,27.5,fr,34468,63,1463165,1,1,Active Shallow Crust,240.0088,57.99706,0.0,06/29/3168 +6.62632,44.70215,9946,2,24,6,47,35,4.85,27.5,fr,34469,198,1463198,1,1,Active Shallow Crust,0.0,89.99037,0.0,02/24/9946 +6.62632,44.70215,6306,10,11,22,8,25,4.95,5.0,fr,34470,126,1463208,1,1,Active Shallow Crust,0.0,89.98999,0.0,10/11/6306 +6.62632,44.70215,336,2,1,20,1,4,5.25,27.5,fr,34471,6,1463246,1,1,Active Shallow Crust,0.0,89.98988,0.0,02/01/0336 +6.62632,44.70215,5941,6,29,1,13,30,5.35,5.0,fr,34472,118,1463256,1,1,Active Shallow Crust,0.0,89.99007,0.0,06/29/5941 +6.62632,44.70215,4660,12,16,5,45,1,5.45,5.0,fr,34473,93,1463268,1,1,Active Shallow Crust,0.0,89.99035,0.0,12/16/4660 +6.62632,44.70215,5868,8,6,12,41,28,5.75,5.0,fr,34474,117,1463304,1,1,Active Shallow Crust,0.0,89.98975,0.0,08/06/5868 +6.62632,44.70215,9793,2,27,20,23,17,5.95,5.0,fr,34475,195,1463328,1,1,Active Shallow Crust,0.0,89.99004,0.0,02/27/9793 +0.44566,42.39369,6227,9,15,5,40,9,3.55,5.0,fr,34476,124,1463520,1,1,Active Shallow Crust,0.0,89.99023,0.0,09/15/6227 +0.44566,42.39369,1565,12,10,11,28,13,3.55,27.5,fr,34477,31,1463522,1,1,Active Shallow Crust,0.0,89.99023,0.0,12/10/1565 +0.44566,42.39369,9292,9,24,11,22,43,3.65,5.0,fr,34478,185,1463532,1,3,Active Shallow Crust,0.0,89.99004,0.0,09/24/9292 +0.44566,42.39369,6088,4,8,14,47,11,3.65,5.0,fr,34479,121,1463532,1,3,Active Shallow Crust,0.0,89.99004,0.0,04/08/6088 +0.44566,42.39369,9272,4,17,11,12,58,3.65,5.0,fr,34480,185,1463532,1,3,Active Shallow Crust,0.0,89.99004,0.0,04/17/9272 +0.44566,42.39369,441,4,24,2,25,34,3.75,5.0,fr,34481,8,1463544,1,1,Active Shallow Crust,0.0,89.99002,0.0,04/24/0441 +0.44566,42.39369,1625,11,13,0,21,58,3.85,5.0,fr,34482,32,1463556,1,2,Active Shallow Crust,0.0,89.99011,0.0,11/13/1625 +0.44566,42.39369,7777,5,9,11,39,58,3.85,5.0,fr,34483,155,1463556,1,2,Active Shallow Crust,0.0,89.99011,0.0,05/09/7777 +0.44566,42.39369,1844,8,27,9,22,32,3.95,5.0,fr,34484,36,1463568,1,1,Active Shallow Crust,0.0,89.99001,0.0,08/27/1844 +0.44566,42.39369,7608,2,6,0,30,19,3.95,5.0,fr,34485,152,1463577,1,1,Active Shallow Crust,128.9008,89.99368,0.0,02/06/7608 +0.44566,42.39369,4086,11,29,9,29,27,4.05,27.5,fr,34486,81,1463582,1,1,Active Shallow Crust,0.0,89.99005,0.0,11/29/4086 +0.44566,42.39369,634,5,23,19,59,46,4.05,5.0,fr,34487,12,1463586,1,1,Active Shallow Crust,0.0,89.98994,-90.0,05/23/0634 +0.44566,42.39369,8620,2,22,11,25,8,4.05,5.0,fr,34488,172,1463589,1,1,Active Shallow Crust,128.891,89.99372,0.0,02/22/8620 +0.44566,42.39369,9158,11,21,14,37,25,4.05,15.0,fr,34489,183,1463590,1,1,Active Shallow Crust,128.891,89.99372,0.0,11/21/9158 +0.44566,42.39369,1119,11,17,7,55,9,4.15,5.0,fr,34490,22,1463592,1,1,Active Shallow Crust,0.0,89.98997,0.0,11/17/1119 +0.44566,42.39369,8876,8,2,5,50,47,4.15,5.0,fr,34491,177,1463595,1,1,Active Shallow Crust,240.0078,57.99716,0.0,08/02/8876 +0.44566,42.39369,1458,1,26,15,4,43,4.35,5.0,fr,34492,29,1463616,1,1,Active Shallow Crust,0.0,89.98999,0.0,01/26/1458 +0.44566,42.39369,8702,7,18,7,45,52,4.65,5.0,fr,34493,174,1463652,1,1,Active Shallow Crust,0.0,89.99003,0.0,07/18/8702 +0.44566,42.39369,9115,3,27,23,56,57,4.65,5.0,fr,34494,182,1463661,1,1,Active Shallow Crust,128.8922,89.98701,0.0,03/27/9115 +0.44566,42.39369,3879,4,25,1,5,36,4.85,5.0,fr,34495,77,1463676,1,2,Active Shallow Crust,0.0,89.99,0.0,04/25/3879 +0.44566,42.39369,6645,8,16,2,0,14,4.85,5.0,fr,34496,132,1463676,1,2,Active Shallow Crust,0.0,89.99,0.0,08/16/6645 +0.44566,42.39369,1117,3,6,1,19,43,5.15,5.0,fr,34497,22,1463712,1,1,Active Shallow Crust,0.0,89.98997,0.0,03/06/1117 +8.25045,45.67611,4444,12,3,3,26,41,3.55,5.0,fr,34498,88,1464000,1,1,Active Shallow Crust,0.0,89.98591,0.0,12/03/4444 +8.25045,45.67611,4420,7,3,16,32,44,3.55,15.0,fr,34499,88,1464010,1,1,Active Shallow Crust,128.896,89.99296,0.0,07/03/4420 +8.25045,45.67611,3078,12,14,19,20,19,3.65,5.0,fr,34500,61,1464012,1,2,Active Shallow Crust,0.0,89.98744,0.0,12/14/3078 +8.25045,45.67611,4932,1,10,18,10,6,3.65,5.0,fr,34501,98,1464012,1,2,Active Shallow Crust,0.0,89.98744,0.0,01/10/4932 +8.25045,45.67611,5715,9,10,19,45,46,3.65,27.5,fr,34502,114,1464020,1,1,Active Shallow Crust,0.0,89.9873,-90.0,09/10/5715 +8.25045,45.67611,5532,6,2,18,0,23,3.95,5.0,fr,34503,110,1464048,1,1,Active Shallow Crust,0.0,89.99111,0.0,06/02/5532 +8.25045,45.67611,4462,3,7,4,42,20,3.95,5.0,fr,34504,89,1464057,1,1,Active Shallow Crust,128.8996,89.99555,0.0,03/07/4462 +8.25045,45.67611,3362,7,14,3,49,11,4.05,5.0,fr,34505,67,1464060,1,1,Active Shallow Crust,0.0,89.99207,0.0,07/14/3362 +8.25045,45.67611,7309,5,17,10,13,11,4.15,15.0,fr,34506,146,1464073,1,1,Active Shallow Crust,0.0,89.99294,0.0,05/17/7309 +8.25045,45.67611,3847,8,17,8,18,38,4.35,5.0,fr,34507,76,1464096,1,1,Active Shallow Crust,0.0,89.98878,0.0,08/17/3847 +8.25045,45.67611,70,8,30,20,2,29,4.65,15.0,fr,34508,1,1464133,1,2,Active Shallow Crust,0.0,89.98808,0.0,08/30/0070 +8.25045,45.67611,2587,12,10,4,14,10,4.65,15.0,fr,34509,51,1464133,1,2,Active Shallow Crust,0.0,89.98808,0.0,12/10/2587 +8.25045,45.67611,6315,9,3,1,28,54,4.85,27.5,fr,34510,126,1464167,1,1,Active Shallow Crust,128.8932,89.98898,0.0,09/03/6315 +8.25045,45.67611,1752,6,17,19,52,2,5.55,15.0,fr,34511,35,1464250,1,1,Active Shallow Crust,128.8766,89.98974,0.0,06/17/1752 +-4.95444,47.46669,8343,4,13,3,53,37,3.55,5.0,fr,34512,166,1464480,1,1,Active Shallow Crust,0.0,89.99318,0.0,04/13/8343 +3.21754,50.7944,7877,2,27,4,47,3,3.55,5.0,fr,34513,157,1464963,1,1,Active Shallow Crust,240.0132,57.998,0.0,02/27/7877 +3.21754,50.7944,3628,3,30,20,0,43,4.15,5.0,fr,34514,72,1465032,1,1,Active Shallow Crust,0.0,89.99042,0.0,03/30/3628 +3.21754,50.7944,4561,5,16,12,17,30,5.35,5.0,fr,34515,91,1465176,1,1,Active Shallow Crust,0.0,89.98997,0.0,05/16/4561 +3.21754,50.7944,387,8,3,3,29,3,5.45,5.0,fr,34516,7,1465188,1,1,Active Shallow Crust,0.0,89.98998,0.0,08/03/0387 +2.87941,41.78905,7824,12,15,9,9,22,3.55,5.0,fr,34517,156,1465440,1,3,Active Shallow Crust,0.0,89.98872,0.0,12/15/7824 +2.87941,41.78905,8383,10,28,12,26,40,3.55,5.0,fr,34518,167,1465440,1,3,Active Shallow Crust,0.0,89.98872,0.0,10/28/8383 +2.87941,41.78905,642,2,25,11,2,59,3.55,5.0,fr,34519,12,1465440,1,3,Active Shallow Crust,0.0,89.98872,0.0,02/25/0642 +2.87941,41.78905,2073,5,7,11,15,40,3.55,15.0,fr,34520,41,1465441,1,2,Active Shallow Crust,0.0,89.98872,0.0,05/07/2073 +2.87941,41.78905,2079,9,13,1,9,53,3.55,15.0,fr,34521,41,1465441,1,2,Active Shallow Crust,0.0,89.98872,0.0,09/13/2079 +2.87941,41.78905,5422,2,25,22,56,49,3.55,27.5,fr,34522,108,1465442,1,1,Active Shallow Crust,0.0,89.98872,0.0,02/25/5422 +2.87941,41.78905,1327,8,7,13,7,45,3.55,5.0,fr,34523,26,1465443,1,4,Active Shallow Crust,240.0115,57.99857,0.0,08/07/1327 +2.87941,41.78905,5203,3,11,9,42,36,3.55,5.0,fr,34524,104,1465443,1,4,Active Shallow Crust,240.0115,57.99857,0.0,03/11/5203 +2.87941,41.78905,7695,8,14,14,27,51,3.55,5.0,fr,34525,153,1465443,1,4,Active Shallow Crust,240.0115,57.99857,0.0,08/14/7695 +2.87941,41.78905,7469,4,25,1,55,46,3.55,5.0,fr,34526,149,1465443,1,4,Active Shallow Crust,240.0115,57.99857,0.0,04/25/7469 +2.87941,41.78905,3284,4,11,15,38,58,3.55,15.0,fr,34527,65,1465444,1,1,Active Shallow Crust,240.0115,57.99857,0.0,04/11/3284 +2.87941,41.78905,7550,12,29,6,52,33,3.55,27.5,fr,34528,150,1465448,1,1,Active Shallow Crust,0.0,89.98859,-90.0,12/29/7550 +2.87941,41.78905,1456,7,19,8,57,10,3.55,5.0,fr,34529,29,1465449,1,1,Active Shallow Crust,128.8974,89.99249,0.0,07/19/1456 +2.87941,41.78905,3350,5,7,14,28,44,3.65,5.0,fr,34530,66,1465452,1,1,Active Shallow Crust,0.0,89.98995,0.0,05/07/3350 +2.87941,41.78905,2276,4,22,23,40,29,3.65,15.0,fr,34531,45,1465453,1,1,Active Shallow Crust,0.0,89.98995,0.0,04/22/2276 +2.87941,41.78905,5104,7,2,8,12,57,3.65,27.5,fr,34532,102,1465454,1,1,Active Shallow Crust,0.0,89.98995,0.0,07/02/5104 +2.87941,41.78905,1115,12,22,13,48,26,3.65,5.0,fr,34533,22,1465455,1,1,Active Shallow Crust,240.0011,58.01284,0.0,12/22/1115 +2.87941,41.78905,4188,3,3,7,25,41,3.65,15.0,fr,34534,83,1465456,1,1,Active Shallow Crust,240.0011,58.01284,0.0,03/03/4188 +2.87941,41.78905,273,9,2,11,48,23,3.75,5.0,fr,34535,5,1465464,1,2,Active Shallow Crust,0.0,89.99104,0.0,09/02/0273 +2.87941,41.78905,6247,5,21,1,55,6,3.75,5.0,fr,34536,124,1465464,1,2,Active Shallow Crust,0.0,89.99104,0.0,05/21/6247 +2.87941,41.78905,6728,12,5,8,57,25,3.75,15.0,fr,34537,134,1465465,1,2,Active Shallow Crust,0.0,89.99104,0.0,12/05/6728 +2.87941,41.78905,9660,3,27,6,56,13,3.75,15.0,fr,34538,193,1465465,1,2,Active Shallow Crust,0.0,89.99104,0.0,03/27/9660 +2.87941,41.78905,756,2,18,19,3,27,3.75,5.0,fr,34539,15,1465470,1,1,Active Shallow Crust,0.0,89.99094,-90.0,02/18/0756 +2.87941,41.78905,2659,7,16,22,33,53,3.75,5.0,fr,34540,53,1465473,1,2,Active Shallow Crust,128.8964,89.96741,0.0,07/16/2659 +2.87941,41.78905,889,12,3,14,17,18,3.75,5.0,fr,34541,17,1465473,1,2,Active Shallow Crust,128.8964,89.96741,0.0,12/03/0889 +2.87941,41.78905,1621,7,24,0,21,42,3.85,5.0,fr,34542,32,1465476,1,1,Active Shallow Crust,0.0,89.98936,0.0,07/24/1621 +2.87941,41.78905,6206,12,15,3,10,10,3.85,15.0,fr,34543,124,1465477,1,2,Active Shallow Crust,0.0,89.98936,0.0,12/15/6206 +2.87941,41.78905,420,5,21,15,8,9,3.85,15.0,fr,34544,8,1465477,1,2,Active Shallow Crust,0.0,89.98936,0.0,05/21/0420 +2.87941,41.78905,5508,4,24,8,33,32,3.85,5.0,fr,34545,110,1465482,1,1,Active Shallow Crust,0.0,89.98923,-90.0,04/24/5508 +2.87941,41.78905,5738,11,26,11,40,23,3.95,5.0,fr,34546,114,1465488,1,1,Active Shallow Crust,0.0,89.99051,0.0,11/26/5738 +2.87941,41.78905,3692,2,20,9,17,55,3.95,15.0,fr,34547,73,1465489,1,1,Active Shallow Crust,0.0,89.99051,0.0,02/20/3692 +2.87941,41.78905,7089,2,20,3,21,30,3.95,5.0,fr,34548,141,1465491,1,1,Active Shallow Crust,240.0193,58.00497,0.0,02/20/7089 +2.87941,41.78905,7128,7,13,22,40,31,3.95,5.0,fr,34549,142,1465494,1,1,Active Shallow Crust,0.0,89.9904,-90.0,07/13/7128 +2.87941,41.78905,3733,10,6,14,9,22,4.05,5.0,fr,34550,74,1465500,1,1,Active Shallow Crust,0.0,89.98943,0.0,10/06/3733 +2.87941,41.78905,2992,7,26,17,27,4,4.05,5.0,fr,34551,59,1465503,1,1,Active Shallow Crust,240.0053,58.00569,0.0,07/26/2992 +2.87941,41.78905,3068,4,16,13,22,18,4.05,5.0,fr,34552,61,1465506,1,1,Active Shallow Crust,0.0,89.9893,-90.0,04/16/3068 +2.87941,41.78905,5115,4,11,2,2,6,4.05,27.5,fr,34553,102,1465508,1,1,Active Shallow Crust,0.0,89.9893,-90.0,04/11/5115 +2.87941,41.78905,8237,4,30,23,58,22,4.05,15.0,fr,34554,164,1465510,1,1,Active Shallow Crust,128.8907,89.99366,0.0,04/30/8237 +2.87941,41.78905,8870,11,14,13,6,33,4.15,15.0,fr,34555,177,1465513,1,1,Active Shallow Crust,0.0,89.99058,0.0,11/14/8870 +2.87941,41.78905,1752,2,15,0,7,40,4.35,5.0,fr,34556,35,1465539,1,1,Active Shallow Crust,240.0075,57.99582,0.0,02/15/1752 +2.87941,41.78905,9747,9,21,18,31,59,4.55,5.0,fr,34557,194,1465560,1,1,Active Shallow Crust,0.0,89.99049,0.0,09/21/9747 +2.87941,41.78905,5739,1,5,23,43,14,4.65,15.0,fr,34558,114,1465579,1,1,Active Shallow Crust,0.0,89.99036,-90.0,01/05/5739 +2.87941,41.78905,5877,8,25,11,0,49,4.85,27.5,fr,34559,117,1465598,1,1,Active Shallow Crust,0.0,89.9899,0.0,08/25/5877 +2.87941,41.78905,5554,6,6,15,59,57,4.85,5.0,fr,34560,111,1465605,1,1,Active Shallow Crust,128.8941,89.98898,0.0,06/06/5554 +2.87941,41.78905,3757,10,30,21,24,37,5.35,5.0,fr,34561,75,1465665,1,1,Active Shallow Crust,128.8858,89.99203,0.0,10/30/3757 +2.87941,41.78905,1406,7,15,8,25,50,5.45,15.0,fr,34562,28,1465669,1,1,Active Shallow Crust,0.0,89.98988,0.0,07/15/1406 +-0.27699,47.75144,3031,12,19,20,34,48,3.75,15.0,fr,34563,60,1465948,1,1,Active Shallow Crust,240.0085,58.01761,0.0,12/19/3031 +-0.27699,47.75144,3464,5,11,8,12,50,3.75,5.0,fr,34564,69,1465950,1,1,Active Shallow Crust,0.0,89.99013,-90.0,05/11/3464 +-0.27699,47.75144,7888,6,20,12,27,48,3.75,5.0,fr,34565,157,1465953,1,1,Active Shallow Crust,128.8964,89.96736,0.0,06/20/7888 +-0.27699,47.75144,6421,6,25,14,10,58,3.85,5.0,fr,34566,128,1465956,1,2,Active Shallow Crust,0.0,89.9901,0.0,06/25/6421 +-0.27699,47.75144,2855,9,6,11,53,16,3.85,5.0,fr,34567,57,1465956,1,2,Active Shallow Crust,0.0,89.9901,0.0,09/06/2855 +-0.27699,47.75144,4448,10,11,23,11,6,3.85,15.0,fr,34568,88,1465960,1,1,Active Shallow Crust,240.011,57.99789,0.0,10/11/4448 +-0.27699,47.75144,5569,4,30,15,50,58,4.25,5.0,fr,34569,111,1466013,1,1,Active Shallow Crust,128.8941,89.98093,0.0,04/30/5569 +-0.27699,47.75144,7514,12,8,9,58,1,4.35,5.0,fr,34570,150,1466016,1,1,Active Shallow Crust,0.0,89.99004,0.0,12/08/7514 +-0.27699,47.75144,7454,11,27,16,42,15,4.35,5.0,fr,34571,149,1466019,1,1,Active Shallow Crust,240.0087,57.99601,0.0,11/27/7454 +-0.27699,47.75144,6242,12,23,7,27,35,4.45,5.0,fr,34572,124,1466028,1,1,Active Shallow Crust,0.0,89.98993,0.0,12/23/6242 +-0.27699,47.75144,4369,5,12,23,24,48,4.55,5.0,fr,34573,87,1466040,1,1,Active Shallow Crust,0.0,89.98995,0.0,05/12/4369 +-3.65023,42.89846,5125,4,17,12,28,12,3.55,5.0,fr,34574,102,1466400,1,1,Active Shallow Crust,0.0,89.98892,0.0,04/17/5125 +-3.65023,42.89846,5912,1,1,9,53,19,3.55,27.5,fr,34575,118,1466405,1,1,Active Shallow Crust,240.0116,57.99831,0.0,01/01/5912 +-3.65023,42.89846,2546,10,10,14,58,4,3.55,5.0,fr,34576,50,1466409,1,1,Active Shallow Crust,128.8966,89.99446,0.0,10/10/2546 +-3.65023,42.89846,4789,6,14,14,51,29,3.65,5.0,fr,34577,95,1466412,1,1,Active Shallow Crust,0.0,89.99013,0.0,06/14/4789 +-3.65023,42.89846,382,5,7,9,0,4,3.65,15.0,fr,34578,7,1466413,1,1,Active Shallow Crust,0.0,89.99013,0.0,05/07/0382 +-3.65023,42.89846,3322,4,29,2,39,32,3.65,27.5,fr,34579,66,1466423,1,1,Active Shallow Crust,128.9,89.96371,0.0,04/29/3322 +-3.65023,42.89846,8115,6,18,8,22,27,3.75,5.0,fr,34580,162,1466424,1,2,Active Shallow Crust,0.0,89.9912,0.0,06/18/8115 +-3.65023,42.89846,8397,12,9,7,50,42,3.75,5.0,fr,34581,167,1466424,1,2,Active Shallow Crust,0.0,89.9912,0.0,12/09/8397 +-3.65023,42.89846,6024,5,30,9,24,39,3.75,15.0,fr,34582,120,1466425,1,1,Active Shallow Crust,0.0,89.9912,0.0,05/30/6024 +-3.65023,42.89846,5561,3,28,6,16,34,4.05,5.0,fr,34583,111,1466460,1,1,Active Shallow Crust,0.0,89.98962,0.0,03/28/5561 +-3.65023,42.89846,1673,2,16,1,6,10,4.05,5.0,fr,34584,33,1466469,1,1,Active Shallow Crust,128.8913,89.99377,0.0,02/16/1673 +-3.65023,42.89846,6268,6,10,0,41,45,4.35,5.0,fr,34585,125,1466496,1,1,Active Shallow Crust,0.0,89.98971,0.0,06/10/6268 +-3.65023,42.89846,3154,4,12,4,57,29,4.55,15.0,fr,34586,63,1466521,1,1,Active Shallow Crust,0.0,89.98949,0.0,04/12/3154 +-1.90452,48.56973,5521,11,9,16,29,10,3.55,5.0,fr,34587,110,1466880,1,1,Active Shallow Crust,0.0,89.98999,0.0,11/09/5521 +-1.90452,48.56973,6566,10,14,15,5,44,3.55,15.0,fr,34588,131,1466881,1,1,Active Shallow Crust,0.0,89.98999,0.0,10/14/6566 +-1.90452,48.56973,8675,3,28,19,30,24,3.55,15.0,fr,34589,173,1466884,1,1,Active Shallow Crust,240.0126,57.9982,0.0,03/28/8675 +-1.90452,48.56973,5849,8,2,3,7,9,3.65,5.0,fr,34590,116,1466892,1,2,Active Shallow Crust,0.0,89.98959,0.0,08/02/5849 +-1.90452,48.56973,564,12,25,13,28,21,3.65,5.0,fr,34591,11,1466892,1,2,Active Shallow Crust,0.0,89.98959,0.0,12/25/0564 +-1.90452,48.56973,2687,9,25,1,43,18,3.65,15.0,fr,34592,53,1466893,1,1,Active Shallow Crust,0.0,89.98959,0.0,09/25/2687 +-1.90452,48.56973,1638,7,10,3,24,45,3.65,5.0,fr,34593,32,1466895,1,1,Active Shallow Crust,240.0015,58.01284,0.0,07/10/1638 +-1.90452,48.56973,9323,2,22,14,8,17,3.75,27.5,fr,34594,186,1466909,1,1,Active Shallow Crust,240.0085,58.01772,0.0,02/22/9323 +-1.90452,48.56973,8290,8,21,0,51,42,3.75,15.0,fr,34595,165,1466914,1,1,Active Shallow Crust,128.8964,89.96741,0.0,08/21/8290 +-1.90452,48.56973,4319,11,10,17,30,45,3.85,5.0,fr,34596,86,1466919,1,1,Active Shallow Crust,240.0112,57.99786,0.0,11/10/4319 +-1.90452,48.56973,1056,11,2,7,45,17,3.95,5.0,fr,34597,21,1466928,1,2,Active Shallow Crust,0.0,89.98947,0.0,11/02/1056 +-1.90452,48.56973,4007,5,6,19,50,44,3.95,5.0,fr,34598,80,1466928,1,2,Active Shallow Crust,0.0,89.98947,0.0,05/06/4007 +-1.90452,48.56973,6550,11,11,15,51,5,4.05,15.0,fr,34599,130,1466941,1,1,Active Shallow Crust,0.0,89.98968,0.0,11/11/6550 +-1.90452,48.56973,7750,10,9,15,45,58,4.05,5.0,fr,34600,154,1466946,1,1,Active Shallow Crust,0.0,89.98956,-90.0,10/09/7750 +-1.90452,48.56973,2629,7,3,3,37,8,4.15,15.0,fr,34601,52,1466953,1,1,Active Shallow Crust,0.0,89.98997,0.0,07/03/2629 +-1.90452,48.56973,4907,5,19,12,28,9,4.25,5.0,fr,34602,98,1466964,1,1,Active Shallow Crust,0.0,89.99031,0.0,05/19/4907 +-1.90452,48.56973,7807,2,11,7,15,30,4.25,15.0,fr,34603,156,1466968,1,1,Active Shallow Crust,240.0081,57.99404,0.0,02/11/7807 +-1.90452,48.56973,9697,12,4,23,36,16,4.45,15.0,fr,34604,193,1466989,1,1,Active Shallow Crust,0.0,89.98994,0.0,12/04/9697 +-1.90452,48.56973,9616,12,15,16,7,54,4.55,15.0,fr,34605,192,1467010,1,1,Active Shallow Crust,128.8934,89.98588,0.0,12/15/9616 +-1.90452,48.56973,6841,12,26,7,4,1,4.85,5.0,fr,34606,136,1467045,1,1,Active Shallow Crust,128.8919,89.98896,0.0,12/26/6841 +-1.90452,48.56973,5379,4,27,8,35,55,5.05,5.0,fr,34607,107,1467063,1,1,Active Shallow Crust,240.0232,57.99779,0.0,04/27/5379 +1.46817,51.7754,9136,11,12,19,59,30,3.55,5.0,fr,34608,182,1467363,1,1,Active Shallow Crust,240.0126,57.99847,0.0,11/12/9136 +1.46817,51.7754,8584,5,4,13,17,19,3.65,15.0,fr,34609,171,1467382,1,1,Active Shallow Crust,128.8998,89.96351,0.0,05/04/8584 +1.46817,51.7754,2184,6,15,23,2,50,3.75,5.0,fr,34610,43,1467387,1,1,Active Shallow Crust,240.0089,58.01773,0.0,06/15/2184 +1.46817,51.7754,117,5,17,9,33,53,3.75,5.0,fr,34611,2,1467393,1,1,Active Shallow Crust,128.8962,89.96737,0.0,05/17/0117 +1.46817,51.7754,6854,10,18,20,4,58,3.85,5.0,fr,34612,137,1467396,1,1,Active Shallow Crust,0.0,89.99006,0.0,10/18/6854 +1.46817,51.7754,2040,11,22,16,7,53,3.95,5.0,fr,34613,40,1467417,1,1,Active Shallow Crust,128.8995,89.99409,0.0,11/22/2040 +1.46817,51.7754,8771,1,5,6,51,38,4.15,15.0,fr,34614,175,1467433,1,1,Active Shallow Crust,0.0,89.98984,0.0,01/05/8771 +1.46817,51.7754,6474,1,10,17,36,44,4.55,5.0,fr,34615,129,1467486,1,1,Active Shallow Crust,0.0,89.99002,-90.0,01/10/6474 +1.46817,51.7754,7727,3,20,13,11,38,4.65,5.0,fr,34616,154,1467492,1,1,Active Shallow Crust,0.0,89.98988,0.0,03/20/7727 +5.84873,47.5966,947,9,26,4,17,38,3.55,5.0,fr,34617,18,1467840,1,1,Active Shallow Crust,0.0,89.9932,0.0,09/26/0947 +5.84873,47.5966,6333,11,9,12,26,31,3.55,27.5,fr,34618,126,1467842,1,1,Active Shallow Crust,0.0,89.9932,0.0,11/09/6333 +5.84873,47.5966,449,2,18,0,6,17,3.55,5.0,fr,34619,8,1467846,1,1,Active Shallow Crust,0.0,89.99312,-90.0,02/18/0449 +5.84873,47.5966,5800,10,31,20,42,58,3.55,5.0,fr,34620,115,1467849,1,1,Active Shallow Crust,128.8967,89.9932,0.0,10/31/5800 +5.84873,47.5966,7745,5,12,10,46,48,3.65,5.0,fr,34621,154,1467852,1,1,Active Shallow Crust,0.0,89.98788,0.0,05/12/7745 +5.84873,47.5966,5376,9,8,5,18,40,3.85,5.0,fr,34622,107,1467876,1,1,Active Shallow Crust,0.0,89.99037,0.0,09/08/5376 +5.84873,47.5966,3985,7,31,14,39,7,3.85,15.0,fr,34623,79,1467877,1,1,Active Shallow Crust,0.0,89.99037,0.0,07/31/3985 +5.84873,47.5966,3803,11,28,13,49,2,4.15,27.5,fr,34624,76,1467923,1,1,Active Shallow Crust,128.8978,89.99319,0.0,11/28/3803 +5.84873,47.5966,3282,8,11,8,17,9,4.25,15.0,fr,34625,65,1467928,1,1,Active Shallow Crust,240.0077,57.99425,0.0,08/11/3282 +5.84873,47.5966,6550,2,4,13,35,17,4.35,5.0,fr,34626,130,1467936,1,1,Active Shallow Crust,0.0,89.98917,0.0,02/04/6550 +5.84873,47.5966,207,5,9,9,7,59,4.45,5.0,fr,34627,4,1467948,1,1,Active Shallow Crust,0.0,89.99035,0.0,05/09/0207 +5.84873,47.5966,6457,9,4,18,28,43,4.75,5.0,fr,34628,129,1467984,1,1,Active Shallow Crust,0.0,89.98975,0.0,09/04/6457 +-0.72904,42.27251,350,1,18,2,17,49,3.55,5.0,fr,34629,6,1468320,1,1,Active Shallow Crust,0.0,89.98974,0.0,01/18/0350 +-0.72904,42.27251,3844,1,14,0,4,0,3.55,5.0,fr,34630,76,1468323,1,1,Active Shallow Crust,240.012,57.9981,0.0,01/14/3844 +-0.72904,42.27251,8696,10,14,15,4,16,3.65,5.0,fr,34631,173,1468332,1,1,Active Shallow Crust,0.0,89.99003,0.0,10/14/8696 +-0.72904,42.27251,7371,8,22,5,40,34,3.75,5.0,fr,34632,147,1468344,1,1,Active Shallow Crust,0.0,89.99037,0.0,08/22/7371 +-0.72904,42.27251,9391,2,28,12,24,13,4.05,5.0,fr,34633,187,1468380,1,1,Active Shallow Crust,0.0,89.99004,0.0,02/28/9391 +-0.72904,42.27251,1979,9,30,19,0,24,4.25,15.0,fr,34634,39,1468405,1,1,Active Shallow Crust,0.0,89.99,0.0,09/30/1979 +-0.72904,42.27251,5341,10,25,1,44,55,4.75,5.0,fr,34635,106,1468464,1,1,Active Shallow Crust,0.0,89.98992,0.0,10/25/5341 +0.50237,50.5723,9040,9,23,3,10,45,3.55,5.0,fr,34636,180,1468800,1,1,Active Shallow Crust,0.0,89.99039,0.0,09/23/9040 +0.50237,50.5723,8235,4,1,18,13,1,3.75,5.0,fr,34637,164,1468824,1,1,Active Shallow Crust,0.0,89.98982,0.0,04/01/8235 +0.50237,50.5723,2633,2,9,14,40,35,3.85,5.0,fr,34638,52,1468836,1,1,Active Shallow Crust,0.0,89.9898,0.0,02/09/2633 +0.50237,50.5723,2014,3,6,14,45,41,4.15,5.0,fr,34639,40,1468872,1,2,Active Shallow Crust,0.0,89.98997,0.0,03/06/2014 +0.50237,50.5723,1303,10,25,23,50,21,4.15,5.0,fr,34640,26,1468872,1,2,Active Shallow Crust,0.0,89.98997,0.0,10/25/1303 +0.50237,50.5723,7546,1,18,4,8,44,4.25,5.0,fr,34641,150,1468884,1,1,Active Shallow Crust,0.0,89.98999,0.0,01/18/7546 +0.50237,50.5723,794,3,11,13,48,28,4.35,5.0,fr,34642,15,1468896,1,1,Active Shallow Crust,0.0,89.99012,0.0,03/11/0794 +-2.70651,46.603,8637,5,7,4,46,52,3.75,15.0,fr,34643,172,1469314,1,1,Active Shallow Crust,128.8964,89.96723,0.0,05/07/8637 +-2.70651,46.603,4026,3,24,10,4,46,4.25,15.0,fr,34644,80,1469365,1,1,Active Shallow Crust,0.0,89.99072,0.0,03/24/4026 +-2.70651,46.603,5786,3,8,6,23,12,4.85,5.0,fr,34645,115,1469436,1,1,Active Shallow Crust,0.0,89.98991,0.0,03/08/5786 +-1.76118,48.44663,9070,10,21,4,5,38,3.55,15.0,fr,34646,181,1470244,1,1,Active Shallow Crust,240.0127,57.99814,0.0,10/21/9070 +-1.76118,48.44663,2926,6,23,6,16,35,3.65,5.0,fr,34647,58,1470252,1,3,Active Shallow Crust,0.0,89.98957,0.0,06/23/2926 +-1.76118,48.44663,9089,3,30,1,59,42,3.65,5.0,fr,34648,181,1470252,1,3,Active Shallow Crust,0.0,89.98957,0.0,03/30/9089 +-1.76118,48.44663,1102,3,23,16,58,2,3.65,5.0,fr,34649,22,1470252,1,3,Active Shallow Crust,0.0,89.98957,0.0,03/23/1102 +-1.76118,48.44663,6073,9,3,9,10,32,3.65,5.0,fr,34650,121,1470255,1,2,Active Shallow Crust,240.0011,58.01299,0.0,09/03/6073 +-1.76118,48.44663,6696,2,11,22,29,12,3.65,5.0,fr,34651,133,1470255,1,2,Active Shallow Crust,240.0011,58.01299,0.0,02/11/6696 +-1.76118,48.44663,9373,1,11,20,11,21,3.75,5.0,fr,34652,187,1470264,1,2,Active Shallow Crust,0.0,89.98937,0.0,01/11/9373 +-1.76118,48.44663,1306,10,2,22,14,55,3.75,5.0,fr,34653,26,1470264,1,2,Active Shallow Crust,0.0,89.98937,0.0,10/02/1306 +-1.76118,48.44663,8445,8,15,16,13,28,3.85,5.0,fr,34654,168,1470276,1,1,Active Shallow Crust,0.0,89.99053,0.0,08/15/8445 +-1.76118,48.44663,5736,3,15,22,7,6,3.85,15.0,fr,34655,114,1470280,1,1,Active Shallow Crust,240.0111,57.99776,0.0,03/15/5736 +-1.76118,48.44663,5368,7,5,0,47,45,3.85,5.0,fr,34656,107,1470282,1,1,Active Shallow Crust,0.0,89.99042,-90.0,07/05/5368 +-1.76118,48.44663,3967,2,20,18,47,32,3.95,15.0,fr,34657,79,1470289,1,1,Active Shallow Crust,0.0,89.9905,0.0,02/20/3967 +-1.76118,48.44663,4607,11,8,2,12,33,4.05,5.0,fr,34658,92,1470300,1,1,Active Shallow Crust,0.0,89.98965,0.0,11/08/4607 +-1.76118,48.44663,7360,11,16,2,27,5,4.05,15.0,fr,34659,147,1470304,1,1,Active Shallow Crust,240.0063,58.00578,0.0,11/16/7360 +-1.76118,48.44663,6995,12,12,4,42,28,4.25,5.0,fr,34660,139,1470327,1,1,Active Shallow Crust,240.0081,57.99406,0.0,12/12/6995 +-1.76118,48.44663,5617,8,14,14,19,51,4.45,27.5,fr,34661,112,1470350,1,1,Active Shallow Crust,0.0,89.98991,0.0,08/14/5617 +-1.76118,48.44663,4735,9,21,17,48,16,4.55,15.0,fr,34662,94,1470361,1,1,Active Shallow Crust,0.0,89.98995,0.0,09/21/4735 +-1.76118,48.44663,786,8,13,0,25,38,4.65,15.0,fr,34663,15,1470376,1,1,Active Shallow Crust,240.0116,57.99427,0.0,08/13/0786 +-1.76118,48.44663,4590,8,9,5,55,15,4.95,5.0,fr,34664,91,1470408,1,1,Active Shallow Crust,0.0,89.98999,0.0,08/09/4590 +-1.76118,48.44663,1782,8,7,9,40,58,5.85,15.0,fr,34665,35,1470517,1,1,Active Shallow Crust,359.9999,89.99005,0.0,08/07/1782 +0.22228,49.37709,5674,7,27,11,39,29,3.55,5.0,fr,34666,113,1470720,1,1,Active Shallow Crust,0.0,89.98994,0.0,07/27/5674 +0.22228,49.37709,1624,2,17,3,39,59,3.55,15.0,fr,34667,32,1470721,1,1,Active Shallow Crust,0.0,89.98994,0.0,02/17/1624 +0.22228,49.37709,7275,8,2,16,22,13,3.65,5.0,fr,34668,145,1470732,1,1,Active Shallow Crust,0.0,89.98994,0.0,08/02/7275 +0.22228,49.37709,9076,5,8,6,14,59,3.65,27.5,fr,34669,181,1470734,1,1,Active Shallow Crust,0.0,89.98994,0.0,05/08/9076 +0.22228,49.37709,4008,6,26,5,27,20,3.65,5.0,fr,34670,80,1470735,1,1,Active Shallow Crust,240.0014,58.01295,0.0,06/26/4008 +0.22228,49.37709,6402,4,13,19,0,8,3.65,15.0,fr,34671,128,1470739,1,1,Active Shallow Crust,0.0,89.99001,-90.0,04/13/6402 +0.22228,49.37709,9330,1,8,22,59,2,3.65,27.5,fr,34672,186,1470740,1,1,Active Shallow Crust,0.0,89.99001,-90.0,01/08/9330 +0.22228,49.37709,1066,5,18,11,17,5,3.65,5.0,fr,34673,21,1470741,1,1,Active Shallow Crust,128.9001,89.9635,0.0,05/18/1066 +0.22228,49.37709,8049,3,13,22,48,2,3.85,15.0,fr,34674,160,1470757,1,1,Active Shallow Crust,0.0,89.98997,0.0,03/13/8049 +0.22228,49.37709,3064,9,23,7,8,41,3.85,27.5,fr,34675,61,1470758,1,1,Active Shallow Crust,0.0,89.98997,0.0,09/23/3064 +0.22228,49.37709,5563,4,8,8,1,40,3.95,5.0,fr,34676,111,1470771,1,1,Active Shallow Crust,240.0202,58.00505,0.0,04/08/5563 +0.22228,49.37709,1456,10,16,16,49,30,3.95,5.0,fr,34677,29,1470774,1,1,Active Shallow Crust,0.0,89.99004,-90.0,10/16/1456 +0.22228,49.37709,5737,2,20,15,12,59,3.95,27.5,fr,34678,114,1470779,1,1,Active Shallow Crust,128.9,89.99372,0.0,02/20/5737 +0.22228,49.37709,1816,4,3,2,13,28,4.15,5.0,fr,34679,36,1470792,1,1,Active Shallow Crust,0.0,89.99003,0.0,04/03/1816 +0.22228,49.37709,2452,3,15,21,8,59,4.15,15.0,fr,34680,49,1470793,1,1,Active Shallow Crust,0.0,89.99003,0.0,03/15/2452 +0.22228,49.37709,1953,3,10,20,25,21,4.25,5.0,fr,34681,39,1470804,1,2,Active Shallow Crust,0.0,89.99001,0.0,03/10/1953 +0.22228,49.37709,5767,5,25,9,31,0,4.25,5.0,fr,34682,115,1470804,1,2,Active Shallow Crust,0.0,89.99001,0.0,05/25/5767 +0.22228,49.37709,606,1,18,10,2,14,4.35,5.0,fr,34683,12,1470816,1,1,Active Shallow Crust,0.0,89.99004,0.0,01/18/0606 +0.22228,49.37709,7681,5,30,14,17,41,4.35,5.0,fr,34684,153,1470825,1,1,Active Shallow Crust,128.8972,89.98277,0.0,05/30/7681 +-0.67151,42.00318,2485,8,19,17,20,26,3.55,5.0,fr,34685,49,1471200,1,1,Active Shallow Crust,0.0,89.9897,0.0,08/19/2485 +-2.26469,49.07815,9797,10,24,3,30,12,3.55,5.0,fr,34686,195,1471680,1,1,Active Shallow Crust,0.0,89.99009,0.0,10/24/9797 +-2.26469,49.07815,5018,12,2,12,23,10,3.55,15.0,fr,34687,100,1471681,1,1,Active Shallow Crust,0.0,89.99009,0.0,12/02/5018 +-2.26469,49.07815,2447,9,21,4,33,9,3.55,5.0,fr,34688,48,1471683,1,1,Active Shallow Crust,240.0128,57.99841,0.0,09/21/2447 +-2.26469,49.07815,9500,12,10,5,41,27,3.55,5.0,fr,34689,189,1471689,1,1,Active Shallow Crust,128.8961,89.99505,0.0,12/10/9500 +-2.26469,49.07815,8991,1,28,9,4,58,3.65,5.0,fr,34690,179,1471692,1,2,Active Shallow Crust,0.0,89.99117,0.0,01/28/8991 +-2.26469,49.07815,2929,2,16,18,31,24,3.65,5.0,fr,34691,58,1471692,1,2,Active Shallow Crust,0.0,89.99117,0.0,02/16/2929 +-2.26469,49.07815,291,2,8,17,20,55,3.65,15.0,fr,34692,5,1471693,1,2,Active Shallow Crust,0.0,89.99117,0.0,02/08/0291 +-2.26469,49.07815,7747,6,7,11,45,6,3.65,15.0,fr,34693,154,1471693,1,2,Active Shallow Crust,0.0,89.99117,0.0,06/07/7747 +-2.26469,49.07815,1585,1,4,23,26,24,3.65,5.0,fr,34694,31,1471695,1,1,Active Shallow Crust,240.0013,58.01292,0.0,01/04/1585 +-2.26469,49.07815,6795,11,26,15,32,33,3.65,5.0,fr,34695,135,1471698,1,1,Active Shallow Crust,0.0,89.99107,-90.0,11/26/6795 +-2.26469,49.07815,9687,1,9,8,2,14,3.65,15.0,fr,34696,193,1471702,1,1,Active Shallow Crust,128.9003,89.96358,0.0,01/09/9687 +-2.26469,49.07815,4867,2,2,12,18,34,3.75,5.0,fr,34697,97,1471704,1,1,Active Shallow Crust,0.0,89.98951,0.0,02/02/4867 +-2.26469,49.07815,1771,12,29,17,56,13,3.75,15.0,fr,34698,35,1471705,1,1,Active Shallow Crust,0.0,89.98951,0.0,12/29/1771 +-2.26469,49.07815,7854,4,16,11,0,19,3.75,27.5,fr,34699,157,1471706,1,1,Active Shallow Crust,0.0,89.98951,0.0,04/16/7854 +-2.26469,49.07815,3180,2,29,18,44,46,3.75,5.0,fr,34700,63,1471710,1,1,Active Shallow Crust,0.0,89.98939,-90.0,02/29/3180 +-2.26469,49.07815,5496,4,7,5,55,46,3.85,15.0,fr,34701,109,1471717,1,1,Active Shallow Crust,0.0,89.99065,0.0,04/07/5496 +-2.26469,49.07815,2543,3,23,20,3,28,3.95,5.0,fr,34702,50,1471731,1,1,Active Shallow Crust,240.0203,58.005,0.0,03/23/2543 +-2.26469,49.07815,5646,3,15,23,57,51,4.05,5.0,fr,34703,112,1471740,1,1,Active Shallow Crust,0.0,89.99072,0.0,03/15/5646 +-2.26469,49.07815,7312,9,23,20,26,31,4.15,27.5,fr,34704,146,1471754,1,1,Active Shallow Crust,0.0,89.99007,0.0,09/23/7312 +-2.26469,49.07815,1518,8,23,16,54,42,4.25,15.0,fr,34705,30,1471765,1,1,Active Shallow Crust,0.0,89.98967,0.0,08/23/1518 +-2.26469,49.07815,6482,12,5,5,52,49,4.35,5.0,fr,34706,129,1471776,1,1,Active Shallow Crust,0.0,89.98948,0.0,12/05/6482 +-2.26469,49.07815,3944,12,1,22,41,44,4.35,15.0,fr,34707,78,1471777,1,2,Active Shallow Crust,0.0,89.98948,0.0,12/01/3944 +-2.26469,49.07815,7325,10,20,1,22,36,4.35,15.0,fr,34708,146,1471777,1,2,Active Shallow Crust,0.0,89.98948,0.0,10/20/7325 +-2.26469,49.07815,4357,9,5,5,3,30,4.65,5.0,fr,34709,87,1471818,1,1,Active Shallow Crust,0.0,89.98964,-90.0,09/05/4357 +6.13129,45.82312,6135,1,13,16,19,36,3.55,5.0,fr,34710,122,1472160,1,2,Active Shallow Crust,0.0,89.99297,0.0,01/13/6135 +6.13129,45.82312,684,12,26,18,11,17,3.55,5.0,fr,34711,13,1472160,1,2,Active Shallow Crust,0.0,89.99297,0.0,12/26/0684 +6.13129,45.82312,9982,5,20,17,30,24,3.55,15.0,fr,34712,199,1472161,1,3,Active Shallow Crust,0.0,89.99297,0.0,05/20/9982 +6.13129,45.82312,3090,12,13,22,8,57,3.55,15.0,fr,34713,61,1472161,1,3,Active Shallow Crust,0.0,89.99297,0.0,12/13/3090 +6.13129,45.82312,4073,12,23,10,12,25,3.55,15.0,fr,34714,81,1472161,1,3,Active Shallow Crust,0.0,89.99297,0.0,12/23/4073 +6.13129,45.82312,5791,4,29,2,33,16,3.55,5.0,fr,34715,115,1472163,1,2,Active Shallow Crust,240.0129,57.99762,0.0,04/29/5791 +6.13129,45.82312,882,11,18,18,32,18,3.55,5.0,fr,34716,17,1472163,1,2,Active Shallow Crust,240.0129,57.99762,0.0,11/18/0882 +6.13129,45.82312,4534,9,2,8,39,21,3.65,5.0,fr,34717,90,1472172,1,1,Active Shallow Crust,0.0,89.98747,0.0,09/02/4534 +6.13129,45.82312,4821,3,27,12,53,27,3.65,15.0,fr,34718,96,1472173,1,5,Active Shallow Crust,0.0,89.98747,0.0,03/27/4821 +6.13129,45.82312,9206,5,18,7,45,33,3.65,15.0,fr,34719,184,1472173,1,5,Active Shallow Crust,0.0,89.98747,0.0,05/18/9206 +6.13129,45.82312,7565,8,10,2,29,33,3.65,15.0,fr,34720,151,1472173,1,5,Active Shallow Crust,0.0,89.98747,0.0,08/10/7565 +6.13129,45.82312,10,10,3,5,46,37,3.65,15.0,fr,34721,0,1472173,1,5,Active Shallow Crust,0.0,89.98747,0.0,10/03/0010 +6.13129,45.82312,3626,5,21,19,58,51,3.65,15.0,fr,34722,72,1472173,1,5,Active Shallow Crust,0.0,89.98747,0.0,05/21/3626 +6.13129,45.82312,2736,9,30,21,45,29,3.65,5.0,fr,34723,54,1472175,1,1,Active Shallow Crust,240.0014,58.01263,0.0,09/30/2736 +6.13129,45.82312,684,2,10,23,21,49,3.65,5.0,fr,34724,13,1472178,1,1,Active Shallow Crust,0.0,89.98733,-90.0,02/10/0684 +6.13129,45.82312,5520,6,9,20,6,51,3.65,5.0,fr,34725,110,1472181,1,1,Active Shallow Crust,128.9001,89.96351,0.0,06/09/5520 +6.13129,45.82312,9431,5,3,15,50,13,3.75,5.0,fr,34726,188,1472184,1,1,Active Shallow Crust,0.0,89.98884,0.0,05/03/9431 +6.13129,45.82312,7033,9,22,13,35,4,3.75,5.0,fr,34727,140,1472190,1,1,Active Shallow Crust,0.0,89.98871,-90.0,09/22/7033 +6.13129,45.82312,3190,7,6,3,16,41,3.75,5.0,fr,34728,63,1472193,1,1,Active Shallow Crust,128.8973,89.96748,0.0,07/06/3190 +6.13129,45.82312,3054,8,11,9,8,28,3.85,5.0,fr,34729,61,1472196,1,3,Active Shallow Crust,0.0,89.99005,0.0,08/11/3054 +6.13129,45.82312,8469,7,6,1,42,33,3.85,5.0,fr,34730,169,1472196,1,3,Active Shallow Crust,0.0,89.99005,0.0,07/06/8469 +6.13129,45.82312,5067,10,5,0,3,6,3.85,5.0,fr,34731,101,1472196,1,3,Active Shallow Crust,0.0,89.99005,0.0,10/05/5067 +6.13129,45.82312,8116,10,30,16,37,52,3.85,15.0,fr,34732,162,1472197,1,1,Active Shallow Crust,0.0,89.99005,0.0,10/30/8116 +6.13129,45.82312,6203,5,14,10,54,54,3.85,5.0,fr,34733,124,1472202,1,1,Active Shallow Crust,0.0,89.98994,-90.0,05/14/6203 +6.13129,45.82312,4047,11,2,8,27,14,3.95,5.0,fr,34734,80,1472208,1,2,Active Shallow Crust,0.0,89.99113,0.0,11/02/4047 +6.13129,45.82312,5427,5,1,9,31,45,3.95,5.0,fr,34735,108,1472208,1,2,Active Shallow Crust,0.0,89.99113,0.0,05/01/5427 +6.13129,45.82312,8199,11,5,10,17,0,3.95,15.0,fr,34736,163,1472209,1,2,Active Shallow Crust,0.0,89.99113,0.0,11/05/8199 +6.13129,45.82312,8344,4,8,14,4,7,3.95,15.0,fr,34737,166,1472209,1,2,Active Shallow Crust,0.0,89.99113,0.0,04/08/8344 +6.13129,45.82312,8729,2,10,1,52,55,3.95,27.5,fr,34738,174,1472210,1,1,Active Shallow Crust,0.0,89.99113,0.0,02/10/8729 +6.13129,45.82312,1673,9,21,16,1,16,4.05,5.0,fr,34739,33,1472220,1,2,Active Shallow Crust,0.0,89.98814,0.0,09/21/1673 +6.13129,45.82312,4769,10,30,10,10,55,4.05,5.0,fr,34740,95,1472220,1,2,Active Shallow Crust,0.0,89.98814,0.0,10/30/4769 +6.13129,45.82312,7900,10,19,10,29,11,4.05,15.0,fr,34741,157,1472221,1,2,Active Shallow Crust,0.0,89.98814,0.0,10/19/7900 +6.13129,45.82312,5031,12,3,5,43,54,4.05,15.0,fr,34742,100,1472221,1,2,Active Shallow Crust,0.0,89.98814,0.0,12/03/5031 +6.13129,45.82312,9562,10,18,4,26,17,4.15,5.0,fr,34743,191,1472232,1,1,Active Shallow Crust,0.0,89.98943,0.0,10/18/9562 +6.13129,45.82312,5181,10,7,17,47,25,4.15,15.0,fr,34744,103,1472233,1,1,Active Shallow Crust,0.0,89.98943,0.0,10/07/5181 +6.13129,45.82312,810,3,13,13,14,3,4.25,5.0,fr,34745,16,1472244,1,1,Active Shallow Crust,0.0,89.99059,0.0,03/13/0810 +6.13129,45.82312,6030,11,14,4,23,33,4.45,5.0,fr,34746,120,1472268,1,1,Active Shallow Crust,0.0,89.99003,0.0,11/14/6030 +6.13129,45.82312,5536,11,18,15,18,27,4.45,5.0,fr,34747,110,1472271,1,1,Active Shallow Crust,240.0053,57.99472,0.0,11/18/5536 +6.13129,45.82312,9741,3,22,13,39,1,4.45,15.0,fr,34748,194,1472272,1,1,Active Shallow Crust,240.0053,57.99474,0.0,03/22/9741 +6.13129,45.82312,7105,3,12,17,53,2,4.55,5.0,fr,34749,142,1472289,1,1,Active Shallow Crust,128.8936,89.98609,0.0,03/12/7105 +6.13129,45.82312,6510,8,8,1,0,9,4.65,5.0,fr,34750,130,1472292,1,1,Active Shallow Crust,0.0,89.9901,0.0,08/08/6510 +6.13129,45.82312,658,6,24,6,51,22,4.65,27.5,fr,34751,13,1472294,1,1,Active Shallow Crust,0.0,89.9901,0.0,06/24/0658 +6.13129,45.82312,6767,1,18,7,27,40,4.75,15.0,fr,34752,135,1472311,1,1,Active Shallow Crust,0.0,89.98929,-90.0,01/18/6767 +6.13129,45.82312,2439,12,6,10,7,17,4.95,15.0,fr,34753,48,1472335,1,1,Active Shallow Crust,0.0,89.99007,-90.0,12/06/2439 +6.13129,45.82312,6981,3,12,20,21,22,5.25,5.0,fr,34754,139,1472364,1,1,Active Shallow Crust,0.0,89.99007,0.0,03/12/6981 +6.13129,45.82312,6669,4,3,20,59,19,5.55,5.0,fr,34755,133,1472400,1,1,Active Shallow Crust,0.0,89.99016,0.0,04/03/6669 +-0.67713,48.5256,8815,2,25,23,24,55,3.55,5.0,fr,34756,176,1472640,1,2,Active Shallow Crust,0.0,89.98998,0.0,02/25/8815 +-0.67713,48.5256,3962,6,3,16,58,38,3.55,5.0,fr,34757,79,1472640,1,2,Active Shallow Crust,0.0,89.98998,0.0,06/03/3962 +-0.67713,48.5256,8386,10,16,4,17,51,3.55,15.0,fr,34758,167,1472641,1,1,Active Shallow Crust,0.0,89.98998,0.0,10/16/8386 +-0.67713,48.5256,9105,12,17,10,8,21,3.65,5.0,fr,34759,182,1472652,1,1,Active Shallow Crust,0.0,89.99033,0.0,12/17/9105 +-0.67713,48.5256,2639,1,16,11,7,13,3.65,15.0,fr,34760,52,1472653,1,1,Active Shallow Crust,0.0,89.99033,0.0,01/16/2639 +-0.67713,48.5256,6154,1,13,3,42,18,3.75,5.0,fr,34761,123,1472664,1,1,Active Shallow Crust,0.0,89.99005,0.0,01/13/6154 +-0.67713,48.5256,8914,8,25,19,52,0,3.95,5.0,fr,34762,178,1472688,1,1,Active Shallow Crust,0.0,89.98999,0.0,08/25/8914 +-0.67713,48.5256,6503,4,13,22,21,28,4.05,5.0,fr,34763,130,1472700,1,1,Active Shallow Crust,0.0,89.99014,0.0,04/13/6503 +-0.67713,48.5256,4790,1,24,1,56,33,4.15,5.0,fr,34764,95,1472712,1,1,Active Shallow Crust,0.0,89.98996,0.0,01/24/4790 +-0.67713,48.5256,5009,7,12,17,1,39,4.35,5.0,fr,34765,100,1472739,1,1,Active Shallow Crust,240.0089,57.996,0.0,07/12/5009 +1.45252,40.75372,9907,9,29,23,56,57,3.55,5.0,fr,34766,198,1473120,1,1,Active Shallow Crust,0.0,89.99045,0.0,09/29/9907 +1.45252,40.75372,6380,10,2,3,36,34,3.65,5.0,fr,34767,127,1473132,1,1,Active Shallow Crust,0.0,89.98978,0.0,10/02/6380 +1.45252,40.75372,7672,7,26,20,34,21,3.65,27.5,fr,34768,153,1473134,1,2,Active Shallow Crust,0.0,89.98978,0.0,07/26/7672 +1.45252,40.75372,3635,1,14,16,5,42,3.65,27.5,fr,34769,72,1473134,1,2,Active Shallow Crust,0.0,89.98978,0.0,01/14/3635 +1.45252,40.75372,184,1,10,19,10,9,3.75,5.0,fr,34770,3,1473144,1,1,Active Shallow Crust,0.0,89.98938,0.0,01/10/0184 +1.45252,40.75372,4572,12,19,21,22,30,3.75,15.0,fr,34771,91,1473145,1,1,Active Shallow Crust,0.0,89.98938,0.0,12/19/4572 +1.45252,40.75372,7182,1,23,22,42,8,3.75,5.0,fr,34772,143,1473153,1,1,Active Shallow Crust,128.897,89.96724,0.0,01/23/7182 +1.45252,40.75372,6063,8,22,11,14,9,3.95,27.5,fr,34773,121,1473170,1,1,Active Shallow Crust,0.0,89.99036,0.0,08/22/6063 +1.45252,40.75372,2542,7,24,12,54,11,4.15,5.0,fr,34774,50,1473192,1,1,Active Shallow Crust,0.0,89.99043,0.0,07/24/2542 +1.45252,40.75372,2351,3,26,11,18,23,4.35,5.0,fr,34775,47,1473216,1,1,Active Shallow Crust,0.0,89.99011,0.0,03/26/2351 +1.45252,40.75372,3444,3,29,5,50,54,4.55,5.0,fr,34776,68,1473240,1,1,Active Shallow Crust,0.0,89.98973,0.0,03/29/3444 +5.13989,42.5151,3649,12,5,1,41,23,4.15,15.0,fr,34777,72,1474156,1,1,Active Shallow Crust,240.0076,57.99726,0.0,12/05/3649 +6.38596,45.59341,2063,3,16,15,23,28,3.55,5.0,fr,34778,41,1474560,1,4,Active Shallow Crust,0.0,89.99294,0.0,03/16/2063 +6.38596,45.59341,8164,2,5,12,9,32,3.55,5.0,fr,34779,163,1474560,1,4,Active Shallow Crust,0.0,89.99294,0.0,02/05/8164 +6.38596,45.59341,8473,4,2,22,59,24,3.55,5.0,fr,34780,169,1474560,1,4,Active Shallow Crust,0.0,89.99294,0.0,04/02/8473 +6.38596,45.59341,8759,7,6,3,39,2,3.55,5.0,fr,34781,175,1474560,1,4,Active Shallow Crust,0.0,89.99294,0.0,07/06/8759 +6.38596,45.59341,5760,9,28,15,32,27,3.55,5.0,fr,34782,115,1474563,1,1,Active Shallow Crust,240.0127,57.99803,0.0,09/28/5760 +6.38596,45.59341,6874,3,12,22,17,2,3.75,5.0,fr,34783,137,1474584,1,6,Active Shallow Crust,0.0,89.98879,0.0,03/12/6874 +6.38596,45.59341,777,10,27,14,44,25,3.75,5.0,fr,34784,15,1474584,1,6,Active Shallow Crust,0.0,89.98879,0.0,10/27/0777 +6.38596,45.59341,6037,7,13,12,17,22,3.75,5.0,fr,34785,120,1474584,1,6,Active Shallow Crust,0.0,89.98879,0.0,07/13/6037 +6.38596,45.59341,6901,12,13,9,44,30,3.75,5.0,fr,34786,138,1474584,1,6,Active Shallow Crust,0.0,89.98879,0.0,12/13/6901 +6.38596,45.59341,4379,4,27,17,18,53,3.75,5.0,fr,34787,87,1474584,1,6,Active Shallow Crust,0.0,89.98879,0.0,04/27/4379 +6.38596,45.59341,3324,1,21,2,23,54,3.75,5.0,fr,34788,66,1474584,1,6,Active Shallow Crust,0.0,89.98879,0.0,01/21/3324 +6.38596,45.59341,8643,5,25,20,24,3,3.75,15.0,fr,34789,172,1474585,1,1,Active Shallow Crust,0.0,89.98879,0.0,05/25/8643 +6.38596,45.59341,3998,8,14,3,39,31,3.75,5.0,fr,34790,79,1474593,1,1,Active Shallow Crust,128.8964,89.96748,0.0,08/14/3998 +6.38596,45.59341,5629,3,19,20,8,17,3.85,5.0,fr,34791,112,1474596,1,3,Active Shallow Crust,0.0,89.99001,0.0,03/19/5629 +6.38596,45.59341,4571,10,15,15,34,49,3.85,5.0,fr,34792,91,1474596,1,3,Active Shallow Crust,0.0,89.99001,0.0,10/15/4571 +6.38596,45.59341,965,4,21,3,27,57,3.85,5.0,fr,34793,19,1474596,1,3,Active Shallow Crust,0.0,89.99001,0.0,04/21/0965 +6.38596,45.59341,7718,3,3,18,27,26,3.85,27.5,fr,34794,154,1474598,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/03/7718 +6.38596,45.59341,3317,10,9,20,12,7,3.95,5.0,fr,34795,66,1474608,1,1,Active Shallow Crust,0.0,89.9911,0.0,10/09/3317 +6.38596,45.59341,2412,8,25,2,40,53,3.95,15.0,fr,34796,48,1474615,1,1,Active Shallow Crust,0.0,89.99099,-90.0,08/25/2412 +6.38596,45.59341,3389,10,30,6,31,15,4.05,5.0,fr,34797,67,1474620,1,3,Active Shallow Crust,0.0,89.9881,0.0,10/30/3389 +6.38596,45.59341,2540,8,10,20,22,18,4.05,5.0,fr,34798,50,1474620,1,3,Active Shallow Crust,0.0,89.9881,0.0,08/10/2540 +6.38596,45.59341,8637,4,29,4,17,52,4.05,5.0,fr,34799,172,1474620,1,3,Active Shallow Crust,0.0,89.9881,0.0,04/29/8637 +6.38596,45.59341,7474,11,7,20,11,19,4.05,5.0,fr,34800,149,1474623,1,2,Active Shallow Crust,240.0062,58.00539,0.0,11/07/7474 +6.38596,45.59341,3056,2,14,20,25,7,4.05,5.0,fr,34801,61,1474623,1,2,Active Shallow Crust,240.0062,58.00539,0.0,02/14/3056 +6.38596,45.59341,9686,12,17,12,51,21,4.15,5.0,fr,34802,193,1474632,1,1,Active Shallow Crust,0.0,89.98939,0.0,12/17/9686 +6.38596,45.59341,1482,3,25,0,20,8,4.25,15.0,fr,34803,29,1474645,1,1,Active Shallow Crust,0.0,89.99055,0.0,03/25/1482 +6.38596,45.59341,3465,3,14,2,55,5,4.45,15.0,fr,34804,69,1474669,1,1,Active Shallow Crust,0.0,89.98998,0.0,03/14/3465 +6.38596,45.59341,5006,4,25,15,8,50,4.65,5.0,fr,34805,100,1474692,1,1,Active Shallow Crust,0.0,89.99006,0.0,04/25/5006 +6.38596,45.59341,714,11,10,0,53,45,5.95,15.0,fr,34806,14,1474849,1,1,Active Shallow Crust,0.0,89.9902,0.0,11/10/0714 +3.18908,44.101,4444,2,5,5,45,10,3.95,5.0,fr,34807,88,1475568,1,1,Active Shallow Crust,0.0,89.99086,0.0,02/05/4444 +3.18908,44.101,1177,2,27,17,57,45,4.05,5.0,fr,34808,23,1475580,1,1,Active Shallow Crust,0.0,89.98982,0.0,02/27/1177 +3.18908,44.101,2227,3,18,20,20,59,4.55,5.0,fr,34809,44,1475640,1,1,Active Shallow Crust,0.0,89.98969,0.0,03/18/2227 +0.77211,46.35029,2140,12,29,8,41,41,3.55,5.0,fr,34810,42,1476480,1,1,Active Shallow Crust,0.0,89.99043,0.0,12/29/2140 +0.77211,46.35029,7415,1,17,21,46,52,3.75,27.5,fr,34811,148,1476506,1,1,Active Shallow Crust,0.0,89.99033,0.0,01/17/7415 +0.77211,46.35029,4751,8,18,22,22,14,3.75,5.0,fr,34812,95,1476507,1,1,Active Shallow Crust,240.0085,58.01759,0.0,08/18/4751 +0.77211,46.35029,2725,6,4,5,40,35,3.85,5.0,fr,34813,54,1476516,1,1,Active Shallow Crust,0.0,89.99014,0.0,06/04/2725 +0.77211,46.35029,1456,3,20,15,5,23,3.85,15.0,fr,34814,29,1476520,1,1,Active Shallow Crust,240.0107,57.99784,0.0,03/20/1456 +0.77211,46.35029,9698,1,1,22,28,9,4.15,27.5,fr,34815,193,1476554,1,1,Active Shallow Crust,0.0,89.98997,0.0,01/01/9698 +0.77211,46.35029,9984,3,13,2,0,1,4.25,5.0,fr,34816,199,1476564,1,1,Active Shallow Crust,0.0,89.98989,0.0,03/13/9984 +-3.43363,48.0327,7441,1,29,19,8,18,3.55,15.0,fr,34817,148,1476964,1,1,Active Shallow Crust,240.0124,57.99766,0.0,01/29/7441 +-3.43363,48.0327,1212,3,24,18,2,1,3.55,27.5,fr,34818,24,1476965,1,1,Active Shallow Crust,240.0124,57.99757,0.0,03/24/1212 +-3.43363,48.0327,9989,4,10,21,54,30,3.55,5.0,fr,34819,199,1476966,1,1,Active Shallow Crust,0.0,89.98977,-90.0,04/10/9989 +-3.43363,48.0327,734,6,28,20,8,32,3.65,5.0,fr,34820,14,1476972,1,2,Active Shallow Crust,0.0,89.99098,0.0,06/28/0734 +-3.43363,48.0327,1867,7,15,14,23,25,3.65,5.0,fr,34821,37,1476972,1,2,Active Shallow Crust,0.0,89.99098,0.0,07/15/1867 +-3.43363,48.0327,9777,7,24,16,43,7,3.65,15.0,fr,34822,195,1476973,1,1,Active Shallow Crust,0.0,89.99098,0.0,07/24/9777 +-3.43363,48.0327,6858,9,24,9,27,20,3.75,5.0,fr,34823,137,1476984,1,2,Active Shallow Crust,0.0,89.98929,0.0,09/24/6858 +-3.43363,48.0327,830,8,5,22,25,18,3.75,5.0,fr,34824,16,1476984,1,2,Active Shallow Crust,0.0,89.98929,0.0,08/05/0830 +-3.43363,48.0327,6473,4,26,14,54,44,3.85,5.0,fr,34825,129,1476996,1,1,Active Shallow Crust,0.0,89.99046,0.0,04/26/6473 +-3.43363,48.0327,2167,6,18,17,15,3,3.85,5.0,fr,34826,43,1476999,1,1,Active Shallow Crust,240.0112,57.99784,0.0,06/18/2167 +-3.43363,48.0327,1912,11,4,14,6,3,3.95,5.0,fr,34827,38,1477011,1,1,Active Shallow Crust,240.0201,58.00499,0.0,11/04/1912 +-3.43363,48.0327,5292,1,1,14,16,30,4.25,5.0,fr,34828,105,1477044,1,1,Active Shallow Crust,0.0,89.98946,0.0,01/01/5292 +-3.43363,48.0327,718,8,10,4,47,39,4.25,5.0,fr,34829,14,1477053,1,1,Active Shallow Crust,128.8941,89.981,0.0,08/10/0718 +-3.43363,48.0327,9759,6,17,8,36,34,4.45,27.5,fr,34830,195,1477070,1,1,Active Shallow Crust,0.0,89.99043,0.0,06/17/9759 +-3.43363,48.0327,7725,2,28,19,37,27,4.45,5.0,fr,34831,154,1477077,1,1,Active Shallow Crust,128.8919,89.99402,0.0,02/28/7725 +5.50419,41.48312,2771,8,26,21,33,11,3.65,5.0,fr,34832,55,1477452,1,1,Active Shallow Crust,0.0,89.99327,0.0,08/26/2771 +2.22205,44.7373,8980,4,3,19,18,12,3.55,5.0,fr,34833,179,1477920,1,1,Active Shallow Crust,0.0,89.98926,0.0,04/03/8980 +2.22205,44.7373,5949,9,4,22,7,10,3.55,15.0,fr,34834,118,1477921,1,1,Active Shallow Crust,0.0,89.98926,0.0,09/04/5949 +2.22205,44.7373,4328,4,12,12,48,18,3.55,27.5,fr,34835,86,1477922,1,1,Active Shallow Crust,0.0,89.98926,0.0,04/12/4328 +2.22205,44.7373,7267,1,27,21,22,56,3.55,5.0,fr,34836,145,1477923,1,1,Active Shallow Crust,240.0123,57.9985,0.0,01/27/7267 +2.22205,44.7373,198,7,28,13,15,33,3.55,5.0,fr,34837,3,1477926,1,1,Active Shallow Crust,0.0,89.98913,-90.0,07/28/0198 +2.22205,44.7373,1074,10,11,9,57,28,3.65,15.0,fr,34838,21,1477933,1,2,Active Shallow Crust,0.0,89.99043,0.0,10/11/1074 +2.22205,44.7373,3585,5,3,9,13,49,3.65,15.0,fr,34839,71,1477933,1,2,Active Shallow Crust,0.0,89.99043,0.0,05/03/3585 +2.22205,44.7373,8406,10,28,18,17,51,3.65,5.0,fr,34840,168,1477938,1,1,Active Shallow Crust,0.0,89.99031,-90.0,10/28/8406 +2.22205,44.7373,6065,11,11,23,48,59,3.85,15.0,fr,34841,121,1477960,1,1,Active Shallow Crust,240.0107,57.99751,0.0,11/11/6065 +2.22205,44.7373,1689,12,3,8,24,10,3.95,15.0,fr,34842,33,1477969,1,1,Active Shallow Crust,0.0,89.99096,0.0,12/03/1689 +2.22205,44.7373,405,5,24,10,54,48,4.05,5.0,fr,34843,8,1477980,1,2,Active Shallow Crust,0.0,89.98993,0.0,05/24/0405 +2.22205,44.7373,5705,4,4,0,15,5,4.05,5.0,fr,34844,114,1477980,1,2,Active Shallow Crust,0.0,89.98993,0.0,04/04/5705 +2.22205,44.7373,5080,6,3,7,14,58,4.25,5.0,fr,34845,101,1478007,1,1,Active Shallow Crust,240.0075,57.99389,0.0,06/03/5080 +1.46745,49.70102,1034,1,25,21,43,54,3.55,5.0,fr,34846,20,1478400,1,1,Active Shallow Crust,0.0,89.99022,0.0,01/25/1034 +1.46745,49.70102,2831,3,12,16,50,19,3.55,15.0,fr,34847,56,1478404,1,1,Active Shallow Crust,240.0125,57.99827,0.0,03/12/2831 +1.46745,49.70102,546,11,12,8,24,40,3.65,5.0,fr,34848,10,1478412,1,2,Active Shallow Crust,0.0,89.98983,0.0,11/12/0546 +1.46745,49.70102,2476,12,17,11,31,34,3.65,5.0,fr,34849,49,1478412,1,2,Active Shallow Crust,0.0,89.98983,0.0,12/17/2476 +1.46745,49.70102,8987,7,24,10,24,32,3.75,15.0,fr,34850,179,1478425,1,1,Active Shallow Crust,0.0,89.98964,0.0,07/24/8987 +1.46745,49.70102,2584,11,21,0,59,46,3.75,5.0,fr,34851,51,1478433,1,1,Active Shallow Crust,128.8962,89.96744,0.0,11/21/2584 +1.46745,49.70102,98,8,30,23,24,55,3.85,5.0,fr,34852,1,1478436,1,1,Active Shallow Crust,0.0,89.98961,0.0,08/30/0098 +1.46745,49.70102,7380,12,8,0,35,13,3.95,5.0,fr,34853,147,1478448,1,1,Active Shallow Crust,0.0,89.98972,0.0,12/08/7380 +1.46745,49.70102,8848,9,10,11,7,7,4.05,15.0,fr,34854,176,1478461,1,1,Active Shallow Crust,0.0,89.98991,0.0,09/10/8848 +-2.70668,44.12624,9028,1,16,7,51,45,3.95,5.0,fr,34855,180,1478928,1,1,Active Shallow Crust,0.0,89.99087,0.0,01/16/9028 +5.47175,43.09488,9241,4,19,12,35,56,3.55,5.0,fr,34856,184,1479360,1,1,Active Shallow Crust,0.0,89.99264,0.0,04/19/9241 +5.47175,43.09488,3852,2,15,1,56,11,3.65,5.0,fr,34857,77,1479372,1,1,Active Shallow Crust,0.0,89.98688,0.0,02/15/3852 +5.47175,43.09488,473,2,22,14,39,58,3.65,15.0,fr,34858,9,1479379,1,1,Active Shallow Crust,0.0,89.98672,-90.0,02/22/0473 +5.47175,43.09488,1137,1,11,17,15,23,4.05,15.0,fr,34859,22,1479427,1,1,Active Shallow Crust,0.0,89.99162,-90.0,01/11/1137 +5.47175,43.09488,6976,5,30,14,15,28,4.25,5.0,fr,34860,139,1479444,1,1,Active Shallow Crust,0.0,89.99014,0.0,05/30/6976 +5.47175,43.09488,1450,2,7,9,5,24,4.35,5.0,fr,34861,28,1479459,1,1,Active Shallow Crust,240.0072,57.99623,0.0,02/07/1450 +5.47175,43.09488,2971,4,24,7,37,8,4.65,15.0,fr,34862,59,1479496,1,1,Active Shallow Crust,240.0099,57.99428,0.0,04/24/2971 +5.47175,43.09488,565,9,7,3,13,3,4.85,5.0,fr,34863,11,1479516,1,1,Active Shallow Crust,0.0,89.9901,0.0,09/07/0565 +8.30543,46.98468,3827,11,23,6,20,8,3.55,5.0,fr,34864,76,1480800,1,12,Active Shallow Crust,0.0,89.98624,0.0,11/23/3827 +8.30543,46.98468,9918,3,18,14,24,22,3.55,5.0,fr,34865,198,1480800,1,12,Active Shallow Crust,0.0,89.98624,0.0,03/18/9918 +8.30543,46.98468,3463,8,19,12,43,42,3.55,5.0,fr,34866,69,1480800,1,12,Active Shallow Crust,0.0,89.98624,0.0,08/19/3463 +8.30543,46.98468,7535,10,16,9,27,28,3.55,5.0,fr,34867,150,1480800,1,12,Active Shallow Crust,0.0,89.98624,0.0,10/16/7535 +8.30543,46.98468,176,6,22,4,5,4,3.55,5.0,fr,34868,3,1480800,1,12,Active Shallow Crust,0.0,89.98624,0.0,06/22/0176 +8.30543,46.98468,7295,10,3,11,36,13,3.55,5.0,fr,34869,145,1480800,1,12,Active Shallow Crust,0.0,89.98624,0.0,10/03/7295 +8.30543,46.98468,8178,5,25,1,9,25,3.55,5.0,fr,34870,163,1480800,1,12,Active Shallow Crust,0.0,89.98624,0.0,05/25/8178 +8.30543,46.98468,3592,2,25,17,45,1,3.55,5.0,fr,34871,71,1480800,1,12,Active Shallow Crust,0.0,89.98624,0.0,02/25/3592 +8.30543,46.98468,1160,11,6,12,6,48,3.55,5.0,fr,34872,23,1480800,1,12,Active Shallow Crust,0.0,89.98624,0.0,11/06/1160 +8.30543,46.98468,8437,3,1,23,10,19,3.55,5.0,fr,34873,168,1480800,1,12,Active Shallow Crust,0.0,89.98624,0.0,03/01/8437 +8.30543,46.98468,8241,8,1,18,11,56,3.55,5.0,fr,34874,164,1480800,1,12,Active Shallow Crust,0.0,89.98624,0.0,08/01/8241 +8.30543,46.98468,4074,12,15,9,8,39,3.55,5.0,fr,34875,81,1480800,1,12,Active Shallow Crust,0.0,89.98624,0.0,12/15/4074 +8.30543,46.98468,733,12,31,23,46,28,3.55,15.0,fr,34876,14,1480801,1,3,Active Shallow Crust,0.0,89.98624,0.0,12/31/0733 +8.30543,46.98468,9881,9,20,12,4,11,3.55,15.0,fr,34877,197,1480801,1,3,Active Shallow Crust,0.0,89.98624,0.0,09/20/9881 +8.30543,46.98468,4169,11,11,18,25,14,3.55,15.0,fr,34878,83,1480801,1,3,Active Shallow Crust,0.0,89.98624,0.0,11/11/4169 +8.30543,46.98468,1987,11,10,11,26,53,3.55,27.5,fr,34879,39,1480802,1,1,Active Shallow Crust,0.0,89.98624,0.0,11/10/1987 +8.30543,46.98468,2224,7,24,4,40,53,3.55,5.0,fr,34880,44,1480803,1,3,Active Shallow Crust,240.0114,57.99762,0.0,07/24/2224 +8.30543,46.98468,6302,1,3,2,41,13,3.55,5.0,fr,34881,126,1480803,1,3,Active Shallow Crust,240.0114,57.99762,0.0,01/03/6302 +8.30543,46.98468,9247,12,4,16,46,28,3.55,5.0,fr,34882,184,1480803,1,3,Active Shallow Crust,240.0114,57.99762,0.0,12/04/9247 +8.30543,46.98468,6936,12,12,14,39,53,3.55,27.5,fr,34883,138,1480805,1,1,Active Shallow Crust,240.0114,57.99752,0.0,12/12/6936 +8.30543,46.98468,1692,6,27,8,59,39,3.55,15.0,fr,34884,33,1480807,1,1,Active Shallow Crust,0.0,89.98608,-90.0,06/27/1692 +8.30543,46.98468,2819,7,6,20,13,31,3.65,5.0,fr,34885,56,1480812,1,7,Active Shallow Crust,0.0,89.98774,0.0,07/06/2819 +8.30543,46.98468,9753,12,27,2,48,17,3.65,5.0,fr,34886,195,1480812,1,7,Active Shallow Crust,0.0,89.98774,0.0,12/27/9753 +8.30543,46.98468,3840,6,25,3,16,0,3.65,5.0,fr,34887,76,1480812,1,7,Active Shallow Crust,0.0,89.98774,0.0,06/25/3840 +8.30543,46.98468,285,10,20,21,7,12,3.65,5.0,fr,34888,5,1480812,1,7,Active Shallow Crust,0.0,89.98774,0.0,10/20/0285 +8.30543,46.98468,5442,11,19,7,0,59,3.65,5.0,fr,34889,108,1480812,1,7,Active Shallow Crust,0.0,89.98774,0.0,11/19/5442 +8.30543,46.98468,8722,2,26,17,41,7,3.65,5.0,fr,34890,174,1480812,1,7,Active Shallow Crust,0.0,89.98774,0.0,02/26/8722 +8.30543,46.98468,2181,9,26,1,31,30,3.65,5.0,fr,34891,43,1480812,1,7,Active Shallow Crust,0.0,89.98774,0.0,09/26/2181 +8.30543,46.98468,2954,3,16,11,5,28,3.65,15.0,fr,34892,59,1480813,1,2,Active Shallow Crust,0.0,89.98774,0.0,03/16/2954 +8.30543,46.98468,8514,6,25,2,57,15,3.65,15.0,fr,34893,170,1480813,1,2,Active Shallow Crust,0.0,89.98774,0.0,06/25/8514 +8.30543,46.98468,3891,6,23,11,31,28,3.65,27.5,fr,34894,77,1480814,1,2,Active Shallow Crust,0.0,89.98774,0.0,06/23/3891 +8.30543,46.98468,389,8,25,21,59,28,3.65,27.5,fr,34895,7,1480814,1,2,Active Shallow Crust,0.0,89.98774,0.0,08/25/0389 +8.30543,46.98468,9113,4,27,8,45,4,3.65,27.5,fr,34896,182,1480817,1,1,Active Shallow Crust,240.003,58.01299,0.0,04/27/9113 +8.30543,46.98468,6368,6,10,8,4,31,3.65,5.0,fr,34897,127,1480818,1,2,Active Shallow Crust,0.0,89.98759,-90.0,06/10/6368 +8.30543,46.98468,9187,1,6,5,20,47,3.65,5.0,fr,34898,183,1480818,1,2,Active Shallow Crust,0.0,89.98759,-90.0,01/06/9187 +8.30543,46.98468,5654,9,20,9,46,26,3.65,15.0,fr,34899,113,1480819,1,1,Active Shallow Crust,0.0,89.98759,-90.0,09/20/5654 +8.30543,46.98468,188,12,5,2,28,19,3.65,15.0,fr,34900,3,1480822,1,1,Active Shallow Crust,128.9009,89.96353,0.0,12/05/0188 +8.30543,46.98468,801,9,10,15,26,54,3.75,5.0,fr,34901,16,1480824,1,5,Active Shallow Crust,0.0,89.98907,0.0,09/10/0801 +8.30543,46.98468,4687,7,12,20,13,57,3.75,5.0,fr,34902,93,1480824,1,5,Active Shallow Crust,0.0,89.98907,0.0,07/12/4687 +8.30543,46.98468,6282,11,18,21,36,42,3.75,5.0,fr,34903,125,1480824,1,5,Active Shallow Crust,0.0,89.98907,0.0,11/18/6282 +8.30543,46.98468,1275,1,3,8,40,15,3.75,5.0,fr,34904,25,1480824,1,5,Active Shallow Crust,0.0,89.98907,0.0,01/03/1275 +8.30543,46.98468,7355,3,5,8,56,48,3.75,5.0,fr,34905,147,1480824,1,5,Active Shallow Crust,0.0,89.98907,0.0,03/05/7355 +8.30543,46.98468,7330,12,29,2,56,46,3.75,15.0,fr,34906,146,1480825,1,2,Active Shallow Crust,0.0,89.98907,0.0,12/29/7330 +8.30543,46.98468,4021,5,3,22,34,32,3.75,15.0,fr,34907,80,1480825,1,2,Active Shallow Crust,0.0,89.98907,0.0,05/03/4021 +8.30543,46.98468,3294,4,3,8,47,37,3.75,27.5,fr,34908,65,1480829,1,1,Active Shallow Crust,240.0087,58.01798,0.0,04/03/3294 +8.30543,46.98468,8619,5,9,11,53,41,3.75,5.0,fr,34909,172,1480830,1,1,Active Shallow Crust,0.0,89.98895,-90.0,05/09/8619 +8.30543,46.98468,1288,7,4,2,24,10,3.75,15.0,fr,34910,25,1480834,1,1,Active Shallow Crust,128.8952,89.9675,0.0,07/04/1288 +8.30543,46.98468,3056,9,30,4,49,42,3.85,5.0,fr,34911,61,1480836,1,5,Active Shallow Crust,0.0,89.99026,0.0,09/30/3056 +8.30543,46.98468,7581,1,20,0,23,41,3.85,5.0,fr,34912,151,1480836,1,5,Active Shallow Crust,0.0,89.99026,0.0,01/20/7581 +8.30543,46.98468,3915,5,17,8,26,26,3.85,5.0,fr,34913,78,1480836,1,5,Active Shallow Crust,0.0,89.99026,0.0,05/17/3915 +8.30543,46.98468,3630,3,28,16,6,1,3.85,5.0,fr,34914,72,1480836,1,5,Active Shallow Crust,0.0,89.99026,0.0,03/28/3630 +8.30543,46.98468,7248,3,7,3,25,27,3.85,5.0,fr,34915,144,1480836,1,5,Active Shallow Crust,0.0,89.99026,0.0,03/07/7248 +8.30543,46.98468,205,11,29,13,58,31,3.85,15.0,fr,34916,4,1480837,1,2,Active Shallow Crust,0.0,89.99026,0.0,11/29/0205 +8.30543,46.98468,31,2,26,19,0,23,3.85,15.0,fr,34917,0,1480837,1,2,Active Shallow Crust,0.0,89.99026,0.0,02/26/0031 +8.30543,46.98468,5005,6,13,23,27,6,3.85,5.0,fr,34918,100,1480839,1,1,Active Shallow Crust,240.0111,57.9981,0.0,06/13/5005 +8.30543,46.98468,122,6,25,4,20,25,3.85,27.5,fr,34919,2,1480841,1,1,Active Shallow Crust,240.0111,57.9981,0.0,06/25/0122 +8.30543,46.98468,9999,3,28,11,36,47,3.95,5.0,fr,34920,199,1480848,1,4,Active Shallow Crust,0.0,89.99132,0.0,03/28/9999 +8.30543,46.98468,3324,1,24,12,15,3,3.95,5.0,fr,34921,66,1480848,1,4,Active Shallow Crust,0.0,89.99132,0.0,01/24/3324 +8.30543,46.98468,5470,7,12,12,5,37,3.95,5.0,fr,34922,109,1480848,1,4,Active Shallow Crust,0.0,89.99132,0.0,07/12/5470 +8.30543,46.98468,9188,2,18,18,20,34,3.95,5.0,fr,34923,183,1480848,1,4,Active Shallow Crust,0.0,89.99132,0.0,02/18/9188 +8.30543,46.98468,2534,8,22,16,53,21,3.95,15.0,fr,34924,50,1480849,1,1,Active Shallow Crust,0.0,89.99132,0.0,08/22/2534 +8.30543,46.98468,3091,3,26,16,1,7,3.95,5.0,fr,34925,61,1480851,1,1,Active Shallow Crust,240.0196,58.00582,0.0,03/26/3091 +8.30543,46.98468,9265,1,26,19,15,19,3.95,15.0,fr,34926,185,1480852,1,1,Active Shallow Crust,240.0196,58.00582,0.0,01/26/9265 +8.30543,46.98468,6544,10,15,6,14,57,4.05,5.0,fr,34927,130,1480860,1,4,Active Shallow Crust,0.0,89.99226,0.0,10/15/6544 +8.30543,46.98468,9380,9,5,14,15,40,4.05,5.0,fr,34928,187,1480860,1,4,Active Shallow Crust,0.0,89.99226,0.0,09/05/9380 +8.30543,46.98468,9617,5,24,23,31,20,4.05,5.0,fr,34929,192,1480860,1,4,Active Shallow Crust,0.0,89.99226,0.0,05/24/9617 +8.30543,46.98468,901,1,1,0,36,57,4.05,5.0,fr,34930,18,1480860,1,4,Active Shallow Crust,0.0,89.99226,0.0,01/01/0901 +8.30543,46.98468,7107,10,9,7,3,59,4.05,15.0,fr,34931,142,1480861,1,1,Active Shallow Crust,0.0,89.99226,0.0,10/09/7107 +8.30543,46.98468,9175,11,9,20,57,56,4.05,5.0,fr,34932,183,1480863,1,1,Active Shallow Crust,240.006,58.00612,0.0,11/09/9175 +8.30543,46.98468,3271,6,13,21,20,9,4.15,5.0,fr,34933,65,1480872,1,3,Active Shallow Crust,0.0,89.9931,0.0,06/13/3271 +8.30543,46.98468,4414,10,11,7,26,19,4.15,5.0,fr,34934,88,1480872,1,3,Active Shallow Crust,0.0,89.9931,0.0,10/11/4414 +8.30543,46.98468,2119,3,28,9,23,42,4.15,5.0,fr,34935,42,1480872,1,3,Active Shallow Crust,0.0,89.9931,0.0,03/28/2119 +8.30543,46.98468,357,11,23,16,5,34,4.15,15.0,fr,34936,7,1480873,1,1,Active Shallow Crust,0.0,89.9931,0.0,11/23/0357 +8.30543,46.98468,5178,4,24,0,33,57,4.15,27.5,fr,34937,103,1480877,1,1,Active Shallow Crust,240.0084,57.99722,0.0,04/24/5178 +8.30543,46.98468,6091,8,29,23,37,34,4.15,5.0,fr,34938,121,1480878,1,1,Active Shallow Crust,0.0,89.99303,-90.0,08/29/6091 +8.30543,46.98468,3124,5,9,13,42,26,4.15,5.0,fr,34939,62,1480881,1,1,Active Shallow Crust,128.899,89.9931,0.0,05/09/3124 +8.30543,46.98468,6522,12,29,7,17,3,4.25,15.0,fr,34940,130,1480885,1,1,Active Shallow Crust,0.0,89.98771,0.0,12/29/6522 +8.30543,46.98468,5649,6,5,19,20,53,4.25,5.0,fr,34941,112,1480887,1,1,Active Shallow Crust,240.0074,57.99425,0.0,06/05/5649 +8.30543,46.98468,3237,10,14,14,14,11,4.25,5.0,fr,34942,64,1480890,1,1,Active Shallow Crust,0.0,89.98756,-90.0,10/14/3237 +8.30543,46.98468,5256,4,27,20,29,45,4.25,5.0,fr,34943,105,1480893,1,1,Active Shallow Crust,128.8958,89.98096,0.0,04/27/5256 +8.30543,46.98468,3218,6,30,17,40,15,4.35,15.0,fr,34944,64,1480897,1,1,Active Shallow Crust,0.0,89.98904,0.0,06/30/3218 +8.30543,46.98468,2224,3,16,0,57,13,4.35,15.0,fr,34945,44,1480903,1,1,Active Shallow Crust,0.0,89.98891,-90.0,03/16/2224 +8.30543,46.98468,591,10,2,22,55,35,4.45,15.0,fr,34946,11,1480909,1,1,Active Shallow Crust,0.0,89.99023,0.0,10/02/0591 +8.30543,46.98468,3691,12,30,9,5,14,4.45,15.0,fr,34947,73,1480918,1,1,Active Shallow Crust,128.8926,89.99268,0.0,12/30/3691 +8.30543,46.98468,5390,1,15,3,36,40,4.55,15.0,fr,34948,107,1480921,1,1,Active Shallow Crust,0.0,89.99129,0.0,01/15/5390 +8.30543,46.98468,9457,6,30,6,14,24,4.55,5.0,fr,34949,189,1480929,1,1,Active Shallow Crust,128.8931,89.98567,0.0,06/30/9457 +8.30543,46.98468,1133,1,17,18,17,57,4.65,5.0,fr,34950,22,1480932,1,1,Active Shallow Crust,0.0,89.98837,0.0,01/17/1133 +8.30543,46.98468,4794,10,5,10,9,24,4.65,15.0,fr,34951,95,1480933,1,1,Active Shallow Crust,0.0,89.98837,0.0,10/05/4794 +8.30543,46.98468,2863,12,24,19,2,38,4.65,5.0,fr,34952,57,1480941,1,1,Active Shallow Crust,128.8906,89.98723,0.0,12/24/2863 +8.30543,46.98468,7218,3,10,9,26,52,4.75,5.0,fr,34953,144,1480944,1,1,Active Shallow Crust,0.0,89.98963,0.0,03/10/7218 +8.30543,46.98468,9934,12,15,23,23,1,4.75,27.5,fr,34954,198,1480949,1,1,Active Shallow Crust,240.0084,58.00388,0.0,12/15/9934 +8.30543,46.98468,9714,8,20,16,3,15,4.95,27.5,fr,34955,194,1480970,1,1,Active Shallow Crust,0.0,89.98901,0.0,08/20/9714 +8.30543,46.98468,6458,7,4,6,10,42,5.05,15.0,fr,34956,129,1480981,1,1,Active Shallow Crust,0.0,89.99021,0.0,07/04/6458 +8.30543,46.98468,8373,8,4,6,29,10,5.05,5.0,fr,34957,167,1480983,1,1,Active Shallow Crust,240.0223,57.99755,0.0,08/04/8373 +8.305408,46.98468,4559,10,24,21,49,43,7.05,18.05779,fr,34958,91,1481222,1,1,Active Shallow Crust,0.0,89.98994,0.0,10/24/4559 +6.84826,46.9496,9442,10,29,0,0,54,3.55,5.0,fr,34959,188,1482240,1,10,Active Shallow Crust,0.0,89.99312,0.0,10/29/9442 +6.84826,46.9496,2308,2,7,9,7,27,3.55,5.0,fr,34960,46,1482240,1,10,Active Shallow Crust,0.0,89.99312,0.0,02/07/2308 +6.84826,46.9496,3658,10,29,3,10,25,3.55,5.0,fr,34961,73,1482240,1,10,Active Shallow Crust,0.0,89.99312,0.0,10/29/3658 +6.84826,46.9496,3985,7,27,7,34,6,3.55,5.0,fr,34962,79,1482240,1,10,Active Shallow Crust,0.0,89.99312,0.0,07/27/3985 +6.84826,46.9496,3834,4,1,1,14,17,3.55,5.0,fr,34963,76,1482240,1,10,Active Shallow Crust,0.0,89.99312,0.0,04/01/3834 +6.84826,46.9496,4311,1,26,9,47,29,3.55,5.0,fr,34964,86,1482240,1,10,Active Shallow Crust,0.0,89.99312,0.0,01/26/4311 +6.84826,46.9496,7775,11,22,1,8,30,3.55,5.0,fr,34965,155,1482240,1,10,Active Shallow Crust,0.0,89.99312,0.0,11/22/7775 +6.84826,46.9496,8141,3,20,20,43,27,3.55,5.0,fr,34966,162,1482240,1,10,Active Shallow Crust,0.0,89.99312,0.0,03/20/8141 +6.84826,46.9496,1677,5,2,16,39,11,3.55,5.0,fr,34967,33,1482240,1,10,Active Shallow Crust,0.0,89.99312,0.0,05/02/1677 +6.84826,46.9496,5308,10,19,7,11,6,3.55,5.0,fr,34968,106,1482240,1,10,Active Shallow Crust,0.0,89.99312,0.0,10/19/5308 +6.84826,46.9496,2048,8,4,19,13,6,3.55,15.0,fr,34969,40,1482241,1,2,Active Shallow Crust,0.0,89.99312,0.0,08/04/2048 +6.84826,46.9496,2594,2,26,5,55,17,3.55,15.0,fr,34970,51,1482241,1,2,Active Shallow Crust,0.0,89.99312,0.0,02/26/2594 +6.84826,46.9496,5705,2,23,5,5,52,3.55,27.5,fr,34971,114,1482242,1,2,Active Shallow Crust,0.0,89.99312,0.0,02/23/5705 +6.84826,46.9496,3644,8,1,19,12,48,3.55,27.5,fr,34972,72,1482242,1,2,Active Shallow Crust,0.0,89.99312,0.0,08/01/3644 +6.84826,46.9496,5322,9,1,20,18,23,3.55,5.0,fr,34973,106,1482243,1,1,Active Shallow Crust,240.0121,57.99777,0.0,09/01/5322 +6.84826,46.9496,2192,10,3,5,6,40,3.55,15.0,fr,34974,43,1482244,1,1,Active Shallow Crust,240.0121,57.99777,0.0,10/03/2192 +6.84826,46.9496,9090,1,18,16,15,10,3.55,15.0,fr,34975,181,1482247,1,2,Active Shallow Crust,0.0,89.99303,-90.0,01/18/9090 +6.84826,46.9496,8486,2,3,5,59,41,3.55,15.0,fr,34976,169,1482247,1,2,Active Shallow Crust,0.0,89.99303,-90.0,02/03/8486 +6.84826,46.9496,6522,4,3,13,28,49,3.55,27.5,fr,34977,130,1482248,1,1,Active Shallow Crust,0.0,89.99303,-90.0,04/03/6522 +6.84826,46.9496,3582,12,27,6,35,29,3.65,5.0,fr,34978,71,1482252,1,7,Active Shallow Crust,0.0,89.98773,0.0,12/27/3582 +6.84826,46.9496,265,3,13,5,48,24,3.65,5.0,fr,34979,5,1482252,1,7,Active Shallow Crust,0.0,89.98773,0.0,03/13/0265 +6.84826,46.9496,800,1,1,3,1,28,3.65,5.0,fr,34980,15,1482252,1,7,Active Shallow Crust,0.0,89.98773,0.0,01/01/0800 +6.84826,46.9496,3619,4,13,5,32,44,3.65,5.0,fr,34981,72,1482252,1,7,Active Shallow Crust,0.0,89.98773,0.0,04/13/3619 +6.84826,46.9496,7181,11,22,1,31,16,3.65,5.0,fr,34982,143,1482252,1,7,Active Shallow Crust,0.0,89.98773,0.0,11/22/7181 +6.84826,46.9496,6877,11,24,0,48,40,3.65,5.0,fr,34983,137,1482252,1,7,Active Shallow Crust,0.0,89.98773,0.0,11/24/6877 +6.84826,46.9496,3954,2,5,21,0,44,3.65,5.0,fr,34984,79,1482252,1,7,Active Shallow Crust,0.0,89.98773,0.0,02/05/3954 +6.84826,46.9496,4950,10,17,15,56,59,3.65,15.0,fr,34985,98,1482253,1,2,Active Shallow Crust,0.0,89.98773,0.0,10/17/4950 +6.84826,46.9496,1082,5,11,16,57,31,3.65,15.0,fr,34986,21,1482253,1,2,Active Shallow Crust,0.0,89.98773,0.0,05/11/1082 +6.84826,46.9496,6310,1,10,9,1,37,3.65,15.0,fr,34987,126,1482256,1,1,Active Shallow Crust,240.0009,58.01275,0.0,01/10/6310 +6.84826,46.9496,3462,8,27,19,45,27,3.65,5.0,fr,34988,69,1482258,1,2,Active Shallow Crust,0.0,89.98759,-90.0,08/27/3462 +6.84826,46.9496,3045,10,23,5,39,26,3.65,5.0,fr,34989,60,1482258,1,2,Active Shallow Crust,0.0,89.98759,-90.0,10/23/3045 +6.84826,46.9496,9525,2,27,5,37,40,3.75,5.0,fr,34990,190,1482264,1,10,Active Shallow Crust,0.0,89.98907,0.0,02/27/9525 +6.84826,46.9496,5588,11,15,7,29,41,3.75,5.0,fr,34991,111,1482264,1,10,Active Shallow Crust,0.0,89.98907,0.0,11/15/5588 +6.84826,46.9496,3750,3,13,11,59,39,3.75,5.0,fr,34992,74,1482264,1,10,Active Shallow Crust,0.0,89.98907,0.0,03/13/3750 +6.84826,46.9496,1838,3,10,10,26,4,3.75,5.0,fr,34993,36,1482264,1,10,Active Shallow Crust,0.0,89.98907,0.0,03/10/1838 +6.84826,46.9496,639,4,9,0,17,11,3.75,5.0,fr,34994,12,1482264,1,10,Active Shallow Crust,0.0,89.98907,0.0,04/09/0639 +6.84826,46.9496,6577,7,28,0,39,35,3.75,5.0,fr,34995,131,1482264,1,10,Active Shallow Crust,0.0,89.98907,0.0,07/28/6577 +6.84826,46.9496,2081,9,7,7,3,40,3.75,5.0,fr,34996,41,1482264,1,10,Active Shallow Crust,0.0,89.98907,0.0,09/07/2081 +6.84826,46.9496,7882,3,25,12,15,28,3.75,5.0,fr,34997,157,1482264,1,10,Active Shallow Crust,0.0,89.98907,0.0,03/25/7882 +6.84826,46.9496,8788,1,10,4,54,47,3.75,5.0,fr,34998,175,1482264,1,10,Active Shallow Crust,0.0,89.98907,0.0,01/10/8788 +6.84826,46.9496,5964,11,9,4,39,14,3.75,5.0,fr,34999,119,1482264,1,10,Active Shallow Crust,0.0,89.98907,0.0,11/09/5964 +6.84826,46.9496,7636,10,13,9,31,42,3.75,15.0,fr,35000,152,1482265,1,3,Active Shallow Crust,0.0,89.98907,0.0,10/13/7636 +6.84826,46.9496,2148,1,16,18,21,6,3.75,15.0,fr,35001,42,1482265,1,3,Active Shallow Crust,0.0,89.98907,0.0,01/16/2148 +6.84826,46.9496,2844,12,2,9,30,1,3.75,15.0,fr,35002,56,1482265,1,3,Active Shallow Crust,0.0,89.98907,0.0,12/02/2844 +6.84826,46.9496,6485,11,8,8,43,45,3.75,27.5,fr,35003,129,1482266,1,1,Active Shallow Crust,0.0,89.98907,0.0,11/08/6485 +6.84826,46.9496,116,6,28,7,14,38,3.75,5.0,fr,35004,2,1482267,1,2,Active Shallow Crust,240.0085,58.01723,0.0,06/28/0116 +6.84826,46.9496,9976,5,31,9,42,31,3.75,5.0,fr,35005,199,1482267,1,2,Active Shallow Crust,240.0085,58.01723,0.0,05/31/9976 +6.84826,46.9496,2656,10,23,23,23,59,3.75,5.0,fr,35006,53,1482270,1,1,Active Shallow Crust,0.0,89.98894,-90.0,10/23/2656 +6.84826,46.9496,8305,7,28,2,8,53,3.75,5.0,fr,35007,166,1482273,1,2,Active Shallow Crust,128.8974,89.96693,0.0,07/28/8305 +6.84826,46.9496,9889,7,7,12,2,1,3.75,5.0,fr,35008,197,1482273,1,2,Active Shallow Crust,128.8974,89.96693,0.0,07/07/9889 +6.84826,46.9496,7194,3,2,10,2,6,3.75,15.0,fr,35009,143,1482274,1,2,Active Shallow Crust,128.8974,89.96693,0.0,03/02/7194 +6.84826,46.9496,9819,7,1,4,33,5,3.75,15.0,fr,35010,196,1482274,1,2,Active Shallow Crust,128.8974,89.96693,0.0,07/01/9819 +6.84826,46.9496,7392,9,4,0,1,33,3.85,5.0,fr,35011,147,1482276,1,6,Active Shallow Crust,0.0,89.99025,0.0,09/04/7392 +6.84826,46.9496,8144,8,23,1,39,7,3.85,5.0,fr,35012,162,1482276,1,6,Active Shallow Crust,0.0,89.99025,0.0,08/23/8144 +6.84826,46.9496,8790,3,6,11,30,18,3.85,5.0,fr,35013,175,1482276,1,6,Active Shallow Crust,0.0,89.99025,0.0,03/06/8790 +6.84826,46.9496,5278,10,26,22,26,29,3.85,5.0,fr,35014,105,1482276,1,6,Active Shallow Crust,0.0,89.99025,0.0,10/26/5278 +6.84826,46.9496,3740,5,2,12,40,49,3.85,5.0,fr,35015,74,1482276,1,6,Active Shallow Crust,0.0,89.99025,0.0,05/02/3740 +6.84826,46.9496,8564,8,7,16,16,16,3.85,5.0,fr,35016,171,1482276,1,6,Active Shallow Crust,0.0,89.99025,0.0,08/07/8564 +6.84826,46.9496,26,2,10,1,9,30,3.85,15.0,fr,35017,0,1482277,1,1,Active Shallow Crust,0.0,89.99025,0.0,02/10/0026 +6.84826,46.9496,6614,7,27,20,37,21,3.85,5.0,fr,35018,132,1482279,1,1,Active Shallow Crust,240.0115,57.998,0.0,07/27/6614 +6.84826,46.9496,4369,11,9,20,24,42,3.85,15.0,fr,35019,87,1482280,1,2,Active Shallow Crust,240.0115,57.998,0.0,11/09/4369 +6.84826,46.9496,7152,10,2,5,10,55,3.85,15.0,fr,35020,143,1482280,1,2,Active Shallow Crust,240.0115,57.998,0.0,10/02/7152 +6.84826,46.9496,542,10,26,21,58,4,3.95,5.0,fr,35021,10,1482288,1,1,Active Shallow Crust,0.0,89.99131,0.0,10/26/0542 +6.84826,46.9496,3891,7,15,14,36,31,3.95,15.0,fr,35022,77,1482289,1,1,Active Shallow Crust,0.0,89.99131,0.0,07/15/3891 +6.84826,46.9496,9187,11,27,14,28,1,3.95,5.0,fr,35023,183,1482291,1,2,Active Shallow Crust,240.0196,58.00528,0.0,11/27/9187 +6.84826,46.9496,2455,12,15,12,10,10,3.95,5.0,fr,35024,49,1482291,1,2,Active Shallow Crust,240.0196,58.00528,0.0,12/15/2455 +6.84826,46.9496,8968,8,21,14,34,0,3.95,5.0,fr,35025,179,1482294,1,2,Active Shallow Crust,0.0,89.99121,-90.0,08/21/8968 +6.84826,46.9496,3987,1,16,8,49,56,3.95,5.0,fr,35026,79,1482294,1,2,Active Shallow Crust,0.0,89.99121,-90.0,01/16/3987 +6.84826,46.9496,6103,8,27,11,30,1,3.95,15.0,fr,35027,122,1482298,1,1,Active Shallow Crust,128.8999,89.99348,0.0,08/27/6103 +6.84826,46.9496,3331,1,2,6,27,7,4.05,5.0,fr,35028,66,1482300,1,2,Active Shallow Crust,0.0,89.98839,0.0,01/02/3331 +6.84826,46.9496,4395,3,17,23,12,33,4.05,5.0,fr,35029,87,1482300,1,2,Active Shallow Crust,0.0,89.98839,0.0,03/17/4395 +6.84826,46.9496,5362,9,11,20,32,12,4.05,15.0,fr,35030,107,1482301,1,1,Active Shallow Crust,0.0,89.98839,0.0,09/11/5362 +6.84826,46.9496,5263,4,23,8,13,16,4.05,5.0,fr,35031,105,1482303,1,1,Active Shallow Crust,240.0058,58.006,0.0,04/23/5263 +6.84826,46.9496,3239,10,18,1,30,14,4.05,15.0,fr,35032,64,1482304,1,1,Active Shallow Crust,240.0058,58.00598,0.0,10/18/3239 +6.84826,46.9496,5768,9,22,6,26,23,4.05,15.0,fr,35033,115,1482310,1,1,Active Shallow Crust,128.8895,89.99419,0.0,09/22/5768 +6.84826,46.9496,7733,1,23,1,30,45,4.15,5.0,fr,35034,154,1482312,1,6,Active Shallow Crust,0.0,89.98965,0.0,01/23/7733 +6.84826,46.9496,5844,8,1,23,35,6,4.15,5.0,fr,35035,116,1482312,1,6,Active Shallow Crust,0.0,89.98965,0.0,08/01/5844 +6.84826,46.9496,7271,3,27,12,11,28,4.15,5.0,fr,35036,145,1482312,1,6,Active Shallow Crust,0.0,89.98965,0.0,03/27/7271 +6.84826,46.9496,990,11,12,11,44,26,4.15,5.0,fr,35037,19,1482312,1,6,Active Shallow Crust,0.0,89.98965,0.0,11/12/0990 +6.84826,46.9496,3121,7,25,20,30,2,4.15,5.0,fr,35038,62,1482312,1,6,Active Shallow Crust,0.0,89.98965,0.0,07/25/3121 +6.84826,46.9496,2003,2,6,23,1,17,4.15,5.0,fr,35039,40,1482312,1,6,Active Shallow Crust,0.0,89.98965,0.0,02/06/2003 +6.84826,46.9496,6870,7,18,20,2,44,4.15,15.0,fr,35040,137,1482313,1,1,Active Shallow Crust,0.0,89.98965,0.0,07/18/6870 +6.84826,46.9496,1542,7,17,14,42,31,4.15,27.5,fr,35041,30,1482314,1,1,Active Shallow Crust,0.0,89.98965,0.0,07/17/1542 +6.84826,46.9496,8572,9,17,2,30,59,4.15,5.0,fr,35042,171,1482315,1,2,Active Shallow Crust,240.0091,57.99741,0.0,09/17/8572 +6.84826,46.9496,2288,2,2,18,55,35,4.15,5.0,fr,35043,45,1482315,1,2,Active Shallow Crust,240.0091,57.99741,0.0,02/02/2288 +6.84826,46.9496,5055,8,28,5,27,24,4.15,5.0,fr,35044,101,1482318,1,2,Active Shallow Crust,0.0,89.98953,-90.0,08/28/5055 +6.84826,46.9496,5449,5,25,6,33,3,4.15,5.0,fr,35045,108,1482318,1,2,Active Shallow Crust,0.0,89.98953,-90.0,05/25/5449 +6.84826,46.9496,3757,10,18,10,31,54,4.25,5.0,fr,35046,75,1482324,1,3,Active Shallow Crust,0.0,89.99078,0.0,10/18/3757 +6.84826,46.9496,3660,9,15,22,59,25,4.25,5.0,fr,35047,73,1482324,1,3,Active Shallow Crust,0.0,89.99078,0.0,09/15/3660 +6.84826,46.9496,5201,8,1,2,15,45,4.25,5.0,fr,35048,104,1482324,1,3,Active Shallow Crust,0.0,89.99078,0.0,08/01/5201 +6.84826,46.9496,6182,3,29,1,45,49,4.25,5.0,fr,35049,123,1482333,1,2,Active Shallow Crust,128.8949,89.98096,0.0,03/29/6182 +6.84826,46.9496,7520,3,20,20,39,38,4.25,5.0,fr,35050,150,1482333,1,2,Active Shallow Crust,128.8949,89.98096,0.0,03/20/7520 +6.84826,46.9496,4948,11,14,18,16,40,4.35,5.0,fr,35051,98,1482336,1,2,Active Shallow Crust,0.0,89.98904,0.0,11/14/4948 +6.84826,46.9496,3936,12,13,6,48,3,4.35,5.0,fr,35052,78,1482336,1,2,Active Shallow Crust,0.0,89.98904,0.0,12/13/3936 +6.84826,46.9496,1375,10,25,10,18,20,4.35,15.0,fr,35053,27,1482337,1,1,Active Shallow Crust,0.0,89.98904,0.0,10/25/1375 +6.84826,46.9496,8134,8,12,10,39,15,4.35,27.5,fr,35054,162,1482341,1,1,Active Shallow Crust,240.0084,57.99619,0.0,08/12/8134 +6.84826,46.9496,6416,9,8,2,36,4,4.35,5.0,fr,35055,128,1482345,1,1,Active Shallow Crust,128.8975,89.98303,0.0,09/08/6416 +6.84826,46.9496,9612,2,7,23,27,29,4.45,5.0,fr,35056,192,1482348,1,2,Active Shallow Crust,0.0,89.99023,0.0,02/07/9612 +6.84826,46.9496,379,3,8,6,31,20,4.45,5.0,fr,35057,7,1482348,1,2,Active Shallow Crust,0.0,89.99023,0.0,03/08/0379 +6.84826,46.9496,8445,8,18,10,2,33,4.45,15.0,fr,35058,168,1482349,1,1,Active Shallow Crust,0.0,89.99023,0.0,08/18/8445 +6.84826,46.9496,2868,2,21,23,32,5,4.45,5.0,fr,35059,57,1482357,1,1,Active Shallow Crust,128.8926,89.99268,0.0,02/21/2868 +6.84826,46.9496,3910,8,28,11,55,31,4.55,5.0,fr,35060,78,1482369,1,1,Active Shallow Crust,128.8939,89.98567,0.0,08/28/3910 +6.84826,46.9496,6576,5,31,12,19,27,4.65,15.0,fr,35061,131,1482373,1,1,Active Shallow Crust,0.0,89.9903,0.0,05/31/6576 +6.84826,46.9496,21,6,15,0,34,15,4.65,5.0,fr,35062,0,1482381,1,2,Active Shallow Crust,128.8912,89.98723,0.0,06/15/0021 +6.84826,46.9496,5098,10,28,6,52,14,4.65,5.0,fr,35063,101,1482381,1,2,Active Shallow Crust,128.8912,89.98723,0.0,10/28/5098 +6.84826,46.9496,2460,12,7,19,34,7,4.75,5.0,fr,35064,49,1482384,1,1,Active Shallow Crust,0.0,89.98962,0.0,12/07/2460 +6.84826,46.9496,5401,4,1,19,24,10,4.85,5.0,fr,35065,108,1482405,1,1,Active Shallow Crust,128.8924,89.98907,0.0,04/01/5401 +6.84826,46.9496,6783,3,6,3,25,4,4.95,27.5,fr,35066,135,1482413,1,1,Active Shallow Crust,240.0122,58.00437,0.0,03/06/6783 +6.84826,46.9496,9832,8,23,2,54,22,5.05,15.0,fr,35067,196,1482427,1,1,Active Shallow Crust,0.0,89.99009,-90.0,08/23/9832 +6.84826,46.9496,1344,9,16,16,45,3,5.15,5.0,fr,35068,26,1482432,1,1,Active Shallow Crust,0.0,89.99018,0.0,09/16/1344 +6.84826,46.9496,7659,8,24,2,37,49,5.15,15.0,fr,35069,153,1482433,1,1,Active Shallow Crust,0.0,89.99018,0.0,08/24/7659 +6.84826,46.9496,7275,9,21,9,26,27,5.15,5.0,fr,35070,145,1482441,1,1,Active Shallow Crust,128.8832,89.99123,0.0,09/21/7275 +6.84826,46.9496,2664,1,14,4,17,30,5.35,5.0,fr,35071,53,1482456,1,1,Active Shallow Crust,0.0,89.98959,0.0,01/14/2664 +6.84826,46.9496,4565,5,8,15,25,10,5.65,5.0,fr,35072,91,1482492,1,1,Active Shallow Crust,0.0,89.99018,0.0,05/08/4565 +6.84826,46.9496,2293,12,10,16,55,54,5.75,15.0,fr,35073,45,1482505,1,1,Active Shallow Crust,0.0,89.99015,0.0,12/10/2293 +1.29321,43.69404,8175,7,27,1,13,42,3.55,15.0,fr,35074,163,1482721,1,1,Active Shallow Crust,0.0,89.99088,0.0,07/27/8175 +1.29321,43.69404,4844,8,17,16,6,38,3.65,5.0,fr,35075,96,1482732,1,1,Active Shallow Crust,0.0,89.99025,0.0,08/17/4844 +1.29321,43.69404,6954,11,15,7,50,0,3.85,5.0,fr,35076,139,1482765,1,1,Active Shallow Crust,128.8959,89.99355,0.0,11/15/6954 +-1.65324,41.89101,2458,2,14,8,16,57,3.55,15.0,fr,35077,49,1483201,1,1,Active Shallow Crust,0.0,89.99062,0.0,02/14/2458 +-1.65324,41.89101,1614,12,20,6,9,46,3.95,5.0,fr,35078,32,1483251,1,1,Active Shallow Crust,240.0192,58.00493,0.0,12/20/1614 +-1.65324,41.89101,9184,11,29,0,9,54,4.35,5.0,fr,35079,183,1483296,1,1,Active Shallow Crust,0.0,89.99029,0.0,11/29/9184 +-1.65324,41.89101,8247,4,11,19,10,55,4.95,15.0,fr,35080,164,1483375,1,1,Active Shallow Crust,0.0,89.99015,-90.0,04/11/8247 +1.49399,49.04709,3255,7,6,7,15,35,3.95,5.0,fr,35081,65,1483734,1,1,Active Shallow Crust,0.0,89.99051,-90.0,07/06/3255 +1.49399,49.04709,4964,5,4,8,48,36,4.55,5.0,fr,35082,99,1483803,1,1,Active Shallow Crust,240.01,57.99753,0.0,05/04/4964 +1.49399,49.04709,9191,1,29,19,5,19,4.95,5.0,fr,35083,183,1483848,1,1,Active Shallow Crust,0.0,89.9901,0.0,01/29/9191 +7.16124,45.55517,5040,2,5,15,35,7,3.55,5.0,fr,35084,100,1484160,1,2,Active Shallow Crust,0.0,89.99294,0.0,02/05/5040 +7.16124,45.55517,4025,5,11,17,37,34,3.55,5.0,fr,35085,80,1484160,1,2,Active Shallow Crust,0.0,89.99294,0.0,05/11/4025 +7.16124,45.55517,5925,6,12,1,27,45,3.65,5.0,fr,35086,118,1484172,1,1,Active Shallow Crust,0.0,89.98741,0.0,06/12/5925 +7.16124,45.55517,5436,1,11,19,36,15,3.65,15.0,fr,35087,108,1484176,1,1,Active Shallow Crust,240.0009,58.0124,0.0,01/11/5436 +7.16124,45.55517,1547,12,18,7,42,40,3.65,15.0,fr,35088,30,1484179,1,1,Active Shallow Crust,0.0,89.98727,-90.0,12/18/1547 +7.16124,45.55517,1757,3,7,21,57,2,3.75,5.0,fr,35089,35,1484187,1,1,Active Shallow Crust,240.0079,58.01791,0.0,03/07/1757 +7.16124,45.55517,127,6,25,23,24,54,3.75,5.0,fr,35090,2,1484190,1,1,Active Shallow Crust,0.0,89.98866,-90.0,06/25/0127 +7.16124,45.55517,6496,6,23,17,33,49,3.75,5.0,fr,35091,129,1484193,1,1,Active Shallow Crust,128.8967,89.96748,0.0,06/23/6496 +7.16124,45.55517,8542,7,1,15,43,31,4.15,15.0,fr,35092,170,1484233,1,1,Active Shallow Crust,0.0,89.98938,0.0,07/01/8542 +7.16124,45.55517,5932,10,16,18,24,9,4.45,15.0,fr,35093,118,1484269,1,1,Active Shallow Crust,0.0,89.98997,0.0,10/16/5932 +7.16124,45.55517,2552,12,18,21,0,44,5.45,5.0,fr,35094,51,1484388,1,1,Active Shallow Crust,0.0,89.9897,0.0,12/18/2552 +7.25169,45.69666,9687,3,12,0,54,50,3.55,5.0,fr,35095,193,1484640,1,1,Active Shallow Crust,0.0,89.99296,0.0,03/12/9687 +7.25169,45.69666,9819,1,11,13,47,51,3.55,27.5,fr,35096,196,1484642,1,1,Active Shallow Crust,0.0,89.99296,0.0,01/11/9819 +7.25169,45.69666,7404,7,8,21,53,17,3.55,15.0,fr,35097,148,1484647,1,1,Active Shallow Crust,0.0,89.99287,-90.0,07/08/7404 +7.25169,45.69666,6064,12,1,5,50,30,3.65,5.0,fr,35098,121,1484652,1,2,Active Shallow Crust,0.0,89.98744,0.0,12/01/6064 +7.25169,45.69666,7131,11,16,11,46,8,3.65,5.0,fr,35099,142,1484652,1,2,Active Shallow Crust,0.0,89.98744,0.0,11/16/7131 +7.25169,45.69666,9949,3,2,0,34,52,3.75,15.0,fr,35100,198,1484665,1,1,Active Shallow Crust,0.0,89.98881,0.0,03/02/9949 +7.25169,45.69666,1910,5,21,18,36,46,4.05,5.0,fr,35101,38,1484700,1,2,Active Shallow Crust,0.0,89.98812,0.0,05/21/1910 +7.25169,45.69666,7744,4,30,0,45,22,4.05,5.0,fr,35102,154,1484700,1,2,Active Shallow Crust,0.0,89.98812,0.0,04/30/7744 +7.25169,45.69666,1760,12,31,21,10,11,4.45,5.0,fr,35103,35,1484754,1,1,Active Shallow Crust,0.0,89.98989,-90.0,12/31/1760 +4.21594,44.91099,7418,1,6,5,33,37,3.55,5.0,fr,35104,148,1485600,1,1,Active Shallow Crust,0.0,89.99286,0.0,01/06/7418 +4.21594,44.91099,5290,12,17,15,29,39,3.55,5.0,fr,35105,105,1485603,1,1,Active Shallow Crust,240.0108,57.99894,0.0,12/17/5290 +4.21594,44.91099,6151,7,17,14,0,15,3.65,27.5,fr,35106,123,1485614,1,1,Active Shallow Crust,0.0,89.98727,0.0,07/17/6151 +4.21594,44.91099,7236,4,2,11,54,30,4.15,5.0,fr,35107,144,1485672,1,1,Active Shallow Crust,0.0,89.98927,0.0,04/02/7236 +4.21594,44.91099,5005,1,19,5,57,29,4.15,15.0,fr,35108,100,1485673,1,1,Active Shallow Crust,0.0,89.98927,0.0,01/19/5005 +4.21594,44.91099,678,11,9,14,28,59,4.25,5.0,fr,35109,13,1485687,1,1,Active Shallow Crust,240.0071,57.99364,0.0,11/09/0678 +4.21594,44.91099,2555,6,3,17,56,48,4.95,5.0,fr,35110,51,1485768,1,1,Active Shallow Crust,0.0,89.99002,0.0,06/03/2555 +4.21594,44.91099,8918,4,24,0,28,53,4.95,5.0,fr,35111,178,1485774,1,1,Active Shallow Crust,0.0,89.98991,-90.0,04/24/8918 +-3.96594,49.06765,1263,4,22,19,8,59,3.65,5.0,fr,35112,25,1486572,1,1,Active Shallow Crust,0.0,89.99117,0.0,04/22/1263 +-3.96594,49.06765,3579,2,10,15,50,5,4.15,5.0,fr,35113,71,1486635,1,1,Active Shallow Crust,240.0089,57.99745,0.0,02/10/3579 +-3.96594,49.06765,4982,1,5,10,18,21,4.15,27.5,fr,35114,99,1486637,1,1,Active Shallow Crust,240.0089,57.99742,0.0,01/05/4982 +-3.96594,49.06765,9263,3,9,8,21,53,4.25,5.0,fr,35115,185,1486644,1,1,Active Shallow Crust,0.0,89.98967,0.0,03/09/9263 +7.95089,50.36677,1713,10,31,15,15,55,3.55,5.0,fr,35116,34,1487040,1,4,Active Shallow Crust,0.0,89.98714,0.0,10/31/1713 +7.95089,50.36677,3579,5,24,15,59,46,3.55,5.0,fr,35117,71,1487040,1,4,Active Shallow Crust,0.0,89.98714,0.0,05/24/3579 +7.95089,50.36677,7175,12,14,0,21,37,3.55,5.0,fr,35118,143,1487040,1,4,Active Shallow Crust,0.0,89.98714,0.0,12/14/7175 +7.95089,50.36677,3287,9,11,22,59,20,3.55,5.0,fr,35119,65,1487040,1,4,Active Shallow Crust,0.0,89.98714,0.0,09/11/3287 +7.95089,50.36677,7670,7,19,18,51,42,3.55,27.5,fr,35120,153,1487042,1,1,Active Shallow Crust,0.0,89.98714,0.0,07/19/7670 +7.95089,50.36677,4721,4,23,17,35,41,3.55,5.0,fr,35121,94,1487043,1,1,Active Shallow Crust,240.0127,57.99861,0.0,04/23/4721 +7.95089,50.36677,2651,8,16,1,42,20,3.55,5.0,fr,35122,53,1487049,1,1,Active Shallow Crust,128.8964,89.99357,0.0,08/16/2651 +7.95089,50.36677,5646,12,14,6,44,4,3.75,5.0,fr,35123,112,1487064,1,1,Active Shallow Crust,0.0,89.98978,0.0,12/14/5646 +7.95089,50.36677,7726,4,14,23,1,45,3.85,15.0,fr,35124,154,1487077,1,2,Active Shallow Crust,0.0,89.99089,0.0,04/14/7726 +7.95089,50.36677,6992,6,4,16,19,49,3.85,15.0,fr,35125,139,1487077,1,2,Active Shallow Crust,0.0,89.99089,0.0,06/04/6992 +7.95089,50.36677,6875,12,8,6,4,11,3.85,27.5,fr,35126,137,1487078,1,1,Active Shallow Crust,0.0,89.99089,0.0,12/08/6875 +7.95089,50.36677,1643,1,7,2,27,26,3.85,5.0,fr,35127,32,1487082,1,1,Active Shallow Crust,0.0,89.99078,-90.0,01/07/1643 +7.95089,50.36677,9872,6,3,12,19,25,3.85,15.0,fr,35128,197,1487083,1,2,Active Shallow Crust,0.0,89.99078,-90.0,06/03/9872 +7.95089,50.36677,9366,10,23,22,26,46,3.85,15.0,fr,35129,187,1487083,1,2,Active Shallow Crust,0.0,89.99078,-90.0,10/23/9366 +7.95089,50.36677,8669,5,22,11,15,4,3.95,15.0,fr,35130,173,1487089,1,1,Active Shallow Crust,0.0,89.99188,0.0,05/22/8669 +7.95089,50.36677,8615,2,22,12,38,15,4.05,5.0,fr,35131,172,1487100,1,1,Active Shallow Crust,0.0,89.98915,0.0,02/22/8615 +7.95089,50.36677,7164,1,14,5,37,32,4.15,5.0,fr,35132,143,1487112,1,1,Active Shallow Crust,0.0,89.99033,0.0,01/14/7164 +7.95089,50.36677,3565,6,11,23,20,40,4.15,15.0,fr,35133,71,1487113,1,1,Active Shallow Crust,0.0,89.99033,0.0,06/11/3565 +7.95089,50.36677,9024,11,26,23,35,46,4.15,27.5,fr,35134,180,1487117,1,1,Active Shallow Crust,240.0091,57.99718,0.0,11/26/9024 +7.95089,50.36677,3277,2,19,16,30,36,4.35,15.0,fr,35135,65,1487137,1,1,Active Shallow Crust,0.0,89.98975,0.0,02/19/3277 +7.95089,50.36677,4285,9,4,14,34,24,4.45,15.0,fr,35136,85,1487149,1,1,Active Shallow Crust,0.0,89.99087,0.0,09/04/4285 +7.95089,50.36677,8988,9,29,3,40,16,4.65,5.0,fr,35137,179,1487172,1,1,Active Shallow Crust,0.0,89.98912,0.0,09/29/8988 +7.95089,50.36677,7565,1,4,17,27,45,4.75,15.0,fr,35138,151,1487185,1,1,Active Shallow Crust,0.0,89.9903,0.0,01/04/7565 +7.95089,50.36677,296,5,31,23,40,9,4.85,15.0,fr,35139,5,1487197,1,1,Active Shallow Crust,0.0,89.98992,0.0,05/31/0296 +7.95089,50.36677,1066,8,22,23,41,41,5.55,15.0,fr,35140,21,1487281,1,1,Active Shallow Crust,0.0,89.9897,0.0,08/22/1066 +3.96999,44.48103,1940,4,29,2,10,33,3.55,5.0,fr,35141,38,1487520,1,1,Active Shallow Crust,0.0,89.9892,0.0,04/29/1940 +3.96999,44.48103,9778,3,25,19,32,43,3.55,5.0,fr,35142,195,1487523,1,1,Active Shallow Crust,240.0113,57.99826,0.0,03/25/9778 +3.96999,44.48103,8653,5,21,12,44,59,3.65,5.0,fr,35143,173,1487535,1,1,Active Shallow Crust,240.0002,58.01284,0.0,05/21/8653 +3.96999,44.48103,76,5,8,0,50,59,3.95,5.0,fr,35144,1,1487568,1,1,Active Shallow Crust,0.0,89.99092,0.0,05/08/0076 +3.96999,44.48103,8576,8,21,19,6,48,3.95,27.5,fr,35145,171,1487570,1,1,Active Shallow Crust,0.0,89.99092,0.0,08/21/8576 +3.96999,44.48103,6968,6,15,20,57,34,4.25,5.0,fr,35146,139,1487607,1,1,Active Shallow Crust,240.0071,57.99404,0.0,06/15/6968 +3.96999,44.48103,5181,2,16,11,3,8,4.35,15.0,fr,35147,103,1487617,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/16/5181 +3.96999,44.48103,1924,11,22,23,56,52,4.55,27.5,fr,35148,38,1487642,1,1,Active Shallow Crust,0.0,89.98976,0.0,11/22/1924 +3.96999,44.48103,2316,1,22,3,12,43,4.95,15.0,fr,35149,46,1487689,1,1,Active Shallow Crust,0.0,89.98995,0.0,01/22/2316 +-5.24067,47.29676,3045,3,4,11,32,39,4.45,5.0,fr,35150,60,1488108,1,1,Active Shallow Crust,0.0,89.9903,0.0,03/04/3045 +3.24253,47.22867,7287,2,10,20,52,27,3.55,5.0,fr,35151,145,1488483,1,1,Active Shallow Crust,240.0118,57.99802,0.0,02/10/7287 +3.24253,47.22867,2191,4,26,18,20,33,3.85,15.0,fr,35152,43,1488517,1,1,Active Shallow Crust,0.0,89.9903,0.0,04/26/2191 +3.24253,47.22867,3256,3,5,18,39,41,3.85,27.5,fr,35153,65,1488524,1,1,Active Shallow Crust,0.0,89.99019,-90.0,03/05/3256 +3.24253,47.22867,9877,9,4,4,8,30,4.65,5.0,fr,35154,197,1488612,1,1,Active Shallow Crust,0.0,89.99035,0.0,09/04/9877 +0.62755,43.50149,8079,5,2,1,53,37,3.55,5.0,fr,35155,161,1489440,1,1,Active Shallow Crust,0.0,89.98994,0.0,05/02/8079 +0.62755,43.50149,4418,4,18,0,50,48,3.55,5.0,fr,35156,88,1489443,1,1,Active Shallow Crust,240.012,57.99813,0.0,04/18/4418 +0.62755,43.50149,2410,10,8,4,50,39,3.55,15.0,fr,35157,48,1489444,1,1,Active Shallow Crust,240.012,57.99813,0.0,10/08/2410 +0.62755,43.50149,3782,9,15,9,54,49,3.55,5.0,fr,35158,75,1489446,1,1,Active Shallow Crust,0.0,89.98983,-90.0,09/15/3782 +0.62755,43.50149,8270,4,4,16,38,58,3.65,27.5,fr,35159,165,1489454,1,1,Active Shallow Crust,0.0,89.99022,0.0,04/04/8270 +0.62755,43.50149,8374,6,13,13,24,13,3.75,15.0,fr,35160,167,1489474,1,1,Active Shallow Crust,128.8967,89.96737,0.0,06/13/8374 +0.62755,43.50149,6436,10,14,4,59,55,3.75,27.5,fr,35161,128,1489475,1,1,Active Shallow Crust,128.8967,89.96737,0.0,10/14/6436 +0.62755,43.50149,8179,1,9,3,33,45,4.05,5.0,fr,35162,163,1489509,1,1,Active Shallow Crust,128.8909,89.99383,0.0,01/09/8179 +0.62755,43.50149,5822,2,28,12,45,45,4.15,15.0,fr,35163,116,1489513,1,1,Active Shallow Crust,0.0,89.98992,0.0,02/28/5822 +6.17909,49.03445,461,4,6,15,10,10,3.65,27.5,fr,35164,9,1489934,1,2,Active Shallow Crust,0.0,89.98821,0.0,04/06/0461 +6.17909,49.03445,5805,9,12,12,22,36,3.65,27.5,fr,35165,116,1489934,1,2,Active Shallow Crust,0.0,89.98821,0.0,09/12/5805 +6.17909,49.03445,931,6,28,23,28,44,4.05,5.0,fr,35166,18,1489980,1,1,Active Shallow Crust,0.0,89.98885,0.0,06/28/0931 +6.17909,49.03445,7095,6,13,17,35,2,4.15,5.0,fr,35167,141,1489992,1,1,Active Shallow Crust,0.0,89.99006,0.0,06/13/7095 +6.17909,49.03445,1625,11,21,6,24,0,4.75,5.0,fr,35168,32,1490064,1,1,Active Shallow Crust,0.0,89.99004,0.0,11/21/1625 +6.17909,49.03445,7751,9,23,7,51,7,5.25,15.0,fr,35169,155,1490128,1,1,Active Shallow Crust,240.0272,58.00066,0.0,09/23/7751 +-0.71657,45.015,6326,12,6,4,24,45,3.75,5.0,fr,35170,126,1490427,1,1,Active Shallow Crust,240.0081,58.01755,0.0,12/06/6326 +-0.71657,45.015,2522,4,20,15,47,24,4.05,5.0,fr,35171,50,1490460,1,1,Active Shallow Crust,0.0,89.98997,0.0,04/20/2522 +-0.71657,45.015,7130,3,26,13,12,6,4.05,27.5,fr,35172,142,1490462,1,1,Active Shallow Crust,0.0,89.98997,0.0,03/26/7130 +-0.71657,45.015,3304,7,25,2,5,7,4.15,5.0,fr,35173,66,1490478,1,1,Active Shallow Crust,0.0,89.99006,-90.0,07/25/3304 +-0.71657,45.015,9806,12,22,5,6,20,4.35,5.0,fr,35174,196,1490496,1,1,Active Shallow Crust,0.0,89.99007,0.0,12/22/9806 +-0.71657,45.015,8859,7,19,12,19,4,4.55,5.0,fr,35175,177,1490520,1,1,Active Shallow Crust,0.0,89.99014,0.0,07/19/8859 +4.52183,43.10074,5528,9,20,16,5,58,3.55,27.5,fr,35176,110,1490885,1,1,Active Shallow Crust,240.012,57.99761,0.0,09/20/5528 +4.39956,48.16411,171,6,20,18,6,32,3.85,5.0,fr,35177,3,1491399,1,1,Active Shallow Crust,240.011,57.99711,0.0,06/20/0171 +-0.63513,43.24489,7111,2,8,10,2,7,3.55,5.0,fr,35178,142,1491840,1,8,Active Shallow Crust,0.0,89.9899,0.0,02/08/7111 +-0.63513,43.24489,4707,6,5,9,32,40,3.55,5.0,fr,35179,94,1491840,1,8,Active Shallow Crust,0.0,89.9899,0.0,06/05/4707 +-0.63513,43.24489,3751,8,8,20,16,27,3.55,5.0,fr,35180,75,1491840,1,8,Active Shallow Crust,0.0,89.9899,0.0,08/08/3751 +-0.63513,43.24489,335,6,13,21,34,32,3.55,5.0,fr,35181,6,1491840,1,8,Active Shallow Crust,0.0,89.9899,0.0,06/13/0335 +-0.63513,43.24489,6846,9,27,8,38,35,3.55,5.0,fr,35182,136,1491840,1,8,Active Shallow Crust,0.0,89.9899,0.0,09/27/6846 +-0.63513,43.24489,7435,4,24,10,41,40,3.55,5.0,fr,35183,148,1491840,1,8,Active Shallow Crust,0.0,89.9899,0.0,04/24/7435 +-0.63513,43.24489,4612,3,22,1,4,33,3.55,5.0,fr,35184,92,1491840,1,8,Active Shallow Crust,0.0,89.9899,0.0,03/22/4612 +-0.63513,43.24489,3577,11,13,22,50,24,3.55,5.0,fr,35185,71,1491840,1,8,Active Shallow Crust,0.0,89.9899,0.0,11/13/3577 +-0.63513,43.24489,5378,5,5,5,34,53,3.55,15.0,fr,35186,107,1491841,1,3,Active Shallow Crust,0.0,89.9899,0.0,05/05/5378 +-0.63513,43.24489,6518,3,14,10,56,35,3.55,15.0,fr,35187,130,1491841,1,3,Active Shallow Crust,0.0,89.9899,0.0,03/14/6518 +-0.63513,43.24489,7016,11,18,8,59,51,3.55,15.0,fr,35188,140,1491841,1,3,Active Shallow Crust,0.0,89.9899,0.0,11/18/7016 +-0.63513,43.24489,950,12,15,16,52,16,3.55,5.0,fr,35189,18,1491843,1,1,Active Shallow Crust,240.0121,57.99809,0.0,12/15/0950 +-0.63513,43.24489,8383,2,1,13,56,49,3.55,5.0,fr,35190,167,1491846,1,1,Active Shallow Crust,0.0,89.98978,-90.0,02/01/8383 +-0.63513,43.24489,8365,2,7,19,57,11,3.55,15.0,fr,35191,167,1491847,1,1,Active Shallow Crust,0.0,89.98978,-90.0,02/07/8365 +-0.63513,43.24489,7417,4,10,2,58,7,3.65,5.0,fr,35192,148,1491852,1,3,Active Shallow Crust,0.0,89.99018,0.0,04/10/7417 +-0.63513,43.24489,9175,3,28,16,7,39,3.65,5.0,fr,35193,183,1491852,1,3,Active Shallow Crust,0.0,89.99018,0.0,03/28/9175 +-0.63513,43.24489,4391,9,26,3,48,37,3.65,5.0,fr,35194,87,1491852,1,3,Active Shallow Crust,0.0,89.99018,0.0,09/26/4391 +-0.63513,43.24489,3964,7,30,9,37,23,3.65,15.0,fr,35195,79,1491853,1,3,Active Shallow Crust,0.0,89.99018,0.0,07/30/3964 +-0.63513,43.24489,9864,6,27,12,37,36,3.65,15.0,fr,35196,197,1491853,1,3,Active Shallow Crust,0.0,89.99018,0.0,06/27/9864 +-0.63513,43.24489,1498,10,23,21,20,55,3.65,15.0,fr,35197,29,1491853,1,3,Active Shallow Crust,0.0,89.99018,0.0,10/23/1498 +-0.63513,43.24489,9987,12,2,0,35,14,3.65,5.0,fr,35198,199,1491855,1,1,Active Shallow Crust,240.0008,58.01276,0.0,12/02/9987 +-0.63513,43.24489,1422,8,31,8,34,11,3.65,5.0,fr,35199,28,1491858,1,1,Active Shallow Crust,0.0,89.99007,-90.0,08/31/1422 +-0.63513,43.24489,4186,9,13,20,19,23,3.65,15.0,fr,35200,83,1491862,1,1,Active Shallow Crust,128.9006,89.96353,0.0,09/13/4186 +-0.63513,43.24489,9542,3,3,2,13,27,3.75,5.0,fr,35201,190,1491864,1,2,Active Shallow Crust,0.0,89.98979,0.0,03/03/9542 +-0.63513,43.24489,788,12,27,14,44,27,3.75,5.0,fr,35202,15,1491864,1,2,Active Shallow Crust,0.0,89.98979,0.0,12/27/0788 +-0.63513,43.24489,9310,10,8,9,37,51,3.75,15.0,fr,35203,186,1491865,1,2,Active Shallow Crust,0.0,89.98979,0.0,10/08/9310 +-0.63513,43.24489,1187,7,12,11,58,3,3.75,15.0,fr,35204,23,1491865,1,2,Active Shallow Crust,0.0,89.98979,0.0,07/12/1187 +-0.63513,43.24489,1734,9,4,0,51,16,3.75,5.0,fr,35205,34,1491867,1,3,Active Shallow Crust,240.008,58.01759,0.0,09/04/1734 +-0.63513,43.24489,3526,1,21,13,45,16,3.75,5.0,fr,35206,70,1491867,1,3,Active Shallow Crust,240.008,58.01759,0.0,01/21/3526 +-0.63513,43.24489,8813,10,31,1,13,13,3.75,5.0,fr,35207,176,1491867,1,3,Active Shallow Crust,240.008,58.01759,0.0,10/31/8813 +-0.63513,43.24489,5603,9,23,7,18,18,3.85,5.0,fr,35208,112,1491876,1,3,Active Shallow Crust,0.0,89.99025,0.0,09/23/5603 +-0.63513,43.24489,902,7,8,2,5,10,3.85,5.0,fr,35209,18,1491876,1,3,Active Shallow Crust,0.0,89.99025,0.0,07/08/0902 +-0.63513,43.24489,6002,10,1,9,57,46,3.85,5.0,fr,35210,120,1491876,1,3,Active Shallow Crust,0.0,89.99025,0.0,10/01/6002 +-0.63513,43.24489,692,4,23,8,50,27,3.85,15.0,fr,35211,13,1491877,1,1,Active Shallow Crust,0.0,89.99025,0.0,04/23/0692 +-0.63513,43.24489,1059,11,3,4,45,35,3.85,5.0,fr,35212,21,1491879,1,1,Active Shallow Crust,240.0104,57.9977,0.0,11/03/1059 +-0.63513,43.24489,8491,12,15,0,29,38,3.85,15.0,fr,35213,169,1491883,1,1,Active Shallow Crust,0.0,89.99014,-90.0,12/15/8491 +-0.63513,43.24489,4433,6,15,4,2,37,3.85,5.0,fr,35214,88,1491885,1,1,Active Shallow Crust,128.8961,89.99383,0.0,06/15/4433 +-0.63513,43.24489,7140,11,21,11,2,38,3.95,5.0,fr,35215,142,1491888,1,1,Active Shallow Crust,0.0,89.99015,0.0,11/21/7140 +-0.63513,43.24489,3704,11,28,19,50,41,3.95,15.0,fr,35216,74,1491889,1,1,Active Shallow Crust,0.0,89.99015,0.0,11/28/3704 +-0.63513,43.24489,9569,6,12,6,53,48,3.95,5.0,fr,35217,191,1491891,1,1,Active Shallow Crust,240.0193,58.00485,0.0,06/12/9569 +-0.63513,43.24489,4513,6,1,10,33,25,3.95,5.0,fr,35218,90,1491894,1,1,Active Shallow Crust,0.0,89.99004,-90.0,06/01/4513 +-0.63513,43.24489,9204,2,11,0,57,3,3.95,5.0,fr,35219,184,1491897,1,1,Active Shallow Crust,128.9008,89.99363,0.0,02/11/9204 +-0.63513,43.24489,2237,5,19,15,42,29,4.05,5.0,fr,35220,44,1491900,1,5,Active Shallow Crust,0.0,89.99019,0.0,05/19/2237 +-0.63513,43.24489,2164,7,5,2,2,5,4.05,5.0,fr,35221,43,1491900,1,5,Active Shallow Crust,0.0,89.99019,0.0,07/05/2164 +-0.63513,43.24489,3805,6,17,4,28,6,4.05,5.0,fr,35222,76,1491900,1,5,Active Shallow Crust,0.0,89.99019,0.0,06/17/3805 +-0.63513,43.24489,971,3,2,7,20,8,4.05,5.0,fr,35223,19,1491900,1,5,Active Shallow Crust,0.0,89.99019,0.0,03/02/0971 +-0.63513,43.24489,8389,11,13,23,20,5,4.05,5.0,fr,35224,167,1491900,1,5,Active Shallow Crust,0.0,89.99019,0.0,11/13/8389 +-0.63513,43.24489,2173,12,3,18,2,10,4.05,5.0,fr,35225,43,1491903,1,3,Active Shallow Crust,240.0055,58.00573,0.0,12/03/2173 +-0.63513,43.24489,4550,5,13,15,36,10,4.05,5.0,fr,35226,90,1491903,1,3,Active Shallow Crust,240.0055,58.00573,0.0,05/13/4550 +-0.63513,43.24489,3975,8,8,10,16,6,4.05,5.0,fr,35227,79,1491903,1,3,Active Shallow Crust,240.0055,58.00573,0.0,08/08/3975 +-0.63513,43.24489,9577,11,21,20,21,25,4.15,15.0,fr,35228,191,1491913,1,1,Active Shallow Crust,0.0,89.98988,0.0,11/21/9577 +-0.63513,43.24489,9567,5,21,8,9,26,4.15,5.0,fr,35229,191,1491918,1,1,Active Shallow Crust,0.0,89.99023,-90.0,05/21/9567 +-0.63513,43.24489,3753,12,13,10,43,48,4.15,5.0,fr,35230,75,1491921,1,1,Active Shallow Crust,128.8981,89.99356,0.0,12/13/3753 +-0.63513,43.24489,2198,10,3,17,50,11,4.25,5.0,fr,35231,43,1491924,1,2,Active Shallow Crust,0.0,89.99016,0.0,10/03/2198 +-0.63513,43.24489,7986,3,25,11,7,27,4.25,5.0,fr,35232,159,1491924,1,2,Active Shallow Crust,0.0,89.99016,0.0,03/25/7986 +-0.63513,43.24489,7033,9,9,10,41,52,4.25,27.5,fr,35233,140,1491935,1,1,Active Shallow Crust,128.8948,89.9809,0.0,09/09/7033 +-0.63513,43.24489,8047,11,28,6,49,0,4.45,5.0,fr,35234,160,1491948,1,1,Active Shallow Crust,0.0,89.9899,0.0,11/28/8047 +-0.63513,43.24489,2607,3,30,22,11,40,4.45,15.0,fr,35235,52,1491949,1,1,Active Shallow Crust,0.0,89.9899,0.0,03/30/2607 +-0.63513,43.24489,6678,2,28,17,11,46,4.65,15.0,fr,35236,133,1491973,1,1,Active Shallow Crust,0.0,89.98991,0.0,02/28/6678 +-0.63513,43.24489,6509,6,2,5,13,54,4.75,5.0,fr,35237,130,1491984,1,1,Active Shallow Crust,0.0,89.99008,0.0,06/02/6509 +-0.63513,43.24489,1553,8,8,7,16,40,4.75,15.0,fr,35238,31,1491985,1,1,Active Shallow Crust,0.0,89.99008,0.0,08/08/1553 +-0.63513,43.24489,9110,6,1,12,56,53,4.85,15.0,fr,35239,182,1492000,1,1,Active Shallow Crust,240.0159,58.00209,0.0,06/01/9110 +-0.63513,43.24489,9371,1,21,2,16,6,5.15,5.0,fr,35240,187,1492032,1,1,Active Shallow Crust,0.0,89.98996,0.0,01/21/9371 +-0.63513,43.24489,361,8,15,23,29,39,5.75,5.0,fr,35241,7,1492113,1,1,Active Shallow Crust,128.8744,89.98853,0.0,08/15/0361 +-0.98949,50.23023,1563,1,23,2,43,47,3.55,15.0,fr,35242,31,1492321,1,1,Active Shallow Crust,0.0,89.99033,0.0,01/23/1563 +-0.98949,50.23023,2088,9,8,22,12,43,3.55,5.0,fr,35243,41,1492323,1,1,Active Shallow Crust,240.0125,57.99823,0.0,09/08/2088 +-0.98949,50.23023,834,8,8,14,5,9,3.85,5.0,fr,35244,16,1492356,1,1,Active Shallow Crust,0.0,89.98972,0.0,08/08/0834 +-0.98949,50.23023,854,6,22,7,18,58,3.85,5.0,fr,35245,17,1492359,1,1,Active Shallow Crust,240.0113,57.99795,0.0,06/22/0854 +-0.98949,50.23023,6879,2,7,14,25,34,3.95,5.0,fr,35246,137,1492371,1,1,Active Shallow Crust,240.0204,58.00503,0.0,02/07/6879 +7.38582,48.67481,3912,9,20,0,56,4,3.55,15.0,fr,35247,78,1492801,1,1,Active Shallow Crust,0.0,89.98668,0.0,09/20/3912 +7.38582,48.67481,7997,8,13,2,12,19,3.55,15.0,fr,35248,159,1492807,1,1,Active Shallow Crust,0.0,89.99326,-90.0,08/13/7997 +7.38582,48.67481,2990,4,26,11,52,49,3.65,5.0,fr,35249,59,1492815,1,1,Active Shallow Crust,240.0018,58.01302,0.0,04/26/2990 +7.38582,48.67481,859,2,7,8,29,51,3.75,5.0,fr,35250,17,1492824,1,1,Active Shallow Crust,0.0,89.98942,0.0,02/07/0859 +7.38582,48.67481,149,6,7,6,59,41,3.85,5.0,fr,35251,2,1492836,1,2,Active Shallow Crust,0.0,89.99057,0.0,06/07/0149 +7.38582,48.67481,6535,1,25,0,37,15,3.85,5.0,fr,35252,130,1492836,1,2,Active Shallow Crust,0.0,89.99057,0.0,01/25/6535 +7.38582,48.67481,4545,7,11,20,49,47,3.85,5.0,fr,35253,90,1492845,1,1,Active Shallow Crust,128.8954,89.99529,0.0,07/11/4545 +7.38582,48.67481,1142,1,31,10,22,55,3.85,15.0,fr,35254,22,1492846,1,1,Active Shallow Crust,128.8954,89.99529,0.0,01/31/1142 +7.38582,48.67481,4039,6,2,9,4,47,4.35,15.0,fr,35255,80,1492900,1,1,Active Shallow Crust,240.0086,57.99637,0.0,06/02/4039 +9.11527,49.61554,7025,5,11,18,47,58,3.55,5.0,fr,35256,140,1493280,1,2,Active Shallow Crust,0.0,89.98693,0.0,05/11/7025 +9.11527,49.61554,2162,12,24,1,10,44,3.55,5.0,fr,35257,43,1493280,1,2,Active Shallow Crust,0.0,89.98693,0.0,12/24/2162 +9.11527,49.61554,1777,10,25,12,22,12,3.55,5.0,fr,35258,35,1493286,1,1,Active Shallow Crust,0.0,89.98678,-90.0,10/25/1777 +9.11527,49.61554,5557,3,19,16,16,4,3.75,5.0,fr,35259,111,1493304,1,1,Active Shallow Crust,0.0,89.98962,0.0,03/19/5557 +9.11527,49.61554,7098,6,24,1,40,4,3.85,5.0,fr,35260,141,1493322,1,1,Active Shallow Crust,0.0,89.99064,-90.0,06/24/7098 +9.11527,49.61554,9038,4,1,0,19,42,3.95,5.0,fr,35261,180,1493328,1,1,Active Shallow Crust,0.0,89.99175,0.0,04/01/9038 +9.11527,49.61554,1755,12,29,21,29,35,4.65,27.5,fr,35262,35,1493420,1,1,Active Shallow Crust,0.0,89.98882,-90.0,12/29/1755 +7.67143,49.0861,5461,6,26,2,12,37,3.55,15.0,fr,35263,109,1493764,1,1,Active Shallow Crust,240.0138,57.99733,0.0,06/26/5461 +7.67143,49.0861,9612,4,21,9,18,53,3.75,15.0,fr,35264,192,1493785,1,1,Active Shallow Crust,0.0,89.98951,0.0,04/21/9612 +7.67143,49.0861,3330,1,17,0,30,19,3.85,5.0,fr,35265,66,1493796,1,1,Active Shallow Crust,0.0,89.99065,0.0,01/17/3330 +7.67143,49.0861,9603,5,1,13,6,8,4.05,5.0,fr,35266,192,1493820,1,1,Active Shallow Crust,0.0,89.98886,0.0,05/01/9603 +7.67143,49.0861,2692,8,13,21,44,52,4.25,5.0,fr,35267,53,1493844,1,1,Active Shallow Crust,0.0,89.99115,0.0,08/13/2692 +7.67143,49.0861,3659,6,6,5,3,58,5.05,15.0,fr,35268,73,1493941,1,1,Active Shallow Crust,0.0,89.98943,0.0,06/06/3659 +7.67143,49.0861,9944,10,5,17,7,14,5.15,15.0,fr,35269,198,1493956,1,1,Active Shallow Crust,240.0213,58.00028,0.0,10/05/9944 +-3.85639,47.17215,8818,9,21,19,11,34,3.55,27.5,fr,35270,176,1494242,1,1,Active Shallow Crust,0.0,89.98972,0.0,09/21/8818 +-3.85639,47.17215,2202,4,2,13,15,4,3.55,5.0,fr,35271,44,1494249,1,1,Active Shallow Crust,128.8953,89.99486,0.0,04/02/2202 +-3.85639,47.17215,5504,10,10,11,56,8,3.95,27.5,fr,35272,110,1494299,1,1,Active Shallow Crust,128.9004,89.99352,0.0,10/10/5504 +6.07427,44.7662,4784,9,30,10,59,39,3.55,5.0,fr,35273,95,1494723,1,1,Active Shallow Crust,240.0124,57.99793,0.0,09/30/4784 +6.07427,44.7662,3405,8,25,14,8,43,3.75,5.0,fr,35274,68,1494747,1,1,Active Shallow Crust,240.0083,58.01738,0.0,08/25/3405 +6.07427,44.7662,5014,3,28,20,49,7,4.25,5.0,fr,35275,100,1494804,1,1,Active Shallow Crust,0.0,89.9904,0.0,03/28/5014 +6.07427,44.7662,1886,6,21,5,8,50,4.25,5.0,fr,35276,37,1494807,1,1,Active Shallow Crust,240.0071,57.99372,0.0,06/21/1886 +6.07427,44.7662,802,4,19,21,59,51,4.65,15.0,fr,35277,16,1494853,1,1,Active Shallow Crust,0.0,89.98991,0.0,04/19/0802 +6.07427,44.7662,3824,1,27,1,21,1,5.05,5.0,fr,35278,76,1494909,1,1,Active Shallow Crust,128.8863,89.99041,0.0,01/27/3824 +5.81543,44.33697,2260,9,7,13,27,7,3.55,27.5,fr,35279,45,1495205,1,1,Active Shallow Crust,240.0121,57.99758,0.0,09/07/2260 +5.81543,44.33697,4463,4,22,4,51,1,3.55,5.0,fr,35280,89,1495209,1,1,Active Shallow Crust,128.8972,89.99279,0.0,04/22/4463 +5.81543,44.33697,5052,11,15,14,12,54,3.75,5.0,fr,35281,101,1495224,1,2,Active Shallow Crust,0.0,89.98854,0.0,11/15/5052 +5.81543,44.33697,7261,5,11,4,45,57,3.75,5.0,fr,35282,145,1495224,1,2,Active Shallow Crust,0.0,89.98854,0.0,05/11/7261 +5.81543,44.33697,4173,3,6,9,0,5,3.75,5.0,fr,35283,83,1495230,1,1,Active Shallow Crust,0.0,89.98841,-90.0,03/06/4173 +5.81543,44.33697,4421,4,5,13,34,0,4.35,5.0,fr,35284,88,1495302,1,1,Active Shallow Crust,0.0,89.99129,-90.0,04/05/4421 +5.81543,44.33697,960,9,4,17,41,19,4.65,15.0,fr,35285,19,1495333,1,1,Active Shallow Crust,0.0,89.98984,0.0,09/04/0960 +5.81543,44.33697,5695,7,6,22,23,3,4.85,5.0,fr,35286,113,1495362,1,1,Active Shallow Crust,0.0,89.9902,-90.0,07/06/5695 +5.81543,44.33697,5063,8,7,1,26,18,4.95,5.0,fr,35287,101,1495374,1,1,Active Shallow Crust,0.0,89.98981,-90.0,08/07/5063 +3.70549,45.36009,2908,3,31,16,26,23,3.55,5.0,fr,35288,58,1496160,1,1,Active Shallow Crust,0.0,89.98937,0.0,03/31/2908 +3.70549,45.36009,8353,3,12,5,36,57,3.55,27.5,fr,35289,167,1496162,1,1,Active Shallow Crust,0.0,89.98937,0.0,03/12/8353 +3.70549,45.36009,7801,7,30,0,26,56,3.65,5.0,fr,35290,156,1496172,1,2,Active Shallow Crust,0.0,89.99052,0.0,07/30/7801 +3.70549,45.36009,159,8,14,3,33,18,3.65,5.0,fr,35291,3,1496172,1,2,Active Shallow Crust,0.0,89.99052,0.0,08/14/0159 +3.70549,45.36009,8525,5,24,19,7,24,3.65,27.5,fr,35292,170,1496177,1,1,Active Shallow Crust,240.0009,58.01277,0.0,05/24/8525 +3.70549,45.36009,330,1,31,21,33,35,3.85,15.0,fr,35293,6,1496197,1,1,Active Shallow Crust,0.0,89.98997,0.0,01/31/0330 +3.70549,45.36009,1088,3,2,14,20,1,4.15,5.0,fr,35294,21,1496232,1,1,Active Shallow Crust,0.0,89.98935,0.0,03/02/1088 +3.70549,45.36009,8602,5,20,20,34,54,4.25,27.5,fr,35295,172,1496246,1,1,Active Shallow Crust,0.0,89.9905,0.0,05/20/8602 +3.70549,45.36009,8695,3,27,3,16,26,4.25,15.0,fr,35296,173,1496251,1,1,Active Shallow Crust,0.0,89.99039,-90.0,03/27/8695 +-2.77901,48.09249,2913,1,23,21,56,59,3.55,5.0,fr,35297,58,1496640,1,1,Active Shallow Crust,0.0,89.9899,0.0,01/23/2913 +-2.77901,48.09249,5169,7,3,4,22,44,3.55,5.0,fr,35298,103,1496646,1,1,Active Shallow Crust,0.0,89.98978,-90.0,07/03/5169 +-2.77901,48.09249,7952,1,5,22,7,50,3.55,5.0,fr,35299,159,1496649,1,1,Active Shallow Crust,128.8956,89.99326,0.0,01/05/7952 +-2.77901,48.09249,3569,10,10,20,15,4,3.65,5.0,fr,35300,71,1496652,1,2,Active Shallow Crust,0.0,89.991,0.0,10/10/3569 +-2.77901,48.09249,930,6,30,18,30,26,3.65,5.0,fr,35301,18,1496652,1,2,Active Shallow Crust,0.0,89.991,0.0,06/30/0930 +-2.77901,48.09249,9974,6,7,14,43,11,3.65,15.0,fr,35302,199,1496653,1,2,Active Shallow Crust,0.0,89.991,0.0,06/07/9974 +-2.77901,48.09249,5383,7,9,13,11,13,3.65,15.0,fr,35303,107,1496653,1,2,Active Shallow Crust,0.0,89.991,0.0,07/09/5383 +-2.77901,48.09249,3872,12,22,12,29,19,3.65,5.0,fr,35304,77,1496658,1,1,Active Shallow Crust,0.0,89.99089,-90.0,12/22/3872 +-2.77901,48.09249,1203,11,18,17,23,59,3.75,5.0,fr,35305,24,1496664,1,1,Active Shallow Crust,0.0,89.9893,0.0,11/18/1203 +-2.77901,48.09249,8428,1,25,0,30,14,3.75,27.5,fr,35306,168,1496675,1,1,Active Shallow Crust,128.8969,89.96727,0.0,01/25/8428 +-2.77901,48.09249,3459,11,6,20,50,35,3.85,5.0,fr,35307,69,1496676,1,1,Active Shallow Crust,0.0,89.99046,0.0,11/06/3459 +-2.77901,48.09249,6237,3,10,10,41,47,4.25,15.0,fr,35308,124,1496728,1,1,Active Shallow Crust,240.0079,57.99394,0.0,03/10/6237 +-2.77901,48.09249,8833,12,12,11,11,13,4.45,5.0,fr,35309,176,1496751,1,1,Active Shallow Crust,240.0057,57.99483,0.0,12/12/8833 +8.04881,47.21544,1594,9,2,23,43,21,3.55,5.0,fr,35310,31,1497120,1,3,Active Shallow Crust,0.0,89.9863,0.0,09/02/1594 +8.04881,47.21544,4555,2,1,2,21,38,3.55,5.0,fr,35311,91,1497120,1,3,Active Shallow Crust,0.0,89.9863,0.0,02/01/4555 +8.04881,47.21544,517,5,31,22,16,39,3.55,5.0,fr,35312,10,1497120,1,3,Active Shallow Crust,0.0,89.9863,0.0,05/31/0517 +8.04881,47.21544,8978,3,31,15,3,55,3.55,15.0,fr,35313,179,1497121,1,1,Active Shallow Crust,0.0,89.9863,0.0,03/31/8978 +8.04881,47.21544,7493,12,28,3,32,4,3.55,27.5,fr,35314,149,1497122,1,2,Active Shallow Crust,0.0,89.9863,0.0,12/28/7493 +8.04881,47.21544,8036,12,4,15,24,26,3.55,27.5,fr,35315,160,1497122,1,2,Active Shallow Crust,0.0,89.9863,0.0,12/04/8036 +8.04881,47.21544,3927,5,15,22,55,29,3.55,15.0,fr,35316,78,1497127,1,1,Active Shallow Crust,0.0,89.98615,-90.0,05/15/3927 +8.04881,47.21544,3238,7,2,20,14,46,3.65,5.0,fr,35317,64,1497132,1,2,Active Shallow Crust,0.0,89.98779,0.0,07/02/3238 +8.04881,47.21544,9215,1,28,5,40,57,3.65,5.0,fr,35318,184,1497132,1,2,Active Shallow Crust,0.0,89.98779,0.0,01/28/9215 +8.04881,47.21544,3217,3,23,23,18,34,3.65,5.0,fr,35319,64,1497135,1,1,Active Shallow Crust,240.0026,58.01244,0.0,03/23/3217 +8.04881,47.21544,7264,11,27,7,15,19,3.75,5.0,fr,35320,145,1497144,1,1,Active Shallow Crust,0.0,89.98912,0.0,11/27/7264 +8.04881,47.21544,5601,6,23,5,29,7,3.75,15.0,fr,35321,112,1497151,1,1,Active Shallow Crust,0.0,89.98899,-90.0,06/23/5601 +8.04881,47.21544,4011,7,3,20,8,55,3.85,5.0,fr,35322,80,1497156,1,2,Active Shallow Crust,0.0,89.9903,0.0,07/03/4011 +8.04881,47.21544,8572,10,27,3,21,31,3.85,5.0,fr,35323,171,1497156,1,2,Active Shallow Crust,0.0,89.9903,0.0,10/27/8572 +8.04881,47.21544,1563,3,26,1,32,25,3.85,5.0,fr,35324,31,1497162,1,1,Active Shallow Crust,0.0,89.99019,-90.0,03/26/1563 +8.04881,47.21544,663,4,17,7,34,15,3.85,5.0,fr,35325,13,1497165,1,1,Active Shallow Crust,128.8929,89.99515,0.0,04/17/0663 +8.04881,47.21544,6967,6,2,2,47,45,3.95,15.0,fr,35326,139,1497169,1,1,Active Shallow Crust,0.0,89.99136,0.0,06/02/6967 +8.04881,47.21544,2381,5,13,15,7,9,3.95,5.0,fr,35327,47,1497177,1,1,Active Shallow Crust,128.8982,89.99568,0.0,05/13/2381 +8.04881,47.21544,4706,11,8,5,43,1,3.95,27.5,fr,35328,94,1497179,1,1,Active Shallow Crust,128.8982,89.99568,0.0,11/08/4706 +8.04881,47.21544,387,9,20,16,56,10,4.05,5.0,fr,35329,7,1497180,1,2,Active Shallow Crust,0.0,89.99229,0.0,09/20/0387 +8.04881,47.21544,8302,12,19,20,38,22,4.05,5.0,fr,35330,166,1497180,1,2,Active Shallow Crust,0.0,89.99229,0.0,12/19/8302 +8.04881,47.21544,1759,1,10,2,55,45,4.05,15.0,fr,35331,35,1497184,1,1,Active Shallow Crust,240.0047,58.00617,0.0,01/10/1759 +8.04881,47.21544,3729,5,7,13,37,19,4.25,5.0,fr,35332,74,1497204,1,1,Active Shallow Crust,0.0,89.98776,0.0,05/07/3729 +8.04881,47.21544,6762,11,26,0,40,46,4.35,5.0,fr,35333,135,1497216,1,2,Active Shallow Crust,0.0,89.98909,0.0,11/26/6762 +8.04881,47.21544,1570,1,4,6,45,35,4.35,5.0,fr,35334,31,1497216,1,2,Active Shallow Crust,0.0,89.98909,0.0,01/04/1570 +8.04881,47.21544,1734,8,18,23,15,54,4.45,5.0,fr,35335,34,1497228,1,1,Active Shallow Crust,0.0,89.99028,0.0,08/18/1734 +8.04881,47.21544,2453,7,3,9,56,23,4.85,5.0,fr,35336,49,1497285,1,1,Active Shallow Crust,128.893,89.98908,0.0,07/03/2453 +8.04881,47.21544,4332,5,15,19,50,33,5.15,15.0,fr,35337,86,1497319,1,1,Active Shallow Crust,0.0,89.98901,-90.0,05/15/4332 +8.048818,47.21544,7678,6,20,1,37,54,6.45,8.491219,fr,35338,153,1497468,1,1,Active Shallow Crust,0.0,89.99002,0.0,06/20/7678 +8.05807,49.63111,7036,4,17,13,6,18,3.55,5.0,fr,35339,140,1497600,1,1,Active Shallow Crust,0.0,89.98694,0.0,04/17/7036 +8.05807,49.63111,682,9,24,7,14,21,3.55,15.0,fr,35340,13,1497601,1,2,Active Shallow Crust,0.0,89.98694,0.0,09/24/0682 +8.05807,49.63111,3291,3,27,19,46,52,3.55,15.0,fr,35341,65,1497601,1,2,Active Shallow Crust,0.0,89.98694,0.0,03/27/3291 +8.05807,49.63111,3412,2,8,5,56,8,3.55,15.0,fr,35342,68,1497610,1,1,Active Shallow Crust,128.8974,89.99347,0.0,02/08/3412 +8.05807,49.63111,4640,7,21,4,36,25,3.65,5.0,fr,35343,92,1497612,1,1,Active Shallow Crust,0.0,89.98836,0.0,07/21/4640 +8.05807,49.63111,6287,2,15,11,24,18,3.65,27.5,fr,35344,125,1497614,1,1,Active Shallow Crust,0.0,89.98836,0.0,02/15/6287 +8.05807,49.63111,2492,6,13,10,46,42,3.65,27.5,fr,35345,49,1497617,1,1,Active Shallow Crust,240.0005,58.0126,0.0,06/13/2492 +8.05807,49.63111,1014,11,14,19,55,20,3.75,5.0,fr,35346,20,1497624,1,2,Active Shallow Crust,0.0,89.98962,0.0,11/14/1014 +8.05807,49.63111,6695,8,22,22,8,44,3.75,5.0,fr,35347,133,1497624,1,2,Active Shallow Crust,0.0,89.98962,0.0,08/22/6695 +8.05807,49.63111,2954,3,4,17,27,53,3.95,15.0,fr,35348,59,1497649,1,1,Active Shallow Crust,0.0,89.99176,0.0,03/04/2954 +8.05807,49.63111,2594,3,11,0,11,39,4.05,5.0,fr,35349,51,1497660,1,1,Active Shallow Crust,0.0,89.99265,0.0,03/11/2594 +8.05807,49.63111,3962,3,30,0,43,11,4.25,5.0,fr,35350,79,1497690,1,1,Active Shallow Crust,0.0,89.9882,-90.0,03/30/3962 +8.05807,49.63111,4147,1,3,4,41,17,4.35,27.5,fr,35351,82,1497698,1,1,Active Shallow Crust,0.0,89.9896,0.0,01/03/4147 +8.05807,49.63111,9552,9,19,6,46,44,4.35,5.0,fr,35352,191,1497699,1,1,Active Shallow Crust,240.009,57.99596,0.0,09/19/9552 +8.05807,49.63111,9942,5,31,11,15,38,4.45,5.0,fr,35353,198,1497711,1,1,Active Shallow Crust,240.0067,57.99494,0.0,05/31/9942 +8.05807,49.63111,2797,9,13,4,19,8,4.55,15.0,fr,35354,55,1497721,1,1,Active Shallow Crust,0.0,89.99174,0.0,09/13/2797 +8.05807,49.63111,6852,5,4,13,43,58,4.85,5.0,fr,35355,137,1497762,1,1,Active Shallow Crust,0.0,89.99113,-90.0,05/04/6852 +8.05807,49.63111,5682,7,13,19,27,37,5.25,5.0,fr,35356,113,1497813,1,1,Active Shallow Crust,128.8858,89.98734,0.0,07/13/5682 +5.10678,51.73491,1774,1,15,8,3,43,3.85,5.0,fr,35357,35,1498125,1,1,Active Shallow Crust,128.8957,89.99337,0.0,01/15/1774 +5.10678,51.73491,9541,9,6,17,43,34,4.05,5.0,fr,35358,190,1498143,1,1,Active Shallow Crust,240.0068,58.00618,0.0,09/06/9541 +-0.26477,44.3745,4342,1,18,17,59,36,3.75,5.0,fr,35359,86,1498593,1,1,Active Shallow Crust,128.8969,89.96732,0.0,01/18/4342 +8.25392,49.90213,6516,4,22,9,17,58,3.55,5.0,fr,35360,130,1499040,1,2,Active Shallow Crust,0.0,89.98701,0.0,04/22/6516 +8.25392,49.90213,5740,7,8,16,16,11,3.55,5.0,fr,35361,114,1499040,1,2,Active Shallow Crust,0.0,89.98701,0.0,07/08/5740 +8.25392,49.90213,477,11,9,4,33,45,3.55,15.0,fr,35362,9,1499041,1,1,Active Shallow Crust,0.0,89.98701,0.0,11/09/0477 +8.25392,49.90213,1917,12,29,4,9,41,3.55,5.0,fr,35363,38,1499043,1,2,Active Shallow Crust,240.0128,57.99638,0.0,12/29/1917 +8.25392,49.90213,4836,9,20,0,29,0,3.55,5.0,fr,35364,96,1499043,1,2,Active Shallow Crust,240.0128,57.99638,0.0,09/20/4836 +8.25392,49.90213,9218,1,21,5,31,19,3.65,5.0,fr,35365,184,1499052,1,1,Active Shallow Crust,0.0,89.98843,0.0,01/21/9218 +8.25392,49.90213,5182,12,24,20,28,44,3.65,15.0,fr,35366,103,1499053,1,2,Active Shallow Crust,0.0,89.98843,0.0,12/24/5182 +8.25392,49.90213,3093,11,26,6,12,16,3.65,15.0,fr,35367,61,1499053,1,2,Active Shallow Crust,0.0,89.98843,0.0,11/26/3093 +8.25392,49.90213,8176,6,2,10,50,39,3.65,5.0,fr,35368,163,1499055,1,1,Active Shallow Crust,240.0012,58.01422,0.0,06/02/8176 +8.25392,49.90213,3633,11,10,0,8,57,3.65,5.0,fr,35369,72,1499058,1,1,Active Shallow Crust,0.0,89.98829,-90.0,11/10/3633 +8.25392,49.90213,2975,10,2,2,51,3,3.75,5.0,fr,35370,59,1499064,1,1,Active Shallow Crust,0.0,89.98969,0.0,10/02/2975 +8.25392,49.90213,4100,11,9,12,5,1,3.75,27.5,fr,35371,81,1499066,1,2,Active Shallow Crust,0.0,89.98969,0.0,11/09/4100 +8.25392,49.90213,481,5,27,15,19,20,3.75,27.5,fr,35372,9,1499066,1,2,Active Shallow Crust,0.0,89.98969,0.0,05/27/0481 +8.25392,49.90213,3443,3,22,12,22,44,3.75,5.0,fr,35373,68,1499070,1,1,Active Shallow Crust,0.0,89.98956,-90.0,03/22/3443 +8.25392,49.90213,5603,10,26,8,58,1,3.85,5.0,fr,35374,112,1499076,1,2,Active Shallow Crust,0.0,89.99081,0.0,10/26/5603 +8.25392,49.90213,7717,2,9,5,3,9,3.85,5.0,fr,35375,154,1499076,1,2,Active Shallow Crust,0.0,89.99081,0.0,02/09/7717 +8.25392,49.90213,5328,1,13,17,10,10,3.85,15.0,fr,35376,106,1499077,1,1,Active Shallow Crust,0.0,89.99081,0.0,01/13/5328 +8.25392,49.90213,4395,2,10,2,32,15,3.95,5.0,fr,35377,87,1499088,1,4,Active Shallow Crust,0.0,89.99181,0.0,02/10/4395 +8.25392,49.90213,6347,12,7,18,19,2,3.95,5.0,fr,35378,126,1499088,1,4,Active Shallow Crust,0.0,89.99181,0.0,12/07/6347 +8.25392,49.90213,6437,4,13,17,23,12,3.95,5.0,fr,35379,128,1499088,1,4,Active Shallow Crust,0.0,89.99181,0.0,04/13/6437 +8.25392,49.90213,613,6,5,4,47,21,3.95,5.0,fr,35380,12,1499088,1,4,Active Shallow Crust,0.0,89.99181,0.0,06/05/0613 +8.25392,49.90213,3459,12,12,2,1,42,3.95,15.0,fr,35381,69,1499089,1,1,Active Shallow Crust,0.0,89.99181,0.0,12/12/3459 +8.25392,49.90213,8735,5,9,21,10,43,3.95,5.0,fr,35382,174,1499094,1,1,Active Shallow Crust,0.0,89.99171,-90.0,05/09/8735 +8.25392,49.90213,6459,4,9,4,39,33,3.95,27.5,fr,35383,129,1499099,1,1,Active Shallow Crust,128.9007,89.99181,0.0,04/09/6459 +8.25392,49.90213,8868,8,18,10,19,52,4.05,5.0,fr,35384,177,1499100,1,1,Active Shallow Crust,0.0,89.99269,0.0,08/18/8868 +8.25392,49.90213,1669,12,24,9,32,32,4.05,27.5,fr,35385,33,1499102,1,1,Active Shallow Crust,0.0,89.99269,0.0,12/24/1669 +8.25392,49.90213,39,7,8,13,1,25,4.15,27.5,fr,35386,0,1499114,1,1,Active Shallow Crust,0.0,89.98698,0.0,07/08/0039 +8.25392,49.90213,2353,4,18,18,38,27,4.45,5.0,fr,35387,47,1499148,1,2,Active Shallow Crust,0.0,89.99078,0.0,04/18/2353 +8.25392,49.90213,8042,10,10,18,18,45,4.45,5.0,fr,35388,160,1499148,1,2,Active Shallow Crust,0.0,89.99078,0.0,10/10/8042 +8.25392,49.90213,603,5,23,3,12,26,4.55,5.0,fr,35389,12,1499160,1,1,Active Shallow Crust,0.0,89.99178,0.0,05/23/0603 +8.25392,49.90213,5427,12,1,20,12,53,4.95,15.0,fr,35390,108,1499209,1,1,Active Shallow Crust,0.0,89.98963,0.0,12/01/5427 +8.41701,50.41677,5660,10,21,9,4,35,3.55,5.0,fr,35391,113,1499520,1,1,Active Shallow Crust,0.0,89.98715,0.0,10/21/5660 +8.41701,50.41677,5898,5,21,23,33,27,3.55,5.0,fr,35392,117,1499526,1,1,Active Shallow Crust,0.0,89.987,-90.0,05/21/5898 +8.41701,50.41677,9693,3,10,17,37,45,3.75,5.0,fr,35393,193,1499544,1,3,Active Shallow Crust,0.0,89.98979,0.0,03/10/9693 +8.41701,50.41677,7819,9,5,16,47,55,3.75,5.0,fr,35394,156,1499544,1,3,Active Shallow Crust,0.0,89.98979,0.0,09/05/7819 +8.41701,50.41677,915,11,18,22,51,38,3.75,5.0,fr,35395,18,1499544,1,3,Active Shallow Crust,0.0,89.98979,0.0,11/18/0915 +8.41701,50.41677,7851,5,30,7,59,14,3.75,27.5,fr,35396,157,1499549,1,1,Active Shallow Crust,240.0085,58.01837,0.0,05/30/7851 +8.41701,50.41677,8082,12,19,4,27,17,3.75,15.0,fr,35397,161,1499551,1,1,Active Shallow Crust,0.0,89.98968,-90.0,12/19/8082 +8.41701,50.41677,5265,10,13,7,8,34,3.75,27.5,fr,35398,105,1499555,1,1,Active Shallow Crust,128.8958,89.96756,0.0,10/13/5265 +8.41701,50.41677,2814,2,6,7,2,4,3.85,5.0,fr,35399,56,1499556,1,1,Active Shallow Crust,0.0,89.99091,0.0,02/06/2814 +8.41701,50.41677,6620,4,17,3,22,6,3.85,15.0,fr,35400,132,1499557,1,1,Active Shallow Crust,0.0,89.99091,0.0,04/17/6620 +8.41701,50.41677,8707,12,30,9,40,17,4.35,5.0,fr,35401,174,1499616,1,1,Active Shallow Crust,0.0,89.98977,0.0,12/30/8707 +3.20229,52.07156,6498,4,28,18,57,7,4.15,5.0,fr,35402,129,1500072,1,1,Active Shallow Crust,0.0,89.99068,0.0,04/28/6498 +3.20229,52.07156,3626,5,22,8,48,57,4.35,5.0,fr,35403,72,1500099,1,1,Active Shallow Crust,240.0099,57.99621,0.0,05/22/3626 +3.64626,41.49957,7563,8,14,14,10,10,3.55,5.0,fr,35404,151,1500480,1,1,Active Shallow Crust,0.0,89.98867,0.0,08/14/7563 +3.64626,41.49957,447,5,6,19,54,38,3.55,5.0,fr,35405,8,1500483,1,1,Active Shallow Crust,240.0118,57.9984,0.0,05/06/0447 +3.64626,41.49957,5787,1,23,5,27,49,3.75,5.0,fr,35406,115,1500504,1,1,Active Shallow Crust,0.0,89.991,0.0,01/23/5787 +3.64626,41.49957,5841,2,25,17,49,18,3.75,5.0,fr,35407,116,1500507,1,1,Active Shallow Crust,240.0073,58.01757,0.0,02/25/5841 +3.64626,41.49957,4253,3,16,22,46,10,4.05,15.0,fr,35408,85,1500541,1,2,Active Shallow Crust,0.0,89.98938,0.0,03/16/4253 +3.64626,41.49957,5740,3,9,11,14,21,4.05,15.0,fr,35409,114,1500541,1,2,Active Shallow Crust,0.0,89.98938,0.0,03/09/5740 +7.94503,47.97436,3499,10,4,6,33,49,3.55,5.0,fr,35410,69,1500960,1,2,Active Shallow Crust,0.0,89.99325,0.0,10/04/3499 +7.94503,47.97436,6991,6,18,21,20,31,3.55,5.0,fr,35411,139,1500960,1,2,Active Shallow Crust,0.0,89.99325,0.0,06/18/6991 +7.94503,47.97436,1665,9,5,11,57,13,3.55,15.0,fr,35412,33,1500961,1,1,Active Shallow Crust,0.0,89.99325,0.0,09/05/1665 +7.94503,47.97436,3580,10,1,13,39,30,3.55,5.0,fr,35413,71,1500963,1,1,Active Shallow Crust,240.0109,57.99897,0.0,10/01/3580 +7.94503,47.97436,1465,1,29,13,8,49,3.55,5.0,fr,35414,29,1500969,1,1,Active Shallow Crust,128.896,89.99325,0.0,01/29/1465 +7.94503,47.97436,4255,6,15,10,17,17,3.65,5.0,fr,35415,85,1500972,1,2,Active Shallow Crust,0.0,89.98797,0.0,06/15/4255 +7.94503,47.97436,8159,9,12,16,14,20,3.65,5.0,fr,35416,163,1500972,1,2,Active Shallow Crust,0.0,89.98797,0.0,09/12/8159 +7.94503,47.97436,8442,4,14,17,55,19,3.65,15.0,fr,35417,168,1500982,1,1,Active Shallow Crust,128.9001,89.96355,0.0,04/14/8442 +7.94503,47.97436,8128,10,28,2,39,37,3.75,5.0,fr,35418,162,1500984,1,3,Active Shallow Crust,0.0,89.98927,0.0,10/28/8128 +7.94503,47.97436,5277,3,31,18,41,2,3.75,5.0,fr,35419,105,1500984,1,3,Active Shallow Crust,0.0,89.98927,0.0,03/31/5277 +7.94503,47.97436,5505,6,29,5,34,10,3.75,5.0,fr,35420,110,1500984,1,3,Active Shallow Crust,0.0,89.98927,0.0,06/29/5505 +7.94503,47.97436,8816,6,21,7,43,41,3.75,5.0,fr,35421,176,1500987,1,1,Active Shallow Crust,240.0083,58.0176,0.0,06/21/8816 +7.94503,47.97436,1245,2,12,2,9,36,3.85,5.0,fr,35422,24,1500996,1,1,Active Shallow Crust,0.0,89.99044,0.0,02/12/1245 +7.94503,47.97436,9980,5,26,19,57,36,3.95,5.0,fr,35423,199,1501008,1,1,Active Shallow Crust,0.0,89.99148,0.0,05/26/9980 +7.94503,47.97436,9762,1,13,8,48,39,3.95,15.0,fr,35424,195,1501009,1,1,Active Shallow Crust,0.0,89.99148,0.0,01/13/9762 +7.94503,47.97436,232,9,3,11,6,35,3.95,15.0,fr,35425,4,1501012,1,1,Active Shallow Crust,240.02,58.00493,0.0,09/03/0232 +7.94503,47.97436,9520,9,14,7,22,12,4.05,15.0,fr,35426,190,1501021,1,1,Active Shallow Crust,0.0,89.98861,0.0,09/14/9520 +7.94503,47.97436,898,3,23,7,39,19,4.05,5.0,fr,35427,17,1501023,1,1,Active Shallow Crust,240.0063,58.00552,0.0,03/23/0898 +7.94503,47.97436,1775,5,7,0,55,10,4.15,15.0,fr,35428,35,1501033,1,1,Active Shallow Crust,0.0,89.98985,0.0,05/07/1775 +7.94503,47.97436,5705,3,3,6,32,37,4.15,5.0,fr,35429,114,1501035,1,1,Active Shallow Crust,240.0083,57.99758,0.0,03/03/5705 +7.94503,47.97436,3362,7,21,9,12,37,4.15,5.0,fr,35430,67,1501038,1,1,Active Shallow Crust,0.0,89.98973,-90.0,07/21/3362 +7.94503,47.97436,6003,1,9,15,0,11,4.35,5.0,fr,35431,120,1501056,1,2,Active Shallow Crust,0.0,89.98925,0.0,01/09/6003 +7.94503,47.97436,22,5,4,3,57,41,4.35,5.0,fr,35432,0,1501056,1,2,Active Shallow Crust,0.0,89.98925,0.0,05/04/0022 +7.94503,47.97436,8739,6,2,12,16,37,4.35,15.0,fr,35433,174,1501057,1,1,Active Shallow Crust,0.0,89.98925,0.0,06/02/8739 +7.94503,47.97436,9054,11,3,21,21,48,4.35,15.0,fr,35434,181,1501063,1,1,Active Shallow Crust,0.0,89.98913,-90.0,11/03/9054 +7.94503,47.97436,88,12,27,16,53,39,4.35,5.0,fr,35435,1,1501065,1,1,Active Shallow Crust,128.8978,89.9826,0.0,12/27/0088 +7.94503,47.97436,983,7,1,10,22,59,4.65,27.5,fr,35436,19,1501094,1,1,Active Shallow Crust,0.0,89.99049,0.0,07/01/0983 +7.94503,47.97436,5318,3,5,14,43,25,4.65,5.0,fr,35437,106,1501101,1,1,Active Shallow Crust,128.8902,89.98728,0.0,03/05/5318 +0.25055,42.37442,6680,7,9,23,26,4,3.55,5.0,fr,35438,133,1501440,1,1,Active Shallow Crust,0.0,89.99022,0.0,07/09/6680 +0.25055,42.37442,5615,4,18,15,2,21,3.65,15.0,fr,35439,112,1501453,1,1,Active Shallow Crust,0.0,89.99004,0.0,04/18/5615 +0.25055,42.37442,20,10,13,8,44,10,3.75,15.0,fr,35440,0,1501465,1,1,Active Shallow Crust,0.0,89.99001,0.0,10/13/0020 +0.25055,42.37442,6721,11,19,15,20,41,3.75,15.0,fr,35441,134,1501468,1,1,Active Shallow Crust,240.0079,58.01754,0.0,11/19/6721 +0.25055,42.37442,8671,6,19,11,18,28,3.75,5.0,fr,35442,173,1501470,1,1,Active Shallow Crust,0.0,89.9899,-90.0,06/19/8671 +0.25055,42.37442,3631,5,7,8,54,27,3.85,27.5,fr,35443,72,1501478,1,1,Active Shallow Crust,0.0,89.99011,0.0,05/07/3631 +0.25055,42.37442,1729,4,28,14,30,3,3.85,5.0,fr,35444,34,1501485,1,1,Active Shallow Crust,128.8961,89.99374,0.0,04/28/1729 +0.25055,42.37442,1468,6,26,16,59,9,3.95,5.0,fr,35445,29,1501494,1,1,Active Shallow Crust,0.0,89.9899,-90.0,06/26/1468 +0.25055,42.37442,8278,12,7,11,49,44,4.95,5.0,fr,35446,165,1501608,1,1,Active Shallow Crust,0.0,89.98997,0.0,12/07/8278 +0.25055,42.37442,6932,3,15,9,59,53,5.35,15.0,fr,35447,138,1501657,1,1,Active Shallow Crust,0.0,89.98997,0.0,03/15/6932 +0.25055,42.37442,6043,3,27,5,17,10,6.05,15.0,fr,35448,120,1501741,1,1,Active Shallow Crust,0.0,89.98999,0.0,03/27/6043 +-1.42631,43.57553,8150,5,17,5,56,3,3.65,5.0,fr,35449,162,1501932,1,1,Active Shallow Crust,0.0,89.99023,0.0,05/17/8150 +-1.42631,43.57553,2258,11,3,0,34,16,3.65,15.0,fr,35450,45,1501933,1,1,Active Shallow Crust,0.0,89.99023,0.0,11/03/2258 +-1.42631,43.57553,525,5,17,1,37,39,3.75,5.0,fr,35451,10,1501944,1,1,Active Shallow Crust,0.0,89.98985,0.0,05/17/0525 +-1.42631,43.57553,851,9,25,9,54,53,3.75,27.5,fr,35452,17,1501946,1,1,Active Shallow Crust,0.0,89.98985,0.0,09/25/0851 +-1.42631,43.57553,9151,4,30,7,26,45,3.85,5.0,fr,35453,183,1501959,1,1,Active Shallow Crust,240.0103,57.99779,0.0,04/30/9151 +-1.42631,43.57553,6692,5,30,17,52,19,4.25,5.0,fr,35454,133,1502004,1,3,Active Shallow Crust,0.0,89.99021,0.0,05/30/6692 +-1.42631,43.57553,9598,12,23,9,34,12,4.25,5.0,fr,35455,191,1502004,1,3,Active Shallow Crust,0.0,89.99021,0.0,12/23/9598 +-1.42631,43.57553,6756,9,14,8,30,19,4.25,5.0,fr,35456,135,1502004,1,3,Active Shallow Crust,0.0,89.99021,0.0,09/14/6756 +-1.42631,43.57553,9788,4,29,19,32,56,4.35,15.0,fr,35457,195,1502020,1,1,Active Shallow Crust,240.0077,57.9958,0.0,04/29/9788 +-1.42631,43.57553,9059,3,5,10,19,54,4.65,5.0,fr,35458,181,1502052,1,1,Active Shallow Crust,0.0,89.99022,0.0,03/05/9059 +-0.93616,41.83569,3986,7,7,3,24,24,3.65,15.0,fr,35459,79,1502413,1,1,Active Shallow Crust,0.0,89.98995,0.0,07/07/3986 +-0.93616,41.83569,3953,7,19,4,54,25,3.75,15.0,fr,35460,79,1502425,1,1,Active Shallow Crust,0.0,89.9903,0.0,07/19/3953 +-0.93616,41.83569,1666,8,19,6,19,55,4.25,5.0,fr,35461,33,1502484,1,1,Active Shallow Crust,0.0,89.98993,0.0,08/19/1666 +3.32909,43.32765,6006,4,1,16,12,9,3.65,5.0,fr,35462,120,1503372,1,1,Active Shallow Crust,0.0,89.9902,0.0,04/01/6006 +3.32909,43.32765,9342,4,21,8,22,33,3.65,15.0,fr,35463,186,1503373,1,1,Active Shallow Crust,0.0,89.9902,0.0,04/21/9342 +3.32909,43.32765,1772,9,23,14,27,13,3.65,27.5,fr,35464,35,1503374,1,2,Active Shallow Crust,0.0,89.9902,0.0,09/23/1772 +3.32909,43.32765,5324,10,19,5,59,35,3.65,27.5,fr,35465,106,1503374,1,2,Active Shallow Crust,0.0,89.9902,0.0,10/19/5324 +3.32909,43.32765,1075,7,21,4,19,54,3.85,5.0,fr,35466,21,1503405,1,1,Active Shallow Crust,128.8962,89.99351,0.0,07/21/1075 +3.32909,43.32765,7238,3,26,12,20,50,3.95,5.0,fr,35467,144,1503408,1,1,Active Shallow Crust,0.0,89.99075,0.0,03/26/7238 +3.32909,43.32765,8092,9,17,20,37,18,3.95,15.0,fr,35468,161,1503412,1,1,Active Shallow Crust,240.0192,58.00477,0.0,09/17/8092 +3.32909,43.32765,1391,5,30,16,55,21,3.95,27.5,fr,35469,27,1503413,1,1,Active Shallow Crust,240.0192,58.00477,0.0,05/30/1391 +3.32909,43.32765,5202,4,23,0,58,54,4.05,15.0,fr,35470,104,1503421,1,1,Active Shallow Crust,0.0,89.98969,0.0,04/23/5202 +3.32909,43.32765,1590,1,29,22,2,54,4.15,15.0,fr,35471,31,1503436,1,1,Active Shallow Crust,240.008,57.99704,0.0,01/29/1590 +3.32909,43.32765,3226,9,27,17,21,34,4.25,5.0,fr,35472,64,1503444,1,1,Active Shallow Crust,0.0,89.99017,0.0,09/27/3226 +3.32909,43.32765,5331,6,15,13,42,35,4.55,5.0,fr,35473,106,1503480,1,1,Active Shallow Crust,0.0,89.98956,0.0,06/15/5331 +3.32909,43.32765,5761,11,8,11,53,6,5.15,5.0,fr,35474,115,1503552,1,1,Active Shallow Crust,0.0,89.99011,0.0,11/08/5761 +0.90211,46.22515,5487,2,8,3,33,34,3.55,15.0,fr,35475,109,1504321,1,1,Active Shallow Crust,0.0,89.99041,0.0,02/08/5487 +0.90211,46.22515,7934,7,1,7,9,2,3.55,27.5,fr,35476,158,1504331,1,1,Active Shallow Crust,128.8963,89.9939,0.0,07/01/7934 +0.90211,46.22515,8176,3,20,5,49,40,3.75,15.0,fr,35477,163,1504345,1,1,Active Shallow Crust,0.0,89.9903,0.0,03/20/8176 +0.90211,46.22515,3932,6,9,19,16,40,3.85,15.0,fr,35478,78,1504357,1,1,Active Shallow Crust,0.0,89.99012,0.0,06/09/3932 +0.90211,46.22515,653,8,2,22,18,24,4.05,15.0,fr,35479,13,1504381,1,1,Active Shallow Crust,0.0,89.99019,0.0,08/02/0653 +0.90211,46.22515,7448,3,1,22,59,3,4.15,15.0,fr,35480,148,1504402,1,1,Active Shallow Crust,128.8976,89.99366,0.0,03/01/7448 +0.90211,46.22515,9190,12,16,16,4,23,5.05,5.0,fr,35481,183,1504500,1,1,Active Shallow Crust,359.9999,89.99007,0.0,12/16/9190 +-0.80735,51.29059,314,12,22,0,4,50,3.75,5.0,fr,35482,6,1504833,1,1,Active Shallow Crust,128.896,89.96735,0.0,12/22/0314 +-0.80735,51.29059,2629,5,30,20,33,20,4.25,5.0,fr,35483,52,1504884,1,1,Active Shallow Crust,0.0,89.99014,0.0,05/30/2629 +-1.45239,49.40515,5441,6,29,6,46,25,3.55,5.0,fr,35484,108,1505280,1,1,Active Shallow Crust,0.0,89.99016,0.0,06/29/5441 +-1.45239,49.40515,5538,1,13,5,32,51,3.55,5.0,fr,35485,110,1505289,1,1,Active Shallow Crust,128.896,89.99426,0.0,01/13/5538 +-1.45239,49.40515,4972,10,27,16,14,31,3.65,5.0,fr,35486,99,1505292,1,1,Active Shallow Crust,0.0,89.98977,0.0,10/27/4972 +-1.45239,49.40515,1415,7,11,22,46,23,3.65,15.0,fr,35487,28,1505293,1,1,Active Shallow Crust,0.0,89.98977,0.0,07/11/1415 +-1.45239,49.40515,4128,4,1,16,57,51,3.75,5.0,fr,35488,82,1505304,1,1,Active Shallow Crust,0.0,89.98958,0.0,04/01/4128 +-1.45239,49.40515,4415,10,6,13,1,59,3.85,5.0,fr,35489,88,1505316,1,1,Active Shallow Crust,0.0,89.98955,0.0,10/06/4415 +-1.45239,49.40515,5545,11,1,1,55,56,4.05,5.0,fr,35490,110,1505340,1,1,Active Shallow Crust,0.0,89.98985,0.0,11/01/5545 +-1.45239,49.40515,1691,7,31,15,35,5,4.25,5.0,fr,35491,33,1505364,1,2,Active Shallow Crust,0.0,89.98974,0.0,07/31/1691 +-1.45239,49.40515,4820,7,6,12,21,0,4.25,5.0,fr,35492,96,1505364,1,2,Active Shallow Crust,0.0,89.98974,0.0,07/06/4820 +-1.45239,49.40515,5678,11,9,15,5,48,4.25,5.0,fr,35493,113,1505367,1,1,Active Shallow Crust,240.0082,57.99419,0.0,11/09/5678 +-1.45239,49.40515,4133,5,13,12,26,17,4.25,15.0,fr,35494,82,1505371,1,1,Active Shallow Crust,0.0,89.99036,-90.0,05/13/4133 +-1.45239,49.40515,471,8,16,10,41,29,4.65,5.0,fr,35495,9,1505418,1,1,Active Shallow Crust,0.0,89.99018,-90.0,08/16/0471 +-1.45239,49.40515,292,8,21,22,37,36,4.85,5.0,fr,35496,5,1505442,1,1,Active Shallow Crust,0.0,89.98997,-90.0,08/21/0292 +9.24706,49.50303,1742,5,20,0,28,28,3.75,15.0,fr,35497,34,1505785,1,1,Active Shallow Crust,0.0,89.98959,0.0,05/20/1742 +2.68049,41.75839,8961,5,24,12,58,6,3.55,5.0,fr,35498,179,1506240,1,6,Active Shallow Crust,0.0,89.98872,0.0,05/24/8961 +2.68049,41.75839,2313,7,4,11,15,46,3.55,5.0,fr,35499,46,1506240,1,6,Active Shallow Crust,0.0,89.98872,0.0,07/04/2313 +2.68049,41.75839,3964,6,20,4,56,16,3.55,5.0,fr,35500,79,1506240,1,6,Active Shallow Crust,0.0,89.98872,0.0,06/20/3964 +2.68049,41.75839,6532,4,11,14,34,32,3.55,5.0,fr,35501,130,1506240,1,6,Active Shallow Crust,0.0,89.98872,0.0,04/11/6532 +2.68049,41.75839,9216,2,13,2,40,14,3.55,5.0,fr,35502,184,1506240,1,6,Active Shallow Crust,0.0,89.98872,0.0,02/13/9216 +2.68049,41.75839,7129,8,25,3,41,33,3.55,5.0,fr,35503,142,1506240,1,6,Active Shallow Crust,0.0,89.98872,0.0,08/25/7129 +2.68049,41.75839,6420,3,1,14,5,58,3.55,15.0,fr,35504,128,1506241,1,1,Active Shallow Crust,0.0,89.98872,0.0,03/01/6420 +2.68049,41.75839,3307,2,28,14,33,20,3.55,5.0,fr,35505,66,1506243,1,1,Active Shallow Crust,240.0121,57.99788,0.0,02/28/3307 +2.68049,41.75839,8391,12,3,13,42,27,3.55,15.0,fr,35506,167,1506244,1,1,Active Shallow Crust,240.0121,57.99788,0.0,12/03/8391 +2.68049,41.75839,7466,10,11,23,40,18,3.55,5.0,fr,35507,149,1506249,1,1,Active Shallow Crust,128.8958,89.99436,0.0,10/11/7466 +2.68049,41.75839,512,7,20,8,33,37,3.65,5.0,fr,35508,10,1506252,1,2,Active Shallow Crust,0.0,89.98994,0.0,07/20/0512 +2.68049,41.75839,3121,10,8,5,50,52,3.65,5.0,fr,35509,62,1506252,1,2,Active Shallow Crust,0.0,89.98994,0.0,10/08/3121 +2.68049,41.75839,1032,6,1,10,24,33,3.65,15.0,fr,35510,20,1506253,1,3,Active Shallow Crust,0.0,89.98994,0.0,06/01/1032 +2.68049,41.75839,5842,8,19,15,27,14,3.65,15.0,fr,35511,116,1506253,1,3,Active Shallow Crust,0.0,89.98994,0.0,08/19/5842 +2.68049,41.75839,9549,6,14,12,37,52,3.65,15.0,fr,35512,190,1506253,1,3,Active Shallow Crust,0.0,89.98994,0.0,06/14/9549 +2.68049,41.75839,9504,7,30,10,45,58,3.65,5.0,fr,35513,190,1506258,1,1,Active Shallow Crust,0.0,89.98983,-90.0,07/30/9504 +2.68049,41.75839,1891,2,18,1,41,14,3.65,15.0,fr,35514,37,1506262,1,1,Active Shallow Crust,128.9015,89.96343,0.0,02/18/1891 +2.68049,41.75839,4128,10,6,17,12,37,3.75,15.0,fr,35515,82,1506271,1,1,Active Shallow Crust,0.0,89.99094,-90.0,10/06/4128 +2.68049,41.75839,7055,2,28,8,12,19,3.75,5.0,fr,35516,141,1506273,1,1,Active Shallow Crust,128.8971,89.9671,0.0,02/28/7055 +2.68049,41.75839,4066,6,9,14,38,34,3.85,5.0,fr,35517,81,1506276,1,1,Active Shallow Crust,0.0,89.98935,0.0,06/09/4066 +2.68049,41.75839,771,9,26,13,57,26,3.85,15.0,fr,35518,15,1506277,1,2,Active Shallow Crust,0.0,89.98935,0.0,09/26/0771 +2.68049,41.75839,9103,3,29,9,34,48,3.85,15.0,fr,35519,182,1506277,1,2,Active Shallow Crust,0.0,89.98935,0.0,03/29/9103 +2.68049,41.75839,9097,11,9,6,2,5,3.85,5.0,fr,35520,181,1506279,1,2,Active Shallow Crust,240.0103,57.99761,0.0,11/09/9097 +2.68049,41.75839,4657,10,15,3,53,21,3.85,5.0,fr,35521,93,1506279,1,2,Active Shallow Crust,240.0103,57.99761,0.0,10/15/4657 +2.68049,41.75839,7318,8,26,14,35,0,3.85,5.0,fr,35522,146,1506282,1,3,Active Shallow Crust,0.0,89.98923,-90.0,08/26/7318 +2.68049,41.75839,8816,5,5,19,59,33,3.85,5.0,fr,35523,176,1506282,1,3,Active Shallow Crust,0.0,89.98923,-90.0,05/05/8816 +2.68049,41.75839,1231,6,19,17,52,33,3.85,5.0,fr,35524,24,1506282,1,3,Active Shallow Crust,0.0,89.98923,-90.0,06/19/1231 +2.68049,41.75839,1482,6,24,21,50,44,3.85,15.0,fr,35525,29,1506286,1,1,Active Shallow Crust,128.8958,89.99467,0.0,06/24/1482 +2.68049,41.75839,8200,11,9,22,28,13,3.95,5.0,fr,35526,163,1506288,1,1,Active Shallow Crust,0.0,89.99051,0.0,11/09/8200 +2.68049,41.75839,6735,12,9,22,21,53,3.95,5.0,fr,35527,134,1506291,1,1,Active Shallow Crust,240.0193,58.00491,0.0,12/09/6735 +2.68049,41.75839,755,10,27,11,6,16,3.95,15.0,fr,35528,15,1506292,1,1,Active Shallow Crust,240.0193,58.00491,0.0,10/27/0755 +2.68049,41.75839,6670,11,17,5,4,40,3.95,5.0,fr,35529,133,1506294,1,1,Active Shallow Crust,0.0,89.99039,-90.0,11/17/6670 +2.68049,41.75839,2670,3,28,5,50,8,4.05,5.0,fr,35530,53,1506300,1,1,Active Shallow Crust,0.0,89.98943,0.0,03/28/2670 +2.68049,41.75839,5452,11,15,11,42,34,4.05,27.5,fr,35531,109,1506302,1,1,Active Shallow Crust,0.0,89.98943,0.0,11/15/5452 +2.68049,41.75839,7450,11,26,20,37,56,4.05,5.0,fr,35532,148,1506303,1,1,Active Shallow Crust,240.005,58.00575,0.0,11/26/7450 +2.68049,41.75839,7196,5,21,23,9,31,4.15,5.0,fr,35533,143,1506312,1,1,Active Shallow Crust,0.0,89.99058,0.0,05/21/7196 +2.68049,41.75839,2455,12,29,4,0,58,4.15,15.0,fr,35534,49,1506313,1,1,Active Shallow Crust,0.0,89.99058,0.0,12/29/2455 +2.68049,41.75839,5363,1,10,8,7,56,4.25,5.0,fr,35535,107,1506324,1,1,Active Shallow Crust,0.0,89.98992,0.0,01/10/5363 +2.68049,41.75839,5860,2,28,22,21,38,4.35,5.0,fr,35536,117,1506336,1,2,Active Shallow Crust,0.0,89.98952,0.0,02/28/5860 +2.68049,41.75839,4289,10,9,1,50,20,4.35,5.0,fr,35537,85,1506336,1,2,Active Shallow Crust,0.0,89.98952,0.0,10/09/4289 +2.68049,41.75839,7351,3,27,11,57,0,4.45,5.0,fr,35538,147,1506348,1,1,Active Shallow Crust,0.0,89.99066,0.0,03/27/7351 +2.68049,41.75839,7929,4,19,10,21,12,4.45,15.0,fr,35539,158,1506352,1,1,Active Shallow Crust,240.0041,57.99458,0.0,04/19/7929 +2.68049,41.75839,5777,9,7,2,57,43,4.65,5.0,fr,35540,115,1506375,1,1,Active Shallow Crust,240.0093,57.99399,0.0,09/07/5777 +2.68049,41.75839,8489,1,25,23,14,18,4.95,5.0,fr,35541,169,1506411,1,1,Active Shallow Crust,240.0099,58.00405,0.0,01/25/8489 +2.68049,41.75839,4869,3,30,8,38,59,5.05,5.0,fr,35542,97,1506429,1,1,Active Shallow Crust,128.8873,89.99042,0.0,03/30/4869 +2.68049,41.75839,5558,3,13,7,29,44,5.45,5.0,fr,35543,111,1506468,1,1,Active Shallow Crust,0.0,89.98987,0.0,03/13/5558 +2.68049,41.75839,9025,6,2,1,17,17,5.55,5.0,fr,35544,180,1506489,1,1,Active Shallow Crust,128.8796,89.98982,0.0,06/02/9025 +2.68049,41.75839,7368,5,18,4,5,39,5.65,5.0,fr,35545,147,1506495,1,1,Active Shallow Crust,240.0296,58.00112,0.0,05/18/7368 +-2.6335,48.37549,3401,3,21,15,53,4,3.55,5.0,fr,35546,68,1506720,1,1,Active Shallow Crust,0.0,89.98995,0.0,03/21/3401 +-2.6335,48.37549,2022,4,8,8,11,13,3.55,27.5,fr,35547,40,1506722,1,1,Active Shallow Crust,0.0,89.98995,0.0,04/08/2022 +-2.6335,48.37549,2358,11,26,7,52,23,3.55,27.5,fr,35548,47,1506725,1,1,Active Shallow Crust,240.0127,57.99791,0.0,11/26/2358 +-2.6335,48.37549,1594,7,21,3,38,17,3.65,15.0,fr,35549,31,1506733,1,1,Active Shallow Crust,0.0,89.99104,0.0,07/21/1594 +-2.6335,48.37549,6232,3,8,13,45,43,3.65,5.0,fr,35550,124,1506741,1,1,Active Shallow Crust,128.8999,89.96356,0.0,03/08/6232 +-2.6335,48.37549,7763,9,20,11,1,33,3.75,5.0,fr,35551,155,1506744,1,2,Active Shallow Crust,0.0,89.98936,0.0,09/20/7763 +-2.6335,48.37549,7562,8,9,22,5,41,3.75,5.0,fr,35552,151,1506744,1,2,Active Shallow Crust,0.0,89.98936,0.0,08/09/7562 +-2.6335,48.37549,7785,2,13,18,55,18,3.75,5.0,fr,35553,155,1506753,1,1,Active Shallow Crust,128.8959,89.96752,0.0,02/13/7785 +-2.6335,48.37549,891,5,20,18,21,34,3.85,5.0,fr,35554,17,1506756,1,1,Active Shallow Crust,0.0,89.99052,0.0,05/20/0891 +-2.6335,48.37549,128,4,21,18,43,52,3.95,5.0,fr,35555,2,1506768,1,1,Active Shallow Crust,0.0,89.98943,0.0,04/21/0128 +-2.6335,48.37549,7687,12,28,21,3,43,3.95,15.0,fr,35556,153,1506769,1,1,Active Shallow Crust,0.0,89.98943,0.0,12/28/7687 +-2.6335,48.37549,2109,5,12,12,53,25,4.05,5.0,fr,35557,42,1506780,1,1,Active Shallow Crust,0.0,89.99059,0.0,05/12/2109 +-2.6335,48.37549,8067,3,28,18,14,56,4.15,5.0,fr,35558,161,1506795,1,1,Active Shallow Crust,240.0089,57.99721,0.0,03/28/8067 +-2.6335,48.37549,4558,10,7,2,36,5,4.25,5.0,fr,35559,91,1506804,1,1,Active Shallow Crust,0.0,89.98952,0.0,10/07/4558 +-2.6335,48.37549,8101,11,25,7,49,34,4.35,15.0,fr,35560,162,1506823,1,1,Active Shallow Crust,0.0,89.99055,-90.0,11/25/8101 +0.61263,52.51739,2669,1,31,23,32,11,3.55,5.0,fr,35561,53,1507200,1,1,Active Shallow Crust,0.0,89.99003,0.0,01/31/2669 +0.61263,52.51739,5623,8,21,13,29,45,3.65,5.0,fr,35562,112,1507221,1,1,Active Shallow Crust,128.8999,89.96347,0.0,08/21/5623 +0.61263,52.51739,701,9,30,6,58,17,3.85,5.0,fr,35563,14,1507236,1,1,Active Shallow Crust,0.0,89.99023,0.0,09/30/0701 +0.00457,49.36482,7547,8,23,3,40,28,3.55,15.0,fr,35564,150,1507684,1,1,Active Shallow Crust,240.0125,57.99821,0.0,08/23/7547 +0.00457,49.36482,5124,4,13,16,17,40,3.65,15.0,fr,35565,102,1507693,1,2,Active Shallow Crust,0.0,89.99,0.0,04/13/5124 +0.00457,49.36482,4933,12,13,20,39,26,3.65,15.0,fr,35566,98,1507693,1,2,Active Shallow Crust,0.0,89.99,0.0,12/13/4933 +0.004569999,49.36482,8601,2,4,12,13,18,3.65,15.0,fr,35567,172,1507696,1,1,Active Shallow Crust,240.0014,58.01295,0.0,02/04/8601 +0.00457,49.36482,8747,4,2,11,42,24,3.65,5.0,fr,35568,174,1507701,1,1,Active Shallow Crust,128.9001,89.96351,0.0,04/02/8747 +0.00457,49.36482,1595,9,2,8,50,17,3.75,5.0,fr,35569,31,1507704,1,1,Active Shallow Crust,0.0,89.99,0.0,09/02/1595 +0.00457,49.36482,8173,10,5,6,42,28,3.85,5.0,fr,35570,163,1507722,1,1,Active Shallow Crust,360.0,89.99,-90.0,10/05/8173 +0.00457,49.36482,4457,9,2,12,19,52,3.95,5.0,fr,35571,89,1507728,1,2,Active Shallow Crust,360.0,89.99,0.0,09/02/4457 +0.00457,49.36482,1193,5,30,2,35,30,3.95,5.0,fr,35572,23,1507728,1,2,Active Shallow Crust,360.0,89.99,0.0,05/30/1193 +0.00457,49.36482,5732,5,15,7,53,18,3.95,15.0,fr,35573,114,1507729,1,1,Active Shallow Crust,360.0,89.99,0.0,05/15/5732 +0.00457,49.36482,8253,10,2,10,47,46,4.15,5.0,fr,35574,165,1507752,1,1,Active Shallow Crust,360.0,89.99,0.0,10/02/8253 +0.00457,49.36482,5524,3,2,4,48,38,4.15,5.0,fr,35575,110,1507755,1,1,Active Shallow Crust,240.009,57.99741,0.0,03/02/5524 +0.00457,49.36482,972,6,20,9,20,50,4.25,5.0,fr,35576,19,1507764,1,1,Active Shallow Crust,0.0,89.99,0.0,06/20/0972 +0.00457,49.36482,2512,7,8,1,36,57,4.85,5.0,fr,35577,50,1507836,1,1,Active Shallow Crust,360.0,89.99,0.0,07/08/2512 +0.00457,49.36482,2901,12,23,1,27,1,4.95,5.0,fr,35578,58,1507848,1,1,Active Shallow Crust,360.0,89.99,0.0,12/23/2901 +7.14148,48.01103,3750,10,5,21,16,24,3.55,5.0,fr,35579,74,1508160,1,1,Active Shallow Crust,0.0,89.99326,0.0,10/05/3750 +7.14148,48.01103,2917,12,16,2,34,14,3.55,15.0,fr,35580,58,1508161,1,1,Active Shallow Crust,0.0,89.99326,0.0,12/16/2917 +7.14148,48.01103,1122,9,23,5,17,16,3.55,5.0,fr,35581,22,1508166,1,1,Active Shallow Crust,0.0,89.99318,-90.0,09/23/1122 +7.14148,48.01103,9306,7,22,15,25,10,3.65,5.0,fr,35582,186,1508172,1,1,Active Shallow Crust,0.0,89.98798,0.0,07/22/9306 +7.14148,48.01103,458,3,31,18,39,34,3.65,15.0,fr,35583,9,1508173,1,1,Active Shallow Crust,0.0,89.98798,0.0,03/31/0458 +7.14148,48.01103,9008,12,24,19,29,41,3.75,5.0,fr,35584,180,1508184,1,1,Active Shallow Crust,0.0,89.98928,0.0,12/24/9008 +7.14148,48.01103,9641,7,14,14,2,58,3.75,15.0,fr,35585,192,1508185,1,1,Active Shallow Crust,0.0,89.98928,0.0,07/14/9641 +7.14148,48.01103,8202,1,31,9,31,55,4.05,15.0,fr,35586,164,1508221,1,1,Active Shallow Crust,0.0,89.98862,0.0,01/31/8202 +7.14148,48.01103,982,2,8,11,44,58,4.15,15.0,fr,35587,19,1508233,1,1,Active Shallow Crust,0.0,89.98985,0.0,02/08/0982 +7.14148,48.01103,3506,4,23,12,14,49,4.45,5.0,fr,35588,70,1508274,1,1,Active Shallow Crust,0.0,89.99031,-90.0,04/23/3506 +7.14148,48.01103,3860,7,21,14,56,55,4.55,15.0,fr,35589,77,1508284,1,1,Active Shallow Crust,240.01,57.99745,0.0,07/21/3860 +7.14148,48.01103,5312,9,22,21,4,15,4.75,5.0,fr,35590,106,1508304,1,1,Active Shallow Crust,0.0,89.98983,0.0,09/22/5312 +7.14148,48.01103,7351,5,11,6,25,17,4.85,5.0,fr,35591,147,1508316,1,1,Active Shallow Crust,0.0,89.98943,0.0,05/11/7351 +4.92072,52.07219,8094,8,11,15,31,58,3.55,5.0,fr,35592,161,1508640,1,1,Active Shallow Crust,0.0,89.9876,0.0,08/11/8094 +4.92072,52.07219,7256,7,26,12,48,48,3.65,5.0,fr,35593,145,1508655,1,1,Active Shallow Crust,240.0018,58.01313,0.0,07/26/7256 +4.92072,52.07219,636,5,8,0,48,14,4.35,5.0,fr,35594,12,1508736,1,1,Active Shallow Crust,0.0,89.99013,0.0,05/08/0636 +0.76981,51.36364,9853,3,23,22,39,38,3.55,15.0,fr,35595,197,1509121,1,1,Active Shallow Crust,0.0,89.98977,0.0,03/23/9853 +0.76981,51.36364,8036,3,16,8,57,6,3.65,5.0,fr,35596,160,1509132,1,1,Active Shallow Crust,0.0,89.99018,0.0,03/16/8036 +0.76981,51.36364,2674,6,21,0,45,11,3.65,5.0,fr,35597,53,1509135,1,1,Active Shallow Crust,240.0016,58.01303,0.0,06/21/2674 +0.76981,51.36364,872,10,26,5,23,6,3.85,27.5,fr,35598,17,1509158,1,1,Active Shallow Crust,0.0,89.98997,0.0,10/26/0872 +0.76981,51.36364,9880,11,8,13,44,59,4.05,5.0,fr,35599,197,1509183,1,1,Active Shallow Crust,240.0068,58.00598,0.0,11/08/9880 +0.76981,51.36364,7562,4,20,18,56,19,4.35,5.0,fr,35600,151,1509216,1,1,Active Shallow Crust,0.0,89.98997,0.0,04/20/7562 +0.76981,51.36364,8619,3,29,3,20,41,4.35,15.0,fr,35601,172,1509217,1,1,Active Shallow Crust,0.0,89.98997,0.0,03/29/8619 +3.67166,47.29368,344,4,22,2,42,57,3.55,5.0,fr,35602,6,1509603,1,1,Active Shallow Crust,240.0121,57.99867,0.0,04/22/0344 +3.67166,47.29368,6922,3,20,4,8,5,3.65,5.0,fr,35603,138,1509612,1,1,Active Shallow Crust,0.0,89.99086,0.0,03/20/6922 +3.67166,47.29368,1917,12,12,13,25,31,3.75,5.0,fr,35604,38,1509624,1,2,Active Shallow Crust,0.0,89.98914,0.0,12/12/1917 +3.67166,47.29368,84,10,5,17,22,18,3.75,5.0,fr,35605,1,1509624,1,2,Active Shallow Crust,0.0,89.98914,0.0,10/05/0084 +3.67166,47.29368,4255,11,26,1,25,30,3.75,5.0,fr,35606,85,1509627,1,1,Active Shallow Crust,240.0082,58.01785,0.0,11/26/4255 +3.67166,47.29368,6330,11,3,22,28,17,4.55,15.0,fr,35607,126,1509724,1,1,Active Shallow Crust,240.0096,57.99736,0.0,11/03/6330 +2.60394,44.40506,603,12,18,15,43,2,3.55,15.0,fr,35608,12,1510081,1,1,Active Shallow Crust,0.0,89.9892,0.0,12/18/0603 +2.60394,44.40506,55,6,27,3,58,36,3.55,5.0,fr,35609,1,1510086,1,1,Active Shallow Crust,0.0,89.98907,-90.0,06/27/0055 +2.60394,44.40506,22,7,1,3,11,24,3.75,5.0,fr,35610,0,1510104,1,3,Active Shallow Crust,0.0,89.99142,0.0,07/01/0022 +2.60394,44.40506,5665,4,19,23,20,42,3.75,5.0,fr,35611,113,1510104,1,3,Active Shallow Crust,0.0,89.99142,0.0,04/19/5665 +2.60394,44.40506,7642,3,13,10,3,28,3.75,5.0,fr,35612,152,1510104,1,3,Active Shallow Crust,0.0,89.99142,0.0,03/13/7642 +2.60394,44.40506,6286,3,11,6,36,57,3.85,5.0,fr,35613,125,1510125,1,1,Active Shallow Crust,128.8957,89.99362,0.0,03/11/6286 +2.60394,44.40506,6212,11,1,15,5,43,3.95,5.0,fr,35614,124,1510128,1,1,Active Shallow Crust,0.0,89.99091,0.0,11/01/6212 +2.60394,44.40506,8173,3,30,17,18,4,4.05,5.0,fr,35615,163,1510140,1,1,Active Shallow Crust,0.0,89.98987,0.0,03/30/8173 +2.60394,44.40506,5776,9,22,10,47,57,4.05,15.0,fr,35616,115,1510144,1,1,Active Shallow Crust,240.0054,58.00572,0.0,09/22/5776 +2.60394,44.40506,259,11,27,4,36,45,4.05,5.0,fr,35617,5,1510149,1,1,Active Shallow Crust,128.8904,89.99393,0.0,11/27/0259 +2.60394,44.40506,5731,11,18,2,4,29,4.25,5.0,fr,35618,114,1510164,1,1,Active Shallow Crust,0.0,89.99035,0.0,11/18/5731 +2.60394,44.40506,900,12,19,1,54,51,5.95,5.0,fr,35619,17,1510368,1,1,Active Shallow Crust,0.0,89.98999,0.0,12/19/0900 +2.31701,46.97708,6438,3,13,13,28,24,3.55,5.0,fr,35620,128,1511040,1,1,Active Shallow Crust,0.0,89.98968,0.0,03/13/6438 +2.31701,46.97708,4195,3,8,4,18,57,3.65,15.0,fr,35621,83,1511053,1,1,Active Shallow Crust,0.0,89.9908,0.0,03/08/4195 +2.31701,46.97708,9826,8,21,2,51,5,3.65,5.0,fr,35622,196,1511058,1,1,Active Shallow Crust,0.0,89.99069,-90.0,08/21/9826 +2.31701,46.97708,2213,4,28,2,7,12,3.75,15.0,fr,35623,44,1511065,1,1,Active Shallow Crust,0.0,89.98907,0.0,04/28/2213 +2.31701,46.97708,1377,7,18,23,6,55,3.75,15.0,fr,35624,27,1511074,1,1,Active Shallow Crust,128.8964,89.96724,0.0,07/18/1377 +2.31701,46.97708,8447,3,2,14,12,21,3.95,15.0,fr,35625,168,1511089,1,1,Active Shallow Crust,0.0,89.98914,0.0,03/02/8447 +2.31701,46.97708,2344,8,19,18,27,35,4.05,5.0,fr,35626,46,1511100,1,2,Active Shallow Crust,0.0,89.99033,0.0,08/19/2344 +2.31701,46.97708,2359,3,19,22,57,48,4.05,5.0,fr,35627,47,1511100,1,2,Active Shallow Crust,0.0,89.99033,0.0,03/19/2359 +2.31701,46.97708,3343,5,24,23,29,39,4.55,5.0,fr,35628,66,1511160,1,1,Active Shallow Crust,0.0,89.99021,0.0,05/24/3343 +2.31701,46.97708,2634,1,5,15,41,34,5.35,5.0,fr,35629,52,1511256,1,1,Active Shallow Crust,0.0,89.99004,0.0,01/05/2634 +2.31701,46.97708,2903,12,8,11,33,50,5.65,5.0,fr,35630,58,1511301,1,1,Active Shallow Crust,128.8747,89.99046,0.0,12/08/2903 +-6.11585,48.57355,7810,5,20,4,18,48,3.55,5.0,fr,35631,156,1511520,1,1,Active Shallow Crust,0.0,89.99332,0.0,05/20/7810 +-6.11585,48.57355,5703,6,25,20,53,19,4.35,5.0,fr,35632,114,1511616,1,1,Active Shallow Crust,0.0,89.98937,0.0,06/25/5703 +4.50018,46.38501,8139,7,3,2,14,6,3.55,5.0,fr,35633,162,1512000,1,3,Active Shallow Crust,0.0,89.99304,0.0,07/03/8139 +4.50018,46.38501,1363,2,2,10,4,38,3.55,5.0,fr,35634,27,1512000,1,3,Active Shallow Crust,0.0,89.99304,0.0,02/02/1363 +4.50018,46.38501,3667,2,6,6,4,32,3.55,5.0,fr,35635,73,1512000,1,3,Active Shallow Crust,0.0,89.99304,0.0,02/06/3667 +4.50018,46.38501,6571,9,27,5,12,30,3.55,15.0,fr,35636,131,1512001,1,1,Active Shallow Crust,0.0,89.99304,0.0,09/27/6571 +4.50018,46.38501,4765,10,16,13,56,11,3.65,5.0,fr,35637,95,1512012,1,1,Active Shallow Crust,0.0,89.9876,0.0,10/16/4765 +4.50018,46.38501,8920,1,15,15,39,3,3.75,5.0,fr,35638,178,1512024,1,1,Active Shallow Crust,0.0,89.98895,0.0,01/15/8920 +4.50018,46.38501,2066,2,4,22,57,31,3.75,15.0,fr,35639,41,1512031,1,1,Active Shallow Crust,0.0,89.98882,-90.0,02/04/2066 +4.50018,46.38501,1640,2,2,9,58,4,3.85,5.0,fr,35640,32,1512036,1,1,Active Shallow Crust,0.0,89.99015,0.0,02/02/1640 +4.50018,46.38501,2647,10,14,3,51,34,3.85,5.0,fr,35641,52,1512039,1,1,Active Shallow Crust,240.011,57.99723,0.0,10/14/2647 +4.50018,46.38501,2792,7,6,15,37,9,3.85,5.0,fr,35642,55,1512045,1,1,Active Shallow Crust,128.8965,89.99261,0.0,07/06/2792 +4.50018,46.38501,2563,6,20,18,37,11,4.25,5.0,fr,35643,51,1512087,1,1,Active Shallow Crust,240.0077,57.99354,0.0,06/20/2563 +4.50018,46.38501,4105,9,26,6,11,37,4.45,5.0,fr,35644,82,1512108,1,1,Active Shallow Crust,0.0,89.99013,0.0,09/26/4105 +4.50018,46.38501,1206,11,27,2,41,53,4.55,27.5,fr,35645,24,1512131,1,1,Active Shallow Crust,128.8942,89.98564,0.0,11/27/1206 +4.50018,46.38501,3978,7,20,2,49,3,5.15,5.0,fr,35646,79,1512192,1,1,Active Shallow Crust,0.0,89.99007,0.0,07/20/3978 +3.16014,47.088,4214,3,29,15,0,24,3.65,15.0,fr,35647,84,1512973,1,1,Active Shallow Crust,0.0,89.99082,0.0,03/29/4214 +3.16014,47.088,3048,3,26,3,32,7,4.05,5.0,fr,35648,60,1513020,1,1,Active Shallow Crust,0.0,89.99035,0.0,03/26/3048 +3.16014,47.088,5038,1,4,10,20,20,4.15,5.0,fr,35649,100,1513032,1,1,Active Shallow Crust,0.0,89.98968,0.0,01/04/5038 +3.16014,47.088,2565,8,20,9,3,44,4.35,5.0,fr,35650,51,1513056,1,1,Active Shallow Crust,0.0,89.99043,0.0,08/20/2565 +-0.82322,43.63757,9444,1,24,0,0,32,3.55,5.0,fr,35651,188,1513440,1,1,Active Shallow Crust,0.0,89.98997,0.0,01/24/9444 +-0.82322,43.63757,9385,11,1,17,34,35,3.55,5.0,fr,35652,187,1513446,1,1,Active Shallow Crust,0.0,89.98985,-90.0,11/01/9385 +-0.82322,43.63757,3240,2,25,18,41,7,3.75,15.0,fr,35653,64,1513468,1,1,Active Shallow Crust,240.008,58.01744,0.0,02/25/3240 +-0.82322,43.63757,8202,11,14,10,23,51,3.95,5.0,fr,35654,164,1513488,1,1,Active Shallow Crust,0.0,89.99021,0.0,11/14/8202 +-0.82322,43.63757,2904,12,3,15,51,19,4.15,5.0,fr,35655,58,1513515,1,1,Active Shallow Crust,240.008,57.99729,0.0,12/03/2904 +-0.82322,43.63757,447,7,21,21,20,26,4.25,5.0,fr,35656,8,1513527,1,1,Active Shallow Crust,240.0069,57.99403,0.0,07/21/0447 +-0.82322,43.63757,6828,1,21,19,36,7,4.45,15.0,fr,35657,136,1513549,1,1,Active Shallow Crust,0.0,89.98997,0.0,01/21/6828 +-1.14029,47.28419,5093,12,4,8,17,19,3.55,5.0,fr,35658,101,1513920,1,3,Active Shallow Crust,0.0,89.98974,0.0,12/04/5093 +-1.14029,47.28419,5670,4,20,6,43,15,3.55,5.0,fr,35659,113,1513920,1,3,Active Shallow Crust,0.0,89.98974,0.0,04/20/5670 +-1.14029,47.28419,6898,9,23,4,2,7,3.55,5.0,fr,35660,137,1513920,1,3,Active Shallow Crust,0.0,89.98974,0.0,09/23/6898 +-1.14029,47.28419,1879,8,14,9,28,50,3.55,15.0,fr,35661,37,1513921,1,2,Active Shallow Crust,0.0,89.98974,0.0,08/14/1879 +-1.14029,47.28419,8839,11,20,10,1,10,3.55,15.0,fr,35662,176,1513921,1,2,Active Shallow Crust,0.0,89.98974,0.0,11/20/8839 +-1.14029,47.28419,3576,8,26,22,48,19,3.55,15.0,fr,35663,71,1513924,1,1,Active Shallow Crust,240.0123,57.99824,0.0,08/26/3576 +-1.14029,47.28419,2942,12,19,21,23,16,3.65,5.0,fr,35664,58,1513932,1,2,Active Shallow Crust,0.0,89.98933,0.0,12/19/2942 +-1.14029,47.28419,380,3,27,19,5,21,3.65,5.0,fr,35665,7,1513932,1,2,Active Shallow Crust,0.0,89.98933,0.0,03/27/0380 +-1.14029,47.28419,385,5,9,4,25,24,3.65,15.0,fr,35666,7,1513933,1,1,Active Shallow Crust,0.0,89.98933,0.0,05/09/0385 +-1.14029,47.28419,4408,4,14,21,33,0,3.75,5.0,fr,35667,88,1513944,1,1,Active Shallow Crust,0.0,89.99049,0.0,04/14/4408 +-1.14029,47.28419,3342,11,4,16,40,47,3.85,5.0,fr,35668,66,1513956,1,1,Active Shallow Crust,0.0,89.99031,0.0,11/04/3342 +-1.14029,47.28419,9998,12,4,17,55,37,3.95,5.0,fr,35669,199,1513968,1,1,Active Shallow Crust,0.0,89.99029,0.0,12/04/9998 +-1.14029,47.28419,1276,8,26,14,45,39,4.05,27.5,fr,35670,25,1513988,1,1,Active Shallow Crust,0.0,89.99027,-90.0,08/26/1276 +-1.14029,47.28419,5910,11,12,11,22,4,4.15,15.0,fr,35671,118,1513993,1,1,Active Shallow Crust,0.0,89.98972,0.0,11/12/5910 +-1.14029,47.28419,3284,7,8,1,47,53,4.15,27.5,fr,35672,65,1514000,1,1,Active Shallow Crust,0.0,89.98959,-90.0,07/08/3284 +-1.14029,47.28419,1919,7,28,6,38,7,4.45,5.0,fr,35673,38,1514028,1,1,Active Shallow Crust,0.0,89.99029,0.0,07/28/1919 +-1.14029,47.28419,1333,10,16,2,42,33,4.65,5.0,fr,35674,26,1514052,1,2,Active Shallow Crust,0.0,89.98988,0.0,10/16/1333 +-1.14029,47.28419,993,10,11,11,41,25,4.65,5.0,fr,35675,19,1514052,1,2,Active Shallow Crust,0.0,89.98988,0.0,10/11/0993 +-1.14029,47.28419,4937,7,7,13,33,3,5.25,5.0,fr,35676,98,1514124,1,1,Active Shallow Crust,0.0,89.99009,0.0,07/07/4937 +0.06579,44.26793,180,1,20,3,37,56,3.55,5.0,fr,35677,3,1514400,1,1,Active Shallow Crust,0.0,89.98996,0.0,01/20/0180 +0.06579,44.26793,4608,7,14,4,41,47,3.55,15.0,fr,35678,92,1514407,1,1,Active Shallow Crust,0.0,89.98996,-90.0,07/14/4608 +0.06579,44.26793,9663,4,24,18,19,53,3.85,27.5,fr,35679,193,1514444,1,1,Active Shallow Crust,0.0,89.98998,-90.0,04/24/9663 +0.06579,44.26793,7483,12,10,13,28,29,4.05,5.0,fr,35680,149,1514460,1,1,Active Shallow Crust,0.0,89.98997,0.0,12/10/7483 +0.06579,44.26793,84,3,2,22,31,32,4.15,5.0,fr,35681,1,1514472,1,1,Active Shallow Crust,0.0,89.98999,0.0,03/02/0084 +-1.43397,43.16118,4294,12,29,20,19,8,3.55,5.0,fr,35682,85,1514880,1,5,Active Shallow Crust,0.0,89.99081,0.0,12/29/4294 +-1.43397,43.16118,2821,5,13,14,7,40,3.55,5.0,fr,35683,56,1514880,1,5,Active Shallow Crust,0.0,89.99081,0.0,05/13/2821 +-1.43397,43.16118,3355,2,9,6,23,36,3.55,5.0,fr,35684,67,1514880,1,5,Active Shallow Crust,0.0,89.99081,0.0,02/09/3355 +-1.43397,43.16118,1745,8,18,0,6,2,3.55,5.0,fr,35685,34,1514880,1,5,Active Shallow Crust,0.0,89.99081,0.0,08/18/1745 +-1.43397,43.16118,4369,12,30,21,25,56,3.55,5.0,fr,35686,87,1514880,1,5,Active Shallow Crust,0.0,89.99081,0.0,12/30/4369 +-1.43397,43.16118,1960,12,10,16,17,40,3.55,15.0,fr,35687,39,1514881,1,1,Active Shallow Crust,0.0,89.99081,0.0,12/10/1960 +-1.43397,43.16118,1592,9,14,5,37,53,3.55,5.0,fr,35688,31,1514883,1,1,Active Shallow Crust,240.0119,57.99821,0.0,09/14/1592 +-1.43397,43.16118,953,5,30,11,46,32,3.65,5.0,fr,35689,19,1514892,1,1,Active Shallow Crust,0.0,89.99017,0.0,05/30/0953 +-1.43397,43.16118,4015,3,3,18,56,58,3.65,15.0,fr,35690,80,1514893,1,1,Active Shallow Crust,0.0,89.99017,0.0,03/03/4015 +-1.43397,43.16118,1385,10,29,23,40,16,3.65,27.5,fr,35691,27,1514894,1,1,Active Shallow Crust,0.0,89.99017,0.0,10/29/1385 +-1.43397,43.16118,5533,7,22,13,54,49,3.65,5.0,fr,35692,110,1514898,1,2,Active Shallow Crust,0.0,89.99005,-90.0,07/22/5533 +-1.43397,43.16118,1559,1,7,9,11,25,3.65,5.0,fr,35693,31,1514898,1,2,Active Shallow Crust,0.0,89.99005,-90.0,01/07/1559 +-1.43397,43.16118,9412,10,25,6,49,44,3.75,5.0,fr,35694,188,1514904,1,3,Active Shallow Crust,0.0,89.98978,0.0,10/25/9412 +-1.43397,43.16118,8219,3,24,19,23,35,3.75,5.0,fr,35695,164,1514904,1,3,Active Shallow Crust,0.0,89.98978,0.0,03/24/8219 +-1.43397,43.16118,7780,9,11,19,7,3,3.75,5.0,fr,35696,155,1514904,1,3,Active Shallow Crust,0.0,89.98978,0.0,09/11/7780 +-1.43397,43.16118,4625,2,6,23,8,16,3.75,15.0,fr,35697,92,1514905,1,3,Active Shallow Crust,0.0,89.98978,0.0,02/06/4625 +-1.43397,43.16118,5579,11,15,11,8,25,3.75,15.0,fr,35698,111,1514905,1,3,Active Shallow Crust,0.0,89.98978,0.0,11/15/5579 +-1.43397,43.16118,1438,9,15,21,18,34,3.75,15.0,fr,35699,28,1514905,1,3,Active Shallow Crust,0.0,89.98978,0.0,09/15/1438 +-1.43397,43.16118,8309,11,8,14,53,41,3.75,27.5,fr,35700,166,1514906,1,1,Active Shallow Crust,0.0,89.98978,0.0,11/08/8309 +-1.43397,43.16118,4322,1,27,6,50,57,3.75,5.0,fr,35701,86,1514907,1,1,Active Shallow Crust,240.0081,58.01757,0.0,01/27/4322 +-1.43397,43.16118,7074,4,29,4,15,47,3.75,15.0,fr,35702,141,1514908,1,2,Active Shallow Crust,240.0081,58.01757,0.0,04/29/7074 +-1.43397,43.16118,6894,12,27,3,33,40,3.75,15.0,fr,35703,137,1514908,1,2,Active Shallow Crust,240.0081,58.01757,0.0,12/27/6894 +-1.43397,43.16118,9052,10,21,0,0,19,3.75,5.0,fr,35704,181,1514910,1,1,Active Shallow Crust,0.0,89.98965,-90.0,10/21/9052 +-1.43397,43.16118,638,6,26,22,46,48,3.75,5.0,fr,35705,12,1514913,1,1,Active Shallow Crust,128.8969,89.96729,0.0,06/26/0638 +-1.43397,43.16118,1555,7,26,19,59,3,3.85,5.0,fr,35706,31,1514916,1,1,Active Shallow Crust,0.0,89.98959,0.0,07/26/1555 +-1.43397,43.16118,9393,3,13,12,46,43,3.85,15.0,fr,35707,187,1514917,1,2,Active Shallow Crust,0.0,89.98959,0.0,03/13/9393 +-1.43397,43.16118,4164,9,30,4,19,8,3.85,15.0,fr,35708,83,1514917,1,2,Active Shallow Crust,0.0,89.98959,0.0,09/30/4164 +-1.43397,43.16118,8547,4,12,4,49,15,3.85,5.0,fr,35709,170,1514919,1,1,Active Shallow Crust,240.0105,57.99783,0.0,04/12/8547 +-1.43397,43.16118,3424,5,12,17,27,55,3.85,27.5,fr,35710,68,1514924,1,1,Active Shallow Crust,0.0,89.98946,-90.0,05/12/3424 +-1.43397,43.16118,272,8,9,1,27,48,3.95,5.0,fr,35711,5,1514928,1,1,Active Shallow Crust,0.0,89.98956,0.0,08/09/0272 +-1.43397,43.16118,8966,12,20,14,20,11,3.95,15.0,fr,35712,179,1514929,1,2,Active Shallow Crust,0.0,89.98956,0.0,12/20/8966 +-1.43397,43.16118,1348,3,17,12,37,59,3.95,15.0,fr,35713,26,1514929,1,2,Active Shallow Crust,0.0,89.98956,0.0,03/17/1348 +-1.43397,43.16118,4395,8,15,5,10,52,3.95,27.5,fr,35714,87,1514930,1,2,Active Shallow Crust,0.0,89.98956,0.0,08/15/4395 +-1.43397,43.16118,9669,11,13,23,23,59,3.95,27.5,fr,35715,193,1514930,1,2,Active Shallow Crust,0.0,89.98956,0.0,11/13/9669 +-1.43397,43.16118,172,1,14,13,11,16,3.95,5.0,fr,35716,3,1514934,1,1,Active Shallow Crust,0.0,89.98943,-90.0,01/14/0172 +-1.43397,43.16118,5770,8,8,5,25,24,4.05,5.0,fr,35717,115,1514940,1,1,Active Shallow Crust,0.0,89.98966,0.0,08/08/5770 +-1.43397,43.16118,5707,11,21,2,37,13,4.05,5.0,fr,35718,114,1514949,1,2,Active Shallow Crust,128.8907,89.9938,0.0,11/21/5707 +-1.43397,43.16118,559,11,13,18,59,6,4.05,5.0,fr,35719,11,1514949,1,2,Active Shallow Crust,128.8907,89.9938,0.0,11/13/0559 +-1.43397,43.16118,1315,12,25,20,8,19,4.15,15.0,fr,35720,26,1514953,1,1,Active Shallow Crust,0.0,89.98986,0.0,12/25/1315 +-1.43397,43.16118,1290,10,3,18,45,17,4.15,5.0,fr,35721,25,1514955,1,1,Active Shallow Crust,240.0079,57.99718,0.0,10/03/1290 +-1.43397,43.16118,1779,8,25,17,3,26,4.15,5.0,fr,35722,35,1514961,1,1,Active Shallow Crust,128.898,89.99355,0.0,08/25/1779 +-1.43397,43.16118,3841,6,8,15,3,34,4.25,15.0,fr,35723,76,1514965,1,1,Active Shallow Crust,0.0,89.99014,0.0,06/08/3841 +-1.43397,43.16118,4459,5,30,3,47,14,4.35,5.0,fr,35724,89,1514976,1,2,Active Shallow Crust,0.0,89.98975,0.0,05/30/4459 +-1.43397,43.16118,563,9,6,19,14,37,4.35,5.0,fr,35725,11,1514976,1,2,Active Shallow Crust,0.0,89.98975,0.0,09/06/0563 +-1.43397,43.16118,798,6,11,12,45,40,4.45,5.0,fr,35726,15,1514988,1,1,Active Shallow Crust,0.0,89.99021,0.0,06/11/0798 +-1.43397,43.16118,1795,1,10,8,35,2,4.55,5.0,fr,35727,35,1515000,1,1,Active Shallow Crust,0.0,89.99011,0.0,01/10/1795 +-1.43397,43.16118,395,12,26,22,9,28,4.55,15.0,fr,35728,7,1515001,1,1,Active Shallow Crust,0.0,89.99011,0.0,12/26/0395 +-1.43397,43.16118,7903,6,27,7,27,15,4.55,27.5,fr,35729,158,1515002,1,1,Active Shallow Crust,0.0,89.99011,0.0,06/27/7903 +-1.43397,43.16118,8106,1,8,16,38,9,4.55,15.0,fr,35730,162,1515004,1,1,Active Shallow Crust,240.0083,57.99723,0.0,01/08/8106 +-1.43397,43.16118,368,6,8,22,9,43,4.65,5.0,fr,35731,7,1515012,1,2,Active Shallow Crust,0.0,89.99015,0.0,06/08/0368 +-1.43397,43.16118,5512,3,23,8,41,5,4.65,5.0,fr,35732,110,1515012,1,2,Active Shallow Crust,0.0,89.99015,0.0,03/23/5512 +-0.88699,51.15561,7767,6,30,11,15,33,3.65,15.0,fr,35733,155,1515376,1,1,Active Shallow Crust,240.0016,58.01297,0.0,06/30/7767 +-0.88699,51.15561,6622,6,7,4,13,13,3.65,5.0,fr,35734,132,1515381,1,1,Active Shallow Crust,128.9001,89.9635,0.0,06/07/6622 +-0.88699,51.15561,2827,1,19,16,51,18,4.35,5.0,fr,35735,56,1515456,1,1,Active Shallow Crust,0.0,89.98993,0.0,01/19/2827 +-0.88699,51.15561,2940,9,23,12,46,58,4.55,27.5,fr,35736,58,1515488,1,1,Active Shallow Crust,0.0,89.98988,-90.0,09/23/2940 +-0.88699,51.15561,4099,8,12,15,3,41,4.75,5.0,fr,35737,81,1515504,1,1,Active Shallow Crust,0.0,89.99007,0.0,08/12/4099 +-1.12633,44.97726,433,2,3,21,35,18,3.55,27.5,fr,35738,8,1515851,1,1,Active Shallow Crust,128.8962,89.99376,0.0,02/03/0433 +-1.12633,44.97726,3121,2,11,18,38,1,3.65,27.5,fr,35739,62,1515854,1,1,Active Shallow Crust,0.0,89.99046,0.0,02/11/3121 +2.20786,46.44046,9833,5,13,22,59,22,3.55,5.0,fr,35740,196,1516320,1,2,Active Shallow Crust,0.0,89.98958,0.0,05/13/9833 +2.20786,46.44046,2424,10,16,7,41,55,3.55,5.0,fr,35741,48,1516320,1,2,Active Shallow Crust,0.0,89.98958,0.0,10/16/2424 +2.20786,46.44046,6328,2,9,5,41,18,3.55,15.0,fr,35742,126,1516321,1,1,Active Shallow Crust,0.0,89.98958,0.0,02/09/6328 +2.20786,46.44046,2208,11,27,17,54,20,3.55,5.0,fr,35743,44,1516326,1,2,Active Shallow Crust,0.0,89.98946,-90.0,11/27/2208 +2.20786,46.44046,6071,1,16,10,7,20,3.55,5.0,fr,35744,121,1516326,1,2,Active Shallow Crust,0.0,89.98946,-90.0,01/16/6071 +2.20786,46.44046,279,2,5,8,22,6,3.55,27.5,fr,35745,5,1516331,1,1,Active Shallow Crust,128.8958,89.99305,0.0,02/05/0279 +2.20786,46.44046,4572,5,27,14,37,49,3.65,5.0,fr,35746,91,1516332,1,2,Active Shallow Crust,0.0,89.99071,0.0,05/27/4572 +2.20786,46.44046,8270,11,8,13,59,56,3.65,5.0,fr,35747,165,1516332,1,2,Active Shallow Crust,0.0,89.99071,0.0,11/08/8270 +2.20786,46.44046,223,10,12,6,49,7,3.75,5.0,fr,35748,4,1516344,1,1,Active Shallow Crust,0.0,89.98896,0.0,10/12/0223 +2.20786,46.44046,422,7,3,1,40,53,3.75,15.0,fr,35749,8,1516345,1,2,Active Shallow Crust,0.0,89.98896,0.0,07/03/0422 +2.20786,46.44046,880,5,3,15,15,14,3.75,15.0,fr,35750,17,1516345,1,2,Active Shallow Crust,0.0,89.98896,0.0,05/03/0880 +2.20786,46.44046,3180,1,13,5,26,36,3.85,5.0,fr,35751,63,1516356,1,1,Active Shallow Crust,0.0,89.99016,0.0,01/13/3180 +2.20786,46.44046,1661,7,3,8,44,7,3.85,5.0,fr,35752,33,1516362,1,1,Active Shallow Crust,0.0,89.99004,-90.0,07/03/1661 +2.20786,46.44046,3323,6,29,23,23,1,3.85,15.0,fr,35753,66,1516366,1,1,Active Shallow Crust,128.8956,89.99385,0.0,06/29/3323 +2.20786,46.44046,8793,7,31,9,21,37,3.95,15.0,fr,35754,175,1516369,1,3,Active Shallow Crust,0.0,89.98904,0.0,07/31/8793 +2.20786,46.44046,3114,2,24,20,26,4,3.95,15.0,fr,35755,62,1516369,1,3,Active Shallow Crust,0.0,89.98904,0.0,02/24/3114 +2.20786,46.44046,8760,5,9,10,23,54,3.95,15.0,fr,35756,175,1516369,1,3,Active Shallow Crust,0.0,89.98904,0.0,05/09/8760 +2.20786,46.44046,7116,8,29,17,10,12,4.15,15.0,fr,35757,142,1516393,1,1,Active Shallow Crust,0.0,89.98955,0.0,08/29/7116 +2.20786,46.44046,7564,12,30,6,15,15,4.45,5.0,fr,35758,151,1516428,1,1,Active Shallow Crust,0.0,89.99014,0.0,12/30/7564 +2.20786,46.44046,4865,7,23,7,47,59,4.55,15.0,fr,35759,97,1516441,1,1,Active Shallow Crust,0.0,89.99011,0.0,07/23/4865 +2.20786,46.44046,7119,6,1,7,52,5,5.45,27.5,fr,35760,142,1516550,1,1,Active Shallow Crust,0.0,89.98986,0.0,06/01/7119 +3.3823,40.64917,6218,6,6,12,27,20,3.75,5.0,fr,35761,124,1516833,1,1,Active Shallow Crust,128.8965,89.96739,0.0,06/06/6218 +6.06577,44.10354,1460,12,19,1,10,43,3.55,5.0,fr,35762,29,1517280,1,1,Active Shallow Crust,0.0,89.99276,0.0,12/19/1460 +6.06577,44.10354,8364,1,16,12,51,13,3.55,15.0,fr,35763,167,1517281,1,2,Active Shallow Crust,0.0,89.99276,0.0,01/16/8364 +6.06577,44.10354,716,1,1,3,19,35,3.55,15.0,fr,35764,14,1517281,1,2,Active Shallow Crust,0.0,89.99276,0.0,01/01/0716 +6.06577,44.10354,6460,7,10,23,32,30,3.55,27.5,fr,35765,129,1517282,1,1,Active Shallow Crust,0.0,89.99276,0.0,07/10/6460 +6.06577,44.10354,7887,3,30,3,6,31,3.65,5.0,fr,35766,157,1517292,1,3,Active Shallow Crust,0.0,89.98709,0.0,03/30/7887 +6.06577,44.10354,3784,6,2,22,9,50,3.65,5.0,fr,35767,75,1517292,1,3,Active Shallow Crust,0.0,89.98709,0.0,06/02/3784 +6.06577,44.10354,2824,12,29,19,38,7,3.65,5.0,fr,35768,56,1517292,1,3,Active Shallow Crust,0.0,89.98709,0.0,12/29/2824 +6.06577,44.10354,7808,5,28,19,44,26,3.65,5.0,fr,35769,156,1517295,1,1,Active Shallow Crust,239.9996,58.01374,0.0,05/28/7808 +6.06577,44.10354,8750,3,3,15,20,17,3.65,27.5,fr,35770,174,1517297,1,1,Active Shallow Crust,239.9996,58.01366,0.0,03/03/8750 +6.06577,44.10354,9107,6,7,18,47,20,3.65,15.0,fr,35771,182,1517299,1,1,Active Shallow Crust,0.0,89.98695,-90.0,06/07/9107 +6.06577,44.10354,1843,3,6,3,41,59,3.75,5.0,fr,35772,36,1517304,1,2,Active Shallow Crust,0.0,89.98849,0.0,03/06/1843 +6.06577,44.10354,7797,8,15,8,52,15,3.75,5.0,fr,35773,155,1517304,1,2,Active Shallow Crust,0.0,89.98849,0.0,08/15/7797 +6.06577,44.10354,5164,7,2,6,2,10,3.75,5.0,fr,35774,103,1517313,1,1,Active Shallow Crust,128.8959,89.96745,0.0,07/02/5164 +6.06577,44.10354,426,9,28,14,4,2,3.85,5.0,fr,35775,8,1517316,1,4,Active Shallow Crust,0.0,89.98975,0.0,09/28/0426 +6.06577,44.10354,5923,5,21,19,37,29,3.85,5.0,fr,35776,118,1517316,1,4,Active Shallow Crust,0.0,89.98975,0.0,05/21/5923 +6.06577,44.10354,122,12,17,8,0,27,3.85,5.0,fr,35777,2,1517316,1,4,Active Shallow Crust,0.0,89.98975,0.0,12/17/0122 +6.06577,44.10354,1,1,19,8,35,0,3.85,5.0,fr,35778,0,1517316,1,4,Active Shallow Crust,0.0,89.98975,0.0,01/19/0001 +6.06577,44.10354,1941,11,14,0,11,54,3.85,5.0,fr,35779,38,1517322,1,1,Active Shallow Crust,0.0,89.98963,-90.0,11/14/1941 +6.06577,44.10354,7272,10,17,8,30,43,3.95,5.0,fr,35780,145,1517328,1,3,Active Shallow Crust,0.0,89.99086,0.0,10/17/7272 +6.06577,44.10354,7098,11,19,7,40,53,3.95,5.0,fr,35781,141,1517328,1,3,Active Shallow Crust,0.0,89.99086,0.0,11/19/7098 +6.06577,44.10354,1311,8,2,18,25,46,3.95,5.0,fr,35782,26,1517328,1,3,Active Shallow Crust,0.0,89.99086,0.0,08/02/1311 +6.06577,44.10354,5247,2,16,7,33,21,4.05,5.0,fr,35783,104,1517340,1,1,Active Shallow Crust,0.0,89.99186,0.0,02/16/5247 +6.06577,44.10354,2417,6,20,3,44,42,4.05,15.0,fr,35784,48,1517341,1,2,Active Shallow Crust,0.0,89.99186,0.0,06/20/2417 +6.06577,44.10354,836,1,21,1,38,24,4.05,15.0,fr,35785,16,1517341,1,2,Active Shallow Crust,0.0,89.99186,0.0,01/21/0836 +6.06577,44.10354,617,6,16,21,44,28,4.05,5.0,fr,35786,12,1517343,1,1,Active Shallow Crust,240.0057,58.00589,0.0,06/16/0617 +6.06577,44.10354,480,4,3,1,15,59,4.15,15.0,fr,35787,9,1517362,1,1,Active Shallow Crust,128.8985,89.99274,0.0,04/03/0480 +6.06577,44.10354,7782,5,26,22,23,34,4.25,5.0,fr,35788,155,1517364,1,4,Active Shallow Crust,0.0,89.9903,0.0,05/26/7782 +6.06577,44.10354,9396,10,14,0,42,56,4.25,5.0,fr,35789,187,1517364,1,4,Active Shallow Crust,0.0,89.9903,0.0,10/14/9396 +6.06577,44.10354,1534,7,21,3,35,52,4.25,5.0,fr,35790,30,1517364,1,4,Active Shallow Crust,0.0,89.9903,0.0,07/21/1534 +6.06577,44.10354,1211,6,27,23,54,20,4.25,5.0,fr,35791,24,1517364,1,4,Active Shallow Crust,0.0,89.9903,0.0,06/27/1211 +6.06577,44.10354,5492,1,7,22,4,53,4.25,15.0,fr,35792,109,1517365,1,1,Active Shallow Crust,0.0,89.9903,0.0,01/07/5492 +6.06577,44.10354,9522,9,10,22,0,9,4.35,5.0,fr,35793,190,1517379,1,1,Active Shallow Crust,240.0079,57.99568,0.0,09/10/9522 +6.06577,44.10354,2032,6,29,14,41,18,4.45,5.0,fr,35794,40,1517388,1,2,Active Shallow Crust,0.0,89.98972,0.0,06/29/2032 +6.06577,44.10354,4818,6,9,22,20,34,4.45,5.0,fr,35795,96,1517388,1,2,Active Shallow Crust,0.0,89.98972,0.0,06/09/4818 +6.06577,44.10354,2088,9,8,9,9,53,4.45,5.0,fr,35796,41,1517391,1,1,Active Shallow Crust,240.0044,57.99491,0.0,09/08/2088 +6.06577,44.10354,2537,12,15,6,7,31,4.95,5.0,fr,35797,50,1517451,1,1,Active Shallow Crust,240.0107,58.00432,0.0,12/15/2537 +6.06577,44.10354,2227,10,12,22,19,20,5.05,15.0,fr,35798,44,1517461,1,1,Active Shallow Crust,0.0,89.9897,0.0,10/12/2227 +6.06577,44.10354,6637,5,28,22,34,6,5.15,5.0,fr,35799,132,1517472,1,1,Active Shallow Crust,0.0,89.98967,0.0,05/28/6637 +6.06577,44.10354,4306,11,6,20,55,57,5.35,5.0,fr,35800,86,1517499,1,1,Active Shallow Crust,240.0234,57.99753,0.0,11/06/4306 +-4.74621,50.075,1301,6,15,6,29,3,4.15,5.0,fr,35801,26,1517832,1,1,Active Shallow Crust,0.0,89.99027,0.0,06/15/1301 +8.19078,49.52016,520,6,15,20,49,0,3.55,5.0,fr,35802,10,1518240,1,1,Active Shallow Crust,0.0,89.98691,0.0,06/15/0520 +8.19078,49.52016,1392,7,30,12,17,2,3.55,5.0,fr,35803,27,1518243,1,1,Active Shallow Crust,240.0123,57.99828,0.0,07/30/1392 +8.19078,49.52016,1765,9,25,22,44,0,3.55,5.0,fr,35804,35,1518246,1,2,Active Shallow Crust,0.0,89.98676,-90.0,09/25/1765 +8.19078,49.52016,6076,5,8,19,44,4,3.55,5.0,fr,35805,121,1518246,1,2,Active Shallow Crust,0.0,89.98676,-90.0,05/08/6076 +8.19078,49.52016,7441,5,12,23,46,21,3.65,5.0,fr,35806,148,1518252,1,1,Active Shallow Crust,0.0,89.98833,0.0,05/12/7441 +8.19078,49.52016,82,4,20,6,27,17,3.75,15.0,fr,35807,1,1518274,1,1,Active Shallow Crust,128.8983,89.96632,0.0,04/20/0082 +8.19078,49.52016,1138,10,27,21,26,55,3.85,5.0,fr,35808,22,1518279,1,1,Active Shallow Crust,240.0112,57.99716,0.0,10/27/1138 +8.19078,49.52016,4076,4,2,11,29,46,3.95,5.0,fr,35809,81,1518288,1,1,Active Shallow Crust,0.0,89.99174,0.0,04/02/4076 +8.19078,49.52016,873,12,9,5,53,53,4.05,5.0,fr,35810,17,1518300,1,3,Active Shallow Crust,0.0,89.99264,0.0,12/09/0873 +8.19078,49.52016,5132,8,22,20,36,33,4.05,5.0,fr,35811,102,1518300,1,3,Active Shallow Crust,0.0,89.99264,0.0,08/22/5132 +8.19078,49.52016,3656,2,26,17,34,58,4.05,5.0,fr,35812,73,1518300,1,3,Active Shallow Crust,0.0,89.99264,0.0,02/26/3656 +8.19078,49.52016,602,10,8,5,18,25,4.05,15.0,fr,35813,12,1518301,1,1,Active Shallow Crust,0.0,89.99264,0.0,10/08/0602 +8.19078,49.52016,4543,8,8,7,52,49,4.05,15.0,fr,35814,90,1518310,1,1,Active Shallow Crust,128.8909,89.99264,0.0,08/08/4543 +8.19078,49.52016,2058,2,4,17,41,2,4.15,5.0,fr,35815,41,1518312,1,1,Active Shallow Crust,0.0,89.98688,0.0,02/04/2058 +8.19078,49.52016,5884,1,26,21,40,45,4.25,15.0,fr,35816,117,1518325,1,1,Active Shallow Crust,0.0,89.9883,0.0,01/26/5884 +8.19078,49.52016,6729,10,5,1,54,38,5.65,5.0,fr,35817,134,1518495,1,1,Active Shallow Crust,240.0406,57.9999,0.0,10/05/6729 +3.98516,40.05552,9277,9,17,7,37,57,4.25,27.5,fr,35818,185,1518806,1,1,Active Shallow Crust,0.0,89.98965,0.0,09/17/9277 +5.50792,42.15946,217,11,25,13,3,59,4.75,5.0,fr,35819,4,1519350,1,1,Active Shallow Crust,0.0,89.9905,-90.0,11/25/0217 +5.93075,47.09384,6376,8,31,19,2,28,3.55,5.0,fr,35820,127,1519680,1,2,Active Shallow Crust,0.0,89.99313,0.0,08/31/6376 +5.93075,47.09384,2838,6,7,9,9,21,3.55,5.0,fr,35821,56,1519680,1,2,Active Shallow Crust,0.0,89.99313,0.0,06/07/2838 +5.93075,47.09384,543,4,1,23,54,56,3.55,15.0,fr,35822,10,1519687,1,1,Active Shallow Crust,0.0,89.99306,-90.0,04/01/0543 +5.93075,47.09384,8819,2,27,12,10,34,3.55,5.0,fr,35823,176,1519689,1,1,Active Shallow Crust,128.8961,89.99313,0.0,02/27/8819 +5.93075,47.09384,4361,8,10,5,44,9,3.65,5.0,fr,35824,87,1519692,1,1,Active Shallow Crust,0.0,89.98776,0.0,08/10/4361 +5.93075,47.09384,2842,3,26,7,27,20,3.65,15.0,fr,35825,56,1519699,1,1,Active Shallow Crust,0.0,89.98762,-90.0,03/26/2842 +5.93075,47.09384,9435,10,14,9,39,0,3.75,27.5,fr,35826,188,1519706,1,1,Active Shallow Crust,0.0,89.98909,0.0,10/14/9435 +5.93075,47.09384,2708,4,19,8,3,12,3.75,5.0,fr,35827,54,1519710,1,1,Active Shallow Crust,0.0,89.98897,-90.0,04/19/2708 +5.93075,47.09384,8879,5,9,6,49,29,3.85,5.0,fr,35828,177,1519716,1,1,Active Shallow Crust,0.0,89.99028,0.0,05/09/8879 +5.93075,47.09384,4509,4,11,0,38,39,3.85,15.0,fr,35829,90,1519717,1,1,Active Shallow Crust,0.0,89.99028,0.0,04/11/4509 +5.93075,47.09384,4443,11,27,0,2,57,3.85,27.5,fr,35830,88,1519718,1,1,Active Shallow Crust,0.0,89.99028,0.0,11/27/4443 +5.93075,47.09384,182,8,12,10,33,4,3.85,5.0,fr,35831,3,1519725,1,1,Active Shallow Crust,128.8959,89.99271,0.0,08/12/0182 +5.93075,47.09384,8113,9,1,16,46,53,4.15,15.0,fr,35832,162,1519753,1,1,Active Shallow Crust,0.0,89.98968,0.0,09/01/8113 +5.93075,47.09384,9470,1,22,12,20,11,4.25,15.0,fr,35833,189,1519765,1,2,Active Shallow Crust,0.0,89.9908,0.0,01/22/9470 +5.93075,47.09384,2137,2,21,1,24,41,4.25,15.0,fr,35834,42,1519765,1,2,Active Shallow Crust,0.0,89.9908,0.0,02/21/2137 +5.93075,47.09384,742,12,30,10,44,52,4.35,5.0,fr,35835,14,1519779,1,1,Active Shallow Crust,240.0085,57.99617,0.0,12/30/0742 +5.93075,47.09384,3528,4,20,14,2,2,4.75,5.0,fr,35836,70,1519833,1,1,Active Shallow Crust,128.8884,89.9882,0.0,04/20/3528 +3.1397,40.88426,6114,1,17,15,16,39,4.35,5.0,fr,35837,122,1520262,1,1,Active Shallow Crust,0.0,89.98925,-90.0,01/17/6114 +1.88967,41.63281,2017,11,23,15,16,18,3.55,5.0,fr,35838,40,1520640,1,1,Active Shallow Crust,0.0,89.99058,0.0,11/23/2017 +1.88967,41.63281,8613,6,1,14,22,49,3.65,5.0,fr,35839,172,1520652,1,3,Active Shallow Crust,0.0,89.98992,0.0,06/01/8613 +1.88967,41.63281,6173,12,1,2,16,4,3.65,5.0,fr,35840,123,1520652,1,3,Active Shallow Crust,0.0,89.98992,0.0,12/01/6173 +1.88967,41.63281,8304,5,18,5,20,21,3.65,5.0,fr,35841,166,1520652,1,3,Active Shallow Crust,0.0,89.98992,0.0,05/18/8304 +1.88967,41.63281,128,7,9,14,14,18,3.65,5.0,fr,35842,2,1520661,1,1,Active Shallow Crust,128.9006,89.96358,0.0,07/09/0128 +1.88967,41.63281,9595,12,17,7,54,38,3.75,15.0,fr,35843,191,1520671,1,1,Active Shallow Crust,0.0,89.9894,-90.0,12/17/9595 +1.88967,41.63281,8531,6,24,12,50,43,3.85,5.0,fr,35844,170,1520685,1,1,Active Shallow Crust,128.896,89.994,0.0,06/24/8531 +1.88967,41.63281,9686,3,13,18,56,4,3.95,5.0,fr,35845,193,1520688,1,1,Active Shallow Crust,0.0,89.99049,0.0,03/13/9686 +1.88967,41.63281,5051,5,17,14,17,41,4.05,5.0,fr,35846,101,1520700,1,2,Active Shallow Crust,0.0,89.99046,0.0,05/17/5051 +1.88967,41.63281,901,3,11,1,53,11,4.05,5.0,fr,35847,18,1520700,1,2,Active Shallow Crust,0.0,89.99046,0.0,03/11/0901 +1.88967,41.63281,6559,9,17,13,22,26,4.05,5.0,fr,35848,131,1520703,1,1,Active Shallow Crust,240.005,58.00575,0.0,09/17/6559 +1.88967,41.63281,8609,2,9,13,16,32,4.15,5.0,fr,35849,172,1520712,1,1,Active Shallow Crust,0.0,89.98961,0.0,02/09/8609 +1.88967,41.63281,75,6,24,13,12,38,4.55,5.0,fr,35850,1,1520763,1,1,Active Shallow Crust,240.0079,57.99716,0.0,06/24/0075 +1.88967,41.63281,2216,9,14,22,49,8,4.65,5.0,fr,35851,44,1520775,1,1,Active Shallow Crust,240.0093,57.99402,0.0,09/14/2216 +1.88967,41.63281,9204,10,1,8,58,18,5.25,27.5,fr,35852,184,1520846,1,1,Active Shallow Crust,0.0,89.98988,0.0,10/01/9204 +6.46268,45.07786,9749,7,23,23,14,57,3.55,5.0,fr,35853,194,1521120,1,1,Active Shallow Crust,0.0,89.99288,0.0,07/23/9749 +6.46268,45.07786,2894,5,8,4,42,19,3.55,15.0,fr,35854,57,1521121,1,1,Active Shallow Crust,0.0,89.99288,0.0,05/08/2894 +6.46268,45.07786,6030,2,2,1,52,8,3.65,5.0,fr,35855,120,1521132,1,3,Active Shallow Crust,0.0,89.9873,0.0,02/02/6030 +6.46268,45.07786,4602,2,4,11,56,29,3.65,5.0,fr,35856,92,1521132,1,3,Active Shallow Crust,0.0,89.9873,0.0,02/04/4602 +6.46268,45.07786,792,4,18,13,18,18,3.65,5.0,fr,35857,15,1521132,1,3,Active Shallow Crust,0.0,89.9873,0.0,04/18/0792 +6.46268,45.07786,5848,10,13,12,11,46,3.75,5.0,fr,35858,116,1521144,1,1,Active Shallow Crust,0.0,89.98869,0.0,10/13/5848 +6.46268,45.07786,5673,12,14,15,24,35,3.75,27.5,fr,35859,113,1521146,1,1,Active Shallow Crust,0.0,89.98869,0.0,12/14/5673 +6.46268,45.07786,586,2,22,20,45,57,3.85,15.0,fr,35860,11,1521157,1,1,Active Shallow Crust,0.0,89.98991,0.0,02/22/0586 +6.46268,45.07786,885,12,21,21,9,29,3.85,5.0,fr,35861,17,1521165,1,1,Active Shallow Crust,128.8951,89.99496,0.0,12/21/0885 +6.46268,45.07786,3337,8,11,22,54,24,3.95,5.0,fr,35862,66,1521168,1,1,Active Shallow Crust,0.0,89.99101,0.0,08/11/3337 +6.46268,45.07786,4837,10,11,11,54,27,4.05,5.0,fr,35863,96,1521183,1,1,Active Shallow Crust,240.0058,58.00594,0.0,10/11/4837 +6.46268,45.07786,738,7,21,8,55,16,4.15,5.0,fr,35864,14,1521192,1,1,Active Shallow Crust,0.0,89.9893,0.0,07/21/0738 +6.46268,45.07786,4849,7,28,21,12,14,4.15,15.0,fr,35865,96,1521193,1,1,Active Shallow Crust,0.0,89.9893,0.0,07/28/4849 +6.46268,45.07786,7987,3,30,20,1,55,4.25,5.0,fr,35866,159,1521204,1,1,Active Shallow Crust,0.0,89.99046,0.0,03/30/7987 +6.46268,45.07786,2416,7,8,22,48,9,4.25,5.0,fr,35867,48,1521207,1,1,Active Shallow Crust,240.0073,57.99415,0.0,07/08/2416 +6.46268,45.07786,3032,8,12,2,45,55,4.35,5.0,fr,35868,60,1521216,1,1,Active Shallow Crust,0.0,89.98866,0.0,08/12/3032 +6.46268,45.07786,185,5,29,20,17,43,4.55,5.0,fr,35869,3,1521240,1,2,Active Shallow Crust,0.0,89.99099,0.0,05/29/0185 +6.46268,45.07786,623,1,1,14,33,12,4.55,5.0,fr,35870,12,1521240,1,2,Active Shallow Crust,0.0,89.99099,0.0,01/01/0623 +6.46268,45.07786,4901,1,26,10,51,14,4.65,15.0,fr,35871,98,1521262,1,1,Active Shallow Crust,128.8916,89.98714,0.0,01/26/4901 +6.46268,45.07786,6703,12,16,12,33,28,4.75,5.0,fr,35872,134,1521264,1,1,Active Shallow Crust,0.0,89.98927,0.0,12/16/6703 +-2.44125,42.2128,5397,11,18,2,20,46,3.55,5.0,fr,35873,107,1521600,1,2,Active Shallow Crust,0.0,89.9888,0.0,11/18/5397 +-2.44125,42.2128,8046,4,1,23,42,24,3.55,5.0,fr,35874,160,1521600,1,2,Active Shallow Crust,0.0,89.9888,0.0,04/01/8046 +-2.44125,42.2128,5185,2,20,22,8,10,3.55,27.5,fr,35875,103,1521611,1,1,Active Shallow Crust,128.8968,89.9944,0.0,02/20/5185 +-2.44125,42.2128,560,7,18,3,18,17,3.65,5.0,fr,35876,11,1521615,1,1,Active Shallow Crust,240.0004,58.01253,0.0,07/18/0560 +-2.44125,42.2128,8240,3,10,21,9,40,3.65,15.0,fr,35877,164,1521616,1,1,Active Shallow Crust,240.0004,58.01253,0.0,03/10/8240 +-2.44125,42.2128,6653,12,11,3,33,29,3.75,15.0,fr,35878,133,1521625,1,1,Active Shallow Crust,0.0,89.9911,0.0,12/11/6653 +-2.44125,42.2128,3431,4,23,2,13,14,3.85,15.0,fr,35879,68,1521637,1,1,Active Shallow Crust,0.0,89.98943,0.0,04/23/3431 +-2.44125,42.2128,9040,9,16,13,51,25,3.85,15.0,fr,35880,180,1521640,1,1,Active Shallow Crust,240.0097,57.998,0.0,09/16/9040 +-2.44125,42.2128,8127,2,28,21,45,36,3.95,5.0,fr,35881,162,1521651,1,1,Active Shallow Crust,240.019,58.00524,0.0,02/28/8127 +-2.44125,42.2128,6243,12,5,14,7,0,3.95,5.0,fr,35882,124,1521654,1,1,Active Shallow Crust,0.0,89.99046,-90.0,12/05/6243 +-2.44125,42.2128,1073,8,21,22,36,45,4.05,5.0,fr,35883,21,1521660,1,1,Active Shallow Crust,0.0,89.9895,0.0,08/21/1073 +-2.44125,42.2128,1563,1,1,7,32,48,4.05,15.0,fr,35884,31,1521661,1,1,Active Shallow Crust,0.0,89.9895,0.0,01/01/1563 +-2.44125,42.2128,9517,3,31,17,33,36,4.25,15.0,fr,35885,190,1521685,1,1,Active Shallow Crust,0.0,89.98999,0.0,03/31/9517 +-2.44125,42.2128,6160,4,18,23,15,2,4.25,27.5,fr,35886,123,1521686,1,1,Active Shallow Crust,0.0,89.98999,0.0,04/18/6160 +-2.44125,42.2128,5783,6,21,16,12,16,4.55,15.0,fr,35887,115,1521721,1,1,Active Shallow Crust,0.0,89.99055,0.0,06/21/5783 +-2.44125,42.2128,1877,1,7,9,38,51,5.15,5.0,fr,35888,37,1521792,1,1,Active Shallow Crust,0.0,89.98994,0.0,01/07/1877 +2.67053,40.67778,3836,8,1,7,26,47,4.15,5.0,fr,35889,76,1522152,1,1,Active Shallow Crust,0.0,89.99042,0.0,08/01/3836 +2.67053,40.67778,6908,2,23,23,38,18,4.45,27.5,fr,35890,138,1522190,1,1,Active Shallow Crust,0.0,89.9905,0.0,02/23/6908 +6.25012,47.90311,4940,5,27,16,32,25,3.65,15.0,fr,35891,98,1522573,1,1,Active Shallow Crust,0.0,89.98795,0.0,05/27/4940 +6.25012,47.90311,1830,6,28,0,32,53,3.65,27.5,fr,35892,36,1522577,1,1,Active Shallow Crust,240.0014,58.01328,0.0,06/28/1830 +6.25012,47.90311,3937,8,2,6,3,21,3.65,5.0,fr,35893,78,1522581,1,1,Active Shallow Crust,128.9012,89.96294,0.0,08/02/3937 +6.25012,47.90311,7799,3,31,5,36,36,3.75,5.0,fr,35894,155,1522584,1,1,Active Shallow Crust,0.0,89.98926,0.0,03/31/7799 +6.25012,47.90311,5717,12,2,3,24,22,3.85,5.0,fr,35895,114,1522596,1,1,Active Shallow Crust,0.0,89.99043,0.0,12/02/5717 +6.25012,47.90311,9221,9,25,17,10,26,3.95,5.0,fr,35896,184,1522608,1,1,Active Shallow Crust,0.0,89.99147,0.0,09/25/9221 +6.25012,47.90311,4769,12,16,8,10,55,3.95,5.0,fr,35897,95,1522617,1,1,Active Shallow Crust,128.9003,89.9936,0.0,12/16/4769 +6.25012,47.90311,2983,5,8,1,21,19,4.05,15.0,fr,35898,59,1522621,1,1,Active Shallow Crust,0.0,89.98859,0.0,05/08/2983 +6.25012,47.90311,9511,8,10,10,13,35,4.15,5.0,fr,35899,190,1522641,1,1,Active Shallow Crust,128.8973,89.99492,0.0,08/10/9511 +6.25012,47.90311,2585,4,20,19,38,0,4.25,5.0,fr,35900,51,1522644,1,1,Active Shallow Crust,0.0,89.99094,0.0,04/20/2585 +6.25012,47.90311,9133,12,16,18,1,27,4.35,27.5,fr,35901,182,1522667,1,1,Active Shallow Crust,128.8981,89.98259,0.0,12/16/9133 +6.25012,47.90311,7190,9,5,17,33,51,4.75,27.5,fr,35902,143,1522706,1,1,Active Shallow Crust,0.0,89.98981,0.0,09/05/7190 +-2.49528,46.21338,93,8,25,22,10,9,4.55,5.0,fr,35903,1,1523649,1,1,Active Shallow Crust,128.894,89.98588,0.0,08/25/0093 +5.32601,48.67166,7232,5,4,20,55,23,4.15,5.0,fr,35904,144,1524072,1,1,Active Shallow Crust,0.0,89.98999,0.0,05/04/7232 +5.32601,48.67166,8793,3,26,8,44,57,5.15,27.5,fr,35905,175,1524200,1,1,Active Shallow Crust,0.0,89.99039,-90.0,03/26/8793 +0.07122,47.64147,9594,1,13,3,4,51,3.55,5.0,fr,35906,191,1524480,1,1,Active Shallow Crust,0.0,89.99002,0.0,01/13/9594 +0.07122,47.64147,4669,5,28,1,50,8,3.55,5.0,fr,35907,93,1524483,1,1,Active Shallow Crust,240.0123,57.99818,0.0,05/28/4669 +0.07122,47.64147,3533,5,8,11,26,22,3.55,15.0,fr,35908,70,1524484,1,1,Active Shallow Crust,240.0123,57.99818,0.0,05/08/3533 +0.07122,47.64147,7474,4,13,5,17,19,3.65,5.0,fr,35909,149,1524495,1,1,Active Shallow Crust,240.0012,58.01293,0.0,04/13/7474 +0.07122,47.64147,3170,10,5,0,31,12,3.65,5.0,fr,35910,63,1524498,1,1,Active Shallow Crust,0.0,89.99004,-90.0,10/05/3170 +0.07122,47.64147,5093,10,17,14,2,31,3.75,5.0,fr,35911,101,1524504,1,1,Active Shallow Crust,0.0,89.98997,0.0,10/17/5093 +0.07122,47.64147,4666,8,15,17,55,26,3.85,5.0,fr,35912,93,1524516,1,1,Active Shallow Crust,0.0,89.99001,0.0,08/15/4666 +0.07122,47.64147,2555,3,7,22,49,9,3.95,5.0,fr,35913,51,1524528,1,2,Active Shallow Crust,0.0,89.99002,0.0,03/07/2555 +0.07122,47.64147,1138,12,10,6,22,54,3.95,5.0,fr,35914,22,1524528,1,2,Active Shallow Crust,0.0,89.99002,0.0,12/10/1138 +0.07122,47.64147,7778,10,27,13,7,37,3.95,15.0,fr,35915,155,1524529,1,1,Active Shallow Crust,0.0,89.99002,0.0,10/27/7778 +0.07122,47.64147,3673,9,27,13,45,38,4.05,5.0,fr,35916,73,1524540,1,1,Active Shallow Crust,0.0,89.98997,0.0,09/27/3673 +0.07122,47.64147,4119,3,3,20,57,49,5.05,5.0,fr,35917,82,1524660,1,1,Active Shallow Crust,0.0,89.98999,0.0,03/03/4119 +2.25308,40.20637,7081,4,23,21,9,20,3.95,5.0,fr,35918,141,1525008,1,1,Active Shallow Crust,0.0,89.99028,0.0,04/23/7081 +2.25308,40.20637,1447,6,24,19,6,46,3.95,5.0,fr,35919,28,1525011,1,1,Active Shallow Crust,240.0189,58.0046,0.0,06/24/1447 +9.11101,48.73248,6023,9,16,1,27,25,3.55,5.0,fr,35920,120,1525440,1,2,Active Shallow Crust,0.0,89.98669,0.0,09/16/6023 +9.11101,48.73248,537,10,20,11,37,45,3.55,5.0,fr,35921,10,1525440,1,2,Active Shallow Crust,0.0,89.98669,0.0,10/20/0537 +9.11101,48.73248,1039,2,27,6,23,8,3.55,27.5,fr,35922,20,1525442,1,1,Active Shallow Crust,0.0,89.98669,0.0,02/27/1039 +9.11101,48.73248,2991,2,15,10,55,50,3.55,5.0,fr,35923,59,1525446,1,2,Active Shallow Crust,0.0,89.98654,-90.0,02/15/2991 +9.11101,48.73248,7321,2,6,13,23,30,3.55,5.0,fr,35924,146,1525446,1,2,Active Shallow Crust,0.0,89.98654,-90.0,02/06/7321 +9.11101,48.73248,8897,5,10,13,23,29,3.55,5.0,fr,35925,177,1525449,1,1,Active Shallow Crust,128.8939,89.99335,0.0,05/10/8897 +9.11101,48.73248,1032,6,7,4,28,52,3.65,5.0,fr,35926,20,1525452,1,1,Active Shallow Crust,0.0,89.98814,0.0,06/07/1032 +9.11101,48.73248,4849,3,24,22,23,45,3.65,15.0,fr,35927,96,1525453,1,1,Active Shallow Crust,0.0,89.98814,0.0,03/24/4849 +9.11101,48.73248,7066,3,19,1,38,3,3.65,15.0,fr,35928,141,1525459,1,1,Active Shallow Crust,0.0,89.98801,-90.0,03/19/7066 +9.11101,48.73248,1417,2,23,13,2,18,3.65,27.5,fr,35929,28,1525460,1,1,Active Shallow Crust,0.0,89.98801,-90.0,02/23/1417 +9.11101,48.73248,8371,11,5,16,35,44,3.75,15.0,fr,35930,167,1525465,1,1,Active Shallow Crust,0.0,89.98943,0.0,11/05/8371 +9.11101,48.73248,8757,6,7,18,37,51,3.75,15.0,fr,35931,175,1525474,1,1,Active Shallow Crust,128.8945,89.96753,0.0,06/07/8757 +9.11101,48.73248,2721,1,22,10,46,18,3.85,5.0,fr,35932,54,1525482,1,1,Active Shallow Crust,0.0,89.99047,-90.0,01/22/2721 +9.11101,48.73248,6756,9,29,7,25,24,3.95,5.0,fr,35933,135,1525488,1,2,Active Shallow Crust,0.0,89.99161,0.0,09/29/6756 +9.11101,48.73248,2885,11,21,21,14,54,3.95,5.0,fr,35934,57,1525488,1,2,Active Shallow Crust,0.0,89.99161,0.0,11/21/2885 +9.11101,48.73248,6052,10,31,17,3,32,4.05,5.0,fr,35935,121,1525500,1,1,Active Shallow Crust,0.0,89.99252,0.0,10/31/6052 +9.11101,48.73248,1245,4,3,22,11,23,4.15,5.0,fr,35936,24,1525512,1,1,Active Shallow Crust,359.9967,89.99333,0.0,04/03/1245 +9.11101,48.73248,3945,2,26,23,4,12,4.15,27.5,fr,35937,78,1525514,1,1,Active Shallow Crust,359.9967,89.99333,0.0,02/26/3945 +9.11101,48.73248,5512,12,2,11,56,6,4.45,5.0,fr,35938,110,1525554,1,1,Active Shallow Crust,0.0,89.99045,-90.0,12/02/5512 +5.52268,51.42587,941,6,19,11,17,0,3.55,5.0,fr,35939,18,1525920,1,1,Active Shallow Crust,0.0,89.98743,0.0,06/19/0941 +5.52268,51.42587,5231,5,2,19,3,41,3.55,27.5,fr,35940,104,1525922,1,2,Active Shallow Crust,0.0,89.98743,0.0,05/02/5231 +5.52268,51.42587,2436,3,30,13,2,50,3.55,27.5,fr,35941,48,1525922,1,2,Active Shallow Crust,0.0,89.98743,0.0,03/30/2436 +5.52268,51.42587,2293,3,19,15,37,25,3.55,5.0,fr,35942,45,1525923,1,1,Active Shallow Crust,240.0129,57.99806,0.0,03/19/2293 +5.52268,51.42587,244,5,18,7,16,25,3.65,5.0,fr,35943,4,1525932,1,1,Active Shallow Crust,0.0,89.98879,0.0,05/18/0244 +5.52268,51.42587,7415,4,1,12,24,8,3.75,5.0,fr,35944,148,1525944,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/01/7415 +5.52268,51.42587,340,5,9,9,22,38,3.75,5.0,fr,35945,6,1525953,1,1,Active Shallow Crust,128.8959,89.96758,0.0,05/09/0340 +5.52268,51.42587,5387,2,26,13,51,2,3.85,5.0,fr,35946,107,1525956,1,1,Active Shallow Crust,0.0,89.9911,0.0,02/26/5387 +5.52268,51.42587,4253,11,21,19,8,11,3.85,15.0,fr,35947,85,1525966,1,1,Active Shallow Crust,128.8947,89.99332,0.0,11/21/4253 +5.52268,51.42587,1844,1,16,2,40,50,4.05,5.0,fr,35948,36,1525980,1,1,Active Shallow Crust,0.0,89.9894,0.0,01/16/1844 +5.52268,51.42587,9264,5,30,7,53,32,4.25,5.0,fr,35949,185,1526007,1,1,Active Shallow Crust,240.0088,57.99408,0.0,05/30/9264 +5.52268,51.42587,9208,11,25,1,3,31,4.45,5.0,fr,35950,184,1526028,1,1,Active Shallow Crust,0.0,89.99107,0.0,11/25/9208 +-1.94925,50.82931,6395,1,8,3,21,15,3.65,15.0,fr,35951,127,1526413,1,1,Active Shallow Crust,0.0,89.99007,0.0,01/08/6395 +-1.94925,50.82931,15,3,30,22,55,59,3.85,15.0,fr,35952,0,1526437,1,1,Active Shallow Crust,0.0,89.98985,0.0,03/30/0015 +-1.94925,50.82931,4103,8,23,16,38,52,4.45,5.0,fr,35953,82,1526508,1,1,Active Shallow Crust,0.0,89.98983,0.0,08/23/4103 +-1.94925,50.82931,1133,11,28,1,28,8,5.55,15.0,fr,35954,22,1526641,1,1,Active Shallow Crust,0.0,89.98996,0.0,11/28/1133 +2.62053,52.18857,9367,8,22,4,58,17,3.55,5.0,fr,35955,187,1526880,1,1,Active Shallow Crust,0.0,89.99073,0.0,08/22/9367 +2.62053,52.18857,1059,9,11,0,49,39,3.55,5.0,fr,35956,21,1526883,1,1,Active Shallow Crust,240.0125,57.9986,0.0,09/11/1059 +2.62053,52.18857,2493,1,16,18,49,57,3.75,5.0,fr,35957,49,1526904,1,1,Active Shallow Crust,0.0,89.99018,0.0,01/16/2493 +2.62053,52.18857,9569,4,20,21,11,12,3.75,15.0,fr,35958,191,1526905,1,1,Active Shallow Crust,0.0,89.99018,0.0,04/20/9569 +2.62053,52.18857,822,6,26,6,45,3,4.45,27.5,fr,35959,16,1526990,1,1,Active Shallow Crust,0.0,89.99013,0.0,06/26/0822 +2.62053,52.18857,9286,7,10,21,29,2,4.85,5.0,fr,35960,185,1527042,1,1,Active Shallow Crust,0.0,89.9902,-90.0,07/10/9286 +1.3904,45.31962,622,5,23,11,17,29,3.75,5.0,fr,35961,12,1527387,1,1,Active Shallow Crust,240.0082,58.01756,0.0,05/23/0622 +1.3904,45.31962,4249,7,16,22,15,50,3.75,5.0,fr,35962,84,1527393,1,1,Active Shallow Crust,128.8967,89.96734,0.0,07/16/4249 +1.3904,45.31962,3066,11,13,23,38,25,3.75,15.0,fr,35963,61,1527394,1,1,Active Shallow Crust,128.8967,89.96734,0.0,11/13/3066 +1.3904,45.31962,8858,10,7,13,29,7,3.95,5.0,fr,35964,177,1527408,1,1,Active Shallow Crust,0.0,89.98994,0.0,10/07/8858 +1.3904,45.31962,3467,8,1,21,44,16,4.05,5.0,fr,35965,69,1527420,1,1,Active Shallow Crust,0.0,89.99003,0.0,08/01/3467 +1.3904,45.31962,70,10,14,16,42,9,4.25,5.0,fr,35966,1,1527444,1,1,Active Shallow Crust,0.0,89.98971,0.0,10/14/0070 +0.10161,49.89736,7125,6,9,12,20,7,3.55,5.0,fr,35967,142,1527840,1,1,Active Shallow Crust,0.0,89.98995,0.0,06/09/7125 +0.10161,49.89736,9280,11,14,13,21,48,3.55,15.0,fr,35968,185,1527841,1,1,Active Shallow Crust,0.0,89.98995,0.0,11/14/9280 +0.10161,49.89736,8968,4,4,3,47,19,3.75,15.0,fr,35969,179,1527865,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/04/8968 +0.10161,49.89736,8337,1,23,16,24,23,3.75,5.0,fr,35970,166,1527870,1,1,Active Shallow Crust,0.0,89.98997,-90.0,01/23/8337 +0.10161,49.89736,5892,11,9,11,29,0,3.85,5.0,fr,35971,117,1527876,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/09/5892 +0.10161,49.89736,8112,5,2,20,5,56,4.45,15.0,fr,35972,162,1527949,1,1,Active Shallow Crust,0.0,89.98999,0.0,05/02/8112 +-0.91031,45.4062,2101,10,29,7,56,45,3.55,15.0,fr,35973,42,1528321,1,1,Active Shallow Crust,0.0,89.99026,0.0,10/29/2101 +-0.91031,45.4062,6815,10,24,1,44,35,3.95,15.0,fr,35974,136,1528372,1,1,Active Shallow Crust,240.0196,58.00492,0.0,10/24/6815 +-0.91031,45.4062,585,10,11,15,56,3,4.05,5.0,fr,35975,11,1528380,1,1,Active Shallow Crust,0.0,89.99004,0.0,10/11/0585 +-0.91031,45.4062,2404,4,20,20,28,53,4.35,27.5,fr,35976,48,1528424,1,1,Active Shallow Crust,0.0,89.99002,-90.0,04/20/2404 +-0.91031,45.4062,6332,5,14,13,6,57,4.45,5.0,fr,35977,126,1528431,1,1,Active Shallow Crust,240.005,57.99461,0.0,05/14/6332 +-0.91031,45.4062,8717,4,4,5,28,14,4.95,5.0,fr,35978,174,1528488,1,1,Active Shallow Crust,0.0,89.98994,0.0,04/04/8717 +8.07486,47.86062,4731,9,3,12,46,47,3.55,5.0,fr,35979,94,1528800,1,2,Active Shallow Crust,0.0,89.98647,0.0,09/03/4731 +8.07486,47.86062,6144,3,10,2,34,17,3.55,5.0,fr,35980,122,1528800,1,2,Active Shallow Crust,0.0,89.98647,0.0,03/10/6144 +8.07486,47.86062,6559,3,20,13,58,3,3.55,15.0,fr,35981,131,1528801,1,2,Active Shallow Crust,0.0,89.98647,0.0,03/20/6559 +8.07486,47.86062,2606,10,25,1,50,49,3.55,15.0,fr,35982,52,1528801,1,2,Active Shallow Crust,0.0,89.98647,0.0,10/25/2606 +8.07486,47.86062,1648,7,1,19,8,8,3.55,15.0,fr,35983,32,1528804,1,1,Active Shallow Crust,240.0114,57.99771,0.0,07/01/1648 +8.07486,47.86062,4842,2,9,9,16,0,3.55,15.0,fr,35984,96,1528810,1,1,Active Shallow Crust,128.896,89.99323,0.0,02/09/4842 +8.07486,47.86062,101,9,13,14,49,24,3.65,15.0,fr,35985,2,1528819,1,1,Active Shallow Crust,0.0,89.9878,-90.0,09/13/0101 +8.07486,47.86062,154,8,11,9,20,47,3.65,5.0,fr,35986,3,1528821,1,1,Active Shallow Crust,128.901,89.96355,0.0,08/11/0154 +8.07486,47.86062,2523,12,10,12,20,30,3.75,5.0,fr,35987,50,1528824,1,3,Active Shallow Crust,0.0,89.98925,0.0,12/10/2523 +8.07486,47.86062,5723,6,25,23,58,53,3.75,5.0,fr,35988,114,1528824,1,3,Active Shallow Crust,0.0,89.98925,0.0,06/25/5723 +8.07486,47.86062,5691,9,1,17,45,59,3.75,5.0,fr,35989,113,1528824,1,3,Active Shallow Crust,0.0,89.98925,0.0,09/01/5691 +8.07486,47.86062,9954,11,13,2,16,25,3.75,27.5,fr,35990,199,1528826,1,1,Active Shallow Crust,0.0,89.98925,0.0,11/13/9954 +8.07486,47.86062,3555,3,9,17,18,54,3.75,15.0,fr,35991,71,1528834,1,1,Active Shallow Crust,128.8983,89.96621,0.0,03/09/3555 +8.07486,47.86062,8940,4,22,11,24,12,3.85,5.0,fr,35992,178,1528836,1,4,Active Shallow Crust,0.0,89.99042,0.0,04/22/8940 +8.07486,47.86062,8489,7,8,0,53,4,3.85,5.0,fr,35993,169,1528836,1,4,Active Shallow Crust,0.0,89.99042,0.0,07/08/8489 +8.07486,47.86062,2223,1,13,15,32,19,3.85,5.0,fr,35994,44,1528836,1,4,Active Shallow Crust,0.0,89.99042,0.0,01/13/2223 +8.07486,47.86062,1137,1,24,16,28,4,3.85,5.0,fr,35995,22,1528836,1,4,Active Shallow Crust,0.0,89.99042,0.0,01/24/1137 +8.07486,47.86062,2423,1,30,9,56,29,3.95,5.0,fr,35996,48,1528848,1,1,Active Shallow Crust,0.0,89.99146,0.0,01/30/2423 +8.07486,47.86062,3055,12,8,2,24,8,4.15,5.0,fr,35997,61,1528872,1,2,Active Shallow Crust,0.0,89.99322,0.0,12/08/3055 +8.07486,47.86062,484,8,27,0,52,46,4.15,5.0,fr,35998,9,1528872,1,2,Active Shallow Crust,0.0,89.99322,0.0,08/27/0484 +8.07486,47.86062,6523,6,24,23,47,59,4.35,15.0,fr,35999,130,1528897,1,1,Active Shallow Crust,0.0,89.98923,0.0,06/24/6523 +8.07486,47.86062,6446,3,28,0,29,9,4.45,15.0,fr,36000,128,1528912,1,1,Active Shallow Crust,240.0054,57.99413,0.0,03/28/6446 +8.07486,47.86062,9712,10,17,18,6,4,4.75,5.0,fr,36001,194,1528944,1,1,Active Shallow Crust,0.0,89.9898,0.0,10/17/9712 +8.07486,47.86062,5243,7,1,9,33,23,5.05,27.5,fr,36002,104,1528982,1,1,Active Shallow Crust,0.0,89.99037,0.0,07/01/5243 +6.57716,48.7055,1372,6,23,13,28,19,3.55,5.0,fr,36003,27,1529286,1,1,Active Shallow Crust,0.0,89.99327,-90.0,06/23/1372 +6.57716,48.7055,9003,5,27,8,40,20,3.85,5.0,fr,36004,180,1529316,1,1,Active Shallow Crust,0.0,89.99058,0.0,05/27/9003 +6.57716,48.7055,4057,3,12,2,56,12,3.95,15.0,fr,36005,81,1529329,1,1,Active Shallow Crust,0.0,89.9916,0.0,03/12/4057 +6.57716,48.7055,9935,4,29,15,8,22,4.05,5.0,fr,36006,198,1529340,1,1,Active Shallow Crust,0.0,89.98877,0.0,04/29/9935 +6.57716,48.7055,743,11,12,8,48,43,4.25,5.0,fr,36007,14,1529364,1,1,Active Shallow Crust,0.0,89.99108,0.0,11/12/0743 +7.27197,47.89854,8123,11,25,11,32,48,3.55,5.0,fr,36008,162,1529760,1,2,Active Shallow Crust,0.0,89.99324,0.0,11/25/8123 +7.27197,47.89854,4046,1,11,16,36,58,3.55,5.0,fr,36009,80,1529760,1,2,Active Shallow Crust,0.0,89.99324,0.0,01/11/4046 +7.27197,47.89854,807,9,30,5,49,23,3.55,15.0,fr,36010,16,1529761,1,2,Active Shallow Crust,0.0,89.99324,0.0,09/30/0807 +7.27197,47.89854,4142,5,26,6,4,16,3.55,15.0,fr,36011,82,1529761,1,2,Active Shallow Crust,0.0,89.99324,0.0,05/26/4142 +7.27197,47.89854,9156,2,24,19,36,32,3.55,5.0,fr,36012,183,1529763,1,1,Active Shallow Crust,240.0118,57.99812,0.0,02/24/9156 +7.27197,47.89854,3026,12,11,12,29,36,3.55,27.5,fr,36013,60,1529771,1,1,Active Shallow Crust,128.8952,89.99324,0.0,12/11/3026 +7.27197,47.89854,9737,11,29,10,14,39,3.65,5.0,fr,36014,194,1529772,1,1,Active Shallow Crust,0.0,89.98795,0.0,11/29/9737 +7.27197,47.89854,4585,9,16,12,34,36,3.65,5.0,fr,36015,91,1529778,1,1,Active Shallow Crust,0.0,89.98781,-90.0,09/16/4585 +7.27197,47.89854,8062,12,5,3,31,45,3.65,5.0,fr,36016,161,1529781,1,1,Active Shallow Crust,128.9007,89.96355,0.0,12/05/8062 +7.27197,47.89854,1571,7,24,19,32,43,3.65,15.0,fr,36017,31,1529782,1,1,Active Shallow Crust,128.9007,89.96355,0.0,07/24/1571 +7.27197,47.89854,1521,8,9,22,14,54,3.75,15.0,fr,36018,30,1529785,1,3,Active Shallow Crust,0.0,89.98926,0.0,08/09/1521 +7.27197,47.89854,1997,3,23,21,21,13,3.75,15.0,fr,36019,39,1529785,1,3,Active Shallow Crust,0.0,89.98926,0.0,03/23/1997 +7.27197,47.89854,5941,7,27,3,0,7,3.75,15.0,fr,36020,118,1529785,1,3,Active Shallow Crust,0.0,89.98926,0.0,07/27/5941 +7.27197,47.89854,2238,11,10,7,51,16,3.75,5.0,fr,36021,44,1529787,1,1,Active Shallow Crust,240.0084,58.0184,0.0,11/10/2238 +7.27197,47.89854,1884,1,11,8,48,54,3.75,5.0,fr,36022,37,1529793,1,2,Active Shallow Crust,128.8968,89.96751,0.0,01/11/1884 +7.27197,47.89854,2192,6,29,20,33,20,3.75,5.0,fr,36023,43,1529793,1,2,Active Shallow Crust,128.8968,89.96751,0.0,06/29/2192 +7.27197,47.89854,7417,10,31,14,36,32,3.85,5.0,fr,36024,148,1529796,1,2,Active Shallow Crust,0.0,89.99043,0.0,10/31/7417 +7.27197,47.89854,4782,6,3,7,9,55,3.85,5.0,fr,36025,95,1529796,1,2,Active Shallow Crust,0.0,89.99043,0.0,06/03/4782 +7.27197,47.89854,4996,11,25,10,3,35,3.85,27.5,fr,36026,99,1529798,1,1,Active Shallow Crust,0.0,89.99043,0.0,11/25/4996 +7.27197,47.89854,9993,10,21,12,16,58,3.85,5.0,fr,36027,199,1529799,1,1,Active Shallow Crust,240.0111,57.99733,0.0,10/21/9993 +7.27197,47.89854,1820,12,11,19,51,29,3.95,27.5,fr,36028,36,1529816,1,1,Active Shallow Crust,0.0,89.99137,-90.0,12/11/1820 +7.27197,47.89854,644,6,8,9,47,37,4.15,15.0,fr,36029,12,1529836,1,1,Active Shallow Crust,240.0082,57.9975,0.0,06/08/0644 +7.27197,47.89854,5297,3,27,22,2,42,4.25,27.5,fr,36030,105,1529846,1,1,Active Shallow Crust,0.0,89.99094,0.0,03/27/5297 +7.27197,47.89854,9,6,1,23,58,19,4.25,5.0,fr,36031,0,1529847,1,1,Active Shallow Crust,240.0077,57.99435,0.0,06/01/0009 +7.27197,47.89854,304,3,17,11,43,21,4.25,5.0,fr,36032,6,1529850,1,1,Active Shallow Crust,0.0,89.99084,-90.0,03/17/0304 +7.27197,47.89854,3920,10,16,10,59,51,4.25,15.0,fr,36033,78,1529851,1,1,Active Shallow Crust,0.0,89.99084,-90.0,10/16/3920 +7.27197,47.89854,7603,9,16,16,56,5,4.45,5.0,fr,36034,152,1529868,1,1,Active Shallow Crust,0.0,89.9904,0.0,09/16/7603 +7.27197,47.89854,3308,7,3,5,49,10,4.55,5.0,fr,36035,66,1529883,1,1,Active Shallow Crust,240.01,57.99745,0.0,07/03/3308 +7.27197,47.89854,9549,4,15,0,54,37,4.65,5.0,fr,36036,190,1529892,1,1,Active Shallow Crust,0.0,89.99047,0.0,04/15/9549 +7.27197,47.89854,2488,3,2,22,0,41,4.75,5.0,fr,36037,49,1529904,1,1,Active Shallow Crust,0.0,89.98981,0.0,03/02/2488 +7.27197,47.89854,2766,6,21,3,19,11,4.85,15.0,fr,36038,55,1529917,1,1,Active Shallow Crust,0.0,89.9894,0.0,06/21/2766 +-2.57289,42.75365,8646,9,11,12,15,6,3.55,5.0,fr,36039,172,1530240,1,1,Active Shallow Crust,0.0,89.98889,0.0,09/11/8646 +-2.57289,42.75365,6103,3,9,22,52,25,3.55,15.0,fr,36040,122,1530241,1,2,Active Shallow Crust,0.0,89.98889,0.0,03/09/6103 +-2.57289,42.75365,9516,8,29,16,19,58,3.55,15.0,fr,36041,190,1530241,1,2,Active Shallow Crust,0.0,89.98889,0.0,08/29/9516 +-2.57289,42.75365,3627,6,25,14,50,47,3.65,5.0,fr,36042,72,1530252,1,2,Active Shallow Crust,0.0,89.9901,0.0,06/25/3627 +-2.57289,42.75365,9285,4,24,9,58,38,3.65,5.0,fr,36043,185,1530252,1,2,Active Shallow Crust,0.0,89.9901,0.0,04/24/9285 +-2.57289,42.75365,5185,5,5,2,4,55,3.65,15.0,fr,36044,103,1530253,1,1,Active Shallow Crust,0.0,89.9901,0.0,05/05/5185 +-2.57289,42.75365,7416,3,3,2,45,7,3.75,15.0,fr,36045,148,1530265,1,1,Active Shallow Crust,0.0,89.99118,0.0,03/03/7416 +-2.57289,42.75365,1300,2,22,21,56,19,3.75,27.5,fr,36046,25,1530272,1,1,Active Shallow Crust,0.0,89.99107,-90.0,02/22/1300 +-2.57289,42.75365,9623,9,8,10,53,16,3.85,5.0,fr,36047,192,1530276,1,1,Active Shallow Crust,0.0,89.98952,0.0,09/08/9623 +-2.57289,42.75365,4685,3,6,10,38,59,3.95,5.0,fr,36048,93,1530288,1,1,Active Shallow Crust,0.0,89.99065,0.0,03/06/4685 +-2.57289,42.75365,1863,6,7,22,42,17,4.05,27.5,fr,36049,37,1530302,1,1,Active Shallow Crust,0.0,89.98959,0.0,06/07/1863 +-2.57289,42.75365,5180,5,12,7,10,24,4.05,5.0,fr,36050,103,1530303,1,1,Active Shallow Crust,240.005,58.00592,0.0,05/12/5180 +-2.57289,42.75365,3331,10,30,4,55,51,4.25,15.0,fr,36051,66,1530331,1,1,Active Shallow Crust,0.0,89.98996,-90.0,10/30/3331 +-2.57289,42.75365,2931,11,28,19,23,52,4.55,5.0,fr,36052,58,1530360,1,1,Active Shallow Crust,0.0,89.98946,0.0,11/28/2931 +-2.57289,42.75365,6452,8,29,18,9,45,4.75,15.0,fr,36053,129,1530385,1,1,Active Shallow Crust,0.0,89.98977,0.0,08/29/6452 +-2.57289,42.75365,7695,5,23,21,36,22,4.95,27.5,fr,36054,153,1530410,1,1,Active Shallow Crust,0.0,89.98965,0.0,05/23/7695 +-2.57289,42.75365,7296,11,7,13,15,31,4.95,15.0,fr,36055,145,1530418,1,1,Active Shallow Crust,128.8912,89.98979,0.0,11/07/7296 +3.55274,46.76277,378,8,9,15,58,12,3.85,5.0,fr,36056,7,1530756,1,2,Active Shallow Crust,0.0,89.99022,0.0,08/09/0378 +3.55274,46.76277,4512,11,9,10,58,59,3.85,5.0,fr,36057,90,1530756,1,2,Active Shallow Crust,0.0,89.99022,0.0,11/09/4512 +3.55274,46.76277,3599,5,1,22,13,2,3.85,5.0,fr,36058,71,1530759,1,1,Active Shallow Crust,240.0106,57.99786,0.0,05/01/3599 +3.55274,46.76277,5943,11,3,1,50,33,4.35,5.0,fr,36059,118,1530816,1,1,Active Shallow Crust,0.0,89.99037,0.0,11/03/5943 +3.55274,46.76277,2881,10,5,1,8,2,4.95,15.0,fr,36060,57,1530889,1,1,Active Shallow Crust,0.0,89.98966,0.0,10/05/2881 +2.9616,48.07596,9114,6,11,9,30,26,3.65,5.0,fr,36061,182,1531212,1,1,Active Shallow Crust,0.0,89.99099,0.0,06/11/9114 +2.9616,48.07596,2636,5,4,17,23,42,3.95,5.0,fr,36062,52,1531251,1,1,Active Shallow Crust,240.02,58.00499,0.0,05/04/2636 +2.9616,48.07596,5371,2,12,14,36,0,4.75,5.0,fr,36063,107,1531344,1,1,Active Shallow Crust,0.0,89.98985,0.0,02/12/5371 +2.9616,48.07596,31,10,1,23,9,29,5.05,15.0,fr,36064,0,1531390,1,1,Active Shallow Crust,128.8848,89.99046,0.0,10/01/0031 +5.10213,46.72681,3347,10,1,16,22,15,3.55,15.0,fr,36065,66,1531681,1,1,Active Shallow Crust,0.0,89.99309,0.0,10/01/3347 +5.10213,46.72681,8564,6,13,2,2,29,3.55,5.0,fr,36066,171,1531686,1,1,Active Shallow Crust,0.0,89.993,-90.0,06/13/8564 +5.10213,46.72681,445,7,20,22,45,6,3.65,5.0,fr,36067,8,1531692,1,1,Active Shallow Crust,0.0,89.98768,0.0,07/20/0445 +5.10213,46.72681,2718,3,5,0,1,54,3.65,27.5,fr,36068,54,1531697,1,1,Active Shallow Crust,240.0007,58.01335,0.0,03/05/2718 +5.10213,46.72681,6967,3,20,17,25,53,3.75,5.0,fr,36069,139,1531704,1,1,Active Shallow Crust,0.0,89.98902,0.0,03/20/6967 +5.10213,46.72681,3167,12,2,4,49,35,3.75,5.0,fr,36070,63,1531710,1,1,Active Shallow Crust,0.0,89.98889,-90.0,12/02/3167 +5.10213,46.72681,4717,7,21,19,38,37,3.95,15.0,fr,36071,94,1531729,1,1,Active Shallow Crust,0.0,89.99128,0.0,07/21/4717 +5.10213,46.72681,303,11,26,2,52,37,4.05,5.0,fr,36072,6,1531740,1,1,Active Shallow Crust,0.0,89.98833,0.0,11/26/0303 +5.10213,46.72681,1859,10,19,23,4,9,4.45,5.0,fr,36073,37,1531788,1,1,Active Shallow Crust,0.0,89.99019,0.0,10/19/1859 +2.59946,51.16504,362,4,7,1,54,15,3.65,5.0,fr,36074,7,1532172,1,1,Active Shallow Crust,0.0,89.98873,0.0,04/07/0362 +2.59946,51.16504,589,2,16,21,39,38,3.65,5.0,fr,36075,11,1532175,1,1,Active Shallow Crust,240.0011,58.01339,0.0,02/16/0589 +2.59946,51.16504,4543,9,4,8,20,22,4.25,5.0,fr,36076,90,1532250,1,1,Active Shallow Crust,0.0,89.99,-90.0,09/04/4543 +2.59946,51.16504,9539,9,18,22,53,6,4.65,15.0,fr,36077,190,1532293,1,1,Active Shallow Crust,0.0,89.9902,0.0,09/18/9539 +-0.18047,50.14508,9565,6,11,21,38,14,3.75,15.0,fr,36078,191,1532665,1,1,Active Shallow Crust,0.0,89.99005,0.0,06/11/9565 +-0.18047,50.14508,585,2,24,15,43,48,3.75,5.0,fr,36079,11,1532673,1,1,Active Shallow Crust,128.8962,89.96735,0.0,02/24/0585 +-0.18047,50.14508,7186,3,16,10,9,12,4.05,5.0,fr,36080,143,1532700,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/16/7186 +-0.18047,50.14508,4726,5,29,8,6,41,4.45,5.0,fr,36081,94,1532748,1,1,Active Shallow Crust,0.0,89.98997,0.0,05/29/4726 +-0.18047,50.14508,8715,11,10,11,14,6,5.05,5.0,fr,36082,174,1532820,1,1,Active Shallow Crust,360.0,89.99001,0.0,11/10/8715 +-0.03093,41.79707,2217,11,2,15,11,40,3.55,5.0,fr,36083,44,1533129,1,1,Active Shallow Crust,128.8966,89.99371,0.0,11/02/2217 +-0.03093,41.79707,2542,5,27,14,24,37,3.95,5.0,fr,36084,50,1533168,1,1,Active Shallow Crust,0.0,89.99,0.0,05/27/2542 +-0.03093,41.79707,7085,9,23,6,17,28,4.55,15.0,fr,36085,141,1533241,1,1,Active Shallow Crust,0.0,89.99,0.0,09/23/7085 +4.62252,47.55931,329,10,24,17,6,0,3.55,5.0,fr,36086,6,1533600,1,1,Active Shallow Crust,0.0,89.99319,0.0,10/24/0329 +4.62252,47.55931,9256,3,10,6,2,19,3.55,15.0,fr,36087,185,1533601,1,1,Active Shallow Crust,0.0,89.99319,0.0,03/10/9256 +4.62252,47.55931,3582,2,3,21,17,1,3.55,15.0,fr,36088,71,1533604,1,1,Active Shallow Crust,240.0123,57.99789,0.0,02/03/3582 +4.62252,47.55931,4345,10,22,12,28,9,3.85,5.0,fr,36089,86,1533636,1,1,Active Shallow Crust,0.0,89.99036,0.0,10/22/4345 +4.62252,47.55931,3969,8,12,18,57,49,3.95,5.0,fr,36090,79,1533648,1,1,Active Shallow Crust,0.0,89.99141,0.0,08/12/3969 +4.62252,47.55931,8630,7,20,16,38,26,4.05,15.0,fr,36091,172,1533661,1,1,Active Shallow Crust,0.0,89.98852,0.0,07/20/8630 +4.62252,47.55931,9819,12,28,16,53,34,4.05,5.0,fr,36092,196,1533666,1,1,Active Shallow Crust,0.0,89.98839,-90.0,12/28/9819 +4.62252,47.55931,7126,9,2,15,56,30,4.55,5.0,fr,36093,142,1533723,1,1,Active Shallow Crust,240.0096,57.99736,0.0,09/02/7126 +4.62252,47.55931,7855,3,8,12,12,44,4.65,5.0,fr,36094,157,1533741,1,1,Active Shallow Crust,128.8912,89.9868,0.0,03/08/7855 +4.622526,47.55931,7671,6,18,4,12,25,6.35,7.481178,fr,36095,153,1533942,1,1,Active Shallow Crust,0.0,89.98998,-90.0,06/18/7671 +5.79433,46.56004,3154,5,9,1,4,41,3.55,5.0,fr,36096,63,1534080,1,1,Active Shallow Crust,0.0,89.99306,0.0,05/09/3154 +5.79433,46.56004,6464,5,25,18,50,6,3.55,5.0,fr,36097,129,1534083,1,2,Active Shallow Crust,240.0118,57.9981,0.0,05/25/6464 +5.79433,46.56004,1324,10,11,11,22,16,3.55,5.0,fr,36098,26,1534083,1,2,Active Shallow Crust,240.0118,57.9981,0.0,10/11/1324 +5.79433,46.56004,2667,8,24,21,5,58,3.65,27.5,fr,36099,53,1534094,1,1,Active Shallow Crust,0.0,89.98764,0.0,08/24/2667 +5.79433,46.56004,6137,1,26,23,24,23,3.65,5.0,fr,36100,122,1534095,1,1,Active Shallow Crust,240.0016,58.01321,0.0,01/26/6137 +5.79433,46.56004,8651,1,3,21,13,24,3.65,5.0,fr,36101,173,1534101,1,1,Active Shallow Crust,128.9005,89.96352,0.0,01/03/8651 +5.79433,46.56004,8661,3,8,4,27,10,3.75,5.0,fr,36102,173,1534104,1,1,Active Shallow Crust,0.0,89.98898,0.0,03/08/8661 +5.79433,46.56004,2758,11,5,16,18,45,3.95,15.0,fr,36103,55,1534129,1,1,Active Shallow Crust,0.0,89.99125,0.0,11/05/2758 +5.79433,46.56004,1209,2,15,22,13,53,4.05,5.0,fr,36104,24,1534143,1,1,Active Shallow Crust,240.0054,58.00642,0.0,02/15/1209 +5.79433,46.56004,3770,2,10,20,51,16,4.65,5.0,fr,36105,75,1534212,1,1,Active Shallow Crust,0.0,89.99023,0.0,02/10/3770 +5.79433,46.56004,7863,2,14,15,45,24,5.15,27.5,fr,36106,157,1534274,1,1,Active Shallow Crust,0.0,89.9901,0.0,02/14/7863 +4.17903,52.83854,9956,4,5,0,52,29,3.75,5.0,fr,36107,199,1534590,1,1,Active Shallow Crust,0.0,89.99021,-90.0,04/05/9956 +4.17903,52.83854,8953,1,18,10,14,35,4.55,5.0,fr,36108,179,1534686,1,1,Active Shallow Crust,0.0,89.99026,-90.0,01/18/8953 +0.18784,47.11417,5595,10,12,4,55,8,3.55,5.0,fr,36109,111,1535040,1,1,Active Shallow Crust,0.0,89.98992,0.0,10/12/5595 +0.18784,47.11417,8433,9,3,15,20,22,3.55,15.0,fr,36110,168,1535041,1,1,Active Shallow Crust,0.0,89.98992,0.0,09/03/8433 +0.18784,47.11417,8953,5,8,13,51,35,3.55,5.0,fr,36111,179,1535043,1,1,Active Shallow Crust,240.0122,57.99818,0.0,05/08/8953 +0.18784,47.11417,279,5,14,3,14,1,3.55,5.0,fr,36112,5,1535046,1,1,Active Shallow Crust,0.0,89.99002,-90.0,05/14/0279 +0.18784,47.11417,9247,9,1,10,25,16,3.65,15.0,fr,36113,184,1535053,1,1,Active Shallow Crust,0.0,89.99006,0.0,09/01/9247 +0.18784,47.11417,7145,5,4,10,16,59,3.65,5.0,fr,36114,142,1535061,1,1,Active Shallow Crust,128.9004,89.9635,0.0,05/04/7145 +0.18784,47.11417,536,11,22,13,17,53,3.65,15.0,fr,36115,10,1535062,1,1,Active Shallow Crust,128.9004,89.9635,0.0,11/22/0536 +0.18784,47.11417,1586,8,25,15,52,6,3.75,5.0,fr,36116,31,1535067,1,1,Active Shallow Crust,240.0084,58.01759,0.0,08/25/1586 +0.18784,47.11417,1074,11,8,3,35,7,3.75,15.0,fr,36117,21,1535074,1,1,Active Shallow Crust,128.8966,89.96735,0.0,11/08/1074 +0.18784,47.11417,1527,1,26,23,58,8,3.85,5.0,fr,36118,30,1535076,1,2,Active Shallow Crust,0.0,89.98998,0.0,01/26/1527 +0.18784,47.11417,400,1,21,12,39,11,3.85,5.0,fr,36119,7,1535076,1,2,Active Shallow Crust,0.0,89.98998,0.0,01/21/0400 +0.18784,47.11417,2201,4,13,17,28,51,3.85,5.0,fr,36120,44,1535079,1,1,Active Shallow Crust,240.0109,57.99784,0.0,04/13/2201 +0.18784,47.11417,6507,8,16,8,28,0,3.85,15.0,fr,36121,130,1535086,1,1,Active Shallow Crust,128.8956,89.9937,0.0,08/16/6507 +0.18784,47.11417,8637,3,16,18,18,2,3.95,5.0,fr,36122,172,1535088,1,1,Active Shallow Crust,0.0,89.98999,0.0,03/16/8637 +0.18784,47.11417,5525,1,30,21,33,51,4.05,5.0,fr,36123,110,1535100,1,1,Active Shallow Crust,0.0,89.98999,0.0,01/30/5525 +0.18784,47.11417,7339,11,23,17,49,15,4.05,5.0,fr,36124,146,1535109,1,1,Active Shallow Crust,128.8904,89.99373,0.0,11/23/7339 +0.18784,47.11417,3327,12,24,8,53,27,4.15,5.0,fr,36125,66,1535112,1,2,Active Shallow Crust,0.0,89.99001,0.0,12/24/3327 +0.18784,47.11417,9537,9,28,16,30,34,4.15,5.0,fr,36126,190,1535112,1,2,Active Shallow Crust,0.0,89.99001,0.0,09/28/9537 +0.18784,47.11417,9665,9,9,12,9,8,4.15,5.0,fr,36127,193,1535118,1,1,Active Shallow Crust,0.0,89.99,-90.0,09/09/9665 +0.18784,47.11417,2034,9,30,23,52,17,4.25,5.0,fr,36128,40,1535124,1,1,Active Shallow Crust,0.0,89.99004,0.0,09/30/2034 +0.18784,47.11417,2337,9,19,13,15,23,4.35,5.0,fr,36129,46,1535136,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/19/2337 +0.18784,47.11417,3862,2,27,10,56,17,4.35,15.0,fr,36130,77,1535137,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/27/3862 +0.18784,47.11417,3503,11,8,2,35,6,4.95,15.0,fr,36131,70,1535215,1,1,Active Shallow Crust,0.0,89.99,-90.0,11/08/3503 +0.18784,47.11417,6282,11,19,21,5,50,5.45,5.0,fr,36132,125,1535268,1,1,Active Shallow Crust,360.0,89.99001,0.0,11/19/6282 +0.26536,45.77513,4848,11,1,12,27,57,3.55,5.0,fr,36133,96,1535520,1,1,Active Shallow Crust,0.0,89.98989,0.0,11/01/4848 +0.26536,45.77513,7858,4,13,18,56,3,3.55,15.0,fr,36134,157,1535524,1,1,Active Shallow Crust,240.012,57.99822,0.0,04/13/7858 +0.26536,45.77513,1589,2,13,21,49,24,3.55,27.5,fr,36135,31,1535528,1,1,Active Shallow Crust,0.0,89.99022,-90.0,02/13/1589 +0.26536,45.77513,925,7,4,16,3,23,3.55,5.0,fr,36136,18,1535529,1,1,Active Shallow Crust,128.8962,89.99384,0.0,07/04/0925 +0.26536,45.77513,7002,11,23,22,33,57,3.65,15.0,fr,36137,140,1535533,1,1,Active Shallow Crust,0.0,89.98981,0.0,11/23/7002 +0.26536,45.77513,3303,3,25,21,20,49,3.65,5.0,fr,36138,66,1535535,1,1,Active Shallow Crust,240.001,58.01281,0.0,03/25/3303 +0.26536,45.77513,4764,9,10,6,0,31,3.75,5.0,fr,36139,95,1535544,1,1,Active Shallow Crust,0.0,89.98988,0.0,09/10/4764 +0.26536,45.77513,9122,7,23,20,35,23,3.75,5.0,fr,36140,182,1535547,1,1,Active Shallow Crust,240.0082,58.01754,0.0,07/23/9122 +0.26536,45.77513,4873,8,26,23,15,28,3.85,5.0,fr,36141,97,1535556,1,3,Active Shallow Crust,0.0,89.99004,0.0,08/26/4873 +0.26536,45.77513,3321,9,11,8,31,47,3.85,5.0,fr,36142,66,1535556,1,3,Active Shallow Crust,0.0,89.99004,0.0,09/11/3321 +0.26536,45.77513,451,8,30,14,4,15,3.85,5.0,fr,36143,9,1535556,1,3,Active Shallow Crust,0.0,89.99004,0.0,08/30/0451 +0.26536,45.77513,7436,7,14,21,15,8,3.85,27.5,fr,36144,148,1535558,1,1,Active Shallow Crust,0.0,89.99004,0.0,07/14/7436 +0.26536,45.77513,5056,9,30,23,56,52,3.95,5.0,fr,36145,101,1535568,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/30/5056 +0.26536,45.77513,441,11,5,11,36,4,3.95,15.0,fr,36146,8,1535569,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/05/0441 +0.26536,45.77513,350,1,13,6,31,11,4.05,5.0,fr,36147,6,1535580,1,2,Active Shallow Crust,0.0,89.99011,0.0,01/13/0350 +0.26536,45.77513,4181,11,15,20,5,37,4.05,5.0,fr,36148,83,1535580,1,2,Active Shallow Crust,0.0,89.99011,0.0,11/15/4181 +0.26536,45.77513,34,4,17,22,28,21,4.05,15.0,fr,36149,0,1535590,1,1,Active Shallow Crust,128.8906,89.9937,0.0,04/17/0034 +0.26536,45.77513,2065,4,16,0,39,40,4.15,5.0,fr,36150,41,1535601,1,1,Active Shallow Crust,128.8976,89.99372,0.0,04/16/2065 +0.26536,45.77513,6458,5,1,4,2,55,4.25,5.0,fr,36151,129,1535604,1,1,Active Shallow Crust,0.0,89.98998,0.0,05/01/6458 +0.26536,45.77513,7845,8,12,3,41,41,4.25,27.5,fr,36152,156,1535612,1,1,Active Shallow Crust,0.0,89.99007,-90.0,08/12/7845 +0.26536,45.77513,2869,10,25,4,19,5,4.55,5.0,fr,36153,57,1535640,1,2,Active Shallow Crust,0.0,89.98999,0.0,10/25/2869 +0.26536,45.77513,8093,1,20,22,52,59,4.55,5.0,fr,36154,161,1535640,1,2,Active Shallow Crust,0.0,89.98999,0.0,01/20/8093 +0.26536,45.77513,8918,6,19,9,38,13,4.65,5.0,fr,36155,178,1535652,1,1,Active Shallow Crust,0.0,89.98997,0.0,06/19/8918 +0.26536,45.77513,4071,9,27,20,52,10,4.85,5.0,fr,36156,81,1535676,1,1,Active Shallow Crust,0.0,89.98996,0.0,09/27/4071 +0.26536,45.77513,1435,10,21,14,4,49,4.85,5.0,fr,36157,28,1535685,1,1,Active Shallow Crust,128.8929,89.98899,0.0,10/21/1435 +0.26536,45.77513,3861,8,23,1,40,23,4.95,5.0,fr,36158,77,1535688,1,1,Active Shallow Crust,0.0,89.99,0.0,08/23/3861 +0.26536,45.77513,6294,2,7,20,13,16,5.05,5.0,fr,36159,125,1535703,1,1,Active Shallow Crust,240.0218,57.9975,0.0,02/07/6294 +0.26536,45.77513,705,7,31,17,10,34,5.65,5.0,fr,36160,14,1535772,1,1,Active Shallow Crust,0.0,89.99001,0.0,07/31/0705 +4.43083,44.28319,2295,5,5,17,53,2,3.55,5.0,fr,36161,45,1536960,1,2,Active Shallow Crust,0.0,89.99278,0.0,05/05/2295 +4.43083,44.28319,2617,2,8,7,51,45,3.55,5.0,fr,36162,52,1536960,1,2,Active Shallow Crust,0.0,89.99278,0.0,02/08/2617 +4.43083,44.28319,810,11,21,17,37,32,3.55,15.0,fr,36163,16,1536961,1,1,Active Shallow Crust,0.0,89.99278,0.0,11/21/0810 +4.43083,44.28319,6685,1,26,17,57,36,3.55,15.0,fr,36164,133,1536964,1,1,Active Shallow Crust,240.0132,57.9979,0.0,01/26/6685 +4.43083,44.28319,4570,2,4,14,2,42,3.65,5.0,fr,36165,91,1536972,1,1,Active Shallow Crust,0.0,89.98713,0.0,02/04/4570 +4.43083,44.28319,1917,11,14,10,37,37,3.85,5.0,fr,36166,38,1537005,1,1,Active Shallow Crust,128.8968,89.99233,0.0,11/14/1917 +4.43083,44.28319,1069,10,6,14,24,28,4.15,5.0,fr,36167,21,1537032,1,1,Active Shallow Crust,0.0,89.98914,0.0,10/06/1069 +4.43083,44.28319,6063,6,19,11,34,42,4.25,5.0,fr,36168,121,1537044,1,1,Active Shallow Crust,0.0,89.99033,0.0,06/19/6063 +4.43083,44.28319,4694,11,4,0,16,28,4.25,5.0,fr,36169,93,1537047,1,1,Active Shallow Crust,240.0072,57.99344,0.0,11/04/4694 +4.43083,44.28319,2709,12,24,2,40,56,4.35,5.0,fr,36170,54,1537065,1,1,Active Shallow Crust,128.8982,89.98295,0.0,12/24/2709 +4.43083,44.28319,1207,8,26,9,34,31,4.45,15.0,fr,36171,24,1537072,1,1,Active Shallow Crust,240.0045,57.99443,0.0,08/26/1207 +1.14642,43.41083,2357,3,10,9,11,47,3.55,5.0,fr,36172,47,1537440,1,1,Active Shallow Crust,0.0,89.99084,0.0,03/10/2357 +1.14642,43.41083,8693,5,19,11,39,33,3.55,15.0,fr,36173,173,1537441,1,1,Active Shallow Crust,0.0,89.99084,0.0,05/19/8693 +1.14642,43.41083,6806,11,27,22,24,3,3.55,5.0,fr,36174,136,1537443,1,1,Active Shallow Crust,240.0119,57.99818,0.0,11/27/6806 +1.14642,43.41083,9058,2,10,0,1,0,3.75,5.0,fr,36175,181,1537464,1,2,Active Shallow Crust,0.0,89.98981,0.0,02/10/9058 +1.14642,43.41083,9858,12,13,0,27,25,3.75,5.0,fr,36176,197,1537464,1,2,Active Shallow Crust,0.0,89.98981,0.0,12/13/9858 +-3.5368,50.31468,9088,8,3,6,52,37,3.75,5.0,fr,36177,181,1538433,1,1,Active Shallow Crust,128.8957,89.96756,0.0,08/03/9088 +-1.25127,42.35286,711,4,22,18,51,38,3.55,15.0,fr,36178,14,1538881,1,1,Active Shallow Crust,0.0,89.99068,0.0,04/22/0711 +-1.25127,42.35286,9365,11,8,21,20,12,3.75,15.0,fr,36179,187,1538905,1,1,Active Shallow Crust,0.0,89.98964,0.0,11/08/9365 +-1.25127,42.35286,7366,10,10,22,3,36,3.85,5.0,fr,36180,147,1538916,1,2,Active Shallow Crust,0.0,89.98945,0.0,10/10/7366 +-1.25127,42.35286,6898,12,2,10,3,54,3.85,5.0,fr,36181,137,1538916,1,2,Active Shallow Crust,0.0,89.98945,0.0,12/02/6898 +-1.25127,42.35286,5117,6,1,16,18,34,3.85,27.5,fr,36182,102,1538924,1,1,Active Shallow Crust,0.0,89.99066,-90.0,06/01/5117 +-1.25127,42.35286,2921,3,10,3,11,43,4.25,5.0,fr,36183,58,1538967,1,1,Active Shallow Crust,240.0068,57.99396,0.0,03/10/2921 +7.48982,46.3764,7144,11,13,2,59,18,3.55,5.0,fr,36184,142,1539840,1,18,Active Shallow Crust,0.0,89.99304,0.0,11/13/7144 +7.48982,46.3764,3983,8,1,10,26,43,3.55,5.0,fr,36185,79,1539840,1,18,Active Shallow Crust,0.0,89.99304,0.0,08/01/3983 +7.48982,46.3764,8022,8,23,15,15,22,3.55,5.0,fr,36186,160,1539840,1,18,Active Shallow Crust,0.0,89.99304,0.0,08/23/8022 +7.48982,46.3764,5081,3,2,8,12,12,3.55,5.0,fr,36187,101,1539840,1,18,Active Shallow Crust,0.0,89.99304,0.0,03/02/5081 +7.48982,46.3764,591,12,25,23,33,40,3.55,5.0,fr,36188,11,1539840,1,18,Active Shallow Crust,0.0,89.99304,0.0,12/25/0591 +7.48982,46.3764,2959,9,10,6,43,9,3.55,5.0,fr,36189,59,1539840,1,18,Active Shallow Crust,0.0,89.99304,0.0,09/10/2959 +7.48982,46.3764,6878,10,4,8,12,5,3.55,5.0,fr,36190,137,1539840,1,18,Active Shallow Crust,0.0,89.99304,0.0,10/04/6878 +7.48982,46.3764,6141,5,30,14,12,32,3.55,5.0,fr,36191,122,1539840,1,18,Active Shallow Crust,0.0,89.99304,0.0,05/30/6141 +7.48982,46.3764,7844,10,7,8,55,7,3.55,5.0,fr,36192,156,1539840,1,18,Active Shallow Crust,0.0,89.99304,0.0,10/07/7844 +7.48982,46.3764,5842,9,5,0,28,10,3.55,5.0,fr,36193,116,1539840,1,18,Active Shallow Crust,0.0,89.99304,0.0,09/05/5842 +7.48982,46.3764,7314,7,21,10,18,44,3.55,5.0,fr,36194,146,1539840,1,18,Active Shallow Crust,0.0,89.99304,0.0,07/21/7314 +7.48982,46.3764,236,10,16,14,9,56,3.55,5.0,fr,36195,4,1539840,1,18,Active Shallow Crust,0.0,89.99304,0.0,10/16/0236 +7.48982,46.3764,5411,3,7,6,17,1,3.55,5.0,fr,36196,108,1539840,1,18,Active Shallow Crust,0.0,89.99304,0.0,03/07/5411 +7.48982,46.3764,8875,6,9,22,55,26,3.55,5.0,fr,36197,177,1539840,1,18,Active Shallow Crust,0.0,89.99304,0.0,06/09/8875 +7.48982,46.3764,6672,10,20,8,7,22,3.55,5.0,fr,36198,133,1539840,1,18,Active Shallow Crust,0.0,89.99304,0.0,10/20/6672 +7.48982,46.3764,1432,2,25,5,52,37,3.55,5.0,fr,36199,28,1539840,1,18,Active Shallow Crust,0.0,89.99304,0.0,02/25/1432 +7.48982,46.3764,1977,6,9,11,47,17,3.55,5.0,fr,36200,39,1539840,1,18,Active Shallow Crust,0.0,89.99304,0.0,06/09/1977 +7.48982,46.3764,8779,12,11,11,33,2,3.55,5.0,fr,36201,175,1539840,1,18,Active Shallow Crust,0.0,89.99304,0.0,12/11/8779 +7.48982,46.3764,1796,5,24,21,57,43,3.55,15.0,fr,36202,35,1539841,1,4,Active Shallow Crust,0.0,89.99304,0.0,05/24/1796 +7.48982,46.3764,5382,3,17,13,7,38,3.55,15.0,fr,36203,107,1539841,1,4,Active Shallow Crust,0.0,89.99304,0.0,03/17/5382 +7.48982,46.3764,3627,7,26,14,13,4,3.55,15.0,fr,36204,72,1539841,1,4,Active Shallow Crust,0.0,89.99304,0.0,07/26/3627 +7.48982,46.3764,3048,11,11,2,35,27,3.55,15.0,fr,36205,60,1539841,1,4,Active Shallow Crust,0.0,89.99304,0.0,11/11/3048 +7.48982,46.3764,9369,4,27,0,26,39,3.55,27.5,fr,36206,187,1539842,1,1,Active Shallow Crust,0.0,89.99304,0.0,04/27/9369 +7.48982,46.3764,4146,11,9,12,59,42,3.55,5.0,fr,36207,82,1539843,1,5,Active Shallow Crust,240.0122,57.99847,0.0,11/09/4146 +7.48982,46.3764,2410,6,19,21,42,56,3.55,5.0,fr,36208,48,1539843,1,5,Active Shallow Crust,240.0122,57.99847,0.0,06/19/2410 +7.48982,46.3764,8606,9,8,0,52,40,3.55,5.0,fr,36209,172,1539843,1,5,Active Shallow Crust,240.0122,57.99847,0.0,09/08/8606 +7.48982,46.3764,9866,12,5,10,56,28,3.55,5.0,fr,36210,197,1539843,1,5,Active Shallow Crust,240.0122,57.99847,0.0,12/05/9866 +7.48982,46.3764,6733,6,6,15,21,54,3.55,5.0,fr,36211,134,1539843,1,5,Active Shallow Crust,240.0122,57.99847,0.0,06/06/6733 +7.48982,46.3764,8824,4,19,20,46,55,3.55,27.5,fr,36212,176,1539845,1,1,Active Shallow Crust,240.0122,57.99838,0.0,04/19/8824 +7.48982,46.3764,7017,10,11,2,3,1,3.55,5.0,fr,36213,140,1539846,1,2,Active Shallow Crust,0.0,89.99297,-90.0,10/11/7017 +7.48982,46.3764,5296,2,23,15,25,5,3.55,5.0,fr,36214,105,1539846,1,2,Active Shallow Crust,0.0,89.99297,-90.0,02/23/5296 +7.48982,46.3764,2178,9,2,8,13,47,3.55,15.0,fr,36215,43,1539847,1,2,Active Shallow Crust,0.0,89.99297,-90.0,09/02/2178 +7.48982,46.3764,8764,4,29,16,7,0,3.55,15.0,fr,36216,175,1539847,1,2,Active Shallow Crust,0.0,89.99297,-90.0,04/29/8764 +7.48982,46.3764,6668,4,3,15,46,12,3.55,5.0,fr,36217,133,1539849,1,2,Active Shallow Crust,128.8968,89.99304,0.0,04/03/6668 +7.48982,46.3764,1963,2,2,15,27,14,3.55,5.0,fr,36218,39,1539849,1,2,Active Shallow Crust,128.8968,89.99304,0.0,02/02/1963 +7.48982,46.3764,108,5,13,11,32,34,3.55,15.0,fr,36219,2,1539850,1,2,Active Shallow Crust,128.8968,89.99304,0.0,05/13/0108 +7.48982,46.3764,2922,6,11,2,21,53,3.55,15.0,fr,36220,58,1539850,1,2,Active Shallow Crust,128.8968,89.99304,0.0,06/11/2922 +7.48982,46.3764,5020,10,25,18,13,1,3.65,5.0,fr,36221,100,1539852,1,13,Active Shallow Crust,0.0,89.9876,0.0,10/25/5020 +7.48982,46.3764,3641,6,11,0,8,52,3.65,5.0,fr,36222,72,1539852,1,13,Active Shallow Crust,0.0,89.9876,0.0,06/11/3641 +7.48982,46.3764,8629,3,30,16,23,42,3.65,5.0,fr,36223,172,1539852,1,13,Active Shallow Crust,0.0,89.9876,0.0,03/30/8629 +7.48982,46.3764,2384,12,13,8,31,47,3.65,5.0,fr,36224,47,1539852,1,13,Active Shallow Crust,0.0,89.9876,0.0,12/13/2384 +7.48982,46.3764,5443,9,30,14,10,21,3.65,5.0,fr,36225,108,1539852,1,13,Active Shallow Crust,0.0,89.9876,0.0,09/30/5443 +7.48982,46.3764,6710,7,19,13,37,31,3.65,5.0,fr,36226,134,1539852,1,13,Active Shallow Crust,0.0,89.9876,0.0,07/19/6710 +7.48982,46.3764,7344,3,24,11,14,53,3.65,5.0,fr,36227,146,1539852,1,13,Active Shallow Crust,0.0,89.9876,0.0,03/24/7344 +7.48982,46.3764,5356,4,22,0,39,13,3.65,5.0,fr,36228,107,1539852,1,13,Active Shallow Crust,0.0,89.9876,0.0,04/22/5356 +7.48982,46.3764,8779,7,13,14,47,10,3.65,5.0,fr,36229,175,1539852,1,13,Active Shallow Crust,0.0,89.9876,0.0,07/13/8779 +7.48982,46.3764,918,11,1,12,49,49,3.65,5.0,fr,36230,18,1539852,1,13,Active Shallow Crust,0.0,89.9876,0.0,11/01/0918 +7.48982,46.3764,9059,8,27,2,5,17,3.65,5.0,fr,36231,181,1539852,1,13,Active Shallow Crust,0.0,89.9876,0.0,08/27/9059 +7.48982,46.3764,7925,6,13,2,17,48,3.65,5.0,fr,36232,158,1539852,1,13,Active Shallow Crust,0.0,89.9876,0.0,06/13/7925 +7.48982,46.3764,9946,4,6,23,55,24,3.65,5.0,fr,36233,198,1539852,1,13,Active Shallow Crust,0.0,89.9876,0.0,04/06/9946 +7.48982,46.3764,7471,12,8,20,7,12,3.65,15.0,fr,36234,149,1539853,1,3,Active Shallow Crust,0.0,89.9876,0.0,12/08/7471 +7.48982,46.3764,5652,2,26,19,33,39,3.65,15.0,fr,36235,113,1539853,1,3,Active Shallow Crust,0.0,89.9876,0.0,02/26/5652 +7.48982,46.3764,819,10,30,22,37,35,3.65,15.0,fr,36236,16,1539853,1,3,Active Shallow Crust,0.0,89.9876,0.0,10/30/0819 +7.48982,46.3764,4001,8,19,6,24,54,3.65,5.0,fr,36237,80,1539855,1,1,Active Shallow Crust,240.0002,58.01381,0.0,08/19/4001 +7.48982,46.3764,3967,1,30,2,10,52,3.65,27.5,fr,36238,79,1539857,1,1,Active Shallow Crust,240.0002,58.01372,0.0,01/30/3967 +7.48982,46.3764,2431,9,23,2,28,45,3.65,5.0,fr,36239,48,1539858,1,2,Active Shallow Crust,0.0,89.98746,-90.0,09/23/2431 +7.48982,46.3764,1307,8,14,3,26,39,3.65,5.0,fr,36240,26,1539858,1,2,Active Shallow Crust,0.0,89.98746,-90.0,08/14/1307 +7.48982,46.3764,6399,3,6,12,4,36,3.65,27.5,fr,36241,127,1539863,1,3,Active Shallow Crust,128.9013,89.96352,0.0,03/06/6399 +7.48982,46.3764,1917,10,17,17,8,6,3.65,27.5,fr,36242,38,1539863,1,3,Active Shallow Crust,128.9013,89.96352,0.0,10/17/1917 +7.48982,46.3764,8440,4,2,11,35,15,3.65,27.5,fr,36243,168,1539863,1,3,Active Shallow Crust,128.9013,89.96352,0.0,04/02/8440 +7.48982,46.3764,230,10,16,17,22,36,3.75,5.0,fr,36244,4,1539864,1,11,Active Shallow Crust,0.0,89.98895,0.0,10/16/0230 +7.48982,46.3764,3484,4,30,9,12,32,3.75,5.0,fr,36245,69,1539864,1,11,Active Shallow Crust,0.0,89.98895,0.0,04/30/3484 +7.48982,46.3764,4355,2,27,13,35,13,3.75,5.0,fr,36246,87,1539864,1,11,Active Shallow Crust,0.0,89.98895,0.0,02/27/4355 +7.48982,46.3764,4026,12,5,15,59,32,3.75,5.0,fr,36247,80,1539864,1,11,Active Shallow Crust,0.0,89.98895,0.0,12/05/4026 +7.48982,46.3764,314,11,23,22,58,32,3.75,5.0,fr,36248,6,1539864,1,11,Active Shallow Crust,0.0,89.98895,0.0,11/23/0314 +7.48982,46.3764,4796,10,20,18,58,25,3.75,5.0,fr,36249,95,1539864,1,11,Active Shallow Crust,0.0,89.98895,0.0,10/20/4796 +7.48982,46.3764,3189,5,6,20,39,59,3.75,5.0,fr,36250,63,1539864,1,11,Active Shallow Crust,0.0,89.98895,0.0,05/06/3189 +7.48982,46.3764,7708,12,2,1,20,11,3.75,5.0,fr,36251,154,1539864,1,11,Active Shallow Crust,0.0,89.98895,0.0,12/02/7708 +7.48982,46.3764,5034,3,5,11,43,16,3.75,5.0,fr,36252,100,1539864,1,11,Active Shallow Crust,0.0,89.98895,0.0,03/05/5034 +7.48982,46.3764,2932,12,10,16,8,11,3.75,5.0,fr,36253,58,1539864,1,11,Active Shallow Crust,0.0,89.98895,0.0,12/10/2932 +7.48982,46.3764,5977,11,19,15,58,48,3.75,5.0,fr,36254,119,1539864,1,11,Active Shallow Crust,0.0,89.98895,0.0,11/19/5977 +7.48982,46.3764,8496,1,1,19,1,59,3.75,15.0,fr,36255,169,1539865,1,3,Active Shallow Crust,0.0,89.98895,0.0,01/01/8496 +7.48982,46.3764,7229,2,6,4,24,36,3.75,15.0,fr,36256,144,1539865,1,3,Active Shallow Crust,0.0,89.98895,0.0,02/06/7229 +7.48982,46.3764,5166,11,25,4,0,54,3.75,15.0,fr,36257,103,1539865,1,3,Active Shallow Crust,0.0,89.98895,0.0,11/25/5166 +7.48982,46.3764,807,12,16,15,7,37,3.75,5.0,fr,36258,16,1539867,1,4,Active Shallow Crust,240.009,58.01774,0.0,12/16/0807 +7.48982,46.3764,835,7,30,18,31,27,3.75,5.0,fr,36259,16,1539867,1,4,Active Shallow Crust,240.009,58.01774,0.0,07/30/0835 +7.48982,46.3764,333,1,30,20,31,30,3.75,5.0,fr,36260,6,1539867,1,4,Active Shallow Crust,240.009,58.01774,0.0,01/30/0333 +7.48982,46.3764,2913,12,10,21,20,27,3.75,5.0,fr,36261,58,1539867,1,4,Active Shallow Crust,240.009,58.01774,0.0,12/10/2913 +7.48982,46.3764,8070,2,8,17,54,7,3.75,27.5,fr,36262,161,1539869,1,1,Active Shallow Crust,240.009,58.01774,0.0,02/08/8070 +7.48982,46.3764,809,10,20,4,21,34,3.75,5.0,fr,36263,16,1539870,1,1,Active Shallow Crust,0.0,89.98882,-90.0,10/20/0809 +7.48982,46.3764,769,7,24,6,57,18,3.75,5.0,fr,36264,15,1539873,1,1,Active Shallow Crust,128.8975,89.9669,0.0,07/24/0769 +7.48982,46.3764,6888,1,27,11,1,29,3.75,15.0,fr,36265,137,1539874,1,1,Active Shallow Crust,128.8975,89.9669,0.0,01/27/6888 +7.48982,46.3764,603,7,21,14,57,30,3.85,5.0,fr,36266,12,1539876,1,12,Active Shallow Crust,0.0,89.99015,0.0,07/21/0603 +7.48982,46.3764,8451,8,19,23,42,6,3.85,5.0,fr,36267,169,1539876,1,12,Active Shallow Crust,0.0,89.99015,0.0,08/19/8451 +7.48982,46.3764,1640,11,20,14,9,26,3.85,5.0,fr,36268,32,1539876,1,12,Active Shallow Crust,0.0,89.99015,0.0,11/20/1640 +7.48982,46.3764,935,2,7,19,0,15,3.85,5.0,fr,36269,18,1539876,1,12,Active Shallow Crust,0.0,89.99015,0.0,02/07/0935 +7.48982,46.3764,317,4,15,5,44,53,3.85,5.0,fr,36270,6,1539876,1,12,Active Shallow Crust,0.0,89.99015,0.0,04/15/0317 +7.48982,46.3764,6527,7,5,18,42,14,3.85,5.0,fr,36271,130,1539876,1,12,Active Shallow Crust,0.0,89.99015,0.0,07/05/6527 +7.48982,46.3764,6878,1,4,20,43,20,3.85,5.0,fr,36272,137,1539876,1,12,Active Shallow Crust,0.0,89.99015,0.0,01/04/6878 +7.48982,46.3764,365,6,19,21,54,15,3.85,5.0,fr,36273,7,1539876,1,12,Active Shallow Crust,0.0,89.99015,0.0,06/19/0365 +7.48982,46.3764,405,5,19,2,9,45,3.85,5.0,fr,36274,8,1539876,1,12,Active Shallow Crust,0.0,89.99015,0.0,05/19/0405 +7.48982,46.3764,9709,11,10,0,42,1,3.85,5.0,fr,36275,194,1539876,1,12,Active Shallow Crust,0.0,89.99015,0.0,11/10/9709 +7.48982,46.3764,4252,6,22,13,36,23,3.85,5.0,fr,36276,85,1539876,1,12,Active Shallow Crust,0.0,89.99015,0.0,06/22/4252 +7.48982,46.3764,1378,8,8,18,7,43,3.85,5.0,fr,36277,27,1539876,1,12,Active Shallow Crust,0.0,89.99015,0.0,08/08/1378 +7.48982,46.3764,3704,11,20,7,3,31,3.85,15.0,fr,36278,74,1539877,1,3,Active Shallow Crust,0.0,89.99015,0.0,11/20/3704 +7.48982,46.3764,9992,11,1,3,54,52,3.85,15.0,fr,36279,199,1539877,1,3,Active Shallow Crust,0.0,89.99015,0.0,11/01/9992 +7.48982,46.3764,4077,1,20,4,56,49,3.85,15.0,fr,36280,81,1539877,1,3,Active Shallow Crust,0.0,89.99015,0.0,01/20/4077 +7.48982,46.3764,8684,3,28,19,33,24,3.85,5.0,fr,36281,173,1539879,1,1,Active Shallow Crust,240.0112,57.99726,0.0,03/28/8684 +7.48982,46.3764,4626,11,21,1,55,50,3.85,15.0,fr,36282,92,1539880,1,1,Active Shallow Crust,240.0112,57.99726,0.0,11/21/4626 +7.48982,46.3764,3934,9,24,15,25,16,3.85,15.0,fr,36283,78,1539883,1,2,Active Shallow Crust,0.0,89.99004,-90.0,09/24/3934 +7.48982,46.3764,7465,12,30,6,28,2,3.85,15.0,fr,36284,149,1539883,1,2,Active Shallow Crust,0.0,89.99004,-90.0,12/30/7465 +7.48982,46.3764,860,8,13,1,58,15,3.85,27.5,fr,36285,17,1539884,1,1,Active Shallow Crust,0.0,89.99004,-90.0,08/13/0860 +7.48982,46.3764,6250,4,7,22,7,7,3.85,5.0,fr,36286,124,1539885,1,4,Active Shallow Crust,128.8952,89.99261,0.0,04/07/6250 +7.48982,46.3764,2224,11,2,6,53,3,3.85,5.0,fr,36287,44,1539885,1,4,Active Shallow Crust,128.8952,89.99261,0.0,11/02/2224 +7.48982,46.3764,97,10,9,13,18,26,3.85,5.0,fr,36288,1,1539885,1,4,Active Shallow Crust,128.8952,89.99261,0.0,10/09/0097 +7.48982,46.3764,7202,9,19,21,7,39,3.85,5.0,fr,36289,144,1539885,1,4,Active Shallow Crust,128.8952,89.99261,0.0,09/19/7202 +7.48982,46.3764,499,7,9,8,11,18,3.95,5.0,fr,36290,9,1539888,1,13,Active Shallow Crust,0.0,89.99122,0.0,07/09/0499 +7.48982,46.3764,9097,2,17,17,17,57,3.95,5.0,fr,36291,181,1539888,1,13,Active Shallow Crust,0.0,89.99122,0.0,02/17/9097 +7.48982,46.3764,5501,1,25,23,12,31,3.95,5.0,fr,36292,110,1539888,1,13,Active Shallow Crust,0.0,89.99122,0.0,01/25/5501 +7.48982,46.3764,1034,1,23,7,50,36,3.95,5.0,fr,36293,20,1539888,1,13,Active Shallow Crust,0.0,89.99122,0.0,01/23/1034 +7.48982,46.3764,2361,3,18,20,1,32,3.95,5.0,fr,36294,47,1539888,1,13,Active Shallow Crust,0.0,89.99122,0.0,03/18/2361 +7.48982,46.3764,472,10,10,5,45,41,3.95,5.0,fr,36295,9,1539888,1,13,Active Shallow Crust,0.0,89.99122,0.0,10/10/0472 +7.48982,46.3764,8404,2,23,8,18,51,3.95,5.0,fr,36296,168,1539888,1,13,Active Shallow Crust,0.0,89.99122,0.0,02/23/8404 +7.48982,46.3764,7652,4,1,17,22,11,3.95,5.0,fr,36297,153,1539888,1,13,Active Shallow Crust,0.0,89.99122,0.0,04/01/7652 +7.48982,46.3764,1407,8,11,22,13,38,3.95,5.0,fr,36298,28,1539888,1,13,Active Shallow Crust,0.0,89.99122,0.0,08/11/1407 +7.48982,46.3764,6316,5,19,20,31,33,3.95,5.0,fr,36299,126,1539888,1,13,Active Shallow Crust,0.0,89.99122,0.0,05/19/6316 +7.48982,46.3764,9836,5,23,7,23,27,3.95,5.0,fr,36300,196,1539888,1,13,Active Shallow Crust,0.0,89.99122,0.0,05/23/9836 +7.48982,46.3764,1396,6,19,8,8,23,3.95,5.0,fr,36301,27,1539888,1,13,Active Shallow Crust,0.0,89.99122,0.0,06/19/1396 +7.48982,46.3764,5142,12,2,3,45,16,3.95,5.0,fr,36302,102,1539888,1,13,Active Shallow Crust,0.0,89.99122,0.0,12/02/5142 +7.48982,46.3764,2155,5,5,12,48,28,3.95,15.0,fr,36303,43,1539889,1,1,Active Shallow Crust,0.0,89.99122,0.0,05/05/2155 +7.48982,46.3764,564,5,31,13,57,8,3.95,27.5,fr,36304,11,1539890,1,4,Active Shallow Crust,0.0,89.99122,0.0,05/31/0564 +7.48982,46.3764,2526,7,3,22,9,47,3.95,27.5,fr,36305,50,1539890,1,4,Active Shallow Crust,0.0,89.99122,0.0,07/03/2526 +7.48982,46.3764,6555,6,13,0,33,46,3.95,27.5,fr,36306,131,1539890,1,4,Active Shallow Crust,0.0,89.99122,0.0,06/13/6555 +7.48982,46.3764,9270,10,25,0,45,36,3.95,27.5,fr,36307,185,1539890,1,4,Active Shallow Crust,0.0,89.99122,0.0,10/25/9270 +7.48982,46.3764,2801,11,7,1,11,2,3.95,15.0,fr,36308,56,1539892,1,2,Active Shallow Crust,240.0194,58.0046,0.0,11/07/2801 +7.48982,46.3764,9401,2,11,3,13,3,3.95,15.0,fr,36309,188,1539892,1,2,Active Shallow Crust,240.0194,58.0046,0.0,02/11/9401 +7.48982,46.3764,5814,1,17,12,20,4,3.95,27.5,fr,36310,116,1539893,1,1,Active Shallow Crust,240.0194,58.0046,0.0,01/17/5814 +7.48982,46.3764,4131,1,1,15,43,53,3.95,5.0,fr,36311,82,1539897,1,1,Active Shallow Crust,128.8992,89.99342,0.0,01/01/4131 +7.48982,46.3764,8676,4,22,8,22,19,3.95,15.0,fr,36312,173,1539898,1,1,Active Shallow Crust,128.8992,89.99342,0.0,04/22/8676 +7.48982,46.3764,278,2,4,14,0,10,4.05,5.0,fr,36313,5,1539900,1,5,Active Shallow Crust,0.0,89.98827,0.0,02/04/0278 +7.48982,46.3764,9773,6,1,6,38,8,4.05,5.0,fr,36314,195,1539900,1,5,Active Shallow Crust,0.0,89.98827,0.0,06/01/9773 +7.48982,46.3764,1517,12,9,22,16,20,4.05,5.0,fr,36315,30,1539900,1,5,Active Shallow Crust,0.0,89.98827,0.0,12/09/1517 +7.48982,46.3764,2838,12,30,21,46,25,4.05,5.0,fr,36316,56,1539900,1,5,Active Shallow Crust,0.0,89.98827,0.0,12/30/2838 +7.48982,46.3764,1330,9,18,14,32,5,4.05,5.0,fr,36317,26,1539900,1,5,Active Shallow Crust,0.0,89.98827,0.0,09/18/1330 +7.48982,46.3764,8883,10,17,3,14,45,4.05,15.0,fr,36318,177,1539901,1,2,Active Shallow Crust,0.0,89.98827,0.0,10/17/8883 +7.48982,46.3764,4767,11,19,15,2,4,4.05,15.0,fr,36319,95,1539901,1,2,Active Shallow Crust,0.0,89.98827,0.0,11/19/4767 +7.48982,46.3764,5002,10,15,8,23,5,4.05,5.0,fr,36320,100,1539903,1,2,Active Shallow Crust,240.0051,58.00623,0.0,10/15/5002 +7.48982,46.3764,9362,8,31,10,16,32,4.05,5.0,fr,36321,187,1539903,1,2,Active Shallow Crust,240.0051,58.00623,0.0,08/31/9362 +7.48982,46.3764,2903,4,10,15,37,39,4.05,5.0,fr,36322,58,1539909,1,1,Active Shallow Crust,128.8908,89.99413,0.0,04/10/2903 +7.48982,46.3764,5629,12,12,21,56,18,4.15,5.0,fr,36323,112,1539912,1,8,Active Shallow Crust,0.0,89.98954,0.0,12/12/5629 +7.48982,46.3764,1533,2,16,0,10,29,4.15,5.0,fr,36324,30,1539912,1,8,Active Shallow Crust,0.0,89.98954,0.0,02/16/1533 +7.48982,46.3764,6449,1,12,21,25,53,4.15,5.0,fr,36325,128,1539912,1,8,Active Shallow Crust,0.0,89.98954,0.0,01/12/6449 +7.48982,46.3764,4848,7,1,2,12,39,4.15,5.0,fr,36326,96,1539912,1,8,Active Shallow Crust,0.0,89.98954,0.0,07/01/4848 +7.48982,46.3764,5548,10,13,0,42,25,4.15,5.0,fr,36327,110,1539912,1,8,Active Shallow Crust,0.0,89.98954,0.0,10/13/5548 +7.48982,46.3764,547,3,4,0,11,36,4.15,5.0,fr,36328,10,1539912,1,8,Active Shallow Crust,0.0,89.98954,0.0,03/04/0547 +7.48982,46.3764,6655,6,20,1,56,31,4.15,5.0,fr,36329,133,1539912,1,8,Active Shallow Crust,0.0,89.98954,0.0,06/20/6655 +7.48982,46.3764,7273,5,22,21,15,35,4.15,5.0,fr,36330,145,1539912,1,8,Active Shallow Crust,0.0,89.98954,0.0,05/22/7273 +7.48982,46.3764,6884,5,12,11,14,8,4.15,27.5,fr,36331,137,1539914,1,1,Active Shallow Crust,0.0,89.98954,0.0,05/12/6884 +7.48982,46.3764,5670,12,19,1,52,15,4.15,5.0,fr,36332,113,1539918,1,2,Active Shallow Crust,0.0,89.98942,-90.0,12/19/5670 +7.48982,46.3764,789,2,15,4,18,44,4.15,5.0,fr,36333,15,1539918,1,2,Active Shallow Crust,0.0,89.98942,-90.0,02/15/0789 +7.48982,46.3764,6991,9,9,7,18,19,4.15,15.0,fr,36334,139,1539919,1,1,Active Shallow Crust,0.0,89.98942,-90.0,09/09/6991 +7.48982,46.3764,5710,11,22,16,36,52,4.15,27.5,fr,36335,114,1539923,1,1,Active Shallow Crust,128.8973,89.99477,0.0,11/22/5710 +7.48982,46.3764,8457,4,30,3,6,2,4.25,5.0,fr,36336,169,1539924,1,9,Active Shallow Crust,0.0,89.99068,0.0,04/30/8457 +7.48982,46.3764,2102,10,7,11,12,19,4.25,5.0,fr,36337,42,1539924,1,9,Active Shallow Crust,0.0,89.99068,0.0,10/07/2102 +7.48982,46.3764,1265,1,6,0,4,9,4.25,5.0,fr,36338,25,1539924,1,9,Active Shallow Crust,0.0,89.99068,0.0,01/06/1265 +7.48982,46.3764,2797,2,9,5,51,16,4.25,5.0,fr,36339,55,1539924,1,9,Active Shallow Crust,0.0,89.99068,0.0,02/09/2797 +7.48982,46.3764,2751,9,18,7,16,42,4.25,5.0,fr,36340,55,1539924,1,9,Active Shallow Crust,0.0,89.99068,0.0,09/18/2751 +7.48982,46.3764,4187,7,27,21,31,12,4.25,5.0,fr,36341,83,1539924,1,9,Active Shallow Crust,0.0,89.99068,0.0,07/27/4187 +7.48982,46.3764,3048,10,30,2,53,40,4.25,5.0,fr,36342,60,1539924,1,9,Active Shallow Crust,0.0,89.99068,0.0,10/30/3048 +7.48982,46.3764,6897,2,8,17,10,25,4.25,5.0,fr,36343,137,1539924,1,9,Active Shallow Crust,0.0,89.99068,0.0,02/08/6897 +7.48982,46.3764,4377,7,21,7,34,31,4.25,5.0,fr,36344,87,1539924,1,9,Active Shallow Crust,0.0,89.99068,0.0,07/21/4377 +7.48982,46.3764,4575,4,18,10,6,42,4.25,15.0,fr,36345,91,1539925,1,1,Active Shallow Crust,0.0,89.99068,0.0,04/18/4575 +7.48982,46.3764,4627,10,13,1,21,48,4.25,5.0,fr,36346,92,1539927,1,1,Active Shallow Crust,240.0069,57.9945,0.0,10/13/4627 +7.48982,46.3764,6182,2,7,17,4,23,4.25,15.0,fr,36347,123,1539928,1,1,Active Shallow Crust,240.0069,57.9945,0.0,02/07/6182 +7.48982,46.3764,5256,12,12,8,7,52,4.25,27.5,fr,36348,105,1539929,1,1,Active Shallow Crust,240.0069,57.9945,0.0,12/12/5256 +7.48982,46.3764,3380,4,5,5,13,36,4.25,5.0,fr,36349,67,1539930,1,1,Active Shallow Crust,0.0,89.99057,-90.0,04/05/3380 +7.48982,46.3764,90,5,16,1,28,30,4.25,5.0,fr,36350,1,1539933,1,3,Active Shallow Crust,128.8951,89.98094,0.0,05/16/0090 +7.48982,46.3764,7764,4,8,11,28,55,4.25,5.0,fr,36351,155,1539933,1,3,Active Shallow Crust,128.8951,89.98094,0.0,04/08/7764 +7.48982,46.3764,8546,3,30,20,40,43,4.25,5.0,fr,36352,170,1539933,1,3,Active Shallow Crust,128.8951,89.98094,0.0,03/30/8546 +7.48982,46.3764,1880,6,26,9,41,28,4.35,5.0,fr,36353,37,1539936,1,5,Active Shallow Crust,0.0,89.98892,0.0,06/26/1880 +7.48982,46.3764,5751,1,27,15,29,39,4.35,5.0,fr,36354,115,1539936,1,5,Active Shallow Crust,0.0,89.98892,0.0,01/27/5751 +7.48982,46.3764,883,8,22,14,27,16,4.35,5.0,fr,36355,17,1539936,1,5,Active Shallow Crust,0.0,89.98892,0.0,08/22/0883 +7.48982,46.3764,1777,12,7,22,53,40,4.35,5.0,fr,36356,35,1539936,1,5,Active Shallow Crust,0.0,89.98892,0.0,12/07/1777 +7.48982,46.3764,5359,5,27,9,21,52,4.35,5.0,fr,36357,107,1539936,1,5,Active Shallow Crust,0.0,89.98892,0.0,05/27/5359 +7.48982,46.3764,2559,8,28,20,23,23,4.35,15.0,fr,36358,51,1539937,1,2,Active Shallow Crust,0.0,89.98892,0.0,08/28/2559 +7.48982,46.3764,4393,10,1,10,35,32,4.35,15.0,fr,36359,87,1539937,1,2,Active Shallow Crust,0.0,89.98892,0.0,10/01/4393 +7.48982,46.3764,8936,4,2,15,23,24,4.35,5.0,fr,36360,178,1539942,1,2,Active Shallow Crust,0.0,89.98879,-90.0,04/02/8936 +7.48982,46.3764,3176,4,9,10,34,42,4.35,5.0,fr,36361,63,1539942,1,2,Active Shallow Crust,0.0,89.98879,-90.0,04/09/3176 +7.48982,46.3764,982,5,15,19,1,49,4.35,15.0,fr,36362,19,1539943,1,1,Active Shallow Crust,0.0,89.98879,-90.0,05/15/0982 +7.48982,46.3764,4007,5,7,20,39,48,4.35,5.0,fr,36363,80,1539945,1,1,Active Shallow Crust,128.8983,89.98251,0.0,05/07/4007 +7.48982,46.3764,6497,11,7,15,8,45,4.45,5.0,fr,36364,129,1539948,1,1,Active Shallow Crust,0.0,89.99013,0.0,11/07/6497 +7.48982,46.3764,1017,6,20,20,19,22,4.45,15.0,fr,36365,20,1539949,1,1,Active Shallow Crust,0.0,89.99013,0.0,06/20/1017 +7.48982,46.3764,8013,5,13,10,12,24,4.45,15.0,fr,36366,160,1539952,1,1,Active Shallow Crust,240.0052,57.99464,0.0,05/13/8013 +7.48982,46.3764,595,5,29,0,4,7,4.55,5.0,fr,36367,11,1539960,1,2,Active Shallow Crust,0.0,89.989,0.0,05/29/0595 +7.48982,46.3764,8610,8,4,21,50,38,4.55,5.0,fr,36368,172,1539960,1,2,Active Shallow Crust,0.0,89.989,0.0,08/04/8610 +7.48982,46.3764,738,6,19,0,11,18,4.55,15.0,fr,36369,14,1539961,1,2,Active Shallow Crust,0.0,89.989,0.0,06/19/0738 +7.48982,46.3764,4003,2,10,4,19,21,4.55,15.0,fr,36370,80,1539961,1,2,Active Shallow Crust,0.0,89.989,0.0,02/10/4003 +7.48982,46.3764,7573,4,4,23,43,54,4.55,27.5,fr,36371,151,1539962,1,1,Active Shallow Crust,0.0,89.989,0.0,04/04/7573 +7.48982,46.3764,1501,4,12,1,15,18,4.65,5.0,fr,36372,30,1539972,1,1,Active Shallow Crust,0.0,89.9902,0.0,04/12/1501 +7.48982,46.3764,2248,5,26,14,37,51,4.65,15.0,fr,36373,44,1539973,1,1,Active Shallow Crust,0.0,89.9902,0.0,05/26/2248 +7.48982,46.3764,6412,6,22,0,2,53,4.65,5.0,fr,36374,128,1539975,1,1,Active Shallow Crust,240.0107,57.99458,0.0,06/22/6412 +7.48982,46.3764,7837,11,27,19,18,41,4.65,5.0,fr,36375,156,1539981,1,1,Active Shallow Crust,128.8908,89.9872,0.0,11/27/7837 +7.48982,46.3764,287,5,3,3,26,22,4.75,5.0,fr,36376,5,1539984,1,2,Active Shallow Crust,0.0,89.98951,0.0,05/03/0287 +7.48982,46.3764,9637,11,26,16,55,31,4.75,5.0,fr,36377,192,1539984,1,2,Active Shallow Crust,0.0,89.98951,0.0,11/26/9637 +7.48982,46.3764,7550,6,8,7,16,5,4.75,5.0,fr,36378,150,1539987,1,1,Active Shallow Crust,240.0073,58.00473,0.0,06/08/7550 +7.48982,46.3764,7664,8,17,3,22,30,4.75,15.0,fr,36379,153,1539991,1,1,Active Shallow Crust,0.0,89.9894,-90.0,08/17/7664 +7.48982,46.3764,704,4,6,3,10,37,4.75,27.5,fr,36380,14,1539992,1,1,Active Shallow Crust,0.0,89.9894,-90.0,04/06/0704 +7.48982,46.3764,4301,11,13,18,35,31,4.85,5.0,fr,36381,86,1540005,1,1,Active Shallow Crust,128.8924,89.98903,0.0,11/13/4301 +7.48982,46.3764,7060,3,18,23,51,59,4.95,5.0,fr,36382,141,1540017,1,1,Active Shallow Crust,128.8897,89.98981,0.0,03/18/7060 +7.48982,46.3764,8685,9,16,23,40,44,5.05,5.0,fr,36383,173,1540020,1,1,Active Shallow Crust,0.0,89.9901,0.0,09/16/8685 +7.48982,46.3764,5487,3,11,2,20,13,5.05,15.0,fr,36384,109,1540030,1,1,Active Shallow Crust,128.8855,89.99053,0.0,03/11/5487 +7.48982,46.3764,5583,11,14,13,59,5,5.25,5.0,fr,36385,111,1540044,1,1,Active Shallow Crust,0.0,89.99017,0.0,11/14/5583 +7.48982,46.3764,3293,8,1,11,58,51,5.25,5.0,fr,36386,65,1540050,1,1,Active Shallow Crust,0.0,89.99006,-90.0,08/01/3293 +7.48982,46.3764,2156,10,12,22,20,16,5.25,5.0,fr,36387,43,1540053,1,1,Active Shallow Crust,128.8835,89.98694,0.0,10/12/2156 +7.48982,46.3764,8611,12,20,1,45,7,5.65,5.0,fr,36388,172,1540095,1,1,Active Shallow Crust,240.034,58.00194,0.0,12/20/8611 +7.48982,46.3764,2571,5,28,3,47,13,5.65,5.0,fr,36389,51,1540098,1,1,Active Shallow Crust,0.0,89.98996,-90.0,05/28/2571 +7.48982,46.3764,3786,9,29,2,30,29,5.75,15.0,fr,36390,75,1540105,1,1,Active Shallow Crust,0.0,89.99004,0.0,09/29/3786 +7.48982,46.3764,1327,3,6,15,59,11,5.95,27.5,fr,36391,26,1540133,1,1,Active Shallow Crust,240.0509,58.00061,0.0,03/06/1327 +7.48982,46.3764,7366,10,7,0,0,5,6.05,5.357596,fr,36392,147,1540140,1,1,Active Shallow Crust,0.0,89.99001,0.0,10/07/7366 +7.48982,46.3764,5266,10,11,14,39,51,6.15,15.0,fr,36393,105,1540156,1,1,Active Shallow Crust,240.0648,57.99993,0.0,10/11/5266 +1.7772,47.08047,2281,8,1,7,37,1,3.65,15.0,fr,36394,45,1540333,1,1,Active Shallow Crust,0.0,89.98929,0.0,08/01/2281 +1.7772,47.08047,2598,7,3,19,33,12,3.75,5.0,fr,36395,51,1540344,1,2,Active Shallow Crust,0.0,89.99046,0.0,07/03/2598 +1.7772,47.08047,3325,12,22,12,52,0,3.75,5.0,fr,36396,66,1540344,1,2,Active Shallow Crust,0.0,89.99046,0.0,12/22/3325 +1.7772,47.08047,8127,7,13,10,20,10,3.85,15.0,fr,36397,162,1540357,1,2,Active Shallow Crust,0.0,89.99028,0.0,07/13/8127 +1.7772,47.08047,1641,11,29,18,14,21,3.85,15.0,fr,36398,32,1540357,1,2,Active Shallow Crust,0.0,89.99028,0.0,11/29/1641 +1.7772,47.08047,2682,10,6,10,25,34,3.95,15.0,fr,36399,53,1540372,1,1,Active Shallow Crust,240.0198,58.00496,0.0,10/06/2682 +1.7772,47.08047,8121,9,10,4,52,12,4.35,5.0,fr,36400,162,1540416,1,1,Active Shallow Crust,0.0,89.98975,0.0,09/10/8121 +1.7772,47.08047,7724,12,22,20,4,37,4.55,5.0,fr,36401,154,1540440,1,1,Active Shallow Crust,0.0,89.99023,0.0,12/22/7724 +1.7772,47.08047,9976,8,7,2,44,3,4.85,5.0,fr,36402,199,1540485,1,1,Active Shallow Crust,128.8923,89.98897,0.0,08/07/9976 +4.17605,40.76279,9038,3,11,11,50,7,3.75,15.0,fr,36403,180,1540834,1,1,Active Shallow Crust,128.8975,89.96739,0.0,03/11/9038 +4.17605,40.76279,96,6,23,19,50,34,4.15,5.0,fr,36404,1,1540872,1,1,Active Shallow Crust,0.0,89.98852,0.0,06/23/0096 +3.69652,48.31475,5885,11,28,13,36,29,3.85,5.0,fr,36405,117,1541796,1,1,Active Shallow Crust,0.0,89.9905,0.0,11/28/5885 +3.69652,48.31475,2092,6,26,12,9,31,5.65,5.0,fr,36406,41,1542012,1,1,Active Shallow Crust,0.0,89.99014,0.0,06/26/2092 +8.49235,48.16067,3325,5,15,2,47,16,3.55,5.0,fr,36407,66,1542240,1,1,Active Shallow Crust,0.0,89.98655,0.0,05/15/3325 +8.49235,48.16067,7118,3,24,11,20,24,3.65,15.0,fr,36408,142,1542253,1,2,Active Shallow Crust,0.0,89.98801,0.0,03/24/7118 +8.49235,48.16067,2630,9,11,14,6,21,3.65,15.0,fr,36409,52,1542253,1,2,Active Shallow Crust,0.0,89.98801,0.0,09/11/2630 +8.49235,48.16067,248,7,18,1,28,17,3.65,5.0,fr,36410,4,1542261,1,1,Active Shallow Crust,128.8978,89.96355,0.0,07/18/0248 +8.49235,48.16067,763,4,26,19,9,31,3.75,5.0,fr,36411,15,1542264,1,2,Active Shallow Crust,0.0,89.98931,0.0,04/26/0763 +8.49235,48.16067,9972,6,30,6,11,59,3.75,5.0,fr,36412,199,1542264,1,2,Active Shallow Crust,0.0,89.98931,0.0,06/30/9972 +8.49235,48.16067,9631,5,1,19,29,30,3.75,15.0,fr,36413,192,1542265,1,1,Active Shallow Crust,0.0,89.98931,0.0,05/01/9631 +8.49235,48.16067,7222,1,26,17,2,11,3.85,5.0,fr,36414,144,1542279,1,1,Active Shallow Crust,240.0103,57.99769,0.0,01/26/7222 +8.49235,48.16067,7169,2,14,3,9,4,3.95,5.0,fr,36415,143,1542291,1,1,Active Shallow Crust,240.0205,58.0048,0.0,02/14/7169 +8.49235,48.16067,9399,1,31,8,0,7,4.45,15.0,fr,36416,187,1542352,1,1,Active Shallow Crust,240.006,57.99403,0.0,01/31/9399 +8.49235,48.16067,7634,9,29,10,52,18,4.65,5.0,fr,36417,152,1542372,1,1,Active Shallow Crust,0.0,89.98862,0.0,09/29/7634 +8.49235,48.16067,6540,9,23,16,20,45,4.65,15.0,fr,36418,130,1542373,1,1,Active Shallow Crust,0.0,89.98862,0.0,09/23/6540 +8.49235,48.16067,2531,5,12,6,0,34,4.95,5.0,fr,36419,50,1542408,1,1,Active Shallow Crust,0.0,89.98926,0.0,05/12/2531 +8.49235,48.16067,7392,8,1,14,51,9,5.35,15.0,fr,36420,147,1542457,1,1,Active Shallow Crust,0.0,89.98984,0.0,08/01/7392 +8.492358,48.16067,3948,10,18,2,22,34,6.45,8.491219,fr,36421,78,1542588,1,1,Active Shallow Crust,0.0,89.98996,0.0,10/18/3948 +2.4274,40.91058,6616,4,17,13,25,16,3.55,5.0,fr,36422,132,1542720,1,1,Active Shallow Crust,0.0,89.98857,0.0,04/17/6616 +2.4274,40.91058,2041,1,14,8,53,12,3.55,15.0,fr,36423,40,1542724,1,1,Active Shallow Crust,240.0113,57.99837,0.0,01/14/2041 +2.4274,40.91058,2736,4,12,11,19,34,3.75,5.0,fr,36424,54,1542744,1,1,Active Shallow Crust,0.0,89.99092,0.0,04/12/2736 +2.4274,40.91058,9417,7,28,12,13,8,3.85,15.0,fr,36425,188,1542766,1,1,Active Shallow Crust,128.8966,89.99326,0.0,07/28/9417 +2.4274,40.91058,3148,11,1,8,15,19,3.95,15.0,fr,36426,62,1542769,1,1,Active Shallow Crust,0.0,89.99038,0.0,11/01/3148 +2.4274,40.91058,2814,2,19,20,16,34,3.95,5.0,fr,36427,56,1542774,1,1,Active Shallow Crust,0.0,89.99027,-90.0,02/19/2814 +2.4274,40.91058,5299,2,4,13,12,17,4.35,15.0,fr,36428,105,1542817,1,1,Active Shallow Crust,0.0,89.98938,0.0,02/04/5299 +2.4274,40.91058,7784,6,5,2,20,8,4.45,5.0,fr,36429,155,1542828,1,1,Active Shallow Crust,0.0,89.99053,0.0,06/05/7784 +2.83414,46.52347,2805,9,5,6,24,27,3.55,27.5,fr,36430,56,1543202,1,1,Active Shallow Crust,0.0,89.98959,0.0,09/05/2805 +2.83414,46.52347,5689,3,2,21,56,27,3.55,5.0,fr,36431,113,1543206,1,1,Active Shallow Crust,0.0,89.98947,-90.0,03/02/5689 +2.83414,46.52347,7254,7,11,1,29,37,3.75,27.5,fr,36432,145,1543229,1,1,Active Shallow Crust,240.0083,58.01757,0.0,07/11/7254 +2.83414,46.52347,1328,10,3,8,5,17,4.05,15.0,fr,36433,26,1543270,1,1,Active Shallow Crust,128.8903,89.99415,0.0,10/03/1328 +2.83414,46.52347,7706,9,30,3,16,46,4.25,5.0,fr,36434,154,1543287,1,1,Active Shallow Crust,240.0079,57.99379,0.0,09/30/7706 +2.83414,46.52347,8934,11,8,7,21,47,4.45,5.0,fr,36435,178,1543311,1,1,Active Shallow Crust,240.0054,57.9945,0.0,11/08/8934 +2.83414,46.52347,520,9,2,18,23,22,4.55,15.0,fr,36436,10,1543321,1,1,Active Shallow Crust,0.0,89.99013,0.0,09/02/0520 +-2.41881,47.58246,6971,11,4,20,43,32,3.55,15.0,fr,36437,139,1543681,1,1,Active Shallow Crust,0.0,89.9898,0.0,11/04/6971 +-2.41881,47.58246,9101,4,7,13,4,1,3.55,15.0,fr,36438,182,1543690,1,1,Active Shallow Crust,128.8966,89.9932,0.0,04/07/9101 +-2.41881,47.58246,9558,2,25,0,55,52,3.75,5.0,fr,36439,191,1543704,1,1,Active Shallow Crust,0.0,89.9892,0.0,02/25/9558 +-2.41881,47.58246,6767,1,19,8,23,38,3.85,5.0,fr,36440,135,1543716,1,1,Active Shallow Crust,0.0,89.99037,0.0,01/19/6767 +-2.41881,47.58246,4677,6,19,19,15,14,3.85,27.5,fr,36441,93,1543718,1,1,Active Shallow Crust,0.0,89.99037,0.0,06/19/4677 +-2.41881,47.58246,6695,5,7,18,34,1,3.95,27.5,fr,36442,133,1543730,1,1,Active Shallow Crust,0.0,89.98927,0.0,05/07/6695 +-2.41881,47.58246,3702,6,8,9,41,33,4.15,5.0,fr,36443,74,1543752,1,1,Active Shallow Crust,0.0,89.98977,0.0,06/08/3702 +-2.41881,47.58246,8044,7,14,15,50,55,4.15,15.0,fr,36444,160,1543753,1,1,Active Shallow Crust,0.0,89.98977,0.0,07/14/8044 +-2.41881,47.58246,9182,9,4,9,32,49,4.35,15.0,fr,36445,183,1543777,1,1,Active Shallow Crust,0.0,89.99052,0.0,09/04/9182 +-2.41881,47.58246,6732,10,14,1,17,43,5.95,5.0,fr,36446,134,1543968,1,1,Active Shallow Crust,0.0,89.98991,0.0,10/14/6732 +2.11139,46.96617,9002,10,1,0,22,48,3.55,5.0,fr,36447,180,1544160,1,1,Active Shallow Crust,0.0,89.98968,0.0,10/01/9002 +2.11139,46.96617,4449,11,5,7,22,16,3.55,15.0,fr,36448,88,1544167,1,1,Active Shallow Crust,0.0,89.98956,-90.0,11/05/4449 +2.11139,46.96617,3518,6,11,8,44,54,3.65,5.0,fr,36449,70,1544175,1,1,Active Shallow Crust,240.0009,58.0128,0.0,06/11/3518 +2.11139,46.96617,9139,6,30,6,9,35,3.65,5.0,fr,36450,182,1544181,1,1,Active Shallow Crust,128.8999,89.96353,0.0,06/30/9139 +2.11139,46.96617,5548,3,15,9,15,55,3.75,27.5,fr,36451,110,1544186,1,1,Active Shallow Crust,0.0,89.98907,0.0,03/15/5548 +2.11139,46.96617,9373,8,20,17,29,9,3.75,5.0,fr,36452,187,1544193,1,1,Active Shallow Crust,128.8967,89.96724,0.0,08/20/9373 +2.11139,46.96617,5951,9,14,14,59,23,4.25,5.0,fr,36453,119,1544244,1,1,Active Shallow Crust,0.0,89.98924,0.0,09/14/5951 +2.11139,46.96617,1255,1,27,9,31,18,4.35,5.0,fr,36454,25,1544256,1,1,Active Shallow Crust,0.0,89.99041,0.0,01/27/1255 +2.11139,46.96617,2823,6,24,15,54,0,5.35,5.0,fr,36455,56,1544376,1,1,Active Shallow Crust,0.0,89.99004,0.0,06/24/2823 +1.17009,49.55683,9133,7,13,20,9,1,3.55,5.0,fr,36456,182,1544640,1,1,Active Shallow Crust,0.0,89.99019,0.0,07/13/9133 +1.17009,49.55683,6609,11,7,14,12,58,3.65,15.0,fr,36457,132,1544659,1,1,Active Shallow Crust,0.0,89.98968,-90.0,11/07/6609 +1.17009,49.55683,359,8,18,22,7,38,3.65,5.0,fr,36458,7,1544661,1,1,Active Shallow Crust,128.9001,89.96346,0.0,08/18/0359 +1.17009,49.55683,2708,12,6,23,48,6,3.75,15.0,fr,36459,54,1544674,1,2,Active Shallow Crust,128.896,89.96731,0.0,12/06/2708 +1.17009,49.55683,2116,10,20,14,14,10,3.75,15.0,fr,36460,42,1544674,1,2,Active Shallow Crust,128.896,89.96731,0.0,10/20/2116 +1.17009,49.55683,1550,11,7,15,56,54,3.85,5.0,fr,36461,30,1544676,1,1,Active Shallow Crust,0.0,89.98958,0.0,11/07/1550 +1.17009,49.55683,1775,8,9,16,17,3,3.85,5.0,fr,36462,35,1544679,1,1,Active Shallow Crust,240.0114,57.99781,0.0,08/09/1775 +1.17009,49.55683,4941,7,23,8,47,13,4.25,5.0,fr,36463,98,1544724,1,1,Active Shallow Crust,0.0,89.98977,0.0,07/23/4941 +1.17009,49.55683,5574,8,31,5,23,26,4.35,5.0,fr,36464,111,1544736,1,1,Active Shallow Crust,0.0,89.99023,0.0,08/31/5574 +1.17009,49.55683,6830,11,2,14,21,55,4.65,5.0,fr,36465,136,1544772,1,1,Active Shallow Crust,0.0,89.98986,0.0,11/02/6830 +4.88605,46.69726,8041,9,8,15,55,56,3.55,15.0,fr,36466,160,1545130,1,1,Active Shallow Crust,128.8967,89.99309,0.0,09/08/8041 +4.88605,46.69726,7217,10,6,12,39,41,3.65,5.0,fr,36467,144,1545132,1,1,Active Shallow Crust,0.0,89.98767,0.0,10/06/7217 +4.88605,46.69726,3731,7,9,21,20,13,3.65,15.0,fr,36468,74,1545142,1,1,Active Shallow Crust,128.8998,89.96353,0.0,07/09/3731 +4.88605,46.69726,199,3,7,11,22,6,3.75,5.0,fr,36469,3,1545150,1,1,Active Shallow Crust,0.0,89.98888,-90.0,03/07/0199 +4.88605,46.69726,5836,9,5,23,32,4,3.85,5.0,fr,36470,116,1545165,1,1,Active Shallow Crust,128.8956,89.9951,0.0,09/05/5836 +4.88605,46.69726,6018,1,24,18,9,38,4.05,5.0,fr,36471,120,1545180,1,1,Active Shallow Crust,0.0,89.98833,0.0,01/24/6018 +4.88605,46.69726,5077,8,23,0,30,13,4.05,15.0,fr,36472,101,1545184,1,1,Active Shallow Crust,240.0068,58.00537,0.0,08/23/5077 +4.88605,46.69726,559,6,17,11,28,6,4.05,15.0,fr,36473,11,1545190,1,1,Active Shallow Crust,128.8897,89.99416,0.0,06/17/0559 +4.88605,46.69726,4621,11,27,9,24,2,4.15,5.0,fr,36474,92,1545192,1,2,Active Shallow Crust,0.0,89.9896,0.0,11/27/4621 +4.88605,46.69726,9669,3,21,21,3,42,4.15,5.0,fr,36475,193,1545192,1,2,Active Shallow Crust,0.0,89.9896,0.0,03/21/9669 +6.82529,44.06318,5253,9,7,23,54,35,3.65,5.0,fr,36476,105,1545612,1,1,Active Shallow Crust,0.0,89.98708,0.0,09/07/5253 +6.82529,44.06318,2345,6,16,3,58,26,3.65,5.0,fr,36477,46,1545618,1,1,Active Shallow Crust,0.0,89.98693,-90.0,06/16/2345 +6.82529,44.06318,6395,7,26,5,39,50,3.75,15.0,fr,36478,127,1545625,1,3,Active Shallow Crust,0.0,89.98849,0.0,07/26/6395 +6.82529,44.06318,8495,11,23,3,17,23,3.75,15.0,fr,36479,169,1545625,1,3,Active Shallow Crust,0.0,89.98849,0.0,11/23/8495 +6.82529,44.06318,5449,2,11,9,20,35,3.75,15.0,fr,36480,108,1545625,1,3,Active Shallow Crust,0.0,89.98849,0.0,02/11/5449 +6.82529,44.06318,3003,1,14,2,28,46,3.85,15.0,fr,36481,60,1545637,1,1,Active Shallow Crust,0.0,89.98974,0.0,01/14/3003 +6.82529,44.06318,1155,1,3,21,8,58,3.85,5.0,fr,36482,23,1545642,1,1,Active Shallow Crust,0.0,89.98962,-90.0,01/03/1155 +6.82529,44.06318,556,3,21,16,59,49,3.95,5.0,fr,36483,11,1545648,1,1,Active Shallow Crust,0.0,89.99085,0.0,03/21/0556 +6.82529,44.06318,9935,11,8,20,13,9,3.95,15.0,fr,36484,198,1545649,1,1,Active Shallow Crust,0.0,89.99085,0.0,11/08/9935 +6.82529,44.06318,8973,3,15,5,17,52,3.95,5.0,fr,36485,179,1545651,1,1,Active Shallow Crust,240.0186,58.00474,0.0,03/15/8973 +6.82529,44.06318,3444,8,25,13,18,58,3.95,5.0,fr,36486,68,1545657,1,1,Active Shallow Crust,128.9006,89.99543,0.0,08/25/3444 +6.82529,44.06318,5449,7,30,5,8,41,4.05,5.0,fr,36487,108,1545660,1,1,Active Shallow Crust,0.0,89.99185,0.0,07/30/5449 +6.82529,44.06318,8170,10,9,13,17,15,4.05,5.0,fr,36488,163,1545666,1,2,Active Shallow Crust,0.0,89.99175,-90.0,10/09/8170 +6.82529,44.06318,2959,8,16,2,33,51,4.05,5.0,fr,36489,59,1545666,1,2,Active Shallow Crust,0.0,89.99175,-90.0,08/16/2959 +6.82529,44.06318,7117,1,26,4,9,1,4.15,27.5,fr,36490,142,1545674,1,1,Active Shallow Crust,0.0,89.98911,0.0,01/26/7117 +6.82529,44.06318,9601,4,21,18,36,8,4.15,5.0,fr,36491,192,1545675,1,2,Active Shallow Crust,240.008,57.99734,0.0,04/21/9601 +6.82529,44.06318,1114,8,18,4,11,25,4.15,5.0,fr,36492,22,1545675,1,2,Active Shallow Crust,240.008,57.99734,0.0,08/18/1114 +6.82529,44.06318,4511,10,8,2,31,11,4.15,5.0,fr,36493,90,1545681,1,1,Active Shallow Crust,128.8977,89.99455,0.0,10/08/4511 +6.82529,44.06318,8153,2,7,17,45,53,4.35,5.0,fr,36494,163,1545702,1,1,Active Shallow Crust,0.0,89.99124,-90.0,02/07/8153 +6.82529,44.06318,7982,7,20,14,39,3,4.55,27.5,fr,36495,159,1545722,1,1,Active Shallow Crust,0.0,89.99084,0.0,07/20/7982 +6.82529,44.06318,1301,8,21,7,28,59,4.65,15.0,fr,36496,26,1545733,1,1,Active Shallow Crust,0.0,89.98978,0.0,08/21/1301 +1.35229,41.27559,6594,9,28,19,5,53,3.55,5.0,fr,36497,131,1546560,1,1,Active Shallow Crust,0.0,89.99052,0.0,09/28/6594 +1.35229,41.27559,3939,7,10,7,0,25,3.55,5.0,fr,36498,78,1546566,1,1,Active Shallow Crust,0.0,89.99042,-90.0,07/10/3939 +1.35229,41.27559,9494,12,12,11,18,27,3.65,5.0,fr,36499,189,1546572,1,3,Active Shallow Crust,0.0,89.98987,0.0,12/12/9494 +1.35229,41.27559,1221,9,12,23,9,0,3.65,5.0,fr,36500,24,1546572,1,3,Active Shallow Crust,0.0,89.98987,0.0,09/12/1221 +1.35229,41.27559,2674,2,27,12,0,38,3.65,5.0,fr,36501,53,1546572,1,3,Active Shallow Crust,0.0,89.98987,0.0,02/27/2674 +1.35229,41.27559,3788,11,27,21,29,42,3.85,5.0,fr,36502,75,1546596,1,2,Active Shallow Crust,0.0,89.99061,0.0,11/27/3788 +1.35229,41.27559,6094,1,10,21,43,35,3.85,5.0,fr,36503,121,1546596,1,2,Active Shallow Crust,0.0,89.99061,0.0,01/10/6094 +1.35229,41.27559,2251,1,2,19,4,30,3.85,5.0,fr,36504,45,1546599,1,1,Active Shallow Crust,240.0102,57.99747,0.0,01/02/2251 +1.35229,41.27559,2447,11,25,21,43,13,3.95,5.0,fr,36505,48,1546608,1,3,Active Shallow Crust,0.0,89.99043,0.0,11/25/2447 +1.35229,41.27559,3975,12,30,12,35,52,3.95,5.0,fr,36506,79,1546608,1,3,Active Shallow Crust,0.0,89.99043,0.0,12/30/3975 +1.35229,41.27559,6845,4,12,5,16,30,3.95,5.0,fr,36507,136,1546608,1,3,Active Shallow Crust,0.0,89.99043,0.0,04/12/6845 +1.35229,41.27559,2110,1,31,9,0,35,4.05,5.0,fr,36508,42,1546620,1,3,Active Shallow Crust,0.0,89.99041,0.0,01/31/2110 +1.35229,41.27559,593,7,6,20,56,12,4.05,5.0,fr,36509,11,1546620,1,3,Active Shallow Crust,0.0,89.99041,0.0,07/06/0593 +1.35229,41.27559,6140,8,25,5,11,36,4.05,5.0,fr,36510,122,1546620,1,3,Active Shallow Crust,0.0,89.99041,0.0,08/25/6140 +1.35229,41.27559,5686,3,24,11,54,37,4.05,15.0,fr,36511,113,1546621,1,2,Active Shallow Crust,0.0,89.99041,0.0,03/24/5686 +1.35229,41.27559,3454,1,1,20,13,10,4.05,15.0,fr,36512,69,1546621,1,2,Active Shallow Crust,0.0,89.99041,0.0,01/01/3454 +1.35229,41.27559,2703,3,29,7,33,42,4.05,27.5,fr,36513,54,1546622,1,1,Active Shallow Crust,0.0,89.99041,0.0,03/29/2703 +1.35229,41.27559,4065,2,9,3,16,57,4.65,5.0,fr,36514,81,1546692,1,1,Active Shallow Crust,0.0,89.98985,0.0,02/09/4065 +-2.34384,48.13011,7682,6,25,23,54,46,3.55,5.0,fr,36515,153,1547040,1,1,Active Shallow Crust,0.0,89.98991,0.0,06/25/7682 +-2.34384,48.13011,2401,11,20,14,52,38,3.55,15.0,fr,36516,48,1547041,1,1,Active Shallow Crust,0.0,89.98991,0.0,11/20/2401 +-2.34384,48.13011,7778,7,16,23,8,7,3.55,5.0,fr,36517,155,1547043,1,1,Active Shallow Crust,240.0126,57.99843,0.0,07/16/7778 +-2.34384,48.13011,5953,9,17,12,4,40,3.55,5.0,fr,36518,119,1547046,1,1,Active Shallow Crust,0.0,89.98978,-90.0,09/17/5953 +-2.34384,48.13011,6039,5,20,2,8,28,3.65,5.0,fr,36519,120,1547052,1,3,Active Shallow Crust,0.0,89.991,0.0,05/20/6039 +-2.34384,48.13011,9033,4,6,20,45,28,3.65,5.0,fr,36520,180,1547052,1,3,Active Shallow Crust,0.0,89.991,0.0,04/06/9033 +-2.34384,48.13011,6160,1,4,6,29,1,3.65,5.0,fr,36521,123,1547052,1,3,Active Shallow Crust,0.0,89.991,0.0,01/04/6160 +-2.34384,48.13011,8162,11,9,12,40,9,3.75,5.0,fr,36522,163,1547067,1,1,Active Shallow Crust,240.0082,58.01777,0.0,11/09/8162 +-2.34384,48.13011,9654,6,20,14,34,18,3.85,5.0,fr,36523,193,1547076,1,1,Active Shallow Crust,0.0,89.99047,0.0,06/20/9654 +-2.34384,48.13011,2969,11,26,23,17,54,3.85,5.0,fr,36524,59,1547079,1,1,Active Shallow Crust,240.0108,57.99789,0.0,11/26/2969 +-2.34384,48.13011,1583,8,8,22,43,38,3.85,15.0,fr,36525,31,1547083,1,1,Active Shallow Crust,0.0,89.99036,-90.0,08/08/1583 +-2.34384,48.13011,3938,4,18,6,20,11,3.95,5.0,fr,36526,78,1547088,1,1,Active Shallow Crust,0.0,89.98938,0.0,04/18/3938 +-2.34384,48.13011,7510,1,12,0,57,48,3.95,15.0,fr,36527,150,1547089,1,1,Active Shallow Crust,0.0,89.98938,0.0,01/12/7510 +-2.34384,48.13011,7493,5,7,20,2,55,4.05,5.0,fr,36528,149,1547100,1,1,Active Shallow Crust,0.0,89.99054,0.0,05/07/7493 +-2.34384,48.13011,8034,10,8,13,13,7,4.05,15.0,fr,36529,160,1547101,1,2,Active Shallow Crust,0.0,89.99054,0.0,10/08/8034 +-2.34384,48.13011,7471,5,30,12,10,6,4.05,15.0,fr,36530,149,1547101,1,2,Active Shallow Crust,0.0,89.99054,0.0,05/30/7471 +-2.34384,48.13011,6536,2,22,9,24,47,4.35,5.0,fr,36531,130,1547136,1,1,Active Shallow Crust,0.0,89.99062,0.0,02/22/6536 +-2.34384,48.13011,1143,6,10,11,36,12,4.45,5.0,fr,36532,22,1547148,1,2,Active Shallow Crust,0.0,89.99045,0.0,06/10/1143 +-2.34384,48.13011,6884,10,29,11,9,49,4.45,5.0,fr,36533,137,1547148,1,2,Active Shallow Crust,0.0,89.99045,0.0,10/29/6884 +-2.34384,48.13011,2645,9,22,19,45,34,4.55,5.0,fr,36534,52,1547160,1,1,Active Shallow Crust,0.0,89.99043,0.0,09/22/2645 +-2.34384,48.13011,3770,6,24,9,20,1,4.75,5.0,fr,36535,75,1547184,1,1,Active Shallow Crust,0.0,89.98985,0.0,06/24/3770 +-2.34384,48.13011,3470,8,3,21,15,42,5.95,5.0,fr,36536,69,1547328,1,1,Active Shallow Crust,0.0,89.99001,0.0,08/03/3470 +-4.57773,49.55117,2782,10,18,14,37,2,4.05,15.0,fr,36537,55,1547590,1,1,Active Shallow Crust,128.8902,89.99265,0.0,10/18/2782 +3.57415,50.04747,6760,3,9,11,31,37,3.55,5.0,fr,36538,135,1548003,1,1,Active Shallow Crust,240.0125,57.99864,0.0,03/09/6760 +3.57415,50.04747,2799,10,24,19,3,31,3.75,27.5,fr,36539,55,1548026,1,1,Active Shallow Crust,0.0,89.98972,0.0,10/24/2799 +3.57415,50.04747,9306,2,26,14,0,42,4.05,5.0,fr,36540,186,1548066,1,1,Active Shallow Crust,0.0,89.99079,-90.0,02/26/9306 +3.57415,50.04747,8279,4,5,6,50,11,4.25,5.0,fr,36541,165,1548087,1,1,Active Shallow Crust,240.0084,57.99433,0.0,04/05/8279 +3.57415,50.04747,5323,12,13,17,51,59,4.35,5.0,fr,36542,106,1548096,1,1,Active Shallow Crust,0.0,89.98969,0.0,12/13/5323 +0.09603,51.33506,9462,9,5,2,50,43,3.65,5.0,fr,36543,189,1548492,1,1,Active Shallow Crust,0.0,89.99,0.0,09/05/9462 +0.09603,51.33506,2461,9,22,15,9,13,3.95,5.0,fr,36544,49,1548528,1,1,Active Shallow Crust,0.0,89.99,0.0,09/22/2461 +0.09603,51.33506,2848,3,22,7,7,54,4.05,15.0,fr,36545,56,1548541,1,1,Active Shallow Crust,0.0,89.98998,0.0,03/22/2848 +0.09603,51.33506,8254,12,2,18,31,17,4.45,5.0,fr,36546,165,1548588,1,1,Active Shallow Crust,0.0,89.99001,0.0,12/02/8254 +6.02848,47.87513,2812,1,7,8,54,23,3.55,5.0,fr,36547,56,1548960,1,1,Active Shallow Crust,0.0,89.99323,0.0,01/07/2812 +6.02848,47.87513,412,1,3,19,51,18,3.55,15.0,fr,36548,8,1548964,1,1,Active Shallow Crust,240.0129,57.99808,0.0,01/03/0412 +6.02848,47.87513,2658,4,24,18,2,34,3.75,5.0,fr,36549,53,1548984,1,1,Active Shallow Crust,0.0,89.98926,0.0,04/24/2658 +6.02848,47.87513,718,4,9,15,47,39,3.95,5.0,fr,36550,14,1549008,1,1,Active Shallow Crust,0.0,89.99146,0.0,04/09/0718 +6.02848,47.87513,4071,11,3,1,52,16,4.15,5.0,fr,36551,81,1549032,1,1,Active Shallow Crust,0.0,89.98983,0.0,11/03/4071 +6.02848,47.87513,4804,12,22,1,30,19,4.25,5.0,fr,36552,96,1549044,1,1,Active Shallow Crust,0.0,89.99094,0.0,12/22/4804 +6.02848,47.87513,4646,10,24,16,22,40,4.25,15.0,fr,36553,92,1549054,1,1,Active Shallow Crust,128.8949,89.98046,0.0,10/24/4646 +3.13237,50.66395,5188,6,6,3,36,59,3.65,5.0,fr,36554,103,1549452,1,1,Active Shallow Crust,0.0,89.98861,0.0,06/06/5188 +3.13237,50.66395,9811,5,10,22,7,26,3.65,5.0,fr,36555,196,1549455,1,1,Active Shallow Crust,240.0011,58.01315,0.0,05/10/9811 +3.13237,50.66395,7898,6,3,19,48,4,3.85,5.0,fr,36556,157,1549476,1,2,Active Shallow Crust,0.0,89.99095,0.0,06/03/7898 +3.13237,50.66395,7421,10,20,1,45,33,3.85,5.0,fr,36557,148,1549476,1,2,Active Shallow Crust,0.0,89.99095,0.0,10/20/7421 +3.13237,50.66395,2211,7,9,12,50,36,3.85,15.0,fr,36558,44,1549477,1,2,Active Shallow Crust,0.0,89.99095,0.0,07/09/2211 +3.13237,50.66395,116,7,12,5,59,43,3.85,15.0,fr,36559,2,1549477,1,2,Active Shallow Crust,0.0,89.99095,0.0,07/12/0116 +3.13237,50.66395,5412,10,12,10,41,11,3.85,27.5,fr,36560,108,1549478,1,1,Active Shallow Crust,0.0,89.99095,0.0,10/12/5412 +3.13237,50.66395,5817,10,16,23,28,47,3.95,5.0,fr,36561,116,1549497,1,1,Active Shallow Crust,128.8994,89.99395,0.0,10/16/5817 +-0.16364,50.53962,6413,9,11,1,59,35,4.05,5.0,fr,36562,128,1549980,1,1,Active Shallow Crust,0.0,89.98997,0.0,09/11/6413 +-0.16364,50.53962,5762,6,12,12,47,16,4.05,5.0,fr,36563,115,1549986,1,1,Active Shallow Crust,0.0,89.98997,-90.0,06/12/5762 +5.3752,49.68164,1224,8,17,17,32,38,3.55,5.0,fr,36564,24,1550400,1,2,Active Shallow Crust,0.0,89.98695,0.0,08/17/1224 +5.3752,49.68164,6723,2,4,5,24,46,3.55,5.0,fr,36565,134,1550400,1,2,Active Shallow Crust,0.0,89.98695,0.0,02/04/6723 +0.03908,41.94172,446,8,10,18,47,34,4.05,5.0,fr,36566,8,1551426,1,1,Active Shallow Crust,0.0,89.99,-90.0,08/10/0446 +2.78439,46.77284,4023,9,17,2,1,3,3.55,5.0,fr,36567,80,1551846,1,1,Active Shallow Crust,0.0,89.98952,-90.0,09/17/4023 +2.78439,46.77284,3629,4,8,7,4,56,4.25,5.0,fr,36568,72,1551930,1,1,Active Shallow Crust,0.0,89.99064,-90.0,04/08/3629 +0.37574,43.75116,3262,5,31,13,13,25,3.55,27.5,fr,36569,65,1552322,1,1,Active Shallow Crust,0.0,89.98998,0.0,05/31/3262 +0.37574,43.75116,4570,5,7,18,34,16,3.55,27.5,fr,36570,91,1552325,1,1,Active Shallow Crust,240.012,57.99798,0.0,05/07/4570 +0.37574,43.75116,3520,2,23,5,13,15,3.65,5.0,fr,36571,70,1552332,1,1,Active Shallow Crust,0.0,89.98985,0.0,02/23/3520 +0.37574,43.75116,3875,5,18,16,38,54,3.75,5.0,fr,36572,77,1552350,1,1,Active Shallow Crust,0.0,89.99012,-90.0,05/18/3875 +0.37574,43.75116,1409,9,26,18,18,29,3.85,5.0,fr,36573,28,1552356,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/26/1409 +0.37574,43.75116,645,4,22,4,15,8,3.95,5.0,fr,36574,12,1552371,1,1,Active Shallow Crust,240.0194,58.00495,0.0,04/22/0645 +0.37574,43.75116,8552,10,24,13,52,52,4.15,5.0,fr,36575,171,1552392,1,1,Active Shallow Crust,0.0,89.98996,0.0,10/24/8552 +0.37574,43.75116,7719,3,24,3,17,19,4.25,5.0,fr,36576,154,1552404,1,1,Active Shallow Crust,0.0,89.99004,0.0,03/24/7719 +0.37574,43.75116,1742,7,31,23,1,48,4.45,15.0,fr,36577,34,1552429,1,1,Active Shallow Crust,0.0,89.98998,0.0,07/31/1742 +2.95005,45.37561,631,8,21,20,56,0,3.55,5.0,fr,36578,12,1552800,1,2,Active Shallow Crust,0.0,89.98937,0.0,08/21/0631 +2.95005,45.37561,2056,10,8,0,2,43,3.55,5.0,fr,36579,41,1552800,1,2,Active Shallow Crust,0.0,89.98937,0.0,10/08/2056 +2.95005,45.37561,8831,6,29,9,6,6,3.55,15.0,fr,36580,176,1552801,1,1,Active Shallow Crust,0.0,89.98937,0.0,06/29/8831 +2.95005,45.37561,601,6,2,10,40,3,3.65,5.0,fr,36581,12,1552812,1,1,Active Shallow Crust,0.0,89.99053,0.0,06/02/0601 +2.95005,45.37561,2963,5,14,15,58,53,3.75,5.0,fr,36582,59,1552827,1,1,Active Shallow Crust,240.0083,58.01766,0.0,05/14/2963 +2.95005,45.37561,1317,11,16,16,11,3,3.75,5.0,fr,36583,26,1552833,1,1,Active Shallow Crust,128.8966,89.96747,0.0,11/16/1317 +2.95005,45.37561,9490,6,20,2,51,59,3.85,5.0,fr,36584,189,1552836,1,1,Active Shallow Crust,0.0,89.98997,0.0,06/20/9490 +2.95005,45.37561,3019,9,10,4,15,59,3.95,5.0,fr,36585,60,1552848,1,1,Active Shallow Crust,0.0,89.99106,0.0,09/10/3019 +2.95005,45.37561,6894,2,18,18,17,24,3.95,15.0,fr,36586,137,1552852,1,1,Active Shallow Crust,240.0193,58.00511,0.0,02/18/6894 +2.95005,45.37561,7358,10,5,10,34,42,3.95,5.0,fr,36587,147,1552854,1,1,Active Shallow Crust,0.0,89.99096,-90.0,10/05/7358 +2.95005,45.37561,9167,11,16,20,55,24,4.25,5.0,fr,36588,183,1552893,1,1,Active Shallow Crust,128.8945,89.9809,0.0,11/16/9167 +2.95005,45.37561,210,3,11,0,31,48,4.45,15.0,fr,36589,4,1552909,1,1,Active Shallow Crust,0.0,89.98994,0.0,03/11/0210 +2.95005,45.37561,2132,1,19,16,9,26,4.85,5.0,fr,36590,42,1552959,1,1,Active Shallow Crust,240.0167,58.00228,0.0,01/19/2132 +2.95005,45.37561,4385,4,6,6,32,24,5.85,15.0,fr,36591,87,1553080,1,1,Active Shallow Crust,240.0432,57.99945,0.0,04/06/4385 +0.68801,44.72747,2249,2,7,14,15,18,4.45,15.0,fr,36592,44,1553389,1,1,Active Shallow Crust,0.0,89.99015,0.0,02/07/2249 +0.68801,44.72747,7624,6,22,4,22,40,4.45,27.5,fr,36593,152,1553390,1,1,Active Shallow Crust,0.0,89.99015,0.0,06/22/7624 +0.68801,44.72747,6108,1,11,1,29,58,5.05,5.0,fr,36594,122,1553460,1,1,Active Shallow Crust,0.0,89.98997,0.0,01/11/6108 +-1.04438,45.53034,9060,8,18,8,45,3,3.55,15.0,fr,36595,181,1553761,1,2,Active Shallow Crust,0.0,89.9894,0.0,08/18/9060 +-1.04438,45.53034,8418,10,18,8,7,25,3.55,15.0,fr,36596,168,1553761,1,2,Active Shallow Crust,0.0,89.9894,0.0,10/18/8418 +-1.04438,45.53034,8148,6,20,19,0,58,3.75,5.0,fr,36597,162,1553784,1,1,Active Shallow Crust,0.0,89.99018,0.0,06/20/8148 +-1.04438,45.53034,9554,9,30,19,8,20,3.75,15.0,fr,36598,191,1553785,1,1,Active Shallow Crust,0.0,89.99018,0.0,09/30/9554 +-1.04438,45.53034,6059,12,23,10,32,15,4.05,15.0,fr,36599,121,1553821,1,1,Active Shallow Crust,0.0,89.99007,0.0,12/23/6059 +5.05776,42.36979,7171,6,8,11,15,11,3.75,5.0,fr,36600,143,1554264,1,1,Active Shallow Crust,0.0,89.98817,0.0,06/08/7171 +-1.35648,43.7205,2488,10,21,0,3,46,4.35,5.0,fr,36601,49,1554825,1,1,Active Shallow Crust,128.8984,89.9828,0.0,10/21/2488 +6.12524,42.23719,2764,7,30,23,41,57,3.55,27.5,fr,36602,55,1555202,1,1,Active Shallow Crust,0.0,89.99253,0.0,07/30/2764 +6.12524,42.23719,8543,5,10,16,50,30,3.95,15.0,fr,36603,170,1555258,1,1,Active Shallow Crust,128.9019,89.99294,0.0,05/10/8543 +6.12524,42.23719,1653,8,17,15,6,1,4.05,15.0,fr,36604,33,1555261,1,1,Active Shallow Crust,0.0,89.9916,0.0,08/17/1653 +6.12524,42.23719,3325,8,30,22,29,20,4.15,15.0,fr,36605,66,1555276,1,1,Active Shallow Crust,240.0081,57.99727,0.0,08/30/3325 +6.12524,42.23719,4845,10,9,13,2,59,4.35,5.0,fr,36606,96,1555296,1,1,Active Shallow Crust,0.0,89.99108,0.0,10/09/4845 +4.534,41.08364,3563,9,13,5,53,30,3.65,5.0,fr,36607,71,1555692,1,1,Active Shallow Crust,0.0,89.99323,0.0,09/13/3563 +4.534,41.08364,2478,12,8,10,6,4,3.65,5.0,fr,36608,49,1555701,1,1,Active Shallow Crust,128.9016,89.96342,0.0,12/08/2478 +4.534,41.08364,8837,6,17,7,25,28,3.65,15.0,fr,36609,176,1555702,1,1,Active Shallow Crust,128.9016,89.96342,0.0,06/17/8837 +4.534,41.08364,1444,1,16,20,39,17,3.75,5.0,fr,36610,28,1555704,1,1,Active Shallow Crust,0.0,89.98792,0.0,01/16/1444 +4.534,41.08364,859,9,25,23,23,19,3.85,15.0,fr,36611,17,1555717,1,1,Active Shallow Crust,0.0,89.98923,0.0,09/25/0859 +4.534,41.08364,797,3,16,5,57,36,3.85,15.0,fr,36612,15,1555720,1,1,Active Shallow Crust,240.0097,57.99825,0.0,03/16/0797 +4.534,41.08364,7676,9,21,13,15,37,4.35,5.0,fr,36613,153,1555779,1,1,Active Shallow Crust,240.0073,57.99604,0.0,09/21/7676 +4.5774,47.80807,4867,7,30,8,33,52,3.55,5.0,fr,36614,97,1556649,1,1,Active Shallow Crust,128.8952,89.99661,0.0,07/30/4867 +4.5774,47.80807,1460,12,8,2,49,56,3.75,5.0,fr,36615,29,1556664,1,1,Active Shallow Crust,0.0,89.98924,0.0,12/08/1460 +4.5774,47.80807,7831,3,26,3,7,55,3.85,5.0,fr,36616,156,1556682,1,1,Active Shallow Crust,0.0,89.9903,-90.0,03/26/7831 +4.5774,47.80807,9243,9,10,22,47,50,3.95,5.0,fr,36617,184,1556688,1,1,Active Shallow Crust,0.0,89.99146,0.0,09/10/9243 +4.5774,47.80807,662,7,12,1,56,22,3.95,5.0,fr,36618,13,1556694,1,1,Active Shallow Crust,0.0,89.99136,-90.0,07/12/0662 +4.5774,47.80807,6047,7,18,5,30,29,4.05,5.0,fr,36619,120,1556700,1,1,Active Shallow Crust,0.0,89.98857,0.0,07/18/6047 +4.5774,47.80807,6271,7,23,7,20,24,4.25,15.0,fr,36620,125,1556731,1,1,Active Shallow Crust,0.0,89.99082,-90.0,07/23/6271 +-3.45212,43.34284,4239,2,9,2,10,11,3.55,15.0,fr,36621,84,1557127,1,1,Active Shallow Crust,0.0,89.98887,-90.0,02/09/4239 +-3.45212,43.34284,9596,11,23,15,29,21,3.65,5.0,fr,36622,191,1557132,1,1,Active Shallow Crust,0.0,89.9902,0.0,11/23/9596 +-3.45212,43.34284,7609,4,25,16,29,25,3.65,5.0,fr,36623,152,1557138,1,1,Active Shallow Crust,0.0,89.99008,-90.0,04/25/7609 +-3.45212,43.34284,7645,10,4,20,50,42,3.75,5.0,fr,36624,152,1557144,1,1,Active Shallow Crust,0.0,89.99126,0.0,10/04/7645 +-3.45212,43.34284,7793,8,5,19,10,22,3.85,5.0,fr,36625,155,1557156,1,1,Active Shallow Crust,0.0,89.98962,0.0,08/05/7793 +-3.45212,43.34284,6518,12,23,2,54,47,3.95,5.0,fr,36626,130,1557168,1,3,Active Shallow Crust,0.0,89.99075,0.0,12/23/6518 +-3.45212,43.34284,4599,2,16,5,50,53,3.95,5.0,fr,36627,91,1557168,1,3,Active Shallow Crust,0.0,89.99075,0.0,02/16/4599 +-3.45212,43.34284,4470,4,1,20,51,54,3.95,5.0,fr,36628,89,1557168,1,3,Active Shallow Crust,0.0,89.99075,0.0,04/01/4470 +-3.45212,43.34284,6769,10,18,2,37,48,4.05,5.0,fr,36629,135,1557189,1,1,Active Shallow Crust,128.8906,89.99381,0.0,10/18/6769 +-3.45212,43.34284,2669,8,18,1,11,57,4.15,27.5,fr,36630,53,1557194,1,1,Active Shallow Crust,0.0,89.99081,0.0,08/18/2669 +-3.45212,43.34284,6935,12,31,18,25,18,4.15,27.5,fr,36631,138,1557197,1,1,Active Shallow Crust,240.0082,57.99704,0.0,12/31/6935 +-3.45212,43.34284,6285,3,31,13,41,58,4.45,15.0,fr,36632,125,1557232,1,1,Active Shallow Crust,240.0045,57.99459,0.0,03/31/6285 +-3.45212,43.34284,7293,12,31,15,27,5,4.55,27.5,fr,36633,145,1557245,1,1,Active Shallow Crust,240.0084,57.99696,0.0,12/31/7293 +-3.452119,43.34284,7740,6,26,3,8,30,6.05,5.296268,fr,36634,154,1557426,1,1,Active Shallow Crust,0.0,89.98998,-90.0,06/26/7740 +-5.54421,47.53786,9411,12,25,8,9,22,4.35,15.0,fr,36635,188,1557697,1,1,Active Shallow Crust,0.0,89.98916,0.0,12/25/9411 +-0.6474,42.83162,1382,2,19,5,14,27,3.55,15.0,fr,36636,27,1558081,1,1,Active Shallow Crust,0.0,89.98983,0.0,02/19/1382 +-0.6474,42.83162,8829,8,9,14,31,34,3.65,5.0,fr,36637,176,1558092,1,1,Active Shallow Crust,0.0,89.99011,0.0,08/09/8829 +-0.6474,42.83162,3151,8,1,21,56,18,3.65,27.5,fr,36638,63,1558094,1,1,Active Shallow Crust,0.0,89.99011,0.0,08/01/3151 +-0.6474,42.83162,1231,12,27,0,54,37,3.75,27.5,fr,36639,24,1558106,1,1,Active Shallow Crust,0.0,89.98972,0.0,12/27/1231 +-0.6474,42.83162,7788,1,3,9,11,46,3.75,5.0,fr,36640,155,1558107,1,2,Active Shallow Crust,240.008,58.01751,0.0,01/03/7788 +-0.6474,42.83162,5405,3,26,19,56,33,3.75,5.0,fr,36641,108,1558107,1,2,Active Shallow Crust,240.008,58.01751,0.0,03/26/5405 +-0.6474,42.83162,1079,2,2,10,16,53,3.85,15.0,fr,36642,21,1558120,1,1,Active Shallow Crust,240.0103,57.99776,0.0,02/02/1079 +-0.6474,42.83162,534,7,2,18,46,50,4.05,15.0,fr,36643,10,1558141,1,1,Active Shallow Crust,0.0,89.99012,0.0,07/02/0534 +-0.6474,42.83162,7457,7,17,3,8,35,4.25,27.5,fr,36644,149,1558166,1,1,Active Shallow Crust,0.0,89.99009,0.0,07/17/7457 +-0.6474,42.83162,8589,4,6,1,17,2,4.25,5.0,fr,36645,171,1558170,1,1,Active Shallow Crust,0.0,89.98997,-90.0,04/06/8589 +-0.6474,42.83162,5030,12,5,5,56,50,4.45,27.5,fr,36646,100,1558190,1,1,Active Shallow Crust,0.0,89.99016,0.0,12/05/5030 +-0.6474,42.83162,8671,12,30,16,57,1,4.55,15.0,fr,36647,173,1558207,1,1,Active Shallow Crust,0.0,89.98994,-90.0,12/30/8671 +-0.6474,42.83162,3842,8,31,3,28,57,4.95,5.0,fr,36648,76,1558251,1,1,Active Shallow Crust,240.0103,58.0042,0.0,08/31/3842 +-0.6474,42.83162,7816,3,28,10,6,44,5.05,5.0,fr,36649,156,1558260,1,1,Active Shallow Crust,0.0,89.98997,0.0,03/28/7816 +-0.6474,42.83162,5531,9,21,4,24,43,5.45,15.0,fr,36650,110,1558309,1,1,Active Shallow Crust,0.0,89.99004,0.0,09/21/5531 +-0.03005,51.84818,5965,5,11,17,12,45,3.55,5.0,fr,36651,119,1558563,1,1,Active Shallow Crust,240.0127,57.99826,0.0,05/11/5965 +-0.03005,51.84818,4801,2,9,6,48,37,3.75,5.0,fr,36652,96,1558587,1,1,Active Shallow Crust,240.009,58.0177,0.0,02/09/4801 +-0.03005,51.84818,1802,9,22,3,36,36,3.85,15.0,fr,36653,36,1558603,1,1,Active Shallow Crust,0.0,89.99,-90.0,09/22/1802 +-0.03005,51.84818,2750,1,25,20,11,5,3.95,5.0,fr,36654,54,1558608,1,1,Active Shallow Crust,0.0,89.99001,0.0,01/25/2750 +-0.03005,51.84818,449,11,4,7,44,26,3.95,15.0,fr,36655,8,1558618,1,1,Active Shallow Crust,128.8996,89.99372,0.0,11/04/0449 +-0.03005,51.84818,1634,8,7,6,34,1,4.15,15.0,fr,36656,32,1558633,1,1,Active Shallow Crust,0.0,89.99,0.0,08/07/1634 +0.45112,45.38455,7396,6,13,11,21,53,3.55,5.0,fr,36657,147,1559043,1,1,Active Shallow Crust,240.012,57.99814,0.0,06/13/7396 +0.45112,45.38455,9602,12,16,18,14,55,3.65,15.0,fr,36658,192,1559056,1,1,Active Shallow Crust,240.001,58.01287,0.0,12/16/9602 +0.45112,45.38455,6836,1,27,4,6,33,3.65,15.0,fr,36659,136,1559062,1,1,Active Shallow Crust,128.9005,89.9635,0.0,01/27/6836 +0.45112,45.38455,3253,4,20,7,37,12,3.75,5.0,fr,36660,65,1559064,1,1,Active Shallow Crust,0.0,89.99016,0.0,04/20/3253 +0.45112,45.38455,5350,3,17,9,54,44,3.95,5.0,fr,36661,106,1559088,1,1,Active Shallow Crust,0.0,89.98994,0.0,03/17/5350 +0.45112,45.38455,406,7,20,3,5,27,4.15,5.0,fr,36662,8,1559112,1,1,Active Shallow Crust,0.0,89.99001,0.0,07/20/0406 +0.45112,45.38455,9889,7,2,6,44,22,4.15,15.0,fr,36663,197,1559113,1,2,Active Shallow Crust,0.0,89.99001,0.0,07/02/9889 +0.45112,45.38455,5750,6,5,8,36,21,4.15,15.0,fr,36664,114,1559113,1,2,Active Shallow Crust,0.0,89.99001,0.0,06/05/5750 +8.01341,50.74443,7901,10,27,10,57,2,3.55,5.0,fr,36665,158,1559520,1,2,Active Shallow Crust,0.0,89.98724,0.0,10/27/7901 +8.01341,50.74443,2744,10,18,17,48,52,3.55,5.0,fr,36666,54,1559520,1,2,Active Shallow Crust,0.0,89.98724,0.0,10/18/2744 +8.01341,50.74443,9523,12,13,4,5,40,3.75,5.0,fr,36667,190,1559544,1,1,Active Shallow Crust,0.0,89.98986,0.0,12/13/9523 +8.01341,50.74443,1125,8,18,0,50,18,3.95,5.0,fr,36668,22,1559568,1,1,Active Shallow Crust,0.0,89.99195,0.0,08/18/1125 +8.01341,50.74443,4736,7,28,21,49,41,4.05,5.0,fr,36669,94,1559580,1,3,Active Shallow Crust,0.0,89.99282,0.0,07/28/4736 +8.01341,50.74443,2505,4,11,22,18,12,4.05,5.0,fr,36670,50,1559580,1,3,Active Shallow Crust,0.0,89.99282,0.0,04/11/2505 +8.01341,50.74443,6130,7,14,21,32,26,4.05,5.0,fr,36671,122,1559580,1,3,Active Shallow Crust,0.0,89.99282,0.0,07/14/6130 +8.01341,50.74443,9474,1,12,21,4,59,4.85,5.0,fr,36672,189,1559676,1,1,Active Shallow Crust,359.9986,89.99142,0.0,01/12/9474 +7.12196,48.89701,5501,3,4,21,46,9,3.55,5.0,fr,36673,110,1560000,1,1,Active Shallow Crust,0.0,89.98674,0.0,03/04/5501 +7.12196,48.89701,7929,2,7,14,32,11,3.55,5.0,fr,36674,158,1560006,1,1,Active Shallow Crust,0.0,89.99329,-90.0,02/07/7929 +7.12196,48.89701,63,7,13,12,20,42,3.65,5.0,fr,36675,1,1560012,1,1,Active Shallow Crust,0.0,89.98818,0.0,07/13/0063 +7.12196,48.89701,8125,9,19,23,14,55,3.65,15.0,fr,36676,162,1560016,1,1,Active Shallow Crust,240.0015,58.01265,0.0,09/19/8125 +7.12196,48.89701,9034,5,11,19,26,40,3.95,5.0,fr,36677,180,1560048,1,1,Active Shallow Crust,0.0,89.99163,0.0,05/11/9034 +7.12196,48.89701,9422,9,28,18,29,48,4.15,5.0,fr,36678,188,1560078,1,1,Active Shallow Crust,0.0,89.98991,-90.0,09/28/9422 +-2.1866,49.61892,4305,12,7,6,4,55,3.75,27.5,fr,36679,86,1560506,1,1,Active Shallow Crust,0.0,89.98962,0.0,12/07/4305 +7.07357,43.82593,465,8,27,23,22,12,3.55,5.0,fr,36680,9,1560963,1,1,Active Shallow Crust,240.0127,57.99735,0.0,08/27/0465 +7.07357,43.82593,8143,1,25,2,45,20,3.55,15.0,fr,36681,162,1560970,1,1,Active Shallow Crust,128.8965,89.99273,0.0,01/25/8143 +7.07357,43.82593,2153,11,15,5,40,59,3.65,5.0,fr,36682,43,1560972,1,2,Active Shallow Crust,0.0,89.98703,0.0,11/15/2153 +7.07357,43.82593,1280,2,19,15,20,16,3.65,5.0,fr,36683,25,1560972,1,2,Active Shallow Crust,0.0,89.98703,0.0,02/19/1280 +7.07357,43.82593,7042,6,20,12,0,44,3.65,15.0,fr,36684,140,1560973,1,1,Active Shallow Crust,0.0,89.98703,0.0,06/20/7042 +7.07357,43.82593,3788,5,17,6,8,1,3.75,5.0,fr,36685,75,1560984,1,1,Active Shallow Crust,0.0,89.98844,0.0,05/17/3788 +7.07357,43.82593,5907,11,23,22,54,18,3.75,15.0,fr,36686,118,1560985,1,2,Active Shallow Crust,0.0,89.98844,0.0,11/23/5907 +7.07357,43.82593,27,7,1,10,33,39,3.75,15.0,fr,36687,0,1560985,1,2,Active Shallow Crust,0.0,89.98844,0.0,07/01/0027 +7.07357,43.82593,8289,9,29,1,31,5,3.85,5.0,fr,36688,165,1560996,1,1,Active Shallow Crust,0.0,89.9897,0.0,09/29/8289 +7.07357,43.82593,7679,4,12,23,47,33,4.05,15.0,fr,36689,153,1561024,1,1,Active Shallow Crust,240.0052,58.00607,0.0,04/12/7679 +7.07357,43.82593,7454,8,19,12,5,1,4.15,5.0,fr,36690,149,1561032,1,1,Active Shallow Crust,0.0,89.98906,0.0,08/19/7454 +7.07357,43.82593,5359,4,30,21,22,1,4.25,15.0,fr,36691,107,1561045,1,1,Active Shallow Crust,0.0,89.99025,0.0,04/30/5359 +7.07357,43.82593,7205,3,25,21,38,23,4.45,5.0,fr,36692,144,1561068,1,1,Active Shallow Crust,0.0,89.98968,0.0,03/25/7205 +7.07357,43.82593,5930,12,28,18,15,22,4.45,27.5,fr,36693,118,1561073,1,1,Active Shallow Crust,240.0051,57.99433,0.0,12/28/5930 +7.07357,43.82593,7809,2,5,5,16,20,4.45,5.0,fr,36694,156,1561074,1,1,Active Shallow Crust,0.0,89.98956,-90.0,02/05/7809 +7.07357,43.82593,318,8,10,8,13,17,4.55,15.0,fr,36695,6,1561081,1,1,Active Shallow Crust,0.0,89.9908,0.0,08/10/0318 +7.07357,43.82593,6769,11,26,5,14,25,4.65,15.0,fr,36696,135,1561096,1,1,Active Shallow Crust,240.0098,57.99427,0.0,11/26/6769 +7.07357,43.82593,8039,8,11,3,46,53,4.85,5.0,fr,36697,160,1561122,1,1,Active Shallow Crust,0.0,89.99011,-90.0,08/11/8039 +2.58785,47.78234,7830,11,16,8,41,16,3.55,5.0,fr,36698,156,1561440,1,1,Active Shallow Crust,0.0,89.98984,0.0,11/16/7830 +2.58785,47.78234,6957,12,18,5,3,39,3.95,5.0,fr,36699,139,1561488,1,1,Active Shallow Crust,0.0,89.98931,0.0,12/18/6957 +2.58785,47.78234,9915,3,9,21,37,50,4.85,15.0,fr,36700,198,1561597,1,1,Active Shallow Crust,0.0,89.99014,0.0,03/09/9915 +2.20279,48.15964,5140,1,22,14,41,49,3.65,15.0,fr,36701,102,1561936,1,1,Active Shallow Crust,240.0012,58.01292,0.0,01/22/5140 +2.20279,48.15964,2979,6,9,13,52,54,3.75,15.0,fr,36702,59,1561945,1,1,Active Shallow Crust,0.0,89.98931,0.0,06/09/2979 +2.20279,48.15964,3982,5,28,15,59,51,4.55,5.0,fr,36703,79,1562040,1,1,Active Shallow Crust,0.0,89.99043,0.0,05/28/3982 +6.72395,49.22735,1311,8,27,13,25,19,3.55,5.0,fr,36704,26,1562403,1,1,Active Shallow Crust,240.0139,57.99752,0.0,08/27/1311 +6.72395,49.22735,3485,6,14,13,5,38,3.65,5.0,fr,36705,69,1562412,1,2,Active Shallow Crust,0.0,89.98826,0.0,06/14/3485 +6.72395,49.22735,9595,4,20,23,55,58,3.65,5.0,fr,36706,191,1562412,1,2,Active Shallow Crust,0.0,89.98826,0.0,04/20/9595 +6.72395,49.22735,5750,10,6,17,25,51,4.05,5.0,fr,36707,114,1562460,1,1,Active Shallow Crust,0.0,89.98889,0.0,10/06/5750 +8.13171,44.87316,2038,10,12,1,31,59,3.55,5.0,fr,36708,40,1562880,1,1,Active Shallow Crust,0.0,89.98571,0.0,10/12/2038 +8.13171,44.87316,8599,12,23,20,18,26,3.55,15.0,fr,36709,171,1562881,1,1,Active Shallow Crust,0.0,89.98571,0.0,12/23/8599 +8.13171,44.87316,6152,12,11,13,49,13,3.75,5.0,fr,36710,123,1562904,1,2,Active Shallow Crust,0.0,89.98865,0.0,12/11/6152 +8.13171,44.87316,1318,11,30,8,43,34,3.75,5.0,fr,36711,26,1562904,1,2,Active Shallow Crust,0.0,89.98865,0.0,11/30/1318 +8.13171,44.87316,5456,2,22,16,37,59,3.75,5.0,fr,36712,109,1562913,1,1,Active Shallow Crust,128.8993,89.96601,0.0,02/22/5456 +8.13171,44.87316,7642,8,4,14,44,20,3.85,15.0,fr,36713,152,1562917,1,1,Active Shallow Crust,0.0,89.98988,0.0,08/04/7642 +8.13171,44.87316,2933,5,24,0,22,16,3.85,15.0,fr,36714,58,1562920,1,1,Active Shallow Crust,240.0125,57.9971,0.0,05/24/2933 +8.13171,44.87316,1691,12,6,1,9,14,3.85,15.0,fr,36715,33,1562926,1,1,Active Shallow Crust,128.8935,89.99494,0.0,12/06/1691 +8.13171,44.87316,3069,8,18,15,45,58,3.95,5.0,fr,36716,61,1562937,1,1,Active Shallow Crust,128.9027,89.99098,0.0,08/18/3069 +8.13171,44.87316,4554,5,29,19,56,45,4.05,5.0,fr,36717,91,1562946,1,1,Active Shallow Crust,0.0,89.99187,-90.0,05/29/4554 +8.13171,44.87316,5995,6,28,6,39,51,4.15,5.0,fr,36718,119,1562952,1,1,Active Shallow Crust,0.0,89.99284,0.0,06/28/5995 +8.13171,44.87316,2337,10,6,11,13,30,4.45,15.0,fr,36719,46,1562989,1,1,Active Shallow Crust,0.0,89.98986,0.0,10/06/2337 +8.13171,44.87316,369,5,1,15,9,4,5.15,15.0,fr,36720,7,1563073,1,1,Active Shallow Crust,0.0,89.99094,0.0,05/01/0369 +3.27484,40.0898,8197,11,25,2,28,4,3.85,5.0,fr,36721,163,1563396,1,1,Active Shallow Crust,0.0,89.98907,0.0,11/25/8197 +0.85584,42.84171,3046,3,31,18,8,55,3.55,15.0,fr,36722,60,1563841,1,2,Active Shallow Crust,0.0,89.98983,0.0,03/31/3046 +0.85584,42.84171,5562,10,10,13,21,23,3.55,15.0,fr,36723,111,1563841,1,2,Active Shallow Crust,0.0,89.98983,0.0,10/10/5562 +0.85584,42.84171,7523,8,12,21,3,54,3.65,5.0,fr,36724,150,1563852,1,1,Active Shallow Crust,0.0,89.99011,0.0,08/12/7523 +0.85584,42.84171,5758,3,7,2,24,48,3.65,15.0,fr,36725,115,1563853,1,1,Active Shallow Crust,0.0,89.99011,0.0,03/07/5758 +0.85584,42.84171,2728,4,24,22,46,33,3.65,5.0,fr,36726,54,1563855,1,1,Active Shallow Crust,240.0007,58.01275,0.0,04/24/2728 +0.85584,42.84171,9809,6,28,6,16,22,3.65,5.0,fr,36727,196,1563858,1,1,Active Shallow Crust,0.0,89.99,-90.0,06/28/9809 +0.85584,42.84171,4349,2,11,3,49,5,3.75,5.0,fr,36728,86,1563864,1,1,Active Shallow Crust,0.0,89.98972,0.0,02/11/4349 +0.85584,42.84171,9665,7,20,12,33,49,3.75,5.0,fr,36729,193,1563870,1,1,Active Shallow Crust,0.0,89.99035,-90.0,07/20/9665 +0.85584,42.84171,546,5,24,4,46,45,3.85,5.0,fr,36730,10,1563876,1,1,Active Shallow Crust,0.0,89.99019,0.0,05/24/0546 +0.85584,42.84171,4673,12,28,10,39,42,3.85,15.0,fr,36731,93,1563877,1,1,Active Shallow Crust,0.0,89.99019,0.0,12/28/4673 +0.85584,42.84171,9037,10,1,20,4,24,3.85,5.0,fr,36732,180,1563879,1,2,Active Shallow Crust,240.0104,57.9977,0.0,10/01/9037 +0.85584,42.84171,7472,5,27,16,16,45,3.85,5.0,fr,36733,149,1563879,1,2,Active Shallow Crust,240.0104,57.9977,0.0,05/27/7472 +0.85584,42.84171,5358,5,16,18,13,23,3.95,5.0,fr,36734,107,1563888,1,1,Active Shallow Crust,0.0,89.99009,0.0,05/16/5358 +0.85584,42.84171,8834,2,4,13,8,19,4.05,15.0,fr,36735,176,1563901,1,1,Active Shallow Crust,0.0,89.99013,0.0,02/04/8834 +0.85584,42.84171,1590,11,6,20,38,1,4.05,27.5,fr,36736,31,1563902,1,1,Active Shallow Crust,0.0,89.99013,0.0,11/06/1590 +0.85584,42.84171,1060,12,10,4,46,37,4.15,5.0,fr,36737,21,1563912,1,1,Active Shallow Crust,0.0,89.98981,0.0,12/10/1060 +0.85584,42.84171,1548,10,7,21,24,17,4.15,5.0,fr,36738,30,1563915,1,1,Active Shallow Crust,240.0078,57.9972,0.0,10/07/1548 +0.85584,42.84171,3336,9,12,16,50,26,4.15,27.5,fr,36739,66,1563917,1,1,Active Shallow Crust,240.0078,57.99718,0.0,09/12/3336 +0.85584,42.84171,6723,3,19,5,44,14,4.25,5.0,fr,36740,134,1563924,1,1,Active Shallow Crust,0.0,89.99009,0.0,03/19/6723 +0.85584,42.84171,1156,12,10,4,49,53,4.55,5.0,fr,36741,23,1563960,1,1,Active Shallow Crust,0.0,89.99006,0.0,12/10/1156 +0.85584,42.84171,7586,7,26,8,53,51,4.55,5.0,fr,36742,151,1563966,1,1,Active Shallow Crust,0.0,89.98994,-90.0,07/26/7586 +0.85584,42.84171,8059,5,2,3,27,8,4.95,5.0,fr,36743,161,1564017,1,1,Active Shallow Crust,128.8912,89.9898,0.0,05/02/8059 +0.85584,42.84171,4801,10,9,21,45,19,5.15,5.0,fr,36744,96,1564035,1,1,Active Shallow Crust,240.0176,57.99958,0.0,10/09/4801 +-1.95825,44.07025,4769,10,1,14,0,39,3.55,5.0,fr,36745,95,1564326,1,1,Active Shallow Crust,0.0,89.99084,-90.0,10/01/4769 +-1.95825,44.07025,3011,5,10,22,37,43,3.55,15.0,fr,36746,60,1564330,1,1,Active Shallow Crust,128.8964,89.99366,0.0,05/10/3011 +3.97865,43.8217,7910,4,30,12,5,38,3.55,5.0,fr,36747,158,1565280,1,1,Active Shallow Crust,0.0,89.98909,0.0,04/30/7910 +3.97865,43.8217,4626,10,1,17,3,59,3.65,5.0,fr,36748,92,1565292,1,1,Active Shallow Crust,0.0,89.99027,0.0,10/01/4626 +3.97865,43.8217,8944,6,26,5,43,56,3.65,27.5,fr,36749,178,1565297,1,1,Active Shallow Crust,240.0008,58.01261,0.0,06/26/8944 +3.97865,43.8217,8070,7,2,20,17,21,3.65,5.0,fr,36750,161,1565301,1,1,Active Shallow Crust,128.9014,89.96347,0.0,07/02/8070 +3.97865,43.8217,3260,7,5,7,34,57,3.75,5.0,fr,36751,65,1565310,1,1,Active Shallow Crust,0.0,89.99123,-90.0,07/05/3260 +3.97865,43.8217,9958,11,17,11,15,46,4.15,5.0,fr,36752,199,1565352,1,1,Active Shallow Crust,0.0,89.99088,0.0,11/17/9958 +3.97865,43.8217,4240,12,13,15,4,54,4.25,15.0,fr,36753,84,1565368,1,1,Active Shallow Crust,240.007,57.99406,0.0,12/13/4240 +8.08296,46.96086,243,8,6,13,3,28,3.55,5.0,fr,36754,4,1565760,1,4,Active Shallow Crust,0.0,89.98624,0.0,08/06/0243 +8.08296,46.96086,5388,5,30,21,36,49,3.55,5.0,fr,36755,107,1565760,1,4,Active Shallow Crust,0.0,89.98624,0.0,05/30/5388 +8.08296,46.96086,5944,7,24,3,10,49,3.55,5.0,fr,36756,118,1565760,1,4,Active Shallow Crust,0.0,89.98624,0.0,07/24/5944 +8.08296,46.96086,8421,12,10,14,58,24,3.55,5.0,fr,36757,168,1565760,1,4,Active Shallow Crust,0.0,89.98624,0.0,12/10/8421 +8.08296,46.96086,5451,4,2,16,15,57,3.55,15.0,fr,36758,109,1565761,1,4,Active Shallow Crust,0.0,89.98624,0.0,04/02/5451 +8.08296,46.96086,9258,9,5,2,22,53,3.55,15.0,fr,36759,185,1565761,1,4,Active Shallow Crust,0.0,89.98624,0.0,09/05/9258 +8.08296,46.96086,4321,5,19,2,50,41,3.55,15.0,fr,36760,86,1565761,1,4,Active Shallow Crust,0.0,89.98624,0.0,05/19/4321 +8.08296,46.96086,6445,3,2,8,3,19,3.55,15.0,fr,36761,128,1565761,1,4,Active Shallow Crust,0.0,89.98624,0.0,03/02/6445 +8.08296,46.96086,975,5,30,5,20,52,3.55,5.0,fr,36762,19,1565769,1,1,Active Shallow Crust,128.8975,89.99312,0.0,05/30/0975 +8.08296,46.96086,8689,9,22,6,33,39,3.65,5.0,fr,36763,173,1565772,1,6,Active Shallow Crust,0.0,89.98773,0.0,09/22/8689 +8.08296,46.96086,4325,11,1,12,58,48,3.65,5.0,fr,36764,86,1565772,1,6,Active Shallow Crust,0.0,89.98773,0.0,11/01/4325 +8.08296,46.96086,2118,8,28,22,49,55,3.65,5.0,fr,36765,42,1565772,1,6,Active Shallow Crust,0.0,89.98773,0.0,08/28/2118 +8.08296,46.96086,7212,1,8,17,25,26,3.65,5.0,fr,36766,144,1565772,1,6,Active Shallow Crust,0.0,89.98773,0.0,01/08/7212 +8.08296,46.96086,9114,5,15,1,43,24,3.65,5.0,fr,36767,182,1565772,1,6,Active Shallow Crust,0.0,89.98773,0.0,05/15/9114 +8.08296,46.96086,8985,6,6,11,38,46,3.65,5.0,fr,36768,179,1565772,1,6,Active Shallow Crust,0.0,89.98773,0.0,06/06/8985 +8.08296,46.96086,9402,10,4,4,26,46,3.65,15.0,fr,36769,188,1565773,1,1,Active Shallow Crust,0.0,89.98773,0.0,10/04/9402 +8.08296,46.96086,6549,11,12,13,11,47,3.65,5.0,fr,36770,130,1565778,1,1,Active Shallow Crust,0.0,89.98759,-90.0,11/12/6549 +8.08296,46.96086,2832,2,16,11,19,11,3.65,5.0,fr,36771,56,1565781,1,4,Active Shallow Crust,128.9,89.96353,0.0,02/16/2832 +8.08296,46.96086,4173,6,21,12,44,17,3.65,5.0,fr,36772,83,1565781,1,4,Active Shallow Crust,128.9,89.96353,0.0,06/21/4173 +8.08296,46.96086,1779,9,2,12,35,20,3.65,5.0,fr,36773,35,1565781,1,4,Active Shallow Crust,128.9,89.96353,0.0,09/02/1779 +8.08296,46.96086,5491,4,8,17,44,50,3.65,5.0,fr,36774,109,1565781,1,4,Active Shallow Crust,128.9,89.96353,0.0,04/08/5491 +8.08296,46.96086,297,3,22,19,36,42,3.75,5.0,fr,36775,5,1565784,1,1,Active Shallow Crust,0.0,89.98907,0.0,03/22/0297 +8.08296,46.96086,8941,9,6,16,39,30,3.75,15.0,fr,36776,178,1565785,1,3,Active Shallow Crust,0.0,89.98907,0.0,09/06/8941 +8.08296,46.96086,6756,2,3,10,23,17,3.75,15.0,fr,36777,135,1565785,1,3,Active Shallow Crust,0.0,89.98907,0.0,02/03/6756 +8.08296,46.96086,593,12,1,7,18,41,3.75,15.0,fr,36778,11,1565785,1,3,Active Shallow Crust,0.0,89.98907,0.0,12/01/0593 +8.08296,46.96086,8663,9,8,17,53,15,3.75,5.0,fr,36779,173,1565787,1,1,Active Shallow Crust,240.0088,58.01743,0.0,09/08/8663 +8.08296,46.96086,7180,11,12,8,17,19,3.75,15.0,fr,36780,143,1565788,1,1,Active Shallow Crust,240.0088,58.01743,0.0,11/12/7180 +8.08296,46.96086,8324,10,7,22,42,28,3.75,5.0,fr,36781,166,1565790,1,1,Active Shallow Crust,0.0,89.98894,-90.0,10/07/8324 +8.08296,46.96086,5212,11,28,8,5,10,3.85,5.0,fr,36782,104,1565796,1,4,Active Shallow Crust,0.0,89.99026,0.0,11/28/5212 +8.08296,46.96086,3,11,17,3,14,2,3.85,5.0,fr,36783,0,1565796,1,4,Active Shallow Crust,0.0,89.99026,0.0,11/17/0003 +8.08296,46.96086,5063,2,28,10,37,7,3.85,5.0,fr,36784,101,1565796,1,4,Active Shallow Crust,0.0,89.99026,0.0,02/28/5063 +8.08296,46.96086,3104,11,13,14,36,40,3.85,5.0,fr,36785,62,1565796,1,4,Active Shallow Crust,0.0,89.99026,0.0,11/13/3104 +8.08296,46.96086,8934,10,24,3,24,54,3.85,27.5,fr,36786,178,1565798,1,1,Active Shallow Crust,0.0,89.99026,0.0,10/24/8934 +8.08296,46.96086,9783,3,26,1,49,50,3.95,5.0,fr,36787,195,1565808,1,3,Active Shallow Crust,0.0,89.99132,0.0,03/26/9783 +8.08296,46.96086,2985,7,18,11,33,53,3.95,5.0,fr,36788,59,1565808,1,3,Active Shallow Crust,0.0,89.99132,0.0,07/18/2985 +8.08296,46.96086,9801,2,27,20,32,43,3.95,5.0,fr,36789,196,1565808,1,3,Active Shallow Crust,0.0,89.99132,0.0,02/27/9801 +8.08296,46.96086,6940,1,16,15,26,18,3.95,15.0,fr,36790,138,1565809,1,1,Active Shallow Crust,0.0,89.99132,0.0,01/16/6940 +8.08296,46.96086,3375,9,8,11,8,25,3.95,27.5,fr,36791,67,1565810,1,2,Active Shallow Crust,0.0,89.99132,0.0,09/08/3375 +8.08296,46.96086,83,6,21,17,32,46,3.95,27.5,fr,36792,1,1565810,1,2,Active Shallow Crust,0.0,89.99132,0.0,06/21/0083 +8.08296,46.96086,5573,9,24,22,58,26,3.95,5.0,fr,36793,111,1565814,1,1,Active Shallow Crust,0.0,89.99121,-90.0,09/24/5573 +8.08296,46.96086,3817,12,27,10,40,14,4.05,15.0,fr,36794,76,1565821,1,2,Active Shallow Crust,0.0,89.99226,0.0,12/27/3817 +8.08296,46.96086,7436,3,12,3,16,18,4.05,15.0,fr,36795,148,1565821,1,2,Active Shallow Crust,0.0,89.99226,0.0,03/12/7436 +8.08296,46.96086,271,3,6,6,52,31,4.05,5.0,fr,36796,5,1565823,1,1,Active Shallow Crust,240.0054,58.00654,0.0,03/06/0271 +8.08296,46.96086,9018,10,31,17,35,35,4.15,5.0,fr,36797,180,1565832,1,2,Active Shallow Crust,0.0,89.9931,0.0,10/31/9018 +8.08296,46.96086,7419,12,2,7,47,45,4.15,5.0,fr,36798,148,1565832,1,2,Active Shallow Crust,0.0,89.9931,0.0,12/02/7419 +8.08296,46.96086,9422,3,7,21,2,21,4.15,15.0,fr,36799,188,1565833,1,1,Active Shallow Crust,0.0,89.9931,0.0,03/07/9422 +8.08296,46.96086,8377,2,27,3,29,5,4.15,5.0,fr,36800,167,1565835,1,1,Active Shallow Crust,240.0091,57.9973,0.0,02/27/8377 +8.08296,46.96086,8557,11,27,5,39,27,4.15,15.0,fr,36801,171,1565836,1,1,Active Shallow Crust,240.0091,57.99732,0.0,11/27/8557 +8.08296,46.96086,6854,6,29,2,15,10,4.25,5.0,fr,36802,137,1565844,1,2,Active Shallow Crust,0.0,89.9877,0.0,06/29/6854 +8.08296,46.96086,9429,3,31,13,20,4,4.25,5.0,fr,36803,188,1565844,1,2,Active Shallow Crust,0.0,89.9877,0.0,03/31/9429 +8.08296,46.96086,8426,5,22,3,42,15,4.25,5.0,fr,36804,168,1565850,1,2,Active Shallow Crust,0.0,89.98756,-90.0,05/22/8426 +8.08296,46.96086,1276,11,4,6,38,50,4.25,5.0,fr,36805,25,1565850,1,2,Active Shallow Crust,0.0,89.98756,-90.0,11/04/1276 +8.08296,46.96086,4063,5,25,4,53,37,4.25,5.0,fr,36806,81,1565853,1,1,Active Shallow Crust,128.895,89.98096,0.0,05/25/4063 +8.08296,46.96086,4853,10,29,22,8,18,4.35,15.0,fr,36807,97,1565857,1,1,Active Shallow Crust,0.0,89.98904,0.0,10/29/4853 +8.08296,46.96086,4280,3,29,11,44,45,4.45,15.0,fr,36808,85,1565869,1,1,Active Shallow Crust,0.0,89.99023,0.0,03/29/4280 +8.08296,46.96086,1889,3,20,7,5,40,4.45,15.0,fr,36809,37,1565872,1,1,Active Shallow Crust,240.0053,57.99501,0.0,03/20/1889 +8.08296,46.96086,5140,1,16,7,29,58,4.55,5.0,fr,36810,102,1565880,1,2,Active Shallow Crust,0.0,89.99129,0.0,01/16/5140 +8.08296,46.96086,5811,6,17,19,45,6,4.55,5.0,fr,36811,116,1565880,1,2,Active Shallow Crust,0.0,89.99129,0.0,06/17/5811 +8.08296,46.96086,9777,3,29,3,45,32,4.55,5.0,fr,36812,195,1565883,1,1,Active Shallow Crust,240.009,57.99801,0.0,03/29/9777 +8.08296,46.96086,3541,1,3,10,23,17,4.65,5.0,fr,36813,70,1565892,1,1,Active Shallow Crust,0.0,89.98836,0.0,01/03/3541 +8.08296,46.96086,227,10,27,18,9,46,4.65,5.0,fr,36814,4,1565895,1,1,Active Shallow Crust,240.0108,57.9939,0.0,10/27/0227 +8.08296,46.96086,3970,9,24,1,53,44,4.95,5.0,fr,36815,79,1565934,1,1,Active Shallow Crust,0.0,89.98888,-90.0,09/24/3970 +1.71318,44.13226,7008,11,3,16,33,3,3.55,5.0,fr,36816,140,1566240,1,1,Active Shallow Crust,0.0,89.98914,0.0,11/03/7008 +1.71318,44.13226,9674,1,14,19,40,32,4.35,5.0,fr,36817,193,1566336,1,1,Active Shallow Crust,0.0,89.98991,0.0,01/14/9674 +4.41264,41.20253,7264,5,14,20,54,19,3.65,5.0,fr,36818,145,1566732,1,1,Active Shallow Crust,0.0,89.99324,0.0,05/14/7264 +4.41264,41.20253,66,5,7,20,38,59,3.75,5.0,fr,36819,1,1566744,1,1,Active Shallow Crust,0.0,89.98795,0.0,05/07/0066 +0.41106,43.07312,5240,2,27,3,31,31,3.55,5.0,fr,36820,104,1567200,1,5,Active Shallow Crust,0.0,89.98987,0.0,02/27/5240 +0.41106,43.07312,6581,1,1,19,25,13,3.55,5.0,fr,36821,131,1567200,1,5,Active Shallow Crust,0.0,89.98987,0.0,01/01/6581 +0.41106,43.07312,5448,6,15,15,56,8,3.55,5.0,fr,36822,108,1567200,1,5,Active Shallow Crust,0.0,89.98987,0.0,06/15/5448 +0.41106,43.07312,1211,7,14,10,27,26,3.55,5.0,fr,36823,24,1567200,1,5,Active Shallow Crust,0.0,89.98987,0.0,07/14/1211 +0.41106,43.07312,3211,11,4,1,4,23,3.55,5.0,fr,36824,64,1567200,1,5,Active Shallow Crust,0.0,89.98987,0.0,11/04/3211 +0.41106,43.07312,1114,11,4,14,53,3,3.55,15.0,fr,36825,22,1567201,1,4,Active Shallow Crust,0.0,89.98987,0.0,11/04/1114 +0.41106,43.07312,7336,9,25,7,2,26,3.55,15.0,fr,36826,146,1567201,1,4,Active Shallow Crust,0.0,89.98987,0.0,09/25/7336 +0.41106,43.07312,6711,8,28,1,6,55,3.55,15.0,fr,36827,134,1567201,1,4,Active Shallow Crust,0.0,89.98987,0.0,08/28/6711 +0.41106,43.07312,4815,10,11,20,21,19,3.55,15.0,fr,36828,96,1567201,1,4,Active Shallow Crust,0.0,89.98987,0.0,10/11/4815 +0.41106,43.07312,2976,3,1,4,29,8,3.55,5.0,fr,36829,59,1567203,1,2,Active Shallow Crust,240.0119,57.99812,0.0,03/01/2976 +0.41106,43.07312,7861,9,11,0,27,20,3.55,5.0,fr,36830,157,1567203,1,2,Active Shallow Crust,240.0119,57.99812,0.0,09/11/7861 +0.41106,43.07312,5612,1,12,9,23,21,3.55,5.0,fr,36831,112,1567209,1,3,Active Shallow Crust,128.8965,89.99378,0.0,01/12/5612 +0.41106,43.07312,4204,6,15,15,24,52,3.55,5.0,fr,36832,84,1567209,1,3,Active Shallow Crust,128.8965,89.99378,0.0,06/15/4204 +0.41106,43.07312,8316,10,29,10,33,6,3.55,5.0,fr,36833,166,1567209,1,3,Active Shallow Crust,128.8965,89.99378,0.0,10/29/8316 +0.41106,43.07312,7600,2,25,0,26,2,3.65,5.0,fr,36834,151,1567212,1,2,Active Shallow Crust,0.0,89.99015,0.0,02/25/7600 +0.41106,43.07312,8963,10,26,12,56,13,3.65,5.0,fr,36835,179,1567212,1,2,Active Shallow Crust,0.0,89.99015,0.0,10/26/8963 +0.41106,43.07312,2695,9,24,18,44,59,3.65,15.0,fr,36836,53,1567213,1,2,Active Shallow Crust,0.0,89.99015,0.0,09/24/2695 +0.41106,43.07312,1045,9,15,8,7,19,3.65,15.0,fr,36837,20,1567213,1,2,Active Shallow Crust,0.0,89.99015,0.0,09/15/1045 +0.41106,43.07312,8174,8,26,17,42,32,3.65,27.5,fr,36838,163,1567214,1,1,Active Shallow Crust,0.0,89.99015,0.0,08/26/8174 +0.41106,43.07312,8412,11,22,17,31,39,3.75,5.0,fr,36839,168,1567224,1,2,Active Shallow Crust,0.0,89.99013,0.0,11/22/8412 +0.41106,43.07312,8941,7,27,6,39,59,3.75,5.0,fr,36840,178,1567224,1,2,Active Shallow Crust,0.0,89.99013,0.0,07/27/8941 +0.41106,43.07312,1998,6,4,22,46,58,3.75,15.0,fr,36841,39,1567225,1,1,Active Shallow Crust,0.0,89.99013,0.0,06/04/1998 +0.41106,43.07312,9741,2,27,3,44,59,3.75,5.0,fr,36842,194,1567227,1,1,Active Shallow Crust,240.0079,58.01745,0.0,02/27/9741 +0.41106,43.07312,356,4,6,20,13,25,3.75,15.0,fr,36843,7,1567231,1,2,Active Shallow Crust,0.0,89.99001,-90.0,04/06/0356 +0.41106,43.07312,9841,10,22,8,1,16,3.75,15.0,fr,36844,196,1567231,1,2,Active Shallow Crust,0.0,89.99001,-90.0,10/22/9841 +0.41106,43.07312,7629,7,2,12,55,6,3.75,5.0,fr,36845,152,1567233,1,1,Active Shallow Crust,128.897,89.96733,0.0,07/02/7629 +0.41106,43.07312,8816,6,23,5,39,14,3.75,15.0,fr,36846,176,1567234,1,1,Active Shallow Crust,128.897,89.96733,0.0,06/23/8816 +0.41106,43.07312,2550,9,9,12,23,36,3.85,5.0,fr,36847,50,1567245,1,1,Active Shallow Crust,128.896,89.99364,0.0,09/09/2550 +0.41106,43.07312,5224,5,8,17,42,57,3.95,5.0,fr,36848,104,1567248,1,2,Active Shallow Crust,0.0,89.99012,0.0,05/08/5224 +0.41106,43.07312,9729,12,19,22,2,58,3.95,5.0,fr,36849,194,1567248,1,2,Active Shallow Crust,0.0,89.99012,0.0,12/19/9729 +0.41106,43.07312,5391,12,8,13,0,15,3.95,15.0,fr,36850,107,1567249,1,1,Active Shallow Crust,0.0,89.99012,0.0,12/08/5391 +0.41106,43.07312,7242,6,20,13,27,8,3.95,27.5,fr,36851,144,1567250,1,1,Active Shallow Crust,0.0,89.99012,0.0,06/20/7242 +0.41106,43.07312,9464,10,10,20,25,30,4.05,5.0,fr,36852,189,1567260,1,2,Active Shallow Crust,0.0,89.98991,0.0,10/10/9464 +0.41106,43.07312,6376,6,17,12,24,5,4.05,5.0,fr,36853,127,1567260,1,2,Active Shallow Crust,0.0,89.98991,0.0,06/17/6376 +0.41106,43.07312,3149,8,19,10,26,7,4.05,15.0,fr,36854,62,1567261,1,2,Active Shallow Crust,0.0,89.98991,0.0,08/19/3149 +0.41106,43.07312,3800,8,1,15,9,37,4.05,15.0,fr,36855,75,1567261,1,2,Active Shallow Crust,0.0,89.98991,0.0,08/01/3800 +0.41106,43.07312,1937,6,21,17,54,49,4.05,5.0,fr,36856,38,1567263,1,1,Active Shallow Crust,240.0054,58.00572,0.0,06/21/1937 +0.41106,43.07312,3256,8,26,15,58,53,4.15,5.0,fr,36857,65,1567272,1,1,Active Shallow Crust,0.0,89.99007,0.0,08/26/3256 +0.41106,43.07312,4792,7,15,6,58,30,4.25,15.0,fr,36858,95,1567291,1,1,Active Shallow Crust,0.0,89.99001,-90.0,07/15/4792 +0.41106,43.07312,7572,1,11,20,39,26,4.35,5.0,fr,36859,151,1567296,1,1,Active Shallow Crust,0.0,89.98992,0.0,01/11/7572 +0.41106,43.07312,9753,5,25,16,23,46,4.35,5.0,fr,36860,195,1567299,1,1,Active Shallow Crust,240.0077,57.99581,0.0,05/25/9753 +0.41106,43.07312,8462,11,7,0,31,43,4.45,5.0,fr,36861,169,1567308,1,1,Active Shallow Crust,0.0,89.99004,0.0,11/07/8462 +0.41106,43.07312,3937,10,16,0,56,11,4.55,5.0,fr,36862,78,1567320,1,2,Active Shallow Crust,0.0,89.98995,0.0,10/16/3937 +0.41106,43.07312,5014,10,3,4,57,56,4.55,5.0,fr,36863,100,1567320,1,2,Active Shallow Crust,0.0,89.98995,0.0,10/03/5014 +0.41106,43.07312,4571,10,23,0,44,4,4.75,5.0,fr,36864,91,1567344,1,1,Active Shallow Crust,0.0,89.99005,0.0,10/23/4571 +0.41106,43.07312,8575,5,12,10,50,36,4.95,5.0,fr,36865,171,1567368,1,1,Active Shallow Crust,0.0,89.98998,0.0,05/12/8575 +0.41106,43.07312,8530,10,24,7,10,24,5.05,15.0,fr,36866,170,1567381,1,1,Active Shallow Crust,0.0,89.99001,0.0,10/24/8530 +0.41106,43.07312,7970,9,16,20,0,38,5.05,27.5,fr,36867,159,1567382,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/16/7970 +0.41106,43.07312,2414,7,20,17,44,41,5.05,5.0,fr,36868,48,1567383,1,1,Active Shallow Crust,240.0204,57.99727,0.0,07/20/2414 +0.41106,43.07312,9028,7,19,11,1,39,5.15,5.0,fr,36869,180,1567392,1,1,Active Shallow Crust,0.0,89.99,0.0,07/19/9028 +0.41106,43.07312,7550,10,2,11,14,49,5.85,15.0,fr,36870,150,1567480,1,1,Active Shallow Crust,240.0404,57.99898,0.0,10/02/7550 +2.52605,44.26119,7491,2,8,2,7,29,3.55,5.0,fr,36871,149,1567680,1,1,Active Shallow Crust,0.0,89.98917,0.0,02/08/7491 +2.52605,44.26119,4295,8,19,13,12,30,3.55,15.0,fr,36872,85,1567681,1,1,Active Shallow Crust,0.0,89.98917,0.0,08/19/4295 +2.52605,44.26119,3465,3,23,12,25,40,4.55,5.0,fr,36873,69,1567803,1,1,Active Shallow Crust,240.0085,57.99738,0.0,03/23/3465 +0.14648,41.40395,9419,9,11,18,33,30,4.35,5.0,fr,36874,188,1568256,1,1,Active Shallow Crust,0.0,89.99003,0.0,09/11/9419 +7.75525,50.0969,2467,6,27,19,23,22,3.55,15.0,fr,36875,49,1568641,1,1,Active Shallow Crust,0.0,89.98706,0.0,06/27/2467 +7.75525,50.0969,8302,9,11,1,52,29,3.55,5.0,fr,36876,166,1568643,1,1,Active Shallow Crust,240.0128,57.99773,0.0,09/11/8302 +7.75525,50.0969,1981,9,2,11,0,54,3.65,5.0,fr,36877,39,1568652,1,1,Active Shallow Crust,0.0,89.98847,0.0,09/02/1981 +7.75525,50.0969,6180,7,5,11,4,8,3.65,15.0,fr,36878,123,1568653,1,1,Active Shallow Crust,0.0,89.98847,0.0,07/05/6180 +7.75525,50.0969,4870,10,5,9,40,2,3.65,27.5,fr,36879,97,1568654,1,1,Active Shallow Crust,0.0,89.98847,0.0,10/05/4870 +7.75525,50.0969,6759,12,25,3,40,8,3.75,5.0,fr,36880,135,1568664,1,2,Active Shallow Crust,0.0,89.98972,0.0,12/25/6759 +7.75525,50.0969,9962,8,24,16,52,1,3.75,5.0,fr,36881,199,1568664,1,2,Active Shallow Crust,0.0,89.98972,0.0,08/24/9962 +7.75525,50.0969,5707,2,24,6,18,5,3.75,5.0,fr,36882,114,1568673,1,2,Active Shallow Crust,128.8959,89.96755,0.0,02/24/5707 +7.75525,50.0969,7091,5,10,4,11,7,3.75,5.0,fr,36883,141,1568673,1,2,Active Shallow Crust,128.8959,89.96755,0.0,05/10/7091 +7.75525,50.0969,4503,3,2,3,8,43,3.85,27.5,fr,36884,90,1568678,1,1,Active Shallow Crust,0.0,89.99084,0.0,03/02/4503 +7.75525,50.0969,8297,1,15,17,56,28,3.85,5.0,fr,36885,165,1568679,1,1,Active Shallow Crust,240.0116,57.99768,0.0,01/15/8297 +7.75525,50.0969,3785,6,18,12,1,55,3.95,5.0,fr,36886,75,1568697,1,1,Active Shallow Crust,128.8998,89.99388,0.0,06/18/3785 +7.75525,50.0969,9464,12,12,12,7,21,4.05,5.0,fr,36887,189,1568700,1,1,Active Shallow Crust,0.0,89.98909,0.0,12/12/9464 +7.75525,50.0969,244,9,10,7,55,8,4.05,15.0,fr,36888,4,1568701,1,1,Active Shallow Crust,0.0,89.98909,0.0,09/10/0244 +7.75525,50.0969,2559,2,7,11,42,41,4.05,27.5,fr,36889,51,1568702,1,1,Active Shallow Crust,0.0,89.98909,0.0,02/07/2559 +7.75525,50.0969,3374,9,15,14,9,50,4.05,5.0,fr,36890,67,1568709,1,1,Active Shallow Crust,128.889,89.99454,0.0,09/15/3374 +7.75525,50.0969,6775,8,15,15,28,41,4.15,5.0,fr,36891,135,1568721,1,2,Active Shallow Crust,128.8976,89.99352,0.0,08/15/6775 +7.75525,50.0969,1547,11,12,18,22,15,4.15,5.0,fr,36892,30,1568721,1,2,Active Shallow Crust,128.8976,89.99352,0.0,11/12/1547 +7.75525,50.0969,4584,9,29,4,26,13,4.25,5.0,fr,36893,91,1568724,1,3,Active Shallow Crust,0.0,89.99133,0.0,09/29/4584 +7.75525,50.0969,7193,5,29,2,46,43,4.25,5.0,fr,36894,143,1568724,1,3,Active Shallow Crust,0.0,89.99133,0.0,05/29/7193 +7.75525,50.0969,2736,2,20,9,36,5,4.25,5.0,fr,36895,54,1568724,1,3,Active Shallow Crust,0.0,89.99133,0.0,02/20/2736 +7.75525,50.0969,6553,10,15,22,15,11,4.35,5.0,fr,36896,131,1568736,1,1,Active Shallow Crust,0.0,89.9897,0.0,10/15/6553 +7.75525,50.0969,8952,10,3,3,42,34,4.35,5.0,fr,36897,179,1568745,1,1,Active Shallow Crust,128.8966,89.9827,0.0,10/03/8952 +7.75525,50.0969,3958,6,16,11,31,26,4.35,27.5,fr,36898,79,1568747,1,1,Active Shallow Crust,128.8966,89.9827,0.0,06/16/3958 +7.75525,50.0969,9222,7,29,0,12,12,4.55,5.0,fr,36899,184,1568760,1,1,Active Shallow Crust,0.0,89.98977,0.0,07/29/9222 +7.75525,50.0969,3185,3,19,4,5,5,4.95,15.0,fr,36900,63,1568809,1,1,Active Shallow Crust,0.0,89.98967,0.0,03/19/3185 +7.75525,50.0969,1741,6,7,4,22,33,4.95,5.0,fr,36901,34,1568811,1,1,Active Shallow Crust,240.0137,58.00467,0.0,06/07/1741 +6.34635,50.79682,772,6,17,14,35,27,3.55,5.0,fr,36902,15,1569120,1,6,Active Shallow Crust,0.0,89.98725,0.0,06/17/0772 +6.34635,50.79682,8329,8,4,6,50,23,3.55,5.0,fr,36903,166,1569120,1,6,Active Shallow Crust,0.0,89.98725,0.0,08/04/8329 +6.34635,50.79682,2702,1,22,16,59,36,3.55,5.0,fr,36904,54,1569120,1,6,Active Shallow Crust,0.0,89.98725,0.0,01/22/2702 +6.34635,50.79682,7314,4,15,23,23,16,3.55,5.0,fr,36905,146,1569120,1,6,Active Shallow Crust,0.0,89.98725,0.0,04/15/7314 +6.34635,50.79682,8238,1,9,22,10,59,3.55,5.0,fr,36906,164,1569120,1,6,Active Shallow Crust,0.0,89.98725,0.0,01/09/8238 +6.34635,50.79682,7863,8,28,7,59,27,3.55,5.0,fr,36907,157,1569120,1,6,Active Shallow Crust,0.0,89.98725,0.0,08/28/7863 +6.34635,50.79682,2918,2,17,15,29,45,3.55,15.0,fr,36908,58,1569121,1,5,Active Shallow Crust,0.0,89.98725,0.0,02/17/2918 +6.34635,50.79682,5814,8,1,0,14,16,3.55,15.0,fr,36909,116,1569121,1,5,Active Shallow Crust,0.0,89.98725,0.0,08/01/5814 +6.34635,50.79682,7359,3,2,10,16,45,3.55,15.0,fr,36910,147,1569121,1,5,Active Shallow Crust,0.0,89.98725,0.0,03/02/7359 +6.34635,50.79682,5209,8,7,18,29,44,3.55,15.0,fr,36911,104,1569121,1,5,Active Shallow Crust,0.0,89.98725,0.0,08/07/5209 +6.34635,50.79682,371,6,23,5,21,18,3.55,15.0,fr,36912,7,1569121,1,5,Active Shallow Crust,0.0,89.98725,0.0,06/23/0371 +6.34635,50.79682,3878,1,31,22,14,15,3.55,27.5,fr,36913,77,1569125,1,1,Active Shallow Crust,240.0119,57.99892,0.0,01/31/3878 +6.34635,50.79682,8198,7,14,18,2,52,3.55,5.0,fr,36914,163,1569126,1,4,Active Shallow Crust,0.0,89.98711,-90.0,07/14/8198 +6.34635,50.79682,926,7,5,8,20,11,3.55,5.0,fr,36915,18,1569126,1,4,Active Shallow Crust,0.0,89.98711,-90.0,07/05/0926 +6.34635,50.79682,7213,6,4,4,52,19,3.55,5.0,fr,36916,144,1569126,1,4,Active Shallow Crust,0.0,89.98711,-90.0,06/04/7213 +6.34635,50.79682,8838,1,13,22,37,6,3.55,5.0,fr,36917,176,1569126,1,4,Active Shallow Crust,0.0,89.98711,-90.0,01/13/8838 +6.34635,50.79682,2504,5,31,13,46,26,3.55,15.0,fr,36918,50,1569127,1,1,Active Shallow Crust,0.0,89.98711,-90.0,05/31/2504 +6.34635,50.79682,9714,1,10,22,50,32,3.55,5.0,fr,36919,194,1569129,1,1,Active Shallow Crust,128.8967,89.99363,0.0,01/10/9714 +6.34635,50.79682,1028,1,13,20,50,31,3.65,5.0,fr,36920,20,1569132,1,3,Active Shallow Crust,0.0,89.98864,0.0,01/13/1028 +6.34635,50.79682,9487,6,22,19,45,51,3.65,5.0,fr,36921,189,1569132,1,3,Active Shallow Crust,0.0,89.98864,0.0,06/22/9487 +6.34635,50.79682,151,8,24,12,8,31,3.65,5.0,fr,36922,3,1569132,1,3,Active Shallow Crust,0.0,89.98864,0.0,08/24/0151 +6.34635,50.79682,2095,1,12,12,45,25,3.65,15.0,fr,36923,41,1569133,1,1,Active Shallow Crust,0.0,89.98864,0.0,01/12/2095 +6.34635,50.79682,8434,2,23,19,43,13,3.65,27.5,fr,36924,168,1569134,1,1,Active Shallow Crust,0.0,89.98864,0.0,02/23/8434 +6.34635,50.79682,6561,5,18,14,52,35,3.65,5.0,fr,36925,131,1569138,1,2,Active Shallow Crust,0.0,89.98851,-90.0,05/18/6561 +6.34635,50.79682,5257,8,11,12,14,34,3.65,5.0,fr,36926,105,1569138,1,2,Active Shallow Crust,0.0,89.98851,-90.0,08/11/5257 +6.34635,50.79682,8886,11,18,6,21,33,3.65,15.0,fr,36927,177,1569139,1,1,Active Shallow Crust,0.0,89.98851,-90.0,11/18/8886 +6.34635,50.79682,9416,4,22,1,35,29,3.65,15.0,fr,36928,188,1569142,1,1,Active Shallow Crust,128.8996,89.96361,0.0,04/22/9416 +6.34635,50.79682,2445,5,12,23,54,23,3.75,5.0,fr,36929,48,1569144,1,2,Active Shallow Crust,0.0,89.98988,0.0,05/12/2445 +6.34635,50.79682,3300,10,1,19,32,19,3.75,5.0,fr,36930,65,1569144,1,2,Active Shallow Crust,0.0,89.98988,0.0,10/01/3300 +6.34635,50.79682,9823,5,21,20,47,33,3.75,5.0,fr,36931,196,1569147,1,2,Active Shallow Crust,240.009,58.01756,0.0,05/21/9823 +6.34635,50.79682,4056,3,16,20,20,59,3.75,5.0,fr,36932,81,1569147,1,2,Active Shallow Crust,240.009,58.01756,0.0,03/16/4056 +6.34635,50.79682,3611,6,14,16,21,4,3.75,15.0,fr,36933,72,1569148,1,1,Active Shallow Crust,240.009,58.01756,0.0,06/14/3611 +6.34635,50.79682,7904,5,1,3,6,58,3.75,15.0,fr,36934,158,1569151,1,2,Active Shallow Crust,0.0,89.98975,-90.0,05/01/7904 +6.34635,50.79682,3896,2,7,22,26,26,3.75,15.0,fr,36935,77,1569151,1,2,Active Shallow Crust,0.0,89.98975,-90.0,02/07/3896 +6.34635,50.79682,4778,10,19,3,4,56,3.85,5.0,fr,36936,95,1569156,1,3,Active Shallow Crust,0.0,89.99097,0.0,10/19/4778 +6.34635,50.79682,5254,4,25,17,23,11,3.85,5.0,fr,36937,105,1569156,1,3,Active Shallow Crust,0.0,89.99097,0.0,04/25/5254 +6.34635,50.79682,6140,11,5,4,52,34,3.85,5.0,fr,36938,122,1569156,1,3,Active Shallow Crust,0.0,89.99097,0.0,11/05/6140 +6.34635,50.79682,8,4,17,6,1,12,3.85,15.0,fr,36939,0,1569157,1,1,Active Shallow Crust,0.0,89.99097,0.0,04/17/0008 +6.34635,50.79682,3470,7,10,3,21,13,3.85,5.0,fr,36940,69,1569159,1,1,Active Shallow Crust,240.0118,57.9975,0.0,07/10/3470 +6.34635,50.79682,9654,7,4,14,5,3,3.85,15.0,fr,36941,193,1569160,1,1,Active Shallow Crust,240.0118,57.9975,0.0,07/04/9654 +6.34635,50.79682,577,9,24,21,25,57,3.85,5.0,fr,36942,11,1569162,1,1,Active Shallow Crust,0.0,89.99087,-90.0,09/24/0577 +6.34635,50.79682,9563,10,14,10,48,24,3.95,15.0,fr,36943,191,1569169,1,1,Active Shallow Crust,0.0,89.99196,0.0,10/14/9563 +6.34635,50.79682,264,12,23,3,57,28,3.95,5.0,fr,36944,5,1569174,1,1,Active Shallow Crust,0.0,89.99187,-90.0,12/23/0264 +6.34635,50.79682,5782,2,6,18,2,11,3.95,15.0,fr,36945,115,1569178,1,1,Active Shallow Crust,128.9005,89.99397,0.0,02/06/5782 +6.34635,50.79682,2520,6,25,15,56,17,4.05,5.0,fr,36946,50,1569180,1,2,Active Shallow Crust,0.0,89.98925,0.0,06/25/2520 +6.34635,50.79682,4594,2,28,9,3,35,4.05,5.0,fr,36947,91,1569180,1,2,Active Shallow Crust,0.0,89.98925,0.0,02/28/4594 +6.34635,50.79682,2339,9,12,10,45,37,4.05,5.0,fr,36948,46,1569189,1,1,Active Shallow Crust,128.8904,89.99284,0.0,09/12/2339 +6.34635,50.79682,3263,2,20,16,55,17,4.15,5.0,fr,36949,65,1569192,1,1,Active Shallow Crust,0.0,89.99042,0.0,02/20/3263 +6.34635,50.79682,4726,6,26,10,47,51,4.15,5.0,fr,36950,94,1569195,1,1,Active Shallow Crust,240.0089,57.99749,0.0,06/26/4726 +6.34635,50.79682,6165,8,12,10,43,53,4.45,5.0,fr,36951,123,1569228,1,1,Active Shallow Crust,0.0,89.99095,0.0,08/12/6165 +6.34635,50.79682,9736,6,30,23,12,35,4.45,15.0,fr,36952,194,1569229,1,1,Active Shallow Crust,0.0,89.99095,0.0,06/30/9736 +6.34635,50.79682,5047,12,1,5,36,11,4.75,5.0,fr,36953,100,1569264,1,1,Active Shallow Crust,0.0,89.99039,0.0,12/01/5047 +6.34635,50.79682,8937,3,30,15,59,31,4.95,5.0,fr,36954,178,1569288,1,1,Active Shallow Crust,0.0,89.98982,0.0,03/30/8937 +6.346349,50.79682,1716,5,12,12,18,17,6.15,6.011322,fr,36955,34,1569441,1,1,Active Shallow Crust,128.8488,89.9898,0.0,05/12/1716 +2.80681,51.80988,1311,4,26,18,33,29,3.55,5.0,fr,36956,26,1569600,1,1,Active Shallow Crust,0.0,89.99065,0.0,04/26/1311 +2.80681,51.80988,4899,1,6,0,44,24,4.55,5.0,fr,36957,97,1569726,1,1,Active Shallow Crust,0.0,89.99003,-90.0,01/06/4899 +-5.20536,48.26297,6814,5,4,19,37,35,3.65,5.0,fr,36958,136,1570092,1,1,Active Shallow Crust,0.0,89.98804,0.0,05/04/6814 +-5.20536,48.26297,7518,10,17,13,48,14,3.65,15.0,fr,36959,150,1570102,1,1,Active Shallow Crust,128.901,89.96295,0.0,10/17/7518 +-5.20536,48.26297,7528,12,10,10,43,31,4.05,5.0,fr,36960,150,1570140,1,1,Active Shallow Crust,0.0,89.98868,0.0,12/10/7528 +-5.20536,48.26297,9508,5,19,19,7,57,4.65,5.0,fr,36961,190,1570212,1,1,Active Shallow Crust,0.0,89.99054,0.0,05/19/9508 +-5.20536,48.26297,803,7,11,7,9,24,4.75,5.0,fr,36962,16,1570224,1,1,Active Shallow Crust,0.0,89.98988,0.0,07/11/0803 +-5.20536,48.26297,5831,12,1,5,20,38,5.65,5.0,fr,36963,116,1570332,1,1,Active Shallow Crust,0.0,89.98982,0.0,12/01/5831 +-1.44274,46.31114,2708,7,5,18,18,52,3.55,5.0,fr,36964,54,1570560,1,3,Active Shallow Crust,0.0,89.98956,0.0,07/05/2708 +-1.44274,46.31114,1383,2,24,20,49,3,3.55,5.0,fr,36965,27,1570560,1,3,Active Shallow Crust,0.0,89.98956,0.0,02/24/1383 +-1.44274,46.31114,5107,4,28,10,10,58,3.55,5.0,fr,36966,102,1570560,1,3,Active Shallow Crust,0.0,89.98956,0.0,04/28/5107 +-1.44274,46.31114,1736,1,14,5,8,41,3.55,27.5,fr,36967,34,1570562,1,1,Active Shallow Crust,0.0,89.98956,0.0,01/14/1736 +-1.44274,46.31114,7774,5,13,10,58,28,3.55,5.0,fr,36968,155,1570569,1,1,Active Shallow Crust,128.8961,89.9939,0.0,05/13/7774 +-1.44274,46.31114,7790,5,2,4,45,13,3.65,5.0,fr,36969,155,1570572,1,3,Active Shallow Crust,0.0,89.99068,0.0,05/02/7790 +-1.44274,46.31114,6871,4,28,1,43,42,3.65,5.0,fr,36970,137,1570572,1,3,Active Shallow Crust,0.0,89.99068,0.0,04/28/6871 +-1.44274,46.31114,2612,10,14,15,19,46,3.65,5.0,fr,36971,52,1570572,1,3,Active Shallow Crust,0.0,89.99068,0.0,10/14/2612 +-1.44274,46.31114,6172,12,6,5,46,33,3.65,15.0,fr,36972,123,1570573,1,1,Active Shallow Crust,0.0,89.99068,0.0,12/06/6172 +-1.44274,46.31114,5770,12,6,13,44,48,3.65,15.0,fr,36973,115,1570582,1,1,Active Shallow Crust,128.9,89.96352,0.0,12/06/5770 +-1.44274,46.31114,9232,7,21,13,37,21,3.75,15.0,fr,36974,184,1570585,1,2,Active Shallow Crust,0.0,89.99032,0.0,07/21/9232 +-1.44274,46.31114,5616,6,23,12,9,31,3.75,15.0,fr,36975,112,1570585,1,2,Active Shallow Crust,0.0,89.99032,0.0,06/23/5616 +-1.44274,46.31114,7080,10,1,7,53,50,3.75,5.0,fr,36976,141,1570593,1,1,Active Shallow Crust,128.8966,89.96736,0.0,10/01/7080 +-1.44274,46.31114,334,3,26,23,0,42,3.85,15.0,fr,36977,6,1570597,1,1,Active Shallow Crust,0.0,89.99014,0.0,03/26/0334 +-1.44274,46.31114,9177,2,20,10,28,28,3.95,15.0,fr,36978,183,1570609,1,1,Active Shallow Crust,0.0,89.99011,0.0,02/20/9177 +-1.44274,46.31114,277,4,11,13,30,6,4.05,27.5,fr,36979,5,1570622,1,1,Active Shallow Crust,0.0,89.9902,0.0,04/11/0277 +-1.44274,46.31114,5867,9,22,21,42,15,4.25,5.0,fr,36980,117,1570644,1,1,Active Shallow Crust,0.0,89.98989,0.0,09/22/5867 +-1.44274,46.31114,7695,10,30,2,25,18,4.85,5.0,fr,36981,153,1570716,1,1,Active Shallow Crust,0.0,89.98986,0.0,10/30/7695 +-1.44274,46.31114,7863,5,4,15,19,19,4.95,15.0,fr,36982,157,1570729,1,1,Active Shallow Crust,0.0,89.98992,0.0,05/04/7863 +5.75333,46.81322,3702,1,6,13,59,33,3.55,5.0,fr,36983,74,1571040,1,1,Active Shallow Crust,0.0,89.9931,0.0,01/06/3702 +5.75333,46.81322,6696,11,2,7,52,34,3.55,15.0,fr,36984,133,1571044,1,1,Active Shallow Crust,240.0114,57.99894,0.0,11/02/6696 +5.75333,46.81322,4460,3,27,16,49,48,3.55,5.0,fr,36985,89,1571049,1,1,Active Shallow Crust,128.8962,89.9931,0.0,03/27/4460 +5.75333,46.81322,9005,9,25,6,5,3,3.75,5.0,fr,36986,180,1571064,1,1,Active Shallow Crust,0.0,89.98904,0.0,09/25/9005 +5.75333,46.81322,4802,7,20,23,47,41,3.75,15.0,fr,36987,96,1571068,1,1,Active Shallow Crust,240.0086,58.01712,0.0,07/20/4802 +5.75333,46.81322,2285,3,29,4,30,49,4.35,5.0,fr,36988,45,1571139,1,1,Active Shallow Crust,240.0083,57.99612,0.0,03/29/2285 +5.75333,46.81322,4153,1,5,19,59,15,4.75,5.0,fr,36989,83,1571184,1,1,Active Shallow Crust,0.0,89.9896,0.0,01/05/4153 +5.75333,46.81322,6056,4,15,4,11,56,5.05,27.5,fr,36990,121,1571222,1,1,Active Shallow Crust,0.0,89.99018,0.0,04/15/6056 +5.75333,46.81322,1081,9,23,16,16,40,5.15,5.0,fr,36991,21,1571238,1,1,Active Shallow Crust,0.0,89.99004,-90.0,09/23/1081 +5.75333,46.81322,8230,12,8,5,47,11,5.45,5.0,fr,36992,164,1571274,1,1,Active Shallow Crust,0.0,89.98981,-90.0,12/08/8230 +7.67756,44.1606,4774,7,17,14,51,45,3.55,5.0,fr,36993,95,1571520,1,2,Active Shallow Crust,0.0,89.99277,0.0,07/17/4774 +7.67756,44.1606,9400,5,23,20,53,37,3.55,5.0,fr,36994,187,1571520,1,2,Active Shallow Crust,0.0,89.99277,0.0,05/23/9400 +7.67756,44.1606,7749,11,10,12,58,27,3.55,15.0,fr,36995,154,1571521,1,2,Active Shallow Crust,0.0,89.99277,0.0,11/10/7749 +7.67756,44.1606,8804,6,9,20,23,46,3.55,15.0,fr,36996,176,1571521,1,2,Active Shallow Crust,0.0,89.99277,0.0,06/09/8804 +7.67756,44.1606,3650,1,2,20,5,56,3.55,5.0,fr,36997,72,1571523,1,1,Active Shallow Crust,240.0124,57.99828,0.0,01/02/3650 +7.67756,44.1606,8774,7,11,8,57,59,3.55,5.0,fr,36998,175,1571526,1,1,Active Shallow Crust,0.0,89.99268,-90.0,07/11/8774 +7.67756,44.1606,9222,12,2,14,54,31,3.55,5.0,fr,36999,184,1571529,1,1,Active Shallow Crust,128.8972,89.99277,0.0,12/02/9222 +7.67756,44.1606,6636,5,27,11,18,58,3.65,5.0,fr,37000,132,1571532,1,6,Active Shallow Crust,0.0,89.98711,0.0,05/27/6636 +7.67756,44.1606,6148,7,16,8,48,31,3.65,5.0,fr,37001,122,1571532,1,6,Active Shallow Crust,0.0,89.98711,0.0,07/16/6148 +7.67756,44.1606,3385,5,4,23,56,46,3.65,5.0,fr,37002,67,1571532,1,6,Active Shallow Crust,0.0,89.98711,0.0,05/04/3385 +7.67756,44.1606,4567,5,28,9,40,32,3.65,5.0,fr,37003,91,1571532,1,6,Active Shallow Crust,0.0,89.98711,0.0,05/28/4567 +7.67756,44.1606,2987,3,17,15,45,28,3.65,5.0,fr,37004,59,1571532,1,6,Active Shallow Crust,0.0,89.98711,0.0,03/17/2987 +7.67756,44.1606,7774,5,9,20,50,22,3.65,5.0,fr,37005,155,1571532,1,6,Active Shallow Crust,0.0,89.98711,0.0,05/09/7774 +7.67756,44.1606,885,8,12,1,33,23,3.65,15.0,fr,37006,17,1571533,1,1,Active Shallow Crust,0.0,89.98711,0.0,08/12/0885 +7.67756,44.1606,7123,8,5,1,57,55,3.65,5.0,fr,37007,142,1571538,1,1,Active Shallow Crust,0.0,89.98695,-90.0,08/05/7123 +7.67756,44.1606,7116,2,3,9,2,34,3.65,5.0,fr,37008,142,1571541,1,1,Active Shallow Crust,128.8999,89.96348,0.0,02/03/7116 +7.67756,44.1606,6661,11,6,7,37,26,3.75,5.0,fr,37009,133,1571544,1,1,Active Shallow Crust,0.0,89.98851,0.0,11/06/6661 +7.67756,44.1606,6986,1,7,15,16,42,3.75,15.0,fr,37010,139,1571545,1,2,Active Shallow Crust,0.0,89.98851,0.0,01/07/6986 +7.67756,44.1606,2052,2,4,2,57,6,3.75,15.0,fr,37011,41,1571545,1,2,Active Shallow Crust,0.0,89.98851,0.0,02/04/2052 +7.67756,44.1606,4043,11,30,16,18,23,3.85,5.0,fr,37012,80,1571556,1,3,Active Shallow Crust,0.0,89.98975,0.0,11/30/4043 +7.67756,44.1606,8364,7,31,17,3,54,3.85,5.0,fr,37013,167,1571556,1,3,Active Shallow Crust,0.0,89.98975,0.0,07/31/8364 +7.67756,44.1606,4539,3,14,11,53,34,3.85,5.0,fr,37014,90,1571556,1,3,Active Shallow Crust,0.0,89.98975,0.0,03/14/4539 +7.67756,44.1606,5717,8,29,21,57,49,3.95,15.0,fr,37015,114,1571569,1,1,Active Shallow Crust,0.0,89.99087,0.0,08/29/5717 +7.67756,44.1606,9751,4,14,22,12,50,3.95,27.5,fr,37016,195,1571570,1,1,Active Shallow Crust,0.0,89.99087,0.0,04/14/9751 +7.67756,44.1606,1485,10,2,9,8,32,4.15,5.0,fr,37017,29,1571592,1,4,Active Shallow Crust,0.0,89.98912,0.0,10/02/1485 +7.67756,44.1606,5125,10,28,11,29,16,4.15,5.0,fr,37018,102,1571592,1,4,Active Shallow Crust,0.0,89.98912,0.0,10/28/5125 +7.67756,44.1606,7823,8,21,5,3,39,4.15,5.0,fr,37019,156,1571592,1,4,Active Shallow Crust,0.0,89.98912,0.0,08/21/7823 +7.67756,44.1606,7669,2,15,16,23,10,4.15,5.0,fr,37020,153,1571592,1,4,Active Shallow Crust,0.0,89.98912,0.0,02/15/7669 +7.67756,44.1606,7132,5,12,11,55,5,4.15,15.0,fr,37021,142,1571596,1,1,Active Shallow Crust,240.0079,57.99721,0.0,05/12/7132 +7.67756,44.1606,7578,6,14,13,14,33,4.25,15.0,fr,37022,151,1571605,1,2,Active Shallow Crust,0.0,89.9903,0.0,06/14/7578 +7.67756,44.1606,2363,1,23,0,54,23,4.25,15.0,fr,37023,47,1571605,1,2,Active Shallow Crust,0.0,89.9903,0.0,01/23/2363 +7.67756,44.1606,3195,1,10,15,8,34,4.35,15.0,fr,37024,63,1571620,1,1,Active Shallow Crust,240.0078,57.99579,0.0,01/10/3195 +7.67756,44.1606,8405,9,26,15,19,46,4.55,5.0,fr,37025,168,1571643,1,1,Active Shallow Crust,240.0085,57.99728,0.0,09/26/8405 +7.67756,44.1606,5272,5,3,5,49,5,4.55,15.0,fr,37026,105,1571647,1,1,Active Shallow Crust,0.0,89.99075,-90.0,05/03/5272 +7.67756,44.1606,1056,4,2,22,30,37,4.65,15.0,fr,37027,21,1571653,1,1,Active Shallow Crust,0.0,89.98981,0.0,04/02/1056 +7.67756,44.1606,8203,1,2,15,31,50,4.85,5.0,fr,37028,164,1571676,1,2,Active Shallow Crust,0.0,89.99028,0.0,01/02/8203 +7.67756,44.1606,8705,3,31,16,6,9,4.85,5.0,fr,37029,174,1571676,1,2,Active Shallow Crust,0.0,89.99028,0.0,03/31/8705 +7.67756,44.1606,2513,4,11,7,35,54,4.95,5.0,fr,37030,50,1571688,1,1,Active Shallow Crust,0.0,89.98989,0.0,04/11/2513 +-1.80234,45.59652,3557,11,12,4,4,18,3.55,27.5,fr,37031,71,1572002,1,1,Active Shallow Crust,0.0,89.98942,0.0,11/12/3557 +4.40768,41.87751,4593,11,15,2,1,4,3.75,5.0,fr,37032,91,1572507,1,1,Active Shallow Crust,240.0074,58.01735,0.0,11/15/4593 +4.40768,41.87751,7230,5,12,5,8,54,3.95,5.0,fr,37033,144,1572528,1,1,Active Shallow Crust,0.0,89.99052,0.0,05/12/7230 +4.40768,41.87751,1915,10,11,20,25,0,4.45,5.0,fr,37034,38,1572591,1,1,Active Shallow Crust,240.004,57.99409,0.0,10/11/1915 +4.31608,52.10859,9664,12,20,21,16,9,3.65,5.0,fr,37035,193,1572972,1,1,Active Shallow Crust,0.0,89.98896,0.0,12/20/9664 +4.31608,52.10859,2273,5,20,16,31,47,3.95,5.0,fr,37036,45,1573008,1,1,Active Shallow Crust,0.0,89.98827,0.0,05/20/2273 +8.32318,49.40881,9625,10,14,21,51,25,3.55,5.0,fr,37037,192,1573440,1,2,Active Shallow Crust,0.0,89.98688,0.0,10/14/9625 +8.32318,49.40881,8326,8,5,14,29,8,3.55,5.0,fr,37038,166,1573440,1,2,Active Shallow Crust,0.0,89.98688,0.0,08/05/8326 +8.32318,49.40881,8640,3,19,12,4,59,3.65,5.0,fr,37039,172,1573452,1,1,Active Shallow Crust,0.0,89.9883,0.0,03/19/8640 +8.32318,49.40881,795,7,27,16,42,28,3.65,5.0,fr,37040,15,1573455,1,1,Active Shallow Crust,240.0024,58.01311,0.0,07/27/0795 +8.32318,49.40881,5160,6,30,11,19,6,3.75,5.0,fr,37041,103,1573464,1,2,Active Shallow Crust,0.0,89.98958,0.0,06/30/5160 +8.32318,49.40881,4272,10,17,20,53,59,3.75,5.0,fr,37042,85,1573464,1,2,Active Shallow Crust,0.0,89.98958,0.0,10/17/4272 +8.32318,49.40881,5223,11,29,14,49,11,3.75,5.0,fr,37043,104,1573467,1,1,Active Shallow Crust,240.0086,58.01722,0.0,11/29/5223 +8.32318,49.40881,1673,10,15,20,47,7,3.75,15.0,fr,37044,33,1573468,1,1,Active Shallow Crust,240.0086,58.01722,0.0,10/15/1673 +8.32318,49.40881,7230,10,31,5,5,18,3.75,5.0,fr,37045,144,1573470,1,1,Active Shallow Crust,0.0,89.98946,-90.0,10/31/7230 +8.32318,49.40881,6190,11,20,9,7,16,3.75,15.0,fr,37046,123,1573471,1,1,Active Shallow Crust,0.0,89.98946,-90.0,11/20/6190 +8.32318,49.40881,9482,6,17,7,31,18,3.95,5.0,fr,37047,189,1573488,1,1,Active Shallow Crust,0.0,89.99172,0.0,06/17/9482 +8.32318,49.40881,4662,10,29,13,11,52,3.95,15.0,fr,37048,93,1573489,1,1,Active Shallow Crust,0.0,89.99172,0.0,10/29/4662 +8.32318,49.40881,3871,9,12,22,25,18,3.95,5.0,fr,37049,77,1573497,1,1,Active Shallow Crust,128.9014,89.99172,0.0,09/12/3871 +8.32318,49.40881,2059,7,8,6,59,32,4.15,15.0,fr,37050,41,1573519,1,1,Active Shallow Crust,0.0,89.98669,-90.0,07/08/2059 +8.32318,49.40881,1181,11,15,23,19,41,4.25,5.0,fr,37051,23,1573524,1,1,Active Shallow Crust,0.0,89.98827,0.0,11/15/1181 +8.32318,49.40881,8530,7,21,14,39,26,4.25,27.5,fr,37052,170,1573529,1,1,Active Shallow Crust,240.0085,57.99358,0.0,07/21/8530 +-2.57452,41.91733,5068,11,2,22,39,22,3.65,5.0,fr,37053,101,1573941,1,1,Active Shallow Crust,128.9017,89.96343,0.0,11/02/5068 +-2.57452,41.91733,3933,1,28,4,12,23,3.75,5.0,fr,37054,78,1573944,1,1,Active Shallow Crust,0.0,89.99106,0.0,01/28/3933 +-2.57452,41.91733,3145,1,21,8,23,39,3.75,15.0,fr,37055,62,1573945,1,1,Active Shallow Crust,0.0,89.99106,0.0,01/21/3145 +-2.57452,41.91733,7751,9,21,19,33,48,3.75,5.0,fr,37056,155,1573947,1,1,Active Shallow Crust,240.0076,58.01757,0.0,09/21/7751 +-2.57452,41.91733,9169,9,17,19,7,53,4.05,5.0,fr,37057,183,1573980,1,1,Active Shallow Crust,0.0,89.98945,0.0,09/17/9169 +-2.57452,41.91733,6193,12,21,9,15,39,4.35,27.5,fr,37058,123,1574027,1,1,Active Shallow Crust,128.8986,89.98259,0.0,12/21/6193 +-2.57452,41.91733,3851,11,24,22,20,41,4.85,5.0,fr,37059,77,1574076,1,1,Active Shallow Crust,0.0,89.98992,0.0,11/24/3851 +-1.06347,41.95944,7745,10,10,16,59,9,4.15,27.5,fr,37060,154,1574954,1,1,Active Shallow Crust,0.0,89.98966,0.0,10/10/7745 +0.60183,41.58866,5891,3,18,18,51,25,3.55,27.5,fr,37061,117,1575362,1,1,Active Shallow Crust,0.0,89.98963,0.0,03/18/5891 +0.60183,41.58866,1490,11,24,10,54,9,3.55,5.0,fr,37062,29,1575363,1,1,Active Shallow Crust,240.0118,57.99807,0.0,11/24/1490 +0.60183,41.58866,5285,11,29,13,57,16,3.75,5.0,fr,37063,105,1575384,1,1,Active Shallow Crust,0.0,89.99026,0.0,11/29/5285 +0.60183,41.58866,8948,8,24,21,21,7,3.75,27.5,fr,37064,178,1575386,1,1,Active Shallow Crust,0.0,89.99026,0.0,08/24/8948 +0.60183,41.58866,3172,9,12,5,30,24,3.75,5.0,fr,37065,63,1575390,1,1,Active Shallow Crust,0.0,89.99015,-90.0,09/12/3172 +0.60183,41.58866,703,1,1,15,20,44,3.85,5.0,fr,37066,14,1575396,1,1,Active Shallow Crust,0.0,89.98999,0.0,01/01/0703 +0.60183,41.58866,7989,12,4,12,10,10,4.35,15.0,fr,37067,159,1575460,1,1,Active Shallow Crust,240.0073,57.99579,0.0,12/04/7989 +0.60183,41.58866,9894,3,5,15,20,14,5.35,27.5,fr,37068,197,1575578,1,1,Active Shallow Crust,0.0,89.99003,0.0,03/05/9894 +3.77835,51.95225,9008,6,26,16,43,53,3.55,5.0,fr,37069,180,1576320,1,1,Active Shallow Crust,0.0,89.99068,0.0,06/26/9008 +3.77835,51.95225,6732,4,24,13,23,58,3.95,5.0,fr,37070,134,1576368,1,1,Active Shallow Crust,0.0,89.9902,0.0,04/24/6732 +3.77835,51.95225,3372,8,3,14,16,49,4.15,5.0,fr,37071,67,1576398,1,1,Active Shallow Crust,0.0,89.99055,-90.0,08/03/3372 +7.8164,50.4758,216,9,1,9,4,2,3.55,5.0,fr,37072,4,1576800,1,4,Active Shallow Crust,0.0,89.98717,0.0,09/01/0216 +7.8164,50.4758,5096,7,7,6,10,48,3.55,5.0,fr,37073,101,1576800,1,4,Active Shallow Crust,0.0,89.98717,0.0,07/07/5096 +7.8164,50.4758,489,11,20,9,7,53,3.55,5.0,fr,37074,9,1576800,1,4,Active Shallow Crust,0.0,89.98717,0.0,11/20/0489 +7.8164,50.4758,5533,1,26,5,5,38,3.55,5.0,fr,37075,110,1576800,1,4,Active Shallow Crust,0.0,89.98717,0.0,01/26/5533 +7.8164,50.4758,3669,2,12,13,8,3,3.55,5.0,fr,37076,73,1576809,1,1,Active Shallow Crust,128.8963,89.99358,0.0,02/12/3669 +7.8164,50.4758,8162,1,21,19,28,59,3.65,5.0,fr,37077,163,1576812,1,3,Active Shallow Crust,0.0,89.98856,0.0,01/21/8162 +7.8164,50.4758,6294,9,6,16,56,21,3.65,5.0,fr,37078,125,1576812,1,3,Active Shallow Crust,0.0,89.98856,0.0,09/06/6294 +7.8164,50.4758,7408,4,20,8,59,39,3.65,5.0,fr,37079,148,1576812,1,3,Active Shallow Crust,0.0,89.98856,0.0,04/20/7408 +7.8164,50.4758,990,10,17,20,38,44,3.65,5.0,fr,37080,19,1576818,1,1,Active Shallow Crust,0.0,89.98843,-90.0,10/17/0990 +7.8164,50.4758,6626,8,11,15,5,18,3.65,5.0,fr,37081,132,1576821,1,1,Active Shallow Crust,128.8999,89.9636,0.0,08/11/6626 +7.8164,50.4758,3037,5,8,6,5,24,3.75,5.0,fr,37082,60,1576824,1,1,Active Shallow Crust,0.0,89.98981,0.0,05/08/3037 +7.8164,50.4758,9156,5,11,3,19,4,3.75,15.0,fr,37083,183,1576825,1,1,Active Shallow Crust,0.0,89.98981,0.0,05/11/9156 +7.8164,50.4758,717,5,13,10,26,53,3.75,5.0,fr,37084,14,1576830,1,1,Active Shallow Crust,0.0,89.98969,-90.0,05/13/0717 +7.8164,50.4758,3272,11,9,1,14,17,3.85,5.0,fr,37085,65,1576836,1,2,Active Shallow Crust,0.0,89.99091,0.0,11/09/3272 +7.8164,50.4758,2392,5,19,7,23,47,3.85,5.0,fr,37086,47,1576836,1,2,Active Shallow Crust,0.0,89.99091,0.0,05/19/2392 +7.8164,50.4758,7620,3,26,13,7,5,3.85,15.0,fr,37087,152,1576843,1,1,Active Shallow Crust,0.0,89.99081,-90.0,03/26/7620 +7.8164,50.4758,2468,6,20,16,33,50,3.85,27.5,fr,37088,49,1576844,1,1,Active Shallow Crust,0.0,89.99081,-90.0,06/20/2468 +7.8164,50.4758,6217,1,5,22,24,46,4.35,5.0,fr,37089,124,1576896,1,1,Active Shallow Crust,0.0,89.98978,0.0,01/05/6217 +7.8164,50.4758,8816,8,10,11,2,16,4.35,15.0,fr,37090,176,1576897,1,1,Active Shallow Crust,0.0,89.98978,0.0,08/10/8816 +7.8164,50.4758,7263,4,13,19,52,17,4.35,15.0,fr,37091,145,1576903,1,1,Active Shallow Crust,0.0,89.98966,-90.0,04/13/7263 +7.8164,50.4758,130,6,25,23,11,59,4.45,5.0,fr,37092,2,1576908,1,1,Active Shallow Crust,0.0,89.99089,0.0,06/25/0130 +7.8164,50.4758,8544,2,5,12,28,37,4.45,27.5,fr,37093,170,1576910,1,1,Active Shallow Crust,0.0,89.99089,0.0,02/05/8544 +7.8164,50.4758,1775,2,23,0,49,8,4.55,5.0,fr,37094,35,1576920,1,1,Active Shallow Crust,0.0,89.98985,0.0,02/23/1775 +7.8164,50.4758,3103,8,3,1,8,50,4.65,5.0,fr,37095,62,1576938,1,1,Active Shallow Crust,0.0,89.99085,-90.0,08/03/3103 +7.8164,50.4758,8192,1,17,9,18,9,4.95,15.0,fr,37096,163,1576972,1,1,Active Shallow Crust,240.0141,58.00468,0.0,01/17/8192 +2.93663,49.36548,7172,8,22,22,41,48,3.55,5.0,fr,37097,143,1577280,1,1,Active Shallow Crust,0.0,89.99015,0.0,08/22/7172 +2.93663,49.36548,9845,10,29,5,24,44,3.65,5.0,fr,37098,196,1577292,1,1,Active Shallow Crust,0.0,89.99122,0.0,10/29/9845 +7.84768,45.36997,6554,10,10,12,51,35,3.55,5.0,fr,37099,131,1577760,1,1,Active Shallow Crust,0.0,89.99291,0.0,10/10/6554 +7.84768,45.36997,3873,1,17,16,33,38,3.65,5.0,fr,37100,77,1577772,1,2,Active Shallow Crust,0.0,89.98737,0.0,01/17/3873 +7.84768,45.36997,9766,9,6,21,28,26,3.65,5.0,fr,37101,195,1577772,1,2,Active Shallow Crust,0.0,89.98737,0.0,09/06/9766 +7.84768,45.36997,1445,1,24,6,58,26,3.65,5.0,fr,37102,28,1577781,1,1,Active Shallow Crust,128.9011,89.9635,0.0,01/24/1445 +7.84768,45.36997,8023,4,14,6,22,36,3.65,27.5,fr,37103,160,1577783,1,1,Active Shallow Crust,128.9011,89.9635,0.0,04/14/8023 +7.84768,45.36997,5777,9,9,7,37,39,3.75,5.0,fr,37104,115,1577784,1,2,Active Shallow Crust,0.0,89.98875,0.0,09/09/5777 +7.84768,45.36997,8085,1,24,13,18,48,3.75,5.0,fr,37105,161,1577784,1,2,Active Shallow Crust,0.0,89.98875,0.0,01/24/8085 +7.84768,45.36997,4325,9,29,21,47,40,3.75,15.0,fr,37106,86,1577791,1,1,Active Shallow Crust,0.0,89.98862,-90.0,09/29/4325 +7.84768,45.36997,4070,8,5,1,14,30,3.75,5.0,fr,37107,81,1577793,1,1,Active Shallow Crust,128.8965,89.96747,0.0,08/05/4070 +7.84768,45.36997,2666,5,23,6,50,59,3.85,15.0,fr,37108,53,1577797,1,1,Active Shallow Crust,0.0,89.98997,0.0,05/23/2666 +7.84768,45.36997,1679,6,22,16,49,30,3.95,15.0,fr,37109,33,1577809,1,1,Active Shallow Crust,0.0,89.99106,0.0,06/22/1679 +7.84768,45.36997,7248,5,25,0,57,23,3.95,5.0,fr,37110,144,1577811,1,1,Active Shallow Crust,240.019,58.00541,0.0,05/25/7248 +7.84768,45.36997,3478,4,20,21,51,40,3.95,15.0,fr,37111,69,1577815,1,1,Active Shallow Crust,0.0,89.99096,-90.0,04/20/3478 +7.84768,45.36997,394,12,8,13,9,24,3.95,15.0,fr,37112,7,1577818,1,1,Active Shallow Crust,128.9012,89.99329,0.0,12/08/0394 +7.84768,45.36997,1404,10,28,21,53,22,4.05,5.0,fr,37113,28,1577820,1,1,Active Shallow Crust,0.0,89.98804,0.0,10/28/1404 +7.84768,45.36997,612,12,27,0,12,11,4.05,5.0,fr,37114,12,1577826,1,1,Active Shallow Crust,0.0,89.99194,-90.0,12/27/0612 +7.84768,45.36997,2216,4,25,7,37,50,4.25,5.0,fr,37115,44,1577847,1,2,Active Shallow Crust,240.0076,57.99427,0.0,04/25/2216 +7.84768,45.36997,6391,10,16,8,4,12,4.25,5.0,fr,37116,127,1577847,1,2,Active Shallow Crust,240.0076,57.99427,0.0,10/16/6391 +7.84768,45.36997,2543,8,7,7,44,15,4.25,5.0,fr,37117,50,1577853,1,1,Active Shallow Crust,128.8942,89.9809,0.0,08/07/2543 +7.84768,45.36997,1288,8,28,16,15,18,4.65,5.0,fr,37118,25,1577901,1,1,Active Shallow Crust,128.8915,89.98666,0.0,08/28/1288 +7.84768,45.36997,7033,9,23,12,27,17,4.75,5.0,fr,37119,140,1577904,1,1,Active Shallow Crust,0.0,89.98932,0.0,09/23/7033 +7.84768,45.36997,292,3,2,7,29,3,4.85,15.0,fr,37120,5,1577923,1,1,Active Shallow Crust,0.0,89.99037,-90.0,03/02/0292 +4.5525,51.53749,7564,10,9,20,8,0,3.75,5.0,fr,37121,151,1578264,1,1,Active Shallow Crust,0.0,89.99004,0.0,10/09/7564 +4.5525,51.53749,9246,8,28,5,10,22,4.35,5.0,fr,37122,184,1578336,1,1,Active Shallow Crust,0.0,89.99001,0.0,08/28/9246 +4.5525,51.53749,5089,3,31,18,24,0,5.65,5.0,fr,37123,101,1578492,1,1,Active Shallow Crust,0.0,89.98993,0.0,03/31/5089 +0.89678,49.80613,6587,2,21,11,36,58,3.55,5.0,fr,37124,131,1578726,1,1,Active Shallow Crust,0.0,89.99013,-90.0,02/21/6587 +0.89678,49.80613,8502,2,10,22,17,20,3.65,5.0,fr,37125,170,1578732,1,1,Active Shallow Crust,0.0,89.98985,0.0,02/10/8502 +0.89678,49.80613,9469,9,19,14,50,33,3.65,5.0,fr,37126,189,1578741,1,1,Active Shallow Crust,128.9001,89.96346,0.0,09/19/9469 +0.89678,49.80613,8931,4,4,8,54,38,3.75,5.0,fr,37127,178,1578744,1,1,Active Shallow Crust,0.0,89.99031,0.0,04/04/8931 +0.89678,49.80613,9523,5,13,13,11,21,3.75,5.0,fr,37128,190,1578747,1,1,Active Shallow Crust,240.0087,58.01769,0.0,05/13/9523 +0.89678,49.80613,7081,2,26,2,1,56,3.95,5.0,fr,37129,141,1578768,1,1,Active Shallow Crust,0.0,89.99025,0.0,02/26/7081 +0.89678,49.80613,7791,9,2,11,0,15,4.15,5.0,fr,37130,155,1578792,1,1,Active Shallow Crust,0.0,89.98981,0.0,09/02/7791 +0.89678,49.80613,1600,7,19,10,16,17,4.35,5.0,fr,37131,31,1578816,1,1,Active Shallow Crust,0.0,89.98996,0.0,07/19/1600 +0.89678,49.80613,3070,3,6,2,23,51,4.95,15.0,fr,37132,61,1578889,1,1,Active Shallow Crust,0.0,89.98994,0.0,03/06/3070 +4.9734,45.54073,3121,6,16,7,36,25,3.65,5.0,fr,37133,62,1579695,1,1,Active Shallow Crust,240.001,58.01342,0.0,06/16/3121 +4.9734,45.54073,3688,7,15,0,35,26,3.65,5.0,fr,37134,73,1579701,1,1,Active Shallow Crust,128.9008,89.96351,0.0,07/15/3688 +4.9734,45.54073,5416,12,14,16,28,40,3.75,15.0,fr,37135,108,1579705,1,3,Active Shallow Crust,0.0,89.98878,0.0,12/14/5416 +4.9734,45.54073,3717,6,13,17,43,29,3.75,15.0,fr,37136,74,1579705,1,3,Active Shallow Crust,0.0,89.98878,0.0,06/13/3717 +4.9734,45.54073,5483,10,28,9,19,23,3.75,15.0,fr,37137,109,1579705,1,3,Active Shallow Crust,0.0,89.98878,0.0,10/28/5483 +4.9734,45.54073,331,11,17,11,50,44,3.75,5.0,fr,37138,6,1579707,1,1,Active Shallow Crust,240.0087,58.01745,0.0,11/17/0331 +4.9734,45.54073,2683,10,18,16,45,38,3.85,5.0,fr,37139,53,1579716,1,1,Active Shallow Crust,0.0,89.99,0.0,10/18/2683 +4.9734,45.54073,1700,6,20,21,59,40,3.85,27.5,fr,37140,33,1579718,1,1,Active Shallow Crust,0.0,89.99,0.0,06/20/1700 +4.9734,45.54073,3100,8,1,9,45,24,3.85,15.0,fr,37141,61,1579720,1,1,Active Shallow Crust,240.0106,57.99696,0.0,08/01/3100 +4.9734,45.54073,3168,8,22,13,7,41,3.95,15.0,fr,37142,63,1579729,1,1,Active Shallow Crust,0.0,89.99109,0.0,08/22/3168 +4.9734,45.54073,8920,5,28,8,7,55,4.05,5.0,fr,37143,178,1579740,1,1,Active Shallow Crust,0.0,89.98808,0.0,05/28/8920 +4.9734,45.54073,7800,4,4,7,54,21,4.05,15.0,fr,37144,155,1579741,1,1,Active Shallow Crust,0.0,89.98808,0.0,04/04/7800 +4.9734,45.54073,8971,11,16,18,47,40,4.05,5.0,fr,37145,179,1579743,1,1,Active Shallow Crust,240.0057,58.00609,0.0,11/16/8971 +4.9734,45.54073,4928,5,18,16,21,25,4.15,5.0,fr,37146,98,1579752,1,1,Active Shallow Crust,0.0,89.98938,0.0,05/18/4928 +4.9734,45.54073,2847,9,10,14,24,22,4.25,5.0,fr,37147,56,1579764,1,1,Active Shallow Crust,0.0,89.99053,0.0,09/10/2847 +4.9734,45.54073,4738,12,20,5,8,25,4.45,5.0,fr,37148,94,1579794,1,1,Active Shallow Crust,0.0,89.98986,-90.0,12/20/4738 +4.9734,45.54073,280,10,28,6,16,17,4.55,5.0,fr,37149,5,1579800,1,1,Active Shallow Crust,0.0,89.99107,0.0,10/28/0280 +4.9734,45.54073,9764,6,8,17,16,10,4.65,5.0,fr,37150,195,1579815,1,1,Active Shallow Crust,240.0107,57.99425,0.0,06/08/9764 +4.9734,45.54073,5641,3,6,15,22,35,4.75,5.0,fr,37151,112,1579824,1,1,Active Shallow Crust,0.0,89.98936,0.0,03/06/5641 +4.9734,45.54073,4405,3,27,10,23,56,5.25,5.0,fr,37152,88,1579893,1,1,Active Shallow Crust,128.8837,89.98713,0.0,03/27/4405 +4.9734,45.54073,1680,1,17,8,41,16,5.35,5.0,fr,37153,33,1579896,1,1,Active Shallow Crust,0.0,89.99022,0.0,01/17/1680 +4.9734,45.54073,7780,5,29,19,2,59,5.35,5.0,fr,37154,155,1579899,1,1,Active Shallow Crust,240.0245,57.99769,0.0,05/29/7780 +4.58892,45.87858,5891,6,5,9,14,54,3.55,5.0,fr,37155,117,1580163,1,1,Active Shallow Crust,240.0127,57.99808,0.0,06/05/5891 +4.58892,45.87858,1880,8,27,12,44,31,3.75,5.0,fr,37156,37,1580184,1,1,Active Shallow Crust,0.0,89.98885,0.0,08/27/1880 +4.58892,45.87858,5434,11,22,6,1,38,3.75,15.0,fr,37157,108,1580194,1,1,Active Shallow Crust,128.8972,89.96748,0.0,11/22/5434 +4.58892,45.87858,4779,9,4,1,36,22,3.85,5.0,fr,37158,95,1580202,1,1,Active Shallow Crust,0.0,89.98994,-90.0,09/04/4779 +4.58892,45.87858,6275,7,4,17,9,42,3.95,5.0,fr,37159,125,1580217,1,1,Active Shallow Crust,128.901,89.99335,0.0,07/04/6275 +4.58892,45.87858,7809,1,19,5,30,49,4.05,15.0,fr,37160,156,1580221,1,1,Active Shallow Crust,0.0,89.98816,0.0,01/19/7809 +4.58892,45.87858,8387,7,29,1,12,18,4.15,15.0,fr,37161,167,1580233,1,1,Active Shallow Crust,0.0,89.98944,0.0,07/29/8387 +4.58892,45.87858,1297,10,26,14,12,54,4.35,27.5,fr,37162,25,1580264,1,1,Active Shallow Crust,0.0,89.98869,-90.0,10/26/1297 +4.58892,45.87858,9024,9,26,10,26,50,4.45,5.0,fr,37163,180,1580268,1,1,Active Shallow Crust,0.0,89.99004,0.0,09/26/9024 +4.58892,45.87858,197,4,22,2,3,14,4.45,5.0,fr,37164,3,1580271,1,1,Active Shallow Crust,240.0055,57.99427,0.0,04/22/0197 +4.58892,45.87858,1801,11,28,8,19,0,4.55,15.0,fr,37165,36,1580287,1,1,Active Shallow Crust,0.0,89.99101,-90.0,11/28/1801 +4.58892,45.87858,4206,12,9,12,17,2,4.65,5.0,fr,37166,84,1580292,1,1,Active Shallow Crust,0.0,89.9901,0.0,12/09/4206 +-2.33159,50.14094,366,7,13,10,47,16,3.55,5.0,fr,37167,7,1580640,1,1,Active Shallow Crust,0.0,89.9903,0.0,07/13/0366 +-2.33159,50.14094,1402,9,7,22,0,16,3.55,5.0,fr,37168,28,1580646,1,1,Active Shallow Crust,0.0,89.9902,-90.0,09/07/1402 +-2.33159,50.14094,2202,1,25,12,42,41,3.85,5.0,fr,37169,44,1580676,1,1,Active Shallow Crust,0.0,89.99085,0.0,01/25/2202 +-2.33159,50.14094,4649,12,28,10,32,58,3.85,15.0,fr,37170,92,1580680,1,1,Active Shallow Crust,240.0117,57.99778,0.0,12/28/4649 +-2.33159,50.14094,7333,10,30,9,46,28,4.05,15.0,fr,37171,146,1580701,1,1,Active Shallow Crust,0.0,89.9891,0.0,10/30/7333 +4.26685,48.27181,1168,9,22,4,42,38,3.65,27.5,fr,37172,23,1581134,1,1,Active Shallow Crust,0.0,89.98804,0.0,09/22/1168 +4.26685,48.27181,7526,4,29,23,56,3,4.15,15.0,fr,37173,150,1581196,1,1,Active Shallow Crust,240.0089,57.99697,0.0,04/29/7526 +4.26685,48.27181,2008,12,18,3,17,4,4.75,5.0,fr,37174,40,1581264,1,1,Active Shallow Crust,0.0,89.98988,0.0,12/18/2008 +4.26685,48.27181,9228,8,22,6,25,53,5.05,5.0,fr,37175,184,1581300,1,1,Active Shallow Crust,0.0,89.99045,0.0,08/22/9228 +4.26685,48.27181,444,3,23,6,15,56,5.25,15.0,fr,37176,8,1581328,1,1,Active Shallow Crust,240.0267,58.00063,0.0,03/23/0444 +-4.25951,45.88856,5,2,18,12,58,41,3.75,15.0,fr,37177,0,1581625,1,1,Active Shallow Crust,0.0,89.98885,0.0,02/18/0005 +6.62834,46.9231,2059,12,30,13,52,29,3.55,5.0,fr,37178,41,1582080,1,3,Active Shallow Crust,0.0,89.99311,0.0,12/30/2059 +6.62834,46.9231,3006,8,17,8,42,9,3.55,5.0,fr,37179,60,1582080,1,3,Active Shallow Crust,0.0,89.99311,0.0,08/17/3006 +6.62834,46.9231,6463,8,29,22,33,37,3.55,5.0,fr,37180,129,1582080,1,3,Active Shallow Crust,0.0,89.99311,0.0,08/29/6463 +6.62834,46.9231,5858,3,22,9,43,12,3.55,15.0,fr,37181,117,1582081,1,1,Active Shallow Crust,0.0,89.99311,0.0,03/22/5858 +6.62834,46.9231,9142,8,31,13,12,2,3.55,5.0,fr,37182,182,1582086,1,2,Active Shallow Crust,0.0,89.99303,-90.0,08/31/9142 +6.62834,46.9231,8458,11,28,1,0,8,3.55,5.0,fr,37183,169,1582086,1,2,Active Shallow Crust,0.0,89.99303,-90.0,11/28/8458 +6.62834,46.9231,3001,11,8,2,50,55,3.65,5.0,fr,37184,60,1582092,1,5,Active Shallow Crust,0.0,89.98772,0.0,11/08/3001 +6.62834,46.9231,5812,6,11,8,43,8,3.65,5.0,fr,37185,116,1582092,1,5,Active Shallow Crust,0.0,89.98772,0.0,06/11/5812 +6.62834,46.9231,4346,10,6,19,58,16,3.65,5.0,fr,37186,86,1582092,1,5,Active Shallow Crust,0.0,89.98772,0.0,10/06/4346 +6.62834,46.9231,2290,9,8,9,37,34,3.65,5.0,fr,37187,45,1582092,1,5,Active Shallow Crust,0.0,89.98772,0.0,09/08/2290 +6.62834,46.9231,4981,10,22,3,7,34,3.65,5.0,fr,37188,99,1582092,1,5,Active Shallow Crust,0.0,89.98772,0.0,10/22/4981 +6.62834,46.9231,4947,6,22,8,36,4,3.65,15.0,fr,37189,98,1582093,1,2,Active Shallow Crust,0.0,89.98772,0.0,06/22/4947 +6.62834,46.9231,2669,8,30,21,27,55,3.65,15.0,fr,37190,53,1582093,1,2,Active Shallow Crust,0.0,89.98772,0.0,08/30/2669 +6.62834,46.9231,9673,2,8,8,47,7,3.65,27.5,fr,37191,193,1582094,1,1,Active Shallow Crust,0.0,89.98772,0.0,02/08/9673 +6.62834,46.9231,6600,1,19,8,56,31,3.65,5.0,fr,37192,131,1582098,1,1,Active Shallow Crust,0.0,89.98758,-90.0,01/19/6600 +6.62834,46.9231,9472,10,15,15,18,16,3.65,15.0,fr,37193,189,1582099,1,1,Active Shallow Crust,0.0,89.98758,-90.0,10/15/9472 +6.62834,46.9231,7393,10,31,2,54,37,3.65,15.0,fr,37194,147,1582102,1,1,Active Shallow Crust,128.8995,89.96353,0.0,10/31/7393 +6.62834,46.9231,6001,2,19,21,24,55,3.75,5.0,fr,37195,120,1582104,1,7,Active Shallow Crust,0.0,89.98906,0.0,02/19/6001 +6.62834,46.9231,5761,12,6,13,20,51,3.75,5.0,fr,37196,115,1582104,1,7,Active Shallow Crust,0.0,89.98906,0.0,12/06/5761 +6.62834,46.9231,9692,4,4,21,37,56,3.75,5.0,fr,37197,193,1582104,1,7,Active Shallow Crust,0.0,89.98906,0.0,04/04/9692 +6.62834,46.9231,66,10,23,19,18,9,3.75,5.0,fr,37198,1,1582104,1,7,Active Shallow Crust,0.0,89.98906,0.0,10/23/0066 +6.62834,46.9231,7098,9,27,12,39,37,3.75,5.0,fr,37199,141,1582104,1,7,Active Shallow Crust,0.0,89.98906,0.0,09/27/7098 +6.62834,46.9231,332,7,7,16,14,38,3.75,5.0,fr,37200,6,1582104,1,7,Active Shallow Crust,0.0,89.98906,0.0,07/07/0332 +6.62834,46.9231,4921,9,25,18,22,18,3.75,5.0,fr,37201,98,1582104,1,7,Active Shallow Crust,0.0,89.98906,0.0,09/25/4921 +6.62834,46.9231,9512,9,2,6,30,34,3.75,15.0,fr,37202,190,1582105,1,2,Active Shallow Crust,0.0,89.98906,0.0,09/02/9512 +6.62834,46.9231,4825,9,27,6,34,18,3.75,15.0,fr,37203,96,1582105,1,2,Active Shallow Crust,0.0,89.98906,0.0,09/27/4825 +6.62834,46.9231,8470,8,2,6,34,12,3.75,5.0,fr,37204,169,1582107,1,4,Active Shallow Crust,240.0085,58.01753,0.0,08/02/8470 +6.62834,46.9231,4470,6,22,15,7,36,3.75,5.0,fr,37205,89,1582107,1,4,Active Shallow Crust,240.0085,58.01753,0.0,06/22/4470 +6.62834,46.9231,3684,11,14,0,11,42,3.75,5.0,fr,37206,73,1582107,1,4,Active Shallow Crust,240.0085,58.01753,0.0,11/14/3684 +6.62834,46.9231,8697,10,9,17,50,46,3.75,5.0,fr,37207,173,1582107,1,4,Active Shallow Crust,240.0085,58.01753,0.0,10/09/8697 +6.62834,46.9231,8759,7,29,13,29,45,3.75,15.0,fr,37208,175,1582108,1,1,Active Shallow Crust,240.0085,58.01753,0.0,07/29/8759 +6.62834,46.9231,1854,2,7,2,59,16,3.75,5.0,fr,37209,37,1582110,1,2,Active Shallow Crust,0.0,89.98893,-90.0,02/07/1854 +6.62834,46.9231,2530,11,22,10,41,34,3.75,5.0,fr,37210,50,1582110,1,2,Active Shallow Crust,0.0,89.98893,-90.0,11/22/2530 +6.62834,46.9231,4805,1,5,1,50,59,3.75,15.0,fr,37211,96,1582111,1,1,Active Shallow Crust,0.0,89.98893,-90.0,01/05/4805 +6.62834,46.9231,9724,5,24,17,17,3,3.85,5.0,fr,37212,194,1582116,1,5,Active Shallow Crust,0.0,89.99025,0.0,05/24/9724 +6.62834,46.9231,6908,8,12,15,56,24,3.85,5.0,fr,37213,138,1582116,1,5,Active Shallow Crust,0.0,89.99025,0.0,08/12/6908 +6.62834,46.9231,6554,3,18,18,44,24,3.85,5.0,fr,37214,131,1582116,1,5,Active Shallow Crust,0.0,89.99025,0.0,03/18/6554 +6.62834,46.9231,5939,7,28,13,30,27,3.85,5.0,fr,37215,118,1582116,1,5,Active Shallow Crust,0.0,89.99025,0.0,07/28/5939 +6.62834,46.9231,5491,5,19,22,30,30,3.85,5.0,fr,37216,109,1582116,1,5,Active Shallow Crust,0.0,89.99025,0.0,05/19/5491 +6.62834,46.9231,4357,12,16,4,45,25,3.85,15.0,fr,37217,87,1582117,1,2,Active Shallow Crust,0.0,89.99025,0.0,12/16/4357 +6.62834,46.9231,1090,10,12,23,46,27,3.85,15.0,fr,37218,21,1582117,1,2,Active Shallow Crust,0.0,89.99025,0.0,10/12/1090 +6.62834,46.9231,873,8,6,1,10,48,3.85,27.5,fr,37219,17,1582118,1,1,Active Shallow Crust,0.0,89.99025,0.0,08/06/0873 +6.62834,46.9231,7369,6,1,20,24,15,3.85,5.0,fr,37220,147,1582122,1,2,Active Shallow Crust,0.0,89.99014,-90.0,06/01/7369 +6.62834,46.9231,663,6,12,16,17,28,3.85,5.0,fr,37221,13,1582122,1,2,Active Shallow Crust,0.0,89.99014,-90.0,06/12/0663 +6.62834,46.9231,1239,7,24,18,15,19,3.85,15.0,fr,37222,24,1582123,1,1,Active Shallow Crust,0.0,89.99014,-90.0,07/24/1239 +6.62834,46.9231,2015,7,30,10,43,9,3.85,5.0,fr,37223,40,1582125,1,1,Active Shallow Crust,128.8951,89.99268,0.0,07/30/2015 +6.62834,46.9231,6655,4,11,20,59,35,3.85,15.0,fr,37224,133,1582126,1,1,Active Shallow Crust,128.8951,89.99268,0.0,04/11/6655 +6.62834,46.9231,3549,10,11,8,49,4,3.95,15.0,fr,37225,70,1582129,1,1,Active Shallow Crust,0.0,89.99131,0.0,10/11/3549 +6.62834,46.9231,1747,12,9,15,6,52,3.95,15.0,fr,37226,34,1582132,1,1,Active Shallow Crust,240.0199,58.00486,0.0,12/09/1747 +6.62834,46.9231,4817,10,2,18,14,8,3.95,15.0,fr,37227,96,1582135,1,2,Active Shallow Crust,0.0,89.99121,-90.0,10/02/4817 +6.62834,46.9231,4985,10,29,10,16,21,3.95,15.0,fr,37228,99,1582135,1,2,Active Shallow Crust,0.0,89.99121,-90.0,10/29/4985 +6.62834,46.9231,3263,8,25,13,50,26,4.05,5.0,fr,37229,65,1582140,1,3,Active Shallow Crust,0.0,89.98838,0.0,08/25/3263 +6.62834,46.9231,3853,6,21,10,56,20,4.05,5.0,fr,37230,77,1582140,1,3,Active Shallow Crust,0.0,89.98838,0.0,06/21/3853 +6.62834,46.9231,6262,11,8,14,55,47,4.05,5.0,fr,37231,125,1582140,1,3,Active Shallow Crust,0.0,89.98838,0.0,11/08/6262 +6.62834,46.9231,7779,8,1,21,11,28,4.05,15.0,fr,37232,155,1582141,1,1,Active Shallow Crust,0.0,89.98838,0.0,08/01/7779 +6.62834,46.9231,4302,7,1,9,10,4,4.15,5.0,fr,37233,86,1582152,1,1,Active Shallow Crust,0.0,89.98965,0.0,07/01/4302 +6.62834,46.9231,1652,1,28,9,9,14,4.15,5.0,fr,37234,33,1582155,1,1,Active Shallow Crust,240.0084,57.99788,0.0,01/28/1652 +6.62834,46.9231,7626,4,12,21,57,4,4.15,5.0,fr,37235,152,1582158,1,1,Active Shallow Crust,0.0,89.98952,-90.0,04/12/7626 +6.62834,46.9231,975,7,4,21,28,10,4.25,5.0,fr,37236,19,1582164,1,4,Active Shallow Crust,0.0,89.99077,0.0,07/04/0975 +6.62834,46.9231,7837,9,1,2,31,3,4.25,5.0,fr,37237,156,1582164,1,4,Active Shallow Crust,0.0,89.99077,0.0,09/01/7837 +6.62834,46.9231,1852,2,12,6,47,59,4.25,5.0,fr,37238,37,1582164,1,4,Active Shallow Crust,0.0,89.99077,0.0,02/12/1852 +6.62834,46.9231,4293,5,14,0,17,12,4.25,5.0,fr,37239,85,1582164,1,4,Active Shallow Crust,0.0,89.99077,0.0,05/14/4293 +6.62834,46.9231,3337,9,1,12,20,8,4.25,5.0,fr,37240,66,1582170,1,1,Active Shallow Crust,0.0,89.99066,-90.0,09/01/3337 +6.62834,46.9231,5016,9,12,18,41,58,4.25,15.0,fr,37241,100,1582171,1,1,Active Shallow Crust,0.0,89.99066,-90.0,09/12/5016 +6.62834,46.9231,181,6,5,2,27,23,4.35,5.0,fr,37242,3,1582176,1,1,Active Shallow Crust,0.0,89.98903,0.0,06/05/0181 +6.62834,46.9231,84,7,2,14,13,14,4.35,27.5,fr,37243,1,1582178,1,1,Active Shallow Crust,0.0,89.98903,0.0,07/02/0084 +6.62834,46.9231,735,9,4,16,27,44,4.35,5.0,fr,37244,14,1582179,1,1,Active Shallow Crust,240.009,57.99591,0.0,09/04/0735 +6.62834,46.9231,7676,10,24,0,47,52,4.45,5.0,fr,37245,153,1582188,1,2,Active Shallow Crust,0.0,89.99023,0.0,10/24/7676 +6.62834,46.9231,8516,8,11,12,50,41,4.45,5.0,fr,37246,170,1582188,1,2,Active Shallow Crust,0.0,89.99023,0.0,08/11/8516 +6.62834,46.9231,4805,10,22,23,46,34,4.55,15.0,fr,37247,96,1582210,1,1,Active Shallow Crust,128.8937,89.98567,0.0,10/22/4805 +6.62834,46.9231,9506,6,18,7,15,35,4.65,5.0,fr,37248,190,1582212,1,1,Active Shallow Crust,0.0,89.9903,0.0,06/18/9506 +6.62834,46.9231,9286,6,19,5,56,42,4.65,15.0,fr,37249,185,1582213,1,2,Active Shallow Crust,0.0,89.9903,0.0,06/19/9286 +6.62834,46.9231,4392,7,18,11,56,38,4.65,15.0,fr,37250,87,1582213,1,2,Active Shallow Crust,0.0,89.9903,0.0,07/18/4392 +6.62834,46.9231,6461,7,20,7,12,59,4.75,5.0,fr,37251,129,1582224,1,2,Active Shallow Crust,0.0,89.98962,0.0,07/20/6461 +6.62834,46.9231,38,2,15,19,29,43,4.75,5.0,fr,37252,0,1582224,1,2,Active Shallow Crust,0.0,89.98962,0.0,02/15/0038 +6.62834,46.9231,6101,9,21,12,47,37,4.75,15.0,fr,37253,122,1582228,1,1,Active Shallow Crust,240.0075,58.00455,0.0,09/21/6101 +6.62834,46.9231,3561,4,28,12,36,33,4.85,27.5,fr,37254,71,1582238,1,1,Active Shallow Crust,0.0,89.99075,0.0,04/28/3561 +6.62834,46.9231,3324,10,30,12,18,13,4.95,5.0,fr,37255,66,1582248,1,2,Active Shallow Crust,0.0,89.99038,0.0,10/30/3324 +6.62834,46.9231,3445,9,15,20,17,28,4.95,5.0,fr,37256,68,1582248,1,2,Active Shallow Crust,0.0,89.99038,0.0,09/15/3445 +6.62834,46.9231,3186,12,9,7,5,10,5.45,5.0,fr,37257,63,1582308,1,1,Active Shallow Crust,0.0,89.98995,0.0,12/09/3186 +3.67031,44.96249,3661,11,23,17,59,21,3.55,5.0,fr,37258,73,1582560,1,1,Active Shallow Crust,0.0,89.9893,0.0,11/23/3661 +3.67031,44.96249,1502,10,8,19,25,5,3.55,15.0,fr,37259,30,1582561,1,1,Active Shallow Crust,0.0,89.9893,0.0,10/08/1502 +3.67031,44.96249,8262,3,23,0,28,11,3.55,5.0,fr,37260,165,1582563,1,1,Active Shallow Crust,240.0118,57.99791,0.0,03/23/8262 +3.67031,44.96249,2921,5,27,7,19,39,3.65,5.0,fr,37261,58,1582572,1,1,Active Shallow Crust,0.0,89.99046,0.0,05/27/2921 +3.67031,44.96249,3111,5,10,15,59,31,3.65,15.0,fr,37262,62,1582573,1,2,Active Shallow Crust,0.0,89.99046,0.0,05/10/3111 +3.67031,44.96249,3661,7,8,11,36,17,3.65,15.0,fr,37263,73,1582573,1,2,Active Shallow Crust,0.0,89.99046,0.0,07/08/3661 +3.67031,44.96249,9470,12,29,1,11,8,3.75,5.0,fr,37264,189,1582584,1,1,Active Shallow Crust,0.0,89.98866,0.0,12/29/9470 +3.67031,44.96249,9588,4,11,15,49,48,3.85,5.0,fr,37265,191,1582596,1,2,Active Shallow Crust,0.0,89.9899,0.0,04/11/9588 +3.67031,44.96249,38,11,21,17,39,16,3.85,5.0,fr,37266,0,1582596,1,2,Active Shallow Crust,0.0,89.9899,0.0,11/21/0038 +3.67031,44.96249,9769,12,19,10,27,20,3.85,15.0,fr,37267,195,1582597,1,1,Active Shallow Crust,0.0,89.9899,0.0,12/19/9769 +3.67031,44.96249,4082,4,12,10,17,41,3.85,5.0,fr,37268,81,1582602,1,1,Active Shallow Crust,0.0,89.98978,-90.0,04/12/4082 +3.67031,44.96249,9964,1,7,4,5,30,3.95,5.0,fr,37269,199,1582617,1,1,Active Shallow Crust,128.901,89.99325,0.0,01/07/9964 +3.67031,44.96249,9575,6,30,10,1,36,4.05,5.0,fr,37270,191,1582620,1,1,Active Shallow Crust,0.0,89.98997,0.0,06/30/9575 +3.67031,44.96249,3943,4,1,16,8,23,4.25,5.0,fr,37271,78,1582644,1,1,Active Shallow Crust,0.0,89.99044,0.0,04/01/3943 +3.67031,44.96249,2296,11,3,11,29,12,4.45,5.0,fr,37272,45,1582668,1,1,Active Shallow Crust,0.0,89.98988,0.0,11/03/2296 +3.67031,44.96249,454,10,23,21,11,43,4.65,5.0,fr,37273,9,1582692,1,1,Active Shallow Crust,0.0,89.98994,0.0,10/23/0454 +4.97286,46.19161,403,10,13,11,4,12,3.55,5.0,fr,37274,8,1583040,1,3,Active Shallow Crust,0.0,89.99302,0.0,10/13/0403 +4.97286,46.19161,8660,5,4,7,54,58,3.55,5.0,fr,37275,173,1583040,1,3,Active Shallow Crust,0.0,89.99302,0.0,05/04/8660 +4.97286,46.19161,2865,11,23,22,38,23,3.55,5.0,fr,37276,57,1583040,1,3,Active Shallow Crust,0.0,89.99302,0.0,11/23/2865 +4.97286,46.19161,111,9,26,9,58,32,3.55,15.0,fr,37277,2,1583044,1,1,Active Shallow Crust,240.0105,57.99892,0.0,09/26/0111 +4.97286,46.19161,1636,4,10,5,48,17,3.55,5.0,fr,37278,32,1583049,1,1,Active Shallow Crust,128.8964,89.99302,0.0,04/10/1636 +4.97286,46.19161,7197,1,6,0,1,23,3.65,5.0,fr,37279,143,1583052,1,1,Active Shallow Crust,0.0,89.98756,0.0,01/06/7197 +4.97286,46.19161,276,11,4,10,37,32,3.85,5.0,fr,37280,5,1583076,1,1,Active Shallow Crust,0.0,89.99011,0.0,11/04/0276 +4.97286,46.19161,5650,9,23,8,7,53,3.85,15.0,fr,37281,112,1583077,1,1,Active Shallow Crust,0.0,89.99011,0.0,09/23/5650 +4.97286,46.19161,4023,5,8,22,48,28,4.25,5.0,fr,37282,80,1583130,1,1,Active Shallow Crust,0.0,89.99054,-90.0,05/08/4023 +4.97286,46.19161,6387,10,14,2,48,25,4.35,27.5,fr,37283,127,1583138,1,1,Active Shallow Crust,0.0,89.98888,0.0,10/14/6387 +4.97286,46.19161,2286,12,24,13,5,4,4.45,15.0,fr,37284,45,1583155,1,1,Active Shallow Crust,0.0,89.98997,-90.0,12/24/2286 +4.97286,46.19161,8959,11,23,12,10,57,4.55,15.0,fr,37285,179,1583161,1,1,Active Shallow Crust,0.0,89.98896,0.0,11/23/8959 +4.97286,46.19161,4856,7,18,19,52,27,4.65,5.0,fr,37286,97,1583181,1,1,Active Shallow Crust,128.8914,89.98719,0.0,07/18/4856 +4.97286,46.19161,360,3,8,2,58,58,5.05,15.0,fr,37287,7,1583221,1,1,Active Shallow Crust,0.0,89.99007,0.0,03/08/0360 +3.9339,47.07635,8599,4,5,19,30,40,3.55,5.0,fr,37288,171,1583520,1,1,Active Shallow Crust,0.0,89.9897,0.0,04/05/8599 +3.9339,47.07635,2107,12,14,16,9,44,3.55,15.0,fr,37289,42,1583524,1,1,Active Shallow Crust,240.0126,57.99847,0.0,12/14/2107 +3.9339,47.07635,1482,10,25,18,36,33,3.95,5.0,fr,37290,29,1583568,1,1,Active Shallow Crust,0.0,89.98917,0.0,10/25/1482 +3.9339,47.07635,7005,9,22,14,47,18,4.75,5.0,fr,37291,140,1583664,1,1,Active Shallow Crust,0.0,89.98965,0.0,09/22/7005 +3.9339,47.07635,2624,10,15,4,21,3,4.75,15.0,fr,37292,52,1583665,1,1,Active Shallow Crust,0.0,89.98965,0.0,10/15/2624 +3.9339,47.07635,9590,1,20,20,32,41,5.75,5.0,fr,37293,191,1583787,1,1,Active Shallow Crust,240.0392,58.00194,0.0,01/20/9590 +0.97139,43.80278,7529,12,25,8,8,5,3.65,5.0,fr,37294,150,1584012,1,1,Active Shallow Crust,0.0,89.99027,0.0,12/25/7529 +0.97139,43.80278,8038,11,17,20,35,56,3.95,5.0,fr,37295,160,1584048,1,1,Active Shallow Crust,0.0,89.99024,0.0,11/17/8038 +-5.8507,47.77827,6233,5,4,16,22,25,3.55,27.5,fr,37296,124,1584491,1,1,Active Shallow Crust,128.8962,89.99323,0.0,05/04/6233 +-2.0357,43.0943,3094,8,27,13,46,54,3.55,5.0,fr,37297,61,1584960,1,3,Active Shallow Crust,0.0,89.98895,0.0,08/27/3094 +-2.0357,43.0943,5824,10,21,4,30,15,3.55,5.0,fr,37298,116,1584960,1,3,Active Shallow Crust,0.0,89.98895,0.0,10/21/5824 +-2.0357,43.0943,7038,7,20,10,20,2,3.55,5.0,fr,37299,140,1584960,1,3,Active Shallow Crust,0.0,89.98895,0.0,07/20/7038 +-2.0357,43.0943,5427,4,13,6,2,26,3.55,15.0,fr,37300,108,1584961,1,1,Active Shallow Crust,0.0,89.98895,0.0,04/13/5427 +-2.0357,43.0943,7066,7,15,11,10,20,3.55,5.0,fr,37301,141,1584963,1,2,Active Shallow Crust,240.0119,57.99859,0.0,07/15/7066 +-2.0357,43.0943,852,1,9,3,29,26,3.55,5.0,fr,37302,17,1584963,1,2,Active Shallow Crust,240.0119,57.99859,0.0,01/09/0852 +-2.0357,43.0943,1008,6,17,22,24,58,3.55,5.0,fr,37303,20,1584966,1,1,Active Shallow Crust,0.0,89.98883,-90.0,06/17/1008 +-2.0357,43.0943,3353,9,3,15,27,24,3.55,5.0,fr,37304,67,1584969,1,1,Active Shallow Crust,128.8966,89.99264,0.0,09/03/3353 +-2.0357,43.0943,5539,3,9,1,44,26,3.55,15.0,fr,37305,110,1584970,1,2,Active Shallow Crust,128.8966,89.99264,0.0,03/09/5539 +-2.0357,43.0943,4872,4,28,15,24,5,3.55,15.0,fr,37306,97,1584970,1,2,Active Shallow Crust,128.8966,89.99264,0.0,04/28/4872 +-2.0357,43.0943,3648,8,23,1,16,37,3.65,5.0,fr,37307,72,1584972,1,4,Active Shallow Crust,0.0,89.99016,0.0,08/23/3648 +-2.0357,43.0943,332,12,21,10,22,25,3.65,5.0,fr,37308,6,1584972,1,4,Active Shallow Crust,0.0,89.99016,0.0,12/21/0332 +-2.0357,43.0943,2555,5,11,22,35,56,3.65,5.0,fr,37309,51,1584972,1,4,Active Shallow Crust,0.0,89.99016,0.0,05/11/2555 +-2.0357,43.0943,6754,5,22,18,44,41,3.65,5.0,fr,37310,135,1584972,1,4,Active Shallow Crust,0.0,89.99016,0.0,05/22/6754 +-2.0357,43.0943,7211,1,20,22,48,18,3.65,27.5,fr,37311,144,1584974,1,1,Active Shallow Crust,0.0,89.99016,0.0,01/20/7211 +-2.0357,43.0943,9854,6,21,18,38,25,3.75,5.0,fr,37312,197,1584984,1,2,Active Shallow Crust,0.0,89.99123,0.0,06/21/9854 +-2.0357,43.0943,8675,2,24,21,59,17,3.75,5.0,fr,37313,173,1584984,1,2,Active Shallow Crust,0.0,89.99123,0.0,02/24/8675 +-2.0357,43.0943,6920,1,5,12,1,39,3.75,15.0,fr,37314,138,1584985,1,1,Active Shallow Crust,0.0,89.99123,0.0,01/05/6920 +-2.0357,43.0943,7561,6,26,22,10,36,3.75,15.0,fr,37315,151,1584991,1,1,Active Shallow Crust,0.0,89.99113,-90.0,06/26/7561 +-2.0357,43.0943,3127,5,18,20,11,44,3.85,5.0,fr,37316,62,1584996,1,1,Active Shallow Crust,0.0,89.98957,0.0,05/18/3127 +-2.0357,43.0943,2423,5,24,6,3,27,3.95,5.0,fr,37317,48,1585011,1,1,Active Shallow Crust,240.019,58.00472,0.0,05/24/2423 +-2.0357,43.0943,243,9,12,12,20,4,3.95,5.0,fr,37318,4,1585014,1,1,Active Shallow Crust,0.0,89.9906,-90.0,09/12/0243 +-2.0357,43.0943,4986,12,19,19,37,14,4.05,5.0,fr,37319,99,1585020,1,2,Active Shallow Crust,0.0,89.98965,0.0,12/19/4986 +-2.0357,43.0943,300,10,5,15,4,11,4.05,5.0,fr,37320,5,1585020,1,2,Active Shallow Crust,0.0,89.98965,0.0,10/05/0300 +-2.0357,43.0943,6493,10,29,16,1,58,4.05,15.0,fr,37321,129,1585021,1,1,Active Shallow Crust,0.0,89.98965,0.0,10/29/6493 +-2.0357,43.0943,2535,3,12,10,58,13,4.25,15.0,fr,37322,50,1585048,1,1,Active Shallow Crust,240.0066,57.9939,0.0,03/12/2535 +-2.0357,43.0943,9274,1,27,13,34,4,4.35,27.5,fr,37323,185,1585064,1,1,Active Shallow Crust,0.0,89.98962,-90.0,01/27/9274 +-2.0357,43.0943,5149,8,6,23,59,29,4.45,27.5,fr,37324,102,1585070,1,1,Active Shallow Crust,0.0,89.98955,0.0,08/06/5149 +-2.0357,43.0943,7539,12,17,1,34,29,4.95,5.0,fr,37325,150,1585128,1,1,Active Shallow Crust,0.0,89.98972,0.0,12/17/7539 +-2.0357,43.0943,8664,5,14,14,25,29,4.95,15.0,fr,37326,173,1585129,1,1,Active Shallow Crust,0.0,89.98972,0.0,05/14/8664 +-2.0357,43.0943,4227,11,3,12,13,14,5.15,5.0,fr,37327,84,1585152,1,1,Active Shallow Crust,0.0,89.99007,0.0,11/03/4227 +5.65475,45.36987,6081,5,1,21,53,43,3.55,5.0,fr,37328,121,1585440,1,3,Active Shallow Crust,0.0,89.99291,0.0,05/01/6081 +5.65475,45.36987,141,8,31,12,40,56,3.55,5.0,fr,37329,2,1585440,1,3,Active Shallow Crust,0.0,89.99291,0.0,08/31/0141 +5.65475,45.36987,8481,8,23,4,22,3,3.55,5.0,fr,37330,169,1585440,1,3,Active Shallow Crust,0.0,89.99291,0.0,08/23/8481 +5.65475,45.36987,7814,11,13,21,32,8,3.55,15.0,fr,37331,156,1585441,1,1,Active Shallow Crust,0.0,89.99291,0.0,11/13/7814 +5.65475,45.36987,7326,2,18,16,12,7,3.55,5.0,fr,37332,146,1585443,1,2,Active Shallow Crust,240.0121,57.99797,0.0,02/18/7326 +5.65475,45.36987,5022,3,10,3,24,24,3.55,5.0,fr,37333,100,1585443,1,2,Active Shallow Crust,240.0121,57.99797,0.0,03/10/5022 +5.65475,45.36987,7514,10,23,5,17,16,3.55,5.0,fr,37334,150,1585449,1,1,Active Shallow Crust,128.8967,89.99292,0.0,10/23/7514 +5.65475,45.36987,2321,10,28,21,59,16,3.55,27.5,fr,37335,46,1585451,1,1,Active Shallow Crust,128.8967,89.99292,0.0,10/28/2321 +5.65475,45.36987,4080,1,31,5,20,38,3.65,5.0,fr,37336,81,1585452,1,2,Active Shallow Crust,0.0,89.98737,0.0,01/31/4080 +5.65475,45.36987,1425,3,30,22,37,29,3.65,5.0,fr,37337,28,1585452,1,2,Active Shallow Crust,0.0,89.98737,0.0,03/30/1425 +5.65475,45.36987,6366,12,19,2,49,23,3.65,15.0,fr,37338,127,1585453,1,1,Active Shallow Crust,0.0,89.98737,0.0,12/19/6366 +5.65475,45.36987,2814,4,19,19,24,17,3.65,27.5,fr,37339,56,1585454,1,1,Active Shallow Crust,0.0,89.98737,0.0,04/19/2814 +5.65475,45.36987,7580,11,17,0,49,45,3.65,27.5,fr,37340,151,1585457,1,1,Active Shallow Crust,240.0005,58.01254,0.0,11/17/7580 +5.65475,45.36987,4552,7,7,15,52,56,3.65,5.0,fr,37341,91,1585458,1,1,Active Shallow Crust,0.0,89.98723,-90.0,07/07/4552 +5.65475,45.36987,4320,9,28,16,11,33,3.75,5.0,fr,37342,86,1585464,1,1,Active Shallow Crust,0.0,89.98875,0.0,09/28/4320 +5.65475,45.36987,6068,12,8,19,30,38,3.75,15.0,fr,37343,121,1585465,1,1,Active Shallow Crust,0.0,89.98875,0.0,12/08/6068 +5.65475,45.36987,5293,5,16,5,11,17,3.75,27.5,fr,37344,105,1585466,1,1,Active Shallow Crust,0.0,89.98875,0.0,05/16/5293 +5.65475,45.36987,683,12,16,11,51,9,3.75,5.0,fr,37345,13,1585470,1,1,Active Shallow Crust,0.0,89.98862,-90.0,12/16/0683 +5.65475,45.36987,3278,1,27,11,30,47,3.85,5.0,fr,37346,65,1585476,1,3,Active Shallow Crust,0.0,89.98997,0.0,01/27/3278 +5.65475,45.36987,1359,2,16,18,2,52,3.85,5.0,fr,37347,27,1585476,1,3,Active Shallow Crust,0.0,89.98997,0.0,02/16/1359 +5.65475,45.36987,7180,10,20,20,33,11,3.85,5.0,fr,37348,143,1585476,1,3,Active Shallow Crust,0.0,89.98997,0.0,10/20/7180 +5.65475,45.36987,9750,2,9,15,57,27,3.85,5.0,fr,37349,194,1585479,1,1,Active Shallow Crust,240.0106,57.99868,0.0,02/09/9750 +5.65475,45.36987,164,9,30,16,26,30,3.95,5.0,fr,37350,3,1585488,1,1,Active Shallow Crust,0.0,89.99106,0.0,09/30/0164 +5.65475,45.36987,1782,10,13,16,46,37,3.95,5.0,fr,37351,35,1585494,1,1,Active Shallow Crust,0.0,89.99096,-90.0,10/13/1782 +5.65475,45.36987,6042,7,4,17,20,42,3.95,5.0,fr,37352,120,1585497,1,1,Active Shallow Crust,128.9012,89.99329,0.0,07/04/6042 +5.65475,45.36987,8108,2,10,14,20,49,4.05,5.0,fr,37353,162,1585500,1,2,Active Shallow Crust,0.0,89.98804,0.0,02/10/8108 +5.65475,45.36987,2213,1,21,5,0,40,4.05,5.0,fr,37354,44,1585500,1,2,Active Shallow Crust,0.0,89.98804,0.0,01/21/2213 +5.65475,45.36987,5572,5,27,8,28,2,4.05,5.0,fr,37355,111,1585503,1,2,Active Shallow Crust,240.0052,58.00598,0.0,05/27/5572 +5.65475,45.36987,7417,12,22,23,14,27,4.05,5.0,fr,37356,148,1585503,1,2,Active Shallow Crust,240.0052,58.00598,0.0,12/22/7417 +5.65475,45.36987,8058,1,9,10,29,39,4.15,5.0,fr,37357,161,1585512,1,1,Active Shallow Crust,0.0,89.98935,0.0,01/09/8058 +5.65475,45.36987,9671,9,25,20,4,27,4.35,5.0,fr,37358,193,1585536,1,2,Active Shallow Crust,0.0,89.98872,0.0,09/25/9671 +5.65475,45.36987,6308,3,24,7,22,0,4.35,5.0,fr,37359,126,1585536,1,2,Active Shallow Crust,0.0,89.98872,0.0,03/24/6308 +5.65475,45.36987,4452,2,26,4,51,19,4.65,5.0,fr,37360,89,1585572,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/26/4452 +5.65475,45.36987,8640,6,28,14,45,51,5.25,5.0,fr,37361,172,1585644,1,1,Active Shallow Crust,0.0,89.98999,0.0,06/28/8640 +5.654752,45.36987,5767,3,18,9,37,41,6.15,5.942511,fr,37362,115,1585758,1,1,Active Shallow Crust,0.0,89.99011,-90.0,03/18/5767 +5.36652,47.78885,8448,5,12,2,1,59,3.65,5.0,fr,37363,168,1585932,1,1,Active Shallow Crust,0.0,89.98792,0.0,05/12/8448 +5.36652,47.78885,3265,10,26,6,3,56,3.75,5.0,fr,37364,65,1585944,1,1,Active Shallow Crust,0.0,89.98923,0.0,10/26/3265 +5.36652,47.78885,1940,8,10,5,57,52,4.15,5.0,fr,37365,38,1585995,1,1,Active Shallow Crust,240.009,57.99752,0.0,08/10/1940 +5.36652,47.78885,5432,10,17,22,1,8,4.45,5.0,fr,37366,108,1586028,1,1,Active Shallow Crust,0.0,89.99039,0.0,10/17/5432 +5.36652,47.78885,6763,2,12,4,25,46,4.45,27.5,fr,37367,135,1586030,1,1,Active Shallow Crust,0.0,89.99039,0.0,02/12/6763 +5.36652,47.78885,2082,12,2,23,32,5,5.15,5.0,fr,37368,41,1586112,1,1,Active Shallow Crust,0.0,89.99033,0.0,12/02/2082 +6.26691,43.46278,1007,5,14,7,46,2,3.55,5.0,fr,37369,20,1586400,1,1,Active Shallow Crust,0.0,89.99268,0.0,05/14/1007 +6.26691,43.46278,6035,11,6,4,27,24,3.75,15.0,fr,37370,120,1586428,1,1,Active Shallow Crust,240.0092,58.01677,0.0,11/06/6035 +6.26691,43.46278,1084,8,11,15,2,33,3.85,5.0,fr,37371,21,1586442,1,1,Active Shallow Crust,0.0,89.98952,-90.0,08/11/1084 +6.26691,43.46278,8788,1,14,11,29,31,4.45,5.0,fr,37372,175,1586508,1,1,Active Shallow Crust,0.0,89.98961,0.0,01/14/8788 +2.191,43.2828,7165,10,23,6,38,6,3.55,27.5,fr,37373,143,1586882,1,1,Active Shallow Crust,0.0,89.98899,0.0,10/23/7165 +2.191,43.2828,942,10,14,3,58,54,3.55,27.5,fr,37374,18,1586888,1,1,Active Shallow Crust,0.0,89.98886,-90.0,10/14/0942 +2.191,43.2828,8573,11,6,22,8,51,3.55,5.0,fr,37375,171,1586889,1,1,Active Shallow Crust,128.8965,89.99449,0.0,11/06/8573 +2.191,43.2828,828,12,1,5,19,58,4.35,5.0,fr,37376,16,1586976,1,1,Active Shallow Crust,0.0,89.98977,0.0,12/01/0828 +1.76822,40.67048,4429,12,17,11,39,23,3.55,27.5,fr,37377,88,1587362,1,1,Active Shallow Crust,0.0,89.99044,0.0,12/17/4429 +1.76822,40.67048,4743,4,17,12,16,50,3.55,5.0,fr,37378,94,1587363,1,1,Active Shallow Crust,240.0117,57.99815,0.0,04/17/4743 +1.76822,40.67048,214,5,17,17,40,37,3.75,15.0,fr,37379,4,1587385,1,1,Active Shallow Crust,0.0,89.98936,0.0,05/17/0214 +1.76822,40.67048,8674,10,10,17,53,7,4.05,15.0,fr,37380,173,1587421,1,1,Active Shallow Crust,0.0,89.99033,0.0,10/10/8674 +1.76822,40.67048,2456,12,31,9,19,53,4.55,5.0,fr,37381,49,1587483,1,1,Active Shallow Crust,240.0077,57.99696,0.0,12/31/2456 +5.54002,47.42832,9160,11,30,6,13,27,3.55,5.0,fr,37382,183,1587840,1,1,Active Shallow Crust,0.0,89.99318,0.0,11/30/9160 +5.54002,47.42832,3998,3,10,6,13,34,3.55,15.0,fr,37383,79,1587841,1,1,Active Shallow Crust,0.0,89.99318,0.0,03/10/3998 +5.54002,47.42832,7333,12,14,2,42,15,3.55,5.0,fr,37384,146,1587846,1,1,Active Shallow Crust,0.0,89.9931,-90.0,12/14/7333 +5.54002,47.42832,8146,2,1,18,2,32,3.65,15.0,fr,37385,162,1587853,1,1,Active Shallow Crust,0.0,89.98784,0.0,02/01/8146 +5.54002,47.42832,2531,12,2,12,57,4,3.75,5.0,fr,37386,50,1587864,1,2,Active Shallow Crust,0.0,89.98916,0.0,12/02/2531 +5.54002,47.42832,5543,3,18,17,9,29,3.75,5.0,fr,37387,110,1587864,1,2,Active Shallow Crust,0.0,89.98916,0.0,03/18/5543 +5.54002,47.42832,741,11,20,15,2,1,3.85,15.0,fr,37388,14,1587877,1,1,Active Shallow Crust,0.0,89.99034,0.0,11/20/0741 +5.54002,47.42832,6119,5,3,9,55,49,3.95,5.0,fr,37389,122,1587888,1,1,Active Shallow Crust,0.0,89.99139,0.0,05/03/6119 +5.54002,47.42832,5100,7,4,14,13,10,3.95,5.0,fr,37390,101,1587891,1,1,Active Shallow Crust,240.0207,58.00468,0.0,07/04/5100 +5.54002,47.42832,1650,2,5,21,59,26,4.15,5.0,fr,37391,32,1587912,1,2,Active Shallow Crust,0.0,89.98975,0.0,02/05/1650 +5.54002,47.42832,7564,7,20,10,55,30,4.15,5.0,fr,37392,151,1587912,1,2,Active Shallow Crust,0.0,89.98975,0.0,07/20/7564 +5.54002,47.42832,6006,6,3,21,8,47,4.15,5.0,fr,37393,120,1587915,1,1,Active Shallow Crust,240.0087,57.99722,0.0,06/03/6006 +5.54002,47.42832,9500,7,3,8,32,45,4.25,15.0,fr,37394,189,1587931,1,1,Active Shallow Crust,0.0,89.99075,-90.0,07/03/9500 +3.01808,41.00129,1423,7,4,5,32,13,3.55,27.5,fr,37395,28,1588808,1,1,Active Shallow Crust,0.0,89.98845,-90.0,07/04/1423 +3.01808,41.00129,442,9,6,7,51,22,3.65,27.5,fr,37396,8,1588814,1,1,Active Shallow Crust,0.0,89.98982,0.0,09/06/0442 +3.01808,41.00129,7781,7,7,20,15,37,3.75,15.0,fr,37397,155,1588825,1,1,Active Shallow Crust,0.0,89.99093,0.0,07/07/7781 +3.01808,41.00129,1166,12,4,11,6,7,3.85,15.0,fr,37398,23,1588837,1,1,Active Shallow Crust,0.0,89.98923,0.0,12/04/1166 +3.01808,41.00129,4597,6,24,23,19,7,4.05,5.0,fr,37399,91,1588860,1,1,Active Shallow Crust,0.0,89.9893,0.0,06/24/4597 +3.01808,41.00129,4863,10,15,17,27,37,4.05,15.0,fr,37400,97,1588870,1,1,Active Shallow Crust,128.8906,89.99465,0.0,10/15/4863 +3.01808,41.00129,7122,8,6,8,43,9,4.25,27.5,fr,37401,142,1588886,1,1,Active Shallow Crust,0.0,89.9898,0.0,08/06/7122 +3.01808,41.00129,3227,7,5,21,29,21,4.25,5.0,fr,37402,64,1588890,1,1,Active Shallow Crust,0.0,89.98969,-90.0,07/05/3227 +4.40767,52.24179,1169,6,8,10,59,55,3.95,5.0,fr,37403,23,1589331,1,1,Active Shallow Crust,240.0209,58.00503,0.0,06/08/1169 +-2.36818,43.61055,3055,4,6,20,59,16,3.55,5.0,fr,37404,61,1589760,1,1,Active Shallow Crust,0.0,89.98905,0.0,04/06/3055 +-2.36818,43.61055,6034,7,17,17,25,12,3.55,5.0,fr,37405,120,1589763,1,1,Active Shallow Crust,240.0126,57.99816,0.0,07/17/6034 +-2.36818,43.61055,7193,12,16,9,47,12,3.95,5.0,fr,37406,143,1589817,1,1,Active Shallow Crust,128.9007,89.99424,0.0,12/16/7193 +-2.36818,43.61055,1163,8,11,0,38,30,4.05,5.0,fr,37407,23,1589820,1,1,Active Shallow Crust,0.0,89.98974,0.0,08/11/1163 +-2.36818,43.61055,5066,8,1,2,51,24,4.55,5.0,fr,37408,101,1589880,1,1,Active Shallow Crust,0.0,89.98961,0.0,08/01/5066 +-2.36818,43.61055,7250,12,14,11,58,49,4.55,15.0,fr,37409,144,1589881,1,1,Active Shallow Crust,0.0,89.98961,0.0,12/14/7250 +3.22725,47.86354,6819,12,13,23,25,50,3.65,15.0,fr,37410,136,1590253,1,1,Active Shallow Crust,0.0,89.99096,0.0,12/13/6819 +3.22725,47.86354,1838,4,10,6,38,38,4.35,5.0,fr,37411,36,1590336,1,1,Active Shallow Crust,0.0,89.99057,0.0,04/10/1838 +5.0576,41.69567,5042,10,10,14,9,40,3.55,15.0,fr,37412,100,1590727,1,1,Active Shallow Crust,0.0,89.99239,-90.0,10/10/5042 +5.0576,41.69567,9207,9,22,22,37,57,4.45,5.0,fr,37413,184,1590834,1,1,Active Shallow Crust,0.0,89.98919,-90.0,09/22/9207 +5.0576,41.69567,5585,3,8,20,17,46,4.65,15.0,fr,37414,111,1590853,1,1,Active Shallow Crust,0.0,89.98939,0.0,03/08/5585 +0.28179,49.11635,960,9,9,13,27,25,3.55,5.0,fr,37415,19,1591200,1,1,Active Shallow Crust,0.0,89.9901,0.0,09/09/0960 +0.28179,49.11635,6369,3,31,12,40,15,3.55,15.0,fr,37416,127,1591204,1,1,Active Shallow Crust,240.0124,57.99828,0.0,03/31/6369 +0.28179,49.11635,5970,7,4,16,7,34,3.65,5.0,fr,37417,119,1591218,1,1,Active Shallow Crust,0.0,89.98996,-90.0,07/04/5970 +0.28179,49.11635,7187,4,11,19,39,49,3.75,5.0,fr,37418,143,1591224,1,1,Active Shallow Crust,0.0,89.98985,0.0,04/11/7187 +0.28179,49.11635,2438,5,23,15,3,51,3.75,5.0,fr,37419,48,1591233,1,1,Active Shallow Crust,128.8963,89.96736,0.0,05/23/2438 +0.28179,49.11635,5937,3,9,4,14,47,3.85,5.0,fr,37420,118,1591236,1,1,Active Shallow Crust,0.0,89.99007,0.0,03/09/5937 +0.28179,49.11635,3419,2,12,8,20,10,3.95,27.5,fr,37421,68,1591250,1,1,Active Shallow Crust,0.0,89.99011,0.0,02/12/3419 +0.28179,49.11635,4680,12,13,20,14,15,3.95,5.0,fr,37422,93,1591251,1,2,Active Shallow Crust,240.0202,58.0051,0.0,12/13/4680 +0.28179,49.11635,8596,8,8,20,50,50,3.95,5.0,fr,37423,171,1591251,1,2,Active Shallow Crust,240.0202,58.0051,0.0,08/08/8596 +0.28179,49.11635,8076,7,28,14,59,24,4.15,5.0,fr,37424,161,1591272,1,1,Active Shallow Crust,0.0,89.99007,0.0,07/28/8076 +0.28179,49.11635,2537,7,13,8,45,52,4.15,15.0,fr,37425,50,1591273,1,1,Active Shallow Crust,0.0,89.99007,0.0,07/13/2537 +0.28179,49.11635,2452,8,24,11,11,36,4.25,15.0,fr,37426,49,1591285,1,1,Active Shallow Crust,0.0,89.99005,0.0,08/24/2452 +0.28179,49.11635,6812,1,1,5,4,22,4.45,5.0,fr,37427,136,1591308,1,1,Active Shallow Crust,0.0,89.99004,0.0,01/01/6812 +0.28179,49.11635,6150,12,26,16,2,50,4.85,5.0,fr,37428,122,1591356,1,1,Active Shallow Crust,0.0,89.99002,0.0,12/26/6150 +2.44475,48.56416,8498,8,22,3,6,19,3.85,5.0,fr,37429,169,1591719,1,1,Active Shallow Crust,240.0113,57.9979,0.0,08/22/8498 +-2.70675,42.87665,6291,10,11,9,9,39,3.65,5.0,fr,37430,125,1592172,1,1,Active Shallow Crust,0.0,89.99012,0.0,10/11/6291 +-2.70675,42.87665,592,12,25,15,1,46,3.65,15.0,fr,37431,11,1592173,1,1,Active Shallow Crust,0.0,89.99012,0.0,12/25/0592 +-2.70675,42.87665,3763,5,31,15,10,20,3.65,5.0,fr,37432,75,1592175,1,1,Active Shallow Crust,240.0006,58.01291,0.0,05/31/3763 +-2.70675,42.87665,6285,8,24,13,33,57,3.65,5.0,fr,37433,125,1592181,1,1,Active Shallow Crust,128.9005,89.96346,0.0,08/24/6285 +-2.70675,42.87665,3967,9,2,18,44,26,3.75,15.0,fr,37434,79,1592185,1,1,Active Shallow Crust,0.0,89.9912,0.0,09/02/3967 +-2.70675,42.87665,9469,2,5,0,20,35,3.75,5.0,fr,37435,189,1592187,1,1,Active Shallow Crust,240.0077,58.01754,0.0,02/05/9469 +-2.70675,42.87665,2893,3,11,6,2,32,3.75,15.0,fr,37436,57,1592194,1,1,Active Shallow Crust,128.8973,89.96743,0.0,03/11/2893 +-2.70675,42.87665,6619,6,4,10,53,0,3.85,15.0,fr,37437,132,1592197,1,1,Active Shallow Crust,0.0,89.98954,0.0,06/04/6619 +-2.70675,42.87665,1383,9,8,15,41,22,3.85,5.0,fr,37438,27,1592205,1,1,Active Shallow Crust,128.8962,89.99346,0.0,09/08/1383 +-2.70675,42.87665,7734,10,25,0,22,45,4.05,15.0,fr,37439,154,1592221,1,1,Active Shallow Crust,0.0,89.98961,0.0,10/25/7734 +-2.70675,42.87665,2275,10,12,21,49,40,4.15,5.0,fr,37440,45,1592238,1,1,Active Shallow Crust,0.0,89.99063,-90.0,10/12/2275 +-2.70675,42.87665,512,8,3,14,11,20,4.35,27.5,fr,37441,10,1592258,1,1,Active Shallow Crust,0.0,89.9897,0.0,08/03/0512 +-2.70675,42.87665,618,6,25,17,57,15,4.95,15.0,fr,37442,12,1592329,1,1,Active Shallow Crust,0.0,89.98968,0.0,06/25/0618 +-1.32802,41.79066,3457,5,31,22,32,47,3.75,15.0,fr,37443,69,1592665,1,1,Active Shallow Crust,0.0,89.98955,0.0,05/31/3457 +-1.32802,41.79066,1886,3,17,1,3,15,5.35,5.0,fr,37444,37,1592865,1,1,Active Shallow Crust,128.8858,89.99194,0.0,03/17/1886 +3.87496,50.83066,2707,12,23,14,5,9,3.55,5.0,fr,37445,54,1593120,1,1,Active Shallow Crust,0.0,89.99045,0.0,12/23/2707 +3.87496,50.83066,5837,4,8,18,48,30,3.55,15.0,fr,37446,116,1593127,1,1,Active Shallow Crust,0.0,89.99033,-90.0,04/08/5837 +3.87496,50.83066,5953,7,6,11,21,43,3.65,27.5,fr,37447,119,1593140,1,1,Active Shallow Crust,0.0,89.99139,-90.0,07/06/5953 +3.87496,50.83066,3827,7,4,11,8,31,3.75,5.0,fr,37448,76,1593147,1,1,Active Shallow Crust,240.0087,58.01793,0.0,07/04/3827 +3.87496,50.83066,3725,3,4,9,31,21,3.85,15.0,fr,37449,74,1593157,1,1,Active Shallow Crust,0.0,89.99098,0.0,03/04/3725 +3.87496,50.83066,3161,4,7,14,0,44,3.85,5.0,fr,37450,63,1593165,1,1,Active Shallow Crust,128.8954,89.99324,0.0,04/07/3161 +3.87496,50.83066,3100,3,31,4,55,42,3.95,5.0,fr,37451,61,1593168,1,1,Active Shallow Crust,0.0,89.98995,0.0,03/31/3100 +3.87496,50.83066,6763,2,10,4,37,19,4.05,5.0,fr,37452,135,1593180,1,2,Active Shallow Crust,0.0,89.98926,0.0,02/10/6763 +3.87496,50.83066,9889,6,6,5,42,4,4.05,5.0,fr,37453,197,1593180,1,2,Active Shallow Crust,0.0,89.98926,0.0,06/06/9889 +3.87496,50.83066,771,7,31,22,57,21,4.05,5.0,fr,37454,15,1593186,1,1,Active Shallow Crust,0.0,89.98913,-90.0,07/31/0771 +3.87496,50.83066,3331,4,4,22,35,32,4.15,15.0,fr,37455,66,1593193,1,1,Active Shallow Crust,0.0,89.99043,0.0,04/04/3331 +3.87496,50.83066,3514,5,21,0,4,26,4.25,5.0,fr,37456,70,1593213,1,1,Active Shallow Crust,128.8934,89.98088,0.0,05/21/3514 +3.87496,50.83066,9052,8,10,5,34,0,4.55,15.0,fr,37457,181,1593244,1,1,Active Shallow Crust,240.0107,57.99753,0.0,08/10/9052 +3.87496,50.83066,6925,9,20,15,54,47,4.75,15.0,fr,37458,138,1593265,1,1,Active Shallow Crust,359.9996,89.9904,0.0,09/20/6925 +1.52531,52.54546,2515,7,17,0,55,44,3.65,5.0,fr,37459,50,1593612,1,1,Active Shallow Crust,0.0,89.99043,0.0,07/17/2515 +1.52531,52.54546,5024,10,20,21,45,18,3.75,5.0,fr,37460,100,1593624,1,1,Active Shallow Crust,0.0,89.99026,0.0,10/20/5024 +1.52531,52.54546,3687,1,6,8,19,16,3.85,5.0,fr,37461,73,1593636,1,1,Active Shallow Crust,0.0,89.99023,0.0,01/06/3687 +3.51193,42.28696,8043,11,11,19,29,43,3.55,15.0,fr,37462,160,1594081,1,1,Active Shallow Crust,0.0,89.98881,0.0,11/11/8043 +3.51193,42.28696,8323,3,18,1,0,29,3.65,27.5,fr,37463,166,1594103,1,1,Active Shallow Crust,128.9016,89.96344,0.0,03/18/8323 +3.51193,42.28696,3918,11,23,19,46,37,3.85,27.5,fr,37464,78,1594118,1,1,Active Shallow Crust,0.0,89.98944,0.0,11/23/3918 +3.51193,42.28696,2567,5,9,22,47,53,3.95,27.5,fr,37465,51,1594139,1,1,Active Shallow Crust,128.9011,89.99412,0.0,05/09/2567 +3.51193,42.28696,4210,3,12,18,50,40,4.05,5.0,fr,37466,84,1594140,1,1,Active Shallow Crust,0.0,89.98951,0.0,03/12/4210 +3.51193,42.28696,513,1,31,21,35,14,4.05,15.0,fr,37467,10,1594141,1,1,Active Shallow Crust,0.0,89.98951,0.0,01/31/0513 +3.51193,42.28696,7908,2,11,1,53,39,4.15,27.5,fr,37468,158,1594154,1,1,Active Shallow Crust,0.0,89.99065,0.0,02/11/7908 +3.51193,42.28696,9440,8,26,1,57,28,4.25,5.0,fr,37469,188,1594164,1,1,Active Shallow Crust,0.0,89.99001,0.0,08/26/9440 +3.51193,42.28696,9944,7,18,0,49,12,4.45,15.0,fr,37470,198,1594189,1,1,Active Shallow Crust,0.0,89.98941,0.0,07/18/9944 +3.40146,45.83524,9589,10,23,9,26,41,3.55,5.0,fr,37471,191,1594560,1,5,Active Shallow Crust,0.0,89.98946,0.0,10/23/9589 +3.40146,45.83524,722,3,2,14,57,37,3.55,5.0,fr,37472,14,1594560,1,5,Active Shallow Crust,0.0,89.98946,0.0,03/02/0722 +3.40146,45.83524,4604,4,16,17,14,50,3.55,5.0,fr,37473,92,1594560,1,5,Active Shallow Crust,0.0,89.98946,0.0,04/16/4604 +3.40146,45.83524,6193,3,9,6,1,38,3.55,5.0,fr,37474,123,1594560,1,5,Active Shallow Crust,0.0,89.98946,0.0,03/09/6193 +3.40146,45.83524,1229,4,16,4,8,12,3.55,5.0,fr,37475,24,1594560,1,5,Active Shallow Crust,0.0,89.98946,0.0,04/16/1229 +3.40146,45.83524,8059,8,12,19,58,27,3.55,5.0,fr,37476,161,1594563,1,1,Active Shallow Crust,240.0127,57.99828,0.0,08/12/8059 +3.40146,45.83524,3076,9,17,6,39,42,3.65,5.0,fr,37477,61,1594575,1,2,Active Shallow Crust,240.0015,58.0127,0.0,09/17/3076 +3.40146,45.83524,394,7,13,11,31,25,3.65,5.0,fr,37478,7,1594575,1,2,Active Shallow Crust,240.0015,58.0127,0.0,07/13/0394 +3.40146,45.83524,3447,9,4,11,4,50,3.75,15.0,fr,37479,68,1594588,1,1,Active Shallow Crust,240.0082,58.01754,0.0,09/04/3447 +3.40146,45.83524,6878,9,13,13,34,4,3.75,5.0,fr,37480,137,1594593,1,1,Active Shallow Crust,128.8972,89.96721,0.0,09/13/6878 +3.40146,45.83524,9903,7,12,8,8,16,3.85,5.0,fr,37481,198,1594596,1,1,Active Shallow Crust,0.0,89.99005,0.0,07/12/9903 +3.40146,45.83524,6205,7,31,13,46,10,3.95,5.0,fr,37482,124,1594608,1,1,Active Shallow Crust,0.0,89.98891,0.0,07/31/6205 +3.40146,45.83524,7174,8,2,7,7,22,3.95,15.0,fr,37483,143,1594609,1,2,Active Shallow Crust,0.0,89.98891,0.0,08/02/7174 +3.40146,45.83524,3467,12,17,15,2,29,3.95,15.0,fr,37484,69,1594609,1,2,Active Shallow Crust,0.0,89.98891,0.0,12/17/3467 +3.40146,45.83524,6978,10,15,1,59,37,4.05,15.0,fr,37485,139,1594621,1,1,Active Shallow Crust,0.0,89.99012,0.0,10/15/6978 +3.40146,45.83524,8540,12,13,16,2,6,4.05,5.0,fr,37486,170,1594623,1,1,Active Shallow Crust,240.0058,58.00597,0.0,12/13/8540 +3.40146,45.83524,2648,12,2,2,2,5,4.05,15.0,fr,37487,52,1594630,1,1,Active Shallow Crust,128.8906,89.99407,0.0,12/02/2648 +3.40146,45.83524,5979,3,26,8,32,25,4.15,5.0,fr,37488,119,1594632,1,1,Active Shallow Crust,0.0,89.98943,0.0,03/26/5979 +3.40146,45.83524,1768,8,6,22,18,36,4.15,5.0,fr,37489,35,1594635,1,1,Active Shallow Crust,240.0084,57.99749,0.0,08/06/1768 +3.40146,45.83524,5994,1,21,5,59,4,4.75,5.0,fr,37490,119,1594704,1,1,Active Shallow Crust,0.0,89.9903,0.0,01/21/5994 +3.40146,45.83524,1826,6,12,2,47,19,4.85,27.5,fr,37491,36,1594718,1,1,Active Shallow Crust,0.0,89.98978,0.0,06/12/1826 +3.40146,45.83524,7436,2,29,2,31,3,6.05,27.5,fr,37492,148,1594862,1,1,Active Shallow Crust,0.0,89.98991,0.0,02/29/7436 +2.03296,46.82919,4324,7,1,13,29,52,3.55,5.0,fr,37493,86,1595040,1,1,Active Shallow Crust,0.0,89.98965,0.0,07/01/4324 +2.03296,46.82919,6432,3,15,0,42,33,3.55,5.0,fr,37494,128,1595046,1,1,Active Shallow Crust,0.0,89.98953,-90.0,03/15/6432 +2.03296,46.82919,1809,11,3,20,14,48,3.65,15.0,fr,37495,36,1595056,1,1,Active Shallow Crust,240.0005,58.01328,0.0,11/03/1809 +2.03296,46.82919,9945,10,28,9,29,57,3.75,5.0,fr,37496,198,1595064,1,1,Active Shallow Crust,0.0,89.98904,0.0,10/28/9945 +2.03296,46.82919,8093,5,10,20,57,59,3.75,27.5,fr,37497,161,1595066,1,1,Active Shallow Crust,0.0,89.98904,0.0,05/10/8093 +2.03296,46.82919,7708,10,6,16,7,19,3.85,5.0,fr,37498,154,1595076,1,1,Active Shallow Crust,0.0,89.99023,0.0,10/06/7708 +2.03296,46.82919,970,2,5,6,3,21,3.85,27.5,fr,37499,19,1595078,1,1,Active Shallow Crust,0.0,89.99023,0.0,02/05/0970 +2.03296,46.82919,1846,1,22,7,2,54,3.85,15.0,fr,37500,36,1595086,1,1,Active Shallow Crust,128.8959,89.9939,0.0,01/22/1846 +2.03296,46.82919,7433,5,8,1,28,34,4.05,15.0,fr,37501,148,1595101,1,1,Active Shallow Crust,0.0,89.9903,0.0,05/08/7433 +2.03296,46.82919,3470,9,6,23,21,15,4.35,5.0,fr,37502,69,1595136,1,1,Active Shallow Crust,0.0,89.99039,0.0,09/06/3470 +2.03296,46.82919,3451,9,11,9,42,47,4.55,5.0,fr,37503,69,1595160,1,1,Active Shallow Crust,0.0,89.99018,0.0,09/11/3451 +2.03296,46.82919,1098,7,14,16,23,14,4.65,5.0,fr,37504,21,1595181,1,1,Active Shallow Crust,128.8911,89.98699,0.0,07/14/1098 +-6.94702,48.61383,7350,9,21,9,54,21,3.75,5.0,fr,37505,146,1595544,1,1,Active Shallow Crust,0.0,89.98941,0.0,09/21/7350 +-6.94702,48.61383,4430,4,27,0,6,4,3.85,5.0,fr,37506,88,1595565,1,1,Active Shallow Crust,128.8956,89.99292,0.0,04/27/4430 +6.48257,50.69056,2959,3,20,14,41,23,3.55,5.0,fr,37507,59,1596000,1,6,Active Shallow Crust,0.0,89.98722,0.0,03/20/2959 +6.48257,50.69056,9509,11,5,12,49,17,3.55,5.0,fr,37508,190,1596000,1,6,Active Shallow Crust,0.0,89.98722,0.0,11/05/9509 +6.48257,50.69056,8598,4,13,11,49,10,3.55,5.0,fr,37509,171,1596000,1,6,Active Shallow Crust,0.0,89.98722,0.0,04/13/8598 +6.48257,50.69056,2173,7,27,10,11,55,3.55,5.0,fr,37510,43,1596000,1,6,Active Shallow Crust,0.0,89.98722,0.0,07/27/2173 +6.48257,50.69056,9097,8,9,9,35,0,3.55,5.0,fr,37511,181,1596000,1,6,Active Shallow Crust,0.0,89.98722,0.0,08/09/9097 +6.48257,50.69056,1624,2,10,11,2,15,3.55,5.0,fr,37512,32,1596000,1,6,Active Shallow Crust,0.0,89.98722,0.0,02/10/1624 +6.48257,50.69056,2074,5,11,13,12,36,3.55,15.0,fr,37513,41,1596001,1,2,Active Shallow Crust,0.0,89.98722,0.0,05/11/2074 +6.48257,50.69056,7189,5,6,20,31,49,3.55,15.0,fr,37514,143,1596001,1,2,Active Shallow Crust,0.0,89.98722,0.0,05/06/7189 +6.48257,50.69056,7132,9,21,7,8,52,3.55,27.5,fr,37515,142,1596002,1,1,Active Shallow Crust,0.0,89.98722,0.0,09/21/7132 +6.48257,50.69056,8821,3,27,6,29,20,3.55,5.0,fr,37516,176,1596006,1,3,Active Shallow Crust,0.0,89.98708,-90.0,03/27/8821 +6.48257,50.69056,880,12,27,14,30,24,3.55,5.0,fr,37517,17,1596006,1,3,Active Shallow Crust,0.0,89.98708,-90.0,12/27/0880 +6.48257,50.69056,4121,6,24,7,42,48,3.55,5.0,fr,37518,82,1596006,1,3,Active Shallow Crust,0.0,89.98708,-90.0,06/24/4121 +6.48257,50.69056,4961,10,5,4,5,9,3.65,5.0,fr,37519,99,1596012,1,6,Active Shallow Crust,0.0,89.98861,0.0,10/05/4961 +6.48257,50.69056,5035,12,5,21,11,1,3.65,5.0,fr,37520,100,1596012,1,6,Active Shallow Crust,0.0,89.98861,0.0,12/05/5035 +6.48257,50.69056,9746,5,16,12,22,45,3.65,5.0,fr,37521,194,1596012,1,6,Active Shallow Crust,0.0,89.98861,0.0,05/16/9746 +6.48257,50.69056,2946,2,24,6,56,25,3.65,5.0,fr,37522,58,1596012,1,6,Active Shallow Crust,0.0,89.98861,0.0,02/24/2946 +6.48257,50.69056,1402,2,25,18,46,46,3.65,5.0,fr,37523,28,1596012,1,6,Active Shallow Crust,0.0,89.98861,0.0,02/25/1402 +6.48257,50.69056,5402,4,8,15,15,7,3.65,5.0,fr,37524,108,1596012,1,6,Active Shallow Crust,0.0,89.98861,0.0,04/08/5402 +6.48257,50.69056,7401,12,15,6,58,9,3.65,15.0,fr,37525,148,1596013,1,1,Active Shallow Crust,0.0,89.98861,0.0,12/15/7401 +6.48257,50.69056,1614,4,15,16,50,5,3.75,5.0,fr,37526,32,1596027,1,1,Active Shallow Crust,240.0095,58.01799,0.0,04/15/1614 +6.48257,50.69056,2181,7,9,5,15,43,3.75,15.0,fr,37527,43,1596028,1,1,Active Shallow Crust,240.0095,58.01799,0.0,07/09/2181 +6.48257,50.69056,8088,12,15,14,20,59,3.85,5.0,fr,37528,161,1596036,1,2,Active Shallow Crust,0.0,89.99095,0.0,12/15/8088 +6.48257,50.69056,9065,1,25,2,35,49,3.85,5.0,fr,37529,181,1596036,1,2,Active Shallow Crust,0.0,89.99095,0.0,01/25/9065 +6.48257,50.69056,5650,11,8,1,57,10,3.85,5.0,fr,37530,112,1596039,1,1,Active Shallow Crust,240.0116,57.99821,0.0,11/08/5650 +6.48257,50.69056,8770,6,14,11,13,12,3.85,5.0,fr,37531,175,1596042,1,1,Active Shallow Crust,0.0,89.99085,-90.0,06/14/8770 +6.48257,50.69056,3513,11,7,13,5,56,3.95,15.0,fr,37532,70,1596049,1,1,Active Shallow Crust,0.0,89.99194,0.0,11/07/3513 +6.48257,50.69056,2885,9,29,20,7,18,3.95,27.5,fr,37533,57,1596050,1,1,Active Shallow Crust,0.0,89.99194,0.0,09/29/2885 +6.48257,50.69056,1927,2,23,18,0,28,3.95,5.0,fr,37534,38,1596051,1,1,Active Shallow Crust,240.0211,58.00457,0.0,02/23/1927 +6.48257,50.69056,7511,12,12,17,19,15,3.95,15.0,fr,37535,150,1596052,1,1,Active Shallow Crust,240.0211,58.00457,0.0,12/12/7511 +6.48257,50.69056,9872,5,1,1,25,51,4.15,15.0,fr,37536,197,1596073,1,1,Active Shallow Crust,0.0,89.99039,0.0,05/01/9872 +6.48257,50.69056,111,10,15,10,7,3,4.15,27.5,fr,37537,2,1596074,1,1,Active Shallow Crust,0.0,89.99039,0.0,10/15/0111 +6.48257,50.69056,6924,11,7,1,5,53,4.25,5.0,fr,37538,138,1596084,1,1,Active Shallow Crust,0.0,89.98859,0.0,11/07/6924 +6.48257,50.69056,7010,10,15,4,5,52,4.25,27.5,fr,37539,140,1596086,1,1,Active Shallow Crust,0.0,89.98859,0.0,10/15/7010 +6.48257,50.69056,1707,4,10,2,40,13,4.25,15.0,fr,37540,34,1596088,1,1,Active Shallow Crust,240.0084,57.99448,0.0,04/10/1707 +6.48257,50.69056,4874,4,6,15,26,0,4.35,15.0,fr,37541,97,1596097,1,1,Active Shallow Crust,0.0,89.98983,0.0,04/06/4874 +6.48257,50.69056,4824,8,16,5,16,32,4.45,5.0,fr,37542,96,1596114,1,1,Active Shallow Crust,0.0,89.99083,-90.0,08/16/4824 +6.48257,50.69056,6245,6,14,9,51,46,4.55,5.0,fr,37543,124,1596120,1,1,Active Shallow Crust,0.0,89.9899,0.0,06/14/6245 +6.48257,50.69056,1759,7,12,2,52,20,4.65,5.0,fr,37544,35,1596132,1,1,Active Shallow Crust,0.0,89.9892,0.0,07/12/1759 +6.48257,50.69056,1188,11,17,13,28,22,4.65,5.0,fr,37545,23,1596141,1,1,Active Shallow Crust,128.8896,89.987,0.0,11/17/1188 +6.48257,50.69056,7316,12,10,11,48,2,4.75,5.0,fr,37546,146,1596150,1,1,Active Shallow Crust,0.0,89.99026,-90.0,12/10/7316 +6.48257,50.69056,5986,9,29,11,20,53,4.85,5.0,fr,37547,119,1596156,1,1,Active Shallow Crust,0.0,89.98999,0.0,09/29/5986 +6.48257,50.69056,8159,3,10,4,3,42,4.95,15.0,fr,37548,163,1596178,1,1,Active Shallow Crust,128.8882,89.98974,0.0,03/10/8159 +8.1506,46.4493,189,11,8,23,1,9,3.55,5.0,fr,37549,3,1596480,1,1,Active Shallow Crust,0.0,89.98611,0.0,11/08/0189 +8.1506,46.4493,7148,2,25,13,36,47,3.55,15.0,fr,37550,142,1596481,1,2,Active Shallow Crust,0.0,89.98611,0.0,02/25/7148 +8.1506,46.4493,3910,3,11,7,19,47,3.55,15.0,fr,37551,78,1596481,1,2,Active Shallow Crust,0.0,89.98611,0.0,03/11/3910 +8.1506,46.4493,9856,8,27,13,0,15,3.55,15.0,fr,37552,197,1596490,1,1,Active Shallow Crust,128.8971,89.99305,0.0,08/27/9856 +8.1506,46.4493,7183,9,18,19,8,27,3.65,5.0,fr,37553,143,1596492,1,2,Active Shallow Crust,0.0,89.98762,0.0,09/18/7183 +8.1506,46.4493,8437,10,13,12,30,25,3.65,5.0,fr,37554,168,1596492,1,2,Active Shallow Crust,0.0,89.98762,0.0,10/13/8437 +8.1506,46.4493,2075,5,20,22,3,17,3.65,5.0,fr,37555,41,1596495,1,1,Active Shallow Crust,240.0027,58.0119,0.0,05/20/2075 +8.1506,46.4493,8229,8,16,0,3,30,3.65,15.0,fr,37556,164,1596496,1,1,Active Shallow Crust,240.0027,58.0119,0.0,08/16/8229 +8.1506,46.4493,7371,11,27,1,44,5,3.75,5.0,fr,37557,147,1596504,1,2,Active Shallow Crust,0.0,89.98896,0.0,11/27/7371 +8.1506,46.4493,4547,7,23,16,6,8,3.75,5.0,fr,37558,90,1596504,1,2,Active Shallow Crust,0.0,89.98896,0.0,07/23/4547 +8.1506,46.4493,8355,12,14,3,38,20,3.75,5.0,fr,37559,167,1596507,1,1,Active Shallow Crust,240.0076,58.01698,0.0,12/14/8355 +8.1506,46.4493,8130,12,12,5,23,39,3.85,5.0,fr,37560,162,1596516,1,2,Active Shallow Crust,0.0,89.99017,0.0,12/12/8130 +8.1506,46.4493,7550,9,13,17,57,36,3.85,5.0,fr,37561,150,1596516,1,2,Active Shallow Crust,0.0,89.99017,0.0,09/13/7550 +8.1506,46.4493,7278,4,27,17,14,40,3.85,5.0,fr,37562,145,1596519,1,1,Active Shallow Crust,240.0125,57.99648,0.0,04/27/7278 +8.1506,46.4493,562,10,13,22,16,54,3.85,15.0,fr,37563,11,1596520,1,1,Active Shallow Crust,240.0125,57.99648,0.0,10/13/0562 +8.1506,46.4493,7343,3,16,23,51,33,3.85,5.0,fr,37564,146,1596522,1,1,Active Shallow Crust,0.0,89.99005,-90.0,03/16/7343 +8.1506,46.4493,1538,9,1,17,33,15,4.05,5.0,fr,37565,30,1596540,1,1,Active Shallow Crust,0.0,89.99219,0.0,09/01/1538 +8.1506,46.4493,9913,8,24,7,30,21,4.05,5.0,fr,37566,198,1596543,1,1,Active Shallow Crust,240.0052,58.00655,0.0,08/24/9913 +8.1506,46.4493,8942,7,12,3,8,48,4.15,5.0,fr,37567,178,1596552,1,1,Active Shallow Crust,0.0,89.99303,0.0,07/12/8942 +8.1506,46.4493,7750,1,9,5,27,47,4.25,5.0,fr,37568,154,1596564,1,1,Active Shallow Crust,0.0,89.98759,0.0,01/09/7750 +8.1506,46.4493,1934,2,13,17,49,16,4.25,27.5,fr,37569,38,1596566,1,1,Active Shallow Crust,0.0,89.98759,0.0,02/13/1934 +8.1506,46.4493,8445,9,13,14,4,15,4.35,15.0,fr,37570,168,1596577,1,1,Active Shallow Crust,0.0,89.98894,0.0,09/13/8445 +8.1506,46.4493,220,5,8,7,38,27,4.95,27.5,fr,37571,4,1596650,1,1,Active Shallow Crust,0.0,89.98891,0.0,05/08/0220 +8.1506,46.4493,9462,1,18,19,32,41,5.45,5.0,fr,37572,189,1596708,1,1,Active Shallow Crust,0.0,89.99064,0.0,01/18/9462 +6.15948,47.76406,2089,9,24,12,30,17,3.55,5.0,fr,37573,41,1596960,1,1,Active Shallow Crust,0.0,89.99323,0.0,09/24/2089 +6.15948,47.76406,6475,1,24,2,2,50,3.55,15.0,fr,37574,129,1596961,1,1,Active Shallow Crust,0.0,89.99323,0.0,01/24/6475 +6.15948,47.76406,3414,8,18,16,51,21,3.55,5.0,fr,37575,68,1596966,1,1,Active Shallow Crust,0.0,89.99314,-90.0,08/18/3414 +6.15948,47.76406,3426,5,27,4,2,47,3.65,5.0,fr,37576,68,1596972,1,1,Active Shallow Crust,0.0,89.98792,0.0,05/27/3426 +6.15948,47.76406,1784,11,9,10,37,49,3.65,27.5,fr,37577,35,1596974,1,1,Active Shallow Crust,0.0,89.98792,0.0,11/09/1784 +6.15948,47.76406,3191,12,1,15,0,27,3.75,15.0,fr,37578,63,1596991,1,1,Active Shallow Crust,0.0,89.98911,-90.0,12/01/3191 +6.15948,47.76406,4791,6,7,2,12,34,3.75,15.0,fr,37579,95,1596994,1,1,Active Shallow Crust,128.8969,89.96696,0.0,06/07/4791 +6.15948,47.76406,7411,1,13,19,8,35,3.85,5.0,fr,37580,148,1596996,1,1,Active Shallow Crust,0.0,89.9904,0.0,01/13/7411 +6.15948,47.76406,9545,2,15,17,4,1,3.95,5.0,fr,37581,190,1597008,1,1,Active Shallow Crust,0.0,89.99145,0.0,02/15/9545 +6.15948,47.76406,8696,7,2,11,6,38,4.05,15.0,fr,37582,173,1597021,1,1,Active Shallow Crust,0.0,89.98856,0.0,07/02/8696 +2.37991,41.17307,874,2,24,19,48,44,3.55,5.0,fr,37583,17,1597440,1,1,Active Shallow Crust,0.0,89.98862,0.0,02/24/0874 +2.37991,41.17307,690,5,8,14,46,22,3.55,5.0,fr,37584,13,1597446,1,1,Active Shallow Crust,0.0,89.98848,-90.0,05/08/0690 +2.37991,41.17307,9636,11,20,3,6,37,3.65,15.0,fr,37585,192,1597453,1,1,Active Shallow Crust,0.0,89.98985,0.0,11/20/9636 +2.37991,41.17307,8301,9,24,12,1,40,3.65,27.5,fr,37586,166,1597454,1,1,Active Shallow Crust,0.0,89.98985,0.0,09/24/8301 +2.37991,41.17307,4496,5,5,20,58,48,3.65,15.0,fr,37587,89,1597462,1,1,Active Shallow Crust,128.9004,89.96342,0.0,05/05/4496 +2.37991,41.17307,3601,12,9,7,49,48,3.75,5.0,fr,37588,72,1597464,1,1,Active Shallow Crust,0.0,89.99096,0.0,12/09/3601 +2.37991,41.17307,2137,3,17,23,0,28,3.75,15.0,fr,37589,42,1597465,1,1,Active Shallow Crust,0.0,89.99096,0.0,03/17/2137 +2.37991,41.17307,8847,11,29,20,1,33,3.75,5.0,fr,37590,176,1597470,1,1,Active Shallow Crust,0.0,89.99085,-90.0,11/29/8847 +2.37991,41.17307,5963,6,21,13,38,34,3.85,5.0,fr,37591,119,1597476,1,1,Active Shallow Crust,0.0,89.98925,0.0,06/21/5963 +2.37991,41.17307,9767,7,14,3,29,51,3.85,5.0,fr,37592,195,1597485,1,1,Active Shallow Crust,128.8959,89.99329,0.0,07/14/9767 +2.37991,41.17307,1777,10,29,22,56,0,3.85,15.0,fr,37593,35,1597486,1,1,Active Shallow Crust,128.8959,89.99329,0.0,10/29/1777 +2.37991,41.17307,7852,11,9,9,39,15,3.95,5.0,fr,37594,157,1597488,1,2,Active Shallow Crust,0.0,89.99043,0.0,11/09/7852 +2.37991,41.17307,4247,10,15,18,24,32,3.95,5.0,fr,37595,84,1597488,1,2,Active Shallow Crust,0.0,89.99043,0.0,10/15/4247 +2.37991,41.17307,3557,11,22,0,16,25,3.95,5.0,fr,37596,71,1597491,1,1,Active Shallow Crust,240.0185,58.00492,0.0,11/22/3557 +2.37991,41.17307,850,8,20,2,36,16,4.05,15.0,fr,37597,16,1597501,1,1,Active Shallow Crust,0.0,89.98933,0.0,08/20/0850 +2.37991,41.17307,5127,3,1,22,4,41,4.05,27.5,fr,37598,102,1597505,1,1,Active Shallow Crust,240.0053,58.00526,0.0,03/01/5127 +2.37991,41.17307,5144,11,13,5,59,42,4.35,27.5,fr,37599,102,1597544,1,1,Active Shallow Crust,0.0,89.9893,-90.0,11/13/5144 +2.37991,41.17307,5142,4,10,11,4,44,5.45,27.5,fr,37600,102,1597670,1,1,Active Shallow Crust,0.0,89.9902,0.0,04/10/5142 +6.89574,48.87027,6490,10,31,0,38,5,3.55,5.0,fr,37601,129,1597920,1,2,Active Shallow Crust,0.0,89.98673,0.0,10/31/6490 +6.89574,48.87027,7769,4,12,11,22,11,3.55,5.0,fr,37602,155,1597920,1,2,Active Shallow Crust,0.0,89.98673,0.0,04/12/7769 +6.89574,48.87027,5865,2,14,17,58,37,3.65,5.0,fr,37603,117,1597932,1,1,Active Shallow Crust,0.0,89.98817,0.0,02/14/5865 +6.89574,48.87027,1564,7,6,18,39,23,3.75,15.0,fr,37604,31,1597945,1,1,Active Shallow Crust,0.0,89.98946,0.0,07/06/1564 +6.89574,48.87027,41,12,11,9,16,9,3.95,5.0,fr,37605,0,1597968,1,1,Active Shallow Crust,0.0,89.99163,0.0,12/11/0041 +6.89574,48.87027,3972,4,30,4,16,57,4.05,5.0,fr,37606,79,1597980,1,1,Active Shallow Crust,0.0,89.98881,0.0,04/30/3972 +6.89574,48.87027,4368,4,23,8,53,40,4.05,5.0,fr,37607,87,1597989,1,1,Active Shallow Crust,128.8908,89.99254,0.0,04/23/4368 +6.89574,48.87027,2223,12,7,7,44,35,4.25,15.0,fr,37608,44,1598005,1,1,Active Shallow Crust,0.0,89.99111,0.0,12/07/2223 +1.52463,40.90048,9745,8,25,0,4,59,3.55,5.0,fr,37609,194,1598880,1,1,Active Shallow Crust,0.0,89.99047,0.0,08/25/9745 +1.52463,40.90048,881,6,20,23,47,0,3.55,15.0,fr,37610,17,1598881,1,1,Active Shallow Crust,0.0,89.99047,0.0,06/20/0881 +1.52463,40.90048,9539,6,4,15,54,32,3.55,5.0,fr,37611,190,1598883,1,2,Active Shallow Crust,240.0117,57.99819,0.0,06/04/9539 +1.52463,40.90048,2061,11,21,13,26,40,3.55,5.0,fr,37612,41,1598883,1,2,Active Shallow Crust,240.0117,57.99819,0.0,11/21/2061 +1.52463,40.90048,4375,9,12,19,38,30,3.65,15.0,fr,37613,87,1598893,1,1,Active Shallow Crust,0.0,89.98981,0.0,09/12/4375 +1.52463,40.90048,3102,4,30,4,15,26,3.75,5.0,fr,37614,62,1598904,1,2,Active Shallow Crust,0.0,89.9894,0.0,04/30/3102 +1.52463,40.90048,4748,9,25,20,45,35,3.75,5.0,fr,37615,94,1598904,1,2,Active Shallow Crust,0.0,89.9894,0.0,09/25/4748 +1.52463,40.90048,9464,1,31,13,56,57,3.85,5.0,fr,37616,189,1598916,1,2,Active Shallow Crust,0.0,89.99055,0.0,01/31/9464 +1.52463,40.90048,8958,11,2,18,1,47,3.85,5.0,fr,37617,179,1598916,1,2,Active Shallow Crust,0.0,89.99055,0.0,11/02/8958 +1.52463,40.90048,7701,9,20,7,41,19,4.15,5.0,fr,37618,154,1598952,1,2,Active Shallow Crust,0.0,89.99045,0.0,09/20/7701 +1.52463,40.90048,2691,1,14,2,42,26,4.15,5.0,fr,37619,53,1598952,1,2,Active Shallow Crust,0.0,89.99045,0.0,01/14/2691 +1.52463,40.90048,81,7,9,16,38,38,4.25,15.0,fr,37620,1,1598965,1,1,Active Shallow Crust,0.0,89.98978,0.0,07/09/0081 +1.52463,40.90048,1066,6,22,13,4,25,4.45,5.0,fr,37621,21,1598991,1,1,Active Shallow Crust,240.004,57.99437,0.0,06/22/1066 +1.41544,45.7239,2602,7,14,4,58,37,3.55,5.0,fr,37622,52,1599360,1,2,Active Shallow Crust,0.0,89.98944,0.0,07/14/2602 +1.41544,45.7239,5577,9,6,23,10,29,3.55,5.0,fr,37623,111,1599360,1,2,Active Shallow Crust,0.0,89.98944,0.0,09/06/5577 +1.41544,45.7239,9619,10,23,21,1,11,3.55,5.0,fr,37624,192,1599363,1,1,Active Shallow Crust,240.0122,57.99809,0.0,10/23/9619 +1.41544,45.7239,1281,4,5,20,48,30,3.75,27.5,fr,37625,25,1599386,1,1,Active Shallow Crust,0.0,89.99021,0.0,04/05/1281 +1.41544,45.7239,2079,12,20,0,30,28,4.25,5.0,fr,37626,41,1599444,1,1,Active Shallow Crust,0.0,89.98978,0.0,12/20/2079 +1.41544,45.7239,9004,9,27,14,0,11,4.25,15.0,fr,37627,180,1599445,1,1,Active Shallow Crust,0.0,89.98978,0.0,09/27/9004 +-0.21967,45.60128,7929,3,19,18,15,45,3.55,5.0,fr,37628,158,1599840,1,1,Active Shallow Crust,0.0,89.99008,0.0,03/19/7929 +-0.21967,45.60128,3148,10,18,15,32,23,3.65,5.0,fr,37629,62,1599852,1,1,Active Shallow Crust,0.0,89.98997,0.0,10/18/3148 +-0.21967,45.60128,3651,11,7,14,17,49,3.75,5.0,fr,37630,73,1599864,1,1,Active Shallow Crust,0.0,89.99002,0.0,11/07/3651 +-0.21967,45.60128,9363,11,21,2,27,49,3.75,15.0,fr,37631,187,1599865,1,1,Active Shallow Crust,0.0,89.99002,0.0,11/21/9363 +-0.21967,45.60128,9135,9,1,23,33,21,3.75,5.0,fr,37632,182,1599867,1,1,Active Shallow Crust,240.0083,58.01756,0.0,09/01/9135 +-0.21967,45.60128,800,1,20,8,47,1,3.75,15.0,fr,37633,15,1599868,1,1,Active Shallow Crust,240.0083,58.01756,0.0,01/20/0800 +-0.21967,45.60128,969,5,9,17,22,55,3.85,5.0,fr,37634,19,1599879,1,1,Active Shallow Crust,240.0107,57.99777,0.0,05/09/0969 +-0.21967,45.60128,4777,10,31,8,55,35,3.95,5.0,fr,37635,95,1599888,1,3,Active Shallow Crust,0.0,89.98998,0.0,10/31/4777 +-0.21967,45.60128,5222,5,8,7,57,19,3.95,5.0,fr,37636,104,1599888,1,3,Active Shallow Crust,0.0,89.98998,0.0,05/08/5222 +-0.21967,45.60128,2616,1,11,18,32,16,3.95,5.0,fr,37637,52,1599888,1,3,Active Shallow Crust,0.0,89.98998,0.0,01/11/2616 +-0.21967,45.60128,2447,1,7,23,10,9,4.05,15.0,fr,37638,48,1599901,1,1,Active Shallow Crust,0.0,89.98996,0.0,01/07/2447 +-0.21967,45.60128,5024,3,21,15,40,31,4.05,5.0,fr,37639,100,1599909,1,1,Active Shallow Crust,128.8906,89.99374,0.0,03/21/5024 +-0.21967,45.60128,9516,9,17,4,49,13,4.15,15.0,fr,37640,190,1599913,1,1,Active Shallow Crust,359.9999,89.99005,0.0,09/17/9516 +-0.21967,45.60128,4569,7,28,12,33,9,4.35,5.0,fr,37641,91,1599936,1,1,Active Shallow Crust,0.0,89.98999,0.0,07/28/4569 +-0.21967,45.60128,5816,6,21,13,3,39,4.45,5.0,fr,37642,116,1599948,1,1,Active Shallow Crust,0.0,89.98998,0.0,06/21/5816 +-0.21967,45.60128,714,9,15,8,54,58,4.45,15.0,fr,37643,14,1599958,1,1,Active Shallow Crust,128.8924,89.99374,0.0,09/15/0714 +-0.21967,45.60128,1754,4,8,17,59,49,4.55,5.0,fr,37644,35,1599960,1,1,Active Shallow Crust,0.0,89.99003,0.0,04/08/1754 +-0.21967,45.60128,5404,4,20,0,14,38,4.65,5.0,fr,37645,108,1599972,1,1,Active Shallow Crust,0.0,89.99,0.0,04/20/5404 +-0.21967,45.60128,2431,3,12,17,18,18,4.75,5.0,fr,37646,48,1599990,1,1,Active Shallow Crust,360.0,89.99003,-90.0,03/12/2431 +-0.21967,45.60128,1799,5,5,17,27,56,5.25,5.0,fr,37647,35,1600044,1,1,Active Shallow Crust,0.0,89.99,0.0,05/05/1799 +-0.21967,45.60128,8600,5,8,21,27,5,6.05,15.0,fr,37648,171,1600141,1,1,Active Shallow Crust,360.0,89.99,0.0,05/08/8600 +-2.24235,42.23711,9889,12,5,8,10,35,3.55,27.5,fr,37649,197,1600322,1,1,Active Shallow Crust,0.0,89.9888,0.0,12/05/9889 +-2.24235,42.23711,7590,10,14,10,6,36,3.75,5.0,fr,37650,151,1600347,1,1,Active Shallow Crust,240.0075,58.01786,0.0,10/14/7590 +-2.24235,42.23711,1116,7,4,10,36,38,3.95,15.0,fr,37651,22,1600369,1,1,Active Shallow Crust,0.0,89.99058,0.0,07/04/1116 +-2.24235,42.23711,9359,7,27,5,52,9,4.15,27.5,fr,37652,187,1600394,1,1,Active Shallow Crust,0.0,89.99065,0.0,07/27/9359 +-2.24235,42.23711,5707,6,15,18,17,40,4.25,5.0,fr,37653,114,1600404,1,1,Active Shallow Crust,0.0,89.99,0.0,06/15/5707 +-2.24235,42.23711,1586,4,20,3,52,21,4.45,5.0,fr,37654,31,1600428,1,1,Active Shallow Crust,0.0,89.9894,0.0,04/20/1586 +-2.24235,42.23711,3754,7,29,4,14,27,4.95,5.0,fr,37655,75,1600491,1,1,Active Shallow Crust,240.0102,58.00413,0.0,07/29/3754 +5.18521,44.91409,7595,2,22,14,17,16,3.55,5.0,fr,37656,151,1600800,1,1,Active Shallow Crust,0.0,89.99286,0.0,02/22/7595 +5.18521,44.91409,7121,12,10,1,9,16,3.55,15.0,fr,37657,142,1600801,1,2,Active Shallow Crust,0.0,89.99286,0.0,12/10/7121 +5.18521,44.91409,3387,9,17,14,27,41,3.55,15.0,fr,37658,67,1600801,1,2,Active Shallow Crust,0.0,89.99286,0.0,09/17/3387 +5.18521,44.91409,5100,7,4,8,11,9,3.65,5.0,fr,37659,101,1600812,1,3,Active Shallow Crust,0.0,89.98727,0.0,07/04/5100 +5.18521,44.91409,6493,2,1,0,39,34,3.65,5.0,fr,37660,129,1600812,1,3,Active Shallow Crust,0.0,89.98727,0.0,02/01/6493 +5.18521,44.91409,6601,10,31,16,44,28,3.65,5.0,fr,37661,132,1600812,1,3,Active Shallow Crust,0.0,89.98727,0.0,10/31/6601 +5.18521,44.91409,5145,2,28,4,15,58,3.65,15.0,fr,37662,102,1600813,1,1,Active Shallow Crust,0.0,89.98727,0.0,02/28/5145 +5.18521,44.91409,9544,6,6,10,29,13,3.65,5.0,fr,37663,190,1600815,1,1,Active Shallow Crust,240.0007,58.01358,0.0,06/06/9544 +5.18521,44.91409,4380,11,8,19,34,49,3.75,5.0,fr,37664,87,1600824,1,2,Active Shallow Crust,0.0,89.98866,0.0,11/08/4380 +5.18521,44.91409,9779,7,4,9,2,18,3.75,5.0,fr,37665,195,1600824,1,2,Active Shallow Crust,0.0,89.98866,0.0,07/04/9779 +5.18521,44.91409,5397,9,24,5,17,42,3.75,15.0,fr,37666,107,1600831,1,1,Active Shallow Crust,0.0,89.98853,-90.0,09/24/5397 +5.18521,44.91409,1932,4,14,8,10,27,3.85,5.0,fr,37667,38,1600836,1,2,Active Shallow Crust,0.0,89.98989,0.0,04/14/1932 +5.18521,44.91409,6428,8,2,16,35,0,3.85,5.0,fr,37668,128,1600836,1,2,Active Shallow Crust,0.0,89.98989,0.0,08/02/6428 +5.18521,44.91409,8083,10,5,12,41,42,3.85,15.0,fr,37669,161,1600837,1,1,Active Shallow Crust,0.0,89.98989,0.0,10/05/8083 +5.18521,44.91409,5739,2,15,10,2,31,3.85,5.0,fr,37670,114,1600842,1,1,Active Shallow Crust,0.0,89.98977,-90.0,02/15/5739 +5.18521,44.91409,2138,6,30,16,7,22,3.95,5.0,fr,37671,42,1600848,1,4,Active Shallow Crust,0.0,89.99099,0.0,06/30/2138 +5.18521,44.91409,3306,4,19,6,1,33,3.95,5.0,fr,37672,66,1600848,1,4,Active Shallow Crust,0.0,89.99099,0.0,04/19/3306 +5.18521,44.91409,3390,8,14,18,16,14,3.95,5.0,fr,37673,67,1600848,1,4,Active Shallow Crust,0.0,89.99099,0.0,08/14/3390 +5.18521,44.91409,8762,9,7,9,0,16,3.95,5.0,fr,37674,175,1600848,1,4,Active Shallow Crust,0.0,89.99099,0.0,09/07/8762 +5.18521,44.91409,8844,2,29,18,14,3,3.95,5.0,fr,37675,176,1600851,1,1,Active Shallow Crust,240.0199,58.00436,0.0,02/29/8844 +5.18521,44.91409,2564,7,9,12,9,55,3.95,5.0,fr,37676,51,1600854,1,1,Active Shallow Crust,0.0,89.99088,-90.0,07/09/2564 +5.18521,44.91409,1585,7,1,20,16,34,3.95,27.5,fr,37677,31,1600856,1,1,Active Shallow Crust,0.0,89.99088,-90.0,07/01/1585 +5.18521,44.91409,9359,8,31,6,2,27,4.05,5.0,fr,37678,187,1600860,1,1,Active Shallow Crust,0.0,89.99197,0.0,08/31/9359 +5.18521,44.91409,3955,5,24,21,55,41,4.05,5.0,fr,37679,79,1600863,1,1,Active Shallow Crust,240.0065,58.0054,0.0,05/24/3955 +5.18521,44.91409,3342,11,20,16,43,58,4.35,27.5,fr,37680,66,1600898,1,1,Active Shallow Crust,0.0,89.98862,0.0,11/20/3342 +5.18521,44.91409,6921,3,29,3,27,8,4.55,5.0,fr,37681,138,1600920,1,3,Active Shallow Crust,0.0,89.99097,0.0,03/29/6921 +5.18521,44.91409,2061,1,10,14,16,39,4.55,5.0,fr,37682,41,1600920,1,3,Active Shallow Crust,0.0,89.99097,0.0,01/10/2061 +5.18521,44.91409,6873,4,11,23,33,59,4.55,5.0,fr,37683,137,1600920,1,3,Active Shallow Crust,0.0,89.99097,0.0,04/11/6873 +5.18521,44.91409,1360,3,21,6,39,17,4.75,5.0,fr,37684,27,1600944,1,2,Active Shallow Crust,0.0,89.98923,0.0,03/21/1360 +5.18521,44.91409,2185,2,12,13,3,28,4.75,5.0,fr,37685,43,1600944,1,2,Active Shallow Crust,0.0,89.98923,0.0,02/12/2185 +5.18521,44.91409,4860,6,1,20,18,12,4.85,27.5,fr,37686,97,1600958,1,1,Active Shallow Crust,0.0,89.99041,0.0,06/01/4860 +-3.07598,49.14644,83,7,21,4,14,42,3.95,5.0,fr,37687,1,1601328,1,1,Active Shallow Crust,0.0,89.98959,0.0,07/21/0083 +-3.07598,49.14644,2293,10,25,8,24,44,4.85,5.0,fr,37688,45,1601436,1,1,Active Shallow Crust,0.0,89.98966,0.0,10/25/2293 +-3.07598,49.14644,2751,7,8,8,43,55,4.85,15.0,fr,37689,55,1601443,1,1,Active Shallow Crust,0.0,89.99029,-90.0,07/08/2751 +2.84992,41.38075,863,12,24,5,15,19,3.55,5.0,fr,37690,17,1601760,1,2,Active Shallow Crust,0.0,89.98865,0.0,12/24/0863 +2.84992,41.38075,2734,8,6,8,29,18,3.55,5.0,fr,37691,54,1601760,1,2,Active Shallow Crust,0.0,89.98865,0.0,08/06/2734 +2.84992,41.38075,3826,2,12,22,34,54,3.55,15.0,fr,37692,76,1601761,1,1,Active Shallow Crust,0.0,89.98865,0.0,02/12/3826 +2.84992,41.38075,1896,11,9,10,46,57,3.55,27.5,fr,37693,37,1601762,1,1,Active Shallow Crust,0.0,89.98865,0.0,11/09/1896 +2.84992,41.38075,8130,12,4,5,22,18,3.55,5.0,fr,37694,162,1601763,1,1,Active Shallow Crust,240.0119,57.99784,0.0,12/04/8130 +2.84992,41.38075,7282,10,6,1,13,32,3.55,5.0,fr,37695,145,1601766,1,1,Active Shallow Crust,0.0,89.98852,-90.0,10/06/7282 +2.84992,41.38075,1878,6,3,18,49,14,3.65,5.0,fr,37696,37,1601772,1,1,Active Shallow Crust,0.0,89.98988,0.0,06/03/1878 +2.84992,41.38075,8115,6,2,8,56,33,3.65,5.0,fr,37697,162,1601775,1,2,Active Shallow Crust,240.0008,58.01276,0.0,06/02/8115 +2.84992,41.38075,8367,10,25,0,12,35,3.65,5.0,fr,37698,167,1601775,1,2,Active Shallow Crust,240.0008,58.01276,0.0,10/25/8367 +2.84992,41.38075,8795,12,21,14,28,17,3.65,5.0,fr,37699,175,1601778,1,1,Active Shallow Crust,0.0,89.98977,-90.0,12/21/8795 +2.84992,41.38075,5237,1,27,22,23,15,3.75,5.0,fr,37700,104,1601784,1,1,Active Shallow Crust,0.0,89.99098,0.0,01/27/5237 +2.84992,41.38075,2393,2,18,16,42,53,3.75,5.0,fr,37701,47,1601793,1,1,Active Shallow Crust,128.8972,89.96709,0.0,02/18/2393 +2.84992,41.38075,6988,9,5,6,54,14,3.75,15.0,fr,37702,139,1601794,1,1,Active Shallow Crust,128.8972,89.96709,0.0,09/05/6988 +2.84992,41.38075,1288,8,22,7,24,3,3.85,5.0,fr,37703,25,1601796,1,3,Active Shallow Crust,0.0,89.98929,0.0,08/22/1288 +2.84992,41.38075,6888,12,24,2,58,27,3.85,5.0,fr,37704,137,1601796,1,3,Active Shallow Crust,0.0,89.98929,0.0,12/24/6888 +2.84992,41.38075,8607,4,21,1,17,19,3.85,5.0,fr,37705,172,1601796,1,3,Active Shallow Crust,0.0,89.98929,0.0,04/21/8607 +2.84992,41.38075,5553,6,12,20,49,59,4.15,5.0,fr,37706,111,1601841,1,1,Active Shallow Crust,128.8987,89.99336,0.0,06/12/5553 +2.84992,41.38075,4979,2,2,18,3,46,4.25,5.0,fr,37707,99,1601844,1,1,Active Shallow Crust,0.0,89.98986,0.0,02/02/4979 +2.84992,41.38075,3219,12,29,9,29,4,4.25,15.0,fr,37708,64,1601845,1,1,Active Shallow Crust,0.0,89.98986,0.0,12/29/3219 +2.84992,41.38075,6213,5,23,22,59,46,4.45,5.0,fr,37709,124,1601871,1,1,Active Shallow Crust,240.0042,57.99438,0.0,05/23/6213 +2.84992,41.38075,4318,2,5,9,11,37,5.05,5.0,fr,37710,86,1601940,1,1,Active Shallow Crust,0.0,89.98991,0.0,02/05/4318 +2.84992,41.38075,6804,5,29,17,27,9,5.15,5.0,fr,37711,136,1601958,1,1,Active Shallow Crust,0.0,89.9903,-90.0,05/29/6804 +2.84992,41.38075,9187,7,27,6,20,57,6.15,15.0,fr,37712,183,1602076,1,1,Active Shallow Crust,240.0528,57.99992,0.0,07/27/9187 +1.62127,46.8056,3188,7,18,15,51,16,3.55,27.5,fr,37713,63,1602242,1,1,Active Shallow Crust,0.0,89.98965,0.0,07/18/3188 +1.62127,46.8056,7488,9,28,14,25,58,3.55,15.0,fr,37714,149,1602244,1,1,Active Shallow Crust,240.0124,57.99803,0.0,09/28/7488 +1.62127,46.8056,2958,3,6,17,21,14,3.65,15.0,fr,37715,59,1602253,1,1,Active Shallow Crust,0.0,89.98923,0.0,03/06/2958 +1.62127,46.8056,9415,12,11,22,50,53,3.65,15.0,fr,37716,188,1602256,1,1,Active Shallow Crust,240.001,58.01306,0.0,12/11/9415 +1.62127,46.8056,1383,4,7,22,51,9,3.75,5.0,fr,37717,27,1602264,1,1,Active Shallow Crust,0.0,89.9904,0.0,04/07/1383 +1.62127,46.8056,2484,9,16,3,59,11,3.85,5.0,fr,37718,49,1602276,1,1,Active Shallow Crust,0.0,89.99023,0.0,09/16/2484 +1.62127,46.8056,6271,8,8,9,40,37,3.95,5.0,fr,37719,125,1602288,1,2,Active Shallow Crust,0.0,89.9902,0.0,08/08/6271 +1.62127,46.8056,1352,12,3,2,49,0,3.95,5.0,fr,37720,27,1602288,1,2,Active Shallow Crust,0.0,89.9902,0.0,12/03/1352 +1.62127,46.8056,7309,7,11,8,17,57,4.55,5.0,fr,37721,146,1602369,1,1,Active Shallow Crust,128.8939,89.98579,0.0,07/11/7309 +5.64968,50.09079,2111,8,20,10,48,35,3.55,5.0,fr,37722,42,1602720,1,1,Active Shallow Crust,0.0,89.98706,0.0,08/20/2111 +5.64968,50.09079,3950,9,28,0,29,40,3.55,5.0,fr,37723,78,1602729,1,1,Active Shallow Crust,128.8964,89.99353,0.0,09/28/3950 +5.64968,50.09079,6982,12,22,19,8,52,3.75,5.0,fr,37724,139,1602744,1,1,Active Shallow Crust,0.0,89.98972,0.0,12/22/6982 +5.64968,50.09079,1286,4,19,9,46,10,4.05,5.0,fr,37725,25,1602780,1,1,Active Shallow Crust,0.0,89.98908,0.0,04/19/1286 +5.64968,50.09079,6195,5,11,14,57,3,4.15,15.0,fr,37726,123,1602796,1,1,Active Shallow Crust,240.0087,57.99768,0.0,05/11/6195 +5.64968,50.09079,1128,9,22,13,20,53,4.15,5.0,fr,37727,22,1602798,1,1,Active Shallow Crust,0.0,89.99016,-90.0,09/22/1128 +5.64968,50.09079,4519,7,9,14,28,17,5.55,5.0,fr,37728,90,1602960,1,1,Active Shallow Crust,0.0,89.99029,0.0,07/09/4519 +-2.27046,48.27117,2204,4,12,3,52,20,3.55,5.0,fr,37729,44,1603200,1,2,Active Shallow Crust,0.0,89.98993,0.0,04/12/2204 +-2.27046,48.27117,4551,6,16,23,36,41,3.55,5.0,fr,37730,91,1603200,1,2,Active Shallow Crust,0.0,89.98993,0.0,06/16/4551 +-2.27046,48.27117,9275,11,5,3,54,0,3.55,15.0,fr,37731,185,1603201,1,1,Active Shallow Crust,0.0,89.98993,0.0,11/05/9275 +-2.27046,48.27117,7835,1,2,13,33,58,3.55,27.5,fr,37732,156,1603208,1,1,Active Shallow Crust,0.0,89.98981,-90.0,01/02/7835 +-2.27046,48.27117,9,1,10,4,40,12,3.55,5.0,fr,37733,0,1603209,1,1,Active Shallow Crust,128.8961,89.99329,0.0,01/10/0009 +-2.27046,48.27117,4642,9,2,19,34,44,3.65,5.0,fr,37734,92,1603212,1,1,Active Shallow Crust,0.0,89.99103,0.0,09/02/4642 +-2.27046,48.27117,9608,8,30,16,19,25,3.65,15.0,fr,37735,192,1603213,1,1,Active Shallow Crust,0.0,89.99103,0.0,08/30/9608 +-2.27046,48.27117,6365,1,27,23,0,17,3.75,5.0,fr,37736,127,1603224,1,1,Active Shallow Crust,0.0,89.98933,0.0,01/27/6365 +-2.27046,48.27117,2229,11,23,1,31,59,3.75,15.0,fr,37737,44,1603225,1,1,Active Shallow Crust,0.0,89.98933,0.0,11/23/2229 +-2.27046,48.27117,7788,2,4,4,16,2,3.75,15.0,fr,37738,155,1603228,1,1,Active Shallow Crust,240.0087,58.01738,0.0,02/04/7788 +-2.27046,48.27117,327,4,25,17,20,44,3.85,5.0,fr,37739,6,1603236,1,1,Active Shallow Crust,0.0,89.99049,0.0,04/25/0327 +-2.27046,48.27117,5004,1,25,20,25,21,4.05,5.0,fr,37740,100,1603260,1,1,Active Shallow Crust,0.0,89.99056,0.0,01/25/5004 +-2.27046,48.27117,6874,2,16,3,32,5,4.25,5.0,fr,37741,137,1603284,1,2,Active Shallow Crust,0.0,89.98951,0.0,02/16/6874 +-2.27046,48.27117,5356,5,6,21,59,0,4.25,5.0,fr,37742,107,1603284,1,2,Active Shallow Crust,0.0,89.98951,0.0,05/06/5356 +-2.27046,48.27117,4452,8,10,2,36,19,4.35,5.0,fr,37743,89,1603296,1,1,Active Shallow Crust,0.0,89.99065,0.0,08/10/4452 +-2.27046,48.27117,4628,6,29,11,27,56,4.35,5.0,fr,37744,92,1603302,1,1,Active Shallow Crust,0.0,89.99054,-90.0,06/29/4628 +-2.27046,48.27117,5848,6,21,21,56,56,4.55,5.0,fr,37745,116,1603320,1,1,Active Shallow Crust,0.0,89.99045,0.0,06/21/5848 +-2.27046,48.27117,4744,4,7,17,27,29,4.65,5.0,fr,37746,94,1603335,1,1,Active Shallow Crust,240.0114,57.99442,0.0,04/07/4744 +4.18799,47.4974,2083,2,5,2,13,8,3.55,15.0,fr,37747,41,1603681,1,1,Active Shallow Crust,0.0,89.99319,0.0,02/05/2083 +4.18799,47.4974,8111,3,13,17,32,14,3.55,5.0,fr,37748,162,1603689,1,1,Active Shallow Crust,128.895,89.9966,0.0,03/13/8111 +4.18799,47.4974,9079,6,9,20,26,54,3.65,15.0,fr,37749,181,1603693,1,2,Active Shallow Crust,0.0,89.98785,0.0,06/09/9079 +4.18799,47.4974,1398,6,9,4,31,15,3.65,15.0,fr,37750,27,1603693,1,2,Active Shallow Crust,0.0,89.98785,0.0,06/09/1398 +4.18799,47.4974,2144,5,31,10,19,45,3.75,5.0,fr,37751,42,1603704,1,1,Active Shallow Crust,0.0,89.98917,0.0,05/31/2144 +4.18799,47.4974,3618,6,23,23,11,12,3.85,15.0,fr,37752,72,1603717,1,1,Active Shallow Crust,0.0,89.99036,0.0,06/23/3618 +4.18799,47.4974,8543,11,15,5,39,0,4.05,5.0,fr,37753,170,1603749,1,1,Active Shallow Crust,128.891,89.99234,0.0,11/15/8543 +4.18799,47.4974,4035,6,4,22,4,41,4.35,5.0,fr,37754,80,1603779,1,1,Active Shallow Crust,240.0085,57.99566,0.0,06/04/4035 +4.18799,47.4974,5561,1,1,12,29,3,5.05,5.0,fr,37755,111,1603866,1,1,Active Shallow Crust,0.0,89.9902,-90.0,01/01/5561 +0.41708,47.53073,2751,6,20,11,38,18,3.55,5.0,fr,37756,55,1604160,1,1,Active Shallow Crust,359.9998,89.99021,0.0,06/20/2751 +0.41708,47.53073,7827,5,28,15,26,46,3.65,5.0,fr,37757,156,1604172,1,2,Active Shallow Crust,0.0,89.99014,0.0,05/28/7827 +0.41708,47.53073,876,8,14,19,21,8,3.65,5.0,fr,37758,17,1604172,1,2,Active Shallow Crust,0.0,89.99014,0.0,08/14/0876 +0.41708,47.53073,4735,9,19,21,8,44,4.25,15.0,fr,37759,94,1604248,1,1,Active Shallow Crust,240.0078,57.99409,0.0,09/19/4735 +0.41708,47.53073,8650,6,1,12,29,28,4.65,5.0,fr,37760,172,1604292,1,1,Active Shallow Crust,0.0,89.99004,0.0,06/01/8650 +-3.71017,47.05017,6139,12,29,22,29,16,3.55,5.0,fr,37761,122,1604640,1,1,Active Shallow Crust,0.0,89.98969,0.0,12/29/6139 +-3.71017,47.05017,6118,12,10,2,30,34,3.75,5.0,fr,37762,122,1604664,1,1,Active Shallow Crust,0.0,89.98908,0.0,12/10/6118 +0.88922,44.74344,2119,10,4,11,5,54,3.85,5.0,fr,37763,42,1605156,1,1,Active Shallow Crust,0.0,89.98986,0.0,10/04/2119 +0.88922,44.74344,2629,4,23,23,35,16,3.85,5.0,fr,37764,52,1605159,1,1,Active Shallow Crust,240.0107,57.9978,0.0,04/23/2629 +0.88922,44.74344,9042,3,18,3,59,8,3.95,5.0,fr,37765,180,1605168,1,1,Active Shallow Crust,0.0,89.98983,0.0,03/18/9042 +0.88922,44.74344,6293,10,29,3,2,25,4.15,15.0,fr,37766,125,1605202,1,1,Active Shallow Crust,128.8978,89.99372,0.0,10/29/6293 +0.88922,44.74344,9379,12,28,17,12,23,5.45,5.0,fr,37767,187,1605351,1,1,Active Shallow Crust,240.0274,57.99825,0.0,12/28/9379 +-1.353,47.26707,4158,1,12,8,8,12,3.55,5.0,fr,37768,83,1605600,1,3,Active Shallow Crust,0.0,89.98974,0.0,01/12/4158 +-1.353,47.26707,1929,7,31,8,5,8,3.55,5.0,fr,37769,38,1605600,1,3,Active Shallow Crust,0.0,89.98974,0.0,07/31/1929 +-1.353,47.26707,3670,5,7,9,31,42,3.55,5.0,fr,37770,73,1605600,1,3,Active Shallow Crust,0.0,89.98974,0.0,05/07/3670 +-1.353,47.26707,4689,4,6,9,30,9,3.65,5.0,fr,37771,93,1605612,1,2,Active Shallow Crust,0.0,89.98933,0.0,04/06/4689 +-1.353,47.26707,641,9,9,20,50,39,3.65,5.0,fr,37772,12,1605612,1,2,Active Shallow Crust,0.0,89.98933,0.0,09/09/0641 +-1.353,47.26707,7589,7,27,7,50,41,3.65,15.0,fr,37773,151,1605613,1,2,Active Shallow Crust,0.0,89.98933,0.0,07/27/7589 +-1.353,47.26707,6547,10,2,23,21,53,3.65,15.0,fr,37774,130,1605613,1,2,Active Shallow Crust,0.0,89.98933,0.0,10/02/6547 +-1.353,47.26707,8652,8,30,16,56,14,3.65,27.5,fr,37775,173,1605614,1,1,Active Shallow Crust,0.0,89.98933,0.0,08/30/8652 +-1.353,47.26707,642,4,15,18,30,50,3.65,5.0,fr,37776,12,1605618,1,1,Active Shallow Crust,0.0,89.99075,-90.0,04/15/0642 +-1.353,47.26707,8436,10,22,11,24,38,3.65,27.5,fr,37777,168,1605623,1,1,Active Shallow Crust,128.9003,89.9634,0.0,10/22/8436 +-1.353,47.26707,3892,12,13,11,30,55,3.75,5.0,fr,37778,77,1605624,1,2,Active Shallow Crust,0.0,89.99049,0.0,12/13/3892 +-1.353,47.26707,6599,10,11,1,17,37,3.75,5.0,fr,37779,131,1605624,1,2,Active Shallow Crust,0.0,89.99049,0.0,10/11/6599 +-1.353,47.26707,1136,8,22,20,34,1,3.75,15.0,fr,37780,22,1605625,1,2,Active Shallow Crust,0.0,89.99049,0.0,08/22/1136 +-1.353,47.26707,6130,4,22,2,20,34,3.75,15.0,fr,37781,122,1605625,1,2,Active Shallow Crust,0.0,89.99049,0.0,04/22/6130 +-1.353,47.26707,2911,1,19,22,48,53,3.75,27.5,fr,37782,58,1605635,1,1,Active Shallow Crust,128.8967,89.96738,0.0,01/19/2911 +-1.353,47.26707,7931,11,6,14,31,53,3.85,5.0,fr,37783,158,1605636,1,1,Active Shallow Crust,0.0,89.99031,0.0,11/06/7931 +-1.353,47.26707,6520,8,9,1,55,25,3.85,15.0,fr,37784,130,1605637,1,1,Active Shallow Crust,0.0,89.99031,0.0,08/09/6520 +-1.353,47.26707,7100,1,30,13,44,51,4.35,5.0,fr,37785,141,1605699,1,2,Active Shallow Crust,240.0086,57.99592,0.0,01/30/7100 +-1.353,47.26707,8940,12,12,14,1,12,4.35,5.0,fr,37786,178,1605699,1,2,Active Shallow Crust,240.0086,57.99592,0.0,12/12/8940 +-1.353,47.26707,7134,3,29,2,21,57,4.55,15.0,fr,37787,142,1605721,1,1,Active Shallow Crust,0.0,89.99026,0.0,03/29/7134 +-1.353,47.26707,6132,7,11,15,29,36,4.65,5.0,fr,37788,122,1605732,1,1,Active Shallow Crust,0.0,89.98988,0.0,07/11/6132 +-1.353,47.26707,8182,3,3,6,48,4,5.15,5.0,fr,37789,163,1605792,1,1,Active Shallow Crust,0.0,89.98997,0.0,03/03/8182 +1.28263,47.98133,9892,8,18,2,41,34,3.75,5.0,fr,37790,197,1606104,1,1,Active Shallow Crust,0.0,89.99062,0.0,08/18/9892 +1.28263,47.98133,4974,5,24,2,16,30,3.75,27.5,fr,37791,99,1606109,1,1,Active Shallow Crust,240.0083,58.01761,0.0,05/24/4974 +1.28263,47.98133,926,3,13,4,15,51,3.85,5.0,fr,37792,18,1606116,1,1,Active Shallow Crust,0.0,89.99044,0.0,03/13/0926 +1.28263,47.98133,8055,5,30,16,30,22,4.05,15.0,fr,37793,161,1606144,1,1,Active Shallow Crust,240.0061,58.00596,0.0,05/30/8055 +-1.83559,48.30643,3379,5,13,18,36,24,3.55,5.0,fr,37794,67,1606560,1,1,Active Shallow Crust,0.0,89.98994,0.0,05/13/3379 +-1.83559,48.30643,1262,8,15,1,42,56,3.55,15.0,fr,37795,25,1606561,1,1,Active Shallow Crust,0.0,89.98994,0.0,08/15/1262 +-1.83559,48.30643,8202,12,19,1,54,34,3.65,5.0,fr,37796,164,1606572,1,1,Active Shallow Crust,0.0,89.98954,0.0,12/19/8202 +-1.83559,48.30643,2840,9,15,11,42,34,3.65,27.5,fr,37797,56,1606574,1,2,Active Shallow Crust,0.0,89.98954,0.0,09/15/2840 +-1.83559,48.30643,5620,6,28,13,9,58,3.65,27.5,fr,37798,112,1606574,1,2,Active Shallow Crust,0.0,89.98954,0.0,06/28/5620 +-1.83559,48.30643,1489,10,15,12,18,37,3.65,15.0,fr,37799,29,1606576,1,1,Active Shallow Crust,240.0015,58.01266,0.0,10/15/1489 +-1.83559,48.30643,3047,3,5,2,2,29,3.75,27.5,fr,37800,60,1606586,1,1,Active Shallow Crust,0.0,89.98934,0.0,03/05/3047 +-1.83559,48.30643,529,2,5,1,11,11,3.75,5.0,fr,37801,10,1606593,1,1,Active Shallow Crust,128.8965,89.96741,0.0,02/05/0529 +-1.83559,48.30643,6143,11,2,13,45,43,3.85,5.0,fr,37802,122,1606596,1,1,Active Shallow Crust,0.0,89.9905,0.0,11/02/6143 +-1.83559,48.30643,8029,3,18,2,33,32,3.85,27.5,fr,37803,160,1606601,1,1,Active Shallow Crust,240.011,57.99788,0.0,03/18/8029 +-1.83559,48.30643,2631,9,6,4,18,12,3.85,5.0,fr,37804,52,1606605,1,1,Active Shallow Crust,128.8952,89.99406,0.0,09/06/2631 +-1.83559,48.30643,3677,7,18,11,26,20,3.95,5.0,fr,37805,73,1606608,1,1,Active Shallow Crust,0.0,89.99048,0.0,07/18/3677 +-1.83559,48.30643,6421,11,30,9,22,19,4.05,5.0,fr,37806,128,1606629,1,1,Active Shallow Crust,128.8902,89.99387,0.0,11/30/6421 +-1.83559,48.30643,7922,11,22,6,1,59,4.25,5.0,fr,37807,158,1606644,1,2,Active Shallow Crust,0.0,89.99026,0.0,11/22/7922 +-1.83559,48.30643,6481,9,28,3,31,28,4.25,5.0,fr,37808,129,1606644,1,2,Active Shallow Crust,0.0,89.99026,0.0,09/28/6481 +-1.83559,48.30643,9567,6,28,6,0,41,4.25,15.0,fr,37809,191,1606645,1,1,Active Shallow Crust,0.0,89.99026,0.0,06/28/9567 +-1.83559,48.30643,2820,8,7,20,47,28,4.35,5.0,fr,37810,56,1606656,1,2,Active Shallow Crust,0.0,89.98998,0.0,08/07/2820 +-1.83559,48.30643,3594,10,29,14,34,16,4.35,5.0,fr,37811,71,1606656,1,2,Active Shallow Crust,0.0,89.98998,0.0,10/29/3594 +-1.83559,48.30643,1289,11,20,12,28,23,4.55,5.0,fr,37812,25,1606683,1,1,Active Shallow Crust,240.0099,57.99752,0.0,11/20/1289 +-1.83559,48.30643,4354,9,26,19,4,58,5.25,5.0,fr,37813,87,1606767,1,1,Active Shallow Crust,240.0267,58.00053,0.0,09/26/4354 +5.01604,45.28494,5435,3,20,18,6,34,3.55,5.0,fr,37814,108,1607040,1,1,Active Shallow Crust,0.0,89.9929,0.0,03/20/5435 +5.01604,45.28494,9913,7,29,1,19,58,3.55,5.0,fr,37815,198,1607043,1,1,Active Shallow Crust,240.0121,57.99734,0.0,07/29/9913 +5.01604,45.28494,6077,9,3,3,39,56,3.65,5.0,fr,37816,121,1607052,1,2,Active Shallow Crust,0.0,89.98735,0.0,09/03/6077 +5.01604,45.28494,2603,2,17,1,0,32,3.65,5.0,fr,37817,52,1607052,1,2,Active Shallow Crust,0.0,89.98735,0.0,02/17/2603 +5.01604,45.28494,9721,12,20,19,1,8,3.65,15.0,fr,37818,194,1607053,1,1,Active Shallow Crust,0.0,89.98735,0.0,12/20/9721 +5.01604,45.28494,4633,7,19,18,49,20,3.75,5.0,fr,37819,92,1607064,1,1,Active Shallow Crust,0.0,89.98873,0.0,07/19/4633 +5.01604,45.28494,6373,5,8,4,6,5,3.95,15.0,fr,37820,127,1607089,1,3,Active Shallow Crust,0.0,89.99104,0.0,05/08/6373 +5.01604,45.28494,5048,8,21,18,16,43,3.95,15.0,fr,37821,100,1607089,1,3,Active Shallow Crust,0.0,89.99104,0.0,08/21/5048 +5.01604,45.28494,1659,4,23,22,31,35,3.95,15.0,fr,37822,33,1607089,1,3,Active Shallow Crust,0.0,89.99104,0.0,04/23/1659 +5.01604,45.28494,7592,1,19,10,11,29,4.15,5.0,fr,37823,151,1607112,1,2,Active Shallow Crust,0.0,89.98933,0.0,01/19/7592 +5.01604,45.28494,1075,11,19,1,41,17,4.15,5.0,fr,37824,21,1607112,1,2,Active Shallow Crust,0.0,89.98933,0.0,11/19/1075 +5.01604,45.28494,5895,10,27,21,39,9,4.25,5.0,fr,37825,117,1607124,1,1,Active Shallow Crust,0.0,89.99049,0.0,10/27/5895 +5.01604,45.28494,3140,8,6,16,40,55,4.25,5.0,fr,37826,62,1607130,1,1,Active Shallow Crust,0.0,89.99038,-90.0,08/06/3140 +5.01604,45.28494,7178,6,26,23,53,16,4.55,5.0,fr,37827,143,1607160,1,1,Active Shallow Crust,0.0,89.99103,0.0,06/26/7178 +5.01604,45.28494,5884,8,20,11,50,23,4.65,15.0,fr,37828,117,1607173,1,1,Active Shallow Crust,0.0,89.99,0.0,08/20/5884 +5.01604,45.28494,9274,3,8,21,55,34,4.65,5.0,fr,37829,185,1607175,1,1,Active Shallow Crust,240.0108,57.99385,0.0,03/08/9274 +6.53795,46.78289,8957,8,3,7,18,19,3.55,5.0,fr,37830,179,1607520,1,7,Active Shallow Crust,0.0,89.9931,0.0,08/03/8957 +6.53795,46.78289,5840,8,5,19,56,13,3.55,5.0,fr,37831,116,1607520,1,7,Active Shallow Crust,0.0,89.9931,0.0,08/05/5840 +6.53795,46.78289,7637,12,1,2,44,57,3.55,5.0,fr,37832,152,1607520,1,7,Active Shallow Crust,0.0,89.9931,0.0,12/01/7637 +6.53795,46.78289,9107,1,30,14,36,3,3.55,5.0,fr,37833,182,1607520,1,7,Active Shallow Crust,0.0,89.9931,0.0,01/30/9107 +6.53795,46.78289,5628,4,1,10,9,44,3.55,5.0,fr,37834,112,1607520,1,7,Active Shallow Crust,0.0,89.9931,0.0,04/01/5628 +6.53795,46.78289,4665,7,31,13,51,59,3.55,5.0,fr,37835,93,1607520,1,7,Active Shallow Crust,0.0,89.9931,0.0,07/31/4665 +6.53795,46.78289,3359,11,24,15,30,59,3.55,5.0,fr,37836,67,1607520,1,7,Active Shallow Crust,0.0,89.9931,0.0,11/24/3359 +6.53795,46.78289,8868,1,23,9,6,14,3.55,15.0,fr,37837,177,1607521,1,1,Active Shallow Crust,0.0,89.9931,0.0,01/23/8868 +6.53795,46.78289,6283,3,1,19,49,34,3.55,27.5,fr,37838,125,1607522,1,1,Active Shallow Crust,0.0,89.9931,0.0,03/01/6283 +6.53795,46.78289,7976,3,6,22,5,41,3.55,5.0,fr,37839,159,1607529,1,1,Active Shallow Crust,128.8956,89.9931,0.0,03/06/7976 +6.53795,46.78289,2648,6,2,21,48,50,3.65,5.0,fr,37840,52,1607532,1,5,Active Shallow Crust,0.0,89.98769,0.0,06/02/2648 +6.53795,46.78289,5198,5,12,8,38,28,3.65,5.0,fr,37841,103,1607532,1,5,Active Shallow Crust,0.0,89.98769,0.0,05/12/5198 +6.53795,46.78289,6583,12,17,6,55,4,3.65,5.0,fr,37842,131,1607532,1,5,Active Shallow Crust,0.0,89.98769,0.0,12/17/6583 +6.53795,46.78289,8566,11,10,18,7,47,3.65,5.0,fr,37843,171,1607532,1,5,Active Shallow Crust,0.0,89.98769,0.0,11/10/8566 +6.53795,46.78289,8119,7,5,9,44,22,3.65,5.0,fr,37844,162,1607532,1,5,Active Shallow Crust,0.0,89.98769,0.0,07/05/8119 +6.53795,46.78289,1620,3,5,20,51,18,3.65,15.0,fr,37845,32,1607533,1,2,Active Shallow Crust,0.0,89.98769,0.0,03/05/1620 +6.53795,46.78289,9621,11,2,7,59,2,3.65,15.0,fr,37846,192,1607533,1,2,Active Shallow Crust,0.0,89.98769,0.0,11/02/9621 +6.53795,46.78289,8204,1,12,20,41,21,3.65,27.5,fr,37847,164,1607534,1,1,Active Shallow Crust,0.0,89.98769,0.0,01/12/8204 +6.53795,46.78289,445,11,5,20,14,14,3.65,5.0,fr,37848,8,1607535,1,3,Active Shallow Crust,240.0011,58.01361,0.0,11/05/0445 +6.53795,46.78289,2931,3,30,2,51,55,3.65,5.0,fr,37849,58,1607535,1,3,Active Shallow Crust,240.0011,58.01361,0.0,03/30/2931 +6.53795,46.78289,525,8,15,11,42,7,3.65,5.0,fr,37850,10,1607535,1,3,Active Shallow Crust,240.0011,58.01361,0.0,08/15/0525 +6.53795,46.78289,7114,5,23,19,2,15,3.65,15.0,fr,37851,142,1607536,1,1,Active Shallow Crust,240.0011,58.01361,0.0,05/23/7114 +6.53795,46.78289,8632,3,20,15,26,48,3.65,27.5,fr,37852,172,1607537,1,1,Active Shallow Crust,240.0011,58.01352,0.0,03/20/8632 +6.53795,46.78289,7453,8,18,18,32,43,3.65,5.0,fr,37853,149,1607541,1,2,Active Shallow Crust,128.8998,89.96353,0.0,08/18/7453 +6.53795,46.78289,3813,6,29,20,40,37,3.65,5.0,fr,37854,76,1607541,1,2,Active Shallow Crust,128.8998,89.96353,0.0,06/29/3813 +6.53795,46.78289,546,3,31,7,28,29,3.75,5.0,fr,37855,10,1607544,1,1,Active Shallow Crust,0.0,89.98903,0.0,03/31/0546 +6.53795,46.78289,1103,5,21,20,22,2,3.75,15.0,fr,37856,22,1607545,1,1,Active Shallow Crust,0.0,89.98903,0.0,05/21/1103 +6.53795,46.78289,8416,1,27,6,39,24,3.75,27.5,fr,37857,168,1607546,1,3,Active Shallow Crust,0.0,89.98903,0.0,01/27/8416 +6.53795,46.78289,1217,6,6,11,47,14,3.75,27.5,fr,37858,24,1607546,1,3,Active Shallow Crust,0.0,89.98903,0.0,06/06/1217 +6.53795,46.78289,8223,12,29,15,50,16,3.75,27.5,fr,37859,164,1607546,1,3,Active Shallow Crust,0.0,89.98903,0.0,12/29/8223 +6.53795,46.78289,703,9,24,9,51,7,3.75,5.0,fr,37860,14,1607547,1,2,Active Shallow Crust,240.0089,58.01698,0.0,09/24/0703 +6.53795,46.78289,3499,12,14,2,35,11,3.75,5.0,fr,37861,69,1607547,1,2,Active Shallow Crust,240.0089,58.01698,0.0,12/14/3499 +6.53795,46.78289,5679,7,25,17,34,25,3.75,27.5,fr,37862,113,1607549,1,1,Active Shallow Crust,240.0089,58.01698,0.0,07/25/5679 +6.53795,46.78289,7564,11,11,17,38,57,3.75,5.0,fr,37863,151,1607550,1,1,Active Shallow Crust,0.0,89.9889,-90.0,11/11/7564 +6.53795,46.78289,9436,8,26,10,45,13,3.75,5.0,fr,37864,188,1607553,1,2,Active Shallow Crust,128.8965,89.9675,0.0,08/26/9436 +6.53795,46.78289,9281,6,8,0,57,6,3.75,5.0,fr,37865,185,1607553,1,2,Active Shallow Crust,128.8965,89.9675,0.0,06/08/9281 +6.53795,46.78289,8261,11,23,14,27,51,3.75,15.0,fr,37866,165,1607554,1,1,Active Shallow Crust,128.8965,89.9675,0.0,11/23/8261 +6.53795,46.78289,1028,5,25,12,23,55,3.85,5.0,fr,37867,20,1607556,1,2,Active Shallow Crust,0.0,89.99022,0.0,05/25/1028 +6.53795,46.78289,2704,12,9,0,15,24,3.85,5.0,fr,37868,54,1607556,1,2,Active Shallow Crust,0.0,89.99022,0.0,12/09/2704 +6.53795,46.78289,2335,6,6,14,34,29,3.85,15.0,fr,37869,46,1607557,1,2,Active Shallow Crust,0.0,89.99022,0.0,06/06/2335 +6.53795,46.78289,8617,7,28,17,1,17,3.85,15.0,fr,37870,172,1607557,1,2,Active Shallow Crust,0.0,89.99022,0.0,07/28/8617 +6.53795,46.78289,127,9,3,21,32,9,3.85,27.5,fr,37871,2,1607558,1,2,Active Shallow Crust,0.0,89.99022,0.0,09/03/0127 +6.53795,46.78289,7822,8,30,5,19,29,3.85,27.5,fr,37872,156,1607558,1,2,Active Shallow Crust,0.0,89.99022,0.0,08/30/7822 +6.53795,46.78289,6629,5,28,21,56,39,3.85,15.0,fr,37873,132,1607560,1,2,Active Shallow Crust,240.0117,57.99767,0.0,05/28/6629 +6.53795,46.78289,9185,7,27,5,41,20,3.85,15.0,fr,37874,183,1607560,1,2,Active Shallow Crust,240.0117,57.99767,0.0,07/27/9185 +6.53795,46.78289,7457,8,8,14,36,1,3.95,5.0,fr,37875,149,1607568,1,5,Active Shallow Crust,0.0,89.99129,0.0,08/08/7457 +6.53795,46.78289,3298,1,16,5,5,34,3.95,5.0,fr,37876,65,1607568,1,5,Active Shallow Crust,0.0,89.99129,0.0,01/16/3298 +6.53795,46.78289,9862,8,19,23,52,27,3.95,5.0,fr,37877,197,1607568,1,5,Active Shallow Crust,0.0,89.99129,0.0,08/19/9862 +6.53795,46.78289,3460,11,1,21,2,16,3.95,5.0,fr,37878,69,1607568,1,5,Active Shallow Crust,0.0,89.99129,0.0,11/01/3460 +6.53795,46.78289,8450,7,13,13,25,33,3.95,5.0,fr,37879,168,1607568,1,5,Active Shallow Crust,0.0,89.99129,0.0,07/13/8450 +6.53795,46.78289,3274,11,12,20,31,57,3.95,15.0,fr,37880,65,1607569,1,1,Active Shallow Crust,0.0,89.99129,0.0,11/12/3274 +6.53795,46.78289,5182,12,20,13,29,3,3.95,27.5,fr,37881,103,1607570,1,1,Active Shallow Crust,0.0,89.99129,0.0,12/20/5182 +6.53795,46.78289,1159,12,30,19,21,32,3.95,15.0,fr,37882,23,1607572,1,1,Active Shallow Crust,240.0194,58.00466,0.0,12/30/1159 +6.53795,46.78289,9286,2,25,16,55,40,3.95,5.0,fr,37883,185,1607574,1,1,Active Shallow Crust,0.0,89.99119,-90.0,02/25/9286 +6.53795,46.78289,6805,2,8,10,50,48,3.95,5.0,fr,37884,136,1607577,1,1,Active Shallow Crust,128.9004,89.99346,0.0,02/08/6805 +6.53795,46.78289,8215,12,30,17,25,41,4.05,5.0,fr,37885,164,1607580,1,4,Active Shallow Crust,0.0,89.98835,0.0,12/30/8215 +6.53795,46.78289,4449,6,14,10,4,23,4.05,5.0,fr,37886,88,1607580,1,4,Active Shallow Crust,0.0,89.98835,0.0,06/14/4449 +6.53795,46.78289,2578,3,6,19,39,30,4.05,5.0,fr,37887,51,1607580,1,4,Active Shallow Crust,0.0,89.98835,0.0,03/06/2578 +6.53795,46.78289,6264,1,3,8,23,8,4.05,5.0,fr,37888,125,1607580,1,4,Active Shallow Crust,0.0,89.98835,0.0,01/03/6264 +6.53795,46.78289,4866,8,3,19,23,33,4.05,5.0,fr,37889,97,1607583,1,1,Active Shallow Crust,240.0063,58.00574,0.0,08/03/4866 +6.53795,46.78289,7377,7,23,7,25,40,4.05,15.0,fr,37890,147,1607584,1,1,Active Shallow Crust,240.0063,58.00571,0.0,07/23/7377 +6.53795,46.78289,7961,4,14,17,14,40,4.05,5.0,fr,37891,159,1607586,1,1,Active Shallow Crust,0.0,89.98821,-90.0,04/14/7961 +6.53795,46.78289,8266,1,21,16,6,59,4.15,5.0,fr,37892,165,1607592,1,1,Active Shallow Crust,0.0,89.98962,0.0,01/21/8266 +6.53795,46.78289,8736,2,3,11,29,41,4.15,15.0,fr,37893,174,1607599,1,1,Active Shallow Crust,0.0,89.98949,-90.0,02/03/8736 +6.53795,46.78289,5882,9,28,21,19,20,4.25,5.0,fr,37894,117,1607604,1,1,Active Shallow Crust,0.0,89.99075,0.0,09/28/5882 +6.53795,46.78289,6507,4,12,4,6,4,4.25,15.0,fr,37895,130,1607608,1,1,Active Shallow Crust,240.0076,57.99419,0.0,04/12/6507 +6.53795,46.78289,3385,3,12,18,36,48,4.25,5.0,fr,37896,67,1607613,1,2,Active Shallow Crust,128.895,89.98096,0.0,03/12/3385 +6.53795,46.78289,977,8,17,14,1,9,4.25,5.0,fr,37897,19,1607613,1,2,Active Shallow Crust,128.895,89.98096,0.0,08/17/0977 +6.53795,46.78289,2411,4,11,17,57,31,4.45,5.0,fr,37898,48,1607628,1,2,Active Shallow Crust,0.0,89.9902,0.0,04/11/2411 +6.53795,46.78289,2936,7,9,23,30,56,4.45,5.0,fr,37899,58,1607628,1,2,Active Shallow Crust,0.0,89.9902,0.0,07/09/2936 +6.53795,46.78289,3848,5,27,3,4,4,4.45,5.0,fr,37900,76,1607637,1,1,Active Shallow Crust,128.8917,89.99387,0.0,05/27/3848 +6.53795,46.78289,6315,5,28,13,8,7,4.55,5.0,fr,37901,126,1607640,1,3,Active Shallow Crust,0.0,89.98908,0.0,05/28/6315 +6.53795,46.78289,8042,11,28,13,40,45,4.55,5.0,fr,37902,160,1607640,1,3,Active Shallow Crust,0.0,89.98908,0.0,11/28/8042 +6.53795,46.78289,9492,6,5,12,39,47,4.55,5.0,fr,37903,189,1607640,1,3,Active Shallow Crust,0.0,89.98908,0.0,06/05/9492 +6.53795,46.78289,6826,12,11,22,37,4,4.75,5.0,fr,37904,136,1607664,1,1,Active Shallow Crust,0.0,89.98959,0.0,12/11/6826 +6.53795,46.78289,6100,4,7,7,46,1,4.95,27.5,fr,37905,121,1607693,1,1,Active Shallow Crust,240.0117,58.0045,0.0,04/07/6100 +6.53795,46.78289,4336,2,10,12,50,35,5.05,15.0,fr,37906,86,1607701,1,1,Active Shallow Crust,0.0,89.99017,0.0,02/10/4336 +6.53795,46.78289,9391,6,9,0,23,31,5.25,5.0,fr,37907,187,1607724,1,1,Active Shallow Crust,0.0,89.99024,0.0,06/09/9391 +6.53795,46.78289,7063,5,20,16,58,21,5.65,5.0,fr,37908,141,1607781,1,1,Active Shallow Crust,128.8749,89.99054,0.0,05/20/7063 +6.53795,46.78289,9534,3,29,8,3,12,5.75,5.0,fr,37909,190,1607784,1,1,Active Shallow Crust,0.0,89.99012,0.0,03/29/9534 +6.53795,46.78289,3258,4,15,8,37,5,5.95,15.0,fr,37910,65,1607818,1,1,Active Shallow Crust,128.8644,89.99009,0.0,04/15/3258 +-0.50952,49.20163,875,3,29,16,36,59,3.55,5.0,fr,37911,17,1608000,1,1,Active Shallow Crust,0.0,89.99012,0.0,03/29/0875 +-0.50952,49.20163,7592,3,28,20,5,59,3.55,5.0,fr,37912,151,1608003,1,1,Active Shallow Crust,240.0125,57.99818,0.0,03/28/7592 +-0.50952,49.20163,6355,4,11,10,21,31,3.55,15.0,fr,37913,127,1608004,1,1,Active Shallow Crust,240.0125,57.99818,0.0,04/11/6355 +-0.50952,49.20163,873,2,21,13,49,27,3.65,27.5,fr,37914,17,1608014,1,2,Active Shallow Crust,0.0,89.98972,0.0,02/21/0873 +-0.50952,49.20163,4325,4,3,15,0,44,3.65,27.5,fr,37915,86,1608014,1,2,Active Shallow Crust,0.0,89.98972,0.0,04/03/4325 +-0.50952,49.20163,8666,10,23,3,56,31,3.65,15.0,fr,37916,173,1608019,1,1,Active Shallow Crust,0.0,89.99035,-90.0,10/23/8666 +-0.50952,49.20163,6306,11,29,13,29,40,3.65,5.0,fr,37917,126,1608021,1,1,Active Shallow Crust,128.9001,89.96352,0.0,11/29/6306 +-0.50952,49.20163,1278,2,15,9,58,54,3.75,5.0,fr,37918,25,1608024,1,2,Active Shallow Crust,0.0,89.99019,0.0,02/15/1278 +-0.50952,49.20163,375,10,17,12,7,30,3.75,5.0,fr,37919,7,1608024,1,2,Active Shallow Crust,0.0,89.99019,0.0,10/17/0375 +-0.50952,49.20163,1309,8,24,10,23,29,3.75,15.0,fr,37920,26,1608034,1,1,Active Shallow Crust,128.8963,89.96736,0.0,08/24/1309 +-0.50952,49.20163,9772,10,3,3,26,51,3.85,5.0,fr,37921,195,1608036,1,1,Active Shallow Crust,0.0,89.99009,0.0,10/03/9772 +-0.50952,49.20163,3912,5,29,1,33,45,3.85,5.0,fr,37922,78,1608039,1,1,Active Shallow Crust,240.0113,57.99784,0.0,05/29/3912 +-0.50952,49.20163,5711,7,20,4,23,21,3.85,5.0,fr,37923,114,1608042,1,1,Active Shallow Crust,0.0,89.98997,-90.0,07/20/5711 +-0.50952,49.20163,6682,11,26,15,26,50,3.95,5.0,fr,37924,133,1608048,1,1,Active Shallow Crust,0.0,89.99013,0.0,11/26/6682 +-0.50952,49.20163,2136,4,4,1,3,4,3.95,15.0,fr,37925,42,1608049,1,1,Active Shallow Crust,0.0,89.99013,0.0,04/04/2136 +-0.50952,49.20163,4113,10,11,2,52,47,4.05,15.0,fr,37926,82,1608061,1,2,Active Shallow Crust,0.0,89.98981,0.0,10/11/4113 +-0.50952,49.20163,452,6,23,7,22,40,4.05,15.0,fr,37927,9,1608061,1,2,Active Shallow Crust,0.0,89.98981,0.0,06/23/0452 +-0.50952,49.20163,2118,12,30,22,25,57,4.15,15.0,fr,37928,42,1608073,1,1,Active Shallow Crust,0.0,89.99009,0.0,12/30/2118 +-0.50952,49.20163,6279,10,28,3,31,19,4.25,15.0,fr,37929,125,1608085,1,1,Active Shallow Crust,0.0,89.99007,0.0,10/28/6279 +-0.50952,49.20163,6322,4,7,16,35,56,4.35,5.0,fr,37930,126,1608099,1,1,Active Shallow Crust,240.0091,57.99604,0.0,04/07/6322 +-0.50952,49.20163,8454,6,20,17,38,12,5.45,5.0,fr,37931,169,1608228,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/20/8454 +3.10962,42.22676,4154,1,22,13,50,53,3.65,5.0,fr,37932,83,1608492,1,1,Active Shallow Crust,0.0,89.99002,0.0,01/22/4154 +3.10962,42.22676,462,6,24,4,4,45,3.65,27.5,fr,37933,9,1608494,1,1,Active Shallow Crust,0.0,89.99002,0.0,06/24/0462 +3.10962,42.22676,8313,6,26,20,56,2,3.75,5.0,fr,37934,166,1608510,1,1,Active Shallow Crust,0.0,89.991,-90.0,06/26/8313 +3.10962,42.22676,672,2,14,4,55,9,3.85,5.0,fr,37935,13,1608516,1,1,Active Shallow Crust,0.0,89.98943,0.0,02/14/0672 +3.10962,42.22676,27,12,4,23,48,18,3.85,5.0,fr,37936,0,1608522,1,1,Active Shallow Crust,0.0,89.9893,-90.0,12/04/0027 +3.10962,42.22676,6705,10,13,9,40,55,3.95,27.5,fr,37937,134,1608536,1,1,Active Shallow Crust,0.0,89.99047,-90.0,10/13/6705 +3.10962,42.22676,5182,10,1,1,42,16,4.25,5.0,fr,37938,103,1608564,1,1,Active Shallow Crust,0.0,89.98999,0.0,10/01/5182 +3.10962,42.22676,1215,9,23,8,37,36,4.25,27.5,fr,37939,24,1608566,1,1,Active Shallow Crust,0.0,89.98999,0.0,09/23/1215 +3.10962,42.22676,4351,6,18,15,23,28,4.45,5.0,fr,37940,87,1608588,1,1,Active Shallow Crust,0.0,89.9894,0.0,06/18/4351 +3.10962,42.22676,8158,12,27,20,29,47,4.55,5.0,fr,37941,163,1608600,1,1,Active Shallow Crust,0.0,89.99055,0.0,12/27/8158 +-0.91651,47.70527,4068,11,13,6,10,2,3.55,5.0,fr,37942,81,1608960,1,2,Active Shallow Crust,0.0,89.98982,0.0,11/13/4068 +-0.91651,47.70527,4289,7,3,20,54,37,3.55,5.0,fr,37943,85,1608960,1,2,Active Shallow Crust,0.0,89.98982,0.0,07/03/4289 +-0.91651,47.70527,9628,2,8,3,29,14,3.55,15.0,fr,37944,192,1608961,1,2,Active Shallow Crust,0.0,89.98982,0.0,02/08/9628 +-0.91651,47.70527,1366,2,18,7,3,56,3.55,15.0,fr,37945,27,1608961,1,2,Active Shallow Crust,0.0,89.98982,0.0,02/18/1366 +-0.91651,47.70527,7508,2,2,2,43,36,3.55,5.0,fr,37946,150,1608969,1,1,Active Shallow Crust,128.8961,89.99406,0.0,02/02/7508 +-0.91651,47.70527,6432,10,20,3,33,44,3.55,27.5,fr,37947,128,1608971,1,1,Active Shallow Crust,128.8961,89.99406,0.0,10/20/6432 +-0.91651,47.70527,4527,11,6,16,42,40,3.65,5.0,fr,37948,90,1608975,1,1,Active Shallow Crust,240.0012,58.013,0.0,11/06/4527 +-0.91651,47.70527,472,9,26,15,45,48,3.75,5.0,fr,37949,9,1608984,1,2,Active Shallow Crust,0.0,89.98989,0.0,09/26/0472 +-0.91651,47.70527,9945,3,27,22,0,7,3.75,5.0,fr,37950,198,1608984,1,2,Active Shallow Crust,0.0,89.98989,0.0,03/27/9945 +-0.91651,47.70527,7526,4,18,14,40,43,3.75,5.0,fr,37951,150,1608987,1,2,Active Shallow Crust,240.0086,58.01755,0.0,04/18/7526 +-0.91651,47.70527,6267,1,25,14,20,17,3.75,5.0,fr,37952,125,1608987,1,2,Active Shallow Crust,240.0086,58.01755,0.0,01/25/6267 +-0.91651,47.70527,8441,1,28,18,45,50,3.85,15.0,fr,37953,168,1609003,1,1,Active Shallow Crust,0.0,89.99028,-90.0,01/28/8441 +-0.91651,47.70527,6652,4,18,22,13,45,4.15,5.0,fr,37954,133,1609032,1,1,Active Shallow Crust,0.0,89.9898,0.0,04/18/6652 +-0.91651,47.70527,5564,2,9,9,6,28,4.25,27.5,fr,37955,111,1609046,1,1,Active Shallow Crust,0.0,89.99015,0.0,02/09/5564 +-0.91651,47.70527,9019,8,15,10,47,35,4.55,5.0,fr,37956,180,1609080,1,1,Active Shallow Crust,0.0,89.99007,0.0,08/15/9019 +-0.91651,47.70527,2166,4,23,12,39,3,4.65,5.0,fr,37957,43,1609095,1,1,Active Shallow Crust,240.0113,57.9943,0.0,04/23/2166 +5.24571,51.6323,9801,3,27,11,35,40,3.55,15.0,fr,37958,196,1609441,1,1,Active Shallow Crust,0.0,89.98748,0.0,03/27/9801 +5.24571,51.6323,4151,3,3,0,42,6,3.55,5.0,fr,37959,83,1609449,1,1,Active Shallow Crust,128.8951,89.99374,0.0,03/03/4151 +5.24571,51.6323,5420,6,25,3,6,41,3.85,5.0,fr,37960,108,1609476,1,1,Active Shallow Crust,0.0,89.99113,0.0,06/25/5420 +5.24571,51.6323,9999,12,9,18,57,36,3.95,5.0,fr,37961,199,1609488,1,1,Active Shallow Crust,0.0,89.98815,0.0,12/09/9999 +5.24571,51.6323,7405,6,22,21,33,34,4.15,15.0,fr,37962,148,1609519,1,1,Active Shallow Crust,0.0,89.99048,-90.0,06/22/7405 +5.24571,51.6323,4583,6,18,3,54,42,4.45,15.0,fr,37963,91,1609555,1,1,Active Shallow Crust,0.0,89.99101,-90.0,06/18/4583 +9.0124,48.59576,2766,6,23,4,48,47,3.55,5.0,fr,37964,55,1609920,1,1,Active Shallow Crust,0.0,89.98666,0.0,06/23/2766 +9.0124,48.59576,1982,8,20,12,35,11,3.55,15.0,fr,37965,39,1609921,1,1,Active Shallow Crust,0.0,89.98666,0.0,08/20/1982 +9.0124,48.59576,2921,8,20,20,46,27,3.55,5.0,fr,37966,58,1609923,1,1,Active Shallow Crust,240.0111,57.99903,0.0,08/20/2921 +9.0124,48.59576,4249,9,7,18,52,27,3.55,15.0,fr,37967,84,1609924,1,1,Active Shallow Crust,240.0111,57.99903,0.0,09/07/4249 +9.0124,48.59576,2047,1,21,15,22,44,3.55,5.0,fr,37968,40,1609926,1,2,Active Shallow Crust,0.0,89.9865,-90.0,01/21/2047 +9.0124,48.59576,9523,10,17,22,56,18,3.55,5.0,fr,37969,190,1609926,1,2,Active Shallow Crust,0.0,89.9865,-90.0,10/17/9523 +9.0124,48.59576,7437,8,3,21,3,51,3.65,5.0,fr,37970,148,1609932,1,3,Active Shallow Crust,0.0,89.98811,0.0,08/03/7437 +9.0124,48.59576,9247,5,7,20,23,50,3.65,5.0,fr,37971,184,1609932,1,3,Active Shallow Crust,0.0,89.98811,0.0,05/07/9247 +9.0124,48.59576,3214,3,13,2,57,42,3.65,5.0,fr,37972,64,1609932,1,3,Active Shallow Crust,0.0,89.98811,0.0,03/13/3214 +9.0124,48.59576,4909,11,9,20,16,10,3.65,5.0,fr,37973,98,1609941,1,2,Active Shallow Crust,128.9009,89.96356,0.0,11/09/4909 +9.0124,48.59576,4613,10,9,10,22,25,3.65,5.0,fr,37974,92,1609941,1,2,Active Shallow Crust,128.9009,89.96356,0.0,10/09/4613 +9.0124,48.59576,8831,3,23,11,18,36,3.75,15.0,fr,37975,176,1609945,1,1,Active Shallow Crust,0.0,89.9894,0.0,03/23/8831 +9.0124,48.59576,9564,6,5,9,52,38,3.85,5.0,fr,37976,191,1609956,1,1,Active Shallow Crust,0.0,89.99055,0.0,06/05/9564 +9.0124,48.59576,9246,8,4,15,39,52,3.85,15.0,fr,37977,184,1609957,1,1,Active Shallow Crust,0.0,89.99055,0.0,08/04/9246 +9.0124,48.59576,4821,10,9,20,58,12,4.05,15.0,fr,37978,96,1609981,1,1,Active Shallow Crust,0.0,89.9925,0.0,10/09/4821 +9.0124,48.59576,1105,2,6,6,27,12,4.15,5.0,fr,37979,22,1609992,1,1,Active Shallow Crust,0.0,89.99332,0.0,02/06/1105 +9.0124,48.59576,8766,12,29,10,35,36,4.25,5.0,fr,37980,175,1610004,1,1,Active Shallow Crust,0.0,89.98808,0.0,12/29/8766 +9.0124,48.59576,7649,9,10,0,46,16,4.25,15.0,fr,37981,152,1610005,1,1,Active Shallow Crust,0.0,89.98808,0.0,09/10/7649 +9.0124,48.59576,9647,5,18,13,33,9,4.35,15.0,fr,37982,192,1610017,1,1,Active Shallow Crust,0.0,89.98938,0.0,05/18/9647 +9.0124,48.59576,5804,5,3,14,22,45,4.45,5.0,fr,37983,116,1610028,1,1,Active Shallow Crust,0.0,89.99053,0.0,05/03/5804 +9.0124,48.59576,5339,1,23,22,19,41,4.55,15.0,fr,37984,106,1610041,1,1,Active Shallow Crust,0.0,89.99156,0.0,01/23/5339 +9.0124,48.59576,5361,6,20,3,35,11,4.65,5.0,fr,37985,107,1610052,1,1,Active Shallow Crust,0.0,89.98872,0.0,06/20/5361 +9.0124,48.59576,1653,11,7,10,43,38,4.75,5.0,fr,37986,33,1610064,1,1,Active Shallow Crust,0.0,89.98994,0.0,11/07/1653 +9.0124,48.59576,6683,11,29,4,1,16,4.85,15.0,fr,37987,133,1610086,1,1,Active Shallow Crust,128.8916,89.98917,0.0,11/29/6683 +9.0124,48.59576,3228,5,12,7,14,21,5.45,5.0,fr,37988,64,1610151,1,1,Active Shallow Crust,240.0307,57.99878,0.0,05/12/3228 +9.0124,48.59576,2978,7,28,23,11,16,5.65,5.0,fr,37989,59,1610172,1,1,Active Shallow Crust,0.0,89.99049,0.0,07/28/2978 +-7.08523,47.34936,7930,7,5,4,28,57,3.95,5.0,fr,37990,158,1610448,1,1,Active Shallow Crust,0.0,89.99138,0.0,07/05/7930 +2.21357,42.62161,7544,4,17,1,46,52,3.55,5.0,fr,37991,150,1610880,1,1,Active Shallow Crust,0.0,89.98887,0.0,04/17/7544 +2.21357,42.62161,1343,5,26,5,51,27,3.55,5.0,fr,37992,26,1610883,1,1,Active Shallow Crust,240.0114,57.99789,0.0,05/26/1343 +2.21357,42.62161,6986,10,19,5,35,45,3.55,15.0,fr,37993,139,1610884,1,1,Active Shallow Crust,240.0114,57.99789,0.0,10/19/6986 +2.21357,42.62161,4935,8,25,16,27,5,3.55,15.0,fr,37994,98,1610890,1,1,Active Shallow Crust,128.8958,89.99444,0.0,08/25/4935 +2.21357,42.62161,5640,2,4,4,9,50,3.55,27.5,fr,37995,112,1610891,1,1,Active Shallow Crust,128.8958,89.99444,0.0,02/04/5640 +2.21357,42.62161,7339,1,12,13,55,24,3.65,5.0,fr,37996,146,1610892,1,2,Active Shallow Crust,0.0,89.99008,0.0,01/12/7339 +2.21357,42.62161,8513,6,21,3,8,56,3.65,5.0,fr,37997,170,1610892,1,2,Active Shallow Crust,0.0,89.99008,0.0,06/21/8513 +2.21357,42.62161,5141,11,15,14,39,4,3.65,27.5,fr,37998,102,1610894,1,2,Active Shallow Crust,0.0,89.99008,0.0,11/15/5141 +2.21357,42.62161,1306,4,2,13,15,56,3.65,27.5,fr,37999,26,1610894,1,2,Active Shallow Crust,0.0,89.99008,0.0,04/02/1306 +2.21357,42.62161,4679,10,26,11,9,33,3.65,5.0,fr,38000,93,1610898,1,1,Active Shallow Crust,0.0,89.98997,-90.0,10/26/4679 +2.21357,42.62161,57,3,15,0,35,0,3.75,5.0,fr,38001,1,1610904,1,2,Active Shallow Crust,0.0,89.99116,0.0,03/15/0057 +2.21357,42.62161,1894,7,11,7,15,50,3.75,5.0,fr,38002,37,1610904,1,2,Active Shallow Crust,0.0,89.99116,0.0,07/11/1894 +2.21357,42.62161,4780,8,24,23,28,34,3.75,27.5,fr,38003,95,1610906,1,1,Active Shallow Crust,0.0,89.99116,0.0,08/24/4780 +2.21357,42.62161,6922,11,1,17,4,23,3.85,5.0,fr,38004,138,1610922,1,1,Active Shallow Crust,0.0,89.98937,-90.0,11/01/6922 +2.21357,42.62161,268,12,14,10,23,49,3.95,5.0,fr,38005,5,1610928,1,3,Active Shallow Crust,0.0,89.99064,0.0,12/14/0268 +2.21357,42.62161,3699,4,27,13,22,31,3.95,5.0,fr,38006,73,1610928,1,3,Active Shallow Crust,0.0,89.99064,0.0,04/27/3699 +2.21357,42.62161,4264,12,4,18,52,14,3.95,5.0,fr,38007,85,1610928,1,3,Active Shallow Crust,0.0,89.99064,0.0,12/04/4264 +2.21357,42.62161,1339,12,6,18,33,43,3.95,27.5,fr,38008,26,1610930,1,1,Active Shallow Crust,0.0,89.99064,0.0,12/06/1339 +2.21357,42.62161,4591,10,8,3,3,54,4.05,5.0,fr,38009,91,1610940,1,1,Active Shallow Crust,0.0,89.98957,0.0,10/08/4591 +2.21357,42.62161,5586,12,20,6,52,5,4.05,5.0,fr,38010,111,1610943,1,1,Active Shallow Crust,240.0051,58.00593,0.0,12/20/5586 +2.21357,42.62161,9943,11,2,17,27,53,4.15,5.0,fr,38011,198,1610955,1,1,Active Shallow Crust,240.0075,57.99718,0.0,11/02/9943 +2.21357,42.62161,5569,11,4,14,4,21,4.15,27.5,fr,38012,111,1610957,1,1,Active Shallow Crust,240.0075,57.99716,0.0,11/04/5569 +2.21357,42.62161,6942,6,17,9,51,52,4.55,5.0,fr,38013,138,1611003,1,1,Active Shallow Crust,240.0083,57.99712,0.0,06/17/6942 +2.21357,42.62161,2489,11,24,15,46,59,4.75,27.5,fr,38014,49,1611026,1,1,Active Shallow Crust,0.0,89.98975,0.0,11/24/2489 +1.01069,52.78608,9789,11,9,14,35,22,3.65,5.0,fr,38015,195,1611378,1,1,Active Shallow Crust,0.0,89.99038,-90.0,11/09/9789 +1.01069,52.78608,164,2,19,1,8,25,3.75,27.5,fr,38016,3,1611389,1,1,Active Shallow Crust,240.0091,58.01783,0.0,02/19/0164 +1.01069,52.78608,2956,8,30,8,47,46,3.85,5.0,fr,38017,59,1611396,1,1,Active Shallow Crust,0.0,89.99029,0.0,08/30/2956 +1.01069,52.78608,5383,6,8,3,16,11,4.05,5.0,fr,38018,107,1611420,1,1,Active Shallow Crust,0.0,89.98971,0.0,06/08/5383 +1.31708,44.10163,2246,11,9,6,45,0,3.75,5.0,fr,38019,44,1611867,1,1,Active Shallow Crust,240.008,58.01753,0.0,11/09/2246 +1.31708,44.10163,6111,9,28,22,2,37,3.85,5.0,fr,38020,122,1611876,1,1,Active Shallow Crust,0.0,89.98975,0.0,09/28/6111 +1.31708,44.10163,264,11,13,20,1,23,3.95,5.0,fr,38021,5,1611888,1,1,Active Shallow Crust,0.0,89.98972,0.0,11/13/0264 +1.31708,44.10163,8603,6,8,16,16,26,4.15,5.0,fr,38022,172,1611912,1,1,Active Shallow Crust,0.0,89.99002,0.0,06/08/8603 +1.31708,44.10163,9324,6,14,11,53,29,4.25,5.0,fr,38023,186,1611927,1,1,Active Shallow Crust,240.0071,57.99398,0.0,06/14/9324 +1.31708,44.10163,1616,12,18,7,10,15,4.35,27.5,fr,38024,32,1611941,1,1,Active Shallow Crust,240.008,57.99578,0.0,12/18/1616 +1.31708,44.10163,6853,2,18,20,9,49,4.75,15.0,fr,38025,137,1611985,1,1,Active Shallow Crust,0.0,89.99,0.0,02/18/6853 +0.84819,46.48953,6816,5,10,8,26,37,3.55,15.0,fr,38026,136,1612321,1,1,Active Shallow Crust,0.0,89.98959,0.0,05/10/6816 +0.84819,46.48953,2605,9,29,23,42,24,3.55,5.0,fr,38027,52,1612323,1,1,Active Shallow Crust,240.0124,57.99802,0.0,09/29/2605 +0.84819,46.48953,1141,1,20,3,25,43,3.55,15.0,fr,38028,22,1612327,1,2,Active Shallow Crust,0.0,89.99034,-90.0,01/20/1141 +0.84819,46.48953,9972,4,1,1,28,44,3.55,15.0,fr,38029,199,1612327,1,2,Active Shallow Crust,0.0,89.99034,-90.0,04/01/9972 +0.84819,46.48953,1490,10,12,12,20,10,3.55,5.0,fr,38030,29,1612329,1,1,Active Shallow Crust,128.8963,89.99393,0.0,10/12/1490 +0.84819,46.48953,2468,10,3,6,10,3,3.75,15.0,fr,38031,49,1612345,1,1,Active Shallow Crust,0.0,89.98966,0.0,10/03/2468 +0.84819,46.48953,6474,3,20,14,53,36,3.85,5.0,fr,38032,129,1612356,1,1,Active Shallow Crust,0.0,89.99017,0.0,03/20/6474 +0.84819,46.48953,1367,1,12,7,3,53,3.85,15.0,fr,38033,27,1612357,1,1,Active Shallow Crust,0.0,89.99017,0.0,01/12/1367 +0.84819,46.48953,447,1,18,3,29,31,3.95,27.5,fr,38034,8,1612370,1,1,Active Shallow Crust,0.0,89.99014,0.0,01/18/0447 +0.84819,46.48953,5993,1,12,3,47,46,4.05,5.0,fr,38035,119,1612383,1,1,Active Shallow Crust,240.006,58.00582,0.0,01/12/5993 +0.84819,46.48953,143,1,7,10,37,24,4.15,5.0,fr,38036,2,1612392,1,1,Active Shallow Crust,0.0,89.99,0.0,01/07/0143 +0.84819,46.48953,211,2,26,16,3,58,4.15,5.0,fr,38037,4,1612398,1,1,Active Shallow Crust,0.0,89.98988,-90.0,02/26/0211 +0.84819,46.48953,3122,11,3,12,2,11,4.25,5.0,fr,38038,62,1612407,1,1,Active Shallow Crust,240.0076,57.99404,0.0,11/03/3122 +0.84819,46.48953,8391,5,7,8,40,59,4.65,5.0,fr,38039,167,1612452,1,1,Active Shallow Crust,0.0,89.98997,0.0,05/07/8391 +0.84819,46.48953,4682,2,23,9,24,1,4.95,5.0,fr,38040,93,1612488,1,1,Active Shallow Crust,0.0,89.98995,0.0,02/23/4682 +3.07785,48.59902,7947,4,13,8,3,37,3.75,5.0,fr,38041,158,1612827,1,1,Active Shallow Crust,240.008,58.0178,0.0,04/13/7947 +3.07785,48.59902,4228,9,29,20,16,6,4.45,5.0,fr,38042,84,1612908,1,1,Active Shallow Crust,0.0,89.99053,0.0,09/29/4228 +1.28541,46.91858,6601,3,11,13,2,9,3.55,5.0,fr,38043,132,1613280,1,2,Active Shallow Crust,0.0,89.98967,0.0,03/11/6601 +1.28541,46.91858,8555,2,25,22,16,47,3.55,5.0,fr,38044,171,1613280,1,2,Active Shallow Crust,0.0,89.98967,0.0,02/25/8555 +1.28541,46.91858,7434,4,20,2,46,21,3.55,15.0,fr,38045,148,1613281,1,1,Active Shallow Crust,0.0,89.98967,0.0,04/20/7434 +1.28541,46.91858,9578,9,20,7,3,56,3.55,15.0,fr,38046,191,1613284,1,1,Active Shallow Crust,240.0123,57.99805,0.0,09/20/9578 +1.28541,46.91858,3759,4,17,11,5,5,3.55,5.0,fr,38047,75,1613286,1,1,Active Shallow Crust,0.0,89.98955,-90.0,04/17/3759 +1.28541,46.91858,7212,12,31,7,28,57,3.55,15.0,fr,38048,144,1613290,1,1,Active Shallow Crust,128.896,89.99397,0.0,12/31/7212 +1.28541,46.91858,4548,5,15,4,35,33,3.65,5.0,fr,38049,90,1613292,1,1,Active Shallow Crust,0.0,89.98926,0.0,05/15/4548 +1.28541,46.91858,7696,4,30,5,13,28,3.65,27.5,fr,38050,153,1613294,1,1,Active Shallow Crust,0.0,89.98926,0.0,04/30/7696 +1.28541,46.91858,2834,8,27,18,51,56,3.75,5.0,fr,38051,56,1613304,1,1,Active Shallow Crust,0.0,89.99043,0.0,08/27/2834 +1.28541,46.91858,4070,4,6,2,48,0,3.85,5.0,fr,38052,81,1613316,1,1,Active Shallow Crust,0.0,89.99025,0.0,04/06/4070 +1.28541,46.91858,4115,2,6,13,31,21,3.95,15.0,fr,38053,82,1613329,1,1,Active Shallow Crust,0.0,89.99022,0.0,02/06/4115 +1.28541,46.91858,1575,12,7,13,48,52,3.95,5.0,fr,38054,31,1613337,1,1,Active Shallow Crust,128.9004,89.99348,0.0,12/07/1575 +1.28541,46.91858,3720,4,9,12,51,14,4.15,15.0,fr,38055,74,1613353,1,3,Active Shallow Crust,0.0,89.98965,0.0,04/09/3720 +1.28541,46.91858,5105,2,26,6,46,7,4.15,15.0,fr,38056,102,1613353,1,3,Active Shallow Crust,0.0,89.98965,0.0,02/26/5105 +1.28541,46.91858,4393,9,26,8,4,41,4.15,15.0,fr,38057,87,1613353,1,3,Active Shallow Crust,0.0,89.98965,0.0,09/26/4393 +1.28541,46.91858,7167,11,26,14,50,27,4.75,5.0,fr,38058,143,1613424,1,1,Active Shallow Crust,0.0,89.99005,0.0,11/26/7167 +1.28541,46.91858,3255,8,9,14,0,10,4.85,15.0,fr,38059,65,1613443,1,1,Active Shallow Crust,0.0,89.98986,-90.0,08/09/3255 +-0.45709,46.66355,2793,9,21,17,21,56,3.55,5.0,fr,38060,55,1613760,1,3,Active Shallow Crust,0.0,89.99005,0.0,09/21/2793 +-0.45709,46.66355,952,4,18,22,19,30,3.55,5.0,fr,38061,19,1613760,1,3,Active Shallow Crust,0.0,89.99005,0.0,04/18/0952 +-0.45709,46.66355,3573,1,1,7,50,50,3.55,5.0,fr,38062,71,1613760,1,3,Active Shallow Crust,0.0,89.99005,0.0,01/01/3573 +-0.45709,46.66355,403,3,18,0,59,47,3.55,15.0,fr,38063,8,1613761,1,1,Active Shallow Crust,0.0,89.99005,0.0,03/18/0403 +-0.45709,46.66355,8268,7,18,19,24,39,3.55,15.0,fr,38064,165,1613764,1,1,Active Shallow Crust,240.0122,57.9982,0.0,07/18/8268 +-0.45709,46.66355,6000,1,12,8,23,52,3.55,27.5,fr,38065,119,1613765,1,1,Active Shallow Crust,240.0122,57.9981,0.0,01/12/6000 +-0.45709,46.66355,8791,11,1,8,57,30,3.65,5.0,fr,38066,175,1613772,1,4,Active Shallow Crust,0.0,89.98997,0.0,11/01/8791 +-0.45709,46.66355,842,8,28,20,44,9,3.65,5.0,fr,38067,16,1613772,1,4,Active Shallow Crust,0.0,89.98997,0.0,08/28/0842 +-0.45709,46.66355,3016,9,24,22,55,33,3.65,5.0,fr,38068,60,1613772,1,4,Active Shallow Crust,0.0,89.98997,0.0,09/24/3016 +-0.45709,46.66355,8618,8,19,21,56,10,3.65,5.0,fr,38069,172,1613772,1,4,Active Shallow Crust,0.0,89.98997,0.0,08/19/8618 +-0.45709,46.66355,4168,5,26,12,52,10,3.65,5.0,fr,38070,83,1613775,1,1,Active Shallow Crust,240.0011,58.01292,0.0,05/26/4168 +-0.45709,46.66355,6260,12,14,19,51,25,3.75,5.0,fr,38071,125,1613787,1,1,Active Shallow Crust,240.0083,58.01758,0.0,12/14/6260 +-0.45709,46.66355,377,11,14,22,2,49,3.75,15.0,fr,38072,7,1613791,1,1,Active Shallow Crust,0.0,89.98992,-90.0,11/14/0377 +-0.45709,46.66355,5128,12,26,2,21,24,3.85,5.0,fr,38073,102,1613796,1,1,Active Shallow Crust,0.0,89.9899,0.0,12/26/5128 +-0.45709,46.66355,1350,9,16,16,53,7,3.85,15.0,fr,38074,26,1613803,1,1,Active Shallow Crust,0.0,89.99009,-90.0,09/16/1350 +-0.45709,46.66355,5456,4,28,17,10,28,3.95,15.0,fr,38075,109,1613809,1,1,Active Shallow Crust,0.0,89.9899,0.0,04/28/5456 +-0.45709,46.66355,5283,9,24,6,34,40,3.95,5.0,fr,38076,105,1613814,1,1,Active Shallow Crust,0.0,89.99006,-90.0,09/24/5283 +-0.45709,46.66355,425,1,6,9,59,55,4.05,5.0,fr,38077,8,1613823,1,1,Active Shallow Crust,240.006,58.00582,0.0,01/06/0425 +-0.45709,46.66355,4991,12,17,19,11,6,4.25,5.0,fr,38078,99,1613844,1,1,Active Shallow Crust,0.0,89.98995,0.0,12/17/4991 +-0.45709,46.66355,8341,11,13,22,49,55,4.35,15.0,fr,38079,166,1613857,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/13/8341 +-0.45709,46.66355,9282,3,30,7,18,2,4.55,5.0,fr,38080,185,1613883,1,1,Active Shallow Crust,240.0093,57.99739,0.0,03/30/9282 +-0.45709,46.66355,620,4,29,6,8,33,4.75,15.0,fr,38081,12,1613905,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/29/0620 +-0.45709,46.66355,8791,11,23,4,27,7,5.45,5.0,fr,38082,175,1613988,1,1,Active Shallow Crust,0.0,89.99,0.0,11/23/8791 +3.65999,47.92918,7901,10,19,0,15,50,4.05,15.0,fr,38083,158,1614307,1,1,Active Shallow Crust,0.0,89.99039,-90.0,10/19/7901 +6.25174,50.66201,6947,1,25,21,16,34,3.55,5.0,fr,38084,138,1614720,1,3,Active Shallow Crust,0.0,89.98721,0.0,01/25/6947 +6.25174,50.66201,8210,12,25,6,35,50,3.55,5.0,fr,38085,164,1614720,1,3,Active Shallow Crust,0.0,89.98721,0.0,12/25/8210 +6.25174,50.66201,6617,6,20,3,40,28,3.55,5.0,fr,38086,132,1614720,1,3,Active Shallow Crust,0.0,89.98721,0.0,06/20/6617 +6.25174,50.66201,4358,4,2,18,31,16,3.55,15.0,fr,38087,87,1614721,1,2,Active Shallow Crust,0.0,89.98721,0.0,04/02/4358 +6.25174,50.66201,6573,4,10,5,44,38,3.55,15.0,fr,38088,131,1614721,1,2,Active Shallow Crust,0.0,89.98721,0.0,04/10/6573 +6.25174,50.66201,3945,1,31,18,38,48,3.55,27.5,fr,38089,78,1614722,1,1,Active Shallow Crust,0.0,89.98721,0.0,01/31/3945 +6.25174,50.66201,6614,5,9,7,10,23,3.55,5.0,fr,38090,132,1614723,1,1,Active Shallow Crust,240.0131,57.99809,0.0,05/09/6614 +6.25174,50.66201,7277,9,21,4,12,16,3.55,15.0,fr,38091,145,1614724,1,1,Active Shallow Crust,240.0131,57.99809,0.0,09/21/7277 +6.25174,50.66201,2637,6,27,21,56,0,3.55,15.0,fr,38092,52,1614727,1,1,Active Shallow Crust,0.0,89.98707,-90.0,06/27/2637 +6.25174,50.66201,761,8,31,18,35,36,3.55,15.0,fr,38093,15,1614730,1,2,Active Shallow Crust,128.8963,89.99361,0.0,08/31/0761 +6.25174,50.66201,7076,11,12,16,59,1,3.55,15.0,fr,38094,141,1614730,1,2,Active Shallow Crust,128.8963,89.99361,0.0,11/12/7076 +6.25174,50.66201,204,4,8,16,8,0,3.65,5.0,fr,38095,4,1614732,1,3,Active Shallow Crust,0.0,89.98861,0.0,04/08/0204 +6.25174,50.66201,195,9,9,20,51,4,3.65,5.0,fr,38096,3,1614732,1,3,Active Shallow Crust,0.0,89.98861,0.0,09/09/0195 +6.25174,50.66201,8056,7,11,4,43,18,3.65,5.0,fr,38097,161,1614732,1,3,Active Shallow Crust,0.0,89.98861,0.0,07/11/8056 +6.25174,50.66201,4456,7,1,16,39,39,3.65,15.0,fr,38098,89,1614733,1,2,Active Shallow Crust,0.0,89.98861,0.0,07/01/4456 +6.25174,50.66201,9901,8,11,5,5,51,3.65,15.0,fr,38099,198,1614733,1,2,Active Shallow Crust,0.0,89.98861,0.0,08/11/9901 +6.25174,50.66201,8269,2,19,8,45,3,3.65,5.0,fr,38100,165,1614735,1,2,Active Shallow Crust,240.0014,58.01349,0.0,02/19/8269 +6.25174,50.66201,457,12,23,19,18,52,3.65,5.0,fr,38101,9,1614735,1,2,Active Shallow Crust,240.0014,58.01349,0.0,12/23/0457 +6.25174,50.66201,1291,6,30,7,23,28,3.75,5.0,fr,38102,25,1614744,1,1,Active Shallow Crust,0.0,89.98985,0.0,06/30/1291 +6.25174,50.66201,9936,7,2,6,34,22,3.75,15.0,fr,38103,198,1614745,1,3,Active Shallow Crust,0.0,89.98985,0.0,07/02/9936 +6.25174,50.66201,6987,3,14,21,36,13,3.75,15.0,fr,38104,139,1614745,1,3,Active Shallow Crust,0.0,89.98985,0.0,03/14/6987 +6.25174,50.66201,3421,8,4,1,45,47,3.75,15.0,fr,38105,68,1614745,1,3,Active Shallow Crust,0.0,89.98985,0.0,08/04/3421 +6.25174,50.66201,3018,1,20,5,41,17,3.75,5.0,fr,38106,60,1614747,1,2,Active Shallow Crust,240.0094,58.0173,0.0,01/20/3018 +6.25174,50.66201,1110,1,23,11,29,3,3.75,5.0,fr,38107,22,1614747,1,2,Active Shallow Crust,240.0094,58.0173,0.0,01/23/1110 +6.25174,50.66201,1362,10,30,14,11,15,3.75,15.0,fr,38108,27,1614748,1,1,Active Shallow Crust,240.0094,58.0173,0.0,10/30/1362 +6.25174,50.66201,1985,3,15,0,21,57,3.85,5.0,fr,38109,39,1614756,1,2,Active Shallow Crust,0.0,89.99095,0.0,03/15/1985 +6.25174,50.66201,1431,6,2,4,47,15,3.85,5.0,fr,38110,28,1614756,1,2,Active Shallow Crust,0.0,89.99095,0.0,06/02/1431 +6.25174,50.66201,2399,7,24,5,17,34,3.85,15.0,fr,38111,47,1614757,1,1,Active Shallow Crust,0.0,89.99095,0.0,07/24/2399 +6.25174,50.66201,6795,2,24,23,22,10,3.85,15.0,fr,38112,135,1614760,1,1,Active Shallow Crust,240.0109,57.99813,0.0,02/24/6795 +6.25174,50.66201,4009,6,29,14,23,15,3.85,27.5,fr,38113,80,1614761,1,1,Active Shallow Crust,240.0109,57.99813,0.0,06/29/4009 +6.25174,50.66201,4143,12,31,3,11,32,3.85,5.0,fr,38114,82,1614762,1,1,Active Shallow Crust,0.0,89.99084,-90.0,12/31/4143 +6.25174,50.66201,5449,5,16,11,17,48,3.95,5.0,fr,38115,108,1614768,1,1,Active Shallow Crust,0.0,89.99194,0.0,05/16/5449 +6.25174,50.66201,4924,6,22,18,18,38,3.95,15.0,fr,38116,98,1614769,1,1,Active Shallow Crust,0.0,89.99194,0.0,06/22/4924 +6.25174,50.66201,9935,1,4,23,56,38,3.95,5.0,fr,38117,198,1614774,1,1,Active Shallow Crust,0.0,89.99184,-90.0,01/04/9935 +6.25174,50.66201,2379,10,2,17,15,30,4.05,5.0,fr,38118,47,1614780,1,1,Active Shallow Crust,0.0,89.98921,0.0,10/02/2379 +6.25174,50.66201,247,7,15,5,4,29,4.05,15.0,fr,38119,4,1614781,1,1,Active Shallow Crust,0.0,89.98921,0.0,07/15/0247 +6.25174,50.66201,9903,8,19,15,45,4,4.05,5.0,fr,38120,198,1614786,1,1,Active Shallow Crust,0.0,89.98909,-90.0,08/19/9903 +6.25174,50.66201,7436,7,19,16,38,56,4.15,5.0,fr,38121,148,1614792,1,1,Active Shallow Crust,0.0,89.99039,0.0,07/19/7436 +6.25174,50.66201,5447,9,16,10,55,9,4.15,5.0,fr,38122,108,1614801,1,1,Active Shallow Crust,128.8972,89.99359,0.0,09/16/5447 +6.25174,50.66201,8393,1,12,3,6,49,4.25,5.0,fr,38123,167,1614804,1,2,Active Shallow Crust,0.0,89.98858,0.0,01/12/8393 +6.25174,50.66201,8757,10,3,15,23,8,4.25,5.0,fr,38124,175,1614804,1,2,Active Shallow Crust,0.0,89.98858,0.0,10/03/8757 +6.25174,50.66201,7341,9,20,8,30,39,4.25,5.0,fr,38125,146,1614807,1,1,Active Shallow Crust,240.0085,57.9948,0.0,09/20/7341 +6.25174,50.66201,1199,11,15,22,6,15,4.25,5.0,fr,38126,23,1614810,1,1,Active Shallow Crust,0.0,89.99133,-90.0,11/15/1199 +6.25174,50.66201,1944,11,7,9,50,19,4.35,5.0,fr,38127,38,1614816,1,1,Active Shallow Crust,0.0,89.98982,0.0,11/07/1944 +6.25174,50.66201,8015,3,9,12,4,12,4.35,5.0,fr,38128,160,1614819,1,1,Active Shallow Crust,240.0096,57.9962,0.0,03/09/8015 +6.25174,50.66201,1072,2,26,3,58,19,4.35,5.0,fr,38129,21,1614825,1,1,Active Shallow Crust,128.8973,89.98273,0.0,02/26/1072 +6.25174,50.66201,4837,6,29,13,56,57,4.45,5.0,fr,38130,96,1614828,1,1,Active Shallow Crust,0.0,89.99093,0.0,06/29/4837 +6.25174,50.66201,6038,11,15,6,28,15,4.55,15.0,fr,38131,120,1614841,1,1,Active Shallow Crust,0.0,89.98989,0.0,11/15/6038 +6.25174,50.66201,6110,5,20,2,19,17,4.75,15.0,fr,38132,122,1614865,1,1,Active Shallow Crust,0.0,89.99036,0.0,05/20/6110 +6.25174,50.66201,8434,4,13,19,36,35,4.75,5.0,fr,38133,168,1614873,1,1,Active Shallow Crust,128.8872,89.98842,0.0,04/13/8434 +6.25174,50.66201,688,4,7,16,49,39,4.85,5.0,fr,38134,13,1614876,1,2,Active Shallow Crust,0.0,89.98998,0.0,04/07/0688 +6.25174,50.66201,7375,8,26,13,4,36,4.85,5.0,fr,38135,147,1614876,1,2,Active Shallow Crust,0.0,89.98998,0.0,08/26/7375 +6.25174,50.66201,9615,10,22,14,21,6,4.85,15.0,fr,38136,192,1614880,1,1,Active Shallow Crust,240.0192,58.00257,0.0,10/22/9615 +6.25174,50.66201,1532,3,16,0,38,47,5.15,27.5,fr,38137,30,1614914,1,1,Active Shallow Crust,0.0,89.98987,0.0,03/16/1532 +6.251741,50.66201,1775,1,10,3,57,2,6.05,5.357596,fr,38138,35,1615020,1,1,Active Shallow Crust,0.0,89.98993,0.0,01/10/1775 +1.93989,43.50677,8304,5,25,0,11,24,3.55,5.0,fr,38139,166,1615200,1,1,Active Shallow Crust,0.0,89.99086,0.0,05/25/8304 +1.93989,43.50677,2882,8,24,17,41,21,3.55,5.0,fr,38140,57,1615203,1,1,Active Shallow Crust,240.0119,57.99831,0.0,08/24/2882 +1.93989,43.50677,9424,3,2,20,51,44,3.65,5.0,fr,38141,188,1615212,1,1,Active Shallow Crust,0.0,89.99022,0.0,03/02/9424 +1.93989,43.50677,9624,2,19,12,15,1,3.95,5.0,fr,38142,192,1615254,1,1,Active Shallow Crust,0.0,89.98949,-90.0,02/19/9624 +2.95854,40.17885,6625,1,6,6,0,10,3.65,15.0,fr,38143,132,1615693,1,1,Active Shallow Crust,0.0,89.9897,0.0,01/06/6625 +2.95854,40.17885,8882,4,21,17,4,16,3.65,15.0,fr,38144,177,1615699,1,1,Active Shallow Crust,0.0,89.98958,-90.0,04/21/8882 +2.95854,40.17885,8557,11,18,22,6,32,3.75,15.0,fr,38145,171,1615711,1,1,Active Shallow Crust,0.0,89.99072,-90.0,11/18/8557 +2.95854,40.17885,754,2,2,20,33,12,4.15,5.0,fr,38146,15,1615752,1,1,Active Shallow Crust,0.0,89.99035,0.0,02/02/0754 +7.88164,45.11029,8193,8,21,5,0,56,3.55,27.5,fr,38147,163,1616162,1,1,Active Shallow Crust,0.0,89.99288,0.0,08/21/8193 +7.88164,45.11029,7217,11,21,18,40,6,3.55,5.0,fr,38148,144,1616169,1,1,Active Shallow Crust,128.8958,89.99288,0.0,11/21/7217 +7.88164,45.11029,3500,10,1,9,29,57,3.55,15.0,fr,38149,69,1616170,1,1,Active Shallow Crust,128.8958,89.99288,0.0,10/01/3500 +7.88164,45.11029,2597,12,15,15,9,13,3.65,15.0,fr,38150,51,1616173,1,2,Active Shallow Crust,0.0,89.98731,0.0,12/15/2597 +7.88164,45.11029,114,9,10,12,44,4,3.65,15.0,fr,38151,2,1616173,1,2,Active Shallow Crust,0.0,89.98731,0.0,09/10/0114 +7.88164,45.11029,3580,10,27,21,2,42,3.75,5.0,fr,38152,71,1616184,1,1,Active Shallow Crust,0.0,89.98869,0.0,10/27/3580 +7.88164,45.11029,3507,1,3,1,56,5,3.75,27.5,fr,38153,70,1616186,1,1,Active Shallow Crust,0.0,89.98869,0.0,01/03/3507 +7.88164,45.11029,2113,2,25,9,14,51,3.75,5.0,fr,38154,42,1616190,1,1,Active Shallow Crust,0.0,89.98856,-90.0,02/25/2113 +7.88164,45.11029,1220,6,10,4,8,47,3.95,5.0,fr,38155,24,1616208,1,1,Active Shallow Crust,0.0,89.99102,0.0,06/10/1220 +7.88164,45.11029,3244,10,29,4,41,32,3.95,27.5,fr,38156,64,1616216,1,1,Active Shallow Crust,0.0,89.99091,-90.0,10/29/3244 +7.88164,45.11029,4597,12,3,21,59,0,4.15,5.0,fr,38157,91,1616232,1,1,Active Shallow Crust,0.0,89.9893,0.0,12/03/4597 +7.88164,45.11029,5369,7,22,18,3,47,4.35,5.0,fr,38158,107,1616256,1,1,Active Shallow Crust,0.0,89.98866,0.0,07/22/5369 +7.88164,45.11029,3482,2,6,17,2,44,4.35,15.0,fr,38159,69,1616266,1,1,Active Shallow Crust,128.8985,89.98245,0.0,02/06/3482 +7.88164,45.11029,8582,8,2,18,2,38,4.75,5.0,fr,38160,171,1616304,1,1,Active Shallow Crust,0.0,89.98927,0.0,08/02/8582 +7.88164,45.11029,3416,10,23,3,22,52,5.85,5.0,fr,38161,68,1616436,1,1,Active Shallow Crust,0.0,89.98991,0.0,10/23/3416 +3.22134,44.50109,6175,9,25,7,4,44,3.55,5.0,fr,38162,123,1616640,1,2,Active Shallow Crust,0.0,89.98921,0.0,09/25/6175 +3.22134,44.50109,8236,8,9,22,2,38,3.55,5.0,fr,38163,164,1616640,1,2,Active Shallow Crust,0.0,89.98921,0.0,08/09/8236 +3.22134,44.50109,5957,9,8,11,37,9,3.55,15.0,fr,38164,119,1616641,1,2,Active Shallow Crust,0.0,89.98921,0.0,09/08/5957 +3.22134,44.50109,4146,6,30,0,27,14,3.55,15.0,fr,38165,82,1616641,1,2,Active Shallow Crust,0.0,89.98921,0.0,06/30/4146 +3.22134,44.50109,4109,11,21,6,43,13,3.55,15.0,fr,38166,82,1616650,1,1,Active Shallow Crust,128.8955,89.99461,0.0,11/21/4109 +3.22134,44.50109,7775,7,24,2,28,4,3.65,15.0,fr,38167,155,1616662,1,1,Active Shallow Crust,128.8999,89.96349,0.0,07/24/7775 +3.22134,44.50109,3626,6,25,3,57,0,3.85,5.0,fr,38168,72,1616676,1,1,Active Shallow Crust,0.0,89.98981,0.0,06/25/3626 +3.22134,44.50109,6772,7,1,12,32,37,3.95,5.0,fr,38169,135,1616688,1,1,Active Shallow Crust,0.0,89.99092,0.0,07/01/6772 +3.22134,44.50109,1251,3,17,10,57,14,4.75,5.0,fr,38170,25,1616784,1,1,Active Shallow Crust,0.0,89.99006,0.0,03/17/1251 +3.22134,44.50109,5986,4,27,6,20,4,4.75,15.0,fr,38171,119,1616788,1,1,Active Shallow Crust,240.0068,58.00433,0.0,04/27/5986 +3.22134,44.50109,2317,9,13,1,57,43,5.25,27.5,fr,38172,46,1616846,1,1,Active Shallow Crust,0.0,89.98984,0.0,09/13/2317 +-1.80638,50.31021,5833,3,5,20,29,26,3.85,5.0,fr,38173,116,1617159,1,1,Active Shallow Crust,240.0113,57.99788,0.0,03/05/5833 +-1.80638,50.31021,8726,2,7,3,11,59,4.25,5.0,fr,38174,174,1617204,1,1,Active Shallow Crust,0.0,89.98993,0.0,02/07/8726 +0.87659,51.88416,6904,12,29,8,30,46,3.55,15.0,fr,38175,138,1617601,1,1,Active Shallow Crust,0.0,89.98988,0.0,12/29/6904 +0.87659,51.88416,7601,11,9,8,30,57,3.75,15.0,fr,38176,152,1617625,1,1,Active Shallow Crust,0.0,89.99011,0.0,11/09/7601 +0.87659,51.88416,7656,7,25,1,45,23,3.85,5.0,fr,38177,153,1617636,1,1,Active Shallow Crust,0.0,89.99008,0.0,07/25/7656 +0.87659,51.88416,7959,6,14,0,7,44,3.85,5.0,fr,38178,159,1617645,1,1,Active Shallow Crust,128.895,89.99367,0.0,06/14/7959 +0.87659,51.88416,7374,3,19,0,44,44,4.05,27.5,fr,38179,147,1617662,1,1,Active Shallow Crust,0.0,89.98994,0.0,03/19/7374 +0.87659,51.88416,2292,6,1,5,36,13,4.35,27.5,fr,38180,45,1617701,1,1,Active Shallow Crust,240.0098,57.99622,0.0,06/01/2292 +0.87659,51.88416,6018,7,3,12,2,35,4.85,5.0,fr,38181,120,1617762,1,1,Active Shallow Crust,0.0,89.98995,-90.0,07/03/6018 +1.84881,46.15302,9837,6,16,16,41,6,3.55,5.0,fr,38182,196,1618080,1,1,Active Shallow Crust,0.0,89.98952,0.0,06/16/9837 +1.84881,46.15302,1290,1,8,15,51,31,3.55,5.0,fr,38183,25,1618083,1,1,Active Shallow Crust,240.0122,57.99811,0.0,01/08/1290 +1.84881,46.15302,6235,12,7,5,8,46,3.65,5.0,fr,38184,124,1618095,1,1,Active Shallow Crust,240.0011,58.01294,0.0,12/07/6235 +1.84881,46.15302,1630,1,21,21,51,46,3.65,27.5,fr,38185,32,1618097,1,1,Active Shallow Crust,240.0011,58.01285,0.0,01/21/1630 +1.84881,46.15302,6572,9,11,10,46,38,3.75,5.0,fr,38186,131,1618104,1,2,Active Shallow Crust,0.0,89.99029,0.0,09/11/6572 +1.84881,46.15302,3,6,26,8,22,29,3.75,5.0,fr,38187,0,1618104,1,2,Active Shallow Crust,0.0,89.99029,0.0,06/26/0003 +1.84881,46.15302,1350,12,28,6,40,11,3.85,15.0,fr,38188,26,1618117,1,1,Active Shallow Crust,0.0,89.99011,0.0,12/28/1350 +1.84881,46.15302,8100,2,15,1,13,57,4.05,5.0,fr,38189,161,1618140,1,1,Active Shallow Crust,0.0,89.99018,0.0,02/15/8100 +1.84881,46.15302,2265,11,25,0,38,53,4.15,15.0,fr,38190,45,1618162,1,1,Active Shallow Crust,128.8974,89.99387,0.0,11/25/2265 +1.84881,46.15302,8243,1,13,18,50,48,4.65,5.0,fr,38191,164,1618221,1,1,Active Shallow Crust,128.8912,89.98695,0.0,01/13/8243 +4.92582,48.99513,9061,11,20,15,17,42,4.15,15.0,fr,38192,181,1618633,1,1,Active Shallow Crust,0.0,89.99005,0.0,11/20/9061 +4.92582,48.99513,8763,12,6,1,11,20,4.75,15.0,fr,38193,175,1618705,1,1,Active Shallow Crust,0.0,89.99003,0.0,12/06/8763 +4.34744,49.03955,2348,2,28,7,40,23,3.95,5.0,fr,38194,46,1619088,1,1,Active Shallow Crust,0.0,89.99166,0.0,02/28/2348 +6.53685,51.06571,5539,8,5,10,13,49,3.55,5.0,fr,38195,110,1619520,1,1,Active Shallow Crust,0.0,89.98733,0.0,08/05/5539 +6.53685,51.06571,5417,5,22,9,26,6,3.55,15.0,fr,38196,108,1619521,1,1,Active Shallow Crust,0.0,89.98733,0.0,05/22/5417 +6.53685,51.06571,1009,7,31,3,43,11,3.55,5.0,fr,38197,20,1619529,1,1,Active Shallow Crust,128.895,89.99366,0.0,07/31/1009 +6.53685,51.06571,9509,7,4,18,32,33,3.65,5.0,fr,38198,190,1619532,1,1,Active Shallow Crust,0.0,89.9887,0.0,07/04/9509 +6.53685,51.06571,8750,2,19,1,17,56,3.65,15.0,fr,38199,174,1619533,1,2,Active Shallow Crust,0.0,89.9887,0.0,02/19/8750 +6.53685,51.06571,2935,4,15,16,54,20,3.65,15.0,fr,38200,58,1619533,1,2,Active Shallow Crust,0.0,89.9887,0.0,04/15/2935 +6.53685,51.06571,3343,2,21,22,0,3,3.65,27.5,fr,38201,66,1619534,1,1,Active Shallow Crust,0.0,89.9887,0.0,02/21/3343 +6.53685,51.06571,290,7,5,1,31,46,3.65,5.0,fr,38202,5,1619541,1,1,Active Shallow Crust,128.8996,89.96362,0.0,07/05/0290 +6.53685,51.06571,1072,5,30,0,19,25,3.75,5.0,fr,38203,21,1619544,1,2,Active Shallow Crust,0.0,89.98993,0.0,05/30/1072 +6.53685,51.06571,3788,1,11,21,35,19,3.75,5.0,fr,38204,75,1619544,1,2,Active Shallow Crust,0.0,89.98993,0.0,01/11/3788 +6.53685,51.06571,5993,2,18,19,28,12,3.75,5.0,fr,38205,119,1619547,1,1,Active Shallow Crust,240.0082,58.01731,0.0,02/18/5993 +6.53685,51.06571,6330,6,10,12,24,54,3.75,15.0,fr,38206,126,1619554,1,1,Active Shallow Crust,128.8954,89.96757,0.0,06/10/6330 +6.53685,51.06571,6562,4,16,2,19,51,3.85,15.0,fr,38207,131,1619557,1,1,Active Shallow Crust,0.0,89.99103,0.0,04/16/6562 +6.53685,51.06571,6510,7,4,17,51,49,3.85,27.5,fr,38208,130,1619567,1,1,Active Shallow Crust,128.8943,89.99327,0.0,07/04/6510 +6.53685,51.06571,7965,2,19,5,29,42,3.95,5.0,fr,38209,159,1619571,1,1,Active Shallow Crust,240.0212,58.00448,0.0,02/19/7965 +6.53685,51.06571,5654,12,30,13,58,49,3.95,5.0,fr,38210,113,1619574,1,1,Active Shallow Crust,0.0,89.99191,-90.0,12/30/5654 +6.53685,51.06571,3009,2,23,3,41,28,4.05,5.0,fr,38211,60,1619580,1,2,Active Shallow Crust,0.0,89.98931,0.0,02/23/3009 +6.53685,51.06571,3387,12,5,11,27,28,4.05,5.0,fr,38212,67,1619580,1,2,Active Shallow Crust,0.0,89.98931,0.0,12/05/3387 +6.53685,51.06571,3510,6,15,5,23,13,4.05,27.5,fr,38213,70,1619588,1,1,Active Shallow Crust,0.0,89.98918,-90.0,06/15/3510 +6.53685,51.06571,2003,8,6,19,23,4,4.15,5.0,fr,38214,40,1619601,1,1,Active Shallow Crust,128.8972,89.99365,0.0,08/06/2003 +6.53685,51.06571,8783,1,30,8,22,41,4.15,15.0,fr,38215,175,1619602,1,1,Active Shallow Crust,128.8972,89.99365,0.0,01/30/8783 +6.53685,51.06571,5898,5,27,5,43,35,4.35,5.0,fr,38216,117,1619616,1,1,Active Shallow Crust,0.0,89.98991,0.0,05/27/5898 +6.53685,51.06571,2999,1,31,5,38,26,4.55,15.0,fr,38217,59,1619641,1,1,Active Shallow Crust,0.0,89.98998,0.0,01/31/2999 +6.53685,51.06571,277,11,23,11,0,58,4.75,15.0,fr,38218,5,1619665,1,1,Active Shallow Crust,0.0,89.99045,0.0,11/23/0277 +6.53685,51.06571,7639,6,2,3,48,9,5.05,5.0,fr,38219,152,1619700,1,1,Active Shallow Crust,0.0,89.98985,0.0,06/02/7639 +6.53685,51.06571,75,7,10,7,51,36,5.35,5.0,fr,38220,1,1619736,1,1,Active Shallow Crust,0.0,89.98962,0.0,07/10/0075 +6.53685,51.06571,9443,6,20,11,47,40,5.85,27.5,fr,38221,188,1619798,1,1,Active Shallow Crust,0.0,89.99012,0.0,06/20/9443 +1.89785,45.88912,1316,9,30,3,31,43,3.55,5.0,fr,38222,26,1620000,1,2,Active Shallow Crust,0.0,89.98947,0.0,09/30/1316 +1.89785,45.88912,2563,3,31,6,4,32,3.55,5.0,fr,38223,51,1620000,1,2,Active Shallow Crust,0.0,89.98947,0.0,03/31/2563 +1.89785,45.88912,7013,8,6,8,14,27,3.65,15.0,fr,38224,140,1620013,1,1,Active Shallow Crust,0.0,89.99062,0.0,08/06/7013 +1.89785,45.88912,4995,3,19,2,9,26,3.65,5.0,fr,38225,99,1620021,1,1,Active Shallow Crust,128.9005,89.96351,0.0,03/19/4995 +1.89785,45.88912,8251,11,6,20,32,12,3.75,15.0,fr,38226,165,1620025,1,1,Active Shallow Crust,0.0,89.99024,0.0,11/06/8251 +1.89785,45.88912,9992,12,26,0,39,38,3.85,5.0,fr,38227,199,1620036,1,1,Active Shallow Crust,0.0,89.99006,0.0,12/26/9992 +1.89785,45.88912,5270,7,15,19,22,24,3.85,5.0,fr,38228,105,1620039,1,1,Active Shallow Crust,240.0108,57.99773,0.0,07/15/5270 +1.89785,45.88912,4634,5,1,18,37,58,3.95,5.0,fr,38229,92,1620048,1,2,Active Shallow Crust,0.0,89.99004,0.0,05/01/4634 +1.89785,45.88912,4051,12,8,15,51,51,3.95,5.0,fr,38230,81,1620048,1,2,Active Shallow Crust,0.0,89.99004,0.0,12/08/4051 +1.89785,45.88912,3402,1,26,2,11,54,4.15,5.0,fr,38231,68,1620072,1,1,Active Shallow Crust,0.0,89.99033,0.0,01/26/3402 +1.89785,45.88912,74,11,21,5,29,56,4.95,15.0,fr,38232,1,1620169,1,1,Active Shallow Crust,0.0,89.98985,0.0,11/21/0074 +7.12626,44.23126,9741,12,30,5,10,45,3.55,5.0,fr,38233,194,1620480,1,1,Active Shallow Crust,0.0,89.99277,0.0,12/30/9741 +7.12626,44.23126,6161,4,30,17,41,52,3.55,15.0,fr,38234,123,1620481,1,1,Active Shallow Crust,0.0,89.99277,0.0,04/30/6161 +7.12626,44.23126,1003,11,30,21,48,14,3.55,27.5,fr,38235,20,1620482,1,1,Active Shallow Crust,0.0,89.99277,0.0,11/30/1003 +7.12626,44.23126,279,9,11,1,19,13,3.55,15.0,fr,38236,5,1620484,1,1,Active Shallow Crust,240.0116,57.99834,0.0,09/11/0279 +7.12626,44.23126,5386,8,14,13,37,13,3.55,5.0,fr,38237,107,1620489,1,1,Active Shallow Crust,128.8967,89.99277,0.0,08/14/5386 +7.12626,44.23126,7340,3,1,1,3,51,3.65,5.0,fr,38238,146,1620492,1,2,Active Shallow Crust,0.0,89.98712,0.0,03/01/7340 +7.12626,44.23126,1063,2,14,8,41,8,3.65,5.0,fr,38239,21,1620492,1,2,Active Shallow Crust,0.0,89.98712,0.0,02/14/1063 +7.12626,44.23126,4315,11,26,23,14,56,3.65,15.0,fr,38240,86,1620493,1,1,Active Shallow Crust,0.0,89.98712,0.0,11/26/4315 +7.12626,44.23126,2512,9,10,22,16,54,3.75,5.0,fr,38241,50,1620504,1,1,Active Shallow Crust,0.0,89.98852,0.0,09/10/2512 +7.12626,44.23126,3890,1,31,0,19,41,3.75,5.0,fr,38242,77,1620510,1,1,Active Shallow Crust,0.0,89.98839,-90.0,01/31/3890 +7.12626,44.23126,3926,9,27,18,11,1,3.85,5.0,fr,38243,78,1620516,1,1,Active Shallow Crust,0.0,89.98977,0.0,09/27/3926 +7.12626,44.23126,7318,12,17,8,37,29,3.85,15.0,fr,38244,146,1620517,1,1,Active Shallow Crust,0.0,89.98977,0.0,12/17/7318 +7.12626,44.23126,9674,7,11,6,57,16,3.85,27.5,fr,38245,193,1620518,1,1,Active Shallow Crust,0.0,89.98977,0.0,07/11/9674 +7.12626,44.23126,985,12,10,5,6,40,3.85,15.0,fr,38246,19,1620526,1,1,Active Shallow Crust,128.8961,89.99489,0.0,12/10/0985 +7.12626,44.23126,5066,2,15,22,9,7,3.95,5.0,fr,38247,101,1620528,1,1,Active Shallow Crust,0.0,89.99088,0.0,02/15/5066 +7.12626,44.23126,5188,11,12,12,58,36,3.95,15.0,fr,38248,103,1620529,1,1,Active Shallow Crust,0.0,89.99088,0.0,11/12/5188 +7.12626,44.23126,531,5,3,8,38,45,3.95,5.0,fr,38249,10,1620531,1,2,Active Shallow Crust,240.0199,58.00468,0.0,05/03/0531 +7.12626,44.23126,2706,2,22,9,36,36,3.95,5.0,fr,38250,54,1620531,1,2,Active Shallow Crust,240.0199,58.00468,0.0,02/22/2706 +7.12626,44.23126,9671,5,18,5,2,59,3.95,15.0,fr,38251,193,1620532,1,1,Active Shallow Crust,240.0199,58.00468,0.0,05/18/9671 +7.12626,44.23126,8232,7,24,13,53,47,4.05,5.0,fr,38252,164,1620543,1,1,Active Shallow Crust,240.0059,58.00603,0.0,07/24/8232 +7.12626,44.23126,391,5,27,16,46,51,4.15,5.0,fr,38253,7,1620552,1,1,Active Shallow Crust,0.0,89.98914,0.0,05/27/0391 +7.12626,44.23126,9928,2,26,3,28,23,4.15,15.0,fr,38254,198,1620556,1,1,Active Shallow Crust,240.0081,57.99725,0.0,02/26/9928 +7.12626,44.23126,9658,11,7,14,37,27,4.15,15.0,fr,38255,193,1620559,1,1,Active Shallow Crust,0.0,89.98901,-90.0,11/07/9658 +7.12626,44.23126,8323,5,11,13,23,23,4.15,5.0,fr,38256,166,1620561,1,1,Active Shallow Crust,128.8977,89.99457,0.0,05/11/8323 +7.12626,44.23126,291,12,18,23,52,58,4.25,5.0,fr,38257,5,1620564,1,1,Active Shallow Crust,0.0,89.99032,0.0,12/18/0291 +7.12626,44.23126,393,12,17,12,16,11,4.25,5.0,fr,38258,7,1620573,1,1,Active Shallow Crust,128.8956,89.98087,0.0,12/17/0393 +7.12626,44.23126,7778,10,23,4,2,28,4.35,5.0,fr,38259,155,1620576,1,1,Active Shallow Crust,0.0,89.99137,0.0,10/23/7778 +7.12626,44.23126,3944,6,16,0,8,3,4.35,15.0,fr,38260,78,1620577,1,2,Active Shallow Crust,0.0,89.99137,0.0,06/16/3944 +7.12626,44.23126,6915,5,29,5,25,38,4.35,15.0,fr,38261,138,1620577,1,2,Active Shallow Crust,0.0,89.99137,0.0,05/29/6915 +7.12626,44.23126,2771,2,23,0,46,4,4.35,5.0,fr,38262,55,1620579,1,1,Active Shallow Crust,240.0082,57.99558,0.0,02/23/2771 +7.12626,44.23126,1660,6,3,16,13,41,4.45,15.0,fr,38263,33,1620592,1,1,Active Shallow Crust,240.0047,57.99472,0.0,06/03/1660 +-1.43476,46.71903,8742,6,30,13,49,44,3.55,5.0,fr,38264,174,1620960,1,1,Active Shallow Crust,0.0,89.98963,0.0,06/30/8742 +-1.43476,46.71903,9817,12,26,16,6,8,3.55,15.0,fr,38265,196,1620961,1,2,Active Shallow Crust,0.0,89.98963,0.0,12/26/9817 +-1.43476,46.71903,7187,2,13,13,12,40,3.55,15.0,fr,38266,143,1620961,1,2,Active Shallow Crust,0.0,89.98963,0.0,02/13/7187 +-1.43476,46.71903,8773,4,8,15,22,24,3.65,5.0,fr,38267,175,1620972,1,2,Active Shallow Crust,0.0,89.99076,0.0,04/08/8773 +-1.43476,46.71903,9086,7,24,6,3,6,3.65,5.0,fr,38268,181,1620972,1,2,Active Shallow Crust,0.0,89.99076,0.0,07/24/9086 +-1.43476,46.71903,2864,1,5,9,36,31,3.65,15.0,fr,38269,57,1620973,1,2,Active Shallow Crust,0.0,89.99076,0.0,01/05/2864 +-1.43476,46.71903,6536,1,7,14,28,51,3.65,15.0,fr,38270,130,1620973,1,2,Active Shallow Crust,0.0,89.99076,0.0,01/07/6536 +-1.43476,46.71903,2349,11,19,11,32,44,3.65,27.5,fr,38271,46,1620977,1,1,Active Shallow Crust,240.0009,58.01307,0.0,11/19/2349 +-1.43476,46.71903,2047,12,22,22,20,34,3.75,15.0,fr,38272,40,1620985,1,1,Active Shallow Crust,0.0,89.99039,0.0,12/22/2047 +-1.43476,46.71903,7819,11,19,7,47,21,3.75,15.0,fr,38273,156,1620994,1,1,Active Shallow Crust,128.8965,89.96737,0.0,11/19/7819 +-1.43476,46.71903,4942,6,27,15,49,4,3.95,5.0,fr,38274,98,1621008,1,1,Active Shallow Crust,0.0,89.99019,0.0,06/27/4942 +-1.43476,46.71903,304,7,12,5,18,26,4.15,5.0,fr,38275,6,1621032,1,3,Active Shallow Crust,0.0,89.9896,0.0,07/12/0304 +-1.43476,46.71903,5537,12,9,10,4,59,4.15,5.0,fr,38276,110,1621032,1,3,Active Shallow Crust,0.0,89.9896,0.0,12/09/5537 +-1.43476,46.71903,7839,5,23,5,14,1,4.15,5.0,fr,38277,156,1621032,1,3,Active Shallow Crust,0.0,89.9896,0.0,05/23/7839 +-1.43476,46.71903,3228,12,17,21,45,38,4.15,15.0,fr,38278,64,1621033,1,1,Active Shallow Crust,0.0,89.9896,0.0,12/17/3228 +-1.43476,46.71903,4844,10,24,0,39,57,4.25,5.0,fr,38279,96,1621044,1,3,Active Shallow Crust,0.0,89.98996,0.0,10/24/4844 +-1.43476,46.71903,6508,8,25,17,38,36,4.25,5.0,fr,38280,130,1621044,1,3,Active Shallow Crust,0.0,89.98996,0.0,08/25/6508 +-1.43476,46.71903,8236,11,10,2,41,19,4.25,5.0,fr,38281,164,1621044,1,3,Active Shallow Crust,0.0,89.98996,0.0,11/10/8236 +-1.43476,46.71903,7331,4,18,7,3,28,4.25,5.0,fr,38282,146,1621047,1,1,Active Shallow Crust,240.0076,57.99409,0.0,04/18/7331 +-1.43476,46.71903,4830,3,1,7,23,26,4.55,15.0,fr,38283,96,1621081,1,1,Active Shallow Crust,0.0,89.99016,0.0,03/01/4830 +-1.43476,46.71903,2861,7,15,0,49,47,4.85,5.0,fr,38284,57,1621116,1,1,Active Shallow Crust,0.0,89.98994,0.0,07/15/2861 +-1.43476,46.71903,9672,4,11,4,44,14,5.05,5.0,fr,38285,193,1621140,1,1,Active Shallow Crust,0.0,89.98985,0.0,04/11/9672 +4.04723,41.55716,1603,1,4,3,59,20,4.05,5.0,fr,38286,32,1621506,1,1,Active Shallow Crust,0.0,89.99142,-90.0,01/04/1603 +4.04723,41.55716,5643,11,25,0,48,1,4.25,5.0,fr,38287,112,1621524,1,1,Active Shallow Crust,0.0,89.98989,0.0,11/25/5643 +4.29862,45.05398,1558,8,6,15,54,56,3.65,27.5,fr,38288,31,1621934,1,1,Active Shallow Crust,0.0,89.9873,0.0,08/06/1558 +4.29862,45.05398,1509,5,27,5,46,39,3.85,5.0,fr,38289,30,1621959,1,1,Active Shallow Crust,240.0113,57.99812,0.0,05/27/1509 +4.29862,45.05398,1468,8,13,12,39,43,4.05,5.0,fr,38290,29,1621989,1,1,Active Shallow Crust,128.8895,89.99399,0.0,08/13/1468 +4.29862,45.05398,9301,8,28,6,46,50,4.15,5.0,fr,38291,186,1622001,1,1,Active Shallow Crust,128.8973,89.99464,0.0,08/28/9301 +4.29862,45.05398,9191,12,26,11,33,40,4.45,5.0,fr,38292,183,1622031,1,1,Active Shallow Crust,240.005,57.99479,0.0,12/26/9191 +4.29862,45.05398,2405,5,8,16,19,1,4.65,5.0,fr,38293,48,1622052,1,1,Active Shallow Crust,0.0,89.98996,0.0,05/08/2405 +4.29862,45.05398,8243,8,7,16,49,17,4.95,27.5,fr,38294,164,1622093,1,1,Active Shallow Crust,240.0112,58.00444,0.0,08/07/8243 +6.22,48.78758,7574,7,5,15,57,45,3.55,5.0,fr,38295,151,1622400,1,1,Active Shallow Crust,0.0,89.98671,0.0,07/05/7574 +6.22,48.78758,6378,3,5,10,16,4,3.65,5.0,fr,38296,127,1622412,1,3,Active Shallow Crust,0.0,89.98816,0.0,03/05/6378 +6.22,48.78758,6559,4,16,21,12,21,3.65,5.0,fr,38297,131,1622412,1,3,Active Shallow Crust,0.0,89.98816,0.0,04/16/6559 +6.22,48.78758,7697,11,30,13,29,19,3.65,5.0,fr,38298,153,1622412,1,3,Active Shallow Crust,0.0,89.98816,0.0,11/30/7697 +6.22,48.78758,2069,12,6,18,0,44,3.65,5.0,fr,38299,41,1622418,1,1,Active Shallow Crust,0.0,89.98802,-90.0,12/06/2069 +6.22,48.78758,5273,7,16,20,7,22,3.85,5.0,fr,38300,105,1622436,1,2,Active Shallow Crust,0.0,89.99059,0.0,07/16/5273 +6.22,48.78758,7762,4,15,10,17,43,3.85,5.0,fr,38301,155,1622436,1,2,Active Shallow Crust,0.0,89.99059,0.0,04/15/7762 +6.22,48.78758,5716,6,6,21,0,38,4.05,27.5,fr,38302,114,1622462,1,1,Active Shallow Crust,0.0,89.98879,0.0,06/06/5716 +6.22,48.78758,1186,12,21,18,19,43,4.05,5.0,fr,38303,23,1622466,1,1,Active Shallow Crust,0.0,89.98866,-90.0,12/21/1186 +-2.93191,50.22919,1112,2,8,18,36,9,4.55,5.0,fr,38304,22,1623009,1,1,Active Shallow Crust,128.893,89.98586,0.0,02/08/1112 +-2.93191,50.22919,5456,12,3,14,38,47,4.85,15.0,fr,38305,109,1623037,1,1,Active Shallow Crust,0.0,89.98989,0.0,12/03/5456 +1.32537,52.92242,9304,2,9,4,36,48,5.65,5.0,fr,38306,186,1623612,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/09/9304 +3.15861,45.40789,690,3,21,11,4,39,3.55,5.0,fr,38307,13,1624320,1,1,Active Shallow Crust,0.0,89.98938,0.0,03/21/0690 +3.15861,45.40789,7254,10,9,12,25,44,3.55,15.0,fr,38308,145,1624321,1,2,Active Shallow Crust,0.0,89.98938,0.0,10/09/7254 +3.15861,45.40789,4063,7,5,22,41,7,3.55,15.0,fr,38309,81,1624321,1,2,Active Shallow Crust,0.0,89.98938,0.0,07/05/4063 +3.15861,45.40789,8655,3,19,16,53,21,3.55,15.0,fr,38310,173,1624324,1,1,Active Shallow Crust,240.0123,57.9978,0.0,03/19/8655 +3.15861,45.40789,320,12,25,16,21,22,3.55,27.5,fr,38311,6,1624328,1,1,Active Shallow Crust,0.0,89.98926,-90.0,12/25/0320 +3.15861,45.40789,3877,3,16,10,56,11,3.65,5.0,fr,38312,77,1624332,1,1,Active Shallow Crust,0.0,89.99053,0.0,03/16/3877 +3.15861,45.40789,6120,4,16,8,25,57,3.65,5.0,fr,38313,122,1624338,1,1,Active Shallow Crust,0.0,89.99043,-90.0,04/16/6120 +3.15861,45.40789,5745,10,18,15,5,42,3.75,5.0,fr,38314,114,1624344,1,1,Active Shallow Crust,0.0,89.98875,0.0,10/18/5745 +3.15861,45.40789,9707,6,12,7,56,17,3.75,15.0,fr,38315,194,1624345,1,1,Active Shallow Crust,0.0,89.98875,0.0,06/12/9707 +3.15861,45.40789,9046,1,16,7,7,12,3.85,5.0,fr,38316,180,1624356,1,1,Active Shallow Crust,0.0,89.98997,0.0,01/16/9046 +3.15861,45.40789,36,6,29,21,47,14,3.85,15.0,fr,38317,0,1624357,1,2,Active Shallow Crust,0.0,89.98997,0.0,06/29/0036 +3.15861,45.40789,2285,8,5,9,38,2,3.85,15.0,fr,38318,45,1624357,1,2,Active Shallow Crust,0.0,89.98997,0.0,08/05/2285 +3.15861,45.40789,4962,12,3,6,50,6,3.95,5.0,fr,38319,99,1624368,1,1,Active Shallow Crust,0.0,89.99107,0.0,12/03/4962 +3.15861,45.40789,8776,8,7,5,8,40,3.95,15.0,fr,38320,175,1624375,1,1,Active Shallow Crust,0.0,89.99096,-90.0,08/07/8776 +3.15861,45.40789,9708,6,20,18,6,53,4.05,5.0,fr,38321,194,1624380,1,2,Active Shallow Crust,0.0,89.99004,0.0,06/20/9708 +3.15861,45.40789,2079,6,14,12,25,49,4.05,5.0,fr,38322,41,1624380,1,2,Active Shallow Crust,0.0,89.99004,0.0,06/14/2079 +3.15861,45.40789,5069,3,24,22,40,14,4.15,15.0,fr,38323,101,1624402,1,1,Active Shallow Crust,128.8973,89.99379,0.0,03/24/5069 +3.15861,45.40789,1137,2,16,22,43,23,4.25,5.0,fr,38324,22,1624404,1,1,Active Shallow Crust,0.0,89.99051,0.0,02/16/1137 +3.15861,45.40789,9963,7,1,5,17,37,4.55,5.0,fr,38325,199,1624440,1,1,Active Shallow Crust,0.0,89.98992,0.0,07/01/9963 +3.15861,45.40789,6329,8,5,2,33,14,4.55,15.0,fr,38326,126,1624447,1,1,Active Shallow Crust,0.0,89.98981,-90.0,08/05/6329 +4.02177,50.11365,3702,10,8,10,23,22,3.55,5.0,fr,38327,74,1624800,1,2,Active Shallow Crust,0.0,89.98707,0.0,10/08/3702 +4.02177,50.11365,6788,6,2,17,0,38,3.55,5.0,fr,38328,135,1624800,1,2,Active Shallow Crust,0.0,89.98707,0.0,06/02/6788 +4.02177,50.11365,4595,5,22,0,42,47,3.65,5.0,fr,38329,91,1624812,1,2,Active Shallow Crust,0.0,89.98847,0.0,05/22/4595 +4.02177,50.11365,9804,4,7,8,4,27,3.65,5.0,fr,38330,196,1624812,1,2,Active Shallow Crust,0.0,89.98847,0.0,04/07/9804 +4.02177,50.11365,2933,1,6,12,32,14,3.65,5.0,fr,38331,58,1624815,1,1,Active Shallow Crust,240.0003,58.01315,0.0,01/06/2933 +4.02177,50.11365,4889,9,10,6,55,46,3.65,5.0,fr,38332,97,1624818,1,1,Active Shallow Crust,0.0,89.98834,-90.0,09/10/4889 +4.02177,50.11365,8706,11,3,4,53,28,3.65,5.0,fr,38333,174,1624821,1,1,Active Shallow Crust,128.8995,89.96359,0.0,11/03/8706 +4.02177,50.11365,511,10,6,20,55,53,3.75,5.0,fr,38334,10,1624827,1,1,Active Shallow Crust,240.0089,58.01757,0.0,10/06/0511 +6.74282,46.15904,8906,4,23,3,48,9,3.55,5.0,fr,38335,178,1625280,1,7,Active Shallow Crust,0.0,89.99302,0.0,04/23/8906 +6.74282,46.15904,1380,2,29,13,15,49,3.55,5.0,fr,38336,27,1625280,1,7,Active Shallow Crust,0.0,89.99302,0.0,02/29/1380 +6.74282,46.15904,7355,4,19,3,32,8,3.55,5.0,fr,38337,147,1625280,1,7,Active Shallow Crust,0.0,89.99302,0.0,04/19/7355 +6.74282,46.15904,6671,11,28,14,24,32,3.55,5.0,fr,38338,133,1625280,1,7,Active Shallow Crust,0.0,89.99302,0.0,11/28/6671 +6.74282,46.15904,2429,5,26,22,22,23,3.55,5.0,fr,38339,48,1625280,1,7,Active Shallow Crust,0.0,89.99302,0.0,05/26/2429 +6.74282,46.15904,5499,2,2,23,5,39,3.55,5.0,fr,38340,109,1625280,1,7,Active Shallow Crust,0.0,89.99302,0.0,02/02/5499 +6.74282,46.15904,7456,7,19,9,29,22,3.55,5.0,fr,38341,149,1625280,1,7,Active Shallow Crust,0.0,89.99302,0.0,07/19/7456 +6.74282,46.15904,6060,3,28,20,2,21,3.55,15.0,fr,38342,121,1625281,1,1,Active Shallow Crust,0.0,89.99302,0.0,03/28/6060 +6.74282,46.15904,2550,8,30,8,57,9,3.55,27.5,fr,38343,50,1625282,1,2,Active Shallow Crust,0.0,89.99301,0.0,08/30/2550 +6.74282,46.15904,5332,4,17,10,18,58,3.55,27.5,fr,38344,106,1625282,1,2,Active Shallow Crust,0.0,89.99301,0.0,04/17/5332 +6.74282,46.15904,9778,12,23,15,29,24,3.65,5.0,fr,38345,195,1625292,1,3,Active Shallow Crust,0.0,89.98755,0.0,12/23/9778 +6.74282,46.15904,2886,11,4,15,39,43,3.65,5.0,fr,38346,57,1625292,1,3,Active Shallow Crust,0.0,89.98755,0.0,11/04/2886 +6.74282,46.15904,5148,5,3,4,23,4,3.65,5.0,fr,38347,102,1625292,1,3,Active Shallow Crust,0.0,89.98755,0.0,05/03/5148 +6.74282,46.15904,8314,3,14,8,45,2,3.65,5.0,fr,38348,166,1625295,1,1,Active Shallow Crust,240.0007,58.01331,0.0,03/14/8314 +6.74282,46.15904,3726,11,22,9,41,44,3.65,5.0,fr,38349,74,1625298,1,1,Active Shallow Crust,0.0,89.9874,-90.0,11/22/3726 +6.74282,46.15904,2819,5,30,10,28,21,3.65,15.0,fr,38350,56,1625302,1,2,Active Shallow Crust,128.8995,89.96352,0.0,05/30/2819 +6.74282,46.15904,8778,9,3,10,16,35,3.65,15.0,fr,38351,175,1625302,1,2,Active Shallow Crust,128.8995,89.96352,0.0,09/03/8778 +6.74282,46.15904,2526,11,28,8,37,58,3.75,5.0,fr,38352,50,1625304,1,1,Active Shallow Crust,0.0,89.98891,0.0,11/28/2526 +6.74282,46.15904,6679,2,11,9,40,56,3.75,15.0,fr,38353,133,1625305,1,3,Active Shallow Crust,0.0,89.98891,0.0,02/11/6679 +6.74282,46.15904,6621,7,10,2,24,54,3.75,15.0,fr,38354,132,1625305,1,3,Active Shallow Crust,0.0,89.98891,0.0,07/10/6621 +6.74282,46.15904,2354,10,3,16,45,31,3.75,15.0,fr,38355,47,1625305,1,3,Active Shallow Crust,0.0,89.98891,0.0,10/03/2354 +6.74282,46.15904,8969,8,9,16,45,17,3.75,15.0,fr,38356,179,1625311,1,1,Active Shallow Crust,0.0,89.98878,-90.0,08/09/8969 +6.74282,46.15904,8866,3,16,11,43,26,3.85,5.0,fr,38357,177,1625316,1,2,Active Shallow Crust,0.0,89.99011,0.0,03/16/8866 +6.74282,46.15904,9717,11,18,5,0,42,3.85,5.0,fr,38358,194,1625316,1,2,Active Shallow Crust,0.0,89.99011,0.0,11/18/9717 +6.74282,46.15904,1848,4,5,15,15,39,3.85,15.0,fr,38359,36,1625317,1,1,Active Shallow Crust,0.0,89.99011,0.0,04/05/1848 +6.74282,46.15904,2369,11,26,6,11,41,3.95,5.0,fr,38360,47,1625328,1,1,Active Shallow Crust,0.0,89.99119,0.0,11/26/2369 +6.74282,46.15904,1039,10,15,17,10,23,3.95,15.0,fr,38361,20,1625329,1,2,Active Shallow Crust,0.0,89.99119,0.0,10/15/1039 +6.74282,46.15904,6500,2,26,21,9,2,3.95,15.0,fr,38362,129,1625329,1,2,Active Shallow Crust,0.0,89.99119,0.0,02/26/6500 +6.74282,46.15904,5785,10,16,18,51,11,3.95,15.0,fr,38363,115,1625332,1,1,Active Shallow Crust,240.0199,58.00425,0.0,10/16/5785 +6.74282,46.15904,8244,9,18,21,2,57,4.05,5.0,fr,38364,164,1625340,1,2,Active Shallow Crust,0.0,89.98821,0.0,09/18/8244 +6.74282,46.15904,8833,3,6,22,28,33,4.05,5.0,fr,38365,176,1625340,1,2,Active Shallow Crust,0.0,89.98821,0.0,03/06/8833 +6.74282,46.15904,7979,9,4,11,33,42,4.05,15.0,fr,38366,159,1625341,1,1,Active Shallow Crust,0.0,89.98821,0.0,09/04/7979 +6.74282,46.15904,6086,7,23,1,30,53,4.05,5.0,fr,38367,121,1625349,1,1,Active Shallow Crust,128.8906,89.99411,0.0,07/23/6086 +6.74282,46.15904,7576,6,13,13,3,19,4.15,5.0,fr,38368,151,1625352,1,2,Active Shallow Crust,0.0,89.98949,0.0,06/13/7576 +6.74282,46.15904,5200,11,1,8,31,42,4.15,5.0,fr,38369,103,1625352,1,2,Active Shallow Crust,0.0,89.98949,0.0,11/01/5200 +6.74282,46.15904,6655,12,24,12,46,19,4.35,5.0,fr,38370,133,1625376,1,2,Active Shallow Crust,0.0,89.98888,0.0,12/24/6655 +6.74282,46.15904,5010,11,2,9,2,37,4.35,5.0,fr,38371,100,1625376,1,2,Active Shallow Crust,0.0,89.98888,0.0,11/02/5010 +6.74282,46.15904,3493,3,31,4,44,59,4.35,5.0,fr,38372,69,1625379,1,1,Active Shallow Crust,240.008,57.99605,0.0,03/31/3493 +6.74282,46.15904,9131,11,15,21,49,0,4.45,5.0,fr,38373,182,1625388,1,1,Active Shallow Crust,0.0,89.99009,0.0,11/15/9131 +6.74282,46.15904,7917,7,4,12,35,28,4.45,27.5,fr,38374,158,1625390,1,1,Active Shallow Crust,0.0,89.99009,0.0,07/04/7917 +6.74282,46.15904,9477,11,27,17,17,6,4.95,5.0,fr,38375,189,1625448,1,1,Active Shallow Crust,0.0,89.99024,0.0,11/27/9477 +6.74282,46.15904,1266,3,13,6,37,34,5.05,5.0,fr,38376,25,1625460,1,1,Active Shallow Crust,0.0,89.99006,0.0,03/13/1266 +6.74282,46.15904,8798,11,23,12,57,56,5.55,5.0,fr,38377,175,1625526,1,1,Active Shallow Crust,0.0,89.9901,-90.0,11/23/8798 +0.72955,45.54069,6397,6,14,12,21,6,3.65,15.0,fr,38378,127,1625776,1,1,Active Shallow Crust,240.001,58.01291,0.0,06/14/6397 +0.72955,45.54069,1142,8,15,15,47,49,3.75,5.0,fr,38379,22,1625784,1,1,Active Shallow Crust,0.0,89.99018,0.0,08/15/1142 +0.72955,45.54069,4602,5,8,15,45,11,3.75,15.0,fr,38380,92,1625794,1,1,Active Shallow Crust,128.8967,89.96735,0.0,05/08/4602 +0.72955,45.54069,9642,11,9,3,4,21,3.95,5.0,fr,38381,192,1625808,1,1,Active Shallow Crust,0.0,89.98997,0.0,11/09/9642 +7.4065,49.30766,7901,11,5,20,43,1,3.55,5.0,fr,38382,158,1626240,1,1,Active Shallow Crust,0.0,89.98685,0.0,11/05/7901 +7.4065,49.30766,2396,3,25,11,20,31,3.55,15.0,fr,38383,47,1626241,1,1,Active Shallow Crust,0.0,89.98685,0.0,03/25/2396 +7.4065,49.30766,8350,6,25,22,4,27,3.85,5.0,fr,38384,166,1626276,1,4,Active Shallow Crust,0.0,89.99069,0.0,06/25/8350 +7.4065,49.30766,71,8,3,5,55,17,3.85,5.0,fr,38385,1,1626276,1,4,Active Shallow Crust,0.0,89.99069,0.0,08/03/0071 +7.4065,49.30766,6754,10,7,20,55,30,3.85,5.0,fr,38386,135,1626276,1,4,Active Shallow Crust,0.0,89.99069,0.0,10/07/6754 +7.4065,49.30766,8561,3,8,2,25,57,3.85,5.0,fr,38387,171,1626276,1,4,Active Shallow Crust,0.0,89.99069,0.0,03/08/8561 +7.4065,49.30766,8747,12,16,21,21,49,4.05,15.0,fr,38388,174,1626301,1,1,Active Shallow Crust,0.0,89.98891,0.0,12/16/8747 +7.4065,49.30766,8484,11,17,21,8,39,4.55,5.0,fr,38389,169,1626360,1,1,Active Shallow Crust,0.0,89.9896,0.0,11/17/8484 +7.4065,49.30766,7237,11,27,12,21,30,5.55,27.5,fr,38390,144,1626482,1,1,Active Shallow Crust,0.0,89.99014,0.0,11/27/7237 +-0.8879,46.22318,4699,5,10,21,56,24,3.55,5.0,fr,38391,93,1626720,1,1,Active Shallow Crust,0.0,89.99041,0.0,05/10/4699 +-0.8879,46.22318,8799,9,21,10,44,19,3.55,15.0,fr,38392,175,1626721,1,1,Active Shallow Crust,0.0,89.99041,0.0,09/21/8799 +-0.8879,46.22318,3808,10,1,10,11,43,3.55,5.0,fr,38393,76,1626723,1,1,Active Shallow Crust,240.0121,57.99818,0.0,10/01/3808 +-0.8879,46.22318,1997,10,19,0,41,37,3.55,5.0,fr,38394,39,1626729,1,2,Active Shallow Crust,128.8964,89.99346,0.0,10/19/1997 +-0.8879,46.22318,2681,3,18,17,54,17,3.55,5.0,fr,38395,53,1626729,1,2,Active Shallow Crust,128.8964,89.99346,0.0,03/18/2681 +-0.8879,46.22318,905,12,29,12,12,6,3.55,15.0,fr,38396,18,1626730,1,1,Active Shallow Crust,128.8964,89.99346,0.0,12/29/0905 +-0.8879,46.22318,9582,11,18,8,38,47,3.65,5.0,fr,38397,191,1626732,1,4,Active Shallow Crust,0.0,89.9899,0.0,11/18/9582 +-0.8879,46.22318,6685,2,20,12,19,30,3.65,5.0,fr,38398,133,1626732,1,4,Active Shallow Crust,0.0,89.9899,0.0,02/20/6685 +-0.8879,46.22318,1224,11,5,4,56,59,3.65,5.0,fr,38399,24,1626732,1,4,Active Shallow Crust,0.0,89.9899,0.0,11/05/1224 +-0.8879,46.22318,8466,8,11,4,4,31,3.65,5.0,fr,38400,169,1626732,1,4,Active Shallow Crust,0.0,89.9899,0.0,08/11/8466 +-0.8879,46.22318,9000,7,1,3,2,24,3.65,15.0,fr,38401,179,1626733,1,2,Active Shallow Crust,0.0,89.9899,0.0,07/01/9000 +-0.8879,46.22318,6502,12,27,7,52,53,3.65,15.0,fr,38402,130,1626733,1,2,Active Shallow Crust,0.0,89.9899,0.0,12/27/6502 +-0.8879,46.22318,7862,9,22,7,19,8,3.65,5.0,fr,38403,157,1626735,1,1,Active Shallow Crust,240.0011,58.01291,0.0,09/22/7862 +-0.8879,46.22318,9801,4,11,1,14,46,3.85,15.0,fr,38404,196,1626757,1,1,Active Shallow Crust,0.0,89.99012,0.0,04/11/9801 +-0.8879,46.22318,6445,3,11,11,27,8,3.95,5.0,fr,38405,128,1626768,1,1,Active Shallow Crust,0.0,89.9901,0.0,03/11/6445 +-0.8879,46.22318,1114,10,5,10,4,28,3.95,5.0,fr,38406,22,1626777,1,1,Active Shallow Crust,128.9004,89.99368,0.0,10/05/1114 +-0.8879,46.22318,618,5,29,8,55,28,4.05,5.0,fr,38407,12,1626780,1,1,Active Shallow Crust,0.0,89.99019,0.0,05/29/0618 +-0.8879,46.22318,7804,11,20,16,50,50,4.05,15.0,fr,38408,156,1626781,1,1,Active Shallow Crust,0.0,89.99019,0.0,11/20/7804 +-0.8879,46.22318,7085,1,22,3,29,44,4.15,27.5,fr,38409,141,1626794,1,1,Active Shallow Crust,0.0,89.98994,0.0,01/22/7085 +-0.8879,46.22318,2402,5,18,18,13,29,4.15,5.0,fr,38410,48,1626795,1,1,Active Shallow Crust,240.0083,57.99729,0.0,05/18/2402 +-0.8879,46.22318,2862,3,8,1,0,46,4.65,27.5,fr,38411,57,1626857,1,1,Active Shallow Crust,240.0108,57.99421,0.0,03/08/2862 +-0.8879,46.22318,789,1,22,16,58,48,4.65,15.0,fr,38412,15,1626859,1,1,Active Shallow Crust,0.0,89.99005,-90.0,01/22/0789 +-0.96401,43.34862,4211,3,15,4,45,24,3.55,5.0,fr,38413,84,1627200,1,3,Active Shallow Crust,0.0,89.98991,0.0,03/15/4211 +-0.96401,43.34862,4699,5,3,19,42,17,3.55,5.0,fr,38414,93,1627200,1,3,Active Shallow Crust,0.0,89.98991,0.0,05/03/4699 +-0.96401,43.34862,3941,5,16,16,6,59,3.55,5.0,fr,38415,78,1627200,1,3,Active Shallow Crust,0.0,89.98991,0.0,05/16/3941 +-0.96401,43.34862,8395,10,20,10,27,42,3.65,5.0,fr,38416,167,1627212,1,1,Active Shallow Crust,0.0,89.9902,0.0,10/20/8395 +-0.96401,43.34862,5420,12,12,15,28,37,3.65,5.0,fr,38417,108,1627215,1,1,Active Shallow Crust,240.0008,58.01282,0.0,12/12/5420 +-0.96401,43.34862,2674,8,29,15,50,52,3.75,5.0,fr,38418,53,1627224,1,2,Active Shallow Crust,0.0,89.98981,0.0,08/29/2674 +-0.96401,43.34862,3323,11,2,5,7,14,3.75,5.0,fr,38419,66,1627224,1,2,Active Shallow Crust,0.0,89.98981,0.0,11/02/3323 +-0.96401,43.34862,2807,1,20,5,20,29,3.85,5.0,fr,38420,56,1627236,1,2,Active Shallow Crust,0.0,89.99026,0.0,01/20/2807 +-0.96401,43.34862,4833,7,25,6,37,2,3.85,5.0,fr,38421,96,1627236,1,2,Active Shallow Crust,0.0,89.99026,0.0,07/25/4833 +-0.96401,43.34862,528,5,20,22,34,43,3.85,5.0,fr,38422,10,1627242,1,1,Active Shallow Crust,0.0,89.99015,-90.0,05/20/0528 +-0.96401,43.34862,1255,3,13,17,41,22,4.05,5.0,fr,38423,25,1627260,1,2,Active Shallow Crust,0.0,89.9902,0.0,03/13/1255 +-0.96401,43.34862,6395,4,24,13,51,2,4.05,5.0,fr,38424,127,1627260,1,2,Active Shallow Crust,0.0,89.9902,0.0,04/24/6395 +-0.96401,43.34862,342,3,19,21,26,37,4.05,5.0,fr,38425,6,1627269,1,1,Active Shallow Crust,128.891,89.99356,0.0,03/19/0342 +-0.96401,43.34862,9763,8,13,2,49,26,4.15,15.0,fr,38426,195,1627276,1,1,Active Shallow Crust,240.0079,57.99722,0.0,08/13/9763 +-0.96401,43.34862,4046,4,21,17,11,51,4.45,5.0,fr,38427,80,1627308,1,1,Active Shallow Crust,0.0,89.98991,0.0,04/21/4046 +-0.96401,43.34862,9651,3,18,19,53,14,4.65,5.0,fr,38428,193,1627338,1,1,Active Shallow Crust,0.0,89.99007,-90.0,03/18/9651 +-0.96401,43.34862,8118,2,25,13,19,38,4.65,5.0,fr,38429,162,1627341,1,1,Active Shallow Crust,128.8919,89.98699,0.0,02/25/8118 +-0.96401,43.34862,7934,3,16,6,38,49,5.25,5.0,fr,38430,158,1627407,1,1,Active Shallow Crust,240.0186,57.99993,0.0,03/16/7934 +-2.29972,43.75668,1380,7,25,10,20,43,3.65,15.0,fr,38431,27,1627693,1,1,Active Shallow Crust,0.0,89.99026,0.0,07/25/1380 +-2.29972,43.75668,971,6,30,14,45,59,3.75,5.0,fr,38432,19,1627704,1,1,Active Shallow Crust,0.0,89.99133,0.0,06/30/0971 +-2.29972,43.75668,2872,10,10,14,18,19,3.75,27.5,fr,38433,57,1627706,1,1,Active Shallow Crust,0.0,89.99133,0.0,10/10/2872 +3.3453,48.38807,8264,12,7,4,12,50,3.95,5.0,fr,38434,165,1628208,1,1,Active Shallow Crust,0.0,89.98943,0.0,12/07/8264 +3.3453,48.38807,9611,5,2,13,2,28,4.85,15.0,fr,38435,192,1628317,1,1,Active Shallow Crust,0.0,89.99026,0.0,05/02/9611 +3.3453,48.38807,5179,8,4,22,47,37,4.95,15.0,fr,38436,103,1628335,1,1,Active Shallow Crust,0.0,89.98986,-90.0,08/04/5179 +-3.27579,46.68339,7482,11,22,3,33,0,3.75,5.0,fr,38437,149,1628664,1,1,Active Shallow Crust,0.0,89.98901,0.0,11/22/7482 +2.55952,49.09181,510,1,25,16,26,52,3.55,27.5,fr,38438,10,1629125,1,1,Active Shallow Crust,240.0118,57.99868,0.0,01/25/0510 +2.55952,49.09181,2797,3,29,21,55,44,3.65,5.0,fr,38439,55,1629135,1,1,Active Shallow Crust,240.0011,58.01282,0.0,03/29/2797 +2.55952,49.09181,4603,2,22,23,17,26,3.95,5.0,fr,38440,92,1629168,1,1,Active Shallow Crust,0.0,89.98959,0.0,02/22/4603 +2.55952,49.09181,3954,2,4,16,2,5,3.95,5.0,fr,38441,79,1629174,1,1,Active Shallow Crust,0.0,89.98946,-90.0,02/04/3954 +-5.77663,49.29486,32,12,1,22,57,42,3.65,5.0,fr,38442,0,1629615,1,1,Active Shallow Crust,240.0013,58.0131,0.0,12/01/0032 +-5.77663,49.29486,8819,11,16,6,36,27,3.85,15.0,fr,38443,176,1629646,1,1,Active Shallow Crust,128.8952,89.99302,0.0,11/16/8819 +3.25047,43.18282,4876,12,23,0,2,43,3.75,5.0,fr,38444,97,1630107,1,1,Active Shallow Crust,240.0084,58.01738,0.0,12/23/4876 +3.25047,43.18282,4387,1,23,17,52,26,3.95,5.0,fr,38445,87,1630128,1,1,Active Shallow Crust,0.0,89.99072,0.0,01/23/4387 +3.25047,43.18282,6690,5,6,17,37,1,4.05,5.0,fr,38446,133,1630140,1,1,Active Shallow Crust,0.0,89.98966,0.0,05/06/6690 +3.25047,43.18282,3717,5,19,19,35,30,4.05,5.0,fr,38447,74,1630146,1,1,Active Shallow Crust,0.0,89.98954,-90.0,05/19/3717 +3.25047,43.18282,5787,3,5,1,16,34,5.45,5.0,fr,38448,115,1630317,1,1,Active Shallow Crust,128.881,89.99216,0.0,03/05/5787 +-6.07156,47.75236,2143,12,23,4,42,6,3.65,5.0,fr,38449,42,1630575,1,1,Active Shallow Crust,240.0011,58.01257,0.0,12/23/2143 +5.8686,45.39746,6036,12,6,12,25,36,3.55,5.0,fr,38450,120,1631040,1,2,Active Shallow Crust,0.0,89.99292,0.0,12/06/6036 +5.8686,45.39746,6588,9,7,14,46,59,3.55,5.0,fr,38451,131,1631040,1,2,Active Shallow Crust,0.0,89.99292,0.0,09/07/6588 +5.8686,45.39746,8394,12,5,13,17,18,3.55,15.0,fr,38452,167,1631041,1,1,Active Shallow Crust,0.0,89.99292,0.0,12/05/8394 +5.8686,45.39746,9171,6,28,23,20,45,3.55,27.5,fr,38453,183,1631048,1,1,Active Shallow Crust,0.0,89.99284,-90.0,06/28/9171 +5.8686,45.39746,5813,10,1,17,24,44,3.65,5.0,fr,38454,116,1631052,1,2,Active Shallow Crust,0.0,89.98738,0.0,10/01/5813 +5.8686,45.39746,64,6,26,23,45,46,3.65,5.0,fr,38455,1,1631052,1,2,Active Shallow Crust,0.0,89.98738,0.0,06/26/0064 +5.8686,45.39746,5212,10,27,3,35,10,3.65,15.0,fr,38456,104,1631053,1,2,Active Shallow Crust,0.0,89.98738,0.0,10/27/5212 +5.8686,45.39746,346,6,21,22,32,15,3.65,15.0,fr,38457,6,1631053,1,2,Active Shallow Crust,0.0,89.98738,0.0,06/21/0346 +5.8686,45.39746,9457,2,2,10,30,7,3.65,15.0,fr,38458,189,1631059,1,2,Active Shallow Crust,0.0,89.98724,-90.0,02/02/9457 +5.8686,45.39746,3633,11,26,21,7,54,3.65,15.0,fr,38459,72,1631059,1,2,Active Shallow Crust,0.0,89.98724,-90.0,11/26/3633 +5.8686,45.39746,5174,10,10,19,33,23,3.65,15.0,fr,38460,103,1631062,1,1,Active Shallow Crust,128.9008,89.9635,0.0,10/10/5174 +5.8686,45.39746,7299,10,2,21,42,28,3.75,5.0,fr,38461,145,1631064,1,1,Active Shallow Crust,0.0,89.98875,0.0,10/02/7299 +5.8686,45.39746,738,8,20,11,39,55,3.75,15.0,fr,38462,14,1631065,1,1,Active Shallow Crust,0.0,89.98875,0.0,08/20/0738 +5.8686,45.39746,9846,6,14,12,53,22,3.75,5.0,fr,38463,196,1631070,1,1,Active Shallow Crust,0.0,89.98862,-90.0,06/14/9846 +5.8686,45.39746,5596,3,22,2,47,14,3.85,5.0,fr,38464,111,1631076,1,2,Active Shallow Crust,0.0,89.98997,0.0,03/22/5596 +5.8686,45.39746,9893,10,21,13,19,3,3.85,5.0,fr,38465,197,1631076,1,2,Active Shallow Crust,0.0,89.98997,0.0,10/21/9893 +5.8686,45.39746,8816,9,7,11,36,39,3.85,5.0,fr,38466,176,1631082,1,1,Active Shallow Crust,0.0,89.98986,-90.0,09/07/8816 +5.8686,45.39746,4495,2,10,19,43,3,3.95,15.0,fr,38467,89,1631089,1,1,Active Shallow Crust,0.0,89.99107,0.0,02/10/4495 +5.8686,45.39746,5403,7,31,3,42,26,4.05,5.0,fr,38468,108,1631100,1,1,Active Shallow Crust,0.0,89.98805,0.0,07/31/5403 +5.8686,45.39746,2957,3,8,11,58,57,4.05,27.5,fr,38469,59,1631102,1,1,Active Shallow Crust,0.0,89.98805,0.0,03/08/2957 +5.8686,45.39746,3410,12,26,8,25,14,4.25,5.0,fr,38470,68,1631124,1,1,Active Shallow Crust,0.0,89.99051,0.0,12/26/3410 +5.8686,45.39746,2720,6,1,0,47,31,4.25,15.0,fr,38471,54,1631131,1,1,Active Shallow Crust,0.0,89.9904,-90.0,06/01/2720 +5.8686,45.39746,3841,5,29,23,24,46,4.45,27.5,fr,38472,76,1631156,1,1,Active Shallow Crust,0.0,89.98983,-90.0,05/29/3841 +5.8686,45.39746,6438,6,8,8,28,44,4.65,27.5,fr,38473,128,1631174,1,1,Active Shallow Crust,0.0,89.99002,0.0,06/08/6438 +5.8686,45.39746,7368,8,16,23,23,1,4.65,27.5,fr,38474,147,1631183,1,1,Active Shallow Crust,128.8913,89.98715,0.0,08/16/7368 +5.8686,45.39746,4711,3,14,4,59,10,5.05,5.0,fr,38475,94,1631223,1,1,Active Shallow Crust,240.0218,57.99739,0.0,03/14/4711 +6.78049,45.9028,6873,2,19,7,10,31,3.65,5.0,fr,38476,137,1631532,1,3,Active Shallow Crust,0.0,89.9875,0.0,02/19/6873 +6.78049,45.9028,3456,8,26,14,6,5,3.65,5.0,fr,38477,69,1631532,1,3,Active Shallow Crust,0.0,89.9875,0.0,08/26/3456 +6.78049,45.9028,9568,1,28,12,5,23,3.65,5.0,fr,38478,191,1631532,1,3,Active Shallow Crust,0.0,89.9875,0.0,01/28/9568 +6.78049,45.9028,3812,2,10,20,48,2,3.65,27.5,fr,38479,76,1631534,1,1,Active Shallow Crust,0.0,89.9875,0.0,02/10/3812 +6.78049,45.9028,7677,10,18,22,23,57,3.65,5.0,fr,38480,153,1631535,1,1,Active Shallow Crust,240.0018,58.01257,0.0,10/18/7677 +6.78049,45.9028,691,1,30,19,49,45,3.65,5.0,fr,38481,13,1631538,1,1,Active Shallow Crust,0.0,89.98735,-90.0,01/30/0691 +6.78049,45.9028,7726,5,2,14,54,10,3.75,5.0,fr,38482,154,1631544,1,2,Active Shallow Crust,0.0,89.98885,0.0,05/02/7726 +6.78049,45.9028,7040,8,5,21,38,10,3.75,5.0,fr,38483,140,1631544,1,2,Active Shallow Crust,0.0,89.98885,0.0,08/05/7040 +6.78049,45.9028,2160,2,29,5,9,55,3.75,27.5,fr,38484,43,1631546,1,1,Active Shallow Crust,0.0,89.98885,0.0,02/29/2160 +6.78049,45.9028,1737,4,2,5,45,20,3.85,5.0,fr,38485,34,1631556,1,2,Active Shallow Crust,0.0,89.99007,0.0,04/02/1737 +6.78049,45.9028,3718,4,20,14,28,37,3.85,5.0,fr,38486,74,1631556,1,2,Active Shallow Crust,0.0,89.99007,0.0,04/20/3718 +6.78049,45.9028,6101,11,3,0,40,49,3.85,15.0,fr,38487,122,1631557,1,1,Active Shallow Crust,0.0,89.99007,0.0,11/03/6101 +6.78049,45.9028,8665,11,24,10,9,18,3.85,27.5,fr,38488,173,1631558,1,1,Active Shallow Crust,0.0,89.99007,0.0,11/24/8665 +6.78049,45.9028,1161,7,9,2,4,59,3.95,5.0,fr,38489,23,1631568,1,1,Active Shallow Crust,0.0,89.99114,0.0,07/09/1161 +6.78049,45.9028,5474,1,11,13,50,1,3.95,5.0,fr,38490,109,1631571,1,1,Active Shallow Crust,240.0201,58.00438,0.0,01/11/5474 +6.78049,45.9028,7674,9,16,16,45,37,3.95,15.0,fr,38491,153,1631575,1,1,Active Shallow Crust,0.0,89.99104,-90.0,09/16/7674 +6.78049,45.9028,5869,3,30,2,35,21,4.05,5.0,fr,38492,117,1631580,1,1,Active Shallow Crust,0.0,89.98816,0.0,03/30/5869 +6.78049,45.9028,3900,6,28,23,12,54,4.15,5.0,fr,38493,77,1631592,1,1,Active Shallow Crust,0.0,89.98945,0.0,06/28/3900 +6.78049,45.9028,7006,10,14,10,24,21,4.25,5.0,fr,38494,140,1631604,1,1,Active Shallow Crust,0.0,89.99059,0.0,10/14/7006 +6.78049,45.9028,4721,5,30,4,10,53,4.25,27.5,fr,38495,94,1631609,1,1,Active Shallow Crust,240.0072,57.99405,0.0,05/30/4721 +6.78049,45.9028,2931,4,14,12,3,12,4.35,5.0,fr,38496,58,1631622,1,1,Active Shallow Crust,0.0,89.98869,-90.0,04/14/2931 +6.78049,45.9028,2639,9,22,22,32,40,4.45,5.0,fr,38497,52,1631631,1,1,Active Shallow Crust,240.0052,57.99443,0.0,09/22/2639 +6.78049,45.9028,5704,11,20,10,15,55,4.65,5.0,fr,38498,114,1631652,1,1,Active Shallow Crust,0.0,89.99011,0.0,11/20/5704 +6.78049,45.9028,1045,12,11,17,49,41,4.95,5.0,fr,38499,20,1631691,1,1,Active Shallow Crust,240.0114,58.00451,0.0,12/11/1045 +3.36588,49.39499,1989,9,11,14,38,52,3.65,15.0,fr,38500,39,1632013,1,1,Active Shallow Crust,0.0,89.99123,0.0,09/11/1989 +3.36588,49.39499,7048,1,30,3,40,8,3.85,5.0,fr,38501,140,1632036,1,2,Active Shallow Crust,0.0,89.99071,0.0,01/30/7048 +3.36588,49.39499,4344,7,18,19,59,41,3.85,5.0,fr,38502,86,1632036,1,2,Active Shallow Crust,0.0,89.99071,0.0,07/18/4344 +3.36588,49.39499,4809,10,11,10,46,57,4.25,5.0,fr,38503,96,1632084,1,1,Active Shallow Crust,0.0,89.98974,0.0,10/11/4809 +7.05148,46.32582,3225,9,24,1,39,53,3.55,5.0,fr,38504,64,1632480,1,5,Active Shallow Crust,0.0,89.99303,0.0,09/24/3225 +7.05148,46.32582,9045,5,31,9,43,16,3.55,5.0,fr,38505,180,1632480,1,5,Active Shallow Crust,0.0,89.99303,0.0,05/31/9045 +7.05148,46.32582,2678,1,14,8,32,41,3.55,5.0,fr,38506,53,1632480,1,5,Active Shallow Crust,0.0,89.99303,0.0,01/14/2678 +7.05148,46.32582,4209,8,19,17,15,2,3.55,5.0,fr,38507,84,1632480,1,5,Active Shallow Crust,0.0,89.99303,0.0,08/19/4209 +7.05148,46.32582,6398,5,18,16,51,1,3.55,5.0,fr,38508,127,1632480,1,5,Active Shallow Crust,0.0,89.99303,0.0,05/18/6398 +7.05148,46.32582,5591,6,4,4,13,17,3.55,15.0,fr,38509,111,1632481,1,2,Active Shallow Crust,0.0,89.99303,0.0,06/04/5591 +7.05148,46.32582,3231,7,13,7,14,20,3.55,15.0,fr,38510,64,1632481,1,2,Active Shallow Crust,0.0,89.99303,0.0,07/13/3231 +7.05148,46.32582,1693,10,2,7,56,17,3.55,27.5,fr,38511,33,1632482,1,2,Active Shallow Crust,0.0,89.99303,0.0,10/02/1693 +7.05148,46.32582,9179,7,19,13,42,20,3.55,27.5,fr,38512,183,1632482,1,2,Active Shallow Crust,0.0,89.99303,0.0,07/19/9179 +7.05148,46.32582,6758,12,9,4,35,4,3.55,5.0,fr,38513,135,1632483,1,1,Active Shallow Crust,240.0125,57.99842,0.0,12/09/6758 +7.05148,46.32582,6323,7,23,16,35,55,3.55,27.5,fr,38514,126,1632485,1,1,Active Shallow Crust,240.0125,57.99832,0.0,07/23/6323 +7.05148,46.32582,9028,1,11,6,39,51,3.55,5.0,fr,38515,180,1632486,1,1,Active Shallow Crust,0.0,89.99296,-90.0,01/11/9028 +7.05148,46.32582,2071,7,31,6,58,27,3.55,5.0,fr,38516,41,1632489,1,1,Active Shallow Crust,128.8971,89.99303,0.0,07/31/2071 +7.05148,46.32582,2292,11,17,9,31,6,3.65,5.0,fr,38517,45,1632492,1,10,Active Shallow Crust,0.0,89.98759,0.0,11/17/2292 +7.05148,46.32582,6238,3,26,6,21,23,3.65,5.0,fr,38518,124,1632492,1,10,Active Shallow Crust,0.0,89.98759,0.0,03/26/6238 +7.05148,46.32582,5942,5,5,21,50,17,3.65,5.0,fr,38519,118,1632492,1,10,Active Shallow Crust,0.0,89.98759,0.0,05/05/5942 +7.05148,46.32582,8240,10,21,11,46,5,3.65,5.0,fr,38520,164,1632492,1,10,Active Shallow Crust,0.0,89.98759,0.0,10/21/8240 +7.05148,46.32582,7598,5,9,17,55,19,3.65,5.0,fr,38521,151,1632492,1,10,Active Shallow Crust,0.0,89.98759,0.0,05/09/7598 +7.05148,46.32582,4312,8,16,23,52,18,3.65,5.0,fr,38522,86,1632492,1,10,Active Shallow Crust,0.0,89.98759,0.0,08/16/4312 +7.05148,46.32582,207,7,12,16,1,8,3.65,5.0,fr,38523,4,1632492,1,10,Active Shallow Crust,0.0,89.98759,0.0,07/12/0207 +7.05148,46.32582,5633,7,1,10,8,42,3.65,5.0,fr,38524,112,1632492,1,10,Active Shallow Crust,0.0,89.98759,0.0,07/01/5633 +7.05148,46.32582,6821,6,17,16,43,4,3.65,5.0,fr,38525,136,1632492,1,10,Active Shallow Crust,0.0,89.98759,0.0,06/17/6821 +7.05148,46.32582,2279,7,14,6,27,54,3.65,5.0,fr,38526,45,1632492,1,10,Active Shallow Crust,0.0,89.98759,0.0,07/14/2279 +7.05148,46.32582,7625,7,26,15,45,59,3.65,15.0,fr,38527,152,1632493,1,2,Active Shallow Crust,0.0,89.98759,0.0,07/26/7625 +7.05148,46.32582,4922,5,7,16,42,48,3.65,15.0,fr,38528,98,1632493,1,2,Active Shallow Crust,0.0,89.98759,0.0,05/07/4922 +7.05148,46.32582,6146,5,23,19,8,46,3.65,15.0,fr,38529,122,1632496,1,1,Active Shallow Crust,240.0014,58.01311,0.0,05/23/6146 +7.05148,46.32582,4702,4,27,12,39,32,3.65,5.0,fr,38530,94,1632501,1,1,Active Shallow Crust,128.9007,89.96352,0.0,04/27/4702 +7.05148,46.32582,8724,4,16,9,33,9,3.65,27.5,fr,38531,174,1632503,1,1,Active Shallow Crust,128.9007,89.96352,0.0,04/16/8724 +7.05148,46.32582,5486,5,15,5,0,55,3.75,5.0,fr,38532,109,1632504,1,9,Active Shallow Crust,0.0,89.98894,0.0,05/15/5486 +7.05148,46.32582,2220,10,24,15,42,11,3.75,5.0,fr,38533,44,1632504,1,9,Active Shallow Crust,0.0,89.98894,0.0,10/24/2220 +7.05148,46.32582,5727,9,4,20,26,9,3.75,5.0,fr,38534,114,1632504,1,9,Active Shallow Crust,0.0,89.98894,0.0,09/04/5727 +7.05148,46.32582,9469,11,30,7,9,34,3.75,5.0,fr,38535,189,1632504,1,9,Active Shallow Crust,0.0,89.98894,0.0,11/30/9469 +7.05148,46.32582,8421,12,23,11,44,41,3.75,5.0,fr,38536,168,1632504,1,9,Active Shallow Crust,0.0,89.98894,0.0,12/23/8421 +7.05148,46.32582,1254,6,22,11,52,40,3.75,5.0,fr,38537,25,1632504,1,9,Active Shallow Crust,0.0,89.98894,0.0,06/22/1254 +7.05148,46.32582,3125,8,15,18,59,30,3.75,5.0,fr,38538,62,1632504,1,9,Active Shallow Crust,0.0,89.98894,0.0,08/15/3125 +7.05148,46.32582,2105,9,17,18,16,29,3.75,5.0,fr,38539,42,1632504,1,9,Active Shallow Crust,0.0,89.98894,0.0,09/17/2105 +7.05148,46.32582,7522,12,2,21,2,11,3.75,5.0,fr,38540,150,1632504,1,9,Active Shallow Crust,0.0,89.98894,0.0,12/02/7522 +7.05148,46.32582,5264,4,8,2,15,19,3.75,15.0,fr,38541,105,1632505,1,1,Active Shallow Crust,0.0,89.98894,0.0,04/08/5264 +7.05148,46.32582,8842,12,6,0,59,50,3.75,27.5,fr,38542,176,1632506,1,1,Active Shallow Crust,0.0,89.98894,0.0,12/06/8842 +7.05148,46.32582,2298,7,7,5,17,10,3.75,5.0,fr,38543,45,1632507,1,3,Active Shallow Crust,240.0085,58.01764,0.0,07/07/2298 +7.05148,46.32582,4186,5,24,11,25,39,3.75,5.0,fr,38544,83,1632507,1,3,Active Shallow Crust,240.0085,58.01764,0.0,05/24/4186 +7.05148,46.32582,8822,4,28,0,50,35,3.75,5.0,fr,38545,176,1632507,1,3,Active Shallow Crust,240.0085,58.01764,0.0,04/28/8822 +7.05148,46.32582,5852,12,16,17,15,8,3.75,5.0,fr,38546,117,1632510,1,4,Active Shallow Crust,0.0,89.98881,-90.0,12/16/5852 +7.05148,46.32582,7177,7,31,1,17,13,3.75,5.0,fr,38547,143,1632510,1,4,Active Shallow Crust,0.0,89.98881,-90.0,07/31/7177 +7.05148,46.32582,3668,3,5,17,47,5,3.75,5.0,fr,38548,73,1632510,1,4,Active Shallow Crust,0.0,89.98881,-90.0,03/05/3668 +7.05148,46.32582,8624,1,21,11,8,9,3.75,5.0,fr,38549,172,1632510,1,4,Active Shallow Crust,0.0,89.98881,-90.0,01/21/8624 +7.05148,46.32582,35,7,18,4,12,3,3.75,15.0,fr,38550,0,1632514,1,1,Active Shallow Crust,128.8959,89.96749,0.0,07/18/0035 +7.05148,46.32582,6064,9,20,19,43,19,3.75,27.5,fr,38551,121,1632515,1,1,Active Shallow Crust,128.8959,89.96749,0.0,09/20/6064 +7.05148,46.32582,8657,2,11,3,26,2,3.85,5.0,fr,38552,173,1632516,1,3,Active Shallow Crust,0.0,89.99014,0.0,02/11/8657 +7.05148,46.32582,9051,7,2,2,11,53,3.85,5.0,fr,38553,181,1632516,1,3,Active Shallow Crust,0.0,89.99014,0.0,07/02/9051 +7.05148,46.32582,1115,10,7,3,29,33,3.85,5.0,fr,38554,22,1632516,1,3,Active Shallow Crust,0.0,89.99014,0.0,10/07/1115 +7.05148,46.32582,6942,2,15,6,55,51,3.85,15.0,fr,38555,138,1632517,1,3,Active Shallow Crust,0.0,89.99014,0.0,02/15/6942 +7.05148,46.32582,5427,3,27,18,31,15,3.85,15.0,fr,38556,108,1632517,1,3,Active Shallow Crust,0.0,89.99014,0.0,03/27/5427 +7.05148,46.32582,4911,10,9,10,4,51,3.85,15.0,fr,38557,98,1632517,1,3,Active Shallow Crust,0.0,89.99014,0.0,10/09/4911 +7.05148,46.32582,1688,12,27,15,33,34,3.85,27.5,fr,38558,33,1632518,1,2,Active Shallow Crust,0.0,89.99014,0.0,12/27/1688 +7.05148,46.32582,8866,10,2,21,11,6,3.85,27.5,fr,38559,177,1632518,1,2,Active Shallow Crust,0.0,89.99014,0.0,10/02/8866 +7.05148,46.32582,9588,3,4,2,23,5,3.85,5.0,fr,38560,191,1632519,1,2,Active Shallow Crust,240.0107,57.99862,0.0,03/04/9588 +7.05148,46.32582,9616,12,27,21,32,42,3.85,5.0,fr,38561,192,1632519,1,2,Active Shallow Crust,240.0107,57.99862,0.0,12/27/9616 +7.05148,46.32582,7522,4,15,16,41,30,3.85,15.0,fr,38562,150,1632520,1,1,Active Shallow Crust,240.0107,57.99862,0.0,04/15/7522 +7.05148,46.32582,7305,6,8,14,1,47,3.85,5.0,fr,38563,146,1632522,1,1,Active Shallow Crust,0.0,89.99003,-90.0,06/08/7305 +7.05148,46.32582,3462,3,25,2,48,54,3.85,5.0,fr,38564,69,1632525,1,2,Active Shallow Crust,128.8956,89.99507,0.0,03/25/3462 +7.05148,46.32582,5754,9,4,19,35,38,3.85,5.0,fr,38565,115,1632525,1,2,Active Shallow Crust,128.8956,89.99507,0.0,09/04/5754 +7.05148,46.32582,1772,2,8,10,49,26,3.85,27.5,fr,38566,35,1632527,1,1,Active Shallow Crust,128.8956,89.99507,0.0,02/08/1772 +7.05148,46.32582,7094,7,7,3,52,0,3.95,5.0,fr,38567,141,1632528,1,1,Active Shallow Crust,0.0,89.99121,0.0,07/07/7094 +7.05148,46.32582,329,6,13,19,5,40,3.95,15.0,fr,38568,6,1632529,1,2,Active Shallow Crust,0.0,89.99121,0.0,06/13/0329 +7.05148,46.32582,4530,2,5,13,40,53,3.95,15.0,fr,38569,90,1632529,1,2,Active Shallow Crust,0.0,89.99121,0.0,02/05/4530 +7.05148,46.32582,6835,11,20,0,31,11,3.95,27.5,fr,38570,136,1632533,1,1,Active Shallow Crust,240.0193,58.00517,0.0,11/20/6835 +7.05148,46.32582,6641,3,22,17,33,49,3.95,15.0,fr,38571,132,1632535,1,1,Active Shallow Crust,0.0,89.99111,-90.0,03/22/6641 +7.05148,46.32582,7534,6,22,16,25,44,3.95,5.0,fr,38572,150,1632537,1,1,Active Shallow Crust,128.9009,89.99341,0.0,06/22/7534 +7.05148,46.32582,7152,10,18,14,32,30,4.05,5.0,fr,38573,143,1632540,1,4,Active Shallow Crust,0.0,89.98825,0.0,10/18/7152 +7.05148,46.32582,9851,4,19,19,1,32,4.05,5.0,fr,38574,197,1632540,1,4,Active Shallow Crust,0.0,89.98825,0.0,04/19/9851 +7.05148,46.32582,8449,1,11,12,13,3,4.05,5.0,fr,38575,168,1632540,1,4,Active Shallow Crust,0.0,89.98825,0.0,01/11/8449 +7.05148,46.32582,5192,1,6,23,36,40,4.05,5.0,fr,38576,103,1632540,1,4,Active Shallow Crust,0.0,89.98825,0.0,01/06/5192 +7.05148,46.32582,1141,3,4,0,14,18,4.05,27.5,fr,38577,22,1632542,1,1,Active Shallow Crust,0.0,89.98825,0.0,03/04/1141 +7.05148,46.32582,5218,8,3,23,16,40,4.05,5.0,fr,38578,104,1632543,1,1,Active Shallow Crust,240.0056,58.00608,0.0,08/03/5218 +7.05148,46.32582,5906,11,29,1,58,43,4.05,15.0,fr,38579,118,1632544,1,1,Active Shallow Crust,240.0056,58.00606,0.0,11/29/5906 +7.05148,46.32582,7538,4,20,10,27,25,4.05,5.0,fr,38580,150,1632546,1,1,Active Shallow Crust,0.0,89.98811,-90.0,04/20/7538 +7.05148,46.32582,1838,11,6,4,57,25,4.15,5.0,fr,38581,36,1632552,1,1,Active Shallow Crust,0.0,89.98953,0.0,11/06/1838 +7.05148,46.32582,4198,1,15,14,21,25,4.15,27.5,fr,38582,83,1632554,1,1,Active Shallow Crust,0.0,89.98953,0.0,01/15/4198 +7.05148,46.32582,1188,8,3,8,40,19,4.15,5.0,fr,38583,23,1632555,1,2,Active Shallow Crust,240.0079,57.9975,0.0,08/03/1188 +7.05148,46.32582,9067,10,17,0,19,17,4.15,5.0,fr,38584,181,1632555,1,2,Active Shallow Crust,240.0079,57.9975,0.0,10/17/9067 +7.05148,46.32582,5901,6,30,8,27,12,4.15,5.0,fr,38585,118,1632558,1,2,Active Shallow Crust,0.0,89.98941,-90.0,06/30/5901 +7.05148,46.32582,8052,1,22,10,18,37,4.15,5.0,fr,38586,161,1632558,1,2,Active Shallow Crust,0.0,89.98941,-90.0,01/22/8052 +7.05148,46.32582,7324,12,31,21,18,5,4.25,5.0,fr,38587,146,1632564,1,3,Active Shallow Crust,0.0,89.99067,0.0,12/31/7324 +7.05148,46.32582,164,10,2,11,3,56,4.25,5.0,fr,38588,3,1632564,1,3,Active Shallow Crust,0.0,89.99067,0.0,10/02/0164 +7.05148,46.32582,9652,10,25,0,45,35,4.25,5.0,fr,38589,193,1632564,1,3,Active Shallow Crust,0.0,89.99067,0.0,10/25/9652 +7.05148,46.32582,1202,6,16,15,46,46,4.25,5.0,fr,38590,24,1632567,1,1,Active Shallow Crust,240.0074,57.99382,0.0,06/16/1202 +7.05148,46.32582,5390,1,22,15,42,15,4.25,5.0,fr,38591,107,1632573,1,1,Active Shallow Crust,128.8945,89.98094,0.0,01/22/5390 +7.05148,46.32582,5210,10,17,6,6,13,4.35,5.0,fr,38592,104,1632576,1,2,Active Shallow Crust,0.0,89.98891,0.0,10/17/5210 +7.05148,46.32582,8145,10,11,2,56,0,4.35,5.0,fr,38593,162,1632576,1,2,Active Shallow Crust,0.0,89.98891,0.0,10/11/8145 +7.05148,46.32582,3570,3,4,4,12,56,4.35,15.0,fr,38594,71,1632577,1,1,Active Shallow Crust,0.0,89.98891,0.0,03/04/3570 +7.05148,46.32582,1234,2,21,3,11,15,4.45,5.0,fr,38595,24,1632588,1,2,Active Shallow Crust,0.0,89.99012,0.0,02/21/1234 +7.05148,46.32582,9918,4,12,2,9,38,4.45,5.0,fr,38596,198,1632588,1,2,Active Shallow Crust,0.0,89.99012,0.0,04/12/9918 +7.05148,46.32582,469,2,8,2,48,24,4.45,27.5,fr,38597,9,1632596,1,1,Active Shallow Crust,0.0,89.99,-90.0,02/08/0469 +7.05148,46.32582,5387,11,3,19,15,27,4.55,5.0,fr,38598,107,1632600,1,3,Active Shallow Crust,0.0,89.98899,0.0,11/03/5387 +7.05148,46.32582,7214,5,11,2,14,31,4.55,5.0,fr,38599,144,1632600,1,3,Active Shallow Crust,0.0,89.98899,0.0,05/11/7214 +7.05148,46.32582,8730,4,13,21,38,6,4.55,5.0,fr,38600,174,1632600,1,3,Active Shallow Crust,0.0,89.98899,0.0,04/13/8730 +7.05148,46.32582,3633,6,25,17,29,34,4.55,5.0,fr,38601,72,1632606,1,1,Active Shallow Crust,0.0,89.99109,-90.0,06/25/3633 +7.05148,46.32582,3558,7,9,11,40,33,4.65,15.0,fr,38602,71,1632613,1,1,Active Shallow Crust,0.0,89.99019,0.0,07/09/3558 +7.05148,46.32582,7672,12,15,16,32,23,4.75,5.0,fr,38603,153,1632624,1,1,Active Shallow Crust,0.0,89.9895,0.0,12/15/7672 +7.05148,46.32582,9173,2,12,22,20,55,4.75,15.0,fr,38604,183,1632625,1,1,Active Shallow Crust,0.0,89.9895,0.0,02/12/9173 +7.05148,46.32582,9770,2,10,16,12,55,4.85,5.0,fr,38605,195,1632636,1,1,Active Shallow Crust,0.0,89.99065,0.0,02/10/9770 +7.05148,46.32582,5335,8,27,7,54,33,4.85,27.5,fr,38606,106,1632644,1,1,Active Shallow Crust,0.0,89.99054,-90.0,08/27/5335 +7.05148,46.32582,4235,9,21,0,33,45,4.95,5.0,fr,38607,84,1632654,1,1,Active Shallow Crust,0.0,89.99016,-90.0,09/21/4235 +7.05148,46.32582,3780,5,4,16,1,8,5.05,5.0,fr,38608,75,1632660,1,2,Active Shallow Crust,0.0,89.99009,0.0,05/04/3780 +7.05148,46.32582,1024,7,7,21,18,46,5.05,5.0,fr,38609,20,1632660,1,2,Active Shallow Crust,0.0,89.99009,0.0,07/07/1024 +7.05148,46.32582,792,12,29,8,41,13,5.05,27.5,fr,38610,15,1632662,1,1,Active Shallow Crust,0.0,89.99009,0.0,12/29/0792 +7.05148,46.32582,5347,9,9,10,26,28,5.15,5.0,fr,38611,106,1632681,1,1,Active Shallow Crust,128.8839,89.99119,0.0,09/09/5347 +7.05148,46.32582,3213,1,6,12,6,42,5.35,15.0,fr,38612,64,1632697,1,1,Active Shallow Crust,0.0,89.99036,0.0,01/06/3213 +7.05148,46.32582,3599,8,7,2,39,54,5.45,5.0,fr,38613,71,1632708,1,1,Active Shallow Crust,0.0,89.98984,0.0,08/07/3599 +7.05148,46.32582,353,10,17,17,0,24,5.65,15.0,fr,38614,7,1632733,1,1,Active Shallow Crust,0.0,89.99007,0.0,10/17/0353 +7.05148,46.32582,9556,10,4,9,3,12,5.85,5.0,fr,38615,191,1632759,1,1,Active Shallow Crust,240.0444,58.0018,0.0,10/04/9556 +7.05148,46.32582,1097,9,2,14,15,12,5.95,15.0,fr,38616,21,1632769,1,1,Active Shallow Crust,0.0,89.98988,0.0,09/02/1097 +0.9354,51.62846,5645,9,17,0,26,46,3.65,5.0,fr,38617,112,1632972,1,1,Active Shallow Crust,0.0,89.99023,0.0,09/17/5645 +0.9354,51.62846,4728,10,29,5,6,48,4.05,5.0,fr,38618,94,1633020,1,1,Active Shallow Crust,0.0,89.98988,0.0,10/29/4728 +0.9354,51.62846,8135,7,27,20,48,2,4.15,15.0,fr,38619,162,1633033,1,1,Active Shallow Crust,359.9998,89.9902,0.0,07/27/8135 +3.27055,49.89384,5554,12,7,14,17,39,3.55,5.0,fr,38620,111,1633440,1,1,Active Shallow Crust,0.0,89.99026,0.0,12/07/5554 +3.27055,49.89384,9662,12,11,6,0,47,3.65,15.0,fr,38621,193,1633456,1,1,Active Shallow Crust,240.0011,58.01311,0.0,12/11/9662 +3.27055,49.89384,5678,12,26,20,56,10,3.85,5.0,fr,38622,113,1633476,1,1,Active Shallow Crust,0.0,89.9908,0.0,12/26/5678 +3.27055,49.89384,5805,12,20,5,0,7,3.85,15.0,fr,38623,116,1633483,1,1,Active Shallow Crust,0.0,89.99069,-90.0,12/20/5805 +3.27055,49.89384,593,10,18,14,11,6,3.95,5.0,fr,38624,11,1633488,1,1,Active Shallow Crust,0.0,89.98975,0.0,10/18/0593 +3.27055,49.89384,2156,3,21,17,43,48,4.25,5.0,fr,38625,43,1633527,1,1,Active Shallow Crust,240.0082,57.99436,0.0,03/21/2156 +3.27055,49.89384,6206,5,7,12,10,34,4.45,15.0,fr,38626,124,1633549,1,1,Active Shallow Crust,0.0,89.98962,0.0,05/07/6206 +3.27055,49.89384,8973,2,18,0,5,36,4.75,5.0,fr,38627,179,1633593,1,1,Active Shallow Crust,128.8874,89.98817,0.0,02/18/8973 +-0.70432,45.42442,1835,11,23,21,22,32,3.55,15.0,fr,38628,36,1633921,1,1,Active Shallow Crust,0.0,89.99026,0.0,11/23/1835 +-0.70432,45.42442,5704,10,19,17,58,6,3.65,5.0,fr,38629,114,1633932,1,1,Active Shallow Crust,0.0,89.98975,0.0,10/19/5704 +-0.70432,45.42442,1893,3,14,2,55,37,3.75,15.0,fr,38630,37,1633945,1,1,Active Shallow Crust,0.0,89.99016,0.0,03/14/1893 +-0.70432,45.42442,4260,10,8,11,6,28,3.75,15.0,fr,38631,85,1633948,1,1,Active Shallow Crust,240.0083,58.01756,0.0,10/08/4260 +-0.70432,45.42442,2076,7,7,0,42,50,4.75,15.0,fr,38632,41,1634065,1,1,Active Shallow Crust,0.0,89.99,0.0,07/07/2076 +1.0358,41.35912,1584,1,1,23,35,45,3.55,5.0,fr,38633,31,1634400,1,1,Active Shallow Crust,0.0,89.99054,0.0,01/01/1584 +1.0358,41.35912,6231,3,25,6,58,40,3.55,15.0,fr,38634,124,1634401,1,1,Active Shallow Crust,0.0,89.99054,0.0,03/25/6231 +1.0358,41.35912,7709,5,31,7,47,27,3.55,5.0,fr,38635,154,1634403,1,1,Active Shallow Crust,240.0116,57.9981,0.0,05/31/7709 +1.0358,41.35912,8569,11,6,14,45,43,3.55,15.0,fr,38636,171,1634407,1,1,Active Shallow Crust,0.0,89.99043,-90.0,11/06/8569 +1.0358,41.35912,3524,4,28,4,49,20,3.65,5.0,fr,38637,70,1634412,1,2,Active Shallow Crust,0.0,89.98988,0.0,04/28/3524 +1.0358,41.35912,5525,3,31,21,10,1,3.65,5.0,fr,38638,110,1634412,1,2,Active Shallow Crust,0.0,89.98988,0.0,03/31/5525 +1.0358,41.35912,9578,6,29,2,52,45,3.75,15.0,fr,38639,191,1634425,1,1,Active Shallow Crust,0.0,89.98948,0.0,06/29/9578 +1.0358,41.35912,5196,12,4,6,48,26,3.85,5.0,fr,38640,103,1634445,1,1,Active Shallow Crust,128.896,89.99397,0.0,12/04/5196 +1.0358,41.35912,9738,6,16,3,43,4,3.95,15.0,fr,38641,194,1634449,1,1,Active Shallow Crust,0.0,89.99045,0.0,06/16/9738 +1.0358,41.35912,8617,4,15,1,46,29,4.05,5.0,fr,38642,172,1634469,1,1,Active Shallow Crust,128.8912,89.99415,0.0,04/15/8617 +1.0358,41.35912,6926,9,22,6,0,16,4.25,5.0,fr,38643,138,1634484,1,1,Active Shallow Crust,0.0,89.98986,0.0,09/22/6926 +1.0358,41.35912,1088,11,18,21,41,20,4.75,5.0,fr,38644,21,1634544,1,1,Active Shallow Crust,0.0,89.99002,0.0,11/18/1088 +1.0358,41.35912,2294,6,18,0,51,9,4.85,5.0,fr,38645,45,1634556,1,1,Active Shallow Crust,0.0,89.98983,0.0,06/18/2294 +1.0358,41.35912,2858,9,8,10,21,55,4.95,5.0,fr,38646,57,1634568,1,1,Active Shallow Crust,0.0,89.99018,0.0,09/08/2858 +-0.78706,42.54173,2811,11,10,8,30,20,3.55,5.0,fr,38647,56,1634880,1,1,Active Shallow Crust,0.0,89.98978,0.0,11/10/2811 +-0.78706,42.54173,2421,10,5,9,13,1,3.55,15.0,fr,38648,48,1634881,1,1,Active Shallow Crust,0.0,89.98978,0.0,10/05/2421 +-0.78706,42.54173,8310,10,7,18,9,46,3.65,15.0,fr,38649,166,1634902,1,1,Active Shallow Crust,128.9007,89.96352,0.0,10/07/8310 +-0.78706,42.54173,1008,2,17,14,44,53,3.85,15.0,fr,38650,20,1634917,1,1,Active Shallow Crust,0.0,89.99014,0.0,02/17/1008 +-0.78706,42.54173,7252,6,6,9,54,53,3.95,5.0,fr,38651,145,1634928,1,3,Active Shallow Crust,0.0,89.99004,0.0,06/06/7252 +-0.78706,42.54173,7891,4,11,16,35,21,3.95,5.0,fr,38652,157,1634928,1,3,Active Shallow Crust,0.0,89.99004,0.0,04/11/7891 +-0.78706,42.54173,9792,2,27,11,50,19,3.95,5.0,fr,38653,195,1634928,1,3,Active Shallow Crust,0.0,89.99004,0.0,02/27/9792 +-0.78706,42.54173,3994,5,10,22,32,25,4.05,5.0,fr,38654,79,1634940,1,1,Active Shallow Crust,0.0,89.99007,0.0,05/10/3994 +-0.78706,42.54173,4022,3,7,3,56,51,4.05,15.0,fr,38655,80,1634941,1,1,Active Shallow Crust,0.0,89.99007,0.0,03/07/4022 +-0.78706,42.54173,8383,6,26,13,40,7,4.35,5.0,fr,38656,167,1634982,1,1,Active Shallow Crust,0.0,89.9899,-90.0,06/26/8383 +-0.78706,42.54173,97,11,7,18,1,45,4.45,5.0,fr,38657,1,1634988,1,1,Active Shallow Crust,0.0,89.99011,0.0,11/07/0097 +0.60787,43.09136,1903,8,10,23,14,37,3.55,5.0,fr,38658,38,1635360,1,2,Active Shallow Crust,0.0,89.98988,0.0,08/10/1903 +0.60787,43.09136,6223,4,13,12,11,8,3.55,5.0,fr,38659,124,1635360,1,2,Active Shallow Crust,0.0,89.98988,0.0,04/13/6223 +0.60787,43.09136,9383,12,3,23,7,18,3.55,27.5,fr,38660,187,1635362,1,1,Active Shallow Crust,0.0,89.98988,0.0,12/03/9383 +0.60787,43.09136,779,4,28,3,40,25,3.55,5.0,fr,38661,15,1635363,1,1,Active Shallow Crust,240.0117,57.99828,0.0,04/28/0779 +0.60787,43.09136,809,5,25,6,37,27,3.65,15.0,fr,38662,16,1635373,1,1,Active Shallow Crust,0.0,89.99016,0.0,05/25/0809 +0.60787,43.09136,1831,6,28,17,17,40,3.65,5.0,fr,38663,36,1635375,1,1,Active Shallow Crust,240.0007,58.01274,0.0,06/28/1831 +0.60787,43.09136,1422,11,9,10,12,20,3.65,15.0,fr,38664,28,1635382,1,1,Active Shallow Crust,128.9007,89.96353,0.0,11/09/1422 +0.60787,43.09136,9548,7,5,12,26,1,3.75,5.0,fr,38665,190,1635384,1,2,Active Shallow Crust,0.0,89.98976,0.0,07/05/9548 +0.60787,43.09136,7310,6,25,16,27,4,3.75,5.0,fr,38666,146,1635384,1,2,Active Shallow Crust,0.0,89.98976,0.0,06/25/7310 +0.60787,43.09136,1537,7,16,14,2,39,3.75,5.0,fr,38667,30,1635387,1,1,Active Shallow Crust,240.0079,58.01751,0.0,07/16/1537 +0.60787,43.09136,949,9,29,14,43,22,3.75,15.0,fr,38668,18,1635388,1,2,Active Shallow Crust,240.0079,58.01751,0.0,09/29/0949 +0.60787,43.09136,9614,4,11,16,29,49,3.75,15.0,fr,38669,192,1635388,1,2,Active Shallow Crust,240.0079,58.01751,0.0,04/11/9614 +0.60787,43.09136,229,10,23,4,24,47,3.85,5.0,fr,38670,4,1635396,1,1,Active Shallow Crust,0.0,89.99023,0.0,10/23/0229 +0.60787,43.09136,5834,1,23,8,36,44,3.85,5.0,fr,38671,116,1635402,1,1,Active Shallow Crust,0.0,89.99011,-90.0,01/23/5834 +0.60787,43.09136,5772,9,25,3,26,54,3.95,15.0,fr,38672,115,1635418,1,1,Active Shallow Crust,128.9008,89.99361,0.0,09/25/5772 +0.60787,43.09136,7637,7,18,19,14,30,4.05,5.0,fr,38673,152,1635420,1,1,Active Shallow Crust,0.0,89.99017,0.0,07/18/7637 +0.60787,43.09136,6234,4,26,6,51,22,4.15,15.0,fr,38674,124,1635433,1,2,Active Shallow Crust,0.0,89.98985,0.0,04/26/6234 +0.60787,43.09136,8304,10,15,9,37,50,4.15,15.0,fr,38675,166,1635433,1,2,Active Shallow Crust,0.0,89.98985,0.0,10/15/8304 +0.60787,43.09136,9708,8,5,0,49,10,4.25,5.0,fr,38676,194,1635444,1,1,Active Shallow Crust,0.0,89.99014,0.0,08/05/9708 +0.60787,43.09136,3259,12,8,1,55,27,4.45,27.5,fr,38677,65,1635470,1,1,Active Shallow Crust,0.0,89.98988,0.0,12/08/3259 +0.60787,43.09136,4319,7,8,22,10,9,4.65,5.0,fr,38678,86,1635495,1,1,Active Shallow Crust,240.0098,57.99408,0.0,07/08/4319 +0.60787,43.09136,5260,12,19,9,31,28,4.85,15.0,fr,38679,105,1635517,1,1,Active Shallow Crust,0.0,89.9899,0.0,12/19/5260 +0.60787,43.09136,7453,2,5,7,6,11,4.85,15.0,fr,38680,149,1635526,1,1,Active Shallow Crust,128.8937,89.989,0.0,02/05/7453 +3.91614,42.34591,1232,1,28,18,16,19,4.55,27.5,fr,38681,24,1635962,1,1,Active Shallow Crust,0.0,89.99057,0.0,01/28/1232 +3.91614,42.34591,3971,9,4,0,8,56,4.95,5.0,fr,38682,79,1636008,1,1,Active Shallow Crust,0.0,89.99033,0.0,09/04/3971 +-2.93044,49.8289,8645,7,20,1,38,34,3.55,5.0,fr,38683,172,1636320,1,1,Active Shallow Crust,0.0,89.99024,0.0,07/20/8645 +-2.93044,49.8289,6272,10,18,15,29,12,3.85,5.0,fr,38684,125,1636359,1,1,Active Shallow Crust,240.0114,57.99787,0.0,10/18/6272 +3.89799,43.67741,2594,1,22,1,49,51,3.55,5.0,fr,38685,51,1636809,1,1,Active Shallow Crust,128.8967,89.99271,0.0,01/22/2594 +3.89799,43.67741,8080,4,12,23,33,48,3.75,5.0,fr,38686,161,1636824,1,1,Active Shallow Crust,0.0,89.99131,0.0,04/12/8080 +3.89799,43.67741,6209,5,1,3,2,14,3.85,5.0,fr,38687,124,1636836,1,2,Active Shallow Crust,0.0,89.98968,0.0,05/01/6209 +3.89799,43.67741,2457,5,8,15,57,52,3.85,5.0,fr,38688,49,1636836,1,2,Active Shallow Crust,0.0,89.98968,0.0,05/08/2457 +9.18377,49.99747,2258,5,28,18,42,29,3.65,5.0,fr,38689,45,1637301,1,1,Active Shallow Crust,128.8987,89.96359,0.0,05/28/2258 +9.18377,49.99747,7566,11,26,7,45,41,3.75,5.0,fr,38690,151,1637304,1,1,Active Shallow Crust,0.0,89.9897,0.0,11/26/7566 +9.18377,49.99747,6321,3,9,16,46,55,3.75,15.0,fr,38691,126,1637311,1,1,Active Shallow Crust,0.0,89.98959,-90.0,03/09/6321 +9.18377,49.99747,4169,5,27,2,28,6,4.05,5.0,fr,38692,83,1637340,1,1,Active Shallow Crust,0.0,89.99271,0.0,05/27/4169 +-1.376,49.54339,939,4,21,16,3,52,3.65,5.0,fr,38693,18,1637772,1,2,Active Shallow Crust,0.0,89.98979,0.0,04/21/0939 +-1.376,49.54339,9520,5,13,2,57,30,3.65,5.0,fr,38694,190,1637772,1,2,Active Shallow Crust,0.0,89.98979,0.0,05/13/9520 +-1.376,49.54339,2070,7,22,11,23,39,3.65,5.0,fr,38695,41,1637775,1,1,Active Shallow Crust,240.0014,58.01316,0.0,07/22/2070 +-1.376,49.54339,2119,5,1,5,45,56,3.65,5.0,fr,38696,42,1637781,1,1,Active Shallow Crust,128.9002,89.96346,0.0,05/01/2119 +-1.376,49.54339,5431,8,6,13,28,55,3.75,5.0,fr,38697,108,1637787,1,1,Active Shallow Crust,240.0088,58.01752,0.0,08/06/5431 +-1.376,49.54339,3630,8,1,7,17,39,3.95,5.0,fr,38698,72,1637808,1,1,Active Shallow Crust,0.0,89.98968,0.0,08/01/3630 +-1.376,49.54339,7721,3,14,5,44,48,3.95,5.0,fr,38699,154,1637817,1,1,Active Shallow Crust,128.9001,89.9938,0.0,03/14/7721 +-1.376,49.54339,5030,5,5,12,36,42,4.05,5.0,fr,38700,100,1637820,1,1,Active Shallow Crust,0.0,89.98988,0.0,05/05/5030 +-1.376,49.54339,1800,12,13,20,58,36,4.25,5.0,fr,38701,35,1637844,1,1,Active Shallow Crust,0.0,89.98977,0.0,12/13/1800 +-1.376,49.54339,6156,4,25,1,38,33,4.25,15.0,fr,38702,123,1637845,1,1,Active Shallow Crust,0.0,89.98977,0.0,04/25/6156 +-1.376,49.54339,7069,5,5,4,16,38,4.45,15.0,fr,38703,141,1637872,1,1,Active Shallow Crust,240.0061,57.99493,0.0,05/05/7069 +5.69288,49.848,7169,8,31,21,38,33,3.55,5.0,fr,38704,143,1638240,1,1,Active Shallow Crust,0.0,89.98699,0.0,08/31/7169 +5.69288,49.848,4056,4,15,23,52,53,3.65,5.0,fr,38705,81,1638252,1,1,Active Shallow Crust,0.0,89.98841,0.0,04/15/4056 +0.02621,44.94392,6512,5,30,8,2,17,3.55,5.0,fr,38706,130,1638729,1,1,Active Shallow Crust,128.8963,89.99373,0.0,05/30/6512 +0.02621,44.94392,790,7,3,0,14,14,3.95,27.5,fr,38707,15,1638770,1,1,Active Shallow Crust,360.0,89.99001,0.0,07/03/0790 +0.02621,44.94392,5550,3,28,11,9,13,4.15,5.0,fr,38708,110,1638792,1,1,Active Shallow Crust,0.0,89.99,0.0,03/28/5550 +0.02621,44.94392,9998,6,30,15,49,0,4.25,5.0,fr,38709,199,1638804,1,1,Active Shallow Crust,0.0,89.99,0.0,06/30/9998 +0.02621,44.94392,4519,9,4,17,25,47,4.45,15.0,fr,38710,90,1638829,1,1,Active Shallow Crust,0.0,89.99,0.0,09/04/4519 +7.62201,43.75456,9046,11,3,14,39,38,3.55,5.0,fr,38711,180,1639200,1,2,Active Shallow Crust,0.0,89.99271,0.0,11/03/9046 +7.62201,43.75456,1108,4,20,9,14,10,3.55,5.0,fr,38712,22,1639200,1,2,Active Shallow Crust,0.0,89.99271,0.0,04/20/1108 +7.62201,43.75456,8255,4,12,8,35,26,3.55,15.0,fr,38713,165,1639201,1,2,Active Shallow Crust,0.0,89.99271,0.0,04/12/8255 +7.62201,43.75456,6721,6,28,4,11,23,3.55,15.0,fr,38714,134,1639201,1,2,Active Shallow Crust,0.0,89.99271,0.0,06/28/6721 +7.62201,43.75456,2140,6,26,9,27,49,3.55,15.0,fr,38715,42,1639204,1,1,Active Shallow Crust,240.0114,57.99892,0.0,06/26/2140 +7.62201,43.75456,6626,3,31,15,17,58,3.55,5.0,fr,38716,132,1639206,1,3,Active Shallow Crust,0.0,89.99263,-90.0,03/31/6626 +7.62201,43.75456,4184,1,14,22,57,56,3.55,5.0,fr,38717,83,1639206,1,3,Active Shallow Crust,0.0,89.99263,-90.0,01/14/4184 +7.62201,43.75456,7397,3,6,19,51,9,3.55,5.0,fr,38718,147,1639206,1,3,Active Shallow Crust,0.0,89.99263,-90.0,03/06/7397 +7.62201,43.75456,7128,8,19,5,2,59,3.55,5.0,fr,38719,142,1639209,1,2,Active Shallow Crust,128.895,89.99636,0.0,08/19/7128 +7.62201,43.75456,4147,8,30,9,25,48,3.55,5.0,fr,38720,82,1639209,1,2,Active Shallow Crust,128.895,89.99636,0.0,08/30/4147 +7.62201,43.75456,2827,6,5,13,57,35,3.65,5.0,fr,38721,56,1639212,1,8,Active Shallow Crust,0.0,89.98701,0.0,06/05/2827 +7.62201,43.75456,8735,7,23,16,26,6,3.65,5.0,fr,38722,174,1639212,1,8,Active Shallow Crust,0.0,89.98701,0.0,07/23/8735 +7.62201,43.75456,3285,2,17,10,48,48,3.65,5.0,fr,38723,65,1639212,1,8,Active Shallow Crust,0.0,89.98701,0.0,02/17/3285 +7.62201,43.75456,7396,9,19,5,15,40,3.65,5.0,fr,38724,147,1639212,1,8,Active Shallow Crust,0.0,89.98701,0.0,09/19/7396 +7.62201,43.75456,2017,3,27,13,56,34,3.65,5.0,fr,38725,40,1639212,1,8,Active Shallow Crust,0.0,89.98701,0.0,03/27/2017 +7.62201,43.75456,9051,2,22,18,45,12,3.65,5.0,fr,38726,181,1639212,1,8,Active Shallow Crust,0.0,89.98701,0.0,02/22/9051 +7.62201,43.75456,8439,5,26,9,19,19,3.65,5.0,fr,38727,168,1639212,1,8,Active Shallow Crust,0.0,89.98701,0.0,05/26/8439 +7.62201,43.75456,550,1,18,23,26,51,3.65,5.0,fr,38728,10,1639212,1,8,Active Shallow Crust,0.0,89.98701,0.0,01/18/0550 +7.62201,43.75456,6278,5,24,12,18,36,3.65,27.5,fr,38729,125,1639217,1,1,Active Shallow Crust,240.0011,58.01294,0.0,05/24/6278 +7.62201,43.75456,6335,10,23,23,59,33,3.65,5.0,fr,38730,126,1639221,1,1,Active Shallow Crust,128.9015,89.96347,0.0,10/23/6335 +7.62201,43.75456,6388,4,12,6,3,17,3.65,15.0,fr,38731,127,1639222,1,2,Active Shallow Crust,128.9015,89.96347,0.0,04/12/6388 +7.62201,43.75456,1505,12,18,7,38,6,3.65,15.0,fr,38732,30,1639222,1,2,Active Shallow Crust,128.9015,89.96347,0.0,12/18/1505 +7.62201,43.75456,9431,6,5,2,41,55,3.75,5.0,fr,38733,188,1639224,1,1,Active Shallow Crust,0.0,89.98843,0.0,06/05/9431 +7.62201,43.75456,9023,12,13,14,48,2,3.75,15.0,fr,38734,180,1639225,1,2,Active Shallow Crust,0.0,89.98843,0.0,12/13/9023 +7.62201,43.75456,3864,5,31,16,38,4,3.75,15.0,fr,38735,77,1639225,1,2,Active Shallow Crust,0.0,89.98843,0.0,05/31/3864 +7.62201,43.75456,8839,9,4,15,50,19,3.75,27.5,fr,38736,176,1639226,1,2,Active Shallow Crust,0.0,89.98843,0.0,09/04/8839 +7.62201,43.75456,6157,5,31,23,58,10,3.75,27.5,fr,38737,123,1639226,1,2,Active Shallow Crust,0.0,89.98843,0.0,05/31/6157 +7.62201,43.75456,5450,8,18,4,36,25,3.75,5.0,fr,38738,108,1639230,1,1,Active Shallow Crust,0.0,89.9883,-90.0,08/18/5450 +7.62201,43.75456,5599,12,20,10,57,43,3.75,15.0,fr,38739,111,1639231,1,1,Active Shallow Crust,0.0,89.9883,-90.0,12/20/5599 +7.62201,43.75456,1050,2,9,10,32,55,3.75,15.0,fr,38740,20,1639234,1,1,Active Shallow Crust,128.8965,89.96745,0.0,02/09/1050 +7.62201,43.75456,7242,3,26,18,0,18,3.85,15.0,fr,38741,144,1639237,1,1,Active Shallow Crust,0.0,89.98969,0.0,03/26/7242 +7.62201,43.75456,7611,3,2,14,1,59,3.95,5.0,fr,38742,152,1639248,1,1,Active Shallow Crust,0.0,89.99081,0.0,03/02/7611 +7.62201,43.75456,657,3,26,13,46,58,3.95,15.0,fr,38743,13,1639249,1,1,Active Shallow Crust,0.0,89.99081,0.0,03/26/0657 +7.62201,43.75456,3759,6,10,10,56,17,3.95,15.0,fr,38744,75,1639255,1,1,Active Shallow Crust,0.0,89.9907,-90.0,06/10/3759 +7.62201,43.75456,4542,7,13,10,43,52,3.95,15.0,fr,38745,90,1639258,1,1,Active Shallow Crust,128.9008,89.99311,0.0,07/13/4542 +7.62201,43.75456,6125,7,6,11,31,3,4.05,5.0,fr,38746,122,1639260,1,1,Active Shallow Crust,0.0,89.99181,0.0,07/06/6125 +7.62201,43.75456,5938,12,20,23,57,24,4.05,15.0,fr,38747,118,1639261,1,1,Active Shallow Crust,0.0,89.99181,0.0,12/20/5938 +7.62201,43.75456,3949,7,8,5,45,42,4.15,5.0,fr,38748,78,1639272,1,2,Active Shallow Crust,0.0,89.98905,0.0,07/08/3949 +7.62201,43.75456,6263,12,13,0,24,47,4.15,5.0,fr,38749,125,1639272,1,2,Active Shallow Crust,0.0,89.98905,0.0,12/13/6263 +7.62201,43.75456,6802,3,4,11,51,6,4.15,5.0,fr,38750,136,1639275,1,1,Active Shallow Crust,240.0082,57.99716,0.0,03/04/6802 +7.62201,43.75456,9722,1,25,1,14,0,4.15,15.0,fr,38751,194,1639276,1,1,Active Shallow Crust,240.0082,57.99718,0.0,01/25/9722 +7.62201,43.75456,7000,6,26,3,37,24,4.15,5.0,fr,38752,139,1639281,1,1,Active Shallow Crust,128.8988,89.9927,0.0,06/26/7000 +7.62201,43.75456,5484,3,19,8,55,15,4.25,5.0,fr,38753,109,1639284,1,1,Active Shallow Crust,0.0,89.99024,0.0,03/19/5484 +7.62201,43.75456,5286,3,7,15,48,14,4.35,5.0,fr,38754,105,1639296,1,2,Active Shallow Crust,0.0,89.9913,0.0,03/07/5286 +7.62201,43.75456,2573,3,15,8,33,34,4.35,5.0,fr,38755,51,1639296,1,2,Active Shallow Crust,0.0,89.9913,0.0,03/15/2573 +7.62201,43.75456,7944,9,5,9,50,48,4.35,27.5,fr,38756,158,1639298,1,1,Active Shallow Crust,0.0,89.9913,0.0,09/05/7944 +7.62201,43.75456,4300,12,30,1,13,0,4.35,15.0,fr,38757,85,1639300,1,1,Active Shallow Crust,240.0081,57.9953,0.0,12/30/4300 +7.62201,43.75456,3410,4,27,0,44,17,4.45,5.0,fr,38758,68,1639308,1,2,Active Shallow Crust,0.0,89.98966,0.0,04/27/3410 +7.62201,43.75456,8592,5,17,0,34,7,4.45,5.0,fr,38759,171,1639308,1,2,Active Shallow Crust,0.0,89.98966,0.0,05/17/8592 +7.62201,43.75456,6465,3,19,1,41,17,4.45,5.0,fr,38760,129,1639311,1,1,Active Shallow Crust,240.005,57.99429,0.0,03/19/6465 +7.62201,43.75456,6446,10,25,9,38,17,4.45,27.5,fr,38761,128,1639313,1,1,Active Shallow Crust,240.005,57.9943,0.0,10/25/6446 +7.62201,43.75456,6962,12,29,19,8,27,4.45,5.0,fr,38762,139,1639314,1,1,Active Shallow Crust,0.0,89.98954,-90.0,12/29/6962 +7.62201,43.75456,7425,1,25,8,37,25,4.55,5.0,fr,38763,148,1639320,1,2,Active Shallow Crust,0.0,89.99078,0.0,01/25/7425 +7.62201,43.75456,9834,12,21,7,46,35,4.55,5.0,fr,38764,196,1639320,1,2,Active Shallow Crust,0.0,89.99078,0.0,12/21/9834 +7.62201,43.75456,5766,4,30,2,30,58,4.65,5.0,fr,38765,115,1639338,1,1,Active Shallow Crust,0.0,89.98962,-90.0,04/30/5766 +7.62201,43.75456,7180,1,5,11,54,51,4.75,5.0,fr,38766,143,1639347,1,1,Active Shallow Crust,240.0065,58.00429,0.0,01/05/7180 +7.62201,43.75456,3272,11,11,10,15,25,4.85,15.0,fr,38767,65,1639366,1,1,Active Shallow Crust,128.8939,89.98886,0.0,11/11/3272 +7.62201,43.75456,9166,11,4,0,40,45,4.95,27.5,fr,38768,183,1639370,1,1,Active Shallow Crust,0.0,89.98982,0.0,11/04/9166 +7.62201,43.75456,9994,7,14,15,57,5,5.05,5.0,fr,38769,199,1639380,1,1,Active Shallow Crust,0.0,89.98964,0.0,07/14/9994 +7.62201,43.75456,4389,7,31,5,33,35,5.25,5.0,fr,38770,87,1639404,1,1,Active Shallow Crust,0.0,89.98971,0.0,07/31/4389 +7.62201,43.75456,6694,4,4,9,22,40,5.45,15.0,fr,38771,133,1639429,1,1,Active Shallow Crust,0.0,89.99019,0.0,04/04/6694 +7.62201,43.75456,3359,5,4,12,52,9,5.55,5.0,fr,38772,67,1639443,1,1,Active Shallow Crust,240.0267,58.00208,0.0,05/04/3359 +7.62201,43.75456,5371,10,2,12,17,54,5.65,27.5,fr,38773,107,1639454,1,1,Active Shallow Crust,0.0,89.99026,0.0,10/02/5371 +7.613447,43.76527,7411,7,7,22,9,2,6.45,7.200962,fr,38774,148,1639551,1,1,Active Shallow Crust,240.082,58.00038,0.0,07/07/7411 +6.79399,50.2341,6263,6,19,1,8,47,3.55,5.0,fr,38775,125,1639683,1,1,Active Shallow Crust,240.0126,57.99841,0.0,06/19/6263 +6.79399,50.2341,3597,4,1,10,52,16,3.65,15.0,fr,38776,71,1639693,1,1,Active Shallow Crust,0.0,89.9885,0.0,04/01/3597 +6.79399,50.2341,519,4,12,5,48,55,3.65,15.0,fr,38777,10,1639699,1,1,Active Shallow Crust,0.0,89.98837,-90.0,04/12/0519 +6.79399,50.2341,1013,2,27,7,20,22,3.85,27.5,fr,38778,20,1639718,1,1,Active Shallow Crust,0.0,89.99087,0.0,02/27/1013 +6.79399,50.2341,1279,10,26,13,18,57,3.95,15.0,fr,38779,25,1639729,1,1,Active Shallow Crust,0.0,89.99186,0.0,10/26/1279 +6.79399,50.2341,736,2,19,13,10,27,3.95,5.0,fr,38780,14,1639731,1,1,Active Shallow Crust,240.0206,58.00512,0.0,02/19/0736 +6.79399,50.2341,187,12,25,0,6,0,4.35,5.0,fr,38781,3,1639776,1,1,Active Shallow Crust,0.0,89.98973,0.0,12/25/0187 +-0.09763,46.95974,4507,4,12,13,3,42,3.55,5.0,fr,38782,90,1640160,1,3,Active Shallow Crust,0.0,89.99,0.0,04/12/4507 +-0.09763,46.95974,1225,5,9,23,17,23,3.55,5.0,fr,38783,24,1640160,1,3,Active Shallow Crust,0.0,89.99,0.0,05/09/1225 +-0.09763,46.95974,9076,4,26,2,45,33,3.55,5.0,fr,38784,181,1640160,1,3,Active Shallow Crust,0.0,89.99,0.0,04/26/9076 +-0.09763,46.95974,8946,3,7,10,16,42,3.55,15.0,fr,38785,178,1640161,1,1,Active Shallow Crust,0.0,89.99,0.0,03/07/8946 +-0.09763,46.95974,3793,11,1,13,28,43,3.65,5.0,fr,38786,75,1640172,1,2,Active Shallow Crust,0.0,89.99004,0.0,11/01/3793 +-0.09763,46.95974,216,2,6,12,27,53,3.65,5.0,fr,38787,4,1640172,1,2,Active Shallow Crust,0.0,89.99004,0.0,02/06/0216 +-0.09763,46.95974,9416,4,10,12,34,20,3.65,15.0,fr,38788,188,1640173,1,2,Active Shallow Crust,0.0,89.99004,0.0,04/10/9416 +-0.09763,46.95974,4968,11,1,15,27,32,3.65,15.0,fr,38789,99,1640173,1,2,Active Shallow Crust,0.0,89.99004,0.0,11/01/4968 +-0.09763,46.95974,5044,5,18,7,40,42,3.75,5.0,fr,38790,100,1640184,1,2,Active Shallow Crust,0.0,89.99001,0.0,05/18/5044 +-0.09763,46.95974,2098,1,3,1,3,48,3.75,5.0,fr,38791,41,1640184,1,2,Active Shallow Crust,0.0,89.99001,0.0,01/03/2098 +-0.09763,46.95974,4650,1,11,14,11,8,3.75,15.0,fr,38792,92,1640185,1,2,Active Shallow Crust,0.0,89.99001,0.0,01/11/4650 +-0.09763,46.95974,7478,6,27,1,26,26,3.75,15.0,fr,38793,149,1640185,1,2,Active Shallow Crust,0.0,89.99001,0.0,06/27/7478 +-0.09763,46.95974,1526,5,14,21,29,14,3.85,5.0,fr,38794,30,1640196,1,1,Active Shallow Crust,0.0,89.99003,0.0,05/14/1526 +-0.09763,46.95974,2949,11,6,8,51,15,3.85,15.0,fr,38795,58,1640197,1,1,Active Shallow Crust,0.0,89.99003,0.0,11/06/2949 +-0.09763,46.95974,7813,4,11,2,3,29,3.85,5.0,fr,38796,156,1640202,1,1,Active Shallow Crust,0.0,89.98999,-90.0,04/11/7813 +-0.09763,46.95974,1305,1,7,17,36,32,3.95,15.0,fr,38797,26,1640209,1,2,Active Shallow Crust,0.0,89.99003,0.0,01/07/1305 +-0.09763,46.95974,9800,12,8,11,46,13,3.95,15.0,fr,38798,195,1640209,1,2,Active Shallow Crust,0.0,89.99003,0.0,12/08/9800 +-0.09763,46.95974,6658,7,25,2,10,38,4.05,5.0,fr,38799,133,1640223,1,1,Active Shallow Crust,240.006,58.00585,0.0,07/25/6658 +-0.09763,46.95974,8789,4,23,14,0,21,4.15,5.0,fr,38800,175,1640232,1,1,Active Shallow Crust,0.0,89.98997,0.0,04/23/8789 +-0.09763,46.95974,4651,3,22,5,57,37,4.25,5.0,fr,38801,93,1640244,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/22/4651 +-0.09763,46.95974,6734,7,5,3,48,27,4.25,15.0,fr,38802,134,1640251,1,1,Active Shallow Crust,0.0,89.98999,-90.0,07/05/6734 +-0.09763,46.95974,265,2,26,17,26,59,4.45,5.0,fr,38803,5,1640268,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/26/0265 +-0.09763,46.95974,8392,10,18,11,35,17,4.75,15.0,fr,38804,167,1640311,1,1,Active Shallow Crust,0.0,89.99,-90.0,10/18/8392 +-0.09763,46.95974,587,1,15,4,42,52,5.05,27.5,fr,38805,11,1640342,1,1,Active Shallow Crust,0.0,89.99,0.0,01/15/0587 +-0.09763,46.95974,9449,11,24,7,57,52,5.35,5.0,fr,38806,188,1640385,1,1,Active Shallow Crust,128.8828,89.98806,0.0,11/24/9449 +-1.10986,48.49533,2434,4,21,20,13,20,3.55,5.0,fr,38807,48,1640640,1,3,Active Shallow Crust,0.0,89.98997,0.0,04/21/2434 +-1.10986,48.49533,2377,8,26,20,22,43,3.55,5.0,fr,38808,47,1640640,1,3,Active Shallow Crust,0.0,89.98997,0.0,08/26/2377 +-1.10986,48.49533,489,6,18,21,25,31,3.55,5.0,fr,38809,9,1640640,1,3,Active Shallow Crust,0.0,89.98997,0.0,06/18/0489 +-1.10986,48.49533,1368,9,3,13,14,37,3.55,27.5,fr,38810,27,1640642,1,2,Active Shallow Crust,0.0,89.98997,0.0,09/03/1368 +-1.10986,48.49533,7281,1,10,8,2,9,3.55,27.5,fr,38811,145,1640642,1,2,Active Shallow Crust,0.0,89.98997,0.0,01/10/7281 +-1.10986,48.49533,5409,1,26,0,30,44,3.55,5.0,fr,38812,108,1640646,1,1,Active Shallow Crust,0.0,89.98986,-90.0,01/26/5409 +-1.10986,48.49533,4134,11,28,15,43,1,3.55,5.0,fr,38813,82,1640649,1,1,Active Shallow Crust,128.8963,89.99332,0.0,11/28/4134 +-1.10986,48.49533,4771,5,31,17,23,5,3.65,5.0,fr,38814,95,1640652,1,1,Active Shallow Crust,0.0,89.98958,0.0,05/31/4771 +-1.10986,48.49533,7985,6,15,15,49,28,3.65,5.0,fr,38815,159,1640661,1,1,Active Shallow Crust,128.9005,89.96343,0.0,06/15/7985 +-1.10986,48.49533,2870,8,23,23,54,16,3.75,5.0,fr,38816,57,1640664,1,1,Active Shallow Crust,0.0,89.98939,0.0,08/23/2870 +-1.10986,48.49533,3689,3,26,11,32,12,3.75,15.0,fr,38817,73,1640668,1,2,Active Shallow Crust,240.0088,58.01754,0.0,03/26/3689 +-1.10986,48.49533,7825,6,8,11,58,22,3.75,15.0,fr,38818,156,1640668,1,2,Active Shallow Crust,240.0088,58.01754,0.0,06/08/7825 +-1.10986,48.49533,2377,3,21,13,26,13,3.85,5.0,fr,38819,47,1640676,1,1,Active Shallow Crust,0.0,89.99054,0.0,03/21/2377 +-1.10986,48.49533,2353,8,26,7,24,10,3.85,15.0,fr,38820,47,1640677,1,1,Active Shallow Crust,0.0,89.99054,0.0,08/26/2353 +-1.10986,48.49533,3059,12,8,4,38,26,4.05,5.0,fr,38821,61,1640706,1,1,Active Shallow Crust,0.0,89.98955,-90.0,12/08/3059 +-1.10986,48.49533,1167,11,29,20,15,22,4.35,5.0,fr,38822,23,1640736,1,1,Active Shallow Crust,0.0,89.99002,0.0,11/29/1167 +-1.10986,48.49533,6163,11,14,5,5,31,4.45,5.0,fr,38823,123,1640757,1,1,Active Shallow Crust,128.8916,89.99377,0.0,11/14/6163 +-1.10986,48.49533,973,4,10,23,9,10,4.75,15.0,fr,38824,19,1640794,1,1,Active Shallow Crust,128.888,89.98808,0.0,04/10/0973 +-4.02013,48.11217,2951,2,13,12,25,58,3.55,5.0,fr,38825,59,1641600,1,1,Active Shallow Crust,0.0,89.99327,0.0,02/13/2951 +-4.02013,48.11217,1531,12,10,19,5,39,3.55,15.0,fr,38826,30,1641601,1,1,Active Shallow Crust,0.0,89.99327,0.0,12/10/1531 +-4.02013,48.11217,8192,9,6,19,56,28,3.65,5.0,fr,38827,163,1641612,1,2,Active Shallow Crust,0.0,89.988,0.0,09/06/8192 +-4.02013,48.11217,302,10,18,13,20,40,3.65,5.0,fr,38828,6,1641612,1,2,Active Shallow Crust,0.0,89.988,0.0,10/18/0302 +-4.02013,48.11217,2367,8,16,16,41,29,3.75,15.0,fr,38829,47,1641625,1,1,Active Shallow Crust,0.0,89.9893,0.0,08/16/2367 +-4.02013,48.11217,7362,6,28,9,21,39,3.85,5.0,fr,38830,147,1641636,1,1,Active Shallow Crust,0.0,89.99046,0.0,06/28/7362 +-4.02013,48.11217,1873,3,30,12,46,1,4.05,5.0,fr,38831,37,1641663,1,1,Active Shallow Crust,240.0063,58.00587,0.0,03/30/1873 +-4.02013,48.11217,9463,2,28,10,8,23,4.05,27.5,fr,38832,189,1641665,1,1,Active Shallow Crust,240.0063,58.00584,0.0,02/28/9463 +-4.02013,48.11217,9621,4,18,0,39,38,4.75,5.0,fr,38833,192,1641744,1,1,Active Shallow Crust,0.0,89.98985,0.0,04/18/9621 +6.10448,43.84259,361,4,24,6,46,18,3.55,5.0,fr,38834,7,1642080,1,3,Active Shallow Crust,0.0,89.99273,0.0,04/24/0361 +6.10448,43.84259,2914,1,20,4,18,34,3.55,5.0,fr,38835,58,1642080,1,3,Active Shallow Crust,0.0,89.99273,0.0,01/20/2914 +6.10448,43.84259,6621,9,24,4,37,37,3.55,5.0,fr,38836,132,1642080,1,3,Active Shallow Crust,0.0,89.99273,0.0,09/24/6621 +6.10448,43.84259,3189,10,25,0,27,12,3.55,5.0,fr,38837,63,1642086,1,1,Active Shallow Crust,0.0,89.99265,-90.0,10/25/3189 +6.10448,43.84259,3229,8,6,1,12,15,3.55,15.0,fr,38838,64,1642087,1,1,Active Shallow Crust,0.0,89.99265,-90.0,08/06/3229 +6.10448,43.84259,4905,7,9,13,51,51,3.65,5.0,fr,38839,98,1642092,1,1,Active Shallow Crust,0.0,89.98704,0.0,07/09/4905 +6.10448,43.84259,6980,6,16,18,22,41,3.75,5.0,fr,38840,139,1642104,1,3,Active Shallow Crust,0.0,89.98845,0.0,06/16/6980 +6.10448,43.84259,7617,3,6,20,28,5,3.75,5.0,fr,38841,152,1642104,1,3,Active Shallow Crust,0.0,89.98845,0.0,03/06/7617 +6.10448,43.84259,9294,4,11,17,11,56,3.75,5.0,fr,38842,185,1642104,1,3,Active Shallow Crust,0.0,89.98845,0.0,04/11/9294 +6.10448,43.84259,641,2,3,13,23,52,3.75,15.0,fr,38843,12,1642105,1,2,Active Shallow Crust,0.0,89.98845,0.0,02/03/0641 +6.10448,43.84259,2088,7,8,6,23,0,3.75,15.0,fr,38844,41,1642105,1,2,Active Shallow Crust,0.0,89.98845,0.0,07/08/2088 +6.10448,43.84259,5962,2,1,5,4,16,3.85,5.0,fr,38845,119,1642116,1,1,Active Shallow Crust,0.0,89.9897,0.0,02/01/5962 +6.10448,43.84259,6068,10,22,15,44,31,3.85,5.0,fr,38846,121,1642122,1,1,Active Shallow Crust,0.0,89.98959,-90.0,10/22/6068 +6.10448,43.84259,4038,1,15,23,8,45,3.95,5.0,fr,38847,80,1642128,1,2,Active Shallow Crust,0.0,89.99082,0.0,01/15/4038 +6.10448,43.84259,3116,6,15,0,45,48,3.95,5.0,fr,38848,62,1642128,1,2,Active Shallow Crust,0.0,89.99082,0.0,06/15/3116 +6.10448,43.84259,9144,4,19,23,32,34,3.95,5.0,fr,38849,182,1642131,1,1,Active Shallow Crust,240.0202,58.00513,0.0,04/19/9144 +6.10448,43.84259,1910,8,26,12,34,35,4.05,5.0,fr,38850,38,1642140,1,1,Active Shallow Crust,0.0,89.99182,0.0,08/26/1910 +6.10448,43.84259,6330,1,10,2,18,32,4.05,15.0,fr,38851,126,1642147,1,1,Active Shallow Crust,0.0,89.99172,-90.0,01/10/6330 +6.10448,43.84259,8416,9,19,23,27,41,4.15,5.0,fr,38852,168,1642152,1,2,Active Shallow Crust,0.0,89.98907,0.0,09/19/8416 +6.10448,43.84259,5681,6,9,21,56,40,4.15,5.0,fr,38853,113,1642152,1,2,Active Shallow Crust,0.0,89.98907,0.0,06/09/5681 +6.10448,43.84259,1033,2,7,12,0,25,4.15,15.0,fr,38854,20,1642153,1,1,Active Shallow Crust,0.0,89.98907,0.0,02/07/1033 +6.10448,43.84259,9685,8,29,2,48,26,4.25,15.0,fr,38855,193,1642165,1,1,Active Shallow Crust,0.0,89.99025,0.0,08/29/9685 +6.10448,43.84259,226,5,14,14,42,13,4.25,5.0,fr,38856,4,1642167,1,1,Active Shallow Crust,240.0072,57.99356,0.0,05/14/0226 +6.10448,43.84259,7555,5,2,17,57,44,4.25,5.0,fr,38857,151,1642173,1,1,Active Shallow Crust,128.895,89.98085,0.0,05/02/7555 +6.10448,43.84259,7992,5,22,20,39,7,4.65,5.0,fr,38858,159,1642218,1,1,Active Shallow Crust,0.0,89.98963,-90.0,05/22/7992 +1.83964,42.96005,5008,7,28,0,37,52,3.55,5.0,fr,38859,100,1642560,1,1,Active Shallow Crust,0.0,89.99078,0.0,07/28/5008 +1.83964,42.96005,1500,7,13,2,27,52,3.55,5.0,fr,38860,29,1642569,1,1,Active Shallow Crust,128.8967,89.99355,0.0,07/13/1500 +1.83964,42.96005,7606,10,20,19,10,7,3.65,5.0,fr,38861,152,1642572,1,1,Active Shallow Crust,0.0,89.99014,0.0,10/20/7606 +1.83964,42.96005,5055,11,26,5,20,31,3.85,5.0,fr,38862,101,1642596,1,3,Active Shallow Crust,0.0,89.98955,0.0,11/26/5055 +1.83964,42.96005,6698,7,27,23,19,55,3.85,5.0,fr,38863,133,1642596,1,3,Active Shallow Crust,0.0,89.98955,0.0,07/27/6698 +1.83964,42.96005,8498,12,23,9,6,23,3.85,5.0,fr,38864,169,1642596,1,3,Active Shallow Crust,0.0,89.98955,0.0,12/23/8498 +1.83964,42.96005,7049,10,4,23,0,20,3.85,15.0,fr,38865,140,1642597,1,1,Active Shallow Crust,0.0,89.98955,0.0,10/04/7049 +1.83964,42.96005,6269,2,7,21,51,36,3.95,5.0,fr,38866,125,1642608,1,1,Active Shallow Crust,0.0,89.98952,0.0,02/07/6269 +1.83964,42.96005,2823,8,22,14,48,15,4.05,5.0,fr,38867,56,1642620,1,1,Active Shallow Crust,0.0,89.98962,0.0,08/22/2823 +1.83964,42.96005,8114,1,8,19,20,59,4.15,5.0,fr,38868,162,1642641,1,1,Active Shallow Crust,128.898,89.99399,0.0,01/08/8114 +1.83964,42.96005,7523,2,23,7,6,18,4.45,5.0,fr,38869,150,1642668,1,1,Active Shallow Crust,0.0,89.99018,0.0,02/23/7523 +1.83964,42.96005,9555,11,16,16,15,20,5.15,5.0,fr,38870,191,1642752,1,1,Active Shallow Crust,0.0,89.99006,0.0,11/16/9555 +0.79399,44.19456,2263,7,25,3,53,39,3.75,5.0,fr,38871,45,1643064,1,1,Active Shallow Crust,0.0,89.98995,0.0,07/25/2263 +0.79399,44.19456,9271,4,20,1,10,44,3.75,5.0,fr,38872,185,1643073,1,1,Active Shallow Crust,128.8969,89.96732,0.0,04/20/9271 +0.79399,44.19456,6640,11,9,11,51,35,4.15,5.0,fr,38873,132,1643112,1,1,Active Shallow Crust,0.0,89.99004,0.0,11/09/6640 +0.79399,44.19456,1682,10,21,20,21,51,4.65,15.0,fr,38874,33,1643173,1,1,Active Shallow Crust,0.0,89.99007,0.0,10/21/1682 +7.98686,50.12241,6498,10,29,5,13,46,3.55,5.0,fr,38875,129,1643520,1,2,Active Shallow Crust,0.0,89.98707,0.0,10/29/6498 +7.98686,50.12241,6154,9,11,9,37,28,3.55,5.0,fr,38876,123,1643520,1,2,Active Shallow Crust,0.0,89.98707,0.0,09/11/6154 +7.98686,50.12241,1668,11,25,2,1,27,3.65,15.0,fr,38877,33,1643533,1,1,Active Shallow Crust,0.0,89.98847,0.0,11/25/1668 +7.98686,50.12241,6332,9,14,7,19,59,3.65,27.5,fr,38878,126,1643534,1,1,Active Shallow Crust,0.0,89.98847,0.0,09/14/6332 +7.98686,50.12241,1768,3,27,12,3,43,3.65,15.0,fr,38879,35,1643536,1,1,Active Shallow Crust,240.0015,58.01311,0.0,03/27/1768 +7.98686,50.12241,2480,3,4,13,29,20,3.75,5.0,fr,38880,49,1643544,1,1,Active Shallow Crust,0.0,89.98973,0.0,03/04/2480 +7.98686,50.12241,2474,9,19,3,37,57,3.85,5.0,fr,38881,49,1643556,1,1,Active Shallow Crust,0.0,89.99084,0.0,09/19/2474 +7.98686,50.12241,5154,10,15,23,41,24,3.85,15.0,fr,38882,103,1643566,1,1,Active Shallow Crust,128.8953,89.99542,0.0,10/15/5154 +7.98686,50.12241,8180,12,14,3,27,35,3.95,5.0,fr,38883,163,1643568,1,1,Active Shallow Crust,0.0,89.99184,0.0,12/14/8180 +7.98686,50.12241,4866,8,23,2,20,48,3.95,27.5,fr,38884,97,1643570,1,1,Active Shallow Crust,0.0,89.99184,0.0,08/23/4866 +7.98686,50.12241,6427,1,16,18,11,40,4.15,5.0,fr,38885,128,1643592,1,1,Active Shallow Crust,0.0,89.99028,0.0,01/16/6427 +7.98686,50.12241,2207,6,20,2,32,51,4.15,15.0,fr,38886,44,1643596,1,1,Active Shallow Crust,240.0086,57.99781,0.0,06/20/2207 +7.98686,50.12241,6921,7,21,2,54,14,4.25,15.0,fr,38887,138,1643605,1,1,Active Shallow Crust,0.0,89.99133,0.0,07/21/6921 +7.98686,50.12241,7535,11,3,15,2,6,4.25,27.5,fr,38888,150,1643612,1,1,Active Shallow Crust,0.0,89.99123,-90.0,11/03/7535 +7.98686,50.12241,6892,8,6,20,58,8,5.05,5.0,fr,38889,137,1643706,1,1,Active Shallow Crust,0.0,89.98953,-90.0,08/06/6892 +2.34464,52.43753,845,12,29,7,34,28,3.65,15.0,fr,38890,16,1644013,1,1,Active Shallow Crust,0.0,89.98904,0.0,12/29/0845 +-5.06788,48.55115,9430,12,4,14,18,44,3.55,5.0,fr,38891,188,1644483,1,1,Active Shallow Crust,240.0113,57.99902,0.0,12/04/9430 +-5.06788,48.55115,5216,2,1,19,0,8,3.65,5.0,fr,38892,104,1644492,1,1,Active Shallow Crust,0.0,89.9881,0.0,02/01/5216 +-5.06788,48.55115,9183,1,18,8,32,27,3.65,15.0,fr,38893,183,1644493,1,1,Active Shallow Crust,0.0,89.9881,0.0,01/18/9183 +-5.06788,48.55115,3513,4,8,5,39,36,3.75,5.0,fr,38894,70,1644513,1,1,Active Shallow Crust,128.8969,89.96699,0.0,04/08/3513 +-5.06788,48.55115,2410,1,16,19,29,30,3.95,5.0,fr,38895,48,1644528,1,1,Active Shallow Crust,0.0,89.99158,0.0,01/16/2410 +-5.06788,48.55115,2425,2,20,3,0,11,4.05,5.0,fr,38896,48,1644540,1,1,Active Shallow Crust,0.0,89.98874,0.0,02/20/2425 +-5.06788,48.55115,2379,3,28,9,3,57,4.35,5.0,fr,38897,47,1644576,1,1,Active Shallow Crust,0.0,89.98937,0.0,03/28/2379 +-5.06788,48.55115,5279,4,16,3,43,40,5.35,5.0,fr,38898,105,1644696,1,1,Active Shallow Crust,0.0,89.98991,0.0,04/16/5279 +6.39062,43.34427,1803,12,15,19,3,26,3.55,5.0,fr,38899,36,1644966,1,1,Active Shallow Crust,0.0,89.99258,-90.0,12/15/1803 +6.39062,43.34427,2102,12,31,1,10,14,3.75,27.5,fr,38900,42,1644986,1,1,Active Shallow Crust,0.0,89.98835,0.0,12/31/2102 +6.39062,43.34427,579,6,26,5,58,10,3.95,5.0,fr,38901,11,1645008,1,1,Active Shallow Crust,0.0,89.99075,0.0,06/26/0579 +6.39062,43.34427,7789,8,2,0,3,15,4.15,15.0,fr,38902,155,1645036,1,1,Active Shallow Crust,240.0086,57.99685,0.0,08/02/7789 +-1.27083,50.87157,4718,9,29,10,42,36,3.55,5.0,fr,38903,94,1645440,1,1,Active Shallow Crust,0.0,89.99046,0.0,09/29/4718 +-1.27083,50.87157,733,4,12,2,15,2,3.85,15.0,fr,38904,14,1645477,1,1,Active Shallow Crust,0.0,89.98986,0.0,04/12/0733 +0.2796,51.99039,8708,1,4,4,16,58,3.65,15.0,fr,38905,174,1645933,1,1,Active Shallow Crust,0.0,89.98997,0.0,01/04/8708 +0.2796,51.99039,7707,5,23,21,31,23,3.95,5.0,fr,38906,154,1645968,1,2,Active Shallow Crust,0.0,89.98996,0.0,05/23/7707 +0.2796,51.99039,272,5,11,7,20,0,3.95,5.0,fr,38907,5,1645968,1,2,Active Shallow Crust,0.0,89.98996,0.0,05/11/0272 +0.2796,51.99039,2400,9,2,19,40,44,4.05,5.0,fr,38908,47,1645980,1,1,Active Shallow Crust,0.0,89.98996,0.0,09/02/2400 +0.2796,51.99039,7138,6,6,15,33,6,4.05,15.0,fr,38909,142,1645984,1,1,Active Shallow Crust,240.007,58.006,0.0,06/06/7138 +0.2796,51.99039,2030,5,17,11,39,40,4.35,5.0,fr,38910,40,1646016,1,1,Active Shallow Crust,0.0,89.98996,0.0,05/17/2030 +4.76312,44.85664,1364,10,28,19,0,32,3.65,5.0,fr,38911,27,1646418,1,1,Active Shallow Crust,0.0,89.98711,-90.0,10/28/1364 +4.76312,44.85664,9570,10,19,13,19,33,3.75,5.0,fr,38912,191,1646424,1,2,Active Shallow Crust,0.0,89.98865,0.0,10/19/9570 +4.76312,44.85664,1319,5,9,0,22,4,3.75,5.0,fr,38913,26,1646424,1,2,Active Shallow Crust,0.0,89.98865,0.0,05/09/1319 +4.76312,44.85664,3341,8,5,10,7,38,3.75,5.0,fr,38914,66,1646427,1,1,Active Shallow Crust,240.0078,58.01783,0.0,08/05/3341 +4.76312,44.85664,7400,11,14,9,13,19,3.75,15.0,fr,38915,147,1646428,1,1,Active Shallow Crust,240.0078,58.01783,0.0,11/14/7400 +4.76312,44.85664,178,1,16,13,38,27,3.85,5.0,fr,38916,3,1646436,1,1,Active Shallow Crust,0.0,89.98988,0.0,01/16/0178 +4.76312,44.85664,7486,5,27,14,46,55,3.85,5.0,fr,38917,149,1646439,1,1,Active Shallow Crust,240.0107,57.9974,0.0,05/27/7486 +4.76312,44.85664,6359,1,24,14,8,35,3.85,27.5,fr,38918,127,1646447,1,1,Active Shallow Crust,128.895,89.99494,0.0,01/24/6359 +4.76312,44.85664,8110,7,1,23,9,9,3.95,5.0,fr,38919,162,1646448,1,1,Active Shallow Crust,0.0,89.99098,0.0,07/01/8110 +4.76312,44.85664,9891,7,20,1,49,27,3.95,15.0,fr,38920,197,1646449,1,1,Active Shallow Crust,0.0,89.99098,0.0,07/20/9891 +4.76312,44.85664,9937,10,3,5,39,30,3.95,5.0,fr,38921,198,1646454,1,1,Active Shallow Crust,0.0,89.99088,-90.0,10/03/9937 +4.76312,44.85664,7109,8,10,8,8,39,4.25,5.0,fr,38922,142,1646484,1,1,Active Shallow Crust,0.0,89.99042,0.0,08/10/7109 +4.76312,44.85664,1430,7,25,5,45,20,4.45,27.5,fr,38923,28,1646519,1,1,Active Shallow Crust,128.8921,89.99366,0.0,07/25/1430 +-2.91053,43.68671,2107,11,15,0,35,45,3.55,5.0,fr,38924,42,1646880,1,1,Active Shallow Crust,0.0,89.98906,0.0,11/15/2107 +-2.91053,43.68671,8384,9,23,4,20,23,3.65,5.0,fr,38925,167,1646892,1,1,Active Shallow Crust,0.0,89.99025,0.0,09/23/8384 +-2.91053,43.68671,9992,8,28,11,40,4,4.25,15.0,fr,38926,199,1646965,1,1,Active Shallow Crust,0.0,89.99023,0.0,08/28/9992 +-7.11377,47.76294,3690,8,3,23,58,3,3.95,15.0,fr,38927,73,1647409,1,1,Active Shallow Crust,0.0,89.99145,0.0,08/03/3690 +0.78382,42.69889,1819,3,30,15,15,30,3.55,5.0,fr,38928,36,1647840,1,5,Active Shallow Crust,0.0,89.98981,0.0,03/30/1819 +0.78382,42.69889,829,10,1,0,22,52,3.55,5.0,fr,38929,16,1647840,1,5,Active Shallow Crust,0.0,89.98981,0.0,10/01/0829 +0.78382,42.69889,6936,4,13,16,34,24,3.55,5.0,fr,38930,138,1647840,1,5,Active Shallow Crust,0.0,89.98981,0.0,04/13/6936 +0.78382,42.69889,4133,4,15,17,28,30,3.55,5.0,fr,38931,82,1647840,1,5,Active Shallow Crust,0.0,89.98981,0.0,04/15/4133 +0.78382,42.69889,5128,1,21,4,59,46,3.55,5.0,fr,38932,102,1647840,1,5,Active Shallow Crust,0.0,89.98981,0.0,01/21/5128 +0.78382,42.69889,9570,6,10,19,18,11,3.55,15.0,fr,38933,191,1647841,1,4,Active Shallow Crust,0.0,89.98981,0.0,06/10/9570 +0.78382,42.69889,4924,2,3,19,30,23,3.55,15.0,fr,38934,98,1647841,1,4,Active Shallow Crust,0.0,89.98981,0.0,02/03/4924 +0.78382,42.69889,3645,9,27,12,30,33,3.55,15.0,fr,38935,72,1647841,1,4,Active Shallow Crust,0.0,89.98981,0.0,09/27/3645 +0.78382,42.69889,3722,1,18,20,16,26,3.55,15.0,fr,38936,74,1647841,1,4,Active Shallow Crust,0.0,89.98981,0.0,01/18/3722 +0.78382,42.69889,7997,1,19,16,25,22,3.55,5.0,fr,38937,159,1647843,1,1,Active Shallow Crust,240.0119,57.99803,0.0,01/19/7997 +0.78382,42.69889,4911,11,21,15,52,21,3.55,15.0,fr,38938,98,1647844,1,2,Active Shallow Crust,240.0119,57.99803,0.0,11/21/4911 +0.78382,42.69889,2388,10,5,12,16,21,3.55,15.0,fr,38939,47,1647844,1,2,Active Shallow Crust,240.0119,57.99803,0.0,10/05/2388 +0.78382,42.69889,6069,11,10,19,59,8,3.55,5.0,fr,38940,121,1647849,1,1,Active Shallow Crust,128.8966,89.99352,0.0,11/10/6069 +0.78382,42.69889,3154,6,24,2,10,29,3.65,5.0,fr,38941,63,1647852,1,2,Active Shallow Crust,0.0,89.99009,0.0,06/24/3154 +0.78382,42.69889,8394,1,16,5,12,40,3.65,5.0,fr,38942,167,1647852,1,2,Active Shallow Crust,0.0,89.99009,0.0,01/16/8394 +0.78382,42.69889,9953,12,20,10,2,16,3.65,5.0,fr,38943,199,1647855,1,1,Active Shallow Crust,240.0008,58.01277,0.0,12/20/9953 +0.78382,42.69889,9866,3,18,6,17,47,3.65,27.5,fr,38944,197,1647857,1,1,Active Shallow Crust,240.0008,58.01268,0.0,03/18/9866 +0.78382,42.69889,7338,10,8,13,57,49,3.65,5.0,fr,38945,146,1647858,1,1,Active Shallow Crust,0.0,89.98997,-90.0,10/08/7338 +0.78382,42.69889,1587,2,13,11,52,50,3.65,5.0,fr,38946,31,1647861,1,1,Active Shallow Crust,128.9008,89.96352,0.0,02/13/1587 +0.78382,42.69889,8887,11,8,0,59,23,3.75,5.0,fr,38947,177,1647864,1,1,Active Shallow Crust,0.0,89.9897,0.0,11/08/8887 +0.78382,42.69889,3228,9,26,16,45,1,3.75,15.0,fr,38948,64,1647865,1,1,Active Shallow Crust,0.0,89.9897,0.0,09/26/3228 +0.78382,42.69889,8506,5,13,17,53,0,3.75,27.5,fr,38949,170,1647866,1,1,Active Shallow Crust,0.0,89.9897,0.0,05/13/8506 +0.78382,42.69889,6444,6,24,10,36,20,3.75,5.0,fr,38950,128,1647867,1,1,Active Shallow Crust,240.0078,58.01744,0.0,06/24/6444 +0.78382,42.69889,6219,2,12,11,28,30,3.75,5.0,fr,38951,124,1647870,1,2,Active Shallow Crust,0.0,89.99033,-90.0,02/12/6219 +0.78382,42.69889,8709,8,13,12,27,55,3.75,5.0,fr,38952,174,1647870,1,2,Active Shallow Crust,0.0,89.99033,-90.0,08/13/8709 +0.78382,42.69889,9640,6,30,12,25,43,3.75,15.0,fr,38953,192,1647871,1,1,Active Shallow Crust,0.0,89.99033,-90.0,06/30/9640 +0.78382,42.69889,9527,11,27,4,34,56,3.85,5.0,fr,38954,190,1647876,1,3,Active Shallow Crust,0.0,89.99017,0.0,11/27/9527 +0.78382,42.69889,6343,12,17,11,55,56,3.85,5.0,fr,38955,126,1647876,1,3,Active Shallow Crust,0.0,89.99017,0.0,12/17/6343 +0.78382,42.69889,8072,8,15,3,55,1,3.85,5.0,fr,38956,161,1647876,1,3,Active Shallow Crust,0.0,89.99017,0.0,08/15/8072 +0.78382,42.69889,1762,8,28,19,25,13,3.85,15.0,fr,38957,35,1647877,1,1,Active Shallow Crust,0.0,89.99017,0.0,08/28/1762 +0.78382,42.69889,5308,1,9,9,34,18,3.85,27.5,fr,38958,106,1647878,1,1,Active Shallow Crust,0.0,89.99017,0.0,01/09/5308 +0.78382,42.69889,4788,7,20,16,34,2,3.85,5.0,fr,38959,95,1647882,1,1,Active Shallow Crust,0.0,89.99005,-90.0,07/20/4788 +0.78382,42.69889,1231,2,4,12,28,1,3.95,5.0,fr,38960,24,1647888,1,1,Active Shallow Crust,0.0,89.99007,0.0,02/04/1231 +0.78382,42.69889,3597,11,24,14,4,1,3.95,27.5,fr,38961,71,1647893,1,1,Active Shallow Crust,240.0193,58.00495,0.0,11/24/3597 +0.78382,42.69889,3226,8,12,18,28,10,3.95,5.0,fr,38962,64,1647894,1,2,Active Shallow Crust,0.0,89.98994,-90.0,08/12/3226 +0.78382,42.69889,717,12,24,9,50,59,3.95,5.0,fr,38963,14,1647894,1,2,Active Shallow Crust,0.0,89.98994,-90.0,12/24/0717 +0.78382,42.69889,5014,2,22,6,24,25,4.05,5.0,fr,38964,100,1647900,1,1,Active Shallow Crust,0.0,89.9901,0.0,02/22/5014 +0.78382,42.69889,9843,4,4,11,31,33,4.05,15.0,fr,38965,196,1647901,1,2,Active Shallow Crust,0.0,89.9901,0.0,04/04/9843 +0.78382,42.69889,119,2,13,21,18,16,4.05,15.0,fr,38966,2,1647901,1,2,Active Shallow Crust,0.0,89.9901,0.0,02/13/0119 +0.78382,42.69889,4805,7,3,20,52,43,4.05,5.0,fr,38967,96,1647909,1,1,Active Shallow Crust,128.8911,89.99349,0.0,07/03/4805 +0.78382,42.69889,1647,5,5,12,37,56,4.15,5.0,fr,38968,32,1647912,1,2,Active Shallow Crust,0.0,89.98978,0.0,05/05/1647 +0.78382,42.69889,4181,11,13,14,24,58,4.15,5.0,fr,38969,83,1647912,1,2,Active Shallow Crust,0.0,89.98978,0.0,11/13/4181 +0.78382,42.69889,2834,11,14,15,30,11,4.25,5.0,fr,38970,56,1647924,1,1,Active Shallow Crust,0.0,89.99007,0.0,11/14/2834 +0.78382,42.69889,5740,9,8,6,24,48,4.25,15.0,fr,38971,114,1647925,1,1,Active Shallow Crust,0.0,89.99007,0.0,09/08/5740 +0.78382,42.69889,5860,5,23,1,9,52,4.25,27.5,fr,38972,117,1647926,1,1,Active Shallow Crust,0.0,89.99007,0.0,05/23/5860 +0.78382,42.69889,7300,11,11,17,36,0,4.35,15.0,fr,38973,145,1647940,1,1,Active Shallow Crust,240.0075,57.99581,0.0,11/11/7300 +0.78382,42.69889,3122,8,8,14,20,39,4.55,5.0,fr,38974,62,1647960,1,2,Active Shallow Crust,0.0,89.99004,0.0,08/08/3122 +0.78382,42.69889,9514,2,12,14,56,27,4.55,5.0,fr,38975,190,1647960,1,2,Active Shallow Crust,0.0,89.99004,0.0,02/12/9514 +0.78382,42.69889,6858,3,11,22,7,6,4.65,5.0,fr,38976,137,1647972,1,1,Active Shallow Crust,0.0,89.99007,0.0,03/11/6858 +0.78382,42.69889,6265,6,17,23,39,6,4.75,5.0,fr,38977,125,1647984,1,1,Active Shallow Crust,0.0,89.98999,0.0,06/17/6265 +0.78382,42.69889,9942,11,27,17,5,41,5.05,27.5,fr,38978,198,1648022,1,1,Active Shallow Crust,0.0,89.98995,0.0,11/27/9942 +-6.72218,48.64069,3738,7,13,10,6,36,3.85,5.0,fr,38979,74,1648356,1,1,Active Shallow Crust,0.0,89.99056,0.0,07/13/3738 +-6.72218,48.64069,8869,10,4,0,29,51,4.15,5.0,fr,38980,177,1648392,1,1,Active Shallow Crust,0.0,89.98998,0.0,10/04/8869 +3.47904,41.87922,2552,8,13,4,44,13,3.65,5.0,fr,38981,51,1648812,1,1,Active Shallow Crust,0.0,89.98996,0.0,08/13/2552 +3.47904,41.87922,6900,3,9,16,50,38,3.85,5.0,fr,38982,137,1648836,1,1,Active Shallow Crust,0.0,89.98937,0.0,03/09/6900 +3.47904,41.87922,7966,7,22,10,43,31,4.35,5.0,fr,38983,159,1648899,1,1,Active Shallow Crust,240.0073,57.9957,0.0,07/22/7966 +3.47904,41.87922,671,8,14,8,23,50,4.65,15.0,fr,38984,13,1648933,1,1,Active Shallow Crust,0.0,89.99048,0.0,08/14/0671 +2.98304,49.10685,5357,10,12,20,7,42,3.65,5.0,fr,38985,107,1649781,1,1,Active Shallow Crust,128.8998,89.96358,0.0,10/12/5357 +2.98304,49.10685,6547,6,26,7,7,13,3.75,5.0,fr,38986,130,1649784,1,1,Active Shallow Crust,0.0,89.98951,0.0,06/26/6547 +2.98304,49.10685,7911,4,24,19,59,28,3.85,15.0,fr,38987,158,1649797,1,1,Active Shallow Crust,0.0,89.99065,0.0,04/24/7911 +2.98304,49.10685,5648,6,30,0,30,25,4.15,5.0,fr,38988,112,1649832,1,1,Active Shallow Crust,0.0,89.99007,0.0,06/30/5648 +5.90045,51.95991,298,9,13,8,44,34,3.75,5.0,fr,38989,5,1650264,1,1,Active Shallow Crust,0.0,89.99013,0.0,09/13/0298 +7.8747,48.47621,1286,3,8,13,48,5,3.55,5.0,fr,38990,25,1650720,1,3,Active Shallow Crust,0.0,89.99332,0.0,03/08/1286 +7.8747,48.47621,6000,2,5,13,40,11,3.55,5.0,fr,38991,119,1650720,1,3,Active Shallow Crust,0.0,89.99332,0.0,02/05/6000 +7.8747,48.47621,4066,5,11,3,3,32,3.55,5.0,fr,38992,81,1650720,1,3,Active Shallow Crust,0.0,89.99332,0.0,05/11/4066 +7.8747,48.47621,5352,7,24,13,35,50,3.55,27.5,fr,38993,107,1650722,1,2,Active Shallow Crust,0.0,89.99332,0.0,07/24/5352 +7.8747,48.47621,9830,3,20,2,44,5,3.55,27.5,fr,38994,196,1650722,1,2,Active Shallow Crust,0.0,89.99332,0.0,03/20/9830 +7.8747,48.47621,1439,5,6,17,1,23,3.55,15.0,fr,38995,28,1650727,1,1,Active Shallow Crust,0.0,89.99324,-90.0,05/06/1439 +7.8747,48.47621,5274,4,7,16,40,3,3.65,5.0,fr,38996,105,1650732,1,2,Active Shallow Crust,0.0,89.98808,0.0,04/07/5274 +7.8747,48.47621,9111,11,22,8,21,20,3.65,5.0,fr,38997,182,1650732,1,2,Active Shallow Crust,0.0,89.98808,0.0,11/22/9111 +7.8747,48.47621,3402,7,22,16,20,13,3.65,15.0,fr,38998,68,1650733,1,2,Active Shallow Crust,0.0,89.98808,0.0,07/22/3402 +7.8747,48.47621,3676,2,24,19,34,20,3.65,15.0,fr,38999,73,1650733,1,2,Active Shallow Crust,0.0,89.98808,0.0,02/24/3676 +7.8747,48.47621,6969,12,30,17,38,22,3.65,5.0,fr,39000,139,1650735,1,3,Active Shallow Crust,240.0011,58.01295,0.0,12/30/6969 +7.8747,48.47621,8964,11,15,14,31,42,3.65,5.0,fr,39001,179,1650735,1,3,Active Shallow Crust,240.0011,58.01295,0.0,11/15/8964 +7.8747,48.47621,7682,7,5,23,56,38,3.65,5.0,fr,39002,153,1650735,1,3,Active Shallow Crust,240.0011,58.01295,0.0,07/05/7682 +7.8747,48.47621,6536,12,24,4,4,37,3.65,15.0,fr,39003,130,1650739,1,2,Active Shallow Crust,0.0,89.98795,-90.0,12/24/6536 +7.8747,48.47621,8517,2,9,2,0,53,3.65,15.0,fr,39004,170,1650739,1,2,Active Shallow Crust,0.0,89.98795,-90.0,02/09/8517 +7.8747,48.47621,3894,3,28,13,30,18,3.75,5.0,fr,39005,77,1650744,1,2,Active Shallow Crust,0.0,89.98938,0.0,03/28/3894 +7.8747,48.47621,8649,5,20,3,46,18,3.75,5.0,fr,39006,172,1650744,1,2,Active Shallow Crust,0.0,89.98938,0.0,05/20/8649 +7.8747,48.47621,3615,7,31,2,25,10,3.75,5.0,fr,39007,72,1650747,1,1,Active Shallow Crust,240.0079,58.01736,0.0,07/31/3615 +7.8747,48.47621,5812,6,19,17,25,53,3.75,15.0,fr,39008,116,1650754,1,1,Active Shallow Crust,128.8955,89.96752,0.0,06/19/5812 +7.8747,48.47621,6769,12,5,5,22,13,3.85,5.0,fr,39009,135,1650756,1,2,Active Shallow Crust,0.0,89.99053,0.0,12/05/6769 +7.8747,48.47621,3190,7,13,5,40,52,3.85,5.0,fr,39010,63,1650756,1,2,Active Shallow Crust,0.0,89.99053,0.0,07/13/3190 +7.8747,48.47621,7285,11,26,18,16,55,3.85,5.0,fr,39011,145,1650759,1,1,Active Shallow Crust,240.0112,57.99825,0.0,11/26/7285 +7.8747,48.47621,1463,6,26,20,34,44,3.85,15.0,fr,39012,29,1650760,1,1,Active Shallow Crust,240.0112,57.99825,0.0,06/26/1463 +7.8747,48.47621,376,12,12,8,18,11,3.85,5.0,fr,39013,7,1650765,1,1,Active Shallow Crust,128.8952,89.99527,0.0,12/12/0376 +7.8747,48.47621,8404,1,5,12,44,44,3.95,5.0,fr,39014,168,1650768,1,1,Active Shallow Crust,0.0,89.99156,0.0,01/05/8404 +7.8747,48.47621,2906,5,30,15,2,57,4.05,5.0,fr,39015,58,1650780,1,1,Active Shallow Crust,0.0,89.98872,0.0,05/30/2906 +7.8747,48.47621,7782,12,7,14,47,28,4.05,15.0,fr,39016,155,1650781,1,2,Active Shallow Crust,0.0,89.98872,0.0,12/07/7782 +7.8747,48.47621,2564,1,3,14,4,0,4.05,15.0,fr,39017,51,1650781,1,2,Active Shallow Crust,0.0,89.98872,0.0,01/03/2564 +7.8747,48.47621,1976,7,13,9,28,23,4.05,5.0,fr,39018,39,1650786,1,1,Active Shallow Crust,0.0,89.98859,-90.0,07/13/1976 +7.8747,48.47621,5784,4,11,16,58,11,4.15,5.0,fr,39019,115,1650792,1,1,Active Shallow Crust,0.0,89.98994,0.0,04/11/5784 +7.8747,48.47621,6456,5,10,22,24,28,4.15,15.0,fr,39020,129,1650793,1,2,Active Shallow Crust,0.0,89.98994,0.0,05/10/6456 +7.8747,48.47621,1778,1,30,13,27,31,4.15,15.0,fr,39021,35,1650793,1,2,Active Shallow Crust,0.0,89.98994,0.0,01/30/1778 +7.8747,48.47621,8673,8,9,0,28,10,4.15,5.0,fr,39022,173,1650798,1,1,Active Shallow Crust,0.0,89.98983,-90.0,08/09/8673 +7.8747,48.47621,563,4,30,21,42,50,4.25,5.0,fr,39023,11,1650804,1,1,Active Shallow Crust,0.0,89.99104,0.0,04/30/0563 +7.8747,48.47621,9887,3,29,12,34,25,4.25,5.0,fr,39024,197,1650807,1,1,Active Shallow Crust,240.0075,57.99433,0.0,03/29/9887 +7.8747,48.47621,7274,1,6,15,48,36,4.45,5.0,fr,39025,145,1650828,1,1,Active Shallow Crust,0.0,89.99051,0.0,01/06/7274 +7.8747,48.47621,5833,4,14,20,8,47,4.45,15.0,fr,39026,116,1650829,1,2,Active Shallow Crust,0.0,89.99051,0.0,04/14/5833 +7.8747,48.47621,9478,3,10,3,9,48,4.45,15.0,fr,39027,189,1650829,1,2,Active Shallow Crust,0.0,89.99051,0.0,03/10/9478 +7.8747,48.47621,9541,8,25,2,57,34,4.45,5.0,fr,39028,190,1650834,1,1,Active Shallow Crust,0.0,89.9904,-90.0,08/25/9541 +7.8747,48.47621,1880,9,17,9,15,11,4.65,5.0,fr,39029,37,1650852,1,2,Active Shallow Crust,0.0,89.99058,0.0,09/17/1880 +7.8747,48.47621,5874,12,2,19,30,27,4.65,5.0,fr,39030,117,1650852,1,2,Active Shallow Crust,0.0,89.99058,0.0,12/02/5874 +6.9978,45.9286,6936,5,26,13,14,33,3.55,5.0,fr,39031,138,1651200,1,1,Active Shallow Crust,0.0,89.99299,0.0,05/26/6936 +6.9978,45.9286,7042,9,2,11,18,16,3.55,15.0,fr,39032,140,1651201,1,2,Active Shallow Crust,0.0,89.99299,0.0,09/02/7042 +6.9978,45.9286,9084,1,27,10,42,19,3.55,15.0,fr,39033,181,1651201,1,2,Active Shallow Crust,0.0,89.99299,0.0,01/27/9084 +6.9978,45.9286,302,7,24,16,45,28,3.55,5.0,fr,39034,6,1651203,1,1,Active Shallow Crust,240.0114,57.99942,0.0,07/24/0302 +6.9978,45.9286,1849,11,4,4,19,25,3.55,15.0,fr,39035,36,1651210,1,2,Active Shallow Crust,128.8971,89.99299,0.0,11/04/1849 +6.9978,45.9286,2272,7,7,8,47,11,3.55,15.0,fr,39036,45,1651210,1,2,Active Shallow Crust,128.8971,89.99299,0.0,07/07/2272 +6.9978,45.9286,8405,6,20,21,53,43,3.65,5.0,fr,39037,168,1651212,1,1,Active Shallow Crust,0.0,89.9875,0.0,06/20/8405 +6.9978,45.9286,7045,4,4,9,38,11,3.65,5.0,fr,39038,140,1651215,1,2,Active Shallow Crust,240.0012,58.01291,0.0,04/04/7045 +6.9978,45.9286,6038,11,8,19,53,28,3.65,5.0,fr,39039,120,1651215,1,2,Active Shallow Crust,240.0012,58.01291,0.0,11/08/6038 +6.9978,45.9286,2175,9,14,20,59,23,3.65,5.0,fr,39040,43,1651218,1,1,Active Shallow Crust,0.0,89.98735,-90.0,09/14/2175 +6.9978,45.9286,3194,3,27,16,16,39,3.65,27.5,fr,39041,63,1651220,1,1,Active Shallow Crust,0.0,89.98735,-90.0,03/27/3194 +6.9978,45.9286,4634,11,26,12,18,7,3.75,5.0,fr,39042,92,1651224,1,1,Active Shallow Crust,0.0,89.98885,0.0,11/26/4634 +6.9978,45.9286,8191,11,20,3,34,27,3.75,15.0,fr,39043,163,1651225,1,2,Active Shallow Crust,0.0,89.98885,0.0,11/20/8191 +6.9978,45.9286,28,1,3,19,42,30,3.75,15.0,fr,39044,0,1651225,1,2,Active Shallow Crust,0.0,89.98885,0.0,01/03/0028 +6.9978,45.9286,7034,2,11,8,35,7,3.75,5.0,fr,39045,140,1651233,1,1,Active Shallow Crust,128.8961,89.96748,0.0,02/11/7034 +6.9978,45.9286,5086,3,26,4,52,36,3.85,5.0,fr,39046,101,1651236,1,1,Active Shallow Crust,0.0,89.99007,0.0,03/26/5086 +6.9978,45.9286,8958,2,25,18,36,5,3.85,5.0,fr,39047,179,1651245,1,1,Active Shallow Crust,128.8956,89.99503,0.0,02/25/8958 +6.9978,45.9286,5081,6,3,7,57,59,3.95,5.0,fr,39048,101,1651248,1,1,Active Shallow Crust,0.0,89.99115,0.0,06/03/5081 +6.9978,45.9286,5851,7,5,9,36,43,3.95,15.0,fr,39049,117,1651249,1,1,Active Shallow Crust,0.0,89.99115,0.0,07/05/5851 +6.9978,45.9286,308,5,16,22,29,23,3.95,5.0,fr,39050,6,1651251,1,1,Active Shallow Crust,240.0196,58.00549,0.0,05/16/0308 +6.9978,45.9286,3598,5,11,23,17,58,4.05,5.0,fr,39051,71,1651260,1,1,Active Shallow Crust,0.0,89.98817,0.0,05/11/3598 +6.9978,45.9286,376,7,1,3,28,51,4.05,15.0,fr,39052,7,1651261,1,1,Active Shallow Crust,0.0,89.98817,0.0,07/01/0376 +6.9978,45.9286,602,6,9,22,41,45,4.15,5.0,fr,39053,12,1651272,1,1,Active Shallow Crust,0.0,89.98946,0.0,06/09/0602 +6.9978,45.9286,3191,12,22,3,24,12,4.35,15.0,fr,39054,63,1651297,1,1,Active Shallow Crust,0.0,89.98883,0.0,12/22/3191 +6.9978,45.9286,2602,8,5,20,8,38,4.55,5.0,fr,39055,52,1651320,1,1,Active Shallow Crust,0.0,89.98891,0.0,08/05/2602 +6.9978,45.9286,7913,9,20,4,59,7,5.15,5.0,fr,39056,158,1651395,1,1,Active Shallow Crust,240.0194,57.99993,0.0,09/20/7913 +7.16055,47.11547,5577,2,24,3,35,2,3.55,5.0,fr,39057,111,1651680,1,10,Active Shallow Crust,0.0,89.99314,0.0,02/24/5577 +7.16055,47.11547,9180,12,11,4,34,50,3.55,5.0,fr,39058,183,1651680,1,10,Active Shallow Crust,0.0,89.99314,0.0,12/11/9180 +7.16055,47.11547,6821,2,2,16,53,7,3.55,5.0,fr,39059,136,1651680,1,10,Active Shallow Crust,0.0,89.99314,0.0,02/02/6821 +7.16055,47.11547,4331,1,30,15,32,27,3.55,5.0,fr,39060,86,1651680,1,10,Active Shallow Crust,0.0,89.99314,0.0,01/30/4331 +7.16055,47.11547,3745,7,10,11,3,48,3.55,5.0,fr,39061,74,1651680,1,10,Active Shallow Crust,0.0,89.99314,0.0,07/10/3745 +7.16055,47.11547,216,11,5,0,49,37,3.55,5.0,fr,39062,4,1651680,1,10,Active Shallow Crust,0.0,89.99314,0.0,11/05/0216 +7.16055,47.11547,228,4,24,1,24,51,3.55,5.0,fr,39063,4,1651680,1,10,Active Shallow Crust,0.0,89.99314,0.0,04/24/0228 +7.16055,47.11547,5994,9,17,7,38,55,3.55,5.0,fr,39064,119,1651680,1,10,Active Shallow Crust,0.0,89.99314,0.0,09/17/5994 +7.16055,47.11547,4152,6,12,10,8,45,3.55,5.0,fr,39065,83,1651680,1,10,Active Shallow Crust,0.0,89.99314,0.0,06/12/4152 +7.16055,47.11547,6624,12,3,1,54,26,3.55,5.0,fr,39066,132,1651680,1,10,Active Shallow Crust,0.0,89.99314,0.0,12/03/6624 +7.16055,47.11547,9439,7,7,12,49,26,3.55,5.0,fr,39067,188,1651683,1,2,Active Shallow Crust,240.0107,57.99883,0.0,07/07/9439 +7.16055,47.11547,4275,7,11,1,1,19,3.55,5.0,fr,39068,85,1651683,1,2,Active Shallow Crust,240.0107,57.99883,0.0,07/11/4275 +7.16055,47.11547,3835,8,31,13,39,27,3.55,5.0,fr,39069,76,1651686,1,1,Active Shallow Crust,0.0,89.99306,-90.0,08/31/3835 +7.16055,47.11547,8954,4,11,15,24,25,3.55,5.0,fr,39070,179,1651689,1,1,Active Shallow Crust,128.8967,89.99314,0.0,04/11/8954 +7.16055,47.11547,1172,3,26,0,37,11,3.65,5.0,fr,39071,23,1651692,1,6,Active Shallow Crust,0.0,89.98777,0.0,03/26/1172 +7.16055,47.11547,3971,3,12,13,13,46,3.65,5.0,fr,39072,79,1651692,1,6,Active Shallow Crust,0.0,89.98777,0.0,03/12/3971 +7.16055,47.11547,3391,10,5,15,18,54,3.65,5.0,fr,39073,67,1651692,1,6,Active Shallow Crust,0.0,89.98777,0.0,10/05/3391 +7.16055,47.11547,8630,8,10,23,46,43,3.65,5.0,fr,39074,172,1651692,1,6,Active Shallow Crust,0.0,89.98777,0.0,08/10/8630 +7.16055,47.11547,4391,12,25,18,24,47,3.65,5.0,fr,39075,87,1651692,1,6,Active Shallow Crust,0.0,89.98777,0.0,12/25/4391 +7.16055,47.11547,7739,3,12,22,38,13,3.65,5.0,fr,39076,154,1651692,1,6,Active Shallow Crust,0.0,89.98777,0.0,03/12/7739 +7.16055,47.11547,60,8,14,4,48,1,3.65,15.0,fr,39077,1,1651693,1,2,Active Shallow Crust,0.0,89.98777,0.0,08/14/0060 +7.16055,47.11547,1154,2,1,22,42,42,3.65,15.0,fr,39078,23,1651693,1,2,Active Shallow Crust,0.0,89.98777,0.0,02/01/1154 +7.16055,47.11547,5524,5,27,23,56,55,3.65,27.5,fr,39079,110,1651703,1,1,Active Shallow Crust,128.9004,89.96354,0.0,05/27/5524 +7.16055,47.11547,8710,5,14,2,1,37,3.75,5.0,fr,39080,174,1651704,1,4,Active Shallow Crust,0.0,89.9891,0.0,05/14/8710 +7.16055,47.11547,4270,7,7,20,52,18,3.75,5.0,fr,39081,85,1651704,1,4,Active Shallow Crust,0.0,89.9891,0.0,07/07/4270 +7.16055,47.11547,255,5,10,20,54,47,3.75,5.0,fr,39082,5,1651704,1,4,Active Shallow Crust,0.0,89.9891,0.0,05/10/0255 +7.16055,47.11547,1892,9,12,6,9,50,3.75,5.0,fr,39083,37,1651704,1,4,Active Shallow Crust,0.0,89.9891,0.0,09/12/1892 +7.16055,47.11547,8666,3,6,13,42,25,3.75,15.0,fr,39084,173,1651705,1,1,Active Shallow Crust,0.0,89.9891,0.0,03/06/8666 +7.16055,47.11547,6744,9,16,17,2,10,3.75,5.0,fr,39085,134,1651707,1,1,Active Shallow Crust,240.0092,58.01757,0.0,09/16/6744 +7.16055,47.11547,5530,1,10,7,26,53,3.75,5.0,fr,39086,110,1651710,1,1,Active Shallow Crust,0.0,89.98898,-90.0,01/10/5530 +7.16055,47.11547,6450,3,20,22,40,18,3.75,5.0,fr,39087,128,1651713,1,1,Active Shallow Crust,128.897,89.9675,0.0,03/20/6450 +7.16055,47.11547,5138,4,27,11,29,21,3.85,5.0,fr,39088,102,1651716,1,3,Active Shallow Crust,0.0,89.99028,0.0,04/27/5138 +7.16055,47.11547,8953,6,12,6,34,31,3.85,5.0,fr,39089,179,1651716,1,3,Active Shallow Crust,0.0,89.99028,0.0,06/12/8953 +7.16055,47.11547,3912,10,27,20,17,20,3.85,5.0,fr,39090,78,1651716,1,3,Active Shallow Crust,0.0,89.99028,0.0,10/27/3912 +7.16055,47.11547,3752,8,10,23,57,32,3.85,27.5,fr,39091,75,1651718,1,1,Active Shallow Crust,0.0,89.99028,0.0,08/10/3752 +7.16055,47.11547,1717,7,10,16,26,31,3.85,5.0,fr,39092,34,1651719,1,1,Active Shallow Crust,240.0111,57.99841,0.0,07/10/1717 +7.16055,47.11547,7099,8,22,22,18,17,3.95,5.0,fr,39093,141,1651728,1,1,Active Shallow Crust,0.0,89.99134,0.0,08/22/7099 +7.16055,47.11547,6272,6,26,10,57,59,3.95,15.0,fr,39094,125,1651729,1,3,Active Shallow Crust,0.0,89.99134,0.0,06/26/6272 +7.16055,47.11547,2000,6,11,8,53,26,3.95,15.0,fr,39095,39,1651729,1,3,Active Shallow Crust,0.0,89.99134,0.0,06/11/2000 +7.16055,47.11547,7275,6,9,23,16,4,3.95,15.0,fr,39096,145,1651729,1,3,Active Shallow Crust,0.0,89.99134,0.0,06/09/7275 +7.16055,47.11547,6451,3,9,14,3,11,3.95,5.0,fr,39097,129,1651731,1,2,Active Shallow Crust,240.0205,58.00506,0.0,03/09/6451 +7.16055,47.11547,8961,10,12,14,35,10,3.95,5.0,fr,39098,179,1651731,1,2,Active Shallow Crust,240.0205,58.00506,0.0,10/12/8961 +7.16055,47.11547,914,4,2,3,20,19,3.95,5.0,fr,39099,18,1651737,1,1,Active Shallow Crust,128.8998,89.99351,0.0,04/02/0914 +7.16055,47.11547,3965,11,14,23,57,33,4.05,5.0,fr,39100,79,1651740,1,4,Active Shallow Crust,0.0,89.98843,0.0,11/14/3965 +7.16055,47.11547,384,6,9,11,10,38,4.05,5.0,fr,39101,7,1651740,1,4,Active Shallow Crust,0.0,89.98843,0.0,06/09/0384 +7.16055,47.11547,983,7,29,11,15,55,4.05,5.0,fr,39102,19,1651740,1,4,Active Shallow Crust,0.0,89.98843,0.0,07/29/0983 +7.16055,47.11547,6630,3,18,7,17,9,4.05,5.0,fr,39103,132,1651740,1,4,Active Shallow Crust,0.0,89.98843,0.0,03/18/6630 +7.16055,47.11547,8781,4,22,16,16,50,4.05,15.0,fr,39104,175,1651741,1,4,Active Shallow Crust,0.0,89.98843,0.0,04/22/8781 +7.16055,47.11547,5457,6,29,16,59,7,4.05,15.0,fr,39105,109,1651741,1,4,Active Shallow Crust,0.0,89.98843,0.0,06/29/5457 +7.16055,47.11547,4461,1,23,10,13,18,4.05,15.0,fr,39106,89,1651741,1,4,Active Shallow Crust,0.0,89.98843,0.0,01/23/4461 +7.16055,47.11547,8364,11,30,8,13,23,4.05,15.0,fr,39107,167,1651741,1,4,Active Shallow Crust,0.0,89.98843,0.0,11/30/8364 +7.16055,47.11547,8694,7,25,16,40,38,4.05,15.0,fr,39108,173,1651744,1,1,Active Shallow Crust,240.006,58.0055,0.0,07/25/8694 +7.16055,47.11547,8724,11,27,15,33,55,4.15,5.0,fr,39109,174,1651752,1,2,Active Shallow Crust,0.0,89.98969,0.0,11/27/8724 +7.16055,47.11547,8916,1,13,18,59,0,4.15,5.0,fr,39110,178,1651752,1,2,Active Shallow Crust,0.0,89.98969,0.0,01/13/8916 +7.16055,47.11547,2990,11,22,2,39,17,4.15,5.0,fr,39111,59,1651755,1,1,Active Shallow Crust,240.0087,57.9977,0.0,11/22/2990 +7.16055,47.11547,8247,12,16,19,50,31,4.15,27.5,fr,39112,164,1651763,1,1,Active Shallow Crust,128.8984,89.99313,0.0,12/16/8247 +7.16055,47.11547,5960,12,13,12,55,47,4.35,5.0,fr,39113,119,1651776,1,2,Active Shallow Crust,0.0,89.98907,0.0,12/13/5960 +7.16055,47.11547,6684,10,8,11,1,36,4.35,5.0,fr,39114,133,1651776,1,2,Active Shallow Crust,0.0,89.98907,0.0,10/08/6684 +7.16055,47.11547,6759,11,26,18,34,6,4.45,5.0,fr,39115,135,1651788,1,2,Active Shallow Crust,0.0,89.99026,0.0,11/26/6759 +7.16055,47.11547,8635,11,12,2,15,27,4.45,5.0,fr,39116,172,1651788,1,2,Active Shallow Crust,0.0,89.99026,0.0,11/12/8635 +7.16055,47.11547,269,9,19,4,35,42,4.55,15.0,fr,39117,5,1651807,1,1,Active Shallow Crust,0.0,89.98902,-90.0,09/19/0269 +7.16055,47.11547,6005,10,10,4,41,53,4.65,5.0,fr,39118,120,1651812,1,1,Active Shallow Crust,0.0,89.99033,0.0,10/10/6005 +7.16055,47.11547,2570,9,22,23,27,45,4.65,15.0,fr,39119,51,1651813,1,1,Active Shallow Crust,0.0,89.99033,0.0,09/22/2570 +7.16055,47.11547,5513,11,2,12,11,24,4.65,15.0,fr,39120,110,1651822,1,1,Active Shallow Crust,128.8906,89.98724,0.0,11/02/5513 +7.16055,47.11547,4964,9,15,22,41,48,4.85,5.0,fr,39121,99,1651842,1,1,Active Shallow Crust,0.0,89.99068,-90.0,09/15/4964 +7.16055,47.11547,9922,4,17,12,28,40,4.95,15.0,fr,39122,198,1651849,1,1,Active Shallow Crust,0.0,89.99041,0.0,04/17/9922 +7.16055,47.11547,5709,2,28,14,8,46,5.05,15.0,fr,39123,114,1651861,1,1,Active Shallow Crust,0.0,89.99023,0.0,02/28/5709 +7.16055,47.11547,2917,7,6,11,18,18,5.05,5.0,fr,39124,58,1651866,1,1,Active Shallow Crust,0.0,89.99012,-90.0,07/06/2917 +7.16055,47.11547,1208,4,28,4,51,2,5.55,5.0,fr,39125,24,1651920,1,1,Active Shallow Crust,0.0,89.9897,0.0,04/28/1208 +5.15074,50.27216,6165,5,3,19,3,11,3.55,5.0,fr,39126,123,1652160,1,1,Active Shallow Crust,0.0,89.98711,0.0,05/03/6165 +5.15074,50.27216,6698,1,11,3,9,0,3.85,5.0,fr,39127,133,1652196,1,1,Active Shallow Crust,0.0,89.99088,0.0,01/11/6698 +5.15074,50.27216,5002,11,28,12,50,13,3.85,15.0,fr,39128,100,1652197,1,1,Active Shallow Crust,0.0,89.99088,0.0,11/28/5002 +5.15074,50.27216,8675,12,5,15,8,45,4.25,5.0,fr,39129,173,1652244,1,2,Active Shallow Crust,0.0,89.99136,0.0,12/05/8675 +5.15074,50.27216,3387,10,22,17,28,37,4.25,5.0,fr,39130,67,1652244,1,2,Active Shallow Crust,0.0,89.99136,0.0,10/22/3387 +5.15074,50.27216,4332,6,13,22,43,1,4.25,15.0,fr,39131,86,1652251,1,1,Active Shallow Crust,0.0,89.99126,-90.0,06/13/4332 +5.15074,50.27216,1647,12,16,1,25,23,4.95,15.0,fr,39132,32,1652329,1,1,Active Shallow Crust,0.0,89.98971,0.0,12/16/1647 +-5.58136,48.35899,7306,7,26,9,27,41,3.65,15.0,fr,39133,146,1652653,1,1,Active Shallow Crust,0.0,89.98806,0.0,07/26/7306 +-5.58136,48.35899,6565,3,22,7,51,14,3.85,5.0,fr,39134,131,1652676,1,1,Active Shallow Crust,0.0,89.99051,0.0,03/22/6565 +-5.58136,48.35899,7809,10,28,17,23,24,3.95,5.0,fr,39135,156,1652688,1,1,Active Shallow Crust,0.0,89.99155,0.0,10/28/7809 +-5.58136,48.35899,671,2,10,17,52,43,4.05,5.0,fr,39136,13,1652709,1,1,Active Shallow Crust,128.8898,89.99435,0.0,02/10/0671 +-5.58136,48.35899,8799,12,13,19,30,50,4.15,15.0,fr,39137,175,1652713,1,1,Active Shallow Crust,0.0,89.98992,0.0,12/13/8799 +-5.58136,48.35899,2782,12,23,15,5,33,4.45,5.0,fr,39138,55,1652748,1,1,Active Shallow Crust,0.0,89.99049,0.0,12/23/2782 +-0.22517,41.77634,6080,10,31,14,34,14,3.85,5.0,fr,39139,121,1653642,1,1,Active Shallow Crust,0.0,89.99007,-90.0,10/31/6080 +-0.22517,41.77634,6529,7,23,22,44,51,4.15,5.0,fr,39140,130,1653672,1,1,Active Shallow Crust,0.0,89.98999,0.0,07/23/6529 +-0.22517,41.77634,7517,1,11,15,12,54,4.85,15.0,fr,39141,150,1653757,1,1,Active Shallow Crust,0.0,89.99001,0.0,01/11/7517 +-2.13039,47.74288,7992,2,16,4,40,12,3.55,5.0,fr,39142,159,1654080,1,1,Active Shallow Crust,0.0,89.98983,0.0,02/16/7992 +-2.13039,47.74288,8229,3,6,2,35,24,3.55,15.0,fr,39143,164,1654081,1,1,Active Shallow Crust,0.0,89.98983,0.0,03/06/8229 +-2.13039,47.74288,334,4,28,14,28,49,3.55,5.0,fr,39144,6,1654086,1,1,Active Shallow Crust,0.0,89.98971,-90.0,04/28/0334 +-2.13039,47.74288,885,5,1,21,45,51,3.65,27.5,fr,39145,17,1654097,1,1,Active Shallow Crust,240.0018,58.0126,0.0,05/01/0885 +-2.13039,47.74288,3315,4,8,8,29,1,3.75,5.0,fr,39146,66,1654104,1,1,Active Shallow Crust,0.0,89.98923,0.0,04/08/3315 +-2.13039,47.74288,9017,10,26,1,13,53,3.75,27.5,fr,39147,180,1654106,1,1,Active Shallow Crust,0.0,89.98923,0.0,10/26/9017 +-2.13039,47.74288,511,3,30,12,21,33,3.75,5.0,fr,39148,10,1654107,1,1,Active Shallow Crust,240.0082,58.01791,0.0,03/30/0511 +-2.13039,47.74288,9694,1,20,22,27,32,3.85,5.0,fr,39149,193,1654125,1,1,Active Shallow Crust,128.8952,89.994,0.0,01/20/9694 +-2.13039,47.74288,4283,7,17,9,14,34,3.95,5.0,fr,39150,85,1654128,1,1,Active Shallow Crust,0.0,89.9893,0.0,07/17/4283 +-2.13039,47.74288,4407,12,10,9,5,50,3.95,27.5,fr,39151,88,1654130,1,1,Active Shallow Crust,0.0,89.9893,0.0,12/10/4407 +-2.13039,47.74288,2940,10,29,15,39,55,4.05,5.0,fr,39152,58,1654140,1,1,Active Shallow Crust,0.0,89.99046,0.0,10/29/2940 +-2.13039,47.74288,3268,6,2,3,58,11,4.05,15.0,fr,39153,65,1654141,1,1,Active Shallow Crust,0.0,89.99046,0.0,06/02/3268 +-2.13039,47.74288,1035,2,19,21,41,32,4.15,5.0,fr,39154,20,1654155,1,1,Active Shallow Crust,240.0088,57.9976,0.0,02/19/1035 +-2.13039,47.74288,6010,2,6,3,47,34,4.25,5.0,fr,39155,120,1654164,1,1,Active Shallow Crust,0.0,89.9894,0.0,02/06/6010 +-2.13039,47.74288,2964,3,2,14,13,11,4.45,15.0,fr,39156,59,1654189,1,1,Active Shallow Crust,0.0,89.99037,0.0,03/02/2964 +-2.13039,47.74288,4608,8,18,17,43,11,4.75,27.5,fr,39157,92,1654235,1,1,Active Shallow Crust,128.8882,89.98802,0.0,08/18/4608 +1.04098,48.6295,1291,8,14,20,39,43,3.55,27.5,fr,39158,25,1654568,1,1,Active Shallow Crust,0.0,89.98988,-90.0,08/14/1291 +1.04098,48.6295,2660,10,6,13,58,1,3.75,27.5,fr,39159,53,1654595,1,1,Active Shallow Crust,128.8963,89.96741,0.0,10/06/2660 +1.04098,48.6295,1269,10,12,15,58,51,3.95,5.0,fr,39160,25,1654608,1,1,Active Shallow Crust,0.0,89.98949,0.0,10/12/1269 +1.04098,48.6295,607,10,20,14,27,37,4.45,5.0,fr,39161,12,1654668,1,1,Active Shallow Crust,0.0,89.98995,0.0,10/20/0607 +1.04098,48.6295,121,12,21,18,53,52,4.95,15.0,fr,39162,2,1654729,1,1,Active Shallow Crust,0.0,89.99002,0.0,12/21/0121 +4.50906,45.08379,4244,10,27,2,29,28,3.55,5.0,fr,39163,84,1655040,1,1,Active Shallow Crust,0.0,89.99288,0.0,10/27/4244 +4.50906,45.08379,9179,11,8,9,29,21,3.55,27.5,fr,39164,183,1655051,1,1,Active Shallow Crust,128.8963,89.99288,0.0,11/08/9179 +4.50906,45.08379,247,12,3,13,0,55,3.65,5.0,fr,39165,4,1655055,1,1,Active Shallow Crust,240.0003,58.01378,0.0,12/03/0247 +4.50906,45.08379,1609,8,5,2,7,15,3.75,5.0,fr,39166,32,1655064,1,2,Active Shallow Crust,0.0,89.98869,0.0,08/05/1609 +4.50906,45.08379,6113,7,17,17,22,44,3.75,5.0,fr,39167,122,1655064,1,2,Active Shallow Crust,0.0,89.98869,0.0,07/17/6113 +4.50906,45.08379,2338,2,26,19,36,9,3.85,5.0,fr,39168,46,1655079,1,1,Active Shallow Crust,240.011,57.9972,0.0,02/26/2338 +4.50906,45.08379,5358,1,20,22,12,36,3.85,15.0,fr,39169,107,1655083,1,1,Active Shallow Crust,0.0,89.9898,-90.0,01/20/5358 +4.50906,45.08379,9768,6,30,1,44,16,4.05,15.0,fr,39170,195,1655101,1,1,Active Shallow Crust,0.0,89.99199,0.0,06/30/9768 +4.50906,45.08379,3789,11,30,19,23,35,4.25,5.0,fr,39171,75,1655124,1,1,Active Shallow Crust,0.0,89.99046,0.0,11/30/3789 +4.50906,45.08379,4958,8,5,20,21,14,4.65,15.0,fr,39172,99,1655173,1,1,Active Shallow Crust,0.0,89.98997,0.0,08/05/4958 +7.09996,51.25535,8626,1,14,18,0,43,3.65,15.0,fr,39173,172,1656013,1,1,Active Shallow Crust,0.0,89.98875,0.0,01/14/8626 +7.09996,51.25535,9163,3,29,20,3,51,3.65,27.5,fr,39174,183,1656017,1,1,Active Shallow Crust,240.0017,58.01279,0.0,03/29/9163 +7.09996,51.25535,8871,1,20,20,44,39,3.95,5.0,fr,39175,177,1656048,1,1,Active Shallow Crust,0.0,89.98805,0.0,01/20/8871 +7.09996,51.25535,3094,10,28,17,19,56,3.95,27.5,fr,39176,61,1656050,1,1,Active Shallow Crust,0.0,89.98805,0.0,10/28/3094 +7.09996,51.25535,9330,9,14,0,16,30,4.75,27.5,fr,39177,186,1656146,1,1,Active Shallow Crust,0.0,89.99049,0.0,09/14/9330 +5.5865,41.62909,5714,7,9,14,9,22,3.75,15.0,fr,39178,114,1656505,1,1,Active Shallow Crust,0.0,89.98803,0.0,07/09/5714 +-0.29317,45.45964,7778,8,8,1,48,30,3.75,5.0,fr,39179,155,1656984,1,1,Active Shallow Crust,0.0,89.99017,0.0,08/08/7778 +-0.29317,45.45964,3366,9,11,15,53,44,4.05,5.0,fr,39180,67,1657020,1,2,Active Shallow Crust,0.0,89.99006,0.0,09/11/3366 +-0.29317,45.45964,7044,3,28,20,16,36,4.05,5.0,fr,39181,140,1657020,1,2,Active Shallow Crust,0.0,89.99006,0.0,03/28/7044 +-0.29317,45.45964,31,10,29,23,55,21,4.25,5.0,fr,39182,0,1657050,1,1,Active Shallow Crust,0.0,89.99001,-90.0,10/29/0031 +-0.29317,45.45964,1599,11,18,16,42,55,5.35,5.0,fr,39183,31,1657176,1,1,Active Shallow Crust,0.0,89.98998,0.0,11/18/1599 +-1.63932,47.10805,9979,2,9,13,17,49,3.55,5.0,fr,39184,199,1657920,1,5,Active Shallow Crust,0.0,89.98971,0.0,02/09/9979 +-1.63932,47.10805,9054,6,2,21,34,6,3.55,5.0,fr,39185,181,1657920,1,5,Active Shallow Crust,0.0,89.98971,0.0,06/02/9054 +-1.63932,47.10805,2342,5,22,13,50,9,3.55,5.0,fr,39186,46,1657920,1,5,Active Shallow Crust,0.0,89.98971,0.0,05/22/2342 +-1.63932,47.10805,7971,4,2,18,19,39,3.55,5.0,fr,39187,159,1657920,1,5,Active Shallow Crust,0.0,89.98971,0.0,04/02/7971 +-1.63932,47.10805,9450,6,6,20,12,1,3.55,5.0,fr,39188,188,1657920,1,5,Active Shallow Crust,0.0,89.98971,0.0,06/06/9450 +-1.63932,47.10805,4220,6,6,0,7,29,3.55,5.0,fr,39189,84,1657929,1,1,Active Shallow Crust,128.896,89.994,0.0,06/06/4220 +-1.63932,47.10805,4678,12,11,4,34,26,3.55,15.0,fr,39190,93,1657930,1,1,Active Shallow Crust,128.896,89.994,0.0,12/11/4678 +-1.63932,47.10805,1034,3,23,9,32,33,3.65,5.0,fr,39191,20,1657932,1,1,Active Shallow Crust,0.0,89.9893,0.0,03/23/1034 +-1.63932,47.10805,1929,2,10,1,59,11,3.65,27.5,fr,39192,38,1657934,1,1,Active Shallow Crust,0.0,89.9893,0.0,02/10/1929 +-1.63932,47.10805,8222,9,13,8,18,34,3.65,5.0,fr,39193,164,1657935,1,1,Active Shallow Crust,240.0011,58.01303,0.0,09/13/8222 +-1.63932,47.10805,4713,8,21,18,43,39,3.65,15.0,fr,39194,94,1657942,1,1,Active Shallow Crust,128.9003,89.96354,0.0,08/21/4713 +-1.63932,47.10805,3975,4,28,4,56,42,3.75,5.0,fr,39195,79,1657944,1,3,Active Shallow Crust,0.0,89.99046,0.0,04/28/3975 +-1.63932,47.10805,1685,6,19,4,56,10,3.75,5.0,fr,39196,33,1657944,1,3,Active Shallow Crust,0.0,89.99046,0.0,06/19/1685 +-1.63932,47.10805,2492,3,28,13,24,9,3.75,5.0,fr,39197,49,1657944,1,3,Active Shallow Crust,0.0,89.99046,0.0,03/28/2492 +-1.63932,47.10805,5078,11,2,2,51,56,3.75,15.0,fr,39198,101,1657945,1,1,Active Shallow Crust,0.0,89.99046,0.0,11/02/5078 +-1.63932,47.10805,5381,8,29,20,57,50,3.75,5.0,fr,39199,107,1657947,1,1,Active Shallow Crust,240.0086,58.01754,0.0,08/29/5381 +-1.63932,47.10805,9554,3,20,13,56,18,3.75,5.0,fr,39200,191,1657953,1,1,Active Shallow Crust,128.8965,89.96738,0.0,03/20/9554 +-1.63932,47.10805,8162,2,14,4,1,23,3.85,5.0,fr,39201,163,1657956,1,4,Active Shallow Crust,0.0,89.99028,0.0,02/14/8162 +-1.63932,47.10805,638,7,28,7,5,49,3.85,5.0,fr,39202,12,1657956,1,4,Active Shallow Crust,0.0,89.99028,0.0,07/28/0638 +-1.63932,47.10805,8167,3,1,7,34,11,3.85,5.0,fr,39203,163,1657956,1,4,Active Shallow Crust,0.0,89.99028,0.0,03/01/8167 +-1.63932,47.10805,4089,9,27,5,1,38,3.85,5.0,fr,39204,81,1657956,1,4,Active Shallow Crust,0.0,89.99028,0.0,09/27/4089 +-1.63932,47.10805,6601,3,12,1,7,38,3.85,5.0,fr,39205,132,1657962,1,1,Active Shallow Crust,0.0,89.99017,-90.0,03/12/6601 +-1.63932,47.10805,6989,8,18,5,7,20,3.85,27.5,fr,39206,139,1657964,1,1,Active Shallow Crust,0.0,89.99017,-90.0,08/18/6989 +-1.63932,47.10805,1984,2,24,22,35,21,3.85,5.0,fr,39207,39,1657965,1,1,Active Shallow Crust,128.8954,89.99393,0.0,02/24/1984 +-1.63932,47.10805,8291,9,16,6,45,44,3.95,15.0,fr,39208,165,1657969,1,1,Active Shallow Crust,0.0,89.99026,0.0,09/16/8291 +-1.63932,47.10805,7325,1,5,10,38,53,4.05,5.0,fr,39209,146,1657980,1,4,Active Shallow Crust,0.0,89.99035,0.0,01/05/7325 +-1.63932,47.10805,1599,12,21,4,41,15,4.05,5.0,fr,39210,31,1657980,1,4,Active Shallow Crust,0.0,89.99035,0.0,12/21/1599 +-1.63932,47.10805,3192,3,19,9,54,46,4.05,5.0,fr,39211,63,1657980,1,4,Active Shallow Crust,0.0,89.99035,0.0,03/19/3192 +-1.63932,47.10805,8550,11,14,19,35,18,4.05,5.0,fr,39212,170,1657980,1,4,Active Shallow Crust,0.0,89.99035,0.0,11/14/8550 +-1.63932,47.10805,8861,2,11,14,20,30,4.05,15.0,fr,39213,177,1657981,1,1,Active Shallow Crust,0.0,89.99035,0.0,02/11/8861 +-1.63932,47.10805,1991,12,17,6,24,42,4.05,5.0,fr,39214,39,1657983,1,1,Active Shallow Crust,240.0061,58.00586,0.0,12/17/1991 +-1.63932,47.10805,3671,7,22,5,33,12,4.05,15.0,fr,39215,73,1657987,1,1,Active Shallow Crust,0.0,89.99024,-90.0,07/22/3671 +-1.63932,47.10805,477,5,15,6,30,34,4.15,5.0,fr,39216,9,1658001,1,1,Active Shallow Crust,128.8972,89.99398,0.0,05/15/0477 +-1.63932,47.10805,4842,8,16,3,16,58,4.25,15.0,fr,39217,96,1658005,1,2,Active Shallow Crust,0.0,89.99004,0.0,08/16/4842 +-1.63932,47.10805,6354,2,14,14,29,51,4.25,15.0,fr,39218,127,1658005,1,2,Active Shallow Crust,0.0,89.99004,0.0,02/14/6354 +-1.63932,47.10805,8171,8,28,17,58,11,4.35,5.0,fr,39219,163,1658016,1,1,Active Shallow Crust,0.0,89.98975,0.0,08/28/8171 +-1.63932,47.10805,6029,7,17,9,17,37,4.35,15.0,fr,39220,120,1658017,1,3,Active Shallow Crust,0.0,89.98975,0.0,07/17/6029 +-1.63932,47.10805,5588,12,4,6,28,2,4.35,15.0,fr,39221,111,1658017,1,3,Active Shallow Crust,0.0,89.98975,0.0,12/04/5588 +-1.63932,47.10805,3229,11,14,3,45,5,4.35,15.0,fr,39222,64,1658017,1,3,Active Shallow Crust,0.0,89.98975,0.0,11/14/3229 +-1.63932,47.10805,4616,5,4,17,50,22,4.35,5.0,fr,39223,92,1658022,1,1,Active Shallow Crust,0.0,89.99033,-90.0,05/04/4616 +-1.63932,47.10805,5888,2,27,7,21,26,4.45,5.0,fr,39224,117,1658028,1,2,Active Shallow Crust,0.0,89.99026,0.0,02/27/5888 +-1.63932,47.10805,3905,10,3,7,36,21,4.45,5.0,fr,39225,78,1658028,1,2,Active Shallow Crust,0.0,89.99026,0.0,10/03/3905 +-1.63932,47.10805,8332,11,4,9,18,46,4.45,27.5,fr,39226,166,1658030,1,1,Active Shallow Crust,0.0,89.99026,0.0,11/04/8332 +-1.63932,47.10805,7363,7,30,7,15,0,4.95,5.0,fr,39227,147,1658091,1,1,Active Shallow Crust,240.0121,58.00457,0.0,07/30/7363 +-1.63932,47.10805,7613,10,22,18,3,11,4.95,5.0,fr,39228,152,1658094,1,1,Active Shallow Crust,0.0,89.98995,-90.0,10/22/7613 +-1.63932,47.10805,6942,4,6,19,53,32,5.25,15.0,fr,39229,138,1658125,1,1,Active Shallow Crust,0.0,89.99006,0.0,04/06/6942 +-1.63932,47.10805,4098,4,30,1,51,4,5.35,5.0,fr,39230,81,1658136,1,1,Active Shallow Crust,0.0,89.99006,0.0,04/30/4098 +-1.63932,47.10805,5846,8,27,13,37,12,6.15,15.0,fr,39231,116,1658242,1,1,Active Shallow Crust,128.8551,89.98977,0.0,08/27/5846 +7.80345,48.97472,4798,6,22,22,51,5,3.55,5.0,fr,39232,95,1658400,1,3,Active Shallow Crust,0.0,89.98676,0.0,06/22/4798 +7.80345,48.97472,4964,9,22,22,56,23,3.55,5.0,fr,39233,99,1658400,1,3,Active Shallow Crust,0.0,89.98676,0.0,09/22/4964 +7.80345,48.97472,2745,11,4,16,35,44,3.55,5.0,fr,39234,54,1658400,1,3,Active Shallow Crust,0.0,89.98676,0.0,11/04/2745 +7.80345,48.97472,226,2,27,8,0,53,3.75,5.0,fr,39235,4,1658424,1,4,Active Shallow Crust,0.0,89.98949,0.0,02/27/0226 +7.80345,48.97472,1294,5,7,20,33,53,3.75,5.0,fr,39236,25,1658424,1,4,Active Shallow Crust,0.0,89.98949,0.0,05/07/1294 +7.80345,48.97472,2762,6,7,6,30,30,3.75,5.0,fr,39237,55,1658424,1,4,Active Shallow Crust,0.0,89.98949,0.0,06/07/2762 +7.80345,48.97472,9896,8,18,7,34,9,3.75,5.0,fr,39238,197,1658424,1,4,Active Shallow Crust,0.0,89.98949,0.0,08/18/9896 +7.80345,48.97472,9730,4,12,18,44,48,3.85,5.0,fr,39239,194,1658436,1,1,Active Shallow Crust,0.0,89.99063,0.0,04/12/9730 +7.80345,48.97472,281,11,16,6,10,33,3.85,15.0,fr,39240,5,1658437,1,1,Active Shallow Crust,0.0,89.99063,0.0,11/16/0281 +7.80345,48.97472,1763,7,6,20,58,58,3.85,5.0,fr,39241,35,1658439,1,1,Active Shallow Crust,240.0114,57.99717,0.0,07/06/1763 +7.80345,48.97472,499,11,5,19,17,48,4.05,15.0,fr,39242,9,1658461,1,1,Active Shallow Crust,0.0,89.98883,0.0,11/05/0499 +7.80345,48.97472,7749,7,10,17,5,43,4.25,5.0,fr,39243,154,1658487,1,1,Active Shallow Crust,240.0076,57.99451,0.0,07/10/7749 +7.80345,48.97472,8021,4,17,22,53,38,4.25,15.0,fr,39244,160,1658488,1,1,Active Shallow Crust,240.0076,57.99451,0.0,04/17/8021 +7.80345,48.97472,6323,1,30,12,43,41,4.45,15.0,fr,39245,126,1658509,1,1,Active Shallow Crust,0.0,89.99061,0.0,01/30/6323 +7.80345,48.97472,1311,3,3,22,24,24,4.75,5.0,fr,39246,26,1658553,1,1,Active Shallow Crust,128.8879,89.98788,0.0,03/03/1311 +-1.17911,45.65441,5628,2,9,9,42,56,3.65,15.0,fr,39247,112,1658893,1,1,Active Shallow Crust,0.0,89.99058,0.0,02/09/5628 +-1.17911,45.65441,5494,12,29,9,10,44,3.75,27.5,fr,39248,109,1658909,1,1,Active Shallow Crust,240.0082,58.01772,0.0,12/29/5494 +-1.17911,45.65441,4662,3,27,7,34,45,4.25,15.0,fr,39249,93,1658971,1,1,Active Shallow Crust,0.0,89.98965,-90.0,03/27/4662 +-0.15688,47.22396,9961,5,25,19,13,37,3.55,5.0,fr,39250,199,1659360,1,1,Active Shallow Crust,0.0,89.98994,0.0,05/25/9961 +-0.15688,47.22396,5015,11,10,12,30,33,3.75,5.0,fr,39251,100,1659384,1,1,Active Shallow Crust,0.0,89.98997,0.0,11/10/5015 +-0.15688,47.22396,2710,12,25,9,29,6,3.75,5.0,fr,39252,54,1659393,1,2,Active Shallow Crust,128.8966,89.96735,0.0,12/25/2710 +-0.15688,47.22396,9475,1,27,1,20,18,3.75,5.0,fr,39253,189,1659393,1,2,Active Shallow Crust,128.8966,89.96735,0.0,01/27/9475 +-0.15688,47.22396,6997,5,10,10,48,26,3.85,5.0,fr,39254,139,1659396,1,1,Active Shallow Crust,0.0,89.99,0.0,05/10/6997 +-0.15688,47.22396,5311,2,21,18,2,43,3.85,15.0,fr,39255,106,1659406,1,1,Active Shallow Crust,128.8956,89.99371,0.0,02/21/5311 +-0.15688,47.22396,1262,4,6,16,20,6,3.95,5.0,fr,39256,25,1659408,1,2,Active Shallow Crust,0.0,89.99001,0.0,04/06/1262 +-0.15688,47.22396,5459,6,25,14,22,50,3.95,5.0,fr,39257,109,1659408,1,2,Active Shallow Crust,0.0,89.99001,0.0,06/25/5459 +-0.15688,47.22396,3410,9,4,11,9,42,4.05,5.0,fr,39258,68,1659420,1,3,Active Shallow Crust,0.0,89.99001,0.0,09/04/3410 +-0.15688,47.22396,7772,10,11,21,59,4,4.05,5.0,fr,39259,155,1659420,1,3,Active Shallow Crust,0.0,89.99001,0.0,10/11/7772 +-0.15688,47.22396,9566,6,20,7,31,58,4.05,5.0,fr,39260,191,1659420,1,3,Active Shallow Crust,0.0,89.99001,0.0,06/20/9566 +-0.15688,47.22396,688,10,28,9,33,24,4.05,15.0,fr,39261,13,1659427,1,1,Active Shallow Crust,0.0,89.99001,-90.0,10/28/0688 +-0.15688,47.22396,1824,11,9,23,56,52,4.75,15.0,fr,39262,36,1659505,1,1,Active Shallow Crust,0.0,89.99,0.0,11/09/1824 +-0.15688,47.22396,9905,12,12,3,10,51,4.85,5.0,fr,39263,198,1659519,1,1,Active Shallow Crust,240.0174,58.00238,0.0,12/12/9905 +-0.15688,47.22396,1259,2,23,3,26,47,5.25,5.0,fr,39264,25,1659564,1,1,Active Shallow Crust,0.0,89.98999,0.0,02/23/1259 +3.17219,43.03786,7069,8,22,9,28,8,3.55,5.0,fr,39265,141,1659840,1,2,Active Shallow Crust,0.0,89.98895,0.0,08/22/7069 +3.17219,43.03786,418,5,10,11,2,6,3.55,5.0,fr,39266,8,1659840,1,2,Active Shallow Crust,0.0,89.98895,0.0,05/10/0418 +3.17219,43.03786,4161,9,6,11,23,56,3.85,5.0,fr,39267,83,1659882,1,1,Active Shallow Crust,0.0,89.98944,-90.0,09/06/4161 +3.17219,43.03786,9458,10,13,16,26,21,4.05,27.5,fr,39268,189,1659908,1,1,Active Shallow Crust,0.0,89.98952,-90.0,10/13/9458 +3.17219,43.03786,825,9,5,21,15,49,4.35,5.0,fr,39269,16,1659936,1,1,Active Shallow Crust,0.0,89.98973,0.0,09/05/0825 +3.17219,43.03786,7050,4,28,3,14,7,4.55,5.0,fr,39270,140,1659966,1,1,Active Shallow Crust,0.0,89.99057,-90.0,04/28/7050 +-3.30594,49.93242,8240,1,27,17,18,55,3.55,5.0,fr,39271,164,1660323,1,1,Active Shallow Crust,240.0127,57.99767,0.0,01/27/8240 +-3.30594,49.93242,5523,11,4,7,46,15,4.05,27.5,fr,39272,110,1660382,1,1,Active Shallow Crust,0.0,89.99088,0.0,11/04/5523 +-2.49662,45.80236,8260,9,3,6,27,4,3.75,5.0,fr,39273,165,1660824,1,1,Active Shallow Crust,0.0,89.98883,0.0,09/03/8260 +-2.49662,45.80236,4797,9,30,7,43,5,4.25,5.0,fr,39274,95,1660884,1,1,Active Shallow Crust,0.0,89.99058,0.0,09/30/4797 +-0.08548,42.06597,5097,8,23,17,5,29,3.55,5.0,fr,39275,101,1661280,1,1,Active Shallow Crust,359.9999,89.99006,0.0,08/23/5097 +-0.08548,42.06597,2860,5,5,8,54,7,3.65,5.0,fr,39276,57,1661292,1,1,Active Shallow Crust,0.0,89.98999,0.0,05/05/2860 +-0.08548,42.06597,9858,5,18,3,0,45,3.95,5.0,fr,39277,197,1661328,1,1,Active Shallow Crust,360.0,89.99004,0.0,05/18/9858 +-0.08548,42.06597,2366,10,3,16,0,26,4.95,5.0,fr,39278,47,1661457,1,1,Active Shallow Crust,128.8915,89.98979,0.0,10/03/2366 +0.64145,46.47536,7648,6,5,5,37,40,3.55,27.5,fr,39279,152,1661762,1,1,Active Shallow Crust,0.0,89.98959,0.0,06/05/7648 +0.64145,46.47536,6251,1,9,3,19,2,3.65,15.0,fr,39280,125,1661773,1,1,Active Shallow Crust,0.0,89.98994,0.0,01/09/6251 +0.64145,46.47536,4457,9,28,14,6,36,3.65,15.0,fr,39281,89,1661779,1,1,Active Shallow Crust,0.0,89.98982,-90.0,09/28/4457 +0.64145,46.47536,2263,5,6,17,27,54,3.75,5.0,fr,39282,45,1661793,1,1,Active Shallow Crust,128.8965,89.96737,0.0,05/06/2263 +0.64145,46.47536,8067,7,15,16,1,17,3.85,5.0,fr,39283,161,1661799,1,1,Active Shallow Crust,240.0109,57.99773,0.0,07/15/8067 +0.64145,46.47536,8864,11,27,21,48,35,3.95,15.0,fr,39284,177,1661809,1,1,Active Shallow Crust,0.0,89.99014,0.0,11/27/8864 +0.64145,46.47536,1323,8,18,7,4,19,4.05,5.0,fr,39285,26,1661820,1,3,Active Shallow Crust,0.0,89.99023,0.0,08/18/1323 +0.64145,46.47536,1122,5,8,18,51,16,4.05,5.0,fr,39286,22,1661820,1,3,Active Shallow Crust,0.0,89.99023,0.0,05/08/1122 +0.64145,46.47536,5965,3,12,11,6,51,4.05,5.0,fr,39287,119,1661820,1,3,Active Shallow Crust,0.0,89.99023,0.0,03/12/5965 +0.64145,46.47536,774,6,30,9,59,59,4.15,5.0,fr,39288,15,1661832,1,1,Active Shallow Crust,0.0,89.98999,0.0,06/30/0774 +0.64145,46.47536,6002,7,22,7,7,45,4.15,5.0,fr,39289,120,1661835,1,1,Active Shallow Crust,240.0085,57.99732,0.0,07/22/6002 +0.64145,46.47536,8681,4,6,1,42,23,4.35,15.0,fr,39290,173,1661857,1,1,Active Shallow Crust,0.0,89.98997,0.0,04/06/8681 +0.64145,46.47536,4841,9,29,3,48,55,4.35,15.0,fr,39291,96,1661863,1,1,Active Shallow Crust,0.0,89.98986,-90.0,09/29/4841 +0.64145,46.47536,8455,11,30,5,47,34,4.55,5.0,fr,39292,169,1661880,1,1,Active Shallow Crust,0.0,89.99012,0.0,11/30/8455 +0.64145,46.47536,3975,4,8,22,27,7,4.55,27.5,fr,39293,79,1661885,1,1,Active Shallow Crust,240.0093,57.99738,0.0,04/08/3975 +0.64145,46.47536,3528,11,23,15,39,4,4.75,5.0,fr,39294,70,1661904,1,1,Active Shallow Crust,0.0,89.98997,0.0,11/23/3528 +-1.58034,46.43489,4649,10,15,3,24,3,3.65,15.0,fr,39295,92,1662253,1,1,Active Shallow Crust,0.0,89.99071,0.0,10/15/4649 +-1.58034,46.43489,7175,2,16,19,45,35,3.75,5.0,fr,39296,143,1662264,1,2,Active Shallow Crust,0.0,89.99034,0.0,02/16/7175 +-1.58034,46.43489,1570,9,29,22,22,52,3.75,5.0,fr,39297,31,1662264,1,2,Active Shallow Crust,0.0,89.99034,0.0,09/29/1570 +-1.58034,46.43489,5892,4,5,22,58,22,3.75,27.5,fr,39298,117,1662266,1,1,Active Shallow Crust,0.0,89.99034,0.0,04/05/5892 +-1.58034,46.43489,7472,4,11,22,21,0,3.75,15.0,fr,39299,149,1662271,1,1,Active Shallow Crust,0.0,89.99023,-90.0,04/11/7472 +-1.58034,46.43489,9680,10,30,20,24,50,3.85,5.0,fr,39300,193,1662282,1,1,Active Shallow Crust,0.0,89.99004,-90.0,10/30/9680 +-1.58034,46.43489,3747,1,25,3,0,6,4.05,5.0,fr,39301,74,1662309,1,1,Active Shallow Crust,128.8907,89.99365,0.0,01/25/3747 +-1.58034,46.43489,2230,2,17,13,32,16,4.25,27.5,fr,39302,44,1662326,1,1,Active Shallow Crust,0.0,89.98991,0.0,02/17/2230 +0.53512,48.46911,9004,12,13,12,32,27,3.65,15.0,fr,39303,180,1662736,1,1,Active Shallow Crust,240.0013,58.01299,0.0,12/13/9004 +0.53512,48.46911,4058,3,20,21,44,6,3.85,5.0,fr,39304,81,1662756,1,1,Active Shallow Crust,0.0,89.98994,0.0,03/20/4058 +0.53512,48.46911,79,7,31,22,13,53,4.35,5.0,fr,39305,1,1662816,1,1,Active Shallow Crust,0.0,89.99002,0.0,07/31/0079 +0.53512,48.46911,9908,12,26,9,0,43,4.85,5.0,fr,39306,198,1662882,1,1,Active Shallow Crust,0.0,89.98997,-90.0,12/26/9908 +-0.39926,48.27756,8304,9,28,8,52,16,3.55,5.0,fr,39307,166,1663200,1,3,Active Shallow Crust,0.0,89.98994,0.0,09/28/8304 +-0.39926,48.27756,9363,12,27,20,59,34,3.55,5.0,fr,39308,187,1663200,1,3,Active Shallow Crust,0.0,89.98994,0.0,12/27/9363 +-0.39926,48.27756,9717,5,25,5,54,31,3.55,5.0,fr,39309,194,1663200,1,3,Active Shallow Crust,0.0,89.98994,0.0,05/25/9717 +-0.39926,48.27756,196,4,16,4,38,24,3.55,27.5,fr,39310,3,1663202,1,1,Active Shallow Crust,0.0,89.98994,0.0,04/16/0196 +-0.39926,48.27756,7845,2,18,4,23,16,3.65,5.0,fr,39311,156,1663212,1,1,Active Shallow Crust,0.0,89.98991,0.0,02/18/7845 +-0.39926,48.27756,2456,12,13,2,11,32,3.65,5.0,fr,39312,49,1663218,1,1,Active Shallow Crust,0.0,89.99017,-90.0,12/13/2456 +-0.39926,48.27756,845,7,29,0,12,27,3.75,15.0,fr,39313,16,1663225,1,1,Active Shallow Crust,0.0,89.99001,0.0,07/29/0845 +-0.39926,48.27756,1130,6,3,17,22,33,3.85,5.0,fr,39314,22,1663236,1,1,Active Shallow Crust,0.0,89.98991,0.0,06/03/1130 +-0.39926,48.27756,2942,12,3,15,3,39,3.95,5.0,fr,39315,58,1663248,1,2,Active Shallow Crust,0.0,89.98994,0.0,12/03/2942 +-0.39926,48.27756,9004,12,6,6,33,10,3.95,5.0,fr,39316,180,1663248,1,2,Active Shallow Crust,0.0,89.98994,0.0,12/06/9004 +-0.39926,48.27756,8040,7,15,10,37,39,3.95,5.0,fr,39317,160,1663251,1,1,Active Shallow Crust,240.02,58.005,0.0,07/15/8040 +-0.39926,48.27756,6637,8,19,15,26,9,4.05,5.0,fr,39318,132,1663269,1,1,Active Shallow Crust,128.8903,89.99375,0.0,08/19/6637 +-0.39926,48.27756,1122,9,3,19,31,32,4.15,5.0,fr,39319,22,1663275,1,1,Active Shallow Crust,240.0088,57.99736,0.0,09/03/1122 +6.17064,45.56666,5541,10,21,10,42,4,3.55,5.0,fr,39320,110,1663680,1,3,Active Shallow Crust,0.0,89.99294,0.0,10/21/5541 +6.17064,45.56666,9568,5,29,9,26,37,3.55,5.0,fr,39321,191,1663680,1,3,Active Shallow Crust,0.0,89.99294,0.0,05/29/9568 +6.17064,45.56666,5897,11,3,18,58,22,3.55,5.0,fr,39322,117,1663680,1,3,Active Shallow Crust,0.0,89.99294,0.0,11/03/5897 +6.17064,45.56666,323,5,21,12,59,51,3.55,15.0,fr,39323,6,1663681,1,3,Active Shallow Crust,0.0,89.99294,0.0,05/21/0323 +6.17064,45.56666,4344,4,3,3,58,44,3.55,15.0,fr,39324,86,1663681,1,3,Active Shallow Crust,0.0,89.99294,0.0,04/03/4344 +6.17064,45.56666,660,11,18,7,0,21,3.55,15.0,fr,39325,13,1663681,1,3,Active Shallow Crust,0.0,89.99294,0.0,11/18/0660 +6.17064,45.56666,1049,3,8,6,52,4,3.55,27.5,fr,39326,20,1663682,1,1,Active Shallow Crust,0.0,89.99294,0.0,03/08/1049 +6.17064,45.56666,8833,7,16,23,11,24,3.65,5.0,fr,39327,176,1663692,1,2,Active Shallow Crust,0.0,89.98742,0.0,07/16/8833 +6.17064,45.56666,1549,5,3,0,6,32,3.65,5.0,fr,39328,30,1663692,1,2,Active Shallow Crust,0.0,89.98742,0.0,05/03/1549 +6.17064,45.56666,6258,7,22,16,38,36,3.65,15.0,fr,39329,125,1663693,1,1,Active Shallow Crust,0.0,89.98742,0.0,07/22/6258 +6.17064,45.56666,2418,2,11,19,6,4,3.65,15.0,fr,39330,48,1663696,1,1,Active Shallow Crust,240.0022,58.01239,0.0,02/11/2418 +6.17064,45.56666,8858,9,16,12,50,6,3.65,5.0,fr,39331,177,1663701,1,1,Active Shallow Crust,128.8999,89.96351,0.0,09/16/8858 +6.17064,45.56666,1412,9,2,12,15,1,3.75,5.0,fr,39332,28,1663704,1,1,Active Shallow Crust,0.0,89.98878,0.0,09/02/1412 +6.17064,45.56666,7677,9,1,8,27,11,3.75,27.5,fr,39333,153,1663706,1,1,Active Shallow Crust,0.0,89.98878,0.0,09/01/7677 +6.17064,45.56666,3109,5,8,21,50,45,3.75,5.0,fr,39334,62,1663713,1,2,Active Shallow Crust,128.8971,89.96687,0.0,05/08/3109 +6.17064,45.56666,3677,10,12,14,45,45,3.75,5.0,fr,39335,73,1663713,1,2,Active Shallow Crust,128.8971,89.96687,0.0,10/12/3677 +6.17064,45.56666,9162,12,19,14,49,16,3.85,5.0,fr,39336,183,1663716,1,2,Active Shallow Crust,0.0,89.99001,0.0,12/19/9162 +6.17064,45.56666,6858,9,18,1,55,14,3.85,5.0,fr,39337,137,1663716,1,2,Active Shallow Crust,0.0,89.99001,0.0,09/18/6858 +6.17064,45.56666,5179,1,18,14,41,54,3.85,15.0,fr,39338,103,1663717,1,1,Active Shallow Crust,0.0,89.99001,0.0,01/18/5179 +6.17064,45.56666,2362,2,21,3,43,50,3.95,5.0,fr,39339,47,1663728,1,2,Active Shallow Crust,0.0,89.99109,0.0,02/21/2362 +6.17064,45.56666,6192,10,22,12,33,33,3.95,5.0,fr,39340,123,1663728,1,2,Active Shallow Crust,0.0,89.99109,0.0,10/22/6192 +6.17064,45.56666,9723,5,11,19,8,26,3.95,27.5,fr,39341,194,1663730,1,1,Active Shallow Crust,0.0,89.99109,0.0,05/11/9723 +6.17064,45.56666,2735,5,30,20,40,55,4.05,5.0,fr,39342,54,1663740,1,2,Active Shallow Crust,0.0,89.98809,0.0,05/30/2735 +6.17064,45.56666,8622,6,18,21,36,3,4.05,5.0,fr,39343,172,1663740,1,2,Active Shallow Crust,0.0,89.98809,0.0,06/18/8622 +6.17064,45.56666,3059,8,6,2,21,4,4.15,5.0,fr,39344,61,1663752,1,1,Active Shallow Crust,0.0,89.98939,0.0,08/06/3059 +6.17064,45.56666,1029,12,1,8,49,18,4.65,15.0,fr,39345,20,1663816,1,1,Active Shallow Crust,240.0107,57.99427,0.0,12/01/1029 +6.17064,45.56666,4501,1,9,19,54,43,4.75,15.0,fr,39346,90,1663825,1,1,Active Shallow Crust,0.0,89.98936,0.0,01/09/4501 +6.17064,45.56666,119,10,20,8,11,56,4.75,15.0,fr,39347,2,1663828,1,1,Active Shallow Crust,240.007,58.00429,0.0,10/20/0119 +6.17064,45.56666,8710,12,16,3,6,59,4.85,5.0,fr,39348,174,1663836,1,1,Active Shallow Crust,0.0,89.99052,0.0,12/16/8710 +6.17064,45.56666,9602,9,29,17,43,11,5.05,5.0,fr,39349,192,1663863,1,1,Active Shallow Crust,240.0216,57.99753,0.0,09/29/9602 +2.50773,47.647,1703,4,30,21,25,22,3.55,5.0,fr,39350,34,1664160,1,2,Active Shallow Crust,0.0,89.98981,0.0,04/30/1703 +2.50773,47.647,6840,8,29,7,36,19,3.55,5.0,fr,39351,136,1664160,1,2,Active Shallow Crust,0.0,89.98981,0.0,08/29/6840 +2.50773,47.647,8284,12,5,20,58,0,3.65,5.0,fr,39352,165,1664172,1,1,Active Shallow Crust,0.0,89.99092,0.0,12/05/8284 +2.50773,47.647,8800,12,19,1,5,14,3.65,5.0,fr,39353,175,1664175,1,1,Active Shallow Crust,240.0013,58.01303,0.0,12/19/8800 +2.50773,47.647,4617,5,22,16,26,20,3.75,15.0,fr,39354,92,1664191,1,1,Active Shallow Crust,0.0,89.98908,-90.0,05/22/4617 +2.50773,47.647,9151,1,17,20,26,9,3.85,5.0,fr,39355,183,1664196,1,1,Active Shallow Crust,0.0,89.99038,0.0,01/17/9151 +2.50773,47.647,7174,9,23,19,28,36,3.95,15.0,fr,39356,143,1664209,1,1,Active Shallow Crust,0.0,89.98928,0.0,09/23/7174 +2.50773,47.647,5054,8,8,3,33,0,4.15,5.0,fr,39357,101,1664232,1,1,Active Shallow Crust,0.0,89.98978,0.0,08/08/5054 +2.50773,47.647,8115,5,19,6,35,24,4.65,15.0,fr,39358,162,1664299,1,1,Active Shallow Crust,0.0,89.99032,-90.0,05/19/8115 +5.42582,50.67889,1428,11,18,5,30,9,3.55,5.0,fr,39359,28,1664640,1,3,Active Shallow Crust,0.0,89.98722,0.0,11/18/1428 +5.42582,50.67889,4618,4,12,1,54,19,3.55,5.0,fr,39360,92,1664640,1,3,Active Shallow Crust,0.0,89.98722,0.0,04/12/4618 +5.42582,50.67889,1342,8,16,19,28,57,3.55,5.0,fr,39361,26,1664640,1,3,Active Shallow Crust,0.0,89.98722,0.0,08/16/1342 +5.42582,50.67889,5244,9,14,2,21,42,3.55,15.0,fr,39362,104,1664641,1,1,Active Shallow Crust,0.0,89.98722,0.0,09/14/5244 +5.42582,50.67889,3590,7,4,5,6,11,3.55,27.5,fr,39363,71,1664642,1,1,Active Shallow Crust,0.0,89.98722,0.0,07/04/3590 +5.42582,50.67889,1568,4,8,6,56,42,3.55,5.0,fr,39364,31,1664643,1,3,Active Shallow Crust,240.0137,57.99769,0.0,04/08/1568 +5.42582,50.67889,5801,7,27,20,8,26,3.55,5.0,fr,39365,116,1664643,1,3,Active Shallow Crust,240.0137,57.99769,0.0,07/27/5801 +5.42582,50.67889,2272,6,24,5,17,35,3.55,5.0,fr,39366,45,1664643,1,3,Active Shallow Crust,240.0137,57.99769,0.0,06/24/2272 +5.42582,50.67889,5283,11,30,13,11,11,3.55,5.0,fr,39367,105,1664646,1,2,Active Shallow Crust,0.0,89.98708,-90.0,11/30/5283 +5.42582,50.67889,171,12,12,19,18,8,3.55,5.0,fr,39368,3,1664646,1,2,Active Shallow Crust,0.0,89.98708,-90.0,12/12/0171 +5.42582,50.67889,903,3,11,11,34,14,3.55,5.0,fr,39369,18,1664649,1,2,Active Shallow Crust,128.8964,89.99361,0.0,03/11/0903 +5.42582,50.67889,7376,10,13,22,2,38,3.55,5.0,fr,39370,147,1664649,1,2,Active Shallow Crust,128.8964,89.99361,0.0,10/13/7376 +5.42582,50.67889,3371,3,8,19,42,32,3.65,5.0,fr,39371,67,1664652,1,1,Active Shallow Crust,0.0,89.98861,0.0,03/08/3371 +5.42582,50.67889,5121,1,18,2,31,51,3.65,15.0,fr,39372,102,1664653,1,1,Active Shallow Crust,0.0,89.98861,0.0,01/18/5121 +5.42582,50.67889,6416,5,13,8,7,44,3.65,15.0,fr,39373,128,1664656,1,1,Active Shallow Crust,240.0011,58.01339,0.0,05/13/6416 +5.42582,50.67889,2912,8,4,12,1,4,3.75,5.0,fr,39374,58,1664664,1,1,Active Shallow Crust,0.0,89.98985,0.0,08/04/2912 +5.42582,50.67889,2390,12,26,18,9,40,3.75,15.0,fr,39375,47,1664665,1,1,Active Shallow Crust,0.0,89.98985,0.0,12/26/2390 +5.42582,50.67889,3948,6,1,22,56,2,3.75,5.0,fr,39376,78,1664667,1,1,Active Shallow Crust,240.0093,58.01746,0.0,06/01/3948 +5.42582,50.67889,2786,8,27,4,34,46,3.85,5.0,fr,39377,55,1664682,1,1,Active Shallow Crust,0.0,89.99084,-90.0,08/27/2786 +5.42582,50.67889,6989,7,23,13,10,8,3.95,15.0,fr,39378,139,1664692,1,1,Active Shallow Crust,240.0213,58.00468,0.0,07/23/6989 +5.42582,50.67889,1959,2,10,14,27,37,3.95,5.0,fr,39379,39,1664694,1,1,Active Shallow Crust,0.0,89.99184,-90.0,02/10/1959 +5.42582,50.67889,3686,8,6,14,15,45,4.05,5.0,fr,39380,73,1664700,1,1,Active Shallow Crust,0.0,89.98922,0.0,08/06/3686 +5.42582,50.67889,4896,4,11,2,50,24,4.15,5.0,fr,39381,97,1664712,1,2,Active Shallow Crust,0.0,89.99039,0.0,04/11/4896 +5.42582,50.67889,9449,11,7,10,49,31,4.15,5.0,fr,39382,188,1664712,1,2,Active Shallow Crust,0.0,89.99039,0.0,11/07/9449 +5.42582,50.67889,4611,5,10,4,40,51,4.25,5.0,fr,39383,92,1664724,1,1,Active Shallow Crust,0.0,89.98858,0.0,05/10/4611 +5.42582,50.67889,4454,11,12,7,36,45,4.25,15.0,fr,39384,89,1664734,1,1,Active Shallow Crust,128.8939,89.98062,0.0,11/12/4454 +5.42582,50.67889,5136,8,21,17,30,14,4.35,5.0,fr,39385,102,1664742,1,1,Active Shallow Crust,0.0,89.98971,-90.0,08/21/5136 +5.42582,50.67889,3088,5,22,20,26,16,4.45,27.5,fr,39386,61,1664750,1,1,Active Shallow Crust,0.0,89.99093,0.0,05/22/3088 +5.42582,50.67889,442,5,28,14,31,51,4.55,5.0,fr,39387,8,1664760,1,1,Active Shallow Crust,0.0,89.9899,0.0,05/28/0442 +5.42582,50.67889,703,6,6,12,47,39,4.55,15.0,fr,39388,14,1664761,1,1,Active Shallow Crust,0.0,89.9899,0.0,06/06/0703 +5.42582,50.67889,5254,7,6,11,31,57,4.95,15.0,fr,39389,105,1664809,1,1,Active Shallow Crust,0.0,89.9898,0.0,07/06/5254 +5.42582,50.67889,4792,9,25,0,7,38,5.05,5.0,fr,39390,95,1664829,1,1,Active Shallow Crust,128.8836,89.99049,0.0,09/25/4792 +5.42582,50.67889,5103,11,30,14,2,48,5.15,5.0,fr,39391,102,1664832,1,1,Active Shallow Crust,0.0,89.98987,0.0,11/30/5103 +-1.87346,45.45286,3384,7,4,6,54,22,3.75,5.0,fr,39392,67,1665144,1,2,Active Shallow Crust,0.0,89.99017,0.0,07/04/3384 +-1.87346,45.45286,7929,6,2,7,36,15,3.75,5.0,fr,39393,158,1665144,1,2,Active Shallow Crust,0.0,89.99017,0.0,06/02/7929 +6.38102,47.79175,505,12,25,23,13,34,3.55,5.0,fr,39394,10,1665600,1,1,Active Shallow Crust,0.0,89.99323,0.0,12/25/0505 +6.38102,47.79175,8073,10,26,6,12,17,3.55,15.0,fr,39395,161,1665601,1,1,Active Shallow Crust,0.0,89.99323,0.0,10/26/8073 +6.38102,47.79175,190,4,7,16,11,50,3.55,5.0,fr,39396,3,1665603,1,1,Active Shallow Crust,240.0121,57.99778,0.0,04/07/0190 +6.38102,47.79175,8747,11,21,4,37,18,3.55,5.0,fr,39397,174,1665606,1,1,Active Shallow Crust,0.0,89.99315,-90.0,11/21/8747 +6.38102,47.79175,5103,10,22,13,17,41,3.65,15.0,fr,39398,102,1665613,1,1,Active Shallow Crust,0.0,89.98792,0.0,10/22/5103 +6.38102,47.79175,5178,12,27,16,2,31,3.75,15.0,fr,39399,103,1665625,1,2,Active Shallow Crust,0.0,89.98923,0.0,12/27/5178 +6.38102,47.79175,6410,2,7,9,4,13,3.75,15.0,fr,39400,128,1665625,1,2,Active Shallow Crust,0.0,89.98923,0.0,02/07/6410 +6.38102,47.79175,7412,11,21,22,8,13,3.75,5.0,fr,39401,148,1665627,1,1,Active Shallow Crust,240.0084,58.01768,0.0,11/21/7412 +6.38102,47.79175,7076,11,21,10,4,24,3.85,5.0,fr,39402,141,1665636,1,1,Active Shallow Crust,0.0,89.99041,0.0,11/21/7076 +6.38102,47.79175,9763,9,22,17,38,39,3.85,15.0,fr,39403,195,1665643,1,1,Active Shallow Crust,0.0,89.9903,-90.0,09/22/9763 +6.38102,47.79175,5410,10,24,17,46,44,3.85,5.0,fr,39404,108,1665645,1,1,Active Shallow Crust,128.8944,89.9952,0.0,10/24/5410 +6.38102,47.79175,9095,11,29,23,52,21,4.05,5.0,fr,39405,181,1665660,1,2,Active Shallow Crust,0.0,89.98857,0.0,11/29/9095 +6.38102,47.79175,8049,5,2,7,14,6,4.05,5.0,fr,39406,160,1665660,1,2,Active Shallow Crust,0.0,89.98857,0.0,05/02/8049 +6.38102,47.79175,539,5,31,0,49,10,4.15,5.0,fr,39407,10,1665672,1,1,Active Shallow Crust,0.0,89.98981,0.0,05/31/0539 +6.38102,47.79175,4690,11,27,8,50,51,4.25,5.0,fr,39408,93,1665693,1,1,Active Shallow Crust,128.8936,89.981,0.0,11/27/4690 +6.38102,47.79175,2127,12,10,9,38,36,4.75,5.0,fr,39409,42,1665744,1,1,Active Shallow Crust,0.0,89.98979,0.0,12/10/2127 +6.38102,47.79175,7219,3,25,15,21,48,4.75,15.0,fr,39410,144,1665745,1,1,Active Shallow Crust,0.0,89.98979,0.0,03/25/7219 +2.77148,49.09953,4174,3,14,9,30,18,3.55,5.0,fr,39411,83,1666086,1,1,Active Shallow Crust,0.0,89.98998,-90.0,03/14/4174 +2.77148,49.09953,1254,1,26,12,20,3,3.65,5.0,fr,39412,25,1666095,1,1,Active Shallow Crust,240.0017,58.01257,0.0,01/26/1254 +2.77148,49.09953,9094,12,5,17,4,9,4.35,5.0,fr,39413,181,1666176,1,1,Active Shallow Crust,0.0,89.98949,0.0,12/05/9094 +6.48866,44.15571,4110,11,20,2,31,53,3.55,5.0,fr,39414,82,1666560,1,2,Active Shallow Crust,0.0,89.99277,0.0,11/20/4110 +6.48866,44.15571,6245,5,8,16,10,3,3.55,5.0,fr,39415,124,1666560,1,2,Active Shallow Crust,0.0,89.99277,0.0,05/08/6245 +6.48866,44.15571,2337,3,20,14,15,22,3.55,15.0,fr,39416,46,1666561,1,1,Active Shallow Crust,0.0,89.99277,0.0,03/20/2337 +6.48866,44.15571,5301,11,18,2,25,29,3.55,27.5,fr,39417,106,1666562,1,1,Active Shallow Crust,0.0,89.99277,0.0,11/18/5301 +6.48866,44.15571,3049,2,21,9,58,53,3.65,5.0,fr,39418,60,1666572,1,2,Active Shallow Crust,0.0,89.98711,0.0,02/21/3049 +6.48866,44.15571,3733,11,5,12,31,46,3.65,5.0,fr,39419,74,1666572,1,2,Active Shallow Crust,0.0,89.98711,0.0,11/05/3733 +6.48866,44.15571,77,9,4,1,30,37,3.65,5.0,fr,39420,1,1666578,1,1,Active Shallow Crust,0.0,89.98695,-90.0,09/04/0077 +6.48866,44.15571,3227,10,19,2,15,48,3.75,5.0,fr,39421,64,1666584,1,2,Active Shallow Crust,0.0,89.98851,0.0,10/19/3227 +6.48866,44.15571,7672,6,11,21,57,11,3.75,5.0,fr,39422,153,1666584,1,2,Active Shallow Crust,0.0,89.98851,0.0,06/11/7672 +6.48866,44.15571,4112,3,5,17,31,5,3.75,15.0,fr,39423,82,1666588,1,1,Active Shallow Crust,240.009,58.01672,0.0,03/05/4112 +6.48866,44.15571,2789,7,16,20,27,17,3.85,15.0,fr,39424,55,1666597,1,1,Active Shallow Crust,0.0,89.98975,0.0,07/16/2789 +6.48866,44.15571,6929,12,9,10,2,32,3.95,5.0,fr,39425,138,1666608,1,2,Active Shallow Crust,0.0,89.99087,0.0,12/09/6929 +6.48866,44.15571,2809,9,25,16,19,13,3.95,5.0,fr,39426,56,1666608,1,2,Active Shallow Crust,0.0,89.99087,0.0,09/25/2809 +6.48866,44.15571,8605,9,25,20,1,3,3.95,15.0,fr,39427,172,1666609,1,1,Active Shallow Crust,0.0,89.99087,0.0,09/25/8605 +6.48866,44.15571,8904,1,6,10,15,12,3.95,5.0,fr,39428,178,1666614,1,2,Active Shallow Crust,0.0,89.99076,-90.0,01/06/8904 +6.48866,44.15571,917,2,8,16,52,15,3.95,5.0,fr,39429,18,1666614,1,2,Active Shallow Crust,0.0,89.99076,-90.0,02/08/0917 +6.48866,44.15571,4442,8,1,14,8,51,4.05,27.5,fr,39430,88,1666622,1,1,Active Shallow Crust,0.0,89.99186,0.0,08/01/4442 +6.48866,44.15571,4220,11,1,9,49,30,4.15,5.0,fr,39431,84,1666632,1,1,Active Shallow Crust,0.0,89.98912,0.0,11/01/4220 +6.48866,44.15571,4696,1,23,3,52,22,4.25,27.5,fr,39432,93,1666646,1,1,Active Shallow Crust,0.0,89.9903,0.0,01/23/4696 +6.48866,44.15571,7741,11,28,1,48,20,4.25,5.0,fr,39433,154,1666653,1,1,Active Shallow Crust,128.8941,89.98086,0.0,11/28/7741 +6.48866,44.15571,578,12,5,23,30,25,4.55,5.0,fr,39434,11,1666689,1,1,Active Shallow Crust,128.8947,89.98552,0.0,12/05/0578 +6.48866,44.15571,4276,11,18,13,3,41,5.05,5.0,fr,39435,85,1666740,1,1,Active Shallow Crust,0.0,89.98971,0.0,11/18/4276 +6.48866,44.15571,2654,3,4,4,20,34,5.15,5.0,fr,39436,53,1666755,1,1,Active Shallow Crust,240.0184,57.99979,0.0,03/04/2654 +6.48866,44.15571,1506,11,16,8,6,51,5.45,5.0,fr,39437,30,1666794,1,1,Active Shallow Crust,0.0,89.99014,-90.0,11/16/1506 +-1.12269,42.22911,8222,7,20,0,10,41,3.55,5.0,fr,39438,164,1667043,1,1,Active Shallow Crust,240.0118,57.99822,0.0,07/20/8222 +-1.12269,42.22911,7645,8,22,11,26,16,4.05,27.5,fr,39439,152,1667102,1,1,Active Shallow Crust,0.0,89.9895,0.0,08/22/7645 +-1.12269,42.22911,4179,5,24,6,42,28,4.25,27.5,fr,39440,83,1667135,1,1,Active Shallow Crust,128.895,89.98093,0.0,05/24/4179 +7.69478,49.71615,7256,2,29,11,1,53,3.55,27.5,fr,39441,145,1667528,1,1,Active Shallow Crust,0.0,89.98681,-90.0,02/29/7256 +7.69478,49.71615,8569,3,19,19,37,46,3.65,5.0,fr,39442,171,1667532,1,1,Active Shallow Crust,0.0,89.98838,0.0,03/19/8569 +7.69478,49.71615,780,9,28,9,51,59,3.65,5.0,fr,39443,15,1667535,1,1,Active Shallow Crust,240.0008,58.01285,0.0,09/28/0780 +7.69478,49.71615,6559,11,28,19,30,37,3.85,5.0,fr,39444,131,1667562,1,1,Active Shallow Crust,0.0,89.99066,-90.0,11/28/6559 +7.69478,49.71615,5839,10,30,2,8,36,4.05,27.5,fr,39445,116,1667582,1,1,Active Shallow Crust,0.0,89.989,0.0,10/30/5839 +7.69478,49.71615,5377,7,7,7,21,49,4.25,27.5,fr,39446,107,1667606,1,1,Active Shallow Crust,0.0,89.99126,0.0,07/07/5377 +0.13424,45.89994,550,1,15,6,38,36,3.55,5.0,fr,39447,10,1668003,1,1,Active Shallow Crust,240.0121,57.99814,0.0,01/15/0550 +0.13424,45.89994,3543,3,18,1,20,54,3.55,5.0,fr,39448,70,1668006,1,1,Active Shallow Crust,0.0,89.99002,-90.0,03/18/3543 +0.13424,45.89994,6454,9,9,17,28,36,3.65,5.0,fr,39449,129,1668012,1,3,Active Shallow Crust,0.0,89.99003,0.0,09/09/6454 +0.13424,45.89994,6622,7,28,9,38,28,3.65,5.0,fr,39450,132,1668012,1,3,Active Shallow Crust,0.0,89.99003,0.0,07/28/6622 +0.13424,45.89994,3551,12,7,15,7,30,3.65,5.0,fr,39451,71,1668012,1,3,Active Shallow Crust,0.0,89.99003,0.0,12/07/3551 +0.13424,45.89994,1608,2,1,7,45,4,3.65,27.5,fr,39452,32,1668014,1,1,Active Shallow Crust,0.0,89.99003,0.0,02/01/1608 +0.13424,45.89994,7533,6,13,20,59,26,3.65,5.0,fr,39453,150,1668021,1,1,Active Shallow Crust,128.9004,89.96352,0.0,06/13/7533 +0.13424,45.89994,7772,9,4,20,33,35,3.75,5.0,fr,39454,155,1668024,1,1,Active Shallow Crust,0.0,89.99007,0.0,09/04/7772 +0.13424,45.89994,8649,4,2,10,55,16,3.75,15.0,fr,39455,172,1668025,1,2,Active Shallow Crust,0.0,89.99007,0.0,04/02/8649 +0.13424,45.89994,6885,10,10,13,1,8,3.75,15.0,fr,39456,137,1668025,1,2,Active Shallow Crust,0.0,89.99007,0.0,10/10/6885 +0.13424,45.89994,8621,2,5,20,23,11,3.75,27.5,fr,39457,172,1668029,1,1,Active Shallow Crust,240.0083,58.01756,0.0,02/05/8621 +0.13424,45.89994,7968,3,25,13,25,47,3.75,5.0,fr,39458,159,1668030,1,1,Active Shallow Crust,0.0,89.98995,-90.0,03/25/7968 +0.13424,45.89994,5123,7,3,8,33,14,3.85,5.0,fr,39459,102,1668036,1,1,Active Shallow Crust,0.0,89.99007,0.0,07/03/5123 +0.13424,45.89994,6536,4,5,10,51,22,3.85,15.0,fr,39460,130,1668037,1,1,Active Shallow Crust,0.0,89.99007,0.0,04/05/6536 +0.13424,45.89994,8282,7,11,6,38,33,3.85,5.0,fr,39461,165,1668039,1,1,Active Shallow Crust,240.0108,57.99776,0.0,07/11/8282 +0.13424,45.89994,1752,5,26,4,56,20,3.95,5.0,fr,39462,35,1668048,1,4,Active Shallow Crust,0.0,89.99004,0.0,05/26/1752 +0.13424,45.89994,9743,8,18,7,44,8,3.95,5.0,fr,39463,194,1668048,1,4,Active Shallow Crust,0.0,89.99004,0.0,08/18/9743 +0.13424,45.89994,9631,8,31,8,54,1,3.95,5.0,fr,39464,192,1668048,1,4,Active Shallow Crust,0.0,89.99004,0.0,08/31/9631 +0.13424,45.89994,4387,5,20,2,39,41,3.95,5.0,fr,39465,87,1668048,1,4,Active Shallow Crust,0.0,89.99004,0.0,05/20/4387 +0.13424,45.89994,2408,7,2,0,2,9,3.95,15.0,fr,39466,48,1668049,1,1,Active Shallow Crust,0.0,89.99004,0.0,07/02/2408 +0.13424,45.89994,7074,11,24,18,17,7,4.05,15.0,fr,39467,141,1668061,1,3,Active Shallow Crust,0.0,89.99001,0.0,11/24/7074 +0.13424,45.89994,1452,6,23,14,35,11,4.05,15.0,fr,39468,29,1668061,1,3,Active Shallow Crust,0.0,89.99001,0.0,06/23/1452 +0.13424,45.89994,7485,8,16,15,4,42,4.05,15.0,fr,39469,149,1668061,1,3,Active Shallow Crust,0.0,89.99001,0.0,08/16/7485 +0.13424,45.89994,4364,9,23,8,33,55,4.15,5.0,fr,39470,87,1668072,1,1,Active Shallow Crust,0.0,89.99,0.0,09/23/4364 +0.13424,45.89994,1725,5,23,8,21,59,4.35,15.0,fr,39471,34,1668097,1,1,Active Shallow Crust,0.0,89.98996,0.0,05/23/1725 +0.13424,45.89994,9174,7,25,10,1,37,4.45,5.0,fr,39472,183,1668108,1,1,Active Shallow Crust,0.0,89.98996,0.0,07/25/9174 +0.13424,45.89994,4007,1,18,2,54,8,4.45,15.0,fr,39473,80,1668109,1,1,Active Shallow Crust,0.0,89.98996,0.0,01/18/4007 +0.13424,45.89994,5346,11,6,11,45,54,4.65,5.0,fr,39474,106,1668132,1,1,Active Shallow Crust,0.0,89.98998,0.0,11/06/5346 +0.9636,44.88424,3219,8,15,11,6,34,3.55,5.0,fr,39475,64,1668480,1,1,Active Shallow Crust,0.0,89.99017,0.0,08/15/3219 +0.9636,44.88424,4178,3,12,1,29,38,3.55,15.0,fr,39476,83,1668484,1,1,Active Shallow Crust,240.0121,57.99803,0.0,03/12/4178 +0.9636,44.88424,3044,1,29,17,45,52,3.65,15.0,fr,39477,60,1668493,1,1,Active Shallow Crust,0.0,89.98965,0.0,01/29/3044 +0.9636,44.88424,3234,6,30,18,20,7,3.85,5.0,fr,39478,64,1668516,1,1,Active Shallow Crust,0.0,89.98988,0.0,06/30/3234 +0.9636,44.88424,2007,8,4,3,47,22,3.95,5.0,fr,39479,40,1668531,1,1,Active Shallow Crust,240.0195,58.00496,0.0,08/04/2007 +0.9636,44.88424,6165,11,29,1,39,43,4.05,5.0,fr,39480,123,1668540,1,1,Active Shallow Crust,0.0,89.98995,0.0,11/29/6165 +0.9636,44.88424,3841,3,12,8,27,4,4.35,5.0,fr,39481,76,1668579,1,1,Active Shallow Crust,240.0081,57.99588,0.0,03/12/3841 +0.9636,44.88424,8815,1,26,2,33,55,4.45,5.0,fr,39482,176,1668588,1,1,Active Shallow Crust,0.0,89.98986,0.0,01/26/8815 +0.9636,44.88424,4919,3,11,1,55,13,5.15,5.0,fr,39483,98,1668681,1,1,Active Shallow Crust,128.8845,89.99103,0.0,03/11/4919 +-4.78952,49.12425,6986,5,22,16,56,48,3.55,5.0,fr,39484,139,1669440,1,2,Active Shallow Crust,0.0,89.9868,0.0,05/22/6986 +-4.78952,49.12425,6684,11,9,22,52,16,3.55,5.0,fr,39485,133,1669440,1,2,Active Shallow Crust,0.0,89.9868,0.0,11/09/6684 +-4.78952,49.12425,4398,8,27,14,4,21,3.65,27.5,fr,39486,87,1669454,1,1,Active Shallow Crust,0.0,89.98824,0.0,08/27/4398 +5.10106,45.42736,4532,9,1,7,31,29,3.55,5.0,fr,39487,90,1669920,1,1,Active Shallow Crust,0.0,89.99292,0.0,09/01/4532 +5.10106,45.42736,8006,12,18,18,19,4,3.55,15.0,fr,39488,160,1669921,1,1,Active Shallow Crust,0.0,89.99292,0.0,12/18/8006 +5.10106,45.42736,3762,9,6,6,51,42,3.55,5.0,fr,39489,75,1669923,1,1,Active Shallow Crust,240.0117,57.99852,0.0,09/06/3762 +5.10106,45.42736,3398,4,12,9,15,23,3.55,5.0,fr,39490,67,1669926,1,1,Active Shallow Crust,0.0,89.99284,-90.0,04/12/3398 +5.10106,45.42736,8285,8,28,16,41,28,3.75,27.5,fr,39491,165,1669946,1,1,Active Shallow Crust,0.0,89.98875,0.0,08/28/8285 +5.10106,45.42736,508,11,23,8,46,32,3.75,15.0,fr,39492,10,1669951,1,1,Active Shallow Crust,0.0,89.98862,-90.0,11/23/0508 +5.10106,45.42736,1375,5,29,21,28,18,3.85,15.0,fr,39493,27,1669957,1,1,Active Shallow Crust,0.0,89.98998,0.0,05/29/1375 +5.10106,45.42736,235,3,3,18,31,40,3.85,27.5,fr,39494,4,1669958,1,1,Active Shallow Crust,0.0,89.98998,0.0,03/03/0235 +5.10106,45.42736,6479,5,1,5,4,9,3.85,15.0,fr,39495,129,1669966,1,1,Active Shallow Crust,128.8954,89.99499,0.0,05/01/6479 +5.10106,45.42736,8752,2,7,0,4,48,3.95,5.0,fr,39496,175,1669968,1,2,Active Shallow Crust,0.0,89.99107,0.0,02/07/8752 +5.10106,45.42736,7475,11,28,13,4,14,3.95,5.0,fr,39497,149,1669968,1,2,Active Shallow Crust,0.0,89.99107,0.0,11/28/7475 +5.10106,45.42736,4705,11,18,4,51,20,3.95,5.0,fr,39498,94,1669977,1,2,Active Shallow Crust,128.9016,89.9933,0.0,11/18/4705 +5.10106,45.42736,6058,11,12,9,35,41,3.95,5.0,fr,39499,121,1669977,1,2,Active Shallow Crust,128.9016,89.9933,0.0,11/12/6058 +5.10106,45.42736,9627,6,29,11,15,24,4.05,15.0,fr,39500,192,1669981,1,2,Active Shallow Crust,0.0,89.98806,0.0,06/29/9627 +5.10106,45.42736,7079,1,22,19,54,20,4.05,15.0,fr,39501,141,1669981,1,2,Active Shallow Crust,0.0,89.98806,0.0,01/22/7079 +5.10106,45.42736,7074,6,20,19,46,0,4.05,27.5,fr,39502,141,1669991,1,1,Active Shallow Crust,128.8905,89.99403,0.0,06/20/7074 +5.10106,45.42736,7499,5,16,10,30,45,4.25,5.0,fr,39503,149,1670010,1,1,Active Shallow Crust,0.0,89.99041,-90.0,05/16/7499 +5.10106,45.42736,3160,9,26,18,51,22,4.45,5.0,fr,39504,63,1670031,1,1,Active Shallow Crust,240.0051,57.99436,0.0,09/26/3160 +5.10106,45.42736,7585,7,20,18,4,45,4.55,15.0,fr,39505,151,1670041,1,1,Active Shallow Crust,0.0,89.99105,0.0,07/20/7585 +5.10106,45.42736,414,6,25,1,23,16,4.85,5.0,fr,39506,8,1670076,1,1,Active Shallow Crust,0.0,89.99049,0.0,06/25/0414 +5.10106,45.42736,9296,11,7,15,28,13,5.05,5.0,fr,39507,185,1670100,1,1,Active Shallow Crust,0.0,89.98993,0.0,11/07/9296 +3.30582,46.33867,1940,12,17,3,29,35,3.55,5.0,fr,39508,38,1670400,1,1,Active Shallow Crust,0.0,89.98956,0.0,12/17/1940 +3.30582,46.33867,7865,7,4,3,37,33,3.55,15.0,fr,39509,157,1670401,1,1,Active Shallow Crust,0.0,89.98956,0.0,07/04/7865 +3.30582,46.33867,7033,10,10,20,12,20,3.85,5.0,fr,39510,140,1670439,1,1,Active Shallow Crust,240.0111,57.99804,0.0,10/10/7033 +3.30582,46.33867,8941,5,6,19,32,15,4.45,5.0,fr,39511,178,1670508,1,1,Active Shallow Crust,0.0,89.99012,0.0,05/06/8941 +3.30582,46.33867,5380,1,2,9,51,18,4.45,5.0,fr,39512,107,1670517,1,1,Active Shallow Crust,128.892,89.99383,0.0,01/02/5380 +3.30582,46.33867,920,9,4,23,7,0,4.75,5.0,fr,39513,18,1670544,1,1,Active Shallow Crust,0.0,89.99038,0.0,09/04/0920 +1.22328,42.46707,2102,5,18,15,37,11,3.55,5.0,fr,39514,42,1670880,1,2,Active Shallow Crust,0.0,89.9907,0.0,05/18/2102 +1.22328,42.46707,5476,4,1,8,38,41,3.55,5.0,fr,39515,109,1670880,1,2,Active Shallow Crust,0.0,89.9907,0.0,04/01/5476 +1.22328,42.46707,8791,6,1,5,51,27,3.55,27.5,fr,39516,175,1670882,1,2,Active Shallow Crust,0.0,89.9907,0.0,06/01/8791 +1.22328,42.46707,3902,5,16,4,10,57,3.55,27.5,fr,39517,78,1670882,1,2,Active Shallow Crust,0.0,89.9907,0.0,05/16/3902 +1.22328,42.46707,1384,1,25,9,34,41,3.55,5.0,fr,39518,27,1670889,1,1,Active Shallow Crust,128.8965,89.99349,0.0,01/25/1384 +1.22328,42.46707,5920,2,13,3,19,43,3.65,5.0,fr,39519,118,1670892,1,1,Active Shallow Crust,0.0,89.99006,0.0,02/13/5920 +1.22328,42.46707,9094,4,14,8,50,27,3.65,15.0,fr,39520,181,1670893,1,1,Active Shallow Crust,0.0,89.99006,0.0,04/14/9094 +1.22328,42.46707,8907,8,11,19,0,53,3.65,27.5,fr,39521,178,1670894,1,2,Active Shallow Crust,0.0,89.99006,0.0,08/11/8907 +1.22328,42.46707,3706,5,25,1,45,28,3.65,27.5,fr,39522,74,1670894,1,2,Active Shallow Crust,0.0,89.99006,0.0,05/25/3706 +1.22328,42.46707,1765,7,20,8,17,24,3.65,5.0,fr,39523,35,1670895,1,1,Active Shallow Crust,240.001,58.01286,0.0,07/20/1765 +1.22328,42.46707,8992,2,29,8,51,34,3.65,15.0,fr,39524,179,1670896,1,1,Active Shallow Crust,240.001,58.01286,0.0,02/29/8992 +1.22328,42.46707,7077,8,8,5,45,44,3.75,5.0,fr,39525,141,1670904,1,2,Active Shallow Crust,0.0,89.98966,0.0,08/08/7077 +1.22328,42.46707,1058,5,28,13,37,52,3.75,5.0,fr,39526,21,1670904,1,2,Active Shallow Crust,0.0,89.98966,0.0,05/28/1058 +1.22328,42.46707,6755,4,10,0,28,55,3.75,5.0,fr,39527,135,1670907,1,2,Active Shallow Crust,240.0081,58.01725,0.0,04/10/6755 +1.22328,42.46707,4111,9,16,17,30,27,3.75,5.0,fr,39528,82,1670907,1,2,Active Shallow Crust,240.0081,58.01725,0.0,09/16/4111 +1.22328,42.46707,9943,6,27,11,53,46,3.75,5.0,fr,39529,198,1670910,1,2,Active Shallow Crust,0.0,89.98954,-90.0,06/27/9943 +1.22328,42.46707,7462,4,7,22,24,25,3.75,5.0,fr,39530,149,1670910,1,2,Active Shallow Crust,0.0,89.98954,-90.0,04/07/7462 +1.22328,42.46707,6918,8,5,0,50,33,3.75,15.0,fr,39531,138,1670914,1,1,Active Shallow Crust,128.8967,89.96742,0.0,08/05/6918 +1.22328,42.46707,2556,3,31,5,0,55,3.85,5.0,fr,39532,51,1670916,1,1,Active Shallow Crust,0.0,89.98947,0.0,03/31/2556 +1.22328,42.46707,1570,10,10,5,5,22,3.85,15.0,fr,39533,31,1670917,1,1,Active Shallow Crust,0.0,89.98947,0.0,10/10/1570 +1.22328,42.46707,8528,2,18,22,16,34,3.95,5.0,fr,39534,170,1670928,1,1,Active Shallow Crust,0.0,89.98944,0.0,02/18/8528 +1.22328,42.46707,3486,7,25,3,59,13,4.05,5.0,fr,39535,69,1670940,1,2,Active Shallow Crust,0.0,89.98954,0.0,07/25/3486 +1.22328,42.46707,6045,12,7,10,8,46,4.05,5.0,fr,39536,120,1670940,1,2,Active Shallow Crust,0.0,89.98954,0.0,12/07/6045 +1.22328,42.46707,1165,4,4,0,55,0,4.05,15.0,fr,39537,23,1670941,1,1,Active Shallow Crust,0.0,89.98954,0.0,04/04/1165 +1.22328,42.46707,5595,4,10,0,0,53,4.15,5.0,fr,39538,111,1670952,1,1,Active Shallow Crust,0.0,89.98975,0.0,04/10/5595 +1.22328,42.46707,3949,10,30,7,14,20,4.25,15.0,fr,39539,78,1670965,1,1,Active Shallow Crust,0.0,89.99003,0.0,10/30/3949 +1.22328,42.46707,8037,9,18,20,58,34,4.45,5.0,fr,39540,160,1670988,1,1,Active Shallow Crust,0.0,89.9901,0.0,09/18/8037 +1.22328,42.46707,4796,2,18,22,16,25,4.55,15.0,fr,39541,95,1671010,1,1,Active Shallow Crust,128.8949,89.98583,0.0,02/18/4796 +1.22328,42.46707,8404,1,3,2,55,39,5.25,15.0,fr,39542,168,1671085,1,1,Active Shallow Crust,0.0,89.99001,0.0,01/03/8404 +1.22328,42.46707,3610,7,13,11,49,21,5.45,5.0,fr,39543,72,1671108,1,1,Active Shallow Crust,0.0,89.98998,0.0,07/13/3610 +1.22328,42.46707,3006,12,31,21,49,52,5.45,15.0,fr,39544,60,1671112,1,1,Active Shallow Crust,240.0257,57.99791,0.0,12/31/3006 +1.22328,42.46707,5896,8,31,5,0,43,5.75,5.0,fr,39545,117,1671144,1,1,Active Shallow Crust,0.0,89.98995,0.0,08/31/5896 +-2.03988,49.49637,113,3,14,5,26,12,3.55,5.0,fr,39546,2,1671366,1,1,Active Shallow Crust,0.0,89.99006,-90.0,03/14/0113 +-2.03988,49.49637,3519,2,22,16,50,21,3.65,5.0,fr,39547,70,1671372,1,1,Active Shallow Crust,0.0,89.99124,0.0,02/22/3519 +-2.03988,49.49637,6747,4,14,23,5,31,3.85,15.0,fr,39548,134,1671397,1,1,Active Shallow Crust,0.0,89.99072,0.0,04/14/6747 +-2.03988,49.49637,7223,2,1,8,19,47,3.85,15.0,fr,39549,144,1671406,1,1,Active Shallow Crust,128.8955,89.9942,0.0,02/01/7223 +-2.03988,49.49637,8013,12,5,13,53,40,4.25,15.0,fr,39550,160,1671445,1,1,Active Shallow Crust,0.0,89.98976,0.0,12/05/8013 +-2.03988,49.49637,7156,2,10,18,17,42,4.65,5.0,fr,39551,143,1671492,1,1,Active Shallow Crust,0.0,89.98985,0.0,02/10/7156 +0.71203,42.55584,7523,5,14,12,4,40,3.55,5.0,fr,39552,150,1671840,1,4,Active Shallow Crust,0.0,89.98978,0.0,05/14/7523 +0.71203,42.55584,3412,10,19,4,13,11,3.55,5.0,fr,39553,68,1671840,1,4,Active Shallow Crust,0.0,89.98978,0.0,10/19/3412 +0.71203,42.55584,2567,5,23,8,30,48,3.55,5.0,fr,39554,51,1671840,1,4,Active Shallow Crust,0.0,89.98978,0.0,05/23/2567 +0.71203,42.55584,411,8,7,9,57,56,3.55,5.0,fr,39555,8,1671840,1,4,Active Shallow Crust,0.0,89.98978,0.0,08/07/0411 +0.71203,42.55584,3341,9,26,3,17,15,3.55,15.0,fr,39556,66,1671841,1,1,Active Shallow Crust,0.0,89.98978,0.0,09/26/3341 +0.71203,42.55584,4099,2,15,23,50,39,3.55,5.0,fr,39557,81,1671843,1,1,Active Shallow Crust,240.0118,57.99818,0.0,02/15/4099 +0.71203,42.55584,504,1,28,6,17,51,3.55,27.5,fr,39558,10,1671845,1,1,Active Shallow Crust,240.0118,57.99809,0.0,01/28/0504 +0.71203,42.55584,9537,3,21,18,38,45,3.55,15.0,fr,39559,190,1671847,1,1,Active Shallow Crust,0.0,89.98967,-90.0,03/21/9537 +0.71203,42.55584,9700,6,9,16,5,14,3.55,15.0,fr,39560,193,1671850,1,1,Active Shallow Crust,128.8963,89.99397,0.0,06/09/9700 +0.71203,42.55584,8559,5,27,13,34,55,3.65,5.0,fr,39561,171,1671852,1,5,Active Shallow Crust,0.0,89.99007,0.0,05/27/8559 +0.71203,42.55584,4742,8,29,16,37,53,3.65,5.0,fr,39562,94,1671852,1,5,Active Shallow Crust,0.0,89.99007,0.0,08/29/4742 +0.71203,42.55584,2710,8,10,19,2,28,3.65,5.0,fr,39563,54,1671852,1,5,Active Shallow Crust,0.0,89.99007,0.0,08/10/2710 +0.71203,42.55584,5813,2,8,13,28,7,3.65,5.0,fr,39564,116,1671852,1,5,Active Shallow Crust,0.0,89.99007,0.0,02/08/5813 +0.71203,42.55584,5890,9,9,6,38,23,3.65,5.0,fr,39565,117,1671852,1,5,Active Shallow Crust,0.0,89.99007,0.0,09/09/5890 +0.71203,42.55584,7024,4,11,14,51,14,3.65,27.5,fr,39566,140,1671854,1,2,Active Shallow Crust,0.0,89.99007,0.0,04/11/7024 +0.71203,42.55584,7690,1,22,11,38,13,3.65,27.5,fr,39567,153,1671854,1,2,Active Shallow Crust,0.0,89.99007,0.0,01/22/7690 +0.71203,42.55584,2153,2,8,12,57,42,3.65,5.0,fr,39568,43,1671855,1,1,Active Shallow Crust,240.0005,58.01287,0.0,02/08/2153 +0.71203,42.55584,1136,11,26,17,35,1,3.65,5.0,fr,39569,22,1671861,1,2,Active Shallow Crust,128.9008,89.96352,0.0,11/26/1136 +0.71203,42.55584,112,6,18,5,40,23,3.65,5.0,fr,39570,2,1671861,1,2,Active Shallow Crust,128.9008,89.96352,0.0,06/18/0112 +0.71203,42.55584,1202,5,5,5,20,31,3.65,15.0,fr,39571,24,1671862,1,1,Active Shallow Crust,128.9008,89.96352,0.0,05/05/1202 +0.71203,42.55584,3982,12,8,5,57,31,3.75,5.0,fr,39572,79,1671864,1,4,Active Shallow Crust,0.0,89.98968,0.0,12/08/3982 +0.71203,42.55584,525,7,2,2,39,15,3.75,5.0,fr,39573,10,1671864,1,4,Active Shallow Crust,0.0,89.98968,0.0,07/02/0525 +0.71203,42.55584,8143,9,18,6,45,55,3.75,5.0,fr,39574,162,1671864,1,4,Active Shallow Crust,0.0,89.98968,0.0,09/18/8143 +0.71203,42.55584,80,6,19,11,55,50,3.75,5.0,fr,39575,1,1671864,1,4,Active Shallow Crust,0.0,89.98968,0.0,06/19/0080 +0.71203,42.55584,2873,6,18,1,54,20,3.75,15.0,fr,39576,57,1671865,1,2,Active Shallow Crust,0.0,89.98968,0.0,06/18/2873 +0.71203,42.55584,1627,2,20,17,57,2,3.75,15.0,fr,39577,32,1671865,1,2,Active Shallow Crust,0.0,89.98968,0.0,02/20/1627 +0.71203,42.55584,7940,7,16,0,3,39,3.75,5.0,fr,39578,158,1671867,1,1,Active Shallow Crust,240.0079,58.01748,0.0,07/16/7940 +0.71203,42.55584,9867,2,4,21,56,49,3.85,5.0,fr,39579,197,1671876,1,2,Active Shallow Crust,0.0,89.99014,0.0,02/04/9867 +0.71203,42.55584,3934,7,17,14,58,48,3.85,5.0,fr,39580,78,1671876,1,2,Active Shallow Crust,0.0,89.99014,0.0,07/17/3934 +0.71203,42.55584,4118,8,6,10,59,51,3.85,5.0,fr,39581,82,1671879,1,1,Active Shallow Crust,240.0103,57.99768,0.0,08/06/4118 +0.71203,42.55584,4331,12,12,23,36,3,3.85,5.0,fr,39582,86,1671882,1,1,Active Shallow Crust,0.0,89.99003,-90.0,12/12/4331 +0.71203,42.55584,7641,1,7,19,0,9,3.95,5.0,fr,39583,152,1671891,1,1,Active Shallow Crust,240.0194,58.00479,0.0,01/07/7641 +0.71203,42.55584,5775,9,23,19,46,58,4.05,5.0,fr,39584,115,1671906,1,1,Active Shallow Crust,0.0,89.98997,-90.0,09/23/5775 +0.71203,42.55584,2028,8,14,22,14,43,4.15,5.0,fr,39585,40,1671912,1,2,Active Shallow Crust,0.0,89.99023,0.0,08/14/2028 +0.71203,42.55584,6385,9,12,7,19,0,4.15,5.0,fr,39586,127,1671912,1,2,Active Shallow Crust,0.0,89.99023,0.0,09/12/6385 +0.71203,42.55584,4410,5,21,11,9,2,4.15,15.0,fr,39587,88,1671913,1,1,Active Shallow Crust,0.0,89.99023,0.0,05/21/4410 +0.71203,42.55584,6627,4,20,17,19,40,4.15,27.5,fr,39588,132,1671914,1,2,Active Shallow Crust,0.0,89.99023,0.0,04/20/6627 +0.71203,42.55584,6848,1,2,4,36,6,4.15,27.5,fr,39589,136,1671914,1,2,Active Shallow Crust,0.0,89.99023,0.0,01/02/6848 +0.71203,42.55584,4008,9,21,18,20,25,4.25,5.0,fr,39590,80,1671924,1,4,Active Shallow Crust,0.0,89.99004,0.0,09/21/4008 +0.71203,42.55584,2655,4,4,14,44,58,4.25,5.0,fr,39591,53,1671924,1,4,Active Shallow Crust,0.0,89.99004,0.0,04/04/2655 +0.71203,42.55584,3981,4,8,23,19,43,4.25,5.0,fr,39592,79,1671924,1,4,Active Shallow Crust,0.0,89.99004,0.0,04/08/3981 +0.71203,42.55584,5482,4,10,16,30,25,4.25,5.0,fr,39593,109,1671924,1,4,Active Shallow Crust,0.0,89.99004,0.0,04/10/5482 +0.71203,42.55584,1903,2,17,22,39,13,4.25,5.0,fr,39594,38,1671933,1,2,Active Shallow Crust,128.8949,89.98094,0.0,02/17/1903 +0.71203,42.55584,4552,12,7,10,30,5,4.25,5.0,fr,39595,91,1671933,1,2,Active Shallow Crust,128.8949,89.98094,0.0,12/07/4552 +0.71203,42.55584,3739,11,21,5,37,47,4.45,5.0,fr,39596,74,1671948,1,1,Active Shallow Crust,0.0,89.99011,0.0,11/21/3739 +0.71203,42.55584,6935,4,10,17,50,14,4.55,5.0,fr,39597,138,1671969,1,1,Active Shallow Crust,128.8948,89.98583,0.0,04/10/6935 +0.71203,42.55584,183,2,21,13,12,34,4.85,27.5,fr,39598,3,1672001,1,1,Active Shallow Crust,240.0156,58.00202,0.0,02/21/0183 +-5.49505,48.09405,1727,8,17,5,56,9,3.55,5.0,fr,39599,34,1672803,1,1,Active Shallow Crust,240.0123,57.99819,0.0,08/17/1727 +-5.49505,48.09405,3330,7,16,7,9,54,3.65,15.0,fr,39600,66,1672813,1,1,Active Shallow Crust,0.0,89.98799,0.0,07/16/3330 +-5.49505,48.09405,5361,11,25,11,27,10,3.75,27.5,fr,39601,107,1672829,1,1,Active Shallow Crust,240.0083,58.01779,0.0,11/25/5361 +-5.49505,48.09405,1789,10,13,16,14,56,3.95,15.0,fr,39602,35,1672852,1,1,Active Shallow Crust,240.0198,58.00545,0.0,10/13/1789 +-5.49505,48.09405,3759,2,23,23,27,31,4.35,5.0,fr,39603,75,1672896,1,1,Active Shallow Crust,0.0,89.98927,0.0,02/23/3759 +-5.49505,48.09405,9738,2,18,9,28,55,5.05,5.0,fr,39604,194,1672980,1,1,Active Shallow Crust,0.0,89.99042,0.0,02/18/9738 +3.61261,43.50282,9693,2,27,0,59,59,3.75,5.0,fr,39605,193,1673307,1,1,Active Shallow Crust,240.008,58.01735,0.0,02/27/9693 +3.61261,43.50282,6071,1,5,14,35,27,4.05,5.0,fr,39606,121,1673340,1,1,Active Shallow Crust,0.0,89.98972,0.0,01/05/6071 +2.73829,42.57111,3189,6,8,16,0,57,3.55,5.0,fr,39607,63,1673760,1,4,Active Shallow Crust,0.0,89.98886,0.0,06/08/3189 +2.73829,42.57111,4450,6,30,7,51,4,3.55,5.0,fr,39608,88,1673760,1,4,Active Shallow Crust,0.0,89.98886,0.0,06/30/4450 +2.73829,42.57111,9314,1,31,7,57,24,3.55,5.0,fr,39609,186,1673760,1,4,Active Shallow Crust,0.0,89.98886,0.0,01/31/9314 +2.73829,42.57111,4070,11,27,9,22,55,3.55,5.0,fr,39610,81,1673760,1,4,Active Shallow Crust,0.0,89.98886,0.0,11/27/4070 +2.73829,42.57111,7220,1,7,13,35,40,3.55,15.0,fr,39611,144,1673764,1,1,Active Shallow Crust,240.012,57.99818,0.0,01/07/7220 +2.73829,42.57111,514,6,30,14,24,26,3.65,5.0,fr,39612,10,1673772,1,3,Active Shallow Crust,0.0,89.99007,0.0,06/30/0514 +2.73829,42.57111,6663,11,18,9,37,47,3.65,5.0,fr,39613,133,1673772,1,3,Active Shallow Crust,0.0,89.99007,0.0,11/18/6663 +2.73829,42.57111,6869,6,23,19,58,12,3.65,5.0,fr,39614,137,1673772,1,3,Active Shallow Crust,0.0,89.99007,0.0,06/23/6869 +2.73829,42.57111,8,4,6,12,50,37,3.65,15.0,fr,39615,0,1673773,1,2,Active Shallow Crust,0.0,89.99007,0.0,04/06/0008 +2.73829,42.57111,3961,3,28,18,59,44,3.65,15.0,fr,39616,79,1673773,1,2,Active Shallow Crust,0.0,89.99007,0.0,03/28/3961 +2.73829,42.57111,2211,9,13,19,16,20,3.65,5.0,fr,39617,44,1673775,1,1,Active Shallow Crust,240.0007,58.0134,0.0,09/13/2211 +2.73829,42.57111,15,6,24,13,7,40,3.75,5.0,fr,39618,0,1673784,1,3,Active Shallow Crust,0.0,89.99115,0.0,06/24/0015 +2.73829,42.57111,7255,1,9,13,2,10,3.75,5.0,fr,39619,145,1673784,1,3,Active Shallow Crust,0.0,89.99115,0.0,01/09/7255 +2.73829,42.57111,6561,3,30,7,8,54,3.75,5.0,fr,39620,131,1673784,1,3,Active Shallow Crust,0.0,89.99115,0.0,03/30/6561 +2.73829,42.57111,8101,1,23,13,42,23,3.75,15.0,fr,39621,162,1673785,1,1,Active Shallow Crust,0.0,89.99115,0.0,01/23/8101 +2.73829,42.57111,7215,3,30,19,37,41,3.75,5.0,fr,39622,144,1673793,1,1,Active Shallow Crust,128.897,89.96712,0.0,03/30/7215 +2.73829,42.57111,8611,2,8,8,24,25,3.85,5.0,fr,39623,172,1673802,1,1,Active Shallow Crust,0.0,89.98936,-90.0,02/08/8611 +2.73829,42.57111,4129,5,12,2,27,7,3.85,15.0,fr,39624,82,1673803,1,1,Active Shallow Crust,0.0,89.98936,-90.0,05/12/4129 +2.73829,42.57111,8814,3,10,4,58,3,3.95,5.0,fr,39625,176,1673808,1,2,Active Shallow Crust,0.0,89.99063,0.0,03/10/8814 +2.73829,42.57111,4292,7,7,23,44,12,3.95,5.0,fr,39626,85,1673808,1,2,Active Shallow Crust,0.0,89.99063,0.0,07/07/4292 +2.73829,42.57111,543,8,7,14,35,38,3.95,15.0,fr,39627,10,1673812,1,1,Active Shallow Crust,240.019,58.00463,0.0,08/07/0543 +2.73829,42.57111,446,7,17,23,35,30,4.05,5.0,fr,39628,8,1673820,1,1,Active Shallow Crust,0.0,89.98956,0.0,07/17/0446 +2.73829,42.57111,6857,2,5,12,16,54,4.15,15.0,fr,39629,137,1673833,1,1,Active Shallow Crust,0.0,89.99069,0.0,02/05/6857 +2.73829,42.57111,6323,10,10,0,3,45,4.45,5.0,fr,39630,126,1673868,1,2,Active Shallow Crust,0.0,89.98946,0.0,10/10/6323 +2.73829,42.57111,7240,10,21,6,26,56,4.45,5.0,fr,39631,144,1673868,1,2,Active Shallow Crust,0.0,89.98946,0.0,10/21/7240 +2.73829,42.57111,9538,7,31,11,19,28,4.45,5.0,fr,39632,190,1673877,1,1,Active Shallow Crust,128.8932,89.99342,0.0,07/31/9538 +2.73829,42.57111,2216,10,20,20,43,43,4.75,15.0,fr,39633,44,1673905,1,1,Active Shallow Crust,0.0,89.98974,0.0,10/20/2216 +2.73829,42.57111,323,3,15,11,15,59,4.85,5.0,fr,39634,6,1673916,1,1,Active Shallow Crust,0.0,89.99002,0.0,03/15/0323 +2.73829,42.57111,9202,7,13,3,45,58,4.85,15.0,fr,39635,184,1673917,1,1,Active Shallow Crust,0.0,89.99002,0.0,07/13/9202 +2.73829,42.57111,2350,1,14,0,31,4,5.05,5.0,fr,39636,46,1673943,1,1,Active Shallow Crust,240.0202,57.99722,0.0,01/14/2350 +2.738287,42.57111,4695,2,17,3,16,37,6.35,7.567806,fr,39637,93,1674105,1,1,Active Shallow Crust,128.851,89.98981,0.0,02/17/4695 +6.7049,46.41451,1817,12,7,18,51,53,3.55,5.0,fr,39638,36,1674240,1,8,Active Shallow Crust,0.0,89.99305,0.0,12/07/1817 +6.7049,46.41451,7806,10,24,16,33,11,3.55,5.0,fr,39639,156,1674240,1,8,Active Shallow Crust,0.0,89.99305,0.0,10/24/7806 +6.7049,46.41451,8248,1,21,8,17,46,3.55,5.0,fr,39640,164,1674240,1,8,Active Shallow Crust,0.0,89.99305,0.0,01/21/8248 +6.7049,46.41451,3031,9,4,6,2,5,3.55,5.0,fr,39641,60,1674240,1,8,Active Shallow Crust,0.0,89.99305,0.0,09/04/3031 +6.7049,46.41451,8712,2,28,6,48,12,3.55,5.0,fr,39642,174,1674240,1,8,Active Shallow Crust,0.0,89.99305,0.0,02/28/8712 +6.7049,46.41451,2023,2,9,17,10,16,3.55,5.0,fr,39643,40,1674240,1,8,Active Shallow Crust,0.0,89.99305,0.0,02/09/2023 +6.7049,46.41451,2626,6,19,22,11,24,3.55,5.0,fr,39644,52,1674240,1,8,Active Shallow Crust,0.0,89.99305,0.0,06/19/2626 +6.7049,46.41451,5845,7,14,3,24,7,3.55,5.0,fr,39645,116,1674240,1,8,Active Shallow Crust,0.0,89.99305,0.0,07/14/5845 +6.7049,46.41451,8724,2,3,19,36,43,3.55,15.0,fr,39646,174,1674241,1,2,Active Shallow Crust,0.0,89.99305,0.0,02/03/8724 +6.7049,46.41451,2132,4,29,3,16,36,3.55,15.0,fr,39647,42,1674241,1,2,Active Shallow Crust,0.0,89.99305,0.0,04/29/2132 +6.7049,46.41451,3742,3,4,2,43,3,3.55,27.5,fr,39648,74,1674242,1,3,Active Shallow Crust,0.0,89.99305,0.0,03/04/3742 +6.7049,46.41451,114,5,23,20,33,6,3.55,27.5,fr,39649,2,1674242,1,3,Active Shallow Crust,0.0,89.99305,0.0,05/23/0114 +6.7049,46.41451,6675,9,2,21,19,32,3.55,27.5,fr,39650,133,1674242,1,3,Active Shallow Crust,0.0,89.99305,0.0,09/02/6675 +6.7049,46.41451,8940,2,8,23,57,57,3.55,27.5,fr,39651,178,1674245,1,1,Active Shallow Crust,240.0122,57.99845,0.0,02/08/8940 +6.7049,46.41451,8736,5,2,19,16,48,3.55,5.0,fr,39652,174,1674246,1,1,Active Shallow Crust,0.0,89.99297,-90.0,05/02/8736 +6.7049,46.41451,5457,8,4,18,19,56,3.55,27.5,fr,39653,109,1674248,1,1,Active Shallow Crust,0.0,89.99297,-90.0,08/04/5457 +6.7049,46.41451,9531,6,2,20,2,59,3.55,5.0,fr,39654,190,1674249,1,2,Active Shallow Crust,128.8967,89.99305,0.0,06/02/9531 +6.7049,46.41451,3346,4,30,15,0,59,3.55,5.0,fr,39655,66,1674249,1,2,Active Shallow Crust,128.8967,89.99305,0.0,04/30/3346 +6.7049,46.41451,5339,10,25,2,27,11,3.65,5.0,fr,39656,106,1674252,1,9,Active Shallow Crust,0.0,89.98761,0.0,10/25/5339 +6.7049,46.41451,4307,8,29,21,46,36,3.65,5.0,fr,39657,86,1674252,1,9,Active Shallow Crust,0.0,89.98761,0.0,08/29/4307 +6.7049,46.41451,9738,3,4,2,37,57,3.65,5.0,fr,39658,194,1674252,1,9,Active Shallow Crust,0.0,89.98761,0.0,03/04/9738 +6.7049,46.41451,4420,4,21,15,56,7,3.65,5.0,fr,39659,88,1674252,1,9,Active Shallow Crust,0.0,89.98761,0.0,04/21/4420 +6.7049,46.41451,523,11,9,22,56,11,3.65,5.0,fr,39660,10,1674252,1,9,Active Shallow Crust,0.0,89.98761,0.0,11/09/0523 +6.7049,46.41451,8772,9,2,10,5,56,3.65,5.0,fr,39661,175,1674252,1,9,Active Shallow Crust,0.0,89.98761,0.0,09/02/8772 +6.7049,46.41451,1104,5,20,11,43,59,3.65,5.0,fr,39662,22,1674252,1,9,Active Shallow Crust,0.0,89.98761,0.0,05/20/1104 +6.7049,46.41451,663,6,22,2,21,24,3.65,5.0,fr,39663,13,1674252,1,9,Active Shallow Crust,0.0,89.98761,0.0,06/22/0663 +6.7049,46.41451,7631,12,17,4,56,56,3.65,5.0,fr,39664,152,1674252,1,9,Active Shallow Crust,0.0,89.98761,0.0,12/17/7631 +6.7049,46.41451,1243,11,1,6,12,20,3.65,15.0,fr,39665,24,1674253,1,2,Active Shallow Crust,0.0,89.98761,0.0,11/01/1243 +6.7049,46.41451,831,2,23,23,39,31,3.65,15.0,fr,39666,16,1674253,1,2,Active Shallow Crust,0.0,89.98761,0.0,02/23/0831 +6.7049,46.41451,8636,9,6,8,3,27,3.65,5.0,fr,39667,172,1674261,1,1,Active Shallow Crust,128.8994,89.96352,0.0,09/06/8636 +6.7049,46.41451,2904,8,29,11,44,12,3.65,15.0,fr,39668,58,1674262,1,1,Active Shallow Crust,128.8994,89.96352,0.0,08/29/2904 +6.7049,46.41451,5265,7,16,5,23,27,3.65,27.5,fr,39669,105,1674263,1,1,Active Shallow Crust,128.8994,89.96352,0.0,07/16/5265 +6.7049,46.41451,5629,9,4,21,9,19,3.75,5.0,fr,39670,112,1674264,1,1,Active Shallow Crust,0.0,89.98895,0.0,09/04/5629 +6.7049,46.41451,4775,5,5,16,48,43,3.75,15.0,fr,39671,95,1674265,1,1,Active Shallow Crust,0.0,89.98895,0.0,05/05/4775 +6.7049,46.41451,7748,5,5,21,41,14,3.75,27.5,fr,39672,154,1674266,1,2,Active Shallow Crust,0.0,89.98895,0.0,05/05/7748 +6.7049,46.41451,4729,11,9,20,1,13,3.75,27.5,fr,39673,94,1674266,1,2,Active Shallow Crust,0.0,89.98895,0.0,11/09/4729 +6.7049,46.41451,9337,11,5,12,15,7,3.85,5.0,fr,39674,186,1674276,1,4,Active Shallow Crust,0.0,89.99016,0.0,11/05/9337 +6.7049,46.41451,5556,9,2,19,9,25,3.85,5.0,fr,39675,111,1674276,1,4,Active Shallow Crust,0.0,89.99016,0.0,09/02/5556 +6.7049,46.41451,5053,11,7,12,54,9,3.85,5.0,fr,39676,101,1674276,1,4,Active Shallow Crust,0.0,89.99016,0.0,11/07/5053 +6.7049,46.41451,932,5,31,19,8,30,3.85,5.0,fr,39677,18,1674276,1,4,Active Shallow Crust,0.0,89.99016,0.0,05/31/0932 +6.7049,46.41451,1020,9,15,13,54,56,3.85,15.0,fr,39678,20,1674277,1,1,Active Shallow Crust,0.0,89.99016,0.0,09/15/1020 +6.7049,46.41451,9366,1,26,14,25,8,3.85,5.0,fr,39679,187,1674282,1,2,Active Shallow Crust,0.0,89.99004,-90.0,01/26/9366 +6.7049,46.41451,4140,10,25,17,6,5,3.85,5.0,fr,39680,82,1674282,1,2,Active Shallow Crust,0.0,89.99004,-90.0,10/25/4140 +6.7049,46.41451,3217,10,23,10,15,7,3.85,5.0,fr,39681,64,1674285,1,1,Active Shallow Crust,128.8962,89.99261,0.0,10/23/3217 +6.7049,46.41451,2569,11,8,22,1,57,3.95,5.0,fr,39682,51,1674288,1,3,Active Shallow Crust,0.0,89.99123,0.0,11/08/2569 +6.7049,46.41451,8929,8,29,10,37,44,3.95,5.0,fr,39683,178,1674288,1,3,Active Shallow Crust,0.0,89.99123,0.0,08/29/8929 +6.7049,46.41451,1107,3,31,5,27,39,3.95,5.0,fr,39684,22,1674288,1,3,Active Shallow Crust,0.0,89.99123,0.0,03/31/1107 +6.7049,46.41451,5842,8,26,6,25,50,3.95,27.5,fr,39685,116,1674293,1,1,Active Shallow Crust,240.0197,58.00538,0.0,08/26/5842 +6.7049,46.41451,1200,5,3,8,13,33,3.95,5.0,fr,39686,23,1674294,1,1,Active Shallow Crust,0.0,89.99113,-90.0,05/03/1200 +6.7049,46.41451,4962,2,11,1,7,6,3.95,5.0,fr,39687,99,1674297,1,1,Active Shallow Crust,128.8995,89.99342,0.0,02/11/4962 +6.7049,46.41451,5979,9,29,12,10,17,4.05,5.0,fr,39688,119,1674300,1,1,Active Shallow Crust,0.0,89.98827,0.0,09/29/5979 +6.7049,46.41451,7786,4,25,15,32,18,4.05,15.0,fr,39689,155,1674301,1,1,Active Shallow Crust,0.0,89.98827,0.0,04/25/7786 +6.7049,46.41451,7094,7,23,23,59,30,4.05,5.0,fr,39690,141,1674303,1,1,Active Shallow Crust,240.0064,58.00575,0.0,07/23/7094 +6.7049,46.41451,9112,12,10,7,12,15,4.05,27.5,fr,39691,182,1674305,1,2,Active Shallow Crust,240.0064,58.00573,0.0,12/10/9112 +6.7049,46.41451,5466,8,4,8,38,51,4.05,27.5,fr,39692,109,1674305,1,2,Active Shallow Crust,240.0064,58.00573,0.0,08/04/5466 +6.7049,46.41451,2828,7,12,21,50,28,4.15,5.0,fr,39693,56,1674321,1,1,Active Shallow Crust,128.8972,89.99477,0.0,07/12/2828 +6.7049,46.41451,2091,11,26,1,45,21,4.15,15.0,fr,39694,41,1674322,1,1,Active Shallow Crust,128.8972,89.99477,0.0,11/26/2091 +6.7049,46.41451,1845,6,13,20,5,21,4.25,5.0,fr,39695,36,1674324,1,1,Active Shallow Crust,0.0,89.99068,0.0,06/13/1845 +6.7049,46.41451,4906,12,7,17,52,41,4.35,15.0,fr,39696,98,1674343,1,1,Active Shallow Crust,0.0,89.9888,-90.0,12/07/4906 +6.7049,46.41451,5972,7,19,19,18,40,4.35,5.0,fr,39697,119,1674345,1,1,Active Shallow Crust,128.897,89.98302,0.0,07/19/5972 +6.7049,46.41451,9785,4,27,11,27,11,4.45,5.0,fr,39698,195,1674348,1,2,Active Shallow Crust,0.0,89.99014,0.0,04/27/9785 +6.7049,46.41451,4501,10,16,20,23,15,4.45,5.0,fr,39699,90,1674348,1,2,Active Shallow Crust,0.0,89.99014,0.0,10/16/4501 +6.7049,46.41451,3336,1,10,7,23,41,4.45,27.5,fr,39700,66,1674350,1,2,Active Shallow Crust,0.0,89.99014,0.0,01/10/3336 +6.7049,46.41451,913,5,30,9,34,11,4.45,27.5,fr,39701,18,1674350,1,2,Active Shallow Crust,0.0,89.99014,0.0,05/30/0913 +6.7049,46.41451,6216,8,7,8,48,22,4.45,15.0,fr,39702,124,1674355,1,1,Active Shallow Crust,0.0,89.99002,-90.0,08/07/6216 +6.7049,46.41451,775,10,3,14,6,16,4.45,27.5,fr,39703,15,1674356,1,1,Active Shallow Crust,0.0,89.99002,-90.0,10/03/0775 +6.7049,46.41451,9643,6,2,10,8,31,4.45,5.0,fr,39704,192,1674357,1,1,Active Shallow Crust,128.8929,89.9926,0.0,06/02/9643 +6.7049,46.41451,2191,5,1,20,0,8,4.55,5.0,fr,39705,43,1674363,1,1,Active Shallow Crust,240.0093,57.99736,0.0,05/01/2191 +6.7049,46.41451,2996,2,27,10,50,21,4.65,5.0,fr,39706,59,1674372,1,1,Active Shallow Crust,0.0,89.9902,0.0,02/27/2996 +6.7049,46.41451,5391,10,22,5,51,47,4.75,15.0,fr,39707,107,1674385,1,1,Active Shallow Crust,0.0,89.98952,0.0,10/22/5391 +6.7049,46.41451,4371,12,16,16,5,19,4.75,5.0,fr,39708,87,1674390,1,1,Active Shallow Crust,0.0,89.9894,-90.0,12/16/4371 +6.7049,46.41451,6147,5,13,0,41,2,4.85,15.0,fr,39709,122,1674397,1,1,Active Shallow Crust,0.0,89.99066,0.0,05/13/6147 +6.7049,46.41451,6230,10,30,16,11,18,4.95,5.0,fr,39710,124,1674408,1,1,Active Shallow Crust,0.0,89.99029,0.0,10/30/6230 +6.7049,46.41451,6433,12,3,1,27,51,4.95,15.0,fr,39711,128,1674418,1,1,Active Shallow Crust,128.8901,89.98981,0.0,12/03/6433 +6.7049,46.41451,5995,3,26,23,39,3,5.05,5.0,fr,39712,119,1674420,1,1,Active Shallow Crust,0.0,89.9901,0.0,03/26/5995 +6.7049,46.41451,1034,2,28,20,37,27,5.05,27.5,fr,39713,20,1674422,1,1,Active Shallow Crust,0.0,89.9901,0.0,02/28/1034 +6.7049,46.41451,2484,3,27,10,27,10,5.15,5.0,fr,39714,49,1674435,1,1,Active Shallow Crust,240.0194,58.00002,0.0,03/27/2484 +6.7049,46.41451,4273,4,14,9,25,6,5.35,5.0,fr,39715,85,1674462,1,1,Active Shallow Crust,0.0,89.99026,-90.0,04/14/4273 +2.74936,43.63655,7105,2,18,2,50,46,3.55,15.0,fr,39716,142,1674721,1,2,Active Shallow Crust,0.0,89.98905,0.0,02/18/7105 +2.74936,43.63655,9786,4,11,4,34,30,3.55,15.0,fr,39717,195,1674721,1,2,Active Shallow Crust,0.0,89.98905,0.0,04/11/9786 +2.74936,43.63655,3109,4,19,10,17,57,4.15,5.0,fr,39718,62,1674801,1,1,Active Shallow Crust,128.8977,89.9936,0.0,04/19/3109 +5.39113,43.61818,8843,6,24,23,26,19,3.55,5.0,fr,39719,176,1675200,1,2,Active Shallow Crust,0.0,89.9927,0.0,06/24/8843 +5.39113,43.61818,7614,12,3,6,56,40,3.55,5.0,fr,39720,152,1675200,1,2,Active Shallow Crust,0.0,89.9927,0.0,12/03/7614 +5.39113,43.61818,3989,5,20,17,58,25,3.55,15.0,fr,39721,79,1675204,1,1,Active Shallow Crust,240.0112,57.9982,0.0,05/20/3989 +5.39113,43.61818,6060,7,2,8,56,9,3.55,5.0,fr,39722,121,1675209,1,1,Active Shallow Crust,128.8955,89.99635,0.0,07/02/6060 +5.39113,43.61818,2634,11,24,11,49,37,3.65,5.0,fr,39723,52,1675212,1,2,Active Shallow Crust,0.0,89.98698,0.0,11/24/2634 +5.39113,43.61818,5617,7,6,9,9,16,3.65,5.0,fr,39724,112,1675212,1,2,Active Shallow Crust,0.0,89.98698,0.0,07/06/5617 +5.39113,43.61818,2775,3,25,19,46,34,3.65,15.0,fr,39725,55,1675213,1,1,Active Shallow Crust,0.0,89.98698,0.0,03/25/2775 +5.39113,43.61818,6864,9,30,5,15,9,3.65,5.0,fr,39726,137,1675215,1,1,Active Shallow Crust,240.0006,58.01355,0.0,09/30/6864 +5.39113,43.61818,1078,7,31,1,7,55,3.65,5.0,fr,39727,21,1675218,1,1,Active Shallow Crust,0.0,89.98684,-90.0,07/31/1078 +5.39113,43.61818,9581,7,24,20,59,21,3.65,5.0,fr,39728,191,1675221,1,1,Active Shallow Crust,128.9011,89.96347,0.0,07/24/9581 +5.39113,43.61818,6856,2,29,21,42,48,3.65,15.0,fr,39729,137,1675222,1,1,Active Shallow Crust,128.9011,89.96347,0.0,02/29/6856 +5.39113,43.61818,7254,12,4,1,6,20,3.75,15.0,fr,39730,145,1675228,1,1,Active Shallow Crust,240.0077,58.0186,0.0,12/04/7254 +5.39113,43.61818,8851,10,29,0,12,30,3.75,5.0,fr,39731,177,1675230,1,1,Active Shallow Crust,0.0,89.98827,-90.0,10/29/8851 +5.39113,43.61818,1503,3,13,14,53,17,3.75,15.0,fr,39732,30,1675231,1,1,Active Shallow Crust,0.0,89.98827,-90.0,03/13/1503 +5.39113,43.61818,2741,3,8,13,58,12,3.75,5.0,fr,39733,54,1675233,1,1,Active Shallow Crust,128.8965,89.96744,0.0,03/08/2741 +5.39113,43.61818,3705,12,15,10,43,12,3.85,15.0,fr,39734,74,1675237,1,1,Active Shallow Crust,0.0,89.98966,0.0,12/15/3705 +5.39113,43.61818,9243,6,1,2,47,0,3.85,5.0,fr,39735,184,1675239,1,1,Active Shallow Crust,240.0099,57.99743,0.0,06/01/9243 +5.39113,43.61818,5612,4,27,1,46,23,3.85,15.0,fr,39736,112,1675246,1,1,Active Shallow Crust,128.8966,89.99225,0.0,04/27/5612 +5.39113,43.61818,3748,4,25,11,10,9,3.95,15.0,fr,39737,74,1675249,1,1,Active Shallow Crust,0.0,89.99078,0.0,04/25/3748 +5.39113,43.61818,2235,1,16,21,52,34,3.95,27.5,fr,39738,44,1675253,1,1,Active Shallow Crust,240.0188,58.0044,0.0,01/16/2235 +5.39113,43.61818,2962,6,21,18,34,58,3.95,15.0,fr,39739,59,1675255,1,1,Active Shallow Crust,0.0,89.99068,-90.0,06/21/2962 +5.39113,43.61818,3111,8,20,1,4,1,4.05,5.0,fr,39740,62,1675260,1,1,Active Shallow Crust,0.0,89.99179,0.0,08/20/3111 +5.39113,43.61818,4200,8,5,13,28,43,4.15,5.0,fr,39741,83,1675272,1,1,Active Shallow Crust,0.0,89.98902,0.0,08/05/4200 +5.39113,43.61818,2566,8,13,22,22,45,4.15,15.0,fr,39742,51,1675273,1,1,Active Shallow Crust,0.0,89.98902,0.0,08/13/2566 +5.39113,43.61818,5659,5,17,16,51,57,4.15,5.0,fr,39743,113,1675275,1,1,Active Shallow Crust,240.008,57.99725,0.0,05/17/5659 +5.39113,43.61818,5423,10,2,8,36,7,4.25,27.5,fr,39744,108,1675295,1,1,Active Shallow Crust,128.8943,89.98084,0.0,10/02/5423 +5.39113,43.61818,3380,6,13,14,57,1,4.65,5.0,fr,39745,67,1675341,1,1,Active Shallow Crust,128.8919,89.98707,0.0,06/13/3380 +5.39113,43.61818,6606,5,2,0,20,47,4.75,15.0,fr,39746,132,1675345,1,1,Active Shallow Crust,0.0,89.99083,0.0,05/02/6606 +2.91886,44.97905,3064,4,11,4,33,49,3.55,5.0,fr,39747,61,1675680,1,2,Active Shallow Crust,0.0,89.9893,0.0,04/11/3064 +2.91886,44.97905,7310,12,29,6,33,36,3.55,5.0,fr,39748,146,1675680,1,2,Active Shallow Crust,0.0,89.9893,0.0,12/29/7310 +2.91886,44.97905,8008,4,15,9,16,9,3.55,5.0,fr,39749,160,1675686,1,1,Active Shallow Crust,0.0,89.98917,-90.0,04/15/8008 +2.91886,44.97905,3641,4,9,20,48,25,3.55,5.0,fr,39750,72,1675689,1,1,Active Shallow Crust,128.8965,89.99465,0.0,04/09/3641 +2.91886,44.97905,8812,4,22,2,49,57,3.65,5.0,fr,39751,176,1675695,1,1,Active Shallow Crust,240.0005,58.01277,0.0,04/22/8812 +2.91886,44.97905,4171,6,19,17,12,8,3.75,5.0,fr,39752,83,1675704,1,1,Active Shallow Crust,0.0,89.98867,0.0,06/19/4171 +2.91886,44.97905,4832,6,4,1,54,35,3.75,5.0,fr,39753,96,1675710,1,1,Active Shallow Crust,0.0,89.9914,-90.0,06/04/4832 +2.91886,44.97905,2816,5,29,8,4,13,3.85,15.0,fr,39754,56,1675717,1,1,Active Shallow Crust,0.0,89.9899,0.0,05/29/2816 +2.91886,44.97905,9195,12,17,10,30,3,3.85,5.0,fr,39755,183,1675725,1,1,Active Shallow Crust,128.8959,89.99369,0.0,12/17/9195 +2.91886,44.97905,687,11,15,15,52,56,3.95,15.0,fr,39756,13,1675729,1,1,Active Shallow Crust,0.0,89.991,0.0,11/15/0687 +2.91886,44.97905,9147,11,7,21,16,23,4.05,5.0,fr,39757,182,1675746,1,1,Active Shallow Crust,0.0,89.98985,-90.0,11/07/9147 +2.91886,44.97905,9656,9,23,13,23,21,4.15,15.0,fr,39758,193,1675753,1,1,Active Shallow Crust,0.0,89.98927,0.0,09/23/9656 +2.91886,44.97905,9493,8,13,3,16,58,4.15,27.5,fr,39759,189,1675754,1,1,Active Shallow Crust,0.0,89.98927,0.0,08/13/9493 +2.91886,44.97905,9589,10,8,9,47,58,4.25,15.0,fr,39760,191,1675765,1,1,Active Shallow Crust,0.0,89.99044,0.0,10/08/9589 +2.91886,44.97905,9264,6,1,15,45,52,4.35,5.0,fr,39761,185,1675779,1,1,Active Shallow Crust,240.0081,57.99574,0.0,06/01/9264 +2.91886,44.97905,2975,11,9,9,15,52,4.45,5.0,fr,39762,59,1675788,1,1,Active Shallow Crust,0.0,89.98988,0.0,11/09/2975 +2.91886,44.97905,1562,9,18,6,25,31,4.55,5.0,fr,39763,31,1675800,1,1,Active Shallow Crust,0.0,89.98985,0.0,09/18/1562 +2.91886,44.97905,2444,5,29,17,20,48,5.55,5.0,fr,39764,48,1675920,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/29/2444 +0.66486,50.84018,9587,10,17,19,10,36,3.55,5.0,fr,39765,191,1676160,1,1,Active Shallow Crust,0.0,89.98965,0.0,10/17/9587 +0.66486,50.84018,1357,4,17,16,23,5,3.65,15.0,fr,39766,27,1676173,1,1,Active Shallow Crust,0.0,89.99007,0.0,04/17/1357 +0.66486,50.84018,9829,6,8,10,49,11,3.65,15.0,fr,39767,196,1676176,1,1,Active Shallow Crust,240.0015,58.01297,0.0,06/08/9829 +0.66486,50.84018,6539,4,3,3,30,26,3.75,5.0,fr,39768,130,1676184,1,2,Active Shallow Crust,0.0,89.98988,0.0,04/03/6539 +0.66486,50.84018,4694,8,29,22,37,59,3.75,5.0,fr,39769,93,1676184,1,2,Active Shallow Crust,0.0,89.98988,0.0,08/29/4694 +0.66486,50.84018,8941,7,22,9,3,34,3.85,5.0,fr,39770,178,1676196,1,1,Active Shallow Crust,0.0,89.98985,0.0,07/22/8941 +0.66486,50.84018,6368,5,22,8,5,41,3.95,5.0,fr,39771,127,1676208,1,1,Active Shallow Crust,0.0,89.98995,0.0,05/22/6368 +0.66486,50.84018,5075,10,11,10,33,57,3.95,5.0,fr,39772,101,1676211,1,1,Active Shallow Crust,240.0206,58.00511,0.0,10/11/5075 +0.66486,50.84018,4356,6,2,4,45,28,4.25,27.5,fr,39773,87,1676246,1,1,Active Shallow Crust,0.0,89.99004,0.0,06/02/4356 +0.66486,50.84018,9410,11,2,21,22,39,4.25,5.0,fr,39774,188,1676247,1,1,Active Shallow Crust,240.0085,57.99422,0.0,11/02/9410 +0.66486,50.84018,1604,7,16,6,48,7,4.55,5.0,fr,39775,32,1676280,1,1,Active Shallow Crust,0.0,89.98993,0.0,07/16/1604 +0.66486,50.84018,449,2,17,8,17,1,4.95,5.0,fr,39776,8,1676328,1,1,Active Shallow Crust,0.0,89.98999,0.0,02/17/0449 +-1.26904,44.6901,1531,9,9,10,37,51,3.55,15.0,fr,39777,30,1676641,1,1,Active Shallow Crust,0.0,89.98925,0.0,09/09/1531 +-1.26904,44.6901,8318,7,1,10,36,4,4.65,5.0,fr,39778,166,1676772,1,1,Active Shallow Crust,0.0,89.9899,0.0,07/01/8318 +4.0615,50.48957,7383,8,29,15,53,44,3.55,5.0,fr,39779,147,1677120,1,1,Active Shallow Crust,0.0,89.98717,0.0,08/29/7383 +4.0615,50.48957,7018,5,29,7,16,50,3.55,15.0,fr,39780,140,1677121,1,1,Active Shallow Crust,0.0,89.98717,0.0,05/29/7018 +4.0615,50.48957,1067,3,22,20,31,0,3.55,27.5,fr,39781,21,1677122,1,2,Active Shallow Crust,0.0,89.98717,0.0,03/22/1067 +4.0615,50.48957,9634,2,12,7,47,56,3.55,27.5,fr,39782,192,1677122,1,2,Active Shallow Crust,0.0,89.98717,0.0,02/12/9634 +4.0615,50.48957,5373,2,25,1,48,44,3.55,5.0,fr,39783,107,1677123,1,1,Active Shallow Crust,240.0126,57.99895,0.0,02/25/5373 +4.0615,50.48957,7302,3,6,16,21,9,3.55,15.0,fr,39784,146,1677130,1,1,Active Shallow Crust,128.8964,89.99358,0.0,03/06/7302 +4.0615,50.48957,2421,1,11,19,10,29,3.65,5.0,fr,39785,48,1677132,1,2,Active Shallow Crust,0.0,89.98856,0.0,01/11/2421 +4.0615,50.48957,395,1,6,1,44,55,3.65,5.0,fr,39786,7,1677132,1,2,Active Shallow Crust,0.0,89.98856,0.0,01/06/0395 +4.0615,50.48957,8753,7,20,18,59,36,3.65,15.0,fr,39787,175,1677133,1,2,Active Shallow Crust,0.0,89.98856,0.0,07/20/8753 +4.0615,50.48957,7197,10,5,12,34,17,3.65,15.0,fr,39788,143,1677133,1,2,Active Shallow Crust,0.0,89.98856,0.0,10/05/7197 +4.0615,50.48957,2984,12,13,22,54,30,3.65,5.0,fr,39789,59,1677135,1,1,Active Shallow Crust,240.0023,58.01291,0.0,12/13/2984 +4.0615,50.48957,2519,11,1,9,10,43,3.65,15.0,fr,39790,50,1677136,1,1,Active Shallow Crust,240.0023,58.01291,0.0,11/01/2519 +4.0615,50.48957,8206,8,16,13,19,2,3.65,5.0,fr,39791,164,1677141,1,1,Active Shallow Crust,128.8991,89.9636,0.0,08/16/8206 +4.0615,50.48957,1600,6,19,4,9,49,3.75,5.0,fr,39792,31,1677144,1,2,Active Shallow Crust,0.0,89.98981,0.0,06/19/1600 +4.0615,50.48957,9515,7,11,2,27,6,3.75,5.0,fr,39793,190,1677144,1,2,Active Shallow Crust,0.0,89.98981,0.0,07/11/9515 +4.0615,50.48957,9410,1,22,1,59,34,3.75,15.0,fr,39794,188,1677145,1,1,Active Shallow Crust,0.0,89.98981,0.0,01/22/9410 +4.0615,50.48957,4337,1,2,8,46,19,3.75,27.5,fr,39795,86,1677146,1,1,Active Shallow Crust,0.0,89.98981,0.0,01/02/4337 +4.0615,50.48957,4300,9,1,6,38,55,3.75,5.0,fr,39796,85,1677153,1,2,Active Shallow Crust,128.8972,89.96706,0.0,09/01/4300 +4.0615,50.48957,9147,5,13,3,31,39,3.75,5.0,fr,39797,182,1677153,1,2,Active Shallow Crust,128.8972,89.96706,0.0,05/13/9147 +4.0615,50.48957,6644,7,17,2,52,58,3.85,5.0,fr,39798,132,1677156,1,4,Active Shallow Crust,0.0,89.99091,0.0,07/17/6644 +4.0615,50.48957,2035,6,14,13,6,5,3.85,5.0,fr,39799,40,1677156,1,4,Active Shallow Crust,0.0,89.99091,0.0,06/14/2035 +4.0615,50.48957,6120,4,17,9,57,53,3.85,5.0,fr,39800,122,1677156,1,4,Active Shallow Crust,0.0,89.99091,0.0,04/17/6120 +4.0615,50.48957,5904,1,26,18,2,22,3.85,5.0,fr,39801,118,1677156,1,4,Active Shallow Crust,0.0,89.99091,0.0,01/26/5904 +4.0615,50.48957,854,4,10,18,23,57,3.85,15.0,fr,39802,17,1677157,1,1,Active Shallow Crust,0.0,89.99091,0.0,04/10/0854 +4.0615,50.48957,6232,10,28,16,6,48,3.85,5.0,fr,39803,124,1677159,1,1,Active Shallow Crust,240.011,57.99763,0.0,10/28/6232 +4.0615,50.48957,1827,10,17,9,4,23,3.85,5.0,fr,39804,36,1677165,1,1,Active Shallow Crust,128.8952,89.99319,0.0,10/17/1827 +4.0615,50.48957,103,8,13,23,50,52,3.95,5.0,fr,39805,2,1677168,1,1,Active Shallow Crust,0.0,89.99191,0.0,08/13/0103 +4.0615,50.48957,1417,12,6,6,9,42,3.95,15.0,fr,39806,28,1677169,1,1,Active Shallow Crust,0.0,89.99191,0.0,12/06/1417 +4.0615,50.48957,2160,11,30,19,57,49,3.95,5.0,fr,39807,43,1677174,1,1,Active Shallow Crust,0.0,89.99181,-90.0,11/30/2160 +4.0615,50.48957,8972,1,26,1,20,40,3.95,5.0,fr,39808,179,1677177,1,2,Active Shallow Crust,128.8998,89.99393,0.0,01/26/8972 +4.0615,50.48957,2644,2,4,6,16,59,3.95,5.0,fr,39809,52,1677177,1,2,Active Shallow Crust,128.8998,89.99393,0.0,02/04/2644 +4.0615,50.48957,1349,8,4,7,13,17,4.05,5.0,fr,39810,26,1677180,1,2,Active Shallow Crust,0.0,89.98917,0.0,08/04/1349 +4.0615,50.48957,929,2,14,14,55,4,4.05,5.0,fr,39811,18,1677180,1,2,Active Shallow Crust,0.0,89.98917,0.0,02/14/0929 +4.0615,50.48957,1539,11,4,16,29,29,4.05,27.5,fr,39812,30,1677185,1,2,Active Shallow Crust,240.0069,58.00546,0.0,11/04/1539 +4.0615,50.48957,2846,12,24,13,5,40,4.05,27.5,fr,39813,56,1677185,1,2,Active Shallow Crust,240.0069,58.00546,0.0,12/24/2846 +4.0615,50.48957,2206,10,23,7,51,25,4.05,5.0,fr,39814,44,1677186,1,1,Active Shallow Crust,0.0,89.98905,-90.0,10/23/2206 +4.0615,50.48957,368,9,5,14,26,1,4.05,15.0,fr,39815,7,1677190,1,1,Active Shallow Crust,128.8903,89.99278,0.0,09/05/0368 +4.0615,50.48957,5006,3,14,11,47,4,4.15,5.0,fr,39816,100,1677192,1,1,Active Shallow Crust,0.0,89.99036,0.0,03/14/5006 +4.0615,50.48957,8851,3,15,17,3,20,4.15,15.0,fr,39817,177,1677193,1,1,Active Shallow Crust,0.0,89.99036,0.0,03/15/8851 +4.0615,50.48957,3481,6,23,14,25,46,4.15,5.0,fr,39818,69,1677198,1,1,Active Shallow Crust,0.0,89.99024,-90.0,06/23/3481 +4.0615,50.48957,9663,3,8,5,0,21,4.25,5.0,fr,39819,193,1677204,1,2,Active Shallow Crust,0.0,89.9914,0.0,03/08/9663 +4.0615,50.48957,9457,9,26,23,42,58,4.25,5.0,fr,39820,189,1677204,1,2,Active Shallow Crust,0.0,89.9914,0.0,09/26/9457 +4.0615,50.48957,5970,11,24,7,48,45,4.35,5.0,fr,39821,119,1677216,1,1,Active Shallow Crust,0.0,89.98978,0.0,11/24/5970 +4.0615,50.48957,7754,8,11,13,7,56,4.45,27.5,fr,39822,155,1677230,1,1,Active Shallow Crust,0.0,89.99089,0.0,08/11/7754 +4.0615,50.48957,9550,4,7,17,26,32,4.45,15.0,fr,39823,190,1677232,1,1,Active Shallow Crust,240.0063,57.99475,0.0,04/07/9550 +4.0615,50.48957,2319,6,23,17,53,54,4.75,5.0,fr,39824,46,1677264,1,1,Active Shallow Crust,0.0,89.99033,0.0,06/23/2319 +4.0615,50.48957,541,8,13,9,3,58,4.75,5.0,fr,39825,10,1677267,1,1,Active Shallow Crust,240.0091,58.00489,0.0,08/13/0541 +4.0615,50.48957,919,4,14,4,34,1,4.75,15.0,fr,39826,18,1677274,1,1,Active Shallow Crust,128.8873,89.98799,0.0,04/14/0919 +4.0615,50.48957,3655,5,9,2,48,38,4.85,5.0,fr,39827,73,1677282,1,1,Active Shallow Crust,0.0,89.98983,-90.0,05/09/3655 +4.0615,50.48957,7116,7,27,23,8,27,4.95,5.0,fr,39828,142,1677288,1,1,Active Shallow Crust,0.0,89.98975,0.0,07/27/7116 +4.0615,50.48957,4955,8,31,23,57,52,5.25,5.0,fr,39829,99,1677324,1,1,Active Shallow Crust,0.0,89.99003,0.0,08/31/4955 +4.0615,50.48957,9549,7,15,7,18,38,5.75,5.0,fr,39830,190,1677384,1,1,Active Shallow Crust,0.0,89.9898,0.0,07/15/9549 +4.061509,50.48957,453,8,21,23,45,55,6.45,8.491219,fr,39831,9,1677468,1,1,Active Shallow Crust,0.0,89.98997,0.0,08/21/0453 +4.14821,43.44783,1492,4,8,23,38,25,3.55,15.0,fr,39832,29,1677601,1,1,Active Shallow Crust,0.0,89.99268,0.0,04/08/1492 +4.14821,43.44783,747,1,2,20,3,48,3.65,15.0,fr,39833,14,1677613,1,1,Active Shallow Crust,0.0,89.98695,0.0,01/02/0747 +4.14821,43.44783,814,6,12,12,39,7,3.65,5.0,fr,39834,16,1677621,1,1,Active Shallow Crust,128.8998,89.96391,0.0,06/12/0814 +4.14821,43.44783,886,5,16,11,26,40,3.75,5.0,fr,39835,17,1677624,1,2,Active Shallow Crust,0.0,89.98837,0.0,05/16/0886 +4.14821,43.44783,4971,11,29,6,7,11,3.75,5.0,fr,39836,99,1677624,1,2,Active Shallow Crust,0.0,89.98837,0.0,11/29/4971 +4.14821,43.44783,1866,4,8,0,36,23,4.05,5.0,fr,39837,37,1677660,1,1,Active Shallow Crust,0.0,89.99177,0.0,04/08/1866 +4.14821,43.44783,3532,2,1,0,28,42,4.15,5.0,fr,39838,70,1677672,1,1,Active Shallow Crust,0.0,89.98899,0.0,02/01/3532 +6.40888,46.89621,1197,1,25,23,31,16,3.55,5.0,fr,39839,23,1678080,1,2,Active Shallow Crust,0.0,89.99311,0.0,01/25/1197 +6.40888,46.89621,325,9,17,4,45,57,3.55,5.0,fr,39840,6,1678080,1,2,Active Shallow Crust,0.0,89.99311,0.0,09/17/0325 +6.40888,46.89621,1426,12,30,11,9,38,3.55,15.0,fr,39841,28,1678081,1,1,Active Shallow Crust,0.0,89.99311,0.0,12/30/1426 +6.40888,46.89621,4730,2,24,3,18,59,3.55,27.5,fr,39842,94,1678082,1,1,Active Shallow Crust,0.0,89.99311,0.0,02/24/4730 +6.40888,46.89621,98,9,19,6,52,43,3.65,5.0,fr,39843,1,1678092,1,3,Active Shallow Crust,0.0,89.98772,0.0,09/19/0098 +6.40888,46.89621,2107,6,30,12,17,13,3.65,5.0,fr,39844,42,1678092,1,3,Active Shallow Crust,0.0,89.98772,0.0,06/30/2107 +6.40888,46.89621,1818,6,20,15,25,44,3.65,5.0,fr,39845,36,1678092,1,3,Active Shallow Crust,0.0,89.98772,0.0,06/20/1818 +6.40888,46.89621,5154,2,27,7,29,53,3.65,15.0,fr,39846,103,1678093,1,2,Active Shallow Crust,0.0,89.98772,0.0,02/27/5154 +6.40888,46.89621,3996,6,13,14,28,32,3.65,15.0,fr,39847,79,1678093,1,2,Active Shallow Crust,0.0,89.98772,0.0,06/13/3996 +6.40888,46.89621,2473,3,26,22,21,4,3.65,5.0,fr,39848,49,1678095,1,1,Active Shallow Crust,240.0011,58.01284,0.0,03/26/2473 +6.40888,46.89621,4605,7,23,9,43,36,3.65,5.0,fr,39849,92,1678101,1,1,Active Shallow Crust,128.9009,89.96353,0.0,07/23/4605 +6.40888,46.89621,2259,10,15,16,11,9,3.75,5.0,fr,39850,45,1678104,1,2,Active Shallow Crust,0.0,89.98905,0.0,10/15/2259 +6.40888,46.89621,9757,4,26,10,46,40,3.75,5.0,fr,39851,195,1678104,1,2,Active Shallow Crust,0.0,89.98905,0.0,04/26/9757 +6.40888,46.89621,3347,9,13,20,22,25,3.75,27.5,fr,39852,66,1678106,1,1,Active Shallow Crust,0.0,89.98905,0.0,09/13/3347 +6.40888,46.89621,4386,5,3,15,53,24,3.85,5.0,fr,39853,87,1678116,1,2,Active Shallow Crust,0.0,89.99024,0.0,05/03/4386 +6.40888,46.89621,22,12,16,14,8,22,3.85,5.0,fr,39854,0,1678116,1,2,Active Shallow Crust,0.0,89.99024,0.0,12/16/0022 +6.40888,46.89621,5676,10,9,0,10,20,3.95,5.0,fr,39855,113,1678128,1,1,Active Shallow Crust,0.0,89.9913,0.0,10/09/5676 +6.40888,46.89621,5286,3,19,5,20,25,4.05,5.0,fr,39856,105,1678140,1,2,Active Shallow Crust,0.0,89.98837,0.0,03/19/5286 +6.40888,46.89621,1779,1,8,6,10,42,4.05,5.0,fr,39857,35,1678140,1,2,Active Shallow Crust,0.0,89.98837,0.0,01/08/1779 +6.40888,46.89621,2520,1,8,10,30,11,4.05,5.0,fr,39858,50,1678143,1,2,Active Shallow Crust,240.0054,58.00616,0.0,01/08/2520 +6.40888,46.89621,4806,4,14,4,39,19,4.05,5.0,fr,39859,96,1678143,1,2,Active Shallow Crust,240.0054,58.00616,0.0,04/14/4806 +6.40888,46.89621,4723,10,19,1,31,42,4.25,5.0,fr,39860,94,1678164,1,2,Active Shallow Crust,0.0,89.99077,0.0,10/19/4723 +6.40888,46.89621,5824,10,13,14,40,10,4.25,5.0,fr,39861,116,1678164,1,2,Active Shallow Crust,0.0,89.99077,0.0,10/13/5824 +6.40888,46.89621,5240,4,3,7,15,58,4.25,15.0,fr,39862,104,1678165,1,1,Active Shallow Crust,0.0,89.99077,0.0,04/03/5240 +6.40888,46.89621,7936,9,26,0,46,33,4.25,15.0,fr,39863,158,1678171,1,1,Active Shallow Crust,0.0,89.99066,-90.0,09/26/7936 +6.40888,46.89621,4013,8,5,23,11,16,4.25,5.0,fr,39864,80,1678173,1,1,Active Shallow Crust,128.894,89.98096,0.0,08/05/4013 +6.40888,46.89621,7113,4,8,0,9,7,4.55,15.0,fr,39865,142,1678201,1,1,Active Shallow Crust,0.0,89.98911,0.0,04/08/7113 +6.40888,46.89621,184,6,6,13,5,34,4.55,15.0,fr,39866,3,1678207,1,1,Active Shallow Crust,0.0,89.98898,-90.0,06/06/0184 +6.40888,46.89621,4416,7,5,14,36,31,4.65,5.0,fr,39867,88,1678212,1,1,Active Shallow Crust,0.0,89.99029,0.0,07/05/4416 +6.40888,46.89621,5494,10,21,10,19,39,4.65,15.0,fr,39868,109,1678216,1,1,Active Shallow Crust,240.0107,57.99436,0.0,10/21/5494 +6.40888,46.89621,4071,8,27,4,34,18,4.75,5.0,fr,39869,81,1678224,1,1,Active Shallow Crust,0.0,89.98962,0.0,08/27/4071 +6.40888,46.89621,331,4,12,6,38,7,4.85,15.0,fr,39870,6,1678237,1,1,Active Shallow Crust,0.0,89.99075,0.0,04/12/0331 +6.40888,46.89621,7938,1,6,21,41,19,5.15,5.0,fr,39871,158,1678272,1,1,Active Shallow Crust,0.0,89.99017,0.0,01/06/7938 +6.40888,46.89621,9769,5,8,1,10,53,5.75,5.0,fr,39872,195,1678347,1,1,Active Shallow Crust,240.039,58.00191,0.0,05/08/9769 +2.57384,48.43843,521,1,22,2,1,39,3.65,5.0,fr,39873,10,1678572,1,1,Active Shallow Crust,0.0,89.99106,0.0,01/22/0521 +4.43511,49.1774,9768,11,23,5,18,15,3.55,5.0,fr,39874,195,1679046,1,1,Active Shallow Crust,0.0,89.99333,-90.0,11/23/9768 +4.43511,49.1774,7767,11,25,2,25,18,4.05,5.0,fr,39875,155,1679100,1,1,Active Shallow Crust,0.0,89.98888,0.0,11/25/7767 +5.2935,52.00173,4043,4,7,0,34,53,3.95,5.0,fr,39876,80,1679568,1,1,Active Shallow Crust,0.0,89.98825,0.0,04/07/4043 +2.54058,48.04327,4541,7,14,1,57,2,3.55,15.0,fr,39877,90,1680001,1,1,Active Shallow Crust,0.0,89.98989,0.0,07/14/4541 +2.54058,48.04327,296,7,9,8,44,19,3.65,5.0,fr,39878,5,1680012,1,1,Active Shallow Crust,0.0,89.99099,0.0,07/09/0296 +2.54058,48.04327,7895,1,26,10,1,18,4.35,5.0,fr,39879,157,1680099,1,1,Active Shallow Crust,240.0089,57.99602,0.0,01/26/7895 +8.81772,50.08552,6907,9,29,2,17,47,3.65,5.0,fr,39880,138,1680492,1,1,Active Shallow Crust,0.0,89.98846,0.0,09/29/6907 +8.81772,50.08552,971,2,17,18,29,9,3.85,15.0,fr,39881,19,1680517,1,1,Active Shallow Crust,0.0,89.99084,0.0,02/17/0971 +8.81772,50.08552,3149,5,19,4,20,24,3.95,5.0,fr,39882,62,1680528,1,1,Active Shallow Crust,0.0,89.99184,0.0,05/19/3149 +8.81772,50.08552,9053,6,6,16,55,17,4.05,5.0,fr,39883,181,1680540,1,1,Active Shallow Crust,0.0,89.99272,0.0,06/06/9053 +8.81772,50.08552,9140,1,31,10,12,27,4.05,15.0,fr,39884,182,1680544,1,1,Active Shallow Crust,240.0055,58.00611,0.0,01/31/9140 +8.81772,50.08552,8306,12,19,0,26,18,4.15,5.0,fr,39885,166,1680552,1,1,Active Shallow Crust,0.0,89.98703,0.0,12/19/8306 +8.81772,50.08552,5059,2,27,0,1,52,4.15,5.0,fr,39886,101,1680561,1,1,Active Shallow Crust,128.8971,89.99352,0.0,02/27/5059 +8.81772,50.08552,4568,7,30,13,53,35,4.25,5.0,fr,39887,91,1680567,1,1,Active Shallow Crust,240.0075,57.99454,0.0,07/30/4568 +8.81772,50.08552,4876,6,18,12,59,38,4.35,5.0,fr,39888,97,1680576,1,1,Active Shallow Crust,0.0,89.98969,0.0,06/18/4876 +8.81772,50.08552,9848,6,21,19,28,44,4.35,15.0,fr,39889,196,1680577,1,1,Active Shallow Crust,0.0,89.98969,0.0,06/21/9848 +8.81772,50.08552,8052,6,1,12,26,1,4.55,5.0,fr,39890,161,1680609,1,1,Active Shallow Crust,128.8929,89.98585,0.0,06/01/8052 +8.81772,50.08552,5172,7,5,8,58,58,4.65,27.5,fr,39891,103,1680617,1,1,Active Shallow Crust,240.0123,57.99419,0.0,07/05/5172 +2.57291,46.73923,8440,10,13,20,21,27,3.65,5.0,fr,39892,168,1681452,1,1,Active Shallow Crust,0.0,89.99076,0.0,10/13/8440 +2.57291,46.73923,6509,12,11,7,57,38,3.75,5.0,fr,39893,130,1681467,1,1,Active Shallow Crust,240.0084,58.01758,0.0,12/11/6509 +2.57291,46.73923,8192,12,24,10,46,14,3.85,5.0,fr,39894,163,1681476,1,2,Active Shallow Crust,0.0,89.99021,0.0,12/24/8192 +2.57291,46.73923,721,9,9,2,30,42,3.85,5.0,fr,39895,14,1681476,1,2,Active Shallow Crust,0.0,89.99021,0.0,09/09/0721 +2.57291,46.73923,4009,9,10,15,47,37,3.85,5.0,fr,39896,80,1681479,1,1,Active Shallow Crust,240.011,57.99764,0.0,09/10/4009 +2.57291,46.73923,8224,2,29,19,15,51,3.95,15.0,fr,39897,164,1681492,1,1,Active Shallow Crust,240.0199,58.00499,0.0,02/29/8224 +2.57291,46.73923,8488,2,22,20,17,16,4.05,5.0,fr,39898,169,1681500,1,1,Active Shallow Crust,0.0,89.99029,0.0,02/22/8488 +2.57291,46.73923,5958,5,20,11,0,36,4.45,5.0,fr,39899,119,1681548,1,1,Active Shallow Crust,0.0,89.99019,0.0,05/20/5958 +8.2661,48.13677,3312,10,19,1,36,21,3.55,5.0,fr,39900,66,1681920,1,1,Active Shallow Crust,0.0,89.98654,0.0,10/19/3312 +8.2661,48.13677,9756,7,24,18,43,14,3.55,15.0,fr,39901,195,1681921,1,1,Active Shallow Crust,0.0,89.98654,0.0,07/24/9756 +8.2661,48.13677,1394,12,28,0,2,40,3.95,5.0,fr,39902,27,1681971,1,1,Active Shallow Crust,240.0193,58.0054,0.0,12/28/1394 +8.2661,48.13677,7010,12,31,22,2,54,4.25,5.0,fr,39903,140,1682004,1,1,Active Shallow Crust,0.0,89.98798,0.0,12/31/7010 +8.2661,48.13677,9898,3,2,15,52,11,4.35,5.0,fr,39904,197,1682019,1,1,Active Shallow Crust,240.0084,57.99607,0.0,03/02/9898 +8.2661,48.13677,9297,3,8,5,8,0,4.45,27.5,fr,39905,185,1682030,1,1,Active Shallow Crust,0.0,89.99045,0.0,03/08/9297 +8.2661,48.13677,6878,4,23,10,11,25,4.55,15.0,fr,39906,137,1682041,1,1,Active Shallow Crust,0.0,89.99149,0.0,04/23/6878 +8.2661,48.13677,6628,3,18,1,37,59,4.55,27.5,fr,39907,132,1682042,1,1,Active Shallow Crust,0.0,89.99149,0.0,03/18/6628 +8.2661,48.13677,6494,3,18,8,34,24,4.95,15.0,fr,39908,129,1682089,1,1,Active Shallow Crust,0.0,89.98926,0.0,03/18/6494 +8.2661,48.13677,8919,8,2,18,39,31,5.05,5.0,fr,39909,178,1682100,1,1,Active Shallow Crust,0.0,89.99043,0.0,08/02/8919 +8.2661,48.13677,6680,7,15,18,23,2,6.05,5.357596,fr,39910,133,1682229,1,1,Active Shallow Crust,128.8598,89.98888,0.0,07/15/6680 +0.28558,43.19779,1237,7,17,12,57,58,3.55,5.0,fr,39911,24,1682400,1,2,Active Shallow Crust,0.0,89.98989,0.0,07/17/1237 +0.28558,43.19779,6871,10,23,0,49,43,3.55,5.0,fr,39912,137,1682400,1,2,Active Shallow Crust,0.0,89.98989,0.0,10/23/6871 +0.28558,43.19779,627,2,24,9,33,54,3.55,15.0,fr,39913,12,1682401,1,1,Active Shallow Crust,0.0,89.98989,0.0,02/24/0627 +0.28558,43.19779,4638,11,23,14,55,38,3.55,5.0,fr,39914,92,1682403,1,1,Active Shallow Crust,240.0118,57.99818,0.0,11/23/4638 +0.28558,43.19779,8105,9,15,6,2,26,3.55,5.0,fr,39915,162,1682406,1,1,Active Shallow Crust,0.0,89.98978,-90.0,09/15/8105 +0.28558,43.19779,744,6,20,0,33,48,3.55,15.0,fr,39916,14,1682410,1,1,Active Shallow Crust,128.8964,89.9938,0.0,06/20/0744 +0.28558,43.19779,7467,3,27,23,26,58,3.65,5.0,fr,39917,149,1682412,1,3,Active Shallow Crust,0.0,89.99017,0.0,03/27/7467 +0.28558,43.19779,653,9,15,17,4,39,3.65,5.0,fr,39918,13,1682412,1,3,Active Shallow Crust,0.0,89.99017,0.0,09/15/0653 +0.28558,43.19779,9082,9,28,2,25,57,3.65,5.0,fr,39919,181,1682412,1,3,Active Shallow Crust,0.0,89.99017,0.0,09/28/9082 +0.28558,43.19779,1650,6,25,14,41,31,3.75,5.0,fr,39920,32,1682424,1,2,Active Shallow Crust,0.0,89.99014,0.0,06/25/1650 +0.28558,43.19779,7737,10,13,14,42,54,3.75,5.0,fr,39921,154,1682424,1,2,Active Shallow Crust,0.0,89.99014,0.0,10/13/7737 +0.28558,43.19779,3493,6,18,15,58,49,3.75,5.0,fr,39922,69,1682427,1,1,Active Shallow Crust,240.008,58.01756,0.0,06/18/3493 +0.28558,43.19779,2444,8,21,9,58,32,3.75,15.0,fr,39923,48,1682431,1,1,Active Shallow Crust,0.0,89.99003,-90.0,08/21/2444 +0.28558,43.19779,6813,8,15,23,51,49,3.75,27.5,fr,39924,136,1682432,1,1,Active Shallow Crust,0.0,89.99003,-90.0,08/15/6813 +0.28558,43.19779,649,6,18,21,15,30,3.85,5.0,fr,39925,12,1682436,1,1,Active Shallow Crust,0.0,89.98991,0.0,06/18/0649 +0.28558,43.19779,5260,7,19,22,12,37,3.85,27.5,fr,39926,105,1682438,1,1,Active Shallow Crust,0.0,89.98991,0.0,07/19/5260 +0.28558,43.19779,6238,4,18,0,41,6,3.85,27.5,fr,39927,124,1682441,1,1,Active Shallow Crust,240.0104,57.99776,0.0,04/18/6238 +0.28558,43.19779,6493,1,24,16,50,32,3.85,5.0,fr,39928,129,1682445,1,1,Active Shallow Crust,128.8961,89.99366,0.0,01/24/6493 +0.28558,43.19779,9572,4,15,10,50,39,3.95,5.0,fr,39929,191,1682448,1,1,Active Shallow Crust,0.0,89.99014,0.0,04/15/9572 +0.28558,43.19779,4397,8,10,1,6,32,3.95,15.0,fr,39930,87,1682449,1,1,Active Shallow Crust,0.0,89.99014,0.0,08/10/4397 +0.28558,43.19779,3954,12,30,5,55,27,3.95,5.0,fr,39931,79,1682454,1,1,Active Shallow Crust,0.0,89.99003,-90.0,12/30/3954 +0.28558,43.19779,5081,8,29,11,26,31,4.05,5.0,fr,39932,101,1682469,1,1,Active Shallow Crust,128.8909,89.99367,0.0,08/29/5081 +0.28558,43.19779,9897,2,22,22,25,51,4.15,27.5,fr,39933,197,1682477,1,1,Active Shallow Crust,240.0079,57.9972,0.0,02/22/9897 +0.28558,43.19779,4063,7,21,17,2,8,4.15,15.0,fr,39934,81,1682479,1,1,Active Shallow Crust,0.0,89.98998,-90.0,07/21/4063 +0.28558,43.19779,9508,1,21,2,43,17,4.35,15.0,fr,39935,190,1682497,1,1,Active Shallow Crust,0.0,89.98994,0.0,01/21/9508 +0.28558,43.19779,2122,2,16,12,59,15,4.45,27.5,fr,39936,42,1682516,1,1,Active Shallow Crust,0.0,89.98994,-90.0,02/16/2122 +0.28558,43.19779,7689,8,9,12,10,38,4.55,15.0,fr,39937,153,1682521,1,1,Active Shallow Crust,0.0,89.98997,0.0,08/09/7689 +0.28558,43.19779,4385,11,2,1,4,36,4.95,5.0,fr,39938,87,1682568,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/02/4385 +0.2855786,43.19779,1819,10,13,1,11,52,6.15,6.011322,fr,39939,36,1682721,1,1,Active Shallow Crust,128.8609,89.98977,0.0,10/13/1819 +3.52395,41.61655,2142,4,1,0,33,24,3.55,5.0,fr,39940,42,1682880,1,1,Active Shallow Crust,0.0,89.98869,0.0,04/01/2142 +3.52395,41.61655,6543,3,22,12,24,32,3.65,5.0,fr,39941,130,1682892,1,2,Active Shallow Crust,0.0,89.98992,0.0,03/22/6543 +3.52395,41.61655,7579,2,24,15,30,20,3.65,5.0,fr,39942,151,1682892,1,2,Active Shallow Crust,0.0,89.98992,0.0,02/24/7579 +3.52395,41.61655,4178,11,8,0,15,57,3.75,5.0,fr,39943,83,1682904,1,2,Active Shallow Crust,0.0,89.99102,0.0,11/08/4178 +3.52395,41.61655,7844,6,6,23,40,10,3.75,5.0,fr,39944,156,1682904,1,2,Active Shallow Crust,0.0,89.99102,0.0,06/06/7844 +3.52395,41.61655,3425,4,19,11,19,22,3.85,5.0,fr,39945,68,1682916,1,1,Active Shallow Crust,0.0,89.98933,0.0,04/19/3425 +3.52395,41.61655,4971,3,19,17,30,20,3.85,5.0,fr,39946,99,1682922,1,1,Active Shallow Crust,0.0,89.9892,-90.0,03/19/4971 +3.52395,41.61655,6404,3,2,13,36,38,4.15,15.0,fr,39947,128,1682953,1,1,Active Shallow Crust,0.0,89.99055,0.0,03/02/6404 +1.90767,50.75809,6731,10,29,23,43,10,3.55,5.0,fr,39948,134,1683366,1,1,Active Shallow Crust,0.0,89.99032,-90.0,10/29/6731 +1.90767,50.75809,7996,3,18,8,17,32,3.75,5.0,fr,39949,159,1683384,1,3,Active Shallow Crust,0.0,89.98987,0.0,03/18/7996 +1.90767,50.75809,9635,12,18,15,15,51,3.75,5.0,fr,39950,192,1683384,1,3,Active Shallow Crust,0.0,89.98987,0.0,12/18/9635 +1.90767,50.75809,3377,8,23,7,4,49,3.75,5.0,fr,39951,67,1683384,1,3,Active Shallow Crust,0.0,89.98987,0.0,08/23/3377 +1.90767,50.75809,2339,9,15,3,49,31,3.85,15.0,fr,39952,46,1683397,1,1,Active Shallow Crust,0.0,89.98984,0.0,09/15/2339 +1.90767,50.75809,5163,9,26,13,58,40,3.85,5.0,fr,39953,103,1683405,1,1,Active Shallow Crust,128.8951,89.99323,0.0,09/26/5163 +1.90767,50.75809,5587,5,25,13,22,12,4.15,27.5,fr,39954,111,1683434,1,1,Active Shallow Crust,0.0,89.98961,0.0,05/25/5587 +1.90767,50.75809,2426,1,26,9,31,39,4.15,5.0,fr,39955,48,1683438,1,1,Active Shallow Crust,0.0,89.9903,-90.0,01/26/2426 +1.90767,50.75809,9406,10,30,0,50,30,4.35,15.0,fr,39956,188,1683463,1,1,Active Shallow Crust,0.0,89.98972,-90.0,10/30/9406 +1.90767,50.75809,7443,5,16,13,18,44,5.25,5.0,fr,39957,148,1683564,1,1,Active Shallow Crust,0.0,89.99008,0.0,05/16/7443 +3.69275,51.18757,3782,1,27,18,42,28,3.55,5.0,fr,39958,75,1683846,1,1,Active Shallow Crust,0.0,89.99041,-90.0,01/27/3782 +3.69275,51.18757,8641,9,13,2,50,19,3.65,5.0,fr,39959,172,1683852,1,1,Active Shallow Crust,0.0,89.98873,0.0,09/13/8641 +3.69275,51.18757,3581,10,23,21,22,31,3.85,27.5,fr,39960,71,1683878,1,1,Active Shallow Crust,0.0,89.99105,0.0,10/23/3581 +3.69275,51.18757,8716,8,28,5,44,59,4.05,15.0,fr,39961,174,1683901,1,1,Active Shallow Crust,0.0,89.98933,0.0,08/28/8716 +3.69275,51.18757,3430,7,24,6,57,31,4.15,5.0,fr,39962,68,1683921,1,1,Active Shallow Crust,128.8964,89.99367,0.0,07/24/3430 +3.69275,51.18757,4324,2,28,22,4,20,4.35,27.5,fr,39963,86,1683938,1,1,Active Shallow Crust,0.0,89.98994,0.0,02/28/4324 +3.69275,51.18757,9317,2,28,14,29,58,4.55,5.0,fr,39964,186,1683960,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/28/9317 +3.69275,51.18757,3052,4,5,12,3,1,4.75,5.0,fr,39965,61,1683987,1,1,Active Shallow Crust,240.0095,58.0047,0.0,04/05/3052 +3.69275,51.18757,3789,9,18,9,52,0,5.15,5.0,fr,39966,75,1684032,1,1,Active Shallow Crust,0.0,89.98998,0.0,09/18/3789 +7.68448,48.20068,5550,9,30,21,38,39,3.55,5.0,fr,39967,110,1684320,1,3,Active Shallow Crust,0.0,89.99328,0.0,09/30/5550 +7.68448,48.20068,6317,8,24,17,2,9,3.55,5.0,fr,39968,126,1684320,1,3,Active Shallow Crust,0.0,89.99328,0.0,08/24/6317 +7.68448,48.20068,1068,11,5,4,50,4,3.55,5.0,fr,39969,21,1684320,1,3,Active Shallow Crust,0.0,89.99328,0.0,11/05/1068 +7.68448,48.20068,5503,5,16,11,22,13,3.55,15.0,fr,39970,110,1684321,1,4,Active Shallow Crust,0.0,89.99328,0.0,05/16/5503 +7.68448,48.20068,1815,7,29,12,48,26,3.55,15.0,fr,39971,36,1684321,1,4,Active Shallow Crust,0.0,89.99328,0.0,07/29/1815 +7.68448,48.20068,9181,12,30,16,12,9,3.55,15.0,fr,39972,183,1684321,1,4,Active Shallow Crust,0.0,89.99328,0.0,12/30/9181 +7.68448,48.20068,4616,9,25,18,49,30,3.55,15.0,fr,39973,92,1684321,1,4,Active Shallow Crust,0.0,89.99328,0.0,09/25/4616 +7.68448,48.20068,3606,3,6,3,29,38,3.55,5.0,fr,39974,72,1684323,1,1,Active Shallow Crust,240.0129,57.9973,0.0,03/06/3606 +7.68448,48.20068,407,4,29,14,39,28,3.55,15.0,fr,39975,8,1684324,1,1,Active Shallow Crust,240.0129,57.9973,0.0,04/29/0407 +7.68448,48.20068,2500,2,7,20,21,12,3.55,5.0,fr,39976,49,1684329,1,1,Active Shallow Crust,128.8965,89.99328,0.0,02/07/2500 +7.68448,48.20068,5898,9,1,23,8,46,3.65,5.0,fr,39977,117,1684332,1,3,Active Shallow Crust,0.0,89.98802,0.0,09/01/5898 +7.68448,48.20068,1025,7,8,19,52,33,3.65,5.0,fr,39978,20,1684332,1,3,Active Shallow Crust,0.0,89.98802,0.0,07/08/1025 +7.68448,48.20068,7991,6,7,23,54,7,3.65,5.0,fr,39979,159,1684332,1,3,Active Shallow Crust,0.0,89.98802,0.0,06/07/7991 +7.68448,48.20068,131,5,23,14,9,42,3.65,15.0,fr,39980,2,1684333,1,1,Active Shallow Crust,0.0,89.98802,0.0,05/23/0131 +7.68448,48.20068,8993,12,7,7,39,11,3.75,5.0,fr,39981,179,1684344,1,5,Active Shallow Crust,0.0,89.98932,0.0,12/07/8993 +7.68448,48.20068,1452,7,31,22,55,32,3.75,5.0,fr,39982,29,1684344,1,5,Active Shallow Crust,0.0,89.98932,0.0,07/31/1452 +7.68448,48.20068,2323,3,7,8,39,15,3.75,5.0,fr,39983,46,1684344,1,5,Active Shallow Crust,0.0,89.98932,0.0,03/07/2323 +7.68448,48.20068,155,5,31,13,48,5,3.75,5.0,fr,39984,3,1684344,1,5,Active Shallow Crust,0.0,89.98932,0.0,05/31/0155 +7.68448,48.20068,1228,2,27,8,16,25,3.75,5.0,fr,39985,24,1684344,1,5,Active Shallow Crust,0.0,89.98932,0.0,02/27/1228 +7.68448,48.20068,1362,5,1,10,40,57,3.75,15.0,fr,39986,27,1684345,1,2,Active Shallow Crust,0.0,89.98932,0.0,05/01/1362 +7.68448,48.20068,7281,7,12,6,52,47,3.75,15.0,fr,39987,145,1684345,1,2,Active Shallow Crust,0.0,89.98932,0.0,07/12/7281 +7.68448,48.20068,20,11,25,10,7,40,3.75,27.5,fr,39988,0,1684346,1,2,Active Shallow Crust,0.0,89.98932,0.0,11/25/0020 +7.68448,48.20068,7934,10,23,21,32,10,3.75,27.5,fr,39989,158,1684346,1,2,Active Shallow Crust,0.0,89.98932,0.0,10/23/7934 +7.68448,48.20068,7128,11,23,2,58,24,3.75,5.0,fr,39990,142,1684347,1,1,Active Shallow Crust,240.0088,58.01756,0.0,11/23/7128 +7.68448,48.20068,7534,7,11,16,15,11,3.75,15.0,fr,39991,150,1684351,1,1,Active Shallow Crust,0.0,89.9892,-90.0,07/11/7534 +7.68448,48.20068,6484,9,29,17,28,21,3.75,5.0,fr,39992,129,1684353,1,1,Active Shallow Crust,128.8963,89.96752,0.0,09/29/6484 +7.68448,48.20068,4365,3,16,10,40,8,3.85,5.0,fr,39993,87,1684356,1,2,Active Shallow Crust,0.0,89.99049,0.0,03/16/4365 +7.68448,48.20068,308,8,28,20,19,38,3.85,5.0,fr,39994,6,1684356,1,2,Active Shallow Crust,0.0,89.99049,0.0,08/28/0308 +7.68448,48.20068,3534,5,1,13,57,10,3.85,15.0,fr,39995,70,1684357,1,2,Active Shallow Crust,0.0,89.99049,0.0,05/01/3534 +7.68448,48.20068,7505,7,6,12,54,22,3.85,15.0,fr,39996,150,1684357,1,2,Active Shallow Crust,0.0,89.99049,0.0,07/06/7505 +7.68448,48.20068,8210,1,26,13,17,57,3.85,27.5,fr,39997,164,1684358,1,1,Active Shallow Crust,0.0,89.99049,0.0,01/26/8210 +7.68448,48.20068,6398,1,24,22,5,1,3.85,5.0,fr,39998,127,1684359,1,2,Active Shallow Crust,240.0112,57.99867,0.0,01/24/6398 +7.68448,48.20068,4195,4,30,21,40,51,3.85,5.0,fr,39999,83,1684359,1,2,Active Shallow Crust,240.0112,57.99867,0.0,04/30/4195 +7.68448,48.20068,5303,5,5,9,27,33,3.85,5.0,fr,40000,106,1684365,1,1,Active Shallow Crust,128.8943,89.99524,0.0,05/05/5303 +7.68448,48.20068,8922,10,12,11,57,23,3.95,5.0,fr,40001,178,1684368,1,2,Active Shallow Crust,0.0,89.99152,0.0,10/12/8922 +7.68448,48.20068,9056,3,28,22,45,49,3.95,5.0,fr,40002,181,1684368,1,2,Active Shallow Crust,0.0,89.99152,0.0,03/28/9056 +7.68448,48.20068,4743,6,17,10,15,55,3.95,15.0,fr,40003,94,1684369,1,2,Active Shallow Crust,0.0,89.99152,0.0,06/17/4743 +7.68448,48.20068,4312,3,13,5,11,29,3.95,15.0,fr,40004,86,1684369,1,2,Active Shallow Crust,0.0,89.99152,0.0,03/13/4312 +7.68448,48.20068,9139,5,5,4,18,0,4.05,5.0,fr,40005,182,1684380,1,1,Active Shallow Crust,0.0,89.98866,0.0,05/05/9139 +7.68448,48.20068,4303,11,15,21,7,29,4.05,15.0,fr,40006,86,1684381,1,2,Active Shallow Crust,0.0,89.98866,0.0,11/15/4303 +7.68448,48.20068,979,1,2,16,36,38,4.05,15.0,fr,40007,19,1684381,1,2,Active Shallow Crust,0.0,89.98866,0.0,01/02/0979 +7.68448,48.20068,5973,3,2,20,59,19,4.05,27.5,fr,40008,119,1684388,1,1,Active Shallow Crust,0.0,89.98853,-90.0,03/02/5973 +7.68448,48.20068,9469,7,20,12,47,22,4.05,5.0,fr,40009,189,1684389,1,1,Active Shallow Crust,128.8907,89.99244,0.0,07/20/9469 +7.68448,48.20068,1967,3,30,16,8,49,4.15,5.0,fr,40010,39,1684392,1,2,Active Shallow Crust,0.0,89.98989,0.0,03/30/1967 +7.68448,48.20068,4536,5,16,20,38,52,4.15,5.0,fr,40011,90,1684392,1,2,Active Shallow Crust,0.0,89.98989,0.0,05/16/4536 +7.68448,48.20068,9477,7,12,1,40,38,4.15,5.0,fr,40012,189,1684395,1,1,Active Shallow Crust,240.0089,57.99728,0.0,07/12/9477 +7.68448,48.20068,631,2,27,9,16,5,4.15,5.0,fr,40013,12,1684401,1,1,Active Shallow Crust,128.8968,89.99326,0.0,02/27/0631 +7.68448,48.20068,2910,3,4,4,15,48,4.25,15.0,fr,40014,58,1684405,1,1,Active Shallow Crust,0.0,89.99099,0.0,03/04/2910 +7.68448,48.20068,3790,4,26,3,35,14,4.25,15.0,fr,40015,75,1684408,1,2,Active Shallow Crust,240.0075,57.99445,0.0,04/26/3790 +7.68448,48.20068,4025,5,23,12,49,49,4.25,15.0,fr,40016,80,1684408,1,2,Active Shallow Crust,240.0075,57.99445,0.0,05/23/4025 +7.68448,48.20068,3739,12,9,19,20,22,4.35,5.0,fr,40017,74,1684416,1,2,Active Shallow Crust,0.0,89.9893,0.0,12/09/3739 +7.68448,48.20068,9349,9,27,21,59,14,4.35,5.0,fr,40018,186,1684416,1,2,Active Shallow Crust,0.0,89.9893,0.0,09/27/9349 +7.68448,48.20068,1923,9,12,7,17,4,4.55,15.0,fr,40019,38,1684444,1,1,Active Shallow Crust,240.0095,57.99772,0.0,09/12/1923 +7.68448,48.20068,2341,4,2,5,26,30,4.55,27.5,fr,40020,46,1684445,1,1,Active Shallow Crust,240.0095,57.99769,0.0,04/02/2341 +7.68448,48.20068,8747,9,8,16,18,6,5.05,5.0,fr,40021,174,1684500,1,1,Active Shallow Crust,0.0,89.99043,0.0,09/08/8747 +7.68448,48.20068,2416,4,14,10,29,54,5.25,27.5,fr,40022,48,1684526,1,2,Active Shallow Crust,0.0,89.98956,0.0,04/14/2416 +7.68448,48.20068,2775,2,24,3,27,30,5.25,27.5,fr,40023,55,1684526,1,2,Active Shallow Crust,0.0,89.98956,0.0,02/24/2775 +7.68448,48.20068,5878,10,11,13,36,36,5.25,15.0,fr,40024,117,1684531,1,1,Active Shallow Crust,0.0,89.99039,-90.0,10/11/5878 +7.68448,48.20068,5764,1,8,6,4,26,5.45,15.0,fr,40025,115,1684549,1,1,Active Shallow Crust,0.0,89.99019,0.0,01/08/5764 +6.65036,43.77612,7545,7,9,16,57,45,3.55,5.0,fr,40026,150,1685286,1,1,Active Shallow Crust,0.0,89.99264,-90.0,07/09/7545 +6.65036,43.77612,4134,4,25,14,35,43,3.55,27.5,fr,40027,82,1685288,1,1,Active Shallow Crust,0.0,89.99264,-90.0,04/25/4134 +6.65036,43.77612,3783,12,30,18,37,25,3.55,15.0,fr,40028,75,1685290,1,1,Active Shallow Crust,128.896,89.99636,0.0,12/30/3783 +6.65036,43.77612,5181,8,26,12,28,59,3.65,5.0,fr,40029,103,1685292,1,1,Active Shallow Crust,0.0,89.98702,0.0,08/26/5181 +6.65036,43.77612,1565,8,7,2,8,38,3.65,15.0,fr,40030,31,1685293,1,2,Active Shallow Crust,0.0,89.98702,0.0,08/07/1565 +6.65036,43.77612,3516,12,21,9,24,49,3.65,15.0,fr,40031,70,1685293,1,2,Active Shallow Crust,0.0,89.98702,0.0,12/21/3516 +6.65036,43.77612,6813,8,23,7,46,47,3.75,5.0,fr,40032,136,1685304,1,3,Active Shallow Crust,0.0,89.98843,0.0,08/23/6813 +6.65036,43.77612,7991,6,14,17,55,35,3.75,5.0,fr,40033,159,1685304,1,3,Active Shallow Crust,0.0,89.98843,0.0,06/14/7991 +6.65036,43.77612,2205,9,7,2,5,36,3.75,5.0,fr,40034,44,1685304,1,3,Active Shallow Crust,0.0,89.98843,0.0,09/07/2205 +6.65036,43.77612,3264,4,26,17,55,27,3.75,15.0,fr,40035,65,1685305,1,1,Active Shallow Crust,0.0,89.98843,0.0,04/26/3264 +6.65036,43.77612,7479,5,10,20,11,34,3.85,27.5,fr,40036,149,1685321,1,1,Active Shallow Crust,240.0104,57.99797,0.0,05/10/7479 +6.65036,43.77612,5812,4,7,11,45,2,3.85,5.0,fr,40037,116,1685325,1,1,Active Shallow Crust,128.8958,89.99227,0.0,04/07/5812 +6.65036,43.77612,3714,5,24,23,29,18,3.95,5.0,fr,40038,74,1685328,1,1,Active Shallow Crust,0.0,89.99081,0.0,05/24/3714 +6.65036,43.77612,986,2,15,7,48,17,3.95,5.0,fr,40039,19,1685334,1,1,Active Shallow Crust,0.0,89.99071,-90.0,02/15/0986 +6.65036,43.77612,2731,5,18,14,58,29,4.05,27.5,fr,40040,54,1685342,1,1,Active Shallow Crust,0.0,89.99181,0.0,05/18/2731 +6.65036,43.77612,1960,10,13,6,43,26,4.05,5.0,fr,40041,39,1685349,1,1,Active Shallow Crust,128.8906,89.99386,0.0,10/13/1960 +6.65036,43.77612,898,8,4,18,52,53,4.15,5.0,fr,40042,17,1685352,1,1,Active Shallow Crust,0.0,89.98905,0.0,08/04/0898 +6.65036,43.77612,6556,9,12,2,8,16,4.35,5.0,fr,40043,131,1685376,1,1,Active Shallow Crust,0.0,89.9913,0.0,09/12/6556 +6.65036,43.77612,187,7,25,4,39,11,4.35,5.0,fr,40044,3,1685385,1,1,Active Shallow Crust,128.898,89.98293,0.0,07/25/0187 +6.65036,43.77612,3500,7,20,8,21,32,4.95,27.5,fr,40045,69,1685450,1,1,Active Shallow Crust,0.0,89.98983,0.0,07/20/3500 +6.65036,43.77612,9032,6,18,0,45,31,5.15,15.0,fr,40046,180,1685482,1,1,Active Shallow Crust,128.8849,89.99099,0.0,06/18/9032 +2.99643,46.8061,7474,2,7,18,26,41,3.55,5.0,fr,40047,149,1685763,1,1,Active Shallow Crust,240.0121,57.99809,0.0,02/07/7474 +2.99643,46.8061,2802,10,22,8,9,48,3.85,5.0,fr,40048,56,1685796,1,1,Active Shallow Crust,0.0,89.99023,0.0,10/22/2802 +2.99643,46.8061,5808,12,4,22,43,58,3.95,15.0,fr,40049,116,1685809,1,1,Active Shallow Crust,0.0,89.98911,0.0,12/04/5808 +2.99643,46.8061,4027,11,29,1,12,42,4.05,5.0,fr,40050,80,1685823,1,1,Active Shallow Crust,240.0063,58.00563,0.0,11/29/4027 +2.99643,46.8061,6255,10,24,17,11,14,4.15,15.0,fr,40051,125,1685833,1,1,Active Shallow Crust,0.0,89.98962,0.0,10/24/6255 +2.99643,46.8061,9614,9,22,16,55,2,4.45,5.0,fr,40052,192,1685868,1,1,Active Shallow Crust,0.0,89.9902,0.0,09/22/9614 +2.99643,46.8061,2637,5,8,2,46,50,4.75,5.0,fr,40053,52,1685910,1,1,Active Shallow Crust,0.0,89.99035,-90.0,05/08/2637 +-1.3582,50.33938,4374,6,20,3,11,49,3.65,15.0,fr,40054,87,1686253,1,1,Active Shallow Crust,0.0,89.98996,0.0,06/20/4374 +-1.3582,50.33938,1555,1,18,14,27,26,3.75,15.0,fr,40055,31,1686271,1,1,Active Shallow Crust,0.0,89.98965,-90.0,01/18/1555 +-1.3582,50.33938,327,5,28,0,58,57,4.35,15.0,fr,40056,6,1686337,1,1,Active Shallow Crust,0.0,89.98975,0.0,05/28/0327 +-1.3582,50.33938,613,6,6,13,35,52,4.55,5.0,fr,40057,12,1686360,1,1,Active Shallow Crust,0.0,89.98982,0.0,06/06/0613 +-0.7407,48.78791,4819,10,9,12,14,8,3.55,5.0,fr,40058,96,1686720,1,1,Active Shallow Crust,0.0,89.99004,0.0,10/09/4819 +-0.7407,48.78791,1256,11,12,15,8,38,3.65,5.0,fr,40059,25,1686741,1,1,Active Shallow Crust,128.9002,89.96351,0.0,11/12/1256 +-0.7407,48.78791,64,2,9,15,17,8,3.75,5.0,fr,40060,1,1686744,1,1,Active Shallow Crust,0.0,89.9901,0.0,02/09/0064 +-0.7407,48.78791,5593,7,15,0,59,58,3.95,5.0,fr,40061,111,1686768,1,1,Active Shallow Crust,0.0,89.99004,0.0,07/15/5593 +-0.7407,48.78791,1805,4,27,2,39,6,3.95,15.0,fr,40062,36,1686769,1,1,Active Shallow Crust,0.0,89.99004,0.0,04/27/1805 +-0.7407,48.78791,79,5,13,4,26,57,4.05,15.0,fr,40063,1,1686781,1,1,Active Shallow Crust,0.0,89.99019,0.0,05/13/0079 +-0.7407,48.78791,2470,3,25,23,23,55,4.15,5.0,fr,40064,49,1686792,1,2,Active Shallow Crust,0.0,89.99001,0.0,03/25/2470 +-0.7407,48.78791,9152,5,30,4,33,36,4.15,5.0,fr,40065,183,1686792,1,2,Active Shallow Crust,0.0,89.99001,0.0,05/30/9152 +-0.7407,48.78791,8161,12,3,11,46,5,4.15,27.5,fr,40066,163,1686794,1,1,Active Shallow Crust,0.0,89.99001,0.0,12/03/8161 +-0.7407,48.78791,4,4,3,14,47,43,4.25,5.0,fr,40067,0,1686804,1,1,Active Shallow Crust,0.0,89.98998,0.0,04/03/0004 +-0.7407,48.78791,4862,12,26,6,53,2,4.35,15.0,fr,40068,97,1686823,1,1,Active Shallow Crust,0.0,89.98997,-90.0,12/26/4862 +-0.7407,48.78791,139,10,19,8,8,40,4.45,5.0,fr,40069,2,1686828,1,1,Active Shallow Crust,0.0,89.98998,0.0,10/19/0139 +-0.7407,48.78791,9336,6,21,0,28,30,4.45,15.0,fr,40070,186,1686832,1,1,Active Shallow Crust,240.0058,57.9948,0.0,06/21/9336 +-1.55136,44.11297,1652,2,21,4,47,12,5.55,5.0,fr,40071,33,1687440,1,1,Active Shallow Crust,0.0,89.99004,0.0,02/21/1652 +-1.50009,46.98444,6477,3,13,17,17,17,3.55,5.0,fr,40072,129,1687680,1,7,Active Shallow Crust,0.0,89.98968,0.0,03/13/6477 +-1.50009,46.98444,1784,12,21,0,27,1,3.55,5.0,fr,40073,35,1687680,1,7,Active Shallow Crust,0.0,89.98968,0.0,12/21/1784 +-1.50009,46.98444,2826,10,24,14,20,27,3.55,5.0,fr,40074,56,1687680,1,7,Active Shallow Crust,0.0,89.98968,0.0,10/24/2826 +-1.50009,46.98444,7085,1,26,6,34,10,3.55,5.0,fr,40075,141,1687680,1,7,Active Shallow Crust,0.0,89.98968,0.0,01/26/7085 +-1.50009,46.98444,8057,7,12,22,48,44,3.55,5.0,fr,40076,161,1687680,1,7,Active Shallow Crust,0.0,89.98968,0.0,07/12/8057 +-1.50009,46.98444,7295,9,24,16,22,4,3.55,5.0,fr,40077,145,1687680,1,7,Active Shallow Crust,0.0,89.98968,0.0,09/24/7295 +-1.50009,46.98444,6836,2,24,9,28,16,3.55,5.0,fr,40078,136,1687680,1,7,Active Shallow Crust,0.0,89.98968,0.0,02/24/6836 +-1.50009,46.98444,8291,7,30,6,36,10,3.55,15.0,fr,40079,165,1687681,1,1,Active Shallow Crust,0.0,89.98968,0.0,07/30/8291 +-1.50009,46.98444,5135,3,25,15,35,36,3.55,27.5,fr,40080,102,1687682,1,1,Active Shallow Crust,0.0,89.98968,0.0,03/25/5135 +-1.50009,46.98444,3711,5,26,5,9,53,3.55,5.0,fr,40081,74,1687683,1,1,Active Shallow Crust,240.0123,57.99832,0.0,05/26/3711 +-1.50009,46.98444,338,6,6,21,19,37,3.55,5.0,fr,40082,6,1687686,1,1,Active Shallow Crust,0.0,89.98956,-90.0,06/06/0338 +-1.50009,46.98444,1928,8,18,11,10,42,3.65,5.0,fr,40083,38,1687692,1,3,Active Shallow Crust,0.0,89.98927,0.0,08/18/1928 +-1.50009,46.98444,774,4,9,16,57,8,3.65,5.0,fr,40084,15,1687692,1,3,Active Shallow Crust,0.0,89.98927,0.0,04/09/0774 +-1.50009,46.98444,3244,2,22,10,37,2,3.65,5.0,fr,40085,64,1687692,1,3,Active Shallow Crust,0.0,89.98927,0.0,02/22/3244 +-1.50009,46.98444,6503,3,17,9,20,14,3.65,15.0,fr,40086,130,1687693,1,1,Active Shallow Crust,0.0,89.98927,0.0,03/17/6503 +-1.50009,46.98444,2960,8,28,6,30,56,3.65,15.0,fr,40087,59,1687702,1,1,Active Shallow Crust,128.9003,89.96339,0.0,08/28/2960 +-1.50009,46.98444,1622,7,12,16,12,42,3.75,5.0,fr,40088,32,1687704,1,2,Active Shallow Crust,0.0,89.99044,0.0,07/12/1622 +-1.50009,46.98444,2202,6,21,11,51,21,3.75,5.0,fr,40089,44,1687704,1,2,Active Shallow Crust,0.0,89.99044,0.0,06/21/2202 +-1.50009,46.98444,137,5,23,4,54,41,3.75,15.0,fr,40090,2,1687705,1,1,Active Shallow Crust,0.0,89.99044,0.0,05/23/0137 +-1.50009,46.98444,7059,11,30,0,55,42,3.75,27.5,fr,40091,141,1687706,1,2,Active Shallow Crust,0.0,89.99044,0.0,11/30/7059 +-1.50009,46.98444,2512,5,28,11,17,14,3.75,27.5,fr,40092,50,1687706,1,2,Active Shallow Crust,0.0,89.99044,0.0,05/28/2512 +-1.50009,46.98444,179,1,28,0,45,2,3.95,5.0,fr,40093,3,1687728,1,1,Active Shallow Crust,0.0,89.99023,0.0,01/28/0179 +-1.50009,46.98444,6931,6,17,12,27,7,3.95,5.0,fr,40094,138,1687737,1,1,Active Shallow Crust,128.9004,89.99349,0.0,06/17/6931 +-1.50009,46.98444,9018,9,15,11,5,52,4.05,15.0,fr,40095,180,1687741,1,1,Active Shallow Crust,0.0,89.99033,0.0,09/15/9018 +-1.50009,46.98444,4019,8,23,14,25,13,4.05,27.5,fr,40096,80,1687742,1,1,Active Shallow Crust,0.0,89.99033,0.0,08/23/4019 +-1.50009,46.98444,9565,12,27,7,35,22,4.15,5.0,fr,40097,191,1687752,1,2,Active Shallow Crust,0.0,89.98965,0.0,12/27/9565 +-1.50009,46.98444,2745,10,21,11,3,5,4.15,5.0,fr,40098,54,1687752,1,2,Active Shallow Crust,0.0,89.98965,0.0,10/21/2745 +-1.50009,46.98444,2892,1,21,20,31,15,4.35,5.0,fr,40099,57,1687776,1,1,Active Shallow Crust,0.0,89.98973,0.0,01/21/2892 +-1.50009,46.98444,9948,11,2,10,1,45,4.65,5.0,fr,40100,198,1687812,1,1,Active Shallow Crust,0.0,89.98982,0.0,11/02/9948 +-1.50009,46.98444,4391,6,28,4,54,17,4.75,5.0,fr,40101,87,1687830,1,1,Active Shallow Crust,0.0,89.98994,-90.0,06/28/4391 +-1.50009,46.98444,5287,3,4,2,21,40,4.95,15.0,fr,40102,105,1687849,1,1,Active Shallow Crust,0.0,89.99004,0.0,03/04/5287 +-1.50009,46.98444,464,6,9,10,12,38,5.15,5.0,fr,40103,9,1687875,1,1,Active Shallow Crust,240.02,58.0,0.0,06/09/0464 +4.61031,41.90544,3004,9,12,17,11,40,3.55,27.5,fr,40104,60,1688165,1,1,Active Shallow Crust,240.0124,57.99744,0.0,09/12/3004 +4.61031,41.90544,7644,6,2,9,53,3,3.65,15.0,fr,40105,152,1688176,1,1,Active Shallow Crust,240.0003,58.0132,0.0,06/02/7644 +4.61031,41.90544,9897,8,25,19,2,54,4.15,5.0,fr,40106,197,1688232,1,1,Active Shallow Crust,0.0,89.98872,0.0,08/25/9897 +4.61031,41.90544,6584,6,24,0,7,21,4.75,5.0,fr,40107,131,1688304,1,1,Active Shallow Crust,0.0,89.99057,0.0,06/24/6584 +2.31496,48.68982,8181,6,29,22,56,27,3.55,5.0,fr,40108,163,1688640,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/29/8181 +2.31496,48.68982,6055,7,4,23,39,0,3.65,5.0,fr,40109,121,1688652,1,1,Active Shallow Crust,0.0,89.9911,0.0,07/04/6055 +2.31496,48.68982,3430,11,12,17,28,13,3.85,15.0,fr,40110,68,1688686,1,1,Active Shallow Crust,128.8956,89.99411,0.0,11/12/3430 +2.31496,48.68982,1083,10,2,15,52,6,4.65,5.0,fr,40111,21,1688778,1,1,Active Shallow Crust,0.0,89.98956,-90.0,10/02/1083 +-2.43639,43.4642,4474,11,6,0,55,25,3.55,5.0,fr,40112,89,1689120,1,1,Active Shallow Crust,0.0,89.98902,0.0,11/06/4474 +-2.43639,43.4642,8535,4,7,6,21,56,3.55,15.0,fr,40113,170,1689127,1,1,Active Shallow Crust,0.0,89.98889,-90.0,04/07/8535 +-2.43639,43.4642,4085,8,31,14,24,21,3.75,27.5,fr,40114,81,1689149,1,1,Active Shallow Crust,240.0079,58.01754,0.0,08/31/4085 +-2.43639,43.4642,2195,4,18,21,7,10,3.75,5.0,fr,40115,43,1689153,1,1,Active Shallow Crust,128.897,89.96744,0.0,04/18/2195 +-2.43639,43.4642,8704,7,24,4,8,5,3.95,15.0,fr,40116,174,1689172,1,1,Active Shallow Crust,240.0193,58.00507,0.0,07/24/8704 +-2.43639,43.4642,7328,1,25,14,31,59,4.25,5.0,fr,40117,146,1689204,1,1,Active Shallow Crust,0.0,89.99019,0.0,01/25/7328 +-2.43639,43.4642,9339,12,5,21,44,35,4.25,15.0,fr,40118,186,1689205,1,1,Active Shallow Crust,0.0,89.99019,0.0,12/05/9339 +-2.43639,43.4642,5685,9,22,12,25,13,5.55,5.0,fr,40119,113,1689360,1,1,Active Shallow Crust,0.0,89.99011,0.0,09/22/5685 +0.38065,49.64911,3914,10,22,5,32,54,3.55,5.0,fr,40120,78,1689600,1,1,Active Shallow Crust,0.0,89.9898,0.0,10/22/3914 +0.38065,49.64911,5718,9,10,12,12,42,3.55,5.0,fr,40121,114,1689603,1,1,Active Shallow Crust,240.0125,57.99823,0.0,09/10/5718 +0.38065,49.64911,8544,7,18,19,31,37,3.55,15.0,fr,40122,170,1689607,1,2,Active Shallow Crust,0.0,89.99009,-90.0,07/18/8544 +0.38065,49.64911,2097,8,29,0,47,51,3.55,15.0,fr,40123,41,1689607,1,2,Active Shallow Crust,0.0,89.99009,-90.0,08/29/2097 +0.38065,49.64911,5025,2,11,3,42,22,3.65,5.0,fr,40124,100,1689615,1,1,Active Shallow Crust,240.0014,58.01291,0.0,02/11/5025 +0.38065,49.64911,2004,10,17,23,13,29,3.75,15.0,fr,40125,40,1689625,1,1,Active Shallow Crust,0.0,89.98995,0.0,10/17/2004 +0.38065,49.64911,18,12,30,9,56,12,3.75,5.0,fr,40126,0,1689633,1,1,Active Shallow Crust,128.8963,89.96735,0.0,12/30/0018 +0.38065,49.64911,9038,10,11,13,11,29,3.85,5.0,fr,40127,180,1689636,1,1,Active Shallow Crust,0.0,89.98989,0.0,10/11/9038 +0.38065,49.64911,3373,7,5,3,38,15,3.85,5.0,fr,40128,67,1689639,1,1,Active Shallow Crust,240.0113,57.99786,0.0,07/05/3373 +0.38065,49.64911,3929,1,6,20,36,41,3.85,5.0,fr,40129,78,1689645,1,1,Active Shallow Crust,128.8953,89.99364,0.0,01/06/3929 +0.38065,49.64911,1413,3,14,18,32,39,3.95,5.0,fr,40130,28,1689648,1,2,Active Shallow Crust,0.0,89.98996,0.0,03/14/1413 +0.38065,49.64911,5482,6,16,5,18,42,3.95,5.0,fr,40131,109,1689648,1,2,Active Shallow Crust,0.0,89.98996,0.0,06/16/5482 +0.38065,49.64911,9424,5,28,8,19,18,4.15,5.0,fr,40132,188,1689672,1,1,Active Shallow Crust,0.0,89.98997,0.0,05/28/9424 +0.38065,49.64911,6378,5,14,11,50,9,4.55,5.0,fr,40133,127,1689723,1,1,Active Shallow Crust,240.0103,57.99752,0.0,05/14/6378 +0.38065,49.64911,1353,9,1,13,50,30,5.35,5.0,fr,40134,27,1689816,1,1,Active Shallow Crust,0.0,89.98997,0.0,09/01/1353 +0.0944,46.57055,7132,6,24,20,8,8,3.55,5.0,fr,40135,142,1690560,1,2,Active Shallow Crust,0.0,89.99004,0.0,06/24/7132 +0.0944,46.57055,9956,3,5,17,25,5,3.55,5.0,fr,40136,199,1690560,1,2,Active Shallow Crust,0.0,89.99004,0.0,03/05/9956 +0.0944,46.57055,6789,2,5,2,32,16,3.55,15.0,fr,40137,135,1690561,1,1,Active Shallow Crust,0.0,89.99004,0.0,02/05/6789 +0.0944,46.57055,9742,9,8,2,6,19,3.55,5.0,fr,40138,194,1690563,1,1,Active Shallow Crust,240.0122,57.99818,0.0,09/08/9742 +0.0944,46.57055,6689,10,14,3,51,38,3.65,5.0,fr,40139,133,1690572,1,1,Active Shallow Crust,0.0,89.98996,0.0,10/14/6689 +0.0944,46.57055,943,4,8,18,9,23,3.65,27.5,fr,40140,18,1690574,1,1,Active Shallow Crust,0.0,89.98996,0.0,04/08/0943 +0.0944,46.57055,1679,11,9,0,27,27,3.75,5.0,fr,40141,33,1690584,1,1,Active Shallow Crust,0.0,89.99002,0.0,11/09/1679 +0.0944,46.57055,4337,5,27,14,4,19,3.75,5.0,fr,40142,86,1690587,1,2,Active Shallow Crust,240.0083,58.01757,0.0,05/27/4337 +0.0944,46.57055,1966,9,20,14,51,35,3.75,5.0,fr,40143,39,1690587,1,2,Active Shallow Crust,240.0083,58.01757,0.0,09/20/1966 +0.0944,46.57055,3363,5,3,13,35,50,3.95,5.0,fr,40144,67,1690608,1,1,Active Shallow Crust,0.0,89.99002,0.0,05/03/3363 +0.0944,46.57055,5220,7,10,6,59,52,3.95,5.0,fr,40145,104,1690611,1,1,Active Shallow Crust,240.0198,58.00499,0.0,07/10/5220 +0.0944,46.57055,5727,2,16,3,51,8,3.95,15.0,fr,40146,114,1690612,1,1,Active Shallow Crust,240.0198,58.00499,0.0,02/16/5727 +0.0944,46.57055,5588,2,11,10,16,23,4.05,5.0,fr,40147,111,1690620,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/11/5588 +0.0944,46.57055,1488,4,2,1,27,24,4.15,27.5,fr,40148,29,1690634,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/02/1488 +1.73147,48.40072,4310,8,1,1,1,12,3.55,15.0,fr,40149,86,1691521,1,1,Active Shallow Crust,0.0,89.98996,0.0,08/01/4310 +1.73147,48.40072,8625,2,10,6,21,32,3.75,15.0,fr,40150,172,1691545,1,1,Active Shallow Crust,0.0,89.98936,0.0,02/10/8625 +0.86047,47.95742,3656,10,21,19,48,23,3.55,5.0,fr,40151,73,1692000,1,1,Active Shallow Crust,0.0,89.98987,0.0,10/21/3656 +0.86047,47.95742,4788,7,6,14,58,7,3.65,5.0,fr,40152,95,1692012,1,1,Active Shallow Crust,0.0,89.99022,0.0,07/06/4788 +0.86047,47.95742,575,1,8,4,32,48,3.85,5.0,fr,40153,11,1692045,1,1,Active Shallow Crust,128.8956,89.99373,0.0,01/08/0575 +0.86047,47.95742,9510,9,30,20,17,58,4.25,5.0,fr,40154,190,1692084,1,1,Active Shallow Crust,0.0,89.98982,0.0,09/30/9510 +0.86047,47.95742,7267,10,31,21,16,40,4.25,15.0,fr,40155,145,1692085,1,1,Active Shallow Crust,0.0,89.98982,0.0,10/31/7267 +7.97043,48.61362,2368,6,6,16,6,57,3.55,5.0,fr,40156,47,1692480,1,3,Active Shallow Crust,359.9967,89.99333,0.0,06/06/2368 +7.97043,48.61362,348,11,2,4,31,40,3.55,5.0,fr,40157,6,1692480,1,3,Active Shallow Crust,359.9967,89.99333,0.0,11/02/0348 +7.97043,48.61362,727,1,8,0,38,51,3.55,5.0,fr,40158,14,1692480,1,3,Active Shallow Crust,359.9967,89.99333,0.0,01/08/0727 +7.97043,48.61362,7587,10,21,15,36,55,3.55,15.0,fr,40159,151,1692481,1,1,Active Shallow Crust,359.9967,89.99333,0.0,10/21/7587 +7.97043,48.61362,1658,6,29,14,37,39,3.55,5.0,fr,40160,33,1692483,1,1,Active Shallow Crust,240.0123,57.99849,0.0,06/29/1658 +7.97043,48.61362,5320,5,3,15,28,31,3.55,15.0,fr,40161,106,1692484,1,1,Active Shallow Crust,240.0123,57.99849,0.0,05/03/5320 +7.97043,48.61362,5114,12,30,13,50,43,3.55,5.0,fr,40162,102,1692489,1,1,Active Shallow Crust,128.8968,89.99333,0.0,12/30/5114 +7.97043,48.61362,8094,5,22,6,47,41,3.65,5.0,fr,40163,161,1692492,1,3,Active Shallow Crust,0.0,89.98811,0.0,05/22/8094 +7.97043,48.61362,2874,5,12,2,3,8,3.65,5.0,fr,40164,57,1692492,1,3,Active Shallow Crust,0.0,89.98811,0.0,05/12/2874 +7.97043,48.61362,8779,4,6,1,45,3,3.65,5.0,fr,40165,175,1692492,1,3,Active Shallow Crust,0.0,89.98811,0.0,04/06/8779 +7.97043,48.61362,4658,7,19,22,22,58,3.65,15.0,fr,40166,93,1692493,1,1,Active Shallow Crust,0.0,89.98811,0.0,07/19/4658 +7.97043,48.61362,5081,9,7,20,14,43,3.65,15.0,fr,40167,101,1692502,1,1,Active Shallow Crust,128.8996,89.96356,0.0,09/07/5081 +7.97043,48.61362,5290,4,23,3,16,5,3.75,5.0,fr,40168,105,1692504,1,2,Active Shallow Crust,0.0,89.98941,0.0,04/23/5290 +7.97043,48.61362,6092,2,23,9,23,27,3.75,5.0,fr,40169,121,1692504,1,2,Active Shallow Crust,0.0,89.98941,0.0,02/23/6092 +7.97043,48.61362,3160,2,24,12,57,45,3.75,27.5,fr,40170,63,1692506,1,1,Active Shallow Crust,0.0,89.98941,0.0,02/24/3160 +7.97043,48.61362,4335,2,27,20,39,12,3.85,5.0,fr,40171,86,1692516,1,2,Active Shallow Crust,0.0,89.99056,0.0,02/27/4335 +7.97043,48.61362,8606,7,23,6,31,10,3.85,5.0,fr,40172,172,1692516,1,2,Active Shallow Crust,0.0,89.99056,0.0,07/23/8606 +7.97043,48.61362,5956,4,13,19,2,40,3.85,27.5,fr,40173,119,1692518,1,1,Active Shallow Crust,0.0,89.99056,0.0,04/13/5956 +7.97043,48.61362,6119,4,4,5,32,42,3.85,15.0,fr,40174,122,1692520,1,2,Active Shallow Crust,240.0112,57.99869,0.0,04/04/6119 +7.97043,48.61362,6901,1,21,18,42,18,3.85,15.0,fr,40175,138,1692520,1,2,Active Shallow Crust,240.0112,57.99869,0.0,01/21/6901 +7.97043,48.61362,9084,4,14,11,46,38,3.85,5.0,fr,40176,181,1692525,1,1,Active Shallow Crust,128.8955,89.99292,0.0,04/14/9084 +7.97043,48.61362,6763,6,4,17,16,30,3.95,5.0,fr,40177,135,1692528,1,2,Active Shallow Crust,0.0,89.99158,0.0,06/04/6763 +7.97043,48.61362,8715,2,18,3,57,2,3.95,5.0,fr,40178,174,1692528,1,2,Active Shallow Crust,0.0,89.99158,0.0,02/18/8715 +7.97043,48.61362,8932,4,7,14,36,9,3.95,15.0,fr,40179,178,1692529,1,1,Active Shallow Crust,0.0,89.99158,0.0,04/07/8932 +7.97043,48.61362,6194,11,13,8,24,15,4.05,15.0,fr,40180,123,1692550,1,1,Active Shallow Crust,128.8911,89.9925,0.0,11/13/6194 +7.97043,48.61362,7667,7,3,17,43,28,4.15,5.0,fr,40181,153,1692552,1,1,Active Shallow Crust,0.0,89.98997,0.0,07/03/7667 +7.97043,48.61362,5238,9,29,2,13,41,4.25,5.0,fr,40182,104,1692567,1,1,Active Shallow Crust,240.008,57.9941,0.0,09/29/5238 +7.97043,48.61362,8598,2,17,18,44,50,4.35,5.0,fr,40183,171,1692576,1,1,Active Shallow Crust,0.0,89.98938,0.0,02/17/8598 +7.97043,48.61362,4007,8,1,20,27,29,4.35,5.0,fr,40184,80,1692579,1,1,Active Shallow Crust,240.0095,57.99587,0.0,08/01/4007 +7.97043,48.61362,3631,6,25,4,41,10,4.45,5.0,fr,40185,72,1692594,1,1,Active Shallow Crust,0.0,89.99043,-90.0,06/25/3631 +7.97043,48.61362,4182,8,11,9,37,17,4.85,15.0,fr,40186,83,1692643,1,1,Active Shallow Crust,0.0,89.98943,-90.0,08/11/4182 +7.97043,48.61362,2195,2,19,10,29,56,5.35,5.0,fr,40187,43,1692702,1,1,Active Shallow Crust,0.0,89.98981,-90.0,02/19/2195 +3.37386,47.12076,3780,11,7,6,58,1,3.55,27.5,fr,40188,75,1692962,1,1,Active Shallow Crust,0.0,89.98971,0.0,11/07/3780 +3.37386,47.12076,3658,1,25,0,21,59,3.65,5.0,fr,40189,73,1692972,1,1,Active Shallow Crust,0.0,89.99083,0.0,01/25/3658 +3.37386,47.12076,2053,7,14,1,23,51,4.25,5.0,fr,40190,41,1693044,1,1,Active Shallow Crust,0.0,89.98927,0.0,07/14/2053 +3.37386,47.12076,9135,9,7,4,30,32,4.55,5.0,fr,40191,182,1693080,1,1,Active Shallow Crust,0.0,89.99023,0.0,09/07/9135 +4.08927,52.71251,4311,9,27,4,1,46,4.55,5.0,fr,40192,86,1693560,1,1,Active Shallow Crust,0.0,89.99034,0.0,09/27/4311 +2.49272,46.59787,8522,2,24,12,15,12,3.55,5.0,fr,40193,170,1693920,1,2,Active Shallow Crust,0.0,89.98961,0.0,02/24/8522 +2.49272,46.59787,2915,4,22,6,30,36,3.55,5.0,fr,40194,58,1693920,1,2,Active Shallow Crust,0.0,89.98961,0.0,04/22/2915 +2.49272,46.59787,4686,1,11,6,4,44,3.65,5.0,fr,40195,93,1693932,1,1,Active Shallow Crust,0.0,89.99074,0.0,01/11/4686 +2.49272,46.59787,7465,11,19,18,27,28,3.75,15.0,fr,40196,149,1693945,1,1,Active Shallow Crust,0.0,89.98899,0.0,11/19/7465 +2.49272,46.59787,8589,7,16,19,32,13,3.75,15.0,fr,40197,171,1693948,1,1,Active Shallow Crust,240.008,58.01764,0.0,07/16/8589 +2.49272,46.59787,3245,2,17,1,54,6,4.45,5.0,fr,40198,64,1694028,1,1,Active Shallow Crust,0.0,89.99017,0.0,02/17/3245 +2.49272,46.59787,4582,4,26,11,44,3,5.05,5.0,fr,40199,91,1694106,1,1,Active Shallow Crust,0.0,89.99003,-90.0,04/26/4582 +-1.38046,42.47656,5850,12,14,10,7,18,3.55,5.0,fr,40200,116,1694400,1,3,Active Shallow Crust,0.0,89.9907,0.0,12/14/5850 +-1.38046,42.47656,3202,2,24,15,58,26,3.55,5.0,fr,40201,64,1694400,1,3,Active Shallow Crust,0.0,89.9907,0.0,02/24/3202 +-1.38046,42.47656,5885,1,22,17,37,32,3.55,5.0,fr,40202,117,1694400,1,3,Active Shallow Crust,0.0,89.9907,0.0,01/22/5885 +-1.38046,42.47656,9619,7,15,18,11,49,3.55,15.0,fr,40203,192,1694401,1,1,Active Shallow Crust,0.0,89.9907,0.0,07/15/9619 +-1.38046,42.47656,4749,6,18,15,10,3,3.55,27.5,fr,40204,94,1694402,1,1,Active Shallow Crust,0.0,89.9907,0.0,06/18/4749 +-1.38046,42.47656,2958,2,12,22,48,28,3.55,5.0,fr,40205,59,1694406,1,1,Active Shallow Crust,0.0,89.99059,-90.0,02/12/2958 +-1.38046,42.47656,4644,4,13,5,7,44,3.65,5.0,fr,40206,92,1694415,1,1,Active Shallow Crust,240.0009,58.01278,0.0,04/13/4644 +-1.38046,42.47656,1714,12,26,16,13,27,3.85,27.5,fr,40207,34,1694441,1,1,Active Shallow Crust,240.0102,57.9976,0.0,12/26/1714 +-1.38046,42.47656,7222,11,24,8,45,29,3.85,5.0,fr,40208,144,1694445,1,1,Active Shallow Crust,128.896,89.99408,0.0,11/24/7222 +-1.38046,42.47656,3410,3,4,0,24,24,3.95,5.0,fr,40209,68,1694448,1,3,Active Shallow Crust,0.0,89.98944,0.0,03/04/3410 +-1.38046,42.47656,1034,12,10,22,31,45,3.95,5.0,fr,40210,20,1694448,1,3,Active Shallow Crust,0.0,89.98944,0.0,12/10/1034 +-1.38046,42.47656,1246,3,9,7,0,41,3.95,5.0,fr,40211,24,1694448,1,3,Active Shallow Crust,0.0,89.98944,0.0,03/09/1246 +-1.38046,42.47656,4506,3,31,5,30,18,3.95,15.0,fr,40212,90,1694452,1,1,Active Shallow Crust,240.0193,58.00483,0.0,03/31/4506 +-1.38046,42.47656,3786,11,12,16,18,28,3.95,5.0,fr,40213,75,1694457,1,1,Active Shallow Crust,128.9008,89.99355,0.0,11/12/3786 +-1.38046,42.47656,3666,4,25,1,50,6,4.05,5.0,fr,40214,73,1694463,1,1,Active Shallow Crust,240.0053,58.00581,0.0,04/25/3666 +-1.38046,42.47656,2477,1,25,6,36,51,4.05,5.0,fr,40215,49,1694469,1,1,Active Shallow Crust,128.8909,89.99373,0.0,01/25/2477 +-1.38046,42.47656,6456,1,4,13,48,45,4.15,5.0,fr,40216,129,1694472,1,1,Active Shallow Crust,0.0,89.98975,0.0,01/04/6456 +-1.38046,42.47656,6559,7,6,15,21,40,4.25,5.0,fr,40217,131,1694484,1,1,Active Shallow Crust,0.0,89.99004,0.0,07/06/6559 +-1.38046,42.47656,239,5,14,4,54,14,4.55,5.0,fr,40218,4,1694523,1,1,Active Shallow Crust,240.0082,57.9971,0.0,05/14/0239 +-1.38046,42.47656,1436,3,4,8,15,45,4.95,5.0,fr,40219,28,1694571,1,1,Active Shallow Crust,240.0102,58.00415,0.0,03/04/1436 +-1.38046,42.47656,2513,9,26,23,11,37,4.95,5.0,fr,40220,50,1694574,1,1,Active Shallow Crust,0.0,89.98987,-90.0,09/26/2513 +9.58012,49.66058,8320,5,10,3,13,15,3.75,27.5,fr,40221,166,1694915,1,1,Active Shallow Crust,128.8941,89.96754,0.0,05/10/8320 +-3.10738,42.40843,6052,10,5,20,24,18,3.55,5.0,fr,40222,121,1695360,1,1,Active Shallow Crust,0.0,89.98883,0.0,10/05/6052 +-3.10738,42.40843,7823,3,7,13,9,58,3.55,27.5,fr,40223,156,1695362,1,1,Active Shallow Crust,0.0,89.98883,0.0,03/07/7823 +-3.10738,42.40843,5354,9,7,18,54,17,3.55,5.0,fr,40224,107,1695366,1,1,Active Shallow Crust,0.0,89.9887,-90.0,09/07/5354 +-3.10738,42.40843,9221,1,10,17,10,18,3.55,5.0,fr,40225,184,1695369,1,1,Active Shallow Crust,128.896,89.99442,0.0,01/10/9221 +-3.10738,42.40843,482,9,22,11,6,12,4.45,5.0,fr,40226,9,1695468,1,1,Active Shallow Crust,0.0,89.98943,0.0,09/22/0482 +-3.10738,42.40843,6221,5,28,20,39,38,4.55,27.5,fr,40227,124,1695482,1,1,Active Shallow Crust,0.0,89.99058,0.0,05/28/6221 +2.23145,40.87977,2370,6,26,3,45,45,3.55,5.0,fr,40228,47,1696326,1,1,Active Shallow Crust,0.0,89.98843,-90.0,06/26/2370 +2.23145,40.87977,1676,2,20,22,40,16,3.65,5.0,fr,40229,33,1696332,1,1,Active Shallow Crust,0.0,89.98981,0.0,02/20/1676 +2.23145,40.87977,7524,8,31,12,42,7,3.75,5.0,fr,40230,150,1696344,1,1,Active Shallow Crust,0.0,89.99091,0.0,08/31/7524 +2.23145,40.87977,6538,3,13,16,36,0,3.85,5.0,fr,40231,130,1696356,1,1,Active Shallow Crust,0.0,89.9892,0.0,03/13/6538 +2.23145,40.87977,1245,1,28,21,6,12,3.95,5.0,fr,40232,24,1696368,1,1,Active Shallow Crust,0.0,89.99038,0.0,01/28/1245 +2.23145,40.87977,8859,7,29,8,7,46,3.95,5.0,fr,40233,177,1696371,1,1,Active Shallow Crust,240.0192,58.00474,0.0,07/29/8859 +2.23145,40.87977,4588,12,15,5,39,49,4.45,15.0,fr,40234,91,1696429,1,1,Active Shallow Crust,0.0,89.99053,0.0,12/15/4588 +2.23145,40.87977,3456,3,21,8,46,27,4.85,15.0,fr,40235,69,1696483,1,1,Active Shallow Crust,0.0,89.98964,-90.0,03/21/3456 +6.13403,42.91096,5332,4,5,1,11,17,3.85,5.0,fr,40236,106,1696836,1,1,Active Shallow Crust,0.0,89.98954,0.0,04/05/5332 +6.13403,42.91096,9967,5,25,7,4,49,4.25,5.0,fr,40237,199,1696887,1,1,Active Shallow Crust,240.0069,57.9946,0.0,05/25/9967 +3.51608,51.56744,9025,1,30,15,31,58,4.65,5.0,fr,40238,180,1697412,1,1,Active Shallow Crust,0.0,89.99028,0.0,01/30/9025 +3.57871,43.09879,3119,11,16,9,49,45,3.55,15.0,fr,40239,62,1698241,1,1,Active Shallow Crust,0.0,89.98895,0.0,11/16/3119 +3.57871,43.09879,4328,11,27,8,18,41,3.65,5.0,fr,40240,86,1698252,1,1,Active Shallow Crust,0.0,89.99016,0.0,11/27/4328 +3.57871,43.09879,6140,9,6,2,29,56,3.65,5.0,fr,40241,122,1698255,1,1,Active Shallow Crust,240.0006,58.01317,0.0,09/06/6140 +3.57871,43.09879,2473,7,4,5,25,39,3.75,15.0,fr,40242,49,1698265,1,2,Active Shallow Crust,0.0,89.99123,0.0,07/04/2473 +3.57871,43.09879,2838,2,6,20,50,11,3.75,15.0,fr,40243,56,1698265,1,2,Active Shallow Crust,0.0,89.99123,0.0,02/06/2838 +3.57871,43.09879,2434,1,23,5,58,55,3.85,5.0,fr,40244,48,1698276,1,1,Active Shallow Crust,0.0,89.98958,0.0,01/23/2434 +3.57871,43.09879,4037,11,23,11,31,57,3.95,5.0,fr,40245,80,1698288,1,1,Active Shallow Crust,0.0,89.99071,0.0,11/23/4037 +3.57871,43.09879,6309,2,26,10,23,30,3.95,15.0,fr,40246,126,1698292,1,1,Active Shallow Crust,240.0195,58.0052,0.0,02/26/6309 +3.57871,43.09879,2923,3,16,13,21,38,4.15,5.0,fr,40247,58,1698315,1,1,Active Shallow Crust,240.0081,57.99706,0.0,03/16/2923 +3.57871,43.09879,1850,12,19,8,49,23,4.65,5.0,fr,40248,36,1698381,1,1,Active Shallow Crust,128.8921,89.98704,0.0,12/19/1850 +4.56939,49.07105,6589,3,6,13,29,59,4.05,15.0,fr,40249,131,1698781,1,1,Active Shallow Crust,0.0,89.98885,0.0,03/06/6589 +6.20008,44.64995,1500,8,11,2,31,15,3.55,5.0,fr,40250,29,1699209,1,1,Active Shallow Crust,128.8962,89.99283,0.0,08/11/1500 +6.20008,44.64995,8798,5,14,23,9,37,3.65,5.0,fr,40251,175,1699218,1,1,Active Shallow Crust,0.0,89.98707,-90.0,05/14/8798 +6.20008,44.64995,2431,9,23,15,36,2,3.85,15.0,fr,40252,48,1699246,1,1,Active Shallow Crust,128.8967,89.99239,0.0,09/23/2431 +6.20008,44.64995,2554,3,15,22,30,16,4.05,15.0,fr,40253,51,1699264,1,1,Active Shallow Crust,240.0063,58.00578,0.0,03/15/2554 +6.20008,44.64995,4718,6,1,9,31,53,4.15,5.0,fr,40254,94,1699272,1,1,Active Shallow Crust,0.0,89.98921,0.0,06/01/4718 +6.20008,44.64995,2929,4,4,10,24,30,4.35,5.0,fr,40255,58,1699296,1,1,Active Shallow Crust,0.0,89.98858,0.0,04/04/2929 +6.20008,44.64995,4917,8,7,8,6,27,5.75,27.5,fr,40256,98,1699472,1,1,Active Shallow Crust,0.0,89.9902,-90.0,08/07/4917 +4.05277,51.10113,3437,12,28,3,12,46,3.65,15.0,fr,40257,68,1699702,1,1,Active Shallow Crust,128.8998,89.96362,0.0,12/28/3437 +4.05277,51.10113,3149,1,10,2,31,36,3.85,5.0,fr,40258,62,1699716,1,1,Active Shallow Crust,0.0,89.99104,0.0,01/10/3149 +4.05277,51.10113,5535,4,1,10,39,45,3.95,15.0,fr,40259,110,1699729,1,1,Active Shallow Crust,0.0,89.98801,0.0,04/01/5535 +4.05277,51.10113,8793,7,14,8,10,53,4.55,15.0,fr,40260,175,1699801,1,1,Active Shallow Crust,0.0,89.98999,0.0,07/14/8793 +7.29144,48.53724,3403,9,24,18,7,1,3.55,15.0,fr,40261,68,1700167,1,1,Active Shallow Crust,0.0,89.99325,-90.0,09/24/3403 +7.29144,48.53724,4617,1,6,14,6,23,3.65,5.0,fr,40262,92,1700172,1,1,Active Shallow Crust,0.0,89.9881,0.0,01/06/4617 +7.29144,48.53724,8305,8,14,2,33,48,3.65,15.0,fr,40263,166,1700176,1,1,Active Shallow Crust,240.0011,58.01313,0.0,08/14/8305 +7.29144,48.53724,493,2,22,0,20,35,3.85,5.0,fr,40264,9,1700196,1,2,Active Shallow Crust,0.0,89.99055,0.0,02/22/0493 +7.29144,48.53724,9763,4,19,14,43,44,3.85,5.0,fr,40265,195,1700196,1,2,Active Shallow Crust,0.0,89.99055,0.0,04/19/9763 +7.29144,48.53724,3716,4,6,10,52,30,3.95,5.0,fr,40266,74,1700208,1,1,Active Shallow Crust,0.0,89.99158,0.0,04/06/3716 +7.29144,48.53724,3372,8,20,19,3,56,3.95,5.0,fr,40267,67,1700211,1,1,Active Shallow Crust,240.0201,58.00485,0.0,08/20/3372 +7.29144,48.53724,5616,11,25,6,0,43,3.95,15.0,fr,40268,112,1700212,1,1,Active Shallow Crust,240.0201,58.00485,0.0,11/25/5616 +7.29144,48.53724,5840,2,29,23,52,38,4.05,5.0,fr,40269,116,1700229,1,1,Active Shallow Crust,128.8912,89.99249,0.0,02/29/5840 +7.29144,48.53724,223,7,20,1,43,51,4.35,5.0,fr,40270,4,1700256,1,1,Active Shallow Crust,0.0,89.98936,0.0,07/20/0223 +0.11682,45.49326,8593,3,6,6,19,3,3.55,5.0,fr,40271,171,1700640,1,1,Active Shallow Crust,0.0,89.98995,0.0,03/06/8593 +0.11682,45.49326,4681,9,11,3,13,28,3.55,5.0,fr,40272,93,1700643,1,1,Active Shallow Crust,240.0121,57.99815,0.0,09/11/4681 +0.11682,45.49326,5093,5,29,8,6,31,3.55,15.0,fr,40273,101,1700647,1,1,Active Shallow Crust,0.0,89.98994,-90.0,05/29/5093 +0.11682,45.49326,8350,12,31,19,9,16,3.65,5.0,fr,40274,166,1700652,1,1,Active Shallow Crust,0.0,89.98996,0.0,12/31/8350 +0.11682,45.49326,6889,8,29,9,11,11,3.75,5.0,fr,40275,137,1700664,1,2,Active Shallow Crust,0.0,89.99,0.0,08/29/6889 +0.11682,45.49326,6284,5,30,9,15,18,3.75,5.0,fr,40276,125,1700664,1,2,Active Shallow Crust,0.0,89.99,0.0,05/30/6284 +0.11682,45.49326,1936,1,29,14,32,1,3.85,15.0,fr,40277,38,1700680,1,1,Active Shallow Crust,240.0107,57.99777,0.0,01/29/1936 +0.11682,45.49326,6049,9,22,16,0,14,4.05,5.0,fr,40278,120,1700700,1,1,Active Shallow Crust,0.0,89.99,0.0,09/22/6049 +0.11682,45.49326,9573,10,11,21,59,52,4.35,15.0,fr,40279,191,1700737,1,1,Active Shallow Crust,0.0,89.99002,0.0,10/11/9573 +0.11682,45.49326,4815,11,17,3,12,42,4.45,5.0,fr,40280,96,1700754,1,1,Active Shallow Crust,0.0,89.99001,-90.0,11/17/4815 +0.11682,45.49326,9230,12,20,13,47,57,5.45,5.0,fr,40281,184,1700871,1,1,Active Shallow Crust,240.028,57.99834,0.0,12/20/9230 +-2.27329,47.8659,7876,7,9,20,20,59,3.65,5.0,fr,40282,157,1701132,1,1,Active Shallow Crust,0.0,89.99096,0.0,07/09/7876 +-2.27329,47.8659,6102,4,14,7,29,20,3.65,5.0,fr,40283,122,1701135,1,1,Active Shallow Crust,240.0012,58.01321,0.0,04/14/6102 +-2.27329,47.8659,8096,7,27,17,13,51,3.75,5.0,fr,40284,161,1701144,1,1,Active Shallow Crust,0.0,89.98925,0.0,07/27/8096 +-2.27329,47.8659,5982,5,26,11,31,34,3.85,5.0,fr,40285,119,1701165,1,1,Active Shallow Crust,128.8953,89.99401,0.0,05/26/5982 +-2.27329,47.8659,6082,10,6,8,18,54,4.25,27.5,fr,40286,121,1701206,1,1,Active Shallow Crust,0.0,89.98943,0.0,10/06/6082 +-2.27329,47.8659,4644,9,28,11,42,6,4.35,15.0,fr,40287,92,1701217,1,1,Active Shallow Crust,0.0,89.99057,0.0,09/28/4644 +-2.27329,47.8659,1582,2,4,2,15,1,4.45,15.0,fr,40288,31,1701229,1,1,Active Shallow Crust,0.0,89.99039,0.0,02/04/1582 +0.69214,42.14451,496,4,7,18,19,24,3.55,5.0,fr,40289,9,1701606,1,1,Active Shallow Crust,0.0,89.9896,-90.0,04/07/0496 +0.69214,42.14451,878,6,30,21,48,42,3.55,15.0,fr,40290,17,1701610,1,1,Active Shallow Crust,128.8967,89.99346,0.0,06/30/0878 +0.69214,42.14451,819,11,10,13,56,38,3.65,5.0,fr,40291,16,1701615,1,1,Active Shallow Crust,240.0007,58.01281,0.0,11/10/0819 +0.69214,42.14451,571,5,7,4,3,27,3.95,5.0,fr,40292,11,1701648,1,1,Active Shallow Crust,0.0,89.98997,0.0,05/07/0571 +0.69214,42.14451,8715,1,5,11,33,39,3.95,27.5,fr,40293,174,1701650,1,1,Active Shallow Crust,0.0,89.98997,0.0,01/05/8715 +0.69214,42.14451,6884,9,4,5,16,25,4.05,5.0,fr,40294,137,1701660,1,2,Active Shallow Crust,0.0,89.99001,0.0,09/04/6884 +0.69214,42.14451,5960,9,15,4,47,21,4.05,5.0,fr,40295,119,1701660,1,2,Active Shallow Crust,0.0,89.99001,0.0,09/15/5960 +0.69214,42.14451,8746,3,4,23,7,27,4.65,5.0,fr,40296,174,1701738,1,1,Active Shallow Crust,0.0,89.98988,-90.0,03/04/8746 +6.26065,48.53986,5078,4,15,8,21,28,3.65,5.0,fr,40297,101,1702101,1,1,Active Shallow Crust,128.8998,89.96356,0.0,04/15/5078 +6.26065,48.53986,6333,4,7,17,54,21,3.75,27.5,fr,40298,126,1702106,1,1,Active Shallow Crust,0.0,89.9894,0.0,04/07/6333 +6.26065,48.53986,9308,10,6,23,13,5,3.85,15.0,fr,40299,186,1702117,1,1,Active Shallow Crust,0.0,89.99055,0.0,10/06/9308 +6.26065,48.53986,4612,8,4,16,27,19,4.25,5.0,fr,40300,92,1702170,1,1,Active Shallow Crust,0.0,89.99095,-90.0,08/04/4612 +6.26065,48.53986,4808,6,19,23,24,44,4.55,15.0,fr,40301,96,1702201,1,1,Active Shallow Crust,0.0,89.98944,0.0,06/19/4808 +6.26065,48.53986,1755,2,2,22,37,16,4.85,5.0,fr,40302,35,1702236,1,1,Active Shallow Crust,0.0,89.98953,0.0,02/02/1755 +0.88687,50.84958,1281,4,15,0,18,53,3.55,5.0,fr,40303,25,1702560,1,1,Active Shallow Crust,0.0,89.98965,0.0,04/15/1281 +0.88687,50.84958,8262,1,20,13,6,27,3.55,15.0,fr,40304,165,1702564,1,1,Active Shallow Crust,240.0125,57.99835,0.0,01/20/8262 +0.88687,50.84958,1540,3,23,18,30,19,3.65,5.0,fr,40305,30,1702575,1,1,Active Shallow Crust,240.0015,58.01307,0.0,03/23/1540 +0.88687,50.84958,6273,4,30,5,5,19,3.95,27.5,fr,40306,125,1702610,1,1,Active Shallow Crust,0.0,89.98996,0.0,04/30/6273 +0.88687,50.84958,929,8,2,0,11,57,4.95,15.0,fr,40307,18,1702732,1,1,Active Shallow Crust,240.0141,58.00486,0.0,08/02/0929 +9.07558,48.09241,9827,3,13,4,21,31,3.55,5.0,fr,40308,196,1703520,1,2,Active Shallow Crust,0.0,89.98653,0.0,03/13/9827 +9.07558,48.09241,1638,5,28,5,17,28,3.55,5.0,fr,40309,32,1703520,1,2,Active Shallow Crust,0.0,89.98653,0.0,05/28/1638 +9.07558,48.09241,9355,1,25,1,27,13,3.55,15.0,fr,40310,187,1703521,1,3,Active Shallow Crust,0.0,89.98653,0.0,01/25/9355 +9.07558,48.09241,5152,4,14,22,44,40,3.55,15.0,fr,40311,103,1703521,1,3,Active Shallow Crust,0.0,89.98653,0.0,04/14/5152 +9.07558,48.09241,622,2,9,22,33,14,3.55,15.0,fr,40312,12,1703521,1,3,Active Shallow Crust,0.0,89.98653,0.0,02/09/0622 +9.07558,48.09241,7348,4,16,13,57,24,3.55,5.0,fr,40313,146,1703523,1,1,Active Shallow Crust,240.0148,57.99799,0.0,04/16/7348 +9.07558,48.09241,5359,5,22,21,29,44,3.55,27.5,fr,40314,107,1703528,1,1,Active Shallow Crust,0.0,89.98637,-90.0,05/22/5359 +9.07558,48.09241,8504,3,9,5,56,57,3.55,5.0,fr,40315,170,1703529,1,1,Active Shallow Crust,128.8945,89.99326,0.0,03/09/8504 +9.07558,48.09241,3141,6,17,13,38,47,3.65,5.0,fr,40316,62,1703532,1,2,Active Shallow Crust,0.0,89.98799,0.0,06/17/3141 +9.07558,48.09241,4696,12,22,21,9,0,3.65,5.0,fr,40317,93,1703532,1,2,Active Shallow Crust,0.0,89.98799,0.0,12/22/4696 +9.07558,48.09241,9939,2,3,12,39,57,3.65,15.0,fr,40318,198,1703533,1,1,Active Shallow Crust,0.0,89.98799,0.0,02/03/9939 +9.07558,48.09241,1470,5,22,8,38,56,3.65,27.5,fr,40319,29,1703537,1,1,Active Shallow Crust,240.0006,58.01267,0.0,05/22/1470 +9.07558,48.09241,9924,4,5,10,24,22,3.65,5.0,fr,40320,198,1703538,1,1,Active Shallow Crust,0.0,89.98785,-90.0,04/05/9924 +9.07558,48.09241,699,5,12,11,59,42,3.65,5.0,fr,40321,13,1703541,1,2,Active Shallow Crust,128.8982,89.96355,0.0,05/12/0699 +9.07558,48.09241,9612,9,5,11,18,50,3.65,5.0,fr,40322,192,1703541,1,2,Active Shallow Crust,128.8982,89.96355,0.0,09/05/9612 +9.07558,48.09241,2257,6,14,1,37,1,3.75,15.0,fr,40323,45,1703545,1,1,Active Shallow Crust,0.0,89.9893,0.0,06/14/2257 +9.07558,48.09241,6501,7,17,8,36,16,3.85,15.0,fr,40324,130,1703557,1,1,Active Shallow Crust,0.0,89.99046,0.0,07/17/6501 +9.07558,48.09241,5576,11,30,17,15,17,3.85,27.5,fr,40325,111,1703558,1,1,Active Shallow Crust,0.0,89.99046,0.0,11/30/5576 +9.07558,48.09241,5471,8,5,12,33,35,3.95,5.0,fr,40326,109,1703574,1,1,Active Shallow Crust,0.0,89.9914,-90.0,08/05/5471 +9.07558,48.09241,3487,9,13,2,34,6,4.05,5.0,fr,40327,69,1703580,1,1,Active Shallow Crust,0.0,89.99242,0.0,09/13/3487 +9.07558,48.09241,9334,5,27,13,34,0,4.15,5.0,fr,40328,186,1703592,1,1,Active Shallow Crust,0.0,89.99325,0.0,05/27/9334 +9.07558,48.09241,2893,8,22,18,48,40,4.25,5.0,fr,40329,57,1703604,1,1,Active Shallow Crust,0.0,89.98797,0.0,08/22/2893 +9.07558,48.09241,4649,2,15,3,40,2,4.35,15.0,fr,40330,92,1703617,1,1,Active Shallow Crust,0.0,89.98927,0.0,02/15/4649 +9.07558,48.09241,7976,10,31,13,39,38,4.35,27.5,fr,40331,159,1703618,1,1,Active Shallow Crust,0.0,89.98927,0.0,10/31/7976 +9.07558,48.09241,2189,9,17,4,15,38,4.35,5.0,fr,40332,43,1703619,1,1,Active Shallow Crust,240.0084,57.99619,0.0,09/17/2189 +9.07558,48.09241,3253,2,10,16,4,6,4.45,5.0,fr,40333,65,1703628,1,1,Active Shallow Crust,0.0,89.99044,0.0,02/10/3253 +9.07558,48.09241,4902,12,16,1,11,3,4.45,5.0,fr,40334,98,1703631,1,1,Active Shallow Crust,240.0067,57.99457,0.0,12/16/4902 +9.07558,48.09241,497,5,29,10,13,57,4.55,5.0,fr,40335,9,1703640,1,1,Active Shallow Crust,0.0,89.99148,0.0,05/29/0497 +9.07558,48.09241,275,6,30,21,47,46,4.65,5.0,fr,40336,5,1703652,1,1,Active Shallow Crust,0.0,89.98861,0.0,06/30/0275 +9.07558,48.09241,1913,4,23,17,0,26,4.65,15.0,fr,40337,38,1703653,1,1,Active Shallow Crust,0.0,89.98861,0.0,04/23/1913 +9.07558,48.09241,2893,8,29,10,51,5,4.85,27.5,fr,40338,57,1703681,1,1,Active Shallow Crust,240.0181,58.0025,0.0,08/29/2893 +9.07558,48.09241,7804,10,16,17,43,37,5.35,5.0,fr,40339,156,1703736,1,1,Active Shallow Crust,0.0,89.98982,0.0,10/16/7804 +-3.00263,49.28701,2966,3,17,14,53,22,3.55,27.5,fr,40340,59,1704008,1,1,Active Shallow Crust,0.0,89.99002,-90.0,03/17/2966 +-3.00263,49.28701,2158,11,7,3,47,21,3.65,15.0,fr,40341,43,1704019,1,1,Active Shallow Crust,0.0,89.9911,-90.0,11/07/2158 +-3.00263,49.28701,9425,5,11,6,37,18,4.35,15.0,fr,40342,188,1704097,1,1,Active Shallow Crust,0.0,89.98952,0.0,05/11/9425 +-3.00263,49.28701,835,2,14,16,14,13,5.45,5.0,fr,40343,16,1704228,1,1,Active Shallow Crust,0.0,89.99004,0.0,02/14/0835 +-3.0026,49.28701,2919,3,12,21,30,43,7.25,17.5,fr,40344,58,1704444,1,1,Active Shallow Crust,360.0,89.98999,0.0,03/12/2919 +2.13519,41.40364,4835,8,9,1,42,30,3.55,5.0,fr,40345,96,1704480,1,2,Active Shallow Crust,0.0,89.98866,0.0,08/09/4835 +2.13519,41.40364,5385,11,7,5,55,56,3.55,5.0,fr,40346,107,1704480,1,2,Active Shallow Crust,0.0,89.98866,0.0,11/07/5385 +2.13519,41.40364,8365,5,14,3,33,13,3.55,15.0,fr,40347,167,1704481,1,1,Active Shallow Crust,0.0,89.98866,0.0,05/14/8365 +2.13519,41.40364,6258,3,16,22,22,1,3.55,5.0,fr,40348,125,1704489,1,1,Active Shallow Crust,128.8959,89.99433,0.0,03/16/6258 +2.13519,41.40364,5348,5,28,14,10,27,3.65,5.0,fr,40349,106,1704492,1,4,Active Shallow Crust,0.0,89.98989,0.0,05/28/5348 +2.13519,41.40364,1853,9,10,15,36,36,3.65,5.0,fr,40350,37,1704492,1,4,Active Shallow Crust,0.0,89.98989,0.0,09/10/1853 +2.13519,41.40364,9067,3,31,0,45,8,3.65,5.0,fr,40351,181,1704492,1,4,Active Shallow Crust,0.0,89.98989,0.0,03/31/9067 +2.13519,41.40364,7857,12,28,11,13,4,3.65,5.0,fr,40352,157,1704492,1,4,Active Shallow Crust,0.0,89.98989,0.0,12/28/7857 +2.13519,41.40364,9139,10,5,21,9,2,3.65,15.0,fr,40353,182,1704493,1,2,Active Shallow Crust,0.0,89.98989,0.0,10/05/9139 +2.13519,41.40364,6858,7,19,18,53,3,3.65,15.0,fr,40354,137,1704493,1,2,Active Shallow Crust,0.0,89.98989,0.0,07/19/6858 +2.13519,41.40364,1776,8,7,22,15,5,3.65,27.5,fr,40355,35,1704494,1,1,Active Shallow Crust,0.0,89.98989,0.0,08/07/1776 +2.13519,41.40364,1803,5,22,14,42,18,3.75,5.0,fr,40356,36,1704507,1,1,Active Shallow Crust,240.008,58.01696,0.0,05/22/1803 +2.13519,41.40364,431,3,24,12,21,36,3.85,5.0,fr,40357,8,1704516,1,1,Active Shallow Crust,0.0,89.98929,0.0,03/24/0431 +2.13519,41.40364,1921,11,30,5,7,29,3.85,27.5,fr,40358,38,1704518,1,1,Active Shallow Crust,0.0,89.98929,0.0,11/30/1921 +2.13519,41.40364,3427,6,8,1,30,50,3.95,5.0,fr,40359,68,1704528,1,1,Active Shallow Crust,0.0,89.99046,0.0,06/08/3427 +2.13519,41.40364,8866,12,10,4,45,31,3.95,15.0,fr,40360,177,1704529,1,1,Active Shallow Crust,0.0,89.99046,0.0,12/10/8866 +2.13519,41.40364,4618,3,27,15,9,4,4.05,15.0,fr,40361,92,1704541,1,1,Active Shallow Crust,0.0,89.98936,0.0,03/27/4618 +2.13519,41.40364,8672,9,22,22,29,26,4.15,5.0,fr,40362,173,1704555,1,1,Active Shallow Crust,240.0075,57.99729,0.0,09/22/8672 +2.13519,41.40364,4884,2,23,11,13,55,4.25,5.0,fr,40363,97,1704573,1,1,Active Shallow Crust,128.8954,89.98076,0.0,02/23/4884 +2.13519,41.40364,6367,3,3,14,59,29,4.35,15.0,fr,40364,127,1704577,1,1,Active Shallow Crust,0.0,89.98946,0.0,03/03/6367 +2.13519,41.40364,3806,7,14,19,3,55,4.35,15.0,fr,40365,76,1704583,1,1,Active Shallow Crust,0.0,89.98934,-90.0,07/14/3806 +2.13519,41.40364,6367,10,20,3,9,36,4.65,27.5,fr,40366,127,1704614,1,1,Active Shallow Crust,0.0,89.99041,0.0,10/20/6367 +2.13519,41.40364,2757,8,23,10,4,55,4.75,15.0,fr,40367,55,1704628,1,1,Active Shallow Crust,240.0058,58.0042,0.0,08/23/2757 +2.13519,41.40364,5242,5,22,11,37,54,4.85,15.0,fr,40368,104,1704643,1,1,Active Shallow Crust,0.0,89.98972,-90.0,05/22/5242 +2.13519,41.40364,6930,5,3,9,55,54,4.95,27.5,fr,40369,138,1704650,1,1,Active Shallow Crust,0.0,89.99019,0.0,05/03/6930 +6.34116,48.04195,9285,5,15,1,29,5,3.55,5.0,fr,40370,185,1704960,1,2,Active Shallow Crust,0.0,89.99326,0.0,05/15/9285 +6.34116,48.04195,2,4,10,23,10,55,3.55,5.0,fr,40371,0,1704960,1,2,Active Shallow Crust,0.0,89.99326,0.0,04/10/0002 +6.34116,48.04195,664,9,7,15,59,59,3.55,5.0,fr,40372,13,1704963,1,1,Active Shallow Crust,240.0121,57.99882,0.0,09/07/0664 +6.34116,48.04195,5768,6,19,2,3,33,3.65,5.0,fr,40373,115,1704972,1,2,Active Shallow Crust,0.0,89.98798,0.0,06/19/5768 +6.34116,48.04195,5455,12,10,23,44,31,3.65,5.0,fr,40374,109,1704972,1,2,Active Shallow Crust,0.0,89.98798,0.0,12/10/5455 +6.34116,48.04195,5020,8,29,7,28,41,3.65,15.0,fr,40375,100,1704973,1,1,Active Shallow Crust,0.0,89.98798,0.0,08/29/5020 +6.34116,48.04195,5192,8,14,16,46,17,3.65,5.0,fr,40376,103,1704975,1,1,Active Shallow Crust,240.0009,58.01281,0.0,08/14/5192 +6.34116,48.04195,4508,5,8,14,48,33,3.65,5.0,fr,40377,90,1704981,1,1,Active Shallow Crust,128.9009,89.96355,0.0,05/08/4508 +6.34116,48.04195,8941,12,29,7,26,41,3.85,5.0,fr,40378,178,1704996,1,2,Active Shallow Crust,0.0,89.99046,0.0,12/29/8941 +6.34116,48.04195,9184,9,23,1,43,48,3.85,5.0,fr,40379,183,1704996,1,2,Active Shallow Crust,0.0,89.99046,0.0,09/23/9184 +6.34116,48.04195,1341,2,20,9,23,42,3.85,15.0,fr,40380,26,1705006,1,1,Active Shallow Crust,128.8946,89.99522,0.0,02/20/1341 +6.34116,48.04195,3146,8,1,21,51,3,3.95,5.0,fr,40381,62,1705011,1,1,Active Shallow Crust,240.0205,58.00524,0.0,08/01/3146 +6.34116,48.04195,8501,3,6,16,36,7,3.95,5.0,fr,40382,170,1705017,1,1,Active Shallow Crust,128.8994,89.99362,0.0,03/06/8501 +6.34116,48.04195,4935,7,15,3,14,24,4.05,5.0,fr,40383,98,1705020,1,1,Active Shallow Crust,0.0,89.98862,0.0,07/15/4935 +6.34116,48.04195,1825,9,5,22,3,39,4.15,5.0,fr,40384,36,1705032,1,1,Active Shallow Crust,0.0,89.98986,0.0,09/05/1825 +6.34116,48.04195,7063,11,14,10,13,2,4.15,5.0,fr,40385,141,1705035,1,1,Active Shallow Crust,240.0087,57.9967,0.0,11/14/7063 +6.34116,48.04195,5454,5,9,22,57,28,4.25,5.0,fr,40386,109,1705047,1,1,Active Shallow Crust,240.0082,57.99368,0.0,05/09/5454 +6.34116,48.04195,5307,11,26,21,55,23,4.35,5.0,fr,40387,106,1705056,1,1,Active Shallow Crust,0.0,89.98927,0.0,11/26/5307 +6.34116,48.04195,2306,8,31,4,12,11,4.45,15.0,fr,40388,46,1705069,1,2,Active Shallow Crust,0.0,89.99043,0.0,08/31/2306 +6.34116,48.04195,5187,4,6,19,43,44,4.45,15.0,fr,40389,103,1705069,1,2,Active Shallow Crust,0.0,89.99043,0.0,04/06/5187 +6.34116,48.04195,5941,1,1,6,37,59,4.55,5.0,fr,40390,118,1705083,1,1,Active Shallow Crust,240.0095,57.99768,0.0,01/01/5941 +6.34116,48.04195,530,1,19,4,33,12,4.55,5.0,fr,40391,10,1705086,1,1,Active Shallow Crust,0.0,89.98921,-90.0,01/19/0530 +6.34116,48.04195,975,6,15,6,4,3,4.65,5.0,fr,40392,19,1705092,1,1,Active Shallow Crust,0.0,89.9905,0.0,06/15/0975 +6.34116,48.04195,1753,8,2,16,5,51,5.05,5.0,fr,40393,35,1705143,1,1,Active Shallow Crust,240.0229,57.9976,0.0,08/02/1753 +6.34116,48.04195,6392,10,19,22,38,5,5.55,5.0,fr,40394,127,1705203,1,1,Active Shallow Crust,240.0341,57.99979,0.0,10/19/6392 +6.34116,48.04195,5392,2,17,1,48,33,5.55,15.0,fr,40395,107,1705204,1,1,Active Shallow Crust,240.0341,57.9998,0.0,02/17/5392 +7.69721,47.30558,4484,11,11,0,51,50,3.55,5.0,fr,40396,89,1705440,1,4,Active Shallow Crust,0.0,89.99316,0.0,11/11/4484 +7.69721,47.30558,6945,4,18,15,50,50,3.55,5.0,fr,40397,138,1705440,1,4,Active Shallow Crust,0.0,89.99316,0.0,04/18/6945 +7.69721,47.30558,801,3,24,11,46,24,3.55,5.0,fr,40398,16,1705440,1,4,Active Shallow Crust,0.0,89.99316,0.0,03/24/0801 +7.69721,47.30558,8725,9,14,3,1,25,3.55,5.0,fr,40399,174,1705440,1,4,Active Shallow Crust,0.0,89.99316,0.0,09/14/8725 +7.69721,47.30558,19,3,19,19,36,24,3.55,15.0,fr,40400,0,1705441,1,3,Active Shallow Crust,0.0,89.99316,0.0,03/19/0019 +7.69721,47.30558,5523,11,9,19,11,29,3.55,15.0,fr,40401,110,1705441,1,3,Active Shallow Crust,0.0,89.99316,0.0,11/09/5523 +7.69721,47.30558,255,8,11,15,21,30,3.55,15.0,fr,40402,5,1705441,1,3,Active Shallow Crust,0.0,89.99316,0.0,08/11/0255 +7.69721,47.30558,3097,7,11,1,59,59,3.55,27.5,fr,40403,61,1705442,1,1,Active Shallow Crust,0.0,89.99316,0.0,07/11/3097 +7.69721,47.30558,219,1,4,18,3,23,3.55,5.0,fr,40404,4,1705443,1,4,Active Shallow Crust,240.0125,57.99867,0.0,01/04/0219 +7.69721,47.30558,4568,8,18,12,40,48,3.55,5.0,fr,40405,91,1705443,1,4,Active Shallow Crust,240.0125,57.99867,0.0,08/18/4568 +7.69721,47.30558,9540,9,12,18,14,49,3.55,5.0,fr,40406,190,1705443,1,4,Active Shallow Crust,240.0125,57.99867,0.0,09/12/9540 +7.69721,47.30558,8646,8,23,15,45,39,3.55,5.0,fr,40407,172,1705443,1,4,Active Shallow Crust,240.0125,57.99867,0.0,08/23/8646 +7.69721,47.30558,2285,10,9,14,19,37,3.55,15.0,fr,40408,45,1705444,1,2,Active Shallow Crust,240.0125,57.99867,0.0,10/09/2285 +7.69721,47.30558,705,10,5,16,31,17,3.55,15.0,fr,40409,14,1705444,1,2,Active Shallow Crust,240.0125,57.99867,0.0,10/05/0705 +7.69721,47.30558,6664,1,1,7,30,1,3.55,5.0,fr,40410,133,1705446,1,2,Active Shallow Crust,0.0,89.99308,-90.0,01/01/6664 +7.69721,47.30558,6819,11,25,23,34,36,3.55,5.0,fr,40411,136,1705446,1,2,Active Shallow Crust,0.0,89.99308,-90.0,11/25/6819 +7.69721,47.30558,500,11,9,2,42,30,3.55,5.0,fr,40412,9,1705449,1,3,Active Shallow Crust,128.8959,89.99316,0.0,11/09/0500 +7.69721,47.30558,3322,7,7,9,48,46,3.55,5.0,fr,40413,66,1705449,1,3,Active Shallow Crust,128.8959,89.99316,0.0,07/07/3322 +7.69721,47.30558,2788,9,1,6,23,16,3.55,5.0,fr,40414,55,1705449,1,3,Active Shallow Crust,128.8959,89.99316,0.0,09/01/2788 +7.69721,47.30558,3113,5,20,9,48,1,3.65,5.0,fr,40415,62,1705452,1,10,Active Shallow Crust,0.0,89.98781,0.0,05/20/3113 +7.69721,47.30558,1382,2,17,7,57,34,3.65,5.0,fr,40416,27,1705452,1,10,Active Shallow Crust,0.0,89.98781,0.0,02/17/1382 +7.69721,47.30558,4185,8,3,20,27,22,3.65,5.0,fr,40417,83,1705452,1,10,Active Shallow Crust,0.0,89.98781,0.0,08/03/4185 +7.69721,47.30558,6504,9,23,2,19,51,3.65,5.0,fr,40418,130,1705452,1,10,Active Shallow Crust,0.0,89.98781,0.0,09/23/6504 +7.69721,47.30558,8467,7,1,4,28,33,3.65,5.0,fr,40419,169,1705452,1,10,Active Shallow Crust,0.0,89.98781,0.0,07/01/8467 +7.69721,47.30558,2908,12,24,16,39,25,3.65,5.0,fr,40420,58,1705452,1,10,Active Shallow Crust,0.0,89.98781,0.0,12/24/2908 +7.69721,47.30558,3342,5,13,10,5,23,3.65,5.0,fr,40421,66,1705452,1,10,Active Shallow Crust,0.0,89.98781,0.0,05/13/3342 +7.69721,47.30558,5321,8,26,20,25,50,3.65,5.0,fr,40422,106,1705452,1,10,Active Shallow Crust,0.0,89.98781,0.0,08/26/5321 +7.69721,47.30558,8430,6,20,22,40,17,3.65,5.0,fr,40423,168,1705452,1,10,Active Shallow Crust,0.0,89.98781,0.0,06/20/8430 +7.69721,47.30558,6112,12,20,14,15,31,3.65,5.0,fr,40424,122,1705452,1,10,Active Shallow Crust,0.0,89.98781,0.0,12/20/6112 +7.69721,47.30558,178,4,28,10,13,2,3.65,15.0,fr,40425,3,1705453,1,1,Active Shallow Crust,0.0,89.98781,0.0,04/28/0178 +7.69721,47.30558,5714,1,12,0,28,7,3.65,27.5,fr,40426,114,1705454,1,1,Active Shallow Crust,0.0,89.98781,0.0,01/12/5714 +7.69721,47.30558,2690,6,17,23,22,51,3.65,5.0,fr,40427,53,1705455,1,1,Active Shallow Crust,240.0015,58.01306,0.0,06/17/2690 +7.69721,47.30558,3568,8,21,12,40,52,3.75,5.0,fr,40428,71,1705464,1,3,Active Shallow Crust,0.0,89.98914,0.0,08/21/3568 +7.69721,47.30558,3251,3,8,10,10,32,3.75,5.0,fr,40429,65,1705464,1,3,Active Shallow Crust,0.0,89.98914,0.0,03/08/3251 +7.69721,47.30558,1657,12,24,6,53,20,3.75,5.0,fr,40430,33,1705464,1,3,Active Shallow Crust,0.0,89.98914,0.0,12/24/1657 +7.69721,47.30558,9316,7,30,20,31,2,3.75,15.0,fr,40431,186,1705465,1,1,Active Shallow Crust,0.0,89.98914,0.0,07/30/9316 +7.69721,47.30558,9364,12,23,0,34,13,3.75,27.5,fr,40432,187,1705469,1,1,Active Shallow Crust,240.0087,58.01757,0.0,12/23/9364 +7.69721,47.30558,3934,7,23,8,0,33,3.75,15.0,fr,40433,78,1705471,1,2,Active Shallow Crust,0.0,89.98901,-90.0,07/23/3934 +7.69721,47.30558,2733,9,24,7,42,46,3.75,15.0,fr,40434,54,1705471,1,2,Active Shallow Crust,0.0,89.98901,-90.0,09/24/2733 +7.69721,47.30558,6540,1,24,20,58,59,3.75,5.0,fr,40435,130,1705473,1,1,Active Shallow Crust,128.8966,89.96694,0.0,01/24/6540 +7.69721,47.30558,4265,5,15,9,12,3,3.85,5.0,fr,40436,85,1705476,1,2,Active Shallow Crust,0.0,89.99032,0.0,05/15/4265 +7.69721,47.30558,3586,8,17,8,6,5,3.85,5.0,fr,40437,71,1705476,1,2,Active Shallow Crust,0.0,89.99032,0.0,08/17/3586 +7.69721,47.30558,7504,3,2,2,48,21,3.85,15.0,fr,40438,150,1705477,1,3,Active Shallow Crust,0.0,89.99032,0.0,03/02/7504 +7.69721,47.30558,7719,5,10,21,39,38,3.85,15.0,fr,40439,154,1705477,1,3,Active Shallow Crust,0.0,89.99032,0.0,05/10/7719 +7.69721,47.30558,9007,1,24,5,6,51,3.85,15.0,fr,40440,180,1705477,1,3,Active Shallow Crust,0.0,89.99032,0.0,01/24/9007 +7.69721,47.30558,7616,9,1,9,13,56,3.85,27.5,fr,40441,152,1705478,1,1,Active Shallow Crust,0.0,89.99032,0.0,09/01/7616 +7.69721,47.30558,9545,4,25,8,25,24,3.85,5.0,fr,40442,190,1705482,1,2,Active Shallow Crust,0.0,89.9902,-90.0,04/25/9545 +7.69721,47.30558,7500,5,25,10,50,52,3.85,5.0,fr,40443,149,1705482,1,2,Active Shallow Crust,0.0,89.9902,-90.0,05/25/7500 +7.69721,47.30558,4370,3,13,23,16,58,3.95,5.0,fr,40444,87,1705488,1,2,Active Shallow Crust,0.0,89.99137,0.0,03/13/4370 +7.69721,47.30558,6640,2,12,20,28,4,3.95,5.0,fr,40445,132,1705488,1,2,Active Shallow Crust,0.0,89.99137,0.0,02/12/6640 +7.69721,47.30558,8423,12,15,23,53,22,3.95,5.0,fr,40446,168,1705497,1,1,Active Shallow Crust,128.8997,89.99353,0.0,12/15/8423 +7.69721,47.30558,8401,7,10,2,10,42,4.05,5.0,fr,40447,168,1705500,1,1,Active Shallow Crust,0.0,89.98846,0.0,07/10/8401 +7.69721,47.30558,4015,11,2,7,9,24,4.15,15.0,fr,40448,80,1705516,1,1,Active Shallow Crust,240.009,57.9975,0.0,11/02/4015 +7.69721,47.30558,9305,5,28,12,6,13,4.25,5.0,fr,40449,186,1705524,1,1,Active Shallow Crust,0.0,89.99084,0.0,05/28/9305 +7.69721,47.30558,9789,11,22,14,19,45,4.35,5.0,fr,40450,195,1705536,1,1,Active Shallow Crust,0.0,89.98911,0.0,11/22/9789 +7.69721,47.30558,5680,10,31,2,14,32,4.35,15.0,fr,40451,113,1705537,1,1,Active Shallow Crust,0.0,89.98911,0.0,10/31/5680 +7.69721,47.30558,8117,3,15,6,1,56,4.35,5.0,fr,40452,162,1705539,1,1,Active Shallow Crust,240.0084,57.99584,0.0,03/15/8117 +7.69721,47.30558,3921,2,20,18,47,24,4.35,15.0,fr,40453,78,1705543,1,1,Active Shallow Crust,0.0,89.98898,-90.0,02/20/3921 +7.69721,47.30558,4504,10,10,22,54,15,4.45,5.0,fr,40454,90,1705551,1,2,Active Shallow Crust,240.0058,57.99441,0.0,10/10/4504 +7.69721,47.30558,4883,6,23,0,49,33,4.45,5.0,fr,40455,97,1705551,1,2,Active Shallow Crust,240.0058,57.99441,0.0,06/23/4883 +7.69721,47.30558,9841,10,31,8,58,29,4.55,5.0,fr,40456,196,1705560,1,1,Active Shallow Crust,0.0,89.98919,0.0,10/31/9841 +7.69721,47.30558,996,6,2,2,3,14,4.65,5.0,fr,40457,19,1705572,1,1,Active Shallow Crust,0.0,89.99036,0.0,06/02/0996 +7.69721,47.30558,9462,3,13,15,26,25,4.65,5.0,fr,40458,189,1705581,1,1,Active Shallow Crust,128.8909,89.98679,0.0,03/13/9462 +7.69721,47.30558,7506,9,10,10,48,26,4.75,5.0,fr,40459,150,1705590,1,1,Active Shallow Crust,0.0,89.98957,-90.0,09/10/7506 +7.69721,47.30558,5647,1,17,16,2,20,4.85,15.0,fr,40460,112,1705603,1,1,Active Shallow Crust,0.0,89.99071,-90.0,01/17/5647 +7.69721,47.30558,589,3,16,14,0,9,4.95,5.0,fr,40461,11,1705608,1,1,Active Shallow Crust,0.0,89.99045,0.0,03/16/0589 +7.69721,47.30558,4455,1,15,13,52,6,5.05,5.0,fr,40462,89,1705620,1,1,Active Shallow Crust,0.0,89.99027,0.0,01/15/4455 +7.69721,47.30558,4617,7,25,8,6,7,5.05,15.0,fr,40463,92,1705621,1,1,Active Shallow Crust,0.0,89.99027,0.0,07/25/4617 +7.69721,47.30558,7047,2,12,9,39,51,5.15,5.0,fr,40464,140,1705638,1,1,Active Shallow Crust,0.0,89.99013,-90.0,02/12/7047 +7.69721,47.30558,7549,11,28,22,26,38,5.55,15.0,fr,40465,150,1705690,1,1,Active Shallow Crust,128.8756,89.98965,0.0,11/28/7549 +7.69721,47.30558,6988,11,9,12,33,31,6.25,15.0,fr,40466,139,1705765,1,1,Active Shallow Crust,0.0,89.98991,0.0,11/09/6988 +-7.14919,47.20166,5777,12,12,5,2,57,3.55,15.0,fr,40467,115,1705921,1,1,Active Shallow Crust,0.0,89.99315,0.0,12/12/5777 +0.16975,46.71044,9139,4,25,12,59,23,3.55,5.0,fr,40468,182,1706400,1,1,Active Shallow Crust,0.0,89.99006,0.0,04/25/9139 +0.16975,46.71044,4047,4,21,12,57,21,3.65,5.0,fr,40469,80,1706412,1,2,Active Shallow Crust,0.0,89.98998,0.0,04/21/4047 +0.16975,46.71044,7449,8,12,12,18,2,3.65,5.0,fr,40470,148,1706412,1,2,Active Shallow Crust,0.0,89.98998,0.0,08/12/7449 +0.16975,46.71044,6209,11,19,13,47,49,3.65,15.0,fr,40471,124,1706413,1,1,Active Shallow Crust,0.0,89.98998,0.0,11/19/6209 +0.16975,46.71044,5943,4,22,17,57,52,3.75,5.0,fr,40472,118,1706424,1,2,Active Shallow Crust,0.0,89.99004,0.0,04/22/5943 +0.16975,46.71044,1550,3,26,22,5,19,3.75,5.0,fr,40473,30,1706424,1,2,Active Shallow Crust,0.0,89.99004,0.0,03/26/1550 +0.16975,46.71044,4810,10,17,4,56,31,3.75,15.0,fr,40474,96,1706425,1,1,Active Shallow Crust,0.0,89.99004,0.0,10/17/4810 +0.16975,46.71044,4894,12,16,6,32,35,3.75,5.0,fr,40475,97,1706430,1,1,Active Shallow Crust,0.0,89.98993,-90.0,12/16/4894 +0.16975,46.71044,3509,3,30,21,11,29,3.85,5.0,fr,40476,70,1706436,1,1,Active Shallow Crust,0.0,89.99006,0.0,03/30/3509 +0.16975,46.71044,9206,5,10,22,23,51,3.95,5.0,fr,40477,184,1706448,1,1,Active Shallow Crust,0.0,89.99004,0.0,05/10/9206 +0.16975,46.71044,9487,6,24,22,50,53,4.05,5.0,fr,40478,189,1706466,1,1,Active Shallow Crust,0.0,89.99004,-90.0,06/24/9487 +0.16975,46.71044,1606,7,10,19,13,4,4.15,5.0,fr,40479,32,1706472,1,1,Active Shallow Crust,0.0,89.99004,0.0,07/10/1606 +0.16975,46.71044,1233,5,20,23,57,3,4.25,15.0,fr,40480,24,1706485,1,1,Active Shallow Crust,0.0,89.98996,0.0,05/20/1233 +0.16975,46.71044,9215,7,2,0,16,27,4.35,5.0,fr,40481,184,1706496,1,1,Active Shallow Crust,0.0,89.99002,0.0,07/02/9215 +0.16975,46.71044,6536,4,27,12,35,8,4.35,15.0,fr,40482,130,1706497,1,1,Active Shallow Crust,0.0,89.99002,0.0,04/27/6536 +0.16975,46.71044,7965,5,20,16,19,32,4.35,5.0,fr,40483,159,1706502,1,1,Active Shallow Crust,0.0,89.98999,-90.0,05/20/7965 +0.16975,46.71044,8967,6,30,1,7,3,4.55,5.0,fr,40484,179,1706520,1,2,Active Shallow Crust,0.0,89.99002,0.0,06/30/8967 +0.16975,46.71044,787,9,1,12,41,38,4.55,5.0,fr,40485,15,1706520,1,2,Active Shallow Crust,0.0,89.99002,0.0,09/01/0787 +0.16975,46.71044,1844,6,16,23,37,33,4.65,5.0,fr,40486,36,1706532,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/16/1844 +0.16975,46.71044,6878,10,10,15,24,33,5.55,5.0,fr,40487,137,1706640,1,1,Active Shallow Crust,0.0,89.98999,0.0,10/10/6878 +0.16975,46.71044,3693,11,15,23,3,55,5.85,5.0,fr,40488,73,1706679,1,1,Active Shallow Crust,240.045,58.00189,0.0,11/15/3693 +0.16975,46.71044,9319,1,26,13,28,56,5.85,15.0,fr,40489,186,1706680,1,1,Active Shallow Crust,240.045,58.00189,0.0,01/26/9319 +1.34292,43.42739,2995,12,29,6,46,15,3.75,5.0,fr,40490,59,1706904,1,1,Active Shallow Crust,0.0,89.98982,0.0,12/29/2995 +1.34292,43.42739,1455,11,24,19,57,31,3.95,5.0,fr,40491,29,1706928,1,2,Active Shallow Crust,0.0,89.9896,0.0,11/24/1455 +1.34292,43.42739,3055,7,15,1,2,50,3.95,5.0,fr,40492,61,1706928,1,2,Active Shallow Crust,0.0,89.9896,0.0,07/15/3055 +1.34292,43.42739,7828,11,6,17,30,42,3.95,15.0,fr,40493,156,1706929,1,1,Active Shallow Crust,0.0,89.9896,0.0,11/06/7828 +7.0633,50.01775,760,11,17,11,36,59,3.85,15.0,fr,40494,15,1707397,1,2,Active Shallow Crust,0.0,89.99082,0.0,11/17/0760 +7.0633,50.01775,6749,3,13,21,9,47,3.85,15.0,fr,40495,134,1707397,1,2,Active Shallow Crust,0.0,89.99082,0.0,03/13/6749 +7.0633,50.01775,561,6,1,20,11,21,3.95,5.0,fr,40496,11,1707408,1,1,Active Shallow Crust,0.0,89.99182,0.0,06/01/0561 +7.0633,50.01775,526,2,18,6,43,1,3.95,15.0,fr,40497,10,1707415,1,1,Active Shallow Crust,0.0,89.99173,-90.0,02/18/0526 +7.0633,50.01775,3852,12,23,18,2,7,4.25,5.0,fr,40498,77,1707444,1,1,Active Shallow Crust,0.0,89.99132,0.0,12/23/3852 +7.0633,50.01775,1352,7,2,5,47,23,4.35,5.0,fr,40499,27,1707462,1,1,Active Shallow Crust,0.0,89.98956,-90.0,07/02/1352 +7.0633,50.01775,7492,1,3,8,8,13,4.65,5.0,fr,40500,149,1707492,1,1,Active Shallow Crust,0.0,89.99087,0.0,01/03/7492 +7.0633,50.01775,9993,2,28,19,13,27,4.85,5.0,fr,40501,199,1707516,1,1,Active Shallow Crust,0.0,89.98985,0.0,02/28/9993 +7.89165,44.18403,2876,9,11,3,13,3,3.55,5.0,fr,40502,57,1707840,1,2,Active Shallow Crust,0.0,89.99277,0.0,09/11/2876 +7.89165,44.18403,2892,9,25,19,39,33,3.55,5.0,fr,40503,57,1707840,1,2,Active Shallow Crust,0.0,89.99277,0.0,09/25/2892 +7.89165,44.18403,4564,7,1,2,18,26,3.55,15.0,fr,40504,91,1707841,1,1,Active Shallow Crust,0.0,89.99277,0.0,07/01/4564 +7.89165,44.18403,6462,2,25,8,16,33,3.55,15.0,fr,40505,129,1707844,1,1,Active Shallow Crust,240.0134,57.99777,0.0,02/25/6462 +7.89165,44.18403,35,5,6,4,36,4,3.55,5.0,fr,40506,0,1707846,1,1,Active Shallow Crust,0.0,89.99268,-90.0,05/06/0035 +7.89165,44.18403,3110,4,16,3,21,57,3.65,5.0,fr,40507,62,1707852,1,1,Active Shallow Crust,0.0,89.98711,0.0,04/16/3110 +7.89165,44.18403,5493,2,15,18,47,38,3.75,5.0,fr,40508,109,1707864,1,1,Active Shallow Crust,0.0,89.98851,0.0,02/15/5493 +7.89165,44.18403,2063,2,9,4,20,12,3.75,27.5,fr,40509,41,1707866,1,1,Active Shallow Crust,0.0,89.98851,0.0,02/09/2063 +7.89165,44.18403,8240,10,12,15,30,1,3.75,5.0,fr,40510,164,1707870,1,1,Active Shallow Crust,0.0,89.98838,-90.0,10/12/8240 +7.89165,44.18403,515,8,10,20,38,37,3.85,15.0,fr,40511,10,1707877,1,1,Active Shallow Crust,0.0,89.98976,0.0,08/10/0515 +7.89165,44.18403,7291,5,27,21,11,40,3.95,5.0,fr,40512,145,1707888,1,1,Active Shallow Crust,0.0,89.99088,0.0,05/27/7291 +7.89165,44.18403,132,8,24,15,58,50,3.95,15.0,fr,40513,2,1707898,1,1,Active Shallow Crust,128.9005,89.99544,0.0,08/24/0132 +7.89165,44.18403,995,2,7,20,54,16,4.05,5.0,fr,40514,19,1707900,1,1,Active Shallow Crust,0.0,89.99187,0.0,02/07/0995 +7.89165,44.18403,2922,2,10,23,33,22,4.25,15.0,fr,40515,58,1707925,1,1,Active Shallow Crust,0.0,89.99031,0.0,02/10/2922 +7.89165,44.18403,6394,11,7,1,39,29,5.95,5.0,fr,40516,127,1708134,1,1,Active Shallow Crust,0.0,89.98984,-90.0,11/07/6394 +3.09433,44.61303,3638,11,6,4,13,27,3.55,27.5,fr,40517,72,1708811,1,1,Active Shallow Crust,128.8964,89.99461,0.0,11/06/3638 +3.09433,44.61303,7649,3,13,15,17,58,3.65,5.0,fr,40518,152,1708812,1,3,Active Shallow Crust,0.0,89.9904,0.0,03/13/7649 +3.09433,44.61303,5087,11,11,1,41,39,3.65,5.0,fr,40519,101,1708812,1,3,Active Shallow Crust,0.0,89.9904,0.0,11/11/5087 +3.09433,44.61303,720,10,30,12,47,41,3.65,5.0,fr,40520,14,1708812,1,3,Active Shallow Crust,0.0,89.9904,0.0,10/30/0720 +3.09433,44.61303,7140,8,24,18,9,14,3.65,15.0,fr,40521,142,1708813,1,1,Active Shallow Crust,0.0,89.9904,0.0,08/24/7140 +3.09433,44.61303,7080,8,25,13,31,23,3.65,5.0,fr,40522,141,1708815,1,1,Active Shallow Crust,240.0007,58.01318,0.0,08/25/7080 +3.09433,44.61303,2586,3,8,20,45,31,3.75,5.0,fr,40523,51,1708824,1,1,Active Shallow Crust,0.0,89.98859,0.0,03/08/2586 +3.09433,44.61303,5614,1,25,3,51,1,3.75,15.0,fr,40524,112,1708825,1,1,Active Shallow Crust,0.0,89.98859,0.0,01/25/5614 +3.09433,44.61303,2546,7,5,9,22,48,4.15,5.0,fr,40525,50,1708872,1,1,Active Shallow Crust,0.0,89.9892,0.0,07/05/2546 +3.09433,44.61303,9153,4,3,9,37,13,4.45,5.0,fr,40526,183,1708914,1,1,Active Shallow Crust,0.0,89.98969,-90.0,04/03/9153 +3.09433,44.61303,5583,3,4,13,9,28,4.85,5.0,fr,40527,111,1708959,1,1,Active Shallow Crust,240.0163,58.00224,0.0,03/04/5583 +3.09433,44.61303,9971,5,4,15,43,6,5.45,5.0,fr,40528,199,1709028,1,1,Active Shallow Crust,0.0,89.98993,0.0,05/04/9971 +3.09433,44.61303,2928,12,25,22,17,28,5.85,15.0,fr,40529,58,1709077,1,1,Active Shallow Crust,0.0,89.99008,0.0,12/25/2928 +7.06865,46.9757,7549,6,9,10,3,58,3.55,5.0,fr,40530,150,1709280,1,9,Active Shallow Crust,0.0,89.99312,0.0,06/09/7549 +7.06865,46.9757,3952,1,1,0,2,5,3.55,5.0,fr,40531,79,1709280,1,9,Active Shallow Crust,0.0,89.99312,0.0,01/01/3952 +7.06865,46.9757,5273,12,30,21,28,35,3.55,5.0,fr,40532,105,1709280,1,9,Active Shallow Crust,0.0,89.99312,0.0,12/30/5273 +7.06865,46.9757,5121,12,15,20,11,46,3.55,5.0,fr,40533,102,1709280,1,9,Active Shallow Crust,0.0,89.99312,0.0,12/15/5121 +7.06865,46.9757,1501,9,13,17,5,15,3.55,5.0,fr,40534,30,1709280,1,9,Active Shallow Crust,0.0,89.99312,0.0,09/13/1501 +7.06865,46.9757,4349,6,5,19,37,28,3.55,5.0,fr,40535,86,1709280,1,9,Active Shallow Crust,0.0,89.99312,0.0,06/05/4349 +7.06865,46.9757,7507,3,18,10,23,58,3.55,5.0,fr,40536,150,1709280,1,9,Active Shallow Crust,0.0,89.99312,0.0,03/18/7507 +7.06865,46.9757,8221,1,5,1,55,27,3.55,5.0,fr,40537,164,1709280,1,9,Active Shallow Crust,0.0,89.99312,0.0,01/05/8221 +7.06865,46.9757,4470,9,11,8,27,50,3.55,5.0,fr,40538,89,1709280,1,9,Active Shallow Crust,0.0,89.99312,0.0,09/11/4470 +7.06865,46.9757,3922,2,21,10,36,14,3.55,27.5,fr,40539,78,1709282,1,2,Active Shallow Crust,0.0,89.99312,0.0,02/21/3922 +7.06865,46.9757,899,10,3,6,51,6,3.55,27.5,fr,40540,17,1709282,1,2,Active Shallow Crust,0.0,89.99312,0.0,10/03/0899 +7.06865,46.9757,3204,6,4,14,31,17,3.55,5.0,fr,40541,64,1709283,1,1,Active Shallow Crust,240.0121,57.99799,0.0,06/04/3204 +7.06865,46.9757,1666,6,7,19,18,29,3.55,5.0,fr,40542,33,1709286,1,1,Active Shallow Crust,0.0,89.99304,-90.0,06/07/1666 +7.06865,46.9757,3955,12,26,15,40,53,3.55,15.0,fr,40543,79,1709287,1,1,Active Shallow Crust,0.0,89.99304,-90.0,12/26/3955 +7.06865,46.9757,3659,3,29,4,4,21,3.55,5.0,fr,40544,73,1709289,1,1,Active Shallow Crust,128.8967,89.99312,0.0,03/29/3659 +7.06865,46.9757,9679,11,4,20,3,15,3.65,5.0,fr,40545,193,1709292,1,11,Active Shallow Crust,0.0,89.98773,0.0,11/04/9679 +7.06865,46.9757,7235,6,3,14,29,51,3.65,5.0,fr,40546,144,1709292,1,11,Active Shallow Crust,0.0,89.98773,0.0,06/03/7235 +7.06865,46.9757,7973,2,10,5,26,34,3.65,5.0,fr,40547,159,1709292,1,11,Active Shallow Crust,0.0,89.98773,0.0,02/10/7973 +7.06865,46.9757,7565,8,20,16,33,26,3.65,5.0,fr,40548,151,1709292,1,11,Active Shallow Crust,0.0,89.98773,0.0,08/20/7565 +7.06865,46.9757,7375,1,11,22,5,1,3.65,5.0,fr,40549,147,1709292,1,11,Active Shallow Crust,0.0,89.98773,0.0,01/11/7375 +7.06865,46.9757,5935,6,18,11,46,30,3.65,5.0,fr,40550,118,1709292,1,11,Active Shallow Crust,0.0,89.98773,0.0,06/18/5935 +7.06865,46.9757,6804,1,1,18,14,40,3.65,5.0,fr,40551,136,1709292,1,11,Active Shallow Crust,0.0,89.98773,0.0,01/01/6804 +7.06865,46.9757,6784,9,21,9,20,27,3.65,5.0,fr,40552,135,1709292,1,11,Active Shallow Crust,0.0,89.98773,0.0,09/21/6784 +7.06865,46.9757,9902,9,9,23,33,41,3.65,5.0,fr,40553,198,1709292,1,11,Active Shallow Crust,0.0,89.98773,0.0,09/09/9902 +7.06865,46.9757,9134,6,25,12,47,29,3.65,5.0,fr,40554,182,1709292,1,11,Active Shallow Crust,0.0,89.98773,0.0,06/25/9134 +7.06865,46.9757,8600,6,17,0,58,47,3.65,5.0,fr,40555,171,1709292,1,11,Active Shallow Crust,0.0,89.98773,0.0,06/17/8600 +7.06865,46.9757,9858,9,12,4,29,36,3.65,15.0,fr,40556,197,1709293,1,3,Active Shallow Crust,0.0,89.98773,0.0,09/12/9858 +7.06865,46.9757,1065,5,1,8,4,48,3.65,15.0,fr,40557,21,1709293,1,3,Active Shallow Crust,0.0,89.98773,0.0,05/01/1065 +7.06865,46.9757,3977,9,24,14,13,49,3.65,15.0,fr,40558,79,1709293,1,3,Active Shallow Crust,0.0,89.98773,0.0,09/24/3977 +7.06865,46.9757,5158,5,23,16,23,41,3.65,5.0,fr,40559,103,1709295,1,2,Active Shallow Crust,240.0011,58.01329,0.0,05/23/5158 +7.06865,46.9757,932,4,7,0,35,29,3.65,5.0,fr,40560,18,1709295,1,2,Active Shallow Crust,240.0011,58.01329,0.0,04/07/0932 +7.06865,46.9757,2666,2,14,23,14,45,3.65,15.0,fr,40561,53,1709296,1,1,Active Shallow Crust,240.0011,58.01329,0.0,02/14/2666 +7.06865,46.9757,3695,2,9,4,48,27,3.65,5.0,fr,40562,73,1709298,1,1,Active Shallow Crust,0.0,89.98759,-90.0,02/09/3695 +7.06865,46.9757,301,1,12,20,23,26,3.65,15.0,fr,40563,6,1709299,1,1,Active Shallow Crust,0.0,89.98759,-90.0,01/12/0301 +7.06865,46.9757,8184,10,21,5,54,57,3.65,5.0,fr,40564,163,1709301,1,1,Active Shallow Crust,128.9001,89.96353,0.0,10/21/8184 +7.06865,46.9757,626,3,8,6,56,1,3.65,15.0,fr,40565,12,1709302,1,1,Active Shallow Crust,128.9001,89.96353,0.0,03/08/0626 +7.06865,46.9757,1713,1,7,10,27,52,3.75,5.0,fr,40566,34,1709304,1,6,Active Shallow Crust,0.0,89.98907,0.0,01/07/1713 +7.06865,46.9757,559,6,14,17,23,40,3.75,5.0,fr,40567,11,1709304,1,6,Active Shallow Crust,0.0,89.98907,0.0,06/14/0559 +7.06865,46.9757,9499,11,2,21,58,59,3.75,5.0,fr,40568,189,1709304,1,6,Active Shallow Crust,0.0,89.98907,0.0,11/02/9499 +7.06865,46.9757,8891,7,2,8,22,58,3.75,5.0,fr,40569,177,1709304,1,6,Active Shallow Crust,0.0,89.98907,0.0,07/02/8891 +7.06865,46.9757,7826,9,29,13,6,54,3.75,5.0,fr,40570,156,1709304,1,6,Active Shallow Crust,0.0,89.98907,0.0,09/29/7826 +7.06865,46.9757,7906,7,20,9,9,6,3.75,5.0,fr,40571,158,1709304,1,6,Active Shallow Crust,0.0,89.98907,0.0,07/20/7906 +7.06865,46.9757,9611,4,17,16,58,6,3.75,15.0,fr,40572,192,1709305,1,4,Active Shallow Crust,0.0,89.98907,0.0,04/17/9611 +7.06865,46.9757,8666,4,10,5,44,52,3.75,15.0,fr,40573,173,1709305,1,4,Active Shallow Crust,0.0,89.98907,0.0,04/10/8666 +7.06865,46.9757,1612,8,21,6,47,43,3.75,15.0,fr,40574,32,1709305,1,4,Active Shallow Crust,0.0,89.98907,0.0,08/21/1612 +7.06865,46.9757,9722,4,5,4,32,18,3.75,15.0,fr,40575,194,1709305,1,4,Active Shallow Crust,0.0,89.98907,0.0,04/05/9722 +7.06865,46.9757,3091,1,1,2,37,40,3.75,5.0,fr,40576,61,1709307,1,1,Active Shallow Crust,240.0074,58.01806,0.0,01/01/3091 +7.06865,46.9757,5957,9,5,22,8,32,3.75,15.0,fr,40577,119,1709308,1,1,Active Shallow Crust,240.0074,58.01806,0.0,09/05/5957 +7.06865,46.9757,1687,3,4,16,46,53,3.75,27.5,fr,40578,33,1709309,1,1,Active Shallow Crust,240.0074,58.01806,0.0,03/04/1687 +7.06865,46.9757,1648,1,12,6,38,33,3.75,5.0,fr,40579,32,1709310,1,1,Active Shallow Crust,0.0,89.98895,-90.0,01/12/1648 +7.06865,46.9757,9439,9,14,0,59,50,3.75,5.0,fr,40580,188,1709313,1,1,Active Shallow Crust,128.8974,89.96693,0.0,09/14/9439 +7.06865,46.9757,8227,11,26,14,20,43,3.75,27.5,fr,40581,164,1709315,1,1,Active Shallow Crust,128.8974,89.96693,0.0,11/26/8227 +7.06865,46.9757,9396,11,11,5,28,24,3.85,5.0,fr,40582,187,1709316,1,5,Active Shallow Crust,0.0,89.99026,0.0,11/11/9396 +7.06865,46.9757,2006,10,21,16,48,30,3.85,5.0,fr,40583,40,1709316,1,5,Active Shallow Crust,0.0,89.99026,0.0,10/21/2006 +7.06865,46.9757,3771,10,4,22,57,38,3.85,5.0,fr,40584,75,1709316,1,5,Active Shallow Crust,0.0,89.99026,0.0,10/04/3771 +7.06865,46.9757,2227,5,25,10,28,39,3.85,5.0,fr,40585,44,1709316,1,5,Active Shallow Crust,0.0,89.99026,0.0,05/25/2227 +7.06865,46.9757,3005,12,9,19,5,57,3.85,5.0,fr,40586,60,1709316,1,5,Active Shallow Crust,0.0,89.99026,0.0,12/09/3005 +7.06865,46.9757,9108,9,3,10,42,8,3.85,15.0,fr,40587,182,1709317,1,2,Active Shallow Crust,0.0,89.99026,0.0,09/03/9108 +7.06865,46.9757,320,3,3,20,3,37,3.85,15.0,fr,40588,6,1709317,1,2,Active Shallow Crust,0.0,89.99026,0.0,03/03/0320 +7.06865,46.9757,4772,6,3,16,18,22,3.85,27.5,fr,40589,95,1709318,1,1,Active Shallow Crust,0.0,89.99026,0.0,06/03/4772 +7.06865,46.9757,1797,11,7,10,52,55,3.95,5.0,fr,40590,35,1709328,1,5,Active Shallow Crust,0.0,89.99132,0.0,11/07/1797 +7.06865,46.9757,3247,12,1,23,43,11,3.95,5.0,fr,40591,64,1709328,1,5,Active Shallow Crust,0.0,89.99132,0.0,12/01/3247 +7.06865,46.9757,409,11,13,13,48,57,3.95,5.0,fr,40592,8,1709328,1,5,Active Shallow Crust,0.0,89.99132,0.0,11/13/0409 +7.06865,46.9757,3470,12,4,12,42,29,3.95,5.0,fr,40593,69,1709328,1,5,Active Shallow Crust,0.0,89.99132,0.0,12/04/3470 +7.06865,46.9757,2491,7,25,3,54,5,3.95,5.0,fr,40594,49,1709328,1,5,Active Shallow Crust,0.0,89.99132,0.0,07/25/2491 +7.06865,46.9757,3186,5,12,15,10,55,3.95,15.0,fr,40595,63,1709329,1,1,Active Shallow Crust,0.0,89.99132,0.0,05/12/3186 +7.06865,46.9757,5565,12,8,4,18,59,3.95,27.5,fr,40596,111,1709330,1,2,Active Shallow Crust,0.0,89.99132,0.0,12/08/5565 +7.06865,46.9757,7480,8,19,0,53,47,3.95,27.5,fr,40597,149,1709330,1,2,Active Shallow Crust,0.0,89.99132,0.0,08/19/7480 +7.06865,46.9757,5053,10,24,13,47,13,3.95,5.0,fr,40598,101,1709331,1,2,Active Shallow Crust,240.0205,58.00474,0.0,10/24/5053 +7.06865,46.9757,7183,6,6,12,6,31,3.95,5.0,fr,40599,143,1709331,1,2,Active Shallow Crust,240.0205,58.00474,0.0,06/06/7183 +7.06865,46.9757,4380,12,10,16,42,4,3.95,15.0,fr,40600,87,1709332,1,2,Active Shallow Crust,240.0205,58.00474,0.0,12/10/4380 +7.06865,46.9757,1069,6,13,14,19,10,3.95,15.0,fr,40601,21,1709332,1,2,Active Shallow Crust,240.0205,58.00474,0.0,06/13/1069 +7.06865,46.9757,596,7,30,6,6,7,3.95,5.0,fr,40602,11,1709334,1,1,Active Shallow Crust,0.0,89.99122,-90.0,07/30/0596 +7.06865,46.9757,2192,8,27,15,41,27,3.95,15.0,fr,40603,43,1709335,1,1,Active Shallow Crust,0.0,89.99122,-90.0,08/27/2192 +7.06865,46.9757,6358,12,3,5,11,49,4.05,5.0,fr,40604,127,1709340,1,2,Active Shallow Crust,0.0,89.9884,0.0,12/03/6358 +7.06865,46.9757,9922,2,28,21,14,11,4.05,5.0,fr,40605,198,1709340,1,2,Active Shallow Crust,0.0,89.9884,0.0,02/28/9922 +7.06865,46.9757,4166,7,9,22,44,23,4.05,15.0,fr,40606,83,1709341,1,2,Active Shallow Crust,0.0,89.9884,0.0,07/09/4166 +7.06865,46.9757,2218,9,10,4,15,36,4.05,15.0,fr,40607,44,1709341,1,2,Active Shallow Crust,0.0,89.9884,0.0,09/10/2218 +7.06865,46.9757,9230,1,13,3,55,49,4.15,5.0,fr,40608,184,1709352,1,4,Active Shallow Crust,0.0,89.98965,0.0,01/13/9230 +7.06865,46.9757,193,12,16,8,9,19,4.15,5.0,fr,40609,3,1709352,1,4,Active Shallow Crust,0.0,89.98965,0.0,12/16/0193 +7.06865,46.9757,244,1,23,10,42,47,4.15,5.0,fr,40610,4,1709352,1,4,Active Shallow Crust,0.0,89.98965,0.0,01/23/0244 +7.06865,46.9757,7304,7,8,12,15,16,4.15,5.0,fr,40611,146,1709352,1,4,Active Shallow Crust,0.0,89.98965,0.0,07/08/7304 +7.06865,46.9757,6141,5,26,2,24,15,4.15,15.0,fr,40612,122,1709353,1,1,Active Shallow Crust,0.0,89.98965,0.0,05/26/6141 +7.06865,46.9757,6480,1,11,0,8,56,4.15,27.5,fr,40613,129,1709354,1,1,Active Shallow Crust,0.0,89.98965,0.0,01/11/6480 +7.06865,46.9757,1837,1,2,3,54,27,4.15,5.0,fr,40614,36,1709355,1,1,Active Shallow Crust,240.0091,57.99689,0.0,01/02/1837 +7.06865,46.9757,2505,2,19,14,0,41,4.15,5.0,fr,40615,50,1709361,1,1,Active Shallow Crust,128.8964,89.99483,0.0,02/19/2505 +7.06865,46.9757,1265,11,29,3,59,35,4.25,5.0,fr,40616,25,1709364,1,3,Active Shallow Crust,0.0,89.99078,0.0,11/29/1265 +7.06865,46.9757,3453,10,23,0,12,9,4.25,5.0,fr,40617,69,1709364,1,3,Active Shallow Crust,0.0,89.99078,0.0,10/23/3453 +7.06865,46.9757,6826,9,2,10,20,30,4.25,5.0,fr,40618,136,1709364,1,3,Active Shallow Crust,0.0,89.99078,0.0,09/02/6826 +7.06865,46.9757,2100,12,6,1,25,43,4.25,15.0,fr,40619,41,1709365,1,2,Active Shallow Crust,0.0,89.99078,0.0,12/06/2100 +7.06865,46.9757,1311,12,16,6,15,15,4.25,15.0,fr,40620,26,1709365,1,2,Active Shallow Crust,0.0,89.99078,0.0,12/16/1311 +7.06865,46.9757,4673,3,16,14,0,38,4.25,15.0,fr,40621,93,1709374,1,1,Active Shallow Crust,128.895,89.98096,0.0,03/16/4673 +7.06865,46.9757,9806,9,7,6,48,21,4.35,5.0,fr,40622,196,1709376,1,5,Active Shallow Crust,0.0,89.98904,0.0,09/07/9806 +7.06865,46.9757,6391,6,11,7,33,53,4.35,5.0,fr,40623,127,1709376,1,5,Active Shallow Crust,0.0,89.98904,0.0,06/11/6391 +7.06865,46.9757,394,10,27,16,14,28,4.35,5.0,fr,40624,7,1709376,1,5,Active Shallow Crust,0.0,89.98904,0.0,10/27/0394 +7.06865,46.9757,22,6,16,2,2,25,4.35,5.0,fr,40625,0,1709376,1,5,Active Shallow Crust,0.0,89.98904,0.0,06/16/0022 +7.06865,46.9757,7551,7,6,11,56,51,4.35,5.0,fr,40626,151,1709376,1,5,Active Shallow Crust,0.0,89.98904,0.0,07/06/7551 +7.06865,46.9757,4782,10,5,5,13,22,4.35,15.0,fr,40627,95,1709377,1,1,Active Shallow Crust,0.0,89.98904,0.0,10/05/4782 +7.06865,46.9757,2584,11,9,13,34,10,4.35,5.0,fr,40628,51,1709379,1,3,Active Shallow Crust,240.0087,57.99585,0.0,11/09/2584 +7.06865,46.9757,1218,8,3,0,19,47,4.35,5.0,fr,40629,24,1709379,1,3,Active Shallow Crust,240.0087,57.99585,0.0,08/03/1218 +7.06865,46.9757,982,11,21,6,50,9,4.35,5.0,fr,40630,19,1709379,1,3,Active Shallow Crust,240.0087,57.99585,0.0,11/21/0982 +7.06865,46.9757,1523,3,29,5,33,34,4.35,5.0,fr,40631,30,1709382,1,1,Active Shallow Crust,0.0,89.98891,-90.0,03/29/1523 +7.06865,46.9757,4069,8,21,0,26,45,4.35,15.0,fr,40632,81,1709386,1,1,Active Shallow Crust,128.8974,89.98303,0.0,08/21/4069 +7.06865,46.9757,5685,6,8,14,35,54,4.45,5.0,fr,40633,113,1709388,1,2,Active Shallow Crust,0.0,89.99023,0.0,06/08/5685 +7.06865,46.9757,8403,6,8,15,57,57,4.45,5.0,fr,40634,168,1709388,1,2,Active Shallow Crust,0.0,89.99023,0.0,06/08/8403 +7.06865,46.9757,9371,11,17,11,56,51,4.45,15.0,fr,40635,187,1709389,1,1,Active Shallow Crust,0.0,89.99023,0.0,11/17/9371 +7.06865,46.9757,5143,3,30,8,31,36,4.45,27.5,fr,40636,102,1709390,1,1,Active Shallow Crust,0.0,89.99023,0.0,03/30/5143 +7.06865,46.9757,1,6,6,16,30,52,4.55,5.0,fr,40637,0,1709400,1,3,Active Shallow Crust,0.0,89.98912,0.0,06/06/0001 +7.06865,46.9757,374,11,12,4,5,24,4.55,5.0,fr,40638,7,1709400,1,3,Active Shallow Crust,0.0,89.98912,0.0,11/12/0374 +7.06865,46.9757,1133,8,6,0,32,59,4.55,5.0,fr,40639,22,1709400,1,3,Active Shallow Crust,0.0,89.98912,0.0,08/06/1133 +7.06865,46.9757,2319,7,15,19,37,39,4.55,15.0,fr,40640,46,1709401,1,4,Active Shallow Crust,0.0,89.98912,0.0,07/15/2319 +7.06865,46.9757,4949,10,11,4,28,42,4.55,15.0,fr,40641,98,1709401,1,4,Active Shallow Crust,0.0,89.98912,0.0,10/11/4949 +7.06865,46.9757,1916,10,10,14,20,27,4.55,15.0,fr,40642,38,1709401,1,4,Active Shallow Crust,0.0,89.98912,0.0,10/10/1916 +7.06865,46.9757,5406,7,29,16,39,12,4.55,15.0,fr,40643,108,1709401,1,4,Active Shallow Crust,0.0,89.98912,0.0,07/29/5406 +7.06865,46.9757,2819,3,2,0,46,50,4.55,27.5,fr,40644,56,1709405,1,1,Active Shallow Crust,240.0098,57.99747,0.0,03/02/2819 +7.06865,46.9757,296,10,21,9,24,38,4.65,5.0,fr,40645,5,1709412,1,1,Active Shallow Crust,0.0,89.9903,0.0,10/21/0296 +7.06865,46.9757,9831,3,29,22,51,35,4.65,5.0,fr,40646,196,1709415,1,1,Active Shallow Crust,240.0107,57.99445,0.0,03/29/9831 +7.06865,46.9757,2637,5,6,5,14,14,4.75,5.0,fr,40647,52,1709433,1,1,Active Shallow Crust,128.8888,89.98773,0.0,05/06/2637 +7.06865,46.9757,397,12,19,17,23,54,4.85,5.0,fr,40648,7,1709436,1,1,Active Shallow Crust,0.0,89.99075,0.0,12/19/0397 +7.06865,46.9757,8398,5,17,5,7,48,4.95,15.0,fr,40649,167,1709449,1,1,Active Shallow Crust,0.0,89.99039,0.0,05/17/8398 +7.06865,46.9757,6617,9,9,3,13,1,5.35,5.0,fr,40650,132,1709496,1,1,Active Shallow Crust,0.0,89.9896,0.0,09/09/6617 +7.06865,46.9757,4248,9,2,5,19,56,5.35,15.0,fr,40651,84,1709497,1,1,Active Shallow Crust,0.0,89.9896,0.0,09/02/4248 +7.06865,46.9757,3701,10,4,6,32,30,5.35,27.5,fr,40652,74,1709498,1,1,Active Shallow Crust,0.0,89.9896,0.0,10/04/3701 +7.06865,46.9757,8558,5,25,14,35,15,5.45,5.0,fr,40653,171,1709508,1,1,Active Shallow Crust,0.0,89.98996,0.0,05/25/8558 +7.06865,46.9757,6194,12,9,20,57,57,5.95,5.0,fr,40654,123,1709571,1,1,Active Shallow Crust,240.0518,58.00082,0.0,12/09/6194 +7.068658,46.9757,4011,5,8,23,54,27,6.45,8.491219,fr,40655,80,1709628,1,1,Active Shallow Crust,0.0,89.98997,0.0,05/08/4011 +7.068647,46.9757,3659,6,30,15,34,34,6.45,26.50878,fr,40656,73,1709630,1,1,Active Shallow Crust,0.0,89.98997,0.0,06/30/3659 +2.91118,48.32093,7101,8,4,5,37,8,3.55,5.0,fr,40657,142,1710240,1,1,Active Shallow Crust,0.0,89.98994,0.0,08/04/7101 +2.91118,48.32093,8481,6,1,12,49,30,3.85,15.0,fr,40658,169,1710277,1,1,Active Shallow Crust,0.0,89.99051,0.0,06/01/8481 +7.35877,44.92005,1460,11,11,7,41,30,3.55,5.0,fr,40659,29,1710720,1,4,Active Shallow Crust,0.0,89.99286,0.0,11/11/1460 +7.35877,44.92005,3537,12,11,0,6,45,3.55,5.0,fr,40660,70,1710720,1,4,Active Shallow Crust,0.0,89.99286,0.0,12/11/3537 +7.35877,44.92005,1755,6,7,2,23,54,3.55,5.0,fr,40661,35,1710720,1,4,Active Shallow Crust,0.0,89.99286,0.0,06/07/1755 +7.35877,44.92005,479,9,18,14,11,4,3.55,5.0,fr,40662,9,1710720,1,4,Active Shallow Crust,0.0,89.99286,0.0,09/18/0479 +7.35877,44.92005,7369,1,8,13,56,57,3.55,15.0,fr,40663,147,1710721,1,3,Active Shallow Crust,0.0,89.99286,0.0,01/08/7369 +7.35877,44.92005,5622,4,30,22,15,42,3.55,15.0,fr,40664,112,1710721,1,3,Active Shallow Crust,0.0,89.99286,0.0,04/30/5622 +7.35877,44.92005,983,10,15,7,16,40,3.55,15.0,fr,40665,19,1710721,1,3,Active Shallow Crust,0.0,89.99286,0.0,10/15/0983 +7.35877,44.92005,2442,10,26,19,40,51,3.55,27.5,fr,40666,48,1710722,1,1,Active Shallow Crust,0.0,89.99286,0.0,10/26/2442 +7.35877,44.92005,6125,12,10,13,34,39,3.55,5.0,fr,40667,122,1710723,1,1,Active Shallow Crust,240.0123,57.99844,0.0,12/10/6125 +7.35877,44.92005,881,2,14,10,22,45,3.55,5.0,fr,40668,17,1710726,1,1,Active Shallow Crust,0.0,89.99277,-90.0,02/14/0881 +7.35877,44.92005,1774,9,27,21,21,44,3.55,5.0,fr,40669,35,1710729,1,1,Active Shallow Crust,128.8968,89.99286,0.0,09/27/1774 +7.35877,44.92005,977,3,2,19,14,27,3.55,15.0,fr,40670,19,1710730,1,1,Active Shallow Crust,128.8968,89.99286,0.0,03/02/0977 +7.35877,44.92005,4679,10,10,1,56,1,3.65,5.0,fr,40671,93,1710732,1,3,Active Shallow Crust,0.0,89.98727,0.0,10/10/4679 +7.35877,44.92005,4333,11,19,1,24,44,3.65,5.0,fr,40672,86,1710732,1,3,Active Shallow Crust,0.0,89.98727,0.0,11/19/4333 +7.35877,44.92005,4906,2,15,16,19,29,3.65,5.0,fr,40673,98,1710732,1,3,Active Shallow Crust,0.0,89.98727,0.0,02/15/4906 +7.35877,44.92005,1529,8,22,14,4,54,3.65,15.0,fr,40674,30,1710733,1,4,Active Shallow Crust,0.0,89.98727,0.0,08/22/1529 +7.35877,44.92005,2980,4,20,0,28,14,3.65,15.0,fr,40675,59,1710733,1,4,Active Shallow Crust,0.0,89.98727,0.0,04/20/2980 +7.35877,44.92005,2577,11,2,14,3,8,3.65,15.0,fr,40676,51,1710733,1,4,Active Shallow Crust,0.0,89.98727,0.0,11/02/2577 +7.35877,44.92005,1090,2,17,4,31,7,3.65,15.0,fr,40677,21,1710733,1,4,Active Shallow Crust,0.0,89.98727,0.0,02/17/1090 +7.35877,44.92005,9810,4,3,1,24,10,3.65,5.0,fr,40678,196,1710735,1,1,Active Shallow Crust,240.0013,58.0129,0.0,04/03/9810 +7.35877,44.92005,8913,7,4,4,36,30,3.65,15.0,fr,40679,178,1710736,1,1,Active Shallow Crust,240.0013,58.0129,0.0,07/04/8913 +7.35877,44.92005,4951,7,25,7,24,2,3.65,5.0,fr,40680,99,1710741,1,1,Active Shallow Crust,128.9011,89.96349,0.0,07/25/4951 +7.35877,44.92005,7651,1,25,12,7,31,3.75,5.0,fr,40681,153,1710744,1,9,Active Shallow Crust,0.0,89.98866,0.0,01/25/7651 +7.35877,44.92005,7083,12,5,7,33,22,3.75,5.0,fr,40682,141,1710744,1,9,Active Shallow Crust,0.0,89.98866,0.0,12/05/7083 +7.35877,44.92005,502,12,12,3,21,0,3.75,5.0,fr,40683,10,1710744,1,9,Active Shallow Crust,0.0,89.98866,0.0,12/12/0502 +7.35877,44.92005,4782,1,21,10,38,15,3.75,5.0,fr,40684,95,1710744,1,9,Active Shallow Crust,0.0,89.98866,0.0,01/21/4782 +7.35877,44.92005,6735,3,23,11,18,27,3.75,5.0,fr,40685,134,1710744,1,9,Active Shallow Crust,0.0,89.98866,0.0,03/23/6735 +7.35877,44.92005,6425,2,24,3,46,57,3.75,5.0,fr,40686,128,1710744,1,9,Active Shallow Crust,0.0,89.98866,0.0,02/24/6425 +7.35877,44.92005,52,3,19,11,24,1,3.75,5.0,fr,40687,1,1710744,1,9,Active Shallow Crust,0.0,89.98866,0.0,03/19/0052 +7.35877,44.92005,2887,4,12,18,51,59,3.75,5.0,fr,40688,57,1710744,1,9,Active Shallow Crust,0.0,89.98866,0.0,04/12/2887 +7.35877,44.92005,3390,7,5,21,3,52,3.75,5.0,fr,40689,67,1710744,1,9,Active Shallow Crust,0.0,89.98866,0.0,07/05/3390 +7.35877,44.92005,7847,2,23,23,46,33,3.75,5.0,fr,40690,156,1710747,1,2,Active Shallow Crust,240.0088,58.01771,0.0,02/23/7847 +7.35877,44.92005,536,7,15,5,31,25,3.75,5.0,fr,40691,10,1710747,1,2,Active Shallow Crust,240.0088,58.01771,0.0,07/15/0536 +7.35877,44.92005,8137,5,27,8,35,42,3.75,15.0,fr,40692,162,1710748,1,1,Active Shallow Crust,240.0088,58.01771,0.0,05/27/8137 +7.35877,44.92005,7958,8,18,19,34,34,3.75,5.0,fr,40693,159,1710753,1,1,Active Shallow Crust,128.8972,89.96685,0.0,08/18/7958 +7.35877,44.92005,6367,8,25,17,31,8,3.85,5.0,fr,40694,127,1710756,1,4,Active Shallow Crust,0.0,89.98989,0.0,08/25/6367 +7.35877,44.92005,9601,5,19,14,15,1,3.85,5.0,fr,40695,192,1710756,1,4,Active Shallow Crust,0.0,89.98989,0.0,05/19/9601 +7.35877,44.92005,5706,10,23,18,53,0,3.85,5.0,fr,40696,114,1710756,1,4,Active Shallow Crust,0.0,89.98989,0.0,10/23/5706 +7.35877,44.92005,8530,8,28,7,24,28,3.85,5.0,fr,40697,170,1710756,1,4,Active Shallow Crust,0.0,89.98989,0.0,08/28/8530 +7.35877,44.92005,5920,12,25,4,28,17,3.85,27.5,fr,40698,118,1710758,1,1,Active Shallow Crust,0.0,89.98989,0.0,12/25/5920 +7.35877,44.92005,5473,9,25,10,5,15,3.85,15.0,fr,40699,109,1710766,1,1,Active Shallow Crust,128.8957,89.99494,0.0,09/25/5473 +7.35877,44.92005,8834,7,3,5,49,33,3.95,5.0,fr,40700,176,1710768,1,3,Active Shallow Crust,0.0,89.99099,0.0,07/03/8834 +7.35877,44.92005,3038,6,2,9,14,51,3.95,5.0,fr,40701,60,1710768,1,3,Active Shallow Crust,0.0,89.99099,0.0,06/02/3038 +7.35877,44.92005,702,7,11,10,6,26,3.95,5.0,fr,40702,14,1710768,1,3,Active Shallow Crust,0.0,89.99099,0.0,07/11/0702 +7.35877,44.92005,6332,7,14,18,55,53,3.95,15.0,fr,40703,126,1710769,1,1,Active Shallow Crust,0.0,89.99099,0.0,07/14/6332 +7.35877,44.92005,9515,3,21,11,56,37,3.95,27.5,fr,40704,190,1710770,1,1,Active Shallow Crust,0.0,89.99099,0.0,03/21/9515 +7.35877,44.92005,6174,6,5,16,18,3,3.95,5.0,fr,40705,123,1710771,1,1,Active Shallow Crust,240.0195,58.00503,0.0,06/05/6174 +7.35877,44.92005,4186,6,30,7,24,8,3.95,5.0,fr,40706,83,1710774,1,1,Active Shallow Crust,0.0,89.99088,-90.0,06/30/4186 +7.35877,44.92005,8218,11,13,20,21,59,3.95,5.0,fr,40707,164,1710777,1,1,Active Shallow Crust,128.9001,89.99324,0.0,11/13/8218 +7.35877,44.92005,3783,9,8,18,57,5,4.05,5.0,fr,40708,75,1710780,1,4,Active Shallow Crust,0.0,89.99197,0.0,09/08/3783 +7.35877,44.92005,2247,1,6,10,15,57,4.05,5.0,fr,40709,44,1710780,1,4,Active Shallow Crust,0.0,89.99197,0.0,01/06/2247 +7.35877,44.92005,1978,7,12,18,58,15,4.05,5.0,fr,40710,39,1710780,1,4,Active Shallow Crust,0.0,89.99197,0.0,07/12/1978 +7.35877,44.92005,17,1,7,19,6,5,4.05,5.0,fr,40711,0,1710780,1,4,Active Shallow Crust,0.0,89.99197,0.0,01/07/0017 +7.35877,44.92005,1205,10,11,1,48,8,4.05,15.0,fr,40712,24,1710781,1,2,Active Shallow Crust,0.0,89.99197,0.0,10/11/1205 +7.35877,44.92005,8342,4,8,5,26,22,4.05,15.0,fr,40713,166,1710781,1,2,Active Shallow Crust,0.0,89.99197,0.0,04/08/8342 +7.35877,44.92005,1349,7,9,8,40,49,4.05,5.0,fr,40714,26,1710786,1,1,Active Shallow Crust,0.0,89.99187,-90.0,07/09/1349 +7.35877,44.92005,1274,6,4,15,2,54,4.05,5.0,fr,40715,25,1710789,1,1,Active Shallow Crust,128.8896,89.99398,0.0,06/04/1274 +7.35877,44.92005,9026,6,5,17,33,51,4.05,15.0,fr,40716,180,1710790,1,1,Active Shallow Crust,128.8896,89.99398,0.0,06/05/9026 +7.35877,44.92005,6999,5,4,19,27,46,4.15,5.0,fr,40717,139,1710792,1,2,Active Shallow Crust,0.0,89.98927,0.0,05/04/6999 +7.35877,44.92005,2155,11,25,8,13,3,4.15,5.0,fr,40718,43,1710792,1,2,Active Shallow Crust,0.0,89.98927,0.0,11/25/2155 +7.35877,44.92005,9831,7,12,2,24,47,4.15,15.0,fr,40719,196,1710793,1,1,Active Shallow Crust,0.0,89.98927,0.0,07/12/9831 +7.35877,44.92005,3476,9,18,7,2,20,4.15,5.0,fr,40720,69,1710795,1,1,Active Shallow Crust,240.0087,57.99715,0.0,09/18/3476 +7.35877,44.92005,5214,6,29,5,15,24,4.25,5.0,fr,40721,104,1710804,1,2,Active Shallow Crust,0.0,89.99043,0.0,06/29/5214 +7.35877,44.92005,3982,10,31,17,10,18,4.25,5.0,fr,40722,79,1710804,1,2,Active Shallow Crust,0.0,89.99043,0.0,10/31/3982 +7.35877,44.92005,4257,7,15,11,6,32,4.25,15.0,fr,40723,85,1710805,1,2,Active Shallow Crust,0.0,89.99043,0.0,07/15/4257 +7.35877,44.92005,9626,9,8,23,18,31,4.25,15.0,fr,40724,192,1710805,1,2,Active Shallow Crust,0.0,89.99043,0.0,09/08/9626 +7.35877,44.92005,1316,7,11,15,1,57,4.25,5.0,fr,40725,26,1710813,1,2,Active Shallow Crust,128.8947,89.98089,0.0,07/11/1316 +7.35877,44.92005,4926,6,14,18,43,32,4.25,5.0,fr,40726,98,1710813,1,2,Active Shallow Crust,128.8947,89.98089,0.0,06/14/4926 +7.35877,44.92005,9631,3,7,0,8,17,4.35,5.0,fr,40727,192,1710825,1,1,Active Shallow Crust,128.8981,89.98296,0.0,03/07/9631 +7.35877,44.92005,8363,1,31,0,34,57,4.45,5.0,fr,40728,167,1710837,1,1,Active Shallow Crust,128.8927,89.99367,0.0,01/31/8363 +7.35877,44.92005,1296,10,29,5,29,32,4.45,15.0,fr,40729,25,1710838,1,1,Active Shallow Crust,128.8927,89.99367,0.0,10/29/1296 +7.35877,44.92005,809,9,16,21,46,23,4.65,5.0,fr,40730,16,1710852,1,3,Active Shallow Crust,0.0,89.98994,0.0,09/16/0809 +7.35877,44.92005,9785,7,23,8,32,13,4.65,5.0,fr,40731,195,1710852,1,3,Active Shallow Crust,0.0,89.98994,0.0,07/23/9785 +7.35877,44.92005,6996,3,8,9,8,43,4.65,5.0,fr,40732,139,1710852,1,3,Active Shallow Crust,0.0,89.98994,0.0,03/08/6996 +7.35877,44.92005,8890,10,29,11,34,38,4.65,15.0,fr,40733,177,1710853,1,1,Active Shallow Crust,0.0,89.98994,0.0,10/29/8890 +7.35877,44.92005,7977,9,27,20,47,22,4.65,5.0,fr,40734,159,1710855,1,1,Active Shallow Crust,240.0102,57.99439,0.0,09/27/7977 +7.35877,44.92005,3389,3,11,16,12,21,4.75,5.0,fr,40735,67,1710864,1,1,Active Shallow Crust,0.0,89.98923,0.0,03/11/3389 +7.35877,44.92005,2328,3,1,19,35,54,4.85,5.0,fr,40736,46,1710876,1,2,Active Shallow Crust,0.0,89.99041,0.0,03/01/2328 +7.35877,44.92005,6340,7,17,19,2,5,4.85,5.0,fr,40737,126,1710876,1,2,Active Shallow Crust,0.0,89.99041,0.0,07/17/6340 +7.35877,44.92005,1586,2,7,21,46,53,4.95,5.0,fr,40738,31,1710888,1,1,Active Shallow Crust,0.0,89.99003,0.0,02/07/1586 +7.35877,44.92005,9049,10,18,12,17,39,5.65,5.0,fr,40739,180,1710972,1,1,Active Shallow Crust,0.0,89.98981,0.0,10/18/9049 +7.35877,44.92005,2308,7,12,9,8,16,5.95,15.0,fr,40740,46,1711015,1,1,Active Shallow Crust,0.0,89.98997,-90.0,07/12/2308 +-1.647,42.30771,8972,7,20,16,0,7,3.55,5.0,fr,40741,179,1711200,1,1,Active Shallow Crust,0.0,89.99068,0.0,07/20/8972 +-1.647,42.30771,4586,1,28,18,54,21,3.65,5.0,fr,40742,91,1711212,1,1,Active Shallow Crust,0.0,89.99003,0.0,01/28/4586 +-1.647,42.30771,8512,10,22,16,0,15,4.05,5.0,fr,40743,170,1711260,1,1,Active Shallow Crust,0.0,89.98952,0.0,10/22/8512 +-1.647,42.30771,2987,11,21,10,33,15,5.45,5.0,fr,40744,59,1711428,1,1,Active Shallow Crust,0.0,89.98995,0.0,11/21/2987 +4.20913,45.56415,3310,2,5,12,42,39,3.55,5.0,fr,40745,66,1711680,1,1,Active Shallow Crust,0.0,89.99294,0.0,02/05/3310 +4.20913,45.56415,2121,5,27,13,45,22,3.65,5.0,fr,40746,42,1711692,1,1,Active Shallow Crust,0.0,89.98742,0.0,05/27/2121 +4.20913,45.56415,2331,4,6,18,35,12,3.75,5.0,fr,40747,46,1711707,1,1,Active Shallow Crust,240.0081,58.01775,0.0,04/06/2331 +4.20913,45.56415,1296,3,26,10,2,43,3.85,15.0,fr,40748,25,1711717,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/26/1296 +4.20913,45.56415,6283,10,23,19,4,31,3.85,5.0,fr,40749,125,1711725,1,1,Active Shallow Crust,128.8959,89.9925,0.0,10/23/6283 +4.20913,45.56415,1879,11,2,7,9,54,4.15,5.0,fr,40750,37,1711752,1,1,Active Shallow Crust,0.0,89.98939,0.0,11/02/1879 +4.20913,45.56415,8882,8,12,22,30,39,4.25,5.0,fr,40751,177,1711764,1,1,Active Shallow Crust,0.0,89.99054,0.0,08/12/8882 +4.20913,45.56415,1929,7,11,3,27,58,4.25,5.0,fr,40752,38,1711773,1,1,Active Shallow Crust,128.8944,89.98091,0.0,07/11/1929 +4.20913,45.56415,6416,9,4,14,47,26,4.35,5.0,fr,40753,128,1711776,1,1,Active Shallow Crust,0.0,89.98875,0.0,09/04/6416 +4.20913,45.56415,9578,3,7,21,39,56,4.55,5.0,fr,40754,191,1711809,1,1,Active Shallow Crust,128.894,89.9856,0.0,03/07/9578 +4.20913,45.56415,9754,10,5,18,27,20,5.95,5.0,fr,40755,195,1711968,1,1,Active Shallow Crust,0.0,89.9902,0.0,10/05/9754 +3.3752,43.06848,7526,1,11,23,52,56,3.55,5.0,fr,40756,150,1712160,1,1,Active Shallow Crust,0.0,89.98895,0.0,01/11/7526 +3.3752,43.06848,3938,9,30,22,49,2,3.55,15.0,fr,40757,78,1712161,1,1,Active Shallow Crust,0.0,89.98895,0.0,09/30/3938 +3.3752,43.06848,9346,9,28,18,7,20,3.55,27.5,fr,40758,186,1712162,1,1,Active Shallow Crust,0.0,89.98895,0.0,09/28/9346 +3.3752,43.06848,4476,12,16,2,10,26,3.75,5.0,fr,40759,89,1712184,1,1,Active Shallow Crust,0.0,89.99123,0.0,12/16/4476 +3.3752,43.06848,5508,12,10,18,40,14,3.85,5.0,fr,40760,110,1712199,1,1,Active Shallow Crust,240.0106,57.99747,0.0,12/10/5508 +3.3752,43.06848,9098,1,31,12,16,55,4.25,5.0,fr,40761,181,1712244,1,1,Active Shallow Crust,0.0,89.99013,0.0,01/31/9098 +3.3752,43.06848,8310,8,9,0,23,47,4.45,5.0,fr,40762,166,1712268,1,1,Active Shallow Crust,0.0,89.98955,0.0,08/09/8310 +3.73359,52.20517,4565,10,6,23,31,34,3.75,27.5,fr,40763,91,1712666,1,1,Active Shallow Crust,0.0,89.99018,0.0,10/06/4565 +3.73359,52.20517,7554,1,13,5,35,40,4.05,15.0,fr,40764,151,1712710,1,1,Active Shallow Crust,128.8896,89.99392,0.0,01/13/7554 +3.73359,52.20517,2275,6,4,2,28,58,4.25,5.0,fr,40765,45,1712724,1,1,Active Shallow Crust,0.0,89.99034,0.0,06/04/2275 +0.705,47.68221,4663,9,11,0,6,37,3.65,15.0,fr,40766,93,1713133,1,1,Active Shallow Crust,0.0,89.99017,0.0,09/11/4663 +0.705,47.68221,8351,3,11,12,22,23,3.85,5.0,fr,40767,167,1713159,1,1,Active Shallow Crust,240.011,57.99786,0.0,03/11/8351 +0.705,47.68221,6948,6,28,16,15,14,4.15,5.0,fr,40768,138,1713192,1,1,Active Shallow Crust,0.0,89.98979,0.0,06/28/6948 +0.705,47.68221,2760,3,30,1,27,57,4.35,15.0,fr,40769,55,1713217,1,1,Active Shallow Crust,0.0,89.98986,0.0,03/30/2760 +0.705,47.68221,8986,11,16,18,57,10,4.35,27.5,fr,40770,179,1713218,1,1,Active Shallow Crust,0.0,89.98986,0.0,11/16/8986 +8.68447,50.19633,9814,5,26,6,55,43,3.55,5.0,fr,40771,196,1713600,1,2,Active Shallow Crust,0.0,89.98709,0.0,05/26/9814 +8.68447,50.19633,1529,11,20,14,37,34,3.55,5.0,fr,40772,30,1713600,1,2,Active Shallow Crust,0.0,89.98709,0.0,11/20/1529 +8.68447,50.19633,6828,7,29,0,14,44,3.55,27.5,fr,40773,136,1713602,1,1,Active Shallow Crust,0.0,89.98709,0.0,07/29/6828 +8.68447,50.19633,397,11,19,17,3,38,3.55,5.0,fr,40774,7,1713603,1,1,Active Shallow Crust,240.0097,58.00015,0.0,11/19/0397 +8.68447,50.19633,7448,10,29,1,14,27,3.55,15.0,fr,40775,148,1713604,1,1,Active Shallow Crust,240.0097,58.00015,0.0,10/29/7448 +8.68447,50.19633,3739,12,30,0,26,44,3.55,5.0,fr,40776,74,1713606,1,1,Active Shallow Crust,0.0,89.98694,-90.0,12/30/3739 +8.68447,50.19633,3142,4,6,16,39,59,3.55,15.0,fr,40777,62,1713610,1,1,Active Shallow Crust,128.8953,89.99355,0.0,04/06/3142 +8.68447,50.19633,6263,4,24,6,58,54,3.65,5.0,fr,40778,125,1713618,1,1,Active Shallow Crust,0.0,89.98836,-90.0,04/24/6263 +8.68447,50.19633,9863,7,17,9,47,3,3.75,5.0,fr,40779,197,1713624,1,1,Active Shallow Crust,0.0,89.98975,0.0,07/17/9863 +8.68447,50.19633,4116,5,31,11,24,39,3.85,5.0,fr,40780,82,1713636,1,1,Active Shallow Crust,0.0,89.99086,0.0,05/31/4116 +8.68447,50.19633,116,1,18,12,41,26,3.85,15.0,fr,40781,2,1713637,1,2,Active Shallow Crust,0.0,89.99086,0.0,01/18/0116 +8.68447,50.19633,2513,11,4,7,0,12,3.85,15.0,fr,40782,50,1713637,1,2,Active Shallow Crust,0.0,89.99086,0.0,11/04/2513 +8.68447,50.19633,9454,10,23,8,27,11,3.95,5.0,fr,40783,189,1713651,1,1,Active Shallow Crust,240.0188,58.0052,0.0,10/23/9454 +8.68447,50.19633,4240,12,28,8,11,57,4.05,5.0,fr,40784,84,1713666,1,1,Active Shallow Crust,0.0,89.99265,-90.0,12/28/4240 +8.68447,50.19633,358,2,18,3,2,51,4.15,27.5,fr,40785,7,1713674,1,1,Active Shallow Crust,0.0,89.98706,0.0,02/18/0358 +8.68447,50.19633,6777,6,11,16,43,14,4.35,5.0,fr,40786,135,1713696,1,2,Active Shallow Crust,0.0,89.98972,0.0,06/11/6777 +8.68447,50.19633,550,12,12,16,20,14,4.35,5.0,fr,40787,10,1713696,1,2,Active Shallow Crust,0.0,89.98972,0.0,12/12/0550 +8.68447,50.19633,7888,9,10,18,26,30,4.35,5.0,fr,40788,157,1713705,1,1,Active Shallow Crust,128.8982,89.98219,0.0,09/10/7888 +8.68447,50.19633,860,7,28,18,24,33,5.05,5.0,fr,40789,17,1713780,1,1,Active Shallow Crust,0.0,89.99081,0.0,07/28/0860 +5.18895,46.86751,1809,4,24,15,55,3,3.55,5.0,fr,40790,36,1714080,1,1,Active Shallow Crust,0.0,89.9931,0.0,04/24/1809 +5.18895,46.86751,1868,12,3,2,54,37,3.55,5.0,fr,40791,37,1714083,1,1,Active Shallow Crust,240.0122,57.99813,0.0,12/03/1868 +5.18895,46.86751,7285,12,15,0,28,49,3.65,5.0,fr,40792,145,1714095,1,1,Active Shallow Crust,240.002,58.012,0.0,12/15/7285 +5.18895,46.86751,8660,2,18,4,26,22,3.75,15.0,fr,40793,173,1714105,1,1,Active Shallow Crust,0.0,89.98904,0.0,02/18/8660 +5.18895,46.86751,6659,4,16,9,45,26,3.75,15.0,fr,40794,133,1714108,1,1,Active Shallow Crust,240.0096,58.01665,0.0,04/16/6659 +5.18895,46.86751,8033,5,7,17,30,7,3.75,5.0,fr,40795,160,1714113,1,1,Active Shallow Crust,128.8958,89.9675,0.0,05/07/8033 +5.18895,46.86751,4525,2,11,17,42,41,3.95,15.0,fr,40796,90,1714132,1,1,Active Shallow Crust,240.0206,58.00464,0.0,02/11/4525 +5.18895,46.86751,5669,1,28,20,13,32,4.05,5.0,fr,40797,113,1714143,1,1,Active Shallow Crust,240.006,58.006,0.0,01/28/5669 +5.18895,46.86751,7960,4,10,23,11,19,4.05,5.0,fr,40798,159,1714149,1,1,Active Shallow Crust,128.8904,89.99419,0.0,04/10/7960 +5.18895,46.86751,6746,11,9,15,5,11,4.05,15.0,fr,40799,134,1714150,1,1,Active Shallow Crust,128.8904,89.99419,0.0,11/09/6746 +5.18895,46.86751,9178,6,20,9,55,1,4.15,5.0,fr,40800,183,1714161,1,1,Active Shallow Crust,128.8984,89.99309,0.0,06/20/9178 +5.18895,46.86751,2986,1,18,2,45,17,4.35,5.0,fr,40801,59,1714176,1,1,Active Shallow Crust,0.0,89.98902,0.0,01/18/2986 +5.18895,46.86751,396,1,25,16,14,58,4.75,5.0,fr,40802,7,1714224,1,1,Active Shallow Crust,0.0,89.98961,0.0,01/25/0396 +5.18895,46.86751,6112,9,26,0,0,35,5.05,15.0,fr,40803,122,1714264,1,1,Active Shallow Crust,240.0223,57.9975,0.0,09/26/6112 +8.71904,48.18414,5255,5,21,18,49,3,3.55,5.0,fr,40804,105,1714560,1,4,Active Shallow Crust,0.0,89.98656,0.0,05/21/5255 +8.71904,48.18414,5602,2,13,6,55,45,3.55,5.0,fr,40805,112,1714560,1,4,Active Shallow Crust,0.0,89.98656,0.0,02/13/5602 +8.71904,48.18414,9421,11,26,7,58,28,3.55,5.0,fr,40806,188,1714560,1,4,Active Shallow Crust,0.0,89.98656,0.0,11/26/9421 +8.71904,48.18414,7534,2,23,21,14,25,3.55,5.0,fr,40807,150,1714560,1,4,Active Shallow Crust,0.0,89.98656,0.0,02/23/7534 +8.71904,48.18414,8159,4,10,6,53,1,3.65,5.0,fr,40808,163,1714578,1,1,Active Shallow Crust,0.0,89.98788,-90.0,04/10/8159 +8.71904,48.18414,9370,11,21,0,46,22,3.75,5.0,fr,40809,187,1714584,1,1,Active Shallow Crust,0.0,89.98932,0.0,11/21/9370 +8.71904,48.18414,8295,2,12,4,54,36,3.75,15.0,fr,40810,165,1714585,1,2,Active Shallow Crust,0.0,89.98932,0.0,02/12/8295 +8.71904,48.18414,1645,4,13,12,52,54,3.75,15.0,fr,40811,32,1714585,1,2,Active Shallow Crust,0.0,89.98932,0.0,04/13/1645 +8.71904,48.18414,8672,11,21,9,27,50,3.85,5.0,fr,40812,173,1714596,1,1,Active Shallow Crust,0.0,89.99048,0.0,11/21/8672 +8.71904,48.18414,162,6,22,13,43,47,3.85,15.0,fr,40813,3,1714597,1,1,Active Shallow Crust,0.0,89.99048,0.0,06/22/0162 +8.71904,48.18414,8348,7,5,6,13,29,3.95,5.0,fr,40814,166,1714608,1,1,Active Shallow Crust,0.0,89.99152,0.0,07/05/8348 +8.71904,48.18414,336,6,24,3,22,4,4.05,5.0,fr,40815,6,1714620,1,1,Active Shallow Crust,0.0,89.99244,0.0,06/24/0336 +8.71904,48.18414,2679,4,27,13,56,49,4.05,15.0,fr,40816,53,1714624,1,1,Active Shallow Crust,240.0056,58.00604,0.0,04/27/2679 +8.71904,48.18414,8284,10,12,15,4,58,4.15,5.0,fr,40817,165,1714632,1,2,Active Shallow Crust,0.0,89.99326,0.0,10/12/8284 +8.71904,48.18414,2784,3,27,9,38,25,4.15,5.0,fr,40818,55,1714632,1,2,Active Shallow Crust,0.0,89.99326,0.0,03/27/2784 +8.71904,48.18414,2723,4,4,3,35,43,4.15,15.0,fr,40819,54,1714633,1,1,Active Shallow Crust,0.0,89.99326,0.0,04/04/2723 +8.71904,48.18414,6627,12,3,13,36,8,4.15,15.0,fr,40820,132,1714636,1,1,Active Shallow Crust,240.0093,57.99737,0.0,12/03/6627 +8.71904,48.18414,1998,5,14,14,27,51,4.25,5.0,fr,40821,39,1714644,1,2,Active Shallow Crust,0.0,89.98798,0.0,05/14/1998 +8.71904,48.18414,2023,4,3,2,41,14,4.25,5.0,fr,40822,40,1714644,1,2,Active Shallow Crust,0.0,89.98798,0.0,04/03/2023 +8.71904,48.18414,3095,3,2,1,36,28,4.95,15.0,fr,40823,61,1714729,1,1,Active Shallow Crust,0.0,89.98927,0.0,03/02/3095 +-2.70631,49.44525,9865,1,8,13,52,58,3.55,5.0,fr,40824,197,1715043,1,1,Active Shallow Crust,240.0117,57.99885,0.0,01/08/9865 +-2.70631,49.44525,6377,3,29,12,18,51,3.75,5.0,fr,40825,127,1715064,1,1,Active Shallow Crust,0.0,89.98959,0.0,03/29/6377 +-2.70631,49.44525,8381,11,30,23,36,42,4.55,5.0,fr,40826,167,1715160,1,1,Active Shallow Crust,0.0,89.98963,0.0,11/30/8381 +-2.70631,49.44525,5277,5,7,22,45,10,4.85,5.0,fr,40827,105,1715196,1,1,Active Shallow Crust,0.0,89.98972,0.0,05/07/5277 +-2.70631,49.44525,1748,6,22,20,21,46,6.55,15.0,fr,40828,34,1715401,1,1,Active Shallow Crust,359.9999,89.99003,0.0,06/22/1748 +-2.48685,48.65739,4099,12,2,18,6,38,3.55,15.0,fr,40829,81,1715521,1,1,Active Shallow Crust,0.0,89.99001,0.0,12/02/4099 +-2.48685,48.65739,2819,4,18,15,19,28,3.55,27.5,fr,40830,56,1715522,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/18/2819 +-2.48685,48.65739,2775,1,26,2,10,12,3.55,5.0,fr,40831,55,1715523,1,1,Active Shallow Crust,240.0125,57.99771,0.0,01/26/2775 +-2.48685,48.65739,9870,10,17,1,2,40,3.65,5.0,fr,40832,197,1715532,1,1,Active Shallow Crust,0.0,89.9911,0.0,10/17/9870 +-2.48685,48.65739,8546,7,14,20,23,28,3.65,5.0,fr,40833,170,1715538,1,1,Active Shallow Crust,0.0,89.99099,-90.0,07/14/8546 +-2.48685,48.65739,5957,9,12,7,20,44,3.65,15.0,fr,40834,119,1715539,1,1,Active Shallow Crust,0.0,89.99099,-90.0,09/12/5957 +-2.48685,48.65739,5578,6,26,0,42,28,3.75,5.0,fr,40835,111,1715544,1,2,Active Shallow Crust,0.0,89.98942,0.0,06/26/5578 +-2.48685,48.65739,8797,6,18,16,28,18,3.75,5.0,fr,40836,175,1715544,1,2,Active Shallow Crust,0.0,89.98942,0.0,06/18/8797 +-2.48685,48.65739,1110,9,25,11,44,40,3.75,15.0,fr,40837,22,1715545,1,1,Active Shallow Crust,0.0,89.98942,0.0,09/25/1110 +-2.48685,48.65739,8578,4,17,13,6,55,3.85,15.0,fr,40838,171,1715557,1,1,Active Shallow Crust,0.0,89.99057,0.0,04/17/8578 +-2.48685,48.65739,5522,5,29,13,10,4,3.95,27.5,fr,40839,110,1715570,1,1,Active Shallow Crust,0.0,89.98949,0.0,05/29/5522 +-2.48685,48.65739,2057,5,16,16,47,21,4.25,5.0,fr,40840,41,1715604,1,1,Active Shallow Crust,0.0,89.98959,0.0,05/16/2057 +-2.48685,48.65739,4595,12,10,5,14,40,4.25,27.5,fr,40841,91,1715606,1,1,Active Shallow Crust,0.0,89.98959,0.0,12/10/4595 +6.90768,45.7873,136,5,4,2,23,32,3.55,5.0,fr,40842,2,1716000,1,3,Active Shallow Crust,0.0,89.99297,0.0,05/04/0136 +6.90768,45.7873,5629,8,2,5,11,41,3.55,5.0,fr,40843,112,1716000,1,3,Active Shallow Crust,0.0,89.99297,0.0,08/02/5629 +6.90768,45.7873,9301,11,5,23,42,47,3.55,5.0,fr,40844,186,1716000,1,3,Active Shallow Crust,0.0,89.99297,0.0,11/05/9301 +6.90768,45.7873,1948,1,14,5,40,56,3.55,27.5,fr,40845,38,1716011,1,1,Active Shallow Crust,128.8965,89.99297,0.0,01/14/1948 +6.90768,45.7873,6746,10,10,3,45,30,3.65,5.0,fr,40846,134,1716015,1,1,Active Shallow Crust,240.0001,58.01381,0.0,10/10/6746 +6.90768,45.7873,5455,11,8,6,44,43,3.65,5.0,fr,40847,109,1716018,1,1,Active Shallow Crust,0.0,89.98732,-90.0,11/08/5455 +6.90768,45.7873,7138,10,1,3,21,35,3.75,5.0,fr,40848,142,1716024,1,1,Active Shallow Crust,0.0,89.98883,0.0,10/01/7138 +6.90768,45.7873,6334,11,9,17,25,23,3.75,15.0,fr,40849,126,1716025,1,1,Active Shallow Crust,0.0,89.98883,0.0,11/09/6334 +6.90768,45.7873,3826,3,23,2,9,56,3.85,5.0,fr,40850,76,1716036,1,1,Active Shallow Crust,0.0,89.99004,0.0,03/23/3826 +6.90768,45.7873,5740,8,21,2,22,35,3.85,15.0,fr,40851,114,1716037,1,1,Active Shallow Crust,0.0,89.99004,0.0,08/21/5740 +6.90768,45.7873,2947,11,5,14,39,41,3.95,15.0,fr,40852,58,1716058,1,1,Active Shallow Crust,128.8996,89.99335,0.0,11/05/2947 +6.90768,45.7873,5354,9,9,18,21,18,4.25,15.0,fr,40853,107,1716088,1,1,Active Shallow Crust,240.0077,57.99399,0.0,09/09/5354 +6.90768,45.7873,1406,2,9,10,53,42,4.35,5.0,fr,40854,28,1716096,1,1,Active Shallow Crust,0.0,89.9888,0.0,02/09/1406 +6.90768,45.7873,3416,12,18,14,17,20,4.35,5.0,fr,40855,68,1716099,1,1,Active Shallow Crust,240.0078,57.99602,0.0,12/18/3416 +-2.56414,46.88953,9590,4,24,4,45,18,3.55,5.0,fr,40856,191,1716480,1,1,Active Shallow Crust,0.0,89.98966,0.0,04/24/9590 +-2.56414,46.88953,1462,8,5,22,25,12,3.55,15.0,fr,40857,29,1716481,1,1,Active Shallow Crust,0.0,89.98966,0.0,08/05/1462 +-2.56414,46.88953,6252,5,30,21,44,20,3.55,5.0,fr,40858,125,1716489,1,2,Active Shallow Crust,128.8959,89.99311,0.0,05/30/6252 +-2.56414,46.88953,9608,1,16,6,4,44,3.55,5.0,fr,40859,192,1716489,1,2,Active Shallow Crust,128.8959,89.99311,0.0,01/16/9608 +-2.56414,46.88953,9518,6,2,0,29,6,3.75,27.5,fr,40860,190,1716506,1,1,Active Shallow Crust,0.0,89.98905,0.0,06/02/9518 +-2.56414,46.88953,8655,9,25,21,26,54,3.75,15.0,fr,40861,173,1716514,1,1,Active Shallow Crust,128.8961,89.9675,0.0,09/25/8655 +-2.56414,46.88953,8431,9,4,20,2,49,3.85,5.0,fr,40862,168,1716525,1,1,Active Shallow Crust,128.8959,89.99268,0.0,09/04/8431 +-2.56414,46.88953,629,11,21,1,1,7,4.05,15.0,fr,40863,12,1716544,1,1,Active Shallow Crust,240.006,58.00615,0.0,11/21/0629 +-2.56414,46.88953,3446,1,23,6,36,8,4.25,5.0,fr,40864,68,1716564,1,2,Active Shallow Crust,0.0,89.99076,0.0,01/23/3446 +-2.56414,46.88953,3986,4,18,19,21,57,4.25,5.0,fr,40865,79,1716564,1,2,Active Shallow Crust,0.0,89.99076,0.0,04/18/3986 +-2.56414,46.88953,5024,1,5,7,50,31,4.25,27.5,fr,40866,100,1716566,1,1,Active Shallow Crust,0.0,89.99076,0.0,01/05/5024 +-2.56414,46.88953,1899,7,8,10,22,59,4.85,5.0,fr,40867,37,1716642,1,1,Active Shallow Crust,0.0,89.98985,-90.0,07/08/1899 +4.71733,45.76634,1440,3,12,22,2,7,3.65,5.0,fr,40868,28,1716972,1,1,Active Shallow Crust,0.0,89.98746,0.0,03/12/1440 +4.71733,45.76634,8621,2,14,15,18,9,3.85,5.0,fr,40869,172,1717002,1,2,Active Shallow Crust,0.0,89.98992,-90.0,02/14/8621 +4.71733,45.76634,4279,8,27,13,5,0,3.85,5.0,fr,40870,85,1717002,1,2,Active Shallow Crust,0.0,89.98992,-90.0,08/27/4279 +4.71733,45.76634,116,9,17,18,31,40,3.95,5.0,fr,40871,2,1717008,1,1,Active Shallow Crust,0.0,89.99112,0.0,09/17/0116 +4.71733,45.76634,8750,7,12,4,56,37,3.95,15.0,fr,40872,174,1717009,1,1,Active Shallow Crust,0.0,89.99112,0.0,07/12/8750 +4.71733,45.76634,9060,6,27,2,1,40,3.95,5.0,fr,40873,181,1717017,1,1,Active Shallow Crust,128.9002,89.99334,0.0,06/27/9060 +4.71733,45.76634,6172,10,24,3,58,30,4.35,5.0,fr,40874,123,1717056,1,1,Active Shallow Crust,0.0,89.9888,0.0,10/24/6172 +4.71733,45.76634,7940,11,2,10,53,52,4.35,27.5,fr,40875,158,1717058,1,1,Active Shallow Crust,0.0,89.9888,0.0,11/02/7940 +4.71733,45.76634,2964,6,4,7,10,29,4.55,5.0,fr,40876,59,1717080,1,1,Active Shallow Crust,0.0,89.9911,0.0,06/04/2964 +4.71733,45.76634,4866,9,11,0,25,51,4.75,5.0,fr,40877,97,1717104,1,1,Active Shallow Crust,0.0,89.9894,0.0,09/11/4866 +5.93587,51.11317,4012,5,12,21,20,14,3.55,5.0,fr,40878,80,1717440,1,2,Active Shallow Crust,0.0,89.98734,0.0,05/12/4012 +5.93587,51.11317,9544,5,19,14,29,10,3.55,5.0,fr,40879,190,1717440,1,2,Active Shallow Crust,0.0,89.98734,0.0,05/19/9544 +5.93587,51.11317,9057,2,2,11,51,20,3.55,15.0,fr,40880,181,1717441,1,2,Active Shallow Crust,0.0,89.98734,0.0,02/02/9057 +5.93587,51.11317,6729,6,10,23,9,15,3.55,15.0,fr,40881,134,1717441,1,2,Active Shallow Crust,0.0,89.98734,0.0,06/10/6729 +5.93587,51.11317,2501,12,10,6,57,51,3.55,5.0,fr,40882,50,1717443,1,1,Active Shallow Crust,240.013,57.99839,0.0,12/10/2501 +5.93587,51.11317,4177,12,2,23,43,25,3.65,5.0,fr,40883,83,1717452,1,6,Active Shallow Crust,0.0,89.98872,0.0,12/02/4177 +5.93587,51.11317,2243,12,26,13,47,6,3.65,5.0,fr,40884,44,1717452,1,6,Active Shallow Crust,0.0,89.98872,0.0,12/26/2243 +5.93587,51.11317,2413,6,22,12,11,10,3.65,5.0,fr,40885,48,1717452,1,6,Active Shallow Crust,0.0,89.98872,0.0,06/22/2413 +5.93587,51.11317,6163,6,19,9,49,29,3.65,5.0,fr,40886,123,1717452,1,6,Active Shallow Crust,0.0,89.98872,0.0,06/19/6163 +5.93587,51.11317,6868,4,26,0,23,33,3.65,5.0,fr,40887,137,1717452,1,6,Active Shallow Crust,0.0,89.98872,0.0,04/26/6868 +5.93587,51.11317,5911,11,20,18,18,42,3.65,5.0,fr,40888,118,1717452,1,6,Active Shallow Crust,0.0,89.98872,0.0,11/20/5911 +5.93587,51.11317,9810,7,4,4,35,43,3.65,15.0,fr,40889,196,1717453,1,1,Active Shallow Crust,0.0,89.98872,0.0,07/04/9810 +5.93587,51.11317,7403,9,18,1,30,31,3.65,5.0,fr,40890,148,1717461,1,1,Active Shallow Crust,128.9,89.96362,0.0,09/18/7403 +5.93587,51.11317,6089,1,20,12,8,17,3.75,5.0,fr,40891,121,1717464,1,4,Active Shallow Crust,0.0,89.98994,0.0,01/20/6089 +5.93587,51.11317,2717,3,18,14,45,30,3.75,5.0,fr,40892,54,1717464,1,4,Active Shallow Crust,0.0,89.98994,0.0,03/18/2717 +5.93587,51.11317,3012,10,14,10,56,26,3.75,5.0,fr,40893,60,1717464,1,4,Active Shallow Crust,0.0,89.98994,0.0,10/14/3012 +5.93587,51.11317,1215,9,20,20,21,29,3.75,5.0,fr,40894,24,1717464,1,4,Active Shallow Crust,0.0,89.98994,0.0,09/20/1215 +5.93587,51.11317,3696,5,13,7,25,39,3.75,15.0,fr,40895,73,1717465,1,1,Active Shallow Crust,0.0,89.98994,0.0,05/13/3696 +5.93587,51.11317,8271,6,24,18,2,10,3.75,5.0,fr,40896,165,1717467,1,1,Active Shallow Crust,240.0092,58.01752,0.0,06/24/8271 +5.93587,51.11317,8337,8,15,13,38,53,3.75,15.0,fr,40897,166,1717468,1,1,Active Shallow Crust,240.0092,58.01752,0.0,08/15/8337 +5.93587,51.11317,7014,9,15,11,11,7,3.75,5.0,fr,40898,140,1717470,1,1,Active Shallow Crust,0.0,89.98983,-90.0,09/15/7014 +5.93587,51.11317,6536,8,25,4,33,13,3.85,5.0,fr,40899,130,1717476,1,1,Active Shallow Crust,0.0,89.99104,0.0,08/25/6536 +5.93587,51.11317,2510,3,31,16,54,53,3.85,15.0,fr,40900,50,1717477,1,1,Active Shallow Crust,0.0,89.99104,0.0,03/31/2510 +5.93587,51.11317,8297,10,20,10,51,31,3.85,27.5,fr,40901,165,1717478,1,1,Active Shallow Crust,0.0,89.99104,0.0,10/20/8297 +5.93587,51.11317,4672,1,4,21,5,17,3.85,15.0,fr,40902,93,1717480,1,1,Active Shallow Crust,240.0116,57.99746,0.0,01/04/4672 +5.93587,51.11317,6192,11,15,11,40,32,3.85,5.0,fr,40903,123,1717485,1,1,Active Shallow Crust,128.8949,89.99328,0.0,11/15/6192 +5.93587,51.11317,5607,12,14,0,42,53,4.05,5.0,fr,40904,112,1717500,1,3,Active Shallow Crust,0.0,89.98932,0.0,12/14/5607 +5.93587,51.11317,8783,5,7,16,22,24,4.05,5.0,fr,40905,175,1717500,1,3,Active Shallow Crust,0.0,89.98932,0.0,05/07/8783 +5.93587,51.11317,4951,7,17,6,13,28,4.05,5.0,fr,40906,99,1717500,1,3,Active Shallow Crust,0.0,89.98932,0.0,07/17/4951 +5.93587,51.11317,633,2,23,11,23,33,4.05,15.0,fr,40907,12,1717501,1,1,Active Shallow Crust,0.0,89.98932,0.0,02/23/0633 +5.93587,51.11317,981,1,29,23,40,22,4.05,27.5,fr,40908,19,1717502,1,1,Active Shallow Crust,0.0,89.98932,0.0,01/29/0981 +5.93587,51.11317,304,4,9,15,36,28,4.25,5.0,fr,40909,6,1717524,1,1,Active Shallow Crust,0.0,89.98869,0.0,04/09/0304 +5.93587,51.11317,7517,3,4,11,48,22,4.25,5.0,fr,40910,150,1717527,1,1,Active Shallow Crust,240.0085,57.99449,0.0,03/04/7517 +5.93587,51.11317,4239,4,18,1,7,34,4.25,5.0,fr,40911,84,1717533,1,1,Active Shallow Crust,128.8936,89.98112,0.0,04/18/4239 +5.93587,51.11317,5060,1,13,18,19,0,4.65,5.0,fr,40912,101,1717581,1,1,Active Shallow Crust,128.8898,89.98703,0.0,01/13/5060 +5.93587,51.11317,7572,2,15,14,21,22,4.75,5.0,fr,40913,151,1717584,1,1,Active Shallow Crust,0.0,89.99046,0.0,02/15/7572 +5.93587,51.11317,2703,1,4,13,30,35,4.85,15.0,fr,40914,54,1717597,1,1,Active Shallow Crust,0.0,89.99007,0.0,01/04/2703 +5.93587,51.11317,179,3,18,7,6,0,5.65,5.0,fr,40915,3,1717692,1,1,Active Shallow Crust,0.0,89.98984,0.0,03/18/0179 +5.935876,51.11317,1300,4,10,5,36,2,6.35,7.567806,fr,40916,25,1717776,1,1,Active Shallow Crust,0.0,89.99003,0.0,04/10/1300 +-5.04478,49.91182,6798,1,7,21,46,11,3.65,5.0,fr,40917,135,1718412,1,1,Active Shallow Crust,0.0,89.98843,0.0,01/07/6798 +-5.04478,49.91182,9507,6,6,5,46,17,3.75,5.0,fr,40918,190,1718430,1,1,Active Shallow Crust,0.0,89.98956,-90.0,06/06/9507 +1.49723,41.56829,2757,2,13,4,8,48,3.55,5.0,fr,40919,55,1718883,1,1,Active Shallow Crust,240.0119,57.99804,0.0,02/13/2757 +1.49723,41.56829,4039,10,28,13,28,33,3.65,15.0,fr,40920,80,1718893,1,2,Active Shallow Crust,0.0,89.98991,0.0,10/28/4039 +1.49723,41.56829,5198,12,27,3,16,23,3.65,15.0,fr,40921,103,1718893,1,2,Active Shallow Crust,0.0,89.98991,0.0,12/27/5198 +1.49723,41.56829,6521,11,18,14,23,18,3.65,5.0,fr,40922,130,1718898,1,1,Active Shallow Crust,0.0,89.9898,-90.0,11/18/6521 +1.49723,41.56829,7693,5,31,2,54,59,3.75,5.0,fr,40923,153,1718904,1,1,Active Shallow Crust,0.0,89.98951,0.0,05/31/7693 +1.49723,41.56829,1100,8,22,23,15,1,3.85,15.0,fr,40924,21,1718917,1,1,Active Shallow Crust,0.0,89.99065,0.0,08/22/1100 +1.49723,41.56829,3795,12,9,18,34,51,3.85,15.0,fr,40925,75,1718920,1,1,Active Shallow Crust,240.0102,57.99755,0.0,12/09/3795 +1.49723,41.56829,5790,4,11,23,32,32,3.85,15.0,fr,40926,115,1718926,1,1,Active Shallow Crust,128.8965,89.99332,0.0,04/11/5790 +1.49723,41.56829,2749,5,16,16,16,21,3.95,5.0,fr,40927,54,1718928,1,1,Active Shallow Crust,0.0,89.99048,0.0,05/16/2749 +1.49723,41.56829,7242,9,30,11,32,55,3.95,5.0,fr,40928,144,1718934,1,1,Active Shallow Crust,0.0,89.99037,-90.0,09/30/7242 +1.49723,41.56829,4857,2,8,17,58,1,3.95,15.0,fr,40929,97,1718938,1,1,Active Shallow Crust,128.9011,89.99345,0.0,02/08/4857 +1.49723,41.56829,1103,12,25,17,42,43,4.25,5.0,fr,40930,22,1718964,1,1,Active Shallow Crust,0.0,89.98989,0.0,12/25/1103 +1.49723,41.56829,5953,12,5,17,24,5,4.35,15.0,fr,40931,119,1718977,1,1,Active Shallow Crust,0.0,89.99023,0.0,12/05/5953 +7.43373,45.97905,9408,2,15,14,51,41,3.55,5.0,fr,40932,188,1719360,1,2,Active Shallow Crust,0.0,89.993,0.0,02/15/9408 +7.43373,45.97905,1987,6,26,11,26,19,3.55,5.0,fr,40933,39,1719360,1,2,Active Shallow Crust,0.0,89.993,0.0,06/26/1987 +7.43373,45.97905,8201,6,2,20,36,23,3.55,15.0,fr,40934,164,1719361,1,1,Active Shallow Crust,0.0,89.993,0.0,06/02/8201 +7.43373,45.97905,1267,3,5,15,44,15,3.55,5.0,fr,40935,25,1719363,1,1,Active Shallow Crust,240.0134,57.99784,0.0,03/05/1267 +7.43373,45.97905,3209,12,10,1,59,31,3.55,5.0,fr,40936,64,1719369,1,1,Active Shallow Crust,128.8962,89.993,0.0,12/10/3209 +7.43373,45.97905,7685,9,30,12,53,1,3.55,15.0,fr,40937,153,1719370,1,1,Active Shallow Crust,128.8962,89.993,0.0,09/30/7685 +7.43373,45.97905,9116,1,19,18,16,58,3.65,5.0,fr,40938,182,1719372,1,2,Active Shallow Crust,0.0,89.98751,0.0,01/19/9116 +7.43373,45.97905,1255,12,14,20,55,48,3.65,5.0,fr,40939,25,1719372,1,2,Active Shallow Crust,0.0,89.98751,0.0,12/14/1255 +7.43373,45.97905,6561,3,27,14,58,28,3.65,15.0,fr,40940,131,1719373,1,1,Active Shallow Crust,0.0,89.98751,0.0,03/27/6561 +7.43373,45.97905,292,8,30,6,43,32,3.65,5.0,fr,40941,5,1719375,1,1,Active Shallow Crust,240.0005,58.01347,0.0,08/30/0292 +7.43373,45.97905,5795,8,13,7,32,18,3.65,15.0,fr,40942,115,1719382,1,1,Active Shallow Crust,128.9002,89.96352,0.0,08/13/5795 +7.43373,45.97905,2598,4,14,13,30,9,3.75,5.0,fr,40943,51,1719384,1,2,Active Shallow Crust,0.0,89.98887,0.0,04/14/2598 +7.43373,45.97905,288,8,31,16,57,38,3.75,5.0,fr,40944,5,1719384,1,2,Active Shallow Crust,0.0,89.98887,0.0,08/31/0288 +7.43373,45.97905,9330,11,4,1,5,27,3.75,27.5,fr,40945,186,1719386,1,1,Active Shallow Crust,0.0,89.98887,0.0,11/04/9330 +7.43373,45.97905,8292,10,7,17,28,4,3.85,5.0,fr,40946,165,1719396,1,2,Active Shallow Crust,0.0,89.99007,0.0,10/07/8292 +7.43373,45.97905,8152,8,18,22,3,21,3.85,5.0,fr,40947,163,1719396,1,2,Active Shallow Crust,0.0,89.99007,0.0,08/18/8152 +7.43373,45.97905,4476,1,30,20,58,43,3.85,15.0,fr,40948,89,1719397,1,3,Active Shallow Crust,0.0,89.99007,0.0,01/30/4476 +7.43373,45.97905,9676,3,6,4,33,18,3.85,15.0,fr,40949,193,1719397,1,3,Active Shallow Crust,0.0,89.99007,0.0,03/06/9676 +7.43373,45.97905,3978,1,15,5,53,3,3.85,15.0,fr,40950,79,1719397,1,3,Active Shallow Crust,0.0,89.99007,0.0,01/15/3978 +7.43373,45.97905,3831,2,11,21,17,43,3.95,5.0,fr,40951,76,1719408,1,2,Active Shallow Crust,0.0,89.99116,0.0,02/11/3831 +7.43373,45.97905,6409,4,17,18,23,53,3.95,5.0,fr,40952,128,1719408,1,2,Active Shallow Crust,0.0,89.99116,0.0,04/17/6409 +7.43373,45.97905,4737,3,10,20,45,19,4.05,5.0,fr,40953,94,1719420,1,1,Active Shallow Crust,0.0,89.98817,0.0,03/10/4737 +7.43373,45.97905,3863,11,16,13,53,39,4.15,15.0,fr,40954,77,1719433,1,1,Active Shallow Crust,0.0,89.98946,0.0,11/16/3863 +7.43373,45.97905,2868,6,19,12,21,8,4.25,5.0,fr,40955,57,1719447,1,1,Active Shallow Crust,240.0076,57.99427,0.0,06/19/2868 +7.43373,45.97905,2627,12,11,2,1,19,4.35,15.0,fr,40956,52,1719457,1,1,Active Shallow Crust,0.0,89.98884,0.0,12/11/2627 +7.43373,45.97905,4374,12,7,18,24,59,4.65,5.0,fr,40957,87,1719492,1,1,Active Shallow Crust,0.0,89.99013,0.0,12/07/4374 +7.43373,45.97905,3444,5,27,3,13,17,4.95,15.0,fr,40958,68,1719529,1,1,Active Shallow Crust,0.0,89.99021,0.0,05/27/3444 +7.43373,45.97905,1408,5,28,13,52,50,4.95,27.5,fr,40959,28,1719530,1,1,Active Shallow Crust,0.0,89.99021,0.0,05/28/1408 +7.43373,45.97905,1023,10,21,20,42,57,5.05,27.5,fr,40960,20,1719542,1,1,Active Shallow Crust,0.0,89.99003,0.0,10/21/1023 +7.43373,45.97905,5853,7,28,23,38,29,5.15,15.0,fr,40961,117,1719553,1,1,Active Shallow Crust,0.0,89.99001,0.0,07/28/5853 +7.43373,45.97905,5445,7,24,9,18,26,5.55,5.0,fr,40962,108,1719600,1,1,Active Shallow Crust,0.0,89.99019,0.0,07/24/5445 +4.60403,50.68988,1636,9,23,12,24,54,3.65,5.0,fr,40963,32,1719852,1,5,Active Shallow Crust,0.0,89.98861,0.0,09/23/1636 +4.60403,50.68988,2915,8,23,12,35,44,3.65,5.0,fr,40964,58,1719852,1,5,Active Shallow Crust,0.0,89.98861,0.0,08/23/2915 +4.60403,50.68988,4485,3,14,21,56,26,3.65,5.0,fr,40965,89,1719852,1,5,Active Shallow Crust,0.0,89.98861,0.0,03/14/4485 +4.60403,50.68988,1625,2,1,22,0,50,3.65,5.0,fr,40966,32,1719852,1,5,Active Shallow Crust,0.0,89.98861,0.0,02/01/1625 +4.60403,50.68988,1804,1,17,16,14,13,3.65,5.0,fr,40967,36,1719852,1,5,Active Shallow Crust,0.0,89.98861,0.0,01/17/1804 +4.60403,50.68988,2611,10,29,15,24,24,3.65,5.0,fr,40968,52,1719855,1,1,Active Shallow Crust,240.0023,58.01248,0.0,10/29/2611 +4.60403,50.68988,1349,6,22,16,49,22,3.65,27.5,fr,40969,26,1719857,1,1,Active Shallow Crust,240.0023,58.0124,0.0,06/22/1349 +4.60403,50.68988,7872,4,13,19,9,52,3.75,5.0,fr,40970,157,1719864,1,1,Active Shallow Crust,0.0,89.98985,0.0,04/13/7872 +4.60403,50.68988,8608,3,8,7,17,34,3.75,15.0,fr,40971,172,1719865,1,1,Active Shallow Crust,0.0,89.98985,0.0,03/08/8608 +4.60403,50.68988,8230,11,19,17,8,44,3.75,5.0,fr,40972,164,1719870,1,1,Active Shallow Crust,0.0,89.98973,-90.0,11/19/8230 +4.60403,50.68988,920,11,24,8,1,58,3.85,5.0,fr,40973,18,1719876,1,2,Active Shallow Crust,0.0,89.99095,0.0,11/24/0920 +4.60403,50.68988,9227,2,8,14,22,5,3.85,5.0,fr,40974,184,1719876,1,2,Active Shallow Crust,0.0,89.99095,0.0,02/08/9227 +4.60403,50.68988,584,2,17,9,7,40,3.95,5.0,fr,40975,11,1719897,1,1,Active Shallow Crust,128.8997,89.99396,0.0,02/17/0584 +4.60403,50.68988,9693,11,27,10,48,41,4.15,27.5,fr,40976,193,1719914,1,1,Active Shallow Crust,0.0,89.99039,0.0,11/27/9693 +4.60403,50.68988,3658,4,5,4,5,50,4.25,5.0,fr,40977,73,1719924,1,1,Active Shallow Crust,0.0,89.98859,0.0,04/05/3658 +4.60403,50.68988,3095,1,25,7,20,9,4.45,5.0,fr,40978,61,1719948,1,1,Active Shallow Crust,0.0,89.99093,0.0,01/25/3095 +4.60403,50.68988,2268,6,11,3,6,0,4.55,5.0,fr,40979,45,1719960,1,1,Active Shallow Crust,0.0,89.9899,0.0,06/11/2268 +4.60403,50.68988,9505,10,26,5,25,19,4.55,15.0,fr,40980,190,1719961,1,1,Active Shallow Crust,0.0,89.9899,0.0,10/26/9505 +4.60403,50.68988,3821,11,14,16,59,2,5.05,27.5,fr,40981,76,1720031,1,1,Active Shallow Crust,128.8838,89.99049,0.0,11/14/3821 +3.25394,44.8998,946,5,10,5,36,24,3.55,5.0,fr,40982,18,1720320,1,1,Active Shallow Crust,0.0,89.98929,0.0,05/10/0946 +3.25394,44.8998,448,10,27,14,42,38,3.55,5.0,fr,40983,8,1720326,1,1,Active Shallow Crust,0.0,89.98916,-90.0,10/27/0448 +3.25394,44.8998,3321,9,12,22,59,46,3.65,5.0,fr,40984,66,1720338,1,1,Active Shallow Crust,0.0,89.99034,-90.0,09/12/3321 +3.25394,44.8998,1003,2,3,2,3,19,3.95,15.0,fr,40985,20,1720369,1,2,Active Shallow Crust,0.0,89.99099,0.0,02/03/1003 +3.25394,44.8998,2198,9,9,20,17,35,3.95,15.0,fr,40986,43,1720369,1,2,Active Shallow Crust,0.0,89.99099,0.0,09/09/2198 +3.25394,44.8998,7231,9,29,15,9,48,4.05,5.0,fr,40987,144,1720383,1,1,Active Shallow Crust,240.0056,58.00592,0.0,09/29/7231 +3.25394,44.8998,487,10,11,10,32,45,4.15,15.0,fr,40988,9,1720393,1,1,Active Shallow Crust,0.0,89.98926,0.0,10/11/0487 +3.25394,44.8998,1327,9,9,23,50,31,4.25,27.5,fr,40989,26,1720409,1,1,Active Shallow Crust,240.0071,57.99408,0.0,09/09/1327 +3.25394,44.8998,9894,10,1,21,22,56,4.35,5.0,fr,40990,197,1720416,1,1,Active Shallow Crust,0.0,89.99004,0.0,10/01/9894 +3.25394,44.8998,6457,10,18,1,5,14,4.85,5.0,fr,40991,129,1720485,1,1,Active Shallow Crust,128.8929,89.98916,0.0,10/18/6457 +-1.89856,43.38644,6581,4,3,20,6,38,3.55,15.0,fr,40992,131,1720804,1,2,Active Shallow Crust,240.0123,57.99792,0.0,04/03/6581 +-1.89856,43.38644,2984,5,14,12,59,0,3.55,15.0,fr,40993,59,1720804,1,2,Active Shallow Crust,240.0123,57.99792,0.0,05/14/2984 +-1.89856,43.38644,5196,8,4,18,39,48,3.65,5.0,fr,40994,103,1720812,1,1,Active Shallow Crust,0.0,89.9902,0.0,08/04/5196 +-1.89856,43.38644,3055,8,28,5,55,38,3.65,27.5,fr,40995,61,1720817,1,1,Active Shallow Crust,240.0009,58.0126,0.0,08/28/3055 +-1.89856,43.38644,3061,1,5,21,25,27,3.85,5.0,fr,40996,61,1720836,1,1,Active Shallow Crust,0.0,89.98962,0.0,01/05/3061 +-1.89856,43.38644,7723,10,21,14,3,28,3.85,15.0,fr,40997,154,1720840,1,1,Active Shallow Crust,240.0106,57.99769,0.0,10/21/7723 +-1.89856,43.38644,3304,1,10,10,3,31,3.95,5.0,fr,40998,66,1720854,1,1,Active Shallow Crust,0.0,89.98948,-90.0,01/10/3304 +-1.89856,43.38644,5993,10,27,17,32,0,4.05,5.0,fr,40999,119,1720863,1,1,Active Shallow Crust,240.0055,58.00563,0.0,10/27/5993 +-1.89856,43.38644,4275,6,5,18,36,7,4.05,27.5,fr,41000,85,1720865,1,1,Active Shallow Crust,240.0055,58.00561,0.0,06/05/4275 +-1.89856,43.38644,4783,7,3,10,48,45,4.15,5.0,fr,41001,95,1720872,1,1,Active Shallow Crust,0.0,89.9899,0.0,07/03/4783 +-1.89856,43.38644,5174,2,22,8,53,33,4.55,5.0,fr,41002,103,1720920,1,1,Active Shallow Crust,0.0,89.99015,0.0,02/22/5174 +-1.89856,43.38644,1771,2,20,17,35,40,5.95,5.0,fr,41003,35,1721088,1,1,Active Shallow Crust,359.9999,89.99005,0.0,02/20/1771 +3.29645,51.56385,13,5,9,2,55,2,3.85,5.0,fr,41004,0,1721316,1,2,Active Shallow Crust,0.0,89.98891,0.0,05/09/0013 +3.29645,51.56385,6601,9,12,8,4,38,3.85,5.0,fr,41005,132,1721316,1,2,Active Shallow Crust,0.0,89.98891,0.0,09/12/6601 +0.26397,47.2533,6973,5,2,11,54,48,3.55,5.0,fr,41006,139,1721760,1,1,Active Shallow Crust,0.0,89.99016,0.0,05/02/6973 +0.26397,47.2533,3398,8,11,13,53,24,3.55,15.0,fr,41007,67,1721761,1,1,Active Shallow Crust,0.0,89.99016,0.0,08/11/3398 +0.26397,47.2533,5605,8,1,12,53,9,3.55,5.0,fr,41008,112,1721766,1,1,Active Shallow Crust,0.0,89.99004,-90.0,08/01/5605 +0.26397,47.2533,7752,5,23,23,45,15,3.55,15.0,fr,41009,155,1721770,1,1,Active Shallow Crust,128.8962,89.9938,0.0,05/23/7752 +0.26397,47.2533,6052,8,31,19,28,59,3.65,5.0,fr,41010,121,1721772,1,4,Active Shallow Crust,0.0,89.99009,0.0,08/31/6052 +0.26397,47.2533,1480,8,16,10,10,12,3.65,5.0,fr,41011,29,1721772,1,4,Active Shallow Crust,0.0,89.99009,0.0,08/16/1480 +0.26397,47.2533,1901,5,25,22,25,9,3.65,5.0,fr,41012,38,1721772,1,4,Active Shallow Crust,0.0,89.99009,0.0,05/25/1901 +0.26397,47.2533,110,5,26,4,12,45,3.65,5.0,fr,41013,2,1721772,1,4,Active Shallow Crust,0.0,89.99009,0.0,05/26/0110 +0.26397,47.2533,2557,4,25,1,28,59,3.65,15.0,fr,41014,51,1721773,1,1,Active Shallow Crust,0.0,89.99009,0.0,04/25/2557 +0.26397,47.2533,8169,1,3,6,14,51,3.65,15.0,fr,41015,163,1721779,1,1,Active Shallow Crust,0.0,89.98997,-90.0,01/03/8169 +0.26397,47.2533,2291,9,28,13,45,32,3.75,5.0,fr,41016,45,1721784,1,1,Active Shallow Crust,0.0,89.99014,0.0,09/28/2291 +0.26397,47.2533,2674,2,27,15,7,38,3.95,15.0,fr,41017,53,1721809,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/27/2674 +0.26397,47.2533,3293,1,13,7,49,5,3.95,5.0,fr,41018,65,1721811,1,2,Active Shallow Crust,240.0199,58.00499,0.0,01/13/3293 +0.26397,47.2533,9799,6,15,19,26,4,3.95,5.0,fr,41019,195,1721811,1,2,Active Shallow Crust,240.0199,58.00499,0.0,06/15/9799 +0.26397,47.2533,5952,5,1,9,38,0,4.05,27.5,fr,41020,119,1721828,1,1,Active Shallow Crust,0.0,89.99002,-90.0,05/01/5952 +0.26397,47.2533,1226,11,25,7,4,38,5.95,27.5,fr,41021,24,1722050,1,1,Active Shallow Crust,360.0,89.99001,0.0,11/25/1226 +6.09169,46.07882,7840,1,23,10,50,53,3.55,5.0,fr,41022,156,1722720,1,1,Active Shallow Crust,0.0,89.993,0.0,01/23/7840 +6.09169,46.07882,1198,7,24,22,46,27,3.55,27.5,fr,41023,23,1722722,1,1,Active Shallow Crust,0.0,89.993,0.0,07/24/1198 +6.09169,46.07882,5150,7,27,18,18,3,3.55,5.0,fr,41024,102,1722726,1,1,Active Shallow Crust,0.0,89.99293,-90.0,07/27/5150 +6.09169,46.07882,8321,3,16,2,4,33,3.55,5.0,fr,41025,166,1722729,1,1,Active Shallow Crust,128.8961,89.993,0.0,03/16/8321 +6.09169,46.07882,5572,8,15,11,1,57,3.65,5.0,fr,41026,111,1722732,1,3,Active Shallow Crust,0.0,89.98753,0.0,08/15/5572 +6.09169,46.07882,215,6,6,18,22,36,3.65,5.0,fr,41027,4,1722732,1,3,Active Shallow Crust,0.0,89.98753,0.0,06/06/0215 +6.09169,46.07882,7711,4,26,2,37,1,3.65,5.0,fr,41028,154,1722732,1,3,Active Shallow Crust,0.0,89.98753,0.0,04/26/7711 +6.09169,46.07882,8388,10,22,6,26,27,3.65,15.0,fr,41029,167,1722733,1,1,Active Shallow Crust,0.0,89.98753,0.0,10/22/8388 +6.09169,46.07882,5515,10,27,4,25,2,3.65,5.0,fr,41030,110,1722735,1,1,Active Shallow Crust,240.001,58.01318,0.0,10/27/5515 +6.09169,46.07882,7584,10,15,11,35,25,3.65,15.0,fr,41031,151,1722742,1,1,Active Shallow Crust,128.8998,89.96352,0.0,10/15/7584 +6.09169,46.07882,9418,12,20,19,39,51,3.75,5.0,fr,41032,188,1722750,1,1,Active Shallow Crust,0.0,89.98876,-90.0,12/20/9418 +6.09169,46.07882,8131,3,18,23,20,7,3.85,5.0,fr,41033,162,1722756,1,1,Active Shallow Crust,0.0,89.9901,0.0,03/18/8131 +6.09169,46.07882,2917,1,17,18,54,22,3.85,27.5,fr,41034,58,1722758,1,1,Active Shallow Crust,0.0,89.9901,0.0,01/17/2917 +6.09169,46.07882,6940,2,14,12,7,55,3.95,5.0,fr,41035,138,1722768,1,1,Active Shallow Crust,0.0,89.99117,0.0,02/14/6940 +6.09169,46.07882,8799,2,22,21,39,18,4.05,5.0,fr,41036,175,1722780,1,1,Active Shallow Crust,0.0,89.9882,0.0,02/22/8799 +6.09169,46.07882,3953,11,25,3,37,39,4.05,5.0,fr,41037,79,1722783,1,1,Active Shallow Crust,240.0062,58.00543,0.0,11/25/3953 +6.09169,46.07882,9975,5,26,20,24,57,4.05,27.5,fr,41038,199,1722788,1,1,Active Shallow Crust,0.0,89.98806,-90.0,05/26/9975 +6.09169,46.07882,8656,4,26,22,7,2,4.15,5.0,fr,41039,173,1722792,1,1,Active Shallow Crust,0.0,89.98948,0.0,04/26/8656 +6.09169,46.07882,9085,2,18,19,20,26,4.35,5.0,fr,41040,181,1722816,1,1,Active Shallow Crust,0.0,89.98886,0.0,02/18/9085 +6.09169,46.07882,5762,11,17,23,29,40,4.35,15.0,fr,41041,115,1722817,1,1,Active Shallow Crust,0.0,89.98886,0.0,11/17/5762 +6.09169,46.07882,9020,9,1,18,17,12,4.35,5.0,fr,41042,180,1722822,1,1,Active Shallow Crust,0.0,89.98873,-90.0,09/01/9020 +6.09169,46.07882,7077,7,14,6,44,54,4.55,5.0,fr,41043,141,1722840,1,2,Active Shallow Crust,0.0,89.98894,0.0,07/14/7077 +6.09169,46.07882,2559,8,7,12,27,39,4.55,5.0,fr,41044,51,1722840,1,2,Active Shallow Crust,0.0,89.98894,0.0,08/07/2559 +6.09169,46.07882,4954,8,30,18,26,35,4.75,15.0,fr,41045,99,1722865,1,1,Active Shallow Crust,0.0,89.98946,0.0,08/30/4954 +6.09169,46.07882,5340,2,1,1,8,51,5.55,5.0,fr,41046,106,1722960,1,1,Active Shallow Crust,0.0,89.9902,0.0,02/01/5340 +1.87734,50.36838,9473,5,25,7,9,28,3.55,15.0,fr,41047,189,1723201,1,1,Active Shallow Crust,0.0,89.99035,0.0,05/25/9473 +1.87734,50.36838,8866,3,25,1,57,33,3.55,15.0,fr,41048,177,1723210,1,1,Active Shallow Crust,128.8958,89.99437,0.0,03/25/8866 +1.87734,50.36838,526,10,27,8,40,0,3.85,5.0,fr,41049,10,1723245,1,1,Active Shallow Crust,128.8953,89.99374,0.0,10/27/0526 +1.87734,50.36838,3545,9,3,20,52,51,3.95,5.0,fr,41050,70,1723248,1,1,Active Shallow Crust,0.0,89.98985,0.0,09/03/3545 +1.87734,50.36838,5351,9,11,19,39,56,3.95,5.0,fr,41051,107,1723254,1,1,Active Shallow Crust,0.0,89.98974,-90.0,09/11/5351 +1.87734,50.36838,8128,6,18,11,32,55,4.05,5.0,fr,41052,162,1723260,1,1,Active Shallow Crust,0.0,89.99005,0.0,06/18/8128 +1.87734,50.36838,3199,4,25,15,9,14,4.35,27.5,fr,41053,63,1723298,1,1,Active Shallow Crust,0.0,89.98975,0.0,04/25/3199 +1.87734,50.36838,3000,8,30,7,55,17,4.85,5.0,fr,41054,59,1723365,1,1,Active Shallow Crust,128.8912,89.98899,0.0,08/30/3000 +-3.60047,44.30014,410,5,14,17,31,41,4.05,5.0,fr,41055,8,1723740,1,1,Active Shallow Crust,0.0,89.98985,0.0,05/14/0410 +-3.60047,44.30014,9052,3,3,20,44,9,4.15,15.0,fr,41056,181,1723753,1,1,Active Shallow Crust,0.0,89.98915,0.0,03/03/9052 +-0.5039,47.33298,1285,11,2,15,13,47,3.55,5.0,fr,41057,25,1724160,1,4,Active Shallow Crust,0.0,89.98975,0.0,11/02/1285 +-0.5039,47.33298,4156,8,20,0,17,57,3.55,5.0,fr,41058,83,1724160,1,4,Active Shallow Crust,0.0,89.98975,0.0,08/20/4156 +-0.5039,47.33298,2478,12,15,1,1,5,3.55,5.0,fr,41059,49,1724160,1,4,Active Shallow Crust,0.0,89.98975,0.0,12/15/2478 +-0.5039,47.33298,5921,6,7,4,35,10,3.55,5.0,fr,41060,118,1724160,1,4,Active Shallow Crust,0.0,89.98975,0.0,06/07/5921 +-0.5039,47.33298,6611,5,13,2,10,20,3.55,15.0,fr,41061,132,1724161,1,1,Active Shallow Crust,0.0,89.98975,0.0,05/13/6611 +-0.5039,47.33298,6024,1,4,9,18,48,3.55,27.5,fr,41062,120,1724162,1,1,Active Shallow Crust,0.0,89.98975,0.0,01/04/6024 +-0.5039,47.33298,8121,3,8,12,40,32,3.55,15.0,fr,41063,162,1724164,1,1,Active Shallow Crust,240.0123,57.9982,0.0,03/08/8121 +-0.5039,47.33298,4989,7,28,9,28,12,3.55,15.0,fr,41064,99,1724167,1,1,Active Shallow Crust,0.0,89.98963,-90.0,07/28/4989 +-0.5039,47.33298,9640,3,21,14,57,38,3.65,5.0,fr,41065,192,1724172,1,3,Active Shallow Crust,0.0,89.9901,0.0,03/21/9640 +-0.5039,47.33298,2705,1,30,16,18,9,3.65,5.0,fr,41066,54,1724172,1,3,Active Shallow Crust,0.0,89.9901,0.0,01/30/2705 +-0.5039,47.33298,5593,8,2,6,40,13,3.65,5.0,fr,41067,111,1724172,1,3,Active Shallow Crust,0.0,89.9901,0.0,08/02/5593 +-0.5039,47.33298,4778,7,13,6,47,43,3.65,15.0,fr,41068,95,1724179,1,1,Active Shallow Crust,0.0,89.98999,-90.0,07/13/4778 +-0.5039,47.33298,6671,5,26,2,13,16,3.75,5.0,fr,41069,133,1724184,1,1,Active Shallow Crust,0.0,89.98982,0.0,05/26/6671 +-0.5039,47.33298,6599,12,4,14,36,13,3.75,15.0,fr,41070,131,1724185,1,2,Active Shallow Crust,0.0,89.98982,0.0,12/04/6599 +-0.5039,47.33298,6410,10,13,13,55,0,3.75,15.0,fr,41071,128,1724185,1,2,Active Shallow Crust,0.0,89.98982,0.0,10/13/6410 +-0.5039,47.33298,5414,5,16,6,22,21,3.75,5.0,fr,41072,108,1724187,1,2,Active Shallow Crust,240.0083,58.01767,0.0,05/16/5414 +-0.5039,47.33298,3824,6,12,4,23,24,3.75,5.0,fr,41073,76,1724187,1,2,Active Shallow Crust,240.0083,58.01767,0.0,06/12/3824 +-0.5039,47.33298,9341,7,13,7,28,11,3.75,5.0,fr,41074,186,1724190,1,1,Active Shallow Crust,0.0,89.9897,-90.0,07/13/9341 +-0.5039,47.33298,782,3,23,15,8,34,3.85,27.5,fr,41075,15,1724198,1,1,Active Shallow Crust,0.0,89.98972,0.0,03/23/0782 +-0.5039,47.33298,8162,11,29,17,17,12,3.85,15.0,fr,41076,163,1724200,1,1,Active Shallow Crust,240.0109,57.99778,0.0,11/29/8162 +-0.5039,47.33298,3902,12,1,22,40,56,3.85,27.5,fr,41077,78,1724204,1,1,Active Shallow Crust,0.0,89.99021,-90.0,12/01/3902 +-0.5039,47.33298,5024,12,23,18,0,13,3.95,15.0,fr,41078,100,1724209,1,2,Active Shallow Crust,0.0,89.98976,0.0,12/23/5024 +-0.5039,47.33298,9450,4,3,9,23,26,3.95,15.0,fr,41079,188,1724209,1,2,Active Shallow Crust,0.0,89.98976,0.0,04/03/9450 +-0.5039,47.33298,6313,1,23,3,19,52,3.95,5.0,fr,41080,126,1724211,1,1,Active Shallow Crust,240.0199,58.00502,0.0,01/23/6313 +-0.5039,47.33298,1233,7,3,0,3,36,3.95,15.0,fr,41081,24,1724215,1,1,Active Shallow Crust,0.0,89.99019,-90.0,07/03/1233 +-0.5039,47.33298,5418,10,12,6,12,14,4.15,5.0,fr,41082,108,1724232,1,1,Active Shallow Crust,0.0,89.99015,0.0,10/12/5418 +-0.5039,47.33298,5904,2,28,12,13,15,4.15,15.0,fr,41083,118,1724233,1,2,Active Shallow Crust,0.0,89.99015,0.0,02/28/5904 +-0.5039,47.33298,5565,7,24,10,51,31,4.15,15.0,fr,41084,111,1724233,1,2,Active Shallow Crust,0.0,89.99015,0.0,07/24/5565 +-0.5039,47.33298,6758,6,4,10,53,28,4.15,5.0,fr,41085,135,1724235,1,1,Active Shallow Crust,240.0086,57.99736,0.0,06/04/6758 +-0.5039,47.33298,4858,4,1,7,13,3,4.45,15.0,fr,41086,97,1724272,1,1,Active Shallow Crust,240.0055,57.99471,0.0,04/01/4858 +-0.5039,47.33298,9553,11,17,1,25,10,4.75,5.0,fr,41087,191,1724304,1,1,Active Shallow Crust,0.0,89.98991,0.0,11/17/9553 +-0.5039,47.33298,9810,2,20,4,25,29,5.35,5.0,fr,41088,196,1724376,1,1,Active Shallow Crust,0.0,89.99,0.0,02/20/9810 +5.71206,47.06561,6066,7,9,20,43,50,3.55,5.0,fr,41089,121,1724640,1,1,Active Shallow Crust,0.0,89.99313,0.0,07/09/6066 +5.71206,47.06561,1041,7,5,7,58,17,3.55,15.0,fr,41090,20,1724641,1,1,Active Shallow Crust,0.0,89.99313,0.0,07/05/1041 +5.71206,47.06561,9382,5,29,18,52,25,3.75,5.0,fr,41091,187,1724664,1,2,Active Shallow Crust,0.0,89.98909,0.0,05/29/9382 +5.71206,47.06561,1142,9,21,17,37,41,3.75,5.0,fr,41092,22,1724664,1,2,Active Shallow Crust,0.0,89.98909,0.0,09/21/1142 +5.71206,47.06561,5833,3,3,13,4,29,3.75,15.0,fr,41093,116,1724665,1,1,Active Shallow Crust,0.0,89.98909,0.0,03/03/5833 +5.71206,47.06561,7526,9,21,17,4,21,3.75,15.0,fr,41094,150,1724668,1,1,Active Shallow Crust,240.0079,58.01848,0.0,09/21/7526 +5.71206,47.06561,7753,5,7,16,4,16,3.85,5.0,fr,41095,155,1724676,1,1,Active Shallow Crust,0.0,89.99027,0.0,05/07/7753 +5.71206,47.06561,5846,2,3,22,17,28,3.95,15.0,fr,41096,116,1724689,1,1,Active Shallow Crust,0.0,89.99133,0.0,02/03/5846 +5.71206,47.06561,2709,9,5,5,41,59,3.95,5.0,fr,41097,54,1724691,1,1,Active Shallow Crust,240.0199,58.00455,0.0,09/05/2709 +5.71206,47.06561,2501,1,12,2,20,23,3.95,5.0,fr,41098,50,1724694,1,1,Active Shallow Crust,0.0,89.99123,-90.0,01/12/2501 +5.71206,47.06561,4194,1,3,4,50,14,4.05,5.0,fr,41099,83,1724709,1,1,Active Shallow Crust,128.8896,89.99421,0.0,01/03/4194 +5.71206,47.06561,2057,7,1,16,24,28,4.15,5.0,fr,41100,41,1724712,1,1,Active Shallow Crust,0.0,89.98967,0.0,07/01/2057 +5.71206,47.06561,9916,3,22,2,57,24,4.25,5.0,fr,41101,198,1724724,1,3,Active Shallow Crust,0.0,89.99079,0.0,03/22/9916 +5.71206,47.06561,519,8,3,7,57,53,4.25,5.0,fr,41102,10,1724724,1,3,Active Shallow Crust,0.0,89.99079,0.0,08/03/0519 +5.71206,47.06561,1456,7,16,2,37,9,4.25,5.0,fr,41103,29,1724724,1,3,Active Shallow Crust,0.0,89.99079,0.0,07/16/1456 +5.71206,47.06561,5702,11,18,7,13,21,5.25,15.0,fr,41104,114,1724848,1,1,Active Shallow Crust,240.0258,58.00029,0.0,11/18/5702 +2.87034,45.23277,8532,7,3,16,48,19,3.55,5.0,fr,41105,170,1725600,1,2,Active Shallow Crust,0.0,89.98935,0.0,07/03/8532 +2.87034,45.23277,1236,1,29,3,40,13,3.55,5.0,fr,41106,24,1725600,1,2,Active Shallow Crust,0.0,89.98935,0.0,01/29/1236 +2.87034,45.23277,3632,1,5,8,42,12,3.55,15.0,fr,41107,72,1725601,1,2,Active Shallow Crust,0.0,89.98935,0.0,01/05/3632 +2.87034,45.23277,4889,12,5,22,39,13,3.55,15.0,fr,41108,97,1725601,1,2,Active Shallow Crust,0.0,89.98935,0.0,12/05/4889 +2.87034,45.23277,8013,2,9,4,41,32,3.55,27.5,fr,41109,160,1725602,1,1,Active Shallow Crust,0.0,89.98935,0.0,02/09/8013 +2.87034,45.23277,9429,2,12,0,47,28,3.65,15.0,fr,41110,188,1725613,1,1,Active Shallow Crust,0.0,89.99051,0.0,02/12/9429 +2.87034,45.23277,1440,11,16,10,56,30,3.65,27.5,fr,41111,28,1725614,1,1,Active Shallow Crust,0.0,89.99051,0.0,11/16/1440 +2.87034,45.23277,928,5,27,8,29,56,3.65,5.0,fr,41112,18,1725615,1,1,Active Shallow Crust,240.0012,58.01314,0.0,05/27/0928 +2.87034,45.23277,9318,9,9,5,21,0,3.75,5.0,fr,41113,186,1725624,1,1,Active Shallow Crust,0.0,89.98872,0.0,09/09/9318 +2.87034,45.23277,4622,7,18,15,17,29,3.75,27.5,fr,41114,92,1725626,1,1,Active Shallow Crust,0.0,89.98872,0.0,07/18/4622 +2.87034,45.23277,267,2,27,5,50,25,3.75,15.0,fr,41115,5,1725628,1,1,Active Shallow Crust,240.0081,58.01756,0.0,02/27/0267 +2.87034,45.23277,2013,5,22,23,9,54,3.75,5.0,fr,41116,40,1725633,1,1,Active Shallow Crust,128.8968,89.96747,0.0,05/22/2013 +2.87034,45.23277,612,5,29,1,23,25,3.85,5.0,fr,41117,12,1725636,1,2,Active Shallow Crust,0.0,89.98994,0.0,05/29/0612 +2.87034,45.23277,1385,8,25,14,27,36,3.85,5.0,fr,41118,27,1725636,1,2,Active Shallow Crust,0.0,89.98994,0.0,08/25/1385 +2.87034,45.23277,9063,9,25,2,47,8,3.85,27.5,fr,41119,181,1725641,1,1,Active Shallow Crust,240.0103,57.99802,0.0,09/25/9063 +2.87034,45.23277,4381,8,11,20,8,11,3.95,27.5,fr,41120,87,1725650,1,1,Active Shallow Crust,0.0,89.99104,0.0,08/11/4381 +2.87034,45.23277,4861,2,22,20,24,24,4.15,5.0,fr,41121,97,1725672,1,1,Active Shallow Crust,0.0,89.98932,0.0,02/22/4861 +2.87034,45.23277,8027,4,17,12,58,50,4.25,5.0,fr,41122,160,1725684,1,1,Active Shallow Crust,0.0,89.99049,0.0,04/17/8027 +2.87034,45.23277,3661,2,1,5,15,3,4.55,5.0,fr,41123,73,1725720,1,1,Active Shallow Crust,0.0,89.98989,0.0,02/01/3661 +2.14659,50.1183,2982,6,25,17,58,47,3.55,5.0,fr,41124,59,1726080,1,1,Active Shallow Crust,0.0,89.9903,0.0,06/25/2982 +2.14659,50.1183,8422,4,3,23,10,5,3.55,27.5,fr,41125,168,1726082,1,1,Active Shallow Crust,0.0,89.9903,0.0,04/03/8422 +2.14659,50.1183,844,7,5,11,48,29,3.85,15.0,fr,41126,16,1726117,1,1,Active Shallow Crust,0.0,89.99084,0.0,07/05/0844 +2.14659,50.1183,9792,2,22,0,8,57,4.05,5.0,fr,41127,195,1726140,1,1,Active Shallow Crust,0.0,89.98909,0.0,02/22/9792 +2.14659,50.1183,9504,9,1,11,59,23,4.05,5.0,fr,41128,190,1726149,1,1,Active Shallow Crust,128.8901,89.99364,0.0,09/01/9504 +2.14659,50.1183,4148,5,15,22,8,24,4.25,5.0,fr,41129,82,1726164,1,1,Active Shallow Crust,0.0,89.98989,0.0,05/15/4148 +2.14659,50.1183,5191,1,17,21,47,29,4.65,27.5,fr,41130,103,1726214,1,1,Active Shallow Crust,0.0,89.98997,0.0,01/17/5191 +2.02294,48.54591,6738,12,4,22,49,50,3.55,5.0,fr,41131,134,1726560,1,2,Active Shallow Crust,0.0,89.98998,0.0,12/04/6738 +2.02294,48.54591,4420,11,22,23,32,8,3.55,5.0,fr,41132,88,1726560,1,2,Active Shallow Crust,0.0,89.98998,0.0,11/22/4420 +2.02294,48.54591,8491,3,24,1,48,42,3.65,5.0,fr,41133,169,1726575,1,1,Active Shallow Crust,240.0013,58.01297,0.0,03/24/8491 +2.02294,48.54591,5603,4,23,9,2,11,3.85,5.0,fr,41134,112,1726596,1,1,Active Shallow Crust,0.0,89.99055,0.0,04/23/5603 +2.02294,48.54591,1594,3,14,3,0,44,4.25,15.0,fr,41135,31,1726645,1,1,Active Shallow Crust,0.0,89.98956,0.0,03/14/1594 +2.02294,48.54591,3779,6,2,8,35,25,4.25,5.0,fr,41136,75,1726647,1,1,Active Shallow Crust,240.0077,57.99432,0.0,06/02/3779 +1.57022,47.06867,2769,6,4,6,47,57,3.55,5.0,fr,41137,55,1727040,1,2,Active Shallow Crust,0.0,89.9897,0.0,06/04/2769 +1.57022,47.06867,3506,10,5,11,57,58,3.55,5.0,fr,41138,70,1727040,1,2,Active Shallow Crust,0.0,89.9897,0.0,10/05/3506 +1.57022,47.06867,9795,11,24,1,19,7,3.55,5.0,fr,41139,195,1727043,1,1,Active Shallow Crust,240.0123,57.99791,0.0,11/24/9795 +1.57022,47.06867,6255,7,7,14,23,18,3.65,27.5,fr,41140,125,1727054,1,1,Active Shallow Crust,0.0,89.98929,0.0,07/07/6255 +1.57022,47.06867,6681,9,4,16,28,32,3.65,5.0,fr,41141,133,1727061,1,1,Active Shallow Crust,128.9007,89.9634,0.0,09/04/6681 +1.57022,47.06867,6760,10,8,18,53,3,3.75,27.5,fr,41142,135,1727066,1,1,Active Shallow Crust,0.0,89.99046,0.0,10/08/6760 +1.57022,47.06867,4502,9,11,11,33,11,3.75,5.0,fr,41143,90,1727067,1,1,Active Shallow Crust,240.0085,58.0174,0.0,09/11/4502 +1.57022,47.06867,4,7,8,15,4,7,3.85,5.0,fr,41144,0,1727076,1,1,Active Shallow Crust,0.0,89.99027,0.0,07/08/0004 +1.57022,47.06867,6733,11,4,5,40,56,3.95,5.0,fr,41145,134,1727088,1,1,Active Shallow Crust,0.0,89.99025,0.0,11/04/6733 +1.57022,47.06867,9098,1,11,4,18,45,4.15,27.5,fr,41146,181,1727114,1,1,Active Shallow Crust,0.0,89.98967,0.0,01/11/9098 +1.57022,47.06867,6825,3,12,16,59,4,4.35,5.0,fr,41147,136,1727136,1,1,Active Shallow Crust,0.0,89.98975,0.0,03/12/6825 +1.57022,47.06867,9857,5,28,18,33,31,5.25,5.0,fr,41148,197,1727247,1,1,Active Shallow Crust,240.0259,58.00035,0.0,05/28/9857 +3.25756,46.58923,3021,10,2,9,1,56,3.55,5.0,fr,41149,60,1727520,1,1,Active Shallow Crust,0.0,89.98961,0.0,10/02/3021 +3.25756,46.58923,7037,12,15,20,42,4,4.05,5.0,fr,41150,140,1727580,1,1,Active Shallow Crust,0.0,89.99026,0.0,12/15/7037 +5.41901,49.43781,116,11,14,8,11,1,3.55,5.0,fr,41151,2,1728000,1,1,Active Shallow Crust,0.0,89.98689,0.0,11/14/0116 +5.41901,49.43781,4280,6,19,10,10,4,3.85,5.0,fr,41152,85,1728036,1,1,Active Shallow Crust,0.0,89.99072,0.0,06/19/4280 +5.41901,49.43781,5954,6,21,9,47,53,3.95,5.0,fr,41153,119,1728051,1,1,Active Shallow Crust,240.0196,58.00525,0.0,06/21/5954 +1.71246,50.10233,2465,5,30,14,21,22,4.05,27.5,fr,41154,49,1728542,1,1,Active Shallow Crust,0.0,89.99,0.0,05/30/2465 +1.71246,50.10233,4135,6,17,13,22,4,4.15,15.0,fr,41155,82,1728553,1,1,Active Shallow Crust,0.0,89.99027,0.0,06/17/4135 +2.46433,51.29002,4009,9,16,15,39,59,3.55,15.0,fr,41156,80,1728961,1,1,Active Shallow Crust,0.0,89.99054,0.0,09/16/4009 +2.46433,51.29002,4417,1,5,11,16,16,3.55,5.0,fr,41157,88,1728966,1,1,Active Shallow Crust,0.0,89.99043,-90.0,01/05/4417 +2.46433,51.29002,8202,1,20,14,44,37,3.55,15.0,fr,41158,164,1728970,1,1,Active Shallow Crust,128.8952,89.99369,0.0,01/20/8202 +2.46433,51.29002,8234,9,21,20,34,48,3.85,5.0,fr,41159,164,1729002,1,1,Active Shallow Crust,0.0,89.99097,-90.0,09/21/8234 +2.46433,51.29002,7934,8,28,13,57,9,4.55,5.0,fr,41160,158,1729080,1,1,Active Shallow Crust,0.0,89.99003,0.0,08/28/7934 +2.46433,51.29002,9246,9,28,11,51,5,4.55,5.0,fr,41161,184,1729083,1,1,Active Shallow Crust,240.0108,57.99765,0.0,09/28/9246 +-0.89335,48.51068,6569,7,1,16,39,58,3.55,5.0,fr,41162,131,1729440,1,2,Active Shallow Crust,0.0,89.98998,0.0,07/01/6569 +-0.89335,48.51068,6777,10,10,8,9,20,3.55,5.0,fr,41163,135,1729440,1,2,Active Shallow Crust,0.0,89.98998,0.0,10/10/6777 +-0.89335,48.51068,7499,6,7,2,26,15,3.55,15.0,fr,41164,149,1729441,1,1,Active Shallow Crust,0.0,89.98998,0.0,06/07/7499 +-0.89335,48.51068,9139,9,10,23,10,30,3.55,15.0,fr,41165,182,1729447,1,1,Active Shallow Crust,0.0,89.98986,-90.0,09/10/9139 +-0.89335,48.51068,1973,2,25,16,57,39,3.65,5.0,fr,41166,39,1729455,1,1,Active Shallow Crust,240.0012,58.01291,0.0,02/25/1973 +-0.89335,48.51068,4213,4,16,8,49,40,3.95,5.0,fr,41167,84,1729488,1,1,Active Shallow Crust,0.0,89.98999,0.0,04/16/4213 +-0.89335,48.51068,8279,2,5,18,41,32,3.95,27.5,fr,41168,165,1729490,1,1,Active Shallow Crust,0.0,89.98999,0.0,02/05/8279 +-0.89335,48.51068,7628,6,19,22,5,35,4.15,5.0,fr,41169,152,1729512,1,1,Active Shallow Crust,0.0,89.98995,0.0,06/19/7628 +-0.89335,48.51068,3,1,25,11,51,7,4.15,5.0,fr,41170,0,1729515,1,1,Active Shallow Crust,240.0089,57.99738,0.0,01/25/0003 +-0.89335,48.51068,6456,7,6,22,7,18,4.35,15.0,fr,41171,129,1729540,1,1,Active Shallow Crust,240.0089,57.99601,0.0,07/06/6456 +-0.89335,48.51068,4255,7,12,5,14,1,5.05,5.0,fr,41172,85,1729620,1,1,Active Shallow Crust,0.0,89.99005,0.0,07/12/4255 +1.71753,45.20813,413,7,6,1,16,55,3.55,5.0,fr,41173,8,1729920,1,1,Active Shallow Crust,0.0,89.98934,0.0,07/06/0413 +1.71753,45.20813,4792,4,10,9,0,25,3.55,15.0,fr,41174,95,1729924,1,1,Active Shallow Crust,240.0119,57.99842,0.0,04/10/4792 +1.71753,45.20813,6805,8,10,0,10,5,3.55,5.0,fr,41175,136,1729926,1,1,Active Shallow Crust,0.0,89.98922,-90.0,08/10/6805 +1.71753,45.20813,6259,5,13,2,46,18,3.65,5.0,fr,41176,125,1729935,1,1,Active Shallow Crust,240.0009,58.01304,0.0,05/13/6259 +1.71753,45.20813,5916,2,19,22,27,21,3.75,5.0,fr,41177,118,1729944,1,1,Active Shallow Crust,0.0,89.99013,0.0,02/19/5916 +1.71753,45.20813,8508,5,30,7,41,54,4.15,5.0,fr,41178,170,1729992,1,1,Active Shallow Crust,0.0,89.99021,0.0,05/30/8508 +1.71753,45.20813,3631,12,17,13,8,50,4.15,15.0,fr,41179,72,1729993,1,1,Active Shallow Crust,0.0,89.99021,0.0,12/17/3631 +1.71753,45.20813,7042,10,16,9,51,34,4.35,5.0,fr,41180,140,1730016,1,1,Active Shallow Crust,0.0,89.9901,0.0,10/16/7042 +1.71753,45.20813,4675,9,4,20,17,35,4.45,5.0,fr,41181,93,1730028,1,1,Active Shallow Crust,0.0,89.98991,0.0,09/04/4675 +1.71753,45.20813,4490,10,30,2,59,38,5.95,5.0,fr,41182,89,1730208,1,1,Active Shallow Crust,0.0,89.99002,0.0,10/30/4490 +6.00416,49.38883,3832,1,20,13,11,7,3.85,5.0,fr,41183,76,1730445,1,1,Active Shallow Crust,128.896,89.99303,0.0,01/20/3832 +6.00416,49.38883,423,11,3,18,12,0,4.15,5.0,fr,41184,8,1730472,1,1,Active Shallow Crust,0.0,89.99013,0.0,11/03/0423 +6.00416,49.38883,6107,2,27,13,35,26,4.35,15.0,fr,41185,122,1730503,1,1,Active Shallow Crust,0.0,89.98943,-90.0,02/27/6107 +6.00416,49.38883,953,10,5,18,45,47,4.95,5.0,fr,41186,19,1730568,1,1,Active Shallow Crust,0.0,89.98952,0.0,10/05/0953 +6.1097,47.37364,7026,8,13,3,21,51,3.55,5.0,fr,41187,140,1730880,1,2,Active Shallow Crust,0.0,89.99317,0.0,08/13/7026 +6.1097,47.37364,8716,5,14,22,28,11,3.55,5.0,fr,41188,174,1730880,1,2,Active Shallow Crust,0.0,89.99317,0.0,05/14/8716 +6.1097,47.37364,2895,12,9,6,34,36,3.55,15.0,fr,41189,57,1730890,1,1,Active Shallow Crust,128.8956,89.99317,0.0,12/09/2895 +6.1097,47.37364,8617,9,9,8,29,27,3.65,15.0,fr,41190,172,1730893,1,1,Active Shallow Crust,0.0,89.98782,0.0,09/09/8617 +6.1097,47.37364,1298,6,8,15,11,13,3.75,15.0,fr,41191,25,1730908,1,1,Active Shallow Crust,240.0093,58.01666,0.0,06/08/1298 +6.1097,47.37364,9165,8,28,0,0,2,3.75,15.0,fr,41192,183,1730911,1,1,Active Shallow Crust,0.0,89.98903,-90.0,08/28/9165 +6.1097,47.37364,9306,12,10,20,59,55,3.85,5.0,fr,41193,186,1730916,1,1,Active Shallow Crust,0.0,89.99033,0.0,12/10/9306 +6.1097,47.37364,2195,1,22,22,56,56,3.95,27.5,fr,41194,43,1730930,1,1,Active Shallow Crust,0.0,89.99138,0.0,01/22/2195 +6.1097,47.37364,7879,9,29,19,54,18,3.95,15.0,fr,41195,157,1730938,1,1,Active Shallow Crust,128.9006,89.99354,0.0,09/29/7879 +6.1097,47.37364,3246,9,20,19,17,19,4.05,15.0,fr,41196,64,1730941,1,1,Active Shallow Crust,0.0,89.98848,0.0,09/20/3246 +6.1097,47.37364,8826,3,30,3,15,28,4.05,5.0,fr,41197,176,1730949,1,1,Active Shallow Crust,128.8902,89.99424,0.0,03/30/8826 +6.1097,47.37364,4032,1,18,4,47,36,4.15,5.0,fr,41198,80,1730955,1,1,Active Shallow Crust,240.0088,57.99779,0.0,01/18/4032 +6.1097,47.37364,6914,8,12,17,24,55,4.25,5.0,fr,41199,138,1730964,1,1,Active Shallow Crust,0.0,89.99084,0.0,08/12/6914 +6.1097,47.37364,4123,8,13,16,26,33,4.25,15.0,fr,41200,82,1730965,1,1,Active Shallow Crust,0.0,89.99084,0.0,08/13/4123 +6.1097,47.37364,3429,12,16,21,51,51,4.45,5.0,fr,41201,68,1730991,1,1,Active Shallow Crust,240.0054,57.995,0.0,12/16/3429 +6.1097,47.37364,5523,9,26,11,12,50,4.55,5.0,fr,41202,110,1731000,1,1,Active Shallow Crust,0.0,89.9892,0.0,09/26/5523 +5.55322,49.33043,3447,6,3,11,53,46,3.55,15.0,fr,41203,68,1731841,1,1,Active Shallow Crust,0.0,89.98685,0.0,06/03/3447 +5.55322,49.33043,1515,9,9,1,39,11,3.95,5.0,fr,41204,30,1731888,1,1,Active Shallow Crust,0.0,89.99171,0.0,09/09/1515 +-5.80393,48.33418,9851,12,16,6,35,43,4.35,5.0,fr,41205,197,1732416,1,1,Active Shallow Crust,0.0,89.98933,0.0,12/16/9851 +-5.80393,48.33418,1993,10,17,9,20,52,4.55,5.0,fr,41206,39,1732440,1,1,Active Shallow Crust,0.0,89.9894,0.0,10/17/1993 +6.01173,46.5879,3292,9,16,7,6,10,3.55,5.0,fr,41207,65,1732800,1,1,Active Shallow Crust,0.0,89.99307,0.0,09/16/3292 +6.01173,46.5879,7640,12,23,13,4,28,3.65,5.0,fr,41208,152,1732812,1,2,Active Shallow Crust,0.0,89.98765,0.0,12/23/7640 +6.01173,46.5879,5661,4,10,2,19,46,3.65,5.0,fr,41209,113,1732812,1,2,Active Shallow Crust,0.0,89.98765,0.0,04/10/5661 +6.01173,46.5879,6835,11,22,22,8,5,3.75,15.0,fr,41210,136,1732825,1,1,Active Shallow Crust,0.0,89.98899,0.0,11/22/6835 +6.01173,46.5879,414,5,18,4,6,12,3.75,5.0,fr,41211,8,1732833,1,1,Active Shallow Crust,128.8972,89.96749,0.0,05/18/0414 +6.01173,46.5879,4848,6,21,14,1,34,3.85,15.0,fr,41212,96,1732837,1,1,Active Shallow Crust,0.0,89.99019,0.0,06/21/4848 +6.01173,46.5879,5341,6,2,15,16,52,3.85,5.0,fr,41213,106,1732845,1,1,Active Shallow Crust,128.896,89.99265,0.0,06/02/5341 +6.01173,46.5879,9270,10,14,3,40,11,3.95,5.0,fr,41214,185,1732848,1,1,Active Shallow Crust,0.0,89.99126,0.0,10/14/9270 +6.01173,46.5879,8747,2,25,14,2,4,3.95,15.0,fr,41215,174,1732849,1,2,Active Shallow Crust,0.0,89.99126,0.0,02/25/8747 +6.01173,46.5879,6679,4,5,6,31,33,3.95,15.0,fr,41216,133,1732849,1,2,Active Shallow Crust,0.0,89.99126,0.0,04/05/6679 +6.01173,46.5879,8358,12,6,13,25,27,4.05,5.0,fr,41217,167,1732860,1,1,Active Shallow Crust,0.0,89.98831,0.0,12/06/8358 +6.01173,46.5879,2701,9,20,14,8,54,4.55,15.0,fr,41218,54,1732921,1,1,Active Shallow Crust,0.0,89.98904,0.0,09/20/2701 +6.01173,46.5879,5517,7,31,21,37,11,4.65,5.0,fr,41219,110,1732935,1,1,Active Shallow Crust,240.0107,57.9943,0.0,07/31/5517 +6.01173,46.5879,439,9,1,12,17,52,4.75,5.0,fr,41220,8,1732944,1,1,Active Shallow Crust,0.0,89.98956,0.0,09/01/0439 +6.01173,46.5879,8223,6,15,21,4,21,4.85,15.0,fr,41221,164,1732957,1,1,Active Shallow Crust,0.0,89.99069,0.0,06/15/8223 +-0.17287,46.8198,5451,11,3,17,37,50,3.55,15.0,fr,41222,109,1733281,1,1,Active Shallow Crust,0.0,89.99008,0.0,11/03/5451 +-0.17287,46.8198,1089,7,21,19,38,20,3.55,5.0,fr,41223,21,1733283,1,1,Active Shallow Crust,240.0122,57.99818,0.0,07/21/1089 +-0.17287,46.8198,7119,9,19,23,19,58,3.55,5.0,fr,41224,142,1733289,1,2,Active Shallow Crust,128.8962,89.99374,0.0,09/19/7119 +-0.17287,46.8198,4703,12,24,11,27,17,3.55,5.0,fr,41225,94,1733289,1,2,Active Shallow Crust,128.8962,89.99374,0.0,12/24/4703 +-0.17287,46.8198,2210,4,18,22,27,11,3.55,27.5,fr,41226,44,1733291,1,1,Active Shallow Crust,128.8962,89.99374,0.0,04/18/2210 +-0.17287,46.8198,7167,9,28,2,49,25,3.65,5.0,fr,41227,143,1733292,1,3,Active Shallow Crust,0.0,89.99001,0.0,09/28/7167 +-0.17287,46.8198,6936,3,15,19,24,23,3.65,5.0,fr,41228,138,1733292,1,3,Active Shallow Crust,0.0,89.99001,0.0,03/15/6936 +-0.17287,46.8198,6871,12,18,18,25,33,3.65,5.0,fr,41229,137,1733292,1,3,Active Shallow Crust,0.0,89.99001,0.0,12/18/6871 +-0.17287,46.8198,2909,11,1,13,19,10,3.65,27.5,fr,41230,58,1733294,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/01/2909 +-0.17287,46.8198,5777,12,28,15,22,54,3.65,5.0,fr,41231,115,1733295,1,1,Active Shallow Crust,240.0012,58.01289,0.0,12/28/5777 +-0.17287,46.8198,5972,8,14,9,13,9,3.75,5.0,fr,41232,119,1733304,1,1,Active Shallow Crust,0.0,89.99007,0.0,08/14/5972 +-0.17287,46.8198,2943,3,17,8,32,36,3.75,5.0,fr,41233,58,1733307,1,2,Active Shallow Crust,240.0084,58.01755,0.0,03/17/2943 +-0.17287,46.8198,3442,3,20,6,50,55,3.75,5.0,fr,41234,68,1733307,1,2,Active Shallow Crust,240.0084,58.01755,0.0,03/20/3442 +-0.17287,46.8198,6958,3,8,23,23,53,3.75,5.0,fr,41235,139,1733310,1,1,Active Shallow Crust,0.0,89.98995,-90.0,03/08/6958 +-0.17287,46.8198,2436,9,24,4,39,14,3.95,5.0,fr,41236,48,1733328,1,1,Active Shallow Crust,359.9999,89.99007,0.0,09/24/2436 +-0.17287,46.8198,534,10,8,11,3,9,3.95,5.0,fr,41237,10,1733331,1,1,Active Shallow Crust,240.0198,58.00498,0.0,10/08/0534 +-0.17287,46.8198,1552,3,27,11,56,9,3.95,5.0,fr,41238,31,1733334,1,1,Active Shallow Crust,0.0,89.98995,-90.0,03/27/1552 +-0.17287,46.8198,6449,6,17,20,53,58,3.95,5.0,fr,41239,128,1733337,1,1,Active Shallow Crust,128.9003,89.99374,0.0,06/17/6449 +-0.17287,46.8198,8183,11,30,16,56,36,4.05,5.0,fr,41240,163,1733340,1,2,Active Shallow Crust,0.0,89.99006,0.0,11/30/8183 +-0.17287,46.8198,4964,4,1,8,44,57,4.05,5.0,fr,41241,99,1733340,1,2,Active Shallow Crust,0.0,89.99006,0.0,04/01/4964 +-0.17287,46.8198,2649,2,7,14,14,18,4.05,27.5,fr,41242,52,1733342,1,1,Active Shallow Crust,0.0,89.99006,0.0,02/07/2649 +-0.17287,46.8198,8429,12,23,11,45,9,4.25,5.0,fr,41243,168,1733364,1,1,Active Shallow Crust,0.0,89.98998,0.0,12/23/8429 +-0.17287,46.8198,4473,12,26,13,42,16,4.25,15.0,fr,41244,89,1733365,1,1,Active Shallow Crust,0.0,89.98998,0.0,12/26/4473 +-0.17287,46.8198,5947,3,14,19,18,18,4.35,15.0,fr,41245,118,1733380,1,1,Active Shallow Crust,240.0085,57.99596,0.0,03/14/5947 +-0.17287,46.8198,1597,5,21,13,22,58,4.55,5.0,fr,41246,31,1733400,1,1,Active Shallow Crust,0.0,89.98997,0.0,05/21/1597 +-0.17287,46.8198,6232,10,24,16,47,0,4.55,5.0,fr,41247,124,1733403,1,1,Active Shallow Crust,240.0094,57.99738,0.0,10/24/6232 +-0.17287,46.8198,3848,4,6,12,5,28,4.65,27.5,fr,41248,76,1733414,1,1,Active Shallow Crust,0.0,89.98997,0.0,04/06/3848 +-0.17287,46.8198,3401,5,17,18,36,14,5.15,5.0,fr,41249,68,1733472,1,1,Active Shallow Crust,0.0,89.98998,0.0,05/17/3401 +-0.2049422,46.85778,5298,12,14,4,53,33,6.95,12.80532,fr,41250,105,1733691,1,1,Active Shallow Crust,240.1642,57.99987,0.0,12/14/5298 +7.36207,46.4918,4128,11,7,21,14,16,3.55,5.0,fr,41251,82,1733760,1,4,Active Shallow Crust,0.0,89.99306,0.0,11/07/4128 +7.36207,46.4918,5335,1,15,7,16,34,3.55,5.0,fr,41252,106,1733760,1,4,Active Shallow Crust,0.0,89.99306,0.0,01/15/5335 +7.36207,46.4918,3481,4,8,23,14,25,3.55,5.0,fr,41253,69,1733760,1,4,Active Shallow Crust,0.0,89.99306,0.0,04/08/3481 +7.36207,46.4918,5889,11,28,16,26,15,3.55,5.0,fr,41254,117,1733760,1,4,Active Shallow Crust,0.0,89.99306,0.0,11/28/5889 +7.36207,46.4918,1829,10,24,6,7,3,3.55,15.0,fr,41255,36,1733761,1,5,Active Shallow Crust,0.0,89.99306,0.0,10/24/1829 +7.36207,46.4918,8924,3,16,14,45,15,3.55,15.0,fr,41256,178,1733761,1,5,Active Shallow Crust,0.0,89.99306,0.0,03/16/8924 +7.36207,46.4918,3215,2,10,6,30,46,3.55,15.0,fr,41257,64,1733761,1,5,Active Shallow Crust,0.0,89.99306,0.0,02/10/3215 +7.36207,46.4918,2601,7,29,19,38,10,3.55,15.0,fr,41258,52,1733761,1,5,Active Shallow Crust,0.0,89.99306,0.0,07/29/2601 +7.36207,46.4918,8938,10,31,10,58,24,3.55,15.0,fr,41259,178,1733761,1,5,Active Shallow Crust,0.0,89.99306,0.0,10/31/8938 +7.36207,46.4918,2287,9,9,7,41,11,3.55,27.5,fr,41260,45,1733762,1,1,Active Shallow Crust,0.0,89.99306,0.0,09/09/2287 +7.36207,46.4918,5826,1,19,22,55,58,3.55,5.0,fr,41261,116,1733763,1,3,Active Shallow Crust,240.0135,57.99737,0.0,01/19/5826 +7.36207,46.4918,9758,12,30,14,16,7,3.55,5.0,fr,41262,195,1733763,1,3,Active Shallow Crust,240.0135,57.99737,0.0,12/30/9758 +7.36207,46.4918,4553,7,2,16,47,56,3.55,5.0,fr,41263,91,1733763,1,3,Active Shallow Crust,240.0135,57.99737,0.0,07/02/4553 +7.36207,46.4918,2792,11,8,20,22,59,3.55,15.0,fr,41264,55,1733764,1,3,Active Shallow Crust,240.0135,57.99737,0.0,11/08/2792 +7.36207,46.4918,7682,12,30,9,4,58,3.55,15.0,fr,41265,153,1733764,1,3,Active Shallow Crust,240.0135,57.99737,0.0,12/30/7682 +7.36207,46.4918,757,1,11,14,35,11,3.55,15.0,fr,41266,15,1733764,1,3,Active Shallow Crust,240.0135,57.99737,0.0,01/11/0757 +7.36207,46.4918,5643,5,4,22,44,45,3.55,27.5,fr,41267,112,1733765,1,1,Active Shallow Crust,240.0135,57.99728,0.0,05/04/5643 +7.36207,46.4918,3717,1,18,12,57,22,3.55,15.0,fr,41268,74,1733767,1,2,Active Shallow Crust,0.0,89.99298,-90.0,01/18/3717 +7.36207,46.4918,7539,3,18,22,54,11,3.55,15.0,fr,41269,150,1733767,1,2,Active Shallow Crust,0.0,89.99298,-90.0,03/18/7539 +7.36207,46.4918,6516,8,2,19,54,41,3.65,5.0,fr,41270,130,1733772,1,5,Active Shallow Crust,0.0,89.98763,0.0,08/02/6516 +7.36207,46.4918,7260,4,5,16,49,50,3.65,5.0,fr,41271,145,1733772,1,5,Active Shallow Crust,0.0,89.98763,0.0,04/05/7260 +7.36207,46.4918,1982,12,14,14,27,27,3.65,5.0,fr,41272,39,1733772,1,5,Active Shallow Crust,0.0,89.98763,0.0,12/14/1982 +7.36207,46.4918,4794,1,13,20,16,35,3.65,5.0,fr,41273,95,1733772,1,5,Active Shallow Crust,0.0,89.98763,0.0,01/13/4794 +7.36207,46.4918,7178,1,8,7,37,6,3.65,5.0,fr,41274,143,1733772,1,5,Active Shallow Crust,0.0,89.98763,0.0,01/08/7178 +7.36207,46.4918,1521,8,25,16,34,9,3.65,15.0,fr,41275,30,1733773,1,1,Active Shallow Crust,0.0,89.98763,0.0,08/25/1521 +7.36207,46.4918,5905,8,11,3,36,26,3.65,5.0,fr,41276,118,1733775,1,2,Active Shallow Crust,240.0019,58.01299,0.0,08/11/5905 +7.36207,46.4918,1501,4,22,1,28,45,3.65,5.0,fr,41277,30,1733775,1,2,Active Shallow Crust,240.0019,58.01299,0.0,04/22/1501 +7.36207,46.4918,5433,4,8,23,27,13,3.65,15.0,fr,41278,108,1733782,1,1,Active Shallow Crust,128.9003,89.96352,0.0,04/08/5433 +7.36207,46.4918,1586,10,15,11,32,57,3.75,5.0,fr,41279,31,1733784,1,8,Active Shallow Crust,0.0,89.98897,0.0,10/15/1586 +7.36207,46.4918,7766,11,6,15,24,8,3.75,5.0,fr,41280,155,1733784,1,8,Active Shallow Crust,0.0,89.98897,0.0,11/06/7766 +7.36207,46.4918,1530,2,17,9,15,13,3.75,5.0,fr,41281,30,1733784,1,8,Active Shallow Crust,0.0,89.98897,0.0,02/17/1530 +7.36207,46.4918,1836,2,11,13,2,28,3.75,5.0,fr,41282,36,1733784,1,8,Active Shallow Crust,0.0,89.98897,0.0,02/11/1836 +7.36207,46.4918,2687,12,25,10,29,5,3.75,5.0,fr,41283,53,1733784,1,8,Active Shallow Crust,0.0,89.98897,0.0,12/25/2687 +7.36207,46.4918,1105,6,26,10,44,29,3.75,5.0,fr,41284,22,1733784,1,8,Active Shallow Crust,0.0,89.98897,0.0,06/26/1105 +7.36207,46.4918,5921,8,7,15,27,18,3.75,5.0,fr,41285,118,1733784,1,8,Active Shallow Crust,0.0,89.98897,0.0,08/07/5921 +7.36207,46.4918,8313,7,2,4,36,41,3.75,5.0,fr,41286,166,1733784,1,8,Active Shallow Crust,0.0,89.98897,0.0,07/02/8313 +7.36207,46.4918,4365,7,3,18,53,7,3.75,15.0,fr,41287,87,1733785,1,2,Active Shallow Crust,0.0,89.98897,0.0,07/03/4365 +7.36207,46.4918,1000,3,18,21,0,0,3.75,15.0,fr,41288,19,1733785,1,2,Active Shallow Crust,0.0,89.98897,0.0,03/18/1000 +7.36207,46.4918,5741,12,25,23,45,56,3.75,27.5,fr,41289,114,1733786,1,1,Active Shallow Crust,0.0,89.98897,0.0,12/25/5741 +7.36207,46.4918,5165,2,24,10,14,4,3.75,5.0,fr,41290,103,1733787,1,1,Active Shallow Crust,240.0089,58.01733,0.0,02/24/5165 +7.36207,46.4918,5481,10,21,23,24,57,3.75,5.0,fr,41291,109,1733790,1,1,Active Shallow Crust,0.0,89.98885,-90.0,10/21/5481 +7.36207,46.4918,5929,7,20,11,2,44,3.85,5.0,fr,41292,118,1733796,1,4,Active Shallow Crust,0.0,89.99017,0.0,07/20/5929 +7.36207,46.4918,8547,4,23,7,19,1,3.85,5.0,fr,41293,170,1733796,1,4,Active Shallow Crust,0.0,89.99017,0.0,04/23/8547 +7.36207,46.4918,9741,1,30,6,12,34,3.85,5.0,fr,41294,194,1733796,1,4,Active Shallow Crust,0.0,89.99017,0.0,01/30/9741 +7.36207,46.4918,6659,1,14,8,46,48,3.85,5.0,fr,41295,133,1733796,1,4,Active Shallow Crust,0.0,89.99017,0.0,01/14/6659 +7.36207,46.4918,942,4,9,15,2,6,3.85,15.0,fr,41296,18,1733797,1,3,Active Shallow Crust,0.0,89.99017,0.0,04/09/0942 +7.36207,46.4918,7198,5,8,0,53,6,3.85,15.0,fr,41297,143,1733797,1,3,Active Shallow Crust,0.0,89.99017,0.0,05/08/7198 +7.36207,46.4918,7258,5,24,9,30,44,3.85,15.0,fr,41298,145,1733797,1,3,Active Shallow Crust,0.0,89.99017,0.0,05/24/7258 +7.36207,46.4918,993,1,27,1,48,39,3.85,27.5,fr,41299,19,1733798,1,1,Active Shallow Crust,0.0,89.99017,0.0,01/27/0993 +7.36207,46.4918,3487,3,18,12,8,50,3.85,5.0,fr,41300,69,1733799,1,1,Active Shallow Crust,240.0103,57.99838,0.0,03/18/3487 +7.36207,46.4918,7577,6,12,3,26,32,3.85,5.0,fr,41301,151,1733802,1,1,Active Shallow Crust,0.0,89.99006,-90.0,06/12/7577 +7.36207,46.4918,8499,10,12,17,17,15,3.85,15.0,fr,41302,169,1733803,1,1,Active Shallow Crust,0.0,89.99006,-90.0,10/12/8499 +7.36207,46.4918,5514,7,10,15,47,27,3.85,5.0,fr,41303,110,1733805,1,1,Active Shallow Crust,128.8958,89.99263,0.0,07/10/5514 +7.36207,46.4918,2743,11,9,0,30,37,3.85,15.0,fr,41304,54,1733806,1,1,Active Shallow Crust,128.8958,89.99263,0.0,11/09/2743 +7.36207,46.4918,4798,1,2,23,49,3,3.95,5.0,fr,41305,95,1733808,1,6,Active Shallow Crust,0.0,89.99124,0.0,01/02/4798 +7.36207,46.4918,1636,8,24,10,35,9,3.95,5.0,fr,41306,32,1733808,1,6,Active Shallow Crust,0.0,89.99124,0.0,08/24/1636 +7.36207,46.4918,4110,4,21,5,0,56,3.95,5.0,fr,41307,82,1733808,1,6,Active Shallow Crust,0.0,89.99124,0.0,04/21/4110 +7.36207,46.4918,490,9,11,19,29,32,3.95,5.0,fr,41308,9,1733808,1,6,Active Shallow Crust,0.0,89.99124,0.0,09/11/0490 +7.36207,46.4918,8186,11,22,13,50,0,3.95,5.0,fr,41309,163,1733808,1,6,Active Shallow Crust,0.0,89.99124,0.0,11/22/8186 +7.36207,46.4918,8055,11,10,19,45,35,3.95,5.0,fr,41310,161,1733808,1,6,Active Shallow Crust,0.0,89.99124,0.0,11/10/8055 +7.36207,46.4918,708,6,25,13,41,17,3.95,15.0,fr,41311,14,1733809,1,1,Active Shallow Crust,0.0,89.99124,0.0,06/25/0708 +7.36207,46.4918,3008,1,8,7,5,38,3.95,15.0,fr,41312,60,1733812,1,1,Active Shallow Crust,240.0195,58.00522,0.0,01/08/3008 +7.36207,46.4918,1732,2,5,15,59,26,3.95,15.0,fr,41313,34,1733815,1,2,Active Shallow Crust,0.0,89.99113,-90.0,02/05/1732 +7.36207,46.4918,8415,3,22,11,32,29,3.95,15.0,fr,41314,168,1733815,1,2,Active Shallow Crust,0.0,89.99113,-90.0,03/22/8415 +7.36207,46.4918,2114,2,5,14,26,10,4.05,5.0,fr,41315,42,1733820,1,5,Active Shallow Crust,0.0,89.98829,0.0,02/05/2114 +7.36207,46.4918,9196,10,9,23,59,23,4.05,5.0,fr,41316,183,1733820,1,5,Active Shallow Crust,0.0,89.98829,0.0,10/09/9196 +7.36207,46.4918,2810,7,11,6,36,18,4.05,5.0,fr,41317,56,1733820,1,5,Active Shallow Crust,0.0,89.98829,0.0,07/11/2810 +7.36207,46.4918,3495,12,12,2,4,0,4.05,5.0,fr,41318,69,1733820,1,5,Active Shallow Crust,0.0,89.98829,0.0,12/12/3495 +7.36207,46.4918,14,1,5,7,3,23,4.05,5.0,fr,41319,0,1733820,1,5,Active Shallow Crust,0.0,89.98829,0.0,01/05/0014 +7.36207,46.4918,1300,9,6,19,14,18,4.05,27.5,fr,41320,25,1733822,1,1,Active Shallow Crust,0.0,89.98829,0.0,09/06/1300 +7.36207,46.4918,6694,2,1,13,13,31,4.05,5.0,fr,41321,133,1733823,1,1,Active Shallow Crust,240.0063,58.00578,0.0,02/01/6694 +7.36207,46.4918,4350,4,16,6,49,53,4.05,5.0,fr,41322,86,1733826,1,1,Active Shallow Crust,0.0,89.98815,-90.0,04/16/4350 +7.36207,46.4918,1631,8,24,19,35,19,4.05,5.0,fr,41323,32,1733829,1,1,Active Shallow Crust,128.8912,89.9922,0.0,08/24/1631 +7.36207,46.4918,3616,11,14,20,1,59,4.15,5.0,fr,41324,72,1733832,1,1,Active Shallow Crust,0.0,89.98956,0.0,11/14/3616 +7.36207,46.4918,2793,3,24,20,41,36,4.15,15.0,fr,41325,55,1733833,1,2,Active Shallow Crust,0.0,89.98956,0.0,03/24/2793 +7.36207,46.4918,7017,9,14,16,50,26,4.15,15.0,fr,41326,140,1733833,1,2,Active Shallow Crust,0.0,89.98956,0.0,09/14/7017 +7.36207,46.4918,5271,7,24,22,46,30,4.15,5.0,fr,41327,105,1733838,1,1,Active Shallow Crust,0.0,89.98944,-90.0,07/24/5271 +7.36207,46.4918,1589,10,13,11,48,57,4.15,15.0,fr,41328,31,1733839,1,1,Active Shallow Crust,0.0,89.98944,-90.0,10/13/1589 +7.36207,46.4918,4075,12,30,3,18,0,4.15,5.0,fr,41329,81,1733841,1,1,Active Shallow Crust,128.8976,89.99304,0.0,12/30/4075 +7.36207,46.4918,3413,12,12,18,32,7,4.25,5.0,fr,41330,68,1733844,1,1,Active Shallow Crust,0.0,89.9907,0.0,12/12/3413 +7.36207,46.4918,2634,3,23,4,7,4,4.25,27.5,fr,41331,52,1733846,1,2,Active Shallow Crust,0.0,89.9907,0.0,03/23/2634 +7.36207,46.4918,605,3,7,0,48,53,4.25,27.5,fr,41332,12,1733846,1,2,Active Shallow Crust,0.0,89.9907,0.0,03/07/0605 +7.36207,46.4918,5184,5,6,10,58,23,4.25,5.0,fr,41333,103,1733847,1,2,Active Shallow Crust,240.008,57.99365,0.0,05/06/5184 +7.36207,46.4918,3646,5,23,15,0,41,4.25,5.0,fr,41334,72,1733847,1,2,Active Shallow Crust,240.008,57.99365,0.0,05/23/3646 +7.36207,46.4918,7334,10,9,1,9,52,4.25,15.0,fr,41335,146,1733851,1,1,Active Shallow Crust,0.0,89.99059,-90.0,10/09/7334 +7.36207,46.4918,3132,5,21,1,12,37,4.35,5.0,fr,41336,62,1733856,1,4,Active Shallow Crust,0.0,89.98895,0.0,05/21/3132 +7.36207,46.4918,5593,12,16,10,22,21,4.35,5.0,fr,41337,111,1733856,1,4,Active Shallow Crust,0.0,89.98895,0.0,12/16/5593 +7.36207,46.4918,1851,9,9,8,1,6,4.35,5.0,fr,41338,37,1733856,1,4,Active Shallow Crust,0.0,89.98895,0.0,09/09/1851 +7.36207,46.4918,8635,9,14,2,45,0,4.35,5.0,fr,41339,172,1733856,1,4,Active Shallow Crust,0.0,89.98895,0.0,09/14/8635 +7.36207,46.4918,8483,6,9,0,3,20,4.35,15.0,fr,41340,169,1733857,1,2,Active Shallow Crust,0.0,89.98895,0.0,06/09/8483 +7.36207,46.4918,9096,11,4,22,0,37,4.35,15.0,fr,41341,181,1733857,1,2,Active Shallow Crust,0.0,89.98895,0.0,11/04/9096 +7.36207,46.4918,3074,11,9,11,53,14,4.35,5.0,fr,41342,61,1733859,1,1,Active Shallow Crust,240.0083,57.99642,0.0,11/09/3074 +7.36207,46.4918,8103,7,8,17,50,14,4.35,5.0,fr,41343,162,1733862,1,1,Active Shallow Crust,0.0,89.98882,-90.0,07/08/8103 +7.36207,46.4918,5001,10,14,23,44,45,4.45,5.0,fr,41344,100,1733868,1,4,Active Shallow Crust,0.0,89.99014,0.0,10/14/5001 +7.36207,46.4918,1280,8,27,9,18,34,4.45,5.0,fr,41345,25,1733868,1,4,Active Shallow Crust,0.0,89.99014,0.0,08/27/1280 +7.36207,46.4918,9498,9,5,15,56,56,4.45,5.0,fr,41346,189,1733868,1,4,Active Shallow Crust,0.0,89.99014,0.0,09/05/9498 +7.36207,46.4918,6760,6,16,15,6,56,4.45,5.0,fr,41347,135,1733868,1,4,Active Shallow Crust,0.0,89.99014,0.0,06/16/6760 +7.36207,46.4918,9916,8,10,12,56,54,4.45,5.0,fr,41348,198,1733871,1,1,Active Shallow Crust,240.0057,57.99466,0.0,08/10/9916 +7.36207,46.4918,2179,2,27,3,8,51,4.45,15.0,fr,41349,43,1733872,1,1,Active Shallow Crust,240.0057,57.99467,0.0,02/27/2179 +7.36207,46.4918,1062,10,3,10,24,4,4.55,5.0,fr,41350,21,1733880,1,3,Active Shallow Crust,0.0,89.98902,0.0,10/03/1062 +7.36207,46.4918,6113,8,9,21,54,31,4.55,5.0,fr,41351,122,1733880,1,3,Active Shallow Crust,0.0,89.98902,0.0,08/09/6113 +7.36207,46.4918,9268,11,3,0,3,26,4.55,5.0,fr,41352,185,1733880,1,3,Active Shallow Crust,0.0,89.98902,0.0,11/03/9268 +7.36207,46.4918,7534,2,19,13,36,52,4.55,5.0,fr,41353,150,1733886,1,1,Active Shallow Crust,0.0,89.98889,-90.0,02/19/7534 +7.36207,46.4918,7409,8,19,11,13,59,4.55,5.0,fr,41354,148,1733889,1,1,Active Shallow Crust,128.8939,89.98565,0.0,08/19/7409 +7.36207,46.4918,831,2,1,22,21,29,4.65,5.0,fr,41355,16,1733892,1,1,Active Shallow Crust,0.0,89.99022,0.0,02/01/0831 +7.36207,46.4918,9187,3,22,13,11,6,4.75,15.0,fr,41356,183,1733908,1,1,Active Shallow Crust,240.0076,58.0043,0.0,03/22/9187 +7.36207,46.4918,1523,7,19,7,47,59,4.85,5.0,fr,41357,30,1733916,1,1,Active Shallow Crust,0.0,89.99068,0.0,07/19/1523 +7.36207,46.4918,3174,11,26,8,9,3,4.95,5.0,fr,41358,63,1733928,1,2,Active Shallow Crust,0.0,89.9903,0.0,11/26/3174 +7.36207,46.4918,9165,9,15,10,27,58,4.95,5.0,fr,41359,183,1733928,1,2,Active Shallow Crust,0.0,89.9903,0.0,09/15/9165 +7.36207,46.4918,3479,3,19,13,9,55,4.95,15.0,fr,41360,69,1733929,1,1,Active Shallow Crust,0.0,89.9903,0.0,03/19/3479 +7.36207,46.4918,3621,5,25,4,44,58,5.25,15.0,fr,41361,72,1733971,1,1,Active Shallow Crust,0.0,89.99007,-90.0,05/25/3621 +7.36207,46.4918,7902,9,7,0,58,47,5.35,5.0,fr,41362,158,1733979,1,2,Active Shallow Crust,240.0251,57.99795,0.0,09/07/7902 +7.36207,46.4918,4258,7,31,18,47,11,5.35,5.0,fr,41363,85,1733979,1,2,Active Shallow Crust,240.0251,57.99795,0.0,07/31/4258 +2.3334,46.31463,2172,2,24,12,39,11,3.55,5.0,fr,41364,43,1734240,1,3,Active Shallow Crust,0.0,89.98956,0.0,02/24/2172 +2.3334,46.31463,2640,5,1,13,33,2,3.55,5.0,fr,41365,52,1734240,1,3,Active Shallow Crust,0.0,89.98956,0.0,05/01/2640 +2.3334,46.31463,7906,5,24,8,6,13,3.55,5.0,fr,41366,158,1734240,1,3,Active Shallow Crust,0.0,89.98956,0.0,05/24/7906 +2.3334,46.31463,7039,9,16,21,4,17,3.55,15.0,fr,41367,140,1734241,1,1,Active Shallow Crust,0.0,89.98956,0.0,09/16/7039 +2.3334,46.31463,1182,2,8,20,20,56,3.65,5.0,fr,41368,23,1734252,1,1,Active Shallow Crust,0.0,89.99069,0.0,02/08/1182 +2.3334,46.31463,1032,1,12,8,6,28,3.75,5.0,fr,41369,20,1734264,1,1,Active Shallow Crust,0.0,89.98894,0.0,01/12/1032 +2.3334,46.31463,2373,4,28,2,59,0,3.75,5.0,fr,41370,47,1734273,1,1,Active Shallow Crust,128.8962,89.96749,0.0,04/28/2373 +2.3334,46.31463,1487,4,30,20,0,52,3.85,15.0,fr,41371,29,1734286,1,1,Active Shallow Crust,128.8961,89.99261,0.0,04/30/1487 +2.3334,46.31463,8374,1,24,13,32,44,3.95,5.0,fr,41372,167,1734288,1,1,Active Shallow Crust,0.0,89.98901,0.0,01/24/8374 +2.3334,46.31463,7392,10,6,13,24,52,4.25,15.0,fr,41373,147,1734325,1,1,Active Shallow Crust,0.0,89.99067,0.0,10/06/7392 +2.3334,46.31463,5782,7,10,9,51,38,4.35,5.0,fr,41374,115,1734345,1,1,Active Shallow Crust,128.898,89.98277,0.0,07/10/5782 +2.3334,46.31463,5413,2,14,8,43,2,4.75,27.5,fr,41375,108,1734395,1,1,Active Shallow Crust,128.8886,89.98816,0.0,02/14/5413 +0.2247,47.91845,6796,11,5,6,41,12,3.55,15.0,fr,41376,135,1734721,1,1,Active Shallow Crust,0.0,89.99007,0.0,11/05/6796 +0.2247,47.91845,333,9,4,16,23,12,3.55,5.0,fr,41377,6,1734726,1,1,Active Shallow Crust,0.0,89.98996,-90.0,09/04/0333 +0.2247,47.91845,7592,7,27,11,41,5,3.65,5.0,fr,41378,151,1734738,1,1,Active Shallow Crust,0.0,89.98991,-90.0,07/27/7592 +0.2247,47.91845,9293,12,25,8,7,37,3.75,27.5,fr,41379,185,1734746,1,1,Active Shallow Crust,0.0,89.98994,0.0,12/25/9293 +0.2247,47.91845,9100,12,23,5,29,28,3.95,5.0,fr,41380,181,1734768,1,1,Active Shallow Crust,0.0,89.99001,0.0,12/23/9100 +0.2247,47.91845,4837,7,28,23,13,21,4.05,27.5,fr,41381,96,1734782,1,1,Active Shallow Crust,0.0,89.99002,0.0,07/28/4837 +0.2247,47.91845,7946,1,31,18,29,25,4.25,15.0,fr,41382,158,1734805,1,1,Active Shallow Crust,0.0,89.99,0.0,01/31/7946 +0.2247,47.91845,6795,9,14,22,8,44,4.25,5.0,fr,41383,135,1734807,1,1,Active Shallow Crust,240.0079,57.99412,0.0,09/14/6795 +-3.29426,48.72304,2103,10,31,16,23,30,3.55,5.0,fr,41384,42,1735680,1,1,Active Shallow Crust,0.0,89.99002,0.0,10/31/2103 +-3.29426,48.72304,4026,9,17,13,0,38,3.55,5.0,fr,41385,80,1735683,1,1,Active Shallow Crust,240.0126,57.99834,0.0,09/17/4026 +-3.29426,48.72304,2210,2,27,0,19,46,3.55,15.0,fr,41386,44,1735684,1,1,Active Shallow Crust,240.0126,57.99834,0.0,02/27/2210 +-3.29426,48.72304,3949,10,1,14,36,29,3.65,5.0,fr,41387,78,1735692,1,4,Active Shallow Crust,0.0,89.9911,0.0,10/01/3949 +-3.29426,48.72304,43,9,17,23,29,36,3.65,5.0,fr,41388,0,1735692,1,4,Active Shallow Crust,0.0,89.9911,0.0,09/17/0043 +-3.29426,48.72304,2044,2,20,17,59,53,3.65,5.0,fr,41389,40,1735692,1,4,Active Shallow Crust,0.0,89.9911,0.0,02/20/2044 +-3.29426,48.72304,386,2,9,16,42,22,3.65,5.0,fr,41390,7,1735692,1,4,Active Shallow Crust,0.0,89.9911,0.0,02/09/0386 +-3.29426,48.72304,8579,8,16,23,46,11,3.65,5.0,fr,41391,171,1735701,1,1,Active Shallow Crust,128.8998,89.96357,0.0,08/16/8579 +-3.29426,48.72304,1872,3,3,15,56,37,3.75,5.0,fr,41392,37,1735704,1,1,Active Shallow Crust,0.0,89.98943,0.0,03/03/1872 +-3.29426,48.72304,7350,3,10,8,45,42,3.75,5.0,fr,41393,146,1735707,1,1,Active Shallow Crust,240.0085,58.01738,0.0,03/10/7350 +-3.29426,48.72304,1058,7,17,17,35,2,3.85,5.0,fr,41394,21,1735725,1,1,Active Shallow Crust,128.8956,89.99294,0.0,07/17/1058 +-3.29426,48.72304,8264,10,16,10,55,44,3.95,5.0,fr,41395,165,1735728,1,2,Active Shallow Crust,0.0,89.98951,0.0,10/16/8264 +-3.29426,48.72304,7476,6,30,18,25,37,3.95,5.0,fr,41396,149,1735728,1,2,Active Shallow Crust,0.0,89.98951,0.0,06/30/7476 +-3.29426,48.72304,1707,7,1,4,13,33,3.95,15.0,fr,41397,34,1735732,1,1,Active Shallow Crust,240.0203,58.00493,0.0,07/01/1707 +-3.29426,48.72304,7197,6,19,1,51,33,4.05,5.0,fr,41398,143,1735743,1,1,Active Shallow Crust,240.0061,58.00622,0.0,06/19/7197 +-3.29426,48.72304,345,9,29,5,37,53,4.25,5.0,fr,41399,6,1735764,1,1,Active Shallow Crust,0.0,89.9896,0.0,09/29/0345 +-3.29426,48.72304,117,2,15,1,5,21,5.25,5.0,fr,41400,2,1735884,1,1,Active Shallow Crust,0.0,89.99013,0.0,02/15/0117 +5.14687,47.75931,6401,8,27,3,15,17,3.55,5.0,fr,41401,128,1736160,1,2,Active Shallow Crust,0.0,89.99322,0.0,08/27/6401 +5.14687,47.75931,5902,11,7,7,23,1,3.55,5.0,fr,41402,118,1736160,1,2,Active Shallow Crust,0.0,89.99322,0.0,11/07/5902 +5.14687,47.75931,9772,6,8,15,38,27,3.55,5.0,fr,41403,195,1736166,1,2,Active Shallow Crust,0.0,89.99314,-90.0,06/08/9772 +5.14687,47.75931,378,4,4,14,2,16,3.55,5.0,fr,41404,7,1736166,1,2,Active Shallow Crust,0.0,89.99314,-90.0,04/04/0378 +5.14687,47.75931,6390,6,12,0,14,22,3.65,5.0,fr,41405,127,1736178,1,1,Active Shallow Crust,0.0,89.98778,-90.0,06/12/6390 +5.14687,47.75931,653,6,2,3,42,52,3.75,5.0,fr,41406,13,1736187,1,1,Active Shallow Crust,240.0091,58.01709,0.0,06/02/0653 +5.14687,47.75931,6551,12,7,2,32,39,3.95,5.0,fr,41407,131,1736211,1,1,Active Shallow Crust,240.0194,58.00537,0.0,12/07/6551 +5.14687,47.75931,8326,10,25,0,24,35,4.15,5.0,fr,41408,166,1736232,1,1,Active Shallow Crust,0.0,89.98981,0.0,10/25/8326 +5.14687,47.75931,8608,3,26,3,39,2,4.75,5.0,fr,41409,172,1736304,1,1,Active Shallow Crust,0.0,89.98978,0.0,03/26/8608 +5.14687,47.75931,9790,8,6,9,55,37,5.05,5.0,fr,41410,195,1736340,1,1,Active Shallow Crust,0.0,89.99036,0.0,08/06/9790 +0.16607,48.1811,5385,5,30,0,5,1,3.55,15.0,fr,41411,107,1736641,1,1,Active Shallow Crust,0.0,89.98991,0.0,05/30/5385 +0.16607,48.1811,2462,11,2,6,26,3,3.55,5.0,fr,41412,49,1736646,1,1,Active Shallow Crust,0.0,89.99001,-90.0,11/02/2462 +0.16607,48.1811,736,10,25,14,33,35,3.65,5.0,fr,41413,14,1736652,1,1,Active Shallow Crust,0.0,89.99007,0.0,10/25/0736 +0.16607,48.1811,6207,11,7,8,28,46,4.35,5.0,fr,41414,124,1736736,1,1,Active Shallow Crust,0.0,89.98996,0.0,11/07/6207 +0.16607,48.1811,7782,4,25,15,17,58,4.95,5.0,fr,41415,155,1736808,1,1,Active Shallow Crust,360.0,89.99002,0.0,04/25/7782 +4.97497,43.56275,2075,2,27,4,55,37,3.55,5.0,fr,41416,41,1737120,1,3,Active Shallow Crust,0.0,89.99269,0.0,02/27/2075 +4.97497,43.56275,1885,10,2,19,5,39,3.55,5.0,fr,41417,37,1737120,1,3,Active Shallow Crust,0.0,89.99269,0.0,10/02/1885 +4.97497,43.56275,3117,1,26,0,32,34,3.55,5.0,fr,41418,62,1737120,1,3,Active Shallow Crust,0.0,89.99269,0.0,01/26/3117 +4.97497,43.56275,9084,7,4,9,48,52,3.65,5.0,fr,41419,181,1737132,1,1,Active Shallow Crust,0.0,89.98698,0.0,07/04/9084 +4.97497,43.56275,8542,10,16,16,3,50,3.65,27.5,fr,41420,170,1737134,1,1,Active Shallow Crust,0.0,89.98698,0.0,10/16/8542 +4.97497,43.56275,8262,11,6,22,28,17,3.75,15.0,fr,41421,165,1737148,1,1,Active Shallow Crust,240.0073,58.01759,0.0,11/06/8262 +4.97497,43.56275,3107,3,10,18,6,15,3.75,5.0,fr,41422,62,1737150,1,1,Active Shallow Crust,0.0,89.98826,-90.0,03/10/3107 +4.97497,43.56275,306,3,23,16,9,15,3.75,5.0,fr,41423,6,1737153,1,1,Active Shallow Crust,128.8962,89.96744,0.0,03/23/0306 +4.97497,43.56275,1459,3,14,20,39,41,3.85,5.0,fr,41424,29,1737156,1,1,Active Shallow Crust,0.0,89.98965,0.0,03/14/1459 +4.97497,43.56275,8417,10,3,14,13,35,3.95,5.0,fr,41425,168,1737168,1,1,Active Shallow Crust,0.0,89.99078,0.0,10/03/8417 +4.97497,43.56275,8953,12,14,2,57,17,3.95,15.0,fr,41426,179,1737169,1,1,Active Shallow Crust,0.0,89.99078,0.0,12/14/8953 +4.97497,43.56275,9579,3,29,9,19,2,3.95,27.5,fr,41427,191,1737170,1,1,Active Shallow Crust,0.0,89.99078,0.0,03/29/9579 +4.97497,43.56275,7113,2,26,13,53,58,3.95,5.0,fr,41428,142,1737174,1,1,Active Shallow Crust,0.0,89.99067,-90.0,02/26/7113 +4.97497,43.56275,7167,6,11,16,53,57,4.15,5.0,fr,41429,143,1737192,1,1,Active Shallow Crust,0.0,89.98901,0.0,06/11/7167 +4.97497,43.56275,9714,10,11,16,32,6,4.25,5.0,fr,41430,194,1737204,1,1,Active Shallow Crust,0.0,89.99021,0.0,10/11/9714 +4.97497,43.56275,3177,3,21,5,9,23,4.25,5.0,fr,41431,63,1737207,1,1,Active Shallow Crust,240.0074,57.99389,0.0,03/21/3177 +4.97497,43.56275,6592,1,11,12,51,28,4.55,15.0,fr,41432,131,1737241,1,1,Active Shallow Crust,0.0,89.99075,0.0,01/11/6592 +4.97497,43.56275,6994,10,4,6,10,42,4.85,5.0,fr,41433,139,1737276,1,1,Active Shallow Crust,0.0,89.99018,0.0,10/04/6994 +4.97497,43.56275,8529,9,5,8,34,40,5.05,15.0,fr,41434,170,1737301,1,1,Active Shallow Crust,0.0,89.9896,0.0,09/05/8529 +-0.62271,43.65747,2449,6,6,15,37,30,3.55,5.0,fr,41435,48,1737600,1,1,Active Shallow Crust,0.0,89.98997,0.0,06/06/2449 +-0.62271,43.65747,963,6,22,4,59,7,3.65,5.0,fr,41436,19,1737612,1,1,Active Shallow Crust,0.0,89.99025,0.0,06/22/0963 +-0.62271,43.65747,3360,10,14,16,34,7,3.65,27.5,fr,41437,67,1737614,1,1,Active Shallow Crust,0.0,89.99025,0.0,10/14/3360 +-0.62271,43.65747,9479,9,7,0,54,1,3.75,5.0,fr,41438,189,1737624,1,1,Active Shallow Crust,0.0,89.98986,0.0,09/07/9479 +-0.62271,43.65747,3349,2,6,8,26,18,3.85,5.0,fr,41439,66,1737645,1,1,Active Shallow Crust,128.8958,89.99387,0.0,02/06/3349 +-0.62271,43.65747,6946,10,14,17,13,8,3.95,27.5,fr,41440,138,1737650,1,1,Active Shallow Crust,0.0,89.99022,0.0,10/14/6946 +2.85239,45.88027,4715,9,22,17,2,27,3.55,5.0,fr,41441,94,1738080,1,1,Active Shallow Crust,0.0,89.98947,0.0,09/22/4715 +2.85239,45.88027,538,12,16,12,56,3,3.55,5.0,fr,41442,10,1738083,1,1,Active Shallow Crust,240.0128,57.99753,0.0,12/16/0538 +2.85239,45.88027,6093,3,4,8,51,56,3.55,15.0,fr,41443,121,1738084,1,1,Active Shallow Crust,240.0128,57.99753,0.0,03/04/6093 +2.85239,45.88027,2710,3,18,20,20,2,3.65,5.0,fr,41444,54,1738092,1,2,Active Shallow Crust,0.0,89.99062,0.0,03/18/2710 +2.85239,45.88027,33,3,26,6,55,10,3.65,5.0,fr,41445,0,1738092,1,2,Active Shallow Crust,0.0,89.99062,0.0,03/26/0033 +2.85239,45.88027,4733,1,7,4,40,12,3.65,5.0,fr,41446,94,1738095,1,1,Active Shallow Crust,240.0009,58.01328,0.0,01/07/4733 +2.85239,45.88027,2174,10,23,23,17,37,3.65,5.0,fr,41447,43,1738101,1,1,Active Shallow Crust,128.9004,89.96351,0.0,10/23/2174 +2.85239,45.88027,8499,7,27,7,58,54,3.75,5.0,fr,41448,169,1738104,1,2,Active Shallow Crust,0.0,89.98885,0.0,07/27/8499 +2.85239,45.88027,453,10,19,22,45,59,3.75,5.0,fr,41449,9,1738104,1,2,Active Shallow Crust,0.0,89.98885,0.0,10/19/0453 +2.85239,45.88027,5431,7,14,0,30,59,3.75,27.5,fr,41450,108,1738106,1,1,Active Shallow Crust,0.0,89.98885,0.0,07/14/5431 +2.85239,45.88027,8158,2,15,0,50,18,3.85,5.0,fr,41451,163,1738116,1,1,Active Shallow Crust,0.0,89.99006,0.0,02/15/8158 +2.85239,45.88027,6914,6,21,23,24,10,3.85,15.0,fr,41452,138,1738117,1,1,Active Shallow Crust,0.0,89.99006,0.0,06/21/6914 +2.85239,45.88027,9158,4,6,22,54,41,3.95,5.0,fr,41453,183,1738128,1,1,Active Shallow Crust,0.0,89.98893,0.0,04/06/9158 +2.85239,45.88027,2354,11,10,20,26,4,3.95,5.0,fr,41454,47,1738131,1,1,Active Shallow Crust,240.0196,58.00505,0.0,11/10/2354 +2.85239,45.88027,616,7,25,12,1,34,4.15,15.0,fr,41455,12,1738153,1,1,Active Shallow Crust,0.0,89.98944,0.0,07/25/0616 +2.85239,45.88027,347,7,3,17,41,6,4.35,15.0,fr,41456,6,1738183,1,1,Active Shallow Crust,0.0,89.9901,-90.0,07/03/0347 +2.85239,45.88027,3579,4,13,1,26,8,4.35,5.0,fr,41457,71,1738185,1,1,Active Shallow Crust,128.8978,89.98276,0.0,04/13/3579 +2.85239,45.88027,1453,3,19,8,52,37,4.45,5.0,fr,41458,29,1738188,1,2,Active Shallow Crust,0.0,89.99004,0.0,03/19/1453 +2.85239,45.88027,6400,7,21,22,19,23,4.45,5.0,fr,41459,127,1738188,1,2,Active Shallow Crust,0.0,89.99004,0.0,07/21/6400 +2.85239,45.88027,7960,9,18,5,10,44,4.65,5.0,fr,41460,159,1738212,1,1,Active Shallow Crust,0.0,89.9901,0.0,09/18/7960 +2.85239,45.88027,4996,4,3,20,48,57,5.55,5.0,fr,41461,99,1738320,1,1,Active Shallow Crust,359.9998,89.99017,0.0,04/03/4996 +3.65079,50.80317,2758,6,22,18,43,1,3.55,27.5,fr,41462,55,1738562,1,1,Active Shallow Crust,0.0,89.99044,0.0,06/22/2758 +3.65079,50.80317,2952,7,3,23,11,54,3.55,5.0,fr,41463,59,1738563,1,1,Active Shallow Crust,240.0125,57.99854,0.0,07/03/2952 +3.65079,50.80317,2968,10,17,21,57,36,3.65,27.5,fr,41464,59,1738577,1,1,Active Shallow Crust,240.0013,58.0129,0.0,10/17/2968 +3.65079,50.80317,273,3,23,14,23,51,3.65,5.0,fr,41465,5,1738581,1,1,Active Shallow Crust,128.9007,89.96336,0.0,03/23/0273 +3.65079,50.80317,5018,5,7,8,13,3,3.75,5.0,fr,41466,100,1738584,1,1,Active Shallow Crust,0.0,89.98988,0.0,05/07/5018 +3.65079,50.80317,772,12,2,13,10,35,3.95,5.0,fr,41467,15,1738608,1,1,Active Shallow Crust,0.0,89.98994,0.0,12/02/0772 +3.65079,50.80317,958,1,5,8,48,53,4.05,5.0,fr,41468,19,1738620,1,1,Active Shallow Crust,0.0,89.98925,0.0,01/05/0958 +3.65079,50.80317,3077,6,9,20,40,53,4.15,5.0,fr,41469,61,1738632,1,1,Active Shallow Crust,0.0,89.99042,0.0,06/09/3077 +3.650799,50.80317,9989,5,29,22,19,25,6.45,8.491219,fr,41470,199,1738908,1,1,Active Shallow Crust,0.0,89.98997,0.0,05/29/9989 +6.9133,44.20644,2074,7,3,21,35,55,3.55,15.0,fr,41471,41,1739050,1,1,Active Shallow Crust,128.8963,89.99277,0.0,07/03/2074 +6.9133,44.20644,9848,9,8,1,48,40,3.65,5.0,fr,41472,196,1739052,1,3,Active Shallow Crust,0.0,89.98711,0.0,09/08/9848 +6.9133,44.20644,5423,11,4,7,31,58,3.65,5.0,fr,41473,108,1739052,1,3,Active Shallow Crust,0.0,89.98711,0.0,11/04/5423 +6.9133,44.20644,310,4,3,14,50,26,3.65,5.0,fr,41474,6,1739052,1,3,Active Shallow Crust,0.0,89.98711,0.0,04/03/0310 +6.9133,44.20644,1596,9,18,23,50,35,3.65,15.0,fr,41475,31,1739053,1,1,Active Shallow Crust,0.0,89.98711,0.0,09/18/1596 +6.9133,44.20644,5826,6,30,11,26,5,3.65,5.0,fr,41476,116,1739058,1,1,Active Shallow Crust,0.0,89.98697,-90.0,06/30/5826 +6.9133,44.20644,4666,5,15,8,39,54,3.75,5.0,fr,41477,93,1739067,1,1,Active Shallow Crust,240.0077,58.0186,0.0,05/15/4666 +6.9133,44.20644,1125,2,25,10,43,56,3.75,15.0,fr,41478,22,1739068,1,1,Active Shallow Crust,240.0077,58.0186,0.0,02/25/1125 +6.9133,44.20644,8716,1,11,16,44,35,3.75,5.0,fr,41479,174,1739070,1,1,Active Shallow Crust,0.0,89.98838,-90.0,01/11/8716 +6.9133,44.20644,7489,8,5,13,22,5,3.75,27.5,fr,41480,149,1739072,1,1,Active Shallow Crust,0.0,89.98838,-90.0,08/05/7489 +6.9133,44.20644,7335,12,25,5,21,25,3.85,5.0,fr,41481,146,1739076,1,2,Active Shallow Crust,0.0,89.98976,0.0,12/25/7335 +6.9133,44.20644,3138,12,16,19,21,45,3.85,5.0,fr,41482,62,1739076,1,2,Active Shallow Crust,0.0,89.98976,0.0,12/16/3138 +6.9133,44.20644,6048,6,24,21,44,41,3.95,5.0,fr,41483,120,1739088,1,1,Active Shallow Crust,0.0,89.99088,0.0,06/24/6048 +6.9133,44.20644,2396,7,19,2,10,10,4.15,15.0,fr,41484,47,1739113,1,1,Active Shallow Crust,0.0,89.98913,0.0,07/19/2396 +6.9133,44.20644,2629,6,4,12,46,23,4.15,5.0,fr,41485,52,1739115,1,1,Active Shallow Crust,240.0086,57.99681,0.0,06/04/2629 +6.9133,44.20644,9729,10,28,15,11,28,4.65,5.0,fr,41486,194,1739172,1,1,Active Shallow Crust,0.0,89.98981,0.0,10/28/9729 +6.9133,44.20644,8675,7,22,11,39,55,4.85,5.0,fr,41487,173,1739196,1,1,Active Shallow Crust,0.0,89.99029,0.0,07/22/8675 +6.9133,44.20644,4554,9,11,21,35,46,4.95,5.0,fr,41488,91,1739208,1,1,Active Shallow Crust,0.0,89.9899,0.0,09/11/4554 +6.9133,44.20644,8706,5,26,12,35,27,4.95,15.0,fr,41489,174,1739218,1,2,Active Shallow Crust,128.8908,89.98966,0.0,05/26/8706 +6.9133,44.20644,4280,1,12,21,3,59,4.95,15.0,fr,41490,85,1739218,1,2,Active Shallow Crust,128.8908,89.98966,0.0,01/12/4280 +6.9133,44.20644,7301,1,5,18,12,13,6.65,15.0,fr,41491,146,1739413,1,1,Active Shallow Crust,0.0,89.99,0.0,01/05/7301 +2.78348,48.44685,2571,9,10,20,20,55,3.65,15.0,fr,41492,51,1739539,1,1,Active Shallow Crust,0.0,89.99095,-90.0,09/10/2571 +2.78348,48.44685,5992,5,10,8,37,25,4.25,15.0,fr,41493,119,1739608,1,1,Active Shallow Crust,240.0076,57.9944,0.0,05/10/5992 +0.34075,48.85523,2016,11,19,23,18,9,3.55,5.0,fr,41494,40,1740000,1,1,Active Shallow Crust,0.0,89.99005,0.0,11/19/2016 +0.34075,48.85523,1293,2,5,9,43,4,3.55,5.0,fr,41495,25,1740003,1,1,Active Shallow Crust,240.0124,57.99822,0.0,02/05/1293 +0.34075,48.85523,7499,3,5,18,45,41,3.65,5.0,fr,41496,149,1740012,1,1,Active Shallow Crust,0.0,89.99002,0.0,03/05/7499 +0.34075,48.85523,3565,1,25,16,21,41,3.65,15.0,fr,41497,71,1740013,1,1,Active Shallow Crust,0.0,89.99002,0.0,01/25/3565 +0.34075,48.85523,7594,6,4,21,36,6,3.75,5.0,fr,41498,151,1740024,1,1,Active Shallow Crust,0.0,89.99012,0.0,06/04/7594 +0.34075,48.85523,1787,12,24,6,41,27,3.85,5.0,fr,41499,35,1740036,1,1,Active Shallow Crust,0.0,89.99002,0.0,12/24/1787 +0.34075,48.85523,1380,6,4,23,37,31,4.25,5.0,fr,41500,27,1740087,1,1,Active Shallow Crust,240.0081,57.99417,0.0,06/04/1380 +0.34075,48.85523,3887,3,26,16,15,38,4.25,15.0,fr,41501,77,1740088,1,1,Active Shallow Crust,240.0081,57.99417,0.0,03/26/3887 +0.34075,48.85523,5358,3,2,13,21,27,4.55,5.0,fr,41502,107,1740120,1,1,Active Shallow Crust,0.0,89.99004,0.0,03/02/5358 +0.34075,48.85523,6416,7,3,3,32,24,4.55,5.0,fr,41503,128,1740126,1,1,Active Shallow Crust,0.0,89.99005,-90.0,07/03/6416 +0.34075,48.85523,2091,1,29,15,13,27,4.75,15.0,fr,41504,41,1740145,1,1,Active Shallow Crust,0.0,89.99,0.0,01/29/2091 +0.34075,48.85523,3209,5,4,19,9,20,4.95,5.0,fr,41505,64,1740168,1,1,Active Shallow Crust,0.0,89.98998,0.0,05/04/3209 +-0.01302,48.9669,1706,3,8,0,17,29,3.55,5.0,fr,41506,34,1740480,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/08/1706 +-0.01302,48.9669,3085,5,9,5,15,49,3.55,5.0,fr,41507,61,1740486,1,1,Active Shallow Crust,0.0,89.99,-90.0,05/09/3085 +-0.01302,48.9669,592,11,28,16,25,34,3.65,5.0,fr,41508,11,1740492,1,2,Active Shallow Crust,0.0,89.99,0.0,11/28/0592 +-0.01302,48.9669,9164,4,28,17,33,44,3.65,5.0,fr,41509,183,1740492,1,2,Active Shallow Crust,0.0,89.99,0.0,04/28/9164 +-0.01302,48.9669,2437,6,22,17,13,37,3.65,27.5,fr,41510,48,1740497,1,1,Active Shallow Crust,240.0014,58.01286,0.0,06/22/2437 +-0.01302,48.9669,5640,12,30,20,41,42,3.65,15.0,fr,41511,112,1740499,1,1,Active Shallow Crust,0.0,89.99,-90.0,12/30/5640 +-0.01302,48.9669,9773,9,8,11,36,21,3.75,5.0,fr,41512,195,1740504,1,1,Active Shallow Crust,0.0,89.99,0.0,09/08/9773 +-0.01302,48.9669,4330,2,12,4,34,41,3.75,15.0,fr,41513,86,1740505,1,1,Active Shallow Crust,0.0,89.99,0.0,02/12/4330 +-0.01302,48.9669,1622,10,10,16,32,15,3.85,5.0,fr,41514,32,1740516,1,2,Active Shallow Crust,360.0,89.99001,0.0,10/10/1622 +-0.01302,48.9669,7983,8,5,19,4,31,3.85,5.0,fr,41515,159,1740516,1,2,Active Shallow Crust,360.0,89.99001,0.0,08/05/7983 +-0.01302,48.9669,334,2,5,4,37,25,3.95,5.0,fr,41516,6,1740528,1,1,Active Shallow Crust,0.0,89.99,0.0,02/05/0334 +-0.01302,48.9669,5320,4,24,9,10,47,3.95,5.0,fr,41517,106,1740534,1,1,Active Shallow Crust,0.0,89.99,-90.0,04/24/5320 +-0.01302,48.9669,5386,9,15,3,49,35,4.15,15.0,fr,41518,107,1740553,1,1,Active Shallow Crust,0.0,89.99,0.0,09/15/5386 +-0.01302,48.9669,6937,4,20,10,39,37,4.35,5.0,fr,41519,138,1740576,1,1,Active Shallow Crust,0.0,89.99,0.0,04/20/6937 +-0.01302,48.9669,8481,7,29,18,57,47,4.35,15.0,fr,41520,169,1740580,1,1,Active Shallow Crust,240.009,57.99605,0.0,07/29/8481 +-1.57322,46.84273,7700,11,3,8,52,28,3.55,5.0,fr,41521,153,1740960,1,1,Active Shallow Crust,0.0,89.98965,0.0,11/03/7700 +-1.57322,46.84273,2949,5,26,0,18,24,3.55,15.0,fr,41522,58,1740961,1,1,Active Shallow Crust,0.0,89.98965,0.0,05/26/2949 +-1.57322,46.84273,8603,2,2,21,49,7,3.55,27.5,fr,41523,172,1740962,1,1,Active Shallow Crust,0.0,89.98965,0.0,02/02/8603 +-1.57322,46.84273,4801,8,15,21,5,32,3.55,5.0,fr,41524,96,1740963,1,1,Active Shallow Crust,240.0125,57.99809,0.0,08/15/4801 +-1.57322,46.84273,9232,11,13,21,30,38,3.55,15.0,fr,41525,184,1740964,1,1,Active Shallow Crust,240.0125,57.99809,0.0,11/13/9232 +-1.57322,46.84273,7023,10,28,12,16,56,3.65,5.0,fr,41526,140,1740972,1,1,Active Shallow Crust,0.0,89.98924,0.0,10/28/7023 +-1.57322,46.84273,2731,10,24,14,39,17,3.65,15.0,fr,41527,54,1740973,1,1,Active Shallow Crust,0.0,89.98924,0.0,10/24/2731 +-1.57322,46.84273,9813,2,12,4,36,41,3.65,5.0,fr,41528,196,1740978,1,1,Active Shallow Crust,0.0,89.99067,-90.0,02/12/9813 +-1.57322,46.84273,3457,3,14,15,10,33,3.75,15.0,fr,41529,69,1740985,1,1,Active Shallow Crust,0.0,89.99041,0.0,03/14/3457 +-1.57322,46.84273,3685,10,12,18,48,6,3.75,27.5,fr,41530,73,1740986,1,1,Active Shallow Crust,0.0,89.99041,0.0,10/12/3685 +-1.57322,46.84273,9397,7,15,8,40,0,3.75,5.0,fr,41531,187,1740990,1,1,Active Shallow Crust,0.0,89.9903,-90.0,07/15/9397 +-1.57322,46.84273,4141,5,21,21,15,57,3.85,5.0,fr,41532,82,1740996,1,1,Active Shallow Crust,0.0,89.99023,0.0,05/21/4141 +-1.57322,46.84273,3065,10,28,18,6,57,3.85,5.0,fr,41533,61,1740999,1,1,Active Shallow Crust,240.0107,57.99784,0.0,10/28/3065 +-1.57322,46.84273,6530,11,22,4,32,36,3.95,5.0,fr,41534,130,1741008,1,3,Active Shallow Crust,0.0,89.99021,0.0,11/22/6530 +-1.57322,46.84273,3546,3,30,9,44,30,3.95,5.0,fr,41535,70,1741008,1,3,Active Shallow Crust,0.0,89.99021,0.0,03/30/3546 +-1.57322,46.84273,1749,12,29,0,38,3,3.95,5.0,fr,41536,34,1741008,1,3,Active Shallow Crust,0.0,89.99021,0.0,12/29/1749 +-1.57322,46.84273,6458,2,25,7,34,32,4.35,5.0,fr,41537,129,1741056,1,1,Active Shallow Crust,0.0,89.9897,0.0,02/25/6458 +-1.57322,46.84273,2740,11,30,23,17,31,4.95,27.5,fr,41538,54,1741130,1,1,Active Shallow Crust,0.0,89.99002,0.0,11/30/2740 +-1.57322,46.84273,6540,6,13,22,45,1,5.75,5.0,fr,41539,130,1741224,1,1,Active Shallow Crust,0.0,89.99,0.0,06/13/6540 +-1.77729,42.43119,5027,10,3,11,53,55,3.55,5.0,fr,41540,100,1741440,1,1,Active Shallow Crust,0.0,89.9907,0.0,10/03/5027 +-1.77729,42.43119,1926,1,15,5,41,42,3.55,5.0,fr,41541,38,1741446,1,1,Active Shallow Crust,0.0,89.99059,-90.0,01/15/1926 +-1.77729,42.43119,152,8,20,1,2,34,3.55,15.0,fr,41542,3,1741447,1,1,Active Shallow Crust,0.0,89.99059,-90.0,08/20/0152 +-1.77729,42.43119,2364,5,28,6,31,55,3.65,5.0,fr,41543,47,1741452,1,1,Active Shallow Crust,0.0,89.99005,0.0,05/28/2364 +-1.77729,42.43119,2773,5,18,2,28,53,3.75,5.0,fr,41544,55,1741464,1,1,Active Shallow Crust,0.0,89.98965,0.0,05/18/2773 +-1.77729,42.43119,6440,2,6,4,30,4,3.75,5.0,fr,41545,128,1741467,1,1,Active Shallow Crust,240.0079,58.01764,0.0,02/06/6440 +-1.77729,42.43119,5674,7,15,19,56,12,3.75,15.0,fr,41546,113,1741471,1,1,Active Shallow Crust,0.0,89.98953,-90.0,07/15/5674 +-1.77729,42.43119,917,5,29,16,34,44,3.95,5.0,fr,41547,18,1741488,1,2,Active Shallow Crust,0.0,89.98943,0.0,05/29/0917 +-1.77729,42.43119,5815,8,25,22,12,20,3.95,5.0,fr,41548,116,1741488,1,2,Active Shallow Crust,0.0,89.98943,0.0,08/25/5815 +-1.77729,42.43119,4132,5,12,0,40,10,4.05,15.0,fr,41549,82,1741507,1,1,Active Shallow Crust,0.0,89.99047,-90.0,05/12/4132 +-1.77729,42.43119,1756,9,2,19,3,18,4.15,5.0,fr,41550,35,1741512,1,1,Active Shallow Crust,0.0,89.98974,0.0,09/02/1756 +-1.77729,42.43119,2385,5,5,7,41,11,4.15,15.0,fr,41551,47,1741513,1,1,Active Shallow Crust,0.0,89.98974,0.0,05/05/2385 +-1.77729,42.43119,8411,3,26,13,9,5,4.55,5.0,fr,41552,168,1741560,1,1,Active Shallow Crust,0.0,89.99,0.0,03/26/8411 +-1.77729,42.43119,1786,2,17,12,47,53,4.65,5.0,fr,41553,35,1741572,1,1,Active Shallow Crust,0.0,89.99004,0.0,02/17/1786 +-1.77729,42.43119,9963,5,13,11,19,23,5.65,27.5,fr,41554,199,1741694,1,1,Active Shallow Crust,0.0,89.99004,0.0,05/13/9963 +5.88501,50.7387,7547,10,28,23,59,12,3.55,5.0,fr,41555,150,1741920,1,7,Active Shallow Crust,0.0,89.98724,0.0,10/28/7547 +5.88501,50.7387,5645,10,13,4,29,19,3.55,5.0,fr,41556,112,1741920,1,7,Active Shallow Crust,0.0,89.98724,0.0,10/13/5645 +5.88501,50.7387,879,5,4,21,25,34,3.55,5.0,fr,41557,17,1741920,1,7,Active Shallow Crust,0.0,89.98724,0.0,05/04/0879 +5.88501,50.7387,4612,6,16,1,28,25,3.55,5.0,fr,41558,92,1741920,1,7,Active Shallow Crust,0.0,89.98724,0.0,06/16/4612 +5.88501,50.7387,6917,2,8,8,57,44,3.55,5.0,fr,41559,138,1741920,1,7,Active Shallow Crust,0.0,89.98724,0.0,02/08/6917 +5.88501,50.7387,3693,5,3,1,44,5,3.55,5.0,fr,41560,73,1741920,1,7,Active Shallow Crust,0.0,89.98724,0.0,05/03/3693 +5.88501,50.7387,7871,1,20,0,33,12,3.55,5.0,fr,41561,157,1741920,1,7,Active Shallow Crust,0.0,89.98724,0.0,01/20/7871 +5.88501,50.7387,799,3,2,4,24,8,3.55,15.0,fr,41562,15,1741921,1,3,Active Shallow Crust,0.0,89.98724,0.0,03/02/0799 +5.88501,50.7387,6024,3,25,23,52,13,3.55,15.0,fr,41563,120,1741921,1,3,Active Shallow Crust,0.0,89.98724,0.0,03/25/6024 +5.88501,50.7387,7837,3,21,18,32,2,3.55,15.0,fr,41564,156,1741921,1,3,Active Shallow Crust,0.0,89.98724,0.0,03/21/7837 +5.88501,50.7387,2546,3,3,5,8,15,3.55,27.5,fr,41565,50,1741922,1,1,Active Shallow Crust,0.0,89.98724,0.0,03/03/2546 +5.88501,50.7387,8445,8,11,8,15,11,3.55,5.0,fr,41566,168,1741923,1,2,Active Shallow Crust,240.0124,57.99778,0.0,08/11/8445 +5.88501,50.7387,7728,1,11,11,8,55,3.55,5.0,fr,41567,154,1741923,1,2,Active Shallow Crust,240.0124,57.99778,0.0,01/11/7728 +5.88501,50.7387,5976,6,10,7,14,50,3.55,5.0,fr,41568,119,1741926,1,1,Active Shallow Crust,0.0,89.98709,-90.0,06/10/5976 +5.88501,50.7387,9133,6,28,5,8,36,3.55,15.0,fr,41569,182,1741927,1,1,Active Shallow Crust,0.0,89.98709,-90.0,06/28/9133 +5.88501,50.7387,6011,1,23,17,49,35,3.55,27.5,fr,41570,120,1741928,1,1,Active Shallow Crust,0.0,89.98709,-90.0,01/23/6011 +5.88501,50.7387,3850,1,11,3,21,53,3.65,5.0,fr,41571,76,1741932,1,3,Active Shallow Crust,0.0,89.98862,0.0,01/11/3850 +5.88501,50.7387,1301,3,17,6,51,6,3.65,5.0,fr,41572,26,1741932,1,3,Active Shallow Crust,0.0,89.98862,0.0,03/17/1301 +5.88501,50.7387,5720,8,25,1,14,26,3.65,5.0,fr,41573,114,1741932,1,3,Active Shallow Crust,0.0,89.98862,0.0,08/25/5720 +5.88501,50.7387,7556,6,7,6,26,18,3.65,15.0,fr,41574,151,1741933,1,1,Active Shallow Crust,0.0,89.98862,0.0,06/07/7556 +5.88501,50.7387,3,4,29,13,0,7,3.65,27.5,fr,41575,0,1741937,1,1,Active Shallow Crust,240.0021,58.01307,0.0,04/29/0003 +5.88501,50.7387,1141,5,1,7,39,47,3.65,5.0,fr,41576,22,1741938,1,1,Active Shallow Crust,0.0,89.98849,-90.0,05/01/1141 +5.88501,50.7387,5453,10,20,14,6,3,3.75,5.0,fr,41577,109,1741944,1,2,Active Shallow Crust,0.0,89.98986,0.0,10/20/5453 +5.88501,50.7387,5527,3,15,6,9,22,3.75,5.0,fr,41578,110,1741944,1,2,Active Shallow Crust,0.0,89.98986,0.0,03/15/5527 +5.88501,50.7387,2381,11,7,20,39,55,3.75,15.0,fr,41579,47,1741945,1,3,Active Shallow Crust,0.0,89.98986,0.0,11/07/2381 +5.88501,50.7387,9644,11,4,20,23,33,3.75,15.0,fr,41580,192,1741945,1,3,Active Shallow Crust,0.0,89.98986,0.0,11/04/9644 +5.88501,50.7387,8905,6,23,13,34,12,3.75,15.0,fr,41581,178,1741945,1,3,Active Shallow Crust,0.0,89.98986,0.0,06/23/8905 +5.88501,50.7387,4057,6,3,0,38,56,3.75,27.5,fr,41582,81,1741946,1,2,Active Shallow Crust,0.0,89.98986,0.0,06/03/4057 +5.88501,50.7387,4814,6,20,6,25,24,3.75,27.5,fr,41583,96,1741946,1,2,Active Shallow Crust,0.0,89.98986,0.0,06/20/4814 +5.88501,50.7387,2036,9,28,13,8,47,3.75,15.0,fr,41584,40,1741951,1,1,Active Shallow Crust,0.0,89.98975,-90.0,09/28/2036 +5.88501,50.7387,7184,10,3,1,49,25,3.75,15.0,fr,41585,143,1741954,1,1,Active Shallow Crust,128.8955,89.96756,0.0,10/03/7184 +5.88501,50.7387,9446,11,29,15,34,1,3.85,5.0,fr,41586,188,1741956,1,3,Active Shallow Crust,0.0,89.99097,0.0,11/29/9446 +5.88501,50.7387,2314,8,20,4,35,39,3.85,5.0,fr,41587,46,1741956,1,3,Active Shallow Crust,0.0,89.99097,0.0,08/20/2314 +5.88501,50.7387,3256,6,28,5,5,51,3.85,5.0,fr,41588,65,1741956,1,3,Active Shallow Crust,0.0,89.99097,0.0,06/28/3256 +5.88501,50.7387,1663,2,10,19,40,13,3.85,15.0,fr,41589,33,1741957,1,2,Active Shallow Crust,0.0,89.99097,0.0,02/10/1663 +5.88501,50.7387,5924,4,29,19,8,11,3.85,15.0,fr,41590,118,1741957,1,2,Active Shallow Crust,0.0,89.99097,0.0,04/29/5924 +5.88501,50.7387,4458,6,3,4,56,25,3.85,27.5,fr,41591,89,1741958,1,2,Active Shallow Crust,0.0,89.99097,0.0,06/03/4458 +5.88501,50.7387,5841,9,26,19,21,27,3.85,27.5,fr,41592,116,1741958,1,2,Active Shallow Crust,0.0,89.99097,0.0,09/26/5841 +5.88501,50.7387,5906,11,30,18,46,37,3.85,15.0,fr,41593,118,1741960,1,2,Active Shallow Crust,240.011,57.99812,0.0,11/30/5906 +5.88501,50.7387,8753,2,26,8,21,9,3.85,15.0,fr,41594,175,1741960,1,2,Active Shallow Crust,240.011,57.99812,0.0,02/26/8753 +5.88501,50.7387,6349,6,5,16,9,11,3.85,27.5,fr,41595,126,1741961,1,1,Active Shallow Crust,240.011,57.99812,0.0,06/05/6349 +5.88501,50.7387,1469,10,20,5,7,8,3.85,5.0,fr,41596,29,1741962,1,1,Active Shallow Crust,0.0,89.99086,-90.0,10/20/1469 +5.88501,50.7387,7189,11,19,0,52,59,3.95,5.0,fr,41597,143,1741968,1,2,Active Shallow Crust,0.0,89.99194,0.0,11/19/7189 +5.88501,50.7387,8183,10,21,12,32,8,3.95,5.0,fr,41598,163,1741968,1,2,Active Shallow Crust,0.0,89.99194,0.0,10/21/8183 +5.88501,50.7387,8160,10,10,20,32,26,3.95,15.0,fr,41599,163,1741969,1,1,Active Shallow Crust,0.0,89.99194,0.0,10/10/8160 +5.88501,50.7387,5698,7,9,13,25,47,3.95,27.5,fr,41600,113,1741970,1,1,Active Shallow Crust,0.0,89.99194,0.0,07/09/5698 +5.88501,50.7387,9925,8,11,18,57,21,3.95,27.5,fr,41601,198,1741976,1,1,Active Shallow Crust,0.0,89.99185,-90.0,08/11/9925 +5.88501,50.7387,9413,9,1,20,24,23,4.05,5.0,fr,41602,188,1741980,1,2,Active Shallow Crust,0.0,89.98923,0.0,09/01/9413 +5.88501,50.7387,4761,5,30,13,30,21,4.05,5.0,fr,41603,95,1741980,1,2,Active Shallow Crust,0.0,89.98923,0.0,05/30/4761 +5.88501,50.7387,5501,9,30,13,52,21,4.05,27.5,fr,41604,110,1741982,1,1,Active Shallow Crust,0.0,89.98923,0.0,09/30/5501 +5.88501,50.7387,9955,9,20,7,17,3,4.05,5.0,fr,41605,199,1741983,1,1,Active Shallow Crust,240.0069,58.00602,0.0,09/20/9955 +5.88501,50.7387,8858,11,13,7,57,40,4.05,5.0,fr,41606,177,1741986,1,1,Active Shallow Crust,0.0,89.98911,-90.0,11/13/8858 +5.88501,50.7387,6742,7,23,19,31,30,4.05,15.0,fr,41607,134,1741987,1,2,Active Shallow Crust,0.0,89.98911,-90.0,07/23/6742 +5.88501,50.7387,9671,2,4,17,13,11,4.05,15.0,fr,41608,193,1741987,1,2,Active Shallow Crust,0.0,89.98911,-90.0,02/04/9671 +5.88501,50.7387,9211,8,24,12,45,34,4.05,15.0,fr,41609,184,1741990,1,1,Active Shallow Crust,128.8894,89.99462,0.0,08/24/9211 +5.88501,50.7387,824,12,31,23,8,0,4.15,5.0,fr,41610,16,1741992,1,1,Active Shallow Crust,0.0,89.9904,0.0,12/31/0824 +5.88501,50.7387,7051,5,23,23,36,23,4.15,15.0,fr,41611,141,1741993,1,1,Active Shallow Crust,0.0,89.9904,0.0,05/23/7051 +5.88501,50.7387,6167,11,21,8,6,47,4.15,15.0,fr,41612,123,1741996,1,1,Active Shallow Crust,240.0093,57.99765,0.0,11/21/6167 +5.88501,50.7387,1017,8,10,22,50,42,4.25,5.0,fr,41613,20,1742004,1,3,Active Shallow Crust,0.0,89.98859,0.0,08/10/1017 +5.88501,50.7387,3398,2,4,1,13,33,4.25,5.0,fr,41614,67,1742004,1,3,Active Shallow Crust,0.0,89.98859,0.0,02/04/3398 +5.88501,50.7387,3655,7,8,12,18,28,4.25,5.0,fr,41615,73,1742004,1,3,Active Shallow Crust,0.0,89.98859,0.0,07/08/3655 +5.88501,50.7387,904,5,17,7,53,37,4.25,15.0,fr,41616,18,1742005,1,1,Active Shallow Crust,0.0,89.98859,0.0,05/17/0904 +5.88501,50.7387,6411,4,2,6,16,6,4.25,5.0,fr,41617,128,1742007,1,1,Active Shallow Crust,240.0086,57.99383,0.0,04/02/6411 +5.88501,50.7387,9463,10,21,13,44,19,4.25,5.0,fr,41618,189,1742010,1,1,Active Shallow Crust,0.0,89.99135,-90.0,10/21/9463 +5.88501,50.7387,6439,6,26,5,21,14,4.35,5.0,fr,41619,128,1742016,1,1,Active Shallow Crust,0.0,89.98984,0.0,06/26/6439 +5.88501,50.7387,2782,5,7,21,52,3,4.65,5.0,fr,41620,55,1742052,1,4,Active Shallow Crust,0.0,89.9892,0.0,05/07/2782 +5.88501,50.7387,4803,6,25,8,33,3,4.65,5.0,fr,41621,96,1742052,1,4,Active Shallow Crust,0.0,89.9892,0.0,06/25/4803 +5.88501,50.7387,619,9,3,20,7,39,4.65,5.0,fr,41622,12,1742052,1,4,Active Shallow Crust,0.0,89.9892,0.0,09/03/0619 +5.88501,50.7387,5317,1,21,23,39,46,4.65,5.0,fr,41623,106,1742052,1,4,Active Shallow Crust,0.0,89.9892,0.0,01/21/5317 +5.88501,50.7387,7172,11,11,10,40,28,4.75,5.0,fr,41624,143,1742064,1,2,Active Shallow Crust,0.0,89.99038,0.0,11/11/7172 +5.88501,50.7387,7080,1,18,21,47,51,4.75,5.0,fr,41625,141,1742064,1,2,Active Shallow Crust,0.0,89.99038,0.0,01/18/7080 +5.88501,50.7387,2870,6,6,12,34,18,4.95,5.0,fr,41626,57,1742088,1,1,Active Shallow Crust,0.0,89.98981,0.0,06/06/2870 +5.88501,50.7387,6552,2,22,12,9,27,4.95,5.0,fr,41627,131,1742097,1,1,Active Shallow Crust,128.8882,89.98974,0.0,02/22/6552 +5.88501,50.7387,2203,8,20,21,56,53,5.45,15.0,fr,41628,44,1742149,1,1,Active Shallow Crust,0.0,89.98997,0.0,08/20/2203 +-0.54529,41.87922,9349,7,14,13,9,6,3.65,5.0,fr,41629,186,1742412,1,1,Active Shallow Crust,0.0,89.98996,0.0,07/14/9349 +-0.54529,41.87922,7478,6,13,16,40,35,3.65,5.0,fr,41630,149,1742421,1,1,Active Shallow Crust,128.9007,89.96351,0.0,06/13/7478 +-0.54529,41.87922,9218,4,2,14,49,29,4.55,5.0,fr,41631,184,1742520,1,1,Active Shallow Crust,0.0,89.98991,0.0,04/02/9218 +6.61665,48.45712,1194,9,16,8,1,59,3.65,15.0,fr,41632,23,1742899,1,1,Active Shallow Crust,0.0,89.98794,-90.0,09/16/1194 +6.61665,48.45712,7843,7,31,8,52,55,3.75,5.0,fr,41633,156,1742913,1,1,Active Shallow Crust,128.8967,89.96752,0.0,07/31/7843 +6.61665,48.45712,9008,7,24,19,5,15,3.85,15.0,fr,41634,180,1742917,1,2,Active Shallow Crust,0.0,89.99053,0.0,07/24/9008 +6.61665,48.45712,2534,5,8,2,27,34,3.85,15.0,fr,41635,50,1742917,1,2,Active Shallow Crust,0.0,89.99053,0.0,05/08/2534 +6.61665,48.45712,2970,1,15,18,16,28,3.95,5.0,fr,41636,59,1742928,1,2,Active Shallow Crust,0.0,89.99156,0.0,01/15/2970 +6.61665,48.45712,5747,2,13,17,32,16,3.95,5.0,fr,41637,114,1742928,1,2,Active Shallow Crust,0.0,89.99156,0.0,02/13/5747 +6.61665,48.45712,8638,8,1,7,12,37,4.05,5.0,fr,41638,172,1742940,1,1,Active Shallow Crust,0.0,89.98872,0.0,08/01/8638 +6.61665,48.45712,559,11,2,17,58,49,4.25,27.5,fr,41639,11,1742966,1,1,Active Shallow Crust,0.0,89.99104,0.0,11/02/0559 +6.61665,48.45712,8861,5,4,14,28,13,4.45,5.0,fr,41640,177,1742988,1,1,Active Shallow Crust,0.0,89.99051,0.0,05/04/8861 +6.61665,48.45712,6079,2,13,10,58,35,4.45,15.0,fr,41641,121,1742992,1,1,Active Shallow Crust,240.0059,57.9951,0.0,02/13/6079 +1.74944,46.68005,7797,12,30,6,37,46,3.55,5.0,fr,41642,155,1743360,1,1,Active Shallow Crust,0.0,89.98962,0.0,12/30/7797 +1.74944,46.68005,3321,5,12,20,53,28,3.55,5.0,fr,41643,66,1743363,1,1,Active Shallow Crust,240.0123,57.99842,0.0,05/12/3321 +1.74944,46.68005,1506,8,12,21,5,0,3.55,15.0,fr,41644,30,1743367,1,1,Active Shallow Crust,0.0,89.9895,-90.0,08/12/1506 +1.74944,46.68005,1044,4,1,23,55,50,3.55,27.5,fr,41645,20,1743368,1,1,Active Shallow Crust,0.0,89.9895,-90.0,04/01/1044 +1.74944,46.68005,9437,3,6,20,18,44,3.55,27.5,fr,41646,188,1743371,1,1,Active Shallow Crust,128.8965,89.99308,0.0,03/06/9437 +1.74944,46.68005,146,5,11,11,49,21,3.65,5.0,fr,41647,2,1743372,1,4,Active Shallow Crust,0.0,89.99075,0.0,05/11/0146 +1.74944,46.68005,460,7,16,3,19,4,3.65,5.0,fr,41648,9,1743372,1,4,Active Shallow Crust,0.0,89.99075,0.0,07/16/0460 +1.74944,46.68005,2972,2,2,3,40,18,3.65,5.0,fr,41649,59,1743372,1,4,Active Shallow Crust,0.0,89.99075,0.0,02/02/2972 +1.74944,46.68005,593,1,3,11,58,16,3.65,5.0,fr,41650,11,1743372,1,4,Active Shallow Crust,0.0,89.99075,0.0,01/03/0593 +1.74944,46.68005,1468,11,11,10,32,45,3.75,15.0,fr,41651,29,1743385,1,1,Active Shallow Crust,0.0,89.99038,0.0,11/11/1468 +1.74944,46.68005,8111,5,9,7,21,58,3.75,5.0,fr,41652,162,1743387,1,1,Active Shallow Crust,240.0085,58.01751,0.0,05/09/8111 +1.74944,46.68005,7155,7,7,3,7,32,3.85,5.0,fr,41653,143,1743396,1,2,Active Shallow Crust,0.0,89.9902,0.0,07/07/7155 +1.74944,46.68005,2729,8,4,9,1,48,3.85,5.0,fr,41654,54,1743396,1,2,Active Shallow Crust,0.0,89.9902,0.0,08/04/2729 +1.74944,46.68005,3539,11,28,11,19,11,3.95,5.0,fr,41655,70,1743408,1,1,Active Shallow Crust,0.0,89.99018,0.0,11/28/3539 +1.74944,46.68005,7902,8,10,0,9,26,3.95,5.0,fr,41656,158,1743414,1,1,Active Shallow Crust,0.0,89.99007,-90.0,08/10/7902 +1.74944,46.68005,6639,10,1,4,29,17,4.25,5.0,fr,41657,132,1743444,1,1,Active Shallow Crust,0.0,89.98996,0.0,10/01/6639 +1.74944,46.68005,5247,9,13,0,31,54,4.25,15.0,fr,41658,104,1743445,1,1,Active Shallow Crust,0.0,89.98996,0.0,09/13/5247 +1.74944,46.68005,288,11,4,16,3,35,4.35,5.0,fr,41659,5,1743456,1,1,Active Shallow Crust,0.0,89.98967,0.0,11/04/0288 +1.74944,46.68005,1363,11,26,13,30,55,4.45,27.5,fr,41660,27,1743470,1,1,Active Shallow Crust,0.0,89.99018,0.0,11/26/1363 +1.74944,46.68005,116,12,13,1,10,16,4.45,27.5,fr,41661,2,1743476,1,1,Active Shallow Crust,0.0,89.99007,-90.0,12/13/0116 +1.74944,46.68005,4388,1,22,7,12,34,4.65,5.0,fr,41662,87,1743495,1,1,Active Shallow Crust,240.0108,57.9943,0.0,01/22/4388 +1.74944,46.68005,1958,7,24,23,3,37,4.95,5.0,fr,41663,39,1743531,1,1,Active Shallow Crust,240.012,58.00442,0.0,07/24/1958 +1.74944,46.68005,9106,10,11,23,33,34,5.25,15.0,fr,41664,182,1743565,1,1,Active Shallow Crust,0.0,89.98998,0.0,10/11/9106 +6.69485,47.95788,8276,8,25,17,54,44,3.55,5.0,fr,41665,165,1743840,1,2,Active Shallow Crust,0.0,89.99325,0.0,08/25/8276 +6.69485,47.95788,592,6,15,15,21,38,3.55,5.0,fr,41666,11,1743840,1,2,Active Shallow Crust,0.0,89.99325,0.0,06/15/0592 +6.69485,47.95788,7874,10,13,18,39,33,3.55,27.5,fr,41667,157,1743842,1,1,Active Shallow Crust,0.0,89.99325,0.0,10/13/7874 +6.69485,47.95788,3186,12,4,15,8,16,3.55,5.0,fr,41668,63,1743843,1,1,Active Shallow Crust,240.0121,57.99834,0.0,12/04/3186 +6.69485,47.95788,5152,4,6,2,46,1,3.55,5.0,fr,41669,103,1743846,1,1,Active Shallow Crust,0.0,89.99317,-90.0,04/06/5152 +6.69485,47.95788,190,7,2,3,18,55,3.55,15.0,fr,41670,3,1743847,1,1,Active Shallow Crust,0.0,89.99317,-90.0,07/02/0190 +6.69485,47.95788,2138,3,2,1,29,29,3.65,5.0,fr,41671,42,1743852,1,1,Active Shallow Crust,0.0,89.98796,0.0,03/02/2138 +6.69485,47.95788,565,2,6,0,3,56,3.65,5.0,fr,41672,11,1743855,1,1,Active Shallow Crust,240.0008,58.0138,0.0,02/06/0565 +6.69485,47.95788,8686,6,25,22,21,19,3.65,15.0,fr,41673,173,1743856,1,1,Active Shallow Crust,240.0008,58.0138,0.0,06/25/8686 +6.69485,47.95788,5224,2,3,23,34,26,3.65,5.0,fr,41674,104,1743858,1,1,Active Shallow Crust,0.0,89.98782,-90.0,02/03/5224 +6.69485,47.95788,6326,6,20,9,50,59,3.75,5.0,fr,41675,126,1743864,1,1,Active Shallow Crust,0.0,89.98927,0.0,06/20/6326 +6.69485,47.95788,9820,10,27,10,59,38,3.75,15.0,fr,41676,196,1743868,1,1,Active Shallow Crust,240.0082,58.01781,0.0,10/27/9820 +6.69485,47.95788,9374,3,25,3,24,33,3.85,27.5,fr,41677,187,1743878,1,1,Active Shallow Crust,0.0,89.99044,0.0,03/25/9374 +6.69485,47.95788,6984,2,25,11,18,23,3.85,5.0,fr,41678,139,1743879,1,1,Active Shallow Crust,240.0102,57.99762,0.0,02/25/6984 +6.69485,47.95788,2518,8,11,16,39,32,3.95,5.0,fr,41679,50,1743888,1,1,Active Shallow Crust,0.0,89.99148,0.0,08/11/2518 +6.69485,47.95788,186,4,15,20,34,13,4.05,5.0,fr,41680,3,1743900,1,2,Active Shallow Crust,0.0,89.98861,0.0,04/15/0186 +6.69485,47.95788,5308,12,29,4,1,21,4.05,5.0,fr,41681,106,1743900,1,2,Active Shallow Crust,0.0,89.98861,0.0,12/29/5308 +6.69485,47.95788,3299,4,21,1,18,6,4.05,5.0,fr,41682,65,1743906,1,1,Active Shallow Crust,0.0,89.98847,-90.0,04/21/3299 +6.69485,47.95788,1959,7,9,12,37,57,4.15,5.0,fr,41683,39,1743912,1,2,Active Shallow Crust,0.0,89.98985,0.0,07/09/1959 +6.69485,47.95788,9078,8,21,20,34,27,4.15,5.0,fr,41684,181,1743912,1,2,Active Shallow Crust,0.0,89.98985,0.0,08/21/9078 +6.69485,47.95788,447,12,21,12,18,13,4.15,15.0,fr,41685,8,1743913,1,1,Active Shallow Crust,0.0,89.98985,0.0,12/21/0447 +6.69485,47.95788,4829,9,7,4,2,9,4.15,5.0,fr,41686,96,1743915,1,1,Active Shallow Crust,240.0086,57.99768,0.0,09/07/4829 +6.69485,47.95788,6770,10,15,8,23,17,4.25,5.0,fr,41687,135,1743924,1,1,Active Shallow Crust,0.0,89.99095,0.0,10/15/6770 +6.69485,47.95788,3783,8,22,19,24,51,4.35,5.0,fr,41688,75,1743936,1,2,Active Shallow Crust,0.0,89.98924,0.0,08/22/3783 +6.69485,47.95788,2002,4,10,0,12,32,4.35,5.0,fr,41689,40,1743936,1,2,Active Shallow Crust,0.0,89.98924,0.0,04/10/2002 +6.69485,47.95788,5618,2,11,14,52,46,4.45,15.0,fr,41690,112,1743949,1,1,Active Shallow Crust,0.0,89.99042,0.0,02/11/5618 +6.69485,47.95788,1637,10,23,14,2,17,4.45,5.0,fr,41691,32,1743951,1,1,Active Shallow Crust,240.0056,57.99502,0.0,10/23/1637 +6.69485,47.95788,4384,5,26,22,5,21,4.55,15.0,fr,41692,87,1743964,1,1,Active Shallow Crust,240.0099,57.99715,0.0,05/26/4384 +6.69485,47.95788,3390,7,2,12,32,51,4.75,5.0,fr,41693,67,1743984,1,2,Active Shallow Crust,0.0,89.98982,0.0,07/02/3390 +6.69485,47.95788,1730,2,14,4,46,10,4.75,5.0,fr,41694,34,1743984,1,2,Active Shallow Crust,0.0,89.98982,0.0,02/14/1730 +6.69485,47.95788,9291,4,16,8,41,22,4.85,5.0,fr,41695,185,1743996,1,1,Active Shallow Crust,0.0,89.98942,0.0,04/16/9291 +6.69485,47.95788,9230,6,9,2,3,49,5.35,5.0,fr,41696,184,1744056,1,1,Active Shallow Crust,0.0,89.98979,0.0,06/09/9230 +-1.15488,43.7413,1722,8,22,3,26,55,3.55,15.0,fr,41697,34,1744321,1,1,Active Shallow Crust,0.0,89.99089,0.0,08/22/1722 +-1.15488,43.7413,4313,10,25,1,30,27,3.65,5.0,fr,41698,86,1744332,1,2,Active Shallow Crust,0.0,89.99026,0.0,10/25/4313 +-1.15488,43.7413,9009,6,16,15,10,43,3.65,5.0,fr,41699,180,1744332,1,2,Active Shallow Crust,0.0,89.99026,0.0,06/16/9009 +-1.15488,43.7413,5314,6,1,21,30,31,3.65,5.0,fr,41700,106,1744341,1,1,Active Shallow Crust,128.9004,89.96347,0.0,06/01/5314 +-1.15488,43.7413,5610,6,2,2,46,55,4.05,15.0,fr,41701,112,1744381,1,1,Active Shallow Crust,0.0,89.98976,0.0,06/02/5610 +-1.15488,43.7413,9086,4,7,21,31,0,4.05,27.5,fr,41702,181,1744382,1,1,Active Shallow Crust,0.0,89.98976,0.0,04/07/9086 +-1.15488,43.7413,4291,3,12,13,26,38,4.05,27.5,fr,41703,85,1744388,1,1,Active Shallow Crust,0.0,89.98964,-90.0,03/12/4291 +3.78269,43.12878,8495,1,18,12,9,11,3.55,5.0,fr,41704,169,1744800,1,1,Active Shallow Crust,0.0,89.98896,0.0,01/18/8495 +3.78269,43.12878,3226,2,6,1,1,45,3.55,5.0,fr,41705,64,1744803,1,1,Active Shallow Crust,240.0117,57.99831,0.0,02/06/3226 +3.78269,43.12878,8545,2,2,22,38,37,3.65,27.5,fr,41706,170,1744823,1,1,Active Shallow Crust,128.8998,89.96371,0.0,02/02/8545 +3.78269,43.12878,9743,10,14,8,52,21,3.75,5.0,fr,41707,194,1744824,1,1,Active Shallow Crust,0.0,89.99123,0.0,10/14/9743 +3.78269,43.12878,2202,7,16,15,45,8,3.85,15.0,fr,41708,44,1744840,1,1,Active Shallow Crust,240.0103,57.99773,0.0,07/16/2202 +3.78269,43.12878,6303,11,10,11,43,24,4.05,27.5,fr,41709,126,1744862,1,1,Active Shallow Crust,0.0,89.98965,0.0,11/10/6303 +3.78269,43.12878,9372,6,5,23,48,20,4.55,15.0,fr,41710,187,1744921,1,1,Active Shallow Crust,0.0,89.98952,0.0,06/05/9372 +1.91411,40.96404,1860,8,22,17,27,35,3.55,5.0,fr,41711,37,1745280,1,2,Active Shallow Crust,0.0,89.99048,0.0,08/22/1860 +1.91411,40.96404,1603,9,16,12,48,34,3.55,5.0,fr,41712,32,1745280,1,2,Active Shallow Crust,0.0,89.99048,0.0,09/16/1603 +1.91411,40.96404,3247,5,7,1,6,6,3.55,5.0,fr,41713,64,1745286,1,1,Active Shallow Crust,0.0,89.99037,-90.0,05/07/3247 +1.91411,40.96404,5951,11,15,0,14,44,3.55,15.0,fr,41714,119,1745287,1,1,Active Shallow Crust,0.0,89.99037,-90.0,11/15/5951 +1.91411,40.96404,7817,3,13,5,37,18,3.65,5.0,fr,41715,156,1745292,1,2,Active Shallow Crust,0.0,89.98982,0.0,03/13/7817 +1.91411,40.96404,2818,4,17,20,3,4,3.65,5.0,fr,41716,56,1745292,1,2,Active Shallow Crust,0.0,89.98982,0.0,04/17/2818 +1.91411,40.96404,6300,11,18,14,21,30,3.65,5.0,fr,41717,125,1745295,1,1,Active Shallow Crust,240.0005,58.01268,0.0,11/18/6300 +1.91411,40.96404,933,8,18,13,59,46,3.65,5.0,fr,41718,18,1745298,1,1,Active Shallow Crust,0.0,89.9897,-90.0,08/18/0933 +1.91411,40.96404,2994,3,17,10,11,13,3.75,15.0,fr,41719,59,1745305,1,1,Active Shallow Crust,0.0,89.98942,0.0,03/17/2994 +1.91411,40.96404,6565,2,3,17,9,0,3.75,27.5,fr,41720,131,1745306,1,2,Active Shallow Crust,0.0,89.98942,0.0,02/03/6565 +1.91411,40.96404,2097,7,12,18,17,20,3.75,27.5,fr,41721,41,1745306,1,2,Active Shallow Crust,0.0,89.98942,0.0,07/12/2097 +1.91411,40.96404,8167,4,6,7,11,39,3.85,5.0,fr,41722,163,1745325,1,1,Active Shallow Crust,128.896,89.99393,0.0,04/06/8167 +1.91411,40.96404,5795,8,12,23,34,38,3.95,5.0,fr,41723,115,1745328,1,1,Active Shallow Crust,0.0,89.99039,0.0,08/12/5795 +1.91411,40.96404,8943,1,11,1,30,51,3.95,15.0,fr,41724,178,1745332,1,1,Active Shallow Crust,240.0191,58.0048,0.0,01/11/8943 +1.91411,40.96404,2140,8,9,19,27,53,3.95,15.0,fr,41725,42,1745338,1,1,Active Shallow Crust,128.9011,89.994,0.0,08/09/2140 +1.91411,40.96404,7719,5,19,7,52,12,5.15,5.0,fr,41726,154,1745472,1,1,Active Shallow Crust,0.0,89.99004,0.0,05/19/7719 +1.73644,49.45099,3801,12,28,9,36,39,3.85,5.0,fr,41727,76,1745796,1,1,Active Shallow Crust,0.0,89.98956,0.0,12/28/3801 +1.73644,49.45099,9049,2,19,19,15,35,3.85,27.5,fr,41728,180,1745798,1,1,Active Shallow Crust,0.0,89.98956,0.0,02/19/9049 +1.73644,49.45099,2418,1,2,22,2,7,4.95,5.0,fr,41729,48,1745931,1,1,Active Shallow Crust,240.0134,58.00475,0.0,01/02/2418 +7.92991,46.42539,3557,6,13,7,35,49,3.55,5.0,fr,41730,71,1746240,1,3,Active Shallow Crust,0.0,89.99305,0.0,06/13/3557 +7.92991,46.42539,8589,9,18,7,5,53,3.55,5.0,fr,41731,171,1746240,1,3,Active Shallow Crust,0.0,89.99305,0.0,09/18/8589 +7.92991,46.42539,4561,9,23,6,42,48,3.55,5.0,fr,41732,91,1746240,1,3,Active Shallow Crust,0.0,89.99305,0.0,09/23/4561 +7.92991,46.42539,441,9,4,5,54,58,3.55,15.0,fr,41733,8,1746241,1,5,Active Shallow Crust,0.0,89.99305,0.0,09/04/0441 +7.92991,46.42539,5238,11,22,1,23,24,3.55,15.0,fr,41734,104,1746241,1,5,Active Shallow Crust,0.0,89.99305,0.0,11/22/5238 +7.92991,46.42539,6439,4,24,23,33,41,3.55,15.0,fr,41735,128,1746241,1,5,Active Shallow Crust,0.0,89.99305,0.0,04/24/6439 +7.92991,46.42539,8397,6,14,17,58,58,3.55,15.0,fr,41736,167,1746241,1,5,Active Shallow Crust,0.0,89.99305,0.0,06/14/8397 +7.92991,46.42539,1154,12,14,14,10,38,3.55,15.0,fr,41737,23,1746241,1,5,Active Shallow Crust,0.0,89.99305,0.0,12/14/1154 +7.92991,46.42539,8624,10,5,15,12,16,3.55,5.0,fr,41738,172,1746243,1,2,Active Shallow Crust,240.0125,57.99836,0.0,10/05/8624 +7.92991,46.42539,7966,6,29,18,12,17,3.55,5.0,fr,41739,159,1746243,1,2,Active Shallow Crust,240.0125,57.99836,0.0,06/29/7966 +7.92991,46.42539,7077,5,19,2,56,37,3.55,5.0,fr,41740,141,1746249,1,2,Active Shallow Crust,128.8957,89.99653,0.0,05/19/7077 +7.92991,46.42539,7417,2,2,12,24,14,3.55,5.0,fr,41741,148,1746249,1,2,Active Shallow Crust,128.8957,89.99653,0.0,02/02/7417 +7.92991,46.42539,3604,7,16,17,33,4,3.65,5.0,fr,41742,72,1746252,1,3,Active Shallow Crust,0.0,89.98761,0.0,07/16/3604 +7.92991,46.42539,7917,1,31,8,6,16,3.65,5.0,fr,41743,158,1746252,1,3,Active Shallow Crust,0.0,89.98761,0.0,01/31/7917 +7.92991,46.42539,5424,6,6,22,26,17,3.65,5.0,fr,41744,108,1746252,1,3,Active Shallow Crust,0.0,89.98761,0.0,06/06/5424 +7.92991,46.42539,8160,5,11,8,12,51,3.65,27.5,fr,41745,163,1746254,1,1,Active Shallow Crust,0.0,89.98761,0.0,05/11/8160 +7.92991,46.42539,2466,5,12,17,26,4,3.65,5.0,fr,41746,49,1746261,1,1,Active Shallow Crust,128.9011,89.96352,0.0,05/12/2466 +7.92991,46.42539,1238,8,24,6,32,13,3.75,5.0,fr,41747,24,1746264,1,2,Active Shallow Crust,0.0,89.98896,0.0,08/24/1238 +7.92991,46.42539,366,9,13,21,21,21,3.75,5.0,fr,41748,7,1746264,1,2,Active Shallow Crust,0.0,89.98896,0.0,09/13/0366 +7.92991,46.42539,8422,7,27,18,34,18,3.75,5.0,fr,41749,168,1746267,1,1,Active Shallow Crust,240.0075,58.01767,0.0,07/27/8422 +7.92991,46.42539,3443,10,29,18,21,7,3.75,5.0,fr,41750,68,1746270,1,2,Active Shallow Crust,0.0,89.98883,-90.0,10/29/3443 +7.92991,46.42539,2881,8,10,14,18,14,3.75,5.0,fr,41751,57,1746270,1,2,Active Shallow Crust,0.0,89.98883,-90.0,08/10/2881 +7.92991,46.42539,3363,2,14,14,54,1,3.85,5.0,fr,41752,67,1746276,1,1,Active Shallow Crust,0.0,89.99016,0.0,02/14/3363 +7.92991,46.42539,9536,2,4,7,52,3,3.85,15.0,fr,41753,190,1746277,1,4,Active Shallow Crust,0.0,89.99016,0.0,02/04/9536 +7.92991,46.42539,4256,12,2,13,58,18,3.85,15.0,fr,41754,85,1746277,1,4,Active Shallow Crust,0.0,89.99016,0.0,12/02/4256 +7.92991,46.42539,5256,8,19,15,12,10,3.85,15.0,fr,41755,105,1746277,1,4,Active Shallow Crust,0.0,89.99016,0.0,08/19/5256 +7.92991,46.42539,4479,6,19,23,0,1,3.85,15.0,fr,41756,89,1746277,1,4,Active Shallow Crust,0.0,89.99016,0.0,06/19/4479 +7.92991,46.42539,1226,8,15,15,13,51,3.85,5.0,fr,41757,24,1746279,1,1,Active Shallow Crust,240.0098,57.99783,0.0,08/15/1226 +7.92991,46.42539,6700,9,9,17,59,19,3.95,5.0,fr,41758,133,1746288,1,2,Active Shallow Crust,0.0,89.99123,0.0,09/09/6700 +7.92991,46.42539,5519,9,26,16,45,36,3.95,5.0,fr,41759,110,1746288,1,2,Active Shallow Crust,0.0,89.99123,0.0,09/26/5519 +7.92991,46.42539,834,11,4,1,47,52,3.95,15.0,fr,41760,16,1746289,1,2,Active Shallow Crust,0.0,89.99123,0.0,11/04/0834 +7.92991,46.42539,2189,6,22,9,48,54,3.95,15.0,fr,41761,43,1746289,1,2,Active Shallow Crust,0.0,89.99123,0.0,06/22/2189 +7.92991,46.42539,2921,8,13,13,58,12,3.95,5.0,fr,41762,58,1746297,1,1,Active Shallow Crust,128.8996,89.99342,0.0,08/13/2921 +7.92991,46.42539,4444,2,9,20,6,41,4.05,5.0,fr,41763,88,1746303,1,1,Active Shallow Crust,240.0053,58.00621,0.0,02/09/4444 +7.92991,46.42539,8675,8,12,7,40,29,4.15,5.0,fr,41764,173,1746312,1,1,Active Shallow Crust,0.0,89.98955,0.0,08/12/8675 +7.92991,46.42539,8108,3,14,19,27,48,4.15,27.5,fr,41765,162,1746314,1,2,Active Shallow Crust,0.0,89.98955,0.0,03/14/8108 +7.92991,46.42539,6002,1,26,5,58,54,4.15,27.5,fr,41766,120,1746314,1,2,Active Shallow Crust,0.0,89.98955,0.0,01/26/6002 +7.92991,46.42539,2000,7,24,3,50,51,4.15,15.0,fr,41767,39,1746322,1,1,Active Shallow Crust,128.8984,89.99303,0.0,07/24/2000 +7.92991,46.42539,6510,1,29,23,18,50,4.25,15.0,fr,41768,130,1746325,1,1,Active Shallow Crust,0.0,89.99068,0.0,01/29/6510 +7.92991,46.42539,5220,11,12,10,5,37,4.35,5.0,fr,41769,104,1746345,1,1,Active Shallow Crust,128.8974,89.98302,0.0,11/12/5220 +7.92991,46.42539,1211,1,25,19,46,24,4.45,5.0,fr,41770,24,1746348,1,1,Active Shallow Crust,0.0,89.99014,0.0,01/25/1211 +7.92991,46.42539,6251,1,22,14,29,10,4.65,5.0,fr,41771,125,1746378,1,1,Active Shallow Crust,0.0,89.99009,-90.0,01/22/6251 +0.96016,52.01578,3393,4,30,18,29,4,3.55,5.0,fr,41772,67,1747200,1,1,Active Shallow Crust,0.0,89.98991,0.0,04/30/3393 +0.96016,52.01578,3231,12,13,16,42,36,3.65,15.0,fr,41773,64,1747222,1,1,Active Shallow Crust,128.9,89.96346,0.0,12/13/3231 +0.96016,52.01578,3148,12,18,19,34,20,3.75,5.0,fr,41774,62,1747224,1,1,Active Shallow Crust,0.0,89.99014,0.0,12/18/3148 +0.96016,52.01578,6571,4,5,23,34,18,3.85,5.0,fr,41775,131,1747236,1,1,Active Shallow Crust,0.0,89.99011,0.0,04/05/6571 +4.65766,49.2088,4607,10,26,4,10,13,4.25,15.0,fr,41776,92,1748245,1,1,Active Shallow Crust,0.0,89.99117,0.0,10/26/4607 +0.82861,51.10684,870,11,19,22,2,13,3.55,5.0,fr,41777,17,1748640,1,1,Active Shallow Crust,0.0,89.98971,0.0,11/19/0870 +0.82861,51.10684,5953,6,3,13,46,44,3.55,5.0,fr,41778,119,1748649,1,1,Active Shallow Crust,128.896,89.99367,0.0,06/03/5953 +0.82861,51.10684,241,12,26,21,58,14,3.55,15.0,fr,41779,4,1748650,1,1,Active Shallow Crust,128.896,89.99367,0.0,12/26/0241 +0.82861,51.10684,5554,10,28,22,22,35,3.85,5.0,fr,41780,111,1748676,1,1,Active Shallow Crust,0.0,89.98991,0.0,10/28/5554 +0.82861,51.10684,7780,12,17,10,18,26,3.85,27.5,fr,41781,155,1748684,1,1,Active Shallow Crust,0.0,89.9898,-90.0,12/17/7780 +0.82861,51.10684,7615,3,27,22,37,23,3.95,27.5,fr,41782,152,1748690,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/27/7615 +0.82861,51.10684,1061,10,20,7,45,30,4.25,5.0,fr,41783,21,1748724,1,1,Active Shallow Crust,0.0,89.9901,0.0,10/20/1061 +0.82861,51.10684,2969,6,29,11,17,34,4.55,5.0,fr,41784,59,1748760,1,1,Active Shallow Crust,0.0,89.98999,0.0,06/29/2969 +2.16807,43.94021,9808,7,7,12,15,26,3.55,5.0,fr,41785,196,1749120,1,1,Active Shallow Crust,0.0,89.98911,0.0,07/07/9808 +2.16807,43.94021,3161,11,3,18,25,16,3.55,5.0,fr,41786,63,1749126,1,1,Active Shallow Crust,0.0,89.98898,-90.0,11/03/3161 +2.16807,43.94021,8013,1,7,0,24,18,3.75,5.0,fr,41787,160,1749144,1,1,Active Shallow Crust,0.0,89.99135,0.0,01/07/8013 +2.16807,43.94021,7045,6,6,3,23,14,3.95,27.5,fr,41788,140,1749170,1,1,Active Shallow Crust,0.0,89.99084,0.0,06/06/7045 +2.16807,43.94021,6676,10,14,4,40,15,4.05,5.0,fr,41789,133,1749180,1,1,Active Shallow Crust,0.0,89.98979,0.0,10/14/6676 +2.16807,43.94021,8743,1,28,3,6,54,4.05,27.5,fr,41790,174,1749185,1,1,Active Shallow Crust,240.0057,58.00585,0.0,01/28/8743 +2.16807,43.94021,5371,7,1,10,18,39,5.65,5.0,fr,41791,107,1749372,1,1,Active Shallow Crust,0.0,89.98997,0.0,07/01/5371 +7.21515,44.37425,8536,10,14,12,10,46,3.55,5.0,fr,41792,170,1749600,1,5,Active Shallow Crust,0.0,89.99279,0.0,10/14/8536 +7.21515,44.37425,7151,5,21,21,18,13,3.55,5.0,fr,41793,143,1749600,1,5,Active Shallow Crust,0.0,89.99279,0.0,05/21/7151 +7.21515,44.37425,1194,10,27,7,48,31,3.55,5.0,fr,41794,23,1749600,1,5,Active Shallow Crust,0.0,89.99279,0.0,10/27/1194 +7.21515,44.37425,8003,4,22,3,52,40,3.55,5.0,fr,41795,160,1749600,1,5,Active Shallow Crust,0.0,89.99279,0.0,04/22/8003 +7.21515,44.37425,5389,1,11,6,6,6,3.55,5.0,fr,41796,107,1749600,1,5,Active Shallow Crust,0.0,89.99279,0.0,01/11/5389 +7.21515,44.37425,4430,9,9,12,0,0,3.55,15.0,fr,41797,88,1749601,1,2,Active Shallow Crust,0.0,89.99279,0.0,09/09/4430 +7.21515,44.37425,3896,7,10,6,10,26,3.55,15.0,fr,41798,77,1749601,1,2,Active Shallow Crust,0.0,89.99279,0.0,07/10/3896 +7.21515,44.37425,8220,2,22,23,51,29,3.55,5.0,fr,41799,164,1749606,1,1,Active Shallow Crust,0.0,89.99271,-90.0,02/22/8220 +7.21515,44.37425,1949,4,11,13,33,57,3.65,5.0,fr,41800,38,1749612,1,3,Active Shallow Crust,0.0,89.98715,0.0,04/11/1949 +7.21515,44.37425,3753,4,24,21,35,23,3.65,5.0,fr,41801,75,1749612,1,3,Active Shallow Crust,0.0,89.98715,0.0,04/24/3753 +7.21515,44.37425,57,8,18,16,8,29,3.65,5.0,fr,41802,1,1749612,1,3,Active Shallow Crust,0.0,89.98715,0.0,08/18/0057 +7.21515,44.37425,7725,2,17,17,5,18,3.65,5.0,fr,41803,154,1749615,1,1,Active Shallow Crust,240.0013,58.01196,0.0,02/17/7725 +7.21515,44.37425,4261,11,14,16,6,37,3.65,5.0,fr,41804,85,1749618,1,2,Active Shallow Crust,0.0,89.987,-90.0,11/14/4261 +7.21515,44.37425,742,5,31,16,28,50,3.65,5.0,fr,41805,14,1749618,1,2,Active Shallow Crust,0.0,89.987,-90.0,05/31/0742 +7.21515,44.37425,396,10,17,15,39,40,3.75,5.0,fr,41806,7,1749624,1,3,Active Shallow Crust,0.0,89.98855,0.0,10/17/0396 +7.21515,44.37425,8418,8,30,5,11,13,3.75,5.0,fr,41807,168,1749624,1,3,Active Shallow Crust,0.0,89.98855,0.0,08/30/8418 +7.21515,44.37425,726,6,7,10,29,59,3.75,5.0,fr,41808,14,1749624,1,3,Active Shallow Crust,0.0,89.98855,0.0,06/07/0726 +7.21515,44.37425,7549,4,8,0,11,11,3.75,27.5,fr,41809,150,1749626,1,1,Active Shallow Crust,0.0,89.98855,0.0,04/08/7549 +7.21515,44.37425,1249,5,8,5,17,24,3.75,27.5,fr,41810,24,1749629,1,1,Active Shallow Crust,240.0085,58.01754,0.0,05/08/1249 +7.21515,44.37425,5363,2,28,21,0,8,3.85,5.0,fr,41811,107,1749636,1,3,Active Shallow Crust,0.0,89.98979,0.0,02/28/5363 +7.21515,44.37425,4991,5,19,7,14,4,3.85,5.0,fr,41812,99,1749636,1,3,Active Shallow Crust,0.0,89.98979,0.0,05/19/4991 +7.21515,44.37425,3314,3,5,11,4,45,3.85,5.0,fr,41813,66,1749636,1,3,Active Shallow Crust,0.0,89.98979,0.0,03/05/3314 +7.21515,44.37425,7122,12,31,2,32,34,3.85,15.0,fr,41814,142,1749637,1,2,Active Shallow Crust,0.0,89.98979,0.0,12/31/7122 +7.21515,44.37425,2884,3,7,21,0,36,3.85,15.0,fr,41815,57,1749637,1,2,Active Shallow Crust,0.0,89.98979,0.0,03/07/2884 +7.21515,44.37425,6850,7,30,9,52,7,3.85,27.5,fr,41816,136,1749638,1,1,Active Shallow Crust,0.0,89.98979,0.0,07/30/6850 +7.21515,44.37425,443,3,13,9,57,54,3.85,5.0,fr,41817,8,1749639,1,1,Active Shallow Crust,240.011,57.9978,0.0,03/13/0443 +7.21515,44.37425,8921,4,15,7,54,46,3.85,15.0,fr,41818,178,1749643,1,1,Active Shallow Crust,0.0,89.98968,-90.0,04/15/8921 +7.21515,44.37425,7804,7,14,5,50,46,3.85,27.5,fr,41819,156,1749644,1,2,Active Shallow Crust,0.0,89.98968,-90.0,07/14/7804 +7.21515,44.37425,656,3,25,3,43,28,3.85,27.5,fr,41820,13,1749644,1,2,Active Shallow Crust,0.0,89.98968,-90.0,03/25/0656 +7.21515,44.37425,980,10,21,8,21,0,3.85,5.0,fr,41821,19,1749645,1,1,Active Shallow Crust,128.8954,89.9949,0.0,10/21/0980 +7.21515,44.37425,6147,10,15,14,47,37,3.95,15.0,fr,41822,122,1749649,1,1,Active Shallow Crust,0.0,89.99091,0.0,10/15/6147 +7.21515,44.37425,5667,2,14,15,24,8,3.95,27.5,fr,41823,113,1749650,1,1,Active Shallow Crust,0.0,89.99091,0.0,02/14/5667 +7.21515,44.37425,6085,10,13,22,20,49,3.95,15.0,fr,41824,121,1749658,1,1,Active Shallow Crust,128.901,89.99318,0.0,10/13/6085 +7.21515,44.37425,3629,7,31,1,55,34,3.95,27.5,fr,41825,72,1749659,1,1,Active Shallow Crust,128.901,89.99318,0.0,07/31/3629 +7.21515,44.37425,7254,5,20,3,47,9,4.05,5.0,fr,41826,145,1749660,1,4,Active Shallow Crust,0.0,89.99189,0.0,05/20/7254 +7.21515,44.37425,6032,1,31,1,5,17,4.05,5.0,fr,41827,120,1749660,1,4,Active Shallow Crust,0.0,89.99189,0.0,01/31/6032 +7.21515,44.37425,3727,12,4,7,2,13,4.05,5.0,fr,41828,74,1749660,1,4,Active Shallow Crust,0.0,89.99189,0.0,12/04/3727 +7.21515,44.37425,4237,10,22,23,45,10,4.05,5.0,fr,41829,84,1749660,1,4,Active Shallow Crust,0.0,89.99189,0.0,10/22/4237 +7.21515,44.37425,9697,8,9,10,45,54,4.05,15.0,fr,41830,193,1749661,1,1,Active Shallow Crust,0.0,89.99189,0.0,08/09/9697 +7.21515,44.37425,5428,3,14,22,5,36,4.05,5.0,fr,41831,108,1749666,1,1,Active Shallow Crust,0.0,89.9918,-90.0,03/14/5428 +7.21515,44.37425,9488,11,29,5,8,52,4.05,5.0,fr,41832,189,1749669,1,2,Active Shallow Crust,128.8896,89.99392,0.0,11/29/9488 +7.21515,44.37425,8601,7,17,9,47,17,4.05,5.0,fr,41833,172,1749669,1,2,Active Shallow Crust,128.8896,89.99392,0.0,07/17/8601 +7.21515,44.37425,5816,6,1,22,11,18,4.15,5.0,fr,41834,116,1749672,1,2,Active Shallow Crust,0.0,89.98916,0.0,06/01/5816 +7.21515,44.37425,5371,10,1,3,3,42,4.15,5.0,fr,41835,107,1749672,1,2,Active Shallow Crust,0.0,89.98916,0.0,10/01/5371 +7.21515,44.37425,8646,12,4,2,0,47,4.15,15.0,fr,41836,172,1749673,1,1,Active Shallow Crust,0.0,89.98916,0.0,12/04/8646 +7.21515,44.37425,608,6,20,11,40,41,4.25,5.0,fr,41837,12,1749684,1,2,Active Shallow Crust,0.0,89.99034,0.0,06/20/0608 +7.21515,44.37425,686,8,27,0,26,13,4.25,5.0,fr,41838,13,1749684,1,2,Active Shallow Crust,0.0,89.99034,0.0,08/27/0686 +7.21515,44.37425,5222,12,8,13,39,18,4.25,15.0,fr,41839,104,1749685,1,1,Active Shallow Crust,0.0,89.99034,0.0,12/08/5222 +7.21515,44.37425,6619,4,30,10,43,30,4.25,5.0,fr,41840,132,1749687,1,2,Active Shallow Crust,240.0073,57.99387,0.0,04/30/6619 +7.21515,44.37425,7127,4,5,7,47,50,4.25,5.0,fr,41841,142,1749687,1,2,Active Shallow Crust,240.0073,57.99387,0.0,04/05/7127 +7.21515,44.37425,8792,12,14,12,20,33,4.35,5.0,fr,41842,175,1749696,1,1,Active Shallow Crust,0.0,89.99139,0.0,12/14/8792 +7.21515,44.37425,2754,3,26,1,39,33,4.35,5.0,fr,41843,55,1749702,1,1,Active Shallow Crust,0.0,89.99129,-90.0,03/26/2754 +7.21515,44.37425,7899,1,20,5,31,47,4.45,5.0,fr,41844,157,1749717,1,1,Active Shallow Crust,128.8931,89.99361,0.0,01/20/7899 +7.21515,44.37425,413,10,24,23,56,32,4.55,5.0,fr,41845,8,1749729,1,1,Active Shallow Crust,128.8941,89.98603,0.0,10/24/0413 +7.21515,44.37425,3871,3,23,13,12,47,4.65,5.0,fr,41846,77,1749732,1,1,Active Shallow Crust,0.0,89.98985,0.0,03/23/3871 +7.21515,44.37425,6745,1,14,3,50,35,4.65,27.5,fr,41847,134,1749737,1,1,Active Shallow Crust,240.0105,57.99383,0.0,01/14/6745 +7.21515,44.37425,2423,6,22,1,0,29,4.75,5.0,fr,41848,48,1749744,1,2,Active Shallow Crust,0.0,89.98914,0.0,06/22/2423 +7.21515,44.37425,2253,8,2,2,57,56,4.75,5.0,fr,41849,45,1749744,1,2,Active Shallow Crust,0.0,89.98914,0.0,08/02/2253 +7.21515,44.37425,8754,3,21,22,53,45,4.75,27.5,fr,41850,175,1749746,1,1,Active Shallow Crust,0.0,89.98914,0.0,03/21/8754 +7.21515,44.37425,1534,12,29,19,1,20,4.85,5.0,fr,41851,30,1749756,1,2,Active Shallow Crust,0.0,89.99032,0.0,12/29/1534 +7.21515,44.37425,8104,4,12,17,23,53,4.85,5.0,fr,41852,162,1749756,1,2,Active Shallow Crust,0.0,89.99032,0.0,04/12/8104 +7.21515,44.37425,1804,5,18,6,12,38,4.95,5.0,fr,41853,36,1749768,1,1,Active Shallow Crust,0.0,89.98993,0.0,05/18/1804 +7.21515,44.37425,4306,7,6,3,47,59,4.95,15.0,fr,41854,86,1749769,1,1,Active Shallow Crust,0.0,89.98993,0.0,07/06/4306 +7.21515,44.37425,8430,12,9,14,0,40,5.05,15.0,fr,41855,168,1749781,1,1,Active Shallow Crust,0.0,89.98975,0.0,12/09/8430 +7.21515,44.37425,8402,11,9,22,36,18,5.15,15.0,fr,41856,168,1749793,1,1,Active Shallow Crust,0.0,89.98972,0.0,11/09/8402 +7.21515,44.37425,2525,6,22,11,3,51,5.15,27.5,fr,41857,50,1749794,1,1,Active Shallow Crust,0.0,89.98972,0.0,06/22/2525 +7.21515,44.37425,4133,2,4,7,58,47,5.15,15.0,fr,41858,82,1749799,1,1,Active Shallow Crust,0.0,89.98959,-90.0,02/04/4133 +7.21515,44.37425,6403,7,10,21,8,37,5.65,5.0,fr,41859,128,1749861,1,1,Active Shallow Crust,128.877,89.99057,0.0,07/10/6403 +7.21515,44.37425,8315,8,12,7,37,31,6.05,5.357596,fr,41860,166,1749900,1,2,Active Shallow Crust,0.0,89.99006,0.0,08/12/8315 +7.21515,44.37425,5718,12,25,6,33,35,6.05,5.357596,fr,41861,114,1749900,1,2,Active Shallow Crust,0.0,89.99006,0.0,12/25/5718 +3.75967,49.70315,6234,1,21,17,49,19,3.65,5.0,fr,41862,124,1750101,1,2,Active Shallow Crust,128.9002,89.96358,0.0,01/21/6234 +3.75967,49.70315,1951,6,8,17,20,46,3.65,5.0,fr,41863,39,1750101,1,2,Active Shallow Crust,128.9002,89.96358,0.0,06/08/1951 +3.75967,49.70315,1408,11,28,5,33,31,4.05,5.0,fr,41864,28,1750140,1,1,Active Shallow Crust,0.0,89.99083,0.0,11/28/1408 +3.75967,49.70315,9501,9,25,15,10,56,4.65,5.0,fr,41865,190,1750212,1,1,Active Shallow Crust,0.0,89.98989,0.0,09/25/9501 +3.75967,49.70315,8762,7,21,14,45,46,5.05,15.0,fr,41866,175,1750261,1,1,Active Shallow Crust,0.0,89.99014,0.0,07/21/8762 +3.759663,49.70314,1576,5,22,5,8,41,6.55,9.527304,fr,41867,31,1750449,1,1,Active Shallow Crust,128.8212,89.99013,0.0,05/22/1576 +3.16174,48.73777,6905,10,20,12,3,34,4.05,5.0,fr,41868,138,1750620,1,1,Active Shallow Crust,0.0,89.99065,0.0,10/20/6905 +3.16174,48.73777,2290,11,16,8,39,11,4.55,5.0,fr,41869,45,1750683,1,1,Active Shallow Crust,240.0098,57.99749,0.0,11/16/2290 +3.16174,48.73777,518,10,12,11,45,24,5.25,5.0,fr,41870,10,1750764,1,1,Active Shallow Crust,0.0,89.99014,0.0,10/12/0518 +-5.60031,48.76775,6832,9,17,15,2,56,3.55,5.0,fr,41871,136,1751049,1,1,Active Shallow Crust,128.8969,89.99335,0.0,09/17/6832 +-5.60031,48.76775,9604,2,17,6,29,28,4.15,5.0,fr,41872,192,1751112,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/17/9604 +-5.60031,48.76775,4391,7,21,7,15,24,4.65,5.0,fr,41873,87,1751172,1,1,Active Shallow Crust,0.0,89.99063,0.0,07/21/4391 +-0.05654,49.62532,9844,9,19,18,59,32,3.55,5.0,fr,41874,196,1751520,1,1,Active Shallow Crust,0.0,89.99,0.0,09/19/9844 +-0.05654,49.62532,6732,2,7,19,20,39,3.65,5.0,fr,41875,134,1751535,1,1,Active Shallow Crust,240.0014,58.01297,0.0,02/07/6732 +-0.05654,49.62532,8042,11,29,0,55,17,3.75,15.0,fr,41876,160,1751545,1,1,Active Shallow Crust,0.0,89.98999,0.0,11/29/8042 +-0.05654,49.62532,5175,10,20,10,2,44,3.75,5.0,fr,41877,103,1751550,1,1,Active Shallow Crust,0.0,89.99,-90.0,10/20/5175 +-0.05654,49.62532,6605,6,4,8,39,55,3.75,27.5,fr,41878,132,1751552,1,1,Active Shallow Crust,0.0,89.99,-90.0,06/04/6605 +-0.05654,49.62532,4869,9,20,12,23,58,3.85,5.0,fr,41879,97,1751556,1,1,Active Shallow Crust,0.0,89.98999,0.0,09/20/4869 +-0.05654,49.62532,8308,3,22,2,59,42,3.95,5.0,fr,41880,166,1751568,1,1,Active Shallow Crust,0.0,89.98998,0.0,03/22/8308 +-0.05654,49.62532,8281,8,9,16,43,51,4.15,15.0,fr,41881,165,1751602,1,1,Active Shallow Crust,128.897,89.99371,0.0,08/09/8281 +-0.05654,49.62532,8688,5,28,8,21,35,4.35,5.0,fr,41882,173,1751616,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/28/8688 +-0.05654,49.62532,3055,7,12,17,25,55,4.35,15.0,fr,41883,61,1751617,1,1,Active Shallow Crust,0.0,89.99001,0.0,07/12/3055 +-0.05654,49.62532,7765,12,13,15,21,55,4.45,5.0,fr,41884,155,1751628,1,1,Active Shallow Crust,0.0,89.99001,0.0,12/13/7765 +-0.05654,49.62532,802,3,9,6,13,27,4.65,5.0,fr,41885,16,1751652,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/09/0802 +-0.05654,49.62532,1004,8,29,17,1,29,5.25,5.0,fr,41886,20,1751727,1,1,Active Shallow Crust,240.0277,58.00067,0.0,08/29/1004 +4.11079,46.71653,8043,2,11,14,4,8,3.55,5.0,fr,41887,160,1752000,1,1,Active Shallow Crust,0.0,89.99309,0.0,02/11/8043 +4.11079,46.71653,9557,8,5,4,46,35,3.55,15.0,fr,41888,191,1752004,1,1,Active Shallow Crust,240.0111,57.9991,0.0,08/05/9557 +4.11079,46.71653,7069,2,27,1,42,2,3.65,5.0,fr,41889,141,1752012,1,1,Active Shallow Crust,0.0,89.98768,0.0,02/27/7069 +4.11079,46.71653,6820,7,29,6,38,39,3.75,5.0,fr,41890,136,1752024,1,1,Active Shallow Crust,0.0,89.98901,0.0,07/29/6820 +4.11079,46.71653,8814,2,8,14,4,45,4.25,15.0,fr,41891,176,1752085,1,1,Active Shallow Crust,0.0,89.99074,0.0,02/08/8814 +4.11079,46.71653,8236,7,20,17,29,59,4.25,5.0,fr,41892,164,1752090,1,1,Active Shallow Crust,0.0,89.99063,-90.0,07/20/8236 +4.11079,46.71653,4994,1,12,5,17,46,4.35,15.0,fr,41893,99,1752097,1,1,Active Shallow Crust,0.0,89.98899,0.0,01/12/4994 +4.11079,46.71653,9873,6,24,7,24,38,4.45,5.0,fr,41894,197,1752108,1,1,Active Shallow Crust,0.0,89.99019,0.0,06/24/9873 +4.11079,46.71653,8416,10,16,11,8,23,4.75,5.0,fr,41895,168,1752144,1,1,Active Shallow Crust,0.0,89.98958,0.0,10/16/8416 +2.03968,42.99279,7394,7,10,20,30,54,3.55,5.0,fr,41896,147,1752480,1,2,Active Shallow Crust,0.0,89.98894,0.0,07/10/7394 +2.03968,42.99279,7511,4,15,2,1,15,3.55,5.0,fr,41897,150,1752480,1,2,Active Shallow Crust,0.0,89.98894,0.0,04/15/7511 +2.03968,42.99279,491,11,25,6,45,32,3.65,5.0,fr,41898,9,1752492,1,1,Active Shallow Crust,0.0,89.99014,0.0,11/25/0491 +2.03968,42.99279,2593,11,12,18,34,39,3.75,5.0,fr,41899,51,1752504,1,2,Active Shallow Crust,0.0,89.99121,0.0,11/12/2593 +2.03968,42.99279,1895,1,24,16,11,1,3.75,5.0,fr,41900,37,1752504,1,2,Active Shallow Crust,0.0,89.99121,0.0,01/24/1895 +2.03968,42.99279,5499,12,24,14,31,24,3.75,15.0,fr,41901,109,1752505,1,1,Active Shallow Crust,0.0,89.99121,0.0,12/24/5499 +2.03968,42.99279,3770,6,14,10,27,38,3.85,5.0,fr,41902,75,1752516,1,1,Active Shallow Crust,0.0,89.98956,0.0,06/14/3770 +2.03968,42.99279,9188,4,25,2,57,56,3.95,27.5,fr,41903,183,1752530,1,1,Active Shallow Crust,0.0,89.99069,0.0,04/25/9188 +2.03968,42.99279,2154,3,13,5,31,51,3.95,5.0,fr,41904,43,1752537,1,1,Active Shallow Crust,128.9005,89.99419,0.0,03/13/2154 +2.03968,42.99279,3926,4,16,16,0,2,4.05,5.0,fr,41905,78,1752540,1,2,Active Shallow Crust,0.0,89.98963,0.0,04/16/3926 +2.03968,42.99279,8913,6,10,22,54,48,4.05,5.0,fr,41906,178,1752540,1,2,Active Shallow Crust,0.0,89.98963,0.0,06/10/8913 +2.03968,42.99279,9679,5,30,9,10,3,4.35,5.0,fr,41907,193,1752576,1,1,Active Shallow Crust,0.0,89.98972,0.0,05/30/9679 +2.03968,42.99279,6470,2,8,9,59,35,4.55,15.0,fr,41908,129,1752601,1,2,Active Shallow Crust,0.0,89.9895,0.0,02/08/6470 +2.03968,42.99279,378,2,20,2,52,30,4.55,15.0,fr,41909,7,1752601,1,2,Active Shallow Crust,0.0,89.9895,0.0,02/20/0378 +2.03968,42.99279,7488,3,14,22,44,17,4.65,5.0,fr,41910,149,1752612,1,1,Active Shallow Crust,0.0,89.98961,0.0,03/14/7488 +6.72908,51.3336,1822,11,5,17,15,45,3.55,5.0,fr,41911,36,1752960,1,1,Active Shallow Crust,0.0,89.9874,0.0,11/05/1822 +6.72908,51.3336,1188,6,26,15,23,34,3.55,27.5,fr,41912,23,1752962,1,1,Active Shallow Crust,0.0,89.9874,0.0,06/26/1188 +6.72908,51.3336,588,12,6,9,31,23,3.75,15.0,fr,41913,11,1752985,1,1,Active Shallow Crust,0.0,89.98999,0.0,12/06/0588 +-6.29257,47.72598,4502,1,21,18,0,33,3.75,27.5,fr,41914,90,1753466,1,1,Active Shallow Crust,0.0,89.98923,0.0,01/21/4502 +-5.56267,47.94901,4513,11,9,16,56,8,3.55,5.0,fr,41915,90,1753920,1,1,Active Shallow Crust,0.0,89.99325,0.0,11/09/4513 +-5.56267,47.94901,7362,7,13,8,34,59,3.55,15.0,fr,41916,147,1753921,1,1,Active Shallow Crust,0.0,89.99325,0.0,07/13/7362 +-5.56267,47.94901,7748,8,29,12,16,20,4.05,15.0,fr,41917,154,1753981,1,1,Active Shallow Crust,0.0,89.9886,0.0,08/29/7748 +-5.56267,47.94901,4816,7,31,19,21,5,4.15,15.0,fr,41918,96,1753993,1,1,Active Shallow Crust,0.0,89.98985,0.0,07/31/4816 +-5.56267,47.94901,7360,11,13,5,40,36,4.15,27.5,fr,41919,147,1753994,1,1,Active Shallow Crust,0.0,89.98985,0.0,11/13/7360 +-5.56267,47.94901,4202,3,2,12,0,21,4.35,5.0,fr,41920,84,1754016,1,1,Active Shallow Crust,0.0,89.98924,0.0,03/02/4202 +-5.56267,47.94901,2193,6,22,12,47,5,5.05,5.0,fr,41921,43,1754106,1,1,Active Shallow Crust,0.0,89.99028,-90.0,06/22/2193 +0.70865,45.13451,2502,4,13,22,38,35,3.55,5.0,fr,41922,50,1754400,1,1,Active Shallow Crust,0.0,89.99022,0.0,04/13/2502 +0.70865,45.13451,183,5,26,22,2,10,3.55,27.5,fr,41923,3,1754402,1,1,Active Shallow Crust,0.0,89.99022,0.0,05/26/0183 +0.70865,45.13451,591,3,2,4,3,20,3.55,5.0,fr,41924,11,1754403,1,1,Active Shallow Crust,240.0122,57.99801,0.0,03/02/0591 +0.70865,45.13451,9793,5,27,15,19,37,4.55,5.0,fr,41925,195,1754520,1,1,Active Shallow Crust,0.0,89.98988,0.0,05/27/9793 +0.70865,45.13451,3441,6,15,10,27,6,4.65,15.0,fr,41926,68,1754533,1,1,Active Shallow Crust,0.0,89.98997,0.0,06/15/3441 +2.29218,52.69061,5285,8,24,19,0,42,3.55,5.0,fr,41927,105,1754880,1,1,Active Shallow Crust,0.0,89.99083,0.0,08/24/5285 +2.29218,52.69061,2118,12,24,10,6,20,3.55,27.5,fr,41928,42,1754882,1,1,Active Shallow Crust,0.0,89.99083,0.0,12/24/2118 +2.29218,52.69061,6089,6,21,16,37,50,3.95,15.0,fr,41929,121,1754935,1,1,Active Shallow Crust,0.0,89.99025,-90.0,06/21/6089 +2.29218,52.69061,2670,9,12,12,49,2,4.05,15.0,fr,41930,53,1754944,1,1,Active Shallow Crust,240.0069,58.00617,0.0,09/12/2670 +-3.35386,47.35938,9783,10,10,3,29,50,3.55,5.0,fr,41931,195,1755366,1,1,Active Shallow Crust,0.0,89.98963,-90.0,10/10/9783 +-3.35386,47.35938,6599,10,24,13,50,58,3.65,5.0,fr,41932,131,1755372,1,1,Active Shallow Crust,0.0,89.99087,0.0,10/24/6599 +-3.35386,47.35938,451,10,21,12,49,34,3.75,5.0,fr,41933,9,1755384,1,2,Active Shallow Crust,0.0,89.98915,0.0,10/21/0451 +-3.35386,47.35938,2754,10,4,19,6,43,3.75,5.0,fr,41934,55,1755384,1,2,Active Shallow Crust,0.0,89.98915,0.0,10/04/2754 +-3.35386,47.35938,6991,4,25,2,19,0,3.75,27.5,fr,41935,139,1755395,1,1,Active Shallow Crust,128.897,89.96725,0.0,04/25/6991 +-3.35386,47.35938,5626,2,8,1,22,54,4.05,5.0,fr,41936,112,1755420,1,2,Active Shallow Crust,0.0,89.99039,0.0,02/08/5626 +-3.35386,47.35938,5986,12,4,17,15,41,4.05,5.0,fr,41937,119,1755420,1,2,Active Shallow Crust,0.0,89.99039,0.0,12/04/5986 +-3.35386,47.35938,6052,9,2,17,20,10,4.25,5.0,fr,41938,121,1755444,1,1,Active Shallow Crust,0.0,89.98932,0.0,09/02/6052 +-3.35386,47.35938,5221,11,18,3,52,51,4.45,5.0,fr,41939,104,1755468,1,1,Active Shallow Crust,0.0,89.9903,0.0,11/18/5221 +-3.35386,47.35938,5968,3,18,18,57,3,4.85,5.0,fr,41940,119,1755516,1,1,Active Shallow Crust,0.0,89.99006,0.0,03/18/5968 +0.2847,44.69436,3613,11,14,9,0,34,3.65,5.0,fr,41941,72,1755852,1,1,Active Shallow Crust,0.0,89.99002,0.0,11/14/3613 +0.2847,44.69436,8961,7,27,0,49,58,3.75,5.0,fr,41942,179,1755864,1,1,Active Shallow Crust,0.0,89.99004,0.0,07/27/8961 +0.2847,44.69436,764,4,28,3,16,51,3.75,15.0,fr,41943,15,1755865,1,1,Active Shallow Crust,0.0,89.99004,0.0,04/28/0764 +0.2847,44.69436,1258,12,30,1,35,30,3.85,5.0,fr,41944,25,1755876,1,1,Active Shallow Crust,0.0,89.98985,0.0,12/30/1258 +0.2847,44.69436,3391,12,29,8,48,29,3.95,5.0,fr,41945,67,1755891,1,1,Active Shallow Crust,240.0195,58.00491,0.0,12/29/3391 +0.2847,44.69436,4821,1,31,8,1,45,4.15,5.0,fr,41946,96,1755912,1,1,Active Shallow Crust,0.0,89.9899,0.0,01/31/4821 +0.2847,44.69436,8905,8,29,1,22,29,4.25,5.0,fr,41947,178,1755924,1,1,Active Shallow Crust,0.0,89.98999,0.0,08/29/8905 +0.2847,44.69436,1134,12,10,23,4,23,4.35,5.0,fr,41948,22,1755936,1,1,Active Shallow Crust,0.0,89.99001,0.0,12/10/1134 +-0.40171,50.13285,7511,4,12,21,58,21,3.55,5.0,fr,41949,150,1756329,1,1,Active Shallow Crust,128.896,89.99374,0.0,04/12/7511 +-0.40171,50.13285,5219,11,8,9,11,55,3.65,5.0,fr,41950,104,1756332,1,1,Active Shallow Crust,0.0,89.98992,0.0,11/08/5219 +-0.40171,50.13285,8274,6,22,7,50,1,3.65,5.0,fr,41951,165,1756338,1,1,Active Shallow Crust,0.0,89.99017,-90.0,06/22/8274 +-0.40171,50.13285,946,7,17,7,40,29,3.65,5.0,fr,41952,18,1756341,1,1,Active Shallow Crust,128.9,89.96353,0.0,07/17/0946 +-0.40171,50.13285,7735,8,12,16,57,18,3.75,5.0,fr,41953,154,1756344,1,1,Active Shallow Crust,0.0,89.99005,0.0,08/12/7735 +-0.40171,50.13285,3969,10,29,1,58,44,3.75,27.5,fr,41954,79,1756346,1,2,Active Shallow Crust,0.0,89.99005,0.0,10/29/3969 +-0.40171,50.13285,4211,2,26,18,33,43,3.75,27.5,fr,41955,84,1756346,1,2,Active Shallow Crust,0.0,89.99005,0.0,02/26/4211 +-0.40171,50.13285,878,9,20,20,16,45,3.85,5.0,fr,41956,17,1756356,1,1,Active Shallow Crust,0.0,89.98999,0.0,09/20/0878 +-0.40171,50.13285,5665,10,3,7,59,22,5.85,27.5,fr,41957,113,1756598,1,1,Active Shallow Crust,360.0,89.99001,0.0,10/03/5665 +6.81028,47.20287,7738,3,10,23,20,16,3.55,5.0,fr,41958,154,1756800,1,5,Active Shallow Crust,0.0,89.99315,0.0,03/10/7738 +6.81028,47.20287,3059,1,11,15,3,48,3.55,5.0,fr,41959,61,1756800,1,5,Active Shallow Crust,0.0,89.99315,0.0,01/11/3059 +6.81028,47.20287,4459,2,14,12,52,46,3.55,5.0,fr,41960,89,1756800,1,5,Active Shallow Crust,0.0,89.99315,0.0,02/14/4459 +6.81028,47.20287,4153,8,7,23,58,56,3.55,5.0,fr,41961,83,1756800,1,5,Active Shallow Crust,0.0,89.99315,0.0,08/07/4153 +6.81028,47.20287,9699,10,26,14,42,53,3.55,5.0,fr,41962,193,1756800,1,5,Active Shallow Crust,0.0,89.99315,0.0,10/26/9699 +6.81028,47.20287,8088,6,5,5,25,57,3.55,15.0,fr,41963,161,1756801,1,1,Active Shallow Crust,0.0,89.99315,0.0,06/05/8088 +6.81028,47.20287,7025,11,1,17,59,54,3.55,5.0,fr,41964,140,1756803,1,1,Active Shallow Crust,240.0127,57.9978,0.0,11/01/7025 +6.81028,47.20287,787,1,12,10,44,22,3.55,5.0,fr,41965,15,1756806,1,1,Active Shallow Crust,0.0,89.99307,-90.0,01/12/0787 +6.81028,47.20287,3978,11,16,12,24,43,3.55,5.0,fr,41966,79,1756809,1,1,Active Shallow Crust,128.8954,89.99315,0.0,11/16/3978 +6.81028,47.20287,9121,9,6,4,25,4,3.55,15.0,fr,41967,182,1756810,1,1,Active Shallow Crust,128.8954,89.99315,0.0,09/06/9121 +6.81028,47.20287,5540,7,20,11,49,48,3.65,5.0,fr,41968,110,1756812,1,3,Active Shallow Crust,0.0,89.98779,0.0,07/20/5540 +6.81028,47.20287,1804,10,10,12,40,4,3.65,5.0,fr,41969,36,1756812,1,3,Active Shallow Crust,0.0,89.98779,0.0,10/10/1804 +6.81028,47.20287,3101,11,15,15,23,21,3.65,5.0,fr,41970,62,1756812,1,3,Active Shallow Crust,0.0,89.98779,0.0,11/15/3101 +6.81028,47.20287,1955,3,15,19,58,16,3.65,27.5,fr,41971,39,1756814,1,1,Active Shallow Crust,0.0,89.98779,0.0,03/15/1955 +6.81028,47.20287,6370,7,6,2,26,54,3.65,5.0,fr,41972,127,1756815,1,1,Active Shallow Crust,240.0008,58.0135,0.0,07/06/6370 +6.81028,47.20287,7074,6,23,4,12,36,3.65,5.0,fr,41973,141,1756818,1,1,Active Shallow Crust,0.0,89.98765,-90.0,06/23/7074 +6.81028,47.20287,4957,3,25,6,47,41,3.65,5.0,fr,41974,99,1756821,1,1,Active Shallow Crust,128.9004,89.96354,0.0,03/25/4957 +6.81028,47.20287,648,8,1,8,50,57,3.75,5.0,fr,41975,12,1756824,1,2,Active Shallow Crust,0.0,89.98911,0.0,08/01/0648 +6.81028,47.20287,8517,1,6,9,20,45,3.75,5.0,fr,41976,170,1756824,1,2,Active Shallow Crust,0.0,89.98911,0.0,01/06/8517 +6.81028,47.20287,5452,5,13,16,56,48,3.75,5.0,fr,41977,109,1756827,1,2,Active Shallow Crust,240.0079,58.01777,0.0,05/13/5452 +6.81028,47.20287,2353,8,11,13,36,12,3.75,5.0,fr,41978,47,1756827,1,2,Active Shallow Crust,240.0079,58.01777,0.0,08/11/2353 +6.81028,47.20287,8889,3,24,13,16,37,3.75,5.0,fr,41979,177,1756833,1,1,Active Shallow Crust,128.8969,89.96694,0.0,03/24/8889 +6.81028,47.20287,5760,11,20,14,39,34,3.85,5.0,fr,41980,115,1756836,1,2,Active Shallow Crust,0.0,89.9903,0.0,11/20/5760 +6.81028,47.20287,474,10,26,4,24,58,3.85,5.0,fr,41981,9,1756836,1,2,Active Shallow Crust,0.0,89.9903,0.0,10/26/0474 +6.81028,47.20287,7688,11,25,3,49,5,3.85,5.0,fr,41982,153,1756839,1,1,Active Shallow Crust,240.0103,57.99768,0.0,11/25/7688 +6.81028,47.20287,8955,12,20,0,9,19,3.95,5.0,fr,41983,179,1756848,1,4,Active Shallow Crust,0.0,89.99136,0.0,12/20/8955 +6.81028,47.20287,7776,6,20,15,31,58,3.95,5.0,fr,41984,155,1756848,1,4,Active Shallow Crust,0.0,89.99136,0.0,06/20/7776 +6.81028,47.20287,19,10,12,6,14,49,3.95,5.0,fr,41985,0,1756848,1,4,Active Shallow Crust,0.0,89.99136,0.0,10/12/0019 +6.81028,47.20287,5470,11,14,12,44,46,3.95,5.0,fr,41986,109,1756848,1,4,Active Shallow Crust,0.0,89.99136,0.0,11/14/5470 +6.81028,47.20287,3423,2,9,17,28,22,3.95,5.0,fr,41987,68,1756854,1,1,Active Shallow Crust,0.0,89.99126,-90.0,02/09/3423 +6.81028,47.20287,6813,9,13,22,46,10,4.05,5.0,fr,41988,136,1756860,1,3,Active Shallow Crust,0.0,89.98844,0.0,09/13/6813 +6.81028,47.20287,3733,2,4,6,6,3,4.05,5.0,fr,41989,74,1756860,1,3,Active Shallow Crust,0.0,89.98844,0.0,02/04/3733 +6.81028,47.20287,4844,5,9,5,25,48,4.05,5.0,fr,41990,96,1756860,1,3,Active Shallow Crust,0.0,89.98844,0.0,05/09/4844 +6.81028,47.20287,7883,3,1,8,34,13,4.05,15.0,fr,41991,157,1756861,1,1,Active Shallow Crust,0.0,89.98844,0.0,03/01/7883 +6.81028,47.20287,2926,10,8,15,17,55,4.15,5.0,fr,41992,58,1756872,1,1,Active Shallow Crust,0.0,89.9897,0.0,10/08/2926 +6.81028,47.20287,7707,12,2,22,25,0,4.15,5.0,fr,41993,154,1756878,1,1,Active Shallow Crust,0.0,89.98958,-90.0,12/02/7707 +6.81028,47.20287,2672,9,24,7,33,45,4.25,5.0,fr,41994,53,1756884,1,4,Active Shallow Crust,0.0,89.99082,0.0,09/24/2672 +6.81028,47.20287,3774,9,21,3,1,29,4.25,5.0,fr,41995,75,1756884,1,4,Active Shallow Crust,0.0,89.99082,0.0,09/21/3774 +6.81028,47.20287,6223,7,13,19,25,57,4.25,5.0,fr,41996,124,1756884,1,4,Active Shallow Crust,0.0,89.99082,0.0,07/13/6223 +6.81028,47.20287,2482,10,13,22,48,41,4.25,5.0,fr,41997,49,1756884,1,4,Active Shallow Crust,0.0,89.99082,0.0,10/13/2482 +6.81028,47.20287,5569,5,30,15,27,16,4.25,27.5,fr,41998,111,1756895,1,1,Active Shallow Crust,128.895,89.98043,0.0,05/30/5569 +6.81028,47.20287,2018,9,1,13,25,19,4.35,15.0,fr,41999,40,1756897,1,1,Active Shallow Crust,0.0,89.98909,0.0,09/01/2018 +6.81028,47.20287,4670,7,1,3,54,35,4.45,5.0,fr,42000,93,1756917,1,1,Active Shallow Crust,128.8925,89.99271,0.0,07/01/4670 +6.81028,47.20287,3605,2,6,13,33,56,4.55,5.0,fr,42001,72,1756926,1,1,Active Shallow Crust,0.0,89.98904,-90.0,02/06/3605 +6.81028,47.20287,4475,10,16,3,40,14,4.75,5.0,fr,42002,89,1756944,1,3,Active Shallow Crust,0.0,89.98967,0.0,10/16/4475 +6.81028,47.20287,605,1,17,1,55,18,4.75,5.0,fr,42003,12,1756944,1,3,Active Shallow Crust,0.0,89.98967,0.0,01/17/0605 +6.81028,47.20287,4578,10,13,17,6,51,4.75,5.0,fr,42004,91,1756944,1,3,Active Shallow Crust,0.0,89.98967,0.0,10/13/4578 +6.81028,47.20287,8777,10,18,20,36,51,4.75,27.5,fr,42005,175,1756955,1,1,Active Shallow Crust,128.8885,89.98821,0.0,10/18/8777 +6.81028,47.20287,3722,4,27,22,21,32,4.85,15.0,fr,42006,74,1756957,1,1,Active Shallow Crust,0.0,89.98927,0.0,04/27/3722 +6.81028,47.20287,8729,10,30,21,37,8,4.95,15.0,fr,42007,174,1756969,1,1,Active Shallow Crust,0.0,89.99043,0.0,10/30/8729 +6.81028,47.20287,9755,8,31,16,28,0,5.35,5.0,fr,42008,195,1757016,1,1,Active Shallow Crust,0.0,89.98965,0.0,08/31/9755 +-4.09037,47.96883,2494,6,3,10,23,34,3.65,5.0,fr,42009,49,1757292,1,1,Active Shallow Crust,0.0,89.98797,0.0,06/03/2494 +-4.09037,47.96883,9860,2,15,17,34,14,3.65,27.5,fr,42010,197,1757297,1,2,Active Shallow Crust,240.0015,58.01252,0.0,02/15/9860 +-4.09037,47.96883,1141,5,27,18,42,35,3.65,27.5,fr,42011,22,1757297,1,2,Active Shallow Crust,240.0015,58.01252,0.0,05/27/1141 +-4.09037,47.96883,9461,9,27,19,3,38,3.75,27.5,fr,42012,189,1757306,1,1,Active Shallow Crust,0.0,89.98927,0.0,09/27/9461 +-4.09037,47.96883,7535,6,2,22,32,57,3.75,15.0,fr,42013,150,1757314,1,1,Active Shallow Crust,128.8961,89.96751,0.0,06/02/7535 +-4.09037,47.96883,2897,6,25,22,31,24,3.85,5.0,fr,42014,57,1757316,1,1,Active Shallow Crust,0.0,89.99044,0.0,06/25/2897 +-4.09037,47.96883,3076,7,26,17,15,21,3.85,15.0,fr,42015,61,1757317,1,1,Active Shallow Crust,0.0,89.99044,0.0,07/26/3076 +-4.09037,47.96883,2927,11,28,21,23,39,4.05,5.0,fr,42016,58,1757340,1,1,Active Shallow Crust,0.0,89.98861,0.0,11/28/2927 +-4.09037,47.96883,509,5,6,8,40,55,4.45,5.0,fr,42017,10,1757388,1,1,Active Shallow Crust,0.0,89.99042,0.0,05/06/0509 +-4.09037,47.96883,5493,3,25,18,25,48,4.45,15.0,fr,42018,109,1757392,1,1,Active Shallow Crust,240.0057,57.99488,0.0,03/25/5493 +-6.89175,47.79094,3024,3,21,18,59,7,3.75,5.0,fr,42019,60,1758264,1,1,Active Shallow Crust,0.0,89.98923,0.0,03/21/3024 +3.4795,50.54319,8495,5,20,7,40,5,3.55,15.0,fr,42020,169,1758721,1,2,Active Shallow Crust,0.0,89.99039,0.0,05/20/8495 +3.4795,50.54319,8140,4,28,16,31,45,3.55,15.0,fr,42021,162,1758721,1,2,Active Shallow Crust,0.0,89.99039,0.0,04/28/8140 +3.4795,50.54319,1801,5,14,4,54,19,3.75,5.0,fr,42022,36,1758750,1,1,Active Shallow Crust,0.0,89.9897,-90.0,05/14/1801 +3.4795,50.54319,746,9,18,4,11,50,3.95,5.0,fr,42023,14,1758768,1,1,Active Shallow Crust,0.0,89.98989,0.0,09/18/0746 +3.4795,50.54319,7275,5,4,22,58,9,4.15,5.0,fr,42024,145,1758792,1,1,Active Shallow Crust,0.0,89.99036,0.0,05/04/7275 +3.4795,50.54319,3908,4,8,8,13,52,4.65,5.0,fr,42025,78,1758852,1,1,Active Shallow Crust,0.0,89.99007,0.0,04/08/3908 +3.4795,50.54319,89,4,2,1,18,21,4.75,5.0,fr,42026,1,1758864,1,1,Active Shallow Crust,0.0,89.99034,0.0,04/02/0089 +3.4795,50.54319,5661,1,28,7,47,12,4.95,5.0,fr,42027,113,1758894,1,1,Active Shallow Crust,0.0,89.9903,-90.0,01/28/5661 +6.81783,49.36416,5839,10,24,21,17,8,3.55,27.5,fr,42028,116,1759685,1,1,Active Shallow Crust,240.0125,57.99856,0.0,10/24/5839 +6.81783,49.36416,3733,4,2,11,55,48,3.85,15.0,fr,42029,74,1759717,1,1,Active Shallow Crust,0.0,89.9907,0.0,04/02/3733 +6.81783,49.36416,1755,12,17,4,33,35,3.95,5.0,fr,42030,35,1759728,1,1,Active Shallow Crust,0.0,89.99171,0.0,12/17/1755 +6.81783,49.36416,1899,4,4,16,44,25,4.45,15.0,fr,42031,37,1759789,1,1,Active Shallow Crust,0.0,89.99068,0.0,04/04/1899 +3.7446,48.06869,2542,9,23,1,31,43,3.65,5.0,fr,42032,50,1760172,1,1,Active Shallow Crust,0.0,89.99099,0.0,09/23/2542 +3.7446,48.06869,9240,11,16,11,56,44,3.65,5.0,fr,42033,184,1760178,1,2,Active Shallow Crust,0.0,89.99089,-90.0,11/16/9240 +3.7446,48.06869,9929,4,2,4,32,8,3.65,5.0,fr,42034,198,1760178,1,2,Active Shallow Crust,0.0,89.99089,-90.0,04/02/9929 +1.88512,51.40241,1744,7,27,7,55,15,3.55,5.0,fr,42035,34,1760640,1,1,Active Shallow Crust,0.0,89.99056,0.0,07/27/1744 +1.88512,51.40241,7728,1,19,11,7,45,3.65,5.0,fr,42036,154,1760652,1,1,Active Shallow Crust,0.0,89.99019,0.0,01/19/7728 +1.88512,51.40241,580,7,28,22,36,58,3.95,15.0,fr,42037,11,1760689,1,1,Active Shallow Crust,0.0,89.99007,0.0,07/28/0580 +1.88512,51.40241,7921,2,6,1,24,20,5.05,15.0,fr,42038,158,1760821,1,1,Active Shallow Crust,0.0,89.98993,0.0,02/06/7921 +2.61409,42.68518,4423,12,2,18,45,28,3.55,5.0,fr,42039,88,1761120,1,3,Active Shallow Crust,0.0,89.98888,0.0,12/02/4423 +2.61409,42.68518,5858,11,9,23,32,41,3.55,5.0,fr,42040,117,1761120,1,3,Active Shallow Crust,0.0,89.98888,0.0,11/09/5858 +2.61409,42.68518,4221,8,31,10,49,13,3.55,5.0,fr,42041,84,1761120,1,3,Active Shallow Crust,0.0,89.98888,0.0,08/31/4221 +2.61409,42.68518,9900,1,6,21,3,49,3.55,15.0,fr,42042,197,1761124,1,1,Active Shallow Crust,240.012,57.99818,0.0,01/06/9900 +2.61409,42.68518,827,10,6,2,42,15,3.55,15.0,fr,42043,16,1761127,1,1,Active Shallow Crust,0.0,89.98875,-90.0,10/06/0827 +2.61409,42.68518,3326,3,28,0,45,10,3.55,5.0,fr,42044,66,1761129,1,1,Active Shallow Crust,128.8965,89.99258,0.0,03/28/3326 +2.61409,42.68518,4128,8,8,9,10,22,3.65,5.0,fr,42045,82,1761132,1,4,Active Shallow Crust,0.0,89.99009,0.0,08/08/4128 +2.61409,42.68518,2766,10,1,5,53,13,3.65,5.0,fr,42046,55,1761132,1,4,Active Shallow Crust,0.0,89.99009,0.0,10/01/2766 +2.61409,42.68518,5341,8,16,9,10,6,3.65,5.0,fr,42047,106,1761132,1,4,Active Shallow Crust,0.0,89.99009,0.0,08/16/5341 +2.61409,42.68518,113,11,10,21,48,11,3.65,5.0,fr,42048,2,1761132,1,4,Active Shallow Crust,0.0,89.99009,0.0,11/10/0113 +2.61409,42.68518,9157,5,19,14,20,29,3.65,15.0,fr,42049,183,1761133,1,1,Active Shallow Crust,0.0,89.99009,0.0,05/19/9157 +2.61409,42.68518,8591,5,18,6,20,47,3.65,5.0,fr,42050,171,1761138,1,1,Active Shallow Crust,0.0,89.98997,-90.0,05/18/8591 +2.61409,42.68518,3614,8,30,8,50,18,3.65,15.0,fr,42051,72,1761139,1,1,Active Shallow Crust,0.0,89.98997,-90.0,08/30/3614 +2.61409,42.68518,4385,10,16,0,53,6,3.75,5.0,fr,42052,87,1761144,1,2,Active Shallow Crust,0.0,89.99117,0.0,10/16/4385 +2.61409,42.68518,6815,5,1,23,57,30,3.75,5.0,fr,42053,136,1761144,1,2,Active Shallow Crust,0.0,89.99117,0.0,05/01/6815 +2.61409,42.68518,4451,9,27,21,13,19,3.75,15.0,fr,42054,89,1761145,1,1,Active Shallow Crust,0.0,89.99117,0.0,09/27/4451 +2.61409,42.68518,8719,1,28,12,12,56,3.75,27.5,fr,42055,174,1761146,1,1,Active Shallow Crust,0.0,89.99117,0.0,01/28/8719 +2.61409,42.68518,9387,5,15,17,33,22,3.75,5.0,fr,42056,187,1761153,1,1,Active Shallow Crust,128.8974,89.96742,0.0,05/15/9387 +2.61409,42.68518,3348,3,16,6,32,29,3.75,15.0,fr,42057,66,1761154,1,1,Active Shallow Crust,128.8974,89.96742,0.0,03/16/3348 +2.61409,42.68518,9857,3,11,8,16,8,3.85,15.0,fr,42058,197,1761163,1,1,Active Shallow Crust,0.0,89.98938,-90.0,03/11/9857 +2.61409,42.68518,6573,2,6,16,43,46,3.85,5.0,fr,42059,131,1761165,1,1,Active Shallow Crust,128.896,89.99344,0.0,02/06/6573 +2.61409,42.68518,9270,3,14,23,7,37,3.95,5.0,fr,42060,185,1761168,1,1,Active Shallow Crust,0.0,89.99065,0.0,03/14/9270 +2.61409,42.68518,8854,7,16,5,24,42,3.95,15.0,fr,42061,177,1761169,1,1,Active Shallow Crust,0.0,89.99065,0.0,07/16/8854 +2.61409,42.68518,2239,8,4,10,16,55,3.95,27.5,fr,42062,44,1761170,1,1,Active Shallow Crust,0.0,89.99065,0.0,08/04/2239 +2.61409,42.68518,6076,12,22,17,25,46,4.05,5.0,fr,42063,121,1761180,1,1,Active Shallow Crust,0.0,89.98958,0.0,12/22/6076 +2.61409,42.68518,9614,8,8,10,4,23,4.05,5.0,fr,42064,192,1761183,1,1,Active Shallow Crust,240.0053,58.00588,0.0,08/08/9614 +2.61409,42.68518,9989,11,23,1,20,42,4.15,15.0,fr,42065,199,1761193,1,1,Active Shallow Crust,0.0,89.99072,0.0,11/23/9989 +2.61409,42.68518,9679,8,31,16,42,3,4.25,15.0,fr,42066,193,1761205,1,1,Active Shallow Crust,0.0,89.99007,0.0,08/31/9679 +2.61409,42.68518,1915,1,28,15,15,5,4.35,5.0,fr,42067,38,1761225,1,1,Active Shallow Crust,128.8983,89.98289,0.0,01/28/1915 +2.61409,42.68518,4751,11,19,16,17,44,4.65,5.0,fr,42068,95,1761252,1,1,Active Shallow Crust,0.0,89.98956,0.0,11/19/4751 +2.61409,42.68518,9005,7,19,1,57,24,5.95,5.0,fr,42069,180,1761408,1,1,Active Shallow Crust,0.0,89.98994,0.0,07/19/9005 +-0.74066,46.50605,592,2,22,13,3,12,3.55,15.0,fr,42070,11,1761601,1,2,Active Shallow Crust,0.0,89.98959,0.0,02/22/0592 +-0.74066,46.50605,9862,11,1,5,40,21,3.55,15.0,fr,42071,197,1761601,1,2,Active Shallow Crust,0.0,89.98959,0.0,11/01/9862 +-0.74066,46.50605,7747,10,3,5,52,36,3.55,5.0,fr,42072,154,1761603,1,1,Active Shallow Crust,240.0122,57.99814,0.0,10/03/7747 +-0.74066,46.50605,1339,4,8,18,10,41,3.65,5.0,fr,42073,26,1761612,1,3,Active Shallow Crust,0.0,89.98994,0.0,04/08/1339 +-0.74066,46.50605,6458,5,13,19,43,48,3.65,5.0,fr,42074,129,1761612,1,3,Active Shallow Crust,0.0,89.98994,0.0,05/13/6458 +-0.74066,46.50605,4628,12,19,8,11,50,3.65,5.0,fr,42075,92,1761612,1,3,Active Shallow Crust,0.0,89.98994,0.0,12/19/4628 +-0.74066,46.50605,8743,1,1,1,24,57,3.65,15.0,fr,42076,174,1761613,1,1,Active Shallow Crust,0.0,89.98994,0.0,01/01/8743 +-0.74066,46.50605,7632,4,29,4,50,8,3.65,5.0,fr,42077,152,1761618,1,1,Active Shallow Crust,0.0,89.98983,-90.0,04/29/7632 +-0.74066,46.50605,4517,4,13,0,37,24,3.75,5.0,fr,42078,90,1761624,1,2,Active Shallow Crust,0.0,89.98966,0.0,04/13/4517 +-0.74066,46.50605,4197,9,10,15,25,37,3.75,5.0,fr,42079,83,1761624,1,2,Active Shallow Crust,0.0,89.98966,0.0,09/10/4197 +-0.74066,46.50605,7916,9,29,3,32,7,3.75,15.0,fr,42080,158,1761625,1,1,Active Shallow Crust,0.0,89.98966,0.0,09/29/7916 +-0.74066,46.50605,2490,11,30,14,31,23,3.75,5.0,fr,42081,49,1761627,1,1,Active Shallow Crust,240.0083,58.01756,0.0,11/30/2490 +-0.74066,46.50605,6919,10,16,1,26,18,3.85,5.0,fr,42082,138,1761636,1,2,Active Shallow Crust,0.0,89.99017,0.0,10/16/6919 +-0.74066,46.50605,9037,1,28,10,8,13,3.85,5.0,fr,42083,180,1761636,1,2,Active Shallow Crust,0.0,89.99017,0.0,01/28/9037 +-0.74066,46.50605,1719,8,9,14,49,6,3.85,27.5,fr,42084,34,1761638,1,1,Active Shallow Crust,0.0,89.99017,0.0,08/09/1719 +-0.74066,46.50605,6417,4,2,12,25,18,3.85,5.0,fr,42085,128,1761639,1,1,Active Shallow Crust,240.0107,57.99785,0.0,04/02/6417 +-0.74066,46.50605,3157,4,23,22,10,6,3.85,5.0,fr,42086,63,1761642,1,1,Active Shallow Crust,0.0,89.99006,-90.0,04/23/3157 +-0.74066,46.50605,4363,5,8,15,0,13,3.95,5.0,fr,42087,87,1761648,1,1,Active Shallow Crust,0.0,89.99014,0.0,05/08/4363 +-0.74066,46.50605,1720,2,3,22,22,52,3.95,15.0,fr,42088,34,1761652,1,1,Active Shallow Crust,240.0199,58.00494,0.0,02/03/1720 +-0.74066,46.50605,4197,1,29,6,1,43,3.95,5.0,fr,42089,83,1761657,1,1,Active Shallow Crust,128.9003,89.99371,0.0,01/29/4197 +-0.74066,46.50605,4629,5,30,13,27,24,4.05,5.0,fr,42090,92,1761660,1,4,Active Shallow Crust,359.9998,89.99024,0.0,05/30/4629 +-0.74066,46.50605,2954,7,23,9,47,54,4.05,5.0,fr,42091,59,1761660,1,4,Active Shallow Crust,359.9998,89.99024,0.0,07/23/2954 +-0.74066,46.50605,4437,10,26,2,21,14,4.05,5.0,fr,42092,88,1761660,1,4,Active Shallow Crust,359.9998,89.99024,0.0,10/26/4437 +-0.74066,46.50605,6792,9,20,10,25,54,4.05,5.0,fr,42093,135,1761660,1,4,Active Shallow Crust,359.9998,89.99024,0.0,09/20/6792 +-0.74066,46.50605,801,12,2,6,45,25,4.15,27.5,fr,42094,16,1761674,1,1,Active Shallow Crust,0.0,89.99,0.0,12/02/0801 +-0.74066,46.50605,2245,12,4,21,58,40,4.15,5.0,fr,42095,44,1761675,1,1,Active Shallow Crust,240.0084,57.99726,0.0,12/04/2245 +-0.74066,46.50605,480,2,16,9,21,46,4.55,5.0,fr,42096,9,1761720,1,1,Active Shallow Crust,0.0,89.99012,0.0,02/16/0480 +-0.74066,46.50605,7536,12,8,7,28,33,4.55,5.0,fr,42097,150,1761726,1,1,Active Shallow Crust,0.0,89.99001,-90.0,12/08/7536 +-0.74066,46.50605,6120,8,15,13,57,33,4.85,15.0,fr,42098,122,1761757,1,1,Active Shallow Crust,359.9999,89.99009,0.0,08/15/6120 +1.44067,47.19409,8883,7,16,20,51,42,3.65,15.0,fr,42099,177,1762093,1,1,Active Shallow Crust,0.0,89.98931,0.0,07/16/8883 +1.44067,47.19409,1306,2,18,6,4,7,3.65,15.0,fr,42100,26,1762099,1,1,Active Shallow Crust,0.0,89.99073,-90.0,02/18/1306 +1.44067,47.19409,6260,5,22,15,13,2,3.75,15.0,fr,42101,125,1762105,1,1,Active Shallow Crust,0.0,89.99048,0.0,05/22/6260 +1.44067,47.19409,4006,7,10,18,52,2,3.85,15.0,fr,42102,80,1762126,1,1,Active Shallow Crust,128.8957,89.99333,0.0,07/10/4006 +1.44067,47.19409,3727,3,19,16,5,15,4.15,5.0,fr,42103,74,1762152,1,1,Active Shallow Crust,0.0,89.9897,0.0,03/19/3727 +1.44067,47.19409,5502,2,14,13,38,36,4.15,5.0,fr,42104,110,1762158,1,1,Active Shallow Crust,0.0,89.98958,-90.0,02/14/5502 +1.44067,47.19409,1495,6,19,22,34,8,4.15,15.0,fr,42105,29,1762159,1,1,Active Shallow Crust,0.0,89.98958,-90.0,06/19/1495 +1.440672,47.19409,9116,10,22,18,51,59,6.15,6.011322,fr,42106,182,1762392,1,1,Active Shallow Crust,0.0,89.98999,0.0,10/22/9116 +6.46974,50.07064,4785,6,14,6,13,9,3.65,5.0,fr,42107,95,1762578,1,1,Active Shallow Crust,0.0,89.98833,-90.0,06/14/4785 +6.46974,50.07064,9248,11,3,13,49,0,3.75,5.0,fr,42108,184,1762584,1,2,Active Shallow Crust,0.0,89.98972,0.0,11/03/9248 +6.46974,50.07064,1619,4,14,21,17,42,3.75,5.0,fr,42109,32,1762584,1,2,Active Shallow Crust,0.0,89.98972,0.0,04/14/1619 +6.46974,50.07064,5531,1,2,11,11,12,3.95,5.0,fr,42110,110,1762611,1,1,Active Shallow Crust,240.0207,58.00472,0.0,01/02/5531 +6.46974,50.07064,4845,5,29,11,33,20,4.05,5.0,fr,42111,96,1762620,1,1,Active Shallow Crust,0.0,89.98908,0.0,05/29/4845 +6.46974,50.07064,7403,1,2,0,45,40,4.05,15.0,fr,42112,148,1762621,1,1,Active Shallow Crust,0.0,89.98908,0.0,01/02/7403 +6.46974,50.07064,2493,11,3,8,32,34,5.85,5.0,fr,42113,49,1762836,1,1,Active Shallow Crust,0.0,89.98991,0.0,11/03/2493 +6.15204,44.24698,9305,11,2,13,58,53,3.55,27.5,fr,42114,186,1763048,1,1,Active Shallow Crust,0.0,89.99269,-90.0,11/02/9305 +6.15204,44.24698,4639,8,29,17,13,38,3.65,5.0,fr,42115,92,1763052,1,4,Active Shallow Crust,0.0,89.98712,0.0,08/29/4639 +6.15204,44.24698,9605,2,6,17,26,53,3.65,5.0,fr,42116,192,1763052,1,4,Active Shallow Crust,0.0,89.98712,0.0,02/06/9605 +6.15204,44.24698,2010,9,4,17,17,2,3.65,5.0,fr,42117,40,1763052,1,4,Active Shallow Crust,0.0,89.98712,0.0,09/04/2010 +6.15204,44.24698,9749,9,1,8,39,24,3.65,5.0,fr,42118,194,1763052,1,4,Active Shallow Crust,0.0,89.98712,0.0,09/01/9749 +6.15204,44.24698,9329,3,3,10,2,6,3.65,5.0,fr,42119,186,1763055,1,1,Active Shallow Crust,240.0005,58.013,0.0,03/03/9329 +6.15204,44.24698,9586,6,16,10,50,4,3.75,5.0,fr,42120,191,1763067,1,2,Active Shallow Crust,240.0079,58.01817,0.0,06/16/9586 +6.15204,44.24698,1432,9,15,6,13,52,3.75,5.0,fr,42121,28,1763067,1,2,Active Shallow Crust,240.0079,58.01817,0.0,09/15/1432 +6.15204,44.24698,9590,7,26,0,59,7,3.75,5.0,fr,42122,191,1763070,1,1,Active Shallow Crust,0.0,89.98839,-90.0,07/26/9590 +6.15204,44.24698,217,4,29,9,6,22,3.85,5.0,fr,42123,4,1763076,1,1,Active Shallow Crust,0.0,89.98977,0.0,04/29/0217 +6.15204,44.24698,2261,3,11,0,23,45,3.85,27.5,fr,42124,45,1763078,1,1,Active Shallow Crust,0.0,89.98977,0.0,03/11/2261 +6.15204,44.24698,9200,2,19,6,0,53,3.95,5.0,fr,42125,183,1763088,1,2,Active Shallow Crust,0.0,89.99088,0.0,02/19/9200 +6.15204,44.24698,9040,10,4,10,53,38,3.95,5.0,fr,42126,180,1763088,1,2,Active Shallow Crust,0.0,89.99088,0.0,10/04/9040 +6.15204,44.24698,3575,10,22,0,51,29,3.95,5.0,fr,42127,71,1763091,1,1,Active Shallow Crust,240.0201,58.00447,0.0,10/22/3575 +6.15204,44.24698,1222,1,1,10,29,35,3.95,5.0,fr,42128,24,1763097,1,1,Active Shallow Crust,128.9003,89.99316,0.0,01/01/1222 +6.15204,44.24698,3694,11,2,6,3,8,4.15,5.0,fr,42129,73,1763112,1,1,Active Shallow Crust,0.0,89.98914,0.0,11/02/3694 +6.15204,44.24698,5504,10,31,1,27,45,4.15,5.0,fr,42130,110,1763115,1,1,Active Shallow Crust,240.0078,57.99741,0.0,10/31/5504 +6.15204,44.24698,7028,11,10,7,47,1,4.15,5.0,fr,42131,140,1763118,1,1,Active Shallow Crust,0.0,89.98901,-90.0,11/10/7028 +6.15204,44.24698,8779,1,3,2,9,17,4.25,5.0,fr,42132,175,1763124,1,2,Active Shallow Crust,0.0,89.99032,0.0,01/03/8779 +6.15204,44.24698,6669,12,21,7,29,24,4.25,5.0,fr,42133,133,1763124,1,2,Active Shallow Crust,0.0,89.99032,0.0,12/21/6669 +6.15204,44.24698,2647,4,27,2,49,12,4.25,5.0,fr,42134,52,1763133,1,1,Active Shallow Crust,128.8949,89.98087,0.0,04/27/2647 +6.15204,44.24698,4507,4,28,19,59,21,4.65,15.0,fr,42135,90,1763173,1,1,Active Shallow Crust,0.0,89.98982,0.0,04/28/4507 +6.15204,44.24698,1436,9,23,13,19,9,4.75,5.0,fr,42136,28,1763184,1,1,Active Shallow Crust,0.0,89.98911,0.0,09/23/1436 +6.15204,44.24698,4990,10,17,18,32,43,4.85,5.0,fr,42137,99,1763196,1,1,Active Shallow Crust,0.0,89.9903,0.0,10/17/4990 +-2.06948,46.66294,2384,1,12,7,21,52,3.95,5.0,fr,42138,47,1763577,1,1,Active Shallow Crust,128.9005,89.99454,0.0,01/12/2384 +-2.06948,46.66294,6310,11,29,9,20,1,4.15,5.0,fr,42139,126,1763592,1,1,Active Shallow Crust,0.0,89.98959,0.0,11/29/6310 +-2.06948,46.66294,3317,4,2,11,3,5,4.25,5.0,fr,42140,66,1763607,1,1,Active Shallow Crust,240.0075,57.99428,0.0,04/02/3317 +-2.06948,46.66294,5495,3,13,13,47,43,5.05,15.0,fr,42141,109,1763710,1,1,Active Shallow Crust,128.8853,89.99055,0.0,03/13/5495 +2.58402,45.05704,9344,9,4,19,7,21,3.55,5.0,fr,42142,186,1764009,1,1,Active Shallow Crust,128.8966,89.99466,0.0,09/04/9344 +2.58402,45.05704,7079,5,15,8,16,47,3.65,5.0,fr,42143,141,1764012,1,1,Active Shallow Crust,0.0,89.99048,0.0,05/15/7079 +2.58402,45.05704,2637,9,26,14,49,47,3.65,27.5,fr,42144,52,1764014,1,1,Active Shallow Crust,0.0,89.99048,0.0,09/26/2637 +2.58402,45.05704,4149,10,17,16,0,9,3.65,5.0,fr,42145,82,1764015,1,1,Active Shallow Crust,240.0008,58.01279,0.0,10/17/4149 +2.58402,45.05704,9182,6,11,19,23,4,3.75,5.0,fr,42146,183,1764024,1,1,Active Shallow Crust,0.0,89.98869,0.0,06/11/9182 +2.58402,45.05704,4726,11,1,3,16,11,3.75,15.0,fr,42147,94,1764025,1,1,Active Shallow Crust,0.0,89.98869,0.0,11/01/4726 +2.58402,45.05704,7695,9,27,1,28,21,3.85,15.0,fr,42148,153,1764037,1,1,Active Shallow Crust,0.0,89.98991,0.0,09/27/7695 +2.58402,45.05704,6874,1,25,6,6,33,3.95,15.0,fr,42149,137,1764049,1,1,Active Shallow Crust,0.0,89.99101,0.0,01/25/6874 +2.58402,45.05704,6657,4,22,18,21,29,4.95,5.0,fr,42150,133,1764168,1,1,Active Shallow Crust,0.0,89.99005,0.0,04/22/6657 +2.58402,45.05704,2407,4,2,21,12,47,5.05,5.0,fr,42151,48,1764180,1,2,Active Shallow Crust,0.0,89.98986,0.0,04/02/2407 +2.58402,45.05704,3122,10,10,11,13,58,5.05,5.0,fr,42152,62,1764180,1,2,Active Shallow Crust,0.0,89.98986,0.0,10/10/3122 +2.58402,45.05704,1701,10,7,13,59,18,5.65,5.0,fr,42153,34,1764255,1,1,Active Shallow Crust,240.0327,58.00164,0.0,10/07/1701 +-0.89921,50.76185,8743,6,26,4,10,44,3.55,15.0,fr,42154,174,1764481,1,1,Active Shallow Crust,0.0,89.98963,0.0,06/26/8743 +-0.89921,50.76185,663,10,30,9,14,44,3.75,15.0,fr,42155,13,1764508,1,1,Active Shallow Crust,240.009,58.01757,0.0,10/30/0663 +1.07341,43.26889,4595,1,22,19,25,22,3.65,15.0,fr,42156,91,1764973,1,3,Active Shallow Crust,0.0,89.99018,0.0,01/22/4595 +1.07341,43.26889,5380,10,11,20,42,43,3.65,15.0,fr,42157,107,1764973,1,3,Active Shallow Crust,0.0,89.99018,0.0,10/11/5380 +1.07341,43.26889,7061,5,22,11,25,14,3.65,15.0,fr,42158,141,1764973,1,3,Active Shallow Crust,0.0,89.99018,0.0,05/22/7061 +1.07341,43.26889,479,3,24,6,45,16,3.75,5.0,fr,42159,9,1764984,1,1,Active Shallow Crust,0.0,89.98979,0.0,03/24/0479 +1.07341,43.26889,9344,1,26,23,4,9,3.75,5.0,fr,42160,186,1764993,1,1,Active Shallow Crust,128.8969,89.9673,0.0,01/26/9344 +1.07341,43.26889,7464,6,29,21,17,40,3.95,5.0,fr,42161,149,1765017,1,1,Active Shallow Crust,128.9008,89.99363,0.0,06/29/7464 +1.07341,43.26889,6956,3,19,0,43,34,4.35,5.0,fr,42162,139,1765059,1,1,Active Shallow Crust,240.0077,57.9958,0.0,03/19/6956 +1.53912,43.44358,9806,4,10,22,0,49,3.55,5.0,fr,42163,196,1765446,1,1,Active Shallow Crust,0.0,89.99075,-90.0,04/10/9806 +1.53912,43.44358,8970,12,2,17,1,18,3.65,5.0,fr,42164,179,1765452,1,1,Active Shallow Crust,0.0,89.99021,0.0,12/02/8970 +1.53912,43.44358,2702,9,14,8,58,31,3.65,15.0,fr,42165,54,1765453,1,1,Active Shallow Crust,0.0,89.99021,0.0,09/14/2702 +1.53912,43.44358,5974,2,25,11,2,33,4.65,5.0,fr,42166,119,1765572,1,1,Active Shallow Crust,0.0,89.9902,0.0,02/25/5974 +-0.86057,44.72897,7681,1,21,3,36,43,3.85,5.0,fr,42167,153,1765956,1,1,Active Shallow Crust,0.0,89.98985,0.0,01/21/7681 +-0.86057,44.72897,7577,10,29,9,49,15,3.95,5.0,fr,42168,151,1765968,1,1,Active Shallow Crust,0.0,89.98983,0.0,10/29/7577 +-0.86057,44.72897,7115,6,22,7,38,8,3.95,15.0,fr,42169,142,1765972,1,1,Active Shallow Crust,240.0195,58.00498,0.0,06/22/7115 +-0.86057,44.72897,6841,12,27,3,15,4,4.55,5.0,fr,42170,136,1766040,1,1,Active Shallow Crust,0.0,89.99009,0.0,12/27/6841 +-0.86057,44.72897,9968,1,7,22,51,19,4.85,5.0,fr,42171,199,1766076,1,1,Active Shallow Crust,0.0,89.98997,0.0,01/07/9968 +-0.75203,41.44222,6341,1,13,5,33,9,3.85,5.0,fr,42172,126,1766442,1,1,Active Shallow Crust,0.0,89.98985,-90.0,01/13/6341 +-0.75203,41.44222,3526,7,2,11,16,15,5.55,15.0,fr,42173,70,1766641,1,1,Active Shallow Crust,0.0,89.98998,0.0,07/02/3526 +7.83701,46.28504,5317,2,27,0,20,34,3.55,5.0,fr,42174,106,1766880,1,11,Active Shallow Crust,0.0,89.99303,0.0,02/27/5317 +7.83701,46.28504,5657,4,6,14,28,24,3.55,5.0,fr,42175,113,1766880,1,11,Active Shallow Crust,0.0,89.99303,0.0,04/06/5657 +7.83701,46.28504,2346,4,28,7,19,24,3.55,5.0,fr,42176,46,1766880,1,11,Active Shallow Crust,0.0,89.99303,0.0,04/28/2346 +7.83701,46.28504,7216,2,1,12,30,34,3.55,5.0,fr,42177,144,1766880,1,11,Active Shallow Crust,0.0,89.99303,0.0,02/01/7216 +7.83701,46.28504,350,6,25,17,57,59,3.55,5.0,fr,42178,6,1766880,1,11,Active Shallow Crust,0.0,89.99303,0.0,06/25/0350 +7.83701,46.28504,4056,10,28,22,6,43,3.55,5.0,fr,42179,81,1766880,1,11,Active Shallow Crust,0.0,89.99303,0.0,10/28/4056 +7.83701,46.28504,3793,2,22,21,49,52,3.55,5.0,fr,42180,75,1766880,1,11,Active Shallow Crust,0.0,89.99303,0.0,02/22/3793 +7.83701,46.28504,7722,12,11,14,16,30,3.55,5.0,fr,42181,154,1766880,1,11,Active Shallow Crust,0.0,89.99303,0.0,12/11/7722 +7.83701,46.28504,4228,8,7,17,15,39,3.55,5.0,fr,42182,84,1766880,1,11,Active Shallow Crust,0.0,89.99303,0.0,08/07/4228 +7.83701,46.28504,392,4,28,10,24,56,3.55,5.0,fr,42183,7,1766880,1,11,Active Shallow Crust,0.0,89.99303,0.0,04/28/0392 +7.83701,46.28504,8974,1,5,17,33,54,3.55,5.0,fr,42184,179,1766880,1,11,Active Shallow Crust,0.0,89.99303,0.0,01/05/8974 +7.83701,46.28504,4587,7,18,8,22,13,3.55,15.0,fr,42185,91,1766881,1,6,Active Shallow Crust,0.0,89.99303,0.0,07/18/4587 +7.83701,46.28504,8765,6,20,21,40,47,3.55,15.0,fr,42186,175,1766881,1,6,Active Shallow Crust,0.0,89.99303,0.0,06/20/8765 +7.83701,46.28504,5484,12,12,14,39,28,3.55,15.0,fr,42187,109,1766881,1,6,Active Shallow Crust,0.0,89.99303,0.0,12/12/5484 +7.83701,46.28504,8899,6,21,18,42,54,3.55,15.0,fr,42188,177,1766881,1,6,Active Shallow Crust,0.0,89.99303,0.0,06/21/8899 +7.83701,46.28504,8908,11,27,17,35,41,3.55,15.0,fr,42189,178,1766881,1,6,Active Shallow Crust,0.0,89.99303,0.0,11/27/8908 +7.83701,46.28504,524,3,26,16,23,2,3.55,15.0,fr,42190,10,1766881,1,6,Active Shallow Crust,0.0,89.99303,0.0,03/26/0524 +7.83701,46.28504,4158,10,18,20,10,4,3.55,27.5,fr,42191,83,1766882,1,1,Active Shallow Crust,0.0,89.99303,0.0,10/18/4158 +7.83701,46.28504,215,7,9,0,1,36,3.55,5.0,fr,42192,4,1766883,1,4,Active Shallow Crust,240.0118,57.99805,0.0,07/09/0215 +7.83701,46.28504,6362,6,2,22,27,44,3.55,5.0,fr,42193,127,1766883,1,4,Active Shallow Crust,240.0118,57.99805,0.0,06/02/6362 +7.83701,46.28504,9110,10,18,18,35,7,3.55,5.0,fr,42194,182,1766883,1,4,Active Shallow Crust,240.0118,57.99805,0.0,10/18/9110 +7.83701,46.28504,3292,10,2,16,31,49,3.55,5.0,fr,42195,65,1766883,1,4,Active Shallow Crust,240.0118,57.99805,0.0,10/02/3292 +7.83701,46.28504,2767,9,2,19,5,31,3.55,5.0,fr,42196,55,1766886,1,1,Active Shallow Crust,0.0,89.99295,-90.0,09/02/2767 +7.83701,46.28504,2975,3,21,4,21,54,3.55,15.0,fr,42197,59,1766887,1,2,Active Shallow Crust,0.0,89.99295,-90.0,03/21/2975 +7.83701,46.28504,5794,3,14,5,46,49,3.55,15.0,fr,42198,115,1766887,1,2,Active Shallow Crust,0.0,89.99295,-90.0,03/14/5794 +7.83701,46.28504,5889,4,7,23,15,46,3.55,5.0,fr,42199,117,1766889,1,1,Active Shallow Crust,128.8959,89.99303,0.0,04/07/5889 +7.83701,46.28504,2061,3,1,9,11,9,3.65,5.0,fr,42200,41,1766892,1,7,Active Shallow Crust,0.0,89.98758,0.0,03/01/2061 +7.83701,46.28504,6102,4,30,20,12,29,3.65,5.0,fr,42201,122,1766892,1,7,Active Shallow Crust,0.0,89.98758,0.0,04/30/6102 +7.83701,46.28504,7154,6,28,0,41,13,3.65,5.0,fr,42202,143,1766892,1,7,Active Shallow Crust,0.0,89.98758,0.0,06/28/7154 +7.83701,46.28504,581,1,9,19,58,20,3.65,5.0,fr,42203,11,1766892,1,7,Active Shallow Crust,0.0,89.98758,0.0,01/09/0581 +7.83701,46.28504,3934,2,27,18,45,35,3.65,5.0,fr,42204,78,1766892,1,7,Active Shallow Crust,0.0,89.98758,0.0,02/27/3934 +7.83701,46.28504,6544,10,30,23,59,42,3.65,5.0,fr,42205,130,1766892,1,7,Active Shallow Crust,0.0,89.98758,0.0,10/30/6544 +7.83701,46.28504,2277,6,22,6,1,37,3.65,5.0,fr,42206,45,1766892,1,7,Active Shallow Crust,0.0,89.98758,0.0,06/22/2277 +7.83701,46.28504,7573,12,12,18,14,58,3.65,15.0,fr,42207,151,1766893,1,1,Active Shallow Crust,0.0,89.98758,0.0,12/12/7573 +7.83701,46.28504,6158,6,1,9,46,5,3.65,27.5,fr,42208,123,1766894,1,1,Active Shallow Crust,0.0,89.98758,0.0,06/01/6158 +7.83701,46.28504,5015,12,1,16,1,1,3.65,5.0,fr,42209,100,1766895,1,1,Active Shallow Crust,240.0013,58.01226,0.0,12/01/5015 +7.83701,46.28504,6868,1,9,0,21,40,3.65,5.0,fr,42210,137,1766898,1,2,Active Shallow Crust,0.0,89.98743,-90.0,01/09/6868 +7.83701,46.28504,3573,6,16,10,13,48,3.65,5.0,fr,42211,71,1766898,1,2,Active Shallow Crust,0.0,89.98743,-90.0,06/16/3573 +7.83701,46.28504,938,11,25,19,29,4,3.65,5.0,fr,42212,18,1766901,1,1,Active Shallow Crust,128.9013,89.96352,0.0,11/25/0938 +7.83701,46.28504,6940,12,17,4,21,12,3.75,5.0,fr,42213,138,1766904,1,1,Active Shallow Crust,0.0,89.98893,0.0,12/17/6940 +7.83701,46.28504,170,9,30,6,43,34,3.75,15.0,fr,42214,3,1766905,1,5,Active Shallow Crust,0.0,89.98893,0.0,09/30/0170 +7.83701,46.28504,6164,8,1,13,12,13,3.75,15.0,fr,42215,123,1766905,1,5,Active Shallow Crust,0.0,89.98893,0.0,08/01/6164 +7.83701,46.28504,697,10,5,0,8,26,3.75,15.0,fr,42216,13,1766905,1,5,Active Shallow Crust,0.0,89.98893,0.0,10/05/0697 +7.83701,46.28504,1643,5,16,3,36,45,3.75,15.0,fr,42217,32,1766905,1,5,Active Shallow Crust,0.0,89.98893,0.0,05/16/1643 +7.83701,46.28504,2538,4,5,3,24,38,3.75,15.0,fr,42218,50,1766905,1,5,Active Shallow Crust,0.0,89.98893,0.0,04/05/2538 +7.83701,46.28504,3576,6,7,18,40,18,3.75,5.0,fr,42219,71,1766907,1,1,Active Shallow Crust,240.0076,58.01754,0.0,06/07/3576 +7.83701,46.28504,217,11,20,20,19,40,3.75,5.0,fr,42220,4,1766913,1,3,Active Shallow Crust,128.8959,89.96748,0.0,11/20/0217 +7.83701,46.28504,2928,12,26,20,57,50,3.75,5.0,fr,42221,58,1766913,1,3,Active Shallow Crust,128.8959,89.96748,0.0,12/26/2928 +7.83701,46.28504,3099,5,17,14,14,0,3.75,5.0,fr,42222,61,1766913,1,3,Active Shallow Crust,128.8959,89.96748,0.0,05/17/3099 +7.83701,46.28504,146,6,6,17,23,22,3.85,5.0,fr,42223,2,1766916,1,3,Active Shallow Crust,0.0,89.99014,0.0,06/06/0146 +7.83701,46.28504,4543,10,26,20,45,2,3.85,5.0,fr,42224,90,1766916,1,3,Active Shallow Crust,0.0,89.99014,0.0,10/26/4543 +7.83701,46.28504,7421,11,29,5,57,10,3.85,5.0,fr,42225,148,1766916,1,3,Active Shallow Crust,0.0,89.99014,0.0,11/29/7421 +7.83701,46.28504,9617,3,3,16,40,42,3.85,15.0,fr,42226,192,1766920,1,1,Active Shallow Crust,240.0107,57.99696,0.0,03/03/9617 +7.83701,46.28504,956,7,7,3,24,18,3.85,5.0,fr,42227,19,1766922,1,1,Active Shallow Crust,0.0,89.99002,-90.0,07/07/0956 +7.83701,46.28504,199,8,14,9,50,19,3.85,15.0,fr,42228,3,1766923,1,1,Active Shallow Crust,0.0,89.99002,-90.0,08/14/0199 +7.83701,46.28504,30,5,17,9,0,42,3.85,27.5,fr,42229,0,1766924,1,1,Active Shallow Crust,0.0,89.99002,-90.0,05/17/0030 +7.83701,46.28504,6139,5,14,13,37,18,3.85,5.0,fr,42230,122,1766925,1,1,Active Shallow Crust,128.8949,89.99506,0.0,05/14/6139 +7.83701,46.28504,3265,12,20,5,5,34,3.95,5.0,fr,42231,65,1766928,1,3,Active Shallow Crust,0.0,89.9912,0.0,12/20/3265 +7.83701,46.28504,8549,4,26,15,9,59,3.95,5.0,fr,42232,170,1766928,1,3,Active Shallow Crust,0.0,89.9912,0.0,04/26/8549 +7.83701,46.28504,3881,10,12,13,35,38,3.95,5.0,fr,42233,77,1766928,1,3,Active Shallow Crust,0.0,89.9912,0.0,10/12/3881 +7.83701,46.28504,9534,5,9,11,59,22,3.95,15.0,fr,42234,190,1766929,1,1,Active Shallow Crust,0.0,89.9912,0.0,05/09/9534 +7.83701,46.28504,4605,12,31,7,8,27,3.95,5.0,fr,42235,92,1766934,1,2,Active Shallow Crust,0.0,89.9911,-90.0,12/31/4605 +7.83701,46.28504,2811,10,26,10,54,54,3.95,5.0,fr,42236,56,1766934,1,2,Active Shallow Crust,0.0,89.9911,-90.0,10/26/2811 +7.83701,46.28504,5983,11,30,23,45,30,3.95,5.0,fr,42237,119,1766937,1,1,Active Shallow Crust,128.8994,89.99341,0.0,11/30/5983 +7.83701,46.28504,4345,8,6,13,30,38,3.95,15.0,fr,42238,86,1766938,1,2,Active Shallow Crust,128.8994,89.99341,0.0,08/06/4345 +7.83701,46.28504,9129,5,2,21,34,43,3.95,15.0,fr,42239,182,1766938,1,2,Active Shallow Crust,128.8994,89.99341,0.0,05/02/9129 +7.83701,46.28504,1489,9,6,23,1,5,4.05,5.0,fr,42240,29,1766940,1,3,Active Shallow Crust,0.0,89.98824,0.0,09/06/1489 +7.83701,46.28504,7395,12,9,0,25,33,4.05,5.0,fr,42241,147,1766940,1,3,Active Shallow Crust,0.0,89.98824,0.0,12/09/7395 +7.83701,46.28504,2455,1,11,18,38,48,4.05,5.0,fr,42242,49,1766940,1,3,Active Shallow Crust,0.0,89.98824,0.0,01/11/2455 +7.83701,46.28504,4541,7,1,15,49,44,4.05,15.0,fr,42243,90,1766941,1,1,Active Shallow Crust,0.0,89.98824,0.0,07/01/4541 +7.83701,46.28504,7489,5,12,13,58,12,4.15,5.0,fr,42244,149,1766952,1,3,Active Shallow Crust,0.0,89.98952,0.0,05/12/7489 +7.83701,46.28504,3521,4,5,4,42,7,4.15,5.0,fr,42245,70,1766952,1,3,Active Shallow Crust,0.0,89.98952,0.0,04/05/3521 +7.83701,46.28504,4162,3,13,6,48,53,4.15,5.0,fr,42246,83,1766952,1,3,Active Shallow Crust,0.0,89.98952,0.0,03/13/4162 +7.83701,46.28504,6364,12,24,8,42,6,4.15,5.0,fr,42247,127,1766955,1,1,Active Shallow Crust,240.0089,57.99715,0.0,12/24/6364 +7.83701,46.28504,6721,10,15,19,19,59,4.15,27.5,fr,42248,134,1766957,1,1,Active Shallow Crust,240.0089,57.99712,0.0,10/15/6721 +7.83701,46.28504,2262,7,13,23,1,50,4.15,5.0,fr,42249,45,1766958,1,1,Active Shallow Crust,0.0,89.9894,-90.0,07/13/2262 +7.83701,46.28504,1319,12,23,16,25,51,4.15,27.5,fr,42250,26,1766960,1,1,Active Shallow Crust,0.0,89.9894,-90.0,12/23/1319 +7.83701,46.28504,3870,2,26,3,41,18,4.15,5.0,fr,42251,77,1766961,1,1,Active Shallow Crust,128.8966,89.99476,0.0,02/26/3870 +7.83701,46.28504,5170,5,2,4,18,6,4.25,5.0,fr,42252,103,1766964,1,6,Active Shallow Crust,0.0,89.99066,0.0,05/02/5170 +7.83701,46.28504,3046,2,24,2,5,15,4.25,5.0,fr,42253,60,1766964,1,6,Active Shallow Crust,0.0,89.99066,0.0,02/24/3046 +7.83701,46.28504,3261,7,9,16,28,11,4.25,5.0,fr,42254,65,1766964,1,6,Active Shallow Crust,0.0,89.99066,0.0,07/09/3261 +7.83701,46.28504,4311,6,26,5,21,21,4.25,5.0,fr,42255,86,1766964,1,6,Active Shallow Crust,0.0,89.99066,0.0,06/26/4311 +7.83701,46.28504,9458,10,30,15,13,23,4.25,5.0,fr,42256,189,1766964,1,6,Active Shallow Crust,0.0,89.99066,0.0,10/30/9458 +7.83701,46.28504,5431,7,24,5,42,7,4.25,5.0,fr,42257,108,1766964,1,6,Active Shallow Crust,0.0,89.99066,0.0,07/24/5431 +7.83701,46.28504,8611,12,28,18,13,46,4.25,15.0,fr,42258,172,1766965,1,1,Active Shallow Crust,0.0,89.99066,0.0,12/28/8611 +7.83701,46.28504,8405,9,22,21,40,39,4.35,5.0,fr,42259,168,1766976,1,1,Active Shallow Crust,0.0,89.9889,0.0,09/22/8405 +7.83701,46.28504,8616,2,25,9,38,42,4.35,5.0,fr,42260,172,1766985,1,1,Active Shallow Crust,128.8985,89.98251,0.0,02/25/8616 +7.83701,46.28504,2156,9,8,9,42,38,4.45,5.0,fr,42261,43,1766988,1,1,Active Shallow Crust,0.0,89.99011,0.0,09/08/2156 +7.83701,46.28504,4409,7,4,23,35,11,4.45,15.0,fr,42262,88,1766989,1,1,Active Shallow Crust,0.0,89.99011,0.0,07/04/4409 +7.83701,46.28504,6204,2,29,10,35,13,4.45,15.0,fr,42263,124,1766995,1,1,Active Shallow Crust,0.0,89.99,-90.0,02/29/6204 +7.83701,46.28504,8230,10,15,16,41,13,4.55,15.0,fr,42264,164,1767004,1,1,Active Shallow Crust,240.0092,57.99753,0.0,10/15/8230 +7.83701,46.28504,1025,2,28,20,13,28,4.65,5.0,fr,42265,20,1767012,1,2,Active Shallow Crust,0.0,89.99018,0.0,02/28/1025 +7.83701,46.28504,6323,4,22,18,35,48,4.65,5.0,fr,42266,126,1767012,1,2,Active Shallow Crust,0.0,89.99018,0.0,04/22/6323 +7.83701,46.28504,2693,2,5,6,54,26,4.75,5.0,fr,42267,53,1767024,1,1,Active Shallow Crust,0.0,89.98949,0.0,02/05/2693 +7.83701,46.28504,9461,1,10,0,4,45,4.85,5.0,fr,42268,189,1767036,1,1,Active Shallow Crust,0.0,89.99064,0.0,01/10/9461 +7.83701,46.28504,8851,6,9,23,24,24,4.95,5.0,fr,42269,177,1767048,1,1,Active Shallow Crust,0.0,89.99026,0.0,06/09/8851 +7.83701,46.28504,528,10,27,21,8,27,5.15,5.0,fr,42270,10,1767072,1,3,Active Shallow Crust,0.0,89.99006,0.0,10/27/0528 +7.83701,46.28504,5504,11,4,21,5,29,5.15,5.0,fr,42271,110,1767072,1,3,Active Shallow Crust,0.0,89.99006,0.0,11/04/5504 +7.83701,46.28504,368,5,1,7,22,15,5.15,5.0,fr,42272,7,1767072,1,3,Active Shallow Crust,0.0,89.99006,0.0,05/01/0368 +7.83701,46.28504,9614,12,30,2,31,15,5.25,5.0,fr,42273,192,1767084,1,1,Active Shallow Crust,0.0,89.99015,0.0,12/30/9614 +7.83701,46.28504,2631,3,11,5,14,9,5.55,5.0,fr,42274,52,1767120,1,1,Active Shallow Crust,0.0,89.99024,0.0,03/11/2631 +7.83701,46.28504,4259,11,25,9,9,8,6.15,15.0,fr,42275,85,1767193,1,1,Active Shallow Crust,0.0,89.98986,0.0,11/25/4259 +3.90714,43.01354,393,1,11,16,49,52,3.55,5.0,fr,42276,7,1767360,1,1,Active Shallow Crust,0.0,89.98894,0.0,01/11/0393 +3.90714,43.01354,3575,9,9,7,40,45,3.85,15.0,fr,42277,71,1767397,1,1,Active Shallow Crust,0.0,89.98956,0.0,09/09/3575 +3.90714,43.01354,4069,8,23,3,57,54,3.85,27.5,fr,42278,81,1767398,1,1,Active Shallow Crust,0.0,89.98956,0.0,08/23/4069 +3.90714,43.01354,7812,6,5,19,58,31,5.35,5.0,fr,42279,156,1767585,1,1,Active Shallow Crust,128.8851,89.99194,0.0,06/05/7812 +4.14918,47.10776,1067,6,27,7,7,12,3.55,5.0,fr,42280,21,1767840,1,1,Active Shallow Crust,0.0,89.99313,0.0,06/27/1067 +4.14918,47.10776,1815,12,23,23,36,42,3.85,5.0,fr,42281,36,1767876,1,1,Active Shallow Crust,0.0,89.99028,0.0,12/23/1815 +4.14918,47.10776,8151,4,25,8,39,17,3.85,15.0,fr,42282,163,1767877,1,1,Active Shallow Crust,0.0,89.99028,0.0,04/25/8151 +4.14918,47.10776,5424,2,19,23,58,15,4.05,5.0,fr,42283,108,1767906,1,1,Active Shallow Crust,0.0,89.98829,-90.0,02/19/5424 +4.14918,47.10776,614,12,21,16,35,55,4.15,15.0,fr,42284,12,1767913,1,1,Active Shallow Crust,0.0,89.98968,0.0,12/21/0614 +4.14918,47.10776,4743,4,3,1,54,22,4.35,5.0,fr,42285,94,1767939,1,1,Active Shallow Crust,240.0081,57.99612,0.0,04/03/4743 +4.14918,47.10776,6650,2,8,7,54,53,4.75,15.0,fr,42286,132,1767991,1,1,Active Shallow Crust,0.0,89.98953,-90.0,02/08/6650 +4.14918,47.10776,3753,7,16,4,27,44,4.85,5.0,fr,42287,75,1767996,1,1,Active Shallow Crust,0.0,89.98924,0.0,07/16/3753 +4.14918,47.10776,3633,9,27,15,30,34,4.95,5.0,fr,42288,72,1768011,1,1,Active Shallow Crust,240.0121,58.00454,0.0,09/27/3633 +3.86608,53.33907,9155,2,17,14,26,14,3.55,5.0,fr,42289,183,1768800,1,1,Active Shallow Crust,0.0,89.99097,0.0,02/17/9155 +3.86608,53.33907,9740,9,4,3,11,42,3.75,5.0,fr,42290,194,1768824,1,1,Active Shallow Crust,0.0,89.99043,0.0,09/04/9740 +3.86608,53.33907,4007,9,23,17,20,22,4.05,5.0,fr,42291,80,1768860,1,1,Active Shallow Crust,0.0,89.98985,0.0,09/23/4007 +2.55747,41.87352,9790,8,15,1,46,56,3.55,5.0,fr,42292,195,1769280,1,6,Active Shallow Crust,0.0,89.98874,0.0,08/15/9790 +2.55747,41.87352,4604,1,13,13,49,33,3.55,5.0,fr,42293,92,1769280,1,6,Active Shallow Crust,0.0,89.98874,0.0,01/13/4604 +2.55747,41.87352,5081,5,30,15,56,17,3.55,5.0,fr,42294,101,1769280,1,6,Active Shallow Crust,0.0,89.98874,0.0,05/30/5081 +2.55747,41.87352,3528,10,9,5,26,42,3.55,5.0,fr,42295,70,1769280,1,6,Active Shallow Crust,0.0,89.98874,0.0,10/09/3528 +2.55747,41.87352,9764,11,10,17,27,47,3.55,5.0,fr,42296,195,1769280,1,6,Active Shallow Crust,0.0,89.98874,0.0,11/10/9764 +2.55747,41.87352,7390,4,27,4,31,34,3.55,5.0,fr,42297,147,1769280,1,6,Active Shallow Crust,0.0,89.98874,0.0,04/27/7390 +2.55747,41.87352,9946,7,2,3,7,35,3.55,15.0,fr,42298,198,1769281,1,1,Active Shallow Crust,0.0,89.98874,0.0,07/02/9946 +2.55747,41.87352,1403,11,30,10,51,33,3.55,27.5,fr,42299,28,1769282,1,2,Active Shallow Crust,0.0,89.98874,0.0,11/30/1403 +2.55747,41.87352,6459,8,25,5,37,26,3.55,27.5,fr,42300,129,1769282,1,2,Active Shallow Crust,0.0,89.98874,0.0,08/25/6459 +2.55747,41.87352,4816,10,30,19,18,58,3.65,5.0,fr,42301,96,1769292,1,2,Active Shallow Crust,0.0,89.98996,0.0,10/30/4816 +2.55747,41.87352,117,11,6,23,19,2,3.65,5.0,fr,42302,2,1769292,1,2,Active Shallow Crust,0.0,89.98996,0.0,11/06/0117 +2.55747,41.87352,4266,8,23,6,34,1,3.65,15.0,fr,42303,85,1769293,1,1,Active Shallow Crust,0.0,89.98996,0.0,08/23/4266 +2.55747,41.87352,7212,2,20,13,11,59,3.75,5.0,fr,42304,144,1769304,1,2,Active Shallow Crust,0.0,89.99105,0.0,02/20/7212 +2.55747,41.87352,9506,3,5,13,56,37,3.75,5.0,fr,42305,190,1769304,1,2,Active Shallow Crust,0.0,89.99105,0.0,03/05/9506 +2.55747,41.87352,7796,10,17,16,31,43,3.75,15.0,fr,42306,155,1769305,1,2,Active Shallow Crust,0.0,89.99105,0.0,10/17/7796 +2.55747,41.87352,4573,10,4,12,41,30,3.75,15.0,fr,42307,91,1769305,1,2,Active Shallow Crust,0.0,89.99105,0.0,10/04/4573 +2.55747,41.87352,2452,7,8,13,7,27,3.75,15.0,fr,42308,49,1769308,1,1,Active Shallow Crust,240.0075,58.01757,0.0,07/08/2452 +2.55747,41.87352,2368,4,22,12,3,46,3.75,5.0,fr,42309,47,1769310,1,2,Active Shallow Crust,0.0,89.99095,-90.0,04/22/2368 +2.55747,41.87352,9172,6,23,17,0,14,3.75,5.0,fr,42310,183,1769310,1,2,Active Shallow Crust,0.0,89.99095,-90.0,06/23/9172 +2.55747,41.87352,2009,8,1,9,38,23,3.85,5.0,fr,42311,40,1769316,1,3,Active Shallow Crust,0.0,89.98936,0.0,08/01/2009 +2.55747,41.87352,7128,8,23,6,42,18,3.85,5.0,fr,42312,142,1769316,1,3,Active Shallow Crust,0.0,89.98936,0.0,08/23/7128 +2.55747,41.87352,5672,7,22,15,27,56,3.85,5.0,fr,42313,113,1769316,1,3,Active Shallow Crust,0.0,89.98936,0.0,07/22/5672 +2.55747,41.87352,1648,12,4,13,44,54,3.95,5.0,fr,42314,32,1769328,1,1,Active Shallow Crust,0.0,89.99052,0.0,12/04/1648 +2.55747,41.87352,4054,2,18,8,14,36,3.95,27.5,fr,42315,81,1769330,1,1,Active Shallow Crust,0.0,89.99052,0.0,02/18/4054 +2.55747,41.87352,9985,2,28,9,44,24,3.95,5.0,fr,42316,199,1769331,1,1,Active Shallow Crust,240.0192,58.00492,0.0,02/28/9985 +2.55747,41.87352,4570,3,13,0,51,33,3.95,15.0,fr,42317,91,1769332,1,1,Active Shallow Crust,240.0192,58.00492,0.0,03/13/4570 +2.55747,41.87352,520,4,18,5,10,17,4.05,5.0,fr,42318,10,1769340,1,2,Active Shallow Crust,0.0,89.98944,0.0,04/18/0520 +2.55747,41.87352,2833,1,23,9,46,20,4.05,5.0,fr,42319,56,1769340,1,2,Active Shallow Crust,0.0,89.98944,0.0,01/23/2833 +2.55747,41.87352,2107,5,3,18,35,24,4.05,27.5,fr,42320,42,1769342,1,1,Active Shallow Crust,0.0,89.98944,0.0,05/03/2107 +2.55747,41.87352,6546,7,18,20,18,11,4.15,5.0,fr,42321,130,1769352,1,1,Active Shallow Crust,0.0,89.99059,0.0,07/18/6546 +2.55747,41.87352,4598,12,10,22,26,25,4.25,15.0,fr,42322,91,1769365,1,1,Active Shallow Crust,0.0,89.98994,0.0,12/10/4598 +2.55747,41.87352,9249,10,19,1,11,59,4.35,15.0,fr,42323,184,1769377,1,1,Active Shallow Crust,0.0,89.98954,0.0,10/19/9249 +2.55747,41.87352,5224,11,26,3,54,58,4.45,5.0,fr,42324,104,1769388,1,1,Active Shallow Crust,0.0,89.98934,0.0,11/26/5224 +2.55747,41.87352,1986,5,2,10,10,52,4.45,5.0,fr,42325,39,1769397,1,1,Active Shallow Crust,128.893,89.99334,0.0,05/02/1986 +2.55747,41.87352,7975,7,14,13,49,13,4.55,5.0,fr,42326,159,1769400,1,2,Active Shallow Crust,0.0,89.9905,0.0,07/14/7975 +2.55747,41.87352,5917,5,27,13,18,43,4.55,5.0,fr,42327,118,1769400,1,2,Active Shallow Crust,0.0,89.9905,0.0,05/27/5917 +2.55747,41.87352,7645,11,30,11,38,47,4.55,15.0,fr,42328,152,1769404,1,1,Active Shallow Crust,240.0081,57.9971,0.0,11/30/7645 +2.55747,41.87352,1785,10,19,13,0,43,5.15,5.0,fr,42329,35,1769475,1,1,Active Shallow Crust,240.0172,57.99947,0.0,10/19/1785 +2.55747,41.87352,4765,8,5,10,50,58,5.25,5.0,fr,42330,95,1769484,1,1,Active Shallow Crust,0.0,89.98992,0.0,08/05/4765 +2.55747,41.87352,7280,7,26,0,9,27,5.45,5.0,fr,42331,145,1769508,1,1,Active Shallow Crust,0.0,89.98988,0.0,07/26/7280 +5.55557,43.23945,1948,1,16,19,25,59,3.55,5.0,fr,42332,38,1769763,1,1,Active Shallow Crust,240.0127,57.99673,0.0,01/16/1948 +5.55557,43.23945,1668,11,26,18,30,33,3.65,5.0,fr,42333,33,1769772,1,1,Active Shallow Crust,0.0,89.98691,0.0,11/26/1668 +5.55557,43.23945,7319,1,10,2,44,24,3.75,27.5,fr,42334,146,1769786,1,2,Active Shallow Crust,0.0,89.98833,0.0,01/10/7319 +5.55557,43.23945,4819,12,5,0,13,19,3.75,27.5,fr,42335,96,1769786,1,2,Active Shallow Crust,0.0,89.98833,0.0,12/05/4819 +5.55557,43.23945,2884,5,14,19,49,8,3.75,15.0,fr,42336,57,1769791,1,1,Active Shallow Crust,0.0,89.9882,-90.0,05/14/2884 +5.55557,43.23945,5510,2,7,3,35,43,3.95,5.0,fr,42337,110,1769808,1,1,Active Shallow Crust,0.0,89.99073,0.0,02/07/5510 +5.55557,43.23945,4215,9,10,13,53,43,5.05,27.5,fr,42338,84,1769942,1,1,Active Shallow Crust,0.0,89.98955,0.0,09/10/4215 +2.59349,49.48398,6749,2,11,7,3,9,3.65,5.0,fr,42339,134,1770255,1,1,Active Shallow Crust,240.0016,58.01307,0.0,02/11/6749 +6.33635,45.19384,1203,12,19,6,18,4,3.55,5.0,fr,42340,24,1770720,1,1,Active Shallow Crust,0.0,89.9929,0.0,12/19/1203 +6.33635,45.19384,3904,9,11,19,49,58,3.55,15.0,fr,42341,78,1770721,1,2,Active Shallow Crust,0.0,89.9929,0.0,09/11/3904 +6.33635,45.19384,8374,10,3,16,35,51,3.55,15.0,fr,42342,167,1770721,1,2,Active Shallow Crust,0.0,89.9929,0.0,10/03/8374 +6.33635,45.19384,2326,2,7,23,29,30,3.55,5.0,fr,42343,46,1770723,1,1,Active Shallow Crust,240.0111,57.99906,0.0,02/07/2326 +6.33635,45.19384,79,4,14,11,33,3,3.55,15.0,fr,42344,1,1770730,1,1,Active Shallow Crust,128.8967,89.9929,0.0,04/14/0079 +6.33635,45.19384,9263,3,6,16,37,33,3.65,5.0,fr,42345,185,1770732,1,1,Active Shallow Crust,0.0,89.98734,0.0,03/06/9263 +6.33635,45.19384,9999,6,22,21,25,36,3.65,5.0,fr,42346,199,1770735,1,1,Active Shallow Crust,240.0016,58.01276,0.0,06/22/9999 +6.33635,45.19384,8029,4,20,14,20,26,3.75,5.0,fr,42347,160,1770744,1,1,Active Shallow Crust,0.0,89.98871,0.0,04/20/8029 +6.33635,45.19384,6441,9,27,2,51,15,3.75,27.5,fr,42348,128,1770746,1,1,Active Shallow Crust,0.0,89.98871,0.0,09/27/6441 +6.33635,45.19384,2144,9,13,15,18,17,3.75,15.0,fr,42349,42,1770748,1,1,Active Shallow Crust,240.0089,58.01734,0.0,09/13/2144 +6.33635,45.19384,1242,10,14,5,11,10,3.75,15.0,fr,42350,24,1770751,1,1,Active Shallow Crust,0.0,89.98858,-90.0,10/14/1242 +6.33635,45.19384,5354,9,30,13,26,41,3.85,5.0,fr,42351,107,1770756,1,1,Active Shallow Crust,0.0,89.98994,0.0,09/30/5354 +6.33635,45.19384,5600,3,20,22,34,46,3.85,15.0,fr,42352,111,1770760,1,1,Active Shallow Crust,240.0097,57.99788,0.0,03/20/5600 +6.33635,45.19384,3871,3,30,17,49,49,3.95,15.0,fr,42353,77,1770769,1,2,Active Shallow Crust,0.0,89.99104,0.0,03/30/3871 +6.33635,45.19384,3873,4,15,18,11,43,3.95,15.0,fr,42354,77,1770769,1,2,Active Shallow Crust,0.0,89.99104,0.0,04/15/3873 +6.33635,45.19384,259,9,18,4,6,23,4.05,5.0,fr,42355,5,1770780,1,1,Active Shallow Crust,0.0,89.98801,0.0,09/18/0259 +6.33635,45.19384,5377,6,11,0,40,43,4.45,5.0,fr,42356,107,1770828,1,1,Active Shallow Crust,0.0,89.98991,0.0,06/11/5377 +6.33635,45.19384,9197,9,22,14,16,5,4.45,15.0,fr,42357,183,1770829,1,1,Active Shallow Crust,0.0,89.98991,0.0,09/22/9197 +6.33635,45.19384,7977,8,10,18,8,23,4.55,27.5,fr,42358,159,1770842,1,1,Active Shallow Crust,0.0,89.99101,0.0,08/10/7977 +6.33635,45.19384,1516,7,11,11,55,56,4.65,15.0,fr,42359,30,1770856,1,1,Active Shallow Crust,240.0105,57.99414,0.0,07/11/1516 +6.33635,45.19384,6767,5,19,20,57,0,4.75,5.0,fr,42360,135,1770867,1,1,Active Shallow Crust,240.0072,58.00446,0.0,05/19/6767 +6.33635,45.19384,7369,9,22,4,16,14,5.65,5.0,fr,42361,147,1770972,1,1,Active Shallow Crust,0.0,89.98986,0.0,09/22/7369 +6.33635,45.19384,8186,4,15,16,13,28,5.75,15.0,fr,42362,163,1770988,1,1,Active Shallow Crust,240.0397,57.99924,0.0,04/15/8186 +8.5167,50.55102,8693,4,28,8,32,0,3.55,5.0,fr,42363,173,1771680,1,1,Active Shallow Crust,0.0,89.98718,0.0,04/28/8693 +8.5167,50.55102,1531,8,3,0,58,45,3.55,15.0,fr,42364,30,1771690,1,1,Active Shallow Crust,128.8986,89.99359,0.0,08/03/1531 +8.5167,50.55102,4239,4,3,16,10,18,3.65,5.0,fr,42365,84,1771692,1,1,Active Shallow Crust,0.0,89.98858,0.0,04/03/4239 +8.5167,50.55102,5544,7,1,19,21,48,3.85,5.0,fr,42366,110,1771722,1,1,Active Shallow Crust,0.0,89.99082,-90.0,07/01/5544 +8.5167,50.55102,1026,4,15,20,22,20,3.95,5.0,fr,42367,20,1771728,1,1,Active Shallow Crust,0.0,89.99191,0.0,04/15/1026 +8.5167,50.55102,8580,11,13,3,24,48,4.85,5.0,fr,42368,171,1771836,1,1,Active Shallow Crust,0.0,89.99139,0.0,11/13/8580 +2.25765,41.28853,5564,1,15,1,57,59,3.55,5.0,fr,42369,111,1772640,1,3,Active Shallow Crust,0.0,89.98863,0.0,01/15/5564 +2.25765,41.28853,5064,10,21,6,21,25,3.55,5.0,fr,42370,101,1772640,1,3,Active Shallow Crust,0.0,89.98863,0.0,10/21/5064 +2.25765,41.28853,1987,9,18,1,36,32,3.55,5.0,fr,42371,39,1772640,1,3,Active Shallow Crust,0.0,89.98863,0.0,09/18/1987 +2.25765,41.28853,9871,4,26,12,49,51,3.55,27.5,fr,42372,197,1772645,1,1,Active Shallow Crust,240.011,57.99826,0.0,04/26/9871 +2.25765,41.28853,7303,3,28,4,12,1,3.55,5.0,fr,42373,146,1772646,1,1,Active Shallow Crust,0.0,89.9885,-90.0,03/28/7303 +2.25765,41.28853,4176,3,18,3,22,37,3.65,5.0,fr,42374,83,1772652,1,2,Active Shallow Crust,0.0,89.98987,0.0,03/18/4176 +2.25765,41.28853,3177,9,9,15,58,0,3.65,5.0,fr,42375,63,1772652,1,2,Active Shallow Crust,0.0,89.98987,0.0,09/09/3177 +2.25765,41.28853,316,8,18,2,16,30,3.65,5.0,fr,42376,6,1772655,1,1,Active Shallow Crust,240.0005,58.01222,0.0,08/18/0316 +2.25765,41.28853,3198,10,11,16,51,15,3.65,5.0,fr,42377,63,1772661,1,1,Active Shallow Crust,128.901,89.96342,0.0,10/11/3198 +2.25765,41.28853,2639,7,18,23,52,34,3.65,15.0,fr,42378,52,1772662,1,1,Active Shallow Crust,128.901,89.96342,0.0,07/18/2639 +2.25765,41.28853,7868,7,6,11,47,26,3.75,5.0,fr,42379,157,1772664,1,2,Active Shallow Crust,0.0,89.99097,0.0,07/06/7868 +2.25765,41.28853,4314,4,26,7,37,55,3.75,5.0,fr,42380,86,1772664,1,2,Active Shallow Crust,0.0,89.99097,0.0,04/26/4314 +2.25765,41.28853,8170,3,27,0,0,11,3.75,5.0,fr,42381,163,1772667,1,1,Active Shallow Crust,240.0075,58.01769,0.0,03/27/8170 +2.25765,41.28853,6556,12,17,8,13,33,3.75,5.0,fr,42382,131,1772670,1,1,Active Shallow Crust,0.0,89.99087,-90.0,12/17/6556 +2.25765,41.28853,399,4,24,2,42,48,3.85,5.0,fr,42383,7,1772676,1,1,Active Shallow Crust,0.0,89.98927,0.0,04/24/0399 +2.25765,41.28853,8169,6,29,5,8,24,4.15,15.0,fr,42384,163,1772713,1,1,Active Shallow Crust,0.0,89.99051,0.0,06/29/8169 +2.25765,41.28853,9015,12,17,7,46,59,4.25,5.0,fr,42385,180,1772724,1,1,Active Shallow Crust,0.0,89.98985,0.0,12/17/9015 +2.25765,41.28853,9959,4,9,12,29,16,4.25,5.0,fr,42386,199,1772727,1,1,Active Shallow Crust,240.0065,57.99388,0.0,04/09/9959 +2.25765,41.28853,367,4,20,3,24,50,4.25,15.0,fr,42387,7,1772728,1,1,Active Shallow Crust,240.0065,57.99388,0.0,04/20/0367 +2.25765,41.28853,2295,2,28,8,51,53,4.45,27.5,fr,42388,45,1772750,1,1,Active Shallow Crust,0.0,89.99059,0.0,02/28/2295 +2.25765,41.28853,8423,7,31,4,31,51,4.65,27.5,fr,42389,168,1772774,1,1,Active Shallow Crust,0.0,89.99039,0.0,07/31/8423 +2.25765,41.28853,3538,6,3,11,44,8,4.65,5.0,fr,42390,70,1772775,1,1,Active Shallow Crust,240.0095,57.99394,0.0,06/03/3538 +2.25765,41.28853,1915,2,23,10,47,25,4.75,5.0,fr,42391,38,1772784,1,1,Active Shallow Crust,0.0,89.98953,0.0,02/23/1915 +2.25765,41.28853,1113,5,24,13,48,38,5.75,5.0,fr,42392,22,1772910,1,1,Active Shallow Crust,0.0,89.98995,-90.0,05/24/1113 +0.79379,46.75364,3869,6,12,11,55,21,3.65,5.0,fr,42393,77,1773612,1,1,Active Shallow Crust,0.0,89.98999,0.0,06/12/3869 +0.79379,46.75364,8677,5,30,19,23,24,3.65,15.0,fr,42394,173,1773613,1,1,Active Shallow Crust,0.0,89.98999,0.0,05/30/8677 +0.79379,46.75364,6424,4,21,4,31,4,3.65,5.0,fr,42395,128,1773618,1,1,Active Shallow Crust,0.0,89.98988,-90.0,04/21/6424 +0.79379,46.75364,2649,11,3,12,13,35,3.75,5.0,fr,42396,52,1773624,1,3,Active Shallow Crust,0.0,89.98971,0.0,11/03/2649 +0.79379,46.75364,9672,11,30,22,6,15,3.75,5.0,fr,42397,193,1773624,1,3,Active Shallow Crust,0.0,89.98971,0.0,11/30/9672 +0.79379,46.75364,2337,9,4,9,28,16,3.75,5.0,fr,42398,46,1773624,1,3,Active Shallow Crust,0.0,89.98971,0.0,09/04/2337 +0.79379,46.75364,6448,3,10,12,9,11,3.75,5.0,fr,42399,128,1773630,1,1,Active Shallow Crust,0.0,89.99029,-90.0,03/10/6448 +0.79379,46.75364,1608,11,22,4,59,43,3.85,5.0,fr,42400,32,1773636,1,1,Active Shallow Crust,0.0,89.99022,0.0,11/22/1608 +0.79379,46.75364,1542,2,28,16,18,46,3.95,5.0,fr,42401,30,1773648,1,3,Active Shallow Crust,0.0,89.99019,0.0,02/28/1542 +0.79379,46.75364,8585,9,5,23,13,1,3.95,5.0,fr,42402,171,1773648,1,3,Active Shallow Crust,0.0,89.99019,0.0,09/05/8585 +0.79379,46.75364,2124,8,20,5,17,33,3.95,5.0,fr,42403,42,1773648,1,3,Active Shallow Crust,0.0,89.99019,0.0,08/20/2124 +0.79379,46.75364,7636,9,3,9,10,18,3.95,15.0,fr,42404,152,1773652,1,1,Active Shallow Crust,240.0199,58.00497,0.0,09/03/7636 +0.79379,46.75364,8430,10,22,8,38,2,4.05,5.0,fr,42405,168,1773660,1,2,Active Shallow Crust,0.0,89.9898,0.0,10/22/8430 +0.79379,46.75364,1224,11,7,13,25,51,4.05,5.0,fr,42406,24,1773660,1,2,Active Shallow Crust,0.0,89.9898,0.0,11/07/1224 +0.79379,46.75364,3896,3,2,22,38,55,4.05,15.0,fr,42407,77,1773670,1,1,Active Shallow Crust,128.8905,89.99369,0.0,03/02/3896 +0.79379,46.75364,9639,1,6,1,52,4,4.15,5.0,fr,42408,192,1773672,1,2,Active Shallow Crust,0.0,89.99004,0.0,01/06/9639 +0.79379,46.75364,3188,11,19,15,40,17,4.15,5.0,fr,42409,63,1773672,1,2,Active Shallow Crust,0.0,89.99004,0.0,11/19/3188 +0.79379,46.75364,2214,1,10,19,54,4,4.55,15.0,fr,42410,44,1773721,1,1,Active Shallow Crust,0.0,89.98989,0.0,01/10/2214 +0.7937959,46.75364,7110,3,8,14,13,52,6.35,7.567806,fr,42411,142,1773936,1,1,Active Shallow Crust,360.0,89.99,0.0,03/08/7110 +6.77849,49.60983,7660,4,16,2,23,47,3.55,5.0,fr,42412,153,1774089,1,1,Active Shallow Crust,128.8954,89.99347,0.0,04/16/7660 +6.77849,49.60983,2899,2,2,23,53,29,3.75,5.0,fr,42413,57,1774113,1,1,Active Shallow Crust,128.8959,89.96754,0.0,02/02/2899 +6.77849,49.60983,3888,8,16,0,48,27,3.85,15.0,fr,42414,77,1774117,1,1,Active Shallow Crust,0.0,89.99075,0.0,08/16/3888 +6.77849,49.60983,6528,12,21,14,8,58,4.05,15.0,fr,42415,130,1774141,1,1,Active Shallow Crust,0.0,89.98898,0.0,12/21/6528 +2.33184,48.03395,5017,3,14,23,38,25,3.55,15.0,fr,42416,100,1774561,1,1,Active Shallow Crust,0.0,89.98988,0.0,03/14/5017 +2.33184,48.03395,7388,4,24,10,25,17,4.15,5.0,fr,42417,147,1774632,1,1,Active Shallow Crust,0.0,89.98986,0.0,04/24/7388 +-6.20373,47.45988,2435,6,25,22,12,31,4.05,5.0,fr,42418,48,1775103,1,1,Active Shallow Crust,240.0061,58.00585,0.0,06/25/2435 +3.82958,48.20801,9772,10,13,18,7,27,4.35,15.0,fr,42419,195,1775617,1,1,Active Shallow Crust,0.0,89.99064,0.0,10/13/9772 +-3.30799,42.38269,698,6,23,1,14,44,3.75,5.0,fr,42420,13,1776030,1,1,Active Shallow Crust,0.0,89.99102,-90.0,06/23/0698 +-3.30799,42.38269,2390,2,9,19,59,5,3.85,5.0,fr,42421,47,1776036,1,1,Active Shallow Crust,0.0,89.98946,0.0,02/09/2390 +-3.30799,42.38269,8783,6,30,0,49,49,4.05,5.0,fr,42422,175,1776060,1,1,Active Shallow Crust,0.0,89.98952,0.0,06/30/8783 +-3.30799,42.38269,4123,4,9,15,38,9,4.55,5.0,fr,42423,82,1776120,1,1,Active Shallow Crust,0.0,89.99058,0.0,04/09/4123 +4.13558,53.08932,4041,5,31,8,26,1,3.55,5.0,fr,42424,80,1776480,1,1,Active Shallow Crust,0.0,89.98788,0.0,05/31/4041 +3.40803,43.47234,6408,7,8,23,43,56,3.55,15.0,fr,42425,128,1776961,1,1,Active Shallow Crust,0.0,89.98902,0.0,07/08/6408 +3.40803,43.47234,6806,7,7,12,41,49,3.65,5.0,fr,42426,136,1776975,1,1,Active Shallow Crust,240.0012,58.01317,0.0,07/07/6806 +3.40803,43.47234,4561,6,16,23,50,46,3.75,5.0,fr,42427,91,1776984,1,1,Active Shallow Crust,0.0,89.99128,0.0,06/16/4561 +3.40803,43.47234,8367,10,6,23,2,29,4.05,5.0,fr,42428,167,1777020,1,1,Active Shallow Crust,0.0,89.98971,0.0,10/06/8367 +9.71158,49.5475,4091,6,29,2,51,44,3.55,5.0,fr,42429,81,1777440,1,1,Active Shallow Crust,0.0,89.98692,0.0,06/29/4091 +9.71158,49.5475,7981,6,28,6,43,14,3.55,5.0,fr,42430,159,1777446,1,1,Active Shallow Crust,0.0,89.98676,-90.0,06/28/7981 +9.71158,49.5475,7856,4,29,16,25,37,4.15,5.0,fr,42431,157,1777518,1,1,Active Shallow Crust,0.0,89.98673,-90.0,04/29/7856 +0.63434,44.99362,4724,3,11,12,40,51,3.55,5.0,fr,42432,94,1777920,1,1,Active Shallow Crust,0.0,89.9902,0.0,03/11/4724 +0.63434,44.99362,5197,1,19,16,24,17,3.65,5.0,fr,42433,103,1777935,1,1,Active Shallow Crust,240.0009,58.01289,0.0,01/19/5197 +0.63434,44.99362,889,3,8,7,29,33,3.85,5.0,fr,42434,17,1777956,1,1,Active Shallow Crust,0.0,89.98991,0.0,03/08/0889 +0.63434,44.99362,674,3,19,6,29,25,3.85,15.0,fr,42435,13,1777957,1,1,Active Shallow Crust,0.0,89.98991,0.0,03/19/0674 +0.63434,44.99362,834,9,15,13,52,28,4.95,5.0,fr,42436,16,1778091,1,1,Active Shallow Crust,240.0112,58.00431,0.0,09/15/0834 +0.63434,44.99362,8800,3,11,21,42,8,5.45,5.0,fr,42437,175,1778151,1,1,Active Shallow Crust,240.0276,57.99826,0.0,03/11/8800 +-0.33785,48.01467,1537,8,9,8,25,21,3.65,15.0,fr,42438,30,1778413,1,1,Active Shallow Crust,0.0,89.98985,0.0,08/09/1537 +-0.33785,48.01467,252,8,16,7,57,36,3.75,27.5,fr,42439,5,1778426,1,1,Active Shallow Crust,0.0,89.98995,0.0,08/16/0252 +-0.33785,48.01467,7649,3,25,0,18,49,3.85,15.0,fr,42440,152,1778443,1,1,Active Shallow Crust,0.0,89.99004,-90.0,03/25/7649 +-0.33785,48.01467,3851,10,13,23,26,56,3.85,5.0,fr,42441,77,1778445,1,1,Active Shallow Crust,128.8955,89.99374,0.0,10/13/3851 +-0.33785,48.01467,6675,10,10,10,53,10,3.95,5.0,fr,42442,133,1778457,1,1,Active Shallow Crust,128.9002,89.99361,0.0,10/10/6675 +-0.33785,48.01467,9082,12,10,15,4,23,4.15,5.0,fr,42443,181,1778472,1,1,Active Shallow Crust,0.0,89.99007,0.0,12/10/9082 +-0.33785,48.01467,842,6,30,14,42,28,4.25,5.0,fr,42444,16,1778484,1,1,Active Shallow Crust,0.0,89.99002,0.0,06/30/0842 +-0.33785,48.01467,2763,12,25,20,53,12,4.25,27.5,fr,42445,55,1778492,1,1,Active Shallow Crust,359.9999,89.9901,-90.0,12/25/2763 +-0.337844,48.01467,6328,8,20,8,51,35,6.35,7.567806,fr,42446,126,1778736,1,1,Active Shallow Crust,360.0,89.99,0.0,08/20/6328 +2.48469,45.56234,8667,8,9,8,38,15,3.65,5.0,fr,42447,173,1778892,1,2,Active Shallow Crust,0.0,89.99056,0.0,08/09/8667 +2.48469,45.56234,1104,10,28,11,32,40,3.65,5.0,fr,42448,22,1778892,1,2,Active Shallow Crust,0.0,89.99056,0.0,10/28/1104 +2.48469,45.56234,5850,10,2,16,55,57,3.75,5.0,fr,42449,116,1778904,1,1,Active Shallow Crust,0.0,89.98878,0.0,10/02/5850 +2.48469,45.56234,2694,9,1,18,52,56,3.75,5.0,fr,42450,53,1778907,1,1,Active Shallow Crust,240.0083,58.01755,0.0,09/01/2694 +2.48469,45.56234,5371,9,8,2,15,14,3.85,5.0,fr,42451,107,1778916,1,2,Active Shallow Crust,0.0,89.99001,0.0,09/08/5371 +2.48469,45.56234,5171,8,31,2,24,9,3.85,5.0,fr,42452,103,1778916,1,2,Active Shallow Crust,0.0,89.99001,0.0,08/31/5171 +2.48469,45.56234,1944,7,16,9,41,7,3.95,15.0,fr,42453,38,1778932,1,1,Active Shallow Crust,240.0197,58.00515,0.0,07/16/1944 +2.48469,45.56234,2481,10,22,21,50,57,4.05,15.0,fr,42454,49,1778944,1,1,Active Shallow Crust,240.0056,58.00601,0.0,10/22/2481 +2.48469,45.56234,8734,3,29,7,47,30,4.85,15.0,fr,42455,174,1779037,1,1,Active Shallow Crust,0.0,89.98972,0.0,03/29/8734 +-1.6658,45.47285,6987,7,11,18,46,49,3.75,5.0,fr,42456,139,1779384,1,1,Active Shallow Crust,0.0,89.99017,0.0,07/11/6987 +4.87506,51.70343,5011,4,26,18,47,35,3.65,27.5,fr,42457,100,1780340,1,1,Active Shallow Crust,0.0,89.98873,-90.0,04/26/5011 +2.50978,42.13418,6386,2,9,21,37,28,3.55,5.0,fr,42458,127,1780800,1,2,Active Shallow Crust,0.0,89.98878,0.0,02/09/6386 +2.50978,42.13418,5608,8,25,13,2,34,3.55,5.0,fr,42459,112,1780800,1,2,Active Shallow Crust,0.0,89.98878,0.0,08/25/5608 +2.50978,42.13418,1108,2,19,22,22,11,3.55,15.0,fr,42460,22,1780801,1,1,Active Shallow Crust,0.0,89.98878,0.0,02/19/1108 +2.50978,42.13418,5555,1,18,6,48,13,3.55,27.5,fr,42461,111,1780802,1,1,Active Shallow Crust,0.0,89.98878,0.0,01/18/5555 +2.50978,42.13418,2214,12,29,7,12,54,3.55,5.0,fr,42462,44,1780803,1,2,Active Shallow Crust,240.0121,57.99767,0.0,12/29/2214 +2.50978,42.13418,4506,12,7,4,21,25,3.55,5.0,fr,42463,90,1780803,1,2,Active Shallow Crust,240.0121,57.99767,0.0,12/07/4506 +2.50978,42.13418,1989,5,21,5,51,52,3.65,5.0,fr,42464,39,1780815,1,1,Active Shallow Crust,240.0012,58.01229,0.0,05/21/1989 +2.50978,42.13418,2402,10,29,21,1,26,3.65,5.0,fr,42465,48,1780821,1,2,Active Shallow Crust,128.9008,89.96344,0.0,10/29/2402 +2.50978,42.13418,432,9,10,8,45,50,3.65,5.0,fr,42466,8,1780821,1,2,Active Shallow Crust,128.9008,89.96344,0.0,09/10/0432 +2.50978,42.13418,5309,5,6,2,37,3,3.75,15.0,fr,42467,106,1780825,1,1,Active Shallow Crust,0.0,89.99109,0.0,05/06/5309 +2.50978,42.13418,777,11,21,20,15,37,3.85,5.0,fr,42468,15,1780836,1,2,Active Shallow Crust,0.0,89.98941,0.0,11/21/0777 +2.50978,42.13418,3746,2,4,22,32,33,3.85,5.0,fr,42469,74,1780836,1,2,Active Shallow Crust,0.0,89.98941,0.0,02/04/3746 +2.50978,42.13418,8928,10,1,11,51,32,4.05,5.0,fr,42470,178,1780860,1,2,Active Shallow Crust,0.0,89.98949,0.0,10/01/8928 +2.50978,42.13418,5447,4,4,16,0,18,4.05,5.0,fr,42471,108,1780860,1,2,Active Shallow Crust,0.0,89.98949,0.0,04/04/5447 +2.50978,42.13418,3185,8,26,13,7,9,4.05,5.0,fr,42472,63,1780866,1,1,Active Shallow Crust,0.0,89.98936,-90.0,08/26/3185 +2.50978,42.13418,7453,7,29,14,18,57,4.15,5.0,fr,42473,149,1780872,1,2,Active Shallow Crust,0.0,89.99063,0.0,07/29/7453 +2.50978,42.13418,9110,5,29,18,12,6,4.15,5.0,fr,42474,182,1780872,1,2,Active Shallow Crust,0.0,89.99063,0.0,05/29/9110 +2.50978,42.13418,1897,4,29,22,49,54,4.45,5.0,fr,42475,37,1780911,1,1,Active Shallow Crust,240.004,57.99442,0.0,04/29/1897 +2.50978,42.13418,8474,5,3,18,47,38,4.55,5.0,fr,42476,169,1780920,1,1,Active Shallow Crust,0.0,89.99054,0.0,05/03/8474 +2.50978,42.13418,5148,7,3,21,27,10,4.85,5.0,fr,42477,102,1780965,1,1,Active Shallow Crust,128.8939,89.98901,0.0,07/03/5148 +2.50978,42.13418,8507,5,14,23,7,3,5.15,5.0,fr,42478,170,1780992,1,1,Active Shallow Crust,0.0,89.98992,0.0,05/14/8507 +3.49593,45.32877,9418,8,5,7,47,59,3.55,27.5,fr,42479,188,1781762,1,1,Active Shallow Crust,0.0,89.98936,0.0,08/05/9418 +3.49593,45.32877,8279,7,1,23,44,30,3.55,5.0,fr,42480,165,1781769,1,2,Active Shallow Crust,128.8964,89.99468,0.0,07/01/8279 +3.49593,45.32877,5978,7,11,16,21,21,3.55,5.0,fr,42481,119,1781769,1,2,Active Shallow Crust,128.8964,89.99468,0.0,07/11/5978 +3.49593,45.32877,140,9,6,10,22,32,3.75,5.0,fr,42482,2,1781784,1,1,Active Shallow Crust,0.0,89.98874,0.0,09/06/0140 +3.49593,45.32877,8558,8,2,18,10,18,3.75,5.0,fr,42483,171,1781787,1,1,Active Shallow Crust,240.0084,58.0171,0.0,08/02/8558 +3.49593,45.32877,7251,12,13,4,10,43,3.85,15.0,fr,42484,145,1781806,1,1,Active Shallow Crust,128.8954,89.99373,0.0,12/13/7251 +3.49593,45.32877,1397,8,1,21,45,29,3.95,5.0,fr,42485,27,1781811,1,1,Active Shallow Crust,240.0197,58.00499,0.0,08/01/1397 +3.49593,45.32877,585,6,27,2,39,27,3.95,5.0,fr,42486,11,1781814,1,1,Active Shallow Crust,0.0,89.99095,-90.0,06/27/0585 +3.49593,45.32877,3923,7,8,22,44,33,4.05,15.0,fr,42487,78,1781830,1,1,Active Shallow Crust,128.8904,89.99402,0.0,07/08/3923 +3.49593,45.32877,4568,8,31,5,45,36,4.25,5.0,fr,42488,91,1781853,1,1,Active Shallow Crust,128.8947,89.9809,0.0,08/31/4568 +3.49593,45.32877,2659,5,10,10,20,44,4.45,5.0,fr,42489,53,1781871,1,1,Active Shallow Crust,240.005,57.99459,0.0,05/10/2659 +3.49593,45.32877,3979,10,15,21,32,1,4.55,27.5,fr,42490,79,1781888,1,1,Active Shallow Crust,0.0,89.98979,-90.0,10/15/3979 +3.49593,45.32877,2135,2,3,1,15,34,4.95,5.0,fr,42491,42,1781928,1,1,Active Shallow Crust,0.0,89.9901,0.0,02/03/2135 +2.1534,48.42038,5294,7,30,12,39,31,3.75,15.0,fr,42492,105,1782271,1,1,Active Shallow Crust,0.0,89.98924,-90.0,07/30/5294 +-0.60217,42.14851,9218,10,6,21,4,17,3.55,5.0,fr,42493,184,1782720,1,1,Active Shallow Crust,0.0,89.98972,0.0,10/06/9218 +-0.60217,42.14851,8253,3,2,9,30,59,3.55,15.0,fr,42494,165,1782721,1,2,Active Shallow Crust,0.0,89.98972,0.0,03/02/8253 +-0.60217,42.14851,945,10,21,15,13,7,3.55,15.0,fr,42495,18,1782721,1,2,Active Shallow Crust,0.0,89.98972,0.0,10/21/0945 +-0.60217,42.14851,2033,11,25,4,45,13,4.05,15.0,fr,42496,40,1782781,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/25/2033 +-0.60217,42.14851,9459,8,23,18,5,13,4.75,5.0,fr,42497,189,1782864,1,1,Active Shallow Crust,0.0,89.98991,0.0,08/23/9459 +7.10749,45.15478,6668,6,20,0,27,20,3.55,5.0,fr,42498,133,1783200,1,6,Active Shallow Crust,0.0,89.99289,0.0,06/20/6668 +7.10749,45.15478,9141,11,3,23,17,25,3.55,5.0,fr,42499,182,1783200,1,6,Active Shallow Crust,0.0,89.99289,0.0,11/03/9141 +7.10749,45.15478,2069,4,9,21,21,16,3.55,5.0,fr,42500,41,1783200,1,6,Active Shallow Crust,0.0,89.99289,0.0,04/09/2069 +7.10749,45.15478,3624,2,20,6,5,57,3.55,5.0,fr,42501,72,1783200,1,6,Active Shallow Crust,0.0,89.99289,0.0,02/20/3624 +7.10749,45.15478,4263,7,5,17,56,9,3.55,5.0,fr,42502,85,1783200,1,6,Active Shallow Crust,0.0,89.99289,0.0,07/05/4263 +7.10749,45.15478,7647,1,6,5,11,57,3.55,5.0,fr,42503,152,1783200,1,6,Active Shallow Crust,0.0,89.99289,0.0,01/06/7647 +7.10749,45.15478,8378,7,10,4,38,32,3.55,27.5,fr,42504,167,1783202,1,1,Active Shallow Crust,0.0,89.99289,0.0,07/10/8378 +7.10749,45.15478,164,10,21,0,55,36,3.55,5.0,fr,42505,3,1783206,1,2,Active Shallow Crust,0.0,89.99281,-90.0,10/21/0164 +7.10749,45.15478,3162,10,9,1,50,24,3.55,5.0,fr,42506,63,1783206,1,2,Active Shallow Crust,0.0,89.99281,-90.0,10/09/3162 +7.10749,45.15478,7289,7,1,8,3,37,3.55,5.0,fr,42507,145,1783209,1,2,Active Shallow Crust,128.8976,89.99289,0.0,07/01/7289 +7.10749,45.15478,7843,10,27,6,57,36,3.55,5.0,fr,42508,156,1783209,1,2,Active Shallow Crust,128.8976,89.99289,0.0,10/27/7843 +7.10749,45.15478,5850,3,16,4,14,41,3.55,15.0,fr,42509,116,1783210,1,1,Active Shallow Crust,128.8976,89.99289,0.0,03/16/5850 +7.10749,45.15478,7381,4,6,22,23,42,3.55,27.5,fr,42510,147,1783211,1,1,Active Shallow Crust,128.8976,89.99289,0.0,04/06/7381 +7.10749,45.15478,3489,12,16,22,57,39,3.65,5.0,fr,42511,69,1783212,1,3,Active Shallow Crust,0.0,89.98733,0.0,12/16/3489 +7.10749,45.15478,9506,4,20,4,44,26,3.65,5.0,fr,42512,190,1783212,1,3,Active Shallow Crust,0.0,89.98733,0.0,04/20/9506 +7.10749,45.15478,3053,4,20,20,15,51,3.65,5.0,fr,42513,61,1783212,1,3,Active Shallow Crust,0.0,89.98733,0.0,04/20/3053 +7.10749,45.15478,6789,9,3,2,44,47,3.65,5.0,fr,42514,135,1783215,1,1,Active Shallow Crust,240.0012,58.01238,0.0,09/03/6789 +7.10749,45.15478,9575,6,14,3,41,46,3.65,5.0,fr,42515,191,1783221,1,2,Active Shallow Crust,128.9003,89.9635,0.0,06/14/9575 +7.10749,45.15478,3377,10,21,5,2,50,3.65,5.0,fr,42516,67,1783221,1,2,Active Shallow Crust,128.9003,89.9635,0.0,10/21/3377 +7.10749,45.15478,7363,9,8,11,46,8,3.75,5.0,fr,42517,147,1783224,1,4,Active Shallow Crust,0.0,89.9887,0.0,09/08/7363 +7.10749,45.15478,6908,12,20,5,23,25,3.75,5.0,fr,42518,138,1783224,1,4,Active Shallow Crust,0.0,89.9887,0.0,12/20/6908 +7.10749,45.15478,2759,4,23,12,59,50,3.75,5.0,fr,42519,55,1783224,1,4,Active Shallow Crust,0.0,89.9887,0.0,04/23/2759 +7.10749,45.15478,4756,7,14,6,50,40,3.75,5.0,fr,42520,95,1783224,1,4,Active Shallow Crust,0.0,89.9887,0.0,07/14/4756 +7.10749,45.15478,2785,12,24,5,55,59,3.75,15.0,fr,42521,55,1783225,1,1,Active Shallow Crust,0.0,89.9887,0.0,12/24/2785 +7.10749,45.15478,687,10,15,21,15,19,3.75,5.0,fr,42522,13,1783227,1,2,Active Shallow Crust,240.0089,58.01772,0.0,10/15/0687 +7.10749,45.15478,1310,12,21,4,17,41,3.75,5.0,fr,42523,26,1783227,1,2,Active Shallow Crust,240.0089,58.01772,0.0,12/21/1310 +7.10749,45.15478,9057,12,10,15,29,10,3.85,5.0,fr,42524,181,1783236,1,1,Active Shallow Crust,0.0,89.98993,0.0,12/10/9057 +7.10749,45.15478,2051,9,17,21,43,28,3.85,27.5,fr,42525,41,1783238,1,1,Active Shallow Crust,0.0,89.98993,0.0,09/17/2051 +7.10749,45.15478,3098,10,8,2,0,6,3.85,5.0,fr,42526,61,1783239,1,1,Active Shallow Crust,240.0116,57.99773,0.0,10/08/3098 +7.10749,45.15478,2403,3,26,15,11,18,3.95,5.0,fr,42527,48,1783248,1,2,Active Shallow Crust,0.0,89.99103,0.0,03/26/2403 +7.10749,45.15478,266,3,19,7,2,33,3.95,5.0,fr,42528,5,1783248,1,2,Active Shallow Crust,0.0,89.99103,0.0,03/19/0266 +7.10749,45.15478,1310,6,4,21,42,49,3.95,27.5,fr,42529,26,1783253,1,1,Active Shallow Crust,240.019,58.00475,0.0,06/04/1310 +7.10749,45.15478,202,8,10,18,39,22,4.05,5.0,fr,42530,4,1783260,1,3,Active Shallow Crust,0.0,89.98801,0.0,08/10/0202 +7.10749,45.15478,2785,1,23,23,5,19,4.05,5.0,fr,42531,55,1783260,1,3,Active Shallow Crust,0.0,89.98801,0.0,01/23/2785 +7.10749,45.15478,7016,4,25,0,59,51,4.05,5.0,fr,42532,140,1783260,1,3,Active Shallow Crust,0.0,89.98801,0.0,04/25/7016 +7.10749,45.15478,9692,8,4,0,45,29,4.05,15.0,fr,42533,193,1783261,1,1,Active Shallow Crust,0.0,89.98801,0.0,08/04/9692 +7.10749,45.15478,3100,6,29,20,28,0,4.05,5.0,fr,42534,61,1783263,1,1,Active Shallow Crust,240.0064,58.00529,0.0,06/29/3100 +7.10749,45.15478,1899,2,20,19,35,46,4.35,5.0,fr,42535,37,1783296,1,1,Active Shallow Crust,0.0,89.98868,0.0,02/20/1899 +7.10749,45.15478,6856,8,22,6,49,10,4.35,15.0,fr,42536,137,1783297,1,1,Active Shallow Crust,0.0,89.98868,0.0,08/22/6856 +7.10749,45.15478,4285,1,25,14,59,35,4.35,27.5,fr,42537,85,1783301,1,1,Active Shallow Crust,240.008,57.99599,0.0,01/25/4285 +7.10749,45.15478,9595,12,4,17,2,41,4.45,5.0,fr,42538,191,1783308,1,1,Active Shallow Crust,0.0,89.98991,0.0,12/04/9595 +7.10749,45.15478,1990,1,10,10,52,21,4.55,5.0,fr,42539,39,1783320,1,1,Active Shallow Crust,0.0,89.991,0.0,01/10/1990 +7.10749,45.15478,7469,7,24,1,52,48,4.75,15.0,fr,42540,149,1783345,1,1,Active Shallow Crust,0.0,89.98928,0.0,07/24/7469 +7.10749,45.15478,8688,10,3,5,28,50,4.95,15.0,fr,42541,173,1783369,1,1,Active Shallow Crust,0.0,89.99007,0.0,10/03/8688 +7.10749,45.15478,3020,3,18,17,0,15,5.05,15.0,fr,42542,60,1783381,1,1,Active Shallow Crust,0.0,89.98988,0.0,03/18/3020 +7.10749,45.15478,2425,12,14,4,10,12,5.35,5.0,fr,42543,48,1783419,1,1,Active Shallow Crust,240.0243,57.99749,0.0,12/14/2425 +7.10749,45.15478,5469,12,20,7,38,29,5.85,5.0,fr,42544,109,1783476,1,1,Active Shallow Crust,0.0,89.98992,0.0,12/20/5469 +0.42402,51.86708,1550,8,14,8,44,31,3.55,5.0,fr,42545,30,1783683,1,2,Active Shallow Crust,240.0127,57.99828,0.0,08/14/1550 +0.42402,51.86708,8350,9,29,11,12,53,3.55,5.0,fr,42546,166,1783683,1,2,Active Shallow Crust,240.0127,57.99828,0.0,09/29/8350 +0.42402,51.86708,2456,8,20,1,34,47,3.65,5.0,fr,42547,49,1783692,1,1,Active Shallow Crust,0.0,89.98994,0.0,08/20/2456 +0.42402,51.86708,2108,1,23,10,54,34,3.65,27.5,fr,42548,42,1783703,1,1,Active Shallow Crust,128.8999,89.96352,0.0,01/23/2108 +0.42402,51.86708,4176,1,14,18,40,24,4.75,5.0,fr,42549,83,1783824,1,1,Active Shallow Crust,0.0,89.99003,0.0,01/14/4176 +-1.79668,46.00677,8541,6,7,2,20,21,3.65,5.0,fr,42550,170,1784172,1,1,Active Shallow Crust,0.0,89.99064,0.0,06/07/8541 +-1.79668,46.00677,9103,12,9,13,29,50,3.85,5.0,fr,42551,182,1784196,1,1,Active Shallow Crust,0.0,89.99008,0.0,12/09/9103 +4.37561,40.79044,1090,1,26,17,20,0,3.55,15.0,fr,42552,21,1784641,1,1,Active Shallow Crust,0.0,89.99236,0.0,01/26/1090 +4.37561,40.79044,9617,8,2,21,42,16,3.75,5.0,fr,42553,192,1784664,1,1,Active Shallow Crust,0.0,89.98787,0.0,08/02/9617 +4.37561,40.79044,3051,6,20,6,10,37,3.85,15.0,fr,42554,61,1784680,1,1,Active Shallow Crust,240.0106,57.99712,0.0,06/20/3051 +4.37561,40.79044,5861,5,3,0,59,14,4.05,5.0,fr,42555,117,1784700,1,3,Active Shallow Crust,0.0,89.99142,0.0,05/03/5861 +4.37561,40.79044,2176,6,12,3,0,2,4.05,5.0,fr,42556,43,1784700,1,3,Active Shallow Crust,0.0,89.99142,0.0,06/12/2176 +4.37561,40.79044,1474,4,19,14,9,15,4.05,5.0,fr,42557,29,1784700,1,3,Active Shallow Crust,0.0,89.99142,0.0,04/19/1474 +4.37561,40.79044,1147,1,16,17,54,15,4.55,5.0,fr,42558,22,1784760,1,1,Active Shallow Crust,0.0,89.99034,0.0,01/16/1147 +5.01657,43.30185,2390,7,7,0,1,48,3.55,5.0,fr,42559,47,1785120,1,2,Active Shallow Crust,0.0,89.99266,0.0,07/07/2390 +5.01657,43.30185,3200,10,12,7,31,49,3.55,5.0,fr,42560,63,1785120,1,2,Active Shallow Crust,0.0,89.99266,0.0,10/12/3200 +5.01657,43.30185,8325,9,10,14,57,47,3.55,5.0,fr,42561,166,1785126,1,1,Active Shallow Crust,0.0,89.99258,-90.0,09/10/8325 +5.01657,43.30185,720,4,22,13,57,21,4.25,15.0,fr,42562,14,1785211,1,1,Active Shallow Crust,0.0,89.99005,-90.0,04/22/0720 +5.01657,43.30185,3548,4,3,23,17,2,4.35,5.0,fr,42563,70,1785219,1,1,Active Shallow Crust,240.008,57.99573,0.0,04/03/3548 +1.38945,46.3913,535,9,8,19,16,0,3.55,5.0,fr,42564,10,1785600,1,1,Active Shallow Crust,0.0,89.98957,0.0,09/08/0535 +1.38945,46.3913,2336,4,24,5,45,16,3.65,5.0,fr,42565,46,1785612,1,1,Active Shallow Crust,0.0,89.9907,0.0,04/24/2336 +1.38945,46.3913,5911,10,7,11,39,28,3.75,27.5,fr,42566,118,1785626,1,2,Active Shallow Crust,0.0,89.99033,0.0,10/07/5911 +1.38945,46.3913,7416,4,9,3,50,31,3.75,27.5,fr,42567,148,1785626,1,2,Active Shallow Crust,0.0,89.99033,0.0,04/09/7416 +1.38945,46.3913,7747,8,30,15,34,22,3.85,5.0,fr,42568,154,1785642,1,1,Active Shallow Crust,0.0,89.99004,-90.0,08/30/7747 +1.38945,46.3913,9886,11,19,7,31,41,3.85,27.5,fr,42569,197,1785647,1,1,Active Shallow Crust,128.8955,89.99384,0.0,11/19/9886 +1.38945,46.3913,6813,4,5,21,49,24,3.95,5.0,fr,42570,136,1785648,1,1,Active Shallow Crust,0.0,89.99013,0.0,04/05/6813 +1.38945,46.3913,9303,9,22,8,6,45,4.25,5.0,fr,42571,186,1785684,1,1,Active Shallow Crust,0.0,89.9899,0.0,09/22/9303 +1.38945,46.3913,9079,11,9,22,56,18,4.65,5.0,fr,42572,181,1785732,1,1,Active Shallow Crust,0.0,89.9902,0.0,11/09/9079 +1.38945,46.3913,7990,8,16,6,35,54,4.75,5.0,fr,42573,159,1785744,1,1,Active Shallow Crust,0.0,89.98995,0.0,08/16/7990 +-5.53187,48.91173,9458,5,20,22,35,25,3.55,27.5,fr,42574,189,1786085,1,1,Active Shallow Crust,240.0113,57.99855,0.0,05/20/9458 +-5.53187,48.91173,6865,9,21,3,37,33,4.25,5.0,fr,42575,137,1786164,1,1,Active Shallow Crust,0.0,89.99112,0.0,09/21/6865 +2.03303,49.59361,4214,8,9,6,51,22,3.55,5.0,fr,42576,84,1786560,1,1,Active Shallow Crust,0.0,89.9902,0.0,08/09/4214 +2.03303,49.59361,6085,10,12,8,6,11,3.65,5.0,fr,42577,121,1786575,1,2,Active Shallow Crust,240.0014,58.01268,0.0,10/12/6085 +2.03303,49.59361,9777,4,27,19,37,41,3.65,5.0,fr,42578,195,1786575,1,2,Active Shallow Crust,240.0014,58.01268,0.0,04/27/9777 +2.03303,49.59361,6746,4,20,16,47,34,3.65,15.0,fr,42579,134,1786579,1,1,Active Shallow Crust,0.0,89.99116,-90.0,04/20/6746 +2.03303,49.59361,1033,1,15,18,31,27,3.85,15.0,fr,42580,20,1786597,1,1,Active Shallow Crust,0.0,89.99075,0.0,01/15/1033 +2.03303,49.59361,2735,4,18,16,56,19,4.05,15.0,fr,42581,54,1786630,1,1,Active Shallow Crust,128.8903,89.99357,0.0,04/18/2735 +2.03303,49.59361,4939,12,9,18,4,4,4.45,5.0,fr,42582,98,1786668,1,1,Active Shallow Crust,0.0,89.98956,0.0,12/09/4939 +-4.61073,48.18895,8092,8,27,15,19,35,3.55,5.0,fr,42583,161,1787040,1,1,Active Shallow Crust,0.0,89.99328,0.0,08/27/8092 +-4.61073,48.18895,2285,12,28,20,18,41,3.55,15.0,fr,42584,45,1787050,1,1,Active Shallow Crust,128.8964,89.99328,0.0,12/28/2285 +-4.61073,48.18895,886,12,3,20,25,0,3.65,15.0,fr,42585,17,1787059,1,1,Active Shallow Crust,0.0,89.98788,-90.0,12/03/0886 +-4.61073,48.18895,7959,5,11,12,55,5,3.75,5.0,fr,42586,159,1787064,1,1,Active Shallow Crust,0.0,89.98932,0.0,05/11/7959 +-4.61073,48.18895,7272,6,6,4,28,28,3.75,27.5,fr,42587,145,1787066,1,1,Active Shallow Crust,0.0,89.98932,0.0,06/06/7272 +-4.61073,48.18895,8343,4,9,16,23,15,3.75,5.0,fr,42588,166,1787067,1,1,Active Shallow Crust,240.0092,58.01722,0.0,04/09/8343 +-4.61073,48.18895,3097,5,3,19,41,32,3.75,5.0,fr,42589,61,1787070,1,1,Active Shallow Crust,0.0,89.9892,-90.0,05/03/3097 +-4.61073,48.18895,2734,10,24,21,50,21,3.95,15.0,fr,42590,54,1787089,1,1,Active Shallow Crust,0.0,89.99152,0.0,10/24/2734 +-4.61073,48.18895,900,8,9,4,41,33,3.95,5.0,fr,42591,17,1787097,1,1,Active Shallow Crust,128.8994,89.99364,0.0,08/09/0900 +-4.61073,48.18895,8844,12,3,19,5,2,4.05,5.0,fr,42592,176,1787100,1,1,Active Shallow Crust,0.0,89.98866,0.0,12/03/8844 +-4.61073,48.18895,4452,9,19,16,48,38,4.15,27.5,fr,42593,89,1787114,1,1,Active Shallow Crust,0.0,89.98989,0.0,09/19/4452 +-4.61073,48.18895,495,3,4,20,29,37,4.25,5.0,fr,42594,9,1787124,1,1,Active Shallow Crust,0.0,89.99099,0.0,03/04/0495 +-4.61073,48.18895,2717,10,13,12,56,29,4.25,15.0,fr,42595,54,1787125,1,1,Active Shallow Crust,0.0,89.99099,0.0,10/13/2717 +5.01567,46.58592,7487,4,17,10,42,53,3.75,15.0,fr,42596,149,1787545,1,2,Active Shallow Crust,0.0,89.98899,0.0,04/17/7487 +5.01567,46.58592,2349,1,2,10,27,53,3.75,15.0,fr,42597,46,1787545,1,2,Active Shallow Crust,0.0,89.98899,0.0,01/02/2349 +5.01567,46.58592,4632,11,30,17,54,25,3.85,5.0,fr,42598,92,1787556,1,1,Active Shallow Crust,0.0,89.99019,0.0,11/30/4632 +5.01567,46.58592,8400,5,16,3,51,23,3.95,5.0,fr,42599,167,1787568,1,1,Active Shallow Crust,0.0,89.99126,0.0,05/16/8400 +5.01567,46.58592,2441,4,1,3,49,11,3.95,15.0,fr,42600,48,1787569,1,1,Active Shallow Crust,0.0,89.99126,0.0,04/01/2441 +5.01567,46.58592,2241,6,3,7,10,17,4.25,15.0,fr,42601,44,1787605,1,1,Active Shallow Crust,0.0,89.99072,0.0,06/03/2241 +5.01567,46.58592,5945,6,16,17,18,9,4.45,5.0,fr,42602,118,1787637,1,1,Active Shallow Crust,128.8922,89.99385,0.0,06/16/5945 +5.01567,46.58592,349,10,6,1,6,25,4.65,27.5,fr,42603,6,1787654,1,1,Active Shallow Crust,0.0,89.99023,0.0,10/06/0349 +-1.08448,43.88578,38,6,8,4,16,48,3.95,5.0,fr,42604,0,1788048,1,1,Active Shallow Crust,0.0,89.98969,0.0,06/08/0038 +-1.08448,43.88578,9966,3,5,18,11,0,4.15,5.0,fr,42605,199,1788075,1,1,Active Shallow Crust,240.008,57.9972,0.0,03/05/9966 +2.73383,51.03994,9263,7,8,4,19,2,3.75,5.0,fr,42606,185,1788504,1,1,Active Shallow Crust,0.0,89.98993,0.0,07/08/9263 +2.73383,51.03994,1079,3,22,1,6,0,3.75,15.0,fr,42607,21,1788505,1,1,Active Shallow Crust,0.0,89.98993,0.0,03/22/1079 +2.73383,51.03994,3145,6,1,3,56,44,3.75,15.0,fr,42608,62,1788514,1,1,Active Shallow Crust,128.8965,89.96735,0.0,06/01/3145 +2.73383,51.03994,3981,10,19,13,35,3,4.05,15.0,fr,42609,79,1788541,1,1,Active Shallow Crust,0.0,89.9893,0.0,10/19/3981 +2.73383,51.03994,8576,1,30,6,6,46,4.05,5.0,fr,42610,171,1788543,1,1,Active Shallow Crust,240.0066,58.00594,0.0,01/30/8576 +2.73383,51.03994,4852,8,2,8,19,1,4.15,5.0,fr,42611,97,1788555,1,1,Active Shallow Crust,240.0095,57.99734,0.0,08/02/4852 +2.73383,51.03994,3490,7,6,12,45,13,4.45,15.0,fr,42612,69,1788589,1,1,Active Shallow Crust,0.0,89.98988,0.0,07/06/3490 +2.73383,51.03994,6424,12,24,0,49,29,4.55,15.0,fr,42613,128,1788601,1,1,Active Shallow Crust,0.0,89.98997,0.0,12/24/6424 +2.73383,51.03994,72,9,6,10,27,4,4.65,5.0,fr,42614,1,1788612,1,1,Active Shallow Crust,0.0,89.99017,0.0,09/06/0072 +2.73383,51.03994,1240,3,20,11,49,32,4.95,5.0,fr,42615,24,1788657,1,1,Active Shallow Crust,128.8878,89.98976,0.0,03/20/1240 +2.73383,51.03994,6025,12,20,22,54,6,5.05,15.0,fr,42616,120,1788661,1,1,Active Shallow Crust,0.0,89.98985,0.0,12/20/6025 +4.75377,47.44983,5431,8,9,14,3,8,3.55,5.0,fr,42617,108,1788963,1,1,Active Shallow Crust,240.0112,57.99891,0.0,08/09/5431 +4.75377,47.44983,8760,2,1,12,37,57,3.65,15.0,fr,42618,175,1788973,1,1,Active Shallow Crust,0.0,89.98785,0.0,02/01/8760 +4.75377,47.44983,1440,9,2,19,53,52,3.75,5.0,fr,42619,28,1788984,1,1,Active Shallow Crust,0.0,89.98917,0.0,09/02/1440 +4.75377,47.44983,2139,1,20,3,33,0,3.75,15.0,fr,42620,42,1788985,1,1,Active Shallow Crust,0.0,89.98917,0.0,01/20/2139 +4.75377,47.44983,3490,12,19,10,8,39,3.95,15.0,fr,42621,69,1789012,1,1,Active Shallow Crust,240.0202,58.00457,0.0,12/19/3490 +-1.95435,50.43262,4960,10,16,16,41,54,3.65,5.0,fr,42622,99,1789455,1,1,Active Shallow Crust,240.0018,58.01274,0.0,10/16/4960 +-1.95435,50.43262,2549,7,9,7,35,19,3.85,5.0,fr,42623,50,1789476,1,1,Active Shallow Crust,0.0,89.98977,0.0,07/09/2549 +-1.95435,50.43262,4603,10,5,22,31,22,4.05,5.0,fr,42624,92,1789503,1,1,Active Shallow Crust,240.0067,58.00597,0.0,10/05/4603 +8.2476,50.76965,5985,1,24,17,32,57,3.55,5.0,fr,42625,119,1790400,1,2,Active Shallow Crust,0.0,89.98724,0.0,01/24/5985 +8.2476,50.76965,4534,6,20,13,55,15,3.55,5.0,fr,42626,90,1790400,1,2,Active Shallow Crust,0.0,89.98724,0.0,06/20/4534 +8.2476,50.76965,4967,1,11,13,42,10,3.55,15.0,fr,42627,99,1790401,1,1,Active Shallow Crust,0.0,89.98724,0.0,01/11/4967 +8.2476,50.76965,2289,4,20,23,35,59,3.55,5.0,fr,42628,45,1790403,1,1,Active Shallow Crust,240.0136,57.99662,0.0,04/20/2289 +8.2476,50.76965,9691,7,14,3,27,11,3.55,5.0,fr,42629,193,1790406,1,1,Active Shallow Crust,0.0,89.9871,-90.0,07/14/9691 +8.2476,50.76965,5446,2,26,9,55,54,3.85,5.0,fr,42630,108,1790436,1,1,Active Shallow Crust,0.0,89.99097,0.0,02/26/5446 +8.2476,50.76965,13,3,13,2,44,50,3.95,5.0,fr,42631,0,1790448,1,1,Active Shallow Crust,0.0,89.99195,0.0,03/13/0013 +8.2476,50.76965,1104,4,27,4,16,46,4.25,5.0,fr,42632,22,1790484,1,1,Active Shallow Crust,0.0,89.9886,0.0,04/27/1104 +3.56141,51.31311,7365,6,3,20,15,55,3.55,27.5,fr,42633,147,1791362,1,2,Active Shallow Crust,0.0,89.99055,0.0,06/03/7365 +3.56141,51.31311,8389,12,25,12,47,46,3.55,27.5,fr,42634,167,1791362,1,2,Active Shallow Crust,0.0,89.99055,0.0,12/25/8389 +3.56141,51.31311,1817,9,26,19,39,4,3.55,5.0,fr,42635,36,1791366,1,1,Active Shallow Crust,0.0,89.99043,-90.0,09/26/1817 +3.56141,51.31311,2940,4,2,21,30,56,3.65,5.0,fr,42636,58,1791378,1,1,Active Shallow Crust,0.0,89.98863,-90.0,04/02/2940 +3.56141,51.31311,3875,6,27,4,5,31,3.75,5.0,fr,42637,77,1791384,1,1,Active Shallow Crust,0.0,89.98998,0.0,06/27/3875 +3.56141,51.31311,8832,12,16,1,42,34,4.05,27.5,fr,42638,176,1791422,1,1,Active Shallow Crust,0.0,89.98936,0.0,12/16/8832 +-3.44311,48.84487,4186,7,28,15,9,7,3.55,5.0,fr,42639,83,1791840,1,1,Active Shallow Crust,0.0,89.99004,0.0,07/28/4186 +-3.44311,48.84487,712,4,11,6,45,0,3.95,5.0,fr,42640,14,1791888,1,2,Active Shallow Crust,0.0,89.98953,0.0,04/11/0712 +-3.44311,48.84487,7642,6,3,8,50,21,3.95,5.0,fr,42641,152,1791888,1,2,Active Shallow Crust,0.0,89.98953,0.0,06/03/7642 +-3.44311,48.84487,1004,3,15,1,18,53,3.95,5.0,fr,42642,20,1791891,1,1,Active Shallow Crust,240.0203,58.005,0.0,03/15/1004 +-3.44311,48.84487,2926,5,3,1,54,47,4.05,5.0,fr,42643,58,1791900,1,2,Active Shallow Crust,0.0,89.99067,0.0,05/03/2926 +-3.44311,48.84487,8422,12,27,17,39,24,4.05,5.0,fr,42644,168,1791900,1,2,Active Shallow Crust,0.0,89.99067,0.0,12/27/8422 +-3.44311,48.84487,5498,12,27,22,24,45,4.05,15.0,fr,42645,109,1791901,1,1,Active Shallow Crust,0.0,89.99067,0.0,12/27/5498 +5.88737,43.14813,6098,11,19,12,1,54,3.55,5.0,fr,42646,121,1793280,1,1,Active Shallow Crust,0.0,89.99265,0.0,11/19/6098 +5.88737,43.14813,9872,10,4,5,56,2,3.65,15.0,fr,42647,197,1793293,1,1,Active Shallow Crust,0.0,89.98689,0.0,10/04/9872 +5.88737,43.14813,8356,4,21,3,42,33,3.65,15.0,fr,42648,167,1793296,1,1,Active Shallow Crust,240.0002,58.01349,0.0,04/21/8356 +5.88737,43.14813,5238,7,22,23,55,20,3.65,27.5,fr,42649,104,1793300,1,1,Active Shallow Crust,0.0,89.98673,-90.0,07/22/5238 +5.88737,43.14813,7519,6,5,1,57,35,3.85,15.0,fr,42650,150,1793317,1,1,Active Shallow Crust,0.0,89.98959,0.0,06/05/7519 +5.88737,43.14813,2512,7,9,5,21,11,3.95,5.0,fr,42651,50,1793328,1,1,Active Shallow Crust,0.0,89.99072,0.0,07/09/2512 +7.45943,48.17524,3921,6,7,12,43,26,3.55,5.0,fr,42652,78,1793760,1,1,Active Shallow Crust,0.0,89.99328,0.0,06/07/3921 +7.45943,48.17524,7306,12,23,0,20,16,3.55,15.0,fr,42653,146,1793761,1,2,Active Shallow Crust,0.0,89.99328,0.0,12/23/7306 +7.45943,48.17524,5744,2,23,20,30,45,3.55,15.0,fr,42654,114,1793761,1,2,Active Shallow Crust,0.0,89.99328,0.0,02/23/5744 +7.45943,48.17524,7519,7,13,23,13,47,3.55,5.0,fr,42655,150,1793763,1,1,Active Shallow Crust,240.0118,57.99838,0.0,07/13/7519 +7.45943,48.17524,4882,8,28,0,49,36,3.55,5.0,fr,42656,97,1793766,1,2,Active Shallow Crust,0.0,89.99319,-90.0,08/28/4882 +7.45943,48.17524,4202,7,27,1,52,15,3.55,5.0,fr,42657,84,1793766,1,2,Active Shallow Crust,0.0,89.99319,-90.0,07/27/4202 +7.45943,48.17524,6502,4,23,16,14,55,3.65,5.0,fr,42658,130,1793772,1,1,Active Shallow Crust,0.0,89.98801,0.0,04/23/6502 +7.45943,48.17524,9450,4,18,13,30,56,3.65,15.0,fr,42659,188,1793773,1,2,Active Shallow Crust,0.0,89.98801,0.0,04/18/9450 +7.45943,48.17524,6297,12,24,19,13,0,3.65,15.0,fr,42660,125,1793773,1,2,Active Shallow Crust,0.0,89.98801,0.0,12/24/6297 +7.45943,48.17524,3600,5,15,8,19,43,3.65,15.0,fr,42661,71,1793776,1,1,Active Shallow Crust,240.0011,58.01297,0.0,05/15/3600 +7.45943,48.17524,3044,9,12,19,45,0,3.75,15.0,fr,42662,60,1793788,1,1,Active Shallow Crust,240.0078,58.01777,0.0,09/12/3044 +7.45943,48.17524,8447,5,10,22,21,26,3.85,5.0,fr,42663,168,1793796,1,1,Active Shallow Crust,0.0,89.99048,0.0,05/10/8447 +7.45943,48.17524,6924,2,17,11,48,8,3.85,27.5,fr,42664,138,1793798,1,1,Active Shallow Crust,0.0,89.99048,0.0,02/17/6924 +7.45943,48.17524,5380,5,6,4,56,31,3.85,5.0,fr,42665,107,1793799,1,2,Active Shallow Crust,240.0116,57.9975,0.0,05/06/5380 +7.45943,48.17524,3731,3,28,20,42,23,3.85,5.0,fr,42666,74,1793799,1,2,Active Shallow Crust,240.0116,57.9975,0.0,03/28/3731 +7.45943,48.17524,3749,10,11,5,0,54,3.95,5.0,fr,42667,74,1793817,1,1,Active Shallow Crust,128.8999,89.99364,0.0,10/11/3749 +7.45943,48.17524,7344,8,3,5,31,42,4.05,5.0,fr,42668,146,1793820,1,1,Active Shallow Crust,0.0,89.98866,0.0,08/03/7344 +7.45943,48.17524,45,10,6,16,49,58,4.15,5.0,fr,42669,0,1793832,1,1,Active Shallow Crust,0.0,89.98989,0.0,10/06/0045 +7.45943,48.17524,6721,10,22,14,12,7,4.15,27.5,fr,42670,134,1793834,1,1,Active Shallow Crust,0.0,89.98989,0.0,10/22/6721 +7.45943,48.17524,8993,2,24,18,21,0,4.15,5.0,fr,42671,179,1793835,1,1,Active Shallow Crust,240.0085,57.99765,0.0,02/24/8993 +7.45943,48.17524,1716,11,20,17,1,11,4.15,5.0,fr,42672,34,1793838,1,1,Active Shallow Crust,0.0,89.98977,-90.0,11/20/1716 +7.45943,48.17524,9502,4,12,22,28,51,4.35,5.0,fr,42673,190,1793856,1,1,Active Shallow Crust,0.0,89.98929,0.0,04/12/9502 +7.45943,48.17524,8984,5,3,19,51,43,4.45,5.0,fr,42674,179,1793871,1,1,Active Shallow Crust,240.0061,57.99483,0.0,05/03/8984 +7.45943,48.17524,8373,12,2,11,44,43,4.55,15.0,fr,42675,167,1793881,1,1,Active Shallow Crust,0.0,89.98936,0.0,12/02/8373 +7.45943,48.17524,9022,4,28,8,26,36,4.65,5.0,fr,42676,180,1793898,1,1,Active Shallow Crust,0.0,89.99041,-90.0,04/28/9022 +7.45943,48.17524,6165,5,22,18,8,15,4.95,5.0,fr,42677,123,1793928,1,1,Active Shallow Crust,0.0,89.99061,0.0,05/22/6165 +7.45943,48.17524,6304,10,3,6,57,15,4.95,27.5,fr,42678,126,1793930,1,1,Active Shallow Crust,0.0,89.99061,0.0,10/03/6304 +7.45943,48.17524,1373,11,13,14,21,32,5.05,5.0,fr,42679,27,1793940,1,1,Active Shallow Crust,0.0,89.99043,0.0,11/13/1373 +7.45943,48.17524,3332,4,20,4,55,0,5.15,5.0,fr,42680,66,1793961,1,1,Active Shallow Crust,128.8827,89.99133,0.0,04/20/3332 +7.45943,48.17524,1535,3,9,1,17,23,5.45,5.0,fr,42681,30,1793997,1,1,Active Shallow Crust,128.8776,89.98912,0.0,03/09/1535 +4.26068,40.2302,3898,1,23,16,39,27,3.55,5.0,fr,42682,77,1794240,1,1,Active Shallow Crust,0.0,89.9923,0.0,01/23/3898 +4.26068,40.2302,3179,4,30,10,53,39,3.55,15.0,fr,42683,63,1794241,1,1,Active Shallow Crust,0.0,89.9923,0.0,04/30/3179 +4.26068,40.2302,989,9,17,9,16,4,3.65,5.0,fr,42684,19,1794252,1,1,Active Shallow Crust,0.0,89.99314,0.0,09/17/0989 +4.26068,40.2302,9577,1,14,20,23,11,4.15,15.0,fr,42685,191,1794313,1,1,Active Shallow Crust,0.0,89.98843,0.0,01/14/9577 +4.26068,40.2302,8753,7,20,18,19,52,4.35,5.0,fr,42686,175,1794336,1,1,Active Shallow Crust,0.0,89.99081,0.0,07/20/8753 +-0.68335,41.58809,5957,3,27,14,39,54,3.65,27.5,fr,42687,119,1794734,1,1,Active Shallow Crust,0.0,89.98991,0.0,03/27/5957 +-0.68335,41.58809,9921,8,8,6,4,4,4.15,15.0,fr,42688,198,1794802,1,1,Active Shallow Crust,128.8983,89.99362,0.0,08/08/9921 +-0.68335,41.58809,4515,6,26,8,1,48,5.35,27.5,fr,42689,90,1794938,1,1,Active Shallow Crust,0.0,89.99003,0.0,06/26/4515 +-0.66664,46.64709,2154,1,4,3,54,49,3.55,5.0,fr,42690,43,1795200,1,1,Active Shallow Crust,0.0,89.98962,0.0,01/04/2154 +-0.66664,46.64709,9691,10,1,8,13,8,3.55,15.0,fr,42691,193,1795201,1,1,Active Shallow Crust,0.0,89.98962,0.0,10/01/9691 +-0.66664,46.64709,1601,5,10,21,10,7,3.55,27.5,fr,42692,32,1795202,1,1,Active Shallow Crust,0.0,89.98962,0.0,05/10/1601 +-0.66664,46.64709,5216,12,13,0,13,55,3.55,5.0,fr,42693,104,1795206,1,2,Active Shallow Crust,0.0,89.99037,-90.0,12/13/5216 +-0.66664,46.64709,6255,8,2,6,1,38,3.55,5.0,fr,42694,125,1795206,1,2,Active Shallow Crust,0.0,89.99037,-90.0,08/02/6255 +-0.66664,46.64709,9132,11,5,15,21,13,3.55,15.0,fr,42695,182,1795207,1,1,Active Shallow Crust,0.0,89.99037,-90.0,11/05/9132 +-0.66664,46.64709,5620,3,6,2,53,48,3.65,5.0,fr,42696,112,1795212,1,4,Active Shallow Crust,0.0,89.98997,0.0,03/06/5620 +-0.66664,46.64709,9550,12,1,1,21,31,3.65,5.0,fr,42697,190,1795212,1,4,Active Shallow Crust,0.0,89.98997,0.0,12/01/9550 +-0.66664,46.64709,2492,12,5,0,24,34,3.65,5.0,fr,42698,49,1795212,1,4,Active Shallow Crust,0.0,89.98997,0.0,12/05/2492 +-0.66664,46.64709,9536,4,24,3,42,52,3.65,5.0,fr,42699,190,1795212,1,4,Active Shallow Crust,0.0,89.98997,0.0,04/24/9536 +-0.66664,46.64709,636,7,15,19,43,1,3.75,5.0,fr,42700,12,1795224,1,4,Active Shallow Crust,0.0,89.98969,0.0,07/15/0636 +-0.66664,46.64709,7176,11,8,18,9,28,3.75,5.0,fr,42701,143,1795224,1,4,Active Shallow Crust,0.0,89.98969,0.0,11/08/7176 +-0.66664,46.64709,5481,6,18,0,31,32,3.75,5.0,fr,42702,109,1795224,1,4,Active Shallow Crust,0.0,89.98969,0.0,06/18/5481 +-0.66664,46.64709,8083,7,25,3,4,21,3.75,5.0,fr,42703,161,1795224,1,4,Active Shallow Crust,0.0,89.98969,0.0,07/25/8083 +-0.66664,46.64709,6679,9,18,14,14,33,3.75,5.0,fr,42704,133,1795227,1,1,Active Shallow Crust,240.0083,58.01752,0.0,09/18/6679 +-0.66664,46.64709,311,9,4,9,38,51,3.75,15.0,fr,42705,6,1795228,1,1,Active Shallow Crust,240.0083,58.01752,0.0,09/04/0311 +-0.66664,46.64709,1967,2,26,0,6,43,3.85,5.0,fr,42706,39,1795236,1,1,Active Shallow Crust,0.0,89.9902,0.0,02/26/1967 +-0.66664,46.64709,2683,3,20,23,14,11,3.85,15.0,fr,42707,53,1795240,1,1,Active Shallow Crust,240.0108,57.99782,0.0,03/20/2683 +-0.66664,46.64709,5579,4,20,21,34,9,3.95,5.0,fr,42708,111,1795248,1,1,Active Shallow Crust,0.0,89.99017,0.0,04/20/5579 +-0.66664,46.64709,9730,6,7,12,1,28,4.15,5.0,fr,42709,194,1795278,1,1,Active Shallow Crust,0.0,89.98991,-90.0,06/07/9730 +-0.66664,46.64709,7048,5,8,11,12,52,4.25,15.0,fr,42710,140,1795291,1,1,Active Shallow Crust,0.0,89.98983,-90.0,05/08/7048 +-0.66664,46.64709,7115,6,29,17,54,21,4.35,5.0,fr,42711,142,1795296,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/29/7115 +-0.66664,46.64709,3104,11,24,1,10,13,4.65,5.0,fr,42712,62,1795332,1,1,Active Shallow Crust,0.0,89.99,0.0,11/24/3104 +-0.66664,46.64709,2300,8,20,12,12,33,4.65,27.5,fr,42713,45,1795340,1,1,Active Shallow Crust,0.0,89.98988,-90.0,08/20/2300 +-0.66664,46.64709,1724,2,13,14,26,58,4.85,5.0,fr,42714,34,1795359,1,1,Active Shallow Crust,240.0172,58.00234,0.0,02/13/1724 +-0.66664,46.64709,7806,6,4,6,4,58,4.85,5.0,fr,42715,156,1795362,1,1,Active Shallow Crust,0.0,89.99001,-90.0,06/04/7806 +-0.66664,46.64709,2257,9,22,18,4,52,5.85,5.0,fr,42716,45,1795476,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/22/2257 +5.41244,48.17679,4740,5,31,1,17,58,3.65,5.0,fr,42717,94,1795692,1,1,Active Shallow Crust,0.0,89.98801,0.0,05/31/4740 +5.41244,48.17679,9957,1,25,0,42,13,3.85,5.0,fr,42718,199,1795722,1,1,Active Shallow Crust,0.0,89.99037,-90.0,01/25/9957 +5.41244,48.17679,1489,8,21,13,55,7,4.65,5.0,fr,42719,29,1795812,1,1,Active Shallow Crust,0.0,89.99052,0.0,08/21/1489 +5.41244,48.17679,8299,4,18,1,51,50,4.75,5.0,fr,42720,165,1795830,1,1,Active Shallow Crust,0.0,89.98975,-90.0,04/18/8299 +4.06752,43.30321,1208,8,13,17,15,39,3.55,15.0,fr,42721,24,1796161,1,1,Active Shallow Crust,0.0,89.99266,0.0,08/13/1208 +4.06752,43.30321,8552,4,14,14,53,48,3.65,5.0,fr,42722,171,1796172,1,1,Active Shallow Crust,0.0,89.98692,0.0,04/14/8552 +4.06752,43.30321,4432,11,9,4,12,38,5.35,15.0,fr,42723,88,1796377,1,1,Active Shallow Crust,0.0,89.98984,0.0,11/09/4432 +1.64497,46.14033,6532,8,12,19,25,14,3.55,5.0,fr,42724,130,1796640,1,1,Active Shallow Crust,0.0,89.98952,0.0,08/12/6532 +1.64497,46.14033,2625,9,9,13,17,16,3.55,15.0,fr,42725,52,1796641,1,1,Active Shallow Crust,0.0,89.98952,0.0,09/09/2625 +1.64497,46.14033,8142,5,27,20,50,25,3.55,27.5,fr,42726,162,1796642,1,2,Active Shallow Crust,0.0,89.98952,0.0,05/27/8142 +1.64497,46.14033,1934,5,1,21,29,50,3.55,27.5,fr,42727,38,1796642,1,2,Active Shallow Crust,0.0,89.98952,0.0,05/01/1934 +1.64497,46.14033,1516,2,9,23,25,41,3.55,15.0,fr,42728,30,1796644,1,1,Active Shallow Crust,240.0122,57.9981,0.0,02/09/1516 +1.64497,46.14033,5231,9,7,10,21,50,3.65,5.0,fr,42729,104,1796652,1,1,Active Shallow Crust,0.0,89.99066,0.0,09/07/5231 +1.64497,46.14033,485,11,1,21,55,14,3.65,15.0,fr,42730,9,1796653,1,1,Active Shallow Crust,0.0,89.99066,0.0,11/01/0485 +1.64497,46.14033,386,4,2,12,5,16,3.65,5.0,fr,42731,7,1796655,1,2,Active Shallow Crust,240.001,58.01277,0.0,04/02/0386 +1.64497,46.14033,8430,3,18,10,24,10,3.65,5.0,fr,42732,168,1796655,1,2,Active Shallow Crust,240.001,58.01277,0.0,03/18/8430 +1.64497,46.14033,7362,2,8,20,52,32,3.65,15.0,fr,42733,147,1796656,1,1,Active Shallow Crust,240.001,58.01277,0.0,02/08/7362 +1.64497,46.14033,9633,3,1,21,7,55,3.75,5.0,fr,42734,192,1796664,1,2,Active Shallow Crust,0.0,89.99029,0.0,03/01/9633 +1.64497,46.14033,8088,4,27,3,38,35,3.75,5.0,fr,42735,161,1796664,1,2,Active Shallow Crust,0.0,89.99029,0.0,04/27/8088 +1.64497,46.14033,2249,9,3,3,58,7,3.75,27.5,fr,42736,44,1796675,1,1,Active Shallow Crust,128.8965,89.96736,0.0,09/03/2249 +1.64497,46.14033,3380,6,29,20,56,51,3.85,5.0,fr,42737,67,1796676,1,1,Active Shallow Crust,0.0,89.9901,0.0,06/29/3380 +1.64497,46.14033,5549,10,1,11,20,57,3.85,5.0,fr,42738,110,1796685,1,1,Active Shallow Crust,128.8959,89.99382,0.0,10/01/5549 +1.64497,46.14033,6271,5,21,9,2,52,4.05,5.0,fr,42739,125,1796700,1,1,Active Shallow Crust,0.0,89.99017,0.0,05/21/6271 +1.64497,46.14033,5258,9,20,16,34,26,4.25,5.0,fr,42740,105,1796733,1,1,Active Shallow Crust,128.8943,89.98093,0.0,09/20/5258 +1.64497,46.14033,2647,8,3,1,39,30,4.35,15.0,fr,42741,52,1796737,1,1,Active Shallow Crust,0.0,89.99026,0.0,08/03/2647 +1.64497,46.14033,5644,6,8,19,35,21,4.35,27.5,fr,42742,112,1796738,1,2,Active Shallow Crust,0.0,89.99026,0.0,06/08/5644 +1.64497,46.14033,5147,3,12,22,57,43,4.35,27.5,fr,42743,102,1796738,1,2,Active Shallow Crust,0.0,89.99026,0.0,03/12/5147 +1.64497,46.14033,5762,7,7,10,34,0,4.35,27.5,fr,42744,115,1796747,1,1,Active Shallow Crust,128.8981,89.98277,0.0,07/07/5762 +1.64497,46.14033,3163,10,20,1,1,11,4.45,5.0,fr,42745,63,1796748,1,1,Active Shallow Crust,0.0,89.99008,0.0,10/20/3163 +1.64497,46.14033,8874,6,1,1,5,15,4.65,5.0,fr,42746,177,1796772,1,1,Active Shallow Crust,0.0,89.99015,0.0,06/01/8874 +1.64497,46.14033,3473,12,23,19,40,1,4.75,5.0,fr,42747,69,1796784,1,1,Active Shallow Crust,0.0,89.98991,0.0,12/23/3473 +1.64497,46.14033,8788,11,3,12,57,20,5.05,15.0,fr,42748,175,1796824,1,1,Active Shallow Crust,240.022,57.99747,0.0,11/03/8788 +-1.23207,49.42021,8649,8,21,19,27,35,3.55,5.0,fr,42749,172,1797120,1,1,Active Shallow Crust,0.0,89.99016,0.0,08/21/8649 +-1.23207,49.42021,363,12,12,12,32,11,3.55,5.0,fr,42750,7,1797123,1,1,Active Shallow Crust,240.0125,57.998,0.0,12/12/0363 +-1.23207,49.42021,8597,6,8,20,55,1,3.65,5.0,fr,42751,171,1797135,1,1,Active Shallow Crust,240.0014,58.01275,0.0,06/08/8597 +-1.23207,49.42021,5960,11,9,16,35,18,3.65,15.0,fr,42752,119,1797136,1,1,Active Shallow Crust,240.0014,58.01275,0.0,11/09/5960 +-1.23207,49.42021,6429,10,15,23,35,52,3.65,5.0,fr,42753,128,1797138,1,1,Active Shallow Crust,0.0,89.98965,-90.0,10/15/6429 +-1.23207,49.42021,813,4,26,14,55,26,3.75,5.0,fr,42754,16,1797144,1,1,Active Shallow Crust,0.0,89.98958,0.0,04/26/0813 +-1.23207,49.42021,7639,10,11,21,8,22,3.75,5.0,fr,42755,152,1797150,1,2,Active Shallow Crust,0.0,89.98946,-90.0,10/11/7639 +-1.23207,49.42021,2569,12,26,13,30,1,3.75,5.0,fr,42756,51,1797150,1,2,Active Shallow Crust,0.0,89.98946,-90.0,12/26/2569 +-1.23207,49.42021,2024,7,23,20,51,34,3.95,5.0,fr,42757,40,1797168,1,1,Active Shallow Crust,0.0,89.98965,0.0,07/23/2024 +-1.23207,49.42021,6127,7,6,0,37,45,3.95,15.0,fr,42758,122,1797178,1,1,Active Shallow Crust,128.9001,89.99328,0.0,07/06/6127 +-1.23207,49.42021,1151,11,5,15,36,58,4.05,5.0,fr,42759,23,1797180,1,1,Active Shallow Crust,0.0,89.98985,0.0,11/05/1151 +-1.23207,49.42021,8201,8,5,15,54,24,4.35,5.0,fr,42760,164,1797216,1,1,Active Shallow Crust,0.0,89.9902,0.0,08/05/8201 +-1.23207,49.42021,8968,2,16,21,49,3,4.35,27.5,fr,42761,179,1797224,1,1,Active Shallow Crust,0.0,89.99009,-90.0,02/16/8968 +-1.23207,49.42021,3762,11,15,10,0,45,4.85,5.0,fr,42762,75,1797276,1,2,Active Shallow Crust,0.0,89.99008,0.0,11/15/3762 +-1.23207,49.42021,4423,6,29,20,19,27,4.85,5.0,fr,42763,88,1797276,1,2,Active Shallow Crust,0.0,89.99008,0.0,06/29/4423 +-1.23207,49.42021,7400,3,11,18,47,31,4.95,15.0,fr,42764,147,1797292,1,1,Active Shallow Crust,240.0134,58.00474,0.0,03/11/7400 +6.44139,50.93139,3172,8,20,15,56,57,3.55,5.0,fr,42765,63,1797600,1,5,Active Shallow Crust,0.0,89.98729,0.0,08/20/3172 +6.44139,50.93139,1897,4,23,6,35,18,3.55,5.0,fr,42766,37,1797600,1,5,Active Shallow Crust,0.0,89.98729,0.0,04/23/1897 +6.44139,50.93139,6427,4,17,14,41,17,3.55,5.0,fr,42767,128,1797600,1,5,Active Shallow Crust,0.0,89.98729,0.0,04/17/6427 +6.44139,50.93139,5821,2,28,19,54,22,3.55,5.0,fr,42768,116,1797600,1,5,Active Shallow Crust,0.0,89.98729,0.0,02/28/5821 +6.44139,50.93139,3852,6,19,9,58,1,3.55,5.0,fr,42769,77,1797600,1,5,Active Shallow Crust,0.0,89.98729,0.0,06/19/3852 +6.44139,50.93139,2269,6,22,17,33,9,3.55,15.0,fr,42770,45,1797601,1,1,Active Shallow Crust,0.0,89.98729,0.0,06/22/2269 +6.44139,50.93139,3543,1,26,16,7,28,3.55,5.0,fr,42771,70,1797603,1,1,Active Shallow Crust,240.0135,57.99736,0.0,01/26/3543 +6.44139,50.93139,867,12,17,17,13,44,3.55,5.0,fr,42772,17,1797609,1,1,Active Shallow Crust,128.8956,89.99364,0.0,12/17/0867 +6.44139,50.93139,3584,8,15,6,51,12,3.65,5.0,fr,42773,71,1797612,1,4,Active Shallow Crust,0.0,89.98867,0.0,08/15/3584 +6.44139,50.93139,4824,3,13,8,3,13,3.65,5.0,fr,42774,96,1797612,1,4,Active Shallow Crust,0.0,89.98867,0.0,03/13/4824 +6.44139,50.93139,4726,1,23,13,37,10,3.65,5.0,fr,42775,94,1797612,1,4,Active Shallow Crust,0.0,89.98867,0.0,01/23/4726 +6.44139,50.93139,7517,10,18,0,45,26,3.65,5.0,fr,42776,150,1797612,1,4,Active Shallow Crust,0.0,89.98867,0.0,10/18/7517 +6.44139,50.93139,5376,1,23,16,59,15,3.65,5.0,fr,42777,107,1797615,1,1,Active Shallow Crust,240.0019,58.01326,0.0,01/23/5376 +6.44139,50.93139,8386,1,16,0,13,38,3.65,5.0,fr,42778,167,1797621,1,1,Active Shallow Crust,128.9003,89.96361,0.0,01/16/8386 +6.44139,50.93139,4981,5,30,10,16,32,3.75,5.0,fr,42779,99,1797624,1,4,Active Shallow Crust,0.0,89.98991,0.0,05/30/4981 +6.44139,50.93139,2598,5,20,17,45,37,3.75,5.0,fr,42780,51,1797624,1,4,Active Shallow Crust,0.0,89.98991,0.0,05/20/2598 +6.44139,50.93139,7698,1,25,12,24,1,3.75,5.0,fr,42781,153,1797624,1,4,Active Shallow Crust,0.0,89.98991,0.0,01/25/7698 +6.44139,50.93139,7287,5,21,23,48,2,3.75,5.0,fr,42782,145,1797624,1,4,Active Shallow Crust,0.0,89.98991,0.0,05/21/7287 +6.44139,50.93139,6479,7,1,12,18,35,3.75,27.5,fr,42783,129,1797629,1,1,Active Shallow Crust,240.0094,58.01791,0.0,07/01/6479 +6.44139,50.93139,1070,5,28,17,45,58,3.85,5.0,fr,42784,21,1797636,1,3,Active Shallow Crust,0.0,89.991,0.0,05/28/1070 +6.44139,50.93139,2470,9,27,19,5,17,3.85,5.0,fr,42785,49,1797636,1,3,Active Shallow Crust,0.0,89.991,0.0,09/27/2470 +6.44139,50.93139,5445,4,20,17,43,39,3.85,5.0,fr,42786,108,1797636,1,3,Active Shallow Crust,0.0,89.991,0.0,04/20/5445 +6.44139,50.93139,7684,9,27,5,56,38,3.85,5.0,fr,42787,153,1797639,1,1,Active Shallow Crust,240.0112,57.99793,0.0,09/27/7684 +6.44139,50.93139,4348,12,13,12,14,43,3.85,27.5,fr,42788,86,1797641,1,1,Active Shallow Crust,240.0112,57.99793,0.0,12/13/4348 +6.44139,50.93139,8174,8,4,5,8,15,3.95,5.0,fr,42789,163,1797651,1,1,Active Shallow Crust,240.0209,58.00452,0.0,08/04/8174 +6.44139,50.93139,2267,1,12,7,13,8,3.95,5.0,fr,42790,45,1797657,1,1,Active Shallow Crust,128.9006,89.99198,0.0,01/12/2267 +6.44139,50.93139,4886,4,15,17,11,57,4.05,5.0,fr,42791,97,1797660,1,1,Active Shallow Crust,0.0,89.98928,0.0,04/15/4886 +6.44139,50.93139,1292,7,20,0,58,21,4.15,27.5,fr,42792,25,1797674,1,1,Active Shallow Crust,0.0,89.99044,0.0,07/20/1292 +6.44139,50.93139,3613,1,12,11,4,10,4.25,27.5,fr,42793,72,1797686,1,1,Active Shallow Crust,0.0,89.98865,0.0,01/12/3613 +6.44139,50.93139,7461,12,19,0,31,15,4.35,5.0,fr,42794,149,1797696,1,1,Active Shallow Crust,0.0,89.98988,0.0,12/19/7461 +6.44139,50.93139,1524,8,19,11,56,21,4.35,15.0,fr,42795,30,1797697,1,1,Active Shallow Crust,0.0,89.98988,0.0,08/19/1524 +6.44139,50.93139,308,11,26,13,1,7,4.45,15.0,fr,42796,6,1797715,1,1,Active Shallow Crust,0.0,89.99088,-90.0,11/26/0308 +6.44139,50.93139,902,2,15,4,52,6,4.65,15.0,fr,42797,18,1797733,1,1,Active Shallow Crust,0.0,89.98925,0.0,02/15/0902 +6.44139,50.93139,5814,8,21,11,23,0,4.75,15.0,fr,42798,116,1797748,1,1,Active Shallow Crust,240.0093,58.00469,0.0,08/21/5814 +6.44139,50.93139,8548,11,5,20,39,34,4.85,15.0,fr,42799,170,1797763,1,1,Active Shallow Crust,0.0,89.98992,-90.0,11/05/8548 +-1.31452,45.77838,6461,4,11,1,44,45,3.55,5.0,fr,42800,129,1798080,1,1,Active Shallow Crust,0.0,89.98945,0.0,04/11/6461 +-1.31452,45.77838,4662,8,18,5,44,48,3.55,15.0,fr,42801,93,1798081,1,1,Active Shallow Crust,0.0,89.98945,0.0,08/18/4662 +-1.31452,45.77838,5299,1,10,15,52,10,4.15,5.0,fr,42802,105,1798152,1,1,Active Shallow Crust,0.0,89.9903,0.0,01/10/5299 +-1.31452,45.77838,5426,12,28,1,39,4,4.35,5.0,fr,42803,108,1798176,1,1,Active Shallow Crust,0.0,89.9902,0.0,12/28/5426 +-1.31452,45.77838,6712,5,26,22,44,9,4.45,5.0,fr,42804,134,1798197,1,1,Active Shallow Crust,128.8925,89.99376,0.0,05/26/6712 +-1.31452,45.77838,7130,9,13,2,27,28,5.55,5.0,fr,42805,142,1798320,1,1,Active Shallow Crust,0.0,89.98997,0.0,09/13/7130 +0.92454,46.62851,7406,7,25,14,46,37,3.55,5.0,fr,42806,148,1798560,1,3,Active Shallow Crust,0.0,89.98962,0.0,07/25/7406 +0.92454,46.62851,1020,3,19,17,20,15,3.55,5.0,fr,42807,20,1798560,1,3,Active Shallow Crust,0.0,89.98962,0.0,03/19/1020 +0.92454,46.62851,1229,4,20,10,4,43,3.55,5.0,fr,42808,24,1798560,1,3,Active Shallow Crust,0.0,89.98962,0.0,04/20/1229 +0.92454,46.62851,1323,10,15,5,30,38,3.55,5.0,fr,42809,26,1798566,1,1,Active Shallow Crust,0.0,89.99037,-90.0,10/15/1323 +0.92454,46.62851,2771,7,18,16,33,44,3.55,5.0,fr,42810,55,1798569,1,1,Active Shallow Crust,128.8961,89.99394,0.0,07/18/2771 +0.92454,46.62851,3997,6,8,4,39,22,3.55,15.0,fr,42811,79,1798570,1,1,Active Shallow Crust,128.8961,89.99394,0.0,06/08/3997 +0.92454,46.62851,2758,4,23,9,50,4,3.65,27.5,fr,42812,55,1798574,1,2,Active Shallow Crust,0.0,89.98997,0.0,04/23/2758 +0.92454,46.62851,3735,3,3,10,58,32,3.65,27.5,fr,42813,74,1798574,1,2,Active Shallow Crust,0.0,89.98997,0.0,03/03/3735 +0.92454,46.62851,1339,11,11,21,40,47,3.65,5.0,fr,42814,26,1798578,1,1,Active Shallow Crust,0.0,89.98985,-90.0,11/11/1339 +0.92454,46.62851,3763,2,27,7,8,10,3.75,5.0,fr,42815,75,1798584,1,1,Active Shallow Crust,0.0,89.98969,0.0,02/27/3763 +0.92454,46.62851,6772,10,5,2,30,56,3.75,27.5,fr,42816,135,1798586,1,1,Active Shallow Crust,0.0,89.98969,0.0,10/05/6772 +0.92454,46.62851,4763,12,12,22,59,52,3.75,15.0,fr,42817,95,1798588,1,1,Active Shallow Crust,240.0084,58.01749,0.0,12/12/4763 +0.92454,46.62851,7354,9,1,16,44,22,3.95,5.0,fr,42818,147,1798608,1,2,Active Shallow Crust,0.0,89.99017,0.0,09/01/7354 +0.92454,46.62851,9907,3,28,5,34,56,3.95,5.0,fr,42819,198,1798608,1,2,Active Shallow Crust,0.0,89.99017,0.0,03/28/9907 +0.92454,46.62851,969,7,6,0,16,54,3.95,27.5,fr,42820,19,1798613,1,1,Active Shallow Crust,240.0198,58.00498,0.0,07/06/0969 +0.92454,46.62851,8350,1,26,22,42,59,3.95,5.0,fr,42821,166,1798617,1,1,Active Shallow Crust,128.9003,89.99372,0.0,01/26/8350 +0.92454,46.62851,392,8,6,14,10,36,4.25,5.0,fr,42822,7,1798644,1,1,Active Shallow Crust,0.0,89.98994,0.0,08/06/0392 +0.92454,46.62851,2274,1,12,23,10,9,4.25,15.0,fr,42823,45,1798645,1,1,Active Shallow Crust,0.0,89.98994,0.0,01/12/2274 +0.92454,46.62851,9022,12,21,21,32,49,4.25,5.0,fr,42824,180,1798647,1,1,Active Shallow Crust,240.0075,57.99411,0.0,12/21/9022 +0.92454,46.62851,6383,2,25,16,14,55,4.35,5.0,fr,42825,127,1798656,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/25/6383 +0.92454,46.62851,8914,1,15,7,4,5,4.35,15.0,fr,42826,178,1798657,1,1,Active Shallow Crust,0.0,89.99001,0.0,01/15/8914 +0.92454,46.62851,7683,4,4,1,47,28,4.85,15.0,fr,42827,153,1798726,1,1,Active Shallow Crust,128.8925,89.98904,0.0,04/04/7683 +2.85744,44.18171,8796,2,18,14,48,42,3.65,5.0,fr,42828,175,1799052,1,1,Active Shallow Crust,0.0,89.99033,0.0,02/18/8796 +2.85744,44.18171,37,1,12,15,39,34,3.65,15.0,fr,42829,0,1799053,1,1,Active Shallow Crust,0.0,89.99033,0.0,01/12/0037 +2.85744,44.18171,2403,1,7,16,45,20,3.65,5.0,fr,42830,48,1799061,1,2,Active Shallow Crust,128.9008,89.96348,0.0,01/07/2403 +2.85744,44.18171,461,2,5,21,10,35,3.65,5.0,fr,42831,9,1799061,1,2,Active Shallow Crust,128.9008,89.96348,0.0,02/05/0461 +2.85744,44.18171,3247,6,23,20,18,28,3.85,5.0,fr,42832,64,1799076,1,2,Active Shallow Crust,0.0,89.98976,0.0,06/23/3247 +2.85744,44.18171,4095,2,23,4,30,26,3.85,5.0,fr,42833,81,1799076,1,2,Active Shallow Crust,0.0,89.98976,0.0,02/23/4095 +2.85744,44.18171,5752,12,23,5,29,50,3.85,15.0,fr,42834,115,1799086,1,1,Active Shallow Crust,128.8959,89.9936,0.0,12/23/5752 +2.85744,44.18171,5558,12,3,5,18,54,3.95,5.0,fr,42835,111,1799088,1,2,Active Shallow Crust,0.0,89.99088,0.0,12/03/5558 +2.85744,44.18171,1517,11,29,10,15,38,3.95,5.0,fr,42836,30,1799088,1,2,Active Shallow Crust,0.0,89.99088,0.0,11/29/1517 +2.85744,44.18171,1810,2,5,7,57,36,4.05,5.0,fr,42837,36,1799100,1,2,Active Shallow Crust,0.0,89.98983,0.0,02/05/1810 +2.85744,44.18171,4380,8,29,14,40,28,4.05,5.0,fr,42838,87,1799100,1,2,Active Shallow Crust,0.0,89.98983,0.0,08/29/4380 +2.85744,44.18171,6739,5,17,3,20,21,4.35,5.0,fr,42839,134,1799136,1,1,Active Shallow Crust,0.0,89.98992,0.0,05/17/6739 +7.17949,44.63516,6995,8,6,7,43,31,3.55,5.0,fr,42840,139,1799520,1,5,Active Shallow Crust,0.0,89.99282,0.0,08/06/6995 +7.17949,44.63516,6138,12,20,0,42,29,3.55,5.0,fr,42841,122,1799520,1,5,Active Shallow Crust,0.0,89.99282,0.0,12/20/6138 +7.17949,44.63516,646,12,2,3,4,45,3.55,5.0,fr,42842,12,1799520,1,5,Active Shallow Crust,0.0,89.99282,0.0,12/02/0646 +7.17949,44.63516,4842,8,19,15,53,33,3.55,5.0,fr,42843,96,1799520,1,5,Active Shallow Crust,0.0,89.99282,0.0,08/19/4842 +7.17949,44.63516,2637,12,15,23,26,47,3.55,5.0,fr,42844,52,1799520,1,5,Active Shallow Crust,0.0,89.99282,0.0,12/15/2637 +7.17949,44.63516,133,2,3,7,30,46,3.55,15.0,fr,42845,2,1799521,1,3,Active Shallow Crust,0.0,89.99282,0.0,02/03/0133 +7.17949,44.63516,7998,7,30,19,47,7,3.55,15.0,fr,42846,159,1799521,1,3,Active Shallow Crust,0.0,89.99282,0.0,07/30/7998 +7.17949,44.63516,9589,9,1,23,25,6,3.55,15.0,fr,42847,191,1799521,1,3,Active Shallow Crust,0.0,89.99282,0.0,09/01/9589 +7.17949,44.63516,4241,12,23,18,7,12,3.55,27.5,fr,42848,84,1799522,1,2,Active Shallow Crust,0.0,89.99282,0.0,12/23/4241 +7.17949,44.63516,535,8,26,2,6,10,3.55,27.5,fr,42849,10,1799522,1,2,Active Shallow Crust,0.0,89.99282,0.0,08/26/0535 +7.17949,44.63516,1959,9,30,22,17,58,3.55,5.0,fr,42850,39,1799529,1,1,Active Shallow Crust,128.8958,89.99641,0.0,09/30/1959 +7.17949,44.63516,1359,8,19,21,36,45,3.55,15.0,fr,42851,27,1799530,1,1,Active Shallow Crust,128.8958,89.99641,0.0,08/19/1359 +7.17949,44.63516,7766,4,7,14,39,37,3.65,5.0,fr,42852,155,1799532,1,3,Active Shallow Crust,0.0,89.98721,0.0,04/07/7766 +7.17949,44.63516,7604,10,26,17,22,20,3.65,5.0,fr,42853,152,1799532,1,3,Active Shallow Crust,0.0,89.98721,0.0,10/26/7604 +7.17949,44.63516,8511,7,10,16,51,5,3.65,5.0,fr,42854,170,1799532,1,3,Active Shallow Crust,0.0,89.98721,0.0,07/10/8511 +7.17949,44.63516,2252,9,28,0,32,43,3.65,15.0,fr,42855,45,1799533,1,1,Active Shallow Crust,0.0,89.98721,0.0,09/28/2252 +7.17949,44.63516,79,9,9,23,23,23,3.65,15.0,fr,42856,1,1799536,1,1,Active Shallow Crust,240.0009,58.01224,0.0,09/09/0079 +7.17949,44.63516,2042,4,29,18,32,37,3.65,5.0,fr,42857,40,1799538,1,3,Active Shallow Crust,0.0,89.98706,-90.0,04/29/2042 +7.17949,44.63516,7260,7,16,8,32,0,3.65,5.0,fr,42858,145,1799538,1,3,Active Shallow Crust,0.0,89.98706,-90.0,07/16/7260 +7.17949,44.63516,4162,6,15,22,49,47,3.65,5.0,fr,42859,83,1799538,1,3,Active Shallow Crust,0.0,89.98706,-90.0,06/15/4162 +7.17949,44.63516,6501,12,13,15,51,38,3.65,5.0,fr,42860,130,1799541,1,1,Active Shallow Crust,128.9011,89.96349,0.0,12/13/6501 +7.17949,44.63516,6232,12,22,9,27,1,3.65,27.5,fr,42861,124,1799543,1,1,Active Shallow Crust,128.9011,89.96349,0.0,12/22/6232 +7.17949,44.63516,6446,3,8,6,1,26,3.75,5.0,fr,42862,128,1799544,1,2,Active Shallow Crust,0.0,89.9886,0.0,03/08/6446 +7.17949,44.63516,5409,10,27,15,45,28,3.75,5.0,fr,42863,108,1799544,1,2,Active Shallow Crust,0.0,89.9886,0.0,10/27/5409 +7.17949,44.63516,9358,6,11,9,46,22,3.85,5.0,fr,42864,187,1799556,1,3,Active Shallow Crust,0.0,89.98984,0.0,06/11/9358 +7.17949,44.63516,1858,8,1,9,32,40,3.85,5.0,fr,42865,37,1799556,1,3,Active Shallow Crust,0.0,89.98984,0.0,08/01/1858 +7.17949,44.63516,3381,2,24,16,35,13,3.85,5.0,fr,42866,67,1799556,1,3,Active Shallow Crust,0.0,89.98984,0.0,02/24/3381 +7.17949,44.63516,5219,12,8,11,37,59,3.95,5.0,fr,42867,104,1799568,1,3,Active Shallow Crust,0.0,89.99094,0.0,12/08/5219 +7.17949,44.63516,2122,3,12,16,59,48,3.95,5.0,fr,42868,42,1799568,1,3,Active Shallow Crust,0.0,89.99094,0.0,03/12/2122 +7.17949,44.63516,5192,8,19,22,17,54,3.95,5.0,fr,42869,103,1799568,1,3,Active Shallow Crust,0.0,89.99094,0.0,08/19/5192 +7.17949,44.63516,6503,4,6,17,53,13,3.95,15.0,fr,42870,130,1799569,1,1,Active Shallow Crust,0.0,89.99094,0.0,04/06/6503 +7.17949,44.63516,8677,4,16,6,8,6,3.95,27.5,fr,42871,173,1799570,1,1,Active Shallow Crust,0.0,89.99094,0.0,04/16/8677 +7.17949,44.63516,123,2,14,11,24,12,3.95,5.0,fr,42872,2,1799571,1,1,Active Shallow Crust,240.0188,58.00487,0.0,02/14/0123 +7.17949,44.63516,4834,11,22,7,33,55,4.05,5.0,fr,42873,96,1799583,1,1,Active Shallow Crust,240.0055,58.00588,0.0,11/22/4834 +7.17949,44.63516,928,10,7,17,27,58,4.05,5.0,fr,42874,18,1799586,1,1,Active Shallow Crust,0.0,89.99184,-90.0,10/07/0928 +7.17949,44.63516,3596,12,3,16,35,55,4.15,5.0,fr,42875,71,1799592,1,5,Active Shallow Crust,0.0,89.98921,0.0,12/03/3596 +7.17949,44.63516,7109,1,31,14,13,13,4.15,5.0,fr,42876,142,1799592,1,5,Active Shallow Crust,0.0,89.98921,0.0,01/31/7109 +7.17949,44.63516,2965,7,10,10,52,16,4.15,5.0,fr,42877,59,1799592,1,5,Active Shallow Crust,0.0,89.98921,0.0,07/10/2965 +7.17949,44.63516,1477,4,1,11,35,32,4.15,5.0,fr,42878,29,1799592,1,5,Active Shallow Crust,0.0,89.98921,0.0,04/01/1477 +7.17949,44.63516,6911,6,29,6,9,27,4.15,5.0,fr,42879,138,1799592,1,5,Active Shallow Crust,0.0,89.98921,0.0,06/29/6911 +7.17949,44.63516,1935,8,25,16,51,37,4.15,5.0,fr,42880,38,1799595,1,2,Active Shallow Crust,240.0081,57.99734,0.0,08/25/1935 +7.17949,44.63516,1080,11,6,14,8,34,4.15,5.0,fr,42881,21,1799595,1,2,Active Shallow Crust,240.0081,57.99734,0.0,11/06/1080 +7.17949,44.63516,9421,7,5,1,40,57,4.15,15.0,fr,42882,188,1799596,1,1,Active Shallow Crust,240.0081,57.99736,0.0,07/05/9421 +7.17949,44.63516,8548,7,15,4,56,32,4.15,5.0,fr,42883,170,1799598,1,1,Active Shallow Crust,0.0,89.98908,-90.0,07/15/8548 +7.17949,44.63516,1266,6,18,13,2,0,4.15,5.0,fr,42884,25,1799601,1,2,Active Shallow Crust,128.8985,89.99281,0.0,06/18/1266 +7.17949,44.63516,1176,11,4,2,2,32,4.15,5.0,fr,42885,23,1799601,1,2,Active Shallow Crust,128.8985,89.99281,0.0,11/04/1176 +7.17949,44.63516,9817,4,5,20,9,45,4.25,5.0,fr,42886,196,1799604,1,2,Active Shallow Crust,0.0,89.99039,0.0,04/05/9817 +7.17949,44.63516,2760,4,10,7,51,23,4.25,5.0,fr,42887,55,1799604,1,2,Active Shallow Crust,0.0,89.99039,0.0,04/10/2760 +7.17949,44.63516,1931,9,4,14,24,57,4.25,15.0,fr,42888,38,1799608,1,1,Active Shallow Crust,240.0072,57.99408,0.0,09/04/1931 +7.17949,44.63516,3677,11,10,4,22,43,4.35,15.0,fr,42889,73,1799620,1,1,Active Shallow Crust,240.0081,57.9957,0.0,11/10/3677 +7.17949,44.63516,6475,5,20,2,48,53,4.45,5.0,fr,42890,129,1799634,1,1,Active Shallow Crust,0.0,89.9897,-90.0,05/20/6475 +7.17949,44.63516,5834,9,27,17,10,14,4.65,5.0,fr,42891,116,1799652,1,1,Active Shallow Crust,0.0,89.98988,0.0,09/27/5834 +7.17949,44.63516,6597,11,22,4,21,14,4.65,15.0,fr,42892,131,1799653,1,1,Active Shallow Crust,0.0,89.98988,0.0,11/22/6597 +7.17949,44.63516,3244,12,31,0,52,4,4.75,5.0,fr,42893,64,1799667,1,1,Active Shallow Crust,240.007,58.00425,0.0,12/31/3244 +7.17949,44.63516,9007,9,4,15,26,36,4.95,5.0,fr,42894,180,1799694,1,1,Active Shallow Crust,0.0,89.98986,-90.0,09/04/9007 +7.17949,44.63516,6705,4,29,21,57,14,5.05,5.0,fr,42895,134,1799703,1,1,Active Shallow Crust,240.0211,57.99742,0.0,04/29/6705 +7.17949,44.63516,5708,2,12,3,2,41,5.05,27.5,fr,42896,114,1799708,1,1,Active Shallow Crust,0.0,89.98967,-90.0,02/12/5708 +7.17949,44.63516,5672,2,9,4,46,52,5.35,5.0,fr,42897,113,1799736,1,1,Active Shallow Crust,0.0,89.99006,0.0,02/09/5672 +7.57437,44.94438,5566,9,28,10,41,27,3.55,5.0,fr,42898,111,1800000,1,1,Active Shallow Crust,0.0,89.99286,0.0,09/28/5566 +7.57437,44.94438,4807,9,2,13,56,50,3.55,15.0,fr,42899,96,1800001,1,2,Active Shallow Crust,0.0,89.99286,0.0,09/02/4807 +7.57437,44.94438,2496,3,5,11,12,0,3.55,15.0,fr,42900,49,1800001,1,2,Active Shallow Crust,0.0,89.99286,0.0,03/05/2496 +7.57437,44.94438,3241,5,30,11,53,47,3.55,27.5,fr,42901,64,1800002,1,1,Active Shallow Crust,0.0,89.99286,0.0,05/30/3241 +7.57437,44.94438,264,5,16,4,29,30,3.55,5.0,fr,42902,5,1800006,1,1,Active Shallow Crust,0.0,89.99278,-90.0,05/16/0264 +7.57437,44.94438,5350,2,19,9,45,5,3.55,15.0,fr,42903,106,1800007,1,1,Active Shallow Crust,0.0,89.99278,-90.0,02/19/5350 +7.57437,44.94438,1117,2,24,2,55,33,3.65,15.0,fr,42904,22,1800013,1,1,Active Shallow Crust,0.0,89.98727,0.0,02/24/1117 +7.57437,44.94438,8231,10,14,7,33,5,3.65,27.5,fr,42905,164,1800014,1,1,Active Shallow Crust,0.0,89.98727,0.0,10/14/8231 +7.57437,44.94438,5528,12,15,23,29,56,3.65,5.0,fr,42906,110,1800018,1,1,Active Shallow Crust,0.0,89.98713,-90.0,12/15/5528 +7.57437,44.94438,186,1,19,16,23,44,3.65,5.0,fr,42907,3,1800021,1,1,Active Shallow Crust,128.9009,89.96349,0.0,01/19/0186 +7.57437,44.94438,8527,2,24,23,58,54,3.75,5.0,fr,42908,170,1800024,1,2,Active Shallow Crust,0.0,89.98866,0.0,02/24/8527 +7.57437,44.94438,7554,11,24,10,0,42,3.75,5.0,fr,42909,151,1800024,1,2,Active Shallow Crust,0.0,89.98866,0.0,11/24/7554 +7.57437,44.94438,8351,7,18,15,35,40,3.75,15.0,fr,42910,167,1800025,1,1,Active Shallow Crust,0.0,89.98866,0.0,07/18/8351 +7.57437,44.94438,5636,1,11,20,11,18,3.75,5.0,fr,42911,112,1800027,1,1,Active Shallow Crust,240.0082,58.01683,0.0,01/11/5636 +7.57437,44.94438,598,1,13,10,19,10,3.85,5.0,fr,42912,11,1800036,1,1,Active Shallow Crust,0.0,89.98989,0.0,01/13/0598 +7.57437,44.94438,8263,9,10,20,55,42,3.85,15.0,fr,42913,165,1800037,1,2,Active Shallow Crust,0.0,89.98989,0.0,09/10/8263 +7.57437,44.94438,588,2,29,23,1,58,3.85,15.0,fr,42914,11,1800037,1,2,Active Shallow Crust,0.0,89.98989,0.0,02/29/0588 +7.57437,44.94438,1546,11,7,16,24,24,3.85,27.5,fr,42915,30,1800038,1,1,Active Shallow Crust,0.0,89.98989,0.0,11/07/1546 +7.57437,44.94438,5625,4,27,17,31,37,3.95,15.0,fr,42916,112,1800058,1,1,Active Shallow Crust,128.9006,89.99325,0.0,04/27/5625 +7.57437,44.94438,9759,11,22,21,44,36,4.05,5.0,fr,42917,195,1800060,1,2,Active Shallow Crust,0.0,89.99197,0.0,11/22/9759 +7.57437,44.94438,1062,3,27,9,32,29,4.05,5.0,fr,42918,21,1800060,1,2,Active Shallow Crust,0.0,89.99197,0.0,03/27/1062 +7.57437,44.94438,1331,11,1,18,30,39,4.05,15.0,fr,42919,26,1800061,1,1,Active Shallow Crust,0.0,89.99197,0.0,11/01/1331 +7.57437,44.94438,1683,4,18,5,35,7,4.15,5.0,fr,42920,33,1800072,1,1,Active Shallow Crust,0.0,89.98927,0.0,04/18/1683 +7.57437,44.94438,7399,11,4,8,19,19,4.15,15.0,fr,42921,147,1800073,1,1,Active Shallow Crust,0.0,89.98927,0.0,11/04/7399 +7.57437,44.94438,548,11,16,6,55,49,4.15,15.0,fr,42922,10,1800076,1,1,Active Shallow Crust,240.008,57.99763,0.0,11/16/0548 +7.57437,44.94438,7980,7,18,12,23,3,4.15,15.0,fr,42923,159,1800082,1,2,Active Shallow Crust,128.8976,89.99464,0.0,07/18/7980 +7.57437,44.94438,8637,10,21,14,43,2,4.15,15.0,fr,42924,172,1800082,1,2,Active Shallow Crust,128.8976,89.99464,0.0,10/21/8637 +7.57437,44.94438,9391,2,19,22,40,27,4.25,15.0,fr,42925,187,1800085,1,1,Active Shallow Crust,0.0,89.99043,0.0,02/19/9391 +7.57437,44.94438,9427,2,15,0,28,1,4.25,27.5,fr,42926,188,1800089,1,1,Active Shallow Crust,240.0078,57.994,0.0,02/15/9427 +7.57437,44.94438,8724,9,22,8,41,47,4.35,5.0,fr,42927,174,1800096,1,1,Active Shallow Crust,0.0,89.98863,0.0,09/22/8724 +7.57437,44.94438,1920,6,25,19,43,36,4.35,27.5,fr,42928,38,1800098,1,1,Active Shallow Crust,0.0,89.98863,0.0,06/25/1920 +7.57437,44.94438,8552,11,30,17,2,25,4.45,5.0,fr,42929,171,1800108,1,1,Active Shallow Crust,0.0,89.98987,0.0,11/30/8552 +7.57437,44.94438,2591,7,10,14,3,38,4.65,15.0,fr,42930,51,1800133,1,1,Active Shallow Crust,0.0,89.98994,0.0,07/10/2591 +7.57437,44.94438,4585,5,7,9,46,57,5.25,15.0,fr,42931,91,1800205,1,1,Active Shallow Crust,0.0,89.98991,0.0,05/07/4585 +7.29347,50.04456,3125,5,30,4,3,58,3.55,5.0,fr,42932,62,1800489,1,1,Active Shallow Crust,128.8958,89.99352,0.0,05/30/3125 +7.29347,50.04456,5388,4,21,1,12,2,3.75,5.0,fr,42933,107,1800504,1,2,Active Shallow Crust,0.0,89.98972,0.0,04/21/5388 +7.29347,50.04456,8436,8,1,8,14,37,3.75,5.0,fr,42934,168,1800504,1,2,Active Shallow Crust,0.0,89.98972,0.0,08/01/8436 +7.29347,50.04456,326,7,1,14,6,53,3.75,5.0,fr,42935,6,1800510,1,1,Active Shallow Crust,0.0,89.98959,-90.0,07/01/0326 +7.29347,50.04456,8658,10,1,12,35,30,3.95,5.0,fr,42936,173,1800531,1,1,Active Shallow Crust,240.0199,58.00555,0.0,10/01/8658 +7.29347,50.04456,1099,2,19,6,56,19,3.95,5.0,fr,42937,21,1800534,1,1,Active Shallow Crust,0.0,89.99173,-90.0,02/19/1099 +7.29347,50.04456,6371,2,7,22,10,13,4.05,15.0,fr,42938,127,1800541,1,1,Active Shallow Crust,0.0,89.98907,0.0,02/07/6371 +7.29347,50.04456,1381,6,15,0,20,4,4.15,5.0,fr,42939,27,1800555,1,1,Active Shallow Crust,240.0091,57.99764,0.0,06/15/1381 +7.29347,50.04456,6731,12,13,4,38,53,4.35,5.0,fr,42940,134,1800582,1,1,Active Shallow Crust,0.0,89.98957,-90.0,12/13/6731 +1.98161,49.85227,1376,11,9,19,11,33,3.65,5.0,fr,42941,27,1800975,1,1,Active Shallow Crust,240.0014,58.01279,0.0,11/09/1376 +1.98161,49.85227,7464,1,14,4,16,14,3.95,5.0,fr,42942,149,1801008,1,1,Active Shallow Crust,0.0,89.98975,0.0,01/14/7464 +1.98161,49.85227,3162,7,6,22,21,2,5.05,5.0,fr,42943,63,1801149,1,1,Active Shallow Crust,128.8839,89.99042,0.0,07/06/3162 +3.95483,52.20722,4177,8,7,21,17,5,3.55,5.0,fr,42944,83,1801443,1,1,Active Shallow Crust,240.0129,57.99802,0.0,08/07/4177 +3.95483,52.20722,2537,10,14,22,3,21,3.65,15.0,fr,42945,50,1801453,1,1,Active Shallow Crust,0.0,89.98898,0.0,10/14/2537 +3.95483,52.20722,8094,8,11,19,5,20,3.85,27.5,fr,42946,161,1801487,1,1,Active Shallow Crust,128.8952,89.99344,0.0,08/11/8094 +3.95483,52.20722,5018,3,3,16,46,1,4.65,5.0,fr,42947,100,1801572,1,1,Active Shallow Crust,0.0,89.99042,0.0,03/03/5018 +3.95483,52.20722,2007,7,11,6,59,57,4.65,15.0,fr,42948,40,1801576,1,1,Active Shallow Crust,240.0129,57.99457,0.0,07/11/2007 +3.95483,52.20722,9496,1,8,16,15,4,6.65,15.0,fr,42949,189,1801813,1,1,Active Shallow Crust,0.0,89.98997,0.0,01/08/9496 +1.44043,49.30706,9847,11,26,21,38,35,3.55,5.0,fr,42950,196,1801920,1,2,Active Shallow Crust,0.0,89.99014,0.0,11/26/9847 +1.44043,49.30706,2502,3,6,0,8,11,3.55,5.0,fr,42951,50,1801920,1,2,Active Shallow Crust,0.0,89.99014,0.0,03/06/2502 +1.44043,49.30706,5972,6,3,1,13,51,3.55,15.0,fr,42952,119,1801921,1,1,Active Shallow Crust,0.0,89.99014,0.0,06/03/5972 +1.44043,49.30706,9567,9,29,12,38,30,3.65,5.0,fr,42953,191,1801932,1,1,Active Shallow Crust,0.0,89.98975,0.0,09/29/9567 +1.44043,49.30706,1706,5,12,18,31,52,3.75,15.0,fr,42954,34,1801945,1,1,Active Shallow Crust,0.0,89.98956,0.0,05/12/1706 +1.44043,49.30706,2350,5,18,2,52,14,3.95,5.0,fr,42955,46,1801968,1,1,Active Shallow Crust,0.0,89.98963,0.0,05/18/2350 +1.66391,43.32878,1644,9,25,11,48,0,3.55,15.0,fr,42956,32,1802404,1,2,Active Shallow Crust,240.012,57.99802,0.0,09/25/1644 +1.66391,43.32878,4315,12,11,9,57,21,3.55,15.0,fr,42957,86,1802404,1,2,Active Shallow Crust,240.012,57.99802,0.0,12/11/4315 +1.66391,43.32878,3588,9,7,12,50,27,3.65,27.5,fr,42958,71,1802414,1,1,Active Shallow Crust,0.0,89.9902,0.0,09/07/3588 +1.66391,43.32878,8144,6,30,6,11,24,4.05,5.0,fr,42959,162,1802466,1,1,Active Shallow Crust,0.0,89.98957,-90.0,06/30/8144 +1.66391,43.32878,6515,5,10,17,54,59,5.05,15.0,fr,42960,130,1802581,1,1,Active Shallow Crust,0.0,89.98989,0.0,05/10/6515 +2.81954,53.45674,5445,10,16,4,54,59,4.45,15.0,fr,42961,108,1802989,1,1,Active Shallow Crust,0.0,89.99041,0.0,10/16/5445 +3.47032,51.82132,2190,2,26,21,6,14,3.75,5.0,fr,42962,43,1803384,1,1,Active Shallow Crust,0.0,89.9901,0.0,02/26/2190 +3.47032,51.82132,9867,11,16,23,5,42,3.75,5.0,fr,42963,197,1803387,1,1,Active Shallow Crust,240.009,58.01746,0.0,11/16/9867 +8.22365,45.01509,263,8,15,5,25,46,3.65,5.0,fr,42964,5,1803852,1,2,Active Shallow Crust,0.0,89.9873,0.0,08/15/0263 +8.22365,45.01509,2691,12,13,13,27,48,3.65,5.0,fr,42965,53,1803852,1,2,Active Shallow Crust,0.0,89.9873,0.0,12/13/2691 +8.22365,45.01509,8275,8,25,21,8,27,3.65,5.0,fr,42966,165,1803855,1,1,Active Shallow Crust,240.0,58.01413,0.0,08/25/8275 +8.22365,45.01509,4622,7,4,21,40,3,3.75,5.0,fr,42967,92,1803867,1,1,Active Shallow Crust,240.0074,58.01756,0.0,07/04/4622 +8.22365,45.01509,4592,8,4,3,21,43,3.85,5.0,fr,42968,91,1803876,1,2,Active Shallow Crust,0.0,89.98991,0.0,08/04/4592 +8.22365,45.01509,7714,3,6,6,56,47,3.85,5.0,fr,42969,154,1803876,1,2,Active Shallow Crust,0.0,89.98991,0.0,03/06/7714 +8.22365,45.01509,7536,3,18,12,45,16,4.35,15.0,fr,42970,150,1803937,1,1,Active Shallow Crust,0.0,89.98865,0.0,03/18/7536 +8.22365,45.01509,8299,2,26,12,55,29,4.55,5.0,fr,42971,165,1803960,1,2,Active Shallow Crust,0.0,89.99098,0.0,02/26/8299 +8.22365,45.01509,6425,1,1,5,42,49,4.55,5.0,fr,42972,128,1803960,1,2,Active Shallow Crust,0.0,89.99098,0.0,01/01/6425 +3.43438,50.79899,7030,3,30,16,2,22,3.65,5.0,fr,42973,140,1804332,1,1,Active Shallow Crust,0.0,89.98864,0.0,03/30/7030 +3.43438,50.79899,9053,3,10,6,22,9,3.75,15.0,fr,42974,181,1804345,1,1,Active Shallow Crust,0.0,89.98988,0.0,03/10/9053 +3.43438,50.79899,9745,7,3,12,17,14,4.05,5.0,fr,42975,194,1804383,1,1,Active Shallow Crust,240.0067,58.00595,0.0,07/03/9745 +3.43438,50.79899,7848,12,28,16,4,44,4.25,15.0,fr,42976,156,1804405,1,1,Active Shallow Crust,0.0,89.99004,0.0,12/28/7848 +2.90446,51.30052,5395,10,14,21,54,56,3.55,5.0,fr,42977,107,1804800,1,2,Active Shallow Crust,0.0,89.99054,0.0,10/14/5395 +2.90446,51.30052,9168,9,11,14,37,5,3.55,5.0,fr,42978,183,1804800,1,2,Active Shallow Crust,0.0,89.99054,0.0,09/11/9168 +2.90446,51.30052,7164,12,5,10,21,59,3.65,5.0,fr,42979,143,1804812,1,1,Active Shallow Crust,0.0,89.98876,0.0,12/05/7164 +2.90446,51.30052,2737,1,2,17,33,30,3.65,15.0,fr,42980,54,1804813,1,1,Active Shallow Crust,0.0,89.98876,0.0,01/02/2737 +2.90446,51.30052,1325,8,9,10,13,8,3.75,5.0,fr,42981,26,1804827,1,1,Active Shallow Crust,240.0092,58.01764,0.0,08/09/1325 +2.90446,51.30052,787,1,29,20,27,51,3.85,5.0,fr,42982,15,1804836,1,2,Active Shallow Crust,0.0,89.99107,0.0,01/29/0787 +2.90446,51.30052,5826,3,29,0,39,59,3.85,5.0,fr,42983,116,1804836,1,2,Active Shallow Crust,0.0,89.99107,0.0,03/29/5826 +2.90446,51.30052,7522,4,17,10,25,36,4.05,15.0,fr,42984,150,1804861,1,1,Active Shallow Crust,0.0,89.98936,0.0,04/17/7522 +2.90446,51.30052,1318,11,29,22,50,52,4.45,15.0,fr,42985,26,1804909,1,1,Active Shallow Crust,0.0,89.98993,0.0,11/29/1318 +2.904474,51.30052,843,8,19,0,1,3,6.65,10.56744,fr,42986,16,1805178,1,1,Active Shallow Crust,360.0,89.99001,-90.0,08/19/0843 +9.01544,49.48014,6930,1,31,6,31,38,3.55,15.0,fr,42987,138,1805281,1,2,Active Shallow Crust,0.0,89.9869,0.0,01/31/6930 +9.01544,49.48014,6209,12,21,7,47,4,3.55,15.0,fr,42988,124,1805281,1,2,Active Shallow Crust,0.0,89.9869,0.0,12/21/6209 +9.01544,49.48014,7395,2,17,19,14,14,3.55,5.0,fr,42989,147,1805286,1,1,Active Shallow Crust,0.0,89.98675,-90.0,02/17/7395 +9.01544,49.48014,7350,11,20,2,48,30,3.65,5.0,fr,42990,146,1805292,1,1,Active Shallow Crust,0.0,89.98832,0.0,11/20/7350 +9.01544,49.48014,750,5,10,11,13,35,3.75,5.0,fr,42991,14,1805304,1,1,Active Shallow Crust,0.0,89.98959,0.0,05/10/0750 +9.01544,49.48014,7467,6,17,16,13,45,3.75,15.0,fr,42992,149,1805305,1,1,Active Shallow Crust,0.0,89.98959,0.0,06/17/7467 +9.01544,49.48014,9257,5,11,22,47,47,3.85,5.0,fr,42993,185,1805316,1,2,Active Shallow Crust,0.0,89.99072,0.0,05/11/9257 +9.01544,49.48014,4105,3,27,17,20,33,3.85,5.0,fr,42994,82,1805316,1,2,Active Shallow Crust,0.0,89.99072,0.0,03/27/4105 +9.01544,49.48014,571,10,28,19,32,58,3.95,5.0,fr,42995,11,1805328,1,1,Active Shallow Crust,0.0,89.99173,0.0,10/28/0571 +9.01544,49.48014,2546,7,27,19,35,18,4.05,5.0,fr,42996,50,1805340,1,1,Active Shallow Crust,0.0,89.99263,0.0,07/27/2546 +9.01544,49.48014,8007,12,7,7,55,45,4.45,5.0,fr,42997,160,1805388,1,1,Active Shallow Crust,0.0,89.9907,0.0,12/07/8007 +9.01544,49.48014,7948,1,1,1,56,47,4.45,5.0,fr,42998,158,1805391,1,1,Active Shallow Crust,240.0068,57.99472,0.0,01/01/7948 +9.01544,49.48014,910,2,16,18,37,37,6.75,15.0,fr,42999,18,1805671,1,1,Active Shallow Crust,0.0,89.98999,-90.0,02/16/0910 +4.26044,44.65453,4062,11,3,15,34,2,3.55,5.0,fr,43000,81,1805760,1,2,Active Shallow Crust,0.0,89.99283,0.0,11/03/4062 +4.26044,44.65453,2688,12,15,16,35,52,3.55,5.0,fr,43001,53,1805760,1,2,Active Shallow Crust,0.0,89.99283,0.0,12/15/2688 +4.26044,44.65453,8370,9,4,6,40,51,3.55,15.0,fr,43002,167,1805770,1,1,Active Shallow Crust,128.8961,89.99283,0.0,09/04/8370 +4.26044,44.65453,724,4,4,23,40,44,3.65,5.0,fr,43003,14,1805772,1,1,Active Shallow Crust,0.0,89.98721,0.0,04/04/0724 +4.26044,44.65453,9661,8,31,17,49,25,3.65,27.5,fr,43004,193,1805777,1,1,Active Shallow Crust,240.0006,58.01295,0.0,08/31/9661 +4.26044,44.65453,518,9,30,17,28,33,3.75,5.0,fr,43005,10,1805784,1,2,Active Shallow Crust,0.0,89.9886,0.0,09/30/0518 +4.26044,44.65453,3794,7,29,0,0,37,3.75,5.0,fr,43006,75,1805784,1,2,Active Shallow Crust,0.0,89.9886,0.0,07/29/3794 +4.26044,44.65453,3087,1,23,16,22,49,3.85,5.0,fr,43007,61,1805796,1,1,Active Shallow Crust,0.0,89.98985,0.0,01/23/3087 +4.26044,44.65453,8137,5,31,19,31,52,3.85,5.0,fr,43008,162,1805799,1,1,Active Shallow Crust,240.01,57.99746,0.0,05/31/8137 +4.26044,44.65453,3104,6,5,3,4,12,3.95,5.0,fr,43009,62,1805808,1,1,Active Shallow Crust,0.0,89.99094,0.0,06/05/3104 +4.26044,44.65453,6960,11,15,7,43,1,4.05,15.0,fr,43010,139,1805821,1,1,Active Shallow Crust,0.0,89.99194,0.0,11/15/6960 +4.26044,44.65453,1365,8,11,4,24,56,4.15,5.0,fr,43011,27,1805832,1,1,Active Shallow Crust,0.0,89.98921,0.0,08/11/1365 +4.26044,44.65453,4072,10,24,3,21,35,4.15,15.0,fr,43012,81,1805836,1,1,Active Shallow Crust,240.0079,57.99722,0.0,10/24/4072 +4.26044,44.65453,6315,8,19,5,55,50,4.15,27.5,fr,43013,126,1805843,1,1,Active Shallow Crust,128.8988,89.99281,0.0,08/19/6315 +4.26044,44.65453,2533,12,30,12,38,47,4.25,15.0,fr,43014,50,1805848,1,1,Active Shallow Crust,240.0069,57.99419,0.0,12/30/2533 +4.26044,44.65453,7503,9,8,16,0,13,4.55,15.0,fr,43015,150,1805881,1,1,Active Shallow Crust,0.0,89.99093,0.0,09/08/7503 +4.26044,44.65453,6001,9,11,6,22,41,4.55,15.0,fr,43016,120,1805890,1,1,Active Shallow Crust,128.8945,89.98554,0.0,09/11/6001 +4.26044,44.65453,1358,4,11,11,18,2,5.05,15.0,fr,43017,27,1805950,1,1,Active Shallow Crust,128.886,89.99081,0.0,04/11/1358 +1.24308,43.96055,9726,6,29,23,7,38,3.85,5.0,fr,43018,194,1806282,1,1,Active Shallow Crust,0.0,89.9896,-90.0,06/29/9726 +1.24308,43.96055,6350,3,9,3,9,6,3.95,27.5,fr,43019,126,1806296,1,1,Active Shallow Crust,0.0,89.98958,-90.0,03/09/6350 +1.24308,43.96055,9991,1,14,2,44,34,4.35,5.0,fr,43020,199,1806336,1,1,Active Shallow Crust,0.0,89.98988,0.0,01/14/9991 +3.86254,43.2736,7738,6,25,13,37,37,3.55,5.0,fr,43021,154,1806729,1,1,Active Shallow Crust,128.8958,89.99449,0.0,06/25/7738 +3.86254,43.2736,8641,1,25,16,12,58,3.65,5.0,fr,43022,172,1806732,1,1,Active Shallow Crust,0.0,89.99018,0.0,01/25/8641 +3.86254,43.2736,8166,9,14,7,41,50,3.65,15.0,fr,43023,163,1806742,1,1,Active Shallow Crust,128.9004,89.96346,0.0,09/14/8166 +3.86254,43.2736,5812,11,13,10,36,14,3.75,5.0,fr,43024,116,1806744,1,2,Active Shallow Crust,0.0,89.99125,0.0,11/13/5812 +3.86254,43.2736,2839,6,1,11,49,5,3.75,5.0,fr,43025,56,1806744,1,2,Active Shallow Crust,0.0,89.99125,0.0,06/01/2839 +3.86254,43.2736,8531,1,30,16,11,37,4.05,5.0,fr,43026,170,1806780,1,1,Active Shallow Crust,0.0,89.98968,0.0,01/30/8531 +3.86254,43.2736,9664,11,9,9,27,20,4.05,15.0,fr,43027,193,1806784,1,1,Active Shallow Crust,240.0054,58.00589,0.0,11/09/9664 +3.23297,42.11127,6165,3,8,8,44,54,3.55,27.5,fr,43028,123,1807202,1,1,Active Shallow Crust,0.0,89.98878,0.0,03/08/6165 +3.23297,42.11127,290,1,29,3,18,22,3.55,5.0,fr,43029,5,1807206,1,1,Active Shallow Crust,0.0,89.98865,-90.0,01/29/0290 +3.23297,42.11127,8013,2,18,4,0,8,3.65,15.0,fr,43030,160,1807213,1,1,Active Shallow Crust,0.0,89.99,0.0,02/18/8013 +3.23297,42.11127,8942,6,3,4,36,28,3.65,5.0,fr,43031,178,1807221,1,1,Active Shallow Crust,128.9011,89.96344,0.0,06/03/8942 +3.23297,42.11127,1303,7,23,21,19,45,3.75,15.0,fr,43032,26,1807225,1,1,Active Shallow Crust,0.0,89.99109,0.0,07/23/1303 +3.23297,42.11127,6391,1,3,15,29,58,4.05,15.0,fr,43033,127,1807261,1,1,Active Shallow Crust,0.0,89.98949,0.0,01/03/6391 +3.23297,42.11127,8307,10,2,12,52,18,4.15,5.0,fr,43034,166,1807281,1,1,Active Shallow Crust,128.8981,89.99344,0.0,10/02/8307 +3.23297,42.11127,1870,5,4,1,7,34,4.35,5.0,fr,43035,37,1807299,1,1,Active Shallow Crust,240.0072,57.99576,0.0,05/04/1870 +3.23297,42.11127,7710,6,9,17,49,14,4.45,5.0,fr,43036,154,1807308,1,1,Active Shallow Crust,0.0,89.98938,0.0,06/09/7710 +-0.0464,41.38312,6541,4,15,4,38,23,3.75,15.0,fr,43037,130,1807705,1,1,Active Shallow Crust,0.0,89.99,0.0,04/15/6541 +-0.0464,41.38312,3833,6,18,4,41,18,3.95,15.0,fr,43038,76,1807729,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/18/3833 +7.93516,48.86296,9746,5,17,16,39,43,3.55,5.0,fr,43039,194,1808160,1,1,Active Shallow Crust,0.0,89.98673,0.0,05/17/9746 +7.93516,48.86296,3165,11,26,8,54,27,3.55,5.0,fr,43040,63,1808163,1,1,Active Shallow Crust,240.0123,57.99799,0.0,11/26/3165 +7.93516,48.86296,8428,7,31,1,59,11,3.55,5.0,fr,43041,168,1808166,1,1,Active Shallow Crust,0.0,89.99329,-90.0,07/31/8428 +7.93516,48.86296,4947,4,30,22,38,20,3.65,5.0,fr,43042,98,1808172,1,2,Active Shallow Crust,0.0,89.98817,0.0,04/30/4947 +7.93516,48.86296,4941,1,23,17,48,31,3.65,5.0,fr,43043,98,1808172,1,2,Active Shallow Crust,0.0,89.98817,0.0,01/23/4941 +7.93516,48.86296,130,2,11,7,25,53,3.65,15.0,fr,43044,2,1808176,1,1,Active Shallow Crust,240.0022,58.01203,0.0,02/11/0130 +7.93516,48.86296,8362,6,1,11,35,58,3.65,5.0,fr,43045,167,1808178,1,1,Active Shallow Crust,0.0,89.98804,-90.0,06/01/8362 +7.93516,48.86296,6707,10,6,5,7,33,3.75,5.0,fr,43046,134,1808190,1,1,Active Shallow Crust,0.0,89.98934,-90.0,10/06/6707 +7.93516,48.86296,375,11,14,12,26,26,3.85,5.0,fr,43047,7,1808196,1,1,Active Shallow Crust,0.0,89.99061,0.0,11/14/0375 +7.93516,48.86296,9411,2,5,23,27,16,3.85,15.0,fr,43048,188,1808206,1,2,Active Shallow Crust,128.8954,89.99296,0.0,02/05/9411 +7.93516,48.86296,5282,5,27,22,51,19,3.85,15.0,fr,43049,105,1808206,1,2,Active Shallow Crust,128.8954,89.99296,0.0,05/27/5282 +7.93516,48.86296,7784,12,24,22,48,20,4.05,5.0,fr,43050,155,1808220,1,3,Active Shallow Crust,0.0,89.98881,0.0,12/24/7784 +7.93516,48.86296,9780,4,3,10,22,32,4.05,5.0,fr,43051,195,1808220,1,3,Active Shallow Crust,0.0,89.98881,0.0,04/03/9780 +7.93516,48.86296,9415,7,19,7,24,5,4.05,5.0,fr,43052,188,1808220,1,3,Active Shallow Crust,0.0,89.98881,0.0,07/19/9415 +7.93516,48.86296,6266,4,1,23,53,56,4.15,5.0,fr,43053,125,1808232,1,1,Active Shallow Crust,0.0,89.99003,0.0,04/01/6266 +7.93516,48.86296,8572,7,4,20,40,25,4.15,5.0,fr,43054,171,1808241,1,1,Active Shallow Crust,128.8973,89.99335,0.0,07/04/8572 +7.93516,48.86296,5330,11,26,18,53,48,4.35,5.0,fr,43055,106,1808256,1,2,Active Shallow Crust,0.0,89.98943,0.0,11/26/5330 +7.93516,48.86296,9103,8,16,13,42,32,4.35,5.0,fr,43056,182,1808256,1,2,Active Shallow Crust,0.0,89.98943,0.0,08/16/9103 +7.93516,48.86296,8304,7,26,23,49,20,4.35,5.0,fr,43057,166,1808262,1,1,Active Shallow Crust,0.0,89.98931,-90.0,07/26/8304 +7.93516,48.86296,9911,2,6,13,51,40,4.55,5.0,fr,43058,198,1808280,1,1,Active Shallow Crust,0.0,89.98951,0.0,02/06/9911 +7.93516,48.86296,7229,11,5,11,8,39,4.85,15.0,fr,43059,144,1808317,1,1,Active Shallow Crust,0.0,89.9896,0.0,11/05/7229 +7.93516,48.86296,8426,1,7,15,57,46,5.35,5.0,fr,43060,168,1808376,1,1,Active Shallow Crust,0.0,89.98997,0.0,01/07/8426 +4.59263,45.22653,2997,5,31,21,17,22,3.55,5.0,fr,43061,59,1808640,1,1,Active Shallow Crust,0.0,89.9929,0.0,05/31/2997 +4.59263,45.22653,3119,12,28,17,5,48,3.65,5.0,fr,43062,62,1808652,1,1,Active Shallow Crust,0.0,89.98734,0.0,12/28/3119 +4.59263,45.22653,1419,7,27,2,2,26,3.65,5.0,fr,43063,28,1808655,1,1,Active Shallow Crust,240.0016,58.01244,0.0,07/27/1419 +4.59263,45.22653,9528,12,10,16,52,54,3.65,5.0,fr,43064,190,1808658,1,2,Active Shallow Crust,0.0,89.98719,-90.0,12/10/9528 +4.59263,45.22653,4425,1,1,6,39,22,3.65,5.0,fr,43065,88,1808658,1,2,Active Shallow Crust,0.0,89.98719,-90.0,01/01/4425 +4.59263,45.22653,858,11,19,23,26,18,3.75,5.0,fr,43066,17,1808664,1,1,Active Shallow Crust,0.0,89.98872,0.0,11/19/0858 +4.59263,45.22653,5418,8,27,9,49,2,3.75,5.0,fr,43067,108,1808670,1,1,Active Shallow Crust,0.0,89.98859,-90.0,08/27/5418 +4.59263,45.22653,5660,3,14,22,46,49,3.85,5.0,fr,43068,113,1808676,1,1,Active Shallow Crust,0.0,89.98994,0.0,03/14/5660 +4.59263,45.22653,8901,7,4,22,30,41,3.85,27.5,fr,43069,178,1808678,1,1,Active Shallow Crust,0.0,89.98994,0.0,07/04/8901 +4.59263,45.22653,3401,3,15,4,26,51,4.05,15.0,fr,43070,68,1808701,1,1,Active Shallow Crust,0.0,89.98802,0.0,03/15/3401 +4.59263,45.22653,1642,4,6,8,24,5,4.15,5.0,fr,43071,32,1808718,1,1,Active Shallow Crust,0.0,89.9892,-90.0,04/06/1642 +4.59263,45.22653,9266,8,20,1,14,34,4.25,15.0,fr,43072,185,1808731,1,1,Active Shallow Crust,0.0,89.99037,-90.0,08/20/9266 +4.59263,45.22653,2930,2,23,15,53,26,4.35,5.0,fr,43073,58,1808742,1,1,Active Shallow Crust,0.0,89.99142,-90.0,02/23/2930 +4.59263,45.22653,7216,6,30,4,8,10,4.45,5.0,fr,43074,144,1808748,1,1,Active Shallow Crust,0.0,89.98992,0.0,06/30/7216 +4.59263,45.22653,1699,10,26,7,50,45,4.75,5.0,fr,43075,33,1808784,1,1,Active Shallow Crust,0.0,89.9893,0.0,10/26/1699 +8.01444,47.46923,5199,9,10,7,17,13,3.55,5.0,fr,43076,103,1809120,1,4,Active Shallow Crust,0.0,89.98637,0.0,09/10/5199 +8.01444,47.46923,8028,10,15,14,0,40,3.55,5.0,fr,43077,160,1809120,1,4,Active Shallow Crust,0.0,89.98637,0.0,10/15/8028 +8.01444,47.46923,3127,9,19,17,59,29,3.55,5.0,fr,43078,62,1809120,1,4,Active Shallow Crust,0.0,89.98637,0.0,09/19/3127 +8.01444,47.46923,3320,5,8,11,11,37,3.55,5.0,fr,43079,66,1809120,1,4,Active Shallow Crust,0.0,89.98637,0.0,05/08/3320 +8.01444,47.46923,4959,3,13,15,26,39,3.55,15.0,fr,43080,99,1809121,1,1,Active Shallow Crust,0.0,89.98637,0.0,03/13/4959 +8.01444,47.46923,4373,6,23,23,56,33,3.55,27.5,fr,43081,87,1809122,1,1,Active Shallow Crust,0.0,89.98637,0.0,06/23/4373 +8.01444,47.46923,2891,12,19,5,45,29,3.55,5.0,fr,43082,57,1809123,1,1,Active Shallow Crust,240.0106,57.99839,0.0,12/19/2891 +8.01444,47.46923,3051,9,16,2,6,34,3.55,27.5,fr,43083,61,1809125,1,1,Active Shallow Crust,240.0106,57.99829,0.0,09/16/3051 +8.01444,47.46923,991,6,25,22,17,58,3.55,5.0,fr,43084,19,1809126,1,1,Active Shallow Crust,0.0,89.98621,-90.0,06/25/0991 +8.01444,47.46923,4717,4,29,17,33,4,3.55,15.0,fr,43085,94,1809127,1,1,Active Shallow Crust,0.0,89.98621,-90.0,04/29/4717 +8.01444,47.46923,20,12,26,1,49,31,3.55,5.0,fr,43086,0,1809129,1,2,Active Shallow Crust,128.895,90.0,0.0,12/26/0020 +8.01444,47.46923,4170,11,29,17,16,3,3.55,5.0,fr,43087,83,1809129,1,2,Active Shallow Crust,128.895,90.0,0.0,11/29/4170 +8.01444,47.46923,7344,5,21,2,35,32,3.65,5.0,fr,43088,146,1809132,1,8,Active Shallow Crust,0.0,89.98785,0.0,05/21/7344 +8.01444,47.46923,9963,7,18,6,36,48,3.65,5.0,fr,43089,199,1809132,1,8,Active Shallow Crust,0.0,89.98785,0.0,07/18/9963 +8.01444,47.46923,937,10,9,1,57,41,3.65,5.0,fr,43090,18,1809132,1,8,Active Shallow Crust,0.0,89.98785,0.0,10/09/0937 +8.01444,47.46923,8627,3,24,21,43,18,3.65,5.0,fr,43091,172,1809132,1,8,Active Shallow Crust,0.0,89.98785,0.0,03/24/8627 +8.01444,47.46923,5989,12,15,12,53,56,3.65,5.0,fr,43092,119,1809132,1,8,Active Shallow Crust,0.0,89.98785,0.0,12/15/5989 +8.01444,47.46923,9914,9,8,7,1,0,3.65,5.0,fr,43093,198,1809132,1,8,Active Shallow Crust,0.0,89.98785,0.0,09/08/9914 +8.01444,47.46923,6995,1,17,23,37,11,3.65,5.0,fr,43094,139,1809132,1,8,Active Shallow Crust,0.0,89.98785,0.0,01/17/6995 +8.01444,47.46923,2807,8,30,19,12,53,3.65,5.0,fr,43095,56,1809132,1,8,Active Shallow Crust,0.0,89.98785,0.0,08/30/2807 +8.01444,47.46923,6972,5,4,4,42,40,3.65,5.0,fr,43096,139,1809135,1,2,Active Shallow Crust,239.999,58.01498,0.0,05/04/6972 +8.01444,47.46923,859,10,23,1,34,9,3.65,5.0,fr,43097,17,1809135,1,2,Active Shallow Crust,239.999,58.01498,0.0,10/23/0859 +8.01444,47.46923,8022,9,22,16,10,48,3.75,5.0,fr,43098,160,1809144,1,4,Active Shallow Crust,0.0,89.98917,0.0,09/22/8022 +8.01444,47.46923,4164,2,28,15,32,48,3.75,5.0,fr,43099,83,1809144,1,4,Active Shallow Crust,0.0,89.98917,0.0,02/28/4164 +8.01444,47.46923,9409,1,9,20,26,45,3.75,5.0,fr,43100,188,1809144,1,4,Active Shallow Crust,0.0,89.98917,0.0,01/09/9409 +8.01444,47.46923,8364,10,31,14,55,31,3.75,5.0,fr,43101,167,1809144,1,4,Active Shallow Crust,0.0,89.98917,0.0,10/31/8364 +8.01444,47.46923,8765,7,8,12,41,17,3.75,27.5,fr,43102,175,1809146,1,1,Active Shallow Crust,0.0,89.98917,0.0,07/08/8765 +8.01444,47.46923,5458,10,9,15,46,25,3.75,5.0,fr,43103,109,1809147,1,1,Active Shallow Crust,240.0077,58.01916,0.0,10/09/5458 +8.01444,47.46923,1875,12,4,9,52,35,3.75,5.0,fr,43104,37,1809150,1,2,Active Shallow Crust,0.0,89.98904,-90.0,12/04/1875 +8.01444,47.46923,8437,11,8,3,4,55,3.75,5.0,fr,43105,168,1809150,1,2,Active Shallow Crust,0.0,89.98904,-90.0,11/08/8437 +8.01444,47.46923,1400,9,30,11,38,38,3.85,5.0,fr,43106,27,1809156,1,1,Active Shallow Crust,0.0,89.99035,0.0,09/30/1400 +8.01444,47.46923,5004,5,28,14,48,3,3.85,5.0,fr,43107,100,1809165,1,1,Active Shallow Crust,128.8939,89.99518,0.0,05/28/5004 +8.01444,47.46923,58,11,22,10,14,19,3.95,5.0,fr,43108,1,1809168,1,3,Active Shallow Crust,0.0,89.99139,0.0,11/22/0058 +8.01444,47.46923,2916,4,25,10,54,22,3.95,5.0,fr,43109,58,1809168,1,3,Active Shallow Crust,0.0,89.99139,0.0,04/25/2916 +8.01444,47.46923,513,4,26,16,36,27,3.95,5.0,fr,43110,10,1809168,1,3,Active Shallow Crust,0.0,89.99139,0.0,04/26/0513 +8.01444,47.46923,4526,12,17,0,54,0,3.95,15.0,fr,43111,90,1809178,1,1,Active Shallow Crust,128.9001,89.9957,0.0,12/17/4526 +8.01444,47.46923,1499,8,6,11,5,9,4.05,5.0,fr,43112,29,1809180,1,5,Active Shallow Crust,0.0,89.99233,0.0,08/06/1499 +8.01444,47.46923,7754,1,26,19,31,16,4.05,5.0,fr,43113,155,1809180,1,5,Active Shallow Crust,0.0,89.99233,0.0,01/26/7754 +8.01444,47.46923,7149,1,10,17,42,40,4.05,5.0,fr,43114,142,1809180,1,5,Active Shallow Crust,0.0,89.99233,0.0,01/10/7149 +8.01444,47.46923,5016,8,2,19,48,38,4.05,5.0,fr,43115,100,1809180,1,5,Active Shallow Crust,0.0,89.99233,0.0,08/02/5016 +8.01444,47.46923,7107,2,12,2,50,50,4.05,5.0,fr,43116,142,1809180,1,5,Active Shallow Crust,0.0,89.99233,0.0,02/12/7107 +8.01444,47.46923,4030,10,19,13,56,21,4.05,15.0,fr,43117,80,1809181,1,3,Active Shallow Crust,0.0,89.99233,0.0,10/19/4030 +8.01444,47.46923,9515,6,25,2,46,3,4.05,15.0,fr,43118,190,1809181,1,3,Active Shallow Crust,0.0,89.99233,0.0,06/25/9515 +8.01444,47.46923,7211,2,5,2,26,2,4.05,15.0,fr,43119,144,1809181,1,3,Active Shallow Crust,0.0,89.99233,0.0,02/05/7211 +8.01444,47.46923,6890,5,16,16,1,22,4.05,5.0,fr,43120,137,1809183,1,1,Active Shallow Crust,240.0065,58.00619,0.0,05/16/6890 +8.01444,47.46923,7142,3,5,6,38,39,4.05,15.0,fr,43121,142,1809190,1,1,Active Shallow Crust,128.8904,89.99233,0.0,03/05/7142 +8.01444,47.46923,5729,7,1,4,21,12,4.15,5.0,fr,43122,114,1809192,1,3,Active Shallow Crust,0.0,89.99316,0.0,07/01/5729 +8.01444,47.46923,4522,9,10,6,21,28,4.15,5.0,fr,43123,90,1809192,1,3,Active Shallow Crust,0.0,89.99316,0.0,09/10/4522 +8.01444,47.46923,408,2,28,2,18,37,4.15,5.0,fr,43124,8,1809192,1,3,Active Shallow Crust,0.0,89.99316,0.0,02/28/0408 +8.01444,47.46923,3857,7,30,16,5,57,4.15,15.0,fr,43125,77,1809193,1,1,Active Shallow Crust,0.0,89.99316,0.0,07/30/3857 +8.01444,47.46923,9770,8,28,20,20,54,4.15,27.5,fr,43126,195,1809203,1,1,Active Shallow Crust,128.8963,89.99317,0.0,08/28/9770 +8.01444,47.46923,4874,10,2,15,30,14,4.35,5.0,fr,43127,97,1809216,1,4,Active Shallow Crust,0.0,89.98914,0.0,10/02/4874 +8.01444,47.46923,4598,8,16,17,6,50,4.35,5.0,fr,43128,91,1809216,1,4,Active Shallow Crust,0.0,89.98914,0.0,08/16/4598 +8.01444,47.46923,3200,7,9,9,27,15,4.35,5.0,fr,43129,63,1809216,1,4,Active Shallow Crust,0.0,89.98914,0.0,07/09/3200 +8.01444,47.46923,8052,12,7,22,48,57,4.35,5.0,fr,43130,161,1809216,1,4,Active Shallow Crust,0.0,89.98914,0.0,12/07/8052 +8.01444,47.46923,3231,4,13,6,48,54,4.35,5.0,fr,43131,64,1809222,1,1,Active Shallow Crust,0.0,89.98902,-90.0,04/13/3231 +8.01444,47.46923,7936,4,4,3,56,17,4.45,5.0,fr,43132,158,1809228,1,1,Active Shallow Crust,0.0,89.99033,0.0,04/04/7936 +8.01444,47.46923,9560,10,7,2,3,59,4.55,5.0,fr,43133,191,1809240,1,1,Active Shallow Crust,0.0,89.99138,0.0,10/07/9560 +8.01444,47.46923,7153,9,10,13,58,52,4.65,15.0,fr,43134,143,1809253,1,2,Active Shallow Crust,0.0,89.98847,0.0,09/10/7153 +8.01444,47.46923,1012,12,12,5,0,18,4.65,15.0,fr,43135,20,1809253,1,2,Active Shallow Crust,0.0,89.98847,0.0,12/12/1012 +8.01444,47.46923,5533,10,2,0,8,58,4.75,27.5,fr,43136,110,1809266,1,1,Active Shallow Crust,0.0,89.98972,0.0,10/02/5533 +8.01444,47.46923,9076,9,28,2,50,47,4.75,5.0,fr,43137,181,1809273,1,1,Active Shallow Crust,128.8885,89.98777,0.0,09/28/9076 +-1.55869,47.65524,2609,5,5,8,6,15,3.55,5.0,fr,43138,52,1809600,1,1,Active Shallow Crust,0.0,89.98981,0.0,05/05/2609 +-1.55869,47.65524,3989,7,28,3,54,16,3.55,15.0,fr,43139,79,1809601,1,1,Active Shallow Crust,0.0,89.98981,0.0,07/28/3989 +-1.55869,47.65524,3892,7,25,4,5,43,3.65,5.0,fr,43140,77,1809612,1,1,Active Shallow Crust,0.0,89.9894,0.0,07/25/3892 +-1.55869,47.65524,246,9,15,21,3,45,3.75,5.0,fr,43141,4,1809624,1,2,Active Shallow Crust,0.0,89.99055,0.0,09/15/0246 +-1.55869,47.65524,1963,12,11,13,44,31,3.75,5.0,fr,43142,39,1809624,1,2,Active Shallow Crust,0.0,89.99055,0.0,12/11/1963 +-1.55869,47.65524,2901,7,2,23,29,38,3.75,15.0,fr,43143,58,1809628,1,1,Active Shallow Crust,240.0084,58.01766,0.0,07/02/2901 +-1.55869,47.65524,5758,8,15,2,45,17,3.75,5.0,fr,43144,115,1809633,1,1,Active Shallow Crust,128.8964,89.96739,0.0,08/15/5758 +-1.55869,47.65524,5037,7,19,7,47,39,3.85,5.0,fr,43145,100,1809636,1,1,Active Shallow Crust,0.0,89.99038,0.0,07/19/5037 +-1.55869,47.65524,8772,11,5,8,31,6,3.95,5.0,fr,43146,175,1809648,1,1,Active Shallow Crust,0.0,89.99036,0.0,11/05/8772 +-1.55869,47.65524,5546,4,16,20,22,7,3.95,27.5,fr,43147,110,1809650,1,1,Active Shallow Crust,0.0,89.99036,0.0,04/16/5546 +-1.55869,47.65524,348,12,21,12,12,22,4.25,5.0,fr,43148,6,1809684,1,2,Active Shallow Crust,0.0,89.99014,0.0,12/21/0348 +-1.55869,47.65524,862,2,8,22,41,39,4.25,5.0,fr,43149,17,1809684,1,2,Active Shallow Crust,0.0,89.99014,0.0,02/08/0862 +-1.55869,47.65524,2224,3,7,10,30,43,5.25,5.0,fr,43150,44,1809804,1,1,Active Shallow Crust,0.0,89.98992,0.0,03/07/2224 +-6.24958,48.28314,3125,7,3,21,47,28,3.55,5.0,fr,43151,62,1810080,1,2,Active Shallow Crust,0.0,89.99329,0.0,07/03/3125 +-6.24958,48.28314,4025,11,21,17,21,47,3.55,5.0,fr,43152,80,1810080,1,2,Active Shallow Crust,0.0,89.99329,0.0,11/21/4025 +-6.24958,48.28314,8745,11,8,18,0,47,3.65,5.0,fr,43153,174,1810095,1,1,Active Shallow Crust,240.0012,58.01258,0.0,11/08/8745 +-2.09657,43.7792,9482,9,5,11,14,21,3.85,5.0,fr,43154,189,1810602,1,1,Active Shallow Crust,0.0,89.98957,-90.0,09/05/9482 +-2.09657,43.7792,5782,11,14,5,13,30,3.85,15.0,fr,43155,115,1810603,1,1,Active Shallow Crust,0.0,89.98957,-90.0,11/14/5782 +0.19717,51.85786,8167,2,2,7,15,48,3.55,15.0,fr,43156,163,1811041,1,1,Active Shallow Crust,0.0,89.99007,0.0,02/02/8167 +0.19717,51.85786,6910,7,10,2,39,46,3.65,5.0,fr,43157,138,1811052,1,1,Active Shallow Crust,0.0,89.98994,0.0,07/10/6910 +0.19717,51.85786,1673,4,18,14,48,15,3.75,5.0,fr,43158,33,1811064,1,1,Active Shallow Crust,0.0,89.98995,0.0,04/18/1673 +0.19717,51.85786,2189,7,17,16,43,50,3.85,15.0,fr,43159,43,1811077,1,1,Active Shallow Crust,0.0,89.98994,0.0,07/17/2189 +0.19717,51.85786,4338,12,6,21,25,44,4.15,5.0,fr,43160,86,1811118,1,1,Active Shallow Crust,0.0,89.99004,-90.0,12/06/4338 +0.19717,51.85786,639,5,17,13,24,9,4.45,15.0,fr,43161,12,1811158,1,1,Active Shallow Crust,128.8909,89.99371,0.0,05/17/0639 +-0.13516,49.48886,7150,7,24,8,14,5,3.55,5.0,fr,43162,142,1811520,1,1,Active Shallow Crust,0.0,89.98997,0.0,07/24/7150 +-0.13516,49.48886,7992,6,17,10,51,29,3.55,15.0,fr,43163,159,1811530,1,1,Active Shallow Crust,128.8959,89.99376,0.0,06/17/7992 +-0.13516,49.48886,1069,2,24,2,38,39,3.65,5.0,fr,43164,21,1811532,1,3,Active Shallow Crust,0.0,89.98997,0.0,02/24/1069 +-0.13516,49.48886,3586,12,22,8,11,16,3.65,5.0,fr,43165,71,1811532,1,3,Active Shallow Crust,0.0,89.98997,0.0,12/22/3586 +-0.13516,49.48886,2127,7,25,2,7,51,3.65,5.0,fr,43166,42,1811532,1,3,Active Shallow Crust,0.0,89.98997,0.0,07/25/2127 +-0.13516,49.48886,8621,5,19,17,26,54,3.65,5.0,fr,43167,172,1811535,1,1,Active Shallow Crust,240.0014,58.01298,0.0,05/19/8621 +-0.13516,49.48886,1207,9,16,18,28,26,3.65,15.0,fr,43168,24,1811536,1,1,Active Shallow Crust,240.0014,58.01298,0.0,09/16/1207 +-0.13516,49.48886,1809,11,30,3,22,16,3.65,5.0,fr,43169,36,1811538,1,1,Active Shallow Crust,0.0,89.99004,-90.0,11/30/1809 +-0.13516,49.48886,3040,1,30,5,54,53,3.75,5.0,fr,43170,60,1811544,1,1,Active Shallow Crust,359.9999,89.99008,0.0,01/30/3040 +-0.13516,49.48886,8824,1,23,8,46,51,3.95,15.0,fr,43171,176,1811569,1,1,Active Shallow Crust,0.0,89.99005,0.0,01/23/8824 +-0.13516,49.48886,7502,2,2,11,21,7,3.95,5.0,fr,43172,150,1811571,1,1,Active Shallow Crust,240.0203,58.00505,0.0,02/02/7502 +-0.13516,49.48886,1516,8,5,1,7,1,4.05,5.0,fr,43173,30,1811580,1,1,Active Shallow Crust,0.0,89.98998,0.0,08/05/1516 +-0.13516,49.48886,4554,11,12,8,41,10,4.05,15.0,fr,43174,91,1811590,1,1,Active Shallow Crust,128.8901,89.99373,0.0,11/12/4554 +-0.13516,49.48886,2176,9,1,9,12,9,4.45,5.0,fr,43175,43,1811628,1,1,Active Shallow Crust,0.0,89.98997,0.0,09/01/2176 +-0.13516,49.48886,8233,11,5,23,53,52,4.85,5.0,fr,43176,164,1811679,1,1,Active Shallow Crust,240.0184,58.00256,0.0,11/05/8233 +4.00379,41.82072,6468,11,8,11,24,16,3.65,5.0,fr,43177,129,1812012,1,2,Active Shallow Crust,0.0,89.9933,0.0,11/08/6468 +4.00379,41.82072,1854,12,10,21,32,39,3.65,5.0,fr,43178,37,1812012,1,2,Active Shallow Crust,0.0,89.9933,0.0,12/10/1854 +4.00379,41.82072,1437,7,3,4,57,16,3.65,15.0,fr,43179,28,1812016,1,1,Active Shallow Crust,240.0014,58.01176,0.0,07/03/1437 +4.00379,41.82072,1171,1,31,1,4,17,3.65,5.0,fr,43180,23,1812018,1,1,Active Shallow Crust,0.0,89.99323,-90.0,01/31/1171 +4.00379,41.82072,2582,12,6,20,24,29,3.75,5.0,fr,43181,51,1812024,1,1,Active Shallow Crust,0.0,89.98806,0.0,12/06/2582 +4.00379,41.82072,1644,7,13,11,4,45,4.15,15.0,fr,43182,32,1812073,1,1,Active Shallow Crust,0.0,89.9887,0.0,07/13/1644 +4.00379,41.82072,5585,8,20,6,31,58,4.35,5.0,fr,43183,111,1812096,1,1,Active Shallow Crust,0.0,89.99103,0.0,08/20/5585 +4.00379,41.82072,4103,7,8,17,54,32,4.35,15.0,fr,43184,82,1812097,1,1,Active Shallow Crust,0.0,89.99103,0.0,07/08/4103 +0.52117,44.03584,2567,12,29,1,54,21,3.85,5.0,fr,43185,51,1812516,1,1,Active Shallow Crust,0.0,89.98974,0.0,12/29/2567 +5.97879,50.87354,6231,5,30,21,45,35,3.55,5.0,fr,43186,124,1813440,1,8,Active Shallow Crust,0.0,89.98727,0.0,05/30/6231 +5.97879,50.87354,4148,12,18,5,51,41,3.55,5.0,fr,43187,82,1813440,1,8,Active Shallow Crust,0.0,89.98727,0.0,12/18/4148 +5.97879,50.87354,2329,7,5,0,13,34,3.55,5.0,fr,43188,46,1813440,1,8,Active Shallow Crust,0.0,89.98727,0.0,07/05/2329 +5.97879,50.87354,8841,10,6,18,26,12,3.55,5.0,fr,43189,176,1813440,1,8,Active Shallow Crust,0.0,89.98727,0.0,10/06/8841 +5.97879,50.87354,8268,11,27,17,43,58,3.55,5.0,fr,43190,165,1813440,1,8,Active Shallow Crust,0.0,89.98727,0.0,11/27/8268 +5.97879,50.87354,5358,2,24,15,30,47,3.55,5.0,fr,43191,107,1813440,1,8,Active Shallow Crust,0.0,89.98727,0.0,02/24/5358 +5.97879,50.87354,5614,9,2,5,57,6,3.55,5.0,fr,43192,112,1813440,1,8,Active Shallow Crust,0.0,89.98727,0.0,09/02/5614 +5.97879,50.87354,460,2,25,16,34,30,3.55,5.0,fr,43193,9,1813440,1,8,Active Shallow Crust,0.0,89.98727,0.0,02/25/0460 +5.97879,50.87354,371,2,7,3,8,8,3.55,15.0,fr,43194,7,1813441,1,1,Active Shallow Crust,0.0,89.98727,0.0,02/07/0371 +5.97879,50.87354,6980,5,16,19,29,38,3.55,27.5,fr,43195,139,1813442,1,1,Active Shallow Crust,0.0,89.98727,0.0,05/16/6980 +5.97879,50.87354,7517,8,10,16,52,22,3.55,5.0,fr,43196,150,1813446,1,3,Active Shallow Crust,0.0,89.98713,-90.0,08/10/7517 +5.97879,50.87354,6404,6,29,23,47,46,3.55,5.0,fr,43197,128,1813446,1,3,Active Shallow Crust,0.0,89.98713,-90.0,06/29/6404 +5.97879,50.87354,6034,12,30,11,36,40,3.55,5.0,fr,43198,120,1813446,1,3,Active Shallow Crust,0.0,89.98713,-90.0,12/30/6034 +5.97879,50.87354,3524,9,20,10,36,34,3.55,5.0,fr,43199,70,1813449,1,2,Active Shallow Crust,128.8968,89.99364,0.0,09/20/3524 +5.97879,50.87354,2748,6,10,6,0,4,3.55,5.0,fr,43200,54,1813449,1,2,Active Shallow Crust,128.8968,89.99364,0.0,06/10/2748 +5.97879,50.87354,4857,5,2,8,14,52,3.55,15.0,fr,43201,97,1813450,1,1,Active Shallow Crust,128.8968,89.99364,0.0,05/02/4857 +5.97879,50.87354,3235,1,8,10,23,33,3.65,5.0,fr,43202,64,1813452,1,8,Active Shallow Crust,0.0,89.98866,0.0,01/08/3235 +5.97879,50.87354,9182,8,2,15,6,58,3.65,5.0,fr,43203,183,1813452,1,8,Active Shallow Crust,0.0,89.98866,0.0,08/02/9182 +5.97879,50.87354,7629,3,2,9,44,15,3.65,5.0,fr,43204,152,1813452,1,8,Active Shallow Crust,0.0,89.98866,0.0,03/02/7629 +5.97879,50.87354,8125,12,13,14,33,13,3.65,5.0,fr,43205,162,1813452,1,8,Active Shallow Crust,0.0,89.98866,0.0,12/13/8125 +5.97879,50.87354,8283,2,25,18,27,28,3.65,5.0,fr,43206,165,1813452,1,8,Active Shallow Crust,0.0,89.98866,0.0,02/25/8283 +5.97879,50.87354,2709,7,4,6,14,38,3.65,5.0,fr,43207,54,1813452,1,8,Active Shallow Crust,0.0,89.98866,0.0,07/04/2709 +5.97879,50.87354,8731,11,7,3,52,35,3.65,5.0,fr,43208,174,1813452,1,8,Active Shallow Crust,0.0,89.98866,0.0,11/07/8731 +5.97879,50.87354,2056,2,26,18,17,39,3.65,5.0,fr,43209,41,1813452,1,8,Active Shallow Crust,0.0,89.98866,0.0,02/26/2056 +5.97879,50.87354,3976,1,14,10,34,11,3.65,15.0,fr,43210,79,1813453,1,3,Active Shallow Crust,0.0,89.98866,0.0,01/14/3976 +5.97879,50.87354,3775,11,20,11,57,45,3.65,15.0,fr,43211,75,1813453,1,3,Active Shallow Crust,0.0,89.98866,0.0,11/20/3775 +5.97879,50.87354,7619,2,5,2,46,25,3.65,15.0,fr,43212,152,1813453,1,3,Active Shallow Crust,0.0,89.98866,0.0,02/05/7619 +5.97879,50.87354,1312,6,1,3,10,43,3.65,27.5,fr,43213,26,1813454,1,1,Active Shallow Crust,0.0,89.98866,0.0,06/01/1312 +5.97879,50.87354,6764,2,26,17,55,20,3.65,5.0,fr,43214,135,1813455,1,2,Active Shallow Crust,240.0015,58.01247,0.0,02/26/6764 +5.97879,50.87354,486,1,1,14,47,10,3.65,5.0,fr,43215,9,1813455,1,2,Active Shallow Crust,240.0015,58.01247,0.0,01/01/0486 +5.97879,50.87354,2979,1,26,22,42,33,3.65,5.0,fr,43216,59,1813458,1,1,Active Shallow Crust,0.0,89.98853,-90.0,01/26/2979 +5.97879,50.87354,8941,4,26,0,5,28,3.65,15.0,fr,43217,178,1813462,1,1,Active Shallow Crust,128.8993,89.96361,0.0,04/26/8941 +5.97879,50.87354,435,8,30,21,13,18,3.75,5.0,fr,43218,8,1813464,1,5,Active Shallow Crust,0.0,89.98989,0.0,08/30/0435 +5.97879,50.87354,6250,6,19,21,28,17,3.75,5.0,fr,43219,124,1813464,1,5,Active Shallow Crust,0.0,89.98989,0.0,06/19/6250 +5.97879,50.87354,885,4,6,18,59,37,3.75,5.0,fr,43220,17,1813464,1,5,Active Shallow Crust,0.0,89.98989,0.0,04/06/0885 +5.97879,50.87354,6663,6,16,1,15,28,3.75,5.0,fr,43221,133,1813464,1,5,Active Shallow Crust,0.0,89.98989,0.0,06/16/6663 +5.97879,50.87354,8505,6,12,17,3,30,3.75,5.0,fr,43222,170,1813464,1,5,Active Shallow Crust,0.0,89.98989,0.0,06/12/8505 +5.97879,50.87354,8941,9,1,15,5,28,3.75,15.0,fr,43223,178,1813465,1,1,Active Shallow Crust,0.0,89.98989,0.0,09/01/8941 +5.97879,50.87354,8522,4,28,16,19,11,3.75,5.0,fr,43224,170,1813467,1,2,Active Shallow Crust,240.0087,58.01741,0.0,04/28/8522 +5.97879,50.87354,3594,6,12,18,48,2,3.75,5.0,fr,43225,71,1813467,1,2,Active Shallow Crust,240.0087,58.01741,0.0,06/12/3594 +5.97879,50.87354,1060,10,20,19,58,13,3.75,15.0,fr,43226,21,1813468,1,1,Active Shallow Crust,240.0087,58.01741,0.0,10/20/1060 +5.97879,50.87354,1483,1,25,22,1,38,3.75,5.0,fr,43227,29,1813470,1,1,Active Shallow Crust,0.0,89.98978,-90.0,01/25/1483 +5.97879,50.87354,2542,7,18,9,52,50,3.75,5.0,fr,43228,50,1813473,1,1,Active Shallow Crust,128.8968,89.96708,0.0,07/18/2542 +5.97879,50.87354,5924,7,2,10,18,56,3.75,15.0,fr,43229,118,1813474,1,1,Active Shallow Crust,128.8968,89.96708,0.0,07/02/5924 +5.97879,50.87354,4725,11,18,3,51,36,3.85,5.0,fr,43230,94,1813476,1,3,Active Shallow Crust,0.0,89.99099,0.0,11/18/4725 +5.97879,50.87354,3535,1,10,14,56,6,3.85,5.0,fr,43231,70,1813476,1,3,Active Shallow Crust,0.0,89.99099,0.0,01/10/3535 +5.97879,50.87354,4277,8,10,6,10,15,3.85,5.0,fr,43232,85,1813476,1,3,Active Shallow Crust,0.0,89.99099,0.0,08/10/4277 +5.97879,50.87354,9584,5,23,13,30,46,3.85,15.0,fr,43233,191,1813477,1,1,Active Shallow Crust,0.0,89.99099,0.0,05/23/9584 +5.97879,50.87354,1259,9,23,13,19,40,3.85,27.5,fr,43234,25,1813478,1,1,Active Shallow Crust,0.0,89.99099,0.0,09/23/1259 +5.97879,50.87354,5936,8,6,13,47,6,3.85,5.0,fr,43235,118,1813485,1,2,Active Shallow Crust,128.8942,89.99324,0.0,08/06/5936 +5.97879,50.87354,1961,3,2,11,29,49,3.85,5.0,fr,43236,39,1813485,1,2,Active Shallow Crust,128.8942,89.99324,0.0,03/02/1961 +5.97879,50.87354,4580,1,16,19,8,54,3.95,5.0,fr,43237,91,1813488,1,1,Active Shallow Crust,0.0,89.99197,0.0,01/16/4580 +5.97879,50.87354,7371,3,5,21,6,30,4.05,5.0,fr,43238,147,1813500,1,1,Active Shallow Crust,0.0,89.98927,0.0,03/05/7371 +5.97879,50.87354,1755,2,6,0,16,58,4.05,15.0,fr,43239,35,1813501,1,1,Active Shallow Crust,0.0,89.98927,0.0,02/06/1755 +5.97879,50.87354,4506,2,22,4,22,0,4.05,27.5,fr,43240,90,1813502,1,1,Active Shallow Crust,0.0,89.98927,0.0,02/22/4506 +5.97879,50.87354,2505,11,26,18,39,19,4.05,5.0,fr,43241,50,1813509,1,1,Active Shallow Crust,128.8892,89.99464,0.0,11/26/2505 +5.97879,50.87354,402,4,22,21,9,10,4.15,15.0,fr,43242,8,1813513,1,2,Active Shallow Crust,0.0,89.99043,0.0,04/22/0402 +5.97879,50.87354,7863,2,22,21,44,37,4.15,15.0,fr,43243,157,1813513,1,2,Active Shallow Crust,0.0,89.99043,0.0,02/22/7863 +5.97879,50.87354,7616,8,1,5,21,41,4.15,27.5,fr,43244,152,1813514,1,1,Active Shallow Crust,0.0,89.99043,0.0,08/01/7616 +5.97879,50.87354,3070,5,28,12,22,34,4.15,5.0,fr,43245,61,1813515,1,1,Active Shallow Crust,240.0096,57.99724,0.0,05/28/3070 +5.97879,50.87354,2998,1,4,13,32,41,4.25,5.0,fr,43246,59,1813524,1,3,Active Shallow Crust,0.0,89.98863,0.0,01/04/2998 +5.97879,50.87354,5949,6,17,15,9,48,4.25,5.0,fr,43247,118,1813524,1,3,Active Shallow Crust,0.0,89.98863,0.0,06/17/5949 +5.97879,50.87354,1818,12,13,5,12,11,4.25,5.0,fr,43248,36,1813524,1,3,Active Shallow Crust,0.0,89.98863,0.0,12/13/1818 +5.97879,50.87354,8881,7,12,0,43,48,4.25,5.0,fr,43249,177,1813533,1,1,Active Shallow Crust,128.8941,89.98064,0.0,07/12/8881 +5.97879,50.87354,9339,1,31,5,38,42,4.45,5.0,fr,43250,186,1813548,1,1,Active Shallow Crust,0.0,89.99097,0.0,01/31/9339 +5.97879,50.87354,2652,12,13,1,26,35,4.45,5.0,fr,43251,53,1813551,1,1,Active Shallow Crust,240.0069,57.99453,0.0,12/13/2652 +5.97879,50.87354,4226,3,19,4,59,58,4.55,27.5,fr,43252,84,1813571,1,1,Active Shallow Crust,128.8926,89.98589,0.0,03/19/4226 +5.97879,50.87354,9059,9,28,2,42,33,4.65,5.0,fr,43253,181,1813572,1,1,Active Shallow Crust,0.0,89.98923,0.0,09/28/9059 +5.97879,50.87354,5191,7,27,14,43,35,4.65,27.5,fr,43254,103,1813574,1,1,Active Shallow Crust,0.0,89.98923,0.0,07/27/5191 +5.97879,50.87354,8571,12,16,9,5,48,4.65,15.0,fr,43255,171,1813579,1,1,Active Shallow Crust,0.0,89.98911,-90.0,12/16/8571 +5.97879,50.87354,3650,4,30,17,56,26,4.65,5.0,fr,43256,72,1813581,1,1,Active Shallow Crust,128.8897,89.98701,0.0,04/30/3650 +5.97879,50.87354,2334,6,27,17,23,35,4.75,5.0,fr,43257,46,1813584,1,1,Active Shallow Crust,0.0,89.99041,0.0,06/27/2334 +5.97879,50.87354,1119,6,27,11,48,26,4.75,27.5,fr,43258,22,1813586,1,1,Active Shallow Crust,0.0,89.99041,0.0,06/27/1119 +5.97879,50.87354,8161,12,11,5,46,1,4.85,5.0,fr,43259,163,1813596,1,1,Active Shallow Crust,0.0,89.99003,0.0,12/11/8161 +5.97879,50.87354,6408,3,18,0,6,37,5.25,15.0,fr,43260,128,1813651,1,1,Active Shallow Crust,0.0,89.99,-90.0,03/18/6408 +-3.79404,43.43968,3815,2,18,4,27,49,3.55,5.0,fr,43261,76,1813920,1,3,Active Shallow Crust,0.0,89.98901,0.0,02/18/3815 +-3.79404,43.43968,8058,5,22,19,55,14,3.55,5.0,fr,43262,161,1813920,1,3,Active Shallow Crust,0.0,89.98901,0.0,05/22/8058 +-3.79404,43.43968,2842,8,1,16,5,3,3.55,5.0,fr,43263,56,1813920,1,3,Active Shallow Crust,0.0,89.98901,0.0,08/01/2842 +-3.79404,43.43968,9263,3,4,9,49,34,3.65,5.0,fr,43264,185,1813932,1,1,Active Shallow Crust,0.0,89.99021,0.0,03/04/9263 +-3.79404,43.43968,2576,5,9,8,51,51,3.75,5.0,fr,43265,51,1813944,1,1,Active Shallow Crust,0.0,89.99128,0.0,05/09/2576 +-3.79404,43.43968,1484,3,3,19,30,26,3.75,15.0,fr,43266,29,1813945,1,1,Active Shallow Crust,0.0,89.99128,0.0,03/03/1484 +-3.79404,43.43968,7930,7,8,13,37,25,3.85,27.5,fr,43267,158,1813958,1,1,Active Shallow Crust,0.0,89.98963,0.0,07/08/7930 +-3.79404,43.43968,6632,6,9,17,11,59,4.25,5.0,fr,43268,132,1814004,1,1,Active Shallow Crust,0.0,89.99019,0.0,06/09/6632 +-3.79404,43.43968,926,6,18,22,50,20,4.45,5.0,fr,43269,18,1814028,1,1,Active Shallow Crust,0.0,89.98961,0.0,06/18/0926 +4.17561,52.20885,6603,1,5,14,39,45,3.55,5.0,fr,43270,132,1814409,1,1,Active Shallow Crust,128.8954,89.99382,0.0,01/05/6603 +4.17561,52.20885,9023,2,22,10,53,36,3.75,5.0,fr,43271,180,1814424,1,1,Active Shallow Crust,0.0,89.99018,0.0,02/22/9023 +8.9142,48.4588,140,6,5,0,48,6,3.55,5.0,fr,43272,2,1815360,1,6,Active Shallow Crust,0.0,89.98663,0.0,06/05/0140 +8.9142,48.4588,6086,8,22,15,17,26,3.55,5.0,fr,43273,121,1815360,1,6,Active Shallow Crust,0.0,89.98663,0.0,08/22/6086 +8.9142,48.4588,3631,5,5,10,52,30,3.55,5.0,fr,43274,72,1815360,1,6,Active Shallow Crust,0.0,89.98663,0.0,05/05/3631 +8.9142,48.4588,944,12,23,1,56,29,3.55,5.0,fr,43275,18,1815360,1,6,Active Shallow Crust,0.0,89.98663,0.0,12/23/0944 +8.9142,48.4588,1643,2,16,12,16,20,3.55,5.0,fr,43276,32,1815360,1,6,Active Shallow Crust,0.0,89.98663,0.0,02/16/1643 +8.9142,48.4588,5607,5,5,2,2,32,3.55,5.0,fr,43277,112,1815360,1,6,Active Shallow Crust,0.0,89.98663,0.0,05/05/5607 +8.9142,48.4588,9257,9,5,19,1,21,3.55,27.5,fr,43278,185,1815362,1,2,Active Shallow Crust,0.0,89.98663,0.0,09/05/9257 +8.9142,48.4588,9761,6,12,1,55,13,3.55,27.5,fr,43279,195,1815362,1,2,Active Shallow Crust,0.0,89.98663,0.0,06/12/9761 +8.9142,48.4588,6903,5,7,22,50,39,3.55,15.0,fr,43280,138,1815364,1,1,Active Shallow Crust,240.0114,57.99862,0.0,05/07/6903 +8.9142,48.4588,9165,10,3,23,51,3,3.55,5.0,fr,43281,183,1815366,1,1,Active Shallow Crust,0.0,89.98647,-90.0,10/03/9165 +8.9142,48.4588,4689,6,26,21,49,49,3.55,5.0,fr,43282,93,1815369,1,4,Active Shallow Crust,128.8972,89.99332,0.0,06/26/4689 +8.9142,48.4588,5160,12,23,0,37,3,3.55,5.0,fr,43283,103,1815369,1,4,Active Shallow Crust,128.8972,89.99332,0.0,12/23/5160 +8.9142,48.4588,5730,11,8,12,6,37,3.55,5.0,fr,43284,114,1815369,1,4,Active Shallow Crust,128.8972,89.99332,0.0,11/08/5730 +8.9142,48.4588,5248,12,21,4,29,28,3.55,5.0,fr,43285,104,1815369,1,4,Active Shallow Crust,128.8972,89.99332,0.0,12/21/5248 +8.9142,48.4588,4502,9,20,20,47,14,3.55,15.0,fr,43286,90,1815370,1,1,Active Shallow Crust,128.8972,89.99332,0.0,09/20/4502 +8.9142,48.4588,3770,7,18,20,40,58,3.65,5.0,fr,43287,75,1815372,1,3,Active Shallow Crust,0.0,89.98808,0.0,07/18/3770 +8.9142,48.4588,9224,10,5,11,15,23,3.65,5.0,fr,43288,184,1815372,1,3,Active Shallow Crust,0.0,89.98808,0.0,10/05/9224 +8.9142,48.4588,3546,3,6,7,0,22,3.65,5.0,fr,43289,70,1815372,1,3,Active Shallow Crust,0.0,89.98808,0.0,03/06/3546 +8.9142,48.4588,6044,10,30,4,49,33,3.65,15.0,fr,43290,120,1815373,1,1,Active Shallow Crust,0.0,89.98808,0.0,10/30/6044 +8.9142,48.4588,1704,10,27,19,47,10,3.65,27.5,fr,43291,34,1815374,1,1,Active Shallow Crust,0.0,89.98808,0.0,10/27/1704 +8.9142,48.4588,7161,5,25,7,1,56,3.65,15.0,fr,43292,143,1815376,1,1,Active Shallow Crust,240.0022,58.01074,0.0,05/25/7161 +8.9142,48.4588,9897,4,22,3,20,19,3.65,5.0,fr,43293,197,1815378,1,1,Active Shallow Crust,0.0,89.98795,-90.0,04/22/9897 +8.9142,48.4588,4543,11,22,12,18,11,3.65,5.0,fr,43294,90,1815381,1,1,Active Shallow Crust,128.8999,89.96356,0.0,11/22/4543 +8.9142,48.4588,1365,5,6,21,21,55,3.75,5.0,fr,43295,27,1815384,1,5,Active Shallow Crust,0.0,89.98938,0.0,05/06/1365 +8.9142,48.4588,1464,8,24,19,25,28,3.75,5.0,fr,43296,29,1815384,1,5,Active Shallow Crust,0.0,89.98938,0.0,08/24/1464 +8.9142,48.4588,3541,11,6,16,38,39,3.75,5.0,fr,43297,70,1815384,1,5,Active Shallow Crust,0.0,89.98938,0.0,11/06/3541 +8.9142,48.4588,4130,6,11,3,19,8,3.75,5.0,fr,43298,82,1815384,1,5,Active Shallow Crust,0.0,89.98938,0.0,06/11/4130 +8.9142,48.4588,170,4,27,6,53,29,3.75,5.0,fr,43299,3,1815384,1,5,Active Shallow Crust,0.0,89.98938,0.0,04/27/0170 +8.9142,48.4588,5315,5,13,0,19,13,3.75,15.0,fr,43300,106,1815385,1,2,Active Shallow Crust,0.0,89.98938,0.0,05/13/5315 +8.9142,48.4588,6139,11,14,15,40,37,3.75,15.0,fr,43301,122,1815385,1,2,Active Shallow Crust,0.0,89.98938,0.0,11/14/6139 +8.9142,48.4588,3375,7,17,9,22,2,3.75,27.5,fr,43302,67,1815386,1,1,Active Shallow Crust,0.0,89.98938,0.0,07/17/3375 +8.9142,48.4588,8861,8,1,7,6,5,3.75,5.0,fr,43303,177,1815387,1,3,Active Shallow Crust,240.0098,58.01741,0.0,08/01/8861 +8.9142,48.4588,8514,5,31,16,58,56,3.75,5.0,fr,43304,170,1815387,1,3,Active Shallow Crust,240.0098,58.01741,0.0,05/31/8514 +8.9142,48.4588,2415,2,10,1,30,35,3.75,5.0,fr,43305,48,1815387,1,3,Active Shallow Crust,240.0098,58.01741,0.0,02/10/2415 +8.9142,48.4588,7542,6,28,11,26,45,3.75,27.5,fr,43306,150,1815389,1,1,Active Shallow Crust,240.0098,58.01741,0.0,06/28/7542 +8.9142,48.4588,1331,9,30,22,10,8,3.85,5.0,fr,43307,26,1815396,1,2,Active Shallow Crust,0.0,89.99053,0.0,09/30/1331 +8.9142,48.4588,5534,3,2,19,0,57,3.85,5.0,fr,43308,110,1815396,1,2,Active Shallow Crust,0.0,89.99053,0.0,03/02/5534 +8.9142,48.4588,1513,7,13,18,12,3,3.85,15.0,fr,43309,30,1815397,1,1,Active Shallow Crust,0.0,89.99053,0.0,07/13/1513 +8.9142,48.4588,7791,8,17,20,35,17,3.85,5.0,fr,43310,155,1815402,1,1,Active Shallow Crust,0.0,89.99043,-90.0,08/17/7791 +8.9142,48.4588,4549,6,19,20,37,2,3.85,15.0,fr,43311,90,1815403,1,1,Active Shallow Crust,0.0,89.99043,-90.0,06/19/4549 +8.9142,48.4588,4670,12,3,2,58,58,4.05,5.0,fr,43312,93,1815420,1,1,Active Shallow Crust,0.0,89.99248,0.0,12/03/4670 +8.9142,48.4588,5233,3,4,0,57,57,4.05,27.5,fr,43313,104,1815422,1,2,Active Shallow Crust,0.0,89.99248,0.0,03/04/5233 +8.9142,48.4588,4897,1,6,19,10,29,4.05,27.5,fr,43314,97,1815422,1,2,Active Shallow Crust,0.0,89.99248,0.0,01/06/4897 +8.9142,48.4588,1000,3,13,5,7,10,4.05,15.0,fr,43315,19,1815430,1,1,Active Shallow Crust,128.888,89.99624,0.0,03/13/1000 +8.9142,48.4588,6246,11,29,19,56,15,4.15,5.0,fr,43316,124,1815432,1,1,Active Shallow Crust,0.0,89.99329,0.0,11/29/6246 +8.9142,48.4588,5064,6,26,14,50,25,4.15,15.0,fr,43317,101,1815433,1,1,Active Shallow Crust,0.0,89.99329,0.0,06/26/5064 +8.9142,48.4588,4016,11,23,16,27,53,4.15,5.0,fr,43318,80,1815438,1,1,Active Shallow Crust,0.0,89.99322,-90.0,11/23/4016 +8.9142,48.4588,3500,4,14,1,19,20,4.35,5.0,fr,43319,69,1815456,1,1,Active Shallow Crust,0.0,89.98935,0.0,04/14/3500 +8.9142,48.4588,8759,1,9,15,44,22,4.35,27.5,fr,43320,175,1815461,1,1,Active Shallow Crust,240.0082,57.99591,0.0,01/09/8759 +8.9142,48.4588,2055,6,24,23,0,2,4.45,15.0,fr,43321,41,1815469,1,1,Active Shallow Crust,0.0,89.99051,0.0,06/24/2055 +8.9142,48.4588,7996,1,15,4,39,27,4.55,5.0,fr,43322,159,1815480,1,2,Active Shallow Crust,0.0,89.99154,0.0,01/15/7996 +8.9142,48.4588,7764,12,6,11,0,41,4.55,5.0,fr,43323,155,1815480,1,2,Active Shallow Crust,0.0,89.99154,0.0,12/06/7764 +8.9142,48.4588,181,8,25,2,27,36,4.55,27.5,fr,43324,3,1815482,1,1,Active Shallow Crust,0.0,89.99154,0.0,08/25/0181 +8.9142,48.4588,730,3,20,1,20,40,4.65,27.5,fr,43325,14,1815494,1,1,Active Shallow Crust,0.0,89.98869,0.0,03/20/0730 +8.9142,48.4588,276,3,11,5,10,18,4.65,27.5,fr,43326,5,1815497,1,1,Active Shallow Crust,240.0114,57.99411,0.0,03/11/0276 +8.9142,48.4588,6419,1,22,5,58,46,4.85,15.0,fr,43327,128,1815517,1,1,Active Shallow Crust,0.0,89.99101,0.0,01/22/6419 +8.9142,48.4588,5372,3,7,19,11,25,5.05,15.0,fr,43328,107,1815541,1,1,Active Shallow Crust,0.0,89.99049,0.0,03/07/5372 +8.9142,48.4588,2209,7,18,3,14,1,5.15,5.0,fr,43329,44,1815552,1,1,Active Shallow Crust,0.0,89.9894,0.0,07/18/2209 +-0.24564,48.55414,1225,10,28,9,29,3,3.55,27.5,fr,43330,24,1815842,1,1,Active Shallow Crust,0.0,89.98999,0.0,10/28/1225 +-0.24564,48.55414,7432,8,17,19,56,45,3.65,5.0,fr,43331,148,1815852,1,2,Active Shallow Crust,0.0,89.98996,0.0,08/17/7432 +-0.24564,48.55414,5425,11,14,2,20,4,3.65,5.0,fr,43332,108,1815852,1,2,Active Shallow Crust,0.0,89.98996,0.0,11/14/5425 +-0.24564,48.55414,1352,8,26,0,38,55,3.75,15.0,fr,43333,27,1815865,1,2,Active Shallow Crust,0.0,89.99006,0.0,08/26/1352 +-0.24564,48.55414,9830,3,8,8,22,54,3.75,15.0,fr,43334,196,1815865,1,2,Active Shallow Crust,0.0,89.99006,0.0,03/08/9830 +-0.24564,48.55414,6493,5,29,22,46,17,3.85,5.0,fr,43335,129,1815876,1,1,Active Shallow Crust,0.0,89.98996,0.0,05/29/6493 +-0.24564,48.55414,8711,1,8,18,36,24,3.85,5.0,fr,43336,174,1815882,1,1,Active Shallow Crust,0.0,89.98999,-90.0,01/08/8711 +-0.24564,48.55414,2732,9,27,17,44,43,3.95,5.0,fr,43337,54,1815888,1,1,Active Shallow Crust,0.0,89.99,0.0,09/27/2732 +-0.24564,48.55414,3352,8,7,19,34,59,4.15,5.0,fr,43338,67,1815921,1,1,Active Shallow Crust,128.8972,89.99373,0.0,08/07/3352 +-0.24564,48.55414,2738,10,25,10,13,1,4.35,5.0,fr,43339,54,1815936,1,1,Active Shallow Crust,0.0,89.99004,0.0,10/25/2738 +-0.24564,48.55414,6527,2,9,8,44,53,4.35,5.0,fr,43340,130,1815945,1,1,Active Shallow Crust,128.8974,89.98278,0.0,02/09/6527 +-0.24564,48.55414,6697,10,12,6,25,50,4.45,5.0,fr,43341,133,1815951,1,1,Active Shallow Crust,240.0058,57.99478,0.0,10/12/6697 +-0.24564,48.55414,3362,1,3,3,56,55,4.85,5.0,fr,43342,67,1815996,1,1,Active Shallow Crust,0.0,89.99001,0.0,01/03/3362 +-0.24564,48.55414,2625,4,1,5,18,11,5.15,15.0,fr,43343,52,1816042,1,1,Active Shallow Crust,128.8827,89.99104,0.0,04/01/2625 +7.80457,51.3354,6827,9,15,12,6,55,3.65,5.0,fr,43344,136,1816332,1,1,Active Shallow Crust,0.0,89.98877,0.0,09/15/6827 +7.80457,51.3354,5059,12,9,15,31,54,3.95,5.0,fr,43345,101,1816368,1,1,Active Shallow Crust,0.0,89.98808,0.0,12/09/5059 +7.80457,51.3354,7987,8,17,1,11,2,4.15,27.5,fr,43346,159,1816397,1,1,Active Shallow Crust,240.0093,57.99762,0.0,08/17/7987 +4.97547,42.89542,3433,3,12,20,29,22,3.55,5.0,fr,43347,68,1816800,1,1,Active Shallow Crust,0.0,89.99261,0.0,03/12/3433 +4.97547,42.89542,6444,10,17,19,39,9,3.55,5.0,fr,43348,128,1816806,1,1,Active Shallow Crust,0.0,89.99253,-90.0,10/17/6444 +4.97547,42.89542,2559,12,28,17,11,26,3.65,5.0,fr,43349,51,1816818,1,1,Active Shallow Crust,0.0,89.98668,-90.0,12/28/2559 +4.97547,42.89542,3934,6,29,1,44,42,3.75,5.0,fr,43350,78,1816827,1,1,Active Shallow Crust,240.009,58.01639,0.0,06/29/3934 +4.97547,42.89542,9481,12,13,12,12,43,3.95,5.0,fr,43351,189,1816848,1,1,Active Shallow Crust,0.0,89.99068,0.0,12/13/9481 +4.97547,42.89542,8387,9,13,21,37,2,4.05,15.0,fr,43352,167,1816861,1,1,Active Shallow Crust,0.0,89.99169,0.0,09/13/8387 +-4.08058,44.10228,2037,10,15,5,54,44,4.05,5.0,fr,43353,40,1817349,1,1,Active Shallow Crust,128.8903,89.99389,0.0,10/15/2037 +7.04226,50.8808,4207,8,21,8,24,36,3.55,5.0,fr,43354,84,1817760,1,2,Active Shallow Crust,0.0,89.98727,0.0,08/21/4207 +7.04226,50.8808,2373,10,18,8,17,56,3.55,5.0,fr,43355,47,1817760,1,2,Active Shallow Crust,0.0,89.98727,0.0,10/18/2373 +7.04226,50.8808,2178,5,15,9,59,42,3.65,15.0,fr,43356,43,1817779,1,1,Active Shallow Crust,0.0,89.98853,-90.0,05/15/2178 +7.04226,50.8808,7252,12,18,5,22,35,3.75,5.0,fr,43357,145,1817787,1,1,Active Shallow Crust,240.0086,58.01734,0.0,12/18/7252 +7.04226,50.8808,4593,12,5,0,2,39,3.75,15.0,fr,43358,91,1817788,1,1,Active Shallow Crust,240.0086,58.01734,0.0,12/05/4593 +7.04226,50.8808,6895,9,7,2,58,41,3.75,5.0,fr,43359,137,1817790,1,1,Active Shallow Crust,0.0,89.98978,-90.0,09/07/6895 +7.04226,50.8808,6541,9,6,1,18,42,3.85,5.0,fr,43360,130,1817799,1,1,Active Shallow Crust,240.0123,57.99761,0.0,09/06/6541 +7.04226,50.8808,3196,3,5,22,48,17,3.95,5.0,fr,43361,63,1817808,1,1,Active Shallow Crust,0.0,89.99197,0.0,03/05/3196 +7.04226,50.8808,5041,12,19,16,25,12,4.05,5.0,fr,43362,100,1817820,1,1,Active Shallow Crust,0.0,89.98927,0.0,12/19/5041 +7.04226,50.8808,6950,8,9,3,43,36,4.25,5.0,fr,43363,138,1817844,1,1,Active Shallow Crust,0.0,89.98863,0.0,08/09/6950 +7.04226,50.8808,5366,4,24,0,51,52,4.25,5.0,fr,43364,107,1817847,1,1,Active Shallow Crust,240.0086,57.9941,0.0,04/24/5366 +7.04226,50.8808,9432,10,30,11,36,0,4.35,5.0,fr,43365,188,1817856,1,1,Active Shallow Crust,0.0,89.98987,0.0,10/30/9432 +7.04226,50.8808,6000,7,11,15,25,47,4.45,15.0,fr,43366,119,1817869,1,1,Active Shallow Crust,0.0,89.99097,0.0,07/11/6000 +2.64282,43.0892,9123,10,3,12,25,13,3.65,5.0,fr,43367,182,1818252,1,1,Active Shallow Crust,0.0,89.99016,0.0,10/03/9123 +2.64282,43.0892,1009,8,7,2,40,19,3.65,15.0,fr,43368,20,1818253,1,1,Active Shallow Crust,0.0,89.99016,0.0,08/07/1009 +2.64282,43.0892,9580,7,3,19,59,16,3.65,27.5,fr,43369,191,1818254,1,1,Active Shallow Crust,0.0,89.99016,0.0,07/03/9580 +2.64282,43.0892,1996,5,27,5,50,57,3.75,15.0,fr,43370,39,1818265,1,1,Active Shallow Crust,0.0,89.99123,0.0,05/27/1996 +2.64282,43.0892,463,11,6,15,12,4,3.75,27.5,fr,43371,9,1818266,1,1,Active Shallow Crust,0.0,89.99123,0.0,11/06/0463 +2.64282,43.0892,6789,1,19,10,20,47,3.85,27.5,fr,43372,135,1818278,1,1,Active Shallow Crust,0.0,89.98957,0.0,01/19/6789 +2.64282,43.0892,3025,12,16,12,22,20,4.05,5.0,fr,43373,60,1818300,1,1,Active Shallow Crust,0.0,89.98965,0.0,12/16/3025 +2.64282,43.0892,9031,8,8,0,44,32,4.35,5.0,fr,43374,180,1818342,1,2,Active Shallow Crust,0.0,89.98962,-90.0,08/08/9031 +2.64282,43.0892,1727,5,19,0,53,7,4.35,5.0,fr,43375,34,1818342,1,2,Active Shallow Crust,0.0,89.98962,-90.0,05/19/1727 +2.64282,43.0892,3445,3,21,13,16,42,4.75,5.0,fr,43376,68,1818384,1,1,Active Shallow Crust,0.0,89.98982,0.0,03/21/3445 +2.64282,43.0892,9989,2,19,21,41,1,4.85,5.0,fr,43377,199,1818402,1,1,Active Shallow Crust,0.0,89.98999,-90.0,02/19/9989 +-4.98377,48.28665,9036,3,30,8,10,37,3.55,5.0,fr,43378,180,1818720,1,1,Active Shallow Crust,0.0,89.99329,0.0,03/30/9036 +-4.98377,48.28665,9582,9,16,21,16,32,3.55,5.0,fr,43379,191,1818723,1,1,Active Shallow Crust,240.0132,57.99816,0.0,09/16/9582 +-4.98377,48.28665,4696,2,8,17,15,48,3.95,5.0,fr,43380,93,1818768,1,1,Active Shallow Crust,0.0,89.99153,0.0,02/08/4696 +-4.98377,48.28665,629,10,10,14,54,15,4.05,5.0,fr,43381,12,1818783,1,1,Active Shallow Crust,240.0069,58.00536,0.0,10/10/0629 +-4.98377,48.28665,2426,1,30,1,36,10,4.15,5.0,fr,43382,48,1818792,1,1,Active Shallow Crust,0.0,89.98991,0.0,01/30/2426 +-4.98377,48.28665,7855,2,9,1,48,52,4.45,27.5,fr,43383,157,1818833,1,1,Active Shallow Crust,240.0057,57.99472,0.0,02/09/7855 +3.82201,52.33248,7862,2,16,20,18,2,3.85,5.0,fr,43384,157,1819239,1,1,Active Shallow Crust,240.0114,57.99814,0.0,02/16/7862 +3.82201,52.33248,2411,12,31,0,19,43,3.95,5.0,fr,43385,48,1819248,1,1,Active Shallow Crust,0.0,89.99028,0.0,12/31/2411 +3.82201,52.33248,9596,11,22,4,37,56,4.25,5.0,fr,43386,191,1819287,1,1,Active Shallow Crust,240.0089,57.99421,0.0,11/22/9596 +-0.57897,47.19296,8616,5,31,23,53,57,3.55,15.0,fr,43387,172,1820161,1,1,Active Shallow Crust,0.0,89.98972,0.0,05/31/8616 +-0.57897,47.19296,7451,1,14,8,12,58,3.55,27.5,fr,43388,149,1820162,1,1,Active Shallow Crust,0.0,89.98972,0.0,01/14/7451 +-0.57897,47.19296,1880,12,10,22,13,1,3.55,5.0,fr,43389,37,1820163,1,1,Active Shallow Crust,240.0122,57.99804,0.0,12/10/1880 +-0.57897,47.19296,3483,10,4,17,13,29,3.55,5.0,fr,43390,69,1820166,1,1,Active Shallow Crust,0.0,89.9896,-90.0,10/04/3483 +-0.57897,47.19296,2726,8,10,11,53,6,3.55,27.5,fr,43391,54,1820168,1,1,Active Shallow Crust,0.0,89.9896,-90.0,08/10/2726 +-0.57897,47.19296,9786,2,20,13,9,25,3.65,5.0,fr,43392,195,1820172,1,2,Active Shallow Crust,0.0,89.99007,0.0,02/20/9786 +-0.57897,47.19296,284,6,21,4,59,54,3.65,5.0,fr,43393,5,1820172,1,2,Active Shallow Crust,0.0,89.99007,0.0,06/21/0284 +-0.57897,47.19296,9607,5,28,19,9,3,3.65,15.0,fr,43394,192,1820173,1,1,Active Shallow Crust,0.0,89.99007,0.0,05/28/9607 +-0.57897,47.19296,3886,2,27,18,39,2,3.75,5.0,fr,43395,77,1820184,1,2,Active Shallow Crust,0.0,89.98979,0.0,02/27/3886 +-0.57897,47.19296,8472,10,15,22,29,57,3.75,5.0,fr,43396,169,1820184,1,2,Active Shallow Crust,0.0,89.98979,0.0,10/15/8472 +-0.57897,47.19296,8751,12,19,1,49,4,3.75,27.5,fr,43397,175,1820186,1,1,Active Shallow Crust,0.0,89.98979,0.0,12/19/8751 +-0.57897,47.19296,5156,1,11,3,3,40,3.85,5.0,fr,43398,103,1820196,1,2,Active Shallow Crust,0.0,89.9903,0.0,01/11/5156 +-0.57897,47.19296,9517,6,20,7,45,57,3.85,5.0,fr,43399,190,1820196,1,2,Active Shallow Crust,0.0,89.9903,0.0,06/20/9517 +-0.57897,47.19296,5903,6,14,1,50,54,3.85,15.0,fr,43400,118,1820197,1,1,Active Shallow Crust,0.0,89.9903,0.0,06/14/5903 +-0.57897,47.19296,2287,3,28,20,16,46,3.85,5.0,fr,43401,45,1820199,1,1,Active Shallow Crust,240.0109,57.99789,0.0,03/28/2287 +-0.57897,47.19296,795,8,15,5,41,26,3.85,5.0,fr,43402,15,1820202,1,2,Active Shallow Crust,0.0,89.99019,-90.0,08/15/0795 +-0.57897,47.19296,6110,9,4,6,13,53,3.85,5.0,fr,43403,122,1820202,1,2,Active Shallow Crust,0.0,89.99019,-90.0,09/04/6110 +-0.57897,47.19296,8919,3,17,7,21,56,3.85,15.0,fr,43404,178,1820203,1,1,Active Shallow Crust,0.0,89.99019,-90.0,03/17/8919 +-0.57897,47.19296,4198,9,1,11,49,6,3.95,5.0,fr,43405,83,1820208,1,1,Active Shallow Crust,0.0,89.98973,0.0,09/01/4198 +-0.57897,47.19296,7040,8,25,17,10,48,3.95,15.0,fr,43406,140,1820209,1,2,Active Shallow Crust,0.0,89.98973,0.0,08/25/7040 +-0.57897,47.19296,6757,5,19,22,5,56,3.95,15.0,fr,43407,135,1820209,1,2,Active Shallow Crust,0.0,89.98973,0.0,05/19/6757 +-0.57897,47.19296,4051,6,5,9,34,11,4.05,5.0,fr,43408,81,1820220,1,2,Active Shallow Crust,0.0,89.98988,0.0,06/05/4051 +-0.57897,47.19296,5950,12,18,8,41,43,4.05,5.0,fr,43409,118,1820220,1,2,Active Shallow Crust,0.0,89.98988,0.0,12/18/5950 +-0.57897,47.19296,9955,12,17,10,24,59,4.15,5.0,fr,43410,199,1820232,1,1,Active Shallow Crust,0.0,89.99013,0.0,12/17/9955 +-0.57897,47.19296,8162,12,23,7,26,30,4.35,15.0,fr,43411,163,1820257,1,1,Active Shallow Crust,0.0,89.99011,0.0,12/23/8162 +-0.57897,47.19296,4647,1,10,1,4,4,4.45,5.0,fr,43412,92,1820268,1,2,Active Shallow Crust,0.0,89.98997,0.0,01/10/4647 +-0.57897,47.19296,4099,5,9,8,36,12,4.45,5.0,fr,43413,81,1820268,1,2,Active Shallow Crust,0.0,89.98997,0.0,05/09/4099 +-0.57897,47.19296,5375,10,4,6,56,36,4.75,5.0,fr,43414,107,1820304,1,1,Active Shallow Crust,0.0,89.9901,0.0,10/04/5375 +-0.57897,47.19296,7651,10,20,8,55,54,4.95,5.0,fr,43415,153,1820328,1,1,Active Shallow Crust,0.0,89.98991,0.0,10/20/7651 +-0.57897,47.19296,5960,12,19,5,21,53,5.05,5.0,fr,43416,119,1820340,1,1,Active Shallow Crust,0.0,89.98994,0.0,12/19/5960 +9.64052,49.16316,4508,7,31,13,53,22,4.15,5.0,fr,43417,90,1820712,1,1,Active Shallow Crust,0.0,89.98678,0.0,07/31/4508 +6.39993,51.17134,4230,1,3,7,47,51,3.55,5.0,fr,43418,84,1821120,1,2,Active Shallow Crust,0.0,89.98736,0.0,01/03/4230 +6.39993,51.17134,4152,10,18,14,53,8,3.55,5.0,fr,43419,83,1821120,1,2,Active Shallow Crust,0.0,89.98736,0.0,10/18/4152 +6.39993,51.17134,5626,9,3,18,24,9,3.55,15.0,fr,43420,112,1821121,1,2,Active Shallow Crust,0.0,89.98736,0.0,09/03/5626 +6.39993,51.17134,8627,7,29,14,15,11,3.55,15.0,fr,43421,172,1821121,1,2,Active Shallow Crust,0.0,89.98736,0.0,07/29/8627 +6.39993,51.17134,9205,4,21,22,1,22,3.65,5.0,fr,43422,184,1821132,1,2,Active Shallow Crust,0.0,89.98873,0.0,04/21/9205 +6.39993,51.17134,5352,11,8,15,1,5,3.65,5.0,fr,43423,107,1821132,1,2,Active Shallow Crust,0.0,89.98873,0.0,11/08/5352 +6.39993,51.17134,6415,4,24,14,26,46,3.65,15.0,fr,43424,128,1821133,1,2,Active Shallow Crust,0.0,89.98873,0.0,04/24/6415 +6.39993,51.17134,3029,11,5,4,9,4,3.65,15.0,fr,43425,60,1821133,1,2,Active Shallow Crust,0.0,89.98873,0.0,11/05/3029 +6.39993,51.17134,1928,10,31,10,49,49,3.75,5.0,fr,43426,38,1821144,1,1,Active Shallow Crust,0.0,89.98995,0.0,10/31/1928 +6.39993,51.17134,4815,7,27,4,50,54,3.75,5.0,fr,43427,96,1821150,1,1,Active Shallow Crust,0.0,89.98984,-90.0,07/27/4815 +6.39993,51.17134,5082,6,1,22,41,4,3.85,15.0,fr,43428,101,1821157,1,1,Active Shallow Crust,0.0,89.99105,0.0,06/01/5082 +6.39993,51.17134,4895,3,26,16,52,50,3.95,15.0,fr,43429,97,1821172,1,1,Active Shallow Crust,240.0204,58.00481,0.0,03/26/4895 +6.39993,51.17134,7685,9,30,17,48,56,4.05,5.0,fr,43430,153,1821180,1,1,Active Shallow Crust,0.0,89.98933,0.0,09/30/7685 +6.39993,51.17134,5726,6,18,9,38,5,4.15,5.0,fr,43431,114,1821192,1,1,Active Shallow Crust,0.0,89.99049,0.0,06/18/5726 +6.39993,51.17134,9525,11,24,14,22,46,4.95,15.0,fr,43432,190,1821289,1,1,Active Shallow Crust,0.0,89.98991,0.0,11/24/9525 +6.39993,51.17134,5952,2,26,20,14,29,5.15,27.5,fr,43433,119,1821314,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/26/5952 +6.39993,51.17134,2215,10,31,5,44,8,5.45,5.0,fr,43434,44,1821351,1,1,Active Shallow Crust,240.0331,57.99931,0.0,10/31/2215 +6.39993,51.17134,3104,12,14,15,43,59,5.75,15.0,fr,43435,62,1821388,1,1,Active Shallow Crust,240.0473,58.0006,0.0,12/14/3104 +6.89799,43.53853,8807,2,25,11,37,38,3.55,5.0,fr,43436,176,1821600,1,1,Active Shallow Crust,0.0,89.99269,0.0,02/25/8807 +6.89799,43.53853,7453,1,27,5,12,24,3.55,5.0,fr,43437,149,1821603,1,1,Active Shallow Crust,240.0112,57.99898,0.0,01/27/7453 +6.89799,43.53853,3898,11,7,5,45,6,3.65,5.0,fr,43438,77,1821612,1,1,Active Shallow Crust,0.0,89.98697,0.0,11/07/3898 +6.89799,43.53853,1146,5,9,11,51,45,3.65,5.0,fr,43439,22,1821615,1,1,Active Shallow Crust,240.0009,58.01332,0.0,05/09/1146 +6.89799,43.53853,808,10,28,6,4,48,3.65,15.0,fr,43440,16,1821622,1,1,Active Shallow Crust,128.9009,89.96347,0.0,10/28/0808 +6.89799,43.53853,6156,6,25,1,1,47,3.75,5.0,fr,43441,123,1821630,1,1,Active Shallow Crust,0.0,89.98825,-90.0,06/25/6156 +6.89799,43.53853,6306,3,14,12,35,22,4.05,5.0,fr,43442,126,1821660,1,1,Active Shallow Crust,0.0,89.99178,0.0,03/14/6306 +6.89799,43.53853,7761,4,16,11,26,28,4.45,27.5,fr,43443,155,1821713,1,1,Active Shallow Crust,240.0048,57.99421,0.0,04/16/7761 +6.89799,43.53853,8960,5,16,2,26,30,4.55,5.0,fr,43444,179,1821723,1,1,Active Shallow Crust,240.0084,57.99742,0.0,05/16/8960 +3.98716,43.15845,6026,4,27,23,4,35,3.65,15.0,fr,43445,120,1822093,1,1,Active Shallow Crust,0.0,89.99017,0.0,04/27/6026 +3.98716,43.15845,346,9,22,13,4,27,3.85,15.0,fr,43446,6,1822126,1,1,Active Shallow Crust,128.896,89.99349,0.0,09/22/0346 +3.98716,43.15845,2750,12,6,0,6,7,3.85,27.5,fr,43447,54,1822127,1,1,Active Shallow Crust,128.896,89.99349,0.0,12/06/2750 +5.33371,50.54355,9109,3,7,6,12,50,3.55,5.0,fr,43448,182,1822560,1,1,Active Shallow Crust,0.0,89.98718,0.0,03/07/9109 +5.33371,50.54355,6601,5,1,10,16,33,3.55,15.0,fr,43449,132,1822561,1,2,Active Shallow Crust,0.0,89.98718,0.0,05/01/6601 +5.33371,50.54355,7026,7,11,5,40,38,3.55,15.0,fr,43450,140,1822561,1,2,Active Shallow Crust,0.0,89.98718,0.0,07/11/7026 +5.33371,50.54355,8767,12,9,19,33,21,3.75,5.0,fr,43451,175,1822584,1,1,Active Shallow Crust,0.0,89.98982,0.0,12/09/8767 +5.33371,50.54355,2929,12,1,17,44,28,3.85,5.0,fr,43452,58,1822596,1,1,Active Shallow Crust,0.0,89.99093,0.0,12/01/2929 +5.33371,50.54355,7268,7,24,4,32,51,3.85,15.0,fr,43453,145,1822597,1,2,Active Shallow Crust,0.0,89.99093,0.0,07/24/7268 +5.33371,50.54355,4394,6,26,11,38,50,3.85,15.0,fr,43454,87,1822597,1,2,Active Shallow Crust,0.0,89.99093,0.0,06/26/4394 +5.33371,50.54355,3478,9,18,11,7,23,3.95,15.0,fr,43455,69,1822609,1,1,Active Shallow Crust,0.0,89.99191,0.0,09/18/3478 +5.33371,50.54355,9868,7,10,20,37,23,4.05,5.0,fr,43456,197,1822620,1,2,Active Shallow Crust,0.0,89.98919,0.0,07/10/9868 +5.33371,50.54355,4976,11,27,17,49,55,4.05,5.0,fr,43457,99,1822620,1,2,Active Shallow Crust,0.0,89.98919,0.0,11/27/4976 +5.33371,50.54355,3017,4,29,14,58,22,4.35,5.0,fr,43458,60,1822656,1,1,Active Shallow Crust,0.0,89.98979,0.0,04/29/3017 +5.33371,50.54355,8363,11,13,1,47,52,4.35,15.0,fr,43459,167,1822657,1,1,Active Shallow Crust,0.0,89.98979,0.0,11/13/8363 +5.33371,50.54355,1987,10,31,7,3,12,4.35,15.0,fr,43460,39,1822666,1,1,Active Shallow Crust,128.8972,89.98272,0.0,10/31/1987 +5.33371,50.54355,1002,9,23,14,39,29,4.45,5.0,fr,43461,20,1822668,1,1,Active Shallow Crust,0.0,89.99091,0.0,09/23/1002 +5.33371,50.54355,9912,6,5,16,41,4,4.55,15.0,fr,43462,198,1822681,1,1,Active Shallow Crust,0.0,89.98987,0.0,06/05/9912 +5.33371,50.54355,2,1,8,5,43,17,5.45,15.0,fr,43463,0,1822789,1,1,Active Shallow Crust,0.0,89.98993,0.0,01/08/0002 +3.209,46.83901,8820,9,13,21,3,40,3.65,5.0,fr,43464,176,1823055,1,1,Active Shallow Crust,240.0014,58.01315,0.0,09/13/8820 +3.209,46.83901,1872,11,27,22,51,5,3.65,15.0,fr,43465,37,1823062,1,1,Active Shallow Crust,128.901,89.96353,0.0,11/27/1872 +3.209,46.83901,2883,7,26,5,0,38,3.75,15.0,fr,43466,57,1823074,1,1,Active Shallow Crust,128.8964,89.96724,0.0,07/26/2883 +3.209,46.83901,8588,6,16,13,49,20,4.25,27.5,fr,43467,171,1823135,1,1,Active Shallow Crust,128.8942,89.98096,0.0,06/16/8588 +-4.58629,47.36947,9454,6,7,16,57,6,3.65,15.0,fr,43468,189,1823533,1,1,Active Shallow Crust,0.0,89.98782,0.0,06/07/9454 +-4.58629,47.36947,76,4,8,5,2,11,4.55,5.0,fr,43469,1,1823643,1,1,Active Shallow Crust,240.0091,57.99742,0.0,04/08/0076 +3.26469,42.51796,8399,4,18,19,25,17,3.55,15.0,fr,43470,167,1824007,1,1,Active Shallow Crust,0.0,89.98872,-90.0,04/18/8399 +3.26469,42.51796,3586,11,26,0,37,25,3.65,27.5,fr,43471,71,1824014,1,1,Active Shallow Crust,0.0,89.99007,0.0,11/26/3586 +3.26469,42.51796,8088,3,27,15,20,37,3.65,27.5,fr,43472,161,1824020,1,1,Active Shallow Crust,0.0,89.98995,-90.0,03/27/8088 +3.26469,42.51796,216,8,9,5,2,2,3.75,5.0,fr,43473,4,1824024,1,1,Active Shallow Crust,0.0,89.99114,0.0,08/09/0216 +3.26469,42.51796,1080,8,28,18,50,47,3.75,15.0,fr,43474,21,1824028,1,1,Active Shallow Crust,240.0075,58.0178,0.0,08/28/1080 +3.26469,42.51796,6896,2,22,3,26,15,3.75,5.0,fr,43475,137,1824033,1,1,Active Shallow Crust,128.8963,89.96742,0.0,02/22/6896 +3.26469,42.51796,8125,5,11,7,26,32,4.05,15.0,fr,43476,162,1824067,1,1,Active Shallow Crust,0.0,89.98943,-90.0,05/11/8125 +3.26469,42.51796,6055,9,22,23,2,27,4.15,5.0,fr,43477,121,1824072,1,1,Active Shallow Crust,0.0,89.99068,0.0,09/22/6055 +3.26469,42.51796,4528,12,22,2,13,59,4.25,15.0,fr,43478,90,1824085,1,2,Active Shallow Crust,0.0,89.99004,0.0,12/22/4528 +3.26469,42.51796,9796,9,17,10,29,47,4.25,15.0,fr,43479,195,1824085,1,2,Active Shallow Crust,0.0,89.99004,0.0,09/17/9796 +3.26469,42.51796,4775,7,14,19,57,46,4.75,5.0,fr,43480,95,1824144,1,2,Active Shallow Crust,0.0,89.98973,0.0,07/14/4775 +3.26469,42.51796,8040,4,23,18,7,17,4.75,5.0,fr,43481,160,1824144,1,2,Active Shallow Crust,0.0,89.98973,0.0,04/23/8040 +3.26469,42.51796,5003,4,2,23,57,57,4.85,5.0,fr,43482,100,1824156,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/02/5003 +-1.16959,46.06334,5989,10,15,18,8,31,3.55,5.0,fr,43483,119,1824480,1,5,Active Shallow Crust,0.0,89.9895,0.0,10/15/5989 +-1.16959,46.06334,5370,11,18,15,25,44,3.55,5.0,fr,43484,107,1824480,1,5,Active Shallow Crust,0.0,89.9895,0.0,11/18/5370 +-1.16959,46.06334,1521,7,5,18,16,35,3.55,5.0,fr,43485,30,1824480,1,5,Active Shallow Crust,0.0,89.9895,0.0,07/05/1521 +-1.16959,46.06334,9463,3,29,21,16,0,3.55,5.0,fr,43486,189,1824480,1,5,Active Shallow Crust,0.0,89.9895,0.0,03/29/9463 +-1.16959,46.06334,1673,3,22,18,4,15,3.55,5.0,fr,43487,33,1824480,1,5,Active Shallow Crust,0.0,89.9895,0.0,03/22/1673 +-1.16959,46.06334,5549,5,1,20,42,17,3.55,15.0,fr,43488,110,1824481,1,1,Active Shallow Crust,0.0,89.9895,0.0,05/01/5549 +-1.16959,46.06334,21,11,16,19,20,50,3.55,15.0,fr,43489,0,1824484,1,1,Active Shallow Crust,240.0123,57.99801,0.0,11/16/0021 +-1.16959,46.06334,4202,6,12,13,34,5,3.65,5.0,fr,43490,84,1824492,1,4,Active Shallow Crust,0.0,89.99065,0.0,06/12/4202 +-1.16959,46.06334,1761,8,30,11,56,59,3.65,5.0,fr,43491,35,1824492,1,4,Active Shallow Crust,0.0,89.99065,0.0,08/30/1761 +-1.16959,46.06334,2871,1,14,0,40,16,3.65,5.0,fr,43492,57,1824492,1,4,Active Shallow Crust,0.0,89.99065,0.0,01/14/2871 +-1.16959,46.06334,5253,7,17,10,54,8,3.65,5.0,fr,43493,105,1824492,1,4,Active Shallow Crust,0.0,89.99065,0.0,07/17/5253 +-1.16959,46.06334,4677,8,1,10,23,22,3.65,15.0,fr,43494,93,1824493,1,1,Active Shallow Crust,0.0,89.99065,0.0,08/01/4677 +-1.16959,46.06334,1587,5,14,22,38,12,3.75,27.5,fr,43495,31,1824506,1,1,Active Shallow Crust,0.0,89.99027,0.0,05/14/1587 +-1.16959,46.06334,7914,12,15,21,17,3,3.75,27.5,fr,43496,158,1824512,1,1,Active Shallow Crust,0.0,89.99016,-90.0,12/15/7914 +-1.16959,46.06334,2650,10,23,16,15,49,3.75,27.5,fr,43497,52,1824515,1,1,Active Shallow Crust,128.8966,89.96735,0.0,10/23/2650 +-1.16959,46.06334,3813,2,12,9,19,0,3.85,5.0,fr,43498,76,1824516,1,4,Active Shallow Crust,0.0,89.99009,0.0,02/12/3813 +-1.16959,46.06334,9911,4,17,3,50,8,3.85,5.0,fr,43499,198,1824516,1,4,Active Shallow Crust,0.0,89.99009,0.0,04/17/9911 +-1.16959,46.06334,3488,6,9,22,14,0,3.85,5.0,fr,43500,69,1824516,1,4,Active Shallow Crust,0.0,89.99009,0.0,06/09/3488 +-1.16959,46.06334,1083,9,3,18,31,53,3.85,5.0,fr,43501,21,1824516,1,4,Active Shallow Crust,0.0,89.99009,0.0,09/03/1083 +-1.16959,46.06334,5711,2,12,22,35,43,3.85,15.0,fr,43502,114,1824517,1,2,Active Shallow Crust,0.0,89.99009,0.0,02/12/5711 +-1.16959,46.06334,6533,4,26,13,30,16,3.85,15.0,fr,43503,130,1824517,1,2,Active Shallow Crust,0.0,89.99009,0.0,04/26/6533 +-1.16959,46.06334,5314,10,13,16,55,19,3.85,27.5,fr,43504,106,1824518,1,1,Active Shallow Crust,0.0,89.99009,0.0,10/13/5314 +-1.16959,46.06334,3860,5,2,20,56,10,3.85,5.0,fr,43505,77,1824519,1,1,Active Shallow Crust,240.0109,57.99773,0.0,05/02/3860 +-1.16959,46.06334,9923,8,22,16,26,51,3.85,15.0,fr,43506,198,1824520,1,1,Active Shallow Crust,240.0109,57.99773,0.0,08/22/9923 +-1.16959,46.06334,7902,8,15,19,6,54,3.85,5.0,fr,43507,158,1824522,1,1,Active Shallow Crust,0.0,89.98997,-90.0,08/15/7902 +-1.16959,46.06334,8939,2,2,17,8,57,3.85,15.0,fr,43508,178,1824523,1,1,Active Shallow Crust,0.0,89.98997,-90.0,02/02/8939 +-1.16959,46.06334,3327,6,5,9,33,23,3.95,5.0,fr,43509,66,1824528,1,1,Active Shallow Crust,0.0,89.99007,0.0,06/05/3327 +-1.16959,46.06334,9365,6,21,17,48,0,3.95,15.0,fr,43510,187,1824529,1,1,Active Shallow Crust,0.0,89.99007,0.0,06/21/9365 +-1.16959,46.06334,1893,5,9,21,19,9,4.05,5.0,fr,43511,37,1824543,1,1,Active Shallow Crust,240.006,58.00571,0.0,05/09/1893 +-1.16959,46.06334,5227,8,28,23,15,41,4.05,5.0,fr,43512,104,1824549,1,1,Active Shallow Crust,128.8907,89.99361,0.0,08/28/5227 +-1.16959,46.06334,1996,10,30,5,3,40,4.15,5.0,fr,43513,39,1824552,1,1,Active Shallow Crust,0.0,89.99036,0.0,10/30/1996 +-1.16959,46.06334,5689,2,14,18,47,54,4.15,5.0,fr,43514,113,1824561,1,1,Active Shallow Crust,128.8975,89.99387,0.0,02/14/5689 +-1.16959,46.06334,8685,2,13,18,41,48,4.25,5.0,fr,43515,173,1824564,1,1,Active Shallow Crust,0.0,89.98985,0.0,02/13/8685 +-1.16959,46.06334,7688,7,4,18,25,13,4.45,15.0,fr,43516,153,1824589,1,1,Active Shallow Crust,0.0,89.99007,0.0,07/04/7688 +-1.16959,46.06334,3290,9,8,12,40,38,4.55,15.0,fr,43517,65,1824610,1,1,Active Shallow Crust,128.8939,89.98587,0.0,09/08/3290 +-1.16959,46.06334,7166,3,23,18,0,27,4.75,5.0,fr,43518,143,1824624,1,1,Active Shallow Crust,0.0,89.98989,0.0,03/23/7166 +-1.16959,46.06334,9790,7,7,11,51,18,4.85,5.0,fr,43519,195,1824636,1,1,Active Shallow Crust,0.0,89.98981,0.0,07/07/9790 +-1.16959,46.06334,8419,3,17,3,49,55,5.15,5.0,fr,43520,168,1824672,1,1,Active Shallow Crust,0.0,89.99002,0.0,03/17/8419 +8.04028,48.11245,6550,12,22,6,51,22,3.55,5.0,fr,43521,130,1824966,1,1,Active Shallow Crust,0.0,89.98638,-90.0,12/22/6550 +8.04028,48.11245,6888,6,6,1,29,32,3.65,27.5,fr,43522,137,1824974,1,1,Active Shallow Crust,0.0,89.988,0.0,06/06/6888 +8.04028,48.11245,7874,3,26,22,22,40,3.75,5.0,fr,43523,157,1824984,1,1,Active Shallow Crust,0.0,89.9893,0.0,03/26/7874 +8.04028,48.11245,4901,1,8,6,1,47,3.75,5.0,fr,43524,98,1824987,1,1,Active Shallow Crust,240.0101,58.01669,0.0,01/08/4901 +8.04028,48.11245,8062,6,22,19,30,49,3.75,27.5,fr,43525,161,1824995,1,1,Active Shallow Crust,128.8968,89.96752,0.0,06/22/8062 +8.04028,48.11245,3020,11,8,3,12,10,3.85,5.0,fr,43526,60,1824996,1,1,Active Shallow Crust,0.0,89.99046,0.0,11/08/3020 +8.04028,48.11245,9090,3,13,20,44,16,3.85,15.0,fr,43527,181,1825000,1,1,Active Shallow Crust,240.0122,57.9977,0.0,03/13/9090 +8.04028,48.11245,9743,1,22,16,37,51,3.95,27.5,fr,43528,194,1825010,1,1,Active Shallow Crust,0.0,89.9915,0.0,01/22/9743 +8.04028,48.11245,6859,5,8,21,49,14,3.95,5.0,fr,43529,137,1825011,1,1,Active Shallow Crust,240.0184,58.00595,0.0,05/08/6859 +8.04028,48.11245,3121,8,5,6,50,1,3.95,15.0,fr,43530,62,1825012,1,1,Active Shallow Crust,240.0184,58.00595,0.0,08/05/3121 +8.04028,48.11245,1916,8,9,19,36,20,3.95,5.0,fr,43531,38,1825017,1,1,Active Shallow Crust,128.9003,89.99151,0.0,08/09/1916 +8.04028,48.11245,4702,8,28,7,35,43,4.05,27.5,fr,43532,94,1825022,1,1,Active Shallow Crust,0.0,89.99242,0.0,08/28/4702 +8.04028,48.11245,4938,3,20,22,12,17,4.15,5.0,fr,43533,98,1825032,1,3,Active Shallow Crust,0.0,89.99325,0.0,03/20/4938 +8.04028,48.11245,8480,8,22,13,19,27,4.15,5.0,fr,43534,169,1825032,1,3,Active Shallow Crust,0.0,89.99325,0.0,08/22/8480 +8.04028,48.11245,6442,4,27,9,8,0,4.15,5.0,fr,43535,128,1825032,1,3,Active Shallow Crust,0.0,89.99325,0.0,04/27/6442 +8.04028,48.11245,8313,8,2,13,37,33,4.35,5.0,fr,43536,166,1825056,1,1,Active Shallow Crust,0.0,89.98928,0.0,08/02/8313 +8.04028,48.11245,1258,3,3,0,17,31,4.55,5.0,fr,43537,25,1825086,1,1,Active Shallow Crust,0.0,89.99139,-90.0,03/03/1258 +8.04028,48.11245,6759,3,4,13,46,49,5.15,15.0,fr,43538,135,1825153,1,1,Active Shallow Crust,0.0,89.98933,0.0,03/04/6759 +8.04028,48.11245,9533,1,19,16,56,32,5.15,27.5,fr,43539,190,1825160,1,1,Active Shallow Crust,0.0,89.9892,-90.0,01/19/9533 +-1.20239,50.61266,7447,8,28,7,39,56,3.55,5.0,fr,43540,148,1825443,1,1,Active Shallow Crust,240.0127,57.9981,0.0,08/28/7447 +-1.20239,50.61266,284,8,29,13,24,10,3.65,15.0,fr,43541,5,1825453,1,1,Active Shallow Crust,0.0,89.99002,0.0,08/29/0284 +-1.20239,50.61266,4057,9,7,16,14,47,3.75,5.0,fr,43542,81,1825470,1,1,Active Shallow Crust,0.0,89.98972,-90.0,09/07/4057 +-1.20239,50.61266,8309,6,9,23,52,25,4.05,5.0,fr,43543,166,1825503,1,1,Active Shallow Crust,240.0068,58.00587,0.0,06/09/8309 +8.65214,49.56873,9534,12,6,16,38,52,3.55,5.0,fr,43544,190,1825920,1,1,Active Shallow Crust,0.0,89.98692,0.0,12/06/9534 +8.65214,49.56873,5022,2,3,9,11,27,3.55,15.0,fr,43545,100,1825921,1,1,Active Shallow Crust,0.0,89.98692,0.0,02/03/5022 +8.65214,49.56873,7212,1,14,17,53,42,3.55,27.5,fr,43546,144,1825922,1,1,Active Shallow Crust,0.0,89.98692,0.0,01/14/7212 +8.65214,49.56873,6138,8,13,2,45,1,3.55,5.0,fr,43547,122,1825926,1,1,Active Shallow Crust,0.0,89.98677,-90.0,08/13/6138 +8.65214,49.56873,1153,10,31,9,52,52,3.55,15.0,fr,43548,23,1825930,1,1,Active Shallow Crust,128.8944,89.99346,0.0,10/31/1153 +8.65214,49.56873,4276,4,13,10,13,39,3.65,5.0,fr,43549,85,1825932,1,2,Active Shallow Crust,0.0,89.98834,0.0,04/13/4276 +8.65214,49.56873,1024,11,25,19,6,28,3.65,5.0,fr,43550,20,1825932,1,2,Active Shallow Crust,0.0,89.98834,0.0,11/25/1024 +8.65214,49.56873,1764,11,1,15,23,16,3.65,15.0,fr,43551,35,1825933,1,1,Active Shallow Crust,0.0,89.98834,0.0,11/01/1764 +8.65214,49.56873,9694,7,15,16,49,9,3.65,27.5,fr,43552,193,1825934,1,1,Active Shallow Crust,0.0,89.98834,0.0,07/15/9694 +8.65214,49.56873,1696,10,5,23,51,37,3.65,15.0,fr,43553,33,1825936,1,1,Active Shallow Crust,240.0002,58.01434,0.0,10/05/1696 +8.65214,49.56873,5690,12,30,6,6,43,3.65,5.0,fr,43554,113,1825941,1,2,Active Shallow Crust,128.8987,89.96358,0.0,12/30/5690 +8.65214,49.56873,1074,4,29,17,45,20,3.65,5.0,fr,43555,21,1825941,1,2,Active Shallow Crust,128.8987,89.96358,0.0,04/29/1074 +8.65214,49.56873,5680,1,27,8,38,19,3.75,5.0,fr,43556,113,1825944,1,1,Active Shallow Crust,0.0,89.98961,0.0,01/27/5680 +8.65214,49.56873,5738,8,27,19,30,23,3.75,15.0,fr,43557,114,1825945,1,1,Active Shallow Crust,0.0,89.98961,0.0,08/27/5738 +8.65214,49.56873,916,10,31,5,42,59,3.85,5.0,fr,43558,18,1825956,1,1,Active Shallow Crust,0.0,89.99074,0.0,10/31/0916 +8.65214,49.56873,5420,9,26,12,59,5,3.85,15.0,fr,43559,108,1825960,1,1,Active Shallow Crust,240.012,57.99767,0.0,09/26/5420 +8.65214,49.56873,8799,10,31,8,36,4,3.95,5.0,fr,43560,175,1825968,1,1,Active Shallow Crust,0.0,89.99174,0.0,10/31/8799 +8.65214,49.56873,8094,9,26,15,32,51,4.05,15.0,fr,43561,161,1825984,1,1,Active Shallow Crust,240.0071,58.00558,0.0,09/26/8094 +8.65214,49.56873,7960,9,21,0,5,53,4.35,5.0,fr,43562,159,1826025,1,1,Active Shallow Crust,128.8982,89.98215,0.0,09/21/7960 +8.65214,49.56873,5811,12,2,2,32,10,4.55,5.0,fr,43563,116,1826040,1,1,Active Shallow Crust,0.0,89.99173,0.0,12/02/5811 +8.65214,49.56873,8322,12,5,21,37,42,4.55,15.0,fr,43564,166,1826041,1,1,Active Shallow Crust,0.0,89.99173,0.0,12/05/8322 +8.65214,49.56873,6496,11,17,22,58,9,4.55,27.5,fr,43565,129,1826042,1,1,Active Shallow Crust,0.0,89.99173,0.0,11/17/6496 +8.65214,49.56873,8659,11,1,13,50,29,4.55,5.0,fr,43566,173,1826043,1,1,Active Shallow Crust,240.01,57.99737,0.0,11/01/8659 +8.65214,49.56873,4596,12,27,3,21,44,4.85,5.0,fr,43567,91,1826076,1,1,Active Shallow Crust,0.0,89.99121,0.0,12/27/4596 +8.65214,49.56873,8750,4,30,22,17,46,4.85,15.0,fr,43568,174,1826077,1,1,Active Shallow Crust,0.0,89.99121,0.0,04/30/8750 +8.65214,49.56873,8383,9,4,6,10,24,4.85,5.0,fr,43569,167,1826082,1,1,Active Shallow Crust,0.0,89.99111,-90.0,09/04/8383 +8.65214,49.56873,7387,11,15,14,49,20,4.85,5.0,fr,43570,147,1826085,1,1,Active Shallow Crust,128.8912,89.98923,0.0,11/15/7387 +8.65214,49.56873,6552,4,15,7,13,43,4.95,5.0,fr,43571,131,1826088,1,1,Active Shallow Crust,0.0,89.98956,0.0,04/15/6552 +8.65214,49.56873,5958,2,22,4,25,50,5.05,5.0,fr,43572,119,1826100,1,1,Active Shallow Crust,0.0,89.99069,0.0,02/22/5958 +-2.20338,47.60132,6444,10,16,9,9,27,3.55,5.0,fr,43573,128,1826400,1,1,Active Shallow Crust,0.0,89.9898,0.0,10/16/6444 +-2.20338,47.60132,7357,3,13,9,37,0,3.65,5.0,fr,43574,147,1826412,1,1,Active Shallow Crust,0.0,89.99091,0.0,03/13/7357 +-2.20338,47.60132,7979,2,14,17,31,33,3.65,27.5,fr,43575,159,1826423,1,1,Active Shallow Crust,128.9011,89.96326,0.0,02/14/7979 +-2.20338,47.60132,3258,1,27,12,11,56,3.75,5.0,fr,43576,65,1826424,1,1,Active Shallow Crust,0.0,89.9892,0.0,01/27/3258 +-2.20338,47.60132,4945,11,2,12,31,0,3.75,5.0,fr,43577,98,1826430,1,1,Active Shallow Crust,0.0,89.98907,-90.0,11/02/4945 +-2.20338,47.60132,5533,6,21,18,38,12,3.95,15.0,fr,43578,110,1826449,1,1,Active Shallow Crust,0.0,89.98927,0.0,06/21/5533 +-2.20338,47.60132,5334,4,27,15,35,6,3.95,5.0,fr,43579,106,1826451,1,1,Active Shallow Crust,240.02,58.00494,0.0,04/27/5334 +-2.20338,47.60132,2227,7,10,16,32,25,4.05,5.0,fr,43580,44,1826460,1,1,Active Shallow Crust,0.0,89.99044,0.0,07/10/2227 +-2.20338,47.60132,4066,7,5,22,12,10,4.15,15.0,fr,43581,81,1826476,1,1,Active Shallow Crust,240.0089,57.99748,0.0,07/05/4066 +-2.20338,47.60132,69,10,3,22,51,50,4.15,27.5,fr,43582,1,1826483,1,1,Active Shallow Crust,128.8971,89.99403,0.0,10/03/0069 +-2.20338,47.60132,9118,1,20,14,43,11,4.25,27.5,fr,43583,182,1826495,1,1,Active Shallow Crust,128.8942,89.98099,0.0,01/20/9118 +-2.20338,47.60132,8386,12,11,16,52,47,4.65,5.0,fr,43584,167,1826532,1,1,Active Shallow Crust,0.0,89.99042,0.0,12/11/8386 +-2.20338,47.60132,9310,9,13,9,30,12,5.05,5.0,fr,43585,186,1826580,1,1,Active Shallow Crust,0.0,89.98972,0.0,09/13/9310 +3.17093,51.04998,4733,8,2,23,14,31,3.55,15.0,fr,43586,94,1826881,1,1,Active Shallow Crust,0.0,89.99049,0.0,08/02/4733 +3.17093,51.04998,7424,10,29,19,16,40,3.55,5.0,fr,43587,148,1826889,1,1,Active Shallow Crust,128.8964,89.99366,0.0,10/29/7424 +3.17093,51.04998,7386,1,7,7,54,13,3.65,15.0,fr,43588,147,1826893,1,1,Active Shallow Crust,0.0,89.9887,0.0,01/07/7386 +3.17093,51.04998,7701,8,29,13,57,33,3.65,5.0,fr,43589,154,1826895,1,1,Active Shallow Crust,240.0014,58.01291,0.0,08/29/7701 +3.17093,51.04998,6817,5,3,0,23,12,3.65,27.5,fr,43590,136,1826900,1,1,Active Shallow Crust,0.0,89.99142,-90.0,05/03/6817 +3.17093,51.04998,4403,1,13,23,44,58,3.75,5.0,fr,43591,88,1826904,1,1,Active Shallow Crust,0.0,89.98993,0.0,01/13/4403 +3.17093,51.04998,5040,4,6,12,13,41,4.65,15.0,fr,43592,100,1827016,1,1,Active Shallow Crust,240.0125,57.99452,0.0,04/06/5040 +3.17093,51.04998,8355,7,9,17,13,7,4.85,5.0,fr,43593,167,1827036,1,1,Active Shallow Crust,0.0,89.99007,0.0,07/09/8355 +3.17093,51.04998,1309,12,23,3,24,29,5.55,27.5,fr,43594,26,1827128,1,1,Active Shallow Crust,0.0,89.99006,-90.0,12/23/1309 +2.90919,42.1962,3954,5,20,3,35,17,3.55,5.0,fr,43595,79,1827360,1,4,Active Shallow Crust,0.0,89.98879,0.0,05/20/3954 +2.90919,42.1962,8085,11,2,14,41,53,3.55,5.0,fr,43596,161,1827360,1,4,Active Shallow Crust,0.0,89.98879,0.0,11/02/8085 +2.90919,42.1962,7473,3,12,1,55,26,3.55,5.0,fr,43597,149,1827360,1,4,Active Shallow Crust,0.0,89.98879,0.0,03/12/7473 +2.90919,42.1962,7614,12,15,11,9,48,3.55,5.0,fr,43598,152,1827360,1,4,Active Shallow Crust,0.0,89.98879,0.0,12/15/7614 +2.90919,42.1962,1199,11,30,0,14,42,3.55,15.0,fr,43599,23,1827361,1,2,Active Shallow Crust,0.0,89.98879,0.0,11/30/1199 +2.90919,42.1962,2000,4,23,13,6,43,3.55,15.0,fr,43600,39,1827361,1,2,Active Shallow Crust,0.0,89.98879,0.0,04/23/2000 +2.90919,42.1962,6298,2,24,17,16,10,3.65,15.0,fr,43601,125,1827376,1,1,Active Shallow Crust,240.0011,58.01295,0.0,02/24/6298 +2.90919,42.1962,7115,8,16,19,14,18,3.75,5.0,fr,43602,142,1827384,1,2,Active Shallow Crust,0.0,89.9911,0.0,08/16/7115 +2.90919,42.1962,3240,12,3,1,3,13,3.75,5.0,fr,43603,64,1827384,1,2,Active Shallow Crust,0.0,89.9911,0.0,12/03/3240 +2.90919,42.1962,3088,2,27,6,47,10,3.75,15.0,fr,43604,61,1827385,1,1,Active Shallow Crust,0.0,89.9911,0.0,02/27/3088 +2.90919,42.1962,7932,11,14,0,36,0,3.85,5.0,fr,43605,158,1827396,1,2,Active Shallow Crust,0.0,89.98943,0.0,11/14/7932 +2.90919,42.1962,8937,6,23,19,9,51,3.85,5.0,fr,43606,178,1827396,1,2,Active Shallow Crust,0.0,89.98943,0.0,06/23/8937 +2.90919,42.1962,7736,7,1,23,18,36,3.85,15.0,fr,43607,154,1827397,1,1,Active Shallow Crust,0.0,89.98943,0.0,07/01/7736 +2.90919,42.1962,2109,7,16,23,49,4,4.05,5.0,fr,43608,42,1827420,1,2,Active Shallow Crust,0.0,89.98949,0.0,07/16/2109 +2.90919,42.1962,3348,1,27,13,39,9,4.05,5.0,fr,43609,66,1827420,1,2,Active Shallow Crust,0.0,89.98949,0.0,01/27/3348 +2.90919,42.1962,2299,8,24,16,18,11,4.25,15.0,fr,43610,45,1827445,1,1,Active Shallow Crust,0.0,89.98999,0.0,08/24/2299 +2.90919,42.1962,7257,9,23,4,9,36,4.35,5.0,fr,43611,145,1827465,1,1,Active Shallow Crust,128.8984,89.98288,0.0,09/23/7257 +2.90919,42.1962,108,7,6,8,7,2,4.85,5.0,fr,43612,2,1827516,1,1,Active Shallow Crust,0.0,89.98997,0.0,07/06/0108 +2.90919,42.1962,2279,8,27,20,31,55,5.05,5.0,fr,43613,45,1827540,1,1,Active Shallow Crust,0.0,89.99004,0.0,08/27/2279 +2.90919,42.1962,6532,4,15,20,21,50,5.25,5.0,fr,43614,130,1827564,1,1,Active Shallow Crust,0.0,89.98997,0.0,04/15/6532 +2.34956,44.62692,77,12,31,5,38,50,3.55,5.0,fr,43615,1,1827840,1,1,Active Shallow Crust,0.0,89.98923,0.0,12/31/0077 +2.34956,44.62692,8352,8,15,23,8,27,3.55,5.0,fr,43616,167,1827849,1,1,Active Shallow Crust,128.8963,89.99462,0.0,08/15/8352 +2.34956,44.62692,7513,3,3,22,55,2,3.65,15.0,fr,43617,150,1827853,1,1,Active Shallow Crust,0.0,89.9904,0.0,03/03/7513 +2.34956,44.62692,4087,1,4,13,6,54,3.75,27.5,fr,43618,81,1827872,1,1,Active Shallow Crust,0.0,89.99135,-90.0,01/04/4087 +2.34956,44.62692,1348,8,24,6,35,45,3.85,5.0,fr,43619,26,1827876,1,2,Active Shallow Crust,0.0,89.98984,0.0,08/24/1348 +2.34956,44.62692,6457,11,17,22,12,30,3.85,5.0,fr,43620,129,1827876,1,2,Active Shallow Crust,0.0,89.98984,0.0,11/17/6457 +2.34956,44.62692,9330,12,13,16,20,5,3.95,15.0,fr,43621,186,1827898,1,1,Active Shallow Crust,128.9005,89.99434,0.0,12/13/9330 +2.34956,44.62692,2915,6,2,1,23,49,4.25,5.0,fr,43622,58,1827924,1,1,Active Shallow Crust,0.0,89.99038,0.0,06/02/2915 +2.34956,44.62692,6384,9,30,4,13,19,4.35,5.0,fr,43623,127,1827936,1,1,Active Shallow Crust,0.0,89.99,0.0,09/30/6384 +2.34956,44.62692,2207,3,1,4,24,59,4.55,15.0,fr,43624,44,1827961,1,1,Active Shallow Crust,0.0,89.98978,0.0,03/01/2207 +2.32663,40.3535,6402,8,20,9,43,37,3.65,5.0,fr,43625,128,1828335,1,1,Active Shallow Crust,240.0008,58.01303,0.0,08/20/6402 +2.32663,40.3535,8643,9,6,12,12,14,3.95,27.5,fr,43626,172,1828379,1,1,Active Shallow Crust,128.9006,89.99394,0.0,09/06/8643 +2.32663,40.3535,8850,9,5,19,0,36,4.05,15.0,fr,43627,176,1828381,1,1,Active Shallow Crust,0.0,89.9892,0.0,09/05/8850 +2.32663,40.3535,4473,12,29,7,41,6,4.45,27.5,fr,43628,89,1828430,1,1,Active Shallow Crust,0.0,89.99046,0.0,12/29/4473 +1.17374,42.73445,5804,7,6,7,53,5,3.55,5.0,fr,43629,116,1828800,1,3,Active Shallow Crust,0.0,89.99074,0.0,07/06/5804 +1.17374,42.73445,3194,12,18,23,16,3,3.55,5.0,fr,43630,63,1828800,1,3,Active Shallow Crust,0.0,89.99074,0.0,12/18/3194 +1.17374,42.73445,6505,11,21,13,2,26,3.55,5.0,fr,43631,130,1828800,1,3,Active Shallow Crust,0.0,89.99074,0.0,11/21/6505 +1.17374,42.73445,4415,10,1,6,25,33,3.55,15.0,fr,43632,88,1828801,1,1,Active Shallow Crust,0.0,89.99074,0.0,10/01/4415 +1.17374,42.73445,8989,3,13,11,13,36,3.55,27.5,fr,43633,179,1828802,1,1,Active Shallow Crust,0.0,89.99074,0.0,03/13/8989 +1.17374,42.73445,7446,3,6,15,3,32,3.65,5.0,fr,43634,148,1828812,1,2,Active Shallow Crust,0.0,89.9901,0.0,03/06/7446 +1.17374,42.73445,8991,2,20,6,11,24,3.65,5.0,fr,43635,179,1828812,1,2,Active Shallow Crust,0.0,89.9901,0.0,02/20/8991 +1.17374,42.73445,8934,1,29,12,9,52,3.65,15.0,fr,43636,178,1828813,1,1,Active Shallow Crust,0.0,89.9901,0.0,01/29/8934 +1.17374,42.73445,6731,2,12,12,38,16,3.65,5.0,fr,43637,134,1828818,1,1,Active Shallow Crust,0.0,89.98998,-90.0,02/12/6731 +1.17374,42.73445,3311,5,29,7,40,19,3.65,5.0,fr,43638,66,1828821,1,1,Active Shallow Crust,128.9003,89.96359,0.0,05/29/3311 +1.17374,42.73445,4020,1,10,3,10,58,3.75,5.0,fr,43639,80,1828824,1,1,Active Shallow Crust,0.0,89.9897,0.0,01/10/4020 +1.17374,42.73445,7823,10,25,13,3,49,3.85,5.0,fr,43640,156,1828836,1,1,Active Shallow Crust,0.0,89.98951,0.0,10/25/7823 +1.17374,42.73445,4870,4,28,15,52,43,3.85,5.0,fr,43641,97,1828839,1,1,Active Shallow Crust,240.0103,57.99779,0.0,04/28/4870 +1.17374,42.73445,2922,11,29,15,48,0,3.95,5.0,fr,43642,58,1828848,1,1,Active Shallow Crust,0.0,89.98949,0.0,11/29/2922 +1.17374,42.73445,4817,10,19,7,51,57,3.95,27.5,fr,43643,96,1828850,1,1,Active Shallow Crust,0.0,89.98949,0.0,10/19/4817 +1.17374,42.73445,25,10,3,1,14,7,3.95,5.0,fr,43644,0,1828851,1,1,Active Shallow Crust,240.0191,58.00492,0.0,10/03/0025 +1.17374,42.73445,2895,1,15,19,43,49,4.05,5.0,fr,43645,57,1828860,1,1,Active Shallow Crust,0.0,89.98959,0.0,01/15/2895 +1.17374,42.73445,227,12,25,10,3,57,4.05,15.0,fr,43646,4,1828861,1,1,Active Shallow Crust,0.0,89.98959,0.0,12/25/0227 +1.17374,42.73445,9077,10,31,10,56,2,4.05,27.5,fr,43647,181,1828862,1,1,Active Shallow Crust,0.0,89.98959,0.0,10/31/9077 +1.17374,42.73445,3367,8,14,0,47,33,4.15,5.0,fr,43648,67,1828872,1,1,Active Shallow Crust,0.0,89.98979,0.0,08/14/3367 +1.17374,42.73445,2508,12,4,20,58,42,4.15,15.0,fr,43649,50,1828873,1,1,Active Shallow Crust,0.0,89.98979,0.0,12/04/2508 +1.17374,42.73445,4686,5,7,10,57,39,4.15,27.5,fr,43650,93,1828874,1,1,Active Shallow Crust,0.0,89.98979,0.0,05/07/4686 +1.17374,42.73445,5989,10,10,22,16,33,4.25,15.0,fr,43651,119,1828885,1,1,Active Shallow Crust,0.0,89.99007,0.0,10/10/5989 +1.17374,42.73445,8156,4,14,3,34,14,4.55,27.5,fr,43652,163,1828922,1,1,Active Shallow Crust,0.0,89.99004,0.0,04/14/8156 +1.17374,42.73445,5705,3,2,1,28,2,4.75,5.0,fr,43653,114,1828947,1,1,Active Shallow Crust,240.0062,58.00425,0.0,03/02/5705 +1.17374,42.73445,6970,9,1,19,37,35,4.85,5.0,fr,43654,139,1828956,1,1,Active Shallow Crust,0.0,89.99005,0.0,09/01/6970 +7.08384,49.14453,2037,6,26,21,48,55,3.65,5.0,fr,43655,40,1829292,1,1,Active Shallow Crust,0.0,89.98824,0.0,06/26/2037 +7.08384,49.14453,1895,12,16,8,2,40,3.75,5.0,fr,43656,37,1829313,1,1,Active Shallow Crust,128.8961,89.96754,0.0,12/16/1895 +7.08384,49.14453,4116,1,16,10,11,13,3.85,5.0,fr,43657,82,1829322,1,1,Active Shallow Crust,0.0,89.99055,-90.0,01/16/4116 +7.08384,49.14453,5735,8,13,4,58,57,4.55,5.0,fr,43658,114,1829409,1,1,Active Shallow Crust,128.8928,89.98579,0.0,08/13/5735 +7.08384,49.14453,7609,10,30,9,37,43,4.95,15.0,fr,43659,152,1829449,1,1,Active Shallow Crust,0.0,89.98947,0.0,10/30/7609 +1.39222,43.1606,1428,2,1,8,10,5,3.55,15.0,fr,43660,28,1829761,1,1,Active Shallow Crust,0.0,89.99081,0.0,02/01/1428 +1.39222,43.1606,7057,9,6,2,35,55,3.75,27.5,fr,43661,141,1829786,1,1,Active Shallow Crust,0.0,89.98978,0.0,09/06/7057 +1.39222,43.1606,7160,11,4,2,45,52,3.85,15.0,fr,43662,143,1829797,1,1,Active Shallow Crust,0.0,89.98959,0.0,11/04/7160 +1.39222,43.1606,1100,7,2,3,1,0,3.95,5.0,fr,43663,21,1829808,1,1,Active Shallow Crust,0.0,89.98956,0.0,07/02/1100 +1.39222,43.1606,9827,3,29,6,46,20,4.15,5.0,fr,43664,196,1829832,1,1,Active Shallow Crust,0.0,89.98986,0.0,03/29/9827 +1.39222,43.1606,9403,4,7,15,33,48,4.25,15.0,fr,43665,188,1829848,1,1,Active Shallow Crust,240.0068,57.99391,0.0,04/07/9403 +1.39222,43.1606,7345,3,24,15,58,15,4.45,5.0,fr,43666,146,1829871,1,1,Active Shallow Crust,240.0044,57.99451,0.0,03/24/7345 +1.39222,43.1606,3967,6,30,6,4,34,4.65,15.0,fr,43667,79,1829899,1,1,Active Shallow Crust,0.0,89.99004,-90.0,06/30/3967 +1.39222,43.1606,6214,9,14,17,29,31,5.25,5.0,fr,43668,124,1829964,1,1,Active Shallow Crust,359.9999,89.99013,0.0,09/14/6214 +1.9405,44.56021,1472,10,23,12,18,30,3.65,5.0,fr,43669,29,1830252,1,2,Active Shallow Crust,0.0,89.99039,0.0,10/23/1472 +1.9405,44.56021,2400,9,26,11,44,9,3.65,5.0,fr,43670,47,1830252,1,2,Active Shallow Crust,0.0,89.99039,0.0,09/26/2400 +1.9405,44.56021,4272,1,25,19,19,3,3.65,5.0,fr,43671,85,1830261,1,1,Active Shallow Crust,128.9002,89.96362,0.0,01/25/4272 +1.9405,44.56021,8308,10,1,12,1,55,3.75,15.0,fr,43672,166,1830265,1,1,Active Shallow Crust,0.0,89.99001,0.0,10/01/8308 +1.9405,44.56021,9825,6,10,23,59,32,3.85,5.0,fr,43673,196,1830276,1,1,Active Shallow Crust,0.0,89.98983,0.0,06/10/9825 +1.9405,44.56021,6827,1,6,3,30,48,3.95,5.0,fr,43674,136,1830288,1,1,Active Shallow Crust,0.0,89.9898,0.0,01/06/6827 +1.9405,44.56021,5136,11,8,23,49,20,4.05,15.0,fr,43675,102,1830310,1,1,Active Shallow Crust,128.8905,89.99394,0.0,11/08/5136 +1.9405,44.56021,2449,4,9,21,37,51,4.45,5.0,fr,43676,48,1830348,1,1,Active Shallow Crust,0.0,89.9898,0.0,04/09/2449 +-6.09324,49.53349,7142,7,11,11,49,51,3.95,27.5,fr,43677,142,1830770,1,1,Active Shallow Crust,0.0,89.99174,0.0,07/11/7142 +7.93954,45.51143,4409,4,24,4,16,21,3.55,5.0,fr,43678,88,1832160,1,2,Active Shallow Crust,0.0,89.99294,0.0,04/24/4409 +7.93954,45.51143,9779,9,6,1,31,38,3.55,5.0,fr,43679,195,1832160,1,2,Active Shallow Crust,0.0,89.99294,0.0,09/06/9779 +7.93954,45.51143,6619,10,8,7,24,30,3.55,5.0,fr,43680,132,1832163,1,1,Active Shallow Crust,240.0136,57.99762,0.0,10/08/6619 +7.93954,45.51143,8017,5,24,23,0,1,3.55,27.5,fr,43681,160,1832165,1,1,Active Shallow Crust,240.0136,57.99753,0.0,05/24/8017 +7.93954,45.51143,844,9,16,4,15,38,3.55,5.0,fr,43682,16,1832166,1,1,Active Shallow Crust,0.0,89.99285,-90.0,09/16/0844 +7.93954,45.51143,6025,1,17,7,19,32,3.55,15.0,fr,43683,120,1832167,1,1,Active Shallow Crust,0.0,89.99285,-90.0,01/17/6025 +7.93954,45.51143,530,12,24,14,2,40,3.55,27.5,fr,43684,10,1832168,1,1,Active Shallow Crust,0.0,89.99285,-90.0,12/24/0530 +7.93954,45.51143,2389,4,7,17,54,52,3.65,15.0,fr,43685,47,1832173,1,1,Active Shallow Crust,0.0,89.9874,0.0,04/07/2389 +7.93954,45.51143,3344,7,8,11,48,59,3.65,5.0,fr,43686,66,1832175,1,1,Active Shallow Crust,240.0013,58.01274,0.0,07/08/3344 +7.93954,45.51143,6092,2,8,8,12,41,3.75,5.0,fr,43687,121,1832184,1,3,Active Shallow Crust,0.0,89.98878,0.0,02/08/6092 +7.93954,45.51143,8498,9,28,1,46,51,3.75,5.0,fr,43688,169,1832184,1,3,Active Shallow Crust,0.0,89.98878,0.0,09/28/8498 +7.93954,45.51143,4889,3,26,0,51,25,3.75,5.0,fr,43689,97,1832184,1,3,Active Shallow Crust,0.0,89.98878,0.0,03/26/4889 +7.93954,45.51143,9960,4,30,20,21,43,3.75,15.0,fr,43690,199,1832185,1,1,Active Shallow Crust,0.0,89.98878,0.0,04/30/9960 +7.93954,45.51143,9559,12,27,6,27,45,3.75,5.0,fr,43691,191,1832187,1,1,Active Shallow Crust,240.0076,58.01767,0.0,12/27/9559 +7.93954,45.51143,7308,4,10,9,56,47,3.75,5.0,fr,43692,146,1832190,1,1,Active Shallow Crust,0.0,89.98865,-90.0,04/10/7308 +7.93954,45.51143,2343,8,22,19,30,9,3.85,5.0,fr,43693,46,1832196,1,2,Active Shallow Crust,0.0,89.99,0.0,08/22/2343 +7.93954,45.51143,3409,2,9,18,6,50,3.85,5.0,fr,43694,68,1832196,1,2,Active Shallow Crust,0.0,89.99,0.0,02/09/3409 +7.93954,45.51143,6133,5,19,10,33,19,3.85,5.0,fr,43695,122,1832199,1,1,Active Shallow Crust,240.011,57.99784,0.0,05/19/6133 +7.93954,45.51143,5263,2,10,19,40,14,3.95,5.0,fr,43696,105,1832208,1,1,Active Shallow Crust,0.0,89.99108,0.0,02/10/5263 +7.93954,45.51143,1361,12,17,12,29,40,3.95,15.0,fr,43697,27,1832212,1,1,Active Shallow Crust,240.0193,58.00546,0.0,12/17/1361 +7.93954,45.51143,6979,6,30,1,24,55,4.05,5.0,fr,43698,139,1832220,1,1,Active Shallow Crust,0.0,89.98808,0.0,06/30/6979 +7.93954,45.51143,3739,9,9,0,2,24,4.05,5.0,fr,43699,74,1832226,1,2,Active Shallow Crust,0.0,89.99196,-90.0,09/09/3739 +7.93954,45.51143,97,12,14,21,34,29,4.05,5.0,fr,43700,1,1832226,1,2,Active Shallow Crust,0.0,89.99196,-90.0,12/14/0097 +7.93954,45.51143,8803,9,26,2,1,2,4.15,5.0,fr,43701,176,1832232,1,1,Active Shallow Crust,0.0,89.98937,0.0,09/26/8803 +7.93954,45.51143,5169,1,30,9,26,55,4.15,27.5,fr,43702,103,1832234,1,1,Active Shallow Crust,0.0,89.98937,0.0,01/30/5169 +7.93954,45.51143,6505,4,26,21,2,49,4.15,15.0,fr,43703,130,1832236,1,1,Active Shallow Crust,240.0089,57.99695,0.0,04/26/6505 +7.93954,45.51143,7991,4,2,16,27,22,4.15,15.0,fr,43704,159,1832239,1,1,Active Shallow Crust,0.0,89.98925,-90.0,04/02/7991 +7.93954,45.51143,834,1,3,10,53,48,4.25,15.0,fr,43705,16,1832245,1,1,Active Shallow Crust,0.0,89.99053,0.0,01/03/0834 +7.93954,45.51143,5374,10,27,5,10,8,4.25,5.0,fr,43706,107,1832247,1,1,Active Shallow Crust,240.0078,57.99366,0.0,10/27/5374 +7.93954,45.51143,1860,2,20,17,56,41,4.25,15.0,fr,43707,37,1832254,1,1,Active Shallow Crust,128.8949,89.98091,0.0,02/20/1860 +7.93954,45.51143,8840,6,24,6,4,19,4.35,15.0,fr,43708,176,1832257,1,1,Active Shallow Crust,0.0,89.98875,0.0,06/24/8840 +7.93954,45.51143,3942,10,27,4,16,26,4.45,5.0,fr,43709,78,1832268,1,2,Active Shallow Crust,0.0,89.98997,0.0,10/27/3942 +7.93954,45.51143,5341,3,9,12,26,33,4.45,5.0,fr,43710,106,1832268,1,2,Active Shallow Crust,0.0,89.98997,0.0,03/09/5341 +7.93954,45.51143,7735,9,19,21,8,13,4.55,5.0,fr,43711,154,1832280,1,1,Active Shallow Crust,0.0,89.99106,0.0,09/19/7735 +7.93954,45.51143,7719,3,18,2,56,39,4.55,27.5,fr,43712,154,1832282,1,1,Active Shallow Crust,0.0,89.99106,0.0,03/18/7719 +7.93954,45.51143,777,3,18,6,32,17,4.55,27.5,fr,43713,15,1832285,1,1,Active Shallow Crust,240.0089,57.9972,0.0,03/18/0777 +7.93954,45.51143,8305,9,11,9,2,55,4.85,27.5,fr,43714,166,1832318,1,1,Active Shallow Crust,0.0,89.99051,0.0,09/11/8305 +7.93954,45.51143,9922,3,9,4,27,27,5.05,5.0,fr,43715,198,1832340,1,1,Active Shallow Crust,0.0,89.98994,0.0,03/09/9922 +7.93954,45.51143,3949,6,12,22,19,54,5.05,5.0,fr,43716,78,1832346,1,1,Active Shallow Crust,0.0,89.98983,-90.0,06/12/3949 +8.11256,50.87836,4191,6,8,19,39,39,3.65,5.0,fr,43717,83,1832652,1,2,Active Shallow Crust,0.0,89.98866,0.0,06/08/4191 +8.11256,50.87836,2861,1,18,1,30,35,3.65,5.0,fr,43718,57,1832652,1,2,Active Shallow Crust,0.0,89.98866,0.0,01/18/2861 +8.11256,50.87836,3040,7,29,3,46,26,3.85,5.0,fr,43719,60,1832676,1,1,Active Shallow Crust,0.0,89.99099,0.0,07/29/3040 +8.11256,50.87836,410,9,8,12,44,6,4.35,15.0,fr,43720,8,1832740,1,1,Active Shallow Crust,240.0092,57.99583,0.0,09/08/0410 +8.11256,50.87836,8955,9,4,9,28,34,4.75,5.0,fr,43721,179,1832784,1,1,Active Shallow Crust,0.0,89.99041,0.0,09/04/8955 +4.92679,48.36466,9201,9,6,17,34,36,3.75,5.0,fr,43722,184,1833144,1,1,Active Shallow Crust,0.0,89.98936,0.0,09/06/9201 +-1.21241,50.21649,4971,2,21,19,27,56,3.55,15.0,fr,43723,99,1833601,1,1,Active Shallow Crust,0.0,89.99032,0.0,02/21/4971 +-1.21241,50.21649,855,1,16,0,5,48,3.95,5.0,fr,43724,17,1833654,1,1,Active Shallow Crust,0.0,89.9897,-90.0,01/16/0855 +-1.21241,50.21649,8735,6,21,22,54,15,5.05,5.0,fr,43725,174,1833783,1,1,Active Shallow Crust,240.0243,57.99792,0.0,06/21/8735 +-1.91292,42.13774,8493,6,13,11,49,43,3.55,5.0,fr,43726,169,1834080,1,2,Active Shallow Crust,0.0,89.99065,0.0,06/13/8493 +-1.91292,42.13774,7579,4,26,12,46,11,3.55,5.0,fr,43727,151,1834080,1,2,Active Shallow Crust,0.0,89.99065,0.0,04/26/7579 +-1.91292,42.13774,4761,8,16,3,52,16,3.55,5.0,fr,43728,95,1834086,1,1,Active Shallow Crust,0.0,89.99055,-90.0,08/16/4761 +-1.91292,42.13774,7290,5,26,5,27,58,3.65,5.0,fr,43729,145,1834092,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/26/7290 +-1.91292,42.13774,12,7,23,8,35,48,3.85,5.0,fr,43730,0,1834122,1,1,Active Shallow Crust,0.0,89.99063,-90.0,07/23/0012 +-1.91292,42.13774,9879,9,24,4,35,33,3.95,5.0,fr,43731,197,1834128,1,1,Active Shallow Crust,0.0,89.99056,0.0,09/24/9879 +6.24097,50.04226,6327,1,21,13,48,3,3.55,5.0,fr,43732,126,1834560,1,1,Active Shallow Crust,0.0,89.98705,0.0,01/21/6327 +6.24097,50.04226,8574,9,29,1,47,5,3.55,15.0,fr,43733,171,1834561,1,1,Active Shallow Crust,0.0,89.98705,0.0,09/29/8574 +6.24097,50.04226,9990,4,20,17,52,16,3.55,5.0,fr,43734,199,1834569,1,1,Active Shallow Crust,128.8965,89.99352,0.0,04/20/9990 +6.24097,50.04226,521,7,18,15,42,20,3.65,5.0,fr,43735,10,1834572,1,1,Active Shallow Crust,0.0,89.98846,0.0,07/18/0521 +6.24097,50.04226,4057,11,21,8,38,33,3.65,15.0,fr,43736,81,1834573,1,1,Active Shallow Crust,0.0,89.98846,0.0,11/21/4057 +6.24097,50.04226,491,4,8,20,10,54,3.85,15.0,fr,43737,9,1834597,1,1,Active Shallow Crust,0.0,89.99083,0.0,04/08/0491 +6.24097,50.04226,2142,4,1,23,23,1,3.85,15.0,fr,43738,42,1834606,1,1,Active Shallow Crust,128.8959,89.99313,0.0,04/01/2142 +6.24097,50.04226,5361,4,6,20,42,30,3.95,5.0,fr,43739,107,1834614,1,1,Active Shallow Crust,0.0,89.99173,-90.0,04/06/5361 +3.14299,46.05505,6911,6,18,1,55,19,3.55,5.0,fr,43740,138,1835520,1,1,Active Shallow Crust,0.0,89.9895,0.0,06/18/6911 +3.14299,46.05505,6306,5,2,19,38,55,3.55,15.0,fr,43741,126,1835521,1,1,Active Shallow Crust,0.0,89.9895,0.0,05/02/6306 +3.14299,46.05505,5315,2,8,3,24,57,3.55,15.0,fr,43742,106,1835524,1,1,Active Shallow Crust,240.0125,57.99778,0.0,02/08/5315 +3.14299,46.05505,7011,9,6,6,51,28,3.65,5.0,fr,43743,140,1835532,1,1,Active Shallow Crust,0.0,89.99065,0.0,09/06/7011 +3.14299,46.05505,7964,11,6,14,51,29,3.65,15.0,fr,43744,159,1835533,1,1,Active Shallow Crust,0.0,89.99065,0.0,11/06/7964 +3.14299,46.05505,3338,6,22,4,54,8,3.65,5.0,fr,43745,66,1835538,1,1,Active Shallow Crust,0.0,89.99054,-90.0,06/22/3338 +3.14299,46.05505,7415,10,25,8,33,14,3.75,5.0,fr,43746,148,1835544,1,1,Active Shallow Crust,0.0,89.98888,0.0,10/25/7415 +3.14299,46.05505,2452,6,14,0,40,50,3.75,15.0,fr,43747,49,1835545,1,1,Active Shallow Crust,0.0,89.98888,0.0,06/14/2452 +3.14299,46.05505,9947,9,29,15,4,22,3.85,5.0,fr,43748,198,1835556,1,3,Active Shallow Crust,0.0,89.99009,0.0,09/29/9947 +3.14299,46.05505,5412,1,3,22,36,57,3.85,5.0,fr,43749,108,1835556,1,3,Active Shallow Crust,0.0,89.99009,0.0,01/03/5412 +3.14299,46.05505,7847,7,18,23,44,42,3.85,5.0,fr,43750,156,1835556,1,3,Active Shallow Crust,0.0,89.99009,0.0,07/18/7847 +3.14299,46.05505,9711,3,30,13,21,34,3.85,15.0,fr,43751,194,1835560,1,1,Active Shallow Crust,240.0112,57.99782,0.0,03/30/9711 +3.14299,46.05505,6619,4,5,23,35,24,3.85,5.0,fr,43752,132,1835565,1,1,Active Shallow Crust,128.8958,89.9938,0.0,04/05/6619 +3.14299,46.05505,6920,1,22,9,0,31,3.95,5.0,fr,43753,138,1835568,1,1,Active Shallow Crust,0.0,89.98896,0.0,01/22/6920 +3.14299,46.05505,4400,3,25,6,15,46,3.95,5.0,fr,43754,87,1835571,1,1,Active Shallow Crust,240.0198,58.00473,0.0,03/25/4400 +3.14299,46.05505,7066,7,16,15,36,58,3.95,5.0,fr,43755,141,1835577,1,1,Active Shallow Crust,128.9006,89.99448,0.0,07/16/7066 +3.14299,46.05505,4977,6,25,10,38,18,4.05,15.0,fr,43756,99,1835581,1,1,Active Shallow Crust,0.0,89.99016,0.0,06/25/4977 +3.14299,46.05505,9897,1,18,7,29,35,4.15,5.0,fr,43757,197,1835598,1,1,Active Shallow Crust,0.0,89.98936,-90.0,01/18/9897 +3.14299,46.05505,5859,9,9,0,51,54,4.15,5.0,fr,43758,117,1835601,1,1,Active Shallow Crust,128.8971,89.99387,0.0,09/09/5859 +3.14299,46.05505,1501,4,25,6,10,4,4.25,5.0,fr,43759,30,1835604,1,1,Active Shallow Crust,0.0,89.99062,0.0,04/25/1501 +3.14299,46.05505,4515,7,29,5,11,39,4.25,15.0,fr,43760,90,1835605,1,1,Active Shallow Crust,0.0,89.99062,0.0,07/29/4515 +3.14299,46.05505,8449,4,22,10,30,22,4.25,5.0,fr,43761,168,1835610,1,1,Active Shallow Crust,0.0,89.99052,-90.0,04/22/8449 +3.14299,46.05505,3816,7,1,17,18,17,4.25,5.0,fr,43762,76,1835613,1,1,Active Shallow Crust,128.8947,89.98093,0.0,07/01/3816 +3.14299,46.05505,5010,5,11,19,23,37,5.95,15.0,fr,43763,100,1835812,1,1,Active Shallow Crust,240.0504,58.00055,0.0,05/11/5010 +-0.37076,50.92147,7749,1,8,7,24,5,3.55,5.0,fr,43764,154,1836006,1,1,Active Shallow Crust,0.0,89.98995,-90.0,01/08/7749 +-0.37076,50.92147,7071,4,8,15,47,13,3.65,5.0,fr,43765,141,1836015,1,1,Active Shallow Crust,240.0016,58.01301,0.0,04/08/7071 +-0.37076,50.92147,5070,3,24,16,15,16,3.75,5.0,fr,43766,101,1836027,1,1,Active Shallow Crust,240.0089,58.01768,0.0,03/24/5070 +-0.37076,50.92147,2772,6,13,20,33,23,3.85,5.0,fr,43767,55,1836036,1,1,Active Shallow Crust,0.0,89.98988,0.0,06/13/2772 +-0.37076,50.92147,3597,6,29,3,47,10,3.95,5.0,fr,43768,71,1836048,1,2,Active Shallow Crust,0.0,89.98997,0.0,06/29/3597 +-0.37076,50.92147,3943,1,8,14,17,4,3.95,5.0,fr,43769,78,1836048,1,2,Active Shallow Crust,0.0,89.98997,0.0,01/08/3943 +-0.37076,50.92147,1698,11,16,2,28,36,4.15,15.0,fr,43770,33,1836073,1,1,Active Shallow Crust,0.0,89.99004,0.0,11/16/1698 +-0.37076,50.92147,4064,2,26,0,5,22,4.35,5.0,fr,43771,81,1836105,1,1,Active Shallow Crust,128.8969,89.98274,0.0,02/26/4064 +6.04582,49.14331,8731,12,21,15,15,25,3.65,5.0,fr,43772,174,1836492,1,1,Active Shallow Crust,0.0,89.98824,0.0,12/21/8731 +6.04582,49.14331,5688,2,18,5,53,37,3.75,5.0,fr,43773,113,1836504,1,1,Active Shallow Crust,0.0,89.98952,0.0,02/18/5688 +6.04582,49.14331,6269,12,9,17,10,48,4.15,5.0,fr,43774,125,1836552,1,2,Active Shallow Crust,0.0,89.99008,0.0,12/09/6269 +6.04582,49.14331,3022,10,12,4,30,57,4.15,5.0,fr,43775,60,1836552,1,2,Active Shallow Crust,0.0,89.99008,0.0,10/12/3022 +6.04582,49.14331,9270,4,27,9,10,28,4.45,5.0,fr,43776,185,1836588,1,1,Active Shallow Crust,0.0,89.99064,0.0,04/27/9270 +6.04582,49.14331,889,9,22,16,36,31,4.95,5.0,fr,43777,17,1836654,1,1,Active Shallow Crust,0.0,89.98935,-90.0,09/22/0889 +4.8079,43.93856,2575,11,3,22,48,55,3.55,5.0,fr,43778,51,1836960,1,1,Active Shallow Crust,0.0,89.99274,0.0,11/03/2575 +4.8079,43.93856,6193,2,1,18,9,2,3.55,27.5,fr,43779,123,1836962,1,2,Active Shallow Crust,0.0,89.99274,0.0,02/01/6193 +4.8079,43.93856,6278,11,28,16,53,50,3.55,27.5,fr,43780,125,1836962,1,2,Active Shallow Crust,0.0,89.99274,0.0,11/28/6278 +4.8079,43.93856,434,8,21,22,1,52,3.55,15.0,fr,43781,8,1836964,1,1,Active Shallow Crust,240.013,57.9972,0.0,08/21/0434 +4.8079,43.93856,6724,11,20,9,52,51,3.55,5.0,fr,43782,134,1836969,1,1,Active Shallow Crust,128.8969,89.99274,0.0,11/20/6724 +4.8079,43.93856,664,12,29,6,24,40,3.65,5.0,fr,43783,13,1836972,1,6,Active Shallow Crust,0.0,89.98706,0.0,12/29/0664 +4.8079,43.93856,2097,1,29,5,41,58,3.65,5.0,fr,43784,41,1836972,1,6,Active Shallow Crust,0.0,89.98706,0.0,01/29/2097 +4.8079,43.93856,8123,12,29,8,13,56,3.65,5.0,fr,43785,162,1836972,1,6,Active Shallow Crust,0.0,89.98706,0.0,12/29/8123 +4.8079,43.93856,5448,8,20,10,42,1,3.65,5.0,fr,43786,108,1836972,1,6,Active Shallow Crust,0.0,89.98706,0.0,08/20/5448 +4.8079,43.93856,6651,3,9,11,1,4,3.65,5.0,fr,43787,133,1836972,1,6,Active Shallow Crust,0.0,89.98706,0.0,03/09/6651 +4.8079,43.93856,84,5,29,17,52,0,3.65,5.0,fr,43788,1,1836972,1,6,Active Shallow Crust,0.0,89.98706,0.0,05/29/0084 +4.8079,43.93856,5919,1,22,5,49,11,3.75,5.0,fr,43789,118,1836984,1,2,Active Shallow Crust,0.0,89.98846,0.0,01/22/5919 +4.8079,43.93856,9496,1,8,11,28,14,3.75,5.0,fr,43790,189,1836984,1,2,Active Shallow Crust,0.0,89.98846,0.0,01/08/9496 +4.8079,43.93856,7873,6,25,10,59,44,3.75,15.0,fr,43791,157,1836985,1,2,Active Shallow Crust,0.0,89.98846,0.0,06/25/7873 +4.8079,43.93856,289,3,13,15,14,27,3.75,15.0,fr,43792,5,1836985,1,2,Active Shallow Crust,0.0,89.98846,0.0,03/13/0289 +4.8079,43.93856,5133,8,17,1,53,25,3.75,5.0,fr,43793,102,1836990,1,1,Active Shallow Crust,0.0,89.98833,-90.0,08/17/5133 +4.8079,43.93856,5786,4,23,17,29,48,3.85,5.0,fr,43794,115,1836996,1,1,Active Shallow Crust,0.0,89.98972,0.0,04/23/5786 +4.8079,43.93856,8719,6,7,22,40,19,3.85,15.0,fr,43795,174,1836997,1,1,Active Shallow Crust,0.0,89.98972,0.0,06/07/8719 +4.8079,43.93856,4617,10,30,12,33,8,3.85,27.5,fr,43796,92,1836998,1,1,Active Shallow Crust,0.0,89.98972,0.0,10/30/4617 +4.8079,43.93856,554,12,15,11,11,49,3.85,15.0,fr,43797,11,1837000,1,1,Active Shallow Crust,240.0097,57.99804,0.0,12/15/0554 +4.8079,43.93856,2974,9,14,19,28,35,3.95,5.0,fr,43798,59,1837008,1,1,Active Shallow Crust,0.0,89.99084,0.0,09/14/2974 +4.8079,43.93856,7366,8,25,23,5,24,3.95,15.0,fr,43799,147,1837009,1,1,Active Shallow Crust,0.0,89.99084,0.0,08/25/7366 +4.8079,43.93856,4386,4,16,12,25,32,4.05,15.0,fr,43800,87,1837021,1,1,Active Shallow Crust,0.0,89.99184,0.0,04/16/4386 +4.8079,43.93856,7158,10,17,14,54,47,4.15,5.0,fr,43801,143,1837032,1,1,Active Shallow Crust,0.0,89.98908,0.0,10/17/7158 +4.8079,43.93856,1930,8,16,20,1,11,4.15,15.0,fr,43802,38,1837042,1,1,Active Shallow Crust,128.8982,89.99272,0.0,08/16/1930 +4.8079,43.93856,2617,7,18,6,3,21,4.25,5.0,fr,43803,52,1837044,1,1,Active Shallow Crust,0.0,89.99027,0.0,07/18/2617 +4.8079,43.93856,585,5,14,1,17,58,4.35,15.0,fr,43804,11,1837057,1,1,Active Shallow Crust,0.0,89.99133,0.0,05/14/0585 +4.8079,43.93856,4735,7,6,9,19,8,4.45,5.0,fr,43805,94,1837068,1,1,Active Shallow Crust,0.0,89.98969,0.0,07/06/4735 +4.8079,43.93856,5521,7,20,17,11,51,4.55,15.0,fr,43806,110,1837081,1,1,Active Shallow Crust,0.0,89.99081,0.0,07/20/5521 +4.8079,43.93856,7385,10,21,18,8,1,4.95,15.0,fr,43807,147,1837129,1,1,Active Shallow Crust,0.0,89.98985,0.0,10/21/7385 +4.8079,43.93856,5289,2,15,4,47,5,5.05,15.0,fr,43808,105,1837141,1,1,Active Shallow Crust,0.0,89.98967,0.0,02/15/5289 +4.8079,43.93856,2728,7,5,23,40,52,5.25,5.0,fr,43809,54,1837164,1,1,Active Shallow Crust,0.0,89.98974,0.0,07/05/2728 +5.79844,51.21781,380,3,26,15,28,52,3.55,5.0,fr,43810,7,1837440,1,3,Active Shallow Crust,0.0,89.98737,0.0,03/26/0380 +5.79844,51.21781,8886,8,17,8,18,54,3.55,5.0,fr,43811,177,1837440,1,3,Active Shallow Crust,0.0,89.98737,0.0,08/17/8886 +5.79844,51.21781,900,8,1,11,55,2,3.55,5.0,fr,43812,17,1837440,1,3,Active Shallow Crust,0.0,89.98737,0.0,08/01/0900 +5.79844,51.21781,896,9,13,23,32,14,3.55,15.0,fr,43813,17,1837441,1,1,Active Shallow Crust,0.0,89.98737,0.0,09/13/0896 +5.79844,51.21781,831,11,7,17,5,24,3.55,5.0,fr,43814,16,1837446,1,1,Active Shallow Crust,0.0,89.98722,-90.0,11/07/0831 +5.79844,51.21781,8482,4,19,20,40,58,3.65,5.0,fr,43815,169,1837452,1,1,Active Shallow Crust,0.0,89.98874,0.0,04/19/8482 +5.79844,51.21781,2719,10,21,12,51,46,3.65,15.0,fr,43816,54,1837453,1,2,Active Shallow Crust,0.0,89.98874,0.0,10/21/2719 +5.79844,51.21781,1838,3,24,2,55,58,3.65,15.0,fr,43817,36,1837453,1,2,Active Shallow Crust,0.0,89.98874,0.0,03/24/1838 +5.79844,51.21781,1541,9,5,19,11,0,3.65,27.5,fr,43818,30,1837454,1,1,Active Shallow Crust,0.0,89.98874,0.0,09/05/1541 +5.79844,51.21781,5565,9,26,2,59,29,3.65,15.0,fr,43819,111,1837456,1,1,Active Shallow Crust,240.0022,58.0124,0.0,09/26/5565 +5.79844,51.21781,3136,2,9,2,31,54,3.75,5.0,fr,43820,62,1837464,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/09/3136 +5.79844,51.21781,7664,6,4,14,42,54,3.75,15.0,fr,43821,153,1837465,1,1,Active Shallow Crust,0.0,89.98997,0.0,06/04/7664 +5.79844,51.21781,8574,3,31,17,16,31,3.75,27.5,fr,43822,171,1837466,1,2,Active Shallow Crust,0.0,89.98997,0.0,03/31/8574 +5.79844,51.21781,915,5,7,2,17,18,3.75,27.5,fr,43823,18,1837466,1,2,Active Shallow Crust,0.0,89.98997,0.0,05/07/0915 +5.79844,51.21781,5973,2,13,9,39,44,3.75,15.0,fr,43824,119,1837471,1,1,Active Shallow Crust,0.0,89.98985,-90.0,02/13/5973 +5.79844,51.21781,8930,4,8,10,24,44,3.85,5.0,fr,43825,178,1837476,1,1,Active Shallow Crust,0.0,89.99106,0.0,04/08/8930 +5.79844,51.21781,8533,11,23,7,4,29,3.85,15.0,fr,43826,170,1837477,1,1,Active Shallow Crust,0.0,89.99106,0.0,11/23/8533 +5.79844,51.21781,2628,3,31,7,37,38,3.85,5.0,fr,43827,52,1837479,1,1,Active Shallow Crust,240.0124,57.99783,0.0,03/31/2628 +5.79844,51.21781,6290,2,4,9,34,3,3.85,15.0,fr,43828,125,1837486,1,1,Active Shallow Crust,128.8952,89.99553,0.0,02/04/6290 +5.79844,51.21781,8687,6,8,20,28,0,3.95,5.0,fr,43829,173,1837488,1,1,Active Shallow Crust,0.0,89.98804,0.0,06/08/8687 +5.79844,51.21781,6447,11,26,0,23,44,4.05,5.0,fr,43830,128,1837500,1,1,Active Shallow Crust,0.0,89.98934,0.0,11/26/6447 +5.79844,51.21781,6529,3,27,16,35,32,4.15,15.0,fr,43831,130,1837513,1,1,Active Shallow Crust,0.0,89.9905,0.0,03/27/6529 +5.79844,51.21781,5735,4,16,12,37,38,4.15,27.5,fr,43832,114,1837514,1,2,Active Shallow Crust,0.0,89.9905,0.0,04/16/5735 +5.79844,51.21781,9620,6,26,6,6,26,4.15,27.5,fr,43833,192,1837514,1,2,Active Shallow Crust,0.0,89.9905,0.0,06/26/9620 +5.79844,51.21781,8266,12,13,18,57,40,4.25,15.0,fr,43834,165,1837525,1,1,Active Shallow Crust,0.0,89.98872,0.0,12/13/8266 +5.79844,51.21781,1893,12,10,13,42,30,4.45,15.0,fr,43835,37,1837549,1,1,Active Shallow Crust,0.0,89.99104,0.0,12/10/1893 +5.79844,51.21781,891,5,14,6,37,30,4.45,15.0,fr,43836,17,1837555,1,1,Active Shallow Crust,0.0,89.99093,-90.0,05/14/0891 +5.79844,51.21781,7472,4,20,20,26,56,4.95,15.0,fr,43837,149,1837609,1,1,Active Shallow Crust,0.0,89.98991,0.0,04/20/7472 +5.79844,51.21781,3124,12,10,16,5,3,5.15,5.0,fr,43838,62,1837632,1,1,Active Shallow Crust,0.0,89.98998,0.0,12/10/3124 +-1.65214,50.58468,1442,4,13,14,53,3,3.55,15.0,fr,43839,28,1839370,1,1,Active Shallow Crust,128.8955,89.9936,0.0,04/13/1442 +3.99848,51.9545,85,2,28,4,33,1,3.55,5.0,fr,43840,1,1839840,1,1,Active Shallow Crust,0.0,89.99068,0.0,02/28/0085 +3.99848,51.9545,7674,12,8,10,29,56,3.55,5.0,fr,43841,153,1839843,1,1,Active Shallow Crust,240.0124,57.99902,0.0,12/08/7674 +3.99848,51.9545,9659,10,24,0,28,57,3.85,27.5,fr,43842,193,1839884,1,1,Active Shallow Crust,0.0,89.9911,-90.0,10/24/9659 +-0.29394,43.55258,7329,4,20,11,46,33,3.65,5.0,fr,43843,146,1840332,1,1,Active Shallow Crust,0.0,89.98982,0.0,04/20/7329 +-0.29394,43.55258,5174,12,5,15,24,54,3.65,15.0,fr,43844,103,1840342,1,1,Active Shallow Crust,128.9008,89.9635,0.0,12/05/5174 +-0.29394,43.55258,9117,8,21,0,28,21,3.85,5.0,fr,43845,182,1840356,1,2,Active Shallow Crust,0.0,89.98997,0.0,08/21/9117 +-0.29394,43.55258,5775,5,21,21,14,56,3.85,5.0,fr,43846,115,1840356,1,2,Active Shallow Crust,0.0,89.98997,0.0,05/21/5775 +-0.29394,43.55258,4694,11,19,16,54,7,3.85,15.0,fr,43847,93,1840357,1,1,Active Shallow Crust,0.0,89.98997,0.0,11/19/4694 +-0.29394,43.55258,6616,10,13,15,33,30,4.05,5.0,fr,43848,132,1840380,1,1,Active Shallow Crust,0.0,89.98998,0.0,10/13/6616 +-0.29394,43.55258,2666,10,2,14,48,55,4.15,5.0,fr,43849,53,1840392,1,1,Active Shallow Crust,0.0,89.98993,0.0,10/02/2666 +-0.29394,43.55258,418,8,16,21,26,22,5.65,5.0,fr,43850,8,1840572,1,1,Active Shallow Crust,0.0,89.98998,0.0,08/16/0418 +3.185,40.62003,4076,6,14,18,21,6,3.55,5.0,fr,43851,81,1840803,1,1,Active Shallow Crust,240.0118,57.99775,0.0,06/14/4076 +3.185,40.62003,7257,12,17,22,1,29,3.55,15.0,fr,43852,145,1840804,1,2,Active Shallow Crust,240.0118,57.99775,0.0,12/17/7257 +3.185,40.62003,6369,10,27,1,52,18,3.55,15.0,fr,43853,127,1840804,1,2,Active Shallow Crust,240.0118,57.99775,0.0,10/27/6369 +3.185,40.62003,9984,5,3,15,25,20,4.15,5.0,fr,43854,199,1840872,1,1,Active Shallow Crust,0.0,89.99041,0.0,05/03/9984 +3.185,40.62003,3355,4,16,6,10,20,4.15,15.0,fr,43855,67,1840873,1,1,Active Shallow Crust,0.0,89.99041,0.0,04/16/3355 +6.85514,45.38803,5739,10,9,20,37,22,3.55,5.0,fr,43856,114,1841280,1,3,Active Shallow Crust,0.0,89.99292,0.0,10/09/5739 +6.85514,45.38803,629,9,7,12,55,0,3.55,5.0,fr,43857,12,1841280,1,3,Active Shallow Crust,0.0,89.99292,0.0,09/07/0629 +6.85514,45.38803,7446,10,2,0,51,1,3.55,5.0,fr,43858,148,1841280,1,3,Active Shallow Crust,0.0,89.99292,0.0,10/02/7446 +6.85514,45.38803,7340,5,11,22,45,48,3.55,15.0,fr,43859,146,1841281,1,1,Active Shallow Crust,0.0,89.99292,0.0,05/11/7340 +6.85514,45.38803,8758,10,24,9,47,51,3.75,5.0,fr,43860,175,1841313,1,1,Active Shallow Crust,128.8966,89.96747,0.0,10/24/8758 +6.85514,45.38803,4900,11,11,22,2,17,3.75,15.0,fr,43861,97,1841314,1,1,Active Shallow Crust,128.8966,89.96747,0.0,11/11/4900 +6.85514,45.38803,9871,6,29,9,31,2,3.85,5.0,fr,43862,197,1841316,1,3,Active Shallow Crust,0.0,89.98997,0.0,06/29/9871 +6.85514,45.38803,5733,7,14,19,42,54,3.85,5.0,fr,43863,114,1841316,1,3,Active Shallow Crust,0.0,89.98997,0.0,07/14/5733 +6.85514,45.38803,2425,11,16,11,19,6,3.85,5.0,fr,43864,48,1841316,1,3,Active Shallow Crust,0.0,89.98997,0.0,11/16/2425 +6.85514,45.38803,2434,12,8,8,41,34,3.85,5.0,fr,43865,48,1841319,1,1,Active Shallow Crust,240.0114,57.99756,0.0,12/08/2434 +6.85514,45.38803,3015,11,23,22,38,15,4.15,5.0,fr,43866,60,1841358,1,1,Active Shallow Crust,0.0,89.98923,-90.0,11/23/3015 +6.85514,45.38803,9864,1,28,23,19,9,4.35,15.0,fr,43867,197,1841377,1,1,Active Shallow Crust,0.0,89.98872,0.0,01/28/9864 +6.85514,45.38803,1042,9,27,13,7,45,4.45,5.0,fr,43868,20,1841388,1,1,Active Shallow Crust,0.0,89.98994,0.0,09/27/1042 +6.85514,45.38803,8224,12,22,5,50,38,4.75,15.0,fr,43869,164,1841434,1,1,Active Shallow Crust,128.8887,89.98811,0.0,12/22/8224 +6.85514,45.38803,7063,8,15,4,22,35,4.85,5.0,fr,43870,141,1841445,1,1,Active Shallow Crust,128.8929,89.98897,0.0,08/15/7063 +-0.72785,49.18775,3712,12,16,11,21,27,3.55,27.5,fr,43871,74,1841765,1,1,Active Shallow Crust,240.0126,57.99803,0.0,12/16/3712 +-0.72785,49.18775,2306,11,2,14,29,32,3.55,5.0,fr,43872,46,1841766,1,1,Active Shallow Crust,0.0,89.99,-90.0,11/02/2306 +-0.72785,49.18775,50,5,31,1,48,26,3.75,5.0,fr,43873,0,1841784,1,1,Active Shallow Crust,0.0,89.99018,0.0,05/31/0050 +-0.72785,49.18775,9817,3,4,0,24,6,3.85,5.0,fr,43874,196,1841796,1,1,Active Shallow Crust,0.0,89.99008,0.0,03/04/9817 +-0.72785,49.18775,9314,5,1,22,20,53,3.85,5.0,fr,43875,186,1841802,1,1,Active Shallow Crust,0.0,89.98997,-90.0,05/01/9314 +-0.72785,49.18775,2280,5,7,2,36,26,3.95,27.5,fr,43876,45,1841810,1,1,Active Shallow Crust,0.0,89.99012,0.0,05/07/2280 +-0.72785,49.18775,8887,9,11,2,2,41,3.95,15.0,fr,43877,177,1841815,1,1,Active Shallow Crust,0.0,89.99001,-90.0,09/11/8887 +-0.72785,49.18775,4882,7,18,21,23,48,4.15,5.0,fr,43878,97,1841838,1,1,Active Shallow Crust,0.0,89.98997,-90.0,07/18/4882 +-0.72785,49.18775,6440,2,22,13,21,14,4.25,27.5,fr,43879,128,1841846,1,2,Active Shallow Crust,0.0,89.99007,0.0,02/22/6440 +-0.72785,49.18775,5140,5,25,11,41,9,4.25,27.5,fr,43880,102,1841846,1,2,Active Shallow Crust,0.0,89.99007,0.0,05/25/5140 +-0.72785,49.18775,3915,9,5,15,19,7,4.35,5.0,fr,43881,78,1841856,1,1,Active Shallow Crust,0.0,89.99016,0.0,09/05/3915 +-0.72785,49.18775,8964,11,5,12,57,23,4.35,15.0,fr,43882,179,1841857,1,1,Active Shallow Crust,0.0,89.99016,0.0,11/05/8964 +-0.72785,49.18775,889,2,20,3,1,20,4.45,5.0,fr,43883,17,1841868,1,1,Active Shallow Crust,0.0,89.99006,0.0,02/20/0889 +-0.72785,49.18775,880,8,17,5,3,55,4.75,15.0,fr,43884,17,1841908,1,1,Active Shallow Crust,240.0085,58.0047,0.0,08/17/0880 +-0.72785,49.18775,8418,12,4,4,16,2,4.95,27.5,fr,43885,168,1841930,1,1,Active Shallow Crust,0.0,89.98997,0.0,12/04/8418 +-0.72785,49.18775,8545,3,9,5,48,44,5.15,15.0,fr,43886,170,1841956,1,1,Active Shallow Crust,240.0213,58.00026,0.0,03/09/8545 +5.38272,41.60294,4538,4,14,21,45,49,3.65,5.0,fr,43887,90,1842255,1,1,Active Shallow Crust,240.0016,58.01271,0.0,04/14/4538 +5.38272,41.60294,7,2,9,6,27,32,3.75,15.0,fr,43888,0,1842265,1,1,Active Shallow Crust,0.0,89.98802,0.0,02/09/0007 +5.38272,41.60294,7966,9,23,20,39,3,4.05,15.0,fr,43889,159,1842304,1,1,Active Shallow Crust,240.0057,58.00589,0.0,09/23/7966 +5.38272,41.60294,4658,6,13,19,19,30,4.15,5.0,fr,43890,93,1842312,1,1,Active Shallow Crust,0.0,89.98866,0.0,06/13/4658 +6.66366,44.44207,6551,9,16,7,46,38,3.55,5.0,fr,43891,131,1842720,1,1,Active Shallow Crust,0.0,89.9928,0.0,09/16/6551 +6.66366,44.44207,3610,11,20,23,56,50,3.55,15.0,fr,43892,72,1842721,1,1,Active Shallow Crust,0.0,89.9928,0.0,11/20/3610 +6.66366,44.44207,6907,8,13,19,47,46,3.55,27.5,fr,43893,138,1842722,1,2,Active Shallow Crust,0.0,89.9928,0.0,08/13/6907 +6.66366,44.44207,8197,12,9,9,5,4,3.55,27.5,fr,43894,163,1842722,1,2,Active Shallow Crust,0.0,89.9928,0.0,12/09/8197 +6.66366,44.44207,9881,9,21,9,25,9,3.55,15.0,fr,43895,197,1842724,1,1,Active Shallow Crust,240.0108,57.99854,0.0,09/21/9881 +6.66366,44.44207,9946,5,12,20,51,16,3.55,5.0,fr,43896,198,1842726,1,1,Active Shallow Crust,0.0,89.99271,-90.0,05/12/9946 +6.66366,44.44207,7578,6,12,19,8,16,3.55,5.0,fr,43897,151,1842729,1,1,Active Shallow Crust,128.8977,89.9928,0.0,06/12/7578 +6.66366,44.44207,4672,7,10,10,59,16,3.65,5.0,fr,43898,93,1842732,1,5,Active Shallow Crust,0.0,89.98717,0.0,07/10/4672 +6.66366,44.44207,893,5,29,0,30,34,3.65,5.0,fr,43899,17,1842732,1,5,Active Shallow Crust,0.0,89.98717,0.0,05/29/0893 +6.66366,44.44207,1135,1,2,17,30,9,3.65,5.0,fr,43900,22,1842732,1,5,Active Shallow Crust,0.0,89.98717,0.0,01/02/1135 +6.66366,44.44207,9476,9,25,10,57,40,3.65,5.0,fr,43901,189,1842732,1,5,Active Shallow Crust,0.0,89.98717,0.0,09/25/9476 +6.66366,44.44207,3521,2,22,11,48,23,3.65,5.0,fr,43902,70,1842732,1,5,Active Shallow Crust,0.0,89.98717,0.0,02/22/3521 +6.66366,44.44207,5749,7,5,9,3,30,3.65,5.0,fr,43903,114,1842735,1,1,Active Shallow Crust,239.9999,58.01398,0.0,07/05/5749 +6.66366,44.44207,1247,12,11,16,27,38,3.65,5.0,fr,43904,24,1842738,1,1,Active Shallow Crust,0.0,89.98701,-90.0,12/11/1247 +6.66366,44.44207,8501,8,26,5,22,54,3.65,15.0,fr,43905,170,1842742,1,2,Active Shallow Crust,128.9008,89.96349,0.0,08/26/8501 +6.66366,44.44207,1743,8,28,13,2,29,3.65,15.0,fr,43906,34,1842742,1,2,Active Shallow Crust,128.9008,89.96349,0.0,08/28/1743 +6.66366,44.44207,7221,1,24,17,26,15,3.75,5.0,fr,43907,144,1842744,1,1,Active Shallow Crust,0.0,89.98856,0.0,01/24/7221 +6.66366,44.44207,9073,10,2,2,57,42,3.75,15.0,fr,43908,181,1842745,1,2,Active Shallow Crust,0.0,89.98856,0.0,10/02/9073 +6.66366,44.44207,2275,7,21,6,37,22,3.75,15.0,fr,43909,45,1842745,1,2,Active Shallow Crust,0.0,89.98856,0.0,07/21/2275 +6.66366,44.44207,6936,9,10,9,41,18,3.75,27.5,fr,43910,138,1842746,1,1,Active Shallow Crust,0.0,89.98856,0.0,09/10/6936 +6.66366,44.44207,2627,11,8,11,3,6,3.75,5.0,fr,43911,52,1842753,1,2,Active Shallow Crust,128.8969,89.96745,0.0,11/08/2627 +6.66366,44.44207,2138,11,20,7,40,32,3.75,5.0,fr,43912,42,1842753,1,2,Active Shallow Crust,128.8969,89.96745,0.0,11/20/2138 +6.66366,44.44207,2380,3,10,12,41,8,3.85,5.0,fr,43913,47,1842756,1,2,Active Shallow Crust,0.0,89.98981,0.0,03/10/2380 +6.66366,44.44207,3765,8,26,23,19,59,3.85,5.0,fr,43914,75,1842756,1,2,Active Shallow Crust,0.0,89.98981,0.0,08/26/3765 +6.66366,44.44207,8021,8,11,23,3,8,3.85,5.0,fr,43915,160,1842759,1,1,Active Shallow Crust,240.0116,57.99769,0.0,08/11/8021 +6.66366,44.44207,7918,9,9,3,57,16,3.85,15.0,fr,43916,158,1842760,1,1,Active Shallow Crust,240.0116,57.99769,0.0,09/09/7918 +6.66366,44.44207,9177,8,7,13,40,52,3.85,5.0,fr,43917,183,1842762,1,1,Active Shallow Crust,0.0,89.98969,-90.0,08/07/9177 +6.66366,44.44207,148,5,12,22,17,7,3.95,5.0,fr,43918,2,1842777,1,1,Active Shallow Crust,128.9007,89.99546,0.0,05/12/0148 +6.66366,44.44207,2092,5,7,7,49,26,4.05,5.0,fr,43919,41,1842780,1,1,Active Shallow Crust,0.0,89.99191,0.0,05/07/2092 +6.66366,44.44207,1979,3,16,2,45,28,4.15,5.0,fr,43920,39,1842798,1,2,Active Shallow Crust,0.0,89.98905,-90.0,03/16/1979 +6.66366,44.44207,9827,12,25,4,19,22,4.15,5.0,fr,43921,196,1842798,1,2,Active Shallow Crust,0.0,89.98905,-90.0,12/25/9827 +6.66366,44.44207,2311,6,19,0,17,52,4.25,5.0,fr,43922,46,1842804,1,2,Active Shallow Crust,0.0,89.99035,0.0,06/19/2311 +6.66366,44.44207,9217,10,16,11,30,48,4.25,5.0,fr,43923,184,1842804,1,2,Active Shallow Crust,0.0,89.99035,0.0,10/16/9217 +6.66366,44.44207,5974,3,15,4,12,20,4.35,15.0,fr,43924,119,1842817,1,1,Active Shallow Crust,0.0,89.9914,0.0,03/15/5974 +6.66366,44.44207,1384,2,14,12,49,50,4.35,5.0,fr,43925,27,1842819,1,1,Active Shallow Crust,240.0081,57.99559,0.0,02/14/1384 +6.66366,44.44207,3758,7,13,6,5,44,4.35,15.0,fr,43926,75,1842826,1,1,Active Shallow Crust,128.8984,89.98295,0.0,07/13/3758 +6.66366,44.44207,5769,10,29,22,19,23,4.45,5.0,fr,43927,115,1842834,1,1,Active Shallow Crust,0.0,89.98966,-90.0,10/29/5769 +6.66366,44.44207,9195,3,3,21,41,2,4.45,5.0,fr,43928,183,1842837,1,1,Active Shallow Crust,128.8926,89.99361,0.0,03/03/9195 +6.66366,44.44207,7835,4,13,9,15,12,4.55,5.0,fr,43929,156,1842840,1,2,Active Shallow Crust,0.0,89.99089,0.0,04/13/7835 +6.66366,44.44207,9543,11,29,17,2,1,4.55,5.0,fr,43930,190,1842840,1,2,Active Shallow Crust,0.0,89.99089,0.0,11/29/9543 +6.66366,44.44207,6605,10,26,23,35,57,4.75,5.0,fr,43931,132,1842867,1,1,Active Shallow Crust,240.007,58.00433,0.0,10/26/6605 +6.60305,47.81905,5755,8,7,4,22,17,3.55,5.0,fr,43932,115,1843200,1,2,Active Shallow Crust,0.0,89.99323,0.0,08/07/5755 +6.60305,47.81905,3848,1,2,11,54,37,3.55,5.0,fr,43933,76,1843200,1,2,Active Shallow Crust,0.0,89.99323,0.0,01/02/3848 +6.60305,47.81905,886,9,10,10,34,49,3.55,27.5,fr,43934,17,1843202,1,1,Active Shallow Crust,0.0,89.99323,0.0,09/10/0886 +6.60305,47.81905,8941,6,30,18,26,35,3.55,5.0,fr,43935,178,1843203,1,2,Active Shallow Crust,240.0126,57.99829,0.0,06/30/8941 +6.60305,47.81905,3893,2,15,8,24,8,3.55,5.0,fr,43936,77,1843203,1,2,Active Shallow Crust,240.0126,57.99829,0.0,02/15/3893 +6.60305,47.81905,5675,3,31,23,25,18,3.65,5.0,fr,43937,113,1843212,1,2,Active Shallow Crust,0.0,89.98793,0.0,03/31/5675 +6.60305,47.81905,8186,5,3,10,49,12,3.65,5.0,fr,43938,163,1843212,1,2,Active Shallow Crust,0.0,89.98793,0.0,05/03/8186 +6.60305,47.81905,3779,11,6,11,49,36,3.65,15.0,fr,43939,75,1843213,1,2,Active Shallow Crust,0.0,89.98793,0.0,11/06/3779 +6.60305,47.81905,2327,12,29,6,34,43,3.65,15.0,fr,43940,46,1843213,1,2,Active Shallow Crust,0.0,89.98793,0.0,12/29/2327 +6.60305,47.81905,6200,6,25,20,28,42,3.65,15.0,fr,43941,123,1843222,1,1,Active Shallow Crust,128.9013,89.96293,0.0,06/25/6200 +6.60305,47.81905,8360,9,14,6,37,6,3.75,5.0,fr,43942,167,1843227,1,1,Active Shallow Crust,240.0089,58.01764,0.0,09/14/8360 +6.60305,47.81905,6890,2,4,23,29,39,3.85,5.0,fr,43943,137,1843242,1,1,Active Shallow Crust,0.0,89.9903,-90.0,02/04/6890 +6.60305,47.81905,3587,5,15,9,12,10,3.95,5.0,fr,43944,71,1843248,1,1,Active Shallow Crust,0.0,89.99146,0.0,05/15/3587 +6.60305,47.81905,3487,7,5,23,37,26,3.95,27.5,fr,43945,69,1843250,1,1,Active Shallow Crust,0.0,89.99146,0.0,07/05/3487 +6.60305,47.81905,4706,11,6,7,6,48,4.05,5.0,fr,43946,94,1843260,1,2,Active Shallow Crust,0.0,89.98858,0.0,11/06/4706 +6.60305,47.81905,4344,12,19,12,12,6,4.05,5.0,fr,43947,86,1843260,1,2,Active Shallow Crust,0.0,89.98858,0.0,12/19/4344 +6.60305,47.81905,9286,11,18,5,38,13,4.35,5.0,fr,43948,185,1843296,1,1,Active Shallow Crust,0.0,89.98922,0.0,11/18/9286 +6.60305,47.81905,3083,7,20,6,0,54,4.55,5.0,fr,43949,61,1843329,1,1,Active Shallow Crust,128.8932,89.98572,0.0,07/20/3083 +6.60305,47.81905,2171,4,6,9,31,2,4.85,27.5,fr,43950,43,1843358,1,1,Active Shallow Crust,0.0,89.98939,0.0,04/06/2171 +6.60305,47.81905,1036,3,4,8,22,37,4.95,15.0,fr,43951,20,1843369,1,1,Active Shallow Crust,0.0,89.99054,0.0,03/04/1036 +6.60305,47.81905,9318,8,12,2,16,57,5.65,5.0,fr,43952,186,1843461,1,1,Active Shallow Crust,128.874,89.99042,0.0,08/12/9318 +6.603051,47.81905,3562,2,24,21,50,36,6.05,5.357596,fr,43953,71,1843500,1,1,Active Shallow Crust,359.9998,89.99009,0.0,02/24/3562 +5.23006,45.9666,6579,5,25,10,19,21,3.55,5.0,fr,43954,131,1843680,1,1,Active Shallow Crust,0.0,89.99299,0.0,05/25/6579 +5.23006,45.9666,6056,12,30,9,31,11,3.65,15.0,fr,43955,121,1843693,1,1,Active Shallow Crust,0.0,89.9875,0.0,12/30/6056 +5.23006,45.9666,3654,10,24,13,53,12,3.75,15.0,fr,43956,73,1843705,1,2,Active Shallow Crust,0.0,89.98886,0.0,10/24/3654 +5.23006,45.9666,2167,5,14,3,10,38,3.75,15.0,fr,43957,43,1843705,1,2,Active Shallow Crust,0.0,89.98886,0.0,05/14/2167 +5.23006,45.9666,1691,1,7,1,19,28,3.85,5.0,fr,43958,33,1843716,1,1,Active Shallow Crust,0.0,89.99007,0.0,01/07/1691 +5.23006,45.9666,3964,7,2,20,44,10,3.95,5.0,fr,43959,79,1843728,1,1,Active Shallow Crust,0.0,89.99116,0.0,07/02/3964 +5.23006,45.9666,8386,4,26,14,27,9,3.95,15.0,fr,43960,167,1843729,1,1,Active Shallow Crust,0.0,89.99116,0.0,04/26/8386 +5.23006,45.9666,7272,10,2,19,30,4,3.95,5.0,fr,43961,145,1843734,1,1,Active Shallow Crust,0.0,89.99105,-90.0,10/02/7272 +5.23006,45.9666,3755,12,26,3,3,59,4.15,5.0,fr,43962,75,1843758,1,1,Active Shallow Crust,0.0,89.98934,-90.0,12/26/3755 +5.23006,45.9666,645,2,21,23,21,14,4.35,15.0,fr,43963,12,1843783,1,1,Active Shallow Crust,0.0,89.98871,-90.0,02/21/0645 +5.23006,45.9666,6495,8,20,2,3,15,4.45,15.0,fr,43964,129,1843789,1,1,Active Shallow Crust,0.0,89.99005,0.0,08/20/6495 +5.23006,45.9666,8591,4,4,22,37,34,4.95,15.0,fr,43965,171,1843849,1,1,Active Shallow Crust,0.0,89.99021,0.0,04/04/8591 +-4.85954,48.98139,601,1,20,13,25,13,4.15,27.5,fr,43966,12,1844234,1,1,Active Shallow Crust,0.0,89.99005,0.0,01/20/0601 +-5.66846,48.62349,964,8,23,9,2,2,3.85,15.0,fr,43967,19,1844677,1,1,Active Shallow Crust,0.0,89.99056,0.0,08/23/0964 +2.0025,49.20054,4602,11,3,9,39,25,3.55,5.0,fr,43968,92,1845129,1,1,Active Shallow Crust,128.8959,89.99341,0.0,11/03/4602 +2.0025,49.20054,7873,7,2,4,53,5,3.75,15.0,fr,43969,157,1845145,1,1,Active Shallow Crust,0.0,89.98953,0.0,07/02/7873 +2.0025,49.20054,5599,3,21,10,56,57,3.75,15.0,fr,43970,111,1845154,1,1,Active Shallow Crust,128.8961,89.96742,0.0,03/21/5599 +2.0025,49.20054,7281,3,29,12,33,47,4.05,5.0,fr,43971,145,1845180,1,1,Active Shallow Crust,0.0,89.99074,0.0,03/29/7281 +2.0025,49.20054,1752,7,6,19,20,2,4.15,5.0,fr,43972,35,1845192,1,1,Active Shallow Crust,0.0,89.99009,0.0,07/06/1752 +3.39433,50.41274,2028,2,14,13,14,41,3.55,5.0,fr,43973,40,1845600,1,1,Active Shallow Crust,0.0,89.99036,0.0,02/14/2028 +3.39433,50.41274,3271,5,8,2,25,19,3.65,5.0,fr,43974,65,1845612,1,2,Active Shallow Crust,0.0,89.99141,0.0,05/08/3271 +3.39433,50.41274,2078,7,11,2,46,47,3.65,5.0,fr,43975,41,1845612,1,2,Active Shallow Crust,0.0,89.99141,0.0,07/11/2078 +3.39433,50.41274,5697,6,19,22,26,3,3.75,5.0,fr,43976,113,1845624,1,2,Active Shallow Crust,0.0,89.98979,0.0,06/19/5697 +3.39433,50.41274,3037,10,30,20,56,11,3.75,5.0,fr,43977,60,1845624,1,2,Active Shallow Crust,0.0,89.98979,0.0,10/30/3037 +3.39433,50.41274,8359,7,30,12,53,29,3.95,5.0,fr,43978,167,1845648,1,4,Active Shallow Crust,0.0,89.98986,0.0,07/30/8359 +3.39433,50.41274,5348,2,15,20,37,32,3.95,5.0,fr,43979,106,1845648,1,4,Active Shallow Crust,0.0,89.98986,0.0,02/15/5348 +3.39433,50.41274,4852,7,20,11,27,8,3.95,5.0,fr,43980,97,1845648,1,4,Active Shallow Crust,0.0,89.98986,0.0,07/20/4852 +3.39433,50.41274,5203,2,20,22,46,8,3.95,5.0,fr,43981,104,1845648,1,4,Active Shallow Crust,0.0,89.98986,0.0,02/20/5203 +3.39433,50.41274,9797,7,20,7,29,13,4.05,5.0,fr,43982,195,1845660,1,2,Active Shallow Crust,0.0,89.98916,0.0,07/20/9797 +3.39433,50.41274,4299,8,23,21,22,17,4.05,5.0,fr,43983,85,1845660,1,2,Active Shallow Crust,0.0,89.98916,0.0,08/23/4299 +3.39433,50.41274,1228,10,20,14,46,21,4.15,5.0,fr,43984,24,1845672,1,1,Active Shallow Crust,0.0,89.99034,0.0,10/20/1228 +3.39433,50.41274,217,8,14,13,44,56,4.15,5.0,fr,43985,4,1845681,1,1,Active Shallow Crust,128.8965,89.99356,0.0,08/14/0217 +3.39433,50.41274,4615,5,23,7,38,38,4.25,5.0,fr,43986,92,1845684,1,1,Active Shallow Crust,0.0,89.98995,0.0,05/23/4615 +3.39433,50.41274,8133,7,4,2,36,27,4.55,5.0,fr,43987,162,1845723,1,1,Active Shallow Crust,240.0105,57.99756,0.0,07/04/8133 +3.39433,50.41274,7598,11,30,22,39,55,4.65,5.0,fr,43988,151,1845732,1,1,Active Shallow Crust,0.0,89.99004,0.0,11/30/7598 +3.39433,50.41274,9614,8,31,17,37,10,4.75,27.5,fr,43989,192,1845746,1,1,Active Shallow Crust,0.0,89.99031,0.0,08/31/9614 +3.37748,52.32773,7105,4,10,11,3,56,3.55,27.5,fr,43990,142,1846082,1,1,Active Shallow Crust,0.0,89.99075,0.0,04/10/7105 +3.37748,52.32773,5499,2,8,6,32,15,4.25,15.0,fr,43991,109,1846165,1,1,Active Shallow Crust,0.0,89.99036,0.0,02/08/5499 +3.37748,52.32773,2109,7,5,7,16,32,4.25,27.5,fr,43992,42,1846166,1,1,Active Shallow Crust,0.0,89.99036,0.0,07/05/2109 +3.37748,52.32773,2348,1,18,2,47,46,4.35,15.0,fr,43993,46,1846177,1,1,Active Shallow Crust,0.0,89.99019,0.0,01/18/2348 +7.1092,43.56307,4283,12,29,12,42,42,3.55,5.0,fr,43994,85,1846560,1,2,Active Shallow Crust,0.0,89.99269,0.0,12/29/4283 +7.1092,43.56307,1764,2,25,4,37,59,3.55,5.0,fr,43995,35,1846560,1,2,Active Shallow Crust,0.0,89.99269,0.0,02/25/1764 +7.1092,43.56307,6640,10,31,15,20,40,3.65,27.5,fr,43996,132,1846574,1,1,Active Shallow Crust,0.0,89.98698,0.0,10/31/6640 +7.1092,43.56307,8227,7,25,19,18,46,3.75,5.0,fr,43997,164,1846584,1,1,Active Shallow Crust,0.0,89.98839,0.0,07/25/8227 +7.1092,43.56307,190,12,31,17,11,1,3.75,27.5,fr,43998,3,1846589,1,1,Active Shallow Crust,240.0072,58.01762,0.0,12/31/0190 +7.1092,43.56307,4791,12,17,17,53,58,3.85,5.0,fr,43999,95,1846596,1,1,Active Shallow Crust,0.0,89.98965,0.0,12/17/4791 +7.1092,43.56307,6816,10,5,4,31,31,3.85,5.0,fr,44000,136,1846599,1,1,Active Shallow Crust,240.0106,57.99701,0.0,10/05/6816 +7.1092,43.56307,4929,1,3,9,55,5,3.95,5.0,fr,44001,98,1846608,1,2,Active Shallow Crust,0.0,89.99078,0.0,01/03/4929 +7.1092,43.56307,5788,7,10,4,36,40,3.95,5.0,fr,44002,115,1846608,1,2,Active Shallow Crust,0.0,89.99078,0.0,07/10/5788 +7.1092,43.56307,10,5,27,1,3,19,3.95,5.0,fr,44003,0,1846614,1,1,Active Shallow Crust,0.0,89.99067,-90.0,05/27/0010 +7.1092,43.56307,9369,11,21,7,7,29,4.05,5.0,fr,44004,187,1846623,1,1,Active Shallow Crust,240.0053,58.00569,0.0,11/21/9369 +7.1092,43.56307,9951,3,4,0,3,9,4.25,15.0,fr,44005,199,1846645,1,1,Active Shallow Crust,0.0,89.99021,0.0,03/04/9951 +7.1092,43.56307,9989,11,19,18,39,7,4.45,15.0,fr,44006,199,1846678,1,1,Active Shallow Crust,128.8924,89.99352,0.0,11/19/9989 +7.1092,43.56307,2495,2,23,17,21,11,4.75,5.0,fr,44007,49,1846704,1,1,Active Shallow Crust,0.0,89.99082,0.0,02/23/2495 +1.17952,47.4447,2456,7,5,14,9,17,3.55,5.0,fr,44008,49,1847040,1,3,Active Shallow Crust,0.0,89.98977,0.0,07/05/2456 +1.17952,47.4447,9308,9,1,13,20,57,3.55,5.0,fr,44009,186,1847040,1,3,Active Shallow Crust,0.0,89.98977,0.0,09/01/9308 +1.17952,47.4447,1197,9,4,5,32,37,3.55,5.0,fr,44010,23,1847040,1,3,Active Shallow Crust,0.0,89.98977,0.0,09/04/1197 +1.17952,47.4447,8049,10,1,6,49,48,3.65,5.0,fr,44011,160,1847052,1,1,Active Shallow Crust,0.0,89.98936,0.0,10/01/8049 +1.17952,47.4447,324,10,15,21,22,46,3.75,5.0,fr,44012,6,1847064,1,1,Active Shallow Crust,0.0,89.99052,0.0,10/15/0324 +1.17952,47.4447,6684,8,3,3,49,7,3.75,15.0,fr,44013,133,1847065,1,1,Active Shallow Crust,0.0,89.99052,0.0,08/03/6684 +1.17952,47.4447,196,2,27,1,15,35,3.75,15.0,fr,44014,3,1847068,1,1,Active Shallow Crust,240.0084,58.01759,0.0,02/27/0196 +1.17952,47.4447,3364,1,10,15,57,29,4.25,5.0,fr,44015,67,1847124,1,1,Active Shallow Crust,0.0,89.9901,0.0,01/10/3364 +1.17952,47.4447,5570,8,31,3,29,26,4.35,5.0,fr,44016,111,1847136,1,1,Active Shallow Crust,0.0,89.98981,0.0,08/31/5570 +1.17952,47.4447,1812,2,26,1,18,19,4.45,5.0,fr,44017,36,1847148,1,1,Active Shallow Crust,0.0,89.98972,0.0,02/26/1812 +1.17952,47.4447,5178,4,5,22,6,50,4.65,15.0,fr,44018,103,1847179,1,1,Active Shallow Crust,0.0,89.98979,-90.0,04/05/5178 +1.17952,47.4447,7856,12,22,19,50,5,4.95,15.0,fr,44019,157,1847215,1,1,Active Shallow Crust,0.0,89.99002,-90.0,12/22/7856 +3.0671,52.19649,7545,4,11,12,8,58,3.95,5.0,fr,44020,150,1847568,1,1,Active Shallow Crust,0.0,89.99025,0.0,04/11/7545 +3.0671,52.19649,4308,2,17,2,40,42,4.05,15.0,fr,44021,86,1847584,1,1,Active Shallow Crust,240.0068,58.00615,0.0,02/17/4308 +-0.76412,43.36908,6690,4,26,8,28,27,3.55,5.0,fr,44022,133,1848000,1,5,Active Shallow Crust,0.0,89.98992,0.0,04/26/6690 +-0.76412,43.36908,4937,7,9,18,54,47,3.55,5.0,fr,44023,98,1848000,1,5,Active Shallow Crust,0.0,89.98992,0.0,07/09/4937 +-0.76412,43.36908,6208,6,13,20,4,32,3.55,5.0,fr,44024,124,1848000,1,5,Active Shallow Crust,0.0,89.98992,0.0,06/13/6208 +-0.76412,43.36908,6213,10,14,8,17,57,3.55,5.0,fr,44025,124,1848000,1,5,Active Shallow Crust,0.0,89.98992,0.0,10/14/6213 +-0.76412,43.36908,7591,6,9,10,36,37,3.55,5.0,fr,44026,151,1848000,1,5,Active Shallow Crust,0.0,89.98992,0.0,06/09/7591 +-0.76412,43.36908,4602,4,17,2,36,17,3.55,15.0,fr,44027,92,1848001,1,1,Active Shallow Crust,0.0,89.98992,0.0,04/17/4602 +-0.76412,43.36908,6571,2,7,9,1,28,3.65,5.0,fr,44028,131,1848012,1,2,Active Shallow Crust,0.0,89.9902,0.0,02/07/6571 +-0.76412,43.36908,9282,5,16,8,40,52,3.65,5.0,fr,44029,185,1848012,1,2,Active Shallow Crust,0.0,89.9902,0.0,05/16/9282 +-0.76412,43.36908,6837,11,20,5,36,41,3.65,15.0,fr,44030,136,1848013,1,1,Active Shallow Crust,0.0,89.9902,0.0,11/20/6837 +-0.76412,43.36908,1735,3,13,6,26,43,3.65,5.0,fr,44031,34,1848021,1,1,Active Shallow Crust,128.9008,89.96346,0.0,03/13/1735 +-0.76412,43.36908,6124,3,14,23,56,1,3.65,15.0,fr,44032,122,1848022,1,1,Active Shallow Crust,128.9008,89.96346,0.0,03/14/6124 +-0.76412,43.36908,5147,4,18,20,7,38,3.75,5.0,fr,44033,102,1848024,1,2,Active Shallow Crust,0.0,89.98981,0.0,04/18/5147 +-0.76412,43.36908,4097,11,28,13,24,43,3.75,5.0,fr,44034,81,1848024,1,2,Active Shallow Crust,0.0,89.98981,0.0,11/28/4097 +-0.76412,43.36908,1548,11,11,10,21,25,3.85,5.0,fr,44035,30,1848036,1,4,Active Shallow Crust,0.0,89.99027,0.0,11/11/1548 +-0.76412,43.36908,8085,5,27,17,23,46,3.85,5.0,fr,44036,161,1848036,1,4,Active Shallow Crust,0.0,89.99027,0.0,05/27/8085 +-0.76412,43.36908,9362,11,2,6,43,2,3.85,5.0,fr,44037,187,1848036,1,4,Active Shallow Crust,0.0,89.99027,0.0,11/02/9362 +-0.76412,43.36908,5425,2,22,6,34,59,3.85,5.0,fr,44038,108,1848036,1,4,Active Shallow Crust,0.0,89.99027,0.0,02/22/5425 +-0.76412,43.36908,2875,6,6,12,44,17,3.85,15.0,fr,44039,57,1848037,1,1,Active Shallow Crust,0.0,89.99027,0.0,06/06/2875 +-0.76412,43.36908,3241,6,5,15,45,53,3.85,27.5,fr,44040,64,1848038,1,1,Active Shallow Crust,0.0,89.99027,0.0,06/05/3241 +-0.76412,43.36908,9328,8,3,11,2,8,3.85,5.0,fr,44041,186,1848039,1,1,Active Shallow Crust,240.0104,57.99777,0.0,08/03/9328 +-0.76412,43.36908,6123,2,27,1,9,51,3.85,15.0,fr,44042,122,1848043,1,1,Active Shallow Crust,0.0,89.99016,-90.0,02/27/6123 +-0.76412,43.36908,28,8,7,6,47,38,3.95,5.0,fr,44043,0,1848048,1,1,Active Shallow Crust,0.0,89.99017,0.0,08/07/0028 +-0.76412,43.36908,8076,8,3,18,14,18,3.95,5.0,fr,44044,161,1848051,1,1,Active Shallow Crust,240.0195,58.00488,0.0,08/03/8076 +-0.76412,43.36908,1613,4,13,9,56,30,4.05,5.0,fr,44045,32,1848060,1,1,Active Shallow Crust,0.0,89.99021,0.0,04/13/1613 +-0.76412,43.36908,165,7,27,9,48,32,4.05,15.0,fr,44046,3,1848061,1,1,Active Shallow Crust,0.0,89.99021,0.0,07/27/0165 +-0.76412,43.36908,2087,7,23,5,20,6,4.05,27.5,fr,44047,41,1848062,1,1,Active Shallow Crust,0.0,89.99021,0.0,07/23/2087 +-0.76412,43.36908,4103,1,2,19,18,0,4.15,5.0,fr,44048,82,1848072,1,2,Active Shallow Crust,0.0,89.9899,0.0,01/02/4103 +-0.76412,43.36908,3232,1,31,11,20,25,4.15,5.0,fr,44049,64,1848072,1,2,Active Shallow Crust,0.0,89.9899,0.0,01/31/3232 +-0.76412,43.36908,1032,8,24,0,36,54,4.15,5.0,fr,44050,20,1848081,1,1,Active Shallow Crust,128.898,89.9938,0.0,08/24/1032 +-0.76412,43.36908,9960,11,2,3,53,27,4.25,5.0,fr,44051,199,1848084,1,1,Active Shallow Crust,0.0,89.99017,0.0,11/02/9960 +-0.76412,43.36908,1772,1,18,12,7,47,4.25,27.5,fr,44052,35,1848086,1,1,Active Shallow Crust,0.0,89.99017,0.0,01/18/1772 +-0.76412,43.36908,9976,3,4,18,16,10,4.35,15.0,fr,44053,199,1848097,1,1,Active Shallow Crust,0.0,89.99015,0.0,03/04/9976 +-0.76412,43.36908,9258,6,26,4,27,22,4.45,5.0,fr,44054,185,1848108,1,1,Active Shallow Crust,0.0,89.98992,0.0,06/26/9258 +-0.76412,43.36908,8869,8,17,22,55,3,4.45,15.0,fr,44055,177,1848115,1,1,Active Shallow Crust,0.0,89.99014,-90.0,08/17/8869 +-0.76412,43.36908,7965,5,11,23,58,32,4.75,27.5,fr,44056,159,1848146,1,1,Active Shallow Crust,0.0,89.9901,0.0,05/11/7965 +-0.76412,43.36908,6696,5,7,18,20,57,4.95,15.0,fr,44057,133,1848175,1,1,Active Shallow Crust,0.0,89.99001,-90.0,05/07/6696 +-0.76412,43.36908,4278,4,2,20,43,2,5.35,15.0,fr,44058,85,1848226,1,1,Active Shallow Crust,128.8849,89.99192,0.0,04/02/4278 +7.48061,48.81214,3527,4,15,11,42,30,3.75,5.0,fr,44059,70,1848504,1,2,Active Shallow Crust,0.0,89.98945,0.0,04/15/3527 +7.48061,48.81214,5503,7,14,23,7,35,3.75,5.0,fr,44060,110,1848504,1,2,Active Shallow Crust,0.0,89.98945,0.0,07/14/5503 +7.48061,48.81214,2053,6,14,6,10,53,3.95,15.0,fr,44061,41,1848535,1,1,Active Shallow Crust,0.0,89.99152,-90.0,06/14/2053 +7.48061,48.81214,9437,8,6,20,12,14,4.15,5.0,fr,44062,188,1848552,1,1,Active Shallow Crust,0.0,89.99001,0.0,08/06/9437 +7.48061,48.81214,3485,11,30,23,58,57,4.35,5.0,fr,44063,69,1848576,1,1,Active Shallow Crust,0.0,89.98943,0.0,11/30/3485 +7.48061,48.81214,9063,6,5,21,14,46,4.45,15.0,fr,44064,181,1848592,1,1,Active Shallow Crust,240.0058,57.99478,0.0,06/05/9063 +6.45412,51.544,9031,11,14,6,27,10,3.55,15.0,fr,44065,180,1848961,1,1,Active Shallow Crust,0.0,89.98746,0.0,11/14/9031 +6.45412,51.544,281,10,21,18,1,20,3.55,5.0,fr,44066,5,1848969,1,1,Active Shallow Crust,128.8958,89.99373,0.0,10/21/0281 +6.45412,51.544,3831,7,29,12,20,53,3.85,5.0,fr,44067,76,1848996,1,1,Active Shallow Crust,0.0,89.99112,0.0,07/29/3831 +-2.84283,43.83344,9551,10,4,15,20,26,3.95,5.0,fr,44068,191,1849968,1,1,Active Shallow Crust,0.0,89.99082,0.0,10/04/9551 +-2.84283,43.83344,8776,10,14,1,26,20,4.05,5.0,fr,44069,175,1849980,1,1,Active Shallow Crust,0.0,89.98978,0.0,10/14/8776 +-2.84283,43.83344,9983,5,5,17,47,7,4.75,27.5,fr,44070,199,1850075,1,1,Active Shallow Crust,128.8893,89.98802,0.0,05/05/9983 +6.79526,46.55512,9102,6,12,9,49,49,3.55,5.0,fr,44071,182,1850400,1,4,Active Shallow Crust,0.0,89.99306,0.0,06/12/9102 +6.79526,46.55512,4653,1,27,1,14,38,3.55,5.0,fr,44072,93,1850400,1,4,Active Shallow Crust,0.0,89.99306,0.0,01/27/4653 +6.79526,46.55512,4627,3,25,1,54,18,3.55,5.0,fr,44073,92,1850400,1,4,Active Shallow Crust,0.0,89.99306,0.0,03/25/4627 +6.79526,46.55512,3426,12,13,6,27,24,3.55,5.0,fr,44074,68,1850400,1,4,Active Shallow Crust,0.0,89.99306,0.0,12/13/3426 +6.79526,46.55512,8981,8,29,0,32,56,3.55,15.0,fr,44075,179,1850401,1,3,Active Shallow Crust,0.0,89.99306,0.0,08/29/8981 +6.79526,46.55512,848,3,12,3,6,16,3.55,15.0,fr,44076,16,1850401,1,3,Active Shallow Crust,0.0,89.99306,0.0,03/12/0848 +6.79526,46.55512,4944,1,28,6,57,41,3.55,15.0,fr,44077,98,1850401,1,3,Active Shallow Crust,0.0,89.99306,0.0,01/28/4944 +6.79526,46.55512,296,3,17,17,58,16,3.55,27.5,fr,44078,5,1850402,1,1,Active Shallow Crust,0.0,89.99306,0.0,03/17/0296 +6.79526,46.55512,3368,12,18,20,31,23,3.55,5.0,fr,44079,67,1850403,1,1,Active Shallow Crust,240.0106,57.99899,0.0,12/18/3368 +6.79526,46.55512,3916,4,12,16,43,59,3.55,15.0,fr,44080,78,1850404,1,2,Active Shallow Crust,240.0106,57.99899,0.0,04/12/3916 +6.79526,46.55512,6761,8,31,11,2,41,3.55,15.0,fr,44081,135,1850404,1,2,Active Shallow Crust,240.0106,57.99899,0.0,08/31/6761 +6.79526,46.55512,7378,9,23,1,2,2,3.55,5.0,fr,44082,147,1850406,1,2,Active Shallow Crust,0.0,89.99299,-90.0,09/23/7378 +6.79526,46.55512,8571,4,9,11,15,6,3.55,5.0,fr,44083,171,1850406,1,2,Active Shallow Crust,0.0,89.99299,-90.0,04/09/8571 +6.79526,46.55512,3906,12,19,16,20,36,3.55,5.0,fr,44084,78,1850409,1,1,Active Shallow Crust,128.8971,89.99306,0.0,12/19/3906 +6.79526,46.55512,8930,7,22,20,8,57,3.55,15.0,fr,44085,178,1850410,1,1,Active Shallow Crust,128.8971,89.99306,0.0,07/22/8930 +6.79526,46.55512,4265,1,29,7,2,44,3.65,5.0,fr,44086,85,1850412,1,9,Active Shallow Crust,0.0,89.98764,0.0,01/29/4265 +6.79526,46.55512,6187,9,21,15,29,32,3.65,5.0,fr,44087,123,1850412,1,9,Active Shallow Crust,0.0,89.98764,0.0,09/21/6187 +6.79526,46.55512,1349,11,25,6,51,48,3.65,5.0,fr,44088,26,1850412,1,9,Active Shallow Crust,0.0,89.98764,0.0,11/25/1349 +6.79526,46.55512,9216,12,15,2,58,1,3.65,5.0,fr,44089,184,1850412,1,9,Active Shallow Crust,0.0,89.98764,0.0,12/15/9216 +6.79526,46.55512,7325,4,9,20,7,59,3.65,5.0,fr,44090,146,1850412,1,9,Active Shallow Crust,0.0,89.98764,0.0,04/09/7325 +6.79526,46.55512,6138,9,13,5,47,50,3.65,5.0,fr,44091,122,1850412,1,9,Active Shallow Crust,0.0,89.98764,0.0,09/13/6138 +6.79526,46.55512,9450,3,15,1,28,28,3.65,5.0,fr,44092,188,1850412,1,9,Active Shallow Crust,0.0,89.98764,0.0,03/15/9450 +6.79526,46.55512,1243,11,12,11,37,5,3.65,5.0,fr,44093,24,1850412,1,9,Active Shallow Crust,0.0,89.98764,0.0,11/12/1243 +6.79526,46.55512,3424,5,10,17,53,40,3.65,5.0,fr,44094,68,1850412,1,9,Active Shallow Crust,0.0,89.98764,0.0,05/10/3424 +6.79526,46.55512,4584,1,3,13,13,7,3.65,15.0,fr,44095,91,1850413,1,2,Active Shallow Crust,0.0,89.98764,0.0,01/03/4584 +6.79526,46.55512,3593,11,26,5,54,29,3.65,15.0,fr,44096,71,1850413,1,2,Active Shallow Crust,0.0,89.98764,0.0,11/26/3593 +6.79526,46.55512,7278,3,10,1,22,43,3.65,5.0,fr,44097,145,1850415,1,1,Active Shallow Crust,240.0008,58.01263,0.0,03/10/7278 +6.79526,46.55512,3299,5,18,22,37,28,3.65,5.0,fr,44098,65,1850418,1,1,Active Shallow Crust,0.0,89.9875,-90.0,05/18/3299 +6.79526,46.55512,7452,6,29,20,27,18,3.65,15.0,fr,44099,149,1850419,1,1,Active Shallow Crust,0.0,89.9875,-90.0,06/29/7452 +6.79526,46.55512,5074,8,10,21,56,57,3.75,5.0,fr,44100,101,1850424,1,6,Active Shallow Crust,0.0,89.98898,0.0,08/10/5074 +6.79526,46.55512,4501,1,4,15,27,57,3.75,5.0,fr,44101,90,1850424,1,6,Active Shallow Crust,0.0,89.98898,0.0,01/04/4501 +6.79526,46.55512,2403,3,28,17,50,13,3.75,5.0,fr,44102,48,1850424,1,6,Active Shallow Crust,0.0,89.98898,0.0,03/28/2403 +6.79526,46.55512,5646,1,28,1,43,20,3.75,5.0,fr,44103,112,1850424,1,6,Active Shallow Crust,0.0,89.98898,0.0,01/28/5646 +6.79526,46.55512,1756,5,25,1,28,16,3.75,5.0,fr,44104,35,1850424,1,6,Active Shallow Crust,0.0,89.98898,0.0,05/25/1756 +6.79526,46.55512,7522,8,3,12,15,54,3.75,5.0,fr,44105,150,1850424,1,6,Active Shallow Crust,0.0,89.98898,0.0,08/03/7522 +6.79526,46.55512,604,4,20,20,57,21,3.75,15.0,fr,44106,12,1850425,1,3,Active Shallow Crust,0.0,89.98898,0.0,04/20/0604 +6.79526,46.55512,1154,11,18,21,21,52,3.75,15.0,fr,44107,23,1850425,1,3,Active Shallow Crust,0.0,89.98898,0.0,11/18/1154 +6.79526,46.55512,9267,9,17,19,1,46,3.75,15.0,fr,44108,185,1850425,1,3,Active Shallow Crust,0.0,89.98898,0.0,09/17/9267 +6.79526,46.55512,5089,6,5,12,40,20,3.75,27.5,fr,44109,101,1850426,1,1,Active Shallow Crust,0.0,89.98898,0.0,06/05/5089 +6.79526,46.55512,5337,6,20,22,8,29,3.75,27.5,fr,44110,106,1850429,1,2,Active Shallow Crust,240.0076,58.01782,0.0,06/20/5337 +6.79526,46.55512,3214,11,10,12,3,29,3.75,27.5,fr,44111,64,1850429,1,2,Active Shallow Crust,240.0076,58.01782,0.0,11/10/3214 +6.79526,46.55512,2715,5,2,5,56,55,3.75,5.0,fr,44112,54,1850430,1,1,Active Shallow Crust,0.0,89.98885,-90.0,05/02/2715 +6.79526,46.55512,5741,10,22,23,22,0,3.85,5.0,fr,44113,114,1850436,1,3,Active Shallow Crust,0.0,89.99018,0.0,10/22/5741 +6.79526,46.55512,6397,5,21,15,23,54,3.85,5.0,fr,44114,127,1850436,1,3,Active Shallow Crust,0.0,89.99018,0.0,05/21/6397 +6.79526,46.55512,5917,11,1,1,2,39,3.85,5.0,fr,44115,118,1850436,1,3,Active Shallow Crust,0.0,89.99018,0.0,11/01/5917 +6.79526,46.55512,9210,7,16,19,11,29,3.85,15.0,fr,44116,184,1850437,1,2,Active Shallow Crust,0.0,89.99018,0.0,07/16/9210 +6.79526,46.55512,685,8,10,9,28,14,3.85,15.0,fr,44117,13,1850437,1,2,Active Shallow Crust,0.0,89.99018,0.0,08/10/0685 +6.79526,46.55512,197,7,3,15,44,29,3.85,27.5,fr,44118,3,1850438,1,1,Active Shallow Crust,0.0,89.99018,0.0,07/03/0197 +6.79526,46.55512,4705,1,4,19,52,40,3.85,5.0,fr,44119,94,1850439,1,1,Active Shallow Crust,240.0109,57.99755,0.0,01/04/4705 +6.79526,46.55512,5998,1,1,10,51,45,3.85,15.0,fr,44120,119,1850440,1,2,Active Shallow Crust,240.0109,57.99755,0.0,01/01/5998 +6.79526,46.55512,8122,10,28,17,21,23,3.85,15.0,fr,44121,162,1850440,1,2,Active Shallow Crust,240.0109,57.99755,0.0,10/28/8122 +6.79526,46.55512,9912,6,12,11,18,37,3.95,5.0,fr,44122,198,1850448,1,6,Active Shallow Crust,0.0,89.99125,0.0,06/12/9912 +6.79526,46.55512,5539,3,13,21,15,21,3.95,5.0,fr,44123,110,1850448,1,6,Active Shallow Crust,0.0,89.99125,0.0,03/13/5539 +6.79526,46.55512,8272,12,27,10,43,2,3.95,5.0,fr,44124,165,1850448,1,6,Active Shallow Crust,0.0,89.99125,0.0,12/27/8272 +6.79526,46.55512,7753,9,8,15,26,21,3.95,5.0,fr,44125,155,1850448,1,6,Active Shallow Crust,0.0,89.99125,0.0,09/08/7753 +6.79526,46.55512,9659,11,19,14,13,25,3.95,5.0,fr,44126,193,1850448,1,6,Active Shallow Crust,0.0,89.99125,0.0,11/19/9659 +6.79526,46.55512,4912,7,31,0,59,29,3.95,5.0,fr,44127,98,1850448,1,6,Active Shallow Crust,0.0,89.99125,0.0,07/31/4912 +6.79526,46.55512,8291,2,5,7,28,18,3.95,15.0,fr,44128,165,1850449,1,2,Active Shallow Crust,0.0,89.99125,0.0,02/05/8291 +6.79526,46.55512,3056,12,12,23,2,41,3.95,15.0,fr,44129,61,1850449,1,2,Active Shallow Crust,0.0,89.99125,0.0,12/12/3056 +6.79526,46.55512,3241,3,19,8,29,29,3.95,27.5,fr,44130,64,1850450,1,1,Active Shallow Crust,0.0,89.99125,0.0,03/19/3241 +6.79526,46.55512,7081,8,4,10,43,18,3.95,15.0,fr,44131,141,1850455,1,1,Active Shallow Crust,0.0,89.99115,-90.0,08/04/7081 +6.79526,46.55512,176,1,15,6,32,45,3.95,15.0,fr,44132,3,1850458,1,1,Active Shallow Crust,128.9003,89.99344,0.0,01/15/0176 +6.79526,46.55512,2594,5,25,11,25,55,4.05,5.0,fr,44133,51,1850460,1,1,Active Shallow Crust,0.0,89.9883,0.0,05/25/2594 +6.79526,46.55512,4215,10,13,6,2,19,4.05,15.0,fr,44134,84,1850467,1,1,Active Shallow Crust,0.0,89.98817,-90.0,10/13/4215 +6.79526,46.55512,2570,1,13,5,29,17,4.15,5.0,fr,44135,51,1850472,1,2,Active Shallow Crust,0.0,89.98957,0.0,01/13/2570 +6.79526,46.55512,7416,12,3,13,15,20,4.15,5.0,fr,44136,148,1850472,1,2,Active Shallow Crust,0.0,89.98957,0.0,12/03/7416 +6.79526,46.55512,3051,9,8,3,4,56,4.25,5.0,fr,44137,61,1850484,1,1,Active Shallow Crust,0.0,89.99071,0.0,09/08/3051 +6.79526,46.55512,2175,7,22,21,46,29,4.25,15.0,fr,44138,43,1850485,1,1,Active Shallow Crust,0.0,89.99071,0.0,07/22/2175 +6.79526,46.55512,8063,5,6,12,30,34,4.35,5.0,fr,44139,161,1850496,1,2,Active Shallow Crust,0.0,89.98896,0.0,05/06/8063 +6.79526,46.55512,2646,6,17,15,35,30,4.35,5.0,fr,44140,52,1850496,1,2,Active Shallow Crust,0.0,89.98896,0.0,06/17/2646 +6.79526,46.55512,1123,11,28,1,51,28,4.35,27.5,fr,44141,22,1850498,1,1,Active Shallow Crust,0.0,89.98896,0.0,11/28/1123 +6.79526,46.55512,396,3,11,10,42,26,4.45,5.0,fr,44142,7,1850511,1,1,Active Shallow Crust,240.0051,57.99485,0.0,03/11/0396 +6.79526,46.55512,1071,3,7,0,25,57,4.45,5.0,fr,44143,21,1850517,1,1,Active Shallow Crust,128.8925,89.99385,0.0,03/07/1071 +6.79526,46.55512,8999,7,15,23,41,1,4.45,27.5,fr,44144,179,1850519,1,1,Active Shallow Crust,128.8925,89.99385,0.0,07/15/8999 +6.79526,46.55512,972,7,4,13,54,53,4.65,15.0,fr,44145,19,1850533,1,1,Active Shallow Crust,0.0,89.99023,0.0,07/04/0972 +6.79526,46.55512,1026,7,8,23,46,56,4.75,5.0,fr,44146,20,1850544,1,1,Active Shallow Crust,0.0,89.98955,0.0,07/08/1026 +6.79526,46.55512,562,2,25,14,29,36,4.85,5.0,fr,44147,11,1850556,1,1,Active Shallow Crust,0.0,89.99068,0.0,02/25/0562 +6.79526,46.55512,6734,2,2,8,54,2,4.85,5.0,fr,44148,134,1850559,1,1,Active Shallow Crust,240.0173,58.0023,0.0,02/02/6734 +6.79526,46.55512,4063,11,24,23,26,2,4.95,5.0,fr,44149,81,1850568,1,1,Active Shallow Crust,0.0,89.99031,0.0,11/24/4063 +6.79526,46.55512,347,12,11,21,12,9,5.15,27.5,fr,44150,6,1850603,1,1,Active Shallow Crust,128.8837,89.99081,0.0,12/11/0347 +6.79526,46.55512,7989,5,8,22,10,7,5.35,15.0,fr,44151,159,1850617,1,1,Active Shallow Crust,0.0,89.99039,0.0,05/08/7989 +6.79526,46.55512,4290,4,22,3,25,35,5.95,5.0,fr,44152,85,1850688,1,1,Active Shallow Crust,0.0,89.98993,0.0,04/22/4290 +6.79526,46.55512,6717,7,30,23,52,36,6.05,15.0,fr,44153,134,1850704,1,1,Active Shallow Crust,240.0565,58.00027,0.0,07/30/6717 +6.795262,46.55512,6868,3,19,0,58,23,6.15,6.011322,fr,44154,137,1850712,1,1,Active Shallow Crust,0.0,89.98991,0.0,03/19/6868 +7.72023,47.9495,7960,5,5,23,44,26,3.55,5.0,fr,44155,159,1850880,1,3,Active Shallow Crust,0.0,89.99325,0.0,05/05/7960 +7.72023,47.9495,2345,2,18,12,37,11,3.55,5.0,fr,44156,46,1850880,1,3,Active Shallow Crust,0.0,89.99325,0.0,02/18/2345 +7.72023,47.9495,3036,1,30,17,32,54,3.55,5.0,fr,44157,60,1850880,1,3,Active Shallow Crust,0.0,89.99325,0.0,01/30/3036 +7.72023,47.9495,1092,9,30,6,28,13,3.55,15.0,fr,44158,21,1850881,1,3,Active Shallow Crust,0.0,89.99325,0.0,09/30/1092 +7.72023,47.9495,2426,4,6,7,21,11,3.55,15.0,fr,44159,48,1850881,1,3,Active Shallow Crust,0.0,89.99325,0.0,04/06/2426 +7.72023,47.9495,2270,8,30,3,26,36,3.55,15.0,fr,44160,45,1850881,1,3,Active Shallow Crust,0.0,89.99325,0.0,08/30/2270 +7.72023,47.9495,9021,12,19,19,32,52,3.55,27.5,fr,44161,180,1850882,1,1,Active Shallow Crust,0.0,89.99325,0.0,12/19/9021 +7.72023,47.9495,8251,7,20,13,41,16,3.55,5.0,fr,44162,165,1850883,1,1,Active Shallow Crust,240.0127,57.9973,0.0,07/20/8251 +7.72023,47.9495,3165,12,25,9,40,19,3.55,5.0,fr,44163,63,1850886,1,1,Active Shallow Crust,0.0,89.99316,-90.0,12/25/3165 +7.72023,47.9495,6081,1,26,6,15,18,3.55,5.0,fr,44164,121,1850889,1,1,Active Shallow Crust,128.8952,89.99662,0.0,01/26/6081 +7.72023,47.9495,9979,10,5,6,53,2,3.65,5.0,fr,44165,199,1850892,1,2,Active Shallow Crust,0.0,89.98796,0.0,10/05/9979 +7.72023,47.9495,770,11,13,13,15,47,3.65,5.0,fr,44166,15,1850892,1,2,Active Shallow Crust,0.0,89.98796,0.0,11/13/0770 +7.72023,47.9495,4908,7,23,10,7,57,3.65,15.0,fr,44167,98,1850893,1,3,Active Shallow Crust,0.0,89.98796,0.0,07/23/4908 +7.72023,47.9495,6041,2,12,18,49,34,3.65,15.0,fr,44168,120,1850893,1,3,Active Shallow Crust,0.0,89.98796,0.0,02/12/6041 +7.72023,47.9495,662,3,9,11,53,46,3.65,15.0,fr,44169,13,1850893,1,3,Active Shallow Crust,0.0,89.98796,0.0,03/09/0662 +7.72023,47.9495,4737,1,29,7,39,6,3.65,5.0,fr,44170,94,1850895,1,1,Active Shallow Crust,240.0018,58.01275,0.0,01/29/4737 +7.72023,47.9495,5066,7,5,19,3,12,3.65,15.0,fr,44171,101,1850896,1,1,Active Shallow Crust,240.0018,58.01275,0.0,07/05/5066 +7.72023,47.9495,1782,3,17,4,36,52,3.65,5.0,fr,44172,35,1850901,1,1,Active Shallow Crust,128.8999,89.96355,0.0,03/17/1782 +7.72023,47.9495,2675,6,18,6,43,18,3.65,15.0,fr,44173,53,1850902,1,1,Active Shallow Crust,128.8999,89.96355,0.0,06/18/2675 +7.72023,47.9495,38,12,3,19,52,54,3.75,5.0,fr,44174,0,1850904,1,5,Active Shallow Crust,0.0,89.98927,0.0,12/03/0038 +7.72023,47.9495,791,7,19,16,9,59,3.75,5.0,fr,44175,15,1850904,1,5,Active Shallow Crust,0.0,89.98927,0.0,07/19/0791 +7.72023,47.9495,3770,3,15,12,31,4,3.75,5.0,fr,44176,75,1850904,1,5,Active Shallow Crust,0.0,89.98927,0.0,03/15/3770 +7.72023,47.9495,8499,2,17,7,49,19,3.75,5.0,fr,44177,169,1850904,1,5,Active Shallow Crust,0.0,89.98927,0.0,02/17/8499 +7.72023,47.9495,4778,9,9,0,6,2,3.75,5.0,fr,44178,95,1850904,1,5,Active Shallow Crust,0.0,89.98927,0.0,09/09/4778 +7.72023,47.9495,4921,9,30,10,41,6,3.75,5.0,fr,44179,98,1850907,1,1,Active Shallow Crust,240.0081,58.01791,0.0,09/30/4921 +7.72023,47.9495,5441,7,25,0,52,0,3.85,15.0,fr,44180,108,1850917,1,1,Active Shallow Crust,0.0,89.99044,0.0,07/25/5441 +7.72023,47.9495,6808,5,28,12,16,39,3.85,5.0,fr,44181,136,1850925,1,1,Active Shallow Crust,128.8954,89.99283,0.0,05/28/6808 +7.72023,47.9495,990,4,4,13,15,21,3.95,5.0,fr,44182,19,1850928,1,1,Active Shallow Crust,0.0,89.99148,0.0,04/04/0990 +7.72023,47.9495,6904,4,9,20,34,28,4.05,5.0,fr,44183,138,1850940,1,1,Active Shallow Crust,0.0,89.9886,0.0,04/09/6904 +7.72023,47.9495,4265,1,4,0,10,16,4.05,15.0,fr,44184,85,1850941,1,1,Active Shallow Crust,0.0,89.9886,0.0,01/04/4265 +7.72023,47.9495,3536,4,24,13,40,35,4.15,5.0,fr,44185,70,1850952,1,1,Active Shallow Crust,0.0,89.98985,0.0,04/24/3536 +7.72023,47.9495,6692,7,3,9,9,54,4.15,15.0,fr,44186,133,1850953,1,1,Active Shallow Crust,0.0,89.98985,0.0,07/03/6692 +7.72023,47.9495,3282,5,9,23,27,54,4.15,27.5,fr,44187,65,1850954,1,1,Active Shallow Crust,0.0,89.98985,0.0,05/09/3282 +7.72023,47.9495,2961,9,11,2,53,29,4.25,5.0,fr,44188,59,1850967,1,1,Active Shallow Crust,240.0074,57.99429,0.0,09/11/2961 +7.72023,47.9495,6401,4,11,20,43,14,4.25,15.0,fr,44189,128,1850968,1,1,Active Shallow Crust,240.0074,57.99429,0.0,04/11/6401 +7.72023,47.9495,56,11,20,19,16,13,4.35,5.0,fr,44190,1,1850976,1,1,Active Shallow Crust,0.0,89.98924,0.0,11/20/0056 +7.72023,47.9495,8130,3,31,2,39,45,4.35,15.0,fr,44191,162,1850986,1,1,Active Shallow Crust,128.8979,89.98259,0.0,03/31/8130 +7.72023,47.9495,3880,6,29,17,56,24,4.45,15.0,fr,44192,77,1850989,1,1,Active Shallow Crust,0.0,89.99041,0.0,06/29/3880 +7.72023,47.9495,8737,4,8,23,45,35,4.45,15.0,fr,44193,174,1850992,1,1,Active Shallow Crust,240.0054,57.99501,0.0,04/08/8737 +7.72023,47.9495,4134,11,29,18,37,9,4.55,5.0,fr,44194,82,1851009,1,1,Active Shallow Crust,128.8932,89.98618,0.0,11/29/4134 +7.72023,47.9495,6357,2,2,5,15,35,5.35,5.0,fr,44195,127,1851096,1,2,Active Shallow Crust,0.0,89.98979,0.0,02/02/6357 +7.72023,47.9495,7743,5,16,1,20,41,5.35,5.0,fr,44196,154,1851096,1,2,Active Shallow Crust,0.0,89.98979,0.0,05/16/7743 +6.0303,51.2474,655,4,23,19,37,18,3.55,5.0,fr,44197,13,1851360,1,1,Active Shallow Crust,0.0,89.98737,0.0,04/23/0655 +6.0303,51.2474,5263,5,2,3,52,48,3.55,15.0,fr,44198,105,1851361,1,3,Active Shallow Crust,0.0,89.98737,0.0,05/02/5263 +6.0303,51.2474,1271,12,21,1,43,17,3.55,15.0,fr,44199,25,1851361,1,3,Active Shallow Crust,0.0,89.98737,0.0,12/21/1271 +6.0303,51.2474,6825,9,25,19,17,58,3.55,15.0,fr,44200,136,1851361,1,3,Active Shallow Crust,0.0,89.98737,0.0,09/25/6825 +6.0303,51.2474,9340,4,21,2,55,13,3.55,5.0,fr,44201,186,1851366,1,1,Active Shallow Crust,0.0,89.98723,-90.0,04/21/9340 +6.0303,51.2474,8624,6,30,17,46,42,3.55,15.0,fr,44202,172,1851370,1,1,Active Shallow Crust,128.896,89.99369,0.0,06/30/8624 +6.0303,51.2474,3866,4,20,17,49,33,3.65,5.0,fr,44203,77,1851372,1,2,Active Shallow Crust,0.0,89.98875,0.0,04/20/3866 +6.0303,51.2474,8193,1,24,17,3,54,3.65,5.0,fr,44204,163,1851372,1,2,Active Shallow Crust,0.0,89.98875,0.0,01/24/8193 +6.0303,51.2474,44,2,5,4,59,13,3.75,5.0,fr,44205,0,1851390,1,1,Active Shallow Crust,0.0,89.98985,-90.0,02/05/0044 +6.0303,51.2474,5794,6,9,4,46,17,3.85,5.0,fr,44206,115,1851396,1,1,Active Shallow Crust,0.0,89.99107,0.0,06/09/5794 +6.0303,51.2474,4337,8,25,14,38,41,3.85,15.0,fr,44207,86,1851397,1,2,Active Shallow Crust,0.0,89.99107,0.0,08/25/4337 +6.0303,51.2474,6787,9,2,7,4,19,3.85,15.0,fr,44208,135,1851397,1,2,Active Shallow Crust,0.0,89.99107,0.0,09/02/6787 +6.0303,51.2474,4183,4,26,1,27,44,3.85,5.0,fr,44209,83,1851399,1,2,Active Shallow Crust,240.011,57.99818,0.0,04/26/4183 +6.0303,51.2474,9738,6,9,7,38,19,3.85,5.0,fr,44210,194,1851399,1,2,Active Shallow Crust,240.011,57.99818,0.0,06/09/9738 +6.0303,51.2474,9048,3,11,5,36,3,3.85,5.0,fr,44211,180,1851402,1,1,Active Shallow Crust,0.0,89.99096,-90.0,03/11/9048 +6.0303,51.2474,9332,12,8,18,19,23,3.95,5.0,fr,44212,186,1851408,1,2,Active Shallow Crust,0.0,89.98805,0.0,12/08/9332 +6.0303,51.2474,3459,9,30,10,9,53,3.95,5.0,fr,44213,69,1851408,1,2,Active Shallow Crust,0.0,89.98805,0.0,09/30/3459 +6.0303,51.2474,9748,8,26,20,56,9,3.95,5.0,fr,44214,194,1851411,1,1,Active Shallow Crust,240.0213,58.00445,0.0,08/26/9748 +6.0303,51.2474,5741,12,7,3,56,24,4.05,15.0,fr,44215,114,1851421,1,1,Active Shallow Crust,0.0,89.98935,0.0,12/07/5741 +6.0303,51.2474,3884,1,6,20,9,3,4.05,5.0,fr,44216,77,1851429,1,1,Active Shallow Crust,128.8892,89.99467,0.0,01/06/3884 +6.0303,51.2474,8697,2,20,21,54,19,4.15,5.0,fr,44217,173,1851432,1,2,Active Shallow Crust,0.0,89.99051,0.0,02/20/8697 +6.0303,51.2474,860,10,27,19,57,11,4.15,5.0,fr,44218,17,1851432,1,2,Active Shallow Crust,0.0,89.99051,0.0,10/27/0860 +6.0303,51.2474,7126,9,15,9,17,23,4.15,15.0,fr,44219,142,1851433,1,2,Active Shallow Crust,0.0,89.99051,0.0,09/15/7126 +6.0303,51.2474,5369,10,15,7,0,48,4.15,15.0,fr,44220,107,1851433,1,2,Active Shallow Crust,0.0,89.99051,0.0,10/15/5369 +6.0303,51.2474,4187,3,7,17,36,54,4.35,5.0,fr,44221,83,1851456,1,2,Active Shallow Crust,0.0,89.98994,0.0,03/07/4187 +6.0303,51.2474,2516,3,28,19,47,22,4.35,5.0,fr,44222,50,1851456,1,2,Active Shallow Crust,0.0,89.98994,0.0,03/28/2516 +6.0303,51.2474,9743,10,31,17,50,58,4.35,15.0,fr,44223,194,1851457,1,1,Active Shallow Crust,0.0,89.98994,0.0,10/31/9743 +6.0303,51.2474,6726,9,28,12,30,34,4.55,5.0,fr,44224,134,1851483,1,1,Active Shallow Crust,240.0108,57.9976,0.0,09/28/6726 +6.0303,51.2474,6629,3,22,1,44,11,4.55,15.0,fr,44225,132,1851484,1,1,Active Shallow Crust,240.0108,57.99762,0.0,03/22/6629 +6.0303,51.2474,8741,10,8,9,38,4,4.65,15.0,fr,44226,174,1851493,1,1,Active Shallow Crust,0.0,89.98933,0.0,10/08/8741 +6.0303,51.2474,5127,12,17,16,17,55,4.75,5.0,fr,44227,102,1851510,1,1,Active Shallow Crust,0.0,89.99037,-90.0,12/17/5127 +6.0303,51.2474,8700,11,19,16,56,55,5.55,15.0,fr,44228,173,1851601,1,1,Active Shallow Crust,0.0,89.9899,0.0,11/19/8700 +-1.68647,48.58656,1518,5,24,12,22,11,3.55,5.0,fr,44229,30,1851843,1,1,Active Shallow Crust,240.0127,57.99821,0.0,05/24/1518 +-1.68647,48.58656,4280,6,2,7,15,46,3.55,15.0,fr,44230,85,1851850,1,1,Active Shallow Crust,128.896,89.99416,0.0,06/02/4280 +-1.68647,48.58656,4527,3,9,13,25,20,3.55,27.5,fr,44231,90,1851851,1,1,Active Shallow Crust,128.896,89.99416,0.0,03/09/4527 +-1.68647,48.58656,2689,10,29,2,34,56,3.65,5.0,fr,44232,53,1851852,1,3,Active Shallow Crust,0.0,89.98959,0.0,10/29/2689 +-1.68647,48.58656,164,8,2,11,14,45,3.65,5.0,fr,44233,3,1851852,1,3,Active Shallow Crust,0.0,89.98959,0.0,08/02/0164 +-1.68647,48.58656,8771,2,13,0,40,58,3.65,5.0,fr,44234,175,1851852,1,3,Active Shallow Crust,0.0,89.98959,0.0,02/13/8771 +-1.68647,48.58656,9412,6,25,14,34,13,3.65,15.0,fr,44235,188,1851856,1,1,Active Shallow Crust,240.001,58.0131,0.0,06/25/9412 +-1.68647,48.58656,1434,2,12,12,13,15,3.65,27.5,fr,44236,28,1851860,1,1,Active Shallow Crust,0.0,89.98948,-90.0,02/12/1434 +-1.68647,48.58656,2321,9,23,1,31,52,3.65,5.0,fr,44237,46,1851861,1,1,Active Shallow Crust,128.9005,89.96343,0.0,09/23/2321 +-1.68647,48.58656,5619,6,4,3,54,38,3.75,15.0,fr,44238,112,1851868,1,1,Active Shallow Crust,240.0085,58.01762,0.0,06/04/5619 +-1.68647,48.58656,6064,9,19,19,43,40,3.75,5.0,fr,44239,121,1851873,1,1,Active Shallow Crust,128.8961,89.96741,0.0,09/19/6064 +-1.68647,48.58656,8336,4,8,6,44,55,3.85,5.0,fr,44240,166,1851876,1,1,Active Shallow Crust,0.0,89.99055,0.0,04/08/8336 +-1.68647,48.58656,7158,12,26,9,40,49,3.85,15.0,fr,44241,143,1851877,1,1,Active Shallow Crust,0.0,89.99055,0.0,12/26/7158 +-1.68647,48.58656,383,3,31,22,15,32,3.95,5.0,fr,44242,7,1851888,1,1,Active Shallow Crust,0.0,89.98948,0.0,03/31/0383 +-1.68647,48.58656,6583,2,13,12,4,14,3.95,15.0,fr,44243,131,1851892,1,1,Active Shallow Crust,240.0202,58.0051,0.0,02/13/6583 +-1.68647,48.58656,8939,8,29,20,29,35,3.95,5.0,fr,44244,178,1851894,1,1,Active Shallow Crust,0.0,89.99042,-90.0,08/29/8939 +-1.68647,48.58656,6689,4,27,13,15,41,3.95,5.0,fr,44245,133,1851897,1,1,Active Shallow Crust,128.9003,89.99369,0.0,04/27/6689 +-1.68647,48.58656,9062,2,14,7,49,29,4.15,5.0,fr,44246,181,1851912,1,2,Active Shallow Crust,0.0,89.98997,0.0,02/14/9062 +-1.68647,48.58656,8076,11,7,7,35,16,4.15,5.0,fr,44247,161,1851912,1,2,Active Shallow Crust,0.0,89.98997,0.0,11/07/8076 +-1.68647,48.58656,2108,9,26,17,2,25,4.15,5.0,fr,44248,42,1851921,1,1,Active Shallow Crust,128.8973,89.99373,0.0,09/26/2108 +-1.68647,48.58656,8635,12,28,15,31,23,4.25,5.0,fr,44249,172,1851933,1,1,Active Shallow Crust,128.8941,89.9809,0.0,12/28/8635 +-1.68647,48.58656,956,8,30,16,0,54,4.45,5.0,fr,44250,19,1851948,1,2,Active Shallow Crust,0.0,89.98994,0.0,08/30/0956 +-1.68647,48.58656,9504,5,1,6,19,8,4.45,5.0,fr,44251,190,1851948,1,2,Active Shallow Crust,0.0,89.98994,0.0,05/01/9504 +-1.68647,48.58656,7228,8,11,9,32,8,4.45,15.0,fr,44252,144,1851949,1,1,Active Shallow Crust,0.0,89.98994,0.0,08/11/7228 +-1.68647,48.58656,981,5,23,11,48,20,4.65,15.0,fr,44253,19,1851973,1,1,Active Shallow Crust,0.0,89.99013,0.0,05/23/0981 +-1.68647,48.58656,7156,7,17,21,59,28,4.75,5.0,fr,44254,143,1851987,1,1,Active Shallow Crust,240.0083,58.00463,0.0,07/17/7156 +-1.68647,48.58656,7498,5,17,4,30,35,4.85,27.5,fr,44255,149,1851998,1,1,Active Shallow Crust,0.0,89.98992,0.0,05/17/7498 +5.61395,45.62624,4717,5,15,19,19,27,3.55,5.0,fr,44256,94,1852320,1,2,Active Shallow Crust,0.0,89.99295,0.0,05/15/4717 +5.61395,45.62624,7097,4,27,9,6,11,3.55,5.0,fr,44257,141,1852320,1,2,Active Shallow Crust,0.0,89.99295,0.0,04/27/7097 +5.61395,45.62624,9539,5,21,4,20,45,3.55,5.0,fr,44258,190,1852323,1,1,Active Shallow Crust,240.0105,57.99881,0.0,05/21/9539 +5.61395,45.62624,3171,7,10,1,39,18,3.55,15.0,fr,44259,63,1852327,1,1,Active Shallow Crust,0.0,89.99287,-90.0,07/10/3171 +5.61395,45.62624,7702,3,16,4,6,46,3.65,5.0,fr,44260,154,1852332,1,5,Active Shallow Crust,0.0,89.98743,0.0,03/16/7702 +5.61395,45.62624,3576,4,5,6,38,51,3.65,5.0,fr,44261,71,1852332,1,5,Active Shallow Crust,0.0,89.98743,0.0,04/05/3576 +5.61395,45.62624,7557,8,28,15,28,35,3.65,5.0,fr,44262,151,1852332,1,5,Active Shallow Crust,0.0,89.98743,0.0,08/28/7557 +5.61395,45.62624,2086,6,2,14,17,36,3.65,5.0,fr,44263,41,1852332,1,5,Active Shallow Crust,0.0,89.98743,0.0,06/02/2086 +5.61395,45.62624,621,8,7,0,14,57,3.65,5.0,fr,44264,12,1852332,1,5,Active Shallow Crust,0.0,89.98743,0.0,08/07/0621 +5.61395,45.62624,1899,11,3,17,51,46,3.65,15.0,fr,44265,37,1852333,1,1,Active Shallow Crust,0.0,89.98743,0.0,11/03/1899 +5.61395,45.62624,786,2,15,18,22,8,3.65,5.0,fr,44266,15,1852338,1,1,Active Shallow Crust,0.0,89.98728,-90.0,02/15/0786 +5.61395,45.62624,7041,9,27,23,18,8,3.65,27.5,fr,44267,140,1852343,1,1,Active Shallow Crust,128.9,89.96351,0.0,09/27/7041 +5.61395,45.62624,897,7,11,0,50,56,3.75,5.0,fr,44268,17,1852344,1,3,Active Shallow Crust,0.0,89.9888,0.0,07/11/0897 +5.61395,45.62624,3897,5,1,8,46,57,3.75,5.0,fr,44269,77,1852344,1,3,Active Shallow Crust,0.0,89.9888,0.0,05/01/3897 +5.61395,45.62624,8204,11,23,9,14,5,3.75,5.0,fr,44270,164,1852344,1,3,Active Shallow Crust,0.0,89.9888,0.0,11/23/8204 +5.61395,45.62624,7966,7,16,9,17,42,3.75,5.0,fr,44271,159,1852350,1,1,Active Shallow Crust,0.0,89.98867,-90.0,07/16/7966 +5.61395,45.62624,3291,2,11,14,6,13,3.85,15.0,fr,44272,65,1852357,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/11/3291 +5.61395,45.62624,8836,11,20,6,45,54,3.85,5.0,fr,44273,176,1852359,1,1,Active Shallow Crust,240.0103,57.99829,0.0,11/20/8836 +5.61395,45.62624,2816,4,20,20,34,12,3.85,5.0,fr,44274,56,1852362,1,1,Active Shallow Crust,0.0,89.9899,-90.0,04/20/2816 +5.61395,45.62624,5962,7,19,20,17,45,4.05,5.0,fr,44275,119,1852380,1,2,Active Shallow Crust,0.0,89.98811,0.0,07/19/5962 +5.61395,45.62624,3828,2,7,0,53,37,4.05,5.0,fr,44276,76,1852380,1,2,Active Shallow Crust,0.0,89.98811,0.0,02/07/3828 +5.61395,45.62624,9678,8,18,6,37,46,4.05,5.0,fr,44277,193,1852389,1,1,Active Shallow Crust,128.8896,89.99405,0.0,08/18/9678 +5.61395,45.62624,3620,10,23,23,50,42,4.15,5.0,fr,44278,72,1852392,1,1,Active Shallow Crust,0.0,89.9894,0.0,10/23/3620 +5.61395,45.62624,3595,10,28,0,15,41,4.25,5.0,fr,44279,71,1852404,1,1,Active Shallow Crust,0.0,89.99055,0.0,10/28/3595 +5.61395,45.62624,75,11,10,4,54,15,4.25,15.0,fr,44280,1,1852405,1,1,Active Shallow Crust,0.0,89.99055,0.0,11/10/0075 +5.61395,45.62624,8003,5,8,22,24,38,4.45,5.0,fr,44281,160,1852431,1,1,Active Shallow Crust,240.0046,57.9948,0.0,05/08/8003 +5.61395,45.62624,7960,5,2,18,42,32,4.65,5.0,fr,44282,159,1852452,1,1,Active Shallow Crust,0.0,89.99006,0.0,05/02/7960 +5.61395,45.62624,3620,8,24,17,26,52,4.95,15.0,fr,44283,72,1852492,1,1,Active Shallow Crust,240.0114,58.00444,0.0,08/24/3620 +5.61395,45.62624,3010,12,7,13,22,27,5.15,5.0,fr,44284,60,1852512,1,1,Active Shallow Crust,0.0,89.98994,0.0,12/07/3010 +5.61395,45.62624,4263,1,26,0,17,47,5.25,5.0,fr,44285,85,1852524,1,1,Active Shallow Crust,0.0,89.99004,0.0,01/26/4263 +1.19252,44.22689,3480,6,8,10,12,23,3.65,5.0,fr,44286,69,1852812,1,1,Active Shallow Crust,0.0,89.99034,0.0,06/08/3480 +1.19252,44.22689,4131,2,19,10,2,1,3.85,5.0,fr,44287,82,1852836,1,1,Active Shallow Crust,0.0,89.98977,0.0,02/19/4131 +1.19252,44.22689,7638,1,6,2,28,48,4.55,5.0,fr,44288,152,1852920,1,1,Active Shallow Crust,0.0,89.98972,0.0,01/06/7638 +6.2296,46.61538,520,12,1,23,10,31,3.55,15.0,fr,44289,10,1853281,1,1,Active Shallow Crust,0.0,89.99307,0.0,12/01/0520 +6.2296,46.61538,9330,7,23,2,29,19,3.55,5.0,fr,44290,186,1853289,1,1,Active Shallow Crust,128.8956,89.99307,0.0,07/23/9330 +6.2296,46.61538,3955,12,11,18,1,12,3.65,5.0,fr,44291,79,1853292,1,5,Active Shallow Crust,0.0,89.98766,0.0,12/11/3955 +6.2296,46.61538,6275,4,20,3,45,27,3.65,5.0,fr,44292,125,1853292,1,5,Active Shallow Crust,0.0,89.98766,0.0,04/20/6275 +6.2296,46.61538,3706,1,4,2,23,6,3.65,5.0,fr,44293,74,1853292,1,5,Active Shallow Crust,0.0,89.98766,0.0,01/04/3706 +6.2296,46.61538,1598,10,12,2,37,32,3.65,5.0,fr,44294,31,1853292,1,5,Active Shallow Crust,0.0,89.98766,0.0,10/12/1598 +6.2296,46.61538,161,11,28,12,4,1,3.65,5.0,fr,44295,3,1853292,1,5,Active Shallow Crust,0.0,89.98766,0.0,11/28/0161 +6.2296,46.61538,2631,11,30,10,25,49,3.65,5.0,fr,44296,52,1853295,1,1,Active Shallow Crust,240.001,58.01324,0.0,11/30/2631 +6.2296,46.61538,5066,6,9,18,12,50,3.65,5.0,fr,44297,101,1853298,1,1,Active Shallow Crust,0.0,89.98751,-90.0,06/09/5066 +6.2296,46.61538,3162,10,23,13,17,45,3.75,5.0,fr,44298,63,1853307,1,1,Active Shallow Crust,240.0076,58.01797,0.0,10/23/3162 +6.2296,46.61538,6039,12,8,17,58,58,3.85,5.0,fr,44299,120,1853316,1,2,Active Shallow Crust,0.0,89.9902,0.0,12/08/6039 +6.2296,46.61538,905,6,6,19,15,36,3.85,5.0,fr,44300,18,1853316,1,2,Active Shallow Crust,0.0,89.9902,0.0,06/06/0905 +6.2296,46.61538,7064,12,18,18,27,33,3.95,15.0,fr,44301,141,1853329,1,2,Active Shallow Crust,0.0,89.99126,0.0,12/18/7064 +6.2296,46.61538,3050,3,19,19,13,7,3.95,15.0,fr,44302,60,1853329,1,2,Active Shallow Crust,0.0,89.99126,0.0,03/19/3050 +6.2296,46.61538,5220,6,20,20,1,35,4.05,5.0,fr,44303,104,1853340,1,1,Active Shallow Crust,0.0,89.98831,0.0,06/20/5220 +6.2296,46.61538,6617,10,18,10,42,4,4.05,15.0,fr,44304,132,1853341,1,2,Active Shallow Crust,0.0,89.98831,0.0,10/18/6617 +6.2296,46.61538,4161,9,27,15,5,1,4.05,15.0,fr,44305,83,1853341,1,2,Active Shallow Crust,0.0,89.98831,0.0,09/27/4161 +6.2296,46.61538,5385,6,1,21,4,49,4.05,5.0,fr,44306,107,1853343,1,1,Active Shallow Crust,240.0054,58.00638,0.0,06/01/5385 +6.2296,46.61538,5214,1,29,9,14,53,4.05,5.0,fr,44307,104,1853346,1,1,Active Shallow Crust,0.0,89.98818,-90.0,01/29/5214 +6.2296,46.61538,5791,10,9,20,17,11,4.25,5.0,fr,44308,115,1853364,1,1,Active Shallow Crust,0.0,89.99072,0.0,10/09/5791 +6.2296,46.61538,4319,6,13,6,32,50,4.55,27.5,fr,44309,86,1853402,1,1,Active Shallow Crust,0.0,89.98904,0.0,06/13/4319 +6.229604,46.61538,8230,8,12,4,59,39,6.25,6.744814,fr,44310,164,1853604,1,1,Active Shallow Crust,0.0,89.98994,0.0,08/12/8230 +-2.13409,47.33638,1600,7,26,0,34,40,3.55,5.0,fr,44311,31,1853760,1,1,Active Shallow Crust,0.0,89.98975,0.0,07/26/1600 +-2.13409,47.33638,4480,8,30,7,24,38,3.65,15.0,fr,44312,89,1853779,1,1,Active Shallow Crust,0.0,89.99076,-90.0,08/30/4480 +-2.13409,47.33638,9056,11,18,23,39,59,3.75,15.0,fr,44313,181,1853785,1,2,Active Shallow Crust,0.0,89.98914,0.0,11/18/9056 +-2.13409,47.33638,8952,12,27,12,25,29,3.75,15.0,fr,44314,179,1853785,1,2,Active Shallow Crust,0.0,89.98914,0.0,12/27/8952 +-2.13409,47.33638,3304,8,21,19,21,56,3.75,15.0,fr,44315,66,1853791,1,1,Active Shallow Crust,0.0,89.98902,-90.0,08/21/3304 +-2.13409,47.33638,112,9,7,5,35,5,3.85,5.0,fr,44316,2,1853796,1,1,Active Shallow Crust,0.0,89.99033,0.0,09/07/0112 +-2.13409,47.33638,2960,3,29,16,10,6,4.15,5.0,fr,44317,59,1853835,1,1,Active Shallow Crust,240.0087,57.99723,0.0,03/29/2960 +-2.13409,47.33638,497,7,11,14,10,38,4.45,5.0,fr,44318,9,1853868,1,1,Active Shallow Crust,0.0,89.9903,0.0,07/11/0497 +-2.13409,47.33638,2505,6,18,14,55,40,4.55,5.0,fr,44319,50,1853880,1,1,Active Shallow Crust,0.0,89.99027,0.0,06/18/2505 +-2.13409,47.33638,5645,2,22,5,45,59,4.75,15.0,fr,44320,112,1853908,1,1,Active Shallow Crust,240.0077,58.0047,0.0,02/22/5645 +-2.13409,47.33638,5797,5,10,6,49,17,4.95,27.5,fr,44321,115,1853930,1,1,Active Shallow Crust,0.0,89.98977,0.0,05/10/5797 +-2.13409,47.33638,4611,3,27,0,38,1,4.95,15.0,fr,44322,92,1853932,1,1,Active Shallow Crust,240.0123,58.00449,0.0,03/27/4611 +1.09011,44.75903,9693,11,8,10,20,39,3.55,27.5,fr,44323,193,1854728,1,1,Active Shallow Crust,0.0,89.98914,-90.0,11/08/9693 +1.09011,44.75903,1652,5,14,12,44,3,3.65,5.0,fr,44324,33,1854732,1,1,Active Shallow Crust,0.0,89.99043,0.0,05/14/1652 +1.09011,44.75903,3773,11,14,12,24,34,3.65,5.0,fr,44325,75,1854735,1,1,Active Shallow Crust,240.0009,58.01281,0.0,11/14/3773 +1.09011,44.75903,1609,9,13,19,47,2,4.05,5.0,fr,44326,32,1854780,1,2,Active Shallow Crust,0.0,89.98994,0.0,09/13/1609 +1.09011,44.75903,5275,8,7,15,51,10,4.05,5.0,fr,44327,105,1854780,1,2,Active Shallow Crust,0.0,89.98994,0.0,08/07/5275 +-2.43134,44.70911,8481,9,15,22,50,29,3.65,5.0,fr,44328,169,1855212,1,1,Active Shallow Crust,0.0,89.99042,0.0,09/15/8481 +3.54273,45.0744,9284,9,6,3,25,7,3.55,5.0,fr,44329,185,1855680,1,1,Active Shallow Crust,0.0,89.98932,0.0,09/06/9284 +3.54273,45.0744,6611,11,12,15,27,9,3.55,27.5,fr,44330,132,1855682,1,1,Active Shallow Crust,0.0,89.98932,0.0,11/12/6611 +3.54273,45.0744,4875,8,11,16,56,18,3.55,5.0,fr,44331,97,1855683,1,1,Active Shallow Crust,240.0114,57.9984,0.0,08/11/4875 +3.54273,45.0744,5728,8,24,15,58,20,3.65,5.0,fr,44332,114,1855692,1,1,Active Shallow Crust,0.0,89.99048,0.0,08/24/5728 +3.54273,45.0744,4844,11,18,2,56,57,3.65,27.5,fr,44333,96,1855694,1,1,Active Shallow Crust,0.0,89.99048,0.0,11/18/4844 +3.54273,45.0744,6057,11,4,20,12,46,3.75,5.0,fr,44334,121,1855704,1,2,Active Shallow Crust,0.0,89.98869,0.0,11/04/6057 +3.54273,45.0744,8922,6,4,2,22,7,3.75,5.0,fr,44335,178,1855704,1,2,Active Shallow Crust,0.0,89.98869,0.0,06/04/8922 +3.54273,45.0744,9031,6,13,5,17,6,3.85,15.0,fr,44336,180,1855717,1,1,Active Shallow Crust,0.0,89.98991,0.0,06/13/9031 +3.54273,45.0744,3970,6,7,23,31,36,3.85,5.0,fr,44337,79,1855725,1,1,Active Shallow Crust,128.8958,89.9937,0.0,06/07/3970 +3.54273,45.0744,7270,10,30,6,24,36,3.95,5.0,fr,44338,145,1855728,1,1,Active Shallow Crust,0.0,89.99101,0.0,10/30/7270 +3.54273,45.0744,7387,6,23,6,30,1,4.05,15.0,fr,44339,147,1855741,1,1,Active Shallow Crust,0.0,89.98999,0.0,06/23/7387 +3.54273,45.0744,6670,11,19,12,11,26,4.25,5.0,fr,44340,133,1855764,1,1,Active Shallow Crust,0.0,89.99046,0.0,11/19/6670 +3.54273,45.0744,2167,12,4,2,4,48,4.75,5.0,fr,44341,43,1855833,1,1,Active Shallow Crust,128.8892,89.98785,0.0,12/04/2167 +3.54273,45.0744,8820,9,1,15,53,25,4.85,15.0,fr,44342,176,1855837,1,1,Active Shallow Crust,0.0,89.98964,0.0,09/01/8820 +4.4878,42.02333,9971,10,8,10,12,56,3.85,5.0,fr,44343,199,1856196,1,1,Active Shallow Crust,0.0,89.9894,0.0,10/08/9971 +4.4878,42.02333,6097,1,12,19,59,21,3.95,15.0,fr,44344,121,1856212,1,1,Active Shallow Crust,240.0194,58.0045,0.0,01/12/6097 +4.4878,42.02333,9527,10,12,7,24,36,4.35,5.0,fr,44345,190,1856256,1,1,Active Shallow Crust,0.0,89.99105,0.0,10/12/9527 +4.4878,42.02333,3850,6,20,18,38,11,5.05,27.5,fr,44346,76,1856342,1,1,Active Shallow Crust,0.0,89.98934,0.0,06/20/3850 +6.72383,43.25046,8485,8,11,13,8,49,3.55,15.0,fr,44347,169,1857121,1,2,Active Shallow Crust,0.0,89.99265,0.0,08/11/8485 +6.72383,43.25046,2561,1,21,9,50,48,3.55,15.0,fr,44348,51,1857121,1,2,Active Shallow Crust,0.0,89.99265,0.0,01/21/2561 +6.72383,43.25046,8644,11,21,0,59,51,3.55,15.0,fr,44349,172,1857124,1,1,Active Shallow Crust,240.0119,57.9979,0.0,11/21/8644 +6.72383,43.25046,9125,11,17,18,40,47,3.65,27.5,fr,44350,182,1857134,1,1,Active Shallow Crust,0.0,89.98691,0.0,11/17/9125 +6.72383,43.25046,5406,6,30,1,38,26,3.75,5.0,fr,44351,108,1857144,1,1,Active Shallow Crust,0.0,89.98833,0.0,06/30/5406 +6.72383,43.25046,5581,9,17,18,37,42,3.85,15.0,fr,44352,111,1857160,1,1,Active Shallow Crust,240.0103,57.99787,0.0,09/17/5581 +6.72383,43.25046,32,6,23,21,54,49,4.45,15.0,fr,44353,0,1857229,1,1,Active Shallow Crust,0.0,89.98958,0.0,06/23/0032 +6.72383,43.25046,4382,2,12,6,3,44,5.95,27.5,fr,44354,87,1857419,1,1,Active Shallow Crust,128.8685,89.99014,0.0,02/12/4382 +1.21969,43.55255,2629,1,31,9,25,46,3.65,5.0,fr,44355,52,1857612,1,1,Active Shallow Crust,0.0,89.99023,0.0,01/31/2629 +1.21969,43.55255,7559,4,28,5,15,40,3.85,5.0,fr,44356,151,1857639,1,1,Active Shallow Crust,240.0104,57.99781,0.0,04/28/7559 +-3.83715,50.15592,4869,6,12,14,26,53,4.15,5.0,fr,44357,97,1858152,1,1,Active Shallow Crust,0.0,89.99029,0.0,06/12/4869 +-1.31989,42.20684,426,10,17,20,39,1,3.55,5.0,fr,44358,8,1859040,1,1,Active Shallow Crust,0.0,89.99066,0.0,10/17/0426 +-1.31989,42.20684,8776,10,29,16,55,47,3.75,5.0,fr,44359,175,1859070,1,1,Active Shallow Crust,0.0,89.98949,-90.0,10/29/8776 +-1.31989,42.20684,6414,9,9,0,3,41,4.05,5.0,fr,44360,128,1859100,1,1,Active Shallow Crust,0.0,89.9895,0.0,09/09/6414 +-1.31989,42.20684,2297,5,22,22,28,38,4.25,5.0,fr,44361,45,1859124,1,1,Active Shallow Crust,0.0,89.98999,0.0,05/22/2297 +-1.31989,42.20684,9024,7,13,6,7,10,4.25,5.0,fr,44362,180,1859127,1,1,Active Shallow Crust,240.0067,57.99388,0.0,07/13/9024 +-1.31989,42.20684,9667,6,17,8,17,30,4.95,15.0,fr,44363,193,1859215,1,1,Active Shallow Crust,0.0,89.98982,-90.0,06/17/9667 +3.00844,53.08135,93,6,29,8,32,57,3.55,15.0,fr,44364,1,1859521,1,1,Active Shallow Crust,0.0,89.99091,0.0,06/29/0093 +3.00844,53.08135,8079,9,1,18,42,33,3.65,27.5,fr,44365,161,1859534,1,1,Active Shallow Crust,0.0,89.9892,0.0,09/01/8079 +3.00844,53.08135,8228,5,21,20,30,8,4.45,5.0,fr,44366,164,1859628,1,1,Active Shallow Crust,0.0,89.99033,0.0,05/21/8228 +3.00844,53.08135,3886,2,27,16,56,39,4.55,5.0,fr,44367,77,1859643,1,1,Active Shallow Crust,240.0115,57.99766,0.0,02/27/3886 +4.31935,47.38848,1527,8,3,6,39,56,3.75,5.0,fr,44368,30,1860027,1,3,Active Shallow Crust,240.0078,58.01733,0.0,08/03/1527 +4.31935,47.38848,6441,11,8,13,23,31,3.75,5.0,fr,44369,128,1860027,1,3,Active Shallow Crust,240.0078,58.01733,0.0,11/08/6441 +4.31935,47.38848,604,3,8,6,38,48,3.75,5.0,fr,44370,12,1860027,1,3,Active Shallow Crust,240.0078,58.01733,0.0,03/08/0604 +4.31935,47.38848,837,9,26,16,51,40,4.05,27.5,fr,44371,16,1860062,1,1,Active Shallow Crust,0.0,89.98848,0.0,09/26/0837 +4.31935,47.38848,4462,5,8,10,54,24,4.05,5.0,fr,44372,89,1860063,1,1,Active Shallow Crust,240.0062,58.00607,0.0,05/08/4462 +2.07127,45.49927,6044,1,6,20,37,44,3.55,5.0,fr,44373,120,1860480,1,1,Active Shallow Crust,0.0,89.9894,0.0,01/06/6044 +2.07127,45.49927,3555,4,15,19,35,17,3.65,5.0,fr,44374,71,1860492,1,1,Active Shallow Crust,0.0,89.99055,0.0,04/15/3555 +2.07127,45.49927,3397,9,21,3,3,33,3.65,15.0,fr,44375,67,1860493,1,1,Active Shallow Crust,0.0,89.99055,0.0,09/21/3397 +2.07127,45.49927,1229,1,5,5,58,28,3.65,27.5,fr,44376,24,1860497,1,1,Active Shallow Crust,240.0012,58.0126,0.0,01/05/1229 +2.07127,45.49927,7014,8,6,5,31,18,3.75,15.0,fr,44377,140,1860505,1,1,Active Shallow Crust,0.0,89.98877,0.0,08/06/7014 +2.07127,45.49927,2204,8,22,8,52,4,3.85,5.0,fr,44378,44,1860516,1,1,Active Shallow Crust,0.0,89.98999,0.0,08/22/2204 +2.07127,45.49927,6543,9,29,11,31,9,3.95,27.5,fr,44379,130,1860530,1,1,Active Shallow Crust,0.0,89.99108,0.0,09/29/6543 +2.07127,45.49927,3772,9,26,2,52,24,4.15,5.0,fr,44380,75,1860558,1,1,Active Shallow Crust,0.0,89.98925,-90.0,09/26/3772 +2.07127,45.49927,3276,6,25,8,57,37,4.25,15.0,fr,44381,65,1860565,1,1,Active Shallow Crust,0.0,89.99052,0.0,06/25/3276 +2.07127,45.49927,5123,5,23,12,24,46,4.35,15.0,fr,44382,102,1860577,1,1,Active Shallow Crust,0.0,89.99015,0.0,05/23/5123 +-3.37755,42.65359,7079,12,6,2,41,49,3.95,15.0,fr,44383,141,1861009,1,1,Active Shallow Crust,0.0,89.99064,0.0,12/06/7079 +-3.37755,42.65359,2469,12,27,9,47,10,4.15,5.0,fr,44384,49,1861032,1,1,Active Shallow Crust,0.0,89.99071,0.0,12/27/2469 +7.48401,44.80213,7416,7,10,21,52,12,3.55,5.0,fr,44385,148,1861440,1,4,Active Shallow Crust,0.0,89.99284,0.0,07/10/7416 +7.48401,44.80213,6668,9,23,9,19,40,3.55,5.0,fr,44386,133,1861440,1,4,Active Shallow Crust,0.0,89.99284,0.0,09/23/6668 +7.48401,44.80213,594,5,19,22,23,52,3.55,5.0,fr,44387,11,1861440,1,4,Active Shallow Crust,0.0,89.99284,0.0,05/19/0594 +7.48401,44.80213,3334,12,28,5,41,23,3.55,5.0,fr,44388,66,1861440,1,4,Active Shallow Crust,0.0,89.99284,0.0,12/28/3334 +7.48401,44.80213,474,3,2,23,46,1,3.55,15.0,fr,44389,9,1861444,1,1,Active Shallow Crust,240.0113,57.9989,0.0,03/02/0474 +7.48401,44.80213,5228,9,26,5,56,56,3.55,5.0,fr,44390,104,1861446,1,1,Active Shallow Crust,0.0,89.99276,-90.0,09/26/5228 +7.48401,44.80213,415,10,7,15,43,48,3.55,27.5,fr,44391,8,1861448,1,1,Active Shallow Crust,0.0,89.99276,-90.0,10/07/0415 +7.48401,44.80213,3914,1,19,14,20,10,3.55,27.5,fr,44392,78,1861451,1,1,Active Shallow Crust,128.8956,89.99642,0.0,01/19/3914 +7.48401,44.80213,897,1,13,14,15,29,3.65,5.0,fr,44393,17,1861452,1,6,Active Shallow Crust,0.0,89.98724,0.0,01/13/0897 +7.48401,44.80213,3590,10,4,2,28,1,3.65,5.0,fr,44394,71,1861452,1,6,Active Shallow Crust,0.0,89.98724,0.0,10/04/3590 +7.48401,44.80213,1847,11,11,1,10,45,3.65,5.0,fr,44395,36,1861452,1,6,Active Shallow Crust,0.0,89.98724,0.0,11/11/1847 +7.48401,44.80213,2601,12,18,14,53,38,3.65,5.0,fr,44396,52,1861452,1,6,Active Shallow Crust,0.0,89.98724,0.0,12/18/2601 +7.48401,44.80213,5557,4,21,18,8,53,3.65,5.0,fr,44397,111,1861452,1,6,Active Shallow Crust,0.0,89.98724,0.0,04/21/5557 +7.48401,44.80213,1988,2,28,1,16,9,3.65,5.0,fr,44398,39,1861452,1,6,Active Shallow Crust,0.0,89.98724,0.0,02/28/1988 +7.48401,44.80213,7222,7,21,19,37,19,3.65,15.0,fr,44399,144,1861453,1,3,Active Shallow Crust,0.0,89.98724,0.0,07/21/7222 +7.48401,44.80213,5527,2,11,20,7,6,3.65,15.0,fr,44400,110,1861453,1,3,Active Shallow Crust,0.0,89.98724,0.0,02/11/5527 +7.48401,44.80213,6854,7,13,2,49,33,3.65,15.0,fr,44401,137,1861453,1,3,Active Shallow Crust,0.0,89.98724,0.0,07/13/6854 +7.48401,44.80213,5756,8,10,0,0,6,3.65,5.0,fr,44402,115,1861455,1,1,Active Shallow Crust,240.0012,58.01322,0.0,08/10/5756 +7.48401,44.80213,4988,12,26,16,43,5,3.65,15.0,fr,44403,99,1861456,1,1,Active Shallow Crust,240.0012,58.01322,0.0,12/26/4988 +7.48401,44.80213,3588,11,17,1,3,30,3.75,5.0,fr,44404,71,1861464,1,1,Active Shallow Crust,0.0,89.98863,0.0,11/17/3588 +7.48401,44.80213,6347,8,31,7,47,33,3.75,15.0,fr,44405,126,1861465,1,1,Active Shallow Crust,0.0,89.98863,0.0,08/31/6347 +7.48401,44.80213,6700,3,4,22,18,20,3.75,27.5,fr,44406,133,1861466,1,1,Active Shallow Crust,0.0,89.98863,0.0,03/04/6700 +7.48401,44.80213,6444,9,3,15,11,43,3.75,5.0,fr,44407,128,1861467,1,2,Active Shallow Crust,240.0071,58.01777,0.0,09/03/6444 +7.48401,44.80213,6187,10,7,22,33,34,3.75,5.0,fr,44408,123,1861467,1,2,Active Shallow Crust,240.0071,58.01777,0.0,10/07/6187 +7.48401,44.80213,9120,10,16,1,7,24,3.75,5.0,fr,44409,182,1861470,1,1,Active Shallow Crust,0.0,89.9885,-90.0,10/16/9120 +7.48401,44.80213,40,10,21,18,47,49,3.85,5.0,fr,44410,0,1861479,1,2,Active Shallow Crust,240.0114,57.99776,0.0,10/21/0040 +7.48401,44.80213,1260,6,6,0,21,14,3.85,5.0,fr,44411,25,1861479,1,2,Active Shallow Crust,240.0114,57.99776,0.0,06/06/1260 +7.48401,44.80213,4360,4,18,6,23,4,3.85,5.0,fr,44412,87,1861482,1,1,Active Shallow Crust,0.0,89.98975,-90.0,04/18/4360 +7.48401,44.80213,5,8,1,21,57,6,3.95,5.0,fr,44413,0,1861488,1,1,Active Shallow Crust,0.0,89.99097,0.0,08/01/0005 +7.48401,44.80213,8186,4,19,0,8,23,3.95,15.0,fr,44414,163,1861489,1,2,Active Shallow Crust,0.0,89.99097,0.0,04/19/8186 +7.48401,44.80213,2805,4,10,4,51,23,3.95,15.0,fr,44415,56,1861489,1,2,Active Shallow Crust,0.0,89.99097,0.0,04/10/2805 +7.48401,44.80213,8856,11,3,17,25,52,3.95,15.0,fr,44416,177,1861495,1,2,Active Shallow Crust,0.0,89.99087,-90.0,11/03/8856 +7.48401,44.80213,5686,8,26,5,11,42,3.95,15.0,fr,44417,113,1861495,1,2,Active Shallow Crust,0.0,89.99087,-90.0,08/26/5686 +7.48401,44.80213,2903,4,23,2,21,18,4.05,5.0,fr,44418,58,1861500,1,3,Active Shallow Crust,0.0,89.99195,0.0,04/23/2903 +7.48401,44.80213,3472,1,11,17,13,25,4.05,5.0,fr,44419,69,1861500,1,3,Active Shallow Crust,0.0,89.99195,0.0,01/11/3472 +7.48401,44.80213,8750,6,7,2,7,13,4.05,5.0,fr,44420,174,1861500,1,3,Active Shallow Crust,0.0,89.99195,0.0,06/07/8750 +7.48401,44.80213,6314,12,26,15,27,59,4.05,5.0,fr,44421,126,1861503,1,3,Active Shallow Crust,240.0055,58.00566,0.0,12/26/6314 +7.48401,44.80213,7867,8,31,14,8,32,4.05,5.0,fr,44422,157,1861503,1,3,Active Shallow Crust,240.0055,58.00566,0.0,08/31/7867 +7.48401,44.80213,6047,3,30,1,38,26,4.05,5.0,fr,44423,120,1861503,1,3,Active Shallow Crust,240.0055,58.00566,0.0,03/30/6047 +7.48401,44.80213,8975,2,6,2,38,59,4.05,5.0,fr,44424,179,1861506,1,2,Active Shallow Crust,0.0,89.99186,-90.0,02/06/8975 +7.48401,44.80213,8269,6,14,4,0,38,4.05,5.0,fr,44425,165,1861506,1,2,Active Shallow Crust,0.0,89.99186,-90.0,06/14/8269 +7.48401,44.80213,5968,1,30,7,33,37,4.05,5.0,fr,44426,119,1861509,1,1,Active Shallow Crust,128.8903,89.99397,0.0,01/30/5968 +7.48401,44.80213,7316,11,29,8,25,46,4.15,5.0,fr,44427,146,1861512,1,2,Active Shallow Crust,0.0,89.98924,0.0,11/29/7316 +7.48401,44.80213,7692,5,20,10,4,32,4.15,5.0,fr,44428,153,1861512,1,2,Active Shallow Crust,0.0,89.98924,0.0,05/20/7692 +7.48401,44.80213,5563,6,8,13,22,6,4.25,5.0,fr,44429,111,1861524,1,1,Active Shallow Crust,0.0,89.99041,0.0,06/08/5563 +7.48401,44.80213,7553,8,26,4,40,18,4.25,15.0,fr,44430,151,1861525,1,1,Active Shallow Crust,0.0,89.99041,0.0,08/26/7553 +7.48401,44.80213,8084,7,11,21,9,2,4.25,27.5,fr,44431,161,1861526,1,2,Active Shallow Crust,0.0,89.99041,0.0,07/11/8084 +7.48401,44.80213,3456,6,2,17,42,44,4.25,27.5,fr,44432,69,1861526,1,2,Active Shallow Crust,0.0,89.99041,0.0,06/02/3456 +7.48401,44.80213,5346,2,7,17,6,12,4.25,5.0,fr,44433,106,1861527,1,1,Active Shallow Crust,240.0076,57.99366,0.0,02/07/5346 +7.48401,44.80213,4706,12,17,16,56,25,4.35,5.0,fr,44434,94,1861536,1,2,Active Shallow Crust,0.0,89.9886,0.0,12/17/4706 +7.48401,44.80213,5865,8,24,8,32,39,4.35,5.0,fr,44435,117,1861536,1,2,Active Shallow Crust,0.0,89.9886,0.0,08/24/5865 +7.48401,44.80213,7386,8,30,23,9,10,4.45,5.0,fr,44436,147,1861554,1,1,Active Shallow Crust,0.0,89.98972,-90.0,08/30/7386 +7.48401,44.80213,1406,11,5,14,9,43,4.85,5.0,fr,44437,28,1861596,1,1,Active Shallow Crust,0.0,89.99039,0.0,11/05/1406 +7.48401,44.80213,1146,5,6,17,59,45,4.85,15.0,fr,44438,22,1861603,1,1,Active Shallow Crust,0.0,89.99028,-90.0,05/06/1146 +7.48401,44.80213,2421,3,22,15,5,6,5.35,15.0,fr,44439,48,1861660,1,1,Active Shallow Crust,240.0239,57.9975,0.0,03/22/2421 +7.48401,44.80213,1354,12,17,17,31,45,5.45,5.0,fr,44440,27,1861668,1,1,Active Shallow Crust,0.0,89.99036,0.0,12/17/1354 +7.484036,44.80213,1844,11,23,0,55,40,7.05,16.94221,fr,44441,36,1861860,1,1,Active Shallow Crust,0.0,89.98998,0.0,11/23/1844 +-5.69709,47.65815,8102,8,15,10,1,37,3.95,5.0,fr,44442,162,1861971,1,1,Active Shallow Crust,240.0204,58.00467,0.0,08/15/8102 +-1.92986,46.53955,334,5,3,6,45,5,3.65,5.0,fr,44443,6,1862895,1,1,Active Shallow Crust,240.0009,58.01308,0.0,05/03/0334 +-1.92986,46.53955,6723,3,18,9,13,10,3.75,15.0,fr,44444,134,1862905,1,1,Active Shallow Crust,0.0,89.99036,0.0,03/18/6723 +-1.92986,46.53955,2584,9,15,8,8,15,3.75,27.5,fr,44445,51,1862906,1,2,Active Shallow Crust,0.0,89.99036,0.0,09/15/2584 +-1.92986,46.53955,9567,9,23,20,17,13,3.75,27.5,fr,44446,191,1862906,1,2,Active Shallow Crust,0.0,89.99036,0.0,09/23/9567 +-1.92986,46.53955,9202,12,26,6,10,9,3.85,5.0,fr,44447,184,1862925,1,1,Active Shallow Crust,128.8953,89.99387,0.0,12/26/9202 +-1.92986,46.53955,7286,7,25,16,16,6,3.95,15.0,fr,44448,145,1862929,1,1,Active Shallow Crust,0.0,89.99015,0.0,07/25/7286 +-1.92986,46.53955,2541,8,4,2,26,4,4.05,5.0,fr,44449,50,1862943,1,1,Active Shallow Crust,240.0058,58.00585,0.0,08/04/2541 +-1.92986,46.53955,3688,5,23,2,53,2,4.35,27.5,fr,44450,73,1862978,1,1,Active Shallow Crust,0.0,89.99033,0.0,05/23/3688 +-1.92986,46.53955,4476,5,21,9,4,39,4.55,5.0,fr,44451,89,1863003,1,1,Active Shallow Crust,240.0093,57.99725,0.0,05/21/4476 +-1.92986,46.53955,7355,5,10,19,35,13,4.65,5.0,fr,44452,147,1863015,1,1,Active Shallow Crust,240.0108,57.99416,0.0,05/10/7355 +-1.66614,49.78929,7765,2,26,0,33,15,3.55,5.0,fr,44453,155,1863840,1,1,Active Shallow Crust,0.0,89.99023,0.0,02/26/7765 +-1.66614,49.78929,6890,3,11,14,53,31,3.55,15.0,fr,44454,137,1863844,1,1,Active Shallow Crust,240.0126,57.99824,0.0,03/11/6890 +-1.66614,49.78929,6945,8,23,20,26,4,3.85,5.0,fr,44455,138,1863882,1,1,Active Shallow Crust,0.0,89.98951,-90.0,08/23/6945 +-1.66614,49.78929,1602,6,1,8,17,35,4.25,5.0,fr,44456,32,1863927,1,1,Active Shallow Crust,240.0085,57.99414,0.0,06/01/1602 +8.02258,49.87719,7139,9,27,8,52,3,3.55,5.0,fr,44457,142,1864320,1,2,Active Shallow Crust,0.0,89.987,0.0,09/27/7139 +8.02258,49.87719,9604,7,29,21,40,38,3.55,5.0,fr,44458,192,1864320,1,2,Active Shallow Crust,0.0,89.987,0.0,07/29/9604 +8.02258,49.87719,5541,6,10,6,0,36,3.65,5.0,fr,44459,110,1864338,1,1,Active Shallow Crust,0.0,89.98828,-90.0,06/10/5541 +8.02258,49.87719,8476,11,25,9,15,22,3.75,5.0,fr,44460,169,1864344,1,1,Active Shallow Crust,0.0,89.98968,0.0,11/25/8476 +8.02258,49.87719,1112,4,22,12,44,24,3.85,5.0,fr,44461,22,1864356,1,1,Active Shallow Crust,0.0,89.9908,0.0,04/22/1112 +8.02258,49.87719,4068,7,15,20,59,21,3.85,15.0,fr,44462,81,1864357,1,3,Active Shallow Crust,0.0,89.9908,0.0,07/15/4068 +8.02258,49.87719,4982,4,8,7,38,18,3.85,15.0,fr,44463,99,1864357,1,3,Active Shallow Crust,0.0,89.9908,0.0,04/08/4982 +8.02258,49.87719,9784,7,9,16,49,43,3.85,15.0,fr,44464,195,1864357,1,3,Active Shallow Crust,0.0,89.9908,0.0,07/09/9784 +8.02258,49.87719,9750,5,1,0,18,39,3.85,27.5,fr,44465,194,1864361,1,1,Active Shallow Crust,240.0113,57.99747,0.0,05/01/9750 +8.02258,49.87719,2455,2,21,13,43,38,4.05,5.0,fr,44466,49,1864380,1,1,Active Shallow Crust,0.0,89.99269,0.0,02/21/2455 +8.02258,49.87719,1543,7,12,14,32,9,4.05,15.0,fr,44467,30,1864381,1,1,Active Shallow Crust,0.0,89.99269,0.0,07/12/1543 +8.02258,49.87719,9064,8,16,13,29,54,4.25,5.0,fr,44468,181,1864404,1,1,Active Shallow Crust,0.0,89.98839,0.0,08/16/9064 +8.02258,49.87719,7551,10,7,7,26,32,4.25,5.0,fr,44469,151,1864413,1,1,Active Shallow Crust,128.8924,89.98107,0.0,10/07/7551 +8.02258,49.87719,5753,11,12,12,31,52,4.45,5.0,fr,44470,115,1864431,1,1,Active Shallow Crust,240.0058,57.99525,0.0,11/12/5753 +8.02258,49.87719,5408,2,12,4,28,28,4.55,5.0,fr,44471,108,1864440,1,1,Active Shallow Crust,0.0,89.99178,0.0,02/12/5408 +8.02258,49.87719,4649,6,11,3,7,46,4.55,5.0,fr,44472,92,1864443,1,1,Active Shallow Crust,240.0102,57.99718,0.0,06/11/4649 +8.02258,49.87719,8427,4,16,15,43,33,4.65,15.0,fr,44473,168,1864453,1,1,Active Shallow Crust,0.0,89.98901,0.0,04/16/8427 +1.76328,43.8737,9978,5,8,9,41,22,3.65,27.5,fr,44474,199,1864814,1,1,Active Shallow Crust,0.0,89.99028,0.0,05/08/9978 +1.76328,43.8737,4914,1,19,11,34,55,3.65,5.0,fr,44475,98,1864815,1,1,Active Shallow Crust,240.0011,58.01281,0.0,01/19/4914 +1.76328,43.8737,8958,6,8,10,34,40,3.75,5.0,fr,44476,179,1864827,1,1,Active Shallow Crust,240.0081,58.01755,0.0,06/08/8958 +1.76328,43.8737,7743,12,5,22,56,39,4.55,5.0,fr,44477,154,1864920,1,1,Active Shallow Crust,0.0,89.99023,0.0,12/05/7743 +0.68007,43.23409,7661,12,17,10,13,31,3.55,15.0,fr,44478,153,1865281,1,2,Active Shallow Crust,0.0,89.9899,0.0,12/17/7661 +0.68007,43.23409,9904,11,16,13,36,4,3.55,15.0,fr,44479,198,1865281,1,2,Active Shallow Crust,0.0,89.9899,0.0,11/16/9904 +0.68007,43.23409,5715,8,4,2,37,51,3.55,5.0,fr,44480,114,1865283,1,1,Active Shallow Crust,240.0119,57.99812,0.0,08/04/5715 +0.68007,43.23409,3432,2,18,6,39,38,3.55,15.0,fr,44481,68,1865290,1,1,Active Shallow Crust,128.8963,89.99403,0.0,02/18/3432 +0.68007,43.23409,8495,1,12,13,39,35,3.65,5.0,fr,44482,169,1865292,1,2,Active Shallow Crust,0.0,89.99018,0.0,01/12/8495 +0.68007,43.23409,2288,9,21,13,37,57,3.65,5.0,fr,44483,45,1865292,1,2,Active Shallow Crust,0.0,89.99018,0.0,09/21/2288 +0.68007,43.23409,7266,2,4,0,54,25,3.65,15.0,fr,44484,145,1865293,1,1,Active Shallow Crust,0.0,89.99018,0.0,02/04/7266 +0.68007,43.23409,1078,8,18,17,31,9,3.75,5.0,fr,44485,21,1865304,1,2,Active Shallow Crust,0.0,89.98978,0.0,08/18/1078 +0.68007,43.23409,8177,5,7,20,48,21,3.75,5.0,fr,44486,163,1865304,1,2,Active Shallow Crust,0.0,89.98978,0.0,05/07/8177 +0.68007,43.23409,2279,2,2,1,9,25,3.85,5.0,fr,44487,45,1865316,1,1,Active Shallow Crust,0.0,89.99025,0.0,02/02/2279 +0.68007,43.23409,9450,5,2,11,51,55,4.05,5.0,fr,44488,188,1865340,1,1,Active Shallow Crust,0.0,89.99019,0.0,05/02/9450 +0.68007,43.23409,8537,9,13,13,28,4,4.35,5.0,fr,44489,170,1865376,1,1,Active Shallow Crust,0.0,89.99013,0.0,09/13/8537 +0.68007,43.23409,9657,6,4,17,30,16,4.45,5.0,fr,44490,193,1865397,1,1,Active Shallow Crust,128.893,89.99364,0.0,06/04/9657 +0.68007,43.23409,4687,3,5,21,53,25,4.55,5.0,fr,44491,93,1865400,1,1,Active Shallow Crust,0.0,89.99013,0.0,03/05/4687 +-2.83971,42.163,1998,12,30,12,43,13,3.55,5.0,fr,44492,39,1865763,1,1,Active Shallow Crust,240.012,57.99822,0.0,12/30/1998 +-2.83971,42.163,6654,8,26,12,7,45,3.65,5.0,fr,44493,133,1865772,1,1,Active Shallow Crust,0.0,89.99001,0.0,08/26/6654 +-2.83971,42.163,4967,1,12,5,22,55,3.85,5.0,fr,44494,99,1865796,1,1,Active Shallow Crust,0.0,89.98942,0.0,01/12/4967 +-2.83971,42.163,6286,9,11,21,57,42,3.95,5.0,fr,44495,125,1865817,1,1,Active Shallow Crust,128.9008,89.9941,0.0,09/11/6286 +-2.83971,42.163,2502,9,29,1,58,54,4.05,5.0,fr,44496,50,1865823,1,1,Active Shallow Crust,240.0052,58.00595,0.0,09/29/2502 +-2.83971,42.163,3527,4,3,0,5,9,4.15,5.0,fr,44497,70,1865832,1,1,Active Shallow Crust,0.0,89.99063,0.0,04/03/3527 +-2.83971,42.163,7394,8,30,11,46,9,4.35,5.0,fr,44498,147,1865856,1,1,Active Shallow Crust,0.0,89.98959,0.0,08/30/7394 +-4.30972,47.94662,5248,11,11,21,20,56,3.55,5.0,fr,44499,104,1866240,1,1,Active Shallow Crust,0.0,89.99325,0.0,11/11/5248 +-4.30972,47.94662,2785,11,9,4,4,44,3.55,5.0,fr,44500,55,1866246,1,1,Active Shallow Crust,0.0,89.99316,-90.0,11/09/2785 +-4.30972,47.94662,2707,3,26,10,36,7,3.65,15.0,fr,44501,54,1866253,1,1,Active Shallow Crust,0.0,89.98796,0.0,03/26/2707 +-4.30972,47.94662,3556,6,22,7,4,25,3.65,5.0,fr,44502,71,1866261,1,1,Active Shallow Crust,128.9002,89.96355,0.0,06/22/3556 +-4.30972,47.94662,8785,10,27,20,5,39,3.75,5.0,fr,44503,175,1866264,1,1,Active Shallow Crust,0.0,89.98927,0.0,10/27/8785 +-4.30972,47.94662,5219,10,8,23,4,44,4.05,5.0,fr,44504,104,1866303,1,1,Active Shallow Crust,240.0054,58.00609,0.0,10/08/5219 +-4.30972,47.94662,2655,8,21,1,52,41,4.25,5.0,fr,44505,53,1866324,1,1,Active Shallow Crust,0.0,89.99095,0.0,08/21/2655 +-4.30972,47.94662,3919,11,8,5,0,6,4.25,15.0,fr,44506,78,1866325,1,1,Active Shallow Crust,0.0,89.99095,0.0,11/08/3919 +-4.30972,47.94662,9192,9,10,21,50,45,4.65,27.5,fr,44507,183,1866377,1,1,Active Shallow Crust,240.0111,57.9944,0.0,09/10/9192 +-4.40116,48.6191,3311,8,6,5,48,34,3.55,5.0,fr,44508,66,1866720,1,3,Active Shallow Crust,0.0,89.98667,0.0,08/06/3311 +-4.40116,48.6191,5249,9,23,22,26,12,3.55,5.0,fr,44509,104,1866720,1,3,Active Shallow Crust,0.0,89.98667,0.0,09/23/5249 +-4.40116,48.6191,6970,4,18,14,11,5,3.55,5.0,fr,44510,139,1866720,1,3,Active Shallow Crust,0.0,89.98667,0.0,04/18/6970 +-4.40116,48.6191,5887,10,6,1,47,45,3.75,5.0,fr,44511,117,1866744,1,1,Active Shallow Crust,0.0,89.98941,0.0,10/06/5887 +-4.40116,48.6191,3724,1,21,4,2,50,3.75,5.0,fr,44512,74,1866750,1,1,Active Shallow Crust,0.0,89.98929,-90.0,01/21/3724 +-4.40116,48.6191,6116,7,12,6,48,27,4.05,5.0,fr,44513,122,1866780,1,1,Active Shallow Crust,0.0,89.98875,0.0,07/12/6116 +-4.40116,48.6191,4785,11,16,18,53,7,4.05,15.0,fr,44514,95,1866781,1,1,Active Shallow Crust,0.0,89.98875,0.0,11/16/4785 +-4.40116,48.6191,4046,12,24,4,5,1,4.25,15.0,fr,44515,80,1866805,1,1,Active Shallow Crust,0.0,89.99107,0.0,12/24/4046 +-4.40116,48.6191,1292,10,21,21,53,52,4.35,15.0,fr,44516,25,1866817,1,1,Active Shallow Crust,0.0,89.98939,0.0,10/21/1292 +-4.40116,48.6191,4373,4,16,14,54,25,4.55,5.0,fr,44517,87,1866843,1,1,Active Shallow Crust,240.0098,57.99772,0.0,04/16/4373 +-4.40116,48.6191,8040,1,23,15,57,9,4.75,5.0,fr,44518,160,1866864,1,1,Active Shallow Crust,0.0,89.98995,0.0,01/23/8040 +-4.40116,48.6191,4704,3,4,2,0,32,4.85,27.5,fr,44519,94,1866881,1,1,Active Shallow Crust,240.0181,58.00258,0.0,03/04/4704 +-4.40116,48.6191,2696,7,18,14,9,17,4.95,5.0,fr,44520,53,1866888,1,1,Active Shallow Crust,0.0,89.98936,0.0,07/18/2696 +-4.40116,48.6191,9986,11,29,7,9,41,5.95,5.0,fr,44521,199,1867017,1,1,Active Shallow Crust,128.862,89.9901,0.0,11/29/9986 +8.7185,49.07241,5605,3,27,22,7,4,3.55,5.0,fr,44522,112,1867680,1,1,Active Shallow Crust,0.0,89.98679,0.0,03/27/5605 +8.7185,49.07241,8578,1,13,15,11,25,3.55,27.5,fr,44523,171,1867685,1,1,Active Shallow Crust,240.014,57.99826,0.0,01/13/8578 +8.7185,49.07241,4752,7,3,14,51,34,3.55,5.0,fr,44524,95,1867686,1,1,Active Shallow Crust,0.0,89.98663,-90.0,07/03/4752 +8.7185,49.07241,8167,8,27,10,24,4,3.65,27.5,fr,44525,163,1867694,1,1,Active Shallow Crust,0.0,89.98823,0.0,08/27/8167 +8.7185,49.07241,8147,5,26,16,49,22,3.65,5.0,fr,44526,162,1867695,1,1,Active Shallow Crust,240.0012,58.01405,0.0,05/26/8147 +8.7185,49.07241,9543,6,12,4,33,51,3.75,15.0,fr,44527,190,1867705,1,1,Active Shallow Crust,0.0,89.9895,0.0,06/12/9543 +8.7185,49.07241,601,3,20,15,23,1,4.05,5.0,fr,44528,12,1867749,1,1,Active Shallow Crust,128.8921,89.99257,0.0,03/20/0601 +8.7185,49.07241,1681,5,19,18,0,11,4.55,5.0,fr,44529,33,1867800,1,2,Active Shallow Crust,0.0,89.99165,0.0,05/19/1681 +8.7185,49.07241,7062,3,23,8,3,41,4.55,5.0,fr,44530,141,1867800,1,2,Active Shallow Crust,0.0,89.99165,0.0,03/23/7062 +8.7185,49.07241,4687,2,28,19,12,32,6.55,15.0,fr,44531,93,1868041,1,1,Active Shallow Crust,0.0,89.98996,0.0,02/28/4687 +0.30241,46.58565,3427,7,5,11,22,41,3.55,5.0,fr,44532,68,1868160,1,2,Active Shallow Crust,0.0,89.99004,0.0,07/05/3427 +0.30241,46.58565,2068,10,19,10,43,46,3.55,5.0,fr,44533,41,1868160,1,2,Active Shallow Crust,0.0,89.99004,0.0,10/19/2068 +0.30241,46.58565,2594,11,19,1,10,47,3.55,15.0,fr,44534,51,1868161,1,2,Active Shallow Crust,0.0,89.99004,0.0,11/19/2594 +0.30241,46.58565,259,7,25,20,35,33,3.55,15.0,fr,44535,5,1868161,1,2,Active Shallow Crust,0.0,89.99004,0.0,07/25/0259 +0.30241,46.58565,9791,12,29,16,40,24,3.55,5.0,fr,44536,195,1868163,1,1,Active Shallow Crust,240.0123,57.99811,0.0,12/29/9791 +0.30241,46.58565,6000,8,12,0,18,36,3.65,15.0,fr,44537,119,1868173,1,1,Active Shallow Crust,0.0,89.98996,0.0,08/12/6000 +0.30241,46.58565,9392,12,28,6,4,0,3.65,15.0,fr,44538,187,1868182,1,1,Active Shallow Crust,128.9004,89.96352,0.0,12/28/9392 +0.30241,46.58565,3815,1,25,3,18,17,3.75,5.0,fr,44539,76,1868187,1,1,Active Shallow Crust,240.0083,58.01758,0.0,01/25/3815 +0.30241,46.58565,7845,2,5,21,2,48,3.85,15.0,fr,44540,156,1868197,1,1,Active Shallow Crust,0.0,89.98988,0.0,02/05/7845 +0.30241,46.58565,8425,2,2,3,46,13,3.95,5.0,fr,44541,168,1868208,1,1,Active Shallow Crust,0.0,89.98989,0.0,02/02/8425 +0.30241,46.58565,9322,12,26,14,53,13,3.95,5.0,fr,44542,186,1868217,1,1,Active Shallow Crust,128.9004,89.99371,0.0,12/26/9322 +0.30241,46.58565,9129,3,16,22,47,1,4.05,5.0,fr,44543,182,1868220,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/16/9129 +0.30241,46.58565,3372,7,31,3,5,52,4.15,5.0,fr,44544,67,1868232,1,1,Active Shallow Crust,0.0,89.99001,0.0,07/31/3372 +0.30241,46.58565,9832,7,21,19,49,48,4.35,5.0,fr,44545,196,1868262,1,1,Active Shallow Crust,0.0,89.99006,-90.0,07/21/9832 +0.30241,46.58565,9414,7,4,2,4,44,5.35,5.0,fr,44546,188,1868376,1,1,Active Shallow Crust,0.0,89.99002,0.0,07/04/9414 +9.04751,49.23177,621,1,22,18,54,53,3.55,5.0,fr,44547,12,1869120,1,2,Active Shallow Crust,0.0,89.98683,0.0,01/22/0621 +9.04751,49.23177,6825,2,15,20,48,4,3.55,5.0,fr,44548,136,1869120,1,2,Active Shallow Crust,0.0,89.98683,0.0,02/15/6825 +9.04751,49.23177,4064,8,10,19,50,16,3.65,5.0,fr,44549,81,1869132,1,1,Active Shallow Crust,0.0,89.98827,0.0,08/10/4064 +9.04751,49.23177,726,9,22,14,50,22,3.85,27.5,fr,44550,14,1869161,1,1,Active Shallow Crust,240.0126,57.99683,0.0,09/22/0726 +9.04751,49.23177,1759,10,6,11,58,18,3.95,5.0,fr,44551,35,1869171,1,2,Active Shallow Crust,240.0198,58.00468,0.0,10/06/1759 +9.04751,49.23177,3431,7,7,0,54,0,3.95,5.0,fr,44552,68,1869171,1,2,Active Shallow Crust,240.0198,58.00468,0.0,07/07/3431 +9.04751,49.23177,6641,1,2,4,36,16,4.25,27.5,fr,44553,132,1869206,1,1,Active Shallow Crust,0.0,89.98824,0.0,01/02/6641 +9.04751,49.23177,5746,12,4,14,29,20,4.45,15.0,fr,44554,114,1869229,1,1,Active Shallow Crust,0.0,89.99065,0.0,12/04/5746 +9.04751,49.23177,8099,4,15,5,45,0,4.45,27.5,fr,44555,161,1869236,1,1,Active Shallow Crust,0.0,89.99055,-90.0,04/15/8099 +1.10229,51.89203,4229,10,13,1,32,19,3.55,5.0,fr,44556,84,1870086,1,1,Active Shallow Crust,0.0,89.99055,-90.0,10/13/4229 +1.10229,51.89203,5550,8,9,0,37,40,3.55,15.0,fr,44557,110,1870090,1,1,Active Shallow Crust,128.8955,89.99377,0.0,08/09/5550 +1.10229,51.89203,7079,5,5,20,9,35,3.95,5.0,fr,44558,141,1870128,1,1,Active Shallow Crust,0.0,89.99018,0.0,05/05/7079 +2.32843,51.41487,1238,1,17,10,26,0,3.65,5.0,fr,44559,24,1870572,1,1,Active Shallow Crust,0.0,89.98879,0.0,01/17/1238 +2.32843,51.41487,9215,7,6,14,58,19,3.95,15.0,fr,44560,184,1870609,1,1,Active Shallow Crust,0.0,89.99008,0.0,07/06/9215 +2.32843,51.41487,9793,6,14,6,38,5,4.35,5.0,fr,44561,195,1870659,1,1,Active Shallow Crust,240.0096,57.99618,0.0,06/14/9793 +2.32843,51.41487,7966,9,5,11,5,9,4.55,5.0,fr,44562,159,1870680,1,1,Active Shallow Crust,0.0,89.99005,0.0,09/05/7966 +2.32843,51.41487,248,4,2,0,48,26,4.65,15.0,fr,44563,4,1870693,1,1,Active Shallow Crust,0.0,89.99025,0.0,04/02/0248 +2.32843,51.41487,5025,4,14,18,21,44,4.75,5.0,fr,44564,100,1870713,1,1,Active Shallow Crust,128.8871,89.98806,0.0,04/14/5025 +-0.74063,44.19361,5229,8,19,21,22,44,3.55,27.5,fr,44565,104,1871042,1,1,Active Shallow Crust,0.0,89.99006,0.0,08/19/5229 +-0.74063,44.19361,9648,4,19,5,14,4,3.65,5.0,fr,44566,192,1871052,1,1,Active Shallow Crust,0.0,89.99033,0.0,04/19/9648 +-0.74063,44.19361,9118,3,28,22,6,51,4.45,5.0,fr,44567,182,1871148,1,1,Active Shallow Crust,0.0,89.99006,0.0,03/28/9118 +-0.74063,44.19361,5690,7,23,1,3,51,4.65,5.0,fr,44568,113,1871175,1,1,Active Shallow Crust,240.0101,57.99409,0.0,07/23/5690 +-0.7406245,44.19361,6038,5,13,14,0,27,7.35,17.5,fr,44569,120,1871497,1,1,Active Shallow Crust,360.0,89.99,0.0,05/13/6038 +5.54732,41.89459,1815,9,21,13,44,18,3.75,15.0,fr,44570,36,1871548,1,1,Active Shallow Crust,240.0082,58.0178,0.0,09/21/1815 +3.72208,49.32381,4592,5,31,7,19,46,4.05,5.0,fr,44571,91,1872060,1,1,Active Shallow Crust,0.0,89.99076,0.0,05/31/4592 +3.72208,49.32381,4416,9,12,2,1,59,4.45,5.0,fr,44572,88,1872108,1,1,Active Shallow Crust,0.0,89.9895,0.0,09/12/4416 +0.26797,42.78643,6892,6,28,17,2,49,3.55,15.0,fr,44573,137,1872481,1,1,Active Shallow Crust,0.0,89.98982,0.0,06/28/6892 +0.26797,42.78643,6957,6,25,12,55,17,3.55,5.0,fr,44574,139,1872483,1,1,Active Shallow Crust,240.0118,57.99819,0.0,06/25/6957 +0.26797,42.78643,452,11,1,20,47,41,3.55,15.0,fr,44575,9,1872484,1,1,Active Shallow Crust,240.0118,57.99819,0.0,11/01/0452 +0.26797,42.78643,3279,6,3,8,36,0,3.55,5.0,fr,44576,65,1872486,1,1,Active Shallow Crust,0.0,89.99017,-90.0,06/03/3279 +0.26797,42.78643,8942,7,10,3,15,13,3.55,5.0,fr,44577,178,1872489,1,1,Active Shallow Crust,128.8966,89.99352,0.0,07/10/8942 +0.26797,42.78643,360,12,8,2,50,33,3.65,5.0,fr,44578,7,1872492,1,1,Active Shallow Crust,0.0,89.9901,0.0,12/08/0360 +0.26797,42.78643,2042,11,13,3,11,44,3.65,27.5,fr,44579,40,1872494,1,2,Active Shallow Crust,0.0,89.9901,0.0,11/13/2042 +0.26797,42.78643,5230,4,19,12,25,23,3.65,27.5,fr,44580,104,1872494,1,2,Active Shallow Crust,0.0,89.9901,0.0,04/19/5230 +0.26797,42.78643,9000,4,3,20,48,10,3.65,5.0,fr,44581,179,1872495,1,1,Active Shallow Crust,240.0007,58.01285,0.0,04/03/9000 +0.26797,42.78643,9668,9,24,22,34,33,3.65,5.0,fr,44582,193,1872498,1,1,Active Shallow Crust,0.0,89.98999,-90.0,09/24/9668 +0.26797,42.78643,3241,12,26,23,37,13,3.75,5.0,fr,44583,64,1872504,1,1,Active Shallow Crust,0.0,89.99008,0.0,12/26/3241 +0.26797,42.78643,9040,7,3,22,49,15,3.75,15.0,fr,44584,180,1872505,1,3,Active Shallow Crust,0.0,89.99008,0.0,07/03/9040 +0.26797,42.78643,6652,11,27,1,57,23,3.75,15.0,fr,44585,133,1872505,1,3,Active Shallow Crust,0.0,89.99008,0.0,11/27/6652 +0.26797,42.78643,1902,10,18,23,46,22,3.75,15.0,fr,44586,38,1872505,1,3,Active Shallow Crust,0.0,89.99008,0.0,10/18/1902 +0.26797,42.78643,6145,6,3,9,21,32,3.75,27.5,fr,44587,122,1872506,1,1,Active Shallow Crust,0.0,89.99008,0.0,06/03/6145 +0.26797,42.78643,6649,1,29,6,29,34,3.75,5.0,fr,44588,132,1872507,1,1,Active Shallow Crust,240.0079,58.01748,0.0,01/29/6649 +0.26797,42.78643,1531,7,12,4,29,22,3.75,5.0,fr,44589,30,1872510,1,1,Active Shallow Crust,0.0,89.98997,-90.0,07/12/1531 +0.26797,42.78643,6013,6,2,21,16,18,3.85,5.0,fr,44590,120,1872516,1,4,Active Shallow Crust,0.0,89.98985,0.0,06/02/6013 +0.26797,42.78643,484,12,30,19,5,7,3.85,5.0,fr,44591,9,1872516,1,4,Active Shallow Crust,0.0,89.98985,0.0,12/30/0484 +0.26797,42.78643,5025,4,8,2,29,0,3.85,5.0,fr,44592,100,1872516,1,4,Active Shallow Crust,0.0,89.98985,0.0,04/08/5025 +0.26797,42.78643,8513,8,31,5,49,12,3.85,5.0,fr,44593,170,1872516,1,4,Active Shallow Crust,0.0,89.98985,0.0,08/31/8513 +0.26797,42.78643,9589,7,28,3,11,11,3.85,15.0,fr,44594,191,1872517,1,1,Active Shallow Crust,0.0,89.98985,0.0,07/28/9589 +0.26797,42.78643,1862,8,21,3,49,58,3.95,5.0,fr,44595,37,1872528,1,1,Active Shallow Crust,0.0,89.99007,0.0,08/21/1862 +0.26797,42.78643,5122,9,14,11,18,12,3.95,15.0,fr,44596,102,1872532,1,1,Active Shallow Crust,240.0193,58.00487,0.0,09/14/5122 +0.26797,42.78643,4674,1,19,15,22,39,3.95,15.0,fr,44597,93,1872538,1,1,Active Shallow Crust,128.9008,89.99373,0.0,01/19/4674 +0.26797,42.78643,256,3,11,21,7,23,4.05,5.0,fr,44598,5,1872540,1,1,Active Shallow Crust,0.0,89.99011,0.0,03/11/0256 +0.26797,42.78643,7772,2,16,2,38,1,4.05,15.0,fr,44599,155,1872550,1,1,Active Shallow Crust,128.891,89.99376,0.0,02/16/7772 +0.26797,42.78643,2877,3,14,9,48,1,4.15,5.0,fr,44600,57,1872558,1,1,Active Shallow Crust,0.0,89.98991,-90.0,03/14/2877 +0.26797,42.78643,8379,11,8,0,7,44,4.25,5.0,fr,44601,167,1872567,1,1,Active Shallow Crust,240.0068,57.99396,0.0,11/08/8379 +0.26797,42.78643,53,11,30,10,53,42,4.35,15.0,fr,44602,1,1872580,1,1,Active Shallow Crust,240.0076,57.9958,0.0,11/30/0053 +0.26797,42.78643,5122,2,24,7,22,50,4.35,15.0,fr,44603,102,1872583,1,1,Active Shallow Crust,0.0,89.98994,-90.0,02/24/5122 +0.26797,42.78643,5821,11,27,22,37,8,4.55,5.0,fr,44604,116,1872609,1,1,Active Shallow Crust,128.8948,89.98578,0.0,11/27/5821 +0.26797,42.78643,7200,6,20,15,57,23,4.65,5.0,fr,44605,143,1872618,1,1,Active Shallow Crust,0.0,89.98997,-90.0,06/20/7200 +0.26797,42.78643,6470,9,14,12,33,23,4.75,5.0,fr,44606,129,1872624,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/14/6470 +0.26797,42.78643,9390,2,25,8,25,1,4.95,5.0,fr,44607,187,1872648,1,1,Active Shallow Crust,0.0,89.99003,0.0,02/25/9390 +6.09584,43.17423,4814,4,12,0,8,55,3.55,5.0,fr,44608,96,1872969,1,1,Active Shallow Crust,128.8974,89.99265,0.0,04/12/4814 +-2.26759,48.67526,3131,5,17,16,2,4,3.55,5.0,fr,44609,62,1873440,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/17/3131 +-2.26759,48.67526,2177,5,23,0,4,29,3.55,15.0,fr,44610,43,1873447,1,1,Active Shallow Crust,0.0,89.9899,-90.0,05/23/2177 +-2.26759,48.67526,374,1,12,15,21,51,3.65,5.0,fr,44611,7,1873452,1,1,Active Shallow Crust,0.0,89.9911,0.0,01/12/0374 +-2.26759,48.67526,5492,6,21,15,55,12,3.65,15.0,fr,44612,109,1873456,1,1,Active Shallow Crust,240.0016,58.01245,0.0,06/21/5492 +-2.26759,48.67526,6990,5,12,20,30,20,3.75,5.0,fr,44613,139,1873464,1,1,Active Shallow Crust,0.0,89.98942,0.0,05/12/6990 +-2.26759,48.67526,7538,6,12,21,15,30,3.75,15.0,fr,44614,150,1873465,1,2,Active Shallow Crust,0.0,89.98942,0.0,06/12/7538 +-2.26759,48.67526,9398,4,7,12,42,12,3.75,15.0,fr,44615,187,1873465,1,2,Active Shallow Crust,0.0,89.98942,0.0,04/07/9398 +-2.26759,48.67526,6304,11,10,15,34,45,3.85,5.0,fr,44616,126,1873476,1,1,Active Shallow Crust,0.0,89.99057,0.0,11/10/6304 +-2.26759,48.67526,5357,6,30,19,23,53,3.95,5.0,fr,44617,107,1873491,1,1,Active Shallow Crust,240.0202,58.00505,0.0,06/30/5357 +-2.26759,48.67526,3339,9,16,6,17,58,4.05,27.5,fr,44618,66,1873502,1,1,Active Shallow Crust,0.0,89.99064,0.0,09/16/3339 +-2.26759,48.67526,2030,1,27,11,12,52,4.25,5.0,fr,44619,40,1873524,1,3,Active Shallow Crust,0.0,89.98959,0.0,01/27/2030 +-2.26759,48.67526,6389,6,24,15,50,14,4.25,5.0,fr,44620,127,1873524,1,3,Active Shallow Crust,0.0,89.98959,0.0,06/24/6389 +-2.26759,48.67526,7478,1,3,15,51,34,4.25,5.0,fr,44621,149,1873524,1,3,Active Shallow Crust,0.0,89.98959,0.0,01/03/7478 +-2.26759,48.67526,4124,12,30,21,25,12,4.45,5.0,fr,44622,82,1873548,1,1,Active Shallow Crust,0.0,89.99055,0.0,12/30/4124 +-2.92899,49.4273,3238,7,3,8,49,57,3.55,5.0,fr,44623,64,1873920,1,1,Active Shallow Crust,0.0,89.99017,0.0,07/03/3238 +-2.92899,49.4273,3305,4,1,14,45,52,3.65,5.0,fr,44624,66,1873932,1,1,Active Shallow Crust,0.0,89.99123,0.0,04/01/3305 +-2.92899,49.4273,2001,6,5,16,33,43,3.75,5.0,fr,44625,40,1873944,1,1,Active Shallow Crust,0.0,89.98958,0.0,06/05/2001 +-2.92899,49.4273,8825,7,8,23,25,2,5.45,5.0,fr,44626,176,1874148,1,1,Active Shallow Crust,0.0,89.99006,0.0,07/08/8825 +3.67986,41.90867,6278,11,17,4,46,29,3.55,5.0,fr,44627,125,1874403,1,1,Active Shallow Crust,240.0121,57.99786,0.0,11/17/6278 +3.67986,41.90867,2801,5,16,5,48,1,3.75,15.0,fr,44628,56,1874425,1,1,Active Shallow Crust,0.0,89.99106,0.0,05/16/2801 +3.67986,41.90867,3645,9,16,8,46,7,3.75,15.0,fr,44629,72,1874431,1,1,Active Shallow Crust,0.0,89.99095,-90.0,09/16/3645 +3.67986,41.90867,6859,8,18,3,48,58,4.25,27.5,fr,44630,137,1874486,1,1,Active Shallow Crust,0.0,89.98994,0.0,08/18/6859 +3.67986,41.90867,1313,3,18,14,43,57,4.45,5.0,fr,44631,26,1874508,1,1,Active Shallow Crust,0.0,89.98935,0.0,03/18/1313 +0.61418,44.58613,6083,1,14,5,8,6,3.65,15.0,fr,44632,121,1874902,1,1,Active Shallow Crust,128.9006,89.96349,0.0,01/14/6083 +0.61418,44.58613,6900,11,12,12,34,16,4.35,5.0,fr,44633,137,1874976,1,1,Active Shallow Crust,0.0,89.98999,0.0,11/12/6900 +0.61418,44.58613,2234,10,10,10,32,45,4.35,27.5,fr,44634,44,1874978,1,1,Active Shallow Crust,0.0,89.98999,0.0,10/10/2234 +-0.84135,47.84509,7305,8,2,0,15,31,3.65,5.0,fr,44635,146,1875372,1,1,Active Shallow Crust,0.0,89.9902,0.0,08/02/7305 +-0.84135,47.84509,1138,4,21,8,9,4,3.65,27.5,fr,44636,22,1875374,1,1,Active Shallow Crust,0.0,89.9902,0.0,04/21/1138 +-0.84135,47.84509,1435,7,26,0,7,10,3.75,15.0,fr,44637,28,1875385,1,1,Active Shallow Crust,0.0,89.98992,0.0,07/26/1435 +-0.84135,47.84509,7031,4,23,1,8,32,3.75,5.0,fr,44638,140,1875390,1,1,Active Shallow Crust,0.0,89.98981,-90.0,04/23/7031 +-0.84135,47.84509,8125,7,28,16,43,11,3.85,5.0,fr,44639,162,1875399,1,1,Active Shallow Crust,240.011,57.9978,0.0,07/28/8125 +-0.84135,47.84509,9226,1,3,4,27,19,4.15,27.5,fr,44640,184,1875434,1,1,Active Shallow Crust,0.0,89.98982,0.0,01/03/9226 +-0.84135,47.84509,3641,1,1,3,49,33,4.35,5.0,fr,44641,72,1875456,1,1,Active Shallow Crust,0.0,89.9899,0.0,01/01/3641 +3.45889,40.796,3988,2,9,15,42,19,3.55,5.0,fr,44642,79,1875846,1,1,Active Shallow Crust,0.0,89.98842,-90.0,02/09/3988 +3.45889,40.796,2176,5,31,19,3,10,3.65,27.5,fr,44643,43,1875854,1,1,Active Shallow Crust,0.0,89.98979,0.0,05/31/2176 +3.45889,40.796,3845,11,25,10,56,53,3.75,5.0,fr,44644,76,1875864,1,1,Active Shallow Crust,0.0,89.99091,0.0,11/25/3845 +3.45889,40.796,7083,10,4,17,27,55,3.85,5.0,fr,44645,141,1875879,1,1,Active Shallow Crust,240.0105,57.99766,0.0,10/04/7083 +3.12711,46.69786,3623,6,21,1,18,3,3.75,27.5,fr,44646,72,1876349,1,1,Active Shallow Crust,240.0089,58.0173,0.0,06/21/3623 +3.12711,46.69786,6054,2,16,15,47,30,3.85,5.0,fr,44647,121,1876359,1,1,Active Shallow Crust,240.0104,57.99789,0.0,02/16/6054 +3.12711,46.69786,4071,1,4,5,58,7,3.95,27.5,fr,44648,81,1876370,1,1,Active Shallow Crust,0.0,89.98909,0.0,01/04/4071 +3.12711,46.69786,865,9,24,7,26,42,4.05,5.0,fr,44649,17,1876380,1,1,Active Shallow Crust,0.0,89.99028,0.0,09/24/0865 +-0.58099,51.30239,4093,7,17,19,45,20,3.55,5.0,fr,44650,81,1876803,1,1,Active Shallow Crust,240.0125,57.99822,0.0,07/17/4093 +-0.58099,51.30239,6849,8,15,18,59,56,3.75,15.0,fr,44651,136,1876825,1,1,Active Shallow Crust,0.0,89.98998,0.0,08/15/6849 +-0.58099,51.30239,3017,6,4,14,45,59,3.85,5.0,fr,44652,60,1876836,1,1,Active Shallow Crust,0.0,89.98996,0.0,06/04/3017 +-0.58099,51.30239,1272,9,4,13,38,50,4.05,5.0,fr,44653,25,1876860,1,1,Active Shallow Crust,0.0,89.98981,0.0,09/04/1272 +-0.58099,51.30239,3446,8,12,0,54,55,4.45,27.5,fr,44654,68,1876910,1,1,Active Shallow Crust,0.0,89.98993,0.0,08/12/3446 +1.75458,47.74187,8428,4,3,5,4,30,3.65,5.0,fr,44655,168,1877292,1,1,Active Shallow Crust,0.0,89.98943,0.0,04/03/8428 +1.75458,47.74187,9890,5,20,21,20,28,3.65,5.0,fr,44656,197,1877298,1,1,Active Shallow Crust,0.0,89.9893,-90.0,05/20/9890 +1.75458,47.74187,9016,2,23,17,53,0,4.45,5.0,fr,44657,180,1877391,1,1,Active Shallow Crust,240.0056,57.99468,0.0,02/23/9016 +1.754577,47.74187,466,1,5,0,48,33,6.25,6.744814,fr,44658,9,1877613,1,1,Active Shallow Crust,128.8473,89.99044,0.0,01/05/0466 +7.99803,45.91103,3836,6,19,17,11,18,3.55,5.0,fr,44659,76,1877760,1,1,Active Shallow Crust,0.0,89.99298,0.0,06/19/3836 +7.99803,45.91103,7762,3,30,15,12,42,3.55,27.5,fr,44660,155,1877762,1,1,Active Shallow Crust,0.0,89.99298,0.0,03/30/7762 +7.99803,45.91103,5768,11,6,18,40,16,3.55,15.0,fr,44661,115,1877770,1,1,Active Shallow Crust,128.8948,89.99298,0.0,11/06/5768 +7.99803,45.91103,7555,4,28,17,17,0,3.65,5.0,fr,44662,151,1877772,1,1,Active Shallow Crust,0.0,89.9875,0.0,04/28/7555 +7.99803,45.91103,2263,1,26,11,9,13,3.65,15.0,fr,44663,45,1877773,1,1,Active Shallow Crust,0.0,89.9875,0.0,01/26/2263 +7.99803,45.91103,6686,6,9,2,19,24,3.65,5.0,fr,44664,133,1877775,1,1,Active Shallow Crust,239.9997,58.0122,0.0,06/09/6686 +7.99803,45.91103,1511,8,3,3,35,2,4.05,5.0,fr,44665,30,1877820,1,1,Active Shallow Crust,0.0,89.98817,0.0,08/03/1511 +7.99803,45.91103,294,10,2,4,33,53,4.05,15.0,fr,44666,5,1877824,1,1,Active Shallow Crust,240.0055,58.0051,0.0,10/02/0294 +7.99803,45.91103,298,4,25,7,48,7,4.15,5.0,fr,44667,5,1877835,1,1,Active Shallow Crust,240.008,57.99732,0.0,04/25/0298 +7.99803,45.91103,951,10,21,5,33,55,4.65,5.0,fr,44668,19,1877892,1,1,Active Shallow Crust,0.0,89.99011,0.0,10/21/0951 +7.99803,45.91103,7195,8,10,15,3,51,4.85,15.0,fr,44669,143,1877917,1,1,Active Shallow Crust,0.0,89.99058,0.0,08/10/7195 +7.99803,45.91103,9318,11,5,15,51,25,5.15,5.0,fr,44670,186,1877952,1,1,Active Shallow Crust,0.0,89.98999,0.0,11/05/9318 +-3.92588,47.0278,1863,10,29,16,39,49,3.65,5.0,fr,44671,37,1878252,1,1,Active Shallow Crust,0.0,89.99081,0.0,10/29/1863 +4.51338,44.4268,2010,3,7,11,46,18,3.55,27.5,fr,44672,40,1878722,1,3,Active Shallow Crust,0.0,89.9928,0.0,03/07/2010 +4.51338,44.4268,7658,11,15,13,0,55,3.55,27.5,fr,44673,153,1878722,1,3,Active Shallow Crust,0.0,89.9928,0.0,11/15/7658 +4.51338,44.4268,3154,7,2,13,16,57,3.55,27.5,fr,44674,63,1878722,1,3,Active Shallow Crust,0.0,89.9928,0.0,07/02/3154 +4.51338,44.4268,3515,3,10,5,26,30,3.55,5.0,fr,44675,70,1878723,1,1,Active Shallow Crust,240.0119,57.99839,0.0,03/10/3515 +4.51338,44.4268,5004,6,11,17,35,4,3.65,5.0,fr,44676,100,1878732,1,2,Active Shallow Crust,0.0,89.98716,0.0,06/11/5004 +4.51338,44.4268,4654,4,21,21,29,32,3.65,5.0,fr,44677,93,1878732,1,2,Active Shallow Crust,0.0,89.98716,0.0,04/21/4654 +4.51338,44.4268,6260,6,24,21,50,18,3.65,15.0,fr,44678,125,1878739,1,2,Active Shallow Crust,0.0,89.98701,-90.0,06/24/6260 +4.51338,44.4268,7331,7,8,10,6,0,3.65,15.0,fr,44679,146,1878739,1,2,Active Shallow Crust,0.0,89.98701,-90.0,07/08/7331 +4.51338,44.4268,7524,8,26,11,18,15,3.75,27.5,fr,44680,150,1878749,1,1,Active Shallow Crust,240.0077,58.01726,0.0,08/26/7524 +4.51338,44.4268,6504,6,23,0,58,33,3.85,15.0,fr,44681,130,1878760,1,1,Active Shallow Crust,240.0104,57.99817,0.0,06/23/6504 +4.51338,44.4268,2876,4,21,14,11,16,3.85,5.0,fr,44682,57,1878762,1,1,Active Shallow Crust,0.0,89.98969,-90.0,04/21/2876 +4.51338,44.4268,4303,9,12,3,59,59,3.85,15.0,fr,44683,86,1878766,1,1,Active Shallow Crust,128.8949,89.9949,0.0,09/12/4303 +4.51338,44.4268,8121,7,4,2,27,36,3.85,27.5,fr,44684,162,1878767,1,1,Active Shallow Crust,128.8949,89.9949,0.0,07/04/8121 +4.51338,44.4268,8646,9,28,7,23,8,3.95,5.0,fr,44685,172,1878768,1,1,Active Shallow Crust,0.0,89.99091,0.0,09/28/8646 +4.51338,44.4268,7135,3,29,3,14,3,4.05,5.0,fr,44686,142,1878780,1,1,Active Shallow Crust,0.0,89.9919,0.0,03/29/7135 +4.51338,44.4268,1181,5,13,6,48,21,4.05,27.5,fr,44687,23,1878791,1,1,Active Shallow Crust,128.8919,89.99191,0.0,05/13/1181 +4.51338,44.4268,8282,1,18,2,2,54,4.15,27.5,fr,44688,165,1878794,1,1,Active Shallow Crust,0.0,89.98917,0.0,01/18/8282 +4.51338,44.4268,8529,11,18,6,27,15,4.25,5.0,fr,44689,170,1878810,1,1,Active Shallow Crust,0.0,89.99023,-90.0,11/18/8529 +4.51338,44.4268,329,12,27,1,18,49,4.35,5.0,fr,44690,6,1878819,1,1,Active Shallow Crust,240.0081,57.99573,0.0,12/27/0329 +4.51338,44.4268,3905,8,31,12,24,40,4.55,5.0,fr,44691,78,1878843,1,1,Active Shallow Crust,240.0086,57.99743,0.0,08/31/3905 +4.51338,44.4268,7319,1,3,14,7,22,4.65,27.5,fr,44692,146,1878863,1,1,Active Shallow Crust,128.8913,89.98711,0.0,01/03/7319 +4.51338,44.4268,9472,1,3,20,31,17,4.75,5.0,fr,44693,189,1878867,1,1,Active Shallow Crust,240.0067,58.00457,0.0,01/03/9472 +4.51338,44.4268,394,7,7,20,38,53,5.75,5.0,fr,44694,7,1878984,1,1,Active Shallow Crust,0.0,89.99027,0.0,07/07/0394 +2.56377,45.70487,3644,11,22,3,7,40,3.55,5.0,fr,44695,72,1879200,1,1,Active Shallow Crust,0.0,89.98943,0.0,11/22/3644 +2.56377,45.70487,6543,8,17,3,38,48,3.55,15.0,fr,44696,130,1879201,1,1,Active Shallow Crust,0.0,89.98943,0.0,08/17/6543 +2.56377,45.70487,7943,3,28,13,52,4,3.55,27.5,fr,44697,158,1879202,1,1,Active Shallow Crust,0.0,89.98943,0.0,03/28/7943 +2.56377,45.70487,3733,2,6,5,32,19,3.55,27.5,fr,44698,74,1879211,1,1,Active Shallow Crust,128.896,89.99296,0.0,02/06/3733 +2.56377,45.70487,6452,7,16,17,45,53,3.65,5.0,fr,44699,129,1879212,1,3,Active Shallow Crust,0.0,89.99059,0.0,07/16/6452 +2.56377,45.70487,6984,10,28,18,54,45,3.65,5.0,fr,44700,139,1879212,1,3,Active Shallow Crust,0.0,89.99059,0.0,10/28/6984 +2.56377,45.70487,5174,5,5,9,5,24,3.65,5.0,fr,44701,103,1879212,1,3,Active Shallow Crust,0.0,89.99059,0.0,05/05/5174 +2.56377,45.70487,355,1,22,6,35,54,3.65,5.0,fr,44702,7,1879215,1,1,Active Shallow Crust,240.0007,58.01294,0.0,01/22/0355 +2.56377,45.70487,9285,2,24,12,21,10,3.65,15.0,fr,44703,185,1879219,1,1,Active Shallow Crust,0.0,89.99048,-90.0,02/24/9285 +2.56377,45.70487,9509,3,17,20,9,47,3.85,15.0,fr,44704,190,1879240,1,1,Active Shallow Crust,240.0104,57.99781,0.0,03/17/9509 +2.56377,45.70487,2081,6,29,19,39,52,3.85,15.0,fr,44705,41,1879243,1,1,Active Shallow Crust,0.0,89.98991,-90.0,06/29/2081 +2.56377,45.70487,2778,1,11,15,3,13,3.95,5.0,fr,44706,55,1879248,1,2,Active Shallow Crust,0.0,89.98889,0.0,01/11/2778 +2.56377,45.70487,7563,8,22,23,55,0,3.95,5.0,fr,44707,151,1879248,1,2,Active Shallow Crust,0.0,89.98889,0.0,08/22/7563 +2.56377,45.70487,536,2,12,8,39,40,3.95,15.0,fr,44708,10,1879249,1,1,Active Shallow Crust,0.0,89.98889,0.0,02/12/0536 +2.56377,45.70487,7616,5,12,23,28,27,4.05,5.0,fr,44709,152,1879260,1,1,Active Shallow Crust,0.0,89.9901,0.0,05/12/7616 +2.56377,45.70487,7755,8,4,12,24,16,4.05,15.0,fr,44710,155,1879261,1,1,Active Shallow Crust,0.0,89.9901,0.0,08/04/7755 +2.56377,45.70487,9027,5,9,1,19,49,4.35,5.0,fr,44711,180,1879296,1,1,Active Shallow Crust,0.0,89.99019,0.0,05/09/9027 +2.56377,45.70487,7548,8,14,3,18,31,4.75,5.0,fr,44712,150,1879347,1,1,Active Shallow Crust,240.0072,58.00439,0.0,08/14/7548 +3.7138,42.31659,1841,6,12,18,11,30,3.55,5.0,fr,44713,36,1879689,1,1,Active Shallow Crust,128.8972,89.99255,0.0,06/12/1841 +3.7138,42.31659,1941,7,10,9,33,15,3.65,15.0,fr,44714,38,1879693,1,1,Active Shallow Crust,0.0,89.99003,0.0,07/10/1941 +3.7138,42.31659,5420,8,8,0,20,16,3.75,5.0,fr,44715,108,1879704,1,1,Active Shallow Crust,0.0,89.99112,0.0,08/08/5420 +3.7138,42.31659,5851,3,23,3,0,13,3.75,15.0,fr,44716,117,1879705,1,1,Active Shallow Crust,0.0,89.99112,0.0,03/23/5851 +3.7138,42.31659,3709,12,3,15,23,38,4.05,5.0,fr,44717,74,1879740,1,1,Active Shallow Crust,0.0,89.98952,0.0,12/03/3709 +3.7138,42.31659,5638,5,27,6,27,8,4.05,5.0,fr,44718,112,1879743,1,1,Active Shallow Crust,240.0051,58.00604,0.0,05/27/5638 +3.7138,42.31659,5357,10,13,20,7,32,4.25,5.0,fr,44719,107,1879767,1,1,Active Shallow Crust,240.0069,57.99395,0.0,10/13/5357 +-3.45662,43.76062,8257,7,16,4,54,17,3.75,5.0,fr,44720,165,1880673,1,1,Active Shallow Crust,128.8966,89.96745,0.0,07/16/8257 +-3.45662,43.76062,1446,9,25,12,58,47,3.75,15.0,fr,44721,28,1880674,1,1,Active Shallow Crust,128.8966,89.96745,0.0,09/25/1446 +-3.45662,43.76062,7007,6,13,15,21,26,3.95,5.0,fr,44722,140,1880688,1,1,Active Shallow Crust,0.0,89.99081,0.0,06/13/7007 +-3.45662,43.76062,6955,10,13,5,51,20,4.15,5.0,fr,44723,139,1880712,1,1,Active Shallow Crust,0.0,89.99088,0.0,10/13/6955 +-3.45662,43.76062,7751,1,19,18,19,33,4.15,5.0,fr,44724,155,1880715,1,1,Active Shallow Crust,240.008,57.99704,0.0,01/19/7751 +-3.45662,43.76062,3436,11,22,17,19,45,4.25,15.0,fr,44725,68,1880725,1,1,Active Shallow Crust,0.0,89.99024,0.0,11/22/3436 +-3.45662,43.76062,3319,8,30,10,29,30,4.35,5.0,fr,44726,66,1880736,1,1,Active Shallow Crust,0.0,89.98985,0.0,08/30/3319 +6.65888,50.34168,5826,6,18,14,34,14,3.65,5.0,fr,44727,116,1881132,1,1,Active Shallow Crust,0.0,89.98853,0.0,06/18/5826 +6.65888,50.34168,2971,1,8,22,1,28,3.65,15.0,fr,44728,59,1881136,1,1,Active Shallow Crust,240.001,58.01346,0.0,01/08/2971 +6.65888,50.34168,7286,4,1,8,34,36,3.65,15.0,fr,44729,145,1881139,1,1,Active Shallow Crust,0.0,89.9884,-90.0,04/01/7286 +6.65888,50.34168,2080,6,17,18,37,25,3.75,5.0,fr,44730,41,1881144,1,1,Active Shallow Crust,0.0,89.98978,0.0,06/17/2080 +6.65888,50.34168,6251,10,24,11,50,58,3.75,15.0,fr,44731,125,1881145,1,1,Active Shallow Crust,0.0,89.98978,0.0,10/24/6251 +6.65888,50.34168,838,1,9,13,35,24,3.75,15.0,fr,44732,16,1881154,1,1,Active Shallow Crust,128.8963,89.96706,0.0,01/09/0838 +6.65888,50.34168,1700,10,10,16,47,22,3.95,15.0,fr,44733,33,1881169,1,1,Active Shallow Crust,0.0,89.99187,0.0,10/10/1700 +-1.22231,49.819,7360,5,9,17,12,27,3.55,5.0,fr,44734,147,1881600,1,1,Active Shallow Crust,0.0,89.99024,0.0,05/09/7360 +-1.22231,49.819,9663,3,12,23,53,39,3.55,15.0,fr,44735,193,1881601,1,2,Active Shallow Crust,0.0,89.99024,0.0,03/12/9663 +-1.22231,49.819,2009,7,24,20,55,3,3.55,15.0,fr,44736,40,1881601,1,2,Active Shallow Crust,0.0,89.99024,0.0,07/24/2009 +-1.22231,49.819,9557,8,10,2,57,50,3.55,5.0,fr,44737,191,1881606,1,1,Active Shallow Crust,0.0,89.99013,-90.0,08/10/9557 +-1.22231,49.819,1048,3,29,16,35,7,3.65,5.0,fr,44738,20,1881615,1,1,Active Shallow Crust,240.0015,58.01297,0.0,03/29/1048 +-1.22231,49.819,1853,10,8,14,58,41,3.75,5.0,fr,44739,37,1881624,1,1,Active Shallow Crust,0.0,89.98966,0.0,10/08/1853 +-1.22231,49.819,2111,3,4,13,49,55,3.75,5.0,fr,44740,42,1881633,1,1,Active Shallow Crust,128.8965,89.96732,0.0,03/04/2111 +-1.22231,49.819,2127,11,24,2,15,28,3.95,5.0,fr,44741,42,1881648,1,1,Active Shallow Crust,0.0,89.98974,0.0,11/24/2127 +-1.22231,49.819,2590,3,14,3,11,14,4.05,15.0,fr,44742,51,1881664,1,1,Active Shallow Crust,240.0064,58.00607,0.0,03/14/2590 +-1.22231,49.819,420,11,29,14,46,49,4.05,27.5,fr,44743,8,1881665,1,1,Active Shallow Crust,240.0064,58.00607,0.0,11/29/0420 +-1.22231,49.819,6396,6,7,21,12,5,4.95,5.0,fr,44744,127,1881768,1,1,Active Shallow Crust,0.0,89.98994,0.0,06/07/6396 +2.46349,46.20661,4338,6,25,16,16,52,3.55,5.0,fr,44745,86,1882080,1,4,Active Shallow Crust,0.0,89.98953,0.0,06/25/4338 +2.46349,46.20661,6036,3,10,12,58,2,3.55,5.0,fr,44746,120,1882080,1,4,Active Shallow Crust,0.0,89.98953,0.0,03/10/6036 +2.46349,46.20661,2394,6,30,15,23,23,3.55,5.0,fr,44747,47,1882080,1,4,Active Shallow Crust,0.0,89.98953,0.0,06/30/2394 +2.46349,46.20661,7584,9,24,16,27,48,3.55,5.0,fr,44748,151,1882080,1,4,Active Shallow Crust,0.0,89.98953,0.0,09/24/7584 +2.46349,46.20661,2925,11,28,16,39,34,3.55,15.0,fr,44749,58,1882081,1,1,Active Shallow Crust,0.0,89.98953,0.0,11/28/2925 +2.46349,46.20661,8102,8,10,5,16,14,3.55,5.0,fr,44750,162,1882083,1,1,Active Shallow Crust,240.0124,57.99846,0.0,08/10/8102 +2.46349,46.20661,7442,11,15,4,26,5,3.55,15.0,fr,44751,148,1882087,1,1,Active Shallow Crust,0.0,89.98941,-90.0,11/15/7442 +2.46349,46.20661,108,7,15,23,21,44,3.55,27.5,fr,44752,2,1882088,1,1,Active Shallow Crust,0.0,89.98941,-90.0,07/15/0108 +2.46349,46.20661,3095,7,2,7,32,52,3.55,5.0,fr,44753,61,1882089,1,1,Active Shallow Crust,128.8964,89.99302,0.0,07/02/3095 +2.46349,46.20661,9751,8,24,23,11,33,3.65,5.0,fr,44754,195,1882092,1,2,Active Shallow Crust,0.0,89.99067,0.0,08/24/9751 +2.46349,46.20661,4086,7,30,3,6,45,3.65,5.0,fr,44755,81,1882092,1,2,Active Shallow Crust,0.0,89.99067,0.0,07/30/4086 +2.46349,46.20661,5133,3,16,19,57,9,3.65,15.0,fr,44756,102,1882093,1,1,Active Shallow Crust,0.0,89.99067,0.0,03/16/5133 +2.46349,46.20661,903,8,24,2,50,31,3.65,5.0,fr,44757,18,1882095,1,1,Active Shallow Crust,240.001,58.01294,0.0,08/24/0903 +2.46349,46.20661,1701,8,10,5,27,38,3.75,5.0,fr,44758,34,1882104,1,3,Active Shallow Crust,0.0,89.98891,0.0,08/10/1701 +2.46349,46.20661,3545,1,29,23,12,29,3.75,5.0,fr,44759,70,1882104,1,3,Active Shallow Crust,0.0,89.98891,0.0,01/29/3545 +2.46349,46.20661,404,10,26,22,27,27,3.75,5.0,fr,44760,8,1882104,1,3,Active Shallow Crust,0.0,89.98891,0.0,10/26/0404 +2.46349,46.20661,4602,5,25,20,44,10,3.95,5.0,fr,44761,92,1882128,1,2,Active Shallow Crust,0.0,89.98899,0.0,05/25/4602 +2.46349,46.20661,9183,5,15,19,43,0,3.95,5.0,fr,44762,183,1882128,1,2,Active Shallow Crust,0.0,89.98899,0.0,05/15/9183 +2.46349,46.20661,3774,1,28,2,9,46,3.95,15.0,fr,44763,75,1882129,1,1,Active Shallow Crust,0.0,89.98899,0.0,01/28/3774 +2.46349,46.20661,22,6,19,18,25,14,3.95,5.0,fr,44764,0,1882137,1,1,Active Shallow Crust,128.9008,89.99339,0.0,06/19/0022 +2.46349,46.20661,6744,6,24,7,7,18,4.05,27.5,fr,44765,134,1882142,1,1,Active Shallow Crust,0.0,89.99019,0.0,06/24/6744 +2.46349,46.20661,4996,12,24,3,28,50,4.15,5.0,fr,44766,99,1882152,1,2,Active Shallow Crust,0.0,89.98951,0.0,12/24/4996 +2.46349,46.20661,849,4,10,0,39,56,4.15,5.0,fr,44767,16,1882152,1,2,Active Shallow Crust,0.0,89.98951,0.0,04/10/0849 +2.46349,46.20661,2282,6,20,20,49,49,4.15,15.0,fr,44768,45,1882153,1,1,Active Shallow Crust,0.0,89.98951,0.0,06/20/2282 +2.46349,46.20661,3865,6,15,17,25,52,4.25,5.0,fr,44769,77,1882167,1,1,Active Shallow Crust,240.0076,57.99401,0.0,06/15/3865 +2.46349,46.20661,7899,1,21,9,28,25,4.35,15.0,fr,44770,157,1882180,1,1,Active Shallow Crust,240.0085,57.99603,0.0,01/21/7899 +2.46349,46.20661,9151,5,29,2,26,17,4.45,5.0,fr,44771,183,1882188,1,1,Active Shallow Crust,0.0,89.9901,0.0,05/29/9151 +2.46349,46.20661,5840,2,2,11,54,48,4.85,5.0,fr,44772,116,1882236,1,1,Active Shallow Crust,0.0,89.98985,0.0,02/02/5840 +2.46349,46.20661,9465,7,14,11,11,52,4.95,5.0,fr,44773,189,1882248,1,1,Active Shallow Crust,0.0,89.99025,0.0,07/14/9465 +2.46349,46.20661,7164,9,15,4,25,44,5.55,5.0,fr,44774,143,1882323,1,1,Active Shallow Crust,240.0289,58.00239,0.0,09/15/7164 +1.73881,43.47356,7355,9,22,19,0,22,3.55,27.5,fr,44775,147,1882562,1,1,Active Shallow Crust,0.0,89.99085,0.0,09/22/7355 +1.73881,43.47356,3209,11,10,11,58,12,3.65,15.0,fr,44776,64,1882573,1,1,Active Shallow Crust,0.0,89.99022,0.0,11/10/3209 +1.73881,43.47356,1612,9,30,12,17,34,3.75,15.0,fr,44777,32,1882585,1,1,Active Shallow Crust,0.0,89.98983,0.0,09/30/1612 +1.73881,43.47356,119,11,9,2,48,30,3.85,5.0,fr,44778,2,1882596,1,1,Active Shallow Crust,0.0,89.98964,0.0,11/09/0119 +1.73881,43.47356,5632,7,19,17,3,38,4.45,5.0,fr,44779,112,1882674,1,1,Active Shallow Crust,0.0,89.99015,-90.0,07/19/5632 +-3.20558,46.82738,8510,7,6,7,14,19,5.45,5.0,fr,44780,170,1883268,1,1,Active Shallow Crust,0.0,89.98993,0.0,07/06/8510 +-5.41208,49.60471,1155,1,8,6,47,18,4.85,5.0,fr,44781,23,1883676,1,1,Active Shallow Crust,0.0,89.98975,0.0,01/08/1155 +-6.00506,47.89821,5617,11,2,14,41,53,3.65,27.5,fr,44782,112,1884014,1,1,Active Shallow Crust,0.0,89.98795,0.0,11/02/5617 +-6.00506,47.89821,7624,11,26,16,53,56,4.35,5.0,fr,44783,152,1884096,1,1,Active Shallow Crust,0.0,89.98923,0.0,11/26/7624 +4.2022,46.21302,1996,6,1,0,32,24,3.55,5.0,fr,44784,39,1884480,1,1,Active Shallow Crust,0.0,89.99302,0.0,06/01/1996 +4.2022,46.21302,9759,5,13,15,29,43,3.55,15.0,fr,44785,195,1884481,1,1,Active Shallow Crust,0.0,89.99302,0.0,05/13/9759 +4.2022,46.21302,5914,8,6,13,32,32,3.55,27.5,fr,44786,118,1884482,1,1,Active Shallow Crust,0.0,89.99302,0.0,08/06/5914 +4.2022,46.21302,637,8,3,9,25,28,3.65,5.0,fr,44787,12,1884501,1,1,Active Shallow Crust,128.8996,89.96352,0.0,08/03/0637 +4.2022,46.21302,528,11,29,19,19,20,3.75,5.0,fr,44788,10,1884504,1,2,Active Shallow Crust,0.0,89.98891,0.0,11/29/0528 +4.2022,46.21302,1391,4,2,3,57,59,3.75,5.0,fr,44789,27,1884504,1,2,Active Shallow Crust,0.0,89.98891,0.0,04/02/1391 +4.2022,46.21302,4993,1,27,23,49,58,3.75,15.0,fr,44790,99,1884505,1,1,Active Shallow Crust,0.0,89.98891,0.0,01/27/4993 +4.2022,46.21302,8611,6,10,3,53,49,3.85,5.0,fr,44791,172,1884516,1,2,Active Shallow Crust,0.0,89.99012,0.0,06/10/8611 +4.2022,46.21302,5573,10,31,21,51,44,3.85,5.0,fr,44792,111,1884516,1,2,Active Shallow Crust,0.0,89.99012,0.0,10/31/5573 +4.2022,46.21302,4608,1,8,20,58,0,3.95,5.0,fr,44793,92,1884537,1,1,Active Shallow Crust,128.9013,89.99339,0.0,01/08/4608 +4.2022,46.21302,6544,5,9,5,12,38,4.35,5.0,fr,44794,130,1884576,1,1,Active Shallow Crust,0.0,89.98888,0.0,05/09/6544 +4.2022,46.21302,5431,5,7,14,1,13,5.55,27.5,fr,44795,108,1884731,1,1,Active Shallow Crust,128.8764,89.98978,0.0,05/07/5431 +-4.44856,47.65857,3829,3,25,4,55,28,3.65,15.0,fr,44796,76,1884973,1,1,Active Shallow Crust,0.0,89.98789,0.0,03/25/3829 +-4.44856,47.65857,3989,5,29,23,6,42,3.75,15.0,fr,44797,79,1884991,1,1,Active Shallow Crust,0.0,89.98908,-90.0,05/29/3989 +-4.44856,47.65857,7557,6,28,14,2,39,4.55,27.5,fr,44798,151,1885082,1,1,Active Shallow Crust,0.0,89.98926,0.0,06/28/7557 +-0.55833,45.70858,9932,5,31,18,48,24,3.55,5.0,fr,44799,198,1885920,1,1,Active Shallow Crust,0.0,89.99032,0.0,05/31/9932 +-0.55833,45.70858,4861,1,13,19,54,14,3.55,15.0,fr,44800,97,1885924,1,1,Active Shallow Crust,240.0119,57.9982,0.0,01/13/4861 +-0.55833,45.70858,1242,12,7,18,52,44,3.65,5.0,fr,44801,24,1885932,1,2,Active Shallow Crust,0.0,89.9898,0.0,12/07/1242 +-0.55833,45.70858,6911,12,19,2,38,6,3.65,5.0,fr,44802,138,1885932,1,2,Active Shallow Crust,0.0,89.9898,0.0,12/19/6911 +-0.55833,45.70858,203,7,1,1,50,7,3.65,15.0,fr,44803,4,1885933,1,1,Active Shallow Crust,0.0,89.9898,0.0,07/01/0203 +-0.55833,45.70858,1381,3,13,21,16,37,3.65,5.0,fr,44804,27,1885935,1,1,Active Shallow Crust,240.001,58.01287,0.0,03/13/1381 +-0.55833,45.70858,4125,7,17,0,35,12,3.65,5.0,fr,44805,82,1885938,1,1,Active Shallow Crust,0.0,89.98969,-90.0,07/17/4125 +-0.55833,45.70858,7592,5,12,2,30,9,3.75,5.0,fr,44806,151,1885944,1,3,Active Shallow Crust,0.0,89.99021,0.0,05/12/7592 +-0.55833,45.70858,9675,12,21,18,11,1,3.75,5.0,fr,44807,193,1885944,1,3,Active Shallow Crust,0.0,89.99021,0.0,12/21/9675 +-0.55833,45.70858,2166,3,25,0,19,17,3.75,5.0,fr,44808,43,1885944,1,3,Active Shallow Crust,0.0,89.99021,0.0,03/25/2166 +-0.55833,45.70858,9410,11,26,15,40,44,3.95,5.0,fr,44809,188,1885968,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/26/9410 +-0.55833,45.70858,4543,6,14,0,32,13,4.15,5.0,fr,44810,90,1885992,1,2,Active Shallow Crust,0.0,89.98985,0.0,06/14/4543 +-0.55833,45.70858,3739,1,16,10,59,36,4.15,5.0,fr,44811,74,1885992,1,2,Active Shallow Crust,0.0,89.98985,0.0,01/16/3739 +-0.55833,45.70858,451,6,12,21,18,38,4.35,15.0,fr,44812,9,1886023,1,1,Active Shallow Crust,0.0,89.99007,-90.0,06/12/0451 +-0.55833,45.70858,6010,4,22,13,56,53,4.45,27.5,fr,44813,120,1886030,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/22/6010 +-0.55833,45.70858,6670,4,16,18,7,17,4.65,5.0,fr,44814,133,1886052,1,1,Active Shallow Crust,0.0,89.99007,0.0,04/16/6670 +-0.55833,45.70858,5184,5,2,8,1,18,4.75,15.0,fr,44815,103,1886074,1,1,Active Shallow Crust,128.8889,89.98807,0.0,05/02/5184 +-0.55833,45.70858,8309,9,22,14,8,50,4.85,15.0,fr,44816,166,1886077,1,1,Active Shallow Crust,0.0,89.98995,0.0,09/22/8309 +3.07835,45.2651,4870,1,27,12,32,42,3.55,5.0,fr,44817,97,1886400,1,1,Active Shallow Crust,0.0,89.98936,0.0,01/27/4870 +3.07835,45.2651,843,3,20,22,27,12,3.55,27.5,fr,44818,16,1886402,1,1,Active Shallow Crust,0.0,89.98936,0.0,03/20/0843 +3.07835,45.2651,2261,11,25,10,3,35,3.55,15.0,fr,44819,45,1886404,1,1,Active Shallow Crust,240.0119,57.99885,0.0,11/25/2261 +3.07835,45.2651,808,4,26,2,30,3,3.75,5.0,fr,44820,16,1886424,1,1,Active Shallow Crust,0.0,89.98872,0.0,04/26/0808 +3.07835,45.2651,2305,2,19,16,46,11,3.75,27.5,fr,44821,46,1886429,1,1,Active Shallow Crust,240.0081,58.01764,0.0,02/19/2305 +3.07835,45.2651,990,9,7,4,49,47,3.85,5.0,fr,44822,19,1886445,1,1,Active Shallow Crust,128.8955,89.99372,0.0,09/07/0990 +3.07835,45.2651,9857,11,26,13,19,38,3.95,5.0,fr,44823,197,1886448,1,3,Active Shallow Crust,0.0,89.99104,0.0,11/26/9857 +3.07835,45.2651,4008,7,12,1,25,31,3.95,5.0,fr,44824,80,1886448,1,3,Active Shallow Crust,0.0,89.99104,0.0,07/12/4008 +3.07835,45.2651,2128,1,14,1,13,48,3.95,5.0,fr,44825,42,1886448,1,3,Active Shallow Crust,0.0,89.99104,0.0,01/14/2128 +3.07835,45.2651,4361,9,24,12,41,18,4.05,5.0,fr,44826,87,1886466,1,1,Active Shallow Crust,0.0,89.98991,-90.0,09/24/4361 +3.07835,45.2651,8893,6,18,20,58,23,4.15,15.0,fr,44827,177,1886473,1,1,Active Shallow Crust,0.0,89.98933,0.0,06/18/8893 +3.07835,45.2651,6497,2,26,9,54,45,4.35,5.0,fr,44828,129,1886496,1,1,Active Shallow Crust,0.0,89.99011,0.0,02/26/6497 +3.07835,45.2651,5829,1,7,20,1,49,4.45,5.0,fr,44829,116,1886511,1,1,Active Shallow Crust,240.0049,57.99457,0.0,01/07/5829 +3.07835,45.2651,3187,6,5,22,56,16,4.65,5.0,fr,44830,63,1886538,1,1,Active Shallow Crust,0.0,89.98988,-90.0,06/05/3187 +3.07835,45.2651,5614,7,1,5,3,57,4.75,5.0,fr,44831,112,1886544,1,1,Active Shallow Crust,0.0,89.9902,0.0,07/01/5614 +3.07835,45.2651,9617,10,7,2,16,24,5.75,15.0,fr,44832,192,1886665,1,1,Active Shallow Crust,0.0,89.99013,0.0,10/07/9617 +3.078354,45.2651,8062,6,16,11,3,29,6.25,6.744814,fr,44833,161,1886724,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/16/8062 +8.23829,47.49336,4637,7,26,18,38,52,3.55,5.0,fr,44834,92,1887360,1,6,Active Shallow Crust,0.0,89.98637,0.0,07/26/4637 +8.23829,47.49336,6041,6,24,4,50,0,3.55,5.0,fr,44835,120,1887360,1,6,Active Shallow Crust,0.0,89.98637,0.0,06/24/6041 +8.23829,47.49336,3339,8,29,1,3,1,3.55,5.0,fr,44836,66,1887360,1,6,Active Shallow Crust,0.0,89.98637,0.0,08/29/3339 +8.23829,47.49336,8100,2,16,18,9,27,3.55,5.0,fr,44837,161,1887360,1,6,Active Shallow Crust,0.0,89.98637,0.0,02/16/8100 +8.23829,47.49336,3989,9,30,9,27,12,3.55,5.0,fr,44838,79,1887360,1,6,Active Shallow Crust,0.0,89.98637,0.0,09/30/3989 +8.23829,47.49336,1049,9,17,10,9,19,3.55,5.0,fr,44839,20,1887360,1,6,Active Shallow Crust,0.0,89.98637,0.0,09/17/1049 +8.23829,47.49336,804,11,4,0,34,30,3.55,15.0,fr,44840,16,1887361,1,4,Active Shallow Crust,0.0,89.98637,0.0,11/04/0804 +8.23829,47.49336,3160,9,16,0,24,10,3.55,15.0,fr,44841,63,1887361,1,4,Active Shallow Crust,0.0,89.98637,0.0,09/16/3160 +8.23829,47.49336,233,7,4,8,5,41,3.55,15.0,fr,44842,4,1887361,1,4,Active Shallow Crust,0.0,89.98637,0.0,07/04/0233 +8.23829,47.49336,1180,9,5,2,53,38,3.55,15.0,fr,44843,23,1887361,1,4,Active Shallow Crust,0.0,89.98637,0.0,09/05/1180 +8.23829,47.49336,9922,1,5,20,46,22,3.55,5.0,fr,44844,198,1887363,1,2,Active Shallow Crust,240.0128,57.99557,0.0,01/05/9922 +8.23829,47.49336,3605,3,20,18,13,36,3.55,5.0,fr,44845,72,1887363,1,2,Active Shallow Crust,240.0128,57.99557,0.0,03/20/3605 +8.23829,47.49336,9801,2,11,13,23,13,3.65,5.0,fr,44846,196,1887372,1,1,Active Shallow Crust,0.0,89.98785,0.0,02/11/9801 +8.23829,47.49336,3459,11,14,14,29,41,3.65,15.0,fr,44847,69,1887373,1,4,Active Shallow Crust,0.0,89.98785,0.0,11/14/3459 +8.23829,47.49336,7174,1,17,2,3,13,3.65,15.0,fr,44848,143,1887373,1,4,Active Shallow Crust,0.0,89.98785,0.0,01/17/7174 +8.23829,47.49336,6909,5,9,10,24,25,3.65,15.0,fr,44849,138,1887373,1,4,Active Shallow Crust,0.0,89.98785,0.0,05/09/6909 +8.23829,47.49336,1948,1,21,6,44,45,3.65,15.0,fr,44850,38,1887373,1,4,Active Shallow Crust,0.0,89.98785,0.0,01/21/1948 +8.23829,47.49336,8512,3,30,9,34,16,3.65,5.0,fr,44851,170,1887375,1,1,Active Shallow Crust,240.0028,58.01278,0.0,03/30/8512 +8.23829,47.49336,8925,6,17,12,38,41,3.75,15.0,fr,44852,178,1887385,1,2,Active Shallow Crust,0.0,89.98917,0.0,06/17/8925 +8.23829,47.49336,167,6,19,0,28,53,3.75,15.0,fr,44853,3,1887385,1,2,Active Shallow Crust,0.0,89.98917,0.0,06/19/0167 +8.23829,47.49336,8422,3,1,14,7,21,3.75,15.0,fr,44854,168,1887388,1,1,Active Shallow Crust,240.0098,58.01752,0.0,03/01/8422 +8.23829,47.49336,248,4,13,17,16,53,3.85,5.0,fr,44855,4,1887396,1,2,Active Shallow Crust,0.0,89.99036,0.0,04/13/0248 +8.23829,47.49336,2575,7,23,6,54,22,3.85,5.0,fr,44856,51,1887396,1,2,Active Shallow Crust,0.0,89.99036,0.0,07/23/2575 +8.23829,47.49336,5397,6,26,16,49,30,3.85,5.0,fr,44857,107,1887399,1,1,Active Shallow Crust,240.0105,57.99824,0.0,06/26/5397 +8.23829,47.49336,394,11,10,0,34,58,3.85,5.0,fr,44858,7,1887402,1,1,Active Shallow Crust,0.0,89.99024,-90.0,11/10/0394 +8.23829,47.49336,4338,2,10,14,28,22,3.85,5.0,fr,44859,86,1887405,1,1,Active Shallow Crust,128.8946,89.99518,0.0,02/10/4338 +8.23829,47.49336,5170,9,7,5,49,29,3.95,5.0,fr,44860,103,1887408,1,1,Active Shallow Crust,0.0,89.9914,0.0,09/07/5170 +8.23829,47.49336,9930,6,6,15,10,4,3.95,5.0,fr,44861,198,1887411,1,2,Active Shallow Crust,240.0191,58.00534,0.0,06/06/9930 +8.23829,47.49336,2138,2,25,17,7,6,3.95,5.0,fr,44862,42,1887411,1,2,Active Shallow Crust,240.0191,58.00534,0.0,02/25/2138 +8.23829,47.49336,6108,7,7,11,27,12,3.95,15.0,fr,44863,122,1887415,1,1,Active Shallow Crust,0.0,89.9913,-90.0,07/07/6108 +8.23829,47.49336,657,11,5,8,52,26,3.95,5.0,fr,44864,13,1887417,1,1,Active Shallow Crust,128.8994,89.9957,0.0,11/05/0657 +8.23829,47.49336,2706,11,7,22,36,9,4.05,5.0,fr,44865,54,1887420,1,3,Active Shallow Crust,0.0,89.99234,0.0,11/07/2706 +8.23829,47.49336,6029,10,15,6,41,0,4.05,5.0,fr,44866,120,1887420,1,3,Active Shallow Crust,0.0,89.99234,0.0,10/15/6029 +8.23829,47.49336,295,10,29,15,34,29,4.05,5.0,fr,44867,5,1887420,1,3,Active Shallow Crust,0.0,89.99234,0.0,10/29/0295 +8.23829,47.49336,5923,4,29,20,25,22,4.05,15.0,fr,44868,118,1887421,1,1,Active Shallow Crust,0.0,89.99234,0.0,04/29/5923 +8.23829,47.49336,2557,1,10,20,51,32,4.05,27.5,fr,44869,51,1887422,1,1,Active Shallow Crust,0.0,89.99234,0.0,01/10/2557 +8.23829,47.49336,4457,10,20,15,56,52,4.15,5.0,fr,44870,89,1887432,1,3,Active Shallow Crust,0.0,89.99317,0.0,10/20/4457 +8.23829,47.49336,8766,9,26,2,53,15,4.15,5.0,fr,44871,175,1887432,1,3,Active Shallow Crust,0.0,89.99317,0.0,09/26/8766 +8.23829,47.49336,9264,11,13,23,26,5,4.15,5.0,fr,44872,185,1887432,1,3,Active Shallow Crust,0.0,89.99317,0.0,11/13/9264 +8.23829,47.49336,1876,10,9,14,40,18,4.15,15.0,fr,44873,37,1887433,1,1,Active Shallow Crust,0.0,89.99317,0.0,10/09/1876 +8.23829,47.49336,6721,8,6,3,14,49,4.15,27.5,fr,44874,134,1887434,1,1,Active Shallow Crust,0.0,89.99317,0.0,08/06/6721 +8.23829,47.49336,1049,5,20,10,19,59,4.15,5.0,fr,44875,20,1887441,1,1,Active Shallow Crust,128.8962,89.99317,0.0,05/20/1049 +8.23829,47.49336,6100,3,21,1,9,23,4.25,5.0,fr,44876,121,1887444,1,2,Active Shallow Crust,0.0,89.98782,0.0,03/21/6100 +8.23829,47.49336,3535,4,24,12,4,15,4.25,5.0,fr,44877,70,1887444,1,2,Active Shallow Crust,0.0,89.98782,0.0,04/24/3535 +8.23829,47.49336,1495,3,7,13,26,3,4.35,5.0,fr,44878,29,1887456,1,1,Active Shallow Crust,0.0,89.98915,0.0,03/07/1495 +8.23829,47.49336,1548,10,6,12,25,53,4.45,5.0,fr,44879,30,1887468,1,1,Active Shallow Crust,0.0,89.99033,0.0,10/06/1548 +8.23829,47.49336,1258,8,16,0,14,42,4.45,15.0,fr,44880,25,1887475,1,1,Active Shallow Crust,0.0,89.99022,-90.0,08/16/1258 +8.23829,47.49336,2846,5,2,19,24,10,4.55,15.0,fr,44881,56,1887484,1,1,Active Shallow Crust,240.0101,57.99659,0.0,05/02/2846 +8.23829,47.49336,2112,11,15,1,43,7,4.75,5.0,fr,44882,42,1887510,1,1,Active Shallow Crust,0.0,89.98961,-90.0,11/15/2112 +8.23829,47.49336,3731,8,3,9,17,8,4.85,5.0,fr,44883,74,1887516,1,2,Active Shallow Crust,0.0,89.99084,0.0,08/03/3731 +8.23829,47.49336,5366,1,13,21,22,1,4.85,5.0,fr,44884,107,1887516,1,2,Active Shallow Crust,0.0,89.99084,0.0,01/13/5366 +8.23829,47.49336,7915,9,17,14,53,40,4.95,5.0,fr,44885,158,1887528,1,1,Active Shallow Crust,0.0,89.98912,0.0,09/17/7915 +8.23829,47.49336,2583,11,19,9,50,8,4.95,5.0,fr,44886,51,1887531,1,1,Active Shallow Crust,240.0128,58.00433,0.0,11/19/2583 +8.23829,47.49336,6769,10,11,6,36,26,5.05,15.0,fr,44887,135,1887541,1,1,Active Shallow Crust,0.0,89.9903,0.0,10/11/6769 +8.23829,47.49336,4301,3,2,23,56,4,5.35,15.0,fr,44888,86,1887577,1,1,Active Shallow Crust,0.0,89.9897,0.0,03/02/4301 +7.02793,48.75965,3867,1,10,0,45,15,3.55,5.0,fr,44889,77,1887840,1,1,Active Shallow Crust,0.0,89.9867,0.0,01/10/3867 +7.02793,48.75965,7098,3,30,8,53,32,3.55,15.0,fr,44890,141,1887850,1,1,Active Shallow Crust,128.8965,89.99335,0.0,03/30/7098 +7.02793,48.75965,6227,2,12,11,30,57,3.95,5.0,fr,44891,124,1887897,1,1,Active Shallow Crust,128.8991,89.99371,0.0,02/12/6227 +7.02793,48.75965,7509,7,13,8,54,26,4.05,5.0,fr,44892,150,1887900,1,1,Active Shallow Crust,0.0,89.98878,0.0,07/13/7509 +3.69052,41.23585,610,10,6,3,0,52,3.55,15.0,fr,44893,12,1888321,1,1,Active Shallow Crust,0.0,89.98862,0.0,10/06/0610 +3.69052,41.23585,7391,4,4,16,26,31,3.55,15.0,fr,44894,147,1888324,1,1,Active Shallow Crust,240.0121,57.99798,0.0,04/04/7391 +3.69052,41.23585,7480,7,12,7,14,32,3.75,27.5,fr,44895,149,1888349,1,1,Active Shallow Crust,240.0079,58.0176,0.0,07/12/7480 +3.69052,41.23585,8694,3,27,2,58,25,4.15,5.0,fr,44896,173,1888395,1,1,Active Shallow Crust,240.0073,57.99721,0.0,03/27/8694 +3.69052,41.23585,6366,6,26,16,0,47,4.35,5.0,fr,44897,127,1888416,1,1,Active Shallow Crust,0.0,89.98943,0.0,06/26/6366 +3.69052,41.23585,7571,7,15,18,13,24,4.45,15.0,fr,44898,151,1888429,1,1,Active Shallow Crust,0.0,89.99059,0.0,07/15/7571 +-5.03733,47.73252,877,7,19,1,37,30,3.65,5.0,fr,44899,17,1888815,1,1,Active Shallow Crust,240.0015,58.01268,0.0,07/19/0877 +-5.03733,47.73252,6389,5,8,9,32,7,4.05,27.5,fr,44900,127,1888871,1,1,Active Shallow Crust,128.8896,89.99428,0.0,05/08/6389 +-5.03733,47.73252,8841,6,5,6,45,53,4.25,5.0,fr,44901,176,1888884,1,1,Active Shallow Crust,0.0,89.99091,0.0,06/05/8841 +5.28026,48.28601,3214,3,4,11,1,2,3.55,5.0,fr,44902,64,1889280,1,1,Active Shallow Crust,0.0,89.99329,0.0,03/04/3214 +5.28026,48.28601,4265,12,28,21,48,32,3.55,15.0,fr,44903,85,1889290,1,1,Active Shallow Crust,128.8968,89.99329,0.0,12/28/4265 +5.28026,48.28601,9589,4,13,8,57,38,3.85,15.0,fr,44904,191,1889320,1,1,Active Shallow Crust,240.0114,57.99833,0.0,04/13/9589 +5.28026,48.28601,436,11,6,10,35,21,3.95,5.0,fr,44905,8,1889334,1,1,Active Shallow Crust,0.0,89.99143,-90.0,11/06/0436 +-1.57203,42.86982,5370,6,20,12,40,55,3.55,5.0,fr,44906,107,1889760,1,9,Active Shallow Crust,0.0,89.99076,0.0,06/20/5370 +-1.57203,42.86982,6636,3,16,1,19,12,3.55,5.0,fr,44907,132,1889760,1,9,Active Shallow Crust,0.0,89.99076,0.0,03/16/6636 +-1.57203,42.86982,5312,7,10,10,58,33,3.55,5.0,fr,44908,106,1889760,1,9,Active Shallow Crust,0.0,89.99076,0.0,07/10/5312 +-1.57203,42.86982,6408,3,26,7,59,42,3.55,5.0,fr,44909,128,1889760,1,9,Active Shallow Crust,0.0,89.99076,0.0,03/26/6408 +-1.57203,42.86982,5440,9,28,2,18,8,3.55,5.0,fr,44910,108,1889760,1,9,Active Shallow Crust,0.0,89.99076,0.0,09/28/5440 +-1.57203,42.86982,4274,4,5,4,47,36,3.55,5.0,fr,44911,85,1889760,1,9,Active Shallow Crust,0.0,89.99076,0.0,04/05/4274 +-1.57203,42.86982,9043,2,15,8,10,21,3.55,5.0,fr,44912,180,1889760,1,9,Active Shallow Crust,0.0,89.99076,0.0,02/15/9043 +-1.57203,42.86982,3699,6,11,8,53,2,3.55,5.0,fr,44913,73,1889760,1,9,Active Shallow Crust,0.0,89.99076,0.0,06/11/3699 +-1.57203,42.86982,6323,9,20,16,48,17,3.55,5.0,fr,44914,126,1889760,1,9,Active Shallow Crust,0.0,89.99076,0.0,09/20/6323 +-1.57203,42.86982,1395,10,9,1,0,53,3.55,27.5,fr,44915,27,1889762,1,2,Active Shallow Crust,0.0,89.99076,0.0,10/09/1395 +-1.57203,42.86982,1866,10,18,21,14,40,3.55,27.5,fr,44916,37,1889762,1,2,Active Shallow Crust,0.0,89.99076,0.0,10/18/1866 +-1.57203,42.86982,6185,2,1,16,1,46,3.55,5.0,fr,44917,123,1889763,1,2,Active Shallow Crust,240.0116,57.99815,0.0,02/01/6185 +-1.57203,42.86982,7809,4,23,1,1,0,3.55,5.0,fr,44918,156,1889763,1,2,Active Shallow Crust,240.0116,57.99815,0.0,04/23/7809 +-1.57203,42.86982,8501,5,9,23,5,20,3.55,5.0,fr,44919,170,1889769,1,1,Active Shallow Crust,128.8963,89.99353,0.0,05/09/8501 +-1.57203,42.86982,6981,9,9,5,58,59,3.65,5.0,fr,44920,139,1889772,1,1,Active Shallow Crust,0.0,89.99012,0.0,09/09/6981 +-1.57203,42.86982,7086,7,15,16,31,14,3.65,15.0,fr,44921,141,1889773,1,1,Active Shallow Crust,0.0,89.99012,0.0,07/15/7086 +-1.57203,42.86982,7091,5,4,2,8,1,3.65,5.0,fr,44922,141,1889775,1,2,Active Shallow Crust,240.0009,58.01289,0.0,05/04/7091 +-1.57203,42.86982,6610,6,4,21,17,11,3.65,5.0,fr,44923,132,1889775,1,2,Active Shallow Crust,240.0009,58.01289,0.0,06/04/6610 +-1.57203,42.86982,3565,9,1,0,4,6,3.65,5.0,fr,44924,71,1889778,1,1,Active Shallow Crust,0.0,89.99001,-90.0,09/01/3565 +-1.57203,42.86982,2862,4,28,22,54,10,3.65,15.0,fr,44925,57,1889782,1,1,Active Shallow Crust,128.9005,89.96359,0.0,04/28/2862 +-1.57203,42.86982,7710,2,1,5,21,1,3.75,5.0,fr,44926,154,1889784,1,2,Active Shallow Crust,0.0,89.98972,0.0,02/01/7710 +-1.57203,42.86982,7315,5,1,21,7,54,3.75,5.0,fr,44927,146,1889784,1,2,Active Shallow Crust,0.0,89.98972,0.0,05/01/7315 +-1.57203,42.86982,500,7,22,9,46,50,3.75,5.0,fr,44928,9,1889787,1,1,Active Shallow Crust,240.0079,58.01745,0.0,07/22/0500 +-1.57203,42.86982,683,12,27,7,13,58,3.75,27.5,fr,44929,13,1889789,1,1,Active Shallow Crust,240.0079,58.01745,0.0,12/27/0683 +-1.57203,42.86982,312,4,6,11,58,40,3.75,5.0,fr,44930,6,1889793,1,1,Active Shallow Crust,128.8969,89.96743,0.0,04/06/0312 +-1.57203,42.86982,4775,12,31,16,2,14,3.85,5.0,fr,44931,95,1889796,1,2,Active Shallow Crust,0.0,89.98953,0.0,12/31/4775 +-1.57203,42.86982,8851,1,11,0,52,42,3.85,5.0,fr,44932,177,1889796,1,2,Active Shallow Crust,0.0,89.98953,0.0,01/11/8851 +-1.57203,42.86982,3682,8,16,6,24,32,3.85,27.5,fr,44933,73,1889798,1,1,Active Shallow Crust,0.0,89.98953,0.0,08/16/3682 +-1.57203,42.86982,5997,5,27,10,48,18,3.85,15.0,fr,44934,119,1889803,1,1,Active Shallow Crust,0.0,89.98942,-90.0,05/27/5997 +-1.57203,42.86982,9620,10,5,15,54,28,3.85,5.0,fr,44935,192,1889805,1,1,Active Shallow Crust,128.896,89.99346,0.0,10/05/9620 +-1.57203,42.86982,3769,2,10,16,24,17,3.95,5.0,fr,44936,75,1889808,1,4,Active Shallow Crust,0.0,89.98951,0.0,02/10/3769 +-1.57203,42.86982,7289,3,28,13,46,37,3.95,5.0,fr,44937,145,1889808,1,4,Active Shallow Crust,0.0,89.98951,0.0,03/28/7289 +-1.57203,42.86982,6519,12,16,13,53,0,3.95,5.0,fr,44938,130,1889808,1,4,Active Shallow Crust,0.0,89.98951,0.0,12/16/6519 +-1.57203,42.86982,5238,10,11,5,46,12,3.95,5.0,fr,44939,104,1889808,1,4,Active Shallow Crust,0.0,89.98951,0.0,10/11/5238 +-1.57203,42.86982,46,12,26,1,4,4,3.95,15.0,fr,44940,0,1889809,1,1,Active Shallow Crust,0.0,89.98951,0.0,12/26/0046 +-1.57203,42.86982,2107,10,18,11,28,54,3.95,5.0,fr,44941,42,1889811,1,1,Active Shallow Crust,240.0194,58.0049,0.0,10/18/2107 +-1.57203,42.86982,9047,5,22,21,22,0,3.95,5.0,fr,44942,180,1889814,1,1,Active Shallow Crust,0.0,89.99056,-90.0,05/22/9047 +-1.57203,42.86982,2314,11,28,15,32,26,3.95,15.0,fr,44943,46,1889818,1,1,Active Shallow Crust,128.9009,89.99359,0.0,11/28/2314 +-1.57203,42.86982,9303,4,14,21,12,6,4.05,5.0,fr,44944,186,1889820,1,2,Active Shallow Crust,0.0,89.98961,0.0,04/14/9303 +-1.57203,42.86982,7935,9,13,17,35,39,4.05,5.0,fr,44945,158,1889820,1,2,Active Shallow Crust,0.0,89.98961,0.0,09/13/7935 +-1.57203,42.86982,6892,9,1,5,10,52,4.05,27.5,fr,44946,137,1889822,1,1,Active Shallow Crust,0.0,89.98961,0.0,09/01/6892 +-1.57203,42.86982,3548,8,3,13,47,24,4.15,5.0,fr,44947,70,1889835,1,1,Active Shallow Crust,240.0078,57.99719,0.0,08/03/3548 +-1.57203,42.86982,2085,2,15,20,16,10,4.15,5.0,fr,44948,41,1889841,1,1,Active Shallow Crust,128.898,89.99352,0.0,02/15/2085 +-1.57203,42.86982,7120,5,29,13,32,22,4.25,5.0,fr,44949,142,1889844,1,1,Active Shallow Crust,0.0,89.9901,0.0,05/29/7120 +-1.57203,42.86982,9019,8,31,6,42,11,4.25,15.0,fr,44950,180,1889845,1,1,Active Shallow Crust,0.0,89.9901,0.0,08/31/9019 +-1.57203,42.86982,6632,8,12,8,44,1,4.25,27.5,fr,44951,132,1889846,1,1,Active Shallow Crust,0.0,89.9901,0.0,08/12/6632 +-1.57203,42.86982,6968,7,5,12,26,37,4.75,5.0,fr,44952,139,1889913,1,1,Active Shallow Crust,128.8896,89.98809,0.0,07/05/6968 +8.62037,48.936,8586,4,16,7,56,47,3.55,5.0,fr,44953,171,1890240,1,1,Active Shallow Crust,0.0,89.98676,0.0,04/16/8586 +8.62037,48.936,827,3,14,18,4,41,3.55,5.0,fr,44954,16,1890249,1,1,Active Shallow Crust,128.8951,90.0,0.0,03/14/0827 +8.62037,48.936,2474,8,10,12,33,17,3.65,5.0,fr,44955,49,1890252,1,1,Active Shallow Crust,0.0,89.98819,0.0,08/10/2474 +8.62037,48.936,4296,8,5,4,4,36,3.75,5.0,fr,44956,85,1890264,1,1,Active Shallow Crust,0.0,89.98948,0.0,08/05/4296 +8.62037,48.936,8714,10,27,13,15,26,3.75,27.5,fr,44957,174,1890272,1,1,Active Shallow Crust,0.0,89.98936,-90.0,10/27/8714 +8.62037,48.936,9777,5,7,18,6,36,3.95,27.5,fr,44958,195,1890293,1,1,Active Shallow Crust,240.0217,58.00343,0.0,05/07/9777 +8.62037,48.936,2144,3,21,6,48,46,4.05,15.0,fr,44959,42,1890301,1,1,Active Shallow Crust,0.0,89.99255,0.0,03/21/2144 +8.62037,48.936,9717,5,16,0,0,19,4.15,5.0,fr,44960,194,1890312,1,1,Active Shallow Crust,0.0,89.98672,0.0,05/16/9717 +8.62037,48.936,1908,4,29,16,25,56,4.25,15.0,fr,44961,38,1890325,1,1,Active Shallow Crust,0.0,89.98817,0.0,04/29/1908 +4.9706,48.74963,9669,8,26,10,13,25,3.65,5.0,fr,44962,193,1890732,1,1,Active Shallow Crust,0.0,89.98815,0.0,08/26/9669 +4.9706,48.74963,8170,2,15,9,40,48,3.65,5.0,fr,44963,163,1890735,1,1,Active Shallow Crust,240.002,58.01254,0.0,02/15/8170 +4.9706,48.74963,5424,11,6,13,36,5,4.35,27.5,fr,44964,108,1890818,1,1,Active Shallow Crust,0.0,89.98941,0.0,11/06/5424 +0.36057,49.25279,2443,8,29,10,49,47,3.55,5.0,fr,44965,48,1891209,1,1,Active Shallow Crust,128.8959,89.99383,0.0,08/29/2443 +0.36057,49.25279,5969,10,7,20,39,15,3.65,5.0,fr,44966,119,1891212,1,2,Active Shallow Crust,0.0,89.9901,0.0,10/07/5969 +0.36057,49.25279,3029,6,18,20,4,10,3.65,5.0,fr,44967,60,1891212,1,2,Active Shallow Crust,0.0,89.9901,0.0,06/18/3029 +0.36057,49.25279,3669,4,19,22,46,5,3.75,5.0,fr,44968,73,1891224,1,1,Active Shallow Crust,0.0,89.98987,0.0,04/19/3669 +0.36057,49.25279,8622,11,19,14,36,37,3.75,27.5,fr,44969,172,1891226,1,1,Active Shallow Crust,0.0,89.98987,0.0,11/19/8622 +0.36057,49.25279,9877,3,17,8,20,32,3.85,5.0,fr,44970,197,1891236,1,1,Active Shallow Crust,0.0,89.9901,0.0,03/17/9877 +0.36057,49.25279,2125,10,14,6,33,38,3.85,5.0,fr,44971,42,1891239,1,1,Active Shallow Crust,240.0113,57.99784,0.0,10/14/2125 +0.36057,49.25279,6933,5,9,6,32,44,3.85,27.5,fr,44972,138,1891241,1,1,Active Shallow Crust,240.0113,57.99784,0.0,05/09/6933 +0.36057,49.25279,4858,6,16,10,55,41,3.95,5.0,fr,44973,97,1891257,1,1,Active Shallow Crust,128.9001,89.99364,0.0,06/16/4858 +0.36057,49.25279,3135,1,10,8,22,34,4.15,27.5,fr,44974,62,1891274,1,1,Active Shallow Crust,359.9999,89.9901,0.0,01/10/3135 +0.36057,49.25279,5398,1,25,23,50,45,4.15,5.0,fr,44975,107,1891278,1,1,Active Shallow Crust,0.0,89.98999,-90.0,01/25/5398 +0.36057,49.25279,3984,11,9,0,5,48,4.45,5.0,fr,44976,79,1891308,1,1,Active Shallow Crust,0.0,89.98993,0.0,11/09/3984 +0.36057,49.25279,8736,10,12,13,25,27,4.65,5.0,fr,44977,174,1891335,1,1,Active Shallow Crust,240.0118,57.99439,0.0,10/12/8736 +0.36057,49.25279,7423,3,9,4,32,7,4.65,15.0,fr,44978,148,1891339,1,1,Active Shallow Crust,0.0,89.99003,-90.0,03/09/7423 +0.36057,49.25279,7227,2,16,17,12,27,5.15,5.0,fr,44979,144,1891392,1,2,Active Shallow Crust,0.0,89.99002,0.0,02/16/7227 +0.36057,49.25279,1653,12,30,9,42,33,5.15,5.0,fr,44980,33,1891392,1,2,Active Shallow Crust,0.0,89.99002,0.0,12/30/1653 +-0.48888,41.60984,7814,1,16,18,22,24,3.75,5.0,fr,44981,156,1891704,1,1,Active Shallow Crust,0.0,89.98989,0.0,01/16/7814 +5.06047,51.97052,7589,11,24,10,52,2,3.55,15.0,fr,44982,151,1892167,1,1,Active Shallow Crust,0.0,89.98743,-90.0,11/24/7589 +5.06047,51.97052,3234,8,21,17,34,48,3.55,15.0,fr,44983,64,1892170,1,1,Active Shallow Crust,128.8957,89.99379,0.0,08/21/3234 +5.06047,51.97052,6883,12,27,14,41,41,3.65,5.0,fr,44984,137,1892172,1,1,Active Shallow Crust,0.0,89.98893,0.0,12/27/6883 +0.48297,43.21613,1646,1,25,3,54,50,3.55,5.0,fr,44985,32,1892640,1,1,Active Shallow Crust,0.0,89.9899,0.0,01/25/1646 +0.48297,43.21613,2819,10,23,0,33,50,3.55,15.0,fr,44986,56,1892647,1,1,Active Shallow Crust,0.0,89.98978,-90.0,10/23/2819 +0.48297,43.21613,3636,8,2,21,20,8,3.65,5.0,fr,44987,72,1892652,1,1,Active Shallow Crust,0.0,89.99017,0.0,08/02/3636 +0.48297,43.21613,8463,5,7,9,58,11,3.65,15.0,fr,44988,169,1892653,1,1,Active Shallow Crust,0.0,89.99017,0.0,05/07/8463 +0.48297,43.21613,9227,4,20,11,3,41,3.75,5.0,fr,44989,184,1892673,1,1,Active Shallow Crust,128.8969,89.96737,0.0,04/20/9227 +0.48297,43.21613,7699,8,7,23,21,58,3.95,5.0,fr,44990,153,1892688,1,2,Active Shallow Crust,0.0,89.98985,0.0,08/07/7699 +0.48297,43.21613,5447,8,7,6,52,52,3.95,5.0,fr,44991,108,1892688,1,2,Active Shallow Crust,0.0,89.98985,0.0,08/07/5447 +0.48297,43.21613,5934,11,28,0,55,16,4.15,15.0,fr,44992,118,1892716,1,1,Active Shallow Crust,240.0079,57.99723,0.0,11/28/5934 +0.48297,43.21613,4144,8,19,11,19,31,4.25,27.5,fr,44993,82,1892726,1,1,Active Shallow Crust,0.0,89.98994,0.0,08/19/4144 +0.48297,43.21613,2439,3,3,4,17,12,4.25,5.0,fr,44994,48,1892730,1,1,Active Shallow Crust,0.0,89.99004,-90.0,03/03/2439 +0.48297,43.21613,8375,12,26,13,52,52,4.65,5.0,fr,44995,167,1892772,1,1,Active Shallow Crust,0.0,89.99003,0.0,12/26/8375 +0.48297,43.21613,8873,8,10,16,58,53,4.65,5.0,fr,44996,177,1892778,1,1,Active Shallow Crust,0.0,89.99004,-90.0,08/10/8873 +0.48297,43.21613,2868,1,6,8,6,8,4.95,5.0,fr,44997,57,1892808,1,1,Active Shallow Crust,0.0,89.99001,0.0,01/06/2868 +3.92476,44.73755,4507,4,30,14,17,45,3.55,5.0,fr,44998,90,1893120,1,1,Active Shallow Crust,0.0,89.98926,0.0,04/30/4507 +3.92476,44.73755,7171,5,2,9,30,34,3.75,5.0,fr,44999,143,1893144,1,1,Active Shallow Crust,0.0,89.98862,0.0,05/02/7171 +3.92476,44.73755,4067,6,28,23,3,19,3.75,5.0,fr,45000,81,1893147,1,1,Active Shallow Crust,240.0078,58.0178,0.0,06/28/4067 +3.92476,44.73755,1548,5,24,20,8,26,3.85,15.0,fr,45001,30,1893157,1,2,Active Shallow Crust,0.0,89.98986,0.0,05/24/1548 +3.92476,44.73755,6966,5,24,9,54,15,3.85,15.0,fr,45002,139,1893157,1,2,Active Shallow Crust,0.0,89.98986,0.0,05/24/6966 +3.92476,44.73755,3197,5,20,3,52,0,3.95,5.0,fr,45003,63,1893168,1,1,Active Shallow Crust,0.0,89.99096,0.0,05/20/3197 +3.92476,44.73755,9435,9,18,3,46,55,4.25,15.0,fr,45004,188,1893205,1,1,Active Shallow Crust,0.0,89.9904,0.0,09/18/9435 +3.92476,44.73755,9908,10,9,14,59,2,4.45,5.0,fr,45005,198,1893228,1,1,Active Shallow Crust,0.0,89.98983,0.0,10/09/9908 +-3.31156,42.80181,3685,10,15,14,31,50,3.75,5.0,fr,45006,73,1894104,1,1,Active Shallow Crust,0.0,89.99119,0.0,10/15/3685 +-3.31156,42.80181,5898,3,14,11,58,53,3.75,15.0,fr,45007,117,1894105,1,1,Active Shallow Crust,0.0,89.99119,0.0,03/14/5898 +-3.31156,42.80181,5048,2,9,16,6,55,3.75,15.0,fr,45008,100,1894108,1,1,Active Shallow Crust,240.0084,58.01721,0.0,02/09/5048 +-3.31156,42.80181,8269,10,2,9,43,20,3.85,5.0,fr,45009,165,1894116,1,1,Active Shallow Crust,0.0,89.98952,0.0,10/02/8269 +-3.31156,42.80181,3897,2,10,11,39,7,4.25,15.0,fr,45010,77,1894165,1,1,Active Shallow Crust,0.0,89.99008,0.0,02/10/3897 +-3.31156,42.80181,1690,8,4,2,17,9,4.25,27.5,fr,45011,33,1894166,1,1,Active Shallow Crust,0.0,89.99008,0.0,08/04/1690 +-3.31156,42.80181,4619,5,1,9,31,27,4.45,5.0,fr,45012,92,1894188,1,1,Active Shallow Crust,0.0,89.9895,0.0,05/01/4619 +-3.31156,42.80181,7502,5,22,20,13,34,5.15,15.0,fr,45013,150,1894279,1,1,Active Shallow Crust,0.0,89.98991,-90.0,05/22/7502 +-3.31156,42.80181,7693,6,11,19,25,19,5.55,5.0,fr,45014,153,1894323,1,1,Active Shallow Crust,240.026,58.00189,0.0,06/11/7693 +3.77951,51.31648,4007,9,16,16,51,42,3.65,15.0,fr,45015,80,1895056,1,1,Active Shallow Crust,240.0017,58.01311,0.0,09/16/4007 +3.77951,51.31648,1286,7,11,22,44,13,3.85,5.0,fr,45016,25,1895079,1,1,Active Shallow Crust,240.0117,57.99792,0.0,07/11/1286 +3.77951,51.31648,7348,5,13,23,48,40,4.35,5.0,fr,45017,146,1895142,1,1,Active Shallow Crust,0.0,89.98985,-90.0,05/13/7348 +3.77951,51.31648,6352,5,14,15,1,26,5.55,15.0,fr,45018,127,1895287,1,1,Active Shallow Crust,0.0,89.99011,-90.0,05/14/6352 +4.29689,40.64367,6337,10,27,2,33,15,3.55,5.0,fr,45019,126,1895520,1,2,Active Shallow Crust,0.0,89.99235,0.0,10/27/6337 +4.29689,40.64367,7531,9,1,6,41,21,3.55,5.0,fr,45020,150,1895520,1,2,Active Shallow Crust,0.0,89.99235,0.0,09/01/7531 +4.29689,40.64367,4959,9,28,15,18,16,3.55,15.0,fr,45021,99,1895524,1,1,Active Shallow Crust,240.0126,57.99678,0.0,09/28/4959 +4.29689,40.64367,2150,2,23,2,41,0,3.75,5.0,fr,45022,42,1895553,1,1,Active Shallow Crust,128.897,89.96739,0.0,02/23/2150 +4.29689,40.64367,2085,7,25,14,33,11,4.45,5.0,fr,45023,41,1895631,1,1,Active Shallow Crust,240.0038,57.99448,0.0,07/25/2085 +-2.19005,49.21784,4041,10,9,1,51,12,3.55,5.0,fr,45024,80,1896000,1,1,Active Shallow Crust,0.0,89.99012,0.0,10/09/4041 +-2.19005,49.21784,4117,1,27,22,37,22,3.55,27.5,fr,45025,82,1896002,1,1,Active Shallow Crust,0.0,89.99012,0.0,01/27/4117 +-2.19005,49.21784,2735,4,18,11,37,0,3.55,5.0,fr,45026,54,1896003,1,1,Active Shallow Crust,240.0121,57.99837,0.0,04/18/2735 +-2.19005,49.21784,841,2,11,21,31,44,3.55,5.0,fr,45027,16,1896009,1,1,Active Shallow Crust,128.8953,89.99342,0.0,02/11/0841 +-2.19005,49.21784,9608,10,24,5,23,58,3.65,5.0,fr,45028,192,1896012,1,1,Active Shallow Crust,0.0,89.9912,0.0,10/24/9608 +-2.19005,49.21784,9337,9,27,6,24,45,3.75,5.0,fr,45029,186,1896024,1,2,Active Shallow Crust,0.0,89.98953,0.0,09/27/9337 +-2.19005,49.21784,2172,12,3,14,48,53,3.75,5.0,fr,45030,43,1896024,1,2,Active Shallow Crust,0.0,89.98953,0.0,12/03/2172 +-2.19005,49.21784,6125,6,21,20,24,29,3.75,15.0,fr,45031,122,1896025,1,1,Active Shallow Crust,0.0,89.98953,0.0,06/21/6125 +-2.19005,49.21784,5279,4,4,17,38,36,3.75,15.0,fr,45032,105,1896028,1,1,Active Shallow Crust,240.0082,58.01772,0.0,04/04/5279 +-2.19005,49.21784,6460,3,22,21,28,37,3.85,5.0,fr,45033,129,1896036,1,1,Active Shallow Crust,0.0,89.99068,0.0,03/22/6460 +-2.19005,49.21784,911,4,11,14,32,34,3.85,15.0,fr,45034,18,1896046,1,1,Active Shallow Crust,128.8954,89.993,0.0,04/11/0911 +-2.19005,49.21784,161,2,28,18,21,43,3.95,5.0,fr,45035,3,1896048,1,1,Active Shallow Crust,0.0,89.98961,0.0,02/28/0161 +-2.19005,49.21784,8746,5,28,6,26,11,3.95,15.0,fr,45036,174,1896049,1,1,Active Shallow Crust,0.0,89.98961,0.0,05/28/8746 +-2.19005,49.21784,8605,9,7,4,49,2,3.95,5.0,fr,45037,172,1896051,1,1,Active Shallow Crust,240.0206,58.00506,0.0,09/07/8605 +-2.19005,49.21784,5923,6,9,19,26,2,4.05,5.0,fr,45038,118,1896060,1,1,Active Shallow Crust,0.0,89.99074,0.0,06/09/5923 +-2.19005,49.21784,7607,2,26,19,33,28,4.15,5.0,fr,45039,152,1896072,1,1,Active Shallow Crust,0.0,89.9901,0.0,02/26/7607 +-2.19005,49.21784,3685,6,5,15,28,35,4.25,15.0,fr,45040,73,1896085,1,1,Active Shallow Crust,0.0,89.9897,0.0,06/05/3685 +-2.19005,49.21784,8390,9,2,13,51,1,4.35,5.0,fr,45041,167,1896102,1,2,Active Shallow Crust,0.0,89.98939,-90.0,09/02/8390 +-2.19005,49.21784,2548,4,12,20,51,57,4.35,5.0,fr,45042,50,1896102,1,2,Active Shallow Crust,0.0,89.98939,-90.0,04/12/2548 +-2.19005,49.21784,2372,1,4,5,58,58,4.45,5.0,fr,45043,47,1896108,1,1,Active Shallow Crust,0.0,89.98948,0.0,01/04/2372 +-2.19005,49.21784,5993,2,13,6,40,30,4.65,5.0,fr,45044,119,1896132,1,1,Active Shallow Crust,0.0,89.98979,0.0,02/13/5993 +-2.19005,49.21784,6768,5,2,9,17,42,5.35,15.0,fr,45045,135,1896217,1,1,Active Shallow Crust,0.0,89.99004,0.0,05/02/6768 +2.43456,45.81386,9808,10,15,8,9,9,3.55,5.0,fr,45046,196,1896480,1,2,Active Shallow Crust,0.0,89.98946,0.0,10/15/9808 +2.43456,45.81386,6609,7,1,3,36,57,3.55,5.0,fr,45047,132,1896480,1,2,Active Shallow Crust,0.0,89.98946,0.0,07/01/6609 +2.43456,45.81386,6214,8,18,21,54,34,3.55,15.0,fr,45048,124,1896481,1,2,Active Shallow Crust,0.0,89.98946,0.0,08/18/6214 +2.43456,45.81386,5897,3,27,22,45,31,3.55,15.0,fr,45049,117,1896481,1,2,Active Shallow Crust,0.0,89.98946,0.0,03/27/5897 +2.43456,45.81386,6183,9,23,10,48,53,3.65,5.0,fr,45050,123,1896492,1,1,Active Shallow Crust,0.0,89.9906,0.0,09/23/6183 +2.43456,45.81386,5136,2,2,0,36,42,3.65,15.0,fr,45051,102,1896493,1,2,Active Shallow Crust,0.0,89.9906,0.0,02/02/5136 +2.43456,45.81386,1434,4,4,7,53,14,3.65,15.0,fr,45052,28,1896493,1,2,Active Shallow Crust,0.0,89.9906,0.0,04/04/1434 +2.43456,45.81386,8850,4,21,10,4,38,3.75,5.0,fr,45053,176,1896504,1,1,Active Shallow Crust,0.0,89.98883,0.0,04/21/8850 +2.43456,45.81386,1617,6,19,21,15,48,3.85,15.0,fr,45054,32,1896520,1,1,Active Shallow Crust,240.0105,57.99771,0.0,06/19/1617 +2.43456,45.81386,2326,10,20,20,51,12,4.35,5.0,fr,45055,46,1896576,1,2,Active Shallow Crust,0.0,89.9902,0.0,10/20/2326 +2.43456,45.81386,8928,6,10,2,57,21,4.35,5.0,fr,45056,178,1896576,1,2,Active Shallow Crust,0.0,89.9902,0.0,06/10/8928 +2.43456,45.81386,3674,3,13,2,36,30,4.45,15.0,fr,45057,73,1896589,1,1,Active Shallow Crust,0.0,89.99002,0.0,03/13/3674 +2.43456,45.81386,2144,9,19,18,28,9,4.75,27.5,fr,45058,42,1896626,1,1,Active Shallow Crust,0.0,89.99029,0.0,09/19/2144 +2.43456,45.81386,928,11,8,18,31,41,5.05,5.0,fr,45059,18,1896660,1,1,Active Shallow Crust,0.0,89.99,0.0,11/08/0928 +2.43456,45.81386,9455,5,10,5,44,54,5.15,15.0,fr,45060,189,1896673,1,1,Active Shallow Crust,0.0,89.98997,0.0,05/10/9455 +2.27342,53.32311,2751,2,8,5,27,51,3.55,5.0,fr,45061,55,1896960,1,1,Active Shallow Crust,0.0,89.99097,0.0,02/08/2751 +2.27342,53.32311,4188,6,19,19,33,42,3.85,5.0,fr,45062,83,1896996,1,1,Active Shallow Crust,0.0,89.98934,0.0,06/19/4188 +2.27342,53.32311,9108,3,9,11,26,38,4.05,5.0,fr,45063,182,1897020,1,1,Active Shallow Crust,0.0,89.98984,0.0,03/09/9108 +2.27342,53.32311,2113,8,9,8,49,51,4.85,15.0,fr,45064,42,1897117,1,1,Active Shallow Crust,0.0,89.98988,0.0,08/09/2113 +1.61563,44.6636,590,3,23,12,39,18,3.55,5.0,fr,45065,11,1897449,1,2,Active Shallow Crust,128.8966,89.99373,0.0,03/23/0590 +1.61563,44.6636,7291,5,13,4,32,36,3.55,5.0,fr,45066,145,1897449,1,2,Active Shallow Crust,128.8966,89.99373,0.0,05/13/7291 +1.61563,44.6636,9495,4,1,6,3,9,3.65,5.0,fr,45067,189,1897461,1,1,Active Shallow Crust,128.9008,89.96349,0.0,04/01/9495 +1.61563,44.6636,2727,4,12,20,51,7,3.95,15.0,fr,45068,54,1897489,1,1,Active Shallow Crust,0.0,89.98981,0.0,04/12/2727 +1.61563,44.6636,7249,2,10,19,18,56,4.15,15.0,fr,45069,144,1897516,1,1,Active Shallow Crust,240.0081,57.99728,0.0,02/10/7249 +1.61563,44.6636,4782,8,27,18,47,56,4.25,15.0,fr,45070,95,1897528,1,1,Active Shallow Crust,240.0072,57.99401,0.0,08/27/4782 +1.61563,44.6636,1920,3,19,1,48,36,4.55,5.0,fr,45071,38,1897560,1,1,Active Shallow Crust,0.0,89.98979,0.0,03/19/1920 +-1.98821,47.61973,6884,4,8,7,49,30,3.55,5.0,fr,45072,137,1897920,1,1,Active Shallow Crust,0.0,89.98981,0.0,04/08/6884 +-1.98821,47.61973,9047,6,22,3,49,27,3.75,27.5,fr,45073,180,1897955,1,1,Active Shallow Crust,128.8964,89.96739,0.0,06/22/9047 +-1.98821,47.61973,936,9,25,12,21,58,3.85,5.0,fr,45074,18,1897956,1,1,Active Shallow Crust,0.0,89.99038,0.0,09/25/0936 +-1.98821,47.61973,9073,12,11,23,22,23,3.95,15.0,fr,45075,181,1897969,1,1,Active Shallow Crust,0.0,89.99035,0.0,12/11/9073 +-1.98821,47.61973,8656,4,11,17,23,4,4.25,5.0,fr,45076,173,1898007,1,1,Active Shallow Crust,240.0077,57.99419,0.0,04/11/8656 +-1.98821,47.61973,1653,3,26,22,59,22,4.85,5.0,fr,45077,33,1898076,1,1,Active Shallow Crust,0.0,89.9901,0.0,03/26/1653 +-2.9748,42.70442,6421,5,16,2,35,23,3.65,5.0,fr,45078,128,1898412,1,1,Active Shallow Crust,0.0,89.9901,0.0,05/16/6421 +-2.9748,42.70442,9659,9,29,10,2,37,3.95,5.0,fr,45079,193,1898448,1,2,Active Shallow Crust,0.0,89.99065,0.0,09/29/9659 +-2.9748,42.70442,3489,1,30,4,4,9,3.95,5.0,fr,45080,69,1898448,1,2,Active Shallow Crust,0.0,89.99065,0.0,01/30/3489 +-2.9748,42.70442,7324,5,11,15,29,27,4.05,5.0,fr,45081,146,1898460,1,1,Active Shallow Crust,0.0,89.98958,0.0,05/11/7324 +-2.9748,42.70442,721,11,25,19,8,20,4.25,5.0,fr,45082,14,1898484,1,1,Active Shallow Crust,0.0,89.99007,0.0,11/25/0721 +-2.9748,42.70442,4062,4,1,1,13,31,4.65,5.0,fr,45083,81,1898532,1,1,Active Shallow Crust,0.0,89.98956,0.0,04/01/4062 +-2.9748,42.70442,5600,5,6,7,0,9,4.95,27.5,fr,45084,111,1898570,1,1,Active Shallow Crust,0.0,89.98965,0.0,05/06/5600 +5.09903,42.77802,5130,7,13,23,32,54,3.55,5.0,fr,45085,102,1898889,1,1,Active Shallow Crust,128.8977,89.9926,0.0,07/13/5130 +5.09903,42.77802,1237,7,27,13,10,57,3.95,5.0,fr,45086,24,1898928,1,1,Active Shallow Crust,0.0,89.99066,0.0,07/27/1237 +5.09903,42.77802,2916,7,11,9,54,42,3.95,27.5,fr,45087,58,1898930,1,1,Active Shallow Crust,0.0,89.99066,0.0,07/11/2916 +3.19125,45.80316,9499,1,3,22,19,20,3.55,5.0,fr,45088,189,1899360,1,2,Active Shallow Crust,0.0,89.98946,0.0,01/03/9499 +3.19125,45.80316,9188,9,21,5,14,19,3.55,5.0,fr,45089,183,1899360,1,2,Active Shallow Crust,0.0,89.98946,0.0,09/21/9188 +3.19125,45.80316,7275,7,1,7,57,44,3.55,15.0,fr,45090,145,1899361,1,1,Active Shallow Crust,0.0,89.98946,0.0,07/01/7275 +3.19125,45.80316,1652,4,27,22,33,4,3.55,27.5,fr,45091,33,1899362,1,1,Active Shallow Crust,0.0,89.98946,0.0,04/27/1652 +3.19125,45.80316,6347,4,14,13,26,36,3.65,5.0,fr,45092,126,1899372,1,4,Active Shallow Crust,0.0,89.9906,0.0,04/14/6347 +3.19125,45.80316,9816,2,11,23,18,2,3.65,5.0,fr,45093,196,1899372,1,4,Active Shallow Crust,0.0,89.9906,0.0,02/11/9816 +3.19125,45.80316,1801,6,14,21,34,22,3.65,5.0,fr,45094,36,1899372,1,4,Active Shallow Crust,0.0,89.9906,0.0,06/14/1801 +3.19125,45.80316,7201,12,23,21,19,56,3.65,5.0,fr,45095,144,1899372,1,4,Active Shallow Crust,0.0,89.9906,0.0,12/23/7201 +3.19125,45.80316,705,10,22,10,26,59,3.65,15.0,fr,45096,14,1899373,1,4,Active Shallow Crust,0.0,89.9906,0.0,10/22/0705 +3.19125,45.80316,2421,3,28,13,7,34,3.65,15.0,fr,45097,48,1899373,1,4,Active Shallow Crust,0.0,89.9906,0.0,03/28/2421 +3.19125,45.80316,7355,1,10,17,45,21,3.65,15.0,fr,45098,147,1899373,1,4,Active Shallow Crust,0.0,89.9906,0.0,01/10/7355 +3.19125,45.80316,433,5,21,7,39,20,3.65,15.0,fr,45099,8,1899373,1,4,Active Shallow Crust,0.0,89.9906,0.0,05/21/0433 +3.19125,45.80316,1592,6,2,21,48,6,3.65,5.0,fr,45100,31,1899375,1,1,Active Shallow Crust,240.0009,58.01298,0.0,06/02/1592 +3.19125,45.80316,9742,11,24,17,41,18,3.75,5.0,fr,45101,194,1899384,1,3,Active Shallow Crust,0.0,89.98883,0.0,11/24/9742 +3.19125,45.80316,8345,5,5,10,37,45,3.75,5.0,fr,45102,166,1899384,1,3,Active Shallow Crust,0.0,89.98883,0.0,05/05/8345 +3.19125,45.80316,6397,5,15,10,7,37,3.75,5.0,fr,45103,127,1899384,1,3,Active Shallow Crust,0.0,89.98883,0.0,05/15/6397 +3.19125,45.80316,1472,12,18,1,30,6,3.75,15.0,fr,45104,29,1899385,1,2,Active Shallow Crust,0.0,89.98883,0.0,12/18/1472 +3.19125,45.80316,2017,10,16,1,59,29,3.75,15.0,fr,45105,40,1899385,1,2,Active Shallow Crust,0.0,89.98883,0.0,10/16/2017 +3.19125,45.80316,7495,11,20,17,12,58,3.75,27.5,fr,45106,149,1899386,1,2,Active Shallow Crust,0.0,89.98883,0.0,11/20/7495 +3.19125,45.80316,2657,8,26,11,55,39,3.75,27.5,fr,45107,53,1899386,1,2,Active Shallow Crust,0.0,89.98883,0.0,08/26/2657 +3.19125,45.80316,1491,10,24,2,21,34,3.75,5.0,fr,45108,29,1899387,1,1,Active Shallow Crust,240.0085,58.01738,0.0,10/24/1491 +3.19125,45.80316,8273,1,31,21,23,52,3.85,5.0,fr,45109,165,1899396,1,2,Active Shallow Crust,0.0,89.99004,0.0,01/31/8273 +3.19125,45.80316,7956,8,24,20,31,7,3.85,5.0,fr,45110,159,1899396,1,2,Active Shallow Crust,0.0,89.99004,0.0,08/24/7956 +3.19125,45.80316,5327,11,3,18,39,44,3.85,5.0,fr,45111,106,1899399,1,1,Active Shallow Crust,240.0109,57.99806,0.0,11/03/5327 +3.19125,45.80316,5866,7,26,22,6,48,3.85,15.0,fr,45112,117,1899400,1,1,Active Shallow Crust,240.0109,57.99806,0.0,07/26/5866 +3.19125,45.80316,2518,1,24,3,51,24,3.85,5.0,fr,45113,50,1899402,1,1,Active Shallow Crust,0.0,89.98993,-90.0,01/24/2518 +3.19125,45.80316,4142,9,26,1,13,37,3.95,27.5,fr,45114,82,1899410,1,1,Active Shallow Crust,0.0,89.98891,0.0,09/26/4142 +3.19125,45.80316,6905,12,9,13,52,57,3.95,5.0,fr,45115,138,1899411,1,1,Active Shallow Crust,240.0196,58.00505,0.0,12/09/6905 +3.19125,45.80316,1961,4,29,15,17,35,3.95,5.0,fr,45116,39,1899414,1,1,Active Shallow Crust,0.0,89.99103,-90.0,04/29/1961 +3.19125,45.80316,3151,7,18,16,14,11,3.95,5.0,fr,45117,63,1899417,1,1,Active Shallow Crust,128.9006,89.99335,0.0,07/18/3151 +3.19125,45.80316,5880,3,22,19,26,49,4.05,5.0,fr,45118,117,1899420,1,3,Active Shallow Crust,0.0,89.99012,0.0,03/22/5880 +3.19125,45.80316,2117,8,27,15,36,34,4.05,5.0,fr,45119,42,1899420,1,3,Active Shallow Crust,0.0,89.99012,0.0,08/27/2117 +3.19125,45.80316,4673,4,19,23,50,46,4.05,5.0,fr,45120,93,1899420,1,3,Active Shallow Crust,0.0,89.99012,0.0,04/19/4673 +3.19125,45.80316,9475,2,5,17,0,14,4.05,27.5,fr,45121,189,1899425,1,1,Active Shallow Crust,240.0058,58.006,0.0,02/05/9475 +3.19125,45.80316,7393,2,4,18,14,34,4.15,27.5,fr,45122,147,1899437,1,1,Active Shallow Crust,240.0086,57.99712,0.0,02/04/7393 +3.19125,45.80316,1957,8,29,21,58,32,4.15,15.0,fr,45123,39,1899439,1,1,Active Shallow Crust,0.0,89.98931,-90.0,08/29/1957 +3.19125,45.80316,5234,8,8,2,57,49,4.25,5.0,fr,45124,104,1899447,1,1,Active Shallow Crust,240.0077,57.99383,0.0,08/08/5234 +3.19125,45.80316,6791,1,31,12,21,37,4.25,5.0,fr,45125,135,1899453,1,1,Active Shallow Crust,128.8945,89.98092,0.0,01/31/6791 +3.19125,45.80316,5948,6,7,12,9,57,4.45,15.0,fr,45126,118,1899469,1,1,Active Shallow Crust,0.0,89.99002,0.0,06/07/5948 +3.19125,45.80316,9095,9,23,2,25,3,4.45,5.0,fr,45127,181,1899474,1,1,Active Shallow Crust,0.0,89.98991,-90.0,09/23/9095 +3.19125,45.80316,4072,9,11,18,23,52,4.55,15.0,fr,45128,81,1899481,1,1,Active Shallow Crust,0.0,89.99,0.0,09/11/4072 +3.19125,45.80316,7861,2,12,10,14,19,4.55,5.0,fr,45129,157,1899483,1,1,Active Shallow Crust,240.009,57.99744,0.0,02/12/7861 +3.19125,45.80316,4307,8,12,22,44,10,4.85,15.0,fr,45130,86,1899517,1,1,Active Shallow Crust,0.0,89.98977,0.0,08/12/4307 +3.19125,45.80316,1978,8,16,13,14,36,5.45,5.0,fr,45131,39,1899588,1,1,Active Shallow Crust,0.0,89.99014,0.0,08/16/1978 +-6.18285,48.42848,6741,4,16,2,13,19,3.75,5.0,fr,45132,134,1899867,1,1,Active Shallow Crust,240.0086,58.01694,0.0,04/16/6741 +-6.18285,48.42848,6688,4,15,19,9,43,3.95,5.0,fr,45133,133,1899894,1,1,Active Shallow Crust,0.0,89.99146,-90.0,04/15/6688 +-6.18285,48.42848,8987,5,1,9,32,34,4.45,5.0,fr,45134,179,1899948,1,1,Active Shallow Crust,0.0,89.9905,0.0,05/01/8987 +5.38435,51.52929,7085,11,15,19,44,43,3.55,5.0,fr,45135,141,1900320,1,2,Active Shallow Crust,0.0,89.98745,0.0,11/15/7085 +5.38435,51.52929,5450,10,22,22,57,10,3.55,5.0,fr,45136,108,1900320,1,2,Active Shallow Crust,0.0,89.98745,0.0,10/22/5450 +5.38435,51.52929,4905,7,18,8,25,38,3.55,15.0,fr,45137,98,1900321,1,1,Active Shallow Crust,0.0,89.98745,0.0,07/18/4905 +5.38435,51.52929,7223,1,24,21,16,25,3.75,15.0,fr,45138,144,1900354,1,1,Active Shallow Crust,128.8951,89.96758,0.0,01/24/7223 +5.38435,51.52929,7984,11,6,10,15,40,3.85,5.0,fr,45139,159,1900356,1,1,Active Shallow Crust,0.0,89.99112,0.0,11/06/7984 +5.38435,51.52929,3333,9,30,23,16,35,3.95,15.0,fr,45140,66,1900369,1,1,Active Shallow Crust,0.0,89.98812,0.0,09/30/3333 +5.38435,51.52929,9041,3,9,22,10,20,4.45,5.0,fr,45141,180,1900431,1,1,Active Shallow Crust,240.0065,57.99492,0.0,03/09/9041 +0.68355,47.28098,7309,11,26,15,56,7,3.65,5.0,fr,45142,146,1900812,1,2,Active Shallow Crust,0.0,89.99009,0.0,11/26/7309 +0.68355,47.28098,4916,4,17,10,47,6,3.65,5.0,fr,45143,98,1900812,1,2,Active Shallow Crust,0.0,89.99009,0.0,04/17/4916 +0.68355,47.28098,3659,7,24,19,29,10,3.65,15.0,fr,45144,73,1900813,1,1,Active Shallow Crust,0.0,89.99009,0.0,07/24/3659 +0.68355,47.28098,4894,5,12,20,11,29,3.75,5.0,fr,45145,97,1900827,1,1,Active Shallow Crust,240.0084,58.0176,0.0,05/12/4894 +0.68355,47.28098,6256,5,2,11,55,21,3.95,5.0,fr,45146,125,1900848,1,2,Active Shallow Crust,0.0,89.98975,0.0,05/02/6256 +0.68355,47.28098,3168,1,16,4,13,24,3.95,5.0,fr,45147,63,1900848,1,2,Active Shallow Crust,0.0,89.98975,0.0,01/16/3168 +0.68355,47.28098,7867,2,23,9,15,33,4.15,5.0,fr,45148,157,1900872,1,1,Active Shallow Crust,0.0,89.99014,0.0,02/23/7867 +0.68355,47.28098,66,5,15,1,54,30,4.45,5.0,fr,45149,1,1900914,1,1,Active Shallow Crust,0.0,89.98987,-90.0,05/15/0066 +0.68355,47.28098,2929,2,27,15,15,10,4.75,5.0,fr,45150,58,1900944,1,1,Active Shallow Crust,0.0,89.98991,0.0,02/27/2929 +0.6835632,47.28098,7628,1,12,7,10,48,6.65,10.68981,fr,45151,152,1901172,1,1,Active Shallow Crust,360.0,89.99001,0.0,01/12/7628 +-0.55888,49.86018,9126,10,15,16,33,39,3.85,5.0,fr,45152,182,1901316,1,1,Active Shallow Crust,0.0,89.99022,0.0,10/15/9126 +-0.55888,49.86018,1969,3,13,5,2,20,4.15,5.0,fr,45153,39,1901361,1,1,Active Shallow Crust,128.897,89.99369,0.0,03/13/1969 +-0.55888,49.86018,463,11,12,17,36,54,4.55,5.0,fr,45154,9,1901400,1,1,Active Shallow Crust,0.0,89.98997,0.0,11/12/0463 +-0.55888,49.86018,4668,1,19,5,47,6,4.65,15.0,fr,45155,93,1901422,1,1,Active Shallow Crust,128.8902,89.98701,0.0,01/19/4668 +-0.30791,45.05113,5063,10,16,3,31,9,3.65,27.5,fr,45156,101,1901774,1,1,Active Shallow Crust,0.0,89.99008,0.0,10/16/5063 +-0.30791,45.05113,3818,8,7,12,22,36,3.85,5.0,fr,45157,76,1901796,1,1,Active Shallow Crust,0.0,89.98991,0.0,08/07/3818 +-0.3079077,45.05113,3235,8,17,23,59,13,6.15,6.011322,fr,45158,64,1902072,1,1,Active Shallow Crust,360.0,89.99001,0.0,08/17/3235 +3.6884,52.45762,2014,8,10,15,16,1,3.65,15.0,fr,45159,40,1902253,1,1,Active Shallow Crust,0.0,89.98904,0.0,08/10/2014 +-2.17505,42.38427,9814,7,9,9,47,35,3.55,15.0,fr,45160,196,1902721,1,1,Active Shallow Crust,0.0,89.98883,0.0,07/09/9814 +-2.17505,42.38427,2959,7,6,23,41,44,3.55,5.0,fr,45161,59,1902726,1,1,Active Shallow Crust,0.0,89.9887,-90.0,07/06/2959 +-2.17505,42.38427,7908,2,23,5,53,5,3.55,27.5,fr,45162,158,1902728,1,1,Active Shallow Crust,0.0,89.9887,-90.0,02/23/7908 +-2.17505,42.38427,978,9,9,12,11,37,3.65,5.0,fr,45163,19,1902732,1,1,Active Shallow Crust,0.0,89.99004,0.0,09/09/0978 +-2.17505,42.38427,9043,7,26,11,54,0,3.65,15.0,fr,45164,180,1902733,1,1,Active Shallow Crust,0.0,89.99004,0.0,07/26/9043 +-2.17505,42.38427,3905,5,1,2,34,34,3.75,5.0,fr,45165,78,1902744,1,1,Active Shallow Crust,0.0,89.99113,0.0,05/01/3905 +-2.17505,42.38427,4362,4,16,17,50,36,3.95,15.0,fr,45166,87,1902769,1,1,Active Shallow Crust,0.0,89.9906,0.0,04/16/4362 +-2.17505,42.38427,6115,8,14,22,29,1,4.95,5.0,fr,45167,122,1902888,1,1,Active Shallow Crust,0.0,89.99034,0.0,08/14/6115 +-2.17505,42.38427,5541,5,31,21,31,35,4.95,5.0,fr,45168,110,1902897,1,1,Active Shallow Crust,128.8914,89.98977,0.0,05/31/5541 +-3.14617,48.60104,4171,6,8,15,1,42,3.55,5.0,fr,45169,83,1903200,1,1,Active Shallow Crust,0.0,89.99,0.0,06/08/4171 +-3.14617,48.60104,5847,4,27,14,33,20,3.55,5.0,fr,45170,116,1903206,1,1,Active Shallow Crust,0.0,89.98988,-90.0,04/27/5847 +-3.14617,48.60104,5299,2,15,0,19,29,3.55,15.0,fr,45171,105,1903210,1,2,Active Shallow Crust,128.8961,89.995,0.0,02/15/5299 +-3.14617,48.60104,8458,12,16,18,8,30,3.55,15.0,fr,45172,169,1903210,1,2,Active Shallow Crust,128.8961,89.995,0.0,12/16/8458 +-3.14617,48.60104,6375,7,14,5,40,16,3.65,5.0,fr,45173,127,1903212,1,1,Active Shallow Crust,0.0,89.99108,0.0,07/14/6375 +-3.14617,48.60104,3315,12,16,14,34,25,3.65,5.0,fr,45174,66,1903215,1,1,Active Shallow Crust,240.001,58.01305,0.0,12/16/3315 +-3.14617,48.60104,3933,2,7,4,21,30,3.65,15.0,fr,45175,78,1903219,1,1,Active Shallow Crust,0.0,89.99098,-90.0,02/07/3933 +-3.14617,48.60104,6776,11,29,12,29,52,3.75,5.0,fr,45176,135,1903224,1,5,Active Shallow Crust,0.0,89.9894,0.0,11/29/6776 +-3.14617,48.60104,1820,12,18,1,27,35,3.75,5.0,fr,45177,36,1903224,1,5,Active Shallow Crust,0.0,89.9894,0.0,12/18/1820 +-3.14617,48.60104,5650,7,17,20,3,38,3.75,5.0,fr,45178,112,1903224,1,5,Active Shallow Crust,0.0,89.9894,0.0,07/17/5650 +-3.14617,48.60104,974,7,26,23,44,47,3.75,5.0,fr,45179,19,1903224,1,5,Active Shallow Crust,0.0,89.9894,0.0,07/26/0974 +-3.14617,48.60104,7434,1,30,14,41,52,3.75,5.0,fr,45180,148,1903224,1,5,Active Shallow Crust,0.0,89.9894,0.0,01/30/7434 +-3.14617,48.60104,3209,10,1,13,48,44,3.75,15.0,fr,45181,64,1903225,1,2,Active Shallow Crust,0.0,89.9894,0.0,10/01/3209 +-3.14617,48.60104,4242,10,11,8,27,0,3.75,15.0,fr,45182,84,1903225,1,2,Active Shallow Crust,0.0,89.9894,0.0,10/11/4242 +-3.14617,48.60104,2219,12,20,8,53,32,3.75,27.5,fr,45183,44,1903229,1,1,Active Shallow Crust,240.0084,58.01806,0.0,12/20/2219 +-3.14617,48.60104,5063,3,5,5,33,35,3.85,5.0,fr,45184,101,1903236,1,2,Active Shallow Crust,0.0,89.99055,0.0,03/05/5063 +-3.14617,48.60104,1667,3,23,8,18,45,3.85,5.0,fr,45185,33,1903236,1,2,Active Shallow Crust,0.0,89.99055,0.0,03/23/1667 +-3.14617,48.60104,4776,11,13,13,32,40,3.85,27.5,fr,45186,95,1903241,1,1,Active Shallow Crust,240.0109,57.99809,0.0,11/13/4776 +-3.14617,48.60104,7863,6,8,4,35,23,3.85,5.0,fr,45187,157,1903242,1,1,Active Shallow Crust,0.0,89.99045,-90.0,06/08/7863 +-3.14617,48.60104,9382,11,18,1,18,51,3.85,5.0,fr,45188,187,1903245,1,1,Active Shallow Crust,128.8952,89.9941,0.0,11/18/9382 +-3.14617,48.60104,3581,3,13,5,21,27,3.95,15.0,fr,45189,71,1903249,1,2,Active Shallow Crust,0.0,89.98948,0.0,03/13/3581 +-3.14617,48.60104,2137,12,9,11,36,20,3.95,15.0,fr,45190,42,1903249,1,2,Active Shallow Crust,0.0,89.98948,0.0,12/09/2137 +-3.14617,48.60104,7803,9,30,0,45,6,4.05,5.0,fr,45191,156,1903260,1,2,Active Shallow Crust,0.0,89.99062,0.0,09/30/7803 +-3.14617,48.60104,5409,5,11,2,31,15,4.05,5.0,fr,45192,108,1903260,1,2,Active Shallow Crust,0.0,89.99062,0.0,05/11/5409 +-3.14617,48.60104,2511,6,23,22,46,2,4.05,5.0,fr,45193,50,1903269,1,1,Active Shallow Crust,128.89,89.99344,0.0,06/23/2511 +-3.14617,48.60104,6033,6,6,18,22,56,4.15,5.0,fr,45194,120,1903272,1,1,Active Shallow Crust,0.0,89.98997,0.0,06/06/6033 +-3.14617,48.60104,7155,8,11,5,28,47,4.15,5.0,fr,45195,143,1903275,1,1,Active Shallow Crust,240.0087,57.99744,0.0,08/11/7155 +-3.14617,48.60104,8296,10,15,1,52,57,4.25,5.0,fr,45196,165,1903287,1,1,Active Shallow Crust,240.0082,57.99408,0.0,10/15/8296 +-3.14617,48.60104,1322,11,14,22,29,30,4.45,27.5,fr,45197,26,1903319,1,1,Active Shallow Crust,128.8919,89.99349,0.0,11/14/1322 +0.14782,47.7801,8315,3,8,22,13,19,3.55,5.0,fr,45198,166,1903686,1,1,Active Shallow Crust,0.0,89.98993,-90.0,03/08/8315 +0.14782,47.7801,4318,9,18,22,26,24,3.65,5.0,fr,45199,86,1903692,1,1,Active Shallow Crust,0.0,89.99,0.0,09/18/4318 +0.14782,47.7801,8269,7,1,12,22,2,3.75,5.0,fr,45200,165,1903704,1,1,Active Shallow Crust,0.0,89.99007,0.0,07/01/8269 +0.14782,47.7801,9495,11,21,17,0,21,3.85,5.0,fr,45201,189,1903722,1,1,Active Shallow Crust,0.0,89.98999,-90.0,11/21/9495 +0.14782,47.7801,4575,6,9,21,34,1,3.95,5.0,fr,45202,91,1903728,1,1,Active Shallow Crust,0.0,89.98998,0.0,06/09/4575 +0.14782,47.7801,1343,11,23,3,58,45,4.05,15.0,fr,45203,26,1903741,1,1,Active Shallow Crust,0.0,89.99,0.0,11/23/1343 +0.14782,47.7801,6202,1,29,1,46,52,4.15,5.0,fr,45204,124,1903761,1,1,Active Shallow Crust,128.8973,89.99374,0.0,01/29/6202 +-3.85987,43.29144,2198,4,7,16,31,18,3.55,5.0,fr,45205,43,1904163,1,1,Active Shallow Crust,240.0117,57.99834,0.0,04/07/2198 +-3.85987,43.29144,3003,5,15,2,35,36,3.65,5.0,fr,45206,60,1904178,1,1,Active Shallow Crust,0.0,89.99007,-90.0,05/15/3003 +-3.85987,43.29144,6796,12,15,14,12,56,3.75,15.0,fr,45207,135,1904185,1,1,Active Shallow Crust,0.0,89.99126,0.0,12/15/6796 +-3.85987,43.29144,3180,2,9,10,56,29,3.75,5.0,fr,45208,63,1904190,1,1,Active Shallow Crust,0.0,89.99115,-90.0,02/09/3180 +-3.85987,43.29144,4269,1,21,21,51,59,3.85,5.0,fr,45209,85,1904202,1,1,Active Shallow Crust,0.0,89.98949,-90.0,01/21/4269 +-3.85987,43.29144,478,2,5,20,48,9,3.95,5.0,fr,45210,9,1904208,1,1,Active Shallow Crust,0.0,89.99074,0.0,02/05/0478 +-3.85987,43.29144,6163,8,7,8,28,3,3.95,5.0,fr,45211,123,1904211,1,1,Active Shallow Crust,240.0189,58.00486,0.0,08/07/6163 +-3.85987,43.29144,9664,10,27,20,15,27,4.05,5.0,fr,45212,193,1904220,1,1,Active Shallow Crust,0.0,89.98968,0.0,10/27/9664 +-3.85987,43.29144,6066,6,28,1,19,2,4.15,5.0,fr,45213,121,1904238,1,1,Active Shallow Crust,0.0,89.9907,-90.0,06/28/6066 +-3.85987,43.29144,4891,10,12,22,57,31,4.15,5.0,fr,45214,97,1904241,1,1,Active Shallow Crust,128.898,89.99356,0.0,10/12/4891 +-3.85987,43.29144,4942,2,6,5,40,0,4.25,5.0,fr,45215,98,1904250,1,1,Active Shallow Crust,0.0,89.99005,-90.0,02/06/4942 +-3.85987,43.29144,5075,9,10,4,48,14,4.35,5.0,fr,45216,101,1904256,1,1,Active Shallow Crust,0.0,89.98977,0.0,09/10/5075 +-3.85987,43.29144,9495,8,15,11,38,12,4.35,5.0,fr,45217,189,1904265,1,1,Active Shallow Crust,128.8987,89.98265,0.0,08/15/9495 +-3.85987,43.29144,1482,4,22,12,39,1,4.45,5.0,fr,45218,29,1904268,1,1,Active Shallow Crust,0.0,89.98959,0.0,04/22/1482 +-3.85987,43.29144,24,11,24,10,39,28,5.35,15.0,fr,45219,0,1904377,1,1,Active Shallow Crust,0.0,89.98983,0.0,11/24/0024 +0.81509,44.60239,4028,10,4,10,36,32,3.55,5.0,fr,45220,80,1904640,1,1,Active Shallow Crust,0.0,89.99013,0.0,10/04/4028 +0.81509,44.60239,4807,7,15,9,56,49,3.55,5.0,fr,45221,96,1904643,1,1,Active Shallow Crust,240.012,57.99815,0.0,07/15/4807 +0.81509,44.60239,6313,3,18,20,26,25,4.25,5.0,fr,45222,126,1904724,1,1,Active Shallow Crust,0.0,89.98997,0.0,03/18/6313 +0.81509,44.60239,9048,6,3,21,31,28,4.95,5.0,fr,45223,180,1904808,1,1,Active Shallow Crust,0.0,89.98997,0.0,06/03/9048 +1.05838,50.07518,8776,3,26,4,10,37,3.75,5.0,fr,45224,175,1905144,1,1,Active Shallow Crust,0.0,89.98972,0.0,03/26/8776 +1.05838,50.07518,9966,10,15,4,19,29,4.45,5.0,fr,45225,199,1905228,1,1,Active Shallow Crust,0.0,89.99024,0.0,10/15/9966 +1.05838,50.07518,4187,3,20,5,22,35,4.45,5.0,fr,45226,83,1905237,1,1,Active Shallow Crust,128.8913,89.99368,0.0,03/20/4187 +1.05838,50.07518,5612,12,5,8,33,42,5.55,5.0,fr,45227,112,1905360,1,1,Active Shallow Crust,0.0,89.98997,0.0,12/05/5612 +-3.80059,48.13364,5691,11,2,11,19,7,3.55,5.0,fr,45228,113,1905603,1,1,Active Shallow Crust,240.0117,57.99815,0.0,11/02/5691 +-3.80059,48.13364,7115,9,15,2,6,17,3.65,5.0,fr,45229,142,1905612,1,1,Active Shallow Crust,0.0,89.991,0.0,09/15/7115 +-3.80059,48.13364,4414,6,8,22,6,20,3.75,5.0,fr,45230,88,1905624,1,2,Active Shallow Crust,0.0,89.98931,0.0,06/08/4414 +-3.80059,48.13364,9906,8,28,23,17,12,3.75,5.0,fr,45231,198,1905624,1,2,Active Shallow Crust,0.0,89.98931,0.0,08/28/9906 +-3.80059,48.13364,1638,4,28,16,39,38,4.05,5.0,fr,45232,32,1905666,1,1,Active Shallow Crust,0.0,89.99043,-90.0,04/28/1638 +-3.80059,48.13364,7740,4,5,14,15,0,4.15,15.0,fr,45233,154,1905682,1,1,Active Shallow Crust,128.8972,89.99409,0.0,04/05/7740 +-3.80059,48.13364,6876,8,23,2,26,31,4.45,5.0,fr,45234,137,1905708,1,1,Active Shallow Crust,0.0,89.99045,0.0,08/23/6876 +-3.80059,48.13364,9549,7,9,22,10,15,4.55,27.5,fr,45235,190,1905722,1,1,Active Shallow Crust,0.0,89.99043,0.0,07/09/9549 +-3.80059,48.13364,2684,5,7,18,28,1,4.75,27.5,fr,45236,53,1905746,1,1,Active Shallow Crust,0.0,89.98985,0.0,05/07/2684 +-3.80059,48.13364,4115,2,4,7,39,32,5.85,5.0,fr,45237,82,1905885,1,1,Active Shallow Crust,128.8656,89.99149,0.0,02/04/4115 +9.40939,49.14113,8297,6,19,4,2,52,3.85,15.0,fr,45238,165,1906117,1,1,Active Shallow Crust,0.0,89.99066,0.0,06/19/8297 +9.40939,49.14113,5135,1,8,5,42,57,4.05,5.0,fr,45239,102,1906140,1,2,Active Shallow Crust,0.0,89.99258,0.0,01/08/5135 +9.40939,49.14113,7150,7,31,0,5,21,4.05,5.0,fr,45240,142,1906140,1,2,Active Shallow Crust,0.0,89.99258,0.0,07/31/7150 +9.40939,49.14113,7780,9,14,9,48,20,5.15,5.0,fr,45241,155,1906272,1,1,Active Shallow Crust,0.0,89.98954,0.0,09/14/7780 +-1.44408,49.80437,5697,5,29,8,20,41,3.75,5.0,fr,45242,113,1906584,1,1,Active Shallow Crust,0.0,89.98966,0.0,05/29/5697 +-1.44408,49.80437,2601,5,9,12,57,4,4.05,5.0,fr,45243,52,1906620,1,1,Active Shallow Crust,0.0,89.98994,0.0,05/09/2601 +-1.67301,49.38963,8192,12,5,9,32,48,3.55,5.0,fr,45244,163,1907043,1,1,Active Shallow Crust,240.0124,57.99816,0.0,12/05/8192 +-1.67301,49.38963,7121,7,6,6,29,0,3.55,15.0,fr,45245,142,1907050,1,1,Active Shallow Crust,128.8959,89.99344,0.0,07/06/7121 +-1.67301,49.38963,5083,5,10,14,16,30,3.65,5.0,fr,45246,101,1907052,1,3,Active Shallow Crust,0.0,89.98976,0.0,05/10/5083 +-1.67301,49.38963,5839,10,28,20,39,1,3.65,5.0,fr,45247,116,1907052,1,3,Active Shallow Crust,0.0,89.98976,0.0,10/28/5839 +-1.67301,49.38963,5652,12,28,9,59,4,3.65,5.0,fr,45248,113,1907052,1,3,Active Shallow Crust,0.0,89.98976,0.0,12/28/5652 +-1.67301,49.38963,6964,12,13,20,36,56,3.75,5.0,fr,45249,139,1907064,1,1,Active Shallow Crust,0.0,89.98957,0.0,12/13/6964 +-1.67301,49.38963,9949,4,10,19,19,11,3.85,5.0,fr,45250,198,1907076,1,1,Active Shallow Crust,0.0,89.98955,0.0,04/10/9949 +-1.59197,41.62076,7462,1,22,16,58,2,3.65,5.0,fr,45251,149,1908492,1,1,Active Shallow Crust,0.0,89.98992,0.0,01/22/7462 +-1.59197,41.62076,8293,6,13,0,55,54,3.65,15.0,fr,45252,165,1908496,1,1,Active Shallow Crust,240.0006,58.01307,0.0,06/13/8293 +-1.59197,41.62076,3952,9,3,15,18,39,3.65,5.0,fr,45253,79,1908501,1,1,Active Shallow Crust,128.9006,89.96358,0.0,09/03/3952 +-1.59197,41.62076,3396,4,12,0,37,27,5.45,5.0,fr,45254,67,1908708,1,1,Active Shallow Crust,0.0,89.99006,0.0,04/12/3396 +-5.4095,47.82869,2387,10,4,12,13,20,3.65,27.5,fr,45255,47,1908974,1,1,Active Shallow Crust,0.0,89.98793,0.0,10/04/2387 +-5.4095,47.82869,7512,11,11,2,54,40,3.75,15.0,fr,45256,150,1908988,1,1,Active Shallow Crust,240.0083,58.0177,0.0,11/11/7512 +-5.4095,47.82869,7807,4,9,3,1,35,4.25,15.0,fr,45257,156,1909045,1,1,Active Shallow Crust,0.0,89.99093,0.0,04/09/7807 +2.84404,52.19274,8925,5,6,19,6,26,3.85,5.0,fr,45258,178,1909476,1,1,Active Shallow Crust,0.0,89.98906,0.0,05/06/8925 +2.84404,52.19274,1492,6,12,13,45,16,4.55,27.5,fr,45259,29,1909565,1,1,Active Shallow Crust,240.0112,57.99775,0.0,06/12/1492 +2.84404,52.19274,402,3,14,20,10,28,4.95,15.0,fr,45260,8,1909609,1,1,Active Shallow Crust,0.0,89.99013,0.0,03/14/0402 +-5.13676,48.4072,8142,9,21,11,0,39,3.55,5.0,fr,45261,162,1909920,1,1,Active Shallow Crust,0.0,89.99331,0.0,09/21/8142 +-5.13676,48.4072,7203,1,9,3,6,47,3.55,27.5,fr,45262,144,1909922,1,1,Active Shallow Crust,0.0,89.99331,0.0,01/09/7203 +-5.13676,48.4072,7819,11,8,20,27,3,3.65,27.5,fr,45263,156,1909937,1,1,Active Shallow Crust,240.0006,58.01297,0.0,11/08/7819 +-5.13676,48.4072,9845,6,9,4,32,2,3.95,15.0,fr,45264,196,1909975,1,1,Active Shallow Crust,0.0,89.99146,-90.0,06/09/9845 +-5.13676,48.4072,1569,6,13,13,14,22,5.05,5.0,fr,45265,31,1910106,1,1,Active Shallow Crust,0.0,89.99036,-90.0,06/13/1569 +-5.13676,48.4072,8966,8,30,18,8,51,5.15,5.0,fr,45266,179,1910112,1,1,Active Shallow Crust,0.0,89.99045,0.0,08/30/8966 +-5.13676,48.4072,4748,5,11,11,28,1,5.15,5.0,fr,45267,94,1910115,1,1,Active Shallow Crust,240.0209,58.00021,0.0,05/11/4748 +0.30072,50.95413,2721,9,9,5,13,17,3.55,15.0,fr,45268,54,1910410,1,1,Active Shallow Crust,128.8958,89.99364,0.0,09/09/2721 +0.30072,50.95413,9139,9,20,3,25,26,3.85,15.0,fr,45269,182,1910437,1,1,Active Shallow Crust,0.0,89.98988,0.0,09/20/9139 +0.30072,50.95413,1208,12,8,11,20,12,4.15,27.5,fr,45270,24,1910474,1,1,Active Shallow Crust,0.0,89.99005,0.0,12/08/1208 +5.35563,45.19949,1342,2,10,0,55,13,3.55,5.0,fr,45271,26,1910880,1,1,Active Shallow Crust,0.0,89.9929,0.0,02/10/1342 +5.35563,45.19949,199,5,9,5,29,25,3.55,5.0,fr,45272,3,1910883,1,1,Active Shallow Crust,240.0121,57.99819,0.0,05/09/0199 +5.35563,45.19949,254,12,27,23,38,58,3.65,5.0,fr,45273,5,1910892,1,4,Active Shallow Crust,0.0,89.98734,0.0,12/27/0254 +5.35563,45.19949,4565,7,21,16,52,12,3.65,5.0,fr,45274,91,1910892,1,4,Active Shallow Crust,0.0,89.98734,0.0,07/21/4565 +5.35563,45.19949,7828,2,4,2,18,21,3.65,5.0,fr,45275,156,1910892,1,4,Active Shallow Crust,0.0,89.98734,0.0,02/04/7828 +5.35563,45.19949,3218,7,10,4,34,30,3.65,5.0,fr,45276,64,1910892,1,4,Active Shallow Crust,0.0,89.98734,0.0,07/10/3218 +5.35563,45.19949,3460,9,17,6,28,17,3.65,15.0,fr,45277,69,1910896,1,1,Active Shallow Crust,240.0007,58.0134,0.0,09/17/3460 +5.35563,45.19949,6985,8,19,8,33,48,3.75,15.0,fr,45278,139,1910905,1,1,Active Shallow Crust,0.0,89.98871,0.0,08/19/6985 +5.35563,45.19949,6071,10,10,9,28,1,3.75,5.0,fr,45279,121,1910907,1,1,Active Shallow Crust,240.0092,58.01678,0.0,10/10/6071 +5.35563,45.19949,7044,9,18,15,5,4,3.85,5.0,fr,45280,140,1910925,1,1,Active Shallow Crust,128.8948,89.99497,0.0,09/18/7044 +5.35563,45.19949,4884,4,16,7,8,27,3.95,5.0,fr,45281,97,1910928,1,2,Active Shallow Crust,0.0,89.99104,0.0,04/16/4884 +5.35563,45.19949,3372,8,28,17,57,44,3.95,5.0,fr,45282,67,1910928,1,2,Active Shallow Crust,0.0,89.99104,0.0,08/28/3372 +5.35563,45.19949,1421,9,23,17,55,56,4.15,5.0,fr,45283,28,1910952,1,2,Active Shallow Crust,0.0,89.98932,0.0,09/23/1421 +5.35563,45.19949,4243,10,4,13,48,24,4.15,5.0,fr,45284,84,1910952,1,2,Active Shallow Crust,0.0,89.98932,0.0,10/04/4243 +5.35563,45.19949,1719,12,9,14,7,44,4.25,5.0,fr,45285,34,1910964,1,5,Active Shallow Crust,0.0,89.99048,0.0,12/09/1719 +5.35563,45.19949,8356,2,9,9,15,49,4.25,5.0,fr,45286,167,1910964,1,5,Active Shallow Crust,0.0,89.99048,0.0,02/09/8356 +5.35563,45.19949,6010,10,2,21,33,42,4.25,5.0,fr,45287,120,1910964,1,5,Active Shallow Crust,0.0,89.99048,0.0,10/02/6010 +5.35563,45.19949,8499,3,19,19,5,44,4.25,5.0,fr,45288,169,1910964,1,5,Active Shallow Crust,0.0,89.99048,0.0,03/19/8499 +5.35563,45.19949,6484,1,8,23,41,31,4.25,5.0,fr,45289,129,1910964,1,5,Active Shallow Crust,0.0,89.99048,0.0,01/08/6484 +5.35563,45.19949,6987,1,26,19,10,23,4.35,5.0,fr,45290,139,1910976,1,1,Active Shallow Crust,0.0,89.98869,0.0,01/26/6987 +5.35563,45.19949,6817,10,30,17,39,20,4.35,15.0,fr,45291,136,1910977,1,1,Active Shallow Crust,0.0,89.98869,0.0,10/30/6817 +5.35563,45.19949,9092,6,19,19,52,14,4.45,27.5,fr,45292,181,1910993,1,1,Active Shallow Crust,240.0048,57.99463,0.0,06/19/9092 +5.35563,45.19949,2424,1,4,22,48,11,4.55,5.0,fr,45293,48,1911000,1,1,Active Shallow Crust,0.0,89.99101,0.0,01/04/2424 +5.35563,45.19949,9618,5,11,17,49,31,4.55,15.0,fr,45294,192,1911001,1,1,Active Shallow Crust,0.0,89.99101,0.0,05/11/9618 +5.35563,45.19949,5360,6,3,16,0,18,4.75,27.5,fr,45295,107,1911026,1,1,Active Shallow Crust,0.0,89.98929,0.0,06/03/5360 +5.355627,45.19949,2042,9,28,1,55,43,6.35,7.567806,fr,45296,40,1911225,1,1,Active Shallow Crust,128.8463,89.98976,0.0,09/28/2042 +7.35191,50.42345,1853,6,29,13,48,11,3.55,5.0,fr,45297,37,1911360,1,2,Active Shallow Crust,0.0,89.98715,0.0,06/29/1853 +7.35191,50.42345,3479,4,30,1,48,18,3.55,5.0,fr,45298,69,1911360,1,2,Active Shallow Crust,0.0,89.98715,0.0,04/30/3479 +7.35191,50.42345,1889,1,18,5,5,29,3.55,15.0,fr,45299,37,1911361,1,4,Active Shallow Crust,0.0,89.98715,0.0,01/18/1889 +7.35191,50.42345,8786,6,17,18,53,33,3.55,15.0,fr,45300,175,1911361,1,4,Active Shallow Crust,0.0,89.98715,0.0,06/17/8786 +7.35191,50.42345,8158,7,19,15,53,18,3.55,15.0,fr,45301,163,1911361,1,4,Active Shallow Crust,0.0,89.98715,0.0,07/19/8158 +7.35191,50.42345,3353,5,9,6,34,8,3.55,15.0,fr,45302,67,1911361,1,4,Active Shallow Crust,0.0,89.98715,0.0,05/09/3353 +7.35191,50.42345,9055,6,30,3,23,13,3.65,5.0,fr,45303,181,1911372,1,2,Active Shallow Crust,0.0,89.98855,0.0,06/30/9055 +7.35191,50.42345,2165,10,16,17,16,41,3.65,5.0,fr,45304,43,1911372,1,2,Active Shallow Crust,0.0,89.98855,0.0,10/16/2165 +7.35191,50.42345,632,8,8,9,19,50,3.65,15.0,fr,45305,12,1911373,1,3,Active Shallow Crust,0.0,89.98855,0.0,08/08/0632 +7.35191,50.42345,4275,1,9,1,24,5,3.65,15.0,fr,45306,85,1911373,1,3,Active Shallow Crust,0.0,89.98855,0.0,01/09/4275 +7.35191,50.42345,4206,8,26,17,57,54,3.65,15.0,fr,45307,84,1911373,1,3,Active Shallow Crust,0.0,89.98855,0.0,08/26/4206 +7.35191,50.42345,762,12,5,3,58,14,3.65,5.0,fr,45308,15,1911381,1,1,Active Shallow Crust,128.8995,89.9636,0.0,12/05/0762 +7.35191,50.42345,8737,11,5,7,22,38,3.75,15.0,fr,45309,174,1911385,1,1,Active Shallow Crust,0.0,89.98979,0.0,11/05/8737 +7.35191,50.42345,5990,2,14,10,18,3,3.75,5.0,fr,45310,119,1911387,1,1,Active Shallow Crust,240.0089,58.01711,0.0,02/14/5990 +7.35191,50.42345,4935,2,24,11,12,32,3.75,5.0,fr,45311,98,1911390,1,1,Active Shallow Crust,0.0,89.98968,-90.0,02/24/4935 +7.35191,50.42345,9203,8,14,2,13,52,3.75,27.5,fr,45312,184,1911392,1,1,Active Shallow Crust,0.0,89.98968,-90.0,08/14/9203 +7.35191,50.42345,4123,2,5,5,8,53,3.85,5.0,fr,45313,82,1911396,1,2,Active Shallow Crust,0.0,89.99091,0.0,02/05/4123 +7.35191,50.42345,3459,8,4,3,29,7,3.85,5.0,fr,45314,69,1911396,1,2,Active Shallow Crust,0.0,89.99091,0.0,08/04/3459 +7.35191,50.42345,2892,5,25,17,10,36,3.85,15.0,fr,45315,57,1911397,1,1,Active Shallow Crust,0.0,89.99091,0.0,05/25/2892 +7.35191,50.42345,2353,9,17,12,5,1,3.85,27.5,fr,45316,47,1911398,1,1,Active Shallow Crust,0.0,89.99091,0.0,09/17/2353 +7.35191,50.42345,7037,9,6,2,42,58,3.95,5.0,fr,45317,140,1911408,1,1,Active Shallow Crust,0.0,89.99189,0.0,09/06/7037 +7.35191,50.42345,4742,8,7,3,3,29,3.95,15.0,fr,45318,94,1911409,1,1,Active Shallow Crust,0.0,89.99189,0.0,08/07/4742 +7.35191,50.42345,1163,9,14,11,20,19,3.95,5.0,fr,45319,23,1911411,1,1,Active Shallow Crust,240.0202,58.00494,0.0,09/14/1163 +7.35191,50.42345,9720,7,15,14,17,30,4.05,5.0,fr,45320,194,1911420,1,2,Active Shallow Crust,0.0,89.98916,0.0,07/15/9720 +7.35191,50.42345,1311,8,6,10,17,36,4.05,5.0,fr,45321,26,1911420,1,2,Active Shallow Crust,0.0,89.98916,0.0,08/06/1311 +7.35191,50.42345,1408,6,28,10,12,56,4.05,15.0,fr,45322,28,1911421,1,1,Active Shallow Crust,0.0,89.98916,0.0,06/28/1408 +7.35191,50.42345,2074,9,10,10,5,7,4.15,5.0,fr,45323,41,1911432,1,1,Active Shallow Crust,0.0,89.99034,0.0,09/10/2074 +7.35191,50.42345,8613,2,8,12,20,53,4.25,5.0,fr,45324,172,1911450,1,1,Active Shallow Crust,0.0,89.99129,-90.0,02/08/8613 +7.35191,50.42345,6712,3,27,14,1,3,4.35,5.0,fr,45325,134,1911456,1,1,Active Shallow Crust,0.0,89.98977,0.0,03/27/6712 +7.35191,50.42345,3329,2,8,20,20,49,4.35,27.5,fr,45326,66,1911458,1,1,Active Shallow Crust,0.0,89.98977,0.0,02/08/3329 +7.35191,50.42345,5796,6,5,22,11,47,4.35,15.0,fr,45327,115,1911460,1,1,Active Shallow Crust,240.0094,57.99609,0.0,06/05/5796 +7.35191,50.42345,2821,3,29,14,59,24,4.35,5.0,fr,45328,56,1911462,1,1,Active Shallow Crust,0.0,89.98965,-90.0,03/29/2821 +7.35191,50.42345,8411,11,28,16,39,41,4.45,15.0,fr,45329,168,1911469,1,1,Active Shallow Crust,0.0,89.99088,0.0,11/28/8411 +7.35191,50.42345,8833,1,31,0,17,46,4.75,5.0,fr,45330,176,1911504,1,1,Active Shallow Crust,0.0,89.99032,0.0,01/31/8833 +7.35191,50.42345,8536,4,29,5,0,34,5.05,5.0,fr,45331,170,1911543,1,1,Active Shallow Crust,240.0244,57.99791,0.0,04/29/8536 +-0.09085,48.8296,9635,5,16,6,14,27,3.55,15.0,fr,45332,192,1911841,1,1,Active Shallow Crust,0.0,89.99004,0.0,05/16/9635 +-0.09085,48.8296,1378,12,20,13,22,14,3.55,27.5,fr,45333,27,1911842,1,1,Active Shallow Crust,0.0,89.99004,0.0,12/20/1378 +-0.09085,48.8296,6644,11,11,0,24,0,3.55,5.0,fr,45334,132,1911843,1,1,Active Shallow Crust,240.0124,57.9982,0.0,11/11/6644 +-0.09085,48.8296,8211,4,7,19,19,51,3.55,15.0,fr,45335,164,1911844,1,1,Active Shallow Crust,240.0124,57.9982,0.0,04/07/8211 +-0.09085,48.8296,1418,6,25,5,14,42,3.65,15.0,fr,45336,28,1911853,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/25/1418 +-0.09085,48.8296,6665,3,29,17,45,31,3.65,5.0,fr,45337,133,1911858,1,1,Active Shallow Crust,0.0,89.98999,-90.0,03/29/6665 +-0.09085,48.8296,9102,10,2,8,2,20,3.75,5.0,fr,45338,182,1911864,1,1,Active Shallow Crust,0.0,89.99003,0.0,10/02/9102 +-0.09085,48.8296,4608,6,28,1,42,55,3.85,5.0,fr,45339,92,1911876,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/28/4608 +-0.09085,48.8296,2830,10,7,20,57,17,3.85,15.0,fr,45340,56,1911877,1,2,Active Shallow Crust,0.0,89.99001,0.0,10/07/2830 +-0.09085,48.8296,2224,1,6,16,48,27,3.85,15.0,fr,45341,44,1911877,1,2,Active Shallow Crust,0.0,89.99001,0.0,01/06/2224 +-0.09085,48.8296,3238,6,19,21,49,29,3.85,15.0,fr,45342,64,1911883,1,1,Active Shallow Crust,0.0,89.98997,-90.0,06/19/3238 +-0.09085,48.8296,5199,8,31,10,40,17,3.95,5.0,fr,45343,103,1911888,1,1,Active Shallow Crust,0.0,89.98999,0.0,08/31/5199 +-0.09085,48.8296,483,10,18,18,59,7,4.05,5.0,fr,45344,9,1911903,1,1,Active Shallow Crust,240.0064,58.0059,0.0,10/18/0483 +-0.09085,48.8296,6851,8,1,12,6,27,4.15,15.0,fr,45345,137,1911913,1,1,Active Shallow Crust,0.0,89.99002,0.0,08/01/6851 +-0.09085,48.8296,308,1,18,15,42,24,4.85,5.0,fr,45346,6,1911996,1,1,Active Shallow Crust,0.0,89.98999,0.0,01/18/0308 +-1.87748,50.57,6829,7,12,11,0,54,4.25,5.0,fr,45347,136,1912404,1,1,Active Shallow Crust,0.0,89.98998,0.0,07/12/6829 +-1.87748,50.57,2324,10,21,21,12,1,4.25,15.0,fr,45348,46,1912405,1,1,Active Shallow Crust,0.0,89.98998,0.0,10/21/2324 +1.69494,45.87624,370,10,17,8,12,39,3.55,27.5,fr,45349,7,1912802,1,1,Active Shallow Crust,0.0,89.98947,0.0,10/17/0370 +1.69494,45.87624,8158,12,8,7,54,54,3.75,5.0,fr,45350,163,1912824,1,2,Active Shallow Crust,0.0,89.99024,0.0,12/08/8158 +1.69494,45.87624,5914,4,20,13,15,38,3.75,5.0,fr,45351,118,1912824,1,2,Active Shallow Crust,0.0,89.99024,0.0,04/20/5914 +1.69494,45.87624,899,12,3,17,35,47,3.75,15.0,fr,45352,17,1912825,1,1,Active Shallow Crust,0.0,89.99024,0.0,12/03/0899 +1.69494,45.87624,3094,6,10,8,49,37,3.85,5.0,fr,45353,61,1912836,1,1,Active Shallow Crust,0.0,89.99006,0.0,06/10/3094 +1.69494,45.87624,148,6,16,11,37,31,3.85,5.0,fr,45354,2,1912845,1,1,Active Shallow Crust,128.8954,89.99379,0.0,06/16/0148 +1.69494,45.87624,3749,5,18,16,57,49,3.95,5.0,fr,45355,74,1912848,1,1,Active Shallow Crust,0.0,89.99004,0.0,05/18/3749 +1.69494,45.87624,8923,10,1,14,26,37,4.05,5.0,fr,45356,178,1912860,1,1,Active Shallow Crust,0.0,89.99013,0.0,10/01/8923 +1.69494,45.87624,137,9,8,18,21,43,4.15,5.0,fr,45357,2,1912872,1,1,Active Shallow Crust,0.0,89.99033,0.0,09/08/0137 +1.69494,45.87624,5009,11,25,9,7,48,4.15,15.0,fr,45358,100,1912873,1,1,Active Shallow Crust,0.0,89.99033,0.0,11/25/5009 +-1.82413,49.1117,8718,10,19,3,15,39,3.55,5.0,fr,45359,174,1913280,1,1,Active Shallow Crust,0.0,89.9901,0.0,10/19/8718 +-1.82413,49.1117,8220,8,3,4,31,53,3.55,15.0,fr,45360,164,1913281,1,2,Active Shallow Crust,0.0,89.9901,0.0,08/03/8220 +-1.82413,49.1117,135,12,16,6,15,42,3.55,15.0,fr,45361,2,1913281,1,2,Active Shallow Crust,0.0,89.9901,0.0,12/16/0135 +-1.82413,49.1117,5154,6,16,18,36,30,3.55,27.5,fr,45362,103,1913282,1,2,Active Shallow Crust,0.0,89.9901,0.0,06/16/5154 +-1.82413,49.1117,5253,4,16,21,52,40,3.55,27.5,fr,45363,105,1913282,1,2,Active Shallow Crust,0.0,89.9901,0.0,04/16/5253 +-1.82413,49.1117,7759,4,25,11,5,42,3.55,15.0,fr,45364,155,1913284,1,1,Active Shallow Crust,240.0121,57.9982,0.0,04/25/7759 +-1.82413,49.1117,2944,9,23,23,24,15,3.55,5.0,fr,45365,58,1913289,1,1,Active Shallow Crust,128.8964,89.9934,0.0,09/23/2944 +-1.82413,49.1117,9890,12,12,4,57,56,3.65,5.0,fr,45366,197,1913292,1,1,Active Shallow Crust,0.0,89.98971,0.0,12/12/9890 +-1.82413,49.1117,9598,4,28,0,41,0,3.65,15.0,fr,45367,191,1913293,1,1,Active Shallow Crust,0.0,89.98971,0.0,04/28/9598 +-1.82413,49.1117,9091,7,9,4,22,12,3.75,15.0,fr,45368,181,1913305,1,1,Active Shallow Crust,0.0,89.98952,0.0,07/09/9091 +-1.82413,49.1117,4813,6,18,18,18,37,3.75,5.0,fr,45369,96,1913310,1,1,Active Shallow Crust,0.0,89.9894,-90.0,06/18/4813 +-1.82413,49.1117,9448,2,23,15,24,34,3.85,5.0,fr,45370,188,1913316,1,2,Active Shallow Crust,0.0,89.98949,0.0,02/23/9448 +-1.82413,49.1117,2049,5,30,19,0,2,3.85,5.0,fr,45371,40,1913316,1,2,Active Shallow Crust,0.0,89.98949,0.0,05/30/2049 +-1.82413,49.1117,473,3,29,12,8,50,3.85,15.0,fr,45372,9,1913326,1,1,Active Shallow Crust,128.8951,89.99416,0.0,03/29/0473 +-1.82413,49.1117,5658,9,24,6,31,34,3.95,5.0,fr,45373,113,1913328,1,1,Active Shallow Crust,0.0,89.98959,0.0,09/24/5658 +-1.82413,49.1117,8360,10,11,2,44,5,3.95,15.0,fr,45374,167,1913335,1,1,Active Shallow Crust,0.0,89.99052,-90.0,10/11/8360 +-1.82413,49.1117,4980,1,20,11,53,33,4.25,5.0,fr,45375,99,1913364,1,1,Active Shallow Crust,0.0,89.98968,0.0,01/20/4980 +-1.82413,49.1117,3468,10,29,0,49,27,4.25,15.0,fr,45376,69,1913368,1,1,Active Shallow Crust,240.0081,57.99409,0.0,10/29/3468 +-1.82413,49.1117,4893,4,26,23,16,21,4.35,15.0,fr,45377,97,1913380,1,1,Active Shallow Crust,240.009,57.99611,0.0,04/26/4893 +-1.82413,49.1117,1742,4,11,19,12,8,4.75,5.0,fr,45378,34,1913424,1,1,Active Shallow Crust,0.0,89.99005,0.0,04/11/1742 +-1.82413,49.1117,9468,9,20,18,23,39,5.45,27.5,fr,45379,189,1913513,1,1,Active Shallow Crust,240.0311,57.99891,0.0,09/20/9468 +-1.34829,44.13372,8132,1,12,21,51,58,3.95,15.0,fr,45380,162,1913809,1,1,Active Shallow Crust,0.0,89.98972,0.0,01/12/8132 +-1.34829,44.13372,5975,2,18,14,29,52,4.65,5.0,fr,45381,119,1913898,1,1,Active Shallow Crust,0.0,89.9902,-90.0,02/18/5975 +7.00683,49.63704,17,1,2,19,42,18,3.65,5.0,fr,45382,0,1914252,1,1,Active Shallow Crust,0.0,89.98836,0.0,01/02/0017 +7.00683,49.63704,5812,1,4,22,39,3,3.65,15.0,fr,45383,116,1914256,1,1,Active Shallow Crust,240.0019,58.01224,0.0,01/04/5812 +7.00683,49.63704,9308,12,4,22,54,44,4.35,15.0,fr,45384,186,1914337,1,1,Active Shallow Crust,0.0,89.9896,0.0,12/04/9308 +7.00683,49.63704,1781,1,21,18,20,45,4.45,5.0,fr,45385,35,1914348,1,1,Active Shallow Crust,0.0,89.99073,0.0,01/21/1781 +5.24202,50.40797,7419,3,26,17,43,36,3.55,5.0,fr,45386,148,1914720,1,1,Active Shallow Crust,0.0,89.98714,0.0,03/26/7419 +5.24202,50.40797,3074,11,14,19,35,47,3.55,5.0,fr,45387,61,1914723,1,1,Active Shallow Crust,240.0137,57.99738,0.0,11/14/3074 +5.24202,50.40797,892,4,26,9,13,30,3.65,5.0,fr,45388,17,1914732,1,2,Active Shallow Crust,0.0,89.98854,0.0,04/26/0892 +5.24202,50.40797,9626,10,13,21,51,33,3.65,5.0,fr,45389,192,1914732,1,2,Active Shallow Crust,0.0,89.98854,0.0,10/13/9626 +5.24202,50.40797,3211,2,26,9,22,1,3.75,5.0,fr,45390,64,1914744,1,3,Active Shallow Crust,0.0,89.98979,0.0,02/26/3211 +5.24202,50.40797,9638,1,9,18,15,31,3.75,5.0,fr,45391,192,1914744,1,3,Active Shallow Crust,0.0,89.98979,0.0,01/09/9638 +5.24202,50.40797,1027,5,15,9,23,5,3.75,5.0,fr,45392,20,1914744,1,3,Active Shallow Crust,0.0,89.98979,0.0,05/15/1027 +5.24202,50.40797,9426,6,27,22,13,16,3.75,5.0,fr,45393,188,1914750,1,1,Active Shallow Crust,0.0,89.98967,-90.0,06/27/9426 +5.24202,50.40797,3498,2,25,11,55,34,3.75,15.0,fr,45394,69,1914754,1,1,Active Shallow Crust,128.897,89.96706,0.0,02/25/3498 +5.24202,50.40797,8094,3,23,21,54,43,3.85,5.0,fr,45395,161,1914756,1,2,Active Shallow Crust,0.0,89.9909,0.0,03/23/8094 +5.24202,50.40797,1801,10,22,19,32,54,3.85,5.0,fr,45396,36,1914756,1,2,Active Shallow Crust,0.0,89.9909,0.0,10/22/1801 +5.24202,50.40797,7876,3,10,3,48,3,3.85,15.0,fr,45397,157,1914763,1,1,Active Shallow Crust,0.0,89.99079,-90.0,03/10/7876 +5.24202,50.40797,7680,2,5,19,16,35,3.95,15.0,fr,45398,153,1914769,1,1,Active Shallow Crust,0.0,89.99189,0.0,02/05/7680 +5.24202,50.40797,389,4,4,8,45,33,3.95,5.0,fr,45399,7,1914777,1,1,Active Shallow Crust,128.8999,89.99392,0.0,04/04/0389 +5.24202,50.40797,366,5,18,11,58,2,4.25,15.0,fr,45400,7,1914811,1,1,Active Shallow Crust,0.0,89.99129,-90.0,05/18/0366 +5.24202,50.40797,7343,8,4,18,34,59,4.45,5.0,fr,45401,146,1914828,1,1,Active Shallow Crust,0.0,89.99088,0.0,08/04/7343 +2.68217,44.54878,8739,6,16,18,2,10,3.55,5.0,fr,45402,174,1915206,1,1,Active Shallow Crust,0.0,89.9891,-90.0,06/16/8739 +2.68217,44.54878,9781,9,11,6,32,48,3.65,5.0,fr,45403,195,1915212,1,3,Active Shallow Crust,0.0,89.99039,0.0,09/11/9781 +2.68217,44.54878,2736,3,7,18,27,9,3.65,5.0,fr,45404,54,1915212,1,3,Active Shallow Crust,0.0,89.99039,0.0,03/07/2736 +2.68217,44.54878,2297,10,1,14,27,7,3.65,5.0,fr,45405,45,1915212,1,3,Active Shallow Crust,0.0,89.99039,0.0,10/01/2297 +2.68217,44.54878,6376,9,3,9,4,48,3.65,5.0,fr,45406,127,1915215,1,1,Active Shallow Crust,240.001,58.01285,0.0,09/03/6376 +2.68217,44.54878,7266,11,16,3,7,30,3.85,15.0,fr,45407,145,1915237,1,1,Active Shallow Crust,0.0,89.98982,0.0,11/16/7266 +2.68217,44.54878,8508,11,4,23,44,38,3.85,15.0,fr,45408,170,1915246,1,1,Active Shallow Crust,128.8959,89.99364,0.0,11/04/8508 +2.68217,44.54878,4064,4,23,4,49,59,3.95,5.0,fr,45409,81,1915254,1,1,Active Shallow Crust,0.0,89.99083,-90.0,04/23/4064 +2.68217,44.54878,6440,8,3,3,6,16,4.15,15.0,fr,45410,128,1915273,1,1,Active Shallow Crust,0.0,89.9892,0.0,08/03/6440 +2.68217,44.54878,4163,10,20,20,58,13,4.95,15.0,fr,45411,83,1915378,1,1,Active Shallow Crust,128.8907,89.98969,0.0,10/20/4163 +2.68217,44.54878,8204,7,1,8,34,51,5.25,15.0,fr,45412,164,1915414,1,1,Active Shallow Crust,128.8843,89.98696,0.0,07/01/8204 +3.47496,51.1839,4572,7,28,18,9,53,3.55,5.0,fr,45413,91,1915680,1,1,Active Shallow Crust,0.0,89.99052,0.0,07/28/4572 +3.47496,51.1839,2783,9,1,8,17,45,3.65,5.0,fr,45414,55,1915701,1,1,Active Shallow Crust,128.8995,89.96362,0.0,09/01/2783 +3.47496,51.1839,9022,10,10,18,5,4,3.75,15.0,fr,45415,180,1915705,1,1,Active Shallow Crust,0.0,89.98996,0.0,10/10/9022 +3.47496,51.1839,9209,2,12,23,57,15,3.85,5.0,fr,45416,184,1915716,1,1,Active Shallow Crust,0.0,89.99105,0.0,02/12/9209 +3.47496,51.1839,2239,5,3,13,36,59,4.05,5.0,fr,45417,44,1915740,1,1,Active Shallow Crust,0.0,89.98933,0.0,05/03/2239 +3.47496,51.1839,1467,3,23,5,57,50,4.05,27.5,fr,45418,29,1915742,1,1,Active Shallow Crust,0.0,89.98933,0.0,03/23/1467 +3.47496,51.1839,7494,7,13,14,55,47,4.05,5.0,fr,45419,149,1915749,1,1,Active Shallow Crust,128.8896,89.99378,0.0,07/13/7494 +3.47496,51.1839,2558,3,27,20,15,24,4.15,5.0,fr,45420,51,1915752,1,1,Active Shallow Crust,0.0,89.99049,0.0,03/27/2558 +3.47496,51.1839,6915,5,6,10,54,8,4.65,5.0,fr,45421,138,1915812,1,1,Active Shallow Crust,0.0,89.9902,0.0,05/06/6915 +3.47496,51.1839,4909,5,31,11,38,58,5.15,15.0,fr,45422,98,1915873,1,1,Active Shallow Crust,0.0,89.98998,0.0,05/31/4909 +3.47496,51.1839,5619,2,21,14,30,55,5.15,5.0,fr,45423,112,1915878,1,1,Active Shallow Crust,0.0,89.98986,-90.0,02/21/5619 +-0.48045,49.99666,2132,11,24,21,48,46,3.55,5.0,fr,45424,42,1916160,1,1,Active Shallow Crust,0.0,89.98987,0.0,11/24/2132 +-0.48045,49.99666,8396,1,27,3,37,23,3.95,5.0,fr,45425,167,1916208,1,1,Active Shallow Crust,0.0,89.99003,0.0,01/27/8396 +-0.48045,49.99666,1052,12,24,19,45,55,4.15,5.0,fr,45426,21,1916232,1,2,Active Shallow Crust,0.0,89.99005,0.0,12/24/1052 +-0.48045,49.99666,7356,6,20,23,53,26,4.15,5.0,fr,45427,147,1916232,1,2,Active Shallow Crust,0.0,89.99005,0.0,06/20/7356 +-0.48045,49.99666,8464,1,10,4,36,29,4.35,27.5,fr,45428,169,1916258,1,1,Active Shallow Crust,0.0,89.99,0.0,01/10/8464 +-0.48045,49.99666,6862,9,6,5,20,50,4.35,5.0,fr,45429,137,1916259,1,1,Active Shallow Crust,240.0093,57.99608,0.0,09/06/6862 +-0.48045,49.99666,8973,10,28,11,12,4,5.15,5.0,fr,45430,179,1916358,1,1,Active Shallow Crust,0.0,89.98999,-90.0,10/28/8973 +3.06324,42.48747,5525,5,1,19,33,29,3.55,5.0,fr,45431,110,1916640,1,2,Active Shallow Crust,0.0,89.98885,0.0,05/01/5525 +3.06324,42.48747,3609,1,26,1,53,55,3.55,5.0,fr,45432,72,1916640,1,2,Active Shallow Crust,0.0,89.98885,0.0,01/26/3609 +3.06324,42.48747,7071,12,15,5,8,25,3.55,5.0,fr,45433,141,1916643,1,1,Active Shallow Crust,240.0118,57.99823,0.0,12/15/7071 +3.06324,42.48747,2645,8,14,21,33,48,3.55,5.0,fr,45434,52,1916646,1,1,Active Shallow Crust,0.0,89.98872,-90.0,08/14/2645 +3.06324,42.48747,7340,1,12,6,32,29,3.65,5.0,fr,45435,146,1916652,1,1,Active Shallow Crust,0.0,89.99006,0.0,01/12/7340 +3.06324,42.48747,5711,4,10,10,50,8,3.65,15.0,fr,45436,114,1916659,1,1,Active Shallow Crust,0.0,89.98994,-90.0,04/10/5711 +3.06324,42.48747,3984,7,9,4,9,5,3.65,5.0,fr,45437,79,1916661,1,2,Active Shallow Crust,128.9014,89.96345,0.0,07/09/3984 +3.06324,42.48747,5242,4,30,8,29,53,3.65,5.0,fr,45438,104,1916661,1,2,Active Shallow Crust,128.9014,89.96345,0.0,04/30/5242 +3.06324,42.48747,3352,12,21,7,14,58,3.75,5.0,fr,45439,67,1916664,1,1,Active Shallow Crust,0.0,89.99114,0.0,12/21/3352 +3.06324,42.48747,5865,5,15,8,6,33,3.75,27.5,fr,45440,117,1916666,1,1,Active Shallow Crust,0.0,89.99114,0.0,05/15/5865 +3.06324,42.48747,1589,7,14,0,40,53,3.75,5.0,fr,45441,31,1916673,1,1,Active Shallow Crust,128.8975,89.96742,0.0,07/14/1589 +3.06324,42.48747,6062,4,24,13,6,7,3.85,5.0,fr,45442,121,1916676,1,1,Active Shallow Crust,0.0,89.98947,0.0,04/24/6062 +3.06324,42.48747,7269,5,31,11,59,19,3.85,15.0,fr,45443,145,1916677,1,1,Active Shallow Crust,0.0,89.98947,0.0,05/31/7269 +3.06324,42.48747,1975,7,10,9,59,16,3.95,5.0,fr,45444,39,1916688,1,1,Active Shallow Crust,0.0,89.99062,0.0,07/10/1975 +3.06324,42.48747,9027,1,26,18,14,16,4.25,5.0,fr,45445,180,1916724,1,1,Active Shallow Crust,0.0,89.99004,0.0,01/26/9027 +3.06324,42.48747,9913,12,1,12,25,14,4.25,15.0,fr,45446,198,1916725,1,1,Active Shallow Crust,0.0,89.99004,0.0,12/01/9913 +3.06324,42.48747,4801,3,30,13,41,32,4.35,5.0,fr,45447,96,1916736,1,1,Active Shallow Crust,0.0,89.98964,0.0,03/30/4801 +3.06324,42.48747,6533,1,20,22,57,43,4.45,5.0,fr,45448,130,1916748,1,1,Active Shallow Crust,0.0,89.98945,0.0,01/20/6533 +3.06324,42.48747,2812,3,29,3,18,22,4.45,15.0,fr,45449,56,1916749,1,1,Active Shallow Crust,0.0,89.98945,0.0,03/29/2812 +3.06324,42.48747,7879,11,2,16,52,36,4.85,5.0,fr,45450,157,1916805,1,1,Active Shallow Crust,128.8937,89.98902,0.0,11/02/7879 +0.68749,51.23078,5542,2,2,18,59,41,3.65,5.0,fr,45451,110,1917135,1,1,Active Shallow Crust,240.0016,58.01302,0.0,02/02/5542 +0.68749,51.23078,4414,5,2,4,44,59,3.75,5.0,fr,45452,88,1917150,1,1,Active Shallow Crust,0.0,89.98985,-90.0,05/02/4414 +0.68749,51.23078,9104,10,2,11,18,44,3.95,27.5,fr,45453,182,1917170,1,1,Active Shallow Crust,0.0,89.99004,0.0,10/02/9104 +0.68749,51.23078,5449,5,8,6,37,4,4.35,5.0,fr,45454,108,1917216,1,1,Active Shallow Crust,0.0,89.98994,0.0,05/08/5449 +-3.65232,48.01186,7034,10,22,0,53,25,3.55,5.0,fr,45455,140,1917600,1,2,Active Shallow Crust,0.0,89.98988,0.0,10/22/7034 +-3.65232,48.01186,8531,9,25,21,55,12,3.55,5.0,fr,45456,170,1917600,1,2,Active Shallow Crust,0.0,89.98988,0.0,09/25/8531 +-3.65232,48.01186,9535,8,18,20,38,52,3.55,15.0,fr,45457,190,1917601,1,1,Active Shallow Crust,0.0,89.98988,0.0,08/18/9535 +-3.65232,48.01186,390,3,13,23,17,23,3.65,5.0,fr,45458,7,1917612,1,1,Active Shallow Crust,0.0,89.99098,0.0,03/13/0390 +-3.65232,48.01186,1961,1,17,22,0,52,3.95,15.0,fr,45459,39,1917649,1,1,Active Shallow Crust,0.0,89.98936,0.0,01/17/1961 +-3.65232,48.01186,7398,5,30,3,5,10,4.05,5.0,fr,45460,147,1917669,1,1,Active Shallow Crust,128.8901,89.99336,0.0,05/30/7398 +-3.65232,48.01186,8313,11,8,8,41,32,4.45,5.0,fr,45461,166,1917708,1,2,Active Shallow Crust,0.0,89.99043,0.0,11/08/8313 +-3.65232,48.01186,5980,3,10,18,19,10,4.45,5.0,fr,45462,119,1917708,1,2,Active Shallow Crust,0.0,89.99043,0.0,03/10/5980 +-3.65232,48.01186,7002,5,14,14,56,2,4.65,5.0,fr,45463,140,1917732,1,1,Active Shallow Crust,0.0,89.98954,0.0,05/14/7002 +2.2841,41.69619,2364,9,29,18,30,10,3.55,5.0,fr,45464,47,1918080,1,5,Active Shallow Crust,0.0,89.98871,0.0,09/29/2364 +2.2841,41.69619,3337,11,19,19,44,58,3.55,5.0,fr,45465,66,1918080,1,5,Active Shallow Crust,0.0,89.98871,0.0,11/19/3337 +2.2841,41.69619,4277,1,19,6,17,23,3.55,5.0,fr,45466,85,1918080,1,5,Active Shallow Crust,0.0,89.98871,0.0,01/19/4277 +2.2841,41.69619,8127,1,24,22,53,22,3.55,5.0,fr,45467,162,1918080,1,5,Active Shallow Crust,0.0,89.98871,0.0,01/24/8127 +2.2841,41.69619,1554,9,5,4,16,11,3.55,5.0,fr,45468,31,1918080,1,5,Active Shallow Crust,0.0,89.98871,0.0,09/05/1554 +2.2841,41.69619,4749,3,24,22,31,48,3.55,15.0,fr,45469,94,1918081,1,2,Active Shallow Crust,0.0,89.98871,0.0,03/24/4749 +2.2841,41.69619,9285,12,18,16,57,17,3.55,15.0,fr,45470,185,1918081,1,2,Active Shallow Crust,0.0,89.98871,0.0,12/18/9285 +2.2841,41.69619,6357,10,10,6,55,19,3.55,27.5,fr,45471,127,1918082,1,1,Active Shallow Crust,0.0,89.98871,0.0,10/10/6357 +2.2841,41.69619,1299,5,16,16,48,16,3.65,5.0,fr,45472,25,1918092,1,1,Active Shallow Crust,0.0,89.98994,0.0,05/16/1299 +2.2841,41.69619,4982,9,25,3,24,8,3.65,15.0,fr,45473,99,1918093,1,1,Active Shallow Crust,0.0,89.98994,0.0,09/25/4982 +2.2841,41.69619,3472,11,18,12,41,18,3.75,5.0,fr,45474,69,1918104,1,2,Active Shallow Crust,0.0,89.99103,0.0,11/18/3472 +2.2841,41.69619,4193,5,9,2,13,14,3.75,5.0,fr,45475,83,1918104,1,2,Active Shallow Crust,0.0,89.99103,0.0,05/09/4193 +2.2841,41.69619,7938,12,10,17,4,56,3.95,5.0,fr,45476,158,1918128,1,2,Active Shallow Crust,0.0,89.9905,0.0,12/10/7938 +2.2841,41.69619,2224,12,22,7,58,9,3.95,5.0,fr,45477,44,1918128,1,2,Active Shallow Crust,0.0,89.9905,0.0,12/22/2224 +2.2841,41.69619,8478,3,12,16,6,54,3.95,15.0,fr,45478,169,1918129,1,2,Active Shallow Crust,0.0,89.9905,0.0,03/12/8478 +2.2841,41.69619,9073,9,28,4,15,45,3.95,15.0,fr,45479,181,1918129,1,2,Active Shallow Crust,0.0,89.9905,0.0,09/28/9073 +2.2841,41.69619,5732,12,5,0,6,46,3.95,15.0,fr,45480,114,1918138,1,1,Active Shallow Crust,128.9011,89.99406,0.0,12/05/5732 +2.2841,41.69619,3004,7,15,6,56,29,4.05,15.0,fr,45481,60,1918141,1,1,Active Shallow Crust,0.0,89.98942,0.0,07/15/3004 +2.2841,41.69619,2690,12,23,10,19,9,4.15,27.5,fr,45482,53,1918154,1,1,Active Shallow Crust,0.0,89.99056,0.0,12/23/2690 +2.2841,41.69619,8827,12,31,18,57,33,4.35,5.0,fr,45483,176,1918176,1,1,Active Shallow Crust,0.0,89.98951,0.0,12/31/8827 +2.2841,41.69619,9329,7,30,21,56,33,4.35,27.5,fr,45484,186,1918178,1,1,Active Shallow Crust,0.0,89.98951,0.0,07/30/9329 +2.2841,41.69619,4050,8,7,11,55,34,4.55,5.0,fr,45485,80,1918209,1,1,Active Shallow Crust,128.8952,89.98566,0.0,08/07/4050 +2.2841,41.69619,4596,11,20,22,7,44,4.65,5.0,fr,45486,91,1918212,1,1,Active Shallow Crust,0.0,89.99045,0.0,11/20/4596 +2.2841,41.69619,2495,5,7,11,58,11,4.75,15.0,fr,45487,49,1918225,1,1,Active Shallow Crust,0.0,89.98959,0.0,05/07/2495 +2.2841,41.69619,2657,2,3,0,16,41,4.95,5.0,fr,45488,53,1918248,1,1,Active Shallow Crust,0.0,89.99023,0.0,02/03/2657 +2.2841,41.69619,1357,11,3,10,55,21,5.75,5.0,fr,45489,27,1918353,1,1,Active Shallow Crust,128.8757,89.98852,0.0,11/03/1357 +0.34039,47.39215,7990,9,7,12,8,30,3.55,5.0,fr,45490,159,1918560,1,1,Active Shallow Crust,0.0,89.99019,0.0,09/07/7990 +0.34039,47.39215,8745,3,1,9,48,27,3.55,27.5,fr,45491,174,1918562,1,1,Active Shallow Crust,0.0,89.99019,0.0,03/01/8745 +0.34039,47.39215,7194,11,24,22,50,42,3.55,5.0,fr,45492,143,1918566,1,1,Active Shallow Crust,0.0,89.99007,-90.0,11/24/7194 +0.34039,47.39215,6400,2,27,11,46,35,3.65,5.0,fr,45493,127,1918572,1,1,Active Shallow Crust,0.0,89.99011,0.0,02/27/6400 +0.34039,47.39215,1578,10,18,14,48,15,3.75,5.0,fr,45494,31,1918584,1,1,Active Shallow Crust,0.0,89.98983,0.0,10/18/1578 +0.34039,47.39215,6263,10,1,14,58,53,3.75,15.0,fr,45495,125,1918588,1,1,Active Shallow Crust,240.0085,58.01756,0.0,10/01/6263 +0.34039,47.39215,210,5,6,11,41,46,3.85,15.0,fr,45496,4,1918597,1,1,Active Shallow Crust,0.0,89.99003,0.0,05/06/0210 +0.34039,47.39215,1956,8,20,23,14,1,4.05,5.0,fr,45497,39,1918620,1,1,Active Shallow Crust,0.0,89.98992,0.0,08/20/1956 +0.34039,47.39215,5692,3,7,16,10,57,4.35,5.0,fr,45498,113,1918656,1,1,Active Shallow Crust,0.0,89.98997,0.0,03/07/5692 +5.91581,45.79581,2481,6,12,15,12,14,3.55,5.0,fr,45499,49,1919520,1,2,Active Shallow Crust,0.0,89.99297,0.0,06/12/2481 +5.91581,45.79581,4300,9,3,2,35,8,3.55,5.0,fr,45500,85,1919520,1,2,Active Shallow Crust,0.0,89.99297,0.0,09/03/4300 +5.91581,45.79581,1956,2,27,15,23,56,3.55,15.0,fr,45501,39,1919521,1,1,Active Shallow Crust,0.0,89.99297,0.0,02/27/1956 +5.91581,45.79581,9565,8,2,7,4,3,3.55,5.0,fr,45502,191,1919523,1,2,Active Shallow Crust,240.011,57.99893,0.0,08/02/9565 +5.91581,45.79581,7127,10,28,15,27,9,3.55,5.0,fr,45503,142,1919523,1,2,Active Shallow Crust,240.011,57.99893,0.0,10/28/7127 +5.91581,45.79581,8262,7,15,21,54,34,3.55,5.0,fr,45504,165,1919526,1,1,Active Shallow Crust,0.0,89.99289,-90.0,07/15/8262 +5.91581,45.79581,1307,3,27,17,22,21,3.55,5.0,fr,45505,26,1919529,1,1,Active Shallow Crust,128.8964,89.99297,0.0,03/27/1307 +5.91581,45.79581,5147,1,20,17,1,50,3.65,5.0,fr,45506,102,1919532,1,3,Active Shallow Crust,0.0,89.98746,0.0,01/20/5147 +5.91581,45.79581,1845,6,4,21,32,35,3.65,5.0,fr,45507,36,1919532,1,3,Active Shallow Crust,0.0,89.98746,0.0,06/04/1845 +5.91581,45.79581,7439,2,27,15,12,52,3.65,5.0,fr,45508,148,1919532,1,3,Active Shallow Crust,0.0,89.98746,0.0,02/27/7439 +5.91581,45.79581,540,3,20,14,13,2,3.65,5.0,fr,45509,10,1919538,1,1,Active Shallow Crust,0.0,89.98732,-90.0,03/20/0540 +5.91581,45.79581,3006,12,19,22,22,27,3.65,5.0,fr,45510,60,1919541,1,1,Active Shallow Crust,128.9002,89.96351,0.0,12/19/3006 +5.91581,45.79581,3286,5,23,2,23,52,3.75,5.0,fr,45511,65,1919544,1,3,Active Shallow Crust,0.0,89.98883,0.0,05/23/3286 +5.91581,45.79581,9613,11,21,6,7,7,3.75,5.0,fr,45512,192,1919544,1,3,Active Shallow Crust,0.0,89.98883,0.0,11/21/9613 +5.91581,45.79581,3575,8,11,7,46,58,3.75,5.0,fr,45513,71,1919544,1,3,Active Shallow Crust,0.0,89.98883,0.0,08/11/3575 +5.91581,45.79581,3425,2,20,19,52,24,3.75,15.0,fr,45514,68,1919545,1,1,Active Shallow Crust,0.0,89.98883,0.0,02/20/3425 +5.91581,45.79581,6222,6,5,17,58,56,3.75,27.5,fr,45515,124,1919546,1,1,Active Shallow Crust,0.0,89.98883,0.0,06/05/6222 +5.91581,45.79581,9723,1,23,4,0,12,3.75,5.0,fr,45516,194,1919550,1,1,Active Shallow Crust,0.0,89.9887,-90.0,01/23/9723 +5.91581,45.79581,2613,7,20,4,3,37,3.75,5.0,fr,45517,52,1919553,1,1,Active Shallow Crust,128.8958,89.96748,0.0,07/20/2613 +5.91581,45.79581,1235,4,12,12,22,13,3.85,5.0,fr,45518,24,1919556,1,1,Active Shallow Crust,0.0,89.99004,0.0,04/12/1235 +5.91581,45.79581,1140,1,16,8,13,39,3.85,5.0,fr,45519,22,1919559,1,1,Active Shallow Crust,240.011,57.99774,0.0,01/16/1140 +5.91581,45.79581,558,9,29,12,25,49,3.95,5.0,fr,45520,11,1919568,1,1,Active Shallow Crust,0.0,89.99113,0.0,09/29/0558 +5.91581,45.79581,3316,9,30,16,43,48,3.95,15.0,fr,45521,66,1919569,1,1,Active Shallow Crust,0.0,89.99113,0.0,09/30/3316 +5.91581,45.79581,1187,11,10,13,19,0,3.95,5.0,fr,45522,23,1919571,1,1,Active Shallow Crust,240.019,58.00515,0.0,11/10/1187 +5.91581,45.79581,1875,3,21,12,16,15,3.95,15.0,fr,45523,37,1919572,1,1,Active Shallow Crust,240.019,58.00515,0.0,03/21/1875 +5.91581,45.79581,5179,6,22,1,29,16,4.05,5.0,fr,45524,103,1919580,1,1,Active Shallow Crust,0.0,89.98814,0.0,06/22/5179 +5.91581,45.79581,2631,7,6,20,38,24,4.05,15.0,fr,45525,52,1919581,1,1,Active Shallow Crust,0.0,89.98814,0.0,07/06/2631 +5.91581,45.79581,590,4,28,9,14,55,4.05,27.5,fr,45526,11,1919582,1,1,Active Shallow Crust,0.0,89.98814,0.0,04/28/0590 +5.91581,45.79581,8008,6,12,6,28,14,4.25,5.0,fr,45527,160,1919604,1,1,Active Shallow Crust,0.0,89.99058,0.0,06/12/8008 +5.91581,45.79581,5358,9,7,13,50,47,4.25,5.0,fr,45528,107,1919610,1,1,Active Shallow Crust,0.0,89.99047,-90.0,09/07/5358 +5.91581,45.79581,3886,10,10,3,50,10,4.35,15.0,fr,45529,77,1919617,1,1,Active Shallow Crust,0.0,89.9888,0.0,10/10/3886 +5.91581,45.79581,9243,6,16,15,5,12,4.45,27.5,fr,45530,184,1919630,1,1,Active Shallow Crust,0.0,89.99002,0.0,06/16/9243 +5.91581,45.79581,4636,7,29,14,39,44,4.55,15.0,fr,45531,92,1919641,1,1,Active Shallow Crust,0.0,89.9911,0.0,07/29/4636 +5.91581,45.79581,7467,6,3,7,58,49,4.65,27.5,fr,45532,149,1919660,1,1,Active Shallow Crust,0.0,89.98997,-90.0,06/03/7467 +5.91581,45.79581,9771,7,16,6,39,2,4.75,5.0,fr,45533,195,1919664,1,1,Active Shallow Crust,0.0,89.9894,0.0,07/16/9771 +5.91581,45.79581,382,1,12,13,52,27,4.85,27.5,fr,45534,7,1919681,1,1,Active Shallow Crust,240.0172,58.00223,0.0,01/12/0382 +5.91581,45.79581,1975,6,8,3,17,36,5.65,5.0,fr,45535,39,1919772,1,2,Active Shallow Crust,0.0,89.98997,0.0,06/08/1975 +5.91581,45.79581,23,12,5,0,59,25,5.65,5.0,fr,45536,0,1919772,1,2,Active Shallow Crust,0.0,89.98997,0.0,12/05/0023 +2.41358,42.65355,7480,9,17,12,46,59,3.55,5.0,fr,45537,149,1920480,1,2,Active Shallow Crust,0.0,89.98888,0.0,09/17/7480 +2.41358,42.65355,4732,11,20,10,31,29,3.55,5.0,fr,45538,94,1920480,1,2,Active Shallow Crust,0.0,89.98888,0.0,11/20/4732 +2.41358,42.65355,7027,3,27,5,19,42,3.55,15.0,fr,45539,140,1920481,1,1,Active Shallow Crust,0.0,89.98888,0.0,03/27/7027 +2.41358,42.65355,8572,6,20,0,56,14,3.55,27.5,fr,45540,171,1920482,1,1,Active Shallow Crust,0.0,89.98888,0.0,06/20/8572 +2.41358,42.65355,1522,4,14,22,0,22,3.55,5.0,fr,45541,30,1920483,1,1,Active Shallow Crust,240.0116,57.99805,0.0,04/14/1522 +2.41358,42.65355,7280,7,24,2,43,56,3.55,5.0,fr,45542,145,1920486,1,1,Active Shallow Crust,0.0,89.98875,-90.0,07/24/7280 +2.41358,42.65355,872,7,29,6,28,5,3.65,27.5,fr,45543,17,1920494,1,1,Active Shallow Crust,0.0,89.99008,0.0,07/29/0872 +2.41358,42.65355,3746,9,26,5,4,30,3.65,15.0,fr,45544,74,1920496,1,1,Active Shallow Crust,240.0001,58.0128,0.0,09/26/3746 +2.41358,42.65355,6068,4,9,9,49,36,3.65,5.0,fr,45545,121,1920498,1,1,Active Shallow Crust,0.0,89.98997,-90.0,04/09/6068 +2.41358,42.65355,8839,8,19,14,35,48,3.75,5.0,fr,45546,176,1920504,1,1,Active Shallow Crust,0.0,89.99117,0.0,08/19/8839 +2.41358,42.65355,7368,8,31,4,3,21,3.85,5.0,fr,45547,147,1920516,1,1,Active Shallow Crust,0.0,89.9895,0.0,08/31/7368 +2.41358,42.65355,5863,8,12,11,45,51,3.85,15.0,fr,45548,117,1920517,1,1,Active Shallow Crust,0.0,89.9895,0.0,08/12/5863 +2.41358,42.65355,1875,8,11,22,36,17,3.85,5.0,fr,45549,37,1920525,1,1,Active Shallow Crust,128.8957,89.99475,0.0,08/11/1875 +2.41358,42.65355,6235,6,26,4,30,5,3.95,5.0,fr,45550,124,1920528,1,2,Active Shallow Crust,0.0,89.99064,0.0,06/26/6235 +2.41358,42.65355,6505,8,1,9,37,2,3.95,5.0,fr,45551,130,1920528,1,2,Active Shallow Crust,0.0,89.99064,0.0,08/01/6505 +2.41358,42.65355,8071,6,11,1,21,46,3.95,5.0,fr,45552,161,1920534,1,1,Active Shallow Crust,0.0,89.99053,-90.0,06/11/8071 +2.41358,42.65355,9259,10,29,8,55,44,4.05,5.0,fr,45553,185,1920546,1,1,Active Shallow Crust,0.0,89.98946,-90.0,10/29/9259 +2.41358,42.65355,173,2,27,0,1,11,4.15,5.0,fr,45554,3,1920558,1,2,Active Shallow Crust,0.0,89.9906,-90.0,02/27/0173 +2.41358,42.65355,6118,3,8,9,34,55,4.15,5.0,fr,45555,122,1920558,1,2,Active Shallow Crust,0.0,89.9906,-90.0,03/08/6118 +2.41358,42.65355,3225,6,25,5,18,50,4.25,5.0,fr,45556,64,1920564,1,1,Active Shallow Crust,0.0,89.99006,0.0,06/25/3225 +2.41358,42.65355,882,7,20,7,56,35,4.75,5.0,fr,45557,17,1920624,1,1,Active Shallow Crust,0.0,89.98975,0.0,07/20/0882 +-3.08084,49.95061,8409,4,21,22,10,40,3.65,15.0,fr,45558,168,1921453,1,1,Active Shallow Crust,0.0,89.99133,0.0,04/21/8409 +-5.27369,48.11848,6702,1,4,5,24,34,3.55,5.0,fr,45559,134,1921929,1,1,Active Shallow Crust,128.896,89.99327,0.0,01/04/6702 +-5.27369,48.11848,942,4,4,16,41,17,3.85,5.0,fr,45560,18,1921956,1,1,Active Shallow Crust,0.0,89.99047,0.0,04/04/0942 +-5.27369,48.11848,4643,6,11,18,41,12,3.95,5.0,fr,45561,92,1921968,1,1,Active Shallow Crust,0.0,89.9915,0.0,06/11/4643 +-5.27369,48.11848,5388,8,29,15,0,54,3.95,15.0,fr,45562,107,1921969,1,1,Active Shallow Crust,0.0,89.9915,0.0,08/29/5388 +-5.27369,48.11848,98,12,19,12,31,20,4.15,5.0,fr,45563,1,1921992,1,1,Active Shallow Crust,0.0,89.98988,0.0,12/19/0098 +-5.27369,48.11848,8103,4,26,13,6,53,4.25,5.0,fr,45564,162,1922004,1,1,Active Shallow Crust,0.0,89.99097,0.0,04/26/8103 +2.54489,49.74235,2384,10,4,18,11,40,3.55,5.0,fr,45565,47,1922400,1,1,Active Shallow Crust,0.0,89.99023,0.0,10/04/2384 +2.54489,49.74235,8884,1,25,7,34,10,4.05,5.0,fr,45566,177,1922466,1,1,Active Shallow Crust,0.0,89.99073,-90.0,01/25/8884 +2.54489,49.74235,699,5,23,18,51,32,4.15,5.0,fr,45567,13,1922472,1,1,Active Shallow Crust,0.0,89.9902,0.0,05/23/0699 +2.54489,49.74235,8157,7,6,13,1,44,4.65,5.0,fr,45568,163,1922532,1,1,Active Shallow Crust,0.0,89.9899,0.0,07/06/8157 +-0.53015,50.65119,1428,6,28,21,48,55,3.95,15.0,fr,45569,28,1922929,1,1,Active Shallow Crust,0.0,89.98991,0.0,06/28/1428 +8.95297,50.84261,196,3,9,18,33,26,4.05,5.0,fr,45570,3,1923429,1,1,Active Shallow Crust,128.8909,89.99284,0.0,03/09/0196 +8.95297,50.84261,1728,7,11,10,17,18,5.05,5.0,fr,45571,34,1923543,1,1,Active Shallow Crust,240.0247,57.99816,0.0,07/11/1728 +6.30466,51.03714,2217,4,29,21,39,10,3.55,5.0,fr,45572,44,1923840,1,1,Active Shallow Crust,0.0,89.98732,0.0,04/29/2217 +6.30466,51.03714,8149,5,12,19,46,56,3.55,15.0,fr,45573,162,1923841,1,2,Active Shallow Crust,0.0,89.98732,0.0,05/12/8149 +6.30466,51.03714,1956,11,18,14,8,32,3.55,15.0,fr,45574,39,1923841,1,2,Active Shallow Crust,0.0,89.98732,0.0,11/18/1956 +6.30466,51.03714,740,7,20,15,2,56,3.55,27.5,fr,45575,14,1923842,1,2,Active Shallow Crust,0.0,89.98732,0.0,07/20/0740 +6.30466,51.03714,1174,2,9,12,50,6,3.55,27.5,fr,45576,23,1923842,1,2,Active Shallow Crust,0.0,89.98732,0.0,02/09/1174 +6.30466,51.03714,124,4,24,10,26,46,3.55,5.0,fr,45577,2,1923843,1,1,Active Shallow Crust,240.0125,57.99856,0.0,04/24/0124 +6.30466,51.03714,3949,4,15,10,28,22,3.55,5.0,fr,45578,78,1923846,1,1,Active Shallow Crust,0.0,89.98717,-90.0,04/15/3949 +6.30466,51.03714,4011,6,17,14,13,1,3.65,5.0,fr,45579,80,1923852,1,3,Active Shallow Crust,0.0,89.9887,0.0,06/17/4011 +6.30466,51.03714,9484,12,9,5,7,36,3.65,5.0,fr,45580,189,1923852,1,3,Active Shallow Crust,0.0,89.9887,0.0,12/09/9484 +6.30466,51.03714,6844,11,13,8,40,39,3.65,5.0,fr,45581,136,1923852,1,3,Active Shallow Crust,0.0,89.9887,0.0,11/13/6844 +6.30466,51.03714,1814,7,26,2,31,0,3.65,27.5,fr,45582,36,1923854,1,1,Active Shallow Crust,0.0,89.9887,0.0,07/26/1814 +6.30466,51.03714,8195,4,2,21,55,16,3.65,15.0,fr,45583,163,1923856,1,1,Active Shallow Crust,240.002,58.01353,0.0,04/02/8195 +6.30466,51.03714,6141,10,17,18,23,57,3.75,5.0,fr,45584,122,1923864,1,1,Active Shallow Crust,0.0,89.98993,0.0,10/17/6141 +6.30466,51.03714,9616,1,18,9,25,5,3.85,5.0,fr,45585,192,1923876,1,3,Active Shallow Crust,0.0,89.99102,0.0,01/18/9616 +6.30466,51.03714,9200,1,26,9,10,38,3.85,5.0,fr,45586,183,1923876,1,3,Active Shallow Crust,0.0,89.99102,0.0,01/26/9200 +6.30466,51.03714,3611,5,27,20,4,21,3.85,5.0,fr,45587,72,1923876,1,3,Active Shallow Crust,0.0,89.99102,0.0,05/27/3611 +6.30466,51.03714,5701,1,6,5,33,29,3.85,27.5,fr,45588,114,1923878,1,1,Active Shallow Crust,0.0,89.99102,0.0,01/06/5701 +6.30466,51.03714,9458,3,2,13,55,35,3.85,5.0,fr,45589,189,1923885,1,1,Active Shallow Crust,128.8954,89.99327,0.0,03/02/9458 +6.30466,51.03714,2421,9,30,4,38,35,3.95,5.0,fr,45590,48,1923888,1,1,Active Shallow Crust,0.0,89.992,0.0,09/30/2421 +6.30466,51.03714,9279,3,1,3,7,46,3.95,27.5,fr,45591,185,1923899,1,1,Active Shallow Crust,128.8989,89.994,0.0,03/01/9279 +6.30466,51.03714,1424,3,5,12,44,10,4.05,15.0,fr,45592,28,1923901,1,1,Active Shallow Crust,0.0,89.9893,0.0,03/05/1424 +6.30466,51.03714,4459,9,14,2,14,0,4.15,5.0,fr,45593,89,1923912,1,2,Active Shallow Crust,0.0,89.99046,0.0,09/14/4459 +6.30466,51.03714,858,5,27,12,50,32,4.15,5.0,fr,45594,17,1923912,1,2,Active Shallow Crust,0.0,89.99046,0.0,05/27/0858 +6.30466,51.03714,4807,12,18,6,52,26,4.25,5.0,fr,45595,96,1923924,1,2,Active Shallow Crust,0.0,89.98867,0.0,12/18/4807 +6.30466,51.03714,743,8,27,11,14,38,4.25,5.0,fr,45596,14,1923924,1,2,Active Shallow Crust,0.0,89.98867,0.0,08/27/0743 +6.30466,51.03714,8667,10,4,10,53,45,4.25,15.0,fr,45597,173,1923925,1,1,Active Shallow Crust,0.0,89.98867,0.0,10/04/8667 +6.30466,51.03714,9354,9,27,22,35,38,4.35,15.0,fr,45598,187,1923940,1,1,Active Shallow Crust,240.0092,57.99638,0.0,09/27/9354 +6.30466,51.03714,4589,12,14,2,24,47,4.75,5.0,fr,45599,91,1923984,1,1,Active Shallow Crust,0.0,89.99044,0.0,12/14/4589 +6.30466,51.03714,9311,6,15,17,47,15,4.85,5.0,fr,45600,186,1923999,1,1,Active Shallow Crust,240.0191,58.00267,0.0,06/15/9311 +6.30466,51.03714,3759,7,27,16,40,16,4.95,5.0,fr,45601,75,1924008,1,1,Active Shallow Crust,0.0,89.98988,0.0,07/27/3759 +6.30466,51.03714,9367,7,27,21,36,26,5.25,27.5,fr,45602,187,1924049,1,1,Active Shallow Crust,240.0287,58.00087,0.0,07/27/9367 +4.89676,40.7249,6248,7,24,13,41,19,3.85,5.0,fr,45603,124,1924359,1,1,Active Shallow Crust,240.0094,57.99765,0.0,07/24/6248 +0.39275,42.66184,3607,4,26,10,57,38,3.55,5.0,fr,45604,72,1924800,1,4,Active Shallow Crust,0.0,89.98981,0.0,04/26/3607 +0.39275,42.66184,4957,2,27,20,20,32,3.55,5.0,fr,45605,99,1924800,1,4,Active Shallow Crust,0.0,89.98981,0.0,02/27/4957 +0.39275,42.66184,9284,2,22,6,5,9,3.55,5.0,fr,45606,185,1924800,1,4,Active Shallow Crust,0.0,89.98981,0.0,02/22/9284 +0.39275,42.66184,6242,7,8,18,32,38,3.55,5.0,fr,45607,124,1924800,1,4,Active Shallow Crust,0.0,89.98981,0.0,07/08/6242 +0.39275,42.66184,8742,10,21,3,17,5,3.55,15.0,fr,45608,174,1924801,1,2,Active Shallow Crust,0.0,89.98981,0.0,10/21/8742 +0.39275,42.66184,7388,7,2,10,53,59,3.55,15.0,fr,45609,147,1924801,1,2,Active Shallow Crust,0.0,89.98981,0.0,07/02/7388 +0.39275,42.66184,4031,10,17,10,6,34,3.55,5.0,fr,45610,80,1924803,1,1,Active Shallow Crust,240.0118,57.99812,0.0,10/17/4031 +0.39275,42.66184,1866,7,28,0,26,26,3.55,15.0,fr,45611,37,1924804,1,1,Active Shallow Crust,240.0118,57.99812,0.0,07/28/1866 +0.39275,42.66184,5540,8,24,2,23,4,3.55,5.0,fr,45612,110,1924806,1,1,Active Shallow Crust,0.0,89.99016,-90.0,08/24/5540 +0.39275,42.66184,9723,3,17,17,35,12,3.65,5.0,fr,45613,194,1924812,1,1,Active Shallow Crust,0.0,89.99009,0.0,03/17/9723 +0.39275,42.66184,8110,11,26,5,39,16,3.65,15.0,fr,45614,162,1924813,1,2,Active Shallow Crust,0.0,89.99009,0.0,11/26/8110 +0.39275,42.66184,6362,5,25,22,17,42,3.65,15.0,fr,45615,127,1924813,1,2,Active Shallow Crust,0.0,89.99009,0.0,05/25/6362 +0.39275,42.66184,4031,6,20,1,22,57,3.65,15.0,fr,45616,80,1924816,1,2,Active Shallow Crust,240.0007,58.01278,0.0,06/20/4031 +0.39275,42.66184,4543,8,6,15,1,22,3.65,15.0,fr,45617,90,1924816,1,2,Active Shallow Crust,240.0007,58.01278,0.0,08/06/4543 +0.39275,42.66184,2794,8,6,22,6,15,3.75,5.0,fr,45618,55,1924824,1,1,Active Shallow Crust,0.0,89.99006,0.0,08/06/2794 +0.39275,42.66184,1879,10,19,2,36,10,3.75,15.0,fr,45619,37,1924825,1,1,Active Shallow Crust,0.0,89.99006,0.0,10/19/1879 +0.39275,42.66184,1584,3,1,5,19,40,3.75,5.0,fr,45620,31,1924833,1,1,Active Shallow Crust,128.897,89.96735,0.0,03/01/1584 +0.39275,42.66184,1660,12,6,23,37,6,3.85,5.0,fr,45621,33,1924836,1,3,Active Shallow Crust,0.0,89.99016,0.0,12/06/1660 +0.39275,42.66184,8920,4,26,14,9,48,3.85,5.0,fr,45622,178,1924836,1,3,Active Shallow Crust,0.0,89.99016,0.0,04/26/8920 +0.39275,42.66184,2099,6,5,17,0,51,3.85,5.0,fr,45623,41,1924836,1,3,Active Shallow Crust,0.0,89.99016,0.0,06/05/2099 +0.39275,42.66184,5010,4,4,8,45,42,3.85,15.0,fr,45624,100,1924837,1,1,Active Shallow Crust,0.0,89.99016,0.0,04/04/5010 +0.39275,42.66184,7257,10,25,13,8,4,3.85,5.0,fr,45625,145,1924839,1,1,Active Shallow Crust,240.0104,57.9977,0.0,10/25/7257 +0.39275,42.66184,8180,4,13,7,34,37,3.95,5.0,fr,45626,163,1924848,1,1,Active Shallow Crust,0.0,89.99006,0.0,04/13/8180 +0.39275,42.66184,9825,5,20,0,40,33,3.95,15.0,fr,45627,196,1924849,1,1,Active Shallow Crust,0.0,89.99006,0.0,05/20/9825 +0.39275,42.66184,4095,10,17,16,41,29,3.95,5.0,fr,45628,81,1924851,1,1,Active Shallow Crust,240.0192,58.00489,0.0,10/17/4095 +0.39275,42.66184,8003,7,26,10,0,4,4.05,5.0,fr,45629,160,1924860,1,1,Active Shallow Crust,0.0,89.9901,0.0,07/26/8003 +0.39275,42.66184,3324,12,13,3,32,36,4.05,15.0,fr,45630,66,1924861,1,1,Active Shallow Crust,0.0,89.9901,0.0,12/13/3324 +0.39275,42.66184,2707,2,22,7,35,8,4.05,27.5,fr,45631,54,1924865,1,1,Active Shallow Crust,240.0054,58.0057,0.0,02/22/2707 +0.39275,42.66184,2856,2,16,23,40,2,4.05,27.5,fr,45632,57,1924868,1,1,Active Shallow Crust,0.0,89.98998,-90.0,02/16/2856 +0.39275,42.66184,4506,12,13,22,33,26,4.15,15.0,fr,45633,90,1924873,1,1,Active Shallow Crust,0.0,89.99001,0.0,12/13/4506 +0.39275,42.66184,6217,10,23,13,39,47,4.15,27.5,fr,45634,124,1924880,1,1,Active Shallow Crust,0.0,89.9899,-90.0,10/23/6217 +0.39275,42.66184,188,9,1,6,6,15,4.35,5.0,fr,45635,3,1924896,1,1,Active Shallow Crust,0.0,89.99004,0.0,09/01/0188 +0.39275,42.66184,5167,4,25,10,22,24,4.45,5.0,fr,45636,103,1924908,1,1,Active Shallow Crust,0.0,89.98997,0.0,04/25/5167 +0.39275,42.66184,9117,5,10,18,17,40,4.55,5.0,fr,45637,182,1924920,1,1,Active Shallow Crust,0.0,89.99004,0.0,05/10/9117 +0.39275,42.66184,4808,3,18,1,0,38,4.65,5.0,fr,45638,96,1924932,1,1,Active Shallow Crust,0.0,89.98994,0.0,03/18/4808 +0.39275,42.66184,8455,2,23,3,10,24,4.65,15.0,fr,45639,169,1924942,1,1,Active Shallow Crust,128.8921,89.98701,0.0,02/23/8455 +0.39275,42.66184,4150,10,27,11,51,18,4.75,5.0,fr,45640,82,1924944,1,1,Active Shallow Crust,0.0,89.98999,0.0,10/27/4150 +0.39275,42.66184,8718,8,24,19,19,56,4.75,5.0,fr,45641,174,1924953,1,1,Active Shallow Crust,128.8898,89.98808,0.0,08/24/8718 +0.39275,42.66184,3825,4,24,22,49,25,5.15,27.5,fr,45642,76,1924994,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/24/3825 +5.8354,42.06619,1058,12,17,16,19,22,3.65,5.0,fr,45643,21,1925292,1,1,Active Shallow Crust,0.0,89.99332,0.0,12/17/1058 +5.8354,42.06619,7420,1,26,10,31,33,5.05,15.0,fr,45644,148,1925461,1,1,Active Shallow Crust,0.0,89.98935,0.0,01/26/7420 +9.14245,48.48157,7616,6,17,18,59,55,3.55,5.0,fr,45645,152,1925760,1,2,Active Shallow Crust,0.0,89.98663,0.0,06/17/7616 +9.14245,48.48157,1244,6,10,17,31,6,3.55,5.0,fr,45646,24,1925760,1,2,Active Shallow Crust,0.0,89.98663,0.0,06/10/1244 +9.14245,48.48157,1042,2,20,19,50,54,3.55,27.5,fr,45647,20,1925762,1,1,Active Shallow Crust,0.0,89.98663,0.0,02/20/1042 +9.14245,48.48157,6150,2,2,17,19,9,3.55,5.0,fr,45648,122,1925766,1,1,Active Shallow Crust,0.0,89.98647,-90.0,02/02/6150 +9.14245,48.48157,8724,8,10,22,26,48,3.55,5.0,fr,45649,174,1925769,1,1,Active Shallow Crust,128.8971,89.99332,0.0,08/10/8724 +9.14245,48.48157,3650,11,28,0,40,47,3.65,5.0,fr,45650,72,1925772,1,4,Active Shallow Crust,0.0,89.98808,0.0,11/28/3650 +9.14245,48.48157,7646,7,20,20,3,17,3.65,5.0,fr,45651,152,1925772,1,4,Active Shallow Crust,0.0,89.98808,0.0,07/20/7646 +9.14245,48.48157,9197,2,6,12,32,13,3.65,5.0,fr,45652,183,1925772,1,4,Active Shallow Crust,0.0,89.98808,0.0,02/06/9197 +9.14245,48.48157,9821,10,3,8,48,29,3.65,5.0,fr,45653,196,1925772,1,4,Active Shallow Crust,0.0,89.98808,0.0,10/03/9821 +9.14245,48.48157,1907,1,10,19,20,30,3.65,15.0,fr,45654,38,1925773,1,2,Active Shallow Crust,0.0,89.98808,0.0,01/10/1907 +9.14245,48.48157,6356,11,28,2,22,59,3.65,15.0,fr,45655,127,1925773,1,2,Active Shallow Crust,0.0,89.98808,0.0,11/28/6356 +9.14245,48.48157,3205,8,19,14,34,47,3.65,5.0,fr,45656,64,1925775,1,1,Active Shallow Crust,240.0,58.01363,0.0,08/19/3205 +9.14245,48.48157,4780,10,27,3,50,17,3.65,27.5,fr,45657,95,1925777,1,1,Active Shallow Crust,240.0,58.01354,0.0,10/27/4780 +9.14245,48.48157,6213,2,17,10,58,9,3.65,15.0,fr,45658,124,1925779,1,1,Active Shallow Crust,0.0,89.98795,-90.0,02/17/6213 +9.14245,48.48157,716,5,12,3,4,59,3.65,5.0,fr,45659,14,1925781,1,1,Active Shallow Crust,128.9013,89.96356,0.0,05/12/0716 +9.14245,48.48157,6367,6,21,9,5,2,3.75,5.0,fr,45660,127,1925784,1,2,Active Shallow Crust,0.0,89.98938,0.0,06/21/6367 +9.14245,48.48157,8691,10,12,10,31,3,3.75,5.0,fr,45661,173,1925784,1,2,Active Shallow Crust,0.0,89.98938,0.0,10/12/8691 +9.14245,48.48157,6627,1,31,6,58,33,3.75,15.0,fr,45662,132,1925785,1,1,Active Shallow Crust,0.0,89.98938,0.0,01/31/6627 +9.14245,48.48157,8383,2,23,16,5,7,3.75,27.5,fr,45663,167,1925786,1,1,Active Shallow Crust,0.0,89.98938,0.0,02/23/8383 +9.14245,48.48157,9381,10,28,23,41,39,3.85,5.0,fr,45664,187,1925796,1,2,Active Shallow Crust,0.0,89.99053,0.0,10/28/9381 +9.14245,48.48157,3479,4,27,15,25,52,3.85,5.0,fr,45665,69,1925796,1,2,Active Shallow Crust,0.0,89.99053,0.0,04/27/3479 +9.14245,48.48157,9541,2,6,21,58,39,3.85,15.0,fr,45666,190,1925800,1,1,Active Shallow Crust,240.0109,57.99793,0.0,02/06/9541 +9.14245,48.48157,3435,11,12,1,8,1,3.85,5.0,fr,45667,68,1925802,1,2,Active Shallow Crust,0.0,89.99043,-90.0,11/12/3435 +9.14245,48.48157,9236,6,20,15,0,33,3.85,5.0,fr,45668,184,1925802,1,2,Active Shallow Crust,0.0,89.99043,-90.0,06/20/9236 +9.14245,48.48157,9316,4,6,13,20,4,3.95,15.0,fr,45669,186,1925818,1,1,Active Shallow Crust,128.9007,89.99157,0.0,04/06/9316 +9.14245,48.48157,3375,11,3,22,21,53,4.05,15.0,fr,45670,67,1925821,1,1,Active Shallow Crust,0.0,89.99249,0.0,11/03/3375 +9.14245,48.48157,108,3,3,22,23,6,4.05,27.5,fr,45671,2,1925822,1,1,Active Shallow Crust,0.0,89.99249,0.0,03/03/0108 +9.14245,48.48157,9875,6,23,18,36,55,4.15,15.0,fr,45672,197,1925833,1,1,Active Shallow Crust,0.0,89.9933,0.0,06/23/9875 +9.14245,48.48157,7927,9,9,0,58,55,4.15,5.0,fr,45673,158,1925835,1,1,Active Shallow Crust,240.0091,57.99785,0.0,09/09/7927 +9.14245,48.48157,2476,8,1,9,20,53,4.45,5.0,fr,45674,49,1925868,1,2,Active Shallow Crust,0.0,89.99051,0.0,08/01/2476 +9.14245,48.48157,5553,2,4,3,14,12,4.45,5.0,fr,45675,111,1925868,1,2,Active Shallow Crust,0.0,89.99051,0.0,02/04/5553 +9.14245,48.48157,9640,3,12,7,9,18,4.45,15.0,fr,45676,192,1925869,1,1,Active Shallow Crust,0.0,89.99051,0.0,03/12/9640 +9.14245,48.48157,8319,2,26,3,25,9,4.45,5.0,fr,45677,166,1925871,1,1,Active Shallow Crust,240.0058,57.99517,0.0,02/26/8319 +9.14245,48.48157,5639,10,5,9,55,29,4.55,5.0,fr,45678,112,1925880,1,2,Active Shallow Crust,0.0,89.99155,0.0,10/05/5639 +9.14245,48.48157,226,7,18,21,9,12,4.55,5.0,fr,45679,4,1925880,1,2,Active Shallow Crust,0.0,89.99155,0.0,07/18/0226 +9.14245,48.48157,124,9,16,16,42,15,4.65,5.0,fr,45680,2,1925895,1,2,Active Shallow Crust,240.0116,57.99381,0.0,09/16/0124 +9.14245,48.48157,9575,1,10,12,25,17,4.65,5.0,fr,45681,191,1925895,1,2,Active Shallow Crust,240.0116,57.99381,0.0,01/10/9575 +9.14245,48.48157,4956,11,12,15,6,25,4.75,15.0,fr,45682,99,1925908,1,1,Active Shallow Crust,240.0078,58.0048,0.0,11/12/4956 +9.14245,48.48157,5638,3,11,13,8,43,4.75,5.0,fr,45683,112,1925913,1,1,Active Shallow Crust,128.8889,89.98785,0.0,03/11/5638 +9.14245,48.48157,9292,6,19,5,55,4,5.05,5.0,fr,45684,185,1925940,1,1,Active Shallow Crust,0.0,89.99049,0.0,06/19/9292 +9.14245,48.48157,6256,4,5,0,12,40,5.35,15.0,fr,45685,125,1925977,1,1,Active Shallow Crust,0.0,89.9899,0.0,04/05/6256 +9.14245,48.48157,3407,10,24,16,31,23,5.55,15.0,fr,45686,68,1926001,1,1,Active Shallow Crust,0.0,89.99064,0.0,10/24/3407 +4.84864,44.34123,4414,10,3,10,51,17,3.55,5.0,fr,45687,88,1926240,1,4,Active Shallow Crust,0.0,89.99279,0.0,10/03/4414 +4.84864,44.34123,9290,1,28,18,35,32,3.55,5.0,fr,45688,185,1926240,1,4,Active Shallow Crust,0.0,89.99279,0.0,01/28/9290 +4.84864,44.34123,8997,9,30,3,23,40,3.55,5.0,fr,45689,179,1926240,1,4,Active Shallow Crust,0.0,89.99279,0.0,09/30/8997 +4.84864,44.34123,6658,7,19,1,16,38,3.55,5.0,fr,45690,133,1926240,1,4,Active Shallow Crust,0.0,89.99279,0.0,07/19/6658 +4.84864,44.34123,731,11,6,5,38,55,3.55,15.0,fr,45691,14,1926241,1,5,Active Shallow Crust,0.0,89.99279,0.0,11/06/0731 +4.84864,44.34123,4388,12,24,14,1,51,3.55,15.0,fr,45692,87,1926241,1,5,Active Shallow Crust,0.0,89.99279,0.0,12/24/4388 +4.84864,44.34123,7966,7,17,4,31,57,3.55,15.0,fr,45693,159,1926241,1,5,Active Shallow Crust,0.0,89.99279,0.0,07/17/7966 +4.84864,44.34123,5213,12,23,7,49,35,3.55,15.0,fr,45694,104,1926241,1,5,Active Shallow Crust,0.0,89.99279,0.0,12/23/5213 +4.84864,44.34123,5640,1,13,10,5,10,3.55,15.0,fr,45695,112,1926241,1,5,Active Shallow Crust,0.0,89.99279,0.0,01/13/5640 +4.84864,44.34123,8721,9,7,17,46,7,3.55,5.0,fr,45696,174,1926243,1,2,Active Shallow Crust,240.0121,57.99815,0.0,09/07/8721 +4.84864,44.34123,126,12,19,6,43,33,3.55,5.0,fr,45697,2,1926243,1,2,Active Shallow Crust,240.0121,57.99815,0.0,12/19/0126 +4.84864,44.34123,4019,12,19,19,56,58,3.55,5.0,fr,45698,80,1926246,1,1,Active Shallow Crust,0.0,89.99271,-90.0,12/19/4019 +4.84864,44.34123,9084,8,25,15,25,23,3.55,5.0,fr,45699,181,1926249,1,2,Active Shallow Crust,128.897,89.99279,0.0,08/25/9084 +4.84864,44.34123,3507,11,26,14,41,47,3.55,5.0,fr,45700,70,1926249,1,2,Active Shallow Crust,128.897,89.99279,0.0,11/26/3507 +4.84864,44.34123,2570,12,12,3,17,16,3.55,27.5,fr,45701,51,1926251,1,1,Active Shallow Crust,128.897,89.99279,0.0,12/12/2570 +4.84864,44.34123,5487,10,11,3,15,19,3.65,5.0,fr,45702,109,1926252,1,8,Active Shallow Crust,0.0,89.98714,0.0,10/11/5487 +4.84864,44.34123,2147,12,31,3,4,10,3.65,5.0,fr,45703,42,1926252,1,8,Active Shallow Crust,0.0,89.98714,0.0,12/31/2147 +4.84864,44.34123,5363,5,30,1,52,24,3.65,5.0,fr,45704,107,1926252,1,8,Active Shallow Crust,0.0,89.98714,0.0,05/30/5363 +4.84864,44.34123,1235,4,17,18,34,37,3.65,5.0,fr,45705,24,1926252,1,8,Active Shallow Crust,0.0,89.98714,0.0,04/17/1235 +4.84864,44.34123,5730,1,17,7,59,59,3.65,5.0,fr,45706,114,1926252,1,8,Active Shallow Crust,0.0,89.98714,0.0,01/17/5730 +4.84864,44.34123,1281,9,18,13,32,59,3.65,5.0,fr,45707,25,1926252,1,8,Active Shallow Crust,0.0,89.98714,0.0,09/18/1281 +4.84864,44.34123,476,8,15,15,19,29,3.65,5.0,fr,45708,9,1926252,1,8,Active Shallow Crust,0.0,89.98714,0.0,08/15/0476 +4.84864,44.34123,8936,2,6,20,42,50,3.65,5.0,fr,45709,178,1926252,1,8,Active Shallow Crust,0.0,89.98714,0.0,02/06/8936 +4.84864,44.34123,6996,4,30,9,3,51,3.65,15.0,fr,45710,139,1926253,1,2,Active Shallow Crust,0.0,89.98714,0.0,04/30/6996 +4.84864,44.34123,7129,4,8,20,52,47,3.65,15.0,fr,45711,142,1926253,1,2,Active Shallow Crust,0.0,89.98714,0.0,04/08/7129 +4.84864,44.34123,2483,7,11,20,33,0,3.65,27.5,fr,45712,49,1926254,1,1,Active Shallow Crust,0.0,89.98714,0.0,07/11/2483 +4.84864,44.34123,339,3,26,22,33,6,3.65,5.0,fr,45713,6,1926258,1,1,Active Shallow Crust,0.0,89.987,-90.0,03/26/0339 +4.84864,44.34123,8913,8,13,16,57,26,3.75,5.0,fr,45714,178,1926264,1,6,Active Shallow Crust,0.0,89.98854,0.0,08/13/8913 +4.84864,44.34123,2234,11,17,17,6,4,3.75,5.0,fr,45715,44,1926264,1,6,Active Shallow Crust,0.0,89.98854,0.0,11/17/2234 +4.84864,44.34123,9303,7,28,23,50,31,3.75,5.0,fr,45716,186,1926264,1,6,Active Shallow Crust,0.0,89.98854,0.0,07/28/9303 +4.84864,44.34123,1051,10,17,7,33,5,3.75,5.0,fr,45717,21,1926264,1,6,Active Shallow Crust,0.0,89.98854,0.0,10/17/1051 +4.84864,44.34123,7907,12,18,10,31,18,3.75,5.0,fr,45718,158,1926264,1,6,Active Shallow Crust,0.0,89.98854,0.0,12/18/7907 +4.84864,44.34123,4724,12,28,3,25,33,3.75,5.0,fr,45719,94,1926264,1,6,Active Shallow Crust,0.0,89.98854,0.0,12/28/4724 +4.84864,44.34123,8780,4,16,18,28,22,3.75,15.0,fr,45720,175,1926265,1,1,Active Shallow Crust,0.0,89.98854,0.0,04/16/8780 +4.84864,44.34123,6307,9,23,16,17,51,3.75,27.5,fr,45721,126,1926266,1,1,Active Shallow Crust,0.0,89.98854,0.0,09/23/6307 +4.84864,44.34123,293,6,16,1,37,8,3.75,27.5,fr,45722,5,1926269,1,1,Active Shallow Crust,240.0082,58.01756,0.0,06/16/0293 +4.84864,44.34123,1116,3,4,2,24,35,3.75,5.0,fr,45723,22,1926270,1,2,Active Shallow Crust,0.0,89.98841,-90.0,03/04/1116 +4.84864,44.34123,3140,7,17,18,42,14,3.75,5.0,fr,45724,62,1926270,1,2,Active Shallow Crust,0.0,89.98841,-90.0,07/17/3140 +4.84864,44.34123,5952,6,8,16,27,32,3.85,5.0,fr,45725,119,1926276,1,4,Active Shallow Crust,0.0,89.98979,0.0,06/08/5952 +4.84864,44.34123,3244,8,20,19,0,11,3.85,5.0,fr,45726,64,1926276,1,4,Active Shallow Crust,0.0,89.98979,0.0,08/20/3244 +4.84864,44.34123,963,5,7,15,3,26,3.85,5.0,fr,45727,19,1926276,1,4,Active Shallow Crust,0.0,89.98979,0.0,05/07/0963 +4.84864,44.34123,1293,6,27,4,15,10,3.85,5.0,fr,45728,25,1926276,1,4,Active Shallow Crust,0.0,89.98979,0.0,06/27/1293 +4.84864,44.34123,5656,1,8,1,6,41,3.85,5.0,fr,45729,113,1926279,1,3,Active Shallow Crust,240.0109,57.99741,0.0,01/08/5656 +4.84864,44.34123,4677,8,1,23,13,43,3.85,5.0,fr,45730,93,1926279,1,3,Active Shallow Crust,240.0109,57.99741,0.0,08/01/4677 +4.84864,44.34123,3820,1,2,6,59,36,3.85,5.0,fr,45731,76,1926279,1,3,Active Shallow Crust,240.0109,57.99741,0.0,01/02/3820 +4.84864,44.34123,9354,3,13,6,51,49,3.95,5.0,fr,45732,187,1926288,1,1,Active Shallow Crust,0.0,89.9909,0.0,03/13/9354 +4.84864,44.34123,7435,12,2,8,1,42,3.95,15.0,fr,45733,148,1926295,1,1,Active Shallow Crust,0.0,89.99079,-90.0,12/02/7435 +4.84864,44.34123,8297,2,27,13,18,5,4.05,5.0,fr,45734,165,1926300,1,3,Active Shallow Crust,0.0,89.99189,0.0,02/27/8297 +4.84864,44.34123,2125,6,5,15,12,44,4.05,5.0,fr,45735,42,1926300,1,3,Active Shallow Crust,0.0,89.99189,0.0,06/05/2125 +4.84864,44.34123,8216,8,5,11,45,26,4.05,5.0,fr,45736,164,1926300,1,3,Active Shallow Crust,0.0,89.99189,0.0,08/05/8216 +4.84864,44.34123,6345,8,6,23,10,45,4.05,27.5,fr,45737,126,1926302,1,1,Active Shallow Crust,0.0,89.99189,0.0,08/06/6345 +4.84864,44.34123,1051,7,18,17,0,34,4.05,27.5,fr,45738,21,1926305,1,1,Active Shallow Crust,240.0051,58.006,0.0,07/18/1051 +4.84864,44.34123,4419,7,16,7,34,41,4.15,5.0,fr,45739,88,1926312,1,1,Active Shallow Crust,0.0,89.98916,0.0,07/16/4419 +4.84864,44.34123,5837,8,31,14,19,7,4.15,15.0,fr,45740,116,1926313,1,1,Active Shallow Crust,0.0,89.98916,0.0,08/31/5837 +4.84864,44.34123,3426,5,24,16,28,4,4.25,5.0,fr,45741,68,1926324,1,1,Active Shallow Crust,0.0,89.99033,0.0,05/24/3426 +4.84864,44.34123,3595,3,17,11,39,4,4.35,15.0,fr,45742,71,1926337,1,1,Active Shallow Crust,0.0,89.99139,0.0,03/17/3595 +4.84864,44.34123,2880,2,9,10,31,8,4.45,5.0,fr,45743,57,1926357,1,1,Active Shallow Crust,128.8934,89.99361,0.0,02/09/2880 +4.84864,44.34123,1798,3,21,11,33,45,4.55,5.0,fr,45744,35,1926363,1,1,Active Shallow Crust,240.0083,57.9972,0.0,03/21/1798 +4.84864,44.34123,7793,11,26,9,12,14,4.65,15.0,fr,45745,155,1926373,1,1,Active Shallow Crust,0.0,89.98984,0.0,11/26/7793 +4.84864,44.34123,6750,11,8,2,53,18,5.05,5.0,fr,45746,134,1926429,1,1,Active Shallow Crust,128.8862,89.99038,0.0,11/08/6750 +4.84864,44.34123,6961,3,8,6,38,10,5.45,5.0,fr,45747,139,1926468,1,1,Active Shallow Crust,0.0,89.99029,0.0,03/08/6961 +4.84864,44.34123,2325,12,2,4,14,0,6.05,15.0,fr,45748,46,1926541,1,1,Active Shallow Crust,0.0,89.98985,0.0,12/02/2325 +2.86228,42.45668,9170,7,9,19,43,43,3.65,5.0,fr,45749,183,1926732,1,1,Active Shallow Crust,0.0,89.99005,0.0,07/09/9170 +2.86228,42.45668,4504,1,6,5,27,15,3.65,15.0,fr,45750,90,1926733,1,1,Active Shallow Crust,0.0,89.99005,0.0,01/06/4504 +2.86228,42.45668,9596,7,19,7,12,42,3.75,5.0,fr,45751,191,1926744,1,2,Active Shallow Crust,0.0,89.99113,0.0,07/19/9596 +2.86228,42.45668,642,6,1,4,4,37,3.75,5.0,fr,45752,12,1926744,1,2,Active Shallow Crust,0.0,89.99113,0.0,06/01/0642 +2.86228,42.45668,4071,11,25,8,24,57,3.75,15.0,fr,45753,81,1926745,1,1,Active Shallow Crust,0.0,89.99113,0.0,11/25/4071 +2.86228,42.45668,1583,10,19,23,51,2,3.75,5.0,fr,45754,31,1926747,1,1,Active Shallow Crust,240.0082,58.01713,0.0,10/19/1583 +2.86228,42.45668,9656,2,1,12,24,29,3.75,5.0,fr,45755,193,1926750,1,1,Active Shallow Crust,0.0,89.99104,-90.0,02/01/9656 +2.86228,42.45668,1435,10,21,13,40,37,3.85,5.0,fr,45756,28,1926756,1,1,Active Shallow Crust,0.0,89.98946,0.0,10/21/1435 +2.86228,42.45668,5696,1,24,10,54,57,3.85,27.5,fr,45757,113,1926758,1,1,Active Shallow Crust,0.0,89.98946,0.0,01/24/5696 +2.86228,42.45668,6007,9,13,17,57,15,4.05,5.0,fr,45758,120,1926783,1,1,Active Shallow Crust,240.0053,58.00576,0.0,09/13/6007 +2.86228,42.45668,6523,2,7,13,40,53,4.15,5.0,fr,45759,130,1926792,1,1,Active Shallow Crust,0.0,89.99068,0.0,02/07/6523 +2.86228,42.45668,523,4,21,20,35,40,4.15,15.0,fr,45760,10,1926793,1,1,Active Shallow Crust,0.0,89.99068,0.0,04/21/0523 +2.86228,42.45668,8437,9,30,23,29,40,4.35,27.5,fr,45761,168,1926818,1,1,Active Shallow Crust,0.0,89.98963,0.0,09/30/8437 +2.86228,42.45668,5058,9,13,5,43,9,4.45,15.0,fr,45762,101,1926838,1,1,Active Shallow Crust,128.8929,89.9934,0.0,09/13/5058 +2.86228,42.45668,9105,12,18,2,46,13,4.55,5.0,fr,45763,182,1926843,1,1,Active Shallow Crust,240.0083,57.99705,0.0,12/18/9105 +2.86228,42.45668,3357,11,2,9,36,14,4.65,15.0,fr,45764,67,1926859,1,1,Active Shallow Crust,0.0,89.99046,-90.0,11/02/3357 +2.86228,42.45668,5633,1,3,20,8,58,5.35,5.0,fr,45765,112,1926936,1,1,Active Shallow Crust,0.0,89.99017,0.0,01/03/5633 +-2.70646,47.42077,1137,2,6,8,54,55,3.55,5.0,fr,45766,22,1927200,1,1,Active Shallow Crust,0.0,89.98977,0.0,02/06/1137 +-2.70646,47.42077,5378,2,28,8,1,59,3.65,5.0,fr,45767,107,1927218,1,1,Active Shallow Crust,0.0,89.99078,-90.0,02/28/5378 +-2.70646,47.42077,9824,12,13,17,7,15,4.05,5.0,fr,45768,196,1927266,1,1,Active Shallow Crust,0.0,89.9903,-90.0,12/13/9824 +-2.70646,47.42077,3698,2,20,1,26,43,4.05,5.0,fr,45769,73,1927269,1,1,Active Shallow Crust,128.8899,89.99425,0.0,02/20/3698 +-2.706867,47.42125,8291,8,31,17,5,26,6.15,5.09789,fr,45770,165,1927515,1,1,Active Shallow Crust,240.0667,58.00034,0.0,08/31/8291 +1.10181,47.30702,3561,8,28,13,44,49,3.55,5.0,fr,45771,71,1927680,1,2,Active Shallow Crust,0.0,89.98975,0.0,08/28/3561 +1.10181,47.30702,3566,10,31,2,6,11,3.55,5.0,fr,45772,71,1927680,1,2,Active Shallow Crust,0.0,89.98975,0.0,10/31/3566 +1.10181,47.30702,989,12,29,4,39,28,3.75,27.5,fr,45773,19,1927712,1,1,Active Shallow Crust,0.0,89.99039,-90.0,12/29/0989 +1.10181,47.30702,3630,8,9,9,30,58,3.85,5.0,fr,45774,72,1927725,1,1,Active Shallow Crust,128.8953,89.99395,0.0,08/09/3630 +1.10181,47.30702,8177,12,3,13,4,22,3.95,5.0,fr,45775,163,1927734,1,1,Active Shallow Crust,0.0,89.99018,-90.0,12/03/8177 +1.10181,47.30702,4372,4,22,22,1,12,4.25,15.0,fr,45776,87,1927765,1,1,Active Shallow Crust,0.0,89.99007,0.0,04/22/4372 +1.10181,47.30702,4156,8,31,11,35,52,4.65,5.0,fr,45777,83,1927812,1,1,Active Shallow Crust,0.0,89.98988,0.0,08/31/4156 +1.10181,47.30702,8397,7,15,18,39,0,5.05,5.0,fr,45778,167,1927860,1,1,Active Shallow Crust,0.0,89.98997,0.0,07/15/8397 +5.87557,46.05132,9496,8,4,16,54,10,3.55,5.0,fr,45779,189,1928640,1,4,Active Shallow Crust,0.0,89.993,0.0,08/04/9496 +5.87557,46.05132,3448,1,17,3,41,12,3.55,5.0,fr,45780,68,1928640,1,4,Active Shallow Crust,0.0,89.993,0.0,01/17/3448 +5.87557,46.05132,8708,3,17,6,21,57,3.55,5.0,fr,45781,174,1928640,1,4,Active Shallow Crust,0.0,89.993,0.0,03/17/8708 +5.87557,46.05132,5849,10,13,12,25,8,3.55,5.0,fr,45782,116,1928640,1,4,Active Shallow Crust,0.0,89.993,0.0,10/13/5849 +5.87557,46.05132,6875,6,27,2,30,46,3.65,5.0,fr,45783,137,1928652,1,1,Active Shallow Crust,0.0,89.98753,0.0,06/27/6875 +5.87557,46.05132,3404,1,31,23,37,23,3.65,15.0,fr,45784,68,1928653,1,1,Active Shallow Crust,0.0,89.98753,0.0,01/31/3404 +5.87557,46.05132,9724,4,29,19,35,2,3.75,5.0,fr,45785,194,1928670,1,1,Active Shallow Crust,0.0,89.98875,-90.0,04/29/9724 +5.87557,46.05132,6552,9,11,9,23,28,3.85,5.0,fr,45786,131,1928679,1,1,Active Shallow Crust,240.011,57.99791,0.0,09/11/6552 +5.87557,46.05132,9681,7,29,10,52,4,3.95,5.0,fr,45787,193,1928691,1,2,Active Shallow Crust,240.0199,58.00477,0.0,07/29/9681 +5.87557,46.05132,5941,1,8,13,27,44,3.95,5.0,fr,45788,118,1928691,1,2,Active Shallow Crust,240.0199,58.00477,0.0,01/08/5941 +5.87557,46.05132,879,12,3,18,10,52,4.05,15.0,fr,45789,17,1928701,1,1,Active Shallow Crust,0.0,89.98819,0.0,12/03/0879 +5.87557,46.05132,4982,6,18,20,31,22,4.05,5.0,fr,45790,99,1928706,1,1,Active Shallow Crust,0.0,89.98806,-90.0,06/18/4982 +5.87557,46.05132,857,6,1,8,31,16,4.15,5.0,fr,45791,17,1928712,1,2,Active Shallow Crust,0.0,89.98948,0.0,06/01/0857 +5.87557,46.05132,9841,12,8,6,16,46,4.15,5.0,fr,45792,196,1928712,1,2,Active Shallow Crust,0.0,89.98948,0.0,12/08/9841 +5.87557,46.05132,8482,2,9,11,22,15,4.15,27.5,fr,45793,169,1928714,1,1,Active Shallow Crust,0.0,89.98948,0.0,02/09/8482 +5.87557,46.05132,5078,6,17,7,54,25,4.15,5.0,fr,45794,101,1928715,1,1,Active Shallow Crust,240.0084,57.99725,0.0,06/17/5078 +5.87557,46.05132,8398,10,8,9,19,11,4.25,5.0,fr,45795,167,1928724,1,1,Active Shallow Crust,0.0,89.99062,0.0,10/08/8398 +5.87557,46.05132,6204,2,11,12,50,12,4.45,5.0,fr,45796,124,1928748,1,1,Active Shallow Crust,0.0,89.99007,0.0,02/11/6204 +5.87557,46.05132,6596,8,1,23,17,6,4.45,5.0,fr,45797,131,1928751,1,1,Active Shallow Crust,240.0052,57.99483,0.0,08/01/6596 +5.87557,46.05132,3840,7,26,2,50,26,4.75,5.0,fr,45798,76,1928784,1,1,Active Shallow Crust,0.0,89.98945,0.0,07/26/3840 +5.87557,46.05132,7588,6,2,2,48,44,5.25,15.0,fr,45799,151,1928845,1,1,Active Shallow Crust,0.0,89.99011,0.0,06/02/7588 +2.05909,40.17576,4400,10,15,9,49,46,3.55,27.5,fr,45800,87,1929122,1,1,Active Shallow Crust,0.0,89.98844,0.0,10/15/4400 +2.05909,40.17576,9495,6,28,1,58,53,3.65,5.0,fr,45801,189,1929132,1,1,Active Shallow Crust,0.0,89.9897,0.0,06/28/9495 +3.62393,45.21733,5675,9,17,0,12,40,3.55,5.0,fr,45802,113,1930086,1,1,Active Shallow Crust,0.0,89.98922,-90.0,09/17/5675 +3.62393,45.21733,9447,9,29,2,58,54,3.65,5.0,fr,45803,188,1930092,1,1,Active Shallow Crust,0.0,89.9905,0.0,09/29/9447 +3.62393,45.21733,6111,10,15,13,36,41,3.65,5.0,fr,45804,122,1930095,1,1,Active Shallow Crust,240.0016,58.01274,0.0,10/15/6111 +3.62393,45.21733,7382,10,29,13,58,50,3.75,5.0,fr,45805,147,1930104,1,1,Active Shallow Crust,0.0,89.98872,0.0,10/29/7382 +3.62393,45.21733,2391,2,18,3,10,34,3.75,15.0,fr,45806,47,1930105,1,1,Active Shallow Crust,0.0,89.98872,0.0,02/18/2391 +3.62393,45.21733,7600,3,12,19,41,0,4.25,15.0,fr,45807,151,1930165,1,1,Active Shallow Crust,0.0,89.99048,0.0,03/12/7600 +3.62393,45.21733,9049,10,14,4,9,10,4.25,15.0,fr,45808,180,1930168,1,1,Active Shallow Crust,240.0074,57.99408,0.0,10/14/9049 +3.62393,45.21733,5629,7,12,7,30,31,4.95,5.0,fr,45809,112,1930248,1,1,Active Shallow Crust,0.0,89.99007,0.0,07/12/5629 +3.62393,45.21733,566,11,2,14,53,57,5.05,5.0,fr,45810,11,1930260,1,1,Active Shallow Crust,0.0,89.98989,0.0,11/02/0566 +3.62393,45.21733,2342,10,28,13,15,1,5.75,5.0,fr,45811,46,1930344,1,1,Active Shallow Crust,0.0,89.99012,0.0,10/28/2342 +0.06512,49.10392,187,12,21,6,41,41,3.55,5.0,fr,45812,3,1930560,1,1,Active Shallow Crust,0.0,89.99,0.0,12/21/0187 +0.06512,49.10392,9640,9,29,21,18,0,3.55,27.5,fr,45813,192,1930562,1,1,Active Shallow Crust,0.0,89.98999,0.0,09/29/9640 +0.06512,49.10392,8770,12,26,4,17,40,3.55,15.0,fr,45814,175,1930564,1,1,Active Shallow Crust,240.0125,57.9982,0.0,12/26/8770 +0.06512,49.10392,3419,6,29,15,42,36,3.65,5.0,fr,45815,68,1930578,1,1,Active Shallow Crust,0.0,89.98995,-90.0,06/29/3419 +0.06512,49.10392,3821,11,16,21,47,25,3.75,5.0,fr,45816,76,1930584,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/16/3821 +0.06512,49.10392,7746,1,19,13,40,25,3.75,5.0,fr,45817,154,1930593,1,2,Active Shallow Crust,128.8963,89.96735,0.0,01/19/7746 +0.06512,49.10392,6071,11,29,10,54,26,3.75,5.0,fr,45818,121,1930593,1,2,Active Shallow Crust,128.8963,89.96735,0.0,11/29/6071 +0.06512,49.10392,6187,7,1,12,58,20,3.85,5.0,fr,45819,123,1930605,1,1,Active Shallow Crust,128.8954,89.99372,0.0,07/01/6187 +0.06512,49.10392,8657,11,26,23,31,35,3.95,5.0,fr,45820,173,1930608,1,1,Active Shallow Crust,0.0,89.98997,0.0,11/26/8657 +0.06512,49.10392,6092,1,2,23,26,44,3.95,27.5,fr,45821,121,1930613,1,1,Active Shallow Crust,240.0202,58.00506,0.0,01/02/6092 +0.06512,49.10392,6023,5,12,21,34,45,3.95,5.0,fr,45822,120,1930614,1,1,Active Shallow Crust,0.0,89.98999,-90.0,05/12/6023 +0.06512,49.10392,3459,9,4,13,6,54,4.25,15.0,fr,45823,69,1930645,1,1,Active Shallow Crust,0.0,89.99,0.0,09/04/3459 +0.06512,49.10392,4010,10,7,0,21,17,4.55,5.0,fr,45824,80,1930680,1,1,Active Shallow Crust,0.0,89.98998,0.0,10/07/4010 +0.06512,49.10392,7949,11,28,16,20,52,4.95,5.0,fr,45825,158,1930731,1,1,Active Shallow Crust,240.0132,58.0047,0.0,11/28/7949 +-1.36156,46.86071,7920,10,17,20,25,33,3.55,5.0,fr,45826,158,1931040,1,2,Active Shallow Crust,0.0,89.98965,0.0,10/17/7920 +-1.36156,46.86071,9147,9,5,7,46,22,3.55,5.0,fr,45827,182,1931040,1,2,Active Shallow Crust,0.0,89.98965,0.0,09/05/9147 +-1.36156,46.86071,2951,1,2,15,46,43,3.55,15.0,fr,45828,59,1931041,1,1,Active Shallow Crust,0.0,89.98965,0.0,01/02/2951 +-1.36156,46.86071,946,6,13,20,42,2,3.55,5.0,fr,45829,18,1931049,1,1,Active Shallow Crust,128.896,89.99397,0.0,06/13/0946 +-1.36156,46.86071,6565,3,28,6,51,40,3.65,5.0,fr,45830,131,1931052,1,1,Active Shallow Crust,0.0,89.98924,0.0,03/28/6565 +-1.36156,46.86071,7158,12,8,17,37,50,3.75,5.0,fr,45831,143,1931064,1,1,Active Shallow Crust,0.0,89.99042,0.0,12/08/7158 +-1.36156,46.86071,1164,9,18,12,9,27,3.75,15.0,fr,45832,23,1931065,1,2,Active Shallow Crust,0.0,89.99042,0.0,09/18/1164 +-1.36156,46.86071,9270,12,4,6,25,17,3.75,15.0,fr,45833,185,1931065,1,2,Active Shallow Crust,0.0,89.99042,0.0,12/04/9270 +-1.36156,46.86071,837,3,6,20,17,27,3.85,5.0,fr,45834,16,1931076,1,2,Active Shallow Crust,0.0,89.99023,0.0,03/06/0837 +-1.36156,46.86071,7772,2,9,9,57,35,3.85,5.0,fr,45835,155,1931076,1,2,Active Shallow Crust,0.0,89.99023,0.0,02/09/7772 +-1.36156,46.86071,945,8,10,2,7,3,3.85,5.0,fr,45836,18,1931082,1,1,Active Shallow Crust,0.0,89.99013,-90.0,08/10/0945 +-1.36156,46.86071,7199,3,4,0,45,22,4.05,5.0,fr,45837,143,1931100,1,1,Active Shallow Crust,0.0,89.9903,0.0,03/04/7199 +-1.36156,46.86071,6111,5,4,11,47,57,4.15,15.0,fr,45838,122,1931116,1,1,Active Shallow Crust,240.0084,57.99737,0.0,05/04/6111 +-1.36156,46.86071,636,12,7,9,4,10,4.25,5.0,fr,45839,12,1931133,1,1,Active Shallow Crust,128.8943,89.98096,0.0,12/07/0636 +-1.36156,46.86071,5539,6,14,6,55,31,4.65,5.0,fr,45840,110,1931172,1,2,Active Shallow Crust,0.0,89.9898,0.0,06/14/5539 +-1.36156,46.86071,5139,12,12,23,35,17,4.65,5.0,fr,45841,102,1931172,1,2,Active Shallow Crust,0.0,89.9898,0.0,12/12/5139 +-1.36156,46.86071,3994,10,15,9,47,21,4.85,5.0,fr,45842,79,1931202,1,1,Active Shallow Crust,0.0,89.98985,-90.0,10/15/3994 +-1.36156,46.86071,3961,10,17,3,37,8,4.85,15.0,fr,45843,79,1931206,1,1,Active Shallow Crust,128.8925,89.98895,0.0,10/17/3961 +-1.36156,46.86071,849,1,21,18,38,12,5.05,5.0,fr,45844,16,1931220,1,1,Active Shallow Crust,0.0,89.98988,0.0,01/21/0849 +-1.36156,46.86071,38,7,21,20,27,19,5.35,5.0,fr,45845,0,1931262,1,1,Active Shallow Crust,0.0,89.9899,-90.0,07/21/0038 +3.09431,50.27659,2125,11,13,16,58,48,3.55,5.0,fr,45846,42,1931520,1,1,Active Shallow Crust,0.0,89.99033,0.0,11/13/2125 +3.09431,50.27659,1225,7,1,5,38,55,3.55,15.0,fr,45847,24,1931521,1,1,Active Shallow Crust,0.0,89.99033,0.0,07/01/1225 +3.09431,50.27659,3636,5,22,0,3,55,3.55,5.0,fr,45848,72,1931523,1,1,Active Shallow Crust,240.0131,57.998,0.0,05/22/3636 +3.09431,50.27659,7435,9,13,23,59,37,3.65,5.0,fr,45849,148,1931532,1,1,Active Shallow Crust,0.0,89.99139,0.0,09/13/7435 +3.09431,50.27659,7376,11,16,20,53,21,3.85,5.0,fr,45850,147,1931559,1,1,Active Shallow Crust,240.0114,57.99816,0.0,11/16/7376 +3.09431,50.27659,6845,2,13,15,4,29,4.85,15.0,fr,45851,136,1931677,1,1,Active Shallow Crust,0.0,89.9899,0.0,02/13/6845 +1.11316,45.16512,6031,5,9,15,6,8,3.55,5.0,fr,45852,120,1932000,1,4,Active Shallow Crust,0.0,89.98933,0.0,05/09/6031 +1.11316,45.16512,1768,2,23,11,55,51,3.55,5.0,fr,45853,35,1932000,1,4,Active Shallow Crust,0.0,89.98933,0.0,02/23/1768 +1.11316,45.16512,5789,2,18,11,22,47,3.55,5.0,fr,45854,115,1932000,1,4,Active Shallow Crust,0.0,89.98933,0.0,02/18/5789 +1.11316,45.16512,3794,12,16,6,47,37,3.55,5.0,fr,45855,75,1932000,1,4,Active Shallow Crust,0.0,89.98933,0.0,12/16/3794 +1.11316,45.16512,8012,11,20,19,40,38,3.55,27.5,fr,45856,160,1932002,1,1,Active Shallow Crust,0.0,89.98933,0.0,11/20/8012 +1.11316,45.16512,4127,9,12,4,22,52,4.05,27.5,fr,45857,82,1932065,1,1,Active Shallow Crust,240.0056,58.00579,0.0,09/12/4127 +1.11316,45.16512,8316,7,8,15,19,49,4.25,15.0,fr,45858,166,1932088,1,1,Active Shallow Crust,240.0071,57.99406,0.0,07/08/8316 +1.11316,45.16512,3807,4,1,1,43,41,4.25,15.0,fr,45859,76,1932091,1,1,Active Shallow Crust,0.0,89.99036,-90.0,04/01/3807 +1.11316,45.16512,3261,11,13,15,26,24,4.35,5.0,fr,45860,65,1932096,1,1,Active Shallow Crust,0.0,89.99009,0.0,11/13/3261 +-3.4997,47.48157,4705,8,22,22,39,55,4.05,5.0,fr,45861,94,1933020,1,1,Active Shallow Crust,0.0,89.99042,0.0,08/22/4705 +-3.4997,47.48157,2910,11,19,12,0,2,4.05,15.0,fr,45862,58,1933021,1,1,Active Shallow Crust,0.0,89.99042,0.0,11/19/2910 +-2.57122,43.58736,2388,11,13,8,12,4,3.55,5.0,fr,45863,47,1933440,1,1,Active Shallow Crust,0.0,89.98904,0.0,11/13/2388 +-2.57122,43.58736,192,4,3,6,10,34,3.55,5.0,fr,45864,3,1933446,1,1,Active Shallow Crust,0.0,89.98891,-90.0,04/03/0192 +-2.57122,43.58736,4708,1,28,3,0,29,3.75,15.0,fr,45865,94,1933465,1,1,Active Shallow Crust,0.0,89.99129,0.0,01/28/4708 +-2.57122,43.58736,1331,12,30,7,12,32,3.85,5.0,fr,45866,26,1933476,1,1,Active Shallow Crust,0.0,89.98965,0.0,12/30/1331 +-2.57122,43.58736,1361,10,1,10,53,22,3.95,27.5,fr,45867,27,1933496,1,1,Active Shallow Crust,0.0,89.99068,-90.0,10/01/1361 +-2.57122,43.58736,9296,3,14,10,49,52,4.25,5.0,fr,45868,185,1933524,1,1,Active Shallow Crust,0.0,89.99021,0.0,03/14/9296 +-2.57122,43.58736,5895,10,24,14,43,41,4.75,15.0,fr,45869,117,1933591,1,1,Active Shallow Crust,0.0,89.98979,-90.0,10/24/5895 +4.70628,48.33409,6848,12,21,13,51,31,3.65,5.0,fr,45870,136,1933938,1,1,Active Shallow Crust,0.0,89.98792,-90.0,12/21/6848 +4.70628,48.33409,5192,1,1,21,7,35,3.95,15.0,fr,45871,103,1933969,1,1,Active Shallow Crust,0.0,89.99154,0.0,01/01/5192 +6.5778,50.82525,1366,2,5,5,33,21,3.55,5.0,fr,45872,27,1934400,1,3,Active Shallow Crust,0.0,89.98726,0.0,02/05/1366 +6.5778,50.82525,1585,2,5,18,34,30,3.55,5.0,fr,45873,31,1934400,1,3,Active Shallow Crust,0.0,89.98726,0.0,02/05/1585 +6.5778,50.82525,2152,7,11,12,23,26,3.55,5.0,fr,45874,43,1934400,1,3,Active Shallow Crust,0.0,89.98726,0.0,07/11/2152 +6.5778,50.82525,1646,4,25,11,2,36,3.55,15.0,fr,45875,32,1934401,1,1,Active Shallow Crust,0.0,89.98726,0.0,04/25/1646 +6.5778,50.82525,2103,10,28,1,39,12,3.55,27.5,fr,45876,42,1934402,1,2,Active Shallow Crust,0.0,89.98726,0.0,10/28/2103 +6.5778,50.82525,28,12,26,18,9,45,3.55,27.5,fr,45877,0,1934402,1,2,Active Shallow Crust,0.0,89.98726,0.0,12/26/0028 +6.5778,50.82525,9389,9,19,10,34,14,3.55,15.0,fr,45878,187,1934404,1,1,Active Shallow Crust,240.0111,57.99888,0.0,09/19/9389 +6.5778,50.82525,741,2,12,6,49,59,3.55,5.0,fr,45879,14,1934409,1,1,Active Shallow Crust,128.8958,89.99363,0.0,02/12/0741 +6.5778,50.82525,5472,9,25,2,40,23,3.55,27.5,fr,45880,109,1934411,1,1,Active Shallow Crust,128.8958,89.99363,0.0,09/25/5472 +6.5778,50.82525,8251,6,8,22,52,27,3.65,5.0,fr,45881,165,1934412,1,2,Active Shallow Crust,0.0,89.98865,0.0,06/08/8251 +6.5778,50.82525,8311,10,10,2,35,36,3.65,5.0,fr,45882,166,1934412,1,2,Active Shallow Crust,0.0,89.98865,0.0,10/10/8311 +6.5778,50.82525,3935,8,18,19,43,32,3.65,27.5,fr,45883,78,1934414,1,1,Active Shallow Crust,0.0,89.98865,0.0,08/18/3935 +6.5778,50.82525,6056,7,9,10,44,2,3.65,5.0,fr,45884,121,1934415,1,1,Active Shallow Crust,240.0017,58.01302,0.0,07/09/6056 +6.5778,50.82525,3461,11,11,20,41,5,3.65,5.0,fr,45885,69,1934421,1,1,Active Shallow Crust,128.9006,89.96361,0.0,11/11/3461 +6.5778,50.82525,2563,8,30,1,13,36,3.75,5.0,fr,45886,51,1934424,1,4,Active Shallow Crust,0.0,89.98988,0.0,08/30/2563 +6.5778,50.82525,239,9,30,20,35,5,3.75,5.0,fr,45887,4,1934424,1,4,Active Shallow Crust,0.0,89.98988,0.0,09/30/0239 +6.5778,50.82525,9132,12,31,9,53,1,3.75,5.0,fr,45888,182,1934424,1,4,Active Shallow Crust,0.0,89.98988,0.0,12/31/9132 +6.5778,50.82525,334,8,5,21,23,49,3.75,5.0,fr,45889,6,1934424,1,4,Active Shallow Crust,0.0,89.98988,0.0,08/05/0334 +6.5778,50.82525,1681,6,24,3,40,40,3.75,15.0,fr,45890,33,1934425,1,1,Active Shallow Crust,0.0,89.98988,0.0,06/24/1681 +6.5778,50.82525,2760,8,13,15,38,34,3.75,5.0,fr,45891,55,1934427,1,1,Active Shallow Crust,240.009,58.01718,0.0,08/13/2760 +6.5778,50.82525,9844,8,13,15,48,0,3.75,15.0,fr,45892,196,1934431,1,1,Active Shallow Crust,0.0,89.98976,-90.0,08/13/9844 +6.5778,50.82525,8606,2,24,4,55,22,3.75,5.0,fr,45893,172,1934433,1,1,Active Shallow Crust,128.8964,89.96707,0.0,02/24/8606 +6.5778,50.82525,2682,2,4,19,8,57,3.85,5.0,fr,45894,53,1934436,1,2,Active Shallow Crust,0.0,89.99098,0.0,02/04/2682 +6.5778,50.82525,346,11,17,20,44,41,3.85,5.0,fr,45895,6,1934436,1,2,Active Shallow Crust,0.0,89.99098,0.0,11/17/0346 +6.5778,50.82525,790,1,27,0,6,29,3.85,5.0,fr,45896,15,1934442,1,1,Active Shallow Crust,0.0,89.99088,-90.0,01/27/0790 +6.5778,50.82525,7465,10,14,23,41,33,3.95,5.0,fr,45897,149,1934448,1,1,Active Shallow Crust,0.0,89.99196,0.0,10/14/7465 +6.5778,50.82525,6584,2,9,8,42,59,3.95,5.0,fr,45898,131,1934454,1,1,Active Shallow Crust,0.0,89.99187,-90.0,02/09/6584 +6.5778,50.82525,4312,7,22,2,38,38,4.05,5.0,fr,45899,86,1934463,1,2,Active Shallow Crust,240.0067,58.00653,0.0,07/22/4312 +6.5778,50.82525,9358,11,2,12,52,33,4.05,5.0,fr,45900,187,1934463,1,2,Active Shallow Crust,240.0067,58.00653,0.0,11/02/9358 +6.5778,50.82525,8174,3,4,2,40,32,4.15,5.0,fr,45901,163,1934481,1,1,Active Shallow Crust,128.8964,89.99361,0.0,03/04/8174 +6.5778,50.82525,168,4,11,8,34,47,4.25,15.0,fr,45902,3,1934485,1,2,Active Shallow Crust,0.0,89.98862,0.0,04/11/0168 +6.5778,50.82525,5288,4,10,8,12,15,4.25,15.0,fr,45903,105,1934485,1,2,Active Shallow Crust,0.0,89.98862,0.0,04/10/5288 +6.5778,50.82525,1397,4,5,12,39,28,4.45,5.0,fr,45904,27,1934508,1,1,Active Shallow Crust,0.0,89.99096,0.0,04/05/1397 +6.5778,50.82525,6187,2,16,22,41,15,4.45,5.0,fr,45905,123,1934514,1,2,Active Shallow Crust,0.0,89.99085,-90.0,02/16/6187 +6.5778,50.82525,8445,11,6,20,53,10,4.45,5.0,fr,45906,168,1934514,1,2,Active Shallow Crust,0.0,89.99085,-90.0,11/06/8445 +6.5778,50.82525,3277,6,5,16,47,8,4.65,5.0,fr,45907,65,1934532,1,1,Active Shallow Crust,0.0,89.98923,0.0,06/05/3277 +6.5778,50.82525,2482,1,13,8,25,18,4.85,5.0,fr,45908,49,1934556,1,1,Active Shallow Crust,0.0,89.99001,0.0,01/13/2482 +6.5778,50.82525,9911,12,9,11,49,59,4.95,5.0,fr,45909,198,1934568,1,1,Active Shallow Crust,0.0,89.98983,0.0,12/09/9911 +6.5778,50.82525,8669,5,10,5,54,38,4.95,15.0,fr,45910,173,1934578,1,1,Active Shallow Crust,128.888,89.98975,0.0,05/10/8669 +6.5778,50.82525,1342,2,27,2,4,14,5.05,15.0,fr,45911,26,1934581,1,1,Active Shallow Crust,0.0,89.9898,0.0,02/27/1342 +6.5778,50.82525,7560,9,2,20,49,5,6.05,15.0,fr,45912,151,1934707,1,1,Active Shallow Crust,0.0,89.98985,-90.0,09/02/7560 +6.5778,50.82525,86,2,15,10,16,52,6.15,15.0,fr,45913,1,1934713,1,1,Active Shallow Crust,0.0,89.99009,0.0,02/15/0086 +4.75133,48.08678,9907,6,27,12,44,51,3.55,5.0,fr,45914,198,1934883,1,1,Active Shallow Crust,240.0124,57.99871,0.0,06/27/9907 +4.75133,48.08678,9883,4,12,13,10,38,3.55,5.0,fr,45915,197,1934886,1,1,Active Shallow Crust,0.0,89.99319,-90.0,04/12/9883 +4.75133,48.08678,6550,6,12,14,21,3,3.85,15.0,fr,45916,130,1934917,1,1,Active Shallow Crust,0.0,89.99046,0.0,06/12/6550 +4.75133,48.08678,4232,2,3,14,43,48,3.95,27.5,fr,45917,84,1934933,1,1,Active Shallow Crust,240.0201,58.00544,0.0,02/03/4232 +4.75133,48.08678,8051,12,26,16,43,4,4.15,5.0,fr,45918,161,1934961,1,1,Active Shallow Crust,128.8982,89.99325,0.0,12/26/8051 +5.18768,46.22078,7008,2,15,13,48,7,3.55,5.0,fr,45919,140,1935360,1,1,Active Shallow Crust,0.0,89.99303,0.0,02/15/7008 +5.18768,46.22078,6082,12,27,15,54,1,3.55,15.0,fr,45920,121,1935361,1,2,Active Shallow Crust,0.0,89.99303,0.0,12/27/6082 +5.18768,46.22078,2389,7,19,9,46,35,3.55,15.0,fr,45921,47,1935361,1,2,Active Shallow Crust,0.0,89.99303,0.0,07/19/2389 +5.18768,46.22078,6863,3,13,16,16,19,3.65,5.0,fr,45922,137,1935372,1,1,Active Shallow Crust,0.0,89.98756,0.0,03/13/6863 +5.18768,46.22078,2348,3,3,15,42,18,3.65,27.5,fr,45923,46,1935374,1,1,Active Shallow Crust,0.0,89.98756,0.0,03/03/2348 +5.18768,46.22078,9593,7,13,13,52,6,3.85,15.0,fr,45924,191,1935397,1,1,Active Shallow Crust,0.0,89.99012,0.0,07/13/9593 +5.18768,46.22078,4455,8,31,12,0,31,3.85,27.5,fr,45925,89,1935398,1,1,Active Shallow Crust,0.0,89.99012,0.0,08/31/4455 +5.18768,46.22078,1853,7,22,3,31,57,3.95,5.0,fr,45926,37,1935408,1,1,Active Shallow Crust,0.0,89.9912,0.0,07/22/1853 +5.18768,46.22078,5045,3,24,21,46,41,4.05,5.0,fr,45927,100,1935420,1,1,Active Shallow Crust,0.0,89.98823,0.0,03/24/5045 +5.18768,46.22078,7212,3,5,2,14,52,6.25,15.0,fr,45928,144,1935685,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/05/7212 +-3.78662,47.31623,1886,7,11,2,15,23,3.55,5.0,fr,45929,37,1935840,1,1,Active Shallow Crust,0.0,89.98975,0.0,07/11/1886 +-3.78662,47.31623,6091,3,22,14,53,29,3.95,5.0,fr,45930,121,1935894,1,1,Active Shallow Crust,0.0,89.98909,-90.0,03/22/6091 +8.48907,49.04863,3226,2,17,3,59,59,3.55,5.0,fr,45931,64,1936320,1,1,Active Shallow Crust,0.0,89.98678,0.0,02/17/3226 +8.48907,49.04863,1305,7,26,15,12,49,3.55,15.0,fr,45932,26,1936321,1,1,Active Shallow Crust,0.0,89.98678,0.0,07/26/1305 +8.48907,49.04863,9121,3,19,0,23,34,3.55,5.0,fr,45933,182,1936323,1,1,Active Shallow Crust,240.0127,57.99808,0.0,03/19/9121 +8.48907,49.04863,5120,5,20,4,34,43,3.55,15.0,fr,45934,102,1936324,1,1,Active Shallow Crust,240.0127,57.99808,0.0,05/20/5120 +8.48907,49.04863,4405,7,27,7,8,7,3.65,5.0,fr,45935,88,1936332,1,2,Active Shallow Crust,0.0,89.98822,0.0,07/27/4405 +8.48907,49.04863,9898,2,23,5,13,54,3.65,5.0,fr,45936,197,1936332,1,2,Active Shallow Crust,0.0,89.98822,0.0,02/23/9898 +8.48907,49.04863,3142,8,27,2,3,36,3.65,5.0,fr,45937,62,1936341,1,1,Active Shallow Crust,128.8975,89.96357,0.0,08/27/3142 +8.48907,49.04863,4444,2,12,19,39,57,3.75,5.0,fr,45938,88,1936347,1,3,Active Shallow Crust,240.009,58.01686,0.0,02/12/4444 +8.48907,49.04863,6499,4,29,4,33,55,3.75,5.0,fr,45939,129,1936347,1,3,Active Shallow Crust,240.009,58.01686,0.0,04/29/6499 +8.48907,49.04863,6992,4,5,13,48,17,3.75,5.0,fr,45940,139,1936347,1,3,Active Shallow Crust,240.009,58.01686,0.0,04/05/6992 +8.48907,49.04863,7126,8,17,10,53,40,3.85,5.0,fr,45941,142,1936359,1,2,Active Shallow Crust,240.0108,57.99878,0.0,08/17/7126 +8.48907,49.04863,6953,11,19,4,1,43,3.85,5.0,fr,45942,139,1936359,1,2,Active Shallow Crust,240.0108,57.99878,0.0,11/19/6953 +8.48907,49.04863,5195,1,11,1,52,36,4.05,5.0,fr,45943,103,1936380,1,1,Active Shallow Crust,0.0,89.99257,0.0,01/11/5195 +8.48907,49.04863,6231,12,2,18,23,4,4.05,5.0,fr,45944,124,1936383,1,1,Active Shallow Crust,240.0064,58.00663,0.0,12/02/6231 +8.48907,49.04863,8753,9,6,15,34,9,4.15,5.0,fr,45945,175,1936392,1,1,Active Shallow Crust,0.0,89.98675,0.0,09/06/8753 +8.48907,49.04863,9021,6,21,7,13,34,4.25,15.0,fr,45946,180,1936405,1,1,Active Shallow Crust,0.0,89.98819,0.0,06/21/9021 +8.48907,49.04863,5122,4,3,16,23,27,4.35,5.0,fr,45947,102,1936416,1,1,Active Shallow Crust,0.0,89.98947,0.0,04/03/5122 +8.48907,49.04863,1533,6,15,19,0,12,4.65,15.0,fr,45948,30,1936453,1,1,Active Shallow Crust,0.0,89.98882,0.0,06/15/1533 +8.48907,49.04863,3381,6,18,1,15,56,5.15,5.0,fr,45949,67,1936512,1,1,Active Shallow Crust,0.0,89.98952,0.0,06/18/3381 +1.69909,46.94316,4573,9,17,8,52,43,3.55,5.0,fr,45950,91,1936809,1,1,Active Shallow Crust,128.8958,89.99397,0.0,09/17/4573 +1.69909,46.94316,25,11,15,11,0,43,3.55,15.0,fr,45951,0,1936810,1,1,Active Shallow Crust,128.8958,89.99397,0.0,11/15/0025 +1.69909,46.94316,6353,12,2,12,27,51,3.65,5.0,fr,45952,127,1936812,1,4,Active Shallow Crust,0.0,89.98927,0.0,12/02/6353 +1.69909,46.94316,8738,4,5,14,3,35,3.65,5.0,fr,45953,174,1936812,1,4,Active Shallow Crust,0.0,89.98927,0.0,04/05/8738 +1.69909,46.94316,8694,8,5,22,45,12,3.65,5.0,fr,45954,173,1936812,1,4,Active Shallow Crust,0.0,89.98927,0.0,08/05/8694 +1.69909,46.94316,4291,1,9,21,23,39,3.65,5.0,fr,45955,85,1936812,1,4,Active Shallow Crust,0.0,89.98927,0.0,01/09/4291 +1.69909,46.94316,7605,6,6,19,14,22,3.65,15.0,fr,45956,152,1936813,1,2,Active Shallow Crust,0.0,89.98927,0.0,06/06/7605 +1.69909,46.94316,2298,5,19,0,23,41,3.65,15.0,fr,45957,45,1936813,1,2,Active Shallow Crust,0.0,89.98927,0.0,05/19/2298 +1.69909,46.94316,6844,3,10,2,51,0,3.75,5.0,fr,45958,136,1936824,1,1,Active Shallow Crust,0.0,89.99043,0.0,03/10/6844 +1.69909,46.94316,2173,4,27,18,0,26,3.85,5.0,fr,45959,43,1936842,1,1,Active Shallow Crust,0.0,89.99014,-90.0,04/27/2173 +1.69909,46.94316,8560,8,19,21,58,20,3.95,15.0,fr,45960,171,1936849,1,1,Active Shallow Crust,0.0,89.99023,0.0,08/19/8560 +1.69909,46.94316,4286,11,19,21,38,11,4.05,15.0,fr,45961,85,1936864,1,1,Active Shallow Crust,240.0061,58.00582,0.0,11/19/4286 +1.69909,46.94316,3771,11,16,10,30,8,4.45,5.0,fr,45962,75,1936908,1,1,Active Shallow Crust,0.0,89.99023,0.0,11/16/3771 +1.69909,46.94316,5280,10,12,19,6,49,5.25,5.0,fr,45963,105,1937007,1,1,Active Shallow Crust,240.0258,58.00031,0.0,10/12/5280 +-1.67978,48.98871,2962,11,24,20,10,6,3.55,5.0,fr,45964,59,1937280,1,1,Active Shallow Crust,0.0,89.99007,0.0,11/24/2962 +-1.67978,48.98871,3631,2,9,20,4,5,3.55,15.0,fr,45965,72,1937281,1,2,Active Shallow Crust,0.0,89.99007,0.0,02/09/3631 +-1.67978,48.98871,2385,8,3,12,29,37,3.55,15.0,fr,45966,47,1937281,1,2,Active Shallow Crust,0.0,89.99007,0.0,08/03/2385 +-1.67978,48.98871,9236,7,17,10,47,26,3.55,15.0,fr,45967,184,1937290,1,1,Active Shallow Crust,128.8961,89.99421,0.0,07/17/9236 +-1.67978,48.98871,2064,1,30,21,43,43,3.65,27.5,fr,45968,41,1937294,1,1,Active Shallow Crust,0.0,89.98968,0.0,01/30/2064 +-1.67978,48.98871,2718,2,27,18,55,49,3.75,5.0,fr,45969,54,1937304,1,1,Active Shallow Crust,0.0,89.98949,0.0,02/27/2718 +-1.67978,48.98871,6179,7,24,13,41,20,3.85,5.0,fr,45970,123,1937316,1,1,Active Shallow Crust,0.0,89.98946,0.0,07/24/6179 +-1.67978,48.98871,1958,11,10,10,36,26,3.85,15.0,fr,45971,39,1937317,1,1,Active Shallow Crust,0.0,89.98946,0.0,11/10/1958 +-1.67978,48.98871,2044,11,18,8,10,51,3.95,27.5,fr,45972,40,1937330,1,1,Active Shallow Crust,0.0,89.98956,0.0,11/18/2044 +-1.67978,48.98871,2762,3,7,6,56,58,4.15,5.0,fr,45973,55,1937355,1,1,Active Shallow Crust,240.0089,57.99742,0.0,03/07/2762 +-1.67978,48.98871,7547,2,7,3,33,25,4.25,5.0,fr,45974,150,1937370,1,1,Active Shallow Crust,0.0,89.99028,-90.0,02/07/7547 +-1.67978,48.98871,4953,1,9,2,47,31,4.35,5.0,fr,45975,99,1937385,1,1,Active Shallow Crust,128.8973,89.98277,0.0,01/09/4953 +-1.67978,48.98871,8184,7,16,11,31,19,4.45,15.0,fr,45976,163,1937398,1,1,Active Shallow Crust,128.8915,89.99384,0.0,07/16/8184 +-1.67978,48.98871,2806,3,24,9,22,51,4.55,5.0,fr,45977,56,1937400,1,1,Active Shallow Crust,0.0,89.99006,0.0,03/24/2806 +-1.67978,48.98871,1912,6,11,6,41,1,4.65,5.0,fr,45978,38,1937412,1,1,Active Shallow Crust,0.0,89.9902,0.0,06/11/1912 +-1.67978,48.98871,5376,10,9,4,1,13,4.65,27.5,fr,45979,107,1937414,1,1,Active Shallow Crust,0.0,89.9902,0.0,10/09/5376 +-1.67978,48.98871,2224,8,1,15,44,48,4.95,5.0,fr,45980,44,1937454,1,1,Active Shallow Crust,0.0,89.98998,-90.0,08/01/2224 +8.04936,50.50132,6861,6,12,17,49,7,3.55,5.0,fr,45981,137,1937760,1,2,Active Shallow Crust,0.0,89.98717,0.0,06/12/6861 +8.04936,50.50132,1329,7,3,21,8,25,3.55,5.0,fr,45982,26,1937760,1,2,Active Shallow Crust,0.0,89.98717,0.0,07/03/1329 +8.04936,50.50132,4019,11,20,18,35,22,3.55,15.0,fr,45983,80,1937761,1,1,Active Shallow Crust,0.0,89.98717,0.0,11/20/4019 +8.04936,50.50132,9640,6,19,12,17,24,3.65,5.0,fr,45984,192,1937772,1,1,Active Shallow Crust,0.0,89.98856,0.0,06/19/9640 +8.04936,50.50132,5367,7,8,6,48,36,3.65,15.0,fr,45985,107,1937773,1,1,Active Shallow Crust,0.0,89.98856,0.0,07/08/5367 +8.04936,50.50132,5862,5,7,9,11,19,3.65,5.0,fr,45986,117,1937775,1,1,Active Shallow Crust,240.0005,58.01451,0.0,05/07/5862 +8.04936,50.50132,3400,9,5,4,0,21,3.75,5.0,fr,45987,67,1937790,1,1,Active Shallow Crust,0.0,89.98969,-90.0,09/05/3400 +8.04936,50.50132,4519,3,5,6,59,57,4.05,5.0,fr,45988,90,1937820,1,1,Active Shallow Crust,0.0,89.99278,0.0,03/05/4519 +8.04936,50.50132,6748,6,20,3,33,42,4.05,15.0,fr,45989,134,1937824,1,1,Active Shallow Crust,240.0061,58.00706,0.0,06/20/6748 +8.04936,50.50132,2324,9,5,13,3,34,4.15,5.0,fr,45990,46,1937832,1,1,Active Shallow Crust,0.0,89.98714,0.0,09/05/2324 +8.04936,50.50132,1732,1,12,11,5,11,4.15,15.0,fr,45991,34,1937833,1,1,Active Shallow Crust,0.0,89.98714,0.0,01/12/1732 +8.04936,50.50132,6826,5,21,0,23,14,4.25,15.0,fr,45992,136,1937848,1,1,Active Shallow Crust,240.0095,57.99345,0.0,05/21/6826 +8.04936,50.50132,2612,4,20,14,31,42,4.35,15.0,fr,45993,52,1937857,1,1,Active Shallow Crust,0.0,89.98978,0.0,04/20/2612 +8.04936,50.50132,7803,9,5,0,46,50,4.75,15.0,fr,45994,156,1937905,1,1,Active Shallow Crust,0.0,89.99033,0.0,09/05/7803 +8.04936,50.50132,2209,11,23,13,36,42,4.85,5.0,fr,45995,44,1937916,1,1,Active Shallow Crust,0.0,89.99139,0.0,11/23/2209 +8.04936,50.50132,7963,11,25,22,27,51,4.95,5.0,fr,45996,159,1937928,1,1,Active Shallow Crust,0.0,89.98976,0.0,11/25/7963 +8.04936,50.50132,2573,1,7,10,9,25,4.95,27.5,fr,45997,51,1937933,1,1,Active Shallow Crust,240.0138,58.00465,0.0,01/07/2573 +2.59072,53.45389,8819,4,1,5,13,47,3.65,5.0,fr,45998,176,1938261,1,1,Active Shallow Crust,128.9003,89.96343,0.0,04/01/8819 +7.41814,46.88697,6428,1,25,15,22,27,3.55,5.0,fr,45999,128,1938720,1,3,Active Shallow Crust,0.0,89.99311,0.0,01/25/6428 +7.41814,46.88697,9577,3,19,12,38,7,3.55,5.0,fr,46000,191,1938720,1,3,Active Shallow Crust,0.0,89.99311,0.0,03/19/9577 +7.41814,46.88697,5753,4,2,2,37,39,3.55,5.0,fr,46001,115,1938720,1,3,Active Shallow Crust,0.0,89.99311,0.0,04/02/5753 +7.41814,46.88697,5748,1,12,8,27,59,3.55,15.0,fr,46002,114,1938721,1,2,Active Shallow Crust,0.0,89.99311,0.0,01/12/5748 +7.41814,46.88697,6312,5,10,11,40,54,3.55,15.0,fr,46003,126,1938721,1,2,Active Shallow Crust,0.0,89.99311,0.0,05/10/6312 +7.41814,46.88697,4377,6,25,16,40,0,3.55,5.0,fr,46004,87,1938723,1,3,Active Shallow Crust,240.0119,57.99901,0.0,06/25/4377 +7.41814,46.88697,8844,1,28,9,46,32,3.55,5.0,fr,46005,176,1938723,1,3,Active Shallow Crust,240.0119,57.99901,0.0,01/28/8844 +7.41814,46.88697,8558,10,28,4,44,0,3.55,5.0,fr,46006,171,1938723,1,3,Active Shallow Crust,240.0119,57.99901,0.0,10/28/8558 +7.41814,46.88697,2423,11,16,2,0,37,3.55,5.0,fr,46007,48,1938726,1,1,Active Shallow Crust,0.0,89.99303,-90.0,11/16/2423 +7.41814,46.88697,2962,10,11,22,35,0,3.55,15.0,fr,46008,59,1938727,1,1,Active Shallow Crust,0.0,89.99303,-90.0,10/11/2962 +7.41814,46.88697,116,12,18,3,29,8,3.55,5.0,fr,46009,2,1938729,1,1,Active Shallow Crust,128.8957,89.99655,0.0,12/18/0116 +7.41814,46.88697,8092,12,30,4,27,41,3.65,5.0,fr,46010,161,1938732,1,6,Active Shallow Crust,0.0,89.98772,0.0,12/30/8092 +7.41814,46.88697,6857,4,26,13,14,14,3.65,5.0,fr,46011,137,1938732,1,6,Active Shallow Crust,0.0,89.98772,0.0,04/26/6857 +7.41814,46.88697,1114,4,29,15,47,40,3.65,5.0,fr,46012,22,1938732,1,6,Active Shallow Crust,0.0,89.98772,0.0,04/29/1114 +7.41814,46.88697,3434,1,12,19,28,29,3.65,5.0,fr,46013,68,1938732,1,6,Active Shallow Crust,0.0,89.98772,0.0,01/12/3434 +7.41814,46.88697,7074,2,9,6,38,12,3.65,5.0,fr,46014,141,1938732,1,6,Active Shallow Crust,0.0,89.98772,0.0,02/09/7074 +7.41814,46.88697,7073,11,21,4,38,45,3.65,5.0,fr,46015,141,1938732,1,6,Active Shallow Crust,0.0,89.98772,0.0,11/21/7073 +7.41814,46.88697,5898,10,22,16,20,46,3.65,15.0,fr,46016,117,1938733,1,2,Active Shallow Crust,0.0,89.98772,0.0,10/22/5898 +7.41814,46.88697,5839,5,7,10,32,3,3.65,15.0,fr,46017,116,1938733,1,2,Active Shallow Crust,0.0,89.98772,0.0,05/07/5839 +7.41814,46.88697,424,2,7,16,16,11,3.65,15.0,fr,46018,8,1938736,1,1,Active Shallow Crust,240.0007,58.01304,0.0,02/07/0424 +7.41814,46.88697,1687,3,13,21,41,44,3.75,5.0,fr,46019,33,1938744,1,1,Active Shallow Crust,0.0,89.98905,0.0,03/13/1687 +7.41814,46.88697,6395,9,20,17,58,38,3.75,15.0,fr,46020,127,1938745,1,2,Active Shallow Crust,0.0,89.98905,0.0,09/20/6395 +7.41814,46.88697,2354,5,13,20,26,46,3.75,15.0,fr,46021,47,1938745,1,2,Active Shallow Crust,0.0,89.98905,0.0,05/13/2354 +7.41814,46.88697,8844,1,20,1,24,20,3.75,5.0,fr,46022,176,1938747,1,1,Active Shallow Crust,240.0088,58.01783,0.0,01/20/8844 +7.41814,46.88697,4121,5,28,16,47,33,3.75,5.0,fr,46023,82,1938750,1,2,Active Shallow Crust,0.0,89.98892,-90.0,05/28/4121 +7.41814,46.88697,2242,3,5,7,44,20,3.75,5.0,fr,46024,44,1938750,1,2,Active Shallow Crust,0.0,89.98892,-90.0,03/05/2242 +7.41814,46.88697,784,1,25,19,31,26,3.85,5.0,fr,46025,15,1938756,1,3,Active Shallow Crust,0.0,89.99024,0.0,01/25/0784 +7.41814,46.88697,2720,3,14,9,41,37,3.85,5.0,fr,46026,54,1938756,1,3,Active Shallow Crust,0.0,89.99024,0.0,03/14/2720 +7.41814,46.88697,7357,11,16,12,56,36,3.85,5.0,fr,46027,147,1938756,1,3,Active Shallow Crust,0.0,89.99024,0.0,11/16/7357 +7.41814,46.88697,7266,6,13,20,14,0,3.85,15.0,fr,46028,145,1938757,1,1,Active Shallow Crust,0.0,89.99024,0.0,06/13/7266 +7.41814,46.88697,5018,10,26,5,46,29,3.85,27.5,fr,46029,100,1938758,1,1,Active Shallow Crust,0.0,89.99024,0.0,10/26/5018 +7.41814,46.88697,8988,5,12,21,1,9,3.85,5.0,fr,46030,179,1938765,1,2,Active Shallow Crust,128.8946,89.99512,0.0,05/12/8988 +7.41814,46.88697,5697,12,1,14,10,18,3.85,5.0,fr,46031,113,1938765,1,2,Active Shallow Crust,128.8946,89.99512,0.0,12/01/5697 +7.41814,46.88697,7927,12,8,3,2,7,3.95,5.0,fr,46032,158,1938768,1,2,Active Shallow Crust,0.0,89.9913,0.0,12/08/7927 +7.41814,46.88697,5233,1,8,17,16,46,3.95,5.0,fr,46033,104,1938768,1,2,Active Shallow Crust,0.0,89.9913,0.0,01/08/5233 +7.41814,46.88697,6365,11,23,1,24,1,3.95,15.0,fr,46034,127,1938769,1,3,Active Shallow Crust,0.0,89.9913,0.0,11/23/6365 +7.41814,46.88697,5541,2,22,0,55,12,3.95,15.0,fr,46035,110,1938769,1,3,Active Shallow Crust,0.0,89.9913,0.0,02/22/5541 +7.41814,46.88697,9413,5,27,4,41,56,3.95,15.0,fr,46036,188,1938769,1,3,Active Shallow Crust,0.0,89.9913,0.0,05/27/9413 +7.41814,46.88697,4037,9,15,21,24,3,3.95,5.0,fr,46037,80,1938771,1,1,Active Shallow Crust,240.0203,58.00513,0.0,09/15/4037 +7.41814,46.88697,6149,11,3,9,35,34,3.95,15.0,fr,46038,122,1938775,1,1,Active Shallow Crust,0.0,89.9912,-90.0,11/03/6149 +7.41814,46.88697,3887,12,29,15,14,55,3.95,15.0,fr,46039,77,1938778,1,1,Active Shallow Crust,128.8999,89.99348,0.0,12/29/3887 +7.41814,46.88697,5963,12,31,17,40,32,4.05,5.0,fr,46040,119,1938780,1,1,Active Shallow Crust,0.0,89.98837,0.0,12/31/5963 +7.41814,46.88697,8529,5,27,13,55,56,4.05,15.0,fr,46041,170,1938781,1,1,Active Shallow Crust,0.0,89.98837,0.0,05/27/8529 +7.41814,46.88697,5019,5,8,18,50,47,4.05,5.0,fr,46042,100,1938786,1,1,Active Shallow Crust,0.0,89.98824,-90.0,05/08/5019 +7.41814,46.88697,4576,1,23,2,50,9,4.05,15.0,fr,46043,91,1938790,1,1,Active Shallow Crust,128.8908,89.99419,0.0,01/23/4576 +7.41814,46.88697,5442,5,24,10,30,5,4.15,5.0,fr,46044,108,1938792,1,2,Active Shallow Crust,0.0,89.98964,0.0,05/24/5442 +7.41814,46.88697,7976,8,18,6,41,36,4.15,5.0,fr,46045,159,1938792,1,2,Active Shallow Crust,0.0,89.98964,0.0,08/18/7976 +7.41814,46.88697,2445,9,24,7,22,59,4.15,15.0,fr,46046,48,1938793,1,1,Active Shallow Crust,0.0,89.98964,0.0,09/24/2445 +7.41814,46.88697,1420,10,29,10,24,16,4.25,5.0,fr,46047,28,1938804,1,1,Active Shallow Crust,0.0,89.99076,0.0,10/29/1420 +7.41814,46.88697,7201,3,7,1,18,35,4.25,15.0,fr,46048,144,1938805,1,1,Active Shallow Crust,0.0,89.99076,0.0,03/07/7201 +7.41814,46.88697,4631,4,29,4,35,54,4.25,5.0,fr,46049,92,1938807,1,1,Active Shallow Crust,240.0073,57.99424,0.0,04/29/4631 +7.41814,46.88697,2342,7,22,6,44,19,4.35,5.0,fr,46050,46,1938816,1,1,Active Shallow Crust,0.0,89.98902,0.0,07/22/2342 +7.41814,46.88697,1800,7,25,23,0,56,4.35,15.0,fr,46051,35,1938817,1,1,Active Shallow Crust,0.0,89.98902,0.0,07/25/1800 +7.41814,46.88697,4037,1,12,2,15,22,4.35,15.0,fr,46052,80,1938820,1,1,Active Shallow Crust,240.0086,57.99564,0.0,01/12/4037 +7.41814,46.88697,3203,11,15,13,7,43,4.45,5.0,fr,46053,64,1938828,1,1,Active Shallow Crust,0.0,89.99022,0.0,11/15/3203 +7.41814,46.88697,4571,6,8,21,27,24,4.55,5.0,fr,46054,91,1938840,1,1,Active Shallow Crust,0.0,89.98911,0.0,06/08/4571 +7.41814,46.88697,5000,12,29,8,23,56,4.55,5.0,fr,46055,99,1938846,1,1,Active Shallow Crust,0.0,89.98898,-90.0,12/29/5000 +7.41814,46.88697,5913,9,16,3,3,25,4.65,15.0,fr,46056,118,1938853,1,1,Active Shallow Crust,0.0,89.99029,0.0,09/16/5913 +7.41814,46.88697,3211,5,5,5,22,49,4.75,5.0,fr,46057,64,1938864,1,1,Active Shallow Crust,0.0,89.98961,0.0,05/05/3211 +7.41814,46.88697,2812,8,5,19,17,29,4.75,15.0,fr,46058,56,1938871,1,1,Active Shallow Crust,0.0,89.98949,-90.0,08/05/2812 +7.41814,46.88697,1809,11,9,4,14,57,4.85,15.0,fr,46059,36,1938877,1,1,Active Shallow Crust,0.0,89.99074,0.0,11/09/1809 +7.41814,46.88697,2637,10,13,2,53,33,5.25,5.0,fr,46060,52,1938924,1,1,Active Shallow Crust,0.0,89.99026,0.0,10/13/2637 +7.41814,46.88697,5656,11,30,3,45,42,6.65,15.0,fr,46061,113,1939093,1,1,Active Shallow Crust,359.9999,89.99007,0.0,11/30/5656 +3.29673,42.92343,9235,9,15,18,17,8,3.55,5.0,fr,46062,184,1939200,1,1,Active Shallow Crust,0.0,89.98892,0.0,09/15/9235 +3.29673,42.92343,6490,10,8,3,33,5,3.55,15.0,fr,46063,129,1939210,1,1,Active Shallow Crust,128.8963,89.99446,0.0,10/08/6490 +3.29673,42.92343,7608,10,12,5,52,5,3.75,5.0,fr,46064,152,1939224,1,1,Active Shallow Crust,0.0,89.9912,0.0,10/12/7608 +3.29673,42.92343,1837,3,20,17,42,4,3.95,15.0,fr,46065,36,1939249,1,1,Active Shallow Crust,0.0,89.99068,0.0,03/20/1837 +3.29673,42.92343,5638,1,29,11,47,2,4.35,5.0,fr,46066,112,1939296,1,1,Active Shallow Crust,0.0,89.98971,0.0,01/29/5638 +3.29673,42.92343,5957,2,9,0,41,36,4.45,5.0,fr,46067,119,1939308,1,2,Active Shallow Crust,0.0,89.98952,0.0,02/09/5957 +3.29673,42.92343,7353,5,27,23,7,43,4.45,5.0,fr,46068,147,1939308,1,2,Active Shallow Crust,0.0,89.98952,0.0,05/27/7353 +3.29673,42.92343,8599,10,15,18,11,52,5.05,5.0,fr,46069,171,1939380,1,1,Active Shallow Crust,0.0,89.99015,0.0,10/15/8599 +-3.38856,50.59325,1178,7,15,3,39,41,3.85,15.0,fr,46070,23,1939720,1,1,Active Shallow Crust,240.0115,57.99784,0.0,07/15/1178 +-3.38856,50.59325,5582,11,13,3,12,41,4.05,5.0,fr,46071,111,1939740,1,1,Active Shallow Crust,0.0,89.9892,0.0,11/13/5582 +8.98049,48.84618,480,6,15,19,23,48,3.55,15.0,fr,46072,9,1940161,1,1,Active Shallow Crust,0.0,89.98672,0.0,06/15/0480 +8.98049,48.84618,6295,4,22,23,0,25,3.55,15.0,fr,46073,125,1940164,1,1,Active Shallow Crust,240.014,57.99723,0.0,04/22/6295 +8.98049,48.84618,7003,9,5,13,10,35,3.65,15.0,fr,46074,140,1940173,1,2,Active Shallow Crust,0.0,89.98817,0.0,09/05/7003 +8.98049,48.84618,9949,12,10,3,11,46,3.65,15.0,fr,46075,198,1940173,1,2,Active Shallow Crust,0.0,89.98817,0.0,12/10/9949 +8.98049,48.84618,6511,11,23,2,15,17,3.85,15.0,fr,46076,130,1940197,1,1,Active Shallow Crust,0.0,89.9906,0.0,11/23/6511 +8.98049,48.84618,8025,4,30,21,33,17,3.85,5.0,fr,46077,160,1940205,1,1,Active Shallow Crust,128.8978,89.99061,0.0,04/30/8025 +8.98049,48.84618,5067,3,25,17,44,29,3.95,15.0,fr,46078,101,1940209,1,1,Active Shallow Crust,0.0,89.99162,0.0,03/25/5067 +8.98049,48.84618,2546,11,12,9,15,48,4.05,5.0,fr,46079,50,1940220,1,1,Active Shallow Crust,0.0,89.99254,0.0,11/12/2546 +8.98049,48.84618,9268,5,17,11,53,16,4.15,15.0,fr,46080,185,1940233,1,1,Active Shallow Crust,0.0,89.98669,0.0,05/17/9268 +8.98049,48.84618,764,4,9,12,20,18,4.35,5.0,fr,46081,15,1940256,1,1,Active Shallow Crust,0.0,89.98943,0.0,04/09/0764 +8.98049,48.84618,5590,2,26,4,37,13,4.65,5.0,fr,46082,111,1940292,1,1,Active Shallow Crust,0.0,89.98878,0.0,02/26/5590 +8.98049,48.84618,1557,3,5,22,56,24,5.05,5.0,fr,46083,31,1940340,1,1,Active Shallow Crust,0.0,89.99055,0.0,03/05/1557 +4.69444,50.82523,7938,7,9,0,26,15,3.55,5.0,fr,46084,158,1940640,1,1,Active Shallow Crust,0.0,89.98726,0.0,07/09/7938 +4.69444,50.82523,3311,12,5,1,14,24,3.65,5.0,fr,46085,66,1940652,1,1,Active Shallow Crust,0.0,89.98865,0.0,12/05/3311 +4.69444,50.82523,4760,2,23,2,15,21,3.65,5.0,fr,46086,95,1940655,1,1,Active Shallow Crust,240.0017,58.01302,0.0,02/23/4760 +4.69444,50.82523,8947,1,14,19,48,53,3.75,5.0,fr,46087,178,1940664,1,1,Active Shallow Crust,0.0,89.98988,0.0,01/14/8947 +4.69444,50.82523,5861,2,7,18,22,31,3.75,5.0,fr,46088,117,1940670,1,1,Active Shallow Crust,0.0,89.98976,-90.0,02/07/5861 +4.69444,50.82523,502,12,9,1,34,11,3.75,15.0,fr,46089,10,1940674,1,1,Active Shallow Crust,128.8964,89.96707,0.0,12/09/0502 +4.69444,50.82523,1350,8,31,13,24,26,3.85,5.0,fr,46090,26,1940676,1,2,Active Shallow Crust,0.0,89.99098,0.0,08/31/1350 +4.69444,50.82523,2457,8,12,21,27,42,3.85,5.0,fr,46091,49,1940676,1,2,Active Shallow Crust,0.0,89.99098,0.0,08/12/2457 +4.69444,50.82523,7198,12,5,16,58,14,3.95,5.0,fr,46092,143,1940688,1,1,Active Shallow Crust,0.0,89.99196,0.0,12/05/7198 +4.69444,50.82523,1367,10,7,23,43,30,4.05,15.0,fr,46093,27,1940701,1,1,Active Shallow Crust,0.0,89.98925,0.0,10/07/1367 +4.69444,50.82523,9954,2,5,16,23,18,4.25,27.5,fr,46094,199,1940726,1,2,Active Shallow Crust,0.0,89.98862,0.0,02/05/9954 +4.69444,50.82523,1767,6,20,1,3,52,4.25,27.5,fr,46095,35,1940726,1,2,Active Shallow Crust,0.0,89.98862,0.0,06/20/1767 +4.69444,50.82523,8711,11,29,13,41,28,4.35,5.0,fr,46096,174,1940736,1,1,Active Shallow Crust,0.0,89.98985,0.0,11/29/8711 +4.69444,50.82523,5437,12,17,18,5,52,4.85,5.0,fr,46097,108,1940799,1,1,Active Shallow Crust,240.0192,58.0026,0.0,12/17/5437 +4.69444,50.82523,2547,11,11,19,13,57,4.95,15.0,fr,46098,50,1940809,1,1,Active Shallow Crust,0.0,89.98983,0.0,11/11/2547 +6.57598,44.29898,3409,11,5,4,2,29,3.55,5.0,fr,46099,68,1941120,1,4,Active Shallow Crust,0.0,89.99278,0.0,11/05/3409 +6.57598,44.29898,6999,7,28,19,20,25,3.55,5.0,fr,46100,139,1941120,1,4,Active Shallow Crust,0.0,89.99278,0.0,07/28/6999 +6.57598,44.29898,4043,1,4,5,33,24,3.55,5.0,fr,46101,80,1941120,1,4,Active Shallow Crust,0.0,89.99278,0.0,01/04/4043 +6.57598,44.29898,5312,7,27,2,37,30,3.55,5.0,fr,46102,106,1941120,1,4,Active Shallow Crust,0.0,89.99278,0.0,07/27/5312 +6.57598,44.29898,8964,12,1,7,1,38,3.55,15.0,fr,46103,179,1941121,1,1,Active Shallow Crust,0.0,89.99278,0.0,12/01/8964 +6.57598,44.29898,5861,11,26,15,43,1,3.55,27.5,fr,46104,117,1941122,1,1,Active Shallow Crust,0.0,89.99278,0.0,11/26/5861 +6.57598,44.29898,8731,8,1,1,6,30,3.55,15.0,fr,46105,174,1941127,1,1,Active Shallow Crust,0.0,89.9927,-90.0,08/01/8731 +6.57598,44.29898,5214,9,14,8,34,13,3.65,5.0,fr,46106,104,1941132,1,1,Active Shallow Crust,0.0,89.98714,0.0,09/14/5214 +6.57598,44.29898,2721,8,21,22,22,15,3.65,15.0,fr,46107,54,1941133,1,1,Active Shallow Crust,0.0,89.98714,0.0,08/21/2721 +6.57598,44.29898,918,3,28,23,19,59,3.85,15.0,fr,46108,18,1941157,1,1,Active Shallow Crust,0.0,89.98978,0.0,03/28/0918 +6.57598,44.29898,3096,8,28,21,32,37,3.95,5.0,fr,46109,61,1941168,1,5,Active Shallow Crust,0.0,89.99089,0.0,08/28/3096 +6.57598,44.29898,7291,3,9,13,24,30,3.95,5.0,fr,46110,145,1941168,1,5,Active Shallow Crust,0.0,89.99089,0.0,03/09/7291 +6.57598,44.29898,4734,6,1,20,36,6,3.95,5.0,fr,46111,94,1941168,1,5,Active Shallow Crust,0.0,89.99089,0.0,06/01/4734 +6.57598,44.29898,9047,4,8,11,58,47,3.95,5.0,fr,46112,180,1941168,1,5,Active Shallow Crust,0.0,89.99089,0.0,04/08/9047 +6.57598,44.29898,5390,7,13,20,43,59,3.95,5.0,fr,46113,107,1941168,1,5,Active Shallow Crust,0.0,89.99089,0.0,07/13/5390 +6.57598,44.29898,2,8,9,6,3,24,4.05,5.0,fr,46114,0,1941186,1,1,Active Shallow Crust,0.0,89.99179,-90.0,08/09/0002 +6.57598,44.29898,3574,10,15,3,35,21,4.05,15.0,fr,46115,71,1941187,1,2,Active Shallow Crust,0.0,89.99179,-90.0,10/15/3574 +6.57598,44.29898,7984,6,27,0,6,11,4.05,15.0,fr,46116,159,1941187,1,2,Active Shallow Crust,0.0,89.99179,-90.0,06/27/7984 +6.57598,44.29898,9981,10,11,21,17,6,4.15,5.0,fr,46117,199,1941195,1,1,Active Shallow Crust,240.0085,57.99697,0.0,10/11/9981 +6.57598,44.29898,1053,4,26,20,56,4,4.15,15.0,fr,46118,21,1941199,1,1,Active Shallow Crust,0.0,89.98902,-90.0,04/26/1053 +6.57598,44.29898,726,8,4,22,53,24,4.25,5.0,fr,46119,14,1941213,1,1,Active Shallow Crust,128.8954,89.98087,0.0,08/04/0726 +6.57598,44.29898,293,7,29,0,53,34,4.45,5.0,fr,46120,5,1941228,1,1,Active Shallow Crust,0.0,89.98975,0.0,07/29/0293 +6.57598,44.29898,3512,10,8,22,15,43,5.05,5.0,fr,46121,70,1941300,1,1,Active Shallow Crust,0.0,89.98973,0.0,10/08/3512 +6.57598,44.29898,2035,8,13,10,10,17,5.05,27.5,fr,46122,40,1941302,1,1,Active Shallow Crust,0.0,89.98973,0.0,08/13/2035 +6.57598,44.29898,3211,10,17,17,12,45,5.15,15.0,fr,46123,64,1941313,1,1,Active Shallow Crust,0.0,89.9897,0.0,10/17/3211 +6.57598,44.29898,9439,7,4,22,1,52,6.15,27.5,fr,46124,188,1941434,1,1,Active Shallow Crust,0.0,89.98986,0.0,07/04/9439 +7.39402,44.65969,6319,3,10,17,44,18,3.55,5.0,fr,46125,126,1941600,1,6,Active Shallow Crust,0.0,89.99283,0.0,03/10/6319 +7.39402,44.65969,5922,3,2,2,51,31,3.55,5.0,fr,46126,118,1941600,1,6,Active Shallow Crust,0.0,89.99283,0.0,03/02/5922 +7.39402,44.65969,1549,9,26,22,49,35,3.55,5.0,fr,46127,30,1941600,1,6,Active Shallow Crust,0.0,89.99283,0.0,09/26/1549 +7.39402,44.65969,9050,7,30,17,23,12,3.55,5.0,fr,46128,180,1941600,1,6,Active Shallow Crust,0.0,89.99283,0.0,07/30/9050 +7.39402,44.65969,9236,12,15,19,39,42,3.55,5.0,fr,46129,184,1941600,1,6,Active Shallow Crust,0.0,89.99283,0.0,12/15/9236 +7.39402,44.65969,2808,1,20,13,35,5,3.55,5.0,fr,46130,56,1941600,1,6,Active Shallow Crust,0.0,89.99283,0.0,01/20/2808 +7.39402,44.65969,3618,3,30,8,5,49,3.55,15.0,fr,46131,72,1941601,1,1,Active Shallow Crust,0.0,89.99283,0.0,03/30/3618 +7.39402,44.65969,1500,11,18,21,39,59,3.55,5.0,fr,46132,29,1941603,1,2,Active Shallow Crust,240.0115,57.99823,0.0,11/18/1500 +7.39402,44.65969,9791,1,30,10,27,40,3.55,5.0,fr,46133,195,1941603,1,2,Active Shallow Crust,240.0115,57.99823,0.0,01/30/9791 +7.39402,44.65969,5327,6,14,23,24,5,3.55,5.0,fr,46134,106,1941606,1,2,Active Shallow Crust,0.0,89.99274,-90.0,06/14/5327 +7.39402,44.65969,2985,2,3,14,20,1,3.55,5.0,fr,46135,59,1941606,1,2,Active Shallow Crust,0.0,89.99274,-90.0,02/03/2985 +7.39402,44.65969,7670,7,1,14,11,7,3.55,15.0,fr,46136,153,1941607,1,1,Active Shallow Crust,0.0,89.99274,-90.0,07/01/7670 +7.39402,44.65969,4609,8,26,15,47,48,3.55,5.0,fr,46137,92,1941609,1,1,Active Shallow Crust,128.8964,89.99283,0.0,08/26/4609 +7.39402,44.65969,7778,6,3,22,39,28,3.65,5.0,fr,46138,155,1941612,1,4,Active Shallow Crust,0.0,89.98721,0.0,06/03/7778 +7.39402,44.65969,1771,5,23,10,42,30,3.65,5.0,fr,46139,35,1941612,1,4,Active Shallow Crust,0.0,89.98721,0.0,05/23/1771 +7.39402,44.65969,1024,10,27,13,13,1,3.65,5.0,fr,46140,20,1941612,1,4,Active Shallow Crust,0.0,89.98721,0.0,10/27/1024 +7.39402,44.65969,4770,4,13,9,43,8,3.65,5.0,fr,46141,95,1941612,1,4,Active Shallow Crust,0.0,89.98721,0.0,04/13/4770 +7.39402,44.65969,6232,9,8,1,20,49,3.65,5.0,fr,46142,124,1941615,1,2,Active Shallow Crust,240.0,58.01361,0.0,09/08/6232 +7.39402,44.65969,2419,8,22,11,20,11,3.65,5.0,fr,46143,48,1941615,1,2,Active Shallow Crust,240.0,58.01361,0.0,08/22/2419 +7.39402,44.65969,1359,5,17,21,26,34,3.65,5.0,fr,46144,27,1941618,1,1,Active Shallow Crust,0.0,89.98707,-90.0,05/17/1359 +7.39402,44.65969,8682,1,23,23,50,39,3.65,27.5,fr,46145,173,1941620,1,1,Active Shallow Crust,0.0,89.98707,-90.0,01/23/8682 +7.39402,44.65969,877,8,29,11,48,52,3.65,15.0,fr,46146,17,1941622,1,1,Active Shallow Crust,128.9009,89.96349,0.0,08/29/0877 +7.39402,44.65969,7409,8,16,12,52,12,3.75,5.0,fr,46147,148,1941624,1,2,Active Shallow Crust,0.0,89.9886,0.0,08/16/7409 +7.39402,44.65969,2351,7,31,19,37,54,3.75,5.0,fr,46148,47,1941624,1,2,Active Shallow Crust,0.0,89.9886,0.0,07/31/2351 +7.39402,44.65969,5590,7,16,8,24,25,3.75,5.0,fr,46149,111,1941630,1,1,Active Shallow Crust,0.0,89.98847,-90.0,07/16/5590 +7.39402,44.65969,2568,8,12,7,6,55,3.85,5.0,fr,46150,51,1941636,1,2,Active Shallow Crust,0.0,89.98985,0.0,08/12/2568 +7.39402,44.65969,3976,1,19,16,10,27,3.85,5.0,fr,46151,79,1941636,1,2,Active Shallow Crust,0.0,89.98985,0.0,01/19/3976 +7.39402,44.65969,8470,12,30,23,10,38,3.85,27.5,fr,46152,169,1941641,1,1,Active Shallow Crust,240.0104,57.99803,0.0,12/30/8470 +7.39402,44.65969,85,3,16,12,25,21,3.95,5.0,fr,46153,1,1941648,1,1,Active Shallow Crust,0.0,89.99095,0.0,03/16/0085 +7.39402,44.65969,4443,4,15,8,59,44,3.95,5.0,fr,46154,88,1941651,1,1,Active Shallow Crust,240.0197,58.00567,0.0,04/15/4443 +7.39402,44.65969,5655,11,29,0,24,29,3.95,15.0,fr,46155,113,1941655,1,1,Active Shallow Crust,0.0,89.99084,-90.0,11/29/5655 +7.39402,44.65969,8893,6,9,0,7,38,3.95,15.0,fr,46156,177,1941658,1,1,Active Shallow Crust,128.9014,89.99321,0.0,06/09/8893 +7.39402,44.65969,755,10,16,9,25,50,4.05,5.0,fr,46157,15,1941660,1,2,Active Shallow Crust,0.0,89.99194,0.0,10/16/0755 +7.39402,44.65969,4332,12,27,22,57,26,4.05,5.0,fr,46158,86,1941660,1,2,Active Shallow Crust,0.0,89.99194,0.0,12/27/4332 +7.39402,44.65969,7993,10,2,1,41,22,4.15,5.0,fr,46159,159,1941672,1,1,Active Shallow Crust,0.0,89.98921,0.0,10/02/7993 +7.39402,44.65969,8864,9,25,3,7,40,4.15,5.0,fr,46160,177,1941678,1,1,Active Shallow Crust,0.0,89.98909,-90.0,09/25/8864 +7.39402,44.65969,9563,4,10,14,13,11,4.15,5.0,fr,46161,191,1941681,1,1,Active Shallow Crust,128.8968,89.99461,0.0,04/10/9563 +7.39402,44.65969,7067,6,12,14,23,34,4.25,15.0,fr,46162,141,1941685,1,2,Active Shallow Crust,0.0,89.99039,0.0,06/12/7067 +7.39402,44.65969,3593,9,18,23,50,50,4.25,15.0,fr,46163,71,1941685,1,2,Active Shallow Crust,0.0,89.99039,0.0,09/18/3593 +7.39402,44.65969,7868,9,18,23,9,47,4.35,5.0,fr,46164,157,1941696,1,2,Active Shallow Crust,0.0,89.98858,0.0,09/18/7868 +7.39402,44.65969,4956,6,28,6,43,23,4.35,5.0,fr,46165,99,1941696,1,2,Active Shallow Crust,0.0,89.98858,0.0,06/28/4956 +7.39402,44.65969,7889,5,4,19,49,42,4.45,5.0,fr,46166,157,1941711,1,1,Active Shallow Crust,240.0048,57.9948,0.0,05/04/7889 +7.39402,44.65969,8395,3,2,3,47,20,4.65,5.0,fr,46167,167,1941732,1,2,Active Shallow Crust,0.0,89.98989,0.0,03/02/8395 +7.39402,44.65969,4631,5,7,21,21,22,4.65,5.0,fr,46168,92,1941732,1,2,Active Shallow Crust,0.0,89.98989,0.0,05/07/4631 +7.39402,44.65969,5787,3,19,13,14,0,4.75,5.0,fr,46169,115,1941747,1,1,Active Shallow Crust,240.0068,58.00429,0.0,03/19/5787 +7.39402,44.65969,3583,5,11,20,49,26,4.85,15.0,fr,46170,71,1941757,1,1,Active Shallow Crust,0.0,89.99036,0.0,05/11/3583 +7.39402,44.65969,6780,10,30,20,2,15,4.95,5.0,fr,46171,135,1941768,1,1,Active Shallow Crust,0.0,89.98998,0.0,10/30/6780 +7.39402,44.65969,9530,10,13,5,34,37,5.15,5.0,fr,46172,190,1941801,1,1,Active Shallow Crust,128.8847,89.99106,0.0,10/13/9530 +7.39402,44.65969,7971,1,29,7,36,47,5.55,5.0,fr,46173,159,1941840,1,1,Active Shallow Crust,0.0,89.98995,0.0,01/29/7971 +7.39402,44.65969,6712,6,20,13,28,19,6.35,27.43219,fr,46174,134,1941938,1,1,Active Shallow Crust,0.0,89.99,0.0,06/20/6712 +7.394032,44.65969,6034,7,31,19,4,7,6.65,10.68981,fr,46175,120,1941972,1,1,Active Shallow Crust,0.0,89.98997,0.0,07/31/6034 +7.39402,44.65969,9461,2,17,9,26,33,6.85,15.0,fr,46176,189,1942003,1,1,Active Shallow Crust,359.9999,89.99007,-90.0,02/17/9461 +2.91286,40.4436,5533,3,31,9,43,13,4.25,27.5,fr,46177,110,1942166,1,1,Active Shallow Crust,0.0,89.98972,0.0,03/31/5533 +5.31403,45.45595,8177,10,10,1,1,1,3.55,5.0,fr,46178,163,1942560,1,3,Active Shallow Crust,0.0,89.99293,0.0,10/10/8177 +5.31403,45.45595,998,9,16,17,21,3,3.55,5.0,fr,46179,19,1942560,1,3,Active Shallow Crust,0.0,89.99293,0.0,09/16/0998 +5.31403,45.45595,7067,8,20,12,20,49,3.55,5.0,fr,46180,141,1942560,1,3,Active Shallow Crust,0.0,89.99293,0.0,08/20/7067 +5.31403,45.45595,6530,4,16,15,9,11,3.65,5.0,fr,46181,130,1942572,1,1,Active Shallow Crust,0.0,89.98739,0.0,04/16/6530 +5.31403,45.45595,5112,11,20,9,15,43,3.65,15.0,fr,46182,102,1942573,1,1,Active Shallow Crust,0.0,89.98739,0.0,11/20/5112 +5.31403,45.45595,1739,12,20,20,5,26,3.75,15.0,fr,46183,34,1942585,1,1,Active Shallow Crust,0.0,89.98876,0.0,12/20/1739 +5.31403,45.45595,7393,8,16,15,49,33,3.85,15.0,fr,46184,147,1942600,1,1,Active Shallow Crust,240.0104,57.99787,0.0,08/16/7393 +5.31403,45.45595,7645,11,27,17,37,4,3.95,5.0,fr,46185,152,1942608,1,1,Active Shallow Crust,0.0,89.99107,0.0,11/27/7645 +5.31403,45.45595,7431,8,25,17,38,32,3.95,15.0,fr,46186,148,1942609,1,1,Active Shallow Crust,0.0,89.99107,0.0,08/25/7431 +5.31403,45.45595,9286,6,19,3,7,26,4.05,27.5,fr,46187,185,1942622,1,1,Active Shallow Crust,0.0,89.98807,0.0,06/19/9286 +5.31403,45.45595,7779,1,31,22,45,17,4.15,5.0,fr,46188,155,1942632,1,2,Active Shallow Crust,0.0,89.98936,0.0,01/31/7779 +5.31403,45.45595,9285,2,13,16,55,35,4.15,5.0,fr,46189,185,1942632,1,2,Active Shallow Crust,0.0,89.98936,0.0,02/13/9285 +5.31403,45.45595,2504,4,23,4,30,4,4.15,15.0,fr,46190,50,1942633,1,1,Active Shallow Crust,0.0,89.98936,0.0,04/23/2504 +5.31403,45.45595,2097,4,20,18,0,44,4.15,5.0,fr,46191,41,1942641,1,1,Active Shallow Crust,128.8977,89.99291,0.0,04/20/2097 +5.31403,45.45595,3176,2,11,2,25,24,4.25,5.0,fr,46192,63,1942644,1,3,Active Shallow Crust,0.0,89.99052,0.0,02/11/3176 +5.31403,45.45595,8446,9,12,23,32,33,4.25,5.0,fr,46193,168,1942644,1,3,Active Shallow Crust,0.0,89.99052,0.0,09/12/8446 +5.31403,45.45595,4346,2,17,11,50,10,4.25,5.0,fr,46194,86,1942644,1,3,Active Shallow Crust,0.0,89.99052,0.0,02/17/4346 +5.31403,45.45595,3972,6,15,3,25,41,4.35,5.0,fr,46195,79,1942656,1,1,Active Shallow Crust,0.0,89.98874,0.0,06/15/3972 +5.31403,45.45595,7788,5,26,21,7,13,5.75,5.0,fr,46196,155,1942824,1,1,Active Shallow Crust,0.0,89.98988,0.0,05/26/7788 +-1.37256,42.89188,9067,4,3,9,11,17,3.55,5.0,fr,46197,181,1943040,1,4,Active Shallow Crust,0.0,89.99077,0.0,04/03/9067 +-1.37256,42.89188,9248,6,9,16,5,20,3.55,5.0,fr,46198,184,1943040,1,4,Active Shallow Crust,0.0,89.99077,0.0,06/09/9248 +-1.37256,42.89188,8300,4,10,17,17,11,3.55,5.0,fr,46199,165,1943040,1,4,Active Shallow Crust,0.0,89.99077,0.0,04/10/8300 +-1.37256,42.89188,6351,9,12,23,19,25,3.55,5.0,fr,46200,127,1943040,1,4,Active Shallow Crust,0.0,89.99077,0.0,09/12/6351 +-1.37256,42.89188,5954,11,22,5,34,18,3.55,15.0,fr,46201,119,1943041,1,2,Active Shallow Crust,0.0,89.99077,0.0,11/22/5954 +-1.37256,42.89188,6403,10,24,23,44,21,3.55,15.0,fr,46202,128,1943041,1,2,Active Shallow Crust,0.0,89.99077,0.0,10/24/6403 +-1.37256,42.89188,9182,7,9,22,26,38,3.55,5.0,fr,46203,183,1943043,1,2,Active Shallow Crust,240.012,57.9981,0.0,07/09/9182 +-1.37256,42.89188,6801,3,24,21,38,52,3.55,5.0,fr,46204,136,1943043,1,2,Active Shallow Crust,240.012,57.9981,0.0,03/24/6801 +-1.37256,42.89188,74,12,5,2,13,0,3.55,5.0,fr,46205,1,1943046,1,1,Active Shallow Crust,0.0,89.99066,-90.0,12/05/0074 +-1.37256,42.89188,3736,10,31,4,31,58,3.55,5.0,fr,46206,74,1943049,1,1,Active Shallow Crust,128.8965,89.99354,0.0,10/31/3736 +-1.37256,42.89188,19,4,22,22,29,46,3.65,27.5,fr,46207,0,1943054,1,1,Active Shallow Crust,0.0,89.99012,0.0,04/22/0019 +-1.37256,42.89188,1325,1,26,3,50,26,3.65,5.0,fr,46208,26,1943058,1,2,Active Shallow Crust,0.0,89.99001,-90.0,01/26/1325 +-1.37256,42.89188,3184,6,2,5,36,1,3.65,5.0,fr,46209,63,1943058,1,2,Active Shallow Crust,0.0,89.99001,-90.0,06/02/3184 +-1.37256,42.89188,8315,2,28,16,43,48,3.75,5.0,fr,46210,166,1943064,1,2,Active Shallow Crust,0.0,89.98973,0.0,02/28/8315 +-1.37256,42.89188,5106,4,13,1,44,55,3.75,5.0,fr,46211,102,1943064,1,2,Active Shallow Crust,0.0,89.98973,0.0,04/13/5106 +-1.37256,42.89188,2874,5,11,23,23,40,3.75,15.0,fr,46212,57,1943065,1,1,Active Shallow Crust,0.0,89.98973,0.0,05/11/2874 +-1.37256,42.89188,2530,12,9,21,16,39,3.75,27.5,fr,46213,50,1943066,1,1,Active Shallow Crust,0.0,89.98973,0.0,12/09/2530 +-1.37256,42.89188,8045,8,22,9,24,8,3.75,5.0,fr,46214,160,1943073,1,1,Active Shallow Crust,128.8968,89.96743,0.0,08/22/8045 +-1.37256,42.89188,7398,3,8,14,2,6,3.85,5.0,fr,46215,147,1943076,1,2,Active Shallow Crust,0.0,89.98954,0.0,03/08/7398 +-1.37256,42.89188,8766,6,23,5,37,43,3.85,5.0,fr,46216,175,1943076,1,2,Active Shallow Crust,0.0,89.98954,0.0,06/23/8766 +-1.37256,42.89188,2827,1,15,23,50,59,3.85,27.5,fr,46217,56,1943078,1,1,Active Shallow Crust,0.0,89.98954,0.0,01/15/2827 +-1.37256,42.89188,5839,9,28,23,57,27,3.85,5.0,fr,46218,116,1943079,1,1,Active Shallow Crust,240.0103,57.9978,0.0,09/28/5839 +-1.37256,42.89188,6785,12,29,15,15,4,3.95,5.0,fr,46219,135,1943088,1,1,Active Shallow Crust,0.0,89.98951,0.0,12/29/6785 +-1.37256,42.89188,601,1,16,16,58,2,3.95,15.0,fr,46220,12,1943089,1,1,Active Shallow Crust,0.0,89.98951,0.0,01/16/0601 +-1.37256,42.89188,680,2,10,3,41,15,4.15,15.0,fr,46221,13,1943113,1,2,Active Shallow Crust,0.0,89.98981,0.0,02/10/0680 +-1.37256,42.89188,1257,1,2,1,4,53,4.15,15.0,fr,46222,25,1943113,1,2,Active Shallow Crust,0.0,89.98981,0.0,01/02/1257 +-1.37256,42.89188,9014,8,30,18,37,32,4.15,5.0,fr,46223,180,1943121,1,1,Active Shallow Crust,128.8981,89.99352,0.0,08/30/9014 +-1.37256,42.89188,5960,4,15,6,45,46,4.25,5.0,fr,46224,119,1943124,1,1,Active Shallow Crust,0.0,89.9901,0.0,04/15/5960 +-1.37256,42.89188,4327,2,18,8,4,13,4.25,27.5,fr,46225,86,1943126,1,1,Active Shallow Crust,0.0,89.9901,0.0,02/18/4327 +-1.37256,42.89188,759,7,13,22,0,42,4.35,5.0,fr,46226,15,1943136,1,1,Active Shallow Crust,0.0,89.98971,0.0,07/13/0759 +-1.37256,42.89188,634,8,31,16,24,10,4.35,27.5,fr,46227,12,1943138,1,1,Active Shallow Crust,0.0,89.98971,0.0,08/31/0634 +-1.37256,42.89188,403,9,5,21,32,39,4.45,15.0,fr,46228,8,1943149,1,1,Active Shallow Crust,0.0,89.99017,0.0,09/05/0403 +-1.37256,42.89188,1148,5,19,21,2,50,4.65,5.0,fr,46229,22,1943172,1,1,Active Shallow Crust,0.0,89.99011,0.0,05/19/1148 +-1.37256,42.89188,9486,3,1,14,57,43,4.65,5.0,fr,46230,189,1943181,1,1,Active Shallow Crust,128.892,89.98703,0.0,03/01/9486 +-1.37256,42.89188,8444,1,26,20,6,11,4.75,5.0,fr,46231,168,1943184,1,1,Active Shallow Crust,0.0,89.98979,0.0,01/26/8444 +-1.37256,42.89188,8101,8,27,16,4,45,5.05,5.0,fr,46232,162,1943220,1,2,Active Shallow Crust,0.0,89.99014,0.0,08/27/8101 +-1.37256,42.89188,8738,6,29,20,36,51,5.05,5.0,fr,46233,174,1943220,1,2,Active Shallow Crust,0.0,89.99014,0.0,06/29/8738 +-1.37256,42.89188,167,5,3,20,39,58,5.05,15.0,fr,46234,3,1943224,1,1,Active Shallow Crust,240.0204,57.99721,0.0,05/03/0167 +-1.37256,42.89188,640,7,23,12,47,11,5.85,5.0,fr,46235,12,1943316,1,1,Active Shallow Crust,359.9999,89.99006,0.0,07/23/0640 +7.90998,48.2257,9440,5,10,23,27,26,3.55,5.0,fr,46236,188,1943520,1,4,Active Shallow Crust,0.0,89.99328,0.0,05/10/9440 +7.90998,48.2257,2977,11,15,4,44,9,3.55,5.0,fr,46237,59,1943520,1,4,Active Shallow Crust,0.0,89.99328,0.0,11/15/2977 +7.90998,48.2257,614,4,25,20,24,13,3.55,5.0,fr,46238,12,1943520,1,4,Active Shallow Crust,0.0,89.99328,0.0,04/25/0614 +7.90998,48.2257,3331,5,16,8,14,32,3.55,5.0,fr,46239,66,1943520,1,4,Active Shallow Crust,0.0,89.99328,0.0,05/16/3331 +7.90998,48.2257,4598,12,27,21,58,44,3.55,15.0,fr,46240,91,1943521,1,1,Active Shallow Crust,0.0,89.99328,0.0,12/27/4598 +7.90998,48.2257,60,11,29,13,30,41,3.55,15.0,fr,46241,1,1943530,1,1,Active Shallow Crust,128.8954,89.99329,0.0,11/29/0060 +7.90998,48.2257,1960,7,4,8,34,12,3.65,5.0,fr,46242,39,1943532,1,1,Active Shallow Crust,0.0,89.98802,0.0,07/04/1960 +7.90998,48.2257,6344,11,24,10,51,24,3.65,15.0,fr,46243,126,1943542,1,1,Active Shallow Crust,128.8994,89.96355,0.0,11/24/6344 +7.90998,48.2257,5367,6,22,3,12,32,3.75,15.0,fr,46244,107,1943545,1,1,Active Shallow Crust,0.0,89.98933,0.0,06/22/5367 +7.90998,48.2257,1970,10,20,11,18,38,3.75,5.0,fr,46245,39,1943547,1,2,Active Shallow Crust,240.0087,58.01731,0.0,10/20/1970 +7.90998,48.2257,8159,10,3,2,13,28,3.75,5.0,fr,46246,163,1943547,1,2,Active Shallow Crust,240.0087,58.01731,0.0,10/03/8159 +7.90998,48.2257,5900,12,5,6,39,43,3.75,15.0,fr,46247,117,1943551,1,1,Active Shallow Crust,0.0,89.9892,-90.0,12/05/5900 +7.90998,48.2257,5472,11,3,19,19,9,3.75,15.0,fr,46248,109,1943554,1,1,Active Shallow Crust,128.8966,89.96752,0.0,11/03/5472 +7.90998,48.2257,3774,9,8,5,51,13,3.85,5.0,fr,46249,75,1943556,1,1,Active Shallow Crust,0.0,89.99049,0.0,09/08/3774 +7.90998,48.2257,7922,10,27,21,57,15,3.85,5.0,fr,46250,158,1943559,1,1,Active Shallow Crust,240.0109,57.99779,0.0,10/27/7922 +7.90998,48.2257,5341,2,28,23,57,14,3.95,5.0,fr,46251,106,1943568,1,3,Active Shallow Crust,0.0,89.99152,0.0,02/28/5341 +7.90998,48.2257,5869,7,6,14,37,8,3.95,5.0,fr,46252,117,1943568,1,3,Active Shallow Crust,0.0,89.99152,0.0,07/06/5869 +7.90998,48.2257,878,1,15,22,51,33,3.95,5.0,fr,46253,17,1943568,1,3,Active Shallow Crust,0.0,89.99152,0.0,01/15/0878 +7.90998,48.2257,3560,8,27,21,20,1,3.95,15.0,fr,46254,71,1943569,1,1,Active Shallow Crust,0.0,89.99152,0.0,08/27/3560 +7.90998,48.2257,2986,4,6,0,14,36,3.95,5.0,fr,46255,59,1943571,1,1,Active Shallow Crust,240.0209,58.00487,0.0,04/06/2986 +7.90998,48.2257,3918,8,23,3,28,45,3.95,15.0,fr,46256,78,1943572,1,2,Active Shallow Crust,240.0209,58.00487,0.0,08/23/3918 +7.90998,48.2257,8910,8,28,1,26,9,3.95,15.0,fr,46257,178,1943572,1,2,Active Shallow Crust,240.0209,58.00487,0.0,08/28/8910 +7.90998,48.2257,8690,4,30,5,26,15,3.95,5.0,fr,46258,173,1943577,1,1,Active Shallow Crust,128.9009,89.99364,0.0,04/30/8690 +7.90998,48.2257,5512,4,7,1,47,2,3.95,27.5,fr,46259,110,1943579,1,1,Active Shallow Crust,128.9009,89.99364,0.0,04/07/5512 +7.90998,48.2257,6623,5,8,14,40,50,4.05,5.0,fr,46260,132,1943580,1,1,Active Shallow Crust,0.0,89.98866,0.0,05/08/6623 +7.90998,48.2257,2945,7,16,4,6,47,4.15,15.0,fr,46261,58,1943593,1,1,Active Shallow Crust,0.0,89.9899,0.0,07/16/2945 +7.90998,48.2257,5143,6,21,22,40,32,4.15,5.0,fr,46262,102,1943595,1,1,Active Shallow Crust,240.0085,57.99757,0.0,06/21/5143 +7.90998,48.2257,1179,1,13,21,56,43,4.35,15.0,fr,46263,23,1943617,1,1,Active Shallow Crust,0.0,89.9893,0.0,01/13/1179 +7.90998,48.2257,5359,6,5,19,44,14,4.35,15.0,fr,46264,107,1943626,1,1,Active Shallow Crust,128.8975,89.98308,0.0,06/05/5359 +7.90998,48.2257,8922,3,22,20,36,14,4.35,27.5,fr,46265,178,1943627,1,1,Active Shallow Crust,128.8975,89.98308,0.0,03/22/8922 +7.90998,48.2257,2382,9,20,13,46,36,4.45,5.0,fr,46266,47,1943628,1,2,Active Shallow Crust,0.0,89.99046,0.0,09/20/2382 +7.90998,48.2257,8257,3,2,12,31,29,4.45,5.0,fr,46267,165,1943628,1,2,Active Shallow Crust,0.0,89.99046,0.0,03/02/8257 +7.90998,48.2257,7223,9,14,12,59,55,4.65,5.0,fr,46268,144,1943652,1,1,Active Shallow Crust,0.0,89.99053,0.0,09/14/7223 +7.90998,48.2257,5598,5,18,21,35,53,4.75,5.0,fr,46269,111,1943664,1,1,Active Shallow Crust,0.0,89.98988,0.0,05/18/5598 +7.90998,48.2257,5542,12,18,7,34,40,6.25,15.0,fr,46270,110,1943851,1,1,Active Shallow Crust,0.0,89.98997,-90.0,12/18/5542 +0.43439,46.46078,6858,10,18,14,18,14,3.55,5.0,fr,46271,137,1944000,1,3,Active Shallow Crust,0.0,89.99001,0.0,10/18/6858 +0.43439,46.46078,133,8,15,19,40,5,3.55,5.0,fr,46272,2,1944000,1,3,Active Shallow Crust,0.0,89.99001,0.0,08/15/0133 +0.43439,46.46078,9736,9,5,12,27,1,3.55,5.0,fr,46273,194,1944000,1,3,Active Shallow Crust,0.0,89.99001,0.0,09/05/9736 +0.43439,46.46078,3379,9,2,5,6,45,3.55,15.0,fr,46274,67,1944001,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/02/3379 +0.43439,46.46078,8805,7,23,3,19,22,3.55,27.5,fr,46275,176,1944005,1,1,Active Shallow Crust,240.0121,57.99812,0.0,07/23/8805 +0.43439,46.46078,3180,10,11,6,45,34,3.65,5.0,fr,46276,63,1944012,1,1,Active Shallow Crust,0.0,89.98994,0.0,10/11/3180 +0.43439,46.46078,6653,1,20,10,48,40,3.65,5.0,fr,46277,133,1944018,1,1,Active Shallow Crust,0.0,89.98982,-90.0,01/20/6653 +0.43439,46.46078,1591,8,10,21,39,1,3.85,5.0,fr,46278,31,1944036,1,2,Active Shallow Crust,0.0,89.98986,0.0,08/10/1591 +0.43439,46.46078,1284,7,5,3,49,52,3.85,5.0,fr,46279,25,1944036,1,2,Active Shallow Crust,0.0,89.98986,0.0,07/05/1284 +0.43439,46.46078,1496,4,2,13,23,0,3.85,15.0,fr,46280,29,1944037,1,1,Active Shallow Crust,0.0,89.98986,0.0,04/02/1496 +0.43439,46.46078,5213,6,12,9,28,16,3.85,5.0,fr,46281,104,1944042,1,1,Active Shallow Crust,0.0,89.99005,-90.0,06/12/5213 +0.43439,46.46078,2602,10,17,7,13,52,3.85,5.0,fr,46282,52,1944045,1,1,Active Shallow Crust,128.8956,89.9937,0.0,10/17/2602 +0.43439,46.46078,6522,2,25,22,26,34,3.95,5.0,fr,46283,130,1944051,1,1,Active Shallow Crust,240.0198,58.00492,0.0,02/25/6522 +0.43439,46.46078,2147,4,22,11,55,21,3.95,5.0,fr,46284,42,1944057,1,1,Active Shallow Crust,128.9004,89.9937,0.0,04/22/2147 +0.43439,46.46078,1162,8,29,8,34,50,4.05,5.0,fr,46285,23,1944060,1,3,Active Shallow Crust,0.0,89.98999,0.0,08/29/1162 +0.43439,46.46078,8465,4,5,5,55,5,4.05,5.0,fr,46286,169,1944060,1,3,Active Shallow Crust,0.0,89.98999,0.0,04/05/8465 +0.43439,46.46078,2964,10,21,5,37,40,4.05,5.0,fr,46287,59,1944060,1,3,Active Shallow Crust,0.0,89.98999,0.0,10/21/2964 +0.43439,46.46078,5402,4,18,12,52,41,4.05,15.0,fr,46288,108,1944061,1,1,Active Shallow Crust,0.0,89.98999,0.0,04/18/5402 +0.43439,46.46078,7378,4,16,11,4,43,4.35,5.0,fr,46289,147,1944096,1,1,Active Shallow Crust,0.0,89.98997,0.0,04/16/7378 +0.43439,46.46078,9619,12,8,7,16,22,4.45,5.0,fr,46290,192,1944108,1,2,Active Shallow Crust,0.0,89.98999,0.0,12/08/9619 +0.43439,46.46078,6540,10,4,7,37,14,4.45,5.0,fr,46291,130,1944108,1,2,Active Shallow Crust,0.0,89.98999,0.0,10/04/6540 +0.43439,46.46078,2593,9,4,21,11,36,4.55,5.0,fr,46292,51,1944120,1,1,Active Shallow Crust,0.0,89.98997,0.0,09/04/2593 +0.43439,46.46078,3500,11,24,2,3,23,4.55,15.0,fr,46293,69,1944121,1,1,Active Shallow Crust,0.0,89.98997,0.0,11/24/3500 +0.43439,46.46078,6463,2,4,17,12,10,4.75,5.0,fr,46294,129,1944144,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/04/6463 +0.43439,46.46078,7601,7,17,9,6,59,5.25,27.5,fr,46295,152,1944209,1,1,Active Shallow Crust,240.0254,58.00027,0.0,07/17/7601 +0.43439,46.46078,4383,3,20,3,51,1,5.45,5.0,fr,46296,87,1944237,1,1,Active Shallow Crust,128.8788,89.98898,0.0,03/20/4383 +0.43439,46.46078,9815,12,29,20,52,37,5.75,15.0,fr,46297,196,1944265,1,1,Active Shallow Crust,0.0,89.98999,0.0,12/29/9815 +-5.32485,49.34202,5406,4,10,1,36,31,3.95,5.0,fr,46298,108,1944528,1,1,Active Shallow Crust,0.0,89.99171,0.0,04/10/5406 +7.73124,49.46986,4088,1,1,8,43,37,3.55,5.0,fr,46299,81,1944960,1,1,Active Shallow Crust,0.0,89.98689,0.0,01/01/4088 +7.73124,49.46986,2687,12,22,21,36,2,3.55,5.0,fr,46300,53,1944966,1,1,Active Shallow Crust,0.0,89.98674,-90.0,12/22/2687 +7.73124,49.46986,8031,3,18,10,43,46,3.55,5.0,fr,46301,160,1944969,1,1,Active Shallow Crust,128.8954,89.99345,0.0,03/18/8031 +7.73124,49.46986,4763,2,27,15,32,31,3.65,5.0,fr,46302,95,1944981,1,1,Active Shallow Crust,128.9007,89.963,0.0,02/27/4763 +7.73124,49.46986,5751,10,15,13,53,8,3.75,5.0,fr,46303,115,1944984,1,1,Active Shallow Crust,0.0,89.98959,0.0,10/15/5751 +7.73124,49.46986,2821,7,29,12,53,47,3.75,5.0,fr,46304,56,1944990,1,1,Active Shallow Crust,0.0,89.98947,-90.0,07/29/2821 +7.73124,49.46986,8768,6,25,11,14,54,3.85,5.0,fr,46305,175,1944996,1,1,Active Shallow Crust,0.0,89.99072,0.0,06/25/8768 +7.73124,49.46986,6550,1,29,0,18,34,4.05,15.0,fr,46306,130,1945027,1,1,Active Shallow Crust,0.0,89.98882,-90.0,01/29/6550 +7.73124,49.46986,3248,11,10,2,24,40,4.15,5.0,fr,46307,64,1945032,1,1,Active Shallow Crust,0.0,89.99014,0.0,11/10/3248 +7.73124,49.46986,5985,12,16,16,17,16,4.25,5.0,fr,46308,119,1945050,1,1,Active Shallow Crust,0.0,89.99112,-90.0,12/16/5985 +8.40867,45.29837,8524,8,4,3,17,21,3.75,5.0,fr,46309,170,1945944,1,1,Active Shallow Crust,0.0,89.98873,0.0,08/04/8524 +8.40867,45.29837,3532,9,27,8,44,52,3.95,5.0,fr,46310,70,1945968,1,1,Active Shallow Crust,0.0,89.99105,0.0,09/27/3532 +8.40867,45.29837,3807,1,29,19,30,9,4.15,5.0,fr,46311,76,1945992,1,2,Active Shallow Crust,0.0,89.99289,0.0,01/29/3807 +8.40867,45.29837,4996,5,24,6,50,56,4.15,5.0,fr,46312,99,1945992,1,2,Active Shallow Crust,0.0,89.99289,0.0,05/24/4996 +8.40867,45.29837,909,7,27,7,40,2,4.25,27.5,fr,46313,18,1946006,1,1,Active Shallow Crust,0.0,89.98733,0.0,07/27/0909 +8.40867,45.29837,1053,2,18,23,32,8,4.45,15.0,fr,46314,21,1946029,1,1,Active Shallow Crust,0.0,89.98993,0.0,02/18/1053 +8.40867,45.29837,329,6,21,11,44,10,4.55,5.0,fr,46315,6,1946046,1,1,Active Shallow Crust,0.0,89.99092,-90.0,06/21/0329 +8.12055,50.01247,2946,8,28,16,48,12,3.55,5.0,fr,46316,58,1946400,1,3,Active Shallow Crust,0.0,89.98704,0.0,08/28/2946 +8.12055,50.01247,4605,8,11,11,2,41,3.55,5.0,fr,46317,92,1946400,1,3,Active Shallow Crust,0.0,89.98704,0.0,08/11/4605 +8.12055,50.01247,6454,10,8,22,2,51,3.55,5.0,fr,46318,129,1946400,1,3,Active Shallow Crust,0.0,89.98704,0.0,10/08/6454 +8.12055,50.01247,9868,10,1,20,1,42,3.55,15.0,fr,46319,197,1946401,1,1,Active Shallow Crust,0.0,89.98704,0.0,10/01/9868 +8.12055,50.01247,7003,8,22,8,50,5,3.55,5.0,fr,46320,140,1946409,1,1,Active Shallow Crust,128.8975,89.99352,0.0,08/22/7003 +8.12055,50.01247,2740,12,2,4,3,3,3.65,5.0,fr,46321,54,1946412,1,3,Active Shallow Crust,0.0,89.98845,0.0,12/02/2740 +8.12055,50.01247,9580,12,21,12,44,58,3.65,5.0,fr,46322,191,1946412,1,3,Active Shallow Crust,0.0,89.98845,0.0,12/21/9580 +8.12055,50.01247,6523,6,17,17,11,32,3.65,5.0,fr,46323,130,1946412,1,3,Active Shallow Crust,0.0,89.98845,0.0,06/17/6523 +8.12055,50.01247,4898,6,28,14,6,3,3.65,15.0,fr,46324,97,1946413,1,1,Active Shallow Crust,0.0,89.98845,0.0,06/28/4898 +8.12055,50.01247,752,11,20,4,26,6,3.65,27.5,fr,46325,15,1946414,1,1,Active Shallow Crust,0.0,89.98845,0.0,11/20/0752 +8.12055,50.01247,9599,3,19,15,44,20,3.65,15.0,fr,46326,191,1946422,1,1,Active Shallow Crust,128.9002,89.96359,0.0,03/19/9599 +8.12055,50.01247,7510,2,10,8,34,57,3.75,5.0,fr,46327,150,1946424,1,2,Active Shallow Crust,0.0,89.98971,0.0,02/10/7510 +8.12055,50.01247,3739,5,30,0,46,59,3.75,5.0,fr,46328,74,1946424,1,2,Active Shallow Crust,0.0,89.98971,0.0,05/30/3739 +8.12055,50.01247,6062,9,21,6,9,0,3.75,5.0,fr,46329,121,1946427,1,2,Active Shallow Crust,240.0085,58.01816,0.0,09/21/6062 +8.12055,50.01247,968,4,8,18,0,58,3.75,5.0,fr,46330,19,1946427,1,2,Active Shallow Crust,240.0085,58.01816,0.0,04/08/0968 +8.12055,50.01247,6487,5,25,9,30,4,3.75,15.0,fr,46331,129,1946428,1,1,Active Shallow Crust,240.0085,58.01816,0.0,05/25/6487 +8.12055,50.01247,1900,6,21,3,44,48,3.85,5.0,fr,46332,37,1946442,1,1,Active Shallow Crust,0.0,89.99072,-90.0,06/21/1900 +8.12055,50.01247,4003,11,9,19,55,24,3.95,5.0,fr,46333,80,1946448,1,1,Active Shallow Crust,0.0,89.99182,0.0,11/09/4003 +8.12055,50.01247,5774,6,10,11,8,28,3.95,5.0,fr,46334,115,1946454,1,1,Active Shallow Crust,0.0,89.99173,-90.0,06/10/5774 +8.12055,50.01247,2334,4,20,15,24,8,4.05,5.0,fr,46335,46,1946460,1,1,Active Shallow Crust,0.0,89.99271,0.0,04/20/2334 +8.12055,50.01247,7451,4,28,17,28,31,4.25,5.0,fr,46336,149,1946484,1,1,Active Shallow Crust,0.0,89.98842,0.0,04/28/7451 +8.12055,50.01247,2137,8,5,2,33,32,4.45,27.5,fr,46337,42,1946510,1,1,Active Shallow Crust,0.0,89.9908,0.0,08/05/2137 +8.12055,50.01247,3072,5,29,2,51,34,4.65,27.5,fr,46338,61,1946534,1,1,Active Shallow Crust,0.0,89.98904,0.0,05/29/3072 +8.12055,50.01247,7191,11,27,12,51,51,4.75,5.0,fr,46339,143,1946544,1,1,Active Shallow Crust,0.0,89.99023,0.0,11/27/7191 +8.12055,50.01247,1249,5,9,6,55,48,5.15,5.0,fr,46340,24,1946592,1,1,Active Shallow Crust,0.0,89.98972,0.0,05/09/1249 +8.12055,50.01247,9293,9,11,12,3,2,5.65,5.0,fr,46341,185,1946661,1,1,Active Shallow Crust,128.872,89.99041,0.0,09/11/9293 +3.84664,49.84021,9020,4,25,7,38,14,3.55,15.0,fr,46342,180,1946884,1,1,Active Shallow Crust,240.0121,57.99846,0.0,04/25/9020 +3.84664,49.84021,7988,7,18,23,26,21,3.55,5.0,fr,46343,159,1946886,1,1,Active Shallow Crust,0.0,89.99014,-90.0,07/18/7988 +3.84664,49.84021,1965,5,21,8,39,9,3.55,5.0,fr,46344,39,1946889,1,1,Active Shallow Crust,128.8963,89.9935,0.0,05/21/1965 +3.84664,49.84021,3724,9,30,1,33,15,3.65,5.0,fr,46345,74,1946892,1,1,Active Shallow Crust,0.0,89.9913,0.0,09/30/3724 +3.84664,49.84021,1973,12,24,7,43,15,3.75,5.0,fr,46346,39,1946907,1,1,Active Shallow Crust,240.0089,58.01757,0.0,12/24/1973 +3.84664,49.84021,2311,8,1,11,20,3,3.85,5.0,fr,46347,46,1946916,1,1,Active Shallow Crust,0.0,89.99079,0.0,08/01/2311 +3.84664,49.84021,5824,8,16,21,0,21,4.15,27.5,fr,46348,116,1946954,1,1,Active Shallow Crust,0.0,89.99022,0.0,08/16/5824 +2.55485,47.3855,8217,10,20,19,20,30,3.65,5.0,fr,46349,164,1947372,1,1,Active Shallow Crust,0.0,89.99088,0.0,10/20/8217 +2.55485,47.3855,9212,10,24,14,34,3,3.65,15.0,fr,46350,184,1947373,1,1,Active Shallow Crust,0.0,89.99088,0.0,10/24/9212 +2.55485,47.3855,9722,3,10,19,32,24,4.15,5.0,fr,46351,194,1947432,1,1,Active Shallow Crust,0.0,89.98973,0.0,03/10/9722 +2.55485,47.3855,621,9,28,19,59,14,4.15,15.0,fr,46352,12,1947433,1,1,Active Shallow Crust,0.0,89.98973,0.0,09/28/0621 +5.94403,51.7233,9656,8,18,1,7,42,3.55,5.0,fr,46353,193,1947840,1,1,Active Shallow Crust,0.0,89.9875,0.0,08/18/9656 +5.94403,51.7233,1894,3,1,13,39,34,3.65,15.0,fr,46354,37,1947853,1,1,Active Shallow Crust,0.0,89.98887,0.0,03/01/1894 +5.94403,51.7233,5010,10,28,4,33,45,3.65,5.0,fr,46355,100,1947855,1,1,Active Shallow Crust,240.0017,58.0137,0.0,10/28/5010 +5.94403,51.7233,9695,1,31,1,31,25,3.65,5.0,fr,46356,193,1947861,1,1,Active Shallow Crust,128.8989,89.96362,0.0,01/31/9695 +5.94403,51.7233,8283,5,6,20,54,19,3.95,15.0,fr,46357,165,1947889,1,1,Active Shallow Crust,0.0,89.98817,0.0,05/06/8283 +5.94403,51.7233,6466,4,22,22,49,20,4.05,5.0,fr,46358,129,1947900,1,1,Active Shallow Crust,0.0,89.98946,0.0,04/22/6466 +3.19351,47.47657,422,8,1,1,23,13,3.65,15.0,fr,46359,8,1948336,1,1,Active Shallow Crust,240.0016,58.01266,0.0,08/01/0422 +3.19351,47.47657,7334,6,3,8,26,1,4.15,5.0,fr,46360,146,1948392,1,1,Active Shallow Crust,0.0,89.98975,0.0,06/03/7334 +3.19351,47.47657,6540,10,26,15,45,53,4.25,15.0,fr,46361,130,1948405,1,1,Active Shallow Crust,0.0,89.98934,0.0,10/26/6540 +3.19351,47.47657,2827,5,13,0,2,56,4.75,5.0,fr,46362,56,1948464,1,1,Active Shallow Crust,0.0,89.98972,0.0,05/13/2827 +3.19351,47.47657,8036,9,12,15,31,28,5.15,5.0,fr,46363,160,1948512,1,1,Active Shallow Crust,0.0,89.98974,0.0,09/12/8036 +6.77205,47.45535,6822,6,24,15,41,8,3.55,5.0,fr,46364,136,1948800,1,2,Active Shallow Crust,0.0,89.99318,0.0,06/24/6822 +6.77205,47.45535,2265,11,14,8,58,40,3.55,5.0,fr,46365,45,1948800,1,2,Active Shallow Crust,0.0,89.99318,0.0,11/14/2265 +6.77205,47.45535,1617,11,25,3,48,26,3.65,5.0,fr,46366,32,1948812,1,5,Active Shallow Crust,0.0,89.98785,0.0,11/25/1617 +6.77205,47.45535,1293,11,28,18,52,47,3.65,5.0,fr,46367,25,1948812,1,5,Active Shallow Crust,0.0,89.98785,0.0,11/28/1293 +6.77205,47.45535,378,11,24,18,56,39,3.65,5.0,fr,46368,7,1948812,1,5,Active Shallow Crust,0.0,89.98785,0.0,11/24/0378 +6.77205,47.45535,1755,3,17,10,4,53,3.65,5.0,fr,46369,35,1948812,1,5,Active Shallow Crust,0.0,89.98785,0.0,03/17/1755 +6.77205,47.45535,1765,6,16,6,55,0,3.65,5.0,fr,46370,35,1948812,1,5,Active Shallow Crust,0.0,89.98785,0.0,06/16/1765 +6.77205,47.45535,7996,12,27,1,36,38,3.65,5.0,fr,46371,159,1948815,1,1,Active Shallow Crust,240.001,58.01328,0.0,12/27/7996 +6.77205,47.45535,5909,11,13,18,4,38,3.65,5.0,fr,46372,118,1948821,1,1,Active Shallow Crust,128.9003,89.96354,0.0,11/13/5909 +6.77205,47.45535,4745,12,4,16,25,23,3.75,5.0,fr,46373,94,1948824,1,2,Active Shallow Crust,0.0,89.98917,0.0,12/04/4745 +6.77205,47.45535,8895,4,15,20,42,5,3.75,5.0,fr,46374,177,1948824,1,2,Active Shallow Crust,0.0,89.98917,0.0,04/15/8895 +6.77205,47.45535,1704,5,28,20,54,19,3.75,5.0,fr,46375,34,1948827,1,1,Active Shallow Crust,240.0088,58.01746,0.0,05/28/1704 +6.77205,47.45535,7656,6,9,8,50,54,3.75,5.0,fr,46376,153,1948833,1,1,Active Shallow Crust,128.8961,89.96751,0.0,06/09/7656 +6.77205,47.45535,8489,9,17,14,23,30,3.85,15.0,fr,46377,169,1948837,1,1,Active Shallow Crust,0.0,89.99035,0.0,09/17/8489 +6.77205,47.45535,2995,3,28,9,45,27,3.85,27.5,fr,46378,59,1948838,1,1,Active Shallow Crust,0.0,89.99035,0.0,03/28/2995 +6.77205,47.45535,6751,1,30,2,20,18,3.95,5.0,fr,46379,135,1948848,1,1,Active Shallow Crust,0.0,89.99139,0.0,01/30/6751 +6.77205,47.45535,7794,2,11,11,19,32,3.95,5.0,fr,46380,155,1948857,1,1,Active Shallow Crust,128.9008,89.99355,0.0,02/11/7794 +6.77205,47.45535,3247,8,20,15,8,26,4.05,5.0,fr,46381,64,1948860,1,1,Active Shallow Crust,0.0,89.98849,0.0,08/20/3247 +6.77205,47.45535,1286,4,26,5,14,34,4.15,27.5,fr,46382,25,1948874,1,1,Active Shallow Crust,0.0,89.98975,0.0,04/26/1286 +6.77205,47.45535,2516,7,7,14,49,0,4.35,5.0,fr,46383,50,1948899,1,1,Active Shallow Crust,240.0087,57.99569,0.0,07/07/2516 +6.77205,47.45535,8517,2,7,8,2,9,4.35,5.0,fr,46384,170,1948905,1,1,Active Shallow Crust,128.8972,89.98305,0.0,02/07/8517 +6.77205,47.45535,5641,12,23,2,26,59,4.35,15.0,fr,46385,112,1948906,1,1,Active Shallow Crust,128.8972,89.98305,0.0,12/23/5641 +6.77205,47.45535,6355,11,26,22,3,12,4.75,5.0,fr,46386,127,1948944,1,2,Active Shallow Crust,0.0,89.98972,0.0,11/26/6355 +6.77205,47.45535,2975,10,4,17,17,2,4.75,5.0,fr,46387,59,1948944,1,2,Active Shallow Crust,0.0,89.98972,0.0,10/04/2975 +3.82537,51.06793,384,8,8,5,44,41,3.75,5.0,fr,46388,7,1949304,1,1,Active Shallow Crust,0.0,89.98993,0.0,08/08/0384 +3.82537,51.06793,6878,10,19,6,30,30,3.75,5.0,fr,46389,137,1949313,1,1,Active Shallow Crust,128.896,89.96735,0.0,10/19/6878 +3.82537,51.06793,9406,12,14,23,48,5,3.85,27.5,fr,46390,188,1949321,1,1,Active Shallow Crust,240.0112,57.99829,0.0,12/14/9406 +3.82537,51.06793,5149,12,25,17,59,29,3.85,5.0,fr,46391,102,1949322,1,1,Active Shallow Crust,0.0,89.99092,-90.0,12/25/5149 +3.82537,51.06793,2312,9,22,14,43,29,4.15,5.0,fr,46392,46,1949358,1,1,Active Shallow Crust,0.0,89.99036,-90.0,09/22/2312 +3.82537,51.06793,7318,7,23,0,25,16,4.25,5.0,fr,46393,146,1949364,1,1,Active Shallow Crust,0.0,89.99009,0.0,07/23/7318 +3.61219,45.86698,4834,10,25,23,20,26,3.55,5.0,fr,46394,96,1950240,1,3,Active Shallow Crust,0.0,89.98946,0.0,10/25/4834 +3.61219,45.86698,1000,11,4,22,39,16,3.55,5.0,fr,46395,19,1950240,1,3,Active Shallow Crust,0.0,89.98946,0.0,11/04/1000 +3.61219,45.86698,1848,1,21,23,20,14,3.55,5.0,fr,46396,36,1950240,1,3,Active Shallow Crust,0.0,89.98946,0.0,01/21/1848 +3.61219,45.86698,2265,2,17,18,41,35,3.55,5.0,fr,46397,45,1950243,1,1,Active Shallow Crust,240.0117,57.99823,0.0,02/17/2265 +3.61219,45.86698,5151,9,26,22,54,42,3.65,5.0,fr,46398,103,1950252,1,1,Active Shallow Crust,0.0,89.99062,0.0,09/26/5151 +3.61219,45.86698,4947,10,24,22,57,22,3.65,15.0,fr,46399,98,1950253,1,1,Active Shallow Crust,0.0,89.99062,0.0,10/24/4947 +3.61219,45.86698,3190,7,18,13,41,54,3.75,5.0,fr,46400,63,1950264,1,3,Active Shallow Crust,0.0,89.98885,0.0,07/18/3190 +3.61219,45.86698,4517,11,21,3,34,7,3.75,5.0,fr,46401,90,1950264,1,3,Active Shallow Crust,0.0,89.98885,0.0,11/21/4517 +3.61219,45.86698,8309,3,31,10,25,3,3.75,5.0,fr,46402,166,1950264,1,3,Active Shallow Crust,0.0,89.98885,0.0,03/31/8309 +3.61219,45.86698,391,5,15,15,48,20,3.85,15.0,fr,46403,7,1950283,1,1,Active Shallow Crust,0.0,89.98994,-90.0,05/15/0391 +3.61219,45.86698,8717,1,5,14,43,21,4.05,5.0,fr,46404,174,1950303,1,1,Active Shallow Crust,240.006,58.00587,0.0,01/05/8717 +3.61219,45.86698,9423,10,15,4,31,55,4.05,5.0,fr,46405,188,1950309,1,1,Active Shallow Crust,128.8911,89.99309,0.0,10/15/9423 +3.61219,45.86698,3801,3,31,23,58,10,4.45,15.0,fr,46406,76,1950349,1,1,Active Shallow Crust,0.0,89.99004,0.0,03/31/3801 +3.61219,45.86698,4275,11,26,4,48,25,4.45,5.0,fr,46407,85,1950351,1,1,Active Shallow Crust,240.0053,57.99451,0.0,11/26/4275 +3.61219,45.86698,5670,4,4,17,56,25,4.65,5.0,fr,46408,113,1950372,1,2,Active Shallow Crust,0.0,89.9901,0.0,04/04/5670 +3.61219,45.86698,6494,4,4,1,14,34,4.65,5.0,fr,46409,129,1950372,1,2,Active Shallow Crust,0.0,89.9901,0.0,04/04/6494 +3.61219,45.86698,9927,7,12,9,27,58,4.85,27.5,fr,46410,198,1950398,1,1,Active Shallow Crust,0.0,89.98978,0.0,07/12/9927 +3.61219,45.86698,272,5,18,20,57,37,5.85,5.0,fr,46411,5,1950525,1,1,Active Shallow Crust,128.8703,89.98942,0.0,05/18/0272 +-4.52928,47.92396,4039,9,29,11,8,10,3.75,15.0,fr,46412,80,1950745,1,1,Active Shallow Crust,0.0,89.98927,0.0,09/29/4039 +-4.52928,47.92396,4392,7,31,19,4,54,3.85,5.0,fr,46413,87,1950756,1,2,Active Shallow Crust,0.0,89.99043,0.0,07/31/4392 +-4.52928,47.92396,5003,2,19,11,6,30,3.85,5.0,fr,46414,100,1950756,1,2,Active Shallow Crust,0.0,89.99043,0.0,02/19/5003 +-4.52928,47.92396,4987,11,26,8,45,1,3.95,15.0,fr,46415,99,1950769,1,1,Active Shallow Crust,0.0,89.99147,0.0,11/26/4987 +-4.52928,47.92396,5823,11,18,4,21,23,3.95,27.5,fr,46416,116,1950770,1,1,Active Shallow Crust,0.0,89.99147,0.0,11/18/5823 +-4.52928,47.92396,2978,8,1,17,56,32,4.05,5.0,fr,46417,59,1950780,1,2,Active Shallow Crust,0.0,89.9886,0.0,08/01/2978 +-4.52928,47.92396,4869,11,4,6,20,22,4.05,5.0,fr,46418,97,1950780,1,2,Active Shallow Crust,0.0,89.9886,0.0,11/04/4869 +-4.52928,47.92396,9072,2,25,0,18,53,4.55,15.0,fr,46419,181,1950841,1,1,Active Shallow Crust,0.0,89.98931,0.0,02/25/9072 +-4.52928,47.92396,1396,7,15,21,16,31,4.95,5.0,fr,46420,27,1950888,1,1,Active Shallow Crust,0.0,89.99056,0.0,07/15/1396 +2.42039,43.71682,8154,5,30,7,10,37,3.75,5.0,fr,46421,163,1951224,1,2,Active Shallow Crust,0.0,89.99132,0.0,05/30/8154 +2.42039,43.71682,4444,10,6,2,49,55,3.75,5.0,fr,46422,88,1951224,1,2,Active Shallow Crust,0.0,89.99132,0.0,10/06/4444 +2.42039,43.71682,5727,6,24,19,57,54,3.95,15.0,fr,46423,114,1951258,1,1,Active Shallow Crust,128.9005,89.99426,0.0,06/24/5727 +2.42039,43.71682,6099,11,2,19,30,35,4.25,5.0,fr,46424,121,1951284,1,1,Active Shallow Crust,0.0,89.99023,0.0,11/02/6099 +2.42039,43.71682,1172,4,30,21,7,6,4.25,15.0,fr,46425,23,1951285,1,1,Active Shallow Crust,0.0,89.99023,0.0,04/30/1172 +2.42039,43.71682,4504,5,2,8,33,46,4.25,27.5,fr,46426,90,1951286,1,2,Active Shallow Crust,0.0,89.99023,0.0,05/02/4504 +2.42039,43.71682,7815,12,2,8,2,36,4.25,27.5,fr,46427,156,1951286,1,2,Active Shallow Crust,0.0,89.99023,0.0,12/02/7815 +5.92321,46.44708,2946,5,11,7,39,33,3.55,5.0,fr,46428,58,1951686,1,1,Active Shallow Crust,0.0,89.99297,-90.0,05/11/2946 +5.92321,46.44708,8893,7,8,11,46,1,3.65,5.0,fr,46429,177,1951695,1,1,Active Shallow Crust,240.0006,58.01295,0.0,07/08/8893 +5.92321,46.44708,7638,11,17,5,59,5,3.75,5.0,fr,46430,152,1951704,1,1,Active Shallow Crust,0.0,89.98896,0.0,11/17/7638 +5.92321,46.44708,4926,12,21,2,58,7,3.85,5.0,fr,46431,98,1951716,1,1,Active Shallow Crust,0.0,89.99017,0.0,12/21/4926 +5.92321,46.44708,2023,4,12,5,17,16,3.85,5.0,fr,46432,40,1951719,1,1,Active Shallow Crust,240.011,57.99726,0.0,04/12/2023 +5.92321,46.44708,3369,5,4,21,35,2,3.95,5.0,fr,46433,67,1951728,1,2,Active Shallow Crust,0.0,89.99123,0.0,05/04/3369 +5.92321,46.44708,7862,4,27,3,38,4,3.95,5.0,fr,46434,157,1951728,1,2,Active Shallow Crust,0.0,89.99123,0.0,04/27/7862 +5.92321,46.44708,6819,4,1,19,20,59,3.95,15.0,fr,46435,136,1951729,1,1,Active Shallow Crust,0.0,89.99123,0.0,04/01/6819 +5.92321,46.44708,2739,8,28,6,3,1,3.95,5.0,fr,46436,54,1951731,1,1,Active Shallow Crust,240.0191,58.00551,0.0,08/28/2739 +5.92321,46.44708,8386,11,10,1,27,12,4.05,5.0,fr,46437,167,1951740,1,1,Active Shallow Crust,0.0,89.98828,0.0,11/10/8386 +5.92321,46.44708,9425,5,7,15,35,42,4.25,5.0,fr,46438,188,1951770,1,1,Active Shallow Crust,0.0,89.99058,-90.0,05/07/9425 +5.92321,46.44708,9129,9,16,1,43,2,4.35,15.0,fr,46439,182,1951777,1,1,Active Shallow Crust,0.0,89.98894,0.0,09/16/9129 +5.92321,46.44708,8942,5,17,10,55,56,4.75,15.0,fr,46440,178,1951825,1,1,Active Shallow Crust,0.0,89.98952,0.0,05/17/8942 +5.84916,51.5898,4860,8,6,13,48,59,3.55,5.0,fr,46441,97,1952160,1,1,Active Shallow Crust,0.0,89.98747,0.0,08/06/4860 +5.84916,51.5898,653,3,28,19,26,11,3.55,5.0,fr,46442,13,1952163,1,2,Active Shallow Crust,240.0131,57.9986,0.0,03/28/0653 +5.84916,51.5898,8750,12,1,14,8,24,3.55,5.0,fr,46443,174,1952163,1,2,Active Shallow Crust,240.0131,57.9986,0.0,12/01/8750 +5.84916,51.5898,7733,7,11,2,49,36,3.65,5.0,fr,46444,154,1952175,1,1,Active Shallow Crust,240.0023,58.01247,0.0,07/11/7733 +5.84916,51.5898,96,1,13,11,8,47,3.75,5.0,fr,46445,1,1952184,1,1,Active Shallow Crust,0.0,89.99004,0.0,01/13/0096 +5.84916,51.5898,571,12,13,17,27,13,3.75,5.0,fr,46446,11,1952187,1,1,Active Shallow Crust,240.0088,58.01767,0.0,12/13/0571 +5.84916,51.5898,4075,5,9,7,45,8,3.85,15.0,fr,46447,81,1952197,1,1,Active Shallow Crust,0.0,89.99113,0.0,05/09/4075 +5.84916,51.5898,5235,2,3,16,18,27,3.85,5.0,fr,46448,104,1952199,1,1,Active Shallow Crust,240.0111,57.99826,0.0,02/03/5235 +-2.25574,50.2792,9183,8,28,16,56,30,3.55,27.5,fr,46449,183,1952642,1,1,Active Shallow Crust,0.0,89.99033,0.0,08/28/9183 +1.74447,45.6119,5464,12,2,4,37,55,3.55,5.0,fr,46450,109,1953120,1,2,Active Shallow Crust,0.0,89.98942,0.0,12/02/5464 +1.74447,45.6119,3167,6,23,23,5,1,3.55,5.0,fr,46451,63,1953120,1,2,Active Shallow Crust,0.0,89.98942,0.0,06/23/3167 +1.74447,45.6119,1674,5,1,9,51,39,3.65,5.0,fr,46452,33,1953132,1,1,Active Shallow Crust,0.0,89.99057,0.0,05/01/1674 +1.74447,45.6119,8799,3,7,19,48,16,3.65,5.0,fr,46453,175,1953135,1,1,Active Shallow Crust,240.001,58.01291,0.0,03/07/8799 +1.74447,45.6119,3721,1,25,23,39,13,3.75,5.0,fr,46454,74,1953144,1,1,Active Shallow Crust,0.0,89.9902,0.0,01/25/3721 +1.74447,45.6119,2357,10,20,16,21,5,3.75,5.0,fr,46455,47,1953147,1,1,Active Shallow Crust,240.0081,58.01759,0.0,10/20/2357 +1.74447,45.6119,5011,10,10,4,48,50,4.45,5.0,fr,46456,100,1953228,1,1,Active Shallow Crust,0.0,89.98999,0.0,10/10/5011 +4.57562,40.81778,4363,10,2,21,59,0,3.55,5.0,fr,46457,87,1953609,1,1,Active Shallow Crust,128.8954,89.99619,0.0,10/02/4363 +4.57562,40.81778,1961,11,4,6,34,52,4.15,5.0,fr,46458,39,1953672,1,1,Active Shallow Crust,0.0,89.98853,0.0,11/04/1961 +4.57562,40.81778,8051,10,25,2,58,8,4.35,5.0,fr,46459,161,1953696,1,1,Active Shallow Crust,0.0,89.99088,0.0,10/25/8051 +4.57562,40.81778,7685,12,16,13,30,23,4.75,5.0,fr,46460,153,1953744,1,1,Active Shallow Crust,0.0,89.99042,0.0,12/16/7685 +4.89564,41.40353,4731,8,31,18,48,23,3.55,5.0,fr,46461,94,1954080,1,1,Active Shallow Crust,0.0,89.99244,0.0,08/31/4731 +4.89564,41.40353,9148,11,8,7,25,46,3.55,27.5,fr,46462,182,1954082,1,1,Active Shallow Crust,0.0,89.99244,0.0,11/08/9148 +4.89564,41.40353,9383,5,12,17,44,11,3.65,5.0,fr,46463,187,1954101,1,1,Active Shallow Crust,128.9007,89.96342,0.0,05/12/9383 +4.89564,41.40353,4196,9,5,9,23,47,3.75,5.0,fr,46464,83,1954104,1,1,Active Shallow Crust,0.0,89.98798,0.0,09/05/4196 +4.89564,41.40353,5338,11,24,5,4,53,3.85,5.0,fr,46465,106,1954116,1,1,Active Shallow Crust,0.0,89.98929,0.0,11/24/5338 +4.89564,41.40353,7602,7,23,20,20,44,3.95,5.0,fr,46466,152,1954128,1,1,Active Shallow Crust,0.0,89.99046,0.0,07/23/7602 +4.89564,41.40353,4488,1,20,1,52,45,4.35,5.0,fr,46467,89,1954176,1,1,Active Shallow Crust,0.0,89.99097,0.0,01/20/4488 +2.66285,45.2001,8980,11,3,12,43,10,3.55,27.5,fr,46468,179,1954565,1,1,Active Shallow Crust,240.0128,57.99741,0.0,11/03/8980 +2.66285,45.2001,1133,1,1,17,58,54,3.75,15.0,fr,46469,22,1954585,1,1,Active Shallow Crust,0.0,89.98871,0.0,01/01/1133 +2.66285,45.2001,9672,7,14,10,21,41,3.95,5.0,fr,46470,193,1954608,1,2,Active Shallow Crust,0.0,89.99104,0.0,07/14/9672 +2.66285,45.2001,213,11,30,16,23,35,3.95,5.0,fr,46471,4,1954608,1,2,Active Shallow Crust,0.0,89.99104,0.0,11/30/0213 +2.66285,45.2001,1278,7,19,1,56,25,4.05,15.0,fr,46472,25,1954621,1,2,Active Shallow Crust,0.0,89.99001,0.0,07/19/1278 +2.66285,45.2001,922,9,24,15,34,22,4.05,15.0,fr,46473,18,1954621,1,2,Active Shallow Crust,0.0,89.99001,0.0,09/24/0922 +2.66285,45.2001,3968,2,25,1,4,38,4.15,15.0,fr,46474,79,1954633,1,1,Active Shallow Crust,0.0,89.98932,0.0,02/25/3968 +2.66285,45.2001,3044,7,16,21,48,32,4.15,27.5,fr,46475,60,1954634,1,1,Active Shallow Crust,0.0,89.98932,0.0,07/16/3044 +2.66285,45.2001,4086,2,9,15,14,35,5.75,5.0,fr,46476,81,1954830,1,1,Active Shallow Crust,0.0,89.99001,-90.0,02/09/4086 +-0.41996,51.57084,8478,10,5,1,38,57,3.55,27.5,fr,46477,169,1955042,1,1,Active Shallow Crust,0.0,89.98981,0.0,10/05/8478 +-0.41996,51.57084,314,12,4,2,37,53,3.75,15.0,fr,46478,6,1955065,1,1,Active Shallow Crust,0.0,89.99004,0.0,12/04/0314 +-0.41996,51.57084,4463,10,6,19,5,31,4.05,5.0,fr,46479,89,1955100,1,1,Active Shallow Crust,0.0,89.99009,0.0,10/06/4463 +2.4622,49.6095,4870,2,12,2,18,25,3.65,5.0,fr,46480,97,1955538,1,1,Active Shallow Crust,0.0,89.99117,-90.0,02/12/4870 +2.4622,49.6095,8822,5,14,16,16,45,4.15,5.0,fr,46481,176,1955595,1,1,Active Shallow Crust,240.0092,57.99746,0.0,05/14/8822 +2.4622,49.6095,4537,9,23,18,57,51,5.05,27.5,fr,46482,90,1955705,1,1,Active Shallow Crust,240.024,57.99781,0.0,09/23/4537 +1.57909,51.26388,2817,9,14,8,1,36,3.55,5.0,fr,46483,56,1956000,1,2,Active Shallow Crust,0.0,89.99053,0.0,09/14/2817 +1.57909,51.26388,4619,10,6,21,50,43,3.55,5.0,fr,46484,92,1956000,1,2,Active Shallow Crust,0.0,89.99053,0.0,10/06/4619 +1.57909,51.26388,2829,1,5,2,28,59,3.65,5.0,fr,46485,56,1956012,1,1,Active Shallow Crust,0.0,89.99016,0.0,01/05/2829 +1.57909,51.26388,9904,11,29,12,24,23,3.75,5.0,fr,46486,198,1956027,1,1,Active Shallow Crust,240.009,58.01781,0.0,11/29/9904 +1.57909,51.26388,6135,7,2,1,47,22,3.95,5.0,fr,46487,122,1956048,1,1,Active Shallow Crust,0.0,89.99004,0.0,07/02/6135 +1.57909,51.26388,763,10,3,11,34,29,3.95,15.0,fr,46488,15,1956049,1,1,Active Shallow Crust,0.0,89.99004,0.0,10/03/0763 +1.57909,51.26388,1585,10,9,14,36,55,4.65,15.0,fr,46489,31,1956133,1,1,Active Shallow Crust,0.0,89.99022,0.0,10/09/1585 +1.57909,51.26388,6919,12,7,11,44,27,4.65,5.0,fr,46490,138,1956141,1,1,Active Shallow Crust,128.8896,89.98704,0.0,12/07/6919 +1.44111,42.89367,4657,3,26,8,19,25,3.55,5.0,fr,46491,93,1956480,1,4,Active Shallow Crust,0.0,89.99077,0.0,03/26/4657 +1.44111,42.89367,6898,10,12,11,14,54,3.55,5.0,fr,46492,137,1956480,1,4,Active Shallow Crust,0.0,89.99077,0.0,10/12/6898 +1.44111,42.89367,2994,10,18,21,47,34,3.55,5.0,fr,46493,59,1956480,1,4,Active Shallow Crust,0.0,89.99077,0.0,10/18/2994 +1.44111,42.89367,1757,1,28,17,9,59,3.55,5.0,fr,46494,35,1956480,1,4,Active Shallow Crust,0.0,89.99077,0.0,01/28/1757 +1.44111,42.89367,3903,2,13,8,31,21,3.55,5.0,fr,46495,78,1956489,1,1,Active Shallow Crust,128.8967,89.99354,0.0,02/13/3903 +1.44111,42.89367,7190,6,1,13,52,26,3.65,5.0,fr,46496,143,1956492,1,1,Active Shallow Crust,0.0,89.99012,0.0,06/01/7190 +1.44111,42.89367,2078,10,1,5,7,1,3.65,15.0,fr,46497,41,1956493,1,1,Active Shallow Crust,0.0,89.99012,0.0,10/01/2078 +1.44111,42.89367,527,2,1,15,32,33,3.75,5.0,fr,46498,10,1956504,1,1,Active Shallow Crust,0.0,89.98973,0.0,02/01/0527 +1.44111,42.89367,2834,2,22,1,0,10,3.75,5.0,fr,46499,56,1956507,1,1,Active Shallow Crust,240.0078,58.01745,0.0,02/22/2834 +1.44111,42.89367,4672,4,21,11,47,22,3.85,5.0,fr,46500,93,1956516,1,1,Active Shallow Crust,0.0,89.98954,0.0,04/21/4672 +1.44111,42.89367,8206,3,7,22,25,3,3.85,5.0,fr,46501,164,1956519,1,1,Active Shallow Crust,240.0106,57.99771,0.0,03/07/8206 +1.44111,42.89367,3855,8,28,14,41,8,3.95,5.0,fr,46502,77,1956528,1,1,Active Shallow Crust,0.0,89.98951,0.0,08/28/3855 +1.44111,42.89367,3354,8,21,10,47,25,4.05,15.0,fr,46503,67,1956547,1,1,Active Shallow Crust,0.0,89.98949,-90.0,08/21/3354 +1.44111,42.89367,5054,6,9,15,4,27,4.35,5.0,fr,46504,101,1956579,1,1,Active Shallow Crust,240.0076,57.9957,0.0,06/09/5054 +1.44111,42.89367,8462,4,1,9,59,56,4.45,5.0,fr,46505,169,1956594,1,1,Active Shallow Crust,0.0,89.99006,-90.0,04/01/8462 +1.44111,42.89367,4612,7,15,14,53,32,4.65,5.0,fr,46506,92,1956615,1,1,Active Shallow Crust,240.0097,57.99414,0.0,07/15/4612 +1.44111,42.89367,1217,9,25,17,1,49,4.85,15.0,fr,46507,24,1956637,1,1,Active Shallow Crust,0.0,89.99007,0.0,09/25/1217 +5.01385,52.20524,1893,2,12,6,17,20,3.65,5.0,fr,46508,37,1956972,1,1,Active Shallow Crust,0.0,89.98898,0.0,02/12/1893 +5.01385,52.20524,1449,6,4,12,32,49,3.75,5.0,fr,46509,28,1956984,1,1,Active Shallow Crust,0.0,89.99018,0.0,06/04/1449 +5.01385,52.20524,3707,7,10,5,9,26,3.75,5.0,fr,46510,74,1956990,1,1,Active Shallow Crust,0.0,89.99007,-90.0,07/10/3707 +5.01385,52.20524,1574,1,23,6,5,29,3.85,5.0,fr,46511,31,1956996,1,1,Active Shallow Crust,0.0,89.99125,0.0,01/23/1574 +6.12516,51.38138,4252,6,18,21,48,1,3.55,27.5,fr,46512,85,1957442,1,1,Active Shallow Crust,0.0,89.98741,0.0,06/18/4252 +6.12516,51.38138,8255,8,31,3,38,26,3.85,5.0,fr,46513,165,1957476,1,2,Active Shallow Crust,0.0,89.99109,0.0,08/31/8255 +6.12516,51.38138,7634,7,19,11,38,20,3.85,5.0,fr,46514,152,1957476,1,2,Active Shallow Crust,0.0,89.99109,0.0,07/19/7634 +6.12516,51.38138,9059,2,20,16,12,14,3.85,5.0,fr,46515,181,1957479,1,1,Active Shallow Crust,240.0111,57.99806,0.0,02/20/9059 +6.12516,51.38138,3423,2,5,3,40,6,3.95,5.0,fr,46516,68,1957488,1,2,Active Shallow Crust,0.0,89.98808,0.0,02/05/3423 +6.12516,51.38138,7731,4,28,0,42,17,3.95,5.0,fr,46517,154,1957488,1,2,Active Shallow Crust,0.0,89.98808,0.0,04/28/7731 +6.12516,51.38138,4272,5,2,5,56,56,4.15,5.0,fr,46518,85,1957512,1,1,Active Shallow Crust,0.0,89.99054,0.0,05/02/4272 +6.12516,51.38138,4860,5,7,4,11,1,4.15,5.0,fr,46519,97,1957518,1,1,Active Shallow Crust,0.0,89.99043,-90.0,05/07/4860 +6.12516,51.38138,7857,11,6,3,52,31,4.75,5.0,fr,46520,157,1957587,1,1,Active Shallow Crust,240.0094,58.00483,0.0,11/06/7857 +6.12516,51.38138,8282,2,16,7,24,28,5.85,15.0,fr,46521,165,1957717,1,1,Active Shallow Crust,0.0,89.99019,0.0,02/16/8282 +-6.5295,46.72423,323,7,15,17,1,23,3.75,5.0,fr,46522,6,1957944,1,1,Active Shallow Crust,0.0,89.98902,0.0,07/15/0323 +-6.5295,46.72423,6313,8,9,6,53,4,4.45,15.0,fr,46523,126,1958032,1,1,Active Shallow Crust,240.0056,57.99468,0.0,08/09/6313 +7.28948,47.00141,3663,2,7,5,2,17,3.55,5.0,fr,46524,73,1958400,1,3,Active Shallow Crust,0.0,89.99313,0.0,02/07/3663 +7.28948,47.00141,5881,4,10,11,48,18,3.55,5.0,fr,46525,117,1958400,1,3,Active Shallow Crust,0.0,89.99313,0.0,04/10/5881 +7.28948,47.00141,5893,12,26,4,4,49,3.55,5.0,fr,46526,117,1958400,1,3,Active Shallow Crust,0.0,89.99313,0.0,12/26/5893 +7.28948,47.00141,3317,11,30,23,42,23,3.55,15.0,fr,46527,66,1958401,1,2,Active Shallow Crust,0.0,89.99313,0.0,11/30/3317 +7.28948,47.00141,1603,11,2,0,18,48,3.55,15.0,fr,46528,32,1958401,1,2,Active Shallow Crust,0.0,89.99313,0.0,11/02/1603 +7.28948,47.00141,8604,3,3,14,41,16,3.55,27.5,fr,46529,172,1958402,1,2,Active Shallow Crust,0.0,89.99313,0.0,03/03/8604 +7.28948,47.00141,9007,4,19,13,1,3,3.55,27.5,fr,46530,180,1958402,1,2,Active Shallow Crust,0.0,89.99313,0.0,04/19/9007 +7.28948,47.00141,3530,5,24,11,50,36,3.55,5.0,fr,46531,70,1958403,1,1,Active Shallow Crust,240.0122,57.99817,0.0,05/24/3530 +7.28948,47.00141,9485,6,24,7,20,40,3.55,15.0,fr,46532,189,1958404,1,2,Active Shallow Crust,240.0122,57.99817,0.0,06/24/9485 +7.28948,47.00141,4550,2,3,11,12,57,3.55,15.0,fr,46533,90,1958404,1,2,Active Shallow Crust,240.0122,57.99817,0.0,02/03/4550 +7.28948,47.00141,2991,10,8,15,40,17,3.55,5.0,fr,46534,59,1958406,1,1,Active Shallow Crust,0.0,89.99304,-90.0,10/08/2991 +7.28948,47.00141,5833,6,5,10,59,39,3.65,5.0,fr,46535,116,1958412,1,1,Active Shallow Crust,0.0,89.98774,0.0,06/05/5833 +7.28948,47.00141,788,9,27,4,21,26,3.65,15.0,fr,46536,15,1958413,1,1,Active Shallow Crust,0.0,89.98774,0.0,09/27/0788 +7.28948,47.00141,7508,12,29,13,16,40,3.65,5.0,fr,46537,150,1958415,1,1,Active Shallow Crust,240.0014,58.01249,0.0,12/29/7508 +7.28948,47.00141,5020,12,20,11,25,39,3.75,5.0,fr,46538,100,1958424,1,2,Active Shallow Crust,0.0,89.98907,0.0,12/20/5020 +7.28948,47.00141,1596,11,12,1,57,33,3.75,5.0,fr,46539,31,1958424,1,2,Active Shallow Crust,0.0,89.98907,0.0,11/12/1596 +7.28948,47.00141,4176,8,11,19,35,42,3.75,27.5,fr,46540,83,1958426,1,1,Active Shallow Crust,0.0,89.98907,0.0,08/11/4176 +7.28948,47.00141,6198,1,4,1,44,1,3.75,15.0,fr,46541,123,1958428,1,1,Active Shallow Crust,240.0077,58.01768,0.0,01/04/6198 +7.28948,47.00141,4578,9,4,17,54,16,3.75,5.0,fr,46542,91,1958433,1,1,Active Shallow Crust,128.8971,89.96693,0.0,09/04/4578 +7.28948,47.00141,7594,12,31,11,3,33,3.75,15.0,fr,46543,151,1958434,1,1,Active Shallow Crust,128.8971,89.96693,0.0,12/31/7594 +7.28948,47.00141,7002,11,1,4,31,3,3.85,5.0,fr,46544,140,1958436,1,2,Active Shallow Crust,0.0,89.99026,0.0,11/01/7002 +7.28948,47.00141,2403,10,27,11,34,4,3.85,5.0,fr,46545,48,1958436,1,2,Active Shallow Crust,0.0,89.99026,0.0,10/27/2403 +7.28948,47.00141,3987,11,7,0,34,11,3.85,27.5,fr,46546,79,1958438,1,1,Active Shallow Crust,0.0,89.99026,0.0,11/07/3987 +7.28948,47.00141,4921,2,27,9,12,44,3.95,5.0,fr,46547,98,1958448,1,4,Active Shallow Crust,0.0,89.99132,0.0,02/27/4921 +7.28948,47.00141,5868,12,26,20,42,49,3.95,5.0,fr,46548,117,1958448,1,4,Active Shallow Crust,0.0,89.99132,0.0,12/26/5868 +7.28948,47.00141,9812,11,26,16,51,17,3.95,5.0,fr,46549,196,1958448,1,4,Active Shallow Crust,0.0,89.99132,0.0,11/26/9812 +7.28948,47.00141,3167,1,20,2,44,36,3.95,5.0,fr,46550,63,1958448,1,4,Active Shallow Crust,0.0,89.99132,0.0,01/20/3167 +7.28948,47.00141,5960,6,2,12,23,45,3.95,15.0,fr,46551,119,1958449,1,1,Active Shallow Crust,0.0,89.99132,0.0,06/02/5960 +7.28948,47.00141,836,1,1,6,16,31,3.95,5.0,fr,46552,16,1958457,1,1,Active Shallow Crust,128.8998,89.99349,0.0,01/01/0836 +7.28948,47.00141,6351,6,19,7,12,51,4.05,15.0,fr,46553,127,1958461,1,2,Active Shallow Crust,0.0,89.9884,0.0,06/19/6351 +7.28948,47.00141,521,2,17,10,2,16,4.05,15.0,fr,46554,10,1958461,1,2,Active Shallow Crust,0.0,89.9884,0.0,02/17/0521 +7.28948,47.00141,9385,12,11,16,36,36,4.05,27.5,fr,46555,187,1958462,1,1,Active Shallow Crust,0.0,89.9884,0.0,12/11/9385 +7.28948,47.00141,8335,11,5,9,11,20,4.15,5.0,fr,46556,166,1958472,1,1,Active Shallow Crust,0.0,89.98966,0.0,11/05/8335 +7.28948,47.00141,2839,7,6,14,16,50,4.15,15.0,fr,46557,56,1958473,1,2,Active Shallow Crust,0.0,89.98966,0.0,07/06/2839 +7.28948,47.00141,5521,7,27,5,16,25,4.15,15.0,fr,46558,110,1958473,1,2,Active Shallow Crust,0.0,89.98966,0.0,07/27/5521 +7.28948,47.00141,2788,12,22,8,7,49,4.15,5.0,fr,46559,55,1958475,1,1,Active Shallow Crust,240.0084,57.99706,0.0,12/22/2788 +7.28948,47.00141,9069,4,6,1,13,47,4.15,27.5,fr,46560,181,1958477,1,1,Active Shallow Crust,240.0084,57.99704,0.0,04/06/9069 +7.28948,47.00141,9315,2,23,1,40,33,4.25,15.0,fr,46561,186,1958488,1,1,Active Shallow Crust,240.0073,57.99431,0.0,02/23/9315 +7.28948,47.00141,4601,12,17,21,39,36,4.25,5.0,fr,46562,92,1958490,1,1,Active Shallow Crust,0.0,89.99068,-90.0,12/17/4601 +7.28948,47.00141,261,11,20,11,56,55,4.25,15.0,fr,46563,5,1958494,1,1,Active Shallow Crust,128.895,89.98096,0.0,11/20/0261 +7.28948,47.00141,730,7,10,16,13,37,4.35,5.0,fr,46564,14,1958496,1,1,Active Shallow Crust,0.0,89.98904,0.0,07/10/0730 +7.28948,47.00141,5923,1,10,17,17,50,4.45,27.5,fr,46565,118,1958510,1,1,Active Shallow Crust,0.0,89.99024,0.0,01/10/5923 +7.28948,47.00141,814,12,31,11,31,22,4.45,5.0,fr,46566,16,1958511,1,2,Active Shallow Crust,240.0054,57.99471,0.0,12/31/0814 +7.28948,47.00141,8457,11,9,20,21,49,4.45,5.0,fr,46567,169,1958511,1,2,Active Shallow Crust,240.0054,57.99471,0.0,11/09/8457 +7.28948,47.00141,6344,11,26,21,14,4,4.55,5.0,fr,46568,126,1958520,1,1,Active Shallow Crust,0.0,89.98913,0.0,11/26/6344 +7.28948,47.00141,6079,2,28,13,15,40,4.65,15.0,fr,46569,121,1958533,1,1,Active Shallow Crust,0.0,89.99031,0.0,02/28/6079 +7.28948,47.00141,95,12,18,20,28,38,4.65,27.5,fr,46570,1,1958534,1,1,Active Shallow Crust,0.0,89.99031,0.0,12/18/0095 +7.28948,47.00141,6213,2,13,2,2,12,4.65,5.0,fr,46571,124,1958541,1,1,Active Shallow Crust,128.8909,89.98676,0.0,02/13/6213 +7.28948,47.00141,8560,1,8,5,45,59,4.65,15.0,fr,46572,171,1958542,1,1,Active Shallow Crust,128.8909,89.98676,0.0,01/08/8560 +7.28948,47.00141,1928,9,11,3,51,22,4.85,15.0,fr,46573,38,1958557,1,1,Active Shallow Crust,0.0,89.99076,0.0,09/11/1928 +7.28948,47.00141,1374,6,7,12,19,28,5.05,27.5,fr,46574,27,1958588,1,1,Active Shallow Crust,0.0,89.9901,-90.0,06/07/1374 +1.05742,41.77062,3348,3,7,18,37,22,3.55,5.0,fr,46575,66,1958880,1,1,Active Shallow Crust,0.0,89.9906,0.0,03/07/3348 +1.05742,41.77062,8671,12,29,14,11,51,3.75,5.0,fr,46576,173,1958904,1,1,Active Shallow Crust,0.0,89.98955,0.0,12/29/8671 +1.05742,41.77062,1460,6,3,9,34,52,4.15,15.0,fr,46577,29,1958953,1,1,Active Shallow Crust,0.0,89.98963,0.0,06/03/1460 +-6.09356,48.16356,8862,7,16,6,17,49,3.65,5.0,fr,46578,177,1959372,1,1,Active Shallow Crust,0.0,89.98801,0.0,07/16/8862 +-6.09356,48.16356,5316,3,31,23,26,43,3.75,5.0,fr,46579,106,1959384,1,1,Active Shallow Crust,0.0,89.98931,0.0,03/31/5316 +-6.09356,48.16356,5437,4,13,10,19,37,3.85,27.5,fr,46580,108,1959404,1,1,Active Shallow Crust,0.0,89.99036,-90.0,04/13/5437 +-6.09356,48.16356,964,10,18,23,5,17,3.95,5.0,fr,46581,19,1959411,1,1,Active Shallow Crust,240.0202,58.00516,0.0,10/18/0964 +0.91973,44.06949,2680,1,18,12,52,30,4.25,5.0,fr,46582,53,1959924,1,1,Active Shallow Crust,0.0,89.98988,0.0,01/18/2680 +0.91973,44.06949,8382,6,12,8,46,48,4.25,15.0,fr,46583,167,1959925,1,2,Active Shallow Crust,0.0,89.98988,0.0,06/12/8382 +0.91973,44.06949,4700,6,13,15,39,52,4.25,15.0,fr,46584,93,1959925,1,2,Active Shallow Crust,0.0,89.98988,0.0,06/13/4700 +-6.53865,48.11102,1319,9,3,6,22,59,3.85,5.0,fr,46585,26,1960836,1,1,Active Shallow Crust,0.0,89.99046,0.0,09/03/1319 +-1.25982,41.93701,4020,2,3,5,30,7,3.55,27.5,fr,46586,80,1961282,1,1,Active Shallow Crust,0.0,89.99062,0.0,02/03/4020 +7.5606,45.8627,8154,5,26,15,6,39,3.55,5.0,fr,46587,163,1961760,1,1,Active Shallow Crust,0.0,89.99298,0.0,05/26/8154 +7.5606,45.8627,1873,5,2,4,48,15,3.55,15.0,fr,46588,37,1961761,1,1,Active Shallow Crust,0.0,89.99298,0.0,05/02/1873 +7.5606,45.8627,6125,7,7,4,3,34,3.55,5.0,fr,46589,122,1961769,1,1,Active Shallow Crust,128.8969,89.99298,0.0,07/07/6125 +7.5606,45.8627,228,5,2,12,18,55,3.65,5.0,fr,46590,4,1961772,1,2,Active Shallow Crust,0.0,89.98748,0.0,05/02/0228 +7.5606,45.8627,5708,12,6,14,27,57,3.65,5.0,fr,46591,114,1961772,1,2,Active Shallow Crust,0.0,89.98748,0.0,12/06/5708 +7.5606,45.8627,4691,10,13,16,22,25,3.65,27.5,fr,46592,93,1961783,1,1,Active Shallow Crust,128.9004,89.96351,0.0,10/13/4691 +7.5606,45.8627,9873,4,11,10,22,34,3.75,5.0,fr,46593,197,1961784,1,2,Active Shallow Crust,0.0,89.98885,0.0,04/11/9873 +7.5606,45.8627,3075,12,5,13,45,4,3.75,5.0,fr,46594,61,1961784,1,2,Active Shallow Crust,0.0,89.98885,0.0,12/05/3075 +7.5606,45.8627,2128,10,7,22,3,23,3.85,5.0,fr,46595,42,1961805,1,1,Active Shallow Crust,128.8952,89.99503,0.0,10/07/2128 +7.5606,45.8627,515,12,11,21,31,56,3.95,5.0,fr,46596,10,1961808,1,2,Active Shallow Crust,0.0,89.99113,0.0,12/11/0515 +7.5606,45.8627,5318,2,27,6,48,39,3.95,5.0,fr,46597,106,1961808,1,2,Active Shallow Crust,0.0,89.99113,0.0,02/27/5318 +7.5606,45.8627,2429,8,7,8,9,18,4.05,15.0,fr,46598,48,1961821,1,1,Active Shallow Crust,0.0,89.98815,0.0,08/07/2429 +7.5606,45.8627,3816,5,8,17,59,17,4.25,27.5,fr,46599,76,1961855,1,1,Active Shallow Crust,128.8949,89.98093,0.0,05/08/3816 +7.5606,45.8627,6945,4,4,2,38,32,4.95,5.0,fr,46600,138,1961928,1,1,Active Shallow Crust,0.0,89.99019,0.0,04/04/6945 +7.5606,45.8627,104,9,10,8,27,5,5.15,27.5,fr,46601,2,1961954,1,1,Active Shallow Crust,0.0,89.98998,0.0,09/10/0104 +7.5606,45.8627,2318,2,21,2,32,32,5.35,5.0,fr,46602,46,1961976,1,1,Active Shallow Crust,0.0,89.99027,0.0,02/21/2318 +7.5606,45.8627,8709,3,26,13,7,24,5.55,5.0,fr,46603,174,1962006,1,1,Active Shallow Crust,0.0,89.99005,-90.0,03/26/8709 +1.44101,43.97634,9486,8,29,19,16,59,3.55,5.0,fr,46604,189,1962240,1,1,Active Shallow Crust,0.0,89.98911,0.0,08/29/9486 +5.97043,50.25608,3110,11,20,4,34,46,3.55,5.0,fr,46605,62,1962720,1,1,Active Shallow Crust,0.0,89.98711,0.0,11/20/3110 +5.97043,50.25608,9770,4,29,15,21,17,3.65,5.0,fr,46606,195,1962732,1,3,Active Shallow Crust,0.0,89.98851,0.0,04/29/9770 +5.97043,50.25608,4426,9,15,21,34,41,3.65,5.0,fr,46607,88,1962732,1,3,Active Shallow Crust,0.0,89.98851,0.0,09/15/4426 +5.97043,50.25608,3094,10,23,17,43,8,3.65,5.0,fr,46608,61,1962732,1,3,Active Shallow Crust,0.0,89.98851,0.0,10/23/3094 +5.97043,50.25608,8130,12,15,5,57,30,3.65,15.0,fr,46609,162,1962733,1,1,Active Shallow Crust,0.0,89.98851,0.0,12/15/8130 +5.97043,50.25608,6704,10,19,18,36,43,3.75,5.0,fr,46610,134,1962750,1,1,Active Shallow Crust,0.0,89.98964,-90.0,10/19/6704 +5.97043,50.25608,8454,10,10,12,17,57,3.85,5.0,fr,46611,169,1962756,1,1,Active Shallow Crust,0.0,89.99087,0.0,10/10/8454 +5.97043,50.25608,1247,10,2,6,23,49,3.85,15.0,fr,46612,24,1962757,1,1,Active Shallow Crust,0.0,89.99087,0.0,10/02/1247 +5.97043,50.25608,4529,9,16,8,48,25,3.85,5.0,fr,46613,90,1962762,1,1,Active Shallow Crust,0.0,89.99077,-90.0,09/16/4529 +5.97043,50.25608,3105,10,20,20,21,5,3.95,15.0,fr,46614,62,1962769,1,1,Active Shallow Crust,0.0,89.99187,0.0,10/20/3105 +5.97043,50.25608,177,9,30,23,43,51,4.35,15.0,fr,46615,3,1962817,1,1,Active Shallow Crust,0.0,89.98973,0.0,09/30/0177 +5.97043,50.25608,9020,1,5,21,56,50,4.35,5.0,fr,46616,180,1962822,1,1,Active Shallow Crust,0.0,89.98962,-90.0,01/05/9020 +5.97043,50.25608,7829,6,27,7,36,25,4.45,15.0,fr,46617,156,1962838,1,1,Active Shallow Crust,128.8911,89.99429,0.0,06/27/7829 +5.97043,50.25608,7013,10,17,19,41,39,4.55,5.0,fr,46618,140,1962840,1,1,Active Shallow Crust,0.0,89.98981,0.0,10/17/7013 +5.97043,50.25608,6741,6,3,22,3,40,4.55,5.0,fr,46619,134,1962846,1,1,Active Shallow Crust,0.0,89.98969,-90.0,06/03/6741 +5.97043,50.25608,7623,8,8,11,8,48,5.25,15.0,fr,46620,152,1962925,1,1,Active Shallow Crust,0.0,89.98998,0.0,08/08/7623 +5.97043,50.25608,4605,7,11,8,0,12,5.65,5.0,fr,46621,92,1962981,1,1,Active Shallow Crust,128.8716,89.99062,0.0,07/11/4605 +3.46662,42.54813,7269,7,5,22,59,23,3.55,5.0,fr,46622,145,1963200,1,1,Active Shallow Crust,0.0,89.98885,0.0,07/05/7269 +3.46662,42.54813,6424,2,17,17,52,42,3.65,15.0,fr,46623,128,1963213,1,2,Active Shallow Crust,0.0,89.99007,0.0,02/17/6424 +3.46662,42.54813,5129,12,4,20,11,49,3.65,15.0,fr,46624,102,1963213,1,2,Active Shallow Crust,0.0,89.99007,0.0,12/04/5129 +3.46662,42.54813,1267,11,24,0,3,15,3.95,5.0,fr,46625,25,1963251,1,1,Active Shallow Crust,240.0193,58.00474,0.0,11/24/1267 +3.46662,42.54813,9739,4,29,3,3,33,4.05,5.0,fr,46626,194,1963266,1,1,Active Shallow Crust,0.0,89.98943,-90.0,04/29/9739 +3.46662,42.54813,3850,1,8,8,8,31,4.05,27.5,fr,46627,76,1963268,1,1,Active Shallow Crust,0.0,89.98943,-90.0,01/08/3850 +3.46662,42.54813,9798,12,2,8,17,54,4.15,15.0,fr,46628,195,1963279,1,1,Active Shallow Crust,0.0,89.99059,-90.0,12/02/9798 +-1.9034,42.97086,9533,11,16,20,13,6,3.55,5.0,fr,46629,190,1963680,1,5,Active Shallow Crust,0.0,89.99078,0.0,11/16/9533 +-1.9034,42.97086,5953,11,9,15,9,50,3.55,5.0,fr,46630,119,1963680,1,5,Active Shallow Crust,0.0,89.99078,0.0,11/09/5953 +-1.9034,42.97086,29,7,26,0,57,0,3.55,5.0,fr,46631,0,1963680,1,5,Active Shallow Crust,0.0,89.99078,0.0,07/26/0029 +-1.9034,42.97086,7345,4,17,16,17,13,3.55,5.0,fr,46632,146,1963680,1,5,Active Shallow Crust,0.0,89.99078,0.0,04/17/7345 +-1.9034,42.97086,3154,9,10,10,57,2,3.55,5.0,fr,46633,63,1963680,1,5,Active Shallow Crust,0.0,89.99078,0.0,09/10/3154 +-1.9034,42.97086,8897,6,24,13,47,7,3.55,15.0,fr,46634,177,1963681,1,2,Active Shallow Crust,0.0,89.99078,0.0,06/24/8897 +-1.9034,42.97086,7868,6,24,13,25,45,3.55,15.0,fr,46635,157,1963681,1,2,Active Shallow Crust,0.0,89.99078,0.0,06/24/7868 +-1.9034,42.97086,654,9,13,20,26,2,3.55,15.0,fr,46636,13,1963684,1,1,Active Shallow Crust,240.012,57.99814,0.0,09/13/0654 +-1.9034,42.97086,2978,8,22,2,18,7,3.55,5.0,fr,46637,59,1963686,1,2,Active Shallow Crust,0.0,89.99067,-90.0,08/22/2978 +-1.9034,42.97086,5252,6,17,16,22,5,3.55,5.0,fr,46638,105,1963686,1,2,Active Shallow Crust,0.0,89.99067,-90.0,06/17/5252 +-1.9034,42.97086,9938,6,12,3,55,30,3.55,15.0,fr,46639,198,1963687,1,1,Active Shallow Crust,0.0,89.99067,-90.0,06/12/9938 +-1.9034,42.97086,691,6,29,0,13,55,3.55,15.0,fr,46640,13,1963690,1,1,Active Shallow Crust,128.8964,89.99355,0.0,06/29/0691 +-1.9034,42.97086,4168,4,9,9,6,33,3.65,5.0,fr,46641,83,1963692,1,2,Active Shallow Crust,0.0,89.99014,0.0,04/09/4168 +-1.9034,42.97086,3541,5,15,16,0,39,3.65,5.0,fr,46642,70,1963692,1,2,Active Shallow Crust,0.0,89.99014,0.0,05/15/3541 +-1.9034,42.97086,5742,3,31,21,30,18,3.65,15.0,fr,46643,114,1963696,1,1,Active Shallow Crust,240.0005,58.01298,0.0,03/31/5742 +-1.9034,42.97086,1333,9,10,14,19,35,3.65,27.5,fr,46644,26,1963703,1,1,Active Shallow Crust,128.9009,89.96346,0.0,09/10/1333 +-1.9034,42.97086,656,11,19,6,42,41,3.75,5.0,fr,46645,13,1963704,1,3,Active Shallow Crust,0.0,89.98975,0.0,11/19/0656 +-1.9034,42.97086,5531,2,17,19,22,12,3.75,5.0,fr,46646,110,1963704,1,3,Active Shallow Crust,0.0,89.98975,0.0,02/17/5531 +-1.9034,42.97086,6532,11,7,22,26,45,3.75,5.0,fr,46647,130,1963704,1,3,Active Shallow Crust,0.0,89.98975,0.0,11/07/6532 +-1.9034,42.97086,2330,7,14,18,40,37,3.75,15.0,fr,46648,46,1963705,1,1,Active Shallow Crust,0.0,89.98975,0.0,07/14/2330 +-1.9034,42.97086,9819,1,13,10,30,1,3.75,5.0,fr,46649,196,1963713,1,1,Active Shallow Crust,128.8968,89.96743,0.0,01/13/9819 +-1.9034,42.97086,8727,10,26,3,25,44,3.85,5.0,fr,46650,174,1963716,1,1,Active Shallow Crust,0.0,89.98956,0.0,10/26/8727 +-1.9034,42.97086,5897,12,21,4,49,39,3.95,15.0,fr,46651,117,1963729,1,1,Active Shallow Crust,0.0,89.98952,0.0,12/21/5897 +-1.9034,42.97086,5480,7,2,18,3,31,4.05,5.0,fr,46652,109,1963740,1,4,Active Shallow Crust,0.0,89.98962,0.0,07/02/5480 +-1.9034,42.97086,3213,2,16,21,41,16,4.05,5.0,fr,46653,64,1963740,1,4,Active Shallow Crust,0.0,89.98962,0.0,02/16/3213 +-1.9034,42.97086,4005,5,29,16,29,9,4.05,5.0,fr,46654,80,1963740,1,4,Active Shallow Crust,0.0,89.98962,0.0,05/29/4005 +-1.9034,42.97086,6675,1,17,17,18,10,4.05,5.0,fr,46655,133,1963740,1,4,Active Shallow Crust,0.0,89.98962,0.0,01/17/6675 +-1.9034,42.97086,8208,5,6,6,30,33,4.05,27.5,fr,46656,164,1963748,1,1,Active Shallow Crust,0.0,89.98951,-90.0,05/06/8208 +-1.9034,42.97086,4197,11,1,9,13,51,4.05,15.0,fr,46657,83,1963750,1,1,Active Shallow Crust,128.8909,89.99377,0.0,11/01/4197 +-1.9034,42.97086,707,4,6,20,42,52,4.15,5.0,fr,46658,14,1963752,1,1,Active Shallow Crust,0.0,89.98983,0.0,04/06/0707 +-1.9034,42.97086,3303,1,1,13,54,41,4.25,15.0,fr,46659,66,1963765,1,1,Active Shallow Crust,0.0,89.99011,0.0,01/01/3303 +-1.9034,42.97086,3798,12,23,4,38,26,4.25,5.0,fr,46660,75,1963767,1,2,Active Shallow Crust,240.0068,57.99405,0.0,12/23/3798 +-1.9034,42.97086,7453,1,23,22,45,52,4.25,5.0,fr,46661,149,1963767,1,2,Active Shallow Crust,240.0068,57.99405,0.0,01/23/7453 +-1.9034,42.97086,3501,7,10,10,47,59,4.45,5.0,fr,46662,70,1963788,1,1,Active Shallow Crust,0.0,89.99018,0.0,07/10/3501 +-1.9034,42.97086,9083,3,20,4,34,4,4.45,5.0,fr,46663,181,1963791,1,1,Active Shallow Crust,240.0044,57.99453,0.0,03/20/9083 +-1.9034,42.97086,4360,10,23,9,17,19,4.45,27.5,fr,46664,87,1963796,1,1,Active Shallow Crust,0.0,89.99007,-90.0,10/23/4360 +-1.9034,42.97086,317,12,31,15,4,11,4.75,5.0,fr,46665,6,1963824,1,1,Active Shallow Crust,0.0,89.98981,0.0,12/31/0317 +-1.903385,42.97086,7254,9,29,10,17,16,6.75,11.99416,fr,46666,145,1964064,1,1,Active Shallow Crust,0.0,89.99,0.0,09/29/7254 +4.45003,41.61351,4809,9,24,19,21,16,3.65,27.5,fr,46667,96,1964174,1,1,Active Shallow Crust,0.0,89.99328,0.0,09/24/4809 +4.45003,41.61351,2439,12,8,13,34,33,3.75,5.0,fr,46668,48,1964184,1,2,Active Shallow Crust,0.0,89.98802,0.0,12/08/2439 +4.45003,41.61351,7668,10,28,6,15,41,3.75,5.0,fr,46669,153,1964184,1,2,Active Shallow Crust,0.0,89.98802,0.0,10/28/7668 +4.45003,41.61351,6830,11,28,9,51,5,4.85,15.0,fr,46670,136,1964317,1,1,Active Shallow Crust,0.0,89.98987,0.0,11/28/6830 +2.51464,51.03429,2931,9,16,6,46,15,3.55,27.5,fr,46671,58,1964645,1,1,Active Shallow Crust,240.0133,57.99807,0.0,09/16/2931 +2.51464,51.03429,3912,1,12,4,43,25,3.55,27.5,fr,46672,78,1964648,1,1,Active Shallow Crust,0.0,89.99038,-90.0,01/12/3912 +2.51464,51.03429,2282,12,19,13,51,7,3.65,27.5,fr,46673,45,1964654,1,1,Active Shallow Crust,0.0,89.98869,0.0,12/19/2282 +2.51464,51.03429,3337,4,30,7,12,37,3.75,27.5,fr,46674,66,1964675,1,1,Active Shallow Crust,128.8962,89.96735,0.0,04/30/3337 +2.51464,51.03429,4319,1,14,8,45,37,3.85,27.5,fr,46675,86,1964678,1,1,Active Shallow Crust,0.0,89.99102,0.0,01/14/4319 +2.51464,51.03429,4624,1,8,4,46,8,4.25,27.5,fr,46676,92,1964726,1,1,Active Shallow Crust,0.0,89.99008,0.0,01/08/4624 +2.51464,51.03429,54,9,29,0,20,32,4.65,5.0,fr,46677,1,1964778,1,1,Active Shallow Crust,0.0,89.99005,-90.0,09/29/0054 +-0.43607,43.26485,3112,5,19,19,32,29,3.55,5.0,fr,46678,62,1965120,1,8,Active Shallow Crust,0.0,89.98991,0.0,05/19/3112 +-0.43607,43.26485,7254,1,29,23,17,45,3.55,5.0,fr,46679,145,1965120,1,8,Active Shallow Crust,0.0,89.98991,0.0,01/29/7254 +-0.43607,43.26485,7796,11,27,6,28,52,3.55,5.0,fr,46680,155,1965120,1,8,Active Shallow Crust,0.0,89.98991,0.0,11/27/7796 +-0.43607,43.26485,7679,3,15,1,22,58,3.55,5.0,fr,46681,153,1965120,1,8,Active Shallow Crust,0.0,89.98991,0.0,03/15/7679 +-0.43607,43.26485,8089,7,31,2,54,44,3.55,5.0,fr,46682,161,1965120,1,8,Active Shallow Crust,0.0,89.98991,0.0,07/31/8089 +-0.43607,43.26485,3348,2,5,23,55,45,3.55,5.0,fr,46683,66,1965120,1,8,Active Shallow Crust,0.0,89.98991,0.0,02/05/3348 +-0.43607,43.26485,9503,4,17,6,38,20,3.55,5.0,fr,46684,190,1965120,1,8,Active Shallow Crust,0.0,89.98991,0.0,04/17/9503 +-0.43607,43.26485,2364,2,28,13,55,19,3.55,5.0,fr,46685,47,1965120,1,8,Active Shallow Crust,0.0,89.98991,0.0,02/28/2364 +-0.43607,43.26485,4732,9,23,12,59,13,3.55,15.0,fr,46686,94,1965121,1,2,Active Shallow Crust,0.0,89.98991,0.0,09/23/4732 +-0.43607,43.26485,8574,12,14,6,37,0,3.55,15.0,fr,46687,171,1965121,1,2,Active Shallow Crust,0.0,89.98991,0.0,12/14/8574 +-0.43607,43.26485,1598,9,15,13,49,35,3.55,15.0,fr,46688,31,1965127,1,1,Active Shallow Crust,0.0,89.98978,-90.0,09/15/1598 +-0.43607,43.26485,2194,12,26,8,43,23,3.65,5.0,fr,46689,43,1965132,1,4,Active Shallow Crust,0.0,89.99018,0.0,12/26/2194 +-0.43607,43.26485,6186,7,8,14,37,57,3.65,5.0,fr,46690,123,1965132,1,4,Active Shallow Crust,0.0,89.99018,0.0,07/08/6186 +-0.43607,43.26485,2997,7,4,22,37,26,3.65,5.0,fr,46691,59,1965132,1,4,Active Shallow Crust,0.0,89.99018,0.0,07/04/2997 +-0.43607,43.26485,4801,2,7,8,31,17,3.65,5.0,fr,46692,96,1965132,1,4,Active Shallow Crust,0.0,89.99018,0.0,02/07/4801 +-0.43607,43.26485,3696,12,7,1,52,38,3.65,15.0,fr,46693,73,1965133,1,2,Active Shallow Crust,0.0,89.99018,0.0,12/07/3696 +-0.43607,43.26485,6095,10,22,4,19,38,3.65,15.0,fr,46694,121,1965133,1,2,Active Shallow Crust,0.0,89.99018,0.0,10/22/6095 +-0.43607,43.26485,8292,12,30,3,6,26,3.65,27.5,fr,46695,165,1965134,1,1,Active Shallow Crust,0.0,89.99018,0.0,12/30/8292 +-0.43607,43.26485,3682,8,5,19,33,43,3.75,5.0,fr,46696,73,1965144,1,3,Active Shallow Crust,0.0,89.99016,0.0,08/05/3682 +-0.43607,43.26485,1218,1,10,5,57,57,3.75,5.0,fr,46697,24,1965144,1,3,Active Shallow Crust,0.0,89.99016,0.0,01/10/1218 +-0.43607,43.26485,8233,8,20,13,44,16,3.75,5.0,fr,46698,164,1965144,1,3,Active Shallow Crust,0.0,89.99016,0.0,08/20/8233 +-0.43607,43.26485,8770,5,31,17,49,39,3.75,15.0,fr,46699,175,1965145,1,1,Active Shallow Crust,0.0,89.99016,0.0,05/31/8770 +-0.43607,43.26485,1490,4,5,8,50,2,3.75,5.0,fr,46700,29,1965147,1,1,Active Shallow Crust,240.0079,58.01753,0.0,04/05/1490 +-0.43607,43.26485,1137,10,23,3,55,20,3.75,15.0,fr,46701,22,1965148,1,1,Active Shallow Crust,240.0079,58.01753,0.0,10/23/1137 +-0.43607,43.26485,6508,2,24,2,18,52,3.85,15.0,fr,46702,130,1965157,1,1,Active Shallow Crust,0.0,89.98993,0.0,02/24/6508 +-0.43607,43.26485,9188,3,4,21,2,58,3.85,5.0,fr,46703,183,1965159,1,2,Active Shallow Crust,240.0105,57.99767,0.0,03/04/9188 +-0.43607,43.26485,3834,10,21,18,5,3,3.85,5.0,fr,46704,76,1965159,1,2,Active Shallow Crust,240.0105,57.99767,0.0,10/21/3834 +-0.43607,43.26485,4751,2,11,21,34,13,3.95,5.0,fr,46705,95,1965168,1,2,Active Shallow Crust,0.0,89.98987,0.0,02/11/4751 +-0.43607,43.26485,6927,11,6,12,16,42,3.95,5.0,fr,46706,138,1965168,1,2,Active Shallow Crust,0.0,89.98987,0.0,11/06/6927 +-0.43607,43.26485,4624,12,15,0,35,55,3.95,15.0,fr,46707,92,1965178,1,1,Active Shallow Crust,128.9007,89.99377,0.0,12/15/4624 +-0.43607,43.26485,5974,4,11,3,47,15,4.05,15.0,fr,46708,119,1965184,1,1,Active Shallow Crust,240.0054,58.00573,0.0,04/11/5974 +-0.43607,43.26485,7484,3,25,21,41,52,4.15,5.0,fr,46709,149,1965192,1,2,Active Shallow Crust,0.0,89.99011,0.0,03/25/7484 +-0.43607,43.26485,7436,5,26,2,34,59,4.15,5.0,fr,46710,148,1965192,1,2,Active Shallow Crust,0.0,89.99011,0.0,05/26/7436 +-0.43607,43.26485,8228,7,22,18,31,44,4.15,15.0,fr,46711,164,1965193,1,1,Active Shallow Crust,0.0,89.99011,0.0,07/22/8228 +-0.43607,43.26485,476,9,7,11,55,18,4.15,15.0,fr,46712,9,1965196,1,1,Active Shallow Crust,240.0079,57.99721,0.0,09/07/0476 +-0.43607,43.26485,1059,5,24,6,38,27,4.15,27.5,fr,46713,21,1965197,1,1,Active Shallow Crust,240.0079,57.99716,0.0,05/24/1059 +-0.43607,43.26485,9943,8,19,9,42,18,4.35,15.0,fr,46714,198,1965220,1,1,Active Shallow Crust,240.0077,57.99584,0.0,08/19/9943 +-0.43607,43.26485,4384,2,5,12,54,56,4.45,5.0,fr,46715,87,1965228,1,1,Active Shallow Crust,0.0,89.99007,0.0,02/05/4384 +-0.43607,43.26485,857,6,4,22,53,42,4.65,5.0,fr,46716,17,1965252,1,1,Active Shallow Crust,0.0,89.99004,0.0,06/04/0857 +-0.43607,43.26485,2671,8,1,4,55,56,4.65,15.0,fr,46717,53,1965253,1,2,Active Shallow Crust,0.0,89.99004,0.0,08/01/2671 +-0.43607,43.26485,8094,9,16,16,6,37,4.65,15.0,fr,46718,161,1965253,1,2,Active Shallow Crust,0.0,89.99004,0.0,09/16/8094 +-0.43607,43.26485,2680,11,12,23,36,22,4.75,5.0,fr,46719,53,1965270,1,1,Active Shallow Crust,0.0,89.98997,-90.0,11/12/2680 +-0.43607,43.26485,2238,4,20,2,44,32,4.85,15.0,fr,46720,44,1965277,1,1,Active Shallow Crust,0.0,89.99004,0.0,04/20/2238 +-0.43607,43.26485,552,4,18,16,17,12,5.25,27.5,fr,46721,11,1965326,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/18/0552 +-0.43607,43.26485,7923,7,20,16,16,57,5.45,15.0,fr,46722,158,1965349,1,1,Active Shallow Crust,0.0,89.99001,0.0,07/20/7923 +5.52344,44.82733,9937,4,2,8,59,50,3.55,5.0,fr,46723,198,1965600,1,1,Active Shallow Crust,0.0,89.99285,0.0,04/02/9937 +5.52344,44.82733,2187,5,13,7,32,11,3.55,15.0,fr,46724,43,1965601,1,2,Active Shallow Crust,0.0,89.99285,0.0,05/13/2187 +5.52344,44.82733,3016,2,12,19,54,7,3.55,15.0,fr,46725,60,1965601,1,2,Active Shallow Crust,0.0,89.99285,0.0,02/12/3016 +5.52344,44.82733,4808,2,4,13,4,45,3.55,15.0,fr,46726,96,1965604,1,1,Active Shallow Crust,240.0112,57.99868,0.0,02/04/4808 +5.52344,44.82733,9724,11,4,18,33,25,3.65,5.0,fr,46727,194,1965612,1,3,Active Shallow Crust,0.0,89.98725,0.0,11/04/9724 +5.52344,44.82733,4172,10,13,12,39,8,3.65,5.0,fr,46728,83,1965612,1,3,Active Shallow Crust,0.0,89.98725,0.0,10/13/4172 +5.52344,44.82733,9810,5,27,18,45,40,3.65,5.0,fr,46729,196,1965612,1,3,Active Shallow Crust,0.0,89.98725,0.0,05/27/9810 +5.52344,44.82733,7960,12,3,7,21,39,3.85,5.0,fr,46730,159,1965636,1,1,Active Shallow Crust,0.0,89.98988,0.0,12/03/7960 +5.52344,44.82733,3495,10,21,8,10,27,3.85,5.0,fr,46731,69,1965639,1,1,Active Shallow Crust,240.0107,57.99842,0.0,10/21/3495 +5.52344,44.82733,287,10,25,17,16,34,4.25,5.0,fr,46732,5,1965684,1,1,Active Shallow Crust,0.0,89.99042,0.0,10/25/0287 +5.52344,44.82733,2448,2,17,21,38,50,4.25,5.0,fr,46733,48,1965687,1,1,Active Shallow Crust,240.0072,57.99443,0.0,02/17/2448 +5.52344,44.82733,1103,12,7,11,22,28,4.35,5.0,fr,46734,22,1965696,1,1,Active Shallow Crust,0.0,89.98861,0.0,12/07/1103 +5.52344,44.82733,490,6,26,2,1,32,4.35,5.0,fr,46735,9,1965702,1,1,Active Shallow Crust,0.0,89.99136,-90.0,06/26/0490 +5.52344,44.82733,2856,12,13,1,31,13,4.65,5.0,fr,46736,57,1965732,1,1,Active Shallow Crust,0.0,89.98992,0.0,12/13/2856 +5.52344,44.82733,2185,6,15,15,54,55,4.95,5.0,fr,46737,43,1965768,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/15/2185 +5.52344,44.82733,5155,12,14,22,6,14,5.15,15.0,fr,46738,103,1965802,1,1,Active Shallow Crust,128.8846,89.99107,0.0,12/14/5155 +5.52344,44.82733,299,8,16,23,14,51,5.45,5.0,fr,46739,5,1965828,1,1,Active Shallow Crust,0.0,89.99036,0.0,08/16/0299 +3.53314,43.35818,4875,12,17,15,15,57,3.75,5.0,fr,46740,97,1966107,1,1,Active Shallow Crust,240.0084,58.01738,0.0,12/17/4875 +3.53314,43.35818,2227,1,26,3,13,18,3.85,5.0,fr,46741,44,1966122,1,1,Active Shallow Crust,0.0,89.9895,-90.0,01/26/2227 +3.53314,43.35818,3048,7,31,9,47,32,4.85,5.0,fr,46742,60,1966236,1,1,Active Shallow Crust,0.0,89.99015,0.0,07/31/3048 +-4.06407,50.13641,6566,12,16,3,37,7,3.55,5.0,fr,46743,131,1966560,1,1,Active Shallow Crust,0.0,89.98708,0.0,12/16/6566 +-4.06407,50.13641,6555,7,28,22,21,33,3.65,5.0,fr,46744,131,1966572,1,1,Active Shallow Crust,0.0,89.98848,0.0,07/28/6555 +5.86174,44.73928,2127,9,16,12,41,26,4.25,5.0,fr,46745,42,1967124,1,1,Active Shallow Crust,0.0,89.9904,0.0,09/16/2127 +5.86174,44.73928,8773,4,28,7,22,42,4.75,15.0,fr,46746,175,1967185,1,1,Active Shallow Crust,0.0,89.9892,0.0,04/28/8773 +5.86174,44.73928,3983,7,1,16,21,59,4.85,5.0,fr,46747,79,1967202,1,1,Active Shallow Crust,0.0,89.99026,-90.0,07/01/3983 +-4.54116,48.3326,2360,12,14,16,18,45,3.55,5.0,fr,46748,47,1968000,1,1,Active Shallow Crust,0.0,89.99329,0.0,12/14/2360 +-4.54116,48.3326,9484,6,2,4,0,29,3.55,5.0,fr,46749,189,1968009,1,1,Active Shallow Crust,128.8971,89.99329,0.0,06/02/9484 +-4.54116,48.3326,2159,4,26,1,34,45,3.65,27.5,fr,46750,43,1968014,1,1,Active Shallow Crust,0.0,89.98805,0.0,04/26/2159 +-4.54116,48.3326,2164,10,22,23,44,23,3.65,5.0,fr,46751,43,1968018,1,2,Active Shallow Crust,0.0,89.98792,-90.0,10/22/2164 +-4.54116,48.3326,9528,12,27,12,21,31,3.65,5.0,fr,46752,190,1968018,1,2,Active Shallow Crust,0.0,89.98792,-90.0,12/27/9528 +-4.54116,48.3326,6672,8,30,10,31,48,3.75,15.0,fr,46753,133,1968025,1,1,Active Shallow Crust,0.0,89.98935,0.0,08/30/6672 +-4.54116,48.3326,5765,3,9,7,17,35,3.75,5.0,fr,46754,115,1968030,1,1,Active Shallow Crust,0.0,89.98923,-90.0,03/09/5765 +-4.54116,48.3326,1764,8,19,17,34,36,3.85,5.0,fr,46755,35,1968036,1,1,Active Shallow Crust,0.0,89.99051,0.0,08/19/1764 +-4.54116,48.3326,6546,5,5,1,34,2,3.95,5.0,fr,46756,130,1968048,1,1,Active Shallow Crust,0.0,89.99154,0.0,05/05/6546 +-4.54116,48.3326,1155,4,24,21,14,36,3.95,15.0,fr,46757,23,1968049,1,1,Active Shallow Crust,0.0,89.99154,0.0,04/24/1155 +-4.54116,48.3326,5222,3,10,13,38,45,4.15,5.0,fr,46758,104,1968078,1,1,Active Shallow Crust,0.0,89.9898,-90.0,03/10/5222 +-4.54116,48.3326,402,12,6,13,54,39,4.25,5.0,fr,46759,8,1968084,1,1,Active Shallow Crust,0.0,89.99101,0.0,12/06/0402 +-4.54116,48.3326,1307,10,3,12,32,0,4.25,15.0,fr,46760,26,1968085,1,1,Active Shallow Crust,0.0,89.99101,0.0,10/03/1307 +-4.54116,48.3326,3079,7,2,10,42,2,4.35,5.0,fr,46761,61,1968096,1,1,Active Shallow Crust,0.0,89.98933,0.0,07/02/3079 +-4.54116,48.3326,6735,7,29,3,26,26,4.35,5.0,fr,46762,134,1968099,1,1,Active Shallow Crust,240.0091,57.99576,0.0,07/29/6735 +-4.54116,48.3326,8586,6,19,8,43,31,5.25,27.5,fr,46763,171,1968206,1,1,Active Shallow Crust,0.0,89.98958,0.0,06/19/8586 +5.78799,45.90982,2523,3,6,3,4,51,3.55,5.0,fr,46764,50,1968480,1,1,Active Shallow Crust,0.0,89.99298,0.0,03/06/2523 +5.78799,45.90982,9202,9,21,23,5,54,3.55,15.0,fr,46765,184,1968481,1,1,Active Shallow Crust,0.0,89.99298,0.0,09/21/9202 +5.78799,45.90982,9502,11,24,15,52,55,3.55,5.0,fr,46766,190,1968483,1,2,Active Shallow Crust,240.011,57.99873,0.0,11/24/9502 +5.78799,45.90982,1048,2,10,5,7,31,3.55,5.0,fr,46767,20,1968483,1,2,Active Shallow Crust,240.011,57.99873,0.0,02/10/1048 +5.78799,45.90982,3108,3,18,19,26,16,3.55,15.0,fr,46768,62,1968484,1,1,Active Shallow Crust,240.011,57.99873,0.0,03/18/3108 +5.78799,45.90982,8476,1,14,13,36,42,3.55,15.0,fr,46769,169,1968490,1,1,Active Shallow Crust,128.8964,89.99298,0.0,01/14/8476 +5.78799,45.90982,4680,7,28,15,37,44,3.65,27.5,fr,46770,93,1968494,1,2,Active Shallow Crust,0.0,89.9875,0.0,07/28/4680 +5.78799,45.90982,7058,2,2,15,51,34,3.65,27.5,fr,46771,141,1968494,1,2,Active Shallow Crust,0.0,89.9875,0.0,02/02/7058 +5.78799,45.90982,8581,10,4,22,34,31,3.75,5.0,fr,46772,171,1968504,1,3,Active Shallow Crust,0.0,89.98885,0.0,10/04/8581 +5.78799,45.90982,1554,8,29,19,7,17,3.75,5.0,fr,46773,31,1968504,1,3,Active Shallow Crust,0.0,89.98885,0.0,08/29/1554 +5.78799,45.90982,7082,9,15,0,16,35,3.75,5.0,fr,46774,141,1968504,1,3,Active Shallow Crust,0.0,89.98885,0.0,09/15/7082 +5.78799,45.90982,9656,12,25,13,29,27,3.85,5.0,fr,46775,193,1968516,1,1,Active Shallow Crust,0.0,89.99007,0.0,12/25/9656 +5.78799,45.90982,3420,11,21,14,57,48,3.95,5.0,fr,46776,68,1968528,1,3,Active Shallow Crust,0.0,89.99114,0.0,11/21/3420 +5.78799,45.90982,847,2,23,0,53,38,3.95,5.0,fr,46777,16,1968528,1,3,Active Shallow Crust,0.0,89.99114,0.0,02/23/0847 +5.78799,45.90982,7772,6,23,7,59,39,3.95,5.0,fr,46778,155,1968528,1,3,Active Shallow Crust,0.0,89.99114,0.0,06/23/7772 +5.78799,45.90982,93,11,6,22,21,59,3.95,5.0,fr,46779,1,1968537,1,1,Active Shallow Crust,128.9,89.99336,0.0,11/06/0093 +5.78799,45.90982,7465,1,28,20,39,59,4.05,15.0,fr,46780,149,1968541,1,1,Active Shallow Crust,0.0,89.98816,0.0,01/28/7465 +5.78799,45.90982,9610,8,6,15,20,35,4.05,5.0,fr,46781,192,1968543,1,1,Active Shallow Crust,240.0061,58.00582,0.0,08/06/9610 +5.78799,45.90982,9764,5,9,21,25,6,4.05,5.0,fr,46782,195,1968546,1,1,Active Shallow Crust,0.0,89.98803,-90.0,05/09/9764 +5.78799,45.90982,8716,9,20,23,45,57,4.15,5.0,fr,46783,174,1968552,1,1,Active Shallow Crust,0.0,89.98945,0.0,09/20/8716 +5.78799,45.90982,441,3,18,2,20,31,4.15,15.0,fr,46784,8,1968559,1,1,Active Shallow Crust,0.0,89.98933,-90.0,03/18/0441 +5.78799,45.90982,3095,2,23,18,17,48,4.15,27.5,fr,46785,61,1968560,1,1,Active Shallow Crust,0.0,89.98933,-90.0,02/23/3095 +5.78799,45.90982,6942,7,31,11,13,10,4.25,5.0,fr,46786,138,1968564,1,1,Active Shallow Crust,0.0,89.9906,0.0,07/31/6942 +5.78799,45.90982,2663,11,22,12,41,27,4.25,27.5,fr,46787,53,1968569,1,1,Active Shallow Crust,240.0072,57.9942,0.0,11/22/2663 +5.78799,45.90982,3256,7,4,15,41,54,4.35,15.0,fr,46788,65,1968577,1,1,Active Shallow Crust,0.0,89.98882,0.0,07/04/3256 +5.78799,45.90982,4578,10,1,9,39,25,4.45,5.0,fr,46789,91,1968588,1,1,Active Shallow Crust,0.0,89.99004,0.0,10/01/4578 +5.78799,45.90982,9322,5,4,16,59,43,4.95,5.0,fr,46790,186,1968648,1,1,Active Shallow Crust,0.0,89.9902,0.0,05/04/9322 +5.78799,45.90982,554,7,22,17,53,13,4.95,5.0,fr,46791,11,1968657,1,1,Active Shallow Crust,128.8898,89.98978,0.0,07/22/0554 +5.78799,45.90982,4433,12,27,17,14,24,5.05,5.0,fr,46792,88,1968660,1,2,Active Shallow Crust,0.0,89.99001,0.0,12/27/4433 +5.78799,45.90982,2910,6,3,15,2,50,5.05,5.0,fr,46793,58,1968660,1,2,Active Shallow Crust,0.0,89.99001,0.0,06/03/2910 +5.787991,45.90982,2128,9,13,10,30,22,6.05,5.357596,fr,46794,42,1968780,1,1,Active Shallow Crust,0.0,89.98993,0.0,09/13/2128 +8.12833,49.13637,1085,12,15,6,54,14,3.55,5.0,fr,46795,21,1968963,1,1,Active Shallow Crust,240.0118,57.99826,0.0,12/15/1085 +8.12833,49.13637,2861,3,29,23,5,30,3.55,27.5,fr,46796,57,1968971,1,1,Active Shallow Crust,128.8958,89.9934,0.0,03/29/2861 +8.12833,49.13637,2699,4,1,11,16,29,3.65,5.0,fr,46797,53,1968972,1,1,Active Shallow Crust,0.0,89.98824,0.0,04/01/2699 +8.12833,49.13637,5643,9,28,15,1,49,3.65,15.0,fr,46798,112,1968973,1,1,Active Shallow Crust,0.0,89.98824,0.0,09/28/5643 +8.12833,49.13637,9182,10,16,10,4,28,3.65,5.0,fr,46799,183,1968975,1,1,Active Shallow Crust,240.0016,58.01237,0.0,10/16/9182 +8.12833,49.13637,93,8,2,0,23,28,3.65,5.0,fr,46800,1,1968978,1,1,Active Shallow Crust,0.0,89.98811,-90.0,08/02/0093 +8.12833,49.13637,8122,10,6,0,29,43,3.75,5.0,fr,46801,162,1968984,1,2,Active Shallow Crust,0.0,89.98952,0.0,10/06/8122 +8.12833,49.13637,4561,6,1,4,39,10,3.75,5.0,fr,46802,91,1968984,1,2,Active Shallow Crust,0.0,89.98952,0.0,06/01/4561 +8.12833,49.13637,927,12,22,16,34,52,3.75,27.5,fr,46803,18,1968986,1,1,Active Shallow Crust,0.0,89.98952,0.0,12/22/0927 +8.12833,49.13637,8556,3,31,1,46,51,3.75,27.5,fr,46804,171,1968995,1,1,Active Shallow Crust,128.8964,89.96754,0.0,03/31/8556 +8.12833,49.13637,239,12,17,15,45,18,3.85,5.0,fr,46805,4,1968996,1,1,Active Shallow Crust,0.0,89.99066,0.0,12/17/0239 +8.12833,49.13637,9852,9,17,18,33,34,3.95,5.0,fr,46806,197,1969014,1,1,Active Shallow Crust,0.0,89.99158,-90.0,09/17/9852 +8.12833,49.13637,863,9,22,12,36,48,4.15,5.0,fr,46807,17,1969032,1,1,Active Shallow Crust,0.0,89.98677,0.0,09/22/0863 +8.12833,49.13637,4545,11,29,16,14,18,4.15,15.0,fr,46808,90,1969033,1,1,Active Shallow Crust,0.0,89.98677,0.0,11/29/4545 +8.12833,49.13637,7133,6,1,8,33,12,4.15,5.0,fr,46809,142,1969038,1,1,Active Shallow Crust,0.0,89.99331,-90.0,06/01/7133 +8.12833,49.13637,4195,2,16,3,18,24,4.25,5.0,fr,46810,83,1969047,1,1,Active Shallow Crust,240.0088,57.99417,0.0,02/16/4195 +8.12833,49.13637,2638,7,28,13,48,38,4.75,5.0,fr,46811,52,1969104,1,1,Active Shallow Crust,0.0,89.99005,0.0,07/28/2638 +8.12833,49.13637,3189,9,9,15,7,9,4.75,15.0,fr,46812,63,1969105,1,1,Active Shallow Crust,0.0,89.99005,0.0,09/09/3189 +-1.03404,43.20382,6882,9,2,12,13,7,3.55,5.0,fr,46813,137,1969440,1,1,Active Shallow Crust,0.0,89.99081,0.0,09/02/6882 +-1.03404,43.20382,9916,3,25,14,56,6,3.55,15.0,fr,46814,198,1969441,1,1,Active Shallow Crust,0.0,89.99081,0.0,03/25/9916 +-1.03404,43.20382,911,2,21,21,37,23,3.55,27.5,fr,46815,18,1969442,1,2,Active Shallow Crust,0.0,89.99081,0.0,02/21/0911 +-1.03404,43.20382,3713,12,5,21,48,41,3.55,27.5,fr,46816,74,1969442,1,2,Active Shallow Crust,0.0,89.99081,0.0,12/05/3713 +-1.03404,43.20382,5782,5,26,18,11,36,3.65,5.0,fr,46817,115,1969452,1,2,Active Shallow Crust,0.0,89.99017,0.0,05/26/5782 +-1.03404,43.20382,1704,11,8,23,32,29,3.65,5.0,fr,46818,34,1969452,1,2,Active Shallow Crust,0.0,89.99017,0.0,11/08/1704 +-1.03404,43.20382,4868,10,1,13,32,17,3.65,15.0,fr,46819,97,1969453,1,1,Active Shallow Crust,0.0,89.99017,0.0,10/01/4868 +-1.03404,43.20382,281,7,9,5,18,9,3.65,15.0,fr,46820,5,1969456,1,1,Active Shallow Crust,240.001,58.01276,0.0,07/09/0281 +-1.03404,43.20382,825,3,14,5,20,4,3.75,5.0,fr,46821,16,1969464,1,2,Active Shallow Crust,0.0,89.98978,0.0,03/14/0825 +-1.03404,43.20382,5514,12,17,12,53,35,3.75,5.0,fr,46822,110,1969464,1,2,Active Shallow Crust,0.0,89.98978,0.0,12/17/5514 +-1.03404,43.20382,5013,4,5,16,49,52,3.85,5.0,fr,46823,100,1969476,1,3,Active Shallow Crust,0.0,89.98959,0.0,04/05/5013 +-1.03404,43.20382,8168,10,8,22,58,38,3.85,5.0,fr,46824,163,1969476,1,3,Active Shallow Crust,0.0,89.98959,0.0,10/08/8168 +-1.03404,43.20382,197,2,17,19,54,56,3.85,5.0,fr,46825,3,1969476,1,3,Active Shallow Crust,0.0,89.98959,0.0,02/17/0197 +-1.03404,43.20382,7086,12,21,23,14,28,3.85,5.0,fr,46826,141,1969485,1,1,Active Shallow Crust,128.896,89.9935,0.0,12/21/7086 +-1.03404,43.20382,5480,12,29,12,55,8,3.95,5.0,fr,46827,109,1969488,1,2,Active Shallow Crust,0.0,89.98956,0.0,12/29/5480 +-1.03404,43.20382,3947,11,12,18,49,35,3.95,5.0,fr,46828,78,1969488,1,2,Active Shallow Crust,0.0,89.98956,0.0,11/12/3947 +-1.03404,43.20382,434,10,19,14,18,32,3.95,15.0,fr,46829,8,1969489,1,3,Active Shallow Crust,0.0,89.98956,0.0,10/19/0434 +-1.03404,43.20382,3112,12,8,19,31,31,3.95,15.0,fr,46830,62,1969489,1,3,Active Shallow Crust,0.0,89.98956,0.0,12/08/3112 +-1.03404,43.20382,4526,2,19,13,13,9,3.95,15.0,fr,46831,90,1969489,1,3,Active Shallow Crust,0.0,89.98956,0.0,02/19/4526 +-1.03404,43.20382,8621,7,12,10,30,17,4.05,5.0,fr,46832,172,1969500,1,1,Active Shallow Crust,0.0,89.98967,0.0,07/12/8621 +-1.03404,43.20382,307,2,8,0,19,16,4.05,15.0,fr,46833,6,1969507,1,1,Active Shallow Crust,0.0,89.98955,-90.0,02/08/0307 +-1.03404,43.20382,9766,1,11,16,33,9,4.05,15.0,fr,46834,195,1969510,1,1,Active Shallow Crust,128.8908,89.9938,0.0,01/11/9766 +-1.03404,43.20382,2891,4,11,11,19,52,4.15,15.0,fr,46835,57,1969522,1,1,Active Shallow Crust,128.8982,89.99355,0.0,04/11/2891 +-1.03404,43.20382,8369,6,15,18,40,1,4.35,5.0,fr,46836,167,1969536,1,1,Active Shallow Crust,0.0,89.98975,0.0,06/15/8369 +-1.03404,43.20382,1116,10,2,21,9,13,4.65,5.0,fr,46837,22,1969572,1,1,Active Shallow Crust,0.0,89.99016,0.0,10/02/1116 +-1.03404,43.20382,4041,10,26,1,6,20,4.65,15.0,fr,46838,80,1969573,1,1,Active Shallow Crust,0.0,89.99016,0.0,10/26/4041 +-1.03404,43.20382,6853,4,30,1,2,45,4.75,5.0,fr,46839,137,1969587,1,1,Active Shallow Crust,240.0063,58.00426,0.0,04/30/6853 +-1.03404,43.20382,3931,1,3,6,22,53,4.75,5.0,fr,46840,78,1969593,1,1,Active Shallow Crust,128.8896,89.98811,0.0,01/03/3931 +-1.03404,43.20382,1968,1,29,20,9,32,5.25,5.0,fr,46841,39,1969647,1,1,Active Shallow Crust,240.0185,57.99989,0.0,01/29/1968 +4.70911,47.69909,8906,9,1,14,34,4,3.55,5.0,fr,46842,178,1969920,1,1,Active Shallow Crust,0.0,89.99321,0.0,09/01/8906 +4.70911,47.69909,5474,1,1,12,16,54,3.55,5.0,fr,46843,109,1969929,1,1,Active Shallow Crust,128.8962,89.99322,0.0,01/01/5474 +4.70911,47.69909,3536,7,4,11,20,45,3.65,5.0,fr,46844,70,1969932,1,1,Active Shallow Crust,0.0,89.9879,0.0,07/04/3536 +4.70911,47.69909,1546,11,21,10,55,33,3.65,15.0,fr,46845,30,1969933,1,2,Active Shallow Crust,0.0,89.9879,0.0,11/21/1546 +4.70911,47.69909,4263,12,30,10,29,52,3.65,15.0,fr,46846,85,1969933,1,2,Active Shallow Crust,0.0,89.9879,0.0,12/30/4263 +4.70911,47.69909,9850,12,19,18,2,10,3.65,27.5,fr,46847,196,1969934,1,1,Active Shallow Crust,0.0,89.9879,0.0,12/19/9850 +4.70911,47.69909,8229,12,18,3,1,55,4.35,5.0,fr,46848,164,1970016,1,1,Active Shallow Crust,0.0,89.98919,0.0,12/18/8229 +3.96858,41.41093,3149,7,1,0,24,50,3.55,27.5,fr,46849,62,1970411,1,1,Active Shallow Crust,128.8967,89.99244,0.0,07/01/3149 +3.96858,41.41093,1075,1,19,12,4,12,3.75,15.0,fr,46850,21,1970425,1,1,Active Shallow Crust,0.0,89.99099,0.0,01/19/1075 +3.96858,41.41093,8115,1,1,11,6,28,3.95,5.0,fr,46851,162,1970448,1,1,Active Shallow Crust,0.0,89.99046,0.0,01/01/8115 +3.96858,41.41093,7276,6,26,2,0,10,4.05,5.0,fr,46852,145,1970460,1,1,Active Shallow Crust,0.0,89.98936,0.0,06/26/7276 +3.96858,41.41093,2473,8,10,19,31,37,4.15,5.0,fr,46853,49,1970472,1,1,Active Shallow Crust,0.0,89.99052,0.0,08/10/2473 +-4.15101,47.41566,1352,7,22,12,32,58,4.05,5.0,fr,46854,27,1971429,1,1,Active Shallow Crust,128.8908,89.99425,0.0,07/22/1352 +-4.15101,47.41566,7703,6,13,13,36,7,4.25,15.0,fr,46855,154,1971445,1,1,Active Shallow Crust,0.0,89.99085,0.0,06/13/7703 +2.17782,46.03954,3480,10,27,10,11,46,3.55,5.0,fr,46856,69,1971840,1,2,Active Shallow Crust,0.0,89.9895,0.0,10/27/3480 +2.17782,46.03954,7396,3,19,9,2,51,3.55,5.0,fr,46857,147,1971840,1,2,Active Shallow Crust,0.0,89.9895,0.0,03/19/7396 +2.17782,46.03954,6230,12,28,4,18,32,3.65,5.0,fr,46858,124,1971852,1,1,Active Shallow Crust,0.0,89.99064,0.0,12/28/6230 +2.17782,46.03954,5265,11,20,7,53,45,3.75,5.0,fr,46859,105,1971864,1,2,Active Shallow Crust,0.0,89.98888,0.0,11/20/5265 +2.17782,46.03954,3525,7,8,15,48,48,3.75,5.0,fr,46860,70,1971864,1,2,Active Shallow Crust,0.0,89.98888,0.0,07/08/3525 +2.17782,46.03954,6433,6,26,4,23,31,3.75,15.0,fr,46861,128,1971865,1,1,Active Shallow Crust,0.0,89.98888,0.0,06/26/6433 +2.17782,46.03954,8771,8,31,20,22,5,3.85,5.0,fr,46862,175,1971876,1,1,Active Shallow Crust,0.0,89.99009,0.0,08/31/8771 +2.17782,46.03954,6229,4,5,7,22,1,4.05,5.0,fr,46863,124,1971900,1,1,Active Shallow Crust,0.0,89.99016,0.0,04/05/6229 +2.17782,46.03954,5979,9,11,2,52,28,4.55,27.5,fr,46864,119,1971965,1,1,Active Shallow Crust,240.0091,57.99733,0.0,09/11/5979 +2.17782,46.03954,9366,1,21,4,37,40,4.85,15.0,fr,46865,187,1972000,1,1,Active Shallow Crust,240.0171,58.0022,0.0,01/21/9366 +2.17782,46.03954,4490,12,8,12,7,34,5.45,5.0,fr,46866,89,1972074,1,1,Active Shallow Crust,0.0,89.99007,-90.0,12/08/4490 +2.40594,45.41964,5713,7,26,12,23,31,3.55,5.0,fr,46867,114,1972320,1,1,Active Shallow Crust,0.0,89.98938,0.0,07/26/5713 +2.40594,45.41964,463,9,26,4,54,21,3.55,15.0,fr,46868,9,1972321,1,1,Active Shallow Crust,0.0,89.98938,0.0,09/26/0463 +2.40594,45.41964,6489,10,28,0,48,51,3.55,27.5,fr,46869,129,1972322,1,1,Active Shallow Crust,0.0,89.98938,0.0,10/28/6489 +2.40594,45.41964,7866,1,14,15,9,55,3.55,5.0,fr,46870,157,1972329,1,1,Active Shallow Crust,128.8958,89.99469,0.0,01/14/7866 +2.40594,45.41964,1315,10,12,18,43,46,3.65,5.0,fr,46871,26,1972332,1,1,Active Shallow Crust,0.0,89.99054,0.0,10/12/1315 +2.40594,45.41964,4269,3,11,19,3,3,3.65,5.0,fr,46872,85,1972335,1,2,Active Shallow Crust,240.0015,58.01294,0.0,03/11/4269 +2.40594,45.41964,4323,7,13,9,12,39,3.65,5.0,fr,46873,86,1972335,1,2,Active Shallow Crust,240.0015,58.01294,0.0,07/13/4323 +2.40594,45.41964,3410,9,10,5,27,33,3.85,15.0,fr,46874,68,1972360,1,1,Active Shallow Crust,240.0107,57.99745,0.0,09/10/3410 +2.40594,45.41964,9278,1,20,21,23,25,4.05,27.5,fr,46875,185,1972385,1,1,Active Shallow Crust,240.0058,58.00571,0.0,01/20/9278 +2.40594,45.41964,1535,6,29,15,52,33,4.25,15.0,fr,46876,30,1972405,1,1,Active Shallow Crust,0.0,89.99052,0.0,06/29/1535 +2.40594,45.41964,9182,11,8,20,26,45,4.35,5.0,fr,46877,183,1972416,1,1,Active Shallow Crust,0.0,89.99014,0.0,11/08/9182 +2.40594,45.41964,2250,2,10,10,31,44,6.95,15.0,fr,46878,44,1972732,1,1,Active Shallow Crust,240.1562,57.99986,0.0,02/10/2250 +3.06149,47.58359,5715,5,21,1,41,47,3.65,5.0,fr,46879,114,1972812,1,1,Active Shallow Crust,0.0,89.99091,0.0,05/21/5715 +3.06149,47.58359,4103,7,6,3,17,4,3.75,5.0,fr,46880,82,1972824,1,1,Active Shallow Crust,0.0,89.9892,0.0,07/06/4103 +3.06149,47.58359,7223,7,1,12,5,34,3.85,5.0,fr,46881,144,1972842,1,1,Active Shallow Crust,0.0,89.99026,-90.0,07/01/7223 +3.06149,47.58359,9915,10,9,4,28,38,4.05,5.0,fr,46882,198,1972860,1,1,Active Shallow Crust,0.0,89.99044,0.0,10/09/9915 +0.93864,48.09461,3493,7,4,6,46,35,3.75,5.0,fr,46883,69,1973304,1,1,Active Shallow Crust,0.0,89.98997,0.0,07/04/3493 +0.93864,48.09461,6064,12,1,12,26,48,3.85,5.0,fr,46884,121,1973325,1,1,Active Shallow Crust,128.8956,89.99374,0.0,12/01/6064 +5.7483,50.84397,9971,4,23,21,42,47,3.55,5.0,fr,46885,199,1973760,1,5,Active Shallow Crust,0.0,89.98727,0.0,04/23/9971 +5.7483,50.84397,7726,12,10,1,26,14,3.55,5.0,fr,46886,154,1973760,1,5,Active Shallow Crust,0.0,89.98727,0.0,12/10/7726 +5.7483,50.84397,5028,6,20,7,34,36,3.55,5.0,fr,46887,100,1973760,1,5,Active Shallow Crust,0.0,89.98727,0.0,06/20/5028 +5.7483,50.84397,187,11,21,7,40,10,3.55,5.0,fr,46888,3,1973760,1,5,Active Shallow Crust,0.0,89.98727,0.0,11/21/0187 +5.7483,50.84397,1650,10,27,19,0,43,3.55,5.0,fr,46889,32,1973760,1,5,Active Shallow Crust,0.0,89.98727,0.0,10/27/1650 +5.7483,50.84397,2736,6,7,16,3,18,3.55,15.0,fr,46890,54,1973761,1,2,Active Shallow Crust,0.0,89.98727,0.0,06/07/2736 +5.7483,50.84397,2966,7,23,2,31,40,3.55,15.0,fr,46891,59,1973761,1,2,Active Shallow Crust,0.0,89.98727,0.0,07/23/2966 +5.7483,50.84397,9534,9,25,8,47,10,3.55,27.5,fr,46892,190,1973762,1,1,Active Shallow Crust,0.0,89.98727,0.0,09/25/9534 +5.7483,50.84397,1303,6,25,5,30,50,3.55,5.0,fr,46893,26,1973763,1,1,Active Shallow Crust,240.0139,57.99741,0.0,06/25/1303 +5.7483,50.84397,1637,12,7,0,4,30,3.55,5.0,fr,46894,32,1973769,1,2,Active Shallow Crust,128.895,89.99363,0.0,12/07/1637 +5.7483,50.84397,8585,10,28,18,48,1,3.55,5.0,fr,46895,171,1973769,1,2,Active Shallow Crust,128.895,89.99363,0.0,10/28/8585 +5.7483,50.84397,9315,1,26,7,41,24,3.65,5.0,fr,46896,186,1973772,1,8,Active Shallow Crust,0.0,89.98865,0.0,01/26/9315 +5.7483,50.84397,1340,8,25,11,2,30,3.65,5.0,fr,46897,26,1973772,1,8,Active Shallow Crust,0.0,89.98865,0.0,08/25/1340 +5.7483,50.84397,9776,2,5,1,12,47,3.65,5.0,fr,46898,195,1973772,1,8,Active Shallow Crust,0.0,89.98865,0.0,02/05/9776 +5.7483,50.84397,2329,3,2,8,49,36,3.65,5.0,fr,46899,46,1973772,1,8,Active Shallow Crust,0.0,89.98865,0.0,03/02/2329 +5.7483,50.84397,4384,12,9,3,12,8,3.65,5.0,fr,46900,87,1973772,1,8,Active Shallow Crust,0.0,89.98865,0.0,12/09/4384 +5.7483,50.84397,1807,5,6,19,21,9,3.65,5.0,fr,46901,36,1973772,1,8,Active Shallow Crust,0.0,89.98865,0.0,05/06/1807 +5.7483,50.84397,3595,6,22,4,47,45,3.65,5.0,fr,46902,71,1973772,1,8,Active Shallow Crust,0.0,89.98865,0.0,06/22/3595 +5.7483,50.84397,2088,7,9,7,20,59,3.65,5.0,fr,46903,41,1973772,1,8,Active Shallow Crust,0.0,89.98865,0.0,07/09/2088 +5.7483,50.84397,6867,12,15,19,18,0,3.65,15.0,fr,46904,137,1973773,1,1,Active Shallow Crust,0.0,89.98865,0.0,12/15/6867 +5.7483,50.84397,2554,4,13,8,14,59,3.65,27.5,fr,46905,51,1973774,1,1,Active Shallow Crust,0.0,89.98865,0.0,04/13/2554 +5.7483,50.84397,3619,3,15,2,46,50,3.65,5.0,fr,46906,72,1973775,1,1,Active Shallow Crust,240.0017,58.0132,0.0,03/15/3619 +5.7483,50.84397,7824,9,1,8,15,20,3.65,15.0,fr,46907,156,1973776,1,1,Active Shallow Crust,240.0017,58.0132,0.0,09/01/7824 +5.7483,50.84397,8387,4,15,12,53,51,3.65,5.0,fr,46908,167,1973778,1,1,Active Shallow Crust,0.0,89.98852,-90.0,04/15/8387 +5.7483,50.84397,4047,9,18,16,5,53,3.65,5.0,fr,46909,80,1973781,1,1,Active Shallow Crust,128.8994,89.96361,0.0,09/18/4047 +5.7483,50.84397,8229,9,11,7,21,30,3.75,5.0,fr,46910,164,1973784,1,4,Active Shallow Crust,0.0,89.98988,0.0,09/11/8229 +5.7483,50.84397,84,11,3,22,16,21,3.75,5.0,fr,46911,1,1973784,1,4,Active Shallow Crust,0.0,89.98988,0.0,11/03/0084 +5.7483,50.84397,9914,12,1,7,43,39,3.75,5.0,fr,46912,198,1973784,1,4,Active Shallow Crust,0.0,89.98988,0.0,12/01/9914 +5.7483,50.84397,3377,3,4,14,44,0,3.75,5.0,fr,46913,67,1973784,1,4,Active Shallow Crust,0.0,89.98988,0.0,03/04/3377 +5.7483,50.84397,3427,3,2,17,4,56,3.75,15.0,fr,46914,68,1973785,1,1,Active Shallow Crust,0.0,89.98988,0.0,03/02/3427 +5.7483,50.84397,2836,11,16,9,7,39,3.75,27.5,fr,46915,56,1973786,1,1,Active Shallow Crust,0.0,89.98988,0.0,11/16/2836 +5.7483,50.84397,3147,8,19,22,56,27,3.75,5.0,fr,46916,62,1973790,1,3,Active Shallow Crust,0.0,89.98977,-90.0,08/19/3147 +5.7483,50.84397,3137,1,16,3,32,2,3.75,5.0,fr,46917,62,1973790,1,3,Active Shallow Crust,0.0,89.98977,-90.0,01/16/3137 +5.7483,50.84397,3073,6,12,16,46,15,3.75,5.0,fr,46918,61,1973790,1,3,Active Shallow Crust,0.0,89.98977,-90.0,06/12/3073 +5.7483,50.84397,5872,6,8,18,54,7,3.85,5.0,fr,46919,117,1973796,1,1,Active Shallow Crust,0.0,89.99098,0.0,06/08/5872 +5.7483,50.84397,333,9,27,4,50,23,3.85,27.5,fr,46920,6,1973798,1,1,Active Shallow Crust,0.0,89.99098,0.0,09/27/0333 +5.7483,50.84397,4425,2,4,11,1,52,3.85,27.5,fr,46921,88,1973804,1,1,Active Shallow Crust,0.0,89.99088,-90.0,02/04/4425 +5.7483,50.84397,9254,8,16,19,18,51,3.95,5.0,fr,46922,185,1973808,1,1,Active Shallow Crust,0.0,89.99197,0.0,08/16/9254 +5.7483,50.84397,9432,7,9,23,56,3,3.95,27.5,fr,46923,188,1973810,1,1,Active Shallow Crust,0.0,89.99197,0.0,07/09/9432 +5.7483,50.84397,3025,2,22,17,52,59,4.05,5.0,fr,46924,60,1973820,1,1,Active Shallow Crust,0.0,89.98926,0.0,02/22/3025 +5.7483,50.84397,7335,1,15,23,4,59,4.05,15.0,fr,46925,146,1973821,1,2,Active Shallow Crust,0.0,89.98926,0.0,01/15/7335 +5.7483,50.84397,808,4,12,20,5,59,4.05,15.0,fr,46926,16,1973821,1,2,Active Shallow Crust,0.0,89.98926,0.0,04/12/0808 +5.7483,50.84397,6692,2,17,17,52,37,4.15,5.0,fr,46927,133,1973832,1,2,Active Shallow Crust,0.0,89.99043,0.0,02/17/6692 +5.7483,50.84397,8653,3,22,9,35,44,4.15,5.0,fr,46928,173,1973832,1,2,Active Shallow Crust,0.0,89.99043,0.0,03/22/8653 +5.7483,50.84397,5649,2,23,11,19,6,4.15,15.0,fr,46929,112,1973833,1,1,Active Shallow Crust,0.0,89.99043,0.0,02/23/5649 +5.7483,50.84397,1772,9,28,7,41,0,4.15,27.5,fr,46930,35,1973834,1,1,Active Shallow Crust,0.0,89.99043,0.0,09/28/1772 +5.7483,50.84397,4352,4,15,0,22,46,4.15,15.0,fr,46931,87,1973839,1,1,Active Shallow Crust,0.0,89.99032,-90.0,04/15/4352 +5.7483,50.84397,4681,1,4,13,1,46,4.25,5.0,fr,46932,93,1973844,1,1,Active Shallow Crust,0.0,89.98862,0.0,01/04/4681 +5.7483,50.84397,2164,8,8,20,20,11,4.25,5.0,fr,46933,43,1973847,1,1,Active Shallow Crust,240.009,57.99444,0.0,08/08/2164 +5.7483,50.84397,3545,4,28,0,54,4,4.35,5.0,fr,46934,70,1973856,1,1,Active Shallow Crust,0.0,89.98986,0.0,04/28/3545 +5.7483,50.84397,2923,10,31,0,17,32,4.35,15.0,fr,46935,58,1973857,1,1,Active Shallow Crust,0.0,89.98986,0.0,10/31/2923 +5.7483,50.84397,8675,11,26,1,9,59,4.35,5.0,fr,46936,173,1973859,1,1,Active Shallow Crust,240.0097,57.99592,0.0,11/26/8675 +5.7483,50.84397,5512,11,3,7,28,24,4.45,5.0,fr,46937,110,1973868,1,1,Active Shallow Crust,0.0,89.99096,0.0,11/03/5512 +5.7483,50.84397,4864,8,7,9,32,55,4.85,5.0,fr,46938,97,1973916,1,2,Active Shallow Crust,0.0,89.99002,0.0,08/07/4864 +5.7483,50.84397,9699,8,7,19,8,24,4.85,5.0,fr,46939,193,1973916,1,2,Active Shallow Crust,0.0,89.99002,0.0,08/07/9699 +5.7483,50.84397,6465,9,15,4,22,49,5.05,27.5,fr,46940,129,1973948,1,1,Active Shallow Crust,0.0,89.98969,-90.0,09/15/6465 +5.7483,50.84397,8152,12,20,0,19,25,5.05,5.0,fr,46941,163,1973949,1,1,Active Shallow Crust,128.8833,89.9905,0.0,12/20/8152 +5.7483,50.84397,4453,10,17,20,35,20,5.25,15.0,fr,46942,89,1973965,1,1,Active Shallow Crust,0.0,89.9901,0.0,10/17/4453 +5.7483,50.84397,7740,7,28,17,42,29,5.35,15.0,fr,46943,154,1973980,1,1,Active Shallow Crust,240.0285,57.99836,0.0,07/28/7740 +5.7483,50.84397,1491,4,10,9,18,29,5.65,5.0,fr,46944,29,1974015,1,1,Active Shallow Crust,240.0422,58.00021,0.0,04/10/1491 +3.38842,42.40264,5507,12,16,6,53,23,3.55,5.0,fr,46945,110,1974240,1,1,Active Shallow Crust,0.0,89.98883,0.0,12/16/5507 +3.38842,42.40264,3019,12,16,9,8,34,3.55,15.0,fr,46946,60,1974241,1,1,Active Shallow Crust,0.0,89.98883,0.0,12/16/3019 +3.38842,42.40264,7977,2,26,5,43,43,3.55,5.0,fr,46947,159,1974246,1,1,Active Shallow Crust,0.0,89.9887,-90.0,02/26/7977 +3.38842,42.40264,126,6,22,3,39,58,3.65,5.0,fr,46948,2,1974252,1,1,Active Shallow Crust,0.0,89.99004,0.0,06/22/0126 +3.38842,42.40264,3899,4,15,7,41,17,3.75,5.0,fr,46949,77,1974264,1,1,Active Shallow Crust,0.0,89.99113,0.0,04/15/3899 +3.38842,42.40264,2007,6,26,9,46,55,3.75,5.0,fr,46950,40,1974270,1,1,Active Shallow Crust,0.0,89.99103,-90.0,06/26/2007 +3.38842,42.40264,9356,8,28,8,32,45,3.95,5.0,fr,46951,187,1974288,1,2,Active Shallow Crust,0.0,89.9906,0.0,08/28/9356 +3.38842,42.40264,7421,3,28,22,3,18,3.95,5.0,fr,46952,148,1974288,1,2,Active Shallow Crust,0.0,89.9906,0.0,03/28/7421 +3.38842,42.40264,3457,1,12,5,15,55,4.25,5.0,fr,46953,69,1974327,1,1,Active Shallow Crust,240.0067,57.99395,0.0,01/12/3457 +3.38842,42.40264,406,5,7,6,15,18,4.25,15.0,fr,46954,8,1974328,1,1,Active Shallow Crust,240.0067,57.99395,0.0,05/07/0406 +3.38842,42.40264,4979,12,3,20,3,56,4.35,5.0,fr,46955,99,1974345,1,1,Active Shallow Crust,128.8988,89.98261,0.0,12/03/4979 +1.56432,43.85101,9587,3,28,18,47,8,3.55,15.0,fr,46956,191,1974721,1,1,Active Shallow Crust,0.0,89.98909,0.0,03/28/9587 +1.56432,43.85101,5307,6,21,22,20,2,3.55,27.5,fr,46957,106,1974728,1,1,Active Shallow Crust,0.0,89.99081,-90.0,06/21/5307 +1.56432,43.85101,2015,3,24,3,39,50,3.65,5.0,fr,46958,40,1974735,1,1,Active Shallow Crust,240.0008,58.01311,0.0,03/24/2015 +1.56432,43.85101,8109,1,23,23,30,50,4.45,15.0,fr,46959,162,1974832,1,1,Active Shallow Crust,240.0045,57.99457,0.0,01/23/8109 +1.56432,43.85101,4609,9,2,4,50,17,4.75,15.0,fr,46960,92,1974865,1,1,Active Shallow Crust,0.0,89.98995,0.0,09/02/4609 +5.84187,50.9787,9978,5,4,4,24,35,3.55,5.0,fr,46961,199,1975200,1,5,Active Shallow Crust,0.0,89.9873,0.0,05/04/9978 +5.84187,50.9787,6133,2,23,4,16,58,3.55,5.0,fr,46962,122,1975200,1,5,Active Shallow Crust,0.0,89.9873,0.0,02/23/6133 +5.84187,50.9787,1327,2,27,5,9,48,3.55,5.0,fr,46963,26,1975200,1,5,Active Shallow Crust,0.0,89.9873,0.0,02/27/1327 +5.84187,50.9787,7242,11,25,19,35,23,3.55,5.0,fr,46964,144,1975200,1,5,Active Shallow Crust,0.0,89.9873,0.0,11/25/7242 +5.84187,50.9787,5977,9,23,17,54,7,3.55,5.0,fr,46965,119,1975200,1,5,Active Shallow Crust,0.0,89.9873,0.0,09/23/5977 +5.84187,50.9787,1664,12,8,5,34,56,3.55,15.0,fr,46966,33,1975201,1,2,Active Shallow Crust,0.0,89.9873,0.0,12/08/1664 +5.84187,50.9787,353,1,10,11,6,21,3.55,15.0,fr,46967,7,1975201,1,2,Active Shallow Crust,0.0,89.9873,0.0,01/10/0353 +5.84187,50.9787,4891,10,12,0,14,22,3.55,5.0,fr,46968,97,1975203,1,1,Active Shallow Crust,240.0121,57.99852,0.0,10/12/4891 +5.84187,50.9787,2589,3,12,13,10,51,3.55,5.0,fr,46969,51,1975206,1,1,Active Shallow Crust,0.0,89.98715,-90.0,03/12/2589 +5.84187,50.9787,9768,12,9,3,33,7,3.55,5.0,fr,46970,195,1975209,1,1,Active Shallow Crust,128.8962,89.99365,0.0,12/09/9768 +5.84187,50.9787,595,10,11,21,9,36,3.65,5.0,fr,46971,11,1975212,1,6,Active Shallow Crust,0.0,89.98869,0.0,10/11/0595 +5.84187,50.9787,7677,11,13,0,3,47,3.65,5.0,fr,46972,153,1975212,1,6,Active Shallow Crust,0.0,89.98869,0.0,11/13/7677 +5.84187,50.9787,8070,7,31,11,7,18,3.65,5.0,fr,46973,161,1975212,1,6,Active Shallow Crust,0.0,89.98869,0.0,07/31/8070 +5.84187,50.9787,7689,1,1,21,16,57,3.65,5.0,fr,46974,153,1975212,1,6,Active Shallow Crust,0.0,89.98869,0.0,01/01/7689 +5.84187,50.9787,3718,2,3,5,48,45,3.65,5.0,fr,46975,74,1975212,1,6,Active Shallow Crust,0.0,89.98869,0.0,02/03/3718 +5.84187,50.9787,9115,6,22,13,28,44,3.65,5.0,fr,46976,182,1975212,1,6,Active Shallow Crust,0.0,89.98869,0.0,06/22/9115 +5.84187,50.9787,9525,9,24,18,30,44,3.65,27.5,fr,46977,190,1975217,1,1,Active Shallow Crust,240.0021,58.01252,0.0,09/24/9525 +5.84187,50.9787,2405,12,11,16,32,9,3.75,5.0,fr,46978,48,1975224,1,3,Active Shallow Crust,0.0,89.98991,0.0,12/11/2405 +5.84187,50.9787,4237,9,30,2,25,54,3.75,5.0,fr,46979,84,1975224,1,3,Active Shallow Crust,0.0,89.98991,0.0,09/30/4237 +5.84187,50.9787,9750,12,15,16,56,19,3.75,5.0,fr,46980,194,1975224,1,3,Active Shallow Crust,0.0,89.98991,0.0,12/15/9750 +5.84187,50.9787,6649,8,7,23,50,26,3.75,15.0,fr,46981,132,1975225,1,2,Active Shallow Crust,0.0,89.98991,0.0,08/07/6649 +5.84187,50.9787,8014,3,28,6,5,4,3.75,15.0,fr,46982,160,1975225,1,2,Active Shallow Crust,0.0,89.98991,0.0,03/28/8014 +5.84187,50.9787,628,2,16,2,59,19,3.75,5.0,fr,46983,12,1975227,1,1,Active Shallow Crust,240.0094,58.01805,0.0,02/16/0628 +5.84187,50.9787,1726,1,6,15,47,46,3.75,15.0,fr,46984,34,1975228,1,1,Active Shallow Crust,240.0094,58.01805,0.0,01/06/1726 +5.84187,50.9787,2832,11,20,23,20,1,3.85,5.0,fr,46985,56,1975236,1,1,Active Shallow Crust,0.0,89.99101,0.0,11/20/2832 +5.84187,50.9787,4217,11,24,15,8,15,3.85,5.0,fr,46986,84,1975242,1,1,Active Shallow Crust,0.0,89.99091,-90.0,11/24/4217 +5.84187,50.9787,3267,9,10,19,57,56,3.85,5.0,fr,46987,65,1975245,1,1,Active Shallow Crust,128.8954,89.99326,0.0,09/10/3267 +5.84187,50.9787,5114,5,4,9,16,54,3.95,5.0,fr,46988,102,1975248,1,3,Active Shallow Crust,0.0,89.99199,0.0,05/04/5114 +5.84187,50.9787,7165,12,6,17,39,58,3.95,5.0,fr,46989,143,1975248,1,3,Active Shallow Crust,0.0,89.99199,0.0,12/06/7165 +5.84187,50.9787,928,3,30,11,7,30,3.95,5.0,fr,46990,18,1975248,1,3,Active Shallow Crust,0.0,89.99199,0.0,03/30/0928 +5.84187,50.9787,3738,10,12,21,2,16,3.95,5.0,fr,46991,74,1975251,1,2,Active Shallow Crust,240.0207,58.00513,0.0,10/12/3738 +5.84187,50.9787,7274,10,3,15,59,21,3.95,5.0,fr,46992,145,1975251,1,2,Active Shallow Crust,240.0207,58.00513,0.0,10/03/7274 +5.84187,50.9787,5813,11,28,8,7,15,3.95,5.0,fr,46993,116,1975257,1,1,Active Shallow Crust,128.8989,89.99399,0.0,11/28/5813 +5.84187,50.9787,5280,5,12,6,24,10,4.05,5.0,fr,46994,105,1975260,1,1,Active Shallow Crust,0.0,89.98929,0.0,05/12/5280 +5.84187,50.9787,9916,11,23,4,25,10,4.15,5.0,fr,46995,198,1975272,1,1,Active Shallow Crust,0.0,89.99046,0.0,11/23/9916 +5.84187,50.9787,9958,12,16,18,32,53,4.15,15.0,fr,46996,199,1975273,1,2,Active Shallow Crust,0.0,89.99046,0.0,12/16/9958 +5.84187,50.9787,1274,3,12,20,1,48,4.15,15.0,fr,46997,25,1975273,1,2,Active Shallow Crust,0.0,89.99046,0.0,03/12/1274 +5.84187,50.9787,7157,9,15,22,33,0,4.25,5.0,fr,46998,143,1975284,1,1,Active Shallow Crust,0.0,89.98866,0.0,09/15/7157 +5.84187,50.9787,3969,1,22,18,34,27,4.45,5.0,fr,46999,79,1975308,1,1,Active Shallow Crust,0.0,89.99099,0.0,01/22/3969 +5.84187,50.9787,6057,1,23,1,6,45,4.55,5.0,fr,47000,121,1975320,1,1,Active Shallow Crust,0.0,89.98996,0.0,01/23/6057 +5.84187,50.9787,9180,3,31,21,25,59,4.65,5.0,fr,47001,183,1975332,1,1,Active Shallow Crust,0.0,89.98927,0.0,03/31/9180 +5.84187,50.9787,1630,6,21,7,20,26,4.75,5.0,fr,47002,32,1975344,1,2,Active Shallow Crust,0.0,89.99043,0.0,06/21/1630 +5.84187,50.9787,4648,11,21,14,34,3,4.75,5.0,fr,47003,92,1975344,1,2,Active Shallow Crust,0.0,89.99043,0.0,11/21/4648 +5.84187,50.9787,1545,2,18,22,36,19,4.85,15.0,fr,47004,30,1975360,1,1,Active Shallow Crust,240.0194,58.00269,0.0,02/18/1545 +5.84187,50.9787,3173,1,16,3,47,44,4.95,5.0,fr,47005,63,1975368,1,1,Active Shallow Crust,0.0,89.98986,0.0,01/16/3173 +5.84187,50.9787,2018,8,6,13,10,5,5.55,15.0,fr,47006,40,1975447,1,1,Active Shallow Crust,0.0,89.98972,-90.0,08/06/2018 +5.841871,50.9787,420,11,17,19,6,12,6.05,5.357596,fr,47007,8,1975500,1,1,Active Shallow Crust,0.0,89.98999,0.0,11/17/0420 +6.98522,50.50439,5000,10,23,3,35,20,3.55,5.0,fr,47008,99,1976160,1,4,Active Shallow Crust,0.0,89.98717,0.0,10/23/5000 +6.98522,50.50439,7622,9,3,4,54,30,3.55,5.0,fr,47009,152,1976160,1,4,Active Shallow Crust,0.0,89.98717,0.0,09/03/7622 +6.98522,50.50439,5046,10,18,6,13,47,3.55,5.0,fr,47010,100,1976160,1,4,Active Shallow Crust,0.0,89.98717,0.0,10/18/5046 +6.98522,50.50439,9638,12,11,7,2,40,3.55,5.0,fr,47011,192,1976160,1,4,Active Shallow Crust,0.0,89.98717,0.0,12/11/9638 +6.98522,50.50439,5349,1,23,0,30,31,3.55,15.0,fr,47012,106,1976161,1,2,Active Shallow Crust,0.0,89.98717,0.0,01/23/5349 +6.98522,50.50439,27,3,25,7,12,45,3.55,15.0,fr,47013,0,1976161,1,2,Active Shallow Crust,0.0,89.98717,0.0,03/25/0027 +6.98522,50.50439,3499,5,17,0,9,11,3.65,5.0,fr,47014,69,1976172,1,3,Active Shallow Crust,0.0,89.98857,0.0,05/17/3499 +6.98522,50.50439,9947,7,6,11,49,39,3.65,5.0,fr,47015,198,1976172,1,3,Active Shallow Crust,0.0,89.98857,0.0,07/06/9947 +6.98522,50.50439,9544,10,24,10,33,47,3.65,5.0,fr,47016,190,1976172,1,3,Active Shallow Crust,0.0,89.98857,0.0,10/24/9544 +6.98522,50.50439,3608,4,18,14,58,49,3.75,5.0,fr,47017,72,1976184,1,1,Active Shallow Crust,0.0,89.98981,0.0,04/18/3608 +6.98522,50.50439,8085,6,5,4,50,22,3.75,5.0,fr,47018,161,1976187,1,1,Active Shallow Crust,240.0085,58.0184,0.0,06/05/8085 +6.98522,50.50439,5614,1,31,11,23,35,3.85,15.0,fr,47019,112,1976197,1,1,Active Shallow Crust,0.0,89.99092,0.0,01/31/5614 +6.98522,50.50439,9284,4,16,3,52,51,3.95,5.0,fr,47020,185,1976208,1,1,Active Shallow Crust,0.0,89.99191,0.0,04/16/9284 +6.98522,50.50439,1674,8,29,5,35,31,3.95,5.0,fr,47021,33,1976211,1,1,Active Shallow Crust,240.0203,58.0048,0.0,08/29/1674 +6.98522,50.50439,1585,5,29,16,35,38,4.05,15.0,fr,47022,31,1976221,1,1,Active Shallow Crust,0.0,89.98918,0.0,05/29/1585 +6.98522,50.50439,6140,8,28,0,13,37,4.25,5.0,fr,47023,122,1976247,1,1,Active Shallow Crust,240.0086,57.99387,0.0,08/28/6140 +6.98522,50.50439,1059,12,20,5,53,38,4.85,5.0,fr,47024,21,1976322,1,1,Active Shallow Crust,0.0,89.98983,-90.0,12/20/1059 +6.98522,50.50439,9714,1,10,6,38,23,5.95,5.0,fr,47025,194,1976448,1,1,Active Shallow Crust,0.0,89.98988,0.0,01/10/9714 +-2.49114,47.44035,8197,10,28,14,26,54,3.55,15.0,fr,47026,163,1976641,1,1,Active Shallow Crust,0.0,89.98977,0.0,10/28/8197 +-2.49114,47.44035,6139,9,16,6,32,41,3.55,15.0,fr,47027,122,1976644,1,1,Active Shallow Crust,240.0123,57.99847,0.0,09/16/6139 +-2.49114,47.44035,5270,4,3,7,53,7,3.65,15.0,fr,47028,105,1976653,1,1,Active Shallow Crust,0.0,89.99088,0.0,04/03/5270 +-2.49114,47.44035,9477,9,10,16,37,31,3.75,5.0,fr,47029,189,1976664,1,1,Active Shallow Crust,0.0,89.98917,0.0,09/10/9477 +-2.49114,47.44035,4817,8,24,19,2,23,4.15,27.5,fr,47030,96,1976720,1,1,Active Shallow Crust,0.0,89.98962,-90.0,08/24/4817 +-2.49114,47.44035,1209,8,18,1,26,4,4.25,15.0,fr,47031,24,1976725,1,1,Active Shallow Crust,0.0,89.98933,0.0,08/18/1209 +-2.49114,47.44035,4986,12,16,13,35,49,4.25,5.0,fr,47032,99,1976727,1,1,Active Shallow Crust,240.0078,57.9941,0.0,12/16/4986 +-2.49114,47.44035,1378,2,17,18,31,11,4.25,5.0,fr,47033,27,1976733,1,1,Active Shallow Crust,128.8943,89.98098,0.0,02/17/1378 +-2.49114,47.44035,6579,3,17,14,27,31,4.55,5.0,fr,47034,131,1976763,1,1,Active Shallow Crust,240.0097,57.99739,0.0,03/17/6579 +-2.49114,47.44035,5830,10,10,16,14,0,4.95,15.0,fr,47035,116,1976812,1,1,Active Shallow Crust,240.0123,58.00462,0.0,10/10/5830 +4.24841,41.58549,1372,9,5,9,28,34,3.55,5.0,fr,47036,27,1977120,1,1,Active Shallow Crust,0.0,89.99245,0.0,09/05/1372 +4.24841,41.58549,9822,3,25,11,53,56,3.75,5.0,fr,47037,196,1977144,1,1,Active Shallow Crust,0.0,89.98801,0.0,03/25/9822 +4.24841,41.58549,4198,8,4,5,16,31,4.15,5.0,fr,47038,83,1977192,1,1,Active Shallow Crust,0.0,89.98866,0.0,08/04/4198 +4.24841,41.58549,1444,5,15,22,9,40,4.15,15.0,fr,47039,28,1977193,1,1,Active Shallow Crust,0.0,89.98866,0.0,05/15/1444 +4.24841,41.58549,2395,7,16,19,43,14,4.65,27.5,fr,47040,47,1977254,1,1,Active Shallow Crust,0.0,89.98937,0.0,07/16/2395 +0.92588,52.65574,2702,4,23,15,16,33,3.75,5.0,fr,47041,54,1977624,1,1,Active Shallow Crust,0.0,89.99028,0.0,04/23/2702 +0.92588,52.65574,7112,8,18,3,24,33,4.25,15.0,fr,47042,142,1977685,1,1,Active Shallow Crust,0.0,89.9901,0.0,08/18/7112 +-0.32253,46.53912,6406,4,19,9,39,7,3.65,5.0,fr,47043,128,1978092,1,1,Active Shallow Crust,0.0,89.98995,0.0,04/19/6406 +-0.32253,46.53912,9324,5,10,12,44,46,3.65,5.0,fr,47044,186,1978098,1,1,Active Shallow Crust,0.0,89.98984,-90.0,05/10/9324 +-0.32253,46.53912,7824,1,11,4,46,56,3.65,15.0,fr,47045,156,1978099,1,1,Active Shallow Crust,0.0,89.98984,-90.0,01/11/7824 +-0.32253,46.53912,8428,10,9,16,9,14,3.75,5.0,fr,47046,168,1978113,1,1,Active Shallow Crust,128.8967,89.96733,0.0,10/09/8428 +-0.32253,46.53912,2751,8,5,20,48,1,3.85,5.0,fr,47047,55,1978116,1,1,Active Shallow Crust,0.0,89.98987,0.0,08/05/2751 +-0.32253,46.53912,5084,7,6,2,15,24,3.95,5.0,fr,47048,101,1978128,1,1,Active Shallow Crust,0.0,89.98988,0.0,07/06/5084 +-0.32253,46.53912,7211,11,3,2,4,59,3.95,5.0,fr,47049,144,1978131,1,1,Active Shallow Crust,240.0198,58.00497,0.0,11/03/7211 +-0.32253,46.53912,9723,5,13,22,39,13,4.05,5.0,fr,47050,194,1978140,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/13/9723 +-0.32253,46.53912,2272,6,6,2,57,24,4.15,5.0,fr,47051,45,1978155,1,1,Active Shallow Crust,240.0084,57.99731,0.0,06/06/2272 +-0.32253,46.53912,649,1,11,19,58,1,4.25,5.0,fr,47052,12,1978164,1,1,Active Shallow Crust,0.0,89.98993,0.0,01/11/0649 +-0.32253,46.53912,6144,8,29,19,29,51,4.25,5.0,fr,47053,122,1978167,1,1,Active Shallow Crust,240.0076,57.99408,0.0,08/29/6144 +-0.32253,46.53912,8936,9,16,2,31,26,4.55,5.0,fr,47054,178,1978203,1,1,Active Shallow Crust,240.0093,57.99738,0.0,09/16/8936 +-0.32253,46.53912,1116,11,11,13,59,16,4.75,5.0,fr,47055,22,1978224,1,1,Active Shallow Crust,0.0,89.98998,0.0,11/11/1116 +-0.32253,46.53912,3221,5,10,7,17,7,4.85,5.0,fr,47056,64,1978236,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/10/3221 +2.69276,45.5955,4611,10,16,0,11,52,3.55,5.0,fr,47057,92,1979040,1,1,Active Shallow Crust,0.0,89.98942,0.0,10/16/4611 +2.69276,45.5955,1778,7,24,4,26,46,3.55,15.0,fr,47058,35,1979041,1,1,Active Shallow Crust,0.0,89.98942,0.0,07/24/1778 +2.69276,45.5955,4276,10,14,3,44,52,3.55,27.5,fr,47059,85,1979042,1,1,Active Shallow Crust,0.0,89.98942,0.0,10/14/4276 +2.69276,45.5955,4243,4,16,6,27,7,3.65,5.0,fr,47060,84,1979052,1,1,Active Shallow Crust,0.0,89.99057,0.0,04/16/4243 +2.69276,45.5955,5094,6,26,7,19,44,3.65,5.0,fr,47061,101,1979055,1,1,Active Shallow Crust,240.0012,58.01303,0.0,06/26/5094 +2.69276,45.5955,4746,2,17,7,31,59,3.75,5.0,fr,47062,94,1979064,1,1,Active Shallow Crust,0.0,89.98879,0.0,02/17/4746 +2.69276,45.5955,312,4,26,21,53,23,3.75,15.0,fr,47063,6,1979065,1,3,Active Shallow Crust,0.0,89.98879,0.0,04/26/0312 +2.69276,45.5955,5321,5,24,7,43,32,3.75,15.0,fr,47064,106,1979065,1,3,Active Shallow Crust,0.0,89.98879,0.0,05/24/5321 +2.69276,45.5955,819,9,8,0,22,49,3.75,15.0,fr,47065,16,1979065,1,3,Active Shallow Crust,0.0,89.98879,0.0,09/08/0819 +2.69276,45.5955,9602,9,23,10,2,27,3.85,15.0,fr,47066,192,1979077,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/23/9602 +2.69276,45.5955,5072,8,4,19,2,13,3.95,15.0,fr,47067,101,1979092,1,1,Active Shallow Crust,240.0195,58.00517,0.0,08/04/5072 +2.69276,45.5955,5162,12,17,11,18,8,4.05,15.0,fr,47068,103,1979101,1,2,Active Shallow Crust,0.0,89.99008,0.0,12/17/5162 +2.69276,45.5955,1091,4,10,7,41,16,4.05,15.0,fr,47069,21,1979101,1,2,Active Shallow Crust,0.0,89.99008,0.0,04/10/1091 +2.69276,45.5955,4970,6,2,22,38,37,4.05,5.0,fr,47070,99,1979103,1,1,Active Shallow Crust,240.0058,58.00563,0.0,06/02/4970 +2.69276,45.5955,6264,7,12,18,16,37,4.15,5.0,fr,47071,125,1979112,1,1,Active Shallow Crust,0.0,89.98939,0.0,07/12/6264 +2.69276,45.5955,9293,1,29,18,31,56,4.45,5.0,fr,47072,185,1979148,1,1,Active Shallow Crust,0.0,89.98998,0.0,01/29/9293 +6.04919,42.76621,4734,1,26,1,30,2,3.55,27.5,fr,47073,94,1979522,1,1,Active Shallow Crust,0.0,89.9926,0.0,01/26/4734 +6.04919,42.76621,5808,4,19,11,45,10,4.25,5.0,fr,47074,116,1979604,1,1,Active Shallow Crust,0.0,89.99008,0.0,04/19/5808 +0.04919,43.85786,4666,3,21,14,56,22,3.55,5.0,fr,47075,93,1980480,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/21/4666 +0.04919,43.85786,6700,10,19,3,56,40,3.75,15.0,fr,47076,133,1980511,1,1,Active Shallow Crust,0.0,89.99001,-90.0,10/19/6700 +0.04919,43.85786,9142,4,30,2,8,46,3.85,5.0,fr,47077,182,1980516,1,1,Active Shallow Crust,0.0,89.98998,0.0,04/30/9142 +0.04919,43.85786,6247,9,29,22,34,54,3.95,5.0,fr,47078,124,1980528,1,1,Active Shallow Crust,0.0,89.99,0.0,09/29/6247 +0.04919,43.85786,1855,2,8,8,16,45,4.05,5.0,fr,47079,37,1980543,1,1,Active Shallow Crust,240.0056,58.00576,0.0,02/08/1855 +5.93841,47.73597,3518,4,6,18,58,37,3.55,5.0,fr,47080,70,1980960,1,1,Active Shallow Crust,0.0,89.99322,0.0,04/06/3518 +5.93841,47.73597,9315,7,19,19,15,44,3.55,15.0,fr,47081,186,1980961,1,1,Active Shallow Crust,0.0,89.99322,0.0,07/19/9315 +5.93841,47.73597,5484,2,18,17,39,18,3.65,5.0,fr,47082,109,1980972,1,1,Active Shallow Crust,0.0,89.98791,0.0,02/18/5484 +5.93841,47.73597,6357,8,14,17,15,42,3.65,15.0,fr,47083,127,1980973,1,1,Active Shallow Crust,0.0,89.98791,0.0,08/14/6357 +5.93841,47.73597,6359,10,3,7,21,7,3.65,27.5,fr,47084,127,1980974,1,1,Active Shallow Crust,0.0,89.98791,0.0,10/03/6359 +5.93841,47.73597,1855,4,18,6,28,52,3.65,5.0,fr,47085,37,1980975,1,1,Active Shallow Crust,240.0013,58.01311,0.0,04/18/1855 +5.93841,47.73597,6300,9,28,13,10,7,3.75,5.0,fr,47086,125,1980984,1,2,Active Shallow Crust,0.0,89.98923,0.0,09/28/6300 +5.93841,47.73597,5505,1,19,6,9,17,3.75,5.0,fr,47087,110,1980984,1,2,Active Shallow Crust,0.0,89.98923,0.0,01/19/5505 +5.93841,47.73597,4650,7,25,7,48,21,3.75,15.0,fr,47088,92,1980985,1,1,Active Shallow Crust,0.0,89.98923,0.0,07/25/4650 +5.93841,47.73597,4294,1,15,4,34,43,3.85,5.0,fr,47089,85,1981002,1,1,Active Shallow Crust,0.0,89.99029,-90.0,01/15/4294 +5.93841,47.73597,9006,11,16,21,4,41,3.95,15.0,fr,47090,180,1981009,1,1,Active Shallow Crust,0.0,89.99144,0.0,11/16/9006 +5.93841,47.73597,2671,10,17,21,43,6,4.15,5.0,fr,47091,53,1981032,1,1,Active Shallow Crust,0.0,89.9898,0.0,10/17/2671 +5.93841,47.73597,3443,11,3,7,15,58,4.35,15.0,fr,47092,68,1981057,1,1,Active Shallow Crust,0.0,89.9892,0.0,11/03/3443 +2.07306,48.28524,8662,9,23,8,12,52,3.65,5.0,fr,47093,173,1981452,1,1,Active Shallow Crust,0.0,89.99103,0.0,09/23/8662 +2.07306,48.28524,6345,12,18,19,6,52,3.95,27.5,fr,47094,126,1981490,1,1,Active Shallow Crust,0.0,89.98942,0.0,12/18/6345 +2.07306,48.28524,3606,10,13,13,24,19,4.15,5.0,fr,47095,72,1981512,1,1,Active Shallow Crust,0.0,89.98991,0.0,10/13/3606 +2.07306,48.28524,6300,12,12,5,33,8,4.15,15.0,fr,47096,125,1981513,1,1,Active Shallow Crust,0.0,89.98991,0.0,12/12/6300 +2.07306,48.28524,184,10,19,14,50,39,4.35,5.0,fr,47097,3,1981536,1,1,Active Shallow Crust,0.0,89.99065,0.0,10/19/0184 +7.32082,43.58724,6863,12,22,14,23,42,3.55,5.0,fr,47098,137,1981920,1,1,Active Shallow Crust,0.0,89.9927,0.0,12/22/6863 +7.32082,43.58724,5428,1,28,15,50,37,3.55,15.0,fr,47099,108,1981921,1,1,Active Shallow Crust,0.0,89.9927,0.0,01/28/5428 +7.32082,43.58724,2895,3,2,9,51,2,3.65,5.0,fr,47100,57,1981932,1,4,Active Shallow Crust,0.0,89.98698,0.0,03/02/2895 +7.32082,43.58724,1896,12,1,11,49,26,3.65,5.0,fr,47101,37,1981932,1,4,Active Shallow Crust,0.0,89.98698,0.0,12/01/1896 +7.32082,43.58724,4940,7,10,12,2,51,3.65,5.0,fr,47102,98,1981932,1,4,Active Shallow Crust,0.0,89.98698,0.0,07/10/4940 +7.32082,43.58724,7185,1,18,9,2,30,3.65,5.0,fr,47103,143,1981932,1,4,Active Shallow Crust,0.0,89.98698,0.0,01/18/7185 +7.32082,43.58724,3924,5,27,13,34,54,3.65,15.0,fr,47104,78,1981933,1,1,Active Shallow Crust,0.0,89.98698,0.0,05/27/3924 +7.32082,43.58724,6932,6,12,12,35,45,3.65,5.0,fr,47105,138,1981938,1,1,Active Shallow Crust,0.0,89.98683,-90.0,06/12/6932 +7.32082,43.58724,2459,3,13,19,56,55,3.65,5.0,fr,47106,49,1981941,1,1,Active Shallow Crust,128.901,89.96347,0.0,03/13/2459 +7.32082,43.58724,6782,6,4,23,43,45,3.75,5.0,fr,47107,135,1981944,1,1,Active Shallow Crust,0.0,89.9884,0.0,06/04/6782 +7.32082,43.58724,2944,4,21,15,53,46,3.95,27.5,fr,47108,58,1981973,1,1,Active Shallow Crust,240.0201,58.00499,0.0,04/21/2944 +7.32082,43.58724,4486,6,1,4,51,0,4.05,5.0,fr,47109,89,1981980,1,3,Active Shallow Crust,0.0,89.99178,0.0,06/01/4486 +7.32082,43.58724,3975,6,4,13,20,11,4.05,5.0,fr,47110,79,1981980,1,3,Active Shallow Crust,0.0,89.99178,0.0,06/04/3975 +7.32082,43.58724,6274,4,21,21,46,10,4.05,5.0,fr,47111,125,1981980,1,3,Active Shallow Crust,0.0,89.99178,0.0,04/21/6274 +7.32082,43.58724,6665,1,20,6,50,6,4.95,15.0,fr,47112,133,1982098,1,1,Active Shallow Crust,128.8912,89.98962,0.0,01/20/6665 +7.32082,43.58724,428,3,18,12,32,43,5.55,15.0,fr,47113,8,1982167,1,1,Active Shallow Crust,0.0,89.98965,-90.0,03/18/0428 +-3.66467,48.82484,2644,11,17,17,54,40,3.55,15.0,fr,47114,52,1982401,1,1,Active Shallow Crust,0.0,89.99004,0.0,11/17/2644 +-3.66467,48.82484,6461,10,20,3,22,12,3.55,15.0,fr,47115,129,1982410,1,1,Active Shallow Crust,128.8964,89.99336,0.0,10/20/6461 +-3.66467,48.82484,963,7,14,8,36,44,3.65,5.0,fr,47116,19,1982412,1,1,Active Shallow Crust,0.0,89.99113,0.0,07/14/0963 +-3.66467,48.82484,2287,2,2,17,18,37,3.65,5.0,fr,47117,45,1982418,1,1,Active Shallow Crust,0.0,89.99102,-90.0,02/02/2287 +-3.66467,48.82484,8959,4,14,22,21,46,3.75,5.0,fr,47118,179,1982424,1,1,Active Shallow Crust,0.0,89.98946,0.0,04/14/8959 +-3.66467,48.82484,6407,6,10,11,50,48,3.75,27.5,fr,47119,128,1982426,1,1,Active Shallow Crust,0.0,89.98946,0.0,06/10/6407 +-3.66467,48.82484,5675,5,25,10,11,33,4.15,5.0,fr,47120,113,1982472,1,1,Active Shallow Crust,0.0,89.99002,0.0,05/25/5675 +-3.66467,48.82484,6522,6,20,0,33,28,4.55,5.0,fr,47121,130,1982529,1,1,Active Shallow Crust,128.8933,89.98578,0.0,06/20/6522 +-3.66467,48.82484,5075,5,30,0,44,6,5.65,5.0,fr,47122,101,1982652,1,1,Active Shallow Crust,0.0,89.98994,0.0,05/30/5075 +0.97743,49.9408,8526,9,3,4,45,32,3.55,15.0,fr,47123,170,1982881,1,1,Active Shallow Crust,0.0,89.99026,0.0,09/03/8526 +0.97743,49.9408,6538,11,15,6,14,35,3.75,15.0,fr,47124,130,1982908,1,1,Active Shallow Crust,240.0088,58.01772,0.0,11/15/6538 +0.97743,49.9408,425,12,7,23,11,41,3.85,15.0,fr,47125,8,1982917,1,1,Active Shallow Crust,0.0,89.99023,0.0,12/07/0425 +0.97743,49.9408,3811,2,27,17,45,36,3.95,5.0,fr,47126,76,1982928,1,1,Active Shallow Crust,0.0,89.98976,0.0,02/27/3811 +0.97743,49.9408,1633,4,30,14,12,51,4.05,15.0,fr,47127,32,1982941,1,1,Active Shallow Crust,0.0,89.98996,0.0,04/30/1633 +0.97743,49.9408,8028,1,15,18,50,41,4.15,5.0,fr,47128,160,1982952,1,1,Active Shallow Crust,0.0,89.98984,0.0,01/15/8028 +0.97743,49.9408,6898,12,19,5,35,11,4.15,15.0,fr,47129,137,1982953,1,1,Active Shallow Crust,0.0,89.98984,0.0,12/19/6898 +0.97743,49.9408,4046,7,26,3,56,1,4.25,5.0,fr,47130,80,1982970,1,1,Active Shallow Crust,0.0,89.9901,-90.0,07/26/4046 +0.97743,49.9408,6034,1,12,8,23,2,4.35,5.0,fr,47131,120,1982976,1,1,Active Shallow Crust,0.0,89.98999,0.0,01/12/6034 +0.97743,49.9408,4926,6,24,4,5,22,4.75,27.5,fr,47132,98,1983035,1,1,Active Shallow Crust,128.8875,89.98811,0.0,06/24/4926 +0.97743,49.9408,1685,10,21,6,50,27,4.85,15.0,fr,47133,33,1983046,1,1,Active Shallow Crust,128.8913,89.98901,0.0,10/21/1685 +-0.55163,43.80133,9147,10,4,8,21,21,3.55,5.0,fr,47134,182,1983360,1,1,Active Shallow Crust,0.0,89.98999,0.0,10/04/9147 +-0.55163,43.80133,358,9,1,18,36,11,3.55,15.0,fr,47135,7,1983361,1,1,Active Shallow Crust,0.0,89.98999,0.0,09/01/0358 +-0.55163,43.80133,9145,2,5,16,56,33,3.65,15.0,fr,47136,182,1983373,1,1,Active Shallow Crust,0.0,89.99027,0.0,02/05/9145 +-0.55163,43.80133,6972,1,9,3,12,17,3.65,5.0,fr,47137,139,1983381,1,1,Active Shallow Crust,128.9005,89.96354,0.0,01/09/6972 +-0.55163,43.80133,6957,12,8,4,10,32,3.75,5.0,fr,47138,139,1983384,1,1,Active Shallow Crust,0.0,89.98988,0.0,12/08/6957 +-0.55163,43.80133,7190,11,14,17,48,36,3.95,15.0,fr,47139,143,1983409,1,1,Active Shallow Crust,0.0,89.99024,0.0,11/14/7190 +-0.55163,43.80133,8234,11,14,8,30,18,4.25,5.0,fr,47140,164,1983444,1,1,Active Shallow Crust,0.0,89.98984,0.0,11/14/8234 +0.46028,49.78468,5524,11,4,4,55,35,3.55,5.0,fr,47141,110,1984320,1,1,Active Shallow Crust,0.0,89.98983,0.0,11/04/5524 +0.46028,49.78468,4888,10,25,20,37,42,3.65,5.0,fr,47142,97,1984332,1,1,Active Shallow Crust,0.0,89.98985,0.0,10/25/4888 +0.46028,49.78468,2648,3,7,16,42,40,3.65,27.5,fr,47143,52,1984334,1,1,Active Shallow Crust,0.0,89.98985,0.0,03/07/2648 +0.46028,49.78468,2597,6,2,15,58,23,3.65,5.0,fr,47144,51,1984338,1,1,Active Shallow Crust,0.0,89.9901,-90.0,06/02/2597 +0.46028,49.78468,8428,7,11,16,35,32,3.75,15.0,fr,47145,168,1984345,1,1,Active Shallow Crust,0.0,89.98998,0.0,07/11/8428 +0.46028,49.78468,3191,11,7,14,18,24,3.75,5.0,fr,47146,63,1984347,1,1,Active Shallow Crust,240.0087,58.01765,0.0,11/07/3191 +0.46028,49.78468,1626,8,31,0,33,1,3.75,15.0,fr,47147,32,1984354,1,1,Active Shallow Crust,128.8962,89.96735,0.0,08/31/1626 +0.46028,49.78468,9158,4,20,12,24,55,3.85,15.0,fr,47148,183,1984360,1,1,Active Shallow Crust,240.0113,57.99791,0.0,04/20/9158 +0.46028,49.78468,2780,8,29,22,58,5,4.05,5.0,fr,47149,55,1984380,1,1,Active Shallow Crust,0.0,89.98993,0.0,08/29/2780 +0.46028,49.78468,5288,7,21,2,22,0,4.35,5.0,fr,47150,105,1984419,1,1,Active Shallow Crust,240.0092,57.99608,0.0,07/21/5288 +0.46028,49.78468,4721,11,17,4,9,42,4.55,5.0,fr,47151,94,1984449,1,1,Active Shallow Crust,128.893,89.98577,0.0,11/17/4721 +0.46028,49.78468,5111,8,27,15,16,20,4.65,15.0,fr,47152,102,1984453,1,1,Active Shallow Crust,0.0,89.99002,0.0,08/27/5111 +0.46028,49.78468,4011,5,15,17,26,52,5.15,5.0,fr,47153,80,1984521,1,1,Active Shallow Crust,128.882,89.99104,0.0,05/15/4011 +-2.11117,49.75776,1807,10,30,1,6,17,4.95,15.0,fr,47154,36,1984969,1,1,Active Shallow Crust,0.0,89.99025,0.0,10/30/1807 +0.8051,50.7161,1866,7,4,0,27,12,3.55,5.0,fr,47155,37,1985763,1,1,Active Shallow Crust,240.0126,57.99823,0.0,07/04/1866 +0.8051,50.7161,957,4,2,23,54,12,3.85,5.0,fr,47156,19,1985796,1,1,Active Shallow Crust,0.0,89.98983,0.0,04/02/0957 +0.8051,50.7161,8416,1,9,23,48,54,3.95,5.0,fr,47157,168,1985808,1,2,Active Shallow Crust,0.0,89.98993,0.0,01/09/8416 +0.8051,50.7161,2678,3,28,20,58,18,3.95,5.0,fr,47158,53,1985808,1,2,Active Shallow Crust,0.0,89.98993,0.0,03/28/2678 +0.8051,50.7161,7588,12,12,7,13,33,4.55,5.0,fr,47159,151,1985889,1,1,Active Shallow Crust,128.8927,89.98577,0.0,12/12/7588 +0.8051,50.7161,2554,10,30,17,14,14,4.65,15.0,fr,47160,51,1985896,1,1,Active Shallow Crust,240.0124,57.99453,0.0,10/30/2554 +-1.26062,48.2164,995,9,24,4,24,5,3.55,5.0,fr,47161,19,1986240,1,1,Active Shallow Crust,0.0,89.98992,0.0,09/24/0995 +-1.26062,48.2164,3066,11,19,8,3,54,3.65,5.0,fr,47162,61,1986252,1,1,Active Shallow Crust,0.0,89.98952,0.0,11/19/3066 +-1.26062,48.2164,2866,4,23,17,24,21,3.65,5.0,fr,47163,57,1986255,1,1,Active Shallow Crust,240.001,58.01306,0.0,04/23/2866 +-1.26062,48.2164,3888,5,23,10,13,54,3.65,27.5,fr,47164,77,1986263,1,1,Active Shallow Crust,128.9,89.96355,0.0,05/23/3888 +-1.26062,48.2164,157,3,29,14,41,2,3.75,5.0,fr,47165,3,1986267,1,1,Active Shallow Crust,240.0086,58.01756,0.0,03/29/0157 +-1.26062,48.2164,1112,12,22,12,44,57,3.95,5.0,fr,47166,22,1986288,1,1,Active Shallow Crust,0.0,89.99046,0.0,12/22/1112 +-1.26062,48.2164,3995,11,19,10,43,46,4.05,5.0,fr,47167,79,1986303,1,1,Active Shallow Crust,240.0063,58.00592,0.0,11/19/3995 +-1.26062,48.2164,358,6,25,6,8,33,4.15,5.0,fr,47168,7,1986312,1,1,Active Shallow Crust,0.0,89.9899,0.0,06/25/0358 +-1.26062,48.2164,8066,4,25,17,16,50,4.45,5.0,fr,47169,161,1986354,1,1,Active Shallow Crust,0.0,89.98975,-90.0,04/25/8066 +-1.26062,48.2164,1039,5,22,0,30,37,4.95,5.0,fr,47170,20,1986408,1,1,Active Shallow Crust,0.0,89.98994,0.0,05/22/1039 +-1.26062,48.2164,6720,11,3,13,17,30,5.85,5.0,fr,47171,134,1986519,1,1,Active Shallow Crust,240.0495,58.00016,0.0,11/03/6720 +2.06334,42.33049,149,7,20,9,14,45,3.55,5.0,fr,47172,2,1987200,1,5,Active Shallow Crust,0.0,89.98882,0.0,07/20/0149 +2.06334,42.33049,5492,12,5,8,32,59,3.55,5.0,fr,47173,109,1987200,1,5,Active Shallow Crust,0.0,89.98882,0.0,12/05/5492 +2.06334,42.33049,8405,7,9,19,13,22,3.55,5.0,fr,47174,168,1987200,1,5,Active Shallow Crust,0.0,89.98882,0.0,07/09/8405 +2.06334,42.33049,2955,9,19,22,56,53,3.55,5.0,fr,47175,59,1987200,1,5,Active Shallow Crust,0.0,89.98882,0.0,09/19/2955 +2.06334,42.33049,6249,2,9,15,37,0,3.55,5.0,fr,47176,124,1987200,1,5,Active Shallow Crust,0.0,89.98882,0.0,02/09/6249 +2.06334,42.33049,12,4,21,19,5,2,3.55,15.0,fr,47177,0,1987201,1,4,Active Shallow Crust,0.0,89.98882,0.0,04/21/0012 +2.06334,42.33049,2084,8,22,22,25,46,3.55,15.0,fr,47178,41,1987201,1,4,Active Shallow Crust,0.0,89.98882,0.0,08/22/2084 +2.06334,42.33049,6837,4,18,21,31,5,3.55,15.0,fr,47179,136,1987201,1,4,Active Shallow Crust,0.0,89.98882,0.0,04/18/6837 +2.06334,42.33049,1190,12,16,5,55,27,3.55,15.0,fr,47180,23,1987201,1,4,Active Shallow Crust,0.0,89.98882,0.0,12/16/1190 +2.06334,42.33049,272,3,2,6,18,5,3.55,5.0,fr,47181,5,1987203,1,1,Active Shallow Crust,240.0115,57.9979,0.0,03/02/0272 +2.06334,42.33049,6963,10,30,3,22,51,3.55,5.0,fr,47182,139,1987209,1,1,Active Shallow Crust,128.8963,89.99441,0.0,10/30/6963 +2.06334,42.33049,9352,6,28,3,49,25,3.55,15.0,fr,47183,187,1987210,1,1,Active Shallow Crust,128.8963,89.99441,0.0,06/28/9352 +2.06334,42.33049,2623,3,12,19,25,24,3.65,5.0,fr,47184,52,1987212,1,8,Active Shallow Crust,0.0,89.99004,0.0,03/12/2623 +2.06334,42.33049,5566,12,18,23,41,8,3.65,5.0,fr,47185,111,1987212,1,8,Active Shallow Crust,0.0,89.99004,0.0,12/18/5566 +2.06334,42.33049,9835,12,23,6,10,14,3.65,5.0,fr,47186,196,1987212,1,8,Active Shallow Crust,0.0,89.99004,0.0,12/23/9835 +2.06334,42.33049,6617,2,27,4,12,32,3.65,5.0,fr,47187,132,1987212,1,8,Active Shallow Crust,0.0,89.99004,0.0,02/27/6617 +2.06334,42.33049,4730,9,11,4,20,33,3.65,5.0,fr,47188,94,1987212,1,8,Active Shallow Crust,0.0,89.99004,0.0,09/11/4730 +2.06334,42.33049,8723,3,22,8,48,21,3.65,5.0,fr,47189,174,1987212,1,8,Active Shallow Crust,0.0,89.99004,0.0,03/22/8723 +2.06334,42.33049,9266,1,23,22,41,16,3.65,5.0,fr,47190,185,1987212,1,8,Active Shallow Crust,0.0,89.99004,0.0,01/23/9266 +2.06334,42.33049,8640,12,29,20,22,6,3.65,5.0,fr,47191,172,1987212,1,8,Active Shallow Crust,0.0,89.99004,0.0,12/29/8640 +2.06334,42.33049,1825,12,3,13,34,16,3.65,15.0,fr,47192,36,1987213,1,1,Active Shallow Crust,0.0,89.99004,0.0,12/03/1825 +2.06334,42.33049,5318,9,20,10,29,5,3.65,27.5,fr,47193,106,1987214,1,1,Active Shallow Crust,0.0,89.99004,0.0,09/20/5318 +2.06334,42.33049,1787,5,27,4,55,14,3.65,5.0,fr,47194,35,1987215,1,1,Active Shallow Crust,240.0006,58.01327,0.0,05/27/1787 +2.06334,42.33049,4164,7,22,0,50,4,3.65,15.0,fr,47195,83,1987219,1,1,Active Shallow Crust,0.0,89.98992,-90.0,07/22/4164 +2.06334,42.33049,5923,2,3,7,38,58,3.65,5.0,fr,47196,118,1987221,1,1,Active Shallow Crust,128.9001,89.96371,0.0,02/03/5923 +2.06334,42.33049,8194,1,15,2,14,4,3.75,5.0,fr,47197,163,1987224,1,3,Active Shallow Crust,0.0,89.99112,0.0,01/15/8194 +2.06334,42.33049,8884,6,12,12,2,38,3.75,5.0,fr,47198,177,1987224,1,3,Active Shallow Crust,0.0,89.99112,0.0,06/12/8884 +2.06334,42.33049,5847,5,30,22,7,24,3.75,5.0,fr,47199,116,1987224,1,3,Active Shallow Crust,0.0,89.99112,0.0,05/30/5847 +2.06334,42.33049,2353,10,1,14,41,18,3.75,15.0,fr,47200,47,1987225,1,2,Active Shallow Crust,0.0,89.99112,0.0,10/01/2353 +2.06334,42.33049,3503,6,22,16,51,39,3.75,15.0,fr,47201,70,1987225,1,2,Active Shallow Crust,0.0,89.99112,0.0,06/22/3503 +2.06334,42.33049,2806,2,26,1,51,30,3.75,27.5,fr,47202,56,1987226,1,1,Active Shallow Crust,0.0,89.99112,0.0,02/26/2806 +2.06334,42.33049,6702,7,11,13,47,1,3.75,5.0,fr,47203,134,1987230,1,1,Active Shallow Crust,0.0,89.99101,-90.0,07/11/6702 +2.06334,42.33049,1857,1,26,5,46,21,3.85,5.0,fr,47204,37,1987236,1,1,Active Shallow Crust,0.0,89.98945,0.0,01/26/1857 +2.06334,42.33049,8562,11,2,21,45,7,3.85,15.0,fr,47205,171,1987237,1,1,Active Shallow Crust,0.0,89.98944,0.0,11/02/8562 +2.06334,42.33049,9635,8,29,5,41,28,3.95,5.0,fr,47206,192,1987248,1,2,Active Shallow Crust,0.0,89.99059,0.0,08/29/9635 +2.06334,42.33049,7148,7,23,22,37,12,3.95,5.0,fr,47207,142,1987248,1,2,Active Shallow Crust,0.0,89.99059,0.0,07/23/7148 +2.06334,42.33049,226,7,29,17,48,7,3.95,15.0,fr,47208,4,1987249,1,1,Active Shallow Crust,0.0,89.99059,0.0,07/29/0226 +2.06334,42.33049,675,6,21,8,53,52,3.95,5.0,fr,47209,13,1987254,1,1,Active Shallow Crust,0.0,89.99049,-90.0,06/21/0675 +2.06334,42.33049,8564,10,14,17,6,58,3.95,5.0,fr,47210,171,1987257,1,1,Active Shallow Crust,128.9005,89.99412,0.0,10/14/8564 +2.06334,42.33049,8417,5,1,16,22,10,4.05,5.0,fr,47211,168,1987260,1,1,Active Shallow Crust,0.0,89.98952,0.0,05/01/8417 +2.06334,42.33049,5730,9,25,6,56,24,4.05,15.0,fr,47212,114,1987261,1,1,Active Shallow Crust,0.0,89.98952,0.0,09/25/5730 +2.06334,42.33049,6682,3,18,21,53,17,4.05,27.5,fr,47213,133,1987262,1,2,Active Shallow Crust,0.0,89.98952,0.0,03/18/6682 +2.06334,42.33049,972,9,18,13,48,16,4.05,27.5,fr,47214,19,1987262,1,2,Active Shallow Crust,0.0,89.98952,0.0,09/18/0972 +2.06334,42.33049,1257,5,15,11,34,33,4.05,5.0,fr,47215,25,1987263,1,1,Active Shallow Crust,240.0054,58.00569,0.0,05/15/1257 +2.06334,42.33049,327,8,26,16,18,51,4.15,5.0,fr,47216,6,1987272,1,1,Active Shallow Crust,0.0,89.99066,0.0,08/26/0327 +2.06334,42.33049,1132,11,26,12,52,14,4.15,15.0,fr,47217,22,1987273,1,3,Active Shallow Crust,0.0,89.99066,0.0,11/26/1132 +2.06334,42.33049,326,3,4,9,2,21,4.15,15.0,fr,47218,6,1987273,1,3,Active Shallow Crust,0.0,89.99066,0.0,03/04/0326 +2.06334,42.33049,3205,7,2,16,42,55,4.15,15.0,fr,47219,64,1987273,1,3,Active Shallow Crust,0.0,89.99066,0.0,07/02/3205 +2.06334,42.33049,9502,10,15,0,10,40,4.15,15.0,fr,47220,190,1987279,1,1,Active Shallow Crust,0.0,89.99055,-90.0,10/15/9502 +2.06334,42.33049,100,4,13,22,40,44,4.25,5.0,fr,47221,1,1987284,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/13/0100 +2.06334,42.33049,369,5,10,15,19,33,4.25,15.0,fr,47222,7,1987285,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/10/0369 +2.06334,42.33049,2524,4,15,22,56,16,4.25,5.0,fr,47223,50,1987287,1,1,Active Shallow Crust,240.0064,57.99397,0.0,04/15/2524 +2.06334,42.33049,3555,9,6,14,44,8,4.25,5.0,fr,47224,71,1987290,1,1,Active Shallow Crust,0.0,89.98989,-90.0,09/06/3555 +2.06334,42.33049,1923,12,29,13,33,44,4.35,15.0,fr,47225,38,1987297,1,1,Active Shallow Crust,0.0,89.98961,0.0,12/29/1923 +2.06334,42.33049,8996,7,21,10,41,47,4.35,15.0,fr,47226,179,1987300,1,1,Active Shallow Crust,240.0077,57.99574,0.0,07/21/8996 +2.06334,42.33049,9434,6,10,2,20,2,4.45,5.0,fr,47227,188,1987314,1,1,Active Shallow Crust,0.0,89.99063,-90.0,06/10/9434 +2.06334,42.33049,729,6,26,12,50,10,4.65,5.0,fr,47228,14,1987335,1,1,Active Shallow Crust,240.0095,57.99401,0.0,06/26/0729 +2.06334,42.33049,723,11,3,8,16,17,4.75,5.0,fr,47229,14,1987344,1,1,Active Shallow Crust,0.0,89.9897,0.0,11/03/0723 +2.06334,42.33049,6758,10,13,7,30,58,4.75,15.0,fr,47230,135,1987354,1,1,Active Shallow Crust,128.8897,89.98818,0.0,10/13/6758 +2.06334,42.33049,3721,7,18,21,54,27,4.75,27.5,fr,47231,74,1987355,1,1,Active Shallow Crust,128.8897,89.98818,0.0,07/18/3721 +2.06334,42.33049,7327,5,6,4,29,14,4.95,15.0,fr,47232,146,1987372,1,1,Active Shallow Crust,240.0101,58.00405,0.0,05/06/7327 +2.06334,42.33049,1197,10,14,1,15,57,5.35,27.5,fr,47233,23,1987427,1,1,Active Shallow Crust,128.8855,89.99188,0.0,10/14/1197 +2.060604,42.33399,3956,3,18,6,35,13,6.25,5.719927,fr,47234,79,1987527,1,1,Active Shallow Crust,240.0624,57.99967,0.0,03/18/3956 +2.04294,47.88855,2193,11,11,10,36,53,3.85,5.0,fr,47235,43,1987716,1,1,Active Shallow Crust,0.0,89.99043,0.0,11/11/2193 +2.04294,47.88855,5510,11,20,10,7,28,3.95,5.0,fr,47236,110,1987728,1,2,Active Shallow Crust,0.0,89.98933,0.0,11/20/5510 +2.04294,47.88855,5619,3,15,23,23,33,3.95,5.0,fr,47237,112,1987728,1,2,Active Shallow Crust,0.0,89.98933,0.0,03/15/5619 +2.04294,47.88855,2424,7,21,16,24,27,3.95,15.0,fr,47238,48,1987729,1,1,Active Shallow Crust,0.0,89.98933,0.0,07/21/2424 +2.04294,47.88855,6461,11,13,20,8,58,4.65,5.0,fr,47239,129,1987812,1,1,Active Shallow Crust,0.0,89.99047,0.0,11/13/6461 +-1.0942,43.47264,7176,10,16,4,21,11,3.55,5.0,fr,47240,143,1988160,1,1,Active Shallow Crust,0.0,89.99085,0.0,10/16/7176 +-1.0942,43.47264,6251,1,27,21,56,1,3.55,15.0,fr,47241,125,1988161,1,2,Active Shallow Crust,0.0,89.99085,0.0,01/27/6251 +-1.0942,43.47264,2194,4,24,5,38,12,3.55,15.0,fr,47242,43,1988161,1,2,Active Shallow Crust,0.0,89.99085,0.0,04/24/2194 +-1.0942,43.47264,691,10,12,15,31,37,3.65,15.0,fr,47243,13,1988173,1,1,Active Shallow Crust,0.0,89.99022,0.0,10/12/0691 +-1.0942,43.47264,6899,8,1,7,40,37,3.75,5.0,fr,47244,137,1988184,1,1,Active Shallow Crust,0.0,89.98983,0.0,08/01/6899 +-1.0942,43.47264,9605,4,23,5,8,52,3.75,27.5,fr,47245,192,1988186,1,1,Active Shallow Crust,0.0,89.98983,0.0,04/23/9605 +-1.0942,43.47264,9890,1,14,21,45,59,3.75,5.0,fr,47246,197,1988193,1,1,Active Shallow Crust,128.8968,89.9673,0.0,01/14/9890 +-1.0942,43.47264,7314,5,22,10,33,56,3.85,5.0,fr,47247,146,1988196,1,2,Active Shallow Crust,0.0,89.98964,0.0,05/22/7314 +-1.0942,43.47264,5274,1,3,4,18,1,3.85,5.0,fr,47248,105,1988196,1,2,Active Shallow Crust,0.0,89.98964,0.0,01/03/5274 +-1.0942,43.47264,8011,9,10,7,20,43,3.95,5.0,fr,47249,160,1988214,1,1,Active Shallow Crust,0.0,89.98949,-90.0,09/10/8011 +-1.0942,43.47264,8584,8,26,6,39,10,4.05,15.0,fr,47250,171,1988221,1,1,Active Shallow Crust,0.0,89.98972,0.0,08/26/8584 +-1.0942,43.47264,3261,7,31,7,58,3,4.05,15.0,fr,47251,65,1988224,1,1,Active Shallow Crust,240.0054,58.00583,0.0,07/31/3261 +-1.0942,43.47264,2485,5,10,17,26,1,4.25,5.0,fr,47252,49,1988247,1,1,Active Shallow Crust,240.0069,57.99397,0.0,05/10/2485 +-2.02634,50.69223,5352,4,1,22,26,25,3.75,27.5,fr,47253,107,1988675,1,1,Active Shallow Crust,128.8964,89.96734,0.0,04/01/5352 +5.10159,46.0793,5541,7,18,6,21,26,3.55,5.0,fr,47254,110,1989600,1,2,Active Shallow Crust,0.0,89.993,0.0,07/18/5541 +5.10159,46.0793,5752,3,17,4,4,25,3.55,5.0,fr,47255,115,1989600,1,2,Active Shallow Crust,0.0,89.993,0.0,03/17/5752 +5.10159,46.0793,4350,8,19,5,10,20,3.65,15.0,fr,47256,86,1989613,1,1,Active Shallow Crust,0.0,89.98753,0.0,08/19/4350 +5.10159,46.0793,5336,5,1,13,40,29,3.75,15.0,fr,47257,106,1989625,1,1,Active Shallow Crust,0.0,89.98888,0.0,05/01/5336 +5.10159,46.0793,4366,5,26,18,34,17,3.95,5.0,fr,47258,87,1989648,1,1,Active Shallow Crust,0.0,89.99117,0.0,05/26/4366 +5.10159,46.0793,9575,1,5,9,19,30,3.95,15.0,fr,47259,191,1989652,1,1,Active Shallow Crust,240.0194,58.00522,0.0,01/05/9575 +5.10159,46.0793,3021,10,26,14,3,11,4.25,5.0,fr,47260,60,1989684,1,1,Active Shallow Crust,0.0,89.99062,0.0,10/26/3021 +-0.56449,43.38915,2205,11,6,6,22,28,3.55,5.0,fr,47261,44,1990080,1,2,Active Shallow Crust,0.0,89.98992,0.0,11/06/2205 +-0.56449,43.38915,4952,8,1,7,16,7,3.55,5.0,fr,47262,99,1990080,1,2,Active Shallow Crust,0.0,89.98992,0.0,08/01/4952 +-0.56449,43.38915,3806,7,30,10,3,2,3.55,15.0,fr,47263,76,1990081,1,1,Active Shallow Crust,0.0,89.98992,0.0,07/30/3806 +-0.56449,43.38915,6921,1,17,2,47,18,3.55,5.0,fr,47264,138,1990083,1,1,Active Shallow Crust,240.0119,57.9982,0.0,01/17/6921 +-0.56449,43.38915,3063,12,12,10,27,35,3.55,15.0,fr,47265,61,1990084,1,1,Active Shallow Crust,240.0119,57.9982,0.0,12/12/3063 +-0.56449,43.38915,3645,12,4,20,9,57,3.55,5.0,fr,47266,72,1990086,1,1,Active Shallow Crust,0.0,89.98981,-90.0,12/04/3645 +-0.56449,43.38915,2847,4,4,14,10,41,3.55,15.0,fr,47267,56,1990090,1,1,Active Shallow Crust,128.8963,89.99359,0.0,04/04/2847 +-0.56449,43.38915,140,4,24,10,6,6,3.65,5.0,fr,47268,2,1990092,1,2,Active Shallow Crust,0.0,89.9902,0.0,04/24/0140 +-0.56449,43.38915,6708,12,10,18,0,5,3.65,5.0,fr,47269,134,1990092,1,2,Active Shallow Crust,0.0,89.9902,0.0,12/10/6708 +-0.56449,43.38915,7150,9,23,18,53,14,3.65,15.0,fr,47270,142,1990093,1,2,Active Shallow Crust,0.0,89.9902,0.0,09/23/7150 +-0.56449,43.38915,1373,10,23,14,33,42,3.65,15.0,fr,47271,27,1990093,1,2,Active Shallow Crust,0.0,89.9902,0.0,10/23/1373 +-0.56449,43.38915,4095,2,25,2,32,39,3.65,5.0,fr,47272,81,1990095,1,1,Active Shallow Crust,240.0008,58.01279,0.0,02/25/4095 +-0.56449,43.38915,3939,4,8,9,33,43,3.65,15.0,fr,47273,78,1990096,1,1,Active Shallow Crust,240.0008,58.01279,0.0,04/08/3939 +-0.56449,43.38915,3268,10,12,13,55,57,3.65,5.0,fr,47274,65,1990098,1,1,Active Shallow Crust,0.0,89.99009,-90.0,10/12/3268 +-0.56449,43.38915,6253,3,29,4,16,24,3.75,5.0,fr,47275,125,1990104,1,2,Active Shallow Crust,0.0,89.98981,0.0,03/29/6253 +-0.56449,43.38915,6602,10,27,18,40,27,3.75,5.0,fr,47276,132,1990104,1,2,Active Shallow Crust,0.0,89.98981,0.0,10/27/6602 +-0.56449,43.38915,89,5,27,13,35,31,3.75,15.0,fr,47277,1,1990105,1,2,Active Shallow Crust,0.0,89.98981,0.0,05/27/0089 +-0.56449,43.38915,7358,12,28,11,20,0,3.75,15.0,fr,47278,147,1990105,1,2,Active Shallow Crust,0.0,89.98981,0.0,12/28/7358 +-0.56449,43.38915,4439,7,12,9,27,54,3.75,15.0,fr,47279,88,1990108,1,1,Active Shallow Crust,240.0081,58.01743,0.0,07/12/4439 +-0.56449,43.38915,3312,5,31,5,15,52,3.85,15.0,fr,47280,66,1990117,1,1,Active Shallow Crust,0.0,89.99027,0.0,05/31/3312 +-0.56449,43.38915,1448,5,28,11,15,34,3.85,5.0,fr,47281,28,1990122,1,1,Active Shallow Crust,0.0,89.99016,-90.0,05/28/1448 +-0.56449,43.38915,6123,4,3,20,57,25,3.95,5.0,fr,47282,122,1990128,1,1,Active Shallow Crust,0.0,89.99017,0.0,04/03/6123 +-0.56449,43.38915,3328,9,16,22,58,36,3.95,27.5,fr,47283,66,1990130,1,1,Active Shallow Crust,0.0,89.99017,0.0,09/16/3328 +-0.56449,43.38915,3718,6,4,3,58,50,4.05,5.0,fr,47284,74,1990140,1,1,Active Shallow Crust,0.0,89.99021,0.0,06/04/3718 +-0.56449,43.38915,7822,10,24,18,57,38,4.05,15.0,fr,47285,156,1990141,1,1,Active Shallow Crust,0.0,89.99021,0.0,10/24/7822 +-0.56449,43.38915,5501,6,30,7,27,22,4.05,5.0,fr,47286,110,1990143,1,1,Active Shallow Crust,240.0054,58.0057,0.0,06/30/5501 +-0.56449,43.38915,925,11,5,0,42,18,4.15,15.0,fr,47287,18,1990159,1,1,Active Shallow Crust,0.0,89.98978,-90.0,11/05/0925 +-0.56449,43.38915,6007,6,29,15,43,50,4.35,5.0,fr,47288,120,1990176,1,1,Active Shallow Crust,0.0,89.99015,0.0,06/29/6007 +-0.56449,43.38915,5493,6,15,1,28,26,4.35,15.0,fr,47289,109,1990186,1,1,Active Shallow Crust,128.8984,89.98272,0.0,06/15/5493 +-0.56449,43.38915,6929,1,21,8,1,9,4.55,5.0,fr,47290,138,1990206,1,1,Active Shallow Crust,0.0,89.99004,-90.0,01/21/6929 +-0.56449,43.38915,2706,11,24,5,59,34,4.65,5.0,fr,47291,54,1990212,1,1,Active Shallow Crust,0.0,89.98993,0.0,11/24/2706 +-0.56449,43.38915,5150,6,8,6,15,37,4.75,5.0,fr,47292,102,1990233,1,1,Active Shallow Crust,128.8896,89.98805,0.0,06/08/5150 +-0.56449,43.38915,7105,4,29,1,48,45,5.85,5.0,fr,47293,142,1990362,1,1,Active Shallow Crust,360.0,89.99002,-90.0,04/29/7105 +-0.5644878,43.38915,6781,2,22,1,18,56,6.15,6.011322,fr,47294,135,1990392,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/22/6781 +-4.05505,49.73413,8353,6,30,21,40,41,3.55,15.0,fr,47295,167,1990564,1,1,Active Shallow Crust,240.0127,57.99748,0.0,06/30/8353 +5.98731,51.48579,4968,1,25,12,54,47,3.55,5.0,fr,47296,99,1991040,1,1,Active Shallow Crust,0.0,89.98744,0.0,01/25/4968 +5.98731,51.48579,8530,12,20,23,26,7,3.55,15.0,fr,47297,170,1991047,1,1,Active Shallow Crust,0.0,89.9873,-90.0,12/20/8530 +5.98731,51.48579,2130,1,10,20,38,57,3.65,5.0,fr,47298,42,1991052,1,1,Active Shallow Crust,0.0,89.98881,0.0,01/10/2130 +5.98731,51.48579,1156,5,31,17,1,10,3.65,27.5,fr,47299,23,1991054,1,1,Active Shallow Crust,0.0,89.98881,0.0,05/31/1156 +5.98731,51.48579,3133,6,1,7,17,10,3.65,15.0,fr,47300,62,1991056,1,1,Active Shallow Crust,240.0017,58.01316,0.0,06/01/3133 +5.98731,51.48579,7741,2,10,5,22,38,3.65,5.0,fr,47301,154,1991058,1,1,Active Shallow Crust,0.0,89.98868,-90.0,02/10/7741 +5.98731,51.48579,9854,10,18,10,11,59,3.75,5.0,fr,47302,197,1991067,1,1,Active Shallow Crust,240.0081,58.01775,0.0,10/18/9854 +5.98731,51.48579,6093,8,17,12,57,13,3.85,5.0,fr,47303,121,1991076,1,1,Active Shallow Crust,0.0,89.99111,0.0,08/17/6093 +5.98731,51.48579,4228,4,4,21,25,30,4.45,5.0,fr,47304,84,1991157,1,1,Active Shallow Crust,128.891,89.99443,0.0,04/04/4228 +5.98731,51.48579,995,12,25,13,49,28,4.95,5.0,fr,47305,19,1991208,1,1,Active Shallow Crust,0.0,89.98997,0.0,12/25/0995 +2.3776,45.02399,8012,4,27,9,53,7,3.65,15.0,fr,47306,160,1992022,1,1,Active Shallow Crust,128.9009,89.96349,0.0,04/27/8012 +2.3776,45.02399,6040,10,22,12,29,52,3.75,5.0,fr,47307,120,1992027,1,1,Active Shallow Crust,240.0085,58.01736,0.0,10/22/6040 +2.3776,45.02399,8940,5,13,19,13,50,3.85,5.0,fr,47308,178,1992036,1,2,Active Shallow Crust,0.0,89.98991,0.0,05/13/8940 +2.3776,45.02399,2937,10,30,0,14,17,3.85,5.0,fr,47309,58,1992036,1,2,Active Shallow Crust,0.0,89.98991,0.0,10/30/2937 +2.3776,45.02399,110,4,30,2,0,15,3.85,15.0,fr,47310,2,1992037,1,2,Active Shallow Crust,0.0,89.98991,0.0,04/30/0110 +2.3776,45.02399,9427,11,22,23,16,19,3.85,15.0,fr,47311,188,1992037,1,2,Active Shallow Crust,0.0,89.98991,0.0,11/22/9427 +2.3776,45.02399,514,5,6,13,7,38,3.95,5.0,fr,47312,10,1992051,1,1,Active Shallow Crust,240.0196,58.00525,0.0,05/06/0514 +2.3776,45.02399,2090,10,1,6,30,11,4.25,5.0,fr,47313,41,1992087,1,1,Active Shallow Crust,240.0072,57.99416,0.0,10/01/2090 +4.42583,44.94087,6,3,1,1,25,58,3.55,5.0,fr,47314,0,1992480,1,1,Active Shallow Crust,0.0,89.99286,0.0,03/01/0006 +4.42583,44.94087,1246,8,3,6,50,12,3.55,15.0,fr,47315,24,1992481,1,1,Active Shallow Crust,0.0,89.99286,0.0,08/03/1246 +4.42583,44.94087,6788,6,5,6,17,30,3.55,5.0,fr,47316,135,1992486,1,1,Active Shallow Crust,0.0,89.99278,-90.0,06/05/6788 +4.42583,44.94087,8976,8,18,4,50,51,3.65,5.0,fr,47317,179,1992501,1,1,Active Shallow Crust,128.9012,89.96349,0.0,08/18/8976 +4.42583,44.94087,6112,5,27,18,13,29,4.05,27.5,fr,47318,122,1992545,1,1,Active Shallow Crust,240.006,58.00582,0.0,05/27/6112 +4.42583,44.94087,6267,7,12,18,11,17,4.15,5.0,fr,47319,125,1992552,1,1,Active Shallow Crust,0.0,89.98927,0.0,07/12/6267 +4.42583,44.94087,5719,10,1,19,52,47,4.45,27.5,fr,47320,114,1992590,1,1,Active Shallow Crust,0.0,89.98987,0.0,10/01/5719 +4.42583,44.94087,9759,7,9,14,48,29,4.75,5.0,fr,47321,195,1992624,1,1,Active Shallow Crust,0.0,89.98924,0.0,07/09/9759 +0.75901,49.93059,6925,6,27,7,48,43,3.55,5.0,fr,47322,138,1992960,1,1,Active Shallow Crust,0.0,89.99026,0.0,06/27/6925 +0.75901,49.93059,6855,12,17,7,51,29,3.55,15.0,fr,47323,137,1992961,1,1,Active Shallow Crust,0.0,89.99026,0.0,12/17/6855 +0.75901,49.93059,960,10,29,22,45,33,3.65,5.0,fr,47324,19,1992972,1,1,Active Shallow Crust,0.0,89.98988,0.0,10/29/0960 +0.75901,49.93059,3233,4,13,21,5,57,3.65,15.0,fr,47325,64,1992973,1,1,Active Shallow Crust,0.0,89.98988,0.0,04/13/3233 +0.75901,49.93059,4146,6,14,18,54,40,3.85,5.0,fr,47326,82,1992999,1,1,Active Shallow Crust,240.0114,57.99789,0.0,06/14/4146 +0.75901,49.93059,857,9,27,0,51,46,3.85,27.5,fr,47327,17,1993004,1,1,Active Shallow Crust,0.0,89.99012,-90.0,09/27/0857 +0.75901,49.93059,4838,11,11,5,50,11,3.95,5.0,fr,47328,96,1993011,1,1,Active Shallow Crust,240.0203,58.00515,0.0,11/11/4838 +0.75901,49.93059,9195,12,30,6,48,47,4.35,15.0,fr,47329,183,1993057,1,1,Active Shallow Crust,0.0,89.98998,0.0,12/30/9195 +0.75901,49.93059,8814,4,11,17,20,15,4.35,27.5,fr,47330,176,1993058,1,1,Active Shallow Crust,0.0,89.98998,0.0,04/11/8814 +0.75901,49.93059,4117,6,4,11,57,35,4.35,5.0,fr,47331,82,1993059,1,1,Active Shallow Crust,240.0092,57.99611,0.0,06/04/4117 +-1.44902,42.33048,1633,6,9,23,21,58,3.55,27.5,fr,47332,32,1993442,1,1,Active Shallow Crust,0.0,89.99068,0.0,06/09/1633 +-1.44902,42.33048,9642,3,26,3,17,49,3.55,5.0,fr,47333,192,1993449,1,1,Active Shallow Crust,128.8963,89.99348,0.0,03/26/9642 +-1.44902,42.33048,3695,4,18,16,12,24,3.65,5.0,fr,47334,73,1993452,1,1,Active Shallow Crust,0.0,89.99004,0.0,04/18/3695 +-1.44902,42.33048,6712,3,26,13,38,52,3.75,5.0,fr,47335,134,1993464,1,1,Active Shallow Crust,0.0,89.98964,0.0,03/26/6712 +-1.44902,42.33048,1872,3,19,0,1,23,3.75,5.0,fr,47336,37,1993470,1,1,Active Shallow Crust,0.0,89.98952,-90.0,03/19/1872 +-1.44902,42.33048,4410,10,4,14,23,42,4.25,15.0,fr,47337,88,1993531,1,1,Active Shallow Crust,0.0,89.98989,-90.0,10/04/4410 +-1.44902,42.33048,5395,12,12,3,32,18,4.35,5.0,fr,47338,107,1993536,1,1,Active Shallow Crust,0.0,89.99036,0.0,12/12/5395 +5.50174,48.31552,4865,4,18,13,20,20,3.55,5.0,fr,47339,97,1993920,1,1,Active Shallow Crust,0.0,89.99329,0.0,04/18/4865 +5.50174,48.31552,5292,4,18,6,26,30,3.75,5.0,fr,47340,105,1993953,1,1,Active Shallow Crust,128.8972,89.96698,0.0,04/18/5292 +5.50174,48.31552,868,6,28,9,35,40,3.85,5.0,fr,47341,17,1993962,1,1,Active Shallow Crust,0.0,89.99039,-90.0,06/28/0868 +-2.16536,43.63334,5395,4,6,10,38,53,3.75,27.5,fr,47342,107,1994429,1,1,Active Shallow Crust,240.0079,58.01776,0.0,04/06/5395 +-2.16536,43.63334,2765,6,27,20,18,28,4.25,15.0,fr,47343,55,1994485,1,1,Active Shallow Crust,0.0,89.99022,0.0,06/27/2765 +-2.16536,43.63334,5502,2,11,15,16,29,4.95,5.0,fr,47344,110,1994568,1,1,Active Shallow Crust,0.0,89.98981,0.0,02/11/5502 +-1.20699,44.42219,8243,4,26,17,43,23,3.55,27.5,fr,47345,164,1994882,1,1,Active Shallow Crust,0.0,89.9892,0.0,04/26/8243 +0.50684,51.99931,7658,2,5,22,19,37,3.55,5.0,fr,47346,153,1995366,1,1,Active Shallow Crust,0.0,89.98979,-90.0,02/05/7658 +0.50684,51.99931,6867,12,16,1,24,52,4.35,15.0,fr,47347,137,1995457,1,1,Active Shallow Crust,0.0,89.99011,0.0,12/16/6867 +0.50684,51.99931,584,8,11,3,15,3,4.75,27.5,fr,47348,11,1995512,1,1,Active Shallow Crust,0.0,89.98994,-90.0,08/11/0584 +2.25175,47.89857,1085,12,5,4,29,2,3.65,5.0,fr,47349,21,1995861,1,1,Active Shallow Crust,128.8997,89.96355,0.0,12/05/1085 +2.25175,47.89857,9287,9,9,23,33,48,3.75,5.0,fr,47350,185,1995864,1,1,Active Shallow Crust,0.0,89.98926,0.0,09/09/9287 +2.25175,47.89857,3732,7,23,19,56,50,3.85,5.0,fr,47351,74,1995876,1,1,Active Shallow Crust,0.0,89.99043,0.0,07/23/3732 +2.25175,47.89857,9112,6,11,17,38,58,3.85,5.0,fr,47352,182,1995885,1,1,Active Shallow Crust,128.8957,89.99402,0.0,06/11/9112 +2.25175,47.89857,8,8,29,8,45,56,3.95,15.0,fr,47353,0,1995892,1,1,Active Shallow Crust,240.0201,58.00498,0.0,08/29/0008 +4.76537,44.19759,9414,4,15,15,50,26,3.55,5.0,fr,47354,188,1996320,1,3,Active Shallow Crust,0.0,89.99277,0.0,04/15/9414 +4.76537,44.19759,7616,10,25,13,20,57,3.55,5.0,fr,47355,152,1996320,1,3,Active Shallow Crust,0.0,89.99277,0.0,10/25/7616 +4.76537,44.19759,6124,11,17,5,12,35,3.55,5.0,fr,47356,122,1996320,1,3,Active Shallow Crust,0.0,89.99277,0.0,11/17/6124 +4.76537,44.19759,4962,2,18,16,0,51,3.55,5.0,fr,47357,99,1996323,1,1,Active Shallow Crust,240.0132,57.99772,0.0,02/18/4962 +4.76537,44.19759,5149,4,21,19,9,10,3.55,5.0,fr,47358,102,1996326,1,2,Active Shallow Crust,0.0,89.99268,-90.0,04/21/5149 +4.76537,44.19759,8723,5,26,17,10,47,3.55,5.0,fr,47359,174,1996326,1,2,Active Shallow Crust,0.0,89.99268,-90.0,05/26/8723 +4.76537,44.19759,1200,9,14,6,36,10,3.65,15.0,fr,47360,23,1996333,1,1,Active Shallow Crust,0.0,89.98711,0.0,09/14/1200 +4.76537,44.19759,4854,5,7,15,40,9,3.65,15.0,fr,47361,97,1996336,1,1,Active Shallow Crust,240.0004,58.01307,0.0,05/07/4854 +4.76537,44.19759,4525,9,24,10,32,32,3.65,5.0,fr,47362,90,1996338,1,1,Active Shallow Crust,0.0,89.98696,-90.0,09/24/4525 +4.76537,44.19759,3669,9,23,16,17,53,3.75,5.0,fr,47363,73,1996344,1,2,Active Shallow Crust,0.0,89.98852,0.0,09/23/3669 +4.76537,44.19759,3009,8,16,11,49,21,3.75,5.0,fr,47364,60,1996344,1,2,Active Shallow Crust,0.0,89.98852,0.0,08/16/3009 +4.76537,44.19759,4829,5,9,13,26,53,3.75,15.0,fr,47365,96,1996345,1,1,Active Shallow Crust,0.0,89.98852,0.0,05/09/4829 +4.76537,44.19759,7390,12,31,23,22,47,3.75,27.5,fr,47366,147,1996346,1,1,Active Shallow Crust,0.0,89.98852,0.0,12/31/7390 +4.76537,44.19759,8604,2,27,19,54,7,3.85,5.0,fr,47367,172,1996356,1,5,Active Shallow Crust,0.0,89.98976,0.0,02/27/8604 +4.76537,44.19759,9966,5,3,11,41,24,3.85,5.0,fr,47368,199,1996356,1,5,Active Shallow Crust,0.0,89.98976,0.0,05/03/9966 +4.76537,44.19759,5213,11,27,14,37,55,3.85,5.0,fr,47369,104,1996356,1,5,Active Shallow Crust,0.0,89.98976,0.0,11/27/5213 +4.76537,44.19759,9788,1,21,14,30,7,3.85,5.0,fr,47370,195,1996356,1,5,Active Shallow Crust,0.0,89.98976,0.0,01/21/9788 +4.76537,44.19759,6799,8,16,5,9,44,3.85,5.0,fr,47371,135,1996356,1,5,Active Shallow Crust,0.0,89.98976,0.0,08/16/6799 +4.76537,44.19759,344,2,28,7,25,24,3.85,15.0,fr,47372,6,1996357,1,1,Active Shallow Crust,0.0,89.98976,0.0,02/28/0344 +4.76537,44.19759,5117,7,22,19,14,51,3.95,5.0,fr,47373,102,1996368,1,1,Active Shallow Crust,0.0,89.99088,0.0,07/22/5117 +4.76537,44.19759,9166,11,30,1,49,23,3.95,15.0,fr,47374,183,1996369,1,2,Active Shallow Crust,0.0,89.99088,0.0,11/30/9166 +4.76537,44.19759,9544,2,26,2,59,44,3.95,15.0,fr,47375,190,1996369,1,2,Active Shallow Crust,0.0,89.99088,0.0,02/26/9544 +4.76537,44.19759,4847,12,7,12,18,54,3.95,5.0,fr,47376,96,1996371,1,1,Active Shallow Crust,240.0204,58.00487,0.0,12/07/4847 +4.76537,44.19759,1729,11,28,5,41,36,3.95,15.0,fr,47377,34,1996372,1,1,Active Shallow Crust,240.0204,58.00487,0.0,11/28/1729 +4.76537,44.19759,4161,5,7,5,43,17,3.95,5.0,fr,47378,83,1996374,1,1,Active Shallow Crust,0.0,89.99077,-90.0,05/07/4161 +4.76537,44.19759,3953,10,20,17,38,24,3.95,5.0,fr,47379,79,1996377,1,1,Active Shallow Crust,128.8998,89.99316,0.0,10/20/3953 +4.76537,44.19759,9910,7,1,1,49,35,4.05,5.0,fr,47380,198,1996380,1,1,Active Shallow Crust,0.0,89.99187,0.0,07/01/9910 +4.76537,44.19759,5398,6,8,9,7,24,4.05,5.0,fr,47381,107,1996383,1,1,Active Shallow Crust,240.0058,58.00579,0.0,06/08/5398 +4.76537,44.19759,918,5,26,19,8,11,4.05,5.0,fr,47382,18,1996386,1,1,Active Shallow Crust,0.0,89.99178,-90.0,05/26/0918 +4.76537,44.19759,3742,6,1,4,53,5,4.15,5.0,fr,47383,74,1996401,1,1,Active Shallow Crust,128.8976,89.99457,0.0,06/01/3742 +4.76537,44.19759,7764,2,12,6,17,50,4.25,5.0,fr,47384,155,1996404,1,1,Active Shallow Crust,0.0,89.99031,0.0,02/12/7764 +4.76537,44.19759,2345,10,30,11,44,52,4.35,5.0,fr,47385,46,1996416,1,1,Active Shallow Crust,0.0,89.99136,0.0,10/30/2345 +4.76537,44.19759,6164,1,17,5,25,0,4.45,15.0,fr,47386,123,1996438,1,1,Active Shallow Crust,128.8925,89.99359,0.0,01/17/6164 +4.76537,44.19759,6517,1,25,19,3,23,4.55,5.0,fr,47387,130,1996443,1,1,Active Shallow Crust,240.0084,57.99744,0.0,01/25/6517 +4.76537,44.19759,8763,8,29,20,58,45,5.15,15.0,fr,47388,175,1996513,1,1,Active Shallow Crust,0.0,89.98969,0.0,08/29/8763 +4.76537,44.19759,3300,3,26,9,49,22,5.95,5.0,fr,47389,65,1996614,1,1,Active Shallow Crust,0.0,89.98985,-90.0,03/26/3300 +5.10003,44.11074,7851,11,10,23,45,27,3.55,15.0,fr,47390,157,1996807,1,1,Active Shallow Crust,0.0,89.99268,-90.0,11/10/7851 +5.10003,44.11074,7911,3,28,14,50,38,3.65,15.0,fr,47391,158,1996816,1,1,Active Shallow Crust,240.0014,58.01179,0.0,03/28/7911 +5.10003,44.11074,860,9,19,11,38,3,3.75,5.0,fr,47392,17,1996824,1,2,Active Shallow Crust,0.0,89.98849,0.0,09/19/0860 +5.10003,44.11074,2792,6,9,1,13,2,3.75,5.0,fr,47393,55,1996824,1,2,Active Shallow Crust,0.0,89.98849,0.0,06/09/2792 +5.10003,44.11074,2186,4,10,5,31,39,3.75,15.0,fr,47394,43,1996834,1,1,Active Shallow Crust,128.8975,89.96745,0.0,04/10/2186 +5.10003,44.11074,3385,4,11,11,36,37,3.85,27.5,fr,47395,67,1996838,1,1,Active Shallow Crust,0.0,89.98975,0.0,04/11/3385 +5.10003,44.11074,1689,7,10,15,40,50,3.85,5.0,fr,47396,33,1996839,1,1,Active Shallow Crust,240.0108,57.99824,0.0,07/10/1689 +5.10003,44.11074,2561,6,30,12,48,56,3.85,5.0,fr,47397,51,1996845,1,1,Active Shallow Crust,128.8952,89.99487,0.0,06/30/2561 +5.10003,44.11074,8401,2,28,16,27,4,4.05,5.0,fr,47398,168,1996869,1,1,Active Shallow Crust,128.8918,89.9939,0.0,02/28/8401 +5.10003,44.11074,3693,9,30,5,30,18,4.15,27.5,fr,47399,73,1996874,1,1,Active Shallow Crust,0.0,89.98911,0.0,09/30/3693 +5.10003,44.11074,2278,2,17,9,31,7,4.15,5.0,fr,47400,45,1996878,1,1,Active Shallow Crust,0.0,89.98899,-90.0,02/17/2278 +5.10003,44.11074,9747,8,7,1,33,2,4.35,5.0,fr,47401,194,1996899,1,1,Active Shallow Crust,240.0078,57.99585,0.0,08/07/9747 +5.10003,44.11074,6167,4,5,13,21,27,4.35,5.0,fr,47402,123,1996905,1,1,Active Shallow Crust,128.8976,89.98294,0.0,04/05/6167 +5.10003,44.11074,3825,10,28,23,34,32,4.55,5.0,fr,47403,76,1996923,1,1,Active Shallow Crust,240.0083,57.99718,0.0,10/28/3825 +5.10003,44.11074,3826,1,28,0,54,44,4.55,27.5,fr,47404,76,1996928,1,1,Active Shallow Crust,0.0,89.99074,-90.0,01/28/3826 +5.10003,44.11074,3679,1,20,1,12,25,4.65,15.0,fr,47405,73,1996933,1,1,Active Shallow Crust,0.0,89.9898,0.0,01/20/3679 +5.10003,44.11074,9772,9,27,6,8,22,4.85,15.0,fr,47406,195,1996957,1,1,Active Shallow Crust,0.0,89.99027,0.0,09/27/9772 +5.10003,44.11074,9098,4,12,9,59,31,5.35,5.0,fr,47407,181,1997019,1,1,Active Shallow Crust,240.0233,57.99754,0.0,04/12/9098 +4.52595,42.43196,9940,1,5,23,38,5,3.55,5.0,fr,47408,198,1997283,1,1,Active Shallow Crust,240.0115,57.99883,0.0,01/05/9940 +8.15578,49.76675,9839,3,30,15,54,17,3.55,5.0,fr,47409,196,1998240,1,3,Active Shallow Crust,0.0,89.98698,0.0,03/30/9839 +8.15578,49.76675,2004,3,1,18,19,49,3.55,5.0,fr,47410,40,1998240,1,3,Active Shallow Crust,0.0,89.98698,0.0,03/01/2004 +8.15578,49.76675,7803,7,10,15,5,53,3.55,5.0,fr,47411,156,1998240,1,3,Active Shallow Crust,0.0,89.98698,0.0,07/10/7803 +8.15578,49.76675,7175,6,7,11,19,49,3.55,27.5,fr,47412,143,1998242,1,1,Active Shallow Crust,0.0,89.98698,0.0,06/07/7175 +8.15578,49.76675,2965,8,27,14,23,19,3.55,15.0,fr,47413,59,1998247,1,1,Active Shallow Crust,0.0,89.98682,-90.0,08/27/2965 +8.15578,49.76675,1290,7,12,3,48,17,3.55,27.5,fr,47414,25,1998248,1,2,Active Shallow Crust,0.0,89.98682,-90.0,07/12/1290 +8.15578,49.76675,2567,1,2,7,50,15,3.55,27.5,fr,47415,51,1998248,1,2,Active Shallow Crust,0.0,89.98682,-90.0,01/02/2567 +8.15578,49.76675,7112,3,30,9,21,16,3.55,5.0,fr,47416,142,1998249,1,1,Active Shallow Crust,128.8936,89.99348,0.0,03/30/7112 +8.15578,49.76675,9519,9,28,5,50,45,3.55,15.0,fr,47417,190,1998250,1,1,Active Shallow Crust,128.8936,89.99348,0.0,09/28/9519 +8.15578,49.76675,2762,4,9,20,23,26,3.65,5.0,fr,47418,55,1998252,1,4,Active Shallow Crust,0.0,89.98839,0.0,04/09/2762 +8.15578,49.76675,2097,11,5,1,22,20,3.65,5.0,fr,47419,41,1998252,1,4,Active Shallow Crust,0.0,89.98839,0.0,11/05/2097 +8.15578,49.76675,2241,12,5,15,20,27,3.65,5.0,fr,47420,44,1998252,1,4,Active Shallow Crust,0.0,89.98839,0.0,12/05/2241 +8.15578,49.76675,1193,11,14,11,15,4,3.65,5.0,fr,47421,23,1998252,1,4,Active Shallow Crust,0.0,89.98839,0.0,11/14/1193 +8.15578,49.76675,4703,12,19,20,54,1,3.65,27.5,fr,47422,94,1998254,1,1,Active Shallow Crust,0.0,89.98839,0.0,12/19/4703 +8.15578,49.76675,5943,3,26,22,26,28,3.65,5.0,fr,47423,118,1998255,1,1,Active Shallow Crust,240.0011,58.0134,0.0,03/26/5943 +8.15578,49.76675,8864,5,18,22,24,19,3.65,27.5,fr,47424,177,1998257,1,1,Active Shallow Crust,240.0011,58.01332,0.0,05/18/8864 +8.15578,49.76675,7092,8,8,17,44,39,3.75,15.0,fr,47425,141,1998265,1,1,Active Shallow Crust,0.0,89.98965,0.0,08/08/7092 +8.15578,49.76675,7995,1,31,12,34,6,3.75,27.5,fr,47426,159,1998266,1,1,Active Shallow Crust,0.0,89.98965,0.0,01/31/7995 +8.15578,49.76675,1532,2,29,7,56,4,3.85,5.0,fr,47427,30,1998276,1,1,Active Shallow Crust,0.0,89.99078,0.0,02/29/1532 +8.15578,49.76675,5622,7,25,8,54,48,3.85,27.5,fr,47428,112,1998278,1,1,Active Shallow Crust,0.0,89.99078,0.0,07/25/5622 +8.15578,49.76675,1375,1,3,8,42,8,3.85,5.0,fr,47429,27,1998285,1,1,Active Shallow Crust,128.8948,89.99539,0.0,01/03/1375 +8.15578,49.76675,1629,11,28,8,27,54,3.95,5.0,fr,47430,32,1998288,1,1,Active Shallow Crust,0.0,89.99178,0.0,11/28/1629 +8.15578,49.76675,608,5,14,6,23,10,3.95,15.0,fr,47431,12,1998289,1,1,Active Shallow Crust,0.0,89.99178,0.0,05/14/0608 +8.15578,49.76675,8012,10,11,19,33,3,3.95,5.0,fr,47432,160,1998297,1,1,Active Shallow Crust,128.8996,89.99589,0.0,10/11/8012 +8.15578,49.76675,3533,8,29,4,9,21,4.05,5.0,fr,47433,70,1998300,1,1,Active Shallow Crust,0.0,89.99268,0.0,08/29/3533 +8.15578,49.76675,5202,6,8,13,34,28,4.15,5.0,fr,47434,104,1998318,1,1,Active Shallow Crust,0.0,89.98679,-90.0,06/08/5202 +8.15578,49.76675,5525,3,22,17,23,8,4.45,5.0,fr,47435,110,1998348,1,1,Active Shallow Crust,0.0,89.99075,0.0,03/22/5525 +8.15578,49.76675,5005,7,12,20,13,30,4.75,5.0,fr,47436,100,1998393,1,1,Active Shallow Crust,128.8878,89.98794,0.0,07/12/5005 +8.15578,49.76675,5455,3,11,12,33,45,4.85,5.0,fr,47437,109,1998405,1,1,Active Shallow Crust,128.8913,89.98925,0.0,03/11/5455 +8.15578,49.76675,9877,12,9,13,36,56,5.15,15.0,fr,47438,197,1998439,1,1,Active Shallow Crust,0.0,89.98956,-90.0,12/09/9877 +-0.11822,49.88541,8338,5,26,14,47,16,3.75,5.0,fr,47439,166,1998744,1,1,Active Shallow Crust,0.0,89.99,0.0,05/26/8338 +-0.11822,49.88541,1707,7,4,22,43,42,3.75,15.0,fr,47440,34,1998745,1,1,Active Shallow Crust,0.0,89.99,0.0,07/04/1707 +-0.11822,49.88541,1195,2,19,5,43,4,3.85,15.0,fr,47441,23,1998757,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/19/1195 +-0.11822,49.88541,7818,10,7,14,38,11,3.95,5.0,fr,47442,156,1998768,1,1,Active Shallow Crust,0.0,89.99001,0.0,10/07/7818 +-0.11822,49.88541,2832,4,17,5,29,25,4.15,5.0,fr,47443,56,1998792,1,2,Active Shallow Crust,0.0,89.98997,0.0,04/17/2832 +-0.11822,49.88541,3011,2,16,11,41,34,4.15,5.0,fr,47444,60,1998792,1,2,Active Shallow Crust,0.0,89.98997,0.0,02/16/3011 +-0.11822,49.88541,4899,7,19,16,41,7,4.35,15.0,fr,47445,97,1998817,1,1,Active Shallow Crust,0.0,89.99001,0.0,07/19/4899 +-0.11822,49.88541,3397,3,23,1,45,14,4.45,5.0,fr,47446,67,1998828,1,1,Active Shallow Crust,0.0,89.98998,0.0,03/23/3397 +-0.11822,49.88541,9893,9,12,22,32,27,4.45,5.0,fr,47447,197,1998831,1,1,Active Shallow Crust,240.0062,57.99485,0.0,09/12/9893 +-0.11822,49.88541,8216,11,7,3,4,19,4.55,5.0,fr,47448,164,1998840,1,1,Active Shallow Crust,360.0,89.99001,0.0,11/07/8216 +-0.11822,49.88541,4240,6,25,23,11,45,5.05,5.0,fr,47449,84,1998909,1,1,Active Shallow Crust,128.8839,89.99046,0.0,06/25/4240 +2.11518,43.13786,6020,1,14,17,48,11,3.55,5.0,fr,47450,120,1999200,1,1,Active Shallow Crust,0.0,89.98896,0.0,01/14/6020 +2.11518,43.13786,5350,10,26,7,15,3,3.55,5.0,fr,47451,106,1999203,1,1,Active Shallow Crust,240.0117,57.99771,0.0,10/26/5350 +2.11518,43.13786,9291,8,31,13,54,25,3.65,5.0,fr,47452,185,1999212,1,1,Active Shallow Crust,0.0,89.99017,0.0,08/31/9291 +2.11518,43.13786,2730,7,25,8,59,0,3.65,15.0,fr,47453,54,1999213,1,1,Active Shallow Crust,0.0,89.99017,0.0,07/25/2730 +2.11518,43.13786,1799,1,11,16,22,50,3.65,5.0,fr,47454,35,1999215,1,1,Active Shallow Crust,240.0011,58.01311,0.0,01/11/1799 +2.11518,43.13786,5654,3,11,15,16,0,3.85,15.0,fr,47455,113,1999237,1,1,Active Shallow Crust,0.0,89.98958,0.0,03/11/5654 +2.11518,43.13786,9270,3,7,15,0,25,4.55,5.0,fr,47456,185,1999326,1,1,Active Shallow Crust,0.0,89.99059,-90.0,03/07/9270 +0.43193,44.97744,6644,3,11,11,41,39,3.65,5.0,fr,47457,132,1999692,1,1,Active Shallow Crust,0.0,89.99007,0.0,03/11/6644 +0.43193,44.97744,9613,7,30,21,5,25,3.65,5.0,fr,47458,192,1999701,1,1,Active Shallow Crust,128.9006,89.96349,0.0,07/30/9613 +0.43193,44.97744,5354,6,3,19,27,6,3.85,5.0,fr,47459,107,1999722,1,1,Active Shallow Crust,0.0,89.9901,-90.0,06/03/5354 +0.43193,44.97744,7542,11,15,21,4,15,3.95,5.0,fr,47460,150,1999728,1,1,Active Shallow Crust,0.0,89.98988,0.0,11/15/7542 +0.43193,44.97744,1520,12,3,23,40,54,3.95,5.0,fr,47461,30,1999731,1,1,Active Shallow Crust,240.0196,58.0049,0.0,12/03/1520 +0.43193,44.97744,5930,2,21,7,8,54,4.85,5.0,fr,47462,118,1999836,1,1,Active Shallow Crust,0.0,89.99002,0.0,02/21/5930 +4.97231,46.83806,2216,5,9,23,0,1,3.55,5.0,fr,47463,44,2000640,1,1,Active Shallow Crust,0.0,89.9931,0.0,05/09/2216 +4.97231,46.83806,9967,6,17,10,47,38,3.65,5.0,fr,47464,199,2000652,1,3,Active Shallow Crust,0.0,89.9877,0.0,06/17/9967 +4.97231,46.83806,7264,12,17,2,2,28,3.65,5.0,fr,47465,145,2000652,1,3,Active Shallow Crust,0.0,89.9877,0.0,12/17/7264 +4.97231,46.83806,7347,2,25,19,29,46,3.65,5.0,fr,47466,146,2000652,1,3,Active Shallow Crust,0.0,89.9877,0.0,02/25/7347 +4.97231,46.83806,5018,1,12,11,40,17,3.65,27.5,fr,47467,100,2000657,1,1,Active Shallow Crust,240.0018,58.0123,0.0,01/12/5018 +4.97231,46.83806,2533,4,7,12,56,4,3.65,5.0,fr,47468,50,2000661,1,1,Active Shallow Crust,128.8995,89.96353,0.0,04/07/2533 +4.97231,46.83806,4289,12,11,4,20,16,3.75,15.0,fr,47469,85,2000665,1,1,Active Shallow Crust,0.0,89.98904,0.0,12/11/4289 +4.97231,46.83806,1860,4,29,5,40,21,3.85,15.0,fr,47470,37,2000677,1,1,Active Shallow Crust,0.0,89.99023,0.0,04/29/1860 +4.97231,46.83806,3353,4,14,17,16,29,3.85,5.0,fr,47471,67,2000685,1,1,Active Shallow Crust,128.8967,89.99268,0.0,04/14/3353 +4.97231,46.83806,5069,1,20,11,3,11,3.95,15.0,fr,47472,101,2000689,1,1,Active Shallow Crust,0.0,89.99129,0.0,01/20/5069 +4.97231,46.83806,4842,3,31,15,46,31,4.05,5.0,fr,47473,96,2000700,1,2,Active Shallow Crust,0.0,89.98837,0.0,03/31/4842 +4.97231,46.83806,6623,7,1,0,32,45,4.05,5.0,fr,47474,132,2000700,1,2,Active Shallow Crust,0.0,89.98837,0.0,07/01/6623 +4.97231,46.83806,1102,4,6,11,46,32,4.05,15.0,fr,47475,22,2000701,1,1,Active Shallow Crust,0.0,89.98837,0.0,04/06/1102 +4.97231,46.83806,9454,2,25,23,56,25,4.05,15.0,fr,47476,189,2000704,1,1,Active Shallow Crust,240.0061,58.00573,0.0,02/25/9454 +4.97231,46.83806,9211,8,22,14,39,38,4.25,5.0,fr,47477,184,2000724,1,1,Active Shallow Crust,0.0,89.99075,0.0,08/22/9211 +4.97231,46.83806,7254,11,21,18,29,21,4.55,5.0,fr,47478,145,2000760,1,2,Active Shallow Crust,0.0,89.98909,0.0,11/21/7254 +4.97231,46.83806,8769,1,31,13,44,21,4.55,5.0,fr,47479,175,2000760,1,2,Active Shallow Crust,0.0,89.98909,0.0,01/31/8769 +4.97231,46.83806,9344,9,17,4,27,30,4.65,5.0,fr,47480,186,2000772,1,1,Active Shallow Crust,0.0,89.99028,0.0,09/17/9344 +4.97231,46.83806,2878,5,25,15,56,4,4.65,5.0,fr,47481,57,2000781,1,1,Active Shallow Crust,128.8909,89.98676,0.0,05/25/2878 +4.97231,46.83806,4907,2,9,10,23,11,5.95,5.0,fr,47482,98,2000928,1,1,Active Shallow Crust,0.0,89.98998,0.0,02/09/4907 +-4.7359,47.49065,1637,4,1,11,56,55,3.55,5.0,fr,47483,32,2001120,1,1,Active Shallow Crust,0.0,89.99319,0.0,04/01/1637 +-1.88303,50.17254,6748,3,12,5,41,19,3.55,15.0,fr,47484,134,2001601,1,1,Active Shallow Crust,0.0,89.99031,0.0,03/12/6748 +-1.88303,50.17254,6759,7,20,9,22,15,3.55,15.0,fr,47485,135,2001607,1,1,Active Shallow Crust,0.0,89.9902,-90.0,07/20/6759 +-1.88303,50.17254,9209,6,28,15,16,19,3.65,5.0,fr,47486,184,2001612,1,1,Active Shallow Crust,0.0,89.98993,0.0,06/28/9209 +-1.88303,50.17254,1247,11,17,22,42,11,4.25,5.0,fr,47487,24,2001684,1,1,Active Shallow Crust,0.0,89.9899,0.0,11/17/1247 +-1.88303,50.17254,4652,12,26,20,42,57,5.05,5.0,fr,47488,93,2001780,1,1,Active Shallow Crust,0.0,89.98994,0.0,12/26/4652 +0.39582,45.65024,4935,11,4,4,27,44,3.55,5.0,fr,47489,98,2002080,1,1,Active Shallow Crust,0.0,89.98987,0.0,11/04/4935 +0.39582,45.65024,6451,9,23,21,35,48,3.65,5.0,fr,47490,129,2002092,1,1,Active Shallow Crust,0.0,89.99018,0.0,09/23/6451 +0.39582,45.65024,1269,4,8,11,32,47,3.65,15.0,fr,47491,25,2002093,1,1,Active Shallow Crust,0.0,89.99018,0.0,04/08/1269 +0.39582,45.65024,8908,12,19,0,33,35,3.65,27.5,fr,47492,178,2002094,1,1,Active Shallow Crust,0.0,89.99018,0.0,12/19/8908 +0.39582,45.65024,4360,3,19,4,13,45,3.75,15.0,fr,47493,87,2002111,1,1,Active Shallow Crust,0.0,89.99009,-90.0,03/19/4360 +0.39582,45.65024,275,7,26,11,33,43,4.05,5.0,fr,47494,5,2002140,1,1,Active Shallow Crust,0.0,89.99009,0.0,07/26/0275 +0.39582,45.65024,9583,6,5,15,27,37,4.05,5.0,fr,47495,191,2002143,1,1,Active Shallow Crust,240.0058,58.00583,0.0,06/05/9583 +0.39582,45.65024,2175,5,11,5,1,29,4.05,5.0,fr,47496,43,2002146,1,1,Active Shallow Crust,0.0,89.98997,-90.0,05/11/2175 +0.39582,45.65024,3962,10,6,4,14,29,4.15,5.0,fr,47497,79,2002152,1,1,Active Shallow Crust,0.0,89.99007,0.0,10/06/3962 +0.39582,45.65024,6123,7,13,19,21,50,4.25,5.0,fr,47498,122,2002164,1,1,Active Shallow Crust,0.0,89.98996,0.0,07/13/6123 +0.39582,45.65024,795,5,19,18,30,3,4.55,5.0,fr,47499,15,2002200,1,1,Active Shallow Crust,0.0,89.98997,0.0,05/19/0795 +-2.12664,48.14825,1928,9,6,7,13,15,3.65,15.0,fr,47500,38,2002573,1,1,Active Shallow Crust,0.0,89.991,0.0,09/06/1928 +-2.12664,48.14825,9422,12,26,7,18,7,3.65,27.5,fr,47501,188,2002574,1,1,Active Shallow Crust,0.0,89.991,0.0,12/26/9422 +-2.12664,48.14825,1960,4,28,6,33,55,3.75,5.0,fr,47502,39,2002593,1,1,Active Shallow Crust,128.8962,89.96727,0.0,04/28/1960 +-2.12664,48.14825,5795,1,23,11,51,26,3.85,5.0,fr,47503,115,2002596,1,1,Active Shallow Crust,0.0,89.99047,0.0,01/23/5795 +-2.12664,48.14825,209,10,13,18,30,14,3.95,5.0,fr,47504,4,2002608,1,1,Active Shallow Crust,0.0,89.98939,0.0,10/13/0209 +-2.12664,48.14825,6939,12,6,18,36,40,3.95,5.0,fr,47505,138,2002617,1,1,Active Shallow Crust,128.8999,89.99363,0.0,12/06/6939 +-2.12664,48.14825,1117,5,16,14,8,38,4.05,5.0,fr,47506,22,2002620,1,1,Active Shallow Crust,0.0,89.99054,0.0,05/16/1117 +-2.12664,48.14825,2309,1,22,18,20,55,4.85,27.5,fr,47507,46,2002724,1,1,Active Shallow Crust,0.0,89.9901,-90.0,01/22/2309 +-2.12664,48.14825,8677,12,29,16,58,13,5.15,5.0,fr,47508,173,2002755,1,1,Active Shallow Crust,240.0207,58.00017,0.0,12/29/8677 +-2.12664,48.14825,6216,1,18,22,53,57,6.75,15.0,fr,47509,124,2002945,1,1,Active Shallow Crust,360.0,89.99001,0.0,01/18/6216 +-1.4606,49.00466,4892,1,29,0,31,39,3.55,5.0,fr,47510,97,2003040,1,2,Active Shallow Crust,0.0,89.99007,0.0,01/29/4892 +-1.4606,49.00466,2141,1,11,22,19,59,3.55,5.0,fr,47511,42,2003040,1,2,Active Shallow Crust,0.0,89.99007,0.0,01/11/2141 +-1.4606,49.00466,5791,8,20,2,37,33,3.55,15.0,fr,47512,115,2003041,1,3,Active Shallow Crust,0.0,89.99007,0.0,08/20/5791 +-1.4606,49.00466,2445,2,17,20,37,58,3.55,15.0,fr,47513,48,2003041,1,3,Active Shallow Crust,0.0,89.99007,0.0,02/17/2445 +-1.4606,49.00466,530,9,10,22,45,9,3.55,15.0,fr,47514,10,2003041,1,3,Active Shallow Crust,0.0,89.99007,0.0,09/10/0530 +-1.4606,49.00466,9702,7,16,0,4,43,3.55,5.0,fr,47515,194,2003043,1,2,Active Shallow Crust,240.0123,57.99835,0.0,07/16/9702 +-1.4606,49.00466,3361,11,29,22,7,44,3.55,5.0,fr,47516,67,2003043,1,2,Active Shallow Crust,240.0123,57.99835,0.0,11/29/3361 +-1.4606,49.00466,2251,3,5,13,58,36,3.55,5.0,fr,47517,45,2003049,1,1,Active Shallow Crust,128.8963,89.99339,0.0,03/05/2251 +-1.4606,49.00466,4379,9,29,21,22,15,3.65,5.0,fr,47518,87,2003052,1,1,Active Shallow Crust,0.0,89.98969,0.0,09/29/4379 +-1.4606,49.00466,3443,4,29,12,17,41,3.65,5.0,fr,47519,68,2003055,1,1,Active Shallow Crust,240.0011,58.01309,0.0,04/29/3443 +-1.4606,49.00466,5555,7,10,3,5,8,3.75,5.0,fr,47520,111,2003064,1,3,Active Shallow Crust,0.0,89.98949,0.0,07/10/5555 +-1.4606,49.00466,2691,3,3,0,9,43,3.75,5.0,fr,47521,53,2003064,1,3,Active Shallow Crust,0.0,89.98949,0.0,03/03/2691 +-1.4606,49.00466,2445,5,19,9,10,25,3.75,5.0,fr,47522,48,2003064,1,3,Active Shallow Crust,0.0,89.98949,0.0,05/19/2445 +-1.4606,49.00466,4375,4,4,6,25,50,3.75,27.5,fr,47523,87,2003066,1,1,Active Shallow Crust,0.0,89.98949,0.0,04/04/4375 +-1.4606,49.00466,1584,6,12,19,4,18,3.75,5.0,fr,47524,31,2003067,1,1,Active Shallow Crust,240.0086,58.01757,0.0,06/12/1584 +-1.4606,49.00466,7696,12,25,5,51,55,3.85,5.0,fr,47525,153,2003085,1,1,Active Shallow Crust,128.8954,89.99356,0.0,12/25/7696 +-1.4606,49.00466,532,9,27,17,57,17,3.95,5.0,fr,47526,10,2003088,1,2,Active Shallow Crust,0.0,89.98956,0.0,09/27/0532 +-1.4606,49.00466,4695,5,22,12,1,48,3.95,5.0,fr,47527,93,2003088,1,2,Active Shallow Crust,0.0,89.98956,0.0,05/22/4695 +-1.4606,49.00466,4762,1,10,1,48,55,3.95,5.0,fr,47528,95,2003097,1,1,Active Shallow Crust,128.9,89.99374,0.0,01/10/4762 +-1.4606,49.00466,7918,5,11,10,45,52,4.05,5.0,fr,47529,158,2003100,1,1,Active Shallow Crust,0.0,89.98977,0.0,05/11/7918 +-1.4606,49.00466,8838,5,8,6,0,53,4.05,27.5,fr,47530,176,2003102,1,1,Active Shallow Crust,0.0,89.98977,0.0,05/08/8838 +-1.4606,49.00466,8583,9,27,16,33,14,4.05,5.0,fr,47531,171,2003106,1,1,Active Shallow Crust,0.0,89.98965,-90.0,09/27/8583 +-1.4606,49.00466,6561,8,12,14,33,17,4.15,5.0,fr,47532,131,2003118,1,1,Active Shallow Crust,0.0,89.98994,-90.0,08/12/6561 +-1.4606,49.00466,8474,5,14,22,43,11,4.35,5.0,fr,47533,169,2003136,1,3,Active Shallow Crust,0.0,89.99012,0.0,05/14/8474 +-1.4606,49.00466,6989,5,21,10,9,38,4.35,5.0,fr,47534,139,2003136,1,3,Active Shallow Crust,0.0,89.99012,0.0,05/21/6989 +-1.4606,49.00466,5606,2,22,1,40,37,4.35,5.0,fr,47535,112,2003136,1,3,Active Shallow Crust,0.0,89.99012,0.0,02/22/5606 +-1.4606,49.00466,2640,9,3,10,39,19,4.35,15.0,fr,47536,52,2003137,1,1,Active Shallow Crust,0.0,89.99012,0.0,09/03/2640 +-1.4606,49.00466,4370,11,27,13,1,51,4.45,15.0,fr,47537,87,2003149,1,1,Active Shallow Crust,0.0,89.99002,0.0,11/27/4370 +-1.4606,49.00466,6957,4,11,8,2,37,4.55,15.0,fr,47538,139,2003167,1,1,Active Shallow Crust,0.0,89.98994,-90.0,04/11/6957 +-1.4606,49.00466,1140,7,27,12,30,37,5.45,5.0,fr,47539,22,2003268,1,1,Active Shallow Crust,0.0,89.98997,0.0,07/27/1140 +-1.4606,49.00466,7628,10,7,22,30,32,5.65,5.0,fr,47540,152,2003295,1,1,Active Shallow Crust,240.0401,57.99974,0.0,10/07/7628 +6.05742,43.43683,8171,6,28,8,54,52,3.55,5.0,fr,47541,163,2003520,1,1,Active Shallow Crust,0.0,89.99268,0.0,06/28/8171 +6.05742,43.43683,7970,5,27,23,20,8,3.55,5.0,fr,47542,159,2003526,1,1,Active Shallow Crust,0.0,89.99259,-90.0,05/27/7970 +6.05742,43.43683,6171,11,15,14,26,35,3.65,15.0,fr,47543,123,2003533,1,1,Active Shallow Crust,0.0,89.98695,0.0,11/15/6171 +6.05742,43.43683,1630,11,11,1,21,4,3.75,5.0,fr,47544,32,2003544,1,2,Active Shallow Crust,0.0,89.98837,0.0,11/11/1630 +6.05742,43.43683,3711,5,25,21,17,19,3.75,5.0,fr,47545,74,2003544,1,2,Active Shallow Crust,0.0,89.98837,0.0,05/25/3711 +6.05742,43.43683,7034,7,25,9,40,0,3.85,5.0,fr,47546,140,2003556,1,1,Active Shallow Crust,0.0,89.98963,0.0,07/25/7034 +6.05742,43.43683,6987,2,7,3,47,20,4.65,15.0,fr,47547,139,2003653,1,1,Active Shallow Crust,0.0,89.98968,0.0,02/07/6987 +4.59212,52.50743,367,9,19,5,46,24,3.65,15.0,fr,47548,7,2004016,1,1,Active Shallow Crust,240.0027,58.01228,0.0,09/19/0367 +4.59212,52.50743,1260,2,16,12,5,44,4.05,15.0,fr,47549,25,2004061,1,1,Active Shallow Crust,0.0,89.98965,0.0,02/16/1260 +4.59212,52.50743,3641,9,21,3,58,51,4.45,15.0,fr,47550,72,2004109,1,1,Active Shallow Crust,0.0,89.98911,0.0,09/21/3641 +4.59212,52.50743,206,11,26,1,15,28,4.55,5.0,fr,47551,4,2004120,1,1,Active Shallow Crust,0.0,89.9903,0.0,11/26/0206 +3.49971,42.95378,8776,4,25,12,45,13,3.55,5.0,fr,47552,175,2004483,1,1,Active Shallow Crust,240.0115,57.99792,0.0,04/25/8776 +3.49971,42.95378,7238,10,27,9,59,13,3.75,5.0,fr,47553,144,2004504,1,1,Active Shallow Crust,0.0,89.9912,0.0,10/27/7238 +3.49971,42.95378,912,11,25,6,39,24,3.95,15.0,fr,47554,18,2004529,1,1,Active Shallow Crust,0.0,89.99068,0.0,11/25/0912 +5.51555,43.5012,7446,10,19,4,56,58,3.55,5.0,fr,47555,148,2004960,1,5,Active Shallow Crust,0.0,89.99268,0.0,10/19/7446 +5.51555,43.5012,4904,6,13,3,31,12,3.55,5.0,fr,47556,98,2004960,1,5,Active Shallow Crust,0.0,89.99268,0.0,06/13/4904 +5.51555,43.5012,3741,1,21,6,35,34,3.55,5.0,fr,47557,74,2004960,1,5,Active Shallow Crust,0.0,89.99268,0.0,01/21/3741 +5.51555,43.5012,2308,5,17,20,1,23,3.55,5.0,fr,47558,46,2004960,1,5,Active Shallow Crust,0.0,89.99268,0.0,05/17/2308 +5.51555,43.5012,7828,6,14,9,55,51,3.55,5.0,fr,47559,156,2004960,1,5,Active Shallow Crust,0.0,89.99268,0.0,06/14/7828 +5.51555,43.5012,7126,9,23,10,0,29,3.55,15.0,fr,47560,142,2004964,1,1,Active Shallow Crust,240.0119,57.9981,0.0,09/23/7126 +5.51555,43.5012,8291,9,2,11,32,37,3.55,5.0,fr,47561,165,2004966,1,1,Active Shallow Crust,0.0,89.9926,-90.0,09/02/8291 +5.51555,43.5012,8758,9,26,23,18,57,3.55,5.0,fr,47562,175,2004969,1,1,Active Shallow Crust,128.8962,89.99635,0.0,09/26/8758 +5.51555,43.5012,3292,3,26,17,10,34,3.65,5.0,fr,47563,65,2004972,1,1,Active Shallow Crust,0.0,89.98696,0.0,03/26/3292 +5.51555,43.5012,2125,4,22,19,29,11,3.65,5.0,fr,47564,42,2004975,1,1,Active Shallow Crust,240.0016,58.0121,0.0,04/22/2125 +5.51555,43.5012,2037,8,10,3,28,12,3.65,5.0,fr,47565,40,2004978,1,1,Active Shallow Crust,0.0,89.98681,-90.0,08/10/2037 +5.51555,43.5012,6935,8,28,22,10,27,3.75,5.0,fr,47566,138,2004984,1,2,Active Shallow Crust,0.0,89.98838,0.0,08/28/6935 +5.51555,43.5012,9347,2,6,0,14,35,3.75,5.0,fr,47567,186,2004984,1,2,Active Shallow Crust,0.0,89.98838,0.0,02/06/9347 +5.51555,43.5012,9058,8,16,2,26,25,3.75,15.0,fr,47568,181,2004985,1,1,Active Shallow Crust,0.0,89.98838,0.0,08/16/9058 +5.51555,43.5012,1042,7,7,7,59,36,3.75,27.5,fr,47569,20,2004986,1,2,Active Shallow Crust,0.0,89.98838,0.0,07/07/1042 +5.51555,43.5012,6434,9,19,3,29,27,3.75,27.5,fr,47570,128,2004986,1,2,Active Shallow Crust,0.0,89.98838,0.0,09/19/6434 +5.51555,43.5012,8160,5,24,11,34,29,3.75,27.5,fr,47571,163,2004989,1,1,Active Shallow Crust,240.0079,58.01717,0.0,05/24/8160 +5.51555,43.5012,2992,2,21,16,26,19,3.85,5.0,fr,47572,59,2004996,1,2,Active Shallow Crust,0.0,89.98965,0.0,02/21/2992 +5.51555,43.5012,7626,5,10,4,51,47,3.85,5.0,fr,47573,152,2004996,1,2,Active Shallow Crust,0.0,89.98965,0.0,05/10/7626 +5.51555,43.5012,7942,2,20,16,21,11,3.85,27.5,fr,47574,158,2005001,1,1,Active Shallow Crust,240.0115,57.99699,0.0,02/20/7942 +5.51555,43.5012,7443,12,31,17,17,4,3.85,5.0,fr,47575,148,2005002,1,1,Active Shallow Crust,0.0,89.98952,-90.0,12/31/7443 +5.51555,43.5012,2821,5,27,1,27,18,3.85,5.0,fr,47576,56,2005005,1,1,Active Shallow Crust,128.8958,89.99482,0.0,05/27/2821 +5.51555,43.5012,9070,9,15,21,54,21,4.05,5.0,fr,47577,181,2005020,1,1,Active Shallow Crust,0.0,89.99178,0.0,09/15/9070 +5.51555,43.5012,4912,7,31,21,25,3,4.15,15.0,fr,47578,98,2005033,1,1,Active Shallow Crust,0.0,89.989,0.0,07/31/4912 +5.51555,43.5012,6646,7,12,15,52,58,4.25,5.0,fr,47579,132,2005047,1,1,Active Shallow Crust,240.0066,57.99424,0.0,07/12/6646 +5.51555,43.5012,9029,1,25,11,37,49,4.35,27.5,fr,47580,180,2005058,1,1,Active Shallow Crust,0.0,89.99126,0.0,01/25/9029 +5.51555,43.5012,3833,9,9,8,22,10,5.45,5.0,fr,47581,76,2005188,1,1,Active Shallow Crust,0.0,89.99015,0.0,09/09/3833 +5.515547,43.5012,1259,6,18,2,28,23,6.35,7.567806,fr,47582,25,2005305,1,1,Active Shallow Crust,128.8493,89.98982,0.0,06/18/1259 +-1.00354,44.44199,7479,7,17,12,3,12,3.55,27.5,fr,47583,149,2005922,1,1,Active Shallow Crust,0.0,89.9892,0.0,07/17/7479 +-1.00354,44.44199,4743,12,19,1,45,15,4.65,5.0,fr,47584,94,2006061,1,1,Active Shallow Crust,128.8917,89.98698,0.0,12/19/4743 +3.42931,51.43854,5830,2,10,12,39,34,3.55,5.0,fr,47585,116,2006400,1,1,Active Shallow Crust,0.0,89.99057,0.0,02/10/5830 +3.42931,51.43854,3999,1,8,15,30,47,3.75,5.0,fr,47586,79,2006430,1,1,Active Shallow Crust,0.0,89.9899,-90.0,01/08/3999 +3.42931,51.43854,8044,11,20,2,28,19,3.95,5.0,fr,47587,160,2006448,1,1,Active Shallow Crust,0.0,89.99008,0.0,11/20/8044 +3.42931,51.43854,9008,4,5,3,26,0,4.15,5.0,fr,47588,180,2006472,1,1,Active Shallow Crust,0.0,89.99055,0.0,04/05/9008 +5.76566,48.09611,4851,12,13,5,39,26,3.75,5.0,fr,47589,97,2006907,1,1,Active Shallow Crust,240.0086,58.01691,0.0,12/13/4851 +5.76566,48.09611,5101,9,21,15,43,16,3.75,27.5,fr,47590,102,2006912,1,1,Active Shallow Crust,0.0,89.98917,-90.0,09/21/5101 +5.76566,48.09611,5919,9,27,23,17,22,3.95,15.0,fr,47591,118,2006929,1,1,Active Shallow Crust,0.0,89.9915,0.0,09/27/5919 +5.76566,48.09611,2393,11,2,2,11,2,4.05,5.0,fr,47592,47,2006940,1,1,Active Shallow Crust,0.0,89.98864,0.0,11/02/2393 +5.76566,48.09611,9776,3,1,9,16,57,4.35,15.0,fr,47593,195,2006977,1,1,Active Shallow Crust,0.0,89.98927,0.0,03/01/9776 +5.76566,48.09611,2874,1,31,4,44,26,4.55,27.5,fr,47594,57,2007002,1,1,Active Shallow Crust,0.0,89.98935,0.0,01/31/2874 +-0.65674,44.7478,8201,2,8,23,7,49,3.55,5.0,fr,47595,164,2007360,1,1,Active Shallow Crust,0.0,89.99015,0.0,02/08/8201 +-0.65674,44.7478,335,9,10,4,7,1,4.15,5.0,fr,47596,6,2007432,1,1,Active Shallow Crust,0.0,89.99013,0.0,09/10/0335 +-0.65674,44.7478,3517,9,28,23,52,6,4.35,15.0,fr,47597,70,2007457,1,1,Active Shallow Crust,0.0,89.99002,0.0,09/28/3517 +5.4701,50.43834,7556,12,5,17,7,54,3.55,15.0,fr,47598,151,2007841,1,1,Active Shallow Crust,0.0,89.98715,0.0,12/05/7556 +5.4701,50.43834,8739,1,18,22,29,53,3.55,5.0,fr,47599,174,2007846,1,2,Active Shallow Crust,0.0,89.98701,-90.0,01/18/8739 +5.4701,50.43834,1643,9,23,11,51,3,3.55,5.0,fr,47600,32,2007846,1,2,Active Shallow Crust,0.0,89.98701,-90.0,09/23/1643 +5.4701,50.43834,8378,1,30,1,1,24,3.65,5.0,fr,47601,167,2007855,1,1,Active Shallow Crust,240.0006,58.01322,0.0,01/30/8378 +5.4701,50.43834,7359,10,2,6,12,54,3.75,15.0,fr,47602,147,2007865,1,3,Active Shallow Crust,0.0,89.9898,0.0,10/02/7359 +5.4701,50.43834,2512,4,22,8,51,1,3.75,15.0,fr,47603,50,2007865,1,3,Active Shallow Crust,0.0,89.9898,0.0,04/22/2512 +5.4701,50.43834,8305,5,9,9,35,38,3.75,15.0,fr,47604,166,2007865,1,3,Active Shallow Crust,0.0,89.9898,0.0,05/09/8305 +5.4701,50.43834,8375,8,16,4,37,51,3.75,15.0,fr,47605,167,2007868,1,1,Active Shallow Crust,240.0087,58.01697,0.0,08/16/8375 +5.4701,50.43834,7711,5,20,14,37,5,3.85,15.0,fr,47606,154,2007877,1,1,Active Shallow Crust,0.0,89.99091,0.0,05/20/7711 +5.4701,50.43834,3093,5,21,2,5,11,3.85,5.0,fr,47607,61,2007882,1,1,Active Shallow Crust,0.0,89.9908,-90.0,05/21/3093 +5.4701,50.43834,7819,4,17,17,3,8,3.95,5.0,fr,47608,156,2007888,1,2,Active Shallow Crust,0.0,89.9919,0.0,04/17/7819 +5.4701,50.43834,4439,9,16,5,25,30,3.95,5.0,fr,47609,88,2007888,1,2,Active Shallow Crust,0.0,89.9919,0.0,09/16/4439 +5.4701,50.43834,486,8,29,5,33,12,3.95,15.0,fr,47610,9,2007892,1,1,Active Shallow Crust,240.0205,58.00525,0.0,08/29/0486 +5.4701,50.43834,2268,9,1,4,57,43,4.05,5.0,fr,47611,45,2007900,1,1,Active Shallow Crust,0.0,89.98917,0.0,09/01/2268 +5.4701,50.43834,9863,7,25,12,30,12,4.05,5.0,fr,47612,197,2007903,1,1,Active Shallow Crust,240.0067,58.00617,0.0,07/25/9863 +5.4701,50.43834,5303,7,5,23,36,24,4.05,5.0,fr,47613,106,2007906,1,1,Active Shallow Crust,0.0,89.98904,-90.0,07/05/5303 +5.4701,50.43834,4230,5,28,21,10,53,4.05,5.0,fr,47614,84,2007909,1,1,Active Shallow Crust,128.8894,89.99458,0.0,05/28/4230 +5.4701,50.43834,3180,10,27,2,2,26,4.05,27.5,fr,47615,63,2007911,1,1,Active Shallow Crust,128.8894,89.99458,0.0,10/27/3180 +5.4701,50.43834,609,1,19,4,2,35,4.25,15.0,fr,47616,12,2007925,1,1,Active Shallow Crust,0.0,89.99139,0.0,01/19/0609 +5.4701,50.43834,8118,12,18,2,51,6,4.55,5.0,fr,47617,162,2007960,1,1,Active Shallow Crust,0.0,89.98985,0.0,12/18/8118 +5.4701,50.43834,778,6,26,1,0,50,4.65,5.0,fr,47618,15,2007972,1,1,Active Shallow Crust,0.0,89.98914,0.0,06/26/0778 +5.4701,50.43834,4668,10,23,14,46,51,4.95,5.0,fr,47619,93,2008017,1,1,Active Shallow Crust,128.8882,89.98972,0.0,10/23/4668 +6.49909,47.03631,1955,6,20,11,45,54,3.55,15.0,fr,47620,39,2008321,1,1,Active Shallow Crust,0.0,89.99313,0.0,06/20/1955 +6.49909,47.03631,9526,10,3,0,5,40,3.55,5.0,fr,47621,190,2008323,1,1,Active Shallow Crust,240.0114,57.99947,0.0,10/03/9526 +6.49909,47.03631,7788,4,18,9,21,44,3.65,5.0,fr,47622,155,2008332,1,1,Active Shallow Crust,0.0,89.98775,0.0,04/18/7788 +6.49909,47.03631,3756,2,11,23,10,14,3.65,5.0,fr,47623,75,2008335,1,2,Active Shallow Crust,240.0005,58.0128,0.0,02/11/3756 +6.49909,47.03631,2142,1,11,1,55,50,3.65,5.0,fr,47624,42,2008335,1,2,Active Shallow Crust,240.0005,58.0128,0.0,01/11/2142 +6.49909,47.03631,7534,3,11,7,25,18,3.65,5.0,fr,47625,150,2008341,1,2,Active Shallow Crust,128.9011,89.96353,0.0,03/11/7534 +6.49909,47.03631,632,11,10,4,41,33,3.65,5.0,fr,47626,12,2008341,1,2,Active Shallow Crust,128.9011,89.96353,0.0,11/10/0632 +6.49909,47.03631,6687,9,10,17,22,59,3.75,5.0,fr,47627,133,2008344,1,1,Active Shallow Crust,0.0,89.98908,0.0,09/10/6687 +6.49909,47.03631,9356,12,4,1,37,38,3.75,15.0,fr,47628,187,2008345,1,1,Active Shallow Crust,0.0,89.98908,0.0,12/04/9356 +6.49909,47.03631,6950,1,9,20,5,48,3.75,5.0,fr,47629,138,2008347,1,2,Active Shallow Crust,240.0079,58.01725,0.0,01/09/6950 +6.49909,47.03631,1387,5,10,17,37,51,3.75,5.0,fr,47630,27,2008347,1,2,Active Shallow Crust,240.0079,58.01725,0.0,05/10/1387 +6.49909,47.03631,1382,10,13,12,30,4,3.75,15.0,fr,47631,27,2008348,1,1,Active Shallow Crust,240.0079,58.01725,0.0,10/13/1382 +6.49909,47.03631,4847,6,23,8,46,21,3.75,27.5,fr,47632,96,2008349,1,1,Active Shallow Crust,240.0079,58.01725,0.0,06/23/4847 +6.49909,47.03631,2145,9,1,22,21,50,3.75,5.0,fr,47633,42,2008350,1,1,Active Shallow Crust,0.0,89.98895,-90.0,09/01/2145 +6.49909,47.03631,7846,1,16,5,2,33,3.75,15.0,fr,47634,156,2008354,1,1,Active Shallow Crust,128.8965,89.9675,0.0,01/16/7846 +6.49909,47.03631,9992,12,19,22,55,21,3.95,5.0,fr,47635,199,2008368,1,1,Active Shallow Crust,0.0,89.99133,0.0,12/19/9992 +6.49909,47.03631,7007,5,12,22,25,33,3.95,15.0,fr,47636,140,2008369,1,1,Active Shallow Crust,0.0,89.99133,0.0,05/12/7007 +6.49909,47.03631,1981,1,5,15,1,20,3.95,27.5,fr,47637,39,2008370,1,1,Active Shallow Crust,0.0,89.99133,0.0,01/05/1981 +6.49909,47.03631,8930,2,23,23,21,56,4.05,5.0,fr,47638,178,2008380,1,2,Active Shallow Crust,0.0,89.9884,0.0,02/23/8930 +6.49909,47.03631,3620,2,5,14,56,38,4.05,5.0,fr,47639,72,2008380,1,2,Active Shallow Crust,0.0,89.9884,0.0,02/05/3620 +6.49909,47.03631,8008,11,25,23,27,40,4.15,5.0,fr,47640,160,2008392,1,1,Active Shallow Crust,0.0,89.98967,0.0,11/25/8008 +6.49909,47.03631,1032,5,7,19,14,28,4.15,15.0,fr,47641,20,2008393,1,1,Active Shallow Crust,0.0,89.98967,0.0,05/07/1032 +6.49909,47.03631,7480,10,31,14,5,34,4.45,15.0,fr,47642,149,2008429,1,1,Active Shallow Crust,0.0,89.99024,0.0,10/31/7480 +6.49909,47.03631,1864,4,12,8,31,22,4.85,5.0,fr,47643,37,2008476,1,3,Active Shallow Crust,359.9992,89.99077,0.0,04/12/1864 +6.49909,47.03631,454,6,14,5,20,18,4.85,5.0,fr,47644,9,2008476,1,3,Active Shallow Crust,359.9992,89.99077,0.0,06/14/0454 +6.49909,47.03631,298,5,1,15,24,53,4.85,5.0,fr,47645,5,2008476,1,3,Active Shallow Crust,359.9992,89.99077,0.0,05/01/0298 +6.49909,47.03631,2274,2,6,10,20,3,4.95,15.0,fr,47646,45,2008492,1,1,Active Shallow Crust,240.0121,58.00462,0.0,02/06/2274 +6.49909,47.03631,7333,9,18,20,18,53,5.15,5.0,fr,47647,146,2008518,1,1,Active Shallow Crust,0.0,89.99008,-90.0,09/18/7333 +6.49909,47.03631,4836,10,6,12,11,26,5.15,5.0,fr,47648,96,2008521,1,1,Active Shallow Crust,128.8834,89.99124,0.0,10/06/4836 +6.499094,47.03631,9042,8,19,2,9,38,6.25,6.744814,fr,47649,180,2008644,1,1,Active Shallow Crust,0.0,89.99001,0.0,08/19/9042 +6.499085,47.0363,9397,9,30,12,52,12,6.45,8.491219,fr,47650,187,2008677,1,1,Active Shallow Crust,128.8368,89.98933,0.0,09/30/9397 +2.96441,46.41501,9602,11,12,15,37,58,3.55,5.0,fr,47651,192,2008800,1,1,Active Shallow Crust,0.0,89.98957,0.0,11/12/9602 +2.96441,46.41501,61,6,18,3,45,34,3.65,5.0,fr,47652,1,2008815,1,1,Active Shallow Crust,240.0013,58.01245,0.0,06/18/0061 +2.96441,46.41501,6482,5,3,2,24,23,3.65,5.0,fr,47653,129,2008818,1,1,Active Shallow Crust,0.0,89.9906,-90.0,05/03/6482 +2.96441,46.41501,4447,5,11,15,57,52,3.75,15.0,fr,47654,88,2008825,1,1,Active Shallow Crust,0.0,89.98895,0.0,05/11/4447 +2.96441,46.41501,1421,2,26,6,58,20,3.85,15.0,fr,47655,28,2008840,1,1,Active Shallow Crust,240.0109,57.99764,0.0,02/26/1421 +2.96441,46.41501,1220,11,4,22,15,12,3.95,15.0,fr,47656,24,2008849,1,1,Active Shallow Crust,0.0,89.98904,0.0,11/04/1220 +2.96441,46.41501,6722,4,13,8,44,36,4.15,5.0,fr,47657,134,2008872,1,1,Active Shallow Crust,0.0,89.98955,0.0,04/13/6722 +3.42412,52.07476,7524,2,1,22,38,2,3.85,15.0,fr,47658,150,2009320,1,1,Active Shallow Crust,240.0114,57.99837,0.0,02/01/7524 +3.43386,42.14125,5907,2,20,18,27,5,3.75,27.5,fr,47659,118,2009789,1,1,Active Shallow Crust,240.008,58.01754,0.0,02/20/5907 +-5.67784,47.24599,2690,12,31,12,51,16,3.65,15.0,fr,47660,53,2010259,1,1,Active Shallow Crust,0.0,89.98766,-90.0,12/31/2690 +-5.67784,47.24599,3886,8,6,22,56,13,3.95,15.0,fr,47661,77,2010292,1,1,Active Shallow Crust,240.0201,58.00439,0.0,08/06/3886 +0.30341,43.60848,739,4,21,0,59,52,3.55,5.0,fr,47662,14,2011200,1,1,Active Shallow Crust,0.0,89.98996,0.0,04/21/0739 +0.30341,43.60848,1925,12,29,5,21,8,3.55,15.0,fr,47663,38,2011204,1,1,Active Shallow Crust,240.0119,57.99813,0.0,12/29/1925 +0.30341,43.60848,2845,4,14,7,1,56,3.65,5.0,fr,47664,56,2011212,1,1,Active Shallow Crust,0.0,89.98983,0.0,04/14/2845 +0.30341,43.60848,7057,7,21,5,12,58,3.65,5.0,fr,47665,141,2011215,1,1,Active Shallow Crust,240.0007,58.01286,0.0,07/21/7057 +0.30341,43.60848,2072,4,9,15,52,34,3.65,5.0,fr,47666,41,2011221,1,1,Active Shallow Crust,128.9007,89.9635,0.0,04/09/2072 +0.30341,43.60848,125,9,9,20,32,8,4.15,5.0,fr,47667,2,2011278,1,1,Active Shallow Crust,0.0,89.99005,-90.0,09/09/0125 +0.30341,43.60848,1195,9,25,22,1,45,4.55,15.0,fr,47668,23,2011321,1,1,Active Shallow Crust,0.0,89.99004,0.0,09/25/1195 +0.30341,43.60848,5185,12,7,5,9,3,4.65,27.5,fr,47669,103,2011334,1,1,Active Shallow Crust,0.0,89.98997,0.0,12/07/5185 +8.88497,50.465,1614,3,29,6,45,8,3.55,5.0,fr,47670,32,2011680,1,1,Active Shallow Crust,0.0,89.98716,0.0,03/29/1614 +8.88497,50.465,1670,6,15,6,35,46,3.55,15.0,fr,47671,33,2011681,1,1,Active Shallow Crust,0.0,89.98716,0.0,06/15/1670 +8.88497,50.465,6457,7,10,8,8,56,3.75,5.0,fr,47672,129,2011704,1,1,Active Shallow Crust,0.0,89.9898,0.0,07/10/6457 +8.88497,50.465,418,3,9,14,19,24,4.55,15.0,fr,47673,8,2011801,1,1,Active Shallow Crust,0.0,89.99188,0.0,03/09/0418 +-4.63582,49.00366,3215,4,29,18,23,27,3.65,5.0,fr,47674,64,2012172,1,1,Active Shallow Crust,0.0,89.9882,0.0,04/29/3215 +-4.63582,49.00366,3244,1,28,8,38,0,4.35,5.0,fr,47675,64,2012265,1,1,Active Shallow Crust,128.898,89.98264,0.0,01/28/3244 +6.81794,45.6458,787,11,24,12,10,8,3.55,5.0,fr,47676,15,2012640,1,4,Active Shallow Crust,0.0,89.99295,0.0,11/24/0787 +6.81794,45.6458,5900,9,24,20,9,41,3.55,5.0,fr,47677,117,2012640,1,4,Active Shallow Crust,0.0,89.99295,0.0,09/24/5900 +6.81794,45.6458,5664,7,15,9,23,37,3.55,5.0,fr,47678,113,2012640,1,4,Active Shallow Crust,0.0,89.99295,0.0,07/15/5664 +6.81794,45.6458,4809,10,21,3,14,29,3.55,5.0,fr,47679,96,2012640,1,4,Active Shallow Crust,0.0,89.99295,0.0,10/21/4809 +6.81794,45.6458,7478,7,9,7,22,50,3.55,5.0,fr,47680,149,2012643,1,1,Active Shallow Crust,240.0125,57.99807,0.0,07/09/7478 +6.81794,45.6458,5174,9,24,0,4,33,3.75,5.0,fr,47681,103,2012664,1,1,Active Shallow Crust,0.0,89.9888,0.0,09/24/5174 +6.81794,45.6458,3901,12,7,14,39,22,3.85,5.0,fr,47682,78,2012676,1,1,Active Shallow Crust,0.0,89.99002,0.0,12/07/3901 +6.81794,45.6458,2437,6,24,19,41,53,3.85,5.0,fr,47683,48,2012679,1,1,Active Shallow Crust,240.0104,57.99736,0.0,06/24/2437 +6.81794,45.6458,3232,8,25,6,48,39,3.85,27.5,fr,47684,64,2012684,1,1,Active Shallow Crust,0.0,89.98991,-90.0,08/25/3232 +6.81794,45.6458,3564,5,23,5,52,25,3.95,15.0,fr,47685,71,2012692,1,1,Active Shallow Crust,240.019,58.00481,0.0,05/23/3564 +6.81794,45.6458,1254,8,25,17,14,38,4.25,5.0,fr,47686,25,2012733,1,1,Active Shallow Crust,128.8946,89.98091,0.0,08/25/1254 +6.81794,45.6458,8028,12,8,15,0,26,4.55,15.0,fr,47687,160,2012761,1,1,Active Shallow Crust,0.0,89.99108,0.0,12/08/8028 +6.81794,45.6458,2779,10,2,1,41,56,6.35,15.0,fr,47688,55,2012986,1,1,Active Shallow Crust,128.8454,89.9911,0.0,10/02/2779 +0.7621,44.86856,8790,1,3,18,1,57,3.65,5.0,fr,47689,175,2013141,1,1,Active Shallow Crust,128.9005,89.96349,0.0,01/03/8790 +0.7621,44.86856,117,3,22,18,36,38,3.75,5.0,fr,47690,2,2013144,1,1,Active Shallow Crust,0.0,89.99007,0.0,03/22/0117 +0.7621,44.86856,6988,4,22,19,23,25,3.75,15.0,fr,47691,139,2013145,1,1,Active Shallow Crust,0.0,89.99007,0.0,04/22/6988 +0.7621,44.86856,2633,11,23,4,11,1,4.55,5.0,fr,47692,52,2013240,1,1,Active Shallow Crust,0.0,89.99011,0.0,11/23/2633 +5.62874,47.56801,629,9,2,4,15,8,3.55,5.0,fr,47693,12,2014080,1,1,Active Shallow Crust,0.0,89.99319,0.0,09/02/0629 +5.62874,47.56801,5733,8,28,19,35,24,3.55,5.0,fr,47694,114,2014086,1,1,Active Shallow Crust,0.0,89.99312,-90.0,08/28/5733 +5.62874,47.56801,2670,8,1,23,10,31,3.75,5.0,fr,47695,53,2014104,1,1,Active Shallow Crust,0.0,89.98919,0.0,08/01/2670 +5.62874,47.56801,733,2,27,22,43,20,3.85,5.0,fr,47696,14,2014116,1,1,Active Shallow Crust,0.0,89.99036,0.0,02/27/0733 +5.62874,47.56801,4950,7,12,22,40,36,3.85,5.0,fr,47697,98,2014122,1,1,Active Shallow Crust,0.0,89.99026,-90.0,07/12/4950 +5.62874,47.56801,9028,12,5,14,13,43,3.95,5.0,fr,47698,180,2014134,1,1,Active Shallow Crust,0.0,89.99132,-90.0,12/05/9028 +5.62874,47.56801,1400,3,30,8,28,24,4.05,27.5,fr,47699,27,2014142,1,1,Active Shallow Crust,0.0,89.98852,0.0,03/30/1400 +5.62874,47.56801,1744,6,27,6,35,19,4.25,5.0,fr,47700,34,2014164,1,1,Active Shallow Crust,0.0,89.99088,0.0,06/27/1744 +5.62874,47.56801,98,4,18,4,1,36,4.45,5.0,fr,47701,1,2014194,1,1,Active Shallow Crust,0.0,89.99023,-90.0,04/18/0098 +5.62874,47.56801,7810,6,25,2,34,25,4.65,27.5,fr,47702,156,2014214,1,1,Active Shallow Crust,0.0,89.99041,0.0,06/25/7810 +5.62874,47.56801,795,4,19,23,31,26,5.65,5.0,fr,47703,15,2014332,1,1,Active Shallow Crust,359.9997,89.9903,0.0,04/19/0795 +2.39658,52.18396,2626,3,28,20,51,3,3.65,5.0,fr,47704,52,2014578,1,1,Active Shallow Crust,0.0,89.98885,-90.0,03/28/2626 +2.39658,52.18396,5222,2,2,17,53,0,3.95,5.0,fr,47705,104,2014608,1,1,Active Shallow Crust,0.0,89.99025,0.0,02/02/5222 +2.39658,52.18396,1724,4,28,15,41,2,4.05,5.0,fr,47706,34,2014620,1,1,Active Shallow Crust,0.0,89.98957,0.0,04/28/1724 +2.39658,52.18396,9559,10,16,12,23,50,4.15,5.0,fr,47707,191,2014632,1,1,Active Shallow Crust,0.0,89.9907,0.0,10/16/9559 +2.39658,52.18396,8356,2,28,17,26,42,4.45,27.5,fr,47708,167,2014670,1,1,Active Shallow Crust,0.0,89.99013,0.0,02/28/8356 +-0.12429,48.02905,47,7,23,16,21,50,3.55,5.0,fr,47709,0,2015040,1,1,Active Shallow Crust,0.0,89.98999,0.0,07/23/0047 +-0.12429,48.02905,2850,1,6,16,25,59,3.55,5.0,fr,47710,56,2015049,1,1,Active Shallow Crust,128.8961,89.99378,0.0,01/06/2850 +-0.12429,48.02905,930,11,24,11,56,16,3.65,5.0,fr,47711,18,2015052,1,1,Active Shallow Crust,0.0,89.99004,0.0,11/24/0930 +-0.12429,48.02905,6704,1,25,9,59,30,3.75,5.0,fr,47712,134,2015073,1,1,Active Shallow Crust,128.8964,89.96735,0.0,01/25/6704 +-0.12429,48.02905,6164,5,3,19,35,53,4.05,5.0,fr,47713,123,2015100,1,1,Active Shallow Crust,0.0,89.98998,0.0,05/03/6164 +-0.12429,48.02905,336,7,8,14,47,32,4.05,15.0,fr,47714,6,2015107,1,1,Active Shallow Crust,0.0,89.98999,-90.0,07/08/0336 +-0.12429,48.02905,2849,1,4,20,13,0,4.55,15.0,fr,47715,56,2015161,1,1,Active Shallow Crust,0.0,89.99001,0.0,01/04/2849 +-0.12429,48.02905,5528,12,18,14,18,29,4.55,15.0,fr,47716,110,2015170,1,1,Active Shallow Crust,128.8935,89.98579,0.0,12/18/5528 +5.69871,50.46829,9906,12,20,10,0,44,3.55,5.0,fr,47717,198,2015520,1,3,Active Shallow Crust,0.0,89.98716,0.0,12/20/9906 +5.69871,50.46829,8588,4,4,9,33,12,3.55,5.0,fr,47718,171,2015520,1,3,Active Shallow Crust,0.0,89.98716,0.0,04/04/8588 +5.69871,50.46829,6787,5,8,13,59,11,3.55,5.0,fr,47719,135,2015520,1,3,Active Shallow Crust,0.0,89.98716,0.0,05/08/6787 +5.69871,50.46829,8082,2,26,12,0,45,3.55,15.0,fr,47720,161,2015521,1,2,Active Shallow Crust,0.0,89.98716,0.0,02/26/8082 +5.69871,50.46829,3871,7,24,22,39,2,3.55,15.0,fr,47721,77,2015521,1,2,Active Shallow Crust,0.0,89.98716,0.0,07/24/3871 +5.69871,50.46829,8337,4,29,15,4,11,3.55,27.5,fr,47722,166,2015528,1,2,Active Shallow Crust,0.0,89.98701,-90.0,04/29/8337 +5.69871,50.46829,6579,8,7,15,13,8,3.55,27.5,fr,47723,131,2015528,1,2,Active Shallow Crust,0.0,89.98701,-90.0,08/07/6579 +5.69871,50.46829,2705,1,20,8,26,35,3.55,15.0,fr,47724,54,2015530,1,1,Active Shallow Crust,128.8959,89.99358,0.0,01/20/2705 +5.69871,50.46829,7850,10,18,12,1,33,3.65,15.0,fr,47725,156,2015533,1,1,Active Shallow Crust,0.0,89.98856,0.0,10/18/7850 +5.69871,50.46829,5622,1,1,13,46,24,3.65,15.0,fr,47726,112,2015536,1,1,Active Shallow Crust,240.0006,58.01365,0.0,01/01/5622 +5.69871,50.46829,5011,1,27,14,21,33,3.65,5.0,fr,47727,100,2015541,1,1,Active Shallow Crust,128.9008,89.96304,0.0,01/27/5011 +5.69871,50.46829,3234,4,18,16,29,25,3.75,5.0,fr,47728,64,2015544,1,1,Active Shallow Crust,0.0,89.9898,0.0,04/18/3234 +5.69871,50.46829,9631,1,2,21,10,26,3.75,15.0,fr,47729,192,2015545,1,3,Active Shallow Crust,0.0,89.9898,0.0,01/02/9631 +5.69871,50.46829,2859,5,31,0,14,49,3.75,15.0,fr,47730,57,2015545,1,3,Active Shallow Crust,0.0,89.9898,0.0,05/31/2859 +5.69871,50.46829,2191,6,19,15,36,11,3.75,15.0,fr,47731,43,2015545,1,3,Active Shallow Crust,0.0,89.9898,0.0,06/19/2191 +5.69871,50.46829,7961,7,10,18,52,36,3.75,15.0,fr,47732,159,2015551,1,1,Active Shallow Crust,0.0,89.98969,-90.0,07/10/7961 +5.69871,50.46829,1602,8,21,18,16,29,3.75,5.0,fr,47733,32,2015553,1,1,Active Shallow Crust,128.8958,89.96756,0.0,08/21/1602 +5.69871,50.46829,1436,8,1,1,38,11,3.85,5.0,fr,47734,28,2015556,1,1,Active Shallow Crust,0.0,89.99091,0.0,08/01/1436 +5.69871,50.46829,7917,2,21,3,35,30,3.95,5.0,fr,47735,158,2015568,1,2,Active Shallow Crust,0.0,89.9919,0.0,02/21/7917 +5.69871,50.46829,9803,12,7,4,49,27,3.95,5.0,fr,47736,196,2015568,1,2,Active Shallow Crust,0.0,89.9919,0.0,12/07/9803 +5.69871,50.46829,8640,4,28,5,51,57,3.95,15.0,fr,47737,172,2015575,1,1,Active Shallow Crust,0.0,89.99181,-90.0,04/28/8640 +5.69871,50.46829,4772,7,14,7,0,54,4.05,5.0,fr,47738,95,2015583,1,1,Active Shallow Crust,240.0063,58.00642,0.0,07/14/4772 +5.69871,50.46829,6518,9,1,7,15,10,4.15,15.0,fr,47739,130,2015596,1,1,Active Shallow Crust,240.0091,57.99738,0.0,09/01/6518 +5.69871,50.46829,3333,9,4,23,59,48,4.15,5.0,fr,47740,66,2015601,1,1,Active Shallow Crust,128.897,89.99357,0.0,09/04/3333 +5.69871,50.46829,8127,11,11,20,58,56,4.25,15.0,fr,47741,162,2015605,1,2,Active Shallow Crust,0.0,89.9914,0.0,11/11/8127 +5.69871,50.46829,8635,3,2,13,0,1,4.25,15.0,fr,47742,172,2015605,1,2,Active Shallow Crust,0.0,89.9914,0.0,03/02/8635 +5.69871,50.46829,8709,12,8,6,18,34,4.45,5.0,fr,47743,174,2015628,1,1,Active Shallow Crust,0.0,89.99089,0.0,12/08/8709 +5.69871,50.46829,3604,7,18,2,47,46,4.55,5.0,fr,47744,72,2015640,1,1,Active Shallow Crust,0.0,89.98985,0.0,07/18/3604 +5.69871,50.46829,4229,4,17,11,8,47,4.85,15.0,fr,47745,84,2015677,1,1,Active Shallow Crust,0.0,89.98994,0.0,04/17/4229 +5.698711,50.46829,8006,9,14,18,34,8,6.05,5.357596,fr,47746,160,2015820,1,1,Active Shallow Crust,0.0,89.98988,0.0,09/14/8006 +-3.06435,47.11459,9028,7,30,12,18,20,3.55,5.0,fr,47747,180,2016483,1,1,Active Shallow Crust,240.0128,57.998,0.0,07/30/9028 +-3.06435,47.11459,582,6,18,20,33,58,3.65,5.0,fr,47748,11,2016492,1,1,Active Shallow Crust,0.0,89.99083,0.0,06/18/0582 +-3.06435,47.11459,4381,9,10,0,52,52,3.75,5.0,fr,47749,87,2016504,1,1,Active Shallow Crust,0.0,89.9891,0.0,09/10/4381 +-3.06435,47.11459,347,7,20,6,8,39,3.75,15.0,fr,47750,6,2016505,1,1,Active Shallow Crust,0.0,89.9891,0.0,07/20/0347 +0.33939,42.92988,4315,11,21,5,33,5,3.55,5.0,fr,47751,86,2016960,1,4,Active Shallow Crust,0.0,89.98985,0.0,11/21/4315 +0.33939,42.92988,9306,8,18,8,41,7,3.55,5.0,fr,47752,186,2016960,1,4,Active Shallow Crust,0.0,89.98985,0.0,08/18/9306 +0.33939,42.92988,2965,11,20,20,12,40,3.55,5.0,fr,47753,59,2016960,1,4,Active Shallow Crust,0.0,89.98985,0.0,11/20/2965 +0.33939,42.92988,4174,5,23,0,58,5,3.55,5.0,fr,47754,83,2016960,1,4,Active Shallow Crust,0.0,89.98985,0.0,05/23/4174 +0.33939,42.92988,4705,4,5,7,52,35,3.55,15.0,fr,47755,94,2016961,1,1,Active Shallow Crust,0.0,89.98985,0.0,04/05/4705 +0.33939,42.92988,6672,1,8,21,13,16,3.55,5.0,fr,47756,133,2016963,1,2,Active Shallow Crust,240.0118,57.99816,0.0,01/08/6672 +0.33939,42.92988,6476,8,10,16,32,21,3.55,5.0,fr,47757,129,2016963,1,2,Active Shallow Crust,240.0118,57.99816,0.0,08/10/6476 +0.33939,42.92988,7093,6,25,20,57,14,3.55,15.0,fr,47758,141,2016967,1,1,Active Shallow Crust,0.0,89.9902,-90.0,06/25/7093 +0.33939,42.92988,3746,4,1,17,23,52,3.55,27.5,fr,47759,74,2016968,1,1,Active Shallow Crust,0.0,89.9902,-90.0,04/01/3746 +0.33939,42.92988,9603,3,17,0,45,21,3.55,5.0,fr,47760,192,2016969,1,2,Active Shallow Crust,128.8965,89.99377,0.0,03/17/9603 +0.33939,42.92988,2543,5,19,11,34,49,3.55,5.0,fr,47761,50,2016969,1,2,Active Shallow Crust,128.8965,89.99377,0.0,05/19/2543 +0.33939,42.92988,9242,4,24,21,14,20,3.65,5.0,fr,47762,184,2016972,1,5,Active Shallow Crust,0.0,89.99013,0.0,04/24/9242 +0.33939,42.92988,8735,11,17,13,16,47,3.65,5.0,fr,47763,174,2016972,1,5,Active Shallow Crust,0.0,89.99013,0.0,11/17/8735 +0.33939,42.92988,2795,11,10,18,48,48,3.65,5.0,fr,47764,55,2016972,1,5,Active Shallow Crust,0.0,89.99013,0.0,11/10/2795 +0.33939,42.92988,2641,7,18,0,20,2,3.65,5.0,fr,47765,52,2016972,1,5,Active Shallow Crust,0.0,89.99013,0.0,07/18/2641 +0.33939,42.92988,6247,6,30,21,54,19,3.65,5.0,fr,47766,124,2016972,1,5,Active Shallow Crust,0.0,89.99013,0.0,06/30/6247 +0.33939,42.92988,7804,3,1,5,2,35,3.65,27.5,fr,47767,156,2016974,1,1,Active Shallow Crust,0.0,89.99013,0.0,03/01/7804 +0.33939,42.92988,3800,12,30,19,0,30,3.65,5.0,fr,47768,75,2016975,1,1,Active Shallow Crust,240.0007,58.01279,0.0,12/30/3800 +0.33939,42.92988,9276,10,17,21,13,29,3.65,15.0,fr,47769,185,2016976,1,1,Active Shallow Crust,240.0007,58.01279,0.0,10/17/9276 +0.33939,42.92988,4396,11,28,0,28,8,3.65,5.0,fr,47770,87,2016978,1,1,Active Shallow Crust,0.0,89.99001,-90.0,11/28/4396 +0.33939,42.92988,1069,12,13,20,45,49,3.65,15.0,fr,47771,21,2016979,1,1,Active Shallow Crust,0.0,89.99001,-90.0,12/13/1069 +0.33939,42.92988,7326,1,25,20,6,1,3.75,5.0,fr,47772,146,2016984,1,2,Active Shallow Crust,0.0,89.9901,0.0,01/25/7326 +0.33939,42.92988,2656,7,28,21,39,43,3.75,5.0,fr,47773,53,2016984,1,2,Active Shallow Crust,0.0,89.9901,0.0,07/28/2656 +0.33939,42.92988,6794,5,10,20,16,48,3.75,27.5,fr,47774,135,2016986,1,1,Active Shallow Crust,0.0,89.9901,0.0,05/10/6794 +0.33939,42.92988,2689,1,1,16,24,51,3.75,5.0,fr,47775,53,2016987,1,1,Active Shallow Crust,240.0079,58.0175,0.0,01/01/2689 +0.33939,42.92988,2728,1,20,2,53,33,3.75,15.0,fr,47776,54,2016988,1,1,Active Shallow Crust,240.0079,58.0175,0.0,01/20/2728 +0.33939,42.92988,1763,6,7,22,40,29,3.75,5.0,fr,47777,35,2016990,1,1,Active Shallow Crust,0.0,89.98999,-90.0,06/07/1763 +0.33939,42.92988,443,4,28,4,46,37,3.75,5.0,fr,47778,8,2016993,1,1,Active Shallow Crust,128.897,89.96732,0.0,04/28/0443 +0.33939,42.92988,9801,8,31,15,42,35,3.85,5.0,fr,47779,196,2016996,1,2,Active Shallow Crust,0.0,89.98988,0.0,08/31/9801 +0.33939,42.92988,9645,2,21,15,26,37,3.85,5.0,fr,47780,192,2016996,1,2,Active Shallow Crust,0.0,89.98988,0.0,02/21/9645 +0.33939,42.92988,348,4,26,22,10,47,3.85,15.0,fr,47781,6,2016997,1,2,Active Shallow Crust,0.0,89.98988,0.0,04/26/0348 +0.33939,42.92988,8021,12,13,5,34,39,3.85,15.0,fr,47782,160,2016997,1,2,Active Shallow Crust,0.0,89.98988,0.0,12/13/8021 +0.33939,42.92988,4298,8,21,17,10,0,3.85,5.0,fr,47783,85,2016999,1,1,Active Shallow Crust,240.0103,57.99775,0.0,08/21/4298 +0.33939,42.92988,1890,12,7,17,51,27,3.85,5.0,fr,47784,37,2017002,1,1,Active Shallow Crust,0.0,89.99009,-90.0,12/07/1890 +0.33939,42.92988,5732,8,6,18,55,31,3.85,5.0,fr,47785,114,2017005,1,1,Active Shallow Crust,128.896,89.9938,0.0,08/06/5732 +0.33939,42.92988,6558,5,22,16,17,37,3.95,5.0,fr,47786,131,2017008,1,3,Active Shallow Crust,0.0,89.9901,0.0,05/22/6558 +0.33939,42.92988,2662,3,13,10,19,39,3.95,5.0,fr,47787,53,2017008,1,3,Active Shallow Crust,0.0,89.9901,0.0,03/13/2662 +0.33939,42.92988,8560,4,8,9,5,49,3.95,5.0,fr,47788,171,2017008,1,3,Active Shallow Crust,0.0,89.9901,0.0,04/08/8560 +0.33939,42.92988,3366,3,16,17,46,15,3.95,5.0,fr,47789,67,2017014,1,1,Active Shallow Crust,0.0,89.98998,-90.0,03/16/3366 +0.33939,42.92988,7798,11,26,17,15,56,4.05,5.0,fr,47790,155,2017020,1,3,Active Shallow Crust,0.0,89.98988,0.0,11/26/7798 +0.33939,42.92988,5281,2,9,18,46,10,4.05,5.0,fr,47791,105,2017020,1,3,Active Shallow Crust,0.0,89.98988,0.0,02/09/5281 +0.33939,42.92988,1793,4,13,22,40,3,4.05,5.0,fr,47792,35,2017020,1,3,Active Shallow Crust,0.0,89.98988,0.0,04/13/1793 +0.33939,42.92988,3953,9,27,12,39,35,4.05,15.0,fr,47793,79,2017021,1,1,Active Shallow Crust,0.0,89.98988,0.0,09/27/3953 +0.33939,42.92988,4902,6,2,9,1,52,4.05,5.0,fr,47794,98,2017026,1,1,Active Shallow Crust,0.0,89.99003,-90.0,06/02/4902 +0.33939,42.92988,1325,4,12,10,57,9,4.15,5.0,fr,47795,26,2017032,1,1,Active Shallow Crust,0.0,89.99005,0.0,04/12/1325 +0.33939,42.92988,8131,1,12,0,24,49,4.25,5.0,fr,47796,162,2017044,1,1,Active Shallow Crust,0.0,89.9899,0.0,01/12/8131 +0.33939,42.92988,2033,7,26,12,0,48,4.25,5.0,fr,47797,40,2017050,1,2,Active Shallow Crust,0.0,89.98999,-90.0,07/26/2033 +0.33939,42.92988,8822,2,15,3,47,21,4.25,5.0,fr,47798,176,2017050,1,2,Active Shallow Crust,0.0,89.98999,-90.0,02/15/8822 +0.33939,42.92988,4123,12,20,16,1,28,4.45,5.0,fr,47799,82,2017068,1,4,Active Shallow Crust,0.0,89.99001,0.0,12/20/4123 +0.33939,42.92988,3343,6,10,4,6,31,4.45,5.0,fr,47800,66,2017068,1,4,Active Shallow Crust,0.0,89.99001,0.0,06/10/3343 +0.33939,42.92988,2285,10,25,5,13,0,4.45,5.0,fr,47801,45,2017068,1,4,Active Shallow Crust,0.0,89.99001,0.0,10/25/2285 +0.33939,42.92988,1634,1,14,7,17,51,4.45,5.0,fr,47802,32,2017068,1,4,Active Shallow Crust,0.0,89.99001,0.0,01/14/1634 +0.33939,42.92988,8858,7,30,16,32,11,4.45,15.0,fr,47803,177,2017078,1,1,Active Shallow Crust,128.893,89.9937,0.0,07/30/8858 +0.33939,42.92988,608,4,26,11,28,11,4.55,5.0,fr,47804,12,2017080,1,1,Active Shallow Crust,0.0,89.98993,0.0,04/26/0608 +0.33939,42.92988,2009,11,17,17,38,55,4.55,27.5,fr,47805,40,2017085,1,1,Active Shallow Crust,240.0083,57.99717,0.0,11/17/2009 +0.33939,42.92988,8054,3,10,8,0,23,4.75,27.5,fr,47806,161,2017106,1,1,Active Shallow Crust,0.0,89.99003,0.0,03/10/8054 +0.33939,42.92988,2360,10,29,5,50,28,4.75,5.0,fr,47807,47,2017107,1,1,Active Shallow Crust,240.0062,58.00428,0.0,10/29/2360 +0.33939,42.92988,5119,7,24,21,30,44,4.85,5.0,fr,47808,102,2017116,1,2,Active Shallow Crust,0.0,89.98997,0.0,07/24/5119 +0.33939,42.92988,3033,3,11,20,53,28,4.85,5.0,fr,47809,60,2017116,1,2,Active Shallow Crust,0.0,89.98997,0.0,03/11/3033 +0.33939,42.92988,9566,8,17,21,44,58,4.85,15.0,fr,47810,191,2017117,1,1,Active Shallow Crust,0.0,89.98997,0.0,08/17/9566 +0.33939,42.92988,3524,11,11,18,43,47,5.25,5.0,fr,47811,70,2017164,1,1,Active Shallow Crust,0.0,89.99002,0.0,11/11/3524 +0.33939,42.92988,6089,4,15,12,37,34,5.55,5.0,fr,47812,121,2017200,1,1,Active Shallow Crust,0.0,89.98998,0.0,04/15/6089 +0.33939,42.92988,8170,3,4,2,26,11,5.55,5.0,fr,47813,163,2017203,1,1,Active Shallow Crust,240.026,58.00191,0.0,03/04/8170 +6.57655,46.52869,5808,7,25,23,26,46,3.55,5.0,fr,47814,116,2017440,1,3,Active Shallow Crust,0.0,89.99306,0.0,07/25/5808 +6.57655,46.52869,5379,7,4,16,43,37,3.55,5.0,fr,47815,107,2017440,1,3,Active Shallow Crust,0.0,89.99306,0.0,07/04/5379 +6.57655,46.52869,3240,9,21,3,44,35,3.55,5.0,fr,47816,64,2017440,1,3,Active Shallow Crust,0.0,89.99306,0.0,09/21/3240 +6.57655,46.52869,7588,10,15,12,1,2,3.55,27.5,fr,47817,151,2017442,1,1,Active Shallow Crust,0.0,89.99306,0.0,10/15/7588 +6.57655,46.52869,3235,7,31,17,19,15,3.55,5.0,fr,47818,64,2017443,1,1,Active Shallow Crust,240.0123,57.99733,0.0,07/31/3235 +6.57655,46.52869,8515,6,14,22,47,38,3.55,5.0,fr,47819,170,2017446,1,1,Active Shallow Crust,0.0,89.99298,-90.0,06/14/8515 +6.57655,46.52869,900,3,29,9,16,0,3.55,15.0,fr,47820,17,2017447,1,1,Active Shallow Crust,0.0,89.99298,-90.0,03/29/0900 +6.57655,46.52869,680,4,9,20,38,58,3.55,5.0,fr,47821,13,2017449,1,1,Active Shallow Crust,128.8966,89.99306,0.0,04/09/0680 +6.57655,46.52869,2824,8,16,4,57,5,3.65,15.0,fr,47822,56,2017453,1,2,Active Shallow Crust,0.0,89.98763,0.0,08/16/2824 +6.57655,46.52869,3092,6,24,19,38,2,3.65,15.0,fr,47823,61,2017453,1,2,Active Shallow Crust,0.0,89.98763,0.0,06/24/3092 +6.57655,46.52869,2062,9,1,11,7,35,3.65,27.5,fr,47824,41,2017454,1,3,Active Shallow Crust,0.0,89.98763,0.0,09/01/2062 +6.57655,46.52869,4304,8,3,5,45,58,3.65,27.5,fr,47825,86,2017454,1,3,Active Shallow Crust,0.0,89.98763,0.0,08/03/4304 +6.57655,46.52869,4435,8,4,5,2,54,3.65,27.5,fr,47826,88,2017454,1,3,Active Shallow Crust,0.0,89.98763,0.0,08/04/4435 +6.57655,46.52869,9321,11,19,21,0,58,3.65,15.0,fr,47827,186,2017459,1,1,Active Shallow Crust,0.0,89.98749,-90.0,11/19/9321 +6.57655,46.52869,7507,10,9,23,28,11,3.65,27.5,fr,47828,150,2017460,1,1,Active Shallow Crust,0.0,89.98749,-90.0,10/09/7507 +6.57655,46.52869,8009,10,22,13,48,39,3.65,5.0,fr,47829,160,2017461,1,1,Active Shallow Crust,128.8999,89.96352,0.0,10/22/8009 +6.57655,46.52869,8718,7,19,1,30,39,3.65,27.5,fr,47830,174,2017463,1,1,Active Shallow Crust,128.8999,89.96352,0.0,07/19/8718 +6.57655,46.52869,5261,10,8,3,6,44,3.75,5.0,fr,47831,105,2017464,1,4,Active Shallow Crust,0.0,89.98898,0.0,10/08/5261 +6.57655,46.52869,6260,11,25,1,52,5,3.75,5.0,fr,47832,125,2017464,1,4,Active Shallow Crust,0.0,89.98898,0.0,11/25/6260 +6.57655,46.52869,1173,1,26,5,50,7,3.75,5.0,fr,47833,23,2017464,1,4,Active Shallow Crust,0.0,89.98898,0.0,01/26/1173 +6.57655,46.52869,5607,5,4,0,50,35,3.75,5.0,fr,47834,112,2017464,1,4,Active Shallow Crust,0.0,89.98898,0.0,05/04/5607 +6.57655,46.52869,4298,7,13,9,12,30,3.75,5.0,fr,47835,85,2017467,1,1,Active Shallow Crust,240.0087,58.01702,0.0,07/13/4298 +6.57655,46.52869,7051,10,21,22,39,46,3.75,5.0,fr,47836,141,2017473,1,1,Active Shallow Crust,128.8961,89.96749,0.0,10/21/7051 +6.57655,46.52869,8380,9,19,21,57,48,3.85,5.0,fr,47837,167,2017476,1,6,Active Shallow Crust,0.0,89.99017,0.0,09/19/8380 +6.57655,46.52869,4580,12,14,20,20,29,3.85,5.0,fr,47838,91,2017476,1,6,Active Shallow Crust,0.0,89.99017,0.0,12/14/4580 +6.57655,46.52869,4843,4,5,7,30,58,3.85,5.0,fr,47839,96,2017476,1,6,Active Shallow Crust,0.0,89.99017,0.0,04/05/4843 +6.57655,46.52869,8984,8,18,22,25,57,3.85,5.0,fr,47840,179,2017476,1,6,Active Shallow Crust,0.0,89.99017,0.0,08/18/8984 +6.57655,46.52869,5536,1,18,10,29,5,3.85,5.0,fr,47841,110,2017476,1,6,Active Shallow Crust,0.0,89.99017,0.0,01/18/5536 +6.57655,46.52869,2844,4,27,23,32,26,3.85,5.0,fr,47842,56,2017476,1,6,Active Shallow Crust,0.0,89.99017,0.0,04/27/2844 +6.57655,46.52869,8021,4,29,21,33,20,3.85,27.5,fr,47843,160,2017478,1,2,Active Shallow Crust,0.0,89.99017,0.0,04/29/8021 +6.57655,46.52869,828,2,21,12,59,38,3.85,27.5,fr,47844,16,2017478,1,2,Active Shallow Crust,0.0,89.99017,0.0,02/21/0828 +6.57655,46.52869,4683,11,15,11,49,0,3.85,5.0,fr,47845,93,2017479,1,1,Active Shallow Crust,240.0107,57.99858,0.0,11/15/4683 +6.57655,46.52869,2747,11,23,4,1,24,3.85,15.0,fr,47846,54,2017480,1,1,Active Shallow Crust,240.0107,57.99858,0.0,11/23/2747 +6.57655,46.52869,4953,3,17,18,4,24,3.95,15.0,fr,47847,99,2017489,1,1,Active Shallow Crust,0.0,89.99124,0.0,03/17/4953 +6.57655,46.52869,8683,3,3,17,46,22,3.95,5.0,fr,47848,173,2017491,1,1,Active Shallow Crust,240.0191,58.00495,0.0,03/03/8683 +6.57655,46.52869,1000,9,1,14,39,45,3.95,5.0,fr,47849,19,2017494,1,2,Active Shallow Crust,0.0,89.99114,-90.0,09/01/1000 +6.57655,46.52869,8365,7,24,11,45,19,3.95,5.0,fr,47850,167,2017494,1,2,Active Shallow Crust,0.0,89.99114,-90.0,07/24/8365 +6.57655,46.52869,4336,2,18,13,5,51,3.95,5.0,fr,47851,86,2017497,1,1,Active Shallow Crust,128.9004,89.99343,0.0,02/18/4336 +6.57655,46.52869,3110,9,22,10,27,15,4.05,5.0,fr,47852,62,2017500,1,2,Active Shallow Crust,0.0,89.9883,0.0,09/22/3110 +6.57655,46.52869,8663,8,27,4,18,30,4.05,5.0,fr,47853,173,2017500,1,2,Active Shallow Crust,0.0,89.9883,0.0,08/27/8663 +6.57655,46.52869,3602,6,16,18,22,23,4.05,15.0,fr,47854,72,2017504,1,1,Active Shallow Crust,240.0061,58.00598,0.0,06/16/3602 +6.57655,46.52869,3636,6,6,1,47,32,4.15,5.0,fr,47855,72,2017515,1,1,Active Shallow Crust,240.0087,57.99709,0.0,06/06/3636 +6.57655,46.52869,6762,12,9,3,32,7,4.15,15.0,fr,47856,135,2017519,1,1,Active Shallow Crust,0.0,89.98945,-90.0,12/09/6762 +6.57655,46.52869,5920,2,22,8,56,45,4.25,5.0,fr,47857,118,2017524,1,1,Active Shallow Crust,0.0,89.9907,0.0,02/22/5920 +6.57655,46.52869,137,3,10,7,27,41,4.25,5.0,fr,47858,2,2017527,1,2,Active Shallow Crust,240.0074,57.99408,0.0,03/10/0137 +6.57655,46.52869,5626,6,22,14,13,35,4.25,5.0,fr,47859,112,2017527,1,2,Active Shallow Crust,240.0074,57.99408,0.0,06/22/5626 +6.57655,46.52869,8724,12,29,23,5,16,4.35,5.0,fr,47860,174,2017536,1,2,Active Shallow Crust,0.0,89.98895,0.0,12/29/8724 +6.57655,46.52869,3529,3,27,13,18,44,4.35,5.0,fr,47861,70,2017536,1,2,Active Shallow Crust,0.0,89.98895,0.0,03/27/3529 +6.57655,46.52869,8732,11,17,22,1,8,4.45,15.0,fr,47862,174,2017549,1,2,Active Shallow Crust,0.0,89.99015,0.0,11/17/8732 +6.57655,46.52869,2360,11,7,6,6,22,4.45,15.0,fr,47863,47,2017549,1,2,Active Shallow Crust,0.0,89.99015,0.0,11/07/2360 +6.57655,46.52869,760,7,14,20,29,11,4.55,5.0,fr,47864,15,2017560,1,2,Active Shallow Crust,0.0,89.98903,0.0,07/14/0760 +6.57655,46.52869,6976,5,14,7,58,51,4.55,5.0,fr,47865,139,2017560,1,2,Active Shallow Crust,0.0,89.98903,0.0,05/14/6976 +6.57655,46.52869,3459,4,12,3,33,12,4.75,5.0,fr,47866,69,2017584,1,1,Active Shallow Crust,0.0,89.98954,0.0,04/12/3459 +6.57655,46.52869,1163,8,6,7,9,16,4.85,15.0,fr,47867,23,2017597,1,1,Active Shallow Crust,0.0,89.99068,0.0,08/06/1163 +6.57655,46.52869,6045,11,29,8,57,22,4.95,5.0,fr,47868,120,2017608,1,1,Active Shallow Crust,0.0,89.99031,0.0,11/29/6045 +6.57655,46.52869,4561,11,14,10,35,59,4.95,5.0,fr,47869,91,2017611,1,1,Active Shallow Crust,240.0119,58.00439,0.0,11/14/4561 +6.57655,46.52869,391,2,8,23,0,46,5.75,5.0,fr,47870,7,2017704,1,1,Active Shallow Crust,0.0,89.99007,0.0,02/08/0391 +6.57655,46.52869,9492,3,17,8,45,26,5.75,5.0,fr,47871,189,2017713,1,1,Active Shallow Crust,128.8739,89.98849,0.0,03/17/9492 +1.788,44.27254,2001,10,8,16,31,46,3.55,15.0,fr,47872,40,2017921,1,1,Active Shallow Crust,0.0,89.98917,0.0,10/08/2001 +1.788,44.27254,1994,12,8,17,26,27,3.65,5.0,fr,47873,39,2017932,1,1,Active Shallow Crust,0.0,89.99035,0.0,12/08/1994 +1.788,44.27254,4544,4,17,20,37,14,3.75,15.0,fr,47874,90,2017945,1,1,Active Shallow Crust,0.0,89.98996,0.0,04/17/4544 +1.788,44.27254,1808,12,11,8,12,36,4.45,5.0,fr,47875,36,2018028,1,1,Active Shallow Crust,0.0,89.98975,0.0,12/11/1808 +3.56691,43.76128,3588,10,7,12,33,28,3.65,5.0,fr,47876,71,2018412,1,1,Active Shallow Crust,0.0,89.99026,0.0,10/07/3588 +3.56691,43.76128,7915,6,23,1,43,29,4.05,5.0,fr,47877,158,2018460,1,1,Active Shallow Crust,0.0,89.98976,0.0,06/23/7915 +3.56691,43.76128,4701,5,7,16,12,46,4.25,5.0,fr,47878,94,2018484,1,1,Active Shallow Crust,0.0,89.99024,0.0,05/07/4701 +3.56691,43.76128,6219,5,12,20,55,41,4.65,15.0,fr,47879,124,2018533,1,1,Active Shallow Crust,0.0,89.98974,0.0,05/12/6219 +0.37689,45.24357,8772,7,16,22,25,21,3.55,5.0,fr,47880,175,2019366,1,1,Active Shallow Crust,0.0,89.99013,-90.0,07/16/8772 +0.37689,45.24357,4590,8,13,11,59,46,4.05,5.0,fr,47881,91,2019420,1,1,Active Shallow Crust,0.0,89.99002,0.0,08/13/4590 +0.37689,45.24357,8274,6,29,3,10,37,6.05,15.0,fr,47882,165,2019661,1,1,Active Shallow Crust,360.0,89.99001,0.0,06/29/8274 +7.40946,43.73084,9593,3,31,1,0,43,3.55,15.0,fr,47883,191,2019841,1,2,Active Shallow Crust,0.0,89.99271,0.0,03/31/9593 +7.40946,43.73084,1888,4,15,9,8,56,3.55,15.0,fr,47884,37,2019841,1,2,Active Shallow Crust,0.0,89.99271,0.0,04/15/1888 +7.40946,43.73084,3397,1,19,3,41,35,3.55,5.0,fr,47885,67,2019849,1,1,Active Shallow Crust,128.8977,89.99271,0.0,01/19/3397 +7.40946,43.73084,1825,11,3,23,23,48,3.55,27.5,fr,47886,36,2019851,1,1,Active Shallow Crust,128.8977,89.99271,0.0,11/03/1825 +7.40946,43.73084,2490,5,11,0,33,14,3.65,5.0,fr,47887,49,2019852,1,2,Active Shallow Crust,0.0,89.98701,0.0,05/11/2490 +7.40946,43.73084,8782,12,24,16,18,46,3.65,5.0,fr,47888,175,2019852,1,2,Active Shallow Crust,0.0,89.98701,0.0,12/24/8782 +7.40946,43.73084,1740,10,8,11,6,37,3.65,5.0,fr,47889,34,2019855,1,1,Active Shallow Crust,240.0012,58.01323,0.0,10/08/1740 +7.40946,43.73084,3272,8,8,8,22,5,3.65,15.0,fr,47890,65,2019856,1,1,Active Shallow Crust,240.0012,58.01323,0.0,08/08/3272 +7.40946,43.73084,8924,3,12,17,4,5,3.65,5.0,fr,47891,178,2019861,1,1,Active Shallow Crust,128.9006,89.96347,0.0,03/12/8924 +7.40946,43.73084,570,10,31,21,20,5,3.65,15.0,fr,47892,11,2019862,1,1,Active Shallow Crust,128.9006,89.96347,0.0,10/31/0570 +7.40946,43.73084,7824,4,3,10,50,59,3.75,5.0,fr,47893,156,2019864,1,1,Active Shallow Crust,0.0,89.98843,0.0,04/03/7824 +7.40946,43.73084,5016,4,20,23,52,48,3.85,5.0,fr,47894,100,2019876,1,1,Active Shallow Crust,0.0,89.98969,0.0,04/20/5016 +7.40946,43.73084,6444,6,28,9,34,42,3.85,15.0,fr,47895,128,2019877,1,1,Active Shallow Crust,0.0,89.98969,0.0,06/28/6444 +7.40946,43.73084,5899,9,2,9,16,25,3.85,5.0,fr,47896,117,2019879,1,1,Active Shallow Crust,240.0111,57.99747,0.0,09/02/5899 +7.40946,43.73084,5790,10,27,6,1,34,3.85,15.0,fr,47897,115,2019886,1,1,Active Shallow Crust,128.8957,89.99484,0.0,10/27/5790 +7.40946,43.73084,3989,3,3,14,52,38,3.95,5.0,fr,47898,79,2019888,1,1,Active Shallow Crust,0.0,89.99081,0.0,03/03/3989 +7.40946,43.73084,6504,4,16,15,41,47,4.05,5.0,fr,47899,130,2019900,1,1,Active Shallow Crust,0.0,89.99181,0.0,04/16/6504 +7.40946,43.73084,3727,6,21,3,27,3,4.05,27.5,fr,47900,74,2019911,1,1,Active Shallow Crust,128.89,89.99385,0.0,06/21/3727 +7.40946,43.73084,4740,6,19,11,50,15,4.15,5.0,fr,47901,94,2019912,1,1,Active Shallow Crust,0.0,89.98904,0.0,06/19/4740 +7.40946,43.73084,2867,7,20,14,4,21,4.15,27.5,fr,47902,57,2019914,1,1,Active Shallow Crust,0.0,89.98904,0.0,07/20/2867 +7.40946,43.73084,6943,1,7,20,10,47,4.15,5.0,fr,47903,138,2019918,1,1,Active Shallow Crust,0.0,89.98891,-90.0,01/07/6943 +7.40946,43.73084,1544,9,19,16,38,17,4.15,5.0,fr,47904,30,2019921,1,1,Active Shallow Crust,128.8969,89.99452,0.0,09/19/1544 +7.40946,43.73084,5402,2,1,5,7,58,4.25,15.0,fr,47905,108,2019931,1,2,Active Shallow Crust,0.0,89.99012,-90.0,02/01/5402 +7.40946,43.73084,7556,4,13,2,11,44,4.25,15.0,fr,47906,151,2019931,1,2,Active Shallow Crust,0.0,89.99012,-90.0,04/13/7556 +7.40946,43.73084,1959,3,14,12,13,4,4.35,27.5,fr,47907,39,2019938,1,1,Active Shallow Crust,0.0,89.99129,0.0,03/14/1959 +7.40946,43.73084,420,3,1,1,2,8,4.35,5.0,fr,47908,8,2019939,1,1,Active Shallow Crust,240.0078,57.99582,0.0,03/01/0420 +7.40946,43.73084,4679,11,4,22,14,10,4.35,5.0,fr,47909,93,2019942,1,1,Active Shallow Crust,0.0,89.9912,-90.0,11/04/4679 +7.40946,43.73084,7188,5,17,3,31,35,4.45,5.0,fr,47910,143,2019948,1,2,Active Shallow Crust,0.0,89.98965,0.0,05/17/7188 +7.40946,43.73084,8750,7,6,5,18,6,4.45,5.0,fr,47911,174,2019948,1,2,Active Shallow Crust,0.0,89.98965,0.0,07/06/8750 +7.40946,43.73084,6740,12,20,10,18,54,4.45,15.0,fr,47912,134,2019949,1,1,Active Shallow Crust,0.0,89.98965,0.0,12/20/6740 +7.40946,43.73084,6169,7,21,2,6,41,5.55,15.0,fr,47913,123,2020081,1,1,Active Shallow Crust,0.0,89.98979,0.0,07/21/6169 +-0.19241,44.51721,1826,7,6,9,11,44,3.55,5.0,fr,47914,36,2020320,1,1,Active Shallow Crust,0.0,89.98989,0.0,07/06/1826 +-0.19241,44.51721,9324,3,2,8,6,58,3.85,15.0,fr,47915,186,2020363,1,1,Active Shallow Crust,0.0,89.99002,-90.0,03/02/9324 +-0.19241,44.51721,5856,9,17,18,36,32,3.95,5.0,fr,47916,117,2020368,1,1,Active Shallow Crust,0.0,89.98994,0.0,09/17/5856 +0.40099,50.04416,3888,6,29,1,35,11,3.75,5.0,fr,47917,77,2020824,1,1,Active Shallow Crust,0.0,89.99004,0.0,06/29/3888 +0.40099,50.04416,2931,11,26,22,22,6,4.15,15.0,fr,47918,58,2020873,1,1,Active Shallow Crust,0.0,89.99006,0.0,11/26/2931 +0.40099,50.04416,1209,12,16,18,33,32,4.25,5.0,fr,47919,24,2020887,1,1,Active Shallow Crust,240.0083,57.99419,0.0,12/16/1209 +0.40099,50.04416,5154,11,12,0,51,12,4.65,15.0,fr,47920,103,2020933,1,1,Active Shallow Crust,0.0,89.98996,0.0,11/12/5154 +2.49585,50.00034,641,10,12,20,38,20,3.55,15.0,fr,47921,12,2021284,1,2,Active Shallow Crust,240.0125,57.99782,0.0,10/12/0641 +2.49585,50.00034,6896,11,18,6,53,9,3.55,15.0,fr,47922,137,2021284,1,2,Active Shallow Crust,240.0125,57.99782,0.0,11/18/6896 +2.49585,50.00034,4106,8,30,9,1,54,3.65,15.0,fr,47923,82,2021293,1,1,Active Shallow Crust,0.0,89.99133,0.0,08/30/4106 +2.49585,50.00034,1781,1,16,17,15,48,3.75,5.0,fr,47924,35,2021313,1,1,Active Shallow Crust,128.8961,89.96732,0.0,01/16/1781 +2.49585,50.00034,5004,4,6,4,1,42,3.85,5.0,fr,47925,100,2021316,1,1,Active Shallow Crust,0.0,89.99082,0.0,04/06/5004 +2.49585,50.00034,7245,7,13,7,35,18,4.05,5.0,fr,47926,144,2021340,1,1,Active Shallow Crust,0.0,89.99089,0.0,07/13/7245 +2.49585,50.00034,7011,12,31,6,54,17,4.15,5.0,fr,47927,140,2021352,1,1,Active Shallow Crust,0.0,89.99026,0.0,12/31/7011 +2.49585,50.00034,5077,9,26,21,16,7,4.15,5.0,fr,47928,101,2021355,1,1,Active Shallow Crust,240.0092,57.99757,0.0,09/26/5077 +2.49585,50.00034,6670,12,25,5,38,43,4.25,5.0,fr,47929,133,2021364,1,1,Active Shallow Crust,0.0,89.98987,0.0,12/25/6670 +2.49585,50.00034,3008,3,16,19,59,51,4.35,5.0,fr,47930,60,2021376,1,1,Active Shallow Crust,0.0,89.98968,0.0,03/16/3008 +-0.42247,43.67698,5528,12,24,9,28,12,3.55,5.0,fr,47931,110,2021760,1,1,Active Shallow Crust,0.0,89.98997,0.0,12/24/5528 +-0.42247,43.67698,1603,11,10,23,23,40,3.85,5.0,fr,47932,32,2021796,1,2,Active Shallow Crust,0.0,89.99,0.0,11/10/1603 +-0.42247,43.67698,6027,12,11,5,26,14,3.85,5.0,fr,47933,120,2021796,1,2,Active Shallow Crust,0.0,89.99,0.0,12/11/6027 +-0.42247,43.67698,7337,6,1,11,25,14,3.95,5.0,fr,47934,146,2021808,1,1,Active Shallow Crust,0.0,89.98994,0.0,06/01/7337 +-0.42247,43.67698,1741,8,21,9,6,53,4.15,5.0,fr,47935,34,2021832,1,1,Active Shallow Crust,0.0,89.98994,0.0,08/21/1741 +6.87301,49.74604,3260,11,7,6,0,48,3.65,15.0,fr,47936,65,2022259,1,1,Active Shallow Crust,0.0,89.98825,-90.0,11/07/3260 +6.87301,49.74604,8855,3,24,6,14,10,3.85,5.0,fr,47937,177,2022276,1,2,Active Shallow Crust,0.0,89.99078,0.0,03/24/8855 +6.87301,49.74604,6452,6,23,22,8,17,3.85,5.0,fr,47938,129,2022276,1,2,Active Shallow Crust,0.0,89.99078,0.0,06/23/6452 +6.50892,51.91477,5178,9,17,15,45,5,3.95,5.0,fr,47939,103,2022771,1,1,Active Shallow Crust,240.0208,58.00512,0.0,09/17/5178 +6.50892,51.91477,7955,9,12,0,37,22,4.05,5.0,fr,47940,159,2022780,1,1,Active Shallow Crust,0.0,89.98951,0.0,09/12/7955 +6.50892,51.91477,9806,6,20,2,50,59,4.35,15.0,fr,47941,196,2022817,1,1,Active Shallow Crust,0.0,89.9901,0.0,06/20/9806 +6.06922,47.62479,4008,5,20,6,12,54,3.55,15.0,fr,47942,80,2024161,1,1,Active Shallow Crust,0.0,89.9932,0.0,05/20/4008 +6.06922,47.62479,3652,1,15,3,32,9,3.55,27.5,fr,47943,73,2024162,1,1,Active Shallow Crust,0.0,89.9932,0.0,01/15/3652 +6.06922,47.62479,8773,3,9,4,29,49,3.55,5.0,fr,47944,175,2024169,1,1,Active Shallow Crust,128.8969,89.9932,0.0,03/09/8773 +6.06922,47.62479,4946,3,31,4,16,12,3.65,5.0,fr,47945,98,2024178,1,1,Active Shallow Crust,0.0,89.98775,-90.0,03/31/4946 +6.06922,47.62479,3546,12,28,5,17,28,3.65,15.0,fr,47946,70,2024182,1,1,Active Shallow Crust,128.8994,89.96355,0.0,12/28/3546 +6.06922,47.62479,423,4,22,7,54,32,3.75,5.0,fr,47947,8,2024184,1,1,Active Shallow Crust,0.0,89.9892,0.0,04/22/0423 +6.06922,47.62479,4919,5,6,12,15,24,3.75,5.0,fr,47948,98,2024187,1,1,Active Shallow Crust,240.0084,58.01763,0.0,05/06/4919 +6.06922,47.62479,4557,11,5,21,21,5,3.75,5.0,fr,47949,91,2024193,1,1,Active Shallow Crust,128.8966,89.96696,0.0,11/05/4557 +6.06922,47.62479,5286,8,5,8,10,39,3.85,5.0,fr,47950,105,2024196,1,2,Active Shallow Crust,0.0,89.99038,0.0,08/05/5286 +6.06922,47.62479,6031,11,9,7,14,56,3.85,5.0,fr,47951,120,2024196,1,2,Active Shallow Crust,0.0,89.99038,0.0,11/09/6031 +6.06922,47.62479,4744,9,2,15,40,54,3.85,27.5,fr,47952,94,2024204,1,1,Active Shallow Crust,0.0,89.99026,-90.0,09/02/4744 +6.06922,47.62479,4340,12,10,13,26,0,4.05,5.0,fr,47953,86,2024220,1,1,Active Shallow Crust,0.0,89.98853,0.0,12/10/4340 +6.06922,47.62479,9060,7,5,15,7,4,4.15,5.0,fr,47954,181,2024232,1,2,Active Shallow Crust,0.0,89.98978,0.0,07/05/9060 +6.06922,47.62479,1313,10,31,12,3,41,4.15,5.0,fr,47955,26,2024232,1,2,Active Shallow Crust,0.0,89.98978,0.0,10/31/1313 +6.06922,47.62479,3761,6,17,3,46,45,4.35,5.0,fr,47956,75,2024256,1,1,Active Shallow Crust,0.0,89.98917,0.0,06/17/3761 +6.06922,47.62479,7507,3,21,5,31,36,4.45,5.0,fr,47957,150,2024268,1,1,Active Shallow Crust,0.0,89.99036,0.0,03/21/7507 +6.06922,47.62479,2351,9,4,14,19,25,4.55,15.0,fr,47958,47,2024281,1,1,Active Shallow Crust,0.0,89.98925,0.0,09/04/2351 +6.06922,47.62479,1171,10,4,10,37,47,4.85,5.0,fr,47959,23,2024316,1,1,Active Shallow Crust,0.0,89.98935,0.0,10/04/1171 +5.38124,50.91856,4129,1,13,20,29,40,3.55,5.0,fr,47960,82,2024640,1,2,Active Shallow Crust,0.0,89.98728,0.0,01/13/4129 +5.38124,50.91856,2677,9,20,16,6,28,3.55,5.0,fr,47961,53,2024640,1,2,Active Shallow Crust,0.0,89.98728,0.0,09/20/2677 +5.38124,50.91856,8111,3,19,13,36,42,3.65,5.0,fr,47962,162,2024652,1,2,Active Shallow Crust,0.0,89.98867,0.0,03/19/8111 +5.38124,50.91856,4327,9,6,19,4,47,3.65,5.0,fr,47963,86,2024652,1,2,Active Shallow Crust,0.0,89.98867,0.0,09/06/4327 +5.38124,50.91856,6274,10,19,0,42,12,3.65,27.5,fr,47964,125,2024657,1,1,Active Shallow Crust,240.0016,58.0126,0.0,10/19/6274 +5.38124,50.91856,7066,1,22,1,41,57,3.65,15.0,fr,47965,141,2024659,1,1,Active Shallow Crust,0.0,89.98854,-90.0,01/22/7066 +5.38124,50.91856,9822,8,16,22,17,23,3.65,15.0,fr,47966,196,2024662,1,1,Active Shallow Crust,128.8997,89.96361,0.0,08/16/9822 +5.38124,50.91856,8458,6,6,5,51,26,3.75,5.0,fr,47967,169,2024664,1,1,Active Shallow Crust,0.0,89.9899,0.0,06/06/8458 +5.38124,50.91856,3715,9,11,21,23,29,3.75,27.5,fr,47968,74,2024672,1,1,Active Shallow Crust,0.0,89.98978,-90.0,09/11/3715 +5.38124,50.91856,9407,4,10,4,33,10,3.85,5.0,fr,47969,188,2024676,1,1,Active Shallow Crust,0.0,89.991,0.0,04/10/9407 +5.38124,50.91856,7795,12,31,1,0,59,3.85,15.0,fr,47970,155,2024686,1,1,Active Shallow Crust,128.8959,89.99325,0.0,12/31/7795 +5.38124,50.91856,1783,5,18,3,56,49,3.95,5.0,fr,47971,35,2024697,1,1,Active Shallow Crust,128.9004,89.99398,0.0,05/18/1783 +5.38124,50.91856,3295,6,9,12,39,12,4.05,5.0,fr,47972,65,2024700,1,1,Active Shallow Crust,0.0,89.98927,0.0,06/09/3295 +5.38124,50.91856,3555,12,10,3,22,0,4.15,5.0,fr,47973,71,2024712,1,1,Active Shallow Crust,0.0,89.99044,0.0,12/10/3555 +5.38124,50.91856,307,9,15,23,27,1,4.25,5.0,fr,47974,6,2024724,1,1,Active Shallow Crust,0.0,89.98864,0.0,09/15/0307 +5.38124,50.91856,4604,6,24,18,41,49,4.45,15.0,fr,47975,92,2024755,1,1,Active Shallow Crust,0.0,89.99088,-90.0,06/24/4604 +5.38124,50.91856,5551,9,14,23,25,49,5.45,5.0,fr,47976,111,2024874,1,1,Active Shallow Crust,0.0,89.98989,-90.0,09/14/5551 +3.71915,47.04459,760,2,16,10,53,56,3.85,5.0,fr,47977,15,2025156,1,1,Active Shallow Crust,0.0,89.99027,0.0,02/16/0760 +3.71915,47.04459,6276,4,29,7,53,37,3.95,5.0,fr,47978,125,2025174,1,1,Active Shallow Crust,0.0,89.98904,-90.0,04/29/6276 +3.71915,47.04459,6908,3,7,16,54,22,4.05,5.0,fr,47979,138,2025180,1,1,Active Shallow Crust,0.0,89.99034,0.0,03/07/6908 +3.71915,47.04459,7078,4,25,6,3,54,4.45,5.0,fr,47980,141,2025231,1,1,Active Shallow Crust,240.0055,57.99474,0.0,04/25/7078 +6.22044,51.51511,4557,1,8,22,33,21,3.55,5.0,fr,47981,91,2025600,1,1,Active Shallow Crust,0.0,89.98745,0.0,01/08/4557 +6.22044,51.51511,9572,2,25,6,29,50,3.55,15.0,fr,47982,191,2025601,1,1,Active Shallow Crust,0.0,89.98745,0.0,02/25/9572 +6.22044,51.51511,1901,4,8,3,52,11,3.55,27.5,fr,47983,38,2025602,1,1,Active Shallow Crust,0.0,89.98745,0.0,04/08/1901 +6.22044,51.51511,3861,10,13,3,50,6,3.65,5.0,fr,47984,77,2025612,1,1,Active Shallow Crust,0.0,89.98882,0.0,10/13/3861 +6.22044,51.51511,1645,4,19,10,15,22,3.65,5.0,fr,47985,32,2025618,1,1,Active Shallow Crust,0.0,89.98869,-90.0,04/19/1645 +6.22044,51.51511,8658,5,10,4,17,53,3.75,15.0,fr,47986,173,2025625,1,1,Active Shallow Crust,0.0,89.99003,0.0,05/10/8658 +6.22044,51.51511,5133,9,1,6,48,38,3.95,15.0,fr,47987,102,2025649,1,1,Active Shallow Crust,0.0,89.98812,0.0,09/01/5133 +6.22044,51.51511,1175,1,27,13,31,59,4.05,15.0,fr,47988,23,2025667,1,1,Active Shallow Crust,0.0,89.98929,-90.0,01/27/1175 +6.22044,51.51511,3884,8,22,22,36,6,4.25,5.0,fr,47989,77,2025684,1,1,Active Shallow Crust,0.0,89.98878,0.0,08/22/3884 +6.22044,51.51511,495,3,28,1,12,7,4.25,27.5,fr,47990,9,2025686,1,1,Active Shallow Crust,0.0,89.98878,0.0,03/28/0495 +6.03502,45.02472,1711,9,30,7,58,28,3.55,5.0,fr,47991,34,2026560,1,2,Active Shallow Crust,0.0,89.99287,0.0,09/30/1711 +6.03502,45.02472,5005,11,16,21,16,24,3.55,5.0,fr,47992,100,2026560,1,2,Active Shallow Crust,0.0,89.99287,0.0,11/16/5005 +6.03502,45.02472,681,8,3,9,59,20,3.65,15.0,fr,47993,13,2026573,1,1,Active Shallow Crust,0.0,89.9873,0.0,08/03/0681 +6.03502,45.02472,2461,8,3,13,51,3,3.65,27.5,fr,47994,49,2026574,1,1,Active Shallow Crust,0.0,89.9873,0.0,08/03/2461 +6.03502,45.02472,7216,9,6,14,13,13,3.65,5.0,fr,47995,144,2026581,1,1,Active Shallow Crust,128.9003,89.96349,0.0,09/06/7216 +6.03502,45.02472,2582,4,26,10,0,18,3.65,15.0,fr,47996,51,2026582,1,1,Active Shallow Crust,128.9003,89.96349,0.0,04/26/2582 +6.03502,45.02472,4920,12,12,6,38,53,3.75,5.0,fr,47997,98,2026584,1,3,Active Shallow Crust,0.0,89.98868,0.0,12/12/4920 +6.03502,45.02472,2622,5,25,18,38,5,3.75,5.0,fr,47998,52,2026584,1,3,Active Shallow Crust,0.0,89.98868,0.0,05/25/2622 +6.03502,45.02472,3405,12,30,5,50,33,3.75,5.0,fr,47999,68,2026584,1,3,Active Shallow Crust,0.0,89.98868,0.0,12/30/3405 +6.03502,45.02472,8224,7,5,6,18,38,3.75,27.5,fr,48000,164,2026586,1,1,Active Shallow Crust,0.0,89.98868,0.0,07/05/8224 +6.03502,45.02472,4392,2,16,21,41,3,3.85,5.0,fr,48001,87,2026596,1,2,Active Shallow Crust,0.0,89.98991,0.0,02/16/4392 +6.03502,45.02472,5973,7,17,3,32,32,3.85,5.0,fr,48002,119,2026596,1,2,Active Shallow Crust,0.0,89.98991,0.0,07/17/5973 +6.03502,45.02472,9235,12,10,13,11,3,3.85,15.0,fr,48003,184,2026597,1,1,Active Shallow Crust,0.0,89.98991,0.0,12/10/9235 +6.03502,45.02472,3367,3,7,23,9,3,3.95,5.0,fr,48004,67,2026608,1,2,Active Shallow Crust,0.0,89.991,0.0,03/07/3367 +6.03502,45.02472,3714,6,30,4,28,56,3.95,5.0,fr,48005,74,2026608,1,2,Active Shallow Crust,0.0,89.991,0.0,06/30/3714 +6.03502,45.02472,4095,6,25,10,26,47,4.05,5.0,fr,48006,81,2026620,1,1,Active Shallow Crust,0.0,89.99198,0.0,06/25/4095 +6.03502,45.02472,9289,6,10,15,32,15,4.05,27.5,fr,48007,185,2026622,1,1,Active Shallow Crust,0.0,89.99198,0.0,06/10/9289 +6.03502,45.02472,2215,10,2,6,15,14,4.05,27.5,fr,48008,44,2026628,1,1,Active Shallow Crust,0.0,89.99189,-90.0,10/02/2215 +6.03502,45.02472,4527,2,15,15,59,35,4.05,27.5,fr,48009,90,2026631,1,1,Active Shallow Crust,128.8903,89.99399,0.0,02/15/4527 +6.03502,45.02472,9436,9,25,17,19,3,4.15,5.0,fr,48010,188,2026638,1,1,Active Shallow Crust,0.0,89.98916,-90.0,09/25/9436 +6.03502,45.02472,2393,8,21,8,13,47,4.85,27.5,fr,48011,47,2026721,1,1,Active Shallow Crust,240.0164,58.00237,0.0,08/21/2393 +6.03502,45.02472,1056,7,29,7,13,6,5.85,5.0,fr,48012,21,2026836,1,1,Active Shallow Crust,0.0,89.9899,0.0,07/29/1056 +-2.92067,46.99198,7632,11,17,13,13,38,3.65,5.0,fr,48013,152,2027061,1,1,Active Shallow Crust,128.8999,89.96353,0.0,11/17/7632 +-2.92067,46.99198,8338,12,31,7,40,18,4.25,5.0,fr,48014,166,2027124,1,1,Active Shallow Crust,0.0,89.98924,0.0,12/31/8338 +-2.92067,46.99198,7455,12,4,5,11,5,4.45,5.0,fr,48015,149,2027148,1,1,Active Shallow Crust,0.0,89.99023,0.0,12/04/7455 +1.12828,52.27808,7938,9,8,10,19,34,3.75,5.0,fr,48016,158,2027544,1,1,Active Shallow Crust,0.0,89.9902,0.0,09/08/7938 +1.12828,52.27808,1140,4,19,19,5,25,4.35,5.0,fr,48017,22,2027616,1,1,Active Shallow Crust,0.0,89.99017,0.0,04/19/1140 +1.128312,52.27808,9065,2,21,12,29,59,7.15,17.5,fr,48018,181,2027958,1,1,Active Shallow Crust,360.0,89.99001,-90.0,02/21/9065 +3.70793,47.682,9760,4,2,20,36,16,3.85,5.0,fr,48019,195,2028036,1,1,Active Shallow Crust,0.0,89.99039,0.0,04/02/9760 +3.70793,47.682,1449,12,21,21,53,6,5.15,15.0,fr,48020,28,2028196,1,1,Active Shallow Crust,240.0204,58.00008,0.0,12/21/1449 +1.85558,47.2175,7291,10,16,21,16,36,3.55,27.5,fr,48021,145,2028482,1,1,Active Shallow Crust,0.0,89.98972,0.0,10/16/7291 +1.85558,47.2175,7459,11,14,0,30,35,3.65,5.0,fr,48022,149,2028492,1,3,Active Shallow Crust,0.0,89.98932,0.0,11/14/7459 +1.85558,47.2175,4610,3,12,0,20,39,3.65,5.0,fr,48023,92,2028492,1,3,Active Shallow Crust,0.0,89.98932,0.0,03/12/4610 +1.85558,47.2175,3887,2,9,8,5,58,3.65,5.0,fr,48024,77,2028492,1,3,Active Shallow Crust,0.0,89.98932,0.0,02/09/3887 +1.85558,47.2175,3662,2,12,4,10,15,3.95,5.0,fr,48025,73,2028534,1,1,Active Shallow Crust,0.0,89.99017,-90.0,02/12/3662 +1.85558,47.2175,3979,8,3,6,56,45,4.15,5.0,fr,48026,79,2028552,1,1,Active Shallow Crust,0.0,89.9897,0.0,08/03/3979 +1.85558,47.2175,4304,5,23,14,43,22,4.75,15.0,fr,48027,86,2028631,1,1,Active Shallow Crust,0.0,89.98999,-90.0,05/23/4304 +1.85558,47.2175,7930,12,13,5,31,18,4.85,15.0,fr,48028,158,2028646,1,1,Active Shallow Crust,128.8923,89.98908,0.0,12/13/7930 +1.85558,47.2175,6732,6,6,19,25,26,5.15,5.0,fr,48029,134,2028672,1,1,Active Shallow Crust,0.0,89.98996,0.0,06/06/6732 +4.4615,51.40321,6466,8,2,0,43,41,3.55,5.0,fr,48030,129,2028960,1,4,Active Shallow Crust,0.0,89.98742,0.0,08/02/6466 +4.4615,51.40321,2345,7,30,5,3,6,3.55,5.0,fr,48031,46,2028960,1,4,Active Shallow Crust,0.0,89.98742,0.0,07/30/2345 +4.4615,51.40321,8727,7,7,10,8,57,3.55,5.0,fr,48032,174,2028960,1,4,Active Shallow Crust,0.0,89.98742,0.0,07/07/8727 +4.4615,51.40321,3742,12,26,14,43,6,3.55,5.0,fr,48033,74,2028960,1,4,Active Shallow Crust,0.0,89.98742,0.0,12/26/3742 +4.4615,51.40321,1182,7,20,21,46,25,3.65,5.0,fr,48034,23,2028978,1,1,Active Shallow Crust,0.0,89.98866,-90.0,07/20/1182 +4.4615,51.40321,5054,12,14,17,1,22,3.95,5.0,fr,48035,101,2029008,1,1,Active Shallow Crust,0.0,89.98809,0.0,12/14/5054 +4.4615,51.40321,5700,11,6,21,56,33,4.35,5.0,fr,48036,113,2029056,1,1,Active Shallow Crust,0.0,89.98998,0.0,11/06/5700 +-0.98461,42.52039,7126,11,23,9,25,50,3.55,5.0,fr,48037,142,2029440,1,1,Active Shallow Crust,0.0,89.98978,0.0,11/23/7126 +-0.98461,42.52039,1019,7,9,23,27,2,3.65,5.0,fr,48038,20,2029452,1,3,Active Shallow Crust,0.0,89.99007,0.0,07/09/1019 +-0.98461,42.52039,147,8,7,9,26,42,3.65,5.0,fr,48039,2,2029452,1,3,Active Shallow Crust,0.0,89.99007,0.0,08/07/0147 +-0.98461,42.52039,9996,1,19,17,8,18,3.65,5.0,fr,48040,199,2029452,1,3,Active Shallow Crust,0.0,89.99007,0.0,01/19/9996 +-0.98461,42.52039,7752,3,25,7,42,6,3.65,5.0,fr,48041,155,2029458,1,1,Active Shallow Crust,0.0,89.98995,-90.0,03/25/7752 +-0.98461,42.52039,8164,1,16,5,33,26,3.75,5.0,fr,48042,163,2029464,1,1,Active Shallow Crust,0.0,89.98967,0.0,01/16/8164 +-0.98461,42.52039,3950,8,13,22,42,12,3.75,15.0,fr,48043,78,2029465,1,1,Active Shallow Crust,0.0,89.98967,0.0,08/13/3950 +-0.98461,42.52039,6192,2,6,14,26,54,3.75,27.5,fr,48044,123,2029475,1,1,Active Shallow Crust,128.897,89.96735,0.0,02/06/6192 +-0.98461,42.52039,8186,7,4,0,52,35,3.95,5.0,fr,48045,163,2029488,1,3,Active Shallow Crust,0.0,89.99004,0.0,07/04/8186 +-0.98461,42.52039,3467,6,12,18,4,48,3.95,5.0,fr,48046,69,2029488,1,3,Active Shallow Crust,0.0,89.99004,0.0,06/12/3467 +-0.98461,42.52039,8665,11,26,17,53,13,3.95,5.0,fr,48047,173,2029488,1,3,Active Shallow Crust,0.0,89.99004,0.0,11/26/8665 +-0.98461,42.52039,4091,1,21,3,42,21,3.95,27.5,fr,48048,81,2029490,1,1,Active Shallow Crust,0.0,89.99004,0.0,01/21/4091 +-0.98461,42.52039,4254,12,10,22,42,16,3.95,5.0,fr,48049,85,2029491,1,1,Active Shallow Crust,240.0192,58.00486,0.0,12/10/4254 +-0.98461,42.52039,9888,6,16,7,36,22,4.45,15.0,fr,48050,197,2029558,1,1,Active Shallow Crust,128.893,89.99374,0.0,06/16/9888 +-0.98461,42.52039,8817,9,1,7,55,0,4.75,5.0,fr,48051,176,2029584,1,1,Active Shallow Crust,0.0,89.98997,0.0,09/01/8817 +-0.98461,42.52039,2652,3,12,23,8,56,4.85,27.5,fr,48052,53,2029601,1,1,Active Shallow Crust,240.0156,58.00202,0.0,03/12/2652 +-0.98461,42.52039,9304,12,20,4,5,38,4.95,5.0,fr,48053,186,2029608,1,1,Active Shallow Crust,0.0,89.98999,0.0,12/20/9304 +-0.98461,42.52039,4910,7,30,15,27,43,5.15,5.0,fr,48054,98,2029638,1,1,Active Shallow Crust,0.0,89.99002,-90.0,07/30/4910 +0.63493,49.00381,9622,4,19,10,6,26,3.55,15.0,fr,48055,192,2029921,1,1,Active Shallow Crust,0.0,89.99007,0.0,04/19/9622 +0.63493,49.00381,7834,1,22,10,18,12,3.65,5.0,fr,48056,156,2029938,1,1,Active Shallow Crust,0.0,89.99031,-90.0,01/22/7834 +0.63493,49.00381,5668,7,25,13,48,56,3.75,5.0,fr,48057,113,2029944,1,1,Active Shallow Crust,0.0,89.99015,0.0,07/25/5668 +0.63493,49.00381,4446,1,29,10,27,13,3.75,15.0,fr,48058,88,2029948,1,1,Active Shallow Crust,240.0087,58.0176,0.0,01/29/4446 +0.63493,49.00381,9316,11,19,12,26,31,3.85,5.0,fr,48059,186,2029956,1,2,Active Shallow Crust,0.0,89.99005,0.0,11/19/9316 +0.63493,49.00381,3311,4,30,21,15,37,3.85,5.0,fr,48060,66,2029956,1,2,Active Shallow Crust,0.0,89.99005,0.0,04/30/3311 +0.63493,49.00381,5220,9,28,7,26,24,3.95,5.0,fr,48061,104,2029968,1,1,Active Shallow Crust,0.0,89.99009,0.0,09/28/5220 +0.63493,49.00381,6252,5,21,13,55,53,4.15,5.0,fr,48062,125,2029992,1,1,Active Shallow Crust,0.0,89.99005,0.0,05/21/6252 +0.63493,49.00381,363,7,18,19,17,22,4.25,5.0,fr,48063,7,2030004,1,2,Active Shallow Crust,0.0,89.99003,0.0,07/18/0363 +0.63493,49.00381,2647,7,9,0,43,52,4.25,5.0,fr,48064,52,2030004,1,2,Active Shallow Crust,0.0,89.99003,0.0,07/09/2647 +0.63493,49.00381,9267,12,24,20,52,6,4.35,5.0,fr,48065,185,2030025,1,1,Active Shallow Crust,128.8974,89.9827,0.0,12/24/9267 +0.63493,49.00381,6750,3,26,18,0,10,4.35,15.0,fr,48066,134,2030026,1,1,Active Shallow Crust,128.8974,89.9827,0.0,03/26/6750 +0.63493,49.00381,2579,11,4,4,43,1,4.55,5.0,fr,48067,51,2030040,1,1,Active Shallow Crust,0.0,89.99006,0.0,11/04/2579 +-4.77585,48.71768,4458,8,11,23,8,45,3.55,15.0,fr,48068,89,2030401,1,1,Active Shallow Crust,0.0,89.98669,0.0,08/11/4458 +-4.77585,48.71768,2252,1,24,3,12,24,3.55,5.0,fr,48069,45,2030406,1,1,Active Shallow Crust,0.0,89.99327,-90.0,01/24/2252 +-4.77585,48.71768,1708,4,16,3,17,21,3.75,5.0,fr,48070,34,2030424,1,1,Active Shallow Crust,0.0,89.98943,0.0,04/16/1708 +-4.77585,48.71768,6905,10,26,1,41,48,3.85,5.0,fr,48071,138,2030442,1,1,Active Shallow Crust,0.0,89.99047,-90.0,10/26/6905 +-4.77585,48.71768,5,4,20,7,15,48,4.15,5.0,fr,48072,0,2030472,1,1,Active Shallow Crust,0.0,89.99,0.0,04/20/0005 +-4.77585,48.71768,1057,2,2,15,19,56,4.25,5.0,fr,48073,21,2030493,1,1,Active Shallow Crust,128.894,89.98103,0.0,02/02/1057 +-4.77585,48.71768,8769,6,9,13,31,7,4.55,15.0,fr,48074,175,2030521,1,1,Active Shallow Crust,0.0,89.98948,0.0,06/09/8769 +-4.77585,48.71768,5497,1,18,15,33,28,4.65,5.0,fr,48075,109,2030541,1,1,Active Shallow Crust,128.8904,89.98688,0.0,01/18/5497 +-4.77585,48.71768,3106,3,17,8,33,59,4.95,5.0,fr,48076,62,2030577,1,1,Active Shallow Crust,128.8891,89.98957,0.0,03/17/3106 +-4.77585,48.71768,7080,9,17,23,0,59,5.85,5.0,fr,48077,141,2030676,1,1,Active Shallow Crust,0.0,89.9901,0.0,09/17/7080 +0.96895,50.98276,7228,12,14,7,34,28,3.55,15.0,fr,48078,144,2031361,1,2,Active Shallow Crust,0.0,89.98969,0.0,12/14/7228 +0.96895,50.98276,6961,10,13,12,0,10,3.55,15.0,fr,48079,139,2031361,1,2,Active Shallow Crust,0.0,89.98969,0.0,10/13/6961 +0.96895,50.98276,6293,6,19,4,12,24,3.55,27.5,fr,48080,125,2031362,1,1,Active Shallow Crust,0.0,89.98969,0.0,06/19/6293 +0.96895,50.98276,8002,2,26,12,59,37,3.55,15.0,fr,48081,160,2031370,1,1,Active Shallow Crust,128.8959,89.99365,0.0,02/26/8002 +0.96895,50.98276,2306,12,23,12,27,24,3.65,5.0,fr,48082,46,2031381,1,1,Active Shallow Crust,128.8999,89.96349,0.0,12/23/2306 +0.96895,50.98276,2490,12,6,4,57,38,4.05,27.5,fr,48083,49,2031431,1,1,Active Shallow Crust,128.8898,89.99353,0.0,12/06/2490 +0.96895,50.98276,9711,9,12,13,7,59,4.25,5.0,fr,48084,194,2031444,1,1,Active Shallow Crust,0.0,89.99007,0.0,09/12/9711 +0.96895,50.98276,5901,2,13,8,2,16,4.35,15.0,fr,48085,118,2031457,1,1,Active Shallow Crust,0.0,89.98989,0.0,02/13/5901 +0.96895,50.98276,2358,12,31,16,2,29,4.55,5.0,fr,48086,47,2031480,1,1,Active Shallow Crust,0.0,89.98996,0.0,12/31/2358 +0.96895,50.98276,9479,7,3,18,1,3,4.65,15.0,fr,48087,189,2031493,1,1,Active Shallow Crust,0.0,89.98994,0.0,07/03/9479 +4.17827,44.51111,8354,1,16,4,32,47,3.55,5.0,fr,48088,167,2031840,1,1,Active Shallow Crust,0.0,89.99281,0.0,01/16/8354 +4.17827,44.51111,2909,5,21,7,44,50,3.55,15.0,fr,48089,58,2031841,1,1,Active Shallow Crust,0.0,89.99281,0.0,05/21/2909 +4.17827,44.51111,5211,7,10,18,49,35,3.85,5.0,fr,48090,104,2031882,1,1,Active Shallow Crust,0.0,89.9897,-90.0,07/10/5211 +-2.04759,41.84348,4842,3,22,2,58,31,3.55,27.5,fr,48091,96,2032328,1,1,Active Shallow Crust,0.0,89.9886,-90.0,03/22/4842 +-2.04759,41.84348,5016,4,10,22,58,0,3.95,5.0,fr,48092,100,2032368,1,1,Active Shallow Crust,0.0,89.99052,0.0,04/10/5016 +-2.04759,41.84348,8218,5,18,10,33,48,4.55,5.0,fr,48093,164,2032449,1,1,Active Shallow Crust,128.8952,89.98567,0.0,05/18/8218 +3.39448,48.14272,3802,3,3,9,44,51,3.55,15.0,fr,48094,76,2032801,1,1,Active Shallow Crust,0.0,89.98991,0.0,03/03/3802 +3.39448,48.14272,7967,6,13,19,26,22,3.55,15.0,fr,48095,159,2032810,1,1,Active Shallow Crust,128.8955,89.99327,0.0,06/13/7967 +1.51507,43.03883,8355,3,16,5,46,51,3.55,5.0,fr,48096,167,2033760,1,2,Active Shallow Crust,0.0,89.99078,0.0,03/16/8355 +1.51507,43.03883,4868,8,4,20,18,27,3.55,5.0,fr,48097,97,2033760,1,2,Active Shallow Crust,0.0,89.99078,0.0,08/04/4868 +1.51507,43.03883,835,7,24,18,6,49,3.75,5.0,fr,48098,16,2033784,1,1,Active Shallow Crust,0.0,89.98975,0.0,07/24/0835 +1.51507,43.03883,4669,1,29,13,33,13,3.75,15.0,fr,48099,93,2033785,1,1,Active Shallow Crust,0.0,89.98975,0.0,01/29/4669 +1.51507,43.03883,8088,2,11,1,32,19,3.85,5.0,fr,48100,161,2033796,1,1,Active Shallow Crust,0.0,89.98956,0.0,02/11/8088 +1.51507,43.03883,3033,4,17,4,33,47,3.85,15.0,fr,48101,60,2033806,1,1,Active Shallow Crust,128.8957,89.99413,0.0,04/17/3033 +1.51507,43.03883,6736,5,25,12,33,20,4.35,5.0,fr,48102,134,2033856,1,1,Active Shallow Crust,0.0,89.98973,0.0,05/25/6736 +1.25092,41.795,7871,11,1,11,16,4,3.55,27.5,fr,48103,157,2034242,1,1,Active Shallow Crust,0.0,89.9906,0.0,11/01/7871 +1.25092,41.795,1200,10,12,7,6,24,3.65,15.0,fr,48104,23,2034253,1,2,Active Shallow Crust,0.0,89.98995,0.0,10/12/1200 +1.25092,41.795,7882,11,3,23,59,27,3.65,15.0,fr,48105,157,2034253,1,2,Active Shallow Crust,0.0,89.98995,0.0,11/03/7882 +1.25092,41.795,529,4,19,17,48,33,3.85,5.0,fr,48106,10,2034276,1,1,Active Shallow Crust,0.0,89.98936,0.0,04/19/0529 +1.25092,41.795,4675,4,9,16,46,42,3.95,27.5,fr,48107,93,2034290,1,1,Active Shallow Crust,0.0,89.99052,0.0,04/09/4675 +1.25092,41.795,7818,9,19,10,46,53,4.25,5.0,fr,48108,156,2034327,1,1,Active Shallow Crust,240.0066,57.99391,0.0,09/19/7818 +1.25092,41.795,7433,4,19,14,37,15,4.45,15.0,fr,48109,148,2034349,1,1,Active Shallow Crust,0.0,89.99,0.0,04/19/7433 +1.25092,41.795,9544,4,18,4,40,56,4.95,15.0,fr,48110,190,2034409,1,1,Active Shallow Crust,0.0,89.98988,0.0,04/18/9544 +6.39268,48.42961,764,4,20,19,29,50,3.55,15.0,fr,48111,15,2034721,1,1,Active Shallow Crust,0.0,89.99331,0.0,04/20/0764 +6.39268,48.42961,5198,2,11,18,36,6,3.75,27.5,fr,48112,103,2034746,1,1,Active Shallow Crust,0.0,89.98937,0.0,02/11/5198 +6.39268,48.42961,5913,8,24,12,27,1,3.75,5.0,fr,48113,118,2034750,1,2,Active Shallow Crust,0.0,89.98925,-90.0,08/24/5913 +6.39268,48.42961,6820,4,22,19,56,52,3.75,5.0,fr,48114,136,2034750,1,2,Active Shallow Crust,0.0,89.98925,-90.0,04/22/6820 +6.39268,48.42961,4299,5,1,16,23,0,4.05,5.0,fr,48115,85,2034780,1,1,Active Shallow Crust,0.0,89.98871,0.0,05/01/4299 +6.39268,48.42961,6229,8,21,18,17,50,4.05,27.5,fr,48116,124,2034782,1,1,Active Shallow Crust,0.0,89.98871,0.0,08/21/6229 +6.39268,48.42961,9397,4,29,3,20,20,4.55,5.0,fr,48117,187,2034840,1,1,Active Shallow Crust,0.0,89.98942,0.0,04/29/9397 +6.39268,48.42961,5543,5,12,4,4,21,4.95,5.0,fr,48118,110,2034897,1,1,Active Shallow Crust,128.8893,89.98955,0.0,05/12/5543 +6.39268,48.42961,1111,5,11,0,35,5,5.55,5.0,fr,48119,22,2034960,1,1,Active Shallow Crust,0.0,89.98996,0.0,05/11/1111 +-4.23001,47.68134,3482,6,10,11,15,30,3.55,15.0,fr,48120,69,2036644,1,1,Active Shallow Crust,240.0122,57.9985,0.0,06/10/3482 +-4.23001,47.68134,256,7,11,9,12,5,3.55,5.0,fr,48121,5,2036646,1,1,Active Shallow Crust,0.0,89.99313,-90.0,07/11/0256 +-4.23001,47.68134,3478,3,8,12,32,32,3.75,5.0,fr,48122,69,2036670,1,1,Active Shallow Crust,0.0,89.98909,-90.0,03/08/3478 +2.76763,42.97567,9637,10,17,18,39,2,3.55,5.0,fr,48123,192,2037120,1,1,Active Shallow Crust,0.0,89.98893,0.0,10/17/9637 +2.76763,42.97567,4728,11,6,15,52,2,3.55,15.0,fr,48124,94,2037121,1,1,Active Shallow Crust,0.0,89.98893,0.0,11/06/4728 +2.76763,42.97567,6642,3,27,1,45,0,3.55,5.0,fr,48125,132,2037123,1,2,Active Shallow Crust,240.0119,57.99865,0.0,03/27/6642 +2.76763,42.97567,2088,9,7,23,12,5,3.55,5.0,fr,48126,41,2037123,1,2,Active Shallow Crust,240.0119,57.99865,0.0,09/07/2088 +2.76763,42.97567,2920,1,29,8,4,25,3.55,15.0,fr,48127,58,2037124,1,1,Active Shallow Crust,240.0119,57.99865,0.0,01/29/2920 +2.76763,42.97567,459,10,31,23,49,11,3.65,5.0,fr,48128,9,2037132,1,1,Active Shallow Crust,0.0,89.99014,0.0,10/31/0459 +2.76763,42.97567,8623,12,31,4,45,17,3.65,27.5,fr,48129,172,2037134,1,1,Active Shallow Crust,0.0,89.99014,0.0,12/31/8623 +2.76763,42.97567,32,8,5,10,53,30,3.75,15.0,fr,48130,0,2037145,1,1,Active Shallow Crust,0.0,89.99121,0.0,08/05/0032 +2.76763,42.97567,9637,10,4,3,27,48,3.75,15.0,fr,48131,192,2037154,1,1,Active Shallow Crust,128.8962,89.96743,0.0,10/04/9637 +2.76763,42.97567,3413,3,30,18,8,39,3.95,5.0,fr,48132,68,2037168,1,3,Active Shallow Crust,0.0,89.99069,0.0,03/30/3413 +2.76763,42.97567,2814,5,7,7,26,0,3.95,5.0,fr,48133,56,2037168,1,3,Active Shallow Crust,0.0,89.99069,0.0,05/07/2814 +2.76763,42.97567,4433,3,16,15,48,37,3.95,5.0,fr,48134,88,2037168,1,3,Active Shallow Crust,0.0,89.99069,0.0,03/16/4433 +2.76763,42.97567,8474,10,25,16,45,25,3.95,5.0,fr,48135,169,2037177,1,1,Active Shallow Crust,128.9007,89.99418,0.0,10/25/8474 +2.76763,42.97567,579,1,4,10,17,57,4.15,5.0,fr,48136,11,2037192,1,1,Active Shallow Crust,0.0,89.99075,0.0,01/04/0579 +2.76763,42.97567,5499,10,3,8,45,38,5.25,5.0,fr,48137,109,2037324,1,1,Active Shallow Crust,0.0,89.9901,0.0,10/03/5499 +-1.26826,41.52061,9881,5,14,8,45,41,3.55,15.0,fr,48138,197,2038081,1,1,Active Shallow Crust,0.0,89.99056,0.0,05/14/9881 +-1.26826,41.52061,7580,8,26,23,14,28,3.85,15.0,fr,48139,151,2038117,1,1,Active Shallow Crust,0.0,89.99065,0.0,08/26/7580 +-1.26826,41.52061,496,5,4,6,19,0,3.85,27.5,fr,48140,9,2038118,1,1,Active Shallow Crust,0.0,89.99065,0.0,05/04/0496 +-1.26826,41.52061,5544,4,21,0,54,13,4.05,15.0,fr,48141,110,2038141,1,1,Active Shallow Crust,0.0,89.99045,0.0,04/21/5544 +0.10933,42.08616,435,9,9,2,1,15,3.55,5.0,fr,48142,8,2038560,1,1,Active Shallow Crust,0.0,89.98994,0.0,09/09/0435 +0.10933,42.08616,480,1,11,8,9,13,3.75,5.0,fr,48143,9,2038584,1,1,Active Shallow Crust,0.0,89.98997,0.0,01/11/0480 +0.10933,42.08616,7198,5,1,15,47,29,4.35,5.0,fr,48144,143,2038665,1,1,Active Shallow Crust,128.8986,89.98276,0.0,05/01/7198 +-2.90697,42.43378,7578,1,9,13,13,41,3.65,5.0,fr,48145,151,2039052,1,1,Active Shallow Crust,0.0,89.99005,0.0,01/09/7578 +-2.90697,42.43378,7157,6,25,20,15,34,3.65,5.0,fr,48146,143,2039058,1,1,Active Shallow Crust,0.0,89.98994,-90.0,06/25/7157 +-2.90697,42.43378,3949,10,8,14,19,28,3.75,5.0,fr,48147,78,2039073,1,1,Active Shallow Crust,128.8976,89.96742,0.0,10/08/3949 +-2.90697,42.43378,3930,9,15,3,39,12,3.85,5.0,fr,48148,78,2039082,1,1,Active Shallow Crust,0.0,89.98934,-90.0,09/15/3930 +-2.90697,42.43378,558,11,29,14,7,51,3.95,5.0,fr,48149,11,2039088,1,1,Active Shallow Crust,0.0,89.99061,0.0,11/29/0558 +-2.90697,42.43378,1748,2,26,10,54,10,4.05,5.0,fr,48150,34,2039106,1,1,Active Shallow Crust,0.0,89.98942,-90.0,02/26/1748 +-2.90697,42.43378,9010,4,24,16,16,8,4.55,15.0,fr,48151,180,2039170,1,1,Active Shallow Crust,128.8948,89.98569,0.0,04/24/9010 +-2.90697,42.43378,9269,8,8,8,49,38,4.75,5.0,fr,48152,185,2039184,1,1,Active Shallow Crust,0.0,89.98972,0.0,08/08/9269 +2.7275,41.49666,4142,3,20,22,28,52,3.55,5.0,fr,48153,82,2039520,1,4,Active Shallow Crust,0.0,89.98867,0.0,03/20/4142 +2.7275,41.49666,9378,7,29,12,25,13,3.55,5.0,fr,48154,187,2039520,1,4,Active Shallow Crust,0.0,89.98867,0.0,07/29/9378 +2.7275,41.49666,6173,12,7,2,32,53,3.55,5.0,fr,48155,123,2039520,1,4,Active Shallow Crust,0.0,89.98867,0.0,12/07/6173 +2.7275,41.49666,4698,7,31,1,50,38,3.55,5.0,fr,48156,93,2039520,1,4,Active Shallow Crust,0.0,89.98867,0.0,07/31/4698 +2.7275,41.49666,255,2,14,2,2,54,3.55,5.0,fr,48157,5,2039523,1,3,Active Shallow Crust,240.011,57.99812,0.0,02/14/0255 +2.7275,41.49666,3537,12,18,15,6,39,3.55,5.0,fr,48158,70,2039523,1,3,Active Shallow Crust,240.011,57.99812,0.0,12/18/3537 +2.7275,41.49666,1356,10,3,13,11,44,3.55,5.0,fr,48159,27,2039523,1,3,Active Shallow Crust,240.011,57.99812,0.0,10/03/1356 +2.7275,41.49666,5879,4,15,3,19,57,3.65,5.0,fr,48160,117,2039532,1,7,Active Shallow Crust,0.0,89.98991,0.0,04/15/5879 +2.7275,41.49666,5863,1,24,2,9,56,3.65,5.0,fr,48161,117,2039532,1,7,Active Shallow Crust,0.0,89.98991,0.0,01/24/5863 +2.7275,41.49666,5009,8,20,15,42,2,3.65,5.0,fr,48162,100,2039532,1,7,Active Shallow Crust,0.0,89.98991,0.0,08/20/5009 +2.7275,41.49666,1946,10,31,17,47,21,3.65,5.0,fr,48163,38,2039532,1,7,Active Shallow Crust,0.0,89.98991,0.0,10/31/1946 +2.7275,41.49666,1775,10,26,5,38,10,3.65,5.0,fr,48164,35,2039532,1,7,Active Shallow Crust,0.0,89.98991,0.0,10/26/1775 +2.7275,41.49666,2764,9,27,15,27,58,3.65,5.0,fr,48165,55,2039532,1,7,Active Shallow Crust,0.0,89.98991,0.0,09/27/2764 +2.7275,41.49666,1140,1,6,19,46,22,3.65,5.0,fr,48166,22,2039532,1,7,Active Shallow Crust,0.0,89.98991,0.0,01/06/1140 +2.7275,41.49666,445,11,28,7,50,42,3.65,27.5,fr,48167,8,2039534,1,1,Active Shallow Crust,0.0,89.98991,0.0,11/28/0445 +2.7275,41.49666,5001,7,15,1,16,38,3.65,5.0,fr,48168,100,2039538,1,1,Active Shallow Crust,0.0,89.98978,-90.0,07/15/5001 +2.7275,41.49666,9161,1,14,0,37,46,3.65,5.0,fr,48169,183,2039541,1,1,Active Shallow Crust,128.9018,89.96342,0.0,01/14/9161 +2.7275,41.49666,1879,12,11,12,14,21,3.75,5.0,fr,48170,37,2039544,1,4,Active Shallow Crust,0.0,89.991,0.0,12/11/1879 +2.7275,41.49666,7618,1,8,17,55,59,3.75,5.0,fr,48171,152,2039544,1,4,Active Shallow Crust,0.0,89.991,0.0,01/08/7618 +2.7275,41.49666,9174,9,8,20,7,43,3.75,5.0,fr,48172,183,2039544,1,4,Active Shallow Crust,0.0,89.991,0.0,09/08/9174 +2.7275,41.49666,7844,10,5,4,52,49,3.75,5.0,fr,48173,156,2039544,1,4,Active Shallow Crust,0.0,89.991,0.0,10/05/7844 +2.7275,41.49666,9292,10,16,23,18,58,3.75,15.0,fr,48174,185,2039545,1,2,Active Shallow Crust,0.0,89.991,0.0,10/16/9292 +2.7275,41.49666,3144,6,27,0,19,6,3.75,15.0,fr,48175,62,2039545,1,2,Active Shallow Crust,0.0,89.991,0.0,06/27/3144 +2.7275,41.49666,5520,1,30,15,18,21,3.75,27.5,fr,48176,110,2039549,1,1,Active Shallow Crust,240.0084,58.01728,0.0,01/30/5520 +2.7275,41.49666,5493,7,31,13,19,57,3.75,5.0,fr,48177,109,2039550,1,1,Active Shallow Crust,0.0,89.9909,-90.0,07/31/5493 +2.7275,41.49666,757,3,7,23,15,37,3.75,5.0,fr,48178,15,2039553,1,1,Active Shallow Crust,128.8972,89.96741,0.0,03/07/0757 +2.7275,41.49666,5312,10,1,14,39,27,3.75,15.0,fr,48179,106,2039554,1,1,Active Shallow Crust,128.8972,89.96741,0.0,10/01/5312 +2.7275,41.49666,515,4,5,9,55,47,3.85,15.0,fr,48180,10,2039557,1,1,Active Shallow Crust,0.0,89.9893,0.0,04/05/0515 +2.7275,41.49666,5920,4,3,23,37,50,3.85,15.0,fr,48181,118,2039560,1,1,Active Shallow Crust,240.0103,57.9975,0.0,04/03/5920 +2.7275,41.49666,9358,8,13,15,59,58,3.85,5.0,fr,48182,187,2039562,1,1,Active Shallow Crust,0.0,89.98918,-90.0,08/13/9358 +2.7275,41.49666,6898,1,20,8,8,35,3.85,5.0,fr,48183,137,2039565,1,1,Active Shallow Crust,128.8961,89.99465,0.0,01/20/6898 +2.7275,41.49666,1242,8,17,3,21,13,3.95,5.0,fr,48184,24,2039568,1,1,Active Shallow Crust,0.0,89.99047,0.0,08/17/1242 +2.7275,41.49666,5074,9,1,10,14,28,3.95,15.0,fr,48185,101,2039569,1,1,Active Shallow Crust,0.0,89.99047,0.0,09/01/5074 +2.7275,41.49666,8440,11,19,18,55,51,4.05,5.0,fr,48186,168,2039580,1,3,Active Shallow Crust,0.0,89.98938,0.0,11/19/8440 +2.7275,41.49666,2588,7,4,15,27,53,4.05,5.0,fr,48187,51,2039580,1,3,Active Shallow Crust,0.0,89.98938,0.0,07/04/2588 +2.7275,41.49666,2833,1,13,8,3,17,4.05,5.0,fr,48188,56,2039580,1,3,Active Shallow Crust,0.0,89.98938,0.0,01/13/2833 +2.7275,41.49666,5883,7,19,11,56,30,4.15,15.0,fr,48189,117,2039593,1,1,Active Shallow Crust,0.0,89.99054,0.0,07/19/5883 +2.7275,41.49666,5607,6,18,20,44,47,4.25,5.0,fr,48190,112,2039604,1,3,Active Shallow Crust,0.0,89.98988,0.0,06/18/5607 +2.7275,41.49666,1412,5,11,1,13,24,4.25,5.0,fr,48191,28,2039604,1,3,Active Shallow Crust,0.0,89.98988,0.0,05/11/1412 +2.7275,41.49666,596,5,23,10,24,29,4.25,5.0,fr,48192,11,2039604,1,3,Active Shallow Crust,0.0,89.98988,0.0,05/23/0596 +2.7275,41.49666,7710,1,26,18,42,50,4.45,5.0,fr,48193,154,2039628,1,1,Active Shallow Crust,0.0,89.99062,0.0,01/26/7710 +2.7275,41.49666,5062,6,9,7,41,47,4.45,5.0,fr,48194,101,2039637,1,1,Active Shallow Crust,128.8931,89.99397,0.0,06/09/5062 +2.7275,41.49666,443,4,27,10,37,22,4.95,5.0,fr,48195,8,2039688,1,1,Active Shallow Crust,0.0,89.9902,0.0,04/27/0443 +2.7275,41.49666,7263,1,3,15,36,5,4.95,15.0,fr,48196,145,2039689,1,1,Active Shallow Crust,0.0,89.9902,0.0,01/03/7263 +2.7275,41.49666,7589,12,16,22,8,52,5.45,5.0,fr,48197,151,2039748,1,1,Active Shallow Crust,0.0,89.98983,0.0,12/16/7589 +5.48253,45.085,1395,8,25,19,58,40,3.55,5.0,fr,48198,27,2040000,1,2,Active Shallow Crust,0.0,89.99288,0.0,08/25/1395 +5.48253,45.085,1533,8,24,8,17,47,3.55,5.0,fr,48199,30,2040000,1,2,Active Shallow Crust,0.0,89.99288,0.0,08/24/1533 +5.48253,45.085,6513,12,21,10,27,30,3.55,27.5,fr,48200,130,2040005,1,1,Active Shallow Crust,240.0122,57.99723,0.0,12/21/6513 +5.48253,45.085,2737,11,30,12,28,54,3.55,5.0,fr,48201,54,2040006,1,1,Active Shallow Crust,0.0,89.9928,-90.0,11/30/2737 +5.48253,45.085,6698,4,27,16,36,23,3.55,27.5,fr,48202,133,2040008,1,1,Active Shallow Crust,0.0,89.9928,-90.0,04/27/6698 +5.48253,45.085,3911,7,28,10,29,57,3.55,5.0,fr,48203,78,2040009,1,1,Active Shallow Crust,128.8969,89.99288,0.0,07/28/3911 +5.48253,45.085,7348,3,22,10,39,53,3.65,5.0,fr,48204,146,2040012,1,2,Active Shallow Crust,0.0,89.98731,0.0,03/22/7348 +5.48253,45.085,9239,8,17,22,51,32,3.65,5.0,fr,48205,184,2040012,1,2,Active Shallow Crust,0.0,89.98731,0.0,08/17/9239 +5.48253,45.085,7038,7,13,21,57,30,3.65,15.0,fr,48206,140,2040016,1,1,Active Shallow Crust,240.0014,58.01257,0.0,07/13/7038 +5.48253,45.085,9068,5,6,17,29,46,3.65,5.0,fr,48207,181,2040018,1,2,Active Shallow Crust,0.0,89.98716,-90.0,05/06/9068 +5.48253,45.085,442,5,25,11,27,51,3.65,5.0,fr,48208,8,2040018,1,2,Active Shallow Crust,0.0,89.98716,-90.0,05/25/0442 +5.48253,45.085,696,9,7,8,49,26,3.65,15.0,fr,48209,13,2040022,1,1,Active Shallow Crust,128.8999,89.96349,0.0,09/07/0696 +5.48253,45.085,5601,6,9,22,52,49,3.75,5.0,fr,48210,112,2040024,1,2,Active Shallow Crust,0.0,89.98869,0.0,06/09/5601 +5.48253,45.085,5237,6,21,22,37,6,3.75,5.0,fr,48211,104,2040024,1,2,Active Shallow Crust,0.0,89.98869,0.0,06/21/5237 +5.48253,45.085,5961,2,5,19,17,45,3.75,15.0,fr,48212,119,2040025,1,1,Active Shallow Crust,0.0,89.98869,0.0,02/05/5961 +5.48253,45.085,2834,11,5,6,30,9,3.75,27.5,fr,48213,56,2040029,1,1,Active Shallow Crust,240.0082,58.01703,0.0,11/05/2834 +5.48253,45.085,8467,5,22,8,32,58,3.85,5.0,fr,48214,169,2040036,1,4,Active Shallow Crust,0.0,89.98992,0.0,05/22/8467 +5.48253,45.085,8393,12,15,9,45,4,3.85,5.0,fr,48215,167,2040036,1,4,Active Shallow Crust,0.0,89.98992,0.0,12/15/8393 +5.48253,45.085,136,4,30,9,4,29,3.85,5.0,fr,48216,2,2040036,1,4,Active Shallow Crust,0.0,89.98992,0.0,04/30/0136 +5.48253,45.085,2219,10,31,14,17,47,3.85,5.0,fr,48217,44,2040036,1,4,Active Shallow Crust,0.0,89.98992,0.0,10/31/2219 +5.48253,45.085,193,3,31,4,55,20,3.85,27.5,fr,48218,3,2040041,1,1,Active Shallow Crust,240.0105,57.99734,0.0,03/31/0193 +5.48253,45.085,6508,9,4,11,58,28,3.95,5.0,fr,48219,130,2040048,1,2,Active Shallow Crust,0.0,89.99101,0.0,09/04/6508 +5.48253,45.085,6805,11,10,18,41,24,3.95,5.0,fr,48220,136,2040048,1,2,Active Shallow Crust,0.0,89.99101,0.0,11/10/6805 +5.48253,45.085,3129,12,30,2,33,28,3.95,15.0,fr,48221,62,2040049,1,1,Active Shallow Crust,0.0,89.99101,0.0,12/30/3129 +5.48253,45.085,4868,7,30,23,6,3,3.95,5.0,fr,48222,97,2040051,1,2,Active Shallow Crust,240.0201,58.00449,0.0,07/30/4868 +5.48253,45.085,1607,4,9,23,21,58,3.95,5.0,fr,48223,32,2040051,1,2,Active Shallow Crust,240.0201,58.00449,0.0,04/09/1607 +5.48253,45.085,7502,9,7,8,5,50,4.25,5.0,fr,48224,150,2040084,1,1,Active Shallow Crust,0.0,89.99046,0.0,09/07/7502 +5.48253,45.085,3492,9,15,17,52,46,4.25,15.0,fr,48225,69,2040085,1,1,Active Shallow Crust,0.0,89.99046,0.0,09/15/3492 +5.48253,45.085,7331,12,19,0,57,27,4.35,5.0,fr,48226,146,2040096,1,1,Active Shallow Crust,0.0,89.98866,0.0,12/19/7331 +5.48253,45.085,3886,7,10,13,59,48,4.35,5.0,fr,48227,77,2040102,1,1,Active Shallow Crust,0.0,89.99139,-90.0,07/10/3886 +5.48253,45.085,6314,5,7,2,42,29,4.45,5.0,fr,48228,126,2040114,1,1,Active Shallow Crust,0.0,89.98978,-90.0,05/07/6314 +5.48253,45.085,1221,9,27,23,35,52,4.45,5.0,fr,48229,24,2040117,1,1,Active Shallow Crust,128.8923,89.99368,0.0,09/27/1221 +5.48253,45.085,2864,7,3,5,45,58,4.65,15.0,fr,48230,57,2040133,1,1,Active Shallow Crust,0.0,89.98997,0.0,07/03/2864 +5.48253,45.085,6767,9,3,15,11,46,4.85,15.0,fr,48231,135,2040157,1,1,Active Shallow Crust,0.0,89.99043,0.0,09/03/6767 +5.48253,45.085,6397,11,20,2,30,30,5.05,15.0,fr,48232,127,2040181,1,1,Active Shallow Crust,0.0,89.98987,0.0,11/20/6397 +0.20615,47.51686,3850,3,28,16,35,13,3.55,5.0,fr,48233,76,2040960,1,1,Active Shallow Crust,0.0,89.99,0.0,03/28/3850 +0.20615,47.51686,4548,11,18,4,28,10,3.65,15.0,fr,48234,90,2040976,1,1,Active Shallow Crust,240.0012,58.01293,0.0,11/18/4548 +0.20615,47.51686,8120,9,24,21,16,2,3.65,5.0,fr,48235,162,2040978,1,1,Active Shallow Crust,0.0,89.99002,-90.0,09/24/8120 +0.20615,47.51686,6354,1,13,15,50,44,3.75,5.0,fr,48236,127,2040984,1,2,Active Shallow Crust,0.0,89.99003,0.0,01/13/6354 +0.20615,47.51686,7938,5,12,22,48,21,3.75,5.0,fr,48237,158,2040984,1,2,Active Shallow Crust,0.0,89.99003,0.0,05/12/7938 +0.20615,47.51686,3473,2,17,12,16,39,3.75,15.0,fr,48238,69,2040985,1,1,Active Shallow Crust,0.0,89.99003,0.0,02/17/3473 +0.20615,47.51686,1965,1,26,10,7,14,3.75,5.0,fr,48239,39,2040987,1,1,Active Shallow Crust,240.0085,58.01757,0.0,01/26/1965 +0.20615,47.51686,4936,3,17,11,36,33,4.55,5.0,fr,48240,98,2041080,1,2,Active Shallow Crust,0.0,89.98997,0.0,03/17/4936 +0.20615,47.51686,1981,7,11,9,57,0,4.55,5.0,fr,48241,39,2041080,1,2,Active Shallow Crust,0.0,89.98997,0.0,07/11/1981 +5.87383,41.80069,7949,3,17,9,9,35,3.65,5.0,fr,48242,158,2041452,1,1,Active Shallow Crust,0.0,89.9933,0.0,03/17/7949 +5.87383,41.80069,8842,10,20,19,53,47,3.75,5.0,fr,48243,176,2041464,1,1,Active Shallow Crust,0.0,89.98806,0.0,10/20/8842 +5.87383,41.80069,908,10,17,15,46,24,4.65,5.0,fr,48244,18,2041575,1,1,Active Shallow Crust,240.0094,57.99375,0.0,10/17/0908 +5.87383,41.80069,7729,11,19,13,37,59,5.05,5.0,fr,48245,154,2041620,1,1,Active Shallow Crust,0.0,89.99064,0.0,11/19/7729 +5.62543,41.36295,2484,9,7,0,37,35,3.65,5.0,fr,48246,49,2041932,1,1,Active Shallow Crust,0.0,89.99326,0.0,09/07/2484 +5.62543,41.36295,879,3,19,6,13,3,3.75,27.5,fr,48247,17,2041946,1,1,Active Shallow Crust,0.0,89.98798,0.0,03/19/0879 +5.62543,41.36295,7500,11,28,8,34,36,3.75,5.0,fr,48248,149,2041947,1,1,Active Shallow Crust,240.0092,58.01675,0.0,11/28/7500 +5.62543,41.36295,5849,6,2,12,19,17,3.95,5.0,fr,48249,116,2041968,1,1,Active Shallow Crust,0.0,89.99045,0.0,06/02/5849 +5.62543,41.36295,7297,2,10,8,56,1,4.75,5.0,fr,48250,145,2042070,1,1,Active Shallow Crust,0.0,89.99039,-90.0,02/10/7297 +5.68457,43.78939,8195,8,31,21,7,47,3.55,5.0,fr,48251,163,2042400,1,2,Active Shallow Crust,0.0,89.99272,0.0,08/31/8195 +5.68457,43.78939,862,10,29,17,54,17,3.55,5.0,fr,48252,17,2042400,1,2,Active Shallow Crust,0.0,89.99272,0.0,10/29/0862 +5.68457,43.78939,1706,5,6,14,1,38,3.55,15.0,fr,48253,34,2042401,1,1,Active Shallow Crust,0.0,89.99272,0.0,05/06/1706 +5.68457,43.78939,8938,2,16,16,45,11,3.55,15.0,fr,48254,178,2042404,1,1,Active Shallow Crust,240.0115,57.99804,0.0,02/16/8938 +5.68457,43.78939,5771,7,8,1,14,57,3.55,15.0,fr,48255,115,2042410,1,1,Active Shallow Crust,128.8976,89.99272,0.0,07/08/5771 +5.68457,43.78939,8293,3,4,8,5,43,3.65,5.0,fr,48256,165,2042412,1,2,Active Shallow Crust,0.0,89.98702,0.0,03/04/8293 +5.68457,43.78939,4116,5,28,12,15,46,3.65,5.0,fr,48257,82,2042412,1,2,Active Shallow Crust,0.0,89.98702,0.0,05/28/4116 +5.68457,43.78939,8203,11,20,20,14,6,3.65,15.0,fr,48258,164,2042413,1,1,Active Shallow Crust,0.0,89.98702,0.0,11/20/8203 +5.68457,43.78939,1449,9,11,13,52,31,3.65,15.0,fr,48259,28,2042419,1,1,Active Shallow Crust,0.0,89.98688,-90.0,09/11/1449 +5.68457,43.78939,7658,1,18,8,11,15,3.75,5.0,fr,48260,153,2042424,1,3,Active Shallow Crust,0.0,89.98843,0.0,01/18/7658 +5.68457,43.78939,5473,2,21,14,28,40,3.75,5.0,fr,48261,109,2042424,1,3,Active Shallow Crust,0.0,89.98843,0.0,02/21/5473 +5.68457,43.78939,9083,5,15,1,16,25,3.75,5.0,fr,48262,181,2042424,1,3,Active Shallow Crust,0.0,89.98843,0.0,05/15/9083 +5.68457,43.78939,3292,4,26,1,22,24,3.75,15.0,fr,48263,65,2042425,1,1,Active Shallow Crust,0.0,89.98843,0.0,04/26/3292 +5.68457,43.78939,4004,1,16,20,9,17,3.75,5.0,fr,48264,80,2042427,1,1,Active Shallow Crust,240.0078,58.01734,0.0,01/16/4004 +5.68457,43.78939,558,7,29,4,53,19,3.75,15.0,fr,48265,11,2042428,1,2,Active Shallow Crust,240.0078,58.01734,0.0,07/29/0558 +5.68457,43.78939,3154,9,8,15,37,6,3.75,15.0,fr,48266,63,2042428,1,2,Active Shallow Crust,240.0078,58.01734,0.0,09/08/3154 +5.68457,43.78939,1140,1,17,12,43,45,3.75,5.0,fr,48267,22,2042433,1,1,Active Shallow Crust,128.8964,89.96745,0.0,01/17/1140 +5.68457,43.78939,3131,8,2,9,21,47,3.85,5.0,fr,48268,62,2042436,1,2,Active Shallow Crust,0.0,89.98969,0.0,08/02/3131 +5.68457,43.78939,2203,9,17,6,14,29,3.85,5.0,fr,48269,44,2042436,1,2,Active Shallow Crust,0.0,89.98969,0.0,09/17/2203 +5.68457,43.78939,1809,2,15,2,59,35,3.85,15.0,fr,48270,36,2042437,1,2,Active Shallow Crust,0.0,89.98969,0.0,02/15/1809 +5.68457,43.78939,4475,1,20,23,30,49,3.85,15.0,fr,48271,89,2042437,1,2,Active Shallow Crust,0.0,89.98969,0.0,01/20/4475 +5.68457,43.78939,9796,6,7,18,2,50,3.85,5.0,fr,48272,195,2042442,1,1,Active Shallow Crust,0.0,89.98957,-90.0,06/07/9796 +5.68457,43.78939,7068,7,11,22,51,21,3.95,5.0,fr,48273,141,2042448,1,2,Active Shallow Crust,0.0,89.99081,0.0,07/11/7068 +5.68457,43.78939,1607,2,19,14,1,35,3.95,5.0,fr,48274,32,2042448,1,2,Active Shallow Crust,0.0,89.99081,0.0,02/19/1607 +5.68457,43.78939,9700,5,24,0,8,19,3.95,5.0,fr,48275,193,2042451,1,1,Active Shallow Crust,240.0193,58.00523,0.0,05/24/9700 +5.68457,43.78939,9289,5,6,9,44,22,4.05,5.0,fr,48276,185,2042460,1,2,Active Shallow Crust,0.0,89.99181,0.0,05/06/9289 +5.68457,43.78939,4244,7,18,20,24,8,4.05,5.0,fr,48277,84,2042460,1,2,Active Shallow Crust,0.0,89.99181,0.0,07/18/4244 +5.68457,43.78939,4429,12,9,8,31,14,4.05,5.0,fr,48278,88,2042466,1,2,Active Shallow Crust,0.0,89.99171,-90.0,12/09/4429 +5.68457,43.78939,5163,11,25,19,24,43,4.05,5.0,fr,48279,103,2042466,1,2,Active Shallow Crust,0.0,89.99171,-90.0,11/25/5163 +5.68457,43.78939,112,1,16,18,57,22,4.15,5.0,fr,48280,2,2042472,1,1,Active Shallow Crust,0.0,89.98905,0.0,01/16/0112 +5.68457,43.78939,3910,10,13,20,2,59,4.15,15.0,fr,48281,78,2042473,1,1,Active Shallow Crust,0.0,89.98905,0.0,10/13/3910 +5.68457,43.78939,4871,8,23,17,3,56,4.15,15.0,fr,48282,97,2042476,1,1,Active Shallow Crust,240.0075,57.99784,0.0,08/23/4871 +5.68457,43.78939,6196,5,26,6,18,15,4.15,5.0,fr,48283,123,2042478,1,1,Active Shallow Crust,0.0,89.98893,-90.0,05/26/6196 +5.68457,43.78939,3615,12,8,19,10,5,4.25,5.0,fr,48284,72,2042484,1,2,Active Shallow Crust,0.0,89.99024,0.0,12/08/3615 +5.68457,43.78939,2063,3,26,4,2,0,4.25,5.0,fr,48285,41,2042484,1,2,Active Shallow Crust,0.0,89.99024,0.0,03/26/2063 +5.68457,43.78939,2735,9,17,20,24,4,4.35,5.0,fr,48286,54,2042496,1,1,Active Shallow Crust,0.0,89.9913,0.0,09/17/2735 +5.68457,43.78939,1360,11,14,15,47,13,4.45,5.0,fr,48287,27,2042508,1,1,Active Shallow Crust,0.0,89.98967,0.0,11/14/1360 +5.68457,43.78939,3730,3,22,15,56,13,4.45,15.0,fr,48288,74,2042509,1,1,Active Shallow Crust,0.0,89.98967,0.0,03/22/3730 +5.68457,43.78939,7718,7,9,6,34,35,4.45,15.0,fr,48289,154,2042512,1,1,Active Shallow Crust,240.0047,57.99477,0.0,07/09/7718 +5.68457,43.78939,2299,10,6,8,58,1,4.45,5.0,fr,48290,45,2042514,1,1,Active Shallow Crust,0.0,89.98955,-90.0,10/06/2299 +5.68457,43.78939,3332,12,16,7,22,13,4.55,27.5,fr,48291,66,2042522,1,1,Active Shallow Crust,0.0,89.99079,0.0,12/16/3332 +5.68457,43.78939,3089,7,3,10,3,41,4.65,5.0,fr,48292,61,2042532,1,1,Active Shallow Crust,0.0,89.98974,0.0,07/03/3089 +5.68457,43.78939,8523,10,2,6,31,51,4.75,5.0,fr,48293,170,2042544,1,1,Active Shallow Crust,0.0,89.99086,0.0,10/02/8523 +5.68457,43.78939,1048,12,8,7,4,45,4.85,5.0,fr,48294,20,2042556,1,2,Active Shallow Crust,0.0,89.99022,0.0,12/08/1048 +5.68457,43.78939,7907,8,27,11,51,22,4.85,5.0,fr,48295,158,2042556,1,2,Active Shallow Crust,0.0,89.99022,0.0,08/27/7907 +5.68457,43.78939,4060,10,4,19,12,52,5.05,15.0,fr,48296,81,2042581,1,1,Active Shallow Crust,0.0,89.98964,0.0,10/04/4060 +5.68457,43.78939,3536,8,12,20,30,55,5.85,5.0,fr,48297,70,2042676,1,1,Active Shallow Crust,0.0,89.9902,0.0,08/12/3536 +4.68815,42.7225,9287,4,1,1,45,49,3.95,5.0,fr,48298,185,2042931,1,1,Active Shallow Crust,240.0195,58.00541,0.0,04/01/9287 +4.68815,42.7225,9956,1,24,20,2,34,4.15,15.0,fr,48299,199,2042953,1,1,Active Shallow Crust,0.0,89.98886,0.0,01/24/9956 +4.68815,42.7225,941,4,29,17,23,53,4.45,5.0,fr,48300,18,2042988,1,1,Active Shallow Crust,0.0,89.98949,0.0,04/29/0941 +6.41298,44.67623,7153,6,17,12,24,2,3.55,5.0,fr,48301,143,2043840,1,1,Active Shallow Crust,0.0,89.99283,0.0,06/17/7153 +6.41298,44.67623,1178,10,18,0,57,20,3.55,5.0,fr,48302,23,2043849,1,1,Active Shallow Crust,128.8976,89.99283,0.0,10/18/1178 +6.41298,44.67623,8052,11,17,23,8,15,3.65,5.0,fr,48303,161,2043852,1,3,Active Shallow Crust,0.0,89.98722,0.0,11/17/8052 +6.41298,44.67623,9465,6,24,1,15,53,3.65,5.0,fr,48304,189,2043852,1,3,Active Shallow Crust,0.0,89.98722,0.0,06/24/9465 +6.41298,44.67623,6085,6,16,0,38,42,3.65,5.0,fr,48305,121,2043852,1,3,Active Shallow Crust,0.0,89.98722,0.0,06/16/6085 +6.41298,44.67623,3713,12,3,21,10,28,3.75,5.0,fr,48306,74,2043864,1,1,Active Shallow Crust,0.0,89.98861,0.0,12/03/3713 +6.41298,44.67623,8692,7,9,8,56,26,3.75,15.0,fr,48307,173,2043865,1,1,Active Shallow Crust,0.0,89.98861,0.0,07/09/8692 +6.41298,44.67623,9293,12,27,20,12,11,3.75,27.5,fr,48308,185,2043866,1,1,Active Shallow Crust,0.0,89.98861,0.0,12/27/9293 +6.41298,44.67623,9484,11,12,6,28,9,3.75,5.0,fr,48309,189,2043867,1,2,Active Shallow Crust,240.0085,58.01702,0.0,11/12/9484 +6.41298,44.67623,8556,1,7,21,2,19,3.75,5.0,fr,48310,171,2043867,1,2,Active Shallow Crust,240.0085,58.01702,0.0,01/07/8556 +6.41298,44.67623,1640,10,6,18,35,37,3.85,5.0,fr,48311,32,2043876,1,2,Active Shallow Crust,0.0,89.98985,0.0,10/06/1640 +6.41298,44.67623,3967,1,11,0,30,17,3.85,5.0,fr,48312,79,2043876,1,2,Active Shallow Crust,0.0,89.98985,0.0,01/11/3967 +6.41298,44.67623,3944,7,6,17,6,33,3.85,15.0,fr,48313,78,2043877,1,1,Active Shallow Crust,0.0,89.98985,0.0,07/06/3944 +6.41298,44.67623,9048,12,26,21,4,26,3.95,5.0,fr,48314,180,2043888,1,2,Active Shallow Crust,0.0,89.99095,0.0,12/26/9048 +6.41298,44.67623,4362,4,17,20,22,56,3.95,5.0,fr,48315,87,2043888,1,2,Active Shallow Crust,0.0,89.99095,0.0,04/17/4362 +6.41298,44.67623,4604,6,24,22,13,29,3.95,15.0,fr,48316,92,2043889,1,1,Active Shallow Crust,0.0,89.99095,0.0,06/24/4604 +6.41298,44.67623,4944,6,10,5,8,36,4.25,15.0,fr,48317,98,2043925,1,1,Active Shallow Crust,0.0,89.99039,0.0,06/10/4944 +6.41298,44.67623,7553,9,27,2,26,23,4.25,27.5,fr,48318,151,2043932,1,1,Active Shallow Crust,0.0,89.99028,-90.0,09/27/7553 +6.41298,44.67623,2618,2,3,11,5,3,4.45,5.0,fr,48319,52,2043948,1,1,Active Shallow Crust,0.0,89.98982,0.0,02/03/2618 +6.41298,44.67623,8712,4,19,20,37,50,4.55,5.0,fr,48320,174,2043960,1,1,Active Shallow Crust,0.0,89.99093,0.0,04/19/8712 +6.41298,44.67623,4308,4,3,10,0,28,4.65,15.0,fr,48321,86,2043973,1,1,Active Shallow Crust,0.0,89.98989,0.0,04/03/4308 +6.41298,44.67623,786,7,27,6,47,45,4.85,27.5,fr,48322,15,2043998,1,1,Active Shallow Crust,0.0,89.99036,0.0,07/27/0786 +6.41298,44.67623,3179,1,25,13,31,18,4.95,5.0,fr,48323,63,2044008,1,1,Active Shallow Crust,0.0,89.98998,0.0,01/25/3179 +6.41298,44.67623,4346,5,21,20,33,7,4.95,15.0,fr,48324,86,2044009,1,1,Active Shallow Crust,0.0,89.98998,0.0,05/21/4346 +6.41298,44.67623,9584,11,2,2,13,9,5.65,5.0,fr,48325,191,2044092,1,1,Active Shallow Crust,0.0,89.98977,0.0,11/02/9584 +0.58283,41.17589,6650,4,20,20,18,25,3.65,15.0,fr,48326,132,2044333,1,1,Active Shallow Crust,0.0,89.98985,0.0,04/20/6650 +0.58283,41.17589,9687,2,23,22,40,24,3.75,5.0,fr,48327,193,2044344,1,1,Active Shallow Crust,0.0,89.9902,0.0,02/23/9687 +0.58283,41.17589,9600,5,28,7,11,31,3.85,5.0,fr,48328,191,2044356,1,1,Active Shallow Crust,0.0,89.98992,0.0,05/28/9600 +0.58283,41.17589,807,9,26,22,19,35,3.95,15.0,fr,48329,16,2044372,1,1,Active Shallow Crust,240.0189,58.00494,0.0,09/26/0807 +0.58283,41.17589,7199,8,1,4,32,37,4.15,5.0,fr,48330,143,2044392,1,1,Active Shallow Crust,0.0,89.99001,0.0,08/01/7199 +0.58283,41.17589,8351,9,18,2,36,49,4.45,15.0,fr,48331,167,2044429,1,1,Active Shallow Crust,0.0,89.9899,0.0,09/18/8351 +0.58283,41.17589,7290,7,8,21,28,24,4.55,5.0,fr,48332,145,2044443,1,1,Active Shallow Crust,240.0079,57.99709,0.0,07/08/7290 +-0.91127,50.36672,5468,10,24,9,24,38,3.55,5.0,fr,48333,109,2044800,1,1,Active Shallow Crust,0.0,89.99035,0.0,10/24/5468 +-0.91127,50.36672,9842,7,19,21,20,38,3.55,5.0,fr,48334,196,2044803,1,1,Active Shallow Crust,240.0125,57.99826,0.0,07/19/9842 +-0.91127,50.36672,2153,2,5,22,15,30,3.65,15.0,fr,48335,43,2044813,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/05/2153 +-0.92787,47.30087,6905,12,24,6,29,40,3.55,5.0,fr,48336,138,2045280,1,1,Active Shallow Crust,0.0,89.98975,0.0,12/24/6905 +-0.92787,47.30087,6946,3,10,4,28,18,3.55,15.0,fr,48337,138,2045281,1,1,Active Shallow Crust,0.0,89.98975,0.0,03/10/6946 +-0.92787,47.30087,4930,11,30,13,28,7,3.65,5.0,fr,48338,98,2045292,1,1,Active Shallow Crust,0.0,89.9901,0.0,11/30/4930 +-0.92787,47.30087,3759,10,31,10,58,6,3.65,15.0,fr,48339,75,2045293,1,1,Active Shallow Crust,0.0,89.9901,0.0,10/31/3759 +-0.92787,47.30087,2005,8,31,7,20,23,3.65,27.5,fr,48340,40,2045297,1,1,Active Shallow Crust,240.0011,58.01288,0.0,08/31/2005 +-0.92787,47.30087,1406,11,9,2,53,36,3.85,5.0,fr,48341,28,2045316,1,2,Active Shallow Crust,0.0,89.98972,0.0,11/09/1406 +-0.92787,47.30087,2750,2,27,5,44,10,3.85,5.0,fr,48342,54,2045316,1,2,Active Shallow Crust,0.0,89.98972,0.0,02/27/2750 +-0.92787,47.30087,9553,7,18,16,6,59,3.95,15.0,fr,48343,191,2045329,1,1,Active Shallow Crust,0.0,89.98975,0.0,07/18/9553 +-0.92787,47.30087,4918,12,31,11,8,4,4.05,15.0,fr,48344,98,2045341,1,1,Active Shallow Crust,0.0,89.98991,0.0,12/31/4918 +-0.92787,47.30087,7284,6,26,3,53,2,4.05,15.0,fr,48345,145,2045350,1,1,Active Shallow Crust,128.8904,89.99375,0.0,06/26/7284 +-0.92787,47.30087,3579,12,24,23,34,43,4.15,5.0,fr,48346,71,2045352,1,1,Active Shallow Crust,0.0,89.99014,0.0,12/24/3579 +-0.92787,47.30087,8663,10,19,10,1,42,4.15,5.0,fr,48347,173,2045355,1,1,Active Shallow Crust,240.0086,57.99736,0.0,10/19/8663 +-0.92787,47.30087,1207,4,25,10,50,7,4.25,5.0,fr,48348,24,2045370,1,1,Active Shallow Crust,0.0,89.98996,-90.0,04/25/1207 +-0.92787,47.30087,8433,11,5,15,52,1,4.35,5.0,fr,48349,168,2045376,1,2,Active Shallow Crust,0.0,89.99013,0.0,11/05/8433 +-0.92787,47.30087,744,4,21,18,57,23,4.35,5.0,fr,48350,14,2045376,1,2,Active Shallow Crust,0.0,89.99013,0.0,04/21/0744 +-0.92787,47.30087,8852,3,11,3,32,53,4.95,27.5,fr,48351,177,2045450,1,1,Active Shallow Crust,0.0,89.98994,0.0,03/11/8852 +-0.92787,47.30087,939,6,20,12,20,56,5.25,5.0,fr,48352,18,2045484,1,1,Active Shallow Crust,0.0,89.98997,0.0,06/20/0939 +7.96078,49.49523,2244,3,24,3,20,51,3.55,27.5,fr,48353,44,2045768,1,1,Active Shallow Crust,0.0,89.98675,-90.0,03/24/2244 +7.96078,49.49523,5763,9,1,18,40,46,3.75,15.0,fr,48354,115,2045785,1,1,Active Shallow Crust,0.0,89.98959,0.0,09/01/5763 +7.96078,49.49523,7456,4,12,17,50,38,3.75,5.0,fr,48355,149,2045787,1,1,Active Shallow Crust,240.0079,58.01752,0.0,04/12/7456 +7.96078,49.49523,5130,4,6,17,58,57,3.85,5.0,fr,48356,102,2045796,1,1,Active Shallow Crust,0.0,89.99072,0.0,04/06/5130 +7.96078,49.49523,5860,2,23,22,43,17,3.85,5.0,fr,48357,117,2045802,1,1,Active Shallow Crust,0.0,89.99062,-90.0,02/23/5860 +7.96078,49.49523,3668,2,24,0,51,17,3.95,27.5,fr,48358,73,2045810,1,1,Active Shallow Crust,0.0,89.99174,0.0,02/24/3668 +7.96078,49.49523,7897,7,20,2,28,50,3.95,27.5,fr,48359,157,2045813,1,1,Active Shallow Crust,240.0195,58.00578,0.0,07/20/7897 +7.96078,49.49523,3516,5,12,5,5,6,3.95,5.0,fr,48360,70,2045817,1,1,Active Shallow Crust,128.9001,89.9938,0.0,05/12/3516 +7.96078,49.49523,7897,3,25,9,49,56,4.45,5.0,fr,48361,157,2045868,1,2,Active Shallow Crust,0.0,89.9907,0.0,03/25/7897 +7.96078,49.49523,6117,6,12,10,1,29,4.45,5.0,fr,48362,122,2045868,1,2,Active Shallow Crust,0.0,89.9907,0.0,06/12/6117 +7.96078,49.49523,550,6,3,18,18,21,4.75,5.0,fr,48363,10,2045913,1,1,Active Shallow Crust,128.8873,89.98835,0.0,06/03/0550 +4.2394,50.76096,1055,1,24,0,30,53,3.55,5.0,fr,48364,21,2046243,1,1,Active Shallow Crust,240.0134,57.99813,0.0,01/24/1055 +4.2394,50.76096,9223,3,26,12,24,47,3.55,5.0,fr,48365,184,2046249,1,2,Active Shallow Crust,128.8953,89.99362,0.0,03/26/9223 +4.2394,50.76096,6741,12,15,2,1,25,3.55,5.0,fr,48366,134,2046249,1,2,Active Shallow Crust,128.8953,89.99362,0.0,12/15/6741 +4.2394,50.76096,2549,5,31,12,35,38,3.65,15.0,fr,48367,50,2046253,1,1,Active Shallow Crust,0.0,89.98863,0.0,05/31/2549 +4.2394,50.76096,3822,11,11,19,3,1,3.65,5.0,fr,48368,76,2046255,1,1,Active Shallow Crust,240.0017,58.0126,0.0,11/11/3822 +4.2394,50.76096,5862,11,10,0,52,13,3.75,15.0,fr,48369,117,2046265,1,1,Active Shallow Crust,0.0,89.98987,0.0,11/10/5862 +4.2394,50.76096,1980,7,21,19,14,31,3.75,5.0,fr,48370,39,2046267,1,1,Active Shallow Crust,240.009,58.01799,0.0,07/21/1980 +4.2394,50.76096,5645,4,28,8,13,8,3.75,5.0,fr,48371,112,2046270,1,1,Active Shallow Crust,0.0,89.98975,-90.0,04/28/5645 +4.2394,50.76096,754,12,21,9,57,34,3.85,15.0,fr,48372,15,2046277,1,1,Active Shallow Crust,0.0,89.99097,0.0,12/21/0754 +4.2394,50.76096,1431,8,23,1,49,21,3.95,5.0,fr,48373,28,2046288,1,1,Active Shallow Crust,0.0,89.99195,0.0,08/23/1431 +4.2394,50.76096,5017,3,21,18,18,45,3.95,15.0,fr,48374,100,2046289,1,1,Active Shallow Crust,0.0,89.99195,0.0,03/21/5017 +4.2394,50.76096,6517,6,23,20,3,10,4.05,15.0,fr,48375,130,2046307,1,1,Active Shallow Crust,0.0,89.98911,-90.0,06/23/6517 +4.2394,50.76096,1309,6,16,14,16,20,4.25,15.0,fr,48376,26,2046325,1,1,Active Shallow Crust,0.0,89.9886,0.0,06/16/1309 +4.2394,50.76096,3369,9,25,5,42,28,4.25,5.0,fr,48377,67,2046327,1,1,Active Shallow Crust,240.0082,57.99448,0.0,09/25/3369 +4.2394,50.76096,9549,4,12,4,43,11,4.45,5.0,fr,48378,190,2046348,1,1,Active Shallow Crust,0.0,89.99094,0.0,04/12/9549 +4.2394,50.76096,5495,7,16,23,29,30,4.55,5.0,fr,48379,109,2046366,1,1,Active Shallow Crust,0.0,89.9898,-90.0,07/16/5495 +4.2394,50.76096,4359,10,5,4,43,14,4.55,5.0,fr,48380,87,2046369,1,1,Active Shallow Crust,128.8928,89.98542,0.0,10/05/4359 +4.2394,50.76096,612,1,18,20,16,6,4.95,15.0,fr,48381,12,2046409,1,1,Active Shallow Crust,0.0,89.98981,0.0,01/18/0612 +4.2394,50.76096,3254,11,10,0,56,31,5.85,15.0,fr,48382,65,2046517,1,1,Active Shallow Crust,0.0,89.99006,0.0,11/10/3254 +5.88055,42.47625,1372,1,6,21,31,57,3.85,5.0,fr,48383,27,2046765,1,1,Active Shallow Crust,128.8962,89.9921,0.0,01/06/1372 +5.88055,42.47625,5812,2,25,22,33,25,3.95,15.0,fr,48384,116,2046769,1,1,Active Shallow Crust,0.0,89.99062,0.0,02/25/5812 +3.96366,50.96601,2627,4,29,20,14,43,3.55,27.5,fr,48385,52,2047202,1,1,Active Shallow Crust,0.0,89.99047,0.0,04/29/2627 +3.96366,50.96601,7736,12,29,18,16,45,3.65,5.0,fr,48386,154,2047212,1,1,Active Shallow Crust,0.0,89.98868,0.0,12/29/7736 +3.96366,50.96601,7397,6,29,10,30,31,3.95,5.0,fr,48387,147,2047248,1,1,Active Shallow Crust,0.0,89.98998,0.0,06/29/7397 +3.96366,50.96601,8997,4,14,12,41,9,3.95,15.0,fr,48388,179,2047249,1,1,Active Shallow Crust,0.0,89.98998,0.0,04/14/8997 +3.96366,50.96601,8212,6,14,6,52,51,4.15,15.0,fr,48389,164,2047273,1,1,Active Shallow Crust,0.0,89.99045,0.0,06/14/8212 +3.96366,50.96601,9571,2,9,23,48,44,4.25,15.0,fr,48390,191,2047285,1,1,Active Shallow Crust,0.0,89.99007,0.0,02/09/9571 +3.96366,50.96601,2193,9,28,13,11,50,4.25,27.5,fr,48391,43,2047286,1,1,Active Shallow Crust,0.0,89.99007,0.0,09/28/2193 +3.96366,50.96601,6415,11,16,14,47,56,4.55,5.0,fr,48392,128,2047323,1,1,Active Shallow Crust,240.0108,57.99767,0.0,11/16/6415 +3.96366,50.96601,1072,3,13,22,32,21,4.85,5.0,fr,48393,21,2047362,1,1,Active Shallow Crust,0.0,89.98993,-90.0,03/13/1072 +3.91556,45.39107,2648,7,14,18,13,55,3.55,15.0,fr,48394,52,2047681,1,1,Active Shallow Crust,0.0,89.98938,0.0,07/14/2648 +3.91556,45.39107,1798,1,21,4,17,45,3.65,5.0,fr,48395,35,2047692,1,1,Active Shallow Crust,0.0,89.99053,0.0,01/21/1798 +3.91556,45.39107,1162,8,11,22,53,55,3.75,5.0,fr,48396,23,2047713,1,1,Active Shallow Crust,128.8972,89.9672,0.0,08/11/1162 +3.91556,45.39107,7722,4,2,21,14,17,3.85,5.0,fr,48397,154,2047719,1,1,Active Shallow Crust,240.0107,57.99738,0.0,04/02/7722 +3.91556,45.39107,4488,11,22,21,52,36,4.05,5.0,fr,48398,89,2047740,1,1,Active Shallow Crust,0.0,89.99004,0.0,11/22/4488 +3.91556,45.39107,6621,12,28,2,7,16,4.25,5.0,fr,48399,132,2047770,1,1,Active Shallow Crust,0.0,89.9904,-90.0,12/28/6621 +3.91556,45.39107,9450,5,20,10,22,50,4.65,5.0,fr,48400,188,2047821,1,1,Active Shallow Crust,128.8916,89.98692,0.0,05/20/9450 +3.91556,45.39107,9691,7,20,20,51,42,4.75,5.0,fr,48401,193,2047824,1,2,Active Shallow Crust,0.0,89.99021,0.0,07/20/9691 +3.91556,45.39107,688,3,29,23,3,11,4.75,5.0,fr,48402,13,2047824,1,2,Active Shallow Crust,0.0,89.99021,0.0,03/29/0688 +8.49556,47.26299,525,9,19,12,36,21,3.55,5.0,fr,48403,10,2048640,1,10,Active Shallow Crust,0.0,89.98631,0.0,09/19/0525 +8.49556,47.26299,3978,9,12,17,31,3,3.55,5.0,fr,48404,79,2048640,1,10,Active Shallow Crust,0.0,89.98631,0.0,09/12/3978 +8.49556,47.26299,7870,8,17,17,27,57,3.55,5.0,fr,48405,157,2048640,1,10,Active Shallow Crust,0.0,89.98631,0.0,08/17/7870 +8.49556,47.26299,7711,1,31,15,37,2,3.55,5.0,fr,48406,154,2048640,1,10,Active Shallow Crust,0.0,89.98631,0.0,01/31/7711 +8.49556,47.26299,4725,12,9,18,59,55,3.55,5.0,fr,48407,94,2048640,1,10,Active Shallow Crust,0.0,89.98631,0.0,12/09/4725 +8.49556,47.26299,4060,12,22,6,17,42,3.55,5.0,fr,48408,81,2048640,1,10,Active Shallow Crust,0.0,89.98631,0.0,12/22/4060 +8.49556,47.26299,6711,2,26,9,1,33,3.55,5.0,fr,48409,134,2048640,1,10,Active Shallow Crust,0.0,89.98631,0.0,02/26/6711 +8.49556,47.26299,9556,2,11,1,23,16,3.55,5.0,fr,48410,191,2048640,1,10,Active Shallow Crust,0.0,89.98631,0.0,02/11/9556 +8.49556,47.26299,1694,3,12,3,13,5,3.55,5.0,fr,48411,33,2048640,1,10,Active Shallow Crust,0.0,89.98631,0.0,03/12/1694 +8.49556,47.26299,2851,2,3,23,34,29,3.55,5.0,fr,48412,57,2048640,1,10,Active Shallow Crust,0.0,89.98631,0.0,02/03/2851 +8.49556,47.26299,7244,1,17,19,47,36,3.55,15.0,fr,48413,144,2048641,1,2,Active Shallow Crust,0.0,89.98631,0.0,01/17/7244 +8.49556,47.26299,7937,11,6,14,46,41,3.55,15.0,fr,48414,158,2048641,1,2,Active Shallow Crust,0.0,89.98631,0.0,11/06/7937 +8.49556,47.26299,5991,5,4,0,30,0,3.55,27.5,fr,48415,119,2048642,1,3,Active Shallow Crust,0.0,89.98631,0.0,05/04/5991 +8.49556,47.26299,919,6,13,3,59,57,3.55,27.5,fr,48416,18,2048642,1,3,Active Shallow Crust,0.0,89.98631,0.0,06/13/0919 +8.49556,47.26299,8394,7,17,22,0,8,3.55,27.5,fr,48417,167,2048642,1,3,Active Shallow Crust,0.0,89.98631,0.0,07/17/8394 +8.49556,47.26299,4944,10,10,12,26,37,3.55,5.0,fr,48418,98,2048643,1,1,Active Shallow Crust,240.012,57.99639,0.0,10/10/4944 +8.49556,47.26299,7328,7,20,7,20,43,3.55,27.5,fr,48419,146,2048651,1,1,Active Shallow Crust,128.897,89.99316,0.0,07/20/7328 +8.49556,47.26299,990,2,18,21,58,27,3.65,5.0,fr,48420,19,2048652,1,2,Active Shallow Crust,0.0,89.9878,0.0,02/18/0990 +8.49556,47.26299,2067,7,14,5,52,3,3.65,5.0,fr,48421,41,2048652,1,2,Active Shallow Crust,0.0,89.9878,0.0,07/14/2067 +8.49556,47.26299,8456,2,16,7,38,30,3.65,15.0,fr,48422,169,2048653,1,2,Active Shallow Crust,0.0,89.9878,0.0,02/16/8456 +8.49556,47.26299,6830,2,19,0,4,46,3.65,15.0,fr,48423,136,2048653,1,2,Active Shallow Crust,0.0,89.9878,0.0,02/19/6830 +8.49556,47.26299,356,12,26,1,49,44,3.65,27.5,fr,48424,7,2048654,1,1,Active Shallow Crust,0.0,89.9878,0.0,12/26/0356 +8.49556,47.26299,6871,6,15,23,49,30,3.65,5.0,fr,48425,137,2048655,1,1,Active Shallow Crust,240.0017,58.01305,0.0,06/15/6871 +8.49556,47.26299,6258,6,26,2,17,28,3.65,5.0,fr,48426,125,2048658,1,1,Active Shallow Crust,0.0,89.98766,-90.0,06/26/6258 +8.49556,47.26299,3420,8,23,1,17,40,3.75,5.0,fr,48427,68,2048664,1,4,Active Shallow Crust,0.0,89.98913,0.0,08/23/3420 +8.49556,47.26299,2660,5,23,9,6,46,3.75,5.0,fr,48428,53,2048664,1,4,Active Shallow Crust,0.0,89.98913,0.0,05/23/2660 +8.49556,47.26299,8864,5,21,4,34,23,3.75,5.0,fr,48429,177,2048664,1,4,Active Shallow Crust,0.0,89.98913,0.0,05/21/8864 +8.49556,47.26299,3908,10,26,13,59,44,3.75,5.0,fr,48430,78,2048664,1,4,Active Shallow Crust,0.0,89.98913,0.0,10/26/3908 +8.49556,47.26299,9957,1,13,16,57,15,3.75,15.0,fr,48431,199,2048665,1,2,Active Shallow Crust,0.0,89.98913,0.0,01/13/9957 +8.49556,47.26299,4115,4,2,0,59,24,3.75,15.0,fr,48432,82,2048665,1,2,Active Shallow Crust,0.0,89.98913,0.0,04/02/4115 +8.49556,47.26299,5966,1,29,14,34,36,3.75,27.5,fr,48433,119,2048666,1,1,Active Shallow Crust,0.0,89.98913,0.0,01/29/5966 +8.49556,47.26299,4795,10,9,21,18,42,3.75,5.0,fr,48434,95,2048667,1,1,Active Shallow Crust,240.0097,58.01699,0.0,10/09/4795 +8.49556,47.26299,6289,5,13,3,26,7,3.75,5.0,fr,48435,125,2048670,1,1,Active Shallow Crust,0.0,89.98901,-90.0,05/13/6289 +8.49556,47.26299,6029,8,25,23,2,42,3.85,5.0,fr,48436,120,2048679,1,1,Active Shallow Crust,240.0101,57.99881,0.0,08/25/6029 +8.49556,47.26299,5222,1,25,18,53,12,3.85,27.5,fr,48437,104,2048681,1,1,Active Shallow Crust,240.0101,57.99881,0.0,01/25/5222 +8.49556,47.26299,8689,3,22,9,15,26,3.85,5.0,fr,48438,173,2048685,1,2,Active Shallow Crust,128.8937,89.99516,0.0,03/22/8689 +8.49556,47.26299,7574,1,12,2,8,10,3.85,5.0,fr,48439,151,2048685,1,2,Active Shallow Crust,128.8937,89.99516,0.0,01/12/7574 +8.49556,47.26299,2604,6,1,7,39,31,3.85,15.0,fr,48440,52,2048686,1,1,Active Shallow Crust,128.8937,89.99516,0.0,06/01/2604 +8.49556,47.26299,4187,10,28,17,23,29,3.95,5.0,fr,48441,83,2048688,1,2,Active Shallow Crust,0.0,89.99136,0.0,10/28/4187 +8.49556,47.26299,2669,1,13,1,46,1,3.95,5.0,fr,48442,53,2048688,1,2,Active Shallow Crust,0.0,89.99136,0.0,01/13/2669 +8.49556,47.26299,4529,10,22,6,28,9,4.05,5.0,fr,48443,90,2048700,1,1,Active Shallow Crust,0.0,89.9923,0.0,10/22/4529 +8.49556,47.26299,1691,12,27,9,14,48,4.05,15.0,fr,48444,33,2048701,1,1,Active Shallow Crust,0.0,89.9923,0.0,12/27/1691 +8.49556,47.26299,6078,3,8,19,8,55,4.15,15.0,fr,48445,121,2048716,1,1,Active Shallow Crust,240.0076,57.99741,0.0,03/08/6078 +8.49556,47.26299,685,5,4,19,16,31,4.25,5.0,fr,48446,13,2048724,1,2,Active Shallow Crust,0.0,89.98777,0.0,05/04/0685 +8.49556,47.26299,8815,5,22,6,28,47,4.25,5.0,fr,48447,176,2048724,1,2,Active Shallow Crust,0.0,89.98777,0.0,05/22/8815 +8.49556,47.26299,8144,2,11,13,50,53,4.25,15.0,fr,48448,162,2048734,1,1,Active Shallow Crust,128.896,89.97978,0.0,02/11/8144 +8.49556,47.26299,9038,3,24,9,25,50,4.35,15.0,fr,48449,180,2048737,1,1,Active Shallow Crust,0.0,89.98911,0.0,03/24/9038 +8.49556,47.26299,2608,9,6,13,37,12,4.45,15.0,fr,48450,52,2048749,1,1,Active Shallow Crust,0.0,89.99029,0.0,09/06/2608 +8.49556,47.26299,8675,1,13,0,52,56,4.65,5.0,fr,48451,173,2048772,1,2,Active Shallow Crust,0.0,89.98843,0.0,01/13/8675 +8.49556,47.26299,7437,1,20,8,29,34,4.65,5.0,fr,48452,148,2048772,1,2,Active Shallow Crust,0.0,89.98843,0.0,01/20/7437 +8.49556,47.26299,6354,12,23,23,26,58,4.65,15.0,fr,48453,127,2048773,1,1,Active Shallow Crust,0.0,89.98843,0.0,12/23/6354 +8.49556,47.26299,1056,2,5,18,33,9,4.65,5.0,fr,48454,21,2048778,1,1,Active Shallow Crust,0.0,89.98829,-90.0,02/05/1056 +8.49556,47.26299,9361,8,27,5,39,51,4.75,27.5,fr,48455,187,2048795,1,1,Active Shallow Crust,128.8879,89.98863,0.0,08/27/9361 +8.49556,47.26299,6798,6,13,20,13,56,5.05,15.0,fr,48456,135,2048827,1,1,Active Shallow Crust,0.0,89.99015,-90.0,06/13/6798 +8.81706,49.20857,2371,4,27,21,4,52,3.65,5.0,fr,48457,47,2049132,1,2,Active Shallow Crust,0.0,89.98826,0.0,04/27/2371 +8.81706,49.20857,8629,7,17,18,3,37,3.65,5.0,fr,48458,172,2049132,1,2,Active Shallow Crust,0.0,89.98826,0.0,07/17/8629 +8.81706,49.20857,5722,6,19,14,45,19,3.65,15.0,fr,48459,114,2049133,1,1,Active Shallow Crust,0.0,89.98826,0.0,06/19/5722 +8.81706,49.20857,8175,9,19,2,32,2,3.75,15.0,fr,48460,163,2049151,1,1,Active Shallow Crust,0.0,89.98941,-90.0,09/19/8175 +8.81706,49.20857,5272,6,1,20,33,53,3.85,15.0,fr,48461,105,2049157,1,1,Active Shallow Crust,0.0,89.99067,0.0,06/01/5272 +8.81706,49.20857,1154,2,4,3,29,4,3.95,27.5,fr,48462,23,2049170,1,1,Active Shallow Crust,0.0,89.99168,0.0,02/04/1154 +8.81706,49.20857,4793,3,2,14,49,49,3.95,5.0,fr,48463,95,2049174,1,1,Active Shallow Crust,0.0,89.99159,-90.0,03/02/4793 +8.81706,49.20857,3023,9,12,18,22,54,4.05,5.0,fr,48464,60,2049180,1,2,Active Shallow Crust,0.0,89.99259,0.0,09/12/3023 +8.81706,49.20857,4499,7,26,12,14,27,4.05,5.0,fr,48465,89,2049180,1,2,Active Shallow Crust,0.0,89.99259,0.0,07/26/4499 +8.81706,49.20857,3645,6,1,17,47,36,4.15,5.0,fr,48466,72,2049198,1,1,Active Shallow Crust,0.0,89.99332,-90.0,06/01/3645 +8.81706,49.20857,9567,5,12,9,5,42,4.15,5.0,fr,48467,191,2049201,1,1,Active Shallow Crust,128.8983,89.9934,0.0,05/12/9567 +8.81706,49.20857,2534,3,13,16,29,29,4.25,27.5,fr,48468,50,2049206,1,1,Active Shallow Crust,0.0,89.98823,0.0,03/13/2534 +8.81706,49.20857,6724,4,6,23,37,47,4.55,15.0,fr,48469,134,2049241,1,1,Active Shallow Crust,0.0,89.99167,0.0,04/06/6724 +8.81706,49.20857,4902,1,7,18,12,23,5.15,5.0,fr,48470,98,2049315,1,1,Active Shallow Crust,240.021,58.00044,0.0,01/07/4902 +8.38697,49.79139,2604,5,29,19,57,16,3.55,5.0,fr,48471,52,2049600,1,2,Active Shallow Crust,0.0,89.98698,0.0,05/29/2604 +8.38697,49.79139,3950,7,20,0,35,24,3.55,5.0,fr,48472,78,2049600,1,2,Active Shallow Crust,0.0,89.98698,0.0,07/20/3950 +8.38697,49.79139,3904,2,5,5,47,31,3.55,15.0,fr,48473,78,2049601,1,2,Active Shallow Crust,0.0,89.98698,0.0,02/05/3904 +8.38697,49.79139,8093,11,9,10,39,11,3.55,15.0,fr,48474,161,2049601,1,2,Active Shallow Crust,0.0,89.98698,0.0,11/09/8093 +8.38697,49.79139,6485,12,13,21,41,24,3.55,15.0,fr,48475,129,2049607,1,1,Active Shallow Crust,0.0,89.98683,-90.0,12/13/6485 +8.38697,49.79139,365,8,14,19,44,23,3.65,5.0,fr,48476,7,2049612,1,3,Active Shallow Crust,0.0,89.9884,0.0,08/14/0365 +8.38697,49.79139,2475,12,8,1,5,12,3.65,5.0,fr,48477,49,2049612,1,3,Active Shallow Crust,0.0,89.9884,0.0,12/08/2475 +8.38697,49.79139,6620,10,16,7,17,46,3.65,5.0,fr,48478,132,2049612,1,3,Active Shallow Crust,0.0,89.9884,0.0,10/16/6620 +8.38697,49.79139,2098,6,14,16,35,23,3.65,15.0,fr,48479,41,2049613,1,1,Active Shallow Crust,0.0,89.9884,0.0,06/14/2098 +8.38697,49.79139,7209,10,29,19,24,42,3.65,5.0,fr,48480,144,2049615,1,1,Active Shallow Crust,240.0029,58.01176,0.0,10/29/7209 +8.38697,49.79139,4435,3,18,3,49,59,3.65,5.0,fr,48481,88,2049618,1,1,Active Shallow Crust,0.0,89.98826,-90.0,03/18/4435 +8.38697,49.79139,8066,2,10,15,47,53,3.75,5.0,fr,48482,161,2049624,1,4,Active Shallow Crust,0.0,89.98965,0.0,02/10/8066 +8.38697,49.79139,3861,8,19,18,3,39,3.75,5.0,fr,48483,77,2049624,1,4,Active Shallow Crust,0.0,89.98965,0.0,08/19/3861 +8.38697,49.79139,9425,4,16,3,52,20,3.75,5.0,fr,48484,188,2049624,1,4,Active Shallow Crust,0.0,89.98965,0.0,04/16/9425 +8.38697,49.79139,489,7,9,0,23,29,3.75,5.0,fr,48485,9,2049624,1,4,Active Shallow Crust,0.0,89.98965,0.0,07/09/0489 +8.38697,49.79139,8738,7,21,10,24,24,3.75,15.0,fr,48486,174,2049625,1,1,Active Shallow Crust,0.0,89.98965,0.0,07/21/8738 +8.38697,49.79139,4047,10,1,12,21,24,3.75,5.0,fr,48487,80,2049630,1,1,Active Shallow Crust,0.0,89.98954,-90.0,10/01/4047 +8.38697,49.79139,1875,9,9,11,0,48,3.75,27.5,fr,48488,37,2049635,1,1,Active Shallow Crust,128.898,89.96633,0.0,09/09/1875 +8.38697,49.79139,8879,10,24,7,3,13,3.85,5.0,fr,48489,177,2049636,1,4,Active Shallow Crust,0.0,89.99078,0.0,10/24/8879 +8.38697,49.79139,7384,8,26,23,36,40,3.85,5.0,fr,48490,147,2049636,1,4,Active Shallow Crust,0.0,89.99078,0.0,08/26/7384 +8.38697,49.79139,1313,12,14,19,26,0,3.85,5.0,fr,48491,26,2049636,1,4,Active Shallow Crust,0.0,89.99078,0.0,12/14/1313 +8.38697,49.79139,7009,8,7,14,37,59,3.85,5.0,fr,48492,140,2049636,1,4,Active Shallow Crust,0.0,89.99078,0.0,08/07/7009 +8.38697,49.79139,373,7,29,19,32,11,3.85,15.0,fr,48493,7,2049637,1,1,Active Shallow Crust,0.0,89.99078,0.0,07/29/0373 +8.38697,49.79139,5415,10,23,0,6,21,3.85,5.0,fr,48494,108,2049639,1,1,Active Shallow Crust,240.0116,57.99776,0.0,10/23/5415 +8.38697,49.79139,123,5,24,23,5,32,3.95,5.0,fr,48495,2,2049648,1,4,Active Shallow Crust,0.0,89.99178,0.0,05/24/0123 +8.38697,49.79139,2832,9,11,9,12,10,3.95,5.0,fr,48496,56,2049648,1,4,Active Shallow Crust,0.0,89.99178,0.0,09/11/2832 +8.38697,49.79139,9262,12,20,23,29,21,3.95,5.0,fr,48497,185,2049648,1,4,Active Shallow Crust,0.0,89.99178,0.0,12/20/9262 +8.38697,49.79139,9890,11,7,22,13,55,3.95,5.0,fr,48498,197,2049648,1,4,Active Shallow Crust,0.0,89.99178,0.0,11/07/9890 +8.38697,49.79139,4990,7,24,1,58,4,3.95,15.0,fr,48499,99,2049649,1,1,Active Shallow Crust,0.0,89.99178,0.0,07/24/4990 +8.38697,49.79139,2123,12,27,8,52,3,3.95,5.0,fr,48500,42,2049651,1,1,Active Shallow Crust,240.0211,58.00476,0.0,12/27/2123 +8.38697,49.79139,8479,11,10,9,19,11,3.95,15.0,fr,48501,169,2049652,1,1,Active Shallow Crust,240.0211,58.00476,0.0,11/10/8479 +8.38697,49.79139,3857,3,19,2,54,58,3.95,15.0,fr,48502,77,2049655,1,1,Active Shallow Crust,0.0,89.99169,-90.0,03/19/3857 +8.38697,49.79139,4027,12,2,5,39,35,4.05,15.0,fr,48503,80,2049661,1,2,Active Shallow Crust,0.0,89.99268,0.0,12/02/4027 +8.38697,49.79139,4084,6,2,0,12,43,4.05,15.0,fr,48504,81,2049661,1,2,Active Shallow Crust,0.0,89.99268,0.0,06/02/4084 +8.38697,49.79139,1850,3,23,12,1,21,4.05,27.5,fr,48505,36,2049662,1,1,Active Shallow Crust,0.0,89.99268,0.0,03/23/1850 +8.38697,49.79139,2244,6,25,5,42,9,4.05,27.5,fr,48506,44,2049671,1,1,Active Shallow Crust,128.8902,89.99268,0.0,06/25/2244 +8.38697,49.79139,3498,8,30,8,29,16,4.15,27.5,fr,48507,69,2049674,1,1,Active Shallow Crust,0.0,89.98695,0.0,08/30/3498 +8.38697,49.79139,609,9,29,0,26,55,4.15,5.0,fr,48508,12,2049678,1,1,Active Shallow Crust,0.0,89.9868,-90.0,09/29/0609 +8.38697,49.79139,1728,2,16,12,36,6,4.25,5.0,fr,48509,34,2049684,1,3,Active Shallow Crust,0.0,89.98837,0.0,02/16/1728 +8.38697,49.79139,3628,6,12,4,52,16,4.25,5.0,fr,48510,72,2049684,1,3,Active Shallow Crust,0.0,89.98837,0.0,06/12/3628 +8.38697,49.79139,6686,3,8,20,6,26,4.25,5.0,fr,48511,133,2049684,1,3,Active Shallow Crust,0.0,89.98837,0.0,03/08/6686 +8.38697,49.79139,5488,7,26,10,54,58,4.25,27.5,fr,48512,109,2049686,1,1,Active Shallow Crust,0.0,89.98837,0.0,07/26/5488 +8.38697,49.79139,2807,11,10,4,21,20,4.25,5.0,fr,48513,56,2049690,1,1,Active Shallow Crust,0.0,89.98824,-90.0,11/10/2807 +8.38697,49.79139,4929,4,23,12,55,18,4.25,15.0,fr,48514,98,2049691,1,1,Active Shallow Crust,0.0,89.98824,-90.0,04/23/4929 +8.38697,49.79139,6655,5,15,22,39,57,4.35,5.0,fr,48515,133,2049696,1,3,Active Shallow Crust,0.0,89.98963,0.0,05/15/6655 +8.38697,49.79139,5048,10,16,1,39,0,4.35,5.0,fr,48516,100,2049696,1,3,Active Shallow Crust,0.0,89.98963,0.0,10/16/5048 +8.38697,49.79139,6799,6,25,0,42,18,4.35,5.0,fr,48517,135,2049696,1,3,Active Shallow Crust,0.0,89.98963,0.0,06/25/6799 +8.38697,49.79139,6769,11,4,20,15,59,4.45,5.0,fr,48518,135,2049708,1,1,Active Shallow Crust,0.0,89.99076,0.0,11/04/6769 +8.38697,49.79139,4429,8,26,4,36,56,4.45,5.0,fr,48519,88,2049714,1,1,Active Shallow Crust,0.0,89.99065,-90.0,08/26/4429 +8.38697,49.79139,3201,2,23,7,42,30,4.55,5.0,fr,48520,64,2049720,1,1,Active Shallow Crust,0.0,89.99177,0.0,02/23/3201 +8.38697,49.79139,8095,4,5,18,53,54,4.65,27.5,fr,48521,161,2049740,1,1,Active Shallow Crust,0.0,89.98886,-90.0,04/05/8095 +8.38697,49.79139,8973,11,17,20,54,42,5.75,5.0,fr,48522,179,2049867,1,1,Active Shallow Crust,240.0455,58.00019,0.0,11/17/8973 +8.38697,49.79139,2128,4,10,4,50,26,6.55,15.0,fr,48523,42,2049961,1,1,Active Shallow Crust,0.0,89.9901,0.0,04/10/2128 +-2.16863,43.21767,6487,6,4,3,19,20,3.55,5.0,fr,48524,129,2050080,1,1,Active Shallow Crust,0.0,89.98898,0.0,06/04/6487 +-2.16863,43.21767,3595,4,1,19,58,15,3.55,27.5,fr,48525,71,2050082,1,1,Active Shallow Crust,0.0,89.98898,0.0,04/01/3595 +-2.16863,43.21767,4825,11,1,1,20,18,3.55,5.0,fr,48526,96,2050083,1,1,Active Shallow Crust,240.0123,57.99833,0.0,11/01/4825 +-2.16863,43.21767,4156,5,7,1,12,57,3.65,5.0,fr,48527,83,2050092,1,1,Active Shallow Crust,0.0,89.99017,0.0,05/07/4156 +-2.16863,43.21767,8040,5,3,3,52,46,3.65,27.5,fr,48528,160,2050094,1,1,Active Shallow Crust,0.0,89.99017,0.0,05/03/8040 +-2.16863,43.21767,5687,8,16,22,50,32,3.85,5.0,fr,48529,113,2050119,1,1,Active Shallow Crust,240.0106,57.99771,0.0,08/16/5687 +-2.16863,43.21767,3270,4,25,14,45,48,3.85,5.0,fr,48530,65,2050125,1,1,Active Shallow Crust,128.8962,89.9935,0.0,04/25/3270 +-2.16863,43.21767,1620,12,27,2,34,44,4.05,5.0,fr,48531,32,2050140,1,1,Active Shallow Crust,0.0,89.98967,0.0,12/27/1620 +-2.16863,43.21767,7338,6,16,11,46,33,4.05,15.0,fr,48532,146,2050141,1,2,Active Shallow Crust,0.0,89.98967,0.0,06/16/7338 +-2.16863,43.21767,8497,7,15,21,57,17,4.05,15.0,fr,48533,169,2050141,1,2,Active Shallow Crust,0.0,89.98967,0.0,07/15/8497 +-2.16863,43.21767,4766,8,23,4,49,17,4.25,5.0,fr,48534,95,2050164,1,1,Active Shallow Crust,0.0,89.99015,0.0,08/23/4766 +-2.16863,43.21767,6019,9,11,1,48,0,4.35,5.0,fr,48535,120,2050176,1,1,Active Shallow Crust,0.0,89.98976,0.0,09/11/6019 +-2.16863,43.21767,5444,10,22,13,55,28,4.75,15.0,fr,48536,108,2050225,1,1,Active Shallow Crust,0.0,89.98985,0.0,10/22/5444 +-0.43539,51.17936,4259,8,18,21,17,56,3.55,5.0,fr,48537,85,2050560,1,1,Active Shallow Crust,0.0,89.99012,0.0,08/18/4259 +-0.43539,51.17936,4720,4,21,22,23,16,3.55,5.0,fr,48538,94,2050569,1,1,Active Shallow Crust,128.8958,89.99368,0.0,04/21/4720 +-0.43539,51.17936,1275,4,24,18,15,34,4.75,5.0,fr,48539,25,2050704,1,1,Active Shallow Crust,0.0,89.98997,0.0,04/24/1275 +-0.43539,51.17936,3025,10,20,23,30,25,4.95,15.0,fr,48540,60,2050738,1,1,Active Shallow Crust,128.8879,89.98978,0.0,10/20/3025 +6.89212,45.12951,276,11,30,19,28,50,3.55,5.0,fr,48541,5,2051040,1,4,Active Shallow Crust,0.0,89.99289,0.0,11/30/0276 +6.89212,45.12951,1352,5,8,18,0,47,3.55,5.0,fr,48542,27,2051040,1,4,Active Shallow Crust,0.0,89.99289,0.0,05/08/1352 +6.89212,45.12951,4584,3,25,2,33,13,3.55,5.0,fr,48543,91,2051040,1,4,Active Shallow Crust,0.0,89.99289,0.0,03/25/4584 +6.89212,45.12951,2612,2,24,19,28,22,3.55,5.0,fr,48544,52,2051040,1,4,Active Shallow Crust,0.0,89.99289,0.0,02/24/2612 +6.89212,45.12951,8027,2,6,1,14,46,3.55,5.0,fr,48545,160,2051043,1,2,Active Shallow Crust,240.0124,57.99782,0.0,02/06/8027 +6.89212,45.12951,3170,9,18,11,0,12,3.55,5.0,fr,48546,63,2051043,1,2,Active Shallow Crust,240.0124,57.99782,0.0,09/18/3170 +6.89212,45.12951,8559,8,8,1,47,30,3.55,5.0,fr,48547,171,2051046,1,1,Active Shallow Crust,0.0,89.99281,-90.0,08/08/8559 +6.89212,45.12951,9957,6,20,4,23,8,3.65,5.0,fr,48548,199,2051052,1,2,Active Shallow Crust,0.0,89.98732,0.0,06/20/9957 +6.89212,45.12951,2067,9,17,14,17,28,3.65,5.0,fr,48549,41,2051052,1,2,Active Shallow Crust,0.0,89.98732,0.0,09/17/2067 +6.89212,45.12951,1841,5,29,6,52,34,3.75,5.0,fr,48550,36,2051064,1,2,Active Shallow Crust,0.0,89.9887,0.0,05/29/1841 +6.89212,45.12951,174,12,5,12,43,48,3.75,5.0,fr,48551,3,2051064,1,2,Active Shallow Crust,0.0,89.9887,0.0,12/05/0174 +6.89212,45.12951,8968,10,3,14,43,15,3.85,5.0,fr,48552,179,2051076,1,2,Active Shallow Crust,0.0,89.98993,0.0,10/03/8968 +6.89212,45.12951,5946,1,19,20,50,10,3.85,5.0,fr,48553,118,2051076,1,2,Active Shallow Crust,0.0,89.98993,0.0,01/19/5946 +6.89212,45.12951,9538,8,7,17,50,45,3.85,15.0,fr,48554,190,2051077,1,1,Active Shallow Crust,0.0,89.98993,0.0,08/07/9538 +6.89212,45.12951,8750,3,12,23,32,55,3.85,27.5,fr,48555,174,2051081,1,1,Active Shallow Crust,240.0113,57.99809,0.0,03/12/8750 +6.89212,45.12951,2242,9,1,23,4,5,3.85,27.5,fr,48556,44,2051084,1,1,Active Shallow Crust,0.0,89.98981,-90.0,09/01/2242 +6.89212,45.12951,713,11,3,6,30,43,3.95,5.0,fr,48557,14,2051091,1,1,Active Shallow Crust,240.0199,58.00475,0.0,11/03/0713 +6.89212,45.12951,4408,1,10,9,18,48,3.95,5.0,fr,48558,88,2051097,1,1,Active Shallow Crust,128.9008,89.99327,0.0,01/10/4408 +6.89212,45.12951,8199,3,6,3,21,59,4.05,5.0,fr,48559,163,2051100,1,1,Active Shallow Crust,0.0,89.992,0.0,03/06/8199 +6.89212,45.12951,9280,1,16,6,25,2,4.15,5.0,fr,48560,185,2051115,1,1,Active Shallow Crust,240.0081,57.99723,0.0,01/16/9280 +6.89212,45.12951,8240,1,14,21,6,44,4.15,15.0,fr,48561,164,2051116,1,2,Active Shallow Crust,240.0081,57.99726,0.0,01/14/8240 +6.89212,45.12951,3235,6,8,22,29,34,4.15,15.0,fr,48562,64,2051116,1,2,Active Shallow Crust,240.0081,57.99726,0.0,06/08/3235 +6.89212,45.12951,9884,4,6,4,39,54,4.15,5.0,fr,48563,197,2051121,1,1,Active Shallow Crust,128.8985,89.99287,0.0,04/06/9884 +6.89212,45.12951,7767,10,31,2,24,52,4.25,27.5,fr,48564,155,2051126,1,1,Active Shallow Crust,0.0,89.99046,0.0,10/31/7767 +6.89212,45.12951,9284,4,11,23,58,40,4.25,5.0,fr,48565,185,2051127,1,1,Active Shallow Crust,240.0079,57.99391,0.0,04/11/9284 +6.89212,45.12951,6774,5,4,22,36,32,4.25,27.5,fr,48566,135,2051135,1,1,Active Shallow Crust,128.8952,89.9809,0.0,05/04/6774 +6.89212,45.12951,1109,3,8,7,53,23,4.35,15.0,fr,48567,22,2051137,1,1,Active Shallow Crust,0.0,89.98867,0.0,03/08/1109 +6.89212,45.12951,7109,12,26,18,17,39,4.45,5.0,fr,48568,142,2051148,1,1,Active Shallow Crust,0.0,89.9899,0.0,12/26/7109 +6.89212,45.12951,2794,2,5,19,1,23,4.45,5.0,fr,48569,55,2051154,1,1,Active Shallow Crust,0.0,89.98978,-90.0,02/05/2794 +6.89212,45.12951,2808,10,10,16,33,42,4.55,5.0,fr,48570,56,2051166,1,1,Active Shallow Crust,0.0,89.9909,-90.0,10/10/2808 +6.89212,45.12951,5800,8,22,15,23,40,4.75,5.0,fr,48571,115,2051184,1,1,Active Shallow Crust,0.0,89.98927,0.0,08/22/5800 +6.89212,45.12951,1957,11,12,5,46,20,5.35,27.5,fr,48572,39,2051258,1,1,Active Shallow Crust,0.0,89.99014,0.0,11/12/1957 +-1.38472,49.14346,7932,7,29,12,28,14,3.55,5.0,fr,48573,158,2051520,1,1,Active Shallow Crust,0.0,89.9901,0.0,07/29/7932 +-1.38472,49.14346,1753,10,17,6,43,50,3.65,5.0,fr,48574,35,2051532,1,1,Active Shallow Crust,0.0,89.98971,0.0,10/17/1753 +-1.38472,49.14346,5702,4,20,23,9,35,3.65,15.0,fr,48575,114,2051533,1,1,Active Shallow Crust,0.0,89.98971,0.0,04/20/5702 +-1.38472,49.14346,1377,2,11,17,59,21,3.85,5.0,fr,48576,27,2051556,1,1,Active Shallow Crust,0.0,89.98949,0.0,02/11/1377 +-1.38472,49.14346,2108,12,20,21,30,36,3.85,15.0,fr,48577,42,2051563,1,1,Active Shallow Crust,0.0,89.99055,-90.0,12/20/2108 +-1.38472,49.14346,8151,9,28,7,45,37,3.95,5.0,fr,48578,163,2051568,1,2,Active Shallow Crust,0.0,89.98959,0.0,09/28/8151 +-1.38472,49.14346,2422,8,12,10,6,34,3.95,5.0,fr,48579,48,2051568,1,2,Active Shallow Crust,0.0,89.98959,0.0,08/12/2422 +-1.38472,49.14346,381,4,21,8,48,19,4.25,5.0,fr,48580,7,2051604,1,1,Active Shallow Crust,0.0,89.98969,0.0,04/21/0381 +-1.38472,49.14346,1170,11,12,3,33,49,4.55,5.0,fr,48581,23,2051640,1,1,Active Shallow Crust,0.0,89.99009,0.0,11/12/1170 +-1.38472,49.14346,9485,5,17,23,28,56,4.75,5.0,fr,48582,189,2051664,1,1,Active Shallow Crust,0.0,89.99006,0.0,05/17/9485 +-1.38472,49.14346,3137,10,20,11,37,8,4.95,27.5,fr,48583,62,2051690,1,1,Active Shallow Crust,0.0,89.99013,0.0,10/20/3137 +0.82627,46.08569,3018,6,27,6,55,43,3.55,5.0,fr,48584,60,2052480,1,2,Active Shallow Crust,0.0,89.99039,0.0,06/27/3018 +0.82627,46.08569,143,4,23,8,28,1,3.55,5.0,fr,48585,2,2052480,1,2,Active Shallow Crust,0.0,89.99039,0.0,04/23/0143 +0.82627,46.08569,4173,2,22,8,22,40,3.55,27.5,fr,48586,83,2052482,1,1,Active Shallow Crust,0.0,89.99039,0.0,02/22/4173 +0.82627,46.08569,7739,5,26,16,41,48,3.55,5.0,fr,48587,154,2052483,1,1,Active Shallow Crust,240.0121,57.99821,0.0,05/26/7739 +0.82627,46.08569,783,11,5,11,50,52,3.65,5.0,fr,48588,15,2052492,1,1,Active Shallow Crust,0.0,89.98987,0.0,11/05/0783 +0.82627,46.08569,9608,1,27,6,10,2,3.75,5.0,fr,48589,192,2052510,1,1,Active Shallow Crust,0.0,89.99017,-90.0,01/27/9608 +0.82627,46.08569,8864,7,17,15,43,32,3.85,27.5,fr,48590,177,2052518,1,1,Active Shallow Crust,0.0,89.9901,0.0,07/17/8864 +0.82627,46.08569,4599,9,24,22,55,38,3.95,5.0,fr,48591,91,2052528,1,1,Active Shallow Crust,0.0,89.99007,0.0,09/24/4599 +0.82627,46.08569,2354,3,28,15,57,30,4.05,5.0,fr,48592,47,2052540,1,1,Active Shallow Crust,0.0,89.99017,0.0,03/28/2354 +0.82627,46.08569,2003,6,5,3,51,50,4.05,27.5,fr,48593,40,2052542,1,1,Active Shallow Crust,0.0,89.99017,0.0,06/05/2003 +0.82627,46.08569,5440,9,30,17,21,33,4.25,5.0,fr,48594,108,2052567,1,1,Active Shallow Crust,240.0075,57.99401,0.0,09/30/5440 +0.82627,46.08569,8133,11,13,1,1,31,4.75,5.0,fr,48595,162,2052624,1,1,Active Shallow Crust,0.0,89.9899,0.0,11/13/8133 +0.82627,46.08569,6826,4,29,20,3,33,5.25,5.0,fr,48596,136,2052684,1,1,Active Shallow Crust,0.0,89.99,0.0,04/29/6826 +2.36451,46.71456,4502,6,14,0,32,2,3.65,5.0,fr,48597,90,2052972,1,1,Active Shallow Crust,0.0,89.99075,0.0,06/14/4502 +2.36451,46.71456,1607,3,8,21,46,23,3.75,5.0,fr,48598,32,2052990,1,1,Active Shallow Crust,0.0,89.98889,-90.0,03/08/1607 +2.36451,46.71456,6017,9,14,12,13,18,3.85,5.0,fr,48599,120,2052996,1,2,Active Shallow Crust,0.0,89.99021,0.0,09/14/6017 +2.36451,46.71456,3895,7,27,13,46,23,3.85,5.0,fr,48600,77,2052996,1,2,Active Shallow Crust,0.0,89.99021,0.0,07/27/3895 +2.36451,46.71456,1029,7,6,23,12,15,3.85,15.0,fr,48601,20,2052997,1,1,Active Shallow Crust,0.0,89.99021,0.0,07/06/1029 +2.36451,46.71456,1087,4,7,13,10,52,3.85,15.0,fr,48602,21,2053006,1,1,Active Shallow Crust,128.8954,89.99388,0.0,04/07/1087 +2.36451,46.71456,1776,6,26,14,58,42,4.25,5.0,fr,48603,35,2053044,1,1,Active Shallow Crust,0.0,89.99074,0.0,06/26/1776 +2.36451,46.71456,4180,11,10,13,0,28,4.25,15.0,fr,48604,83,2053045,1,1,Active Shallow Crust,0.0,89.99074,0.0,11/10/4180 +2.36451,46.71456,2025,11,30,18,20,49,4.55,5.0,fr,48605,40,2053083,1,1,Active Shallow Crust,240.0095,57.99718,0.0,11/30/2025 +2.36451,46.71456,1382,8,17,23,55,30,4.75,27.5,fr,48606,27,2053112,1,1,Active Shallow Crust,0.0,89.99033,-90.0,08/17/1382 +8.51971,49.68026,8085,6,6,22,50,54,3.55,5.0,fr,48607,161,2053440,1,2,Active Shallow Crust,0.0,89.98695,0.0,06/06/8085 +8.51971,49.68026,885,6,3,22,32,39,3.55,5.0,fr,48608,17,2053440,1,2,Active Shallow Crust,0.0,89.98695,0.0,06/03/0885 +8.51971,49.68026,50,4,19,21,18,17,3.55,27.5,fr,48609,0,2053442,1,1,Active Shallow Crust,0.0,89.98695,0.0,04/19/0050 +8.51971,49.68026,9968,8,19,4,45,59,3.65,5.0,fr,48610,199,2053452,1,3,Active Shallow Crust,0.0,89.98837,0.0,08/19/9968 +8.51971,49.68026,2063,10,22,18,42,1,3.65,5.0,fr,48611,41,2053452,1,3,Active Shallow Crust,0.0,89.98837,0.0,10/22/2063 +8.51971,49.68026,4241,8,24,23,1,35,3.65,5.0,fr,48612,84,2053452,1,3,Active Shallow Crust,0.0,89.98837,0.0,08/24/4241 +8.51971,49.68026,6033,9,28,9,46,8,3.65,15.0,fr,48613,120,2053453,1,2,Active Shallow Crust,0.0,89.98837,0.0,09/28/6033 +8.51971,49.68026,9191,6,3,5,56,28,3.65,15.0,fr,48614,183,2053453,1,2,Active Shallow Crust,0.0,89.98837,0.0,06/03/9191 +8.51971,49.68026,9452,2,3,2,53,23,3.65,15.0,fr,48615,189,2053459,1,1,Active Shallow Crust,0.0,89.98824,-90.0,02/03/9452 +8.51971,49.68026,3872,4,5,18,37,26,3.65,15.0,fr,48616,77,2053462,1,1,Active Shallow Crust,128.9007,89.96358,0.0,04/05/3872 +8.51971,49.68026,8275,4,6,21,20,12,3.75,5.0,fr,48617,165,2053464,1,1,Active Shallow Crust,0.0,89.98963,0.0,04/06/8275 +8.51971,49.68026,8327,8,6,6,15,21,3.75,5.0,fr,48618,166,2053470,1,1,Active Shallow Crust,0.0,89.98952,-90.0,08/06/8327 +8.51971,49.68026,9882,5,23,12,34,11,3.85,15.0,fr,48619,197,2053486,1,1,Active Shallow Crust,128.8971,89.99076,0.0,05/23/9882 +8.51971,49.68026,7476,4,29,4,57,36,3.95,15.0,fr,48620,149,2053489,1,1,Active Shallow Crust,0.0,89.99177,0.0,04/29/7476 +8.51971,49.68026,4818,8,23,19,6,44,4.05,5.0,fr,48621,96,2053500,1,3,Active Shallow Crust,0.0,89.99266,0.0,08/23/4818 +8.51971,49.68026,6268,3,13,16,40,1,4.05,5.0,fr,48622,125,2053500,1,3,Active Shallow Crust,0.0,89.99266,0.0,03/13/6268 +8.51971,49.68026,1695,2,27,22,39,13,4.05,5.0,fr,48623,33,2053500,1,3,Active Shallow Crust,0.0,89.99266,0.0,02/27/1695 +8.51971,49.68026,648,4,19,19,52,48,4.15,5.0,fr,48624,12,2053512,1,2,Active Shallow Crust,0.0,89.98692,0.0,04/19/0648 +8.51971,49.68026,6856,11,30,21,3,3,4.15,5.0,fr,48625,137,2053512,1,2,Active Shallow Crust,0.0,89.98692,0.0,11/30/6856 +8.51971,49.68026,4882,1,5,3,35,37,4.15,15.0,fr,48626,97,2053522,1,1,Active Shallow Crust,128.8952,89.99673,0.0,01/05/4882 +8.51971,49.68026,1504,1,1,18,48,45,4.25,5.0,fr,48627,30,2053524,1,1,Active Shallow Crust,0.0,89.98834,0.0,01/01/1504 +8.51971,49.68026,2825,5,17,3,14,24,4.25,15.0,fr,48628,56,2053525,1,1,Active Shallow Crust,0.0,89.98834,0.0,05/17/2825 +8.51971,49.68026,1527,11,2,22,49,10,4.45,5.0,fr,48629,30,2053548,1,1,Active Shallow Crust,0.0,89.99074,0.0,11/02/1527 +8.51971,49.68026,1172,1,12,10,27,48,4.45,5.0,fr,48630,23,2053554,1,1,Active Shallow Crust,0.0,89.99063,-90.0,01/12/1172 +8.51971,49.68026,3816,4,28,0,30,57,4.75,5.0,fr,48631,76,2053584,1,1,Active Shallow Crust,0.0,89.99017,0.0,04/28/3816 +8.502048,49.70004,5919,8,18,2,19,43,6.65,9.065474,fr,48632,118,2053815,1,1,Active Shallow Crust,240.1277,58.00076,0.0,08/18/5919 +-3.73634,48.68285,246,8,7,15,26,24,3.55,27.5,fr,48633,4,2053922,1,1,Active Shallow Crust,0.0,89.99001,0.0,08/07/0246 +-3.73634,48.68285,1173,2,5,18,19,26,3.55,5.0,fr,48634,23,2053926,1,1,Active Shallow Crust,0.0,89.9899,-90.0,02/05/1173 +-3.73634,48.68285,245,3,29,6,10,40,3.55,15.0,fr,48635,4,2053930,1,1,Active Shallow Crust,128.8966,89.99334,0.0,03/29/0245 +-3.73634,48.68285,5454,3,19,15,25,1,3.75,5.0,fr,48636,109,2053944,1,1,Active Shallow Crust,0.0,89.98943,0.0,03/19/5454 +-3.73634,48.68285,6173,1,16,14,0,35,3.95,5.0,fr,48637,123,2053968,1,1,Active Shallow Crust,0.0,89.98949,0.0,01/16/6173 +-3.73634,48.68285,8036,11,23,4,27,41,3.95,5.0,fr,48638,160,2053974,1,2,Active Shallow Crust,0.0,89.98938,-90.0,11/23/8036 +-3.73634,48.68285,1111,3,12,16,19,7,3.95,5.0,fr,48639,22,2053974,1,2,Active Shallow Crust,0.0,89.98938,-90.0,03/12/1111 +-3.73634,48.68285,6587,8,19,11,35,3,4.15,5.0,fr,48640,131,2053992,1,1,Active Shallow Crust,0.0,89.98999,0.0,08/19/6587 +-3.73634,48.68285,8841,6,19,9,55,19,4.45,5.0,fr,48641,176,2054028,1,1,Active Shallow Crust,0.0,89.99055,0.0,06/19/8841 +3.0022,41.6733,894,5,20,3,0,20,3.55,5.0,fr,48642,17,2054400,1,1,Active Shallow Crust,0.0,89.9887,0.0,05/20/0894 +3.0022,41.6733,7698,10,21,5,30,17,3.55,5.0,fr,48643,153,2054403,1,1,Active Shallow Crust,240.011,57.99813,0.0,10/21/7698 +3.0022,41.6733,713,12,15,4,48,33,3.55,15.0,fr,48644,14,2054404,1,1,Active Shallow Crust,240.011,57.99813,0.0,12/15/0713 +3.0022,41.6733,1268,9,24,8,59,16,3.55,5.0,fr,48645,25,2054409,1,1,Active Shallow Crust,128.8965,89.99435,0.0,09/24/1268 +3.0022,41.6733,5927,7,9,10,2,12,3.55,15.0,fr,48646,118,2054410,1,1,Active Shallow Crust,128.8965,89.99435,0.0,07/09/5927 +3.0022,41.6733,5917,6,29,6,52,9,3.65,5.0,fr,48647,118,2054412,1,1,Active Shallow Crust,0.0,89.98993,0.0,06/29/5917 +3.0022,41.6733,5471,5,21,8,16,46,3.65,15.0,fr,48648,109,2054413,1,1,Active Shallow Crust,0.0,89.98993,0.0,05/21/5471 +3.0022,41.6733,5753,5,8,21,55,50,3.65,27.5,fr,48649,115,2054414,1,1,Active Shallow Crust,0.0,89.98993,0.0,05/08/5753 +3.0022,41.6733,1599,10,19,4,44,53,3.65,15.0,fr,48650,31,2054416,1,2,Active Shallow Crust,240.0005,58.01262,0.0,10/19/1599 +3.0022,41.6733,3378,9,27,0,55,23,3.65,15.0,fr,48651,67,2054416,1,2,Active Shallow Crust,240.0005,58.01262,0.0,09/27/3378 +3.0022,41.6733,6711,10,7,14,36,5,3.75,5.0,fr,48652,134,2054424,1,3,Active Shallow Crust,0.0,89.99103,0.0,10/07/6711 +3.0022,41.6733,1573,6,19,16,10,29,3.75,5.0,fr,48653,31,2054424,1,3,Active Shallow Crust,0.0,89.99103,0.0,06/19/1573 +3.0022,41.6733,3673,12,28,21,12,27,3.75,5.0,fr,48654,73,2054424,1,3,Active Shallow Crust,0.0,89.99103,0.0,12/28/3673 +3.0022,41.6733,1841,11,12,9,34,39,3.75,15.0,fr,48655,36,2054428,1,1,Active Shallow Crust,240.008,58.01711,0.0,11/12/1841 +3.0022,41.6733,780,4,26,15,42,43,3.75,5.0,fr,48656,15,2054430,1,1,Active Shallow Crust,0.0,89.99092,-90.0,04/26/0780 +3.0022,41.6733,6372,4,3,23,4,10,3.75,15.0,fr,48657,127,2054431,1,1,Active Shallow Crust,0.0,89.99092,-90.0,04/03/6372 +3.0022,41.6733,7181,12,4,2,59,41,3.75,5.0,fr,48658,143,2054433,1,1,Active Shallow Crust,128.8967,89.96741,0.0,12/04/7181 +3.0022,41.6733,3860,4,2,13,54,32,3.85,5.0,fr,48659,77,2054436,1,3,Active Shallow Crust,0.0,89.98933,0.0,04/02/3860 +3.0022,41.6733,2748,11,7,9,17,32,3.85,5.0,fr,48660,54,2054436,1,3,Active Shallow Crust,0.0,89.98933,0.0,11/07/2748 +3.0022,41.6733,606,6,22,7,50,52,3.85,5.0,fr,48661,12,2054436,1,3,Active Shallow Crust,0.0,89.98933,0.0,06/22/0606 +3.0022,41.6733,3368,1,27,16,17,38,3.85,27.5,fr,48662,67,2054438,1,1,Active Shallow Crust,0.0,89.98933,0.0,01/27/3368 +3.0022,41.6733,4161,9,3,23,27,6,3.85,27.5,fr,48663,83,2054447,1,1,Active Shallow Crust,128.8964,89.99333,0.0,09/03/4161 +3.0022,41.6733,4752,2,1,10,11,51,3.95,5.0,fr,48664,95,2054448,1,1,Active Shallow Crust,0.0,89.99049,0.0,02/01/4752 +3.0022,41.6733,5468,2,12,16,25,39,3.95,5.0,fr,48665,109,2054451,1,1,Active Shallow Crust,240.0195,58.00495,0.0,02/12/5468 +3.0022,41.6733,7498,5,26,0,27,5,3.95,5.0,fr,48666,149,2054454,1,1,Active Shallow Crust,0.0,89.99039,-90.0,05/26/7498 +3.0022,41.6733,8078,12,19,18,46,50,4.05,5.0,fr,48667,161,2054460,1,2,Active Shallow Crust,0.0,89.98941,0.0,12/19/8078 +3.0022,41.6733,9790,12,20,11,28,53,4.05,5.0,fr,48668,195,2054460,1,2,Active Shallow Crust,0.0,89.98941,0.0,12/20/9790 +3.0022,41.6733,1128,11,26,22,43,22,4.05,5.0,fr,48669,22,2054463,1,1,Active Shallow Crust,240.0051,58.00575,0.0,11/26/1128 +3.0022,41.6733,4343,4,17,5,57,1,4.15,5.0,fr,48670,86,2054472,1,2,Active Shallow Crust,0.0,89.99056,0.0,04/17/4343 +3.0022,41.6733,3340,3,24,5,54,7,4.15,5.0,fr,48671,66,2054472,1,2,Active Shallow Crust,0.0,89.99056,0.0,03/24/3340 +3.0022,41.6733,5736,5,18,16,36,20,4.15,15.0,fr,48672,114,2054476,1,1,Active Shallow Crust,240.0076,57.99728,0.0,05/18/5736 +3.0022,41.6733,4382,7,3,16,30,17,4.25,5.0,fr,48673,87,2054484,1,1,Active Shallow Crust,0.0,89.98991,0.0,07/03/4382 +3.0022,41.6733,3270,10,13,12,33,29,4.25,5.0,fr,48674,65,2054487,1,1,Active Shallow Crust,240.0065,57.99418,0.0,10/13/3270 +3.0022,41.6733,5314,2,5,9,41,7,4.35,5.0,fr,48675,106,2054496,1,2,Active Shallow Crust,0.0,89.9895,0.0,02/05/5314 +3.0022,41.6733,4176,6,25,18,42,32,4.35,5.0,fr,48676,83,2054496,1,2,Active Shallow Crust,0.0,89.9895,0.0,06/25/4176 +3.0022,41.6733,2114,4,22,17,3,22,4.55,5.0,fr,48677,42,2054529,1,1,Active Shallow Crust,128.8949,89.98592,0.0,04/22/2114 +3.0022,41.6733,8563,2,19,0,5,54,4.65,5.0,fr,48678,171,2054532,1,1,Active Shallow Crust,0.0,89.99045,0.0,02/19/8563 +3.0022,41.6733,3696,1,19,1,56,48,4.85,5.0,fr,48679,73,2054556,1,2,Active Shallow Crust,0.0,89.98988,0.0,01/19/3696 +3.0022,41.6733,9636,8,8,11,27,57,4.85,5.0,fr,48680,192,2054556,1,2,Active Shallow Crust,0.0,89.98988,0.0,08/08/9636 +3.0022,41.6733,3037,5,20,22,48,17,4.95,5.0,fr,48681,60,2054571,1,1,Active Shallow Crust,240.0099,58.00412,0.0,05/20/3037 +5.82079,49.11448,452,10,16,10,21,5,3.55,5.0,fr,48682,9,2054880,1,1,Active Shallow Crust,0.0,89.9868,0.0,10/16/0452 +0.32145,44.01843,668,2,5,4,53,26,3.55,5.0,fr,48683,13,2055360,1,1,Active Shallow Crust,0.0,89.99003,0.0,02/05/0668 +0.32145,44.01843,454,8,4,8,16,26,3.65,5.0,fr,48684,9,2055372,1,1,Active Shallow Crust,0.0,89.9899,0.0,08/04/0454 +0.32145,44.01843,8519,3,27,15,35,7,3.65,5.0,fr,48685,170,2055378,1,1,Active Shallow Crust,0.0,89.9902,-90.0,03/27/8519 +0.32145,44.01843,7989,7,25,10,43,37,3.85,27.5,fr,48686,159,2055398,1,1,Active Shallow Crust,0.0,89.99005,0.0,07/25/7989 +0.32145,44.01843,9657,2,16,3,48,1,5.55,5.0,fr,48687,193,2055600,1,1,Active Shallow Crust,0.0,89.98998,0.0,02/16/9657 +0.32145,44.01843,5555,7,24,8,30,35,5.65,5.0,fr,48688,111,2055612,1,1,Active Shallow Crust,360.0,89.99002,0.0,07/24/5555 +6.02003,47.23384,4810,4,14,17,30,49,3.55,5.0,fr,48689,96,2055840,1,3,Active Shallow Crust,0.0,89.99316,0.0,04/14/4810 +6.02003,47.23384,8171,10,13,17,39,23,3.55,5.0,fr,48690,163,2055840,1,3,Active Shallow Crust,0.0,89.99316,0.0,10/13/8171 +6.02003,47.23384,2905,1,23,5,32,39,3.55,5.0,fr,48691,58,2055840,1,3,Active Shallow Crust,0.0,89.99316,0.0,01/23/2905 +6.02003,47.23384,8793,5,20,5,53,4,3.55,15.0,fr,48692,175,2055841,1,1,Active Shallow Crust,0.0,89.99316,0.0,05/20/8793 +6.02003,47.23384,5545,12,25,3,29,46,3.65,5.0,fr,48693,110,2055852,1,1,Active Shallow Crust,0.0,89.98779,0.0,12/25/5545 +6.02003,47.23384,9367,12,27,10,53,25,3.65,27.5,fr,48694,187,2055854,1,1,Active Shallow Crust,0.0,89.98779,0.0,12/27/9367 +6.02003,47.23384,1124,4,8,5,56,51,3.75,5.0,fr,48695,22,2055864,1,1,Active Shallow Crust,0.0,89.98912,0.0,04/08/1124 +6.02003,47.23384,7155,8,24,8,47,24,3.75,5.0,fr,48696,143,2055873,1,1,Active Shallow Crust,128.8962,89.96751,0.0,08/24/7155 +6.02003,47.23384,425,1,26,12,54,2,3.85,15.0,fr,48697,8,2055877,1,2,Active Shallow Crust,0.0,89.9903,0.0,01/26/0425 +6.02003,47.23384,2297,2,18,17,43,2,3.85,15.0,fr,48698,45,2055877,1,2,Active Shallow Crust,0.0,89.9903,0.0,02/18/2297 +6.02003,47.23384,6097,5,5,14,19,17,3.85,27.5,fr,48699,121,2055878,1,1,Active Shallow Crust,0.0,89.9903,0.0,05/05/6097 +6.02003,47.23384,211,10,6,17,23,39,3.85,5.0,fr,48700,4,2055879,1,1,Active Shallow Crust,240.0104,57.99733,0.0,10/06/0211 +6.02003,47.23384,8955,10,6,0,41,12,4.05,5.0,fr,48701,179,2055900,1,1,Active Shallow Crust,0.0,89.98845,0.0,10/06/8955 +6.02003,47.23384,656,12,25,23,48,20,4.05,5.0,fr,48702,13,2055906,1,1,Active Shallow Crust,0.0,89.98831,-90.0,12/25/0656 +6.02003,47.23384,929,2,20,22,59,25,4.45,5.0,fr,48703,18,2055951,1,1,Active Shallow Crust,240.0054,57.99443,0.0,02/20/0929 +6.02003,47.23384,6287,11,23,4,36,16,4.55,5.0,fr,48704,125,2055960,1,1,Active Shallow Crust,0.0,89.98917,0.0,11/23/6287 +6.02003,47.23384,9913,1,25,21,25,6,4.65,15.0,fr,48705,198,2055979,1,1,Active Shallow Crust,0.0,89.99023,-90.0,01/25/9913 +6.02003,47.23384,9880,6,21,17,54,27,4.75,5.0,fr,48706,197,2055990,1,1,Active Shallow Crust,0.0,89.98956,-90.0,06/21/9880 +6.02003,47.23384,722,12,27,15,49,44,4.95,5.0,fr,48707,14,2056008,1,1,Active Shallow Crust,0.0,89.99043,0.0,12/27/0722 +-3.59272,48.96654,4528,12,22,23,23,8,3.55,5.0,fr,48708,90,2056320,1,1,Active Shallow Crust,0.0,89.99007,0.0,12/22/4528 +-3.59272,48.96654,9248,10,17,14,29,30,3.55,15.0,fr,48709,184,2056324,1,1,Active Shallow Crust,240.0122,57.99799,0.0,10/17/9248 +-3.59272,48.96654,2083,4,29,15,26,26,3.65,5.0,fr,48710,41,2056332,1,1,Active Shallow Crust,0.0,89.99115,0.0,04/29/2083 +-3.59272,48.96654,9254,5,23,5,5,38,4.05,5.0,fr,48711,185,2056380,1,1,Active Shallow Crust,0.0,89.99069,0.0,05/23/9254 +-3.59272,48.96654,9547,3,16,20,49,17,4.35,5.0,fr,48712,190,2056425,1,1,Active Shallow Crust,128.897,89.98288,0.0,03/16/9547 +-3.59272,48.96654,6110,10,5,15,10,6,4.75,5.0,fr,48713,122,2056470,1,1,Active Shallow Crust,0.0,89.98991,-90.0,10/05/6110 +-3.59272,48.96654,481,6,20,0,46,53,5.45,15.0,fr,48714,9,2056552,1,1,Active Shallow Crust,240.031,57.99892,0.0,06/20/0481 +6.38775,50.55563,8559,4,3,10,41,52,3.55,5.0,fr,48715,171,2057280,1,2,Active Shallow Crust,0.0,89.98719,0.0,04/03/8559 +6.38775,50.55563,513,6,1,0,14,22,3.55,5.0,fr,48716,10,2057280,1,2,Active Shallow Crust,0.0,89.98719,0.0,06/01/0513 +6.38775,50.55563,5175,5,5,0,12,36,3.55,27.5,fr,48717,103,2057285,1,1,Active Shallow Crust,240.0116,57.99836,0.0,05/05/5175 +6.38775,50.55563,7778,11,3,9,59,57,3.55,5.0,fr,48718,155,2057289,1,1,Active Shallow Crust,128.8953,89.99359,0.0,11/03/7778 +6.38775,50.55563,1750,2,24,5,45,4,3.65,5.0,fr,48719,34,2057292,1,1,Active Shallow Crust,0.0,89.98858,0.0,02/24/1750 +6.38775,50.55563,5708,4,28,8,45,53,3.65,5.0,fr,48720,114,2057301,1,1,Active Shallow Crust,128.9006,89.9636,0.0,04/28/5708 +6.38775,50.55563,627,2,16,12,37,0,3.65,15.0,fr,48721,12,2057302,1,1,Active Shallow Crust,128.9006,89.9636,0.0,02/16/0627 +6.38775,50.55563,7722,5,16,23,33,56,3.75,15.0,fr,48722,154,2057314,1,1,Active Shallow Crust,128.8964,89.96756,0.0,05/16/7722 +6.38775,50.55563,928,3,29,5,53,9,3.75,27.5,fr,48723,18,2057315,1,1,Active Shallow Crust,128.8964,89.96756,0.0,03/29/0928 +6.38775,50.55563,7515,6,4,8,57,10,3.85,5.0,fr,48724,150,2057316,1,2,Active Shallow Crust,0.0,89.99093,0.0,06/04/7515 +6.38775,50.55563,1739,11,3,0,50,55,3.85,5.0,fr,48725,34,2057316,1,2,Active Shallow Crust,0.0,89.99093,0.0,11/03/1739 +6.38775,50.55563,9222,5,12,14,59,52,3.85,15.0,fr,48726,184,2057317,1,1,Active Shallow Crust,0.0,89.99093,0.0,05/12/9222 +6.38775,50.55563,3075,2,17,5,16,26,3.85,5.0,fr,48727,61,2057325,1,1,Active Shallow Crust,128.8945,89.99319,0.0,02/17/3075 +6.38775,50.55563,8344,10,12,3,20,14,3.95,15.0,fr,48728,166,2057329,1,2,Active Shallow Crust,0.0,89.99191,0.0,10/12/8344 +6.38775,50.55563,9388,11,10,7,0,41,3.95,15.0,fr,48729,187,2057329,1,2,Active Shallow Crust,0.0,89.99191,0.0,11/10/9388 +6.38775,50.55563,7831,8,2,17,15,55,3.95,5.0,fr,48730,156,2057334,1,1,Active Shallow Crust,0.0,89.99182,-90.0,08/02/7831 +6.38775,50.55563,7456,6,10,6,22,0,4.05,5.0,fr,48731,149,2057340,1,1,Active Shallow Crust,0.0,89.98919,0.0,06/10/7456 +6.38775,50.55563,3728,9,2,9,38,37,4.05,5.0,fr,48732,74,2057343,1,1,Active Shallow Crust,240.0073,58.00609,0.0,09/02/3728 +6.38775,50.55563,6291,3,17,17,48,21,4.15,5.0,fr,48733,125,2057352,1,2,Active Shallow Crust,0.0,89.99036,0.0,03/17/6291 +6.38775,50.55563,6878,11,24,3,44,14,4.15,5.0,fr,48734,137,2057352,1,2,Active Shallow Crust,0.0,89.99036,0.0,11/24/6878 +6.38775,50.55563,9039,4,5,8,2,30,4.25,5.0,fr,48735,180,2057364,1,2,Active Shallow Crust,0.0,89.99142,0.0,04/05/9039 +6.38775,50.55563,7610,11,2,10,11,46,4.25,5.0,fr,48736,152,2057364,1,2,Active Shallow Crust,0.0,89.99142,0.0,11/02/7610 +6.38775,50.55563,7293,8,24,7,28,21,4.35,5.0,fr,48737,145,2057376,1,1,Active Shallow Crust,0.0,89.9898,0.0,08/24/7293 +6.38775,50.55563,9465,7,14,17,8,16,4.45,5.0,fr,48738,189,2057388,1,2,Active Shallow Crust,0.0,89.99091,0.0,07/14/9465 +6.38775,50.55563,3927,8,10,14,26,54,4.45,5.0,fr,48739,78,2057388,1,2,Active Shallow Crust,0.0,89.99091,0.0,08/10/3927 +6.38775,50.55563,1301,9,15,4,19,2,4.45,5.0,fr,48740,26,2057397,1,1,Active Shallow Crust,128.8912,89.99318,0.0,09/15/1301 +6.38775,50.55563,1608,8,5,3,31,12,5.55,15.0,fr,48741,32,2057530,1,1,Active Shallow Crust,128.876,89.9897,0.0,08/05/1608 +6.38775,50.55563,7018,8,26,10,41,20,5.65,15.0,fr,48742,140,2057542,1,1,Active Shallow Crust,128.8714,89.99046,0.0,08/26/7018 +4.21205,41.1747,226,6,14,7,35,32,3.65,15.0,fr,48743,4,2057773,1,1,Active Shallow Crust,0.0,89.99323,0.0,06/14/0226 +4.21205,41.1747,6601,11,21,1,31,10,3.75,15.0,fr,48744,132,2057785,1,1,Active Shallow Crust,0.0,89.98794,0.0,11/21/6601 +4.21205,41.1747,7644,2,18,2,53,30,4.55,15.0,fr,48745,152,2057881,1,1,Active Shallow Crust,0.0,89.99039,0.0,02/18/7644 +4.21205,41.1747,2631,12,30,19,45,56,4.65,5.0,fr,48746,52,2057895,1,1,Active Shallow Crust,240.0089,57.99429,0.0,12/30/2631 +2.09839,53.06714,1773,7,24,6,50,26,3.95,5.0,fr,48747,35,2058297,1,1,Active Shallow Crust,128.8992,89.99331,0.0,07/24/1773 +1.34123,44.50845,7113,4,13,17,43,32,3.75,5.0,fr,48748,142,2058744,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/13/7113 +1.34123,44.50845,7548,3,13,11,32,32,3.75,15.0,fr,48749,150,2058745,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/13/7548 +1.34123,44.50845,8542,4,3,23,14,23,3.95,5.0,fr,48750,170,2058771,1,1,Active Shallow Crust,240.0196,58.00478,0.0,04/03/8542 +1.34123,44.50845,5752,4,4,21,57,22,3.95,15.0,fr,48751,115,2058772,1,1,Active Shallow Crust,240.0196,58.00478,0.0,04/04/5752 +1.341231,44.50845,3478,3,5,6,7,40,6.05,5.357596,fr,48752,69,2059020,1,1,Active Shallow Crust,0.0,89.99004,0.0,03/05/3478 +4.03065,49.49405,9131,9,10,3,53,34,3.95,5.0,fr,48753,182,2059248,1,1,Active Shallow Crust,0.0,89.99174,0.0,09/10/9131 +4.03065,49.49405,3262,3,25,0,3,59,4.45,5.0,fr,48754,65,2059308,1,1,Active Shallow Crust,0.0,89.9907,0.0,03/25/3262 +1.7599,48.7967,7595,2,2,15,51,42,3.55,5.0,fr,48755,151,2059680,1,1,Active Shallow Crust,0.0,89.99004,0.0,02/02/7595 +1.7599,48.7967,3038,1,24,1,56,25,3.75,5.0,fr,48756,60,2059704,1,2,Active Shallow Crust,0.0,89.98945,0.0,01/24/3038 +1.7599,48.7967,1094,11,21,5,45,13,3.75,5.0,fr,48757,21,2059704,1,2,Active Shallow Crust,0.0,89.98945,0.0,11/21/1094 +1.7599,48.7967,3202,1,27,0,39,19,3.85,15.0,fr,48758,64,2059717,1,1,Active Shallow Crust,0.0,89.98942,0.0,01/27/3202 +-4.23988,48.09025,3309,5,9,6,54,48,3.55,5.0,fr,48759,66,2060160,1,1,Active Shallow Crust,0.0,89.99326,0.0,05/09/3309 +-4.23988,48.09025,8732,12,9,7,31,22,3.55,15.0,fr,48760,174,2060161,1,1,Active Shallow Crust,0.0,89.99326,0.0,12/09/8732 +-4.23988,48.09025,6994,12,10,7,18,34,3.85,15.0,fr,48761,139,2060197,1,1,Active Shallow Crust,0.0,89.99046,0.0,12/10/6994 +-4.23988,48.09025,9518,5,12,1,57,4,4.05,15.0,fr,48762,190,2060221,1,1,Active Shallow Crust,0.0,89.98864,0.0,05/12/9518 +-4.23988,48.09025,4780,12,15,10,25,34,4.05,15.0,fr,48763,95,2060224,1,1,Active Shallow Crust,240.0065,58.0055,0.0,12/15/4780 +-4.23988,48.09025,4240,9,3,12,7,14,4.05,5.0,fr,48764,84,2060229,1,1,Active Shallow Crust,128.8898,89.99432,0.0,09/03/4240 +-4.23988,48.09025,9177,4,28,19,57,10,4.35,15.0,fr,48765,183,2060257,1,1,Active Shallow Crust,0.0,89.98927,0.0,04/28/9177 +-4.23988,48.09025,136,5,9,8,36,57,5.15,27.5,fr,48766,2,2060354,1,1,Active Shallow Crust,0.0,89.99039,0.0,05/09/0136 +-2.48973,47.84718,7205,6,7,5,57,37,3.55,5.0,fr,48767,144,2060640,1,2,Active Shallow Crust,0.0,89.98985,0.0,06/07/7205 +-2.48973,47.84718,5195,10,30,22,36,53,3.55,5.0,fr,48768,103,2060640,1,2,Active Shallow Crust,0.0,89.98985,0.0,10/30/5195 +-2.48973,47.84718,6059,7,25,20,19,58,3.65,5.0,fr,48769,121,2060652,1,1,Active Shallow Crust,0.0,89.99095,0.0,07/25/6059 +-2.48973,47.84718,7252,9,23,15,29,9,3.65,27.5,fr,48770,145,2060654,1,1,Active Shallow Crust,0.0,89.99095,0.0,09/23/7252 +-2.48973,47.84718,7358,6,30,3,11,43,3.65,27.5,fr,48771,147,2060660,1,1,Active Shallow Crust,0.0,89.99084,-90.0,06/30/7358 +-2.48973,47.84718,4622,1,16,22,33,44,3.75,5.0,fr,48772,92,2060664,1,1,Active Shallow Crust,0.0,89.98925,0.0,01/16/4622 +-2.48973,47.84718,9164,8,24,23,49,11,3.75,27.5,fr,48773,183,2060669,1,1,Active Shallow Crust,240.0088,58.01714,0.0,08/24/9164 +-2.48973,47.84718,6670,2,4,21,29,53,3.75,5.0,fr,48774,133,2060670,1,1,Active Shallow Crust,0.0,89.98912,-90.0,02/04/6670 +-2.48973,47.84718,2705,9,30,0,57,2,3.85,5.0,fr,48775,54,2060685,1,1,Active Shallow Crust,128.8957,89.99281,0.0,09/30/2705 +-2.48973,47.84718,6467,11,14,21,23,46,3.95,5.0,fr,48776,129,2060688,1,1,Active Shallow Crust,0.0,89.98933,0.0,11/14/6467 +-2.48973,47.84718,6053,7,5,6,21,23,4.25,5.0,fr,48777,121,2060724,1,1,Active Shallow Crust,0.0,89.98942,0.0,07/05/6053 +-2.48973,47.84718,6904,7,16,15,44,26,4.35,5.0,fr,48778,138,2060742,1,1,Active Shallow Crust,0.0,89.99046,-90.0,07/16/6904 +-2.48973,47.84718,6642,10,28,3,13,29,4.85,5.0,fr,48779,132,2060796,1,1,Active Shallow Crust,0.0,89.99015,0.0,10/28/6642 +-3.07124,48.33723,5661,10,22,13,22,4,3.55,5.0,fr,48780,113,2061120,1,1,Active Shallow Crust,0.0,89.98994,0.0,10/22/5661 +-3.07124,48.33723,3871,12,20,13,1,46,3.55,15.0,fr,48781,77,2061121,1,1,Active Shallow Crust,0.0,89.98994,0.0,12/20/3871 +-3.07124,48.33723,4203,5,14,14,48,42,3.55,5.0,fr,48782,84,2061126,1,2,Active Shallow Crust,0.0,89.98983,-90.0,05/14/4203 +-3.07124,48.33723,8382,8,13,16,35,48,3.55,5.0,fr,48783,167,2061126,1,2,Active Shallow Crust,0.0,89.98983,-90.0,08/13/8382 +-3.07124,48.33723,9181,10,24,6,51,49,3.55,5.0,fr,48784,183,2061129,1,1,Active Shallow Crust,128.8965,89.99329,0.0,10/24/9181 +-3.07124,48.33723,9367,1,29,2,58,43,3.65,5.0,fr,48785,187,2061132,1,1,Active Shallow Crust,0.0,89.99104,0.0,01/29/9367 +-3.07124,48.33723,6840,3,14,21,13,25,3.65,5.0,fr,48786,136,2061135,1,2,Active Shallow Crust,240.0011,58.01307,0.0,03/14/6840 +-3.07124,48.33723,4184,9,5,21,59,54,3.65,5.0,fr,48787,83,2061135,1,2,Active Shallow Crust,240.0011,58.01307,0.0,09/05/4184 +-3.07124,48.33723,5140,1,19,2,43,2,3.75,5.0,fr,48788,102,2061144,1,2,Active Shallow Crust,0.0,89.98935,0.0,01/19/5140 +-3.07124,48.33723,837,11,17,17,39,49,3.75,5.0,fr,48789,16,2061144,1,2,Active Shallow Crust,0.0,89.98935,0.0,11/17/0837 +-3.07124,48.33723,6375,8,30,20,31,49,3.75,27.5,fr,48790,127,2061146,1,1,Active Shallow Crust,0.0,89.98935,0.0,08/30/6375 +-3.07124,48.33723,5423,6,1,2,17,48,3.75,5.0,fr,48791,108,2061147,1,2,Active Shallow Crust,240.0092,58.01725,0.0,06/01/5423 +-3.07124,48.33723,2299,12,29,18,42,10,3.75,5.0,fr,48792,45,2061147,1,2,Active Shallow Crust,240.0092,58.01725,0.0,12/29/2299 +-3.07124,48.33723,3565,10,30,23,24,43,3.85,5.0,fr,48793,71,2061159,1,1,Active Shallow Crust,240.0114,57.99774,0.0,10/30/3565 +-3.07124,48.33723,6662,5,30,3,45,5,3.85,15.0,fr,48794,133,2061166,1,1,Active Shallow Crust,128.8953,89.99407,0.0,05/30/6662 +-3.07124,48.33723,7487,12,29,20,53,8,3.95,5.0,fr,48795,149,2061168,1,1,Active Shallow Crust,0.0,89.98943,0.0,12/29/7487 +-3.07124,48.33723,3322,6,24,15,24,7,4.05,5.0,fr,48796,66,2061180,1,1,Active Shallow Crust,0.0,89.99058,0.0,06/24/3322 +-3.07124,48.33723,8470,11,19,23,57,23,4.05,15.0,fr,48797,169,2061181,1,1,Active Shallow Crust,0.0,89.99058,0.0,11/19/8470 +-3.07124,48.33723,7479,5,11,16,49,18,4.05,5.0,fr,48798,149,2061189,1,1,Active Shallow Crust,128.8902,89.99435,0.0,05/11/7479 +-3.07124,48.33723,8382,9,10,6,48,23,4.15,5.0,fr,48799,167,2061192,1,2,Active Shallow Crust,0.0,89.98992,0.0,09/10/8382 +-3.07124,48.33723,6013,2,4,4,46,42,4.15,5.0,fr,48800,120,2061192,1,2,Active Shallow Crust,0.0,89.98992,0.0,02/04/6013 +-3.07124,48.33723,4122,10,23,14,48,33,4.45,5.0,fr,48801,82,2061228,1,1,Active Shallow Crust,0.0,89.99049,0.0,10/23/4122 +-3.07124,48.33723,7388,6,17,14,1,20,4.65,15.0,fr,48802,147,2061259,1,1,Active Shallow Crust,0.0,89.99044,-90.0,06/17/7388 +-3.07124,48.33723,6438,12,22,1,3,12,4.75,5.0,fr,48803,128,2061264,1,2,Active Shallow Crust,0.0,89.9899,0.0,12/22/6438 +-3.07124,48.33723,8682,4,17,17,7,25,4.75,5.0,fr,48804,173,2061264,1,2,Active Shallow Crust,0.0,89.9899,0.0,04/17/8682 +-3.07124,48.33723,3174,3,16,23,0,58,4.85,5.0,fr,48805,63,2061276,1,1,Active Shallow Crust,0.0,89.99024,0.0,03/16/3174 +-3.07124,48.33723,796,12,19,9,58,48,5.75,15.0,fr,48806,15,2061388,1,1,Active Shallow Crust,240.0435,57.99992,0.0,12/19/0796 +-0.80251,46.7713,8662,5,20,19,8,37,3.55,5.0,fr,48807,173,2061600,1,3,Active Shallow Crust,0.0,89.98964,0.0,05/20/8662 +-0.80251,46.7713,8888,2,27,13,44,38,3.55,5.0,fr,48808,177,2061600,1,3,Active Shallow Crust,0.0,89.98964,0.0,02/27/8888 +-0.80251,46.7713,2585,3,31,1,26,53,3.55,5.0,fr,48809,51,2061600,1,3,Active Shallow Crust,0.0,89.98964,0.0,03/31/2585 +-0.80251,46.7713,7786,7,14,9,27,41,3.55,15.0,fr,48810,155,2061601,1,1,Active Shallow Crust,0.0,89.98964,0.0,07/14/7786 +-0.80251,46.7713,46,12,23,7,0,48,3.55,5.0,fr,48811,0,2061603,1,1,Active Shallow Crust,240.0122,57.99814,0.0,12/23/0046 +-0.80251,46.7713,6064,1,16,11,46,8,3.55,15.0,fr,48812,121,2061607,1,1,Active Shallow Crust,0.0,89.99039,-90.0,01/16/6064 +-0.80251,46.7713,483,2,2,14,41,13,3.55,5.0,fr,48813,9,2061609,1,2,Active Shallow Crust,128.8963,89.99352,0.0,02/02/0483 +-0.80251,46.7713,4324,3,8,21,5,24,3.55,5.0,fr,48814,86,2061609,1,2,Active Shallow Crust,128.8963,89.99352,0.0,03/08/4324 +-0.80251,46.7713,1345,10,6,8,34,44,3.65,5.0,fr,48815,26,2061612,1,1,Active Shallow Crust,0.0,89.99,0.0,10/06/1345 +-0.80251,46.7713,9840,12,10,20,14,25,3.65,15.0,fr,48816,196,2061613,1,1,Active Shallow Crust,0.0,89.99,0.0,12/10/9840 +-0.80251,46.7713,1356,7,2,16,9,33,3.65,5.0,fr,48817,27,2061615,1,1,Active Shallow Crust,240.0011,58.01304,0.0,07/02/1356 +-0.80251,46.7713,2150,4,30,2,45,5,3.65,5.0,fr,48818,42,2061618,1,2,Active Shallow Crust,0.0,89.98988,-90.0,04/30/2150 +-0.80251,46.7713,6198,12,30,4,56,5,3.65,5.0,fr,48819,123,2061618,1,2,Active Shallow Crust,0.0,89.98988,-90.0,12/30/6198 +-0.80251,46.7713,9924,8,19,9,23,50,3.65,5.0,fr,48820,198,2061621,1,1,Active Shallow Crust,128.9005,89.96353,0.0,08/19/9924 +-0.80251,46.7713,3141,8,4,4,0,5,3.75,5.0,fr,48821,62,2061624,1,2,Active Shallow Crust,0.0,89.98972,0.0,08/04/3141 +-0.80251,46.7713,4199,1,6,22,26,33,3.75,5.0,fr,48822,83,2061624,1,2,Active Shallow Crust,0.0,89.98972,0.0,01/06/4199 +-0.80251,46.7713,3242,5,13,4,55,13,3.85,5.0,fr,48823,64,2061636,1,1,Active Shallow Crust,0.0,89.99022,0.0,05/13/3242 +-0.80251,46.7713,2758,1,1,8,19,48,3.85,15.0,fr,48824,55,2061637,1,1,Active Shallow Crust,0.0,89.99022,0.0,01/01/2758 +-0.80251,46.7713,809,7,5,23,38,52,3.85,5.0,fr,48825,16,2061642,1,2,Active Shallow Crust,0.0,89.9901,-90.0,07/05/0809 +-0.80251,46.7713,7686,4,24,4,29,31,3.85,5.0,fr,48826,153,2061642,1,2,Active Shallow Crust,0.0,89.9901,-90.0,04/24/7686 +-0.80251,46.7713,8788,12,28,21,41,49,3.85,15.0,fr,48827,175,2061646,1,1,Active Shallow Crust,128.8957,89.99358,0.0,12/28/8788 +-0.80251,46.7713,8272,8,7,22,57,41,3.95,5.0,fr,48828,165,2061654,1,1,Active Shallow Crust,0.0,89.99008,-90.0,08/07/8272 +-0.80251,46.7713,9194,12,14,22,9,50,4.05,5.0,fr,48829,183,2061663,1,1,Active Shallow Crust,240.006,58.00579,0.0,12/14/9194 +-0.80251,46.7713,7371,8,27,13,44,25,4.15,5.0,fr,48830,147,2061678,1,1,Active Shallow Crust,0.0,89.98993,-90.0,08/27/7371 +-0.80251,46.7713,8822,9,19,8,51,42,4.25,5.0,fr,48831,176,2061687,1,2,Active Shallow Crust,240.0076,57.99411,0.0,09/19/8822 +-0.80251,46.7713,9415,11,30,18,22,4,4.25,5.0,fr,48832,188,2061687,1,2,Active Shallow Crust,240.0076,57.99411,0.0,11/30/9415 +-0.80251,46.7713,7101,6,11,20,23,22,4.35,5.0,fr,48833,142,2061696,1,1,Active Shallow Crust,0.0,89.99003,0.0,06/11/7101 +-0.80251,46.7713,6437,7,18,22,19,59,4.45,5.0,fr,48834,128,2061708,1,1,Active Shallow Crust,0.0,89.98989,0.0,07/18/6437 +-0.80251,46.7713,3165,7,18,5,33,12,4.55,15.0,fr,48835,63,2061721,1,1,Active Shallow Crust,0.0,89.9899,0.0,07/18/3165 +-0.80251,46.7713,121,5,26,3,17,56,4.65,5.0,fr,48836,2,2061735,1,1,Active Shallow Crust,240.0109,57.99424,0.0,05/26/0121 +-0.80251,46.7713,673,7,21,3,37,30,4.75,5.0,fr,48837,13,2061750,1,1,Active Shallow Crust,0.0,89.98991,-90.0,07/21/0673 +-0.80251,46.7713,4589,9,24,14,0,22,5.05,5.0,fr,48838,91,2061780,1,1,Active Shallow Crust,0.0,89.99002,0.0,09/24/4589 +-0.80251,46.7713,2289,12,6,4,18,41,5.35,15.0,fr,48839,45,2061826,1,1,Active Shallow Crust,128.8829,89.98808,0.0,12/06/2289 +-0.80251,46.7713,5715,12,6,12,35,14,5.75,5.0,fr,48840,114,2061864,1,1,Active Shallow Crust,0.0,89.98998,0.0,12/06/5715 +0.37933,48.19434,9442,11,7,12,59,45,3.55,5.0,fr,48841,188,2062083,1,1,Active Shallow Crust,240.0123,57.9982,0.0,11/07/9442 +0.37933,48.19434,236,4,17,18,36,26,3.65,27.5,fr,48842,4,2062097,1,1,Active Shallow Crust,240.0013,58.01282,0.0,04/17/0236 +0.37933,48.19434,3049,2,19,4,41,51,3.95,5.0,fr,48843,60,2062128,1,1,Active Shallow Crust,0.0,89.98993,0.0,02/19/3049 +0.37933,48.19434,2186,8,27,13,44,8,4.15,27.5,fr,48844,43,2062160,1,1,Active Shallow Crust,0.0,89.98999,-90.0,08/27/2186 +0.37933,48.19434,1501,7,5,14,44,52,4.25,5.0,fr,48845,30,2062164,1,1,Active Shallow Crust,0.0,89.99005,0.0,07/05/1501 +0.37933,48.19434,6202,6,7,17,16,1,4.35,5.0,fr,48846,124,2062176,1,1,Active Shallow Crust,0.0,89.98997,0.0,06/07/6202 +0.37933,48.19434,3996,7,6,7,0,47,4.55,5.0,fr,48847,79,2062200,1,1,Active Shallow Crust,0.0,89.99004,0.0,07/06/3996 +0.37933,48.19434,7702,12,17,16,59,37,5.05,15.0,fr,48848,154,2062261,1,1,Active Shallow Crust,0.0,89.98998,0.0,12/17/7702 +0.37933,48.19434,3589,3,25,17,37,31,5.15,5.0,fr,48849,71,2062272,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/25/3589 +0.37933,48.19434,9812,6,29,7,48,52,5.45,27.5,fr,48850,196,2062319,1,1,Active Shallow Crust,128.8776,89.98899,0.0,06/29/9812 +-0.36922,49.07775,6102,10,19,13,52,27,3.55,15.0,fr,48851,122,2062561,1,1,Active Shallow Crust,0.0,89.99009,0.0,10/19/6102 +-0.36922,49.07775,9431,7,12,4,32,56,3.55,5.0,fr,48852,188,2062563,1,1,Active Shallow Crust,240.0124,57.99826,0.0,07/12/9431 +-0.36922,49.07775,8309,7,7,17,32,19,3.65,5.0,fr,48853,166,2062572,1,1,Active Shallow Crust,0.0,89.99007,0.0,07/07/8309 +-0.36922,49.07775,8910,5,12,6,29,25,3.65,15.0,fr,48854,178,2062573,1,1,Active Shallow Crust,0.0,89.99007,0.0,05/12/8910 +-0.36922,49.07775,6714,3,17,17,38,12,3.65,5.0,fr,48855,134,2062575,1,1,Active Shallow Crust,240.0013,58.01295,0.0,03/17/6714 +-0.36922,49.07775,6874,2,15,18,13,44,3.75,15.0,fr,48856,137,2062585,1,1,Active Shallow Crust,0.0,89.99017,0.0,02/15/6874 +-0.36922,49.07775,6044,7,16,18,39,18,3.75,27.5,fr,48857,120,2062586,1,1,Active Shallow Crust,0.0,89.99017,0.0,07/16/6044 +-0.36922,49.07775,5038,4,1,15,18,37,3.75,5.0,fr,48858,100,2062587,1,1,Active Shallow Crust,240.0086,58.01764,0.0,04/01/5038 +-0.36922,49.07775,7144,2,11,14,53,18,3.75,15.0,fr,48859,142,2062591,1,1,Active Shallow Crust,0.0,89.99005,-90.0,02/11/7144 +-0.36922,49.07775,5614,8,1,23,6,26,3.85,5.0,fr,48860,112,2062596,1,3,Active Shallow Crust,0.0,89.99007,0.0,08/01/5614 +-0.36922,49.07775,4660,2,13,10,20,49,3.85,5.0,fr,48861,93,2062596,1,3,Active Shallow Crust,0.0,89.99007,0.0,02/13/4660 +-0.36922,49.07775,8412,6,28,1,17,31,3.85,5.0,fr,48862,168,2062596,1,3,Active Shallow Crust,0.0,89.99007,0.0,06/28/8412 +-0.36922,49.07775,9474,4,20,6,49,30,3.95,5.0,fr,48863,189,2062611,1,1,Active Shallow Crust,240.0202,58.00506,0.0,04/20/9474 +-0.36922,49.07775,327,9,17,20,52,52,3.95,15.0,fr,48864,6,2062618,1,1,Active Shallow Crust,128.9001,89.99375,0.0,09/17/0327 +-0.36922,49.07775,4327,5,29,0,11,52,4.05,5.0,fr,48865,86,2062620,1,1,Active Shallow Crust,0.0,89.99002,0.0,05/29/4327 +-0.36922,49.07775,4616,4,16,4,11,38,4.25,5.0,fr,48866,92,2062644,1,1,Active Shallow Crust,0.0,89.99004,0.0,04/16/4616 +-0.36922,49.07775,9830,8,30,14,7,39,4.35,5.0,fr,48867,196,2062656,1,1,Active Shallow Crust,0.0,89.98997,0.0,08/30/9830 +-0.36922,49.07775,4976,3,17,18,41,54,4.55,15.0,fr,48868,99,2062681,1,1,Active Shallow Crust,0.0,89.98994,0.0,03/17/4976 +-4.73262,49.67158,9367,9,25,6,15,15,3.55,5.0,fr,48869,187,2063046,1,1,Active Shallow Crust,0.0,89.98679,-90.0,09/25/9367 +-4.73262,49.67158,1825,8,14,16,47,6,4.05,5.0,fr,48870,36,2063100,1,1,Active Shallow Crust,0.0,89.98899,0.0,08/14/1825 +0.24718,45.36845,684,12,24,6,26,12,3.55,5.0,fr,48871,13,2064003,1,1,Active Shallow Crust,240.012,57.99814,0.0,12/24/0684 +0.24718,45.36845,5438,12,5,23,55,0,3.65,5.0,fr,48872,108,2064012,1,1,Active Shallow Crust,0.0,89.98994,0.0,12/05/5438 +0.24718,45.36845,8213,8,13,18,38,22,3.75,5.0,fr,48873,164,2064024,1,1,Active Shallow Crust,0.0,89.98997,0.0,08/13/8213 +0.24718,45.36845,632,10,18,14,43,59,3.85,5.0,fr,48874,12,2064036,1,1,Active Shallow Crust,0.0,89.98997,0.0,10/18/0632 +0.24718,45.36845,8905,5,7,23,18,42,4.05,15.0,fr,48875,178,2064064,1,1,Active Shallow Crust,240.0058,58.00574,0.0,05/07/8905 +0.24718,45.36845,4772,1,28,14,45,33,4.35,5.0,fr,48876,95,2064102,1,1,Active Shallow Crust,0.0,89.99001,-90.0,01/28/4772 +8.88348,49.59235,2581,11,17,16,14,31,3.55,15.0,fr,48877,51,2064961,1,2,Active Shallow Crust,0.0,89.98692,0.0,11/17/2581 +8.88348,49.59235,3260,10,11,23,32,12,3.55,15.0,fr,48878,65,2064961,1,2,Active Shallow Crust,0.0,89.98692,0.0,10/11/3260 +8.88348,49.59235,8668,9,25,13,31,5,3.55,5.0,fr,48879,173,2064963,1,1,Active Shallow Crust,240.0116,57.99948,0.0,09/25/8668 +8.88348,49.59235,3997,2,17,2,26,32,3.65,5.0,fr,48880,79,2064981,1,1,Active Shallow Crust,128.8976,89.96358,0.0,02/17/3997 +8.88348,49.59235,313,1,19,21,14,54,3.85,15.0,fr,48881,6,2064997,1,1,Active Shallow Crust,0.0,89.99075,0.0,01/19/0313 +8.88348,49.59235,6749,6,6,19,24,32,3.95,5.0,fr,48882,134,2065017,1,1,Active Shallow Crust,128.9,89.99587,0.0,06/06/6749 +8.88348,49.59235,877,1,20,3,58,3,4.05,5.0,fr,48883,17,2065020,1,2,Active Shallow Crust,0.0,89.99265,0.0,01/20/0877 +8.88348,49.59235,6111,10,18,21,33,46,4.05,5.0,fr,48884,122,2065020,1,2,Active Shallow Crust,0.0,89.99265,0.0,10/18/6111 +8.88348,49.59235,5493,10,21,4,31,24,4.05,15.0,fr,48885,109,2065021,1,1,Active Shallow Crust,0.0,89.99265,0.0,10/21/5493 +8.88348,49.59235,7631,10,10,7,7,12,4.05,27.5,fr,48886,152,2065025,1,1,Active Shallow Crust,240.0061,58.00558,0.0,10/10/7631 +8.88348,49.59235,5182,7,1,6,9,26,4.65,15.0,fr,48887,103,2065093,1,1,Active Shallow Crust,0.0,89.98895,0.0,07/01/5182 +7.48667,50.315,8673,7,1,14,14,3,3.55,5.0,fr,48888,173,2065440,1,6,Active Shallow Crust,0.0,89.98712,0.0,07/01/8673 +7.48667,50.315,1383,1,15,11,56,44,3.55,5.0,fr,48889,27,2065440,1,6,Active Shallow Crust,0.0,89.98712,0.0,01/15/1383 +7.48667,50.315,1812,10,27,13,47,30,3.55,5.0,fr,48890,36,2065440,1,6,Active Shallow Crust,0.0,89.98712,0.0,10/27/1812 +7.48667,50.315,537,5,6,11,25,40,3.55,5.0,fr,48891,10,2065440,1,6,Active Shallow Crust,0.0,89.98712,0.0,05/06/0537 +7.48667,50.315,3915,3,27,14,24,41,3.55,5.0,fr,48892,78,2065440,1,6,Active Shallow Crust,0.0,89.98712,0.0,03/27/3915 +7.48667,50.315,3591,11,25,14,30,41,3.55,5.0,fr,48893,71,2065440,1,6,Active Shallow Crust,0.0,89.98712,0.0,11/25/3591 +7.48667,50.315,8863,12,26,7,12,8,3.55,27.5,fr,48894,177,2065442,1,2,Active Shallow Crust,0.0,89.98712,0.0,12/26/8863 +7.48667,50.315,9040,2,7,18,6,39,3.55,27.5,fr,48895,180,2065442,1,2,Active Shallow Crust,0.0,89.98712,0.0,02/07/9040 +7.48667,50.315,9186,11,10,11,51,56,3.55,15.0,fr,48896,183,2065444,1,1,Active Shallow Crust,240.0124,57.99841,0.0,11/10/9186 +7.48667,50.315,7591,5,4,10,59,51,3.55,27.5,fr,48897,151,2065445,1,1,Active Shallow Crust,240.0124,57.99832,0.0,05/04/7591 +7.48667,50.315,1361,5,14,20,57,18,3.65,5.0,fr,48898,27,2065452,1,3,Active Shallow Crust,0.0,89.98853,0.0,05/14/1361 +7.48667,50.315,1130,2,8,20,33,21,3.65,5.0,fr,48899,22,2065452,1,3,Active Shallow Crust,0.0,89.98853,0.0,02/08/1130 +7.48667,50.315,2420,6,1,17,49,31,3.65,5.0,fr,48900,48,2065452,1,3,Active Shallow Crust,0.0,89.98853,0.0,06/01/2420 +7.48667,50.315,1692,7,30,4,17,7,3.65,15.0,fr,48901,33,2065453,1,2,Active Shallow Crust,0.0,89.98853,0.0,07/30/1692 +7.48667,50.315,6295,1,29,21,1,49,3.65,15.0,fr,48902,125,2065453,1,2,Active Shallow Crust,0.0,89.98853,0.0,01/29/6295 +7.48667,50.315,3441,3,21,6,37,44,3.65,27.5,fr,48903,68,2065454,1,1,Active Shallow Crust,0.0,89.98853,0.0,03/21/3441 +7.48667,50.315,43,4,2,20,11,42,3.65,5.0,fr,48904,0,2065455,1,1,Active Shallow Crust,240.002,58.01228,0.0,04/02/0043 +7.48667,50.315,9260,2,27,20,0,58,3.65,5.0,fr,48905,185,2065458,1,2,Active Shallow Crust,0.0,89.98839,-90.0,02/27/9260 +7.48667,50.315,4159,10,19,17,38,58,3.65,5.0,fr,48906,83,2065458,1,2,Active Shallow Crust,0.0,89.98839,-90.0,10/19/4159 +7.48667,50.315,4005,11,10,7,3,58,3.65,15.0,fr,48907,80,2065459,1,1,Active Shallow Crust,0.0,89.98839,-90.0,11/10/4005 +7.48667,50.315,7208,5,4,12,27,29,3.75,5.0,fr,48908,144,2065464,1,5,Active Shallow Crust,0.0,89.98977,0.0,05/04/7208 +7.48667,50.315,2265,4,17,14,6,53,3.75,5.0,fr,48909,45,2065464,1,5,Active Shallow Crust,0.0,89.98977,0.0,04/17/2265 +7.48667,50.315,3103,11,16,22,23,35,3.75,5.0,fr,48910,62,2065464,1,5,Active Shallow Crust,0.0,89.98977,0.0,11/16/3103 +7.48667,50.315,2048,2,5,23,54,16,3.75,5.0,fr,48911,40,2065464,1,5,Active Shallow Crust,0.0,89.98977,0.0,02/05/2048 +7.48667,50.315,8759,11,10,23,46,10,3.75,5.0,fr,48912,175,2065464,1,5,Active Shallow Crust,0.0,89.98977,0.0,11/10/8759 +7.48667,50.315,5041,1,22,4,57,1,3.75,15.0,fr,48913,100,2065465,1,1,Active Shallow Crust,0.0,89.98977,0.0,01/22/5041 +7.48667,50.315,178,8,11,14,39,40,3.75,5.0,fr,48914,3,2065467,1,1,Active Shallow Crust,240.0093,58.01756,0.0,08/11/0178 +7.48667,50.315,8235,2,1,1,29,1,3.75,5.0,fr,48915,164,2065470,1,2,Active Shallow Crust,0.0,89.98965,-90.0,02/01/8235 +7.48667,50.315,4031,4,13,4,51,2,3.75,5.0,fr,48916,80,2065470,1,2,Active Shallow Crust,0.0,89.98965,-90.0,04/13/4031 +7.48667,50.315,8168,12,20,2,21,42,3.85,27.5,fr,48917,163,2065478,1,1,Active Shallow Crust,0.0,89.99088,0.0,12/20/8168 +7.48667,50.315,4188,10,2,20,59,39,3.85,5.0,fr,48918,83,2065479,1,2,Active Shallow Crust,240.0114,57.99804,0.0,10/02/4188 +7.48667,50.315,479,5,1,22,21,57,3.85,5.0,fr,48919,9,2065479,1,2,Active Shallow Crust,240.0114,57.99804,0.0,05/01/0479 +7.48667,50.315,6695,2,14,3,59,39,3.85,5.0,fr,48920,133,2065485,1,1,Active Shallow Crust,128.895,89.99316,0.0,02/14/6695 +7.48667,50.315,7225,10,21,5,43,24,3.85,15.0,fr,48921,144,2065486,1,1,Active Shallow Crust,128.895,89.99316,0.0,10/21/7225 +7.48667,50.315,9831,9,12,14,27,10,3.95,5.0,fr,48922,196,2065488,1,5,Active Shallow Crust,0.0,89.99187,0.0,09/12/9831 +7.48667,50.315,1734,2,11,3,19,43,3.95,5.0,fr,48923,34,2065488,1,5,Active Shallow Crust,0.0,89.99187,0.0,02/11/1734 +7.48667,50.315,1311,6,1,21,52,13,3.95,5.0,fr,48924,26,2065488,1,5,Active Shallow Crust,0.0,89.99187,0.0,06/01/1311 +7.48667,50.315,1487,7,14,3,50,52,3.95,5.0,fr,48925,29,2065488,1,5,Active Shallow Crust,0.0,89.99187,0.0,07/14/1487 +7.48667,50.315,8729,6,8,1,8,20,3.95,5.0,fr,48926,174,2065488,1,5,Active Shallow Crust,0.0,89.99187,0.0,06/08/8729 +7.48667,50.315,9646,11,18,14,27,5,3.95,5.0,fr,48927,192,2065491,1,1,Active Shallow Crust,240.0201,58.00571,0.0,11/18/9646 +7.48667,50.315,2889,11,5,15,4,24,4.05,15.0,fr,48928,57,2065501,1,1,Active Shallow Crust,0.0,89.98914,0.0,11/05/2889 +7.48667,50.315,8974,12,31,13,21,17,4.15,5.0,fr,48929,179,2065512,1,2,Active Shallow Crust,0.0,89.99032,0.0,12/31/8974 +7.48667,50.315,9215,4,3,7,55,48,4.15,5.0,fr,48930,184,2065512,1,2,Active Shallow Crust,0.0,89.99032,0.0,04/03/9215 +7.48667,50.315,9358,1,22,19,43,42,4.15,5.0,fr,48931,187,2065515,1,1,Active Shallow Crust,240.0087,57.99771,0.0,01/22/9358 +7.48667,50.315,3065,2,6,21,45,42,4.15,15.0,fr,48932,61,2065519,1,1,Active Shallow Crust,0.0,89.9902,-90.0,02/06/3065 +7.48667,50.315,337,12,24,21,22,14,4.15,27.5,fr,48933,6,2065520,1,1,Active Shallow Crust,0.0,89.9902,-90.0,12/24/0337 +7.48667,50.315,7876,10,27,18,9,54,4.25,15.0,fr,48934,157,2065528,1,1,Active Shallow Crust,240.0079,57.9943,0.0,10/27/7876 +7.48667,50.315,9438,12,21,20,58,2,4.45,5.0,fr,48935,188,2065548,1,1,Active Shallow Crust,0.0,89.99086,0.0,12/21/9438 +7.48667,50.315,8272,10,5,19,6,52,4.45,5.0,fr,48936,165,2065554,1,1,Active Shallow Crust,0.0,89.99075,-90.0,10/05/8272 +7.48667,50.315,3405,12,21,12,39,36,4.55,15.0,fr,48937,68,2065561,1,1,Active Shallow Crust,0.0,89.98981,0.0,12/21/3405 +7.48667,50.315,4098,6,25,22,33,1,4.55,5.0,fr,48938,81,2065566,1,2,Active Shallow Crust,0.0,89.9897,-90.0,06/25/4098 +7.48667,50.315,2956,8,2,4,29,34,4.55,5.0,fr,48939,59,2065566,1,2,Active Shallow Crust,0.0,89.9897,-90.0,08/02/2956 +7.48667,50.315,4740,3,3,21,45,13,4.65,5.0,fr,48940,94,2065572,1,2,Active Shallow Crust,0.0,89.98911,0.0,03/03/4740 +7.48667,50.315,7351,7,31,17,50,40,4.65,5.0,fr,48941,147,2065572,1,2,Active Shallow Crust,0.0,89.98911,0.0,07/31/7351 +7.48667,50.315,1929,9,4,15,18,57,4.75,15.0,fr,48942,38,2065588,1,1,Active Shallow Crust,240.0088,58.0048,0.0,09/04/1929 +7.48667,50.315,5766,4,29,13,14,17,4.95,15.0,fr,48943,115,2065609,1,1,Active Shallow Crust,0.0,89.98972,0.0,04/29/5766 +7.48667,50.315,3950,11,23,4,57,57,5.25,15.0,fr,48944,78,2065645,1,1,Active Shallow Crust,0.0,89.98999,0.0,11/23/3950 +7.48667,50.315,8560,7,26,23,35,15,5.55,5.0,fr,48945,171,2065680,1,1,Active Shallow Crust,0.0,89.98969,0.0,07/26/8560 +-3.24215,42.53105,5367,7,28,14,42,2,3.55,5.0,fr,48946,107,2065926,1,1,Active Shallow Crust,0.0,89.98872,-90.0,07/28/5367 +-3.24215,42.53105,5765,12,1,18,38,33,3.65,5.0,fr,48947,115,2065932,1,2,Active Shallow Crust,0.0,89.99007,0.0,12/01/5765 +-3.24215,42.53105,704,10,16,3,28,51,3.65,5.0,fr,48948,14,2065932,1,2,Active Shallow Crust,0.0,89.99007,0.0,10/16/0704 +-3.24215,42.53105,7523,9,19,19,34,55,3.65,5.0,fr,48949,150,2065935,1,1,Active Shallow Crust,240.0009,58.01277,0.0,09/19/7523 +-3.24215,42.53105,2078,3,26,6,1,37,3.95,27.5,fr,48950,41,2065970,1,1,Active Shallow Crust,0.0,89.99062,0.0,03/26/2078 +-0.81185,44.04987,7032,11,23,22,47,15,3.85,15.0,fr,48951,140,2066437,1,1,Active Shallow Crust,0.0,89.98974,0.0,11/23/7032 +-0.81185,44.04987,3627,1,8,23,39,30,4.25,15.0,fr,48952,72,2066488,1,1,Active Shallow Crust,240.007,57.99401,0.0,01/08/3627 +0.62785,51.48743,6618,8,2,16,54,35,3.55,5.0,fr,48953,132,2066880,1,2,Active Shallow Crust,0.0,89.9898,0.0,08/02/6618 +0.62785,51.48743,1802,4,27,11,44,35,3.55,5.0,fr,48954,36,2066880,1,2,Active Shallow Crust,0.0,89.9898,0.0,04/27/1802 +0.62785,51.48743,8130,2,3,18,24,57,3.75,15.0,fr,48955,162,2066905,1,1,Active Shallow Crust,0.0,89.99002,0.0,02/03/8130 +0.62785,51.48743,2569,5,14,14,34,43,3.75,5.0,fr,48956,51,2066913,1,1,Active Shallow Crust,128.896,89.96736,0.0,05/14/2569 +0.62785,51.48743,1441,4,7,8,7,11,3.95,15.0,fr,48957,28,2066929,1,1,Active Shallow Crust,0.0,89.9901,0.0,04/07/1441 +0.62785,51.48743,3398,1,13,3,35,8,4.05,5.0,fr,48958,67,2066940,1,1,Active Shallow Crust,0.0,89.98985,0.0,01/13/3398 +0.62785,51.48743,1087,12,7,21,18,27,5.55,5.0,fr,48959,21,2067120,1,1,Active Shallow Crust,0.0,89.99003,0.0,12/07/1087 +5.58201,47.17721,2883,7,16,4,4,42,3.65,5.0,fr,48960,57,2067375,1,1,Active Shallow Crust,240.0006,58.01298,0.0,07/16/2883 +5.58201,47.17721,5802,4,3,2,30,42,3.75,5.0,fr,48961,116,2067384,1,2,Active Shallow Crust,0.0,89.98911,0.0,04/03/5802 +5.58201,47.17721,1509,8,26,1,37,17,3.75,5.0,fr,48962,30,2067384,1,2,Active Shallow Crust,0.0,89.98911,0.0,08/26/1509 +5.58201,47.17721,7873,9,5,14,52,43,3.95,5.0,fr,48963,157,2067408,1,2,Active Shallow Crust,0.0,89.99135,0.0,09/05/7873 +5.58201,47.17721,880,8,23,20,6,44,3.95,5.0,fr,48964,17,2067408,1,2,Active Shallow Crust,0.0,89.99135,0.0,08/23/0880 +5.58201,47.17721,2579,1,3,11,27,42,3.95,15.0,fr,48965,51,2067409,1,1,Active Shallow Crust,0.0,89.99135,0.0,01/03/2579 +5.58201,47.17721,637,8,24,14,40,23,3.95,15.0,fr,48966,12,2067412,1,1,Active Shallow Crust,240.0199,58.0052,0.0,08/24/0637 +5.58201,47.17721,2133,5,28,16,11,1,4.05,5.0,fr,48967,42,2067420,1,1,Active Shallow Crust,0.0,89.98843,0.0,05/28/2133 +5.58201,47.17721,3246,1,15,12,50,57,4.05,27.5,fr,48968,64,2067422,1,1,Active Shallow Crust,0.0,89.98843,0.0,01/15/3246 +5.58201,47.17721,7120,9,20,9,44,17,4.15,5.0,fr,48969,142,2067432,1,1,Active Shallow Crust,0.0,89.98969,0.0,09/20/7120 +5.58201,47.17721,5325,9,11,1,32,45,4.25,5.0,fr,48970,106,2067444,1,1,Active Shallow Crust,0.0,89.99081,0.0,09/11/5325 +5.58201,47.17721,7040,7,30,20,1,36,4.25,15.0,fr,48971,140,2067445,1,1,Active Shallow Crust,0.0,89.99081,0.0,07/30/7040 +5.58201,47.17721,1998,7,23,8,14,47,4.25,5.0,fr,48972,39,2067450,1,1,Active Shallow Crust,0.0,89.99071,-90.0,07/23/1998 +5.58201,47.17721,85,11,18,12,12,8,4.55,5.0,fr,48973,1,2067480,1,1,Active Shallow Crust,0.0,89.98916,0.0,11/18/0085 +5.58201,47.17721,8406,1,5,17,4,31,4.65,27.5,fr,48974,168,2067494,1,1,Active Shallow Crust,0.0,89.99034,0.0,01/05/8406 +-2.90933,43.26976,2226,9,22,6,57,3,3.55,5.0,fr,48975,44,2067849,1,1,Active Shallow Crust,128.8963,89.99449,0.0,09/22/2226 +-2.90933,43.26976,7948,1,13,23,38,16,3.65,15.0,fr,48976,158,2067853,1,1,Active Shallow Crust,0.0,89.99018,0.0,01/13/7948 +-2.90933,43.26976,9619,12,29,21,49,39,3.75,5.0,fr,48977,192,2067864,1,1,Active Shallow Crust,0.0,89.99125,0.0,12/29/9619 +-2.90933,43.26976,2114,7,1,14,43,44,3.75,15.0,fr,48978,42,2067865,1,1,Active Shallow Crust,0.0,89.99125,0.0,07/01/2114 +-2.90933,43.26976,7352,9,27,22,10,40,3.75,27.5,fr,48979,147,2067866,1,1,Active Shallow Crust,0.0,89.99125,0.0,09/27/7352 +-2.90933,43.26976,1586,9,14,15,41,48,3.75,5.0,fr,48980,31,2067870,1,1,Active Shallow Crust,0.0,89.99115,-90.0,09/14/1586 +-2.90933,43.26976,3875,5,9,4,3,50,3.75,5.0,fr,48981,77,2067873,1,1,Active Shallow Crust,128.8968,89.96744,0.0,05/09/3875 +-2.90933,43.26976,93,12,30,11,32,4,4.15,15.0,fr,48982,1,2067922,1,2,Active Shallow Crust,128.8984,89.99356,0.0,12/30/0093 +-2.90933,43.26976,3243,6,9,4,16,27,4.15,15.0,fr,48983,64,2067922,1,2,Active Shallow Crust,128.8984,89.99356,0.0,06/09/3243 +-2.90933,43.26976,8867,2,4,22,0,43,4.25,27.5,fr,48984,177,2067926,1,1,Active Shallow Crust,0.0,89.99016,0.0,02/04/8867 +-2.90933,43.26976,7196,2,21,17,30,55,4.65,5.0,fr,48985,143,2067972,1,1,Active Shallow Crust,0.0,89.98965,0.0,02/21/7196 +-2.90933,43.26976,1449,10,25,11,12,55,4.75,27.5,fr,48986,28,2067986,1,1,Active Shallow Crust,0.0,89.98985,0.0,10/25/1449 +-2.90933,43.26976,1010,9,26,9,27,28,5.45,15.0,fr,48987,20,2068075,1,1,Active Shallow Crust,0.0,89.99,-90.0,09/26/1010 +-2.90933,43.26976,6676,1,27,18,39,2,5.75,5.0,fr,48988,133,2068113,1,1,Active Shallow Crust,128.8744,89.98853,0.0,01/27/6676 +4.0728,46.32374,5026,10,2,11,34,42,3.55,5.0,fr,48989,100,2068320,1,1,Active Shallow Crust,0.0,89.99303,0.0,10/02/5026 +4.0728,46.32374,7091,12,16,7,33,50,3.85,15.0,fr,48990,141,2068357,1,1,Active Shallow Crust,0.0,89.99014,0.0,12/16/7091 +4.0728,46.32374,2135,12,5,0,54,38,3.95,5.0,fr,48991,42,2068368,1,1,Active Shallow Crust,0.0,89.99121,0.0,12/05/2135 +4.0728,46.32374,6917,5,20,13,49,58,4.25,5.0,fr,48992,138,2068404,1,1,Active Shallow Crust,0.0,89.99067,0.0,05/20/6917 +4.0728,46.32374,7775,7,18,9,36,17,5.95,5.0,fr,48993,155,2068608,1,1,Active Shallow Crust,0.0,89.98988,0.0,07/18/7775 +5.76368,43.26618,2520,12,2,1,54,36,3.55,5.0,fr,48994,50,2068800,1,1,Active Shallow Crust,0.0,89.99266,0.0,12/02/2520 +5.76368,43.26618,620,10,14,20,27,30,3.75,15.0,fr,48995,12,2068831,1,1,Active Shallow Crust,0.0,89.9882,-90.0,10/14/0620 +5.76368,43.26618,4686,6,15,16,8,5,3.85,5.0,fr,48996,93,2068836,1,1,Active Shallow Crust,0.0,89.9896,0.0,06/15/4686 +5.76368,43.26618,9474,6,25,17,9,15,4.15,5.0,fr,48997,189,2068872,1,1,Active Shallow Crust,0.0,89.98896,0.0,06/25/9474 +5.76368,43.26618,3748,6,10,9,8,18,4.75,15.0,fr,48998,74,2068945,1,1,Active Shallow Crust,0.0,89.99078,0.0,06/10/3748 +5.32853,49.30062,2929,8,28,21,8,13,3.65,5.0,fr,48999,58,2069292,1,1,Active Shallow Crust,0.0,89.98828,0.0,08/28/2929 +-0.52544,44.62344,1525,7,16,2,47,38,3.65,5.0,fr,49000,30,2070252,1,1,Active Shallow Crust,0.0,89.98961,0.0,07/16/1525 +-0.52544,44.62344,7485,5,8,8,35,57,3.85,15.0,fr,49001,149,2070277,1,1,Active Shallow Crust,0.0,89.98984,0.0,05/08/7485 +3.03136,43.81262,8037,10,26,18,35,11,3.55,5.0,fr,49002,160,2070726,1,1,Active Shallow Crust,0.0,89.98896,-90.0,10/26/8037 +3.03136,43.81262,6867,2,26,19,39,32,3.65,5.0,fr,49003,137,2070732,1,1,Active Shallow Crust,0.0,89.99027,0.0,02/26/6867 +3.03136,43.81262,915,10,24,8,37,47,3.75,5.0,fr,49004,18,2070744,1,1,Active Shallow Crust,0.0,89.99133,0.0,10/24/0915 +3.03136,43.81262,2523,6,24,10,50,44,4.25,5.0,fr,49005,50,2070804,1,1,Active Shallow Crust,0.0,89.99025,0.0,06/24/2523 +7.74364,48.58858,6868,10,21,10,20,6,3.55,5.0,fr,49006,137,2071680,1,3,Active Shallow Crust,0.0,89.99333,0.0,10/21/6868 +7.74364,48.58858,7573,5,14,6,30,34,3.55,5.0,fr,49007,151,2071680,1,3,Active Shallow Crust,0.0,89.99333,0.0,05/14/7573 +7.74364,48.58858,9910,4,20,11,17,27,3.55,5.0,fr,49008,198,2071680,1,3,Active Shallow Crust,0.0,89.99333,0.0,04/20/9910 +7.74364,48.58858,4857,10,10,20,33,22,3.55,5.0,fr,49009,97,2071683,1,2,Active Shallow Crust,240.0129,57.99812,0.0,10/10/4857 +7.74364,48.58858,6778,11,13,23,12,21,3.55,5.0,fr,49010,135,2071683,1,2,Active Shallow Crust,240.0129,57.99812,0.0,11/13/6778 +7.74364,48.58858,7945,5,19,5,35,4,3.55,5.0,fr,49011,158,2071686,1,2,Active Shallow Crust,0.0,89.99326,-90.0,05/19/7945 +7.74364,48.58858,8133,9,2,21,25,4,3.55,5.0,fr,49012,162,2071686,1,2,Active Shallow Crust,0.0,89.99326,-90.0,09/02/8133 +7.74364,48.58858,6108,12,26,3,38,45,3.65,5.0,fr,49013,122,2071692,1,4,Active Shallow Crust,0.0,89.98811,0.0,12/26/6108 +7.74364,48.58858,1181,2,5,4,51,59,3.65,5.0,fr,49014,23,2071692,1,4,Active Shallow Crust,0.0,89.98811,0.0,02/05/1181 +7.74364,48.58858,7623,6,14,5,36,45,3.65,5.0,fr,49015,152,2071692,1,4,Active Shallow Crust,0.0,89.98811,0.0,06/14/7623 +7.74364,48.58858,2729,11,24,19,57,42,3.65,5.0,fr,49016,54,2071692,1,4,Active Shallow Crust,0.0,89.98811,0.0,11/24/2729 +7.74364,48.58858,7141,9,21,0,24,43,3.65,15.0,fr,49017,142,2071693,1,1,Active Shallow Crust,0.0,89.98811,0.0,09/21/7141 +7.74364,48.58858,554,12,23,5,45,4,3.65,5.0,fr,49018,11,2071695,1,1,Active Shallow Crust,240.0012,58.01336,0.0,12/23/0554 +7.74364,48.58858,2674,10,21,18,34,40,3.65,15.0,fr,49019,53,2071696,1,1,Active Shallow Crust,240.0012,58.01336,0.0,10/21/2674 +7.74364,48.58858,922,5,26,15,59,45,3.65,5.0,fr,49020,18,2071701,1,1,Active Shallow Crust,128.9007,89.96356,0.0,05/26/0922 +7.74364,48.58858,5427,12,25,2,7,41,3.75,5.0,fr,49021,108,2071704,1,1,Active Shallow Crust,0.0,89.9894,0.0,12/25/5427 +7.74364,48.58858,5077,11,24,15,34,39,3.75,15.0,fr,49022,101,2071705,1,2,Active Shallow Crust,0.0,89.9894,0.0,11/24/5077 +7.74364,48.58858,308,6,8,22,34,25,3.75,15.0,fr,49023,6,2071705,1,2,Active Shallow Crust,0.0,89.9894,0.0,06/08/0308 +7.74364,48.58858,3774,10,1,23,44,30,3.75,5.0,fr,49024,75,2071707,1,1,Active Shallow Crust,240.0085,58.01815,0.0,10/01/3774 +7.74364,48.58858,425,12,5,15,14,10,3.85,5.0,fr,49025,8,2071716,1,2,Active Shallow Crust,0.0,89.99055,0.0,12/05/0425 +7.74364,48.58858,4768,4,25,12,28,58,3.85,5.0,fr,49026,95,2071716,1,2,Active Shallow Crust,0.0,89.99055,0.0,04/25/4768 +7.74364,48.58858,1225,5,11,11,19,6,3.85,15.0,fr,49027,24,2071720,1,2,Active Shallow Crust,240.0117,57.99751,0.0,05/11/1225 +7.74364,48.58858,1145,8,8,22,31,59,3.85,15.0,fr,49028,22,2071720,1,2,Active Shallow Crust,240.0117,57.99751,0.0,08/08/1145 +7.74364,48.58858,8600,12,17,16,26,25,3.85,5.0,fr,49029,171,2071725,1,2,Active Shallow Crust,128.8965,89.99292,0.0,12/17/8600 +7.74364,48.58858,398,1,25,7,42,2,3.85,5.0,fr,49030,7,2071725,1,2,Active Shallow Crust,128.8965,89.99292,0.0,01/25/0398 +7.74364,48.58858,2107,1,10,1,37,1,3.85,15.0,fr,49031,42,2071726,1,1,Active Shallow Crust,128.8965,89.99292,0.0,01/10/2107 +7.74364,48.58858,8066,10,14,6,52,29,3.95,5.0,fr,49032,161,2071728,1,3,Active Shallow Crust,0.0,89.99158,0.0,10/14/8066 +7.74364,48.58858,5004,4,1,18,40,21,3.95,5.0,fr,49033,100,2071728,1,3,Active Shallow Crust,0.0,89.99158,0.0,04/01/5004 +7.74364,48.58858,2449,10,5,21,12,50,3.95,5.0,fr,49034,48,2071728,1,3,Active Shallow Crust,0.0,89.99158,0.0,10/05/2449 +7.74364,48.58858,9564,3,15,3,54,38,3.95,15.0,fr,49035,191,2071729,1,1,Active Shallow Crust,0.0,89.99158,0.0,03/15/9564 +7.74364,48.58858,797,5,10,12,44,30,3.95,15.0,fr,49036,15,2071732,1,1,Active Shallow Crust,240.0202,58.00514,0.0,05/10/0797 +7.74364,48.58858,8719,11,15,5,57,33,3.95,5.0,fr,49037,174,2071737,1,1,Active Shallow Crust,128.8991,89.99369,0.0,11/15/8719 +7.74364,48.58858,6686,10,1,21,4,26,4.05,5.0,fr,49038,133,2071740,1,5,Active Shallow Crust,0.0,89.98875,0.0,10/01/6686 +7.74364,48.58858,7195,8,31,12,54,44,4.05,5.0,fr,49039,143,2071740,1,5,Active Shallow Crust,0.0,89.98875,0.0,08/31/7195 +7.74364,48.58858,3213,1,24,18,30,58,4.05,5.0,fr,49040,64,2071740,1,5,Active Shallow Crust,0.0,89.98875,0.0,01/24/3213 +7.74364,48.58858,842,5,11,0,11,48,4.05,5.0,fr,49041,16,2071740,1,5,Active Shallow Crust,0.0,89.98875,0.0,05/11/0842 +7.74364,48.58858,9020,5,18,9,39,4,4.05,5.0,fr,49042,180,2071740,1,5,Active Shallow Crust,0.0,89.98875,0.0,05/18/9020 +7.74364,48.58858,7808,2,6,18,18,17,4.05,5.0,fr,49043,156,2071743,1,1,Active Shallow Crust,240.0062,58.00613,0.0,02/06/7808 +7.74364,48.58858,109,5,2,19,47,48,4.05,15.0,fr,49044,2,2071750,1,1,Active Shallow Crust,128.8901,89.99438,0.0,05/02/0109 +7.74364,48.58858,8405,8,2,4,20,35,4.15,5.0,fr,49045,168,2071752,1,5,Active Shallow Crust,0.0,89.98997,0.0,08/02/8405 +7.74364,48.58858,4180,10,17,2,38,53,4.15,5.0,fr,49046,83,2071752,1,5,Active Shallow Crust,0.0,89.98997,0.0,10/17/4180 +7.74364,48.58858,4541,7,22,15,40,47,4.15,5.0,fr,49047,90,2071752,1,5,Active Shallow Crust,0.0,89.98997,0.0,07/22/4541 +7.74364,48.58858,3100,12,5,17,2,21,4.15,5.0,fr,49048,61,2071752,1,5,Active Shallow Crust,0.0,89.98997,0.0,12/05/3100 +7.74364,48.58858,1909,2,20,22,58,40,4.15,5.0,fr,49049,38,2071752,1,5,Active Shallow Crust,0.0,89.98997,0.0,02/20/1909 +7.74364,48.58858,3491,6,14,7,40,53,4.15,15.0,fr,49050,69,2071753,1,2,Active Shallow Crust,0.0,89.98997,0.0,06/14/3491 +7.74364,48.58858,471,10,12,7,9,28,4.15,15.0,fr,49051,9,2071753,1,2,Active Shallow Crust,0.0,89.98997,0.0,10/12/0471 +7.74364,48.58858,784,11,4,20,29,21,4.15,15.0,fr,49052,15,2071762,1,1,Active Shallow Crust,128.8974,89.99332,0.0,11/04/0784 +7.74364,48.58858,5504,11,9,9,6,39,4.25,5.0,fr,49053,110,2071764,1,1,Active Shallow Crust,0.0,89.99106,0.0,11/09/5504 +7.74364,48.58858,4826,1,27,12,32,34,4.25,15.0,fr,49054,96,2071768,1,1,Active Shallow Crust,240.0084,57.99407,0.0,01/27/4826 +7.74364,48.58858,1982,10,18,11,59,1,4.35,27.5,fr,49055,39,2071778,1,1,Active Shallow Crust,0.0,89.98938,0.0,10/18/1982 +7.74364,48.58858,8099,10,10,11,16,51,4.35,15.0,fr,49056,161,2071786,1,1,Active Shallow Crust,128.8972,89.98263,0.0,10/10/8099 +7.74364,48.58858,1451,3,7,4,5,29,4.45,5.0,fr,49057,29,2071788,1,1,Active Shallow Crust,0.0,89.99053,0.0,03/07/1451 +7.74364,48.58858,7106,11,30,7,1,13,4.45,27.5,fr,49058,142,2071790,1,1,Active Shallow Crust,0.0,89.99053,0.0,11/30/7106 +7.74364,48.58858,1182,11,5,23,52,13,4.45,5.0,fr,49059,23,2071794,1,1,Active Shallow Crust,0.0,89.99043,-90.0,11/05/1182 +7.74364,48.58858,1250,6,15,11,6,0,4.55,15.0,fr,49060,24,2071801,1,1,Active Shallow Crust,0.0,89.98945,0.0,06/15/1250 +7.74364,48.58858,6655,9,30,22,36,12,4.65,5.0,fr,49061,133,2071812,1,1,Active Shallow Crust,0.0,89.9906,0.0,09/30/6655 +7.74364,48.58858,7217,1,26,14,42,37,4.75,15.0,fr,49062,144,2071825,1,1,Active Shallow Crust,0.0,89.98994,0.0,01/26/7217 +7.74364,48.58858,4936,12,13,18,12,31,4.85,5.0,fr,49063,98,2071839,1,1,Active Shallow Crust,240.0181,58.00249,0.0,12/13/4936 +7.74364,48.58858,6748,6,14,3,15,54,4.95,5.0,fr,49064,134,2071848,1,1,Active Shallow Crust,0.0,89.98935,0.0,06/14/6748 +1.26963,43.28573,8116,2,25,23,44,52,3.55,5.0,fr,49065,162,2072160,1,1,Active Shallow Crust,0.0,89.99082,0.0,02/25/8116 +1.26963,43.28573,2435,9,4,17,16,12,3.65,5.0,fr,49066,48,2072175,1,1,Active Shallow Crust,240.0008,58.01274,0.0,09/04/2435 +1.26963,43.28573,1841,2,6,18,7,4,3.75,5.0,fr,49067,36,2072184,1,1,Active Shallow Crust,0.0,89.9898,0.0,02/06/1841 +1.26963,43.28573,2020,12,15,14,34,36,3.85,5.0,fr,49068,40,2072196,1,1,Active Shallow Crust,0.0,89.98961,0.0,12/15/2020 +1.26963,43.28573,7892,3,13,21,58,16,3.95,5.0,fr,49069,157,2072211,1,1,Active Shallow Crust,240.0192,58.005,0.0,03/13/7892 +1.26963,43.28573,8275,12,13,1,48,32,3.95,15.0,fr,49070,165,2072212,1,1,Active Shallow Crust,240.0192,58.005,0.0,12/13/8275 +1.26963,43.28573,676,2,18,2,27,6,4.05,5.0,fr,49071,13,2072220,1,1,Active Shallow Crust,0.0,89.98968,0.0,02/18/0676 +1.26963,43.28573,9862,11,17,10,11,30,4.55,15.0,fr,49072,197,2072284,1,1,Active Shallow Crust,240.0084,57.99721,0.0,11/17/9862 +1.26963,43.28573,6860,4,28,12,22,32,5.55,5.0,fr,49073,137,2072400,1,1,Active Shallow Crust,359.9999,89.99009,0.0,04/28/6860 +2.06395,49.98543,176,4,1,10,19,45,3.65,15.0,fr,49074,3,2072656,1,1,Active Shallow Crust,240.0017,58.01247,0.0,04/01/0176 +2.65345,46.88041,5631,10,4,14,45,40,4.25,5.0,fr,49075,112,2073204,1,1,Active Shallow Crust,0.0,89.99076,0.0,10/04/5631 +1.05123,42.8594,7885,1,11,8,0,44,3.55,5.0,fr,49076,157,2073600,1,3,Active Shallow Crust,0.0,89.99076,0.0,01/11/7885 +1.05123,42.8594,9254,8,25,2,4,13,3.55,5.0,fr,49077,185,2073600,1,3,Active Shallow Crust,0.0,89.99076,0.0,08/25/9254 +1.05123,42.8594,9629,5,19,6,9,16,3.55,5.0,fr,49078,192,2073600,1,3,Active Shallow Crust,0.0,89.99076,0.0,05/19/9629 +1.05123,42.8594,7454,12,28,14,54,44,3.55,15.0,fr,49079,149,2073601,1,1,Active Shallow Crust,0.0,89.99076,0.0,12/28/7454 +1.05123,42.8594,9582,8,13,21,51,36,3.75,5.0,fr,49080,191,2073624,1,2,Active Shallow Crust,0.0,89.98972,0.0,08/13/9582 +1.05123,42.8594,5489,6,16,17,28,55,3.75,5.0,fr,49081,109,2073624,1,2,Active Shallow Crust,0.0,89.98972,0.0,06/16/5489 +1.05123,42.8594,8943,2,19,1,51,23,3.75,15.0,fr,49082,178,2073625,1,1,Active Shallow Crust,0.0,89.98972,0.0,02/19/8943 +1.05123,42.8594,628,7,31,1,47,10,3.75,15.0,fr,49083,12,2073628,1,1,Active Shallow Crust,240.0077,58.01761,0.0,07/31/0628 +1.05123,42.8594,3238,10,15,9,46,32,3.75,5.0,fr,49084,64,2073630,1,1,Active Shallow Crust,0.0,89.98961,-90.0,10/15/3238 +1.05123,42.8594,8452,9,28,15,17,36,3.75,5.0,fr,49085,169,2073633,1,1,Active Shallow Crust,128.8968,89.96743,0.0,09/28/8452 +1.05123,42.8594,1355,7,12,1,38,35,3.75,27.5,fr,49086,27,2073635,1,1,Active Shallow Crust,128.8968,89.96743,0.0,07/12/1355 +1.05123,42.8594,2295,11,23,7,7,8,3.85,5.0,fr,49087,45,2073636,1,2,Active Shallow Crust,0.0,89.98953,0.0,11/23/2295 +1.05123,42.8594,8609,5,8,7,6,28,3.85,5.0,fr,49088,172,2073636,1,2,Active Shallow Crust,0.0,89.98953,0.0,05/08/8609 +1.05123,42.8594,9020,4,27,19,20,50,3.85,15.0,fr,49089,180,2073637,1,2,Active Shallow Crust,0.0,89.98953,0.0,04/27/9020 +1.05123,42.8594,1152,11,22,18,59,46,3.85,15.0,fr,49090,23,2073637,1,2,Active Shallow Crust,0.0,89.98953,0.0,11/22/1152 +1.05123,42.8594,8371,8,1,7,0,42,3.85,5.0,fr,49091,167,2073639,1,1,Active Shallow Crust,240.0103,57.99774,0.0,08/01/8371 +1.05123,42.8594,5357,6,22,8,13,31,3.95,5.0,fr,49092,107,2073648,1,2,Active Shallow Crust,0.0,89.98951,0.0,06/22/5357 +1.05123,42.8594,7237,5,8,18,51,20,3.95,5.0,fr,49093,144,2073648,1,2,Active Shallow Crust,0.0,89.98951,0.0,05/08/7237 +1.05123,42.8594,8567,7,5,15,10,57,3.95,15.0,fr,49094,171,2073649,1,1,Active Shallow Crust,0.0,89.98951,0.0,07/05/8567 +1.05123,42.8594,8221,11,24,5,32,49,3.95,5.0,fr,49095,164,2073651,1,1,Active Shallow Crust,240.0192,58.00505,0.0,11/24/8221 +1.05123,42.8594,2057,3,28,19,48,49,4.05,15.0,fr,49096,41,2073661,1,1,Active Shallow Crust,0.0,89.98961,0.0,03/28/2057 +1.05123,42.8594,5651,9,1,2,14,32,4.15,5.0,fr,49097,113,2073672,1,1,Active Shallow Crust,0.0,89.98981,0.0,09/01/5651 +1.05123,42.8594,9481,4,12,8,49,3,4.15,15.0,fr,49098,189,2073673,1,1,Active Shallow Crust,0.0,89.98981,0.0,04/12/9481 +1.05123,42.8594,8510,12,4,8,12,30,4.15,27.5,fr,49099,170,2073674,1,1,Active Shallow Crust,0.0,89.98981,0.0,12/04/8510 +1.05123,42.8594,9061,4,15,13,17,57,4.15,5.0,fr,49100,181,2073678,1,1,Active Shallow Crust,0.0,89.98969,-90.0,04/15/9061 +1.05123,42.8594,6271,8,28,13,32,2,4.25,15.0,fr,49101,125,2073688,1,1,Active Shallow Crust,240.0067,57.99394,0.0,08/28/6271 +1.05123,42.8594,1746,6,9,10,1,0,4.45,15.0,fr,49102,34,2073709,1,1,Active Shallow Crust,0.0,89.99017,0.0,06/09/1746 +1.05123,42.8594,798,11,10,9,52,40,4.45,27.5,fr,49103,15,2073710,1,1,Active Shallow Crust,0.0,89.99017,0.0,11/10/0798 +1.05123,42.8594,2840,1,21,8,0,43,4.45,5.0,fr,49104,56,2073717,1,1,Active Shallow Crust,128.8931,89.99345,0.0,01/21/2840 +1.05123,42.8594,1487,2,13,12,43,13,4.75,27.5,fr,49105,29,2073746,1,1,Active Shallow Crust,0.0,89.98978,0.0,02/13/1487 +1.05123,42.8594,7825,9,10,20,37,2,4.75,5.0,fr,49106,156,2073747,1,1,Active Shallow Crust,240.0062,58.00425,0.0,09/10/7825 +1.05123,42.8594,4985,6,28,22,33,13,4.85,15.0,fr,49107,99,2073757,1,1,Active Shallow Crust,0.0,89.99007,0.0,06/28/4985 +1.05123,42.8594,7737,7,10,4,24,36,4.95,15.0,fr,49108,154,2073769,1,1,Active Shallow Crust,0.0,89.99004,0.0,07/10/7737 +1.05123,42.8594,124,11,14,17,21,24,5.15,5.0,fr,49109,2,2073795,1,1,Active Shallow Crust,240.0177,57.99956,0.0,11/14/0124 +3.73452,40.97152,4546,9,19,1,0,0,3.75,5.0,fr,49110,90,2075064,1,1,Active Shallow Crust,0.0,89.99093,0.0,09/19/4546 +3.73452,40.97152,5907,3,19,21,11,41,4.25,5.0,fr,49111,118,2075124,1,1,Active Shallow Crust,0.0,89.9898,0.0,03/19/5907 +3.73452,40.97152,4422,5,25,11,15,14,5.05,5.0,fr,49112,88,2075220,1,1,Active Shallow Crust,0.0,89.98985,0.0,05/25/4422 +0.3001,52.37765,407,5,1,23,18,53,3.55,5.0,fr,49113,8,2075526,1,1,Active Shallow Crust,0.0,89.98988,-90.0,05/01/0407 +0.3001,52.37765,8298,10,27,7,33,29,3.65,15.0,fr,49114,165,2075533,1,1,Active Shallow Crust,0.0,89.99006,0.0,10/27/8298 +0.3001,52.37765,4232,7,22,7,12,1,3.75,5.0,fr,49115,84,2075550,1,1,Active Shallow Crust,0.0,89.9901,-90.0,07/22/4232 +0.3001,52.37765,9914,2,22,16,38,3,4.65,15.0,fr,49116,198,2075653,1,1,Active Shallow Crust,0.0,89.99002,0.0,02/22/9914 +-6.45561,49.22051,8554,4,26,17,59,0,3.75,5.0,fr,49117,171,2076024,1,1,Active Shallow Crust,0.0,89.98954,0.0,04/26/8554 +6.19975,47.51322,964,11,24,12,14,39,3.55,27.5,fr,49118,19,2076482,1,1,Active Shallow Crust,0.0,89.99319,0.0,11/24/0964 +6.19975,47.51322,2960,4,30,20,51,9,3.65,5.0,fr,49119,59,2076495,1,1,Active Shallow Crust,240.001,58.01265,0.0,04/30/2960 +6.19975,47.51322,3611,12,8,14,50,29,3.65,5.0,fr,49120,72,2076498,1,1,Active Shallow Crust,0.0,89.98772,-90.0,12/08/3611 +6.19975,47.51322,6184,8,17,9,45,7,3.65,5.0,fr,49121,123,2076501,1,1,Active Shallow Crust,128.9007,89.96355,0.0,08/17/6184 +6.19975,47.51322,328,10,23,11,27,4,3.75,5.0,fr,49122,6,2076504,1,1,Active Shallow Crust,0.0,89.98918,0.0,10/23/0328 +6.19975,47.51322,8942,3,10,5,49,47,3.75,27.5,fr,49123,178,2076506,1,2,Active Shallow Crust,0.0,89.98918,0.0,03/10/8942 +6.19975,47.51322,3993,2,1,8,4,14,3.75,27.5,fr,49124,79,2076506,1,2,Active Shallow Crust,0.0,89.98918,0.0,02/01/3993 +6.19975,47.51322,3301,9,8,16,35,42,3.75,5.0,fr,49125,66,2076507,1,1,Active Shallow Crust,240.0085,58.01767,0.0,09/08/3301 +6.19975,47.51322,1258,12,5,1,30,42,3.75,5.0,fr,49126,25,2076510,1,1,Active Shallow Crust,0.0,89.98905,-90.0,12/05/1258 +6.19975,47.51322,8319,11,2,10,53,28,3.85,5.0,fr,49127,166,2076516,1,1,Active Shallow Crust,0.0,89.99036,0.0,11/02/8319 +6.19975,47.51322,7026,4,19,21,13,4,3.85,15.0,fr,49128,140,2076517,1,1,Active Shallow Crust,0.0,89.99036,0.0,04/19/7026 +6.19975,47.51322,5068,9,27,8,24,4,3.85,5.0,fr,49129,101,2076519,1,1,Active Shallow Crust,240.0107,57.99761,0.0,09/27/5068 +6.19975,47.51322,5295,6,30,5,40,34,4.05,15.0,fr,49130,105,2076544,1,1,Active Shallow Crust,240.0058,58.00586,0.0,06/30/5295 +6.19975,47.51322,5706,1,31,1,3,48,4.05,5.0,fr,49131,114,2076549,1,1,Active Shallow Crust,128.8898,89.99426,0.0,01/31/5706 +6.19975,47.51322,6741,11,25,18,37,27,4.45,5.0,fr,49132,134,2076588,1,1,Active Shallow Crust,0.0,89.99033,0.0,11/25/6741 +6.19975,47.51322,8658,3,2,19,28,27,4.55,15.0,fr,49133,173,2076610,1,1,Active Shallow Crust,128.8938,89.9857,0.0,03/02/8658 +6.19975,47.51322,5830,7,20,14,2,5,4.85,5.0,fr,49134,116,2076645,1,1,Active Shallow Crust,128.8925,89.98866,0.0,07/20/5830 +6.19975,47.51322,4631,9,23,7,42,11,5.05,5.0,fr,49135,92,2076660,1,1,Active Shallow Crust,0.0,89.99031,0.0,09/23/4631 +4.74113,50.58606,3821,8,24,2,32,50,3.55,5.0,fr,49136,76,2076960,1,3,Active Shallow Crust,0.0,89.9872,0.0,08/24/3821 +4.74113,50.58606,763,12,11,13,39,55,3.55,5.0,fr,49137,15,2076960,1,3,Active Shallow Crust,0.0,89.9872,0.0,12/11/0763 +4.74113,50.58606,1431,5,3,13,57,32,3.55,5.0,fr,49138,28,2076960,1,3,Active Shallow Crust,0.0,89.9872,0.0,05/03/1431 +4.74113,50.58606,2623,12,26,21,6,34,3.55,15.0,fr,49139,52,2076961,1,1,Active Shallow Crust,0.0,89.9872,0.0,12/26/2623 +4.74113,50.58606,911,8,26,9,20,53,3.65,5.0,fr,49140,18,2076972,1,1,Active Shallow Crust,0.0,89.98859,0.0,08/26/0911 +4.74113,50.58606,2906,2,9,19,54,51,3.65,5.0,fr,49141,58,2076975,1,1,Active Shallow Crust,240.0016,58.01276,0.0,02/09/2906 +4.74113,50.58606,8291,3,8,22,59,22,3.75,5.0,fr,49142,165,2076984,1,2,Active Shallow Crust,0.0,89.98983,0.0,03/08/8291 +4.74113,50.58606,6334,8,6,6,5,7,3.75,5.0,fr,49143,126,2076984,1,2,Active Shallow Crust,0.0,89.98983,0.0,08/06/6334 +4.74113,50.58606,4572,9,14,17,55,20,3.85,5.0,fr,49144,91,2076996,1,1,Active Shallow Crust,0.0,89.99094,0.0,09/14/4572 +4.74113,50.58606,6613,10,28,8,42,38,4.05,5.0,fr,49145,132,2077023,1,1,Active Shallow Crust,240.0066,58.00643,0.0,10/28/6613 +4.74113,50.58606,4103,8,8,6,8,24,4.15,5.0,fr,49146,82,2077032,1,1,Active Shallow Crust,0.0,89.99037,0.0,08/08/4103 +4.74113,50.58606,5711,4,15,5,6,58,4.15,15.0,fr,49147,114,2077033,1,1,Active Shallow Crust,0.0,89.99037,0.0,04/15/5711 +4.74113,50.58606,5013,6,27,17,49,16,4.15,5.0,fr,49148,100,2077038,1,1,Active Shallow Crust,0.0,89.99026,-90.0,06/27/5013 +4.74113,50.58606,5453,11,26,22,6,47,4.15,27.5,fr,49149,109,2077043,1,1,Active Shallow Crust,128.8963,89.99358,0.0,11/26/5453 +4.74113,50.58606,9823,5,24,11,42,53,4.25,5.0,fr,49150,196,2077047,1,1,Active Shallow Crust,240.0086,57.99409,0.0,05/24/9823 +4.74113,50.58606,3500,12,3,19,41,47,4.25,15.0,fr,49151,69,2077048,1,1,Active Shallow Crust,240.0086,57.99409,0.0,12/03/3500 +4.74113,50.58606,5034,4,23,8,4,23,4.35,5.0,fr,49152,100,2077059,1,1,Active Shallow Crust,240.0095,57.99606,0.0,04/23/5034 +-2.15189,45.28826,5170,9,8,4,1,6,3.85,15.0,fr,49153,103,2077477,1,1,Active Shallow Crust,0.0,89.98995,0.0,09/08/5170 +-2.15189,45.28826,9535,10,28,16,53,1,3.95,5.0,fr,49154,190,2077491,1,1,Active Shallow Crust,240.0195,58.00513,0.0,10/28/9535 +3.1105,45.66081,3203,3,22,3,33,58,3.55,5.0,fr,49155,64,2078400,1,1,Active Shallow Crust,0.0,89.98943,0.0,03/22/3203 +3.1105,45.66081,3037,1,16,17,38,47,3.55,15.0,fr,49156,60,2078401,1,1,Active Shallow Crust,0.0,89.98943,0.0,01/16/3037 +3.1105,45.66081,806,7,6,22,6,26,3.55,15.0,fr,49157,16,2078404,1,1,Active Shallow Crust,240.012,57.9983,0.0,07/06/0806 +3.1105,45.66081,589,10,7,3,31,17,3.55,5.0,fr,49158,11,2078406,1,1,Active Shallow Crust,0.0,89.9893,-90.0,10/07/0589 +3.1105,45.66081,9690,8,29,12,48,58,3.55,5.0,fr,49159,193,2078409,1,2,Active Shallow Crust,128.8961,89.99295,0.0,08/29/9690 +3.1105,45.66081,3287,11,13,4,6,5,3.55,5.0,fr,49160,65,2078409,1,2,Active Shallow Crust,128.8961,89.99295,0.0,11/13/3287 +3.1105,45.66081,9236,3,20,4,49,33,3.65,15.0,fr,49161,184,2078413,1,1,Active Shallow Crust,0.0,89.99058,0.0,03/20/9236 +3.1105,45.66081,9186,3,26,13,37,59,3.65,5.0,fr,49162,183,2078415,1,1,Active Shallow Crust,240.0006,58.0132,0.0,03/26/9186 +3.1105,45.66081,6628,6,29,0,7,36,3.65,15.0,fr,49163,132,2078416,1,1,Active Shallow Crust,240.0006,58.0132,0.0,06/29/6628 +3.1105,45.66081,8939,2,26,15,5,43,3.75,5.0,fr,49164,178,2078424,1,1,Active Shallow Crust,0.0,89.9888,0.0,02/26/8939 +3.1105,45.66081,2289,6,9,5,39,0,3.75,15.0,fr,49165,45,2078425,1,2,Active Shallow Crust,0.0,89.9888,0.0,06/09/2289 +3.1105,45.66081,9988,5,19,23,44,48,3.75,15.0,fr,49166,199,2078425,1,2,Active Shallow Crust,0.0,89.9888,0.0,05/19/9988 +3.1105,45.66081,8817,7,7,23,40,19,3.75,5.0,fr,49167,176,2078433,1,1,Active Shallow Crust,128.8966,89.96721,0.0,07/07/8817 +3.1105,45.66081,1840,9,16,15,33,31,3.85,5.0,fr,49168,36,2078436,1,2,Active Shallow Crust,0.0,89.99002,0.0,09/16/1840 +3.1105,45.66081,8495,9,25,23,48,25,3.85,5.0,fr,49169,169,2078436,1,2,Active Shallow Crust,0.0,89.99002,0.0,09/25/8495 +3.1105,45.66081,4714,1,24,12,17,28,3.85,15.0,fr,49170,94,2078437,1,1,Active Shallow Crust,0.0,89.99002,0.0,01/24/4714 +3.1105,45.66081,9243,7,7,15,43,24,3.85,27.5,fr,49171,184,2078438,1,1,Active Shallow Crust,0.0,89.99002,0.0,07/07/9243 +3.1105,45.66081,2826,3,15,1,50,25,3.85,5.0,fr,49172,56,2078442,1,1,Active Shallow Crust,0.0,89.98991,-90.0,03/15/2826 +3.1105,45.66081,9294,4,29,8,56,27,3.95,5.0,fr,49173,185,2078448,1,2,Active Shallow Crust,0.0,89.9911,0.0,04/29/9294 +3.1105,45.66081,6873,2,5,12,18,19,3.95,5.0,fr,49174,137,2078448,1,2,Active Shallow Crust,0.0,89.9911,0.0,02/05/6873 +3.1105,45.66081,3129,1,2,8,59,15,3.95,5.0,fr,49175,62,2078451,1,1,Active Shallow Crust,240.0195,58.00513,0.0,01/02/3129 +3.1105,45.66081,4298,10,29,3,56,8,4.05,5.0,fr,49176,85,2078460,1,1,Active Shallow Crust,0.0,89.99009,0.0,10/29/4298 +3.1105,45.66081,2275,3,2,2,2,31,4.05,5.0,fr,49177,45,2078463,1,1,Active Shallow Crust,240.0061,58.00557,0.0,03/02/2275 +3.1105,45.66081,2662,10,20,3,22,32,4.15,5.0,fr,49178,53,2078472,1,1,Active Shallow Crust,0.0,89.9894,0.0,10/20/2662 +3.1105,45.66081,9971,9,5,12,4,18,4.15,15.0,fr,49179,199,2078473,1,1,Active Shallow Crust,0.0,89.9894,0.0,09/05/9971 +3.1105,45.66081,6673,1,12,17,18,0,4.15,27.5,fr,49180,133,2078477,1,1,Active Shallow Crust,240.0083,57.99717,0.0,01/12/6673 +3.1105,45.66081,2295,3,4,22,45,59,4.25,5.0,fr,49181,45,2078484,1,1,Active Shallow Crust,0.0,89.99055,0.0,03/04/2295 +3.1105,45.66081,574,11,30,7,15,25,4.35,5.0,fr,49182,11,2078496,1,1,Active Shallow Crust,0.0,89.99018,0.0,11/30/0574 +3.1105,45.66081,5071,5,27,5,23,6,4.55,15.0,fr,49183,101,2078524,1,1,Active Shallow Crust,240.0091,57.99733,0.0,05/27/5071 +3.110505,45.66081,2670,3,30,15,3,50,6.65,24.31019,fr,49184,53,2078783,1,1,Active Shallow Crust,128.8233,89.98985,0.0,03/30/2670 +6.67387,42.84207,5344,4,18,11,35,57,3.75,5.0,fr,49185,106,2078913,1,1,Active Shallow Crust,128.8972,89.96743,0.0,04/18/5344 +6.67387,42.84207,7431,4,20,12,38,6,4.05,5.0,fr,49186,148,2078946,1,1,Active Shallow Crust,0.0,89.99158,-90.0,04/20/7431 +8.71739,50.81874,1219,1,11,11,20,7,4.55,5.0,fr,49187,24,2079480,1,1,Active Shallow Crust,0.0,89.99194,0.0,01/11/1219 +8.71739,50.81874,3527,6,29,20,0,39,4.85,15.0,fr,49188,70,2079520,1,1,Active Shallow Crust,240.0194,58.00261,0.0,06/29/3527 +-0.36513,43.40883,1734,11,21,4,18,27,3.55,15.0,fr,49189,34,2079841,1,1,Active Shallow Crust,0.0,89.98993,0.0,11/21/1734 +-0.36513,43.40883,605,12,20,18,22,44,3.65,5.0,fr,49190,12,2079852,1,1,Active Shallow Crust,0.0,89.9898,0.0,12/20/0605 +-0.36513,43.40883,8857,7,6,11,30,53,3.65,15.0,fr,49191,177,2079853,1,1,Active Shallow Crust,0.0,89.9898,0.0,07/06/8857 +-0.36513,43.40883,2957,12,13,20,6,35,3.75,5.0,fr,49192,59,2079864,1,1,Active Shallow Crust,0.0,89.99018,0.0,12/13/2957 +-0.36513,43.40883,6081,7,26,11,22,23,3.75,15.0,fr,49193,121,2079865,1,2,Active Shallow Crust,0.0,89.99018,0.0,07/26/6081 +-0.36513,43.40883,9563,6,23,0,11,50,3.75,15.0,fr,49194,191,2079865,1,2,Active Shallow Crust,0.0,89.99018,0.0,06/23/9563 +-0.36513,43.40883,8754,7,5,10,51,8,4.05,5.0,fr,49195,175,2079909,1,1,Active Shallow Crust,128.8909,89.99369,0.0,07/05/8754 +-0.36513,43.40883,2182,3,25,18,29,16,4.15,15.0,fr,49196,43,2079916,1,1,Active Shallow Crust,240.0079,57.99723,0.0,03/25/2182 +-0.36513,43.40883,6285,5,29,9,46,29,4.35,15.0,fr,49197,125,2079937,1,1,Active Shallow Crust,0.0,89.98997,0.0,05/29/6285 +-0.36513,43.40883,5242,7,4,18,38,41,4.45,15.0,fr,49198,104,2079949,1,1,Active Shallow Crust,0.0,89.98993,0.0,07/04/5242 +4.6459,42.98433,911,10,27,14,35,30,3.55,5.0,fr,49199,18,2080329,1,1,Active Shallow Crust,128.8962,89.99262,0.0,10/27/0911 +4.6459,42.98433,1988,5,10,16,14,59,3.75,5.0,fr,49200,39,2080344,1,1,Active Shallow Crust,0.0,89.98828,0.0,05/10/1988 +4.6459,42.98433,4280,10,2,21,32,23,3.85,5.0,fr,49201,85,2080356,1,1,Active Shallow Crust,0.0,89.98956,0.0,10/02/4280 +4.6459,42.98433,8167,2,27,22,34,40,4.35,5.0,fr,49202,163,2080422,1,1,Active Shallow Crust,0.0,89.99109,-90.0,02/27/8167 +7.53123,51.54897,8335,6,26,11,29,43,3.75,5.0,fr,49203,166,2080824,1,1,Active Shallow Crust,0.0,89.99004,0.0,06/26/8335 +4.87652,51.09522,599,7,8,8,25,6,3.55,15.0,fr,49204,11,2081287,1,1,Active Shallow Crust,0.0,89.98719,-90.0,07/08/0599 +4.87652,51.09522,733,11,30,5,30,34,3.75,5.0,fr,49205,14,2081304,1,1,Active Shallow Crust,0.0,89.98994,0.0,11/30/0733 +4.87652,51.09522,4132,2,20,4,37,17,4.15,5.0,fr,49206,82,2081358,1,1,Active Shallow Crust,0.0,89.99036,-90.0,02/20/4132 +4.87652,51.09522,3157,10,20,2,22,46,4.15,5.0,fr,49207,63,2081361,1,1,Active Shallow Crust,128.8972,89.99365,0.0,10/20/3157 +4.87652,51.09522,8016,8,3,10,8,23,4.35,27.5,fr,49208,160,2081384,1,1,Active Shallow Crust,0.0,89.9898,-90.0,08/03/8016 +4.87652,51.09522,2692,5,28,20,45,6,4.55,5.0,fr,49209,53,2081400,1,1,Active Shallow Crust,0.0,89.98998,0.0,05/28/2692 +4.87652,51.09522,6401,11,9,14,57,28,5.15,15.0,fr,49210,128,2081473,1,1,Active Shallow Crust,0.0,89.98996,0.0,11/09/6401 +1.2705,52.15435,1325,8,20,7,27,8,3.95,15.0,fr,49211,26,2081809,1,2,Active Shallow Crust,0.0,89.99024,0.0,08/20/1325 +1.2705,52.15435,3039,3,2,10,42,44,3.95,15.0,fr,49212,60,2081809,1,2,Active Shallow Crust,0.0,89.99024,0.0,03/02/3039 +1.2705,52.15435,4636,2,27,21,21,39,3.95,5.0,fr,49213,92,2081814,1,1,Active Shallow Crust,0.0,89.99013,-90.0,02/27/4636 +-2.90582,42.01484,1487,7,30,14,4,46,3.55,5.0,fr,49214,29,2082240,1,1,Active Shallow Crust,0.0,89.98876,0.0,07/30/1487 +-2.90582,42.01484,3239,5,17,22,13,20,3.65,27.5,fr,49215,64,2082254,1,1,Active Shallow Crust,0.0,89.98998,0.0,05/17/3239 +-2.90582,42.01484,1018,5,28,1,6,59,3.65,5.0,fr,49216,20,2082255,1,1,Active Shallow Crust,240.0004,58.01292,0.0,05/28/1018 +-2.90582,42.01484,785,8,1,2,34,52,3.75,5.0,fr,49217,15,2082264,1,1,Active Shallow Crust,0.0,89.99107,0.0,08/01/0785 +-2.90582,42.01484,7053,9,24,9,52,56,3.85,15.0,fr,49218,141,2082277,1,1,Active Shallow Crust,0.0,89.9894,0.0,09/24/7053 +-2.90582,42.01484,8660,8,29,23,14,4,3.85,27.5,fr,49219,173,2082278,1,1,Active Shallow Crust,0.0,89.9894,0.0,08/29/8660 +-2.90582,42.01484,5860,10,29,1,18,24,3.95,5.0,fr,49220,117,2082288,1,1,Active Shallow Crust,0.0,89.99055,0.0,10/29/5860 +-2.90582,42.01484,2423,2,17,21,2,8,3.95,5.0,fr,49221,48,2082297,1,1,Active Shallow Crust,128.9007,89.99409,0.0,02/17/2423 +-2.90582,42.01484,7026,10,5,3,17,10,4.05,15.0,fr,49222,140,2082301,1,1,Active Shallow Crust,0.0,89.98946,0.0,10/05/7026 +3.65898,45.61391,7537,11,13,13,12,25,3.55,5.0,fr,49223,150,2082720,1,1,Active Shallow Crust,0.0,89.98942,0.0,11/13/7537 +3.65898,45.61391,8790,7,29,23,12,53,3.55,15.0,fr,49224,175,2082721,1,2,Active Shallow Crust,0.0,89.98942,0.0,07/29/8790 +3.65898,45.61391,1994,11,8,10,28,35,3.55,15.0,fr,49225,39,2082721,1,2,Active Shallow Crust,0.0,89.98942,0.0,11/08/1994 +3.65898,45.61391,4882,5,30,0,2,25,3.65,5.0,fr,49226,97,2082732,1,1,Active Shallow Crust,0.0,89.99057,0.0,05/30/4882 +3.65898,45.61391,686,7,7,18,57,57,3.65,15.0,fr,49227,13,2082733,1,1,Active Shallow Crust,0.0,89.99057,0.0,07/07/0686 +3.65898,45.61391,7754,3,23,19,53,24,3.75,5.0,fr,49228,155,2082744,1,1,Active Shallow Crust,0.0,89.98879,0.0,03/23/7754 +3.65898,45.61391,7933,4,14,15,46,34,3.75,15.0,fr,49229,158,2082745,1,1,Active Shallow Crust,0.0,89.98879,0.0,04/14/7933 +3.65898,45.61391,7106,7,8,22,25,3,3.85,15.0,fr,49230,142,2082757,1,1,Active Shallow Crust,0.0,89.99001,0.0,07/08/7106 +3.65898,45.61391,724,2,11,20,34,56,3.85,5.0,fr,49231,14,2082759,1,1,Active Shallow Crust,240.0107,57.99793,0.0,02/11/0724 +3.65898,45.61391,2002,2,3,17,56,54,3.95,5.0,fr,49232,40,2082768,1,1,Active Shallow Crust,0.0,89.9911,0.0,02/03/2002 +3.65898,45.61391,207,1,5,8,3,24,4.45,5.0,fr,49233,4,2082828,1,1,Active Shallow Crust,0.0,89.98999,0.0,01/05/0207 +3.65898,45.61391,7184,1,18,0,58,36,4.75,15.0,fr,49234,143,2082865,1,1,Active Shallow Crust,0.0,89.99026,0.0,01/18/7184 +3.65898,45.61391,3217,12,5,1,23,4,5.65,15.0,fr,49235,64,2082979,1,1,Active Shallow Crust,0.0,89.99014,-90.0,12/05/3217 +-3.50479,47.88994,1059,1,13,16,8,41,3.55,27.5,fr,49236,21,2083202,1,1,Active Shallow Crust,0.0,89.98986,0.0,01/13/1059 +-3.50479,47.88994,6952,6,5,17,12,4,3.65,5.0,fr,49237,139,2083212,1,1,Active Shallow Crust,0.0,89.99096,0.0,06/05/6952 +-3.50479,47.88994,7949,5,2,13,26,43,3.65,5.0,fr,49238,158,2083218,1,1,Active Shallow Crust,0.0,89.99085,-90.0,05/02/7949 +-3.50479,47.88994,4412,10,26,10,51,3,3.75,5.0,fr,49239,88,2083224,1,1,Active Shallow Crust,0.0,89.98926,0.0,10/26/4412 +-3.50479,47.88994,6172,8,30,16,1,56,3.85,27.5,fr,49240,123,2083238,1,1,Active Shallow Crust,0.0,89.99043,0.0,08/30/6172 +-3.50479,47.88994,1875,5,13,15,19,36,4.05,5.0,fr,49241,37,2083260,1,1,Active Shallow Crust,0.0,89.99049,0.0,05/13/1875 +-3.50479,47.88994,5983,1,28,7,14,47,4.25,27.5,fr,49242,119,2083286,1,1,Active Shallow Crust,0.0,89.98943,0.0,01/28/5983 +-3.50479,47.88994,8725,12,6,9,11,46,4.25,5.0,fr,49243,174,2083293,1,1,Active Shallow Crust,128.8944,89.98074,0.0,12/06/8725 +-3.50479,47.88994,3934,8,17,22,1,48,4.55,5.0,fr,49244,78,2083320,1,1,Active Shallow Crust,0.0,89.99038,0.0,08/17/3934 +-3.50479,47.88994,8295,6,8,0,38,5,4.75,5.0,fr,49245,165,2083344,1,1,Active Shallow Crust,0.0,89.98981,0.0,06/08/8295 +-3.50479,47.88994,3785,8,27,10,54,14,4.75,5.0,fr,49246,75,2083347,1,1,Active Shallow Crust,240.0081,58.0046,0.0,08/27/3785 +0.77408,41.19582,4567,2,17,15,15,39,3.55,5.0,fr,49247,91,2083680,1,1,Active Shallow Crust,0.0,89.98957,0.0,02/17/4567 +0.77408,41.19582,6219,10,19,14,47,3,3.55,15.0,fr,49248,124,2083681,1,1,Active Shallow Crust,0.0,89.98957,0.0,10/19/6219 +0.77408,41.19582,51,8,15,14,50,36,3.65,15.0,fr,49249,1,2083693,1,1,Active Shallow Crust,0.0,89.98985,0.0,08/15/0051 +0.77408,41.19582,8063,6,30,23,27,2,3.75,5.0,fr,49250,161,2083707,1,1,Active Shallow Crust,240.0079,58.0175,0.0,06/30/8063 +0.77408,41.19582,330,1,1,15,35,42,3.95,5.0,fr,49251,6,2083728,1,2,Active Shallow Crust,0.0,89.98983,0.0,01/01/0330 +0.77408,41.19582,1609,1,30,4,22,57,3.95,5.0,fr,49252,32,2083728,1,2,Active Shallow Crust,0.0,89.98983,0.0,01/30/1609 +0.77408,41.19582,2167,10,18,18,6,28,5.15,5.0,fr,49253,43,2083875,1,1,Active Shallow Crust,240.0168,57.99945,0.0,10/18/2167 +1.56819,46.00178,4962,12,7,11,14,56,3.55,5.0,fr,49254,99,2084160,1,1,Active Shallow Crust,0.0,89.98949,0.0,12/07/4962 +1.56819,46.00178,8607,5,7,3,57,18,3.55,15.0,fr,49255,172,2084161,1,1,Active Shallow Crust,0.0,89.98949,0.0,05/07/8607 +1.56819,46.00178,4228,7,29,3,38,58,3.55,5.0,fr,49256,84,2084166,1,1,Active Shallow Crust,0.0,89.98937,-90.0,07/29/4228 +1.56819,46.00178,2594,4,16,0,34,48,3.55,15.0,fr,49257,51,2084167,1,1,Active Shallow Crust,0.0,89.98937,-90.0,04/16/2594 +1.56819,46.00178,9989,10,11,2,2,52,3.65,5.0,fr,49258,199,2084172,1,1,Active Shallow Crust,0.0,89.99064,0.0,10/11/9989 +1.56819,46.00178,7979,5,5,19,52,33,3.75,5.0,fr,49259,159,2084184,1,2,Active Shallow Crust,0.0,89.99026,0.0,05/05/7979 +1.56819,46.00178,1101,10,21,3,46,12,3.75,5.0,fr,49260,22,2084184,1,2,Active Shallow Crust,0.0,89.99026,0.0,10/21/1101 +1.56819,46.00178,2905,3,14,12,41,45,3.75,15.0,fr,49261,58,2084188,1,1,Active Shallow Crust,240.0083,58.01766,0.0,03/14/2905 +1.56819,46.00178,2896,2,23,18,48,42,3.95,5.0,fr,49262,57,2084208,1,1,Active Shallow Crust,0.0,89.99006,0.0,02/23/2896 +1.56819,46.00178,1516,2,26,23,50,10,3.95,5.0,fr,49263,30,2084214,1,1,Active Shallow Crust,0.0,89.98994,-90.0,02/26/1516 +1.56819,46.00178,7237,5,27,5,24,44,3.95,5.0,fr,49264,144,2084217,1,1,Active Shallow Crust,128.9003,89.99393,0.0,05/27/7237 +1.56819,46.00178,4187,4,28,15,44,42,3.95,27.5,fr,49265,83,2084219,1,1,Active Shallow Crust,128.9003,89.99393,0.0,04/28/4187 +1.56819,46.00178,265,2,10,10,39,27,4.15,27.5,fr,49266,5,2084237,1,1,Active Shallow Crust,240.0082,57.99741,0.0,02/10/0265 +1.1787,41.64888,2049,5,5,19,51,10,3.65,15.0,fr,49267,40,2084653,1,1,Active Shallow Crust,0.0,89.98993,0.0,05/05/2049 +1.1787,41.64888,3421,10,30,1,35,1,3.65,27.5,fr,49268,68,2084654,1,1,Active Shallow Crust,0.0,89.98993,0.0,10/30/3421 +1.1787,41.64888,1930,9,24,13,34,6,4.15,15.0,fr,49269,38,2084713,1,1,Active Shallow Crust,0.0,89.98962,0.0,09/24/1930 +-5.44503,48.64775,708,8,19,7,54,33,3.55,5.0,fr,49270,14,2085120,1,2,Active Shallow Crust,0.0,89.98668,0.0,08/19/0708 +-5.44503,48.64775,3482,9,18,14,9,6,3.55,5.0,fr,49271,69,2085120,1,2,Active Shallow Crust,0.0,89.98668,0.0,09/18/3482 +-5.44503,48.64775,4366,9,26,9,55,42,3.65,5.0,fr,49272,87,2085132,1,1,Active Shallow Crust,0.0,89.98812,0.0,09/26/4366 +-5.44503,48.64775,6398,8,4,13,12,47,4.35,5.0,fr,49273,127,2085216,1,1,Active Shallow Crust,0.0,89.98939,0.0,08/04/6398 +3.84995,46.93562,9380,9,23,11,23,8,3.75,5.0,fr,49274,187,2085624,1,1,Active Shallow Crust,0.0,89.98906,0.0,09/23/9380 +3.84995,46.93562,2258,4,9,18,4,5,3.75,15.0,fr,49275,45,2085625,1,1,Active Shallow Crust,0.0,89.98906,0.0,04/09/2258 +3.84995,46.93562,1424,8,19,13,16,55,3.85,15.0,fr,49276,28,2085637,1,2,Active Shallow Crust,0.0,89.99025,0.0,08/19/1424 +3.84995,46.93562,8516,2,11,1,24,5,3.85,15.0,fr,49277,170,2085637,1,2,Active Shallow Crust,0.0,89.99025,0.0,02/11/8516 +3.84995,46.93562,5585,9,3,0,12,17,4.05,5.0,fr,49278,111,2085663,1,1,Active Shallow Crust,240.006,58.00596,0.0,09/03/5585 +3.84995,46.93562,5636,9,11,22,37,20,4.15,5.0,fr,49279,112,2085672,1,1,Active Shallow Crust,0.0,89.98965,0.0,09/11/5636 +3.84995,46.93562,8712,11,7,0,12,35,4.45,15.0,fr,49280,174,2085718,1,1,Active Shallow Crust,128.8922,89.99329,0.0,11/07/8712 +1.22963,41.3893,9741,3,17,11,11,55,3.65,15.0,fr,49281,194,2086093,1,1,Active Shallow Crust,0.0,89.98988,0.0,03/17/9741 +1.22963,41.3893,1577,6,23,12,28,33,3.75,5.0,fr,49282,31,2086104,1,1,Active Shallow Crust,0.0,89.98949,0.0,06/23/1577 +1.22963,41.3893,1274,12,18,14,46,7,3.85,5.0,fr,49283,25,2086116,1,1,Active Shallow Crust,0.0,89.99062,0.0,12/18/1274 +1.22963,41.3893,3500,7,26,1,11,59,3.85,27.5,fr,49284,69,2086118,1,1,Active Shallow Crust,0.0,89.99062,0.0,07/26/3500 +1.22963,41.3893,4214,3,15,22,24,14,3.85,5.0,fr,49285,84,2086122,1,1,Active Shallow Crust,0.0,89.99052,-90.0,03/15/4214 +1.22963,41.3893,702,5,30,2,28,55,3.95,15.0,fr,49286,14,2086129,1,1,Active Shallow Crust,0.0,89.99046,0.0,05/30/0702 +1.22963,41.3893,7345,1,17,4,2,19,3.95,27.5,fr,49287,146,2086130,1,1,Active Shallow Crust,0.0,89.99046,0.0,01/17/7345 +1.22963,41.3893,3147,11,26,15,57,4,4.05,5.0,fr,49288,62,2086140,1,1,Active Shallow Crust,0.0,89.99043,0.0,11/26/3147 +1.22963,41.3893,4462,3,25,14,31,20,4.25,5.0,fr,49289,89,2086164,1,1,Active Shallow Crust,0.0,89.98986,0.0,03/25/4462 +1.22963,41.3893,1215,12,17,19,43,16,4.35,5.0,fr,49290,24,2086176,1,1,Active Shallow Crust,0.0,89.99021,0.0,12/17/1215 +1.22963,41.3893,7020,8,24,19,20,29,4.35,15.0,fr,49291,140,2086177,1,1,Active Shallow Crust,0.0,89.99021,0.0,08/24/7020 +1.22963,41.3893,9750,3,10,15,57,33,4.45,5.0,fr,49292,194,2086188,1,1,Active Shallow Crust,0.0,89.98994,0.0,03/10/9750 +1.22963,41.3893,7141,8,30,19,40,3,4.55,5.0,fr,49293,142,2086200,1,1,Active Shallow Crust,0.0,89.98983,0.0,08/30/7141 +1.22963,41.3893,9270,9,15,16,6,43,4.55,15.0,fr,49294,185,2086201,1,1,Active Shallow Crust,0.0,89.98983,0.0,09/15/9270 +1.22963,41.3893,9027,6,23,4,2,4,4.75,15.0,fr,49295,180,2086225,1,1,Active Shallow Crust,0.0,89.99002,0.0,06/23/9027 +1.22963,41.3893,9242,7,16,19,7,37,4.95,5.0,fr,49296,184,2086251,1,1,Active Shallow Crust,240.0098,58.00404,0.0,07/16/9242 +-5.73634,48.47897,7049,6,15,4,6,9,3.55,27.5,fr,49297,140,2086565,1,1,Active Shallow Crust,240.0132,57.99683,0.0,06/15/7049 +-5.73634,48.47897,2645,8,26,2,15,10,3.75,5.0,fr,49298,52,2086584,1,1,Active Shallow Crust,0.0,89.98938,0.0,08/26/2645 +-5.73634,48.47897,805,7,9,1,20,35,4.25,15.0,fr,49299,16,2086645,1,1,Active Shallow Crust,0.0,89.99104,0.0,07/09/0805 +-4.4374,47.24813,7026,10,28,17,14,17,3.75,5.0,fr,49300,140,2087064,1,1,Active Shallow Crust,0.0,89.98913,0.0,10/28/7026 +-4.4374,47.24813,9661,1,21,0,36,34,3.75,15.0,fr,49301,193,2087068,1,1,Active Shallow Crust,240.0085,58.01749,0.0,01/21/9661 +3.11005,43.95688,1854,3,19,1,29,15,3.55,5.0,fr,49302,37,2087526,1,1,Active Shallow Crust,0.0,89.98898,-90.0,03/19/1854 +3.11005,43.95688,1520,3,1,9,56,23,3.65,15.0,fr,49303,30,2087536,1,1,Active Shallow Crust,240.0004,58.01289,0.0,03/01/1520 +3.11005,43.95688,8206,3,2,17,54,7,4.25,15.0,fr,49304,164,2087605,1,1,Active Shallow Crust,0.0,89.99027,0.0,03/02/8206 +3.11005,43.95688,2919,4,6,12,56,49,4.85,5.0,fr,49305,58,2087676,1,2,Active Shallow Crust,0.0,89.99025,0.0,04/06/2919 +3.11005,43.95688,5352,1,24,21,45,6,4.85,5.0,fr,49306,107,2087676,1,2,Active Shallow Crust,0.0,89.99025,0.0,01/24/5352 +2.28605,46.57765,8320,11,9,6,27,8,3.55,27.5,fr,49307,166,2088011,1,1,Active Shallow Crust,128.8968,89.99307,0.0,11/09/8320 +2.28605,46.57765,2119,2,24,1,6,21,3.65,5.0,fr,49308,42,2088012,1,2,Active Shallow Crust,0.0,89.99073,0.0,02/24/2119 +2.28605,46.57765,2656,12,18,10,28,14,3.65,5.0,fr,49309,53,2088012,1,2,Active Shallow Crust,0.0,89.99073,0.0,12/18/2656 +2.28605,46.57765,945,5,1,22,31,49,3.75,5.0,fr,49310,18,2088024,1,1,Active Shallow Crust,0.0,89.98899,0.0,05/01/0945 +2.28605,46.57765,395,11,10,14,20,16,3.75,15.0,fr,49311,7,2088028,1,1,Active Shallow Crust,240.0083,58.01757,0.0,11/10/0395 +2.28605,46.57765,6195,6,4,4,7,13,3.85,15.0,fr,49312,123,2088043,1,1,Active Shallow Crust,0.0,89.99007,-90.0,06/04/6195 +2.28605,46.57765,6947,9,14,16,46,28,3.95,5.0,fr,49313,138,2088048,1,2,Active Shallow Crust,0.0,89.98907,0.0,09/14/6947 +2.28605,46.57765,4274,2,21,3,47,44,3.95,5.0,fr,49314,85,2088048,1,2,Active Shallow Crust,0.0,89.98907,0.0,02/21/4274 +2.28605,46.57765,4425,12,26,14,5,11,4.05,5.0,fr,49315,88,2088060,1,1,Active Shallow Crust,0.0,89.99026,0.0,12/26/4425 +2.28605,46.57765,9522,9,6,7,29,3,4.55,15.0,fr,49316,190,2088124,1,1,Active Shallow Crust,240.0093,57.99738,0.0,09/06/9522 +2.28605,46.57765,1781,7,20,12,2,21,4.85,5.0,fr,49317,35,2088156,1,1,Active Shallow Crust,0.0,89.98991,0.0,07/20/1781 +2.28605,46.57765,1652,9,5,1,14,26,5.25,5.0,fr,49318,33,2088210,1,1,Active Shallow Crust,0.0,89.99009,-90.0,09/05/1652 +2.28605,46.57765,3252,4,15,3,27,49,5.35,5.0,fr,49319,65,2088216,1,1,Active Shallow Crust,0.0,89.98996,0.0,04/15/3252 +2.7308,44.29357,3335,7,24,11,58,35,3.55,15.0,fr,49320,66,2088481,1,1,Active Shallow Crust,0.0,89.98917,0.0,07/24/3335 +2.7308,44.29357,8156,1,10,11,59,54,3.55,5.0,fr,49321,163,2088483,1,1,Active Shallow Crust,240.0124,57.99827,0.0,01/10/8156 +2.7308,44.29357,9413,8,3,21,15,5,3.65,5.0,fr,49322,188,2088501,1,1,Active Shallow Crust,128.9014,89.96348,0.0,08/03/9413 +2.7308,44.29357,3916,7,17,15,28,29,3.75,5.0,fr,49323,78,2088507,1,1,Active Shallow Crust,240.0076,58.0178,0.0,07/17/3916 +2.7308,44.29357,8427,7,9,12,27,21,3.85,5.0,fr,49324,168,2088516,1,1,Active Shallow Crust,0.0,89.98978,0.0,07/09/8427 +2.7308,44.29357,4086,2,9,16,4,53,4.05,5.0,fr,49325,81,2088540,1,1,Active Shallow Crust,0.0,89.98985,0.0,02/09/4086 +2.7308,44.29357,2646,10,15,15,29,6,4.05,27.5,fr,49326,52,2088545,1,1,Active Shallow Crust,240.0055,58.00594,0.0,10/15/2646 +2.7308,44.29357,7851,9,18,2,49,58,4.15,5.0,fr,49327,157,2088552,1,1,Active Shallow Crust,0.0,89.98914,0.0,09/18/7851 +2.7308,44.29357,4421,11,3,0,57,10,4.35,5.0,fr,49328,88,2088576,1,1,Active Shallow Crust,0.0,89.98994,0.0,11/03/4421 +2.7308,44.29357,8761,8,8,14,11,22,4.55,15.0,fr,49329,175,2088601,1,1,Active Shallow Crust,0.0,89.98973,0.0,08/08/8761 +2.7308,44.29357,4794,1,3,10,40,43,4.65,5.0,fr,49330,95,2088621,1,1,Active Shallow Crust,128.8918,89.9871,0.0,01/03/4794 +5.814,48.48305,36,11,19,12,1,5,3.55,5.0,fr,49331,0,2088969,1,1,Active Shallow Crust,128.8959,89.99332,0.0,11/19/0036 +5.814,48.48305,1674,1,22,22,21,59,3.65,15.0,fr,49332,33,2088973,1,1,Active Shallow Crust,0.0,89.98808,0.0,01/22/1674 +5.814,48.48305,7524,5,13,3,36,48,3.85,27.5,fr,49333,150,2088998,1,1,Active Shallow Crust,0.0,89.99054,0.0,05/13/7524 +5.814,48.48305,9627,2,22,7,59,47,3.95,27.5,fr,49334,192,2089010,1,1,Active Shallow Crust,0.0,89.99156,0.0,02/22/9627 +5.814,48.48305,1356,1,16,18,52,26,4.35,5.0,fr,49335,27,2089056,1,1,Active Shallow Crust,0.0,89.98936,0.0,01/16/1356 +5.814,48.48305,8120,10,7,17,14,6,4.55,5.0,fr,49336,162,2089080,1,1,Active Shallow Crust,0.0,89.98943,0.0,10/07/8120 +1.64652,40.78565,6240,12,26,22,49,1,3.55,5.0,fr,49337,124,2089440,1,1,Active Shallow Crust,0.0,89.99046,0.0,12/26/6240 +1.64652,40.78565,209,11,20,12,17,20,3.55,15.0,fr,49338,4,2089444,1,1,Active Shallow Crust,240.0113,57.99836,0.0,11/20/0209 +1.64652,40.78565,2576,8,5,2,4,33,3.65,5.0,fr,49339,51,2089461,1,1,Active Shallow Crust,128.9011,89.96342,0.0,08/05/2576 +1.64652,40.78565,9186,12,26,2,32,34,3.75,27.5,fr,49340,183,2089475,1,1,Active Shallow Crust,128.8972,89.96725,0.0,12/26/9186 +1.64652,40.78565,4691,4,19,2,43,40,3.85,5.0,fr,49341,93,2089476,1,1,Active Shallow Crust,0.0,89.99054,0.0,04/19/4691 +1.64652,40.78565,6165,2,2,10,2,31,3.85,15.0,fr,49342,123,2089477,1,1,Active Shallow Crust,0.0,89.99054,0.0,02/02/6165 +1.64652,40.78565,4192,5,3,4,50,35,3.95,15.0,fr,49343,83,2089492,1,2,Active Shallow Crust,240.0192,58.00479,0.0,05/03/4192 +1.64652,40.78565,6818,12,28,11,28,32,3.95,15.0,fr,49344,136,2089492,1,2,Active Shallow Crust,240.0192,58.00479,0.0,12/28/6818 +1.64652,40.78565,1511,11,3,15,33,25,4.25,15.0,fr,49345,30,2089525,1,1,Active Shallow Crust,0.0,89.98977,0.0,11/03/1511 +1.64652,40.78565,4716,12,29,11,7,9,4.35,15.0,fr,49346,94,2089543,1,1,Active Shallow Crust,0.0,89.99001,-90.0,12/29/4716 +3.5967,52.96111,7681,6,2,7,26,6,3.75,5.0,fr,49347,153,2089953,1,1,Active Shallow Crust,128.8958,89.9674,0.0,06/02/7681 +2.41428,53.19919,6745,8,16,14,44,5,3.65,5.0,fr,49348,134,2090412,1,1,Active Shallow Crust,0.0,89.98923,0.0,08/16/6745 +2.41428,53.19919,6579,7,17,0,27,18,3.75,15.0,fr,49349,131,2090425,1,1,Active Shallow Crust,0.0,89.9904,0.0,07/17/6579 +2.41428,53.19919,3883,7,27,5,6,34,3.95,5.0,fr,49350,77,2090448,1,1,Active Shallow Crust,0.0,89.99047,0.0,07/27/3883 +7.63931,46.912,4838,1,16,6,51,11,3.55,5.0,fr,49351,96,2090880,1,5,Active Shallow Crust,0.0,89.99311,0.0,01/16/4838 +7.63931,46.912,2573,3,16,10,5,4,3.55,5.0,fr,49352,51,2090880,1,5,Active Shallow Crust,0.0,89.99311,0.0,03/16/2573 +7.63931,46.912,7096,3,19,0,51,31,3.55,5.0,fr,49353,141,2090880,1,5,Active Shallow Crust,0.0,89.99311,0.0,03/19/7096 +7.63931,46.912,2197,7,17,6,5,29,3.55,5.0,fr,49354,43,2090880,1,5,Active Shallow Crust,0.0,89.99311,0.0,07/17/2197 +7.63931,46.912,7219,12,24,13,21,43,3.55,5.0,fr,49355,144,2090880,1,5,Active Shallow Crust,0.0,89.99311,0.0,12/24/7219 +7.63931,46.912,7934,2,5,1,22,50,3.55,15.0,fr,49356,158,2090881,1,1,Active Shallow Crust,0.0,89.99311,0.0,02/05/7934 +7.63931,46.912,7655,10,12,11,56,13,3.55,27.5,fr,49357,153,2090882,1,1,Active Shallow Crust,0.0,89.99311,0.0,10/12/7655 +7.63931,46.912,6791,7,22,0,27,23,3.55,5.0,fr,49358,135,2090886,1,1,Active Shallow Crust,0.0,89.99303,-90.0,07/22/6791 +7.63931,46.912,8583,9,12,3,25,24,3.55,5.0,fr,49359,171,2090889,1,1,Active Shallow Crust,128.8958,89.99311,0.0,09/12/8583 +7.63931,46.912,2739,1,29,1,59,45,3.55,15.0,fr,49360,54,2090890,1,1,Active Shallow Crust,128.8958,89.99311,0.0,01/29/2739 +7.63931,46.912,6780,12,26,23,32,10,3.55,27.5,fr,49361,135,2090891,1,1,Active Shallow Crust,128.8958,89.99311,0.0,12/26/6780 +7.63931,46.912,3069,2,7,3,44,28,3.65,5.0,fr,49362,61,2090892,1,2,Active Shallow Crust,0.0,89.98772,0.0,02/07/3069 +7.63931,46.912,8150,11,7,11,23,3,3.65,5.0,fr,49363,162,2090892,1,2,Active Shallow Crust,0.0,89.98772,0.0,11/07/8150 +7.63931,46.912,4309,6,4,6,14,34,3.65,5.0,fr,49364,86,2090895,1,2,Active Shallow Crust,239.9999,58.01344,0.0,06/04/4309 +7.63931,46.912,4678,2,6,7,10,55,3.65,5.0,fr,49365,93,2090895,1,2,Active Shallow Crust,239.9999,58.01344,0.0,02/06/4678 +7.63931,46.912,9676,12,16,4,40,49,3.65,15.0,fr,49366,193,2090896,1,1,Active Shallow Crust,239.9999,58.01344,0.0,12/16/9676 +7.63931,46.912,129,2,8,12,20,14,3.65,5.0,fr,49367,2,2090898,1,2,Active Shallow Crust,0.0,89.98758,-90.0,02/08/0129 +7.63931,46.912,5763,5,6,19,21,13,3.65,5.0,fr,49368,115,2090898,1,2,Active Shallow Crust,0.0,89.98758,-90.0,05/06/5763 +7.63931,46.912,7959,7,23,23,34,4,3.75,5.0,fr,49369,159,2090907,1,1,Active Shallow Crust,240.0082,58.01852,0.0,07/23/7959 +7.63931,46.912,4827,4,30,2,11,8,3.75,15.0,fr,49370,96,2090911,1,1,Active Shallow Crust,0.0,89.98893,-90.0,04/30/4827 +7.63931,46.912,6411,6,29,12,12,48,3.75,5.0,fr,49371,128,2090913,1,1,Active Shallow Crust,128.8967,89.9675,0.0,06/29/6411 +7.63931,46.912,2095,12,30,1,34,40,3.85,5.0,fr,49372,41,2090916,1,1,Active Shallow Crust,0.0,89.99025,0.0,12/30/2095 +7.63931,46.912,5878,3,19,18,39,17,3.85,15.0,fr,49373,117,2090920,1,1,Active Shallow Crust,240.0107,57.99865,0.0,03/19/5878 +7.63931,46.912,3396,4,30,5,51,32,3.85,5.0,fr,49374,67,2090925,1,1,Active Shallow Crust,128.8954,89.99268,0.0,04/30/3396 +7.63931,46.912,397,4,25,23,49,25,3.95,5.0,fr,49375,7,2090928,1,4,Active Shallow Crust,0.0,89.99131,0.0,04/25/0397 +7.63931,46.912,8252,4,10,2,23,27,3.95,5.0,fr,49376,165,2090928,1,4,Active Shallow Crust,0.0,89.99131,0.0,04/10/8252 +7.63931,46.912,1220,12,16,12,49,33,3.95,5.0,fr,49377,24,2090928,1,4,Active Shallow Crust,0.0,89.99131,0.0,12/16/1220 +7.63931,46.912,4099,1,2,17,2,5,3.95,5.0,fr,49378,81,2090928,1,4,Active Shallow Crust,0.0,89.99131,0.0,01/02/4099 +7.63931,46.912,4537,4,14,7,23,58,3.95,5.0,fr,49379,90,2090931,1,1,Active Shallow Crust,240.0196,58.00537,0.0,04/14/4537 +7.63931,46.912,4493,4,11,10,57,18,3.95,15.0,fr,49380,89,2090935,1,1,Active Shallow Crust,0.0,89.9912,-90.0,04/11/4493 +7.63931,46.912,6098,6,24,12,57,39,4.05,5.0,fr,49381,121,2090940,1,1,Active Shallow Crust,0.0,89.98838,0.0,06/24/6098 +7.63931,46.912,9351,9,24,9,35,58,4.15,15.0,fr,49382,187,2090953,1,1,Active Shallow Crust,0.0,89.98964,0.0,09/24/9351 +7.63931,46.912,6235,10,28,20,59,26,4.25,5.0,fr,49383,124,2090964,1,1,Active Shallow Crust,0.0,89.99077,0.0,10/28/6235 +7.63931,46.912,72,6,2,12,55,4,4.25,5.0,fr,49384,1,2090967,1,1,Active Shallow Crust,240.008,57.99399,0.0,06/02/0072 +7.63931,46.912,1787,6,25,23,12,28,4.25,27.5,fr,49385,35,2090969,1,1,Active Shallow Crust,240.008,57.99399,0.0,06/25/1787 +7.63931,46.912,368,7,3,11,54,27,4.35,15.0,fr,49386,7,2090977,1,1,Active Shallow Crust,0.0,89.98903,0.0,07/03/0368 +7.63931,46.912,9001,7,26,3,49,43,4.45,15.0,fr,49387,180,2090992,1,1,Active Shallow Crust,240.0053,57.99484,0.0,07/26/9001 +7.63931,46.912,3233,1,31,21,26,20,4.55,5.0,fr,49388,64,2091006,1,1,Active Shallow Crust,0.0,89.98898,-90.0,01/31/3233 +7.63931,46.912,9982,8,22,21,9,18,4.55,5.0,fr,49389,199,2091009,1,1,Active Shallow Crust,128.8934,89.98567,0.0,08/22/9982 +7.63931,46.912,3325,1,11,16,40,2,4.65,5.0,fr,49390,66,2091012,1,2,Active Shallow Crust,0.0,89.99029,0.0,01/11/3325 +7.63931,46.912,7301,9,4,4,22,5,4.65,5.0,fr,49391,146,2091012,1,2,Active Shallow Crust,0.0,89.99029,0.0,09/04/7301 +7.63931,46.912,4099,4,14,17,52,31,5.05,27.5,fr,49392,81,2091062,1,1,Active Shallow Crust,0.0,89.9902,0.0,04/14/4099 +7.76765,44.30349,261,9,5,1,48,48,3.55,5.0,fr,49393,5,2091360,1,1,Active Shallow Crust,0.0,89.99278,0.0,09/05/0261 +7.76765,44.30349,5623,8,3,23,38,44,3.65,5.0,fr,49394,112,2091372,1,3,Active Shallow Crust,0.0,89.98714,0.0,08/03/5623 +7.76765,44.30349,6370,9,28,17,59,24,3.65,5.0,fr,49395,127,2091372,1,3,Active Shallow Crust,0.0,89.98714,0.0,09/28/6370 +7.76765,44.30349,9288,6,26,0,11,53,3.65,5.0,fr,49396,185,2091372,1,3,Active Shallow Crust,0.0,89.98714,0.0,06/26/9288 +7.76765,44.30349,4010,9,8,23,17,24,3.65,15.0,fr,49397,80,2091373,1,1,Active Shallow Crust,0.0,89.98714,0.0,09/08/4010 +7.76765,44.30349,6270,4,10,10,45,30,3.65,5.0,fr,49398,125,2091375,1,2,Active Shallow Crust,240.0007,58.01237,0.0,04/10/6270 +7.76765,44.30349,7041,3,12,4,18,56,3.65,5.0,fr,49399,140,2091375,1,2,Active Shallow Crust,240.0007,58.01237,0.0,03/12/7041 +7.76765,44.30349,7124,3,26,11,37,2,3.65,15.0,fr,49400,142,2091379,1,1,Active Shallow Crust,0.0,89.98698,-90.0,03/26/7124 +7.76765,44.30349,3877,8,8,15,1,41,3.75,5.0,fr,49401,77,2091384,1,4,Active Shallow Crust,0.0,89.98853,0.0,08/08/3877 +7.76765,44.30349,9196,2,23,17,40,56,3.75,5.0,fr,49402,183,2091384,1,4,Active Shallow Crust,0.0,89.98853,0.0,02/23/9196 +7.76765,44.30349,6164,12,7,14,3,5,3.75,5.0,fr,49403,123,2091384,1,4,Active Shallow Crust,0.0,89.98853,0.0,12/07/6164 +7.76765,44.30349,391,6,2,23,55,42,3.75,5.0,fr,49404,7,2091384,1,4,Active Shallow Crust,0.0,89.98853,0.0,06/02/0391 +7.76765,44.30349,460,9,26,10,40,39,3.75,27.5,fr,49405,9,2091395,1,1,Active Shallow Crust,128.8972,89.96745,0.0,09/26/0460 +7.76765,44.30349,9237,9,12,12,31,40,3.85,5.0,fr,49406,184,2091405,1,1,Active Shallow Crust,128.8969,89.99234,0.0,09/12/9237 +7.76765,44.30349,702,8,22,1,18,51,3.95,5.0,fr,49407,14,2091408,1,2,Active Shallow Crust,0.0,89.99089,0.0,08/22/0702 +7.76765,44.30349,6530,8,20,0,49,49,3.95,5.0,fr,49408,130,2091408,1,2,Active Shallow Crust,0.0,89.99089,0.0,08/20/6530 +7.76765,44.30349,5208,1,11,2,32,15,4.05,5.0,fr,49409,104,2091420,1,3,Active Shallow Crust,0.0,89.99188,0.0,01/11/5208 +7.76765,44.30349,1111,11,9,23,23,39,4.05,5.0,fr,49410,22,2091420,1,3,Active Shallow Crust,0.0,89.99188,0.0,11/09/1111 +7.76765,44.30349,8358,7,5,12,41,12,4.05,5.0,fr,49411,167,2091420,1,3,Active Shallow Crust,0.0,89.99188,0.0,07/05/8358 +7.76765,44.30349,2796,1,6,0,24,57,4.05,15.0,fr,49412,55,2091424,1,1,Active Shallow Crust,240.0058,58.0053,0.0,01/06/2796 +7.76765,44.30349,8999,9,7,18,44,11,4.15,5.0,fr,49413,179,2091432,1,1,Active Shallow Crust,0.0,89.98915,0.0,09/07/8999 +7.76765,44.30349,9729,3,14,17,52,48,4.15,15.0,fr,49414,194,2091433,1,1,Active Shallow Crust,0.0,89.98915,0.0,03/14/9729 +7.76765,44.30349,5070,1,18,20,39,22,4.35,5.0,fr,49415,101,2091456,1,1,Active Shallow Crust,0.0,89.99138,0.0,01/18/5070 +7.76765,44.30349,8840,8,15,12,41,17,4.35,15.0,fr,49416,176,2091466,1,1,Active Shallow Crust,128.8989,89.98241,0.0,08/15/8840 +7.76765,44.30349,109,7,1,1,0,35,4.45,27.5,fr,49417,2,2091470,1,1,Active Shallow Crust,0.0,89.98975,0.0,07/01/0109 +7.76765,44.30349,8494,2,16,14,58,55,4.55,5.0,fr,49418,169,2091480,1,1,Active Shallow Crust,0.0,89.99087,0.0,02/16/8494 +7.76765,44.30349,5882,7,15,5,54,43,4.85,15.0,fr,49419,117,2091517,1,1,Active Shallow Crust,0.0,89.9903,0.0,07/15/5882 +7.76765,44.30349,493,5,22,17,30,35,5.15,5.0,fr,49420,9,2091552,1,1,Active Shallow Crust,0.0,89.9897,0.0,05/22/0493 +7.76765,44.30349,773,7,9,9,3,10,5.55,5.0,fr,49421,15,2091609,1,1,Active Shallow Crust,128.8779,89.98987,0.0,07/09/0773 +7.76765,44.30349,7958,10,7,20,29,24,5.75,27.5,fr,49422,159,2091626,1,1,Active Shallow Crust,0.0,89.99025,0.0,10/07/7958 +-0.4495,42.85203,8743,12,12,21,11,47,3.55,5.0,fr,49423,174,2091840,1,2,Active Shallow Crust,0.0,89.98984,0.0,12/12/8743 +-0.4495,42.85203,107,7,28,10,10,19,3.55,5.0,fr,49424,2,2091840,1,2,Active Shallow Crust,0.0,89.98984,0.0,07/28/0107 +-0.4495,42.85203,3137,2,9,7,19,40,3.55,15.0,fr,49425,62,2091841,1,2,Active Shallow Crust,0.0,89.98984,0.0,02/09/3137 +-0.4495,42.85203,1507,2,12,23,38,13,3.55,15.0,fr,49426,30,2091841,1,2,Active Shallow Crust,0.0,89.98984,0.0,02/12/1507 +-0.4495,42.85203,8826,7,11,23,44,28,3.55,15.0,fr,49427,176,2091844,1,1,Active Shallow Crust,240.0118,57.99816,0.0,07/11/8826 +-0.4495,42.85203,1599,3,3,11,48,51,3.65,5.0,fr,49428,31,2091852,1,2,Active Shallow Crust,0.0,89.99012,0.0,03/03/1599 +-0.4495,42.85203,9716,4,13,23,17,9,3.65,5.0,fr,49429,194,2091852,1,2,Active Shallow Crust,0.0,89.99012,0.0,04/13/9716 +-0.4495,42.85203,3342,7,5,0,35,44,3.65,5.0,fr,49430,66,2091855,1,1,Active Shallow Crust,240.0007,58.01287,0.0,07/05/3342 +-0.4495,42.85203,8161,2,22,7,10,8,3.75,5.0,fr,49431,163,2091873,1,1,Active Shallow Crust,128.8969,89.96736,0.0,02/22/8161 +-0.4495,42.85203,379,2,22,16,1,35,3.85,5.0,fr,49432,7,2091876,1,3,Active Shallow Crust,0.0,89.98986,0.0,02/22/0379 +-0.4495,42.85203,2015,9,21,7,7,57,3.85,5.0,fr,49433,40,2091876,1,3,Active Shallow Crust,0.0,89.98986,0.0,09/21/2015 +-0.4495,42.85203,5012,11,30,2,8,12,3.85,5.0,fr,49434,100,2091876,1,3,Active Shallow Crust,0.0,89.98986,0.0,11/30/5012 +-0.4495,42.85203,7978,1,18,16,25,9,3.85,15.0,fr,49435,159,2091877,1,1,Active Shallow Crust,0.0,89.98986,0.0,01/18/7978 +-0.4495,42.85203,327,12,11,8,57,43,3.95,5.0,fr,49436,6,2091891,1,1,Active Shallow Crust,240.0192,58.0049,0.0,12/11/0327 +-0.4495,42.85203,1653,12,26,19,32,25,3.95,5.0,fr,49437,33,2091894,1,1,Active Shallow Crust,0.0,89.98997,-90.0,12/26/1653 +-0.4495,42.85203,7761,3,3,18,54,55,4.05,5.0,fr,49438,155,2091900,1,1,Active Shallow Crust,0.0,89.99013,0.0,03/03/7761 +-0.4495,42.85203,3453,10,22,13,6,42,4.05,15.0,fr,49439,69,2091904,1,1,Active Shallow Crust,240.0054,58.00571,0.0,10/22/3453 +-0.4495,42.85203,7149,4,9,10,29,30,4.05,5.0,fr,49440,142,2091906,1,1,Active Shallow Crust,0.0,89.99001,-90.0,04/09/7149 +-0.4495,42.85203,2367,5,31,8,44,45,4.25,5.0,fr,49441,47,2091924,1,1,Active Shallow Crust,0.0,89.99009,0.0,05/31/2367 +-0.4495,42.85203,7641,3,26,1,40,50,4.35,5.0,fr,49442,152,2091939,1,1,Active Shallow Crust,240.0076,57.9958,0.0,03/26/7641 +-0.4495,42.85203,4129,9,8,19,9,8,5.45,5.0,fr,49443,82,2092068,1,1,Active Shallow Crust,0.0,89.98999,0.0,09/08/4129 +-0.4495,42.85203,6574,5,24,18,50,0,5.75,15.0,fr,49444,131,2092105,1,1,Active Shallow Crust,360.0,89.99001,0.0,05/24/6574 +6.11327,44.50695,9196,7,8,15,0,9,3.65,5.0,fr,49445,183,2092332,1,1,Active Shallow Crust,0.0,89.98718,0.0,07/08/9196 +6.11327,44.50695,5902,11,13,23,56,48,3.75,5.0,fr,49446,118,2092344,1,1,Active Shallow Crust,0.0,89.98858,0.0,11/13/5902 +6.11327,44.50695,655,7,11,21,28,0,3.85,15.0,fr,49447,13,2092357,1,1,Active Shallow Crust,0.0,89.98981,0.0,07/11/0655 +6.11327,44.50695,3571,11,6,1,59,37,3.95,5.0,fr,49448,71,2092368,1,1,Active Shallow Crust,0.0,89.99092,0.0,11/06/3571 +6.11327,44.50695,3370,9,13,8,42,39,4.05,5.0,fr,49449,67,2092380,1,1,Active Shallow Crust,0.0,89.99191,0.0,09/13/3370 +6.11327,44.50695,7464,2,28,18,2,52,4.05,15.0,fr,49450,149,2092384,1,1,Active Shallow Crust,240.0057,58.00622,0.0,02/28/7464 +6.11327,44.50695,1275,3,11,5,45,6,4.55,5.0,fr,49451,25,2092440,1,1,Active Shallow Crust,0.0,89.99091,0.0,03/11/1275 +6.11327,44.50695,9818,4,14,0,31,53,4.75,5.0,fr,49452,196,2092467,1,1,Active Shallow Crust,240.0066,58.00459,0.0,04/14/9818 +2.97311,49.75599,987,8,14,10,54,0,3.55,5.0,fr,49453,19,2092800,1,1,Active Shallow Crust,0.0,89.99023,0.0,08/14/0987 +2.97311,49.75599,9055,1,19,5,30,18,3.55,27.5,fr,49454,181,2092802,1,1,Active Shallow Crust,0.0,89.99023,0.0,01/19/9055 +2.97311,49.75599,8409,9,5,12,3,15,3.65,15.0,fr,49455,168,2092822,1,1,Active Shallow Crust,128.8996,89.96358,0.0,09/05/8409 +2.97311,49.75599,6908,5,15,13,29,47,3.85,15.0,fr,49456,138,2092837,1,1,Active Shallow Crust,0.0,89.99078,0.0,05/15/6908 +2.97311,49.75599,1570,4,13,13,15,13,4.05,15.0,fr,49457,31,2092870,1,1,Active Shallow Crust,128.8904,89.99359,0.0,04/13/1570 +2.97311,49.75599,9522,8,24,1,41,31,4.35,5.0,fr,49458,190,2092896,1,1,Active Shallow Crust,0.0,89.98962,0.0,08/24/9522 +2.97311,49.75599,9188,9,16,5,47,27,5.15,5.0,fr,49459,183,2092992,1,1,Active Shallow Crust,0.0,89.99019,0.0,09/16/9188 +2.97311,49.75599,2178,3,29,1,18,7,5.45,27.5,fr,49460,43,2093030,1,1,Active Shallow Crust,0.0,89.99013,0.0,03/29/2178 +2.97311,49.75599,6697,4,19,22,39,50,5.45,27.5,fr,49461,133,2093039,1,1,Active Shallow Crust,128.8763,89.98902,0.0,04/19/6697 +1.5239,51.51987,7004,1,17,19,51,58,3.55,5.0,fr,49462,140,2093280,1,2,Active Shallow Crust,0.0,89.99059,0.0,01/17/7004 +1.5239,51.51987,5522,12,28,8,21,52,3.55,5.0,fr,49463,110,2093280,1,2,Active Shallow Crust,0.0,89.99059,0.0,12/28/5522 +1.5239,51.51987,1065,3,30,7,57,32,3.55,5.0,fr,49464,21,2093289,1,1,Active Shallow Crust,128.8957,89.99373,0.0,03/30/1065 +1.5239,51.51987,4874,10,31,21,30,48,3.75,5.0,fr,49465,97,2093304,1,1,Active Shallow Crust,0.0,89.99003,0.0,10/31/4874 +1.5239,51.51987,2168,5,16,3,4,8,3.75,5.0,fr,49466,43,2093307,1,1,Active Shallow Crust,240.0089,58.0178,0.0,05/16/2168 +1.5239,51.51987,2368,8,29,2,48,45,3.95,5.0,fr,49467,47,2093328,1,1,Active Shallow Crust,0.0,89.9901,0.0,08/29/2368 +-0.84518,50.10703,2369,1,14,21,42,2,3.75,27.5,fr,49468,47,2093786,1,1,Active Shallow Crust,0.0,89.98972,0.0,01/14/2369 +4.51402,50.5543,6156,1,17,2,3,39,3.55,5.0,fr,49469,123,2094240,1,3,Active Shallow Crust,0.0,89.98718,0.0,01/17/6156 +4.51402,50.5543,302,3,7,3,54,29,3.55,5.0,fr,49470,6,2094240,1,3,Active Shallow Crust,0.0,89.98718,0.0,03/07/0302 +4.51402,50.5543,1887,9,6,7,1,8,3.55,5.0,fr,49471,37,2094240,1,3,Active Shallow Crust,0.0,89.98718,0.0,09/06/1887 +4.51402,50.5543,6205,9,5,19,19,22,3.55,15.0,fr,49472,124,2094241,1,1,Active Shallow Crust,0.0,89.98718,0.0,09/05/6205 +4.51402,50.5543,8474,1,24,19,48,10,3.55,5.0,fr,49473,169,2094243,1,1,Active Shallow Crust,240.0123,57.99827,0.0,01/24/8474 +4.51402,50.5543,8373,4,24,18,48,34,3.65,5.0,fr,49474,167,2094252,1,2,Active Shallow Crust,0.0,89.98858,0.0,04/24/8373 +4.51402,50.5543,6228,12,27,9,0,21,3.65,5.0,fr,49475,124,2094252,1,2,Active Shallow Crust,0.0,89.98858,0.0,12/27/6228 +4.51402,50.5543,3486,8,1,17,17,12,3.65,27.5,fr,49476,69,2094254,1,1,Active Shallow Crust,0.0,89.98858,0.0,08/01/3486 +4.51402,50.5543,2200,2,16,22,35,10,3.65,5.0,fr,49477,43,2094255,1,2,Active Shallow Crust,240.0012,58.01326,0.0,02/16/2200 +4.51402,50.5543,9323,4,23,0,27,22,3.65,5.0,fr,49478,186,2094255,1,2,Active Shallow Crust,240.0012,58.01326,0.0,04/23/9323 +4.51402,50.5543,9737,7,14,2,20,13,3.65,5.0,fr,49479,194,2094258,1,1,Active Shallow Crust,0.0,89.98845,-90.0,07/14/9737 +4.51402,50.5543,6170,7,27,18,7,24,3.75,5.0,fr,49480,123,2094264,1,5,Active Shallow Crust,0.0,89.98982,0.0,07/27/6170 +4.51402,50.5543,1127,5,2,6,5,12,3.75,5.0,fr,49481,22,2094264,1,5,Active Shallow Crust,0.0,89.98982,0.0,05/02/1127 +4.51402,50.5543,3664,7,29,9,42,19,3.75,5.0,fr,49482,73,2094264,1,5,Active Shallow Crust,0.0,89.98982,0.0,07/29/3664 +4.51402,50.5543,1761,6,4,6,53,3,3.75,5.0,fr,49483,35,2094264,1,5,Active Shallow Crust,0.0,89.98982,0.0,06/04/1761 +4.51402,50.5543,9108,2,1,1,17,2,3.75,5.0,fr,49484,182,2094264,1,5,Active Shallow Crust,0.0,89.98982,0.0,02/01/9108 +4.51402,50.5543,6350,9,2,21,36,8,3.75,15.0,fr,49485,126,2094265,1,3,Active Shallow Crust,0.0,89.98982,0.0,09/02/6350 +4.51402,50.5543,3716,5,29,22,14,53,3.75,15.0,fr,49486,74,2094265,1,3,Active Shallow Crust,0.0,89.98982,0.0,05/29/3716 +4.51402,50.5543,32,2,26,17,47,12,3.75,15.0,fr,49487,0,2094265,1,3,Active Shallow Crust,0.0,89.98982,0.0,02/26/0032 +4.51402,50.5543,6805,6,9,0,6,24,3.75,15.0,fr,49488,136,2094268,1,1,Active Shallow Crust,240.009,58.01765,0.0,06/09/6805 +4.51402,50.5543,318,10,28,2,39,3,3.75,27.5,fr,49489,6,2094269,1,1,Active Shallow Crust,240.009,58.01765,0.0,10/28/0318 +4.51402,50.5543,4096,5,1,20,32,50,3.75,5.0,fr,49490,81,2094273,1,1,Active Shallow Crust,128.8972,89.96706,0.0,05/01/4096 +4.51402,50.5543,5421,2,23,9,33,36,3.85,5.0,fr,49491,108,2094276,1,1,Active Shallow Crust,0.0,89.99093,0.0,02/23/5421 +4.51402,50.5543,9595,10,20,2,38,47,3.95,5.0,fr,49492,191,2094288,1,2,Active Shallow Crust,0.0,89.99191,0.0,10/20/9595 +4.51402,50.5543,4403,10,23,1,3,56,3.95,5.0,fr,49493,88,2094288,1,2,Active Shallow Crust,0.0,89.99191,0.0,10/23/4403 +4.51402,50.5543,9308,7,31,14,59,5,3.95,15.0,fr,49494,186,2094289,1,1,Active Shallow Crust,0.0,89.99191,0.0,07/31/9308 +4.51402,50.5543,5761,10,16,13,11,27,3.95,5.0,fr,49495,115,2094291,1,1,Active Shallow Crust,240.0204,58.00475,0.0,10/16/5761 +4.51402,50.5543,4087,2,14,14,18,26,3.95,5.0,fr,49496,81,2094294,1,1,Active Shallow Crust,0.0,89.99182,-90.0,02/14/4087 +4.51402,50.5543,6114,7,23,9,46,32,4.05,5.0,fr,49497,122,2094303,1,1,Active Shallow Crust,240.0062,58.00591,0.0,07/23/6114 +4.51402,50.5543,3521,6,27,10,15,24,4.15,5.0,fr,49498,70,2094312,1,1,Active Shallow Crust,0.0,89.99036,0.0,06/27/3521 +4.51402,50.5543,3075,12,13,21,28,10,4.15,27.5,fr,49499,61,2094317,1,1,Active Shallow Crust,240.0097,57.99747,0.0,12/13/3075 +4.51402,50.5543,4456,12,26,23,50,55,4.15,15.0,fr,49500,89,2094322,1,1,Active Shallow Crust,128.8976,89.99358,0.0,12/26/4456 +4.51402,50.5543,6741,4,19,19,8,35,4.25,5.0,fr,49501,134,2094324,1,1,Active Shallow Crust,0.0,89.99142,0.0,04/19/6741 +4.51402,50.5543,4944,4,15,1,34,25,4.25,15.0,fr,49502,98,2094331,1,1,Active Shallow Crust,0.0,89.99132,-90.0,04/15/4944 +4.51402,50.5543,6488,12,29,4,14,46,4.35,5.0,fr,49503,129,2094336,1,1,Active Shallow Crust,0.0,89.9898,0.0,12/29/6488 +4.51402,50.5543,6697,6,18,9,6,25,4.35,5.0,fr,49504,133,2094339,1,1,Active Shallow Crust,240.0097,57.99605,0.0,06/18/6697 +4.51402,50.5543,3972,9,3,7,5,23,4.35,5.0,fr,49505,79,2094345,1,1,Active Shallow Crust,128.8972,89.98273,0.0,09/03/3972 +4.51402,50.5543,3726,10,15,8,26,0,4.55,5.0,fr,49506,74,2094360,1,1,Active Shallow Crust,0.0,89.98987,0.0,10/15/3726 +4.51402,50.5543,3934,6,15,13,9,12,5.95,5.0,fr,49507,78,2094528,1,1,Active Shallow Crust,0.0,89.98988,0.0,06/15/3934 +0.5692,42.26911,9014,6,5,19,20,2,3.55,5.0,fr,49508,180,2094726,1,2,Active Shallow Crust,0.0,89.98962,-90.0,06/05/9014 +0.5692,42.26911,3527,11,13,2,7,13,3.55,5.0,fr,49509,70,2094726,1,2,Active Shallow Crust,0.0,89.98962,-90.0,11/13/3527 +0.5692,42.26911,4128,1,24,0,18,14,3.75,5.0,fr,49510,82,2094747,1,1,Active Shallow Crust,240.0079,58.01751,0.0,01/24/4128 +0.5692,42.26911,1244,5,27,15,29,38,3.85,15.0,fr,49511,24,2094757,1,1,Active Shallow Crust,0.0,89.9901,0.0,05/27/1244 +0.5692,42.26911,5264,1,25,15,51,48,3.95,5.0,fr,49512,105,2094768,1,1,Active Shallow Crust,0.0,89.99,0.0,01/25/5264 +0.5692,42.26911,6817,11,20,9,31,36,4.05,5.0,fr,49513,136,2094780,1,1,Active Shallow Crust,0.0,89.99004,0.0,11/20/6817 +0.5692,42.26911,559,9,16,13,5,34,4.05,15.0,fr,49514,11,2094781,1,1,Active Shallow Crust,0.0,89.99004,0.0,09/16/0559 +0.5692,42.26911,9135,10,22,18,38,43,4.25,15.0,fr,49515,182,2094811,1,1,Active Shallow Crust,0.0,89.98988,-90.0,10/22/9135 +0.5692,42.26911,4753,4,20,15,37,0,4.95,27.5,fr,49516,95,2094890,1,1,Active Shallow Crust,0.0,89.98995,0.0,04/20/4753 +1.80752,52.29759,9560,2,15,20,56,59,3.55,5.0,fr,49517,191,2095200,1,1,Active Shallow Crust,0.0,89.99075,0.0,02/15/9560 +1.80752,52.29759,3241,9,30,10,29,43,3.85,5.0,fr,49518,64,2095236,1,1,Active Shallow Crust,0.0,89.99017,0.0,09/30/3241 +1.80752,52.29759,7427,6,30,20,43,2,4.85,5.0,fr,49519,148,2095359,1,1,Active Shallow Crust,240.0121,58.00275,0.0,06/30/7427 +-0.19315,51.58158,7433,11,14,14,11,44,3.75,5.0,fr,49520,148,2095704,1,1,Active Shallow Crust,0.0,89.99004,0.0,11/14/7433 +-0.19315,51.58158,459,10,9,1,2,11,3.95,15.0,fr,49521,9,2095729,1,1,Active Shallow Crust,0.0,89.98999,0.0,10/09/0459 +5.15383,52.10369,3228,3,21,4,12,10,3.55,27.5,fr,49522,64,2096168,1,1,Active Shallow Crust,0.0,89.98746,-90.0,03/21/3228 +5.15383,52.10369,3933,12,18,18,17,17,3.75,15.0,fr,49523,78,2096194,1,1,Active Shallow Crust,128.896,89.96758,0.0,12/18/3933 +5.15383,52.10369,8705,2,17,8,7,36,3.85,5.0,fr,49524,174,2096196,1,1,Active Shallow Crust,0.0,89.99123,0.0,02/17/8705 +5.15383,52.10369,6708,6,5,10,31,55,3.85,5.0,fr,49525,134,2096202,1,1,Active Shallow Crust,0.0,89.99113,-90.0,06/05/6708 +5.15383,52.10369,5656,10,15,11,53,4,4.15,15.0,fr,49526,113,2096233,1,1,Active Shallow Crust,0.0,89.99068,0.0,10/15/5656 +3.49126,41.20683,4743,6,24,12,3,59,3.55,5.0,fr,49527,94,2096640,1,1,Active Shallow Crust,0.0,89.98862,0.0,06/24/4743 +3.49126,41.20683,674,12,31,1,42,30,3.55,15.0,fr,49528,13,2096641,1,1,Active Shallow Crust,0.0,89.98862,0.0,12/31/0674 +3.49126,41.20683,7401,12,11,0,18,42,3.75,5.0,fr,49529,148,2096664,1,1,Active Shallow Crust,0.0,89.99096,0.0,12/11/7401 +3.49126,41.20683,9280,9,27,20,17,24,3.95,15.0,fr,49530,185,2096695,1,1,Active Shallow Crust,0.0,89.99032,-90.0,09/27/9280 +3.49126,41.20683,2680,5,30,10,47,20,4.05,5.0,fr,49531,53,2096700,1,1,Active Shallow Crust,0.0,89.98933,0.0,05/30/2680 +3.49126,41.20683,2,11,29,7,37,17,4.45,5.0,fr,49532,0,2096757,1,1,Active Shallow Crust,128.8933,89.99394,0.0,11/29/0002 +3.49126,41.20683,5133,12,22,16,49,30,5.05,5.0,fr,49533,102,2096820,1,1,Active Shallow Crust,0.0,89.98988,0.0,12/22/5133 +7.17884,47.75985,1988,9,27,11,52,54,3.55,5.0,fr,49534,39,2097120,1,6,Active Shallow Crust,0.0,89.99322,0.0,09/27/1988 +7.17884,47.75985,544,5,12,8,55,55,3.55,5.0,fr,49535,10,2097120,1,6,Active Shallow Crust,0.0,89.99322,0.0,05/12/0544 +7.17884,47.75985,3663,2,7,22,11,23,3.55,5.0,fr,49536,73,2097120,1,6,Active Shallow Crust,0.0,89.99322,0.0,02/07/3663 +7.17884,47.75985,9541,1,25,22,12,30,3.55,5.0,fr,49537,190,2097120,1,6,Active Shallow Crust,0.0,89.99322,0.0,01/25/9541 +7.17884,47.75985,7518,9,20,19,36,1,3.55,5.0,fr,49538,150,2097120,1,6,Active Shallow Crust,0.0,89.99322,0.0,09/20/7518 +7.17884,47.75985,4013,10,21,23,0,9,3.55,5.0,fr,49539,80,2097120,1,6,Active Shallow Crust,0.0,89.99322,0.0,10/21/4013 +7.17884,47.75985,8208,7,9,11,50,39,3.55,15.0,fr,49540,164,2097121,1,2,Active Shallow Crust,0.0,89.99322,0.0,07/09/8208 +7.17884,47.75985,4844,3,3,22,46,19,3.55,15.0,fr,49541,96,2097121,1,2,Active Shallow Crust,0.0,89.99322,0.0,03/03/4844 +7.17884,47.75985,9330,12,17,5,17,34,3.55,15.0,fr,49542,186,2097127,1,1,Active Shallow Crust,0.0,89.99314,-90.0,12/17/9330 +7.17884,47.75985,4093,6,24,15,34,12,3.65,5.0,fr,49543,81,2097132,1,3,Active Shallow Crust,0.0,89.98792,0.0,06/24/4093 +7.17884,47.75985,3641,10,9,2,26,17,3.65,5.0,fr,49544,72,2097132,1,3,Active Shallow Crust,0.0,89.98792,0.0,10/09/3641 +7.17884,47.75985,8978,4,11,16,52,11,3.65,5.0,fr,49545,179,2097132,1,3,Active Shallow Crust,0.0,89.98792,0.0,04/11/8978 +7.17884,47.75985,7401,9,14,10,50,21,3.65,27.5,fr,49546,148,2097134,1,1,Active Shallow Crust,0.0,89.98792,0.0,09/14/7401 +7.17884,47.75985,4163,2,26,2,37,48,3.65,27.5,fr,49547,83,2097137,1,1,Active Shallow Crust,240.0005,58.01342,0.0,02/26/4163 +7.17884,47.75985,976,11,27,22,23,11,3.75,5.0,fr,49548,19,2097144,1,1,Active Shallow Crust,0.0,89.98923,0.0,11/27/0976 +7.17884,47.75985,1034,12,28,13,50,30,3.75,15.0,fr,49549,20,2097145,1,1,Active Shallow Crust,0.0,89.98923,0.0,12/28/1034 +7.17884,47.75985,452,12,30,6,17,35,3.75,27.5,fr,49550,9,2097146,1,1,Active Shallow Crust,0.0,89.98923,0.0,12/30/0452 +7.17884,47.75985,1860,4,10,7,58,46,3.75,15.0,fr,49551,37,2097151,1,1,Active Shallow Crust,0.0,89.98911,-90.0,04/10/1860 +7.17884,47.75985,4946,1,4,16,35,1,3.75,5.0,fr,49552,98,2097153,1,2,Active Shallow Crust,128.8963,89.96751,0.0,01/04/4946 +7.17884,47.75985,109,7,16,9,8,30,3.75,5.0,fr,49553,2,2097153,1,2,Active Shallow Crust,128.8963,89.96751,0.0,07/16/0109 +7.17884,47.75985,5514,4,16,7,39,25,3.85,5.0,fr,49554,110,2097156,1,1,Active Shallow Crust,0.0,89.9904,0.0,04/16/5514 +7.17884,47.75985,3159,5,29,20,0,40,3.85,5.0,fr,49555,63,2097159,1,2,Active Shallow Crust,240.0115,57.9974,0.0,05/29/3159 +7.17884,47.75985,6707,12,12,19,3,58,3.85,5.0,fr,49556,134,2097159,1,2,Active Shallow Crust,240.0115,57.9974,0.0,12/12/6707 +7.17884,47.75985,1155,1,6,14,32,40,3.85,5.0,fr,49557,23,2097162,1,1,Active Shallow Crust,0.0,89.99029,-90.0,01/06/1155 +7.17884,47.75985,8231,2,7,21,26,45,3.85,15.0,fr,49558,164,2097166,1,1,Active Shallow Crust,128.8953,89.99281,0.0,02/07/8231 +7.17884,47.75985,9396,12,23,5,1,0,3.95,5.0,fr,49559,187,2097168,1,2,Active Shallow Crust,0.0,89.99145,0.0,12/23/9396 +7.17884,47.75985,9103,4,8,18,4,47,3.95,5.0,fr,49560,182,2097168,1,2,Active Shallow Crust,0.0,89.99145,0.0,04/08/9103 +7.17884,47.75985,7457,2,6,7,42,29,3.95,15.0,fr,49561,149,2097169,1,1,Active Shallow Crust,0.0,89.99145,0.0,02/06/7457 +7.17884,47.75985,2193,1,7,9,52,21,4.05,5.0,fr,49562,43,2097180,1,1,Active Shallow Crust,0.0,89.98856,0.0,01/07/2193 +7.17884,47.75985,8548,10,30,4,50,50,4.05,15.0,fr,49563,170,2097181,1,1,Active Shallow Crust,0.0,89.98856,0.0,10/30/8548 +7.17884,47.75985,6706,1,31,1,18,32,4.05,5.0,fr,49564,134,2097186,1,1,Active Shallow Crust,0.0,89.98843,-90.0,01/31/6706 +7.17884,47.75985,9417,6,9,2,37,27,4.15,5.0,fr,49565,188,2097192,1,1,Active Shallow Crust,0.0,89.98981,0.0,06/09/9417 +7.17884,47.75985,3881,2,16,8,42,2,4.25,5.0,fr,49566,77,2097204,1,1,Active Shallow Crust,0.0,89.99091,0.0,02/16/3881 +7.17884,47.75985,567,3,22,23,57,10,4.25,5.0,fr,49567,11,2097210,1,1,Active Shallow Crust,0.0,89.99081,-90.0,03/22/0567 +7.17884,47.75985,9193,5,30,15,14,43,4.45,5.0,fr,49568,183,2097228,1,4,Active Shallow Crust,0.0,89.99038,0.0,05/30/9193 +7.17884,47.75985,4772,3,13,1,25,18,4.45,5.0,fr,49569,95,2097228,1,4,Active Shallow Crust,0.0,89.99038,0.0,03/13/4772 +7.17884,47.75985,5701,6,15,7,49,32,4.45,5.0,fr,49570,114,2097228,1,4,Active Shallow Crust,0.0,89.99038,0.0,06/15/5701 +7.17884,47.75985,2015,7,18,14,21,47,4.45,5.0,fr,49571,40,2097228,1,4,Active Shallow Crust,0.0,89.99038,0.0,07/18/2015 +7.17884,47.75985,2052,10,4,15,18,41,4.45,15.0,fr,49572,41,2097229,1,1,Active Shallow Crust,0.0,89.99038,0.0,10/04/2052 +7.17884,47.75985,9609,6,5,16,58,3,4.55,5.0,fr,49573,192,2097240,1,1,Active Shallow Crust,0.0,89.98928,0.0,06/05/9609 +7.17884,47.75985,6679,2,8,0,3,40,4.55,5.0,fr,49574,133,2097243,1,1,Active Shallow Crust,240.0099,57.9975,0.0,02/08/6679 +7.17884,47.75985,53,9,4,2,19,39,4.85,15.0,fr,49575,1,2097277,1,1,Active Shallow Crust,0.0,89.98937,0.0,09/04/0053 +7.17884,47.75985,7826,2,17,4,55,21,5.25,5.0,fr,49576,156,2097324,1,1,Active Shallow Crust,0.0,89.99043,0.0,02/17/7826 +7.17884,47.75985,9552,6,17,10,22,11,5.35,15.0,fr,49577,191,2097337,1,1,Active Shallow Crust,0.0,89.98975,0.0,06/17/9552 +2.82992,48.1867,3357,9,2,19,44,43,3.55,5.0,fr,49578,67,2097600,1,2,Active Shallow Crust,0.0,89.98991,0.0,09/02/3357 +2.82992,48.1867,7701,9,24,7,57,28,3.55,5.0,fr,49579,154,2097600,1,2,Active Shallow Crust,0.0,89.98991,0.0,09/24/7701 +2.82992,48.1867,2192,2,16,14,5,34,3.65,15.0,fr,49580,43,2097616,1,1,Active Shallow Crust,240.0016,58.0125,0.0,02/16/2192 +2.82992,48.1867,2730,9,19,6,47,40,4.05,5.0,fr,49581,54,2097660,1,1,Active Shallow Crust,0.0,89.99055,0.0,09/19/2730 +-1.29931,49.68134,1941,8,22,2,48,26,3.55,15.0,fr,49582,38,2098081,1,1,Active Shallow Crust,0.0,89.99021,0.0,08/22/1941 +-1.29931,49.68134,3915,7,7,12,44,56,4.05,5.0,fr,49583,78,2098140,1,1,Active Shallow Crust,0.0,89.98991,0.0,07/07/3915 +-1.29931,49.68134,9428,11,11,5,37,43,4.65,15.0,fr,49584,188,2098213,1,1,Active Shallow Crust,0.0,89.98988,0.0,11/11/9428 +-1.29931,49.68134,9814,8,1,3,20,46,4.75,5.0,fr,49585,196,2098227,1,1,Active Shallow Crust,240.0087,58.00479,0.0,08/01/9814 +-1.29931,49.68134,5571,10,21,19,24,48,4.85,5.0,fr,49586,111,2098236,1,1,Active Shallow Crust,0.0,89.99014,0.0,10/21/5571 +-1.29931,49.68134,2744,8,18,4,24,34,5.15,5.0,fr,49587,54,2098278,1,1,Active Shallow Crust,0.0,89.99006,-90.0,08/18/2744 +-1.29931,49.68134,5915,1,7,1,25,18,5.95,15.0,fr,49588,118,2098378,1,1,Active Shallow Crust,128.8605,89.98804,0.0,01/07/5915 +1.93425,47.35426,351,9,28,4,26,54,3.75,15.0,fr,49589,7,2098585,1,1,Active Shallow Crust,0.0,89.9905,0.0,09/28/0351 +1.93425,47.35426,5036,6,28,7,28,43,3.85,5.0,fr,49590,100,2098599,1,1,Active Shallow Crust,240.0111,57.99787,0.0,06/28/5036 +1.93425,47.35426,2974,1,13,8,21,10,4.05,15.0,fr,49591,59,2098621,1,1,Active Shallow Crust,0.0,89.99039,0.0,01/13/2974 +1.93425,47.35426,7883,1,3,15,40,32,4.15,5.0,fr,49592,157,2098632,1,2,Active Shallow Crust,0.0,89.98973,0.0,01/03/7883 +1.93425,47.35426,3058,7,9,10,17,52,4.15,5.0,fr,49593,61,2098632,1,2,Active Shallow Crust,0.0,89.98973,0.0,07/09/3058 +1.93425,47.35426,2221,10,17,10,23,41,4.65,5.0,fr,49594,44,2098692,1,1,Active Shallow Crust,0.0,89.98989,0.0,10/17/2221 +1.93425,47.35426,946,2,2,3,14,59,5.95,27.5,fr,49595,18,2098856,1,1,Active Shallow Crust,0.0,89.98997,-90.0,02/02/0946 +-2.176,50.81429,1844,6,15,19,5,52,3.65,5.0,fr,49596,36,2099052,1,1,Active Shallow Crust,0.0,89.98864,0.0,06/15/1844 +-2.176,50.81429,8320,5,9,11,6,19,3.95,15.0,fr,49597,166,2099089,1,1,Active Shallow Crust,0.0,89.98995,0.0,05/09/8320 +-2.176,50.81429,9696,5,7,23,58,28,4.55,5.0,fr,49598,193,2099160,1,1,Active Shallow Crust,0.0,89.98992,0.0,05/07/9696 +-0.70165,49.98368,9244,10,19,18,53,33,3.55,15.0,fr,49599,184,2099527,1,1,Active Shallow Crust,0.0,89.99016,-90.0,10/19/9244 +6.1779,51.75277,8784,12,11,2,53,27,3.65,5.0,fr,49600,175,2100012,1,1,Active Shallow Crust,0.0,89.98887,0.0,12/11/8784 +6.1779,51.75277,3896,6,24,0,28,22,4.35,5.0,fr,49601,77,2100099,1,1,Active Shallow Crust,240.0095,57.99619,0.0,06/24/3896 +6.1779,51.75277,2896,11,21,5,40,45,4.75,15.0,fr,49602,57,2100145,1,1,Active Shallow Crust,0.0,89.99059,0.0,11/21/2896 +6.177884,51.75275,667,8,31,1,56,58,6.95,15.09976,fr,49603,13,2100417,1,1,Active Shallow Crust,128.7655,89.99042,0.0,08/31/0667 +2.8539,49.23265,254,5,18,19,43,20,3.55,5.0,fr,49604,5,2100480,1,1,Active Shallow Crust,0.0,89.99012,0.0,05/18/0254 +2.8539,49.23265,2071,8,26,9,1,20,3.55,15.0,fr,49605,41,2100481,1,1,Active Shallow Crust,0.0,89.99012,0.0,08/26/2071 +2.8539,49.23265,1704,5,17,11,13,8,4.15,5.0,fr,49606,34,2100552,1,1,Active Shallow Crust,0.0,89.9901,0.0,05/17/1704 +-3.72967,48.27643,1635,10,22,9,21,50,3.55,5.0,fr,49607,32,2100960,1,2,Active Shallow Crust,0.0,89.98994,0.0,10/22/1635 +-3.72967,48.27643,9682,6,4,15,14,29,3.55,5.0,fr,49608,193,2100960,1,2,Active Shallow Crust,0.0,89.98994,0.0,06/04/9682 +-3.72967,48.27643,2710,8,2,6,49,45,3.55,5.0,fr,49609,54,2100966,1,1,Active Shallow Crust,0.0,89.98981,-90.0,08/02/2710 +-3.72967,48.27643,8978,2,17,7,47,3,3.65,5.0,fr,49610,179,2100972,1,2,Active Shallow Crust,0.0,89.99103,0.0,02/17/8978 +-3.72967,48.27643,6747,7,23,1,47,2,3.65,5.0,fr,49611,134,2100972,1,2,Active Shallow Crust,0.0,89.99103,0.0,07/23/6747 +-3.72967,48.27643,5657,3,20,2,42,37,3.85,5.0,fr,49612,113,2100996,1,1,Active Shallow Crust,0.0,89.99049,0.0,03/20/5657 +-3.72967,48.27643,7237,9,1,16,12,44,3.85,5.0,fr,49613,144,2101005,1,1,Active Shallow Crust,128.8955,89.99287,0.0,09/01/7237 +-3.72967,48.27643,2583,10,13,18,42,4,3.95,5.0,fr,49614,51,2101008,1,1,Active Shallow Crust,0.0,89.98941,0.0,10/13/2583 +-3.72967,48.27643,575,7,10,19,0,22,4.05,5.0,fr,49615,11,2101020,1,2,Active Shallow Crust,0.0,89.99056,0.0,07/10/0575 +-3.72967,48.27643,5343,3,17,17,15,38,4.05,5.0,fr,49616,106,2101020,1,2,Active Shallow Crust,0.0,89.99056,0.0,03/17/5343 +-3.72967,48.27643,5802,8,23,13,12,33,4.35,5.0,fr,49617,116,2101056,1,2,Active Shallow Crust,0.0,89.99065,0.0,08/23/5802 +-3.72967,48.27643,6366,10,21,6,11,14,4.35,5.0,fr,49618,127,2101056,1,2,Active Shallow Crust,0.0,89.99065,0.0,10/21/6366 +-3.72967,48.27643,7292,2,17,2,59,50,4.45,5.0,fr,49619,145,2101071,1,1,Active Shallow Crust,240.0056,57.99493,0.0,02/17/7292 +-3.72967,48.27643,2695,10,11,5,37,2,4.75,5.0,fr,49620,53,2101107,1,1,Active Shallow Crust,240.008,58.00471,0.0,10/11/2695 +-3.72967,48.27643,9108,12,9,14,38,40,4.85,5.0,fr,49621,182,2101116,1,1,Active Shallow Crust,0.0,89.99023,0.0,12/09/9108 +-3.72967,48.27643,2367,8,31,1,12,50,4.85,15.0,fr,49622,47,2101117,1,1,Active Shallow Crust,0.0,89.99023,0.0,08/31/2367 +6.35298,43.60682,9079,7,3,17,17,43,3.55,5.0,fr,49623,181,2101443,1,1,Active Shallow Crust,240.0123,57.99854,0.0,07/03/9079 +6.35298,43.60682,1656,12,10,21,7,33,3.55,15.0,fr,49624,33,2101447,1,1,Active Shallow Crust,0.0,89.99261,-90.0,12/10/1656 +6.35298,43.60682,3605,5,17,19,10,40,3.75,15.0,fr,49625,72,2101465,1,2,Active Shallow Crust,0.0,89.9884,0.0,05/17/3605 +6.35298,43.60682,3277,4,16,10,5,0,3.75,15.0,fr,49626,65,2101465,1,2,Active Shallow Crust,0.0,89.9884,0.0,04/16/3277 +6.35298,43.60682,9154,11,16,1,3,10,3.85,5.0,fr,49627,183,2101476,1,1,Active Shallow Crust,0.0,89.98966,0.0,11/16/9154 +6.35298,43.60682,5282,10,15,23,27,16,3.95,5.0,fr,49628,105,2101488,1,1,Active Shallow Crust,0.0,89.99078,0.0,10/15/5282 +6.35298,43.60682,1432,12,13,6,47,51,3.95,5.0,fr,49629,28,2101494,1,1,Active Shallow Crust,0.0,89.99068,-90.0,12/13/1432 +6.35298,43.60682,3579,10,2,22,22,36,4.05,5.0,fr,49630,71,2101500,1,3,Active Shallow Crust,0.0,89.99179,0.0,10/02/3579 +6.35298,43.60682,5795,1,26,6,23,25,4.05,5.0,fr,49631,115,2101500,1,3,Active Shallow Crust,0.0,89.99179,0.0,01/26/5795 +6.35298,43.60682,6373,4,6,19,20,28,4.05,5.0,fr,49632,127,2101500,1,3,Active Shallow Crust,0.0,89.99179,0.0,04/06/6373 +6.35298,43.60682,471,6,3,23,51,31,4.05,5.0,fr,49633,9,2101506,1,1,Active Shallow Crust,0.0,89.99169,-90.0,06/03/0471 +6.35298,43.60682,3582,6,26,18,5,41,4.15,5.0,fr,49634,71,2101518,1,1,Active Shallow Crust,0.0,89.98889,-90.0,06/26/3582 +6.35298,43.60682,8160,2,24,19,24,13,4.25,5.0,fr,49635,163,2101533,1,1,Active Shallow Crust,128.8952,89.98084,0.0,02/24/8160 +6.35298,43.60682,1534,9,1,14,12,45,5.55,5.0,fr,49636,30,2101680,1,1,Active Shallow Crust,0.0,89.98978,0.0,09/01/1534 +0.0826,44.67722,7218,1,17,20,38,55,3.55,5.0,fr,49637,144,2101923,1,2,Active Shallow Crust,240.012,57.99812,0.0,01/17/7218 +0.0826,44.67722,1635,4,24,16,16,18,3.55,5.0,fr,49638,32,2101923,1,2,Active Shallow Crust,240.012,57.99812,0.0,04/24/1635 +0.0826,44.67722,1353,4,27,11,14,57,3.65,5.0,fr,49639,27,2101941,1,1,Active Shallow Crust,128.9006,89.96352,0.0,04/27/1353 +0.0826,44.67722,8554,2,1,11,12,51,3.85,5.0,fr,49640,171,2101956,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/01/8554 +0.0826,44.67722,1417,8,31,18,53,38,4.05,5.0,fr,49641,28,2101980,1,1,Active Shallow Crust,0.0,89.98998,0.0,08/31/1417 +0.0826,44.67722,8062,11,30,14,15,31,4.75,5.0,fr,49642,161,2102073,1,1,Active Shallow Crust,128.8892,89.98808,0.0,11/30/8062 +9.44003,48.89128,762,2,11,0,7,52,3.65,15.0,fr,49643,15,2102893,1,1,Active Shallow Crust,0.0,89.98818,0.0,02/11/0762 +9.44003,48.89128,5042,2,4,16,37,6,3.75,5.0,fr,49644,100,2102904,1,1,Active Shallow Crust,0.0,89.98946,0.0,02/04/5042 +9.44003,48.89128,956,2,11,0,8,3,3.95,5.0,fr,49645,19,2102928,1,1,Active Shallow Crust,0.0,89.99163,0.0,02/11/0956 +9.44003,48.89128,4058,1,13,23,53,52,3.95,15.0,fr,49646,81,2102932,1,1,Active Shallow Crust,240.0209,58.00476,0.0,01/13/4058 +9.44003,48.89128,8510,5,29,21,2,58,4.05,5.0,fr,49647,170,2102940,1,1,Active Shallow Crust,0.0,89.99255,0.0,05/29/8510 +9.44003,48.89128,9730,11,22,22,39,0,5.45,15.0,fr,49648,194,2103112,1,1,Active Shallow Crust,240.031,57.99899,0.0,11/22/9730 +-6.43082,48.81215,1633,4,17,5,58,15,4.35,5.0,fr,49649,32,2103456,1,1,Active Shallow Crust,0.0,89.98943,0.0,04/17/1633 +-3.58972,43.46532,5694,2,20,16,12,23,3.55,5.0,fr,49650,113,2104320,1,2,Active Shallow Crust,0.0,89.98902,0.0,02/20/5694 +-3.58972,43.46532,3076,1,29,3,42,24,3.55,5.0,fr,49651,61,2104320,1,2,Active Shallow Crust,0.0,89.98902,0.0,01/29/3076 +-3.58972,43.46532,7622,1,21,21,13,50,3.55,15.0,fr,49652,152,2104321,1,1,Active Shallow Crust,0.0,89.98902,0.0,01/21/7622 +-3.58972,43.46532,730,2,13,15,34,51,3.55,27.5,fr,49653,14,2104325,1,1,Active Shallow Crust,240.012,57.99806,0.0,02/13/0730 +-3.58972,43.46532,5184,1,17,5,29,44,3.55,5.0,fr,49654,103,2104326,1,1,Active Shallow Crust,0.0,89.98889,-90.0,01/17/5184 +-3.58972,43.46532,2325,9,2,5,51,0,3.55,15.0,fr,49655,46,2104327,1,1,Active Shallow Crust,0.0,89.98889,-90.0,09/02/2325 +-3.58972,43.46532,4689,2,2,10,20,36,3.75,5.0,fr,49656,93,2104344,1,1,Active Shallow Crust,0.0,89.99128,0.0,02/02/4689 +-3.58972,43.46532,1946,3,22,18,11,21,3.75,5.0,fr,49657,38,2104347,1,2,Active Shallow Crust,240.0081,58.01766,0.0,03/22/1946 +-3.58972,43.46532,7938,9,18,3,24,42,3.75,5.0,fr,49658,158,2104347,1,2,Active Shallow Crust,240.0081,58.01766,0.0,09/18/7938 +-3.58972,43.46532,3968,5,6,6,45,21,4.05,15.0,fr,49659,79,2104381,1,1,Active Shallow Crust,0.0,89.98971,0.0,05/06/3968 +-3.58972,43.46532,6113,8,25,1,19,56,4.25,5.0,fr,49660,122,2104407,1,1,Active Shallow Crust,240.007,57.99423,0.0,08/25/6113 +-3.58972,43.46532,3196,7,31,8,55,20,4.35,15.0,fr,49661,63,2104423,1,1,Active Shallow Crust,0.0,89.98969,-90.0,07/31/3196 +-3.58972,43.46532,757,6,2,18,53,38,4.65,5.0,fr,49662,15,2104452,1,1,Active Shallow Crust,0.0,89.98969,0.0,06/02/0757 +1.41124,53.05181,863,2,23,23,5,32,3.55,27.5,fr,49663,17,2104808,1,1,Active Shallow Crust,0.0,89.98927,-90.0,02/23/0863 +1.41124,53.05181,6097,4,30,14,59,43,3.85,5.0,fr,49664,121,2104836,1,1,Active Shallow Crust,0.0,89.99034,0.0,04/30/6097 +1.41124,53.05181,5615,9,11,13,59,28,3.95,5.0,fr,49665,112,2104848,1,1,Active Shallow Crust,0.0,89.99044,0.0,09/11/5615 +0.88585,42.16323,3791,7,17,18,22,24,3.55,5.0,fr,49666,75,2105760,1,1,Active Shallow Crust,0.0,89.98972,0.0,07/17/3791 +0.88585,42.16323,3485,3,9,14,20,30,3.65,15.0,fr,49667,69,2105773,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/09/3485 +0.88585,42.16323,365,6,20,1,31,6,3.75,5.0,fr,49668,7,2105784,1,1,Active Shallow Crust,0.0,89.99035,0.0,06/20/0365 +0.88585,42.16323,9517,8,5,16,57,29,3.95,15.0,fr,49669,190,2105809,1,1,Active Shallow Crust,0.0,89.98997,0.0,08/05/9517 +0.88585,42.16323,3109,8,20,13,3,44,4.25,5.0,fr,49670,62,2105844,1,1,Active Shallow Crust,0.0,89.98998,0.0,08/20/3109 +2.23922,52.9432,3173,8,15,17,39,8,3.65,5.0,fr,49671,63,2106252,1,1,Active Shallow Crust,0.0,89.98917,0.0,08/15/3173 +2.23922,52.9432,7066,8,26,9,57,23,3.65,5.0,fr,49672,141,2106255,1,1,Active Shallow Crust,240.0018,58.01314,0.0,08/26/7066 +3.24229,52.45264,1030,10,25,5,17,11,3.55,15.0,fr,49673,20,2106721,1,1,Active Shallow Crust,0.0,89.99078,0.0,10/25/1030 +3.24229,52.45264,673,6,30,20,31,12,3.75,5.0,fr,49674,13,2106744,1,1,Active Shallow Crust,0.0,89.99023,0.0,06/30/0673 +6.61492,46.2737,923,11,17,22,46,22,3.55,5.0,fr,49675,18,2107200,1,5,Active Shallow Crust,0.0,89.99303,0.0,11/17/0923 +6.61492,46.2737,3170,10,10,16,41,12,3.55,5.0,fr,49676,63,2107200,1,5,Active Shallow Crust,0.0,89.99303,0.0,10/10/3170 +6.61492,46.2737,3087,11,6,6,51,29,3.55,5.0,fr,49677,61,2107200,1,5,Active Shallow Crust,0.0,89.99303,0.0,11/06/3087 +6.61492,46.2737,8901,3,13,17,16,26,3.55,5.0,fr,49678,178,2107200,1,5,Active Shallow Crust,0.0,89.99303,0.0,03/13/8901 +6.61492,46.2737,5431,9,28,1,40,32,3.55,5.0,fr,49679,108,2107200,1,5,Active Shallow Crust,0.0,89.99303,0.0,09/28/5431 +6.61492,46.2737,6716,3,21,6,27,23,3.55,15.0,fr,49680,134,2107201,1,2,Active Shallow Crust,0.0,89.99303,0.0,03/21/6716 +6.61492,46.2737,8396,12,16,5,28,14,3.55,15.0,fr,49681,167,2107201,1,2,Active Shallow Crust,0.0,89.99303,0.0,12/16/8396 +6.61492,46.2737,8133,12,24,0,10,15,3.55,27.5,fr,49682,162,2107202,1,1,Active Shallow Crust,0.0,89.99303,0.0,12/24/8133 +6.61492,46.2737,9779,4,2,17,12,49,3.55,5.0,fr,49683,195,2107209,1,1,Active Shallow Crust,128.8967,89.99303,0.0,04/02/9779 +6.61492,46.2737,593,10,28,2,37,19,3.65,5.0,fr,49684,11,2107212,1,2,Active Shallow Crust,0.0,89.98758,0.0,10/28/0593 +6.61492,46.2737,2340,1,20,10,21,20,3.65,5.0,fr,49685,46,2107212,1,2,Active Shallow Crust,0.0,89.98758,0.0,01/20/2340 +6.61492,46.2737,7251,2,5,14,16,18,3.65,15.0,fr,49686,145,2107213,1,1,Active Shallow Crust,0.0,89.98758,0.0,02/05/7251 +6.61492,46.2737,708,6,24,2,46,44,3.65,27.5,fr,49687,14,2107214,1,1,Active Shallow Crust,0.0,89.98758,0.0,06/24/0708 +6.61492,46.2737,7254,12,29,0,48,48,3.65,5.0,fr,49688,145,2107215,1,1,Active Shallow Crust,240.0018,58.01225,0.0,12/29/7254 +6.61492,46.2737,8744,1,17,2,9,58,3.65,15.0,fr,49689,174,2107222,1,1,Active Shallow Crust,128.9013,89.96352,0.0,01/17/8744 +6.61492,46.2737,1711,12,7,17,3,18,3.75,5.0,fr,49690,34,2107224,1,1,Active Shallow Crust,0.0,89.98893,0.0,12/07/1711 +6.61492,46.2737,7090,9,24,14,43,24,3.75,15.0,fr,49691,141,2107225,1,1,Active Shallow Crust,0.0,89.98893,0.0,09/24/7090 +6.61492,46.2737,4276,8,17,13,33,49,3.75,5.0,fr,49692,85,2107230,1,1,Active Shallow Crust,0.0,89.9888,-90.0,08/17/4276 +6.61492,46.2737,821,2,5,4,0,29,3.75,5.0,fr,49693,16,2107233,1,2,Active Shallow Crust,128.897,89.9669,0.0,02/05/0821 +6.61492,46.2737,8305,2,6,21,31,8,3.75,5.0,fr,49694,166,2107233,1,2,Active Shallow Crust,128.897,89.9669,0.0,02/06/8305 +6.61492,46.2737,379,8,10,16,37,14,3.85,5.0,fr,49695,7,2107236,1,2,Active Shallow Crust,0.0,89.99013,0.0,08/10/0379 +6.61492,46.2737,4593,12,5,18,32,48,3.85,5.0,fr,49696,91,2107236,1,2,Active Shallow Crust,0.0,89.99013,0.0,12/05/4593 +6.61492,46.2737,1955,11,14,15,30,9,3.85,15.0,fr,49697,39,2107237,1,1,Active Shallow Crust,0.0,89.99013,0.0,11/14/1955 +6.61492,46.2737,3080,8,31,18,42,51,3.95,5.0,fr,49698,61,2107248,1,3,Active Shallow Crust,0.0,89.9912,0.0,08/31/3080 +6.61492,46.2737,4587,1,25,23,4,31,3.95,5.0,fr,49699,91,2107248,1,3,Active Shallow Crust,0.0,89.9912,0.0,01/25/4587 +6.61492,46.2737,5672,5,20,19,37,35,3.95,5.0,fr,49700,113,2107248,1,3,Active Shallow Crust,0.0,89.9912,0.0,05/20/5672 +6.61492,46.2737,2295,11,14,20,4,6,3.95,15.0,fr,49701,45,2107252,1,1,Active Shallow Crust,240.0199,58.00556,0.0,11/14/2295 +6.61492,46.2737,4386,2,2,22,35,32,3.95,5.0,fr,49702,87,2107254,1,1,Active Shallow Crust,0.0,89.9911,-90.0,02/02/4386 +6.61492,46.2737,265,1,9,5,8,9,4.05,27.5,fr,49703,5,2107265,1,1,Active Shallow Crust,240.0057,58.00574,0.0,01/09/0265 +6.61492,46.2737,288,3,18,19,47,36,4.15,5.0,fr,49704,5,2107272,1,1,Active Shallow Crust,0.0,89.98952,0.0,03/18/0288 +6.61492,46.2737,6150,3,18,7,0,5,4.15,15.0,fr,49705,122,2107273,1,1,Active Shallow Crust,0.0,89.98952,0.0,03/18/6150 +6.61492,46.2737,9605,10,28,14,17,14,4.15,27.5,fr,49706,192,2107274,1,1,Active Shallow Crust,0.0,89.98952,0.0,10/28/9605 +6.61492,46.2737,8813,9,22,10,36,16,4.25,15.0,fr,49707,176,2107285,1,1,Active Shallow Crust,0.0,89.99066,0.0,09/22/8813 +6.61492,46.2737,1827,10,9,22,13,7,4.35,15.0,fr,49708,36,2107297,1,1,Active Shallow Crust,0.0,89.9889,0.0,10/09/1827 +6.61492,46.2737,2035,1,5,4,17,37,4.45,5.0,fr,49709,40,2107308,1,1,Active Shallow Crust,0.0,89.9901,0.0,01/05/2035 +6.61492,46.2737,4032,11,26,9,17,8,4.45,15.0,fr,49710,80,2107309,1,1,Active Shallow Crust,0.0,89.9901,0.0,11/26/4032 +6.61492,46.2737,6867,2,18,16,23,20,4.45,27.5,fr,49711,137,2107310,1,1,Active Shallow Crust,0.0,89.9901,0.0,02/18/6867 +6.61492,46.2737,4140,9,12,11,38,42,4.55,5.0,fr,49712,82,2107320,1,1,Active Shallow Crust,0.0,89.98898,0.0,09/12/4140 +6.61492,46.2737,6323,5,6,17,58,26,4.55,5.0,fr,49713,126,2107326,1,1,Active Shallow Crust,0.0,89.99108,-90.0,05/06/6323 +6.61492,46.2737,3346,9,17,18,23,3,4.65,5.0,fr,49714,66,2107332,1,1,Active Shallow Crust,0.0,89.99017,0.0,09/17/3346 +6.61492,46.2737,3002,6,14,16,48,58,5.15,15.0,fr,49715,60,2107393,1,1,Active Shallow Crust,0.0,89.99006,0.0,06/14/3002 +6.61492,46.2737,7749,10,10,5,13,16,5.15,27.5,fr,49716,154,2107394,1,1,Active Shallow Crust,0.0,89.99006,0.0,10/10/7749 +6.61492,46.2737,4086,10,26,10,17,17,5.55,15.0,fr,49717,81,2107441,1,1,Active Shallow Crust,0.0,89.99023,0.0,10/26/4086 +6.614933,46.2737,3157,3,19,23,44,41,6.65,10.68981,fr,49718,63,2107572,1,1,Active Shallow Crust,0.0,89.98997,0.0,03/19/3157 +6.75409,50.47684,4028,8,3,1,21,23,3.55,5.0,fr,49719,80,2107683,1,1,Active Shallow Crust,240.0113,57.99858,0.0,08/03/4028 +6.75409,50.47684,8078,9,10,1,0,29,3.65,5.0,fr,49720,161,2107692,1,1,Active Shallow Crust,0.0,89.98856,0.0,09/10/8078 +6.75409,50.47684,2521,2,14,16,20,35,3.65,27.5,fr,49721,50,2107700,1,1,Active Shallow Crust,0.0,89.98843,-90.0,02/14/2521 +6.75409,50.47684,5693,9,15,23,26,34,3.75,5.0,fr,49722,113,2107704,1,1,Active Shallow Crust,0.0,89.98981,0.0,09/15/5693 +6.75409,50.47684,8829,4,16,16,12,10,4.05,15.0,fr,49723,176,2107741,1,2,Active Shallow Crust,0.0,89.98917,0.0,04/16/8829 +6.75409,50.47684,5886,8,6,13,53,22,4.05,15.0,fr,49724,117,2107741,1,2,Active Shallow Crust,0.0,89.98917,0.0,08/06/5886 +6.75409,50.47684,9607,5,14,21,52,34,4.15,5.0,fr,49725,192,2107752,1,1,Active Shallow Crust,0.0,89.99035,0.0,05/14/9607 +6.75409,50.47684,5331,6,4,19,46,12,4.35,5.0,fr,49726,106,2107776,1,1,Active Shallow Crust,0.0,89.98978,0.0,06/04/5331 +6.75409,50.47684,7964,4,13,17,10,6,4.45,5.0,fr,49727,159,2107788,1,1,Active Shallow Crust,0.0,89.99089,0.0,04/13/7964 +6.75409,50.47684,1193,5,27,19,41,36,4.65,5.0,fr,49728,23,2107812,1,1,Active Shallow Crust,0.0,89.98914,0.0,05/27/1193 +6.75409,50.47684,5785,12,27,15,1,11,5.05,5.0,fr,49729,115,2107860,1,1,Active Shallow Crust,0.0,89.98972,0.0,12/27/5785 +-2.78035,49.30526,3288,1,8,15,3,23,3.55,15.0,fr,49730,65,2108161,1,1,Active Shallow Crust,0.0,89.99014,0.0,01/08/3288 +-2.78035,49.30526,515,12,23,7,27,26,3.65,5.0,fr,49731,10,2108172,1,1,Active Shallow Crust,0.0,89.99121,0.0,12/23/0515 +-2.78035,49.30526,9831,3,9,1,29,21,3.75,15.0,fr,49732,196,2108185,1,1,Active Shallow Crust,0.0,89.98956,0.0,03/09/9831 +-2.78035,49.30526,5181,4,21,23,51,50,3.85,27.5,fr,49733,103,2108201,1,1,Active Shallow Crust,240.0112,57.99802,0.0,04/21/5181 +-2.78035,49.30526,3546,1,11,15,53,2,4.05,5.0,fr,49734,70,2108220,1,1,Active Shallow Crust,0.0,89.99075,0.0,01/11/3546 +-2.78035,49.30526,2,3,5,15,41,57,4.55,15.0,fr,49735,0,2108281,1,1,Active Shallow Crust,0.0,89.9896,0.0,03/05/0002 +5.0147,49.75755,9551,4,5,1,40,13,3.55,15.0,fr,49736,191,2108641,1,1,Active Shallow Crust,0.0,89.98697,0.0,04/05/9551 +5.0147,49.75755,5116,9,25,9,49,44,4.05,5.0,fr,49737,102,2108700,1,1,Active Shallow Crust,0.0,89.98901,0.0,09/25/5116 +5.0147,49.75755,2043,3,18,15,43,7,4.15,5.0,fr,49738,40,2108718,1,1,Active Shallow Crust,0.0,89.99009,-90.0,03/18/2043 +-0.07381,49.22808,8176,11,16,3,47,52,3.55,5.0,fr,49739,163,2109120,1,1,Active Shallow Crust,0.0,89.99002,0.0,11/16/8176 +-0.07381,49.22808,1733,3,23,9,51,12,3.55,15.0,fr,49740,34,2109121,1,1,Active Shallow Crust,0.0,89.99002,0.0,03/23/1733 +-0.07381,49.22808,791,4,26,18,16,14,3.65,15.0,fr,49741,15,2109136,1,2,Active Shallow Crust,240.0014,58.01295,0.0,04/26/0791 +-0.07381,49.22808,6127,9,19,22,32,56,3.65,15.0,fr,49742,122,2109136,1,2,Active Shallow Crust,240.0014,58.01295,0.0,09/19/6127 +-0.07381,49.22808,5760,9,24,13,22,10,3.85,5.0,fr,49743,115,2109156,1,1,Active Shallow Crust,0.0,89.99002,0.0,09/24/5760 +-0.07381,49.22808,4324,1,9,23,50,41,4.05,15.0,fr,49744,86,2109187,1,1,Active Shallow Crust,0.0,89.98999,-90.0,01/09/4324 +-0.07381,49.22808,9642,8,11,9,28,18,4.25,15.0,fr,49745,192,2109205,1,1,Active Shallow Crust,0.0,89.98998,0.0,08/11/9642 +-0.07381,49.22808,9654,10,11,14,20,45,4.35,15.0,fr,49746,193,2109226,1,1,Active Shallow Crust,128.8973,89.98276,0.0,10/11/9654 +-0.07381,49.22808,1919,1,14,20,57,9,4.45,27.5,fr,49747,38,2109230,1,1,Active Shallow Crust,0.0,89.99,0.0,01/14/1919 +-0.07381,49.22808,1022,2,10,13,13,33,4.65,15.0,fr,49748,20,2109253,1,1,Active Shallow Crust,0.0,89.98999,0.0,02/10/1022 +-0.07381,49.22808,9351,10,9,6,53,55,4.85,15.0,fr,49749,187,2109277,1,1,Active Shallow Crust,0.0,89.99,0.0,10/09/9351 +-0.07381,49.22808,262,11,5,6,41,16,4.95,5.0,fr,49750,5,2109288,1,1,Active Shallow Crust,0.0,89.99,0.0,11/05/0262 +-0.07381,49.22808,8576,5,26,5,2,0,5.15,15.0,fr,49751,171,2109313,1,1,Active Shallow Crust,0.0,89.99,0.0,05/26/8576 +4.12613,45.4217,1986,11,27,2,37,6,3.55,5.0,fr,49752,39,2109600,1,2,Active Shallow Crust,0.0,89.99292,0.0,11/27/1986 +4.12613,45.4217,8361,11,11,15,13,52,3.55,5.0,fr,49753,167,2109600,1,2,Active Shallow Crust,0.0,89.99292,0.0,11/11/8361 +4.12613,45.4217,5451,12,28,3,55,10,3.65,5.0,fr,49754,109,2109612,1,1,Active Shallow Crust,0.0,89.98738,0.0,12/28/5451 +4.12613,45.4217,546,6,9,9,38,5,3.75,5.0,fr,49755,10,2109627,1,1,Active Shallow Crust,240.0091,58.01694,0.0,06/09/0546 +4.12613,45.4217,6198,2,13,8,43,32,3.75,15.0,fr,49756,123,2109628,1,1,Active Shallow Crust,240.0091,58.01694,0.0,02/13/6198 +4.12613,45.4217,5644,10,29,12,32,24,3.95,5.0,fr,49757,112,2109648,1,1,Active Shallow Crust,0.0,89.99107,0.0,10/29/5644 +4.12613,45.4217,2761,5,19,10,33,4,3.95,15.0,fr,49758,55,2109649,1,1,Active Shallow Crust,0.0,89.99107,0.0,05/19/2761 +4.12613,45.4217,8882,3,8,20,2,53,4.15,5.0,fr,49759,177,2109672,1,1,Active Shallow Crust,0.0,89.98936,0.0,03/08/8882 +4.12613,45.4217,3977,7,23,17,15,37,4.55,27.5,fr,49760,79,2109722,1,1,Active Shallow Crust,0.0,89.99104,0.0,07/23/3977 +4.12613,45.4217,8366,12,4,7,39,40,4.95,5.0,fr,49761,167,2109768,1,1,Active Shallow Crust,0.0,89.99011,0.0,12/04/8366 +4.12613,45.4217,8525,12,12,11,38,32,5.05,15.0,fr,49762,170,2109787,1,1,Active Shallow Crust,0.0,89.98981,-90.0,12/12/8525 +1.59706,47.46853,7597,1,25,9,3,52,3.55,5.0,fr,49763,151,2110080,1,2,Active Shallow Crust,0.0,89.98978,0.0,01/25/7597 +1.59706,47.46853,4439,5,31,15,49,49,3.55,5.0,fr,49764,88,2110080,1,2,Active Shallow Crust,0.0,89.98978,0.0,05/31/4439 +1.59706,47.46853,6940,12,7,17,8,18,3.65,5.0,fr,49765,138,2110092,1,1,Active Shallow Crust,0.0,89.98936,0.0,12/07/6940 +1.59706,47.46853,9855,3,24,2,50,11,3.85,5.0,fr,49766,197,2110116,1,1,Active Shallow Crust,0.0,89.99035,0.0,03/24/9855 +1.59706,47.46853,2394,11,27,21,7,32,3.85,15.0,fr,49767,47,2110117,1,1,Active Shallow Crust,0.0,89.99035,0.0,11/27/2394 +1.59706,47.46853,1677,2,8,6,42,52,3.95,15.0,fr,49768,33,2110135,1,1,Active Shallow Crust,0.0,89.99021,-90.0,02/08/1677 +1.59706,47.46853,5333,12,19,17,2,51,4.25,15.0,fr,49769,106,2110165,1,1,Active Shallow Crust,0.0,89.9901,0.0,12/19/5333 +1.59706,47.46853,4912,12,23,8,32,29,4.35,5.0,fr,49770,98,2110176,1,1,Active Shallow Crust,0.0,89.98982,0.0,12/23/4912 +4.33721,45.45199,1913,3,8,21,50,50,3.55,5.0,fr,49771,38,2110560,1,1,Active Shallow Crust,0.0,89.99293,0.0,03/08/1913 +4.33721,45.45199,4436,10,19,14,40,56,3.85,5.0,fr,49772,88,2110596,1,1,Active Shallow Crust,0.0,89.98998,0.0,10/19/4436 +4.33721,45.45199,2214,4,25,10,37,22,3.95,5.0,fr,49773,44,2110608,1,1,Active Shallow Crust,0.0,89.99107,0.0,04/25/2214 +4.33721,45.45199,9163,11,29,23,3,44,4.05,5.0,fr,49774,183,2110629,1,1,Active Shallow Crust,128.8902,89.99403,0.0,11/29/9163 +4.33721,45.45199,814,2,26,18,23,22,4.35,5.0,fr,49775,16,2110662,1,1,Active Shallow Crust,0.0,89.9886,-90.0,02/26/0814 +1.89178,48.67135,9553,2,4,6,53,29,3.75,5.0,fr,49776,191,2112024,1,1,Active Shallow Crust,0.0,89.98942,0.0,02/04/9553 +1.89178,48.67135,7063,3,29,19,56,25,5.35,15.0,fr,49777,141,2112217,1,1,Active Shallow Crust,0.0,89.98994,0.0,03/29/7063 +6.36379,44.27316,8365,2,10,6,1,28,3.55,5.0,fr,49778,167,2112480,1,1,Active Shallow Crust,0.0,89.99278,0.0,02/10/8365 +6.36379,44.27316,2407,6,15,14,53,15,3.55,15.0,fr,49779,48,2112481,1,1,Active Shallow Crust,0.0,89.99278,0.0,06/15/2407 +6.36379,44.27316,8227,2,23,3,38,44,3.55,5.0,fr,49780,164,2112483,1,1,Active Shallow Crust,240.012,57.99833,0.0,02/23/8227 +6.36379,44.27316,2791,1,8,13,0,38,3.65,5.0,fr,49781,55,2112492,1,3,Active Shallow Crust,0.0,89.98713,0.0,01/08/2791 +6.36379,44.27316,8852,8,15,16,58,44,3.65,5.0,fr,49782,177,2112492,1,3,Active Shallow Crust,0.0,89.98713,0.0,08/15/8852 +6.36379,44.27316,408,10,16,18,59,20,3.65,5.0,fr,49783,8,2112492,1,3,Active Shallow Crust,0.0,89.98713,0.0,10/16/0408 +6.36379,44.27316,2019,4,24,17,42,8,3.65,27.5,fr,49784,40,2112494,1,1,Active Shallow Crust,0.0,89.98713,0.0,04/24/2019 +6.36379,44.27316,7918,2,21,5,19,44,3.75,5.0,fr,49785,158,2112504,1,3,Active Shallow Crust,0.0,89.98853,0.0,02/21/7918 +6.36379,44.27316,9030,4,7,4,24,36,3.75,5.0,fr,49786,180,2112504,1,3,Active Shallow Crust,0.0,89.98853,0.0,04/07/9030 +6.36379,44.27316,8899,11,8,9,29,17,3.75,5.0,fr,49787,177,2112504,1,3,Active Shallow Crust,0.0,89.98853,0.0,11/08/8899 +6.36379,44.27316,4991,2,13,21,42,2,3.85,15.0,fr,49788,99,2112523,1,1,Active Shallow Crust,0.0,89.98965,-90.0,02/13/4991 +6.36379,44.27316,9224,11,13,3,40,31,3.85,15.0,fr,49789,184,2112526,1,1,Active Shallow Crust,128.8952,89.99489,0.0,11/13/9224 +6.36379,44.27316,5532,5,27,11,36,31,3.95,5.0,fr,49790,110,2112528,1,2,Active Shallow Crust,0.0,89.99089,0.0,05/27/5532 +6.36379,44.27316,9924,7,29,14,55,59,3.95,5.0,fr,49791,198,2112528,1,2,Active Shallow Crust,0.0,89.99089,0.0,07/29/9924 +6.36379,44.27316,3734,6,2,15,58,56,4.05,15.0,fr,49792,74,2112541,1,2,Active Shallow Crust,0.0,89.99188,0.0,06/02/3734 +6.36379,44.27316,3353,2,26,11,57,48,4.05,15.0,fr,49793,67,2112541,1,2,Active Shallow Crust,0.0,89.99188,0.0,02/26/3353 +6.36379,44.27316,296,11,20,16,9,39,4.05,15.0,fr,49794,5,2112550,1,1,Active Shallow Crust,128.8898,89.99391,0.0,11/20/0296 +6.36379,44.27316,1834,4,15,8,10,35,4.15,15.0,fr,49795,36,2112559,1,1,Active Shallow Crust,0.0,89.98902,-90.0,04/15/1834 +6.36379,44.27316,9643,8,6,10,12,5,4.35,5.0,fr,49796,192,2112576,1,1,Active Shallow Crust,0.0,89.99138,0.0,08/06/9643 +6.36379,44.27316,2561,12,25,7,58,2,4.85,5.0,fr,49797,51,2112642,1,1,Active Shallow Crust,0.0,89.99019,-90.0,12/25/2561 +6.36379,44.27316,8695,7,18,14,12,19,4.95,5.0,fr,49798,173,2112648,1,1,Active Shallow Crust,0.0,89.98991,0.0,07/18/8695 +6.36379,44.27316,4133,7,7,17,36,18,4.95,5.0,fr,49799,82,2112657,1,1,Active Shallow Crust,128.8909,89.98967,0.0,07/07/4133 +6.36379,44.27316,7419,12,2,23,34,4,5.55,5.0,fr,49800,148,2112723,1,1,Active Shallow Crust,240.0271,58.0021,0.0,12/02/7419 +6.360965,44.27666,3098,12,26,7,15,47,6.25,5.719927,fr,49801,61,2112807,1,1,Active Shallow Crust,240.0676,58.00036,0.0,12/26/3098 +-1.33161,44.95778,6800,4,2,10,34,56,3.55,5.0,fr,49802,135,2113440,1,2,Active Shallow Crust,0.0,89.9893,0.0,04/02/6800 +-1.33161,44.95778,9269,1,1,0,48,46,3.55,5.0,fr,49803,185,2113440,1,2,Active Shallow Crust,0.0,89.9893,0.0,01/01/9269 +-1.33161,44.95778,3291,7,25,15,57,9,3.75,5.0,fr,49804,65,2113464,1,1,Active Shallow Crust,0.0,89.99008,0.0,07/25/3291 +-1.33161,44.95778,393,6,22,11,53,38,3.85,27.5,fr,49805,7,2113487,1,1,Active Shallow Crust,128.8958,89.99432,0.0,06/22/0393 +-1.33161,44.95778,7205,8,29,1,57,10,4.05,5.0,fr,49806,144,2113503,1,1,Active Shallow Crust,240.0057,58.00583,0.0,08/29/7205 +2.36307,50.12566,9738,11,14,2,50,31,3.55,5.0,fr,49807,194,2113920,1,1,Active Shallow Crust,0.0,89.9903,0.0,11/14/9738 +2.36307,50.12566,2297,5,2,7,46,16,3.55,15.0,fr,49808,45,2113924,1,1,Active Shallow Crust,240.0125,57.99817,0.0,05/02/2297 +2.36307,50.12566,712,8,10,19,13,19,3.65,5.0,fr,49809,14,2113932,1,1,Active Shallow Crust,0.0,89.99136,0.0,08/10/0712 +2.36307,50.12566,3919,10,4,0,0,43,3.75,15.0,fr,49810,78,2113945,1,1,Active Shallow Crust,0.0,89.98973,0.0,10/04/3919 +2.36307,50.12566,1525,11,4,4,3,29,3.85,5.0,fr,49811,30,2113956,1,1,Active Shallow Crust,0.0,89.99084,0.0,11/04/1525 +2.36307,50.12566,6110,8,28,5,55,15,4.05,5.0,fr,49812,122,2113989,1,1,Active Shallow Crust,128.8898,89.99364,0.0,08/28/6110 +2.36307,50.12566,7877,9,23,20,54,56,4.15,5.0,fr,49813,157,2113992,1,1,Active Shallow Crust,0.0,89.99028,0.0,09/23/7877 +2.36307,50.12566,9766,1,7,1,37,3,4.95,15.0,fr,49814,195,2114098,1,1,Active Shallow Crust,128.8882,89.98988,0.0,01/07/9766 +-1.02358,46.34729,8308,3,20,23,0,19,3.55,5.0,fr,49815,166,2114400,1,2,Active Shallow Crust,0.0,89.98956,0.0,03/20/8308 +-1.02358,46.34729,4881,12,5,19,30,39,3.55,5.0,fr,49816,97,2114400,1,2,Active Shallow Crust,0.0,89.98956,0.0,12/05/4881 +-1.02358,46.34729,476,12,27,23,0,41,3.55,15.0,fr,49817,9,2114401,1,1,Active Shallow Crust,0.0,89.98956,0.0,12/27/0476 +-1.02358,46.34729,2354,11,12,10,29,34,3.55,27.5,fr,49818,47,2114402,1,2,Active Shallow Crust,0.0,89.98956,0.0,11/12/2354 +-1.02358,46.34729,9050,6,12,7,33,15,3.55,27.5,fr,49819,180,2114402,1,2,Active Shallow Crust,0.0,89.98956,0.0,06/12/9050 +-1.02358,46.34729,7715,4,25,4,56,22,3.55,27.5,fr,49820,154,2114405,1,1,Active Shallow Crust,240.0123,57.9979,0.0,04/25/7715 +-1.02358,46.34729,7062,8,6,1,8,37,3.55,5.0,fr,49821,141,2114406,1,1,Active Shallow Crust,0.0,89.98944,-90.0,08/06/7062 +-1.02358,46.34729,5081,10,31,9,12,20,3.65,5.0,fr,49822,101,2114412,1,1,Active Shallow Crust,0.0,89.99069,0.0,10/31/5081 +-1.02358,46.34729,9599,1,18,10,44,20,3.65,27.5,fr,49823,191,2114414,1,1,Active Shallow Crust,0.0,89.99069,0.0,01/18/9599 +-1.02358,46.34729,5775,12,29,6,11,13,3.65,15.0,fr,49824,115,2114416,1,2,Active Shallow Crust,240.001,58.01301,0.0,12/29/5775 +-1.02358,46.34729,5690,5,2,1,47,9,3.65,15.0,fr,49825,113,2114416,1,2,Active Shallow Crust,240.001,58.01301,0.0,05/02/5690 +-1.02358,46.34729,6168,4,19,4,8,29,3.65,5.0,fr,49826,123,2114418,1,1,Active Shallow Crust,0.0,89.99059,-90.0,04/19/6168 +-1.02358,46.34729,1583,12,29,2,29,48,3.65,15.0,fr,49827,31,2114419,1,1,Active Shallow Crust,0.0,89.99059,-90.0,12/29/1583 +-1.02358,46.34729,4447,1,27,11,50,44,3.75,15.0,fr,49828,88,2114428,1,1,Active Shallow Crust,240.0084,58.01753,0.0,01/27/4447 +-1.02358,46.34729,9144,10,31,2,23,58,3.75,5.0,fr,49829,182,2114430,1,1,Active Shallow Crust,0.0,89.99021,-90.0,10/31/9144 +-1.02358,46.34729,978,6,16,0,56,21,3.75,15.0,fr,49830,19,2114431,1,1,Active Shallow Crust,0.0,89.99021,-90.0,06/16/0978 +-1.02358,46.34729,2736,10,23,0,57,5,3.85,15.0,fr,49831,54,2114437,1,1,Active Shallow Crust,0.0,89.99014,0.0,10/23/2736 +-1.02358,46.34729,3633,3,2,3,15,19,3.95,5.0,fr,49832,72,2114448,1,1,Active Shallow Crust,0.0,89.99012,0.0,03/02/3633 +-1.02358,46.34729,2957,11,17,8,3,41,4.05,5.0,fr,49833,59,2114460,1,2,Active Shallow Crust,0.0,89.99021,0.0,11/17/2957 +-1.02358,46.34729,4947,11,20,20,29,22,4.05,5.0,fr,49834,98,2114460,1,2,Active Shallow Crust,0.0,89.99021,0.0,11/20/4947 +-1.02358,46.34729,7713,5,31,11,19,46,4.05,5.0,fr,49835,154,2114466,1,1,Active Shallow Crust,0.0,89.9901,-90.0,05/31/7713 +-1.02358,46.34729,3950,6,26,11,46,19,4.15,15.0,fr,49836,78,2114482,1,1,Active Shallow Crust,128.8978,89.99346,0.0,06/26/3950 +-1.02358,46.34729,7523,4,7,9,25,50,4.35,5.0,fr,49837,150,2114496,1,1,Active Shallow Crust,0.0,89.9903,0.0,04/07/7523 +-1.02358,46.34729,6032,10,21,21,32,16,4.35,27.5,fr,49838,120,2114498,1,1,Active Shallow Crust,0.0,89.9903,0.0,10/21/6032 +-1.02358,46.34729,1897,10,7,5,14,12,4.35,5.0,fr,49839,37,2114505,1,1,Active Shallow Crust,128.8977,89.98277,0.0,10/07/1897 +-1.02358,46.34729,2607,12,23,18,39,42,4.75,5.0,fr,49840,52,2114547,1,1,Active Shallow Crust,240.0075,58.00445,0.0,12/23/2607 +-0.65056,49.32538,733,6,12,10,14,32,3.55,5.0,fr,49841,14,2114880,1,2,Active Shallow Crust,0.0,89.99014,0.0,06/12/0733 +-0.65056,49.32538,4503,7,23,12,37,58,3.55,5.0,fr,49842,90,2114880,1,2,Active Shallow Crust,0.0,89.99014,0.0,07/23/4503 +-0.65056,49.32538,7905,2,11,19,35,23,3.55,15.0,fr,49843,158,2114881,1,1,Active Shallow Crust,0.0,89.99014,0.0,02/11/7905 +-0.65056,49.32538,106,7,29,6,16,37,3.55,5.0,fr,49844,2,2114883,1,2,Active Shallow Crust,240.0123,57.99828,0.0,07/29/0106 +-0.65056,49.32538,7573,7,17,19,50,47,3.55,5.0,fr,49845,151,2114883,1,2,Active Shallow Crust,240.0123,57.99828,0.0,07/17/7573 +-0.65056,49.32538,4287,2,11,17,22,50,3.55,5.0,fr,49846,85,2114889,1,2,Active Shallow Crust,128.8959,89.99384,0.0,02/11/4287 +-0.65056,49.32538,1376,3,8,3,33,34,3.55,5.0,fr,49847,27,2114889,1,2,Active Shallow Crust,128.8959,89.99384,0.0,03/08/1376 +-0.65056,49.32538,1011,3,6,13,24,41,3.65,5.0,fr,49848,20,2114892,1,2,Active Shallow Crust,0.0,89.98975,0.0,03/06/1011 +-0.65056,49.32538,3314,1,31,14,34,33,3.65,5.0,fr,49849,66,2114892,1,2,Active Shallow Crust,0.0,89.98975,0.0,01/31/3314 +-0.65056,49.32538,3445,1,6,3,37,42,3.65,15.0,fr,49850,68,2114893,1,1,Active Shallow Crust,0.0,89.98975,0.0,01/06/3445 +-0.65056,49.32538,6723,10,15,23,4,21,3.75,5.0,fr,49851,134,2114904,1,1,Active Shallow Crust,0.0,89.99021,0.0,10/15/6723 +-0.65056,49.32538,3431,11,26,14,10,31,3.85,15.0,fr,49852,68,2114923,1,1,Active Shallow Crust,0.0,89.99,-90.0,11/26/3431 +-0.65056,49.32538,5478,6,20,7,13,15,4.35,5.0,fr,49853,109,2114985,1,1,Active Shallow Crust,128.8972,89.98278,0.0,06/20/5478 +-0.65056,49.32538,343,9,12,11,2,31,4.65,15.0,fr,49854,6,2115013,1,1,Active Shallow Crust,0.0,89.99004,0.0,09/12/0343 +-0.65056,49.32538,3532,9,9,2,51,43,5.15,5.0,fr,49855,70,2115072,1,2,Active Shallow Crust,0.0,89.98997,0.0,09/09/3532 +-0.65056,49.32538,6589,11,13,19,23,54,5.15,5.0,fr,49856,131,2115072,1,2,Active Shallow Crust,0.0,89.98997,0.0,11/13/6589 +2.26568,48.94968,9858,1,15,22,32,35,3.55,5.0,fr,49857,197,2115360,1,1,Active Shallow Crust,0.0,89.99007,0.0,01/15/9858 +2.26568,48.94968,2502,12,15,20,26,29,3.95,5.0,fr,49858,50,2115414,1,1,Active Shallow Crust,0.0,89.98943,-90.0,12/15/2502 +2.26568,48.94968,9106,7,26,15,24,6,4.15,5.0,fr,49859,182,2115432,1,1,Active Shallow Crust,0.0,89.99004,0.0,07/26/9106 +0.62078,46.07104,8932,6,30,1,19,4,3.55,5.0,fr,49860,178,2116320,1,3,Active Shallow Crust,0.0,89.99038,0.0,06/30/8932 +0.62078,46.07104,4343,4,29,3,35,0,3.55,5.0,fr,49861,86,2116320,1,3,Active Shallow Crust,0.0,89.99038,0.0,04/29/4343 +0.62078,46.07104,1825,11,30,7,10,47,3.55,5.0,fr,49862,36,2116320,1,3,Active Shallow Crust,0.0,89.99038,0.0,11/30/1825 +0.62078,46.07104,3641,3,13,13,49,48,3.65,5.0,fr,49863,72,2116332,1,1,Active Shallow Crust,0.0,89.98987,0.0,03/13/3641 +0.62078,46.07104,4835,9,9,17,52,38,3.75,5.0,fr,49864,96,2116344,1,1,Active Shallow Crust,0.0,89.99027,0.0,09/09/4835 +0.62078,46.07104,6931,10,30,22,39,59,3.75,15.0,fr,49865,138,2116345,1,1,Active Shallow Crust,0.0,89.99027,0.0,10/30/6931 +0.62078,46.07104,1272,5,11,17,12,19,3.95,5.0,fr,49866,25,2116377,1,1,Active Shallow Crust,128.9005,89.99365,0.0,05/11/1272 +0.62078,46.07104,7261,8,22,4,16,37,4.15,5.0,fr,49867,145,2116392,1,1,Active Shallow Crust,0.0,89.98992,0.0,08/22/7261 +0.62078,46.07104,2114,4,11,15,50,45,4.15,15.0,fr,49868,42,2116402,1,1,Active Shallow Crust,128.8975,89.99387,0.0,04/11/2114 +0.62078,46.07104,7505,4,9,17,47,28,4.55,5.0,fr,49869,150,2116440,1,1,Active Shallow Crust,0.0,89.99004,0.0,04/09/7505 +0.62078,46.07104,3541,6,17,18,38,9,4.65,5.0,fr,49870,70,2116452,1,1,Active Shallow Crust,0.0,89.98989,0.0,06/17/3541 +0.62078,46.07104,7021,6,23,2,5,7,4.75,5.0,fr,49871,140,2116467,1,1,Active Shallow Crust,240.0074,58.00445,0.0,06/23/7021 +0.62078,46.07104,4557,3,25,19,56,42,5.55,27.5,fr,49872,91,2116571,1,1,Active Shallow Crust,128.8765,89.98979,0.0,03/25/4557 +3.64813,48.55998,6132,2,21,19,9,28,3.55,5.0,fr,49873,122,2116800,1,1,Active Shallow Crust,0.0,89.98999,0.0,02/21/6132 +3.64813,48.55998,785,11,6,10,45,39,3.55,15.0,fr,49874,15,2116801,1,1,Active Shallow Crust,0.0,89.98999,0.0,11/06/0785 +3.64813,48.55998,74,9,22,12,24,38,3.75,5.0,fr,49875,1,2116824,1,1,Active Shallow Crust,0.0,89.9894,0.0,09/22/0074 +3.64813,48.55998,1591,2,5,1,4,43,3.95,5.0,fr,49876,31,2116848,1,1,Active Shallow Crust,0.0,89.98947,0.0,02/05/1591 +3.64813,48.55998,4404,9,26,12,59,37,4.25,5.0,fr,49877,88,2116884,1,1,Active Shallow Crust,0.0,89.98956,0.0,09/26/4404 +3.64813,48.55998,6445,12,25,19,6,44,4.25,15.0,fr,49878,128,2116885,1,1,Active Shallow Crust,0.0,89.98956,0.0,12/25/6445 +6.88939,50.36937,9071,11,21,6,46,3,3.65,5.0,fr,49879,181,2117292,1,1,Active Shallow Crust,0.0,89.98853,0.0,11/21/9071 +6.88939,50.36937,6326,8,3,0,18,39,3.75,15.0,fr,49880,126,2117305,1,2,Active Shallow Crust,0.0,89.98978,0.0,08/03/6326 +6.88939,50.36937,3433,11,6,21,3,37,3.75,15.0,fr,49881,68,2117305,1,2,Active Shallow Crust,0.0,89.98978,0.0,11/06/3433 +6.88939,50.36937,9740,10,22,7,9,30,3.85,5.0,fr,49882,194,2117316,1,1,Active Shallow Crust,0.0,89.99089,0.0,10/22/9740 +6.88939,50.36937,1844,7,17,5,43,15,3.85,27.5,fr,49883,36,2117324,1,1,Active Shallow Crust,0.0,89.99078,-90.0,07/17/1844 +6.88939,50.36937,4557,12,11,7,47,3,3.95,5.0,fr,49884,91,2117328,1,1,Active Shallow Crust,0.0,89.99188,0.0,12/11/4557 +6.88939,50.36937,6737,5,4,22,17,12,3.95,15.0,fr,49885,134,2117329,1,1,Active Shallow Crust,0.0,89.99188,0.0,05/04/6737 +6.88939,50.36937,5504,3,26,2,46,0,4.05,15.0,fr,49886,110,2117350,1,1,Active Shallow Crust,128.8895,89.99458,0.0,03/26/5504 +6.88939,50.36937,2047,2,12,13,24,51,4.55,15.0,fr,49887,40,2117407,1,1,Active Shallow Crust,0.0,89.98971,-90.0,02/12/2047 +6.88939,50.36937,1243,11,10,22,29,53,4.55,15.0,fr,49888,24,2117410,1,1,Active Shallow Crust,128.893,89.9854,0.0,11/10/1243 +-2.56032,48.51658,5514,8,17,4,27,21,3.55,5.0,fr,49889,110,2117760,1,1,Active Shallow Crust,0.0,89.98998,0.0,08/17/5514 +-2.56032,48.51658,4796,2,6,2,53,41,3.55,15.0,fr,49890,95,2117761,1,1,Active Shallow Crust,0.0,89.98998,0.0,02/06/4796 +-2.56032,48.51658,1762,8,18,9,24,1,3.75,5.0,fr,49891,35,2117784,1,2,Active Shallow Crust,0.0,89.98939,0.0,08/18/1762 +-2.56032,48.51658,1652,5,21,6,29,24,3.75,5.0,fr,49892,33,2117784,1,2,Active Shallow Crust,0.0,89.98939,0.0,05/21/1652 +-2.56032,48.51658,3571,9,19,11,2,23,3.75,5.0,fr,49893,71,2117787,1,1,Active Shallow Crust,240.0087,58.01743,0.0,09/19/3571 +-2.56032,48.51658,2300,4,22,18,8,5,3.95,15.0,fr,49894,45,2117809,1,1,Active Shallow Crust,0.0,89.98946,0.0,04/22/2300 +-2.56032,48.51658,5994,8,29,14,50,58,3.95,5.0,fr,49895,119,2117811,1,1,Active Shallow Crust,240.0203,58.00491,0.0,08/29/5994 +-2.56032,48.51658,5659,11,25,1,40,20,4.05,15.0,fr,49896,113,2117827,1,1,Active Shallow Crust,0.0,89.9905,-90.0,11/25/5659 +-2.56032,48.51658,8371,7,15,22,11,19,4.25,5.0,fr,49897,167,2117847,1,1,Active Shallow Crust,240.0079,57.99407,0.0,07/15/8371 +-2.56032,48.51658,6077,12,12,0,7,55,4.25,27.5,fr,49898,121,2117849,1,1,Active Shallow Crust,240.0079,57.99407,0.0,12/12/6077 +-2.56032,48.51658,7775,8,19,0,5,5,4.35,5.0,fr,49899,155,2117856,1,2,Active Shallow Crust,0.0,89.98936,0.0,08/19/7775 +-2.56032,48.51658,9926,5,25,13,6,50,4.35,5.0,fr,49900,198,2117856,1,2,Active Shallow Crust,0.0,89.98936,0.0,05/25/9926 +-2.56032,48.51658,9740,2,5,20,6,12,4.75,15.0,fr,49901,194,2117905,1,1,Active Shallow Crust,0.0,89.98993,0.0,02/05/9740 +-2.56032,48.51658,1966,7,29,1,37,22,5.25,5.0,fr,49902,39,2117964,1,1,Active Shallow Crust,0.0,89.99009,0.0,07/29/1966 +4.3884,49.42087,6483,3,18,14,57,13,3.75,5.0,fr,49903,129,2118264,1,1,Active Shallow Crust,0.0,89.98958,0.0,03/18/6483 +7.04853,47.87245,8032,10,26,16,8,3,3.55,5.0,fr,49904,160,2118720,1,3,Active Shallow Crust,0.0,89.99323,0.0,10/26/8032 +7.04853,47.87245,3891,10,12,7,56,53,3.55,5.0,fr,49905,77,2118720,1,3,Active Shallow Crust,0.0,89.99323,0.0,10/12/3891 +7.04853,47.87245,2169,10,26,12,0,44,3.55,5.0,fr,49906,43,2118720,1,3,Active Shallow Crust,0.0,89.99323,0.0,10/26/2169 +7.04853,47.87245,8608,12,26,16,19,5,3.55,15.0,fr,49907,172,2118721,1,1,Active Shallow Crust,0.0,89.99323,0.0,12/26/8608 +7.04853,47.87245,7109,11,15,15,15,42,3.55,27.5,fr,49908,142,2118722,1,1,Active Shallow Crust,0.0,89.99323,0.0,11/15/7109 +7.04853,47.87245,1116,10,10,10,49,54,3.55,5.0,fr,49909,22,2118723,1,1,Active Shallow Crust,240.0125,57.99775,0.0,10/10/1116 +7.04853,47.87245,6853,2,28,7,25,23,3.65,5.0,fr,49910,137,2118732,1,2,Active Shallow Crust,0.0,89.98795,0.0,02/28/6853 +7.04853,47.87245,7879,3,25,0,44,59,3.65,5.0,fr,49911,157,2118732,1,2,Active Shallow Crust,0.0,89.98795,0.0,03/25/7879 +7.04853,47.87245,1699,4,30,6,11,28,3.65,15.0,fr,49912,33,2118733,1,1,Active Shallow Crust,0.0,89.98795,0.0,04/30/1699 +7.04853,47.87245,5247,10,19,2,19,21,3.65,5.0,fr,49913,104,2118735,1,1,Active Shallow Crust,240.0026,58.01211,0.0,10/19/5247 +7.04853,47.87245,2614,11,9,12,47,33,3.65,5.0,fr,49914,52,2118738,1,1,Active Shallow Crust,0.0,89.9878,-90.0,11/09/2614 +7.04853,47.87245,5022,7,6,5,53,12,3.65,5.0,fr,49915,100,2118741,1,1,Active Shallow Crust,128.8998,89.96355,0.0,07/06/5022 +7.04853,47.87245,9007,10,14,13,29,48,3.75,5.0,fr,49916,180,2118744,1,3,Active Shallow Crust,0.0,89.98925,0.0,10/14/9007 +7.04853,47.87245,3503,12,1,12,22,51,3.75,5.0,fr,49917,70,2118744,1,3,Active Shallow Crust,0.0,89.98925,0.0,12/01/3503 +7.04853,47.87245,4814,1,1,1,36,4,3.75,5.0,fr,49918,96,2118744,1,3,Active Shallow Crust,0.0,89.98925,0.0,01/01/4814 +7.04853,47.87245,973,6,29,10,29,52,3.75,15.0,fr,49919,19,2118745,1,1,Active Shallow Crust,0.0,89.98925,0.0,06/29/0973 +7.04853,47.87245,7322,6,11,0,14,24,3.85,5.0,fr,49920,146,2118756,1,3,Active Shallow Crust,0.0,89.99043,0.0,06/11/7322 +7.04853,47.87245,47,8,3,20,57,30,3.85,5.0,fr,49921,0,2118756,1,3,Active Shallow Crust,0.0,89.99043,0.0,08/03/0047 +7.04853,47.87245,3390,2,21,22,24,36,3.85,5.0,fr,49922,67,2118756,1,3,Active Shallow Crust,0.0,89.99043,0.0,02/21/3390 +7.04853,47.87245,3259,2,22,7,46,19,3.85,5.0,fr,49923,65,2118765,1,1,Active Shallow Crust,128.8958,89.99282,0.0,02/22/3259 +7.04853,47.87245,3474,1,5,20,56,36,3.95,5.0,fr,49924,69,2118771,1,1,Active Shallow Crust,240.0198,58.0049,0.0,01/05/3474 +7.04853,47.87245,5990,3,8,6,35,23,3.95,15.0,fr,49925,119,2118772,1,1,Active Shallow Crust,240.0198,58.0049,0.0,03/08/5990 +7.04853,47.87245,5470,7,22,13,27,18,4.05,5.0,fr,49926,109,2118780,1,1,Active Shallow Crust,0.0,89.98859,0.0,07/22/5470 +7.04853,47.87245,2000,8,18,17,16,57,4.05,5.0,fr,49927,39,2118783,1,1,Active Shallow Crust,240.0058,58.00573,0.0,08/18/2000 +7.04853,47.87245,645,7,5,10,48,38,4.15,15.0,fr,49928,12,2118793,1,2,Active Shallow Crust,0.0,89.98983,0.0,07/05/0645 +7.04853,47.87245,1375,9,12,16,13,19,4.15,15.0,fr,49929,27,2118793,1,2,Active Shallow Crust,0.0,89.98983,0.0,09/12/1375 +7.04853,47.87245,9246,8,23,16,59,33,4.25,15.0,fr,49930,184,2118805,1,1,Active Shallow Crust,0.0,89.99094,0.0,08/23/9246 +7.04853,47.87245,615,8,29,9,48,23,4.35,15.0,fr,49931,12,2118820,1,1,Active Shallow Crust,240.0086,57.99611,0.0,08/29/0615 +7.04853,47.87245,3168,11,18,0,34,6,4.45,5.0,fr,49932,63,2118834,1,1,Active Shallow Crust,0.0,89.99029,-90.0,11/18/3168 +7.04853,47.87245,7405,2,21,2,58,11,4.55,15.0,fr,49933,148,2118844,1,1,Active Shallow Crust,240.0102,57.9974,0.0,02/21/7405 +7.04853,47.87245,5449,1,12,4,17,11,4.75,5.0,fr,49934,108,2118864,1,1,Active Shallow Crust,0.0,89.98981,0.0,01/12/5449 +7.04853,47.87245,8249,6,21,23,8,25,4.75,15.0,fr,49935,164,2118865,1,1,Active Shallow Crust,0.0,89.98981,0.0,06/21/8249 +7.04853,47.87245,2623,7,8,6,52,51,4.95,5.0,fr,49936,52,2118888,1,1,Active Shallow Crust,0.0,89.99055,0.0,07/08/2623 +7.04853,47.87245,4624,6,30,17,40,26,5.15,15.0,fr,49937,92,2118913,1,1,Active Shallow Crust,0.0,89.99035,0.0,06/30/4624 +7.04853,47.87245,7157,7,9,8,25,55,5.15,5.0,fr,49938,143,2118921,1,1,Active Shallow Crust,128.8831,89.99094,0.0,07/09/7157 +7.04853,47.87245,9889,8,15,13,36,22,5.25,5.0,fr,49939,197,2118924,1,1,Active Shallow Crust,0.0,89.99044,0.0,08/15/9889 +7.048534,47.87245,2874,2,3,21,30,39,6.25,6.744814,fr,49940,57,2119044,1,1,Active Shallow Crust,359.9998,89.99002,0.0,02/03/2874 +2.49288,48.30388,5280,1,15,12,27,50,3.95,27.5,fr,49941,105,2119250,1,1,Active Shallow Crust,0.0,89.98942,0.0,01/15/5280 +2.49288,48.30388,7950,10,28,7,15,51,4.35,5.0,fr,49942,158,2119296,1,1,Active Shallow Crust,0.0,89.99065,0.0,10/28/7950 +2.49288,48.30388,5629,8,4,15,43,36,4.45,5.0,fr,49943,112,2119308,1,1,Active Shallow Crust,0.0,89.99048,0.0,08/04/5629 +6.81073,43.39458,1582,8,28,19,47,31,3.55,5.0,fr,49944,31,2119680,1,2,Active Shallow Crust,0.0,89.99268,0.0,08/28/1582 +6.81073,43.39458,1194,8,30,1,45,51,3.55,5.0,fr,49945,23,2119680,1,2,Active Shallow Crust,0.0,89.99268,0.0,08/30/1194 +6.81073,43.39458,328,10,16,7,22,18,3.65,15.0,fr,49946,6,2119693,1,1,Active Shallow Crust,0.0,89.98694,0.0,10/16/0328 +6.81073,43.39458,7422,7,25,1,2,18,4.65,5.0,fr,49947,148,2119812,1,1,Active Shallow Crust,0.0,89.98967,0.0,07/25/7422 +1.6932,41.60069,7023,2,25,19,36,46,3.55,5.0,fr,49948,140,2120163,1,1,Active Shallow Crust,240.0117,57.99807,0.0,02/25/7023 +1.6932,41.60069,3339,4,19,10,43,47,3.55,5.0,fr,49949,66,2120169,1,1,Active Shallow Crust,128.8964,89.99435,0.0,04/19/3339 +1.6932,41.60069,8553,9,18,17,56,3,3.65,15.0,fr,49950,171,2120173,1,1,Active Shallow Crust,0.0,89.98992,0.0,09/18/8553 +1.6932,41.60069,8136,8,27,20,23,5,3.65,15.0,fr,49951,162,2120176,1,1,Active Shallow Crust,240.0003,58.01284,0.0,08/27/8136 +1.6932,41.60069,8011,4,16,23,4,44,3.65,5.0,fr,49952,160,2120181,1,1,Active Shallow Crust,128.9004,89.96358,0.0,04/16/8011 +1.6932,41.60069,6586,8,12,9,43,27,3.75,5.0,fr,49953,131,2120184,1,2,Active Shallow Crust,0.0,89.98952,0.0,08/12/6586 +1.6932,41.60069,9723,10,12,2,1,32,3.75,5.0,fr,49954,194,2120184,1,2,Active Shallow Crust,0.0,89.98952,0.0,10/12/9723 +1.6932,41.60069,7755,6,23,11,30,25,3.85,5.0,fr,49955,155,2120196,1,1,Active Shallow Crust,0.0,89.99065,0.0,06/23/7755 +1.6932,41.60069,9615,11,4,1,39,59,3.85,15.0,fr,49956,192,2120206,1,1,Active Shallow Crust,128.8963,89.99332,0.0,11/04/9615 +1.6932,41.60069,8392,9,15,15,29,5,3.95,27.5,fr,49957,167,2120210,1,1,Active Shallow Crust,0.0,89.99049,0.0,09/15/8392 +1.6932,41.60069,4128,1,19,1,26,51,4.55,5.0,fr,49958,82,2120289,1,1,Active Shallow Crust,128.895,89.98579,0.0,01/19/4128 +-2.99883,48.47889,5152,6,18,5,38,53,3.55,5.0,fr,49959,103,2120640,1,1,Active Shallow Crust,0.0,89.98997,0.0,06/18/5152 +-2.99883,48.47889,3549,11,26,14,8,7,3.55,15.0,fr,49960,70,2120641,1,1,Active Shallow Crust,0.0,89.98997,0.0,11/26/3549 +-2.99883,48.47889,1727,4,11,18,40,0,3.65,5.0,fr,49961,34,2120652,1,2,Active Shallow Crust,0.0,89.99107,0.0,04/11/1727 +-2.99883,48.47889,4663,3,30,10,28,8,3.65,5.0,fr,49962,93,2120652,1,2,Active Shallow Crust,0.0,89.99107,0.0,03/30/4663 +-2.99883,48.47889,8261,5,28,20,36,28,3.65,15.0,fr,49963,165,2120653,1,1,Active Shallow Crust,0.0,89.99107,0.0,05/28/8261 +-2.99883,48.47889,7278,10,24,15,56,17,3.65,15.0,fr,49964,145,2120659,1,1,Active Shallow Crust,0.0,89.99096,-90.0,10/24/7278 +-2.99883,48.47889,954,11,23,13,14,15,3.65,15.0,fr,49965,19,2120662,1,1,Active Shallow Crust,128.9007,89.96356,0.0,11/23/0954 +-2.99883,48.47889,9159,8,15,15,53,23,3.75,5.0,fr,49966,183,2120664,1,1,Active Shallow Crust,0.0,89.98938,0.0,08/15/9159 +-2.99883,48.47889,3636,11,16,1,29,18,3.75,5.0,fr,49967,72,2120670,1,2,Active Shallow Crust,0.0,89.98926,-90.0,11/16/3636 +-2.99883,48.47889,9425,10,11,15,47,24,3.75,5.0,fr,49968,188,2120670,1,2,Active Shallow Crust,0.0,89.98926,-90.0,10/11/9425 +-2.99883,48.47889,2370,6,11,5,22,49,3.95,5.0,fr,49969,47,2120688,1,1,Active Shallow Crust,0.0,89.98946,0.0,06/11/2370 +-2.99883,48.47889,6262,1,21,15,43,47,4.05,5.0,fr,49970,125,2120700,1,1,Active Shallow Crust,0.0,89.9906,0.0,01/21/6262 +-2.99883,48.47889,4793,6,13,18,49,59,4.05,15.0,fr,49971,95,2120710,1,1,Active Shallow Crust,128.8902,89.99436,0.0,06/13/4793 +-2.99883,48.47889,7546,7,7,22,20,14,4.15,15.0,fr,49972,150,2120713,1,1,Active Shallow Crust,0.0,89.98995,0.0,07/07/7546 +-2.99883,48.47889,3347,6,15,7,53,13,4.35,5.0,fr,49973,66,2120745,1,1,Active Shallow Crust,128.8975,89.98262,0.0,06/15/3347 +-2.99883,48.47889,8132,3,17,14,46,18,4.45,15.0,fr,49974,162,2120749,1,1,Active Shallow Crust,0.0,89.99051,0.0,03/17/8132 +-2.99883,48.47889,9169,11,25,3,18,21,4.45,5.0,fr,49975,183,2120751,1,1,Active Shallow Crust,240.0056,57.99483,0.0,11/25/9169 +1.00956,49.28663,3194,9,24,20,13,49,3.55,5.0,fr,49976,63,2121129,1,1,Active Shallow Crust,128.8961,89.99342,0.0,09/24/3194 +1.00956,49.28663,5070,10,27,20,1,2,3.75,5.0,fr,49977,101,2121144,1,2,Active Shallow Crust,0.0,89.98955,0.0,10/27/5070 +1.00956,49.28663,9869,10,13,13,57,33,3.75,5.0,fr,49978,197,2121144,1,2,Active Shallow Crust,0.0,89.98955,0.0,10/13/9869 +1.00956,49.28663,4081,4,4,18,10,47,3.75,5.0,fr,49979,81,2121147,1,1,Active Shallow Crust,240.0089,58.01755,0.0,04/04/4081 +-3.41987,46.80579,1680,5,1,17,31,52,3.55,27.5,fr,49980,33,2121602,1,1,Active Shallow Crust,0.0,89.98965,0.0,05/01/1680 +-3.41987,46.80579,5872,5,12,18,56,13,3.65,15.0,fr,49981,117,2121613,1,1,Active Shallow Crust,0.0,89.99078,0.0,05/12/5872 +-3.41987,46.80579,7328,3,4,4,47,11,3.95,15.0,fr,49982,146,2121652,1,1,Active Shallow Crust,240.0197,58.00509,0.0,03/04/7328 +0.44248,50.83033,4184,12,1,23,8,22,3.55,5.0,fr,49983,83,2122560,1,1,Active Shallow Crust,0.0,89.99005,0.0,12/01/4184 +0.44248,50.83033,4355,2,6,3,29,27,3.65,5.0,fr,49984,87,2122572,1,1,Active Shallow Crust,0.0,89.99007,0.0,02/06/4355 +0.44248,50.83033,7206,8,24,20,33,11,3.75,5.0,fr,49985,144,2122584,1,1,Active Shallow Crust,0.0,89.98988,0.0,08/24/7206 +0.44248,50.83033,8867,7,11,23,33,43,3.75,5.0,fr,49986,177,2122587,1,1,Active Shallow Crust,240.0089,58.01768,0.0,07/11/8867 +2.96966,43.00692,6076,5,21,22,33,4,3.55,5.0,fr,49987,121,2123040,1,2,Active Shallow Crust,0.0,89.98894,0.0,05/21/6076 +2.96966,43.00692,1532,1,25,23,38,53,3.55,5.0,fr,49988,30,2123040,1,2,Active Shallow Crust,0.0,89.98894,0.0,01/25/1532 +2.96966,43.00692,3948,10,26,19,1,36,3.55,27.5,fr,49989,78,2123045,1,1,Active Shallow Crust,240.0113,57.99791,0.0,10/26/3948 +2.96966,43.00692,3997,1,18,1,10,35,3.75,5.0,fr,49990,79,2123064,1,1,Active Shallow Crust,0.0,89.99121,0.0,01/18/3997 +2.96966,43.00692,5545,8,28,1,14,31,3.75,15.0,fr,49991,110,2123065,1,1,Active Shallow Crust,0.0,89.99121,0.0,08/28/5545 +2.96966,43.00692,8219,4,18,8,55,20,3.95,5.0,fr,49992,164,2123091,1,1,Active Shallow Crust,240.0189,58.00492,0.0,04/18/8219 +2.96966,43.00692,3049,4,20,12,37,30,4.15,15.0,fr,49993,60,2123113,1,2,Active Shallow Crust,0.0,89.99076,0.0,04/20/3049 +2.96966,43.00692,9922,9,6,14,52,39,4.15,15.0,fr,49994,198,2123113,1,2,Active Shallow Crust,0.0,89.99076,0.0,09/06/9922 +2.96966,43.00692,2459,2,14,1,54,39,4.95,15.0,fr,49995,49,2123218,1,1,Active Shallow Crust,128.8913,89.98981,0.0,02/14/2459 +2.44127,43.05737,2919,5,6,0,56,53,3.55,5.0,fr,49996,58,2123523,1,1,Active Shallow Crust,240.0121,57.99783,0.0,05/06/2919 +2.44127,43.05737,6240,6,22,14,24,40,3.65,5.0,fr,49997,124,2123532,1,2,Active Shallow Crust,0.0,89.99015,0.0,06/22/6240 +2.44127,43.05737,5236,6,15,20,58,46,3.65,5.0,fr,49998,104,2123532,1,2,Active Shallow Crust,0.0,89.99015,0.0,06/15/5236 +2.44127,43.05737,8067,10,22,8,35,49,3.65,15.0,fr,49999,161,2123539,1,1,Active Shallow Crust,0.0,89.99004,-90.0,10/22/8067 +2.44127,43.05737,5730,12,29,15,23,31,3.75,5.0,fr,50000,114,2123544,1,1,Active Shallow Crust,0.0,89.99122,0.0,12/29/5730 +2.44127,43.05737,9721,3,1,8,14,24,3.75,5.0,fr,50001,194,2123547,1,1,Active Shallow Crust,240.0081,58.01781,0.0,03/01/9721 +2.44127,43.05737,2550,10,17,5,14,2,3.75,5.0,fr,50002,50,2123550,1,1,Active Shallow Crust,0.0,89.99112,-90.0,10/17/2550 +2.44127,43.05737,5003,6,29,15,29,25,3.95,5.0,fr,50003,100,2123568,1,1,Active Shallow Crust,0.0,89.9907,0.0,06/29/5003 +2.44127,43.05737,5168,10,12,19,29,39,3.95,15.0,fr,50004,103,2123569,1,1,Active Shallow Crust,0.0,89.9907,0.0,10/12/5168 +2.44127,43.05737,7009,10,30,17,48,0,3.95,5.0,fr,50005,140,2123577,1,1,Active Shallow Crust,128.9007,89.99303,0.0,10/30/7009 +2.44127,43.05737,1155,5,31,19,47,1,4.05,15.0,fr,50006,23,2123584,1,1,Active Shallow Crust,240.0053,58.0059,0.0,05/31/1155 +2.44127,43.05737,9772,12,3,21,2,17,4.05,5.0,fr,50007,195,2123589,1,1,Active Shallow Crust,128.8907,89.99378,0.0,12/03/9772 +2.44127,43.05737,2852,8,2,16,1,43,4.25,5.0,fr,50008,57,2123604,1,1,Active Shallow Crust,0.0,89.99013,0.0,08/02/2852 +2.44127,43.05737,9413,4,23,17,24,33,4.25,5.0,fr,50009,188,2123607,1,1,Active Shallow Crust,240.0071,57.99386,0.0,04/23/9413 +2.44127,43.05737,5290,10,6,1,6,10,4.55,5.0,fr,50010,105,2123643,1,1,Active Shallow Crust,240.0085,57.99716,0.0,10/06/5290 +2.44127,43.05737,9331,10,5,14,35,25,4.85,15.0,fr,50011,186,2123677,1,1,Active Shallow Crust,0.0,89.9901,0.0,10/05/9331 +2.44127,43.05737,8720,3,8,16,50,14,4.95,5.0,fr,50012,174,2123688,1,1,Active Shallow Crust,0.0,89.98971,0.0,03/08/8720 +2.44127,43.05737,6981,6,2,8,26,23,5.75,5.0,fr,50013,139,2123784,1,1,Active Shallow Crust,0.0,89.99004,0.0,06/02/6981 +1.88962,42.70228,6773,10,27,0,6,27,3.55,5.0,fr,50014,135,2124000,1,3,Active Shallow Crust,0.0,89.99074,0.0,10/27/6773 +1.88962,42.70228,8573,9,12,12,8,38,3.55,5.0,fr,50015,171,2124000,1,3,Active Shallow Crust,0.0,89.99074,0.0,09/12/8573 +1.88962,42.70228,479,8,7,0,57,41,3.55,5.0,fr,50016,9,2124000,1,3,Active Shallow Crust,0.0,89.99074,0.0,08/07/0479 +1.88962,42.70228,8177,10,14,3,4,46,3.55,5.0,fr,50017,163,2124003,1,2,Active Shallow Crust,240.0117,57.99838,0.0,10/14/8177 +1.88962,42.70228,9082,8,10,0,47,35,3.55,5.0,fr,50018,181,2124003,1,2,Active Shallow Crust,240.0117,57.99838,0.0,08/10/9082 +1.88962,42.70228,8163,3,20,8,29,12,3.55,5.0,fr,50019,163,2124006,1,1,Active Shallow Crust,0.0,89.99063,-90.0,03/20/8163 +1.88962,42.70228,8371,1,14,7,54,6,3.65,5.0,fr,50020,167,2124012,1,1,Active Shallow Crust,0.0,89.99009,0.0,01/14/8371 +1.88962,42.70228,2917,3,11,15,16,47,3.65,15.0,fr,50021,58,2124016,1,1,Active Shallow Crust,240.0004,58.01295,0.0,03/11/2917 +1.88962,42.70228,3177,3,28,11,40,12,3.75,5.0,fr,50022,63,2124024,1,1,Active Shallow Crust,0.0,89.9897,0.0,03/28/3177 +1.88962,42.70228,8273,12,31,7,27,35,3.75,15.0,fr,50023,165,2124025,1,1,Active Shallow Crust,0.0,89.9897,0.0,12/31/8273 +1.88962,42.70228,2097,6,19,22,52,18,3.85,5.0,fr,50024,41,2124036,1,1,Active Shallow Crust,0.0,89.98951,0.0,06/19/2097 +1.88962,42.70228,3177,3,1,9,9,39,3.85,27.5,fr,50025,63,2124038,1,1,Active Shallow Crust,0.0,89.98951,0.0,03/01/3177 +1.88962,42.70228,75,2,26,22,2,19,3.85,15.0,fr,50026,1,2124046,1,1,Active Shallow Crust,128.8958,89.99409,0.0,02/26/0075 +1.88962,42.70228,2943,12,2,9,42,5,3.95,5.0,fr,50027,58,2124048,1,2,Active Shallow Crust,0.0,89.98948,0.0,12/02/2943 +1.88962,42.70228,7345,9,23,10,54,38,3.95,5.0,fr,50028,146,2124048,1,2,Active Shallow Crust,0.0,89.98948,0.0,09/23/7345 +1.88962,42.70228,5720,6,3,23,53,43,3.95,27.5,fr,50029,114,2124050,1,1,Active Shallow Crust,0.0,89.98948,0.0,06/03/5720 +1.88962,42.70228,2454,5,27,0,10,49,4.05,5.0,fr,50030,49,2124060,1,1,Active Shallow Crust,0.0,89.98958,0.0,05/27/2454 +1.88962,42.70228,1407,12,5,15,24,6,4.05,15.0,fr,50031,28,2124061,1,1,Active Shallow Crust,0.0,89.98958,0.0,12/05/1407 +1.88962,42.70228,5029,3,11,15,7,18,4.05,15.0,fr,50032,100,2124064,1,1,Active Shallow Crust,240.0052,58.00563,0.0,03/11/5029 +-0.9611,46.08136,9184,7,19,5,27,0,3.55,5.0,fr,50033,183,2124480,1,2,Active Shallow Crust,0.0,89.99038,0.0,07/19/9184 +-0.9611,46.08136,6411,7,7,18,46,19,3.55,5.0,fr,50034,128,2124480,1,2,Active Shallow Crust,0.0,89.99038,0.0,07/07/6411 +-0.9611,46.08136,4762,4,28,1,55,30,3.55,5.0,fr,50035,95,2124489,1,1,Active Shallow Crust,128.8961,89.99388,0.0,04/28/4762 +-0.9611,46.08136,1170,10,16,16,12,49,3.65,5.0,fr,50036,23,2124492,1,4,Active Shallow Crust,0.0,89.98987,0.0,10/16/1170 +-0.9611,46.08136,5956,2,20,16,47,47,3.65,5.0,fr,50037,119,2124492,1,4,Active Shallow Crust,0.0,89.98987,0.0,02/20/5956 +-0.9611,46.08136,6253,2,8,16,21,19,3.65,5.0,fr,50038,125,2124492,1,4,Active Shallow Crust,0.0,89.98987,0.0,02/08/6253 +-0.9611,46.08136,2236,12,26,10,4,16,3.65,5.0,fr,50039,44,2124492,1,4,Active Shallow Crust,0.0,89.98987,0.0,12/26/2236 +-0.9611,46.08136,1546,8,24,2,53,26,3.65,15.0,fr,50040,30,2124493,1,2,Active Shallow Crust,0.0,89.98987,0.0,08/24/1546 +-0.9611,46.08136,7988,4,4,12,32,51,3.65,15.0,fr,50041,159,2124493,1,2,Active Shallow Crust,0.0,89.98987,0.0,04/04/7988 +-0.9611,46.08136,8630,7,12,3,41,11,3.75,5.0,fr,50042,172,2124504,1,2,Active Shallow Crust,0.0,89.99028,0.0,07/12/8630 +-0.9611,46.08136,1272,3,18,19,33,42,3.75,5.0,fr,50043,25,2124504,1,2,Active Shallow Crust,0.0,89.99028,0.0,03/18/1272 +-0.9611,46.08136,2380,9,23,15,53,45,3.75,27.5,fr,50044,47,2124506,1,1,Active Shallow Crust,0.0,89.99028,0.0,09/23/2380 +-0.9611,46.08136,3857,10,14,21,4,27,3.85,5.0,fr,50045,77,2124516,1,2,Active Shallow Crust,0.0,89.9901,0.0,10/14/3857 +-0.9611,46.08136,662,9,17,1,31,13,3.85,5.0,fr,50046,13,2124516,1,2,Active Shallow Crust,0.0,89.9901,0.0,09/17/0662 +-0.9611,46.08136,2942,7,29,20,12,59,3.85,15.0,fr,50047,58,2124517,1,1,Active Shallow Crust,0.0,89.9901,0.0,07/29/2942 +-0.9611,46.08136,94,7,12,15,32,57,3.85,5.0,fr,50048,1,2124519,1,1,Active Shallow Crust,240.0107,57.99787,0.0,07/12/0094 +-0.9611,46.08136,6424,1,9,19,5,44,3.95,5.0,fr,50049,128,2124534,1,1,Active Shallow Crust,0.0,89.98995,-90.0,01/09/6424 +-0.9611,46.08136,6804,10,16,5,43,42,4.05,5.0,fr,50050,136,2124540,1,1,Active Shallow Crust,0.0,89.99017,0.0,10/16/6804 +-0.9611,46.08136,5542,8,21,2,1,4,4.15,5.0,fr,50051,110,2124555,1,1,Active Shallow Crust,240.0085,57.99722,0.0,08/21/5542 +-0.9611,46.08136,8123,2,10,3,51,17,4.25,5.0,fr,50052,162,2124564,1,1,Active Shallow Crust,0.0,89.98985,0.0,02/10/8123 +-0.9611,46.08136,4944,8,20,16,14,20,4.35,15.0,fr,50053,98,2124577,1,1,Active Shallow Crust,0.0,89.98991,0.0,08/20/4944 +-0.9611,46.08136,2461,11,30,4,40,25,4.65,5.0,fr,50054,49,2124615,1,1,Active Shallow Crust,240.0107,57.99421,0.0,11/30/2461 +-0.9611,46.08136,2428,2,20,22,37,32,5.45,15.0,fr,50055,48,2124709,1,1,Active Shallow Crust,0.0,89.98999,0.0,02/20/2428 +-2.4883,48.25287,5314,1,11,13,34,11,3.55,5.0,fr,50056,106,2124960,1,2,Active Shallow Crust,0.0,89.98993,0.0,01/11/5314 +-2.4883,48.25287,497,11,28,21,40,46,3.55,5.0,fr,50057,9,2124960,1,2,Active Shallow Crust,0.0,89.98993,0.0,11/28/0497 +-2.4883,48.25287,5524,8,28,2,0,54,3.65,5.0,fr,50058,110,2124972,1,1,Active Shallow Crust,0.0,89.99102,0.0,08/28/5524 +-2.4883,48.25287,2567,4,9,22,50,21,3.65,27.5,fr,50059,51,2124974,1,2,Active Shallow Crust,0.0,89.99102,0.0,04/09/2567 +-2.4883,48.25287,2297,11,1,5,36,28,3.65,27.5,fr,50060,45,2124974,1,2,Active Shallow Crust,0.0,89.99102,0.0,11/01/2297 +-2.4883,48.25287,1680,10,16,0,2,30,3.75,5.0,fr,50061,33,2124987,1,1,Active Shallow Crust,240.0082,58.01791,0.0,10/16/1680 +-2.4883,48.25287,1530,6,4,7,37,29,3.75,27.5,fr,50062,30,2124989,1,1,Active Shallow Crust,240.0082,58.01791,0.0,06/04/1530 +-2.4883,48.25287,2559,10,22,0,36,19,3.95,5.0,fr,50063,51,2125008,1,1,Active Shallow Crust,0.0,89.98941,0.0,10/22/2559 +-2.4883,48.25287,8496,11,29,9,9,0,4.05,15.0,fr,50064,169,2125027,1,1,Active Shallow Crust,0.0,89.99045,-90.0,11/29/8496 +-2.4883,48.25287,2407,10,8,2,43,13,4.35,5.0,fr,50065,48,2125056,1,1,Active Shallow Crust,0.0,89.99065,0.0,10/08/2407 +-2.4883,48.25287,8011,1,2,21,33,38,4.45,5.0,fr,50066,160,2125074,1,1,Active Shallow Crust,0.0,89.99036,-90.0,01/02/8011 +-2.4883,48.25287,5466,9,14,12,55,6,4.55,27.5,fr,50067,109,2125082,1,1,Active Shallow Crust,0.0,89.99045,0.0,09/14/5466 +-2.4883,48.25287,2067,11,24,18,33,10,4.95,5.0,fr,50068,41,2125128,1,1,Active Shallow Crust,0.0,89.98995,0.0,11/24/2067 +-2.4883,48.25287,2212,7,9,14,57,44,5.85,5.0,fr,50069,44,2125245,1,1,Active Shallow Crust,128.8654,89.9915,0.0,07/09/2212 +-2.4883,48.25287,4546,5,31,8,9,41,6.05,15.0,fr,50070,90,2125261,1,1,Active Shallow Crust,0.0,89.98998,0.0,05/31/4546 +-1.91759,41.72028,4132,6,24,1,49,19,3.55,27.5,fr,50071,82,2125448,1,1,Active Shallow Crust,0.0,89.99049,-90.0,06/24/4132 +-1.91759,41.72028,486,3,14,16,21,22,3.65,5.0,fr,50072,9,2125452,1,1,Active Shallow Crust,0.0,89.98994,0.0,03/14/0486 +-1.91759,41.72028,9861,9,14,22,50,35,4.25,5.0,fr,50073,197,2125524,1,1,Active Shallow Crust,0.0,89.98991,0.0,09/14/9861 +3.94315,46.43407,5372,2,21,7,33,53,3.55,5.0,fr,50074,107,2125920,1,2,Active Shallow Crust,0.0,89.98958,0.0,02/21/5372 +3.94315,46.43407,5143,12,30,1,33,1,3.55,5.0,fr,50075,102,2125920,1,2,Active Shallow Crust,0.0,89.98958,0.0,12/30/5143 +3.94315,46.43407,6495,10,12,5,40,58,3.55,15.0,fr,50076,129,2125921,1,1,Active Shallow Crust,0.0,89.98958,0.0,10/12/6495 +3.94315,46.43407,6275,1,11,22,13,12,3.55,5.0,fr,50077,125,2125923,1,1,Active Shallow Crust,240.012,57.99865,0.0,01/11/6275 +3.94315,46.43407,4108,1,1,17,24,28,3.65,15.0,fr,50078,82,2125933,1,1,Active Shallow Crust,0.0,89.99071,0.0,01/01/4108 +3.94315,46.43407,2205,10,22,12,22,36,3.85,15.0,fr,50079,44,2125957,1,1,Active Shallow Crust,0.0,89.99016,0.0,10/22/2205 +3.94315,46.43407,9481,2,1,0,40,42,3.95,5.0,fr,50080,189,2125977,1,1,Active Shallow Crust,128.8999,89.99342,0.0,02/01/9481 +3.94315,46.43407,5829,6,11,9,1,49,4.25,5.0,fr,50081,116,2126004,1,1,Active Shallow Crust,0.0,89.99068,0.0,06/11/5829 +3.94315,46.43407,2723,6,20,2,33,12,4.35,5.0,fr,50082,54,2126016,1,1,Active Shallow Crust,0.0,89.99032,0.0,06/20/2723 +-1.96726,43.24048,4257,9,25,8,34,26,3.55,5.0,fr,50083,85,2126400,1,2,Active Shallow Crust,0.0,89.99081,0.0,09/25/4257 +-1.96726,43.24048,5460,10,15,21,57,45,3.55,5.0,fr,50084,109,2126400,1,2,Active Shallow Crust,0.0,89.99081,0.0,10/15/5460 +-1.96726,43.24048,3302,4,28,12,23,35,3.55,5.0,fr,50085,66,2126406,1,1,Active Shallow Crust,0.0,89.99072,-90.0,04/28/3302 +-1.96726,43.24048,847,8,21,4,15,22,3.55,15.0,fr,50086,16,2126407,1,1,Active Shallow Crust,0.0,89.99072,-90.0,08/21/0847 +-1.96726,43.24048,5654,4,23,5,20,1,3.65,5.0,fr,50087,113,2126412,1,1,Active Shallow Crust,0.0,89.99018,0.0,04/23/5654 +-1.96726,43.24048,4027,3,9,8,16,50,3.65,15.0,fr,50088,80,2126413,1,1,Active Shallow Crust,0.0,89.99018,0.0,03/09/4027 +-1.96726,43.24048,3136,4,20,11,31,7,3.65,27.5,fr,50089,62,2126414,1,1,Active Shallow Crust,0.0,89.99018,0.0,04/20/3136 +-1.96726,43.24048,7117,1,21,22,13,49,3.65,5.0,fr,50090,142,2126418,1,1,Active Shallow Crust,0.0,89.99007,-90.0,01/21/7117 +-1.96726,43.24048,4228,9,22,16,27,13,3.75,5.0,fr,50091,84,2126424,1,1,Active Shallow Crust,0.0,89.98979,0.0,09/22/4228 +-1.96726,43.24048,7285,11,17,10,32,17,3.75,5.0,fr,50092,145,2126427,1,1,Active Shallow Crust,240.0079,58.01758,0.0,11/17/7285 +-1.96726,43.24048,3519,5,10,14,6,7,3.85,5.0,fr,50093,70,2126436,1,2,Active Shallow Crust,0.0,89.9896,0.0,05/10/3519 +-1.96726,43.24048,3556,7,31,1,13,48,3.85,5.0,fr,50094,71,2126436,1,2,Active Shallow Crust,0.0,89.9896,0.0,07/31/3556 +-1.96726,43.24048,4414,3,15,21,5,0,3.85,15.0,fr,50095,88,2126440,1,1,Active Shallow Crust,240.0104,57.99764,0.0,03/15/4414 +-1.96726,43.24048,9775,5,12,17,10,23,3.85,5.0,fr,50096,195,2126442,1,1,Active Shallow Crust,0.0,89.98948,-90.0,05/12/9775 +-1.96726,43.24048,1891,10,5,23,26,24,3.95,5.0,fr,50097,37,2126448,1,1,Active Shallow Crust,0.0,89.98957,0.0,10/05/1891 +-1.96726,43.24048,9609,4,14,13,53,12,3.95,27.5,fr,50098,192,2126453,1,1,Active Shallow Crust,240.0194,58.00488,0.0,04/14/9609 +-1.96726,43.24048,3219,7,10,5,25,18,3.95,5.0,fr,50099,64,2126457,1,1,Active Shallow Crust,128.9008,89.99363,0.0,07/10/3219 +-1.96726,43.24048,8814,5,20,8,52,25,4.05,15.0,fr,50100,176,2126461,1,2,Active Shallow Crust,0.0,89.98967,0.0,05/20/8814 +-1.96726,43.24048,5569,2,1,1,33,14,4.05,15.0,fr,50101,111,2126461,1,2,Active Shallow Crust,0.0,89.98967,0.0,02/01/5569 +-1.96726,43.24048,7506,3,30,16,24,42,4.05,5.0,fr,50102,150,2126469,1,1,Active Shallow Crust,128.8907,89.9938,0.0,03/30/7506 +-1.96726,43.24048,9590,8,16,3,35,18,4.15,5.0,fr,50103,191,2126472,1,2,Active Shallow Crust,0.0,89.98988,0.0,08/16/9590 +-1.96726,43.24048,7901,3,4,9,17,58,4.15,5.0,fr,50104,158,2126472,1,2,Active Shallow Crust,0.0,89.98988,0.0,03/04/7901 +-1.96726,43.24048,9602,7,5,7,50,49,4.15,15.0,fr,50105,192,2126479,1,1,Active Shallow Crust,0.0,89.98976,-90.0,07/05/9602 +-1.96726,43.24048,6822,5,9,5,27,7,4.25,5.0,fr,50106,136,2126484,1,1,Active Shallow Crust,0.0,89.99016,0.0,05/09/6822 +-1.96726,43.24048,3241,7,17,2,55,16,4.25,5.0,fr,50107,64,2126490,1,1,Active Shallow Crust,0.0,89.99004,-90.0,07/17/3241 +-1.96726,43.24048,1119,10,6,6,9,38,4.85,5.0,fr,50108,22,2126556,1,3,Active Shallow Crust,0.0,89.99013,0.0,10/06/1119 +-1.96726,43.24048,4144,9,24,9,35,21,4.85,5.0,fr,50109,82,2126556,1,3,Active Shallow Crust,0.0,89.99013,0.0,09/24/4144 +-1.96726,43.24048,1453,7,25,16,50,45,4.85,5.0,fr,50110,29,2126556,1,3,Active Shallow Crust,0.0,89.99013,0.0,07/25/1453 +-1.96726,43.24048,8822,6,27,23,50,35,5.75,5.0,fr,50111,176,2126664,1,1,Active Shallow Crust,0.0,89.98993,0.0,06/27/8822 +-1.967253,43.24048,7384,12,5,23,41,57,6.45,8.39402,fr,50112,147,2126754,1,1,Active Shallow Crust,360.0,89.99001,-90.0,12/05/7384 +2.09243,47.62696,3203,1,18,18,57,32,3.65,5.0,fr,50113,64,2126892,1,1,Active Shallow Crust,0.0,89.99091,0.0,01/18/3203 +2.09243,47.62696,9457,4,17,15,37,34,3.75,5.0,fr,50114,189,2126904,1,2,Active Shallow Crust,0.0,89.9892,0.0,04/17/9457 +2.09243,47.62696,1835,8,21,0,41,26,3.75,5.0,fr,50115,36,2126904,1,2,Active Shallow Crust,0.0,89.9892,0.0,08/21/1835 +2.09243,47.62696,3244,1,11,2,46,16,4.05,5.0,fr,50116,64,2126940,1,1,Active Shallow Crust,0.0,89.99045,0.0,01/11/3244 +2.09243,47.62696,1078,6,3,22,57,11,4.05,5.0,fr,50117,21,2126949,1,1,Active Shallow Crust,128.8905,89.99331,0.0,06/03/1078 +2.09243,47.62696,8011,2,6,17,8,23,4.45,5.0,fr,50118,160,2126988,1,1,Active Shallow Crust,0.0,89.99036,0.0,02/06/8011 +2.09243,47.62696,6516,9,9,6,38,45,4.55,5.0,fr,50119,130,2127003,1,1,Active Shallow Crust,240.0098,57.99747,0.0,09/09/6516 +-4.24988,48.49798,2837,8,13,4,20,0,3.55,5.0,fr,50120,56,2127360,1,3,Active Shallow Crust,0.0,89.99332,0.0,08/13/2837 +-4.24988,48.49798,9321,9,27,12,25,15,3.55,5.0,fr,50121,186,2127360,1,3,Active Shallow Crust,0.0,89.99332,0.0,09/27/9321 +-4.24988,48.49798,3116,9,1,16,34,39,3.55,5.0,fr,50122,62,2127360,1,3,Active Shallow Crust,0.0,89.99332,0.0,09/01/3116 +-4.24988,48.49798,1520,2,15,7,57,40,3.55,27.5,fr,50123,30,2127362,1,1,Active Shallow Crust,0.0,89.99332,0.0,02/15/1520 +-4.24988,48.49798,502,2,20,12,32,44,3.65,15.0,fr,50124,10,2127373,1,1,Active Shallow Crust,0.0,89.98809,0.0,02/20/0502 +-4.24988,48.49798,9480,9,4,2,24,25,3.75,5.0,fr,50125,189,2127387,1,2,Active Shallow Crust,240.0079,58.01788,0.0,09/04/9480 +-4.24988,48.49798,1759,2,28,16,2,54,3.75,5.0,fr,50126,35,2127387,1,2,Active Shallow Crust,240.0079,58.01788,0.0,02/28/1759 +-4.24988,48.49798,2991,4,23,10,18,2,3.95,5.0,fr,50127,59,2127408,1,1,Active Shallow Crust,0.0,89.99157,0.0,04/23/2991 +-4.24988,48.49798,1704,2,2,18,11,24,3.95,5.0,fr,50128,34,2127414,1,1,Active Shallow Crust,0.0,89.99147,-90.0,02/02/1704 +-4.24988,48.49798,84,1,16,5,55,44,3.95,5.0,fr,50129,1,2127417,1,1,Active Shallow Crust,128.8992,89.99368,0.0,01/16/0084 +-4.24988,48.49798,6498,12,24,17,29,47,4.05,5.0,fr,50130,129,2127429,1,1,Active Shallow Crust,128.8907,89.99249,0.0,12/24/6498 +-4.24988,48.49798,3846,11,29,12,33,23,4.45,5.0,fr,50131,76,2127468,1,1,Active Shallow Crust,0.0,89.99052,0.0,11/29/3846 +-4.24988,48.49798,1108,10,6,1,47,53,4.65,5.0,fr,50132,22,2127492,1,1,Active Shallow Crust,0.0,89.99059,0.0,10/06/1108 +-4.24988,48.49798,6471,7,20,21,40,21,4.75,15.0,fr,50133,129,2127505,1,1,Active Shallow Crust,0.0,89.98993,0.0,07/20/6471 +-4.24988,48.49798,7016,12,15,19,51,35,5.55,5.0,fr,50134,140,2127600,1,1,Active Shallow Crust,0.0,89.98997,0.0,12/15/7016 +0.58021,45.25956,9528,11,19,3,7,27,3.55,5.0,fr,50135,190,2127840,1,1,Active Shallow Crust,0.0,89.99024,0.0,11/19/9528 +0.58021,45.25956,5096,5,26,17,41,36,3.85,5.0,fr,50136,101,2127876,1,1,Active Shallow Crust,0.0,89.98995,0.0,05/26/5096 +0.58021,45.25956,1691,3,28,19,46,49,3.95,5.0,fr,50137,33,2127888,1,1,Active Shallow Crust,0.0,89.98992,0.0,03/28/1691 +0.58021,45.25956,7822,8,7,1,13,22,4.05,15.0,fr,50138,156,2127901,1,1,Active Shallow Crust,0.0,89.99002,0.0,08/07/7822 +0.58021,45.25956,3128,5,25,21,10,20,4.35,15.0,fr,50139,62,2127937,1,1,Active Shallow Crust,0.0,89.99011,0.0,05/25/3128 +-0.27565,49.61277,3965,1,11,17,44,30,3.55,5.0,fr,50140,79,2128800,1,1,Active Shallow Crust,0.0,89.9902,0.0,01/11/3965 +-0.27565,49.61277,8442,9,18,3,39,52,3.55,15.0,fr,50141,168,2128804,1,1,Active Shallow Crust,240.0125,57.99819,0.0,09/18/8442 +-0.27565,49.61277,9823,5,8,7,44,52,3.55,15.0,fr,50142,196,2128807,1,1,Active Shallow Crust,0.0,89.99009,-90.0,05/08/9823 +-0.27565,49.61277,8088,3,2,23,43,29,3.65,27.5,fr,50143,161,2128814,1,1,Active Shallow Crust,0.0,89.99017,0.0,03/02/8088 +-0.27565,49.61277,6887,6,27,21,54,3,3.65,5.0,fr,50144,137,2128815,1,1,Active Shallow Crust,240.0014,58.01297,0.0,06/27/6887 +-0.27565,49.61277,299,8,12,2,7,33,3.75,5.0,fr,50145,5,2128824,1,1,Active Shallow Crust,0.0,89.98994,0.0,08/12/0299 +-0.27565,49.61277,7722,2,22,12,43,23,3.75,15.0,fr,50146,154,2128831,1,1,Active Shallow Crust,0.0,89.99016,-90.0,02/22/7722 +-0.27565,49.61277,19,11,30,1,56,45,3.85,5.0,fr,50147,0,2128836,1,1,Active Shallow Crust,0.0,89.98988,0.0,11/30/0019 +-0.27565,49.61277,1742,3,8,8,18,15,3.95,15.0,fr,50148,34,2128849,1,1,Active Shallow Crust,0.0,89.98995,0.0,03/08/1742 +-0.27565,49.61277,4838,7,1,8,20,16,3.95,15.0,fr,50149,96,2128855,1,1,Active Shallow Crust,0.0,89.9901,-90.0,07/01/4838 +-0.27565,49.61277,5208,2,7,0,18,45,4.05,27.5,fr,50150,104,2128862,1,1,Active Shallow Crust,0.0,89.9899,0.0,02/07/5208 +-0.27565,49.61277,560,11,9,8,32,27,4.15,27.5,fr,50151,11,2128877,1,1,Active Shallow Crust,240.009,57.99739,0.0,11/09/0560 +-0.27565,49.61277,5079,11,22,20,21,40,4.15,15.0,fr,50152,101,2128879,1,1,Active Shallow Crust,0.0,89.99006,-90.0,11/22/5079 +-0.27565,49.61277,9876,12,22,15,40,39,4.15,5.0,fr,50153,197,2128881,1,1,Active Shallow Crust,128.8971,89.99376,0.0,12/22/9876 +-0.27565,49.61277,7872,5,9,10,48,20,4.55,15.0,fr,50154,157,2128921,1,1,Active Shallow Crust,0.0,89.99006,0.0,05/09/7872 +-0.27565,49.61277,206,9,2,17,55,29,4.55,27.5,fr,50155,4,2128922,1,1,Active Shallow Crust,0.0,89.99006,0.0,09/02/0206 +-0.27565,49.61277,411,7,4,6,57,34,4.85,5.0,fr,50156,8,2128956,1,1,Active Shallow Crust,0.0,89.99004,0.0,07/04/0411 +-0.27565,49.61277,2688,3,14,13,2,18,5.45,15.0,fr,50157,53,2129029,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/14/2688 +-1.19137,42.08316,4356,2,14,0,37,55,3.85,27.5,fr,50158,87,2129327,1,1,Active Shallow Crust,128.8961,89.99338,0.0,02/14/4356 +-1.19137,42.08316,6106,10,27,13,8,16,3.95,5.0,fr,50159,122,2129334,1,1,Active Shallow Crust,0.0,89.99045,-90.0,10/27/6106 +-1.19137,42.08316,8574,9,8,0,40,50,4.05,5.0,fr,50160,171,2129340,1,1,Active Shallow Crust,0.0,89.98948,0.0,09/08/8574 +8.04013,44.73103,9906,9,21,23,30,3,3.55,5.0,fr,50161,198,2129760,1,1,Active Shallow Crust,0.0,89.98567,0.0,09/21/9906 +8.04013,44.73103,5583,9,9,13,49,15,3.75,5.0,fr,50162,111,2129784,1,1,Active Shallow Crust,0.0,89.98862,0.0,09/09/5583 +8.04013,44.73103,2175,10,3,23,47,53,3.75,5.0,fr,50163,43,2129787,1,1,Active Shallow Crust,240.0077,58.01707,0.0,10/03/2175 +8.04013,44.73103,2937,3,22,22,26,6,3.85,5.0,fr,50164,58,2129799,1,1,Active Shallow Crust,240.0103,57.99843,0.0,03/22/2937 +8.04013,44.73103,945,1,22,23,19,20,3.95,5.0,fr,50165,18,2129808,1,1,Active Shallow Crust,0.0,89.99096,0.0,01/22/0945 +8.04013,44.73103,1854,9,19,13,49,4,4.05,15.0,fr,50166,37,2129821,1,1,Active Shallow Crust,0.0,89.99194,0.0,09/19/1854 +8.04013,44.73103,2948,7,6,22,10,41,5.05,5.0,fr,50167,58,2129940,1,1,Active Shallow Crust,0.0,89.98981,0.0,07/06/2948 +8.04013,44.73103,5049,2,1,15,36,59,5.35,5.0,fr,50168,100,2129976,1,1,Active Shallow Crust,0.0,89.98917,0.0,02/01/5049 +-0.0221,47.09942,1793,6,21,7,16,20,3.55,5.0,fr,50169,35,2130240,1,2,Active Shallow Crust,0.0,89.99,0.0,06/21/1793 +-0.0221,47.09942,115,11,18,1,49,3,3.55,5.0,fr,50170,2,2130240,1,2,Active Shallow Crust,0.0,89.99,0.0,11/18/0115 +-0.0221,47.09942,2379,9,8,4,27,58,3.55,15.0,fr,50171,47,2130241,1,2,Active Shallow Crust,0.0,89.99,0.0,09/08/2379 +-0.0221,47.09942,8505,8,7,5,45,36,3.55,15.0,fr,50172,170,2130241,1,2,Active Shallow Crust,0.0,89.99,0.0,08/07/8505 +-0.0221,47.09942,4788,11,7,23,49,22,3.55,15.0,fr,50173,95,2130244,1,1,Active Shallow Crust,240.0122,57.99817,0.0,11/07/4788 +-0.0221,47.09942,2078,12,10,0,2,46,3.55,5.0,fr,50174,41,2130249,1,1,Active Shallow Crust,128.8962,89.99373,0.0,12/10/2078 +-0.0221,47.09942,6239,6,4,3,2,10,3.65,5.0,fr,50175,124,2130252,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/04/6239 +-0.0221,47.09942,823,6,30,6,21,6,3.65,27.5,fr,50176,16,2130254,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/30/0823 +-0.0221,47.09942,69,8,18,7,15,6,3.65,5.0,fr,50177,1,2130255,1,1,Active Shallow Crust,240.0011,58.01291,0.0,08/18/0069 +-0.0221,47.09942,9997,9,19,4,9,41,3.65,15.0,fr,50178,199,2130256,1,1,Active Shallow Crust,240.0011,58.01291,0.0,09/19/9997 +-0.0221,47.09942,4549,8,31,5,53,50,3.65,5.0,fr,50179,90,2130258,1,1,Active Shallow Crust,0.0,89.98999,-90.0,08/31/4549 +-0.0221,47.09942,2383,1,31,23,1,47,3.85,5.0,fr,50180,47,2130276,1,2,Active Shallow Crust,0.0,89.99,0.0,01/31/2383 +-0.0221,47.09942,7848,2,10,14,48,58,3.85,5.0,fr,50181,156,2130276,1,2,Active Shallow Crust,0.0,89.99,0.0,02/10/7848 +-0.0221,47.09942,3841,6,20,11,45,57,3.85,27.5,fr,50182,76,2130278,1,2,Active Shallow Crust,0.0,89.99,0.0,06/20/3841 +-0.0221,47.09942,3311,8,19,7,44,0,3.85,27.5,fr,50183,66,2130278,1,2,Active Shallow Crust,0.0,89.99,0.0,08/19/3311 +-0.0221,47.09942,2831,4,3,7,11,25,3.95,5.0,fr,50184,56,2130294,1,1,Active Shallow Crust,0.0,89.99001,-90.0,04/03/2831 +-0.0221,47.09942,4156,12,29,15,35,21,3.95,5.0,fr,50185,83,2130297,1,1,Active Shallow Crust,128.9003,89.99372,0.0,12/29/4156 +-0.0221,47.09942,3261,4,30,14,55,17,4.05,5.0,fr,50186,65,2130300,1,2,Active Shallow Crust,0.0,89.99001,0.0,04/30/3261 +-0.0221,47.09942,3837,2,17,18,13,24,4.05,5.0,fr,50187,76,2130300,1,2,Active Shallow Crust,0.0,89.99001,0.0,02/17/3837 +-0.0221,47.09942,4454,10,31,2,40,31,4.15,5.0,fr,50188,89,2130312,1,1,Active Shallow Crust,0.0,89.99,0.0,10/31/4454 +-0.0221,47.09942,1443,1,1,7,53,4,4.45,5.0,fr,50189,28,2130348,1,2,Active Shallow Crust,0.0,89.99,0.0,01/01/1443 +-0.0221,47.09942,9252,10,24,22,15,13,4.45,5.0,fr,50190,185,2130348,1,2,Active Shallow Crust,0.0,89.99,0.0,10/24/9252 +-0.0221,47.09942,9529,9,8,15,10,36,5.65,27.5,fr,50191,190,2130494,1,1,Active Shallow Crust,360.0,89.99,0.0,09/08/9529 +7.67459,46.65694,4094,7,17,17,38,58,3.55,5.0,fr,50192,81,2130720,1,6,Active Shallow Crust,0.0,89.99308,0.0,07/17/4094 +7.67459,46.65694,5524,9,4,13,59,4,3.55,5.0,fr,50193,110,2130720,1,6,Active Shallow Crust,0.0,89.99308,0.0,09/04/5524 +7.67459,46.65694,9288,2,2,17,40,29,3.55,5.0,fr,50194,185,2130720,1,6,Active Shallow Crust,0.0,89.99308,0.0,02/02/9288 +7.67459,46.65694,4405,10,17,11,22,42,3.55,5.0,fr,50195,88,2130720,1,6,Active Shallow Crust,0.0,89.99308,0.0,10/17/4405 +7.67459,46.65694,5699,5,2,11,28,57,3.55,5.0,fr,50196,113,2130720,1,6,Active Shallow Crust,0.0,89.99308,0.0,05/02/5699 +7.67459,46.65694,4391,2,1,23,10,1,3.55,5.0,fr,50197,87,2130720,1,6,Active Shallow Crust,0.0,89.99308,0.0,02/01/4391 +7.67459,46.65694,4218,10,5,18,9,58,3.55,15.0,fr,50198,84,2130727,1,1,Active Shallow Crust,0.0,89.993,-90.0,10/05/4218 +7.67459,46.65694,4888,7,31,16,36,47,3.55,5.0,fr,50199,97,2130729,1,1,Active Shallow Crust,128.8954,89.99308,0.0,07/31/4888 +7.67459,46.65694,3729,9,26,13,43,15,3.65,5.0,fr,50200,74,2130732,1,4,Active Shallow Crust,0.0,89.98766,0.0,09/26/3729 +7.67459,46.65694,3987,3,31,17,15,11,3.65,5.0,fr,50201,79,2130732,1,4,Active Shallow Crust,0.0,89.98766,0.0,03/31/3987 +7.67459,46.65694,3803,1,31,11,14,37,3.65,5.0,fr,50202,76,2130732,1,4,Active Shallow Crust,0.0,89.98766,0.0,01/31/3803 +7.67459,46.65694,7782,4,28,7,55,28,3.65,5.0,fr,50203,155,2130732,1,4,Active Shallow Crust,0.0,89.98766,0.0,04/28/7782 +7.67459,46.65694,6880,4,30,22,55,20,3.65,5.0,fr,50204,137,2130735,1,1,Active Shallow Crust,240.002,58.01164,0.0,04/30/6880 +7.67459,46.65694,8976,11,6,14,24,46,3.65,15.0,fr,50205,179,2130742,1,1,Active Shallow Crust,128.9002,89.96352,0.0,11/06/8976 +7.67459,46.65694,2557,6,12,21,33,59,3.75,5.0,fr,50206,51,2130744,1,2,Active Shallow Crust,0.0,89.98901,0.0,06/12/2557 +7.67459,46.65694,5875,5,24,2,3,57,3.75,5.0,fr,50207,117,2130744,1,2,Active Shallow Crust,0.0,89.98901,0.0,05/24/5875 +7.67459,46.65694,6358,12,10,22,11,11,3.75,15.0,fr,50208,127,2130745,1,1,Active Shallow Crust,0.0,89.98901,0.0,12/10/6358 +7.67459,46.65694,5155,5,8,7,15,58,3.75,27.5,fr,50209,103,2130746,1,2,Active Shallow Crust,0.0,89.98901,0.0,05/08/5155 +7.67459,46.65694,4433,9,14,9,21,5,3.75,27.5,fr,50210,88,2130746,1,2,Active Shallow Crust,0.0,89.98901,0.0,09/14/4433 +7.67459,46.65694,6368,11,4,22,57,51,3.75,5.0,fr,50211,127,2130747,1,1,Active Shallow Crust,240.0078,58.01825,0.0,11/04/6368 +7.67459,46.65694,4304,1,19,8,5,33,3.75,27.5,fr,50212,86,2130755,1,1,Active Shallow Crust,128.8966,89.96749,0.0,01/19/4304 +7.67459,46.65694,8925,8,28,8,32,18,3.85,5.0,fr,50213,178,2130756,1,2,Active Shallow Crust,0.0,89.9902,0.0,08/28/8925 +7.67459,46.65694,5429,8,5,12,18,12,3.85,5.0,fr,50214,108,2130756,1,2,Active Shallow Crust,0.0,89.9902,0.0,08/05/5429 +7.67459,46.65694,2343,11,24,13,47,6,3.85,5.0,fr,50215,46,2130759,1,2,Active Shallow Crust,240.0108,57.99717,0.0,11/24/2343 +7.67459,46.65694,8774,8,21,21,14,10,3.85,5.0,fr,50216,175,2130759,1,2,Active Shallow Crust,240.0108,57.99717,0.0,08/21/8774 +7.67459,46.65694,4808,12,26,1,46,39,3.85,27.5,fr,50217,96,2130761,1,1,Active Shallow Crust,240.0108,57.99717,0.0,12/26/4808 +7.67459,46.65694,5794,3,7,12,27,13,3.85,5.0,fr,50218,115,2130762,1,1,Active Shallow Crust,0.0,89.99009,-90.0,03/07/5794 +7.67459,46.65694,4596,10,20,0,15,1,3.85,5.0,fr,50219,91,2130765,1,2,Active Shallow Crust,128.8947,89.9951,0.0,10/20/4596 +7.67459,46.65694,5793,8,2,10,38,20,3.85,5.0,fr,50220,115,2130765,1,2,Active Shallow Crust,128.8947,89.9951,0.0,08/02/5793 +7.67459,46.65694,8384,2,25,23,52,4,3.95,5.0,fr,50221,167,2130768,1,1,Active Shallow Crust,0.0,89.99126,0.0,02/25/8384 +7.67459,46.65694,9548,8,11,15,43,22,3.95,15.0,fr,50222,190,2130769,1,1,Active Shallow Crust,0.0,89.99126,0.0,08/11/9548 +7.67459,46.65694,3787,12,10,16,51,42,3.95,15.0,fr,50223,75,2130775,1,1,Active Shallow Crust,0.0,89.99117,-90.0,12/10/3787 +7.67459,46.65694,5962,8,18,23,59,24,4.05,5.0,fr,50224,119,2130780,1,1,Active Shallow Crust,0.0,89.98833,0.0,08/18/5962 +7.67459,46.65694,9508,3,2,23,45,5,4.05,27.5,fr,50225,190,2130782,1,1,Active Shallow Crust,0.0,89.98833,0.0,03/02/9508 +7.67459,46.65694,2991,4,14,9,6,21,4.05,5.0,fr,50226,59,2130783,1,1,Active Shallow Crust,240.0059,58.00637,0.0,04/14/2991 +7.67459,46.65694,8224,9,24,4,44,18,4.15,5.0,fr,50227,164,2130792,1,2,Active Shallow Crust,0.0,89.98959,0.0,09/24/8224 +7.67459,46.65694,9670,9,10,6,24,54,4.15,5.0,fr,50228,193,2130792,1,2,Active Shallow Crust,0.0,89.98959,0.0,09/10/9670 +7.67459,46.65694,552,10,6,11,35,32,4.15,15.0,fr,50229,11,2130793,1,1,Active Shallow Crust,0.0,89.98959,0.0,10/06/0552 +7.67459,46.65694,1521,9,21,15,11,19,4.25,5.0,fr,50230,30,2130804,1,1,Active Shallow Crust,0.0,89.99072,0.0,09/21/1521 +7.67459,46.65694,5644,10,3,15,33,42,4.25,15.0,fr,50231,112,2130805,1,1,Active Shallow Crust,0.0,89.99072,0.0,10/03/5644 +7.67459,46.65694,8742,6,23,21,35,45,4.35,5.0,fr,50232,174,2130816,1,1,Active Shallow Crust,0.0,89.98898,0.0,06/23/8742 +7.67459,46.65694,2112,1,16,8,59,13,4.45,5.0,fr,50233,42,2130828,1,1,Active Shallow Crust,0.0,89.99017,0.0,01/16/2112 +7.67459,46.65694,3923,8,8,15,2,51,4.45,5.0,fr,50234,78,2130831,1,1,Active Shallow Crust,240.0052,57.99445,0.0,08/08/3923 +7.67459,46.65694,2343,9,9,11,50,55,4.55,5.0,fr,50235,46,2130846,1,1,Active Shallow Crust,0.0,89.98893,-90.0,09/09/2343 +7.67459,46.65694,976,8,11,4,57,33,4.75,5.0,fr,50236,19,2130864,1,1,Active Shallow Crust,0.0,89.98957,0.0,08/11/0976 +7.67459,46.65694,9155,1,16,8,40,24,4.75,15.0,fr,50237,183,2130865,1,1,Active Shallow Crust,0.0,89.98957,0.0,01/16/9155 +7.67459,46.65694,1260,12,2,1,47,47,5.35,5.0,fr,50238,25,2130939,1,1,Active Shallow Crust,240.0251,57.99794,0.0,12/02/1260 +2.94198,51.68493,9487,6,24,0,11,31,3.65,5.0,fr,50239,189,2131212,1,1,Active Shallow Crust,0.0,89.98885,0.0,06/24/9487 +2.94198,51.68493,7653,9,5,17,40,57,3.75,5.0,fr,50240,153,2131230,1,1,Active Shallow Crust,0.0,89.98995,-90.0,09/05/7653 +8.22555,49.27272,6190,9,1,18,46,0,3.55,5.0,fr,50241,123,2131686,1,1,Active Shallow Crust,0.0,89.98669,-90.0,09/01/6190 +8.22555,49.27272,7331,7,30,17,19,18,3.55,5.0,fr,50242,146,2131689,1,1,Active Shallow Crust,128.8985,89.99342,0.0,07/30/7331 +8.22555,49.27272,8865,7,26,16,24,59,3.85,15.0,fr,50243,177,2131717,1,1,Active Shallow Crust,0.0,89.99068,0.0,07/26/8865 +8.22555,49.27272,1307,4,23,6,28,51,3.85,5.0,fr,50244,26,2131722,1,1,Active Shallow Crust,0.0,89.99058,-90.0,04/23/1307 +8.22555,49.27272,6078,7,30,20,29,8,3.95,5.0,fr,50245,121,2131728,1,1,Active Shallow Crust,0.0,89.9917,0.0,07/30/6078 +8.22555,49.27272,2373,10,15,15,27,26,4.15,15.0,fr,50246,47,2131753,1,1,Active Shallow Crust,0.0,89.98681,0.0,10/15/2373 +8.22555,49.27272,4085,5,7,1,18,50,4.25,5.0,fr,50247,81,2131764,1,1,Active Shallow Crust,0.0,89.98824,0.0,05/07/4085 +8.22555,49.27272,4661,11,16,14,48,47,4.25,15.0,fr,50248,93,2131765,1,1,Active Shallow Crust,0.0,89.98824,0.0,11/16/4661 +8.22555,49.27272,4078,10,26,19,1,52,4.35,27.5,fr,50249,81,2131778,1,1,Active Shallow Crust,0.0,89.98952,0.0,10/26/4078 +8.22555,49.27272,3849,5,12,18,20,39,4.45,27.5,fr,50250,76,2131790,1,1,Active Shallow Crust,0.0,89.99066,0.0,05/12/3849 +8.22555,49.27272,6636,1,19,5,58,49,4.45,15.0,fr,50251,132,2131792,1,1,Active Shallow Crust,240.0054,57.99523,0.0,01/19/6636 +8.22555,49.27272,1887,2,15,2,12,47,4.45,5.0,fr,50252,37,2131797,1,1,Active Shallow Crust,128.8914,89.99533,0.0,02/15/1887 +8.22555,49.27272,2750,9,27,9,47,11,4.55,5.0,fr,50253,54,2131800,1,1,Active Shallow Crust,0.0,89.99168,0.0,09/27/2750 +8.22555,49.27272,8930,2,3,11,40,29,4.55,15.0,fr,50254,178,2131801,1,1,Active Shallow Crust,0.0,89.99168,0.0,02/03/8930 +8.22555,49.27272,4057,10,20,8,13,30,4.55,27.5,fr,50255,81,2131805,1,1,Active Shallow Crust,240.0102,57.99722,0.0,10/20/4057 +8.22555,49.27272,6784,11,21,22,30,38,4.65,5.0,fr,50256,135,2131812,1,1,Active Shallow Crust,0.0,89.98887,0.0,11/21/6784 +8.22555,49.27272,8382,12,21,13,16,59,5.55,15.0,fr,50257,167,2131921,1,1,Active Shallow Crust,0.0,89.98947,0.0,12/21/8382 +0.30187,48.05653,5173,2,5,2,11,30,3.65,5.0,fr,50258,103,2132181,1,1,Active Shallow Crust,128.9003,89.96349,0.0,02/05/5173 +0.30187,48.05653,8751,9,15,3,44,25,3.75,5.0,fr,50259,175,2132184,1,1,Active Shallow Crust,0.0,89.98996,0.0,09/15/8751 +0.30187,48.05653,7243,3,22,1,51,48,3.95,27.5,fr,50260,144,2132213,1,1,Active Shallow Crust,240.02,58.00504,0.0,03/22/7243 +0.30187,48.05653,5928,2,17,0,15,41,4.15,5.0,fr,50261,118,2132232,1,2,Active Shallow Crust,0.0,89.99007,0.0,02/17/5928 +0.30187,48.05653,7445,7,16,17,22,4,4.15,5.0,fr,50262,148,2132232,1,2,Active Shallow Crust,0.0,89.99007,0.0,07/16/7445 +0.30187,48.05653,6003,12,16,1,15,31,4.15,27.5,fr,50263,120,2132243,1,1,Active Shallow Crust,128.8973,89.99377,0.0,12/16/6003 +0.30187,48.05653,7189,9,23,21,20,50,4.25,15.0,fr,50264,143,2132245,1,1,Active Shallow Crust,0.0,89.99003,0.0,09/23/7189 +0.30187,48.05653,5979,11,12,3,44,37,4.25,5.0,fr,50265,119,2132253,1,2,Active Shallow Crust,128.8941,89.98091,0.0,11/12/5979 +0.30187,48.05653,2758,6,4,3,37,48,4.25,5.0,fr,50266,55,2132253,1,2,Active Shallow Crust,128.8941,89.98091,0.0,06/04/2758 +0.30187,48.05653,4694,12,29,19,43,55,4.45,15.0,fr,50267,93,2132278,1,1,Active Shallow Crust,128.8918,89.99372,0.0,12/29/4694 +0.30187,48.05653,7457,7,5,4,10,24,4.55,5.0,fr,50268,149,2132280,1,1,Active Shallow Crust,0.0,89.99001,0.0,07/05/7457 +0.30187,48.05653,3737,3,24,8,11,13,4.75,5.0,fr,50269,74,2132310,1,1,Active Shallow Crust,0.0,89.99004,-90.0,03/24/3737 +0.30187,48.05653,532,11,29,22,25,2,5.95,15.0,fr,50270,10,2132449,1,1,Active Shallow Crust,360.0,89.99,0.0,11/29/0532 +5.77199,48.73042,5116,3,8,20,25,3,3.55,5.0,fr,50271,102,2132640,1,1,Active Shallow Crust,0.0,89.98669,0.0,03/08/5116 +5.77199,48.73042,9823,8,12,0,33,8,3.75,5.0,fr,50272,196,2132664,1,1,Active Shallow Crust,0.0,89.98943,0.0,08/12/9823 +5.77199,48.73042,4425,7,5,6,15,1,3.95,5.0,fr,50273,88,2132688,1,1,Active Shallow Crust,0.0,89.99161,0.0,07/05/4425 +3.60175,41.76267,24,5,11,13,14,0,3.55,5.0,fr,50274,0,2133120,1,1,Active Shallow Crust,0.0,89.98872,0.0,05/11/0024 +3.60175,41.76267,8509,6,29,6,5,41,3.55,15.0,fr,50275,170,2133121,1,1,Active Shallow Crust,0.0,89.98872,0.0,06/29/8509 +3.60175,41.76267,130,9,19,11,9,15,3.55,5.0,fr,50276,2,2133129,1,1,Active Shallow Crust,128.8965,89.99436,0.0,09/19/0130 +3.60175,41.76267,8839,3,10,18,47,45,3.65,15.0,fr,50277,176,2133133,1,1,Active Shallow Crust,0.0,89.98994,0.0,03/10/8839 +3.60175,41.76267,8751,12,24,4,45,1,3.65,27.5,fr,50278,175,2133134,1,1,Active Shallow Crust,0.0,89.98994,0.0,12/24/8751 +3.60175,41.76267,1119,3,18,7,18,32,4.15,5.0,fr,50279,22,2133192,1,1,Active Shallow Crust,0.0,89.99058,0.0,03/18/1119 +3.60175,41.76267,1548,11,12,22,5,50,4.75,5.0,fr,50280,30,2133264,1,1,Active Shallow Crust,0.0,89.98961,0.0,11/12/1548 +4.19886,42.52035,1986,6,9,12,33,54,3.55,5.0,fr,50281,39,2134080,1,2,Active Shallow Crust,0.0,89.99257,0.0,06/09/1986 +4.19886,42.52035,1441,11,22,4,10,42,3.55,5.0,fr,50282,28,2134080,1,2,Active Shallow Crust,0.0,89.99257,0.0,11/22/1441 +4.19886,42.52035,1396,8,10,14,2,41,3.55,5.0,fr,50283,27,2134083,1,1,Active Shallow Crust,240.0117,57.99846,0.0,08/10/1396 +4.19886,42.52035,2629,5,20,8,11,12,4.15,5.0,fr,50284,52,2134161,1,1,Active Shallow Crust,128.8988,89.99255,0.0,05/20/2629 +5.51946,44.16629,8037,1,20,9,32,57,3.65,5.0,fr,50285,160,2134572,1,1,Active Shallow Crust,0.0,89.98711,0.0,01/20/8037 +5.51946,44.16629,3722,3,19,13,30,20,3.85,27.5,fr,50286,74,2134604,1,1,Active Shallow Crust,0.0,89.98964,-90.0,03/19/3722 +5.51946,44.16629,5970,8,27,3,39,34,3.95,5.0,fr,50287,119,2134608,1,1,Active Shallow Crust,0.0,89.99088,0.0,08/27/5970 +5.51946,44.16629,4796,4,21,6,54,25,3.95,15.0,fr,50288,95,2134609,1,1,Active Shallow Crust,0.0,89.99088,0.0,04/21/4796 +5.51946,44.16629,8355,9,6,5,25,49,4.35,15.0,fr,50289,167,2134657,1,1,Active Shallow Crust,0.0,89.99136,0.0,09/06/8355 +5.51946,44.16629,8952,6,10,2,32,47,4.35,15.0,fr,50290,179,2134663,1,1,Active Shallow Crust,0.0,89.99126,-90.0,06/10/8952 +5.51946,44.16629,9250,10,19,1,41,59,4.45,27.5,fr,50291,184,2134670,1,1,Active Shallow Crust,0.0,89.98973,0.0,10/19/9250 +5.51946,44.16629,6312,4,9,20,8,9,4.45,5.0,fr,50292,126,2134671,1,1,Active Shallow Crust,240.0044,57.99467,0.0,04/09/6312 +5.51946,44.16629,2800,4,30,22,40,51,4.65,5.0,fr,50293,55,2134692,1,1,Active Shallow Crust,0.0,89.98981,0.0,04/30/2800 +5.51946,44.16629,2302,10,16,13,50,3,5.05,27.5,fr,50294,46,2134745,1,1,Active Shallow Crust,240.0211,57.99717,0.0,10/16/2302 +5.51946,44.16629,7074,5,8,12,55,1,5.55,15.0,fr,50295,141,2134804,1,1,Active Shallow Crust,240.027,58.00222,0.0,05/08/7074 +-0.11392,46.55504,1258,7,12,15,29,13,3.55,5.0,fr,50296,25,2135520,1,3,Active Shallow Crust,0.0,89.99003,0.0,07/12/1258 +-0.11392,46.55504,9453,12,22,12,6,41,3.55,5.0,fr,50297,189,2135520,1,3,Active Shallow Crust,0.0,89.99003,0.0,12/22/9453 +-0.11392,46.55504,8013,7,5,16,9,25,3.55,5.0,fr,50298,160,2135520,1,3,Active Shallow Crust,0.0,89.99003,0.0,07/05/8013 +-0.11392,46.55504,1569,10,11,11,39,18,3.65,5.0,fr,50299,31,2135532,1,1,Active Shallow Crust,0.0,89.98996,0.0,10/11/1569 +-0.11392,46.55504,4499,7,19,17,17,59,3.65,5.0,fr,50300,89,2135535,1,1,Active Shallow Crust,240.0011,58.01289,0.0,07/19/4499 +-0.11392,46.55504,910,5,3,16,41,58,3.65,5.0,fr,50301,18,2135538,1,1,Active Shallow Crust,0.0,89.99004,-90.0,05/03/0910 +-0.11392,46.55504,5391,12,24,3,16,39,3.85,5.0,fr,50302,107,2135556,1,2,Active Shallow Crust,0.0,89.99003,0.0,12/24/5391 +-0.11392,46.55504,8978,9,22,13,27,33,3.85,5.0,fr,50303,179,2135556,1,2,Active Shallow Crust,0.0,89.99003,0.0,09/22/8978 +-0.11392,46.55504,9564,2,26,15,6,51,3.85,15.0,fr,50304,191,2135557,1,1,Active Shallow Crust,0.0,89.99003,0.0,02/26/9564 +-0.11392,46.55504,1258,8,31,10,25,3,3.85,5.0,fr,50305,25,2135559,1,1,Active Shallow Crust,240.0108,57.99782,0.0,08/31/1258 +-0.11392,46.55504,1266,10,15,23,13,23,3.95,15.0,fr,50306,25,2135569,1,1,Active Shallow Crust,0.0,89.99002,0.0,10/15/1266 +-0.11392,46.55504,9693,8,30,3,2,36,3.95,5.0,fr,50307,193,2135571,1,1,Active Shallow Crust,240.0198,58.00499,0.0,08/30/9693 +-0.11392,46.55504,696,3,27,9,47,41,4.15,5.0,fr,50308,13,2135592,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/27/0696 +-0.11392,46.55504,5255,5,22,14,32,57,4.55,15.0,fr,50309,105,2135641,1,1,Active Shallow Crust,0.0,89.99,0.0,05/22/5255 +-0.11392,46.55504,3003,8,20,5,7,48,4.65,5.0,fr,50310,60,2135652,1,1,Active Shallow Crust,360.0,89.99001,0.0,08/20/3003 +8.28866,49.6559,3963,10,3,11,32,33,3.55,5.0,fr,50311,79,2136000,1,6,Active Shallow Crust,0.0,89.98695,0.0,10/03/3963 +8.28866,49.6559,4092,9,22,5,38,11,3.55,5.0,fr,50312,81,2136000,1,6,Active Shallow Crust,0.0,89.98695,0.0,09/22/4092 +8.28866,49.6559,3522,7,1,2,42,25,3.55,5.0,fr,50313,70,2136000,1,6,Active Shallow Crust,0.0,89.98695,0.0,07/01/3522 +8.28866,49.6559,7182,4,11,0,28,8,3.55,5.0,fr,50314,143,2136000,1,6,Active Shallow Crust,0.0,89.98695,0.0,04/11/7182 +8.28866,49.6559,2356,4,13,7,7,8,3.55,5.0,fr,50315,47,2136000,1,6,Active Shallow Crust,0.0,89.98695,0.0,04/13/2356 +8.28866,49.6559,6228,3,5,15,36,27,3.55,5.0,fr,50316,124,2136000,1,6,Active Shallow Crust,0.0,89.98695,0.0,03/05/6228 +8.28866,49.6559,9393,11,7,21,23,54,3.55,15.0,fr,50317,187,2136001,1,1,Active Shallow Crust,0.0,89.98695,0.0,11/07/9393 +8.28866,49.6559,5307,8,31,4,51,54,3.55,27.5,fr,50318,106,2136002,1,1,Active Shallow Crust,0.0,89.98695,0.0,08/31/5307 +8.28866,49.6559,738,6,1,6,51,46,3.55,5.0,fr,50319,14,2136009,1,1,Active Shallow Crust,128.8952,89.99347,0.0,06/01/0738 +8.28866,49.6559,3159,10,13,5,13,40,3.65,15.0,fr,50320,63,2136013,1,1,Active Shallow Crust,0.0,89.98837,0.0,10/13/3159 +8.28866,49.6559,183,6,10,23,12,6,3.65,5.0,fr,50321,3,2136021,1,2,Active Shallow Crust,128.8976,89.96358,0.0,06/10/0183 +8.28866,49.6559,4766,10,31,20,48,49,3.65,5.0,fr,50322,95,2136021,1,2,Active Shallow Crust,128.8976,89.96358,0.0,10/31/4766 +8.28866,49.6559,1789,10,28,10,5,42,3.75,5.0,fr,50323,35,2136024,1,3,Active Shallow Crust,0.0,89.98963,0.0,10/28/1789 +8.28866,49.6559,7738,9,20,9,44,58,3.75,5.0,fr,50324,154,2136024,1,3,Active Shallow Crust,0.0,89.98963,0.0,09/20/7738 +8.28866,49.6559,8002,11,18,8,6,54,3.75,5.0,fr,50325,160,2136024,1,3,Active Shallow Crust,0.0,89.98963,0.0,11/18/8002 +8.28866,49.6559,33,3,13,20,43,51,3.75,15.0,fr,50326,0,2136025,1,1,Active Shallow Crust,0.0,89.98963,0.0,03/13/0033 +8.28866,49.6559,2174,4,1,22,45,6,3.75,15.0,fr,50327,43,2136031,1,1,Active Shallow Crust,0.0,89.98951,-90.0,04/01/2174 +8.28866,49.6559,2201,3,17,1,20,21,3.75,5.0,fr,50328,44,2136033,1,1,Active Shallow Crust,128.8979,89.96632,0.0,03/17/2201 +8.28866,49.6559,6604,3,12,4,2,56,3.85,5.0,fr,50329,132,2136036,1,2,Active Shallow Crust,0.0,89.99075,0.0,03/12/6604 +8.28866,49.6559,6336,1,23,5,37,19,3.85,5.0,fr,50330,126,2136036,1,2,Active Shallow Crust,0.0,89.99075,0.0,01/23/6336 +8.28866,49.6559,822,10,6,19,55,3,3.85,15.0,fr,50331,16,2136037,1,1,Active Shallow Crust,0.0,89.99075,0.0,10/06/0822 +8.28866,49.6559,9801,6,7,12,21,37,4.15,5.0,fr,50332,196,2136072,1,1,Active Shallow Crust,0.0,89.98692,0.0,06/07/9801 +8.28866,49.6559,269,9,1,13,12,57,4.15,5.0,fr,50333,5,2136075,1,2,Active Shallow Crust,240.0089,57.99839,0.0,09/01/0269 +8.28866,49.6559,3831,5,31,2,51,9,4.15,5.0,fr,50334,76,2136075,1,2,Active Shallow Crust,240.0089,57.99839,0.0,05/31/3831 +8.28866,49.6559,8553,12,10,11,57,24,4.25,15.0,fr,50335,171,2136094,1,1,Active Shallow Crust,128.8925,89.98106,0.0,12/10/8553 +8.28866,49.6559,2798,12,28,8,35,52,4.45,27.5,fr,50336,55,2136110,1,1,Active Shallow Crust,0.0,89.99073,0.0,12/28/2798 +8.28866,49.6559,2516,12,3,11,30,5,4.55,27.5,fr,50337,50,2136122,1,1,Active Shallow Crust,0.0,89.99174,0.0,12/03/2516 +8.28866,49.6559,4107,10,7,21,28,33,4.75,5.0,fr,50338,82,2136144,1,1,Active Shallow Crust,0.0,89.99016,0.0,10/07/4107 +8.28866,49.6559,8516,2,10,8,13,13,4.85,15.0,fr,50339,170,2136160,1,1,Active Shallow Crust,240.0184,58.00291,0.0,02/10/8516 +8.28866,49.6559,7234,10,10,18,56,22,5.15,15.0,fr,50340,144,2136193,1,1,Active Shallow Crust,0.0,89.98965,0.0,10/10/7234 +8.28866,49.6559,2671,4,9,14,40,19,5.25,5.0,fr,50341,53,2136204,1,1,Active Shallow Crust,0.0,89.99078,0.0,04/09/2671 +6.30474,43.19999,3884,12,6,9,13,18,3.65,15.0,fr,50342,77,2136493,1,1,Active Shallow Crust,0.0,89.9869,0.0,12/06/3884 +6.30474,43.19999,2114,6,24,12,50,30,3.75,15.0,fr,50343,42,2136505,1,1,Active Shallow Crust,0.0,89.98832,0.0,06/24/2114 +-0.66916,44.33712,428,7,9,10,56,48,3.55,5.0,fr,50344,8,2136960,1,2,Active Shallow Crust,0.0,89.99008,0.0,07/09/0428 +-0.66916,44.33712,546,12,23,3,4,59,3.55,5.0,fr,50345,10,2136960,1,2,Active Shallow Crust,0.0,89.99008,0.0,12/23/0546 +-0.66916,44.33712,6577,7,9,5,1,16,3.65,15.0,fr,50346,131,2136973,1,1,Active Shallow Crust,0.0,89.99036,0.0,07/09/6577 +-0.66916,44.33712,6285,4,27,12,17,5,3.65,27.5,fr,50347,125,2136974,1,1,Active Shallow Crust,0.0,89.99036,0.0,04/27/6285 +-0.66916,44.33712,2404,10,10,18,16,43,4.05,27.5,fr,50348,48,2137022,1,1,Active Shallow Crust,0.0,89.98986,0.0,10/10/2404 +-0.19709,49.74924,3286,10,29,0,52,44,3.55,5.0,fr,50349,65,2137446,1,1,Active Shallow Crust,0.0,89.98991,-90.0,10/29/3286 +-0.19709,49.74924,3683,5,4,9,55,17,3.65,5.0,fr,50350,73,2137452,1,1,Active Shallow Crust,0.0,89.99002,0.0,05/04/3683 +-0.19709,49.74924,3933,4,25,2,56,12,3.65,5.0,fr,50351,78,2137458,1,1,Active Shallow Crust,0.0,89.99009,-90.0,04/25/3933 +-0.19709,49.74924,6447,12,16,12,39,8,3.75,5.0,fr,50352,128,2137464,1,2,Active Shallow Crust,0.0,89.98997,0.0,12/16/6447 +-0.19709,49.74924,9504,10,25,18,5,15,3.75,5.0,fr,50353,190,2137464,1,2,Active Shallow Crust,0.0,89.98997,0.0,10/25/9504 +-0.19709,49.74924,9648,6,2,12,27,56,3.75,15.0,fr,50354,192,2137465,1,1,Active Shallow Crust,0.0,89.98997,0.0,06/02/9648 +-0.19709,49.74924,8855,11,11,0,18,18,3.75,27.5,fr,50355,177,2137466,1,2,Active Shallow Crust,0.0,89.98997,0.0,11/11/8855 +-0.19709,49.74924,2603,7,9,4,27,24,3.75,27.5,fr,50356,52,2137466,1,2,Active Shallow Crust,0.0,89.98997,0.0,07/09/2603 +-0.19709,49.74924,8183,2,3,13,47,11,3.75,5.0,fr,50357,163,2137467,1,1,Active Shallow Crust,240.0088,58.01764,0.0,02/03/8183 +-0.19709,49.74924,6524,10,27,8,25,31,3.95,27.5,fr,50358,130,2137499,1,1,Active Shallow Crust,128.8999,89.99371,0.0,10/27/6524 +-0.19709,49.74924,1534,12,7,3,3,23,4.05,5.0,fr,50359,30,2137500,1,1,Active Shallow Crust,0.0,89.99004,0.0,12/07/1534 +-0.19709,49.74924,5895,3,13,1,46,59,4.05,27.5,fr,50360,117,2137502,1,1,Active Shallow Crust,0.0,89.99004,0.0,03/13/5895 +-0.19709,49.74924,1459,11,27,20,46,43,4.65,5.0,fr,50361,29,2137572,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/27/1459 +-0.19709,49.74924,4885,8,13,13,31,10,5.85,5.0,fr,50362,97,2137716,1,1,Active Shallow Crust,360.0,89.99001,0.0,08/13/4885 +-0.93491,49.57248,6322,7,28,2,15,25,3.55,15.0,fr,50363,126,2137921,1,2,Active Shallow Crust,0.0,89.99019,0.0,07/28/6322 +-0.93491,49.57248,5769,12,19,3,5,47,3.55,15.0,fr,50364,115,2137921,1,2,Active Shallow Crust,0.0,89.99019,0.0,12/19/5769 +-0.93491,49.57248,6519,1,28,12,49,15,3.65,5.0,fr,50365,130,2137932,1,2,Active Shallow Crust,0.0,89.9898,0.0,01/28/6519 +-0.93491,49.57248,9900,4,11,6,18,28,3.65,5.0,fr,50366,197,2137932,1,2,Active Shallow Crust,0.0,89.9898,0.0,04/11/9900 +-0.93491,49.57248,5034,5,29,14,15,23,3.65,5.0,fr,50367,100,2137935,1,1,Active Shallow Crust,240.0014,58.01297,0.0,05/29/5034 +-0.93491,49.57248,724,3,5,19,47,38,3.75,15.0,fr,50368,14,2137951,1,1,Active Shallow Crust,0.0,89.99015,-90.0,03/05/0724 +-0.93491,49.57248,1237,4,16,3,22,31,3.95,5.0,fr,50369,24,2137968,1,1,Active Shallow Crust,0.0,89.9902,0.0,04/16/1237 +-0.93491,49.57248,859,10,28,15,50,20,4.15,5.0,fr,50370,17,2137992,1,1,Active Shallow Crust,0.0,89.99017,0.0,10/28/0859 +-0.93491,49.57248,5780,10,2,11,39,15,4.15,5.0,fr,50371,115,2138001,1,1,Active Shallow Crust,128.897,89.99365,0.0,10/02/5780 +-0.93491,49.57248,5473,10,10,16,38,51,4.25,15.0,fr,50372,109,2138014,1,1,Active Shallow Crust,128.8937,89.98094,0.0,10/10/5473 +-0.93491,49.57248,2131,7,10,16,9,20,4.35,5.0,fr,50373,42,2138016,1,1,Active Shallow Crust,0.0,89.98991,0.0,07/10/2131 +-0.93491,49.57248,6028,8,19,5,20,10,4.65,5.0,fr,50374,120,2138055,1,1,Active Shallow Crust,240.0119,57.99442,0.0,08/19/6028 +-0.93491,49.57248,348,12,26,18,16,15,4.95,27.5,fr,50375,6,2138093,1,1,Active Shallow Crust,240.0134,58.00476,0.0,12/26/0348 +-0.93491,49.57248,7108,9,20,11,58,59,6.05,27.5,fr,50376,142,2138222,1,1,Active Shallow Crust,360.0,89.99001,0.0,09/20/7108 +7.97328,45.25204,5081,2,26,15,18,40,3.55,15.0,fr,50377,101,2138401,1,1,Active Shallow Crust,0.0,89.9929,0.0,02/26/5081 +7.97328,45.25204,6841,4,28,2,40,3,3.55,15.0,fr,50378,136,2138407,1,1,Active Shallow Crust,0.0,89.99282,-90.0,04/28/6841 +7.97328,45.25204,6883,1,28,11,26,40,3.65,5.0,fr,50379,137,2138412,1,2,Active Shallow Crust,0.0,89.98734,0.0,01/28/6883 +7.97328,45.25204,2052,3,6,21,18,8,3.65,5.0,fr,50380,41,2138412,1,2,Active Shallow Crust,0.0,89.98734,0.0,03/06/2052 +7.97328,45.25204,9428,8,27,19,13,41,3.65,15.0,fr,50381,188,2138413,1,1,Active Shallow Crust,0.0,89.98734,0.0,08/27/9428 +7.97328,45.25204,6917,7,22,1,54,5,3.75,15.0,fr,50382,138,2138425,1,1,Active Shallow Crust,0.0,89.98872,0.0,07/22/6917 +7.97328,45.25204,5032,8,16,0,3,4,3.95,5.0,fr,50383,100,2138448,1,1,Active Shallow Crust,0.0,89.99104,0.0,08/16/5032 +7.97328,45.25204,9538,11,13,18,27,45,3.95,5.0,fr,50384,190,2138454,1,1,Active Shallow Crust,0.0,89.99094,-90.0,11/13/9538 +7.97328,45.25204,8068,6,19,4,8,49,4.15,5.0,fr,50385,161,2138472,1,1,Active Shallow Crust,0.0,89.98933,0.0,06/19/8068 +7.97328,45.25204,3538,5,3,5,33,19,4.15,5.0,fr,50386,70,2138475,1,1,Active Shallow Crust,240.0081,57.9975,0.0,05/03/3538 +7.97328,45.25204,8776,12,9,14,23,50,4.15,15.0,fr,50387,175,2138482,1,1,Active Shallow Crust,128.8983,89.99288,0.0,12/09/8776 +7.97328,45.25204,5319,12,10,19,47,25,4.55,5.0,fr,50388,106,2138520,1,1,Active Shallow Crust,0.0,89.99102,0.0,12/10/5319 +7.97328,45.25204,6928,10,16,20,23,8,4.75,5.0,fr,50389,138,2138544,1,1,Active Shallow Crust,0.0,89.9893,0.0,10/16/6928 +2.5959,40.53085,2459,9,18,15,6,35,3.85,15.0,fr,50390,49,2138917,1,1,Active Shallow Crust,0.0,89.98915,0.0,09/18/2459 +-2.35081,46.90938,3450,5,4,1,54,21,3.55,5.0,fr,50391,68,2139360,1,1,Active Shallow Crust,0.0,89.98967,0.0,05/04/3450 +-2.35081,46.90938,616,9,21,21,24,37,3.55,15.0,fr,50392,12,2139361,1,1,Active Shallow Crust,0.0,89.98967,0.0,09/21/0616 +-2.35081,46.90938,309,4,24,8,50,49,3.55,27.5,fr,50393,6,2139362,1,1,Active Shallow Crust,0.0,89.98967,0.0,04/24/0309 +-2.35081,46.90938,3849,12,24,7,38,56,3.65,5.0,fr,50394,76,2139378,1,1,Active Shallow Crust,0.0,89.99068,-90.0,12/24/3849 +-2.35081,46.90938,7878,5,22,3,35,35,3.65,5.0,fr,50395,157,2139381,1,1,Active Shallow Crust,128.901,89.96353,0.0,05/22/7878 +-2.35081,46.90938,8160,1,16,4,51,47,3.75,5.0,fr,50396,163,2139384,1,1,Active Shallow Crust,0.0,89.98906,0.0,01/16/8160 +-2.35081,46.90938,2474,6,18,8,17,46,3.85,15.0,fr,50397,49,2139397,1,1,Active Shallow Crust,0.0,89.99025,0.0,06/18/2474 +-2.35081,46.90938,2792,3,26,20,59,34,3.95,5.0,fr,50398,55,2139408,1,1,Active Shallow Crust,0.0,89.98914,0.0,03/26/2792 +-2.35081,46.90938,8827,11,29,10,8,1,4.15,5.0,fr,50399,176,2139438,1,1,Active Shallow Crust,0.0,89.98952,-90.0,11/29/8827 +-2.35081,46.90938,7673,10,10,22,17,57,4.75,5.0,fr,50400,153,2139504,1,1,Active Shallow Crust,0.0,89.98962,0.0,10/10/7673 +-2.35081,46.90938,9473,2,1,22,44,12,4.95,5.0,fr,50401,189,2139528,1,1,Active Shallow Crust,0.0,89.98969,0.0,02/01/9473 +-2.35081,46.90938,9371,6,23,23,24,23,5.45,5.0,fr,50402,187,2139588,1,1,Active Shallow Crust,0.0,89.98994,0.0,06/23/9371 +-2.35081,46.90938,7898,1,10,6,58,3,5.85,5.0,fr,50403,157,2139636,1,1,Active Shallow Crust,0.0,89.99,0.0,01/10/7898 +4.22493,51.97515,9968,12,17,1,51,57,3.55,5.0,fr,50404,199,2139849,1,1,Active Shallow Crust,128.8966,89.99379,0.0,12/17/9968 +-3.31517,43.22027,5267,9,27,23,43,45,3.65,5.0,fr,50405,105,2140332,1,2,Active Shallow Crust,0.0,89.99017,0.0,09/27/5267 +-3.31517,43.22027,1283,5,19,22,14,43,3.65,5.0,fr,50406,25,2140332,1,2,Active Shallow Crust,0.0,89.99017,0.0,05/19/1283 +-3.31517,43.22027,2232,7,16,22,6,48,3.65,15.0,fr,50407,44,2140333,1,1,Active Shallow Crust,0.0,89.99017,0.0,07/16/2232 +-3.31517,43.22027,523,11,25,20,38,6,3.75,27.5,fr,50408,10,2140346,1,1,Active Shallow Crust,0.0,89.99124,0.0,11/25/0523 +-3.31517,43.22027,1191,10,6,1,7,41,3.85,27.5,fr,50409,23,2140358,1,1,Active Shallow Crust,0.0,89.98959,0.0,10/06/1191 +-3.31517,43.22027,2654,9,8,11,6,55,3.95,5.0,fr,50410,53,2140368,1,1,Active Shallow Crust,0.0,89.99073,0.0,09/08/2654 +-3.31517,43.22027,8416,9,30,16,15,0,3.95,15.0,fr,50411,168,2140369,1,1,Active Shallow Crust,0.0,89.99073,0.0,09/30/8416 +-3.31517,43.22027,220,7,16,5,22,35,4.25,5.0,fr,50412,4,2140404,1,1,Active Shallow Crust,0.0,89.99015,0.0,07/16/0220 +-3.31517,43.22027,2966,4,12,0,49,22,4.45,5.0,fr,50413,59,2140431,1,1,Active Shallow Crust,240.0046,57.9943,0.0,04/12/2966 +-3.31517,43.22027,1929,4,9,22,39,47,4.65,15.0,fr,50414,38,2140456,1,1,Active Shallow Crust,240.0098,57.99408,0.0,04/09/1929 +-3.31517,43.22027,9114,7,16,8,15,16,4.75,5.0,fr,50415,182,2140473,1,1,Active Shallow Crust,128.8896,89.98798,0.0,07/16/9114 +-3.31517,43.22027,5099,8,7,9,36,41,4.85,5.0,fr,50416,101,2140476,1,1,Active Shallow Crust,0.0,89.99013,0.0,08/07/5099 +-3.31517,43.22027,1000,7,8,21,34,52,4.95,5.0,fr,50417,19,2140488,1,1,Active Shallow Crust,0.0,89.98974,0.0,07/08/1000 +-3.31517,43.22027,1764,11,20,5,19,18,5.45,5.0,fr,50418,35,2140551,1,1,Active Shallow Crust,240.0263,57.998,0.0,11/20/1764 +-3.31517,43.22027,7422,10,5,0,47,41,5.95,5.0,fr,50419,148,2140608,1,1,Active Shallow Crust,0.0,89.99003,0.0,10/05/7422 +-0.24784,46.67959,9579,4,29,15,24,0,3.55,5.0,fr,50420,191,2140803,1,1,Active Shallow Crust,240.0121,57.99818,0.0,04/29/9579 +-0.24784,46.67959,7220,4,23,9,43,28,3.55,15.0,fr,50421,144,2140804,1,1,Active Shallow Crust,240.0121,57.99818,0.0,04/23/7220 +-0.24784,46.67959,9024,8,9,13,49,59,3.55,5.0,fr,50422,180,2140809,1,1,Active Shallow Crust,128.8962,89.99373,0.0,08/09/9024 +-0.24784,46.67959,8562,12,8,13,15,18,3.65,15.0,fr,50423,171,2140813,1,1,Active Shallow Crust,0.0,89.98998,0.0,12/08/8562 +-0.24784,46.67959,9035,9,23,23,23,31,3.75,5.0,fr,50424,180,2140824,1,2,Active Shallow Crust,0.0,89.99004,0.0,09/23/9035 +-0.24784,46.67959,2823,7,20,13,38,54,3.75,5.0,fr,50425,56,2140824,1,2,Active Shallow Crust,0.0,89.99004,0.0,07/20/2823 +-0.24784,46.67959,2064,12,16,12,34,6,3.75,15.0,fr,50426,41,2140825,1,1,Active Shallow Crust,0.0,89.99004,0.0,12/16/2064 +-0.24784,46.67959,7281,3,11,1,39,25,3.75,5.0,fr,50427,145,2140827,1,1,Active Shallow Crust,240.0083,58.01756,0.0,03/11/7281 +-0.24784,46.67959,4388,12,1,19,50,48,3.85,5.0,fr,50428,87,2140836,1,2,Active Shallow Crust,0.0,89.99005,0.0,12/01/4388 +-0.24784,46.67959,7569,10,17,22,3,46,3.85,5.0,fr,50429,151,2140836,1,2,Active Shallow Crust,0.0,89.99005,0.0,10/17/7569 +-0.24784,46.67959,6025,1,12,1,12,30,3.85,5.0,fr,50430,120,2140842,1,1,Active Shallow Crust,0.0,89.98994,-90.0,01/12/6025 +-0.24784,46.67959,3946,5,5,17,44,30,3.95,5.0,fr,50431,78,2140848,1,1,Active Shallow Crust,0.0,89.99004,0.0,05/05/3946 +-0.24784,46.67959,2457,6,14,4,15,57,3.95,5.0,fr,50432,49,2140854,1,1,Active Shallow Crust,0.0,89.99007,-90.0,06/14/2457 +-0.24784,46.67959,9815,11,7,3,12,20,3.95,5.0,fr,50433,196,2140857,1,1,Active Shallow Crust,128.9003,89.99373,0.0,11/07/9815 +-0.24784,46.67959,2503,9,27,6,2,58,4.05,5.0,fr,50434,50,2140860,1,2,Active Shallow Crust,0.0,89.99003,0.0,09/27/2503 +-0.24784,46.67959,9959,5,28,3,8,41,4.05,5.0,fr,50435,199,2140860,1,2,Active Shallow Crust,0.0,89.99003,0.0,05/28/9959 +-0.24784,46.67959,3118,1,24,12,42,26,4.05,15.0,fr,50436,62,2140861,1,1,Active Shallow Crust,0.0,89.99003,0.0,01/24/3118 +-0.24784,46.67959,8542,11,7,10,22,24,4.05,27.5,fr,50437,170,2140862,1,1,Active Shallow Crust,0.0,89.99003,0.0,11/07/8542 +-0.24784,46.67959,2131,11,4,1,23,51,4.05,27.5,fr,50438,42,2140865,1,1,Active Shallow Crust,240.006,58.00582,0.0,11/04/2131 +-0.24784,46.67959,1766,4,15,8,58,49,4.15,5.0,fr,50439,35,2140872,1,1,Active Shallow Crust,0.0,89.99003,0.0,04/15/1766 +-0.24784,46.67959,7353,2,27,12,54,54,4.25,5.0,fr,50440,147,2140893,1,1,Active Shallow Crust,128.8943,89.98092,0.0,02/27/7353 +-0.24784,46.67959,7604,4,30,23,21,23,4.35,5.0,fr,50441,152,2140896,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/30/7604 +-0.24784,46.67959,1981,7,7,9,27,42,4.35,5.0,fr,50442,39,2140905,1,1,Active Shallow Crust,128.8978,89.98276,0.0,07/07/1981 +-0.24784,46.67959,9689,9,22,20,35,16,4.65,15.0,fr,50443,193,2140933,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/22/9689 +-0.24784,46.67959,6742,12,24,15,15,41,4.95,5.0,fr,50444,134,2140968,1,1,Active Shallow Crust,0.0,89.98999,0.0,12/24/6742 +-0.24784,46.67959,319,3,9,17,44,38,5.15,15.0,fr,50445,6,2140996,1,1,Active Shallow Crust,240.0198,57.99999,0.0,03/09/0319 +-0.24784,46.67959,7258,3,1,4,26,40,5.35,5.0,fr,50446,145,2141016,1,1,Active Shallow Crust,360.0,89.99001,0.0,03/01/7258 +4.25337,49.5263,7071,11,2,17,42,0,3.55,5.0,fr,50447,141,2141289,1,1,Active Shallow Crust,128.8968,89.99345,0.0,11/02/7071 +4.25337,49.5263,1213,4,8,13,41,57,3.85,5.0,fr,50448,24,2141316,1,1,Active Shallow Crust,0.0,89.99073,0.0,04/08/1213 +4.25337,49.5263,4563,7,31,8,51,22,3.95,15.0,fr,50449,91,2141329,1,1,Active Shallow Crust,0.0,89.99174,0.0,07/31/4563 +4.25337,49.5263,2943,6,7,1,14,55,4.05,5.0,fr,50450,58,2141340,1,1,Active Shallow Crust,0.0,89.98896,0.0,06/07/2943 +5.58668,47.818,4292,5,23,10,25,7,3.55,5.0,fr,50451,85,2142240,1,1,Active Shallow Crust,0.0,89.99323,0.0,05/23/4292 +5.58668,47.818,316,4,3,22,42,27,3.65,5.0,fr,50452,6,2142252,1,1,Active Shallow Crust,0.0,89.98793,0.0,04/03/0316 +5.58668,47.818,6963,12,7,17,55,57,3.95,5.0,fr,50453,139,2142294,1,1,Active Shallow Crust,0.0,89.99136,-90.0,12/07/6963 +5.58668,47.818,7416,8,20,7,37,30,4.05,5.0,fr,50454,148,2142300,1,1,Active Shallow Crust,0.0,89.98858,0.0,08/20/7416 +5.58668,47.818,7311,12,26,6,0,0,4.45,5.0,fr,50455,146,2142348,1,1,Active Shallow Crust,0.0,89.99039,0.0,12/26/7311 +5.58668,47.818,5672,4,16,0,13,19,4.65,27.5,fr,50456,113,2142380,1,1,Active Shallow Crust,0.0,89.99035,-90.0,04/16/5672 +1.91605,51.78864,324,3,26,22,37,50,3.85,5.0,fr,50457,6,2142756,1,1,Active Shallow Crust,0.0,89.99007,0.0,03/26/0324 +1.91605,51.78864,2285,7,2,5,21,26,3.95,27.5,fr,50458,45,2142773,1,1,Active Shallow Crust,240.0205,58.0052,0.0,07/02/2285 +1.91605,51.78864,3168,2,1,3,13,55,4.05,27.5,fr,50459,63,2142782,1,1,Active Shallow Crust,0.0,89.99036,0.0,02/01/3168 +1.91605,51.78864,994,4,8,16,21,29,4.15,5.0,fr,50460,19,2142795,1,1,Active Shallow Crust,240.0096,57.99753,0.0,04/08/0994 +8.62208,48.04646,2846,8,5,11,54,0,3.55,5.0,fr,50461,56,2143200,1,1,Active Shallow Crust,0.0,89.98652,0.0,08/05/2846 +8.62208,48.04646,1826,4,10,16,37,35,3.55,5.0,fr,50462,36,2143209,1,1,Active Shallow Crust,128.8949,89.99326,0.0,04/10/1826 +8.62208,48.04646,6217,10,4,8,17,17,3.75,5.0,fr,50463,124,2143224,1,1,Active Shallow Crust,0.0,89.98929,0.0,10/04/6217 +8.62208,48.04646,2325,12,30,4,11,1,3.85,5.0,fr,50464,46,2143242,1,1,Active Shallow Crust,0.0,89.99034,-90.0,12/30/2325 +8.62208,48.04646,2284,7,9,1,53,31,3.95,5.0,fr,50465,45,2143248,1,2,Active Shallow Crust,0.0,89.99149,0.0,07/09/2284 +8.62208,48.04646,5583,2,14,9,58,37,3.95,5.0,fr,50466,111,2143248,1,2,Active Shallow Crust,0.0,89.99149,0.0,02/14/5583 +8.62208,48.04646,4066,11,29,4,25,33,3.95,5.0,fr,50467,81,2143257,1,1,Active Shallow Crust,128.9018,89.99149,0.0,11/29/4066 +8.62208,48.04646,5742,5,21,18,38,31,4.05,5.0,fr,50468,114,2143269,1,1,Active Shallow Crust,128.8898,89.99242,0.0,05/21/5742 +8.62208,48.04646,9336,12,10,8,59,11,4.55,5.0,fr,50469,186,2143320,1,1,Active Shallow Crust,0.0,89.99147,0.0,12/10/9336 +8.62208,48.04646,3147,4,18,10,10,34,5.55,5.0,fr,50470,62,2143443,1,1,Active Shallow Crust,240.034,57.99993,0.0,04/18/3147 +2.953,43.66821,8205,9,25,21,42,56,3.55,5.0,fr,50471,164,2143686,1,1,Active Shallow Crust,0.0,89.98893,-90.0,09/25/8205 +2.953,43.66821,4788,7,26,19,33,5,3.65,27.5,fr,50472,95,2143694,1,1,Active Shallow Crust,0.0,89.99025,0.0,07/26/4788 +2.953,43.66821,369,9,23,19,6,33,3.75,5.0,fr,50473,7,2143704,1,1,Active Shallow Crust,0.0,89.99131,0.0,09/23/0369 +2.953,43.66821,6370,11,9,16,33,29,4.15,5.0,fr,50474,127,2143755,1,1,Active Shallow Crust,240.0079,57.99718,0.0,11/09/6370 +2.953,43.66821,7050,10,5,14,23,1,5.65,5.0,fr,50475,140,2143932,1,1,Active Shallow Crust,0.0,89.98992,0.0,10/05/7050 +1.39626,42.08694,7135,7,23,3,47,17,3.55,5.0,fr,50476,142,2145120,1,1,Active Shallow Crust,0.0,89.99065,0.0,07/23/7135 +1.39626,42.08694,7051,2,8,1,27,29,3.55,5.0,fr,50477,141,2145126,1,1,Active Shallow Crust,0.0,89.99054,-90.0,02/08/7051 +1.39626,42.08694,8339,12,12,17,32,34,3.55,27.5,fr,50478,166,2145131,1,1,Active Shallow Crust,128.8969,89.99345,0.0,12/12/8339 +1.39626,42.08694,2088,2,20,17,33,43,3.65,5.0,fr,50479,41,2145132,1,1,Active Shallow Crust,0.0,89.99,0.0,02/20/2088 +1.39626,42.08694,8199,2,24,10,35,10,3.75,5.0,fr,50480,163,2145147,1,1,Active Shallow Crust,240.0081,58.01738,0.0,02/24/8199 +1.39626,42.08694,4658,5,23,13,10,26,3.75,15.0,fr,50481,93,2145151,1,1,Active Shallow Crust,0.0,89.98948,-90.0,05/23/4658 +1.39626,42.08694,4995,1,19,12,35,29,3.85,15.0,fr,50482,99,2145157,1,1,Active Shallow Crust,0.0,89.9894,0.0,01/19/4995 +1.39626,42.08694,6123,7,14,1,1,53,4.05,15.0,fr,50483,122,2145190,1,1,Active Shallow Crust,128.891,89.99369,0.0,07/14/6123 +1.39626,42.08694,1281,2,11,16,44,12,4.75,5.0,fr,50484,25,2145264,1,1,Active Shallow Crust,0.0,89.99013,0.0,02/11/1281 +1.39626,42.08694,6964,4,11,18,1,29,4.75,5.0,fr,50485,139,2145273,1,1,Active Shallow Crust,128.8899,89.98817,0.0,04/11/6964 +1.31915,43.01877,8612,9,24,15,19,17,3.55,5.0,fr,50486,172,2145600,1,4,Active Shallow Crust,0.0,89.99078,0.0,09/24/8612 +1.31915,43.01877,823,8,4,14,45,41,3.55,5.0,fr,50487,16,2145600,1,4,Active Shallow Crust,0.0,89.99078,0.0,08/04/0823 +1.31915,43.01877,8497,10,18,18,37,3,3.55,5.0,fr,50488,169,2145600,1,4,Active Shallow Crust,0.0,89.99078,0.0,10/18/8497 +1.31915,43.01877,4181,2,9,10,54,19,3.55,5.0,fr,50489,83,2145600,1,4,Active Shallow Crust,0.0,89.99078,0.0,02/09/4181 +1.31915,43.01877,9948,4,8,1,36,33,3.55,15.0,fr,50490,198,2145601,1,2,Active Shallow Crust,0.0,89.99078,0.0,04/08/9948 +1.31915,43.01877,9956,4,4,4,7,17,3.55,15.0,fr,50491,199,2145601,1,2,Active Shallow Crust,0.0,89.99078,0.0,04/04/9956 +1.31915,43.01877,8809,2,19,15,33,15,3.65,5.0,fr,50492,176,2145612,1,1,Active Shallow Crust,0.0,89.99014,0.0,02/19/8809 +1.31915,43.01877,7418,2,19,3,32,46,3.65,5.0,fr,50493,148,2145618,1,1,Active Shallow Crust,0.0,89.99003,-90.0,02/19/7418 +1.31915,43.01877,3280,5,22,18,6,14,3.75,5.0,fr,50494,65,2145624,1,2,Active Shallow Crust,0.0,89.98975,0.0,05/22/3280 +1.31915,43.01877,6602,11,2,20,4,47,3.75,5.0,fr,50495,132,2145624,1,2,Active Shallow Crust,0.0,89.98975,0.0,11/02/6602 +1.31915,43.01877,7591,4,11,2,31,58,3.95,5.0,fr,50496,151,2145648,1,1,Active Shallow Crust,0.0,89.98953,0.0,04/11/7591 +1.31915,43.01877,866,8,3,7,3,3,4.05,5.0,fr,50497,17,2145660,1,1,Active Shallow Crust,0.0,89.98963,0.0,08/03/0866 +1.31915,43.01877,3689,4,1,1,4,23,4.05,15.0,fr,50498,73,2145661,1,1,Active Shallow Crust,0.0,89.98963,0.0,04/01/3689 +1.31915,43.01877,3427,8,10,13,19,31,4.15,5.0,fr,50499,68,2145672,1,1,Active Shallow Crust,0.0,89.98984,0.0,08/10/3427 +6.70077,44.18126,9125,5,21,10,0,30,3.55,5.0,fr,50500,182,2146080,1,3,Active Shallow Crust,0.0,89.99277,0.0,05/21/9125 +6.70077,44.18126,300,1,13,4,7,45,3.55,5.0,fr,50501,5,2146080,1,3,Active Shallow Crust,0.0,89.99277,0.0,01/13/0300 +6.70077,44.18126,4632,9,3,11,43,44,3.55,5.0,fr,50502,92,2146080,1,3,Active Shallow Crust,0.0,89.99277,0.0,09/03/4632 +6.70077,44.18126,5922,8,27,17,4,5,3.55,5.0,fr,50503,118,2146086,1,1,Active Shallow Crust,0.0,89.99268,-90.0,08/27/5922 +6.70077,44.18126,4642,1,7,8,7,39,3.75,5.0,fr,50504,92,2146107,1,1,Active Shallow Crust,240.0083,58.01707,0.0,01/07/4642 +6.70077,44.18126,3372,12,25,16,43,41,3.85,15.0,fr,50505,67,2146120,1,1,Active Shallow Crust,240.0107,57.99832,0.0,12/25/3372 +6.70077,44.18126,6105,3,5,20,10,14,4.05,5.0,fr,50506,122,2146140,1,1,Active Shallow Crust,0.0,89.99187,0.0,03/05/6105 +6.70077,44.18126,2901,3,2,15,31,32,4.15,15.0,fr,50507,58,2146162,1,1,Active Shallow Crust,128.8989,89.99275,0.0,03/02/2901 +6.70077,44.18126,3267,5,18,19,55,57,4.25,15.0,fr,50508,65,2146171,1,1,Active Shallow Crust,0.0,89.9902,-90.0,05/18/3267 +6.70077,44.18126,5136,7,28,18,19,18,4.55,15.0,fr,50509,102,2146201,1,1,Active Shallow Crust,0.0,89.99085,0.0,07/28/5136 +6.70077,44.18126,7739,1,14,16,56,57,4.65,5.0,fr,50510,154,2146212,1,1,Active Shallow Crust,0.0,89.98981,0.0,01/14/7739 +6.70077,44.18126,2058,1,20,12,38,27,5.05,5.0,fr,50511,41,2146260,1,1,Active Shallow Crust,0.0,89.98971,0.0,01/20/2058 +6.70077,44.18126,3925,10,26,14,35,22,5.85,5.0,fr,50512,78,2146356,1,1,Active Shallow Crust,0.0,89.98975,0.0,10/26/3925 +-2.30942,42.08974,4655,6,28,6,58,44,3.55,5.0,fr,50513,93,2146560,1,4,Active Shallow Crust,0.0,89.98878,0.0,06/28/4655 +-2.30942,42.08974,9340,5,30,9,37,39,3.55,5.0,fr,50514,186,2146560,1,4,Active Shallow Crust,0.0,89.98878,0.0,05/30/9340 +-2.30942,42.08974,3506,12,30,15,26,36,3.55,5.0,fr,50515,70,2146560,1,4,Active Shallow Crust,0.0,89.98878,0.0,12/30/3506 +-2.30942,42.08974,6564,12,25,21,37,28,3.55,5.0,fr,50516,131,2146560,1,4,Active Shallow Crust,0.0,89.98878,0.0,12/25/6564 +-2.30942,42.08974,7556,3,27,0,36,16,3.65,5.0,fr,50517,151,2146572,1,1,Active Shallow Crust,0.0,89.99,0.0,03/27/7556 +-2.30942,42.08974,3184,3,2,15,22,17,3.75,5.0,fr,50518,63,2146584,1,1,Active Shallow Crust,0.0,89.99108,0.0,03/02/3184 +-2.30942,42.08974,598,4,5,3,27,45,3.75,5.0,fr,50519,11,2146590,1,1,Active Shallow Crust,0.0,89.99098,-90.0,04/05/0598 +-2.30942,42.08974,1667,11,13,9,43,6,4.15,15.0,fr,50520,33,2146633,1,1,Active Shallow Crust,0.0,89.99062,0.0,11/13/1667 +-2.30942,42.08974,9086,10,7,0,8,8,4.55,5.0,fr,50521,181,2146680,1,1,Active Shallow Crust,0.0,89.99053,0.0,10/07/9086 +-2.30942,42.08974,5243,2,10,18,3,17,5.35,5.0,fr,50522,104,2146779,1,1,Active Shallow Crust,240.0221,58.001,0.0,02/10/5243 +3.38777,46.48022,5083,9,28,11,49,28,3.55,5.0,fr,50523,101,2147040,1,2,Active Shallow Crust,0.0,89.98959,0.0,09/28/5083 +3.38777,46.48022,3751,12,20,0,18,25,3.55,5.0,fr,50524,75,2147040,1,2,Active Shallow Crust,0.0,89.98959,0.0,12/20/3751 +3.38777,46.48022,374,4,7,17,56,48,3.55,15.0,fr,50525,7,2147044,1,1,Active Shallow Crust,240.0118,57.99821,0.0,04/07/0374 +3.38777,46.48022,4229,10,23,16,5,35,3.65,5.0,fr,50526,84,2147052,1,1,Active Shallow Crust,0.0,89.99072,0.0,10/23/4229 +3.38777,46.48022,4834,3,18,4,23,3,3.75,5.0,fr,50527,96,2147064,1,1,Active Shallow Crust,0.0,89.98897,0.0,03/18/4834 +3.38777,46.48022,8759,10,18,21,24,29,3.75,5.0,fr,50528,175,2147070,1,1,Active Shallow Crust,0.0,89.98884,-90.0,10/18/8759 +3.38777,46.48022,8487,11,2,17,5,54,4.15,5.0,fr,50529,169,2147112,1,1,Active Shallow Crust,0.0,89.98956,0.0,11/02/8487 +-5.32471,47.56292,3488,7,25,2,12,14,3.75,5.0,fr,50530,69,2147544,1,2,Active Shallow Crust,0.0,89.98919,0.0,07/25/3488 +-5.32471,47.56292,6718,9,16,17,43,7,3.75,5.0,fr,50531,134,2147544,1,2,Active Shallow Crust,0.0,89.98919,0.0,09/16/6718 +-5.32471,47.56292,6912,12,13,22,59,46,4.25,5.0,fr,50532,138,2147613,1,1,Active Shallow Crust,128.8947,89.98099,0.0,12/13/6912 +3.67309,49.56588,5566,2,17,15,51,7,3.55,5.0,fr,50533,111,2148480,1,1,Active Shallow Crust,0.0,89.99019,0.0,02/17/5566 +3.67309,49.56588,5626,6,6,11,37,43,3.55,5.0,fr,50534,112,2148489,1,1,Active Shallow Crust,128.8959,89.99346,0.0,06/06/5626 +3.67309,49.56588,3032,5,23,10,36,22,3.85,15.0,fr,50535,60,2148517,1,1,Active Shallow Crust,0.0,89.99074,0.0,05/23/3032 +3.67309,49.56588,7465,1,31,16,23,8,4.25,5.0,fr,50536,149,2148564,1,1,Active Shallow Crust,0.0,89.98978,0.0,01/31/7465 +8.232,48.38792,6043,11,9,6,22,59,3.55,5.0,fr,50537,120,2148960,1,1,Active Shallow Crust,0.0,89.98661,0.0,11/09/6043 +8.232,48.38792,2883,7,3,4,59,45,3.55,15.0,fr,50538,57,2148964,1,1,Active Shallow Crust,240.0125,57.99815,0.0,07/03/2883 +8.232,48.38792,7606,1,25,8,51,30,3.65,5.0,fr,50539,152,2148972,1,1,Active Shallow Crust,0.0,89.98806,0.0,01/25/7606 +8.232,48.38792,6974,10,7,22,42,31,3.65,5.0,fr,50540,139,2148975,1,1,Active Shallow Crust,240.001,58.01188,0.0,10/07/6974 +8.232,48.38792,352,9,30,15,59,40,3.75,5.0,fr,50541,7,2148984,1,3,Active Shallow Crust,0.0,89.98936,0.0,09/30/0352 +8.232,48.38792,2946,4,5,0,32,54,3.75,5.0,fr,50542,58,2148984,1,3,Active Shallow Crust,0.0,89.98936,0.0,04/05/2946 +8.232,48.38792,4143,8,28,17,35,35,3.75,5.0,fr,50543,82,2148984,1,3,Active Shallow Crust,0.0,89.98936,0.0,08/28/4143 +8.232,48.38792,4121,1,21,5,57,22,3.85,27.5,fr,50544,82,2149001,1,1,Active Shallow Crust,240.0116,57.99811,0.0,01/21/4121 +8.232,48.38792,4582,5,7,15,25,20,3.85,15.0,fr,50545,91,2149006,1,1,Active Shallow Crust,128.8956,89.99526,0.0,05/07/4582 +8.232,48.38792,6240,3,10,1,57,2,3.95,5.0,fr,50546,124,2149008,1,2,Active Shallow Crust,0.0,89.99155,0.0,03/10/6240 +8.232,48.38792,749,4,22,13,26,57,3.95,5.0,fr,50547,14,2149008,1,2,Active Shallow Crust,0.0,89.99155,0.0,04/22/0749 +8.232,48.38792,2437,12,24,3,33,56,3.95,5.0,fr,50548,48,2149017,1,1,Active Shallow Crust,128.9022,89.99155,0.0,12/24/2437 +8.232,48.38792,2425,4,10,14,57,3,3.95,15.0,fr,50549,48,2149018,1,1,Active Shallow Crust,128.9022,89.99155,0.0,04/10/2425 +8.232,48.38792,5468,8,10,16,36,57,4.05,5.0,fr,50550,109,2149020,1,2,Active Shallow Crust,0.0,89.99247,0.0,08/10/5468 +8.232,48.38792,1359,10,25,23,23,21,4.05,5.0,fr,50551,27,2149020,1,2,Active Shallow Crust,0.0,89.99247,0.0,10/25/1359 +8.232,48.38792,1943,10,6,8,25,18,4.15,5.0,fr,50552,38,2149032,1,1,Active Shallow Crust,0.0,89.99329,0.0,10/06/1943 +8.232,48.38792,5728,3,19,13,5,36,4.15,5.0,fr,50553,114,2149038,1,1,Active Shallow Crust,0.0,89.99321,-90.0,03/19/5728 +8.232,48.38792,9964,1,28,12,57,26,4.25,5.0,fr,50554,199,2149047,1,1,Active Shallow Crust,240.0072,57.99391,0.0,01/28/9964 +8.232,48.38792,497,5,25,23,27,36,4.35,15.0,fr,50555,9,2149057,1,1,Active Shallow Crust,0.0,89.98933,0.0,05/25/0497 +8.232,48.38792,3587,2,18,10,54,46,5.45,5.0,fr,50556,71,2149188,1,1,Active Shallow Crust,0.0,89.98948,0.0,02/18/3587 +0.79335,51.75223,9956,11,21,3,5,55,3.55,15.0,fr,50557,199,2150410,1,1,Active Shallow Crust,128.8957,89.99376,0.0,11/21/9956 +0.79335,51.75223,7786,6,15,2,55,44,3.75,5.0,fr,50558,155,2150427,1,1,Active Shallow Crust,240.0091,58.01772,0.0,06/15/7786 +0.79335,51.75223,361,4,26,5,39,57,3.85,5.0,fr,50559,7,2150436,1,1,Active Shallow Crust,0.0,89.99006,0.0,04/26/0361 +0.79335,51.75223,7965,9,13,18,0,52,3.95,5.0,fr,50560,159,2150448,1,1,Active Shallow Crust,0.0,89.99015,0.0,09/13/7965 +0.79335,51.75223,6499,7,20,16,40,15,4.05,27.5,fr,50561,129,2150462,1,1,Active Shallow Crust,0.0,89.98991,0.0,07/20/6499 +0.79335,51.75223,7557,2,2,15,25,28,4.05,5.0,fr,50562,151,2150463,1,1,Active Shallow Crust,240.0069,58.00604,0.0,02/02/7557 +0.79335,51.75223,2109,7,30,4,51,13,4.45,15.0,fr,50563,42,2150509,1,1,Active Shallow Crust,0.0,89.99003,0.0,07/30/2109 +0.79335,51.75223,468,10,22,9,45,3,4.55,5.0,fr,50564,9,2150520,1,1,Active Shallow Crust,0.0,89.98988,0.0,10/22/0468 +-3.94961,48.25525,9064,8,28,3,54,37,3.55,5.0,fr,50565,181,2150880,1,2,Active Shallow Crust,0.0,89.98993,0.0,08/28/9064 +-3.94961,48.25525,8156,3,10,20,33,34,3.55,5.0,fr,50566,163,2150880,1,2,Active Shallow Crust,0.0,89.98993,0.0,03/10/8156 +-3.94961,48.25525,6827,3,23,15,24,49,3.55,27.5,fr,50567,136,2150882,1,1,Active Shallow Crust,0.0,89.98993,0.0,03/23/6827 +-3.94961,48.25525,476,11,2,10,41,0,3.55,27.5,fr,50568,9,2150885,1,1,Active Shallow Crust,240.0125,57.99837,0.0,11/02/0476 +-3.94961,48.25525,5003,2,3,1,57,15,3.65,5.0,fr,50569,100,2150892,1,2,Active Shallow Crust,0.0,89.99103,0.0,02/03/5003 +-3.94961,48.25525,2682,12,30,16,32,53,3.65,5.0,fr,50570,53,2150892,1,2,Active Shallow Crust,0.0,89.99103,0.0,12/30/2682 +-3.94961,48.25525,1365,1,5,14,33,5,3.75,5.0,fr,50571,27,2150904,1,3,Active Shallow Crust,0.0,89.98933,0.0,01/05/1365 +-3.94961,48.25525,6049,3,25,8,28,16,3.75,5.0,fr,50572,120,2150904,1,3,Active Shallow Crust,0.0,89.98933,0.0,03/25/6049 +-3.94961,48.25525,116,10,15,1,52,11,3.75,5.0,fr,50573,2,2150904,1,3,Active Shallow Crust,0.0,89.98933,0.0,10/15/0116 +-3.94961,48.25525,7851,12,7,6,51,54,3.75,27.5,fr,50574,157,2150906,1,1,Active Shallow Crust,0.0,89.98933,0.0,12/07/7851 +-3.94961,48.25525,262,11,15,12,56,20,3.85,15.0,fr,50575,5,2150920,1,1,Active Shallow Crust,240.0109,57.99797,0.0,11/15/0262 +-3.94961,48.25525,6173,7,28,5,20,50,3.85,5.0,fr,50576,123,2150925,1,1,Active Shallow Crust,128.8958,89.99287,0.0,07/28/6173 +-3.94961,48.25525,398,11,12,20,59,22,3.95,5.0,fr,50577,7,2150931,1,1,Active Shallow Crust,240.0198,58.005,0.0,11/12/0398 +-3.94961,48.25525,2017,9,3,1,7,35,3.95,15.0,fr,50578,40,2150935,1,1,Active Shallow Crust,0.0,89.98929,-90.0,09/03/2017 +-3.94961,48.25525,464,9,10,7,49,32,4.05,5.0,fr,50579,9,2150940,1,1,Active Shallow Crust,0.0,89.99056,0.0,09/10/0464 +-3.94961,48.25525,5195,6,4,21,59,41,4.35,27.5,fr,50580,103,2150978,1,1,Active Shallow Crust,0.0,89.99065,0.0,06/04/5195 +-3.94961,48.25525,3030,6,7,7,12,20,4.75,5.0,fr,50581,60,2151024,1,1,Active Shallow Crust,0.0,89.98988,0.0,06/07/3030 +-3.94961,48.25525,3160,11,11,19,40,46,4.95,5.0,fr,50582,63,2151048,1,2,Active Shallow Crust,0.0,89.98995,0.0,11/11/3160 +-3.94961,48.25525,4973,5,17,5,46,2,4.95,5.0,fr,50583,99,2151048,1,2,Active Shallow Crust,0.0,89.98995,0.0,05/17/4973 +4.56528,49.69523,1480,2,20,8,38,8,3.55,5.0,fr,50584,29,2151360,1,1,Active Shallow Crust,0.0,89.98695,0.0,02/20/1480 +4.56528,49.69523,4089,7,15,18,30,3,3.75,5.0,fr,50585,81,2151384,1,1,Active Shallow Crust,0.0,89.98964,0.0,07/15/4089 +-3.72796,43.58771,607,1,17,10,1,52,3.65,5.0,fr,50586,12,2151852,1,2,Active Shallow Crust,0.0,89.99023,0.0,01/17/0607 +-3.72796,43.58771,6653,6,14,21,52,16,3.65,5.0,fr,50587,133,2151852,1,2,Active Shallow Crust,0.0,89.99023,0.0,06/14/6653 +-3.72796,43.58771,2792,4,21,16,15,49,3.75,5.0,fr,50588,55,2151864,1,2,Active Shallow Crust,0.0,89.99129,0.0,04/21/2792 +-3.72796,43.58771,4854,3,28,3,26,54,3.75,5.0,fr,50589,97,2151864,1,2,Active Shallow Crust,0.0,89.99129,0.0,03/28/4854 +-3.72796,43.58771,4226,11,12,20,51,20,3.75,15.0,fr,50590,84,2151874,1,1,Active Shallow Crust,128.8969,89.96715,0.0,11/12/4226 +-3.72796,43.58771,1706,1,18,1,16,3,4.45,5.0,fr,50591,34,2151948,1,1,Active Shallow Crust,0.0,89.98963,0.0,01/18/1706 +3.18632,53.33485,5229,6,25,6,43,59,3.55,5.0,fr,50592,104,2152320,1,1,Active Shallow Crust,0.0,89.99097,0.0,06/25/5229 +3.18632,53.33485,6155,7,13,19,57,23,3.65,5.0,fr,50593,123,2152332,1,1,Active Shallow Crust,0.0,89.98927,0.0,07/13/6155 +5.14504,46.47419,4736,11,19,9,11,33,3.55,5.0,fr,50594,94,2152800,1,1,Active Shallow Crust,0.0,89.99306,0.0,11/19/4736 +5.14504,46.47419,5570,1,5,3,54,17,3.55,15.0,fr,50595,111,2152801,1,1,Active Shallow Crust,0.0,89.99306,0.0,01/05/5570 +5.14504,46.47419,4628,11,12,20,23,48,3.55,5.0,fr,50596,92,2152803,1,1,Active Shallow Crust,240.0129,57.99823,0.0,11/12/4628 +5.14504,46.47419,4184,1,8,5,31,6,3.65,5.0,fr,50597,83,2152812,1,1,Active Shallow Crust,0.0,89.98762,0.0,01/08/4184 +5.14504,46.47419,3188,7,30,8,21,14,3.75,5.0,fr,50598,63,2152824,1,1,Active Shallow Crust,0.0,89.98897,0.0,07/30/3188 +5.14504,46.47419,6293,11,8,12,8,31,3.85,5.0,fr,50599,125,2152836,1,1,Active Shallow Crust,0.0,89.99017,0.0,11/08/6293 +5.14504,46.47419,2322,12,9,22,31,15,4.05,5.0,fr,50600,46,2152860,1,1,Active Shallow Crust,0.0,89.98828,0.0,12/09/2322 +5.14504,46.47419,7059,6,28,12,17,54,5.15,5.0,fr,50601,141,2152992,1,1,Active Shallow Crust,0.0,89.99009,0.0,06/28/7059 +5.14504,46.47419,1384,7,19,3,22,56,5.25,5.0,fr,50602,27,2153004,1,1,Active Shallow Crust,0.0,89.99019,0.0,07/19/1384 +3.29582,48.63261,2775,8,19,8,37,41,3.55,5.0,fr,50603,55,2153283,1,1,Active Shallow Crust,240.0121,57.99808,0.0,08/19/2775 +3.29582,48.63261,1750,8,4,19,56,19,3.75,5.0,fr,50604,34,2153304,1,1,Active Shallow Crust,0.0,89.98941,0.0,08/04/1750 +3.29582,48.63261,6101,9,6,20,15,7,3.75,15.0,fr,50605,122,2153308,1,1,Active Shallow Crust,240.0088,58.01759,0.0,09/06/6101 +3.29582,48.63261,4843,9,23,8,27,42,3.95,5.0,fr,50606,96,2153328,1,1,Active Shallow Crust,0.0,89.98949,0.0,09/23/4843 +3.29582,48.63261,7430,7,28,7,15,49,4.85,27.5,fr,50607,148,2153438,1,1,Active Shallow Crust,0.0,89.9903,0.0,07/28/7430 +5.19024,47.50968,2539,9,12,5,50,6,3.55,5.0,fr,50608,50,2154240,1,3,Active Shallow Crust,0.0,89.99319,0.0,09/12/2539 +5.19024,47.50968,366,6,1,21,2,5,3.55,5.0,fr,50609,7,2154240,1,3,Active Shallow Crust,0.0,89.99319,0.0,06/01/0366 +5.19024,47.50968,2047,9,18,22,55,24,3.55,5.0,fr,50610,40,2154240,1,3,Active Shallow Crust,0.0,89.99319,0.0,09/18/2047 +5.19024,47.50968,9831,11,19,13,1,49,3.55,15.0,fr,50611,196,2154247,1,1,Active Shallow Crust,0.0,89.99311,-90.0,11/19/9831 +5.19024,47.50968,7347,2,17,16,37,53,3.65,5.0,fr,50612,146,2154252,1,1,Active Shallow Crust,0.0,89.98786,0.0,02/17/7347 +5.19024,47.50968,6523,11,3,19,27,5,3.65,5.0,fr,50613,130,2154261,1,1,Active Shallow Crust,128.9007,89.96355,0.0,11/03/6523 +5.19024,47.50968,6796,2,4,7,45,9,3.75,5.0,fr,50614,135,2154264,1,2,Active Shallow Crust,0.0,89.98918,0.0,02/04/6796 +5.19024,47.50968,8596,6,27,9,37,28,3.75,5.0,fr,50615,171,2154264,1,2,Active Shallow Crust,0.0,89.98918,0.0,06/27/8596 +5.19024,47.50968,6454,3,14,14,5,7,3.85,5.0,fr,50616,129,2154285,1,1,Active Shallow Crust,128.8957,89.99518,0.0,03/14/6454 +5.19024,47.50968,5343,2,6,22,57,6,4.05,15.0,fr,50617,106,2154304,1,1,Active Shallow Crust,240.0066,58.00543,0.0,02/06/5343 +1.40255,41.01496,7618,8,30,1,55,51,3.55,5.0,fr,50618,152,2154720,1,1,Active Shallow Crust,0.0,89.99049,0.0,08/30/7618 +1.40255,41.01496,296,7,5,22,47,53,3.55,15.0,fr,50619,5,2154721,1,2,Active Shallow Crust,0.0,89.99049,0.0,07/05/0296 +1.40255,41.01496,5193,8,27,20,19,43,3.55,15.0,fr,50620,103,2154721,1,2,Active Shallow Crust,0.0,89.99049,0.0,08/27/5193 +1.40255,41.01496,6934,6,6,9,29,37,3.55,27.5,fr,50621,138,2154722,1,1,Active Shallow Crust,0.0,89.99049,0.0,06/06/6934 +1.40255,41.01496,3610,9,13,21,31,47,3.65,5.0,fr,50622,72,2154732,1,2,Active Shallow Crust,0.0,89.98983,0.0,09/13/3610 +1.40255,41.01496,9466,9,9,9,5,51,3.65,5.0,fr,50623,189,2154732,1,2,Active Shallow Crust,0.0,89.98983,0.0,09/09/9466 +1.40255,41.01496,9917,2,17,16,47,24,3.65,15.0,fr,50624,198,2154733,1,1,Active Shallow Crust,0.0,89.98983,0.0,02/17/9917 +1.40255,41.01496,8873,10,15,16,52,32,3.65,27.5,fr,50625,177,2154734,1,1,Active Shallow Crust,0.0,89.98983,0.0,10/15/8873 +1.40255,41.01496,1343,5,30,7,36,7,3.65,5.0,fr,50626,26,2154738,1,1,Active Shallow Crust,0.0,89.98971,-90.0,05/30/1343 +1.40255,41.01496,6765,9,15,22,24,19,3.65,5.0,fr,50627,135,2154741,1,1,Active Shallow Crust,128.9011,89.96342,0.0,09/15/6765 +1.40255,41.01496,5546,3,29,11,8,27,3.75,5.0,fr,50628,110,2154744,1,1,Active Shallow Crust,0.0,89.98943,0.0,03/29/5546 +1.40255,41.01496,7505,5,19,0,43,17,3.85,5.0,fr,50629,150,2154756,1,1,Active Shallow Crust,0.0,89.99057,0.0,05/19/7505 +1.40255,41.01496,3437,8,30,9,10,14,4.05,5.0,fr,50630,68,2154783,1,1,Active Shallow Crust,240.0052,58.00565,0.0,08/30/3437 +1.40255,41.01496,7985,2,8,1,37,15,4.15,5.0,fr,50631,159,2154792,1,1,Active Shallow Crust,0.0,89.99046,0.0,02/08/7985 +1.40255,41.01496,959,6,9,16,21,8,4.15,5.0,fr,50632,19,2154798,1,1,Active Shallow Crust,0.0,89.99036,-90.0,06/09/0959 +1.40255,41.01496,839,11,27,1,47,35,4.25,5.0,fr,50633,16,2154804,1,1,Active Shallow Crust,0.0,89.98981,0.0,11/27/0839 +1.40255,41.01496,6729,4,2,12,32,44,4.35,5.0,fr,50634,134,2154816,1,1,Active Shallow Crust,0.0,89.99016,0.0,04/02/6729 +1.40255,41.01496,4758,12,14,6,55,4,4.35,15.0,fr,50635,95,2154817,1,1,Active Shallow Crust,0.0,89.99016,0.0,12/14/4758 +1.40255,41.01496,7536,12,26,6,46,14,4.35,5.0,fr,50636,150,2154825,1,1,Active Shallow Crust,128.8988,89.9827,0.0,12/26/7536 +1.40255,41.01496,7277,6,14,8,29,56,5.15,5.0,fr,50637,145,2154915,1,1,Active Shallow Crust,240.0167,57.99944,0.0,06/14/7277 +0.62048,50.05493,7759,3,5,14,23,20,3.55,15.0,fr,50638,155,2155204,1,1,Active Shallow Crust,240.0125,57.99827,0.0,03/05/7759 +0.62048,50.05493,9149,6,29,8,15,16,3.55,5.0,fr,50639,182,2155209,1,2,Active Shallow Crust,128.8958,89.99393,0.0,06/29/9149 +0.62048,50.05493,166,7,3,6,10,37,3.55,5.0,fr,50640,3,2155209,1,2,Active Shallow Crust,128.8958,89.99393,0.0,07/03/0166 +0.62048,50.05493,8091,10,10,11,56,31,3.65,5.0,fr,50641,161,2155212,1,1,Active Shallow Crust,0.0,89.9899,0.0,10/10/8091 +0.62048,50.05493,3145,3,2,7,6,29,3.75,5.0,fr,50642,62,2155227,1,1,Active Shallow Crust,240.0088,58.01772,0.0,03/02/3145 +0.62048,50.05493,4539,5,13,6,47,31,3.75,5.0,fr,50643,90,2155230,1,1,Active Shallow Crust,0.0,89.99024,-90.0,05/13/4539 +0.62048,50.05493,2513,12,28,5,8,2,3.75,27.5,fr,50644,50,2155232,1,1,Active Shallow Crust,0.0,89.99024,-90.0,12/28/2513 +0.62048,50.05493,4241,8,11,9,16,25,3.75,15.0,fr,50645,84,2155234,1,1,Active Shallow Crust,128.8962,89.96738,0.0,08/11/4241 +0.62048,50.05493,9922,2,11,19,48,13,4.05,5.0,fr,50646,198,2155260,1,1,Active Shallow Crust,0.0,89.98999,0.0,02/11/9922 +0.62048,50.05493,4510,7,9,2,11,36,4.05,15.0,fr,50647,90,2155261,1,1,Active Shallow Crust,0.0,89.98999,0.0,07/09/4510 +0.62048,50.05493,7797,1,21,20,25,46,4.25,5.0,fr,50648,155,2155284,1,1,Active Shallow Crust,0.0,89.98988,0.0,01/21/7797 +3.14419,47.72366,3575,7,9,20,8,27,3.65,5.0,fr,50649,71,2155692,1,1,Active Shallow Crust,0.0,89.99093,0.0,07/09/3575 +3.14419,47.72366,6608,1,12,19,3,57,3.85,15.0,fr,50650,132,2155717,1,1,Active Shallow Crust,0.0,89.99039,0.0,01/12/6608 +3.14419,47.72366,591,4,1,11,40,11,4.05,5.0,fr,50651,11,2155749,1,1,Active Shallow Crust,128.8903,89.99428,0.0,04/01/0591 +3.14419,47.72366,8197,4,20,2,14,26,4.25,15.0,fr,50652,163,2155765,1,1,Active Shallow Crust,0.0,89.9894,0.0,04/20/8197 +3.14419,47.72366,7541,12,17,19,23,14,4.25,27.5,fr,50653,150,2155766,1,1,Active Shallow Crust,0.0,89.9894,0.0,12/17/7541 +3.14419,47.72366,3035,5,5,17,47,5,4.35,5.0,fr,50654,60,2155776,1,1,Active Shallow Crust,0.0,89.99055,0.0,05/05/3035 +3.14419,47.72366,2310,2,12,22,4,20,5.05,5.0,fr,50655,46,2155860,1,1,Active Shallow Crust,0.0,89.98975,0.0,02/12/2310 +3.38322,51.69275,9980,12,11,13,26,0,3.55,15.0,fr,50656,199,2156161,1,1,Active Shallow Crust,0.0,89.99062,0.0,12/11/9980 +3.38322,51.69275,7449,11,21,15,13,46,4.15,15.0,fr,50657,148,2156233,1,1,Active Shallow Crust,0.0,89.9906,0.0,11/21/7449 +3.38322,51.69275,1726,12,29,7,28,22,5.65,5.0,fr,50658,34,2156412,1,1,Active Shallow Crust,0.0,89.98997,0.0,12/29/1726 +5.0164,43.96692,6062,6,16,15,10,51,3.55,5.0,fr,50659,121,2156640,1,4,Active Shallow Crust,0.0,89.99274,0.0,06/16/6062 +5.0164,43.96692,8137,6,7,16,36,5,3.55,5.0,fr,50660,162,2156640,1,4,Active Shallow Crust,0.0,89.99274,0.0,06/07/8137 +5.0164,43.96692,3803,8,23,0,29,26,3.55,5.0,fr,50661,76,2156640,1,4,Active Shallow Crust,0.0,89.99274,0.0,08/23/3803 +5.0164,43.96692,9905,10,8,4,16,48,3.55,5.0,fr,50662,198,2156640,1,4,Active Shallow Crust,0.0,89.99274,0.0,10/08/9905 +5.0164,43.96692,8460,12,22,22,49,14,3.55,15.0,fr,50663,169,2156641,1,2,Active Shallow Crust,0.0,89.99274,0.0,12/22/8460 +5.0164,43.96692,1047,1,26,4,42,7,3.55,15.0,fr,50664,20,2156641,1,2,Active Shallow Crust,0.0,89.99274,0.0,01/26/1047 +5.0164,43.96692,873,4,19,22,17,24,3.55,5.0,fr,50665,17,2156643,1,3,Active Shallow Crust,240.0121,57.99719,0.0,04/19/0873 +5.0164,43.96692,6571,12,25,17,32,31,3.55,5.0,fr,50666,131,2156643,1,3,Active Shallow Crust,240.0121,57.99719,0.0,12/25/6571 +5.0164,43.96692,5835,2,15,2,33,57,3.55,5.0,fr,50667,116,2156643,1,3,Active Shallow Crust,240.0121,57.99719,0.0,02/15/5835 +5.0164,43.96692,9897,11,5,3,24,39,3.55,5.0,fr,50668,197,2156649,1,1,Active Shallow Crust,128.8966,89.99274,0.0,11/05/9897 +5.0164,43.96692,4886,8,9,20,42,31,3.55,27.5,fr,50669,97,2156651,1,1,Active Shallow Crust,128.8966,89.99274,0.0,08/09/4886 +5.0164,43.96692,4845,12,21,15,1,44,3.65,5.0,fr,50670,96,2156652,1,2,Active Shallow Crust,0.0,89.98706,0.0,12/21/4845 +5.0164,43.96692,8772,4,19,19,23,14,3.65,5.0,fr,50671,175,2156652,1,2,Active Shallow Crust,0.0,89.98706,0.0,04/19/8772 +5.0164,43.96692,277,8,13,22,44,25,3.65,15.0,fr,50672,5,2156659,1,1,Active Shallow Crust,0.0,89.98692,-90.0,08/13/0277 +5.0164,43.96692,1739,2,7,4,5,24,3.65,27.5,fr,50673,34,2156663,1,1,Active Shallow Crust,128.9016,89.96348,0.0,02/07/1739 +5.0164,43.96692,6192,4,25,15,38,50,3.75,5.0,fr,50674,123,2156664,1,3,Active Shallow Crust,0.0,89.98847,0.0,04/25/6192 +5.0164,43.96692,9945,12,1,4,35,56,3.75,5.0,fr,50675,198,2156664,1,3,Active Shallow Crust,0.0,89.98847,0.0,12/01/9945 +5.0164,43.96692,9913,9,3,17,2,17,3.75,5.0,fr,50676,198,2156664,1,3,Active Shallow Crust,0.0,89.98847,0.0,09/03/9913 +5.0164,43.96692,8166,5,7,0,6,18,3.75,15.0,fr,50677,163,2156665,1,2,Active Shallow Crust,0.0,89.98847,0.0,05/07/8166 +5.0164,43.96692,5859,6,9,0,55,49,3.75,15.0,fr,50678,117,2156665,1,2,Active Shallow Crust,0.0,89.98847,0.0,06/09/5859 +5.0164,43.96692,6616,10,4,10,21,57,3.75,15.0,fr,50679,132,2156668,1,1,Active Shallow Crust,240.0089,58.01693,0.0,10/04/6616 +5.0164,43.96692,638,12,21,7,29,17,3.75,5.0,fr,50680,12,2156670,1,1,Active Shallow Crust,0.0,89.98833,-90.0,12/21/0638 +5.0164,43.96692,7758,9,8,0,11,48,3.75,5.0,fr,50681,155,2156673,1,1,Active Shallow Crust,128.8964,89.96745,0.0,09/08/7758 +5.0164,43.96692,5112,9,20,8,44,25,3.85,15.0,fr,50682,102,2156677,1,2,Active Shallow Crust,0.0,89.98972,0.0,09/20/5112 +5.0164,43.96692,9922,7,18,17,32,50,3.85,15.0,fr,50683,198,2156677,1,2,Active Shallow Crust,0.0,89.98972,0.0,07/18/9922 +5.0164,43.96692,2302,11,23,7,8,19,3.95,5.0,fr,50684,46,2156688,1,2,Active Shallow Crust,0.0,89.99084,0.0,11/23/2302 +5.0164,43.96692,2149,2,2,17,26,13,3.95,5.0,fr,50685,42,2156688,1,2,Active Shallow Crust,0.0,89.99084,0.0,02/02/2149 +5.0164,43.96692,816,7,14,7,5,55,4.05,5.0,fr,50686,16,2156706,1,1,Active Shallow Crust,0.0,89.99174,-90.0,07/14/0816 +5.0164,43.96692,5114,9,6,7,20,10,4.05,15.0,fr,50687,102,2156707,1,1,Active Shallow Crust,0.0,89.99174,-90.0,09/06/5114 +5.0164,43.96692,9170,2,7,12,42,41,4.15,15.0,fr,50688,183,2156713,1,2,Active Shallow Crust,0.0,89.98909,0.0,02/07/9170 +5.0164,43.96692,1833,7,24,15,55,24,4.15,15.0,fr,50689,36,2156713,1,2,Active Shallow Crust,0.0,89.98909,0.0,07/24/1833 +5.0164,43.96692,8386,12,21,15,40,3,4.15,5.0,fr,50690,167,2156715,1,1,Active Shallow Crust,240.0074,57.99768,0.0,12/21/8386 +5.0164,43.96692,7233,7,1,21,15,29,4.15,15.0,fr,50691,144,2156716,1,1,Active Shallow Crust,240.0074,57.99771,0.0,07/01/7233 +5.0164,43.96692,6127,3,16,6,45,16,4.15,5.0,fr,50692,122,2156718,1,2,Active Shallow Crust,0.0,89.98896,-90.0,03/16/6127 +5.0164,43.96692,2253,6,3,3,44,20,4.15,5.0,fr,50693,45,2156718,1,2,Active Shallow Crust,0.0,89.98896,-90.0,06/03/2253 +5.0164,43.96692,943,8,26,3,41,1,4.25,5.0,fr,50694,18,2156724,1,1,Active Shallow Crust,0.0,89.99027,0.0,08/26/0943 +5.0164,43.96692,2067,10,31,18,19,14,4.25,5.0,fr,50695,41,2156730,1,1,Active Shallow Crust,0.0,89.99016,-90.0,10/31/2067 +5.0164,43.96692,4032,8,25,13,2,58,4.35,5.0,fr,50696,80,2156736,1,3,Active Shallow Crust,0.0,89.99133,0.0,08/25/4032 +5.0164,43.96692,7548,3,15,20,15,30,4.35,5.0,fr,50697,150,2156736,1,3,Active Shallow Crust,0.0,89.99133,0.0,03/15/7548 +5.0164,43.96692,5908,6,22,14,39,34,4.35,5.0,fr,50698,118,2156736,1,3,Active Shallow Crust,0.0,89.99133,0.0,06/22/5908 +5.0164,43.96692,4930,2,11,7,11,34,4.35,15.0,fr,50699,98,2156737,1,1,Active Shallow Crust,0.0,89.99133,0.0,02/11/4930 +5.0164,43.96692,1985,2,5,2,17,11,4.45,15.0,fr,50700,39,2156758,1,1,Active Shallow Crust,128.8932,89.99356,0.0,02/05/1985 +5.0164,43.96692,4768,8,17,11,24,23,4.55,5.0,fr,50701,95,2156760,1,1,Active Shallow Crust,0.0,89.99082,0.0,08/17/4768 +5.0164,43.96692,4100,11,16,3,36,0,4.65,5.0,fr,50702,81,2156772,1,1,Active Shallow Crust,0.0,89.98977,0.0,11/16/4100 +5.0164,43.96692,1844,10,20,18,17,41,4.65,27.5,fr,50703,36,2156774,1,1,Active Shallow Crust,0.0,89.98977,0.0,10/20/1844 +5.0164,43.96692,391,5,21,11,23,0,5.05,5.0,fr,50704,7,2156820,1,1,Active Shallow Crust,0.0,89.98967,0.0,05/21/0391 +5.0164,43.96692,4356,5,18,8,19,58,5.25,5.0,fr,50705,87,2156844,1,2,Active Shallow Crust,0.0,89.98975,0.0,05/18/4356 +5.0164,43.96692,5482,11,29,0,29,22,5.25,5.0,fr,50706,109,2156844,1,2,Active Shallow Crust,0.0,89.98975,0.0,11/29/5482 +3.46518,48.90971,5195,4,5,9,25,3,3.95,15.0,fr,50707,103,2157175,1,1,Active Shallow Crust,0.0,89.98943,-90.0,04/05/5195 +3.46518,48.90971,1965,11,19,10,15,6,4.55,5.0,fr,50708,39,2157243,1,1,Active Shallow Crust,240.0101,57.99754,0.0,11/19/1965 +4.93225,44.4847,6397,10,8,10,23,37,3.55,5.0,fr,50709,127,2157600,1,1,Active Shallow Crust,0.0,89.99281,0.0,10/08/6397 +4.93225,44.4847,9138,4,26,7,0,29,3.55,5.0,fr,50710,182,2157603,1,1,Active Shallow Crust,240.0125,57.99714,0.0,04/26/9138 +4.93225,44.4847,9639,8,14,16,38,7,3.65,5.0,fr,50711,192,2157612,1,3,Active Shallow Crust,0.0,89.98717,0.0,08/14/9639 +4.93225,44.4847,9203,3,11,10,39,44,3.65,5.0,fr,50712,184,2157612,1,3,Active Shallow Crust,0.0,89.98717,0.0,03/11/9203 +4.93225,44.4847,1468,11,29,9,9,45,3.65,5.0,fr,50713,29,2157612,1,3,Active Shallow Crust,0.0,89.98717,0.0,11/29/1468 +4.93225,44.4847,3928,3,15,19,49,29,3.65,15.0,fr,50714,78,2157613,1,3,Active Shallow Crust,0.0,89.98717,0.0,03/15/3928 +4.93225,44.4847,9567,8,31,9,34,17,3.65,15.0,fr,50715,191,2157613,1,3,Active Shallow Crust,0.0,89.98717,0.0,08/31/9567 +4.93225,44.4847,6850,3,1,12,36,30,3.65,15.0,fr,50716,136,2157613,1,3,Active Shallow Crust,0.0,89.98717,0.0,03/01/6850 +4.93225,44.4847,7309,12,20,16,54,1,3.65,5.0,fr,50717,146,2157615,1,1,Active Shallow Crust,240.001,58.01324,0.0,12/20/7309 +4.93225,44.4847,5376,2,12,14,12,1,3.65,5.0,fr,50718,107,2157618,1,1,Active Shallow Crust,0.0,89.98703,-90.0,02/12/5376 +4.93225,44.4847,2765,11,11,13,42,42,3.75,5.0,fr,50719,55,2157624,1,6,Active Shallow Crust,0.0,89.98857,0.0,11/11/2765 +4.93225,44.4847,7263,5,15,10,4,48,3.75,5.0,fr,50720,145,2157624,1,6,Active Shallow Crust,0.0,89.98857,0.0,05/15/7263 +4.93225,44.4847,1033,11,9,10,47,3,3.75,5.0,fr,50721,20,2157624,1,6,Active Shallow Crust,0.0,89.98857,0.0,11/09/1033 +4.93225,44.4847,8983,3,12,17,24,55,3.75,5.0,fr,50722,179,2157624,1,6,Active Shallow Crust,0.0,89.98857,0.0,03/12/8983 +4.93225,44.4847,6805,6,1,15,51,9,3.75,5.0,fr,50723,136,2157624,1,6,Active Shallow Crust,0.0,89.98857,0.0,06/01/6805 +4.93225,44.4847,2501,11,22,9,35,27,3.75,5.0,fr,50724,50,2157624,1,6,Active Shallow Crust,0.0,89.98857,0.0,11/22/2501 +4.93225,44.4847,6028,7,22,1,7,51,3.85,5.0,fr,50725,120,2157636,1,1,Active Shallow Crust,0.0,89.98981,0.0,07/22/6028 +4.93225,44.4847,1530,3,27,20,57,31,3.85,15.0,fr,50726,30,2157637,1,2,Active Shallow Crust,0.0,89.98981,0.0,03/27/1530 +4.93225,44.4847,2379,9,2,18,38,17,3.85,15.0,fr,50727,47,2157637,1,2,Active Shallow Crust,0.0,89.98981,0.0,09/02/2379 +4.93225,44.4847,5447,10,17,7,13,33,3.85,5.0,fr,50728,108,2157639,1,1,Active Shallow Crust,240.0113,57.99807,0.0,10/17/5447 +4.93225,44.4847,5674,1,1,17,44,11,3.85,15.0,fr,50729,113,2157640,1,1,Active Shallow Crust,240.0113,57.99807,0.0,01/01/5674 +4.93225,44.4847,7292,7,10,12,58,27,3.95,5.0,fr,50730,145,2157648,1,2,Active Shallow Crust,0.0,89.99092,0.0,07/10/7292 +4.93225,44.4847,9215,4,13,20,3,46,3.95,5.0,fr,50731,184,2157648,1,2,Active Shallow Crust,0.0,89.99092,0.0,04/13/9215 +4.93225,44.4847,4335,7,29,21,43,58,3.95,27.5,fr,50732,86,2157650,1,1,Active Shallow Crust,0.0,89.99092,0.0,07/29/4335 +4.93225,44.4847,8820,9,15,13,38,17,4.15,5.0,fr,50733,176,2157672,1,1,Active Shallow Crust,0.0,89.98918,0.0,09/15/8820 +4.93225,44.4847,502,9,5,9,12,15,4.15,5.0,fr,50734,10,2157675,1,1,Active Shallow Crust,240.0083,57.99749,0.0,09/05/0502 +4.93225,44.4847,318,1,11,4,55,42,4.25,27.5,fr,50735,6,2157686,1,1,Active Shallow Crust,0.0,89.99036,0.0,01/11/0318 +4.93225,44.4847,3606,10,21,0,1,40,4.55,5.0,fr,50736,72,2157723,1,1,Active Shallow Crust,240.0085,57.99754,0.0,10/21/3606 +2.6332,42.01949,2794,12,27,14,14,52,3.55,5.0,fr,50737,55,2158080,1,2,Active Shallow Crust,0.0,89.98876,0.0,12/27/2794 +2.6332,42.01949,4041,4,26,22,16,32,3.55,5.0,fr,50738,80,2158080,1,2,Active Shallow Crust,0.0,89.98876,0.0,04/26/4041 +2.6332,42.01949,3225,7,7,21,26,38,3.55,15.0,fr,50739,64,2158081,1,1,Active Shallow Crust,0.0,89.98876,0.0,07/07/3225 +2.6332,42.01949,5792,10,25,3,38,51,3.65,5.0,fr,50740,115,2158092,1,2,Active Shallow Crust,0.0,89.98998,0.0,10/25/5792 +2.6332,42.01949,614,6,4,22,16,36,3.65,5.0,fr,50741,12,2158092,1,2,Active Shallow Crust,0.0,89.98998,0.0,06/04/0614 +2.6332,42.01949,639,9,20,14,0,40,3.65,15.0,fr,50742,12,2158093,1,2,Active Shallow Crust,0.0,89.98998,0.0,09/20/0639 +2.6332,42.01949,3066,7,27,10,59,48,3.65,15.0,fr,50743,61,2158093,1,2,Active Shallow Crust,0.0,89.98998,0.0,07/27/3066 +2.6332,42.01949,8866,3,11,12,56,16,3.65,5.0,fr,50744,177,2158098,1,1,Active Shallow Crust,0.0,89.98987,-90.0,03/11/8866 +2.6332,42.01949,1743,7,7,15,5,57,3.65,15.0,fr,50745,34,2158102,1,1,Active Shallow Crust,128.9004,89.96344,0.0,07/07/1743 +2.6332,42.01949,5493,10,14,9,21,32,3.75,5.0,fr,50746,109,2158113,1,1,Active Shallow Crust,128.8964,89.96741,0.0,10/14/5493 +2.6332,42.01949,2949,5,25,22,2,30,3.85,27.5,fr,50747,58,2158118,1,1,Active Shallow Crust,0.0,89.9894,0.0,05/25/2949 +2.6332,42.01949,8549,2,7,10,19,44,3.85,5.0,fr,50748,170,2158119,1,1,Active Shallow Crust,240.0106,57.99745,0.0,02/07/8549 +2.6332,42.01949,4404,10,24,13,18,50,3.95,5.0,fr,50749,88,2158134,1,1,Active Shallow Crust,0.0,89.99044,-90.0,10/24/4404 +2.6332,42.01949,1501,3,10,9,41,4,4.05,15.0,fr,50750,30,2158141,1,1,Active Shallow Crust,0.0,89.98947,0.0,03/10/1501 +2.6332,42.01949,9141,6,16,0,16,50,4.05,15.0,fr,50751,182,2158144,1,1,Active Shallow Crust,240.005,58.00608,0.0,06/16/9141 +2.6332,42.01949,9131,6,7,21,54,38,4.05,15.0,fr,50752,182,2158150,1,1,Active Shallow Crust,128.891,89.99368,0.0,06/07/9131 +2.6332,42.01949,3802,7,25,5,3,21,4.15,5.0,fr,50753,76,2158155,1,1,Active Shallow Crust,240.0076,57.99737,0.0,07/25/3802 +2.6332,42.01949,9136,6,22,5,35,19,4.25,5.0,fr,50754,182,2158164,1,2,Active Shallow Crust,0.0,89.98996,0.0,06/22/9136 +2.6332,42.01949,2588,9,11,13,7,35,4.25,5.0,fr,50755,51,2158164,1,2,Active Shallow Crust,0.0,89.98996,0.0,09/11/2588 +2.6332,42.01949,3562,5,25,23,45,55,4.45,5.0,fr,50756,71,2158188,1,1,Active Shallow Crust,0.0,89.98936,0.0,05/25/3562 +2.6332,42.01949,2072,5,19,12,47,2,4.75,5.0,fr,50757,41,2158224,1,1,Active Shallow Crust,0.0,89.98965,0.0,05/19/2072 +2.6332,42.01949,3062,8,4,8,2,12,4.85,5.0,fr,50758,61,2158236,1,1,Active Shallow Crust,0.0,89.98994,0.0,08/04/3062 +-1.6971,43.40859,3604,8,25,19,19,33,3.55,5.0,fr,50759,72,2158563,1,1,Active Shallow Crust,240.0119,57.99794,0.0,08/25/3604 +-1.6971,43.40859,5477,1,2,5,28,12,3.55,15.0,fr,50760,109,2158564,1,1,Active Shallow Crust,240.0119,57.99794,0.0,01/02/5477 +-1.6971,43.40859,6776,3,28,0,55,51,3.55,5.0,fr,50761,135,2158566,1,1,Active Shallow Crust,0.0,89.99074,-90.0,03/28/6776 +-1.6971,43.40859,6849,6,16,4,6,40,3.65,5.0,fr,50762,136,2158572,1,1,Active Shallow Crust,0.0,89.9902,0.0,06/16/6849 +-1.6971,43.40859,9762,6,2,17,15,44,3.65,15.0,fr,50763,195,2158573,1,1,Active Shallow Crust,0.0,89.9902,0.0,06/02/9762 +-1.6971,43.40859,6845,1,26,11,50,14,3.65,5.0,fr,50764,136,2158575,1,1,Active Shallow Crust,240.0008,58.01296,0.0,01/26/6845 +-1.6971,43.40859,4073,2,8,21,10,20,3.65,5.0,fr,50765,81,2158578,1,1,Active Shallow Crust,0.0,89.99009,-90.0,02/08/4073 +-1.6971,43.40859,3747,10,11,7,41,21,3.75,5.0,fr,50766,74,2158584,1,2,Active Shallow Crust,0.0,89.98981,0.0,10/11/3747 +-1.6971,43.40859,2691,7,26,10,6,6,3.75,5.0,fr,50767,53,2158584,1,2,Active Shallow Crust,0.0,89.98981,0.0,07/26/2691 +-1.6971,43.40859,9794,1,6,6,52,35,3.75,15.0,fr,50768,195,2158585,1,1,Active Shallow Crust,0.0,89.98981,0.0,01/06/9794 +-1.6971,43.40859,5315,10,21,5,8,48,3.75,27.5,fr,50769,106,2158586,1,1,Active Shallow Crust,0.0,89.98981,0.0,10/21/5315 +-1.6971,43.40859,9014,5,18,7,25,30,3.75,5.0,fr,50770,180,2158590,1,1,Active Shallow Crust,0.0,89.9897,-90.0,05/18/9014 +-1.6971,43.40859,7337,1,17,2,32,23,4.35,5.0,fr,50771,146,2158656,1,1,Active Shallow Crust,0.0,89.98979,0.0,01/17/7337 +-1.6971,43.40859,5668,6,30,0,47,17,4.35,5.0,fr,50772,113,2158662,1,1,Active Shallow Crust,0.0,89.98968,-90.0,06/30/5668 +-1.6971,43.40859,9181,7,19,15,17,48,4.35,15.0,fr,50773,183,2158666,1,1,Active Shallow Crust,128.8984,89.98265,0.0,07/19/9181 +-1.6971,43.40859,2284,8,11,22,7,49,4.45,5.0,fr,50774,45,2158668,1,1,Active Shallow Crust,0.0,89.99025,0.0,08/11/2284 +-1.6971,43.40859,1054,12,6,9,24,3,4.45,15.0,fr,50775,21,2158678,1,1,Active Shallow Crust,128.8928,89.99383,0.0,12/06/1054 +-4.16977,48.23361,8632,3,29,20,28,40,3.55,5.0,fr,50776,172,2159040,1,1,Active Shallow Crust,0.0,89.99329,0.0,03/29/8632 +-4.16977,48.23361,9074,3,27,17,37,3,3.55,15.0,fr,50777,181,2159041,1,1,Active Shallow Crust,0.0,89.99329,0.0,03/27/9074 +-4.16977,48.23361,2630,11,27,19,35,46,3.55,27.5,fr,50778,52,2159045,1,1,Active Shallow Crust,240.0121,57.9985,0.0,11/27/2630 +-4.16977,48.23361,7520,1,12,15,24,18,3.55,5.0,fr,50779,150,2159046,1,1,Active Shallow Crust,0.0,89.9932,-90.0,01/12/7520 +-4.16977,48.23361,9563,12,12,9,6,35,3.65,5.0,fr,50780,191,2159052,1,1,Active Shallow Crust,0.0,89.98803,0.0,12/12/9563 +-4.16977,48.23361,6393,3,31,11,50,55,3.65,15.0,fr,50781,127,2159053,1,1,Active Shallow Crust,0.0,89.98803,0.0,03/31/6393 +-4.16977,48.23361,1529,5,12,14,18,16,3.65,5.0,fr,50782,30,2159055,1,1,Active Shallow Crust,240.0013,58.01268,0.0,05/12/1529 +-4.16977,48.23361,1421,6,5,1,8,32,3.65,15.0,fr,50783,28,2159062,1,1,Active Shallow Crust,128.9,89.96355,0.0,06/05/1421 +-4.16977,48.23361,7327,3,6,17,14,33,3.75,5.0,fr,50784,146,2159064,1,2,Active Shallow Crust,0.0,89.98933,0.0,03/06/7327 +-4.16977,48.23361,5253,4,15,20,56,36,3.75,5.0,fr,50785,105,2159064,1,2,Active Shallow Crust,0.0,89.98933,0.0,04/15/5253 +-4.16977,48.23361,4818,5,27,11,6,58,3.85,15.0,fr,50786,96,2159080,1,1,Active Shallow Crust,240.0107,57.99777,0.0,05/27/4818 +-4.16977,48.23361,3945,5,7,10,11,38,3.95,15.0,fr,50787,78,2159089,1,1,Active Shallow Crust,0.0,89.99152,0.0,05/07/3945 +-4.16977,48.23361,9478,9,7,22,12,42,3.95,5.0,fr,50788,189,2159094,1,1,Active Shallow Crust,0.0,89.99142,-90.0,09/07/9478 +-4.16977,48.23361,7656,8,3,9,18,1,4.05,15.0,fr,50789,153,2159104,1,1,Active Shallow Crust,240.0062,58.00585,0.0,08/03/7656 +-4.16977,48.23361,5988,1,27,5,37,38,4.05,5.0,fr,50790,119,2159106,1,1,Active Shallow Crust,0.0,89.98853,-90.0,01/27/5988 +-4.16977,48.23361,3556,2,26,16,44,42,4.15,5.0,fr,50791,71,2159112,1,1,Active Shallow Crust,0.0,89.9899,0.0,02/26/3556 +-4.16977,48.23361,8201,12,24,16,42,4,4.25,5.0,fr,50792,164,2159124,1,2,Active Shallow Crust,0.0,89.991,0.0,12/24/8201 +-4.16977,48.23361,7278,5,8,16,54,44,4.25,5.0,fr,50793,145,2159124,1,2,Active Shallow Crust,0.0,89.991,0.0,05/08/7278 +-4.16977,48.23361,5975,12,31,2,32,44,4.55,5.0,fr,50794,119,2159169,1,1,Active Shallow Crust,128.8934,89.98574,0.0,12/31/5975 +-4.16977,48.23361,5978,3,11,0,38,30,4.65,5.0,fr,50795,119,2159172,1,1,Active Shallow Crust,0.0,89.99053,0.0,03/11/5978 +-6.78813,48.49506,6842,7,19,9,59,20,3.55,5.0,fr,50796,136,2159520,1,1,Active Shallow Crust,0.0,89.99332,0.0,07/19/6842 +2.69805,50.65292,4384,11,22,3,19,51,3.55,5.0,fr,50797,87,2160480,1,1,Active Shallow Crust,0.0,89.99041,0.0,11/22/4384 +2.69805,50.65292,6104,6,25,4,39,40,3.55,27.5,fr,50798,122,2160482,1,1,Active Shallow Crust,0.0,89.99041,0.0,06/25/6104 +2.69805,50.65292,5591,2,1,12,1,37,3.65,15.0,fr,50799,111,2160493,1,1,Active Shallow Crust,0.0,89.9886,0.0,02/01/5591 +2.69805,50.65292,8251,8,27,16,39,37,3.65,15.0,fr,50800,165,2160502,1,1,Active Shallow Crust,128.9003,89.9636,0.0,08/27/8251 +2.69805,50.65292,5708,5,2,20,45,50,3.75,5.0,fr,50801,114,2160504,1,1,Active Shallow Crust,0.0,89.98985,0.0,05/02/5708 +2.69805,50.65292,1786,6,18,2,12,29,3.75,15.0,fr,50802,35,2160511,1,1,Active Shallow Crust,0.0,89.98972,-90.0,06/18/1786 +2.69805,50.65292,5865,8,21,16,38,8,5.15,5.0,fr,50803,117,2160672,1,1,Active Shallow Crust,0.0,89.98986,0.0,08/21/5865 +2.00111,51.91904,9389,6,29,3,32,17,4.15,5.0,fr,50804,187,2161038,1,1,Active Shallow Crust,0.0,89.99054,-90.0,06/29/9389 +2.00111,51.91904,1396,10,22,13,36,35,4.35,5.0,fr,50805,27,2161056,1,1,Active Shallow Crust,0.0,89.9901,0.0,10/22/1396 +2.00111,51.91904,6242,3,19,4,9,3,4.65,5.0,fr,50806,124,2161092,1,1,Active Shallow Crust,0.0,89.99036,0.0,03/19/6242 +2.83264,42.05038,6910,7,20,0,23,52,3.55,5.0,fr,50807,138,2161440,1,2,Active Shallow Crust,0.0,89.98877,0.0,07/20/6910 +2.83264,42.05038,2123,4,26,11,48,9,3.55,5.0,fr,50808,42,2161440,1,2,Active Shallow Crust,0.0,89.98877,0.0,04/26/2123 +2.83264,42.05038,5803,6,28,1,53,54,3.55,27.5,fr,50809,116,2161442,1,1,Active Shallow Crust,0.0,89.98877,0.0,06/28/5803 +2.83264,42.05038,4759,6,13,5,41,36,3.65,15.0,fr,50810,95,2161453,1,1,Active Shallow Crust,0.0,89.98999,0.0,06/13/4759 +2.83264,42.05038,2872,11,18,12,42,57,3.65,27.5,fr,50811,57,2161454,1,1,Active Shallow Crust,0.0,89.98999,0.0,11/18/2872 +2.83264,42.05038,378,5,28,1,52,3,3.65,5.0,fr,50812,7,2161455,1,1,Active Shallow Crust,240.0007,58.01298,0.0,05/28/0378 +2.83264,42.05038,6990,1,19,17,25,36,3.75,5.0,fr,50813,139,2161464,1,3,Active Shallow Crust,0.0,89.99108,0.0,01/19/6990 +2.83264,42.05038,3808,8,28,7,30,12,3.75,5.0,fr,50814,76,2161464,1,3,Active Shallow Crust,0.0,89.99108,0.0,08/28/3808 +2.83264,42.05038,4844,10,8,10,10,22,3.75,5.0,fr,50815,96,2161464,1,3,Active Shallow Crust,0.0,89.99108,0.0,10/08/4844 +2.83264,42.05038,653,2,15,23,57,53,3.85,5.0,fr,50816,13,2161476,1,1,Active Shallow Crust,0.0,89.9894,0.0,02/15/0653 +2.83264,42.05038,5266,4,21,9,12,1,3.85,15.0,fr,50817,105,2161483,1,1,Active Shallow Crust,0.0,89.98927,-90.0,04/21/5266 +2.83264,42.05038,4488,12,18,3,36,13,4.05,5.0,fr,50818,89,2161500,1,2,Active Shallow Crust,0.0,89.98947,0.0,12/18/4488 +2.83264,42.05038,5593,3,10,18,41,40,4.05,5.0,fr,50819,111,2161500,1,2,Active Shallow Crust,0.0,89.98947,0.0,03/10/5593 +2.83264,42.05038,6200,6,15,1,13,57,4.05,15.0,fr,50820,123,2161504,1,1,Active Shallow Crust,240.0051,58.00564,0.0,06/15/6200 +2.83264,42.05038,3091,11,10,23,59,48,4.15,5.0,fr,50821,61,2161512,1,1,Active Shallow Crust,0.0,89.99062,0.0,11/10/3091 +2.83264,42.05038,689,1,27,1,21,44,4.25,5.0,fr,50822,13,2161533,1,2,Active Shallow Crust,128.8949,89.98078,0.0,01/27/0689 +2.83264,42.05038,2485,9,18,12,4,44,4.25,5.0,fr,50823,49,2161533,1,2,Active Shallow Crust,128.8949,89.98078,0.0,09/18/2485 +2.83264,42.05038,8782,5,20,7,34,42,4.55,5.0,fr,50824,175,2161560,1,1,Active Shallow Crust,0.0,89.99052,0.0,05/20/8782 +2.83264,42.05038,6409,5,25,0,49,38,4.55,5.0,fr,50825,128,2161566,1,1,Active Shallow Crust,0.0,89.99042,-90.0,05/25/6409 +2.83264,42.05038,4935,4,30,13,58,52,4.65,5.0,fr,50826,98,2161572,1,1,Active Shallow Crust,0.0,89.9905,0.0,04/30/4935 +3.52736,48.03615,1498,4,6,15,42,11,3.55,15.0,fr,50827,29,2161921,1,1,Active Shallow Crust,0.0,89.98988,0.0,04/06/1498 +3.52736,48.03615,1411,1,1,12,58,51,3.65,27.5,fr,50828,28,2161934,1,1,Active Shallow Crust,0.0,89.99098,0.0,01/01/1411 +3.52736,48.03615,4627,9,14,20,36,16,4.15,5.0,fr,50829,92,2161992,1,1,Active Shallow Crust,0.0,89.98986,0.0,09/14/4627 +3.52736,48.03615,4242,9,27,14,41,49,4.25,5.0,fr,50830,84,2162013,1,1,Active Shallow Crust,128.8941,89.981,0.0,09/27/4242 +3.5242,50.28698,2530,4,20,14,9,9,3.65,5.0,fr,50831,50,2162412,1,1,Active Shallow Crust,0.0,89.99139,0.0,04/20/2530 +3.5242,50.28698,4766,10,30,5,41,45,3.65,15.0,fr,50832,95,2162413,1,1,Active Shallow Crust,0.0,89.99139,0.0,10/30/4766 +3.5242,50.28698,3255,10,3,6,42,33,3.75,15.0,fr,50833,65,2162425,1,1,Active Shallow Crust,0.0,89.98976,0.0,10/03/3255 +3.5242,50.28698,2779,4,1,16,59,56,3.95,5.0,fr,50834,55,2162448,1,1,Active Shallow Crust,0.0,89.98984,0.0,04/01/2779 +3.5242,50.28698,2347,12,22,10,27,49,4.05,5.0,fr,50835,46,2162463,1,1,Active Shallow Crust,240.0066,58.00596,0.0,12/22/2347 +3.5242,50.28698,9630,7,10,23,40,40,4.15,27.5,fr,50836,192,2162477,1,1,Active Shallow Crust,240.0092,57.99732,0.0,07/10/9630 +3.5242,50.28698,4764,4,17,5,24,34,4.25,5.0,fr,50837,95,2162484,1,1,Active Shallow Crust,0.0,89.98993,0.0,04/17/4764 +3.5242,50.28698,2887,1,1,16,12,55,4.65,5.0,fr,50838,57,2162538,1,1,Active Shallow Crust,0.0,89.9899,-90.0,01/01/2887 +3.5242,50.28698,7673,11,16,16,51,2,4.75,5.0,fr,50839,153,2162544,1,1,Active Shallow Crust,0.0,89.99029,0.0,11/16/7673 +3.5242,50.28698,5083,9,23,21,26,53,4.95,15.0,fr,50840,101,2162569,1,1,Active Shallow Crust,0.0,89.98972,0.0,09/23/5083 +3.5242,50.28698,1434,2,1,9,40,56,5.45,15.0,fr,50841,28,2162629,1,1,Active Shallow Crust,0.0,89.98988,0.0,02/01/1434 +3.15714,43.69956,6403,5,27,8,12,11,3.55,5.0,fr,50842,128,2163360,1,1,Active Shallow Crust,0.0,89.98907,0.0,05/27/6403 +3.15714,43.69956,5996,4,29,2,31,26,3.55,15.0,fr,50843,119,2163370,1,1,Active Shallow Crust,128.8956,89.99453,0.0,04/29/5996 +3.15714,43.69956,4664,8,3,12,27,15,3.75,15.0,fr,50844,93,2163385,1,1,Active Shallow Crust,0.0,89.99131,0.0,08/03/4664 +3.15714,43.69956,9134,6,5,13,58,7,3.95,15.0,fr,50845,182,2163409,1,1,Active Shallow Crust,0.0,89.9908,0.0,06/05/9134 +3.15714,43.69956,4676,7,19,2,26,38,4.05,5.0,fr,50846,93,2163420,1,1,Active Shallow Crust,0.0,89.98975,0.0,07/19/4676 +3.15714,43.69956,1213,2,22,0,13,42,4.05,15.0,fr,50847,24,2163421,1,2,Active Shallow Crust,0.0,89.98975,0.0,02/22/1213 +3.15714,43.69956,8433,4,14,7,42,14,4.05,15.0,fr,50848,168,2163421,1,2,Active Shallow Crust,0.0,89.98975,0.0,04/14/8433 +3.15714,43.69956,1252,4,14,7,27,50,4.15,5.0,fr,50849,25,2163432,1,1,Active Shallow Crust,0.0,89.99087,0.0,04/14/1252 +-1.90819,42.55461,8373,12,25,2,8,59,3.55,5.0,fr,50850,167,2163840,1,1,Active Shallow Crust,0.0,89.99072,0.0,12/25/8373 +-1.90819,42.55461,5608,2,18,22,3,36,3.65,5.0,fr,50851,112,2163855,1,1,Active Shallow Crust,240.0006,58.0131,0.0,02/18/5608 +-1.90819,42.55461,7977,10,7,23,0,50,3.75,5.0,fr,50852,159,2163864,1,1,Active Shallow Crust,0.0,89.98968,0.0,10/07/7977 +-1.90819,42.55461,6580,4,20,12,32,51,3.75,5.0,fr,50853,131,2163873,1,1,Active Shallow Crust,128.897,89.96742,0.0,04/20/6580 +-1.90819,42.55461,19,9,29,5,43,15,3.95,5.0,fr,50854,0,2163888,1,1,Active Shallow Crust,0.0,89.98946,0.0,09/29/0019 +-1.90819,42.55461,8356,8,11,2,25,11,4.25,15.0,fr,50855,167,2163931,1,1,Active Shallow Crust,0.0,89.98993,-90.0,08/11/8356 +-1.90819,42.55461,9216,11,22,3,54,37,4.45,5.0,fr,50856,184,2163948,1,1,Active Shallow Crust,0.0,89.99011,0.0,11/22/9216 +-1.90819,42.55461,1496,1,10,12,55,38,4.45,15.0,fr,50857,29,2163958,1,1,Active Shallow Crust,128.8931,89.99374,0.0,01/10/1496 +-1.90819,42.55461,3267,8,12,11,51,41,4.55,5.0,fr,50858,65,2163969,1,1,Active Shallow Crust,128.8948,89.9857,0.0,08/12/3267 +-1.90819,42.55461,9327,11,10,22,0,24,4.75,15.0,fr,50859,186,2163988,1,1,Active Shallow Crust,240.0061,58.00421,0.0,11/10/9327 +7.54646,50.69267,8016,9,6,12,4,46,3.55,15.0,fr,50860,160,2164321,1,2,Active Shallow Crust,0.0,89.98722,0.0,09/06/8016 +7.54646,50.69267,4407,8,31,22,53,32,3.55,15.0,fr,50861,88,2164321,1,2,Active Shallow Crust,0.0,89.98722,0.0,08/31/4407 +7.54646,50.69267,8235,10,8,2,44,21,3.55,5.0,fr,50862,164,2164323,1,1,Active Shallow Crust,240.0128,57.99822,0.0,10/08/8235 +7.54646,50.69267,5900,1,7,5,44,33,3.55,5.0,fr,50863,117,2164326,1,1,Active Shallow Crust,0.0,89.98708,-90.0,01/07/5900 +7.54646,50.69267,2667,8,13,20,29,1,3.65,27.5,fr,50864,53,2164334,1,1,Active Shallow Crust,0.0,89.98862,0.0,08/13/2667 +7.54646,50.69267,4523,12,21,23,35,41,3.75,27.5,fr,50865,90,2164352,1,1,Active Shallow Crust,0.0,89.98973,-90.0,12/21/4523 +7.54646,50.69267,4343,5,23,11,45,51,3.95,5.0,fr,50866,86,2164371,1,1,Active Shallow Crust,240.02,58.00571,0.0,05/23/4343 +7.54646,50.69267,6221,9,12,8,24,33,4.05,5.0,fr,50867,124,2164380,1,2,Active Shallow Crust,0.0,89.98922,0.0,09/12/6221 +7.54646,50.69267,5240,9,12,0,57,50,4.05,5.0,fr,50868,104,2164380,1,2,Active Shallow Crust,0.0,89.98922,0.0,09/12/5240 +7.54646,50.69267,2596,6,30,19,48,21,4.25,5.0,fr,50869,51,2164404,1,2,Active Shallow Crust,0.0,89.98859,0.0,06/30/2596 +7.54646,50.69267,4934,3,22,23,35,48,4.25,5.0,fr,50870,98,2164404,1,2,Active Shallow Crust,0.0,89.98859,0.0,03/22/4934 +7.54646,50.69267,367,12,13,16,29,17,4.55,5.0,fr,50871,7,2164446,1,1,Active Shallow Crust,0.0,89.98978,-90.0,12/13/0367 +0.19096,45.63432,5828,7,21,4,29,3,3.55,15.0,fr,50872,116,2164801,1,2,Active Shallow Crust,0.0,89.99008,0.0,07/21/5828 +0.19096,45.63432,4931,3,9,19,41,43,3.55,15.0,fr,50873,98,2164801,1,2,Active Shallow Crust,0.0,89.99008,0.0,03/09/4931 +0.19096,45.63432,6908,7,20,10,43,53,3.65,5.0,fr,50874,138,2164812,1,1,Active Shallow Crust,0.0,89.98998,0.0,07/20/6908 +0.19096,45.63432,7395,8,28,17,30,18,3.65,5.0,fr,50875,147,2164818,1,2,Active Shallow Crust,0.0,89.99007,-90.0,08/28/7395 +0.19096,45.63432,7437,5,7,23,38,0,3.65,5.0,fr,50876,148,2164818,1,2,Active Shallow Crust,0.0,89.99007,-90.0,05/07/7437 +0.19096,45.63432,518,5,29,6,1,18,3.75,5.0,fr,50877,10,2164824,1,1,Active Shallow Crust,0.0,89.99002,0.0,05/29/0518 +0.19096,45.63432,7293,4,16,20,31,30,3.75,15.0,fr,50878,145,2164825,1,1,Active Shallow Crust,0.0,89.99002,0.0,04/16/7293 +0.19096,45.63432,6414,3,23,6,9,6,3.85,5.0,fr,50879,128,2164836,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/23/6414 +0.19096,45.63432,154,12,19,7,9,16,3.95,5.0,fr,50880,3,2164848,1,1,Active Shallow Crust,0.0,89.98999,0.0,12/19/0154 +0.19096,45.63432,1222,8,24,22,52,22,4.05,27.5,fr,50881,24,2164862,1,1,Active Shallow Crust,0.0,89.98996,0.0,08/24/1222 +0.19096,45.63432,5882,11,25,6,17,5,4.05,27.5,fr,50882,117,2164865,1,1,Active Shallow Crust,240.0058,58.00578,0.0,11/25/5882 +0.19096,45.63432,1191,6,11,10,35,52,4.05,5.0,fr,50883,23,2164869,1,1,Active Shallow Crust,128.8906,89.99374,0.0,06/11/1191 +0.19096,45.63432,1141,6,5,23,35,53,4.15,5.0,fr,50884,22,2164872,1,1,Active Shallow Crust,0.0,89.98995,0.0,06/05/1141 +0.19096,45.63432,6653,2,17,15,24,58,4.35,15.0,fr,50885,133,2164897,1,1,Active Shallow Crust,0.0,89.99,0.0,02/17/6653 +0.19096,45.63432,4755,4,1,22,26,5,4.65,5.0,fr,50886,95,2164932,1,1,Active Shallow Crust,0.0,89.99,0.0,04/01/4755 +0.19096,45.63432,7552,5,5,17,4,18,4.75,5.0,fr,50887,151,2164944,1,1,Active Shallow Crust,0.0,89.98998,0.0,05/05/7552 +0.19096,45.63432,5464,11,30,23,25,35,4.75,15.0,fr,50888,109,2164945,1,1,Active Shallow Crust,0.0,89.98998,0.0,11/30/5464 +0.19096,45.63432,6013,10,2,12,44,35,5.15,5.0,fr,50889,120,2164995,1,1,Active Shallow Crust,240.0191,57.99987,0.0,10/02/6013 +0.1909658,45.63432,3308,5,2,7,36,40,6.35,7.567806,fr,50890,66,2165136,1,1,Active Shallow Crust,360.0,89.99,0.0,05/02/3308 +8.48226,50.79442,4384,3,12,12,49,57,3.75,5.0,fr,50891,87,2165307,1,1,Active Shallow Crust,240.0102,58.01615,0.0,03/12/4384 +3.45683,47.26135,7552,10,29,22,2,14,3.75,5.0,fr,50892,151,2165784,1,1,Active Shallow Crust,0.0,89.98913,0.0,10/29/7552 +3.45683,47.26135,7448,5,22,8,29,28,4.15,5.0,fr,50893,148,2165832,1,1,Active Shallow Crust,0.0,89.98971,0.0,05/22/7448 +1.83893,44.01799,8962,5,5,7,54,37,3.55,5.0,fr,50894,179,2166240,1,1,Active Shallow Crust,0.0,89.98912,0.0,05/05/8962 +1.83893,44.01799,4386,2,11,14,43,10,4.55,5.0,fr,50895,87,2166360,1,1,Active Shallow Crust,0.0,89.99025,0.0,02/11/4386 +1.83893,44.01799,3636,5,13,18,20,34,5.05,5.0,fr,50896,72,2166420,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/13/3636 +1.57422,40.63882,1879,3,18,18,41,8,3.55,15.0,fr,50897,37,2166724,1,1,Active Shallow Crust,240.012,57.99794,0.0,03/18/1879 +1.57422,40.63882,7176,3,14,9,1,7,3.65,5.0,fr,50898,143,2166732,1,2,Active Shallow Crust,0.0,89.98977,0.0,03/14/7176 +1.57422,40.63882,1351,5,5,2,15,13,3.65,5.0,fr,50899,27,2166732,1,2,Active Shallow Crust,0.0,89.98977,0.0,05/05/1351 +1.57422,40.63882,4538,9,11,9,28,43,3.75,5.0,fr,50900,90,2166753,1,1,Active Shallow Crust,128.8969,89.96739,0.0,09/11/4538 +1.57422,40.63882,8247,2,4,11,5,35,3.85,5.0,fr,50901,164,2166756,1,2,Active Shallow Crust,0.0,89.99052,0.0,02/04/8247 +1.57422,40.63882,1586,9,22,7,27,58,3.85,5.0,fr,50902,31,2166756,1,2,Active Shallow Crust,0.0,89.99052,0.0,09/22/1586 +1.57422,40.63882,1462,3,17,11,11,41,5.95,5.0,fr,50903,29,2167011,1,1,Active Shallow Crust,240.0411,58.00109,0.0,03/17/1462 +4.2791,42.66566,4481,12,14,11,29,27,3.55,5.0,fr,50904,89,2167206,1,1,Active Shallow Crust,0.0,89.9925,-90.0,12/14/4481 +4.2791,42.66566,9334,7,28,23,37,4,3.85,5.0,fr,50905,186,2167236,1,1,Active Shallow Crust,0.0,89.9895,0.0,07/28/9334 +4.2791,42.66566,3027,12,3,6,18,39,4.15,5.0,fr,50906,60,2167272,1,1,Active Shallow Crust,0.0,89.98885,0.0,12/03/3027 +4.2791,42.66566,1412,1,21,21,4,7,4.55,15.0,fr,50907,28,2167321,1,1,Active Shallow Crust,0.0,89.99062,0.0,01/21/1412 +1.56622,44.92899,4323,1,24,13,49,57,3.55,15.0,fr,50908,86,2167684,1,1,Active Shallow Crust,240.012,57.99793,0.0,01/24/4323 +1.56622,44.92899,3540,8,2,1,27,55,3.65,5.0,fr,50909,70,2167692,1,1,Active Shallow Crust,0.0,89.99046,0.0,08/02/3540 +1.56622,44.92899,4692,9,8,3,36,56,3.65,15.0,fr,50910,93,2167693,1,1,Active Shallow Crust,0.0,89.99046,0.0,09/08/4692 +1.56622,44.92899,8560,3,24,19,58,10,3.75,5.0,fr,50911,171,2167707,1,1,Active Shallow Crust,240.0081,58.01751,0.0,03/24/8560 +1.56622,44.92899,2687,6,16,15,27,8,3.75,15.0,fr,50912,53,2167708,1,1,Active Shallow Crust,240.0081,58.01751,0.0,06/16/2687 +1.56622,44.92899,4117,3,6,14,1,21,3.95,5.0,fr,50913,82,2167728,1,1,Active Shallow Crust,0.0,89.98987,0.0,03/06/4117 +1.56622,44.92899,9055,6,21,18,1,12,3.95,15.0,fr,50914,181,2167732,1,1,Active Shallow Crust,240.0193,58.00508,0.0,06/21/9055 +1.56622,44.92899,6069,7,7,10,59,57,3.95,5.0,fr,50915,121,2167734,1,1,Active Shallow Crust,0.0,89.98975,-90.0,07/07/6069 +1.56622,44.92899,5862,5,22,1,0,10,4.15,15.0,fr,50916,117,2167753,1,1,Active Shallow Crust,0.0,89.99016,0.0,05/22/5862 +1.56622,44.92899,6729,3,15,8,35,22,4.65,15.0,fr,50917,134,2167813,1,1,Active Shallow Crust,0.0,89.98994,0.0,03/15/6729 +1.56622,44.92899,6700,8,9,5,39,39,5.15,5.0,fr,50918,133,2167872,1,1,Active Shallow Crust,0.0,89.9901,0.0,08/09/6700 +5.22235,42.66026,4863,5,18,15,18,11,3.65,5.0,fr,50919,97,2168172,1,1,Active Shallow Crust,0.0,89.98678,0.0,05/18/4863 +0.4673,44.30275,3699,1,12,8,52,38,3.55,5.0,fr,50920,73,2168646,1,1,Active Shallow Crust,0.0,89.98996,-90.0,01/12/3699 +0.4673,44.30275,237,12,6,18,44,28,3.95,15.0,fr,50921,4,2168695,1,1,Active Shallow Crust,0.0,89.98992,-90.0,12/06/0237 +0.4673,44.30275,1170,9,27,23,49,10,4.95,5.0,fr,50922,23,2168808,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/27/1170 +8.94837,49.09575,5994,3,12,20,38,25,3.55,15.0,fr,50923,119,2169121,1,1,Active Shallow Crust,0.0,89.98679,0.0,03/12/5994 +8.94837,49.09575,7142,2,7,0,45,22,4.05,5.0,fr,50924,142,2169180,1,1,Active Shallow Crust,0.0,89.99258,0.0,02/07/7142 +8.94837,49.09575,1342,3,15,9,51,53,4.35,5.0,fr,50925,26,2169216,1,1,Active Shallow Crust,0.0,89.98949,0.0,03/15/1342 +8.94837,49.09575,1000,7,1,14,34,58,4.85,5.0,fr,50926,19,2169276,1,1,Active Shallow Crust,0.0,89.99113,0.0,07/01/1000 +8.94837,49.09575,7048,12,15,20,43,37,5.45,5.0,fr,50927,140,2169348,1,1,Active Shallow Crust,0.0,89.98962,0.0,12/15/7048 +1.62009,41.45441,3798,11,14,17,5,39,3.55,5.0,fr,50928,75,2169600,1,2,Active Shallow Crust,0.0,89.99055,0.0,11/14/3798 +1.62009,41.45441,2779,12,25,18,27,40,3.55,5.0,fr,50929,55,2169600,1,2,Active Shallow Crust,0.0,89.99055,0.0,12/25/2779 +1.62009,41.45441,2574,10,13,5,32,58,3.55,5.0,fr,50930,51,2169606,1,1,Active Shallow Crust,0.0,89.99044,-90.0,10/13/2574 +1.62009,41.45441,344,8,24,9,27,49,3.65,5.0,fr,50931,6,2169612,1,1,Active Shallow Crust,0.0,89.9899,0.0,08/24/0344 +1.62009,41.45441,1772,2,21,16,11,22,3.75,15.0,fr,50932,35,2169625,1,1,Active Shallow Crust,0.0,89.98949,0.0,02/21/1772 +1.62009,41.45441,1667,7,14,17,2,28,3.75,5.0,fr,50933,33,2169633,1,1,Active Shallow Crust,128.8969,89.96741,0.0,07/14/1667 +1.62009,41.45441,9802,11,15,16,49,27,3.85,5.0,fr,50934,196,2169636,1,2,Active Shallow Crust,0.0,89.99064,0.0,11/15/9802 +1.62009,41.45441,9602,5,21,4,36,8,3.85,5.0,fr,50935,192,2169636,1,2,Active Shallow Crust,0.0,89.99064,0.0,05/21/9602 +1.62009,41.45441,3568,9,9,9,12,32,3.95,5.0,fr,50936,71,2169648,1,1,Active Shallow Crust,0.0,89.99046,0.0,09/09/3568 +1.62009,41.45441,4478,7,18,1,32,48,4.05,5.0,fr,50937,89,2169660,1,1,Active Shallow Crust,0.0,89.99044,0.0,07/18/4478 +1.62009,41.45441,1368,1,6,17,52,12,4.15,15.0,fr,50938,27,2169673,1,1,Active Shallow Crust,0.0,89.98959,0.0,01/06/1368 +1.62009,41.45441,1853,1,20,20,59,26,4.25,5.0,fr,50939,37,2169684,1,1,Active Shallow Crust,0.0,89.98987,0.0,01/20/1853 +3.42964,48.52705,6261,6,4,22,50,43,3.65,5.0,fr,50940,125,2170095,1,1,Active Shallow Crust,240.0016,58.01246,0.0,06/04/6261 +3.42964,48.52705,3642,9,8,19,53,38,3.95,5.0,fr,50941,72,2170134,1,1,Active Shallow Crust,0.0,89.98934,-90.0,09/08/3642 +3.42964,48.52705,2699,1,19,19,51,28,4.45,5.0,fr,50942,53,2170191,1,1,Active Shallow Crust,240.0058,57.99466,0.0,01/19/2699 +3.42964,48.52705,1151,3,11,9,15,33,4.85,15.0,fr,50943,23,2170240,1,1,Active Shallow Crust,240.018,58.00242,0.0,03/11/1151 +3.42964,48.52705,7947,5,8,16,45,29,4.95,5.0,fr,50944,158,2170248,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/08/7947 +-5.07481,46.76328,8717,4,10,16,47,10,3.95,5.0,fr,50945,174,2170617,1,1,Active Shallow Crust,128.9012,89.99346,0.0,04/10/8717 +3.5686,41.35326,252,1,29,17,14,4,3.55,5.0,fr,50946,5,2171040,1,2,Active Shallow Crust,0.0,89.98865,0.0,01/29/0252 +3.5686,41.35326,7052,10,5,19,38,41,3.55,5.0,fr,50947,141,2171040,1,2,Active Shallow Crust,0.0,89.98865,0.0,10/05/7052 +3.5686,41.35326,8761,4,2,2,7,9,3.65,5.0,fr,50948,175,2171052,1,1,Active Shallow Crust,0.0,89.98988,0.0,04/02/8761 +3.5686,41.35326,6527,4,12,23,11,55,3.85,5.0,fr,50949,130,2171085,1,1,Active Shallow Crust,128.8964,89.9933,0.0,04/12/6527 +3.5686,41.35326,6300,11,21,0,19,30,3.95,15.0,fr,50950,125,2171098,1,1,Active Shallow Crust,128.9007,89.99403,0.0,11/21/6300 +3.5686,41.35326,2285,12,20,21,2,49,4.15,5.0,fr,50951,45,2171112,1,2,Active Shallow Crust,0.0,89.99052,0.0,12/20/2285 +3.5686,41.35326,1140,10,25,21,8,38,4.15,5.0,fr,50952,22,2171112,1,2,Active Shallow Crust,0.0,89.99052,0.0,10/25/1140 +3.5686,41.35326,5528,4,6,7,9,33,4.25,5.0,fr,50953,110,2171133,1,1,Active Shallow Crust,128.895,89.98103,0.0,04/06/5528 +3.5686,41.35326,5078,3,11,20,6,11,5.55,15.0,fr,50954,101,2171281,1,1,Active Shallow Crust,0.0,89.99016,0.0,03/11/5078 +-0.68142,43.92563,1663,7,29,16,57,11,4.55,5.0,fr,50955,33,2171640,1,1,Active Shallow Crust,0.0,89.98995,0.0,07/29/1663 +1.32344,41.94102,3513,1,19,22,9,44,3.55,5.0,fr,50956,70,2172003,1,1,Active Shallow Crust,240.0122,57.99795,0.0,01/19/3513 +1.32344,41.94102,7324,2,18,2,44,39,3.85,5.0,fr,50957,146,2172036,1,1,Active Shallow Crust,0.0,89.98938,0.0,02/18/7324 +1.32344,41.94102,8883,1,30,2,21,45,3.95,5.0,fr,50958,177,2172048,1,2,Active Shallow Crust,0.0,89.99053,0.0,01/30/8883 +1.32344,41.94102,3359,4,7,17,2,7,3.95,5.0,fr,50959,67,2172048,1,2,Active Shallow Crust,0.0,89.99053,0.0,04/07/3359 +1.32344,41.94102,8961,5,17,16,42,7,4.45,27.5,fr,50960,179,2172116,1,1,Active Shallow Crust,0.0,89.98991,-90.0,05/17/8961 +1.32344,41.94102,4530,11,21,12,18,22,5.75,5.0,fr,50961,90,2172264,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/21/4530 +0.54023,49.91995,4960,10,21,19,23,13,3.55,27.5,fr,50962,99,2172485,1,1,Active Shallow Crust,240.0126,57.99815,0.0,10/21/4960 +0.54023,49.91995,7659,5,4,14,22,1,3.65,15.0,fr,50963,153,2172502,1,1,Active Shallow Crust,128.9002,89.96347,0.0,05/04/7659 +0.54023,49.91995,5686,2,3,17,23,18,3.75,5.0,fr,50964,113,2172510,1,1,Active Shallow Crust,0.0,89.99022,-90.0,02/03/5686 +0.54023,49.91995,9832,11,25,10,6,13,3.75,27.5,fr,50965,196,2172515,1,1,Active Shallow Crust,128.8963,89.96732,0.0,11/25/9832 +0.54023,49.91995,2381,3,30,9,1,41,3.85,5.0,fr,50966,47,2172516,1,1,Active Shallow Crust,0.0,89.99023,0.0,03/30/2381 +0.54023,49.91995,6078,4,4,8,3,29,3.95,5.0,fr,50967,121,2172528,1,1,Active Shallow Crust,0.0,89.98976,0.0,04/04/6078 +0.54023,49.91995,1870,10,14,18,38,6,6.15,27.5,fr,50968,37,2172794,1,1,Active Shallow Crust,0.0,89.98998,0.0,10/14/1870 +4.08081,45.67594,7847,6,9,7,6,45,3.65,27.5,fr,50969,156,2172974,1,1,Active Shallow Crust,0.0,89.98744,0.0,06/09/7847 +4.08081,45.67594,6901,6,23,15,35,20,3.65,15.0,fr,50970,138,2172982,1,1,Active Shallow Crust,128.9011,89.96351,0.0,06/23/6901 +4.08081,45.67594,2933,12,25,7,58,22,3.75,15.0,fr,50971,58,2172988,1,1,Active Shallow Crust,240.0077,58.01752,0.0,12/25/2933 +4.08081,45.67594,2087,2,18,16,54,20,3.95,15.0,fr,50972,41,2173009,1,1,Active Shallow Crust,0.0,89.99111,0.0,02/18/2087 +4.08081,45.67594,58,2,18,5,15,32,3.95,15.0,fr,50973,1,2173012,1,1,Active Shallow Crust,240.019,58.00545,0.0,02/18/0058 +4.08081,45.67594,5167,9,16,23,53,43,4.35,5.0,fr,50974,103,2173056,1,1,Active Shallow Crust,0.0,89.98878,0.0,09/16/5167 +4.08081,45.67594,402,12,28,14,39,14,4.35,5.0,fr,50975,8,2173059,1,1,Active Shallow Crust,240.0082,57.99626,0.0,12/28/0402 +4.08081,45.67594,279,2,12,2,25,3,4.65,15.0,fr,50976,5,2173096,1,1,Active Shallow Crust,240.0106,57.99417,0.0,02/12/0279 +4.08081,45.67594,9428,2,8,19,54,52,5.25,27.5,fr,50977,188,2173166,1,1,Active Shallow Crust,0.0,89.99004,0.0,02/08/9428 +5.14414,45.82483,450,3,30,0,34,16,3.55,5.0,fr,50978,8,2173440,1,2,Active Shallow Crust,0.0,89.99297,0.0,03/30/0450 +5.14414,45.82483,6384,9,28,4,1,8,3.55,5.0,fr,50979,127,2173440,1,2,Active Shallow Crust,0.0,89.99297,0.0,09/28/6384 +5.14414,45.82483,8889,6,9,17,23,42,3.55,5.0,fr,50980,177,2173443,1,1,Active Shallow Crust,240.0121,57.99781,0.0,06/09/8889 +5.14414,45.82483,3153,11,29,5,43,17,3.65,15.0,fr,50981,63,2173453,1,1,Active Shallow Crust,0.0,89.98747,0.0,11/29/3153 +5.14414,45.82483,2016,12,18,22,52,15,3.75,5.0,fr,50982,40,2173464,1,1,Active Shallow Crust,0.0,89.98884,0.0,12/18/2016 +5.14414,45.82483,8254,6,6,22,43,20,3.75,15.0,fr,50983,165,2173465,1,1,Active Shallow Crust,0.0,89.98884,0.0,06/06/8254 +5.14414,45.82483,3967,12,14,13,4,26,3.75,5.0,fr,50984,79,2173473,1,1,Active Shallow Crust,128.8964,89.96748,0.0,12/14/3967 +5.14414,45.82483,8121,10,6,21,16,0,3.85,5.0,fr,50985,162,2173479,1,1,Active Shallow Crust,240.0118,57.99687,0.0,10/06/8121 +5.14414,45.82483,8928,5,7,12,53,48,3.85,5.0,fr,50986,178,2173485,1,1,Active Shallow Crust,128.8949,89.99503,0.0,05/07/8928 +5.14414,45.82483,1692,7,5,5,33,47,3.95,5.0,fr,50987,33,2173488,1,2,Active Shallow Crust,0.0,89.99113,0.0,07/05/1692 +5.14414,45.82483,5708,11,3,0,31,48,3.95,5.0,fr,50988,114,2173488,1,2,Active Shallow Crust,0.0,89.99113,0.0,11/03/5708 +5.14414,45.82483,211,4,10,23,21,40,3.95,5.0,fr,50989,4,2173491,1,1,Active Shallow Crust,240.0194,58.00474,0.0,04/10/0211 +5.14414,45.82483,3994,10,30,18,54,36,4.15,5.0,fr,50990,79,2173512,1,2,Active Shallow Crust,0.0,89.98943,0.0,10/30/3994 +5.14414,45.82483,3355,10,16,14,40,6,4.15,5.0,fr,50991,67,2173512,1,2,Active Shallow Crust,0.0,89.98943,0.0,10/16/3355 +5.14414,45.82483,6,3,11,10,57,2,4.65,5.0,fr,50992,0,2173572,1,1,Active Shallow Crust,0.0,89.9901,0.0,03/11/0006 +5.14414,45.82483,8125,7,3,18,14,39,5.25,5.0,fr,50993,162,2173644,1,1,Active Shallow Crust,0.0,89.99007,0.0,07/03/8125 +1.79474,50.2355,8216,10,15,11,18,35,3.55,15.0,fr,50994,164,2174404,1,1,Active Shallow Crust,240.0123,57.99825,0.0,10/15/8216 +1.79474,50.2355,9621,1,12,0,13,42,3.65,5.0,fr,50995,192,2174412,1,1,Active Shallow Crust,0.0,89.98994,0.0,01/12/9621 +1.79474,50.2355,7651,6,22,15,1,54,3.85,5.0,fr,50996,153,2174436,1,1,Active Shallow Crust,0.0,89.98972,0.0,06/22/7651 +1.79474,50.2355,378,11,1,14,44,42,4.05,15.0,fr,50997,7,2174464,1,1,Active Shallow Crust,240.0065,58.00609,0.0,11/01/0378 +1.79474,50.2355,9552,11,13,18,16,44,4.05,5.0,fr,50998,191,2174469,1,1,Active Shallow Crust,128.89,89.99365,0.0,11/13/9552 +1.79474,50.2355,3398,11,16,3,17,55,4.15,5.0,fr,50999,67,2174472,1,1,Active Shallow Crust,0.0,89.9903,0.0,11/16/3398 +1.79474,50.2355,690,2,24,4,34,2,4.25,15.0,fr,51000,13,2174494,1,1,Active Shallow Crust,128.8935,89.98097,0.0,02/24/0690 +1.67187,46.54225,9663,2,7,15,6,47,3.55,5.0,fr,51001,193,2175360,1,1,Active Shallow Crust,0.0,89.98959,0.0,02/07/9663 +1.67187,46.54225,5209,11,7,17,47,46,3.55,15.0,fr,51002,104,2175361,1,1,Active Shallow Crust,0.0,89.98959,0.0,11/07/5209 +1.67187,46.54225,5071,8,6,11,13,2,3.65,5.0,fr,51003,101,2175372,1,3,Active Shallow Crust,0.0,89.99073,0.0,08/06/5071 +1.67187,46.54225,3675,3,3,5,59,18,3.65,5.0,fr,51004,73,2175372,1,3,Active Shallow Crust,0.0,89.99073,0.0,03/03/3675 +1.67187,46.54225,9239,9,30,0,25,53,3.65,5.0,fr,51005,184,2175372,1,3,Active Shallow Crust,0.0,89.99073,0.0,09/30/9239 +1.67187,46.54225,1121,4,12,9,11,45,3.65,15.0,fr,51006,22,2175373,1,1,Active Shallow Crust,0.0,89.99073,0.0,04/12/1121 +1.67187,46.54225,2246,6,9,10,56,13,3.65,15.0,fr,51007,44,2175376,1,1,Active Shallow Crust,240.0009,58.01307,0.0,06/09/2246 +1.67187,46.54225,7082,1,26,0,48,41,3.65,15.0,fr,51008,141,2175379,1,1,Active Shallow Crust,0.0,89.99062,-90.0,01/26/7082 +1.67187,46.54225,5162,11,11,15,38,36,3.65,5.0,fr,51009,103,2175381,1,1,Active Shallow Crust,128.9001,89.96352,0.0,11/11/5162 +1.67187,46.54225,4077,10,6,3,16,24,3.75,5.0,fr,51010,81,2175384,1,1,Active Shallow Crust,0.0,89.99036,0.0,10/06/4077 +1.67187,46.54225,4222,10,12,8,13,42,3.75,15.0,fr,51011,84,2175385,1,2,Active Shallow Crust,0.0,89.99036,0.0,10/12/4222 +1.67187,46.54225,4400,3,16,18,3,35,3.75,15.0,fr,51012,87,2175385,1,2,Active Shallow Crust,0.0,89.99036,0.0,03/16/4400 +1.67187,46.54225,4179,4,22,19,12,12,3.85,5.0,fr,51013,83,2175399,1,1,Active Shallow Crust,240.0109,57.99784,0.0,04/22/4179 +1.67187,46.54225,3795,5,22,21,29,19,3.85,5.0,fr,51014,75,2175405,1,1,Active Shallow Crust,128.8959,89.99325,0.0,05/22/3795 +1.67187,46.54225,6589,1,22,10,53,3,3.95,5.0,fr,51015,131,2175417,1,1,Active Shallow Crust,128.9002,89.99398,0.0,01/22/6589 +1.67187,46.54225,3258,4,6,11,54,17,4.25,5.0,fr,51016,65,2175444,1,1,Active Shallow Crust,0.0,89.98993,0.0,04/06/3258 +1.67187,46.54225,3233,5,12,4,54,56,4.35,5.0,fr,51017,64,2175459,1,1,Active Shallow Crust,240.0084,57.99595,0.0,05/12/3233 +1.67187,46.54225,6714,4,4,13,16,35,4.45,27.5,fr,51018,134,2175470,1,1,Active Shallow Crust,0.0,89.99016,0.0,04/04/6714 +1.67187,46.54225,461,10,18,15,42,58,4.65,5.0,fr,51019,9,2175495,1,1,Active Shallow Crust,240.0108,57.99427,0.0,10/18/0461 +1.67187,46.54225,1783,10,17,11,45,42,4.95,15.0,fr,51020,35,2175529,1,1,Active Shallow Crust,0.0,89.98997,0.0,10/17/1783 +1.67187,46.54225,8861,7,8,6,32,15,5.15,5.0,fr,51021,177,2175552,1,1,Active Shallow Crust,0.0,89.9901,0.0,07/08/8861 +1.67187,46.54225,7094,8,13,19,18,44,5.45,5.0,fr,51022,141,2175588,1,1,Active Shallow Crust,0.0,89.99007,0.0,08/13/7094 +1.02638,50.72537,5966,12,5,20,6,16,3.55,5.0,fr,51023,119,2175840,1,1,Active Shallow Crust,0.0,89.99043,0.0,12/05/5966 +1.02638,50.72537,3680,8,3,22,4,11,3.55,15.0,fr,51024,73,2175841,1,1,Active Shallow Crust,0.0,89.99043,0.0,08/03/3680 +1.02638,50.72537,841,3,25,21,54,27,3.65,27.5,fr,51025,16,2175860,1,1,Active Shallow Crust,0.0,89.98993,-90.0,03/25/0841 +1.02638,50.72537,1028,5,19,13,10,37,3.75,27.5,fr,51026,20,2175866,1,1,Active Shallow Crust,0.0,89.98986,0.0,05/19/1028 +1.02638,50.72537,2034,10,5,17,49,56,3.85,5.0,fr,51027,40,2175876,1,1,Active Shallow Crust,0.0,89.98983,0.0,10/05/2034 +1.02638,50.72537,4994,8,18,6,53,38,3.85,5.0,fr,51028,99,2175879,1,1,Active Shallow Crust,240.0113,57.99796,0.0,08/18/4994 +1.02638,50.72537,89,7,6,4,23,56,3.85,5.0,fr,51029,1,2175885,1,1,Active Shallow Crust,128.8951,89.99379,0.0,07/06/0089 +1.02638,50.72537,1012,9,9,5,11,18,3.95,5.0,fr,51030,20,2175894,1,1,Active Shallow Crust,0.0,89.98981,-90.0,09/09/1012 +1.59324,42.11983,4350,10,17,9,4,21,3.55,15.0,fr,51031,86,2176321,1,1,Active Shallow Crust,0.0,89.99065,0.0,10/17/4350 +1.59324,42.11983,3563,7,11,19,48,15,3.65,5.0,fr,51032,71,2176332,1,1,Active Shallow Crust,0.0,89.99,0.0,07/11/3563 +1.59324,42.11983,821,2,15,1,39,55,3.75,15.0,fr,51033,16,2176345,1,1,Active Shallow Crust,0.0,89.9896,0.0,02/15/0821 +1.59324,42.11983,291,4,19,0,49,34,3.95,5.0,fr,51034,5,2176368,1,1,Active Shallow Crust,0.0,89.99056,0.0,04/19/0291 +1.59324,42.11983,8606,12,16,16,2,20,4.05,5.0,fr,51035,172,2176383,1,1,Active Shallow Crust,240.0052,58.00579,0.0,12/16/8606 +1.59324,42.11983,9001,12,26,8,13,28,4.15,27.5,fr,51036,180,2176394,1,1,Active Shallow Crust,0.0,89.98969,0.0,12/26/9001 +1.59324,42.11983,339,8,1,12,29,11,4.35,5.0,fr,51037,6,2176416,1,1,Active Shallow Crust,0.0,89.99032,0.0,08/01/0339 +1.59324,42.11983,4707,9,15,8,55,58,4.55,5.0,fr,51038,94,2176443,1,1,Active Shallow Crust,240.008,57.99714,0.0,09/15/4707 +1.59324,42.11983,256,7,21,11,57,20,5.05,15.0,fr,51039,5,2176507,1,1,Active Shallow Crust,0.0,89.98991,-90.0,07/21/0256 +5.95579,45.53953,3615,5,5,13,30,12,3.55,5.0,fr,51040,72,2176800,1,5,Active Shallow Crust,0.0,89.99294,0.0,05/05/3615 +5.95579,45.53953,4446,1,20,14,49,7,3.55,5.0,fr,51041,88,2176800,1,5,Active Shallow Crust,0.0,89.99294,0.0,01/20/4446 +5.95579,45.53953,5514,9,5,7,36,21,3.55,5.0,fr,51042,110,2176800,1,5,Active Shallow Crust,0.0,89.99294,0.0,09/05/5514 +5.95579,45.53953,3097,12,16,11,23,26,3.55,5.0,fr,51043,61,2176800,1,5,Active Shallow Crust,0.0,89.99294,0.0,12/16/3097 +5.95579,45.53953,8069,6,8,11,17,36,3.55,5.0,fr,51044,161,2176800,1,5,Active Shallow Crust,0.0,89.99294,0.0,06/08/8069 +5.95579,45.53953,2118,2,24,0,36,51,3.55,15.0,fr,51045,42,2176801,1,4,Active Shallow Crust,0.0,89.99294,0.0,02/24/2118 +5.95579,45.53953,2852,11,6,13,24,28,3.55,15.0,fr,51046,57,2176801,1,4,Active Shallow Crust,0.0,89.99294,0.0,11/06/2852 +5.95579,45.53953,3122,10,12,17,57,48,3.55,15.0,fr,51047,62,2176801,1,4,Active Shallow Crust,0.0,89.99294,0.0,10/12/3122 +5.95579,45.53953,3560,10,4,3,15,42,3.55,15.0,fr,51048,71,2176801,1,4,Active Shallow Crust,0.0,89.99294,0.0,10/04/3560 +5.95579,45.53953,9974,2,16,7,24,31,3.55,5.0,fr,51049,199,2176803,1,1,Active Shallow Crust,240.0118,57.99784,0.0,02/16/9974 +5.95579,45.53953,3663,10,11,7,43,27,3.55,15.0,fr,51050,73,2176804,1,1,Active Shallow Crust,240.0118,57.99784,0.0,10/11/3663 +5.95579,45.53953,3528,1,13,3,56,49,3.65,5.0,fr,51051,70,2176812,1,4,Active Shallow Crust,0.0,89.98741,0.0,01/13/3528 +5.95579,45.53953,7743,12,20,7,44,26,3.65,5.0,fr,51052,154,2176812,1,4,Active Shallow Crust,0.0,89.98741,0.0,12/20/7743 +5.95579,45.53953,1988,4,15,1,58,19,3.65,5.0,fr,51053,39,2176812,1,4,Active Shallow Crust,0.0,89.98741,0.0,04/15/1988 +5.95579,45.53953,7144,10,21,16,9,22,3.65,5.0,fr,51054,142,2176812,1,4,Active Shallow Crust,0.0,89.98741,0.0,10/21/7144 +5.95579,45.53953,1438,11,5,11,37,8,3.65,15.0,fr,51055,28,2176813,1,1,Active Shallow Crust,0.0,89.98741,0.0,11/05/1438 +5.95579,45.53953,8623,2,13,19,43,2,3.65,5.0,fr,51056,172,2176815,1,2,Active Shallow Crust,240.0015,58.01195,0.0,02/13/8623 +5.95579,45.53953,9955,10,2,12,34,23,3.65,5.0,fr,51057,199,2176815,1,2,Active Shallow Crust,240.0015,58.01195,0.0,10/02/9955 +5.95579,45.53953,6032,11,12,8,17,0,3.75,5.0,fr,51058,120,2176830,1,1,Active Shallow Crust,0.0,89.98865,-90.0,11/12/6032 +5.95579,45.53953,3393,9,6,18,24,38,3.85,15.0,fr,51059,67,2176837,1,1,Active Shallow Crust,0.0,89.99,0.0,09/06/3393 +5.95579,45.53953,1175,2,23,14,52,32,3.85,5.0,fr,51060,23,2176845,1,1,Active Shallow Crust,128.8962,89.9925,0.0,02/23/1175 +5.95579,45.53953,6853,11,3,23,28,27,3.95,5.0,fr,51061,137,2176848,1,2,Active Shallow Crust,0.0,89.99109,0.0,11/03/6853 +5.95579,45.53953,5671,9,10,18,34,11,3.95,5.0,fr,51062,113,2176848,1,2,Active Shallow Crust,0.0,89.99109,0.0,09/10/5671 +5.95579,45.53953,1446,1,20,20,11,1,3.95,5.0,fr,51063,28,2176854,1,1,Active Shallow Crust,0.0,89.99098,-90.0,01/20/1446 +5.95579,45.53953,6953,7,25,13,6,48,4.05,5.0,fr,51064,139,2176860,1,1,Active Shallow Crust,0.0,89.98808,0.0,07/25/6953 +5.95579,45.53953,320,6,4,21,51,21,4.05,15.0,fr,51065,6,2176861,1,2,Active Shallow Crust,0.0,89.98808,0.0,06/04/0320 +5.95579,45.53953,6396,6,10,4,23,38,4.05,15.0,fr,51066,127,2176861,1,2,Active Shallow Crust,0.0,89.98808,0.0,06/10/6396 +5.95579,45.53953,6954,2,27,6,36,14,4.05,5.0,fr,51067,139,2176863,1,1,Active Shallow Crust,240.0062,58.00595,0.0,02/27/6954 +5.95579,45.53953,2668,1,7,11,24,16,4.05,5.0,fr,51068,53,2176866,1,1,Active Shallow Crust,0.0,89.99197,-90.0,01/07/2668 +5.95579,45.53953,8073,10,18,19,18,55,4.15,5.0,fr,51069,161,2176872,1,1,Active Shallow Crust,0.0,89.98938,0.0,10/18/8073 +5.95579,45.53953,5036,8,21,19,34,7,4.15,15.0,fr,51070,100,2176882,1,1,Active Shallow Crust,128.8981,89.99292,0.0,08/21/5036 +5.95579,45.53953,7534,8,22,3,45,48,4.25,5.0,fr,51071,150,2176884,1,2,Active Shallow Crust,0.0,89.99053,0.0,08/22/7534 +5.95579,45.53953,6621,2,14,0,31,28,4.25,5.0,fr,51072,132,2176884,1,2,Active Shallow Crust,0.0,89.99053,0.0,02/14/6621 +5.95579,45.53953,4659,4,18,6,44,29,4.25,15.0,fr,51073,93,2176885,1,1,Active Shallow Crust,0.0,89.99053,0.0,04/18/4659 +5.95579,45.53953,1472,4,1,2,52,33,4.35,15.0,fr,51074,29,2176897,1,1,Active Shallow Crust,0.0,89.98875,0.0,04/01/1472 +5.95579,45.53953,9332,2,25,9,56,45,4.35,5.0,fr,51075,186,2176905,1,1,Active Shallow Crust,128.8979,89.98299,0.0,02/25/9332 +5.95579,45.53953,402,11,23,11,53,28,4.55,15.0,fr,51076,8,2176921,1,1,Active Shallow Crust,0.0,89.99107,0.0,11/23/0402 +5.95579,45.53953,6733,9,24,7,50,20,4.85,15.0,fr,51077,134,2176957,1,1,Active Shallow Crust,0.0,89.99051,0.0,09/24/6733 +5.95579,45.53953,6034,12,21,14,10,6,5.15,15.0,fr,51078,120,2176993,1,1,Active Shallow Crust,0.0,89.98992,0.0,12/21/6034 +5.95579,45.53953,3988,4,21,8,51,49,5.75,5.0,fr,51079,79,2177064,1,1,Active Shallow Crust,0.0,89.9899,0.0,04/21/3988 +4.02322,43.5628,6184,4,17,5,19,3,3.55,27.5,fr,51080,123,2177285,1,1,Active Shallow Crust,240.0122,57.99838,0.0,04/17/6184 +4.02322,43.5628,6012,4,30,15,56,19,3.65,5.0,fr,51081,120,2177298,1,1,Active Shallow Crust,0.0,89.98682,-90.0,04/30/6012 +4.02322,43.5628,1583,5,3,6,55,59,3.75,15.0,fr,51082,31,2177305,1,1,Active Shallow Crust,0.0,89.98839,0.0,05/03/1583 +4.02322,43.5628,863,10,15,14,6,2,3.75,15.0,fr,51083,17,2177314,1,1,Active Shallow Crust,128.8962,89.96744,0.0,10/15/0863 +4.02322,43.5628,6715,12,14,6,14,24,3.85,5.0,fr,51084,134,2177325,1,1,Active Shallow Crust,128.8968,89.99224,0.0,12/14/6715 +4.02322,43.5628,1756,12,7,7,18,17,3.95,15.0,fr,51085,35,2177335,1,1,Active Shallow Crust,0.0,89.99067,-90.0,12/07/1756 +4.02322,43.5628,8418,8,30,13,48,47,4.05,5.0,fr,51086,168,2177340,1,1,Active Shallow Crust,0.0,89.99178,0.0,08/30/8418 +1.21216,45.70996,3042,4,10,15,25,52,3.55,5.0,fr,51087,60,2178240,1,2,Active Shallow Crust,0.0,89.98944,0.0,04/10/3042 +1.21216,45.70996,8460,3,25,15,19,55,3.55,5.0,fr,51088,169,2178240,1,2,Active Shallow Crust,0.0,89.98944,0.0,03/25/8460 +1.21216,45.70996,2745,11,29,0,34,39,3.65,5.0,fr,51089,54,2178252,1,2,Active Shallow Crust,0.0,89.99059,0.0,11/29/2745 +1.21216,45.70996,259,1,29,4,23,1,3.65,5.0,fr,51090,5,2178252,1,2,Active Shallow Crust,0.0,89.99059,0.0,01/29/0259 +1.21216,45.70996,6517,2,8,1,27,20,3.75,5.0,fr,51091,130,2178270,1,1,Active Shallow Crust,0.0,89.9901,-90.0,02/08/6517 +1.21216,45.70996,6515,4,11,11,52,42,3.95,15.0,fr,51092,130,2178289,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/11/6515 +1.21216,45.70996,2788,9,28,19,17,42,4.05,27.5,fr,51093,55,2178302,1,1,Active Shallow Crust,0.0,89.9901,0.0,09/28/2788 +1.21216,45.70996,3520,1,5,9,46,59,4.15,5.0,fr,51094,70,2178315,1,1,Active Shallow Crust,240.0083,57.99723,0.0,01/05/3520 +1.21216,45.70996,7401,6,3,1,55,40,4.35,5.0,fr,51095,148,2178342,1,1,Active Shallow Crust,0.0,89.99007,-90.0,06/03/7401 +1.21216,45.70996,4286,6,25,13,28,8,4.55,15.0,fr,51096,85,2178361,1,1,Active Shallow Crust,0.0,89.98997,0.0,06/25/4286 +1.21216,45.70996,6156,10,20,9,11,43,4.65,5.0,fr,51097,123,2178372,1,1,Active Shallow Crust,0.0,89.99007,0.0,10/20/6156 +1.21216,45.70996,1668,3,9,6,21,2,4.95,27.5,fr,51098,33,2178410,1,1,Active Shallow Crust,0.0,89.99017,0.0,03/09/1668 +1.21216,45.70996,8612,10,19,20,18,54,5.45,27.5,fr,51099,172,2178470,1,1,Active Shallow Crust,0.0,89.98992,0.0,10/19/8612 +2.1383,42.47611,2237,9,7,23,29,21,3.55,5.0,fr,51100,44,2178720,1,4,Active Shallow Crust,0.0,89.98885,0.0,09/07/2237 +2.1383,42.47611,1251,10,1,22,28,10,3.55,5.0,fr,51101,25,2178720,1,4,Active Shallow Crust,0.0,89.98885,0.0,10/01/1251 +2.1383,42.47611,6524,3,10,14,47,10,3.55,5.0,fr,51102,130,2178720,1,4,Active Shallow Crust,0.0,89.98885,0.0,03/10/6524 +2.1383,42.47611,4510,1,27,4,2,30,3.55,5.0,fr,51103,90,2178720,1,4,Active Shallow Crust,0.0,89.98885,0.0,01/27/4510 +2.1383,42.47611,2620,2,12,23,31,4,3.55,15.0,fr,51104,52,2178721,1,1,Active Shallow Crust,0.0,89.98885,0.0,02/12/2620 +2.1383,42.47611,8981,4,15,6,12,49,3.55,5.0,fr,51105,179,2178729,1,1,Active Shallow Crust,128.8959,89.99442,0.0,04/15/8981 +2.1383,42.47611,330,4,21,13,55,10,3.65,5.0,fr,51106,6,2178732,1,1,Active Shallow Crust,0.0,89.99006,0.0,04/21/0330 +2.1383,42.47611,9006,2,25,4,50,23,3.65,15.0,fr,51107,180,2178733,1,3,Active Shallow Crust,0.0,89.99006,0.0,02/25/9006 +2.1383,42.47611,8310,10,27,12,8,17,3.65,15.0,fr,51108,166,2178733,1,3,Active Shallow Crust,0.0,89.99006,0.0,10/27/8310 +2.1383,42.47611,3848,6,25,1,22,9,3.65,15.0,fr,51109,76,2178733,1,3,Active Shallow Crust,0.0,89.99006,0.0,06/25/3848 +2.1383,42.47611,1786,6,22,2,14,9,3.75,5.0,fr,51110,35,2178744,1,4,Active Shallow Crust,0.0,89.99113,0.0,06/22/1786 +2.1383,42.47611,5688,3,11,15,18,25,3.75,5.0,fr,51111,113,2178744,1,4,Active Shallow Crust,0.0,89.99113,0.0,03/11/5688 +2.1383,42.47611,8197,1,6,19,47,8,3.75,5.0,fr,51112,163,2178744,1,4,Active Shallow Crust,0.0,89.99113,0.0,01/06/8197 +2.1383,42.47611,7833,10,3,9,41,15,3.75,5.0,fr,51113,156,2178744,1,4,Active Shallow Crust,0.0,89.99113,0.0,10/03/7833 +2.1383,42.47611,3673,9,30,7,46,16,3.75,5.0,fr,51114,73,2178750,1,1,Active Shallow Crust,0.0,89.99104,-90.0,09/30/3673 +2.1383,42.47611,2422,4,28,5,54,11,3.75,27.5,fr,51115,48,2178752,1,1,Active Shallow Crust,0.0,89.99104,-90.0,04/28/2422 +2.1383,42.47611,6097,9,9,9,6,37,3.85,5.0,fr,51116,121,2178756,1,1,Active Shallow Crust,0.0,89.98947,0.0,09/09/6097 +2.1383,42.47611,8140,5,17,0,43,48,3.85,5.0,fr,51117,162,2178759,1,1,Active Shallow Crust,240.01,57.99811,0.0,05/17/8140 +2.1383,42.47611,350,7,23,13,47,32,3.85,27.5,fr,51118,6,2178761,1,1,Active Shallow Crust,240.01,57.99811,0.0,07/23/0350 +2.1383,42.47611,3360,3,19,18,24,24,3.95,15.0,fr,51119,67,2178769,1,1,Active Shallow Crust,0.0,89.99062,0.0,03/19/3360 +2.1383,42.47611,1728,3,2,16,15,58,3.95,5.0,fr,51120,34,2178771,1,1,Active Shallow Crust,240.0192,58.00478,0.0,03/02/1728 +2.1383,42.47611,7771,8,21,21,37,4,3.95,15.0,fr,51121,155,2178772,1,1,Active Shallow Crust,240.0192,58.00478,0.0,08/21/7771 +2.1383,42.47611,4845,1,5,13,52,36,4.05,15.0,fr,51122,96,2178781,1,2,Active Shallow Crust,0.0,89.98954,0.0,01/05/4845 +2.1383,42.47611,3482,8,18,3,20,38,4.05,15.0,fr,51123,69,2178781,1,2,Active Shallow Crust,0.0,89.98954,0.0,08/18/3482 +2.1383,42.47611,2251,8,12,11,13,29,4.15,5.0,fr,51124,45,2178801,1,1,Active Shallow Crust,128.8977,89.99441,0.0,08/12/2251 +2.1383,42.47611,8196,3,24,17,19,25,4.25,15.0,fr,51125,163,2178805,1,1,Active Shallow Crust,0.0,89.99004,0.0,03/24/8196 +2.1383,42.47611,7781,1,15,22,53,46,4.35,15.0,fr,51126,155,2178817,1,1,Active Shallow Crust,0.0,89.98964,0.0,01/15/7781 +2.1383,42.47611,2271,9,14,15,51,46,4.35,15.0,fr,51127,45,2178823,1,1,Active Shallow Crust,0.0,89.98952,-90.0,09/14/2271 +2.1383,42.47611,9319,4,2,10,8,40,4.45,5.0,fr,51128,186,2178828,1,4,Active Shallow Crust,0.0,89.98944,0.0,04/02/9319 +2.1383,42.47611,2851,7,24,18,48,10,4.45,5.0,fr,51129,57,2178828,1,4,Active Shallow Crust,0.0,89.98944,0.0,07/24/2851 +2.1383,42.47611,2685,9,22,9,25,9,4.45,5.0,fr,51130,53,2178828,1,4,Active Shallow Crust,0.0,89.98944,0.0,09/22/2685 +2.1383,42.47611,2644,3,10,10,47,50,4.45,5.0,fr,51131,52,2178828,1,4,Active Shallow Crust,0.0,89.98944,0.0,03/10/2644 +2.1383,42.47611,7091,5,20,16,0,14,4.45,5.0,fr,51132,141,2178831,1,1,Active Shallow Crust,240.0043,57.9946,0.0,05/20/7091 +2.1383,42.47611,7388,10,3,5,20,31,4.55,5.0,fr,51133,147,2178843,1,1,Active Shallow Crust,240.0082,57.9973,0.0,10/03/7388 +2.1383,42.47611,8456,11,30,10,5,21,4.65,5.0,fr,51134,169,2178852,1,1,Active Shallow Crust,0.0,89.98952,0.0,11/30/8456 +2.1383,42.47611,2128,3,9,0,29,48,4.65,5.0,fr,51135,42,2178855,1,1,Active Shallow Crust,240.0094,57.99405,0.0,03/09/2128 +2.1383,42.47611,9067,5,15,12,9,14,4.75,15.0,fr,51136,181,2178874,1,1,Active Shallow Crust,128.8901,89.98795,0.0,05/15/9067 +0.49815,42.12543,2847,11,30,15,27,9,3.55,15.0,fr,51137,56,2179201,1,1,Active Shallow Crust,0.0,89.99018,0.0,11/30/2847 +0.49815,42.12543,7365,2,22,10,18,25,3.65,15.0,fr,51138,147,2179219,1,1,Active Shallow Crust,0.0,89.98988,-90.0,02/22/7365 +0.49815,42.12543,8995,4,21,21,54,51,3.75,5.0,fr,51139,179,2179224,1,1,Active Shallow Crust,0.0,89.98997,0.0,04/21/8995 +0.49815,42.12543,5579,12,30,3,40,30,4.05,5.0,fr,51140,111,2179260,1,1,Active Shallow Crust,0.0,89.99001,0.0,12/30/5579 +0.49815,42.12543,7464,2,29,2,58,28,4.35,5.0,fr,51141,149,2179302,1,1,Active Shallow Crust,0.0,89.99002,-90.0,02/29/7464 +0.49815,42.12543,7045,3,29,15,21,50,4.45,5.0,fr,51142,140,2179308,1,1,Active Shallow Crust,0.0,89.99005,0.0,03/29/7045 +0.49815,42.12543,5352,5,26,4,22,4,4.45,5.0,fr,51143,107,2179311,1,1,Active Shallow Crust,240.0042,57.99445,0.0,05/26/5352 +1.20051,42.0568,4907,9,3,21,17,57,3.55,5.0,fr,51144,98,2179680,1,1,Active Shallow Crust,0.0,89.99064,0.0,09/03/4907 +1.20051,42.0568,619,3,19,2,51,9,3.65,5.0,fr,51145,12,2179692,1,1,Active Shallow Crust,0.0,89.98999,0.0,03/19/0619 +1.20051,42.0568,8522,10,6,1,47,17,3.65,15.0,fr,51146,170,2179693,1,1,Active Shallow Crust,0.0,89.98999,0.0,10/06/8522 +1.20051,42.0568,7143,6,26,17,27,18,3.65,5.0,fr,51147,142,2179701,1,1,Active Shallow Crust,128.9012,89.96344,0.0,06/26/7143 +1.20051,42.0568,2330,4,20,15,31,57,3.85,5.0,fr,51148,46,2179716,1,1,Active Shallow Crust,0.0,89.9894,0.0,04/20/2330 +1.20051,42.0568,6969,4,4,3,56,57,3.85,15.0,fr,51149,139,2179717,1,2,Active Shallow Crust,0.0,89.9894,0.0,04/04/6969 +1.20051,42.0568,5100,11,11,18,36,39,3.85,15.0,fr,51150,101,2179717,1,2,Active Shallow Crust,0.0,89.9894,0.0,11/11/5100 +1.20051,42.0568,5092,10,8,9,21,28,3.85,5.0,fr,51151,101,2179722,1,1,Active Shallow Crust,0.0,89.99062,-90.0,10/08/5092 +1.20051,42.0568,3755,10,18,6,16,59,3.95,27.5,fr,51152,75,2179730,1,1,Active Shallow Crust,0.0,89.99055,0.0,10/18/3755 +1.20051,42.0568,2523,5,22,20,54,16,4.05,15.0,fr,51153,50,2179741,1,1,Active Shallow Crust,0.0,89.98947,0.0,05/22/2523 +1.20051,42.0568,3514,11,13,5,54,19,4.25,5.0,fr,51154,70,2179764,1,1,Active Shallow Crust,0.0,89.98997,0.0,11/13/3514 +1.20051,42.0568,8188,7,15,7,56,10,4.35,15.0,fr,51155,163,2179777,1,1,Active Shallow Crust,0.0,89.99031,0.0,07/15/8188 +1.20051,42.0568,6984,11,16,11,31,48,4.45,5.0,fr,51156,139,2179788,1,1,Active Shallow Crust,0.0,89.99004,0.0,11/16/6984 +1.20051,42.0568,6375,4,25,6,15,51,4.45,15.0,fr,51157,127,2179798,1,1,Active Shallow Crust,128.8932,89.99369,0.0,04/25/6375 +-0.97437,42.93484,5360,8,3,10,42,22,3.55,5.0,fr,51158,107,2180160,1,3,Active Shallow Crust,0.0,89.98985,0.0,08/03/5360 +-0.97437,42.93484,4267,12,5,4,50,32,3.55,5.0,fr,51159,85,2180160,1,3,Active Shallow Crust,0.0,89.98985,0.0,12/05/4267 +-0.97437,42.93484,4808,9,27,14,39,29,3.55,5.0,fr,51160,96,2180160,1,3,Active Shallow Crust,0.0,89.98985,0.0,09/27/4808 +-0.97437,42.93484,7081,9,7,14,59,56,3.55,5.0,fr,51161,141,2180163,1,1,Active Shallow Crust,240.0117,57.99809,0.0,09/07/7081 +-0.97437,42.93484,5591,9,1,1,23,12,3.55,27.5,fr,51162,111,2180165,1,1,Active Shallow Crust,240.0117,57.99799,0.0,09/01/5591 +-0.97437,42.93484,4373,2,8,3,3,14,3.55,5.0,fr,51163,87,2180166,1,1,Active Shallow Crust,0.0,89.98973,-90.0,02/08/4373 +-0.97437,42.93484,7145,3,6,1,28,8,3.65,5.0,fr,51164,142,2180172,1,1,Active Shallow Crust,0.0,89.99013,0.0,03/06/7145 +-0.97437,42.93484,735,5,4,20,57,27,3.65,15.0,fr,51165,14,2180173,1,1,Active Shallow Crust,0.0,89.99013,0.0,05/04/0735 +-0.97437,42.93484,9858,12,11,2,34,17,3.65,27.5,fr,51166,197,2180174,1,1,Active Shallow Crust,0.0,89.99013,0.0,12/11/9858 +-0.97437,42.93484,6856,1,6,9,25,31,3.75,5.0,fr,51167,137,2180184,1,4,Active Shallow Crust,0.0,89.98974,0.0,01/06/6856 +-0.97437,42.93484,3544,4,18,1,56,20,3.75,5.0,fr,51168,70,2180184,1,4,Active Shallow Crust,0.0,89.98974,0.0,04/18/3544 +-0.97437,42.93484,53,11,20,15,31,50,3.75,5.0,fr,51169,1,2180184,1,4,Active Shallow Crust,0.0,89.98974,0.0,11/20/0053 +-0.97437,42.93484,4663,5,24,23,53,57,3.75,5.0,fr,51170,93,2180184,1,4,Active Shallow Crust,0.0,89.98974,0.0,05/24/4663 +-0.97437,42.93484,8616,9,20,7,13,57,3.75,27.5,fr,51171,172,2180186,1,1,Active Shallow Crust,0.0,89.98974,0.0,09/20/8616 +-0.97437,42.93484,835,8,21,4,21,33,3.85,5.0,fr,51172,16,2180196,1,3,Active Shallow Crust,0.0,89.9902,0.0,08/21/0835 +-0.97437,42.93484,8713,1,2,4,56,28,3.85,5.0,fr,51173,174,2180196,1,3,Active Shallow Crust,0.0,89.9902,0.0,01/02/8713 +-0.97437,42.93484,5983,12,30,20,3,3,3.85,5.0,fr,51174,119,2180196,1,3,Active Shallow Crust,0.0,89.9902,0.0,12/30/5983 +-0.97437,42.93484,1446,3,19,19,51,34,3.85,27.5,fr,51175,28,2180198,1,1,Active Shallow Crust,0.0,89.9902,0.0,03/19/1446 +-0.97437,42.93484,3680,3,31,9,36,16,3.85,5.0,fr,51176,73,2180199,1,1,Active Shallow Crust,240.0104,57.99771,0.0,03/31/3680 +-0.97437,42.93484,6848,11,19,2,46,12,3.85,15.0,fr,51177,136,2180203,1,1,Active Shallow Crust,0.0,89.99009,-90.0,11/19/6848 +-0.97437,42.93484,3128,6,18,15,49,12,3.95,5.0,fr,51178,62,2180208,1,3,Active Shallow Crust,0.0,89.9901,0.0,06/18/3128 +-0.97437,42.93484,5982,4,28,10,50,42,3.95,5.0,fr,51179,119,2180208,1,3,Active Shallow Crust,0.0,89.9901,0.0,04/28/5982 +-0.97437,42.93484,8890,4,24,22,21,43,3.95,5.0,fr,51180,177,2180208,1,3,Active Shallow Crust,0.0,89.9901,0.0,04/24/8890 +-0.97437,42.93484,1696,1,11,16,52,48,3.95,15.0,fr,51181,33,2180209,1,1,Active Shallow Crust,0.0,89.9901,0.0,01/11/1696 +-0.97437,42.93484,5503,12,3,12,54,20,3.95,5.0,fr,51182,110,2180217,1,1,Active Shallow Crust,128.9008,89.99389,0.0,12/03/5503 +-0.97437,42.93484,7504,10,11,0,40,7,4.05,5.0,fr,51183,150,2180220,1,1,Active Shallow Crust,0.0,89.99014,0.0,10/11/7504 +-0.97437,42.93484,9837,12,1,23,55,7,4.15,15.0,fr,51184,196,2180233,1,1,Active Shallow Crust,0.0,89.98982,0.0,12/01/9837 +-0.97437,42.93484,9841,11,2,3,22,17,4.15,5.0,fr,51185,196,2180235,1,1,Active Shallow Crust,240.0079,57.99721,0.0,11/02/9841 +-0.97437,42.93484,8010,4,24,5,35,15,4.15,5.0,fr,51186,160,2180238,1,1,Active Shallow Crust,0.0,89.99017,-90.0,04/24/8010 +-0.97437,42.93484,6479,1,1,19,21,52,4.45,15.0,fr,51187,129,2180269,1,1,Active Shallow Crust,0.0,89.98985,0.0,01/01/6479 +-0.97437,42.93484,4553,5,1,20,32,57,4.65,15.0,fr,51188,91,2180293,1,1,Active Shallow Crust,0.0,89.99011,0.0,05/01/4553 +3.93371,41.0,7455,3,13,2,56,27,3.55,5.0,fr,51189,149,2180640,1,1,Active Shallow Crust,0.0,89.98859,0.0,03/13/7455 +3.93371,41.0,3053,10,27,12,24,17,3.55,15.0,fr,51190,61,2180641,1,1,Active Shallow Crust,0.0,89.98859,0.0,10/27/3053 +3.93371,41.0,3669,5,1,18,4,22,3.65,5.0,fr,51191,73,2180652,1,1,Active Shallow Crust,0.0,89.98982,0.0,05/01/3669 +3.93371,41.0,3331,3,10,0,53,16,3.65,27.5,fr,51192,66,2180654,1,1,Active Shallow Crust,0.0,89.98982,0.0,03/10/3331 +3.93371,41.0,3947,5,29,22,39,18,3.75,5.0,fr,51193,78,2180673,1,1,Active Shallow Crust,128.8971,89.96708,0.0,05/29/3947 +3.93371,41.0,2756,4,13,12,38,29,4.25,5.0,fr,51194,55,2180724,1,1,Active Shallow Crust,0.0,89.9898,0.0,04/13/2756 +3.93371,41.0,9430,9,8,1,28,46,4.35,5.0,fr,51195,188,2180736,1,1,Active Shallow Crust,0.0,89.9894,0.0,09/08/9430 +-2.56129,48.11152,5003,6,22,10,18,21,3.55,5.0,fr,51196,100,2181120,1,1,Active Shallow Crust,0.0,89.9899,0.0,06/22/5003 +-2.56129,48.11152,1468,12,7,15,53,18,3.65,5.0,fr,51197,29,2181132,1,1,Active Shallow Crust,0.0,89.991,0.0,12/07/1468 +-2.56129,48.11152,7632,10,20,20,43,46,3.65,15.0,fr,51198,152,2181139,1,1,Active Shallow Crust,0.0,89.9909,-90.0,10/20/7632 +-2.56129,48.11152,5668,2,12,10,43,53,3.65,5.0,fr,51199,113,2181141,1,1,Active Shallow Crust,128.9001,89.96355,0.0,02/12/5668 +-2.56129,48.11152,9121,1,8,0,18,14,3.75,15.0,fr,51200,182,2181148,1,1,Active Shallow Crust,240.0085,58.01771,0.0,01/08/9121 +-2.56129,48.11152,387,1,13,21,7,11,3.75,27.5,fr,51201,7,2181152,1,1,Active Shallow Crust,0.0,89.98918,-90.0,01/13/0387 +-2.56129,48.11152,3171,1,2,8,54,43,3.85,5.0,fr,51202,63,2181156,1,1,Active Shallow Crust,0.0,89.99046,0.0,01/02/3171 +-2.56129,48.11152,9634,9,9,6,30,10,3.85,5.0,fr,51203,192,2181159,1,1,Active Shallow Crust,240.0108,57.99809,0.0,09/09/9634 +-2.56129,48.11152,3664,5,20,20,33,17,3.95,15.0,fr,51204,73,2181169,1,1,Active Shallow Crust,0.0,89.98938,0.0,05/20/3664 +-2.56129,48.11152,6724,4,17,17,41,32,4.15,27.5,fr,51205,134,2181194,1,1,Active Shallow Crust,0.0,89.98988,0.0,04/17/6724 +-2.56129,48.11152,5203,10,31,0,3,48,4.15,5.0,fr,51206,104,2181201,1,1,Active Shallow Crust,128.8968,89.99409,0.0,10/31/5203 +-2.56129,48.11152,2142,5,18,18,52,47,4.25,5.0,fr,51207,42,2181204,1,1,Active Shallow Crust,0.0,89.98947,0.0,05/18/2142 +-2.56129,48.11152,219,9,24,23,21,54,4.65,5.0,fr,51208,4,2181252,1,1,Active Shallow Crust,0.0,89.98956,0.0,09/24/0219 +-2.56129,48.11152,6545,3,16,9,52,23,5.25,5.0,fr,51209,130,2181324,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/16/6545 +-5.01387,49.10179,3123,3,9,12,30,57,3.55,5.0,fr,51210,62,2181600,1,1,Active Shallow Crust,0.0,89.98679,0.0,03/09/3123 +-5.01387,49.10179,7595,12,5,17,41,15,3.95,5.0,fr,51211,151,2181648,1,1,Active Shallow Crust,0.0,89.99167,0.0,12/05/7595 +-5.01387,49.10179,5433,2,20,10,3,58,3.95,5.0,fr,51212,108,2181651,1,1,Active Shallow Crust,240.0204,58.00454,0.0,02/20/5433 +-5.01387,49.10179,5295,8,16,20,50,59,4.45,5.0,fr,51213,105,2181708,1,1,Active Shallow Crust,0.0,89.99063,0.0,08/16/5295 +5.05894,46.97865,8333,7,26,8,29,29,3.55,15.0,fr,51214,166,2182564,1,1,Active Shallow Crust,240.0124,57.99835,0.0,07/26/8333 +5.05894,46.97865,3990,2,13,18,17,37,3.65,15.0,fr,51215,79,2182582,1,1,Active Shallow Crust,128.8997,89.96353,0.0,02/13/3990 +5.05894,46.97865,6500,4,23,13,25,36,3.75,5.0,fr,51216,129,2182584,1,1,Active Shallow Crust,0.0,89.98907,0.0,04/23/6500 +5.05894,46.97865,3071,7,2,23,48,52,3.75,15.0,fr,51217,61,2182585,1,1,Active Shallow Crust,0.0,89.98907,0.0,07/02/3071 +5.05894,46.97865,9594,1,23,7,31,6,3.75,5.0,fr,51218,191,2182587,1,1,Active Shallow Crust,240.0087,58.01725,0.0,01/23/9594 +5.05894,46.97865,4021,1,30,16,30,50,3.75,15.0,fr,51219,80,2182591,1,1,Active Shallow Crust,0.0,89.98895,-90.0,01/30/4021 +5.05894,46.97865,360,8,12,3,39,17,3.85,5.0,fr,51220,7,2182596,1,1,Active Shallow Crust,0.0,89.99026,0.0,08/12/0360 +5.05894,46.97865,8027,6,9,19,19,16,3.95,5.0,fr,51221,160,2182608,1,1,Active Shallow Crust,0.0,89.99132,0.0,06/09/8027 +-0.45061,50.78648,7841,2,2,21,8,49,3.55,5.0,fr,51222,156,2183040,1,1,Active Shallow Crust,0.0,89.99004,0.0,02/02/7841 +-0.45061,50.78648,1874,10,12,8,29,50,3.65,5.0,fr,51223,37,2183052,1,1,Active Shallow Crust,0.0,89.99006,0.0,10/12/1874 +-0.45061,50.78648,6233,10,24,12,16,42,3.75,5.0,fr,51224,124,2183067,1,1,Active Shallow Crust,240.0089,58.01767,0.0,10/24/6233 +-0.45061,50.78648,2231,1,22,4,4,14,4.35,15.0,fr,51225,44,2183137,1,1,Active Shallow Crust,0.0,89.99001,0.0,01/22/2231 +-0.45061,50.78648,8823,3,6,23,29,29,5.95,5.0,fr,51226,176,2183331,1,1,Active Shallow Crust,240.058,58.00001,0.0,03/06/8823 +-1.4846,47.79594,5291,12,13,18,1,17,3.55,5.0,fr,51227,105,2183520,1,1,Active Shallow Crust,0.0,89.98984,0.0,12/13/5291 +-1.4846,47.79594,6712,4,16,13,33,57,3.55,5.0,fr,51228,134,2183529,1,1,Active Shallow Crust,128.8961,89.99323,0.0,04/16/6712 +-1.4846,47.79594,1680,5,20,12,30,14,3.75,5.0,fr,51229,33,2183544,1,3,Active Shallow Crust,0.0,89.99059,0.0,05/20/1680 +-1.4846,47.79594,8055,11,25,10,29,35,3.75,5.0,fr,51230,161,2183544,1,3,Active Shallow Crust,0.0,89.99059,0.0,11/25/8055 +-1.4846,47.79594,3542,10,8,18,25,12,3.75,5.0,fr,51231,70,2183544,1,3,Active Shallow Crust,0.0,89.99059,0.0,10/08/3542 +-1.4846,47.79594,2281,3,7,6,53,31,3.75,27.5,fr,51232,45,2183546,1,1,Active Shallow Crust,0.0,89.99059,0.0,03/07/2281 +-1.4846,47.79594,5576,5,28,6,8,38,3.85,5.0,fr,51233,111,2183556,1,1,Active Shallow Crust,0.0,89.99041,0.0,05/28/5576 +-1.4846,47.79594,1546,12,15,10,13,46,4.05,5.0,fr,51234,30,2183580,1,2,Active Shallow Crust,0.0,89.98952,0.0,12/15/1546 +-1.4846,47.79594,6021,7,5,20,20,42,4.05,5.0,fr,51235,120,2183580,1,2,Active Shallow Crust,0.0,89.98952,0.0,07/05/6021 +-1.4846,47.79594,3960,11,21,11,30,3,4.25,27.5,fr,51236,79,2183606,1,1,Active Shallow Crust,0.0,89.99017,0.0,11/21/3960 +-1.4846,47.79594,2873,9,18,10,7,33,4.25,15.0,fr,51237,57,2183608,1,1,Active Shallow Crust,240.0078,57.99411,0.0,09/18/2873 +-1.4846,47.79594,7589,5,21,20,55,9,4.45,15.0,fr,51238,151,2183629,1,1,Active Shallow Crust,0.0,89.98978,0.0,05/21/7589 +-1.4846,47.79594,4809,4,19,5,27,22,5.15,5.0,fr,51239,96,2183712,1,1,Active Shallow Crust,0.0,89.99007,0.0,04/19/4809 +7.60692,51.06847,7143,10,13,12,20,46,3.55,5.0,fr,51240,142,2184000,1,1,Active Shallow Crust,0.0,89.98733,0.0,10/13/7143 +7.60692,51.06847,4435,11,23,11,32,54,3.75,15.0,fr,51241,88,2184028,1,1,Active Shallow Crust,240.0092,58.0177,0.0,11/23/4435 +7.60692,51.06847,7748,9,25,7,22,50,4.15,15.0,fr,51242,154,2184076,1,1,Active Shallow Crust,240.0089,57.99797,0.0,09/25/7748 +7.60692,51.06847,6939,8,16,10,14,43,4.25,5.0,fr,51243,138,2184084,1,1,Active Shallow Crust,0.0,89.98868,0.0,08/16/6939 +5.5729,45.88186,240,5,13,16,29,26,3.55,5.0,fr,51244,4,2184480,1,1,Active Shallow Crust,0.0,89.99298,0.0,05/13/0240 +5.5729,45.88186,7884,9,26,17,22,33,3.55,5.0,fr,51245,157,2184483,1,1,Active Shallow Crust,240.013,57.99697,0.0,09/26/7884 +5.5729,45.88186,8913,11,29,23,49,14,3.65,27.5,fr,51246,178,2184494,1,1,Active Shallow Crust,0.0,89.98749,0.0,11/29/8913 +5.5729,45.88186,46,9,28,3,38,40,3.65,5.0,fr,51247,0,2184498,1,1,Active Shallow Crust,0.0,89.98734,-90.0,09/28/0046 +5.5729,45.88186,9377,1,14,22,40,31,3.65,5.0,fr,51248,187,2184501,1,2,Active Shallow Crust,128.9002,89.96351,0.0,01/14/9377 +5.5729,45.88186,4968,12,16,4,52,19,3.65,5.0,fr,51249,99,2184501,1,2,Active Shallow Crust,128.9002,89.96351,0.0,12/16/4968 +5.5729,45.88186,2850,6,22,3,21,52,3.75,5.0,fr,51250,56,2184510,1,1,Active Shallow Crust,0.0,89.98872,-90.0,06/22/2850 +5.5729,45.88186,54,11,12,8,19,36,3.85,5.0,fr,51251,1,2184525,1,1,Active Shallow Crust,128.8955,89.99255,0.0,11/12/0054 +5.5729,45.88186,8694,5,12,19,33,7,3.95,5.0,fr,51252,173,2184528,1,1,Active Shallow Crust,0.0,89.99114,0.0,05/12/8694 +5.5729,45.88186,5710,6,11,11,22,48,4.05,5.0,fr,51253,114,2184549,1,1,Active Shallow Crust,128.8912,89.99408,0.0,06/11/5710 +5.5729,45.88186,8704,10,26,13,58,27,4.15,5.0,fr,51254,174,2184552,1,1,Active Shallow Crust,0.0,89.98945,0.0,10/26/8704 +5.5729,45.88186,2903,3,28,12,5,57,4.15,5.0,fr,51255,58,2184561,1,1,Active Shallow Crust,128.8967,89.99472,0.0,03/28/2903 +5.5729,45.88186,5684,3,23,5,58,16,4.25,15.0,fr,51256,113,2184565,1,1,Active Shallow Crust,0.0,89.99059,0.0,03/23/5684 +5.5729,45.88186,131,10,28,20,52,29,5.05,15.0,fr,51257,2,2184661,1,1,Active Shallow Crust,0.0,89.99001,0.0,10/28/0131 +5.5729,45.88186,820,5,23,3,3,33,5.05,27.5,fr,51258,16,2184662,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/23/0820 +5.5729,45.88186,8063,7,7,22,43,12,5.05,5.0,fr,51259,161,2184666,1,1,Active Shallow Crust,0.0,89.9899,-90.0,07/07/8063 +5.5729,45.88186,1079,4,30,9,46,59,5.25,15.0,fr,51260,21,2184691,1,1,Active Shallow Crust,0.0,89.98997,-90.0,04/30/1079 +5.572918,45.88186,2325,6,4,15,9,50,6.85,13.30363,fr,51261,46,2184882,1,1,Active Shallow Crust,0.0,89.98997,-90.0,06/04/2325 +5.66913,41.77493,8255,5,6,19,37,2,3.75,5.0,fr,51262,165,2184984,1,1,Active Shallow Crust,0.0,89.98805,0.0,05/06/8255 +5.66913,41.77493,2127,2,23,10,35,5,3.75,5.0,fr,51263,42,2184987,1,1,Active Shallow Crust,240.0069,58.01842,0.0,02/23/2127 +5.66913,41.77493,8069,11,14,21,11,17,3.95,5.0,fr,51264,161,2185008,1,1,Active Shallow Crust,0.0,89.99051,0.0,11/14/8069 +5.66913,41.77493,7768,12,26,2,58,37,4.05,5.0,fr,51265,155,2185026,1,1,Active Shallow Crust,0.0,89.99145,-90.0,12/26/7768 +5.66913,41.77493,7753,1,31,10,23,32,4.15,15.0,fr,51266,155,2185033,1,1,Active Shallow Crust,0.0,89.98869,0.0,01/31/7753 +5.66913,41.77493,7256,6,14,9,4,3,4.25,5.0,fr,51267,145,2185044,1,1,Active Shallow Crust,0.0,89.98992,0.0,06/14/7256 +1.30047,51.51243,7721,5,12,12,39,21,3.65,5.0,fr,51268,154,2185452,1,2,Active Shallow Crust,0.0,89.99021,0.0,05/12/7721 +1.30047,51.51243,8628,9,15,9,37,19,3.65,5.0,fr,51269,172,2185452,1,2,Active Shallow Crust,0.0,89.99021,0.0,09/15/8628 +1.30047,51.51243,1669,12,11,11,5,16,3.85,5.0,fr,51270,33,2185476,1,1,Active Shallow Crust,0.0,89.99001,0.0,12/11/1669 +1.30047,51.51243,2568,7,4,4,34,34,3.95,15.0,fr,51271,51,2185495,1,1,Active Shallow Crust,0.0,89.98998,-90.0,07/04/2568 +1.30047,51.51243,3351,1,25,20,42,54,4.15,5.0,fr,51272,67,2185512,1,1,Active Shallow Crust,0.0,89.98978,0.0,01/25/3351 +1.30047,51.51243,1653,10,11,14,24,32,4.15,5.0,fr,51273,33,2185515,1,1,Active Shallow Crust,240.0094,57.99753,0.0,10/11/1653 +1.30047,51.51243,4564,6,25,9,4,21,4.15,5.0,fr,51274,91,2185518,1,1,Active Shallow Crust,0.0,89.98966,-90.0,06/25/4564 +1.30047,51.51243,6193,11,12,22,38,31,4.45,15.0,fr,51275,123,2185549,1,1,Active Shallow Crust,0.0,89.98997,0.0,11/12/6193 +1.30047,51.51243,8165,7,20,10,58,54,4.55,5.0,fr,51276,163,2185560,1,1,Active Shallow Crust,0.0,89.99007,0.0,07/20/8165 +1.30047,51.51243,3129,3,8,1,7,8,4.65,5.0,fr,51277,62,2185581,1,1,Active Shallow Crust,128.8896,89.98695,0.0,03/08/3129 +5.6188,46.27801,955,9,24,16,15,59,3.55,5.0,fr,51278,19,2185920,1,1,Active Shallow Crust,0.0,89.99303,0.0,09/24/0955 +5.6188,46.27801,1643,11,18,10,38,49,3.55,15.0,fr,51279,32,2185921,1,1,Active Shallow Crust,0.0,89.99303,0.0,11/18/1643 +5.6188,46.27801,6157,11,6,12,59,54,3.55,27.5,fr,51280,123,2185922,1,1,Active Shallow Crust,0.0,89.99303,0.0,11/06/6157 +5.6188,46.27801,3779,2,9,7,30,51,3.55,5.0,fr,51281,75,2185923,1,1,Active Shallow Crust,240.0115,57.99871,0.0,02/09/3779 +5.6188,46.27801,755,1,24,1,51,38,3.55,15.0,fr,51282,15,2185924,1,1,Active Shallow Crust,240.0115,57.99871,0.0,01/24/0755 +5.6188,46.27801,3622,10,17,8,15,3,3.65,15.0,fr,51283,72,2185933,1,1,Active Shallow Crust,0.0,89.98758,0.0,10/17/3622 +5.6188,46.27801,8933,10,5,20,40,7,3.75,5.0,fr,51284,178,2185944,1,1,Active Shallow Crust,0.0,89.98893,0.0,10/05/8933 +5.6188,46.27801,596,12,16,19,2,40,3.85,5.0,fr,51285,11,2185956,1,2,Active Shallow Crust,0.0,89.99014,0.0,12/16/0596 +5.6188,46.27801,3348,9,13,17,18,33,3.85,5.0,fr,51286,66,2185956,1,2,Active Shallow Crust,0.0,89.99014,0.0,09/13/3348 +5.6188,46.27801,9448,7,13,23,41,20,3.95,5.0,fr,51287,188,2185968,1,1,Active Shallow Crust,0.0,89.9912,0.0,07/13/9448 +5.6188,46.27801,4695,10,21,15,12,20,4.15,5.0,fr,51288,93,2185992,1,2,Active Shallow Crust,0.0,89.98952,0.0,10/21/4695 +5.6188,46.27801,2663,11,9,17,12,56,4.15,5.0,fr,51289,53,2185992,1,2,Active Shallow Crust,0.0,89.98952,0.0,11/09/2663 +5.6188,46.27801,1801,1,2,11,5,1,4.25,5.0,fr,51290,36,2186004,1,1,Active Shallow Crust,0.0,89.99066,0.0,01/02/1801 +5.6188,46.27801,232,4,21,8,38,22,4.25,5.0,fr,51291,4,2186007,1,1,Active Shallow Crust,240.0072,57.99413,0.0,04/21/0232 +5.6188,46.27801,7608,10,16,18,43,46,4.35,15.0,fr,51292,152,2186017,1,1,Active Shallow Crust,0.0,89.9889,0.0,10/16/7608 +5.6188,46.27801,8604,3,1,15,22,57,5.25,5.0,fr,51293,172,2186124,1,1,Active Shallow Crust,0.0,89.99015,0.0,03/01/8604 +7.43256,51.41586,4541,11,8,8,40,39,3.55,15.0,fr,51294,90,2186404,1,1,Active Shallow Crust,240.0121,57.99931,0.0,11/08/4541 +7.43256,51.41586,6915,7,24,19,5,30,3.75,5.0,fr,51295,138,2186430,1,1,Active Shallow Crust,0.0,89.98989,-90.0,07/24/6915 +5.53577,46.78479,661,5,2,4,57,33,3.55,5.0,fr,51296,13,2187360,1,1,Active Shallow Crust,0.0,89.9931,0.0,05/02/0661 +5.53577,46.78479,1890,9,10,19,48,57,3.65,5.0,fr,51297,37,2187372,1,1,Active Shallow Crust,0.0,89.98769,0.0,09/10/1890 +5.53577,46.78479,2229,11,13,18,49,46,3.65,5.0,fr,51298,44,2187375,1,1,Active Shallow Crust,240.0002,58.01384,0.0,11/13/2229 +5.53577,46.78479,5451,3,1,14,3,1,4.05,15.0,fr,51299,109,2187424,1,1,Active Shallow Crust,240.0064,58.00594,0.0,03/01/5451 +5.53577,46.78479,4921,11,3,3,38,43,4.15,5.0,fr,51300,98,2187432,1,1,Active Shallow Crust,0.0,89.98962,0.0,11/03/4921 +5.53577,46.78479,8762,6,9,21,56,27,4.15,15.0,fr,51301,175,2187442,1,1,Active Shallow Crust,128.8966,89.99481,0.0,06/09/8762 +5.53577,46.78479,2073,10,23,7,56,17,4.25,5.0,fr,51302,41,2187444,1,1,Active Shallow Crust,0.0,89.99075,0.0,10/23/2073 +5.53577,46.78479,9902,2,23,15,34,45,4.35,5.0,fr,51303,198,2187456,1,1,Active Shallow Crust,0.0,89.98901,0.0,02/23/9902 +5.53577,46.78479,6965,3,26,11,47,54,4.75,5.0,fr,51304,139,2187504,1,1,Active Shallow Crust,0.0,89.98959,0.0,03/26/6965 +5.53577,46.78479,1164,4,4,2,34,32,4.85,5.0,fr,51305,23,2187516,1,1,Active Shallow Crust,0.0,89.99072,0.0,04/04/1164 +-2.03164,43.50993,1844,6,5,8,16,54,3.55,5.0,fr,51306,36,2187840,1,2,Active Shallow Crust,0.0,89.98903,0.0,06/05/1844 +-2.03164,43.50993,8276,11,23,15,37,31,3.55,5.0,fr,51307,165,2187840,1,2,Active Shallow Crust,0.0,89.98903,0.0,11/23/8276 +-2.03164,43.50993,8127,1,2,21,41,35,3.65,5.0,fr,51308,162,2187858,1,1,Active Shallow Crust,0.0,89.99011,-90.0,01/02/8127 +-2.03164,43.50993,4620,6,15,14,41,22,3.75,15.0,fr,51309,92,2187865,1,1,Active Shallow Crust,0.0,89.99129,0.0,06/15/4620 +-2.03164,43.50993,9479,4,3,19,54,29,3.95,5.0,fr,51310,189,2187888,1,1,Active Shallow Crust,0.0,89.99077,0.0,04/03/9479 +-2.03164,43.50993,2110,8,19,2,41,37,4.05,5.0,fr,51311,42,2187900,1,1,Active Shallow Crust,0.0,89.98972,0.0,08/19/2110 +-2.03164,43.50993,4854,9,11,4,24,3,4.05,15.0,fr,51312,97,2187904,1,1,Active Shallow Crust,240.0056,58.00566,0.0,09/11/4854 +-2.03164,43.50993,3360,8,7,7,58,27,4.75,5.0,fr,51313,67,2187984,1,1,Active Shallow Crust,0.0,89.9899,0.0,08/07/3360 +3.17397,44.75649,8672,8,7,22,28,21,3.55,15.0,fr,51314,173,2188321,1,1,Active Shallow Crust,0.0,89.98926,0.0,08/07/8672 +3.17397,44.75649,2802,2,27,6,5,37,3.55,5.0,fr,51315,56,2188326,1,1,Active Shallow Crust,0.0,89.98914,-90.0,02/27/2802 +3.17397,44.75649,3397,10,22,12,13,52,3.65,5.0,fr,51316,67,2188332,1,4,Active Shallow Crust,0.0,89.99043,0.0,10/22/3397 +3.17397,44.75649,3379,2,17,15,26,33,3.65,5.0,fr,51317,67,2188332,1,4,Active Shallow Crust,0.0,89.99043,0.0,02/17/3379 +3.17397,44.75649,7846,6,26,10,43,25,3.65,5.0,fr,51318,156,2188332,1,4,Active Shallow Crust,0.0,89.99043,0.0,06/26/7846 +3.17397,44.75649,436,5,27,13,47,33,3.65,5.0,fr,51319,8,2188332,1,4,Active Shallow Crust,0.0,89.99043,0.0,05/27/0436 +3.17397,44.75649,4408,6,15,6,34,26,3.75,15.0,fr,51320,88,2188345,1,1,Active Shallow Crust,0.0,89.98862,0.0,06/15/4408 +3.17397,44.75649,4779,9,8,20,57,57,3.75,5.0,fr,51321,95,2188350,1,2,Active Shallow Crust,0.0,89.99137,-90.0,09/08/4779 +3.17397,44.75649,6371,12,10,7,5,35,3.75,5.0,fr,51322,127,2188350,1,2,Active Shallow Crust,0.0,89.99137,-90.0,12/10/6371 +3.17397,44.75649,3011,10,15,23,55,35,3.85,5.0,fr,51323,60,2188356,1,1,Active Shallow Crust,0.0,89.98986,0.0,10/15/3011 +3.17397,44.75649,9240,7,26,8,7,35,3.85,5.0,fr,51324,184,2188359,1,1,Active Shallow Crust,240.0108,57.99804,0.0,07/26/9240 +3.17397,44.75649,754,5,31,12,29,27,4.05,15.0,fr,51325,15,2188381,1,1,Active Shallow Crust,0.0,89.98993,0.0,05/31/0754 +3.17397,44.75649,7239,10,20,3,27,58,4.35,27.5,fr,51326,144,2188427,1,1,Active Shallow Crust,128.8982,89.98271,0.0,10/20/7239 +3.17397,44.75649,1874,7,24,3,26,14,4.45,5.0,fr,51327,37,2188428,1,1,Active Shallow Crust,0.0,89.98984,0.0,07/24/1874 +3.17397,44.75649,1439,8,7,5,44,16,4.55,5.0,fr,51328,28,2188440,1,1,Active Shallow Crust,0.0,89.98981,0.0,08/07/1439 +2.91511,46.66487,6239,11,17,11,32,12,3.55,5.0,fr,51329,124,2188800,1,1,Active Shallow Crust,0.0,89.98962,0.0,11/17/6239 +2.91511,46.66487,8966,12,23,6,25,57,3.65,5.0,fr,51330,179,2188815,1,1,Active Shallow Crust,240.0007,58.01324,0.0,12/23/8966 +2.91511,46.66487,3815,1,20,10,56,26,3.75,5.0,fr,51331,76,2188824,1,1,Active Shallow Crust,0.0,89.98901,0.0,01/20/3815 +2.91511,46.66487,8645,10,21,3,15,8,3.75,15.0,fr,51332,172,2188828,1,1,Active Shallow Crust,240.0082,58.01745,0.0,10/21/8645 +2.91511,46.66487,7676,11,13,17,13,13,4.05,5.0,fr,51333,153,2188866,1,1,Active Shallow Crust,0.0,89.99016,-90.0,11/13/7676 +2.91511,46.66487,7243,11,6,6,51,35,4.65,27.5,fr,51334,144,2188934,1,1,Active Shallow Crust,0.0,89.99025,0.0,11/06/7243 +8.15768,45.53496,7020,7,5,6,59,39,3.55,5.0,fr,51335,140,2189280,1,5,Active Shallow Crust,0.0,89.98587,0.0,07/05/7020 +8.15768,45.53496,759,4,16,20,23,27,3.55,5.0,fr,51336,15,2189280,1,5,Active Shallow Crust,0.0,89.98587,0.0,04/16/0759 +8.15768,45.53496,7674,5,28,14,56,14,3.55,5.0,fr,51337,153,2189280,1,5,Active Shallow Crust,0.0,89.98587,0.0,05/28/7674 +8.15768,45.53496,391,2,2,13,59,16,3.55,5.0,fr,51338,7,2189280,1,5,Active Shallow Crust,0.0,89.98587,0.0,02/02/0391 +8.15768,45.53496,7032,10,24,23,50,25,3.55,5.0,fr,51339,140,2189280,1,5,Active Shallow Crust,0.0,89.98587,0.0,10/24/7032 +8.15768,45.53496,1691,5,24,14,30,10,3.55,15.0,fr,51340,33,2189281,1,1,Active Shallow Crust,0.0,89.98587,0.0,05/24/1691 +8.15768,45.53496,3561,9,30,8,0,28,3.55,5.0,fr,51341,71,2189283,1,1,Active Shallow Crust,240.012,57.99882,0.0,09/30/3561 +8.15768,45.53496,2485,1,5,21,19,7,3.55,27.5,fr,51342,49,2189288,1,1,Active Shallow Crust,0.0,89.98571,-90.0,01/05/2485 +8.15768,45.53496,4409,3,30,22,45,38,3.65,5.0,fr,51343,88,2189292,1,2,Active Shallow Crust,0.0,89.98741,0.0,03/30/4409 +8.15768,45.53496,4180,4,5,8,31,44,3.65,5.0,fr,51344,83,2189292,1,2,Active Shallow Crust,0.0,89.98741,0.0,04/05/4180 +8.15768,45.53496,5540,9,12,11,21,7,3.65,27.5,fr,51345,110,2189294,1,1,Active Shallow Crust,0.0,89.98741,0.0,09/12/5540 +8.15768,45.53496,7371,2,23,7,23,4,3.65,15.0,fr,51346,147,2189296,1,1,Active Shallow Crust,240.0004,58.0141,0.0,02/23/7371 +8.15768,45.53496,9972,7,18,21,50,53,3.65,27.5,fr,51347,199,2189297,1,1,Active Shallow Crust,240.0004,58.01401,0.0,07/18/9972 +8.15768,45.53496,8890,9,21,17,34,24,3.65,15.0,fr,51348,177,2189299,1,3,Active Shallow Crust,0.0,89.98727,-90.0,09/21/8890 +8.15768,45.53496,1555,12,1,14,49,8,3.65,15.0,fr,51349,31,2189299,1,3,Active Shallow Crust,0.0,89.98727,-90.0,12/01/1555 +8.15768,45.53496,980,10,13,1,1,23,3.65,15.0,fr,51350,19,2189299,1,3,Active Shallow Crust,0.0,89.98727,-90.0,10/13/0980 +8.15768,45.53496,2768,4,20,19,5,45,3.85,27.5,fr,51351,55,2189318,1,1,Active Shallow Crust,0.0,89.99,0.0,04/20/2768 +8.15768,45.53496,3590,5,12,10,59,50,3.95,5.0,fr,51352,71,2189328,1,1,Active Shallow Crust,0.0,89.99109,0.0,05/12/3590 +8.15768,45.53496,3183,12,8,12,0,7,3.95,15.0,fr,51353,63,2189329,1,1,Active Shallow Crust,0.0,89.99109,0.0,12/08/3183 +8.15768,45.53496,6885,12,1,6,36,48,4.05,5.0,fr,51354,137,2189340,1,1,Active Shallow Crust,0.0,89.99206,0.0,12/01/6885 +8.15768,45.53496,2909,12,15,19,30,45,4.35,5.0,fr,51355,58,2189376,1,1,Active Shallow Crust,0.0,89.98875,0.0,12/15/2909 +8.15768,45.53496,6689,10,10,7,0,17,4.35,15.0,fr,51356,133,2189377,1,1,Active Shallow Crust,0.0,89.98875,0.0,10/10/6689 +8.15768,45.53496,5522,4,1,5,44,10,4.45,15.0,fr,51357,110,2189389,1,1,Active Shallow Crust,0.0,89.98997,0.0,04/01/5522 +8.15768,45.53496,5487,12,14,2,31,19,4.75,5.0,fr,51358,109,2189433,1,1,Active Shallow Crust,128.8886,89.98763,0.0,12/14/5487 +8.15768,45.53496,832,7,13,0,24,26,5.75,27.5,fr,51359,16,2189546,1,1,Active Shallow Crust,0.0,89.9899,0.0,07/13/0832 +1.41255,50.99965,2014,8,20,13,41,36,3.55,15.0,fr,51360,40,2189761,1,2,Active Shallow Crust,0.0,89.99048,0.0,08/20/2014 +1.41255,50.99965,7163,8,10,0,49,15,3.55,15.0,fr,51361,143,2189761,1,2,Active Shallow Crust,0.0,89.99048,0.0,08/10/7163 +1.41255,50.99965,8662,3,5,7,56,49,3.55,15.0,fr,51362,173,2189770,1,1,Active Shallow Crust,128.8959,89.99365,0.0,03/05/8662 +1.41255,50.99965,3364,2,9,18,49,4,3.75,5.0,fr,51363,67,2189784,1,2,Active Shallow Crust,0.0,89.98992,0.0,02/09/3364 +1.41255,50.99965,3822,6,14,20,59,48,3.75,5.0,fr,51364,76,2189784,1,2,Active Shallow Crust,0.0,89.98992,0.0,06/14/3822 +1.41255,50.99965,947,12,21,15,1,49,3.95,5.0,fr,51365,18,2189808,1,1,Active Shallow Crust,0.0,89.98999,0.0,12/21/0947 +1.41255,50.99965,2269,1,1,21,40,29,3.95,15.0,fr,51366,45,2189809,1,1,Active Shallow Crust,0.0,89.98999,0.0,01/01/2269 +1.41255,50.99965,7554,12,15,5,26,8,4.05,5.0,fr,51367,151,2189829,1,1,Active Shallow Crust,128.8899,89.99376,0.0,12/15/7554 +1.41255,50.99965,677,9,27,8,5,56,4.25,5.0,fr,51368,13,2189850,1,1,Active Shallow Crust,0.0,89.98996,-90.0,09/27/0677 +4.01823,47.2169,5704,7,19,19,16,13,3.55,15.0,fr,51369,114,2190247,1,1,Active Shallow Crust,0.0,89.99307,-90.0,07/19/5704 +4.01823,47.2169,6856,8,20,5,43,22,3.65,5.0,fr,51370,137,2190252,1,2,Active Shallow Crust,0.0,89.98779,0.0,08/20/6856 +4.01823,47.2169,1964,7,31,2,3,58,3.65,5.0,fr,51371,39,2190252,1,2,Active Shallow Crust,0.0,89.98779,0.0,07/31/1964 +4.01823,47.2169,2818,5,7,5,37,41,3.65,27.5,fr,51372,56,2190257,1,1,Active Shallow Crust,240.0019,58.01254,0.0,05/07/2818 +4.01823,47.2169,778,5,18,9,15,22,3.85,5.0,fr,51373,15,2190276,1,1,Active Shallow Crust,0.0,89.9903,0.0,05/18/0778 +4.01823,47.2169,3095,7,4,12,41,21,4.15,5.0,fr,51374,61,2190312,1,1,Active Shallow Crust,0.0,89.9897,0.0,07/04/3095 +6.277,44.12981,3299,7,24,0,19,23,3.55,5.0,fr,51375,65,2190720,1,5,Active Shallow Crust,0.0,89.99276,0.0,07/24/3299 +6.277,44.12981,9722,2,21,15,57,9,3.55,5.0,fr,51376,194,2190720,1,5,Active Shallow Crust,0.0,89.99276,0.0,02/21/9722 +6.277,44.12981,3500,2,6,11,35,37,3.55,5.0,fr,51377,69,2190720,1,5,Active Shallow Crust,0.0,89.99276,0.0,02/06/3500 +6.277,44.12981,3846,7,3,12,55,25,3.55,5.0,fr,51378,76,2190720,1,5,Active Shallow Crust,0.0,89.99276,0.0,07/03/3846 +6.277,44.12981,2955,5,4,13,30,21,3.55,5.0,fr,51379,59,2190720,1,5,Active Shallow Crust,0.0,89.99276,0.0,05/04/2955 +6.277,44.12981,772,2,25,19,54,12,3.55,27.5,fr,51380,15,2190731,1,1,Active Shallow Crust,128.8962,89.99276,0.0,02/25/0772 +6.277,44.12981,808,1,2,10,53,44,3.65,15.0,fr,51381,16,2190733,1,1,Active Shallow Crust,0.0,89.9871,0.0,01/02/0808 +6.277,44.12981,1801,9,3,13,46,52,3.65,27.5,fr,51382,36,2190734,1,1,Active Shallow Crust,0.0,89.9871,0.0,09/03/1801 +6.277,44.12981,7786,11,18,7,28,13,3.75,5.0,fr,51383,155,2190744,1,3,Active Shallow Crust,0.0,89.9885,0.0,11/18/7786 +6.277,44.12981,6935,8,2,8,0,21,3.75,5.0,fr,51384,138,2190744,1,3,Active Shallow Crust,0.0,89.9885,0.0,08/02/6935 +6.277,44.12981,6675,2,27,23,57,39,3.75,5.0,fr,51385,133,2190744,1,3,Active Shallow Crust,0.0,89.9885,0.0,02/27/6675 +6.277,44.12981,4084,2,25,12,42,8,3.85,15.0,fr,51386,81,2190757,1,1,Active Shallow Crust,0.0,89.98975,0.0,02/25/4084 +6.277,44.12981,6909,3,31,13,19,57,3.85,5.0,fr,51387,138,2190762,1,1,Active Shallow Crust,0.0,89.98963,-90.0,03/31/6909 +6.277,44.12981,4443,4,8,14,41,38,3.85,5.0,fr,51388,88,2190765,1,1,Active Shallow Crust,128.8962,89.99487,0.0,04/08/4443 +6.277,44.12981,3668,9,7,20,26,48,3.95,5.0,fr,51389,73,2190768,1,4,Active Shallow Crust,0.0,89.99087,0.0,09/07/3668 +6.277,44.12981,1565,12,30,22,46,7,3.95,5.0,fr,51390,31,2190768,1,4,Active Shallow Crust,0.0,89.99087,0.0,12/30/1565 +6.277,44.12981,6981,6,9,19,2,33,3.95,5.0,fr,51391,139,2190768,1,4,Active Shallow Crust,0.0,89.99087,0.0,06/09/6981 +6.277,44.12981,470,3,31,4,31,37,3.95,5.0,fr,51392,9,2190768,1,4,Active Shallow Crust,0.0,89.99087,0.0,03/31/0470 +6.277,44.12981,6838,8,24,6,16,8,3.95,27.5,fr,51393,136,2190770,1,1,Active Shallow Crust,0.0,89.99087,0.0,08/24/6838 +6.277,44.12981,343,6,9,12,6,25,3.95,5.0,fr,51394,6,2190774,1,1,Active Shallow Crust,0.0,89.99076,-90.0,06/09/0343 +6.277,44.12981,4039,8,2,2,53,56,3.95,27.5,fr,51395,80,2190776,1,1,Active Shallow Crust,0.0,89.99076,-90.0,08/02/4039 +6.277,44.12981,6402,10,7,0,17,51,3.95,27.5,fr,51396,128,2190779,1,1,Active Shallow Crust,128.9006,89.99543,0.0,10/07/6402 +6.277,44.12981,1033,12,25,18,40,34,4.05,5.0,fr,51397,20,2190780,1,1,Active Shallow Crust,0.0,89.99186,0.0,12/25/1033 +6.277,44.12981,9133,2,13,20,58,35,4.05,15.0,fr,51398,182,2190781,1,1,Active Shallow Crust,0.0,89.99186,0.0,02/13/9133 +6.277,44.12981,4794,8,30,1,51,39,4.15,5.0,fr,51399,95,2190792,1,1,Active Shallow Crust,0.0,89.98912,0.0,08/30/4794 +6.277,44.12981,6305,11,29,15,4,46,4.65,15.0,fr,51400,126,2190853,1,1,Active Shallow Crust,0.0,89.9898,0.0,11/29/6305 +6.277,44.12981,3000,5,25,17,49,39,4.85,27.5,fr,51401,59,2190881,1,1,Active Shallow Crust,240.0164,58.00216,0.0,05/25/3000 +6.277,44.12981,7723,10,8,4,45,31,4.95,5.0,fr,51402,154,2190888,1,1,Active Shallow Crust,0.0,89.98989,0.0,10/08/7723 +6.277,44.12981,955,12,1,5,52,25,5.15,27.5,fr,51403,19,2190914,1,1,Active Shallow Crust,0.0,89.98967,0.0,12/01/0955 +6.277,44.12981,6042,4,3,16,50,57,5.25,5.0,fr,51404,120,2190933,1,1,Active Shallow Crust,128.8844,89.98706,0.0,04/03/6042 +6.277,44.12981,8229,3,8,17,47,48,5.45,15.0,fr,51405,164,2190949,1,1,Active Shallow Crust,0.0,89.99025,0.0,03/08/8229 +6.28725,44.79277,3354,12,19,3,55,45,3.55,5.0,fr,51406,67,2191200,1,1,Active Shallow Crust,0.0,89.99284,0.0,12/19/3354 +6.28725,44.79277,2791,9,4,8,2,45,3.65,5.0,fr,51407,55,2191212,1,1,Active Shallow Crust,0.0,89.98724,0.0,09/04/2791 +6.28725,44.79277,7936,10,10,5,14,44,3.65,15.0,fr,51408,158,2191213,1,1,Active Shallow Crust,0.0,89.98724,0.0,10/10/7936 +6.28725,44.79277,7391,7,18,17,11,43,3.75,5.0,fr,51409,147,2191224,1,1,Active Shallow Crust,0.0,89.98863,0.0,07/18/7391 +6.28725,44.79277,5815,7,19,16,33,38,3.95,5.0,fr,51410,116,2191257,1,1,Active Shallow Crust,128.9005,89.99323,0.0,07/19/5815 +6.28725,44.79277,9373,6,21,23,2,8,4.05,15.0,fr,51411,187,2191261,1,1,Active Shallow Crust,0.0,89.99195,0.0,06/21/9373 +6.28725,44.79277,3842,9,12,0,56,59,4.15,5.0,fr,51412,76,2191278,1,1,Active Shallow Crust,0.0,89.98911,-90.0,09/12/3842 +6.28725,44.79277,4738,3,11,1,7,18,4.25,15.0,fr,51413,94,2191285,1,1,Active Shallow Crust,0.0,89.99041,0.0,03/11/4738 +3.42816,44.53245,4427,1,6,1,42,54,3.55,5.0,fr,51414,88,2191680,1,1,Active Shallow Crust,0.0,89.98922,0.0,01/06/4427 +3.42816,44.53245,2411,7,6,11,59,30,3.75,5.0,fr,51415,48,2191704,1,1,Active Shallow Crust,0.0,89.98858,0.0,07/06/2411 +3.42816,44.53245,6915,9,23,6,58,1,3.75,15.0,fr,51416,138,2191705,1,1,Active Shallow Crust,0.0,89.98858,0.0,09/23/6915 +3.42816,44.53245,7196,6,28,18,1,49,3.85,5.0,fr,51417,143,2191719,1,1,Active Shallow Crust,240.01,57.99795,0.0,06/28/7196 +3.42816,44.53245,5566,10,26,5,18,55,3.85,27.5,fr,51418,111,2191724,1,1,Active Shallow Crust,0.0,89.9897,-90.0,10/26/5566 +3.42816,44.53245,2425,2,8,14,36,41,3.95,5.0,fr,51419,48,2191728,1,1,Active Shallow Crust,0.0,89.99093,0.0,02/08/2425 +3.42816,44.53245,758,8,22,14,31,57,4.25,5.0,fr,51420,15,2191770,1,1,Active Shallow Crust,0.0,89.99026,-90.0,08/22/0758 +3.42816,44.53245,4341,9,10,12,22,41,4.75,15.0,fr,51421,86,2191828,1,1,Active Shallow Crust,240.0068,58.00434,0.0,09/10/4341 +7.32589,46.747,4640,10,22,12,16,46,3.55,5.0,fr,51422,92,2192160,1,5,Active Shallow Crust,0.0,89.99309,0.0,10/22/4640 +7.32589,46.747,1342,8,2,14,35,50,3.55,5.0,fr,51423,26,2192160,1,5,Active Shallow Crust,0.0,89.99309,0.0,08/02/1342 +7.32589,46.747,8211,9,13,9,14,43,3.55,5.0,fr,51424,164,2192160,1,5,Active Shallow Crust,0.0,89.99309,0.0,09/13/8211 +7.32589,46.747,2324,1,19,14,44,6,3.55,5.0,fr,51425,46,2192160,1,5,Active Shallow Crust,0.0,89.99309,0.0,01/19/2324 +7.32589,46.747,6907,3,22,0,25,0,3.55,5.0,fr,51426,138,2192160,1,5,Active Shallow Crust,0.0,89.99309,0.0,03/22/6907 +7.32589,46.747,1411,3,22,6,4,33,3.55,15.0,fr,51427,28,2192161,1,3,Active Shallow Crust,0.0,89.99309,0.0,03/22/1411 +7.32589,46.747,1511,9,6,14,27,17,3.55,15.0,fr,51428,30,2192161,1,3,Active Shallow Crust,0.0,89.99309,0.0,09/06/1511 +7.32589,46.747,8468,3,31,2,41,35,3.55,15.0,fr,51429,169,2192161,1,3,Active Shallow Crust,0.0,89.99309,0.0,03/31/8468 +7.32589,46.747,2289,10,4,11,24,53,3.55,27.5,fr,51430,45,2192162,1,1,Active Shallow Crust,0.0,89.99309,0.0,10/04/2289 +7.32589,46.747,2795,1,31,4,58,22,3.55,5.0,fr,51431,55,2192163,1,2,Active Shallow Crust,240.0126,57.99834,0.0,01/31/2795 +7.32589,46.747,7700,3,11,2,42,32,3.55,5.0,fr,51432,153,2192163,1,2,Active Shallow Crust,240.0126,57.99834,0.0,03/11/7700 +7.32589,46.747,7130,2,18,3,42,51,3.55,5.0,fr,51433,142,2192169,1,1,Active Shallow Crust,128.8965,89.99309,0.0,02/18/7130 +7.32589,46.747,7746,9,24,9,13,35,3.65,5.0,fr,51434,154,2192172,1,3,Active Shallow Crust,0.0,89.98769,0.0,09/24/7746 +7.32589,46.747,8954,1,2,19,58,1,3.65,5.0,fr,51435,179,2192172,1,3,Active Shallow Crust,0.0,89.98769,0.0,01/02/8954 +7.32589,46.747,7378,11,3,10,14,18,3.65,5.0,fr,51436,147,2192172,1,3,Active Shallow Crust,0.0,89.98769,0.0,11/03/7378 +7.32589,46.747,511,2,17,19,50,53,3.65,15.0,fr,51437,10,2192173,1,1,Active Shallow Crust,0.0,89.98769,0.0,02/17/0511 +7.32589,46.747,2225,1,9,15,15,11,3.65,27.5,fr,51438,44,2192174,1,2,Active Shallow Crust,0.0,89.98769,0.0,01/09/2225 +7.32589,46.747,3500,9,19,8,21,28,3.65,27.5,fr,51439,69,2192174,1,2,Active Shallow Crust,0.0,89.98769,0.0,09/19/3500 +7.32589,46.747,5962,7,18,12,40,30,3.65,5.0,fr,51440,119,2192175,1,1,Active Shallow Crust,240.0007,58.01323,0.0,07/18/5962 +7.32589,46.747,1885,1,6,4,18,24,3.65,15.0,fr,51441,37,2192176,1,1,Active Shallow Crust,240.0007,58.01323,0.0,01/06/1885 +7.32589,46.747,4805,10,24,8,57,47,3.65,5.0,fr,51442,96,2192178,1,2,Active Shallow Crust,0.0,89.98754,-90.0,10/24/4805 +7.32589,46.747,5880,12,4,23,13,49,3.65,5.0,fr,51443,117,2192178,1,2,Active Shallow Crust,0.0,89.98754,-90.0,12/04/5880 +7.32589,46.747,7360,6,17,20,47,59,3.65,15.0,fr,51444,147,2192182,1,1,Active Shallow Crust,128.9005,89.96353,0.0,06/17/7360 +7.32589,46.747,4858,5,30,23,34,9,3.75,5.0,fr,51445,97,2192184,1,3,Active Shallow Crust,0.0,89.98902,0.0,05/30/4858 +7.32589,46.747,772,10,23,8,26,37,3.75,5.0,fr,51446,15,2192184,1,3,Active Shallow Crust,0.0,89.98902,0.0,10/23/0772 +7.32589,46.747,7914,11,30,9,54,28,3.75,5.0,fr,51447,158,2192184,1,3,Active Shallow Crust,0.0,89.98902,0.0,11/30/7914 +7.32589,46.747,3499,5,30,13,55,56,3.75,15.0,fr,51448,69,2192185,1,2,Active Shallow Crust,0.0,89.98902,0.0,05/30/3499 +7.32589,46.747,8297,4,19,21,51,52,3.75,15.0,fr,51449,165,2192185,1,2,Active Shallow Crust,0.0,89.98902,0.0,04/19/8297 +7.32589,46.747,9881,3,21,12,13,3,3.75,27.5,fr,51450,197,2192186,1,1,Active Shallow Crust,0.0,89.98902,0.0,03/21/9881 +7.32589,46.747,3458,8,11,11,29,55,3.75,5.0,fr,51451,69,2192187,1,1,Active Shallow Crust,240.0089,58.01735,0.0,08/11/3458 +7.32589,46.747,971,7,18,21,1,43,3.75,15.0,fr,51452,19,2192188,1,1,Active Shallow Crust,240.0089,58.01735,0.0,07/18/0971 +7.32589,46.747,2092,5,31,7,47,39,3.85,5.0,fr,51453,41,2192196,1,6,Active Shallow Crust,0.0,89.99022,0.0,05/31/2092 +7.32589,46.747,7556,12,24,2,54,41,3.85,5.0,fr,51454,151,2192196,1,6,Active Shallow Crust,0.0,89.99022,0.0,12/24/7556 +7.32589,46.747,9955,9,16,19,53,6,3.85,5.0,fr,51455,199,2192196,1,6,Active Shallow Crust,0.0,89.99022,0.0,09/16/9955 +7.32589,46.747,5895,12,19,16,48,26,3.85,5.0,fr,51456,117,2192196,1,6,Active Shallow Crust,0.0,89.99022,0.0,12/19/5895 +7.32589,46.747,5991,7,9,12,17,49,3.85,5.0,fr,51457,119,2192196,1,6,Active Shallow Crust,0.0,89.99022,0.0,07/09/5991 +7.32589,46.747,5563,10,17,9,13,34,3.85,5.0,fr,51458,111,2192196,1,6,Active Shallow Crust,0.0,89.99022,0.0,10/17/5563 +7.32589,46.747,4520,2,16,17,38,24,3.85,15.0,fr,51459,90,2192197,1,1,Active Shallow Crust,0.0,89.99022,0.0,02/16/4520 +7.32589,46.747,6664,7,6,5,8,15,3.85,15.0,fr,51460,133,2192200,1,1,Active Shallow Crust,240.0111,57.99753,0.0,07/06/6664 +7.32589,46.747,2458,7,19,17,21,55,3.85,5.0,fr,51461,49,2192202,1,1,Active Shallow Crust,0.0,89.9901,-90.0,07/19/2458 +7.32589,46.747,3006,4,30,18,11,45,3.85,15.0,fr,51462,60,2192206,1,1,Active Shallow Crust,128.8953,89.99266,0.0,04/30/3006 +7.32589,46.747,2668,12,4,10,10,43,3.95,5.0,fr,51463,53,2192208,1,2,Active Shallow Crust,0.0,89.99128,0.0,12/04/2668 +7.32589,46.747,2572,12,11,0,7,45,3.95,5.0,fr,51464,51,2192208,1,2,Active Shallow Crust,0.0,89.99128,0.0,12/11/2572 +7.32589,46.747,7541,8,20,8,31,57,3.95,15.0,fr,51465,150,2192209,1,1,Active Shallow Crust,0.0,89.99128,0.0,08/20/7541 +7.32589,46.747,6991,4,15,10,36,50,3.95,27.5,fr,51466,139,2192210,1,1,Active Shallow Crust,0.0,89.99128,0.0,04/15/6991 +7.32589,46.747,4817,7,24,11,22,14,4.05,5.0,fr,51467,96,2192220,1,1,Active Shallow Crust,0.0,89.98834,0.0,07/24/4817 +7.32589,46.747,175,4,9,20,37,40,4.05,27.5,fr,51468,3,2192222,1,1,Active Shallow Crust,0.0,89.98834,0.0,04/09/0175 +7.32589,46.747,5803,8,31,20,49,7,4.15,5.0,fr,51469,116,2192232,1,5,Active Shallow Crust,0.0,89.98961,0.0,08/31/5803 +7.32589,46.747,1951,3,21,9,41,40,4.15,5.0,fr,51470,39,2192232,1,5,Active Shallow Crust,0.0,89.98961,0.0,03/21/1951 +7.32589,46.747,7985,2,28,8,21,18,4.15,5.0,fr,51471,159,2192232,1,5,Active Shallow Crust,0.0,89.98961,0.0,02/28/7985 +7.32589,46.747,1538,10,11,11,25,55,4.15,5.0,fr,51472,30,2192232,1,5,Active Shallow Crust,0.0,89.98961,0.0,10/11/1538 +7.32589,46.747,4725,6,10,20,6,0,4.15,5.0,fr,51473,94,2192232,1,5,Active Shallow Crust,0.0,89.98961,0.0,06/10/4725 +7.32589,46.747,657,7,10,17,47,15,4.25,5.0,fr,51474,13,2192244,1,2,Active Shallow Crust,0.0,89.99074,0.0,07/10/0657 +7.32589,46.747,2534,7,19,17,28,44,4.25,5.0,fr,51475,50,2192244,1,2,Active Shallow Crust,0.0,89.99074,0.0,07/19/2534 +7.32589,46.747,1924,6,25,8,59,8,4.25,15.0,fr,51476,38,2192248,1,1,Active Shallow Crust,240.0071,57.99448,0.0,06/25/1924 +7.32589,46.747,1107,11,1,6,35,38,4.35,5.0,fr,51477,22,2192256,1,3,Active Shallow Crust,0.0,89.989,0.0,11/01/1107 +7.32589,46.747,1310,8,17,4,31,38,4.35,5.0,fr,51478,26,2192256,1,3,Active Shallow Crust,0.0,89.989,0.0,08/17/1310 +7.32589,46.747,9508,12,19,4,18,21,4.35,5.0,fr,51479,190,2192256,1,3,Active Shallow Crust,0.0,89.989,0.0,12/19/9508 +7.32589,46.747,4431,6,18,11,57,54,4.35,5.0,fr,51480,88,2192265,1,1,Active Shallow Crust,128.8971,89.98302,0.0,06/18/4431 +7.32589,46.747,6457,6,24,6,11,26,4.45,5.0,fr,51481,129,2192268,1,1,Active Shallow Crust,0.0,89.9902,0.0,06/24/6457 +7.32589,46.747,6798,3,21,23,59,11,4.45,5.0,fr,51482,135,2192271,1,1,Active Shallow Crust,240.0056,57.99478,0.0,03/21/6798 +7.32589,46.747,3705,12,26,13,40,26,4.45,15.0,fr,51483,74,2192275,1,1,Active Shallow Crust,0.0,89.99008,-90.0,12/26/3705 +7.32589,46.747,8174,2,17,8,37,21,4.55,5.0,fr,51484,163,2192280,1,1,Active Shallow Crust,0.0,89.98907,0.0,02/17/8174 +7.32589,46.747,487,7,19,21,25,9,4.55,5.0,fr,51485,9,2192283,1,1,Active Shallow Crust,240.0091,57.99734,0.0,07/19/0487 +7.32589,46.747,1231,6,3,0,43,4,4.55,5.0,fr,51486,24,2192289,1,1,Active Shallow Crust,128.8938,89.98566,0.0,06/03/1231 +7.32589,46.747,1021,1,13,2,49,3,4.85,5.0,fr,51487,20,2192316,1,1,Active Shallow Crust,0.0,89.99072,0.0,01/13/1021 +7.32589,46.747,4689,2,2,10,30,4,5.05,5.0,fr,51488,93,2192346,1,1,Active Shallow Crust,0.0,89.99005,-90.0,02/02/4689 +7.32589,46.747,9870,2,9,14,40,58,5.25,15.0,fr,51489,197,2192365,1,1,Active Shallow Crust,0.0,89.99023,0.0,02/09/9870 +-0.72867,44.60472,3016,1,13,17,12,14,4.15,15.0,fr,51490,60,2192713,1,1,Active Shallow Crust,0.0,89.9901,0.0,01/13/3016 +1.74159,50.49324,6710,3,1,7,2,55,3.55,5.0,fr,51491,134,2193126,1,1,Active Shallow Crust,0.0,89.99026,-90.0,03/01/6710 +1.74159,50.49324,4341,5,10,0,45,53,3.65,5.0,fr,51492,86,2193138,1,1,Active Shallow Crust,0.0,89.98988,-90.0,05/10/4341 +1.74159,50.49324,7158,4,21,12,28,56,3.75,5.0,fr,51493,143,2193144,1,2,Active Shallow Crust,0.0,89.98981,0.0,04/21/7158 +1.74159,50.49324,1343,12,25,14,31,58,3.75,5.0,fr,51494,26,2193144,1,2,Active Shallow Crust,0.0,89.98981,0.0,12/25/1343 +1.74159,50.49324,4985,2,28,6,27,5,3.75,5.0,fr,51495,99,2193147,1,1,Active Shallow Crust,240.0089,58.01769,0.0,02/28/4985 +1.74159,50.49324,1485,8,3,2,11,9,4.25,5.0,fr,51496,29,2193204,1,1,Active Shallow Crust,0.0,89.98997,0.0,08/03/1485 +1.74159,50.49324,2466,9,10,17,57,21,4.25,5.0,fr,51497,49,2193210,1,1,Active Shallow Crust,0.0,89.98985,-90.0,09/10/2466 +1.74159,50.49324,9528,8,19,3,19,28,4.65,5.0,fr,51498,190,2193252,1,1,Active Shallow Crust,0.0,89.99005,0.0,08/19/9528 +2.39601,47.11349,7387,7,7,7,4,5,3.65,27.5,fr,51499,147,2193623,1,1,Active Shallow Crust,128.9003,89.96354,0.0,07/07/7387 +2.39601,47.11349,8186,10,17,4,29,38,3.95,27.5,fr,51500,163,2193650,1,1,Active Shallow Crust,0.0,89.98917,0.0,10/17/8186 +2.39601,47.11349,6438,2,25,12,48,17,3.95,5.0,fr,51501,128,2193657,1,1,Active Shallow Crust,128.9001,89.99351,0.0,02/25/6438 +2.39601,47.11349,2028,6,23,8,51,1,4.05,5.0,fr,51502,40,2193660,1,1,Active Shallow Crust,0.0,89.99035,0.0,06/23/2028 +2.39601,47.11349,4324,11,30,8,39,36,4.45,5.0,fr,51503,86,2193711,1,1,Active Shallow Crust,240.0054,57.99454,0.0,11/30/4324 +2.32181,44.22848,1048,4,28,10,36,12,3.65,5.0,fr,51504,20,2194572,1,1,Active Shallow Crust,0.0,89.99034,0.0,04/28/1048 +2.32181,44.22848,2062,5,12,18,50,21,3.65,15.0,fr,51505,41,2194573,1,1,Active Shallow Crust,0.0,89.99034,0.0,05/12/2062 +2.32181,44.22848,964,9,8,17,10,7,3.75,5.0,fr,51506,19,2194593,1,1,Active Shallow Crust,128.8966,89.96745,0.0,09/08/0964 +2.32181,44.22848,1176,9,18,3,6,19,3.85,5.0,fr,51507,23,2194596,1,1,Active Shallow Crust,0.0,89.98977,0.0,09/18/1176 +2.32181,44.22848,6361,4,3,22,48,43,3.85,15.0,fr,51508,127,2194597,1,1,Active Shallow Crust,0.0,89.98977,0.0,04/03/6361 +2.32181,44.22848,4703,8,30,18,2,36,3.85,5.0,fr,51509,94,2194599,1,1,Active Shallow Crust,240.0106,57.99752,0.0,08/30/4703 +2.32181,44.22848,2818,11,25,22,36,51,4.95,5.0,fr,51510,56,2194728,1,1,Active Shallow Crust,0.0,89.98991,0.0,11/25/2818 +2.32181,44.22848,1227,5,30,13,24,10,5.15,5.0,fr,51511,24,2194752,1,1,Active Shallow Crust,0.0,89.99026,0.0,05/30/1227 +2.32181,44.22848,8884,9,4,3,36,15,5.95,5.0,fr,51512,177,2194848,1,1,Active Shallow Crust,0.0,89.98996,0.0,09/04/8884 +7.00166,44.34953,8266,2,21,16,19,49,3.55,5.0,fr,51513,165,2195040,1,6,Active Shallow Crust,0.0,89.99279,0.0,02/21/8266 +7.00166,44.34953,7342,4,25,3,26,41,3.55,5.0,fr,51514,146,2195040,1,6,Active Shallow Crust,0.0,89.99279,0.0,04/25/7342 +7.00166,44.34953,5650,3,26,9,42,22,3.55,5.0,fr,51515,112,2195040,1,6,Active Shallow Crust,0.0,89.99279,0.0,03/26/5650 +7.00166,44.34953,9262,7,8,11,43,56,3.55,5.0,fr,51516,185,2195040,1,6,Active Shallow Crust,0.0,89.99279,0.0,07/08/9262 +7.00166,44.34953,2828,2,5,1,7,36,3.55,5.0,fr,51517,56,2195040,1,6,Active Shallow Crust,0.0,89.99279,0.0,02/05/2828 +7.00166,44.34953,2982,3,11,13,19,24,3.55,5.0,fr,51518,59,2195040,1,6,Active Shallow Crust,0.0,89.99279,0.0,03/11/2982 +7.00166,44.34953,838,9,2,6,47,55,3.55,15.0,fr,51519,16,2195041,1,1,Active Shallow Crust,0.0,89.99279,0.0,09/02/0838 +7.00166,44.34953,4616,8,19,4,20,53,3.55,27.5,fr,51520,92,2195042,1,1,Active Shallow Crust,0.0,89.99279,0.0,08/19/4616 +7.00166,44.34953,165,2,3,19,36,33,3.55,5.0,fr,51521,3,2195046,1,1,Active Shallow Crust,0.0,89.99271,-90.0,02/03/0165 +7.00166,44.34953,4047,6,12,2,34,45,3.65,5.0,fr,51522,80,2195052,1,4,Active Shallow Crust,0.0,89.98714,0.0,06/12/4047 +7.00166,44.34953,7454,3,7,0,8,53,3.65,5.0,fr,51523,149,2195052,1,4,Active Shallow Crust,0.0,89.98714,0.0,03/07/7454 +7.00166,44.34953,9737,12,6,3,48,49,3.65,5.0,fr,51524,194,2195052,1,4,Active Shallow Crust,0.0,89.98714,0.0,12/06/9737 +7.00166,44.34953,649,6,23,6,22,32,3.65,5.0,fr,51525,12,2195052,1,4,Active Shallow Crust,0.0,89.98714,0.0,06/23/0649 +7.00166,44.34953,2843,5,8,23,30,18,3.65,15.0,fr,51526,56,2195056,1,1,Active Shallow Crust,240.0022,58.01197,0.0,05/08/2843 +7.00166,44.34953,8533,10,27,4,58,5,3.75,27.5,fr,51527,170,2195066,1,2,Active Shallow Crust,0.0,89.98854,0.0,10/27/8533 +7.00166,44.34953,3956,4,5,14,43,24,3.75,27.5,fr,51528,79,2195066,1,2,Active Shallow Crust,0.0,89.98854,0.0,04/05/3956 +7.00166,44.34953,767,12,13,21,59,10,3.75,5.0,fr,51529,15,2195067,1,1,Active Shallow Crust,240.0076,58.01726,0.0,12/13/0767 +7.00166,44.34953,3146,7,31,12,55,54,3.75,5.0,fr,51530,62,2195073,1,1,Active Shallow Crust,128.8976,89.96683,0.0,07/31/3146 +7.00166,44.34953,6956,11,13,20,29,24,3.85,5.0,fr,51531,139,2195076,1,2,Active Shallow Crust,0.0,89.98979,0.0,11/13/6956 +7.00166,44.34953,5458,10,22,12,24,40,3.85,5.0,fr,51532,109,2195076,1,2,Active Shallow Crust,0.0,89.98979,0.0,10/22/5458 +7.00166,44.34953,7205,7,1,21,29,38,3.85,27.5,fr,51533,144,2195078,1,1,Active Shallow Crust,0.0,89.98979,0.0,07/01/7205 +7.00166,44.34953,3369,4,14,6,4,36,3.85,15.0,fr,51534,67,2195086,1,1,Active Shallow Crust,128.8964,89.99234,0.0,04/14/3369 +7.00166,44.34953,451,3,4,1,25,22,3.95,15.0,fr,51535,9,2195092,1,1,Active Shallow Crust,240.0189,58.00509,0.0,03/04/0451 +7.00166,44.34953,3482,4,22,23,59,51,4.25,15.0,fr,51536,69,2195134,1,1,Active Shallow Crust,128.8952,89.98087,0.0,04/22/3482 +7.00166,44.34953,9598,2,20,7,4,25,4.35,5.0,fr,51537,191,2195136,1,1,Active Shallow Crust,0.0,89.99139,0.0,02/20/9598 +7.00166,44.34953,3134,4,29,3,16,53,4.35,5.0,fr,51538,62,2195145,1,2,Active Shallow Crust,128.8983,89.98241,0.0,04/29/3134 +7.00166,44.34953,6750,4,1,0,13,36,4.35,5.0,fr,51539,134,2195145,1,2,Active Shallow Crust,128.8983,89.98241,0.0,04/01/6750 +7.00166,44.34953,4509,12,14,15,23,54,4.35,27.5,fr,51540,90,2195147,1,1,Active Shallow Crust,128.8983,89.98241,0.0,12/14/4509 +7.00166,44.34953,3108,5,19,5,21,52,4.55,5.0,fr,51541,62,2195166,1,1,Active Shallow Crust,0.0,89.99078,-90.0,05/19/3108 +7.00166,44.34953,1014,1,19,7,0,9,4.55,15.0,fr,51542,20,2195167,1,1,Active Shallow Crust,0.0,89.99078,-90.0,01/19/1014 +7.00166,44.34953,7624,2,3,15,39,39,5.05,5.0,fr,51543,152,2195220,1,1,Active Shallow Crust,0.0,89.98974,0.0,02/03/7624 +7.00166,44.34953,9504,8,20,7,28,1,5.45,27.5,fr,51544,190,2195270,1,1,Active Shallow Crust,0.0,89.99029,0.0,08/20/9504 +7.44368,49.06033,7012,8,11,14,52,11,3.75,5.0,fr,51545,140,2195544,1,1,Active Shallow Crust,0.0,89.9895,0.0,08/11/7012 +7.44368,49.06033,1876,8,9,11,14,8,3.75,15.0,fr,51546,37,2195545,1,2,Active Shallow Crust,0.0,89.9895,0.0,08/09/1876 +7.44368,49.06033,6395,5,25,5,30,17,3.75,15.0,fr,51547,127,2195545,1,2,Active Shallow Crust,0.0,89.9895,0.0,05/25/6395 +7.44368,49.06033,9997,8,30,4,36,32,3.75,27.5,fr,51548,199,2195549,1,1,Active Shallow Crust,240.0084,58.01726,0.0,08/30/9997 +7.44368,49.06033,1028,9,24,15,53,52,3.85,27.5,fr,51549,20,2195567,1,1,Active Shallow Crust,128.8944,89.99532,0.0,09/24/1028 +7.44368,49.06033,4564,4,30,1,36,0,4.05,27.5,fr,51550,91,2195582,1,1,Active Shallow Crust,0.0,89.98885,0.0,04/30/4564 +1.86204,52.04335,2164,4,19,7,46,26,3.65,5.0,fr,51551,43,2196015,1,1,Active Shallow Crust,240.0016,58.01307,0.0,04/19/2164 +1.86204,52.04335,255,7,28,10,40,3,3.65,5.0,fr,51552,5,2196018,1,1,Active Shallow Crust,0.0,89.99021,-90.0,07/28/0255 +1.86204,52.04335,4113,5,2,10,22,26,3.95,5.0,fr,51553,82,2196048,1,1,Active Shallow Crust,0.0,89.99022,0.0,05/02/4113 +2.16452,42.88007,7924,11,13,9,29,48,3.55,5.0,fr,51554,158,2196960,1,6,Active Shallow Crust,0.0,89.98891,0.0,11/13/7924 +2.16452,42.88007,699,10,3,1,24,43,3.55,5.0,fr,51555,13,2196960,1,6,Active Shallow Crust,0.0,89.98891,0.0,10/03/0699 +2.16452,42.88007,9679,1,31,10,43,17,3.55,5.0,fr,51556,193,2196960,1,6,Active Shallow Crust,0.0,89.98891,0.0,01/31/9679 +2.16452,42.88007,7200,8,11,9,2,43,3.55,5.0,fr,51557,143,2196960,1,6,Active Shallow Crust,0.0,89.98891,0.0,08/11/7200 +2.16452,42.88007,5756,4,14,1,25,19,3.55,5.0,fr,51558,115,2196960,1,6,Active Shallow Crust,0.0,89.98891,0.0,04/14/5756 +2.16452,42.88007,952,8,15,10,13,40,3.55,5.0,fr,51559,19,2196960,1,6,Active Shallow Crust,0.0,89.98891,0.0,08/15/0952 +2.16452,42.88007,1835,2,5,2,24,14,3.55,15.0,fr,51560,36,2196964,1,1,Active Shallow Crust,240.0116,57.99805,0.0,02/05/1835 +2.16452,42.88007,2113,12,7,19,41,26,3.65,15.0,fr,51561,42,2196973,1,1,Active Shallow Crust,0.0,89.99012,0.0,12/07/2113 +2.16452,42.88007,5579,12,2,7,38,7,3.65,27.5,fr,51562,111,2196974,1,1,Active Shallow Crust,0.0,89.99012,0.0,12/02/5579 +2.16452,42.88007,7971,4,6,9,16,30,3.65,5.0,fr,51563,159,2196975,1,1,Active Shallow Crust,240.0009,58.01326,0.0,04/06/7971 +2.16452,42.88007,2298,2,11,19,56,11,3.65,5.0,fr,51564,45,2196978,1,1,Active Shallow Crust,0.0,89.99001,-90.0,02/11/2298 +2.16452,42.88007,9003,5,27,22,23,13,3.65,5.0,fr,51565,180,2196981,1,1,Active Shallow Crust,128.8999,89.96371,0.0,05/27/9003 +2.16452,42.88007,4751,10,2,3,13,36,3.75,5.0,fr,51566,95,2196984,1,1,Active Shallow Crust,0.0,89.9912,0.0,10/02/4751 +2.16452,42.88007,1157,10,13,2,52,27,3.75,5.0,fr,51567,23,2196993,1,2,Active Shallow Crust,128.897,89.96743,0.0,10/13/1157 +2.16452,42.88007,2919,8,1,12,58,44,3.75,5.0,fr,51568,58,2196993,1,2,Active Shallow Crust,128.897,89.96743,0.0,08/01/2919 +2.16452,42.88007,9109,11,27,13,26,19,3.95,5.0,fr,51569,182,2197008,1,2,Active Shallow Crust,0.0,89.99068,0.0,11/27/9109 +2.16452,42.88007,9027,7,3,10,16,17,3.95,5.0,fr,51570,180,2197008,1,2,Active Shallow Crust,0.0,89.99068,0.0,07/03/9027 +2.16452,42.88007,9035,11,30,14,44,20,3.95,15.0,fr,51571,180,2197009,1,1,Active Shallow Crust,0.0,89.99068,0.0,11/30/9035 +2.16452,42.88007,7254,5,20,1,43,14,3.95,5.0,fr,51572,145,2197011,1,1,Active Shallow Crust,240.0193,58.00498,0.0,05/20/7254 +2.16452,42.88007,6775,11,2,2,10,40,4.05,5.0,fr,51573,135,2197020,1,2,Active Shallow Crust,0.0,89.98961,0.0,11/02/6775 +2.16452,42.88007,4011,7,19,22,13,7,4.05,5.0,fr,51574,80,2197020,1,2,Active Shallow Crust,0.0,89.98961,0.0,07/19/4011 +2.16452,42.88007,9613,5,28,9,11,25,4.05,15.0,fr,51575,192,2197021,1,1,Active Shallow Crust,0.0,89.98961,0.0,05/28/9613 +2.16452,42.88007,4106,7,22,20,6,3,4.25,5.0,fr,51576,82,2197044,1,2,Active Shallow Crust,0.0,89.9901,0.0,07/22/4106 +2.16452,42.88007,2110,4,30,8,50,54,4.25,5.0,fr,51577,42,2197044,1,2,Active Shallow Crust,0.0,89.9901,0.0,04/30/2110 +2.16452,42.88007,5718,4,9,10,43,12,4.45,5.0,fr,51578,114,2197068,1,1,Active Shallow Crust,0.0,89.98951,0.0,04/09/5718 +2.16452,42.88007,3478,10,18,10,36,9,5.05,15.0,fr,51579,69,2197141,1,1,Active Shallow Crust,0.0,89.99014,0.0,10/18/3478 +4.11894,42.37491,6387,4,23,23,32,0,3.55,5.0,fr,51580,127,2197440,1,2,Active Shallow Crust,0.0,89.99255,0.0,04/23/6387 +4.11894,42.37491,6643,11,1,20,44,27,3.55,5.0,fr,51581,132,2197440,1,2,Active Shallow Crust,0.0,89.99255,0.0,11/01/6643 +4.11894,42.37491,5588,8,20,2,47,32,3.75,5.0,fr,51582,111,2197464,1,1,Active Shallow Crust,0.0,89.98817,0.0,08/20/5588 +4.11894,42.37491,7423,1,14,7,52,22,3.95,5.0,fr,51583,148,2197488,1,1,Active Shallow Crust,0.0,89.9906,0.0,01/14/7423 +4.11894,42.37491,5226,10,29,12,48,37,4.05,15.0,fr,51584,104,2197501,1,1,Active Shallow Crust,0.0,89.99162,0.0,10/29/5226 +1.44056,48.25424,8394,5,14,4,16,20,3.55,5.0,fr,51585,167,2197920,1,1,Active Shallow Crust,0.0,89.98993,0.0,05/14/8394 +1.44056,48.25424,7605,12,18,23,17,21,3.75,5.0,fr,51586,152,2197944,1,1,Active Shallow Crust,0.0,89.98933,0.0,12/18/7605 +1.44056,48.25424,4449,10,13,20,36,15,3.75,15.0,fr,51587,88,2197945,1,1,Active Shallow Crust,0.0,89.98933,0.0,10/13/4449 +1.44056,48.25424,3969,2,4,9,3,32,4.45,5.0,fr,51588,79,2198028,1,1,Active Shallow Crust,0.0,89.98988,0.0,02/04/3969 +-1.24171,49.02016,7405,10,18,5,34,39,3.55,5.0,fr,51589,148,2198400,1,1,Active Shallow Crust,0.0,89.99008,0.0,10/18/7405 +-1.24171,49.02016,8311,4,19,19,56,10,3.65,5.0,fr,51590,166,2198412,1,2,Active Shallow Crust,0.0,89.98969,0.0,04/19/8311 +-1.24171,49.02016,165,5,24,1,16,48,3.65,5.0,fr,51591,3,2198412,1,2,Active Shallow Crust,0.0,89.98969,0.0,05/24/0165 +-1.24171,49.02016,6476,8,4,3,52,38,3.65,15.0,fr,51592,129,2198413,1,3,Active Shallow Crust,0.0,89.98969,0.0,08/04/6476 +-1.24171,49.02016,1079,2,6,16,48,34,3.65,15.0,fr,51593,21,2198413,1,3,Active Shallow Crust,0.0,89.98969,0.0,02/06/1079 +-1.24171,49.02016,1867,2,12,2,55,48,3.65,15.0,fr,51594,37,2198413,1,3,Active Shallow Crust,0.0,89.98969,0.0,02/12/1867 +-1.24171,49.02016,6724,2,9,21,15,54,3.75,5.0,fr,51595,134,2198424,1,1,Active Shallow Crust,0.0,89.98949,0.0,02/09/6724 +-1.24171,49.02016,8019,8,13,22,2,7,3.75,15.0,fr,51596,160,2198425,1,1,Active Shallow Crust,0.0,89.98949,0.0,08/13/8019 +-1.24171,49.02016,2085,12,24,23,18,30,3.85,15.0,fr,51597,41,2198437,1,2,Active Shallow Crust,0.0,89.98946,0.0,12/24/2085 +-1.24171,49.02016,9045,3,14,9,18,38,3.85,15.0,fr,51598,180,2198437,1,2,Active Shallow Crust,0.0,89.98946,0.0,03/14/9045 +-1.24171,49.02016,9960,5,15,2,5,0,3.85,5.0,fr,51599,199,2198439,1,1,Active Shallow Crust,240.0113,57.99783,0.0,05/15/9960 +-1.24171,49.02016,2372,2,14,10,18,14,3.95,5.0,fr,51600,47,2198448,1,1,Active Shallow Crust,0.0,89.98957,0.0,02/14/2372 +-1.24171,49.02016,5117,6,18,1,13,58,3.95,5.0,fr,51601,102,2198454,1,1,Active Shallow Crust,0.0,89.9905,-90.0,06/18/5117 +-1.24171,49.02016,9067,10,30,15,43,8,4.05,5.0,fr,51602,181,2198460,1,1,Active Shallow Crust,0.0,89.98978,0.0,10/30/9067 +-1.24171,49.02016,2817,6,2,18,58,31,4.25,5.0,fr,51603,56,2198484,1,1,Active Shallow Crust,0.0,89.98966,0.0,06/02/2817 +-1.24171,49.02016,9838,2,3,10,22,15,4.25,15.0,fr,51604,196,2198491,1,1,Active Shallow Crust,0.0,89.99029,-90.0,02/03/9838 +-1.24171,49.02016,4013,4,18,18,12,24,4.35,15.0,fr,51605,80,2198497,1,1,Active Shallow Crust,0.0,89.99013,0.0,04/18/4013 +-1.24171,49.02016,2078,11,19,15,40,18,4.35,15.0,fr,51606,41,2198500,1,1,Active Shallow Crust,240.0091,57.99596,0.0,11/19/2078 +-1.24171,49.02016,4362,2,18,5,28,48,4.65,5.0,fr,51607,87,2198532,1,1,Active Shallow Crust,0.0,89.99021,0.0,02/18/4362 +-2.3341,49.74131,716,10,15,19,55,24,3.65,5.0,fr,51608,14,2198895,1,1,Active Shallow Crust,240.0017,58.01249,0.0,10/15/0716 +-2.3341,49.74131,9339,4,22,20,10,30,4.55,15.0,fr,51609,186,2199004,1,1,Active Shallow Crust,240.0101,57.99767,0.0,04/22/9339 +6.58969,47.1762,7849,11,25,14,49,47,3.55,5.0,fr,51610,156,2199360,1,2,Active Shallow Crust,0.0,89.99315,0.0,11/25/7849 +6.58969,47.1762,6714,7,24,16,8,26,3.55,5.0,fr,51611,134,2199360,1,2,Active Shallow Crust,0.0,89.99315,0.0,07/24/6714 +6.58969,47.1762,1306,5,6,17,2,52,3.55,15.0,fr,51612,26,2199361,1,2,Active Shallow Crust,0.0,89.99315,0.0,05/06/1306 +6.58969,47.1762,3336,10,4,14,27,33,3.55,15.0,fr,51613,66,2199361,1,2,Active Shallow Crust,0.0,89.99315,0.0,10/04/3336 +6.58969,47.1762,5097,4,10,9,58,39,3.55,27.5,fr,51614,101,2199362,1,1,Active Shallow Crust,0.0,89.99315,0.0,04/10/5097 +6.58969,47.1762,5699,10,12,16,9,20,3.65,5.0,fr,51615,113,2199372,1,4,Active Shallow Crust,0.0,89.98779,0.0,10/12/5699 +6.58969,47.1762,7503,10,5,21,28,40,3.65,5.0,fr,51616,150,2199372,1,4,Active Shallow Crust,0.0,89.98779,0.0,10/05/7503 +6.58969,47.1762,6274,3,20,7,18,57,3.65,5.0,fr,51617,125,2199372,1,4,Active Shallow Crust,0.0,89.98779,0.0,03/20/6274 +6.58969,47.1762,3511,6,5,22,3,44,3.65,5.0,fr,51618,70,2199372,1,4,Active Shallow Crust,0.0,89.98779,0.0,06/05/3511 +6.58969,47.1762,7006,2,16,14,58,57,3.65,5.0,fr,51619,140,2199381,1,1,Active Shallow Crust,128.8997,89.96354,0.0,02/16/7006 +6.58969,47.1762,9071,4,18,9,39,42,3.75,5.0,fr,51620,181,2199384,1,1,Active Shallow Crust,0.0,89.98911,0.0,04/18/9071 +6.58969,47.1762,8947,12,15,18,15,6,3.75,15.0,fr,51621,178,2199385,1,1,Active Shallow Crust,0.0,89.98911,0.0,12/15/8947 +6.58969,47.1762,2017,8,8,1,24,52,3.75,27.5,fr,51622,40,2199386,1,1,Active Shallow Crust,0.0,89.98911,0.0,08/08/2017 +6.58969,47.1762,8845,2,1,14,34,2,3.75,5.0,fr,51623,176,2199393,1,1,Active Shallow Crust,128.8965,89.9675,0.0,02/01/8845 +6.58969,47.1762,2251,9,9,3,37,12,3.85,15.0,fr,51624,45,2199397,1,1,Active Shallow Crust,0.0,89.9903,0.0,09/09/2251 +6.58969,47.1762,8656,2,12,0,13,35,3.85,27.5,fr,51625,173,2199401,1,1,Active Shallow Crust,240.0107,57.99856,0.0,02/12/8656 +6.58969,47.1762,2940,8,1,11,51,51,3.85,15.0,fr,51626,58,2199406,1,2,Active Shallow Crust,128.8966,89.99272,0.0,08/01/2940 +6.58969,47.1762,5596,8,5,7,53,49,3.85,15.0,fr,51627,111,2199406,1,2,Active Shallow Crust,128.8966,89.99272,0.0,08/05/5596 +6.58969,47.1762,3775,7,9,9,5,2,3.95,5.0,fr,51628,75,2199408,1,1,Active Shallow Crust,0.0,89.99135,0.0,07/09/3775 +6.58969,47.1762,3537,10,1,3,12,4,4.05,15.0,fr,51629,70,2199421,1,3,Active Shallow Crust,0.0,89.98843,0.0,10/01/3537 +6.58969,47.1762,4468,6,30,17,20,38,4.05,15.0,fr,51630,89,2199421,1,3,Active Shallow Crust,0.0,89.98843,0.0,06/30/4468 +6.58969,47.1762,9059,1,14,7,8,48,4.05,15.0,fr,51631,181,2199421,1,3,Active Shallow Crust,0.0,89.98843,0.0,01/14/9059 +6.58969,47.1762,4118,2,17,2,2,55,4.05,27.5,fr,51632,82,2199422,1,2,Active Shallow Crust,0.0,89.98843,0.0,02/17/4118 +6.58969,47.1762,1613,7,3,10,20,9,4.05,27.5,fr,51633,32,2199422,1,2,Active Shallow Crust,0.0,89.98843,0.0,07/03/1613 +6.58969,47.1762,5102,11,16,13,4,33,4.05,27.5,fr,51634,102,2199425,1,1,Active Shallow Crust,240.0057,58.00631,0.0,11/16/5102 +6.58969,47.1762,5784,4,8,15,3,27,4.15,5.0,fr,51635,115,2199432,1,1,Active Shallow Crust,0.0,89.98969,0.0,04/08/5784 +6.58969,47.1762,4599,9,19,0,4,52,4.15,15.0,fr,51636,91,2199433,1,1,Active Shallow Crust,0.0,89.98969,0.0,09/19/4599 +6.58969,47.1762,6760,3,28,19,2,41,4.55,5.0,fr,51637,135,2199480,1,2,Active Shallow Crust,0.0,89.98916,0.0,03/28/6760 +6.58969,47.1762,7510,4,15,14,46,32,4.55,5.0,fr,51638,150,2199480,1,2,Active Shallow Crust,0.0,89.98916,0.0,04/15/7510 +6.58969,47.1762,5304,3,30,11,53,9,4.65,15.0,fr,51639,106,2199493,1,1,Active Shallow Crust,0.0,89.99034,0.0,03/30/5304 +6.58969,47.1762,3968,7,2,14,47,25,4.65,15.0,fr,51640,79,2199499,1,1,Active Shallow Crust,0.0,89.99023,-90.0,07/02/3968 +6.58969,47.1762,4783,2,6,15,19,51,4.75,27.5,fr,51641,95,2199506,1,1,Active Shallow Crust,0.0,89.98967,0.0,02/06/4783 +1.3031,50.47653,744,10,10,3,9,57,3.55,15.0,fr,51642,14,2199841,1,1,Active Shallow Crust,0.0,89.99037,0.0,10/10/0744 +1.3031,50.47653,9229,12,21,6,44,36,3.55,27.5,fr,51643,184,2199842,1,1,Active Shallow Crust,0.0,89.99037,0.0,12/21/9229 +1.3031,50.47653,9835,12,13,4,36,55,3.55,5.0,fr,51644,196,2199843,1,1,Active Shallow Crust,240.0126,57.9982,0.0,12/13/9835 +1.3031,50.47653,7123,2,28,20,3,56,3.75,5.0,fr,51645,142,2199867,1,1,Active Shallow Crust,240.0088,58.01758,0.0,02/28/7123 +1.3031,50.47653,5857,2,15,13,34,51,3.95,15.0,fr,51646,117,2199889,1,1,Active Shallow Crust,0.0,89.98988,0.0,02/15/5857 +1.3031,50.47653,2643,12,11,9,17,1,4.15,5.0,fr,51647,52,2199915,1,1,Active Shallow Crust,240.0094,57.99745,0.0,12/11/2643 +1.3031,50.47653,937,4,9,11,14,14,4.25,5.0,fr,51648,18,2199924,1,2,Active Shallow Crust,0.0,89.98997,0.0,04/09/0937 +1.3031,50.47653,3017,8,27,13,1,39,4.25,5.0,fr,51649,60,2199924,1,2,Active Shallow Crust,0.0,89.98997,0.0,08/27/3017 +1.3031,50.47653,6812,8,14,18,46,49,4.35,15.0,fr,51650,136,2199937,1,1,Active Shallow Crust,0.0,89.98978,0.0,08/14/6812 +1.3031,50.47653,1857,8,3,17,35,21,5.15,5.0,fr,51651,37,2200035,1,1,Active Shallow Crust,240.0221,58.0004,0.0,08/03/1857 +1.3031,50.47653,8941,8,30,20,22,44,5.95,15.0,fr,51652,178,2200135,1,1,Active Shallow Crust,0.0,89.98996,-90.0,08/30/8941 +4.64391,51.67154,9328,7,20,17,5,0,3.55,15.0,fr,51653,186,2200321,1,1,Active Shallow Crust,0.0,89.9875,0.0,07/20/9328 +4.64391,51.67154,6541,6,27,23,8,30,4.35,5.0,fr,51654,130,2200416,1,1,Active Shallow Crust,0.0,89.99004,0.0,06/27/6541 +1.38529,50.60971,4017,12,26,22,44,56,3.65,5.0,fr,51655,80,2200812,1,1,Active Shallow Crust,0.0,89.99002,0.0,12/26/4017 +1.38529,50.60971,1977,7,16,1,24,16,3.75,15.0,fr,51656,39,2200825,1,1,Active Shallow Crust,0.0,89.98983,0.0,07/16/1977 +1.38529,50.60971,4570,5,8,10,40,7,3.85,5.0,fr,51657,91,2200839,1,1,Active Shallow Crust,240.0113,57.99793,0.0,05/08/4570 +1.38529,50.60971,5175,8,11,14,35,53,4.25,15.0,fr,51658,103,2200885,1,1,Active Shallow Crust,0.0,89.99,0.0,08/11/5175 +1.38529,50.60971,3758,2,2,4,53,48,5.05,5.0,fr,51659,75,2200980,1,1,Active Shallow Crust,0.0,89.99004,0.0,02/02/3758 +1.38529,50.60971,975,5,5,4,16,43,5.15,15.0,fr,51660,19,2200993,1,1,Active Shallow Crust,0.0,89.9901,0.0,05/05/0975 +1.38529,50.60971,3426,7,29,19,25,48,5.75,5.0,fr,51661,68,2201073,1,1,Active Shallow Crust,128.8671,89.99102,0.0,07/29/3426 +1.38529,50.60971,9727,9,30,6,9,21,6.55,15.0,fr,51662,194,2201161,1,1,Active Shallow Crust,360.0,89.99001,0.0,09/30/9727 +7.50875,50.93461,6072,10,12,1,5,5,3.75,5.0,fr,51663,121,2201304,1,1,Active Shallow Crust,0.0,89.98991,0.0,10/12/6072 +4.59628,44.57024,5805,1,9,21,23,29,3.55,27.5,fr,51664,116,2202731,1,1,Active Shallow Crust,128.8961,89.99641,0.0,01/09/5805 +4.59628,44.57024,6455,11,11,0,42,31,3.65,5.0,fr,51665,129,2202738,1,1,Active Shallow Crust,0.0,89.98705,-90.0,11/11/6455 +4.59628,44.57024,2572,9,16,0,47,35,3.75,5.0,fr,51666,51,2202744,1,2,Active Shallow Crust,0.0,89.98859,0.0,09/16/2572 +4.59628,44.57024,1643,3,25,14,35,10,3.75,5.0,fr,51667,32,2202744,1,2,Active Shallow Crust,0.0,89.98859,0.0,03/25/1643 +4.59628,44.57024,2658,1,10,0,39,44,3.75,15.0,fr,51668,53,2202745,1,1,Active Shallow Crust,0.0,89.98859,0.0,01/10/2658 +4.59628,44.57024,3951,7,25,5,15,13,3.75,27.5,fr,51669,79,2202746,1,1,Active Shallow Crust,0.0,89.98859,0.0,07/25/3951 +4.59628,44.57024,5840,3,11,12,40,18,3.85,5.0,fr,51670,116,2202756,1,2,Active Shallow Crust,0.0,89.98983,0.0,03/11/5840 +4.59628,44.57024,73,8,30,6,44,1,3.85,5.0,fr,51671,1,2202756,1,2,Active Shallow Crust,0.0,89.98983,0.0,08/30/0073 +4.59628,44.57024,5386,11,1,11,11,4,3.85,27.5,fr,51672,107,2202758,1,1,Active Shallow Crust,0.0,89.98983,0.0,11/01/5386 +4.59628,44.57024,4344,2,1,3,8,51,3.95,5.0,fr,51673,86,2202768,1,2,Active Shallow Crust,0.0,89.99094,0.0,02/01/4344 +4.59628,44.57024,4128,4,1,9,48,39,3.95,5.0,fr,51674,82,2202768,1,2,Active Shallow Crust,0.0,89.99094,0.0,04/01/4128 +4.59628,44.57024,2286,12,24,7,1,23,3.95,15.0,fr,51675,45,2202769,1,2,Active Shallow Crust,0.0,89.99094,0.0,12/24/2286 +4.59628,44.57024,8025,2,20,17,59,39,3.95,15.0,fr,51676,160,2202769,1,2,Active Shallow Crust,0.0,89.99094,0.0,02/20/8025 +4.59628,44.57024,9261,11,15,21,21,34,3.95,5.0,fr,51677,185,2202777,1,1,Active Shallow Crust,128.9009,89.9932,0.0,11/15/9261 +4.59628,44.57024,1416,4,9,10,16,38,4.15,15.0,fr,51678,28,2202793,1,1,Active Shallow Crust,0.0,89.9892,0.0,04/09/1416 +4.59628,44.57024,623,12,27,5,58,58,4.25,27.5,fr,51679,12,2202806,1,1,Active Shallow Crust,0.0,89.99037,0.0,12/27/0623 +4.59628,44.57024,3289,1,6,15,6,54,4.25,5.0,fr,51680,65,2202810,1,1,Active Shallow Crust,0.0,89.99026,-90.0,01/06/3289 +4.59628,44.57024,4083,10,19,18,19,19,4.35,5.0,fr,51681,81,2202816,1,1,Active Shallow Crust,0.0,89.99142,0.0,10/19/4083 +4.59628,44.57024,291,5,8,21,35,40,4.35,5.0,fr,51682,5,2202819,1,1,Active Shallow Crust,240.008,57.99578,0.0,05/08/0291 +4.59628,44.57024,3206,3,17,2,53,27,4.55,5.0,fr,51683,64,2202840,1,1,Active Shallow Crust,0.0,89.99091,0.0,03/17/3206 +4.59628,44.57024,4460,9,12,5,16,44,4.65,15.0,fr,51684,89,2202853,1,1,Active Shallow Crust,0.0,89.98988,0.0,09/12/4460 +4.59628,44.57024,7928,4,2,10,59,23,4.85,15.0,fr,51685,158,2202886,1,1,Active Shallow Crust,128.8933,89.98891,0.0,04/02/7928 +4.59628,44.57024,1301,6,8,4,33,41,5.15,15.0,fr,51686,26,2202913,1,1,Active Shallow Crust,0.0,89.98975,0.0,06/08/1301 +4.59628,44.57024,8691,9,1,17,9,55,5.15,5.0,fr,51687,173,2202915,1,1,Active Shallow Crust,240.0185,57.9998,0.0,09/01/8691 +3.60631,51.05835,7729,2,28,13,9,1,3.95,5.0,fr,51688,154,2203248,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/28/7729 +3.60631,51.05835,9703,7,13,4,44,41,5.85,15.0,fr,51689,194,2203483,1,1,Active Shallow Crust,0.0,89.99001,-90.0,07/13/9703 +-5.05251,48.14243,8989,3,11,16,48,3,3.55,5.0,fr,51690,179,2203680,1,2,Active Shallow Crust,0.0,89.99327,0.0,03/11/8989 +-5.05251,48.14243,8171,1,21,7,44,19,3.55,5.0,fr,51691,163,2203680,1,2,Active Shallow Crust,0.0,89.99327,0.0,01/21/8171 +-5.05251,48.14243,344,9,19,19,15,45,3.55,5.0,fr,51692,6,2203689,1,1,Active Shallow Crust,128.8964,89.99327,0.0,09/19/0344 +-5.05251,48.14243,7381,9,2,17,38,13,3.65,5.0,fr,51693,147,2203692,1,1,Active Shallow Crust,0.0,89.98801,0.0,09/02/7381 +-5.05251,48.14243,3630,12,30,22,16,37,3.65,5.0,fr,51694,72,2203698,1,1,Active Shallow Crust,0.0,89.98787,-90.0,12/30/3630 +-5.05251,48.14243,266,11,20,22,20,10,3.75,15.0,fr,51695,5,2203705,1,1,Active Shallow Crust,0.0,89.98931,0.0,11/20/0266 +-5.05251,48.14243,2138,4,18,21,42,31,3.85,15.0,fr,51696,42,2203717,1,1,Active Shallow Crust,0.0,89.99047,0.0,04/18/2138 +-5.05251,48.14243,6724,9,21,15,20,43,3.95,5.0,fr,51697,134,2203728,1,1,Active Shallow Crust,0.0,89.99151,0.0,09/21/6724 +-5.05251,48.14243,4508,7,24,3,29,0,4.05,5.0,fr,51698,90,2203749,1,1,Active Shallow Crust,128.8898,89.99432,0.0,07/24/4508 +-5.05251,48.14243,3204,4,4,11,43,31,4.95,5.0,fr,51699,64,2203848,1,1,Active Shallow Crust,0.0,89.9906,0.0,04/04/3204 +-1.9928,47.21315,2898,12,7,18,0,9,3.55,5.0,fr,51700,57,2204160,1,3,Active Shallow Crust,0.0,89.98972,0.0,12/07/2898 +-1.9928,47.21315,7891,2,5,23,41,36,3.55,5.0,fr,51701,157,2204160,1,3,Active Shallow Crust,0.0,89.98972,0.0,02/05/7891 +-1.9928,47.21315,3443,5,9,2,10,35,3.55,5.0,fr,51702,68,2204160,1,3,Active Shallow Crust,0.0,89.98972,0.0,05/09/3443 +-1.9928,47.21315,3009,8,31,21,54,11,3.55,27.5,fr,51703,60,2204171,1,1,Active Shallow Crust,128.8965,89.99315,0.0,08/31/3009 +-1.9928,47.21315,9902,10,13,1,30,4,3.65,5.0,fr,51704,198,2204172,1,1,Active Shallow Crust,0.0,89.98932,0.0,10/13/9902 +-1.9928,47.21315,1490,10,18,23,26,26,3.65,15.0,fr,51705,29,2204173,1,1,Active Shallow Crust,0.0,89.98932,0.0,10/18/1490 +-1.9928,47.21315,1095,6,15,7,17,19,3.65,5.0,fr,51706,21,2204175,1,1,Active Shallow Crust,240.0013,58.01281,0.0,06/15/1095 +-1.9928,47.21315,977,12,18,4,44,6,3.65,5.0,fr,51707,19,2204178,1,1,Active Shallow Crust,0.0,89.99074,-90.0,12/18/0977 +-1.9928,47.21315,1582,12,1,0,0,34,3.65,15.0,fr,51708,31,2204179,1,1,Active Shallow Crust,0.0,89.99074,-90.0,12/01/1582 +-1.9928,47.21315,6460,11,4,4,41,48,3.75,5.0,fr,51709,129,2204184,1,4,Active Shallow Crust,0.0,89.99048,0.0,11/04/6460 +-1.9928,47.21315,5559,5,13,13,31,50,3.75,5.0,fr,51710,111,2204184,1,4,Active Shallow Crust,0.0,89.99048,0.0,05/13/5559 +-1.9928,47.21315,1998,4,14,3,42,21,3.75,5.0,fr,51711,39,2204184,1,4,Active Shallow Crust,0.0,89.99048,0.0,04/14/1998 +-1.9928,47.21315,7280,11,8,7,6,54,3.75,5.0,fr,51712,145,2204184,1,4,Active Shallow Crust,0.0,89.99048,0.0,11/08/7280 +-1.9928,47.21315,8378,6,21,15,8,4,3.75,15.0,fr,51713,167,2204185,1,1,Active Shallow Crust,0.0,89.99048,0.0,06/21/8378 +-1.9928,47.21315,9323,11,5,4,44,1,3.75,5.0,fr,51714,186,2204187,1,1,Active Shallow Crust,240.0085,58.01757,0.0,11/05/9323 +-1.9928,47.21315,403,3,20,10,46,45,3.85,5.0,fr,51715,8,2204196,1,1,Active Shallow Crust,0.0,89.9903,0.0,03/20/0403 +-1.9928,47.21315,782,2,7,12,25,10,3.85,15.0,fr,51716,15,2204197,1,1,Active Shallow Crust,0.0,89.9903,0.0,02/07/0782 +-1.9928,47.21315,1751,1,26,7,32,1,3.85,5.0,fr,51717,35,2204202,1,1,Active Shallow Crust,0.0,89.99019,-90.0,01/26/1751 +-1.9928,47.21315,3948,9,24,10,12,5,3.95,5.0,fr,51718,78,2204208,1,2,Active Shallow Crust,0.0,89.99027,0.0,09/24/3948 +-1.9928,47.21315,6334,1,9,2,6,27,3.95,5.0,fr,51719,126,2204208,1,2,Active Shallow Crust,0.0,89.99027,0.0,01/09/6334 +-1.9928,47.21315,8572,11,6,0,35,47,3.95,15.0,fr,51720,171,2204209,1,1,Active Shallow Crust,0.0,89.99027,0.0,11/06/8572 +-1.9928,47.21315,5749,4,12,3,39,6,4.05,5.0,fr,51721,114,2204220,1,2,Active Shallow Crust,0.0,89.99037,0.0,04/12/5749 +-1.9928,47.21315,2052,6,25,18,23,22,4.05,5.0,fr,51722,41,2204220,1,2,Active Shallow Crust,0.0,89.99037,0.0,06/25/2052 +-1.9928,47.21315,5969,9,11,13,13,23,4.05,5.0,fr,51723,119,2204229,1,1,Active Shallow Crust,128.8904,89.99374,0.0,09/11/5969 +-1.9928,47.21315,4505,4,15,21,8,32,4.15,5.0,fr,51724,90,2204232,1,1,Active Shallow Crust,0.0,89.9897,0.0,04/15/4505 +-1.9928,47.21315,5241,7,17,1,20,21,4.55,5.0,fr,51725,104,2204280,1,1,Active Shallow Crust,0.0,89.99025,0.0,07/17/5241 +-1.9928,47.21315,7018,7,31,13,4,16,4.55,15.0,fr,51726,140,2204281,1,1,Active Shallow Crust,0.0,89.99025,0.0,07/31/7018 +5.5271,52.03251,8486,6,3,6,45,48,3.65,27.5,fr,51727,169,2205134,1,1,Active Shallow Crust,0.0,89.98895,0.0,06/03/8486 +5.5271,52.03251,460,9,17,10,6,25,4.25,5.0,fr,51728,9,2205204,1,1,Active Shallow Crust,0.0,89.98891,0.0,09/17/0460 +5.5271,52.03251,5996,11,27,2,2,46,4.85,5.0,fr,51729,119,2205276,1,1,Active Shallow Crust,0.0,89.99027,0.0,11/27/5996 +-2.37023,43.19446,9686,10,21,16,43,26,3.55,27.5,fr,51730,193,2206082,1,1,Active Shallow Crust,0.0,89.98898,0.0,10/21/9686 +-2.37023,43.19446,5776,7,8,14,23,2,3.65,5.0,fr,51731,115,2206092,1,2,Active Shallow Crust,0.0,89.99017,0.0,07/08/5776 +-2.37023,43.19446,889,3,22,20,24,51,3.65,5.0,fr,51732,17,2206092,1,2,Active Shallow Crust,0.0,89.99017,0.0,03/22/0889 +-2.37023,43.19446,3393,6,12,3,57,15,3.65,15.0,fr,51733,67,2206093,1,1,Active Shallow Crust,0.0,89.99017,0.0,06/12/3393 +-2.37023,43.19446,6657,7,13,18,16,35,3.65,27.5,fr,51734,133,2206094,1,1,Active Shallow Crust,0.0,89.99017,0.0,07/13/6657 +-2.37023,43.19446,4293,12,26,9,10,32,3.65,5.0,fr,51735,85,2206095,1,1,Active Shallow Crust,240.0003,58.01282,0.0,12/26/4293 +-2.37023,43.19446,4462,7,12,16,39,20,3.65,5.0,fr,51736,89,2206101,1,1,Active Shallow Crust,128.9011,89.96346,0.0,07/12/4462 +-2.37023,43.19446,3073,6,5,16,25,3,3.75,5.0,fr,51737,61,2206104,1,1,Active Shallow Crust,0.0,89.99124,0.0,06/05/3073 +-2.37023,43.19446,2121,3,1,11,58,27,3.75,15.0,fr,51738,42,2206105,1,1,Active Shallow Crust,0.0,89.99124,0.0,03/01/2121 +-2.37023,43.19446,1466,6,28,14,1,9,3.85,5.0,fr,51739,29,2206116,1,1,Active Shallow Crust,0.0,89.98959,0.0,06/28/1466 +-2.37023,43.19446,6369,2,17,10,49,3,3.85,5.0,fr,51740,127,2206119,1,1,Active Shallow Crust,240.0103,57.99802,0.0,02/17/6369 +-2.37023,43.19446,339,10,5,13,29,40,3.95,5.0,fr,51741,6,2206134,1,1,Active Shallow Crust,0.0,89.99062,-90.0,10/05/0339 +-2.37023,43.19446,6646,1,28,14,47,53,4.05,5.0,fr,51742,132,2206140,1,1,Active Shallow Crust,0.0,89.98966,0.0,01/28/6646 +-2.37023,43.19446,6997,8,21,12,29,14,4.05,15.0,fr,51743,139,2206147,1,2,Active Shallow Crust,0.0,89.98955,-90.0,08/21/6997 +-2.37023,43.19446,3156,3,8,1,50,57,4.05,15.0,fr,51744,63,2206147,1,2,Active Shallow Crust,0.0,89.98955,-90.0,03/08/3156 +-2.37023,43.19446,6552,8,2,4,10,16,4.15,5.0,fr,51745,131,2206155,1,1,Active Shallow Crust,240.008,57.99697,0.0,08/02/6552 +-2.37023,43.19446,8252,3,23,19,45,30,4.25,5.0,fr,51746,165,2206164,1,2,Active Shallow Crust,0.0,89.99015,0.0,03/23/8252 +-2.37023,43.19446,4514,2,5,5,48,20,4.25,5.0,fr,51747,90,2206164,1,2,Active Shallow Crust,0.0,89.99015,0.0,02/05/4514 +-2.37023,43.19446,4450,12,14,14,2,12,4.35,27.5,fr,51748,88,2206178,1,1,Active Shallow Crust,0.0,89.98975,0.0,12/14/4450 +-2.37023,43.19446,6983,8,2,10,53,26,4.45,5.0,fr,51749,139,2206188,1,2,Active Shallow Crust,0.0,89.98956,0.0,08/02/6983 +-2.37023,43.19446,4984,3,21,0,37,51,4.45,5.0,fr,51750,99,2206188,1,2,Active Shallow Crust,0.0,89.98956,0.0,03/21/4984 +-2.37023,43.19446,9862,8,12,23,28,9,4.55,5.0,fr,51751,197,2206200,1,1,Active Shallow Crust,0.0,89.98954,0.0,08/12/9862 +-2.37023,43.19446,8250,2,25,11,3,38,4.55,15.0,fr,51752,164,2206210,1,1,Active Shallow Crust,128.8946,89.98573,0.0,02/25/8250 +-2.56865,44.83231,1409,4,28,16,31,21,3.65,5.0,fr,51753,28,2206572,1,2,Active Shallow Crust,0.0,89.99044,0.0,04/28/1409 +-2.56865,44.83231,2744,9,29,0,50,11,3.65,5.0,fr,51754,54,2206572,1,2,Active Shallow Crust,0.0,89.99044,0.0,09/29/2744 +-1.89392,49.37367,9986,1,14,1,15,30,3.55,5.0,fr,51755,199,2207040,1,3,Active Shallow Crust,0.0,89.99015,0.0,01/14/9986 +-1.89392,49.37367,9958,2,5,1,21,34,3.55,5.0,fr,51756,199,2207040,1,3,Active Shallow Crust,0.0,89.99015,0.0,02/05/9958 +-1.89392,49.37367,7775,2,21,17,54,4,3.55,5.0,fr,51757,155,2207040,1,3,Active Shallow Crust,0.0,89.99015,0.0,02/21/7775 +-1.89392,49.37367,4034,9,27,21,56,10,3.65,27.5,fr,51758,80,2207054,1,1,Active Shallow Crust,0.0,89.98976,0.0,09/27/4034 +-1.89392,49.37367,432,10,18,2,17,46,3.65,5.0,fr,51759,8,2207058,1,1,Active Shallow Crust,0.0,89.98964,-90.0,10/18/0432 +-1.89392,49.37367,8154,5,25,15,10,32,3.75,5.0,fr,51760,163,2207064,1,2,Active Shallow Crust,0.0,89.98957,0.0,05/25/8154 +-1.89392,49.37367,3011,11,18,9,34,59,3.75,5.0,fr,51761,60,2207064,1,2,Active Shallow Crust,0.0,89.98957,0.0,11/18/3011 +-1.89392,49.37367,5024,4,16,14,19,17,3.75,5.0,fr,51762,100,2207067,1,1,Active Shallow Crust,240.0088,58.01759,0.0,04/16/5024 +-1.89392,49.37367,5939,10,29,11,7,53,3.75,15.0,fr,51763,118,2207068,1,1,Active Shallow Crust,240.0088,58.01759,0.0,10/29/5939 +-1.89392,49.37367,5718,10,5,12,41,46,3.75,5.0,fr,51764,114,2207073,1,1,Active Shallow Crust,128.8964,89.96743,0.0,10/05/5718 +-1.89392,49.37367,4980,4,2,11,14,35,3.85,5.0,fr,51765,99,2207079,1,1,Active Shallow Crust,240.0113,57.99785,0.0,04/02/4980 +-1.89392,49.37367,5608,7,18,20,49,0,4.45,5.0,fr,51766,112,2207148,1,1,Active Shallow Crust,0.0,89.9901,0.0,07/18/5608 +-1.89392,49.37367,5346,3,22,6,51,14,4.55,27.5,fr,51767,106,2207162,1,1,Active Shallow Crust,0.0,89.99014,0.0,03/22/5346 +-1.89392,49.37367,7983,9,26,18,17,6,4.65,5.0,fr,51768,159,2207172,1,1,Active Shallow Crust,0.0,89.98982,0.0,09/26/7983 +1.33947,45.58458,8160,5,3,14,52,52,3.65,5.0,fr,51769,163,2207532,1,1,Active Shallow Crust,0.0,89.99056,0.0,05/03/8160 +1.33947,45.58458,6451,11,26,19,8,55,3.65,15.0,fr,51770,129,2207539,1,1,Active Shallow Crust,0.0,89.99046,-90.0,11/26/6451 +1.33947,45.58458,8522,9,29,6,5,31,3.85,5.0,fr,51771,170,2207559,1,1,Active Shallow Crust,240.0106,57.99774,0.0,09/29/8522 +1.33947,45.58458,1151,1,9,20,14,35,3.95,5.0,fr,51772,23,2207571,1,2,Active Shallow Crust,240.0196,58.00486,0.0,01/09/1151 +1.33947,45.58458,2691,10,28,13,20,10,3.95,5.0,fr,51773,53,2207571,1,2,Active Shallow Crust,240.0196,58.00486,0.0,10/28/2691 +1.33947,45.58458,7526,12,6,12,12,13,3.95,5.0,fr,51774,150,2207574,1,1,Active Shallow Crust,0.0,89.98987,-90.0,12/06/7526 +1.33947,45.58458,7446,8,26,13,58,28,4.15,5.0,fr,51775,148,2207601,1,1,Active Shallow Crust,128.8978,89.99381,0.0,08/26/7446 +1.33947,45.58458,8943,2,26,19,5,54,4.35,15.0,fr,51776,178,2207617,1,1,Active Shallow Crust,0.0,89.99017,0.0,02/26/8943 +1.33947,45.58458,7013,8,18,11,58,35,4.45,5.0,fr,51777,140,2207628,1,1,Active Shallow Crust,0.0,89.98998,0.0,08/18/7013 +7.40217,47.78565,5728,4,30,6,2,4,3.55,5.0,fr,51778,114,2208000,1,7,Active Shallow Crust,0.0,89.99323,0.0,04/30/5728 +7.40217,47.78565,8649,2,1,1,47,54,3.55,5.0,fr,51779,172,2208000,1,7,Active Shallow Crust,0.0,89.99323,0.0,02/01/8649 +7.40217,47.78565,1239,2,18,15,4,25,3.55,5.0,fr,51780,24,2208000,1,7,Active Shallow Crust,0.0,89.99323,0.0,02/18/1239 +7.40217,47.78565,2174,6,26,17,30,32,3.55,5.0,fr,51781,43,2208000,1,7,Active Shallow Crust,0.0,89.99323,0.0,06/26/2174 +7.40217,47.78565,2983,3,22,0,37,14,3.55,5.0,fr,51782,59,2208000,1,7,Active Shallow Crust,0.0,89.99323,0.0,03/22/2983 +7.40217,47.78565,3692,11,2,0,17,33,3.55,5.0,fr,51783,73,2208000,1,7,Active Shallow Crust,0.0,89.99323,0.0,11/02/3692 +7.40217,47.78565,3772,10,23,14,44,47,3.55,5.0,fr,51784,75,2208000,1,7,Active Shallow Crust,0.0,89.99323,0.0,10/23/3772 +7.40217,47.78565,3896,3,23,9,29,23,3.55,15.0,fr,51785,77,2208001,1,1,Active Shallow Crust,0.0,89.99323,0.0,03/23/3896 +7.40217,47.78565,9206,9,17,12,29,36,3.55,15.0,fr,51786,184,2208004,1,1,Active Shallow Crust,240.0134,57.99702,0.0,09/17/9206 +7.40217,47.78565,6376,5,12,2,40,56,3.55,5.0,fr,51787,127,2208006,1,1,Active Shallow Crust,0.0,89.99315,-90.0,05/12/6376 +7.40217,47.78565,8344,7,30,22,47,40,3.55,5.0,fr,51788,166,2208009,1,1,Active Shallow Crust,128.8959,89.99323,0.0,07/30/8344 +7.40217,47.78565,1027,12,22,4,7,9,3.65,5.0,fr,51789,20,2208012,1,4,Active Shallow Crust,0.0,89.98792,0.0,12/22/1027 +7.40217,47.78565,9439,5,21,16,42,4,3.65,5.0,fr,51790,188,2208012,1,4,Active Shallow Crust,0.0,89.98792,0.0,05/21/9439 +7.40217,47.78565,306,2,24,7,15,0,3.65,5.0,fr,51791,6,2208012,1,4,Active Shallow Crust,0.0,89.98792,0.0,02/24/0306 +7.40217,47.78565,5638,11,24,1,11,43,3.65,5.0,fr,51792,112,2208012,1,4,Active Shallow Crust,0.0,89.98792,0.0,11/24/5638 +7.40217,47.78565,9632,11,25,6,23,0,3.65,15.0,fr,51793,192,2208013,1,2,Active Shallow Crust,0.0,89.98792,0.0,11/25/9632 +7.40217,47.78565,3599,8,2,20,16,41,3.65,15.0,fr,51794,71,2208013,1,2,Active Shallow Crust,0.0,89.98792,0.0,08/02/3599 +7.40217,47.78565,4091,9,27,11,8,47,3.65,5.0,fr,51795,81,2208015,1,1,Active Shallow Crust,240.0018,58.01285,0.0,09/27/4091 +7.40217,47.78565,3523,11,1,5,34,46,3.65,15.0,fr,51796,70,2208019,1,1,Active Shallow Crust,0.0,89.98779,-90.0,11/01/3523 +7.40217,47.78565,2294,2,10,20,27,31,3.75,5.0,fr,51797,45,2208024,1,5,Active Shallow Crust,0.0,89.98923,0.0,02/10/2294 +7.40217,47.78565,799,2,22,21,18,29,3.75,5.0,fr,51798,15,2208024,1,5,Active Shallow Crust,0.0,89.98923,0.0,02/22/0799 +7.40217,47.78565,2387,4,2,20,42,51,3.75,5.0,fr,51799,47,2208024,1,5,Active Shallow Crust,0.0,89.98923,0.0,04/02/2387 +7.40217,47.78565,3750,8,5,19,22,20,3.75,5.0,fr,51800,74,2208024,1,5,Active Shallow Crust,0.0,89.98923,0.0,08/05/3750 +7.40217,47.78565,2992,5,17,21,15,26,3.75,5.0,fr,51801,59,2208024,1,5,Active Shallow Crust,0.0,89.98923,0.0,05/17/2992 +7.40217,47.78565,9270,5,1,20,27,41,3.75,5.0,fr,51802,185,2208027,1,1,Active Shallow Crust,240.0087,58.01807,0.0,05/01/9270 +7.40217,47.78565,4344,7,14,1,11,12,3.75,27.5,fr,51803,86,2208035,1,1,Active Shallow Crust,128.8967,89.96751,0.0,07/14/4344 +7.40217,47.78565,7542,12,21,6,20,11,3.85,5.0,fr,51804,150,2208036,1,2,Active Shallow Crust,0.0,89.99041,0.0,12/21/7542 +7.40217,47.78565,2367,4,6,5,56,28,3.85,5.0,fr,51805,47,2208036,1,2,Active Shallow Crust,0.0,89.99041,0.0,04/06/2367 +7.40217,47.78565,9739,12,11,0,58,56,3.85,15.0,fr,51806,194,2208037,1,1,Active Shallow Crust,0.0,89.99041,0.0,12/11/9739 +7.40217,47.78565,4682,9,7,16,30,51,3.85,27.5,fr,51807,93,2208038,1,1,Active Shallow Crust,0.0,89.99041,0.0,09/07/4682 +7.40217,47.78565,810,4,27,21,30,45,3.85,5.0,fr,51808,16,2208039,1,2,Active Shallow Crust,240.0112,57.99856,0.0,04/27/0810 +7.40217,47.78565,9814,8,20,5,25,42,3.85,5.0,fr,51809,196,2208039,1,2,Active Shallow Crust,240.0112,57.99856,0.0,08/20/9814 +7.40217,47.78565,2458,3,20,3,44,15,3.85,5.0,fr,51810,49,2208045,1,1,Active Shallow Crust,128.8957,89.9952,0.0,03/20/2458 +7.40217,47.78565,2687,6,21,9,43,38,3.95,5.0,fr,51811,53,2208048,1,3,Active Shallow Crust,0.0,89.99145,0.0,06/21/2687 +7.40217,47.78565,6955,1,22,21,41,19,3.95,5.0,fr,51812,139,2208048,1,3,Active Shallow Crust,0.0,89.99145,0.0,01/22/6955 +7.40217,47.78565,6593,7,24,18,46,31,3.95,5.0,fr,51813,131,2208048,1,3,Active Shallow Crust,0.0,89.99145,0.0,07/24/6593 +7.40217,47.78565,589,11,9,5,57,3,4.05,5.0,fr,51814,11,2208060,1,1,Active Shallow Crust,0.0,89.98857,0.0,11/09/0589 +7.40217,47.78565,8325,7,23,1,12,12,4.05,5.0,fr,51815,166,2208063,1,2,Active Shallow Crust,240.0054,58.00626,0.0,07/23/8325 +7.40217,47.78565,4007,2,26,7,18,52,4.05,5.0,fr,51816,80,2208063,1,2,Active Shallow Crust,240.0054,58.00626,0.0,02/26/4007 +7.40217,47.78565,5044,5,3,5,45,18,4.05,15.0,fr,51817,100,2208064,1,1,Active Shallow Crust,240.0054,58.00624,0.0,05/03/5044 +7.40217,47.78565,9863,4,6,8,17,33,4.15,5.0,fr,51818,197,2208072,1,4,Active Shallow Crust,0.0,89.98981,0.0,04/06/9863 +7.40217,47.78565,3102,10,9,14,56,41,4.15,5.0,fr,51819,62,2208072,1,4,Active Shallow Crust,0.0,89.98981,0.0,10/09/3102 +7.40217,47.78565,3217,9,6,18,35,38,4.15,5.0,fr,51820,64,2208072,1,4,Active Shallow Crust,0.0,89.98981,0.0,09/06/3217 +7.40217,47.78565,243,12,28,21,40,8,4.15,5.0,fr,51821,4,2208072,1,4,Active Shallow Crust,0.0,89.98981,0.0,12/28/0243 +7.40217,47.78565,7031,2,27,14,35,49,4.15,15.0,fr,51822,140,2208073,1,3,Active Shallow Crust,0.0,89.98981,0.0,02/27/7031 +7.40217,47.78565,9511,3,10,21,26,50,4.15,15.0,fr,51823,190,2208073,1,3,Active Shallow Crust,0.0,89.98981,0.0,03/10/9511 +7.40217,47.78565,9698,1,24,3,3,23,4.15,15.0,fr,51824,193,2208073,1,3,Active Shallow Crust,0.0,89.98981,0.0,01/24/9698 +7.40217,47.78565,8046,10,30,8,29,36,4.15,5.0,fr,51825,160,2208075,1,1,Active Shallow Crust,240.0088,57.99713,0.0,10/30/8046 +7.40217,47.78565,4608,5,8,21,54,26,4.25,5.0,fr,51826,92,2208084,1,1,Active Shallow Crust,0.0,89.99092,0.0,05/08/4608 +7.40217,47.78565,5125,3,20,23,22,32,4.35,5.0,fr,51827,102,2208096,1,1,Active Shallow Crust,0.0,89.98921,0.0,03/20/5125 +7.40217,47.78565,8824,12,16,17,3,53,4.35,5.0,fr,51828,176,2208105,1,1,Active Shallow Crust,128.8973,89.98258,0.0,12/16/8824 +7.40217,47.78565,5086,4,7,12,18,48,4.95,15.0,fr,51829,101,2208172,1,1,Active Shallow Crust,240.0125,58.00443,0.0,04/07/5086 +7.40217,47.78565,8214,4,23,10,9,51,5.25,5.0,fr,51830,164,2208204,1,1,Active Shallow Crust,0.0,89.99043,0.0,04/23/8214 +7.402173,47.78565,4757,6,23,23,18,51,6.15,6.011322,fr,51831,95,2208312,1,1,Active Shallow Crust,359.9998,89.99014,0.0,06/23/4757 +5.72424,43.52813,9114,10,24,2,33,51,3.55,5.0,fr,51832,182,2208480,1,2,Active Shallow Crust,0.0,89.99269,0.0,10/24/9114 +5.72424,43.52813,8520,7,31,2,40,47,3.55,5.0,fr,51833,170,2208480,1,2,Active Shallow Crust,0.0,89.99269,0.0,07/31/8520 +5.72424,43.52813,1082,7,18,17,50,27,3.55,5.0,fr,51834,21,2208486,1,1,Active Shallow Crust,0.0,89.99261,-90.0,07/18/1082 +5.72424,43.52813,5495,11,28,19,28,42,3.65,5.0,fr,51835,109,2208495,1,2,Active Shallow Crust,240.0003,58.01359,0.0,11/28/5495 +5.72424,43.52813,6729,8,18,6,56,24,3.65,5.0,fr,51836,134,2208495,1,2,Active Shallow Crust,240.0003,58.01359,0.0,08/18/6729 +5.72424,43.52813,2811,3,15,16,51,34,3.65,5.0,fr,51837,56,2208501,1,1,Active Shallow Crust,128.9002,89.96347,0.0,03/15/2811 +5.72424,43.52813,1737,5,22,12,48,14,3.75,15.0,fr,51838,34,2208505,1,1,Active Shallow Crust,0.0,89.98839,0.0,05/22/1737 +5.72424,43.52813,1513,12,27,13,36,10,3.75,15.0,fr,51839,30,2208511,1,1,Active Shallow Crust,0.0,89.98825,-90.0,12/27/1513 +5.72424,43.52813,8250,10,6,11,51,55,3.75,5.0,fr,51840,164,2208513,1,1,Active Shallow Crust,128.8965,89.96744,0.0,10/06/8250 +5.72424,43.52813,1159,6,5,7,1,32,3.85,15.0,fr,51841,23,2208520,1,1,Active Shallow Crust,240.0108,57.99767,0.0,06/05/1159 +5.72424,43.52813,7006,12,18,18,26,2,3.95,5.0,fr,51842,140,2208534,1,1,Active Shallow Crust,0.0,89.99067,-90.0,12/18/7006 +5.72424,43.52813,2900,6,8,0,8,44,4.05,27.5,fr,51843,57,2208542,1,1,Active Shallow Crust,0.0,89.99178,0.0,06/08/2900 +5.72424,43.52813,3780,12,3,17,4,1,4.15,27.5,fr,51844,75,2208554,1,1,Active Shallow Crust,0.0,89.98901,0.0,12/03/3780 +5.72424,43.52813,1029,8,16,13,28,45,4.45,5.0,fr,51845,20,2208588,1,1,Active Shallow Crust,0.0,89.98962,0.0,08/16/1029 +5.72424,43.52813,6345,5,17,17,28,1,4.55,5.0,fr,51846,126,2208606,1,1,Active Shallow Crust,0.0,89.99065,-90.0,05/17/6345 +5.72424,43.52813,3930,5,17,19,42,33,5.05,5.0,fr,51847,78,2208660,1,1,Active Shallow Crust,0.0,89.98959,0.0,05/17/3930 +5.72424,43.52813,8298,1,12,22,40,23,5.05,5.0,fr,51848,165,2208663,1,1,Active Shallow Crust,240.0204,57.99738,0.0,01/12/8298 +6.05472,49.77,4743,1,23,4,54,58,4.15,5.0,fr,51849,94,2209041,1,1,Active Shallow Crust,128.8977,89.99347,0.0,01/23/4743 +6.05472,49.77,7731,6,7,8,19,14,4.35,5.0,fr,51850,154,2209056,1,1,Active Shallow Crust,0.0,89.98963,0.0,06/07/7731 +3.38135,44.78807,7242,10,22,13,43,18,3.55,5.0,fr,51851,144,2209440,1,1,Active Shallow Crust,0.0,89.98927,0.0,10/22/7242 +3.38135,44.78807,7607,10,22,4,12,24,3.55,15.0,fr,51852,152,2209441,1,1,Active Shallow Crust,0.0,89.98927,0.0,10/22/7607 +3.38135,44.78807,3375,5,21,2,31,29,3.65,5.0,fr,51853,67,2209452,1,3,Active Shallow Crust,0.0,89.99043,0.0,05/21/3375 +3.38135,44.78807,3379,11,28,21,27,16,3.65,5.0,fr,51854,67,2209452,1,3,Active Shallow Crust,0.0,89.99043,0.0,11/28/3379 +3.38135,44.78807,4068,10,6,16,37,37,3.65,5.0,fr,51855,81,2209452,1,3,Active Shallow Crust,0.0,89.99043,0.0,10/06/4068 +3.38135,44.78807,8442,6,30,15,24,17,3.75,15.0,fr,51856,168,2209465,1,1,Active Shallow Crust,0.0,89.98863,0.0,06/30/8442 +3.38135,44.78807,9262,9,2,6,59,38,3.85,5.0,fr,51857,185,2209476,1,2,Active Shallow Crust,0.0,89.98987,0.0,09/02/9262 +3.38135,44.78807,680,8,5,15,42,25,3.85,5.0,fr,51858,13,2209476,1,2,Active Shallow Crust,0.0,89.98987,0.0,08/05/0680 +3.38135,44.78807,6662,7,2,13,10,23,4.05,5.0,fr,51859,133,2209500,1,1,Active Shallow Crust,0.0,89.98994,0.0,07/02/6662 +3.38135,44.78807,8717,7,30,11,18,7,4.15,5.0,fr,51860,174,2209512,1,1,Active Shallow Crust,0.0,89.98924,0.0,07/30/8717 +3.38135,44.78807,3568,6,3,0,51,31,4.65,5.0,fr,51861,71,2209572,1,1,Active Shallow Crust,0.0,89.98991,0.0,06/03/3568 +3.38135,44.78807,1689,6,5,18,22,40,5.75,15.0,fr,51862,33,2209705,1,1,Active Shallow Crust,0.0,89.99004,0.0,06/05/1689 +7.58997,48.06257,3822,1,31,12,46,44,3.55,5.0,fr,51863,76,2209920,1,6,Active Shallow Crust,0.0,89.99326,0.0,01/31/3822 +7.58997,48.06257,6552,12,17,2,16,22,3.55,5.0,fr,51864,131,2209920,1,6,Active Shallow Crust,0.0,89.99326,0.0,12/17/6552 +7.58997,48.06257,4451,7,31,5,58,37,3.55,5.0,fr,51865,89,2209920,1,6,Active Shallow Crust,0.0,89.99326,0.0,07/31/4451 +7.58997,48.06257,7140,5,27,1,4,55,3.55,5.0,fr,51866,142,2209920,1,6,Active Shallow Crust,0.0,89.99326,0.0,05/27/7140 +7.58997,48.06257,2729,7,31,16,54,7,3.55,5.0,fr,51867,54,2209920,1,6,Active Shallow Crust,0.0,89.99326,0.0,07/31/2729 +7.58997,48.06257,1779,6,19,3,29,25,3.55,5.0,fr,51868,35,2209920,1,6,Active Shallow Crust,0.0,89.99326,0.0,06/19/1779 +7.58997,48.06257,986,8,10,9,36,6,3.55,15.0,fr,51869,19,2209921,1,1,Active Shallow Crust,0.0,89.99326,0.0,08/10/0986 +7.58997,48.06257,7570,3,12,2,37,41,3.55,27.5,fr,51870,151,2209922,1,1,Active Shallow Crust,0.0,89.99326,0.0,03/12/7570 +7.58997,48.06257,2309,8,22,11,44,27,3.55,5.0,fr,51871,46,2209923,1,1,Active Shallow Crust,240.0123,57.99854,0.0,08/22/2309 +7.58997,48.06257,1860,7,18,1,54,39,3.55,15.0,fr,51872,37,2209930,1,1,Active Shallow Crust,128.8973,89.99326,0.0,07/18/1860 +7.58997,48.06257,9946,1,19,6,27,46,3.65,5.0,fr,51873,198,2209932,1,3,Active Shallow Crust,0.0,89.98798,0.0,01/19/9946 +7.58997,48.06257,7384,3,13,10,36,58,3.65,5.0,fr,51874,147,2209932,1,3,Active Shallow Crust,0.0,89.98798,0.0,03/13/7384 +7.58997,48.06257,1698,10,25,20,27,43,3.65,5.0,fr,51875,33,2209932,1,3,Active Shallow Crust,0.0,89.98798,0.0,10/25/1698 +7.58997,48.06257,6643,4,8,20,42,15,3.65,15.0,fr,51876,132,2209933,1,3,Active Shallow Crust,0.0,89.98798,0.0,04/08/6643 +7.58997,48.06257,8834,9,3,20,24,37,3.65,15.0,fr,51877,176,2209933,1,3,Active Shallow Crust,0.0,89.98798,0.0,09/03/8834 +7.58997,48.06257,2820,12,23,22,9,34,3.65,15.0,fr,51878,56,2209933,1,3,Active Shallow Crust,0.0,89.98798,0.0,12/23/2820 +7.58997,48.06257,4671,6,12,3,18,42,3.65,27.5,fr,51879,93,2209940,1,1,Active Shallow Crust,0.0,89.98785,-90.0,06/12/4671 +7.58997,48.06257,5713,7,30,14,1,35,3.75,5.0,fr,51880,114,2209944,1,3,Active Shallow Crust,0.0,89.9893,0.0,07/30/5713 +7.58997,48.06257,3421,5,31,0,3,30,3.75,5.0,fr,51881,68,2209944,1,3,Active Shallow Crust,0.0,89.9893,0.0,05/31/3421 +7.58997,48.06257,8157,3,4,19,18,56,3.75,5.0,fr,51882,163,2209944,1,3,Active Shallow Crust,0.0,89.9893,0.0,03/04/8157 +7.58997,48.06257,5202,5,30,18,46,46,3.75,5.0,fr,51883,104,2209947,1,1,Active Shallow Crust,240.0087,58.01725,0.0,05/30/5202 +7.58997,48.06257,8583,12,14,0,17,36,3.75,27.5,fr,51884,171,2209955,1,2,Active Shallow Crust,128.8966,89.96697,0.0,12/14/8583 +7.58997,48.06257,3584,7,7,23,11,23,3.75,27.5,fr,51885,71,2209955,1,2,Active Shallow Crust,128.8966,89.96697,0.0,07/07/3584 +7.58997,48.06257,5184,9,21,5,54,15,3.85,5.0,fr,51886,103,2209956,1,2,Active Shallow Crust,0.0,89.99046,0.0,09/21/5184 +7.58997,48.06257,5056,12,28,9,20,37,3.85,5.0,fr,51887,101,2209956,1,2,Active Shallow Crust,0.0,89.99046,0.0,12/28/5056 +7.58997,48.06257,9992,9,13,13,12,7,3.85,15.0,fr,51888,199,2209957,1,1,Active Shallow Crust,0.0,89.99046,0.0,09/13/9992 +7.58997,48.06257,9227,12,12,14,55,52,3.85,5.0,fr,51889,184,2209959,1,2,Active Shallow Crust,240.0112,57.99752,0.0,12/12/9227 +7.58997,48.06257,9636,8,15,22,29,18,3.85,5.0,fr,51890,192,2209959,1,2,Active Shallow Crust,240.0112,57.99752,0.0,08/15/9636 +7.58997,48.06257,6338,5,2,17,49,25,3.85,15.0,fr,51891,126,2209960,1,1,Active Shallow Crust,240.0112,57.99752,0.0,05/02/6338 +7.58997,48.06257,2834,7,22,6,55,41,3.85,5.0,fr,51892,56,2209965,1,1,Active Shallow Crust,128.8953,89.99523,0.0,07/22/2834 +7.58997,48.06257,5960,4,1,9,7,59,3.95,5.0,fr,51893,119,2209968,1,1,Active Shallow Crust,0.0,89.99149,0.0,04/01/5960 +7.58997,48.06257,826,10,6,6,38,43,3.95,5.0,fr,51894,16,2209971,1,1,Active Shallow Crust,240.0201,58.00512,0.0,10/06/0826 +7.58997,48.06257,9522,5,1,1,42,11,4.05,5.0,fr,51895,190,2209980,1,2,Active Shallow Crust,0.0,89.98863,0.0,05/01/9522 +7.58997,48.06257,9895,12,19,9,16,1,4.05,5.0,fr,51896,197,2209980,1,2,Active Shallow Crust,0.0,89.98863,0.0,12/19/9895 +7.58997,48.06257,4813,4,27,1,17,35,4.15,5.0,fr,51897,96,2209992,1,1,Active Shallow Crust,0.0,89.98987,0.0,04/27/4813 +7.58997,48.06257,8194,3,10,9,41,34,4.15,15.0,fr,51898,163,2209993,1,1,Active Shallow Crust,0.0,89.98987,0.0,03/10/8194 +7.58997,48.06257,3241,11,23,16,39,41,4.15,5.0,fr,51899,64,2209995,1,1,Active Shallow Crust,240.0089,57.99784,0.0,11/23/3241 +7.58997,48.06257,2964,1,14,2,14,39,4.15,5.0,fr,51900,59,2209998,1,1,Active Shallow Crust,0.0,89.98975,-90.0,01/14/2964 +7.58997,48.06257,7755,5,2,6,19,47,4.15,15.0,fr,51901,155,2210002,1,1,Active Shallow Crust,128.8978,89.99325,0.0,05/02/7755 +7.58997,48.06257,7107,12,9,17,46,44,4.25,5.0,fr,51902,142,2210013,1,1,Active Shallow Crust,128.8943,89.981,0.0,12/09/7107 +7.58997,48.06257,131,2,3,14,48,29,4.35,5.0,fr,51903,2,2210016,1,1,Active Shallow Crust,0.0,89.98927,0.0,02/03/0131 +7.58997,48.06257,8298,6,19,6,49,3,4.55,5.0,fr,51904,165,2210040,1,1,Active Shallow Crust,0.0,89.98934,0.0,06/19/8298 +7.58997,48.06257,4611,5,14,2,31,44,4.55,5.0,fr,51905,92,2210049,1,1,Active Shallow Crust,128.8936,89.98573,0.0,05/14/4611 +7.58997,48.06257,8594,11,16,20,30,51,5.05,5.0,fr,51906,171,2210103,1,1,Active Shallow Crust,240.0232,57.99763,0.0,11/16/8594 +7.58997,48.06257,9285,2,7,0,25,33,5.35,5.0,fr,51907,185,2210136,1,1,Active Shallow Crust,0.0,89.98981,0.0,02/07/9285 +7.58997,48.06257,7809,8,1,13,57,10,5.55,5.0,fr,51908,156,2210160,1,1,Active Shallow Crust,0.0,89.98988,0.0,08/01/7809 +8.59122,47.40181,8444,5,5,18,11,45,3.55,5.0,fr,51909,168,2210400,1,9,Active Shallow Crust,0.0,89.98635,0.0,05/05/8444 +8.59122,47.40181,9351,2,26,8,53,36,3.55,5.0,fr,51910,187,2210400,1,9,Active Shallow Crust,0.0,89.98635,0.0,02/26/9351 +8.59122,47.40181,7397,1,3,19,41,21,3.55,5.0,fr,51911,147,2210400,1,9,Active Shallow Crust,0.0,89.98635,0.0,01/03/7397 +8.59122,47.40181,1504,2,17,21,27,20,3.55,5.0,fr,51912,30,2210400,1,9,Active Shallow Crust,0.0,89.98635,0.0,02/17/1504 +8.59122,47.40181,8968,1,23,19,22,6,3.55,5.0,fr,51913,179,2210400,1,9,Active Shallow Crust,0.0,89.98635,0.0,01/23/8968 +8.59122,47.40181,9460,10,26,3,41,18,3.55,5.0,fr,51914,189,2210400,1,9,Active Shallow Crust,0.0,89.98635,0.0,10/26/9460 +8.59122,47.40181,985,10,14,3,46,1,3.55,5.0,fr,51915,19,2210400,1,9,Active Shallow Crust,0.0,89.98635,0.0,10/14/0985 +8.59122,47.40181,7458,3,16,2,3,53,3.55,5.0,fr,51916,149,2210400,1,9,Active Shallow Crust,0.0,89.98635,0.0,03/16/7458 +8.59122,47.40181,7223,3,7,13,3,0,3.55,5.0,fr,51917,144,2210400,1,9,Active Shallow Crust,0.0,89.98635,0.0,03/07/7223 +8.59122,47.40181,8267,12,9,15,29,19,3.55,15.0,fr,51918,165,2210401,1,1,Active Shallow Crust,0.0,89.98635,0.0,12/09/8267 +8.59122,47.40181,8231,10,30,5,39,33,3.55,27.5,fr,51919,164,2210402,1,1,Active Shallow Crust,0.0,89.98635,0.0,10/30/8231 +8.59122,47.40181,8676,1,7,21,49,58,3.55,5.0,fr,51920,173,2210403,1,2,Active Shallow Crust,240.0117,57.99882,0.0,01/07/8676 +8.59122,47.40181,6992,7,15,6,8,7,3.55,5.0,fr,51921,139,2210403,1,2,Active Shallow Crust,240.0117,57.99882,0.0,07/15/6992 +8.59122,47.40181,6629,10,29,16,25,31,3.55,15.0,fr,51922,132,2210404,1,1,Active Shallow Crust,240.0117,57.99882,0.0,10/29/6629 +8.59122,47.40181,1269,7,30,15,32,12,3.55,5.0,fr,51923,25,2210409,1,1,Active Shallow Crust,128.8977,89.99317,0.0,07/30/1269 +8.59122,47.40181,8262,9,20,17,51,35,3.65,5.0,fr,51924,165,2210412,1,7,Active Shallow Crust,0.0,89.98783,0.0,09/20/8262 +8.59122,47.40181,261,5,3,9,59,21,3.65,5.0,fr,51925,5,2210412,1,7,Active Shallow Crust,0.0,89.98783,0.0,05/03/0261 +8.59122,47.40181,8572,4,22,7,44,58,3.65,5.0,fr,51926,171,2210412,1,7,Active Shallow Crust,0.0,89.98783,0.0,04/22/8572 +8.59122,47.40181,5001,5,16,13,2,5,3.65,5.0,fr,51927,100,2210412,1,7,Active Shallow Crust,0.0,89.98783,0.0,05/16/5001 +8.59122,47.40181,483,8,22,8,35,34,3.65,5.0,fr,51928,9,2210412,1,7,Active Shallow Crust,0.0,89.98783,0.0,08/22/0483 +8.59122,47.40181,8968,8,18,19,13,50,3.65,5.0,fr,51929,179,2210412,1,7,Active Shallow Crust,0.0,89.98783,0.0,08/18/8968 +8.59122,47.40181,4769,12,7,15,1,29,3.65,5.0,fr,51930,95,2210412,1,7,Active Shallow Crust,0.0,89.98783,0.0,12/07/4769 +8.59122,47.40181,4056,4,17,20,3,57,3.65,15.0,fr,51931,81,2210413,1,5,Active Shallow Crust,0.0,89.98783,0.0,04/17/4056 +8.59122,47.40181,9445,12,25,7,56,50,3.65,15.0,fr,51932,188,2210413,1,5,Active Shallow Crust,0.0,89.98783,0.0,12/25/9445 +8.59122,47.40181,7846,8,18,9,36,53,3.65,15.0,fr,51933,156,2210413,1,5,Active Shallow Crust,0.0,89.98783,0.0,08/18/7846 +8.59122,47.40181,6153,4,3,19,22,28,3.65,15.0,fr,51934,123,2210413,1,5,Active Shallow Crust,0.0,89.98783,0.0,04/03/6153 +8.59122,47.40181,3076,4,22,13,10,9,3.65,15.0,fr,51935,61,2210413,1,5,Active Shallow Crust,0.0,89.98783,0.0,04/22/3076 +8.59122,47.40181,7356,11,11,1,34,8,3.65,15.0,fr,51936,147,2210416,1,2,Active Shallow Crust,240.0035,58.01189,0.0,11/11/7356 +8.59122,47.40181,9790,8,23,7,33,58,3.65,15.0,fr,51937,195,2210416,1,2,Active Shallow Crust,240.0035,58.01189,0.0,08/23/9790 +8.59122,47.40181,5795,2,14,23,20,8,3.65,5.0,fr,51938,115,2210421,1,2,Active Shallow Crust,128.8986,89.96354,0.0,02/14/5795 +8.59122,47.40181,7043,4,17,7,58,58,3.65,5.0,fr,51939,140,2210421,1,2,Active Shallow Crust,128.8986,89.96354,0.0,04/17/7043 +8.59122,47.40181,8365,1,19,6,53,15,3.75,5.0,fr,51940,167,2210424,1,5,Active Shallow Crust,0.0,89.98916,0.0,01/19/8365 +8.59122,47.40181,5940,1,22,14,34,21,3.75,5.0,fr,51941,118,2210424,1,5,Active Shallow Crust,0.0,89.98916,0.0,01/22/5940 +8.59122,47.40181,6024,11,20,22,41,45,3.75,5.0,fr,51942,120,2210424,1,5,Active Shallow Crust,0.0,89.98916,0.0,11/20/6024 +8.59122,47.40181,8472,8,5,13,8,36,3.75,5.0,fr,51943,169,2210424,1,5,Active Shallow Crust,0.0,89.98916,0.0,08/05/8472 +8.59122,47.40181,7808,4,29,10,13,35,3.75,5.0,fr,51944,156,2210424,1,5,Active Shallow Crust,0.0,89.98916,0.0,04/29/7808 +8.59122,47.40181,30,6,28,8,29,44,3.75,27.5,fr,51945,0,2210426,1,1,Active Shallow Crust,0.0,89.98916,0.0,06/28/0030 +8.59122,47.40181,6695,5,3,1,1,23,3.75,5.0,fr,51946,133,2210427,1,2,Active Shallow Crust,240.0096,58.0155,0.0,05/03/6695 +8.59122,47.40181,9663,10,16,0,16,29,3.75,5.0,fr,51947,193,2210427,1,2,Active Shallow Crust,240.0096,58.0155,0.0,10/16/9663 +8.59122,47.40181,6904,6,30,9,14,42,3.75,5.0,fr,51948,138,2210430,1,1,Active Shallow Crust,0.0,89.98903,-90.0,06/30/6904 +8.59122,47.40181,444,4,24,13,10,6,3.85,5.0,fr,51949,8,2210436,1,5,Active Shallow Crust,0.0,89.99033,0.0,04/24/0444 +8.59122,47.40181,7701,4,1,19,48,58,3.85,5.0,fr,51950,154,2210436,1,5,Active Shallow Crust,0.0,89.99033,0.0,04/01/7701 +8.59122,47.40181,9906,7,11,5,28,50,3.85,5.0,fr,51951,198,2210436,1,5,Active Shallow Crust,0.0,89.99033,0.0,07/11/9906 +8.59122,47.40181,7225,1,10,18,10,24,3.85,5.0,fr,51952,144,2210436,1,5,Active Shallow Crust,0.0,89.99033,0.0,01/10/7225 +8.59122,47.40181,1604,9,7,6,53,34,3.85,5.0,fr,51953,32,2210436,1,5,Active Shallow Crust,0.0,89.99033,0.0,09/07/1604 +8.59122,47.40181,1673,10,16,12,56,10,3.85,15.0,fr,51954,33,2210437,1,3,Active Shallow Crust,0.0,89.99033,0.0,10/16/1673 +8.59122,47.40181,5203,3,2,17,19,28,3.85,15.0,fr,51955,104,2210437,1,3,Active Shallow Crust,0.0,89.99033,0.0,03/02/5203 +8.59122,47.40181,1184,4,8,10,2,56,3.85,15.0,fr,51956,23,2210437,1,3,Active Shallow Crust,0.0,89.99033,0.0,04/08/1184 +8.59122,47.40181,5931,9,15,2,6,59,3.85,27.5,fr,51957,118,2210438,1,1,Active Shallow Crust,0.0,89.99033,0.0,09/15/5931 +8.59122,47.40181,1070,5,16,17,0,48,3.85,27.5,fr,51958,21,2210441,1,1,Active Shallow Crust,240.0126,57.99727,0.0,05/16/1070 +8.59122,47.40181,8707,12,3,6,12,34,3.85,15.0,fr,51959,174,2210443,1,1,Active Shallow Crust,0.0,89.99023,-90.0,12/03/8707 +8.59122,47.40181,8592,4,20,18,50,27,3.85,27.5,fr,51960,171,2210447,1,1,Active Shallow Crust,128.8944,89.99517,0.0,04/20/8592 +8.59122,47.40181,7673,12,2,9,40,8,3.95,5.0,fr,51961,153,2210448,1,4,Active Shallow Crust,0.0,89.99139,0.0,12/02/7673 +8.59122,47.40181,4082,6,15,6,46,8,3.95,5.0,fr,51962,81,2210448,1,4,Active Shallow Crust,0.0,89.99139,0.0,06/15/4082 +8.59122,47.40181,1126,1,14,1,58,55,3.95,5.0,fr,51963,22,2210448,1,4,Active Shallow Crust,0.0,89.99139,0.0,01/14/1126 +8.59122,47.40181,4045,10,21,13,59,1,3.95,5.0,fr,51964,80,2210448,1,4,Active Shallow Crust,0.0,89.99139,0.0,10/21/4045 +8.59122,47.40181,9580,1,9,21,18,47,3.95,27.5,fr,51965,191,2210456,1,1,Active Shallow Crust,0.0,89.99129,-90.0,01/09/9580 +8.59122,47.40181,7469,5,4,13,29,56,3.95,5.0,fr,51966,149,2210457,1,1,Active Shallow Crust,128.8994,89.9957,0.0,05/04/7469 +8.59122,47.40181,4908,5,23,2,15,56,4.05,5.0,fr,51967,98,2210460,1,5,Active Shallow Crust,0.0,89.99232,0.0,05/23/4908 +8.59122,47.40181,2383,11,8,8,17,41,4.05,5.0,fr,51968,47,2210460,1,5,Active Shallow Crust,0.0,89.99232,0.0,11/08/2383 +8.59122,47.40181,3005,9,10,19,30,33,4.05,5.0,fr,51969,60,2210460,1,5,Active Shallow Crust,0.0,89.99232,0.0,09/10/3005 +8.59122,47.40181,8698,1,17,14,34,26,4.05,5.0,fr,51970,173,2210460,1,5,Active Shallow Crust,0.0,89.99232,0.0,01/17/8698 +8.59122,47.40181,5139,3,6,5,27,40,4.05,5.0,fr,51971,102,2210460,1,5,Active Shallow Crust,0.0,89.99232,0.0,03/06/5139 +8.59122,47.40181,3646,3,5,11,52,42,4.05,15.0,fr,51972,72,2210461,1,1,Active Shallow Crust,0.0,89.99232,0.0,03/05/3646 +8.59122,47.40181,3835,4,10,13,57,20,4.05,27.5,fr,51973,76,2210462,1,2,Active Shallow Crust,0.0,89.99232,0.0,04/10/3835 +8.59122,47.40181,803,12,26,15,40,43,4.05,27.5,fr,51974,16,2210462,1,2,Active Shallow Crust,0.0,89.99232,0.0,12/26/0803 +8.59122,47.40181,6849,7,17,7,55,22,4.05,27.5,fr,51975,136,2210465,1,1,Active Shallow Crust,240.0057,58.00604,0.0,07/17/6849 +8.59122,47.40181,4080,7,16,9,24,19,4.05,5.0,fr,51976,81,2210466,1,1,Active Shallow Crust,0.0,89.99223,-90.0,07/16/4080 +8.59122,47.40181,3775,10,25,3,11,41,4.15,5.0,fr,51977,75,2210472,1,3,Active Shallow Crust,0.0,89.99316,0.0,10/25/3775 +8.59122,47.40181,8623,5,27,20,47,3,4.15,5.0,fr,51978,172,2210472,1,3,Active Shallow Crust,0.0,89.99316,0.0,05/27/8623 +8.59122,47.40181,1371,9,26,2,43,44,4.15,5.0,fr,51979,27,2210472,1,3,Active Shallow Crust,0.0,89.99316,0.0,09/26/1371 +8.59122,47.40181,1956,7,23,2,23,9,4.15,15.0,fr,51980,39,2210473,1,1,Active Shallow Crust,0.0,89.99316,0.0,07/23/1956 +8.59122,47.40181,150,2,17,6,31,41,4.15,15.0,fr,51981,2,2210482,1,1,Active Shallow Crust,128.899,89.99316,0.0,02/17/0150 +8.59122,47.40181,9650,12,28,2,22,30,4.25,5.0,fr,51982,192,2210484,1,5,Active Shallow Crust,0.0,89.9878,0.0,12/28/9650 +8.59122,47.40181,8624,3,18,9,25,34,4.25,5.0,fr,51983,172,2210484,1,5,Active Shallow Crust,0.0,89.9878,0.0,03/18/8624 +8.59122,47.40181,6206,11,20,19,40,47,4.25,5.0,fr,51984,124,2210484,1,5,Active Shallow Crust,0.0,89.9878,0.0,11/20/6206 +8.59122,47.40181,2002,7,26,4,4,28,4.25,5.0,fr,51985,40,2210484,1,5,Active Shallow Crust,0.0,89.9878,0.0,07/26/2002 +8.59122,47.40181,8105,5,9,13,12,31,4.25,5.0,fr,51986,162,2210484,1,5,Active Shallow Crust,0.0,89.9878,0.0,05/09/8105 +8.59122,47.40181,3346,7,11,9,1,21,4.25,15.0,fr,51987,66,2210485,1,1,Active Shallow Crust,0.0,89.9878,0.0,07/11/3346 +8.59122,47.40181,1456,9,2,8,56,14,4.35,5.0,fr,51988,29,2210496,1,2,Active Shallow Crust,0.0,89.98913,0.0,09/02/1456 +8.59122,47.40181,3478,9,14,5,51,8,4.35,5.0,fr,51989,69,2210496,1,2,Active Shallow Crust,0.0,89.98913,0.0,09/14/3478 +8.59122,47.40181,6469,3,15,2,26,41,4.35,15.0,fr,51990,129,2210497,1,2,Active Shallow Crust,0.0,89.98913,0.0,03/15/6469 +8.59122,47.40181,3359,8,1,10,56,48,4.35,15.0,fr,51991,67,2210497,1,2,Active Shallow Crust,0.0,89.98913,0.0,08/01/3359 +8.59122,47.40181,4853,6,1,2,47,15,4.35,5.0,fr,51992,97,2210502,1,1,Active Shallow Crust,0.0,89.98901,-90.0,06/01/4853 +8.59122,47.40181,6726,4,9,5,23,44,4.35,5.0,fr,51993,134,2210505,1,1,Active Shallow Crust,128.8977,89.98305,0.0,04/09/6726 +8.59122,47.40181,5277,4,12,15,3,8,4.45,5.0,fr,51994,105,2210508,1,1,Active Shallow Crust,0.0,89.99031,0.0,04/12/5277 +8.59122,47.40181,3805,4,17,5,53,47,4.45,15.0,fr,51995,76,2210509,1,1,Active Shallow Crust,0.0,89.99031,0.0,04/17/3805 +8.59122,47.40181,5716,7,15,6,19,22,4.55,15.0,fr,51996,114,2210521,1,1,Active Shallow Crust,0.0,89.99136,0.0,07/15/5716 +8.59122,47.40181,2607,6,4,8,8,0,4.75,5.0,fr,51997,52,2210544,1,1,Active Shallow Crust,0.0,89.98971,0.0,06/04/2607 +8.59122,47.40181,7686,2,5,10,38,17,4.75,5.0,fr,51998,153,2210547,1,1,Active Shallow Crust,240.0081,58.00414,0.0,02/05/7686 +8.59122,47.40181,6170,5,14,12,24,43,4.85,5.0,fr,51999,123,2210556,1,1,Active Shallow Crust,0.0,89.99083,0.0,05/14/6170 +8.59122,47.40181,643,5,6,13,57,37,4.95,27.5,fr,52000,12,2210570,1,1,Active Shallow Crust,0.0,89.98911,0.0,05/06/0643 +8.59122,47.40181,9560,6,6,2,49,21,5.15,5.0,fr,52001,191,2210598,1,1,Active Shallow Crust,0.0,89.98905,-90.0,06/06/9560 +8.59122,47.40181,4576,7,19,5,58,45,5.85,15.0,fr,52002,91,2210680,1,1,Active Shallow Crust,240.0484,57.9999,0.0,07/19/4576 +8.59122,47.40181,5247,12,23,13,41,52,5.85,5.0,fr,52003,104,2210685,1,1,Active Shallow Crust,128.8664,89.99152,0.0,12/23/5247 +7.85811,44.44619,7807,11,30,9,36,8,3.55,5.0,fr,52004,156,2210880,1,3,Active Shallow Crust,0.0,89.9928,0.0,11/30/7807 +7.85811,44.44619,7226,8,24,13,2,54,3.55,5.0,fr,52005,144,2210880,1,3,Active Shallow Crust,0.0,89.9928,0.0,08/24/7226 +7.85811,44.44619,6370,12,1,15,56,19,3.55,5.0,fr,52006,127,2210880,1,3,Active Shallow Crust,0.0,89.9928,0.0,12/01/6370 +7.85811,44.44619,8015,10,29,11,20,58,3.55,15.0,fr,52007,160,2210881,1,1,Active Shallow Crust,0.0,89.9928,0.0,10/29/8015 +7.85811,44.44619,7882,8,9,16,8,3,3.55,27.5,fr,52008,157,2210882,1,1,Active Shallow Crust,0.0,89.9928,0.0,08/09/7882 +7.85811,44.44619,7356,11,29,21,42,43,3.65,5.0,fr,52009,147,2210892,1,1,Active Shallow Crust,0.0,89.98717,0.0,11/29/7356 +7.85811,44.44619,5244,5,22,21,42,22,3.65,27.5,fr,52010,104,2210894,1,1,Active Shallow Crust,0.0,89.98717,0.0,05/22/5244 +7.85811,44.44619,9720,2,1,23,22,43,3.85,5.0,fr,52011,194,2210922,1,2,Active Shallow Crust,0.0,89.98969,-90.0,02/01/9720 +7.85811,44.44619,4862,10,27,10,21,57,3.85,5.0,fr,52012,97,2210922,1,2,Active Shallow Crust,0.0,89.98969,-90.0,10/27/4862 +7.85811,44.44619,6496,8,25,4,16,1,3.95,5.0,fr,52013,129,2210931,1,1,Active Shallow Crust,240.02,58.00513,0.0,08/25/6496 +7.85811,44.44619,672,6,4,10,12,5,3.95,5.0,fr,52014,13,2210937,1,1,Active Shallow Crust,128.9012,89.99319,0.0,06/04/0672 +7.85811,44.44619,4646,3,25,18,8,8,4.05,5.0,fr,52015,92,2210940,1,1,Active Shallow Crust,0.0,89.99191,0.0,03/25/4646 +7.85811,44.44619,5720,4,16,18,19,48,4.15,5.0,fr,52016,114,2210961,1,1,Active Shallow Crust,128.8981,89.99278,0.0,04/16/5720 +7.85811,44.44619,1345,12,26,20,22,12,4.25,5.0,fr,52017,26,2210973,1,2,Active Shallow Crust,128.895,89.98087,0.0,12/26/1345 +7.85811,44.44619,1314,1,28,15,18,38,4.25,5.0,fr,52018,26,2210973,1,2,Active Shallow Crust,128.895,89.98087,0.0,01/28/1314 +7.85811,44.44619,6607,3,5,7,49,32,4.55,5.0,fr,52019,132,2211000,1,2,Active Shallow Crust,0.0,89.99089,0.0,03/05/6607 +7.85811,44.44619,5415,4,16,23,17,18,4.55,5.0,fr,52020,108,2211000,1,2,Active Shallow Crust,0.0,89.99089,0.0,04/16/5415 +7.85811,44.44619,4386,2,22,7,53,11,4.55,5.0,fr,52021,87,2211003,1,1,Active Shallow Crust,240.0083,57.99763,0.0,02/22/4386 +7.85811,44.44619,2507,12,14,20,53,42,4.65,5.0,fr,52022,50,2211012,1,1,Active Shallow Crust,0.0,89.98985,0.0,12/14/2507 +7.85811,44.44619,1987,6,9,18,16,59,4.65,15.0,fr,52023,39,2211013,1,2,Active Shallow Crust,0.0,89.98985,0.0,06/09/1987 +7.85811,44.44619,8330,8,14,4,15,40,4.65,15.0,fr,52024,166,2211013,1,2,Active Shallow Crust,0.0,89.98985,0.0,08/14/8330 +4.79187,49.10216,6650,12,16,13,12,42,4.45,5.0,fr,52025,132,2211474,1,1,Active Shallow Crust,0.0,89.99052,-90.0,12/16/6650 +1.82447,50.62582,829,6,30,17,20,39,3.65,15.0,fr,52026,16,2211853,1,1,Active Shallow Crust,0.0,89.99002,0.0,06/30/0829 +1.82447,50.62582,1816,10,6,3,35,51,3.75,5.0,fr,52027,36,2211864,1,1,Active Shallow Crust,0.0,89.98984,0.0,10/06/1816 +1.82447,50.62582,4248,3,17,3,35,34,3.75,15.0,fr,52028,84,2211874,1,1,Active Shallow Crust,128.8962,89.96734,0.0,03/17/4248 +1.82447,50.62582,2369,9,1,6,39,45,3.85,5.0,fr,52029,47,2211876,1,1,Active Shallow Crust,0.0,89.98981,0.0,09/01/2369 +1.82447,50.62582,5382,4,18,11,53,42,3.95,15.0,fr,52030,107,2211889,1,1,Active Shallow Crust,0.0,89.98991,0.0,04/18/5382 +1.82447,50.62582,3336,6,11,12,15,58,3.95,5.0,fr,52031,66,2211891,1,1,Active Shallow Crust,240.0206,58.0051,0.0,06/11/3336 +1.82447,50.62582,9806,4,11,11,45,3,4.55,5.0,fr,52032,196,2211960,1,1,Active Shallow Crust,0.0,89.98988,0.0,04/11/9806 +6.69092,45.7614,9453,4,28,13,3,3,3.65,5.0,fr,52033,189,2212332,1,1,Active Shallow Crust,0.0,89.98746,0.0,04/28/9453 +6.69092,45.7614,5076,11,12,9,4,57,3.75,5.0,fr,52034,101,2212344,1,1,Active Shallow Crust,0.0,89.98882,0.0,11/12/5076 +6.69092,45.7614,1509,2,2,11,53,9,3.75,15.0,fr,52035,30,2212345,1,1,Active Shallow Crust,0.0,89.98882,0.0,02/02/1509 +6.69092,45.7614,7851,10,16,7,57,31,3.95,5.0,fr,52036,157,2212368,1,1,Active Shallow Crust,0.0,89.99112,0.0,10/16/7851 +6.69092,45.7614,2210,2,22,23,18,51,4.05,5.0,fr,52037,44,2212386,1,1,Active Shallow Crust,0.0,89.992,-90.0,02/22/2210 +6.69092,45.7614,9829,2,10,4,28,13,4.45,15.0,fr,52038,196,2212432,1,1,Active Shallow Crust,240.0053,57.99448,0.0,02/10/9829 +6.69092,45.7614,706,2,26,10,33,21,4.55,5.0,fr,52039,14,2212440,1,2,Active Shallow Crust,0.0,89.9911,0.0,02/26/0706 +6.69092,45.7614,9462,8,21,15,4,48,4.55,5.0,fr,52040,189,2212440,1,2,Active Shallow Crust,0.0,89.9911,0.0,08/21/9462 +3.17048,41.29438,3563,10,14,7,13,59,3.55,5.0,fr,52041,71,2212806,1,1,Active Shallow Crust,0.0,89.9885,-90.0,10/14/3563 +3.17048,41.29438,8079,4,30,12,56,5,3.55,15.0,fr,52042,161,2212807,1,1,Active Shallow Crust,0.0,89.9885,-90.0,04/30/8079 +3.17048,41.29438,2893,4,7,2,14,35,3.65,5.0,fr,52043,57,2212812,1,1,Active Shallow Crust,0.0,89.98987,0.0,04/07/2893 +3.17048,41.29438,8040,10,8,8,56,48,3.75,5.0,fr,52044,160,2212824,1,1,Active Shallow Crust,0.0,89.99097,0.0,10/08/8040 +3.17048,41.29438,4242,10,26,7,47,15,3.85,5.0,fr,52045,84,2212839,1,1,Active Shallow Crust,240.0098,57.9979,0.0,10/26/4242 +3.17048,41.29438,2900,11,10,9,9,41,4.15,15.0,fr,52046,57,2212879,1,1,Active Shallow Crust,0.0,89.99039,-90.0,11/10/2900 +3.17048,41.29438,9866,3,10,14,30,36,4.35,5.0,fr,52047,197,2212896,1,1,Active Shallow Crust,0.0,89.98944,0.0,03/10/9866 +3.17048,41.29438,5489,5,10,13,26,27,4.45,5.0,fr,52048,109,2212908,1,1,Active Shallow Crust,0.0,89.99059,0.0,05/10/5489 +3.17048,41.29438,168,4,14,18,40,41,4.65,27.5,fr,52049,3,2212934,1,1,Active Shallow Crust,0.0,89.99039,0.0,04/14/0168 +3.17048,41.29438,4093,7,19,17,23,44,4.75,5.0,fr,52050,81,2212953,1,1,Active Shallow Crust,128.8902,89.98813,0.0,07/19/4093 +-2.2451,41.81914,8695,10,9,17,20,37,3.65,5.0,fr,52051,173,2213292,1,1,Active Shallow Crust,0.0,89.98995,0.0,10/09/8695 +-2.2451,41.81914,9268,7,17,7,16,54,3.65,27.5,fr,52052,185,2213294,1,1,Active Shallow Crust,0.0,89.98995,0.0,07/17/9268 +-2.2451,41.81914,8669,6,19,8,38,50,3.65,5.0,fr,52053,173,2213298,1,2,Active Shallow Crust,0.0,89.98984,-90.0,06/19/8669 +-2.2451,41.81914,4033,7,2,7,27,31,3.65,5.0,fr,52054,80,2213298,1,2,Active Shallow Crust,0.0,89.98984,-90.0,07/02/4033 +-2.2451,41.81914,9459,12,15,7,19,16,3.75,5.0,fr,52055,189,2213304,1,1,Active Shallow Crust,0.0,89.99104,0.0,12/15/9459 +-2.2451,41.81914,4048,7,6,3,32,27,3.85,5.0,fr,52056,80,2213316,1,1,Active Shallow Crust,0.0,89.98936,0.0,07/06/4048 +-2.2451,41.81914,424,8,29,20,52,43,4.15,5.0,fr,52057,8,2213352,1,1,Active Shallow Crust,0.0,89.99059,0.0,08/29/0424 +0.94962,43.3939,9263,11,29,12,12,49,3.55,5.0,fr,52058,185,2213760,1,1,Active Shallow Crust,0.0,89.98992,0.0,11/29/9263 +0.94962,43.3939,983,1,28,2,37,5,3.55,5.0,fr,52059,19,2213766,1,1,Active Shallow Crust,0.0,89.98981,-90.0,01/28/0983 +0.94962,43.3939,86,3,16,23,58,23,3.95,5.0,fr,52060,1,2213808,1,2,Active Shallow Crust,0.0,89.99017,0.0,03/16/0086 +0.94962,43.3939,1627,12,17,15,5,26,3.95,5.0,fr,52061,32,2213808,1,2,Active Shallow Crust,0.0,89.99017,0.0,12/17/1627 +0.94962,43.3939,1117,3,24,18,27,19,4.35,27.5,fr,52062,22,2213867,1,1,Active Shallow Crust,128.8984,89.98279,0.0,03/24/1117 +-5.17317,47.44227,9355,5,28,22,39,32,3.85,5.0,fr,52063,187,2214276,1,1,Active Shallow Crust,0.0,89.99034,0.0,05/28/9355 +-5.17317,47.44227,2411,10,10,21,42,40,3.85,15.0,fr,52064,48,2214277,1,1,Active Shallow Crust,0.0,89.99034,0.0,10/10/2411 +-5.17317,47.44227,5935,7,12,21,52,22,4.55,15.0,fr,52065,118,2214361,1,1,Active Shallow Crust,0.0,89.98921,0.0,07/12/5935 +-1.12401,50.74885,470,10,26,16,7,3,3.55,5.0,fr,52066,9,2214720,1,1,Active Shallow Crust,0.0,89.99043,0.0,10/26/0470 +-1.12401,50.74885,526,6,12,12,52,1,3.75,5.0,fr,52067,10,2214744,1,1,Active Shallow Crust,0.0,89.98986,0.0,06/12/0526 +-1.12401,50.74885,6442,4,19,11,9,30,3.75,15.0,fr,52068,128,2214745,1,1,Active Shallow Crust,0.0,89.98986,0.0,04/19/6442 +-1.12401,50.74885,9023,6,6,7,22,1,4.25,5.0,fr,52069,180,2214804,1,1,Active Shallow Crust,0.0,89.99002,0.0,06/06/9023 +3.91111,53.08858,4971,7,2,8,31,25,3.65,5.0,fr,52070,99,2215212,1,1,Active Shallow Crust,0.0,89.9892,0.0,07/02/4971 +0.6055,51.0976,2510,4,21,19,25,40,3.65,5.0,fr,52071,50,2215692,1,1,Active Shallow Crust,0.0,89.99012,0.0,04/21/2510 +0.6055,51.0976,7330,11,18,14,0,33,3.65,27.5,fr,52072,146,2215694,1,1,Active Shallow Crust,0.0,89.99012,0.0,11/18/7330 +0.6055,51.0976,2569,8,7,3,46,58,3.65,5.0,fr,52073,51,2215695,1,1,Active Shallow Crust,240.0017,58.01295,0.0,08/07/2569 +0.6055,51.0976,1894,5,31,23,53,20,3.65,15.0,fr,52074,37,2215702,1,1,Active Shallow Crust,128.9001,89.96349,0.0,05/31/1894 +0.6055,51.0976,8438,3,5,15,50,5,3.75,5.0,fr,52075,168,2215704,1,1,Active Shallow Crust,0.0,89.98994,0.0,03/05/8438 +0.6055,51.0976,9018,2,24,12,33,43,3.75,5.0,fr,52076,180,2215707,1,1,Active Shallow Crust,240.009,58.01762,0.0,02/24/9018 +0.6055,51.0976,669,1,22,5,3,18,4.25,15.0,fr,52077,13,2215765,1,1,Active Shallow Crust,0.0,89.9901,0.0,01/22/0669 +0.6055,51.0976,7971,4,29,23,59,57,4.45,27.5,fr,52078,159,2215790,1,1,Active Shallow Crust,0.0,89.98989,0.0,04/29/7971 +0.6055,51.0976,3886,2,8,22,29,58,4.65,5.0,fr,52079,77,2215812,1,1,Active Shallow Crust,0.0,89.98996,0.0,02/08/3886 +3.06268,44.2135,6791,12,12,7,2,59,3.55,5.0,fr,52080,135,2216640,1,1,Active Shallow Crust,0.0,89.98916,0.0,12/12/6791 +3.06268,44.2135,1337,3,25,14,31,56,3.65,5.0,fr,52081,26,2216655,1,1,Active Shallow Crust,240.0009,58.01344,0.0,03/25/1337 +3.06268,44.2135,2727,1,23,19,51,6,3.75,5.0,fr,52082,54,2216673,1,1,Active Shallow Crust,128.8967,89.96745,0.0,01/23/2727 +3.06268,44.2135,2934,6,1,1,25,37,3.95,5.0,fr,52083,58,2216691,1,2,Active Shallow Crust,240.0194,58.00467,0.0,06/01/2934 +3.06268,44.2135,6644,4,25,0,40,3,3.95,5.0,fr,52084,132,2216691,1,2,Active Shallow Crust,240.0194,58.00467,0.0,04/25/6644 +3.06268,44.2135,2894,5,15,20,53,15,4.05,5.0,fr,52085,57,2216709,1,1,Active Shallow Crust,128.8907,89.9939,0.0,05/15/2894 +3.06268,44.2135,4775,8,13,9,13,23,4.25,15.0,fr,52086,95,2216725,1,1,Active Shallow Crust,0.0,89.99031,0.0,08/13/4775 +3.06268,44.2135,9591,11,25,8,53,58,4.25,5.0,fr,52087,191,2216730,1,1,Active Shallow Crust,0.0,89.9902,-90.0,11/25/9591 +3.06268,44.2135,609,4,10,7,1,55,4.35,5.0,fr,52088,12,2216736,1,1,Active Shallow Crust,0.0,89.98993,0.0,04/10/0609 +3.06268,44.2135,4203,6,18,13,57,31,4.55,5.0,fr,52089,84,2216760,1,1,Active Shallow Crust,0.0,89.98972,0.0,06/18/4203 +4.88211,48.61133,292,3,30,22,44,5,4.15,5.0,fr,52090,5,2217201,1,1,Active Shallow Crust,128.8974,89.99332,0.0,03/30/0292 +4.88211,48.61133,4299,8,18,0,49,28,4.55,15.0,fr,52091,85,2217241,1,1,Active Shallow Crust,0.0,89.98946,0.0,08/18/4299 +4.88211,48.61133,7481,3,7,9,3,24,4.85,5.0,fr,52092,149,2217276,1,1,Active Shallow Crust,0.0,89.98955,0.0,03/07/7481 +5.46149,41.07047,6912,7,15,3,8,46,3.65,15.0,fr,52093,138,2217613,1,2,Active Shallow Crust,0.0,89.99323,0.0,07/15/6912 +5.46149,41.07047,9386,7,30,17,9,43,3.65,15.0,fr,52094,187,2217613,1,2,Active Shallow Crust,0.0,89.99323,0.0,07/30/9386 +5.46149,41.07047,2632,3,5,8,35,55,3.65,5.0,fr,52095,52,2217615,1,1,Active Shallow Crust,240.0002,58.01302,0.0,03/05/2632 +5.46149,41.07047,1760,3,5,10,59,24,3.65,5.0,fr,52096,35,2217618,1,1,Active Shallow Crust,0.0,89.99315,-90.0,03/05/1760 +5.46149,41.07047,2059,10,1,13,7,7,3.95,5.0,fr,52097,41,2217654,1,1,Active Shallow Crust,0.0,89.9903,-90.0,10/01/2059 +5.46149,41.07047,8088,10,6,18,16,50,4.05,5.0,fr,52098,161,2217669,1,1,Active Shallow Crust,128.8905,89.99359,0.0,10/06/8088 +5.46149,41.07047,373,12,16,8,58,17,4.65,15.0,fr,52099,7,2217733,1,1,Active Shallow Crust,0.0,89.98929,0.0,12/16/0373 +5.42528,42.01392,5886,11,8,4,53,8,3.85,5.0,fr,52100,117,2218119,1,1,Active Shallow Crust,240.0107,57.99801,0.0,11/08/5886 +5.42528,42.01392,8138,8,4,17,42,47,3.95,5.0,fr,52101,162,2218128,1,1,Active Shallow Crust,0.0,89.99055,0.0,08/04/8138 +5.42528,42.01392,2703,11,13,19,18,21,4.15,5.0,fr,52102,54,2218152,1,1,Active Shallow Crust,0.0,89.98873,0.0,11/13/2703 +-3.52329,43.61307,5290,3,19,21,21,12,3.55,5.0,fr,52103,105,2218560,1,1,Active Shallow Crust,0.0,89.98905,0.0,03/19/5290 +-3.52329,43.61307,4512,2,10,23,42,20,3.55,15.0,fr,52104,90,2218561,1,1,Active Shallow Crust,0.0,89.98905,0.0,02/10/4512 +-3.52329,43.61307,9578,5,26,2,34,35,3.55,5.0,fr,52105,191,2218566,1,1,Active Shallow Crust,0.0,89.98892,-90.0,05/26/9578 +-3.52329,43.61307,2295,11,17,3,24,54,3.65,5.0,fr,52106,45,2218572,1,2,Active Shallow Crust,0.0,89.99024,0.0,11/17/2295 +-3.52329,43.61307,5315,7,20,14,19,2,3.65,5.0,fr,52107,106,2218572,1,2,Active Shallow Crust,0.0,89.99024,0.0,07/20/5315 +-3.52329,43.61307,8645,8,18,6,52,24,3.75,15.0,fr,52108,172,2218585,1,1,Active Shallow Crust,0.0,89.9913,0.0,08/18/8645 +-3.52329,43.61307,9267,1,5,2,24,31,3.75,5.0,fr,52109,185,2218593,1,1,Active Shallow Crust,128.8968,89.96744,0.0,01/05/9267 +-3.52329,43.61307,5611,12,12,11,14,28,3.85,5.0,fr,52110,112,2218596,1,1,Active Shallow Crust,0.0,89.98966,0.0,12/12/5611 +-3.52329,43.61307,1071,2,26,9,3,17,3.95,5.0,fr,52111,21,2218608,1,1,Active Shallow Crust,0.0,89.99078,0.0,02/26/1071 +-3.52329,43.61307,6892,7,1,1,26,27,4.35,5.0,fr,52112,137,2218662,1,1,Active Shallow Crust,0.0,89.98971,-90.0,07/01/6892 +1.49566,51.13192,7601,9,25,11,4,34,3.55,5.0,fr,52113,152,2219043,1,1,Active Shallow Crust,240.0128,57.99799,0.0,09/25/7601 +1.49566,51.13192,1058,3,25,5,19,18,3.65,5.0,fr,52114,21,2219052,1,1,Active Shallow Crust,0.0,89.99013,0.0,03/25/1058 +1.49566,51.13192,5541,8,21,3,24,50,3.65,5.0,fr,52115,110,2219058,1,1,Active Shallow Crust,0.0,89.99001,-90.0,08/21/5541 +1.49566,51.13192,6330,10,1,1,10,2,4.05,5.0,fr,52116,126,2219100,1,1,Active Shallow Crust,0.0,89.99021,0.0,10/01/6330 +1.49566,51.13192,6696,3,3,6,20,24,4.15,15.0,fr,52117,133,2219113,1,1,Active Shallow Crust,0.0,89.98969,0.0,03/03/6696 +1.49566,51.13192,4826,4,7,13,15,37,4.15,5.0,fr,52118,96,2219115,1,1,Active Shallow Crust,240.0092,57.99752,0.0,04/07/4826 +1.49566,51.13192,6795,2,21,3,38,36,4.35,5.0,fr,52119,135,2219136,1,1,Active Shallow Crust,0.0,89.98992,0.0,02/21/6795 +1.49566,51.13192,3042,9,11,2,3,21,4.85,5.0,fr,52120,60,2219196,1,1,Active Shallow Crust,0.0,89.99008,0.0,09/11/3042 +1.49566,51.13192,4615,5,25,12,22,48,5.05,5.0,fr,52121,92,2219226,1,1,Active Shallow Crust,0.0,89.99004,-90.0,05/25/4615 +1.49566,51.13192,7491,5,20,17,30,58,5.15,15.0,fr,52122,149,2219233,1,1,Active Shallow Crust,0.0,89.98997,0.0,05/20/7491 +4.37063,46.4959,7844,4,21,1,26,36,3.55,5.0,fr,52123,156,2219520,1,1,Active Shallow Crust,0.0,89.99306,0.0,04/21/7844 +4.37063,46.4959,6308,5,15,10,37,59,3.55,5.0,fr,52124,126,2219523,1,1,Active Shallow Crust,240.0116,57.99786,0.0,05/15/6308 +4.37063,46.4959,9855,12,3,6,8,0,3.65,5.0,fr,52125,197,2219538,1,1,Active Shallow Crust,0.0,89.98748,-90.0,12/03/9855 +4.37063,46.4959,1892,1,8,23,45,18,3.75,15.0,fr,52126,37,2219548,1,1,Active Shallow Crust,240.0071,58.01781,0.0,01/08/1892 +4.37063,46.4959,407,10,29,3,55,43,3.85,5.0,fr,52127,8,2219556,1,1,Active Shallow Crust,0.0,89.99017,0.0,10/29/0407 +4.37063,46.4959,555,10,3,23,6,39,3.85,15.0,fr,52128,11,2219557,1,1,Active Shallow Crust,0.0,89.99017,0.0,10/03/0555 +4.37063,46.4959,7895,12,22,13,19,28,4.05,5.0,fr,52129,157,2219589,1,1,Active Shallow Crust,128.8908,89.99415,0.0,12/22/7895 +4.37063,46.4959,9263,6,23,14,28,21,4.15,5.0,fr,52130,185,2219592,1,1,Active Shallow Crust,0.0,89.98956,0.0,06/23/9263 +4.37063,46.4959,8137,11,13,10,19,9,4.25,15.0,fr,52131,162,2219605,1,1,Active Shallow Crust,0.0,89.9907,0.0,11/13/8137 +4.37063,46.4959,6791,4,2,2,26,30,4.25,15.0,fr,52132,135,2219611,1,1,Active Shallow Crust,0.0,89.99059,-90.0,04/02/6791 +4.37063,46.4959,712,12,23,22,49,44,4.35,27.5,fr,52133,14,2219618,1,1,Active Shallow Crust,0.0,89.98895,0.0,12/23/0712 +2.96709,44.72459,1205,4,3,7,55,20,3.55,5.0,fr,52134,24,2220000,1,1,Active Shallow Crust,0.0,89.98925,0.0,04/03/1205 +2.96709,44.72459,7080,12,19,11,33,42,3.55,15.0,fr,52135,141,2220001,1,1,Active Shallow Crust,0.0,89.98925,0.0,12/19/7080 +2.96709,44.72459,5104,5,15,13,14,5,3.55,5.0,fr,52136,102,2220003,1,1,Active Shallow Crust,240.0123,57.99785,0.0,05/15/5104 +2.96709,44.72459,2746,1,21,4,15,20,3.55,15.0,fr,52137,54,2220004,1,1,Active Shallow Crust,240.0123,57.99785,0.0,01/21/2746 +2.96709,44.72459,3869,4,15,21,35,45,3.65,15.0,fr,52138,77,2220013,1,2,Active Shallow Crust,0.0,89.99043,0.0,04/15/3869 +2.96709,44.72459,6881,10,20,13,48,0,3.65,15.0,fr,52139,137,2220013,1,2,Active Shallow Crust,0.0,89.99043,0.0,10/20/6881 +2.96709,44.72459,9963,3,26,11,45,17,3.65,27.5,fr,52140,199,2220014,1,1,Active Shallow Crust,0.0,89.99043,0.0,03/26/9963 +2.96709,44.72459,6916,5,7,2,34,34,3.65,5.0,fr,52141,138,2220015,1,3,Active Shallow Crust,240.0009,58.01337,0.0,05/07/6916 +2.96709,44.72459,3844,10,3,12,42,46,3.65,5.0,fr,52142,76,2220015,1,3,Active Shallow Crust,240.0009,58.01337,0.0,10/03/3844 +2.96709,44.72459,5970,5,25,19,31,42,3.65,5.0,fr,52143,119,2220015,1,3,Active Shallow Crust,240.0009,58.01337,0.0,05/25/5970 +2.96709,44.72459,6949,8,17,2,3,52,3.75,5.0,fr,52144,138,2220024,1,3,Active Shallow Crust,0.0,89.98862,0.0,08/17/6949 +2.96709,44.72459,708,1,30,0,14,36,3.75,5.0,fr,52145,14,2220024,1,3,Active Shallow Crust,0.0,89.98862,0.0,01/30/0708 +2.96709,44.72459,4538,3,29,12,34,46,3.75,5.0,fr,52146,90,2220024,1,3,Active Shallow Crust,0.0,89.98862,0.0,03/29/4538 +2.96709,44.72459,5572,5,28,13,51,25,3.75,27.5,fr,52147,111,2220026,1,1,Active Shallow Crust,0.0,89.98862,0.0,05/28/5572 +2.96709,44.72459,8816,11,2,17,27,8,4.15,15.0,fr,52148,176,2220079,1,1,Active Shallow Crust,0.0,89.98911,-90.0,11/02/8816 +2.96709,44.72459,9472,3,16,10,32,29,4.45,5.0,fr,52149,189,2220108,1,1,Active Shallow Crust,0.0,89.98983,0.0,03/16/9472 +2.96709,44.72459,2595,6,11,6,33,7,4.75,15.0,fr,52150,51,2220145,1,1,Active Shallow Crust,0.0,89.9901,0.0,06/11/2595 +2.96709,44.72459,5276,10,9,2,25,36,4.75,27.5,fr,52151,105,2220146,1,1,Active Shallow Crust,0.0,89.9901,0.0,10/09/5276 +2.96709,44.72459,7813,3,11,0,5,45,4.75,5.0,fr,52152,156,2220147,1,1,Active Shallow Crust,240.0067,58.00444,0.0,03/11/7813 +5.27615,47.00802,3455,6,24,20,2,19,3.65,5.0,fr,52153,69,2220492,1,3,Active Shallow Crust,0.0,89.98774,0.0,06/24/3455 +5.27615,47.00802,2585,8,23,16,49,5,3.65,5.0,fr,52154,51,2220492,1,3,Active Shallow Crust,0.0,89.98774,0.0,08/23/2585 +5.27615,47.00802,7768,4,25,11,28,29,3.65,5.0,fr,52155,155,2220492,1,3,Active Shallow Crust,0.0,89.98774,0.0,04/25/7768 +5.27615,47.00802,8529,8,5,16,40,28,3.65,15.0,fr,52156,170,2220493,1,1,Active Shallow Crust,0.0,89.98774,0.0,08/05/8529 +5.27615,47.00802,1170,7,13,5,22,28,3.65,5.0,fr,52157,23,2220495,1,1,Active Shallow Crust,239.9998,58.01329,0.0,07/13/1170 +5.27615,47.00802,3232,11,19,8,18,35,3.65,15.0,fr,52158,64,2220499,1,1,Active Shallow Crust,0.0,89.9876,-90.0,11/19/3232 +5.27615,47.00802,2363,11,13,16,0,45,3.85,5.0,fr,52159,47,2220516,1,1,Active Shallow Crust,0.0,89.99026,0.0,11/13/2363 +5.27615,47.00802,4176,4,2,6,45,1,3.85,15.0,fr,52160,83,2220517,1,2,Active Shallow Crust,0.0,89.99026,0.0,04/02/4176 +5.27615,47.00802,1738,3,22,17,33,57,3.85,15.0,fr,52161,34,2220517,1,2,Active Shallow Crust,0.0,89.99026,0.0,03/22/1738 +5.27615,47.00802,1709,5,29,23,58,33,3.95,27.5,fr,52162,34,2220530,1,1,Active Shallow Crust,0.0,89.99133,0.0,05/29/1709 +5.27615,47.00802,3215,5,2,22,23,28,4.15,5.0,fr,52163,64,2220552,1,1,Active Shallow Crust,0.0,89.98966,0.0,05/02/3215 +5.80078,47.20572,5754,7,8,1,53,9,3.55,5.0,fr,52164,115,2220960,1,1,Active Shallow Crust,0.0,89.99315,0.0,07/08/5754 +5.80078,47.20572,8762,11,5,8,56,20,3.55,15.0,fr,52165,175,2220961,1,1,Active Shallow Crust,0.0,89.99315,0.0,11/05/8762 +5.80078,47.20572,8094,1,11,22,43,31,3.55,5.0,fr,52166,161,2220963,1,2,Active Shallow Crust,240.0114,57.99959,0.0,01/11/8094 +5.80078,47.20572,9478,9,2,17,56,44,3.55,5.0,fr,52167,189,2220963,1,2,Active Shallow Crust,240.0114,57.99959,0.0,09/02/9478 +5.80078,47.20572,9299,2,6,14,57,48,3.55,5.0,fr,52168,185,2220966,1,1,Active Shallow Crust,0.0,89.99307,-90.0,02/06/9299 +5.80078,47.20572,4654,9,22,17,37,11,3.75,5.0,fr,52169,93,2220984,1,2,Active Shallow Crust,0.0,89.98911,0.0,09/22/4654 +5.80078,47.20572,3518,9,30,11,35,16,3.75,5.0,fr,52170,70,2220984,1,2,Active Shallow Crust,0.0,89.98911,0.0,09/30/3518 +5.80078,47.20572,2679,3,24,4,0,9,3.95,5.0,fr,52171,53,2221014,1,1,Active Shallow Crust,0.0,89.99126,-90.0,03/24/2679 +5.80078,47.20572,8775,7,12,4,29,24,4.05,15.0,fr,52172,175,2221021,1,1,Active Shallow Crust,0.0,89.98844,0.0,07/12/8775 +5.80078,47.20572,959,3,6,8,22,56,4.15,5.0,fr,52173,19,2221038,1,1,Active Shallow Crust,0.0,89.98958,-90.0,03/06/0959 +5.80078,47.20572,8717,8,16,16,13,58,4.15,15.0,fr,52174,174,2221039,1,1,Active Shallow Crust,0.0,89.98958,-90.0,08/16/8717 +5.80078,47.20572,5435,8,19,4,38,35,4.25,5.0,fr,52175,108,2221044,1,1,Active Shallow Crust,0.0,89.99082,0.0,08/19/5435 +5.80078,47.20572,7093,3,24,2,26,14,4.25,27.5,fr,52176,141,2221046,1,1,Active Shallow Crust,0.0,89.99082,0.0,03/24/7093 +5.80078,47.20572,5252,5,18,18,17,13,4.35,15.0,fr,52177,105,2221057,1,1,Active Shallow Crust,0.0,89.98909,0.0,05/18/5252 +5.80078,47.20572,9211,7,9,20,20,34,4.35,5.0,fr,52178,184,2221062,1,1,Active Shallow Crust,0.0,89.98896,-90.0,07/09/9211 +5.90135,44.48022,5091,1,22,1,36,11,3.65,5.0,fr,52179,101,2221452,1,1,Active Shallow Crust,0.0,89.98717,0.0,01/22/5091 +5.90135,44.48022,3419,3,17,3,37,18,3.75,5.0,fr,52180,68,2221464,1,1,Active Shallow Crust,0.0,89.98857,0.0,03/17/3419 +5.90135,44.48022,9444,1,20,19,58,38,4.05,15.0,fr,52181,188,2221501,1,1,Active Shallow Crust,0.0,89.99191,0.0,01/20/9444 +5.90135,44.48022,2691,2,17,19,59,41,4.15,15.0,fr,52182,53,2221513,1,1,Active Shallow Crust,0.0,89.98918,0.0,02/17/2691 +5.90135,44.48022,7000,7,3,17,50,13,4.25,5.0,fr,52183,139,2221524,1,1,Active Shallow Crust,0.0,89.99036,0.0,07/03/7000 +5.90135,44.48022,2899,7,30,18,18,58,4.35,5.0,fr,52184,57,2221536,1,1,Active Shallow Crust,0.0,89.99141,0.0,07/30/2899 +7.97721,50.98666,9431,3,15,2,15,2,3.95,27.5,fr,52185,188,2222450,1,1,Active Shallow Crust,0.0,89.99199,0.0,03/15/9431 +1.19549,49.95058,4538,6,10,7,26,32,3.55,5.0,fr,52186,90,2222880,1,1,Active Shallow Crust,0.0,89.99026,0.0,06/10/4538 +1.19549,49.95058,5958,6,22,7,55,15,3.55,15.0,fr,52187,119,2222884,1,1,Active Shallow Crust,240.0122,57.99838,0.0,06/22/5958 +1.19549,49.95058,7231,2,19,11,11,37,3.65,5.0,fr,52188,144,2222892,1,1,Active Shallow Crust,0.0,89.98988,0.0,02/19/7231 +1.19549,49.95058,6766,9,5,16,2,46,3.65,15.0,fr,52189,135,2222893,1,1,Active Shallow Crust,0.0,89.98988,0.0,09/05/6766 +1.19549,49.95058,6391,8,24,19,0,29,3.75,15.0,fr,52190,127,2222905,1,1,Active Shallow Crust,0.0,89.98969,0.0,08/24/6391 +1.19549,49.95058,4048,2,24,6,50,30,3.75,5.0,fr,52191,80,2222910,1,1,Active Shallow Crust,0.0,89.98957,-90.0,02/24/4048 +1.19549,49.95058,368,12,13,16,25,28,3.85,27.5,fr,52192,7,2222918,1,1,Active Shallow Crust,0.0,89.98966,0.0,12/13/0368 +1.19549,49.95058,7721,4,25,1,29,34,3.95,5.0,fr,52193,154,2222928,1,1,Active Shallow Crust,0.0,89.98976,0.0,04/25/7721 +1.19549,49.95058,7146,9,28,4,16,40,4.15,5.0,fr,52194,142,2222955,1,1,Active Shallow Crust,240.009,57.99746,0.0,09/28/7146 +1.19549,49.95058,8654,4,4,22,12,42,4.35,27.5,fr,52195,173,2222984,1,1,Active Shallow Crust,0.0,89.9902,-90.0,04/04/8654 +1.19549,49.95058,9401,7,14,6,59,52,4.65,5.0,fr,52196,188,2223015,1,1,Active Shallow Crust,240.0121,57.99441,0.0,07/14/9401 +3.71053,49.94404,5872,5,21,18,53,4,3.55,27.5,fr,52197,117,2223851,1,1,Active Shallow Crust,128.8953,89.99351,0.0,05/21/5872 +3.71053,49.94404,917,10,20,11,54,37,3.65,5.0,fr,52198,18,2223852,1,1,Active Shallow Crust,0.0,89.99133,0.0,10/20/0917 +3.71053,49.94404,5569,6,7,1,25,51,3.65,15.0,fr,52199,111,2223853,1,1,Active Shallow Crust,0.0,89.99133,0.0,06/07/5569 +3.71053,49.94404,3077,1,28,0,45,24,3.75,5.0,fr,52200,61,2223870,1,1,Active Shallow Crust,0.0,89.98957,-90.0,01/28/3077 +3.71053,49.94404,5032,4,25,10,6,55,3.85,27.5,fr,52201,100,2223884,1,1,Active Shallow Crust,0.0,89.99071,-90.0,04/25/5032 +3.71053,49.94404,2405,5,6,7,15,9,3.85,5.0,fr,52202,48,2223885,1,1,Active Shallow Crust,128.8949,89.99426,0.0,05/06/2405 +3.71053,49.94404,5831,6,11,22,23,53,4.05,5.0,fr,52203,116,2223900,1,1,Active Shallow Crust,0.0,89.99088,0.0,06/11/5831 +2.83962,44.83578,8333,6,11,13,55,39,3.55,15.0,fr,52204,166,2224321,1,2,Active Shallow Crust,0.0,89.98927,0.0,06/11/8333 +2.83962,44.83578,8512,5,18,15,1,37,3.55,15.0,fr,52205,170,2224321,1,2,Active Shallow Crust,0.0,89.98927,0.0,05/18/8512 +2.83962,44.83578,3129,3,7,1,12,12,3.55,15.0,fr,52206,62,2224324,1,1,Active Shallow Crust,240.012,57.99811,0.0,03/07/3129 +2.83962,44.83578,9832,11,19,7,29,21,3.55,5.0,fr,52207,196,2224329,1,2,Active Shallow Crust,128.8962,89.99464,0.0,11/19/9832 +2.83962,44.83578,9287,2,24,11,58,55,3.55,5.0,fr,52208,185,2224329,1,2,Active Shallow Crust,128.8962,89.99464,0.0,02/24/9287 +2.83962,44.83578,4120,7,3,14,34,8,3.65,27.5,fr,52209,82,2224334,1,1,Active Shallow Crust,0.0,89.99044,0.0,07/03/4120 +2.83962,44.83578,9230,1,9,19,43,14,3.65,5.0,fr,52210,184,2224335,1,2,Active Shallow Crust,240.001,58.01225,0.0,01/09/9230 +2.83962,44.83578,3274,12,14,11,13,50,3.65,5.0,fr,52211,65,2224335,1,2,Active Shallow Crust,240.001,58.01225,0.0,12/14/3274 +2.83962,44.83578,3287,12,17,13,48,22,3.75,5.0,fr,52212,65,2224344,1,1,Active Shallow Crust,0.0,89.98864,0.0,12/17/3287 +2.83962,44.83578,1114,5,22,9,13,3,3.75,15.0,fr,52213,22,2224345,1,3,Active Shallow Crust,0.0,89.98864,0.0,05/22/1114 +2.83962,44.83578,2382,4,27,3,48,39,3.75,15.0,fr,52214,47,2224345,1,3,Active Shallow Crust,0.0,89.98864,0.0,04/27/2382 +2.83962,44.83578,4221,7,26,19,51,36,3.75,15.0,fr,52215,84,2224345,1,3,Active Shallow Crust,0.0,89.98864,0.0,07/26/4221 +2.83962,44.83578,4580,2,23,20,26,15,3.85,5.0,fr,52216,91,2224362,1,1,Active Shallow Crust,0.0,89.98976,-90.0,02/23/4580 +2.83962,44.83578,6580,11,3,16,6,23,3.85,5.0,fr,52217,131,2224365,1,1,Active Shallow Crust,128.896,89.99368,0.0,11/03/6580 +2.83962,44.83578,3435,8,6,20,4,49,3.95,15.0,fr,52218,68,2224375,1,1,Active Shallow Crust,0.0,89.99088,-90.0,08/06/3435 +2.83962,44.83578,3507,9,11,8,53,21,4.05,5.0,fr,52219,70,2224380,1,1,Active Shallow Crust,0.0,89.98994,0.0,09/11/3507 +2.83962,44.83578,8621,12,13,8,56,30,4.35,5.0,fr,52220,172,2224416,1,1,Active Shallow Crust,0.0,89.99004,0.0,12/13/8621 +2.83962,44.83578,7787,10,30,14,46,33,4.95,5.0,fr,52221,155,2224488,1,1,Active Shallow Crust,0.0,89.99001,0.0,10/30/7787 +2.83962,44.83578,6607,1,26,18,53,31,4.95,27.5,fr,52222,132,2224490,1,1,Active Shallow Crust,0.0,89.99001,0.0,01/26/6607 +-0.75245,43.78172,2741,5,14,16,36,37,3.55,5.0,fr,52223,54,2224800,1,1,Active Shallow Crust,0.0,89.98999,0.0,05/14/2741 +-0.75245,43.78172,997,4,3,17,46,29,3.65,5.0,fr,52224,19,2224821,1,1,Active Shallow Crust,128.9005,89.96354,0.0,04/03/0997 +-0.75245,43.78172,5903,5,9,6,29,34,4.85,5.0,fr,52225,118,2224959,1,1,Active Shallow Crust,240.0161,58.00213,0.0,05/09/5903 +2.67185,43.49195,7872,9,6,15,15,6,3.95,5.0,fr,52226,157,2225331,1,1,Active Shallow Crust,240.0195,58.00509,0.0,09/06/7872 +2.67185,43.49195,3526,12,11,4,19,27,3.95,15.0,fr,52227,70,2225335,1,1,Active Shallow Crust,0.0,89.99066,-90.0,12/11/3526 +2.67185,43.49195,6188,3,8,17,42,31,3.95,5.0,fr,52228,123,2225337,1,1,Active Shallow Crust,128.9007,89.99423,0.0,03/08/6188 +2.67185,43.49195,6655,1,20,6,52,54,4.45,15.0,fr,52229,133,2225389,1,1,Active Shallow Crust,0.0,89.98962,0.0,01/20/6655 +2.67185,43.49195,7695,11,8,13,3,25,4.95,5.0,fr,52230,153,2225448,1,1,Active Shallow Crust,0.0,89.98978,0.0,11/08/7695 +2.67185,43.49195,3467,3,21,23,15,34,5.55,5.0,fr,52231,69,2225520,1,1,Active Shallow Crust,0.0,89.99012,0.0,03/21/3467 +-1.50769,46.57709,5633,4,15,17,37,22,3.55,5.0,fr,52232,112,2225760,1,1,Active Shallow Crust,0.0,89.9896,0.0,04/15/5633 +-1.50769,46.57709,7479,2,15,7,5,11,3.55,15.0,fr,52233,149,2225761,1,1,Active Shallow Crust,0.0,89.9896,0.0,02/15/7479 +-1.50769,46.57709,809,1,8,16,18,33,3.55,5.0,fr,52234,16,2225763,1,1,Active Shallow Crust,240.0123,57.99829,0.0,01/08/0809 +-1.50769,46.57709,5235,1,13,19,45,26,3.55,5.0,fr,52235,104,2225769,1,1,Active Shallow Crust,128.8965,89.99307,0.0,01/13/5235 +-1.50769,46.57709,7590,8,15,20,15,40,3.65,5.0,fr,52236,151,2225772,1,1,Active Shallow Crust,0.0,89.99073,0.0,08/15/7590 +-1.50769,46.57709,3298,4,16,0,24,47,3.65,5.0,fr,52237,65,2225781,1,2,Active Shallow Crust,128.9006,89.96352,0.0,04/16/3298 +-1.50769,46.57709,860,12,29,13,26,8,3.65,5.0,fr,52238,17,2225781,1,2,Active Shallow Crust,128.9006,89.96352,0.0,12/29/0860 +-1.50769,46.57709,124,2,2,23,58,57,3.75,5.0,fr,52239,2,2225784,1,1,Active Shallow Crust,0.0,89.99036,0.0,02/02/0124 +-1.50769,46.57709,6550,10,30,13,25,37,3.75,5.0,fr,52240,130,2225787,1,1,Active Shallow Crust,240.0082,58.01751,0.0,10/30/6550 +-1.50769,46.57709,7125,3,29,12,6,24,3.75,27.5,fr,52241,142,2225792,1,1,Active Shallow Crust,0.0,89.99025,-90.0,03/29/7125 +-1.50769,46.57709,2987,8,3,10,23,14,4.05,15.0,fr,52242,59,2225821,1,1,Active Shallow Crust,0.0,89.99026,0.0,08/03/2987 +-1.50769,46.57709,9807,6,16,19,28,30,4.05,27.5,fr,52243,196,2225822,1,1,Active Shallow Crust,0.0,89.99026,0.0,06/16/9807 +-1.50769,46.57709,3561,8,10,5,20,29,4.05,27.5,fr,52244,71,2225831,1,1,Active Shallow Crust,128.8904,89.99367,0.0,08/10/3561 +-1.50769,46.57709,2599,10,20,0,56,6,4.25,27.5,fr,52245,51,2225846,1,1,Active Shallow Crust,0.0,89.98994,0.0,10/20/2599 +-1.50769,46.57709,6367,5,1,16,9,35,4.65,15.0,fr,52246,127,2225893,1,1,Active Shallow Crust,0.0,89.99023,0.0,05/01/6367 +-1.50769,46.57709,201,3,5,13,30,20,4.95,5.0,fr,52247,4,2225928,1,1,Active Shallow Crust,0.0,89.98997,0.0,03/05/0201 +-0.62752,47.86062,5132,6,3,4,33,42,3.55,5.0,fr,52248,102,2226240,1,1,Active Shallow Crust,0.0,89.98985,0.0,06/03/5132 +-0.62752,47.86062,6301,10,7,6,57,35,3.55,15.0,fr,52249,126,2226241,1,1,Active Shallow Crust,0.0,89.98985,0.0,10/07/6301 +-0.62752,47.86062,1150,8,18,21,5,56,3.55,27.5,fr,52250,22,2226242,1,1,Active Shallow Crust,0.0,89.98985,0.0,08/18/1150 +-0.62752,47.86062,9251,5,14,18,40,13,3.55,5.0,fr,52251,185,2226246,1,1,Active Shallow Crust,0.0,89.98973,-90.0,05/14/9251 +-0.62752,47.86062,2957,5,14,14,29,31,3.65,15.0,fr,52252,59,2226253,1,3,Active Shallow Crust,0.0,89.9902,0.0,05/14/2957 +-0.62752,47.86062,9701,3,27,9,48,6,3.65,15.0,fr,52253,194,2226253,1,3,Active Shallow Crust,0.0,89.9902,0.0,03/27/9701 +-0.62752,47.86062,3925,3,14,5,23,36,3.65,15.0,fr,52254,78,2226253,1,3,Active Shallow Crust,0.0,89.9902,0.0,03/14/3925 +-0.62752,47.86062,9908,12,29,0,41,16,3.65,15.0,fr,52255,198,2226259,1,1,Active Shallow Crust,0.0,89.99009,-90.0,12/29/9908 +-0.62752,47.86062,8989,8,1,13,18,34,3.65,15.0,fr,52256,179,2226262,1,1,Active Shallow Crust,128.9003,89.96349,0.0,08/01/8989 +-0.62752,47.86062,5749,11,18,14,5,59,3.75,5.0,fr,52257,114,2226273,1,1,Active Shallow Crust,128.8964,89.9674,0.0,11/18/5749 +-0.62752,47.86062,5673,1,3,9,14,31,3.85,5.0,fr,52258,113,2226276,1,1,Active Shallow Crust,0.0,89.98982,0.0,01/03/5673 +-0.62752,47.86062,7380,4,26,9,43,44,3.85,5.0,fr,52259,147,2226285,1,1,Active Shallow Crust,128.8955,89.99371,0.0,04/26/7380 +-0.62752,47.86062,8260,9,21,20,39,46,4.15,5.0,fr,52260,165,2226321,1,1,Active Shallow Crust,128.8972,89.99386,0.0,09/21/8260 +-0.62752,47.86062,5289,6,22,14,1,5,4.35,15.0,fr,52261,105,2226346,1,1,Active Shallow Crust,128.8976,89.98272,0.0,06/22/5289 +-0.62752,47.86062,6491,6,24,2,39,56,4.45,5.0,fr,52262,129,2226348,1,1,Active Shallow Crust,0.0,89.9901,0.0,06/24/6491 +-0.62752,47.86062,38,10,13,4,14,50,5.15,15.0,fr,52263,0,2226436,1,1,Active Shallow Crust,240.0205,58.0001,0.0,10/13/0038 +5.0593,48.25612,7689,11,20,18,21,20,3.75,15.0,fr,52264,153,2226745,1,1,Active Shallow Crust,0.0,89.98933,0.0,11/20/7689 +5.0593,48.25612,6059,11,15,13,18,10,3.75,27.5,fr,52265,121,2226746,1,1,Active Shallow Crust,0.0,89.98933,0.0,11/15/6059 +5.0593,48.25612,7973,7,20,14,49,34,5.45,15.0,fr,52266,159,2226952,1,1,Active Shallow Crust,240.0304,57.99874,0.0,07/20/7973 +-0.21667,47.48786,1554,11,29,18,22,1,3.55,5.0,fr,52267,31,2227200,1,2,Active Shallow Crust,0.0,89.98999,0.0,11/29/1554 +-0.21667,47.48786,9789,7,18,18,35,32,3.55,5.0,fr,52268,195,2227200,1,2,Active Shallow Crust,0.0,89.98999,0.0,07/18/9789 +-0.21667,47.48786,366,6,3,15,1,0,3.55,5.0,fr,52269,7,2227203,1,1,Active Shallow Crust,240.0123,57.99819,0.0,06/03/0366 +-0.21667,47.48786,6314,9,19,18,24,45,3.65,15.0,fr,52270,126,2227213,1,1,Active Shallow Crust,0.0,89.98994,0.0,09/19/6314 +-0.21667,47.48786,6338,8,15,20,23,5,3.65,27.5,fr,52271,126,2227217,1,1,Active Shallow Crust,240.0012,58.01283,0.0,08/15/6338 +-0.21667,47.48786,7375,12,18,22,57,4,3.75,5.0,fr,52272,147,2227224,1,1,Active Shallow Crust,0.0,89.99002,0.0,12/18/7375 +-0.21667,47.48786,4379,8,1,22,18,17,3.75,5.0,fr,52273,87,2227227,1,2,Active Shallow Crust,240.0085,58.0176,0.0,08/01/4379 +-0.21667,47.48786,9157,2,18,3,4,14,3.75,5.0,fr,52274,183,2227227,1,2,Active Shallow Crust,240.0085,58.0176,0.0,02/18/9157 +-0.21667,47.48786,4621,7,5,17,8,50,3.85,5.0,fr,52275,92,2227236,1,1,Active Shallow Crust,0.0,89.99005,0.0,07/05/4621 +-0.21667,47.48786,6860,12,24,12,12,35,3.85,27.5,fr,52276,137,2227244,1,1,Active Shallow Crust,0.0,89.98994,-90.0,12/24/6860 +-0.21667,47.48786,6547,1,31,23,7,40,3.95,5.0,fr,52277,130,2227248,1,1,Active Shallow Crust,0.0,89.99006,0.0,01/31/6547 +-0.21667,47.48786,8988,10,21,6,11,16,3.95,5.0,fr,52278,179,2227251,1,1,Active Shallow Crust,240.0199,58.00498,0.0,10/21/8988 +-0.21667,47.48786,6591,8,12,15,27,16,4.05,5.0,fr,52279,131,2227260,1,1,Active Shallow Crust,0.0,89.98994,0.0,08/12/6591 +-0.21667,47.48786,5444,3,19,11,18,36,4.05,15.0,fr,52280,108,2227261,1,1,Active Shallow Crust,0.0,89.98994,0.0,03/19/5444 +-0.21667,47.48786,4285,11,23,12,4,42,4.15,15.0,fr,52281,85,2227282,1,1,Active Shallow Crust,128.8974,89.99371,0.0,11/23/4285 +-0.21667,47.48786,1481,9,20,6,20,21,4.25,5.0,fr,52282,29,2227284,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/20/1481 +-0.21667,47.48786,4200,5,23,4,32,26,4.35,5.0,fr,52283,83,2227296,1,1,Active Shallow Crust,0.0,89.99,0.0,05/23/4200 +-0.21667,47.48786,7002,7,24,8,40,47,5.45,5.0,fr,52284,140,2227437,1,1,Active Shallow Crust,128.8781,89.98899,0.0,07/24/7002 +-0.2166725,47.48786,3786,7,19,23,25,45,6.25,6.744814,fr,52285,75,2227533,1,1,Active Shallow Crust,128.8478,89.99045,0.0,07/19/3786 +-1.13028,47.68903,7670,9,26,19,32,4,3.55,5.0,fr,52286,153,2227680,1,1,Active Shallow Crust,0.0,89.98981,0.0,09/26/7670 +-1.13028,47.68903,5550,2,1,20,26,46,3.65,15.0,fr,52287,110,2227696,1,1,Active Shallow Crust,240.0014,58.01276,0.0,02/01/5550 +-1.13028,47.68903,5374,4,24,19,2,37,3.65,5.0,fr,52288,107,2227698,1,2,Active Shallow Crust,0.0,89.98929,-90.0,04/24/5374 +-1.13028,47.68903,348,12,22,9,12,27,3.65,5.0,fr,52289,6,2227698,1,2,Active Shallow Crust,0.0,89.98929,-90.0,12/22/0348 +-1.13028,47.68903,386,8,3,22,40,51,3.75,5.0,fr,52290,7,2227704,1,1,Active Shallow Crust,0.0,89.99056,0.0,08/03/0386 +-1.13028,47.68903,2817,5,25,20,24,46,3.75,15.0,fr,52291,56,2227705,1,1,Active Shallow Crust,0.0,89.99056,0.0,05/25/2817 +-1.13028,47.68903,8431,11,1,13,2,9,3.75,5.0,fr,52292,168,2227707,1,1,Active Shallow Crust,240.0086,58.01754,0.0,11/01/8431 +-1.13028,47.68903,2161,5,24,0,19,26,3.75,5.0,fr,52293,43,2227710,1,1,Active Shallow Crust,0.0,89.99046,-90.0,05/24/2161 +-1.13028,47.68903,3661,3,25,21,9,44,3.95,5.0,fr,52294,73,2227728,1,2,Active Shallow Crust,0.0,89.99036,0.0,03/25/3661 +-1.13028,47.68903,5448,5,26,14,5,35,3.95,5.0,fr,52295,108,2227728,1,2,Active Shallow Crust,0.0,89.99036,0.0,05/26/5448 +-1.13028,47.68903,6257,7,17,1,2,23,3.95,5.0,fr,52296,125,2227731,1,1,Active Shallow Crust,240.0199,58.00485,0.0,07/17/6257 +-1.13028,47.68903,3513,4,9,14,41,26,4.05,5.0,fr,52297,70,2227740,1,1,Active Shallow Crust,0.0,89.99046,0.0,04/09/3513 +-1.13028,47.68903,1281,8,5,4,38,53,4.05,15.0,fr,52298,25,2227741,1,1,Active Shallow Crust,0.0,89.99046,0.0,08/05/1281 +-1.13028,47.68903,6776,11,5,8,59,46,4.05,5.0,fr,52299,135,2227749,1,1,Active Shallow Crust,128.8902,89.9938,0.0,11/05/6776 +-1.13028,47.68903,4455,6,11,8,50,27,4.25,5.0,fr,52300,89,2227770,1,1,Active Shallow Crust,0.0,89.99003,-90.0,06/11/4455 +-1.13028,47.68903,7785,6,21,17,14,32,4.75,5.0,fr,52301,155,2227824,1,1,Active Shallow Crust,0.0,89.9902,0.0,06/21/7785 +-1.13028,47.68903,9126,6,27,3,39,0,5.45,5.0,fr,52302,182,2227908,1,1,Active Shallow Crust,359.9999,89.9901,0.0,06/27/9126 +7.44897,50.55819,8094,4,17,8,53,55,3.55,5.0,fr,52303,161,2228160,1,2,Active Shallow Crust,0.0,89.98719,0.0,04/17/8094 +7.44897,50.55819,2608,3,16,10,9,28,3.55,5.0,fr,52304,52,2228160,1,2,Active Shallow Crust,0.0,89.98719,0.0,03/16/2608 +7.44897,50.55819,9393,10,5,12,36,45,3.55,15.0,fr,52305,187,2228161,1,1,Active Shallow Crust,0.0,89.98719,0.0,10/05/9393 +7.44897,50.55819,7719,6,12,22,20,15,3.65,5.0,fr,52306,154,2228172,1,5,Active Shallow Crust,0.0,89.98858,0.0,06/12/7719 +7.44897,50.55819,4919,6,14,13,13,42,3.65,5.0,fr,52307,98,2228172,1,5,Active Shallow Crust,0.0,89.98858,0.0,06/14/4919 +7.44897,50.55819,9102,2,10,14,7,41,3.65,5.0,fr,52308,182,2228172,1,5,Active Shallow Crust,0.0,89.98858,0.0,02/10/9102 +7.44897,50.55819,7516,10,13,20,34,18,3.65,5.0,fr,52309,150,2228172,1,5,Active Shallow Crust,0.0,89.98858,0.0,10/13/7516 +7.44897,50.55819,8990,9,15,17,53,5,3.65,5.0,fr,52310,179,2228172,1,5,Active Shallow Crust,0.0,89.98858,0.0,09/15/8990 +7.44897,50.55819,6895,4,26,8,4,33,3.75,5.0,fr,52311,137,2228184,1,3,Active Shallow Crust,0.0,89.98982,0.0,04/26/6895 +7.44897,50.55819,4144,4,6,1,32,5,3.75,5.0,fr,52312,82,2228184,1,3,Active Shallow Crust,0.0,89.98982,0.0,04/06/4144 +7.44897,50.55819,4119,10,5,22,36,57,3.75,5.0,fr,52313,82,2228184,1,3,Active Shallow Crust,0.0,89.98982,0.0,10/05/4119 +7.44897,50.55819,2916,12,16,13,34,52,3.75,15.0,fr,52314,58,2228185,1,1,Active Shallow Crust,0.0,89.98982,0.0,12/16/2916 +7.44897,50.55819,1515,11,6,10,59,9,3.75,15.0,fr,52315,30,2228191,1,1,Active Shallow Crust,0.0,89.98971,-90.0,11/06/1515 +7.44897,50.55819,1278,12,29,19,50,35,3.85,5.0,fr,52316,25,2228205,1,1,Active Shallow Crust,128.8961,89.99319,0.0,12/29/1278 +7.44897,50.55819,662,12,31,23,10,50,3.95,15.0,fr,52317,13,2228209,1,1,Active Shallow Crust,0.0,89.99191,0.0,12/31/0662 +7.44897,50.55819,5476,8,28,6,28,31,4.05,15.0,fr,52318,109,2228221,1,1,Active Shallow Crust,0.0,89.98919,0.0,08/28/5476 +7.44897,50.55819,9062,3,25,13,17,56,4.05,5.0,fr,52319,181,2228226,1,1,Active Shallow Crust,0.0,89.98907,-90.0,03/25/9062 +7.44897,50.55819,6085,10,23,7,58,42,4.15,15.0,fr,52320,121,2228233,1,1,Active Shallow Crust,0.0,89.99036,0.0,10/23/6085 +7.44897,50.55819,2154,7,11,19,36,8,4.25,5.0,fr,52321,43,2228244,1,1,Active Shallow Crust,0.0,89.99142,0.0,07/11/2154 +7.44897,50.55819,2204,7,29,6,55,14,4.35,27.5,fr,52322,44,2228258,1,1,Active Shallow Crust,0.0,89.9898,0.0,07/29/2204 +7.44897,50.55819,9839,2,21,18,41,38,4.45,5.0,fr,52323,196,2228268,1,2,Active Shallow Crust,0.0,89.99091,0.0,02/21/9839 +7.44897,50.55819,7630,3,31,4,31,17,4.45,5.0,fr,52324,152,2228268,1,2,Active Shallow Crust,0.0,89.99091,0.0,03/31/7630 +7.44897,50.55819,8416,12,26,17,16,9,4.45,5.0,fr,52325,168,2228271,1,1,Active Shallow Crust,240.0061,57.99493,0.0,12/26/8416 +7.44897,50.55819,3296,4,9,7,1,8,4.65,5.0,fr,52326,65,2228292,1,1,Active Shallow Crust,0.0,89.98917,0.0,04/09/3296 +7.44897,50.55819,2840,2,21,17,27,15,4.85,5.0,fr,52327,56,2228325,1,1,Active Shallow Crust,128.8911,89.9889,0.0,02/21/2840 +7.44897,50.55819,4430,9,5,6,32,44,5.25,5.0,fr,52328,88,2228367,1,1,Active Shallow Crust,240.0285,58.00075,0.0,09/05/4430 +8.97789,47.95477,3250,10,11,23,53,48,3.75,5.0,fr,52329,64,2228667,1,1,Active Shallow Crust,240.0083,58.01743,0.0,10/11/3250 +8.97789,47.95477,9297,11,6,21,13,4,3.75,5.0,fr,52330,185,2228670,1,1,Active Shallow Crust,0.0,89.98914,-90.0,11/06/9297 +8.97789,47.95477,9554,6,24,19,37,50,3.95,5.0,fr,52331,191,2228688,1,1,Active Shallow Crust,0.0,89.99148,0.0,06/24/9554 +8.97789,47.95477,665,1,17,19,29,41,4.05,5.0,fr,52332,13,2228703,1,1,Active Shallow Crust,240.0063,58.0063,0.0,01/17/0665 +8.97789,47.95477,1796,1,9,5,6,25,4.15,5.0,fr,52333,35,2228712,1,1,Active Shallow Crust,0.0,89.99323,0.0,01/09/1796 +8.97789,47.95477,2919,8,8,7,35,59,4.25,27.5,fr,52334,58,2228726,1,1,Active Shallow Crust,0.0,89.98793,0.0,08/08/2919 +8.97789,47.95477,7783,11,30,14,25,45,4.35,5.0,fr,52335,155,2228736,1,1,Active Shallow Crust,0.0,89.98924,0.0,11/30/7783 +-2.12285,48.55246,9204,6,7,21,40,51,3.55,5.0,fr,52336,184,2229120,1,3,Active Shallow Crust,0.0,89.98999,0.0,06/07/9204 +-2.12285,48.55246,6019,10,5,2,23,40,3.55,5.0,fr,52337,120,2229120,1,3,Active Shallow Crust,0.0,89.98999,0.0,10/05/6019 +-2.12285,48.55246,4490,12,17,9,48,41,3.55,5.0,fr,52338,89,2229120,1,3,Active Shallow Crust,0.0,89.98999,0.0,12/17/4490 +-2.12285,48.55246,2402,7,23,12,49,3,3.55,5.0,fr,52339,48,2229123,1,1,Active Shallow Crust,240.0123,57.99847,0.0,07/23/2402 +-2.12285,48.55246,6942,6,9,19,20,18,3.65,5.0,fr,52340,138,2229132,1,1,Active Shallow Crust,0.0,89.99107,0.0,06/09/6942 +-2.12285,48.55246,1743,2,19,4,52,58,3.75,5.0,fr,52341,34,2229144,1,1,Active Shallow Crust,0.0,89.9894,0.0,02/19/1743 +-2.12285,48.55246,3779,3,12,2,13,40,3.75,15.0,fr,52342,75,2229145,1,1,Active Shallow Crust,0.0,89.9894,0.0,03/12/3779 +-2.12285,48.55246,6637,8,8,4,14,14,3.75,27.5,fr,52343,132,2229146,1,1,Active Shallow Crust,0.0,89.9894,0.0,08/08/6637 +-2.12285,48.55246,4116,4,16,23,31,30,3.75,5.0,fr,52344,82,2229147,1,2,Active Shallow Crust,240.0084,58.01749,0.0,04/16/4116 +-2.12285,48.55246,7953,8,14,19,13,8,3.75,5.0,fr,52345,159,2229147,1,2,Active Shallow Crust,240.0084,58.01749,0.0,08/14/7953 +-2.12285,48.55246,220,3,14,22,31,10,3.75,15.0,fr,52346,4,2229154,1,1,Active Shallow Crust,128.8968,89.96729,0.0,03/14/0220 +-2.12285,48.55246,4176,2,19,11,25,38,3.85,5.0,fr,52347,83,2229159,1,1,Active Shallow Crust,240.0111,57.99791,0.0,02/19/4176 +-2.12285,48.55246,5621,7,28,16,50,52,3.95,5.0,fr,52348,112,2229168,1,1,Active Shallow Crust,0.0,89.98947,0.0,07/28/5621 +-2.12285,48.55246,2738,1,3,22,17,28,3.95,15.0,fr,52349,54,2229169,1,1,Active Shallow Crust,0.0,89.98947,0.0,01/03/2738 +-2.12285,48.55246,7631,11,7,16,1,38,4.05,15.0,fr,52350,152,2229181,1,2,Active Shallow Crust,0.0,89.99062,0.0,11/07/7631 +-2.12285,48.55246,7702,3,6,17,18,43,4.05,15.0,fr,52351,154,2229181,1,2,Active Shallow Crust,0.0,89.99062,0.0,03/06/7702 +-2.12285,48.55246,4454,2,5,15,23,14,4.05,5.0,fr,52352,89,2229186,1,1,Active Shallow Crust,0.0,89.99051,-90.0,02/05/4454 +-2.12285,48.55246,7174,5,16,0,50,36,4.25,5.0,fr,52353,143,2229204,1,1,Active Shallow Crust,0.0,89.98956,0.0,05/16/7174 +-2.12285,48.55246,3823,2,11,18,24,1,4.75,15.0,fr,52354,76,2229265,1,1,Active Shallow Crust,0.0,89.98994,0.0,02/11/3823 +-2.12285,48.55246,2428,10,23,11,1,22,4.95,15.0,fr,52355,48,2229289,1,1,Active Shallow Crust,0.0,89.99001,0.0,10/23/2428 +-2.12285,48.55246,7859,5,25,12,45,8,5.25,5.0,fr,52356,157,2229333,1,1,Active Shallow Crust,128.8865,89.98695,0.0,05/25/7859 +-3.44329,42.50517,7174,3,1,7,33,12,3.55,5.0,fr,52357,143,2229600,1,2,Active Shallow Crust,0.0,89.98885,0.0,03/01/7174 +-3.44329,42.50517,3948,9,10,23,56,46,3.55,5.0,fr,52358,78,2229600,1,2,Active Shallow Crust,0.0,89.98885,0.0,09/10/3948 +-3.44329,42.50517,8470,10,29,11,51,57,3.65,15.0,fr,52359,169,2229613,1,1,Active Shallow Crust,0.0,89.99006,0.0,10/29/8470 +5.82842,45.65402,4367,9,17,6,58,54,3.55,5.0,fr,52360,87,2230080,1,2,Active Shallow Crust,0.0,89.99295,0.0,09/17/4367 +5.82842,45.65402,5300,8,31,6,55,49,3.55,5.0,fr,52361,105,2230080,1,2,Active Shallow Crust,0.0,89.99295,0.0,08/31/5300 +5.82842,45.65402,2880,5,21,15,44,13,3.55,15.0,fr,52362,57,2230087,1,2,Active Shallow Crust,0.0,89.99287,-90.0,05/21/2880 +5.82842,45.65402,7645,10,24,4,58,36,3.55,15.0,fr,52363,152,2230087,1,2,Active Shallow Crust,0.0,89.99287,-90.0,10/24/7645 +5.82842,45.65402,4501,11,23,10,47,59,3.65,5.0,fr,52364,90,2230092,1,4,Active Shallow Crust,0.0,89.98743,0.0,11/23/4501 +5.82842,45.65402,7588,7,7,12,8,20,3.65,5.0,fr,52365,151,2230092,1,4,Active Shallow Crust,0.0,89.98743,0.0,07/07/7588 +5.82842,45.65402,5777,2,3,0,33,17,3.65,5.0,fr,52366,115,2230092,1,4,Active Shallow Crust,0.0,89.98743,0.0,02/03/5777 +5.82842,45.65402,223,3,25,19,49,59,3.65,5.0,fr,52367,4,2230092,1,4,Active Shallow Crust,0.0,89.98743,0.0,03/25/0223 +5.82842,45.65402,1893,12,5,5,25,1,3.65,15.0,fr,52368,37,2230093,1,1,Active Shallow Crust,0.0,89.98743,0.0,12/05/1893 +5.82842,45.65402,5923,11,27,3,44,18,3.65,5.0,fr,52369,118,2230095,1,2,Active Shallow Crust,240.0012,58.01308,0.0,11/27/5923 +5.82842,45.65402,3841,2,12,15,39,33,3.65,5.0,fr,52370,76,2230095,1,2,Active Shallow Crust,240.0012,58.01308,0.0,02/12/3841 +5.82842,45.65402,2327,10,10,17,5,22,3.65,5.0,fr,52371,46,2230101,1,1,Active Shallow Crust,128.9,89.96351,0.0,10/10/2327 +5.82842,45.65402,9497,11,3,1,11,20,3.75,5.0,fr,52372,189,2230104,1,2,Active Shallow Crust,0.0,89.9888,0.0,11/03/9497 +5.82842,45.65402,169,1,16,11,8,35,3.75,5.0,fr,52373,3,2230104,1,2,Active Shallow Crust,0.0,89.9888,0.0,01/16/0169 +5.82842,45.65402,6907,3,6,17,9,48,3.75,5.0,fr,52374,138,2230110,1,1,Active Shallow Crust,0.0,89.98867,-90.0,03/06/6907 +5.82842,45.65402,7946,4,16,6,20,22,3.75,15.0,fr,52375,158,2230114,1,1,Active Shallow Crust,128.8968,89.96748,0.0,04/16/7946 +5.82842,45.65402,9742,12,24,20,49,40,3.85,5.0,fr,52376,194,2230116,1,2,Active Shallow Crust,0.0,89.99002,0.0,12/24/9742 +5.82842,45.65402,1691,9,8,11,15,3,3.85,5.0,fr,52377,33,2230116,1,2,Active Shallow Crust,0.0,89.99002,0.0,09/08/1691 +5.82842,45.65402,6865,12,20,1,36,26,3.85,15.0,fr,52378,137,2230117,1,1,Active Shallow Crust,0.0,89.99002,0.0,12/20/6865 +5.82842,45.65402,9199,2,20,8,50,50,3.85,27.5,fr,52379,183,2230124,1,1,Active Shallow Crust,0.0,89.98991,-90.0,02/20/9199 +5.82842,45.65402,3081,9,9,1,16,56,4.05,5.0,fr,52380,61,2230140,1,1,Active Shallow Crust,0.0,89.98811,0.0,09/09/3081 +5.82842,45.65402,5289,1,30,11,34,42,4.05,5.0,fr,52381,105,2230143,1,1,Active Shallow Crust,240.0052,58.00647,0.0,01/30/5289 +5.82842,45.65402,8946,9,30,22,13,46,4.05,27.5,fr,52382,178,2230145,1,1,Active Shallow Crust,240.0052,58.00644,0.0,09/30/8946 +5.82842,45.65402,635,6,13,16,59,21,4.15,27.5,fr,52383,12,2230160,1,1,Active Shallow Crust,0.0,89.98928,-90.0,06/13/0635 +5.82842,45.65402,8280,8,26,5,28,51,4.25,5.0,fr,52384,165,2230164,1,1,Active Shallow Crust,0.0,89.99055,0.0,08/26/8280 +5.82842,45.65402,9470,3,2,21,11,12,4.25,15.0,fr,52385,189,2230165,1,1,Active Shallow Crust,0.0,89.99055,0.0,03/02/9470 +5.82842,45.65402,5606,8,29,4,32,17,4.25,27.5,fr,52386,112,2230166,1,1,Active Shallow Crust,0.0,89.99055,0.0,08/29/5606 +5.82842,45.65402,2581,11,9,22,22,3,4.35,5.0,fr,52387,51,2230176,1,1,Active Shallow Crust,0.0,89.98878,0.0,11/09/2581 +5.82842,45.65402,6873,9,29,15,3,56,4.35,5.0,fr,52388,137,2230185,1,1,Active Shallow Crust,128.8985,89.98248,0.0,09/29/6873 +5.82842,45.65402,8059,7,13,10,48,37,4.45,5.0,fr,52389,161,2230188,1,1,Active Shallow Crust,0.0,89.99,0.0,07/13/8059 +5.82842,45.65402,8726,4,14,15,35,20,4.45,5.0,fr,52390,174,2230191,1,1,Active Shallow Crust,240.0048,57.99481,0.0,04/14/8726 +5.82842,45.65402,9952,6,24,14,53,53,4.55,5.0,fr,52391,199,2230200,1,1,Active Shallow Crust,0.0,89.99108,0.0,06/24/9952 +5.82842,45.65402,6668,6,13,7,10,17,4.75,15.0,fr,52392,133,2230228,1,1,Active Shallow Crust,240.0074,58.00455,0.0,06/13/6668 +5.82842,45.65402,3528,2,19,13,30,15,5.25,27.5,fr,52393,70,2230286,1,1,Active Shallow Crust,0.0,89.99004,0.0,02/19/3528 +2.14813,45.63768,3905,2,16,1,19,59,3.55,5.0,fr,52394,78,2230560,1,1,Active Shallow Crust,0.0,89.98943,0.0,02/16/3905 +2.14813,45.63768,7221,11,18,2,11,19,3.85,27.5,fr,52395,144,2230598,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/18/7221 +2.14813,45.63768,1240,5,16,23,3,15,4.05,5.0,fr,52396,24,2230620,1,1,Active Shallow Crust,0.0,89.99009,0.0,05/16/1240 +2.14813,45.63768,2650,1,2,4,41,58,4.05,15.0,fr,52397,52,2230621,1,1,Active Shallow Crust,0.0,89.99009,0.0,01/02/2650 +2.14813,45.63768,8841,5,1,21,47,41,4.25,5.0,fr,52398,176,2230650,1,1,Active Shallow Crust,0.0,89.99044,-90.0,05/01/8841 +2.23828,46.8404,4951,10,10,3,54,3,3.55,15.0,fr,52399,99,2231044,1,1,Active Shallow Crust,240.0118,57.99781,0.0,10/10/4951 +2.23828,46.8404,3123,3,25,16,14,29,3.75,15.0,fr,52400,62,2231065,1,1,Active Shallow Crust,0.0,89.98904,0.0,03/25/3123 +2.23828,46.8404,4969,3,14,11,10,35,3.85,5.0,fr,52401,99,2231076,1,1,Active Shallow Crust,0.0,89.99023,0.0,03/14/4969 +2.23828,46.8404,8083,8,17,7,33,11,4.05,15.0,fr,52402,161,2231101,1,1,Active Shallow Crust,0.0,89.9903,0.0,08/17/8083 +2.23828,46.8404,1313,11,18,10,2,42,4.25,5.0,fr,52403,26,2231124,1,1,Active Shallow Crust,0.0,89.99075,0.0,11/18/1313 +2.23828,46.8404,5835,3,7,3,38,58,4.25,27.5,fr,52404,116,2231126,1,1,Active Shallow Crust,0.0,89.99075,0.0,03/07/5835 +2.23828,46.8404,3744,3,21,8,31,20,4.35,5.0,fr,52405,74,2231136,1,1,Active Shallow Crust,0.0,89.99039,0.0,03/21/3744 +0.52887,52.38611,6982,1,29,17,28,8,3.65,27.5,fr,52406,139,2231534,1,1,Active Shallow Crust,0.0,89.98972,0.0,01/29/6982 +1.36698,43.83531,470,8,27,7,20,37,3.95,5.0,fr,52407,9,2232048,1,1,Active Shallow Crust,0.0,89.98967,0.0,08/27/0470 +1.36698,43.83531,9399,10,17,5,18,39,4.45,5.0,fr,52408,187,2232114,1,1,Active Shallow Crust,0.0,89.99021,-90.0,10/17/9399 +1.36698,43.83531,5306,10,4,7,33,57,5.15,15.0,fr,52409,106,2232193,1,1,Active Shallow Crust,0.0,89.98991,0.0,10/04/5306 +0.39425,44.16071,2069,6,12,11,34,46,3.55,5.0,fr,52410,41,2232480,1,1,Active Shallow Crust,0.0,89.99005,0.0,06/12/2069 +0.39425,44.16071,2901,11,22,15,17,51,3.85,5.0,fr,52411,58,2232519,1,1,Active Shallow Crust,240.0106,57.99771,0.0,11/22/2901 +0.39425,44.16071,6680,8,8,3,45,43,4.15,15.0,fr,52412,133,2232553,1,1,Active Shallow Crust,0.0,89.99003,0.0,08/08/6680 +6.3525,48.67782,2260,3,2,16,11,56,3.55,5.0,fr,52413,45,2232969,1,1,Active Shallow Crust,128.8969,89.99334,0.0,03/02/2260 +6.3525,48.67782,2933,11,26,12,14,20,3.85,5.0,fr,52414,58,2233002,1,1,Active Shallow Crust,0.0,89.99046,-90.0,11/26/2933 +6.3525,48.67782,6965,6,28,17,41,28,3.85,15.0,fr,52415,139,2233003,1,1,Active Shallow Crust,0.0,89.99046,-90.0,06/28/6965 +6.3525,48.67782,6568,12,19,10,9,27,4.15,5.0,fr,52416,131,2233032,1,1,Active Shallow Crust,0.0,89.98999,0.0,12/19/6568 +6.3525,48.67782,2282,2,14,16,20,7,5.35,5.0,fr,52417,45,2233176,1,1,Active Shallow Crust,0.0,89.98994,0.0,02/14/2282 +6.352506,48.67782,116,3,23,8,1,48,6.35,7.567806,fr,52418,2,2233296,1,1,Active Shallow Crust,0.0,89.99004,0.0,03/23/0116 +8.45148,50.17214,5467,4,17,4,18,59,3.55,5.0,fr,52419,109,2233440,1,4,Active Shallow Crust,0.0,89.98708,0.0,04/17/5467 +8.45148,50.17214,3898,9,23,21,15,35,3.55,5.0,fr,52420,77,2233440,1,4,Active Shallow Crust,0.0,89.98708,0.0,09/23/3898 +8.45148,50.17214,5328,12,17,23,37,5,3.55,5.0,fr,52421,106,2233440,1,4,Active Shallow Crust,0.0,89.98708,0.0,12/17/5328 +8.45148,50.17214,7730,4,8,13,49,10,3.55,5.0,fr,52422,154,2233440,1,4,Active Shallow Crust,0.0,89.98708,0.0,04/08/7730 +8.45148,50.17214,9029,7,6,2,46,3,3.65,5.0,fr,52423,180,2233452,1,1,Active Shallow Crust,0.0,89.98849,0.0,07/06/9029 +8.45148,50.17214,11,12,10,15,34,34,3.65,5.0,fr,52424,0,2233461,1,1,Active Shallow Crust,128.8994,89.96359,0.0,12/10/0011 +8.45148,50.17214,2632,8,30,17,34,15,3.75,5.0,fr,52425,52,2233464,1,2,Active Shallow Crust,0.0,89.98974,0.0,08/30/2632 +8.45148,50.17214,5596,5,7,2,4,18,3.75,5.0,fr,52426,111,2233464,1,2,Active Shallow Crust,0.0,89.98974,0.0,05/07/5596 +8.45148,50.17214,1921,2,2,13,44,21,3.75,5.0,fr,52427,38,2233467,1,1,Active Shallow Crust,240.0081,58.01782,0.0,02/02/1921 +8.45148,50.17214,4539,11,15,21,5,11,3.75,27.5,fr,52428,90,2233472,1,1,Active Shallow Crust,0.0,89.98962,-90.0,11/15/4539 +8.45148,50.17214,5890,8,22,15,38,42,3.85,5.0,fr,52429,117,2233476,1,1,Active Shallow Crust,0.0,89.99085,0.0,08/22/5890 +8.45148,50.17214,3306,5,5,16,13,38,3.95,5.0,fr,52430,66,2233488,1,3,Active Shallow Crust,0.0,89.99185,0.0,05/05/3306 +8.45148,50.17214,9809,5,3,1,27,29,3.95,5.0,fr,52431,196,2233488,1,3,Active Shallow Crust,0.0,89.99185,0.0,05/03/9809 +8.45148,50.17214,9970,7,9,7,8,9,3.95,5.0,fr,52432,199,2233488,1,3,Active Shallow Crust,0.0,89.99185,0.0,07/09/9970 +8.45148,50.17214,9423,6,5,23,29,0,3.95,5.0,fr,52433,188,2233494,1,1,Active Shallow Crust,0.0,89.99175,-90.0,06/05/9423 +8.45148,50.17214,207,3,24,21,50,13,4.25,5.0,fr,52434,4,2233524,1,1,Active Shallow Crust,0.0,89.98846,0.0,03/24/0207 +8.45148,50.17214,8621,7,20,23,37,5,4.25,15.0,fr,52435,172,2233525,1,1,Active Shallow Crust,0.0,89.98846,0.0,07/20/8621 +8.45148,50.17214,959,12,29,13,22,35,4.25,15.0,fr,52436,19,2233531,1,1,Active Shallow Crust,0.0,89.98833,-90.0,12/29/0959 +8.45148,50.17214,2486,1,6,13,3,1,4.45,5.0,fr,52437,49,2233548,1,2,Active Shallow Crust,0.0,89.99083,0.0,01/06/2486 +8.45148,50.17214,8391,4,4,14,34,59,4.45,5.0,fr,52438,167,2233548,1,2,Active Shallow Crust,0.0,89.99083,0.0,04/04/8391 +8.45148,50.17214,5942,4,4,23,41,38,4.45,27.5,fr,52439,118,2233559,1,1,Active Shallow Crust,128.8915,89.99313,0.0,04/04/5942 +8.451484,50.17214,2421,6,25,4,24,22,6.25,6.744814,fr,52440,48,2233764,1,1,Active Shallow Crust,0.0,89.98989,0.0,06/25/2421 +-2.5068,42.48329,3629,6,21,14,34,15,3.55,5.0,fr,52441,72,2233920,1,1,Active Shallow Crust,0.0,89.98885,0.0,06/21/3629 +-2.5068,42.48329,6774,10,17,15,33,12,3.55,5.0,fr,52442,135,2233929,1,1,Active Shallow Crust,128.8967,89.99256,0.0,10/17/6774 +-2.5068,42.48329,422,8,15,3,2,14,3.65,5.0,fr,52443,8,2233935,1,1,Active Shallow Crust,240.0007,58.01277,0.0,08/15/0422 +-2.5068,42.48329,6680,12,27,22,38,33,3.75,5.0,fr,52444,133,2233950,1,1,Active Shallow Crust,0.0,89.99104,-90.0,12/27/6680 +-2.5068,42.48329,5569,1,7,13,22,2,3.85,5.0,fr,52445,111,2233956,1,1,Active Shallow Crust,0.0,89.98947,0.0,01/07/5569 +-2.5068,42.48329,7554,7,19,9,8,49,3.85,15.0,fr,52446,151,2233957,1,1,Active Shallow Crust,0.0,89.98947,0.0,07/19/7554 +-2.5068,42.48329,1461,4,11,16,23,25,3.85,27.5,fr,52447,29,2233958,1,1,Active Shallow Crust,0.0,89.98947,0.0,04/11/1461 +-2.5068,42.48329,5268,6,3,10,53,17,3.85,5.0,fr,52448,105,2233962,1,1,Active Shallow Crust,0.0,89.98935,-90.0,06/03/5268 +-2.5068,42.48329,4803,10,28,6,20,46,3.95,5.0,fr,52449,96,2233977,1,1,Active Shallow Crust,128.9008,89.99413,0.0,10/28/4803 +-2.5068,42.48329,8888,9,15,7,24,8,4.05,5.0,fr,52450,177,2233983,1,1,Active Shallow Crust,240.0052,58.00583,0.0,09/15/8888 +-2.5068,42.48329,4925,3,22,18,21,45,4.15,15.0,fr,52451,98,2233996,1,1,Active Shallow Crust,240.0076,57.99715,0.0,03/22/4925 +-2.5068,42.48329,7017,8,19,14,6,10,4.25,5.0,fr,52452,140,2234004,1,1,Active Shallow Crust,0.0,89.99004,0.0,08/19/7017 +-2.5068,42.48329,4284,3,17,23,27,20,4.35,15.0,fr,52453,85,2234017,1,1,Active Shallow Crust,0.0,89.98964,0.0,03/17/4284 +-2.5068,42.48329,1596,6,6,21,6,42,5.35,15.0,fr,52454,31,2234140,1,1,Active Shallow Crust,240.0223,58.0011,0.0,06/06/1596 +5.43805,44.68435,669,2,23,2,51,22,3.55,5.0,fr,52455,13,2234400,1,1,Active Shallow Crust,0.0,89.99283,0.0,02/23/0669 +5.43805,44.68435,3202,9,5,12,34,1,3.55,15.0,fr,52456,64,2234404,1,1,Active Shallow Crust,240.0117,57.99793,0.0,09/05/3202 +5.43805,44.68435,1976,2,13,13,17,29,3.55,5.0,fr,52457,39,2234406,1,1,Active Shallow Crust,0.0,89.99274,-90.0,02/13/1976 +5.43805,44.68435,1099,12,17,5,57,13,3.65,5.0,fr,52458,21,2234412,1,2,Active Shallow Crust,0.0,89.98722,0.0,12/17/1099 +5.43805,44.68435,2394,5,2,5,24,42,3.65,5.0,fr,52459,47,2234412,1,2,Active Shallow Crust,0.0,89.98722,0.0,05/02/2394 +5.43805,44.68435,8246,6,18,19,29,5,3.65,15.0,fr,52460,164,2234419,1,1,Active Shallow Crust,0.0,89.98708,-90.0,06/18/8246 +5.43805,44.68435,6433,4,10,20,8,47,3.85,5.0,fr,52461,128,2234436,1,1,Active Shallow Crust,0.0,89.98985,0.0,04/10/6433 +5.43805,44.68435,1966,12,24,20,49,12,3.85,15.0,fr,52462,39,2234437,1,1,Active Shallow Crust,0.0,89.98985,0.0,12/24/1966 +5.43805,44.68435,6385,7,8,21,5,20,4.05,5.0,fr,52463,127,2234466,1,1,Active Shallow Crust,0.0,89.99184,-90.0,07/08/6385 +5.43805,44.68435,594,7,8,21,19,29,4.35,5.0,fr,52464,11,2234496,1,1,Active Shallow Crust,0.0,89.98858,0.0,07/08/0594 +5.43805,44.68435,1154,12,18,18,17,20,4.75,5.0,fr,52465,23,2234544,1,1,Active Shallow Crust,0.0,89.9892,0.0,12/18/1154 +5.43805,44.68435,7802,7,12,14,57,1,5.25,5.0,fr,52466,156,2234610,1,1,Active Shallow Crust,0.0,89.98975,-90.0,07/12/7802 +5.43805,44.68435,2012,11,28,1,50,0,6.15,15.0,fr,52467,40,2234713,1,1,Active Shallow Crust,0.0,89.98993,0.0,11/28/2012 +2.13216,40.32291,213,7,21,0,28,42,3.55,27.5,fr,52468,4,2234882,1,1,Active Shallow Crust,0.0,89.98846,0.0,07/21/0213 +2.13216,40.32291,1836,10,5,0,0,47,3.55,5.0,fr,52469,36,2234889,1,1,Active Shallow Crust,128.8963,89.99423,0.0,10/05/1836 +2.13216,40.32291,3250,11,4,23,37,25,3.75,5.0,fr,52470,64,2234913,1,1,Active Shallow Crust,128.8972,89.96706,0.0,11/04/3250 +2.29434,43.8287,9542,10,24,19,42,11,4.05,5.0,fr,52471,190,2235420,1,1,Active Shallow Crust,0.0,89.98977,0.0,10/24/9542 +2.29434,43.8287,4017,9,24,12,40,16,4.15,5.0,fr,52472,80,2235432,1,1,Active Shallow Crust,0.0,89.99088,0.0,09/24/4017 +2.29434,43.8287,2713,2,28,20,25,14,4.15,27.5,fr,52473,54,2235434,1,1,Active Shallow Crust,0.0,89.99088,0.0,02/28/2713 +1.81147,48.53618,7552,5,13,7,8,42,3.55,15.0,fr,52474,151,2235841,1,1,Active Shallow Crust,0.0,89.98998,0.0,05/13/7552 +1.81147,48.53618,9132,10,25,15,3,12,3.95,5.0,fr,52475,182,2235894,1,1,Active Shallow Crust,0.0,89.99041,-90.0,10/25/9132 +1.81147,48.53618,4007,9,4,9,34,36,4.05,5.0,fr,52476,80,2235900,1,1,Active Shallow Crust,0.0,89.98968,0.0,09/04/4007 +1.81147,48.53618,8539,12,1,11,32,5,4.35,5.0,fr,52477,170,2235936,1,1,Active Shallow Crust,0.0,89.99003,0.0,12/01/8539 +1.59457,46.40418,7671,11,11,22,16,43,3.55,5.0,fr,52478,153,2236320,1,6,Active Shallow Crust,0.0,89.98957,0.0,11/11/7671 +1.59457,46.40418,3134,11,9,19,1,56,3.55,5.0,fr,52479,62,2236320,1,6,Active Shallow Crust,0.0,89.98957,0.0,11/09/3134 +1.59457,46.40418,2427,2,17,11,51,53,3.55,5.0,fr,52480,48,2236320,1,6,Active Shallow Crust,0.0,89.98957,0.0,02/17/2427 +1.59457,46.40418,2834,3,20,15,43,16,3.55,5.0,fr,52481,56,2236320,1,6,Active Shallow Crust,0.0,89.98957,0.0,03/20/2834 +1.59457,46.40418,1557,7,11,22,9,28,3.55,5.0,fr,52482,31,2236320,1,6,Active Shallow Crust,0.0,89.98957,0.0,07/11/1557 +1.59457,46.40418,3293,9,10,2,54,42,3.55,5.0,fr,52483,65,2236320,1,6,Active Shallow Crust,0.0,89.98957,0.0,09/10/3293 +1.59457,46.40418,2863,3,17,21,39,11,3.55,15.0,fr,52484,57,2236321,1,1,Active Shallow Crust,0.0,89.98957,0.0,03/17/2863 +1.59457,46.40418,6013,10,3,1,46,31,3.65,5.0,fr,52485,120,2236338,1,2,Active Shallow Crust,0.0,89.99059,-90.0,10/03/6013 +1.59457,46.40418,9692,8,19,5,22,50,3.65,5.0,fr,52486,193,2236338,1,2,Active Shallow Crust,0.0,89.99059,-90.0,08/19/9692 +1.59457,46.40418,3041,11,23,21,4,28,3.75,5.0,fr,52487,60,2236344,1,1,Active Shallow Crust,0.0,89.99033,0.0,11/23/3041 +1.59457,46.40418,3043,8,28,14,17,33,3.75,15.0,fr,52488,60,2236348,1,1,Active Shallow Crust,240.0085,58.0175,0.0,08/28/3043 +1.59457,46.40418,889,12,3,2,2,26,3.75,15.0,fr,52489,17,2236351,1,1,Active Shallow Crust,0.0,89.99022,-90.0,12/03/0889 +1.59457,46.40418,1970,4,6,8,21,0,4.05,15.0,fr,52490,39,2236390,1,1,Active Shallow Crust,128.8903,89.99364,0.0,04/06/1970 +1.59457,46.40418,679,11,26,20,19,51,4.15,5.0,fr,52491,13,2236392,1,1,Active Shallow Crust,0.0,89.99042,0.0,11/26/0679 +1.59457,46.40418,5357,6,20,4,0,29,4.45,15.0,fr,52492,107,2236429,1,1,Active Shallow Crust,0.0,89.99013,0.0,06/20/5357 +1.59457,46.40418,479,11,6,0,32,25,4.65,5.0,fr,52493,9,2236452,1,2,Active Shallow Crust,0.0,89.9902,0.0,11/06/0479 +1.59457,46.40418,994,12,25,19,32,42,4.65,5.0,fr,52494,19,2236452,1,2,Active Shallow Crust,0.0,89.9902,0.0,12/25/0994 +1.59457,46.40418,546,8,28,0,15,8,4.65,27.5,fr,52495,10,2236457,1,1,Active Shallow Crust,240.0108,57.99422,0.0,08/28/0546 +1.59457,46.40418,8722,12,7,0,2,16,5.15,15.0,fr,52496,174,2236513,1,1,Active Shallow Crust,0.0,89.99008,0.0,12/07/8722 +1.59457,46.40418,1122,9,1,12,10,1,5.25,15.0,fr,52497,22,2236525,1,2,Active Shallow Crust,0.0,89.98993,0.0,09/01/1122 +1.59457,46.40418,5419,2,8,6,10,43,5.25,15.0,fr,52498,108,2236525,1,2,Active Shallow Crust,0.0,89.98993,0.0,02/08/5419 +0.32128,46.98942,7672,1,16,4,45,0,3.55,5.0,fr,52499,153,2237280,1,3,Active Shallow Crust,0.0,89.99011,0.0,01/16/7672 +0.32128,46.98942,6651,5,20,7,13,56,3.55,5.0,fr,52500,133,2237280,1,3,Active Shallow Crust,0.0,89.99011,0.0,05/20/6651 +0.32128,46.98942,1111,10,24,19,2,2,3.55,5.0,fr,52501,22,2237280,1,3,Active Shallow Crust,0.0,89.99011,0.0,10/24/1111 +0.32128,46.98942,7767,3,15,8,47,9,3.55,15.0,fr,52502,155,2237281,1,1,Active Shallow Crust,0.0,89.99011,0.0,03/15/7767 +0.32128,46.98942,9894,11,19,11,45,51,3.55,5.0,fr,52503,197,2237286,1,1,Active Shallow Crust,0.0,89.99,-90.0,11/19/9894 +0.32128,46.98942,47,6,10,9,47,58,3.65,5.0,fr,52504,0,2237292,1,2,Active Shallow Crust,0.0,89.99004,0.0,06/10/0047 +0.32128,46.98942,9832,12,12,13,19,46,3.65,5.0,fr,52505,196,2237292,1,2,Active Shallow Crust,0.0,89.99004,0.0,12/12/9832 +0.32128,46.98942,4882,11,30,19,36,26,3.65,5.0,fr,52506,97,2237295,1,1,Active Shallow Crust,240.0011,58.01292,0.0,11/30/4882 +0.32128,46.98942,7266,1,5,13,19,31,3.65,5.0,fr,52507,145,2237301,1,1,Active Shallow Crust,128.9004,89.9635,0.0,01/05/7266 +0.32128,46.98942,4727,12,3,1,43,25,3.75,5.0,fr,52508,94,2237304,1,1,Active Shallow Crust,0.0,89.9901,0.0,12/03/4727 +0.32128,46.98942,6957,11,28,13,10,36,3.75,15.0,fr,52509,139,2237308,1,1,Active Shallow Crust,240.0084,58.01761,0.0,11/28/6957 +0.32128,46.98942,9364,4,27,18,58,0,3.75,5.0,fr,52510,187,2237310,1,1,Active Shallow Crust,0.0,89.98998,-90.0,04/27/9364 +0.32128,46.98942,6165,6,13,2,30,1,3.85,5.0,fr,52511,123,2237316,1,1,Active Shallow Crust,0.0,89.98996,0.0,06/13/6165 +0.32128,46.98942,4684,2,19,0,0,22,3.95,15.0,fr,52512,93,2237329,1,1,Active Shallow Crust,0.0,89.98996,0.0,02/19/4684 +0.32128,46.98942,5069,11,3,17,5,45,3.95,27.5,fr,52513,101,2237333,1,1,Active Shallow Crust,240.0198,58.00501,0.0,11/03/5069 +0.32128,46.98942,527,11,20,13,42,39,4.05,15.0,fr,52514,10,2237344,1,1,Active Shallow Crust,240.006,58.00585,0.0,11/20/0527 +0.32128,46.98942,1568,8,3,17,35,20,4.15,5.0,fr,52515,31,2237352,1,2,Active Shallow Crust,0.0,89.99009,0.0,08/03/1568 +0.32128,46.98942,7026,4,16,23,43,7,4.15,5.0,fr,52516,140,2237352,1,2,Active Shallow Crust,0.0,89.99009,0.0,04/16/7026 +0.32128,46.98942,7024,2,12,18,15,40,4.25,27.5,fr,52517,140,2237366,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/12/7024 +0.32128,46.98942,7329,1,18,18,6,31,4.35,15.0,fr,52518,146,2237377,1,1,Active Shallow Crust,0.0,89.99007,0.0,01/18/7329 +0.32128,46.98942,3009,8,29,18,45,40,4.45,15.0,fr,52519,60,2237389,1,1,Active Shallow Crust,0.0,89.98993,0.0,08/29/3009 +0.32128,46.98942,542,10,30,11,1,48,4.55,5.0,fr,52520,10,2237400,1,1,Active Shallow Crust,0.0,89.98994,0.0,10/30/0542 +0.32128,46.98942,1650,1,22,15,6,14,4.95,5.0,fr,52521,32,2237451,1,1,Active Shallow Crust,240.0121,58.00451,0.0,01/22/1650 +0.32128,46.98942,5963,7,17,21,39,17,5.05,5.0,fr,52522,119,2237469,1,1,Active Shallow Crust,128.8853,89.99045,0.0,07/17/5963 +0.32128,46.98942,7956,7,21,19,37,14,5.35,5.0,fr,52523,159,2237496,1,1,Active Shallow Crust,0.0,89.98998,0.0,07/21/7956 +0.3183143,46.99293,4080,6,27,1,52,21,6.25,5.719927,fr,52524,81,2237607,1,1,Active Shallow Crust,240.0731,57.99998,0.0,06/27/4080 +6.58874,44.96151,2288,8,22,3,59,6,3.55,5.0,fr,52525,45,2237760,1,1,Active Shallow Crust,0.0,89.99287,0.0,08/22/2288 +6.58874,44.96151,1139,10,28,13,4,9,3.55,5.0,fr,52526,22,2237763,1,1,Active Shallow Crust,240.0122,57.99855,0.0,10/28/1139 +6.58874,44.96151,3256,1,17,18,42,43,3.55,15.0,fr,52527,65,2237767,1,1,Active Shallow Crust,0.0,89.99278,-90.0,01/17/3256 +6.58874,44.96151,3011,12,17,6,55,15,3.55,15.0,fr,52528,60,2237770,1,1,Active Shallow Crust,128.8969,89.99287,0.0,12/17/3011 +6.58874,44.96151,753,1,7,9,2,51,3.65,5.0,fr,52529,15,2237772,1,1,Active Shallow Crust,0.0,89.98728,0.0,01/07/0753 +6.58874,44.96151,4288,1,14,15,21,27,3.65,15.0,fr,52530,85,2237773,1,1,Active Shallow Crust,0.0,89.98728,0.0,01/14/4288 +6.58874,44.96151,4045,6,11,19,8,26,3.75,5.0,fr,52531,80,2237784,1,2,Active Shallow Crust,0.0,89.98866,0.0,06/11/4045 +6.58874,44.96151,1438,7,16,0,4,1,3.75,5.0,fr,52532,28,2237784,1,2,Active Shallow Crust,0.0,89.98866,0.0,07/16/1438 +6.58874,44.96151,308,10,22,6,37,30,3.75,15.0,fr,52533,6,2237788,1,1,Active Shallow Crust,240.0079,58.01755,0.0,10/22/0308 +6.58874,44.96151,1983,9,25,10,31,47,3.75,5.0,fr,52534,39,2237790,1,1,Active Shallow Crust,0.0,89.98853,-90.0,09/25/1983 +6.58874,44.96151,6257,10,4,10,42,38,3.75,5.0,fr,52535,125,2237793,1,1,Active Shallow Crust,128.8961,89.96747,0.0,10/04/6257 +6.58874,44.96151,9569,5,19,19,13,19,3.85,5.0,fr,52536,191,2237796,1,1,Active Shallow Crust,0.0,89.9899,0.0,05/19/9569 +6.58874,44.96151,7867,1,22,13,26,36,3.85,15.0,fr,52537,157,2237800,1,1,Active Shallow Crust,240.011,57.99736,0.0,01/22/7867 +6.58874,44.96151,4689,9,8,3,8,4,3.95,5.0,fr,52538,93,2237811,1,1,Active Shallow Crust,240.0185,58.00586,0.0,09/08/4689 +6.58874,44.96151,7972,5,5,14,18,28,4.05,15.0,fr,52539,159,2237824,1,1,Active Shallow Crust,240.0061,58.00558,0.0,05/05/7972 +6.58874,44.96151,6765,6,3,10,26,4,4.05,27.5,fr,52540,135,2237825,1,1,Active Shallow Crust,240.0061,58.00558,0.0,06/03/6765 +6.58874,44.96151,47,9,3,6,8,8,4.05,15.0,fr,52541,0,2237830,1,1,Active Shallow Crust,128.8896,89.99398,0.0,09/03/0047 +6.58874,44.96151,6135,2,17,10,41,10,4.15,5.0,fr,52542,122,2237832,1,1,Active Shallow Crust,0.0,89.98927,0.0,02/17/6135 +3.95225,45.78735,7488,3,6,10,45,4,3.55,5.0,fr,52543,149,2238240,1,1,Active Shallow Crust,0.0,89.98946,0.0,03/06/7488 +3.95225,45.78735,2203,7,10,13,32,20,3.55,15.0,fr,52544,44,2238241,1,1,Active Shallow Crust,0.0,89.98946,0.0,07/10/2203 +3.95225,45.78735,912,3,23,5,40,30,3.55,27.5,fr,52545,18,2238242,1,1,Active Shallow Crust,0.0,89.98945,0.0,03/23/0912 +3.95225,45.78735,6312,2,9,21,37,38,3.65,5.0,fr,52546,126,2238252,1,1,Active Shallow Crust,0.0,89.9906,0.0,02/09/6312 +3.95225,45.78735,7844,7,6,11,43,28,4.35,5.0,fr,52547,156,2238345,1,1,Active Shallow Crust,128.8976,89.98299,0.0,07/06/7844 +3.95225,45.78735,9012,8,24,17,23,17,4.75,5.0,fr,52548,180,2238384,1,1,Active Shallow Crust,0.0,89.99029,0.0,08/24/9012 +3.95225,45.78735,6538,9,22,13,8,10,5.15,15.0,fr,52549,130,2238436,1,1,Active Shallow Crust,240.0192,57.99987,0.0,09/22/6538 +3.86626,52.71127,8030,2,2,14,14,9,3.75,5.0,fr,52550,160,2238744,1,1,Active Shallow Crust,0.0,89.9903,0.0,02/02/8030 +3.86626,52.71127,3614,2,3,20,50,45,3.75,15.0,fr,52551,72,2238745,1,1,Active Shallow Crust,0.0,89.9903,0.0,02/03/3614 +8.42123,49.54466,961,11,11,3,19,53,3.55,5.0,fr,52552,19,2239200,1,1,Active Shallow Crust,0.0,89.98692,0.0,11/11/0961 +8.42123,49.54466,3567,7,15,11,47,30,3.55,15.0,fr,52553,71,2239201,1,1,Active Shallow Crust,0.0,89.98692,0.0,07/15/3567 +8.42123,49.54466,2179,4,14,10,17,39,3.55,5.0,fr,52554,43,2239209,1,1,Active Shallow Crust,128.897,89.99345,0.0,04/14/2179 +8.42123,49.54466,3808,5,13,0,4,52,3.65,5.0,fr,52555,76,2239212,1,1,Active Shallow Crust,0.0,89.98833,0.0,05/13/3808 +8.42123,49.54466,7978,1,17,18,12,20,3.65,15.0,fr,52556,159,2239213,1,2,Active Shallow Crust,0.0,89.98833,0.0,01/17/7978 +8.42123,49.54466,807,6,21,16,13,37,3.65,15.0,fr,52557,16,2239213,1,2,Active Shallow Crust,0.0,89.98833,0.0,06/21/0807 +8.42123,49.54466,2190,10,28,6,24,35,3.65,5.0,fr,52558,43,2239215,1,1,Active Shallow Crust,240.0008,58.01363,0.0,10/28/2190 +8.42123,49.54466,7991,8,11,15,59,1,3.65,5.0,fr,52559,159,2239221,1,1,Active Shallow Crust,128.8996,89.96358,0.0,08/11/7991 +8.42123,49.54466,457,11,6,10,26,30,3.75,5.0,fr,52560,9,2239224,1,3,Active Shallow Crust,0.0,89.98961,0.0,11/06/0457 +8.42123,49.54466,2105,1,22,17,13,12,3.75,5.0,fr,52561,42,2239224,1,3,Active Shallow Crust,0.0,89.98961,0.0,01/22/2105 +8.42123,49.54466,3538,2,28,2,32,55,3.75,5.0,fr,52562,70,2239224,1,3,Active Shallow Crust,0.0,89.98961,0.0,02/28/3538 +8.42123,49.54466,117,7,2,11,45,28,3.85,5.0,fr,52563,2,2239236,1,4,Active Shallow Crust,0.0,89.99074,0.0,07/02/0117 +8.42123,49.54466,4220,2,1,17,48,20,3.85,5.0,fr,52564,84,2239236,1,4,Active Shallow Crust,0.0,89.99074,0.0,02/01/4220 +8.42123,49.54466,489,9,23,6,32,20,3.85,5.0,fr,52565,9,2239236,1,4,Active Shallow Crust,0.0,89.99074,0.0,09/23/0489 +8.42123,49.54466,9935,6,4,13,4,2,3.85,5.0,fr,52566,198,2239236,1,4,Active Shallow Crust,0.0,89.99074,0.0,06/04/9935 +8.42123,49.54466,4717,12,9,7,35,41,3.85,5.0,fr,52567,94,2239242,1,1,Active Shallow Crust,0.0,89.99063,-90.0,12/09/4717 +8.42123,49.54466,9416,12,11,21,33,32,3.95,5.0,fr,52568,188,2239248,1,2,Active Shallow Crust,0.0,89.99174,0.0,12/11/9416 +8.42123,49.54466,3573,5,24,11,48,15,3.95,5.0,fr,52569,71,2239248,1,2,Active Shallow Crust,0.0,89.99174,0.0,05/24/3573 +8.42123,49.54466,3201,7,6,13,19,21,3.95,27.5,fr,52570,64,2239253,1,1,Active Shallow Crust,240.0213,58.00528,0.0,07/06/3201 +8.42123,49.54466,9024,10,16,12,16,10,3.95,5.0,fr,52571,180,2239257,1,1,Active Shallow Crust,128.9012,89.99174,0.0,10/16/9024 +8.42123,49.54466,6690,8,10,0,15,17,4.25,5.0,fr,52572,133,2239287,1,1,Active Shallow Crust,240.0085,57.99406,0.0,08/10/6690 +8.42123,49.54466,8309,9,3,20,31,11,4.45,5.0,fr,52573,166,2239308,1,1,Active Shallow Crust,0.0,89.99072,0.0,09/03/8309 +8.42123,49.54466,8425,6,24,0,50,53,4.55,5.0,fr,52574,168,2239320,1,1,Active Shallow Crust,0.0,89.99172,0.0,06/24/8425 +8.42123,49.54466,2786,5,28,2,31,39,4.55,5.0,fr,52575,55,2239326,1,1,Active Shallow Crust,0.0,89.99163,-90.0,05/28/2786 +8.42123,49.54466,8110,7,10,16,59,37,4.85,27.5,fr,52576,162,2239358,1,1,Active Shallow Crust,0.0,89.99121,0.0,07/10/8110 +8.42123,49.54466,8752,2,12,15,5,35,4.85,5.0,fr,52577,175,2239362,1,1,Active Shallow Crust,0.0,89.9911,-90.0,02/12/8752 +8.421236,49.54466,7251,8,31,17,58,28,6.35,7.567806,fr,52578,145,2239536,1,1,Active Shallow Crust,0.0,89.98983,0.0,08/31/7251 +3.44119,43.87489,2093,12,1,11,37,9,3.75,5.0,fr,52579,41,2239704,1,1,Active Shallow Crust,0.0,89.99134,0.0,12/01/2093 +3.44119,43.87489,5363,4,27,9,18,22,4.15,5.0,fr,52580,107,2239761,1,1,Active Shallow Crust,128.898,89.99362,0.0,04/27/5363 +3.44119,43.87489,7696,1,25,0,13,59,4.25,5.0,fr,52581,153,2239764,1,1,Active Shallow Crust,0.0,89.99026,0.0,01/25/7696 +3.44119,43.87489,3300,3,10,6,35,13,5.25,5.0,fr,52582,65,2239890,1,1,Active Shallow Crust,0.0,89.99013,-90.0,03/10/3300 +3.79237,47.82182,2344,9,29,14,17,45,3.75,27.5,fr,52583,46,2240195,1,1,Active Shallow Crust,128.8967,89.96726,0.0,09/29/2344 +3.79237,47.82182,2258,4,25,6,8,21,3.95,15.0,fr,52584,45,2240212,1,1,Active Shallow Crust,240.02,58.00496,0.0,04/25/2258 +3.79237,47.82182,3913,10,10,13,45,0,4.75,15.0,fr,52585,78,2240305,1,1,Active Shallow Crust,0.0,89.98979,0.0,10/10/3913 +3.79237,47.82182,97,10,24,19,29,36,4.85,15.0,fr,52586,1,2240320,1,1,Active Shallow Crust,240.0177,58.00244,0.0,10/24/0097 +7.98905,46.82124,5915,11,26,17,48,20,3.55,5.0,fr,52587,118,2240640,1,2,Active Shallow Crust,0.0,89.9931,0.0,11/26/5915 +7.98905,46.82124,2117,3,4,3,14,37,3.55,5.0,fr,52588,42,2240640,1,2,Active Shallow Crust,0.0,89.9931,0.0,03/04/2117 +7.98905,46.82124,1534,4,9,3,20,59,3.55,15.0,fr,52589,30,2240641,1,5,Active Shallow Crust,0.0,89.9931,0.0,04/09/1534 +7.98905,46.82124,6405,3,27,4,18,31,3.55,15.0,fr,52590,128,2240641,1,5,Active Shallow Crust,0.0,89.9931,0.0,03/27/6405 +7.98905,46.82124,3696,3,9,6,32,14,3.55,15.0,fr,52591,73,2240641,1,5,Active Shallow Crust,0.0,89.9931,0.0,03/09/3696 +7.98905,46.82124,2690,2,12,22,47,39,3.55,15.0,fr,52592,53,2240641,1,5,Active Shallow Crust,0.0,89.9931,0.0,02/12/2690 +7.98905,46.82124,6294,6,26,2,44,35,3.55,15.0,fr,52593,125,2240641,1,5,Active Shallow Crust,0.0,89.9931,0.0,06/26/6294 +7.98905,46.82124,5275,10,11,14,18,38,3.55,5.0,fr,52594,105,2240646,1,1,Active Shallow Crust,0.0,89.99302,-90.0,10/11/5275 +7.98905,46.82124,8404,6,21,2,5,21,3.55,15.0,fr,52595,168,2240650,1,1,Active Shallow Crust,128.8961,89.9931,0.0,06/21/8404 +7.98905,46.82124,8208,10,6,10,3,48,3.65,5.0,fr,52596,164,2240652,1,8,Active Shallow Crust,0.0,89.9877,0.0,10/06/8208 +7.98905,46.82124,4163,4,27,11,9,0,3.65,5.0,fr,52597,83,2240652,1,8,Active Shallow Crust,0.0,89.9877,0.0,04/27/4163 +7.98905,46.82124,471,8,30,22,6,56,3.65,5.0,fr,52598,9,2240652,1,8,Active Shallow Crust,0.0,89.9877,0.0,08/30/0471 +7.98905,46.82124,146,6,7,6,1,41,3.65,5.0,fr,52599,2,2240652,1,8,Active Shallow Crust,0.0,89.9877,0.0,06/07/0146 +7.98905,46.82124,943,12,9,15,1,5,3.65,5.0,fr,52600,18,2240652,1,8,Active Shallow Crust,0.0,89.9877,0.0,12/09/0943 +7.98905,46.82124,9204,8,11,8,11,30,3.65,5.0,fr,52601,184,2240652,1,8,Active Shallow Crust,0.0,89.9877,0.0,08/11/9204 +7.98905,46.82124,3343,6,23,10,53,11,3.65,5.0,fr,52602,66,2240652,1,8,Active Shallow Crust,0.0,89.9877,0.0,06/23/3343 +7.98905,46.82124,1243,9,17,6,22,58,3.65,5.0,fr,52603,24,2240652,1,8,Active Shallow Crust,0.0,89.9877,0.0,09/17/1243 +7.98905,46.82124,3804,3,11,20,23,19,3.65,27.5,fr,52604,76,2240657,1,1,Active Shallow Crust,240.0019,58.01289,0.0,03/11/3804 +7.98905,46.82124,1148,3,25,9,55,18,3.65,27.5,fr,52605,22,2240663,1,1,Active Shallow Crust,128.9004,89.96353,0.0,03/25/1148 +7.98905,46.82124,3726,2,22,17,28,54,3.75,5.0,fr,52606,74,2240664,1,2,Active Shallow Crust,0.0,89.98904,0.0,02/22/3726 +7.98905,46.82124,8585,10,18,12,50,47,3.75,5.0,fr,52607,171,2240664,1,2,Active Shallow Crust,0.0,89.98904,0.0,10/18/8585 +7.98905,46.82124,8374,6,26,0,24,54,3.75,15.0,fr,52608,167,2240665,1,1,Active Shallow Crust,0.0,89.98904,0.0,06/26/8374 +7.98905,46.82124,1468,7,9,5,58,45,3.75,15.0,fr,52609,29,2240674,1,1,Active Shallow Crust,128.8958,89.9675,0.0,07/09/1468 +7.98905,46.82124,10000,7,17,14,22,40,3.85,5.0,fr,52610,199,2240676,1,1,Active Shallow Crust,0.0,89.99023,0.0,07/17/10000 +7.98905,46.82124,1978,5,21,14,36,52,3.85,5.0,fr,52611,39,2240679,1,1,Active Shallow Crust,240.0111,57.99812,0.0,05/21/1978 +7.98905,46.82124,2473,6,25,18,39,4,3.85,15.0,fr,52612,49,2240680,1,1,Active Shallow Crust,240.0111,57.99812,0.0,06/25/2473 +7.98905,46.82124,699,7,28,16,2,20,3.85,5.0,fr,52613,13,2240682,1,1,Active Shallow Crust,0.0,89.99012,-90.0,07/28/0699 +7.98905,46.82124,8908,11,16,0,21,20,3.95,5.0,fr,52614,178,2240688,1,2,Active Shallow Crust,0.0,89.99129,0.0,11/16/8908 +7.98905,46.82124,2257,2,14,14,53,28,3.95,5.0,fr,52615,45,2240688,1,2,Active Shallow Crust,0.0,89.99129,0.0,02/14/2257 +7.98905,46.82124,8858,10,1,13,59,8,4.05,5.0,fr,52616,177,2240700,1,3,Active Shallow Crust,0.0,89.98836,0.0,10/01/8858 +7.98905,46.82124,4235,12,2,5,46,55,4.05,5.0,fr,52617,84,2240700,1,3,Active Shallow Crust,0.0,89.98836,0.0,12/02/4235 +7.98905,46.82124,3034,7,11,2,8,39,4.05,5.0,fr,52618,60,2240700,1,3,Active Shallow Crust,0.0,89.98836,0.0,07/11/3034 +7.98905,46.82124,8410,1,7,13,45,53,4.15,5.0,fr,52619,168,2240712,1,2,Active Shallow Crust,0.0,89.98962,0.0,01/07/8410 +7.98905,46.82124,1749,6,10,12,18,51,4.15,5.0,fr,52620,34,2240712,1,2,Active Shallow Crust,0.0,89.98962,0.0,06/10/1749 +7.98905,46.82124,7591,8,12,8,22,10,4.25,5.0,fr,52621,151,2240724,1,2,Active Shallow Crust,0.0,89.99075,0.0,08/12/7591 +7.98905,46.82124,9905,1,11,20,50,35,4.25,5.0,fr,52622,198,2240724,1,2,Active Shallow Crust,0.0,89.99075,0.0,01/11/9905 +7.98905,46.82124,6919,1,2,11,14,30,4.25,27.5,fr,52623,138,2240732,1,1,Active Shallow Crust,0.0,89.99065,-90.0,01/02/6919 +7.98905,46.82124,4324,6,25,14,11,40,4.35,15.0,fr,52624,86,2240737,1,1,Active Shallow Crust,0.0,89.98901,0.0,06/25/4324 +7.98905,46.82124,3338,5,14,23,36,15,4.45,5.0,fr,52625,66,2240751,1,1,Active Shallow Crust,240.0057,57.99431,0.0,05/14/3338 +7.98905,46.82124,6835,3,9,19,52,15,4.75,15.0,fr,52626,136,2240785,1,1,Active Shallow Crust,0.0,89.9896,0.0,03/09/6835 +7.98905,46.82124,7060,10,27,0,12,19,4.95,5.0,fr,52627,141,2240811,1,1,Active Shallow Crust,240.012,58.0047,0.0,10/27/7060 +7.98905,46.82124,2107,10,30,10,8,27,5.05,15.0,fr,52628,42,2240830,1,1,Active Shallow Crust,128.8854,89.99015,0.0,10/30/2107 +7.98905,46.82124,9906,7,29,13,11,9,5.15,5.0,fr,52629,198,2240835,1,1,Active Shallow Crust,240.02,57.99997,0.0,07/29/9906 +7.98905,46.82124,371,7,12,1,4,55,5.45,27.5,fr,52630,7,2240870,1,1,Active Shallow Crust,0.0,89.98993,0.0,07/12/0371 +-6.27295,48.69295,2134,7,10,7,18,25,3.75,15.0,fr,52631,42,2241145,1,1,Active Shallow Crust,0.0,89.98943,0.0,07/10/2134 +-6.27295,48.69295,8158,6,24,10,49,31,4.25,15.0,fr,52632,163,2241208,1,1,Active Shallow Crust,240.0084,57.99414,0.0,06/24/8158 +-6.27295,48.69295,3996,4,2,19,11,34,4.65,5.0,fr,52633,79,2241252,1,1,Active Shallow Crust,0.0,89.99062,0.0,04/02/3996 +2.01724,44.70383,3436,9,12,11,28,6,3.55,27.5,fr,52634,68,2241602,1,1,Active Shallow Crust,0.0,89.98925,0.0,09/12/3436 +2.01724,44.70383,8749,12,26,16,36,26,3.85,5.0,fr,52635,174,2241636,1,1,Active Shallow Crust,0.0,89.98985,0.0,12/26/8749 +2.01724,44.70383,7802,9,3,20,49,16,4.15,15.0,fr,52636,156,2241673,1,1,Active Shallow Crust,0.0,89.98922,0.0,09/03/7802 +2.73663,48.70666,4639,7,13,11,56,20,3.55,5.0,fr,52637,92,2242560,1,2,Active Shallow Crust,0.0,89.99002,0.0,07/13/4639 +2.73663,48.70666,9559,7,19,19,47,39,3.55,5.0,fr,52638,191,2242560,1,2,Active Shallow Crust,0.0,89.99002,0.0,07/19/9559 +2.73663,48.70666,2320,8,24,9,46,8,3.65,5.0,fr,52639,46,2242572,1,1,Active Shallow Crust,0.0,89.9911,0.0,08/24/2320 +2.73663,48.70666,1824,11,13,20,32,14,4.35,5.0,fr,52640,36,2242656,1,1,Active Shallow Crust,0.0,89.9894,0.0,11/13/1824 +-0.70552,43.10042,8655,5,24,2,5,28,3.55,5.0,fr,52641,173,2243040,1,5,Active Shallow Crust,0.0,89.98988,0.0,05/24/8655 +-0.70552,43.10042,5213,11,22,3,49,0,3.55,5.0,fr,52642,104,2243040,1,5,Active Shallow Crust,0.0,89.98988,0.0,11/22/5213 +-0.70552,43.10042,1739,9,16,23,48,27,3.55,5.0,fr,52643,34,2243040,1,5,Active Shallow Crust,0.0,89.98988,0.0,09/16/1739 +-0.70552,43.10042,2381,6,23,21,50,54,3.55,5.0,fr,52644,47,2243040,1,5,Active Shallow Crust,0.0,89.98988,0.0,06/23/2381 +-0.70552,43.10042,1904,7,1,4,45,17,3.55,5.0,fr,52645,38,2243040,1,5,Active Shallow Crust,0.0,89.98988,0.0,07/01/1904 +-0.70552,43.10042,1693,12,8,15,14,59,3.55,27.5,fr,52646,33,2243042,1,1,Active Shallow Crust,0.0,89.98988,0.0,12/08/1693 +-0.70552,43.10042,5020,7,13,9,33,29,3.55,5.0,fr,52647,100,2243043,1,1,Active Shallow Crust,240.0119,57.99806,0.0,07/13/5020 +-0.70552,43.10042,590,9,7,3,20,24,3.55,15.0,fr,52648,11,2243044,1,1,Active Shallow Crust,240.0119,57.99806,0.0,09/07/0590 +-0.70552,43.10042,879,7,21,11,28,7,3.55,5.0,fr,52649,17,2243046,1,1,Active Shallow Crust,0.0,89.98976,-90.0,07/21/0879 +-0.70552,43.10042,6109,3,21,14,37,11,3.55,15.0,fr,52650,122,2243047,1,1,Active Shallow Crust,0.0,89.98976,-90.0,03/21/6109 +-0.70552,43.10042,1458,6,2,1,2,11,3.55,5.0,fr,52651,29,2243049,1,2,Active Shallow Crust,128.8963,89.99402,0.0,06/02/1458 +-0.70552,43.10042,9042,6,13,0,31,21,3.55,5.0,fr,52652,180,2243049,1,2,Active Shallow Crust,128.8963,89.99402,0.0,06/13/9042 +-0.70552,43.10042,6982,11,12,19,50,11,3.65,5.0,fr,52653,139,2243052,1,6,Active Shallow Crust,0.0,89.99016,0.0,11/12/6982 +-0.70552,43.10042,7293,12,17,12,59,13,3.65,5.0,fr,52654,145,2243052,1,6,Active Shallow Crust,0.0,89.99016,0.0,12/17/7293 +-0.70552,43.10042,1728,7,31,17,1,33,3.65,5.0,fr,52655,34,2243052,1,6,Active Shallow Crust,0.0,89.99016,0.0,07/31/1728 +-0.70552,43.10042,7293,6,9,8,53,50,3.65,5.0,fr,52656,145,2243052,1,6,Active Shallow Crust,0.0,89.99016,0.0,06/09/7293 +-0.70552,43.10042,6808,4,10,14,7,50,3.65,5.0,fr,52657,136,2243052,1,6,Active Shallow Crust,0.0,89.99016,0.0,04/10/6808 +-0.70552,43.10042,489,6,3,17,47,5,3.65,5.0,fr,52658,9,2243052,1,6,Active Shallow Crust,0.0,89.99016,0.0,06/03/0489 +-0.70552,43.10042,494,3,28,1,57,34,3.65,15.0,fr,52659,9,2243053,1,2,Active Shallow Crust,0.0,89.99016,0.0,03/28/0494 +-0.70552,43.10042,4623,1,27,21,26,53,3.65,15.0,fr,52660,92,2243053,1,2,Active Shallow Crust,0.0,89.99016,0.0,01/27/4623 +-0.70552,43.10042,7832,1,21,21,3,54,3.65,27.5,fr,52661,156,2243054,1,1,Active Shallow Crust,0.0,89.99016,0.0,01/21/7832 +-0.70552,43.10042,5270,5,11,19,37,6,3.65,5.0,fr,52662,105,2243055,1,2,Active Shallow Crust,240.0007,58.01299,0.0,05/11/5270 +-0.70552,43.10042,8870,11,24,18,12,14,3.65,5.0,fr,52663,177,2243055,1,2,Active Shallow Crust,240.0007,58.01299,0.0,11/24/8870 +-0.70552,43.10042,5165,8,12,3,36,33,3.65,27.5,fr,52664,103,2243057,1,1,Active Shallow Crust,240.0007,58.01291,0.0,08/12/5165 +-0.70552,43.10042,8265,3,7,20,57,15,3.65,15.0,fr,52665,165,2243059,1,1,Active Shallow Crust,0.0,89.99004,-90.0,03/07/8265 +-0.70552,43.10042,7882,2,23,23,24,30,3.65,5.0,fr,52666,157,2243061,1,2,Active Shallow Crust,128.9007,89.96353,0.0,02/23/7882 +-0.70552,43.10042,7923,8,10,17,0,46,3.65,5.0,fr,52667,158,2243061,1,2,Active Shallow Crust,128.9007,89.96353,0.0,08/10/7923 +-0.70552,43.10042,3976,9,10,13,20,7,3.75,5.0,fr,52668,79,2243064,1,2,Active Shallow Crust,0.0,89.98976,0.0,09/10/3976 +-0.70552,43.10042,2085,9,29,12,8,46,3.75,5.0,fr,52669,41,2243064,1,2,Active Shallow Crust,0.0,89.98976,0.0,09/29/2085 +-0.70552,43.10042,3574,2,28,21,8,12,3.75,15.0,fr,52670,71,2243065,1,4,Active Shallow Crust,0.0,89.98976,0.0,02/28/3574 +-0.70552,43.10042,5391,12,26,6,40,16,3.75,15.0,fr,52671,107,2243065,1,4,Active Shallow Crust,0.0,89.98976,0.0,12/26/5391 +-0.70552,43.10042,4760,8,29,13,42,45,3.75,15.0,fr,52672,95,2243065,1,4,Active Shallow Crust,0.0,89.98976,0.0,08/29/4760 +-0.70552,43.10042,4538,2,27,18,45,52,3.75,15.0,fr,52673,90,2243065,1,4,Active Shallow Crust,0.0,89.98976,0.0,02/27/4538 +-0.70552,43.10042,5705,7,20,12,19,51,3.75,27.5,fr,52674,114,2243066,1,2,Active Shallow Crust,0.0,89.98976,0.0,07/20/5705 +-0.70552,43.10042,9814,8,10,20,28,52,3.75,27.5,fr,52675,196,2243066,1,2,Active Shallow Crust,0.0,89.98976,0.0,08/10/9814 +-0.70552,43.10042,7175,1,4,12,1,42,3.75,5.0,fr,52676,143,2243067,1,3,Active Shallow Crust,240.0079,58.01753,0.0,01/04/7175 +-0.70552,43.10042,3304,8,10,13,56,53,3.75,5.0,fr,52677,66,2243067,1,3,Active Shallow Crust,240.0079,58.01753,0.0,08/10/3304 +-0.70552,43.10042,9723,3,22,17,3,2,3.75,5.0,fr,52678,194,2243067,1,3,Active Shallow Crust,240.0079,58.01753,0.0,03/22/9723 +-0.70552,43.10042,3630,1,10,18,59,49,3.85,5.0,fr,52679,72,2243076,1,4,Active Shallow Crust,0.0,89.99023,0.0,01/10/3630 +-0.70552,43.10042,6879,7,4,1,27,2,3.85,5.0,fr,52680,137,2243076,1,4,Active Shallow Crust,0.0,89.99023,0.0,07/04/6879 +-0.70552,43.10042,2944,10,7,9,14,17,3.85,5.0,fr,52681,58,2243076,1,4,Active Shallow Crust,0.0,89.99023,0.0,10/07/2944 +-0.70552,43.10042,2783,3,31,10,19,42,3.85,5.0,fr,52682,55,2243076,1,4,Active Shallow Crust,0.0,89.99023,0.0,03/31/2783 +-0.70552,43.10042,2235,8,18,12,55,50,3.85,15.0,fr,52683,44,2243077,1,3,Active Shallow Crust,0.0,89.99023,0.0,08/18/2235 +-0.70552,43.10042,5515,9,23,16,21,19,3.85,15.0,fr,52684,110,2243077,1,3,Active Shallow Crust,0.0,89.99023,0.0,09/23/5515 +-0.70552,43.10042,5983,2,3,7,39,14,3.85,15.0,fr,52685,119,2243077,1,3,Active Shallow Crust,0.0,89.99023,0.0,02/03/5983 +-0.70552,43.10042,1512,1,24,18,51,45,3.85,27.5,fr,52686,30,2243081,1,1,Active Shallow Crust,240.0105,57.99765,0.0,01/24/1512 +-0.70552,43.10042,8165,8,15,6,2,42,3.95,5.0,fr,52687,163,2243088,1,4,Active Shallow Crust,0.0,89.99013,0.0,08/15/8165 +-0.70552,43.10042,1105,10,5,2,20,42,3.95,5.0,fr,52688,22,2243088,1,4,Active Shallow Crust,0.0,89.99013,0.0,10/05/1105 +-0.70552,43.10042,6993,6,30,22,2,16,3.95,5.0,fr,52689,139,2243088,1,4,Active Shallow Crust,0.0,89.99013,0.0,06/30/6993 +-0.70552,43.10042,2832,10,9,7,59,5,3.95,5.0,fr,52690,56,2243088,1,4,Active Shallow Crust,0.0,89.99013,0.0,10/09/2832 +-0.70552,43.10042,4682,1,20,14,9,57,3.95,15.0,fr,52691,93,2243089,1,2,Active Shallow Crust,0.0,89.99013,0.0,01/20/4682 +-0.70552,43.10042,4947,3,12,5,21,26,3.95,15.0,fr,52692,98,2243089,1,2,Active Shallow Crust,0.0,89.99013,0.0,03/12/4947 +-0.70552,43.10042,7416,9,21,8,42,17,3.95,5.0,fr,52693,148,2243091,1,1,Active Shallow Crust,240.0193,58.005,0.0,09/21/7416 +-0.70552,43.10042,8714,9,16,16,48,37,3.95,5.0,fr,52694,174,2243097,1,1,Active Shallow Crust,128.9009,89.99361,0.0,09/16/8714 +-0.70552,43.10042,6475,6,11,0,7,33,4.05,5.0,fr,52695,129,2243100,1,3,Active Shallow Crust,0.0,89.99017,0.0,06/11/6475 +-0.70552,43.10042,2990,3,17,17,34,46,4.05,5.0,fr,52696,59,2243100,1,3,Active Shallow Crust,0.0,89.99017,0.0,03/17/2990 +-0.70552,43.10042,3648,8,3,13,53,34,4.05,5.0,fr,52697,72,2243100,1,3,Active Shallow Crust,0.0,89.99017,0.0,08/03/3648 +-0.70552,43.10042,9694,6,15,14,8,50,4.05,15.0,fr,52698,193,2243101,1,1,Active Shallow Crust,0.0,89.99017,0.0,06/15/9694 +-0.70552,43.10042,9596,1,4,19,6,38,4.15,5.0,fr,52699,191,2243121,1,1,Active Shallow Crust,128.8981,89.99355,0.0,01/04/9596 +-0.70552,43.10042,90,6,9,12,19,52,4.25,5.0,fr,52700,1,2243124,1,1,Active Shallow Crust,0.0,89.99014,0.0,06/09/0090 +-0.70552,43.10042,2840,5,8,21,1,39,4.25,5.0,fr,52701,56,2243130,1,1,Active Shallow Crust,0.0,89.99002,-90.0,05/08/2840 +-0.70552,43.10042,8266,8,18,20,35,59,4.25,5.0,fr,52702,165,2243133,1,1,Active Shallow Crust,128.8949,89.98089,0.0,08/18/8266 +-0.70552,43.10042,4566,2,22,8,9,18,4.25,15.0,fr,52703,91,2243134,1,2,Active Shallow Crust,128.8949,89.98089,0.0,02/22/4566 +-0.70552,43.10042,6591,12,4,4,20,32,4.25,15.0,fr,52704,131,2243134,1,2,Active Shallow Crust,128.8949,89.98089,0.0,12/04/6591 +-0.70552,43.10042,8636,7,27,17,54,50,4.35,5.0,fr,52705,172,2243136,1,1,Active Shallow Crust,0.0,89.9901,0.0,07/27/8636 +-0.70552,43.10042,1961,6,5,8,38,3,4.35,15.0,fr,52706,39,2243140,1,1,Active Shallow Crust,240.0076,57.9958,0.0,06/05/1961 +-0.70552,43.10042,3481,1,26,8,44,45,4.35,15.0,fr,52707,69,2243143,1,1,Active Shallow Crust,0.0,89.98999,-90.0,01/26/3481 +-0.70552,43.10042,5305,12,9,6,36,16,4.35,5.0,fr,52708,106,2243145,1,1,Active Shallow Crust,128.8985,89.98278,0.0,12/09/5305 +-0.70552,43.10042,3743,8,16,3,45,39,4.45,27.5,fr,52709,74,2243150,1,1,Active Shallow Crust,0.0,89.98988,0.0,08/16/3743 +-0.70552,43.10042,5062,6,4,4,39,25,4.55,5.0,fr,52710,101,2243160,1,2,Active Shallow Crust,0.0,89.9901,0.0,06/04/5062 +-0.70552,43.10042,8442,3,16,0,18,24,4.55,5.0,fr,52711,168,2243160,1,2,Active Shallow Crust,0.0,89.9901,0.0,03/16/8442 +-0.70552,43.10042,3017,5,29,21,43,49,4.55,5.0,fr,52712,60,2243163,1,2,Active Shallow Crust,240.0083,57.99718,0.0,05/29/3017 +-0.70552,43.10042,8137,7,5,14,40,31,4.55,5.0,fr,52713,162,2243163,1,2,Active Shallow Crust,240.0083,57.99718,0.0,07/05/8137 +-0.70552,43.10042,2689,9,7,21,48,48,4.55,5.0,fr,52714,53,2243166,1,1,Active Shallow Crust,0.0,89.98999,-90.0,09/07/2689 +-0.70552,43.10042,3606,4,11,8,49,25,4.55,5.0,fr,52715,72,2243169,1,1,Active Shallow Crust,128.8947,89.98579,0.0,04/11/3606 +-0.70552,43.10042,5527,12,7,1,57,30,4.75,15.0,fr,52716,110,2243194,1,1,Active Shallow Crust,128.8896,89.9881,0.0,12/07/5527 +-0.70552,43.10042,6383,2,6,20,8,17,4.85,15.0,fr,52717,127,2243197,1,1,Active Shallow Crust,0.0,89.9899,0.0,02/06/6383 +-0.70552,43.10042,9123,3,29,11,48,25,5.25,5.0,fr,52718,182,2243244,1,1,Active Shallow Crust,0.0,89.98999,0.0,03/29/9123 +-0.70552,43.10042,1534,7,19,2,41,57,5.35,5.0,fr,52719,30,2243256,1,1,Active Shallow Crust,0.0,89.99004,0.0,07/19/1534 +1.96359,41.77897,9897,8,17,22,34,2,3.65,5.0,fr,52720,197,2244012,1,2,Active Shallow Crust,0.0,89.98994,0.0,08/17/9897 +1.96359,41.77897,776,5,28,1,26,13,3.65,5.0,fr,52721,15,2244012,1,2,Active Shallow Crust,0.0,89.98994,0.0,05/28/0776 +1.96359,41.77897,9332,3,25,0,49,36,3.65,15.0,fr,52722,186,2244013,1,2,Active Shallow Crust,0.0,89.98994,0.0,03/25/9332 +1.96359,41.77897,2839,1,31,9,38,21,3.65,15.0,fr,52723,56,2244013,1,2,Active Shallow Crust,0.0,89.98994,0.0,01/31/2839 +1.96359,41.77897,1795,10,6,22,42,52,3.65,5.0,fr,52724,35,2244015,1,1,Active Shallow Crust,240.0004,58.0129,0.0,10/06/1795 +1.96359,41.77897,225,1,19,7,23,4,3.75,27.5,fr,52725,4,2244026,1,1,Active Shallow Crust,0.0,89.98955,0.0,01/19/0225 +1.96359,41.77897,4368,11,17,5,27,40,3.75,5.0,fr,52726,87,2244027,1,1,Active Shallow Crust,240.0079,58.01724,0.0,11/17/4368 +1.96359,41.77897,9590,2,12,18,16,50,3.75,5.0,fr,52727,191,2244030,1,1,Active Shallow Crust,0.0,89.98943,-90.0,02/12/9590 +1.96359,41.77897,3116,5,12,18,47,51,3.85,5.0,fr,52728,62,2244039,1,1,Active Shallow Crust,240.0103,57.9977,0.0,05/12/3116 +1.96359,41.77897,413,3,13,2,42,1,3.95,15.0,fr,52729,8,2244058,1,1,Active Shallow Crust,128.901,89.99407,0.0,03/13/0413 +1.96359,41.77897,9048,7,6,20,52,19,4.05,5.0,fr,52730,180,2244060,1,1,Active Shallow Crust,0.0,89.99049,0.0,07/06/9048 +1.96359,41.77897,1738,2,19,12,46,15,4.15,5.0,fr,52731,34,2244072,1,1,Active Shallow Crust,0.0,89.98963,0.0,02/19/1738 +1.96359,41.77897,1210,2,1,19,21,4,4.35,5.0,fr,52732,24,2244096,1,1,Active Shallow Crust,0.0,89.99027,0.0,02/01/1210 +1.96359,41.77897,9851,3,13,9,22,54,4.55,27.5,fr,52733,197,2244125,1,1,Active Shallow Crust,240.008,57.99714,0.0,03/13/9851 +4.1404,40.3498,925,12,5,9,57,34,3.65,5.0,fr,52734,18,2244495,1,1,Active Shallow Crust,239.9996,58.01413,0.0,12/05/0925 +4.1404,40.3498,7378,1,1,13,44,38,4.15,15.0,fr,52735,147,2244553,1,1,Active Shallow Crust,0.0,89.98844,0.0,01/01/7378 +4.1404,40.3498,3428,2,3,0,13,42,4.25,15.0,fr,52736,68,2244574,1,1,Active Shallow Crust,128.8957,89.98072,0.0,02/03/3428 +0.57458,43.76874,3666,5,3,12,17,21,3.55,5.0,fr,52737,73,2244960,1,1,Active Shallow Crust,0.0,89.98999,0.0,05/03/3666 +0.57458,43.76874,8379,3,15,11,46,33,5.45,15.0,fr,52738,167,2245189,1,1,Active Shallow Crust,0.0,89.98999,0.0,03/15/8379 +-1.76612,43.26289,9338,11,15,23,50,26,3.55,27.5,fr,52739,186,2245445,1,1,Active Shallow Crust,240.0118,57.99795,0.0,11/15/9338 +-1.76612,43.26289,5351,10,31,5,28,57,3.55,15.0,fr,52740,107,2245450,1,1,Active Shallow Crust,128.8966,89.99358,0.0,10/31/5351 +-1.76612,43.26289,4773,6,22,8,40,45,3.65,5.0,fr,52741,95,2245452,1,2,Active Shallow Crust,0.0,89.99018,0.0,06/22/4773 +-1.76612,43.26289,2957,2,4,5,47,3,3.65,5.0,fr,52742,59,2245452,1,2,Active Shallow Crust,0.0,89.99018,0.0,02/04/2957 +-1.76612,43.26289,6135,8,8,22,54,45,3.65,5.0,fr,52743,122,2245458,1,2,Active Shallow Crust,0.0,89.99007,-90.0,08/08/6135 +-1.76612,43.26289,232,4,3,19,33,57,3.65,5.0,fr,52744,4,2245458,1,2,Active Shallow Crust,0.0,89.99007,-90.0,04/03/0232 +-1.76612,43.26289,7671,3,8,5,44,5,3.75,15.0,fr,52745,153,2245465,1,1,Active Shallow Crust,0.0,89.98979,0.0,03/08/7671 +-1.76612,43.26289,5256,5,29,12,28,28,3.75,5.0,fr,52746,105,2245470,1,2,Active Shallow Crust,0.0,89.98968,-90.0,05/29/5256 +-1.76612,43.26289,9222,8,12,2,37,45,3.75,5.0,fr,52747,184,2245470,1,2,Active Shallow Crust,0.0,89.98968,-90.0,08/12/9222 +-1.76612,43.26289,3924,9,23,4,58,43,3.75,15.0,fr,52748,78,2245474,1,1,Active Shallow Crust,128.8969,89.9673,0.0,09/23/3924 +-1.76612,43.26289,8784,1,18,9,17,21,3.85,5.0,fr,52749,175,2245479,1,1,Active Shallow Crust,240.0104,57.99781,0.0,01/18/8784 +-1.76612,43.26289,3055,4,28,19,54,44,3.85,15.0,fr,52750,61,2245483,1,1,Active Shallow Crust,0.0,89.98948,-90.0,04/28/3055 +-1.76612,43.26289,8533,6,13,15,0,51,3.95,5.0,fr,52751,170,2245488,1,1,Active Shallow Crust,0.0,89.98958,0.0,06/13/8533 +-1.76612,43.26289,8987,6,30,19,24,35,3.95,15.0,fr,52752,179,2245489,1,1,Active Shallow Crust,0.0,89.98958,0.0,06/30/8987 +-1.76612,43.26289,7746,9,8,17,23,5,3.95,27.5,fr,52753,154,2245490,1,1,Active Shallow Crust,0.0,89.98958,0.0,09/08/7746 +-1.76612,43.26289,6322,1,17,21,51,57,4.15,5.0,fr,52754,126,2245512,1,1,Active Shallow Crust,0.0,89.98988,0.0,01/17/6322 +-1.76612,43.26289,7215,5,9,18,44,5,4.15,15.0,fr,52755,144,2245516,1,1,Active Shallow Crust,240.0077,57.99739,0.0,05/09/7215 +-1.76612,43.26289,217,10,7,22,9,59,4.15,15.0,fr,52756,4,2245519,1,1,Active Shallow Crust,0.0,89.98976,-90.0,10/07/0217 +-1.76612,43.26289,5854,1,22,11,43,56,4.25,5.0,fr,52757,117,2245524,1,1,Active Shallow Crust,0.0,89.99016,0.0,01/22/5854 +-1.76612,43.26289,3389,6,24,14,56,54,4.35,5.0,fr,52758,67,2245536,1,1,Active Shallow Crust,0.0,89.98977,0.0,06/24/3389 +-1.76612,43.26289,382,9,30,0,56,59,4.45,27.5,fr,52759,7,2245553,1,1,Active Shallow Crust,240.0045,57.99454,0.0,09/30/0382 +-1.76612,43.26289,5721,4,25,21,25,58,4.55,5.0,fr,52760,114,2245560,1,1,Active Shallow Crust,0.0,89.99013,0.0,04/25/5721 +-1.76612,43.26289,8352,10,15,6,48,49,4.55,5.0,fr,52761,167,2245569,1,1,Active Shallow Crust,128.8947,89.98573,0.0,10/15/8352 +-1.76612,43.26289,1369,10,29,3,33,53,4.65,5.0,fr,52762,27,2245572,1,1,Active Shallow Crust,0.0,89.99017,0.0,10/29/1369 +-1.76612,43.26289,4672,9,24,14,31,28,4.65,5.0,fr,52763,93,2245578,1,1,Active Shallow Crust,0.0,89.99005,-90.0,09/24/4672 +-1.76612,43.26289,3554,3,22,15,50,12,5.55,27.5,fr,52764,71,2245682,1,1,Active Shallow Crust,0.0,89.99008,0.0,03/22/3554 +1.5406,44.52347,6398,11,16,6,39,51,3.55,5.0,fr,52765,127,2245920,1,1,Active Shallow Crust,0.0,89.98921,0.0,11/16/6398 +1.5406,44.52347,5792,7,20,7,31,9,4.05,5.0,fr,52766,115,2245980,1,1,Active Shallow Crust,0.0,89.98989,0.0,07/20/5792 +1.5406,44.52347,8210,5,25,21,27,7,4.15,5.0,fr,52767,164,2246001,1,1,Active Shallow Crust,128.8979,89.9937,0.0,05/25/8210 +1.5406,44.52347,7148,10,8,20,33,10,4.45,5.0,fr,52768,142,2246028,1,1,Active Shallow Crust,0.0,89.98979,0.0,10/08/7148 +5.93338,43.55471,1584,1,24,15,3,16,3.55,15.0,fr,52769,31,2246884,1,1,Active Shallow Crust,240.0118,57.99761,0.0,01/24/1584 +5.93338,43.55471,8106,7,16,17,12,12,3.65,5.0,fr,52770,162,2246892,1,2,Active Shallow Crust,0.0,89.98698,0.0,07/16/8106 +5.93338,43.55471,6047,8,19,16,4,45,3.65,5.0,fr,52771,120,2246892,1,2,Active Shallow Crust,0.0,89.98698,0.0,08/19/6047 +5.93338,43.55471,9432,6,16,11,47,18,3.75,5.0,fr,52772,188,2246904,1,2,Active Shallow Crust,0.0,89.98839,0.0,06/16/9432 +5.93338,43.55471,9289,1,26,2,37,42,3.75,5.0,fr,52773,185,2246904,1,2,Active Shallow Crust,0.0,89.98839,0.0,01/26/9289 +5.93338,43.55471,7460,9,25,15,8,55,4.05,27.5,fr,52774,149,2246945,1,1,Active Shallow Crust,240.0056,58.00564,0.0,09/25/7460 +5.93338,43.55471,3571,7,31,7,47,24,4.25,5.0,fr,52775,71,2246964,1,1,Active Shallow Crust,0.0,89.9902,0.0,07/31/3571 +5.93338,43.55471,2258,6,14,4,37,1,4.25,15.0,fr,52776,45,2246965,1,1,Active Shallow Crust,0.0,89.9902,0.0,06/14/2258 +5.93338,43.55471,3795,4,23,11,15,0,4.45,5.0,fr,52777,75,2246988,1,1,Active Shallow Crust,0.0,89.98962,0.0,04/23/3795 +5.93338,43.55471,8031,3,16,4,22,32,5.25,5.0,fr,52778,160,2247084,1,1,Active Shallow Crust,0.0,89.98968,0.0,03/16/8031 +0.73216,42.96655,8148,4,1,8,57,55,3.55,5.0,fr,52779,162,2247360,1,4,Active Shallow Crust,0.0,89.98985,0.0,04/01/8148 +0.73216,42.96655,4873,1,18,8,7,38,3.55,5.0,fr,52780,97,2247360,1,4,Active Shallow Crust,0.0,89.98985,0.0,01/18/4873 +0.73216,42.96655,7544,9,27,8,47,40,3.55,5.0,fr,52781,150,2247360,1,4,Active Shallow Crust,0.0,89.98985,0.0,09/27/7544 +0.73216,42.96655,8062,2,18,7,34,29,3.55,5.0,fr,52782,161,2247360,1,4,Active Shallow Crust,0.0,89.98985,0.0,02/18/8062 +0.73216,42.96655,2945,2,1,7,38,21,3.55,15.0,fr,52783,58,2247361,1,1,Active Shallow Crust,0.0,89.98985,0.0,02/01/2945 +0.73216,42.96655,1235,3,17,1,0,32,3.55,27.5,fr,52784,24,2247362,1,1,Active Shallow Crust,0.0,89.98985,0.0,03/17/1235 +0.73216,42.96655,6903,1,20,17,25,52,3.55,5.0,fr,52785,138,2247369,1,2,Active Shallow Crust,128.8965,89.99355,0.0,01/20/6903 +0.73216,42.96655,2703,10,7,20,28,49,3.55,5.0,fr,52786,54,2247369,1,2,Active Shallow Crust,128.8965,89.99355,0.0,10/07/2703 +0.73216,42.96655,1288,3,6,21,40,55,3.65,5.0,fr,52787,25,2247372,1,5,Active Shallow Crust,0.0,89.99014,0.0,03/06/1288 +0.73216,42.96655,9490,4,13,14,35,38,3.65,5.0,fr,52788,189,2247372,1,5,Active Shallow Crust,0.0,89.99014,0.0,04/13/9490 +0.73216,42.96655,1233,9,28,20,51,41,3.65,5.0,fr,52789,24,2247372,1,5,Active Shallow Crust,0.0,89.99014,0.0,09/28/1233 +0.73216,42.96655,9142,5,7,15,48,52,3.65,5.0,fr,52790,182,2247372,1,5,Active Shallow Crust,0.0,89.99014,0.0,05/07/9142 +0.73216,42.96655,5800,11,28,15,7,6,3.65,5.0,fr,52791,115,2247372,1,5,Active Shallow Crust,0.0,89.99014,0.0,11/28/5800 +0.73216,42.96655,9778,6,24,23,24,4,3.65,5.0,fr,52792,195,2247375,1,1,Active Shallow Crust,240.0006,58.01288,0.0,06/24/9778 +0.73216,42.96655,3518,1,8,0,52,36,3.65,15.0,fr,52793,70,2247376,1,1,Active Shallow Crust,240.0006,58.01288,0.0,01/08/3518 +0.73216,42.96655,6267,3,12,5,44,45,3.65,15.0,fr,52794,125,2247379,1,1,Active Shallow Crust,0.0,89.99002,-90.0,03/12/6267 +0.73216,42.96655,490,7,28,9,39,17,3.65,5.0,fr,52795,9,2247381,1,1,Active Shallow Crust,128.9005,89.96353,0.0,07/28/0490 +0.73216,42.96655,6255,7,28,13,19,3,3.75,5.0,fr,52796,125,2247384,1,1,Active Shallow Crust,0.0,89.98975,0.0,07/28/6255 +0.73216,42.96655,6243,10,16,15,51,58,3.75,27.5,fr,52797,124,2247395,1,1,Active Shallow Crust,128.8969,89.96736,0.0,10/16/6243 +0.73216,42.96655,5257,12,3,20,1,30,3.85,27.5,fr,52798,105,2247398,1,2,Active Shallow Crust,0.0,89.9902,0.0,12/03/5257 +0.73216,42.96655,5986,12,7,1,31,34,3.85,27.5,fr,52799,119,2247398,1,2,Active Shallow Crust,0.0,89.9902,0.0,12/07/5986 +0.73216,42.96655,6759,1,6,7,24,35,3.85,5.0,fr,52800,135,2247399,1,1,Active Shallow Crust,240.0105,57.99771,0.0,01/06/6759 +0.73216,42.96655,3894,9,29,6,9,17,3.85,5.0,fr,52801,77,2247405,1,1,Active Shallow Crust,128.896,89.9938,0.0,09/29/3894 +0.73216,42.96655,224,1,13,20,26,16,3.95,5.0,fr,52802,4,2247408,1,2,Active Shallow Crust,0.0,89.9901,0.0,01/13/0224 +0.73216,42.96655,4197,7,14,17,51,39,3.95,5.0,fr,52803,83,2247408,1,2,Active Shallow Crust,0.0,89.9901,0.0,07/14/4197 +0.73216,42.96655,5004,12,13,17,11,14,3.95,15.0,fr,52804,100,2247409,1,3,Active Shallow Crust,0.0,89.9901,0.0,12/13/5004 +0.73216,42.96655,3894,12,27,0,46,49,3.95,15.0,fr,52805,77,2247409,1,3,Active Shallow Crust,0.0,89.9901,0.0,12/27/3894 +0.73216,42.96655,1599,2,8,7,58,2,3.95,15.0,fr,52806,31,2247409,1,3,Active Shallow Crust,0.0,89.9901,0.0,02/08/1599 +0.73216,42.96655,1166,9,19,5,22,25,3.95,15.0,fr,52807,23,2247418,1,1,Active Shallow Crust,128.9008,89.9936,0.0,09/19/1166 +0.73216,42.96655,408,12,14,1,45,28,4.05,5.0,fr,52808,8,2247420,1,3,Active Shallow Crust,0.0,89.99014,0.0,12/14/0408 +0.73216,42.96655,4924,12,27,21,59,27,4.05,5.0,fr,52809,98,2247420,1,3,Active Shallow Crust,0.0,89.99014,0.0,12/27/4924 +0.73216,42.96655,8318,9,25,19,36,17,4.05,5.0,fr,52810,166,2247420,1,3,Active Shallow Crust,0.0,89.99014,0.0,09/25/8318 +0.73216,42.96655,4543,9,5,13,46,44,4.05,27.5,fr,52811,90,2247422,1,1,Active Shallow Crust,0.0,89.99014,0.0,09/05/4543 +0.73216,42.96655,965,4,18,2,37,19,4.15,5.0,fr,52812,19,2247432,1,1,Active Shallow Crust,0.0,89.98983,0.0,04/18/0965 +0.73216,42.96655,9790,6,4,8,12,23,4.25,5.0,fr,52813,195,2247444,1,1,Active Shallow Crust,0.0,89.99011,0.0,06/04/9790 +0.73216,42.96655,1635,12,23,2,47,45,4.25,5.0,fr,52814,32,2247450,1,1,Active Shallow Crust,0.0,89.99,-90.0,12/23/1635 +0.73216,42.96655,5430,2,1,7,33,28,4.25,15.0,fr,52815,108,2247454,1,1,Active Shallow Crust,128.8948,89.98096,0.0,02/01/5430 +0.73216,42.96655,9032,3,1,23,56,43,4.45,5.0,fr,52816,180,2247474,1,1,Active Shallow Crust,0.0,89.99007,-90.0,03/01/9032 +0.73216,42.96655,6014,6,28,14,36,14,5.05,15.0,fr,52817,120,2247550,1,1,Active Shallow Crust,128.8869,89.99045,0.0,06/28/6014 +6.10585,50.14937,2604,1,9,4,39,26,3.65,15.0,fr,52818,52,2248333,1,1,Active Shallow Crust,0.0,89.98848,0.0,01/09/2604 +6.10585,50.14937,1754,7,19,5,9,3,3.75,5.0,fr,52819,35,2248344,1,1,Active Shallow Crust,0.0,89.98973,0.0,07/19/1754 +6.10585,50.14937,2109,2,1,14,58,40,3.75,5.0,fr,52820,42,2248350,1,1,Active Shallow Crust,0.0,89.98962,-90.0,02/01/2109 +6.10585,50.14937,4220,8,15,20,37,24,4.35,15.0,fr,52821,84,2248423,1,1,Active Shallow Crust,0.0,89.98959,-90.0,08/15/4220 +6.10585,50.14937,3424,5,13,11,50,58,4.45,5.0,fr,52822,68,2248428,1,2,Active Shallow Crust,0.0,89.99083,0.0,05/13/3424 +6.10585,50.14937,8846,7,23,19,20,43,4.45,5.0,fr,52823,176,2248428,1,2,Active Shallow Crust,0.0,89.99083,0.0,07/23/8846 +6.10585,50.14937,2700,8,29,2,20,25,4.85,5.0,fr,52824,53,2248482,1,1,Active Shallow Crust,0.0,89.98975,-90.0,08/29/2700 +4.74884,48.71898,4812,3,7,23,48,47,3.95,5.0,fr,52825,96,2248848,1,1,Active Shallow Crust,0.0,89.99161,0.0,03/07/4812 +2.21775,43.68426,8320,6,14,5,52,19,3.55,5.0,fr,52826,166,2249280,1,1,Active Shallow Crust,0.0,89.98906,0.0,06/14/8320 +2.21775,43.68426,2325,12,30,16,6,20,3.65,5.0,fr,52827,46,2249292,1,1,Active Shallow Crust,0.0,89.99025,0.0,12/30/2325 +2.21775,43.68426,5123,9,2,23,15,50,3.75,15.0,fr,52828,102,2249305,1,1,Active Shallow Crust,0.0,89.99131,0.0,09/02/5123 +2.21775,43.68426,7071,4,13,19,3,44,4.05,27.5,fr,52829,141,2249342,1,1,Active Shallow Crust,0.0,89.98975,0.0,04/13/7071 +2.21775,43.68426,3685,10,8,1,18,13,4.15,5.0,fr,52830,73,2249352,1,1,Active Shallow Crust,0.0,89.99086,0.0,10/08/3685 +2.21775,43.68426,1562,7,28,4,16,15,4.25,5.0,fr,52831,31,2249364,1,1,Active Shallow Crust,0.0,89.99023,0.0,07/28/1562 +2.21775,43.68426,6264,1,31,1,31,43,4.85,5.0,fr,52832,125,2249436,1,1,Active Shallow Crust,0.0,89.9902,0.0,01/31/6264 +2.21775,43.68426,2196,12,12,1,53,4,4.85,15.0,fr,52833,43,2249437,1,1,Active Shallow Crust,0.0,89.9902,0.0,12/12/2196 +4.72514,43.79451,7493,7,13,5,30,11,3.55,5.0,fr,52834,149,2249760,1,2,Active Shallow Crust,0.0,89.99272,0.0,07/13/7493 +4.72514,43.79451,5431,9,3,4,50,14,3.55,5.0,fr,52835,108,2249760,1,2,Active Shallow Crust,0.0,89.99272,0.0,09/03/5431 +4.72514,43.79451,2140,10,31,9,48,56,3.55,5.0,fr,52836,42,2249766,1,1,Active Shallow Crust,0.0,89.99264,-90.0,10/31/2140 +4.72514,43.79451,634,8,29,7,52,49,3.65,5.0,fr,52837,12,2249772,1,2,Active Shallow Crust,0.0,89.98702,0.0,08/29/0634 +4.72514,43.79451,5670,4,19,9,4,3,3.65,5.0,fr,52838,113,2249772,1,2,Active Shallow Crust,0.0,89.98702,0.0,04/19/5670 +4.72514,43.79451,1015,3,30,2,29,28,3.65,15.0,fr,52839,20,2249773,1,1,Active Shallow Crust,0.0,89.98702,0.0,03/30/1015 +4.72514,43.79451,5597,7,12,23,10,18,3.65,5.0,fr,52840,111,2249775,1,1,Active Shallow Crust,240.0007,58.0132,0.0,07/12/5597 +4.72514,43.79451,579,12,21,23,47,9,3.65,15.0,fr,52841,11,2249776,1,1,Active Shallow Crust,240.0007,58.0132,0.0,12/21/0579 +4.72514,43.79451,9234,1,30,3,9,14,3.75,5.0,fr,52842,184,2249784,1,2,Active Shallow Crust,0.0,89.98843,0.0,01/30/9234 +4.72514,43.79451,7356,8,2,7,18,0,3.75,5.0,fr,52843,147,2249784,1,2,Active Shallow Crust,0.0,89.98843,0.0,08/02/7356 +4.72514,43.79451,6681,12,20,13,32,27,3.85,5.0,fr,52844,133,2249796,1,1,Active Shallow Crust,0.0,89.98969,0.0,12/20/6681 +4.72514,43.79451,6868,1,18,3,1,59,3.85,15.0,fr,52845,137,2249797,1,1,Active Shallow Crust,0.0,89.98969,0.0,01/18/6868 +4.72514,43.79451,7170,7,16,11,53,26,3.85,27.5,fr,52846,143,2249798,1,1,Active Shallow Crust,0.0,89.98969,0.0,07/16/7170 +4.72514,43.79451,3219,6,28,19,34,35,4.05,5.0,fr,52847,64,2249820,1,1,Active Shallow Crust,0.0,89.99181,0.0,06/28/3219 +4.72514,43.79451,2818,10,9,19,41,38,4.05,15.0,fr,52848,56,2249827,1,1,Active Shallow Crust,0.0,89.99172,-90.0,10/09/2818 +4.72514,43.79451,2177,8,22,5,9,6,4.15,15.0,fr,52849,43,2249833,1,1,Active Shallow Crust,0.0,89.98905,0.0,08/22/2177 +4.72514,43.79451,1344,6,17,13,31,43,4.25,5.0,fr,52850,26,2249844,1,1,Active Shallow Crust,0.0,89.99024,0.0,06/17/1344 +4.72514,43.79451,2716,5,25,11,47,15,4.25,5.0,fr,52851,54,2249847,1,1,Active Shallow Crust,240.0077,57.99389,0.0,05/25/2716 +4.72514,43.79451,7742,9,24,21,28,20,4.25,27.5,fr,52852,154,2249849,1,1,Active Shallow Crust,240.0077,57.99389,0.0,09/24/7742 +4.72514,43.79451,1568,4,18,16,15,52,4.25,15.0,fr,52853,31,2249854,1,1,Active Shallow Crust,128.8949,89.98084,0.0,04/18/1568 +4.72514,43.79451,3169,7,19,19,51,47,4.55,5.0,fr,52854,63,2249886,1,1,Active Shallow Crust,0.0,89.99068,-90.0,07/19/3169 +4.72514,43.79451,510,6,7,2,23,21,4.75,27.5,fr,52855,10,2249909,1,1,Active Shallow Crust,240.0064,58.00431,0.0,06/07/0510 +4.72514,43.79451,6951,10,4,8,9,24,4.95,5.0,fr,52856,139,2249931,1,1,Active Shallow Crust,240.0107,58.00433,0.0,10/04/6951 +4.72514,43.79451,5716,6,8,15,11,49,5.05,5.0,fr,52857,114,2249949,1,1,Active Shallow Crust,128.8867,89.99034,0.0,06/08/5716 +0.12586,42.49888,2147,11,1,9,39,59,3.55,5.0,fr,52858,42,2250243,1,1,Active Shallow Crust,240.0119,57.99807,0.0,11/01/2147 +0.12586,42.49888,1169,12,10,8,51,34,3.65,5.0,fr,52859,23,2250252,1,1,Active Shallow Crust,0.0,89.99006,0.0,12/10/1169 +0.12586,42.49888,7050,5,4,16,40,0,3.65,5.0,fr,52860,140,2250261,1,1,Active Shallow Crust,128.9008,89.9635,0.0,05/04/7050 +0.12586,42.49888,5245,2,17,1,2,55,3.75,5.0,fr,52861,104,2250264,1,1,Active Shallow Crust,0.0,89.99004,0.0,02/17/5245 +0.12586,42.49888,3374,4,7,1,54,29,3.75,27.5,fr,52862,67,2250266,1,1,Active Shallow Crust,0.0,89.99004,0.0,04/07/3374 +0.12586,42.49888,7308,1,25,21,27,21,4.15,15.0,fr,52863,146,2250319,1,1,Active Shallow Crust,0.0,89.98999,-90.0,01/25/7308 +0.12586,42.49888,786,9,1,1,30,34,4.25,5.0,fr,52864,15,2250324,1,1,Active Shallow Crust,0.0,89.99004,0.0,09/01/0786 +0.12586,42.49888,4388,9,16,15,39,4,4.35,5.0,fr,52865,87,2250336,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/16/4388 +0.12586,42.49888,6722,8,24,20,14,11,4.85,5.0,fr,52866,134,2250396,1,1,Active Shallow Crust,0.0,89.99001,0.0,08/24/6722 +-5.86601,49.55772,7607,4,10,22,51,37,3.85,5.0,fr,52867,152,2250759,1,1,Active Shallow Crust,240.0118,57.99818,0.0,04/10/7607 +-0.39695,46.3984,1816,5,11,0,19,59,3.55,5.0,fr,52868,36,2251200,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/11/1816 +-0.39695,46.3984,7611,1,6,21,53,48,3.65,15.0,fr,52869,152,2251213,1,1,Active Shallow Crust,0.0,89.98993,0.0,01/06/7611 +-0.39695,46.3984,1731,4,22,7,51,2,3.65,5.0,fr,52870,34,2251221,1,1,Active Shallow Crust,128.9004,89.96352,0.0,04/22/1731 +-0.39695,46.3984,9388,4,24,6,17,11,3.75,5.0,fr,52871,187,2251224,1,4,Active Shallow Crust,0.0,89.98999,0.0,04/24/9388 +-0.39695,46.3984,338,5,31,9,18,42,3.75,5.0,fr,52872,6,2251224,1,4,Active Shallow Crust,0.0,89.98999,0.0,05/31/0338 +-0.39695,46.3984,5152,2,1,23,47,35,3.75,5.0,fr,52873,103,2251224,1,4,Active Shallow Crust,0.0,89.98999,0.0,02/01/5152 +-0.39695,46.3984,273,2,9,11,48,31,3.75,5.0,fr,52874,5,2251224,1,4,Active Shallow Crust,0.0,89.98999,0.0,02/09/0273 +-0.39695,46.3984,2469,12,11,4,29,33,3.75,15.0,fr,52875,49,2251225,1,1,Active Shallow Crust,0.0,89.98999,0.0,12/11/2469 +-0.39695,46.3984,9659,2,6,13,39,19,3.75,5.0,fr,52876,193,2251233,1,1,Active Shallow Crust,128.8966,89.96736,0.0,02/06/9659 +-0.39695,46.3984,1887,11,19,16,8,39,4.05,5.0,fr,52877,37,2251266,1,1,Active Shallow Crust,0.0,89.99011,-90.0,11/19/1887 +-0.39695,46.3984,4776,8,13,2,48,21,4.55,5.0,fr,52878,95,2251320,1,1,Active Shallow Crust,0.0,89.98997,0.0,08/13/4776 +4.57343,48.44197,762,12,17,20,11,41,3.65,15.0,fr,52879,15,2252173,1,1,Active Shallow Crust,0.0,89.98808,0.0,12/17/0762 +4.57343,48.44197,9754,2,14,11,4,29,4.15,15.0,fr,52880,195,2252233,1,1,Active Shallow Crust,0.0,89.98994,0.0,02/14/9754 +3.93401,49.97704,8235,6,20,15,58,14,4.35,5.0,fr,52881,164,2252736,1,1,Active Shallow Crust,0.0,89.98967,0.0,06/20/8235 +3.93401,49.97704,8292,2,21,14,37,6,4.55,5.0,fr,52882,165,2252760,1,1,Active Shallow Crust,0.0,89.98975,0.0,02/21/8292 +2.98606,42.3419,862,8,4,4,45,46,3.55,5.0,fr,52883,17,2253120,1,2,Active Shallow Crust,0.0,89.98882,0.0,08/04/0862 +2.98606,42.3419,9284,1,27,12,34,15,3.55,5.0,fr,52884,185,2253120,1,2,Active Shallow Crust,0.0,89.98882,0.0,01/27/9284 +2.98606,42.3419,4333,2,7,8,27,15,3.65,5.0,fr,52885,86,2253132,1,2,Active Shallow Crust,0.0,89.99004,0.0,02/07/4333 +2.98606,42.3419,9792,5,15,2,33,57,3.65,5.0,fr,52886,195,2253132,1,2,Active Shallow Crust,0.0,89.99004,0.0,05/15/9792 +2.98606,42.3419,1129,6,22,4,50,27,3.65,15.0,fr,52887,22,2253133,1,2,Active Shallow Crust,0.0,89.99004,0.0,06/22/1129 +2.98606,42.3419,9963,9,29,1,19,47,3.65,15.0,fr,52888,199,2253133,1,2,Active Shallow Crust,0.0,89.99004,0.0,09/29/9963 +2.98606,42.3419,9747,6,10,1,20,49,3.65,27.5,fr,52889,194,2253134,1,1,Active Shallow Crust,0.0,89.99004,0.0,06/10/9747 +2.98606,42.3419,2235,8,5,20,43,1,3.65,5.0,fr,52890,44,2253135,1,1,Active Shallow Crust,240.0011,58.01303,0.0,08/05/2235 +2.98606,42.3419,8063,12,13,12,55,25,3.65,5.0,fr,52891,161,2253138,1,1,Active Shallow Crust,0.0,89.98992,-90.0,12/13/8063 +2.98606,42.3419,9230,7,15,13,12,26,3.75,5.0,fr,52892,184,2253144,1,1,Active Shallow Crust,0.0,89.99112,0.0,07/15/9230 +2.98606,42.3419,6815,1,3,17,44,20,3.75,5.0,fr,52893,136,2253150,1,1,Active Shallow Crust,0.0,89.99102,-90.0,01/03/6815 +2.98606,42.3419,4827,2,25,23,8,32,3.85,5.0,fr,52894,96,2253156,1,1,Active Shallow Crust,0.0,89.98945,0.0,02/25/4827 +2.98606,42.3419,7026,4,19,12,40,0,3.85,5.0,fr,52895,140,2253165,1,1,Active Shallow Crust,128.8958,89.99341,0.0,04/19/7026 +2.98606,42.3419,1808,12,3,2,36,30,4.05,5.0,fr,52896,36,2253180,1,1,Active Shallow Crust,0.0,89.98952,0.0,12/03/1808 +2.98606,42.3419,9656,1,19,2,48,42,4.05,15.0,fr,52897,193,2253181,1,1,Active Shallow Crust,0.0,89.98952,0.0,01/19/9656 +2.98606,42.3419,5804,8,12,12,11,11,4.05,5.0,fr,52898,116,2253183,1,1,Active Shallow Crust,240.0056,58.00552,0.0,08/12/5804 +2.98606,42.3419,6013,4,14,13,23,17,4.05,15.0,fr,52899,120,2253187,1,1,Active Shallow Crust,0.0,89.9894,-90.0,04/14/6013 +2.98606,42.3419,8081,7,8,17,54,43,4.05,5.0,fr,52900,161,2253189,1,1,Active Shallow Crust,128.8913,89.99371,0.0,07/08/8081 +-1.47367,44.67006,8554,7,18,3,25,18,3.65,15.0,fr,52901,171,2253613,1,1,Active Shallow Crust,0.0,89.99041,0.0,07/18/8554 +4.10994,50.25004,8246,8,4,11,54,21,3.55,5.0,fr,52902,164,2254560,1,3,Active Shallow Crust,0.0,89.98711,0.0,08/04/8246 +4.10994,50.25004,9933,9,29,6,6,10,3.55,5.0,fr,52903,198,2254560,1,3,Active Shallow Crust,0.0,89.98711,0.0,09/29/9933 +4.10994,50.25004,3278,9,24,4,9,4,3.55,5.0,fr,52904,65,2254560,1,3,Active Shallow Crust,0.0,89.98711,0.0,09/24/3278 +4.10994,50.25004,4436,7,11,2,35,51,3.55,5.0,fr,52905,88,2254563,1,1,Active Shallow Crust,240.0124,57.99783,0.0,07/11/4436 +4.10994,50.25004,6070,9,30,7,11,56,3.55,27.5,fr,52906,121,2254565,1,1,Active Shallow Crust,240.0124,57.99773,0.0,09/30/6070 +4.10994,50.25004,1818,5,17,23,16,56,3.65,5.0,fr,52907,36,2254572,1,1,Active Shallow Crust,0.0,89.9885,0.0,05/17/1818 +4.10994,50.25004,8387,10,19,23,57,55,3.65,27.5,fr,52908,167,2254574,1,1,Active Shallow Crust,0.0,89.9885,0.0,10/19/8387 +4.10994,50.25004,6037,4,4,3,39,56,3.75,5.0,fr,52909,120,2254584,1,3,Active Shallow Crust,0.0,89.98975,0.0,04/04/6037 +4.10994,50.25004,3345,3,6,2,45,5,3.75,5.0,fr,52910,66,2254584,1,3,Active Shallow Crust,0.0,89.98975,0.0,03/06/3345 +4.10994,50.25004,4516,6,2,7,49,23,3.75,5.0,fr,52911,90,2254584,1,3,Active Shallow Crust,0.0,89.98975,0.0,06/02/4516 +4.10994,50.25004,2445,10,7,5,34,50,3.75,5.0,fr,52912,48,2254587,1,1,Active Shallow Crust,240.0086,58.01855,0.0,10/07/2445 +4.10994,50.25004,5226,11,28,6,6,55,3.85,5.0,fr,52913,104,2254596,1,1,Active Shallow Crust,0.0,89.99087,0.0,11/28/5226 +4.10994,50.25004,8991,9,19,13,5,16,3.85,5.0,fr,52914,179,2254602,1,1,Active Shallow Crust,0.0,89.99076,-90.0,09/19/8991 +4.10994,50.25004,2375,4,14,16,33,10,3.95,5.0,fr,52915,47,2254608,1,2,Active Shallow Crust,0.0,89.99186,0.0,04/14/2375 +4.10994,50.25004,8747,2,16,9,33,32,3.95,5.0,fr,52916,174,2254608,1,2,Active Shallow Crust,0.0,89.99186,0.0,02/16/8747 +4.10994,50.25004,1006,11,8,11,0,20,3.95,5.0,fr,52917,20,2254611,1,1,Active Shallow Crust,240.0194,58.00555,0.0,11/08/1006 +4.10994,50.25004,2801,3,18,5,24,49,3.95,27.5,fr,52918,56,2254613,1,1,Active Shallow Crust,240.0194,58.00555,0.0,03/18/2801 +4.10994,50.25004,1392,3,9,2,49,19,4.05,5.0,fr,52919,27,2254620,1,1,Active Shallow Crust,0.0,89.98912,0.0,03/09/1392 +4.10994,50.25004,3683,2,4,6,53,2,4.15,5.0,fr,52920,73,2254632,1,2,Active Shallow Crust,0.0,89.9903,0.0,02/04/3683 +4.10994,50.25004,9715,9,14,2,20,36,4.15,5.0,fr,52921,194,2254632,1,2,Active Shallow Crust,0.0,89.9903,0.0,09/14/9715 +4.10994,50.25004,1871,4,24,1,26,27,4.15,15.0,fr,52922,37,2254633,1,1,Active Shallow Crust,0.0,89.9903,0.0,04/24/1871 +4.10994,50.25004,9765,3,20,18,28,33,4.15,5.0,fr,52923,195,2254638,1,1,Active Shallow Crust,0.0,89.99019,-90.0,03/20/9765 +4.10994,50.25004,7698,10,22,9,58,58,4.25,5.0,fr,52924,153,2254644,1,1,Active Shallow Crust,0.0,89.99136,0.0,10/22/7698 +4.10994,50.25004,8639,6,24,22,35,45,4.35,27.5,fr,52925,172,2254658,1,1,Active Shallow Crust,0.0,89.98973,0.0,06/24/8639 +4.10994,50.25004,4918,8,21,16,58,12,4.45,5.0,fr,52926,98,2254668,1,1,Active Shallow Crust,0.0,89.99084,0.0,08/21/4918 +4.10994,50.25004,3333,11,22,8,11,1,4.75,15.0,fr,52927,66,2254705,1,1,Active Shallow Crust,0.0,89.99028,0.0,11/22/3333 +4.10994,50.25004,2722,8,18,7,29,4,4.75,5.0,fr,52928,54,2254710,1,1,Active Shallow Crust,0.0,89.99017,-90.0,08/18/2722 +4.10994,50.25004,5002,10,20,8,3,31,5.65,5.0,fr,52929,100,2254821,1,1,Active Shallow Crust,128.8717,89.99043,0.0,10/20/5002 +0.10692,48.4434,1576,6,5,2,8,3,3.55,15.0,fr,52930,31,2255521,1,1,Active Shallow Crust,0.0,89.98997,0.0,06/05/1576 +0.10692,48.4434,9362,5,1,8,45,41,3.65,5.0,fr,52931,187,2255535,1,1,Active Shallow Crust,240.0013,58.01293,0.0,05/01/9362 +0.10692,48.4434,6103,11,23,11,19,21,3.75,5.0,fr,52932,122,2255544,1,1,Active Shallow Crust,0.0,89.99004,0.0,11/23/6103 +0.10692,48.4434,4548,7,6,2,36,17,4.15,5.0,fr,52933,90,2255595,1,1,Active Shallow Crust,240.0088,57.99738,0.0,07/06/4548 +0.10692,48.4434,9702,3,20,4,46,25,4.25,5.0,fr,52934,194,2255604,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/20/9702 +4.03937,48.8695,8079,12,4,20,42,26,3.65,5.0,fr,52935,161,2256012,1,1,Active Shallow Crust,0.0,89.98817,0.0,12/04/8079 +3.12478,41.55721,8906,10,19,0,16,8,3.55,5.0,fr,52936,178,2256480,1,3,Active Shallow Crust,0.0,89.98868,0.0,10/19/8906 +3.12478,41.55721,8994,2,28,1,55,25,3.55,5.0,fr,52937,179,2256480,1,3,Active Shallow Crust,0.0,89.98868,0.0,02/28/8994 +3.12478,41.55721,190,8,17,10,57,43,3.55,5.0,fr,52938,3,2256480,1,3,Active Shallow Crust,0.0,89.98868,0.0,08/17/0190 +3.12478,41.55721,9950,11,6,21,34,7,3.65,5.0,fr,52939,198,2256492,1,1,Active Shallow Crust,0.0,89.98991,0.0,11/06/9950 +3.12478,41.55721,3379,12,5,4,55,0,3.65,5.0,fr,52940,67,2256495,1,1,Active Shallow Crust,240.0007,58.01314,0.0,12/05/3379 +3.12478,41.55721,8003,9,6,15,6,50,3.65,5.0,fr,52941,160,2256498,1,1,Active Shallow Crust,0.0,89.98979,-90.0,09/06/8003 +3.12478,41.55721,1663,12,31,19,46,29,3.75,5.0,fr,52942,33,2256510,1,1,Active Shallow Crust,0.0,89.99091,-90.0,12/31/1663 +3.12478,41.55721,9482,6,26,2,37,0,3.85,5.0,fr,52943,189,2256516,1,2,Active Shallow Crust,0.0,89.98932,0.0,06/26/9482 +3.12478,41.55721,6875,4,1,0,52,37,3.85,5.0,fr,52944,137,2256516,1,2,Active Shallow Crust,0.0,89.98932,0.0,04/01/6875 +3.12478,41.55721,8613,6,18,8,35,57,3.85,15.0,fr,52945,172,2256526,1,1,Active Shallow Crust,128.8963,89.99332,0.0,06/18/8613 +3.12478,41.55721,3143,12,31,0,13,53,3.95,5.0,fr,52946,62,2256528,1,1,Active Shallow Crust,0.0,89.99048,0.0,12/31/3143 +3.12478,41.55721,5601,7,15,22,16,13,3.95,15.0,fr,52947,112,2256529,1,1,Active Shallow Crust,0.0,89.99048,0.0,07/15/5601 +3.12478,41.55721,2434,12,16,4,23,48,3.95,15.0,fr,52948,48,2256535,1,1,Active Shallow Crust,0.0,89.99036,-90.0,12/16/2434 +3.12478,41.55721,8121,8,23,17,5,35,4.05,5.0,fr,52949,162,2256540,1,1,Active Shallow Crust,0.0,89.9894,0.0,08/23/8121 +3.12478,41.55721,3552,3,9,3,49,16,4.05,5.0,fr,52950,71,2256549,1,1,Active Shallow Crust,128.8909,89.99364,0.0,03/09/3552 +3.12478,41.55721,5430,12,22,9,42,10,4.25,5.0,fr,52951,108,2256564,1,2,Active Shallow Crust,0.0,89.98989,0.0,12/22/5430 +3.12478,41.55721,8973,6,22,14,50,17,4.25,5.0,fr,52952,179,2256564,1,2,Active Shallow Crust,0.0,89.98989,0.0,06/22/8973 +3.12478,41.55721,7298,10,5,1,24,35,4.25,15.0,fr,52953,145,2256565,1,2,Active Shallow Crust,0.0,89.98989,0.0,10/05/7298 +3.12478,41.55721,1964,6,11,22,21,27,4.25,15.0,fr,52954,39,2256565,1,2,Active Shallow Crust,0.0,89.98989,0.0,06/11/1964 +3.12478,41.55721,7430,10,5,3,23,14,4.35,5.0,fr,52955,148,2256576,1,1,Active Shallow Crust,0.0,89.98949,0.0,10/05/7430 +3.12478,41.55721,6377,7,6,7,48,4,4.55,5.0,fr,52956,127,2256609,1,1,Active Shallow Crust,128.8951,89.98566,0.0,07/06/6377 +3.12478,41.55721,8298,4,2,0,24,58,4.75,15.0,fr,52957,165,2256625,1,1,Active Shallow Crust,0.0,89.98957,0.0,04/02/8298 +3.12478,41.55721,6786,6,10,8,33,53,4.85,5.0,fr,52958,135,2256636,1,1,Active Shallow Crust,0.0,89.98986,0.0,06/10/6786 +3.12478,41.55721,3584,2,22,7,38,52,6.15,27.5,fr,52959,71,2256794,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/22/3584 +3.1263,45.01117,5933,8,4,14,12,14,3.65,5.0,fr,52960,118,2256972,1,1,Active Shallow Crust,0.0,89.99047,0.0,08/04/5933 +3.1263,45.01117,1015,3,14,6,27,22,3.75,15.0,fr,52961,20,2256985,1,2,Active Shallow Crust,0.0,89.98868,0.0,03/14/1015 +3.1263,45.01117,5231,9,3,13,23,23,3.75,15.0,fr,52962,104,2256985,1,2,Active Shallow Crust,0.0,89.98868,0.0,09/03/5231 +3.1263,45.01117,6438,8,13,12,46,6,3.85,15.0,fr,52963,128,2256997,1,1,Active Shallow Crust,0.0,89.98991,0.0,08/13/6438 +3.1263,45.01117,5389,12,23,23,5,47,3.95,15.0,fr,52964,107,2257009,1,1,Active Shallow Crust,0.0,89.991,0.0,12/23/5389 +3.1263,45.01117,6273,6,30,19,56,25,4.05,5.0,fr,52965,125,2257029,1,1,Active Shallow Crust,128.8912,89.99299,0.0,06/30/6273 +3.1263,45.01117,6850,10,15,22,36,50,4.05,15.0,fr,52966,136,2257030,1,1,Active Shallow Crust,128.8912,89.99299,0.0,10/15/6850 +3.1263,45.01117,9069,2,16,4,37,1,4.15,5.0,fr,52967,181,2257032,1,1,Active Shallow Crust,0.0,89.98928,0.0,02/16/9069 +3.1263,45.01117,4101,8,5,6,43,47,4.25,5.0,fr,52968,82,2257044,1,1,Active Shallow Crust,0.0,89.99045,0.0,08/05/4101 +3.1263,45.01117,8534,11,10,4,36,12,5.45,15.0,fr,52969,170,2257192,1,1,Active Shallow Crust,240.0277,57.99825,0.0,11/10/8534 +0.56763,51.74361,6218,6,3,1,8,25,3.65,5.0,fr,52970,124,2257461,1,1,Active Shallow Crust,128.8999,89.96351,0.0,06/03/6218 +0.56763,51.74361,9486,11,16,9,22,21,4.35,5.0,fr,52971,189,2257536,1,1,Active Shallow Crust,0.0,89.99006,0.0,11/16/9486 +0.56763,51.74361,1757,1,8,12,40,15,4.45,15.0,fr,52972,35,2257549,1,2,Active Shallow Crust,0.0,89.99003,0.0,01/08/1757 +0.56763,51.74361,7172,6,16,20,46,16,4.45,15.0,fr,52973,143,2257549,1,2,Active Shallow Crust,0.0,89.99003,0.0,06/16/7172 +0.56763,51.74361,43,5,5,2,10,48,4.85,5.0,fr,52974,0,2257596,1,1,Active Shallow Crust,0.0,89.99004,0.0,05/05/0043 +3.64685,43.90554,2988,6,11,20,43,8,3.55,5.0,fr,52975,59,2257920,1,1,Active Shallow Crust,0.0,89.98911,0.0,06/11/2988 +3.64685,43.90554,591,1,19,13,34,50,3.55,27.5,fr,52976,11,2257922,1,1,Active Shallow Crust,0.0,89.98911,0.0,01/19/0591 +3.64685,43.90554,7733,4,29,20,18,50,3.65,5.0,fr,52977,154,2257932,1,1,Active Shallow Crust,0.0,89.99029,0.0,04/29/7733 +3.64685,43.90554,7984,7,16,15,27,2,3.75,15.0,fr,52978,159,2257945,1,2,Active Shallow Crust,0.0,89.99134,0.0,07/16/7984 +3.64685,43.90554,7648,5,14,21,42,21,3.75,15.0,fr,52979,152,2257945,1,2,Active Shallow Crust,0.0,89.99134,0.0,05/14/7648 +3.64685,43.90554,1058,6,11,7,42,52,3.95,27.5,fr,52980,21,2257970,1,1,Active Shallow Crust,0.0,89.99083,0.0,06/11/1058 +3.64685,43.90554,5468,2,14,23,18,51,4.15,15.0,fr,52981,109,2257993,1,1,Active Shallow Crust,0.0,89.9909,0.0,02/14/5468 +3.64685,43.90554,7593,8,16,13,59,29,4.25,5.0,fr,52982,151,2258004,1,1,Active Shallow Crust,0.0,89.99026,0.0,08/16/7593 +3.64685,43.90554,8342,10,25,17,29,8,4.75,5.0,fr,52983,166,2258064,1,1,Active Shallow Crust,0.0,89.98996,0.0,10/25/8342 +3.64685,43.90554,3521,4,18,5,7,9,4.75,27.5,fr,52984,70,2258066,1,1,Active Shallow Crust,0.0,89.98996,0.0,04/18/3521 +3.50759,52.83447,1780,6,3,23,31,18,3.85,5.0,fr,52985,35,2258436,1,1,Active Shallow Crust,0.0,89.98922,0.0,06/03/1780 +-2.9796,43.95636,4757,3,3,1,4,55,3.65,15.0,fr,52986,95,2258896,1,1,Active Shallow Crust,240.0006,58.01283,0.0,03/03/4757 +2.53412,52.0594,2495,9,1,11,4,15,3.55,5.0,fr,52987,49,2259840,1,1,Active Shallow Crust,0.0,89.9907,0.0,09/01/2495 +2.53412,52.0594,1444,8,12,4,33,53,3.55,5.0,fr,52988,28,2259843,1,1,Active Shallow Crust,240.0124,57.99831,0.0,08/12/1444 +2.53412,52.0594,6936,6,7,1,25,45,3.85,27.5,fr,52989,138,2259884,1,1,Active Shallow Crust,0.0,89.9889,-90.0,06/07/6936 +-2.34852,47.31739,4747,9,11,9,49,25,3.55,5.0,fr,52990,94,2260320,1,1,Active Shallow Crust,0.0,89.98975,0.0,09/11/4747 +-2.34852,47.31739,6024,10,13,1,43,11,3.65,5.0,fr,52991,120,2260341,1,1,Active Shallow Crust,128.9006,89.96354,0.0,10/13/6024 +-2.34852,47.31739,6469,9,14,12,33,6,3.75,5.0,fr,52992,129,2260344,1,3,Active Shallow Crust,0.0,89.98914,0.0,09/14/6469 +-2.34852,47.31739,3594,2,22,2,12,43,3.75,5.0,fr,52993,71,2260344,1,3,Active Shallow Crust,0.0,89.98914,0.0,02/22/3594 +-2.34852,47.31739,5247,9,12,4,20,17,3.75,5.0,fr,52994,104,2260344,1,3,Active Shallow Crust,0.0,89.98914,0.0,09/12/5247 +-2.34852,47.31739,7616,8,6,21,36,34,3.75,5.0,fr,52995,152,2260347,1,1,Active Shallow Crust,240.0086,58.01728,0.0,08/06/7616 +-2.34852,47.31739,8418,2,6,20,46,10,3.85,5.0,fr,52996,168,2260356,1,1,Active Shallow Crust,0.0,89.99032,0.0,02/06/8418 +-2.34852,47.31739,2921,9,7,23,0,18,3.85,27.5,fr,52997,58,2260364,1,1,Active Shallow Crust,0.0,89.99021,-90.0,09/07/2921 +-2.34852,47.31739,858,5,6,6,48,29,3.95,5.0,fr,52998,17,2260368,1,2,Active Shallow Crust,0.0,89.98922,0.0,05/06/0858 +-2.34852,47.31739,297,12,28,15,15,59,3.95,5.0,fr,52999,5,2260368,1,2,Active Shallow Crust,0.0,89.98922,0.0,12/28/0297 +-2.34852,47.31739,7303,9,9,20,35,14,4.05,5.0,fr,53000,146,2260380,1,2,Active Shallow Crust,0.0,89.99039,0.0,09/09/7303 +-2.34852,47.31739,5707,3,21,7,0,8,4.05,5.0,fr,53001,114,2260380,1,2,Active Shallow Crust,0.0,89.99039,0.0,03/21/5707 +-2.34852,47.31739,5099,4,30,3,52,8,4.25,5.0,fr,53002,101,2260404,1,1,Active Shallow Crust,0.0,89.98931,0.0,04/30/5099 +-2.34852,47.31739,580,1,28,3,10,51,4.25,27.5,fr,53003,11,2260406,1,1,Active Shallow Crust,0.0,89.98931,0.0,01/28/0580 +-2.34852,47.31739,6075,11,27,5,31,16,4.65,27.5,fr,53004,121,2260454,1,1,Active Shallow Crust,0.0,89.99036,0.0,11/27/6075 +-2.34852,47.31739,1231,5,17,4,2,52,5.85,5.0,fr,53005,24,2260605,1,1,Active Shallow Crust,128.8665,89.99151,0.0,05/17/1231 +7.62595,47.81105,1575,7,17,11,22,55,3.55,5.0,fr,53006,31,2260800,1,4,Active Shallow Crust,0.0,89.99323,0.0,07/17/1575 +7.62595,47.81105,2704,7,15,5,40,17,3.55,5.0,fr,53007,54,2260800,1,4,Active Shallow Crust,0.0,89.99323,0.0,07/15/2704 +7.62595,47.81105,3066,6,1,1,20,52,3.55,5.0,fr,53008,61,2260800,1,4,Active Shallow Crust,0.0,89.99323,0.0,06/01/3066 +7.62595,47.81105,7941,6,14,0,26,57,3.55,5.0,fr,53009,158,2260800,1,4,Active Shallow Crust,0.0,89.99323,0.0,06/14/7941 +7.62595,47.81105,6166,8,2,22,51,37,3.55,15.0,fr,53010,123,2260801,1,1,Active Shallow Crust,0.0,89.99323,0.0,08/02/6166 +7.62595,47.81105,8022,11,20,13,34,44,3.55,5.0,fr,53011,160,2260803,1,3,Active Shallow Crust,240.0114,57.99873,0.0,11/20/8022 +7.62595,47.81105,2183,10,22,10,10,42,3.55,5.0,fr,53012,43,2260803,1,3,Active Shallow Crust,240.0114,57.99873,0.0,10/22/2183 +7.62595,47.81105,248,9,7,17,1,12,3.55,5.0,fr,53013,4,2260803,1,3,Active Shallow Crust,240.0114,57.99873,0.0,09/07/0248 +7.62595,47.81105,3119,4,13,2,49,41,3.55,5.0,fr,53014,62,2260806,1,1,Active Shallow Crust,0.0,89.99315,-90.0,04/13/3119 +7.62595,47.81105,2388,4,21,18,7,47,3.55,15.0,fr,53015,47,2260807,1,1,Active Shallow Crust,0.0,89.99315,-90.0,04/21/2388 +7.62595,47.81105,4249,8,7,15,55,15,3.65,5.0,fr,53016,84,2260812,1,4,Active Shallow Crust,0.0,89.98793,0.0,08/07/4249 +7.62595,47.81105,7065,5,18,3,32,21,3.65,5.0,fr,53017,141,2260812,1,4,Active Shallow Crust,0.0,89.98793,0.0,05/18/7065 +7.62595,47.81105,4178,10,6,21,41,45,3.65,5.0,fr,53018,83,2260812,1,4,Active Shallow Crust,0.0,89.98793,0.0,10/06/4178 +7.62595,47.81105,1942,9,19,7,32,37,3.65,5.0,fr,53019,38,2260812,1,4,Active Shallow Crust,0.0,89.98793,0.0,09/19/1942 +7.62595,47.81105,9253,6,28,21,27,25,3.65,15.0,fr,53020,185,2260813,1,4,Active Shallow Crust,0.0,89.98793,0.0,06/28/9253 +7.62595,47.81105,7989,9,9,12,6,19,3.65,15.0,fr,53021,159,2260813,1,4,Active Shallow Crust,0.0,89.98793,0.0,09/09/7989 +7.62595,47.81105,4938,12,10,5,37,29,3.65,15.0,fr,53022,98,2260813,1,4,Active Shallow Crust,0.0,89.98793,0.0,12/10/4938 +7.62595,47.81105,153,12,26,15,31,55,3.65,15.0,fr,53023,3,2260813,1,4,Active Shallow Crust,0.0,89.98793,0.0,12/26/0153 +7.62595,47.81105,6434,4,4,9,54,29,3.65,27.5,fr,53024,128,2260814,1,1,Active Shallow Crust,0.0,89.98793,0.0,04/04/6434 +7.62595,47.81105,819,1,21,13,28,23,3.65,5.0,fr,53025,16,2260821,1,1,Active Shallow Crust,128.9008,89.96355,0.0,01/21/0819 +7.62595,47.81105,6078,4,30,1,33,9,3.75,5.0,fr,53026,121,2260824,1,2,Active Shallow Crust,0.0,89.98924,0.0,04/30/6078 +7.62595,47.81105,8600,9,28,23,41,58,3.75,5.0,fr,53027,171,2260824,1,2,Active Shallow Crust,0.0,89.98924,0.0,09/28/8600 +7.62595,47.81105,2334,7,21,0,42,17,3.75,5.0,fr,53028,46,2260827,1,1,Active Shallow Crust,240.0086,58.01779,0.0,07/21/2334 +7.62595,47.81105,2921,6,12,13,43,17,3.75,5.0,fr,53029,58,2260830,1,1,Active Shallow Crust,0.0,89.98911,-90.0,06/12/2921 +7.62595,47.81105,1951,2,13,15,35,56,3.85,5.0,fr,53030,39,2260836,1,2,Active Shallow Crust,0.0,89.99041,0.0,02/13/1951 +7.62595,47.81105,9974,4,30,22,55,18,3.85,5.0,fr,53031,199,2260836,1,2,Active Shallow Crust,0.0,89.99041,0.0,04/30/9974 +7.62595,47.81105,842,1,18,14,49,52,3.85,15.0,fr,53032,16,2260837,1,1,Active Shallow Crust,0.0,89.99041,0.0,01/18/0842 +7.62595,47.81105,1759,3,13,11,5,37,3.85,15.0,fr,53033,35,2260843,1,2,Active Shallow Crust,0.0,89.9903,-90.0,03/13/1759 +7.62595,47.81105,7675,2,20,18,41,31,3.85,15.0,fr,53034,153,2260843,1,2,Active Shallow Crust,0.0,89.9903,-90.0,02/20/7675 +7.62595,47.81105,7155,4,23,16,50,56,3.95,5.0,fr,53035,143,2260848,1,2,Active Shallow Crust,0.0,89.99146,0.0,04/23/7155 +7.62595,47.81105,4601,4,27,14,42,9,3.95,5.0,fr,53036,92,2260848,1,2,Active Shallow Crust,0.0,89.99146,0.0,04/27/4601 +7.62595,47.81105,9281,11,28,7,1,22,3.95,15.0,fr,53037,185,2260858,1,1,Active Shallow Crust,128.9002,89.99359,0.0,11/28/9281 +7.62595,47.81105,7917,9,18,18,48,56,4.05,5.0,fr,53038,158,2260860,1,1,Active Shallow Crust,0.0,89.98857,0.0,09/18/7917 +7.62595,47.81105,211,7,5,23,20,40,4.15,5.0,fr,53039,4,2260872,1,1,Active Shallow Crust,0.0,89.98981,0.0,07/05/0211 +7.62595,47.81105,1156,3,16,9,12,41,4.15,5.0,fr,53040,23,2260875,1,1,Active Shallow Crust,240.0085,57.9974,0.0,03/16/1156 +7.62595,47.81105,7092,7,21,22,26,10,4.25,5.0,fr,53041,141,2260884,1,2,Active Shallow Crust,0.0,89.99092,0.0,07/21/7092 +7.62595,47.81105,6967,8,21,23,52,25,4.25,5.0,fr,53042,139,2260884,1,2,Active Shallow Crust,0.0,89.99092,0.0,08/21/6967 +7.62595,47.81105,4957,12,23,20,23,24,4.25,5.0,fr,53043,99,2260887,1,1,Active Shallow Crust,240.008,57.99374,0.0,12/23/4957 +7.62595,47.81105,8304,7,10,19,4,10,4.35,5.0,fr,53044,166,2260896,1,1,Active Shallow Crust,0.0,89.98921,0.0,07/10/8304 +7.62595,47.81105,2425,8,14,8,11,2,4.35,15.0,fr,53045,48,2260897,1,1,Active Shallow Crust,0.0,89.98921,0.0,08/14/2425 +7.62595,47.81105,1881,9,23,17,9,42,4.45,5.0,fr,53046,37,2260908,1,2,Active Shallow Crust,0.0,89.99039,0.0,09/23/1881 +7.62595,47.81105,5403,1,28,2,41,13,4.45,5.0,fr,53047,108,2260908,1,2,Active Shallow Crust,0.0,89.99039,0.0,01/28/5403 +7.62595,47.81105,7880,10,29,17,49,50,4.65,5.0,fr,53048,157,2260938,1,1,Active Shallow Crust,0.0,89.99034,-90.0,10/29/7880 +7.62595,47.81105,1261,6,15,12,42,57,4.75,5.0,fr,53049,25,2260944,1,1,Active Shallow Crust,0.0,89.98979,0.0,06/15/1261 +7.62595,47.81105,173,4,11,1,19,53,4.75,15.0,fr,53050,3,2260945,1,1,Active Shallow Crust,0.0,89.98979,0.0,04/11/0173 +7.62595,47.81105,5831,1,30,3,52,18,4.85,5.0,fr,53051,116,2260959,1,1,Active Shallow Crust,240.0174,58.00271,0.0,01/30/5831 +7.62595,47.81105,9729,2,8,21,3,2,4.95,15.0,fr,53052,194,2260969,1,1,Active Shallow Crust,0.0,89.99054,0.0,02/08/9729 +7.62595,47.81105,6612,10,27,19,18,8,5.45,5.0,fr,53053,132,2261037,1,1,Active Shallow Crust,128.8778,89.9891,0.0,10/27/6612 +5.61647,51.55976,882,4,17,6,32,4,3.65,15.0,fr,53054,17,2261293,1,1,Active Shallow Crust,0.0,89.98882,0.0,04/17/0882 +5.61647,51.55976,4950,1,3,11,50,33,3.65,5.0,fr,53055,98,2261298,1,1,Active Shallow Crust,0.0,89.98869,-90.0,01/03/4950 +5.61647,51.55976,8349,6,1,14,47,5,4.45,5.0,fr,53056,166,2261397,1,1,Active Shallow Crust,128.8911,89.99332,0.0,06/01/8349 +5.61647,51.55976,5070,1,7,15,49,8,4.65,5.0,fr,53057,101,2261412,1,1,Active Shallow Crust,0.0,89.9894,0.0,01/07/5070 +-3.53129,49.91376,7995,9,21,7,6,50,3.65,15.0,fr,53058,159,2261776,1,1,Active Shallow Crust,240.001,58.01332,0.0,09/21/7995 +1.18623,52.02334,2945,10,2,22,13,38,3.55,5.0,fr,53059,58,2262240,1,2,Active Shallow Crust,0.0,89.99069,0.0,10/02/2945 +1.18623,52.02334,9370,3,10,19,16,41,3.55,5.0,fr,53060,187,2262240,1,2,Active Shallow Crust,0.0,89.99069,0.0,03/10/9370 +1.18623,52.02334,1737,12,31,12,16,30,3.65,5.0,fr,53061,34,2262252,1,2,Active Shallow Crust,0.0,89.99032,0.0,12/31/1737 +1.18623,52.02334,851,11,18,0,7,10,3.65,5.0,fr,53062,17,2262252,1,2,Active Shallow Crust,0.0,89.99032,0.0,11/18/0851 +1.18623,52.02334,1868,1,7,4,43,32,4.15,5.0,fr,53063,37,2262312,1,1,Active Shallow Crust,0.0,89.98989,0.0,01/07/1868 +1.18623,52.02334,5270,6,5,18,6,50,4.85,5.0,fr,53064,105,2262396,1,1,Active Shallow Crust,0.0,89.98993,0.0,06/05/5270 +1.66461,44.39802,8925,6,29,6,22,40,3.55,5.0,fr,53065,178,2262720,1,2,Active Shallow Crust,0.0,89.98919,0.0,06/29/8925 +1.66461,44.39802,2451,7,4,3,56,8,3.55,5.0,fr,53066,49,2262720,1,2,Active Shallow Crust,0.0,89.98919,0.0,07/04/2451 +1.66461,44.39802,1659,7,14,4,22,28,3.55,27.5,fr,53067,33,2262725,1,1,Active Shallow Crust,240.0124,57.9978,0.0,07/14/1659 +1.66461,44.39802,7756,10,24,8,57,31,3.65,15.0,fr,53068,155,2262733,1,1,Active Shallow Crust,0.0,89.99036,0.0,10/24/7756 +1.66461,44.39802,9512,11,3,18,25,5,3.85,5.0,fr,53069,190,2262756,1,1,Active Shallow Crust,0.0,89.9898,0.0,11/03/9512 +5.42931,51.29174,3941,4,13,0,57,25,3.55,15.0,fr,53070,78,2263201,1,1,Active Shallow Crust,0.0,89.98739,0.0,04/13/3941 +5.42931,51.29174,3975,5,3,10,10,41,3.55,5.0,fr,53071,79,2263206,1,1,Active Shallow Crust,0.0,89.98724,-90.0,05/03/3975 +5.42931,51.29174,6836,3,8,3,15,40,3.75,5.0,fr,53072,136,2263224,1,1,Active Shallow Crust,0.0,89.98998,0.0,03/08/6836 +5.42931,51.29174,2933,6,18,17,19,3,3.75,15.0,fr,53073,58,2263225,1,1,Active Shallow Crust,0.0,89.98998,0.0,06/18/2933 +5.42931,51.29174,5762,7,19,6,39,37,3.85,5.0,fr,53074,115,2263239,1,1,Active Shallow Crust,240.0116,57.99776,0.0,07/19/5762 +5.42931,51.29174,3182,9,4,18,38,27,3.95,5.0,fr,53075,63,2263248,1,1,Active Shallow Crust,0.0,89.98806,0.0,09/04/3182 +5.42931,51.29174,6837,9,10,19,18,38,4.05,5.0,fr,53076,136,2263269,1,1,Active Shallow Crust,128.8895,89.99468,0.0,09/10/6837 +5.42931,51.29174,112,12,3,22,52,13,4.25,5.0,fr,53077,2,2263284,1,1,Active Shallow Crust,0.0,89.98873,0.0,12/03/0112 +5.42931,51.29174,5230,5,12,5,33,30,4.45,15.0,fr,53078,104,2263315,1,1,Active Shallow Crust,0.0,89.99094,-90.0,05/12/5230 +-4.51861,50.09595,4986,4,24,11,43,20,3.75,5.0,fr,53079,99,2263707,1,1,Active Shallow Crust,240.0091,58.01736,0.0,04/24/4986 +-0.32248,44.64176,2454,7,6,15,9,27,3.55,5.0,fr,53080,49,2264169,1,1,Active Shallow Crust,128.8964,89.99372,0.0,07/06/2454 +-0.32248,44.64176,5773,3,19,13,24,3,3.75,5.0,fr,53081,115,2264184,1,2,Active Shallow Crust,0.0,89.99003,0.0,03/19/5773 +-0.32248,44.64176,8124,4,23,3,27,54,3.75,5.0,fr,53082,162,2264184,1,2,Active Shallow Crust,0.0,89.99003,0.0,04/23/8124 +-0.32248,44.64176,8539,9,4,22,59,23,4.55,5.0,fr,53083,170,2264280,1,1,Active Shallow Crust,0.0,89.98993,0.0,09/04/8539 +5.27218,45.71165,3535,5,3,12,5,1,3.55,5.0,fr,53084,70,2264643,1,1,Active Shallow Crust,240.0114,57.99817,0.0,05/03/3535 +5.27218,45.71165,8956,10,18,21,58,16,3.55,5.0,fr,53085,179,2264646,1,2,Active Shallow Crust,0.0,89.99287,-90.0,10/18/8956 +5.27218,45.71165,4401,7,8,23,42,22,3.55,5.0,fr,53086,88,2264646,1,2,Active Shallow Crust,0.0,89.99287,-90.0,07/08/4401 +5.27218,45.71165,1403,2,24,10,38,27,3.65,5.0,fr,53087,28,2264652,1,1,Active Shallow Crust,0.0,89.98745,0.0,02/24/1403 +5.27218,45.71165,8197,9,2,15,49,42,3.65,15.0,fr,53088,163,2264653,1,1,Active Shallow Crust,0.0,89.98745,0.0,09/02/8197 +5.27218,45.71165,2710,5,25,10,49,9,3.65,15.0,fr,53089,54,2264656,1,1,Active Shallow Crust,240.0008,58.01306,0.0,05/25/2710 +5.27218,45.71165,6131,5,28,20,24,54,3.65,5.0,fr,53090,122,2264658,1,1,Active Shallow Crust,0.0,89.9873,-90.0,05/28/6131 +5.27218,45.71165,1726,4,7,5,48,52,3.65,5.0,fr,53091,34,2264661,1,1,Active Shallow Crust,128.9013,89.96351,0.0,04/07/1726 +5.27218,45.71165,8342,8,11,19,19,20,3.75,15.0,fr,53092,166,2264668,1,1,Active Shallow Crust,240.0073,58.01808,0.0,08/11/8342 +5.27218,45.71165,5594,11,6,9,40,37,3.75,15.0,fr,53093,111,2264671,1,1,Active Shallow Crust,0.0,89.98869,-90.0,11/06/5594 +5.27218,45.71165,6857,4,19,6,36,15,3.95,5.0,fr,53094,137,2264688,1,2,Active Shallow Crust,0.0,89.99111,0.0,04/19/6857 +5.27218,45.71165,5176,2,3,13,51,10,3.95,5.0,fr,53095,103,2264688,1,2,Active Shallow Crust,0.0,89.99111,0.0,02/03/5176 +5.27218,45.71165,7832,5,13,0,30,9,4.05,5.0,fr,53096,156,2264700,1,1,Active Shallow Crust,0.0,89.98812,0.0,05/13/7832 +5.27218,45.71165,8451,3,20,11,2,20,4.15,27.5,fr,53097,169,2264723,1,1,Active Shallow Crust,128.8975,89.99471,0.0,03/20/8451 +5.27218,45.71165,5653,4,27,10,37,22,4.25,5.0,fr,53098,113,2264724,1,1,Active Shallow Crust,0.0,89.99056,0.0,04/27/5653 +5.27218,45.71165,8963,3,31,11,48,0,4.35,5.0,fr,53099,179,2264745,1,1,Active Shallow Crust,128.8974,89.98299,0.0,03/31/8963 +5.27218,45.71165,3624,7,25,19,14,15,5.65,5.0,fr,53100,72,2264895,1,1,Active Shallow Crust,240.0333,58.00185,0.0,07/25/3624 +-4.19883,49.45151,5261,6,24,11,48,52,3.65,5.0,fr,53101,105,2265132,1,1,Active Shallow Crust,0.0,89.98831,0.0,06/24/5261 +-4.19883,49.45151,7882,2,2,11,40,27,3.65,15.0,fr,53102,157,2265133,1,1,Active Shallow Crust,0.0,89.98831,0.0,02/02/7882 +3.22491,50.15094,2353,11,29,15,41,26,3.55,5.0,fr,53103,47,2265600,1,3,Active Shallow Crust,0.0,89.99031,0.0,11/29/2353 +3.22491,50.15094,5600,8,5,14,9,59,3.55,5.0,fr,53104,111,2265600,1,3,Active Shallow Crust,0.0,89.99031,0.0,08/05/5600 +3.22491,50.15094,3731,5,31,23,5,30,3.55,5.0,fr,53105,74,2265600,1,3,Active Shallow Crust,0.0,89.99031,0.0,05/31/3731 +3.22491,50.15094,8310,6,15,10,52,18,3.55,15.0,fr,53106,166,2265607,1,1,Active Shallow Crust,0.0,89.9902,-90.0,06/15/8310 +3.22491,50.15094,9155,8,10,2,4,42,3.65,15.0,fr,53107,183,2265613,1,1,Active Shallow Crust,0.0,89.99136,0.0,08/10/9155 +3.22491,50.15094,2935,11,6,1,0,35,3.75,5.0,fr,53108,58,2265630,1,1,Active Shallow Crust,0.0,89.98962,-90.0,11/06/2935 +3.22491,50.15094,7268,11,14,11,41,23,3.85,5.0,fr,53109,145,2265645,1,1,Active Shallow Crust,128.8954,89.99429,0.0,11/14/7268 +3.22491,50.15094,137,12,21,18,31,12,3.95,15.0,fr,53110,2,2265655,1,1,Active Shallow Crust,0.0,89.98969,-90.0,12/21/0137 +3.22491,50.15094,3703,7,1,22,16,0,4.05,5.0,fr,53111,74,2265660,1,1,Active Shallow Crust,0.0,89.9891,0.0,07/01/3703 +3.22491,50.15094,8296,11,9,11,4,58,5.25,15.0,fr,53112,165,2265805,1,1,Active Shallow Crust,0.0,89.98996,0.0,11/09/8296 +2.20548,52.5618,2021,3,10,20,43,11,3.75,5.0,fr,53113,40,2266590,1,1,Active Shallow Crust,0.0,89.99015,-90.0,03/10/2021 +2.20548,52.5618,9790,2,28,23,33,18,3.75,5.0,fr,53114,195,2266593,1,1,Active Shallow Crust,128.8963,89.96739,0.0,02/28/9790 +2.20548,52.5618,9211,3,22,12,21,9,3.85,15.0,fr,53115,184,2266597,1,1,Active Shallow Crust,0.0,89.98915,0.0,03/22/9211 +1.99118,50.89006,6796,8,31,0,39,41,3.55,15.0,fr,53116,135,2267041,1,1,Active Shallow Crust,0.0,89.99046,0.0,08/31/6796 +1.99118,50.89006,5361,4,21,6,8,3,3.65,5.0,fr,53117,107,2267052,1,1,Active Shallow Crust,0.0,89.99008,0.0,04/21/5361 +1.99118,50.89006,9059,8,11,4,27,40,3.65,15.0,fr,53118,181,2267053,1,1,Active Shallow Crust,0.0,89.99008,0.0,08/11/9059 +1.99118,50.89006,8445,4,22,20,16,35,3.65,27.5,fr,53119,168,2267054,1,1,Active Shallow Crust,0.0,89.99008,0.0,04/22/8445 +1.99118,50.89006,5480,7,19,10,21,59,3.75,5.0,fr,53120,109,2267064,1,1,Active Shallow Crust,0.0,89.98989,0.0,07/19/5480 +1.99118,50.89006,7747,6,9,12,13,8,3.85,15.0,fr,53121,154,2267077,1,1,Active Shallow Crust,0.0,89.98987,0.0,06/09/7747 +1.99118,50.89006,2034,10,12,4,26,3,4.25,5.0,fr,53122,40,2267124,1,1,Active Shallow Crust,0.0,89.99005,0.0,10/12/2034 +1.99118,50.89006,5001,1,20,7,19,11,4.25,27.5,fr,53123,100,2267129,1,1,Active Shallow Crust,240.0087,57.99418,0.0,01/20/5001 +1.99118,50.89006,7354,11,6,18,40,39,4.35,5.0,fr,53124,147,2267136,1,1,Active Shallow Crust,0.0,89.98987,0.0,11/06/7354 +1.99118,50.89006,8800,8,16,16,36,20,4.95,5.0,fr,53125,175,2267217,1,1,Active Shallow Crust,128.888,89.98975,0.0,08/16/8800 +3.2827,43.58613,7723,6,13,16,18,38,3.55,5.0,fr,53126,154,2267520,1,1,Active Shallow Crust,0.0,89.98904,0.0,06/13/7723 +3.2827,43.58613,8531,2,6,15,12,43,3.55,27.5,fr,53127,170,2267528,1,1,Active Shallow Crust,0.0,89.98891,-90.0,02/06/8531 +3.2827,43.58613,8839,5,13,7,59,58,3.65,5.0,fr,53128,176,2267532,1,1,Active Shallow Crust,0.0,89.99023,0.0,05/13/8839 +3.2827,43.58613,2002,12,15,11,52,53,3.75,5.0,fr,53129,40,2267547,1,1,Active Shallow Crust,240.0078,58.01762,0.0,12/15/2002 +3.2827,43.58613,1785,2,18,20,12,58,3.75,5.0,fr,53130,35,2267550,1,1,Active Shallow Crust,0.0,89.9912,-90.0,02/18/1785 +3.2827,43.58613,9688,10,16,3,3,52,3.85,15.0,fr,53131,193,2267560,1,1,Active Shallow Crust,240.0108,57.99728,0.0,10/16/9688 +3.59944,48.80439,4999,7,9,19,36,18,3.85,15.0,fr,53132,99,2268040,1,1,Active Shallow Crust,240.0108,57.99813,0.0,07/09/4999 +3.59944,48.80439,17,11,18,4,11,12,4.25,15.0,fr,53133,0,2268091,1,1,Active Shallow Crust,0.0,89.98949,-90.0,11/18/0017 +3.59944,48.80439,9730,10,10,6,32,50,4.55,5.0,fr,53134,194,2268120,1,1,Active Shallow Crust,0.0,89.98949,0.0,10/10/9730 +3.59944,48.80439,7042,6,12,5,17,51,4.55,5.0,fr,53135,140,2268123,1,1,Active Shallow Crust,240.01,57.99756,0.0,06/12/7042 +-4.45985,48.06787,4116,7,5,6,45,32,3.55,15.0,fr,53136,82,2268481,1,1,Active Shallow Crust,0.0,89.99326,0.0,07/05/4116 +-4.45985,48.06787,3514,6,27,10,30,45,3.55,15.0,fr,53137,70,2268490,1,1,Active Shallow Crust,128.8959,89.99326,0.0,06/27/3514 +-4.45985,48.06787,7911,10,2,10,58,4,3.65,5.0,fr,53138,158,2268495,1,1,Active Shallow Crust,240.0005,58.0135,0.0,10/02/7911 +-4.45985,48.06787,6503,1,9,19,19,46,4.05,5.0,fr,53139,130,2268540,1,2,Active Shallow Crust,0.0,89.98863,0.0,01/09/6503 +-4.45985,48.06787,7456,3,18,0,28,50,4.05,5.0,fr,53140,149,2268540,1,2,Active Shallow Crust,0.0,89.98863,0.0,03/18/7456 +-4.45985,48.06787,3640,10,24,14,3,8,4.45,27.5,fr,53141,72,2268593,1,1,Active Shallow Crust,240.0053,57.99507,0.0,10/24/3640 +-4.45985,48.06787,7692,2,27,3,42,7,4.65,5.0,fr,53142,153,2268615,1,1,Active Shallow Crust,240.0113,57.99422,0.0,02/27/7692 +3.62378,49.8071,7780,1,27,18,6,2,3.75,15.0,fr,53143,155,2268988,1,1,Active Shallow Crust,240.009,58.01754,0.0,01/27/7780 +3.62378,49.8071,6248,1,1,9,48,35,4.25,5.0,fr,53144,124,2269044,1,1,Active Shallow Crust,0.0,89.98982,0.0,01/01/6248 +3.62378,49.8071,4872,4,14,5,36,43,4.45,15.0,fr,53145,97,2269069,1,1,Active Shallow Crust,0.0,89.98961,0.0,04/14/4872 +3.62378,49.8071,8394,11,3,7,43,15,5.35,5.0,fr,53146,167,2269176,1,1,Active Shallow Crust,0.0,89.99017,0.0,11/03/8394 +3.35379,46.08734,6281,1,23,2,5,4,3.55,5.0,fr,53147,125,2269440,1,1,Active Shallow Crust,0.0,89.98951,0.0,01/23/6281 +3.35379,46.08734,5588,2,11,23,33,23,3.65,5.0,fr,53148,111,2269452,1,1,Active Shallow Crust,0.0,89.99065,0.0,02/11/5588 +3.35379,46.08734,2300,1,22,1,20,7,3.65,27.5,fr,53149,45,2269460,1,1,Active Shallow Crust,0.0,89.99054,-90.0,01/22/2300 +3.35379,46.08734,1364,12,27,22,24,28,3.75,5.0,fr,53150,27,2269467,1,1,Active Shallow Crust,240.0081,58.0179,0.0,12/27/1364 +3.35379,46.08734,8578,12,18,18,1,48,3.75,15.0,fr,53151,171,2269468,1,1,Active Shallow Crust,240.0081,58.0179,0.0,12/18/8578 +3.35379,46.08734,1131,6,25,9,59,41,3.75,5.0,fr,53152,22,2269470,1,1,Active Shallow Crust,0.0,89.98876,-90.0,06/25/1131 +3.35379,46.08734,1127,11,2,18,31,34,3.85,15.0,fr,53153,22,2269477,1,1,Active Shallow Crust,0.0,89.9901,0.0,11/02/1127 +3.35379,46.08734,3374,4,22,7,3,18,4.05,5.0,fr,53154,67,2269500,1,1,Active Shallow Crust,0.0,89.99017,0.0,04/22/3374 +3.35379,46.08734,932,8,17,17,53,33,4.25,15.0,fr,53155,18,2269525,1,1,Active Shallow Crust,0.0,89.99063,0.0,08/17/0932 +-3.57013,47.33803,706,11,27,11,41,17,3.65,15.0,fr,53156,14,2269933,1,1,Active Shallow Crust,0.0,89.99087,0.0,11/27/0706 +-3.57013,47.33803,3719,5,3,15,2,49,3.95,5.0,fr,53157,74,2269968,1,1,Active Shallow Crust,0.0,89.98922,0.0,05/03/3719 +-3.57013,47.33803,5373,10,21,8,44,38,3.95,5.0,fr,53158,107,2269971,1,1,Active Shallow Crust,240.0201,58.00461,0.0,10/21/5373 +-3.57013,47.33803,7692,5,7,7,43,21,4.25,5.0,fr,53159,153,2270004,1,1,Active Shallow Crust,0.0,89.98932,0.0,05/07/7692 +4.64744,51.06353,8546,11,3,3,51,10,3.55,15.0,fr,53160,170,2270401,1,1,Active Shallow Crust,0.0,89.98733,0.0,11/03/8546 +4.64744,51.06353,5100,11,25,8,40,7,3.55,5.0,fr,53161,101,2270406,1,1,Active Shallow Crust,0.0,89.98717,-90.0,11/25/5100 +4.64744,51.06353,8745,8,15,0,49,0,3.65,5.0,fr,53162,174,2270412,1,1,Active Shallow Crust,0.0,89.9887,0.0,08/15/8745 +4.64744,51.06353,6988,11,4,10,14,0,3.85,5.0,fr,53163,139,2270436,1,1,Active Shallow Crust,0.0,89.99103,0.0,11/04/6988 +4.64744,51.06353,4980,10,25,9,52,15,3.85,5.0,fr,53164,99,2270445,1,1,Active Shallow Crust,128.8958,89.99327,0.0,10/25/4980 +4.64744,51.06353,8563,6,15,8,32,43,4.05,5.0,fr,53165,171,2270460,1,1,Active Shallow Crust,0.0,89.98931,0.0,06/15/8563 +4.64744,51.06353,552,6,3,23,42,10,4.15,15.0,fr,53166,11,2270482,1,1,Active Shallow Crust,128.8959,89.99364,0.0,06/03/0552 +4.64744,51.06353,1591,3,11,23,6,12,4.75,5.0,fr,53167,31,2270553,1,1,Active Shallow Crust,128.8873,89.98804,0.0,03/11/1591 +4.64744,51.06353,7639,6,28,0,3,42,6.05,27.5,fr,53168,152,2270702,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/28/7639 +3.95147,42.7528,6890,10,3,7,32,52,3.85,5.0,fr,53169,137,2271396,1,1,Active Shallow Crust,0.0,89.98952,0.0,10/03/6890 +3.95147,42.7528,9586,7,29,16,15,50,3.95,5.0,fr,53170,191,2271408,1,1,Active Shallow Crust,0.0,89.99065,0.0,07/29/9586 +3.95147,42.7528,8168,2,20,12,58,43,4.35,5.0,fr,53171,163,2271456,1,1,Active Shallow Crust,0.0,89.98969,0.0,02/20/8168 +0.03329,51.59186,4770,3,18,0,44,45,3.65,15.0,fr,53172,95,2271853,1,1,Active Shallow Crust,0.0,89.99001,0.0,03/18/4770 +0.03329,51.59186,8718,6,14,1,6,10,3.75,5.0,fr,53173,174,2271864,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/14/8718 +0.03329,51.59186,6295,10,21,1,24,10,3.85,15.0,fr,53174,125,2271886,1,1,Active Shallow Crust,128.8951,89.99372,0.0,10/21/6295 +0.03329,51.59186,4290,9,9,13,15,47,3.95,5.0,fr,53175,85,2271888,1,1,Active Shallow Crust,0.0,89.99,0.0,09/09/4290 +0.03329,51.59186,2533,9,15,20,46,7,4.45,5.0,fr,53176,50,2271954,1,1,Active Shallow Crust,0.0,89.99001,-90.0,09/15/2533 +5.29884,40.7775,3720,8,8,22,9,17,3.55,5.0,fr,53177,74,2272320,1,1,Active Shallow Crust,0.0,89.99236,0.0,08/08/3720 +-2.25876,49.88015,3808,8,8,21,33,36,4.65,15.0,fr,53178,76,2272933,1,1,Active Shallow Crust,0.0,89.98993,0.0,08/08/3808 +2.34835,47.37548,6896,9,8,3,56,16,3.55,5.0,fr,53179,137,2273280,1,1,Active Shallow Crust,0.0,89.98975,0.0,09/08/6896 +2.34835,47.37548,4574,11,24,0,21,1,3.75,5.0,fr,53180,91,2273304,1,1,Active Shallow Crust,0.0,89.98915,0.0,11/24/4574 +2.34835,47.37548,1629,11,14,4,54,39,3.75,5.0,fr,53181,32,2273313,1,1,Active Shallow Crust,128.897,89.96725,0.0,11/14/1629 +2.34835,47.37548,4188,9,6,3,1,43,3.95,5.0,fr,53182,83,2273328,1,2,Active Shallow Crust,0.0,89.98923,0.0,09/06/4188 +2.34835,47.37548,6822,10,29,21,26,32,3.95,5.0,fr,53183,136,2273328,1,2,Active Shallow Crust,0.0,89.98923,0.0,10/29/6822 +2.34835,47.37548,947,11,13,4,48,42,4.25,5.0,fr,53184,18,2273364,1,1,Active Shallow Crust,0.0,89.98933,0.0,11/13/0947 +2.34835,47.37548,1533,9,7,19,52,0,4.25,15.0,fr,53185,30,2273368,1,1,Active Shallow Crust,240.0078,57.99393,0.0,09/07/1533 +2.34835,47.37548,7075,5,27,20,27,32,4.45,5.0,fr,53186,141,2273388,1,1,Active Shallow Crust,0.0,89.99031,0.0,05/27/7075 +2.34835,47.37548,5165,6,15,2,11,38,4.55,27.5,fr,53187,103,2273405,1,1,Active Shallow Crust,240.0095,57.99723,0.0,06/15/5165 +7.31124,49.17102,826,5,10,23,24,37,3.65,5.0,fr,53188,16,2273772,1,1,Active Shallow Crust,0.0,89.98825,0.0,05/10/0826 +7.31124,49.17102,2355,1,12,0,30,46,3.65,15.0,fr,53189,47,2273782,1,1,Active Shallow Crust,128.9001,89.96358,0.0,01/12/2355 +7.31124,49.17102,7589,4,30,14,47,18,3.75,5.0,fr,53190,151,2273784,1,1,Active Shallow Crust,0.0,89.98952,0.0,04/30/7589 +7.31124,49.17102,6056,11,5,20,32,27,3.75,15.0,fr,53191,121,2273785,1,1,Active Shallow Crust,0.0,89.98952,0.0,11/05/6056 +7.31124,49.17102,3390,1,22,15,23,17,4.05,15.0,fr,53192,67,2273821,1,1,Active Shallow Crust,0.0,89.98888,0.0,01/22/3390 +7.31124,49.17102,2476,12,3,10,2,36,4.35,5.0,fr,53193,49,2273859,1,1,Active Shallow Crust,240.0089,57.99602,0.0,12/03/2476 +7.31124,49.17102,9323,1,5,5,6,59,4.65,5.0,fr,53194,186,2273898,1,1,Active Shallow Crust,0.0,89.9906,-90.0,01/05/9323 +2.36228,51.80012,7009,3,26,18,18,30,3.55,5.0,fr,53195,140,2274243,1,1,Active Shallow Crust,240.0127,57.99804,0.0,03/26/7009 +2.36228,51.80012,1747,7,12,18,31,42,3.65,27.5,fr,53196,34,2274257,1,1,Active Shallow Crust,240.0019,58.01277,0.0,07/12/1747 +2.36228,51.80012,3566,1,3,5,6,20,3.75,5.0,fr,53197,71,2274267,1,1,Active Shallow Crust,240.0089,58.01811,0.0,01/03/3566 +2.36228,51.80012,5533,7,21,23,48,45,4.85,27.5,fr,53198,110,2274398,1,1,Active Shallow Crust,0.0,89.99023,0.0,07/21/5533 +4.11156,43.04293,4141,10,26,17,9,15,3.75,5.0,fr,53199,82,2274744,1,1,Active Shallow Crust,0.0,89.98829,0.0,10/26/4141 +4.11156,43.04293,4650,10,1,11,21,6,4.15,5.0,fr,53200,92,2274801,1,1,Active Shallow Crust,128.8975,89.99446,0.0,10/01/4650 +4.11156,43.04293,3613,1,17,9,28,59,4.55,5.0,fr,53201,72,2274840,1,1,Active Shallow Crust,0.0,89.99068,0.0,01/17/3613 +1.06734,44.3521,5581,9,10,22,44,7,3.75,15.0,fr,53202,111,2275225,1,1,Active Shallow Crust,0.0,89.98997,0.0,09/10/5581 +1.06734,44.3521,5603,5,31,11,38,37,4.05,5.0,fr,53203,112,2275260,1,1,Active Shallow Crust,0.0,89.98986,0.0,05/31/5603 +7.86092,46.93663,6808,6,6,16,18,46,3.55,5.0,fr,53204,136,2276160,1,2,Active Shallow Crust,0.0,89.99312,0.0,06/06/6808 +7.86092,46.93663,8941,12,24,0,15,38,3.55,5.0,fr,53205,178,2276160,1,2,Active Shallow Crust,0.0,89.99312,0.0,12/24/8941 +7.86092,46.93663,2172,9,20,14,23,47,3.55,15.0,fr,53206,43,2276161,1,1,Active Shallow Crust,0.0,89.99312,0.0,09/20/2172 +7.86092,46.93663,5143,11,13,11,25,59,3.55,5.0,fr,53207,102,2276169,1,1,Active Shallow Crust,128.8957,89.99656,0.0,11/13/5143 +7.86092,46.93663,7586,3,15,17,42,10,3.65,5.0,fr,53208,151,2276172,1,4,Active Shallow Crust,0.0,89.98772,0.0,03/15/7586 +7.86092,46.93663,2527,3,23,4,45,57,3.65,5.0,fr,53209,50,2276172,1,4,Active Shallow Crust,0.0,89.98772,0.0,03/23/2527 +7.86092,46.93663,7752,5,21,0,39,50,3.65,5.0,fr,53210,155,2276172,1,4,Active Shallow Crust,0.0,89.98772,0.0,05/21/7752 +7.86092,46.93663,1505,7,2,5,23,23,3.65,5.0,fr,53211,30,2276172,1,4,Active Shallow Crust,0.0,89.98772,0.0,07/02/1505 +7.86092,46.93663,9486,3,21,1,8,17,3.65,5.0,fr,53212,189,2276175,1,2,Active Shallow Crust,240.0008,58.0138,0.0,03/21/9486 +7.86092,46.93663,4627,4,28,11,23,30,3.65,5.0,fr,53213,92,2276175,1,2,Active Shallow Crust,240.0008,58.0138,0.0,04/28/4627 +7.86092,46.93663,4190,2,2,10,40,21,3.75,5.0,fr,53214,83,2276184,1,3,Active Shallow Crust,0.0,89.98906,0.0,02/02/4190 +7.86092,46.93663,1507,9,30,8,44,40,3.75,5.0,fr,53215,30,2276184,1,3,Active Shallow Crust,0.0,89.98906,0.0,09/30/1507 +7.86092,46.93663,2761,10,25,11,32,21,3.75,5.0,fr,53216,55,2276184,1,3,Active Shallow Crust,0.0,89.98906,0.0,10/25/2761 +7.86092,46.93663,7389,9,17,13,32,46,3.75,15.0,fr,53217,147,2276185,1,2,Active Shallow Crust,0.0,89.98906,0.0,09/17/7389 +7.86092,46.93663,1691,11,19,6,1,54,3.75,15.0,fr,53218,33,2276185,1,2,Active Shallow Crust,0.0,89.98906,0.0,11/19/1691 +7.86092,46.93663,3089,2,1,16,46,20,3.75,27.5,fr,53219,61,2276186,1,1,Active Shallow Crust,0.0,89.98906,0.0,02/01/3089 +7.86092,46.93663,285,5,5,19,8,20,3.75,5.0,fr,53220,5,2276190,1,1,Active Shallow Crust,0.0,89.98894,-90.0,05/05/0285 +7.86092,46.93663,8012,1,28,0,4,19,3.75,5.0,fr,53221,160,2276193,1,1,Active Shallow Crust,128.8975,89.96693,0.0,01/28/8012 +7.86092,46.93663,3252,8,31,6,3,29,3.85,5.0,fr,53222,65,2276196,1,1,Active Shallow Crust,0.0,89.99025,0.0,08/31/3252 +7.86092,46.93663,9882,6,20,4,44,59,3.85,15.0,fr,53223,197,2276200,1,1,Active Shallow Crust,240.0114,57.99748,0.0,06/20/9882 +7.86092,46.93663,8069,10,27,4,37,18,3.95,5.0,fr,53224,161,2276211,1,2,Active Shallow Crust,240.0201,58.00464,0.0,10/27/8069 +7.86092,46.93663,9472,10,16,8,57,49,3.95,5.0,fr,53225,189,2276211,1,2,Active Shallow Crust,240.0201,58.00464,0.0,10/16/9472 +7.86092,46.93663,4922,2,22,22,0,34,3.95,5.0,fr,53226,98,2276214,1,1,Active Shallow Crust,0.0,89.99121,-90.0,02/22/4922 +7.86092,46.93663,8299,2,5,3,16,56,4.05,5.0,fr,53227,165,2276220,1,1,Active Shallow Crust,0.0,89.98838,0.0,02/05/8299 +7.86092,46.93663,8624,10,23,0,48,32,4.05,5.0,fr,53228,172,2276229,1,1,Active Shallow Crust,128.89,89.99419,0.0,10/23/8624 +7.86092,46.93663,4432,5,30,19,6,7,4.25,27.5,fr,53229,88,2276246,1,1,Active Shallow Crust,0.0,89.99078,0.0,05/30/4432 +7.86092,46.93663,1152,7,23,7,45,30,4.25,5.0,fr,53230,23,2276247,1,1,Active Shallow Crust,240.0082,57.99369,0.0,07/23/1152 +7.86092,46.93663,6705,9,10,0,26,54,4.35,15.0,fr,53231,134,2276260,1,1,Active Shallow Crust,240.009,57.99579,0.0,09/10/6705 +7.86092,46.93663,398,9,27,9,10,17,4.35,5.0,fr,53232,7,2276265,1,1,Active Shallow Crust,128.8976,89.98254,0.0,09/27/0398 +7.86092,46.93663,6882,12,21,6,11,6,4.45,27.5,fr,53233,137,2276270,1,1,Active Shallow Crust,0.0,89.99023,0.0,12/21/6882 +7.86092,46.93663,5795,11,10,5,22,18,4.45,5.0,fr,53234,115,2276271,1,1,Active Shallow Crust,240.0049,57.99467,0.0,11/10/5795 +7.86092,46.93663,8810,6,1,2,6,43,4.45,27.5,fr,53235,176,2276279,1,1,Active Shallow Crust,128.892,89.9939,0.0,06/01/8810 +7.86092,46.93663,6493,2,9,9,18,20,4.55,15.0,fr,53236,129,2276281,1,1,Active Shallow Crust,0.0,89.98911,0.0,02/09/6493 +7.86092,46.93663,8825,6,18,6,50,10,4.75,15.0,fr,53237,176,2276308,1,1,Active Shallow Crust,240.0073,58.00471,0.0,06/18/8825 +7.86092,46.93663,3725,1,7,7,29,23,4.85,27.5,fr,53238,74,2276318,1,1,Active Shallow Crust,0.0,89.99075,0.0,01/07/3725 +7.86092,46.93663,4357,11,19,1,25,57,4.95,5.0,fr,53239,87,2276331,1,1,Active Shallow Crust,240.012,58.00455,0.0,11/19/4357 +7.86092,46.93663,4178,11,26,7,44,38,5.25,5.0,fr,53240,83,2276367,1,1,Active Shallow Crust,240.0259,58.00019,0.0,11/26/4178 +1.51995,48.39028,7255,2,22,9,52,37,3.55,5.0,fr,53241,145,2276640,1,1,Active Shallow Crust,0.0,89.98995,0.0,02/22/7255 +1.51995,48.39028,9363,12,16,21,35,14,3.55,27.5,fr,53242,187,2276642,1,1,Active Shallow Crust,0.0,89.98995,0.0,12/16/9363 +1.51995,48.39028,6112,3,21,13,33,29,3.65,5.0,fr,53243,122,2276652,1,2,Active Shallow Crust,0.0,89.98956,0.0,03/21/6112 +1.51995,48.39028,5247,5,6,4,6,18,3.65,5.0,fr,53244,104,2276652,1,2,Active Shallow Crust,0.0,89.98956,0.0,05/06/5247 +1.51995,48.39028,4015,10,30,12,45,7,3.75,15.0,fr,53245,80,2276665,1,1,Active Shallow Crust,0.0,89.98936,0.0,10/30/4015 +3.87925,44.99333,8636,1,10,9,54,18,3.65,5.0,fr,53246,172,2277132,1,3,Active Shallow Crust,0.0,89.99046,0.0,01/10/8636 +3.87925,44.99333,2342,12,5,20,39,0,3.65,5.0,fr,53247,46,2277132,1,3,Active Shallow Crust,0.0,89.99046,0.0,12/05/2342 +3.87925,44.99333,5629,10,29,22,45,53,3.65,5.0,fr,53248,112,2277132,1,3,Active Shallow Crust,0.0,89.99046,0.0,10/29/5629 +3.87925,44.99333,9554,5,25,19,16,54,3.65,5.0,fr,53249,191,2277135,1,1,Active Shallow Crust,240.0007,58.01303,0.0,05/25/9554 +3.87925,44.99333,9910,5,13,11,55,18,3.75,5.0,fr,53250,198,2277144,1,1,Active Shallow Crust,0.0,89.98867,0.0,05/13/9910 +3.87925,44.99333,5759,4,12,9,39,51,3.85,15.0,fr,53251,115,2277157,1,1,Active Shallow Crust,0.0,89.98991,0.0,04/12/5759 +3.87925,44.99333,9453,3,24,0,37,42,3.85,15.0,fr,53252,189,2277166,1,1,Active Shallow Crust,128.8958,89.99369,0.0,03/24/9453 +3.87925,44.99333,2604,7,30,20,5,24,3.95,5.0,fr,53253,52,2277168,1,2,Active Shallow Crust,0.0,89.991,0.0,07/30/2604 +3.87925,44.99333,5033,11,17,6,3,42,3.95,5.0,fr,53254,100,2277168,1,2,Active Shallow Crust,0.0,89.991,0.0,11/17/5033 +3.87925,44.99333,6013,7,30,9,5,56,3.95,27.5,fr,53255,120,2277176,1,1,Active Shallow Crust,0.0,89.9909,-90.0,07/30/6013 +3.87925,44.99333,2932,1,25,16,55,11,4.05,27.5,fr,53256,58,2277182,1,1,Active Shallow Crust,0.0,89.98997,0.0,01/25/2932 +3.87925,44.99333,671,7,2,4,36,28,4.45,15.0,fr,53257,13,2277229,1,1,Active Shallow Crust,0.0,89.98988,0.0,07/02/0671 +3.87925,44.99333,8342,3,31,15,28,58,4.95,5.0,fr,53258,166,2277294,1,1,Active Shallow Crust,0.0,89.98992,-90.0,03/31/8342 +0.38202,51.08791,9415,3,5,0,46,29,3.55,15.0,fr,53259,188,2277601,1,1,Active Shallow Crust,0.0,89.9901,0.0,03/05/9415 +0.38202,51.08791,5793,6,22,9,21,25,3.65,5.0,fr,53260,115,2277612,1,1,Active Shallow Crust,0.0,89.99012,0.0,06/22/5793 +0.38202,51.08791,5146,6,10,12,14,55,4.05,5.0,fr,53261,102,2277663,1,1,Active Shallow Crust,240.0068,58.00595,0.0,06/10/5146 +0.38202,51.08791,4256,11,29,22,6,56,4.15,5.0,fr,53262,85,2277672,1,1,Active Shallow Crust,0.0,89.99008,0.0,11/29/4256 +0.38202,51.08791,8248,4,1,16,46,8,4.85,15.0,fr,53263,164,2277760,1,1,Active Shallow Crust,240.0192,58.0027,0.0,04/01/8248 +5.05842,45.02841,8574,5,12,9,20,27,3.55,5.0,fr,53264,171,2278080,1,2,Active Shallow Crust,0.0,89.99287,0.0,05/12/8574 +5.05842,45.02841,3530,3,14,18,8,50,3.55,5.0,fr,53265,70,2278080,1,2,Active Shallow Crust,0.0,89.99287,0.0,03/14/3530 +5.05842,45.02841,4529,3,23,9,37,40,3.55,5.0,fr,53266,90,2278083,1,1,Active Shallow Crust,240.0118,57.99851,0.0,03/23/4529 +5.05842,45.02841,5394,9,8,17,28,14,3.55,5.0,fr,53267,107,2278086,1,1,Active Shallow Crust,0.0,89.99279,-90.0,09/08/5394 +5.05842,45.02841,3279,5,17,7,33,56,3.65,5.0,fr,53268,65,2278092,1,1,Active Shallow Crust,0.0,89.9873,0.0,05/17/3279 +5.05842,45.02841,931,1,11,15,27,20,3.65,15.0,fr,53269,18,2278093,1,1,Active Shallow Crust,0.0,89.9873,0.0,01/11/0931 +5.05842,45.02841,6162,9,26,19,10,25,3.65,15.0,fr,53270,123,2278102,1,1,Active Shallow Crust,128.9001,89.96349,0.0,09/26/6162 +5.05842,45.02841,9449,10,20,2,10,28,3.75,5.0,fr,53271,188,2278104,1,1,Active Shallow Crust,0.0,89.98868,0.0,10/20/9449 +5.05842,45.02841,5600,6,2,11,38,37,3.75,5.0,fr,53272,111,2278110,1,1,Active Shallow Crust,0.0,89.98855,-90.0,06/02/5600 +5.05842,45.02841,8087,9,5,5,54,42,3.85,5.0,fr,53273,161,2278116,1,2,Active Shallow Crust,0.0,89.98991,0.0,09/05/8087 +5.05842,45.02841,297,11,18,16,4,8,3.85,5.0,fr,53274,5,2278116,1,2,Active Shallow Crust,0.0,89.98991,0.0,11/18/0297 +5.05842,45.02841,6507,7,9,16,42,52,3.85,15.0,fr,53275,130,2278117,1,1,Active Shallow Crust,0.0,89.98991,0.0,07/09/6507 +5.05842,45.02841,2556,11,9,15,23,13,3.85,5.0,fr,53276,51,2278119,1,1,Active Shallow Crust,240.0111,57.99738,0.0,11/09/2556 +5.05842,45.02841,3673,10,31,15,42,24,3.95,5.0,fr,53277,73,2278128,1,4,Active Shallow Crust,0.0,89.991,0.0,10/31/3673 +5.05842,45.02841,3414,10,10,22,39,3,3.95,5.0,fr,53278,68,2278128,1,4,Active Shallow Crust,0.0,89.991,0.0,10/10/3414 +5.05842,45.02841,84,7,21,22,52,2,3.95,5.0,fr,53279,1,2278128,1,4,Active Shallow Crust,0.0,89.991,0.0,07/21/0084 +5.05842,45.02841,7169,5,21,7,28,25,3.95,5.0,fr,53280,143,2278128,1,4,Active Shallow Crust,0.0,89.991,0.0,05/21/7169 +5.05842,45.02841,5294,7,4,22,47,43,4.25,15.0,fr,53281,105,2278174,1,1,Active Shallow Crust,128.8946,89.98089,0.0,07/04/5294 +5.05842,45.02841,2513,10,17,15,26,7,4.35,27.5,fr,53282,50,2278181,1,1,Active Shallow Crust,240.0076,57.99617,0.0,10/17/2513 +5.05842,45.02841,3732,4,26,20,46,10,4.45,27.5,fr,53283,74,2278190,1,1,Active Shallow Crust,0.0,89.98988,0.0,04/26/3732 +-2.98976,46.43822,7750,11,12,22,26,9,4.05,5.0,fr,53284,154,2278620,1,1,Active Shallow Crust,0.0,89.99023,0.0,11/12/7750 +8.68637,48.4356,8411,11,3,17,56,33,3.55,5.0,fr,53285,168,2279040,1,2,Active Shallow Crust,0.0,89.98662,0.0,11/03/8411 +8.68637,48.4356,9118,6,4,22,48,4,3.55,5.0,fr,53286,182,2279040,1,2,Active Shallow Crust,0.0,89.98662,0.0,06/04/9118 +8.68637,48.4356,6013,2,23,21,55,28,3.55,15.0,fr,53287,120,2279041,1,1,Active Shallow Crust,0.0,89.98662,0.0,02/23/6013 +8.68637,48.4356,7512,10,30,23,5,50,3.55,15.0,fr,53288,150,2279044,1,1,Active Shallow Crust,240.0127,57.99851,0.0,10/30/7512 +8.68637,48.4356,8829,3,7,12,12,3,3.65,5.0,fr,53289,176,2279052,1,2,Active Shallow Crust,0.0,89.98808,0.0,03/07/8829 +8.68637,48.4356,3314,2,27,6,48,49,3.65,5.0,fr,53290,66,2279052,1,2,Active Shallow Crust,0.0,89.98808,0.0,02/27/3314 +8.68637,48.4356,7028,10,23,11,34,45,3.65,5.0,fr,53291,140,2279058,1,1,Active Shallow Crust,0.0,89.98794,-90.0,10/23/7028 +8.68637,48.4356,3447,2,23,22,11,58,3.75,5.0,fr,53292,68,2279064,1,1,Active Shallow Crust,0.0,89.98937,0.0,02/23/3447 +8.68637,48.4356,7737,7,11,21,36,8,3.85,5.0,fr,53293,154,2279076,1,2,Active Shallow Crust,0.0,89.99052,0.0,07/11/7737 +8.68637,48.4356,8700,5,4,16,36,24,3.85,5.0,fr,53294,173,2279076,1,2,Active Shallow Crust,0.0,89.99052,0.0,05/04/8700 +8.68637,48.4356,538,6,25,12,37,16,3.85,15.0,fr,53295,10,2279077,1,1,Active Shallow Crust,0.0,89.99052,0.0,06/25/0538 +8.68637,48.4356,5444,3,20,5,36,46,3.95,5.0,fr,53296,108,2279088,1,1,Active Shallow Crust,0.0,89.99155,0.0,03/20/5444 +8.68637,48.4356,899,10,28,15,40,36,4.05,5.0,fr,53297,17,2279103,1,1,Active Shallow Crust,240.006,58.0074,0.0,10/28/0899 +8.68637,48.4356,2142,5,6,13,26,47,4.05,27.5,fr,53298,42,2279105,1,1,Active Shallow Crust,240.006,58.00737,0.0,05/06/2142 +8.68637,48.4356,4525,5,1,6,42,31,4.45,27.5,fr,53299,90,2279150,1,1,Active Shallow Crust,0.0,89.9905,0.0,05/01/4525 +8.68637,48.4356,1052,11,1,17,21,36,4.55,5.0,fr,53300,21,2279160,1,1,Active Shallow Crust,0.0,89.99154,0.0,11/01/1052 +7.25404,48.7861,5654,4,6,18,26,59,3.55,15.0,fr,53301,113,2279521,1,1,Active Shallow Crust,0.0,89.98671,0.0,04/06/5654 +7.25404,48.7861,8434,10,1,6,20,56,3.55,5.0,fr,53302,168,2279526,1,1,Active Shallow Crust,0.0,89.99328,-90.0,10/01/8434 +7.25404,48.7861,7728,4,15,6,56,51,4.15,5.0,fr,53303,154,2279595,1,1,Active Shallow Crust,240.0089,57.99776,0.0,04/15/7728 +7.25404,48.7861,4136,12,1,16,13,54,4.45,5.0,fr,53304,82,2279631,1,1,Active Shallow Crust,240.0057,57.99492,0.0,12/01/4136 +7.25404,48.7861,6346,8,6,1,51,37,4.45,15.0,fr,53305,126,2279635,1,1,Active Shallow Crust,0.0,89.99046,-90.0,08/06/6346 +7.25404,48.7861,9047,6,24,13,26,47,4.45,15.0,fr,53306,180,2279638,1,1,Active Shallow Crust,128.8917,89.99411,0.0,06/24/9047 +7.25404,48.7861,9135,11,9,10,56,56,4.55,5.0,fr,53307,182,2279649,1,1,Active Shallow Crust,128.8934,89.98577,0.0,11/09/9135 +2.38616,42.24851,5771,2,6,8,22,40,3.55,5.0,fr,53308,115,2280480,1,5,Active Shallow Crust,0.0,89.9888,0.0,02/06/5771 +2.38616,42.24851,4528,2,17,6,55,49,3.55,5.0,fr,53309,90,2280480,1,5,Active Shallow Crust,0.0,89.9888,0.0,02/17/4528 +2.38616,42.24851,2485,2,28,2,10,23,3.55,5.0,fr,53310,49,2280480,1,5,Active Shallow Crust,0.0,89.9888,0.0,02/28/2485 +2.38616,42.24851,5895,6,23,22,39,21,3.55,5.0,fr,53311,117,2280480,1,5,Active Shallow Crust,0.0,89.9888,0.0,06/23/5895 +2.38616,42.24851,5741,12,30,23,29,7,3.55,5.0,fr,53312,114,2280480,1,5,Active Shallow Crust,0.0,89.9888,0.0,12/30/5741 +2.38616,42.24851,5652,1,18,7,28,15,3.55,5.0,fr,53313,113,2280483,1,2,Active Shallow Crust,240.0112,57.99822,0.0,01/18/5652 +2.38616,42.24851,5765,3,23,17,16,49,3.55,5.0,fr,53314,115,2280483,1,2,Active Shallow Crust,240.0112,57.99822,0.0,03/23/5765 +2.38616,42.24851,4415,1,26,3,54,18,3.55,5.0,fr,53315,88,2280486,1,1,Active Shallow Crust,0.0,89.98867,-90.0,01/26/4415 +2.38616,42.24851,4395,4,26,12,8,42,3.55,15.0,fr,53316,87,2280490,1,1,Active Shallow Crust,128.8962,89.9944,0.0,04/26/4395 +2.38616,42.24851,7368,1,20,15,39,47,3.65,5.0,fr,53317,147,2280492,1,3,Active Shallow Crust,0.0,89.99002,0.0,01/20/7368 +2.38616,42.24851,9473,9,1,20,23,20,3.65,5.0,fr,53318,189,2280492,1,3,Active Shallow Crust,0.0,89.99002,0.0,09/01/9473 +2.38616,42.24851,3163,11,27,4,49,38,3.65,5.0,fr,53319,63,2280492,1,3,Active Shallow Crust,0.0,89.99002,0.0,11/27/3163 +2.38616,42.24851,3755,12,25,0,26,18,3.65,15.0,fr,53320,75,2280493,1,2,Active Shallow Crust,0.0,89.99002,0.0,12/25/3755 +2.38616,42.24851,1378,11,16,13,39,30,3.65,15.0,fr,53321,27,2280493,1,2,Active Shallow Crust,0.0,89.99002,0.0,11/16/1378 +2.38616,42.24851,7400,6,29,4,5,19,3.65,27.5,fr,53322,147,2280494,1,1,Active Shallow Crust,0.0,89.99002,0.0,06/29/7400 +2.38616,42.24851,8815,8,16,13,8,7,3.65,15.0,fr,53323,176,2280499,1,2,Active Shallow Crust,0.0,89.98991,-90.0,08/16/8815 +2.38616,42.24851,4714,2,1,19,20,49,3.65,15.0,fr,53324,94,2280499,1,2,Active Shallow Crust,0.0,89.98991,-90.0,02/01/4714 +2.38616,42.24851,8631,6,7,10,49,44,3.75,5.0,fr,53325,172,2280504,1,3,Active Shallow Crust,0.0,89.9911,0.0,06/07/8631 +2.38616,42.24851,5839,4,14,0,18,1,3.75,5.0,fr,53326,116,2280504,1,3,Active Shallow Crust,0.0,89.9911,0.0,04/14/5839 +2.38616,42.24851,4756,7,15,3,4,17,3.75,5.0,fr,53327,95,2280504,1,3,Active Shallow Crust,0.0,89.9911,0.0,07/15/4756 +2.38616,42.24851,9282,8,6,18,40,42,3.75,15.0,fr,53328,185,2280505,1,2,Active Shallow Crust,0.0,89.9911,0.0,08/06/9282 +2.38616,42.24851,5662,6,23,6,26,15,3.75,15.0,fr,53329,113,2280505,1,2,Active Shallow Crust,0.0,89.9911,0.0,06/23/5662 +2.38616,42.24851,3174,1,26,11,33,24,3.75,27.5,fr,53330,63,2280515,1,1,Active Shallow Crust,128.8969,89.96741,0.0,01/26/3174 +2.38616,42.24851,572,8,17,12,14,53,3.85,5.0,fr,53331,11,2280516,1,1,Active Shallow Crust,0.0,89.98943,0.0,08/17/0572 +2.38616,42.24851,3243,11,17,17,53,35,3.85,5.0,fr,53332,64,2280519,1,1,Active Shallow Crust,240.0102,57.99771,0.0,11/17/3243 +2.38616,42.24851,4948,1,6,3,0,34,3.95,15.0,fr,53333,98,2280529,1,1,Active Shallow Crust,0.0,89.99058,0.0,01/06/4948 +2.38616,42.24851,801,9,13,9,6,21,3.95,5.0,fr,53334,16,2280534,1,1,Active Shallow Crust,0.0,89.99047,-90.0,09/13/0801 +2.38616,42.24851,4578,2,24,23,40,0,4.05,15.0,fr,53335,91,2280541,1,1,Active Shallow Crust,0.0,89.98951,0.0,02/24/4578 +2.38616,42.24851,2632,11,11,8,17,52,4.05,5.0,fr,53336,52,2280543,1,1,Active Shallow Crust,240.0052,58.00576,0.0,11/11/2632 +2.38616,42.24851,9910,10,19,20,54,41,4.15,5.0,fr,53337,198,2280555,1,1,Active Shallow Crust,240.0074,57.99721,0.0,10/19/9910 +2.38616,42.24851,4263,6,10,23,26,9,4.25,15.0,fr,53338,85,2280565,1,1,Active Shallow Crust,0.0,89.99,0.0,06/10/4263 +2.38616,42.24851,9357,8,30,14,23,53,4.35,5.0,fr,53339,187,2280579,1,1,Active Shallow Crust,240.0077,57.99586,0.0,08/30/9357 +2.38616,42.24851,1147,5,27,14,59,42,4.35,15.0,fr,53340,22,2280580,1,1,Active Shallow Crust,240.0077,57.99586,0.0,05/27/1147 +2.38616,42.24851,6995,2,2,13,22,38,4.45,5.0,fr,53341,139,2280588,1,1,Active Shallow Crust,0.0,89.9894,0.0,02/02/6995 +2.38616,42.24851,5981,5,20,12,31,50,4.45,15.0,fr,53342,119,2280595,1,1,Active Shallow Crust,0.0,89.99062,-90.0,05/20/5981 +2.38616,42.24851,887,1,8,21,44,12,4.55,5.0,fr,53343,17,2280603,1,1,Active Shallow Crust,240.0082,57.99721,0.0,01/08/0887 +2.38616,42.24851,1116,8,15,1,30,47,4.65,15.0,fr,53344,22,2280613,1,2,Active Shallow Crust,0.0,89.98948,0.0,08/15/1116 +2.38616,42.24851,5867,8,29,22,56,32,4.65,15.0,fr,53345,117,2280613,1,2,Active Shallow Crust,0.0,89.98948,0.0,08/29/5867 +2.38616,42.24851,8561,2,9,9,49,7,4.85,15.0,fr,53346,171,2280637,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/09/8561 +2.38616,42.24851,8346,6,13,1,39,54,4.95,5.0,fr,53347,166,2280648,1,1,Active Shallow Crust,0.0,89.99032,0.0,06/13/8346 +2.38616,42.24851,7677,11,27,9,39,16,5.05,5.0,fr,53348,153,2280663,1,1,Active Shallow Crust,240.0202,57.99723,0.0,11/27/7677 +2.38616,42.24851,5943,8,22,6,4,23,5.55,5.0,fr,53349,118,2280720,1,1,Active Shallow Crust,0.0,89.98992,0.0,08/22/5943 +2.32658,53.07136,1026,10,23,9,45,2,4.75,5.0,fr,53350,20,2281104,1,1,Active Shallow Crust,0.0,89.9901,0.0,10/23/1026 +6.50068,44.81896,6593,8,15,6,13,3,3.55,5.0,fr,53351,131,2281440,1,3,Active Shallow Crust,0.0,89.99284,0.0,08/15/6593 +6.50068,44.81896,4621,12,15,0,17,38,3.55,5.0,fr,53352,92,2281440,1,3,Active Shallow Crust,0.0,89.99284,0.0,12/15/4621 +6.50068,44.81896,1261,7,1,8,40,11,3.55,5.0,fr,53353,25,2281440,1,3,Active Shallow Crust,0.0,89.99284,0.0,07/01/1261 +6.50068,44.81896,138,3,5,9,53,58,3.55,15.0,fr,53354,2,2281441,1,2,Active Shallow Crust,0.0,89.99284,0.0,03/05/0138 +6.50068,44.81896,8160,12,29,14,16,53,3.55,15.0,fr,53355,163,2281441,1,2,Active Shallow Crust,0.0,89.99284,0.0,12/29/8160 +6.50068,44.81896,5590,11,15,12,56,11,3.65,5.0,fr,53356,111,2281452,1,4,Active Shallow Crust,0.0,89.98725,0.0,11/15/5590 +6.50068,44.81896,1798,4,22,21,11,25,3.65,5.0,fr,53357,35,2281452,1,4,Active Shallow Crust,0.0,89.98725,0.0,04/22/1798 +6.50068,44.81896,3784,1,30,22,5,37,3.65,5.0,fr,53358,75,2281452,1,4,Active Shallow Crust,0.0,89.98725,0.0,01/30/3784 +6.50068,44.81896,818,9,26,2,38,55,3.65,5.0,fr,53359,16,2281452,1,4,Active Shallow Crust,0.0,89.98725,0.0,09/26/0818 +6.50068,44.81896,6591,10,14,13,29,22,3.65,15.0,fr,53360,131,2281453,1,1,Active Shallow Crust,0.0,89.98725,0.0,10/14/6591 +6.50068,44.81896,3937,10,6,10,59,14,3.65,5.0,fr,53361,78,2281455,1,1,Active Shallow Crust,240.0003,58.01374,0.0,10/06/3937 +6.50068,44.81896,5389,2,6,23,54,0,3.65,27.5,fr,53362,107,2281460,1,1,Active Shallow Crust,0.0,89.9871,-90.0,02/06/5389 +6.50068,44.81896,9399,10,23,18,34,44,3.85,5.0,fr,53363,187,2281476,1,1,Active Shallow Crust,0.0,89.98988,0.0,10/23/9399 +6.50068,44.81896,9723,7,20,21,29,58,3.85,5.0,fr,53364,194,2281479,1,1,Active Shallow Crust,240.0105,57.99856,0.0,07/20/9723 +6.50068,44.81896,1410,8,5,7,16,40,3.95,5.0,fr,53365,28,2281488,1,2,Active Shallow Crust,0.0,89.99097,0.0,08/05/1410 +6.50068,44.81896,6090,4,22,13,53,32,3.95,5.0,fr,53366,121,2281488,1,2,Active Shallow Crust,0.0,89.99097,0.0,04/22/6090 +6.50068,44.81896,5797,11,9,12,44,17,4.05,5.0,fr,53367,115,2281500,1,1,Active Shallow Crust,0.0,89.99196,0.0,11/09/5797 +6.50068,44.81896,1264,11,20,15,42,6,4.05,15.0,fr,53368,25,2281501,1,1,Active Shallow Crust,0.0,89.99196,0.0,11/20/1264 +6.50068,44.81896,1652,10,20,1,26,57,4.05,27.5,fr,53369,33,2281502,1,1,Active Shallow Crust,0.0,89.99196,0.0,10/20/1652 +6.50068,44.81896,9371,1,7,23,18,54,4.15,5.0,fr,53370,187,2281518,1,1,Active Shallow Crust,0.0,89.98912,-90.0,01/07/9371 +6.50068,44.81896,9683,5,30,4,11,16,4.25,5.0,fr,53371,193,2281524,1,1,Active Shallow Crust,0.0,89.99042,0.0,05/30/9683 +6.50068,44.81896,4457,10,16,20,20,29,4.45,5.0,fr,53372,89,2281548,1,1,Active Shallow Crust,0.0,89.98985,0.0,10/16/4457 +6.50068,44.81896,9637,10,17,7,55,14,4.45,15.0,fr,53373,192,2281549,1,1,Active Shallow Crust,0.0,89.98985,0.0,10/17/9637 +6.50068,44.81896,629,6,28,1,44,29,4.65,15.0,fr,53374,12,2281573,1,1,Active Shallow Crust,0.0,89.98992,0.0,06/28/0629 +6.50068,44.81896,4429,7,27,10,20,50,4.85,27.5,fr,53375,88,2281598,1,1,Active Shallow Crust,0.0,89.99039,0.0,07/27/4429 +6.50068,44.81896,2859,1,23,18,6,5,5.45,15.0,fr,53376,57,2281669,1,1,Active Shallow Crust,0.0,89.99036,0.0,01/23/2859 +6.50068,44.81896,6212,4,8,8,29,26,5.65,5.0,fr,53377,124,2281692,1,1,Active Shallow Crust,0.0,89.98979,0.0,04/08/6212 +5.10437,49.27041,5151,12,28,12,53,53,3.65,5.0,fr,53378,103,2281932,1,1,Active Shallow Crust,0.0,89.98827,0.0,12/28/5151 +-1.30334,43.03739,8686,5,18,8,30,17,3.55,5.0,fr,53379,173,2282400,1,2,Active Shallow Crust,0.0,89.99078,0.0,05/18/8686 +-1.30334,43.03739,336,5,20,8,50,35,3.55,5.0,fr,53380,6,2282400,1,2,Active Shallow Crust,0.0,89.99078,0.0,05/20/0336 +-1.30334,43.03739,1033,7,13,18,56,42,3.55,27.5,fr,53381,20,2282402,1,1,Active Shallow Crust,0.0,89.99078,0.0,07/13/1033 +-1.30334,43.03739,7215,4,14,16,47,9,3.55,5.0,fr,53382,144,2282403,1,1,Active Shallow Crust,240.0119,57.99808,0.0,04/14/7215 +-1.30334,43.03739,9670,10,4,15,49,0,3.55,15.0,fr,53383,193,2282404,1,1,Active Shallow Crust,240.0119,57.99808,0.0,10/04/9670 +-1.30334,43.03739,7701,7,10,22,27,17,3.55,5.0,fr,53384,154,2282406,1,1,Active Shallow Crust,0.0,89.99068,-90.0,07/10/7701 +-1.30334,43.03739,8677,8,10,0,40,55,3.55,15.0,fr,53385,173,2282407,1,1,Active Shallow Crust,0.0,89.99068,-90.0,08/10/8677 +-1.30334,43.03739,6166,2,6,9,2,16,3.65,5.0,fr,53386,123,2282412,1,3,Active Shallow Crust,0.0,89.99015,0.0,02/06/6166 +-1.30334,43.03739,2689,1,7,5,42,33,3.65,5.0,fr,53387,53,2282412,1,3,Active Shallow Crust,0.0,89.99015,0.0,01/07/2689 +-1.30334,43.03739,532,10,7,2,7,6,3.65,5.0,fr,53388,10,2282412,1,3,Active Shallow Crust,0.0,89.99015,0.0,10/07/0532 +-1.30334,43.03739,8136,10,4,18,15,18,3.65,15.0,fr,53389,162,2282413,1,1,Active Shallow Crust,0.0,89.99015,0.0,10/04/8136 +-1.30334,43.03739,94,1,19,14,57,1,3.75,5.0,fr,53390,1,2282424,1,3,Active Shallow Crust,0.0,89.98975,0.0,01/19/0094 +-1.30334,43.03739,8954,1,20,22,22,14,3.75,5.0,fr,53391,179,2282424,1,3,Active Shallow Crust,0.0,89.98975,0.0,01/20/8954 +-1.30334,43.03739,7729,9,9,16,16,51,3.75,5.0,fr,53392,154,2282424,1,3,Active Shallow Crust,0.0,89.98975,0.0,09/09/7729 +-1.30334,43.03739,551,4,26,7,28,44,3.75,27.5,fr,53393,11,2282426,1,1,Active Shallow Crust,0.0,89.98975,0.0,04/26/0551 +-1.30334,43.03739,603,9,28,21,37,6,3.75,5.0,fr,53394,12,2282427,1,2,Active Shallow Crust,240.0078,58.01758,0.0,09/28/0603 +-1.30334,43.03739,820,7,27,23,27,39,3.75,5.0,fr,53395,16,2282427,1,2,Active Shallow Crust,240.0078,58.01758,0.0,07/27/0820 +-1.30334,43.03739,6724,7,23,5,9,15,3.75,5.0,fr,53396,134,2282430,1,1,Active Shallow Crust,0.0,89.98964,-90.0,07/23/6724 +-1.30334,43.03739,6250,2,19,19,4,48,3.75,5.0,fr,53397,124,2282433,1,1,Active Shallow Crust,128.8968,89.96743,0.0,02/19/6250 +-1.30334,43.03739,6661,2,16,11,54,53,3.85,5.0,fr,53398,133,2282436,1,3,Active Shallow Crust,0.0,89.98956,0.0,02/16/6661 +-1.30334,43.03739,2330,12,3,0,29,51,3.85,5.0,fr,53399,46,2282436,1,3,Active Shallow Crust,0.0,89.98956,0.0,12/03/2330 +-1.30334,43.03739,5412,5,5,3,38,58,3.85,5.0,fr,53400,108,2282436,1,3,Active Shallow Crust,0.0,89.98956,0.0,05/05/5412 +-1.30334,43.03739,232,10,24,6,50,34,3.85,15.0,fr,53401,4,2282437,1,1,Active Shallow Crust,0.0,89.98956,0.0,10/24/0232 +-1.30334,43.03739,2781,1,5,1,41,0,3.85,27.5,fr,53402,55,2282438,1,1,Active Shallow Crust,0.0,89.98956,0.0,01/05/2781 +-1.30334,43.03739,238,7,29,23,36,34,3.85,5.0,fr,53403,4,2282445,1,1,Active Shallow Crust,128.8959,89.99413,0.0,07/29/0238 +-1.30334,43.03739,9917,11,6,10,40,56,3.85,15.0,fr,53404,198,2282446,1,1,Active Shallow Crust,128.8959,89.99413,0.0,11/06/9917 +-1.30334,43.03739,4780,7,9,8,10,2,3.95,5.0,fr,53405,95,2282448,1,1,Active Shallow Crust,0.0,89.98954,0.0,07/09/4780 +-1.30334,43.03739,5336,11,9,0,39,22,3.95,15.0,fr,53406,106,2282449,1,2,Active Shallow Crust,0.0,89.98954,0.0,11/09/5336 +-1.30334,43.03739,4598,8,22,11,37,57,3.95,15.0,fr,53407,91,2282449,1,2,Active Shallow Crust,0.0,89.98954,0.0,08/22/4598 +-1.30334,43.03739,8760,7,12,7,38,15,3.95,5.0,fr,53408,175,2282451,1,1,Active Shallow Crust,240.0191,58.00491,0.0,07/12/8760 +-1.30334,43.03739,8829,8,16,12,25,29,4.05,5.0,fr,53409,176,2282460,1,3,Active Shallow Crust,0.0,89.98964,0.0,08/16/8829 +-1.30334,43.03739,4311,3,16,18,32,19,4.05,5.0,fr,53410,86,2282460,1,3,Active Shallow Crust,0.0,89.98964,0.0,03/16/4311 +-1.30334,43.03739,3258,3,5,19,59,48,4.05,5.0,fr,53411,65,2282460,1,3,Active Shallow Crust,0.0,89.98964,0.0,03/05/3258 +-1.30334,43.03739,4231,8,29,5,31,28,4.05,15.0,fr,53412,84,2282464,1,1,Active Shallow Crust,240.0054,58.00556,0.0,08/29/4231 +-1.30334,43.03739,6323,9,24,20,18,54,4.15,15.0,fr,53413,126,2282473,1,2,Active Shallow Crust,0.0,89.98984,0.0,09/24/6323 +-1.30334,43.03739,6532,10,1,3,36,35,4.15,15.0,fr,53414,130,2282473,1,2,Active Shallow Crust,0.0,89.98984,0.0,10/01/6532 +-1.30334,43.03739,9815,4,27,21,9,22,4.15,5.0,fr,53415,196,2282475,1,1,Active Shallow Crust,240.0078,57.99726,0.0,04/27/9815 +-1.30334,43.03739,9663,8,3,22,14,4,4.15,27.5,fr,53416,193,2282477,1,1,Active Shallow Crust,240.0078,57.99724,0.0,08/03/9663 +-1.30334,43.03739,9870,1,6,10,57,15,4.25,5.0,fr,53417,197,2282487,1,1,Active Shallow Crust,240.0067,57.99403,0.0,01/06/9870 +-1.30334,43.03739,9320,2,8,11,38,15,4.35,5.0,fr,53418,186,2282496,1,1,Active Shallow Crust,0.0,89.98973,0.0,02/08/9320 +-1.30334,43.03739,5018,10,16,8,41,35,4.45,5.0,fr,53419,100,2282508,1,1,Active Shallow Crust,0.0,89.9902,0.0,10/16/5018 +-1.30334,43.03739,4851,10,6,1,18,24,4.45,15.0,fr,53420,97,2282509,1,1,Active Shallow Crust,0.0,89.9902,0.0,10/06/4851 +-1.30334,43.03739,3332,10,14,11,17,42,4.45,15.0,fr,53421,66,2282518,1,1,Active Shallow Crust,128.893,89.99346,0.0,10/14/3332 +-1.30334,43.03739,2556,9,10,15,10,39,4.55,5.0,fr,53422,51,2282526,1,2,Active Shallow Crust,0.0,89.98998,-90.0,09/10/2556 +-1.30334,43.03739,5471,2,22,15,44,49,4.55,5.0,fr,53423,109,2282526,1,2,Active Shallow Crust,0.0,89.98998,-90.0,02/22/5471 +-1.30334,43.03739,9289,2,4,3,34,46,4.65,15.0,fr,53424,185,2282536,1,1,Active Shallow Crust,240.0098,57.99397,0.0,02/04/9289 +-1.30334,43.03739,6586,8,12,17,5,50,4.65,5.0,fr,53425,131,2282538,1,2,Active Shallow Crust,0.0,89.99002,-90.0,08/12/6586 +-1.30334,43.03739,8063,5,7,7,26,18,4.65,5.0,fr,53426,161,2282538,1,2,Active Shallow Crust,0.0,89.99002,-90.0,05/07/8063 +-1.30334,43.03739,2039,5,7,3,18,15,4.75,5.0,fr,53427,40,2282544,1,1,Active Shallow Crust,0.0,89.98981,0.0,05/07/2039 +-1.30334,43.03739,2712,11,29,12,15,45,4.85,15.0,fr,53428,54,2282557,1,1,Active Shallow Crust,0.0,89.9901,0.0,11/29/2712 +-1.30334,43.03739,6855,6,16,17,39,3,4.85,5.0,fr,53429,137,2282559,1,1,Active Shallow Crust,240.0158,58.00207,0.0,06/16/6855 +-1.30334,43.03739,6569,8,1,2,34,55,5.15,5.0,fr,53430,131,2282592,1,1,Active Shallow Crust,0.0,89.99007,0.0,08/01/6569 +-1.30334,43.03739,602,8,28,5,25,40,5.15,15.0,fr,53431,12,2282593,1,1,Active Shallow Crust,0.0,89.99007,0.0,08/28/0602 +-1.30334,43.03739,738,9,16,9,27,28,5.25,5.0,fr,53432,14,2282604,1,1,Active Shallow Crust,0.0,89.9901,0.0,09/16/0738 +7.23567,49.66384,6235,10,3,4,58,20,3.55,5.0,fr,53433,124,2282880,1,2,Active Shallow Crust,0.0,89.98695,0.0,10/03/6235 +7.23567,49.66384,7388,11,15,14,34,0,3.55,5.0,fr,53434,147,2282880,1,2,Active Shallow Crust,0.0,89.98695,0.0,11/15/7388 +7.23567,49.66384,3617,3,25,11,31,43,3.65,15.0,fr,53435,72,2282893,1,1,Active Shallow Crust,0.0,89.98837,0.0,03/25/3617 +7.23567,49.66384,6332,9,29,6,9,17,3.75,5.0,fr,53436,126,2282904,1,1,Active Shallow Crust,0.0,89.98963,0.0,09/29/6332 +7.23567,49.66384,2843,11,6,15,57,29,3.85,5.0,fr,53437,56,2282916,1,1,Active Shallow Crust,0.0,89.99076,0.0,11/06/2843 +7.23567,49.66384,3370,3,13,1,22,49,3.85,5.0,fr,53438,67,2282919,1,2,Active Shallow Crust,240.011,57.99846,0.0,03/13/3370 +7.23567,49.66384,4429,1,20,10,50,55,3.85,5.0,fr,53439,88,2282919,1,2,Active Shallow Crust,240.011,57.99846,0.0,01/20/4429 +7.23567,49.66384,7428,12,8,9,23,20,3.95,15.0,fr,53440,148,2282929,1,1,Active Shallow Crust,0.0,89.99176,0.0,12/08/7428 +7.23567,49.66384,1185,11,12,14,53,8,4.55,27.5,fr,53441,23,2283011,1,1,Active Shallow Crust,128.8931,89.98582,0.0,11/12/1185 +-6.13844,48.9823,1229,5,23,23,59,0,4.55,27.5,fr,53442,24,2283962,1,1,Active Shallow Crust,0.0,89.98953,0.0,05/23/1229 +7.01442,46.58116,9211,7,14,17,27,22,3.55,5.0,fr,53443,184,2284320,1,5,Active Shallow Crust,0.0,89.99307,0.0,07/14/9211 +7.01442,46.58116,5420,3,16,5,57,26,3.55,5.0,fr,53444,108,2284320,1,5,Active Shallow Crust,0.0,89.99307,0.0,03/16/5420 +7.01442,46.58116,4846,9,26,19,23,47,3.55,5.0,fr,53445,96,2284320,1,5,Active Shallow Crust,0.0,89.99307,0.0,09/26/4846 +7.01442,46.58116,5093,1,14,18,16,48,3.55,5.0,fr,53446,101,2284320,1,5,Active Shallow Crust,0.0,89.99307,0.0,01/14/5093 +7.01442,46.58116,3213,6,16,2,35,56,3.55,5.0,fr,53447,64,2284320,1,5,Active Shallow Crust,0.0,89.99307,0.0,06/16/3213 +7.01442,46.58116,3254,12,6,3,53,39,3.55,15.0,fr,53448,65,2284321,1,2,Active Shallow Crust,0.0,89.99307,0.0,12/06/3254 +7.01442,46.58116,1907,12,4,7,56,11,3.55,15.0,fr,53449,38,2284321,1,2,Active Shallow Crust,0.0,89.99307,0.0,12/04/1907 +7.01442,46.58116,7685,6,20,0,7,58,3.55,27.5,fr,53450,153,2284322,1,1,Active Shallow Crust,0.0,89.99307,0.0,06/20/7685 +7.01442,46.58116,6217,8,24,9,34,15,3.55,5.0,fr,53451,124,2284323,1,5,Active Shallow Crust,240.0126,57.99767,0.0,08/24/6217 +7.01442,46.58116,4098,3,19,11,9,36,3.55,5.0,fr,53452,81,2284323,1,5,Active Shallow Crust,240.0126,57.99767,0.0,03/19/4098 +7.01442,46.58116,9291,12,27,19,13,46,3.55,5.0,fr,53453,185,2284323,1,5,Active Shallow Crust,240.0126,57.99767,0.0,12/27/9291 +7.01442,46.58116,8361,5,25,23,32,34,3.55,5.0,fr,53454,167,2284323,1,5,Active Shallow Crust,240.0126,57.99767,0.0,05/25/8361 +7.01442,46.58116,9849,11,8,7,48,35,3.55,5.0,fr,53455,196,2284323,1,5,Active Shallow Crust,240.0126,57.99767,0.0,11/08/9849 +7.01442,46.58116,6764,10,4,15,56,24,3.55,15.0,fr,53456,135,2284324,1,1,Active Shallow Crust,240.0126,57.99767,0.0,10/04/6764 +7.01442,46.58116,8412,11,28,20,41,29,3.55,5.0,fr,53457,168,2284326,1,1,Active Shallow Crust,0.0,89.99299,-90.0,11/28/8412 +7.01442,46.58116,6451,5,29,6,9,7,3.55,5.0,fr,53458,129,2284329,1,1,Active Shallow Crust,128.8975,89.99307,0.0,05/29/6451 +7.01442,46.58116,1226,8,31,18,28,20,3.65,5.0,fr,53459,24,2284332,1,4,Active Shallow Crust,0.0,89.98765,0.0,08/31/1226 +7.01442,46.58116,3577,7,3,2,20,49,3.65,5.0,fr,53460,71,2284332,1,4,Active Shallow Crust,0.0,89.98765,0.0,07/03/3577 +7.01442,46.58116,186,3,13,10,38,27,3.65,5.0,fr,53461,3,2284332,1,4,Active Shallow Crust,0.0,89.98765,0.0,03/13/0186 +7.01442,46.58116,2714,7,4,7,58,4,3.65,5.0,fr,53462,54,2284332,1,4,Active Shallow Crust,0.0,89.98765,0.0,07/04/2714 +7.01442,46.58116,6360,10,11,19,28,0,3.65,15.0,fr,53463,127,2284333,1,3,Active Shallow Crust,0.0,89.98765,0.0,10/11/6360 +7.01442,46.58116,4641,8,16,2,59,58,3.65,15.0,fr,53464,92,2284333,1,3,Active Shallow Crust,0.0,89.98765,0.0,08/16/4641 +7.01442,46.58116,1282,5,15,10,31,52,3.65,15.0,fr,53465,25,2284333,1,3,Active Shallow Crust,0.0,89.98765,0.0,05/15/1282 +7.01442,46.58116,9529,11,28,11,37,45,3.65,5.0,fr,53466,190,2284335,1,1,Active Shallow Crust,240.0012,58.0131,0.0,11/28/9529 +7.01442,46.58116,570,5,2,9,37,26,3.65,15.0,fr,53467,11,2284336,1,1,Active Shallow Crust,240.0012,58.0131,0.0,05/02/0570 +7.01442,46.58116,8730,11,15,9,35,28,3.65,5.0,fr,53468,174,2284338,1,2,Active Shallow Crust,0.0,89.9875,-90.0,11/15/8730 +7.01442,46.58116,7830,1,6,13,8,38,3.65,5.0,fr,53469,156,2284338,1,2,Active Shallow Crust,0.0,89.9875,-90.0,01/06/7830 +7.01442,46.58116,682,8,15,11,33,22,3.65,15.0,fr,53470,13,2284342,1,1,Active Shallow Crust,128.8998,89.96352,0.0,08/15/0682 +7.01442,46.58116,2458,6,13,9,45,45,3.75,5.0,fr,53471,49,2284344,1,8,Active Shallow Crust,0.0,89.98899,0.0,06/13/2458 +7.01442,46.58116,3028,6,3,7,28,14,3.75,5.0,fr,53472,60,2284344,1,8,Active Shallow Crust,0.0,89.98899,0.0,06/03/3028 +7.01442,46.58116,1189,5,19,12,38,41,3.75,5.0,fr,53473,23,2284344,1,8,Active Shallow Crust,0.0,89.98899,0.0,05/19/1189 +7.01442,46.58116,1210,5,12,21,14,19,3.75,5.0,fr,53474,24,2284344,1,8,Active Shallow Crust,0.0,89.98899,0.0,05/12/1210 +7.01442,46.58116,8243,3,12,19,22,54,3.75,5.0,fr,53475,164,2284344,1,8,Active Shallow Crust,0.0,89.98899,0.0,03/12/8243 +7.01442,46.58116,8630,12,17,14,19,2,3.75,5.0,fr,53476,172,2284344,1,8,Active Shallow Crust,0.0,89.98899,0.0,12/17/8630 +7.01442,46.58116,1080,3,24,16,33,41,3.75,5.0,fr,53477,21,2284344,1,8,Active Shallow Crust,0.0,89.98899,0.0,03/24/1080 +7.01442,46.58116,4382,2,8,13,12,10,3.75,5.0,fr,53478,87,2284344,1,8,Active Shallow Crust,0.0,89.98899,0.0,02/08/4382 +7.01442,46.58116,6751,9,25,7,6,7,3.75,15.0,fr,53479,135,2284345,1,1,Active Shallow Crust,0.0,89.98899,0.0,09/25/6751 +7.01442,46.58116,6563,8,13,19,2,49,3.75,27.5,fr,53480,131,2284346,1,1,Active Shallow Crust,0.0,89.98899,0.0,08/13/6563 +7.01442,46.58116,8657,11,27,1,43,41,3.75,5.0,fr,53481,173,2284347,1,1,Active Shallow Crust,240.0081,58.01741,0.0,11/27/8657 +7.01442,46.58116,6848,3,12,5,23,20,3.75,15.0,fr,53482,136,2284348,1,1,Active Shallow Crust,240.0081,58.01741,0.0,03/12/6848 +7.01442,46.58116,1190,5,16,13,4,56,3.75,5.0,fr,53483,23,2284350,1,2,Active Shallow Crust,0.0,89.98886,-90.0,05/16/1190 +7.01442,46.58116,3061,10,21,0,49,17,3.75,5.0,fr,53484,61,2284350,1,2,Active Shallow Crust,0.0,89.98886,-90.0,10/21/3061 +7.01442,46.58116,605,5,11,22,8,16,3.75,15.0,fr,53485,12,2284351,1,2,Active Shallow Crust,0.0,89.98886,-90.0,05/11/0605 +7.01442,46.58116,9227,8,20,5,46,50,3.75,15.0,fr,53486,184,2284351,1,2,Active Shallow Crust,0.0,89.98886,-90.0,08/20/9227 +7.01442,46.58116,59,6,9,4,54,18,3.75,15.0,fr,53487,1,2284354,1,1,Active Shallow Crust,128.8972,89.96749,0.0,06/09/0059 +7.01442,46.58116,9673,7,19,2,39,19,3.75,27.5,fr,53488,193,2284355,1,1,Active Shallow Crust,128.8972,89.96749,0.0,07/19/9673 +7.01442,46.58116,9761,5,20,6,28,18,3.85,5.0,fr,53489,195,2284356,1,1,Active Shallow Crust,0.0,89.99019,0.0,05/20/9761 +7.01442,46.58116,5411,12,8,1,42,31,3.85,5.0,fr,53490,108,2284359,1,2,Active Shallow Crust,240.0112,57.99752,0.0,12/08/5411 +7.01442,46.58116,5771,1,29,16,35,14,3.85,5.0,fr,53491,115,2284359,1,2,Active Shallow Crust,240.0112,57.99752,0.0,01/29/5771 +7.01442,46.58116,8000,8,13,15,57,0,3.85,15.0,fr,53492,159,2284360,1,1,Active Shallow Crust,240.0112,57.99752,0.0,08/13/8000 +7.01442,46.58116,5634,4,2,1,46,32,3.95,5.0,fr,53493,112,2284368,1,2,Active Shallow Crust,0.0,89.99126,0.0,04/02/5634 +7.01442,46.58116,2209,5,19,19,29,6,3.95,5.0,fr,53494,44,2284368,1,2,Active Shallow Crust,0.0,89.99126,0.0,05/19/2209 +7.01442,46.58116,1214,1,13,11,40,28,3.95,15.0,fr,53495,24,2284369,1,3,Active Shallow Crust,0.0,89.99126,0.0,01/13/1214 +7.01442,46.58116,8960,3,27,19,7,16,3.95,15.0,fr,53496,179,2284369,1,3,Active Shallow Crust,0.0,89.99126,0.0,03/27/8960 +7.01442,46.58116,7091,2,19,15,14,9,3.95,15.0,fr,53497,141,2284369,1,3,Active Shallow Crust,0.0,89.99126,0.0,02/19/7091 +7.01442,46.58116,5994,12,11,17,26,13,3.95,5.0,fr,53498,119,2284371,1,2,Active Shallow Crust,240.0203,58.00468,0.0,12/11/5994 +7.01442,46.58116,883,2,24,15,51,17,3.95,5.0,fr,53499,17,2284371,1,2,Active Shallow Crust,240.0203,58.00468,0.0,02/24/0883 +7.01442,46.58116,4114,1,27,19,52,21,3.95,15.0,fr,53500,82,2284372,1,1,Active Shallow Crust,240.0203,58.00468,0.0,01/27/4114 +7.01442,46.58116,620,6,2,4,22,21,3.95,15.0,fr,53501,12,2284378,1,1,Active Shallow Crust,128.9,89.99344,0.0,06/02/0620 +7.01442,46.58116,9577,8,8,23,21,59,4.05,5.0,fr,53502,191,2284380,1,2,Active Shallow Crust,0.0,89.9883,0.0,08/08/9577 +7.01442,46.58116,9906,3,7,20,42,45,4.05,5.0,fr,53503,198,2284380,1,2,Active Shallow Crust,0.0,89.9883,0.0,03/07/9906 +7.01442,46.58116,2918,1,1,16,55,12,4.05,5.0,fr,53504,58,2284386,1,2,Active Shallow Crust,0.0,89.98817,-90.0,01/01/2918 +7.01442,46.58116,79,10,14,10,50,23,4.05,5.0,fr,53505,1,2284386,1,2,Active Shallow Crust,0.0,89.98817,-90.0,10/14/0079 +7.01442,46.58116,6941,2,8,13,47,39,4.05,5.0,fr,53506,138,2284389,1,2,Active Shallow Crust,128.8907,89.99416,0.0,02/08/6941 +7.01442,46.58116,4267,3,27,9,0,24,4.05,5.0,fr,53507,85,2284389,1,2,Active Shallow Crust,128.8907,89.99416,0.0,03/27/4267 +7.01442,46.58116,2721,6,1,22,0,48,4.05,15.0,fr,53508,54,2284390,1,1,Active Shallow Crust,128.8907,89.99416,0.0,06/01/2721 +7.01442,46.58116,1558,3,31,23,31,33,4.15,5.0,fr,53509,31,2284392,1,3,Active Shallow Crust,0.0,89.98958,0.0,03/31/1558 +7.01442,46.58116,6976,9,30,13,54,24,4.15,5.0,fr,53510,139,2284392,1,3,Active Shallow Crust,0.0,89.98958,0.0,09/30/6976 +7.01442,46.58116,3153,12,25,11,32,6,4.15,5.0,fr,53511,63,2284392,1,3,Active Shallow Crust,0.0,89.98958,0.0,12/25/3153 +7.01442,46.58116,6676,1,17,3,6,50,4.15,15.0,fr,53512,133,2284393,1,1,Active Shallow Crust,0.0,89.98958,0.0,01/17/6676 +7.01442,46.58116,9558,7,21,0,41,14,4.15,27.5,fr,53513,191,2284397,1,2,Active Shallow Crust,240.0091,57.99739,0.0,07/21/9558 +7.01442,46.58116,5094,10,24,3,10,58,4.15,27.5,fr,53514,101,2284397,1,2,Active Shallow Crust,240.0091,57.99739,0.0,10/24/5094 +7.01442,46.58116,3162,8,4,3,9,59,4.25,5.0,fr,53515,63,2284404,1,2,Active Shallow Crust,0.0,89.99072,0.0,08/04/3162 +7.01442,46.58116,6491,9,6,15,32,51,4.25,5.0,fr,53516,129,2284404,1,2,Active Shallow Crust,0.0,89.99072,0.0,09/06/6491 +7.01442,46.58116,5042,8,1,4,17,31,4.25,15.0,fr,53517,100,2284405,1,2,Active Shallow Crust,0.0,89.99072,0.0,08/01/5042 +7.01442,46.58116,8908,5,31,15,6,16,4.25,15.0,fr,53518,178,2284405,1,2,Active Shallow Crust,0.0,89.99072,0.0,05/31/8908 +7.01442,46.58116,3061,1,3,7,13,1,4.25,5.0,fr,53519,61,2284410,1,1,Active Shallow Crust,0.0,89.9906,-90.0,01/03/3061 +7.01442,46.58116,3097,1,28,19,7,48,4.35,5.0,fr,53520,61,2284416,1,2,Active Shallow Crust,0.0,89.98896,0.0,01/28/3097 +7.01442,46.58116,5059,8,21,16,50,42,4.35,5.0,fr,53521,101,2284416,1,2,Active Shallow Crust,0.0,89.98896,0.0,08/21/5059 +7.01442,46.58116,8759,7,2,16,0,53,4.45,5.0,fr,53522,175,2284428,1,2,Active Shallow Crust,0.0,89.99017,0.0,07/02/8759 +7.01442,46.58116,1676,5,17,19,31,48,4.45,5.0,fr,53523,33,2284428,1,2,Active Shallow Crust,0.0,89.99017,0.0,05/17/1676 +7.01442,46.58116,5703,10,9,15,56,0,4.45,15.0,fr,53524,114,2284429,1,1,Active Shallow Crust,0.0,89.99017,0.0,10/09/5703 +7.01442,46.58116,5685,3,29,9,24,29,4.45,15.0,fr,53525,113,2284438,1,1,Active Shallow Crust,128.892,89.99385,0.0,03/29/5685 +7.01442,46.58116,2417,9,8,10,28,30,4.55,5.0,fr,53526,48,2284440,1,2,Active Shallow Crust,0.0,89.98904,0.0,09/08/2417 +7.01442,46.58116,6774,4,19,22,10,9,4.55,5.0,fr,53527,135,2284440,1,2,Active Shallow Crust,0.0,89.98904,0.0,04/19/6774 +7.01442,46.58116,2176,6,15,20,41,5,4.55,5.0,fr,53528,43,2284443,1,2,Active Shallow Crust,240.0091,57.99754,0.0,06/15/2176 +7.01442,46.58116,919,11,6,6,54,22,4.55,5.0,fr,53529,18,2284443,1,2,Active Shallow Crust,240.0091,57.99754,0.0,11/06/0919 +7.01442,46.58116,2510,4,24,4,45,10,4.65,5.0,fr,53530,50,2284458,1,1,Active Shallow Crust,0.0,89.99012,-90.0,04/24/2510 +7.01442,46.58116,7062,9,30,8,5,27,4.75,5.0,fr,53531,141,2284464,1,1,Active Shallow Crust,0.0,89.98956,0.0,09/30/7062 +7.01442,46.58116,2186,4,6,8,35,41,4.95,15.0,fr,53532,43,2284492,1,1,Active Shallow Crust,240.0118,58.00445,0.0,04/06/2186 +7.01442,46.58116,7079,8,8,11,29,47,5.05,5.0,fr,53533,141,2284500,1,1,Active Shallow Crust,0.0,89.99014,0.0,08/08/7079 +7.01442,46.58116,2588,11,3,18,46,27,5.35,15.0,fr,53534,51,2284537,1,1,Active Shallow Crust,0.0,89.9904,0.0,11/03/2588 +5.18165,42.92296,4471,12,31,23,27,19,3.75,5.0,fr,53535,89,2284830,1,1,Active Shallow Crust,0.0,89.98814,-90.0,12/31/4471 +5.18165,42.92296,530,12,31,20,13,14,4.05,27.5,fr,53536,10,2284862,1,1,Active Shallow Crust,0.0,89.99169,0.0,12/31/0530 +5.18165,42.92296,6697,3,12,20,35,15,4.65,5.0,fr,53537,133,2284932,1,1,Active Shallow Crust,0.0,89.98959,0.0,03/12/6697 +-0.51975,42.70747,525,8,20,6,44,5,3.55,5.0,fr,53538,10,2285280,1,2,Active Shallow Crust,0.0,89.98981,0.0,08/20/0525 +-0.51975,42.70747,9058,11,8,12,45,10,3.55,5.0,fr,53539,181,2285280,1,2,Active Shallow Crust,0.0,89.98981,0.0,11/08/9058 +-0.51975,42.70747,6591,3,11,0,23,50,4.05,27.5,fr,53540,131,2285342,1,1,Active Shallow Crust,0.0,89.9901,0.0,03/11/6591 +-0.51975,42.70747,1662,11,26,16,38,7,4.45,27.5,fr,53541,33,2285399,1,1,Active Shallow Crust,128.8929,89.99376,0.0,11/26/1662 +0.00056,42.62331,2867,5,27,7,8,50,3.75,5.0,fr,53542,57,2285784,1,1,Active Shallow Crust,360.0,89.99,0.0,05/27/2867 +0.00056,42.62331,3595,1,26,17,58,37,4.15,5.0,fr,53543,71,2285832,1,1,Active Shallow Crust,360.0,89.99,0.0,01/26/3595 +0.00056,42.62331,2760,6,15,20,31,40,4.85,15.0,fr,53544,55,2285923,1,1,Active Shallow Crust,360.0,89.99,-90.0,06/15/2760 +0.00056,42.62331,7607,11,13,0,53,12,5.15,15.0,fr,53545,152,2285953,1,1,Active Shallow Crust,360.0,89.99,0.0,11/13/7607 +0.0005599991,42.62331,1405,2,24,19,38,41,5.25,5.0,fr,53546,28,2285967,1,1,Active Shallow Crust,240.0182,57.99984,0.0,02/24/1405 +3.59032,42.43254,1270,12,22,20,21,51,3.65,15.0,fr,53547,25,2286253,1,1,Active Shallow Crust,0.0,89.99005,0.0,12/22/1270 +3.59032,42.43254,295,3,26,14,50,30,3.65,27.5,fr,53548,5,2286257,1,1,Active Shallow Crust,240.001,58.01309,0.0,03/26/0295 +3.59032,42.43254,4782,11,30,12,8,5,4.05,5.0,fr,53549,95,2286300,1,1,Active Shallow Crust,0.0,89.98954,0.0,11/30/4782 +3.59032,42.43254,8520,1,13,9,19,43,4.15,5.0,fr,53550,170,2286312,1,1,Active Shallow Crust,0.0,89.99068,0.0,01/13/8520 +3.59032,42.43254,2734,11,14,5,17,35,4.15,15.0,fr,53551,54,2286316,1,1,Active Shallow Crust,240.0076,57.99707,0.0,11/14/2734 +-2.48538,49.06069,2157,6,22,23,10,43,3.55,5.0,fr,53552,43,2286720,1,1,Active Shallow Crust,0.0,89.99009,0.0,06/22/2157 +-2.48538,49.06069,444,5,9,21,32,1,3.55,15.0,fr,53553,8,2286721,1,1,Active Shallow Crust,0.0,89.99009,0.0,05/09/0444 +-2.48538,49.06069,8028,10,24,2,59,39,3.55,5.0,fr,53554,160,2286723,1,1,Active Shallow Crust,240.0125,57.99824,0.0,10/24/8028 +-2.48538,49.06069,7848,2,3,12,52,46,3.75,5.0,fr,53555,156,2286744,1,1,Active Shallow Crust,0.0,89.9895,0.0,02/03/7848 +-2.48538,49.06069,5304,11,23,15,30,55,3.75,15.0,fr,53556,106,2286754,1,1,Active Shallow Crust,128.8965,89.9673,0.0,11/23/5304 +-2.48538,49.06069,1864,8,12,4,44,6,3.95,5.0,fr,53557,37,2286768,1,1,Active Shallow Crust,0.0,89.98958,0.0,08/12/1864 +-2.48538,49.06069,6821,9,9,8,27,23,4.05,5.0,fr,53558,136,2286780,1,1,Active Shallow Crust,0.0,89.99071,0.0,09/09/6821 +-2.48538,49.06069,3697,3,12,23,35,52,4.25,5.0,fr,53559,73,2286804,1,1,Active Shallow Crust,0.0,89.98967,0.0,03/12/3697 +-2.48538,49.06069,5010,12,26,22,35,12,4.45,5.0,fr,53560,100,2286828,1,1,Active Shallow Crust,0.0,89.98945,0.0,12/26/5010 +-2.48538,49.06069,8386,6,11,18,48,33,4.45,27.5,fr,53561,167,2286830,1,1,Active Shallow Crust,0.0,89.98945,0.0,06/11/8386 +-2.48538,49.06069,803,6,19,14,1,44,4.45,5.0,fr,53562,16,2286834,1,1,Active Shallow Crust,0.0,89.99051,-90.0,06/19/0803 +-2.48538,49.06069,9225,10,27,8,1,27,4.75,5.0,fr,53563,184,2286867,1,1,Active Shallow Crust,240.0084,58.00472,0.0,10/27/9225 +-2.48538,49.06069,7891,6,9,14,41,0,4.75,15.0,fr,53564,157,2286871,1,1,Active Shallow Crust,0.0,89.98992,-90.0,06/09/7891 +7.74273,50.96086,4725,8,5,13,16,45,3.55,5.0,fr,53565,94,2287200,1,2,Active Shallow Crust,0.0,89.9873,0.0,08/05/4725 +7.74273,50.96086,3614,12,10,18,12,7,3.55,5.0,fr,53566,72,2287200,1,2,Active Shallow Crust,0.0,89.9873,0.0,12/10/3614 +7.74273,50.96086,4205,5,9,16,21,5,3.55,5.0,fr,53567,84,2287203,1,1,Active Shallow Crust,240.0121,57.99874,0.0,05/09/4205 +7.74273,50.96086,2809,10,1,0,40,58,3.75,27.5,fr,53568,56,2287226,1,1,Active Shallow Crust,0.0,89.98991,0.0,10/01/2809 +7.74273,50.96086,5925,10,13,0,22,9,3.75,5.0,fr,53569,118,2287227,1,1,Active Shallow Crust,240.0088,58.01772,0.0,10/13/5925 +7.74273,50.96086,9506,8,20,18,32,45,4.35,15.0,fr,53570,190,2287297,1,1,Active Shallow Crust,0.0,89.98988,0.0,08/20/9506 +2.1522,52.81472,7898,12,12,12,0,4,3.85,5.0,fr,53571,157,2287716,1,1,Active Shallow Crust,0.0,89.98921,0.0,12/12/7898 +-1.89366,43.80131,9380,3,11,23,35,29,3.55,15.0,fr,53572,187,2288161,1,1,Active Shallow Crust,0.0,89.99091,0.0,03/11/9380 +-1.89366,43.80131,3681,7,9,21,38,11,3.65,5.0,fr,53573,73,2288181,1,1,Active Shallow Crust,128.901,89.96347,0.0,07/09/3681 +-1.89366,43.80131,6529,1,29,22,35,24,4.05,5.0,fr,53574,130,2288226,1,1,Active Shallow Crust,0.0,89.98965,-90.0,01/29/6529 +0.61346,48.60607,208,4,15,5,34,38,3.55,5.0,fr,53575,4,2288640,1,1,Active Shallow Crust,0.0,89.99,0.0,04/15/0208 +0.61346,48.60607,5664,5,29,15,49,11,3.85,15.0,fr,53576,113,2288677,1,1,Active Shallow Crust,0.0,89.98997,0.0,05/29/5664 +0.61346,48.60607,5179,7,28,16,12,55,3.85,5.0,fr,53577,103,2288679,1,1,Active Shallow Crust,240.0111,57.99786,0.0,07/28/5179 +0.61346,48.60607,3459,6,13,11,44,40,3.95,15.0,fr,53578,69,2288689,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/13/3459 +0.61346,48.60607,8913,6,28,4,21,55,4.15,5.0,fr,53579,178,2288712,1,2,Active Shallow Crust,0.0,89.98997,0.0,06/28/8913 +0.61346,48.60607,2333,2,12,15,31,56,4.15,5.0,fr,53580,46,2288712,1,2,Active Shallow Crust,0.0,89.98997,0.0,02/12/2333 +0.61346,48.60607,5155,11,14,10,42,43,4.45,15.0,fr,53581,103,2288749,1,1,Active Shallow Crust,0.0,89.98994,0.0,11/14/5155 +0.61346,48.60607,2851,2,9,6,51,39,4.55,15.0,fr,53582,57,2288767,1,1,Active Shallow Crust,0.0,89.98987,-90.0,02/09/2851 +0.51692,42.53722,4968,2,22,13,22,28,3.55,5.0,fr,53583,99,2289120,1,3,Active Shallow Crust,0.0,89.98978,0.0,02/22/4968 +0.51692,42.53722,392,10,10,23,39,33,3.55,5.0,fr,53584,7,2289120,1,3,Active Shallow Crust,0.0,89.98978,0.0,10/10/0392 +0.51692,42.53722,8389,12,6,20,2,27,3.55,5.0,fr,53585,167,2289120,1,3,Active Shallow Crust,0.0,89.98978,0.0,12/06/8389 +0.51692,42.53722,9932,8,19,7,10,27,3.55,5.0,fr,53586,198,2289123,1,2,Active Shallow Crust,240.0118,57.99823,0.0,08/19/9932 +0.51692,42.53722,4745,7,10,20,28,53,3.55,5.0,fr,53587,94,2289123,1,2,Active Shallow Crust,240.0118,57.99823,0.0,07/10/4745 +0.51692,42.53722,2433,1,15,0,52,44,3.55,15.0,fr,53588,48,2289124,1,1,Active Shallow Crust,240.0118,57.99823,0.0,01/15/2433 +0.51692,42.53722,8516,9,21,20,40,9,3.55,5.0,fr,53589,170,2289126,1,2,Active Shallow Crust,0.0,89.98966,-90.0,09/21/8516 +0.51692,42.53722,2944,11,30,0,25,1,3.55,5.0,fr,53590,58,2289126,1,2,Active Shallow Crust,0.0,89.98966,-90.0,11/30/2944 +0.51692,42.53722,577,11,8,3,12,6,3.55,27.5,fr,53591,11,2289128,1,1,Active Shallow Crust,0.0,89.98966,-90.0,11/08/0577 +0.51692,42.53722,8934,8,18,23,37,32,3.65,5.0,fr,53592,178,2289132,1,1,Active Shallow Crust,0.0,89.99007,0.0,08/18/8934 +0.51692,42.53722,3203,9,2,5,15,39,3.65,15.0,fr,53593,64,2289133,1,2,Active Shallow Crust,0.0,89.99007,0.0,09/02/3203 +0.51692,42.53722,3430,4,4,17,52,58,3.65,15.0,fr,53594,68,2289133,1,2,Active Shallow Crust,0.0,89.99007,0.0,04/04/3430 +0.51692,42.53722,699,5,9,13,2,18,3.65,27.5,fr,53595,13,2289134,1,1,Active Shallow Crust,0.0,89.99007,0.0,05/09/0699 +0.51692,42.53722,9251,11,16,18,20,53,3.65,5.0,fr,53596,185,2289135,1,1,Active Shallow Crust,240.0007,58.01288,0.0,11/16/9251 +0.51692,42.53722,2344,5,5,16,43,33,3.65,15.0,fr,53597,46,2289136,1,1,Active Shallow Crust,240.0007,58.01288,0.0,05/05/2344 +0.51692,42.53722,1528,11,19,5,5,26,3.65,5.0,fr,53598,30,2289141,1,2,Active Shallow Crust,128.9008,89.96352,0.0,11/19/1528 +0.51692,42.53722,1643,9,15,15,36,35,3.65,5.0,fr,53599,32,2289141,1,2,Active Shallow Crust,128.9008,89.96352,0.0,09/15/1643 +0.51692,42.53722,8851,8,24,14,14,55,3.75,5.0,fr,53600,177,2289144,1,1,Active Shallow Crust,0.0,89.98967,0.0,08/24/8851 +0.51692,42.53722,9693,10,31,14,24,51,3.75,15.0,fr,53601,193,2289145,1,1,Active Shallow Crust,0.0,89.98967,0.0,10/31/9693 +0.51692,42.53722,7254,6,15,5,55,2,3.75,27.5,fr,53602,145,2289146,1,1,Active Shallow Crust,0.0,89.98967,0.0,06/15/7254 +0.51692,42.53722,8138,11,12,18,58,4,3.85,15.0,fr,53603,162,2289157,1,1,Active Shallow Crust,0.0,89.99014,0.0,11/12/8138 +0.51692,42.53722,314,10,16,14,28,7,3.85,5.0,fr,53604,6,2289159,1,1,Active Shallow Crust,240.0105,57.99771,0.0,10/16/0314 +0.51692,42.53722,7100,11,11,16,30,24,3.85,5.0,fr,53605,141,2289162,1,1,Active Shallow Crust,0.0,89.99002,-90.0,11/11/7100 +0.51692,42.53722,6673,10,7,1,12,56,3.85,15.0,fr,53606,133,2289166,1,1,Active Shallow Crust,128.8961,89.99375,0.0,10/07/6673 +0.51692,42.53722,9340,1,25,0,38,53,3.95,5.0,fr,53607,186,2289168,1,1,Active Shallow Crust,0.0,89.99004,0.0,01/25/9340 +0.51692,42.53722,7148,7,16,18,22,45,3.95,15.0,fr,53608,142,2289169,1,1,Active Shallow Crust,0.0,89.99004,0.0,07/16/7148 +0.51692,42.53722,9968,9,10,2,28,7,3.95,15.0,fr,53609,199,2289172,1,1,Active Shallow Crust,240.0193,58.00486,0.0,09/10/9968 +0.51692,42.53722,3438,12,22,16,29,13,3.95,5.0,fr,53610,68,2289174,1,1,Active Shallow Crust,0.0,89.98992,-90.0,12/22/3438 +0.51692,42.53722,9339,4,18,23,29,21,4.05,5.0,fr,53611,186,2289183,1,1,Active Shallow Crust,240.0054,58.00574,0.0,04/18/9339 +0.51692,42.53722,5238,4,16,6,37,25,4.15,5.0,fr,53612,104,2289192,1,1,Active Shallow Crust,0.0,89.99023,0.0,04/16/5238 +0.51692,42.53722,69,5,1,13,34,4,4.25,15.0,fr,53613,1,2289205,1,1,Active Shallow Crust,0.0,89.99004,0.0,05/01/0069 +0.51692,42.53722,2668,8,5,13,52,14,4.35,27.5,fr,53614,53,2289218,1,1,Active Shallow Crust,0.0,89.99001,0.0,08/05/2668 +0.51692,42.53722,783,11,28,10,12,34,4.45,5.0,fr,53615,15,2289231,1,1,Active Shallow Crust,240.0043,57.99453,0.0,11/28/0783 +0.51692,42.53722,4348,5,23,15,5,46,4.55,15.0,fr,53616,86,2289244,1,1,Active Shallow Crust,240.0082,57.9972,0.0,05/23/4348 +0.51692,42.53722,3238,4,7,21,53,40,4.85,15.0,fr,53617,64,2289280,1,1,Active Shallow Crust,240.0156,58.00204,0.0,04/07/3238 +0.51692,42.53722,5775,8,18,6,50,47,4.95,15.0,fr,53618,115,2289292,1,1,Active Shallow Crust,240.0102,58.00415,0.0,08/18/5775 +-5.87125,48.18912,7151,11,6,17,50,38,3.85,5.0,fr,53619,143,2290125,1,1,Active Shallow Crust,128.8955,89.99524,0.0,11/06/7151 +0.37465,42.24994,4961,5,17,23,25,57,3.65,5.0,fr,53620,99,2290572,1,1,Active Shallow Crust,0.0,89.99002,0.0,05/17/4961 +0.37465,42.24994,4292,8,12,22,11,29,3.75,5.0,fr,53621,85,2290584,1,2,Active Shallow Crust,0.0,89.99,0.0,08/12/4292 +0.37465,42.24994,184,1,12,16,16,56,3.75,5.0,fr,53622,3,2290584,1,2,Active Shallow Crust,0.0,89.99,0.0,01/12/0184 +0.37465,42.24994,9716,3,1,23,19,47,3.95,5.0,fr,53623,194,2290608,1,1,Active Shallow Crust,0.0,89.98999,0.0,03/01/9716 +0.37465,42.24994,6919,7,2,11,33,43,4.05,15.0,fr,53624,138,2290621,1,1,Active Shallow Crust,0.0,89.99003,0.0,07/02/6919 +9.67042,48.91317,2028,12,21,11,45,10,3.55,5.0,fr,53625,40,2291040,1,2,Active Shallow Crust,0.0,89.98675,0.0,12/21/2028 +9.67042,48.91317,5503,1,26,10,15,29,3.55,5.0,fr,53626,110,2291040,1,2,Active Shallow Crust,0.0,89.98675,0.0,01/26/5503 +9.67042,48.91317,6075,11,26,12,42,29,3.55,27.5,fr,53627,121,2291042,1,1,Active Shallow Crust,0.0,89.98675,0.0,11/26/6075 +9.67042,48.91317,8643,5,18,11,45,3,3.85,5.0,fr,53628,172,2291076,1,1,Active Shallow Crust,0.0,89.99062,0.0,05/18/8643 +9.67042,48.91317,2111,6,14,22,19,22,3.85,15.0,fr,53629,42,2291077,1,1,Active Shallow Crust,0.0,89.99062,0.0,06/14/2111 +9.67042,48.91317,1595,12,10,9,35,21,3.95,5.0,fr,53630,31,2291088,1,1,Active Shallow Crust,0.0,89.99164,0.0,12/10/1595 +9.67042,48.91317,6700,1,30,1,40,1,4.05,15.0,fr,53631,133,2291101,1,1,Active Shallow Crust,0.0,89.99255,0.0,01/30/6700 +9.67042,48.91317,9609,7,14,2,42,5,4.25,5.0,fr,53632,192,2291124,1,1,Active Shallow Crust,0.0,89.98816,0.0,07/14/9609 +-5.09924,49.36487,4558,9,3,21,39,23,4.05,27.5,fr,53633,91,2291585,1,1,Active Shallow Crust,240.0061,58.00614,0.0,09/03/4558 +-5.09924,49.36487,4198,9,25,10,13,49,4.75,5.0,fr,53634,83,2291673,1,1,Active Shallow Crust,128.8874,89.98834,0.0,09/25/4198 +9.54961,49.90801,5429,3,21,5,49,31,4.25,5.0,fr,53635,108,2292564,1,1,Active Shallow Crust,0.0,89.9884,0.0,03/21/5429 +-1.04396,42.78966,6315,4,30,19,43,34,3.55,5.0,fr,53636,126,2292960,1,1,Active Shallow Crust,0.0,89.99075,0.0,04/30/6315 +-1.04396,42.78966,7106,1,13,23,15,16,3.55,15.0,fr,53637,142,2292961,1,1,Active Shallow Crust,0.0,89.99075,0.0,01/13/7106 +-1.04396,42.78966,748,4,19,1,38,11,3.55,27.5,fr,53638,14,2292962,1,2,Active Shallow Crust,0.0,89.99075,0.0,04/19/0748 +-1.04396,42.78966,9628,5,5,12,5,47,3.55,27.5,fr,53639,192,2292962,1,2,Active Shallow Crust,0.0,89.99075,0.0,05/05/9628 +-1.04396,42.78966,5629,7,19,2,45,39,3.55,15.0,fr,53640,112,2292964,1,1,Active Shallow Crust,240.0119,57.99804,0.0,07/19/5629 +-1.04396,42.78966,8481,5,27,6,38,0,3.65,5.0,fr,53641,169,2292972,1,3,Active Shallow Crust,0.0,89.9901,0.0,05/27/8481 +-1.04396,42.78966,1684,8,30,3,22,14,3.65,5.0,fr,53642,33,2292972,1,3,Active Shallow Crust,0.0,89.9901,0.0,08/30/1684 +-1.04396,42.78966,7269,7,5,11,54,51,3.65,5.0,fr,53643,145,2292972,1,3,Active Shallow Crust,0.0,89.9901,0.0,07/05/7269 +-1.04396,42.78966,9839,1,13,23,2,8,3.75,5.0,fr,53644,196,2292984,1,3,Active Shallow Crust,0.0,89.98972,0.0,01/13/9839 +-1.04396,42.78966,5872,12,15,13,58,55,3.75,5.0,fr,53645,117,2292984,1,3,Active Shallow Crust,0.0,89.98972,0.0,12/15/5872 +-1.04396,42.78966,1751,2,26,9,25,26,3.75,5.0,fr,53646,35,2292984,1,3,Active Shallow Crust,0.0,89.98972,0.0,02/26/1751 +-1.04396,42.78966,4869,7,6,8,11,2,3.75,15.0,fr,53647,97,2292985,1,2,Active Shallow Crust,0.0,89.98972,0.0,07/06/4869 +-1.04396,42.78966,1090,3,27,21,3,34,3.75,15.0,fr,53648,21,2292985,1,2,Active Shallow Crust,0.0,89.98972,0.0,03/27/1090 +-1.04396,42.78966,6084,2,12,5,39,54,3.75,15.0,fr,53649,121,2292991,1,1,Active Shallow Crust,0.0,89.98959,-90.0,02/12/6084 +-1.04396,42.78966,7246,11,16,11,6,59,3.75,5.0,fr,53650,144,2292993,1,1,Active Shallow Crust,128.897,89.96729,0.0,11/16/7246 +-1.04396,42.78966,3495,12,25,21,24,18,3.85,5.0,fr,53651,69,2292996,1,2,Active Shallow Crust,0.0,89.98952,0.0,12/25/3495 +-1.04396,42.78966,4374,9,18,7,39,41,3.85,5.0,fr,53652,87,2292996,1,2,Active Shallow Crust,0.0,89.98952,0.0,09/18/4374 +-1.04396,42.78966,508,12,15,10,0,40,3.85,5.0,fr,53653,10,2293005,1,1,Active Shallow Crust,128.8958,89.99411,0.0,12/15/0508 +-1.04396,42.78966,3080,10,16,17,57,9,3.95,27.5,fr,53654,61,2293010,1,1,Active Shallow Crust,0.0,89.98949,0.0,10/16/3080 +-1.04396,42.78966,4829,8,14,1,40,38,3.95,15.0,fr,53655,96,2293012,1,1,Active Shallow Crust,240.0195,58.00471,0.0,08/14/4829 +-1.04396,42.78966,895,8,16,9,59,7,4.05,5.0,fr,53656,17,2293020,1,1,Active Shallow Crust,0.0,89.98959,0.0,08/16/0895 +-1.04396,42.78966,8726,3,3,12,47,30,4.15,27.5,fr,53657,174,2293034,1,1,Active Shallow Crust,0.0,89.9898,0.0,03/03/8726 +-1.04396,42.78966,323,11,22,5,46,46,4.15,5.0,fr,53658,6,2293035,1,1,Active Shallow Crust,240.0079,57.99709,0.0,11/22/0323 +-1.04396,42.78966,7295,10,2,22,7,5,4.25,5.0,fr,53659,145,2293050,1,1,Active Shallow Crust,0.0,89.98997,-90.0,10/02/7295 +-1.04396,42.78966,1063,9,24,9,33,41,4.35,5.0,fr,53660,21,2293056,1,1,Active Shallow Crust,0.0,89.98969,0.0,09/24/1063 +-1.04396,42.78966,2140,8,10,21,3,34,4.45,5.0,fr,53661,42,2293068,1,1,Active Shallow Crust,0.0,89.99015,0.0,08/10/2140 +-1.04396,42.78966,5911,12,14,14,59,1,5.05,15.0,fr,53662,118,2293141,1,1,Active Shallow Crust,0.0,89.99013,0.0,12/14/5911 +1.32976,50.86708,2716,2,23,18,42,17,3.55,27.5,fr,53663,54,2293442,1,1,Active Shallow Crust,0.0,89.99046,0.0,02/23/2716 +1.32976,50.86708,7277,7,30,9,16,8,3.55,27.5,fr,53664,145,2293451,1,1,Active Shallow Crust,128.8959,89.99364,0.0,07/30/7277 +1.32976,50.86708,7474,8,17,14,59,45,3.65,5.0,fr,53665,149,2293452,1,1,Active Shallow Crust,0.0,89.99007,0.0,08/17/7474 +1.32976,50.86708,737,12,21,21,29,11,3.75,5.0,fr,53666,14,2293464,1,1,Active Shallow Crust,0.0,89.98989,0.0,12/21/0737 +1.32976,50.86708,5349,7,21,9,18,13,3.75,15.0,fr,53667,106,2293465,1,1,Active Shallow Crust,0.0,89.98989,0.0,07/21/5349 +1.32976,50.86708,129,9,30,12,4,53,5.35,5.0,fr,53668,2,2293665,1,1,Active Shallow Crust,128.8802,89.98804,0.0,09/30/0129 +1.15524,47.04387,4875,7,17,18,49,32,3.55,27.5,fr,53669,97,2293922,1,1,Active Shallow Crust,0.0,89.98969,0.0,07/17/4875 +1.15524,47.04387,8004,12,22,16,48,8,3.55,5.0,fr,53670,160,2293923,1,1,Active Shallow Crust,240.0122,57.99819,0.0,12/22/8004 +1.15524,47.04387,369,7,18,14,58,19,3.65,5.0,fr,53671,7,2293938,1,1,Active Shallow Crust,0.0,89.99071,-90.0,07/18/0369 +1.15524,47.04387,8703,1,3,10,8,53,3.75,5.0,fr,53672,174,2293944,1,3,Active Shallow Crust,0.0,89.99045,0.0,01/03/8703 +1.15524,47.04387,9419,2,21,11,18,11,3.75,5.0,fr,53673,188,2293944,1,3,Active Shallow Crust,0.0,89.99045,0.0,02/21/9419 +1.15524,47.04387,5007,5,15,19,43,1,3.75,5.0,fr,53674,100,2293944,1,3,Active Shallow Crust,0.0,89.99045,0.0,05/15/5007 +1.15524,47.04387,6808,11,12,15,29,48,3.75,15.0,fr,53675,136,2293945,1,1,Active Shallow Crust,0.0,89.99045,0.0,11/12/6808 +1.15524,47.04387,3834,1,16,14,59,31,3.95,5.0,fr,53676,76,2293968,1,1,Active Shallow Crust,0.0,89.99024,0.0,01/16/3834 +1.15524,47.04387,5286,12,6,19,0,30,3.95,15.0,fr,53677,105,2293969,1,1,Active Shallow Crust,0.0,89.99024,0.0,12/06/5286 +1.15524,47.04387,4099,10,14,17,21,20,4.25,5.0,fr,53678,81,2294010,1,1,Active Shallow Crust,0.0,89.98991,-90.0,10/14/4099 +1.15524,47.04387,1260,7,27,21,58,2,4.85,15.0,fr,53679,25,2294077,1,1,Active Shallow Crust,0.0,89.99,0.0,07/27/1260 +0.95556,45.96051,3293,5,18,12,3,15,3.55,5.0,fr,53680,65,2294400,1,1,Active Shallow Crust,0.0,89.99036,0.0,05/18/3293 +0.95556,45.96051,8719,5,20,4,35,8,3.65,5.0,fr,53681,174,2294412,1,1,Active Shallow Crust,0.0,89.98985,0.0,05/20/8719 +0.95556,45.96051,9320,8,3,16,32,7,3.75,15.0,fr,53682,186,2294425,1,1,Active Shallow Crust,0.0,89.99026,0.0,08/03/9320 +0.95556,45.96051,4452,9,17,1,16,45,3.75,27.5,fr,53683,89,2294432,1,1,Active Shallow Crust,0.0,89.99014,-90.0,09/17/4452 +0.95556,45.96051,7557,10,20,21,57,57,3.85,27.5,fr,53684,151,2294444,1,1,Active Shallow Crust,0.0,89.98996,-90.0,10/20/7557 +0.95556,45.96051,3116,1,6,2,34,1,3.95,5.0,fr,53685,62,2294448,1,1,Active Shallow Crust,0.0,89.99005,0.0,01/06/3116 +0.95556,45.96051,5986,10,26,6,45,55,3.95,5.0,fr,53686,119,2294457,1,1,Active Shallow Crust,128.9004,89.99364,0.0,10/26/5986 +0.95556,45.96051,5997,4,7,16,29,10,4.25,5.0,fr,53687,119,2294493,1,1,Active Shallow Crust,128.8944,89.98093,0.0,04/07/5997 +0.95556,45.96051,65,11,6,14,7,50,4.35,5.0,fr,53688,1,2294496,1,1,Active Shallow Crust,0.0,89.98988,0.0,11/06/0065 +0.95556,45.96051,8267,2,12,6,41,27,4.65,15.0,fr,53689,165,2294539,1,1,Active Shallow Crust,0.0,89.99001,-90.0,02/12/8267 +1.33579,47.71923,9647,9,17,2,28,8,3.75,5.0,fr,53690,192,2294904,1,1,Active Shallow Crust,0.0,89.99057,0.0,09/17/9647 +1.33579,47.71923,8367,9,21,5,3,10,4.15,5.0,fr,53691,167,2294961,1,1,Active Shallow Crust,128.8973,89.99362,0.0,09/21/8367 +1.66975,41.19371,3096,1,21,16,45,29,3.55,5.0,fr,53692,61,2295360,1,1,Active Shallow Crust,0.0,89.99052,0.0,01/21/3096 +1.66975,41.19371,4734,3,6,0,10,30,3.65,5.0,fr,53693,94,2295372,1,1,Active Shallow Crust,0.0,89.98985,0.0,03/06/4734 +1.66975,41.19371,6783,10,15,16,45,57,3.65,15.0,fr,53694,135,2295373,1,1,Active Shallow Crust,0.0,89.98985,0.0,10/15/6783 +1.66975,41.19371,3202,8,5,21,17,20,3.75,5.0,fr,53695,64,2295384,1,1,Active Shallow Crust,0.0,89.98945,0.0,08/05/3202 +1.66975,41.19371,8055,2,25,1,31,42,3.85,15.0,fr,53696,161,2295397,1,1,Active Shallow Crust,0.0,89.9906,0.0,02/25/8055 +1.66975,41.19371,1848,2,22,7,14,7,3.95,5.0,fr,53697,36,2295408,1,1,Active Shallow Crust,0.0,89.99043,0.0,02/22/1848 +1.66975,41.19371,5392,2,15,14,36,53,3.95,5.0,fr,53698,107,2295411,1,1,Active Shallow Crust,240.0191,58.00492,0.0,02/15/5392 +1.66975,41.19371,7813,5,11,14,7,41,3.95,5.0,fr,53699,156,2295417,1,1,Active Shallow Crust,128.901,89.99402,0.0,05/11/7813 +1.66975,41.19371,2419,9,9,5,8,45,4.05,5.0,fr,53700,48,2295420,1,1,Active Shallow Crust,0.0,89.9904,0.0,09/09/2419 +1.66975,41.19371,1563,7,4,10,36,31,4.05,27.5,fr,53701,31,2295422,1,1,Active Shallow Crust,0.0,89.9904,0.0,07/04/1563 +1.66975,41.19371,9966,7,3,8,2,40,4.25,5.0,fr,53702,199,2295444,1,1,Active Shallow Crust,0.0,89.98983,0.0,07/03/9966 +5.43156,43.35687,3662,2,13,12,31,14,3.55,5.0,fr,53703,73,2295840,1,2,Active Shallow Crust,0.0,89.99267,0.0,02/13/3662 +5.43156,43.35687,5030,2,6,11,14,39,3.55,5.0,fr,53704,100,2295840,1,2,Active Shallow Crust,0.0,89.99267,0.0,02/06/5030 +5.43156,43.35687,6520,5,1,10,21,38,3.65,5.0,fr,53705,130,2295852,1,1,Active Shallow Crust,0.0,89.98693,0.0,05/01/6520 +5.43156,43.35687,1051,12,10,22,5,10,3.75,5.0,fr,53706,21,2295864,1,2,Active Shallow Crust,0.0,89.98835,0.0,12/10/1051 +5.43156,43.35687,8364,7,5,2,10,57,3.75,5.0,fr,53707,167,2295864,1,2,Active Shallow Crust,0.0,89.98835,0.0,07/05/8364 +5.43156,43.35687,851,7,2,11,20,36,3.85,5.0,fr,53708,17,2295876,1,1,Active Shallow Crust,0.0,89.98962,0.0,07/02/0851 +5.43156,43.35687,8317,9,22,22,57,18,3.95,15.0,fr,53709,166,2295889,1,1,Active Shallow Crust,0.0,89.99075,0.0,09/22/8317 +5.43156,43.35687,3332,3,19,20,16,30,4.25,5.0,fr,53710,66,2295933,1,1,Active Shallow Crust,128.8943,89.98083,0.0,03/19/3332 +5.43156,43.35687,3224,1,16,6,14,4,4.35,5.0,fr,53711,64,2295936,1,1,Active Shallow Crust,0.0,89.99124,0.0,01/16/3224 +5.43156,43.35687,3062,9,29,12,19,43,4.45,5.0,fr,53712,61,2295957,1,1,Active Shallow Crust,128.8932,89.9935,0.0,09/29/3062 +5.43156,43.35687,7282,1,30,2,3,16,4.55,5.0,fr,53713,145,2295963,1,1,Active Shallow Crust,240.0082,57.99723,0.0,01/30/7282 +-1.62558,47.91941,657,8,9,16,35,23,3.55,5.0,fr,53714,13,2296320,1,1,Active Shallow Crust,0.0,89.98986,0.0,08/09/0657 +-1.62558,47.91941,8374,5,18,18,53,6,3.75,15.0,fr,53715,167,2296345,1,1,Active Shallow Crust,0.0,89.99061,0.0,05/18/8374 +-1.62558,47.91941,8038,8,17,23,3,34,3.75,27.5,fr,53716,160,2296352,1,1,Active Shallow Crust,0.0,89.99049,-90.0,08/17/8038 +-1.62558,47.91941,5867,7,7,19,0,9,3.85,5.0,fr,53717,117,2296356,1,1,Active Shallow Crust,0.0,89.99043,0.0,07/07/5867 +-1.62558,47.91941,7090,9,21,21,13,38,3.85,15.0,fr,53718,141,2296366,1,1,Active Shallow Crust,128.8953,89.99402,0.0,09/21/7090 +-1.62558,47.91941,1891,2,17,9,54,37,3.95,5.0,fr,53719,37,2296368,1,1,Active Shallow Crust,0.0,89.9904,0.0,02/17/1891 +-1.62558,47.91941,5822,9,21,15,29,28,3.95,15.0,fr,53720,116,2296369,1,1,Active Shallow Crust,0.0,89.9904,0.0,09/21/5822 +-1.62558,47.91941,3364,10,20,4,42,46,4.05,5.0,fr,53721,67,2296383,1,1,Active Shallow Crust,240.0064,58.00573,0.0,10/20/3364 +-1.62558,47.91941,9636,5,1,5,59,41,4.35,5.0,fr,53722,192,2296416,1,1,Active Shallow Crust,0.0,89.98991,0.0,05/01/9636 +-1.62558,47.91941,4956,5,8,11,5,13,4.75,5.0,fr,53723,99,2296470,1,1,Active Shallow Crust,0.0,89.99013,-90.0,05/08/4956 +4.87795,50.48183,8399,1,20,0,14,29,3.55,5.0,fr,53724,167,2296800,1,1,Active Shallow Crust,0.0,89.98717,0.0,01/20/8399 +4.87795,50.48183,2863,6,10,17,39,5,3.55,5.0,fr,53725,57,2296803,1,2,Active Shallow Crust,240.0119,57.99926,0.0,06/10/2863 +4.87795,50.48183,5231,10,23,15,53,46,3.55,5.0,fr,53726,104,2296803,1,2,Active Shallow Crust,240.0119,57.99926,0.0,10/23/5231 +4.87795,50.48183,730,10,6,18,45,14,3.55,15.0,fr,53727,14,2296804,1,1,Active Shallow Crust,240.0119,57.99926,0.0,10/06/0730 +4.87795,50.48183,821,10,9,1,2,0,3.65,5.0,fr,53728,16,2296812,1,1,Active Shallow Crust,0.0,89.98856,0.0,10/09/0821 +4.87795,50.48183,1815,10,1,4,30,5,3.65,15.0,fr,53729,36,2296813,1,1,Active Shallow Crust,0.0,89.98856,0.0,10/01/1815 +4.87795,50.48183,6074,3,10,4,32,18,3.65,27.5,fr,53730,121,2296823,1,1,Active Shallow Crust,128.8999,89.9636,0.0,03/10/6074 +4.87795,50.48183,4895,10,25,21,3,21,3.75,5.0,fr,53731,97,2296824,1,3,Active Shallow Crust,0.0,89.98981,0.0,10/25/4895 +4.87795,50.48183,4608,3,24,18,52,4,3.75,5.0,fr,53732,92,2296824,1,3,Active Shallow Crust,0.0,89.98981,0.0,03/24/4608 +4.87795,50.48183,4802,3,31,10,10,32,3.75,5.0,fr,53733,96,2296824,1,3,Active Shallow Crust,0.0,89.98981,0.0,03/31/4802 +4.87795,50.48183,1716,4,29,20,56,47,3.75,27.5,fr,53734,34,2296826,1,1,Active Shallow Crust,0.0,89.98981,0.0,04/29/1716 +4.87795,50.48183,3796,9,12,4,22,47,3.85,15.0,fr,53735,75,2296840,1,1,Active Shallow Crust,240.0117,57.99754,0.0,09/12/3796 +4.87795,50.48183,8535,8,11,10,6,14,3.95,5.0,fr,53736,170,2296851,1,1,Active Shallow Crust,240.02,58.00515,0.0,08/11/8535 +4.87795,50.48183,1626,12,5,10,32,52,4.05,5.0,fr,53737,32,2296860,1,2,Active Shallow Crust,0.0,89.98917,0.0,12/05/1626 +4.87795,50.48183,8863,6,19,7,49,30,4.05,5.0,fr,53738,177,2296860,1,2,Active Shallow Crust,0.0,89.98917,0.0,06/19/8863 +4.87795,50.48183,5390,8,10,20,9,44,4.05,15.0,fr,53739,107,2296870,1,1,Active Shallow Crust,128.8902,89.99278,0.0,08/10/5390 +4.87795,50.48183,6333,8,18,15,37,35,4.25,5.0,fr,53740,126,2296884,1,2,Active Shallow Crust,0.0,89.9914,0.0,08/18/6333 +4.87795,50.48183,6048,1,9,10,18,15,4.25,5.0,fr,53741,120,2296884,1,2,Active Shallow Crust,0.0,89.9914,0.0,01/09/6048 +4.87795,50.48183,2259,9,29,0,27,58,4.25,5.0,fr,53742,45,2296890,1,1,Active Shallow Crust,0.0,89.9913,-90.0,09/29/2259 +4.87795,50.48183,7459,1,30,14,22,14,4.45,5.0,fr,53743,149,2296908,1,1,Active Shallow Crust,0.0,89.99089,0.0,01/30/7459 +4.87795,50.48183,4629,11,3,16,22,46,4.45,15.0,fr,53744,92,2296915,1,1,Active Shallow Crust,0.0,89.99078,-90.0,11/03/4629 +4.87795,50.48183,5210,2,4,15,45,25,4.45,5.0,fr,53745,104,2296917,1,1,Active Shallow Crust,128.891,89.99431,0.0,02/04/5210 +5.88987,47.34562,2271,9,22,16,57,18,3.55,5.0,fr,53746,45,2297280,1,1,Active Shallow Crust,0.0,89.99316,0.0,09/22/2271 +5.88987,47.34562,5281,7,21,22,15,7,3.55,15.0,fr,53747,105,2297281,1,1,Active Shallow Crust,0.0,89.99316,0.0,07/21/5281 +5.88987,47.34562,8214,10,6,14,14,31,3.55,27.5,fr,53748,164,2297282,1,1,Active Shallow Crust,0.0,89.99316,0.0,10/06/8214 +5.88987,47.34562,3111,1,2,18,10,2,3.65,5.0,fr,53749,62,2297292,1,2,Active Shallow Crust,0.0,89.98782,0.0,01/02/3111 +5.88987,47.34562,7627,3,5,10,51,40,3.65,5.0,fr,53750,152,2297292,1,2,Active Shallow Crust,0.0,89.98782,0.0,03/05/7627 +5.88987,47.34562,4038,1,20,1,33,3,3.65,15.0,fr,53751,80,2297293,1,1,Active Shallow Crust,0.0,89.98782,0.0,01/20/4038 +5.88987,47.34562,8056,5,13,1,34,24,3.75,5.0,fr,53752,161,2297304,1,1,Active Shallow Crust,0.0,89.98914,0.0,05/13/8056 +5.88987,47.34562,5610,4,1,15,13,19,4.05,5.0,fr,53753,112,2297340,1,1,Active Shallow Crust,0.0,89.98847,0.0,04/01/5610 +5.88987,47.34562,2704,8,14,21,24,3,4.15,5.0,fr,53754,54,2297352,1,1,Active Shallow Crust,0.0,89.98972,0.0,08/14/2704 +5.88987,47.34562,7154,9,20,21,58,36,4.15,15.0,fr,53755,143,2297353,1,1,Active Shallow Crust,0.0,89.98972,0.0,09/20/7154 +5.88987,47.34562,1618,12,11,5,22,3,4.25,5.0,fr,53756,32,2297364,1,1,Active Shallow Crust,0.0,89.99084,0.0,12/11/1618 +5.88987,47.34562,5126,4,2,1,53,30,4.75,15.0,fr,53757,102,2297425,1,1,Active Shallow Crust,0.0,89.9897,0.0,04/02/5126 +5.88987,47.34562,3051,3,15,6,20,1,5.05,5.0,fr,53758,61,2297460,1,1,Active Shallow Crust,0.0,89.99028,0.0,03/15/3051 +5.88987,47.34562,1690,4,7,10,33,57,5.75,5.0,fr,53759,33,2297553,1,1,Active Shallow Crust,128.873,89.98854,0.0,04/07/1690 +-2.08907,44.60749,2667,3,23,9,51,15,3.95,15.0,fr,53760,53,2297818,1,1,Active Shallow Crust,128.9004,89.99321,0.0,03/23/2667 +-1.37835,46.0449,9401,6,5,15,31,7,3.55,5.0,fr,53761,188,2298240,1,4,Active Shallow Crust,0.0,89.9895,0.0,06/05/9401 +-1.37835,46.0449,9481,1,12,18,20,10,3.55,5.0,fr,53762,189,2298240,1,4,Active Shallow Crust,0.0,89.9895,0.0,01/12/9481 +-1.37835,46.0449,6271,2,17,0,27,38,3.55,5.0,fr,53763,125,2298240,1,4,Active Shallow Crust,0.0,89.9895,0.0,02/17/6271 +-1.37835,46.0449,661,8,16,2,23,39,3.55,5.0,fr,53764,13,2298240,1,4,Active Shallow Crust,0.0,89.9895,0.0,08/16/0661 +-1.37835,46.0449,5590,3,17,5,32,50,3.55,15.0,fr,53765,111,2298241,1,1,Active Shallow Crust,0.0,89.9895,0.0,03/17/5590 +-1.37835,46.0449,4604,4,27,6,40,31,3.55,15.0,fr,53766,92,2298244,1,1,Active Shallow Crust,240.0119,57.99809,0.0,04/27/4604 +-1.37835,46.0449,6724,12,7,9,36,20,3.55,5.0,fr,53767,134,2298246,1,1,Active Shallow Crust,0.0,89.98938,-90.0,12/07/6724 +-1.37835,46.0449,478,1,26,2,13,3,3.65,5.0,fr,53768,9,2298252,1,2,Active Shallow Crust,0.0,89.99065,0.0,01/26/0478 +-1.37835,46.0449,3764,3,31,12,29,59,3.65,5.0,fr,53769,75,2298252,1,2,Active Shallow Crust,0.0,89.99065,0.0,03/31/3764 +-1.37835,46.0449,7773,1,1,9,39,15,3.65,15.0,fr,53770,155,2298253,1,1,Active Shallow Crust,0.0,89.99065,0.0,01/01/7773 +-1.37835,46.0449,235,11,2,13,17,20,3.65,5.0,fr,53771,4,2298255,1,1,Active Shallow Crust,240.001,58.01287,0.0,11/02/0235 +-1.37835,46.0449,1523,10,31,11,8,55,3.65,15.0,fr,53772,30,2298259,1,1,Active Shallow Crust,0.0,89.99053,-90.0,10/31/1523 +-1.37835,46.0449,7185,5,20,11,20,12,3.75,5.0,fr,53773,143,2298264,1,1,Active Shallow Crust,0.0,89.99027,0.0,05/20/7185 +-1.37835,46.0449,8607,1,5,23,27,9,3.75,15.0,fr,53774,172,2298268,1,1,Active Shallow Crust,240.0084,58.01737,0.0,01/05/8607 +-1.37835,46.0449,4031,12,27,2,20,58,3.75,27.5,fr,53775,80,2298269,1,1,Active Shallow Crust,240.0084,58.01737,0.0,12/27/4031 +-1.37835,46.0449,740,9,1,5,37,13,3.75,15.0,fr,53776,14,2298274,1,1,Active Shallow Crust,128.8969,89.96722,0.0,09/01/0740 +-1.37835,46.0449,9260,7,13,13,44,4,3.85,5.0,fr,53777,185,2298276,1,6,Active Shallow Crust,0.0,89.99009,0.0,07/13/9260 +-1.37835,46.0449,8512,11,1,10,4,41,3.85,5.0,fr,53778,170,2298276,1,6,Active Shallow Crust,0.0,89.99009,0.0,11/01/8512 +-1.37835,46.0449,5284,8,19,1,19,30,3.85,5.0,fr,53779,105,2298276,1,6,Active Shallow Crust,0.0,89.99009,0.0,08/19/5284 +-1.37835,46.0449,8956,9,1,22,25,56,3.85,5.0,fr,53780,179,2298276,1,6,Active Shallow Crust,0.0,89.99009,0.0,09/01/8956 +-1.37835,46.0449,6361,10,3,7,21,13,3.85,5.0,fr,53781,127,2298276,1,6,Active Shallow Crust,0.0,89.99009,0.0,10/03/6361 +-1.37835,46.0449,834,8,5,10,9,17,3.85,5.0,fr,53782,16,2298276,1,6,Active Shallow Crust,0.0,89.99009,0.0,08/05/0834 +-1.37835,46.0449,8671,3,28,11,49,52,3.85,15.0,fr,53783,173,2298277,1,1,Active Shallow Crust,0.0,89.99009,0.0,03/28/8671 +-1.37835,46.0449,8473,7,19,17,45,49,3.85,5.0,fr,53784,169,2298279,1,1,Active Shallow Crust,240.0108,57.99768,0.0,07/19/8473 +-1.37835,46.0449,1163,7,12,3,43,42,3.85,5.0,fr,53785,23,2298282,1,1,Active Shallow Crust,0.0,89.98997,-90.0,07/12/1163 +-1.37835,46.0449,9870,7,26,23,36,18,3.95,5.0,fr,53786,197,2298288,1,2,Active Shallow Crust,0.0,89.99007,0.0,07/26/9870 +-1.37835,46.0449,6143,12,8,12,36,49,3.95,5.0,fr,53787,122,2298288,1,2,Active Shallow Crust,0.0,89.99007,0.0,12/08/6143 +-1.37835,46.0449,5295,8,5,8,8,54,3.95,15.0,fr,53788,105,2298289,1,1,Active Shallow Crust,0.0,89.99007,0.0,08/05/5295 +-1.37835,46.0449,3901,4,15,13,25,28,3.95,15.0,fr,53789,78,2298292,1,1,Active Shallow Crust,240.0197,58.00496,0.0,04/15/3901 +-1.37835,46.0449,9997,11,11,19,15,2,4.05,5.0,fr,53790,199,2298300,1,1,Active Shallow Crust,0.0,89.99016,0.0,11/11/9997 +-1.37835,46.0449,6002,6,15,21,53,42,4.05,5.0,fr,53791,120,2298306,1,1,Active Shallow Crust,0.0,89.99004,-90.0,06/15/6002 +-1.37835,46.0449,814,2,5,4,5,51,4.05,5.0,fr,53792,16,2298309,1,1,Active Shallow Crust,128.8906,89.99361,0.0,02/05/0814 +-1.37835,46.0449,8257,7,6,21,18,15,4.05,15.0,fr,53793,165,2298310,1,1,Active Shallow Crust,128.8906,89.99361,0.0,07/06/8257 +-1.37835,46.0449,5139,9,28,11,39,27,4.15,5.0,fr,53794,102,2298312,1,1,Active Shallow Crust,0.0,89.99036,0.0,09/28/5139 +-1.37835,46.0449,8315,5,4,2,21,37,4.15,15.0,fr,53795,166,2298313,1,3,Active Shallow Crust,0.0,89.99036,0.0,05/04/8315 +-1.37835,46.0449,6915,4,5,4,4,24,4.15,15.0,fr,53796,138,2298313,1,3,Active Shallow Crust,0.0,89.99036,0.0,04/05/6915 +-1.37835,46.0449,7678,2,13,11,53,17,4.15,15.0,fr,53797,153,2298313,1,3,Active Shallow Crust,0.0,89.99036,0.0,02/13/7678 +-1.37835,46.0449,8618,7,22,22,55,37,4.25,5.0,fr,53798,172,2298324,1,1,Active Shallow Crust,0.0,89.98984,0.0,07/22/8618 +-1.37835,46.0449,8500,2,12,3,45,6,4.35,5.0,fr,53799,169,2298336,1,2,Active Shallow Crust,0.0,89.99025,0.0,02/12/8500 +-1.37835,46.0449,4828,2,6,4,40,33,4.35,5.0,fr,53800,96,2298336,1,2,Active Shallow Crust,0.0,89.99025,0.0,02/06/4828 +-1.37835,46.0449,5934,9,30,5,15,9,4.45,15.0,fr,53801,118,2298358,1,1,Active Shallow Crust,128.8924,89.99348,0.0,09/30/5934 +-1.37835,46.0449,229,2,5,12,5,39,4.65,5.0,fr,53802,4,2298372,1,1,Active Shallow Crust,0.0,89.99014,0.0,02/05/0229 +-1.37835,46.0449,5267,10,30,8,9,23,4.65,5.0,fr,53803,105,2298378,1,1,Active Shallow Crust,0.0,89.99002,-90.0,10/30/5267 +-1.37835,46.0449,5661,3,28,8,33,36,4.75,15.0,fr,53804,113,2298385,1,1,Active Shallow Crust,0.0,89.98989,0.0,03/28/5661 +-1.37835,46.0449,6919,3,10,16,49,9,4.85,5.0,fr,53805,138,2298399,1,1,Active Shallow Crust,240.017,58.00233,0.0,03/10/6919 +-1.37835,46.0449,4653,2,28,18,18,29,5.05,5.0,fr,53806,93,2298420,1,1,Active Shallow Crust,0.0,89.99004,0.0,02/28/4653 +2.60294,47.12849,5676,10,6,1,26,4,3.55,27.5,fr,53807,113,2298722,1,1,Active Shallow Crust,0.0,89.98971,0.0,10/06/5676 +2.60294,47.12849,3869,3,9,21,43,38,3.65,5.0,fr,53808,77,2298732,1,1,Active Shallow Crust,0.0,89.99083,0.0,03/09/3869 +2.60294,47.12849,1675,9,24,14,45,31,3.95,15.0,fr,53809,33,2298769,1,1,Active Shallow Crust,0.0,89.98917,0.0,09/24/1675 +-0.05547,46.29,3941,11,20,8,44,26,3.55,15.0,fr,53810,78,2299201,1,2,Active Shallow Crust,0.0,89.98998,0.0,11/20/3941 +-0.05547,46.29,7005,11,18,1,47,47,3.55,15.0,fr,53811,140,2299201,1,2,Active Shallow Crust,0.0,89.98998,0.0,11/18/7005 +-0.05547,46.29,1557,11,4,13,41,59,3.65,5.0,fr,53812,31,2299212,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/04/1557 +-0.05547,46.29,1480,3,13,15,38,28,3.75,5.0,fr,53813,29,2299230,1,1,Active Shallow Crust,0.0,89.98998,-90.0,03/13/1480 +-0.05547,46.29,3732,5,22,6,45,57,3.75,5.0,fr,53814,74,2299233,1,1,Active Shallow Crust,128.8966,89.96735,0.0,05/22/3732 +-0.05547,46.29,4331,12,26,16,12,2,4.05,5.0,fr,53815,86,2299260,1,1,Active Shallow Crust,0.0,89.98999,0.0,12/26/4331 +-0.05547,46.29,9764,7,23,13,54,48,4.05,27.5,fr,53816,195,2299262,1,1,Active Shallow Crust,0.0,89.98999,0.0,07/23/9764 +-0.05547,46.29,9298,1,27,11,42,41,4.05,5.0,fr,53817,185,2299263,1,1,Active Shallow Crust,240.0059,58.00582,0.0,01/27/9298 +-0.05547,46.29,6272,1,4,9,50,51,4.25,5.0,fr,53818,125,2299284,1,2,Active Shallow Crust,0.0,89.99001,0.0,01/04/6272 +-0.05547,46.29,7295,10,13,3,53,46,4.25,5.0,fr,53819,145,2299284,1,2,Active Shallow Crust,0.0,89.99001,0.0,10/13/7295 +-0.05547,46.29,8305,2,11,11,43,59,4.35,27.5,fr,53820,166,2299298,1,1,Active Shallow Crust,360.0,89.99001,0.0,02/11/8305 +-3.29811,49.12744,1991,1,11,16,20,43,3.55,5.0,fr,53821,39,2300160,1,1,Active Shallow Crust,0.0,89.9901,0.0,01/11/1991 +-3.29811,49.12744,8510,1,19,0,36,30,3.65,5.0,fr,53822,170,2300172,1,1,Active Shallow Crust,0.0,89.99118,0.0,01/19/8510 +-3.29811,49.12744,3220,10,1,22,43,59,3.85,15.0,fr,53823,64,2300197,1,1,Active Shallow Crust,0.0,89.99065,0.0,10/01/3220 +-1.5854,42.0377,2280,4,14,12,41,28,3.55,5.0,fr,53824,45,2300640,1,1,Active Shallow Crust,0.0,89.99064,0.0,04/14/2280 +-1.5854,42.0377,8805,10,13,4,39,12,3.85,27.5,fr,53825,176,2300678,1,1,Active Shallow Crust,0.0,89.9894,0.0,10/13/8805 +-1.5854,42.0377,7558,12,7,7,27,58,3.85,5.0,fr,53826,151,2300679,1,1,Active Shallow Crust,240.0104,57.9976,0.0,12/07/7558 +-1.5854,42.0377,4203,12,1,1,30,17,4.25,5.0,fr,53827,84,2300724,1,2,Active Shallow Crust,0.0,89.98996,0.0,12/01/4203 +-1.5854,42.0377,5097,3,13,21,59,9,4.25,5.0,fr,53828,101,2300724,1,2,Active Shallow Crust,0.0,89.98996,0.0,03/13/5097 +-1.5854,42.0377,5725,1,24,8,55,11,4.35,5.0,fr,53829,114,2300742,1,1,Active Shallow Crust,0.0,89.9902,-90.0,01/24/5725 +-0.7887,44.8721,9069,3,5,18,23,10,3.85,15.0,fr,53830,181,2301160,1,1,Active Shallow Crust,240.0106,57.99779,0.0,03/05/9069 +-0.7887,44.8721,4377,1,8,21,19,30,4.75,5.0,fr,53831,87,2301264,1,1,Active Shallow Crust,0.0,89.9899,0.0,01/08/4377 +3.8361,50.4566,3602,3,14,13,34,47,3.55,5.0,fr,53832,72,2301600,1,1,Active Shallow Crust,0.0,89.99037,0.0,03/14/3602 +3.8361,50.4566,5651,4,2,2,3,51,3.55,5.0,fr,53833,113,2301603,1,1,Active Shallow Crust,240.0123,57.99855,0.0,04/02/5651 +3.8361,50.4566,7388,11,19,20,54,36,3.65,5.0,fr,53834,147,2301612,1,5,Active Shallow Crust,0.0,89.99142,0.0,11/19/7388 +3.8361,50.4566,1475,11,4,5,7,33,3.65,5.0,fr,53835,29,2301612,1,5,Active Shallow Crust,0.0,89.99142,0.0,11/04/1475 +3.8361,50.4566,905,8,2,16,29,57,3.65,5.0,fr,53836,18,2301612,1,5,Active Shallow Crust,0.0,89.99142,0.0,08/02/0905 +3.8361,50.4566,8309,3,4,15,15,11,3.65,5.0,fr,53837,166,2301612,1,5,Active Shallow Crust,0.0,89.99142,0.0,03/04/8309 +3.8361,50.4566,2247,3,31,23,55,15,3.65,5.0,fr,53838,44,2301612,1,5,Active Shallow Crust,0.0,89.99142,0.0,03/31/2247 +3.8361,50.4566,8313,9,6,18,28,55,3.65,15.0,fr,53839,166,2301613,1,1,Active Shallow Crust,0.0,89.99142,0.0,09/06/8313 +3.8361,50.4566,9432,11,27,15,10,16,3.65,5.0,fr,53840,188,2301618,1,1,Active Shallow Crust,0.0,89.99132,-90.0,11/27/9432 +3.8361,50.4566,5918,9,29,9,10,1,3.75,5.0,fr,53841,118,2301624,1,2,Active Shallow Crust,0.0,89.9898,0.0,09/29/5918 +3.8361,50.4566,9269,6,23,23,48,34,3.75,5.0,fr,53842,185,2301624,1,2,Active Shallow Crust,0.0,89.9898,0.0,06/23/9269 +3.8361,50.4566,1342,10,22,16,47,3,3.75,27.5,fr,53843,26,2301626,1,1,Active Shallow Crust,0.0,89.9898,0.0,10/22/1342 +3.8361,50.4566,1455,4,23,19,33,2,3.85,5.0,fr,53844,29,2301636,1,1,Active Shallow Crust,0.0,89.99091,0.0,04/23/1455 +3.8361,50.4566,2973,10,18,15,37,36,3.85,15.0,fr,53845,59,2301637,1,2,Active Shallow Crust,0.0,89.99091,0.0,10/18/2973 +3.8361,50.4566,2956,5,1,3,34,7,3.85,15.0,fr,53846,59,2301637,1,2,Active Shallow Crust,0.0,89.99091,0.0,05/01/2956 +3.8361,50.4566,5529,9,13,23,29,54,3.85,5.0,fr,53847,110,2301639,1,1,Active Shallow Crust,240.0113,57.99796,0.0,09/13/5529 +3.8361,50.4566,9906,1,30,15,47,12,3.85,15.0,fr,53848,198,2301643,1,1,Active Shallow Crust,0.0,89.99081,-90.0,01/30/9906 +3.8361,50.4566,9307,7,15,19,48,3,3.85,27.5,fr,53849,186,2301644,1,1,Active Shallow Crust,0.0,89.99081,-90.0,07/15/9307 +3.8361,50.4566,2224,11,9,19,30,36,3.85,5.0,fr,53850,44,2301645,1,1,Active Shallow Crust,128.895,89.99432,0.0,11/09/2224 +3.8361,50.4566,7395,7,23,22,53,18,3.95,27.5,fr,53851,147,2301650,1,1,Active Shallow Crust,0.0,89.98988,0.0,07/23/7395 +3.8361,50.4566,8361,10,29,23,35,49,3.95,5.0,fr,53852,167,2301651,1,1,Active Shallow Crust,240.0206,58.00515,0.0,10/29/8361 +3.8361,50.4566,5320,1,29,15,56,43,4.05,5.0,fr,53853,106,2301660,1,1,Active Shallow Crust,0.0,89.98917,0.0,01/29/5320 +3.8361,50.4566,1152,1,27,21,8,10,4.05,15.0,fr,53854,23,2301661,1,1,Active Shallow Crust,0.0,89.98917,0.0,01/27/1152 +3.8361,50.4566,5348,9,2,19,56,6,4.05,5.0,fr,53855,106,2301663,1,1,Active Shallow Crust,240.0066,58.00597,0.0,09/02/5348 +3.8361,50.4566,9324,7,30,15,23,45,4.05,5.0,fr,53856,186,2301669,1,1,Active Shallow Crust,128.89,89.99368,0.0,07/30/9324 +3.8361,50.4566,6940,4,14,22,24,26,4.15,5.0,fr,53857,138,2301672,1,1,Active Shallow Crust,0.0,89.99035,0.0,04/14/6940 +3.8361,50.4566,2897,9,30,1,3,57,4.15,5.0,fr,53858,57,2301675,1,1,Active Shallow Crust,240.0092,57.99747,0.0,09/30/2897 +3.8361,50.4566,990,12,23,11,49,58,4.15,27.5,fr,53859,19,2301677,1,1,Active Shallow Crust,240.0092,57.99744,0.0,12/23/0990 +3.8361,50.4566,8783,5,4,18,12,45,4.25,5.0,fr,53860,175,2301690,1,1,Active Shallow Crust,0.0,89.98985,-90.0,05/04/8783 +3.8361,50.4566,3557,3,19,16,48,49,4.35,5.0,fr,53861,71,2301696,1,1,Active Shallow Crust,0.0,89.98978,0.0,03/19/3557 +3.8361,50.4566,2692,2,20,6,59,8,4.35,15.0,fr,53862,53,2301703,1,1,Active Shallow Crust,0.0,89.98965,-90.0,02/20/2692 +3.8361,50.4566,9306,9,5,21,20,15,4.65,5.0,fr,53863,186,2301732,1,1,Active Shallow Crust,0.0,89.99004,0.0,09/05/9306 +3.8361,50.4566,1386,4,9,9,24,34,4.75,5.0,fr,53864,27,2301744,1,1,Active Shallow Crust,0.0,89.99033,0.0,04/09/1386 +3.8361,50.4566,6796,7,20,23,15,7,5.05,27.5,fr,53865,135,2301782,1,1,Active Shallow Crust,0.0,89.98972,0.0,07/20/6796 +3.15453,52.32472,3179,1,25,17,28,52,4.65,5.0,fr,53866,63,2302221,1,1,Active Shallow Crust,128.8894,89.9869,0.0,01/25/3179 +0.89818,43.66095,2549,9,20,4,41,30,4.05,5.0,fr,53867,50,2302620,1,1,Active Shallow Crust,0.0,89.98975,0.0,09/20/2549 +5.38,40.92405,2443,12,17,0,7,52,3.55,5.0,fr,53868,48,2303040,1,1,Active Shallow Crust,0.0,89.99238,0.0,12/17/2443 +5.38,40.92405,609,9,27,17,40,38,3.85,5.0,fr,53869,12,2303076,1,1,Active Shallow Crust,0.0,89.98921,0.0,09/27/0609 +5.38,40.92405,2965,10,28,12,36,39,4.25,15.0,fr,53870,59,2303125,1,1,Active Shallow Crust,0.0,89.98979,0.0,10/28/2965 +5.38,40.92405,5608,6,27,6,48,1,5.35,15.0,fr,53871,112,2303263,1,1,Active Shallow Crust,0.0,89.9903,-90.0,06/27/5608 +5.67053,47.31721,3724,6,16,6,52,36,3.65,5.0,fr,53872,74,2303532,1,2,Active Shallow Crust,0.0,89.98782,0.0,06/16/3724 +5.67053,47.31721,7000,6,27,13,16,33,3.65,5.0,fr,53873,139,2303532,1,2,Active Shallow Crust,0.0,89.98782,0.0,06/27/7000 +5.67053,47.31721,2252,5,17,11,35,56,3.65,5.0,fr,53874,45,2303535,1,1,Active Shallow Crust,240.0006,58.01318,0.0,05/17/2252 +5.67053,47.31721,8309,11,20,19,23,17,3.75,15.0,fr,53875,166,2303548,1,1,Active Shallow Crust,240.0087,58.01784,0.0,11/20/8309 +5.67053,47.31721,4283,1,20,5,24,55,3.85,5.0,fr,53876,85,2303556,1,2,Active Shallow Crust,0.0,89.99032,0.0,01/20/4283 +5.67053,47.31721,3464,4,26,17,6,9,3.85,5.0,fr,53877,69,2303556,1,2,Active Shallow Crust,0.0,89.99032,0.0,04/26/3464 +5.67053,47.31721,2949,10,7,1,34,49,3.95,5.0,fr,53878,58,2303571,1,2,Active Shallow Crust,240.0202,58.00482,0.0,10/07/2949 +5.67053,47.31721,2520,1,1,8,58,47,3.95,5.0,fr,53879,50,2303571,1,2,Active Shallow Crust,240.0202,58.00482,0.0,01/01/2520 +5.67053,47.31721,2975,5,12,0,50,12,4.25,5.0,fr,53880,59,2303604,1,1,Active Shallow Crust,0.0,89.99084,0.0,05/12/2975 +5.67053,47.31721,1148,4,21,21,5,32,4.35,15.0,fr,53881,22,2303617,1,1,Active Shallow Crust,0.0,89.98911,0.0,04/21/1148 +7.14256,46.46642,2942,8,26,0,21,48,3.55,5.0,fr,53882,58,2304000,1,5,Active Shallow Crust,0.0,89.99306,0.0,08/26/2942 +7.14256,46.46642,8997,1,24,10,45,7,3.55,5.0,fr,53883,179,2304000,1,5,Active Shallow Crust,0.0,89.99306,0.0,01/24/8997 +7.14256,46.46642,8699,8,24,21,5,9,3.55,5.0,fr,53884,173,2304000,1,5,Active Shallow Crust,0.0,89.99306,0.0,08/24/8699 +7.14256,46.46642,5337,8,23,3,3,45,3.55,5.0,fr,53885,106,2304000,1,5,Active Shallow Crust,0.0,89.99306,0.0,08/23/5337 +7.14256,46.46642,4310,1,20,20,50,10,3.55,5.0,fr,53886,86,2304000,1,5,Active Shallow Crust,0.0,89.99306,0.0,01/20/4310 +7.14256,46.46642,953,9,23,19,10,50,3.55,15.0,fr,53887,19,2304001,1,4,Active Shallow Crust,0.0,89.99306,0.0,09/23/0953 +7.14256,46.46642,4148,9,17,4,17,17,3.55,15.0,fr,53888,82,2304001,1,4,Active Shallow Crust,0.0,89.99306,0.0,09/17/4148 +7.14256,46.46642,3293,6,15,18,40,42,3.55,15.0,fr,53889,65,2304001,1,4,Active Shallow Crust,0.0,89.99306,0.0,06/15/3293 +7.14256,46.46642,5153,1,6,10,44,18,3.55,15.0,fr,53890,103,2304001,1,4,Active Shallow Crust,0.0,89.99306,0.0,01/06/5153 +7.14256,46.46642,4013,7,31,21,1,41,3.55,27.5,fr,53891,80,2304002,1,2,Active Shallow Crust,0.0,89.99306,0.0,07/31/4013 +7.14256,46.46642,7469,7,13,0,12,52,3.55,27.5,fr,53892,149,2304002,1,2,Active Shallow Crust,0.0,89.99306,0.0,07/13/7469 +7.14256,46.46642,3462,9,23,17,41,39,3.55,5.0,fr,53893,69,2304003,1,2,Active Shallow Crust,240.0112,57.99878,0.0,09/23/3462 +7.14256,46.46642,8120,1,12,21,13,49,3.55,5.0,fr,53894,162,2304003,1,2,Active Shallow Crust,240.0112,57.99878,0.0,01/12/8120 +7.14256,46.46642,1588,8,3,11,13,31,3.55,15.0,fr,53895,31,2304004,1,2,Active Shallow Crust,240.0112,57.99878,0.0,08/03/1588 +7.14256,46.46642,6927,12,8,8,45,19,3.55,15.0,fr,53896,138,2304004,1,2,Active Shallow Crust,240.0112,57.99878,0.0,12/08/6927 +7.14256,46.46642,111,11,24,4,57,50,3.55,27.5,fr,53897,2,2304005,1,1,Active Shallow Crust,240.0112,57.99869,0.0,11/24/0111 +7.14256,46.46642,4057,8,24,13,20,38,3.55,5.0,fr,53898,81,2304006,1,2,Active Shallow Crust,0.0,89.99297,-90.0,08/24/4057 +7.14256,46.46642,1949,7,27,17,9,1,3.55,5.0,fr,53899,38,2304006,1,2,Active Shallow Crust,0.0,89.99297,-90.0,07/27/1949 +7.14256,46.46642,9143,12,16,20,29,38,3.55,15.0,fr,53900,182,2304010,1,1,Active Shallow Crust,128.895,89.99653,0.0,12/16/9143 +7.14256,46.46642,716,6,15,5,21,4,3.65,5.0,fr,53901,14,2304012,1,11,Active Shallow Crust,0.0,89.98762,0.0,06/15/0716 +7.14256,46.46642,6357,1,21,1,55,30,3.65,5.0,fr,53902,127,2304012,1,11,Active Shallow Crust,0.0,89.98762,0.0,01/21/6357 +7.14256,46.46642,3021,11,29,14,30,48,3.65,5.0,fr,53903,60,2304012,1,11,Active Shallow Crust,0.0,89.98762,0.0,11/29/3021 +7.14256,46.46642,6442,10,7,13,53,36,3.65,5.0,fr,53904,128,2304012,1,11,Active Shallow Crust,0.0,89.98762,0.0,10/07/6442 +7.14256,46.46642,4452,11,16,10,47,58,3.65,5.0,fr,53905,89,2304012,1,11,Active Shallow Crust,0.0,89.98762,0.0,11/16/4452 +7.14256,46.46642,7058,8,21,10,52,11,3.65,5.0,fr,53906,141,2304012,1,11,Active Shallow Crust,0.0,89.98762,0.0,08/21/7058 +7.14256,46.46642,9210,12,29,10,32,6,3.65,5.0,fr,53907,184,2304012,1,11,Active Shallow Crust,0.0,89.98762,0.0,12/29/9210 +7.14256,46.46642,2591,5,24,22,6,30,3.65,5.0,fr,53908,51,2304012,1,11,Active Shallow Crust,0.0,89.98762,0.0,05/24/2591 +7.14256,46.46642,4753,4,25,23,15,13,3.65,5.0,fr,53909,95,2304012,1,11,Active Shallow Crust,0.0,89.98762,0.0,04/25/4753 +7.14256,46.46642,9516,5,11,7,5,43,3.65,5.0,fr,53910,190,2304012,1,11,Active Shallow Crust,0.0,89.98762,0.0,05/11/9516 +7.14256,46.46642,7857,5,4,21,31,58,3.65,5.0,fr,53911,157,2304012,1,11,Active Shallow Crust,0.0,89.98762,0.0,05/04/7857 +7.14256,46.46642,886,10,16,13,0,19,3.65,15.0,fr,53912,17,2304013,1,1,Active Shallow Crust,0.0,89.98762,0.0,10/16/0886 +7.14256,46.46642,7535,3,4,19,27,48,3.65,27.5,fr,53913,150,2304014,1,1,Active Shallow Crust,0.0,89.98762,0.0,03/04/7535 +7.14256,46.46642,3518,4,27,1,55,53,3.65,5.0,fr,53914,70,2304015,1,1,Active Shallow Crust,240.0011,58.01262,0.0,04/27/3518 +7.14256,46.46642,5063,4,23,0,32,49,3.65,15.0,fr,53915,101,2304016,1,1,Active Shallow Crust,240.0011,58.01262,0.0,04/23/5063 +7.14256,46.46642,2634,8,23,12,24,55,3.65,27.5,fr,53916,52,2304017,1,1,Active Shallow Crust,240.0011,58.01253,0.0,08/23/2634 +7.14256,46.46642,5026,5,28,23,22,31,3.65,5.0,fr,53917,100,2304018,1,2,Active Shallow Crust,0.0,89.98747,-90.0,05/28/5026 +7.14256,46.46642,2018,6,30,20,55,7,3.65,5.0,fr,53918,40,2304018,1,2,Active Shallow Crust,0.0,89.98747,-90.0,06/30/2018 +7.14256,46.46642,1451,10,11,8,32,26,3.65,15.0,fr,53919,29,2304019,1,1,Active Shallow Crust,0.0,89.98747,-90.0,10/11/1451 +7.14256,46.46642,4713,2,24,10,33,52,3.65,5.0,fr,53920,94,2304021,1,3,Active Shallow Crust,128.9008,89.96352,0.0,02/24/4713 +7.14256,46.46642,7940,9,16,7,28,34,3.65,5.0,fr,53921,158,2304021,1,3,Active Shallow Crust,128.9008,89.96352,0.0,09/16/7940 +7.14256,46.46642,5924,8,16,14,57,58,3.65,5.0,fr,53922,118,2304021,1,3,Active Shallow Crust,128.9008,89.96352,0.0,08/16/5924 +7.14256,46.46642,9627,8,7,17,9,29,3.75,5.0,fr,53923,192,2304024,1,4,Active Shallow Crust,0.0,89.98897,0.0,08/07/9627 +7.14256,46.46642,9380,10,23,14,5,26,3.75,5.0,fr,53924,187,2304024,1,4,Active Shallow Crust,0.0,89.98897,0.0,10/23/9380 +7.14256,46.46642,4785,5,6,10,19,52,3.75,5.0,fr,53925,95,2304024,1,4,Active Shallow Crust,0.0,89.98897,0.0,05/06/4785 +7.14256,46.46642,2532,5,31,19,42,20,3.75,5.0,fr,53926,50,2304024,1,4,Active Shallow Crust,0.0,89.98897,0.0,05/31/2532 +7.14256,46.46642,9871,3,22,15,16,26,3.75,15.0,fr,53927,197,2304025,1,2,Active Shallow Crust,0.0,89.98897,0.0,03/22/9871 +7.14256,46.46642,6951,11,10,18,19,46,3.75,15.0,fr,53928,139,2304025,1,2,Active Shallow Crust,0.0,89.98897,0.0,11/10/6951 +7.14256,46.46642,6954,2,19,13,25,23,3.75,5.0,fr,53929,139,2304027,1,2,Active Shallow Crust,240.0081,58.01783,0.0,02/19/6954 +7.14256,46.46642,7850,9,20,8,54,50,3.75,5.0,fr,53930,156,2304027,1,2,Active Shallow Crust,240.0081,58.01783,0.0,09/20/7850 +7.14256,46.46642,6459,6,15,17,39,27,3.75,27.5,fr,53931,129,2304029,1,1,Active Shallow Crust,240.0081,58.01783,0.0,06/15/6459 +7.14256,46.46642,8475,8,26,11,49,43,3.75,5.0,fr,53932,169,2304030,1,2,Active Shallow Crust,0.0,89.98884,-90.0,08/26/8475 +7.14256,46.46642,3502,4,4,21,55,31,3.75,5.0,fr,53933,70,2304030,1,2,Active Shallow Crust,0.0,89.98884,-90.0,04/04/3502 +7.14256,46.46642,6070,5,25,14,40,52,3.85,5.0,fr,53934,121,2304036,1,4,Active Shallow Crust,0.0,89.99017,0.0,05/25/6070 +7.14256,46.46642,732,10,6,9,1,4,3.85,5.0,fr,53935,14,2304036,1,4,Active Shallow Crust,0.0,89.99017,0.0,10/06/0732 +7.14256,46.46642,1151,5,28,22,20,14,3.85,5.0,fr,53936,23,2304036,1,4,Active Shallow Crust,0.0,89.99017,0.0,05/28/1151 +7.14256,46.46642,8805,11,26,23,36,11,3.85,5.0,fr,53937,176,2304036,1,4,Active Shallow Crust,0.0,89.99017,0.0,11/26/8805 +7.14256,46.46642,9791,10,19,18,56,17,3.85,15.0,fr,53938,195,2304037,1,2,Active Shallow Crust,0.0,89.99017,0.0,10/19/9791 +7.14256,46.46642,4749,4,28,9,43,12,3.85,15.0,fr,53939,94,2304037,1,2,Active Shallow Crust,0.0,89.99017,0.0,04/28/4749 +7.14256,46.46642,6856,11,27,17,24,41,3.85,27.5,fr,53940,137,2304038,1,1,Active Shallow Crust,0.0,89.99017,0.0,11/27/6856 +7.14256,46.46642,4587,2,20,14,52,8,3.85,5.0,fr,53941,91,2304045,1,2,Active Shallow Crust,128.8951,89.99509,0.0,02/20/4587 +7.14256,46.46642,803,6,29,14,45,35,3.85,5.0,fr,53942,16,2304045,1,2,Active Shallow Crust,128.8951,89.99509,0.0,06/29/0803 +7.14256,46.46642,7244,4,22,17,8,30,3.95,5.0,fr,53943,144,2304048,1,3,Active Shallow Crust,0.0,89.99123,0.0,04/22/7244 +7.14256,46.46642,2898,11,12,1,42,2,3.95,5.0,fr,53944,57,2304048,1,3,Active Shallow Crust,0.0,89.99123,0.0,11/12/2898 +7.14256,46.46642,8571,4,6,9,8,40,3.95,5.0,fr,53945,171,2304048,1,3,Active Shallow Crust,0.0,89.99123,0.0,04/06/8571 +7.14256,46.46642,9269,10,13,6,17,31,3.95,15.0,fr,53946,185,2304049,1,1,Active Shallow Crust,0.0,89.99123,0.0,10/13/9269 +7.14256,46.46642,9279,3,28,12,22,28,3.95,15.0,fr,53947,185,2304052,1,1,Active Shallow Crust,240.0191,58.005,0.0,03/28/9279 +7.14256,46.46642,8037,8,28,9,53,16,3.95,27.5,fr,53948,160,2304056,1,1,Active Shallow Crust,0.0,89.99113,-90.0,08/28/8037 +7.14256,46.46642,4953,6,5,19,7,48,3.95,15.0,fr,53949,99,2304058,1,1,Active Shallow Crust,128.9014,89.99342,0.0,06/05/4953 +7.14256,46.46642,8745,9,14,22,47,7,4.05,5.0,fr,53950,174,2304060,1,5,Active Shallow Crust,0.0,89.98828,0.0,09/14/8745 +7.14256,46.46642,6777,5,14,12,3,45,4.05,5.0,fr,53951,135,2304060,1,5,Active Shallow Crust,0.0,89.98828,0.0,05/14/6777 +7.14256,46.46642,6902,6,17,21,26,20,4.05,5.0,fr,53952,138,2304060,1,5,Active Shallow Crust,0.0,89.98828,0.0,06/17/6902 +7.14256,46.46642,9009,9,27,19,50,57,4.05,5.0,fr,53953,180,2304060,1,5,Active Shallow Crust,0.0,89.98828,0.0,09/27/9009 +7.14256,46.46642,6235,4,26,4,49,29,4.05,5.0,fr,53954,124,2304060,1,5,Active Shallow Crust,0.0,89.98828,0.0,04/26/6235 +7.14256,46.46642,6977,10,22,10,20,29,4.05,5.0,fr,53955,139,2304066,1,2,Active Shallow Crust,0.0,89.98814,-90.0,10/22/6977 +7.14256,46.46642,706,7,30,7,21,56,4.05,5.0,fr,53956,14,2304066,1,2,Active Shallow Crust,0.0,89.98814,-90.0,07/30/0706 +7.14256,46.46642,126,10,4,5,47,44,4.15,5.0,fr,53957,2,2304072,1,5,Active Shallow Crust,0.0,89.98956,0.0,10/04/0126 +7.14256,46.46642,8956,12,8,2,28,2,4.15,5.0,fr,53958,179,2304072,1,5,Active Shallow Crust,0.0,89.98956,0.0,12/08/8956 +7.14256,46.46642,9192,10,26,9,34,10,4.15,5.0,fr,53959,183,2304072,1,5,Active Shallow Crust,0.0,89.98956,0.0,10/26/9192 +7.14256,46.46642,3861,11,1,7,22,58,4.15,5.0,fr,53960,77,2304072,1,5,Active Shallow Crust,0.0,89.98956,0.0,11/01/3861 +7.14256,46.46642,6860,11,12,22,5,43,4.15,5.0,fr,53961,137,2304072,1,5,Active Shallow Crust,0.0,89.98956,0.0,11/12/6860 +7.14256,46.46642,6521,6,13,19,3,19,4.15,5.0,fr,53962,130,2304075,1,2,Active Shallow Crust,240.0085,57.99783,0.0,06/13/6521 +7.14256,46.46642,2678,6,21,17,35,53,4.15,5.0,fr,53963,53,2304075,1,2,Active Shallow Crust,240.0085,57.99783,0.0,06/21/2678 +7.14256,46.46642,6851,6,20,1,0,55,4.15,5.0,fr,53964,137,2304078,1,2,Active Shallow Crust,0.0,89.98943,-90.0,06/20/6851 +7.14256,46.46642,9003,4,5,17,10,51,4.15,5.0,fr,53965,180,2304078,1,2,Active Shallow Crust,0.0,89.98943,-90.0,04/05/9003 +7.14256,46.46642,7464,10,25,1,48,40,4.15,5.0,fr,53966,149,2304081,1,3,Active Shallow Crust,128.8976,89.99304,0.0,10/25/7464 +7.14256,46.46642,8554,6,7,12,16,3,4.15,5.0,fr,53967,171,2304081,1,3,Active Shallow Crust,128.8976,89.99304,0.0,06/07/8554 +7.14256,46.46642,3550,12,3,23,47,7,4.15,5.0,fr,53968,70,2304081,1,3,Active Shallow Crust,128.8976,89.99304,0.0,12/03/3550 +7.14256,46.46642,6452,7,19,13,56,34,4.25,5.0,fr,53969,129,2304084,1,3,Active Shallow Crust,0.0,89.99069,0.0,07/19/6452 +7.14256,46.46642,5730,2,7,20,11,11,4.25,5.0,fr,53970,114,2304084,1,3,Active Shallow Crust,0.0,89.99069,0.0,02/07/5730 +7.14256,46.46642,2897,11,17,12,1,19,4.25,5.0,fr,53971,57,2304084,1,3,Active Shallow Crust,0.0,89.99069,0.0,11/17/2897 +7.14256,46.46642,1937,9,13,14,8,4,4.35,5.0,fr,53972,38,2304096,1,2,Active Shallow Crust,0.0,89.98894,0.0,09/13/1937 +7.14256,46.46642,8818,7,24,11,54,47,4.35,5.0,fr,53973,176,2304096,1,2,Active Shallow Crust,0.0,89.98894,0.0,07/24/8818 +7.14256,46.46642,865,3,19,11,21,51,4.35,5.0,fr,53974,17,2304099,1,1,Active Shallow Crust,240.0088,57.99576,0.0,03/19/0865 +7.14256,46.46642,1801,10,13,11,15,14,4.35,5.0,fr,53975,36,2304105,1,2,Active Shallow Crust,128.8976,89.98302,0.0,10/13/1801 +7.14256,46.46642,2870,10,8,22,17,53,4.35,5.0,fr,53976,57,2304105,1,2,Active Shallow Crust,128.8976,89.98302,0.0,10/08/2870 +7.14256,46.46642,5929,7,8,11,41,48,4.35,27.5,fr,53977,118,2304107,1,1,Active Shallow Crust,128.8976,89.98302,0.0,07/08/5929 +7.14256,46.46642,8874,10,13,22,37,10,4.45,27.5,fr,53978,177,2304110,1,1,Active Shallow Crust,0.0,89.99014,0.0,10/13/8874 +7.14256,46.46642,763,10,2,17,40,29,4.45,5.0,fr,53979,15,2304117,1,1,Active Shallow Crust,128.8917,89.99384,0.0,10/02/0763 +7.14256,46.46642,7289,5,30,23,42,56,4.55,5.0,fr,53980,145,2304120,1,1,Active Shallow Crust,0.0,89.98901,0.0,05/30/7289 +7.14256,46.46642,325,9,3,14,32,25,4.55,5.0,fr,53981,6,2304126,1,1,Active Shallow Crust,0.0,89.98889,-90.0,09/03/0325 +7.14256,46.46642,1567,6,13,5,30,2,4.65,5.0,fr,53982,31,2304132,1,2,Active Shallow Crust,0.0,89.99021,0.0,06/13/1567 +7.14256,46.46642,2851,11,26,7,20,35,4.65,5.0,fr,53983,57,2304132,1,2,Active Shallow Crust,0.0,89.99021,0.0,11/26/2851 +7.14256,46.46642,883,7,17,12,16,9,4.75,5.0,fr,53984,17,2304153,1,1,Active Shallow Crust,128.8885,89.98817,0.0,07/17/0883 +7.14256,46.46642,579,4,6,2,33,31,4.95,5.0,fr,53985,11,2304168,1,1,Active Shallow Crust,0.0,89.9903,0.0,04/06/0579 +7.14256,46.46642,704,2,3,18,42,9,4.95,15.0,fr,53986,14,2304169,1,1,Active Shallow Crust,0.0,89.9903,0.0,02/03/0704 +7.14256,46.46642,2756,11,25,18,49,5,5.05,15.0,fr,53987,55,2304181,1,2,Active Shallow Crust,0.0,89.99012,0.0,11/25/2756 +7.14256,46.46642,3209,4,1,13,54,59,5.05,15.0,fr,53988,64,2304181,1,2,Active Shallow Crust,0.0,89.99012,0.0,04/01/3209 +7.14256,46.46642,3359,9,30,21,37,25,5.15,5.0,fr,53989,67,2304192,1,1,Active Shallow Crust,0.0,89.99009,0.0,09/30/3359 +7.14256,46.46642,3598,3,15,8,58,13,5.35,5.0,fr,53990,71,2304222,1,1,Active Shallow Crust,0.0,89.99026,-90.0,03/15/3598 +6.33001,47.40127,5149,7,8,1,39,56,3.55,5.0,fr,53991,102,2304480,1,1,Active Shallow Crust,0.0,89.99317,0.0,07/08/5149 +6.33001,47.40127,8305,4,30,9,0,36,3.55,5.0,fr,53992,166,2304483,1,1,Active Shallow Crust,240.0136,57.99731,0.0,04/30/8305 +6.33001,47.40127,4004,3,23,18,53,0,3.55,5.0,fr,53993,80,2304489,1,1,Active Shallow Crust,128.8952,89.99659,0.0,03/23/4004 +6.33001,47.40127,6824,5,12,13,25,50,3.65,5.0,fr,53994,136,2304492,1,1,Active Shallow Crust,0.0,89.98783,0.0,05/12/6824 +6.33001,47.40127,8289,2,7,7,59,47,3.65,5.0,fr,53995,165,2304501,1,1,Active Shallow Crust,128.9002,89.96354,0.0,02/07/8289 +6.33001,47.40127,8542,11,27,18,46,5,3.75,27.5,fr,53996,170,2304506,1,1,Active Shallow Crust,0.0,89.98916,0.0,11/27/8542 +6.33001,47.40127,1515,10,16,11,33,32,3.75,5.0,fr,53997,30,2304510,1,1,Active Shallow Crust,0.0,89.98903,-90.0,10/16/1515 +6.33001,47.40127,1576,4,8,3,40,4,3.85,27.5,fr,53998,31,2304518,1,1,Active Shallow Crust,0.0,89.99033,0.0,04/08/1576 +6.33001,47.40127,3513,7,9,19,40,27,3.95,27.5,fr,53999,70,2304530,1,1,Active Shallow Crust,0.0,89.99139,0.0,07/09/3513 +6.33001,47.40127,2787,12,8,5,27,59,4.05,5.0,fr,54000,55,2304540,1,1,Active Shallow Crust,0.0,89.98849,0.0,12/08/2787 +6.33001,47.40127,1952,12,6,13,7,9,4.15,27.5,fr,54001,39,2304554,1,1,Active Shallow Crust,0.0,89.98974,0.0,12/06/1952 +6.33001,47.40127,1190,2,1,6,38,25,4.25,5.0,fr,54002,23,2304564,1,1,Active Shallow Crust,0.0,89.99085,0.0,02/01/1190 +6.33001,47.40127,1223,10,16,1,46,37,4.25,5.0,fr,54003,24,2304567,1,1,Active Shallow Crust,240.0079,57.99417,0.0,10/16/1223 +6.33001,47.40127,3089,6,1,6,11,14,5.25,5.0,fr,54004,61,2304693,1,1,Active Shallow Crust,128.8828,89.987,0.0,06/01/3089 +2.49899,51.67541,294,5,13,3,39,16,3.65,15.0,fr,54005,5,2304973,1,1,Active Shallow Crust,0.0,89.98885,0.0,05/13/0294 +2.49899,51.67541,186,3,11,22,9,57,3.75,15.0,fr,54006,3,2304985,1,1,Active Shallow Crust,0.0,89.99007,0.0,03/11/0186 +2.49899,51.67541,2423,5,23,18,49,44,4.05,15.0,fr,54007,48,2305021,1,1,Active Shallow Crust,0.0,89.98945,0.0,05/23/2423 +1.26069,46.51668,8191,10,11,10,57,33,3.55,5.0,fr,54008,163,2305440,1,1,Active Shallow Crust,0.0,89.98959,0.0,10/11/8191 +1.26069,46.51668,2498,7,19,11,44,1,3.55,15.0,fr,54009,49,2305441,1,1,Active Shallow Crust,0.0,89.98959,0.0,07/19/2498 +1.26069,46.51668,2332,3,19,16,18,14,3.55,27.5,fr,54010,46,2305442,1,1,Active Shallow Crust,0.0,89.98959,0.0,03/19/2332 +1.26069,46.51668,5206,8,11,10,49,15,3.55,5.0,fr,54011,104,2305446,1,2,Active Shallow Crust,0.0,89.98947,-90.0,08/11/5206 +1.26069,46.51668,5724,7,25,8,9,54,3.55,5.0,fr,54012,114,2305446,1,2,Active Shallow Crust,0.0,89.98947,-90.0,07/25/5724 +1.26069,46.51668,9067,4,15,22,51,16,3.65,15.0,fr,54013,181,2305453,1,1,Active Shallow Crust,0.0,89.99072,0.0,04/15/9067 +1.26069,46.51668,5212,5,10,17,39,27,3.65,27.5,fr,54014,104,2305457,1,1,Active Shallow Crust,240.001,58.01291,0.0,05/10/5212 +1.26069,46.51668,5215,10,20,20,9,0,3.65,5.0,fr,54015,104,2305458,1,1,Active Shallow Crust,0.0,89.99062,-90.0,10/20/5215 +1.26069,46.51668,5831,11,16,19,58,36,3.75,15.0,fr,54016,116,2305465,1,1,Active Shallow Crust,0.0,89.99036,0.0,11/16/5831 +1.26069,46.51668,1753,4,3,22,54,21,3.75,5.0,fr,54017,35,2305470,1,1,Active Shallow Crust,0.0,89.99024,-90.0,04/03/1753 +1.26069,46.51668,2549,2,2,17,51,33,3.85,5.0,fr,54018,50,2305479,1,3,Active Shallow Crust,240.0109,57.99768,0.0,02/02/2549 +1.26069,46.51668,3706,12,21,7,5,34,3.85,5.0,fr,54019,74,2305479,1,3,Active Shallow Crust,240.0109,57.99768,0.0,12/21/3706 +1.26069,46.51668,9029,9,25,22,48,54,3.85,5.0,fr,54020,180,2305479,1,3,Active Shallow Crust,240.0109,57.99768,0.0,09/25/9029 +1.26069,46.51668,536,1,14,10,46,9,3.85,15.0,fr,54021,10,2305483,1,1,Active Shallow Crust,0.0,89.99006,-90.0,01/14/0536 +1.26069,46.51668,916,8,15,18,27,43,3.95,5.0,fr,54022,18,2305488,1,1,Active Shallow Crust,0.0,89.99015,0.0,08/15/0916 +1.26069,46.51668,567,4,28,21,45,6,4.25,5.0,fr,54023,11,2305533,1,1,Active Shallow Crust,128.8943,89.98082,0.0,04/28/0567 +1.26069,46.51668,743,9,24,8,34,49,4.35,5.0,fr,54024,14,2305542,1,1,Active Shallow Crust,0.0,89.99022,-90.0,09/24/0743 +1.26069,46.51668,394,3,8,16,21,10,5.45,5.0,fr,54025,7,2305668,1,1,Active Shallow Crust,0.0,89.99007,0.0,03/08/0394 +3.31525,43.98813,7676,7,1,16,20,46,3.65,15.0,fr,54026,153,2305939,1,1,Active Shallow Crust,0.0,89.99019,-90.0,07/01/7676 +3.31525,43.98813,5890,3,25,16,49,24,3.75,15.0,fr,54027,117,2305945,1,1,Active Shallow Crust,0.0,89.99136,0.0,03/25/5890 +3.31525,43.98813,9504,10,24,16,40,57,3.75,15.0,fr,54028,190,2305951,1,1,Active Shallow Crust,0.0,89.99126,-90.0,10/24/9504 +3.31525,43.98813,8091,12,14,11,20,53,3.95,5.0,fr,54029,161,2305968,1,1,Active Shallow Crust,0.0,89.99084,0.0,12/14/8091 +3.31525,43.98813,5582,7,27,1,36,43,4.25,15.0,fr,54030,111,2306005,1,1,Active Shallow Crust,0.0,89.99028,0.0,07/27/5582 +3.31525,43.98813,340,2,14,2,39,8,4.35,5.0,fr,54031,6,2306016,1,1,Active Shallow Crust,0.0,89.98989,0.0,02/14/0340 +3.31525,43.98813,3074,3,29,10,32,35,4.45,5.0,fr,54032,61,2306028,1,1,Active Shallow Crust,0.0,89.9897,0.0,03/29/3074 +3.31525,43.98813,515,8,19,19,46,15,4.55,5.0,fr,54033,10,2306040,1,1,Active Shallow Crust,0.0,89.98968,0.0,08/19/0515 +4.16574,49.3889,7593,7,8,3,42,51,4.05,5.0,fr,54034,151,2306460,1,1,Active Shallow Crust,0.0,89.98893,0.0,07/08/7593 +4.16574,49.3889,9546,11,9,2,14,37,4.55,5.0,fr,54035,190,2306523,1,1,Active Shallow Crust,240.0104,57.99745,0.0,11/09/9546 +3.30303,50.92454,279,3,15,7,54,18,3.55,5.0,fr,54036,5,2306880,1,1,Active Shallow Crust,0.0,89.99046,0.0,03/15/0279 +3.30303,50.92454,6800,8,12,19,59,25,3.65,15.0,fr,54037,135,2306893,1,1,Active Shallow Crust,0.0,89.98867,0.0,08/12/6800 +3.30303,50.92454,1670,9,18,3,17,10,3.65,5.0,fr,54038,33,2306895,1,1,Active Shallow Crust,240.0013,58.01351,0.0,09/18/1670 +3.30303,50.92454,5587,2,1,3,38,12,3.75,15.0,fr,54039,111,2306908,1,1,Active Shallow Crust,240.0087,58.0175,0.0,02/01/5587 +3.30303,50.92454,9228,2,15,10,4,24,3.85,15.0,fr,54040,184,2306920,1,1,Active Shallow Crust,240.0115,57.99793,0.0,02/15/9228 +3.30303,50.92454,4492,7,31,18,51,35,4.15,15.0,fr,54041,89,2306959,1,1,Active Shallow Crust,0.0,89.99033,-90.0,07/31/4492 +3.30303,50.92454,4366,11,1,19,52,56,4.65,5.0,fr,54042,87,2307015,1,1,Active Shallow Crust,240.0124,57.99458,0.0,11/01/4366 +-2.40915,49.60217,4740,8,1,4,20,18,3.65,5.0,fr,54043,94,2307372,1,1,Active Shallow Crust,0.0,89.99126,0.0,08/01/4740 +-2.40915,49.60217,7798,5,21,17,54,18,3.75,5.0,fr,54044,155,2307384,1,1,Active Shallow Crust,0.0,89.98962,0.0,05/21/7798 +-2.40915,49.60217,2326,2,2,21,33,0,3.75,27.5,fr,54045,46,2307386,1,1,Active Shallow Crust,0.0,89.98962,0.0,02/02/2326 +-2.40915,49.60217,2392,10,4,22,47,47,3.95,5.0,fr,54046,47,2307408,1,1,Active Shallow Crust,0.0,89.98969,0.0,10/04/2392 +-2.40915,49.60217,1310,5,17,17,27,45,5.35,15.0,fr,54047,26,2307577,1,1,Active Shallow Crust,0.0,89.99012,0.0,05/17/1310 +1.23983,52.79271,8533,3,2,9,43,8,3.65,15.0,fr,54048,170,2307859,1,1,Active Shallow Crust,0.0,89.99038,-90.0,03/02/8533 +1.23983,52.79271,9773,9,7,23,2,28,3.85,15.0,fr,54049,195,2307883,1,1,Active Shallow Crust,0.0,89.99017,-90.0,09/07/9773 +1.23983,52.79271,2602,2,25,19,35,33,5.95,5.0,fr,54050,52,2308131,1,1,Active Shallow Crust,240.0639,57.99879,0.0,02/25/2602 +-1.84121,47.90201,3418,9,22,3,2,54,3.65,15.0,fr,54051,68,2308336,1,1,Active Shallow Crust,240.0012,58.01291,0.0,09/22/3418 +-1.84121,47.90201,503,2,10,22,45,49,3.75,15.0,fr,54052,10,2308345,1,1,Active Shallow Crust,0.0,89.9906,0.0,02/10/0503 +-1.84121,47.90201,8607,1,10,9,15,24,3.75,5.0,fr,54053,172,2308347,1,1,Active Shallow Crust,240.0085,58.01769,0.0,01/10/8607 +-1.84121,47.90201,9487,10,13,14,52,50,3.95,5.0,fr,54054,189,2308368,1,1,Active Shallow Crust,0.0,89.9904,0.0,10/13/9487 +-1.84121,47.90201,3704,6,5,6,54,27,4.05,5.0,fr,54055,74,2308380,1,1,Active Shallow Crust,0.0,89.98955,0.0,06/05/3704 +-1.84121,47.90201,3314,11,26,20,32,28,4.05,15.0,fr,54056,66,2308381,1,1,Active Shallow Crust,0.0,89.98955,0.0,11/26/3314 +-1.84121,47.90201,154,6,27,1,59,51,4.25,5.0,fr,54057,3,2308407,1,1,Active Shallow Crust,240.0079,57.99414,0.0,06/27/0154 +-1.84121,47.90201,5228,4,7,11,16,50,4.75,5.0,fr,54058,104,2308467,1,1,Active Shallow Crust,240.008,58.00457,0.0,04/07/5228 +8.7515,47.93186,7185,2,25,15,43,43,3.55,5.0,fr,54059,143,2308800,1,1,Active Shallow Crust,0.0,89.98649,0.0,02/25/7185 +8.7515,47.93186,377,10,29,14,54,43,3.55,15.0,fr,54060,7,2308801,1,1,Active Shallow Crust,0.0,89.98649,0.0,10/29/0377 +8.7515,47.93186,2788,12,14,11,17,55,3.55,5.0,fr,54061,55,2308809,1,1,Active Shallow Crust,128.8963,89.99325,0.0,12/14/2788 +8.7515,47.93186,7003,11,18,9,3,52,3.65,5.0,fr,54062,140,2308812,1,1,Active Shallow Crust,0.0,89.98795,0.0,11/18/7003 +8.7515,47.93186,1966,3,22,17,21,25,3.75,5.0,fr,54063,39,2308833,1,1,Active Shallow Crust,128.8963,89.96751,0.0,03/22/1966 +8.7515,47.93186,5411,6,19,5,41,39,3.85,5.0,fr,54064,108,2308836,1,1,Active Shallow Crust,0.0,89.99043,0.0,06/19/5411 +8.7515,47.93186,1240,4,26,13,8,17,3.85,15.0,fr,54065,24,2308837,1,1,Active Shallow Crust,0.0,89.99043,0.0,04/26/1240 +8.7515,47.93186,2266,5,28,4,6,4,4.05,5.0,fr,54066,45,2308860,1,1,Active Shallow Crust,0.0,89.9924,0.0,05/28/2266 +8.7515,47.93186,897,11,26,11,55,52,4.15,5.0,fr,54067,17,2308872,1,1,Active Shallow Crust,0.0,89.99323,0.0,11/26/0897 +8.7515,47.93186,7492,9,20,14,59,19,4.35,5.0,fr,54068,149,2308899,1,1,Active Shallow Crust,240.0077,57.99665,0.0,09/20/7492 +8.7515,47.93186,4535,5,21,8,29,4,4.65,5.0,fr,54069,90,2308932,1,1,Active Shallow Crust,0.0,89.98857,0.0,05/21/4535 +4.34139,49.66348,9593,10,21,20,18,55,4.15,15.0,fr,54070,191,2309356,1,1,Active Shallow Crust,240.0092,57.99733,0.0,10/21/9593 +4.34139,49.66348,1227,11,10,12,59,43,5.15,5.0,fr,54071,24,2309475,1,1,Active Shallow Crust,240.0214,58.00043,0.0,11/10/1227 +1.69232,51.78224,8129,8,8,1,57,47,3.55,15.0,fr,54072,162,2309761,1,1,Active Shallow Crust,0.0,89.99064,0.0,08/08/8129 +1.69232,51.78224,5740,2,21,16,40,16,3.55,5.0,fr,54073,114,2309763,1,1,Active Shallow Crust,240.0124,57.99846,0.0,02/21/5740 +1.69232,51.78224,5775,12,2,5,24,35,3.55,15.0,fr,54074,115,2309767,1,1,Active Shallow Crust,0.0,89.99053,-90.0,12/02/5775 +1.69232,51.78224,5438,6,14,18,36,28,3.65,5.0,fr,54075,108,2309772,1,1,Active Shallow Crust,0.0,89.99027,0.0,06/14/5438 +1.69232,51.78224,1171,11,2,21,54,14,4.55,5.0,fr,54076,23,2309880,1,2,Active Shallow Crust,0.0,89.99014,0.0,11/02/1171 +1.69232,51.78224,1084,11,12,8,59,15,4.55,5.0,fr,54077,21,2309880,1,2,Active Shallow Crust,0.0,89.99014,0.0,11/12/1084 +1.69232,51.78224,8948,6,17,5,27,21,4.65,5.0,fr,54078,178,2309892,1,1,Active Shallow Crust,0.0,89.98989,0.0,06/17/8948 +4.42981,49.80044,3391,5,18,22,55,39,3.55,5.0,fr,54079,67,2310240,1,2,Active Shallow Crust,0.0,89.98698,0.0,05/18/3391 +4.42981,49.80044,8882,6,17,10,25,9,3.55,5.0,fr,54080,177,2310240,1,2,Active Shallow Crust,0.0,89.98698,0.0,06/17/8882 +4.42981,49.80044,1293,5,15,12,7,2,3.55,5.0,fr,54081,25,2310249,1,1,Active Shallow Crust,128.8967,89.99349,0.0,05/15/1293 +4.42981,49.80044,2758,2,3,16,37,10,3.75,15.0,fr,54082,55,2310265,1,1,Active Shallow Crust,0.0,89.98966,0.0,02/03/2758 +4.42981,49.80044,7800,5,21,5,34,45,3.85,5.0,fr,54083,155,2310279,1,1,Active Shallow Crust,240.0115,57.99799,0.0,05/21/7800 +4.42981,49.80044,7483,1,19,21,48,23,5.65,5.0,fr,54084,149,2310498,1,1,Active Shallow Crust,0.0,89.99002,-90.0,01/19/7483 +8.45526,49.29707,9364,3,27,15,15,39,3.55,5.0,fr,54085,187,2310729,1,1,Active Shallow Crust,128.8958,89.99342,0.0,03/27/9364 +8.45526,49.29707,9503,7,23,11,48,47,3.65,5.0,fr,54086,190,2310732,1,1,Active Shallow Crust,0.0,89.98828,0.0,07/23/9503 +8.45526,49.29707,4847,4,26,16,10,33,3.65,15.0,fr,54087,96,2310736,1,1,Active Shallow Crust,240.0002,58.01338,0.0,04/26/4847 +8.45526,49.29707,5172,8,11,1,50,34,3.75,15.0,fr,54088,103,2310745,1,1,Active Shallow Crust,0.0,89.98956,0.0,08/11/5172 +8.45526,49.29707,2797,3,18,14,33,6,3.85,5.0,fr,54089,55,2310756,1,2,Active Shallow Crust,0.0,89.99069,0.0,03/18/2797 +8.45526,49.29707,3748,7,21,21,46,31,3.85,5.0,fr,54090,74,2310756,1,2,Active Shallow Crust,0.0,89.99069,0.0,07/21/3748 +8.45526,49.29707,8130,2,3,2,17,21,3.85,15.0,fr,54091,162,2310763,1,1,Active Shallow Crust,0.0,89.99058,-90.0,02/03/8130 +8.45526,49.29707,8367,8,18,18,18,40,4.05,5.0,fr,54092,167,2310780,1,1,Active Shallow Crust,0.0,89.99261,0.0,08/18/8367 +8.45526,49.29707,9745,3,4,1,6,20,4.75,15.0,fr,54093,194,2310865,1,2,Active Shallow Crust,0.0,89.99009,0.0,03/04/9745 +8.45526,49.29707,2046,6,28,11,57,0,4.75,15.0,fr,54094,40,2310865,1,2,Active Shallow Crust,0.0,89.99009,0.0,06/28/2046 +-2.14842,45.69984,9739,2,9,19,22,31,3.55,5.0,fr,54095,194,2311206,1,1,Active Shallow Crust,0.0,89.98931,-90.0,02/09/9739 +0.22922,44.96088,6519,7,25,12,2,42,3.55,5.0,fr,54096,130,2311680,1,1,Active Shallow Crust,0.0,89.98997,0.0,07/25/6519 +0.22922,44.96088,7011,4,6,0,2,16,3.65,15.0,fr,54097,140,2311696,1,1,Active Shallow Crust,240.0009,58.01288,0.0,04/06/7011 +0.22922,44.96088,9332,6,7,16,45,44,3.95,5.0,fr,54098,186,2311728,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/07/9332 +0.22922,44.96088,7186,2,1,7,52,22,4.65,15.0,fr,54099,143,2311813,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/01/7186 +-1.41022,47.93637,2036,3,3,23,28,55,3.55,15.0,fr,54100,40,2312641,1,1,Active Shallow Crust,0.0,89.98987,0.0,03/03/2036 +-1.41022,47.93637,7169,3,15,8,32,41,3.55,5.0,fr,54101,143,2312646,1,1,Active Shallow Crust,0.0,89.98975,-90.0,03/15/7169 +-1.41022,47.93637,5762,4,2,23,22,25,3.65,5.0,fr,54102,115,2312652,1,2,Active Shallow Crust,0.0,89.98946,0.0,04/02/5762 +-1.41022,47.93637,9300,1,31,1,3,30,3.65,5.0,fr,54103,185,2312652,1,2,Active Shallow Crust,0.0,89.98946,0.0,01/31/9300 +-1.41022,47.93637,3483,6,9,11,40,57,3.85,5.0,fr,54104,69,2312676,1,1,Active Shallow Crust,0.0,89.99043,0.0,06/09/3483 +-1.41022,47.93637,6776,11,26,17,54,52,4.05,5.0,fr,54105,135,2312700,1,2,Active Shallow Crust,0.0,89.98956,0.0,11/26/6776 +-1.41022,47.93637,9523,6,8,17,58,26,4.05,5.0,fr,54106,190,2312700,1,2,Active Shallow Crust,0.0,89.98956,0.0,06/08/9523 +-1.41022,47.93637,4011,4,19,22,52,26,4.05,15.0,fr,54107,80,2312701,1,1,Active Shallow Crust,0.0,89.98956,0.0,04/19/4011 +4.93479,42.48771,624,8,26,18,1,34,3.75,5.0,fr,54108,12,2313624,1,1,Active Shallow Crust,0.0,89.98819,0.0,08/26/0624 +4.93479,42.48771,5965,5,14,21,14,32,4.05,5.0,fr,54109,119,2313660,1,1,Active Shallow Crust,0.0,89.99164,0.0,05/14/5965 +7.96408,46.1686,4961,10,24,4,38,36,3.55,5.0,fr,54110,99,2314080,1,6,Active Shallow Crust,0.0,89.99302,0.0,10/24/4961 +7.96408,46.1686,6017,4,10,20,44,45,3.55,5.0,fr,54111,120,2314080,1,6,Active Shallow Crust,0.0,89.99302,0.0,04/10/6017 +7.96408,46.1686,5030,7,24,13,53,12,3.55,5.0,fr,54112,100,2314080,1,6,Active Shallow Crust,0.0,89.99302,0.0,07/24/5030 +7.96408,46.1686,3007,10,11,19,41,18,3.55,5.0,fr,54113,60,2314080,1,6,Active Shallow Crust,0.0,89.99302,0.0,10/11/3007 +7.96408,46.1686,3174,10,30,15,30,58,3.55,5.0,fr,54114,63,2314080,1,6,Active Shallow Crust,0.0,89.99302,0.0,10/30/3174 +7.96408,46.1686,6562,8,8,5,12,8,3.55,5.0,fr,54115,131,2314080,1,6,Active Shallow Crust,0.0,89.99302,0.0,08/08/6562 +7.96408,46.1686,703,2,4,10,37,59,3.55,15.0,fr,54116,14,2314081,1,2,Active Shallow Crust,0.0,89.99302,0.0,02/04/0703 +7.96408,46.1686,7866,1,23,2,54,42,3.55,15.0,fr,54117,157,2314081,1,2,Active Shallow Crust,0.0,89.99302,0.0,01/23/7866 +7.96408,46.1686,8184,6,26,22,26,33,3.55,5.0,fr,54118,163,2314083,1,1,Active Shallow Crust,240.0121,57.99771,0.0,06/26/8184 +7.96408,46.1686,7938,2,8,4,42,9,3.55,5.0,fr,54119,158,2314086,1,1,Active Shallow Crust,0.0,89.99294,-90.0,02/08/7938 +7.96408,46.1686,572,11,10,21,35,13,3.55,27.5,fr,54120,11,2314088,1,1,Active Shallow Crust,0.0,89.99294,-90.0,11/10/0572 +7.96408,46.1686,7721,8,15,16,27,16,3.55,15.0,fr,54121,154,2314090,1,1,Active Shallow Crust,128.8957,89.99651,0.0,08/15/7721 +7.96408,46.1686,4203,5,13,17,34,31,3.65,5.0,fr,54122,84,2314092,1,6,Active Shallow Crust,0.0,89.98755,0.0,05/13/4203 +7.96408,46.1686,23,2,5,9,17,48,3.65,5.0,fr,54123,0,2314092,1,6,Active Shallow Crust,0.0,89.98755,0.0,02/05/0023 +7.96408,46.1686,6560,11,30,20,8,43,3.65,5.0,fr,54124,131,2314092,1,6,Active Shallow Crust,0.0,89.98755,0.0,11/30/6560 +7.96408,46.1686,4655,12,25,15,52,6,3.65,5.0,fr,54125,93,2314092,1,6,Active Shallow Crust,0.0,89.98755,0.0,12/25/4655 +7.96408,46.1686,1678,5,15,12,28,29,3.65,5.0,fr,54126,33,2314092,1,6,Active Shallow Crust,0.0,89.98755,0.0,05/15/1678 +7.96408,46.1686,3592,2,25,13,1,39,3.65,5.0,fr,54127,71,2314092,1,6,Active Shallow Crust,0.0,89.98755,0.0,02/25/3592 +7.96408,46.1686,3612,6,3,8,47,25,3.65,15.0,fr,54128,72,2314093,1,1,Active Shallow Crust,0.0,89.98755,0.0,06/03/3612 +7.96408,46.1686,7263,8,3,4,37,34,3.65,27.5,fr,54129,145,2314094,1,2,Active Shallow Crust,0.0,89.98755,0.0,08/03/7263 +7.96408,46.1686,7374,2,24,23,29,50,3.65,27.5,fr,54130,147,2314094,1,2,Active Shallow Crust,0.0,89.98755,0.0,02/24/7374 +7.96408,46.1686,1340,6,13,2,27,29,3.65,5.0,fr,54131,26,2314095,1,1,Active Shallow Crust,240.0011,58.01311,0.0,06/13/1340 +7.96408,46.1686,3743,6,23,14,27,10,3.65,15.0,fr,54132,74,2314096,1,2,Active Shallow Crust,240.0011,58.01311,0.0,06/23/3743 +7.96408,46.1686,9791,1,9,20,36,41,3.65,15.0,fr,54133,195,2314096,1,2,Active Shallow Crust,240.0011,58.01311,0.0,01/09/9791 +7.96408,46.1686,190,9,29,8,32,58,3.65,15.0,fr,54134,3,2314102,1,1,Active Shallow Crust,128.9005,89.96352,0.0,09/29/0190 +7.96408,46.1686,5090,12,2,8,36,47,3.75,5.0,fr,54135,101,2314104,1,1,Active Shallow Crust,0.0,89.98891,0.0,12/02/5090 +7.96408,46.1686,9457,8,15,7,6,25,3.75,15.0,fr,54136,189,2314105,1,2,Active Shallow Crust,0.0,89.98891,0.0,08/15/9457 +7.96408,46.1686,6716,12,18,21,47,36,3.75,15.0,fr,54137,134,2314105,1,2,Active Shallow Crust,0.0,89.98891,0.0,12/18/6716 +7.96408,46.1686,684,4,23,2,26,35,3.75,27.5,fr,54138,13,2314106,1,1,Active Shallow Crust,0.0,89.98891,0.0,04/23/0684 +7.96408,46.1686,3006,7,29,5,59,4,3.75,15.0,fr,54139,60,2314111,1,1,Active Shallow Crust,0.0,89.98878,-90.0,07/29/3006 +7.96408,46.1686,1401,4,8,12,8,46,3.75,27.5,fr,54140,28,2314112,1,1,Active Shallow Crust,0.0,89.98878,-90.0,04/08/1401 +7.96408,46.1686,2339,8,3,8,18,0,3.75,5.0,fr,54141,46,2314113,1,2,Active Shallow Crust,128.8956,89.96748,0.0,08/03/2339 +7.96408,46.1686,4128,10,1,15,53,53,3.75,5.0,fr,54142,82,2314113,1,2,Active Shallow Crust,128.8956,89.96748,0.0,10/01/4128 +7.96408,46.1686,3805,2,26,12,45,15,3.85,5.0,fr,54143,76,2314116,1,3,Active Shallow Crust,0.0,89.99011,0.0,02/26/3805 +7.96408,46.1686,1175,2,7,17,35,43,3.85,5.0,fr,54144,23,2314116,1,3,Active Shallow Crust,0.0,89.99011,0.0,02/07/1175 +7.96408,46.1686,5312,3,30,20,6,47,3.85,5.0,fr,54145,106,2314116,1,3,Active Shallow Crust,0.0,89.99011,0.0,03/30/5312 +7.96408,46.1686,1407,4,27,8,34,8,3.85,15.0,fr,54146,28,2314117,1,1,Active Shallow Crust,0.0,89.99011,0.0,04/27/1407 +7.96408,46.1686,547,11,6,7,45,39,3.85,5.0,fr,54147,10,2314119,1,1,Active Shallow Crust,240.0115,57.99796,0.0,11/06/0547 +7.96408,46.1686,2977,6,29,18,4,20,3.85,15.0,fr,54148,59,2314120,1,2,Active Shallow Crust,240.0115,57.99796,0.0,06/29/2977 +7.96408,46.1686,6289,5,31,17,59,28,3.85,15.0,fr,54149,125,2314120,1,2,Active Shallow Crust,240.0115,57.99796,0.0,05/31/6289 +7.96408,46.1686,2632,10,30,15,22,57,3.85,5.0,fr,54150,52,2314122,1,1,Active Shallow Crust,0.0,89.99,-90.0,10/30/2632 +7.96408,46.1686,5893,10,1,10,51,15,3.85,15.0,fr,54151,117,2314126,1,1,Active Shallow Crust,128.896,89.99506,0.0,10/01/5893 +7.96408,46.1686,4269,7,9,10,7,35,3.95,5.0,fr,54152,85,2314128,1,1,Active Shallow Crust,0.0,89.99119,0.0,07/09/4269 +7.96408,46.1686,1870,6,11,18,58,48,3.95,15.0,fr,54153,37,2314129,1,1,Active Shallow Crust,0.0,89.99119,0.0,06/11/1870 +7.96408,46.1686,4264,4,27,6,48,29,3.95,15.0,fr,54154,85,2314132,1,1,Active Shallow Crust,240.02,58.00537,0.0,04/27/4264 +7.96408,46.1686,9973,11,27,23,37,40,4.05,5.0,fr,54155,199,2314140,1,3,Active Shallow Crust,0.0,89.98822,0.0,11/27/9973 +7.96408,46.1686,2659,10,22,22,28,39,4.05,5.0,fr,54156,53,2314140,1,3,Active Shallow Crust,0.0,89.98822,0.0,10/22/2659 +7.96408,46.1686,2285,9,29,6,34,8,4.05,5.0,fr,54157,45,2314140,1,3,Active Shallow Crust,0.0,89.98822,0.0,09/29/2285 +7.96408,46.1686,6882,7,5,7,23,28,4.05,15.0,fr,54158,137,2314141,1,2,Active Shallow Crust,0.0,89.98822,0.0,07/05/6882 +7.96408,46.1686,4630,1,3,7,34,44,4.05,15.0,fr,54159,92,2314141,1,2,Active Shallow Crust,0.0,89.98822,0.0,01/03/4630 +7.96408,46.1686,7086,8,29,4,30,41,4.05,27.5,fr,54160,141,2314142,1,1,Active Shallow Crust,0.0,89.98822,0.0,08/29/7086 +7.96408,46.1686,2400,4,9,14,34,4,4.15,5.0,fr,54161,47,2314152,1,1,Active Shallow Crust,0.0,89.9895,0.0,04/09/2400 +7.96408,46.1686,3591,7,7,22,19,15,4.15,27.5,fr,54162,71,2314154,1,1,Active Shallow Crust,0.0,89.9895,0.0,07/07/3591 +7.96408,46.1686,5613,11,20,14,41,36,4.25,5.0,fr,54163,112,2314164,1,3,Active Shallow Crust,0.0,89.99064,0.0,11/20/5613 +7.96408,46.1686,530,2,13,7,31,7,4.25,5.0,fr,54164,10,2314164,1,3,Active Shallow Crust,0.0,89.99064,0.0,02/13/0530 +7.96408,46.1686,6086,12,1,8,11,54,4.25,5.0,fr,54165,121,2314164,1,3,Active Shallow Crust,0.0,89.99064,0.0,12/01/6086 +7.96408,46.1686,7842,3,28,4,4,47,4.25,5.0,fr,54166,156,2314170,1,2,Active Shallow Crust,0.0,89.99053,-90.0,03/28/7842 +7.96408,46.1686,3322,1,20,19,1,57,4.25,5.0,fr,54167,66,2314170,1,2,Active Shallow Crust,0.0,89.99053,-90.0,01/20/3322 +7.96408,46.1686,2294,2,3,21,55,42,4.35,5.0,fr,54168,45,2314176,1,1,Active Shallow Crust,0.0,89.98888,0.0,02/03/2294 +7.96408,46.1686,2845,11,6,21,54,17,4.35,5.0,fr,54169,56,2314179,1,1,Active Shallow Crust,240.0079,57.99599,0.0,11/06/2845 +7.96408,46.1686,2911,5,11,19,39,18,4.35,15.0,fr,54170,58,2314180,1,2,Active Shallow Crust,240.0079,57.99599,0.0,05/11/2911 +7.96408,46.1686,8219,2,17,20,44,49,4.35,15.0,fr,54171,164,2314180,1,2,Active Shallow Crust,240.0079,57.99599,0.0,02/17/8219 +7.96408,46.1686,4590,6,27,13,39,39,4.45,5.0,fr,54172,91,2314188,1,1,Active Shallow Crust,0.0,89.99009,0.0,06/27/4590 +7.96408,46.1686,7776,6,15,20,41,29,4.45,15.0,fr,54173,155,2314189,1,1,Active Shallow Crust,0.0,89.99009,0.0,06/15/7776 +7.96408,46.1686,2429,6,4,21,34,49,4.75,5.0,fr,54174,48,2314224,1,1,Active Shallow Crust,0.0,89.98947,0.0,06/04/2429 +7.96408,46.1686,3869,12,1,0,35,34,4.75,27.5,fr,54175,77,2314226,1,1,Active Shallow Crust,0.0,89.98947,0.0,12/01/3869 +7.96408,46.1686,7151,11,1,13,56,15,4.75,5.0,fr,54176,143,2314227,1,1,Active Shallow Crust,240.0076,58.00445,0.0,11/01/7151 +7.96408,46.1686,1085,3,6,12,9,56,5.05,5.0,fr,54177,21,2314260,1,1,Active Shallow Crust,0.0,89.99007,0.0,03/06/1085 +7.96408,46.1686,9852,11,22,17,28,11,5.75,5.0,fr,54178,197,2314344,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/22/9852 +5.88266,46.70075,2738,3,9,21,35,8,3.55,5.0,fr,54179,54,2315040,1,1,Active Shallow Crust,0.0,89.99309,0.0,03/09/2738 +5.88266,46.70075,5502,10,14,20,15,36,3.55,15.0,fr,54180,110,2315041,1,2,Active Shallow Crust,0.0,89.99309,0.0,10/14/5502 +5.88266,46.70075,2156,7,14,14,49,33,3.55,15.0,fr,54181,43,2315041,1,2,Active Shallow Crust,0.0,89.99309,0.0,07/14/2156 +5.88266,46.70075,5494,4,27,10,47,16,3.65,5.0,fr,54182,109,2315052,1,1,Active Shallow Crust,0.0,89.98767,0.0,04/27/5494 +5.88266,46.70075,9684,6,7,11,26,23,3.85,27.5,fr,54183,193,2315078,1,1,Active Shallow Crust,0.0,89.99021,0.0,06/07/9684 +5.88266,46.70075,3999,12,6,5,37,47,3.95,5.0,fr,54184,79,2315088,1,1,Active Shallow Crust,0.0,89.99127,0.0,12/06/3999 +5.88266,46.70075,2143,8,19,23,56,33,4.15,5.0,fr,54185,42,2315112,1,1,Active Shallow Crust,0.0,89.9896,0.0,08/19/2143 +5.88266,46.70075,4608,3,3,22,57,32,4.25,15.0,fr,54186,92,2315125,1,1,Active Shallow Crust,0.0,89.99073,0.0,03/03/4608 +5.88266,46.70075,1301,9,5,16,28,53,4.25,27.5,fr,54187,26,2315126,1,1,Active Shallow Crust,0.0,89.99073,0.0,09/05/1301 +5.88266,46.70075,8674,9,22,6,48,5,4.25,27.5,fr,54188,173,2315129,1,1,Active Shallow Crust,240.0075,57.9942,0.0,09/22/8674 +7.44897,45.06221,7503,3,6,1,33,33,3.55,5.0,fr,54189,150,2315520,1,8,Active Shallow Crust,0.0,89.99287,0.0,03/06/7503 +7.44897,45.06221,4624,6,8,23,50,26,3.55,5.0,fr,54190,92,2315520,1,8,Active Shallow Crust,0.0,89.99287,0.0,06/08/4624 +7.44897,45.06221,7913,5,24,21,10,39,3.55,5.0,fr,54191,158,2315520,1,8,Active Shallow Crust,0.0,89.99287,0.0,05/24/7913 +7.44897,45.06221,5406,4,13,22,30,19,3.55,5.0,fr,54192,108,2315520,1,8,Active Shallow Crust,0.0,89.99287,0.0,04/13/5406 +7.44897,45.06221,9914,8,13,21,57,49,3.55,5.0,fr,54193,198,2315520,1,8,Active Shallow Crust,0.0,89.99287,0.0,08/13/9914 +7.44897,45.06221,9778,10,1,19,37,48,3.55,5.0,fr,54194,195,2315520,1,8,Active Shallow Crust,0.0,89.99287,0.0,10/01/9778 +7.44897,45.06221,8777,9,19,12,55,6,3.55,5.0,fr,54195,175,2315520,1,8,Active Shallow Crust,0.0,89.99287,0.0,09/19/8777 +7.44897,45.06221,8489,12,21,11,46,47,3.55,5.0,fr,54196,169,2315520,1,8,Active Shallow Crust,0.0,89.99287,0.0,12/21/8489 +7.44897,45.06221,1079,9,9,16,23,12,3.55,15.0,fr,54197,21,2315521,1,1,Active Shallow Crust,0.0,89.99287,0.0,09/09/1079 +7.44897,45.06221,6073,5,4,20,54,46,3.55,5.0,fr,54198,121,2315523,1,1,Active Shallow Crust,240.0114,57.99929,0.0,05/04/6073 +7.44897,45.06221,409,5,5,0,40,13,3.55,15.0,fr,54199,8,2315524,1,1,Active Shallow Crust,240.0114,57.99929,0.0,05/05/0409 +7.44897,45.06221,6378,11,17,7,56,26,3.55,5.0,fr,54200,127,2315529,1,1,Active Shallow Crust,128.8969,89.99287,0.0,11/17/6378 +7.44897,45.06221,2807,3,7,12,23,44,3.65,5.0,fr,54201,56,2315532,1,5,Active Shallow Crust,0.0,89.9873,0.0,03/07/2807 +7.44897,45.06221,3412,9,18,23,33,13,3.65,5.0,fr,54202,68,2315532,1,5,Active Shallow Crust,0.0,89.9873,0.0,09/18/3412 +7.44897,45.06221,9823,1,13,0,19,49,3.65,5.0,fr,54203,196,2315532,1,5,Active Shallow Crust,0.0,89.9873,0.0,01/13/9823 +7.44897,45.06221,8981,12,28,4,54,39,3.65,5.0,fr,54204,179,2315532,1,5,Active Shallow Crust,0.0,89.9873,0.0,12/28/8981 +7.44897,45.06221,8366,3,1,13,0,0,3.65,5.0,fr,54205,167,2315532,1,5,Active Shallow Crust,0.0,89.9873,0.0,03/01/8366 +7.44897,45.06221,2195,7,14,19,14,42,3.65,15.0,fr,54206,43,2315533,1,1,Active Shallow Crust,0.0,89.9873,0.0,07/14/2195 +7.44897,45.06221,7479,7,14,21,5,0,3.65,5.0,fr,54207,149,2315535,1,3,Active Shallow Crust,240.0002,58.01404,0.0,07/14/7479 +7.44897,45.06221,9079,5,13,10,21,53,3.65,5.0,fr,54208,181,2315535,1,3,Active Shallow Crust,240.0002,58.01404,0.0,05/13/9079 +7.44897,45.06221,4486,6,29,2,37,14,3.65,5.0,fr,54209,89,2315535,1,3,Active Shallow Crust,240.0002,58.01404,0.0,06/29/4486 +7.44897,45.06221,9858,4,18,14,35,38,3.65,15.0,fr,54210,197,2315542,1,1,Active Shallow Crust,128.9007,89.96349,0.0,04/18/9858 +7.44897,45.06221,9391,8,8,21,30,56,3.75,5.0,fr,54211,187,2315544,1,5,Active Shallow Crust,0.0,89.98869,0.0,08/08/9391 +7.44897,45.06221,2983,4,1,6,12,52,3.75,5.0,fr,54212,59,2315544,1,5,Active Shallow Crust,0.0,89.98869,0.0,04/01/2983 +7.44897,45.06221,1381,10,15,15,41,34,3.75,5.0,fr,54213,27,2315544,1,5,Active Shallow Crust,0.0,89.98869,0.0,10/15/1381 +7.44897,45.06221,9711,6,17,7,26,7,3.75,5.0,fr,54214,194,2315544,1,5,Active Shallow Crust,0.0,89.98869,0.0,06/17/9711 +7.44897,45.06221,1878,5,17,10,53,46,3.75,5.0,fr,54215,37,2315544,1,5,Active Shallow Crust,0.0,89.98869,0.0,05/17/1878 +7.44897,45.06221,3109,12,27,16,2,31,3.75,15.0,fr,54216,62,2315545,1,3,Active Shallow Crust,0.0,89.98869,0.0,12/27/3109 +7.44897,45.06221,498,10,30,17,1,14,3.75,15.0,fr,54217,9,2315545,1,3,Active Shallow Crust,0.0,89.98869,0.0,10/30/0498 +7.44897,45.06221,6683,6,2,19,0,37,3.75,15.0,fr,54218,133,2315545,1,3,Active Shallow Crust,0.0,89.98869,0.0,06/02/6683 +7.44897,45.06221,4331,3,14,14,34,18,3.75,5.0,fr,54219,86,2315547,1,1,Active Shallow Crust,240.0082,58.01806,0.0,03/14/4331 +7.44897,45.06221,1558,3,1,6,46,21,3.75,5.0,fr,54220,31,2315550,1,1,Active Shallow Crust,0.0,89.98856,-90.0,03/01/1558 +7.44897,45.06221,3285,10,2,21,19,44,3.75,15.0,fr,54221,65,2315554,1,1,Active Shallow Crust,128.8973,89.96747,0.0,10/02/3285 +7.44897,45.06221,9543,7,27,14,11,6,3.85,5.0,fr,54222,190,2315556,1,3,Active Shallow Crust,0.0,89.98991,0.0,07/27/9543 +7.44897,45.06221,6246,1,7,23,27,5,3.85,5.0,fr,54223,124,2315556,1,3,Active Shallow Crust,0.0,89.98991,0.0,01/07/6246 +7.44897,45.06221,8910,1,1,9,59,55,3.85,5.0,fr,54224,178,2315556,1,3,Active Shallow Crust,0.0,89.98991,0.0,01/01/8910 +7.44897,45.06221,8646,1,10,4,47,55,3.85,15.0,fr,54225,172,2315557,1,1,Active Shallow Crust,0.0,89.98991,0.0,01/10/8646 +7.44897,45.06221,7261,6,18,16,50,32,3.85,5.0,fr,54226,145,2315559,1,1,Active Shallow Crust,240.0116,57.99691,0.0,06/18/7261 +7.44897,45.06221,5783,4,3,5,22,33,3.95,5.0,fr,54227,115,2315568,1,2,Active Shallow Crust,0.0,89.99101,0.0,04/03/5783 +7.44897,45.06221,2716,6,18,2,44,19,3.95,5.0,fr,54228,54,2315568,1,2,Active Shallow Crust,0.0,89.99101,0.0,06/18/2716 +7.44897,45.06221,2483,1,19,10,15,44,3.95,15.0,fr,54229,49,2315569,1,2,Active Shallow Crust,0.0,89.99101,0.0,01/19/2483 +7.44897,45.06221,8172,4,13,7,1,28,3.95,15.0,fr,54230,163,2315569,1,2,Active Shallow Crust,0.0,89.99101,0.0,04/13/8172 +7.44897,45.06221,6418,4,23,0,1,24,3.95,27.5,fr,54231,128,2315573,1,1,Active Shallow Crust,240.0199,58.00478,0.0,04/23/6418 +7.44897,45.06221,5760,2,2,22,46,58,3.95,5.0,fr,54232,115,2315574,1,1,Active Shallow Crust,0.0,89.99091,-90.0,02/02/5760 +7.44897,45.06221,8333,1,3,10,37,47,4.05,5.0,fr,54233,166,2315580,1,2,Active Shallow Crust,0.0,89.99199,0.0,01/03/8333 +7.44897,45.06221,4858,8,22,11,6,49,4.05,5.0,fr,54234,97,2315580,1,2,Active Shallow Crust,0.0,89.99199,0.0,08/22/4858 +7.44897,45.06221,1747,6,4,9,7,9,4.05,15.0,fr,54235,34,2315581,1,1,Active Shallow Crust,0.0,89.99199,0.0,06/04/1747 +7.44897,45.06221,1468,4,17,0,40,13,4.05,15.0,fr,54236,29,2315584,1,1,Active Shallow Crust,240.0056,58.00585,0.0,04/17/1468 +7.44897,45.06221,3559,2,8,12,20,38,4.15,5.0,fr,54237,71,2315595,1,1,Active Shallow Crust,240.0088,57.99721,0.0,02/08/3559 +7.44897,45.06221,9624,12,23,18,42,20,4.15,5.0,fr,54238,192,2315598,1,1,Active Shallow Crust,0.0,89.98917,-90.0,12/23/9624 +7.44897,45.06221,1484,5,8,15,55,18,4.15,5.0,fr,54239,29,2315601,1,1,Active Shallow Crust,128.8968,89.99464,0.0,05/08/1484 +7.44897,45.06221,1682,9,25,20,5,28,4.25,5.0,fr,54240,33,2315610,1,1,Active Shallow Crust,0.0,89.99034,-90.0,09/25/1682 +7.44897,45.06221,8919,7,25,5,12,39,4.35,5.0,fr,54241,178,2315616,1,1,Active Shallow Crust,0.0,89.98866,0.0,07/25/8919 +7.44897,45.06221,643,4,3,23,14,52,4.45,5.0,fr,54242,12,2315628,1,3,Active Shallow Crust,0.0,89.98989,0.0,04/03/0643 +7.44897,45.06221,5730,5,15,2,22,57,4.45,5.0,fr,54243,114,2315628,1,3,Active Shallow Crust,0.0,89.98989,0.0,05/15/5730 +7.44897,45.06221,6121,8,11,23,48,42,4.45,5.0,fr,54244,122,2315628,1,3,Active Shallow Crust,0.0,89.98989,0.0,08/11/6121 +7.44897,45.06221,705,11,9,22,5,46,4.45,15.0,fr,54245,14,2315629,1,1,Active Shallow Crust,0.0,89.98989,0.0,11/09/0705 +7.44897,45.06221,3976,5,11,9,45,2,4.45,5.0,fr,54246,79,2315631,1,1,Active Shallow Crust,240.0052,57.99411,0.0,05/11/3976 +7.44897,45.06221,7422,12,6,19,39,5,4.65,15.0,fr,54247,148,2315653,1,1,Active Shallow Crust,0.0,89.98996,0.0,12/06/7422 +7.44897,45.06221,6909,6,10,21,20,36,4.65,5.0,fr,54248,138,2315658,1,1,Active Shallow Crust,0.0,89.98985,-90.0,06/10/6909 +7.44897,45.06221,8898,10,10,12,46,18,4.75,5.0,fr,54249,177,2315664,1,2,Active Shallow Crust,0.0,89.98927,0.0,10/10/8898 +7.44897,45.06221,5137,6,18,19,56,47,4.75,5.0,fr,54250,102,2315664,1,2,Active Shallow Crust,0.0,89.98927,0.0,06/18/5137 +7.44897,45.06221,4717,8,13,18,34,40,4.75,27.5,fr,54251,94,2315669,1,1,Active Shallow Crust,240.0068,58.00437,0.0,08/13/4717 +7.44897,45.06221,8854,11,17,17,34,17,4.75,15.0,fr,54252,177,2315671,1,1,Active Shallow Crust,0.0,89.98914,-90.0,11/17/8854 +7.44897,45.06221,7693,5,4,17,46,19,4.85,5.0,fr,54253,153,2315679,1,1,Active Shallow Crust,240.0166,58.00219,0.0,05/04/7693 +7.44897,45.06221,7590,1,25,15,57,47,4.95,5.0,fr,54254,151,2315688,1,1,Active Shallow Crust,0.0,89.99005,0.0,01/25/7590 +7.44897,45.06221,6673,4,18,9,27,45,4.95,15.0,fr,54255,133,2315698,1,1,Active Shallow Crust,128.8904,89.98972,0.0,04/18/6673 +7.44897,45.06221,2395,3,1,15,14,21,5.45,5.0,fr,54256,47,2315748,1,1,Active Shallow Crust,0.0,89.98961,0.0,03/01/2395 +7.448971,45.06221,4479,2,18,5,13,5,6.05,5.357596,fr,54257,89,2315820,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/18/4479 +-1.49589,43.43033,7463,7,7,13,15,23,3.55,5.0,fr,54258,149,2316000,1,1,Active Shallow Crust,0.0,89.99084,0.0,07/07/7463 +-1.49589,43.43033,2489,7,29,14,28,52,3.55,15.0,fr,54259,49,2316001,1,2,Active Shallow Crust,0.0,89.99084,0.0,07/29/2489 +-1.49589,43.43033,1569,8,5,12,43,27,3.55,15.0,fr,54260,31,2316001,1,2,Active Shallow Crust,0.0,89.99084,0.0,08/05/1569 +-1.49589,43.43033,7939,10,16,7,43,26,3.75,5.0,fr,54261,158,2316024,1,3,Active Shallow Crust,0.0,89.98982,0.0,10/16/7939 +-1.49589,43.43033,8639,5,31,23,10,13,3.75,5.0,fr,54262,172,2316024,1,3,Active Shallow Crust,0.0,89.98982,0.0,05/31/8639 +-1.49589,43.43033,1275,1,5,19,38,5,3.75,5.0,fr,54263,25,2316024,1,3,Active Shallow Crust,0.0,89.98982,0.0,01/05/1275 +-1.49589,43.43033,8996,6,10,4,58,23,3.85,5.0,fr,54264,179,2316036,1,2,Active Shallow Crust,0.0,89.98963,0.0,06/10/8996 +-1.49589,43.43033,9524,6,29,3,24,28,3.85,5.0,fr,54265,190,2316036,1,2,Active Shallow Crust,0.0,89.98963,0.0,06/29/9524 +-1.49589,43.43033,6570,11,29,2,5,58,3.95,15.0,fr,54266,131,2316049,1,1,Active Shallow Crust,0.0,89.9896,0.0,11/29/6570 +-1.49589,43.43033,1411,8,16,14,47,19,3.95,5.0,fr,54267,28,2316057,1,1,Active Shallow Crust,128.9008,89.99364,0.0,08/16/1411 +-1.49589,43.43033,3035,10,4,2,15,50,4.35,15.0,fr,54268,60,2316097,1,1,Active Shallow Crust,0.0,89.98979,0.0,10/04/3035 +-1.49589,43.43033,9254,2,1,18,53,56,4.45,5.0,fr,54269,185,2316108,1,1,Active Shallow Crust,0.0,89.99026,0.0,02/01/9254 +-1.49589,43.43033,3761,11,8,21,44,44,4.95,5.0,fr,54270,75,2316168,1,1,Active Shallow Crust,0.0,89.99014,0.0,11/08/3761 +-1.49589,43.43033,4924,9,28,10,30,17,5.25,5.0,fr,54271,98,2316207,1,1,Active Shallow Crust,240.0186,57.99994,0.0,09/28/4924 +0.51446,48.06964,8528,11,1,0,33,34,3.55,5.0,fr,54272,170,2316483,1,1,Active Shallow Crust,240.0125,57.99817,0.0,11/01/8528 +0.51446,48.06964,1601,6,26,7,57,30,3.65,5.0,fr,54273,32,2316492,1,1,Active Shallow Crust,0.0,89.99024,0.0,06/26/1601 +0.51446,48.06964,3729,1,28,3,18,18,3.75,15.0,fr,54274,74,2316505,1,2,Active Shallow Crust,0.0,89.98997,0.0,01/28/3729 +0.51446,48.06964,2925,9,3,20,27,41,3.75,15.0,fr,54275,58,2316505,1,2,Active Shallow Crust,0.0,89.98997,0.0,09/03/2925 +-1.00085,49.83318,523,8,18,2,15,18,3.65,27.5,fr,54276,10,2316974,1,1,Active Shallow Crust,0.0,89.98985,0.0,08/18/0523 +-1.00085,49.83318,2899,10,2,20,43,16,3.65,5.0,fr,54277,57,2316978,1,1,Active Shallow Crust,0.0,89.98974,-90.0,10/02/2899 +-1.00085,49.83318,2717,1,25,2,20,44,3.65,5.0,fr,54278,54,2316981,1,1,Active Shallow Crust,128.9003,89.96346,0.0,01/25/2717 +-1.00085,49.83318,5303,8,25,0,33,3,3.85,15.0,fr,54279,106,2317000,1,1,Active Shallow Crust,240.0112,57.99795,0.0,08/25/5303 +-1.00085,49.83318,9752,7,5,17,21,43,3.85,15.0,fr,54280,195,2317003,1,1,Active Shallow Crust,0.0,89.98952,-90.0,07/05/9752 +-1.00085,49.83318,3827,5,11,5,55,27,4.45,5.0,fr,54281,76,2317068,1,1,Active Shallow Crust,0.0,89.99019,0.0,05/11/3827 +-1.00085,49.83318,8238,6,14,18,43,12,4.45,5.0,fr,54282,164,2317074,1,1,Active Shallow Crust,0.0,89.99007,-90.0,06/14/8238 +-1.00085,49.83318,1501,4,18,15,21,59,4.65,5.0,fr,54283,30,2317101,1,1,Active Shallow Crust,128.8902,89.98695,0.0,04/18/1501 +8.39596,48.02284,4149,9,10,23,3,58,3.55,5.0,fr,54284,82,2317440,1,1,Active Shallow Crust,0.0,89.98651,0.0,09/10/4149 +8.39596,48.02284,8043,9,7,16,38,31,3.55,5.0,fr,54285,160,2317449,1,1,Active Shallow Crust,128.899,89.99326,0.0,09/07/8043 +8.39596,48.02284,9409,10,8,7,14,19,3.65,27.5,fr,54286,188,2317457,1,1,Active Shallow Crust,240.0011,58.01416,0.0,10/08/9409 +8.39596,48.02284,5958,1,28,5,41,54,3.75,15.0,fr,54287,119,2317465,1,1,Active Shallow Crust,0.0,89.98929,0.0,01/28/5958 +8.39596,48.02284,9014,12,25,6,29,30,3.75,5.0,fr,54288,180,2317467,1,1,Active Shallow Crust,240.0078,58.0191,0.0,12/25/9014 +8.39596,48.02284,2545,9,20,22,20,16,3.85,5.0,fr,54289,50,2317476,1,1,Active Shallow Crust,0.0,89.99045,0.0,09/20/2545 +8.39596,48.02284,5871,3,17,3,45,56,3.95,15.0,fr,54290,117,2317489,1,1,Active Shallow Crust,0.0,89.99149,0.0,03/17/5871 +8.39596,48.02284,238,12,7,12,14,24,4.05,5.0,fr,54291,4,2317500,1,1,Active Shallow Crust,0.0,89.99242,0.0,12/07/0238 +8.39596,48.02284,8181,2,23,11,44,11,4.35,5.0,fr,54292,163,2317536,1,1,Active Shallow Crust,0.0,89.98926,0.0,02/23/8181 +8.39596,48.02284,3670,4,16,14,2,50,4.45,5.0,fr,54293,73,2317548,1,1,Active Shallow Crust,0.0,89.99043,0.0,04/16/3670 +8.39596,48.02284,7440,4,17,18,24,38,4.75,27.5,fr,54294,148,2317589,1,1,Active Shallow Crust,240.0084,58.00496,0.0,04/17/7440 +8.39596,48.02284,7656,9,4,3,37,52,5.15,5.0,fr,54295,153,2317632,1,1,Active Shallow Crust,0.0,89.98931,0.0,09/04/7656 +8.39596,48.02284,4203,4,4,9,21,9,5.95,5.0,fr,54296,84,2317728,1,1,Active Shallow Crust,0.0,89.98978,0.0,04/04/4203 +1.51873,47.33144,7417,5,28,6,27,31,3.55,5.0,fr,54297,148,2317920,1,1,Active Shallow Crust,0.0,89.98975,0.0,05/28/7417 +1.51873,47.33144,2882,6,30,13,50,32,3.55,15.0,fr,54298,57,2317924,1,1,Active Shallow Crust,240.0123,57.9982,0.0,06/30/2882 +1.51873,47.33144,4788,4,1,11,4,37,3.65,5.0,fr,54299,95,2317932,1,1,Active Shallow Crust,0.0,89.98934,0.0,04/01/4788 +1.51873,47.33144,8014,1,23,9,33,37,3.65,15.0,fr,54300,160,2317933,1,1,Active Shallow Crust,0.0,89.98934,0.0,01/23/8014 +1.51873,47.33144,7,2,3,6,46,55,4.15,5.0,fr,54301,0,2317992,1,2,Active Shallow Crust,0.0,89.98972,0.0,02/03/0007 +1.51873,47.33144,7124,3,12,7,11,22,4.15,5.0,fr,54302,142,2317992,1,2,Active Shallow Crust,0.0,89.98972,0.0,03/12/7124 +1.51873,47.33144,4417,4,17,5,56,3,4.25,15.0,fr,54303,88,2318005,1,1,Active Shallow Crust,0.0,89.99007,0.0,04/17/4417 +1.51873,47.33144,6158,5,16,16,1,11,4.35,5.0,fr,54304,123,2318022,1,1,Active Shallow Crust,0.0,89.98968,-90.0,05/16/6158 +1.51873,47.33144,366,10,28,22,19,48,4.45,15.0,fr,54305,7,2318032,1,1,Active Shallow Crust,240.0055,57.99475,0.0,10/28/0366 +3.98932,46.18213,148,10,14,17,27,3,4.05,5.0,fr,54306,2,2318469,1,1,Active Shallow Crust,128.8906,89.99411,0.0,10/14/0148 +3.98932,46.18213,6217,3,23,6,55,30,4.65,5.0,fr,54307,124,2318535,1,1,Active Shallow Crust,240.0107,57.99425,0.0,03/23/6217 +3.98932,46.18213,4574,11,3,0,24,16,4.75,5.0,fr,54308,91,2318544,1,1,Active Shallow Crust,0.0,89.99036,0.0,11/03/4574 +3.98932,46.18213,2658,1,19,20,57,55,4.85,5.0,fr,54309,53,2318562,1,1,Active Shallow Crust,0.0,89.98972,-90.0,01/19/2658 +3.98932,46.18213,5160,11,29,6,52,31,5.75,5.0,fr,54310,103,2318673,1,1,Active Shallow Crust,128.8743,89.98854,0.0,11/29/5160 +7.37823,45.58013,712,11,29,19,57,0,3.55,15.0,fr,54311,14,2318881,1,1,Active Shallow Crust,0.0,89.99294,0.0,11/29/0712 +7.37823,45.58013,1291,8,19,23,59,56,3.65,15.0,fr,54312,25,2318893,1,1,Active Shallow Crust,0.0,89.98742,0.0,08/19/1291 +7.37823,45.58013,1360,8,16,12,7,18,3.65,27.5,fr,54313,27,2318894,1,1,Active Shallow Crust,0.0,89.98742,0.0,08/16/1360 +7.37823,45.58013,627,4,4,21,50,3,3.85,15.0,fr,54314,12,2318917,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/04/0627 +7.37823,45.58013,5313,7,21,5,40,49,3.85,5.0,fr,54315,106,2318919,1,1,Active Shallow Crust,240.0107,57.99723,0.0,07/21/5313 +7.37823,45.58013,820,4,30,14,6,6,4.25,5.0,fr,54316,16,2318964,1,1,Active Shallow Crust,0.0,89.99054,0.0,04/30/0820 +7.37823,45.58013,8687,3,17,17,59,54,4.35,15.0,fr,54317,173,2318977,1,1,Active Shallow Crust,0.0,89.98876,0.0,03/17/8687 +3.55775,51.94959,8605,7,19,20,42,30,3.55,5.0,fr,54318,172,2319360,1,1,Active Shallow Crust,0.0,89.99068,0.0,07/19/8605 +3.55775,51.94959,9867,6,12,5,42,21,3.55,15.0,fr,54319,197,2319364,1,1,Active Shallow Crust,240.0127,57.99831,0.0,06/12/9867 +3.55775,51.94959,6311,1,30,17,58,12,3.85,5.0,fr,54320,126,2319396,1,1,Active Shallow Crust,0.0,89.989,0.0,01/30/6311 +3.55775,51.94959,3540,9,1,1,53,27,4.65,15.0,fr,54321,70,2319493,1,1,Active Shallow Crust,0.0,89.99036,0.0,09/01/3540 +2.75353,46.38189,3914,12,19,16,49,54,3.55,5.0,fr,54322,78,2319840,1,1,Active Shallow Crust,0.0,89.98956,0.0,12/19/3914 +2.75353,46.38189,427,2,19,12,45,49,3.75,5.0,fr,54323,8,2319864,1,1,Active Shallow Crust,0.0,89.98895,0.0,02/19/0427 +2.75353,46.38189,1297,3,20,18,9,17,3.75,15.0,fr,54324,25,2319865,1,1,Active Shallow Crust,0.0,89.98895,0.0,03/20/1297 +2.75353,46.38189,150,5,12,19,56,2,3.85,27.5,fr,54325,2,2319884,1,1,Active Shallow Crust,0.0,89.99004,-90.0,05/12/0150 +2.75353,46.38189,1510,3,26,14,24,21,4.15,5.0,fr,54326,30,2319912,1,1,Active Shallow Crust,0.0,89.98954,0.0,03/26/1510 +2.75353,46.38189,931,3,12,3,52,23,4.15,15.0,fr,54327,18,2319913,1,1,Active Shallow Crust,0.0,89.98954,0.0,03/12/0931 +2.75353,46.38189,5292,8,17,18,31,40,4.45,5.0,fr,54328,105,2319957,1,1,Active Shallow Crust,128.8924,89.99383,0.0,08/17/5292 +2.75353,46.38189,6110,4,5,12,15,52,4.95,15.0,fr,54329,122,2320009,1,1,Active Shallow Crust,0.0,89.99028,0.0,04/05/6110 +2.75353,46.38189,9897,10,28,12,1,13,4.95,5.0,fr,54330,197,2320014,1,1,Active Shallow Crust,0.0,89.99017,-90.0,10/28/9897 +2.75353,46.38189,4213,2,4,12,13,6,5.95,5.0,fr,54331,84,2320137,1,1,Active Shallow Crust,128.8649,89.99014,0.0,02/04/4213 +0.60676,47.14244,4630,5,29,5,2,47,3.55,5.0,fr,54332,92,2320320,1,1,Active Shallow Crust,0.0,89.98971,0.0,05/29/4630 +0.60676,47.14244,3486,2,5,22,20,8,3.55,15.0,fr,54333,69,2320321,1,1,Active Shallow Crust,0.0,89.98971,0.0,02/05/3486 +0.60676,47.14244,4962,10,6,0,42,52,3.55,5.0,fr,54334,99,2320326,1,2,Active Shallow Crust,0.0,89.98959,-90.0,10/06/4962 +0.60676,47.14244,172,11,3,14,14,54,3.55,5.0,fr,54335,3,2320326,1,2,Active Shallow Crust,0.0,89.98959,-90.0,11/03/0172 +0.60676,47.14244,3828,12,15,22,15,11,3.65,5.0,fr,54336,76,2320332,1,1,Active Shallow Crust,0.0,89.99007,0.0,12/15/3828 +0.60676,47.14244,3472,8,3,22,51,57,3.65,15.0,fr,54337,69,2320333,1,1,Active Shallow Crust,0.0,89.99007,0.0,08/03/3472 +0.60676,47.14244,7317,3,13,17,33,29,3.65,27.5,fr,54338,146,2320340,1,1,Active Shallow Crust,0.0,89.98995,-90.0,03/13/7317 +0.60676,47.14244,9081,2,5,5,25,52,3.75,27.5,fr,54339,181,2320346,1,1,Active Shallow Crust,0.0,89.98978,0.0,02/05/9081 +0.60676,47.14244,3432,3,21,6,30,38,3.75,5.0,fr,54340,68,2320353,1,2,Active Shallow Crust,128.8965,89.96738,0.0,03/21/3432 +0.60676,47.14244,853,3,9,9,21,2,3.75,5.0,fr,54341,17,2320353,1,2,Active Shallow Crust,128.8965,89.96738,0.0,03/09/0853 +0.60676,47.14244,7149,1,23,23,48,3,3.85,5.0,fr,54342,142,2320356,1,1,Active Shallow Crust,0.0,89.99029,0.0,01/23/7149 +0.60676,47.14244,7930,3,15,10,53,30,3.95,27.5,fr,54343,158,2320370,1,1,Active Shallow Crust,0.0,89.99026,0.0,03/15/7930 +0.60676,47.14244,6760,3,22,23,28,45,4.05,5.0,fr,54344,135,2320380,1,1,Active Shallow Crust,0.0,89.98988,0.0,03/22/6760 +0.60676,47.14244,2932,4,2,7,8,30,4.15,5.0,fr,54345,58,2320392,1,1,Active Shallow Crust,0.0,89.99012,0.0,04/02/2932 +0.60676,47.14244,8969,8,9,0,27,47,4.35,15.0,fr,54346,179,2320417,1,1,Active Shallow Crust,0.0,89.9901,0.0,08/09/8969 +0.60676,47.14244,5023,9,26,15,46,6,4.35,15.0,fr,54347,100,2320426,1,1,Active Shallow Crust,128.8977,89.98281,0.0,09/26/5023 +0.60676,47.14244,3645,1,15,20,16,33,4.45,27.5,fr,54348,72,2320430,1,1,Active Shallow Crust,0.0,89.98996,0.0,01/15/3645 +5.05825,44.36973,5158,1,31,12,31,20,3.55,5.0,fr,54349,103,2320800,1,2,Active Shallow Crust,0.0,89.99279,0.0,01/31/5158 +5.05825,44.36973,7122,6,3,16,5,39,3.55,5.0,fr,54350,142,2320800,1,2,Active Shallow Crust,0.0,89.99279,0.0,06/03/7122 +5.05825,44.36973,9751,1,7,15,54,42,3.55,27.5,fr,54351,195,2320802,1,1,Active Shallow Crust,0.0,89.99279,0.0,01/07/9751 +5.05825,44.36973,3948,12,8,15,42,54,3.55,5.0,fr,54352,78,2320809,1,1,Active Shallow Crust,128.897,89.99279,0.0,12/08/3948 +5.05825,44.36973,4712,5,13,7,47,51,3.65,5.0,fr,54353,94,2320812,1,2,Active Shallow Crust,0.0,89.98715,0.0,05/13/4712 +5.05825,44.36973,3591,12,25,12,43,51,3.65,5.0,fr,54354,71,2320812,1,2,Active Shallow Crust,0.0,89.98715,0.0,12/25/3591 +5.05825,44.36973,9632,1,30,12,19,21,3.65,15.0,fr,54355,192,2320813,1,1,Active Shallow Crust,0.0,89.98715,0.0,01/30/9632 +5.05825,44.36973,4057,8,21,16,3,39,3.75,5.0,fr,54356,81,2320824,1,1,Active Shallow Crust,0.0,89.98855,0.0,08/21/4057 +5.05825,44.36973,9293,12,22,7,18,13,3.75,27.5,fr,54357,185,2320826,1,1,Active Shallow Crust,0.0,89.98855,0.0,12/22/9293 +5.05825,44.36973,7092,5,15,9,39,12,3.85,5.0,fr,54358,141,2320836,1,1,Active Shallow Crust,0.0,89.98979,0.0,05/15/7092 +5.05825,44.36973,8550,6,6,22,22,56,3.85,15.0,fr,54359,170,2320837,1,1,Active Shallow Crust,0.0,89.98979,0.0,06/06/8550 +5.05825,44.36973,8764,4,21,19,50,42,3.85,15.0,fr,54360,175,2320846,1,1,Active Shallow Crust,128.8964,89.99235,0.0,04/21/8764 +5.05825,44.36973,862,8,13,7,6,29,3.95,5.0,fr,54361,17,2320848,1,1,Active Shallow Crust,0.0,89.99091,0.0,08/13/0862 +5.05825,44.36973,5506,12,7,5,55,43,3.95,5.0,fr,54362,110,2320857,1,1,Active Shallow Crust,128.9017,89.99318,0.0,12/07/5506 +5.05825,44.36973,3448,9,17,7,25,2,4.05,5.0,fr,54363,68,2320860,1,1,Active Shallow Crust,0.0,89.99189,0.0,09/17/3448 +5.05825,44.36973,3145,9,15,15,1,38,4.05,5.0,fr,54364,62,2320863,1,1,Active Shallow Crust,240.0062,58.00573,0.0,09/15/3145 +5.05825,44.36973,52,1,5,11,42,2,4.05,5.0,fr,54365,1,2320866,1,1,Active Shallow Crust,0.0,89.9918,-90.0,01/05/0052 +5.05825,44.36973,4348,7,27,18,40,46,4.05,5.0,fr,54366,86,2320869,1,1,Active Shallow Crust,128.89,89.99392,0.0,07/27/4348 +5.05825,44.36973,4017,4,10,18,40,48,4.25,5.0,fr,54367,80,2320884,1,2,Active Shallow Crust,0.0,89.99034,0.0,04/10/4017 +5.05825,44.36973,8485,10,22,1,42,9,4.25,5.0,fr,54368,169,2320884,1,2,Active Shallow Crust,0.0,89.99034,0.0,10/22/8485 +5.05825,44.36973,9656,11,12,8,45,17,4.45,15.0,fr,54369,193,2320918,1,1,Active Shallow Crust,128.8925,89.99361,0.0,11/12/9656 +5.05825,44.36973,7633,8,19,17,41,27,4.65,27.5,fr,54370,152,2320937,1,1,Active Shallow Crust,240.0103,57.99419,0.0,08/19/7633 +5.05825,44.36973,1011,7,18,19,38,8,4.85,27.5,fr,54371,20,2320958,1,1,Active Shallow Crust,0.0,89.99032,0.0,07/18/1011 +5.05825,44.36973,1642,1,4,3,4,42,5.25,27.5,fr,54372,32,2321006,1,1,Active Shallow Crust,0.0,89.98981,0.0,01/04/1642 +5.058252,44.36973,6286,1,13,2,41,27,6.15,6.011322,fr,54373,125,2321112,1,1,Active Shallow Crust,0.0,89.99006,0.0,01/13/6286 +4.71997,45.11324,4678,1,3,21,59,51,3.55,5.0,fr,54374,93,2321280,1,1,Active Shallow Crust,0.0,89.99288,0.0,01/03/4678 +4.71997,45.11324,5971,2,6,10,23,33,3.55,5.0,fr,54375,119,2321283,1,1,Active Shallow Crust,240.0106,57.999,0.0,02/06/5971 +4.71997,45.11324,7105,10,6,8,45,43,3.65,15.0,fr,54376,142,2321293,1,2,Active Shallow Crust,0.0,89.98731,0.0,10/06/7105 +4.71997,45.11324,8369,2,4,22,56,25,3.65,15.0,fr,54377,167,2321293,1,2,Active Shallow Crust,0.0,89.98731,0.0,02/04/8369 +4.71997,45.11324,5466,9,28,16,6,30,3.75,5.0,fr,54378,109,2321304,1,1,Active Shallow Crust,0.0,89.98869,0.0,09/28/5466 +4.71997,45.11324,6873,5,4,0,7,59,3.75,15.0,fr,54379,137,2321308,1,1,Active Shallow Crust,240.0072,58.01782,0.0,05/04/6873 +4.71997,45.11324,3134,1,13,16,22,23,3.75,5.0,fr,54380,62,2321313,1,1,Active Shallow Crust,128.8957,89.96747,0.0,01/13/3134 +4.71997,45.11324,551,7,10,4,0,49,3.95,5.0,fr,54381,11,2321328,1,1,Active Shallow Crust,0.0,89.99102,0.0,07/10/0551 +4.71997,45.11324,3292,10,10,17,6,21,4.05,5.0,fr,54382,65,2321340,1,2,Active Shallow Crust,0.0,89.992,0.0,10/10/3292 +4.71997,45.11324,7051,2,11,5,5,26,4.05,5.0,fr,54383,141,2321340,1,2,Active Shallow Crust,0.0,89.992,0.0,02/11/7051 +4.71997,45.11324,3510,3,13,21,24,36,4.15,5.0,fr,54384,70,2321352,1,1,Active Shallow Crust,0.0,89.9893,0.0,03/13/3510 +4.71997,45.11324,2001,4,10,22,0,38,4.45,5.0,fr,54385,40,2321388,1,1,Active Shallow Crust,0.0,89.9899,0.0,04/10/2001 +4.71997,45.11324,4307,3,11,18,32,47,4.65,5.0,fr,54386,86,2321412,1,1,Active Shallow Crust,0.0,89.98997,0.0,03/11/4307 +4.71997,45.11324,6445,3,18,15,44,47,5.05,5.0,fr,54387,128,2321460,1,1,Active Shallow Crust,0.0,89.98988,0.0,03/18/6445 +5.59989,43.64538,2099,9,7,9,20,54,3.55,5.0,fr,54388,41,2321760,1,2,Active Shallow Crust,0.0,89.99271,0.0,09/07/2099 +5.59989,43.64538,5360,12,9,20,28,38,3.55,5.0,fr,54389,107,2321760,1,2,Active Shallow Crust,0.0,89.99271,0.0,12/09/5360 +5.59989,43.64538,5103,4,13,20,14,41,3.55,15.0,fr,54390,102,2321761,1,1,Active Shallow Crust,0.0,89.99271,0.0,04/13/5103 +5.59989,43.64538,7620,8,25,16,37,26,3.55,15.0,fr,54391,152,2321767,1,1,Active Shallow Crust,0.0,89.99262,-90.0,08/25/7620 +5.59989,43.64538,6859,1,10,6,21,12,3.55,15.0,fr,54392,137,2321770,1,1,Active Shallow Crust,128.8967,89.99271,0.0,01/10/6859 +5.59989,43.64538,7113,6,18,3,31,0,3.55,27.5,fr,54393,142,2321771,1,1,Active Shallow Crust,128.8967,89.99271,0.0,06/18/7113 +5.59989,43.64538,9426,1,15,14,37,20,3.65,5.0,fr,54394,188,2321772,1,1,Active Shallow Crust,0.0,89.98699,0.0,01/15/9426 +5.59989,43.64538,5642,5,25,11,16,48,3.65,15.0,fr,54395,112,2321773,1,1,Active Shallow Crust,0.0,89.98699,0.0,05/25/5642 +5.59989,43.64538,342,7,5,15,35,5,3.65,5.0,fr,54396,6,2321781,1,2,Active Shallow Crust,128.9016,89.96347,0.0,07/05/0342 +5.59989,43.64538,6142,12,15,18,12,37,3.65,5.0,fr,54397,122,2321781,1,2,Active Shallow Crust,128.9016,89.96347,0.0,12/15/6142 +5.59989,43.64538,2941,1,11,12,37,10,3.75,5.0,fr,54398,58,2321784,1,2,Active Shallow Crust,0.0,89.98841,0.0,01/11/2941 +5.59989,43.64538,573,9,28,19,43,3,3.75,5.0,fr,54399,11,2321784,1,2,Active Shallow Crust,0.0,89.98841,0.0,09/28/0573 +5.59989,43.64538,8232,12,6,1,49,58,3.75,15.0,fr,54400,164,2321785,1,1,Active Shallow Crust,0.0,89.98841,0.0,12/06/8232 +5.59989,43.64538,7978,11,1,18,22,48,3.75,15.0,fr,54401,159,2321794,1,1,Active Shallow Crust,128.8964,89.96745,0.0,11/01/7978 +5.59989,43.64538,9411,9,14,22,4,41,3.85,15.0,fr,54402,188,2321806,1,1,Active Shallow Crust,128.8963,89.99225,0.0,09/14/9411 +5.59989,43.64538,5123,6,15,10,18,2,3.95,5.0,fr,54403,102,2321808,1,2,Active Shallow Crust,0.0,89.99079,0.0,06/15/5123 +5.59989,43.64538,8120,2,29,18,55,56,3.95,5.0,fr,54404,162,2321808,1,2,Active Shallow Crust,0.0,89.99079,0.0,02/29/8120 +5.59989,43.64538,1954,2,7,17,44,43,3.95,15.0,fr,54405,39,2321812,1,1,Active Shallow Crust,240.0191,58.00536,0.0,02/07/1954 +5.59989,43.64538,1665,9,15,16,16,40,3.95,5.0,fr,54406,33,2321817,1,1,Active Shallow Crust,128.9018,89.9931,0.0,09/15/1665 +5.59989,43.64538,3964,4,16,19,17,34,4.05,15.0,fr,54407,79,2321821,1,1,Active Shallow Crust,0.0,89.99179,0.0,04/16/3964 +5.59989,43.64538,8518,6,24,7,25,18,4.05,5.0,fr,54408,170,2321823,1,1,Active Shallow Crust,240.0052,58.00579,0.0,06/24/8518 +5.59989,43.64538,7385,10,5,7,8,50,4.15,5.0,fr,54409,147,2321832,1,1,Active Shallow Crust,0.0,89.98903,0.0,10/05/7385 +5.59989,43.64538,2887,2,22,7,59,13,4.15,5.0,fr,54410,57,2321841,1,1,Active Shallow Crust,128.8984,89.99268,0.0,02/22/2887 +5.59989,43.64538,8998,4,20,13,58,33,4.15,15.0,fr,54411,179,2321842,1,1,Active Shallow Crust,128.8984,89.99268,0.0,04/20/8998 +5.59989,43.64538,3971,2,19,23,45,44,4.25,5.0,fr,54412,79,2321844,1,1,Active Shallow Crust,0.0,89.99022,0.0,02/19/3971 +5.59989,43.64538,4094,3,19,2,26,32,4.35,27.5,fr,54413,81,2321858,1,1,Active Shallow Crust,0.0,89.99129,0.0,03/19/4094 +5.59989,43.64538,9068,2,18,4,53,0,4.45,5.0,fr,54414,181,2321868,1,1,Active Shallow Crust,0.0,89.98964,0.0,02/18/9068 +5.59989,43.64538,9969,8,26,8,20,40,4.75,5.0,fr,54415,199,2321913,1,1,Active Shallow Crust,128.8896,89.98801,0.0,08/26/9969 +5.59989,43.64538,559,5,6,19,25,29,4.85,5.0,fr,54416,11,2321916,1,1,Active Shallow Crust,0.0,89.9902,0.0,05/06/0559 +5.59989,43.64538,7931,5,9,6,24,48,4.95,5.0,fr,54417,158,2321928,1,1,Active Shallow Crust,0.0,89.98981,0.0,05/09/7931 +5.59989,43.64538,873,8,30,23,13,46,5.35,27.5,fr,54418,17,2321981,1,1,Active Shallow Crust,240.0232,57.99751,0.0,08/30/0873 +5.59989,43.64538,8318,11,3,21,9,25,5.95,5.0,fr,54419,166,2322051,1,1,Active Shallow Crust,240.047,57.99993,0.0,11/03/8318 +1.33063,40.86829,2456,8,17,5,4,47,3.55,5.0,fr,54420,49,2322240,1,1,Active Shallow Crust,0.0,89.99047,0.0,08/17/2456 +1.33063,40.86829,4979,7,10,12,18,10,3.65,5.0,fr,54421,99,2322252,1,2,Active Shallow Crust,0.0,89.98981,0.0,07/10/4979 +1.33063,40.86829,4037,5,16,6,16,11,3.65,5.0,fr,54422,80,2322252,1,2,Active Shallow Crust,0.0,89.98981,0.0,05/16/4037 +1.33063,40.86829,1439,7,1,7,5,0,3.75,27.5,fr,54423,28,2322266,1,1,Active Shallow Crust,0.0,89.9894,0.0,07/01/1439 +1.33063,40.86829,8323,1,4,2,10,55,3.75,15.0,fr,54424,166,2322274,1,1,Active Shallow Crust,128.8973,89.96739,0.0,01/04/8323 +1.33063,40.86829,2352,3,31,15,28,8,3.85,5.0,fr,54425,47,2322285,1,1,Active Shallow Crust,128.8961,89.99393,0.0,03/31/2352 +1.33063,40.86829,2603,3,30,15,45,29,4.15,5.0,fr,54426,52,2322321,1,1,Active Shallow Crust,128.8982,89.99379,0.0,03/30/2603 +1.33063,40.86829,418,2,1,19,54,12,4.15,27.5,fr,54427,8,2322323,1,1,Active Shallow Crust,128.8982,89.99379,0.0,02/01/0418 +1.33063,40.86829,1988,6,26,22,50,29,4.45,15.0,fr,54428,39,2322349,1,1,Active Shallow Crust,0.0,89.98985,0.0,06/26/1988 +1.33063,40.86829,3592,3,18,9,31,14,4.85,15.0,fr,54429,71,2322397,1,1,Active Shallow Crust,0.0,89.99018,0.0,03/18/3592 +6.76957,51.09386,6691,4,20,5,56,28,3.55,5.0,fr,54430,133,2323200,1,2,Active Shallow Crust,0.0,89.98734,0.0,04/20/6691 +6.76957,51.09386,5246,3,4,18,33,23,3.55,5.0,fr,54431,104,2323200,1,2,Active Shallow Crust,0.0,89.98734,0.0,03/04/5246 +6.76957,51.09386,5320,7,11,5,19,42,3.55,15.0,fr,54432,106,2323201,1,1,Active Shallow Crust,0.0,89.98734,0.0,07/11/5320 +6.76957,51.09386,2401,4,28,17,0,13,3.65,5.0,fr,54433,48,2323212,1,1,Active Shallow Crust,0.0,89.98871,0.0,04/28/2401 +6.76957,51.09386,9153,5,24,19,17,43,3.75,5.0,fr,54434,183,2323224,1,1,Active Shallow Crust,0.0,89.98994,0.0,05/24/9153 +6.76957,51.09386,9572,7,4,13,47,59,3.85,5.0,fr,54435,191,2323236,1,1,Active Shallow Crust,0.0,89.99104,0.0,07/04/9572 +6.76957,51.09386,6058,4,19,5,21,35,3.95,5.0,fr,54436,121,2323248,1,1,Active Shallow Crust,0.0,89.98801,0.0,04/19/6058 +6.76957,51.09386,1007,6,4,16,10,1,3.95,5.0,fr,54437,20,2323254,1,1,Active Shallow Crust,0.0,89.99191,-90.0,06/04/1007 +6.76957,51.09386,4313,9,5,18,14,0,4.25,5.0,fr,54438,86,2323284,1,2,Active Shallow Crust,0.0,89.98869,0.0,09/05/4313 +6.76957,51.09386,4208,6,21,15,54,28,4.25,5.0,fr,54439,84,2323284,1,2,Active Shallow Crust,0.0,89.98869,0.0,06/21/4208 +6.76957,51.09386,4420,5,13,18,42,40,4.25,15.0,fr,54440,88,2323291,1,1,Active Shallow Crust,0.0,89.99142,-90.0,05/13/4420 +6.76957,51.09386,8384,12,4,15,46,29,4.35,5.0,fr,54441,167,2323296,1,1,Active Shallow Crust,0.0,89.98991,0.0,12/04/8384 +6.76957,51.09386,1993,1,10,5,16,54,4.45,5.0,fr,54442,39,2323308,1,1,Active Shallow Crust,0.0,89.99101,0.0,01/10/1993 +6.76957,51.09386,331,8,18,4,22,47,4.45,15.0,fr,54443,6,2323309,1,1,Active Shallow Crust,0.0,89.99101,0.0,08/18/0331 +6.76957,51.09386,5636,5,3,6,13,44,4.55,5.0,fr,54444,112,2323320,1,2,Active Shallow Crust,0.0,89.98998,0.0,05/03/5636 +6.76957,51.09386,6895,5,26,8,23,2,4.55,5.0,fr,54445,137,2323320,1,2,Active Shallow Crust,0.0,89.98998,0.0,05/26/6895 +-2.57206,43.17085,5210,3,26,22,17,14,3.55,5.0,fr,54446,104,2323680,1,1,Active Shallow Crust,0.0,89.98897,0.0,03/26/5210 +-2.57206,43.17085,3550,10,19,19,2,6,3.55,15.0,fr,54447,70,2323687,1,1,Active Shallow Crust,0.0,89.98884,-90.0,10/19/3550 +-2.57206,43.17085,6591,12,5,23,57,33,3.65,5.0,fr,54448,131,2323692,1,2,Active Shallow Crust,0.0,89.99017,0.0,12/05/6591 +-2.57206,43.17085,1142,2,11,16,6,21,3.65,5.0,fr,54449,22,2323692,1,2,Active Shallow Crust,0.0,89.99017,0.0,02/11/1142 +-2.57206,43.17085,689,1,2,2,17,39,3.65,5.0,fr,54450,13,2323695,1,1,Active Shallow Crust,240.0009,58.01241,0.0,01/02/0689 +-2.57206,43.17085,1160,9,18,22,11,14,3.75,5.0,fr,54451,23,2323704,1,1,Active Shallow Crust,0.0,89.99123,0.0,09/18/1160 +-2.57206,43.17085,1304,5,11,1,25,13,3.85,15.0,fr,54452,26,2323720,1,1,Active Shallow Crust,240.0108,57.99774,0.0,05/11/1304 +-2.57206,43.17085,4932,10,12,23,52,9,4.05,5.0,fr,54453,98,2323740,1,1,Active Shallow Crust,0.0,89.98966,0.0,10/12/4932 +-2.57206,43.17085,9087,12,16,3,55,13,4.05,5.0,fr,54454,181,2323743,1,1,Active Shallow Crust,240.0054,58.00558,0.0,12/16/9087 +-2.57206,43.17085,6643,4,26,19,42,18,4.15,5.0,fr,54455,132,2323755,1,1,Active Shallow Crust,240.0079,57.99722,0.0,04/26/6643 +-2.57206,43.17085,629,7,2,11,48,37,4.25,5.0,fr,54456,12,2323764,1,1,Active Shallow Crust,0.0,89.99014,0.0,07/02/0629 +-2.57206,43.17085,2658,4,27,2,47,28,4.25,15.0,fr,54457,53,2323765,1,1,Active Shallow Crust,0.0,89.99014,0.0,04/27/2658 +-2.57206,43.17085,323,11,22,9,1,56,4.75,27.5,fr,54458,6,2323826,1,1,Active Shallow Crust,0.0,89.98984,0.0,11/22/0323 +-5.89668,47.21991,906,2,24,13,23,21,3.75,5.0,fr,54459,18,2324184,1,1,Active Shallow Crust,0.0,89.98912,0.0,02/24/0906 +1.49319,47.99266,2995,9,26,23,7,36,3.65,15.0,fr,54460,59,2324653,1,1,Active Shallow Crust,0.0,89.98947,0.0,09/26/2995 +1.49319,47.99266,6773,8,16,21,51,15,3.75,5.0,fr,54461,135,2324664,1,1,Active Shallow Crust,0.0,89.99062,0.0,08/16/6773 +1.49319,47.99266,4559,12,16,8,17,45,3.75,15.0,fr,54462,91,2324665,1,1,Active Shallow Crust,0.0,89.99062,0.0,12/16/4559 +1.49319,47.99266,7062,4,22,23,19,34,4.25,5.0,fr,54463,141,2324733,1,1,Active Shallow Crust,128.8941,89.98088,0.0,04/22/7062 +1.49319,47.99266,851,8,4,10,56,8,4.45,5.0,fr,54464,17,2324748,1,1,Active Shallow Crust,0.0,89.98982,0.0,08/04/0851 +1.49319,47.99266,6321,12,8,19,19,39,4.65,5.0,fr,54465,126,2324772,1,1,Active Shallow Crust,0.0,89.99001,0.0,12/08/6321 +1.49319,47.99266,9506,9,4,7,40,25,4.85,5.0,fr,54466,190,2324802,1,1,Active Shallow Crust,0.0,89.99007,-90.0,09/04/9506 +5.76126,52.06287,9372,2,11,8,6,40,3.55,27.5,fr,54467,187,2325125,1,1,Active Shallow Crust,240.0128,57.99872,0.0,02/11/9372 +5.76126,52.06287,2002,4,25,5,14,11,3.55,5.0,fr,54468,40,2325126,1,1,Active Shallow Crust,0.0,89.98746,-90.0,04/25/2002 +5.76126,52.06287,3987,11,8,5,38,42,3.65,15.0,fr,54469,79,2325133,1,1,Active Shallow Crust,0.0,89.98895,0.0,11/08/3987 +5.76126,52.06287,2299,6,29,8,53,0,3.75,5.0,fr,54470,45,2325144,1,1,Active Shallow Crust,0.0,89.99015,0.0,06/29/2299 +5.76126,52.06287,6054,7,12,12,57,37,4.55,5.0,fr,54471,121,2325240,1,1,Active Shallow Crust,0.0,89.9902,0.0,07/12/6054 +1.31494,45.17984,3160,5,31,19,46,37,3.55,5.0,fr,54472,63,2325600,1,1,Active Shallow Crust,0.0,89.98934,0.0,05/31/3160 +1.31494,45.17984,926,10,4,5,17,34,3.85,5.0,fr,54473,18,2325636,1,1,Active Shallow Crust,0.0,89.98994,0.0,10/04/0926 +1.31494,45.17984,9782,12,7,20,24,5,3.95,5.0,fr,54474,195,2325648,1,1,Active Shallow Crust,0.0,89.98991,0.0,12/07/9782 +6.3151,43.86866,8935,10,13,20,35,55,3.55,15.0,fr,54475,178,2326081,1,2,Active Shallow Crust,0.0,89.99273,0.0,10/13/8935 +6.3151,43.86866,1500,7,11,14,41,9,3.55,15.0,fr,54476,29,2326081,1,2,Active Shallow Crust,0.0,89.99273,0.0,07/11/1500 +6.3151,43.86866,3023,11,10,8,1,56,3.55,27.5,fr,54477,60,2326091,1,1,Active Shallow Crust,128.896,89.99273,0.0,11/10/3023 +6.3151,43.86866,4013,4,27,23,24,8,3.75,5.0,fr,54478,80,2326104,1,1,Active Shallow Crust,0.0,89.98845,0.0,04/27/4013 +6.3151,43.86866,9336,8,9,10,4,34,3.75,15.0,fr,54479,186,2326105,1,1,Active Shallow Crust,0.0,89.98845,0.0,08/09/9336 +6.3151,43.86866,2626,3,6,19,37,23,3.75,5.0,fr,54480,52,2326113,1,1,Active Shallow Crust,128.8973,89.96745,0.0,03/06/2626 +6.3151,43.86866,8333,3,17,16,54,45,3.85,5.0,fr,54481,166,2326116,1,2,Active Shallow Crust,0.0,89.98971,0.0,03/17/8333 +6.3151,43.86866,5971,5,13,1,51,8,3.85,5.0,fr,54482,119,2326116,1,2,Active Shallow Crust,0.0,89.98971,0.0,05/13/5971 +6.3151,43.86866,7396,6,6,18,2,50,3.85,15.0,fr,54483,147,2326117,1,1,Active Shallow Crust,0.0,89.98971,0.0,06/06/7396 +6.3151,43.86866,9117,3,24,22,27,15,4.05,5.0,fr,54484,182,2326143,1,2,Active Shallow Crust,240.0059,58.0055,0.0,03/24/9117 +6.3151,43.86866,4252,10,25,21,8,23,4.05,5.0,fr,54485,85,2326143,1,2,Active Shallow Crust,240.0059,58.0055,0.0,10/25/4252 +6.3151,43.86866,3840,2,17,15,59,48,4.15,27.5,fr,54486,76,2326154,1,1,Active Shallow Crust,0.0,89.98907,0.0,02/17/3840 +6.3151,43.86866,7850,5,13,20,59,9,4.25,5.0,fr,54487,156,2326164,1,1,Active Shallow Crust,0.0,89.99026,0.0,05/13/7850 +6.3151,43.86866,5511,10,21,12,1,43,4.25,5.0,fr,54488,110,2326167,1,1,Active Shallow Crust,240.007,57.99431,0.0,10/21/5511 +6.3151,43.86866,727,6,15,1,21,31,4.25,5.0,fr,54489,14,2326170,1,1,Active Shallow Crust,0.0,89.99014,-90.0,06/15/0727 +6.3151,43.86866,3932,3,16,21,2,50,4.35,5.0,fr,54490,78,2326179,1,1,Active Shallow Crust,240.0078,57.99593,0.0,03/16/3932 +6.3151,43.86866,6460,7,21,10,30,30,4.45,5.0,fr,54491,129,2326188,1,1,Active Shallow Crust,0.0,89.98969,0.0,07/21/6460 +6.3151,43.86866,519,3,24,21,43,56,4.45,15.0,fr,54492,10,2326189,1,1,Active Shallow Crust,0.0,89.98969,0.0,03/24/0519 +6.3151,43.86866,9207,12,7,23,24,34,4.55,5.0,fr,54493,184,2326200,1,1,Active Shallow Crust,0.0,89.99081,0.0,12/07/9207 +6.3151,43.86866,4661,2,21,23,33,11,4.65,5.0,fr,54494,93,2326212,1,1,Active Shallow Crust,0.0,89.98975,0.0,02/21/4661 +6.3151,43.86866,6463,10,13,12,2,19,5.15,5.0,fr,54495,129,2326275,1,1,Active Shallow Crust,240.0182,57.99958,0.0,10/13/6463 +6.3151,43.86866,3982,4,28,6,40,56,5.55,5.0,fr,54496,79,2326320,1,1,Active Shallow Crust,0.0,89.98981,0.0,04/28/3982 +3.19589,49.11918,5790,3,6,12,26,22,3.55,15.0,fr,54497,115,2326561,1,1,Active Shallow Crust,0.0,89.9901,0.0,03/06/5790 +3.19589,49.11918,3609,7,8,18,36,33,3.55,5.0,fr,54498,72,2326566,1,1,Active Shallow Crust,0.0,89.98998,-90.0,07/08/3609 +3.19589,49.11918,8017,8,22,23,10,59,3.65,27.5,fr,54499,160,2326580,1,1,Active Shallow Crust,0.0,89.99107,-90.0,08/22/8017 +3.19589,49.11918,8103,3,10,11,18,30,4.15,27.5,fr,54500,162,2326634,1,1,Active Shallow Crust,0.0,89.99007,0.0,03/10/8103 +3.19589,49.11918,255,6,21,7,36,6,4.25,5.0,fr,54501,5,2326644,1,1,Active Shallow Crust,0.0,89.98968,0.0,06/21/0255 +3.19589,49.11918,7588,1,10,4,52,22,4.75,27.5,fr,54502,151,2326709,1,1,Active Shallow Crust,240.0087,58.00455,0.0,01/10/7588 +3.195891,49.11918,6233,5,1,16,37,41,6.05,5.357596,fr,54503,124,2326860,1,1,Active Shallow Crust,0.0,89.99007,0.0,05/01/6233 +1.91436,42.03891,1812,2,12,7,29,17,3.55,5.0,fr,54504,36,2327040,1,2,Active Shallow Crust,0.0,89.99064,0.0,02/12/1812 +1.91436,42.03891,1834,1,8,17,8,34,3.55,5.0,fr,54505,36,2327040,1,2,Active Shallow Crust,0.0,89.99064,0.0,01/08/1834 +1.91436,42.03891,8214,7,8,10,36,55,3.55,5.0,fr,54506,164,2327049,1,1,Active Shallow Crust,128.8968,89.99345,0.0,07/08/8214 +1.91436,42.03891,1250,10,29,12,25,46,3.65,5.0,fr,54507,24,2327052,1,1,Active Shallow Crust,0.0,89.98999,0.0,10/29/1250 +1.91436,42.03891,1815,4,22,14,48,9,3.75,5.0,fr,54508,36,2327067,1,1,Active Shallow Crust,240.0079,58.01755,0.0,04/22/1815 +1.91436,42.03891,4499,5,7,3,18,4,3.75,5.0,fr,54509,89,2327070,1,1,Active Shallow Crust,0.0,89.98947,-90.0,05/07/4499 +1.91436,42.03891,8319,2,7,9,40,45,3.85,5.0,fr,54510,166,2327076,1,1,Active Shallow Crust,0.0,89.9894,0.0,02/07/8319 +1.91436,42.03891,803,8,15,19,23,54,3.85,15.0,fr,54511,16,2327077,1,1,Active Shallow Crust,0.0,89.9894,0.0,08/15/0803 +1.91436,42.03891,5542,11,12,2,12,45,4.65,5.0,fr,54512,110,2327178,1,1,Active Shallow Crust,0.0,89.98986,-90.0,11/12/5542 +1.91436,42.03891,1711,10,16,2,5,26,4.75,5.0,fr,54513,34,2327184,1,1,Active Shallow Crust,0.0,89.99012,0.0,10/16/1711 +1.914353,42.03891,2443,3,27,18,19,33,6.65,10.68981,fr,54514,48,2327421,1,1,Active Shallow Crust,128.8324,89.98987,0.0,03/27/2443 +1.30175,41.53561,7505,7,16,11,47,50,3.55,5.0,fr,54515,150,2328480,1,2,Active Shallow Crust,0.0,89.99056,0.0,07/16/7505 +1.30175,41.53561,4528,11,2,13,32,38,3.55,5.0,fr,54516,90,2328480,1,2,Active Shallow Crust,0.0,89.99056,0.0,11/02/4528 +1.30175,41.53561,7246,1,14,6,48,40,3.65,15.0,fr,54517,144,2328496,1,1,Active Shallow Crust,240.0005,58.01313,0.0,01/14/7246 +1.30175,41.53561,8466,10,16,17,27,4,3.85,5.0,fr,54518,169,2328516,1,1,Active Shallow Crust,0.0,89.99065,0.0,10/16/8466 +1.30175,41.53561,4147,1,14,12,45,26,4.15,15.0,fr,54519,82,2328553,1,1,Active Shallow Crust,0.0,89.98959,0.0,01/14/4147 +1.30175,41.53561,316,7,6,10,57,36,4.35,5.0,fr,54520,6,2328579,1,1,Active Shallow Crust,240.0072,57.99576,0.0,07/06/0316 +1.30175,41.53561,8648,1,23,1,25,29,5.25,5.0,fr,54521,172,2328684,1,1,Active Shallow Crust,0.0,89.98987,0.0,01/23/8648 +-1.71864,46.55853,8545,12,24,2,51,55,3.55,5.0,fr,54522,170,2328960,1,2,Active Shallow Crust,0.0,89.9896,0.0,12/24/8545 +-1.71864,46.55853,9024,9,29,11,30,16,3.55,5.0,fr,54523,180,2328960,1,2,Active Shallow Crust,0.0,89.9896,0.0,09/29/9024 +-1.71864,46.55853,842,9,18,11,38,43,3.55,15.0,fr,54524,16,2328961,1,1,Active Shallow Crust,0.0,89.9896,0.0,09/18/0842 +-1.71864,46.55853,9791,8,10,14,19,27,3.75,5.0,fr,54525,195,2328984,1,1,Active Shallow Crust,0.0,89.99036,0.0,08/10/9791 +-1.71864,46.55853,7451,8,24,21,55,55,3.75,5.0,fr,54526,149,2328993,1,1,Active Shallow Crust,128.8967,89.96737,0.0,08/24/7451 +-1.71864,46.55853,7265,4,27,7,56,26,3.85,15.0,fr,54527,145,2328997,1,1,Active Shallow Crust,0.0,89.99018,0.0,04/27/7265 +-1.71864,46.55853,7702,4,15,18,15,35,3.95,27.5,fr,54528,154,2329010,1,1,Active Shallow Crust,0.0,89.99016,0.0,04/15/7702 +-1.71864,46.55853,9602,5,18,7,29,43,3.95,27.5,fr,54529,192,2329016,1,1,Active Shallow Crust,0.0,89.99004,-90.0,05/18/9602 +-1.71864,46.55853,6015,9,9,20,28,17,4.35,5.0,fr,54530,120,2329056,1,2,Active Shallow Crust,0.0,89.99034,0.0,09/09/6015 +-1.71864,46.55853,3941,3,16,9,38,28,4.35,5.0,fr,54531,78,2329056,1,2,Active Shallow Crust,0.0,89.99034,0.0,03/16/3941 +4.65431,49.83208,4905,4,16,7,20,16,3.55,5.0,fr,54532,98,2329440,1,1,Active Shallow Crust,0.0,89.98699,0.0,04/16/4905 +4.65431,49.83208,8504,10,2,21,22,42,3.95,5.0,fr,54533,170,2329488,1,1,Active Shallow Crust,0.0,89.99179,0.0,10/02/8504 +4.65431,49.83208,2033,5,31,20,57,30,5.25,5.0,fr,54534,40,2329644,1,1,Active Shallow Crust,0.0,89.98989,0.0,05/31/2033 +3.22423,46.19695,9232,7,31,19,53,22,3.55,5.0,fr,54535,184,2329920,1,2,Active Shallow Crust,0.0,89.98953,0.0,07/31/9232 +3.22423,46.19695,8277,5,15,4,50,25,3.55,5.0,fr,54536,165,2329920,1,2,Active Shallow Crust,0.0,89.98953,0.0,05/15/8277 +3.22423,46.19695,2164,9,19,9,21,32,3.75,5.0,fr,54537,43,2329944,1,1,Active Shallow Crust,0.0,89.98891,0.0,09/19/2164 +3.22423,46.19695,1745,6,24,0,49,7,3.75,5.0,fr,54538,34,2329953,1,1,Active Shallow Crust,128.897,89.96722,0.0,06/24/1745 +3.22423,46.19695,1173,3,11,3,52,43,3.85,5.0,fr,54539,23,2329956,1,1,Active Shallow Crust,0.0,89.99012,0.0,03/11/1173 +3.22423,46.19695,6616,6,22,10,6,6,4.05,15.0,fr,54540,132,2329981,1,2,Active Shallow Crust,0.0,89.99019,0.0,06/22/6616 +3.22423,46.19695,3973,6,29,0,13,33,4.05,15.0,fr,54541,79,2329981,1,2,Active Shallow Crust,0.0,89.99019,0.0,06/29/3973 +3.22423,46.19695,761,12,25,22,40,18,4.05,5.0,fr,54542,15,2329989,1,1,Active Shallow Crust,128.8901,89.99411,0.0,12/25/0761 +3.22423,46.19695,9830,10,31,13,0,48,4.15,15.0,fr,54543,196,2329993,1,1,Active Shallow Crust,0.0,89.9895,0.0,10/31/9830 +3.22423,46.19695,9496,1,8,21,17,19,4.25,27.5,fr,54544,189,2330015,1,1,Active Shallow Crust,128.8943,89.98093,0.0,01/08/9496 +3.22423,46.19695,8821,7,10,11,7,52,4.65,5.0,fr,54545,176,2330052,1,1,Active Shallow Crust,0.0,89.99017,0.0,07/10/8821 +3.22423,46.19695,63,3,6,10,50,48,5.25,27.5,fr,54546,1,2330126,1,1,Active Shallow Crust,0.0,89.99014,0.0,03/06/0063 +6.8661,51.22779,3653,1,31,21,11,12,3.65,5.0,fr,54547,73,2330412,1,1,Active Shallow Crust,0.0,89.98875,0.0,01/31/3653 +6.8661,51.22779,1276,1,19,5,5,8,3.65,5.0,fr,54548,25,2330415,1,1,Active Shallow Crust,240.0011,58.0138,0.0,01/19/1276 +6.8661,51.22779,2699,5,3,9,17,10,3.75,5.0,fr,54549,53,2330424,1,2,Active Shallow Crust,0.0,89.98997,0.0,05/03/2699 +6.8661,51.22779,2912,10,18,18,40,8,3.75,5.0,fr,54550,58,2330424,1,2,Active Shallow Crust,0.0,89.98997,0.0,10/18/2912 +6.8661,51.22779,6104,10,8,19,40,44,3.95,15.0,fr,54551,122,2330449,1,1,Active Shallow Crust,0.0,89.98804,0.0,10/08/6104 +6.8661,51.22779,5106,2,26,0,4,34,4.45,5.0,fr,54552,102,2330514,1,1,Active Shallow Crust,0.0,89.99094,-90.0,02/26/5106 +6.8661,51.22779,2746,2,21,16,4,51,4.75,27.5,fr,54553,54,2330546,1,1,Active Shallow Crust,0.0,89.99048,0.0,02/21/2746 +0.72349,41.46425,7598,12,9,6,15,23,3.55,5.0,fr,54554,151,2331360,1,1,Active Shallow Crust,0.0,89.98961,0.0,12/09/7598 +0.72349,41.46425,6926,4,5,19,59,20,3.55,15.0,fr,54555,138,2331361,1,2,Active Shallow Crust,0.0,89.98961,0.0,04/05/6926 +0.72349,41.46425,1279,10,5,1,1,23,3.55,15.0,fr,54556,25,2331361,1,2,Active Shallow Crust,0.0,89.98961,0.0,10/05/1279 +0.72349,41.46425,580,11,24,23,34,0,3.65,5.0,fr,54557,11,2331372,1,1,Active Shallow Crust,0.0,89.9899,0.0,11/24/0580 +0.72349,41.46425,8860,12,15,6,17,5,3.65,27.5,fr,54558,177,2331374,1,1,Active Shallow Crust,0.0,89.9899,0.0,12/15/8860 +0.72349,41.46425,5626,12,24,9,36,23,3.85,15.0,fr,54559,112,2331397,1,1,Active Shallow Crust,0.0,89.98997,0.0,12/24/5626 +4.35873,52.47476,8886,7,28,17,2,22,3.65,5.0,fr,54560,177,2331852,1,1,Active Shallow Crust,0.0,89.98905,0.0,07/28/8886 +4.35873,52.47476,3990,8,2,11,32,39,4.15,5.0,fr,54561,79,2331912,1,1,Active Shallow Crust,0.0,89.99076,0.0,08/02/3990 +5.09952,43.44632,454,11,24,10,57,30,3.55,15.0,fr,54562,9,2332321,1,2,Active Shallow Crust,0.0,89.99268,0.0,11/24/0454 +5.09952,43.44632,2370,10,13,22,41,45,3.55,15.0,fr,54563,47,2332321,1,2,Active Shallow Crust,0.0,89.99268,0.0,10/13/2370 +5.09952,43.44632,6412,7,23,15,40,59,3.55,27.5,fr,54564,128,2332328,1,1,Active Shallow Crust,0.0,89.99259,-90.0,07/23/6412 +5.09952,43.44632,596,9,12,6,20,56,3.65,15.0,fr,54565,11,2332339,1,1,Active Shallow Crust,0.0,89.9868,-90.0,09/12/0596 +5.09952,43.44632,8696,7,28,13,50,4,3.65,5.0,fr,54566,173,2332341,1,1,Active Shallow Crust,128.9011,89.96346,0.0,07/28/8696 +5.09952,43.44632,9461,4,22,2,50,43,3.85,5.0,fr,54567,189,2332356,1,1,Active Shallow Crust,0.0,89.98963,0.0,04/22/9461 +5.09952,43.44632,8270,9,29,20,36,42,3.95,5.0,fr,54568,165,2332368,1,1,Active Shallow Crust,0.0,89.99076,0.0,09/29/8270 +5.09952,43.44632,9608,9,3,23,27,59,4.15,15.0,fr,54569,192,2332399,1,1,Active Shallow Crust,0.0,89.98886,-90.0,09/03/9608 +5.09952,43.44632,811,3,5,7,55,37,4.25,15.0,fr,54570,16,2332405,1,1,Active Shallow Crust,0.0,89.99019,0.0,03/05/0811 +5.09952,43.44632,473,10,29,0,43,0,4.35,5.0,fr,54571,9,2332416,1,1,Active Shallow Crust,0.0,89.99126,0.0,10/29/0473 +5.09952,43.44632,7665,8,18,20,14,28,4.45,5.0,fr,54572,153,2332428,1,1,Active Shallow Crust,0.0,89.98961,0.0,08/18/7665 +5.09952,43.44632,5245,1,11,20,33,24,4.55,5.0,fr,54573,104,2332440,1,1,Active Shallow Crust,0.0,89.99074,0.0,01/11/5245 +5.099521,43.44632,6358,2,16,2,4,58,6.05,5.357596,fr,54574,127,2332620,1,1,Active Shallow Crust,0.0,89.98991,0.0,02/16/6358 +-0.86491,47.03624,1017,8,9,20,59,48,3.55,5.0,fr,54575,20,2332800,1,2,Active Shallow Crust,0.0,89.98969,0.0,08/09/1017 +-0.86491,47.03624,3330,8,21,16,22,51,3.55,5.0,fr,54576,66,2332800,1,2,Active Shallow Crust,0.0,89.98969,0.0,08/21/3330 +-0.86491,47.03624,9553,6,24,13,54,8,3.55,15.0,fr,54577,191,2332801,1,1,Active Shallow Crust,0.0,89.98969,0.0,06/24/9553 +-0.86491,47.03624,9438,8,21,9,40,28,3.55,27.5,fr,54578,188,2332802,1,1,Active Shallow Crust,0.0,89.98969,0.0,08/21/9438 +-0.86491,47.03624,517,8,26,9,32,3,3.55,27.5,fr,54579,10,2332805,1,1,Active Shallow Crust,240.0121,57.99809,0.0,08/26/0517 +-0.86491,47.03624,9804,2,9,0,50,59,3.55,5.0,fr,54580,196,2332809,1,1,Active Shallow Crust,128.8963,89.99356,0.0,02/09/9804 +-0.86491,47.03624,4984,3,12,11,45,46,3.65,5.0,fr,54581,99,2332812,1,1,Active Shallow Crust,0.0,89.99004,0.0,03/12/4984 +-0.86491,47.03624,1693,7,11,14,32,45,3.75,27.5,fr,54582,33,2332826,1,1,Active Shallow Crust,0.0,89.98976,0.0,07/11/1693 +-0.86491,47.03624,8800,3,1,14,6,12,3.85,15.0,fr,54583,175,2332837,1,1,Active Shallow Crust,0.0,89.99027,0.0,03/01/8800 +-0.86491,47.03624,4649,11,6,9,59,46,3.85,27.5,fr,54584,92,2332838,1,1,Active Shallow Crust,0.0,89.99027,0.0,11/06/4649 +-0.86491,47.03624,8418,2,13,0,51,13,3.85,15.0,fr,54585,168,2332840,1,1,Active Shallow Crust,240.0109,57.99786,0.0,02/13/8418 +-0.86491,47.03624,6831,6,24,5,51,16,3.85,5.0,fr,54586,136,2332842,1,1,Active Shallow Crust,0.0,89.99016,-90.0,06/24/6831 +-0.86491,47.03624,7482,2,28,13,21,21,3.85,5.0,fr,54587,149,2332845,1,1,Active Shallow Crust,128.8954,89.99392,0.0,02/28/7482 +-0.86491,47.03624,3198,2,23,21,14,36,3.95,5.0,fr,54588,63,2332848,1,1,Active Shallow Crust,0.0,89.99024,0.0,02/23/3198 +-0.86491,47.03624,2906,11,2,9,49,54,3.95,27.5,fr,54589,58,2332853,1,1,Active Shallow Crust,240.0199,58.00502,0.0,11/02/2906 +-0.86491,47.03624,5206,2,18,16,50,29,4.05,5.0,fr,54590,104,2332863,1,1,Active Shallow Crust,240.006,58.00588,0.0,02/18/5206 +-0.86491,47.03624,1044,4,16,0,7,35,4.15,5.0,fr,54591,20,2332872,1,1,Active Shallow Crust,0.0,89.9901,0.0,04/16/1044 +-0.86491,47.03624,5373,7,27,20,40,58,4.15,5.0,fr,54592,107,2332881,1,1,Active Shallow Crust,128.8976,89.99355,0.0,07/27/5373 +-0.86491,47.03624,2527,6,10,17,15,51,4.25,5.0,fr,54593,50,2332884,1,1,Active Shallow Crust,0.0,89.99002,0.0,06/10/2527 +-0.86491,47.03624,120,5,17,18,0,42,4.55,5.0,fr,54594,2,2332920,1,1,Active Shallow Crust,0.0,89.98994,0.0,05/17/0120 +-0.86491,47.03624,7623,4,16,22,28,21,4.65,5.0,fr,54595,152,2332932,1,1,Active Shallow Crust,0.0,89.99007,0.0,04/16/7623 +-0.86491,47.03624,5414,2,17,2,33,17,4.65,27.5,fr,54596,108,2332934,1,1,Active Shallow Crust,0.0,89.99007,0.0,02/17/5414 +-0.86491,47.03624,3283,11,15,16,52,1,4.75,27.5,fr,54597,65,2332946,1,1,Active Shallow Crust,0.0,89.99007,0.0,11/15/3283 +-0.86491,47.03624,3467,8,3,16,2,7,4.85,5.0,fr,54598,69,2332956,1,2,Active Shallow Crust,0.0,89.99,0.0,08/03/3467 +-0.86491,47.03624,7801,12,31,4,47,45,4.85,5.0,fr,54599,156,2332956,1,2,Active Shallow Crust,0.0,89.99,0.0,12/31/7801 +-0.86491,47.03624,2903,2,3,13,26,59,5.85,5.0,fr,54600,58,2333076,1,1,Active Shallow Crust,360.0,89.99002,0.0,02/03/2903 +-1.51519,46.16872,3001,11,27,15,19,44,3.55,5.0,fr,54601,60,2333280,1,2,Active Shallow Crust,0.0,89.98952,0.0,11/27/3001 +-1.51519,46.16872,4191,8,24,2,56,59,3.55,5.0,fr,54602,83,2333280,1,2,Active Shallow Crust,0.0,89.98952,0.0,08/24/4191 +-1.51519,46.16872,7788,10,9,4,0,5,3.55,15.0,fr,54603,155,2333281,1,1,Active Shallow Crust,0.0,89.98952,0.0,10/09/7788 +-1.51519,46.16872,4246,4,5,5,6,47,3.55,27.5,fr,54604,84,2333282,1,1,Active Shallow Crust,0.0,89.98952,0.0,04/05/4246 +-1.51519,46.16872,463,12,17,22,11,22,3.55,27.5,fr,54605,9,2333285,1,1,Active Shallow Crust,240.0121,57.99837,0.0,12/17/0463 +-1.51519,46.16872,9202,5,30,3,19,47,3.55,5.0,fr,54606,184,2333286,1,1,Active Shallow Crust,0.0,89.9894,-90.0,05/30/9202 +-1.51519,46.16872,690,11,18,22,24,2,3.65,15.0,fr,54607,13,2333293,1,1,Active Shallow Crust,0.0,89.99066,0.0,11/18/0690 +-1.51519,46.16872,1432,1,27,2,42,3,3.65,27.5,fr,54608,28,2333300,1,1,Active Shallow Crust,0.0,89.99055,-90.0,01/27/1432 +-1.51519,46.16872,4116,2,16,3,44,46,3.65,5.0,fr,54609,82,2333301,1,1,Active Shallow Crust,128.9005,89.96352,0.0,02/16/4116 +-1.51519,46.16872,8658,11,20,6,56,0,3.75,5.0,fr,54610,173,2333307,1,1,Active Shallow Crust,240.0082,58.0177,0.0,11/20/8658 +-1.51519,46.16872,1617,8,9,2,56,55,3.85,27.5,fr,54611,32,2333318,1,1,Active Shallow Crust,0.0,89.99011,0.0,08/09/1617 +-1.51519,46.16872,7675,1,15,23,18,26,3.95,15.0,fr,54612,153,2333329,1,1,Active Shallow Crust,0.0,89.99008,0.0,01/15/7675 +-1.51519,46.16872,3744,3,28,11,44,36,4.05,5.0,fr,54613,74,2333349,1,1,Active Shallow Crust,128.8906,89.99362,0.0,03/28/3744 +-1.51519,46.16872,5344,2,21,9,7,56,4.75,5.0,fr,54614,106,2333424,1,1,Active Shallow Crust,0.0,89.98991,0.0,02/21/5344 +-1.51519,46.16872,9562,10,9,22,6,6,5.35,5.0,fr,54615,191,2333496,1,1,Active Shallow Crust,359.9999,89.9901,0.0,10/09/9562 +0.02238,49.76149,738,5,29,4,46,30,3.55,5.0,fr,54616,14,2333760,1,1,Active Shallow Crust,0.0,89.99,0.0,05/29/0738 +0.02238,49.76149,1061,12,13,13,33,26,3.65,5.0,fr,54617,21,2333775,1,1,Active Shallow Crust,240.0014,58.01296,0.0,12/13/1061 +0.02238,49.76149,7565,4,1,1,0,6,3.65,15.0,fr,54618,151,2333776,1,1,Active Shallow Crust,240.0014,58.01296,0.0,04/01/7565 +0.02238,49.76149,6450,4,16,22,59,2,3.75,5.0,fr,54619,128,2333784,1,1,Active Shallow Crust,0.0,89.99,0.0,04/16/6450 +0.02238,49.76149,1034,4,9,1,9,0,3.95,5.0,fr,54620,20,2333808,1,1,Active Shallow Crust,0.0,89.99,0.0,04/09/1034 +0.02238,49.76149,6947,11,24,14,17,43,4.05,5.0,fr,54621,138,2333829,1,1,Active Shallow Crust,128.89,89.99373,0.0,11/24/6947 +0.02238,49.76149,1545,4,13,1,35,19,4.45,15.0,fr,54622,30,2333869,1,1,Active Shallow Crust,0.0,89.99,0.0,04/13/1545 +0.02238,49.76149,1087,4,30,3,8,55,4.65,15.0,fr,54623,21,2333899,1,1,Active Shallow Crust,360.0,89.99001,-90.0,04/30/1087 +0.02238,49.76149,8290,6,14,9,55,21,5.15,5.0,fr,54624,165,2333958,1,1,Active Shallow Crust,360.0,89.99,-90.0,06/14/8290 +-4.29715,44.49411,3785,2,11,11,54,47,3.55,5.0,fr,54625,75,2334240,1,1,Active Shallow Crust,0.0,89.99281,0.0,02/11/3785 +2.88979,49.62374,5394,4,1,12,39,48,3.65,5.0,fr,54626,107,2334732,1,1,Active Shallow Crust,0.0,89.99126,0.0,04/01/5394 +2.88979,49.62374,7535,7,23,8,2,42,5.05,5.0,fr,54627,150,2334900,1,1,Active Shallow Crust,0.0,89.99012,0.0,07/23/7535 +1.41317,49.95993,611,7,14,3,35,13,3.55,5.0,fr,54628,12,2335200,1,1,Active Shallow Crust,0.0,89.99027,0.0,07/14/0611 +1.41317,49.95993,9139,1,21,11,10,37,3.65,15.0,fr,54629,182,2335213,1,1,Active Shallow Crust,0.0,89.98988,0.0,01/21/9139 +1.41317,49.95993,1253,10,26,23,58,36,3.85,5.0,fr,54630,25,2335236,1,1,Active Shallow Crust,0.0,89.98967,0.0,10/26/1253 +1.41317,49.95993,2250,12,24,5,42,53,3.95,5.0,fr,54631,44,2335248,1,1,Active Shallow Crust,0.0,89.98977,0.0,12/24/2250 +1.41317,49.95993,1452,9,20,6,44,29,3.95,15.0,fr,54632,29,2335249,1,1,Active Shallow Crust,0.0,89.98977,0.0,09/20/1452 +1.41317,49.95993,4522,7,18,17,7,36,4.05,5.0,fr,54633,90,2335260,1,1,Active Shallow Crust,0.0,89.98997,0.0,07/18/4522 +0.5502,41.85708,2892,11,1,17,27,56,3.65,5.0,fr,54634,57,2335692,1,1,Active Shallow Crust,0.0,89.98996,0.0,11/01/2892 +0.5502,41.85708,6320,6,23,5,45,38,3.95,5.0,fr,54635,126,2335728,1,1,Active Shallow Crust,0.0,89.98993,0.0,06/23/6320 +-1.58962,49.92725,987,2,1,18,38,33,4.35,5.0,fr,54636,19,2336259,1,1,Active Shallow Crust,240.0092,57.99614,0.0,02/01/0987 +-1.58962,49.92725,2797,6,25,21,47,46,4.55,5.0,fr,54637,55,2336280,1,1,Active Shallow Crust,0.0,89.99025,0.0,06/25/2797 +3.853,43.93586,4286,5,17,13,51,24,3.55,5.0,fr,54638,85,2336640,1,2,Active Shallow Crust,0.0,89.98911,0.0,05/17/4286 +3.853,43.93586,9758,9,22,3,42,51,3.55,5.0,fr,54639,195,2336640,1,2,Active Shallow Crust,0.0,89.98911,0.0,09/22/9758 +3.853,43.93586,6866,12,2,19,38,32,3.55,5.0,fr,54640,137,2336649,1,1,Active Shallow Crust,128.8968,89.99274,0.0,12/02/6866 +3.853,43.93586,1304,1,31,11,32,42,3.65,5.0,fr,54641,26,2336652,1,1,Active Shallow Crust,0.0,89.9903,0.0,01/31/1304 +3.853,43.93586,4686,5,27,15,28,41,3.65,5.0,fr,54642,93,2336655,1,1,Active Shallow Crust,240.0002,58.01335,0.0,05/27/4686 +3.853,43.93586,1530,3,31,13,5,12,3.95,5.0,fr,54643,30,2336688,1,1,Active Shallow Crust,0.0,89.99084,0.0,03/31/1530 +3.853,43.93586,1700,9,22,7,17,25,4.45,5.0,fr,54644,33,2336754,1,1,Active Shallow Crust,0.0,89.98957,-90.0,09/22/1700 +3.853,43.93586,1234,12,22,9,40,37,4.45,5.0,fr,54645,24,2336757,1,2,Active Shallow Crust,128.8927,89.99356,0.0,12/22/1234 +3.853,43.93586,188,1,16,10,56,31,4.45,5.0,fr,54646,3,2336757,1,2,Active Shallow Crust,128.8927,89.99356,0.0,01/16/0188 +9.44833,49.77328,4251,6,5,22,45,17,3.95,5.0,fr,54647,85,2337168,1,1,Active Shallow Crust,0.0,89.99178,0.0,06/05/4251 +-0.89917,45.81516,2727,3,5,15,7,53,3.55,5.0,fr,54648,54,2337600,1,2,Active Shallow Crust,0.0,89.99033,0.0,03/05/2727 +-0.89917,45.81516,7482,1,24,16,40,24,3.55,5.0,fr,54649,149,2337600,1,2,Active Shallow Crust,0.0,89.99033,0.0,01/24/7482 +-0.89917,45.81516,4345,11,7,21,3,18,3.55,15.0,fr,54650,86,2337601,1,3,Active Shallow Crust,0.0,89.99033,0.0,11/07/4345 +-0.89917,45.81516,5732,3,21,9,44,55,3.55,15.0,fr,54651,114,2337601,1,3,Active Shallow Crust,0.0,89.99033,0.0,03/21/5732 +-0.89917,45.81516,2819,2,4,3,44,25,3.55,15.0,fr,54652,56,2337601,1,3,Active Shallow Crust,0.0,89.99033,0.0,02/04/2819 +-0.89917,45.81516,9217,10,1,15,54,25,3.85,5.0,fr,54653,184,2337639,1,1,Active Shallow Crust,240.0108,57.99773,0.0,10/01/9217 +-0.89917,45.81516,8182,12,30,1,14,39,4.35,5.0,fr,54654,163,2337696,1,1,Active Shallow Crust,0.0,89.98985,0.0,12/30/8182 +-0.89917,45.81516,4560,12,18,15,52,56,4.35,15.0,fr,54655,91,2337697,1,1,Active Shallow Crust,0.0,89.98985,0.0,12/18/4560 +-0.89917,45.81516,8679,12,10,17,2,36,6.05,27.5,fr,54656,173,2337905,1,1,Active Shallow Crust,240.0553,58.0,0.0,12/10/8679 +0.75726,52.39412,3224,8,7,5,58,23,3.75,15.0,fr,54657,64,2338105,1,1,Active Shallow Crust,0.0,89.99023,0.0,08/07/3224 +0.75726,52.39412,1313,3,26,19,30,14,4.45,5.0,fr,54658,26,2338188,1,1,Active Shallow Crust,0.0,89.9899,0.0,03/26/1313 +0.75726,52.39412,4439,11,11,20,13,59,5.45,15.0,fr,54659,88,2338309,1,1,Active Shallow Crust,0.0,89.98998,0.0,11/11/4439 +7.45409,46.63208,2945,7,1,7,49,23,3.55,5.0,fr,54660,58,2338560,1,7,Active Shallow Crust,0.0,89.99307,0.0,07/01/2945 +7.45409,46.63208,7519,10,29,3,55,36,3.55,5.0,fr,54661,150,2338560,1,7,Active Shallow Crust,0.0,89.99307,0.0,10/29/7519 +7.45409,46.63208,3246,6,29,10,21,43,3.55,5.0,fr,54662,64,2338560,1,7,Active Shallow Crust,0.0,89.99307,0.0,06/29/3246 +7.45409,46.63208,5977,7,25,1,8,41,3.55,5.0,fr,54663,119,2338560,1,7,Active Shallow Crust,0.0,89.99307,0.0,07/25/5977 +7.45409,46.63208,4039,11,6,1,21,10,3.55,5.0,fr,54664,80,2338560,1,7,Active Shallow Crust,0.0,89.99307,0.0,11/06/4039 +7.45409,46.63208,3377,7,5,18,43,59,3.55,5.0,fr,54665,67,2338560,1,7,Active Shallow Crust,0.0,89.99307,0.0,07/05/3377 +7.45409,46.63208,5717,10,22,22,45,12,3.55,5.0,fr,54666,114,2338560,1,7,Active Shallow Crust,0.0,89.99307,0.0,10/22/5717 +7.45409,46.63208,421,1,13,6,54,0,3.55,15.0,fr,54667,8,2338561,1,2,Active Shallow Crust,0.0,89.99307,0.0,01/13/0421 +7.45409,46.63208,5964,4,17,22,42,16,3.55,15.0,fr,54668,119,2338561,1,2,Active Shallow Crust,0.0,89.99307,0.0,04/17/5964 +7.45409,46.63208,289,4,18,2,19,6,3.55,27.5,fr,54669,5,2338562,1,2,Active Shallow Crust,0.0,89.99307,0.0,04/18/0289 +7.45409,46.63208,1172,5,7,8,20,39,3.55,27.5,fr,54670,23,2338562,1,2,Active Shallow Crust,0.0,89.99307,0.0,05/07/1172 +7.45409,46.63208,8919,10,6,15,20,14,3.55,5.0,fr,54671,178,2338569,1,1,Active Shallow Crust,128.8955,89.99307,0.0,10/06/8919 +7.45409,46.63208,6171,5,7,6,8,54,3.55,15.0,fr,54672,123,2338570,1,1,Active Shallow Crust,128.8955,89.99307,0.0,05/07/6171 +7.45409,46.63208,3219,8,12,13,50,39,3.65,5.0,fr,54673,64,2338572,1,4,Active Shallow Crust,0.0,89.98766,0.0,08/12/3219 +7.45409,46.63208,571,4,6,11,8,12,3.65,5.0,fr,54674,11,2338572,1,4,Active Shallow Crust,0.0,89.98766,0.0,04/06/0571 +7.45409,46.63208,2094,1,23,11,57,45,3.65,5.0,fr,54675,41,2338572,1,4,Active Shallow Crust,0.0,89.98766,0.0,01/23/2094 +7.45409,46.63208,7891,5,16,8,51,33,3.65,5.0,fr,54676,157,2338572,1,4,Active Shallow Crust,0.0,89.98766,0.0,05/16/7891 +7.45409,46.63208,7329,1,23,6,7,39,3.65,15.0,fr,54677,146,2338573,1,2,Active Shallow Crust,0.0,89.98766,0.0,01/23/7329 +7.45409,46.63208,7631,12,22,4,14,55,3.65,15.0,fr,54678,152,2338573,1,2,Active Shallow Crust,0.0,89.98766,0.0,12/22/7631 +7.45409,46.63208,6007,3,8,7,14,37,3.65,27.5,fr,54679,120,2338574,1,3,Active Shallow Crust,0.0,89.98766,0.0,03/08/6007 +7.45409,46.63208,667,8,15,9,21,29,3.65,27.5,fr,54680,13,2338574,1,3,Active Shallow Crust,0.0,89.98766,0.0,08/15/0667 +7.45409,46.63208,5423,10,30,18,26,1,3.65,27.5,fr,54681,108,2338574,1,3,Active Shallow Crust,0.0,89.98766,0.0,10/30/5423 +7.45409,46.63208,5577,5,23,21,43,35,3.65,15.0,fr,54682,111,2338576,1,1,Active Shallow Crust,240.0011,58.01261,0.0,05/23/5577 +7.45409,46.63208,8399,7,9,23,54,8,3.65,27.5,fr,54683,167,2338577,1,1,Active Shallow Crust,240.0011,58.01252,0.0,07/09/8399 +7.45409,46.63208,4808,1,13,18,34,59,3.65,5.0,fr,54684,96,2338578,1,1,Active Shallow Crust,0.0,89.98751,-90.0,01/13/4808 +7.45409,46.63208,3054,6,21,8,15,23,3.65,5.0,fr,54685,61,2338581,1,3,Active Shallow Crust,128.9009,89.96352,0.0,06/21/3054 +7.45409,46.63208,2633,12,12,17,26,56,3.65,5.0,fr,54686,52,2338581,1,3,Active Shallow Crust,128.9009,89.96352,0.0,12/12/2633 +7.45409,46.63208,151,8,28,16,29,1,3.65,5.0,fr,54687,3,2338581,1,3,Active Shallow Crust,128.9009,89.96352,0.0,08/28/0151 +7.45409,46.63208,9338,6,14,12,32,39,3.75,5.0,fr,54688,186,2338584,1,3,Active Shallow Crust,0.0,89.989,0.0,06/14/9338 +7.45409,46.63208,6779,4,8,11,14,59,3.75,5.0,fr,54689,135,2338584,1,3,Active Shallow Crust,0.0,89.989,0.0,04/08/6779 +7.45409,46.63208,5771,11,15,9,33,43,3.75,5.0,fr,54690,115,2338584,1,3,Active Shallow Crust,0.0,89.989,0.0,11/15/5771 +7.45409,46.63208,7187,8,24,21,4,35,3.75,15.0,fr,54691,143,2338585,1,1,Active Shallow Crust,0.0,89.989,0.0,08/24/7187 +7.45409,46.63208,1527,8,24,5,11,3,3.75,27.5,fr,54692,30,2338586,1,1,Active Shallow Crust,0.0,89.989,0.0,08/24/1527 +7.45409,46.63208,1677,6,4,12,34,3,3.75,15.0,fr,54693,33,2338588,1,1,Active Shallow Crust,240.0081,58.01763,0.0,06/04/1677 +7.45409,46.63208,9088,8,9,15,49,16,3.75,5.0,fr,54694,181,2338593,1,1,Active Shallow Crust,128.8976,89.96692,0.0,08/09/9088 +7.45409,46.63208,509,12,26,3,4,33,3.75,15.0,fr,54695,10,2338594,1,1,Active Shallow Crust,128.8976,89.96692,0.0,12/26/0509 +7.45409,46.63208,8170,6,20,17,2,5,3.85,5.0,fr,54696,163,2338596,1,1,Active Shallow Crust,0.0,89.9902,0.0,06/20/8170 +7.45409,46.63208,8580,4,6,18,27,15,3.85,15.0,fr,54697,171,2338597,1,1,Active Shallow Crust,0.0,89.9902,0.0,04/06/8580 +7.45409,46.63208,2632,11,27,17,21,32,3.85,5.0,fr,54698,52,2338599,1,3,Active Shallow Crust,240.0112,57.99733,0.0,11/27/2632 +7.45409,46.63208,30,12,6,11,49,32,3.85,5.0,fr,54699,0,2338599,1,3,Active Shallow Crust,240.0112,57.99733,0.0,12/06/0030 +7.45409,46.63208,5061,6,2,19,30,11,3.85,5.0,fr,54700,101,2338599,1,3,Active Shallow Crust,240.0112,57.99733,0.0,06/02/5061 +7.45409,46.63208,6643,9,28,9,8,34,3.95,5.0,fr,54701,132,2338608,1,2,Active Shallow Crust,0.0,89.99126,0.0,09/28/6643 +7.45409,46.63208,8591,8,23,10,26,11,3.95,5.0,fr,54702,171,2338608,1,2,Active Shallow Crust,0.0,89.99126,0.0,08/23/8591 +7.45409,46.63208,2405,7,29,7,6,45,3.95,15.0,fr,54703,48,2338609,1,1,Active Shallow Crust,0.0,89.99126,0.0,07/29/2405 +7.45409,46.63208,8389,5,7,14,45,27,3.95,15.0,fr,54704,167,2338615,1,1,Active Shallow Crust,0.0,89.99116,-90.0,05/07/8389 +7.45409,46.63208,9988,7,1,1,20,47,3.95,15.0,fr,54705,199,2338618,1,1,Active Shallow Crust,128.9003,89.99563,0.0,07/01/9988 +7.45409,46.63208,5915,1,29,6,35,6,4.05,5.0,fr,54706,118,2338620,1,2,Active Shallow Crust,0.0,89.98832,0.0,01/29/5915 +7.45409,46.63208,4387,8,21,19,56,36,4.05,5.0,fr,54707,87,2338620,1,2,Active Shallow Crust,0.0,89.98832,0.0,08/21/4387 +7.45409,46.63208,9374,5,9,5,12,22,4.05,15.0,fr,54708,187,2338621,1,1,Active Shallow Crust,0.0,89.98832,0.0,05/09/9374 +7.45409,46.63208,9363,7,26,16,15,6,4.05,5.0,fr,54709,187,2338623,1,1,Active Shallow Crust,240.0065,58.00507,0.0,07/26/9363 +7.45409,46.63208,9819,7,5,16,33,39,4.05,15.0,fr,54710,196,2338624,1,1,Active Shallow Crust,240.0065,58.00504,0.0,07/05/9819 +7.45409,46.63208,2064,8,26,22,14,36,4.05,5.0,fr,54711,41,2338626,1,1,Active Shallow Crust,0.0,89.98818,-90.0,08/26/2064 +7.45409,46.63208,6254,7,23,22,40,0,4.05,15.0,fr,54712,125,2338627,1,1,Active Shallow Crust,0.0,89.98818,-90.0,07/23/6254 +7.45409,46.63208,8654,6,9,6,11,10,4.15,5.0,fr,54713,173,2338632,1,4,Active Shallow Crust,0.0,89.98959,0.0,06/09/8654 +7.45409,46.63208,5489,12,28,18,31,33,4.15,5.0,fr,54714,109,2338632,1,4,Active Shallow Crust,0.0,89.98959,0.0,12/28/5489 +7.45409,46.63208,419,6,13,5,50,41,4.15,5.0,fr,54715,8,2338632,1,4,Active Shallow Crust,0.0,89.98959,0.0,06/13/0419 +7.45409,46.63208,1202,5,29,9,35,4,4.15,5.0,fr,54716,24,2338632,1,4,Active Shallow Crust,0.0,89.98959,0.0,05/29/1202 +7.45409,46.63208,8893,5,1,23,18,6,4.15,15.0,fr,54717,177,2338633,1,1,Active Shallow Crust,0.0,89.98959,0.0,05/01/8893 +7.45409,46.63208,3503,4,25,23,44,26,4.15,5.0,fr,54718,70,2338638,1,1,Active Shallow Crust,0.0,89.98946,-90.0,04/25/3503 +7.45409,46.63208,3022,7,20,7,11,46,4.25,5.0,fr,54719,60,2338644,1,1,Active Shallow Crust,0.0,89.99072,0.0,07/20/3022 +7.45409,46.63208,1064,12,15,22,59,7,4.25,15.0,fr,54720,21,2338645,1,1,Active Shallow Crust,0.0,89.99072,0.0,12/15/1064 +7.45409,46.63208,595,11,17,3,3,12,4.25,15.0,fr,54721,11,2338648,1,1,Active Shallow Crust,240.0081,57.99389,0.0,11/17/0595 +7.45409,46.63208,9823,3,8,20,12,58,4.35,5.0,fr,54722,196,2338656,1,2,Active Shallow Crust,0.0,89.98898,0.0,03/08/9823 +7.45409,46.63208,4197,5,15,21,30,11,4.35,5.0,fr,54723,83,2338656,1,2,Active Shallow Crust,0.0,89.98898,0.0,05/15/4197 +7.45409,46.63208,5941,3,19,16,30,35,4.35,15.0,fr,54724,118,2338657,1,1,Active Shallow Crust,0.0,89.98898,0.0,03/19/5941 +7.45409,46.63208,3296,8,11,1,6,57,4.35,5.0,fr,54725,65,2338665,1,1,Active Shallow Crust,128.8981,89.98253,0.0,08/11/3296 +7.45409,46.63208,7390,5,8,21,11,19,4.45,5.0,fr,54726,147,2338668,1,1,Active Shallow Crust,0.0,89.99017,0.0,05/08/7390 +7.45409,46.63208,9111,11,6,18,42,37,4.45,15.0,fr,54727,182,2338669,1,2,Active Shallow Crust,0.0,89.99017,0.0,11/06/9111 +7.45409,46.63208,7858,10,6,18,14,49,4.45,15.0,fr,54728,157,2338669,1,2,Active Shallow Crust,0.0,89.99017,0.0,10/06/7858 +7.45409,46.63208,5567,6,8,3,23,57,4.45,5.0,fr,54729,111,2338671,1,1,Active Shallow Crust,240.0055,57.99461,0.0,06/08/5567 +7.45409,46.63208,9863,1,25,15,47,41,4.45,5.0,fr,54730,197,2338674,1,1,Active Shallow Crust,0.0,89.99006,-90.0,01/25/9863 +7.45409,46.63208,3937,11,24,16,46,26,4.45,15.0,fr,54731,78,2338678,1,1,Active Shallow Crust,128.8921,89.99386,0.0,11/24/3937 +7.45409,46.63208,4110,4,28,20,44,13,4.55,27.5,fr,54732,82,2338682,1,1,Active Shallow Crust,0.0,89.98905,0.0,04/28/4110 +7.45409,46.63208,2237,9,23,7,7,57,4.65,15.0,fr,54733,44,2338693,1,1,Active Shallow Crust,0.0,89.99024,0.0,09/23/2237 +7.45409,46.63208,1482,5,19,7,59,24,4.75,5.0,fr,54734,29,2338704,1,2,Active Shallow Crust,0.0,89.98956,0.0,05/19/1482 +7.45409,46.63208,7417,1,29,6,0,5,4.75,5.0,fr,54735,148,2338704,1,2,Active Shallow Crust,0.0,89.98956,0.0,01/29/7417 +7.45409,46.63208,8315,4,20,6,10,45,4.85,5.0,fr,54736,166,2338716,1,1,Active Shallow Crust,0.0,89.9907,0.0,04/20/8315 +7.45409,46.63208,4388,12,9,3,23,56,4.85,15.0,fr,54737,87,2338717,1,1,Active Shallow Crust,0.0,89.9907,0.0,12/09/4388 +7.45409,46.63208,1989,6,27,5,38,5,5.25,5.0,fr,54738,39,2338773,1,1,Active Shallow Crust,128.8833,89.98695,0.0,06/27/1989 +7.45409,46.63208,1747,7,20,17,1,46,5.45,5.0,fr,54739,34,2338788,1,1,Active Shallow Crust,0.0,89.9899,0.0,07/20/1747 +0.26918,41.27978,8031,7,24,10,58,28,3.65,5.0,fr,54740,160,2339052,1,1,Active Shallow Crust,0.0,89.98987,0.0,07/24/8031 +8.62375,47.14723,1305,8,6,14,21,35,3.55,5.0,fr,54741,26,2339520,1,5,Active Shallow Crust,0.0,89.98628,0.0,08/06/1305 +8.62375,47.14723,3208,5,31,20,32,0,3.55,5.0,fr,54742,64,2339520,1,5,Active Shallow Crust,0.0,89.98628,0.0,05/31/3208 +8.62375,47.14723,394,6,5,15,16,44,3.55,5.0,fr,54743,7,2339520,1,5,Active Shallow Crust,0.0,89.98628,0.0,06/05/0394 +8.62375,47.14723,6117,11,16,22,46,8,3.55,5.0,fr,54744,122,2339520,1,5,Active Shallow Crust,0.0,89.98628,0.0,11/16/6117 +8.62375,47.14723,3606,11,7,11,19,24,3.55,5.0,fr,54745,72,2339520,1,5,Active Shallow Crust,0.0,89.98628,0.0,11/07/3606 +8.62375,47.14723,9348,2,1,23,44,44,3.55,15.0,fr,54746,186,2339521,1,2,Active Shallow Crust,0.0,89.98628,0.0,02/01/9348 +8.62375,47.14723,4142,12,10,10,1,10,3.55,15.0,fr,54747,82,2339521,1,2,Active Shallow Crust,0.0,89.98628,0.0,12/10/4142 +8.62375,47.14723,5725,10,19,6,50,31,3.55,27.5,fr,54748,114,2339522,1,1,Active Shallow Crust,0.0,89.98628,0.0,10/19/5725 +8.62375,47.14723,1882,12,5,9,37,27,3.65,5.0,fr,54749,37,2339532,1,4,Active Shallow Crust,0.0,89.98778,0.0,12/05/1882 +8.62375,47.14723,7641,2,20,2,58,15,3.65,5.0,fr,54750,152,2339532,1,4,Active Shallow Crust,0.0,89.98778,0.0,02/20/7641 +8.62375,47.14723,1232,3,19,4,3,18,3.65,5.0,fr,54751,24,2339532,1,4,Active Shallow Crust,0.0,89.98778,0.0,03/19/1232 +8.62375,47.14723,6224,4,30,8,54,38,3.65,5.0,fr,54752,124,2339532,1,4,Active Shallow Crust,0.0,89.98778,0.0,04/30/6224 +8.62375,47.14723,6146,6,19,21,0,43,3.65,15.0,fr,54753,122,2339533,1,1,Active Shallow Crust,0.0,89.98778,0.0,06/19/6146 +8.62375,47.14723,728,6,9,3,59,8,3.65,5.0,fr,54754,14,2339541,1,1,Active Shallow Crust,128.9017,89.96354,0.0,06/09/0728 +8.62375,47.14723,2380,3,21,21,15,12,3.75,5.0,fr,54755,47,2339544,1,2,Active Shallow Crust,0.0,89.98911,0.0,03/21/2380 +8.62375,47.14723,8210,1,3,15,29,24,3.75,5.0,fr,54756,164,2339544,1,2,Active Shallow Crust,0.0,89.98911,0.0,01/03/8210 +8.62375,47.14723,4358,3,27,16,34,40,3.75,5.0,fr,54757,87,2339547,1,1,Active Shallow Crust,240.0094,58.01679,0.0,03/27/4358 +8.62375,47.14723,8373,4,21,18,12,27,3.75,15.0,fr,54758,167,2339548,1,1,Active Shallow Crust,240.0094,58.01679,0.0,04/21/8373 +8.62375,47.14723,750,9,28,19,11,50,3.75,15.0,fr,54759,14,2339551,1,1,Active Shallow Crust,0.0,89.98898,-90.0,09/28/0750 +8.62375,47.14723,5908,10,9,14,38,38,3.75,15.0,fr,54760,118,2339554,1,1,Active Shallow Crust,128.8983,89.96616,0.0,10/09/5908 +8.62375,47.14723,1336,8,19,6,10,21,3.85,5.0,fr,54761,26,2339556,1,1,Active Shallow Crust,0.0,89.99029,0.0,08/19/1336 +8.62375,47.14723,8357,4,16,1,58,6,3.95,5.0,fr,54762,167,2339568,1,2,Active Shallow Crust,0.0,89.99135,0.0,04/16/8357 +8.62375,47.14723,2346,7,30,22,0,38,3.95,5.0,fr,54763,46,2339568,1,2,Active Shallow Crust,0.0,89.99135,0.0,07/30/2346 +8.62375,47.14723,9424,9,21,7,21,43,3.95,15.0,fr,54764,188,2339569,1,1,Active Shallow Crust,0.0,89.99135,0.0,09/21/9424 +8.62375,47.14723,2906,2,2,12,15,52,4.05,5.0,fr,54765,58,2339580,1,1,Active Shallow Crust,0.0,89.99229,0.0,02/02/2906 +8.62375,47.14723,7208,3,8,12,44,33,4.05,15.0,fr,54766,144,2339584,1,1,Active Shallow Crust,240.0076,58.00444,0.0,03/08/7208 +8.62375,47.14723,6201,1,14,23,52,54,4.15,5.0,fr,54767,124,2339592,1,1,Active Shallow Crust,0.0,89.99313,0.0,01/14/6201 +8.62375,47.14723,5083,8,6,22,51,31,4.25,5.0,fr,54768,101,2339607,1,1,Active Shallow Crust,240.0085,57.99437,0.0,08/06/5083 +8.62375,47.14723,8861,2,12,7,2,6,4.25,5.0,fr,54769,177,2339610,1,1,Active Shallow Crust,0.0,89.9876,-90.0,02/12/8861 +8.62375,47.14723,3445,7,24,23,8,39,4.65,5.0,fr,54770,68,2339652,1,1,Active Shallow Crust,0.0,89.9884,0.0,07/24/3445 +8.62375,47.14723,1800,7,1,0,25,57,4.85,15.0,fr,54771,35,2339677,1,1,Active Shallow Crust,0.0,89.99078,0.0,07/01/1800 +8.62375,47.14723,5788,11,18,16,10,25,4.95,5.0,fr,54772,115,2339688,1,1,Active Shallow Crust,0.0,89.98905,0.0,11/18/5788 +8.62375,47.14723,3597,3,23,6,40,53,5.05,5.0,fr,54773,71,2339700,1,1,Active Shallow Crust,0.0,89.99024,0.0,03/23/3597 +8.62375,47.14723,2,2,7,7,50,4,5.15,15.0,fr,54774,0,2339716,1,1,Active Shallow Crust,240.0202,57.99994,0.0,02/07/0002 +8.62375,47.14723,8557,3,28,20,44,27,5.65,5.0,fr,54775,171,2339772,1,1,Active Shallow Crust,0.0,89.99021,0.0,03/28/8557 +-0.46278,42.43856,4864,12,27,17,41,23,3.75,5.0,fr,54776,97,2340024,1,1,Active Shallow Crust,0.0,89.99002,0.0,12/27/4864 +-0.46278,42.43856,8365,8,25,9,28,30,3.85,5.0,fr,54777,167,2340036,1,1,Active Shallow Crust,0.0,89.99012,0.0,08/25/8365 +-0.46278,42.43856,122,12,12,22,21,55,4.05,5.0,fr,54778,2,2340063,1,1,Active Shallow Crust,240.0053,58.00573,0.0,12/12/0122 +-0.46278,42.43856,5217,9,12,19,26,59,4.65,5.0,fr,54779,104,2340132,1,1,Active Shallow Crust,0.0,89.99004,0.0,09/12/5217 +5.13828,41.16447,3559,11,6,20,27,45,3.55,5.0,fr,54780,71,2340480,1,1,Active Shallow Crust,0.0,89.99241,0.0,11/06/3559 +5.13828,41.16447,2934,8,28,0,48,35,3.55,15.0,fr,54781,58,2340481,1,1,Active Shallow Crust,0.0,89.99241,0.0,08/28/2934 +5.13828,41.16447,998,11,23,3,42,5,3.65,5.0,fr,54782,19,2340498,1,1,Active Shallow Crust,0.0,89.99316,-90.0,11/23/0998 +-1.20023,41.66708,1411,2,20,20,39,58,4.15,5.0,fr,54783,28,2341035,1,1,Active Shallow Crust,240.0077,57.99704,0.0,02/20/1411 +-1.20023,41.66708,5135,12,2,8,53,31,4.65,5.0,fr,54784,102,2341095,1,1,Active Shallow Crust,240.0094,57.99396,0.0,12/02/5135 +5.95414,49.00591,2550,9,25,4,14,57,3.55,5.0,fr,54785,50,2341440,1,1,Active Shallow Crust,0.0,89.98677,0.0,09/25/2550 +5.95414,49.00591,7731,6,11,20,2,21,5.35,5.0,fr,54786,154,2341656,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/11/7731 +0.69631,46.21079,6866,12,16,7,20,8,3.55,5.0,fr,54787,137,2341920,1,1,Active Shallow Crust,0.0,89.9904,0.0,12/16/6866 +0.69631,46.21079,2086,2,1,19,58,37,3.65,5.0,fr,54788,41,2341932,1,1,Active Shallow Crust,0.0,89.98989,0.0,02/01/2086 +0.69631,46.21079,2730,9,6,6,23,22,3.65,27.5,fr,54789,54,2341940,1,1,Active Shallow Crust,0.0,89.98978,-90.0,09/06/2730 +0.69631,46.21079,1071,5,10,4,39,27,3.75,15.0,fr,54790,21,2341945,1,1,Active Shallow Crust,0.0,89.9903,0.0,05/10/1071 +0.69631,46.21079,3730,6,9,13,31,49,3.85,5.0,fr,54791,74,2341956,1,1,Active Shallow Crust,0.0,89.99012,0.0,06/09/3730 +0.69631,46.21079,7397,1,26,20,3,26,3.95,5.0,fr,54792,147,2341968,1,1,Active Shallow Crust,0.0,89.99009,0.0,01/26/7397 +0.69631,46.21079,3297,12,10,5,46,16,4.05,5.0,fr,54793,65,2341980,1,1,Active Shallow Crust,0.0,89.99019,0.0,12/10/3297 +0.69631,46.21079,5752,2,18,23,38,6,4.25,27.5,fr,54794,115,2342006,1,1,Active Shallow Crust,0.0,89.98987,0.0,02/18/5752 +0.69631,46.21079,2366,1,18,14,52,33,4.65,5.0,fr,54795,47,2342052,1,1,Active Shallow Crust,0.0,89.98992,0.0,01/18/2366 +0.69631,46.21079,83,4,28,6,41,25,4.65,5.0,fr,54796,1,2342061,1,1,Active Shallow Crust,128.8912,89.98702,0.0,04/28/0083 +0.69631,46.21079,4778,2,9,7,59,45,4.75,5.0,fr,54797,95,2342064,1,1,Active Shallow Crust,0.0,89.98992,0.0,02/09/4778 +0.69631,46.21079,4203,1,13,2,48,54,5.25,5.0,fr,54798,84,2342124,1,1,Active Shallow Crust,0.0,89.99001,0.0,01/13/4203 +0.69631,46.21079,5865,3,26,8,19,27,5.45,5.0,fr,54799,117,2342154,1,1,Active Shallow Crust,0.0,89.99,-90.0,03/26/5865 +0.69631,46.21079,2084,4,10,20,29,27,5.85,15.0,fr,54800,41,2342197,1,1,Active Shallow Crust,0.0,89.98999,0.0,04/10/2084 +-0.7539,50.6388,298,4,9,6,6,47,3.65,5.0,fr,54801,5,2342412,1,1,Active Shallow Crust,0.0,89.99003,0.0,04/09/0298 +-0.7539,50.6388,6828,3,4,12,40,38,3.75,5.0,fr,54802,136,2342424,1,1,Active Shallow Crust,0.0,89.98984,0.0,03/04/6828 +-0.19595,42.60348,8112,2,15,0,28,46,3.55,15.0,fr,54803,162,2342887,1,1,Active Shallow Crust,0.0,89.98991,-90.0,02/15/8112 +-0.19595,42.60348,227,12,24,0,55,51,3.65,5.0,fr,54804,4,2342892,1,1,Active Shallow Crust,0.0,89.99007,0.0,12/24/0227 +-0.19595,42.60348,7803,8,8,13,55,5,3.65,27.5,fr,54805,156,2342894,1,1,Active Shallow Crust,0.0,89.99007,0.0,08/08/7803 +-0.19595,42.60348,1550,10,27,6,27,45,3.65,5.0,fr,54806,30,2342901,1,1,Active Shallow Crust,128.9007,89.9635,0.0,10/27/1550 +-0.19595,42.60348,2806,11,2,10,9,49,3.75,15.0,fr,54807,56,2342914,1,1,Active Shallow Crust,128.897,89.96734,0.0,11/02/2806 +-0.19595,42.60348,3120,2,4,21,40,55,3.85,15.0,fr,54808,62,2342917,1,2,Active Shallow Crust,0.0,89.98998,0.0,02/04/3120 +-0.19595,42.60348,9632,5,6,18,11,15,3.85,15.0,fr,54809,192,2342917,1,2,Active Shallow Crust,0.0,89.98998,0.0,05/06/9632 +-0.19595,42.60348,4917,7,31,4,4,52,4.05,15.0,fr,54810,98,2342941,1,1,Active Shallow Crust,0.0,89.98996,0.0,07/31/4917 +0.98623,41.62723,8883,9,20,20,27,58,3.55,15.0,fr,54811,177,2343361,1,1,Active Shallow Crust,0.0,89.98964,0.0,09/20/8883 +0.98623,41.62723,687,12,7,22,8,23,3.55,15.0,fr,54812,13,2343364,1,1,Active Shallow Crust,240.0118,57.99812,0.0,12/07/0687 +0.98623,41.62723,9860,3,13,17,2,23,3.75,5.0,fr,54813,197,2343387,1,1,Active Shallow Crust,240.0078,58.01742,0.0,03/13/9860 +0.98623,41.62723,8923,1,26,21,6,19,3.95,15.0,fr,54814,178,2343415,1,1,Active Shallow Crust,0.0,89.98978,-90.0,01/26/8923 +0.98623,41.62723,1784,9,28,11,19,18,4.25,5.0,fr,54815,35,2343447,1,1,Active Shallow Crust,240.0066,57.99395,0.0,09/28/1784 +-0.0228,43.71484,4575,1,5,14,0,9,3.55,5.0,fr,54816,91,2343840,1,1,Active Shallow Crust,0.0,89.99001,0.0,01/05/4575 +-0.0228,43.71484,4195,8,4,22,16,26,3.55,27.5,fr,54817,83,2343842,1,1,Active Shallow Crust,0.0,89.99001,0.0,08/04/4195 +-0.0228,43.71484,5379,2,22,20,47,56,3.65,5.0,fr,54818,107,2343852,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/22/5379 +-0.0228,43.71484,391,7,6,16,59,15,3.65,15.0,fr,54819,7,2343862,1,1,Active Shallow Crust,128.9007,89.96351,0.0,07/06/0391 +-0.0228,43.71484,4745,12,5,3,21,36,3.85,5.0,fr,54820,94,2343876,1,1,Active Shallow Crust,0.0,89.99001,0.0,12/05/4745 +-0.0228,43.71484,8911,3,22,1,28,11,3.95,5.0,fr,54821,178,2343894,1,1,Active Shallow Crust,0.0,89.99001,-90.0,03/22/8911 +-0.0228,43.71484,1353,6,5,1,34,56,4.15,5.0,fr,54822,27,2343915,1,1,Active Shallow Crust,240.008,57.99722,0.0,06/05/1353 +4.69748,50.20996,6632,6,7,0,26,18,3.55,5.0,fr,54823,132,2344326,1,1,Active Shallow Crust,0.0,89.98695,-90.0,06/07/6632 +4.69748,50.20996,5181,4,30,20,23,38,3.65,5.0,fr,54824,103,2344332,1,1,Active Shallow Crust,0.0,89.98849,0.0,04/30/5181 +4.69748,50.20996,7233,8,5,16,54,21,3.75,5.0,fr,54825,144,2344350,1,1,Active Shallow Crust,0.0,89.98963,-90.0,08/05/7233 +4.69748,50.20996,5370,12,4,19,42,17,3.85,5.0,fr,54826,107,2344356,1,1,Active Shallow Crust,0.0,89.99086,0.0,12/04/5370 +4.69748,50.20996,4087,12,27,9,46,32,3.85,15.0,fr,54827,81,2344357,1,1,Active Shallow Crust,0.0,89.99086,0.0,12/27/4087 +4.69748,50.20996,7336,5,9,4,41,42,3.85,5.0,fr,54828,146,2344359,1,1,Active Shallow Crust,240.0113,57.99836,0.0,05/09/7336 +4.69748,50.20996,3358,7,5,16,58,28,3.95,5.0,fr,54829,67,2344368,1,1,Active Shallow Crust,0.0,89.99186,0.0,07/05/3358 +4.69748,50.20996,4152,5,22,14,14,40,4.15,5.0,fr,54830,83,2344392,1,1,Active Shallow Crust,0.0,89.9903,0.0,05/22/4152 +-0.33686,44.23155,3414,12,2,18,7,30,3.55,5.0,fr,54831,68,2344800,1,1,Active Shallow Crust,0.0,89.99007,0.0,12/02/3414 +-0.33686,44.23155,4315,4,17,6,35,28,3.75,5.0,fr,54832,86,2344824,1,1,Active Shallow Crust,0.0,89.98996,0.0,04/17/4315 +-0.33686,44.23155,6950,6,19,17,53,35,3.85,5.0,fr,54833,138,2344839,1,1,Active Shallow Crust,240.0105,57.99778,0.0,06/19/6950 +-0.33686,44.23155,1613,3,7,20,38,1,3.95,5.0,fr,54834,32,2344851,1,1,Active Shallow Crust,240.0195,58.00489,0.0,03/07/1613 +-0.33686,44.23155,9005,6,17,8,35,10,4.55,5.0,fr,54835,180,2344920,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/17/9005 +3.06378,40.73747,262,6,17,9,57,43,3.55,5.0,fr,54836,5,2345280,1,1,Active Shallow Crust,0.0,89.98854,0.0,06/17/0262 +1.62423,47.86731,5630,11,16,6,23,59,3.55,5.0,fr,54837,112,2345763,1,1,Active Shallow Crust,240.012,57.99818,0.0,11/16/5630 +1.62423,47.86731,5251,11,8,17,24,11,3.65,5.0,fr,54838,105,2345775,1,1,Active Shallow Crust,240.0013,58.01307,0.0,11/08/5251 +1.62423,47.86731,9435,6,19,23,20,25,3.85,5.0,fr,54839,188,2345796,1,1,Active Shallow Crust,0.0,89.99043,0.0,06/19/9435 +1.62423,47.86731,8492,11,18,1,2,47,3.85,27.5,fr,54840,169,2345798,1,1,Active Shallow Crust,0.0,89.99043,0.0,11/18/8492 +1.62423,47.86731,9165,3,24,15,5,6,4.05,5.0,fr,54841,183,2345820,1,1,Active Shallow Crust,0.0,89.98954,0.0,03/24/9165 +1.62423,47.86731,8443,8,13,14,43,30,4.35,27.5,fr,54842,168,2345858,1,1,Active Shallow Crust,0.0,89.9899,0.0,08/13/8443 +1.62423,47.86731,2896,4,28,18,45,51,4.45,15.0,fr,54843,57,2345878,1,1,Active Shallow Crust,128.8919,89.9937,0.0,04/28/2896 +2.92923,47.69022,8316,11,26,19,9,6,3.75,5.0,fr,54844,166,2346264,1,1,Active Shallow Crust,0.0,89.98922,0.0,11/26/8316 +2.92923,47.69022,8686,2,14,21,6,8,3.85,5.0,fr,54845,173,2346276,1,1,Active Shallow Crust,0.0,89.99039,0.0,02/14/8686 +2.92923,47.69022,2975,7,18,23,52,19,3.95,15.0,fr,54846,59,2346289,1,1,Active Shallow Crust,0.0,89.9893,0.0,07/18/2975 +2.92923,47.69022,5056,11,13,7,44,50,4.25,15.0,fr,54847,101,2346328,1,1,Active Shallow Crust,240.0076,57.9942,0.0,11/13/5056 +5.71871,42.8588,9650,8,31,14,29,7,3.55,15.0,fr,54848,192,2346721,1,1,Active Shallow Crust,0.0,89.99261,0.0,08/31/9650 +5.71871,42.8588,2298,11,10,7,58,39,3.65,15.0,fr,54849,45,2346733,1,1,Active Shallow Crust,0.0,89.98682,0.0,11/10/2298 +5.71871,42.8588,3520,4,14,6,15,43,4.05,5.0,fr,54850,70,2346783,1,1,Active Shallow Crust,240.0055,58.00583,0.0,04/14/3520 +1.07806,46.90568,4760,6,23,17,44,10,3.55,5.0,fr,54851,95,2347200,1,1,Active Shallow Crust,0.0,89.98966,0.0,06/23/4760 +1.07806,46.90568,7364,8,23,12,15,24,3.65,5.0,fr,54852,147,2347212,1,3,Active Shallow Crust,0.0,89.98926,0.0,08/23/7364 +1.07806,46.90568,8707,5,10,10,24,2,3.65,5.0,fr,54853,174,2347212,1,3,Active Shallow Crust,0.0,89.98926,0.0,05/10/8707 +1.07806,46.90568,8134,9,6,4,25,19,3.65,5.0,fr,54854,162,2347212,1,3,Active Shallow Crust,0.0,89.98926,0.0,09/06/8134 +1.07806,46.90568,4788,6,17,7,21,17,3.65,5.0,fr,54855,95,2347218,1,1,Active Shallow Crust,0.0,89.99068,-90.0,06/17/4788 +1.07806,46.90568,421,6,17,19,20,41,3.65,27.5,fr,54856,8,2347223,1,1,Active Shallow Crust,128.9001,89.96353,0.0,06/17/0421 +1.07806,46.90568,8946,12,27,23,10,4,3.75,5.0,fr,54857,178,2347224,1,1,Active Shallow Crust,0.0,89.99043,0.0,12/27/8946 +1.07806,46.90568,9893,2,11,1,26,15,3.85,5.0,fr,54858,197,2347236,1,1,Active Shallow Crust,0.0,89.99024,0.0,02/11/9893 +1.07806,46.90568,7765,7,19,3,37,27,3.85,5.0,fr,54859,155,2347245,1,1,Active Shallow Crust,128.8955,89.9939,0.0,07/19/7765 +1.07806,46.90568,9243,9,28,14,10,12,3.95,5.0,fr,54860,184,2347248,1,1,Active Shallow Crust,0.0,89.99022,0.0,09/28/9243 +1.07806,46.90568,5659,5,13,12,47,53,4.15,15.0,fr,54861,113,2347282,1,1,Active Shallow Crust,128.8978,89.99353,0.0,05/13/5659 +1.07806,46.90568,3937,5,12,16,46,59,4.25,5.0,fr,54862,78,2347284,1,1,Active Shallow Crust,0.0,89.99,0.0,05/12/3937 +1.07806,46.90568,76,12,12,21,24,7,4.35,5.0,fr,54863,1,2347296,1,1,Active Shallow Crust,0.0,89.98972,0.0,12/12/0076 +1.07806,46.90568,2714,11,27,17,33,8,4.75,15.0,fr,54864,54,2347348,1,1,Active Shallow Crust,240.0076,58.00457,0.0,11/27/2714 +1.07806,46.90568,2419,5,29,19,52,39,4.85,15.0,fr,54865,48,2347360,1,1,Active Shallow Crust,240.0174,58.00232,0.0,05/29/2419 +1.07806,46.90568,4665,1,4,8,17,34,4.95,5.0,fr,54866,93,2347371,1,1,Active Shallow Crust,240.0121,58.00447,0.0,01/04/4665 +-2.3661,44.02591,9147,5,25,4,19,42,4.15,27.5,fr,54867,182,2348234,1,1,Active Shallow Crust,0.0,89.9891,0.0,05/25/9147 +-3.27224,46.27219,4197,10,16,3,52,30,3.55,5.0,fr,54868,83,2348640,1,1,Active Shallow Crust,0.0,89.98955,0.0,10/16/4197 +-3.39806,44.74038,912,8,28,13,14,9,4.05,27.5,fr,54869,18,2349662,1,1,Active Shallow Crust,0.0,89.98993,0.0,08/28/0912 +6.37478,44.9354,1282,3,23,16,13,57,3.55,5.0,fr,54870,25,2350080,1,2,Active Shallow Crust,0.0,89.99286,0.0,03/23/1282 +6.37478,44.9354,1545,9,1,14,9,18,3.55,5.0,fr,54871,30,2350080,1,2,Active Shallow Crust,0.0,89.99286,0.0,09/01/1545 +6.37478,44.9354,5156,9,20,15,39,37,3.55,27.5,fr,54872,103,2350082,1,1,Active Shallow Crust,0.0,89.99286,0.0,09/20/5156 +6.37478,44.9354,1778,6,22,2,1,29,3.55,5.0,fr,54873,35,2350089,1,1,Active Shallow Crust,128.8976,89.99286,0.0,06/22/1778 +6.37478,44.9354,6330,4,14,12,45,28,3.65,5.0,fr,54874,126,2350092,1,1,Active Shallow Crust,0.0,89.98727,0.0,04/14/6330 +6.37478,44.9354,6046,4,13,8,22,5,3.65,5.0,fr,54875,120,2350095,1,1,Active Shallow Crust,240.0011,58.01327,0.0,04/13/6046 +6.37478,44.9354,40,11,22,1,59,51,3.65,15.0,fr,54876,0,2350102,1,1,Active Shallow Crust,128.9005,89.96349,0.0,11/22/0040 +6.37478,44.9354,5385,1,7,22,56,34,3.75,5.0,fr,54877,107,2350104,1,1,Active Shallow Crust,0.0,89.98866,0.0,01/07/5385 +6.37478,44.9354,3650,10,25,15,3,1,3.75,5.0,fr,54878,72,2350110,1,1,Active Shallow Crust,0.0,89.98853,-90.0,10/25/3650 +6.37478,44.9354,8755,5,6,0,14,15,3.95,5.0,fr,54879,175,2350128,1,1,Active Shallow Crust,0.0,89.99099,0.0,05/06/8755 +6.37478,44.9354,8263,5,1,7,48,51,3.95,5.0,fr,54880,165,2350131,1,1,Active Shallow Crust,240.0197,58.00484,0.0,05/01/8263 +6.37478,44.9354,7680,5,19,3,43,31,3.95,15.0,fr,54881,153,2350132,1,1,Active Shallow Crust,240.0197,58.00484,0.0,05/19/7680 +6.37478,44.9354,1684,12,1,1,14,39,4.05,5.0,fr,54882,33,2350140,1,1,Active Shallow Crust,0.0,89.99197,0.0,12/01/1684 +6.37478,44.9354,8041,1,22,23,39,7,4.05,15.0,fr,54883,160,2350141,1,1,Active Shallow Crust,0.0,89.99197,0.0,01/22/8041 +6.37478,44.9354,2238,1,31,21,28,6,4.05,5.0,fr,54884,44,2350143,1,1,Active Shallow Crust,240.0063,58.00523,0.0,01/31/2238 +0.95746,42.30636,1176,10,23,14,32,9,3.55,5.0,fr,54885,23,2350560,1,2,Active Shallow Crust,0.0,89.98975,0.0,10/23/1176 +0.95746,42.30636,7675,12,31,23,52,50,3.55,5.0,fr,54886,153,2350560,1,2,Active Shallow Crust,0.0,89.98975,0.0,12/31/7675 +0.95746,42.30636,7900,2,15,4,51,25,3.55,5.0,fr,54887,157,2350566,1,1,Active Shallow Crust,0.0,89.98962,-90.0,02/15/7900 +0.95746,42.30636,3923,1,12,0,55,37,3.65,5.0,fr,54888,78,2350572,1,2,Active Shallow Crust,0.0,89.99003,0.0,01/12/3923 +0.95746,42.30636,2076,8,15,20,6,25,3.65,5.0,fr,54889,41,2350572,1,2,Active Shallow Crust,0.0,89.99003,0.0,08/15/2076 +0.95746,42.30636,8559,12,31,20,17,1,3.65,5.0,fr,54890,171,2350575,1,1,Active Shallow Crust,240.0006,58.01292,0.0,12/31/8559 +0.95746,42.30636,4939,12,28,16,21,6,3.75,5.0,fr,54891,98,2350584,1,1,Active Shallow Crust,0.0,89.98963,0.0,12/28/4939 +0.95746,42.30636,4927,4,3,2,24,22,3.85,15.0,fr,54892,98,2350597,1,1,Active Shallow Crust,0.0,89.9901,0.0,04/03/4927 +0.95746,42.30636,346,6,10,22,3,2,3.95,5.0,fr,54893,6,2350608,1,1,Active Shallow Crust,0.0,89.99,0.0,06/10/0346 +0.95746,42.30636,214,8,25,22,57,24,3.95,27.5,fr,54894,4,2350610,1,1,Active Shallow Crust,0.0,89.99,0.0,08/25/0214 +0.95746,42.30636,255,5,1,13,44,40,3.95,5.0,fr,54895,5,2350614,1,1,Active Shallow Crust,0.0,89.98988,-90.0,05/01/0255 +0.95746,42.30636,2276,6,1,20,4,15,4.15,15.0,fr,54896,45,2350633,1,1,Active Shallow Crust,0.0,89.99019,0.0,06/01/2276 +0.95746,42.30636,5892,4,23,23,11,29,4.15,5.0,fr,54897,117,2350641,1,1,Active Shallow Crust,128.8982,89.99369,0.0,04/23/5892 +0.95746,42.30636,503,6,28,10,58,25,4.45,15.0,fr,54898,10,2350669,1,1,Active Shallow Crust,0.0,89.99007,0.0,06/28/0503 +0.95746,42.30636,2154,6,21,23,21,31,4.55,5.0,fr,54899,43,2350680,1,1,Active Shallow Crust,0.0,89.98997,0.0,06/21/2154 +0.95746,42.30636,9757,3,16,13,55,1,4.75,5.0,fr,54900,195,2350710,1,1,Active Shallow Crust,0.0,89.99005,-90.0,03/16/9757 +0.95746,42.30636,3229,4,5,23,40,40,5.05,5.0,fr,54901,64,2350749,1,1,Active Shallow Crust,128.8872,89.99046,0.0,04/05/3229 +4.51863,49.93718,4299,6,5,8,22,53,3.65,27.5,fr,54902,85,2351054,1,1,Active Shallow Crust,0.0,89.98843,0.0,06/05/4299 +4.51863,49.93718,2908,8,11,1,57,7,4.05,5.0,fr,54903,58,2351100,1,1,Active Shallow Crust,0.0,89.98905,0.0,08/11/2908 +-4.84544,48.57427,1584,7,11,5,3,10,3.55,5.0,fr,54904,31,2351520,1,1,Active Shallow Crust,0.0,89.99332,0.0,07/11/1584 +-4.84544,48.57427,6472,4,12,16,26,50,3.55,15.0,fr,54905,129,2351530,1,1,Active Shallow Crust,128.896,89.99333,0.0,04/12/6472 +-4.84544,48.57427,8225,3,21,2,55,51,3.65,15.0,fr,54906,164,2351533,1,1,Active Shallow Crust,0.0,89.98811,0.0,03/21/8225 +-4.84544,48.57427,3802,11,18,4,1,52,3.65,5.0,fr,54907,76,2351541,1,1,Active Shallow Crust,128.9002,89.96356,0.0,11/18/3802 +-4.84544,48.57427,1002,8,14,15,39,2,3.75,5.0,fr,54908,20,2351544,1,1,Active Shallow Crust,0.0,89.9894,0.0,08/14/1002 +-4.84544,48.57427,4005,6,1,22,35,45,3.75,15.0,fr,54909,80,2351545,1,1,Active Shallow Crust,0.0,89.9894,0.0,06/01/4005 +-4.84544,48.57427,6339,12,21,3,18,51,3.85,27.5,fr,54910,126,2351561,1,1,Active Shallow Crust,240.0116,57.99768,0.0,12/21/6339 +-4.84544,48.57427,7732,8,26,3,7,38,4.05,5.0,fr,54911,154,2351589,1,1,Active Shallow Crust,128.8904,89.99437,0.0,08/26/7732 +-4.84544,48.57427,1010,9,25,22,50,16,4.15,27.5,fr,54912,20,2351594,1,1,Active Shallow Crust,0.0,89.98997,0.0,09/25/1010 +-4.84544,48.57427,7413,9,8,23,25,57,4.25,5.0,fr,54913,148,2351610,1,1,Active Shallow Crust,0.0,89.99095,-90.0,09/08/7413 +-4.84544,48.57427,5855,10,25,2,56,28,4.45,5.0,fr,54914,117,2351637,1,1,Active Shallow Crust,128.8919,89.99408,0.0,10/25/5855 +-4.84544,48.57427,5951,11,3,19,14,30,5.25,5.0,fr,54915,119,2351724,1,1,Active Shallow Crust,0.0,89.98963,0.0,11/03/5951 +-0.13,46.14934,2658,9,18,12,5,7,3.55,5.0,fr,54916,53,2352000,1,1,Active Shallow Crust,0.0,89.98996,0.0,09/18/2658 +-0.13,46.14934,1191,10,21,14,15,1,3.55,15.0,fr,54917,23,2352001,1,1,Active Shallow Crust,0.0,89.98996,0.0,10/21/1191 +-0.13,46.14934,7519,1,23,16,43,57,3.55,27.5,fr,54918,150,2352002,1,1,Active Shallow Crust,0.0,89.98996,0.0,01/23/7519 +-0.13,46.14934,7844,12,29,10,46,33,3.55,15.0,fr,54919,156,2352004,1,2,Active Shallow Crust,240.0121,57.99814,0.0,12/29/7844 +-0.13,46.14934,8879,3,20,5,46,29,3.55,15.0,fr,54920,177,2352004,1,2,Active Shallow Crust,240.0121,57.99814,0.0,03/20/8879 +-0.13,46.14934,1321,9,2,23,23,30,3.55,5.0,fr,54921,26,2352009,1,1,Active Shallow Crust,128.8962,89.99367,0.0,09/02/1321 +-0.13,46.14934,5635,4,9,9,5,53,3.65,15.0,fr,54922,112,2352013,1,1,Active Shallow Crust,0.0,89.99007,0.0,04/09/5635 +-0.13,46.14934,980,10,22,0,14,50,3.65,5.0,fr,54923,19,2352021,1,2,Active Shallow Crust,128.9004,89.96352,0.0,10/22/0980 +-0.13,46.14934,3243,12,31,5,2,32,3.65,5.0,fr,54924,64,2352021,1,2,Active Shallow Crust,128.9004,89.96352,0.0,12/31/3243 +-0.13,46.14934,116,2,19,22,43,1,3.65,15.0,fr,54925,2,2352022,1,1,Active Shallow Crust,128.9004,89.96352,0.0,02/19/0116 +-0.13,46.14934,3472,1,12,18,26,44,3.75,27.5,fr,54926,69,2352026,1,1,Active Shallow Crust,0.0,89.98994,0.0,01/12/3472 +-0.13,46.14934,4451,5,11,20,45,58,3.75,5.0,fr,54927,89,2352027,1,1,Active Shallow Crust,240.0083,58.01755,0.0,05/11/4451 +-0.13,46.14934,4839,4,1,12,49,56,3.75,5.0,fr,54928,96,2352033,1,1,Active Shallow Crust,128.8967,89.96735,0.0,04/01/4839 +-0.13,46.14934,3592,5,16,21,3,49,3.85,5.0,fr,54929,71,2352036,1,2,Active Shallow Crust,0.0,89.98995,0.0,05/16/3592 +-0.13,46.14934,6273,11,1,6,55,25,3.85,5.0,fr,54930,125,2352036,1,2,Active Shallow Crust,0.0,89.98995,0.0,11/01/6273 +-0.13,46.14934,5510,5,30,12,6,21,4.05,15.0,fr,54931,110,2352070,1,1,Active Shallow Crust,128.8905,89.99374,0.0,05/30/5510 +-0.13,46.14934,618,8,24,3,37,8,4.15,5.0,fr,54932,12,2352072,1,1,Active Shallow Crust,0.0,89.99004,0.0,08/24/0618 +-0.13,46.14934,3590,6,27,5,36,58,4.35,5.0,fr,54933,71,2352096,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/27/3590 +-0.13,46.14934,701,3,20,14,25,51,4.65,5.0,fr,54934,14,2352132,1,1,Active Shallow Crust,0.0,89.98997,0.0,03/20/0701 +7.64337,44.42258,1545,9,9,11,6,51,3.55,5.0,fr,54935,30,2352480,1,3,Active Shallow Crust,0.0,89.9928,0.0,09/09/1545 +7.64337,44.42258,6435,8,5,20,1,10,3.55,5.0,fr,54936,128,2352480,1,3,Active Shallow Crust,0.0,89.9928,0.0,08/05/6435 +7.64337,44.42258,2411,9,5,17,52,37,3.55,5.0,fr,54937,48,2352480,1,3,Active Shallow Crust,0.0,89.9928,0.0,09/05/2411 +7.64337,44.42258,7536,4,8,5,42,19,3.55,15.0,fr,54938,150,2352481,1,2,Active Shallow Crust,0.0,89.9928,0.0,04/08/7536 +7.64337,44.42258,9289,8,23,4,39,41,3.55,15.0,fr,54939,185,2352481,1,2,Active Shallow Crust,0.0,89.9928,0.0,08/23/9289 +7.64337,44.42258,5887,11,29,11,55,47,3.55,5.0,fr,54940,117,2352483,1,1,Active Shallow Crust,240.0119,57.99792,0.0,11/29/5887 +7.64337,44.42258,3351,3,24,16,27,10,3.55,5.0,fr,54941,67,2352486,1,1,Active Shallow Crust,0.0,89.99271,-90.0,03/24/3351 +7.64337,44.42258,4042,5,14,9,28,53,3.55,15.0,fr,54942,80,2352487,1,1,Active Shallow Crust,0.0,89.99271,-90.0,05/14/4042 +7.64337,44.42258,7702,7,4,21,53,51,3.65,5.0,fr,54943,154,2352492,1,4,Active Shallow Crust,0.0,89.98716,0.0,07/04/7702 +7.64337,44.42258,5782,1,12,7,47,38,3.65,5.0,fr,54944,115,2352492,1,4,Active Shallow Crust,0.0,89.98716,0.0,01/12/5782 +7.64337,44.42258,4094,1,26,15,41,28,3.65,5.0,fr,54945,81,2352492,1,4,Active Shallow Crust,0.0,89.98716,0.0,01/26/4094 +7.64337,44.42258,5365,3,2,14,0,10,3.65,5.0,fr,54946,107,2352492,1,4,Active Shallow Crust,0.0,89.98716,0.0,03/02/5365 +7.64337,44.42258,466,4,6,22,17,41,3.65,15.0,fr,54947,9,2352493,1,2,Active Shallow Crust,0.0,89.98716,0.0,04/06/0466 +7.64337,44.42258,7478,1,14,20,18,34,3.65,15.0,fr,54948,149,2352493,1,2,Active Shallow Crust,0.0,89.98716,0.0,01/14/7478 +7.64337,44.42258,5571,8,13,20,47,38,3.65,5.0,fr,54949,111,2352501,1,1,Active Shallow Crust,128.9016,89.96349,0.0,08/13/5571 +7.64337,44.42258,6684,2,23,13,44,13,3.65,15.0,fr,54950,133,2352502,1,1,Active Shallow Crust,128.9016,89.96349,0.0,02/23/6684 +7.64337,44.42258,1631,11,22,17,19,55,3.75,5.0,fr,54951,32,2352504,1,1,Active Shallow Crust,0.0,89.98856,0.0,11/22/1631 +7.64337,44.42258,2986,5,3,15,29,40,3.75,15.0,fr,54952,59,2352505,1,1,Active Shallow Crust,0.0,89.98856,0.0,05/03/2986 +7.64337,44.42258,8321,6,19,7,29,55,3.75,15.0,fr,54953,166,2352508,1,1,Active Shallow Crust,240.0081,58.01801,0.0,06/19/8321 +7.64337,44.42258,6074,11,5,22,6,38,3.75,5.0,fr,54954,121,2352513,1,1,Active Shallow Crust,128.8966,89.96745,0.0,11/05/6074 +7.64337,44.42258,9090,6,23,0,21,38,3.85,5.0,fr,54955,181,2352516,1,1,Active Shallow Crust,0.0,89.9898,0.0,06/23/9090 +7.64337,44.42258,2273,6,18,6,22,50,3.95,5.0,fr,54956,45,2352528,1,3,Active Shallow Crust,0.0,89.99091,0.0,06/18/2273 +7.64337,44.42258,4456,11,12,3,34,21,3.95,5.0,fr,54957,89,2352528,1,3,Active Shallow Crust,0.0,89.99091,0.0,11/12/4456 +7.64337,44.42258,8389,1,11,5,14,41,3.95,5.0,fr,54958,167,2352528,1,3,Active Shallow Crust,0.0,89.99091,0.0,01/11/8389 +7.64337,44.42258,355,3,4,14,34,52,3.95,15.0,fr,54959,7,2352529,1,1,Active Shallow Crust,0.0,89.99091,0.0,03/04/0355 +7.64337,44.42258,8486,3,29,10,9,36,3.95,15.0,fr,54960,169,2352532,1,1,Active Shallow Crust,240.0198,58.00541,0.0,03/29/8486 +7.64337,44.42258,2098,8,12,9,23,5,4.05,5.0,fr,54961,41,2352540,1,3,Active Shallow Crust,0.0,89.9919,0.0,08/12/2098 +7.64337,44.42258,1807,6,24,6,37,17,4.05,5.0,fr,54962,36,2352540,1,3,Active Shallow Crust,0.0,89.9919,0.0,06/24/1807 +7.64337,44.42258,6300,2,19,13,2,40,4.05,5.0,fr,54963,125,2352540,1,3,Active Shallow Crust,0.0,89.9919,0.0,02/19/6300 +7.64337,44.42258,8422,1,31,21,48,40,4.05,27.5,fr,54964,168,2352542,1,1,Active Shallow Crust,0.0,89.9919,0.0,01/31/8422 +7.64337,44.42258,8629,4,7,5,44,58,4.15,5.0,fr,54965,172,2352552,1,1,Active Shallow Crust,0.0,89.98917,0.0,04/07/8629 +7.64337,44.42258,958,1,30,4,57,19,4.15,15.0,fr,54966,19,2352553,1,1,Active Shallow Crust,0.0,89.98917,0.0,01/30/0958 +7.64337,44.42258,1300,5,10,19,15,23,4.15,27.5,fr,54967,25,2352554,1,1,Active Shallow Crust,0.0,89.98917,0.0,05/10/1300 +7.64337,44.42258,8822,12,19,14,53,14,4.15,5.0,fr,54968,176,2352555,1,1,Active Shallow Crust,240.0086,57.99676,0.0,12/19/8822 +7.64337,44.42258,7278,11,24,17,27,12,4.25,15.0,fr,54969,145,2352565,1,1,Active Shallow Crust,0.0,89.99035,0.0,11/24/7278 +7.64337,44.42258,1439,8,23,0,25,14,4.35,5.0,fr,54970,28,2352576,1,1,Active Shallow Crust,0.0,89.9914,0.0,08/23/1439 +7.64337,44.42258,4343,10,1,19,7,2,4.45,5.0,fr,54971,86,2352594,1,1,Active Shallow Crust,0.0,89.98966,-90.0,10/01/4343 +7.64337,44.42258,7311,2,16,10,33,35,4.55,15.0,fr,54972,146,2352604,1,1,Active Shallow Crust,240.0087,57.99698,0.0,02/16/7311 +7.64337,44.42258,1975,8,4,0,53,32,4.55,27.5,fr,54973,39,2352608,1,1,Active Shallow Crust,0.0,89.99078,-90.0,08/04/1975 +7.64337,44.42258,4187,8,23,16,25,30,4.65,15.0,fr,54974,83,2352613,1,1,Active Shallow Crust,0.0,89.98985,0.0,08/23/4187 +7.64337,44.42258,7592,6,28,20,59,16,4.75,15.0,fr,54975,151,2352625,1,1,Active Shallow Crust,0.0,89.98914,0.0,06/28/7592 +7.64337,44.42258,2881,8,12,17,6,41,5.25,5.0,fr,54976,57,2352684,1,1,Active Shallow Crust,0.0,89.98982,0.0,08/12/2881 +1.9149,44.16213,6891,2,13,5,35,18,3.55,5.0,fr,54977,137,2352966,1,1,Active Shallow Crust,0.0,89.99085,-90.0,02/13/6891 +1.9149,44.16213,1702,7,21,23,56,40,3.65,27.5,fr,54978,34,2352974,1,1,Active Shallow Crust,0.0,89.99033,0.0,07/21/1702 +1.9149,44.16213,3173,12,3,17,51,55,4.35,15.0,fr,54979,63,2353057,1,1,Active Shallow Crust,0.0,89.98992,0.0,12/03/3173 +1.9149,44.16213,5455,8,16,6,30,20,4.85,15.0,fr,54980,109,2353120,1,1,Active Shallow Crust,240.0162,58.00216,0.0,08/16/5455 +4.39752,43.2168,7588,4,2,14,29,56,3.65,5.0,fr,54981,151,2353452,1,1,Active Shallow Crust,0.0,89.9869,0.0,04/02/7588 +4.39752,43.2168,2876,9,9,14,38,57,3.75,5.0,fr,54982,57,2353464,1,2,Active Shallow Crust,0.0,89.98833,0.0,09/09/2876 +4.39752,43.2168,3380,11,26,3,44,11,3.75,5.0,fr,54983,67,2353464,1,2,Active Shallow Crust,0.0,89.98833,0.0,11/26/3380 +4.39752,43.2168,6418,6,6,19,22,7,3.85,15.0,fr,54984,128,2353477,1,1,Active Shallow Crust,0.0,89.98959,0.0,06/06/6418 +4.39752,43.2168,1339,12,10,5,58,54,4.75,5.0,fr,54985,26,2353593,1,1,Active Shallow Crust,128.8895,89.98798,0.0,12/10/1339 +1.54214,45.59844,2291,3,17,7,51,7,3.55,5.0,fr,54986,45,2353920,1,2,Active Shallow Crust,0.0,89.98942,0.0,03/17/2291 +1.54214,45.59844,932,4,5,6,15,14,3.55,5.0,fr,54987,18,2353920,1,2,Active Shallow Crust,0.0,89.98942,0.0,04/05/0932 +1.54214,45.59844,2661,12,12,21,25,32,3.55,5.0,fr,54988,53,2353923,1,2,Active Shallow Crust,240.0118,57.99824,0.0,12/12/2661 +1.54214,45.59844,6632,4,23,4,20,37,3.55,5.0,fr,54989,132,2353923,1,2,Active Shallow Crust,240.0118,57.99824,0.0,04/23/6632 +1.54214,45.59844,7734,1,8,5,12,13,3.65,15.0,fr,54990,154,2353933,1,1,Active Shallow Crust,0.0,89.99057,0.0,01/08/7734 +1.54214,45.59844,8256,10,21,6,25,34,3.65,5.0,fr,54991,165,2353938,1,1,Active Shallow Crust,0.0,89.99046,-90.0,10/21/8256 +1.54214,45.59844,7681,1,12,8,8,39,4.15,5.0,fr,54992,153,2353995,1,1,Active Shallow Crust,240.0083,57.99733,0.0,01/12/7681 +1.54214,45.59844,6628,1,31,1,5,28,4.25,5.0,fr,54993,132,2354004,1,2,Active Shallow Crust,0.0,89.98975,0.0,01/31/6628 +1.54214,45.59844,9590,4,12,15,59,2,4.25,5.0,fr,54994,191,2354004,1,2,Active Shallow Crust,0.0,89.98975,0.0,04/12/9590 +1.54214,45.59844,7041,1,29,1,21,47,4.55,5.0,fr,54995,140,2354040,1,1,Active Shallow Crust,0.0,89.98996,0.0,01/29/7041 +-0.43292,41.34038,5207,6,10,8,19,4,5.35,5.0,fr,54996,104,2354616,1,1,Active Shallow Crust,0.0,89.98999,0.0,06/10/5207 +-1.84008,42.7011,9205,2,28,5,23,14,3.55,5.0,fr,54997,184,2354880,1,5,Active Shallow Crust,0.0,89.99074,0.0,02/28/9205 +-1.84008,42.7011,7335,1,13,8,24,35,3.55,5.0,fr,54998,146,2354880,1,5,Active Shallow Crust,0.0,89.99074,0.0,01/13/7335 +-1.84008,42.7011,7859,7,26,7,32,30,3.55,5.0,fr,54999,157,2354880,1,5,Active Shallow Crust,0.0,89.99074,0.0,07/26/7859 +-1.84008,42.7011,2643,6,1,7,41,6,3.55,5.0,fr,55000,52,2354880,1,5,Active Shallow Crust,0.0,89.99074,0.0,06/01/2643 +-1.84008,42.7011,9341,1,28,4,59,12,3.55,5.0,fr,55001,186,2354880,1,5,Active Shallow Crust,0.0,89.99074,0.0,01/28/9341 +-1.84008,42.7011,9666,12,2,13,18,38,3.55,15.0,fr,55002,193,2354881,1,1,Active Shallow Crust,0.0,89.99074,0.0,12/02/9666 +-1.84008,42.7011,5485,10,20,8,38,56,3.55,5.0,fr,55003,109,2354883,1,1,Active Shallow Crust,240.0121,57.99787,0.0,10/20/5485 +-1.84008,42.7011,5944,12,15,10,7,2,3.55,5.0,fr,55004,118,2354886,1,1,Active Shallow Crust,0.0,89.99063,-90.0,12/15/5944 +-1.84008,42.7011,6014,9,30,1,11,44,3.65,5.0,fr,55005,120,2354892,1,3,Active Shallow Crust,0.0,89.99009,0.0,09/30/6014 +-1.84008,42.7011,5708,6,10,8,27,42,3.65,5.0,fr,55006,114,2354892,1,3,Active Shallow Crust,0.0,89.99009,0.0,06/10/5708 +-1.84008,42.7011,6845,2,1,2,30,14,3.65,5.0,fr,55007,136,2354892,1,3,Active Shallow Crust,0.0,89.99009,0.0,02/01/6845 +-1.84008,42.7011,1949,7,20,5,42,14,3.65,5.0,fr,55008,38,2354898,1,1,Active Shallow Crust,0.0,89.98997,-90.0,07/20/1949 +-1.84008,42.7011,4787,3,31,18,15,53,3.65,27.5,fr,55009,95,2354900,1,1,Active Shallow Crust,0.0,89.98997,-90.0,03/31/4787 +-1.84008,42.7011,7319,7,29,9,36,8,3.65,15.0,fr,55010,146,2354902,1,1,Active Shallow Crust,128.9008,89.96345,0.0,07/29/7319 +-1.84008,42.7011,2159,9,22,1,29,5,3.75,5.0,fr,55011,43,2354904,1,1,Active Shallow Crust,0.0,89.9897,0.0,09/22/2159 +-1.84008,42.7011,8154,5,30,20,46,49,3.75,5.0,fr,55012,163,2354907,1,2,Active Shallow Crust,240.0083,58.01735,0.0,05/30/8154 +-1.84008,42.7011,8206,1,22,17,58,8,3.75,5.0,fr,55013,164,2354907,1,2,Active Shallow Crust,240.0083,58.01735,0.0,01/22/8206 +-1.84008,42.7011,5981,5,18,7,53,11,3.75,5.0,fr,55014,119,2354913,1,1,Active Shallow Crust,128.8968,89.96729,0.0,05/18/5981 +-1.84008,42.7011,6270,8,1,23,5,49,3.85,5.0,fr,55015,125,2354916,1,1,Active Shallow Crust,0.0,89.98951,0.0,08/01/6270 +-1.84008,42.7011,3593,8,12,22,57,28,3.95,5.0,fr,55016,71,2354931,1,1,Active Shallow Crust,240.0193,58.00468,0.0,08/12/3593 +-1.84008,42.7011,7023,3,8,8,44,46,3.95,15.0,fr,55017,140,2354932,1,1,Active Shallow Crust,240.0193,58.00468,0.0,03/08/7023 +-1.84008,42.7011,8819,4,25,20,56,59,4.05,5.0,fr,55018,176,2354940,1,1,Active Shallow Crust,0.0,89.98958,0.0,04/25/8819 +-1.84008,42.7011,7106,12,9,16,24,17,4.15,5.0,fr,55019,142,2354952,1,3,Active Shallow Crust,0.0,89.98978,0.0,12/09/7106 +-1.84008,42.7011,4396,8,23,1,55,27,4.15,5.0,fr,55020,87,2354952,1,3,Active Shallow Crust,0.0,89.98978,0.0,08/23/4396 +-1.84008,42.7011,4015,8,28,8,18,21,4.15,5.0,fr,55021,80,2354952,1,3,Active Shallow Crust,0.0,89.98978,0.0,08/28/4015 +-1.84008,42.7011,1678,7,20,1,55,18,4.15,5.0,fr,55022,33,2354958,1,1,Active Shallow Crust,0.0,89.98967,-90.0,07/20/1678 +-1.84008,42.7011,2750,6,2,14,29,54,4.25,5.0,fr,55023,54,2354964,1,1,Active Shallow Crust,0.0,89.99007,0.0,06/02/2750 +-1.84008,42.7011,7542,4,16,2,41,2,4.65,5.0,fr,55024,150,2355012,1,2,Active Shallow Crust,0.0,89.99008,0.0,04/16/7542 +-1.84008,42.7011,7395,10,23,20,36,15,4.65,5.0,fr,55025,147,2355012,1,2,Active Shallow Crust,0.0,89.99008,0.0,10/23/7395 +-1.84008,42.7011,476,9,22,7,22,2,5.45,5.0,fr,55026,9,2355108,1,1,Active Shallow Crust,0.0,89.99002,0.0,09/22/0476 +8.29439,48.77528,2278,2,14,6,27,9,3.55,5.0,fr,55027,45,2355360,1,3,Active Shallow Crust,0.0,89.98671,0.0,02/14/2278 +8.29439,48.77528,1204,2,23,12,25,44,3.55,5.0,fr,55028,24,2355360,1,3,Active Shallow Crust,0.0,89.98671,0.0,02/23/1204 +8.29439,48.77528,7749,1,1,11,1,25,3.55,5.0,fr,55029,154,2355360,1,3,Active Shallow Crust,0.0,89.98671,0.0,01/01/7749 +8.29439,48.77528,884,11,14,18,3,35,3.55,15.0,fr,55030,17,2355361,1,2,Active Shallow Crust,0.0,89.98671,0.0,11/14/0884 +8.29439,48.77528,521,12,20,12,19,23,3.55,15.0,fr,55031,10,2355361,1,2,Active Shallow Crust,0.0,89.98671,0.0,12/20/0521 +8.29439,48.77528,1097,3,17,20,39,4,3.55,15.0,fr,55032,21,2355370,1,1,Active Shallow Crust,128.8969,89.99335,0.0,03/17/1097 +8.29439,48.77528,1260,3,23,16,41,18,3.65,15.0,fr,55033,25,2355373,1,1,Active Shallow Crust,0.0,89.98815,0.0,03/23/1260 +8.29439,48.77528,152,4,6,14,38,7,3.65,27.5,fr,55034,3,2355374,1,1,Active Shallow Crust,0.0,89.98815,0.0,04/06/0152 +8.29439,48.77528,234,3,26,13,39,32,3.75,5.0,fr,55035,4,2355387,1,1,Active Shallow Crust,240.0078,58.01735,0.0,03/26/0234 +8.29439,48.77528,9061,10,8,22,52,56,3.95,5.0,fr,55036,181,2355408,1,1,Active Shallow Crust,0.0,89.99162,0.0,10/08/9061 +8.29439,48.77528,7109,6,18,18,38,10,4.05,5.0,fr,55037,142,2355420,1,2,Active Shallow Crust,0.0,89.99252,0.0,06/18/7109 +8.29439,48.77528,6592,9,8,2,35,5,4.05,5.0,fr,55038,131,2355420,1,2,Active Shallow Crust,0.0,89.99252,0.0,09/08/6592 +8.29439,48.77528,8779,8,8,17,21,3,4.25,15.0,fr,55039,175,2355445,1,1,Active Shallow Crust,0.0,89.98813,0.0,08/08/8779 +8.29439,48.77528,3478,6,2,16,6,37,4.45,5.0,fr,55040,69,2355474,1,1,Active Shallow Crust,0.0,89.99046,-90.0,06/02/3478 +8.29439,48.77528,9,8,16,19,23,1,4.65,5.0,fr,55041,0,2355498,1,1,Active Shallow Crust,0.0,89.98863,-90.0,08/16/0009 +8.29439,48.77528,7758,8,13,4,16,3,4.75,5.0,fr,55042,155,2355504,1,1,Active Shallow Crust,0.0,89.98998,0.0,08/13/7758 +8.29439,48.77528,61,10,27,22,30,42,4.85,15.0,fr,55043,1,2355517,1,1,Active Shallow Crust,0.0,89.99107,0.0,10/27/0061 +8.29439,48.77528,3749,6,27,22,24,39,5.15,5.0,fr,55044,74,2355555,1,1,Active Shallow Crust,240.021,58.00004,0.0,06/27/3749 +8.294393,48.77528,1555,2,14,10,35,5,6.15,6.011322,fr,55045,31,2355672,1,1,Active Shallow Crust,359.9997,89.99,0.0,02/14/1555 +7.6651,45.08644,217,5,7,13,4,18,3.55,5.0,fr,55046,4,2355840,1,1,Active Shallow Crust,0.0,89.99288,0.0,05/07/0217 +7.6651,45.08644,1187,4,3,19,19,31,3.55,5.0,fr,55047,23,2355843,1,1,Active Shallow Crust,240.0116,57.999,0.0,04/03/1187 +7.6651,45.08644,1564,12,21,6,41,1,3.55,5.0,fr,55048,31,2355849,1,1,Active Shallow Crust,128.8953,89.99644,0.0,12/21/1564 +7.6651,45.08644,1639,6,29,22,16,10,3.65,27.5,fr,55049,32,2355854,1,2,Active Shallow Crust,0.0,89.98731,0.0,06/29/1639 +7.6651,45.08644,9916,2,8,22,20,48,3.65,27.5,fr,55050,198,2355854,1,2,Active Shallow Crust,0.0,89.98731,0.0,02/08/9916 +7.6651,45.08644,5025,4,1,20,21,12,3.65,5.0,fr,55051,100,2355858,1,1,Active Shallow Crust,0.0,89.98716,-90.0,04/01/5025 +7.6651,45.08644,7047,8,17,20,30,32,3.75,5.0,fr,55052,140,2355864,1,1,Active Shallow Crust,0.0,89.98869,0.0,08/17/7047 +7.6651,45.08644,2319,1,26,17,33,41,3.75,15.0,fr,55053,46,2355865,1,2,Active Shallow Crust,0.0,89.98869,0.0,01/26/2319 +7.6651,45.08644,8973,3,29,4,27,3,3.75,15.0,fr,55054,179,2355865,1,2,Active Shallow Crust,0.0,89.98869,0.0,03/29/8973 +7.6651,45.08644,748,4,8,1,4,11,3.75,5.0,fr,55055,14,2355867,1,1,Active Shallow Crust,240.009,58.01719,0.0,04/08/0748 +7.6651,45.08644,4292,2,6,17,47,24,3.75,15.0,fr,55056,85,2355868,1,1,Active Shallow Crust,240.009,58.01719,0.0,02/06/4292 +7.6651,45.08644,5336,12,19,8,24,20,3.85,15.0,fr,55057,106,2355877,1,1,Active Shallow Crust,0.0,89.98992,0.0,12/19/5336 +7.6651,45.08644,9522,2,11,2,45,13,3.85,5.0,fr,55058,190,2355879,1,1,Active Shallow Crust,240.0111,57.9975,0.0,02/11/9522 +7.6651,45.08644,3401,6,8,5,36,5,3.95,5.0,fr,55059,68,2355888,1,3,Active Shallow Crust,0.0,89.99101,0.0,06/08/3401 +7.6651,45.08644,9486,6,8,6,23,18,3.95,5.0,fr,55060,189,2355888,1,3,Active Shallow Crust,0.0,89.99101,0.0,06/08/9486 +7.6651,45.08644,8764,3,25,14,59,27,3.95,5.0,fr,55061,175,2355888,1,3,Active Shallow Crust,0.0,89.99101,0.0,03/25/8764 +7.6651,45.08644,4944,8,10,3,7,39,3.95,15.0,fr,55062,98,2355889,1,1,Active Shallow Crust,0.0,89.99101,0.0,08/10/4944 +7.6651,45.08644,7660,12,10,21,58,26,3.95,27.5,fr,55063,153,2355890,1,1,Active Shallow Crust,0.0,89.99101,0.0,12/10/7660 +7.6651,45.08644,2428,3,22,22,32,12,4.05,5.0,fr,55064,48,2355900,1,1,Active Shallow Crust,0.0,89.99199,0.0,03/22/2428 +7.6651,45.08644,7075,2,28,5,5,19,4.15,5.0,fr,55065,141,2355912,1,3,Active Shallow Crust,0.0,89.9893,0.0,02/28/7075 +7.6651,45.08644,5556,5,23,3,46,46,4.15,5.0,fr,55066,111,2355912,1,3,Active Shallow Crust,0.0,89.9893,0.0,05/23/5556 +7.6651,45.08644,40,7,13,19,54,46,4.15,5.0,fr,55067,0,2355912,1,3,Active Shallow Crust,0.0,89.9893,0.0,07/13/0040 +7.6651,45.08644,2445,1,27,18,58,23,4.25,5.0,fr,55068,48,2355924,1,2,Active Shallow Crust,0.0,89.99046,0.0,01/27/2445 +7.6651,45.08644,8372,2,22,4,13,32,4.25,5.0,fr,55069,167,2355924,1,2,Active Shallow Crust,0.0,89.99046,0.0,02/22/8372 +7.6651,45.08644,7966,2,3,11,55,45,4.35,15.0,fr,55070,159,2355940,1,1,Active Shallow Crust,240.0087,57.99549,0.0,02/03/7966 +7.6651,45.08644,65,8,25,0,32,46,4.55,5.0,fr,55071,1,2355960,1,1,Active Shallow Crust,0.0,89.99099,0.0,08/25/0065 +7.6651,45.08644,4425,10,17,6,44,36,4.65,27.5,fr,55072,88,2355980,1,1,Active Shallow Crust,0.0,89.98985,-90.0,10/17/4425 +4.85608,40.99139,785,6,21,8,5,20,3.65,15.0,fr,55073,15,2356333,1,1,Active Shallow Crust,0.0,89.99322,0.0,06/21/0785 +4.85608,40.99139,9662,4,22,2,59,27,3.75,5.0,fr,55074,193,2356350,1,1,Active Shallow Crust,0.0,89.98777,-90.0,04/22/9662 +4.85608,40.99139,9998,4,15,9,17,54,3.95,5.0,fr,55075,199,2356368,1,1,Active Shallow Crust,0.0,89.99039,0.0,04/15/9998 +4.85608,40.99139,2554,5,6,10,13,43,4.45,5.0,fr,55076,51,2356428,1,1,Active Shallow Crust,0.0,89.9892,0.0,05/06/2554 +4.85608,40.99139,4320,3,17,23,46,3,5.15,5.0,fr,55077,86,2356518,1,1,Active Shallow Crust,0.0,89.99023,-90.0,03/17/4320 +5.62373,46.92531,2153,12,24,20,30,14,3.55,27.5,fr,55078,43,2356802,1,1,Active Shallow Crust,0.0,89.99311,0.0,12/24/2153 +5.62373,46.92531,9976,4,30,1,17,22,3.55,5.0,fr,55079,199,2356803,1,1,Active Shallow Crust,240.0131,57.99777,0.0,04/30/9976 +5.62373,46.92531,255,12,1,14,59,18,3.55,5.0,fr,55080,5,2356806,1,1,Active Shallow Crust,0.0,89.99303,-90.0,12/01/0255 +5.62373,46.92531,2274,4,3,0,39,16,3.65,5.0,fr,55081,45,2356812,1,1,Active Shallow Crust,0.0,89.98772,0.0,04/03/2274 +5.62373,46.92531,8644,7,8,14,32,23,3.65,5.0,fr,55082,172,2356815,1,1,Active Shallow Crust,240.0014,58.01244,0.0,07/08/8644 +5.62373,46.92531,8992,7,29,12,51,2,3.75,15.0,fr,55083,179,2356825,1,1,Active Shallow Crust,0.0,89.98906,0.0,07/29/8992 +5.62373,46.92531,589,1,8,8,46,39,3.85,5.0,fr,55084,11,2356836,1,1,Active Shallow Crust,0.0,89.99025,0.0,01/08/0589 +5.62373,46.92531,298,12,11,20,50,59,3.85,27.5,fr,55085,5,2356847,1,1,Active Shallow Crust,128.8962,89.99269,0.0,12/11/0298 +5.62373,46.92531,9819,3,16,19,22,29,4.15,5.0,fr,55086,196,2356872,1,1,Active Shallow Crust,0.0,89.98965,0.0,03/16/9819 +5.62373,46.92531,9473,9,27,16,55,13,4.65,5.0,fr,55087,189,2356932,1,1,Active Shallow Crust,0.0,89.9903,0.0,09/27/9473 +-4.39015,48.21151,7148,6,1,9,23,56,3.55,5.0,fr,55088,142,2357280,1,1,Active Shallow Crust,0.0,89.99328,0.0,06/01/7148 +-4.39015,48.21151,8282,6,11,0,36,45,3.55,27.5,fr,55089,165,2357282,1,1,Active Shallow Crust,0.0,89.99328,0.0,06/11/8282 +-4.39015,48.21151,2558,4,29,8,18,44,3.65,5.0,fr,55090,51,2357292,1,1,Active Shallow Crust,0.0,89.98802,0.0,04/29/2558 +-4.39015,48.21151,2657,10,17,18,34,41,3.65,15.0,fr,55091,53,2357296,1,1,Active Shallow Crust,240.0015,58.01244,0.0,10/17/2657 +-4.39015,48.21151,7006,9,13,5,40,27,3.65,5.0,fr,55092,140,2357298,1,1,Active Shallow Crust,0.0,89.98788,-90.0,09/13/7006 +-4.39015,48.21151,4968,12,24,19,47,9,3.75,15.0,fr,55093,99,2357305,1,1,Active Shallow Crust,0.0,89.98933,0.0,12/24/4968 +-4.39015,48.21151,9780,3,2,18,23,6,3.85,5.0,fr,55094,195,2357316,1,1,Active Shallow Crust,0.0,89.99049,0.0,03/02/9780 +-4.39015,48.21151,9341,8,5,11,19,44,3.95,15.0,fr,55095,186,2357329,1,1,Active Shallow Crust,0.0,89.99152,0.0,08/05/9341 +-4.39015,48.21151,7853,6,24,10,31,15,3.95,5.0,fr,55096,157,2357331,1,1,Active Shallow Crust,240.0193,58.00578,0.0,06/24/7853 +-4.39015,48.21151,960,12,21,13,52,14,4.65,15.0,fr,55097,19,2357413,1,1,Active Shallow Crust,0.0,89.99053,0.0,12/21/0960 +-0.03067,45.2104,6540,2,12,11,47,41,3.65,5.0,fr,55098,130,2357772,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/12/6540 +-0.03067,45.2104,8385,3,15,12,16,22,3.95,5.0,fr,55099,167,2357814,1,1,Active Shallow Crust,0.0,89.98999,-90.0,03/15/8385 +-0.03067,45.2104,5739,1,7,6,31,31,4.05,5.0,fr,55100,114,2357820,1,1,Active Shallow Crust,0.0,89.99,0.0,01/07/5739 +2.27715,45.52885,7816,3,31,2,27,21,3.75,5.0,fr,55101,156,2358264,1,1,Active Shallow Crust,0.0,89.98878,0.0,03/31/7816 +2.27715,45.52885,151,4,30,6,17,18,3.75,27.5,fr,55102,3,2358269,1,1,Active Shallow Crust,240.0076,58.01788,0.0,04/30/0151 +2.27715,45.52885,5934,6,6,15,25,26,4.05,5.0,fr,55103,118,2358306,1,1,Active Shallow Crust,0.0,89.98995,-90.0,06/06/5934 +2.27715,45.52885,429,10,5,0,7,59,4.15,5.0,fr,55104,8,2358321,1,1,Active Shallow Crust,128.8972,89.9938,0.0,10/05/0429 +2.27715,45.52885,8246,7,15,14,24,42,4.25,5.0,fr,55105,164,2358327,1,1,Active Shallow Crust,240.0073,57.99398,0.0,07/15/8246 +2.27715,45.52885,186,3,27,11,32,1,4.25,5.0,fr,55106,3,2358330,1,1,Active Shallow Crust,0.0,89.99043,-90.0,03/27/0186 +2.27715,45.52885,5230,11,3,10,50,18,4.45,5.0,fr,55107,104,2358348,1,1,Active Shallow Crust,0.0,89.98997,0.0,11/03/5230 +2.27715,45.52885,271,7,22,0,28,42,5.05,5.0,fr,55108,5,2358420,1,1,Active Shallow Crust,0.0,89.98994,0.0,07/22/0271 +6.93431,48.62206,3037,4,9,2,36,51,3.55,5.0,fr,55109,60,2358723,1,1,Active Shallow Crust,240.0132,57.99815,0.0,04/09/3037 +6.93431,48.62206,8626,1,30,21,19,38,3.75,5.0,fr,55110,172,2358744,1,1,Active Shallow Crust,0.0,89.98941,0.0,01/30/8626 +6.93431,48.62206,9538,1,23,10,11,19,3.75,27.5,fr,55111,190,2358755,1,1,Active Shallow Crust,128.8963,89.967,0.0,01/23/9538 +6.93431,48.62206,4088,8,26,5,43,21,3.85,5.0,fr,55112,81,2358756,1,1,Active Shallow Crust,0.0,89.99056,0.0,08/26/4088 +6.93431,48.62206,1837,10,17,21,33,3,4.05,5.0,fr,55113,36,2358780,1,1,Active Shallow Crust,0.0,89.98875,0.0,10/17/1837 +6.93431,48.62206,651,7,21,12,18,25,4.95,5.0,fr,55114,13,2358894,1,1,Active Shallow Crust,0.0,89.99058,-90.0,07/21/0651 +0.98594,45.29037,4553,4,23,17,0,7,3.55,5.0,fr,55115,91,2359203,1,1,Active Shallow Crust,240.0122,57.99814,0.0,04/23/4553 +0.98594,45.29037,9404,1,14,13,51,55,3.85,15.0,fr,55116,188,2359237,1,1,Active Shallow Crust,0.0,89.98995,0.0,01/14/9404 +0.98594,45.29037,6498,6,7,13,11,59,4.55,5.0,fr,55117,129,2359326,1,1,Active Shallow Crust,0.0,89.99007,-90.0,06/07/6498 +0.98594,45.29037,2210,11,15,4,54,17,4.65,27.5,fr,55118,44,2359337,1,1,Active Shallow Crust,240.0105,57.99416,0.0,11/15/2210 +2.89221,42.86178,8208,12,29,11,39,33,3.55,5.0,fr,55119,164,2359680,1,3,Active Shallow Crust,0.0,89.98891,0.0,12/29/8208 +2.89221,42.86178,8063,11,27,2,58,19,3.55,5.0,fr,55120,161,2359680,1,3,Active Shallow Crust,0.0,89.98891,0.0,11/27/8063 +2.89221,42.86178,7653,10,7,10,14,7,3.55,5.0,fr,55121,153,2359680,1,3,Active Shallow Crust,0.0,89.98891,0.0,10/07/7653 +2.89221,42.86178,5643,7,13,0,31,27,3.55,15.0,fr,55122,112,2359681,1,1,Active Shallow Crust,0.0,89.98891,0.0,07/13/5643 +2.89221,42.86178,1095,6,14,15,38,52,3.55,15.0,fr,55123,21,2359690,1,2,Active Shallow Crust,128.8973,89.99261,0.0,06/14/1095 +2.89221,42.86178,4541,12,30,6,52,57,3.55,15.0,fr,55124,90,2359690,1,2,Active Shallow Crust,128.8973,89.99261,0.0,12/30/4541 +2.89221,42.86178,3276,6,22,2,35,51,3.65,5.0,fr,55125,65,2359692,1,1,Active Shallow Crust,0.0,89.99012,0.0,06/22/3276 +2.89221,42.86178,7363,8,29,21,36,13,3.85,27.5,fr,55126,147,2359718,1,1,Active Shallow Crust,0.0,89.98953,0.0,08/29/7363 +2.89221,42.86178,9309,6,11,2,52,9,4.05,5.0,fr,55127,186,2359740,1,2,Active Shallow Crust,0.0,89.98961,0.0,06/11/9309 +2.89221,42.86178,1183,2,18,16,27,29,4.05,5.0,fr,55128,23,2359740,1,2,Active Shallow Crust,0.0,89.98961,0.0,02/18/1183 +2.89221,42.86178,1086,7,13,17,36,3,4.15,5.0,fr,55129,21,2359752,1,1,Active Shallow Crust,0.0,89.99074,0.0,07/13/1086 +2.89221,42.86178,8860,10,12,14,27,54,4.15,27.5,fr,55130,177,2359760,1,1,Active Shallow Crust,0.0,89.99063,-90.0,10/12/8860 +2.89221,42.86178,6100,4,2,22,32,2,4.25,15.0,fr,55131,121,2359765,1,1,Active Shallow Crust,0.0,89.9901,0.0,04/02/6100 +2.89221,42.86178,5875,11,10,20,26,1,4.35,15.0,fr,55132,117,2359777,1,1,Active Shallow Crust,0.0,89.9897,0.0,11/10/5875 +2.89221,42.86178,2639,11,22,5,43,14,4.55,5.0,fr,55133,52,2359800,1,1,Active Shallow Crust,0.0,89.98948,0.0,11/22/2639 +2.89221,42.86178,7836,3,11,2,22,32,4.95,5.0,fr,55134,156,2359848,1,1,Active Shallow Crust,0.0,89.98968,0.0,03/11/7836 +0.32137,45.50947,3485,8,16,15,51,4,3.55,5.0,fr,55135,69,2360160,1,1,Active Shallow Crust,0.0,89.98985,0.0,08/16/3485 +0.32137,45.50947,2751,10,17,8,43,16,3.55,15.0,fr,55136,55,2360161,1,1,Active Shallow Crust,0.0,89.98985,0.0,10/17/2751 +0.32137,45.50947,1908,12,14,2,52,41,3.55,5.0,fr,55137,38,2360166,1,1,Active Shallow Crust,0.0,89.99017,-90.0,12/14/1908 +0.32137,45.50947,893,12,22,19,32,4,3.65,15.0,fr,55138,17,2360173,1,1,Active Shallow Crust,0.0,89.99016,0.0,12/22/0893 +0.32137,45.50947,6279,5,21,16,8,21,3.65,15.0,fr,55139,125,2360179,1,1,Active Shallow Crust,0.0,89.99004,-90.0,05/21/6279 +0.32137,45.50947,308,4,13,14,25,7,3.85,5.0,fr,55140,6,2360196,1,1,Active Shallow Crust,0.0,89.99,0.0,04/13/0308 +0.32137,45.50947,4393,11,17,9,54,40,4.05,5.0,fr,55141,87,2360226,1,1,Active Shallow Crust,0.0,89.98995,-90.0,11/17/4393 +0.32137,45.50947,3131,4,5,17,0,48,5.95,5.0,fr,55142,62,2360448,1,1,Active Shallow Crust,0.0,89.98999,0.0,04/05/3131 +0.3213968,45.50947,8507,5,4,0,47,48,7.05,16.94221,fr,55143,170,2360580,1,1,Active Shallow Crust,360.0,89.99001,0.0,05/04/8507 +7.89553,46.68141,4689,12,25,4,49,47,3.55,5.0,fr,55144,93,2360640,1,6,Active Shallow Crust,0.0,89.99308,0.0,12/25/4689 +7.89553,46.68141,716,4,11,0,39,23,3.55,5.0,fr,55145,14,2360640,1,6,Active Shallow Crust,0.0,89.99308,0.0,04/11/0716 +7.89553,46.68141,6824,3,17,3,26,20,3.55,5.0,fr,55146,136,2360640,1,6,Active Shallow Crust,0.0,89.99308,0.0,03/17/6824 +7.89553,46.68141,223,4,26,10,23,7,3.55,5.0,fr,55147,4,2360640,1,6,Active Shallow Crust,0.0,89.99308,0.0,04/26/0223 +7.89553,46.68141,9286,10,3,12,33,27,3.55,5.0,fr,55148,185,2360640,1,6,Active Shallow Crust,0.0,89.99308,0.0,10/03/9286 +7.89553,46.68141,9853,5,2,9,22,32,3.55,5.0,fr,55149,197,2360640,1,6,Active Shallow Crust,0.0,89.99308,0.0,05/02/9853 +7.89553,46.68141,5596,12,27,11,41,14,3.55,15.0,fr,55150,111,2360641,1,2,Active Shallow Crust,0.0,89.99308,0.0,12/27/5596 +7.89553,46.68141,5155,2,1,20,32,50,3.55,15.0,fr,55151,103,2360641,1,2,Active Shallow Crust,0.0,89.99308,0.0,02/01/5155 +7.89553,46.68141,7914,7,31,23,21,2,3.55,5.0,fr,55152,158,2360643,1,2,Active Shallow Crust,240.0116,57.99932,0.0,07/31/7914 +7.89553,46.68141,7792,5,18,19,17,11,3.55,5.0,fr,55153,155,2360643,1,2,Active Shallow Crust,240.0116,57.99932,0.0,05/18/7792 +7.89553,46.68141,290,9,16,17,56,31,3.55,27.5,fr,55154,5,2360645,1,1,Active Shallow Crust,240.0116,57.99922,0.0,09/16/0290 +7.89553,46.68141,9014,6,11,22,21,55,3.65,5.0,fr,55155,180,2360652,1,5,Active Shallow Crust,0.0,89.98767,0.0,06/11/9014 +7.89553,46.68141,7157,11,7,8,11,35,3.65,5.0,fr,55156,143,2360652,1,5,Active Shallow Crust,0.0,89.98767,0.0,11/07/7157 +7.89553,46.68141,8175,1,5,9,48,14,3.65,5.0,fr,55157,163,2360652,1,5,Active Shallow Crust,0.0,89.98767,0.0,01/05/8175 +7.89553,46.68141,1836,9,18,10,3,19,3.65,5.0,fr,55158,36,2360652,1,5,Active Shallow Crust,0.0,89.98767,0.0,09/18/1836 +7.89553,46.68141,430,5,4,2,5,34,3.65,5.0,fr,55159,8,2360652,1,5,Active Shallow Crust,0.0,89.98767,0.0,05/04/0430 +7.89553,46.68141,4531,9,27,11,1,42,3.65,15.0,fr,55160,90,2360653,1,2,Active Shallow Crust,0.0,89.98767,0.0,09/27/4531 +7.89553,46.68141,8500,1,22,14,9,17,3.65,15.0,fr,55161,169,2360653,1,2,Active Shallow Crust,0.0,89.98767,0.0,01/22/8500 +7.89553,46.68141,2578,2,8,23,22,0,3.65,27.5,fr,55162,51,2360654,1,1,Active Shallow Crust,0.0,89.98767,0.0,02/08/2578 +7.89553,46.68141,2584,3,22,0,41,35,3.75,5.0,fr,55163,51,2360664,1,2,Active Shallow Crust,0.0,89.98901,0.0,03/22/2584 +7.89553,46.68141,9471,12,6,8,52,31,3.75,5.0,fr,55164,189,2360664,1,2,Active Shallow Crust,0.0,89.98901,0.0,12/06/9471 +7.89553,46.68141,7081,5,22,2,18,5,3.75,15.0,fr,55165,141,2360671,1,1,Active Shallow Crust,0.0,89.98888,-90.0,05/22/7081 +7.89553,46.68141,8303,6,21,6,23,58,3.75,5.0,fr,55166,166,2360673,1,1,Active Shallow Crust,128.8955,89.96749,0.0,06/21/8303 +7.89553,46.68141,517,5,21,23,21,16,3.85,5.0,fr,55167,10,2360676,1,1,Active Shallow Crust,0.0,89.9902,0.0,05/21/0517 +7.89553,46.68141,5995,1,22,3,13,25,3.85,15.0,fr,55168,119,2360677,1,2,Active Shallow Crust,0.0,89.9902,0.0,01/22/5995 +7.89553,46.68141,7419,4,22,1,40,20,3.85,15.0,fr,55169,148,2360677,1,2,Active Shallow Crust,0.0,89.9902,0.0,04/22/7419 +7.89553,46.68141,1771,6,1,0,50,58,3.85,5.0,fr,55170,35,2360685,1,1,Active Shallow Crust,128.8951,89.99265,0.0,06/01/1771 +7.89553,46.68141,6054,4,7,20,25,18,4.05,5.0,fr,55171,121,2360700,1,3,Active Shallow Crust,0.0,89.98833,0.0,04/07/6054 +7.89553,46.68141,9284,4,6,7,21,48,4.05,5.0,fr,55172,185,2360700,1,3,Active Shallow Crust,0.0,89.98833,0.0,04/06/9284 +7.89553,46.68141,4023,5,22,13,22,18,4.05,5.0,fr,55173,80,2360700,1,3,Active Shallow Crust,0.0,89.98833,0.0,05/22/4023 +7.89553,46.68141,5752,8,1,11,0,36,4.05,5.0,fr,55174,115,2360706,1,1,Active Shallow Crust,0.0,89.98819,-90.0,08/01/5752 +7.89553,46.68141,327,5,7,0,38,26,4.05,5.0,fr,55175,6,2360709,1,1,Active Shallow Crust,128.8912,89.99222,0.0,05/07/0327 +7.89553,46.68141,4833,7,14,21,32,33,4.15,5.0,fr,55176,96,2360712,1,1,Active Shallow Crust,0.0,89.9896,0.0,07/14/4833 +7.89553,46.68141,364,8,6,13,25,57,4.15,5.0,fr,55177,7,2360718,1,1,Active Shallow Crust,0.0,89.98948,-90.0,08/06/0364 +7.89553,46.68141,9266,6,10,7,26,28,4.35,5.0,fr,55178,185,2360736,1,1,Active Shallow Crust,0.0,89.98898,0.0,06/10/9266 +7.89553,46.68141,7797,6,18,7,51,1,4.35,15.0,fr,55179,155,2360737,1,1,Active Shallow Crust,0.0,89.98898,0.0,06/18/7797 +7.89553,46.68141,3108,2,16,4,50,37,4.45,5.0,fr,55180,62,2360751,1,1,Active Shallow Crust,240.0056,57.99476,0.0,02/16/3108 +7.89553,46.68141,6101,10,12,22,31,18,4.55,5.0,fr,55181,122,2360760,1,1,Active Shallow Crust,0.0,89.98906,0.0,10/12/6101 +7.89553,46.68141,2002,5,29,22,55,57,4.55,15.0,fr,55182,40,2360761,1,1,Active Shallow Crust,0.0,89.98906,0.0,05/29/2002 +7.89553,46.68141,3738,1,11,11,34,45,4.55,27.5,fr,55183,74,2360771,1,1,Active Shallow Crust,128.8941,89.98566,0.0,01/11/3738 +7.89553,46.68141,7995,9,28,4,23,45,4.65,15.0,fr,55184,159,2360779,1,1,Active Shallow Crust,0.0,89.99014,-90.0,09/28/7995 +7.89553,46.68141,6562,7,24,8,11,41,4.65,5.0,fr,55185,131,2360781,1,1,Active Shallow Crust,128.8908,89.98721,0.0,07/24/6562 +7.89553,46.68141,3810,2,8,15,11,1,4.75,5.0,fr,55186,76,2360784,1,1,Active Shallow Crust,0.0,89.98957,0.0,02/08/3810 +7.89553,46.68141,9305,6,15,3,35,15,4.75,15.0,fr,55187,186,2360785,1,1,Active Shallow Crust,0.0,89.98957,0.0,06/15/9305 +8.78424,49.4568,1173,10,30,5,57,11,3.65,15.0,fr,55188,23,2361133,1,1,Active Shallow Crust,0.0,89.98832,0.0,10/30/1173 +8.78424,49.4568,36,9,23,3,5,28,3.65,5.0,fr,55189,0,2361135,1,1,Active Shallow Crust,239.9986,58.01445,0.0,09/23/0036 +8.78424,49.4568,8299,12,12,0,39,33,3.75,5.0,fr,55190,165,2361144,1,2,Active Shallow Crust,0.0,89.98959,0.0,12/12/8299 +8.78424,49.4568,9851,5,23,12,44,22,3.75,5.0,fr,55191,197,2361144,1,2,Active Shallow Crust,0.0,89.98959,0.0,05/23/9851 +8.78424,49.4568,8349,3,28,12,41,6,3.75,5.0,fr,55192,166,2361147,1,2,Active Shallow Crust,240.0078,58.0191,0.0,03/28/8349 +8.78424,49.4568,8065,11,30,16,31,47,3.75,5.0,fr,55193,161,2361147,1,2,Active Shallow Crust,240.0078,58.0191,0.0,11/30/8065 +8.78424,49.4568,9401,10,27,12,23,13,4.05,15.0,fr,55194,188,2361184,1,1,Active Shallow Crust,240.0067,58.0049,0.0,10/27/9401 +8.78424,49.4568,9106,11,7,10,39,59,4.15,5.0,fr,55195,182,2361195,1,1,Active Shallow Crust,240.0084,57.99717,0.0,11/07/9106 +8.78424,49.4568,386,4,16,17,42,55,4.25,27.5,fr,55196,7,2361206,1,1,Active Shallow Crust,0.0,89.98829,0.0,04/16/0386 +8.78424,49.4568,4655,3,30,14,26,28,4.25,5.0,fr,55197,93,2361210,1,1,Active Shallow Crust,0.0,89.98815,-90.0,03/30/4655 +8.78424,49.4568,4909,1,4,12,2,29,4.45,5.0,fr,55198,98,2361231,1,1,Active Shallow Crust,240.0058,57.99461,0.0,01/04/4909 +8.78424,49.4568,24,10,1,22,53,2,4.55,5.0,fr,55199,0,2361240,1,1,Active Shallow Crust,0.0,89.99171,0.0,10/01/0024 +8.78424,49.4568,9689,11,25,11,31,39,4.65,5.0,fr,55200,193,2361258,1,1,Active Shallow Crust,0.0,89.98878,-90.0,11/25/9689 +8.78424,49.4568,6394,7,1,3,55,10,4.75,27.5,fr,55201,127,2361266,1,1,Active Shallow Crust,0.0,89.99012,0.0,07/01/6394 +8.78424,49.4568,3205,8,28,23,23,9,5.05,5.0,fr,55202,64,2361303,1,1,Active Shallow Crust,240.0236,57.99817,0.0,08/28/3205 +2.52226,46.9876,5274,2,28,0,6,47,3.85,15.0,fr,55203,105,2361646,1,1,Active Shallow Crust,128.8959,89.99391,0.0,02/28/5274 +2.52226,46.9876,8532,8,21,0,31,14,3.95,5.0,fr,55204,170,2361648,1,2,Active Shallow Crust,0.0,89.98915,0.0,08/21/8532 +2.52226,46.9876,934,12,15,11,27,34,3.95,5.0,fr,55205,18,2361648,1,2,Active Shallow Crust,0.0,89.98915,0.0,12/15/0934 +2.52226,46.9876,8666,9,26,20,53,37,4.25,5.0,fr,55206,173,2361684,1,1,Active Shallow Crust,0.0,89.98924,0.0,09/26/8666 +2.52226,46.9876,4356,7,29,0,55,43,4.45,15.0,fr,55207,87,2361709,1,1,Active Shallow Crust,0.0,89.99023,0.0,07/29/4356 +2.52226,46.9876,5569,11,14,13,8,47,4.75,15.0,fr,55208,111,2361745,1,1,Active Shallow Crust,0.0,89.98963,0.0,11/14/5569 +2.52226,46.9876,8457,1,25,0,8,4,5.25,5.0,fr,55209,169,2361804,1,1,Active Shallow Crust,0.0,89.98979,0.0,01/25/8457 +7.12345,47.3686,4602,4,15,8,3,30,3.55,5.0,fr,55210,92,2362560,1,2,Active Shallow Crust,0.0,89.99317,0.0,04/15/4602 +7.12345,47.3686,8343,7,2,15,37,12,3.55,5.0,fr,55211,166,2362560,1,2,Active Shallow Crust,0.0,89.99317,0.0,07/02/8343 +7.12345,47.3686,7621,6,16,11,35,37,3.55,15.0,fr,55212,152,2362561,1,1,Active Shallow Crust,0.0,89.99317,0.0,06/16/7621 +7.12345,47.3686,8415,11,5,21,2,29,3.55,27.5,fr,55213,168,2362562,1,2,Active Shallow Crust,0.0,89.99317,0.0,11/05/8415 +7.12345,47.3686,4885,8,27,15,28,7,3.55,27.5,fr,55214,97,2362562,1,2,Active Shallow Crust,0.0,89.99317,0.0,08/27/4885 +7.12345,47.3686,6953,6,11,8,6,27,3.55,5.0,fr,55215,139,2362563,1,2,Active Shallow Crust,240.0137,57.99766,0.0,06/11/6953 +7.12345,47.3686,8059,10,11,2,40,45,3.55,5.0,fr,55216,161,2362563,1,2,Active Shallow Crust,240.0137,57.99766,0.0,10/11/8059 +7.12345,47.3686,5457,6,1,20,6,58,3.55,5.0,fr,55217,109,2362569,1,1,Active Shallow Crust,128.895,89.99658,0.0,06/01/5457 +7.12345,47.3686,6840,10,2,10,9,29,3.65,5.0,fr,55218,136,2362572,1,2,Active Shallow Crust,0.0,89.98782,0.0,10/02/6840 +7.12345,47.3686,6027,6,1,5,3,46,3.65,5.0,fr,55219,120,2362572,1,2,Active Shallow Crust,0.0,89.98782,0.0,06/01/6027 +7.12345,47.3686,2786,7,31,23,25,19,3.65,27.5,fr,55220,55,2362574,1,1,Active Shallow Crust,0.0,89.98782,0.0,07/31/2786 +7.12345,47.3686,8638,5,3,22,3,45,3.75,5.0,fr,55221,172,2362584,1,2,Active Shallow Crust,0.0,89.98915,0.0,05/03/8638 +7.12345,47.3686,7973,12,20,21,24,39,3.75,5.0,fr,55222,159,2362584,1,2,Active Shallow Crust,0.0,89.98915,0.0,12/20/7973 +7.12345,47.3686,1263,11,1,23,12,10,3.75,5.0,fr,55223,25,2362587,1,1,Active Shallow Crust,240.009,58.0172,0.0,11/01/1263 +7.12345,47.3686,5502,9,26,19,53,28,3.75,15.0,fr,55224,110,2362588,1,1,Active Shallow Crust,240.009,58.0172,0.0,09/26/5502 +7.12345,47.3686,8998,7,17,6,24,14,3.85,5.0,fr,55225,179,2362596,1,2,Active Shallow Crust,0.0,89.99033,0.0,07/17/8998 +7.12345,47.3686,1028,1,2,0,26,43,3.85,5.0,fr,55226,20,2362596,1,2,Active Shallow Crust,0.0,89.99033,0.0,01/02/1028 +7.12345,47.3686,5321,11,14,18,1,14,3.85,5.0,fr,55227,106,2362599,1,1,Active Shallow Crust,240.0113,57.99834,0.0,11/14/5321 +7.12345,47.3686,4167,12,20,5,26,26,3.85,5.0,fr,55228,83,2362602,1,1,Active Shallow Crust,0.0,89.99022,-90.0,12/20/4167 +7.12345,47.3686,4225,12,29,2,1,43,3.95,5.0,fr,55229,84,2362608,1,1,Active Shallow Crust,0.0,89.99138,0.0,12/29/4225 +7.12345,47.3686,211,9,2,22,38,53,4.05,15.0,fr,55230,4,2362621,1,2,Active Shallow Crust,0.0,89.98848,0.0,09/02/0211 +7.12345,47.3686,2101,11,18,12,13,18,4.05,15.0,fr,55231,42,2362621,1,2,Active Shallow Crust,0.0,89.98848,0.0,11/18/2101 +7.12345,47.3686,1971,6,8,9,40,20,4.05,5.0,fr,55232,39,2362623,1,1,Active Shallow Crust,240.0069,58.00527,0.0,06/08/1971 +7.12345,47.3686,8308,11,27,23,54,58,4.15,5.0,fr,55233,166,2362632,1,2,Active Shallow Crust,0.0,89.98973,0.0,11/27/8308 +7.12345,47.3686,8930,8,8,23,43,45,4.15,5.0,fr,55234,178,2362632,1,2,Active Shallow Crust,0.0,89.98973,0.0,08/08/8930 +7.12345,47.3686,8136,9,7,16,33,16,4.15,15.0,fr,55235,162,2362633,1,1,Active Shallow Crust,0.0,89.98973,0.0,09/07/8136 +7.12345,47.3686,4399,11,11,19,21,35,4.25,15.0,fr,55236,87,2362645,1,1,Active Shallow Crust,0.0,89.99084,0.0,11/11/4399 +7.12345,47.3686,561,11,20,4,34,32,4.25,5.0,fr,55237,11,2362653,1,1,Active Shallow Crust,128.8944,89.98098,0.0,11/20/0561 +7.12345,47.3686,632,2,7,8,17,54,4.35,5.0,fr,55238,12,2362659,1,1,Active Shallow Crust,240.0087,57.99545,0.0,02/07/0632 +7.12345,47.3686,7028,2,22,1,17,2,4.35,15.0,fr,55239,140,2362666,1,1,Active Shallow Crust,128.8971,89.98305,0.0,02/22/7028 +7.12345,47.3686,2310,5,7,1,5,38,4.45,5.0,fr,55240,46,2362668,1,1,Active Shallow Crust,0.0,89.9903,0.0,05/07/2310 +7.12345,47.3686,5190,5,17,21,13,43,5.05,15.0,fr,55241,103,2362741,1,1,Active Shallow Crust,0.0,89.99028,0.0,05/17/5190 +3.187,42.37242,3914,12,15,16,44,55,3.55,5.0,fr,55242,78,2363040,1,1,Active Shallow Crust,0.0,89.98882,0.0,12/15/3914 +3.187,42.37242,9795,10,21,17,53,6,3.55,15.0,fr,55243,195,2363041,1,1,Active Shallow Crust,0.0,89.98882,0.0,10/21/9795 +3.187,42.37242,3699,10,21,1,6,41,3.55,27.5,fr,55244,73,2363042,1,1,Active Shallow Crust,0.0,89.98882,0.0,10/21/3699 +3.187,42.37242,916,2,7,8,25,28,3.55,5.0,fr,55245,18,2363049,1,1,Active Shallow Crust,128.8963,89.99442,0.0,02/07/0916 +3.187,42.37242,2523,10,20,7,54,22,3.65,5.0,fr,55246,50,2363061,1,1,Active Shallow Crust,128.9,89.96371,0.0,10/20/2523 +3.187,42.37242,7464,4,29,9,25,59,3.75,5.0,fr,55247,149,2363064,1,1,Active Shallow Crust,0.0,89.99113,0.0,04/29/7464 +3.187,42.37242,4399,9,17,23,41,51,3.75,5.0,fr,55248,87,2363067,1,1,Active Shallow Crust,240.0075,58.01788,0.0,09/17/4399 +3.187,42.37242,8930,4,19,5,20,50,3.85,5.0,fr,55249,178,2363076,1,1,Active Shallow Crust,0.0,89.98945,0.0,04/19/8930 +3.187,42.37242,4797,1,14,7,19,16,4.05,5.0,fr,55250,95,2363100,1,1,Active Shallow Crust,0.0,89.98952,0.0,01/14/4797 +3.187,42.37242,54,5,20,21,4,15,4.05,27.5,fr,55251,1,2363108,1,1,Active Shallow Crust,0.0,89.9894,-90.0,05/20/0054 +3.187,42.37242,5675,2,5,2,1,41,4.25,15.0,fr,55252,113,2363134,1,1,Active Shallow Crust,128.8951,89.9808,0.0,02/05/5675 +3.187,42.37242,9684,6,30,9,32,7,4.65,5.0,fr,55253,193,2363172,1,1,Active Shallow Crust,0.0,89.9895,0.0,06/30/9684 +3.187,42.37242,572,1,12,4,24,44,5.35,5.0,fr,55254,11,2363256,1,1,Active Shallow Crust,0.0,89.99015,0.0,01/12/0572 +5.35828,45.85353,5981,7,24,1,20,31,3.55,5.0,fr,55255,119,2363520,1,1,Active Shallow Crust,0.0,89.99297,0.0,07/24/5981 +5.35828,45.85353,6386,7,24,22,34,23,3.55,5.0,fr,55256,127,2363523,1,1,Active Shallow Crust,240.0116,57.99816,0.0,07/24/6386 +5.35828,45.85353,7570,4,12,12,41,31,3.65,15.0,fr,55257,151,2363533,1,2,Active Shallow Crust,0.0,89.98748,0.0,04/12/7570 +5.35828,45.85353,6124,9,2,14,9,16,3.65,15.0,fr,55258,122,2363533,1,2,Active Shallow Crust,0.0,89.98748,0.0,09/02/6124 +5.35828,45.85353,7166,3,26,0,9,36,3.75,5.0,fr,55259,143,2363544,1,1,Active Shallow Crust,0.0,89.98885,0.0,03/26/7166 +5.35828,45.85353,279,5,4,12,45,53,3.85,5.0,fr,55260,5,2363556,1,1,Active Shallow Crust,0.0,89.99006,0.0,05/04/0279 +5.35828,45.85353,3420,5,30,20,16,12,3.85,15.0,fr,55261,68,2363557,1,3,Active Shallow Crust,0.0,89.99006,0.0,05/30/3420 +5.35828,45.85353,5734,8,2,12,35,48,3.85,15.0,fr,55262,114,2363557,1,3,Active Shallow Crust,0.0,89.99006,0.0,08/02/5734 +5.35828,45.85353,1640,10,5,19,49,49,3.85,15.0,fr,55263,32,2363557,1,3,Active Shallow Crust,0.0,89.99006,0.0,10/05/1640 +5.35828,45.85353,7126,10,20,6,22,26,3.85,5.0,fr,55264,142,2363559,1,2,Active Shallow Crust,240.0102,57.99809,0.0,10/20/7126 +5.35828,45.85353,708,4,2,23,40,41,3.85,5.0,fr,55265,14,2363559,1,2,Active Shallow Crust,240.0102,57.99809,0.0,04/02/0708 +5.35828,45.85353,9357,1,13,12,7,26,3.85,5.0,fr,55266,187,2363562,1,1,Active Shallow Crust,0.0,89.98994,-90.0,01/13/9357 +5.35828,45.85353,7168,11,3,6,54,37,4.05,15.0,fr,55267,143,2363581,1,1,Active Shallow Crust,0.0,89.98815,0.0,11/03/7168 +5.35828,45.85353,9943,5,15,3,7,18,4.05,5.0,fr,55268,198,2363589,1,1,Active Shallow Crust,128.8905,89.99408,0.0,05/15/9943 +5.35828,45.85353,7900,1,19,13,29,48,4.25,5.0,fr,55269,157,2363604,1,1,Active Shallow Crust,0.0,89.99059,0.0,01/19/7900 +5.35828,45.85353,9867,3,16,1,25,5,4.35,5.0,fr,55270,197,2363616,1,1,Active Shallow Crust,0.0,89.98882,0.0,03/16/9867 +5.35828,45.85353,2495,6,14,14,4,16,4.55,5.0,fr,55271,49,2363640,1,1,Active Shallow Crust,0.0,89.98889,0.0,06/14/2495 +4.56825,42.16902,9123,1,23,4,11,28,4.25,15.0,fr,55272,182,2364091,1,1,Active Shallow Crust,0.0,89.98987,-90.0,01/23/9123 +3.11097,47.33619,4011,10,4,2,32,27,3.75,15.0,fr,55273,80,2364505,1,1,Active Shallow Crust,0.0,89.98914,0.0,10/04/4011 +3.11097,47.33619,3376,3,17,15,22,4,3.85,15.0,fr,55274,67,2364517,1,1,Active Shallow Crust,0.0,89.99033,0.0,03/17/3376 +3.11097,47.33619,4981,7,21,16,46,45,3.95,27.5,fr,55275,99,2364530,1,1,Active Shallow Crust,0.0,89.98922,0.0,07/21/4981 +7.97985,47.7222,4938,2,22,5,26,42,3.55,5.0,fr,55276,98,2364960,1,2,Active Shallow Crust,0.0,89.99322,0.0,02/22/4938 +7.97985,47.7222,1963,6,22,2,14,53,3.55,5.0,fr,55277,39,2364960,1,2,Active Shallow Crust,0.0,89.99322,0.0,06/22/1963 +7.97985,47.7222,7077,7,31,5,48,4,3.55,5.0,fr,55278,141,2364966,1,1,Active Shallow Crust,0.0,89.99314,-90.0,07/31/7077 +7.97985,47.7222,4251,12,30,19,16,2,3.55,27.5,fr,55279,85,2364968,1,1,Active Shallow Crust,0.0,89.99314,-90.0,12/30/4251 +7.97985,47.7222,2942,12,12,21,35,10,3.55,5.0,fr,55280,58,2364969,1,1,Active Shallow Crust,128.8958,89.99322,0.0,12/12/2942 +7.97985,47.7222,8341,2,26,20,11,8,3.65,5.0,fr,55281,166,2364972,1,1,Active Shallow Crust,0.0,89.98791,0.0,02/26/8341 +7.97985,47.7222,4989,11,27,0,45,36,3.65,15.0,fr,55282,99,2364973,1,1,Active Shallow Crust,0.0,89.98791,0.0,11/27/4989 +7.97985,47.7222,7298,11,2,15,47,17,3.65,27.5,fr,55283,145,2364974,1,1,Active Shallow Crust,0.0,89.98791,0.0,11/02/7298 +7.97985,47.7222,4629,5,21,22,48,36,3.65,5.0,fr,55284,92,2364978,1,1,Active Shallow Crust,0.0,89.98777,-90.0,05/21/4629 +7.97985,47.7222,9685,10,20,17,43,53,3.75,5.0,fr,55285,193,2364984,1,2,Active Shallow Crust,0.0,89.98922,0.0,10/20/9685 +7.97985,47.7222,5854,12,14,16,59,33,3.75,5.0,fr,55286,117,2364984,1,2,Active Shallow Crust,0.0,89.98922,0.0,12/14/5854 +7.97985,47.7222,1710,10,27,4,12,29,3.75,27.5,fr,55287,34,2364986,1,1,Active Shallow Crust,0.0,89.98922,0.0,10/27/1710 +7.97985,47.7222,5530,1,21,21,32,9,3.75,5.0,fr,55288,110,2364987,1,1,Active Shallow Crust,240.0079,58.01821,0.0,01/21/5530 +7.97985,47.7222,8184,3,23,12,48,4,3.85,5.0,fr,55289,163,2364996,1,2,Active Shallow Crust,0.0,89.99039,0.0,03/23/8184 +7.97985,47.7222,8950,1,3,1,40,43,3.85,5.0,fr,55290,178,2364996,1,2,Active Shallow Crust,0.0,89.99039,0.0,01/03/8950 +7.97985,47.7222,2322,12,30,8,45,40,3.85,5.0,fr,55291,46,2364999,1,1,Active Shallow Crust,240.0114,57.99783,0.0,12/30/2322 +7.97985,47.7222,2140,3,16,21,1,54,3.95,5.0,fr,55292,42,2365008,1,1,Active Shallow Crust,0.0,89.99144,0.0,03/16/2140 +7.97985,47.7222,4167,4,8,9,9,46,3.95,5.0,fr,55293,83,2365014,1,1,Active Shallow Crust,0.0,89.99134,-90.0,04/08/4167 +7.97985,47.7222,8592,12,27,17,33,7,4.05,5.0,fr,55294,171,2365020,1,1,Active Shallow Crust,0.0,89.98856,0.0,12/27/8592 +7.97985,47.7222,7533,12,12,17,25,47,4.05,27.5,fr,55295,150,2365022,1,1,Active Shallow Crust,0.0,89.98856,0.0,12/12/7533 +7.97985,47.7222,1817,5,28,18,5,11,4.15,5.0,fr,55296,36,2365032,1,2,Active Shallow Crust,0.0,89.9898,0.0,05/28/1817 +7.97985,47.7222,3021,4,9,12,16,28,4.15,5.0,fr,55297,60,2365032,1,2,Active Shallow Crust,0.0,89.9898,0.0,04/09/3021 +7.97985,47.7222,3305,4,1,5,36,47,4.15,15.0,fr,55298,66,2365033,1,2,Active Shallow Crust,0.0,89.9898,0.0,04/01/3305 +7.97985,47.7222,355,9,1,23,40,9,4.15,15.0,fr,55299,7,2365033,1,2,Active Shallow Crust,0.0,89.9898,0.0,09/01/0355 +7.97985,47.7222,585,9,9,0,42,57,4.25,5.0,fr,55300,11,2365044,1,1,Active Shallow Crust,0.0,89.99091,0.0,09/09/0585 +7.97985,47.7222,3508,9,30,17,51,20,4.35,15.0,fr,55301,70,2365057,1,1,Active Shallow Crust,0.0,89.9892,0.0,09/30/3508 +7.97985,47.7222,6639,11,15,18,16,42,4.45,5.0,fr,55302,132,2365068,1,1,Active Shallow Crust,0.0,89.99037,0.0,11/15/6639 +7.97985,47.7222,2600,5,10,15,56,26,4.55,15.0,fr,55303,51,2365081,1,1,Active Shallow Crust,0.0,89.98927,0.0,05/10/2600 +7.97985,47.7222,5528,11,17,18,28,22,4.55,15.0,fr,55304,110,2365084,1,1,Active Shallow Crust,240.0096,57.9974,0.0,11/17/5528 +7.97985,47.7222,1490,5,2,20,55,36,4.55,5.0,fr,55305,29,2365089,1,1,Active Shallow Crust,128.8936,89.98572,0.0,05/02/1490 +7.97985,47.7222,2699,2,3,6,42,23,4.95,15.0,fr,55306,53,2365132,1,1,Active Shallow Crust,240.0123,58.0046,0.0,02/03/2699 +7.97985,47.7222,3847,6,23,5,55,30,5.15,5.0,fr,55307,76,2365152,1,1,Active Shallow Crust,0.0,89.99032,0.0,06/23/3847 +7.97985,47.7222,8777,2,10,11,26,31,5.15,5.0,fr,55308,175,2365161,1,1,Active Shallow Crust,128.8831,89.99092,0.0,02/10/8777 +7.979854,47.7222,9036,10,19,13,6,10,6.25,6.744814,fr,55309,180,2365284,1,1,Active Shallow Crust,359.9998,89.98999,0.0,10/19/9036 +6.46522,42.81713,4369,5,9,6,23,15,3.55,5.0,fr,55310,87,2365440,1,1,Active Shallow Crust,0.0,89.9926,0.0,05/09/4369 +6.46522,42.81713,2531,11,18,16,28,25,3.65,15.0,fr,55311,50,2365453,1,1,Active Shallow Crust,0.0,89.98682,0.0,11/18/2531 +1.06108,45.43048,4388,12,3,22,7,35,3.55,15.0,fr,55312,87,2365921,1,1,Active Shallow Crust,0.0,89.98939,0.0,12/03/4388 +1.06108,45.43048,9771,12,9,12,37,32,3.65,5.0,fr,55313,195,2365941,1,1,Active Shallow Crust,128.9004,89.9635,0.0,12/09/9771 +1.06108,45.43048,4191,5,22,19,7,1,3.75,27.5,fr,55314,83,2365946,1,1,Active Shallow Crust,0.0,89.99017,0.0,05/22/4191 +1.06108,45.43048,7998,4,27,4,15,0,3.75,5.0,fr,55315,159,2365950,1,1,Active Shallow Crust,0.0,89.99005,-90.0,04/27/7998 +1.06108,45.43048,5456,5,28,5,9,43,4.05,5.0,fr,55316,109,2365980,1,1,Active Shallow Crust,0.0,89.99005,0.0,05/28/5456 +1.06108,45.43048,3389,7,11,12,3,19,4.25,27.5,fr,55317,67,2366012,1,1,Active Shallow Crust,0.0,89.98961,-90.0,07/11/3389 +1.06108,45.43048,3042,10,9,9,51,50,4.45,5.0,fr,55318,60,2366028,1,1,Active Shallow Crust,0.0,89.98995,0.0,10/09/3042 +1.06108,45.43048,7507,2,5,2,23,23,4.45,15.0,fr,55319,150,2366029,1,1,Active Shallow Crust,0.0,89.98995,0.0,02/05/7507 +1.06108,45.43048,2141,1,20,20,37,25,5.35,15.0,fr,55320,42,2366137,1,1,Active Shallow Crust,0.0,89.98997,0.0,01/20/2141 +7.35561,43.3235,1419,4,18,2,1,8,3.55,15.0,fr,55321,28,2366401,1,1,Active Shallow Crust,0.0,89.99266,0.0,04/18/1419 +7.35561,43.3235,1015,7,12,7,6,13,3.65,5.0,fr,55322,20,2366412,1,1,Active Shallow Crust,0.0,89.98692,0.0,07/12/1015 +7.35561,43.3235,2501,1,17,6,2,2,3.65,15.0,fr,55323,50,2366422,1,1,Active Shallow Crust,128.8998,89.96391,0.0,01/17/2501 +7.35561,43.3235,977,4,27,17,18,55,3.75,5.0,fr,55324,19,2366424,1,1,Active Shallow Crust,0.0,89.98834,0.0,04/27/0977 +7.35561,43.3235,1629,6,21,13,8,4,3.85,5.0,fr,55325,32,2366436,1,2,Active Shallow Crust,0.0,89.98962,0.0,06/21/1629 +7.35561,43.3235,6360,6,17,6,32,40,3.85,5.0,fr,55326,127,2366436,1,2,Active Shallow Crust,0.0,89.98962,0.0,06/17/6360 +7.35561,43.3235,2709,1,16,10,43,59,4.05,5.0,fr,55327,54,2366460,1,1,Active Shallow Crust,0.0,89.99175,0.0,01/16/2709 +7.35561,43.3235,7903,7,22,23,28,56,4.55,5.0,fr,55328,158,2366520,1,1,Active Shallow Crust,0.0,89.99072,0.0,07/22/7903 +7.35561,43.3235,271,5,27,20,29,11,4.65,5.0,fr,55329,5,2366535,1,1,Active Shallow Crust,240.0096,57.99426,0.0,05/27/0271 +7.35561,43.3235,8880,6,22,19,50,27,5.15,27.5,fr,55330,177,2366597,1,1,Active Shallow Crust,240.0181,57.99967,0.0,06/22/8880 +2.08649,52.04914,2173,1,14,9,31,11,3.55,5.0,fr,55331,43,2367360,1,1,Active Shallow Crust,0.0,89.9907,0.0,01/14/2173 +2.08649,52.04914,2330,7,23,9,53,58,3.75,15.0,fr,55332,46,2367385,1,1,Active Shallow Crust,0.0,89.99015,0.0,07/23/2330 +2.08649,52.04914,1711,4,9,16,18,24,4.25,5.0,fr,55333,34,2367444,1,1,Active Shallow Crust,0.0,89.9903,0.0,04/09/1711 +2.08649,52.04914,7907,3,22,15,3,36,5.45,15.0,fr,55334,158,2367589,1,1,Active Shallow Crust,0.0,89.98991,0.0,03/22/7907 +5.19847,51.26101,172,12,13,9,20,2,3.55,5.0,fr,55335,3,2367840,1,1,Active Shallow Crust,0.0,89.98738,0.0,12/13/0172 +5.19847,51.26101,3498,11,3,5,18,9,3.75,5.0,fr,55336,69,2367873,1,1,Active Shallow Crust,128.8957,89.96758,0.0,11/03/3498 +5.19847,51.26101,4457,4,24,0,22,55,3.85,5.0,fr,55337,89,2367882,1,1,Active Shallow Crust,0.0,89.99096,-90.0,04/24/4457 +5.19847,51.26101,7774,9,5,4,39,19,4.05,5.0,fr,55338,155,2367909,1,1,Active Shallow Crust,128.8897,89.99467,0.0,09/05/7774 +4.53793,40.40442,6540,5,24,11,45,37,3.95,5.0,fr,55339,130,2368368,1,1,Active Shallow Crust,0.0,89.99031,0.0,05/24/6540 +4.53793,40.40442,3997,12,8,7,30,56,4.05,5.0,fr,55340,79,2368380,1,1,Active Shallow Crust,0.0,89.99136,0.0,12/08/3997 +6.32329,49.55414,3015,5,3,5,42,4,3.65,5.0,fr,55341,60,2368812,1,1,Active Shallow Crust,0.0,89.98834,0.0,05/03/3015 +6.32329,49.55414,8968,8,23,22,59,47,3.95,5.0,fr,55342,179,2368857,1,1,Active Shallow Crust,128.9001,89.99381,0.0,08/23/8968 +6.32329,49.55414,9637,7,16,15,11,46,4.15,5.0,fr,55343,192,2368872,1,1,Active Shallow Crust,0.0,89.99017,0.0,07/16/9637 +6.32329,49.55414,8787,3,4,9,2,43,4.65,5.0,fr,55344,175,2368932,1,1,Active Shallow Crust,0.0,89.99078,0.0,03/04/8787 +4.77189,42.19685,7517,1,9,2,42,34,3.75,5.0,fr,55345,150,2369310,1,1,Active Shallow Crust,0.0,89.98799,-90.0,01/09/7517 +4.89451,42.07876,4232,12,7,5,41,23,4.85,5.0,fr,55346,84,2369916,1,1,Active Shallow Crust,0.0,89.98994,0.0,12/07/4232 +4.89451,42.07876,5409,11,26,1,50,9,5.35,15.0,fr,55347,108,2369977,1,1,Active Shallow Crust,0.0,89.98963,0.0,11/26/5409 +1.29565,42.60949,7689,2,18,3,19,41,3.55,5.0,fr,55348,153,2370240,1,1,Active Shallow Crust,0.0,89.99072,0.0,02/18/7689 +1.29565,42.60949,1138,3,17,6,48,58,3.55,15.0,fr,55349,22,2370241,1,1,Active Shallow Crust,0.0,89.99072,0.0,03/17/1138 +1.29565,42.60949,8343,11,22,20,25,35,3.55,27.5,fr,55350,166,2370242,1,1,Active Shallow Crust,0.0,89.99072,0.0,11/22/8343 +1.29565,42.60949,2919,1,31,11,37,24,3.65,5.0,fr,55351,58,2370252,1,3,Active Shallow Crust,0.0,89.99008,0.0,01/31/2919 +1.29565,42.60949,7523,1,6,9,5,21,3.65,5.0,fr,55352,150,2370252,1,3,Active Shallow Crust,0.0,89.99008,0.0,01/06/7523 +1.29565,42.60949,6981,8,10,12,53,24,3.65,5.0,fr,55353,139,2370252,1,3,Active Shallow Crust,0.0,89.99008,0.0,08/10/6981 +1.29565,42.60949,8004,8,5,20,47,51,3.65,15.0,fr,55354,160,2370253,1,3,Active Shallow Crust,0.0,89.99008,0.0,08/05/8004 +1.29565,42.60949,815,2,15,18,8,41,3.65,15.0,fr,55355,16,2370253,1,3,Active Shallow Crust,0.0,89.99008,0.0,02/15/0815 +1.29565,42.60949,7161,8,2,7,55,50,3.65,15.0,fr,55356,143,2370253,1,3,Active Shallow Crust,0.0,89.99008,0.0,08/02/7161 +1.29565,42.60949,4250,11,15,16,33,45,3.65,5.0,fr,55357,84,2370261,1,1,Active Shallow Crust,128.901,89.96345,0.0,11/15/4250 +1.29565,42.60949,9971,2,9,7,24,49,3.75,5.0,fr,55358,199,2370264,1,1,Active Shallow Crust,0.0,89.98969,0.0,02/09/9971 +1.29565,42.60949,6213,11,6,17,27,26,3.85,5.0,fr,55359,124,2370276,1,1,Active Shallow Crust,0.0,89.98949,0.0,11/06/6213 +1.29565,42.60949,5925,5,4,19,34,28,3.85,5.0,fr,55360,118,2370282,1,1,Active Shallow Crust,0.0,89.98937,-90.0,05/04/5925 +1.29565,42.60949,6333,1,23,7,47,40,3.95,15.0,fr,55361,126,2370289,1,2,Active Shallow Crust,0.0,89.98946,0.0,01/23/6333 +1.29565,42.60949,9837,9,14,15,8,56,3.95,15.0,fr,55362,196,2370289,1,2,Active Shallow Crust,0.0,89.98946,0.0,09/14/9837 +1.29565,42.60949,4309,4,9,15,59,34,4.05,5.0,fr,55363,86,2370300,1,2,Active Shallow Crust,0.0,89.98956,0.0,04/09/4309 +1.29565,42.60949,5166,10,24,23,17,59,4.05,5.0,fr,55364,103,2370300,1,2,Active Shallow Crust,0.0,89.98956,0.0,10/24/5166 +1.29565,42.60949,9267,11,1,9,27,8,4.05,5.0,fr,55365,185,2370303,1,1,Active Shallow Crust,240.0052,58.00578,0.0,11/01/9267 +1.29565,42.60949,4205,2,19,12,53,10,4.05,5.0,fr,55366,84,2370309,1,1,Active Shallow Crust,128.8908,89.99374,0.0,02/19/4205 +1.29565,42.60949,1759,1,10,20,11,18,4.15,15.0,fr,55367,35,2370313,1,1,Active Shallow Crust,0.0,89.98977,0.0,01/10/1759 +1.29565,42.60949,7211,6,18,21,21,41,4.15,27.5,fr,55368,144,2370314,1,1,Active Shallow Crust,0.0,89.98977,0.0,06/18/7211 +1.29565,42.60949,3183,11,19,4,41,16,4.15,5.0,fr,55369,63,2370315,1,1,Active Shallow Crust,240.0077,57.99711,0.0,11/19/3183 +1.29565,42.60949,8024,8,29,11,24,56,4.25,5.0,fr,55370,160,2370324,1,1,Active Shallow Crust,0.0,89.99005,0.0,08/29/8024 +1.29565,42.60949,2431,4,21,14,33,43,4.25,15.0,fr,55371,48,2370325,1,1,Active Shallow Crust,0.0,89.99005,0.0,04/21/2431 +1.29565,42.60949,9477,1,6,5,41,57,4.25,5.0,fr,55372,189,2370333,1,1,Active Shallow Crust,128.8949,89.98094,0.0,01/06/9477 +1.29565,42.60949,2814,1,3,8,28,7,4.45,5.0,fr,55373,56,2370351,1,1,Active Shallow Crust,240.0044,57.99438,0.0,01/03/2814 +1.29565,42.60949,6477,6,18,2,49,36,4.55,5.0,fr,55374,129,2370363,1,1,Active Shallow Crust,240.0083,57.99711,0.0,06/18/6477 +1.29565,42.60949,5928,2,21,23,8,23,4.65,15.0,fr,55375,118,2370373,1,1,Active Shallow Crust,0.0,89.99007,0.0,02/21/5928 +1.29565,42.60949,2649,5,29,22,28,26,4.75,5.0,fr,55376,52,2370387,1,1,Active Shallow Crust,240.0061,58.00424,0.0,05/29/2649 +1.29565,42.60949,5373,2,20,20,59,57,4.75,5.0,fr,55377,107,2370393,1,1,Active Shallow Crust,128.8898,89.98808,0.0,02/20/5373 +1.29565,42.60949,6701,9,21,16,1,22,4.95,5.0,fr,55378,134,2370411,1,1,Active Shallow Crust,240.0103,58.00418,0.0,09/21/6701 +1.29565,42.60949,6873,2,10,9,20,8,4.95,15.0,fr,55379,137,2370412,1,1,Active Shallow Crust,240.0103,58.00419,0.0,02/10/6873 +1.29565,42.60949,6368,5,20,1,50,2,5.15,15.0,fr,55380,127,2370436,1,1,Active Shallow Crust,240.0175,57.99957,0.0,05/20/6368 +1.29565,42.60949,2283,4,4,6,27,34,5.55,5.0,fr,55381,45,2370480,1,1,Active Shallow Crust,0.0,89.98997,0.0,04/04/2283 +1.29565,42.60949,6651,11,8,3,58,6,5.55,15.0,fr,55382,133,2370481,1,1,Active Shallow Crust,0.0,89.98997,0.0,11/08/6651 +-0.15189,49.09105,7167,1,16,9,4,21,3.55,5.0,fr,55383,143,2370720,1,6,Active Shallow Crust,0.0,89.9901,0.0,01/16/7167 +-0.15189,49.09105,2038,10,22,6,25,49,3.55,5.0,fr,55384,40,2370720,1,6,Active Shallow Crust,0.0,89.9901,0.0,10/22/2038 +-0.15189,49.09105,3437,9,2,11,0,7,3.55,5.0,fr,55385,68,2370720,1,6,Active Shallow Crust,0.0,89.9901,0.0,09/02/3437 +-0.15189,49.09105,3791,3,19,14,47,44,3.55,5.0,fr,55386,75,2370720,1,6,Active Shallow Crust,0.0,89.9901,0.0,03/19/3791 +-0.15189,49.09105,5077,10,15,23,19,40,3.55,5.0,fr,55387,101,2370720,1,6,Active Shallow Crust,0.0,89.9901,0.0,10/15/5077 +-0.15189,49.09105,4534,8,8,15,20,9,3.55,5.0,fr,55388,90,2370720,1,6,Active Shallow Crust,0.0,89.9901,0.0,08/08/4534 +-0.15189,49.09105,1922,4,17,2,1,31,3.55,15.0,fr,55389,38,2370721,1,1,Active Shallow Crust,0.0,89.9901,0.0,04/17/1922 +-0.15189,49.09105,1719,11,13,0,12,29,3.65,5.0,fr,55390,34,2370732,1,1,Active Shallow Crust,0.0,89.99007,0.0,11/13/1719 +-0.15189,49.09105,6771,9,22,14,48,9,3.65,15.0,fr,55391,135,2370736,1,1,Active Shallow Crust,240.0014,58.01292,0.0,09/22/6771 +-0.15189,49.09105,4965,5,3,14,27,41,3.75,5.0,fr,55392,99,2370753,1,1,Active Shallow Crust,128.8964,89.96735,0.0,05/03/4965 +-0.15189,49.09105,8502,2,25,10,44,28,3.85,5.0,fr,55393,170,2370765,1,1,Active Shallow Crust,128.8953,89.99379,0.0,02/25/8502 +-0.15189,49.09105,4662,8,10,1,15,12,3.95,5.0,fr,55394,93,2370768,1,1,Active Shallow Crust,0.0,89.98997,0.0,08/10/4662 +-0.15189,49.09105,1279,4,13,3,57,15,3.95,15.0,fr,55395,25,2370769,1,1,Active Shallow Crust,0.0,89.98997,0.0,04/13/1279 +-0.15189,49.09105,3691,2,11,16,1,45,4.05,5.0,fr,55396,73,2370780,1,1,Active Shallow Crust,0.0,89.99002,0.0,02/11/3691 +-0.15189,49.09105,6498,6,1,11,54,41,4.05,15.0,fr,55397,129,2370781,1,1,Active Shallow Crust,0.0,89.99002,0.0,06/01/6498 +-0.15189,49.09105,9586,1,14,15,16,3,4.05,5.0,fr,55398,191,2370789,1,1,Active Shallow Crust,128.8901,89.99374,0.0,01/14/9586 +-0.15189,49.09105,5783,8,2,0,55,41,4.15,15.0,fr,55399,115,2370793,1,1,Active Shallow Crust,0.0,89.98997,0.0,08/02/5783 +-0.15189,49.09105,7621,9,22,22,41,45,4.15,27.5,fr,55400,152,2370794,1,1,Active Shallow Crust,0.0,89.98997,0.0,09/22/7621 +-0.15189,49.09105,3507,7,12,9,8,43,4.85,5.0,fr,55401,70,2370885,1,1,Active Shallow Crust,128.8917,89.98901,0.0,07/12/3507 +-0.15189,49.09105,9615,9,4,12,5,14,5.25,27.5,fr,55402,192,2370926,1,1,Active Shallow Crust,0.0,89.99,0.0,09/04/9615 +1.2907,44.77423,8922,2,12,17,1,39,3.55,5.0,fr,55403,178,2371200,1,1,Active Shallow Crust,0.0,89.98927,0.0,02/12/8922 +1.2907,44.77423,4114,11,26,20,58,55,3.85,5.0,fr,55404,82,2371236,1,1,Active Shallow Crust,0.0,89.98986,0.0,11/26/4114 +1.2907,44.77423,3499,1,1,14,31,23,3.95,5.0,fr,55405,69,2371257,1,1,Active Shallow Crust,128.9004,89.99379,0.0,01/01/3499 +1.2907,44.77423,7361,7,10,9,48,10,4.45,5.0,fr,55406,147,2371314,1,1,Active Shallow Crust,0.0,89.98972,-90.0,07/10/7361 +1.0171,48.23153,2169,4,4,22,56,14,3.55,5.0,fr,55407,43,2371680,1,1,Active Shallow Crust,0.0,89.98992,0.0,04/04/2169 +1.0171,48.23153,9752,10,2,14,19,57,3.65,5.0,fr,55408,195,2371701,1,1,Active Shallow Crust,128.9003,89.96342,0.0,10/02/9752 +1.0171,48.23153,3645,8,29,22,20,20,3.95,27.5,fr,55409,72,2371736,1,1,Active Shallow Crust,0.0,89.99036,-90.0,08/29/3645 +1.0171,48.23153,4780,3,25,3,23,58,4.25,5.0,fr,55410,95,2371764,1,1,Active Shallow Crust,0.0,89.99025,0.0,03/25/4780 +1.0171,48.23153,2829,7,23,4,31,33,4.45,5.0,fr,55411,56,2371797,1,1,Active Shallow Crust,128.8918,89.99374,0.0,07/23/2829 +7.42755,49.93549,736,7,22,6,46,50,3.55,15.0,fr,55412,14,2372161,1,1,Active Shallow Crust,0.0,89.98702,0.0,07/22/0736 +7.42755,49.93549,4784,11,29,12,52,53,3.55,15.0,fr,55413,95,2372167,1,1,Active Shallow Crust,0.0,89.98687,-90.0,11/29/4784 +7.42755,49.93549,4115,10,30,14,14,9,3.75,5.0,fr,55414,82,2372184,1,2,Active Shallow Crust,0.0,89.98969,0.0,10/30/4115 +7.42755,49.93549,6222,9,28,23,48,15,3.75,5.0,fr,55415,124,2372184,1,2,Active Shallow Crust,0.0,89.98969,0.0,09/28/6222 +7.42755,49.93549,1677,11,25,11,51,24,3.75,5.0,fr,55416,33,2372193,1,1,Active Shallow Crust,128.8972,89.96704,0.0,11/25/1677 +7.42755,49.93549,4335,4,13,18,38,8,3.95,15.0,fr,55417,86,2372209,1,1,Active Shallow Crust,0.0,89.99181,0.0,04/13/4335 +7.42755,49.93549,9866,10,8,0,47,17,4.25,5.0,fr,55418,197,2372244,1,1,Active Shallow Crust,0.0,89.9913,0.0,10/08/9866 +7.42755,49.93549,2984,1,2,17,42,2,4.55,15.0,fr,55419,59,2372284,1,1,Active Shallow Crust,240.0105,57.99758,0.0,01/02/2984 +7.42755,49.93549,5835,7,3,5,55,56,4.65,15.0,fr,55420,116,2372293,1,1,Active Shallow Crust,0.0,89.99085,0.0,07/03/5835 +7.42755,49.93549,6075,10,30,12,43,38,5.75,5.0,fr,55421,121,2372424,1,1,Active Shallow Crust,0.0,89.9902,0.0,10/30/6075 +6.1379,49.28048,2862,12,15,23,49,22,3.85,5.0,fr,55422,57,2373156,1,2,Active Shallow Crust,0.0,89.99068,0.0,12/15/2862 +6.1379,49.28048,2592,6,7,6,44,37,3.85,5.0,fr,55423,51,2373156,1,2,Active Shallow Crust,0.0,89.99068,0.0,06/07/2592 +6.1379,49.28048,750,11,10,2,21,37,3.95,15.0,fr,55424,14,2373169,1,1,Active Shallow Crust,0.0,89.9917,0.0,11/10/0750 +6.1379,49.28048,5982,1,20,20,37,49,4.05,5.0,fr,55425,119,2373180,1,1,Active Shallow Crust,0.0,89.9889,0.0,01/20/5982 +6.1379,49.28048,9250,9,11,11,35,24,4.25,5.0,fr,55426,184,2373204,1,1,Active Shallow Crust,0.0,89.99118,0.0,09/11/9250 +6.1379,49.28048,3926,10,22,4,52,16,4.35,15.0,fr,55427,78,2373220,1,1,Active Shallow Crust,240.009,57.99638,0.0,10/22/3926 +6.87964,48.23486,650,8,25,1,15,38,3.55,5.0,fr,55428,12,2373609,1,1,Active Shallow Crust,128.8962,89.99329,0.0,08/25/0650 +6.87964,48.23486,3517,10,23,19,3,17,3.65,5.0,fr,55429,70,2373612,1,2,Active Shallow Crust,0.0,89.98803,0.0,10/23/3517 +6.87964,48.23486,3050,4,14,7,41,25,3.65,5.0,fr,55430,60,2373612,1,2,Active Shallow Crust,0.0,89.98803,0.0,04/14/3050 +6.87964,48.23486,9714,5,19,1,7,59,3.65,27.5,fr,55431,194,2373617,1,1,Active Shallow Crust,240.0007,58.01403,0.0,05/19/9714 +6.87964,48.23486,6406,8,14,21,56,49,3.75,5.0,fr,55432,128,2373624,1,1,Active Shallow Crust,0.0,89.98933,0.0,08/14/6406 +6.87964,48.23486,7642,2,22,14,32,37,3.85,5.0,fr,55433,152,2373636,1,2,Active Shallow Crust,0.0,89.99049,0.0,02/22/7642 +6.87964,48.23486,531,6,23,0,23,32,3.85,5.0,fr,55434,10,2373636,1,2,Active Shallow Crust,0.0,89.99049,0.0,06/23/0531 +6.87964,48.23486,2445,10,1,1,13,4,3.85,15.0,fr,55435,48,2373640,1,1,Active Shallow Crust,240.0101,57.99793,0.0,10/01/2445 +6.87964,48.23486,6234,2,7,2,23,17,3.85,5.0,fr,55436,124,2373642,1,2,Active Shallow Crust,0.0,89.99038,-90.0,02/07/6234 +6.87964,48.23486,3141,12,30,1,15,47,3.85,5.0,fr,55437,62,2373642,1,2,Active Shallow Crust,0.0,89.99038,-90.0,12/30/3141 +6.87964,48.23486,1384,11,5,12,41,49,3.85,5.0,fr,55438,27,2373645,1,1,Active Shallow Crust,128.8951,89.99287,0.0,11/05/1384 +6.87964,48.23486,513,8,30,20,56,11,3.95,5.0,fr,55439,10,2373651,1,1,Active Shallow Crust,240.0196,58.00513,0.0,08/30/0513 +6.87964,48.23486,4116,5,7,23,29,39,4.45,27.5,fr,55440,82,2373710,1,1,Active Shallow Crust,0.0,89.99046,0.0,05/07/4116 +6.87964,48.23486,1316,12,30,0,22,38,4.55,5.0,fr,55441,26,2373729,1,1,Active Shallow Crust,128.8934,89.98574,0.0,12/30/1316 +1.46855,52.79889,2136,10,29,18,14,3,3.55,5.0,fr,55442,42,2374089,1,1,Active Shallow Crust,128.8954,89.9939,0.0,10/29/2136 +-5.42715,48.23882,3275,3,13,5,59,57,3.55,5.0,fr,55443,65,2375040,1,1,Active Shallow Crust,0.0,89.99329,0.0,03/13/3275 +-5.42715,48.23882,2855,2,7,5,21,2,3.65,15.0,fr,55444,57,2375053,1,1,Active Shallow Crust,0.0,89.98803,0.0,02/07/2855 +-5.42715,48.23882,4334,4,22,6,39,59,3.65,5.0,fr,55445,86,2375055,1,1,Active Shallow Crust,240.0003,58.01334,0.0,04/22/4334 +-5.42715,48.23882,9911,8,29,21,36,29,3.85,5.0,fr,55446,198,2375082,1,1,Active Shallow Crust,0.0,89.99038,-90.0,08/29/9911 +-1.74872,49.25081,5335,1,19,9,17,40,3.55,5.0,fr,55447,106,2375520,1,1,Active Shallow Crust,0.0,89.99013,0.0,01/19/5335 +-1.74872,49.25081,9768,10,25,13,12,23,3.55,27.5,fr,55448,195,2375522,1,1,Active Shallow Crust,0.0,89.99013,0.0,10/25/9768 +-1.74872,49.25081,9569,3,13,9,19,24,3.55,5.0,fr,55449,191,2375526,1,1,Active Shallow Crust,0.0,89.99001,-90.0,03/13/9569 +-1.74872,49.25081,3443,1,16,1,33,31,3.65,5.0,fr,55450,68,2375532,1,1,Active Shallow Crust,0.0,89.98973,0.0,01/16/3443 +-1.74872,49.25081,4291,2,21,18,36,38,3.65,5.0,fr,55451,85,2375535,1,2,Active Shallow Crust,240.0011,58.01294,0.0,02/21/4291 +-1.74872,49.25081,3363,10,25,17,3,7,3.65,5.0,fr,55452,67,2375535,1,2,Active Shallow Crust,240.0011,58.01294,0.0,10/25/3363 +-1.74872,49.25081,348,11,15,19,3,14,3.65,15.0,fr,55453,6,2375536,1,1,Active Shallow Crust,240.0011,58.01294,0.0,11/15/0348 +-1.74872,49.25081,9603,7,19,10,8,58,3.75,5.0,fr,55454,192,2375547,1,1,Active Shallow Crust,240.0086,58.01758,0.0,07/19/9603 +-1.74872,49.25081,5747,1,30,14,11,5,3.75,27.5,fr,55455,114,2375552,1,1,Active Shallow Crust,0.0,89.98942,-90.0,01/30/5747 +-1.74872,49.25081,780,9,7,13,50,20,3.85,5.0,fr,55456,15,2375556,1,1,Active Shallow Crust,0.0,89.98952,0.0,09/07/0780 +-1.74872,49.25081,8159,8,5,14,21,11,3.95,5.0,fr,55457,163,2375568,1,1,Active Shallow Crust,0.0,89.98962,0.0,08/05/8159 +-1.74872,49.25081,5278,1,14,0,31,44,4.15,5.0,fr,55458,105,2375592,1,1,Active Shallow Crust,0.0,89.9901,0.0,01/14/5278 +-1.74872,49.25081,7535,10,30,11,12,38,4.25,5.0,fr,55459,150,2375604,1,1,Active Shallow Crust,0.0,89.98971,0.0,10/30/7535 +-1.74872,49.25081,2354,1,23,8,38,52,4.25,15.0,fr,55460,47,2375605,1,2,Active Shallow Crust,0.0,89.98971,0.0,01/23/2354 +-1.74872,49.25081,9662,2,16,17,51,10,4.25,15.0,fr,55461,193,2375605,1,2,Active Shallow Crust,0.0,89.98971,0.0,02/16/9662 +-1.74872,49.25081,6140,2,24,16,41,6,4.35,5.0,fr,55462,122,2375616,1,1,Active Shallow Crust,0.0,89.99017,0.0,02/24/6140 +-1.74872,49.25081,8905,6,11,2,59,43,4.35,15.0,fr,55463,178,2375617,1,3,Active Shallow Crust,0.0,89.99017,0.0,06/11/8905 +-1.74872,49.25081,5505,1,24,14,6,7,4.35,15.0,fr,55464,110,2375617,1,3,Active Shallow Crust,0.0,89.99017,0.0,01/24/5505 +-1.74872,49.25081,4971,4,21,16,45,13,4.35,15.0,fr,55465,99,2375617,1,3,Active Shallow Crust,0.0,89.99017,0.0,04/21/4971 +-1.74872,49.25081,9957,7,11,22,57,58,4.35,27.5,fr,55466,199,2375621,1,1,Active Shallow Crust,240.0092,57.99598,0.0,07/11/9957 +-1.74872,49.25081,5434,12,30,1,22,15,4.55,15.0,fr,55467,108,2375647,1,1,Active Shallow Crust,0.0,89.99,-90.0,12/30/5434 +-1.74872,49.25081,278,9,12,13,39,35,5.55,15.0,fr,55468,5,2375761,1,1,Active Shallow Crust,0.0,89.98996,0.0,09/12/0278 +2.01563,43.65139,6847,10,21,8,13,22,3.55,15.0,fr,55469,136,2376481,1,1,Active Shallow Crust,0.0,89.98906,0.0,10/21/6847 +2.01563,43.65139,4519,3,13,15,38,13,3.65,5.0,fr,55470,90,2376492,1,1,Active Shallow Crust,0.0,89.99024,0.0,03/13/4519 +2.01563,43.65139,4385,4,8,17,16,4,3.75,15.0,fr,55471,87,2376505,1,1,Active Shallow Crust,0.0,89.99131,0.0,04/08/4385 +2.01563,43.65139,9025,5,30,7,6,30,3.85,15.0,fr,55472,180,2376517,1,2,Active Shallow Crust,0.0,89.98967,0.0,05/30/9025 +2.01563,43.65139,4651,5,6,5,47,50,3.85,15.0,fr,55473,93,2376517,1,2,Active Shallow Crust,0.0,89.98967,0.0,05/06/4651 +2.01563,43.65139,2948,2,22,15,40,22,3.85,15.0,fr,55474,58,2376520,1,1,Active Shallow Crust,240.0104,57.9977,0.0,02/22/2948 +2.01563,43.65139,3334,5,2,13,59,39,4.55,5.0,fr,55475,66,2376603,1,1,Active Shallow Crust,240.0087,57.99725,0.0,05/02/3334 +2.47686,44.51618,9714,10,23,5,18,20,3.55,5.0,fr,55476,194,2376960,1,2,Active Shallow Crust,0.0,89.98921,0.0,10/23/9714 +2.47686,44.51618,6594,1,10,19,8,13,3.55,5.0,fr,55477,131,2376960,1,2,Active Shallow Crust,0.0,89.98921,0.0,01/10/6594 +2.47686,44.51618,5271,7,23,16,54,3,3.55,15.0,fr,55478,105,2376964,1,1,Active Shallow Crust,240.0117,57.99833,0.0,07/23/5271 +2.47686,44.51618,5242,5,22,23,2,7,3.65,5.0,fr,55479,104,2376972,1,1,Active Shallow Crust,0.0,89.99039,0.0,05/22/5242 +2.47686,44.51618,6993,6,30,6,56,17,3.65,5.0,fr,55480,139,2376975,1,1,Active Shallow Crust,240.0012,58.01264,0.0,06/30/6993 +2.47686,44.51618,7939,9,30,15,46,9,3.75,5.0,fr,55481,158,2376984,1,1,Active Shallow Crust,0.0,89.98858,0.0,09/30/7939 +2.47686,44.51618,6331,3,27,5,20,21,3.75,5.0,fr,55482,126,2376990,1,1,Active Shallow Crust,0.0,89.99133,-90.0,03/27/6331 +2.47686,44.51618,1956,1,2,20,37,35,3.95,5.0,fr,55483,39,2377008,1,1,Active Shallow Crust,0.0,89.99093,0.0,01/02/1956 +2.47686,44.51618,6922,8,11,12,12,27,4.05,5.0,fr,55484,138,2377023,1,2,Active Shallow Crust,240.0058,58.00555,0.0,08/11/6922 +2.47686,44.51618,1427,2,5,17,10,14,4.05,5.0,fr,55485,28,2377023,1,2,Active Shallow Crust,240.0058,58.00555,0.0,02/05/1427 +2.47686,44.51618,7062,2,6,15,22,29,4.25,5.0,fr,55486,141,2377044,1,2,Active Shallow Crust,0.0,89.99036,0.0,02/06/7062 +2.47686,44.51618,4225,10,16,0,13,6,4.25,5.0,fr,55487,84,2377044,1,2,Active Shallow Crust,0.0,89.99036,0.0,10/16/4225 +2.47686,44.51618,6830,4,28,11,17,16,4.35,5.0,fr,55488,136,2377056,1,1,Active Shallow Crust,0.0,89.98998,0.0,04/28/6830 +2.47686,44.51618,4477,5,20,13,9,38,4.65,15.0,fr,55489,89,2377093,1,1,Active Shallow Crust,0.0,89.98987,0.0,05/20/4477 +2.47686,44.51618,6934,1,10,6,25,44,4.85,5.0,fr,55490,138,2377116,1,1,Active Shallow Crust,0.0,89.99034,0.0,01/10/6934 +-5.98101,48.8629,9862,11,14,19,5,12,3.65,27.5,fr,55491,197,2377457,1,1,Active Shallow Crust,240.0022,58.01193,0.0,11/14/9862 +-5.98101,48.8629,3945,3,6,1,22,57,3.75,15.0,fr,55492,78,2377468,1,1,Active Shallow Crust,240.008,58.01742,0.0,03/06/3945 +-5.98101,48.8629,5918,11,5,12,39,25,3.85,15.0,fr,55493,118,2377477,1,1,Active Shallow Crust,0.0,89.99061,0.0,11/05/5918 +-0.20078,47.89038,4877,8,27,11,47,52,3.55,5.0,fr,55494,97,2377920,1,4,Active Shallow Crust,0.0,89.99007,0.0,08/27/4877 +-0.20078,47.89038,202,6,10,18,4,31,3.55,5.0,fr,55495,4,2377920,1,4,Active Shallow Crust,0.0,89.99007,0.0,06/10/0202 +-0.20078,47.89038,4659,3,12,1,38,58,3.55,5.0,fr,55496,93,2377920,1,4,Active Shallow Crust,0.0,89.99007,0.0,03/12/4659 +-0.20078,47.89038,2913,12,25,8,37,17,3.55,5.0,fr,55497,58,2377920,1,4,Active Shallow Crust,0.0,89.99007,0.0,12/25/2913 +-0.20078,47.89038,4944,7,27,14,27,2,3.65,5.0,fr,55498,98,2377932,1,1,Active Shallow Crust,0.0,89.99002,0.0,07/27/4944 +-0.20078,47.89038,2759,11,22,3,11,6,3.75,5.0,fr,55499,55,2377953,1,1,Active Shallow Crust,128.8965,89.96735,0.0,11/22/2759 +-0.20078,47.89038,7970,6,17,14,10,10,3.85,5.0,fr,55500,159,2377956,1,1,Active Shallow Crust,0.0,89.98997,0.0,06/17/7970 +-0.20078,47.89038,2748,5,26,13,24,5,3.85,15.0,fr,55501,54,2377957,1,1,Active Shallow Crust,0.0,89.98997,0.0,05/26/2748 +-0.20078,47.89038,3308,8,16,16,31,27,4.05,5.0,fr,55502,66,2377986,1,1,Active Shallow Crust,0.0,89.99002,-90.0,08/16/3308 +-0.20078,47.89038,3103,8,10,4,45,3,4.15,15.0,fr,55503,62,2377996,1,1,Active Shallow Crust,240.0087,57.99738,0.0,08/10/3103 +0.33908,41.42441,8740,3,17,12,43,40,3.75,5.0,fr,55504,174,2378424,1,1,Active Shallow Crust,0.0,89.98987,0.0,03/17/8740 +0.33908,41.42441,5464,8,2,6,28,3,3.85,5.0,fr,55505,109,2378436,1,1,Active Shallow Crust,0.0,89.98996,0.0,08/02/5464 +0.33908,41.42441,61,10,2,0,58,44,3.85,15.0,fr,55506,1,2378440,1,1,Active Shallow Crust,240.0102,57.9977,0.0,10/02/0061 +0.33908,41.42441,7719,9,29,12,8,8,4.45,5.0,fr,55507,154,2378508,1,1,Active Shallow Crust,0.0,89.98994,0.0,09/29/7719 +0.33908,41.42441,4925,12,14,3,55,32,5.25,27.5,fr,55508,98,2378609,1,1,Active Shallow Crust,240.0175,57.99972,0.0,12/14/4925 +-1.05459,45.12048,1120,10,27,12,21,14,3.65,5.0,fr,55509,22,2378895,1,1,Active Shallow Crust,240.0006,58.01287,0.0,10/27/1120 +-1.05459,45.12048,9742,3,4,12,11,49,3.85,15.0,fr,55510,194,2378917,1,1,Active Shallow Crust,0.0,89.98992,0.0,03/04/9742 +-1.05459,45.12048,3452,11,30,2,57,15,4.45,5.0,fr,55511,69,2378988,1,1,Active Shallow Crust,0.0,89.9899,0.0,11/30/3452 +-1.97885,48.42951,7552,8,29,7,42,35,3.55,5.0,fr,55512,151,2379360,1,3,Active Shallow Crust,0.0,89.98996,0.0,08/29/7552 +-1.97885,48.42951,1834,8,26,23,3,44,3.55,5.0,fr,55513,36,2379360,1,3,Active Shallow Crust,0.0,89.98996,0.0,08/26/1834 +-1.97885,48.42951,2785,12,12,8,6,2,3.55,5.0,fr,55514,55,2379360,1,3,Active Shallow Crust,0.0,89.98996,0.0,12/12/2785 +-1.97885,48.42951,8285,7,2,6,24,31,3.55,15.0,fr,55515,165,2379361,1,1,Active Shallow Crust,0.0,89.98996,0.0,07/02/8285 +-1.97885,48.42951,3728,8,14,4,51,30,3.55,27.5,fr,55516,74,2379371,1,1,Active Shallow Crust,128.8957,89.99415,0.0,08/14/3728 +-1.97885,48.42951,509,1,24,3,3,35,3.65,5.0,fr,55517,10,2379372,1,1,Active Shallow Crust,0.0,89.98956,0.0,01/24/0509 +-1.97885,48.42951,3181,3,24,21,15,25,3.65,15.0,fr,55518,63,2379373,1,1,Active Shallow Crust,0.0,89.98956,0.0,03/24/3181 +-1.97885,48.42951,6988,6,27,2,59,38,3.65,27.5,fr,55519,139,2379374,1,1,Active Shallow Crust,0.0,89.98956,0.0,06/27/6988 +-1.97885,48.42951,575,12,18,7,32,26,3.65,5.0,fr,55520,11,2379375,1,2,Active Shallow Crust,240.0016,58.01271,0.0,12/18/0575 +-1.97885,48.42951,8366,7,25,3,4,52,3.65,5.0,fr,55521,167,2379375,1,2,Active Shallow Crust,240.0016,58.01271,0.0,07/25/8366 +-1.97885,48.42951,7318,7,25,10,3,53,3.65,15.0,fr,55522,146,2379376,1,2,Active Shallow Crust,240.0016,58.01271,0.0,07/25/7318 +-1.97885,48.42951,3745,11,9,9,28,17,3.65,15.0,fr,55523,74,2379376,1,2,Active Shallow Crust,240.0016,58.01271,0.0,11/09/3745 +-1.97885,48.42951,6675,6,25,1,18,31,3.65,5.0,fr,55524,133,2379381,1,1,Active Shallow Crust,128.9002,89.96343,0.0,06/25/6675 +-1.97885,48.42951,3576,12,28,20,33,54,3.75,5.0,fr,55525,71,2379384,1,1,Active Shallow Crust,0.0,89.98937,0.0,12/28/3576 +-1.97885,48.42951,6667,12,30,13,15,23,3.75,15.0,fr,55526,133,2379385,1,1,Active Shallow Crust,0.0,89.98937,0.0,12/30/6667 +-1.97885,48.42951,3286,12,23,7,56,35,3.75,5.0,fr,55527,65,2379390,1,1,Active Shallow Crust,0.0,89.99059,-90.0,12/23/3286 +-1.97885,48.42951,1430,11,25,5,39,4,3.75,15.0,fr,55528,28,2379391,1,1,Active Shallow Crust,0.0,89.99059,-90.0,11/25/1430 +-1.97885,48.42951,8687,4,24,21,56,17,3.85,5.0,fr,55529,173,2379396,1,1,Active Shallow Crust,0.0,89.99052,0.0,04/24/8687 +-1.97885,48.42951,7747,5,26,2,1,56,3.95,5.0,fr,55530,154,2379417,1,1,Active Shallow Crust,128.9002,89.99367,0.0,05/26/7747 +-1.97885,48.42951,1681,9,8,16,8,32,3.95,15.0,fr,55531,33,2379418,1,1,Active Shallow Crust,128.9002,89.99367,0.0,09/08/1681 +-1.97885,48.42951,2162,1,31,9,32,46,4.05,5.0,fr,55532,43,2379420,1,1,Active Shallow Crust,0.0,89.98965,0.0,01/31/2162 +-1.97885,48.42951,1753,2,7,23,18,55,4.05,5.0,fr,55533,35,2379423,1,1,Active Shallow Crust,240.0064,58.00583,0.0,02/07/1753 +-1.97885,48.42951,8469,5,13,14,41,38,4.15,5.0,fr,55534,169,2379438,1,1,Active Shallow Crust,0.0,89.98982,-90.0,05/13/8469 +-1.97885,48.42951,2176,5,2,7,28,44,4.45,5.0,fr,55535,43,2379468,1,1,Active Shallow Crust,0.0,89.98991,0.0,05/02/2176 +-1.97885,48.42951,688,12,2,6,17,42,4.75,15.0,fr,55536,13,2379505,1,1,Active Shallow Crust,0.0,89.98991,0.0,12/02/0688 +1.06517,49.02629,5290,7,16,6,13,36,3.65,5.0,fr,55537,105,2379852,1,3,Active Shallow Crust,0.0,89.98969,0.0,07/16/5290 +1.06517,49.02629,3813,8,16,12,6,52,3.65,5.0,fr,55538,76,2379852,1,3,Active Shallow Crust,0.0,89.98969,0.0,08/16/3813 +1.06517,49.02629,676,10,24,3,50,26,3.65,5.0,fr,55539,13,2379852,1,3,Active Shallow Crust,0.0,89.98969,0.0,10/24/0676 +1.06517,49.02629,1530,6,18,17,11,27,3.75,5.0,fr,55540,30,2379864,1,1,Active Shallow Crust,0.0,89.98949,0.0,06/18/1530 +1.06517,49.02629,7132,6,2,6,7,23,3.75,27.5,fr,55541,142,2379869,1,1,Active Shallow Crust,240.0086,58.01759,0.0,06/02/7132 +1.06517,49.02629,3357,5,29,2,14,31,3.85,15.0,fr,55542,67,2379880,1,1,Active Shallow Crust,240.0112,57.99788,0.0,05/29/3357 +1.06517,49.02629,6205,5,7,13,54,28,4.15,15.0,fr,55543,124,2379913,1,1,Active Shallow Crust,0.0,89.99006,0.0,05/07/6205 +1.06517,49.02629,3177,11,7,0,14,49,4.15,15.0,fr,55544,63,2379922,1,1,Active Shallow Crust,128.8972,89.99379,0.0,11/07/3177 +1.06517,49.02629,1199,8,17,0,54,19,4.25,27.5,fr,55545,23,2379926,1,1,Active Shallow Crust,0.0,89.98966,0.0,08/17/1199 +1.06517,49.02629,4590,5,27,15,7,33,4.45,15.0,fr,55546,91,2379949,1,1,Active Shallow Crust,0.0,89.99003,0.0,05/27/4590 +1.06517,49.02629,9396,6,23,13,55,12,4.55,5.0,fr,55547,187,2379960,1,1,Active Shallow Crust,0.0,89.99007,0.0,06/23/9396 +1.06517,49.02629,1133,3,12,7,19,52,5.15,15.0,fr,55548,22,2380033,1,1,Active Shallow Crust,0.0,89.99004,0.0,03/12/1133 +1.06517,49.02629,1394,5,13,22,2,28,5.35,15.0,fr,55549,27,2380057,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/13/1394 +1.06517,49.02629,3889,9,5,0,10,11,5.75,27.5,fr,55550,77,2380112,1,1,Active Shallow Crust,0.0,89.99003,-90.0,09/05/3889 +5.23501,47.89868,4863,3,15,3,58,4,3.55,27.5,fr,55551,97,2380331,1,1,Active Shallow Crust,128.8953,89.99324,0.0,03/15/4863 +5.23501,47.89868,9070,8,21,3,53,3,3.65,27.5,fr,55552,181,2380334,1,1,Active Shallow Crust,0.0,89.98795,0.0,08/21/9070 +5.23501,47.89868,2081,11,28,3,26,39,4.25,27.5,fr,55553,41,2380406,1,1,Active Shallow Crust,0.0,89.99094,0.0,11/28/2081 +-1.39333,48.74229,9913,7,2,14,44,42,3.55,5.0,fr,55554,198,2380800,1,2,Active Shallow Crust,0.0,89.99003,0.0,07/02/9913 +-1.39333,48.74229,3971,4,6,15,33,16,3.55,5.0,fr,55555,79,2380800,1,2,Active Shallow Crust,0.0,89.99003,0.0,04/06/3971 +-1.39333,48.74229,3039,5,4,9,46,23,3.65,5.0,fr,55556,60,2380812,1,2,Active Shallow Crust,0.0,89.98963,0.0,05/04/3039 +-1.39333,48.74229,8944,8,23,21,29,43,3.65,5.0,fr,55557,178,2380812,1,2,Active Shallow Crust,0.0,89.98963,0.0,08/23/8944 +-1.39333,48.74229,1348,10,13,3,35,47,3.65,15.0,fr,55558,26,2380813,1,3,Active Shallow Crust,0.0,89.98963,0.0,10/13/1348 +-1.39333,48.74229,7233,7,2,13,33,54,3.65,15.0,fr,55559,144,2380813,1,3,Active Shallow Crust,0.0,89.98963,0.0,07/02/7233 +-1.39333,48.74229,4442,10,24,12,34,42,3.65,15.0,fr,55560,88,2380813,1,3,Active Shallow Crust,0.0,89.98963,0.0,10/24/4442 +-1.39333,48.74229,7575,10,5,1,1,11,3.65,27.5,fr,55561,151,2380814,1,1,Active Shallow Crust,0.0,89.98963,0.0,10/05/7575 +-1.39333,48.74229,1522,2,8,0,20,9,3.85,5.0,fr,55562,30,2380842,1,1,Active Shallow Crust,0.0,89.99048,-90.0,02/08/1522 +-1.39333,48.74229,4722,8,16,15,22,16,3.95,5.0,fr,55563,94,2380848,1,3,Active Shallow Crust,0.0,89.98951,0.0,08/16/4722 +-1.39333,48.74229,3388,8,7,21,14,52,3.95,5.0,fr,55564,67,2380848,1,3,Active Shallow Crust,0.0,89.98951,0.0,08/07/3388 +-1.39333,48.74229,2289,9,3,15,7,26,3.95,5.0,fr,55565,45,2380848,1,3,Active Shallow Crust,0.0,89.98951,0.0,09/03/2289 +-1.39333,48.74229,4213,2,25,21,21,37,4.05,5.0,fr,55566,84,2380860,1,2,Active Shallow Crust,0.0,89.98972,0.0,02/25/4213 +-1.39333,48.74229,8074,4,9,6,42,46,4.05,5.0,fr,55567,161,2380860,1,2,Active Shallow Crust,0.0,89.98972,0.0,04/09/8074 +-1.39333,48.74229,7230,2,13,22,56,59,4.05,5.0,fr,55568,144,2380863,1,1,Active Shallow Crust,240.0062,58.00591,0.0,02/13/7230 +-1.39333,48.74229,3478,4,2,7,6,33,4.85,5.0,fr,55569,69,2380956,1,1,Active Shallow Crust,0.0,89.98995,0.0,04/02/3478 +-1.39333,48.74229,5171,3,19,3,21,52,5.15,15.0,fr,55570,103,2380993,1,1,Active Shallow Crust,0.0,89.98998,0.0,03/19/5171 +-4.33717,46.15643,1231,7,11,13,36,31,4.35,5.0,fr,55571,24,2381376,1,1,Active Shallow Crust,0.0,89.98888,0.0,07/11/1231 +-2.63196,49.58497,2102,5,30,10,25,4,3.55,5.0,fr,55572,42,2381760,1,1,Active Shallow Crust,0.0,89.9902,0.0,05/30/2102 +-2.63196,49.58497,8271,7,26,16,9,5,3.75,5.0,fr,55573,165,2381784,1,1,Active Shallow Crust,0.0,89.98962,0.0,07/26/8271 +-2.63196,49.58497,5081,2,10,0,15,26,3.75,5.0,fr,55574,101,2381787,1,1,Active Shallow Crust,240.0084,58.01778,0.0,02/10/5081 +4.45465,40.93709,8,4,11,16,0,39,3.55,5.0,fr,55575,0,2382246,1,1,Active Shallow Crust,0.0,89.99229,-90.0,04/11/0008 +4.45465,40.93709,3155,6,17,1,32,51,3.65,15.0,fr,55576,63,2382256,1,1,Active Shallow Crust,240.0013,58.01293,0.0,06/17/3155 +4.45465,40.93709,1121,12,17,17,34,43,3.65,27.5,fr,55577,22,2382260,1,1,Active Shallow Crust,0.0,89.99313,-90.0,12/17/1121 +4.45465,40.93709,5213,5,3,2,3,7,3.75,5.0,fr,55578,104,2382264,1,1,Active Shallow Crust,0.0,89.9879,0.0,05/03/5213 +4.45465,40.93709,3277,11,12,23,47,27,3.85,5.0,fr,55579,65,2382276,1,2,Active Shallow Crust,0.0,89.98921,0.0,11/12/3277 +4.45465,40.93709,5930,2,3,20,23,1,3.85,5.0,fr,55580,118,2382276,1,2,Active Shallow Crust,0.0,89.98921,0.0,02/03/5930 +4.45465,40.93709,5268,12,5,12,14,55,3.95,5.0,fr,55581,105,2382297,1,1,Active Shallow Crust,128.8998,89.99519,0.0,12/05/5268 +4.45465,40.93709,1014,7,6,16,4,44,5.55,15.0,fr,55582,20,2382484,1,1,Active Shallow Crust,240.028,58.00164,0.0,07/06/1014 +6.7743,43.65751,6034,2,20,14,27,5,3.55,5.0,fr,55583,120,2382720,1,1,Active Shallow Crust,0.0,89.99271,0.0,02/20/6034 +6.7743,43.65751,5492,9,10,2,57,19,3.65,5.0,fr,55584,109,2382732,1,2,Active Shallow Crust,0.0,89.987,0.0,09/10/5492 +6.7743,43.65751,7429,7,11,4,24,10,3.65,5.0,fr,55585,148,2382732,1,2,Active Shallow Crust,0.0,89.987,0.0,07/11/7429 +6.7743,43.65751,1822,12,23,4,8,18,3.75,15.0,fr,55586,36,2382745,1,1,Active Shallow Crust,0.0,89.98841,0.0,12/23/1822 +6.7743,43.65751,285,3,19,5,39,35,3.85,15.0,fr,55587,5,2382757,1,3,Active Shallow Crust,0.0,89.98967,0.0,03/19/0285 +6.7743,43.65751,8524,6,20,15,0,13,3.85,15.0,fr,55588,170,2382757,1,3,Active Shallow Crust,0.0,89.98967,0.0,06/20/8524 +6.7743,43.65751,7974,5,11,1,44,49,3.85,15.0,fr,55589,159,2382757,1,3,Active Shallow Crust,0.0,89.98967,0.0,05/11/7974 +6.7743,43.65751,6103,12,21,5,18,11,3.95,27.5,fr,55590,122,2382779,1,1,Active Shallow Crust,128.9017,89.9931,0.0,12/21/6103 +6.7743,43.65751,372,9,8,12,53,49,4.05,5.0,fr,55591,7,2382780,1,1,Active Shallow Crust,0.0,89.9918,0.0,09/08/0372 +6.7743,43.65751,2761,3,9,4,15,6,4.05,15.0,fr,55592,55,2382781,1,1,Active Shallow Crust,0.0,89.9918,0.0,03/09/2761 +6.7743,43.65751,1054,2,3,19,49,15,4.65,5.0,fr,55593,21,2382852,1,2,Active Shallow Crust,0.0,89.98972,0.0,02/03/1054 +6.7743,43.65751,8165,2,1,23,16,12,4.65,5.0,fr,55594,163,2382852,1,2,Active Shallow Crust,0.0,89.98972,0.0,02/01/8165 +6.7743,43.65751,6807,4,2,15,49,31,5.25,5.0,fr,55595,136,2382924,1,1,Active Shallow Crust,0.0,89.98969,0.0,04/02/6807 +6.7743,43.65751,4968,1,2,15,48,33,5.55,27.5,fr,55596,99,2382968,1,1,Active Shallow Crust,0.0,89.98966,-90.0,01/02/4968 +0.19394,44.14321,5816,9,3,6,1,35,3.85,15.0,fr,55597,116,2383240,1,1,Active Shallow Crust,240.0105,57.99777,0.0,09/03/5816 +0.19394,44.14321,2614,3,18,19,54,23,4.25,15.0,fr,55598,52,2383288,1,1,Active Shallow Crust,240.0071,57.99399,0.0,03/18/2614 +0.19394,44.14321,4369,5,27,10,51,2,5.35,5.0,fr,55599,87,2383419,1,1,Active Shallow Crust,240.0234,57.99754,0.0,05/27/4369 +1.86485,42.2982,7353,2,17,2,53,6,3.55,5.0,fr,55600,147,2383680,1,1,Active Shallow Crust,0.0,89.99068,0.0,02/17/7353 +1.86485,42.2982,5403,8,12,14,20,13,3.55,27.5,fr,55601,108,2383691,1,1,Active Shallow Crust,128.8966,89.99348,0.0,08/12/5403 +1.86485,42.2982,7565,11,27,16,23,6,3.65,5.0,fr,55602,151,2383692,1,4,Active Shallow Crust,0.0,89.99003,0.0,11/27/7565 +1.86485,42.2982,7326,11,6,2,9,16,3.65,5.0,fr,55603,146,2383692,1,4,Active Shallow Crust,0.0,89.99003,0.0,11/06/7326 +1.86485,42.2982,8854,3,7,1,45,1,3.65,5.0,fr,55604,177,2383692,1,4,Active Shallow Crust,0.0,89.99003,0.0,03/07/8854 +1.86485,42.2982,849,5,28,13,5,33,3.65,5.0,fr,55605,16,2383692,1,4,Active Shallow Crust,0.0,89.99003,0.0,05/28/0849 +1.86485,42.2982,401,7,17,4,52,37,3.65,15.0,fr,55606,8,2383693,1,1,Active Shallow Crust,0.0,89.99003,0.0,07/17/0401 +1.86485,42.2982,6365,2,9,23,13,25,3.65,5.0,fr,55607,127,2383695,1,2,Active Shallow Crust,240.0009,58.01279,0.0,02/09/6365 +1.86485,42.2982,390,3,23,3,19,57,3.65,5.0,fr,55608,7,2383695,1,2,Active Shallow Crust,240.0009,58.01279,0.0,03/23/0390 +1.86485,42.2982,9436,8,12,11,14,40,3.65,5.0,fr,55609,188,2383701,1,1,Active Shallow Crust,128.9003,89.96358,0.0,08/12/9436 +1.86485,42.2982,256,10,14,6,17,47,3.75,5.0,fr,55610,5,2383704,1,1,Active Shallow Crust,0.0,89.98963,0.0,10/14/0256 +1.86485,42.2982,5112,8,11,10,28,26,3.75,15.0,fr,55611,102,2383711,1,1,Active Shallow Crust,0.0,89.98951,-90.0,08/11/5112 +1.86485,42.2982,4783,3,4,19,40,30,3.85,5.0,fr,55612,95,2383716,1,1,Active Shallow Crust,0.0,89.98944,0.0,03/04/4783 +1.86485,42.2982,169,10,19,20,15,13,3.85,15.0,fr,55613,3,2383717,1,1,Active Shallow Crust,0.0,89.98944,0.0,10/19/0169 +1.86485,42.2982,7211,12,6,1,53,22,3.85,15.0,fr,55614,144,2383726,1,1,Active Shallow Crust,128.8959,89.99406,0.0,12/06/7211 +1.86485,42.2982,6721,7,19,1,40,56,3.95,27.5,fr,55615,134,2383739,1,1,Active Shallow Crust,128.9009,89.99353,0.0,07/19/6721 +1.86485,42.2982,8430,11,16,9,57,51,4.05,5.0,fr,55616,168,2383740,1,1,Active Shallow Crust,0.0,89.98952,0.0,11/16/8430 +1.86485,42.2982,3517,2,16,17,15,4,4.05,15.0,fr,55617,70,2383744,1,1,Active Shallow Crust,240.0053,58.00569,0.0,02/16/3517 +1.86485,42.2982,6262,9,4,16,4,59,4.05,27.5,fr,55618,125,2383745,1,1,Active Shallow Crust,240.0053,58.00569,0.0,09/04/6262 +1.86485,42.2982,6159,8,25,5,45,37,4.05,5.0,fr,55619,123,2383746,1,1,Active Shallow Crust,0.0,89.99046,-90.0,08/25/6159 +1.86485,42.2982,3779,9,5,10,26,13,4.15,15.0,fr,55620,75,2383762,1,1,Active Shallow Crust,128.8981,89.99393,0.0,09/05/3779 +1.86485,42.2982,2706,9,10,16,58,8,4.35,15.0,fr,55621,54,2383777,1,1,Active Shallow Crust,0.0,89.99035,0.0,09/10/2706 +1.86485,42.2982,4839,7,5,20,54,4,4.65,5.0,fr,55622,96,2383812,1,1,Active Shallow Crust,0.0,89.99001,0.0,07/05/4839 +1.86485,42.2982,7220,4,9,14,27,18,5.25,15.0,fr,55623,144,2383891,1,1,Active Shallow Crust,0.0,89.98988,-90.0,04/09/7220 +1.86485,42.2982,6235,12,18,9,31,50,6.05,27.5,fr,55624,124,2383982,1,1,Active Shallow Crust,0.0,89.99003,0.0,12/18/6235 +2.90137,45.62832,2856,12,23,3,5,4,3.55,5.0,fr,55625,57,2384160,1,2,Active Shallow Crust,0.0,89.98943,0.0,12/23/2856 +2.90137,45.62832,4299,5,23,12,0,11,3.55,5.0,fr,55626,85,2384160,1,2,Active Shallow Crust,0.0,89.98943,0.0,05/23/4299 +2.90137,45.62832,824,7,6,0,51,0,3.55,15.0,fr,55627,16,2384161,1,1,Active Shallow Crust,0.0,89.98943,0.0,07/06/0824 +2.90137,45.62832,6831,5,14,14,42,24,3.55,27.5,fr,55628,136,2384162,1,1,Active Shallow Crust,0.0,89.98943,0.0,05/14/6831 +2.90137,45.62832,1884,12,20,23,10,22,3.55,5.0,fr,55629,37,2384169,1,1,Active Shallow Crust,128.8965,89.99471,0.0,12/20/1884 +2.90137,45.62832,8375,10,23,4,7,51,3.65,5.0,fr,55630,167,2384172,1,1,Active Shallow Crust,0.0,89.99057,0.0,10/23/8375 +2.90137,45.62832,3961,8,29,5,20,28,3.75,5.0,fr,55631,79,2384184,1,1,Active Shallow Crust,0.0,89.9888,0.0,08/29/3961 +2.90137,45.62832,6512,5,16,6,41,5,3.85,5.0,fr,55632,130,2384196,1,3,Active Shallow Crust,0.0,89.99001,0.0,05/16/6512 +2.90137,45.62832,7303,5,3,7,13,55,3.85,5.0,fr,55633,146,2384196,1,3,Active Shallow Crust,0.0,89.99001,0.0,05/03/7303 +2.90137,45.62832,5752,5,25,11,24,16,3.85,5.0,fr,55634,115,2384196,1,3,Active Shallow Crust,0.0,89.99001,0.0,05/25/5752 +2.90137,45.62832,7785,4,1,14,13,36,3.85,5.0,fr,55635,155,2384199,1,1,Active Shallow Crust,240.0106,57.99747,0.0,04/01/7785 +2.90137,45.62832,887,11,6,2,27,35,3.95,15.0,fr,55636,17,2384209,1,1,Active Shallow Crust,0.0,89.9911,0.0,11/06/0887 +2.90137,45.62832,7227,12,1,21,40,47,3.95,27.5,fr,55637,144,2384216,1,1,Active Shallow Crust,0.0,89.991,-90.0,12/01/7227 +2.90137,45.62832,5379,11,6,8,10,29,3.95,5.0,fr,55638,107,2384217,1,1,Active Shallow Crust,128.9009,89.99332,0.0,11/06/5379 +2.90137,45.62832,142,12,21,10,8,12,4.05,5.0,fr,55639,2,2384220,1,1,Active Shallow Crust,0.0,89.99009,0.0,12/21/0142 +2.90137,45.62832,2049,7,27,19,18,45,4.05,5.0,fr,55640,40,2384223,1,1,Active Shallow Crust,240.0057,58.00562,0.0,07/27/2049 +2.90137,45.62832,4040,2,5,11,23,38,4.15,15.0,fr,55641,80,2384233,1,2,Active Shallow Crust,0.0,89.9894,0.0,02/05/4040 +2.90137,45.62832,4287,10,27,7,45,26,4.15,15.0,fr,55642,85,2384233,1,2,Active Shallow Crust,0.0,89.9894,0.0,10/27/4287 +2.90137,45.62832,3532,4,26,13,40,42,4.25,15.0,fr,55643,70,2384251,1,1,Active Shallow Crust,0.0,89.99044,-90.0,04/26/3532 +2.90137,45.62832,4153,11,12,15,20,52,4.35,15.0,fr,55644,83,2384266,1,1,Active Shallow Crust,128.898,89.98274,0.0,11/12/4153 +2.90137,45.62832,5367,3,6,2,18,23,4.45,5.0,fr,55645,107,2384268,1,1,Active Shallow Crust,0.0,89.98999,0.0,03/06/5367 +2.90137,45.62832,3262,10,8,0,41,41,4.55,5.0,fr,55646,65,2384280,1,1,Active Shallow Crust,0.0,89.98997,0.0,10/08/3262 +2.90137,45.62832,8443,8,25,17,20,23,4.65,27.5,fr,55647,168,2384294,1,1,Active Shallow Crust,0.0,89.99006,0.0,08/25/8443 +2.90137,45.62832,7981,7,19,12,40,49,4.65,5.0,fr,55648,159,2384301,1,1,Active Shallow Crust,128.8914,89.98692,0.0,07/19/7981 +2.90137,45.62832,3078,3,5,11,37,41,4.85,5.0,fr,55649,61,2384316,1,1,Active Shallow Crust,0.0,89.98974,0.0,03/05/3078 +2.90137,45.62832,3357,4,30,4,48,14,4.85,15.0,fr,55650,67,2384317,1,1,Active Shallow Crust,0.0,89.98974,0.0,04/30/3357 +0.07144,42.76725,5835,4,15,6,12,45,3.55,5.0,fr,55651,116,2384640,1,4,Active Shallow Crust,0.0,89.99005,0.0,04/15/5835 +0.07144,42.76725,7607,12,14,5,21,10,3.55,5.0,fr,55652,152,2384640,1,4,Active Shallow Crust,0.0,89.99005,0.0,12/14/7607 +0.07144,42.76725,1912,10,16,8,1,28,3.55,5.0,fr,55653,38,2384640,1,4,Active Shallow Crust,0.0,89.99005,0.0,10/16/1912 +0.07144,42.76725,9328,7,6,3,19,21,3.55,5.0,fr,55654,186,2384640,1,4,Active Shallow Crust,0.0,89.99005,0.0,07/06/9328 +0.07144,42.76725,2209,8,29,22,51,35,3.55,15.0,fr,55655,44,2384647,1,1,Active Shallow Crust,0.0,89.99005,-90.0,08/29/2209 +0.07144,42.76725,5952,4,17,3,57,21,3.65,15.0,fr,55656,119,2384653,1,1,Active Shallow Crust,0.0,89.99,0.0,04/17/5952 +0.07144,42.76725,8689,8,17,2,3,10,3.75,5.0,fr,55657,173,2384664,1,2,Active Shallow Crust,0.0,89.98998,0.0,08/17/8689 +0.07144,42.76725,8836,1,16,5,32,34,3.75,5.0,fr,55658,176,2384664,1,2,Active Shallow Crust,0.0,89.98998,0.0,01/16/8836 +0.07144,42.76725,311,9,1,10,55,4,3.75,15.0,fr,55659,6,2384665,1,2,Active Shallow Crust,0.0,89.98998,0.0,09/01/0311 +0.07144,42.76725,2284,7,18,4,51,28,3.75,15.0,fr,55660,45,2384665,1,2,Active Shallow Crust,0.0,89.98998,0.0,07/18/2284 +0.07144,42.76725,8082,4,4,10,30,45,3.75,15.0,fr,55661,161,2384668,1,1,Active Shallow Crust,240.0079,58.01749,0.0,04/04/8082 +0.07144,42.76725,3575,8,22,7,28,56,3.85,5.0,fr,55662,71,2384676,1,1,Active Shallow Crust,0.0,89.99001,0.0,08/22/3575 +0.07144,42.76725,3886,12,3,13,4,45,3.95,5.0,fr,55663,77,2384694,1,1,Active Shallow Crust,0.0,89.99004,-90.0,12/03/3886 +0.07144,42.76725,9878,10,25,17,3,30,3.95,27.5,fr,55664,197,2384696,1,1,Active Shallow Crust,0.0,89.99004,-90.0,10/25/9878 +0.07144,42.76725,4185,2,3,19,51,9,4.05,15.0,fr,55665,83,2384701,1,1,Active Shallow Crust,0.0,89.98998,0.0,02/03/4185 +0.07144,42.76725,5837,8,13,23,2,58,4.05,27.5,fr,55666,116,2384702,1,1,Active Shallow Crust,0.0,89.98998,0.0,08/13/5837 +0.07144,42.76725,9135,10,20,0,43,42,4.25,5.0,fr,55667,182,2384724,1,1,Active Shallow Crust,0.0,89.98997,0.0,10/20/9135 +0.07144,42.76725,8081,6,4,9,33,20,4.35,5.0,fr,55668,161,2384736,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/04/8081 +0.07144,42.76725,6445,7,11,18,5,57,4.55,15.0,fr,55669,128,2384770,1,1,Active Shallow Crust,128.8947,89.98578,0.0,07/11/6445 +0.07144,42.76725,5277,7,31,6,31,29,5.45,27.5,fr,55670,105,2384870,1,1,Active Shallow Crust,360.0,89.99001,0.0,07/31/5277 +6.83297,46.29995,8486,2,21,12,16,16,3.55,5.0,fr,55671,169,2385120,1,8,Active Shallow Crust,0.0,89.99303,0.0,02/21/8486 +6.83297,46.29995,2141,11,5,15,25,16,3.55,5.0,fr,55672,42,2385120,1,8,Active Shallow Crust,0.0,89.99303,0.0,11/05/2141 +6.83297,46.29995,5148,2,2,17,55,26,3.55,5.0,fr,55673,102,2385120,1,8,Active Shallow Crust,0.0,89.99303,0.0,02/02/5148 +6.83297,46.29995,3296,4,6,22,19,41,3.55,5.0,fr,55674,65,2385120,1,8,Active Shallow Crust,0.0,89.99303,0.0,04/06/3296 +6.83297,46.29995,7974,6,25,5,43,17,3.55,5.0,fr,55675,159,2385120,1,8,Active Shallow Crust,0.0,89.99303,0.0,06/25/7974 +6.83297,46.29995,5670,4,5,6,43,55,3.55,5.0,fr,55676,113,2385120,1,8,Active Shallow Crust,0.0,89.99303,0.0,04/05/5670 +6.83297,46.29995,3451,6,1,23,43,53,3.55,5.0,fr,55677,69,2385120,1,8,Active Shallow Crust,0.0,89.99303,0.0,06/01/3451 +6.83297,46.29995,6802,5,25,21,15,15,3.55,5.0,fr,55678,136,2385120,1,8,Active Shallow Crust,0.0,89.99303,0.0,05/25/6802 +6.83297,46.29995,7480,6,23,15,0,3,3.55,15.0,fr,55679,149,2385121,1,2,Active Shallow Crust,0.0,89.99303,0.0,06/23/7480 +6.83297,46.29995,8406,9,23,5,49,9,3.55,15.0,fr,55680,168,2385121,1,2,Active Shallow Crust,0.0,89.99303,0.0,09/23/8406 +6.83297,46.29995,2643,6,11,10,48,16,3.55,5.0,fr,55681,52,2385123,1,2,Active Shallow Crust,240.012,57.99833,0.0,06/11/2643 +6.83297,46.29995,5386,6,6,6,30,31,3.55,5.0,fr,55682,107,2385123,1,2,Active Shallow Crust,240.012,57.99833,0.0,06/06/5386 +6.83297,46.29995,1467,11,17,17,42,35,3.65,5.0,fr,55683,29,2385132,1,5,Active Shallow Crust,0.0,89.98758,0.0,11/17/1467 +6.83297,46.29995,8645,11,11,2,27,53,3.65,5.0,fr,55684,172,2385132,1,5,Active Shallow Crust,0.0,89.98758,0.0,11/11/8645 +6.83297,46.29995,4762,8,7,16,25,26,3.65,5.0,fr,55685,95,2385132,1,5,Active Shallow Crust,0.0,89.98758,0.0,08/07/4762 +6.83297,46.29995,1121,5,16,23,55,44,3.65,5.0,fr,55686,22,2385132,1,5,Active Shallow Crust,0.0,89.98758,0.0,05/16/1121 +6.83297,46.29995,9745,5,20,15,30,42,3.65,5.0,fr,55687,194,2385132,1,5,Active Shallow Crust,0.0,89.98758,0.0,05/20/9745 +6.83297,46.29995,1427,10,5,18,31,43,3.65,15.0,fr,55688,28,2385133,1,1,Active Shallow Crust,0.0,89.98758,0.0,10/05/1427 +6.83297,46.29995,5140,11,7,18,37,36,3.75,5.0,fr,55689,102,2385144,1,3,Active Shallow Crust,0.0,89.98893,0.0,11/07/5140 +6.83297,46.29995,5844,1,3,10,36,32,3.75,5.0,fr,55690,116,2385144,1,3,Active Shallow Crust,0.0,89.98893,0.0,01/03/5844 +6.83297,46.29995,8960,6,2,0,21,48,3.75,5.0,fr,55691,179,2385144,1,3,Active Shallow Crust,0.0,89.98893,0.0,06/02/8960 +6.83297,46.29995,7283,1,27,21,8,59,3.75,15.0,fr,55692,145,2385145,1,3,Active Shallow Crust,0.0,89.98893,0.0,01/27/7283 +6.83297,46.29995,9020,11,1,13,24,53,3.75,15.0,fr,55693,180,2385145,1,3,Active Shallow Crust,0.0,89.98893,0.0,11/01/9020 +6.83297,46.29995,3182,8,8,18,35,55,3.75,15.0,fr,55694,63,2385145,1,3,Active Shallow Crust,0.0,89.98893,0.0,08/08/3182 +6.83297,46.29995,8266,10,24,10,46,58,3.75,15.0,fr,55695,165,2385148,1,1,Active Shallow Crust,240.0078,58.01812,0.0,10/24/8266 +6.83297,46.29995,906,9,7,19,12,59,3.75,5.0,fr,55696,18,2385153,1,1,Active Shallow Crust,128.8965,89.96749,0.0,09/07/0906 +6.83297,46.29995,1330,6,10,16,40,56,3.75,27.5,fr,55697,26,2385155,1,1,Active Shallow Crust,128.8965,89.96749,0.0,06/10/1330 +6.83297,46.29995,5932,9,14,1,29,54,3.85,5.0,fr,55698,118,2385156,1,6,Active Shallow Crust,0.0,89.99014,0.0,09/14/5932 +6.83297,46.29995,8753,2,9,16,36,9,3.85,5.0,fr,55699,175,2385156,1,6,Active Shallow Crust,0.0,89.99014,0.0,02/09/8753 +6.83297,46.29995,1678,9,26,5,29,4,3.85,5.0,fr,55700,33,2385156,1,6,Active Shallow Crust,0.0,89.99014,0.0,09/26/1678 +6.83297,46.29995,4502,4,11,15,40,15,3.85,5.0,fr,55701,90,2385156,1,6,Active Shallow Crust,0.0,89.99014,0.0,04/11/4502 +6.83297,46.29995,1842,3,1,8,12,50,3.85,5.0,fr,55702,36,2385156,1,6,Active Shallow Crust,0.0,89.99014,0.0,03/01/1842 +6.83297,46.29995,5541,1,19,8,42,58,3.85,5.0,fr,55703,110,2385156,1,6,Active Shallow Crust,0.0,89.99014,0.0,01/19/5541 +6.83297,46.29995,9062,1,21,22,2,25,3.85,5.0,fr,55704,181,2385159,1,1,Active Shallow Crust,240.0101,57.99767,0.0,01/21/9062 +6.83297,46.29995,2003,8,14,9,45,10,3.85,5.0,fr,55705,40,2385162,1,1,Active Shallow Crust,0.0,89.99002,-90.0,08/14/2003 +6.83297,46.29995,1050,2,18,9,44,2,3.95,5.0,fr,55706,20,2385168,1,1,Active Shallow Crust,0.0,89.99121,0.0,02/18/1050 +6.83297,46.29995,9298,1,23,5,16,47,3.95,15.0,fr,55707,185,2385169,1,4,Active Shallow Crust,0.0,89.99121,0.0,01/23/9298 +6.83297,46.29995,225,2,12,0,0,19,3.95,15.0,fr,55708,4,2385169,1,4,Active Shallow Crust,0.0,89.99121,0.0,02/12/0225 +6.83297,46.29995,1162,3,22,2,10,27,3.95,15.0,fr,55709,23,2385169,1,4,Active Shallow Crust,0.0,89.99121,0.0,03/22/1162 +6.83297,46.29995,6950,4,28,6,3,34,3.95,15.0,fr,55710,138,2385169,1,4,Active Shallow Crust,0.0,89.99121,0.0,04/28/6950 +6.83297,46.29995,3413,11,27,20,44,9,3.95,5.0,fr,55711,68,2385177,1,1,Active Shallow Crust,128.9015,89.99341,0.0,11/27/3413 +6.83297,46.29995,8588,9,10,8,12,21,4.05,5.0,fr,55712,171,2385180,1,2,Active Shallow Crust,0.0,89.98824,0.0,09/10/8588 +6.83297,46.29995,3014,7,18,13,20,33,4.05,5.0,fr,55713,60,2385180,1,2,Active Shallow Crust,0.0,89.98824,0.0,07/18/3014 +6.83297,46.29995,848,12,24,14,39,19,4.05,5.0,fr,55714,16,2385183,1,1,Active Shallow Crust,240.0055,58.00636,0.0,12/24/0848 +6.83297,46.29995,1764,5,3,22,31,54,4.05,27.5,fr,55715,35,2385191,1,2,Active Shallow Crust,128.891,89.99413,0.0,05/03/1764 +6.83297,46.29995,9849,5,4,18,25,1,4.05,27.5,fr,55716,196,2385191,1,2,Active Shallow Crust,128.891,89.99413,0.0,05/04/9849 +6.83297,46.29995,4097,6,30,9,50,3,4.15,15.0,fr,55717,81,2385193,1,1,Active Shallow Crust,0.0,89.98952,0.0,06/30/4097 +6.83297,46.29995,4171,1,21,15,0,15,4.15,27.5,fr,55718,83,2385194,1,1,Active Shallow Crust,0.0,89.98952,0.0,01/21/4171 +6.83297,46.29995,3710,6,22,0,20,33,4.25,15.0,fr,55719,74,2385211,1,1,Active Shallow Crust,0.0,89.99055,-90.0,06/22/3710 +6.83297,46.29995,3474,11,28,6,11,2,4.45,5.0,fr,55720,69,2385228,1,1,Active Shallow Crust,0.0,89.99011,0.0,11/28/3474 +6.83297,46.29995,7392,6,9,10,8,12,4.55,5.0,fr,55721,147,2385240,1,1,Active Shallow Crust,0.0,89.98898,0.0,06/09/7392 +6.83297,46.29995,5398,11,12,23,51,48,4.55,15.0,fr,55722,107,2385241,1,1,Active Shallow Crust,0.0,89.98898,0.0,11/12/5398 +6.83297,46.29995,5289,5,9,14,46,34,4.55,15.0,fr,55723,105,2385247,1,1,Active Shallow Crust,0.0,89.99108,-90.0,05/09/5289 +6.83297,46.29995,757,10,9,12,35,15,4.65,15.0,fr,55724,15,2385253,1,1,Active Shallow Crust,0.0,89.99018,0.0,10/09/0757 +6.83297,46.29995,6257,9,16,18,45,14,4.75,15.0,fr,55725,125,2385265,1,1,Active Shallow Crust,0.0,89.9895,0.0,09/16/6257 +6.83297,46.29995,3255,10,24,10,52,37,4.85,5.0,fr,55726,65,2385276,1,1,Active Shallow Crust,0.0,89.99064,0.0,10/24/3255 +6.83297,46.29995,2043,10,5,12,8,53,4.95,5.0,fr,55727,40,2385288,1,1,Active Shallow Crust,0.0,89.99026,0.0,10/05/2043 +6.83297,46.29995,9953,5,5,7,41,27,4.95,15.0,fr,55728,199,2385289,1,1,Active Shallow Crust,0.0,89.99026,0.0,05/05/9953 +6.83297,46.29995,2163,9,14,21,21,29,5.25,15.0,fr,55729,43,2385325,1,1,Active Shallow Crust,0.0,89.99016,0.0,09/14/2163 +6.83297,46.29995,1348,10,20,9,2,43,5.35,5.0,fr,55730,26,2385336,1,1,Active Shallow Crust,0.0,89.99035,0.0,10/20/1348 +6.83297,46.29995,6905,7,14,15,1,47,5.35,15.0,fr,55731,138,2385340,1,1,Active Shallow Crust,240.025,57.99778,0.0,07/14/6905 +6.832963,46.29994,8153,3,15,16,31,42,6.55,9.527304,fr,55732,163,2385489,1,1,Active Shallow Crust,128.8301,89.9901,0.0,03/15/8153 +6.43609,45.99147,3159,11,16,16,56,54,3.55,5.0,fr,55733,63,2385600,1,3,Active Shallow Crust,0.0,89.993,0.0,11/16/3159 +6.43609,45.99147,4782,9,7,12,59,12,3.55,5.0,fr,55734,95,2385600,1,3,Active Shallow Crust,0.0,89.993,0.0,09/07/4782 +6.43609,45.99147,3901,10,11,12,9,12,3.55,5.0,fr,55735,78,2385600,1,3,Active Shallow Crust,0.0,89.993,0.0,10/11/3901 +6.43609,45.99147,3494,7,4,14,34,54,3.55,15.0,fr,55736,69,2385601,1,1,Active Shallow Crust,0.0,89.993,0.0,07/04/3494 +6.43609,45.99147,6089,4,5,11,27,11,3.55,5.0,fr,55737,121,2385603,1,1,Active Shallow Crust,240.0131,57.9978,0.0,04/05/6089 +6.43609,45.99147,9237,12,14,10,53,4,3.55,5.0,fr,55738,184,2385606,1,1,Active Shallow Crust,0.0,89.99291,-90.0,12/14/9237 +6.43609,45.99147,1490,9,9,0,58,42,3.65,5.0,fr,55739,29,2385612,1,1,Active Shallow Crust,0.0,89.98751,0.0,09/09/1490 +6.43609,45.99147,1282,6,23,2,47,51,3.65,5.0,fr,55740,25,2385615,1,1,Active Shallow Crust,239.9996,58.01359,0.0,06/23/1282 +6.43609,45.99147,8266,9,9,17,42,34,3.65,15.0,fr,55741,165,2385616,1,1,Active Shallow Crust,239.9996,58.01359,0.0,09/09/8266 +6.43609,45.99147,542,4,24,11,3,2,3.65,5.0,fr,55742,10,2385618,1,1,Active Shallow Crust,0.0,89.98737,-90.0,04/24/0542 +6.43609,45.99147,1339,10,11,0,36,25,3.65,15.0,fr,55743,26,2385619,1,1,Active Shallow Crust,0.0,89.98737,-90.0,10/11/1339 +6.43609,45.99147,2156,2,28,21,40,18,3.75,5.0,fr,55744,43,2385624,1,3,Active Shallow Crust,0.0,89.98887,0.0,02/28/2156 +6.43609,45.99147,5946,9,19,19,10,59,3.75,5.0,fr,55745,118,2385624,1,3,Active Shallow Crust,0.0,89.98887,0.0,09/19/5946 +6.43609,45.99147,5499,10,19,1,21,5,3.75,5.0,fr,55746,109,2385624,1,3,Active Shallow Crust,0.0,89.98887,0.0,10/19/5499 +6.43609,45.99147,8035,12,12,20,48,6,3.75,5.0,fr,55747,160,2385630,1,1,Active Shallow Crust,0.0,89.98874,-90.0,12/12/8035 +6.43609,45.99147,6816,4,15,17,30,25,3.75,5.0,fr,55748,136,2385633,1,2,Active Shallow Crust,128.8965,89.96748,0.0,04/15/6816 +6.43609,45.99147,5537,11,2,0,41,59,3.75,5.0,fr,55749,110,2385633,1,2,Active Shallow Crust,128.8965,89.96748,0.0,11/02/5537 +6.43609,45.99147,2858,2,12,2,46,38,3.85,5.0,fr,55750,57,2385636,1,1,Active Shallow Crust,0.0,89.99008,0.0,02/12/2858 +6.43609,45.99147,6599,7,3,9,59,42,3.95,5.0,fr,55751,131,2385651,1,1,Active Shallow Crust,240.0202,58.00529,0.0,07/03/6599 +6.43609,45.99147,8798,7,30,15,31,48,4.05,5.0,fr,55752,175,2385660,1,1,Active Shallow Crust,0.0,89.98818,0.0,07/30/8798 +6.43609,45.99147,5478,5,26,14,37,26,4.05,15.0,fr,55753,109,2385661,1,2,Active Shallow Crust,0.0,89.98818,0.0,05/26/5478 +6.43609,45.99147,8093,5,15,2,33,33,4.05,15.0,fr,55754,161,2385661,1,2,Active Shallow Crust,0.0,89.98818,0.0,05/15/8093 +6.43609,45.99147,8460,8,14,12,10,26,4.05,15.0,fr,55755,169,2385664,1,1,Active Shallow Crust,240.006,58.00525,0.0,08/14/8460 +6.43609,45.99147,722,6,19,23,16,37,4.05,15.0,fr,55756,14,2385667,1,1,Active Shallow Crust,0.0,89.98804,-90.0,06/19/0722 +6.43609,45.99147,1959,1,3,6,36,55,4.35,15.0,fr,55757,39,2385697,1,1,Active Shallow Crust,0.0,89.98885,0.0,01/03/1959 +6.43609,45.99147,2676,11,15,10,59,14,4.45,5.0,fr,55758,53,2385708,1,1,Active Shallow Crust,0.0,89.99006,0.0,11/15/2676 +6.43609,45.99147,3495,12,11,2,19,48,4.45,15.0,fr,55759,69,2385709,1,2,Active Shallow Crust,0.0,89.99006,0.0,12/11/3495 +6.43609,45.99147,671,4,22,2,47,46,4.45,15.0,fr,55760,13,2385709,1,2,Active Shallow Crust,0.0,89.99006,0.0,04/22/0671 +6.43609,45.99147,9707,1,9,22,34,50,4.55,5.0,fr,55761,194,2385720,1,1,Active Shallow Crust,0.0,89.98892,0.0,01/09/9707 +6.43609,45.99147,3226,5,28,14,43,41,4.95,5.0,fr,55762,64,2385768,1,1,Active Shallow Crust,0.0,89.99021,0.0,05/28/3226 +6.43609,45.99147,648,5,29,1,12,42,5.15,5.0,fr,55763,12,2385795,1,1,Active Shallow Crust,240.0194,57.99993,0.0,05/29/0648 +6.43609,45.99147,1753,4,7,6,24,28,5.35,15.0,fr,55764,35,2385826,1,1,Active Shallow Crust,128.8836,89.98788,0.0,04/07/1753 +6.43609,45.99147,3574,9,7,1,30,28,5.85,5.0,fr,55765,71,2385876,1,1,Active Shallow Crust,0.0,89.99007,0.0,09/07/3574 +7.99628,49.24793,1021,8,7,17,15,32,3.55,5.0,fr,55766,20,2386080,1,1,Active Shallow Crust,0.0,89.98683,0.0,08/07/1021 +7.99628,49.24793,8941,10,17,2,20,51,3.55,15.0,fr,55767,178,2386081,1,1,Active Shallow Crust,0.0,89.98683,0.0,10/17/8941 +7.99628,49.24793,9402,3,4,22,9,33,3.55,5.0,fr,55768,188,2386083,1,2,Active Shallow Crust,240.0135,57.99741,0.0,03/04/9402 +7.99628,49.24793,2660,5,25,22,32,50,3.55,5.0,fr,55769,53,2386083,1,2,Active Shallow Crust,240.0135,57.99741,0.0,05/25/2660 +7.99628,49.24793,8137,6,4,17,41,1,3.55,5.0,fr,55770,162,2386089,1,1,Active Shallow Crust,128.8969,89.99342,0.0,06/04/8137 +7.99628,49.24793,1741,5,7,17,38,41,3.65,5.0,fr,55771,34,2386092,1,4,Active Shallow Crust,0.0,89.98827,0.0,05/07/1741 +7.99628,49.24793,3151,8,2,18,45,44,3.65,5.0,fr,55772,63,2386092,1,4,Active Shallow Crust,0.0,89.98827,0.0,08/02/3151 +7.99628,49.24793,259,5,22,7,49,50,3.65,5.0,fr,55773,5,2386092,1,4,Active Shallow Crust,0.0,89.98827,0.0,05/22/0259 +7.99628,49.24793,566,8,5,17,30,53,3.65,5.0,fr,55774,11,2386092,1,4,Active Shallow Crust,0.0,89.98827,0.0,08/05/0566 +7.99628,49.24793,953,10,10,11,14,30,3.65,27.5,fr,55775,19,2386097,1,1,Active Shallow Crust,240.0,58.01435,0.0,10/10/0953 +7.99628,49.24793,5887,10,18,11,8,6,3.75,15.0,fr,55776,117,2386105,1,1,Active Shallow Crust,0.0,89.98954,0.0,10/18/5887 +7.99628,49.24793,2647,3,28,3,11,14,3.75,27.5,fr,55777,52,2386106,1,1,Active Shallow Crust,0.0,89.98954,0.0,03/28/2647 +7.99628,49.24793,4864,5,27,21,48,26,3.85,27.5,fr,55778,97,2386118,1,1,Active Shallow Crust,0.0,89.99068,0.0,05/27/4864 +7.99628,49.24793,3226,4,14,10,45,47,4.25,5.0,fr,55779,64,2386164,1,1,Active Shallow Crust,0.0,89.99118,0.0,04/14/3226 +7.99628,49.24793,5128,11,3,12,16,1,4.45,5.0,fr,55780,102,2386188,1,1,Active Shallow Crust,0.0,89.99065,0.0,11/03/5128 +7.99628,49.24793,7299,6,3,14,22,20,4.55,27.5,fr,55781,145,2386202,1,1,Active Shallow Crust,0.0,89.98959,0.0,06/03/7299 +7.99628,49.24793,350,3,19,20,34,23,5.55,5.0,fr,55782,6,2386320,1,1,Active Shallow Crust,0.0,89.99012,0.0,03/19/0350 +7.26752,43.17947,4776,12,30,9,31,36,3.55,27.5,fr,55783,95,2387051,1,1,Active Shallow Crust,128.8952,89.99632,0.0,12/30/4776 +7.26752,43.17947,1210,10,21,2,40,43,3.75,5.0,fr,55784,24,2387067,1,2,Active Shallow Crust,240.0083,58.01764,0.0,10/21/1210 +7.26752,43.17947,8211,4,26,9,2,15,3.75,5.0,fr,55785,164,2387067,1,2,Active Shallow Crust,240.0083,58.01764,0.0,04/26/8211 +7.26752,43.17947,6981,11,25,18,37,4,3.85,27.5,fr,55786,139,2387078,1,1,Active Shallow Crust,0.0,89.98959,0.0,11/25/6981 +7.26752,43.17947,5248,4,13,7,40,4,3.95,5.0,fr,55787,104,2387088,1,1,Active Shallow Crust,0.0,89.99072,0.0,04/13/5248 +7.26752,43.17947,3575,5,7,3,23,9,4.15,5.0,fr,55788,71,2387112,1,1,Active Shallow Crust,0.0,89.98895,0.0,05/07/3575 +2.70222,48.3126,3989,11,6,14,11,34,4.15,5.0,fr,55789,79,2387601,1,1,Active Shallow Crust,128.8968,89.99412,0.0,11/06/3989 +2.70222,48.3126,111,6,20,18,44,39,4.45,15.0,fr,55790,2,2387632,1,1,Active Shallow Crust,240.0059,57.99471,0.0,06/20/0111 +7.1583,51.62802,5266,2,13,3,24,39,3.65,15.0,fr,55791,105,2388013,1,1,Active Shallow Crust,0.0,89.98884,0.0,02/13/5266 +7.1583,51.62802,340,10,5,18,3,23,3.75,27.5,fr,55792,6,2388026,1,1,Active Shallow Crust,0.0,89.99006,0.0,10/05/0340 +2.76317,40.14934,860,12,6,4,32,19,3.65,5.0,fr,55793,17,2388492,1,1,Active Shallow Crust,0.0,89.98969,0.0,12/06/0860 +2.68877,40.00208,691,8,12,8,0,0,3.75,5.0,fr,55794,13,2388993,1,1,Active Shallow Crust,128.8965,89.96738,0.0,08/12/0691 +2.68877,40.00208,8363,4,8,11,36,44,4.05,5.0,fr,55795,167,2389020,1,1,Active Shallow Crust,0.0,89.98914,0.0,04/08/8363 +2.68877,40.00208,4657,7,25,22,32,46,4.15,5.0,fr,55796,93,2389038,1,1,Active Shallow Crust,0.0,89.99021,-90.0,07/25/4657 +2.31052,52.05449,8411,7,18,17,50,46,3.55,5.0,fr,55797,168,2389446,1,1,Active Shallow Crust,0.0,89.99059,-90.0,07/18/8411 +2.31052,52.05449,2799,12,24,5,54,56,3.65,5.0,fr,55798,55,2389452,1,1,Active Shallow Crust,0.0,89.98895,0.0,12/24/2799 +2.31052,52.05449,3168,10,15,5,48,42,3.65,15.0,fr,55799,63,2389462,1,1,Active Shallow Crust,128.9006,89.96339,0.0,10/15/3168 +2.31052,52.05449,5167,11,8,18,19,58,3.75,5.0,fr,55800,103,2389464,1,1,Active Shallow Crust,0.0,89.99015,0.0,11/08/5167 +3.2611,40.76688,4168,11,13,4,48,58,3.55,15.0,fr,55801,83,2389921,1,1,Active Shallow Crust,0.0,89.98854,0.0,11/13/4168 +3.2611,40.76688,7605,2,7,4,7,15,3.55,27.5,fr,55802,152,2389928,1,1,Active Shallow Crust,0.0,89.98841,-90.0,02/07/7605 +3.2611,40.76688,4652,7,16,21,19,45,4.15,5.0,fr,55803,93,2389995,1,1,Active Shallow Crust,240.0078,57.99709,0.0,07/16/4652 +3.2611,40.76688,430,12,20,4,3,57,4.25,15.0,fr,55804,8,2390005,1,1,Active Shallow Crust,0.0,89.98977,0.0,12/20/0430 +-2.99153,46.84854,6819,1,28,16,46,20,3.55,5.0,fr,55805,136,2390400,1,1,Active Shallow Crust,0.0,89.98965,0.0,01/28/6819 +-2.99153,46.84854,5879,12,25,19,30,8,5.45,15.0,fr,55806,117,2390638,1,1,Active Shallow Crust,128.8786,89.98892,0.0,12/25/5879 +3.24715,41.44076,2327,2,23,13,2,31,3.55,5.0,fr,55807,46,2390880,1,1,Active Shallow Crust,0.0,89.98866,0.0,02/23/2327 +3.24715,41.44076,3120,5,5,15,45,31,3.55,5.0,fr,55808,62,2390883,1,2,Active Shallow Crust,240.0116,57.99817,0.0,05/05/3120 +3.24715,41.44076,5296,8,20,21,42,9,3.55,5.0,fr,55809,105,2390883,1,2,Active Shallow Crust,240.0116,57.99817,0.0,08/20/5296 +3.24715,41.44076,9333,12,22,12,7,42,3.55,15.0,fr,55810,186,2390884,1,1,Active Shallow Crust,240.0116,57.99817,0.0,12/22/9333 +3.24715,41.44076,593,7,15,8,16,20,3.65,5.0,fr,55811,11,2390892,1,1,Active Shallow Crust,0.0,89.98989,0.0,07/15/0593 +3.24715,41.44076,1218,3,22,13,46,35,3.65,5.0,fr,55812,24,2390898,1,1,Active Shallow Crust,0.0,89.98978,-90.0,03/22/1218 +3.24715,41.44076,3996,10,25,12,37,14,4.15,5.0,fr,55813,79,2390952,1,1,Active Shallow Crust,0.0,89.99053,0.0,10/25/3996 +3.24715,41.44076,2032,9,23,14,6,40,4.25,5.0,fr,55814,40,2390964,1,1,Active Shallow Crust,0.0,89.98987,0.0,09/23/2032 +3.24715,41.44076,266,12,15,0,9,40,4.35,15.0,fr,55815,5,2390977,1,1,Active Shallow Crust,0.0,89.98946,0.0,12/15/0266 +3.24715,41.44076,3728,5,1,15,38,11,4.35,5.0,fr,55816,74,2390985,1,1,Active Shallow Crust,128.8989,89.98285,0.0,05/01/3728 +3.24715,41.44076,8316,3,4,22,6,28,4.45,15.0,fr,55817,166,2390989,1,1,Active Shallow Crust,0.0,89.99061,0.0,03/04/8316 +5.92786,50.49783,614,7,20,17,49,22,3.55,5.0,fr,55818,12,2391360,1,8,Active Shallow Crust,0.0,89.98717,0.0,07/20/0614 +5.92786,50.49783,1366,4,21,17,3,56,3.55,5.0,fr,55819,27,2391360,1,8,Active Shallow Crust,0.0,89.98717,0.0,04/21/1366 +5.92786,50.49783,9495,1,21,10,0,57,3.55,5.0,fr,55820,189,2391360,1,8,Active Shallow Crust,0.0,89.98717,0.0,01/21/9495 +5.92786,50.49783,8380,5,26,3,23,52,3.55,5.0,fr,55821,167,2391360,1,8,Active Shallow Crust,0.0,89.98717,0.0,05/26/8380 +5.92786,50.49783,2129,11,4,13,20,9,3.55,5.0,fr,55822,42,2391360,1,8,Active Shallow Crust,0.0,89.98717,0.0,11/04/2129 +5.92786,50.49783,5518,8,15,11,43,18,3.55,5.0,fr,55823,110,2391360,1,8,Active Shallow Crust,0.0,89.98717,0.0,08/15/5518 +5.92786,50.49783,8418,12,3,6,37,55,3.55,5.0,fr,55824,168,2391360,1,8,Active Shallow Crust,0.0,89.98717,0.0,12/03/8418 +5.92786,50.49783,9316,4,6,6,5,26,3.55,5.0,fr,55825,186,2391360,1,8,Active Shallow Crust,0.0,89.98717,0.0,04/06/9316 +5.92786,50.49783,4540,7,27,14,28,47,3.55,27.5,fr,55826,90,2391362,1,1,Active Shallow Crust,0.0,89.98717,0.0,07/27/4540 +5.92786,50.49783,9997,8,14,18,54,29,3.55,5.0,fr,55827,199,2391363,1,1,Active Shallow Crust,240.0131,57.99736,0.0,08/14/9997 +5.92786,50.49783,8093,9,2,8,1,52,3.55,5.0,fr,55828,161,2391369,1,2,Active Shallow Crust,128.8952,89.99358,0.0,09/02/8093 +5.92786,50.49783,2686,11,28,19,18,25,3.55,5.0,fr,55829,53,2391369,1,2,Active Shallow Crust,128.8952,89.99358,0.0,11/28/2686 +5.92786,50.49783,8676,9,25,15,52,38,3.65,5.0,fr,55830,173,2391372,1,4,Active Shallow Crust,0.0,89.98856,0.0,09/25/8676 +5.92786,50.49783,7604,5,22,11,37,2,3.65,5.0,fr,55831,152,2391372,1,4,Active Shallow Crust,0.0,89.98856,0.0,05/22/7604 +5.92786,50.49783,7496,6,27,21,46,12,3.65,5.0,fr,55832,149,2391372,1,4,Active Shallow Crust,0.0,89.98856,0.0,06/27/7496 +5.92786,50.49783,7579,7,21,3,11,17,3.65,5.0,fr,55833,151,2391372,1,4,Active Shallow Crust,0.0,89.98856,0.0,07/21/7579 +5.92786,50.49783,5820,10,16,2,16,50,3.65,15.0,fr,55834,116,2391376,1,1,Active Shallow Crust,240.0023,58.01283,0.0,10/16/5820 +5.92786,50.49783,7791,2,3,16,49,42,3.75,5.0,fr,55835,155,2391384,1,2,Active Shallow Crust,0.0,89.98981,0.0,02/03/7791 +5.92786,50.49783,9627,9,20,17,25,33,3.75,5.0,fr,55836,192,2391384,1,2,Active Shallow Crust,0.0,89.98981,0.0,09/20/9627 +5.92786,50.49783,7261,1,6,15,44,46,3.75,15.0,fr,55837,145,2391385,1,1,Active Shallow Crust,0.0,89.98981,0.0,01/06/7261 +5.92786,50.49783,38,6,3,2,20,55,3.75,27.5,fr,55838,0,2391386,1,2,Active Shallow Crust,0.0,89.98981,0.0,06/03/0038 +5.92786,50.49783,6621,6,26,11,25,18,3.75,27.5,fr,55839,132,2391386,1,2,Active Shallow Crust,0.0,89.98981,0.0,06/26/6621 +5.92786,50.49783,2357,7,23,23,20,58,3.75,5.0,fr,55840,47,2391393,1,1,Active Shallow Crust,128.8957,89.96756,0.0,07/23/2357 +5.92786,50.49783,3228,2,15,10,43,13,3.85,5.0,fr,55841,64,2391396,1,1,Active Shallow Crust,0.0,89.99092,0.0,02/15/3228 +5.92786,50.49783,5207,6,5,22,41,54,3.85,5.0,fr,55842,104,2391399,1,2,Active Shallow Crust,240.0124,57.9978,0.0,06/05/5207 +5.92786,50.49783,2563,6,26,23,52,28,3.85,5.0,fr,55843,51,2391399,1,2,Active Shallow Crust,240.0124,57.9978,0.0,06/26/2563 +5.92786,50.49783,9952,9,1,0,20,46,3.85,15.0,fr,55844,199,2391400,1,1,Active Shallow Crust,240.0124,57.9978,0.0,09/01/9952 +5.92786,50.49783,8540,8,25,3,13,23,3.85,27.5,fr,55845,170,2391404,1,1,Active Shallow Crust,0.0,89.99081,-90.0,08/25/8540 +5.92786,50.49783,3533,5,25,13,34,47,3.85,5.0,fr,55846,70,2391405,1,2,Active Shallow Crust,128.8944,89.99319,0.0,05/25/3533 +5.92786,50.49783,1600,7,17,5,53,58,3.85,5.0,fr,55847,31,2391405,1,2,Active Shallow Crust,128.8944,89.99319,0.0,07/17/1600 +5.92786,50.49783,3483,7,20,8,15,26,4.05,5.0,fr,55848,69,2391420,1,2,Active Shallow Crust,0.0,89.98918,0.0,07/20/3483 +5.92786,50.49783,982,5,12,1,12,17,4.05,5.0,fr,55849,19,2391420,1,2,Active Shallow Crust,0.0,89.98918,0.0,05/12/0982 +5.92786,50.49783,9783,7,20,13,47,15,4.05,15.0,fr,55850,195,2391421,1,1,Active Shallow Crust,0.0,89.98918,0.0,07/20/9783 +5.92786,50.49783,3923,3,10,7,36,16,4.15,5.0,fr,55851,78,2391441,1,1,Active Shallow Crust,128.8964,89.99357,0.0,03/10/3923 +5.92786,50.49783,1781,7,24,20,6,25,4.15,27.5,fr,55852,35,2391443,1,1,Active Shallow Crust,128.8964,89.99357,0.0,07/24/1781 +5.92786,50.49783,6179,6,2,0,31,38,4.25,15.0,fr,55853,123,2391445,1,2,Active Shallow Crust,0.0,89.9914,0.0,06/02/6179 +5.92786,50.49783,2545,12,23,18,57,23,4.25,15.0,fr,55854,50,2391445,1,2,Active Shallow Crust,0.0,89.9914,0.0,12/23/2545 +5.92786,50.49783,2071,6,8,4,54,53,4.25,15.0,fr,55855,41,2391454,1,1,Active Shallow Crust,128.894,89.98061,0.0,06/08/2071 +5.92786,50.49783,8784,2,19,2,1,28,4.35,15.0,fr,55856,175,2391457,1,2,Active Shallow Crust,0.0,89.98978,0.0,02/19/8784 +5.92786,50.49783,701,2,16,23,43,9,4.35,15.0,fr,55857,14,2391457,1,2,Active Shallow Crust,0.0,89.98978,0.0,02/16/0701 +5.92786,50.49783,2887,7,26,4,47,21,4.35,5.0,fr,55858,57,2391459,1,1,Active Shallow Crust,240.0094,57.99646,0.0,07/26/2887 +5.92786,50.49783,4711,1,19,5,53,57,4.75,15.0,fr,55859,94,2391505,1,1,Active Shallow Crust,0.0,89.99033,0.0,01/19/4711 +5.92786,50.49783,3190,9,9,16,0,27,4.85,5.0,fr,55860,63,2391516,1,1,Active Shallow Crust,0.0,89.98994,0.0,09/09/3190 +5.92786,50.49783,4605,3,8,7,7,32,4.95,27.5,fr,55861,92,2391530,1,1,Active Shallow Crust,0.0,89.98976,0.0,03/08/4605 +5.92786,50.49783,5525,6,17,5,44,39,6.25,15.0,fr,55862,110,2391685,1,1,Active Shallow Crust,0.0,89.98996,0.0,06/17/5525 +-1.8503,41.86744,9197,3,15,21,34,17,3.55,5.0,fr,55863,183,2391840,1,2,Active Shallow Crust,0.0,89.99062,0.0,03/15/9197 +-1.8503,41.86744,2591,12,2,15,37,43,3.55,5.0,fr,55864,51,2391840,1,2,Active Shallow Crust,0.0,89.99062,0.0,12/02/2591 +-1.8503,41.86744,6797,9,4,17,29,22,3.55,15.0,fr,55865,135,2391841,1,1,Active Shallow Crust,0.0,89.99062,0.0,09/04/6797 +-1.8503,41.86744,4499,10,31,19,32,37,3.55,5.0,fr,55866,89,2391843,1,1,Active Shallow Crust,240.0117,57.99809,0.0,10/31/4499 +-1.8503,41.86744,349,12,27,3,21,33,3.65,15.0,fr,55867,6,2391853,1,1,Active Shallow Crust,0.0,89.98996,0.0,12/27/0349 +-1.8503,41.86744,3477,7,6,14,26,52,3.75,15.0,fr,55868,69,2391868,1,1,Active Shallow Crust,240.008,58.01728,0.0,07/06/3477 +-1.8503,41.86744,9473,1,15,22,7,3,3.95,5.0,fr,55869,189,2391888,1,2,Active Shallow Crust,0.0,89.99052,0.0,01/15/9473 +-1.8503,41.86744,3284,4,13,18,45,53,3.95,5.0,fr,55870,65,2391888,1,2,Active Shallow Crust,0.0,89.99052,0.0,04/13/3284 +-1.8503,41.86744,1639,5,3,13,21,10,4.05,5.0,fr,55871,32,2391900,1,1,Active Shallow Crust,0.0,89.9905,0.0,05/03/1639 +3.06576,49.23967,3009,7,20,20,6,43,3.55,5.0,fr,55872,60,2392323,1,1,Active Shallow Crust,240.0127,57.99842,0.0,07/20/3009 +3.06576,49.23967,7708,7,16,13,42,10,3.55,5.0,fr,55873,154,2392329,1,1,Active Shallow Crust,128.8953,89.99342,0.0,07/16/7708 +3.06576,49.23967,4223,5,14,2,30,6,3.65,5.0,fr,55874,84,2392332,1,1,Active Shallow Crust,0.0,89.9912,0.0,05/14/4223 +3.06576,49.23967,1745,12,4,6,57,49,3.75,5.0,fr,55875,34,2392344,1,1,Active Shallow Crust,0.0,89.98954,0.0,12/04/1745 +3.06576,49.23967,7415,1,10,16,32,20,3.85,15.0,fr,55876,148,2392360,1,1,Active Shallow Crust,240.011,57.99786,0.0,01/10/7415 +3.06576,49.23967,4840,5,23,3,47,56,4.05,5.0,fr,55877,96,2392380,1,1,Active Shallow Crust,0.0,89.99075,0.0,05/23/4840 +3.06576,49.23967,3992,5,23,12,53,32,4.25,15.0,fr,55878,79,2392405,1,1,Active Shallow Crust,0.0,89.98971,0.0,05/23/3992 +8.5509,50.30675,3006,4,23,17,6,20,3.65,5.0,fr,55879,60,2392815,1,1,Active Shallow Crust,240.002,58.01238,0.0,04/23/3006 +8.5509,50.30675,6519,6,4,2,14,37,3.65,15.0,fr,55880,130,2392816,1,1,Active Shallow Crust,240.002,58.01238,0.0,06/04/6519 +8.5509,50.30675,7456,8,12,5,42,33,3.75,5.0,fr,55881,149,2392824,1,1,Active Shallow Crust,0.0,89.98977,0.0,08/12/7456 +8.5509,50.30675,9313,10,5,2,54,38,3.75,15.0,fr,55882,186,2392825,1,1,Active Shallow Crust,0.0,89.98977,0.0,10/05/9313 +8.5509,50.30675,3054,5,4,13,3,1,3.85,27.5,fr,55883,61,2392844,1,1,Active Shallow Crust,0.0,89.99078,-90.0,05/04/3054 +8.5509,50.30675,9929,8,30,21,51,17,3.95,15.0,fr,55884,198,2392849,1,1,Active Shallow Crust,0.0,89.99187,0.0,08/30/9929 +8.5509,50.30675,4215,12,9,7,10,53,4.25,5.0,fr,55885,84,2392884,1,1,Active Shallow Crust,0.0,89.98849,0.0,12/09/4215 +-2.10026,43.36391,322,5,20,1,22,39,3.55,5.0,fr,55886,6,2393289,1,1,Active Shallow Crust,128.8959,89.9945,0.0,05/20/0322 +-2.10026,43.36391,1986,3,1,21,40,32,3.75,5.0,fr,55887,39,2393313,1,2,Active Shallow Crust,128.8963,89.96744,0.0,03/01/1986 +-2.10026,43.36391,9624,8,16,1,6,53,3.75,5.0,fr,55888,192,2393313,1,2,Active Shallow Crust,128.8963,89.96744,0.0,08/16/9624 +-2.10026,43.36391,2448,12,8,13,46,15,3.85,5.0,fr,55889,48,2393316,1,2,Active Shallow Crust,0.0,89.98962,0.0,12/08/2448 +-2.10026,43.36391,1309,4,13,6,56,40,3.85,5.0,fr,55890,26,2393316,1,2,Active Shallow Crust,0.0,89.98962,0.0,04/13/1309 +-2.10026,43.36391,3624,3,22,11,44,13,3.85,27.5,fr,55891,72,2393318,1,1,Active Shallow Crust,0.0,89.98962,0.0,03/22/3624 +-2.10026,43.36391,5899,3,18,7,27,21,3.95,5.0,fr,55892,117,2393328,1,1,Active Shallow Crust,0.0,89.99075,0.0,03/18/5899 +-2.10026,43.36391,465,6,1,8,1,0,3.95,27.5,fr,55893,9,2393330,1,1,Active Shallow Crust,0.0,89.99075,0.0,06/01/0465 +-2.10026,43.36391,1017,8,26,21,16,17,4.25,5.0,fr,55894,20,2393373,1,1,Active Shallow Crust,128.8945,89.98109,0.0,08/26/1017 +-2.10026,43.36391,1399,10,30,17,23,58,4.45,27.5,fr,55895,27,2393390,1,1,Active Shallow Crust,0.0,89.98959,0.0,10/30/1399 +-2.10026,43.36391,4204,5,30,6,46,37,5.45,15.0,fr,55896,84,2393515,1,1,Active Shallow Crust,0.0,89.99001,-90.0,05/30/4204 +7.90558,45.77007,5833,1,7,5,44,2,3.55,27.5,fr,55897,116,2393765,1,1,Active Shallow Crust,240.0119,57.99884,0.0,01/07/5833 +7.90558,45.77007,4227,1,14,1,58,17,3.65,5.0,fr,55898,84,2393772,1,2,Active Shallow Crust,0.0,89.98746,0.0,01/14/4227 +7.90558,45.77007,179,3,8,5,31,4,3.65,5.0,fr,55899,3,2393772,1,2,Active Shallow Crust,0.0,89.98746,0.0,03/08/0179 +7.90558,45.77007,4569,12,16,14,34,6,3.65,5.0,fr,55900,91,2393775,1,1,Active Shallow Crust,239.9999,58.01315,0.0,12/16/4569 +7.90558,45.77007,4746,12,14,20,59,49,3.75,5.0,fr,55901,94,2393784,1,3,Active Shallow Crust,0.0,89.98882,0.0,12/14/4746 +7.90558,45.77007,1309,6,10,16,0,32,3.75,5.0,fr,55902,26,2393784,1,3,Active Shallow Crust,0.0,89.98882,0.0,06/10/1309 +7.90558,45.77007,7251,2,9,3,18,36,3.75,5.0,fr,55903,145,2393784,1,3,Active Shallow Crust,0.0,89.98882,0.0,02/09/7251 +7.90558,45.77007,9622,1,27,4,22,47,3.75,15.0,fr,55904,192,2393785,1,1,Active Shallow Crust,0.0,89.98882,0.0,01/27/9622 +7.90558,45.77007,6224,7,20,22,15,22,3.75,5.0,fr,55905,124,2393787,1,1,Active Shallow Crust,240.0093,58.01651,0.0,07/20/6224 +7.90558,45.77007,8926,12,7,12,31,4,3.85,15.0,fr,55906,178,2393797,1,1,Active Shallow Crust,0.0,89.99004,0.0,12/07/8926 +7.90558,45.77007,5523,2,5,12,34,23,3.85,5.0,fr,55907,110,2393799,1,1,Active Shallow Crust,240.0113,57.99793,0.0,02/05/5523 +7.90558,45.77007,8115,8,14,12,59,13,3.95,5.0,fr,55908,162,2393811,1,2,Active Shallow Crust,240.0205,58.005,0.0,08/14/8115 +7.90558,45.77007,3020,2,18,23,40,9,3.95,5.0,fr,55909,60,2393811,1,2,Active Shallow Crust,240.0205,58.005,0.0,02/18/3020 +7.90558,45.77007,8689,11,19,18,17,23,3.95,15.0,fr,55910,173,2393815,1,1,Active Shallow Crust,0.0,89.99102,-90.0,11/19/8689 +7.90558,45.77007,2942,1,8,6,7,2,4.25,15.0,fr,55911,58,2393845,1,1,Active Shallow Crust,0.0,89.99057,0.0,01/08/2942 +7.90558,45.77007,6921,10,10,22,20,12,4.65,15.0,fr,55912,138,2393893,1,1,Active Shallow Crust,0.0,89.99009,0.0,10/10/6921 +1.24362,51.76812,675,2,11,4,11,58,3.65,5.0,fr,55913,13,2394255,1,1,Active Shallow Crust,240.0018,58.01301,0.0,02/11/0675 +1.24362,51.76812,4974,2,5,19,35,36,3.65,5.0,fr,55914,99,2394258,1,1,Active Shallow Crust,0.0,89.99015,-90.0,02/05/4974 +-1.79095,46.41605,6125,7,15,10,29,15,3.55,5.0,fr,55915,122,2394720,1,1,Active Shallow Crust,0.0,89.98957,0.0,07/15/6125 +-1.79095,46.41605,7418,1,3,9,35,14,3.65,15.0,fr,55916,148,2394739,1,1,Active Shallow Crust,0.0,89.9906,-90.0,01/03/7418 +-1.79095,46.41605,1254,3,24,8,48,2,3.75,15.0,fr,55917,25,2394748,1,1,Active Shallow Crust,240.0083,58.01744,0.0,03/24/1254 +-1.79095,46.41605,6525,5,23,21,35,9,4.05,5.0,fr,55918,130,2394789,1,1,Active Shallow Crust,128.8906,89.99364,0.0,05/23/6525 +-0.41399,47.87571,3098,12,7,0,57,9,3.55,5.0,fr,55919,61,2395200,1,1,Active Shallow Crust,0.0,89.98985,0.0,12/07/3098 +-0.41399,47.87571,6825,7,7,20,47,2,3.55,15.0,fr,55920,136,2395201,1,1,Active Shallow Crust,0.0,89.98985,0.0,07/07/6825 +-0.41399,47.87571,202,6,21,14,50,24,3.55,15.0,fr,55921,4,2395210,1,1,Active Shallow Crust,128.896,89.99387,0.0,06/21/0202 +-0.41399,47.87571,902,8,20,20,49,19,3.65,15.0,fr,55922,18,2395219,1,1,Active Shallow Crust,0.0,89.99009,-90.0,08/20/0902 +-0.41399,47.87571,3822,1,22,21,5,32,3.75,5.0,fr,55923,76,2395224,1,1,Active Shallow Crust,0.0,89.98993,0.0,01/22/3822 +-0.41399,47.87571,4737,7,6,12,20,39,3.85,5.0,fr,55924,94,2395236,1,2,Active Shallow Crust,0.0,89.99013,0.0,07/06/4737 +-0.41399,47.87571,5698,9,22,4,54,15,3.85,5.0,fr,55925,113,2395236,1,2,Active Shallow Crust,0.0,89.99013,0.0,09/22/5698 +-0.41399,47.87571,6466,7,27,13,12,9,3.95,5.0,fr,55926,129,2395248,1,1,Active Shallow Crust,0.0,89.99013,0.0,07/27/6466 +-0.41399,47.87571,6678,6,24,21,45,33,3.95,15.0,fr,55927,133,2395258,1,1,Active Shallow Crust,128.9002,89.99374,0.0,06/24/6678 +-0.41399,47.87571,8194,9,6,22,11,28,4.35,5.0,fr,55928,163,2395305,1,1,Active Shallow Crust,128.8975,89.98278,0.0,09/06/8194 +-0.41399,47.87571,9810,4,10,3,54,26,5.15,5.0,fr,55929,196,2395392,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/10/9810 +-0.41399,47.87571,2870,12,20,8,25,57,5.75,15.0,fr,55930,57,2395465,1,1,Active Shallow Crust,0.0,89.98999,0.0,12/20/2870 +-5.00757,46.90926,5749,10,26,7,30,22,3.95,15.0,fr,55931,114,2395729,1,1,Active Shallow Crust,0.0,89.99131,0.0,10/26/5749 +4.04349,45.27908,5385,6,26,7,28,9,3.65,5.0,fr,55932,107,2396172,1,1,Active Shallow Crust,0.0,89.98735,0.0,06/26/5385 +4.04349,45.27908,8476,6,12,8,25,22,3.65,15.0,fr,55933,169,2396173,1,1,Active Shallow Crust,0.0,89.98735,0.0,06/12/8476 +4.04349,45.27908,8257,10,4,2,2,57,3.65,5.0,fr,55934,165,2396175,1,1,Active Shallow Crust,240.0008,58.01303,0.0,10/04/8257 +4.04349,45.27908,5507,3,5,8,58,39,3.75,27.5,fr,55935,110,2396189,1,1,Active Shallow Crust,240.0083,58.01743,0.0,03/05/5507 +4.04349,45.27908,7947,7,23,1,43,23,3.75,15.0,fr,55936,158,2396191,1,1,Active Shallow Crust,0.0,89.98859,-90.0,07/23/7947 +4.04349,45.27908,2770,1,16,14,57,10,3.85,5.0,fr,55937,55,2396205,1,1,Active Shallow Crust,128.8961,89.99246,0.0,01/16/2770 +4.04349,45.27908,6810,11,27,9,39,38,3.95,5.0,fr,55938,136,2396217,1,1,Active Shallow Crust,128.9013,89.99329,0.0,11/27/6810 +4.04349,45.27908,7746,8,13,12,46,18,4.05,5.0,fr,55939,154,2396220,1,2,Active Shallow Crust,0.0,89.98803,0.0,08/13/7746 +4.04349,45.27908,8165,8,1,0,8,21,4.05,5.0,fr,55940,163,2396220,1,2,Active Shallow Crust,0.0,89.98803,0.0,08/01/8165 +4.04349,45.27908,4913,8,1,7,6,32,4.45,5.0,fr,55941,98,2396268,1,1,Active Shallow Crust,0.0,89.98993,0.0,08/01/4913 +4.04349,45.27908,1276,9,16,13,54,33,4.45,27.5,fr,55942,25,2396270,1,1,Active Shallow Crust,0.0,89.98993,0.0,09/16/1276 +4.04349,45.27908,8376,4,21,15,14,28,4.55,5.0,fr,55943,167,2396289,1,1,Active Shallow Crust,128.8947,89.98558,0.0,04/21/8376 +4.04349,45.27908,9462,6,5,23,6,38,5.05,27.5,fr,55944,189,2396345,1,1,Active Shallow Crust,240.0216,57.99756,0.0,06/05/9462 +4.043494,45.27908,8757,11,27,22,39,27,6.25,6.744814,fr,55945,175,2396484,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/27/8757 +3.04751,50.5332,5430,12,28,0,7,51,3.55,15.0,fr,55946,108,2396641,1,1,Active Shallow Crust,0.0,89.99039,0.0,12/28/5430 +3.04751,50.5332,9790,7,17,7,30,47,3.75,5.0,fr,55947,195,2396664,1,1,Active Shallow Crust,0.0,89.98981,0.0,07/17/9790 +3.04751,50.5332,1321,2,23,0,38,45,3.75,5.0,fr,55948,26,2396667,1,1,Active Shallow Crust,240.0086,58.01801,0.0,02/23/1321 +3.04751,50.5332,283,6,7,0,10,25,3.75,15.0,fr,55949,5,2396671,1,1,Active Shallow Crust,0.0,89.9897,-90.0,06/07/0283 +3.04751,50.5332,273,8,4,0,38,0,3.85,15.0,fr,55950,5,2396683,1,1,Active Shallow Crust,0.0,89.99082,-90.0,08/04/0273 +3.04751,50.5332,9113,4,2,3,56,44,4.15,5.0,fr,55951,182,2396715,1,1,Active Shallow Crust,240.0091,57.99734,0.0,04/02/9113 +3.04751,50.5332,6953,5,2,4,48,28,4.25,15.0,fr,55952,139,2396728,1,1,Active Shallow Crust,240.0085,57.99415,0.0,05/02/6953 +3.9062,46.04034,1385,8,4,23,11,6,3.55,5.0,fr,55953,27,2397120,1,1,Active Shallow Crust,0.0,89.9895,0.0,08/04/1385 +3.9062,46.04034,3550,3,2,11,25,25,3.55,15.0,fr,55954,70,2397124,1,1,Active Shallow Crust,240.0122,57.99829,0.0,03/02/3550 +3.9062,46.04034,3272,6,1,23,16,1,3.75,5.0,fr,55955,65,2397144,1,1,Active Shallow Crust,0.0,89.98888,0.0,06/01/3272 +3.9062,46.04034,4308,1,17,5,30,20,3.85,5.0,fr,55956,86,2397156,1,1,Active Shallow Crust,0.0,89.99009,0.0,01/17/4308 +3.9062,46.04034,2221,4,8,6,23,18,3.95,15.0,fr,55957,44,2397169,1,1,Active Shallow Crust,0.0,89.98896,0.0,04/08/2221 +3.9062,46.04034,4041,6,18,0,7,2,6.35,15.0,fr,55958,80,2397457,1,1,Active Shallow Crust,0.0,89.98996,0.0,06/18/4041 +3.23921,45.55051,1951,3,9,23,2,33,3.55,5.0,fr,55959,39,2397600,1,2,Active Shallow Crust,0.0,89.98941,0.0,03/09/1951 +3.23921,45.55051,7108,1,2,12,59,7,3.55,5.0,fr,55960,142,2397600,1,2,Active Shallow Crust,0.0,89.98941,0.0,01/02/7108 +3.23921,45.55051,5164,6,27,14,18,19,3.55,5.0,fr,55961,103,2397603,1,1,Active Shallow Crust,240.0122,57.99835,0.0,06/27/5164 +3.23921,45.55051,2819,3,27,21,58,7,3.55,15.0,fr,55962,56,2397604,1,1,Active Shallow Crust,240.0122,57.99835,0.0,03/27/2819 +3.23921,45.55051,7432,8,4,11,36,10,3.55,5.0,fr,55963,148,2397606,1,2,Active Shallow Crust,0.0,89.98929,-90.0,08/04/7432 +3.23921,45.55051,7718,7,23,16,41,32,3.55,5.0,fr,55964,154,2397606,1,2,Active Shallow Crust,0.0,89.98929,-90.0,07/23/7718 +3.23921,45.55051,2417,11,7,12,15,29,3.55,15.0,fr,55965,48,2397607,1,1,Active Shallow Crust,0.0,89.98929,-90.0,11/07/2417 +3.23921,45.55051,6319,7,26,20,56,35,3.65,27.5,fr,55966,126,2397614,1,1,Active Shallow Crust,0.0,89.99056,0.0,07/26/6319 +3.23921,45.55051,1033,12,11,8,10,55,3.65,15.0,fr,55967,20,2397622,1,1,Active Shallow Crust,128.9007,89.96351,0.0,12/11/1033 +3.23921,45.55051,1492,8,8,12,18,56,3.75,15.0,fr,55968,29,2397625,1,1,Active Shallow Crust,0.0,89.98878,0.0,08/08/1492 +3.23921,45.55051,9244,7,3,16,27,31,3.85,5.0,fr,55969,184,2397636,1,2,Active Shallow Crust,0.0,89.99,0.0,07/03/9244 +3.23921,45.55051,8508,5,17,18,46,7,3.85,5.0,fr,55970,170,2397636,1,2,Active Shallow Crust,0.0,89.99,0.0,05/17/8508 +3.23921,45.55051,2500,10,28,5,37,5,3.95,15.0,fr,55971,49,2397652,1,1,Active Shallow Crust,240.0193,58.00521,0.0,10/28/2500 +3.23921,45.55051,2192,8,4,17,22,51,4.05,5.0,fr,55972,43,2397660,1,2,Active Shallow Crust,0.0,89.99007,0.0,08/04/2192 +3.23921,45.55051,176,8,16,9,41,8,4.05,5.0,fr,55973,3,2397660,1,2,Active Shallow Crust,0.0,89.99007,0.0,08/16/0176 +3.23921,45.55051,9424,11,3,9,46,19,4.05,27.5,fr,55974,188,2397662,1,2,Active Shallow Crust,0.0,89.99007,0.0,11/03/9424 +3.23921,45.55051,2218,8,27,20,28,55,4.05,27.5,fr,55975,44,2397662,1,2,Active Shallow Crust,0.0,89.99007,0.0,08/27/2218 +3.23921,45.55051,2190,12,20,14,49,49,4.15,15.0,fr,55976,43,2397676,1,1,Active Shallow Crust,240.0084,57.9973,0.0,12/20/2190 +3.23921,45.55051,734,10,22,8,9,34,4.25,5.0,fr,55977,14,2397687,1,1,Active Shallow Crust,240.0076,57.99379,0.0,10/22/0734 +3.23921,45.55051,5035,6,16,4,44,13,4.55,5.0,fr,55978,100,2397720,1,1,Active Shallow Crust,0.0,89.98995,0.0,06/16/5035 +3.23921,45.55051,4987,2,1,15,30,10,4.85,5.0,fr,55979,99,2397756,1,1,Active Shallow Crust,0.0,89.98972,0.0,02/01/4987 +3.23921,45.55051,3008,8,13,18,20,39,5.15,15.0,fr,55980,60,2397799,1,1,Active Shallow Crust,0.0,89.98981,-90.0,08/13/3008 +3.15438,40.20807,6870,10,17,4,50,46,3.65,5.0,fr,55981,137,2398092,1,1,Active Shallow Crust,0.0,89.98971,0.0,10/17/6870 +3.15438,40.20807,3275,1,29,5,57,35,3.85,27.5,fr,55982,65,2398118,1,1,Active Shallow Crust,0.0,89.9891,0.0,01/29/3275 +3.15438,40.20807,3980,9,28,8,19,7,3.85,5.0,fr,55983,79,2398119,1,1,Active Shallow Crust,240.0101,57.99763,0.0,09/28/3980 +3.15438,40.20807,424,9,12,5,10,36,4.35,15.0,fr,55984,8,2398180,1,1,Active Shallow Crust,240.007,57.99586,0.0,09/12/0424 +6.82585,51.46715,7369,6,16,14,4,36,3.65,5.0,fr,55985,147,2398575,1,1,Active Shallow Crust,240.002,58.01291,0.0,06/16/7369 +-1.63249,47.51428,152,10,28,17,5,18,3.55,5.0,fr,55986,3,2399040,1,5,Active Shallow Crust,0.0,89.98978,0.0,10/28/0152 +-1.63249,47.51428,5446,6,2,4,56,28,3.55,5.0,fr,55987,108,2399040,1,5,Active Shallow Crust,0.0,89.98978,0.0,06/02/5446 +-1.63249,47.51428,4307,6,26,8,54,25,3.55,5.0,fr,55988,86,2399040,1,5,Active Shallow Crust,0.0,89.98978,0.0,06/26/4307 +-1.63249,47.51428,594,11,10,9,53,55,3.55,5.0,fr,55989,11,2399040,1,5,Active Shallow Crust,0.0,89.98978,0.0,11/10/0594 +-1.63249,47.51428,3045,4,28,10,18,25,3.55,5.0,fr,55990,60,2399040,1,5,Active Shallow Crust,0.0,89.98978,0.0,04/28/3045 +-1.63249,47.51428,9838,1,3,15,49,51,3.55,15.0,fr,55991,196,2399041,1,1,Active Shallow Crust,0.0,89.98978,0.0,01/03/9838 +-1.63249,47.51428,2950,1,12,12,50,59,3.65,5.0,fr,55992,58,2399052,1,1,Active Shallow Crust,0.0,89.98938,0.0,01/12/2950 +-1.63249,47.51428,1356,1,21,16,22,37,3.65,15.0,fr,55993,27,2399062,1,1,Active Shallow Crust,128.9003,89.96355,0.0,01/21/1356 +-1.63249,47.51428,6271,5,25,7,54,18,3.75,5.0,fr,55994,125,2399064,1,2,Active Shallow Crust,0.0,89.99053,0.0,05/25/6271 +-1.63249,47.51428,5009,7,6,20,14,58,3.75,5.0,fr,55995,100,2399064,1,2,Active Shallow Crust,0.0,89.99053,0.0,07/06/5009 +-1.63249,47.51428,1670,1,5,22,34,58,3.85,15.0,fr,55996,33,2399077,1,1,Active Shallow Crust,0.0,89.99036,0.0,01/05/1670 +-1.63249,47.51428,7691,1,24,10,54,23,3.95,15.0,fr,55997,153,2399089,1,1,Active Shallow Crust,0.0,89.99033,0.0,01/24/7691 +-1.63249,47.51428,5249,12,31,3,32,1,3.95,27.5,fr,55998,104,2399090,1,2,Active Shallow Crust,0.0,89.99033,0.0,12/31/5249 +-1.63249,47.51428,8482,11,1,3,46,21,3.95,27.5,fr,55999,169,2399090,1,2,Active Shallow Crust,0.0,89.99033,0.0,11/01/8482 +-1.63249,47.51428,9135,12,23,15,18,11,4.05,5.0,fr,56000,182,2399100,1,2,Active Shallow Crust,0.0,89.99043,0.0,12/23/9135 +-1.63249,47.51428,1659,6,16,23,28,7,4.05,5.0,fr,56001,33,2399100,1,2,Active Shallow Crust,0.0,89.99043,0.0,06/16/1659 +-1.63249,47.51428,2067,11,8,12,14,9,4.05,15.0,fr,56002,41,2399101,1,1,Active Shallow Crust,0.0,89.99043,0.0,11/08/2067 +-1.63249,47.51428,6794,2,13,16,51,1,4.05,5.0,fr,56003,135,2399103,1,1,Active Shallow Crust,240.0061,58.00582,0.0,02/13/6794 +-1.63249,47.51428,6789,2,25,5,17,4,4.15,5.0,fr,56004,135,2399115,1,1,Active Shallow Crust,240.0087,57.99725,0.0,02/25/6789 +-1.63249,47.51428,6587,12,14,12,37,48,4.35,5.0,fr,56005,131,2399136,1,1,Active Shallow Crust,0.0,89.98983,0.0,12/14/6587 +-1.63249,47.51428,8343,7,11,17,25,39,4.35,15.0,fr,56006,166,2399137,1,1,Active Shallow Crust,0.0,89.98983,0.0,07/11/8343 +-1.63249,47.51428,3884,9,25,12,17,55,4.45,5.0,fr,56007,77,2399148,1,1,Active Shallow Crust,0.0,89.98973,0.0,09/25/3884 +-1.63249,47.51428,1832,8,12,9,21,57,4.65,15.0,fr,56008,36,2399182,1,1,Active Shallow Crust,128.8908,89.98703,0.0,08/12/1832 +-1.63249,47.51428,9390,2,13,2,2,22,4.75,5.0,fr,56009,187,2399190,1,1,Active Shallow Crust,0.0,89.99005,-90.0,02/13/9390 +3.70101,40.5597,1917,7,8,22,49,33,3.85,5.0,fr,56010,38,2399556,1,1,Active Shallow Crust,0.0,89.98915,0.0,07/08/1917 +3.70101,40.5597,1831,5,10,2,1,1,4.35,15.0,fr,56011,36,2399623,1,1,Active Shallow Crust,0.0,89.99075,-90.0,05/10/1831 +7.38986,50.1799,3456,11,3,9,8,16,3.55,15.0,fr,56012,69,2400001,1,1,Active Shallow Crust,0.0,89.98708,0.0,11/03/3456 +7.38986,50.1799,9797,10,6,10,52,7,3.55,27.5,fr,56013,195,2400002,1,1,Active Shallow Crust,0.0,89.98708,0.0,10/06/9797 +7.38986,50.1799,189,12,21,11,42,57,3.55,5.0,fr,56014,3,2400006,1,1,Active Shallow Crust,0.0,89.98694,-90.0,12/21/0189 +7.38986,50.1799,1047,4,19,20,44,51,3.65,5.0,fr,56015,20,2400012,1,5,Active Shallow Crust,0.0,89.98849,0.0,04/19/1047 +7.38986,50.1799,2934,12,18,21,29,21,3.65,5.0,fr,56016,58,2400012,1,5,Active Shallow Crust,0.0,89.98849,0.0,12/18/2934 +7.38986,50.1799,6734,10,18,5,43,42,3.65,5.0,fr,56017,134,2400012,1,5,Active Shallow Crust,0.0,89.98849,0.0,10/18/6734 +7.38986,50.1799,5372,4,26,13,8,4,3.65,5.0,fr,56018,107,2400012,1,5,Active Shallow Crust,0.0,89.98849,0.0,04/26/5372 +7.38986,50.1799,4788,4,26,0,43,26,3.65,5.0,fr,56019,95,2400012,1,5,Active Shallow Crust,0.0,89.98849,0.0,04/26/4788 +7.38986,50.1799,6061,9,26,15,37,12,3.65,5.0,fr,56020,121,2400015,1,1,Active Shallow Crust,240.002,58.0123,0.0,09/26/6061 +7.38986,50.1799,5351,7,20,1,40,8,3.65,5.0,fr,56021,107,2400021,1,1,Active Shallow Crust,128.9003,89.96359,0.0,07/20/5351 +7.38986,50.1799,5907,7,25,10,43,52,3.65,27.5,fr,56022,118,2400023,1,1,Active Shallow Crust,128.9003,89.96359,0.0,07/25/5907 +7.38986,50.1799,4925,4,18,6,16,53,3.75,5.0,fr,56023,98,2400024,1,2,Active Shallow Crust,0.0,89.98974,0.0,04/18/4925 +7.38986,50.1799,4426,9,16,3,58,49,3.75,5.0,fr,56024,88,2400024,1,2,Active Shallow Crust,0.0,89.98974,0.0,09/16/4426 +7.38986,50.1799,7850,8,21,5,9,38,3.75,15.0,fr,56025,156,2400031,1,1,Active Shallow Crust,0.0,89.98962,-90.0,08/21/7850 +7.38986,50.1799,1106,10,13,8,49,25,3.85,5.0,fr,56026,22,2400036,1,2,Active Shallow Crust,0.0,89.99086,0.0,10/13/1106 +7.38986,50.1799,4403,4,24,3,9,36,3.85,5.0,fr,56027,88,2400036,1,2,Active Shallow Crust,0.0,89.99086,0.0,04/24/4403 +7.38986,50.1799,5559,6,26,6,23,59,3.85,15.0,fr,56028,111,2400037,1,1,Active Shallow Crust,0.0,89.99086,0.0,06/26/5559 +7.38986,50.1799,5700,4,11,2,16,33,3.95,27.5,fr,56029,113,2400050,1,1,Active Shallow Crust,0.0,89.99185,0.0,04/11/5700 +7.38986,50.1799,1045,1,18,18,41,47,3.95,5.0,fr,56030,20,2400051,1,1,Active Shallow Crust,240.0202,58.00558,0.0,01/18/1045 +7.38986,50.1799,2057,5,16,19,59,47,4.05,5.0,fr,56031,41,2400060,1,1,Active Shallow Crust,0.0,89.98911,0.0,05/16/2057 +7.38986,50.1799,1507,10,14,20,7,19,4.15,5.0,fr,56032,30,2400072,1,1,Active Shallow Crust,0.0,89.99029,0.0,10/14/1507 +7.38986,50.1799,2672,11,7,11,18,24,4.45,15.0,fr,56033,53,2400118,1,1,Active Shallow Crust,128.8917,89.99313,0.0,11/07/2672 +7.38986,50.1799,8771,3,28,1,14,9,4.65,15.0,fr,56034,175,2400133,1,1,Active Shallow Crust,0.0,89.9909,0.0,03/28/8771 +7.38986,50.1799,64,1,6,16,21,57,4.95,5.0,fr,56035,1,2400168,1,1,Active Shallow Crust,0.0,89.98969,0.0,01/06/0064 +7.38986,50.1799,7177,2,17,10,10,31,5.25,15.0,fr,56036,143,2400205,1,1,Active Shallow Crust,0.0,89.98996,0.0,02/17/7177 +-0.59234,46.78788,9254,2,23,0,43,2,3.55,5.0,fr,56037,185,2400960,1,2,Active Shallow Crust,0.0,89.98965,0.0,02/23/9254 +-0.59234,46.78788,2136,8,15,14,12,11,3.55,5.0,fr,56038,42,2400960,1,2,Active Shallow Crust,0.0,89.98965,0.0,08/15/2136 +-0.59234,46.78788,8064,4,10,0,43,30,3.55,15.0,fr,56039,161,2400967,1,1,Active Shallow Crust,0.0,89.99039,-90.0,04/10/8064 +-0.59234,46.78788,3994,3,25,6,45,30,3.65,15.0,fr,56040,79,2400973,1,2,Active Shallow Crust,0.0,89.99,0.0,03/25/3994 +-0.59234,46.78788,4698,4,17,1,15,31,3.65,15.0,fr,56041,93,2400973,1,2,Active Shallow Crust,0.0,89.99,0.0,04/17/4698 +-0.59234,46.78788,1538,10,2,11,29,38,3.65,5.0,fr,56042,30,2400975,1,3,Active Shallow Crust,240.0011,58.0129,0.0,10/02/1538 +-0.59234,46.78788,3637,1,23,5,1,30,3.65,5.0,fr,56043,72,2400975,1,3,Active Shallow Crust,240.0011,58.0129,0.0,01/23/3637 +-0.59234,46.78788,3794,1,17,5,40,3,3.65,5.0,fr,56044,75,2400975,1,3,Active Shallow Crust,240.0011,58.0129,0.0,01/17/3794 +-0.59234,46.78788,8614,5,13,3,45,59,3.65,5.0,fr,56045,172,2400981,1,1,Active Shallow Crust,128.9004,89.96353,0.0,05/13/8614 +-0.59234,46.78788,8533,7,18,0,48,6,3.65,27.5,fr,56046,170,2400983,1,1,Active Shallow Crust,128.9004,89.96353,0.0,07/18/8533 +-0.59234,46.78788,8867,9,19,14,40,28,3.85,5.0,fr,56047,177,2400996,1,1,Active Shallow Crust,0.0,89.99023,0.0,09/19/8867 +-0.59234,46.78788,829,7,2,12,2,2,3.95,15.0,fr,56048,16,2401009,1,1,Active Shallow Crust,0.0,89.9902,0.0,07/02/0829 +-0.59234,46.78788,6878,11,29,20,16,18,4.05,5.0,fr,56049,137,2401023,1,1,Active Shallow Crust,240.006,58.00582,0.0,11/29/6878 +-0.59234,46.78788,7041,5,2,12,33,43,4.25,5.0,fr,56050,140,2401050,1,1,Active Shallow Crust,0.0,89.98986,-90.0,05/02/7041 +-0.59234,46.78788,7009,3,18,7,15,56,4.25,5.0,fr,56051,140,2401053,1,1,Active Shallow Crust,128.8943,89.9809,0.0,03/18/7009 +-0.59234,46.78788,6087,8,7,16,42,8,4.45,5.0,fr,56052,121,2401077,1,1,Active Shallow Crust,128.8921,89.99372,0.0,08/07/6087 +-0.59234,46.78788,5123,12,10,16,34,28,4.55,5.0,fr,56053,102,2401080,1,3,Active Shallow Crust,0.0,89.9899,0.0,12/10/5123 +-0.59234,46.78788,8883,7,4,11,20,17,4.55,5.0,fr,56054,177,2401080,1,3,Active Shallow Crust,0.0,89.9899,0.0,07/04/8883 +-0.59234,46.78788,4651,4,4,1,45,56,4.55,5.0,fr,56055,93,2401080,1,3,Active Shallow Crust,0.0,89.9899,0.0,04/04/4651 +2.62354,43.74907,2586,1,24,6,50,20,3.65,5.0,fr,56056,51,2401458,1,1,Active Shallow Crust,0.0,89.99015,-90.0,01/24/2586 +2.62354,43.74907,489,3,21,7,57,32,3.75,5.0,fr,56057,9,2401464,1,1,Active Shallow Crust,0.0,89.99132,0.0,03/21/0489 +2.62354,43.74907,1794,11,1,10,23,56,3.85,5.0,fr,56058,35,2401476,1,1,Active Shallow Crust,0.0,89.98969,0.0,11/01/1794 +2.62354,43.74907,1848,8,31,13,30,48,3.85,5.0,fr,56059,36,2401482,1,1,Active Shallow Crust,0.0,89.98956,-90.0,08/31/1848 +-3.00072,48.88357,7724,2,2,14,13,9,3.55,5.0,fr,56060,154,2401920,1,1,Active Shallow Crust,0.0,89.99005,0.0,02/02/7724 +-3.00072,48.88357,363,9,10,22,55,51,3.65,15.0,fr,56061,7,2401939,1,1,Active Shallow Crust,0.0,89.99104,-90.0,09/10/0363 +-3.00072,48.88357,8213,4,15,3,41,28,3.75,5.0,fr,56062,164,2401944,1,1,Active Shallow Crust,0.0,89.98946,0.0,04/15/8213 +-3.00072,48.88357,7031,7,30,0,15,26,3.85,27.5,fr,56063,140,2401958,1,1,Active Shallow Crust,0.0,89.99061,0.0,07/30/7031 +-3.00072,48.88357,9214,10,12,12,27,31,4.05,5.0,fr,56064,184,2401980,1,1,Active Shallow Crust,0.0,89.99068,0.0,10/12/9214 +-3.00072,48.88357,2225,12,3,8,58,32,4.05,5.0,fr,56065,44,2401983,1,1,Active Shallow Crust,240.0061,58.00624,0.0,12/03/2225 +-3.00072,48.88357,9253,7,30,21,58,6,4.15,5.0,fr,56066,185,2401992,1,2,Active Shallow Crust,0.0,89.99003,0.0,07/30/9253 +-3.00072,48.88357,8196,12,4,0,37,34,4.15,5.0,fr,56067,163,2401992,1,2,Active Shallow Crust,0.0,89.99003,0.0,12/04/8196 +-3.00072,48.88357,7157,8,9,23,25,17,4.25,5.0,fr,56068,143,2402004,1,1,Active Shallow Crust,0.0,89.98963,0.0,08/09/7157 +-3.00072,48.88357,6397,7,14,20,21,9,4.45,15.0,fr,56069,127,2402029,1,1,Active Shallow Crust,359.9994,89.99059,0.0,07/14/6397 +-3.00072,48.88357,9352,11,10,6,23,42,4.95,5.0,fr,56070,187,2402088,1,1,Active Shallow Crust,0.0,89.99007,0.0,11/10/9352 +0.89454,41.07147,2421,4,10,10,34,30,3.55,5.0,fr,56071,48,2402400,1,2,Active Shallow Crust,0.0,89.98955,0.0,04/10/2421 +0.89454,41.07147,7510,12,31,4,31,13,3.55,5.0,fr,56072,150,2402400,1,2,Active Shallow Crust,0.0,89.98955,0.0,12/31/7510 +0.89454,41.07147,3993,7,5,5,0,54,3.65,5.0,fr,56073,79,2402421,1,1,Active Shallow Crust,128.9007,89.96349,0.0,07/05/3993 +0.89454,41.07147,954,5,11,14,29,0,3.75,5.0,fr,56074,19,2402424,1,2,Active Shallow Crust,0.0,89.99019,0.0,05/11/0954 +0.89454,41.07147,8634,12,29,20,12,29,3.75,5.0,fr,56075,172,2402424,1,2,Active Shallow Crust,0.0,89.99019,0.0,12/29/8634 +0.89454,41.07147,3536,10,27,1,42,0,3.75,5.0,fr,56076,70,2402427,1,1,Active Shallow Crust,240.0077,58.01744,0.0,10/27/3536 +0.89454,41.07147,5723,7,14,0,48,50,3.85,15.0,fr,56077,114,2402446,1,1,Active Shallow Crust,128.8962,89.99394,0.0,07/14/5723 +0.89454,41.07147,3325,3,6,6,51,19,3.95,5.0,fr,56078,66,2402451,1,1,Active Shallow Crust,240.019,58.00486,0.0,03/06/3325 +0.89454,41.07147,2449,10,11,18,11,18,4.55,15.0,fr,56079,48,2402521,1,1,Active Shallow Crust,0.0,89.99008,0.0,10/11/2449 +3.84331,44.59416,3619,11,30,7,35,18,3.55,15.0,fr,56080,72,2402881,1,1,Active Shallow Crust,0.0,89.98923,0.0,11/30/3619 +3.84331,44.59416,1566,7,11,2,55,40,3.65,5.0,fr,56081,31,2402892,1,1,Active Shallow Crust,0.0,89.9904,0.0,07/11/1566 +3.84331,44.59416,4826,7,3,11,34,58,3.65,15.0,fr,56082,96,2402893,1,1,Active Shallow Crust,0.0,89.9904,0.0,07/03/4826 +3.84331,44.59416,2251,2,13,13,58,10,3.75,5.0,fr,56083,45,2402904,1,2,Active Shallow Crust,0.0,89.98859,0.0,02/13/2251 +3.84331,44.59416,4245,8,18,23,49,12,3.75,5.0,fr,56084,84,2402904,1,2,Active Shallow Crust,0.0,89.98859,0.0,08/18/4245 +3.84331,44.59416,7557,7,18,0,53,13,3.85,15.0,fr,56085,151,2402917,1,1,Active Shallow Crust,0.0,89.98983,0.0,07/18/7557 +3.84331,44.59416,6152,9,6,12,40,53,3.85,5.0,fr,56086,123,2402922,1,1,Active Shallow Crust,0.0,89.98972,-90.0,09/06/6152 +3.84331,44.59416,6474,12,31,4,23,23,3.95,5.0,fr,56087,129,2402928,1,1,Active Shallow Crust,0.0,89.99094,0.0,12/31/6474 +3.84331,44.59416,7080,4,13,14,0,26,3.95,15.0,fr,56088,141,2402929,1,1,Active Shallow Crust,0.0,89.99094,0.0,04/13/7080 +3.84331,44.59416,5418,9,6,1,20,2,3.95,5.0,fr,56089,108,2402931,1,1,Active Shallow Crust,240.0193,58.00512,0.0,09/06/5418 +3.84331,44.59416,5403,1,12,4,14,56,3.95,15.0,fr,56090,108,2402938,1,1,Active Shallow Crust,128.9011,89.9932,0.0,01/12/5403 +3.84331,44.59416,2193,5,7,12,32,3,4.15,5.0,fr,56091,43,2402952,1,2,Active Shallow Crust,0.0,89.9892,0.0,05/07/2193 +3.84331,44.59416,8130,10,14,15,59,31,4.15,5.0,fr,56092,162,2402952,1,2,Active Shallow Crust,0.0,89.9892,0.0,10/14/8130 +3.84331,44.59416,5271,7,9,3,49,30,4.25,5.0,fr,56093,105,2402964,1,1,Active Shallow Crust,0.0,89.99038,0.0,07/09/5271 +3.84331,44.59416,3183,4,3,5,57,48,4.45,27.5,fr,56094,63,2402999,1,1,Active Shallow Crust,128.8928,89.99363,0.0,04/03/3183 +4.01495,44.2238,8634,7,15,20,14,55,3.55,27.5,fr,56095,172,2403371,1,1,Active Shallow Crust,128.8977,89.99277,0.0,07/15/8634 +4.01495,44.2238,2617,12,7,17,14,48,3.65,15.0,fr,56096,52,2403373,1,1,Active Shallow Crust,0.0,89.98712,0.0,12/07/2617 +4.01495,44.2238,7950,9,7,1,12,32,3.75,5.0,fr,56097,158,2403384,1,1,Active Shallow Crust,0.0,89.98852,0.0,09/07/7950 +4.01495,44.2238,5329,5,24,11,49,8,3.95,15.0,fr,56098,106,2403418,1,1,Active Shallow Crust,128.9008,89.99316,0.0,05/24/5329 +4.01495,44.2238,6085,5,21,21,30,44,4.25,5.0,fr,56099,121,2403453,1,1,Active Shallow Crust,128.894,89.98087,0.0,05/21/6085 +-3.80771,48.54059,1132,2,19,18,16,29,3.55,5.0,fr,56100,22,2403840,1,1,Active Shallow Crust,0.0,89.98998,0.0,02/19/1132 +-3.80771,48.54059,2743,5,27,11,4,28,3.55,15.0,fr,56101,54,2403841,1,1,Active Shallow Crust,0.0,89.98998,0.0,05/27/2743 +-3.80771,48.54059,9575,8,27,5,0,24,3.55,15.0,fr,56102,191,2403850,1,1,Active Shallow Crust,128.8951,89.995,0.0,08/27/9575 +-3.80771,48.54059,2644,4,29,14,39,28,3.75,5.0,fr,56103,52,2403867,1,1,Active Shallow Crust,240.0082,58.01767,0.0,04/29/2644 +-3.80771,48.54059,182,2,2,16,24,43,3.85,5.0,fr,56104,3,2403876,1,1,Active Shallow Crust,0.0,89.99055,0.0,02/02/0182 +-3.80771,48.54059,1486,8,20,3,6,37,3.85,5.0,fr,56105,29,2403879,1,1,Active Shallow Crust,240.011,57.99791,0.0,08/20/1486 +-3.80771,48.54059,1495,4,28,10,49,16,3.95,5.0,fr,56106,29,2403891,1,1,Active Shallow Crust,240.0201,58.00528,0.0,04/28/1495 +-3.80771,48.54059,2007,5,24,23,25,43,4.15,5.0,fr,56107,40,2403912,1,1,Active Shallow Crust,0.0,89.98996,0.0,05/24/2007 +-3.80771,48.54059,5797,12,14,3,39,9,4.35,15.0,fr,56108,115,2403937,1,1,Active Shallow Crust,0.0,89.98936,0.0,12/14/5797 +-3.80771,48.54059,309,7,5,18,35,27,4.85,15.0,fr,56109,6,2403997,1,1,Active Shallow Crust,0.0,89.99028,0.0,07/05/0309 +2.98386,44.06948,435,11,1,8,23,27,3.55,5.0,fr,56110,8,2404320,1,1,Active Shallow Crust,0.0,89.98914,0.0,11/01/0435 +2.98386,44.06948,4679,5,12,10,43,14,3.55,5.0,fr,56111,93,2404329,1,1,Active Shallow Crust,128.8961,89.99457,0.0,05/12/4679 +2.98386,44.06948,4731,10,12,13,14,6,3.65,5.0,fr,56112,94,2404332,1,1,Active Shallow Crust,0.0,89.99031,0.0,10/12/4731 +2.98386,44.06948,7605,4,19,2,32,49,3.75,5.0,fr,56113,152,2404344,1,1,Active Shallow Crust,0.0,89.99136,0.0,04/19/7605 +2.98386,44.06948,6882,7,21,6,44,18,3.85,15.0,fr,56114,137,2404357,1,1,Active Shallow Crust,0.0,89.98974,0.0,07/21/6882 +2.98386,44.06948,9926,4,30,21,26,58,3.95,5.0,fr,56115,198,2404368,1,1,Active Shallow Crust,0.0,89.99086,0.0,04/30/9926 +2.98386,44.06948,9293,10,22,23,46,36,4.15,5.0,fr,56116,185,2404392,1,1,Active Shallow Crust,0.0,89.98911,0.0,10/22/9293 +2.98386,44.06948,2100,12,2,10,10,22,4.35,5.0,fr,56117,41,2404416,1,1,Active Shallow Crust,0.0,89.98991,0.0,12/02/2100 +2.98386,44.06948,9290,4,29,0,39,54,4.35,15.0,fr,56118,185,2404417,1,1,Active Shallow Crust,0.0,89.98991,0.0,04/29/9290 +4.09644,44.36753,2663,2,24,8,10,18,3.95,5.0,fr,56119,53,2404854,1,1,Active Shallow Crust,0.0,89.9908,-90.0,02/24/2663 +4.09644,44.36753,2036,5,13,22,49,58,4.05,5.0,fr,56120,40,2404860,1,1,Active Shallow Crust,0.0,89.99189,0.0,05/13/2036 +4.09644,44.36753,5748,8,12,8,8,29,4.15,5.0,fr,56121,114,2404872,1,1,Active Shallow Crust,0.0,89.98916,0.0,08/12/5748 +4.09644,44.36753,4296,4,23,16,4,3,4.45,5.0,fr,56122,85,2404911,1,1,Active Shallow Crust,240.0047,57.99444,0.0,04/23/4296 +4.09644,44.36753,1645,11,23,21,45,15,4.55,27.5,fr,56123,32,2404922,1,1,Active Shallow Crust,0.0,89.99088,0.0,11/23/1645 +4.74375,49.96871,3832,2,27,13,25,49,3.55,5.0,fr,56124,76,2405280,1,1,Active Shallow Crust,0.0,89.98703,0.0,02/27/3832 +4.74375,49.96871,1999,9,7,14,55,16,3.55,15.0,fr,56125,39,2405281,1,1,Active Shallow Crust,0.0,89.98703,0.0,09/07/1999 +4.74375,49.96871,4055,6,21,9,54,7,3.65,5.0,fr,56126,81,2405292,1,2,Active Shallow Crust,0.0,89.98844,0.0,06/21/4055 +4.74375,49.96871,8771,3,2,15,34,46,3.65,5.0,fr,56127,175,2405292,1,2,Active Shallow Crust,0.0,89.98844,0.0,03/02/8771 +4.74375,49.96871,3299,10,8,11,57,58,3.85,15.0,fr,56128,65,2405323,1,1,Active Shallow Crust,0.0,89.99071,-90.0,10/08/3299 +4.74375,49.96871,1236,11,19,19,53,21,4.75,15.0,fr,56129,24,2405425,1,1,Active Shallow Crust,0.0,89.99023,0.0,11/19/1236 +0.56569,46.33582,1386,5,19,9,49,48,3.65,5.0,fr,56130,27,2405772,1,1,Active Shallow Crust,0.0,89.98991,0.0,05/19/1386 +0.56569,46.33582,1951,6,18,5,14,47,3.65,5.0,fr,56131,39,2405775,1,1,Active Shallow Crust,240.001,58.01297,0.0,06/18/1951 +0.56569,46.33582,7392,9,2,18,28,58,3.75,15.0,fr,56132,147,2405785,1,1,Active Shallow Crust,0.0,89.99032,0.0,09/02/7392 +0.56569,46.33582,5982,5,30,22,21,35,3.85,5.0,fr,56133,119,2405796,1,1,Active Shallow Crust,0.0,89.99014,0.0,05/30/5982 +0.56569,46.33582,9356,9,2,8,37,52,3.85,15.0,fr,56134,187,2405797,1,1,Active Shallow Crust,0.0,89.99014,0.0,09/02/9356 +0.56569,46.33582,4296,1,13,18,53,14,3.85,15.0,fr,56135,85,2405806,1,1,Active Shallow Crust,128.8957,89.99384,0.0,01/13/4296 +0.56569,46.33582,9008,12,6,18,4,12,3.95,5.0,fr,56136,180,2405808,1,1,Active Shallow Crust,0.0,89.99011,0.0,12/06/9008 +0.56569,46.33582,8766,10,8,6,38,39,3.95,15.0,fr,56137,175,2405809,1,1,Active Shallow Crust,0.0,89.99011,0.0,10/08/8766 +0.56569,46.33582,1582,4,19,8,26,25,4.15,5.0,fr,56138,31,2405832,1,1,Active Shallow Crust,0.0,89.98997,0.0,04/19/1582 +0.56569,46.33582,4290,1,6,16,12,37,4.25,5.0,fr,56139,85,2405844,1,1,Active Shallow Crust,0.0,89.98989,0.0,01/06/4290 +0.56569,46.33582,7054,2,19,17,8,48,4.45,5.0,fr,56140,141,2405868,1,1,Active Shallow Crust,0.0,89.99012,0.0,02/19/7054 +0.56569,46.33582,7494,2,9,7,51,37,4.55,5.0,fr,56141,149,2405880,1,1,Active Shallow Crust,0.0,89.99009,0.0,02/09/7494 +0.56569,46.33582,4735,10,15,22,25,6,5.55,5.0,fr,56142,94,2406000,1,1,Active Shallow Crust,0.0,89.98999,0.0,10/15/4735 +6.09645,49.52567,9896,11,17,22,32,40,5.15,5.0,fr,56143,197,2406438,1,1,Active Shallow Crust,0.0,89.9895,-90.0,11/17/9896 +4.77606,40.84482,8255,5,23,22,16,47,3.55,5.0,fr,56144,165,2406720,1,3,Active Shallow Crust,0.0,89.99237,0.0,05/23/8255 +4.77606,40.84482,2105,1,8,12,31,22,3.55,5.0,fr,56145,42,2406720,1,3,Active Shallow Crust,0.0,89.99237,0.0,01/08/2105 +4.77606,40.84482,240,10,9,8,28,47,3.55,5.0,fr,56146,4,2406720,1,3,Active Shallow Crust,0.0,89.99237,0.0,10/09/0240 +4.77606,40.84482,5749,3,30,7,25,59,3.75,5.0,fr,56147,114,2406744,1,1,Active Shallow Crust,0.0,89.98788,0.0,03/30/5749 +4.77606,40.84482,9396,11,5,12,11,44,3.95,15.0,fr,56148,187,2406769,1,1,Active Shallow Crust,0.0,89.99037,0.0,11/05/9396 +4.77606,40.84482,8372,6,6,12,51,18,4.05,15.0,fr,56149,167,2406781,1,1,Active Shallow Crust,0.0,89.99142,0.0,06/06/8372 +4.77606,40.84482,2242,1,21,22,30,30,4.35,5.0,fr,56150,44,2406819,1,1,Active Shallow Crust,240.0076,57.99588,0.0,01/21/2242 +4.77606,40.84482,2123,12,26,16,57,42,4.55,5.0,fr,56151,42,2406840,1,1,Active Shallow Crust,0.0,89.99035,0.0,12/26/2123 +4.77606,40.84482,2403,11,21,19,51,32,4.85,5.0,fr,56152,48,2406876,1,1,Active Shallow Crust,0.0,89.98975,0.0,11/21/2403 +3.81767,43.53297,3791,1,27,4,21,11,3.65,15.0,fr,56153,75,2407213,1,1,Active Shallow Crust,0.0,89.99023,0.0,01/27/3791 +3.81767,43.53297,9318,3,11,15,25,0,3.75,5.0,fr,56154,186,2407224,1,1,Active Shallow Crust,0.0,89.99129,0.0,03/11/9318 +3.81767,43.53297,1089,9,7,10,32,24,3.95,5.0,fr,56155,21,2407257,1,1,Active Shallow Crust,128.9009,89.99423,0.0,09/07/1089 +3.81767,43.53297,8697,2,28,17,15,47,3.95,15.0,fr,56156,173,2407258,1,1,Active Shallow Crust,128.9009,89.99423,0.0,02/28/8697 +3.81767,43.53297,3231,12,20,8,7,32,4.15,27.5,fr,56157,64,2407283,1,1,Active Shallow Crust,128.8978,89.99359,0.0,12/20/3231 +3.81767,43.53297,5909,6,15,2,15,49,4.25,5.0,fr,56158,118,2407287,1,1,Active Shallow Crust,240.007,57.99382,0.0,06/15/5909 +3.81767,43.53297,1935,3,13,9,29,58,5.35,5.0,fr,56159,38,2407419,1,1,Active Shallow Crust,240.023,57.99747,0.0,03/13/1935 +4.41752,40.52421,8949,6,15,2,58,5,3.85,5.0,fr,56160,178,2407722,1,1,Active Shallow Crust,0.0,89.98902,-90.0,06/15/8949 +4.41752,40.52421,6692,11,14,4,10,21,4.65,5.0,fr,56161,133,2407812,1,1,Active Shallow Crust,0.0,89.9892,0.0,11/14/6692 +1.38416,51.64407,6693,11,6,20,47,34,3.75,15.0,fr,56162,133,2408194,1,1,Active Shallow Crust,128.8959,89.96736,0.0,11/06/6693 +1.38416,51.64407,8534,7,4,18,42,57,4.05,5.0,fr,56163,170,2408223,1,1,Active Shallow Crust,240.0069,58.00593,0.0,07/04/8534 +1.38416,51.64407,6555,7,29,12,45,46,4.15,15.0,fr,56164,131,2408233,1,1,Active Shallow Crust,0.0,89.98981,0.0,07/29/6555 +1.38416,51.64407,8068,2,18,3,15,8,4.15,27.5,fr,56165,161,2408240,1,1,Active Shallow Crust,0.0,89.98969,-90.0,02/18/8068 +1.38416,51.64407,1363,3,18,4,22,28,4.95,15.0,fr,56166,27,2408332,1,1,Active Shallow Crust,240.0146,58.00489,0.0,03/18/1363 +1.38416,51.64407,7542,4,28,16,1,30,5.05,5.0,fr,56167,150,2408340,1,1,Active Shallow Crust,0.0,89.98998,0.0,04/28/7542 +3.68491,48.94274,9407,8,29,1,13,24,3.85,5.0,fr,56168,188,2408676,1,1,Active Shallow Crust,0.0,89.99062,0.0,08/29/9407 +3.68491,48.94274,2565,5,4,10,14,14,4.15,15.0,fr,56169,51,2408719,1,1,Active Shallow Crust,0.0,89.98993,-90.0,05/04/2565 +4.96941,49.99984,1960,1,27,22,23,33,3.55,15.0,fr,56170,39,2409607,1,1,Active Shallow Crust,0.0,89.98689,-90.0,01/27/1960 +4.96941,49.99984,1883,9,21,2,35,0,4.25,5.0,fr,56171,37,2409684,1,1,Active Shallow Crust,0.0,89.99131,0.0,09/21/1883 +-4.92927,48.83825,1577,1,1,9,1,43,3.55,5.0,fr,56172,31,2410080,1,2,Active Shallow Crust,0.0,89.98672,0.0,01/01/1577 +-4.92927,48.83825,9440,2,3,0,46,42,3.55,5.0,fr,56173,188,2410080,1,2,Active Shallow Crust,0.0,89.98672,0.0,02/03/9440 +-4.92927,48.83825,1234,7,5,6,33,30,3.55,27.5,fr,56174,24,2410082,1,1,Active Shallow Crust,0.0,89.98672,0.0,07/05/1234 +-4.92927,48.83825,4760,11,24,12,29,52,3.65,5.0,fr,56175,95,2410092,1,1,Active Shallow Crust,0.0,89.98817,0.0,11/24/4760 +-4.92927,48.83825,9648,3,20,5,47,44,3.65,5.0,fr,56176,192,2410095,1,1,Active Shallow Crust,240.0011,58.01387,0.0,03/20/9648 +-4.92927,48.83825,2186,6,6,10,36,24,3.75,5.0,fr,56177,43,2410110,1,1,Active Shallow Crust,0.0,89.98933,-90.0,06/06/2186 +-4.92927,48.83825,6953,8,28,14,47,58,3.85,5.0,fr,56178,139,2410116,1,1,Active Shallow Crust,0.0,89.9906,0.0,08/28/6953 +-4.92927,48.83825,6970,5,4,22,9,22,3.95,15.0,fr,56179,139,2410129,1,1,Active Shallow Crust,0.0,89.99162,0.0,05/04/6970 +-4.92927,48.83825,7498,1,5,18,37,53,3.95,27.5,fr,56180,149,2410130,1,1,Active Shallow Crust,0.0,89.99162,0.0,01/05/7498 +-4.92927,48.83825,8372,10,12,7,5,56,4.05,15.0,fr,56181,167,2410144,1,1,Active Shallow Crust,240.0067,58.00552,0.0,10/12/8372 +-4.92927,48.83825,3308,12,7,16,47,23,5.35,5.0,fr,56182,66,2410296,1,1,Active Shallow Crust,0.0,89.98997,0.0,12/07/3308 +-4.27028,49.30977,3299,3,31,23,20,37,3.55,15.0,fr,56183,65,2410561,1,1,Active Shallow Crust,0.0,89.98685,0.0,03/31/3299 +-4.27028,49.30977,9613,11,13,1,50,43,3.75,5.0,fr,56184,192,2410584,1,1,Active Shallow Crust,0.0,89.98956,0.0,11/13/9613 +-4.27028,49.30977,98,2,8,5,17,42,3.85,5.0,fr,56185,1,2410596,1,1,Active Shallow Crust,0.0,89.99069,0.0,02/08/0098 +6.28227,49.79863,7904,6,13,11,21,27,3.95,27.5,fr,56186,158,2411090,1,1,Active Shallow Crust,0.0,89.99178,0.0,06/13/7904 +6.28227,49.79863,8615,5,12,21,26,30,4.05,5.0,fr,56187,172,2411100,1,1,Active Shallow Crust,0.0,89.98902,0.0,05/12/8615 +6.95098,49.25454,9547,7,10,0,55,0,3.55,15.0,fr,56188,190,2411524,1,1,Active Shallow Crust,240.0118,57.99827,0.0,07/10/9547 +6.95098,49.25454,7514,2,10,18,36,15,3.65,15.0,fr,56189,150,2411533,1,1,Active Shallow Crust,0.0,89.98827,0.0,02/10/7514 +6.95098,49.25454,1738,6,8,23,8,9,3.65,15.0,fr,56190,34,2411536,1,1,Active Shallow Crust,240.0011,58.01405,0.0,06/08/1738 +6.95098,49.25454,5206,11,27,21,46,33,3.75,15.0,fr,56191,104,2411548,1,1,Active Shallow Crust,240.0081,58.01807,0.0,11/27/5206 +6.95098,49.25454,3299,5,29,6,57,47,3.85,5.0,fr,56192,65,2411556,1,1,Active Shallow Crust,0.0,89.99068,0.0,05/29/3299 +6.95098,49.25454,7749,6,28,1,19,59,4.05,5.0,fr,56193,154,2411583,1,1,Active Shallow Crust,240.0062,58.00586,0.0,06/28/7749 +6.95098,49.25454,867,5,14,20,26,7,4.25,5.0,fr,56194,17,2411613,1,1,Active Shallow Crust,128.8931,89.98105,0.0,05/14/0867 +2.15768,40.73298,7638,7,23,3,31,28,3.55,5.0,fr,56195,152,2412000,1,1,Active Shallow Crust,0.0,89.98854,0.0,07/23/7638 +2.15768,40.73298,1422,5,4,17,11,26,3.65,27.5,fr,56196,28,2412014,1,1,Active Shallow Crust,0.0,89.98978,0.0,05/04/1422 +2.15768,40.73298,107,7,20,13,18,51,3.75,5.0,fr,56197,2,2412024,1,1,Active Shallow Crust,0.0,89.9909,0.0,07/20/0107 +2.15768,40.73298,7892,1,2,20,33,1,4.75,5.0,fr,56198,157,2412144,1,1,Active Shallow Crust,0.0,89.9904,0.0,01/02/7892 +6.34723,45.85006,3720,9,9,16,58,10,3.55,5.0,fr,56199,74,2412480,1,6,Active Shallow Crust,0.0,89.99297,0.0,09/09/3720 +6.34723,45.85006,2829,6,6,18,36,17,3.55,5.0,fr,56200,56,2412480,1,6,Active Shallow Crust,0.0,89.99297,0.0,06/06/2829 +6.34723,45.85006,4986,9,29,5,12,55,3.55,5.0,fr,56201,99,2412480,1,6,Active Shallow Crust,0.0,89.99297,0.0,09/29/4986 +6.34723,45.85006,353,1,27,3,30,8,3.55,5.0,fr,56202,7,2412480,1,6,Active Shallow Crust,0.0,89.99297,0.0,01/27/0353 +6.34723,45.85006,7180,2,19,15,9,37,3.55,5.0,fr,56203,143,2412480,1,6,Active Shallow Crust,0.0,89.99297,0.0,02/19/7180 +6.34723,45.85006,4709,7,31,9,13,29,3.55,5.0,fr,56204,94,2412480,1,6,Active Shallow Crust,0.0,89.99297,0.0,07/31/4709 +6.34723,45.85006,9009,4,3,10,27,20,3.55,5.0,fr,56205,180,2412483,1,1,Active Shallow Crust,240.0114,57.99924,0.0,04/03/9009 +6.34723,45.85006,2507,10,29,11,14,51,3.55,15.0,fr,56206,50,2412484,1,3,Active Shallow Crust,240.0114,57.99924,0.0,10/29/2507 +6.34723,45.85006,2468,1,13,3,15,35,3.55,15.0,fr,56207,49,2412484,1,3,Active Shallow Crust,240.0114,57.99924,0.0,01/13/2468 +6.34723,45.85006,6716,5,27,15,22,40,3.55,15.0,fr,56208,134,2412484,1,3,Active Shallow Crust,240.0114,57.99924,0.0,05/27/6716 +6.34723,45.85006,3045,4,11,14,38,6,3.65,5.0,fr,56209,60,2412492,1,1,Active Shallow Crust,0.0,89.98748,0.0,04/11/3045 +6.34723,45.85006,1165,6,28,8,0,39,3.65,15.0,fr,56210,23,2412493,1,2,Active Shallow Crust,0.0,89.98748,0.0,06/28/1165 +6.34723,45.85006,7052,7,14,3,30,25,3.65,15.0,fr,56211,141,2412493,1,2,Active Shallow Crust,0.0,89.98748,0.0,07/14/7052 +6.34723,45.85006,2098,11,17,3,4,42,3.65,15.0,fr,56212,41,2412496,1,1,Active Shallow Crust,240.0003,58.01309,0.0,11/17/2098 +6.34723,45.85006,880,3,18,18,3,31,3.65,5.0,fr,56213,17,2412498,1,1,Active Shallow Crust,0.0,89.98734,-90.0,03/18/0880 +6.34723,45.85006,861,6,5,1,33,15,3.75,5.0,fr,56214,17,2412504,1,1,Active Shallow Crust,0.0,89.98884,0.0,06/05/0861 +6.34723,45.85006,2510,2,25,23,47,27,3.75,15.0,fr,56215,50,2412505,1,1,Active Shallow Crust,0.0,89.98884,0.0,02/25/2510 +6.34723,45.85006,9821,12,3,10,27,25,3.75,15.0,fr,56216,196,2412508,1,2,Active Shallow Crust,240.0085,58.01748,0.0,12/03/9821 +6.34723,45.85006,3764,10,7,2,49,10,3.75,15.0,fr,56217,75,2412508,1,2,Active Shallow Crust,240.0085,58.01748,0.0,10/07/3764 +6.34723,45.85006,3931,4,6,10,47,6,3.75,5.0,fr,56218,78,2412510,1,1,Active Shallow Crust,0.0,89.98871,-90.0,04/06/3931 +6.34723,45.85006,5423,10,27,5,4,30,3.75,5.0,fr,56219,108,2412513,1,1,Active Shallow Crust,128.8968,89.96748,0.0,10/27/5423 +6.34723,45.85006,9116,9,3,1,2,43,3.85,27.5,fr,56220,182,2412518,1,1,Active Shallow Crust,0.0,89.99005,0.0,09/03/9116 +6.34723,45.85006,5898,7,27,14,17,46,3.95,5.0,fr,56221,117,2412528,1,2,Active Shallow Crust,0.0,89.99113,0.0,07/27/5898 +6.34723,45.85006,7167,2,20,7,19,46,3.95,5.0,fr,56222,143,2412528,1,2,Active Shallow Crust,0.0,89.99113,0.0,02/20/7167 +6.34723,45.85006,4827,6,13,8,50,41,3.95,5.0,fr,56223,96,2412531,1,1,Active Shallow Crust,240.0203,58.00484,0.0,06/13/4827 +6.34723,45.85006,2453,4,11,4,20,35,4.05,5.0,fr,56224,49,2412540,1,2,Active Shallow Crust,0.0,89.98815,0.0,04/11/2453 +6.34723,45.85006,4323,8,27,8,32,15,4.05,5.0,fr,56225,86,2412540,1,2,Active Shallow Crust,0.0,89.98815,0.0,08/27/4323 +6.34723,45.85006,4828,12,21,0,30,45,4.05,27.5,fr,56226,96,2412542,1,1,Active Shallow Crust,0.0,89.98815,0.0,12/21/4828 +6.34723,45.85006,6256,8,2,23,10,55,4.05,15.0,fr,56227,125,2412544,1,1,Active Shallow Crust,240.0061,58.00556,0.0,08/02/6256 +6.34723,45.85006,1550,1,8,17,3,51,4.15,5.0,fr,56228,30,2412552,1,1,Active Shallow Crust,0.0,89.98944,0.0,01/08/1550 +6.34723,45.85006,8272,8,12,9,15,49,4.15,5.0,fr,56229,165,2412555,1,2,Active Shallow Crust,240.0088,57.99697,0.0,08/12/8272 +6.34723,45.85006,5740,10,12,7,0,24,4.15,5.0,fr,56230,114,2412555,1,2,Active Shallow Crust,240.0088,57.99697,0.0,10/12/5740 +6.34723,45.85006,9379,7,23,16,22,0,4.15,5.0,fr,56231,187,2412561,1,1,Active Shallow Crust,128.8984,89.99296,0.0,07/23/9379 +6.34723,45.85006,6490,1,15,13,47,10,4.25,5.0,fr,56232,129,2412564,1,1,Active Shallow Crust,0.0,89.99059,0.0,01/15/6490 +6.34723,45.85006,4236,3,25,0,24,27,4.25,5.0,fr,56233,84,2412570,1,1,Active Shallow Crust,0.0,89.99048,-90.0,03/25/4236 +6.34723,45.85006,4392,5,8,10,44,37,4.35,15.0,fr,56234,87,2412577,1,1,Active Shallow Crust,0.0,89.98882,0.0,05/08/4392 +6.34723,45.85006,6749,3,12,8,2,19,4.45,5.0,fr,56235,134,2412588,1,1,Active Shallow Crust,0.0,89.99003,0.0,03/12/6749 +6.34723,45.85006,2310,3,23,9,44,24,4.45,27.5,fr,56236,46,2412590,1,1,Active Shallow Crust,0.0,89.99003,0.0,03/23/2310 +6.34723,45.85006,4719,1,31,2,3,55,4.55,27.5,fr,56237,94,2412608,1,1,Active Shallow Crust,0.0,89.99101,-90.0,01/31/4719 +6.34723,45.85006,2069,8,25,16,49,59,4.75,5.0,fr,56238,41,2412624,1,1,Active Shallow Crust,0.0,89.98941,0.0,08/25/2069 +6.34723,45.85006,5578,9,10,10,9,7,4.95,15.0,fr,56239,111,2412649,1,1,Active Shallow Crust,0.0,89.99019,0.0,09/10/5578 +6.34723,45.85006,9877,5,21,23,2,5,5.35,15.0,fr,56240,197,2412697,1,1,Active Shallow Crust,0.0,89.99027,0.0,05/21/9877 +6.34723,45.85006,1950,1,3,3,54,17,5.55,5.0,fr,56241,38,2412720,1,1,Active Shallow Crust,0.0,89.99017,0.0,01/03/1950 +6.34723,45.85006,1884,1,6,0,34,28,5.55,15.0,fr,56242,37,2412730,1,1,Active Shallow Crust,128.8765,89.98997,0.0,01/06/1884 +4.80976,43.27384,7163,9,25,17,49,20,3.75,5.0,fr,56243,143,2413950,1,1,Active Shallow Crust,0.0,89.9882,-90.0,09/25/7163 +4.80976,43.27384,1202,1,31,14,40,27,3.85,5.0,fr,56244,24,2413956,1,1,Active Shallow Crust,0.0,89.9896,0.0,01/31/1202 +4.80976,43.27384,3435,9,22,10,52,45,3.95,5.0,fr,56245,68,2413968,1,1,Active Shallow Crust,0.0,89.99074,0.0,09/22/3435 +4.80976,43.27384,6916,3,30,16,4,21,4.05,15.0,fr,56246,138,2413990,1,1,Active Shallow Crust,128.8899,89.9938,0.0,03/30/6916 +4.80976,43.27384,3822,3,28,16,46,0,4.35,5.0,fr,56247,76,2414025,1,1,Active Shallow Crust,128.8989,89.98291,0.0,03/28/3822 +5.69529,45.11275,1944,4,15,17,29,18,3.55,5.0,fr,56248,38,2414400,1,2,Active Shallow Crust,0.0,89.99288,0.0,04/15/1944 +5.69529,45.11275,7866,5,14,13,2,31,3.55,5.0,fr,56249,157,2414400,1,2,Active Shallow Crust,0.0,89.99288,0.0,05/14/7866 +5.69529,45.11275,8530,6,3,7,29,19,3.55,27.5,fr,56250,170,2414411,1,1,Active Shallow Crust,128.897,89.99288,0.0,06/03/8530 +5.69529,45.11275,1504,6,18,3,2,9,3.65,5.0,fr,56251,30,2414412,1,2,Active Shallow Crust,0.0,89.98731,0.0,06/18/1504 +5.69529,45.11275,2814,10,21,17,43,27,3.65,5.0,fr,56252,56,2414412,1,2,Active Shallow Crust,0.0,89.98731,0.0,10/21/2814 +5.69529,45.11275,1167,9,24,10,12,4,3.65,27.5,fr,56253,23,2414414,1,1,Active Shallow Crust,0.0,89.98731,0.0,09/24/1167 +5.69529,45.11275,3034,1,24,8,1,17,3.65,27.5,fr,56254,60,2414417,1,1,Active Shallow Crust,240.0004,58.01292,0.0,01/24/3034 +5.69529,45.11275,6823,9,17,7,38,32,3.65,5.0,fr,56255,136,2414418,1,1,Active Shallow Crust,0.0,89.98717,-90.0,09/17/6823 +5.69529,45.11275,1222,4,28,11,48,15,3.75,5.0,fr,56256,24,2414424,1,4,Active Shallow Crust,0.0,89.98869,0.0,04/28/1222 +5.69529,45.11275,8305,7,14,10,28,40,3.75,5.0,fr,56257,166,2414424,1,4,Active Shallow Crust,0.0,89.98869,0.0,07/14/8305 +5.69529,45.11275,3866,6,14,4,6,39,3.75,5.0,fr,56258,77,2414424,1,4,Active Shallow Crust,0.0,89.98869,0.0,06/14/3866 +5.69529,45.11275,615,9,16,9,35,8,3.75,5.0,fr,56259,12,2414424,1,4,Active Shallow Crust,0.0,89.98869,0.0,09/16/0615 +5.69529,45.11275,4794,2,19,14,37,30,3.75,27.5,fr,56260,95,2414426,1,1,Active Shallow Crust,0.0,89.98869,0.0,02/19/4794 +5.69529,45.11275,1923,11,27,10,34,41,3.75,5.0,fr,56261,38,2414430,1,1,Active Shallow Crust,0.0,89.98856,-90.0,11/27/1923 +5.69529,45.11275,3570,2,11,1,22,8,3.75,5.0,fr,56262,71,2414433,1,1,Active Shallow Crust,128.8972,89.96747,0.0,02/11/3570 +5.69529,45.11275,2682,7,5,9,6,27,3.85,15.0,fr,56263,53,2414437,1,1,Active Shallow Crust,0.0,89.98992,0.0,07/05/2682 +5.69529,45.11275,3767,12,1,2,2,27,4.05,5.0,fr,56264,75,2414469,1,1,Active Shallow Crust,128.8907,89.994,0.0,12/01/3767 +5.69529,45.11275,4811,9,29,7,58,36,4.15,5.0,fr,56265,96,2414472,1,2,Active Shallow Crust,0.0,89.9893,0.0,09/29/4811 +5.69529,45.11275,8784,5,22,11,43,12,4.15,5.0,fr,56266,175,2414472,1,2,Active Shallow Crust,0.0,89.9893,0.0,05/22/8784 +5.69529,45.11275,5477,7,20,14,9,37,4.25,5.0,fr,56267,109,2414484,1,2,Active Shallow Crust,0.0,89.99046,0.0,07/20/5477 +5.69529,45.11275,8892,11,25,14,17,2,4.25,5.0,fr,56268,177,2414484,1,2,Active Shallow Crust,0.0,89.99046,0.0,11/25/8892 +5.69529,45.11275,3232,8,18,23,40,36,4.25,5.0,fr,56269,64,2414487,1,1,Active Shallow Crust,240.0073,57.99404,0.0,08/18/3232 +5.69529,45.11275,7665,8,26,6,33,40,4.25,27.5,fr,56270,153,2414489,1,1,Active Shallow Crust,240.0073,57.99404,0.0,08/26/7665 +5.69529,45.11275,3766,4,14,22,29,36,4.35,5.0,fr,56271,75,2414496,1,3,Active Shallow Crust,0.0,89.98867,0.0,04/14/3766 +5.69529,45.11275,6232,10,5,14,8,32,4.35,5.0,fr,56272,124,2414496,1,3,Active Shallow Crust,0.0,89.98867,0.0,10/05/6232 +5.69529,45.11275,6870,7,5,12,31,37,4.35,5.0,fr,56273,137,2414496,1,3,Active Shallow Crust,0.0,89.98867,0.0,07/05/6870 +5.69529,45.11275,575,1,22,9,55,5,4.45,5.0,fr,56274,11,2414508,1,1,Active Shallow Crust,0.0,89.9899,0.0,01/22/0575 +5.69529,45.11275,8232,4,5,18,9,32,4.55,15.0,fr,56275,164,2414521,1,1,Active Shallow Crust,0.0,89.991,0.0,04/05/8232 +5.69529,45.11275,2241,12,10,16,51,13,4.65,5.0,fr,56276,44,2414538,1,1,Active Shallow Crust,0.0,89.98985,-90.0,12/10/2241 +5.69529,45.11275,3102,5,10,14,50,21,4.85,5.0,fr,56277,62,2414556,1,2,Active Shallow Crust,0.0,89.99044,0.0,05/10/3102 +5.69529,45.11275,8619,10,9,2,28,31,4.85,5.0,fr,56278,172,2414556,1,2,Active Shallow Crust,0.0,89.99044,0.0,10/09/8619 +5.69529,45.11275,7617,12,14,17,13,46,4.95,5.0,fr,56279,152,2414568,1,1,Active Shallow Crust,0.0,89.99006,0.0,12/14/7617 +5.69529,45.11275,4914,7,1,21,5,34,5.05,5.0,fr,56280,98,2414580,1,1,Active Shallow Crust,0.0,89.98988,0.0,07/01/4914 +4.3254,46.74746,3982,12,29,4,4,48,3.55,5.0,fr,56281,79,2414880,1,2,Active Shallow Crust,0.0,89.99309,0.0,12/29/3982 +4.3254,46.74746,7769,6,24,9,59,51,3.55,5.0,fr,56282,155,2414880,1,2,Active Shallow Crust,0.0,89.99309,0.0,06/24/7769 +4.3254,46.74746,5700,4,6,8,54,48,3.55,5.0,fr,56283,113,2414883,1,1,Active Shallow Crust,240.0124,57.9984,0.0,04/06/5700 +4.3254,46.74746,172,3,27,12,20,2,3.55,15.0,fr,56284,3,2414884,1,1,Active Shallow Crust,240.0124,57.9984,0.0,03/27/0172 +4.3254,46.74746,293,11,25,23,3,12,3.55,5.0,fr,56285,5,2414889,1,1,Active Shallow Crust,128.8967,89.99309,0.0,11/25/0293 +4.3254,46.74746,4536,6,26,20,5,13,3.65,5.0,fr,56286,90,2414892,1,2,Active Shallow Crust,0.0,89.98769,0.0,06/26/4536 +4.3254,46.74746,6186,10,7,1,17,43,3.65,5.0,fr,56287,123,2414892,1,2,Active Shallow Crust,0.0,89.98769,0.0,10/07/6186 +4.3254,46.74746,9310,12,12,9,7,0,3.65,15.0,fr,56288,186,2414893,1,2,Active Shallow Crust,0.0,89.98769,0.0,12/12/9310 +4.3254,46.74746,1115,5,15,21,43,36,3.65,15.0,fr,56289,22,2414893,1,2,Active Shallow Crust,0.0,89.98769,0.0,05/15/1115 +4.3254,46.74746,5428,12,16,9,2,2,3.65,5.0,fr,56290,108,2414898,1,1,Active Shallow Crust,0.0,89.98754,-90.0,12/16/5428 +4.3254,46.74746,2714,3,3,13,0,44,3.75,15.0,fr,56291,54,2414905,1,1,Active Shallow Crust,0.0,89.98902,0.0,03/03/2714 +4.3254,46.74746,3862,4,16,20,36,42,3.85,5.0,fr,56292,77,2414916,1,1,Active Shallow Crust,0.0,89.99022,0.0,04/16/3862 +4.3254,46.74746,1542,2,8,19,22,42,3.95,5.0,fr,56293,30,2414928,1,1,Active Shallow Crust,0.0,89.99128,0.0,02/08/1542 +4.3254,46.74746,2404,9,14,23,26,19,3.95,5.0,fr,56294,48,2414931,1,1,Active Shallow Crust,240.0193,58.00504,0.0,09/14/2404 +4.3254,46.74746,5747,7,26,23,35,34,3.95,5.0,fr,56295,114,2414937,1,1,Active Shallow Crust,128.9011,89.99346,0.0,07/26/5747 +4.3254,46.74746,3050,12,3,7,44,20,4.05,5.0,fr,56296,60,2414940,1,1,Active Shallow Crust,0.0,89.98834,0.0,12/03/3050 +4.3254,46.74746,9577,10,12,4,44,34,4.25,5.0,fr,56297,191,2414970,1,1,Active Shallow Crust,0.0,89.99063,-90.0,10/12/9577 +-1.98356,48.0252,7148,3,14,21,19,11,3.55,5.0,fr,56298,142,2415360,1,1,Active Shallow Crust,0.0,89.98988,0.0,03/14/7148 +-1.98356,48.0252,7455,8,29,18,11,43,3.55,15.0,fr,56299,149,2415361,1,2,Active Shallow Crust,0.0,89.98988,0.0,08/29/7455 +-1.98356,48.0252,7284,8,19,21,34,10,3.55,15.0,fr,56300,145,2415361,1,2,Active Shallow Crust,0.0,89.98988,0.0,08/19/7284 +-1.98356,48.0252,9169,11,4,18,4,9,3.75,27.5,fr,56301,183,2415386,1,1,Active Shallow Crust,0.0,89.99062,0.0,11/04/9169 +-1.98356,48.0252,4374,1,31,23,0,35,3.85,5.0,fr,56302,87,2415396,1,1,Active Shallow Crust,0.0,89.99045,0.0,01/31/4374 +-1.98356,48.0252,9136,5,12,8,16,13,3.85,5.0,fr,56303,182,2415399,1,1,Active Shallow Crust,240.011,57.99791,0.0,05/12/9136 +-1.98356,48.0252,8027,5,3,10,31,9,3.95,5.0,fr,56304,160,2415417,1,2,Active Shallow Crust,128.9003,89.99361,0.0,05/03/8027 +-1.98356,48.0252,4492,12,31,4,3,8,3.95,5.0,fr,56305,89,2415417,1,2,Active Shallow Crust,128.9003,89.99361,0.0,12/31/4492 +-1.98356,48.0252,1251,3,22,8,1,26,4.25,5.0,fr,56306,25,2415444,1,1,Active Shallow Crust,0.0,89.99021,0.0,03/22/1251 +-1.98356,48.0252,1252,2,27,7,49,35,4.25,5.0,fr,56307,25,2415450,1,1,Active Shallow Crust,0.0,89.9901,-90.0,02/27/1252 +-1.98356,48.0252,5416,1,23,23,24,55,4.45,5.0,fr,56308,108,2415468,1,1,Active Shallow Crust,0.0,89.98983,0.0,01/23/5416 +1.54705,48.78674,7733,4,16,10,18,50,3.65,5.0,fr,56309,154,2415861,1,1,Active Shallow Crust,128.9,89.96357,0.0,04/16/7733 +1.54705,48.78674,190,12,3,17,18,24,3.75,5.0,fr,56310,3,2415864,1,1,Active Shallow Crust,0.0,89.98945,0.0,12/03/0190 +1.54705,48.78674,4623,11,3,7,45,51,3.85,5.0,fr,56311,92,2415876,1,1,Active Shallow Crust,0.0,89.98942,0.0,11/03/4623 +1.54705,48.78674,2799,10,29,20,21,7,4.45,15.0,fr,56312,55,2415949,1,1,Active Shallow Crust,0.0,89.98998,0.0,10/29/2799 +1.54705,48.78674,7645,2,7,12,11,25,4.45,27.5,fr,56313,152,2415950,1,1,Active Shallow Crust,0.0,89.98998,0.0,02/07/7645 +3.04789,53.45914,7223,5,10,10,56,7,3.65,15.0,fr,56314,144,2416339,1,1,Active Shallow Crust,0.0,89.98917,-90.0,05/10/7223 +8.42938,47.77037,1060,12,25,5,36,1,3.55,5.0,fr,56315,21,2416800,1,4,Active Shallow Crust,0.0,89.98644,0.0,12/25/1060 +8.42938,47.77037,3531,11,16,15,55,25,3.55,5.0,fr,56316,70,2416800,1,4,Active Shallow Crust,0.0,89.98644,0.0,11/16/3531 +8.42938,47.77037,8760,10,13,17,2,43,3.55,5.0,fr,56317,175,2416800,1,4,Active Shallow Crust,0.0,89.98644,0.0,10/13/8760 +8.42938,47.77037,2391,12,19,9,50,18,3.55,5.0,fr,56318,47,2416800,1,4,Active Shallow Crust,0.0,89.98644,0.0,12/19/2391 +8.42938,47.77037,6178,2,28,16,7,48,3.55,15.0,fr,56319,123,2416801,1,1,Active Shallow Crust,0.0,89.98644,0.0,02/28/6178 +8.42938,47.77037,3559,1,6,1,54,22,3.55,5.0,fr,56320,71,2416803,1,1,Active Shallow Crust,240.0139,57.998,0.0,01/06/3559 +8.42938,47.77037,1609,10,21,17,28,38,3.55,15.0,fr,56321,32,2416807,1,2,Active Shallow Crust,0.0,89.98629,-90.0,10/21/1609 +8.42938,47.77037,9834,10,24,23,24,54,3.55,15.0,fr,56322,196,2416807,1,2,Active Shallow Crust,0.0,89.98629,-90.0,10/24/9834 +8.42938,47.77037,366,12,9,10,18,46,3.65,5.0,fr,56323,7,2416812,1,7,Active Shallow Crust,0.0,89.98792,0.0,12/09/0366 +8.42938,47.77037,9969,10,24,22,45,27,3.65,5.0,fr,56324,199,2416812,1,7,Active Shallow Crust,0.0,89.98792,0.0,10/24/9969 +8.42938,47.77037,3785,10,14,1,10,17,3.65,5.0,fr,56325,75,2416812,1,7,Active Shallow Crust,0.0,89.98792,0.0,10/14/3785 +8.42938,47.77037,9068,9,17,1,25,5,3.65,5.0,fr,56326,181,2416812,1,7,Active Shallow Crust,0.0,89.98792,0.0,09/17/9068 +8.42938,47.77037,4818,2,7,17,2,6,3.65,5.0,fr,56327,96,2416812,1,7,Active Shallow Crust,0.0,89.98792,0.0,02/07/4818 +8.42938,47.77037,8472,10,8,8,46,51,3.65,5.0,fr,56328,169,2416812,1,7,Active Shallow Crust,0.0,89.98792,0.0,10/08/8472 +8.42938,47.77037,6115,4,5,21,45,0,3.65,5.0,fr,56329,122,2416812,1,7,Active Shallow Crust,0.0,89.98792,0.0,04/05/6115 +8.42938,47.77037,3890,3,20,15,54,2,3.65,5.0,fr,56330,77,2416815,1,1,Active Shallow Crust,240.0016,58.01352,0.0,03/20/3890 +8.42938,47.77037,1209,1,23,16,7,26,3.65,15.0,fr,56331,24,2416822,1,1,Active Shallow Crust,128.8978,89.96355,0.0,01/23/1209 +8.42938,47.77037,732,8,12,9,20,24,3.65,27.5,fr,56332,14,2416823,1,1,Active Shallow Crust,128.8978,89.96355,0.0,08/12/0732 +8.42938,47.77037,7796,2,22,21,50,54,3.75,5.0,fr,56333,155,2416824,1,3,Active Shallow Crust,0.0,89.98923,0.0,02/22/7796 +8.42938,47.77037,8710,11,28,16,0,32,3.75,5.0,fr,56334,174,2416824,1,3,Active Shallow Crust,0.0,89.98923,0.0,11/28/8710 +8.42938,47.77037,7421,8,2,5,30,47,3.75,5.0,fr,56335,148,2416824,1,3,Active Shallow Crust,0.0,89.98923,0.0,08/02/7421 +8.42938,47.77037,4438,12,16,0,41,40,3.75,15.0,fr,56336,88,2416825,1,2,Active Shallow Crust,0.0,89.98923,0.0,12/16/4438 +8.42938,47.77037,8500,1,28,12,20,11,3.75,15.0,fr,56337,169,2416825,1,2,Active Shallow Crust,0.0,89.98923,0.0,01/28/8500 +8.42938,47.77037,4496,6,25,5,37,36,3.75,15.0,fr,56338,89,2416828,1,1,Active Shallow Crust,240.0079,58.01731,0.0,06/25/4496 +8.42938,47.77037,611,4,30,18,53,51,3.75,5.0,fr,56339,12,2416833,1,2,Active Shallow Crust,128.8969,89.96751,0.0,04/30/0611 +8.42938,47.77037,1628,3,27,5,26,26,3.75,5.0,fr,56340,32,2416833,1,2,Active Shallow Crust,128.8969,89.96751,0.0,03/27/1628 +8.42938,47.77037,4153,1,3,18,56,52,3.85,5.0,fr,56341,83,2416836,1,1,Active Shallow Crust,0.0,89.9904,0.0,01/03/4153 +8.42938,47.77037,339,10,15,11,32,10,3.85,15.0,fr,56342,6,2416840,1,1,Active Shallow Crust,240.0113,57.99768,0.0,10/15/0339 +8.42938,47.77037,7994,11,17,21,46,31,3.95,5.0,fr,56343,159,2416854,1,1,Active Shallow Crust,0.0,89.99135,-90.0,11/17/7994 +8.42938,47.77037,1573,12,16,10,5,0,4.05,15.0,fr,56344,31,2416864,1,1,Active Shallow Crust,240.007,58.00596,0.0,12/16/1573 +8.42938,47.77037,5515,1,28,21,2,41,4.05,5.0,fr,56345,110,2416869,1,1,Active Shallow Crust,128.8885,89.99619,0.0,01/28/5515 +8.42938,47.77037,7355,11,3,6,15,23,4.15,5.0,fr,56346,147,2416872,1,1,Active Shallow Crust,0.0,89.99321,0.0,11/03/7355 +8.42938,47.77037,9708,7,15,21,2,47,4.15,15.0,fr,56347,194,2416873,1,1,Active Shallow Crust,0.0,89.99321,0.0,07/15/9708 +8.42938,47.77037,3913,6,30,5,12,14,4.15,5.0,fr,56348,78,2416878,1,1,Active Shallow Crust,0.0,89.99313,-90.0,06/30/3913 +8.42938,47.77037,388,3,1,14,36,17,4.25,5.0,fr,56349,7,2416890,1,1,Active Shallow Crust,0.0,89.98775,-90.0,03/01/0388 +8.42938,47.77037,4160,12,12,5,2,36,4.25,15.0,fr,56350,83,2416894,1,1,Active Shallow Crust,128.8954,89.981,0.0,12/12/4160 +8.42938,47.77037,4364,12,10,8,16,22,4.35,5.0,fr,56351,87,2416896,1,2,Active Shallow Crust,0.0,89.9892,0.0,12/10/4364 +8.42938,47.77037,6605,2,23,22,54,41,4.35,5.0,fr,56352,132,2416896,1,2,Active Shallow Crust,0.0,89.9892,0.0,02/23/6605 +8.42938,47.77037,7173,10,27,23,11,27,4.35,5.0,fr,56353,143,2416905,1,1,Active Shallow Crust,128.8976,89.98306,0.0,10/27/7173 +8.42938,47.77037,5863,3,6,17,51,51,4.45,5.0,fr,56354,117,2416908,1,1,Active Shallow Crust,0.0,89.99038,0.0,03/06/5863 +8.42938,47.77037,9981,12,28,2,57,32,4.45,27.5,fr,56355,199,2416910,1,1,Active Shallow Crust,0.0,89.99038,0.0,12/28/9981 +8.42938,47.77037,587,8,8,1,40,17,4.55,5.0,fr,56356,11,2416923,1,1,Active Shallow Crust,240.0087,57.99789,0.0,08/08/0587 +8.42938,47.77037,1063,11,30,12,48,48,4.65,27.5,fr,56357,21,2416934,1,1,Active Shallow Crust,0.0,89.98854,0.0,11/30/1063 +8.42938,47.77037,8783,7,20,10,32,43,4.65,27.5,fr,56358,175,2416943,1,1,Active Shallow Crust,128.8908,89.98631,0.0,07/20/8783 +8.42938,47.77037,7854,12,6,4,22,0,4.75,5.0,fr,56359,157,2416944,1,1,Active Shallow Crust,0.0,89.98978,0.0,12/06/7854 +8.42938,47.77037,1826,7,19,23,30,38,4.75,27.5,fr,56360,36,2416952,1,1,Active Shallow Crust,0.0,89.98966,-90.0,07/19/1826 +8.42938,47.77037,9973,5,4,4,45,59,4.95,5.0,fr,56361,199,2416974,1,1,Active Shallow Crust,0.0,89.98905,-90.0,05/04/9973 +8.42938,47.77037,1274,12,22,11,49,52,5.45,5.0,fr,56362,25,2417034,1,1,Active Shallow Crust,359.9992,89.99077,-90.0,12/22/1274 +8.42938,47.77037,3628,10,16,1,10,32,5.75,15.0,fr,56363,72,2417074,1,1,Active Shallow Crust,128.8727,89.98842,0.0,10/16/3628 +-3.34977,46.9498,2091,3,5,17,55,19,3.75,15.0,fr,56364,41,2417308,1,1,Active Shallow Crust,240.0078,58.01784,0.0,03/05/2091 +-3.34977,46.9498,3503,1,16,9,17,8,4.15,27.5,fr,56365,70,2417354,1,1,Active Shallow Crust,0.0,89.98965,0.0,01/16/3503 +2.17194,47.7629,8716,1,29,17,10,34,3.55,5.0,fr,56366,174,2417760,1,1,Active Shallow Crust,0.0,89.98983,0.0,01/29/8716 +2.17194,47.7629,8381,6,18,3,28,27,3.55,15.0,fr,56367,167,2417761,1,1,Active Shallow Crust,0.0,89.98983,0.0,06/18/8381 +2.17194,47.7629,2368,4,25,20,30,41,3.75,5.0,fr,56368,47,2417784,1,1,Active Shallow Crust,0.0,89.98923,0.0,04/25/2368 +2.17194,47.7629,8012,7,13,21,23,14,3.75,15.0,fr,56369,160,2417788,1,1,Active Shallow Crust,240.0087,58.01753,0.0,07/13/8012 +3.91493,48.34712,6998,10,13,6,26,55,3.55,5.0,fr,56370,139,2418240,1,1,Active Shallow Crust,0.0,89.98994,0.0,10/13/6998 +3.91493,48.34712,8300,10,18,23,18,41,3.65,5.0,fr,56371,165,2418252,1,1,Active Shallow Crust,0.0,89.99104,0.0,10/18/8300 +3.91493,48.34712,9820,10,8,20,19,18,3.65,5.0,fr,56372,196,2418261,1,1,Active Shallow Crust,128.9003,89.96329,0.0,10/08/9820 +3.91493,48.34712,7187,1,29,2,16,52,3.85,27.5,fr,56373,143,2418278,1,1,Active Shallow Crust,0.0,89.99051,0.0,01/29/7187 +3.91493,48.34712,7281,6,21,4,47,19,3.95,15.0,fr,56374,145,2418289,1,1,Active Shallow Crust,0.0,89.98943,0.0,06/21/7281 +3.91493,48.34712,2220,7,7,0,11,7,4.05,5.0,fr,56375,44,2418300,1,1,Active Shallow Crust,0.0,89.99058,0.0,07/07/2220 +3.91493,48.34712,4333,1,22,6,31,44,4.35,5.0,fr,56376,86,2418336,1,1,Active Shallow Crust,0.0,89.99066,0.0,01/22/4333 +3.91493,48.34712,5975,2,27,11,1,51,4.45,5.0,fr,56377,119,2418348,1,1,Active Shallow Crust,0.0,89.99049,0.0,02/27/5975 +3.91493,48.34712,8703,9,15,23,39,52,4.45,27.5,fr,56378,174,2418350,1,1,Active Shallow Crust,0.0,89.99049,0.0,09/15/8703 +3.857,49.21883,1324,9,2,21,52,5,3.55,5.0,fr,56379,26,2418726,1,1,Active Shallow Crust,0.0,89.99001,-90.0,09/02/1324 +-0.33896,51.7046,1103,6,4,15,43,59,3.65,5.0,fr,56380,22,2419218,1,1,Active Shallow Crust,0.0,89.99014,-90.0,06/04/1103 +-0.33896,51.7046,5277,11,16,21,43,57,3.75,5.0,fr,56381,105,2419224,1,1,Active Shallow Crust,0.0,89.99007,0.0,11/16/5277 +7.41101,50.8005,4453,4,12,6,30,19,3.55,5.0,fr,56382,89,2419680,1,2,Active Shallow Crust,0.0,89.98725,0.0,04/12/4453 +7.41101,50.8005,2612,7,16,7,38,12,3.55,5.0,fr,56383,52,2419680,1,2,Active Shallow Crust,0.0,89.98725,0.0,07/16/2612 +7.41101,50.8005,7616,5,25,14,45,40,3.55,15.0,fr,56384,152,2419681,1,1,Active Shallow Crust,0.0,89.98725,0.0,05/25/7616 +7.41101,50.8005,3424,3,23,5,34,0,3.55,5.0,fr,56385,68,2419683,1,1,Active Shallow Crust,240.0131,57.99817,0.0,03/23/3424 +7.41101,50.8005,8658,4,17,4,43,28,3.65,5.0,fr,56386,173,2419692,1,1,Active Shallow Crust,0.0,89.98864,0.0,04/17/8658 +7.41101,50.8005,5076,2,29,22,1,47,3.65,27.5,fr,56387,101,2419694,1,1,Active Shallow Crust,0.0,89.98864,0.0,02/29/5076 +7.41101,50.8005,4154,6,29,15,24,15,3.75,5.0,fr,56388,83,2419704,1,1,Active Shallow Crust,0.0,89.98988,0.0,06/29/4154 +7.41101,50.8005,159,3,20,19,3,16,3.75,27.5,fr,56389,3,2419712,1,1,Active Shallow Crust,0.0,89.98976,-90.0,03/20/0159 +7.41101,50.8005,8891,7,10,11,36,47,3.85,5.0,fr,56390,177,2419725,1,1,Active Shallow Crust,128.8957,89.99323,0.0,07/10/8891 +7.41101,50.8005,6224,4,15,9,52,28,3.95,15.0,fr,56391,124,2419729,1,1,Active Shallow Crust,0.0,89.99196,0.0,04/15/6224 +1.86447,43.36202,2884,8,19,11,58,21,3.55,5.0,fr,56392,57,2420160,1,1,Active Shallow Crust,0.0,89.99084,0.0,08/19/2884 +1.86447,43.36202,1233,11,14,20,38,1,3.75,15.0,fr,56393,24,2420185,1,1,Active Shallow Crust,0.0,89.98981,0.0,11/14/1233 +1.86447,43.36202,2503,1,1,21,35,23,4.35,15.0,fr,56394,50,2420260,1,1,Active Shallow Crust,240.0077,57.99576,0.0,01/01/2503 +1.86447,43.36202,6500,9,21,11,1,41,4.45,5.0,fr,56395,129,2420268,1,1,Active Shallow Crust,0.0,89.99024,0.0,09/21/6500 +1.86447,43.36202,4829,3,25,1,55,16,4.85,5.0,fr,56396,96,2420316,1,1,Active Shallow Crust,0.0,89.99015,0.0,03/25/4829 +6.95598,47.73363,6985,3,4,6,46,27,3.55,5.0,fr,56397,139,2420640,1,3,Active Shallow Crust,0.0,89.99322,0.0,03/04/6985 +6.95598,47.73363,9379,5,2,4,20,3,3.55,5.0,fr,56398,187,2420640,1,3,Active Shallow Crust,0.0,89.99322,0.0,05/02/9379 +6.95598,47.73363,2033,10,23,17,49,38,3.55,5.0,fr,56399,40,2420640,1,3,Active Shallow Crust,0.0,89.99322,0.0,10/23/2033 +6.95598,47.73363,3449,1,28,17,35,21,3.55,15.0,fr,56400,68,2420644,1,1,Active Shallow Crust,240.0127,57.99777,0.0,01/28/3449 +6.95598,47.73363,7982,3,8,15,32,13,3.55,5.0,fr,56401,159,2420646,1,1,Active Shallow Crust,0.0,89.99314,-90.0,03/08/7982 +6.95598,47.73363,5905,4,27,1,15,46,3.55,5.0,fr,56402,118,2420649,1,1,Active Shallow Crust,128.8956,89.99322,0.0,04/27/5905 +6.95598,47.73363,6354,2,2,7,38,58,3.65,5.0,fr,56403,127,2420652,1,3,Active Shallow Crust,0.0,89.98791,0.0,02/02/6354 +6.95598,47.73363,7615,12,11,18,59,11,3.65,5.0,fr,56404,152,2420652,1,3,Active Shallow Crust,0.0,89.98791,0.0,12/11/7615 +6.95598,47.73363,8893,6,27,5,15,27,3.65,5.0,fr,56405,177,2420652,1,3,Active Shallow Crust,0.0,89.98791,0.0,06/27/8893 +6.95598,47.73363,3085,10,10,22,12,27,3.65,15.0,fr,56406,61,2420653,1,3,Active Shallow Crust,0.0,89.98791,0.0,10/10/3085 +6.95598,47.73363,3148,4,11,21,55,29,3.65,15.0,fr,56407,62,2420653,1,3,Active Shallow Crust,0.0,89.98791,0.0,04/11/3148 +6.95598,47.73363,7278,1,9,12,12,44,3.65,15.0,fr,56408,145,2420653,1,3,Active Shallow Crust,0.0,89.98791,0.0,01/09/7278 +6.95598,47.73363,5243,3,29,6,50,14,3.65,5.0,fr,56409,104,2420655,1,3,Active Shallow Crust,240.0009,58.01282,0.0,03/29/5243 +6.95598,47.73363,9144,7,26,19,55,9,3.65,5.0,fr,56410,182,2420655,1,3,Active Shallow Crust,240.0009,58.01282,0.0,07/26/9144 +6.95598,47.73363,2807,3,24,23,43,53,3.65,5.0,fr,56411,56,2420655,1,3,Active Shallow Crust,240.0009,58.01282,0.0,03/24/2807 +6.95598,47.73363,3368,6,4,4,51,32,3.65,5.0,fr,56412,67,2420661,1,1,Active Shallow Crust,128.9008,89.96355,0.0,06/04/3368 +6.95598,47.73363,7862,11,28,16,39,14,3.75,15.0,fr,56413,157,2420665,1,1,Active Shallow Crust,0.0,89.98923,0.0,11/28/7862 +6.95598,47.73363,720,6,29,3,6,31,3.85,5.0,fr,56414,14,2420679,1,1,Active Shallow Crust,240.0108,57.99721,0.0,06/29/0720 +6.95598,47.73363,3590,1,4,0,26,1,3.95,5.0,fr,56415,71,2420688,1,1,Active Shallow Crust,0.0,89.99144,0.0,01/04/3590 +6.95598,47.73363,9277,2,21,5,59,31,3.95,27.5,fr,56416,185,2420699,1,1,Active Shallow Crust,128.9001,89.99572,0.0,02/21/9277 +6.95598,47.73363,3871,10,1,5,24,20,4.05,5.0,fr,56417,77,2420700,1,1,Active Shallow Crust,0.0,89.98856,0.0,10/01/3871 +6.95598,47.73363,5502,11,23,2,50,58,4.05,27.5,fr,56418,110,2420702,1,1,Active Shallow Crust,0.0,89.98856,0.0,11/23/5502 +6.95598,47.73363,1996,12,28,9,40,37,4.15,5.0,fr,56419,39,2420712,1,3,Active Shallow Crust,0.0,89.9898,0.0,12/28/1996 +6.95598,47.73363,8405,11,4,21,57,18,4.15,5.0,fr,56420,168,2420712,1,3,Active Shallow Crust,0.0,89.9898,0.0,11/04/8405 +6.95598,47.73363,7691,6,1,10,19,51,4.15,5.0,fr,56421,153,2420712,1,3,Active Shallow Crust,0.0,89.9898,0.0,06/01/7691 +6.95598,47.73363,3349,2,4,22,22,25,4.15,5.0,fr,56422,66,2420718,1,1,Active Shallow Crust,0.0,89.98969,-90.0,02/04/3349 +6.95598,47.73363,5824,2,4,13,19,10,4.35,15.0,fr,56423,116,2420737,1,1,Active Shallow Crust,0.0,89.9892,0.0,02/04/5824 +6.95598,47.73363,6142,4,1,3,16,18,4.65,5.0,fr,56424,122,2420778,1,1,Active Shallow Crust,0.0,89.99033,-90.0,04/01/6142 +6.95598,47.73363,1593,12,14,6,5,0,4.65,27.5,fr,56425,31,2420783,1,1,Active Shallow Crust,128.8908,89.98681,0.0,12/14/1593 +1.15116,42.32443,3138,8,16,9,47,48,3.55,5.0,fr,56426,62,2421120,1,1,Active Shallow Crust,0.0,89.99068,0.0,08/16/3138 +1.15116,42.32443,6935,6,9,0,7,23,3.55,15.0,fr,56427,138,2421121,1,2,Active Shallow Crust,0.0,89.99068,0.0,06/09/6935 +1.15116,42.32443,5156,8,24,8,26,5,3.55,15.0,fr,56428,103,2421121,1,2,Active Shallow Crust,0.0,89.99068,0.0,08/24/5156 +1.15116,42.32443,3688,4,30,9,41,40,3.55,15.0,fr,56429,73,2421124,1,1,Active Shallow Crust,240.012,57.99807,0.0,04/30/3688 +1.15116,42.32443,467,11,25,2,59,23,3.55,5.0,fr,56430,9,2421126,1,2,Active Shallow Crust,0.0,89.99057,-90.0,11/25/0467 +1.15116,42.32443,6060,3,7,21,9,3,3.55,5.0,fr,56431,121,2421126,1,2,Active Shallow Crust,0.0,89.99057,-90.0,03/07/6060 +1.15116,42.32443,412,7,14,8,40,22,3.65,5.0,fr,56432,8,2421132,1,1,Active Shallow Crust,0.0,89.99004,0.0,07/14/0412 +1.15116,42.32443,22,7,28,17,36,49,3.65,15.0,fr,56433,0,2421133,1,2,Active Shallow Crust,0.0,89.99004,0.0,07/28/0022 +1.15116,42.32443,5221,2,5,2,2,16,3.65,15.0,fr,56434,104,2421133,1,2,Active Shallow Crust,0.0,89.99004,0.0,02/05/5221 +1.15116,42.32443,9181,1,14,6,58,54,3.65,15.0,fr,56435,183,2421139,1,1,Active Shallow Crust,0.0,89.98991,-90.0,01/14/9181 +1.15116,42.32443,7968,11,13,15,18,29,3.75,5.0,fr,56436,159,2421144,1,1,Active Shallow Crust,0.0,89.98964,0.0,11/13/7968 +1.15116,42.32443,7412,8,23,9,17,40,3.75,15.0,fr,56437,148,2421145,1,1,Active Shallow Crust,0.0,89.98964,0.0,08/23/7412 +1.15116,42.32443,5265,3,2,6,39,11,3.75,5.0,fr,56438,105,2421153,1,1,Active Shallow Crust,128.8972,89.96742,0.0,03/02/5265 +1.15116,42.32443,1638,6,26,6,3,28,3.75,15.0,fr,56439,32,2421154,1,1,Active Shallow Crust,128.8972,89.96742,0.0,06/26/1638 +1.15116,42.32443,1858,7,23,4,10,36,3.85,5.0,fr,56440,37,2421156,1,1,Active Shallow Crust,0.0,89.98944,0.0,07/23/1858 +1.15116,42.32443,7688,8,20,10,30,12,3.85,5.0,fr,56441,153,2421165,1,1,Active Shallow Crust,128.8959,89.99406,0.0,08/20/7688 +1.15116,42.32443,5297,6,12,6,0,3,3.95,5.0,fr,56442,105,2421168,1,2,Active Shallow Crust,0.0,89.98942,0.0,06/12/5297 +1.15116,42.32443,2595,7,21,6,19,38,3.95,5.0,fr,56443,51,2421168,1,2,Active Shallow Crust,0.0,89.98942,0.0,07/21/2595 +1.15116,42.32443,6283,5,27,22,56,48,3.95,15.0,fr,56444,125,2421169,1,1,Active Shallow Crust,0.0,89.98942,0.0,05/27/6283 +1.15116,42.32443,5661,3,7,3,11,21,4.05,15.0,fr,56445,113,2421184,1,1,Active Shallow Crust,240.0052,58.00571,0.0,03/07/5661 +1.15116,42.32443,4004,2,2,21,21,59,4.25,5.0,fr,56446,80,2421213,1,1,Active Shallow Crust,128.8949,89.98093,0.0,02/02/4004 +1.15116,42.32443,4083,7,21,11,57,30,4.55,5.0,fr,56447,81,2421240,1,1,Active Shallow Crust,0.0,89.98998,0.0,07/21/4083 +1.15116,42.32443,2155,8,28,21,20,5,5.25,5.0,fr,56448,43,2421327,1,1,Active Shallow Crust,240.018,57.99979,0.0,08/28/2155 +4.46026,45.99044,4654,8,18,1,50,5,3.75,5.0,fr,56449,93,2421624,1,1,Active Shallow Crust,0.0,89.98887,0.0,08/18/4654 +4.46026,45.99044,360,3,10,19,32,4,3.95,5.0,fr,56450,7,2421648,1,1,Active Shallow Crust,0.0,89.99116,0.0,03/10/0360 +4.46026,45.99044,392,2,6,7,6,8,3.95,5.0,fr,56451,7,2421651,1,1,Active Shallow Crust,240.0196,58.00517,0.0,02/06/0392 +4.46026,45.99044,5897,9,26,11,56,33,3.95,15.0,fr,56452,117,2421655,1,1,Active Shallow Crust,0.0,89.99106,-90.0,09/26/5897 +4.46026,45.99044,9332,6,24,0,33,55,4.05,5.0,fr,56453,186,2421666,1,1,Active Shallow Crust,0.0,89.98804,-90.0,06/24/9332 +4.46026,45.99044,5657,10,7,14,49,55,4.05,5.0,fr,56454,113,2421669,1,1,Active Shallow Crust,128.8915,89.99212,0.0,10/07/5657 +4.46026,45.99044,7361,3,12,7,53,33,4.45,5.0,fr,56455,147,2421708,1,1,Active Shallow Crust,0.0,89.99006,0.0,03/12/7361 +4.46026,45.99044,2076,5,21,6,44,37,4.75,5.0,fr,56456,41,2421753,1,1,Active Shallow Crust,128.889,89.98814,0.0,05/21/2076 +4.46026,45.99044,3810,1,16,22,48,41,4.95,27.5,fr,56457,76,2421770,1,1,Active Shallow Crust,0.0,89.99021,0.0,01/16/3810 +4.46026,45.99044,241,2,19,5,31,9,6.15,15.0,fr,56458,4,2421913,1,1,Active Shallow Crust,359.9998,89.99016,0.0,02/19/0241 +4.17117,45.16672,9295,9,20,4,46,27,3.55,5.0,fr,56459,185,2422080,1,1,Active Shallow Crust,0.0,89.99289,0.0,09/20/9295 +4.17117,45.16672,942,10,18,13,21,37,3.55,5.0,fr,56460,18,2422086,1,2,Active Shallow Crust,0.0,89.99281,-90.0,10/18/0942 +4.17117,45.16672,4018,11,22,21,39,48,3.55,5.0,fr,56461,80,2422086,1,2,Active Shallow Crust,0.0,89.99281,-90.0,11/22/4018 +4.17117,45.16672,3098,10,14,0,59,56,3.65,5.0,fr,56462,61,2422098,1,1,Active Shallow Crust,0.0,89.98718,-90.0,10/14/3098 +4.17117,45.16672,9685,3,15,0,28,18,3.75,5.0,fr,56463,193,2422104,1,1,Active Shallow Crust,0.0,89.98871,0.0,03/15/9685 +4.17117,45.16672,2159,8,8,10,0,3,3.85,5.0,fr,56464,43,2422125,1,1,Active Shallow Crust,128.896,89.99496,0.0,08/08/2159 +4.17117,45.16672,56,10,24,18,59,28,3.95,5.0,fr,56465,1,2422128,1,1,Active Shallow Crust,0.0,89.99103,0.0,10/24/0056 +4.17117,45.16672,2641,8,15,4,39,19,3.95,5.0,fr,56466,52,2422131,1,1,Active Shallow Crust,240.0194,58.00515,0.0,08/15/2641 +4.17117,45.16672,4498,5,25,13,52,15,3.95,27.5,fr,56467,89,2422133,1,1,Active Shallow Crust,240.0194,58.00515,0.0,05/25/4498 +4.17117,45.16672,780,8,21,14,29,18,4.45,27.5,fr,56468,15,2422193,1,1,Active Shallow Crust,240.0052,57.99414,0.0,08/21/0780 +7.70965,46.40109,1047,2,12,8,18,48,3.55,5.0,fr,56469,20,2422560,1,7,Active Shallow Crust,0.0,89.99305,0.0,02/12/1047 +7.70965,46.40109,1076,2,26,4,11,20,3.55,5.0,fr,56470,21,2422560,1,7,Active Shallow Crust,0.0,89.99305,0.0,02/26/1076 +7.70965,46.40109,8569,12,31,2,40,46,3.55,5.0,fr,56471,171,2422560,1,7,Active Shallow Crust,0.0,89.99305,0.0,12/31/8569 +7.70965,46.40109,520,4,27,20,26,54,3.55,5.0,fr,56472,10,2422560,1,7,Active Shallow Crust,0.0,89.99305,0.0,04/27/0520 +7.70965,46.40109,5790,8,22,13,33,6,3.55,5.0,fr,56473,115,2422560,1,7,Active Shallow Crust,0.0,89.99305,0.0,08/22/5790 +7.70965,46.40109,9230,2,18,10,21,19,3.55,5.0,fr,56474,184,2422560,1,7,Active Shallow Crust,0.0,89.99305,0.0,02/18/9230 +7.70965,46.40109,6221,4,10,12,49,59,3.55,5.0,fr,56475,124,2422560,1,7,Active Shallow Crust,0.0,89.99305,0.0,04/10/6221 +7.70965,46.40109,94,8,20,1,37,55,3.55,15.0,fr,56476,1,2422561,1,2,Active Shallow Crust,0.0,89.99305,0.0,08/20/0094 +7.70965,46.40109,1008,3,14,15,4,28,3.55,15.0,fr,56477,20,2422561,1,2,Active Shallow Crust,0.0,89.99305,0.0,03/14/1008 +7.70965,46.40109,6236,8,19,5,31,24,3.65,5.0,fr,56478,124,2422572,1,5,Active Shallow Crust,0.0,89.9876,0.0,08/19/6236 +7.70965,46.40109,9576,12,30,10,26,37,3.65,5.0,fr,56479,191,2422572,1,5,Active Shallow Crust,0.0,89.9876,0.0,12/30/9576 +7.70965,46.40109,6119,2,25,13,4,36,3.65,5.0,fr,56480,122,2422572,1,5,Active Shallow Crust,0.0,89.9876,0.0,02/25/6119 +7.70965,46.40109,6733,1,16,9,37,33,3.65,5.0,fr,56481,134,2422572,1,5,Active Shallow Crust,0.0,89.9876,0.0,01/16/6733 +7.70965,46.40109,5144,6,22,6,38,2,3.65,5.0,fr,56482,102,2422572,1,5,Active Shallow Crust,0.0,89.9876,0.0,06/22/5144 +7.70965,46.40109,9078,8,22,0,26,21,3.65,15.0,fr,56483,181,2422573,1,1,Active Shallow Crust,0.0,89.9876,0.0,08/22/9078 +7.70965,46.40109,1387,9,20,22,13,35,3.65,27.5,fr,56484,27,2422574,1,1,Active Shallow Crust,0.0,89.9876,0.0,09/20/1387 +7.70965,46.40109,8248,10,6,7,42,13,3.65,5.0,fr,56485,164,2422575,1,1,Active Shallow Crust,240.0014,58.01278,0.0,10/06/8248 +7.70965,46.40109,3385,8,13,1,39,48,3.65,15.0,fr,56486,67,2422576,1,1,Active Shallow Crust,240.0014,58.01278,0.0,08/13/3385 +7.70965,46.40109,5417,2,11,2,25,28,3.65,5.0,fr,56487,108,2422581,1,1,Active Shallow Crust,128.9003,89.96352,0.0,02/11/5417 +7.70965,46.40109,993,1,1,11,27,12,3.75,5.0,fr,56488,19,2422584,1,3,Active Shallow Crust,0.0,89.98895,0.0,01/01/0993 +7.70965,46.40109,4029,7,9,2,4,39,3.75,5.0,fr,56489,80,2422584,1,3,Active Shallow Crust,0.0,89.98895,0.0,07/09/4029 +7.70965,46.40109,6872,7,19,16,22,1,3.75,5.0,fr,56490,137,2422584,1,3,Active Shallow Crust,0.0,89.98895,0.0,07/19/6872 +7.70965,46.40109,5400,12,5,7,34,46,3.75,15.0,fr,56491,107,2422585,1,2,Active Shallow Crust,0.0,89.98895,0.0,12/05/5400 +7.70965,46.40109,9118,3,7,18,56,11,3.75,15.0,fr,56492,182,2422585,1,2,Active Shallow Crust,0.0,89.98895,0.0,03/07/9118 +7.70965,46.40109,2961,6,2,20,25,4,3.75,5.0,fr,56493,59,2422590,1,1,Active Shallow Crust,0.0,89.98882,-90.0,06/02/2961 +7.70965,46.40109,3157,7,20,3,24,44,3.75,5.0,fr,56494,63,2422593,1,1,Active Shallow Crust,128.8963,89.96749,0.0,07/20/3157 +7.70965,46.40109,2446,9,15,10,34,14,3.85,5.0,fr,56495,48,2422596,1,1,Active Shallow Crust,0.0,89.99015,0.0,09/15/2446 +7.70965,46.40109,1955,1,29,11,34,56,3.85,15.0,fr,56496,39,2422597,1,1,Active Shallow Crust,0.0,89.99015,0.0,01/29/1955 +7.70965,46.40109,9717,3,6,4,27,45,3.85,5.0,fr,56497,194,2422599,1,3,Active Shallow Crust,240.011,57.99704,0.0,03/06/9717 +7.70965,46.40109,3108,5,1,1,25,25,3.85,5.0,fr,56498,62,2422599,1,3,Active Shallow Crust,240.011,57.99704,0.0,05/01/3108 +7.70965,46.40109,8707,3,22,10,33,13,3.85,5.0,fr,56499,174,2422599,1,3,Active Shallow Crust,240.011,57.99704,0.0,03/22/8707 +7.70965,46.40109,455,8,5,17,30,10,3.85,15.0,fr,56500,9,2422600,1,1,Active Shallow Crust,240.011,57.99704,0.0,08/05/0455 +7.70965,46.40109,5085,10,2,14,25,54,3.85,15.0,fr,56501,101,2422606,1,1,Active Shallow Crust,128.8955,89.99261,0.0,10/02/5085 +7.70965,46.40109,9987,6,22,16,12,24,3.95,5.0,fr,56502,199,2422608,1,3,Active Shallow Crust,0.0,89.99123,0.0,06/22/9987 +7.70965,46.40109,1570,2,21,20,17,50,3.95,5.0,fr,56503,31,2422608,1,3,Active Shallow Crust,0.0,89.99123,0.0,02/21/1570 +7.70965,46.40109,8832,1,29,4,27,38,3.95,5.0,fr,56504,176,2422608,1,3,Active Shallow Crust,0.0,89.99123,0.0,01/29/8832 +7.70965,46.40109,7928,10,14,18,20,55,3.95,15.0,fr,56505,158,2422609,1,1,Active Shallow Crust,0.0,89.99123,0.0,10/14/7928 +7.70965,46.40109,7902,5,17,4,32,52,3.95,5.0,fr,56506,158,2422611,1,1,Active Shallow Crust,240.0203,58.00473,0.0,05/17/7902 +7.70965,46.40109,4999,11,29,7,30,13,3.95,27.5,fr,56507,99,2422616,1,1,Active Shallow Crust,0.0,89.99112,-90.0,11/29/4999 +7.70965,46.40109,3704,9,30,18,14,7,3.95,5.0,fr,56508,74,2422617,1,2,Active Shallow Crust,128.9009,89.99342,0.0,09/30/3704 +7.70965,46.40109,3355,10,12,11,47,0,3.95,5.0,fr,56509,67,2422617,1,2,Active Shallow Crust,128.9009,89.99342,0.0,10/12/3355 +7.70965,46.40109,3730,9,27,3,20,1,4.05,5.0,fr,56510,74,2422620,1,1,Active Shallow Crust,0.0,89.98827,0.0,09/27/3730 +7.70965,46.40109,1003,1,6,13,0,23,4.05,15.0,fr,56511,20,2422621,1,1,Active Shallow Crust,0.0,89.98827,0.0,01/06/1003 +7.70965,46.40109,5555,3,7,15,2,48,4.05,5.0,fr,56512,111,2422623,1,1,Active Shallow Crust,240.0056,58.00583,0.0,03/07/5555 +7.70965,46.40109,2917,6,16,2,24,30,4.15,15.0,fr,56513,58,2422633,1,1,Active Shallow Crust,0.0,89.98954,0.0,06/16/2917 +7.70965,46.40109,3110,5,25,5,38,15,4.15,5.0,fr,56514,62,2422638,1,2,Active Shallow Crust,0.0,89.98943,-90.0,05/25/3110 +7.70965,46.40109,5725,4,27,22,57,26,4.15,5.0,fr,56515,114,2422638,1,2,Active Shallow Crust,0.0,89.98943,-90.0,04/27/5725 +7.70965,46.40109,6590,2,13,22,8,42,4.25,5.0,fr,56516,131,2422644,1,4,Active Shallow Crust,0.0,89.99068,0.0,02/13/6590 +7.70965,46.40109,3444,12,2,1,25,16,4.25,5.0,fr,56517,68,2422644,1,4,Active Shallow Crust,0.0,89.99068,0.0,12/02/3444 +7.70965,46.40109,9264,12,22,22,55,44,4.25,5.0,fr,56518,185,2422644,1,4,Active Shallow Crust,0.0,89.99068,0.0,12/22/9264 +7.70965,46.40109,3006,12,22,0,15,34,4.25,5.0,fr,56519,60,2422644,1,4,Active Shallow Crust,0.0,89.99068,0.0,12/22/3006 +7.70965,46.40109,3533,4,17,9,31,30,4.25,15.0,fr,56520,70,2422645,1,1,Active Shallow Crust,0.0,89.99068,0.0,04/17/3533 +7.70965,46.40109,527,5,29,12,28,29,4.25,5.0,fr,56521,10,2422653,1,1,Active Shallow Crust,128.8941,89.98094,0.0,05/29/0527 +7.70965,46.40109,1298,12,24,1,0,31,4.35,15.0,fr,56522,25,2422657,1,1,Active Shallow Crust,0.0,89.98892,0.0,12/24/1298 +7.70965,46.40109,3650,2,5,17,42,46,4.35,15.0,fr,56523,72,2422666,1,1,Active Shallow Crust,128.897,89.98302,0.0,02/05/3650 +7.70965,46.40109,5579,10,2,23,25,13,4.45,15.0,fr,56524,111,2422669,1,2,Active Shallow Crust,0.0,89.99013,0.0,10/02/5579 +7.70965,46.40109,4787,1,21,2,30,2,4.45,15.0,fr,56525,95,2422669,1,2,Active Shallow Crust,0.0,89.99013,0.0,01/21/4787 +7.70965,46.40109,2367,7,20,4,16,52,4.45,5.0,fr,56526,47,2422674,1,1,Active Shallow Crust,0.0,89.99001,-90.0,07/20/2367 +7.70965,46.40109,1551,7,23,3,1,43,4.55,5.0,fr,56527,31,2422680,1,3,Active Shallow Crust,0.0,89.98901,0.0,07/23/1551 +7.70965,46.40109,1804,8,26,4,24,23,4.55,5.0,fr,56528,36,2422680,1,3,Active Shallow Crust,0.0,89.98901,0.0,08/26/1804 +7.70965,46.40109,8520,10,24,6,25,42,4.55,5.0,fr,56529,170,2422680,1,3,Active Shallow Crust,0.0,89.98901,0.0,10/24/8520 +7.70965,46.40109,6434,6,1,14,38,2,4.55,5.0,fr,56530,128,2422683,1,1,Active Shallow Crust,240.0094,57.99718,0.0,06/01/6434 +7.70965,46.40109,6998,1,1,13,11,2,4.65,5.0,fr,56531,139,2422692,1,2,Active Shallow Crust,0.0,89.9902,0.0,01/01/6998 +7.70965,46.40109,260,8,8,8,39,6,4.65,5.0,fr,56532,5,2422692,1,2,Active Shallow Crust,0.0,89.9902,0.0,08/08/0260 +7.70965,46.40109,863,2,11,13,27,9,4.75,5.0,fr,56533,17,2422707,1,1,Active Shallow Crust,240.0074,58.00468,0.0,02/11/0863 +7.70965,46.40109,544,12,12,17,12,27,4.85,15.0,fr,56534,10,2422717,1,1,Active Shallow Crust,0.0,89.99065,0.0,12/12/0544 +7.70965,46.40109,545,3,30,7,2,43,5.05,15.0,fr,56535,10,2422741,1,1,Active Shallow Crust,0.0,89.9901,0.0,03/30/0545 +7.70965,46.40109,8932,8,4,11,31,58,5.75,5.0,fr,56536,178,2422824,1,1,Active Shallow Crust,0.0,89.99005,0.0,08/04/8932 +-1.41851,47.53168,8767,4,24,9,13,8,3.55,5.0,fr,56537,175,2423040,1,1,Active Shallow Crust,0.0,89.98978,0.0,04/24/8767 +-1.41851,47.53168,8050,5,7,21,43,32,3.55,15.0,fr,56538,160,2423041,1,2,Active Shallow Crust,0.0,89.98978,0.0,05/07/8050 +-1.41851,47.53168,1352,9,25,23,14,1,3.55,15.0,fr,56539,27,2423041,1,2,Active Shallow Crust,0.0,89.98978,0.0,09/25/1352 +-1.41851,47.53168,5277,11,13,23,44,25,3.55,5.0,fr,56540,105,2423043,1,1,Active Shallow Crust,240.0126,57.9981,0.0,11/13/5277 +-1.41851,47.53168,9914,7,7,8,59,14,3.55,27.5,fr,56541,198,2423045,1,1,Active Shallow Crust,240.0126,57.99801,0.0,07/07/9914 +-1.41851,47.53168,8233,10,30,21,52,38,3.65,5.0,fr,56542,164,2423052,1,1,Active Shallow Crust,0.0,89.98938,0.0,10/30/8233 +-1.41851,47.53168,323,12,4,22,39,49,3.65,15.0,fr,56543,6,2423059,1,1,Active Shallow Crust,0.0,89.98926,-90.0,12/04/0323 +-1.41851,47.53168,7156,7,12,1,50,1,3.75,5.0,fr,56544,143,2423064,1,1,Active Shallow Crust,0.0,89.99053,0.0,07/12/7156 +-1.41851,47.53168,8041,1,21,15,27,40,3.75,15.0,fr,56545,160,2423065,1,1,Active Shallow Crust,0.0,89.99053,0.0,01/21/8041 +-1.41851,47.53168,6438,1,23,11,11,15,3.85,5.0,fr,56546,128,2423079,1,1,Active Shallow Crust,240.011,57.99783,0.0,01/23/6438 +-1.41851,47.53168,753,8,18,16,56,35,3.85,5.0,fr,56547,15,2423085,1,1,Active Shallow Crust,128.8957,89.99337,0.0,08/18/0753 +-1.41851,47.53168,675,10,13,3,12,44,3.95,5.0,fr,56548,13,2423088,1,2,Active Shallow Crust,0.0,89.99033,0.0,10/13/0675 +-1.41851,47.53168,287,1,19,16,33,27,3.95,5.0,fr,56549,5,2423088,1,2,Active Shallow Crust,0.0,89.99033,0.0,01/19/0287 +-1.41851,47.53168,8312,10,3,3,44,36,3.95,5.0,fr,56550,166,2423097,1,1,Active Shallow Crust,128.9003,89.99355,0.0,10/03/8312 +-1.41851,47.53168,6656,2,14,0,45,20,3.95,15.0,fr,56551,133,2423098,1,1,Active Shallow Crust,128.9003,89.99355,0.0,02/14/6656 +-1.41851,47.53168,9490,4,16,0,12,18,4.15,15.0,fr,56552,189,2423119,1,1,Active Shallow Crust,0.0,89.98965,-90.0,04/16/9490 +-1.41851,47.53168,5890,9,25,13,11,7,4.35,5.0,fr,56553,117,2423142,1,1,Active Shallow Crust,0.0,89.98972,-90.0,09/25/5890 +-1.41851,47.53168,7140,7,2,3,35,49,4.45,27.5,fr,56554,142,2423156,1,1,Active Shallow Crust,0.0,89.99023,-90.0,07/02/7140 +-1.41851,47.53168,6199,12,20,2,52,12,4.55,15.0,fr,56555,123,2423161,1,1,Active Shallow Crust,0.0,89.98977,0.0,12/20/6199 +-1.41851,47.53168,5,7,30,0,20,20,4.85,5.0,fr,56556,0,2423196,1,1,Active Shallow Crust,0.0,89.99009,0.0,07/30/0005 +-1.41851,47.53168,1066,12,24,18,52,51,5.15,5.0,fr,56557,21,2423232,1,1,Active Shallow Crust,0.0,89.99001,0.0,12/24/1066 +-1.41851,47.53168,4186,10,1,23,30,21,5.15,5.0,fr,56558,83,2423235,1,1,Active Shallow Crust,240.0202,58.00008,0.0,10/01/4186 +-1.41851,47.53168,9825,7,25,17,54,30,5.25,15.0,fr,56559,196,2423245,1,1,Active Shallow Crust,0.0,89.9899,0.0,07/25/9825 +1.41597,44.64887,3481,5,14,21,46,23,4.05,15.0,fr,56560,69,2423584,1,1,Active Shallow Crust,240.0055,58.00588,0.0,05/14/3481 +1.41597,44.64887,9606,1,22,11,2,23,4.15,5.0,fr,56561,192,2423592,1,2,Active Shallow Crust,0.0,89.99011,0.0,01/22/9606 +1.41597,44.64887,3628,5,28,3,51,37,4.15,5.0,fr,56562,72,2423592,1,2,Active Shallow Crust,0.0,89.99011,0.0,05/28/3628 +2.39619,48.8241,7187,8,4,1,57,48,3.55,5.0,fr,56563,143,2424000,1,2,Active Shallow Crust,0.0,89.99004,0.0,08/04/7187 +2.39619,48.8241,3509,12,5,13,15,6,3.55,5.0,fr,56564,70,2424000,1,2,Active Shallow Crust,0.0,89.99004,0.0,12/05/3509 +2.39619,48.8241,9732,12,7,1,1,30,4.25,5.0,fr,56565,194,2424093,1,1,Active Shallow Crust,128.8937,89.98103,0.0,12/07/9732 +2.02253,51.27781,1458,7,11,23,57,7,3.55,15.0,fr,56566,29,2424481,1,1,Active Shallow Crust,0.0,89.99054,0.0,07/11/1458 +2.02253,51.27781,3851,7,12,9,1,36,3.55,5.0,fr,56567,77,2424489,1,1,Active Shallow Crust,128.8957,89.99369,0.0,07/12/3851 +2.02253,51.27781,3180,2,8,0,57,22,3.65,15.0,fr,56568,63,2424499,1,1,Active Shallow Crust,0.0,89.98862,-90.0,02/08/3180 +2.02253,51.27781,4834,1,21,12,46,11,3.75,5.0,fr,56569,96,2424504,1,1,Active Shallow Crust,0.0,89.98997,0.0,01/21/4834 +2.02253,51.27781,2352,4,7,23,47,11,3.75,5.0,fr,56570,47,2424507,1,1,Active Shallow Crust,240.009,58.01764,0.0,04/07/2352 +2.02253,51.27781,7381,8,3,1,33,47,3.85,5.0,fr,56571,147,2424516,1,1,Active Shallow Crust,0.0,89.99107,0.0,08/03/7381 +2.02253,51.27781,3051,1,2,4,26,29,4.15,5.0,fr,56572,61,2424552,1,1,Active Shallow Crust,0.0,89.99052,0.0,01/02/3051 +2.02253,51.27781,8486,2,18,1,56,45,4.25,15.0,fr,56573,169,2424565,1,1,Active Shallow Crust,0.0,89.99014,0.0,02/18/8486 +2.02253,51.27781,407,7,10,0,25,52,4.35,5.0,fr,56574,8,2424576,1,1,Active Shallow Crust,0.0,89.98995,0.0,07/10/0407 +2.02253,51.27781,8449,5,28,19,10,40,4.55,5.0,fr,56575,168,2424603,1,1,Active Shallow Crust,240.0109,57.99763,0.0,05/28/8449 +2.02253,51.27781,8343,6,19,12,42,42,4.95,5.0,fr,56576,166,2424648,1,1,Active Shallow Crust,0.0,89.98993,0.0,06/19/8343 +6.06045,46.98158,6331,12,22,17,21,58,3.55,15.0,fr,56577,126,2424961,1,1,Active Shallow Crust,0.0,89.99312,0.0,12/22/6331 +6.06045,46.98158,1798,8,15,7,2,22,3.55,15.0,fr,56578,35,2424970,1,1,Active Shallow Crust,128.8954,89.99312,0.0,08/15/1798 +6.06045,46.98158,5210,12,27,0,9,17,3.65,5.0,fr,56579,104,2424972,1,3,Active Shallow Crust,0.0,89.98774,0.0,12/27/5210 +6.06045,46.98158,7386,9,26,8,43,50,3.65,5.0,fr,56580,147,2424972,1,3,Active Shallow Crust,0.0,89.98774,0.0,09/26/7386 +6.06045,46.98158,4494,8,17,5,32,7,3.65,5.0,fr,56581,89,2424972,1,3,Active Shallow Crust,0.0,89.98774,0.0,08/17/4494 +6.06045,46.98158,6883,12,19,18,0,46,3.65,15.0,fr,56582,137,2424973,1,1,Active Shallow Crust,0.0,89.98774,0.0,12/19/6883 +6.06045,46.98158,7855,1,3,7,32,59,3.65,5.0,fr,56583,157,2424975,1,2,Active Shallow Crust,240.0014,58.0127,0.0,01/03/7855 +6.06045,46.98158,3551,11,13,7,14,20,3.65,5.0,fr,56584,71,2424975,1,2,Active Shallow Crust,240.0014,58.0127,0.0,11/13/3551 +6.06045,46.98158,1598,4,2,18,49,55,3.65,15.0,fr,56585,31,2424976,1,1,Active Shallow Crust,240.0014,58.0127,0.0,04/02/1598 +6.06045,46.98158,1553,5,15,23,9,39,3.75,5.0,fr,56586,31,2424984,1,1,Active Shallow Crust,0.0,89.98907,0.0,05/15/1553 +6.06045,46.98158,7185,9,17,16,29,53,3.75,27.5,fr,56587,143,2424986,1,1,Active Shallow Crust,0.0,89.98907,0.0,09/17/7185 +6.06045,46.98158,6956,6,29,18,12,14,3.85,5.0,fr,56588,139,2424996,1,3,Active Shallow Crust,0.0,89.99026,0.0,06/29/6956 +6.06045,46.98158,4549,6,1,6,47,32,3.85,5.0,fr,56589,90,2424996,1,3,Active Shallow Crust,0.0,89.99026,0.0,06/01/4549 +6.06045,46.98158,773,3,14,7,37,29,3.85,5.0,fr,56590,15,2424996,1,3,Active Shallow Crust,0.0,89.99026,0.0,03/14/0773 +6.06045,46.98158,6948,12,1,18,58,20,3.85,5.0,fr,56591,138,2425005,1,1,Active Shallow Crust,128.8951,89.9927,0.0,12/01/6948 +6.06045,46.98158,2041,2,24,1,25,44,3.95,5.0,fr,56592,40,2425008,1,1,Active Shallow Crust,0.0,89.99132,0.0,02/24/2041 +6.06045,46.98158,6287,2,22,20,24,57,3.95,27.5,fr,56593,125,2425010,1,1,Active Shallow Crust,0.0,89.99132,0.0,02/22/6287 +6.06045,46.98158,2319,7,25,7,32,33,4.05,5.0,fr,56594,46,2425029,1,1,Active Shallow Crust,128.8904,89.99419,0.0,07/25/2319 +6.06045,46.98158,8576,5,28,13,41,26,4.25,15.0,fr,56595,171,2425054,1,1,Active Shallow Crust,128.8942,89.98096,0.0,05/28/8576 +6.06045,46.98158,2630,12,11,1,14,18,4.75,15.0,fr,56596,52,2425105,1,1,Active Shallow Crust,0.0,89.98963,0.0,12/11/2630 +6.06045,46.98158,8546,10,3,20,25,53,4.85,5.0,fr,56597,170,2425116,1,1,Active Shallow Crust,0.0,89.99076,0.0,10/03/8546 +1.51991,41.97394,1149,1,13,17,51,27,3.55,15.0,fr,56598,22,2425441,1,2,Active Shallow Crust,0.0,89.99063,0.0,01/13/1149 +1.51991,41.97394,4616,12,23,15,52,52,3.55,15.0,fr,56599,92,2425441,1,2,Active Shallow Crust,0.0,89.99063,0.0,12/23/4616 +1.51991,41.97394,8328,5,22,7,25,39,4.05,5.0,fr,56600,166,2425500,1,1,Active Shallow Crust,0.0,89.99052,0.0,05/22/8328 +1.51991,41.97394,7563,11,9,17,53,51,4.15,27.5,fr,56601,151,2425514,1,1,Active Shallow Crust,0.0,89.98967,0.0,11/09/7563 +1.51991,41.97394,1799,1,15,6,57,35,4.35,15.0,fr,56602,35,2425537,1,1,Active Shallow Crust,0.0,89.9903,0.0,01/15/1799 +-0.96631,51.02032,1614,9,9,9,44,46,3.85,5.0,fr,56603,32,2425959,1,1,Active Shallow Crust,240.0115,57.99787,0.0,09/09/1614 +-0.96631,51.02032,5760,8,27,18,44,7,3.95,5.0,fr,56604,115,2425968,1,1,Active Shallow Crust,0.0,89.98999,0.0,08/27/5760 +-0.96631,51.02032,4629,4,30,9,16,46,4.25,5.0,fr,56605,92,2426004,1,1,Active Shallow Crust,0.0,89.99008,0.0,04/30/4629 +-1.76043,43.67772,6528,11,25,15,29,47,3.55,5.0,fr,56606,130,2426400,1,1,Active Shallow Crust,0.0,89.99088,0.0,11/25/6528 +-1.76043,43.67772,5438,1,7,20,50,34,3.95,5.0,fr,56607,108,2426451,1,1,Active Shallow Crust,240.0196,58.00492,0.0,01/07/5438 +-1.76043,43.67772,6793,11,25,12,15,56,5.05,27.5,fr,56608,135,2426585,1,1,Active Shallow Crust,240.0208,57.99728,0.0,11/25/6793 +4.891,44.08244,5463,8,7,4,45,2,3.55,5.0,fr,56609,109,2426880,1,2,Active Shallow Crust,0.0,89.99276,0.0,08/07/5463 +4.891,44.08244,1777,5,25,19,41,45,3.55,5.0,fr,56610,35,2426880,1,2,Active Shallow Crust,0.0,89.99276,0.0,05/25/1777 +4.891,44.08244,4507,1,2,21,1,44,3.55,15.0,fr,56611,90,2426881,1,1,Active Shallow Crust,0.0,89.99276,0.0,01/02/4507 +4.891,44.08244,2049,2,2,16,11,16,3.55,15.0,fr,56612,40,2426884,1,1,Active Shallow Crust,240.0109,57.99897,0.0,02/02/2049 +4.891,44.08244,4925,5,23,10,35,55,3.65,5.0,fr,56613,98,2426892,1,2,Active Shallow Crust,0.0,89.98709,0.0,05/23/4925 +4.891,44.08244,9844,9,26,23,12,44,3.65,5.0,fr,56614,196,2426892,1,2,Active Shallow Crust,0.0,89.98709,0.0,09/26/9844 +4.891,44.08244,369,10,22,0,28,21,3.65,5.0,fr,56615,7,2426895,1,1,Active Shallow Crust,240.0004,58.01282,0.0,10/22/0369 +4.891,44.08244,8941,8,22,12,4,26,3.65,5.0,fr,56616,178,2426901,1,1,Active Shallow Crust,128.9013,89.96348,0.0,08/22/8941 +4.891,44.08244,1383,11,21,0,55,13,3.75,5.0,fr,56617,27,2426904,1,2,Active Shallow Crust,0.0,89.98849,0.0,11/21/1383 +4.891,44.08244,91,10,1,6,56,43,3.75,5.0,fr,56618,1,2426904,1,2,Active Shallow Crust,0.0,89.98849,0.0,10/01/0091 +4.891,44.08244,9211,8,23,5,28,33,3.75,15.0,fr,56619,184,2426905,1,2,Active Shallow Crust,0.0,89.98849,0.0,08/23/9211 +4.891,44.08244,3609,9,18,12,43,37,3.75,15.0,fr,56620,72,2426905,1,2,Active Shallow Crust,0.0,89.98849,0.0,09/18/3609 +4.891,44.08244,4984,2,16,21,22,48,3.75,27.5,fr,56621,99,2426906,1,1,Active Shallow Crust,0.0,89.98849,0.0,02/16/4984 +4.891,44.08244,2126,7,24,13,37,56,3.85,5.0,fr,56622,42,2426916,1,1,Active Shallow Crust,0.0,89.98975,0.0,07/24/2126 +4.891,44.08244,4166,10,10,7,56,56,3.85,5.0,fr,56623,83,2426922,1,1,Active Shallow Crust,0.0,89.98962,-90.0,10/10/4166 +4.891,44.08244,489,5,31,2,42,57,3.95,27.5,fr,56624,9,2426930,1,1,Active Shallow Crust,0.0,89.99086,0.0,05/31/0489 +4.891,44.08244,8303,3,23,4,23,7,3.95,5.0,fr,56625,166,2426931,1,1,Active Shallow Crust,240.0197,58.0049,0.0,03/23/8303 +4.891,44.08244,4887,10,16,15,22,34,4.05,15.0,fr,56626,97,2426941,1,1,Active Shallow Crust,0.0,89.99185,0.0,10/16/4887 +4.891,44.08244,7036,8,28,11,38,56,4.15,15.0,fr,56627,140,2426953,1,1,Active Shallow Crust,0.0,89.98911,0.0,08/28/7036 +4.891,44.08244,8279,2,13,7,40,38,4.15,5.0,fr,56628,165,2426958,1,1,Active Shallow Crust,0.0,89.98898,-90.0,02/13/8279 +4.891,44.08244,1895,4,2,19,11,3,4.35,5.0,fr,56629,37,2426976,1,1,Active Shallow Crust,0.0,89.99135,0.0,04/02/1895 +4.891,44.08244,4585,12,2,22,16,33,4.75,5.0,fr,56630,91,2427027,1,1,Active Shallow Crust,240.0067,58.00418,0.0,12/02/4585 +4.891,44.08244,2852,5,10,3,31,56,5.15,5.0,fr,56631,57,2427072,1,2,Active Shallow Crust,0.0,89.98966,0.0,05/10/2852 +4.891,44.08244,9208,5,24,16,22,44,5.15,5.0,fr,56632,184,2427072,1,2,Active Shallow Crust,0.0,89.98966,0.0,05/24/9208 +4.891,44.08244,4107,4,28,22,5,45,5.15,5.0,fr,56633,82,2427078,1,1,Active Shallow Crust,0.0,89.98955,-90.0,04/28/4107 +3.61129,50.42324,5264,3,12,4,49,53,3.55,5.0,fr,56634,105,2427363,1,1,Active Shallow Crust,240.0129,57.9981,0.0,03/12/5264 +3.61129,50.42324,3475,3,5,9,38,51,3.65,15.0,fr,56635,69,2427373,1,1,Active Shallow Crust,0.0,89.99141,0.0,03/05/3475 +3.61129,50.42324,9243,5,8,3,1,46,3.75,5.0,fr,56636,184,2427384,1,1,Active Shallow Crust,0.0,89.98979,0.0,05/08/9243 +3.61129,50.42324,134,12,17,6,49,49,3.75,5.0,fr,56637,2,2427390,1,1,Active Shallow Crust,0.0,89.98968,-90.0,12/17/0134 +3.61129,50.42324,2253,10,9,1,8,8,3.85,15.0,fr,56638,45,2427400,1,1,Active Shallow Crust,240.0111,57.99824,0.0,10/09/2253 +3.61129,50.42324,4438,6,24,8,2,1,3.95,15.0,fr,56639,88,2427409,1,1,Active Shallow Crust,0.0,89.98987,0.0,06/24/4438 +3.61129,50.42324,6533,1,22,20,40,29,4.05,5.0,fr,56640,130,2427420,1,1,Active Shallow Crust,0.0,89.98916,0.0,01/22/6533 +3.61129,50.42324,7405,11,15,18,21,28,4.05,5.0,fr,56641,148,2427423,1,1,Active Shallow Crust,240.0069,58.00603,0.0,11/15/7405 +3.61129,50.42324,1568,4,13,6,58,2,4.05,5.0,fr,56642,31,2427426,1,2,Active Shallow Crust,0.0,89.99086,-90.0,04/13/1568 +3.61129,50.42324,3290,10,14,1,35,3,4.05,5.0,fr,56643,65,2427426,1,2,Active Shallow Crust,0.0,89.99086,-90.0,10/14/3290 +3.61129,50.42324,7539,10,8,0,46,44,4.35,5.0,fr,56644,150,2427456,1,1,Active Shallow Crust,0.0,89.98977,0.0,10/08/7539 +3.61129,50.42324,9559,6,17,9,45,11,4.35,5.0,fr,56645,191,2427459,1,1,Active Shallow Crust,240.0092,57.99633,0.0,06/17/9559 +3.61129,50.42324,6857,2,11,20,10,40,4.45,15.0,fr,56646,137,2427469,1,1,Active Shallow Crust,0.0,89.98974,0.0,02/11/6857 +3.61129,50.42324,6583,10,8,20,38,22,4.65,5.0,fr,56647,131,2427492,1,1,Active Shallow Crust,0.0,89.99004,0.0,10/08/6583 +-2.19345,48.81551,2705,5,14,22,45,24,3.55,5.0,fr,56648,54,2427840,1,2,Active Shallow Crust,0.0,89.99004,0.0,05/14/2705 +-2.19345,48.81551,6967,11,1,17,38,53,3.55,5.0,fr,56649,139,2427840,1,2,Active Shallow Crust,0.0,89.99004,0.0,11/01/6967 +-2.19345,48.81551,7824,9,12,5,11,39,3.55,15.0,fr,56650,156,2427841,1,1,Active Shallow Crust,0.0,89.99004,0.0,09/12/7824 +-2.19345,48.81551,7466,3,20,16,3,48,3.65,5.0,fr,56651,149,2427852,1,2,Active Shallow Crust,0.0,89.99112,0.0,03/20/7466 +-2.19345,48.81551,3626,3,10,13,50,15,3.65,5.0,fr,56652,72,2427852,1,2,Active Shallow Crust,0.0,89.99112,0.0,03/10/3626 +-2.19345,48.81551,7524,9,12,16,51,29,3.65,15.0,fr,56653,150,2427853,1,1,Active Shallow Crust,0.0,89.99112,0.0,09/12/7524 +-2.19345,48.81551,4809,3,19,14,5,53,3.65,5.0,fr,56654,96,2427855,1,2,Active Shallow Crust,240.0013,58.01283,0.0,03/19/4809 +-2.19345,48.81551,7862,4,27,7,54,30,3.65,5.0,fr,56655,157,2427855,1,2,Active Shallow Crust,240.0013,58.01283,0.0,04/27/7862 +-2.19345,48.81551,5903,12,15,16,35,46,3.75,5.0,fr,56656,118,2427864,1,1,Active Shallow Crust,0.0,89.98945,0.0,12/15/5903 +-2.19345,48.81551,9339,9,3,20,14,18,3.85,5.0,fr,56657,186,2427876,1,1,Active Shallow Crust,0.0,89.9906,0.0,09/03/9339 +-2.19345,48.81551,6314,4,26,18,14,11,3.85,15.0,fr,56658,126,2427877,1,1,Active Shallow Crust,0.0,89.9906,0.0,04/26/6314 +-2.19345,48.81551,4450,5,9,4,39,39,3.85,5.0,fr,56659,88,2427879,1,2,Active Shallow Crust,240.0112,57.99806,0.0,05/09/4450 +-2.19345,48.81551,582,2,8,18,51,2,3.85,5.0,fr,56660,11,2427879,1,2,Active Shallow Crust,240.0112,57.99806,0.0,02/08/0582 +-2.19345,48.81551,5525,8,31,5,57,25,3.95,5.0,fr,56661,110,2427897,1,1,Active Shallow Crust,128.9,89.99371,0.0,08/31/5525 +-2.19345,48.81551,4756,9,10,0,53,36,4.05,5.0,fr,56662,95,2427900,1,2,Active Shallow Crust,0.0,89.99066,0.0,09/10/4756 +-2.19345,48.81551,9811,10,28,7,20,0,4.05,5.0,fr,56663,196,2427900,1,2,Active Shallow Crust,0.0,89.99066,0.0,10/28/9811 +-2.19345,48.81551,2698,4,8,0,29,52,4.05,5.0,fr,56664,53,2427903,1,1,Active Shallow Crust,240.0062,58.00579,0.0,04/08/2698 +-2.19345,48.81551,8267,3,16,6,16,51,4.05,27.5,fr,56665,165,2427911,1,1,Active Shallow Crust,128.8906,89.99347,0.0,03/16/8267 +-2.19345,48.81551,2382,4,11,2,11,45,4.15,5.0,fr,56666,47,2427912,1,2,Active Shallow Crust,0.0,89.99001,0.0,04/11/2382 +-2.19345,48.81551,2544,7,23,7,6,19,4.15,5.0,fr,56667,50,2427912,1,2,Active Shallow Crust,0.0,89.99001,0.0,07/23/2544 +-2.19345,48.81551,4936,1,24,6,50,35,4.25,5.0,fr,56668,98,2427924,1,1,Active Shallow Crust,0.0,89.98962,0.0,01/24/4936 +-2.19345,48.81551,2260,11,24,12,40,0,4.35,27.5,fr,56669,45,2427938,1,1,Active Shallow Crust,0.0,89.98943,0.0,11/24/2260 +-2.19345,48.81551,5888,11,26,20,9,28,4.35,5.0,fr,56670,117,2427939,1,1,Active Shallow Crust,240.009,57.99587,0.0,11/26/5888 +-2.19345,48.81551,1536,2,22,16,15,32,4.55,15.0,fr,56671,30,2427961,1,1,Active Shallow Crust,0.0,89.9895,0.0,02/22/1536 +-2.19345,48.81551,5487,10,8,2,5,29,4.75,5.0,fr,56672,109,2427984,1,1,Active Shallow Crust,0.0,89.98999,0.0,10/08/5487 +-2.19345,48.81551,2940,5,18,15,20,10,4.75,15.0,fr,56673,58,2427985,1,1,Active Shallow Crust,0.0,89.98999,0.0,05/18/2940 +5.39402,44.28227,9833,9,7,22,21,28,3.55,5.0,fr,56674,196,2429280,1,2,Active Shallow Crust,0.0,89.99278,0.0,09/07/9833 +5.39402,44.28227,7072,6,3,10,38,45,3.55,5.0,fr,56675,141,2429280,1,2,Active Shallow Crust,0.0,89.99278,0.0,06/03/7072 +5.39402,44.28227,1236,3,8,20,52,11,3.55,15.0,fr,56676,24,2429281,1,1,Active Shallow Crust,0.0,89.99278,0.0,03/08/1236 +5.39402,44.28227,6309,3,5,1,44,4,3.65,5.0,fr,56677,126,2429295,1,1,Active Shallow Crust,240.0017,58.01278,0.0,03/05/6309 +5.39402,44.28227,334,7,27,22,12,16,3.65,5.0,fr,56678,6,2429298,1,1,Active Shallow Crust,0.0,89.98698,-90.0,07/27/0334 +5.39402,44.28227,6686,3,5,12,42,36,3.75,5.0,fr,56679,133,2429304,1,1,Active Shallow Crust,0.0,89.98853,0.0,03/05/6686 +5.39402,44.28227,9687,10,19,9,4,57,3.75,5.0,fr,56680,193,2429310,1,1,Active Shallow Crust,0.0,89.9884,-90.0,10/19/9687 +5.39402,44.28227,1292,3,17,13,3,49,3.75,5.0,fr,56681,25,2429313,1,1,Active Shallow Crust,128.8979,89.96683,0.0,03/17/1292 +5.39402,44.28227,499,10,29,22,19,12,3.85,5.0,fr,56682,9,2429316,1,1,Active Shallow Crust,0.0,89.98978,0.0,10/29/0499 +5.39402,44.28227,2308,12,29,8,2,28,3.85,15.0,fr,56683,46,2429317,1,2,Active Shallow Crust,0.0,89.98978,0.0,12/29/2308 +5.39402,44.28227,847,7,14,18,23,54,3.85,15.0,fr,56684,16,2429317,1,2,Active Shallow Crust,0.0,89.98978,0.0,07/14/0847 +5.39402,44.28227,7623,9,18,2,21,55,3.95,5.0,fr,56685,152,2429328,1,1,Active Shallow Crust,0.0,89.99089,0.0,09/18/7623 +5.39402,44.28227,1033,9,29,21,54,46,3.95,5.0,fr,56686,20,2429334,1,1,Active Shallow Crust,0.0,89.99078,-90.0,09/29/1033 +5.39402,44.28227,4671,3,28,22,50,12,4.05,15.0,fr,56687,93,2429341,1,1,Active Shallow Crust,0.0,89.99188,0.0,03/28/4671 +5.39402,44.28227,3743,8,2,18,8,46,4.15,15.0,fr,56688,74,2429353,1,1,Active Shallow Crust,0.0,89.98914,0.0,08/02/3743 +5.39402,44.28227,8904,1,23,11,30,48,4.25,5.0,fr,56689,178,2429364,1,1,Active Shallow Crust,0.0,89.99033,0.0,01/23/8904 +5.39402,44.28227,7615,12,18,22,14,25,4.65,5.0,fr,56690,152,2429412,1,1,Active Shallow Crust,0.0,89.98982,0.0,12/18/7615 +5.39402,44.28227,5231,8,30,13,41,30,5.55,5.0,fr,56691,104,2429520,1,1,Active Shallow Crust,0.0,89.98989,0.0,08/30/5231 +0.78259,47.81995,1286,11,7,3,6,32,3.55,27.5,fr,56692,25,2429765,1,1,Active Shallow Crust,240.0124,57.99813,0.0,11/07/1286 +0.78259,47.81995,6828,2,17,15,14,31,3.65,5.0,fr,56693,136,2429772,1,1,Active Shallow Crust,0.0,89.9902,0.0,02/17/6828 +0.78259,47.81995,9466,4,18,9,15,20,3.95,5.0,fr,56694,189,2429808,1,1,Active Shallow Crust,0.0,89.98985,0.0,04/18/9466 +0.78259,47.81995,1919,7,16,2,37,19,4.35,5.0,fr,56695,38,2429865,1,1,Active Shallow Crust,128.8976,89.98271,0.0,07/16/1919 +6.18988,46.86893,2215,6,23,9,15,37,3.55,5.0,fr,56696,44,2430240,1,1,Active Shallow Crust,0.0,89.9931,0.0,06/23/2215 +6.18988,46.86893,5432,12,7,21,3,58,3.55,15.0,fr,56697,108,2430241,1,1,Active Shallow Crust,0.0,89.9931,0.0,12/07/5432 +6.18988,46.86893,3191,9,18,3,32,59,3.55,27.5,fr,56698,63,2430242,1,1,Active Shallow Crust,0.0,89.9931,0.0,09/18/3191 +6.18988,46.86893,2026,8,12,14,24,49,3.55,15.0,fr,56699,40,2430244,1,1,Active Shallow Crust,240.0116,57.99831,0.0,08/12/2026 +6.18988,46.86893,1744,2,26,19,3,51,3.65,5.0,fr,56700,34,2430258,1,1,Active Shallow Crust,0.0,89.98757,-90.0,02/26/1744 +6.18988,46.86893,4982,4,29,2,14,58,3.75,5.0,fr,56701,99,2430264,1,2,Active Shallow Crust,0.0,89.98904,0.0,04/29/4982 +6.18988,46.86893,3944,1,16,16,11,53,3.75,5.0,fr,56702,78,2430264,1,2,Active Shallow Crust,0.0,89.98904,0.0,01/16/3944 +6.18988,46.86893,8261,7,14,11,44,28,3.75,15.0,fr,56703,165,2430265,1,1,Active Shallow Crust,0.0,89.98904,0.0,07/14/8261 +6.18988,46.86893,2737,4,7,4,40,56,3.75,5.0,fr,56704,54,2430273,1,1,Active Shallow Crust,128.8965,89.9675,0.0,04/07/2737 +6.18988,46.86893,517,8,30,16,35,37,3.85,5.0,fr,56705,10,2430276,1,6,Active Shallow Crust,0.0,89.99024,0.0,08/30/0517 +6.18988,46.86893,5453,2,25,7,39,6,3.85,5.0,fr,56706,109,2430276,1,6,Active Shallow Crust,0.0,89.99024,0.0,02/25/5453 +6.18988,46.86893,5478,8,8,13,9,13,3.85,5.0,fr,56707,109,2430276,1,6,Active Shallow Crust,0.0,89.99024,0.0,08/08/5478 +6.18988,46.86893,2519,2,14,14,1,23,3.85,5.0,fr,56708,50,2430276,1,6,Active Shallow Crust,0.0,89.99024,0.0,02/14/2519 +6.18988,46.86893,7882,11,22,7,7,28,3.85,5.0,fr,56709,157,2430276,1,6,Active Shallow Crust,0.0,89.99024,0.0,11/22/7882 +6.18988,46.86893,1063,8,20,22,3,3,3.85,5.0,fr,56710,21,2430276,1,6,Active Shallow Crust,0.0,89.99024,0.0,08/20/1063 +6.18988,46.86893,3956,1,14,16,23,56,3.85,15.0,fr,56711,79,2430277,1,1,Active Shallow Crust,0.0,89.99024,0.0,01/14/3956 +6.18988,46.86893,7478,2,27,19,3,40,3.85,5.0,fr,56712,149,2430282,1,1,Active Shallow Crust,0.0,89.99013,-90.0,02/27/7478 +6.18988,46.86893,229,5,3,12,47,18,3.95,5.0,fr,56713,4,2430291,1,1,Active Shallow Crust,240.0199,58.00481,0.0,05/03/0229 +6.18988,46.86893,1607,1,8,5,52,14,4.05,5.0,fr,56714,32,2430300,1,2,Active Shallow Crust,0.0,89.98837,0.0,01/08/1607 +6.18988,46.86893,2229,12,19,0,11,14,4.05,5.0,fr,56715,44,2430300,1,2,Active Shallow Crust,0.0,89.98837,0.0,12/19/2229 +6.18988,46.86893,8296,5,12,13,47,31,4.15,15.0,fr,56716,165,2430319,1,1,Active Shallow Crust,0.0,89.98952,-90.0,05/12/8296 +6.18988,46.86893,1551,5,11,9,19,47,4.25,5.0,fr,56717,31,2430324,1,1,Active Shallow Crust,0.0,89.99076,0.0,05/11/1551 +6.18988,46.86893,3908,7,21,17,34,28,4.25,15.0,fr,56718,78,2430325,1,1,Active Shallow Crust,0.0,89.99076,0.0,07/21/3908 +6.18988,46.86893,5079,2,11,17,34,21,4.35,15.0,fr,56719,101,2430337,1,1,Active Shallow Crust,0.0,89.98902,0.0,02/11/5079 +6.18988,46.86893,2451,2,3,5,8,49,4.45,5.0,fr,56720,49,2430348,1,1,Active Shallow Crust,0.0,89.99021,0.0,02/03/2451 +6.18988,46.86893,1710,12,9,16,10,49,4.45,15.0,fr,56721,34,2430352,1,1,Active Shallow Crust,240.0057,57.99485,0.0,12/09/1710 +6.18988,46.86893,3292,6,11,3,55,35,4.85,5.0,fr,56722,65,2430396,1,2,Active Shallow Crust,0.0,89.99074,0.0,06/11/3292 +6.18988,46.86893,7007,11,23,16,29,57,4.85,5.0,fr,56723,140,2430396,1,2,Active Shallow Crust,0.0,89.99074,0.0,11/23/7007 +6.18988,46.86893,9516,10,19,1,36,52,5.05,5.0,fr,56724,190,2430429,1,1,Active Shallow Crust,128.8852,89.99056,0.0,10/19/9516 +5.19155,48.14717,9326,3,10,3,17,57,3.55,5.0,fr,56725,186,2430720,1,1,Active Shallow Crust,0.0,89.99327,0.0,03/10/9326 +5.19155,48.14717,8143,8,29,16,35,16,3.65,5.0,fr,56726,162,2430738,1,1,Active Shallow Crust,0.0,89.98787,-90.0,08/29/8143 +5.19155,48.14717,7738,3,23,23,53,35,4.35,5.0,fr,56727,154,2430816,1,1,Active Shallow Crust,0.0,89.98929,0.0,03/23/7738 +5.19155,48.14717,5803,10,16,14,59,47,5.05,5.0,fr,56728,116,2430900,1,2,Active Shallow Crust,0.0,89.99043,0.0,10/16/5803 +5.19155,48.14717,2058,4,4,3,44,12,5.05,5.0,fr,56729,41,2430900,1,2,Active Shallow Crust,0.0,89.99043,0.0,04/04/2058 +-1.29492,43.45168,9024,7,1,0,13,58,3.55,15.0,fr,56730,180,2431201,1,2,Active Shallow Crust,0.0,89.99085,0.0,07/01/9024 +-1.29492,43.45168,4220,1,4,19,21,56,3.55,15.0,fr,56731,84,2431201,1,2,Active Shallow Crust,0.0,89.99085,0.0,01/04/4220 +-1.29492,43.45168,3813,1,27,20,5,32,3.55,5.0,fr,56732,76,2431209,1,1,Active Shallow Crust,128.8962,89.99359,0.0,01/27/3813 +-1.29492,43.45168,8295,9,26,7,34,42,3.65,5.0,fr,56733,165,2431212,1,1,Active Shallow Crust,0.0,89.99021,0.0,09/26/8295 +-1.29492,43.45168,2636,12,27,8,3,22,3.65,27.5,fr,56734,52,2431217,1,2,Active Shallow Crust,240.0007,58.01296,0.0,12/27/2636 +-1.29492,43.45168,1199,6,27,9,37,48,3.65,27.5,fr,56735,23,2431217,1,2,Active Shallow Crust,240.0007,58.01296,0.0,06/27/1199 +-1.29492,43.45168,4938,5,8,11,46,21,3.75,5.0,fr,56736,98,2431224,1,1,Active Shallow Crust,0.0,89.98982,0.0,05/08/4938 +-1.29492,43.45168,9579,2,16,6,48,39,3.75,15.0,fr,56737,191,2431228,1,1,Active Shallow Crust,240.0079,58.01775,0.0,02/16/9579 +-1.29492,43.45168,2358,2,6,4,8,33,3.95,5.0,fr,56738,47,2431248,1,1,Active Shallow Crust,0.0,89.98961,0.0,02/06/2358 +-1.29492,43.45168,4390,7,1,21,27,16,4.05,5.0,fr,56739,87,2431263,1,1,Active Shallow Crust,240.0056,58.00558,0.0,07/01/4390 +-1.29492,43.45168,5697,6,16,7,12,42,4.15,15.0,fr,56740,113,2431273,1,1,Active Shallow Crust,0.0,89.98991,0.0,06/16/5697 +-1.29492,43.45168,7774,12,1,17,50,48,4.25,5.0,fr,56741,155,2431284,1,1,Active Shallow Crust,0.0,89.99019,0.0,12/01/7774 +-1.74886,44.50511,1043,8,20,12,38,19,3.55,5.0,fr,56742,20,2431680,1,1,Active Shallow Crust,0.0,89.98921,0.0,08/20/1043 +-1.74886,44.50511,872,3,31,8,58,0,4.75,5.0,fr,56743,17,2431830,1,1,Active Shallow Crust,0.0,89.98994,-90.0,03/31/0872 +8.68543,49.32099,3770,3,16,4,9,47,3.55,5.0,fr,56744,75,2432160,1,1,Active Shallow Crust,0.0,89.98685,0.0,03/16/3770 +8.68543,49.32099,9540,5,27,9,29,19,3.55,15.0,fr,56745,190,2432161,1,1,Active Shallow Crust,0.0,89.98685,0.0,05/27/9540 +8.68543,49.32099,684,10,22,6,56,40,3.65,5.0,fr,56746,13,2432172,1,1,Active Shallow Crust,0.0,89.98828,0.0,10/22/0684 +8.68543,49.32099,7776,4,4,15,10,58,3.75,5.0,fr,56747,155,2432184,1,1,Active Shallow Crust,0.0,89.98956,0.0,04/04/7776 +8.68543,49.32099,146,12,27,1,17,32,3.75,15.0,fr,56748,2,2432185,1,1,Active Shallow Crust,0.0,89.98956,0.0,12/27/0146 +8.68543,49.32099,9547,8,25,9,43,33,3.75,27.5,fr,56749,190,2432186,1,1,Active Shallow Crust,0.0,89.98956,0.0,08/25/9547 +8.68543,49.32099,3000,6,2,23,28,4,3.75,5.0,fr,56750,59,2432193,1,1,Active Shallow Crust,128.8959,89.96754,0.0,06/02/3000 +8.68543,49.32099,3754,8,14,9,9,49,3.85,15.0,fr,56751,75,2432206,1,1,Active Shallow Crust,128.8954,89.99535,0.0,08/14/3754 +8.68543,49.32099,359,7,6,12,5,47,3.95,15.0,fr,56752,7,2432209,1,1,Active Shallow Crust,0.0,89.99171,0.0,07/06/0359 +5.7079,41.509,8509,2,23,1,11,53,3.55,5.0,fr,56753,170,2432643,1,1,Active Shallow Crust,240.0129,57.99774,0.0,02/23/8509 +5.7079,41.509,8360,9,20,4,55,21,3.65,15.0,fr,56754,167,2432653,1,1,Active Shallow Crust,0.0,89.99327,0.0,09/20/8360 +5.7079,41.509,5397,11,12,3,19,36,4.95,15.0,fr,56755,107,2432809,1,1,Active Shallow Crust,0.0,89.98945,0.0,11/12/5397 +2.39638,50.51511,5814,6,5,21,48,37,3.55,5.0,fr,56756,116,2433120,1,1,Active Shallow Crust,0.0,89.99038,0.0,06/05/5814 +2.39638,50.51511,5595,11,14,10,9,49,3.85,5.0,fr,56757,111,2433156,1,1,Active Shallow Crust,0.0,89.99092,0.0,11/14/5595 +2.39638,50.51511,348,11,5,13,15,38,3.85,15.0,fr,56758,6,2433160,1,1,Active Shallow Crust,240.0118,57.99775,0.0,11/05/0348 +2.39638,50.51511,2097,6,18,22,45,8,3.95,15.0,fr,56759,41,2433169,1,1,Active Shallow Crust,0.0,89.98988,0.0,06/18/2097 +2.39638,50.51511,8247,12,30,19,45,18,4.45,5.0,fr,56760,164,2433231,1,1,Active Shallow Crust,240.0063,57.99483,0.0,12/30/8247 +-2.92475,48.21493,8016,2,16,23,0,43,3.55,5.0,fr,56761,160,2433600,1,3,Active Shallow Crust,0.0,89.98992,0.0,02/16/8016 +-2.92475,48.21493,5572,9,21,14,33,32,3.55,5.0,fr,56762,111,2433600,1,3,Active Shallow Crust,0.0,89.98992,0.0,09/21/5572 +-2.92475,48.21493,9647,1,16,4,47,49,3.55,5.0,fr,56763,192,2433600,1,3,Active Shallow Crust,0.0,89.98992,0.0,01/16/9647 +-2.92475,48.21493,9754,6,10,11,57,17,3.55,5.0,fr,56764,195,2433606,1,1,Active Shallow Crust,0.0,89.98981,-90.0,06/10/9754 +-2.92475,48.21493,5051,8,11,22,48,49,3.65,5.0,fr,56765,101,2433612,1,3,Active Shallow Crust,0.0,89.99102,0.0,08/11/5051 +-2.92475,48.21493,8160,2,21,23,15,22,3.65,5.0,fr,56766,163,2433612,1,3,Active Shallow Crust,0.0,89.99102,0.0,02/21/8160 +-2.92475,48.21493,7814,3,5,20,42,59,3.65,5.0,fr,56767,156,2433612,1,3,Active Shallow Crust,0.0,89.99102,0.0,03/05/7814 +-2.92475,48.21493,2409,10,4,16,48,58,3.75,5.0,fr,56768,48,2433624,1,2,Active Shallow Crust,0.0,89.98933,0.0,10/04/2409 +-2.92475,48.21493,4699,10,26,1,36,42,3.75,5.0,fr,56769,93,2433624,1,2,Active Shallow Crust,0.0,89.98933,0.0,10/26/4699 +-2.92475,48.21493,2389,7,20,23,16,56,3.85,15.0,fr,56770,47,2433637,1,1,Active Shallow Crust,0.0,89.99049,0.0,07/20/2389 +-2.92475,48.21493,9134,11,29,1,16,5,3.85,5.0,fr,56771,182,2433642,1,1,Active Shallow Crust,0.0,89.99038,-90.0,11/29/9134 +-2.92475,48.21493,611,12,7,21,9,59,3.95,5.0,fr,56772,12,2433648,1,1,Active Shallow Crust,0.0,89.9894,0.0,12/07/0611 +-2.92475,48.21493,7608,1,6,16,56,8,3.95,5.0,fr,56773,152,2433651,1,1,Active Shallow Crust,240.0203,58.00487,0.0,01/06/7608 +-2.92475,48.21493,6472,5,15,20,13,59,4.05,15.0,fr,56774,129,2433670,1,1,Active Shallow Crust,128.8902,89.99339,0.0,05/15/6472 +-2.92475,48.21493,4244,11,27,0,39,34,4.15,5.0,fr,56775,84,2433675,1,1,Active Shallow Crust,240.0091,57.99728,0.0,11/27/4244 +-2.92475,48.21493,697,6,15,4,58,18,4.15,15.0,fr,56776,13,2433676,1,1,Active Shallow Crust,240.0091,57.99731,0.0,06/15/0697 +-2.92475,48.21493,4472,10,24,12,48,4,4.25,5.0,fr,56777,89,2433684,1,1,Active Shallow Crust,0.0,89.98949,0.0,10/24/4472 +-2.92475,48.21493,5286,7,17,16,38,53,4.35,5.0,fr,56778,105,2433696,1,3,Active Shallow Crust,0.0,89.99064,0.0,07/17/5286 +-2.92475,48.21493,539,10,10,10,47,26,4.35,5.0,fr,56779,10,2433696,1,3,Active Shallow Crust,0.0,89.99064,0.0,10/10/0539 +-2.92475,48.21493,4259,10,18,19,52,48,4.35,5.0,fr,56780,85,2433696,1,3,Active Shallow Crust,0.0,89.99064,0.0,10/18/4259 +-2.92475,48.21493,5274,7,11,19,22,0,4.65,5.0,fr,56781,105,2433732,1,1,Active Shallow Crust,0.0,89.98959,0.0,07/11/5274 +-2.92475,48.21493,3062,3,27,11,47,14,4.65,15.0,fr,56782,61,2433733,1,1,Active Shallow Crust,0.0,89.98959,0.0,03/27/3062 +-2.92475,48.21493,5237,7,18,19,34,48,5.55,5.0,fr,56783,104,2433840,1,1,Active Shallow Crust,0.0,89.98991,0.0,07/18/5237 +-2.8478,46.31544,1472,1,2,6,5,33,3.75,5.0,fr,56784,29,2434110,1,1,Active Shallow Crust,0.0,89.98881,-90.0,01/02/1472 +7.6038,47.16626,5288,11,3,23,27,12,3.55,5.0,fr,56785,105,2435040,1,3,Active Shallow Crust,0.0,89.99314,0.0,11/03/5288 +7.6038,47.16626,8999,4,6,4,39,16,3.55,5.0,fr,56786,179,2435040,1,3,Active Shallow Crust,0.0,89.99314,0.0,04/06/8999 +7.6038,47.16626,8781,7,3,10,56,18,3.55,5.0,fr,56787,175,2435040,1,3,Active Shallow Crust,0.0,89.99314,0.0,07/03/8781 +7.6038,47.16626,6860,7,7,8,17,54,3.55,15.0,fr,56788,137,2435041,1,1,Active Shallow Crust,0.0,89.99314,0.0,07/07/6860 +7.6038,47.16626,1771,4,3,10,37,40,3.55,5.0,fr,56789,35,2435043,1,1,Active Shallow Crust,240.011,57.99916,0.0,04/03/1771 +7.6038,47.16626,9031,1,15,5,50,26,3.55,15.0,fr,56790,180,2435044,1,2,Active Shallow Crust,240.011,57.99916,0.0,01/15/9031 +7.6038,47.16626,6335,8,13,20,51,58,3.55,15.0,fr,56791,126,2435044,1,2,Active Shallow Crust,240.011,57.99916,0.0,08/13/6335 +7.6038,47.16626,5939,4,6,17,23,35,3.65,5.0,fr,56792,118,2435052,1,6,Active Shallow Crust,0.0,89.98778,0.0,04/06/5939 +7.6038,47.16626,8710,2,2,14,12,47,3.65,5.0,fr,56793,174,2435052,1,6,Active Shallow Crust,0.0,89.98778,0.0,02/02/8710 +7.6038,47.16626,453,4,2,16,2,40,3.65,5.0,fr,56794,9,2435052,1,6,Active Shallow Crust,0.0,89.98778,0.0,04/02/0453 +7.6038,47.16626,4363,8,19,23,46,29,3.65,5.0,fr,56795,87,2435052,1,6,Active Shallow Crust,0.0,89.98778,0.0,08/19/4363 +7.6038,47.16626,6034,8,28,11,35,35,3.65,5.0,fr,56796,120,2435052,1,6,Active Shallow Crust,0.0,89.98778,0.0,08/28/6034 +7.6038,47.16626,8580,5,8,18,12,2,3.65,5.0,fr,56797,171,2435052,1,6,Active Shallow Crust,0.0,89.98778,0.0,05/08/8580 +7.6038,47.16626,3921,2,9,4,50,26,3.65,27.5,fr,56798,78,2435054,1,1,Active Shallow Crust,0.0,89.98778,0.0,02/09/3921 +7.6038,47.16626,3764,7,2,4,14,40,3.65,5.0,fr,56799,75,2435055,1,2,Active Shallow Crust,240.0011,58.01295,0.0,07/02/3764 +7.6038,47.16626,4303,3,7,6,31,19,3.65,5.0,fr,56800,86,2435055,1,2,Active Shallow Crust,240.0011,58.01295,0.0,03/07/4303 +7.6038,47.16626,1385,6,29,3,50,43,3.75,5.0,fr,56801,27,2435064,1,4,Active Shallow Crust,0.0,89.98911,0.0,06/29/1385 +7.6038,47.16626,7668,9,17,0,17,38,3.75,5.0,fr,56802,153,2435064,1,4,Active Shallow Crust,0.0,89.98911,0.0,09/17/7668 +7.6038,47.16626,5136,5,15,16,9,42,3.75,5.0,fr,56803,102,2435064,1,4,Active Shallow Crust,0.0,89.98911,0.0,05/15/5136 +7.6038,47.16626,1718,9,4,10,8,55,3.75,5.0,fr,56804,34,2435064,1,4,Active Shallow Crust,0.0,89.98911,0.0,09/04/1718 +7.6038,47.16626,1265,4,22,3,2,30,3.75,15.0,fr,56805,25,2435065,1,1,Active Shallow Crust,0.0,89.98911,0.0,04/22/1265 +7.6038,47.16626,4429,9,23,17,28,7,3.75,27.5,fr,56806,88,2435066,1,1,Active Shallow Crust,0.0,89.98911,0.0,09/23/4429 +7.6038,47.16626,9948,1,13,10,14,33,3.75,5.0,fr,56807,198,2435067,1,1,Active Shallow Crust,240.0087,58.01794,0.0,01/13/9948 +7.6038,47.16626,2202,4,3,17,48,18,3.85,5.0,fr,56808,44,2435076,1,2,Active Shallow Crust,0.0,89.9903,0.0,04/03/2202 +7.6038,47.16626,6283,11,12,17,54,28,3.85,5.0,fr,56809,125,2435076,1,2,Active Shallow Crust,0.0,89.9903,0.0,11/12/6283 +7.6038,47.16626,4183,1,3,3,8,56,3.85,15.0,fr,56810,83,2435077,1,1,Active Shallow Crust,0.0,89.9903,0.0,01/03/4183 +7.6038,47.16626,3242,12,29,0,30,45,3.85,27.5,fr,56811,64,2435081,1,1,Active Shallow Crust,240.0105,57.99736,0.0,12/29/3242 +7.6038,47.16626,3317,9,21,4,31,3,3.85,5.0,fr,56812,66,2435082,1,2,Active Shallow Crust,0.0,89.99018,-90.0,09/21/3317 +7.6038,47.16626,879,8,19,23,4,0,3.85,5.0,fr,56813,17,2435082,1,2,Active Shallow Crust,0.0,89.99018,-90.0,08/19/0879 +7.6038,47.16626,2633,8,9,17,20,58,3.85,15.0,fr,56814,52,2435083,1,1,Active Shallow Crust,0.0,89.99018,-90.0,08/09/2633 +7.6038,47.16626,3807,7,16,16,2,19,3.95,5.0,fr,56815,76,2435088,1,1,Active Shallow Crust,0.0,89.99135,0.0,07/16/3807 +7.6038,47.16626,6676,9,18,20,48,13,3.95,15.0,fr,56816,133,2435089,1,1,Active Shallow Crust,0.0,89.99135,0.0,09/18/6676 +7.6038,47.16626,5801,11,26,1,47,1,3.95,5.0,fr,56817,116,2435091,1,1,Active Shallow Crust,240.0196,58.00479,0.0,11/26/5801 +7.6038,47.16626,7559,11,30,3,43,21,4.05,5.0,fr,56818,151,2435100,1,3,Active Shallow Crust,0.0,89.98843,0.0,11/30/7559 +7.6038,47.16626,8341,3,29,19,35,27,4.05,5.0,fr,56819,166,2435100,1,3,Active Shallow Crust,0.0,89.98843,0.0,03/29/8341 +7.6038,47.16626,6349,7,16,18,26,58,4.05,5.0,fr,56820,126,2435100,1,3,Active Shallow Crust,0.0,89.98843,0.0,07/16/6349 +7.6038,47.16626,1239,6,12,21,10,39,4.05,27.5,fr,56821,24,2435102,1,1,Active Shallow Crust,0.0,89.98843,0.0,06/12/1239 +7.6038,47.16626,3810,5,7,17,7,39,4.05,5.0,fr,56822,76,2435103,1,1,Active Shallow Crust,240.0055,58.00595,0.0,05/07/3810 +7.6038,47.16626,1035,9,23,10,52,34,4.05,5.0,fr,56823,20,2435109,1,1,Active Shallow Crust,128.8904,89.99422,0.0,09/23/1035 +7.6038,47.16626,9356,4,19,12,14,56,4.15,15.0,fr,56824,187,2435113,1,1,Active Shallow Crust,0.0,89.98969,0.0,04/19/9356 +7.6038,47.16626,4934,3,24,14,12,45,4.15,27.5,fr,56825,98,2435114,1,1,Active Shallow Crust,0.0,89.98969,0.0,03/24/4934 +7.6038,47.16626,6723,11,12,10,7,46,4.15,5.0,fr,56826,134,2435115,1,1,Active Shallow Crust,240.0082,57.99728,0.0,11/12/6723 +7.6038,47.16626,5208,3,11,0,34,38,4.15,27.5,fr,56827,104,2435120,1,1,Active Shallow Crust,0.0,89.98957,-90.0,03/11/5208 +7.6038,47.16626,7018,2,12,16,45,45,4.25,15.0,fr,56828,140,2435125,1,2,Active Shallow Crust,0.0,89.99081,0.0,02/12/7018 +7.6038,47.16626,690,1,30,22,39,29,4.25,15.0,fr,56829,13,2435125,1,2,Active Shallow Crust,0.0,89.99081,0.0,01/30/0690 +7.6038,47.16626,258,3,31,10,3,50,4.25,27.5,fr,56830,5,2435126,1,1,Active Shallow Crust,0.0,89.99081,0.0,03/31/0258 +7.6038,47.16626,8938,8,19,9,54,25,4.35,5.0,fr,56831,178,2435139,1,1,Active Shallow Crust,240.0089,57.99567,0.0,08/19/8938 +7.6038,47.16626,4275,12,21,11,8,0,4.55,5.0,fr,56832,85,2435160,1,1,Active Shallow Crust,0.0,89.98916,0.0,12/21/4275 +7.6038,47.16626,6064,6,17,20,33,47,4.55,15.0,fr,56833,121,2435161,1,1,Active Shallow Crust,0.0,89.98916,0.0,06/17/6064 +7.6038,47.16626,6599,2,15,20,0,38,4.75,5.0,fr,56834,131,2435184,1,1,Active Shallow Crust,0.0,89.98966,0.0,02/15/6599 +7.6038,47.16626,1017,8,10,14,25,25,4.75,15.0,fr,56835,20,2435185,1,1,Active Shallow Crust,0.0,89.98966,0.0,08/10/1017 +7.6038,47.16626,7648,5,4,22,31,20,4.75,5.0,fr,56836,152,2435190,1,1,Active Shallow Crust,0.0,89.98955,-90.0,05/04/7648 +7.6038,47.16626,7904,12,30,4,33,31,4.85,5.0,fr,56837,158,2435196,1,1,Active Shallow Crust,0.0,89.98926,0.0,12/30/7904 +7.6038,47.16626,1025,4,18,8,27,53,5.15,15.0,fr,56838,20,2435233,1,1,Active Shallow Crust,0.0,89.99022,0.0,04/18/1025 +7.6038,47.16626,537,1,28,12,14,24,5.15,15.0,fr,56839,10,2435242,1,1,Active Shallow Crust,128.8834,89.99087,0.0,01/28/0537 +7.6038,47.16626,7408,12,13,5,51,51,5.45,27.5,fr,56840,148,2435270,1,1,Active Shallow Crust,0.0,89.99,0.0,12/13/7408 +7.603395,47.16674,4866,1,30,0,22,11,6.15,5.09789,fr,56841,97,2435355,1,1,Active Shallow Crust,240.0662,58.00024,0.0,01/30/4866 +6.23039,49.41743,8469,4,5,7,14,34,3.65,5.0,fr,56842,169,2435538,1,1,Active Shallow Crust,0.0,89.98817,-90.0,04/05/8469 +5.01407,51.60112,9441,12,20,23,16,17,3.75,5.0,fr,56843,188,2436027,1,1,Active Shallow Crust,240.0088,58.01822,0.0,12/20/9441 +5.01407,51.60112,4440,9,20,22,22,38,3.95,5.0,fr,56844,88,2436048,1,1,Active Shallow Crust,0.0,89.98814,0.0,09/20/4440 +5.01407,51.60112,688,10,4,14,10,42,3.95,5.0,fr,56845,13,2436054,1,1,Active Shallow Crust,0.0,89.98801,-90.0,10/04/0688 +5.01407,51.60112,7959,10,30,4,35,4,4.75,5.0,fr,56846,159,2436144,1,1,Active Shallow Crust,0.0,89.99055,0.0,10/30/7959 +5.26833,44.39788,1331,6,16,21,48,24,3.55,5.0,fr,56847,26,2436480,1,2,Active Shallow Crust,0.0,89.9928,0.0,06/16/1331 +5.26833,44.39788,2911,1,21,4,45,9,3.55,5.0,fr,56848,58,2436480,1,2,Active Shallow Crust,0.0,89.9928,0.0,01/21/2911 +5.26833,44.39788,9704,12,25,16,20,3,3.55,15.0,fr,56849,194,2436481,1,1,Active Shallow Crust,0.0,89.9928,0.0,12/25/9704 +5.26833,44.39788,6776,8,25,17,30,29,3.55,27.5,fr,56850,135,2436482,1,1,Active Shallow Crust,0.0,89.9928,0.0,08/25/6776 +5.26833,44.39788,4029,12,20,12,19,41,3.55,5.0,fr,56851,80,2436483,1,2,Active Shallow Crust,240.0115,57.99826,0.0,12/20/4029 +5.26833,44.39788,6161,9,27,21,27,6,3.55,5.0,fr,56852,123,2436483,1,2,Active Shallow Crust,240.0115,57.99826,0.0,09/27/6161 +5.26833,44.39788,8325,2,9,6,21,41,3.65,5.0,fr,56853,166,2436492,1,3,Active Shallow Crust,0.0,89.98716,0.0,02/09/8325 +5.26833,44.39788,655,6,24,0,20,40,3.65,5.0,fr,56854,13,2436492,1,3,Active Shallow Crust,0.0,89.98716,0.0,06/24/0655 +5.26833,44.39788,4058,7,29,23,38,7,3.65,5.0,fr,56855,81,2436492,1,3,Active Shallow Crust,0.0,89.98716,0.0,07/29/4058 +5.26833,44.39788,1718,11,21,21,37,3,3.65,5.0,fr,56856,34,2436495,1,1,Active Shallow Crust,240.001,58.0132,0.0,11/21/1718 +5.26833,44.39788,7852,1,24,15,54,5,3.65,5.0,fr,56857,157,2436498,1,1,Active Shallow Crust,0.0,89.98701,-90.0,01/24/7852 +5.26833,44.39788,6868,11,30,4,17,36,3.75,5.0,fr,56858,137,2436504,1,4,Active Shallow Crust,0.0,89.98856,0.0,11/30/6868 +5.26833,44.39788,9733,5,29,15,23,29,3.75,5.0,fr,56859,194,2436504,1,4,Active Shallow Crust,0.0,89.98856,0.0,05/29/9733 +5.26833,44.39788,5038,11,7,2,29,9,3.75,5.0,fr,56860,100,2436504,1,4,Active Shallow Crust,0.0,89.98856,0.0,11/07/5038 +5.26833,44.39788,7487,11,18,20,41,14,3.75,5.0,fr,56861,149,2436504,1,4,Active Shallow Crust,0.0,89.98856,0.0,11/18/7487 +5.26833,44.39788,8292,5,10,20,37,41,3.75,15.0,fr,56862,165,2436505,1,1,Active Shallow Crust,0.0,89.98856,0.0,05/10/8292 +5.26833,44.39788,8259,3,15,10,33,55,3.85,5.0,fr,56863,165,2436516,1,1,Active Shallow Crust,0.0,89.9898,0.0,03/15/8259 +5.26833,44.39788,5638,2,24,8,55,36,3.85,15.0,fr,56864,112,2436517,1,1,Active Shallow Crust,0.0,89.9898,0.0,02/24/5638 +5.26833,44.39788,7349,1,9,23,56,50,3.95,5.0,fr,56865,146,2436528,1,1,Active Shallow Crust,0.0,89.99091,0.0,01/09/7349 +5.26833,44.39788,3219,6,18,11,15,0,3.95,5.0,fr,56866,64,2436531,1,1,Active Shallow Crust,240.0189,58.00462,0.0,06/18/3219 +5.26833,44.39788,3960,7,11,14,38,10,4.25,5.0,fr,56867,79,2436564,1,1,Active Shallow Crust,0.0,89.99034,0.0,07/11/3960 +5.26833,44.39788,7264,2,12,22,47,55,4.25,15.0,fr,56868,145,2436565,1,1,Active Shallow Crust,0.0,89.99034,0.0,02/12/7264 +5.26833,44.39788,1844,2,2,10,25,9,4.25,15.0,fr,56869,36,2436568,1,1,Active Shallow Crust,240.007,57.99374,0.0,02/02/1844 +5.26833,44.39788,8778,5,26,12,6,53,4.35,5.0,fr,56870,175,2436579,1,1,Active Shallow Crust,240.0082,57.99559,0.0,05/26/8778 +5.26833,44.39788,1062,5,9,22,1,53,4.55,5.0,fr,56871,21,2436600,1,2,Active Shallow Crust,0.0,89.99088,0.0,05/09/1062 +5.26833,44.39788,126,3,17,5,3,39,4.55,5.0,fr,56872,2,2436600,1,2,Active Shallow Crust,0.0,89.99088,0.0,03/17/0126 +5.26833,44.39788,1041,3,3,13,7,11,4.55,15.0,fr,56873,20,2436610,1,1,Active Shallow Crust,128.894,89.98603,0.0,03/03/1041 +5.26833,44.39788,4993,1,14,4,52,50,5.05,5.0,fr,56874,99,2436660,1,1,Active Shallow Crust,0.0,89.98975,0.0,01/14/4993 +5.26833,44.39788,827,3,3,18,40,25,5.95,5.0,fr,56875,16,2436768,1,1,Active Shallow Crust,0.0,89.98999,0.0,03/03/0827 +1.81704,40.40797,7342,9,6,15,6,52,3.75,15.0,fr,56876,146,2436985,1,1,Active Shallow Crust,0.0,89.98933,0.0,09/06/7342 +1.81704,40.40797,372,2,11,12,4,58,3.85,5.0,fr,56877,7,2436996,1,1,Active Shallow Crust,0.0,89.99049,0.0,02/11/0372 +1.81704,40.40797,7813,1,23,13,7,40,4.45,15.0,fr,56878,156,2437069,1,1,Active Shallow Crust,0.0,89.98978,0.0,01/23/7813 +4.10167,50.86369,878,9,3,3,13,47,3.55,5.0,fr,56879,17,2437440,1,1,Active Shallow Crust,0.0,89.98727,0.0,09/03/0878 +4.10167,50.86369,7354,5,15,5,55,58,3.55,5.0,fr,56880,147,2437446,1,3,Active Shallow Crust,0.0,89.98712,-90.0,05/15/7354 +4.10167,50.86369,2740,8,8,6,1,53,3.55,5.0,fr,56881,54,2437446,1,3,Active Shallow Crust,0.0,89.98712,-90.0,08/08/2740 +4.10167,50.86369,4036,11,2,17,46,1,3.55,5.0,fr,56882,80,2437446,1,3,Active Shallow Crust,0.0,89.98712,-90.0,11/02/4036 +4.10167,50.86369,5481,4,11,18,22,24,3.65,5.0,fr,56883,109,2437455,1,1,Active Shallow Crust,240.0011,58.01352,0.0,04/11/5481 +4.10167,50.86369,8747,8,14,6,53,46,3.65,5.0,fr,56884,174,2437461,1,1,Active Shallow Crust,128.9005,89.96306,0.0,08/14/8747 +4.10167,50.86369,5767,12,3,9,2,26,3.75,5.0,fr,56885,115,2437464,1,2,Active Shallow Crust,0.0,89.98989,0.0,12/03/5767 +4.10167,50.86369,354,5,29,22,49,31,3.75,5.0,fr,56886,7,2437464,1,2,Active Shallow Crust,0.0,89.98989,0.0,05/29/0354 +4.10167,50.86369,109,6,10,23,57,15,3.75,5.0,fr,56887,2,2437473,1,1,Active Shallow Crust,128.8956,89.96757,0.0,06/10/0109 +4.10167,50.86369,9655,6,18,16,17,13,4.55,5.0,fr,56888,193,2437560,1,1,Active Shallow Crust,0.0,89.98994,0.0,06/18/9655 +4.101701,50.86369,2923,6,18,0,17,36,7.15,17.5,fr,56889,58,2437878,1,1,Active Shallow Crust,0.0,89.98999,-90.0,06/18/2923 +-2.92614,48.62028,2787,2,12,5,23,29,3.55,5.0,fr,56890,55,2437920,1,1,Active Shallow Crust,0.0,89.99,0.0,02/12/2787 +-2.92614,48.62028,1706,10,27,11,12,34,3.55,15.0,fr,56891,34,2437921,1,2,Active Shallow Crust,0.0,89.99,0.0,10/27/1706 +-2.92614,48.62028,5999,10,22,16,46,15,3.55,15.0,fr,56892,119,2437921,1,2,Active Shallow Crust,0.0,89.99,0.0,10/22/5999 +-2.92614,48.62028,8405,9,19,16,56,5,3.55,27.5,fr,56893,168,2437931,1,1,Active Shallow Crust,128.8953,89.995,0.0,09/19/8405 +-2.92614,48.62028,1532,7,19,4,59,38,3.65,5.0,fr,56894,30,2437932,1,4,Active Shallow Crust,0.0,89.99109,0.0,07/19/1532 +-2.92614,48.62028,6331,3,9,16,43,56,3.65,5.0,fr,56895,126,2437932,1,4,Active Shallow Crust,0.0,89.99109,0.0,03/09/6331 +-2.92614,48.62028,3188,2,1,13,9,42,3.65,5.0,fr,56896,63,2437932,1,4,Active Shallow Crust,0.0,89.99109,0.0,02/01/3188 +-2.92614,48.62028,656,4,25,20,41,21,3.65,5.0,fr,56897,13,2437932,1,4,Active Shallow Crust,0.0,89.99109,0.0,04/25/0656 +-2.92614,48.62028,7232,8,12,3,6,23,3.75,5.0,fr,56898,144,2437944,1,2,Active Shallow Crust,0.0,89.98941,0.0,08/12/7232 +-2.92614,48.62028,3811,9,27,21,18,29,3.75,5.0,fr,56899,76,2437944,1,2,Active Shallow Crust,0.0,89.98941,0.0,09/27/3811 +-2.92614,48.62028,3639,10,2,23,7,22,3.75,5.0,fr,56900,72,2437950,1,1,Active Shallow Crust,0.0,89.98929,-90.0,10/02/3639 +-2.92614,48.62028,9233,2,2,4,18,17,3.85,5.0,fr,56901,184,2437956,1,1,Active Shallow Crust,0.0,89.99056,0.0,02/02/9233 +-2.92614,48.62028,7633,6,5,7,46,43,3.85,15.0,fr,56902,152,2437957,1,1,Active Shallow Crust,0.0,89.99056,0.0,06/05/7633 +-2.92614,48.62028,1080,8,22,5,38,23,3.95,5.0,fr,56903,21,2437968,1,2,Active Shallow Crust,0.0,89.98949,0.0,08/22/1080 +-2.92614,48.62028,8762,3,24,7,21,6,3.95,5.0,fr,56904,175,2437968,1,2,Active Shallow Crust,0.0,89.98949,0.0,03/24/8762 +-2.92614,48.62028,7570,11,1,4,19,53,3.95,15.0,fr,56905,151,2437969,1,1,Active Shallow Crust,0.0,89.98949,0.0,11/01/7570 +-2.92614,48.62028,9721,9,12,23,29,50,4.25,15.0,fr,56906,194,2438005,1,2,Active Shallow Crust,0.0,89.98958,0.0,09/12/9721 +-2.92614,48.62028,3361,4,5,21,32,28,4.25,15.0,fr,56907,67,2438005,1,2,Active Shallow Crust,0.0,89.98958,0.0,04/05/3361 +-2.92614,48.62028,6191,5,28,13,41,49,4.35,15.0,fr,56908,123,2438017,1,1,Active Shallow Crust,0.0,89.98939,0.0,05/28/6191 +-2.92614,48.62028,9339,12,26,19,12,28,4.35,5.0,fr,56909,186,2438019,1,1,Active Shallow Crust,240.0089,57.99588,0.0,12/26/9339 +-2.92614,48.62028,975,7,14,0,13,52,4.85,5.0,fr,56910,19,2438076,1,1,Active Shallow Crust,0.0,89.9903,0.0,07/14/0975 +-2.92614,48.62028,1952,11,8,16,39,42,5.35,15.0,fr,56911,39,2438137,1,1,Active Shallow Crust,0.0,89.98993,0.0,11/08/1952 +-2.926142,48.62028,2741,11,11,2,38,57,6.15,6.011322,fr,56912,54,2438241,1,1,Active Shallow Crust,128.8511,89.99123,0.0,11/11/2741 +4.33523,50.28243,3995,5,18,4,51,44,3.55,5.0,fr,56913,79,2438400,1,3,Active Shallow Crust,0.0,89.98711,0.0,05/18/3995 +4.33523,50.28243,2509,4,10,19,58,57,3.55,5.0,fr,56914,50,2438400,1,3,Active Shallow Crust,0.0,89.98711,0.0,04/10/2509 +4.33523,50.28243,6836,4,9,7,0,32,3.55,5.0,fr,56915,136,2438400,1,3,Active Shallow Crust,0.0,89.98711,0.0,04/09/6836 +4.33523,50.28243,2845,5,15,7,12,26,3.55,15.0,fr,56916,56,2438401,1,1,Active Shallow Crust,0.0,89.98711,0.0,05/15/2845 +4.33523,50.28243,7540,3,10,17,32,11,3.55,5.0,fr,56917,150,2438409,1,1,Active Shallow Crust,128.8952,89.99355,0.0,03/10/7540 +4.33523,50.28243,5905,9,4,20,23,41,3.65,5.0,fr,56918,118,2438412,1,1,Active Shallow Crust,0.0,89.98852,0.0,09/04/5905 +4.33523,50.28243,1729,12,11,5,54,48,3.65,15.0,fr,56919,34,2438416,1,1,Active Shallow Crust,240.0018,58.01274,0.0,12/11/1729 +4.33523,50.28243,369,2,23,8,16,19,3.75,5.0,fr,56920,7,2438424,1,1,Active Shallow Crust,0.0,89.98976,0.0,02/23/0369 +4.33523,50.28243,807,12,17,11,46,28,3.75,27.5,fr,56921,16,2438426,1,1,Active Shallow Crust,0.0,89.98976,0.0,12/17/0807 +4.33523,50.28243,2698,7,29,17,51,34,3.75,5.0,fr,56922,53,2438427,1,1,Active Shallow Crust,240.0084,58.01749,0.0,07/29/2698 +4.33523,50.28243,1902,4,18,19,8,12,3.85,5.0,fr,56923,38,2438436,1,1,Active Shallow Crust,0.0,89.99088,0.0,04/18/1902 +4.33523,50.28243,1679,8,17,22,42,16,3.85,5.0,fr,56924,33,2438439,1,1,Active Shallow Crust,240.0112,57.9975,0.0,08/17/1679 +4.33523,50.28243,5970,7,31,9,24,49,3.95,5.0,fr,56925,119,2438448,1,1,Active Shallow Crust,0.0,89.99187,0.0,07/31/5970 +4.33523,50.28243,5699,8,24,23,16,12,3.95,5.0,fr,56926,113,2438451,1,1,Active Shallow Crust,240.0198,58.00562,0.0,08/24/5699 +4.33523,50.28243,1336,4,1,12,49,30,3.95,15.0,fr,56927,26,2438452,1,1,Active Shallow Crust,240.0198,58.00562,0.0,04/01/1336 +4.33523,50.28243,8955,11,25,8,2,31,4.45,5.0,fr,56928,179,2438508,1,1,Active Shallow Crust,0.0,89.99085,0.0,11/25/8955 +4.33523,50.28243,7298,2,12,1,27,59,5.65,5.0,fr,56929,145,2438652,1,1,Active Shallow Crust,0.0,89.99023,0.0,02/12/7298 +-1.0866,46.61293,4856,7,23,22,58,49,3.55,15.0,fr,56930,97,2438881,1,1,Active Shallow Crust,0.0,89.98961,0.0,07/23/4856 +-1.0866,46.61293,8439,12,15,4,20,27,3.55,5.0,fr,56931,168,2438883,1,1,Active Shallow Crust,240.0123,57.99814,0.0,12/15/8439 +-1.0866,46.61293,5046,9,21,0,39,52,3.55,15.0,fr,56932,100,2438884,1,1,Active Shallow Crust,240.0123,57.99814,0.0,09/21/5046 +-1.0866,46.61293,7258,6,17,0,15,52,3.55,15.0,fr,56933,145,2438887,1,1,Active Shallow Crust,0.0,89.98949,-90.0,06/17/7258 +-1.0866,46.61293,2767,7,20,23,30,16,3.65,5.0,fr,56934,55,2438892,1,3,Active Shallow Crust,0.0,89.99074,0.0,07/20/2767 +-1.0866,46.61293,5207,6,29,4,0,27,3.65,5.0,fr,56935,104,2438892,1,3,Active Shallow Crust,0.0,89.99074,0.0,06/29/5207 +-1.0866,46.61293,1575,2,3,11,17,13,3.65,5.0,fr,56936,31,2438892,1,3,Active Shallow Crust,0.0,89.99074,0.0,02/03/1575 +-1.0866,46.61293,9515,9,7,8,24,27,3.65,15.0,fr,56937,190,2438893,1,1,Active Shallow Crust,0.0,89.99074,0.0,09/07/9515 +-1.0866,46.61293,3655,5,28,17,57,7,3.65,27.5,fr,56938,73,2438894,1,1,Active Shallow Crust,0.0,89.99074,0.0,05/28/3655 +-1.0866,46.61293,3475,12,1,3,25,16,3.65,15.0,fr,56939,69,2438896,1,1,Active Shallow Crust,240.001,58.01295,0.0,12/01/3475 +-1.0866,46.61293,3752,3,26,9,33,4,3.75,5.0,fr,56940,75,2438904,1,2,Active Shallow Crust,0.0,89.99037,0.0,03/26/3752 +-1.0866,46.61293,5466,4,20,21,4,26,3.75,5.0,fr,56941,109,2438904,1,2,Active Shallow Crust,0.0,89.99037,0.0,04/20/5466 +-1.0866,46.61293,2867,4,11,21,5,45,3.75,5.0,fr,56942,57,2438907,1,1,Active Shallow Crust,240.0083,58.01768,0.0,04/11/2867 +-1.0866,46.61293,4579,12,5,5,27,38,3.75,15.0,fr,56943,91,2438914,1,1,Active Shallow Crust,128.8967,89.96723,0.0,12/05/4579 +-1.0866,46.61293,6534,9,3,20,26,2,3.85,5.0,fr,56944,130,2438916,1,1,Active Shallow Crust,0.0,89.99019,0.0,09/03/6534 +-1.0866,46.61293,8187,11,21,6,21,21,3.85,15.0,fr,56945,163,2438917,1,1,Active Shallow Crust,0.0,89.99019,0.0,11/21/8187 +-1.0866,46.61293,6153,5,20,6,43,39,3.95,5.0,fr,56946,123,2438928,1,2,Active Shallow Crust,0.0,89.99017,0.0,05/20/6153 +-1.0866,46.61293,345,2,21,4,49,31,3.95,5.0,fr,56947,6,2438928,1,2,Active Shallow Crust,0.0,89.99017,0.0,02/21/0345 +-1.0866,46.61293,8936,6,9,2,30,36,3.95,5.0,fr,56948,178,2438934,1,1,Active Shallow Crust,0.0,89.99005,-90.0,06/09/8936 +-1.0866,46.61293,7506,12,30,14,10,41,4.05,5.0,fr,56949,150,2438943,1,1,Active Shallow Crust,240.0058,58.00588,0.0,12/30/7506 +-1.0866,46.61293,8217,7,28,8,19,58,4.05,5.0,fr,56950,164,2438946,1,1,Active Shallow Crust,0.0,89.99015,-90.0,07/28/8217 +-1.0866,46.61293,4822,8,24,15,24,39,4.25,15.0,fr,56951,96,2438968,1,1,Active Shallow Crust,240.0076,57.99407,0.0,08/24/4822 +-1.0866,46.61293,6890,5,8,22,44,17,4.55,5.0,fr,56952,137,2439000,1,1,Active Shallow Crust,0.0,89.99014,0.0,05/08/6890 +-1.0866,46.61293,3136,8,2,17,16,22,4.55,15.0,fr,56953,62,2439001,1,1,Active Shallow Crust,0.0,89.99014,0.0,08/02/3136 +-1.0866,46.61293,5976,8,19,18,39,46,4.75,5.0,fr,56954,119,2439024,1,1,Active Shallow Crust,0.0,89.98999,0.0,08/19/5976 +-1.0866,46.61293,3251,4,16,11,23,20,4.75,15.0,fr,56955,65,2439025,1,1,Active Shallow Crust,0.0,89.98999,0.0,04/16/3251 +-1.0866,46.61293,2373,7,16,13,6,28,5.15,5.0,fr,56956,47,2439072,1,1,Active Shallow Crust,0.0,89.99012,0.0,07/16/2373 +-1.0866,46.61293,3386,12,27,12,3,45,5.25,5.0,fr,56957,67,2439087,1,1,Active Shallow Crust,240.0256,58.00028,0.0,12/27/3386 +-1.0866,46.61293,2233,9,4,3,26,51,6.05,27.5,fr,56958,44,2439191,1,1,Active Shallow Crust,128.8601,89.98897,0.0,09/04/2233 +5.97986,43.95994,7527,10,10,20,40,35,3.55,5.0,fr,56959,150,2439360,1,2,Active Shallow Crust,0.0,89.99274,0.0,10/10/7527 +5.97986,43.95994,2273,4,28,16,44,25,3.55,5.0,fr,56960,45,2439360,1,2,Active Shallow Crust,0.0,89.99274,0.0,04/28/2273 +5.97986,43.95994,1818,9,17,19,24,56,3.55,15.0,fr,56961,36,2439361,1,2,Active Shallow Crust,0.0,89.99274,0.0,09/17/1818 +5.97986,43.95994,8815,12,30,8,42,58,3.55,15.0,fr,56962,176,2439361,1,2,Active Shallow Crust,0.0,89.99274,0.0,12/30/8815 +5.97986,43.95994,5477,4,30,8,39,29,3.55,27.5,fr,56963,109,2439362,1,1,Active Shallow Crust,0.0,89.99274,0.0,04/30/5477 +5.97986,43.95994,200,1,25,1,21,54,3.55,27.5,fr,56964,3,2439371,1,1,Active Shallow Crust,128.8956,89.99637,0.0,01/25/0200 +5.97986,43.95994,7375,4,15,11,18,28,3.75,5.0,fr,56965,147,2439384,1,1,Active Shallow Crust,0.0,89.98847,0.0,04/15/7375 +5.97986,43.95994,9898,2,18,17,42,5,3.75,15.0,fr,56966,197,2439385,1,1,Active Shallow Crust,0.0,89.98847,0.0,02/18/9898 +5.97986,43.95994,7522,6,28,17,17,15,3.75,5.0,fr,56967,150,2439387,1,1,Active Shallow Crust,240.0075,58.01862,0.0,06/28/7522 +5.97986,43.95994,2497,8,31,21,38,15,3.75,27.5,fr,56968,49,2439392,1,1,Active Shallow Crust,0.0,89.98833,-90.0,08/31/2497 +5.97986,43.95994,5251,6,2,4,12,37,3.75,5.0,fr,56969,105,2439393,1,1,Active Shallow Crust,128.8968,89.96745,0.0,06/02/5251 +5.97986,43.95994,4265,9,8,14,13,7,3.85,15.0,fr,56970,85,2439397,1,1,Active Shallow Crust,0.0,89.98972,0.0,09/08/4265 +5.97986,43.95994,4961,6,10,10,37,58,3.85,27.5,fr,56971,99,2439398,1,1,Active Shallow Crust,0.0,89.98972,0.0,06/10/4961 +5.97986,43.95994,5403,11,25,14,4,34,3.85,5.0,fr,56972,108,2439405,1,1,Active Shallow Crust,128.8949,89.99487,0.0,11/25/5403 +5.97986,43.95994,4455,7,1,17,39,35,3.95,15.0,fr,56973,89,2439409,1,1,Active Shallow Crust,0.0,89.99084,0.0,07/01/4455 +5.97986,43.95994,6364,12,18,22,42,13,3.95,27.5,fr,56974,127,2439410,1,1,Active Shallow Crust,0.0,89.99084,0.0,12/18/6364 +5.97986,43.95994,1209,5,16,12,6,4,3.95,5.0,fr,56975,24,2439411,1,1,Active Shallow Crust,240.0194,58.00421,0.0,05/16/1209 +5.97986,43.95994,5845,8,10,14,3,4,4.05,5.0,fr,56976,116,2439420,1,1,Active Shallow Crust,0.0,89.99184,0.0,08/10/5845 +5.97986,43.95994,5488,2,5,1,33,10,4.15,5.0,fr,56977,109,2439432,1,1,Active Shallow Crust,0.0,89.98908,0.0,02/05/5488 +5.97986,43.95994,3871,2,9,1,7,28,4.25,5.0,fr,56978,77,2439450,1,2,Active Shallow Crust,0.0,89.99016,-90.0,02/09/3871 +5.97986,43.95994,9761,11,10,20,42,31,4.25,5.0,fr,56979,195,2439450,1,2,Active Shallow Crust,0.0,89.99016,-90.0,11/10/9761 +5.97986,43.95994,3903,8,5,22,4,48,4.35,5.0,fr,56980,78,2439459,1,1,Active Shallow Crust,240.0081,57.99538,0.0,08/05/3903 +5.97986,43.95994,7750,6,7,16,53,56,4.45,5.0,fr,56981,154,2439468,1,1,Active Shallow Crust,0.0,89.9897,0.0,06/07/7750 +5.97986,43.95994,9057,2,6,3,46,4,4.95,5.0,fr,56982,181,2439528,1,1,Active Shallow Crust,0.0,89.98986,0.0,02/06/9057 +3.0134,46.16438,552,6,14,8,19,38,3.55,5.0,fr,56983,11,2439840,1,1,Active Shallow Crust,0.0,89.98952,0.0,06/14/0552 +3.0134,46.16438,2097,11,22,15,33,59,3.55,15.0,fr,56984,41,2439841,1,1,Active Shallow Crust,0.0,89.98952,0.0,11/22/2097 +3.0134,46.16438,1874,8,18,0,19,7,3.65,5.0,fr,56985,37,2439852,1,2,Active Shallow Crust,0.0,89.99066,0.0,08/18/1874 +3.0134,46.16438,1861,6,13,6,5,34,3.65,5.0,fr,56986,37,2439852,1,2,Active Shallow Crust,0.0,89.99066,0.0,06/13/1861 +3.0134,46.16438,9456,9,10,20,29,25,3.75,5.0,fr,56987,189,2439864,1,2,Active Shallow Crust,0.0,89.98891,0.0,09/10/9456 +3.0134,46.16438,5289,6,14,2,56,43,3.75,5.0,fr,56988,105,2439864,1,2,Active Shallow Crust,0.0,89.98891,0.0,06/14/5289 +3.0134,46.16438,8746,3,8,20,58,38,3.75,15.0,fr,56989,174,2439865,1,1,Active Shallow Crust,0.0,89.98891,0.0,03/08/8746 +3.0134,46.16438,4385,9,22,11,49,22,3.75,27.5,fr,56990,87,2439866,1,1,Active Shallow Crust,0.0,89.98891,0.0,09/22/4385 +3.0134,46.16438,1055,10,14,4,13,24,4.05,27.5,fr,56991,21,2439908,1,1,Active Shallow Crust,0.0,89.99007,-90.0,10/14/1055 +3.0134,46.16438,8291,5,4,2,47,28,4.15,5.0,fr,56992,165,2439912,1,1,Active Shallow Crust,0.0,89.9895,0.0,05/04/8291 +3.0134,46.16438,4960,6,23,11,37,56,4.25,15.0,fr,56993,99,2439925,1,1,Active Shallow Crust,0.0,89.99064,0.0,06/23/4960 +3.0134,46.16438,4040,4,9,9,59,36,4.85,5.0,fr,56994,80,2440002,1,1,Active Shallow Crust,0.0,89.98972,-90.0,04/09/4040 +3.0134,46.16438,782,3,23,13,25,23,5.15,5.0,fr,56995,15,2440032,1,1,Active Shallow Crust,0.0,89.99004,0.0,03/23/0782 +-1.74237,49.65104,6453,10,6,17,20,47,3.55,5.0,fr,56996,129,2440326,1,1,Active Shallow Crust,0.0,89.9901,-90.0,10/06/6453 +-1.74237,49.65104,4193,5,2,16,28,56,3.65,5.0,fr,56997,83,2440332,1,1,Active Shallow Crust,0.0,89.98981,0.0,05/02/4193 +-1.74237,49.65104,1857,12,3,23,50,13,3.75,5.0,fr,56998,37,2440353,1,1,Active Shallow Crust,128.8963,89.96732,0.0,12/03/1857 +1.15997,51.63649,8186,3,30,11,36,51,3.55,5.0,fr,56999,163,2440800,1,1,Active Shallow Crust,0.0,89.99062,0.0,03/30/8186 +1.15997,51.63649,8478,2,23,10,38,39,3.65,5.0,fr,57000,169,2440812,1,1,Active Shallow Crust,0.0,89.99024,0.0,02/23/8478 +1.15997,51.63649,5134,6,11,18,53,29,3.65,5.0,fr,57001,102,2440815,1,1,Active Shallow Crust,240.0019,58.01288,0.0,06/11/5134 +1.15997,51.63649,6049,8,29,17,29,1,3.75,5.0,fr,57002,120,2440827,1,1,Active Shallow Crust,240.009,58.0177,0.0,08/29/6049 +1.15997,51.63649,2953,3,17,16,33,52,3.85,5.0,fr,57003,59,2440836,1,1,Active Shallow Crust,0.0,89.99003,0.0,03/17/2953 +1.15997,51.63649,5553,6,29,22,25,16,3.85,5.0,fr,57004,111,2440842,1,1,Active Shallow Crust,0.0,89.98991,-90.0,06/29/5553 +1.15997,51.63649,8701,11,1,6,37,22,4.05,15.0,fr,57005,174,2440861,1,1,Active Shallow Crust,0.0,89.99032,0.0,11/01/8701 +1.15997,51.63649,1763,9,3,19,17,48,4.15,5.0,fr,57006,35,2440872,1,1,Active Shallow Crust,0.0,89.98981,0.0,09/03/1763 +1.15997,51.63649,4677,1,14,20,32,45,4.35,27.5,fr,57007,93,2440907,1,1,Active Shallow Crust,128.8968,89.98267,0.0,01/14/4677 +-0.12535,42.7477,2317,3,11,13,18,37,3.55,27.5,fr,57008,46,2441285,1,1,Active Shallow Crust,240.0119,57.99802,0.0,03/11/2317 +-0.12535,42.7477,1801,2,21,11,8,49,3.55,5.0,fr,57009,36,2441286,1,1,Active Shallow Crust,0.0,89.98994,-90.0,02/21/1801 +-0.12535,42.7477,4681,12,16,15,57,24,3.55,5.0,fr,57010,93,2441289,1,2,Active Shallow Crust,128.8965,89.99375,0.0,12/16/4681 +-0.12535,42.7477,6697,8,14,11,56,12,3.55,5.0,fr,57011,133,2441289,1,2,Active Shallow Crust,128.8965,89.99375,0.0,08/14/6697 +-0.12535,42.7477,7017,9,30,0,18,34,3.65,5.0,fr,57012,140,2441298,1,1,Active Shallow Crust,0.0,89.98998,-90.0,09/30/7017 +-0.12535,42.7477,6538,10,28,13,28,16,3.75,5.0,fr,57013,130,2441304,1,1,Active Shallow Crust,0.0,89.99007,0.0,10/28/6538 +-0.12535,42.7477,9621,6,19,13,48,59,3.85,5.0,fr,57014,192,2441316,1,1,Active Shallow Crust,0.0,89.99001,0.0,06/19/9621 +-0.12535,42.7477,2331,3,9,13,5,21,4.05,5.0,fr,57015,46,2441340,1,2,Active Shallow Crust,0.0,89.98998,0.0,03/09/2331 +-0.12535,42.7477,7667,10,23,18,30,22,4.05,5.0,fr,57016,153,2441340,1,2,Active Shallow Crust,0.0,89.98998,0.0,10/23/7667 +-0.12535,42.7477,7028,8,2,0,26,5,4.15,15.0,fr,57017,140,2441356,1,1,Active Shallow Crust,240.0078,57.99723,0.0,08/02/7028 +-0.12535,42.7477,3140,10,26,9,29,14,4.25,15.0,fr,57018,62,2441365,1,1,Active Shallow Crust,0.0,89.98997,0.0,10/26/3140 +-0.12535,42.7477,3415,7,10,16,57,37,5.05,5.0,fr,57019,68,2441460,1,1,Active Shallow Crust,0.0,89.99,0.0,07/10/3415 +-0.12535,42.7477,8246,2,3,12,21,59,5.15,5.0,fr,57020,164,2441472,1,1,Active Shallow Crust,0.0,89.98998,0.0,02/03/8246 +3.34813,44.38878,6225,11,15,22,39,5,3.75,5.0,fr,57021,124,2441784,1,2,Active Shallow Crust,0.0,89.99142,0.0,11/15/6225 +3.34813,44.38878,6066,7,12,12,21,28,3.75,5.0,fr,57022,121,2441784,1,2,Active Shallow Crust,0.0,89.99142,0.0,07/12/6066 +3.34813,44.38878,9722,1,19,20,6,59,3.75,15.0,fr,57023,194,2441785,1,1,Active Shallow Crust,0.0,89.99142,0.0,01/19/9722 +3.34813,44.38878,757,8,9,3,26,38,3.75,15.0,fr,57024,15,2441794,1,1,Active Shallow Crust,128.8974,89.96717,0.0,08/09/0757 +3.34813,44.38878,6858,12,14,19,4,11,3.85,5.0,fr,57025,137,2441796,1,1,Active Shallow Crust,0.0,89.9898,0.0,12/14/6858 +3.34813,44.38878,1108,5,15,3,48,57,4.35,5.0,fr,57026,22,2441862,1,1,Active Shallow Crust,0.0,89.98985,-90.0,05/15/1108 +3.34813,44.38878,8876,9,23,8,7,39,4.45,5.0,fr,57027,177,2441868,1,1,Active Shallow Crust,0.0,89.98977,0.0,09/23/8876 +3.34813,44.38878,8028,12,11,5,50,50,5.05,5.0,fr,57028,160,2441940,1,1,Active Shallow Crust,0.0,89.98975,0.0,12/11/8028 +-4.29123,50.11642,1111,11,11,15,5,28,3.75,15.0,fr,57029,22,2442265,1,1,Active Shallow Crust,0.0,89.98973,0.0,11/11/1111 +-4.29123,50.11642,2504,12,3,9,43,23,3.85,5.0,fr,57030,50,2442276,1,1,Active Shallow Crust,0.0,89.99084,0.0,12/03/2504 +-1.39598,41.64411,3909,3,11,21,56,6,5.15,5.0,fr,57031,78,2442921,1,1,Active Shallow Crust,128.886,89.99104,0.0,03/11/3909 +-0.69354,43.51339,9219,12,1,16,53,33,3.55,5.0,fr,57032,184,2443200,1,2,Active Shallow Crust,0.0,89.98994,0.0,12/01/9219 +-0.69354,43.51339,5961,7,27,6,48,16,3.55,5.0,fr,57033,119,2443200,1,2,Active Shallow Crust,0.0,89.98994,0.0,07/27/5961 +-0.69354,43.51339,6841,8,4,7,32,45,3.55,15.0,fr,57034,136,2443201,1,2,Active Shallow Crust,0.0,89.98994,0.0,08/04/6841 +-0.69354,43.51339,6965,1,21,1,29,24,3.55,15.0,fr,57035,139,2443201,1,2,Active Shallow Crust,0.0,89.98994,0.0,01/21/6965 +-0.69354,43.51339,9051,6,25,3,55,57,3.65,5.0,fr,57036,181,2443212,1,1,Active Shallow Crust,0.0,89.99023,0.0,06/25/9051 +-0.69354,43.51339,910,11,20,20,8,15,3.65,5.0,fr,57037,18,2443215,1,1,Active Shallow Crust,240.0008,58.01288,0.0,11/20/0910 +-0.69354,43.51339,4508,2,10,22,25,47,3.75,5.0,fr,57038,90,2443224,1,1,Active Shallow Crust,0.0,89.98984,0.0,02/10/4508 +-0.69354,43.51339,1026,8,18,18,0,21,3.85,15.0,fr,57039,20,2443237,1,1,Active Shallow Crust,0.0,89.9903,0.0,08/18/1026 +-0.69354,43.51339,5295,6,1,15,11,18,4.05,5.0,fr,57040,105,2443260,1,1,Active Shallow Crust,0.0,89.99023,0.0,06/01/5295 +5.98763,44.6233,2690,11,21,23,23,38,3.55,15.0,fr,57041,53,2443681,1,1,Active Shallow Crust,0.0,89.99282,0.0,11/21/2690 +5.98763,44.6233,8928,11,3,1,23,0,3.65,5.0,fr,57042,178,2443692,1,2,Active Shallow Crust,0.0,89.98721,0.0,11/03/8928 +5.98763,44.6233,6171,12,25,10,45,18,3.65,5.0,fr,57043,123,2443692,1,2,Active Shallow Crust,0.0,89.98721,0.0,12/25/6171 +5.98763,44.6233,3396,3,3,4,31,22,3.85,15.0,fr,57044,67,2443723,1,1,Active Shallow Crust,0.0,89.98972,-90.0,03/03/3396 +5.98763,44.6233,5987,4,19,19,27,33,3.95,15.0,fr,57045,119,2443729,1,1,Active Shallow Crust,0.0,89.99094,0.0,04/19/5987 +5.98763,44.6233,403,7,18,13,7,41,3.95,5.0,fr,57046,8,2443734,1,1,Active Shallow Crust,0.0,89.99084,-90.0,07/18/0403 +5.98763,44.6233,9892,9,13,20,43,59,4.35,15.0,fr,57047,197,2443777,1,1,Active Shallow Crust,359.9986,89.99142,0.0,09/13/9892 +5.98763,44.6233,9541,11,3,11,12,23,4.45,5.0,fr,57048,190,2443788,1,1,Active Shallow Crust,0.0,89.98981,0.0,11/03/9541 +5.98763,44.6233,1247,10,25,19,26,22,4.65,5.0,fr,57049,24,2443815,1,2,Active Shallow Crust,240.01,57.99425,0.0,10/25/1247 +5.98763,44.6233,8119,2,23,5,16,34,4.65,5.0,fr,57050,162,2443815,1,2,Active Shallow Crust,240.01,57.99425,0.0,02/23/8119 +5.98763,44.6233,8945,9,18,14,27,7,4.75,5.0,fr,57051,178,2443830,1,1,Active Shallow Crust,0.0,89.99088,-90.0,09/18/8945 +3.77076,49.08089,7474,6,19,9,41,55,4.25,15.0,fr,57052,149,2444245,1,1,Active Shallow Crust,0.0,89.98967,0.0,06/19/7474 +3.77076,49.08089,2099,2,8,20,27,14,4.45,27.5,fr,57053,41,2444270,1,1,Active Shallow Crust,0.0,89.98946,0.0,02/08/2099 +1.95128,49.45986,826,8,14,15,10,35,3.55,5.0,fr,57054,16,2444640,1,1,Active Shallow Crust,0.0,89.99017,0.0,08/14/0826 +1.95128,49.45986,6133,4,30,10,30,7,3.85,5.0,fr,57055,122,2444679,1,1,Active Shallow Crust,240.0113,57.99783,0.0,04/30/6133 +1.95128,49.45986,4998,11,26,15,41,19,3.95,15.0,fr,57056,99,2444692,1,1,Active Shallow Crust,240.0204,58.00486,0.0,11/26/4998 +1.95128,49.45986,1515,8,24,19,8,3,4.15,5.0,fr,57057,30,2444721,1,1,Active Shallow Crust,128.8969,89.99384,0.0,08/24/1515 +1.95128,49.45986,7031,11,26,13,29,33,4.75,15.0,fr,57058,140,2444785,1,1,Active Shallow Crust,0.0,89.99012,0.0,11/26/7031 +1.951309,49.45986,2020,7,1,20,59,38,7.05,16.94221,fr,57059,40,2445060,1,1,Active Shallow Crust,360.0,89.99001,0.0,07/01/2020 +4.17328,48.76321,1266,7,1,15,1,56,3.55,5.0,fr,57060,25,2445120,1,1,Active Shallow Crust,0.0,89.98671,0.0,07/01/1266 +4.17328,48.76321,2385,11,8,1,40,16,3.55,15.0,fr,57061,47,2445124,1,1,Active Shallow Crust,240.0119,57.99926,0.0,11/08/2385 +-5.09,47.17595,6024,7,12,9,45,33,3.55,5.0,fr,57062,120,2445603,1,1,Active Shallow Crust,240.0116,57.99889,0.0,07/12/6024 +-5.09,47.17595,286,2,8,1,15,50,3.95,5.0,fr,57063,5,2445648,1,1,Active Shallow Crust,0.0,89.99135,0.0,02/08/0286 +-1.8003,50.70708,6174,8,11,4,27,12,3.55,5.0,fr,57064,123,2446080,1,1,Active Shallow Crust,0.0,89.99042,0.0,08/11/6174 +-1.8003,50.70708,2259,2,14,7,51,49,3.75,15.0,fr,57065,45,2446111,1,1,Active Shallow Crust,0.0,89.98974,-90.0,02/14/2259 +-1.8003,50.70708,4844,3,18,8,54,57,3.75,5.0,fr,57066,96,2446113,1,1,Active Shallow Crust,128.8961,89.96734,0.0,03/18/4844 +-1.8003,50.70708,5678,10,12,16,20,43,3.85,5.0,fr,57067,113,2446116,1,2,Active Shallow Crust,0.0,89.98983,0.0,10/12/5678 +-1.8003,50.70708,4538,7,8,18,59,8,3.85,5.0,fr,57068,90,2446116,1,2,Active Shallow Crust,0.0,89.98983,0.0,07/08/4538 +8.71956,47.28615,8721,7,1,15,6,38,3.55,5.0,fr,57069,174,2446560,1,7,Active Shallow Crust,0.0,89.98632,0.0,07/01/8721 +8.71956,47.28615,3500,12,21,9,51,2,3.55,5.0,fr,57070,69,2446560,1,7,Active Shallow Crust,0.0,89.98632,0.0,12/21/3500 +8.71956,47.28615,9261,7,10,23,40,57,3.55,5.0,fr,57071,185,2446560,1,7,Active Shallow Crust,0.0,89.98632,0.0,07/10/9261 +8.71956,47.28615,695,4,5,1,7,14,3.55,5.0,fr,57072,13,2446560,1,7,Active Shallow Crust,0.0,89.98632,0.0,04/05/0695 +8.71956,47.28615,4665,5,29,9,45,23,3.55,5.0,fr,57073,93,2446560,1,7,Active Shallow Crust,0.0,89.98632,0.0,05/29/4665 +8.71956,47.28615,4267,7,14,7,49,19,3.55,5.0,fr,57074,85,2446560,1,7,Active Shallow Crust,0.0,89.98632,0.0,07/14/4267 +8.71956,47.28615,7645,8,8,10,35,42,3.55,5.0,fr,57075,152,2446560,1,7,Active Shallow Crust,0.0,89.98632,0.0,08/08/7645 +8.71956,47.28615,3889,3,24,0,37,11,3.55,15.0,fr,57076,77,2446561,1,4,Active Shallow Crust,0.0,89.98632,0.0,03/24/3889 +8.71956,47.28615,3200,6,26,21,16,40,3.55,15.0,fr,57077,63,2446561,1,4,Active Shallow Crust,0.0,89.98632,0.0,06/26/3200 +8.71956,47.28615,5277,12,12,21,59,13,3.55,15.0,fr,57078,105,2446561,1,4,Active Shallow Crust,0.0,89.98632,0.0,12/12/5277 +8.71956,47.28615,5819,9,4,8,38,16,3.55,15.0,fr,57079,116,2446561,1,4,Active Shallow Crust,0.0,89.98632,0.0,09/04/5819 +8.71956,47.28615,2117,10,18,20,5,51,3.55,27.5,fr,57080,42,2446562,1,1,Active Shallow Crust,0.0,89.98632,0.0,10/18/2117 +8.71956,47.28615,3134,11,15,7,34,21,3.55,5.0,fr,57081,62,2446563,1,2,Active Shallow Crust,240.0114,57.99921,0.0,11/15/3134 +8.71956,47.28615,5068,12,6,11,18,22,3.55,5.0,fr,57082,101,2446563,1,2,Active Shallow Crust,240.0114,57.99921,0.0,12/06/5068 +8.71956,47.28615,9627,5,11,15,30,23,3.55,5.0,fr,57083,192,2446566,1,2,Active Shallow Crust,0.0,89.98616,-90.0,05/11/9627 +8.71956,47.28615,9681,4,13,10,48,32,3.55,5.0,fr,57084,193,2446566,1,2,Active Shallow Crust,0.0,89.98616,-90.0,04/13/9681 +8.71956,47.28615,6882,9,20,22,3,19,3.55,5.0,fr,57085,137,2446569,1,1,Active Shallow Crust,128.8964,89.99316,0.0,09/20/6882 +8.71956,47.28615,3840,4,2,22,24,7,3.65,5.0,fr,57086,76,2446572,1,3,Active Shallow Crust,0.0,89.98781,0.0,04/02/3840 +8.71956,47.28615,5768,3,9,0,35,31,3.65,5.0,fr,57087,115,2446572,1,3,Active Shallow Crust,0.0,89.98781,0.0,03/09/5768 +8.71956,47.28615,5216,7,9,23,31,55,3.65,5.0,fr,57088,104,2446572,1,3,Active Shallow Crust,0.0,89.98781,0.0,07/09/5216 +8.71956,47.28615,6578,5,23,5,40,8,3.65,15.0,fr,57089,131,2446573,1,2,Active Shallow Crust,0.0,89.98781,0.0,05/23/6578 +8.71956,47.28615,4425,1,2,13,39,50,3.65,15.0,fr,57090,88,2446573,1,2,Active Shallow Crust,0.0,89.98781,0.0,01/02/4425 +8.71956,47.28615,5124,8,3,1,5,35,3.65,27.5,fr,57091,102,2446574,1,1,Active Shallow Crust,0.0,89.98781,0.0,08/03/5124 +8.71956,47.28615,8971,11,25,18,11,39,3.65,5.0,fr,57092,179,2446575,1,2,Active Shallow Crust,240.0,58.01328,0.0,11/25/8971 +8.71956,47.28615,6779,1,24,22,2,9,3.65,5.0,fr,57093,135,2446575,1,2,Active Shallow Crust,240.0,58.01328,0.0,01/24/6779 +8.71956,47.28615,1322,9,27,20,16,17,3.65,5.0,fr,57094,26,2446578,1,1,Active Shallow Crust,0.0,89.98766,-90.0,09/27/1322 +8.71956,47.28615,5489,1,10,15,47,38,3.65,5.0,fr,57095,109,2446581,1,1,Active Shallow Crust,128.8984,89.96354,0.0,01/10/5489 +8.71956,47.28615,1429,4,18,1,22,30,3.65,15.0,fr,57096,28,2446582,1,2,Active Shallow Crust,128.8984,89.96354,0.0,04/18/1429 +8.71956,47.28615,4279,10,21,0,56,25,3.65,15.0,fr,57097,85,2446582,1,2,Active Shallow Crust,128.8984,89.96354,0.0,10/21/4279 +8.71956,47.28615,2743,4,18,17,42,58,3.75,5.0,fr,57098,54,2446584,1,2,Active Shallow Crust,0.0,89.98914,0.0,04/18/2743 +8.71956,47.28615,7348,11,27,11,25,59,3.75,5.0,fr,57099,146,2446584,1,2,Active Shallow Crust,0.0,89.98914,0.0,11/27/7348 +8.71956,47.28615,8481,9,28,21,13,15,3.75,15.0,fr,57100,169,2446585,1,1,Active Shallow Crust,0.0,89.98914,0.0,09/28/8481 +8.71956,47.28615,8594,1,1,8,8,32,3.75,5.0,fr,57101,171,2446593,1,1,Active Shallow Crust,128.8965,89.96751,0.0,01/01/8594 +8.71956,47.28615,2530,10,25,1,23,49,3.85,5.0,fr,57102,50,2446596,1,6,Active Shallow Crust,0.0,89.99032,0.0,10/25/2530 +8.71956,47.28615,528,9,15,22,50,23,3.85,5.0,fr,57103,10,2446596,1,6,Active Shallow Crust,0.0,89.99032,0.0,09/15/0528 +8.71956,47.28615,4924,4,13,4,3,54,3.85,5.0,fr,57104,98,2446596,1,6,Active Shallow Crust,0.0,89.99032,0.0,04/13/4924 +8.71956,47.28615,1875,7,15,17,54,55,3.85,5.0,fr,57105,37,2446596,1,6,Active Shallow Crust,0.0,89.99032,0.0,07/15/1875 +8.71956,47.28615,8039,9,23,21,32,33,3.85,5.0,fr,57106,160,2446596,1,6,Active Shallow Crust,0.0,89.99032,0.0,09/23/8039 +8.71956,47.28615,776,11,4,19,49,50,3.85,5.0,fr,57107,15,2446596,1,6,Active Shallow Crust,0.0,89.99032,0.0,11/04/0776 +8.71956,47.28615,4793,7,19,3,45,43,3.85,15.0,fr,57108,95,2446597,1,2,Active Shallow Crust,0.0,89.99032,0.0,07/19/4793 +8.71956,47.28615,3642,2,3,4,39,51,3.85,15.0,fr,57109,72,2446597,1,2,Active Shallow Crust,0.0,89.99032,0.0,02/03/3642 +8.71956,47.28615,1624,6,13,16,57,16,3.85,5.0,fr,57110,32,2446599,1,1,Active Shallow Crust,240.0113,57.99752,0.0,06/13/1624 +8.71956,47.28615,8546,6,7,4,18,54,3.85,5.0,fr,57111,170,2446605,1,2,Active Shallow Crust,128.8938,89.99516,0.0,06/07/8546 +8.71956,47.28615,7127,3,26,17,7,31,3.85,5.0,fr,57112,142,2446605,1,2,Active Shallow Crust,128.8938,89.99516,0.0,03/26/7127 +8.71956,47.28615,3441,4,28,7,10,43,3.95,5.0,fr,57113,68,2446608,1,3,Active Shallow Crust,0.0,89.99137,0.0,04/28/3441 +8.71956,47.28615,5079,6,25,21,20,22,3.95,5.0,fr,57114,101,2446608,1,3,Active Shallow Crust,0.0,89.99137,0.0,06/25/5079 +8.71956,47.28615,3059,11,12,9,5,12,3.95,5.0,fr,57115,61,2446608,1,3,Active Shallow Crust,0.0,89.99137,0.0,11/12/3059 +8.71956,47.28615,8645,6,23,22,16,16,3.95,27.5,fr,57116,172,2446610,1,1,Active Shallow Crust,0.0,89.99137,0.0,06/23/8645 +8.71956,47.28615,7230,1,29,14,1,58,3.95,5.0,fr,57117,144,2446611,1,1,Active Shallow Crust,240.0218,58.00378,0.0,01/29/7230 +8.71956,47.28615,6654,10,2,14,7,45,3.95,15.0,fr,57118,133,2446615,1,1,Active Shallow Crust,0.0,89.99126,-90.0,10/02/6654 +8.71956,47.28615,4973,8,16,10,31,45,3.95,5.0,fr,57119,99,2446617,1,1,Active Shallow Crust,128.9003,89.99568,0.0,08/16/4973 +8.71956,47.28615,2030,9,22,18,2,27,4.05,5.0,fr,57120,40,2446620,1,1,Active Shallow Crust,0.0,89.99231,0.0,09/22/2030 +8.71956,47.28615,5263,2,8,22,43,7,4.05,27.5,fr,57121,105,2446622,1,1,Active Shallow Crust,0.0,89.99231,0.0,02/08/5263 +8.71956,47.28615,2077,4,23,6,33,53,4.15,15.0,fr,57122,41,2446633,1,1,Active Shallow Crust,0.0,89.99314,0.0,04/23/2077 +8.71956,47.28615,8710,11,12,13,12,32,4.15,5.0,fr,57123,174,2446641,1,1,Active Shallow Crust,128.8979,89.99314,0.0,11/12/8710 +8.71956,47.28615,6959,6,2,12,22,19,4.25,5.0,fr,57124,139,2446644,1,1,Active Shallow Crust,0.0,89.98778,0.0,06/02/6959 +8.71956,47.28615,108,2,16,11,12,15,4.25,15.0,fr,57125,2,2446645,1,2,Active Shallow Crust,0.0,89.98778,0.0,02/16/0108 +8.71956,47.28615,3333,11,23,2,23,36,4.25,15.0,fr,57126,66,2446645,1,2,Active Shallow Crust,0.0,89.98778,0.0,11/23/3333 +8.71956,47.28615,4331,7,15,15,9,34,4.25,5.0,fr,57127,86,2446647,1,1,Active Shallow Crust,240.0078,57.99307,0.0,07/15/4331 +8.71956,47.28615,841,6,28,11,28,21,4.35,5.0,fr,57128,16,2446656,1,2,Active Shallow Crust,0.0,89.98911,0.0,06/28/0841 +8.71956,47.28615,9778,8,9,13,27,35,4.35,5.0,fr,57129,195,2446656,1,2,Active Shallow Crust,0.0,89.98911,0.0,08/09/9778 +8.71956,47.28615,3572,7,27,11,35,22,4.35,27.5,fr,57130,71,2446664,1,1,Active Shallow Crust,0.0,89.98898,-90.0,07/27/3572 +8.71956,47.28615,3901,10,28,3,15,35,4.45,5.0,fr,57131,78,2446668,1,1,Active Shallow Crust,0.0,89.99029,0.0,10/28/3901 +8.71956,47.28615,4520,1,15,20,0,33,4.65,5.0,fr,57132,90,2446695,1,1,Active Shallow Crust,240.011,57.99473,0.0,01/15/4520 +8.71956,47.28615,7193,10,3,6,7,20,4.75,5.0,fr,57133,143,2446713,1,1,Active Shallow Crust,128.8882,89.98775,0.0,10/03/7193 +8.71956,47.28615,7206,10,11,4,47,31,4.95,15.0,fr,57134,144,2446729,1,1,Active Shallow Crust,0.0,89.98908,0.0,10/11/7206 +8.71956,47.28615,4873,5,19,14,47,26,4.95,5.0,fr,57135,97,2446737,1,1,Active Shallow Crust,128.8893,89.99027,0.0,05/19/4873 +8.71956,47.28615,3770,6,15,7,49,53,5.05,5.0,fr,57136,75,2446740,1,1,Active Shallow Crust,0.0,89.99026,0.0,06/15/3770 +8.71956,47.28615,5653,7,21,9,1,25,5.95,5.0,fr,57137,113,2446848,1,2,Active Shallow Crust,0.0,89.98963,0.0,07/21/5653 +8.71956,47.28615,3162,4,25,1,43,3,5.95,5.0,fr,57138,63,2446848,1,2,Active Shallow Crust,0.0,89.98963,0.0,04/25/3162 +8.719562,47.28615,1515,9,27,20,9,19,6.15,6.011322,fr,57139,30,2446872,1,1,Active Shallow Crust,0.0,89.99005,0.0,09/27/1515 +8.14335,47.35452,3752,1,1,6,36,12,3.55,5.0,fr,57140,75,2447040,1,3,Active Shallow Crust,0.0,89.98634,0.0,01/01/3752 +8.14335,47.35452,235,3,7,1,42,37,3.55,5.0,fr,57141,4,2447040,1,3,Active Shallow Crust,0.0,89.98634,0.0,03/07/0235 +8.14335,47.35452,3791,10,23,14,18,25,3.55,5.0,fr,57142,75,2447040,1,3,Active Shallow Crust,0.0,89.98634,0.0,10/23/3791 +8.14335,47.35452,4326,2,4,23,26,3,3.55,15.0,fr,57143,86,2447041,1,2,Active Shallow Crust,0.0,89.98634,0.0,02/04/4326 +8.14335,47.35452,4627,2,22,9,9,4,3.55,15.0,fr,57144,92,2447041,1,2,Active Shallow Crust,0.0,89.98634,0.0,02/22/4627 +8.14335,47.35452,9296,1,1,16,47,31,3.55,27.5,fr,57145,185,2447045,1,1,Active Shallow Crust,240.0134,57.99874,0.0,01/01/9296 +8.14335,47.35452,5745,3,26,21,46,23,3.55,5.0,fr,57146,114,2447046,1,2,Active Shallow Crust,0.0,89.98618,-90.0,03/26/5745 +8.14335,47.35452,1780,10,27,14,35,37,3.55,5.0,fr,57147,35,2447046,1,2,Active Shallow Crust,0.0,89.98618,-90.0,10/27/1780 +8.14335,47.35452,509,5,20,15,41,10,3.55,5.0,fr,57148,10,2447049,1,1,Active Shallow Crust,128.8983,89.99317,0.0,05/20/0509 +8.14335,47.35452,1549,6,11,0,20,22,3.65,5.0,fr,57149,30,2447052,1,5,Active Shallow Crust,0.0,89.98782,0.0,06/11/1549 +8.14335,47.35452,7611,8,19,5,52,30,3.65,5.0,fr,57150,152,2447052,1,5,Active Shallow Crust,0.0,89.98782,0.0,08/19/7611 +8.14335,47.35452,7336,4,12,17,7,30,3.65,5.0,fr,57151,146,2447052,1,5,Active Shallow Crust,0.0,89.98782,0.0,04/12/7336 +8.14335,47.35452,6689,1,28,2,9,15,3.65,5.0,fr,57152,133,2447052,1,5,Active Shallow Crust,0.0,89.98782,0.0,01/28/6689 +8.14335,47.35452,9372,12,21,18,4,33,3.65,5.0,fr,57153,187,2447052,1,5,Active Shallow Crust,0.0,89.98782,0.0,12/21/9372 +8.14335,47.35452,7930,9,8,11,5,16,3.65,27.5,fr,57154,158,2447054,1,1,Active Shallow Crust,0.0,89.98782,0.0,09/08/7930 +8.14335,47.35452,7991,3,13,9,26,20,3.65,5.0,fr,57155,159,2447055,1,1,Active Shallow Crust,240.0014,58.01127,0.0,03/13/7991 +8.14335,47.35452,7047,8,5,21,47,32,3.65,15.0,fr,57156,140,2447056,1,1,Active Shallow Crust,240.0014,58.01127,0.0,08/05/7047 +8.14335,47.35452,2128,4,1,3,9,30,3.65,27.5,fr,57157,42,2447057,1,1,Active Shallow Crust,240.0014,58.01119,0.0,04/01/2128 +8.14335,47.35452,6285,11,18,23,33,41,3.65,5.0,fr,57158,125,2447061,1,1,Active Shallow Crust,128.9002,89.96354,0.0,11/18/6285 +8.14335,47.35452,3912,3,2,5,32,58,3.65,15.0,fr,57159,78,2447062,1,1,Active Shallow Crust,128.9002,89.96354,0.0,03/02/3912 +8.14335,47.35452,1129,3,9,3,5,27,3.75,15.0,fr,57160,22,2447065,1,1,Active Shallow Crust,0.0,89.98914,0.0,03/09/1129 +8.14335,47.35452,7675,4,13,0,3,30,3.85,15.0,fr,57161,153,2447077,1,1,Active Shallow Crust,0.0,89.99033,0.0,04/13/7675 +8.14335,47.35452,5862,4,26,9,43,40,3.85,15.0,fr,57162,117,2447080,1,1,Active Shallow Crust,240.0107,57.99765,0.0,04/26/5862 +8.14335,47.35452,7967,12,13,5,16,7,3.85,27.5,fr,57163,159,2447081,1,1,Active Shallow Crust,240.0107,57.99765,0.0,12/13/7967 +8.14335,47.35452,2514,7,23,15,6,13,3.85,5.0,fr,57164,50,2447082,1,1,Active Shallow Crust,0.0,89.99021,-90.0,07/23/2514 +8.14335,47.35452,8887,2,15,23,53,58,3.95,5.0,fr,57165,177,2447088,1,2,Active Shallow Crust,0.0,89.99138,0.0,02/15/8887 +8.14335,47.35452,2105,8,20,8,57,21,3.95,5.0,fr,57166,42,2447088,1,2,Active Shallow Crust,0.0,89.99138,0.0,08/20/2105 +8.14335,47.35452,8201,11,9,23,31,5,3.95,15.0,fr,57167,164,2447089,1,1,Active Shallow Crust,0.0,89.99138,0.0,11/09/8201 +8.14335,47.35452,8278,2,15,8,13,21,3.95,5.0,fr,57168,165,2447091,1,1,Active Shallow Crust,240.0199,58.0048,0.0,02/15/8278 +8.14335,47.35452,4996,1,25,11,28,14,3.95,5.0,fr,57169,99,2447094,1,1,Active Shallow Crust,0.0,89.99128,-90.0,01/25/4996 +8.14335,47.35452,1792,8,7,22,36,59,3.95,27.5,fr,57170,35,2447096,1,1,Active Shallow Crust,0.0,89.99128,-90.0,08/07/1792 +8.14335,47.35452,9229,4,11,21,10,31,4.05,5.0,fr,57171,184,2447100,1,1,Active Shallow Crust,0.0,89.99232,0.0,04/11/9229 +8.14335,47.35452,5530,6,25,2,31,41,4.15,5.0,fr,57172,110,2447121,1,1,Active Shallow Crust,128.8954,89.99657,0.0,06/25/5530 +8.14335,47.35452,2918,1,25,9,3,53,4.35,5.0,fr,57173,58,2447136,1,2,Active Shallow Crust,0.0,89.98912,0.0,01/25/2918 +8.14335,47.35452,2101,3,23,14,13,15,4.35,5.0,fr,57174,42,2447136,1,2,Active Shallow Crust,0.0,89.98912,0.0,03/23/2101 +8.14335,47.35452,5221,7,5,2,54,33,4.35,15.0,fr,57175,104,2447137,1,2,Active Shallow Crust,0.0,89.98912,0.0,07/05/5221 +8.14335,47.35452,8334,7,9,21,34,1,4.35,15.0,fr,57176,166,2447137,1,2,Active Shallow Crust,0.0,89.98912,0.0,07/09/8334 +8.14335,47.35452,655,11,14,13,51,48,4.35,15.0,fr,57177,13,2447143,1,1,Active Shallow Crust,0.0,89.98899,-90.0,11/14/0655 +8.14335,47.35452,1904,8,30,21,8,25,4.65,15.0,fr,57178,38,2447173,1,2,Active Shallow Crust,0.0,89.98845,0.0,08/30/1904 +8.14335,47.35452,944,2,19,14,55,58,4.65,15.0,fr,57179,18,2447173,1,2,Active Shallow Crust,0.0,89.98845,0.0,02/19/0944 +8.14335,47.35452,5780,7,15,13,57,8,4.65,5.0,fr,57180,115,2447181,1,1,Active Shallow Crust,128.8902,89.98725,0.0,07/15/5780 +8.14335,47.35452,4700,4,16,7,30,54,4.95,5.0,fr,57181,93,2447211,1,1,Active Shallow Crust,240.0122,58.00467,0.0,04/16/4700 +8.14335,47.35452,2370,6,20,7,24,30,5.05,5.0,fr,57182,47,2447229,1,1,Active Shallow Crust,128.8849,89.9906,0.0,06/20/2370 +8.143345,47.35452,6108,4,15,4,36,24,6.55,25.58175,fr,57183,122,2447408,1,1,Active Shallow Crust,0.0,89.98993,-90.0,04/15/6108 +3.84652,41.52852,495,9,22,4,39,32,3.55,5.0,fr,57184,9,2447520,1,1,Active Shallow Crust,0.0,89.98868,0.0,09/22/0495 +3.84652,41.52852,5732,1,23,2,11,57,3.55,15.0,fr,57185,114,2447530,1,1,Active Shallow Crust,128.8965,89.99434,0.0,01/23/5732 +3.84652,41.52852,3296,1,15,0,48,49,3.65,5.0,fr,57186,65,2447532,1,1,Active Shallow Crust,0.0,89.98991,0.0,01/15/3296 +3.84652,41.52852,3466,5,26,11,25,8,3.75,5.0,fr,57187,69,2447547,1,1,Active Shallow Crust,240.0075,58.01727,0.0,05/26/3466 +3.84652,41.52852,1330,5,24,20,24,8,3.85,5.0,fr,57188,26,2447556,1,1,Active Shallow Crust,0.0,89.98931,0.0,05/24/1330 +3.84652,41.52852,8285,11,4,10,30,35,3.95,5.0,fr,57189,165,2447568,1,1,Active Shallow Crust,0.0,89.99047,0.0,11/04/8285 +3.84652,41.52852,4447,8,25,9,10,45,3.95,5.0,fr,57190,88,2447571,1,1,Active Shallow Crust,240.0192,58.00463,0.0,08/25/4447 +3.84652,41.52852,8071,7,30,11,1,59,5.25,5.0,fr,57191,161,2447724,1,1,Active Shallow Crust,0.0,89.98987,0.0,07/30/8071 +4.13361,44.76783,1184,11,19,8,51,49,3.55,5.0,fr,57192,23,2448000,1,2,Active Shallow Crust,0.0,89.99284,0.0,11/19/1184 +4.13361,44.76783,3466,3,19,9,8,49,3.55,5.0,fr,57193,69,2448000,1,2,Active Shallow Crust,0.0,89.99284,0.0,03/19/3466 +4.13361,44.76783,4195,8,28,12,7,54,3.55,15.0,fr,57194,83,2448001,1,1,Active Shallow Crust,0.0,89.99284,0.0,08/28/4195 +4.13361,44.76783,6850,4,5,8,55,10,3.65,27.5,fr,57195,136,2448014,1,1,Active Shallow Crust,0.0,89.98724,0.0,04/05/6850 +4.13361,44.76783,7401,3,2,0,16,39,3.65,5.0,fr,57196,148,2448015,1,1,Active Shallow Crust,240.0,58.01345,0.0,03/02/7401 +4.13361,44.76783,9873,2,1,23,18,8,3.75,15.0,fr,57197,197,2448025,1,1,Active Shallow Crust,0.0,89.98862,0.0,02/01/9873 +4.13361,44.76783,2689,9,9,11,8,35,3.75,5.0,fr,57198,53,2448027,1,1,Active Shallow Crust,240.009,58.01756,0.0,09/09/2689 +4.13361,44.76783,7785,12,31,23,35,19,4.05,5.0,fr,57199,155,2448060,1,1,Active Shallow Crust,0.0,89.99195,0.0,12/31/7785 +4.13361,44.76783,4386,7,8,22,14,58,4.15,5.0,fr,57200,87,2448081,1,1,Active Shallow Crust,128.8973,89.99462,0.0,07/08/4386 +4.13361,44.76783,4793,5,12,0,53,36,4.25,5.0,fr,57201,95,2448084,1,1,Active Shallow Crust,0.0,89.9904,0.0,05/12/4793 +4.13361,44.76783,3351,9,3,17,28,44,4.35,5.0,fr,57202,67,2448096,1,1,Active Shallow Crust,0.0,89.9886,0.0,09/03/3351 +4.13361,44.76783,8259,3,27,8,49,21,4.45,15.0,fr,57203,165,2448109,1,1,Active Shallow Crust,0.0,89.98984,0.0,03/27/8259 +3.09444,46.30617,4170,6,21,11,11,35,3.55,15.0,fr,57204,83,2448481,1,1,Active Shallow Crust,0.0,89.98955,0.0,06/21/4170 +3.09444,46.30617,3082,8,8,11,50,5,3.95,5.0,fr,57205,61,2448528,1,1,Active Shallow Crust,0.0,89.98901,0.0,08/08/3082 +3.09444,46.30617,6416,9,18,23,0,25,4.05,5.0,fr,57206,128,2448540,1,1,Active Shallow Crust,0.0,89.9902,0.0,09/18/6416 +3.09444,46.30617,7242,4,23,3,2,2,4.85,15.0,fr,57207,144,2448637,1,1,Active Shallow Crust,0.0,89.98986,0.0,04/23/7242 +3.09444,46.30617,5120,1,9,3,27,0,5.05,15.0,fr,57208,102,2448661,1,1,Active Shallow Crust,0.0,89.99009,0.0,01/09/5120 +0.55605,48.8674,7129,8,4,12,54,14,3.55,15.0,fr,57209,142,2448970,1,1,Active Shallow Crust,128.896,89.99378,0.0,08/04/7129 +0.55605,48.8674,7591,10,31,21,28,32,3.65,5.0,fr,57210,151,2448972,1,3,Active Shallow Crust,0.0,89.98965,0.0,10/31/7591 +0.55605,48.8674,6201,3,29,13,36,21,3.65,5.0,fr,57211,124,2448972,1,3,Active Shallow Crust,0.0,89.98965,0.0,03/29/6201 +0.55605,48.8674,482,6,16,4,33,55,3.65,5.0,fr,57212,9,2448972,1,3,Active Shallow Crust,0.0,89.98965,0.0,06/16/0482 +0.55605,48.8674,3374,4,18,23,43,55,3.65,5.0,fr,57213,67,2448981,1,1,Active Shallow Crust,128.9002,89.96351,0.0,04/18/3374 +0.55605,48.8674,8817,6,25,6,34,24,3.75,15.0,fr,57214,176,2448985,1,1,Active Shallow Crust,0.0,89.99012,0.0,06/25/8817 +0.55605,48.8674,5930,12,10,23,11,36,3.75,5.0,fr,57215,118,2448990,1,1,Active Shallow Crust,0.0,89.99001,-90.0,12/10/5930 +0.55605,48.8674,4855,3,17,1,11,21,3.75,5.0,fr,57216,97,2448993,1,1,Active Shallow Crust,128.8963,89.96735,0.0,03/17/4855 +0.55605,48.8674,7879,7,22,5,32,46,4.25,5.0,fr,57217,157,2449053,1,1,Active Shallow Crust,128.894,89.98092,0.0,07/22/7879 +0.55605,48.8674,8987,2,8,22,49,5,5.35,5.0,fr,57218,179,2449179,1,1,Active Shallow Crust,240.0269,57.99819,0.0,02/08/8987 +-1.80793,45.18535,990,5,2,16,49,47,3.95,5.0,fr,57219,19,2449494,1,1,Active Shallow Crust,0.0,89.98979,-90.0,05/02/0990 +-1.80793,45.18535,9702,3,10,12,3,48,4.75,27.5,fr,57220,194,2449586,1,1,Active Shallow Crust,0.0,89.99018,0.0,03/10/9702 +4.46664,50.7933,2698,5,30,12,13,2,3.55,5.0,fr,57221,53,2450400,1,2,Active Shallow Crust,0.0,89.98725,0.0,05/30/2698 +4.46664,50.7933,5091,3,12,17,10,2,3.55,5.0,fr,57222,101,2450400,1,2,Active Shallow Crust,0.0,89.98725,0.0,03/12/5091 +4.46664,50.7933,444,9,7,6,41,40,3.55,15.0,fr,57223,8,2450404,1,1,Active Shallow Crust,240.0138,57.99718,0.0,09/07/0444 +4.46664,50.7933,9205,8,7,21,39,21,3.65,5.0,fr,57224,184,2450412,1,1,Active Shallow Crust,0.0,89.98864,0.0,08/07/9205 +4.46664,50.7933,2043,2,13,19,30,53,3.65,15.0,fr,57225,40,2450413,1,1,Active Shallow Crust,0.0,89.98864,0.0,02/13/2043 +4.46664,50.7933,2676,8,19,3,50,4,3.65,27.5,fr,57226,53,2450414,1,1,Active Shallow Crust,0.0,89.98864,0.0,08/19/2676 +4.46664,50.7933,7736,8,10,2,43,24,3.65,5.0,fr,57227,154,2450418,1,1,Active Shallow Crust,0.0,89.9885,-90.0,08/10/7736 +4.46664,50.7933,807,10,20,4,41,23,3.75,5.0,fr,57228,16,2450424,1,2,Active Shallow Crust,0.0,89.98988,0.0,10/20/0807 +4.46664,50.7933,6776,3,31,20,34,39,3.75,5.0,fr,57229,135,2450424,1,2,Active Shallow Crust,0.0,89.98988,0.0,03/31/6776 +4.46664,50.7933,2240,10,24,8,1,55,3.75,15.0,fr,57230,44,2450428,1,1,Active Shallow Crust,240.0096,58.01707,0.0,10/24/2240 +4.46664,50.7933,846,5,6,9,16,50,3.85,5.0,fr,57231,16,2450436,1,2,Active Shallow Crust,0.0,89.99097,0.0,05/06/0846 +4.46664,50.7933,9620,2,27,22,39,26,3.85,5.0,fr,57232,192,2450436,1,2,Active Shallow Crust,0.0,89.99097,0.0,02/27/9620 +4.46664,50.7933,281,10,13,7,19,51,3.85,5.0,fr,57233,5,2450445,1,1,Active Shallow Crust,128.8942,89.99323,0.0,10/13/0281 +4.46664,50.7933,3567,6,29,0,58,16,3.95,15.0,fr,57234,71,2450449,1,1,Active Shallow Crust,0.0,89.99196,0.0,06/29/3567 +4.46664,50.7933,2549,2,18,7,49,43,4.25,15.0,fr,57235,50,2450485,1,1,Active Shallow Crust,0.0,89.98861,0.0,02/18/2549 +-4.36855,47.39279,7571,4,16,10,19,54,3.55,5.0,fr,57236,151,2450880,1,1,Active Shallow Crust,0.0,89.99317,0.0,04/16/7571 +-4.36855,47.39279,605,3,22,4,35,42,3.65,27.5,fr,57237,12,2450900,1,1,Active Shallow Crust,0.0,89.98769,-90.0,03/22/0605 +-4.36855,47.39279,5258,1,7,8,43,21,3.75,15.0,fr,57238,105,2450911,1,1,Active Shallow Crust,0.0,89.98903,-90.0,01/07/5258 +-4.36855,47.39279,6840,8,8,16,53,42,4.05,5.0,fr,57239,136,2450943,1,1,Active Shallow Crust,240.0061,58.00578,0.0,08/08/6840 +-4.36855,47.39279,3007,8,8,0,12,51,5.55,5.0,fr,57240,60,2451120,1,1,Active Shallow Crust,0.0,89.98975,0.0,08/08/3007 +4.22721,47.88542,1414,1,16,16,45,1,3.85,15.0,fr,57241,28,2451397,1,1,Active Shallow Crust,0.0,89.99043,0.0,01/16/1414 +4.22721,47.88542,6501,12,8,5,11,43,4.35,15.0,fr,57242,130,2451457,1,1,Active Shallow Crust,0.0,89.98923,0.0,12/08/6501 +-5.46315,49.05543,4932,6,15,13,26,51,3.55,15.0,fr,57243,98,2451841,1,1,Active Shallow Crust,0.0,89.98679,0.0,06/15/4932 +-5.46315,49.05543,2699,12,8,13,22,59,3.75,5.0,fr,57244,53,2451864,1,1,Active Shallow Crust,0.0,89.9895,0.0,12/08/2699 +-5.46315,49.05543,8862,1,6,4,51,49,4.15,27.5,fr,57245,177,2451917,1,1,Active Shallow Crust,240.0097,57.99725,0.0,01/06/8862 +-5.46315,49.05543,4150,9,1,16,4,0,4.35,5.0,fr,57246,82,2451936,1,1,Active Shallow Crust,0.0,89.98948,0.0,09/01/4150 +-3.4244,47.21586,8017,1,16,3,42,39,3.55,15.0,fr,57247,160,2452321,1,2,Active Shallow Crust,0.0,89.98972,0.0,01/16/8017 +-3.4244,47.21586,9443,3,13,8,42,24,3.55,15.0,fr,57248,188,2452321,1,2,Active Shallow Crust,0.0,89.98972,0.0,03/13/9443 +-3.4244,47.21586,6494,9,4,6,7,26,3.95,15.0,fr,57249,129,2452369,1,1,Active Shallow Crust,0.0,89.9892,0.0,09/04/6494 +-3.4244,47.21586,8658,1,18,4,53,57,4.05,5.0,fr,57250,173,2452380,1,1,Active Shallow Crust,0.0,89.99037,0.0,01/18/8658 +-3.4244,47.21586,417,2,26,13,47,1,4.35,5.0,fr,57251,8,2452416,1,1,Active Shallow Crust,0.0,89.99046,0.0,02/26/0417 +4.73847,51.19829,7739,4,7,19,3,51,3.65,5.0,fr,57252,154,2452812,1,1,Active Shallow Crust,0.0,89.98874,0.0,04/07/7739 +4.73847,51.19829,3604,7,1,12,14,22,3.65,15.0,fr,57253,72,2452819,1,1,Active Shallow Crust,0.0,89.98861,-90.0,07/01/3604 +4.73847,51.19829,2640,8,5,16,15,40,3.75,15.0,fr,57254,52,2452825,1,1,Active Shallow Crust,0.0,89.98996,0.0,08/05/2640 +4.73847,51.19829,1376,1,26,22,39,58,3.95,5.0,fr,57255,27,2452857,1,1,Active Shallow Crust,128.8988,89.99402,0.0,01/26/1376 +6.03708,48.51166,2704,1,8,1,46,27,3.65,5.0,fr,57256,54,2453292,1,1,Active Shallow Crust,0.0,89.98809,0.0,01/08/2704 +6.52531,46.13268,5068,5,4,1,50,42,3.55,5.0,fr,57257,101,2454240,1,2,Active Shallow Crust,0.0,89.99301,0.0,05/04/5068 +6.52531,46.13268,2194,8,7,5,49,38,3.55,5.0,fr,57258,43,2454240,1,2,Active Shallow Crust,0.0,89.99301,0.0,08/07/2194 +6.52531,46.13268,456,1,16,6,0,6,3.55,15.0,fr,57259,9,2454241,1,3,Active Shallow Crust,0.0,89.99301,0.0,01/16/0456 +6.52531,46.13268,9793,3,5,15,30,46,3.55,15.0,fr,57260,195,2454241,1,3,Active Shallow Crust,0.0,89.99301,0.0,03/05/9793 +6.52531,46.13268,1812,6,17,2,16,46,3.55,15.0,fr,57261,36,2454241,1,3,Active Shallow Crust,0.0,89.99301,0.0,06/17/1812 +6.52531,46.13268,4381,1,11,19,27,6,3.55,5.0,fr,57262,87,2454246,1,1,Active Shallow Crust,0.0,89.99293,-90.0,01/11/4381 +6.52531,46.13268,8685,3,27,13,17,36,3.55,5.0,fr,57263,173,2454249,1,1,Active Shallow Crust,128.895,89.99651,0.0,03/27/8685 +6.52531,46.13268,9671,12,18,11,43,42,3.65,5.0,fr,57264,193,2454252,1,4,Active Shallow Crust,0.0,89.98754,0.0,12/18/9671 +6.52531,46.13268,6187,1,5,21,44,35,3.65,5.0,fr,57265,123,2454252,1,4,Active Shallow Crust,0.0,89.98754,0.0,01/05/6187 +6.52531,46.13268,226,4,29,22,8,52,3.65,5.0,fr,57266,4,2454252,1,4,Active Shallow Crust,0.0,89.98754,0.0,04/29/0226 +6.52531,46.13268,8588,9,23,17,46,45,3.65,5.0,fr,57267,171,2454252,1,4,Active Shallow Crust,0.0,89.98754,0.0,09/23/8588 +6.52531,46.13268,516,5,23,19,25,34,3.65,15.0,fr,57268,10,2454253,1,1,Active Shallow Crust,0.0,89.98754,0.0,05/23/0516 +6.52531,46.13268,9389,3,25,17,27,25,3.65,5.0,fr,57269,187,2454255,1,1,Active Shallow Crust,240.0017,58.01287,0.0,03/25/9389 +6.52531,46.13268,2601,10,3,13,0,43,3.65,5.0,fr,57270,52,2454261,1,1,Active Shallow Crust,128.8998,89.96352,0.0,10/03/2601 +6.52531,46.13268,8535,7,30,1,3,21,3.75,5.0,fr,57271,170,2454264,1,2,Active Shallow Crust,0.0,89.9889,0.0,07/30/8535 +6.52531,46.13268,7878,6,20,9,21,19,3.75,5.0,fr,57272,157,2454264,1,2,Active Shallow Crust,0.0,89.9889,0.0,06/20/7878 +6.52531,46.13268,5866,11,30,18,55,26,3.75,15.0,fr,57273,117,2454268,1,1,Active Shallow Crust,240.0085,58.01731,0.0,11/30/5866 +6.52531,46.13268,3298,9,3,6,5,22,3.85,5.0,fr,57274,65,2454276,1,2,Active Shallow Crust,0.0,89.9901,0.0,09/03/3298 +6.52531,46.13268,9921,4,29,10,2,40,3.85,5.0,fr,57275,198,2454276,1,2,Active Shallow Crust,0.0,89.9901,0.0,04/29/9921 +6.52531,46.13268,4118,4,12,7,26,59,3.85,15.0,fr,57276,82,2454280,1,1,Active Shallow Crust,240.0103,57.99796,0.0,04/12/4118 +6.52531,46.13268,6880,9,24,7,38,41,3.95,5.0,fr,57277,137,2454288,1,1,Active Shallow Crust,0.0,89.99118,0.0,09/24/6880 +6.52531,46.13268,9453,2,15,3,5,36,3.95,5.0,fr,57278,189,2454297,1,1,Active Shallow Crust,128.9005,89.99559,0.0,02/15/9453 +6.52531,46.13268,7236,10,28,22,26,48,3.95,15.0,fr,57279,144,2454298,1,2,Active Shallow Crust,128.9005,89.99559,0.0,10/28/7236 +6.52531,46.13268,8103,2,9,22,16,22,3.95,15.0,fr,57280,162,2454298,1,2,Active Shallow Crust,128.9005,89.99559,0.0,02/09/8103 +6.52531,46.13268,1792,9,14,11,34,59,4.05,5.0,fr,57281,35,2454300,1,1,Active Shallow Crust,0.0,89.98821,0.0,09/14/1792 +6.52531,46.13268,6751,7,8,5,20,2,4.05,5.0,fr,57282,135,2454309,1,1,Active Shallow Crust,128.8895,89.9941,0.0,07/08/6751 +6.52531,46.13268,2755,5,18,11,17,3,4.15,5.0,fr,57283,55,2454312,1,1,Active Shallow Crust,0.0,89.98949,0.0,05/18/2755 +6.52531,46.13268,689,5,10,16,32,16,4.15,5.0,fr,57284,13,2454318,1,1,Active Shallow Crust,0.0,89.98937,-90.0,05/10/0689 +6.52531,46.13268,9228,9,17,12,9,41,4.25,5.0,fr,57285,184,2454333,1,1,Active Shallow Crust,128.8939,89.98093,0.0,09/17/9228 +6.52531,46.13268,7529,10,15,20,19,31,4.45,5.0,fr,57286,150,2454348,1,1,Active Shallow Crust,0.0,89.99008,0.0,10/15/7529 +6.52531,46.13268,4774,5,29,5,11,51,4.45,5.0,fr,57287,95,2454351,1,1,Active Shallow Crust,240.0046,57.99486,0.0,05/29/4774 +6.52531,46.13268,6153,9,21,1,47,19,4.55,5.0,fr,57288,123,2454366,1,1,Active Shallow Crust,0.0,89.99106,-90.0,09/21/6153 +6.52531,46.13268,6865,8,2,5,31,16,4.75,5.0,fr,57289,137,2454384,1,2,Active Shallow Crust,0.0,89.98946,0.0,08/02/6865 +6.52531,46.13268,2561,6,3,2,54,37,4.75,5.0,fr,57290,51,2454384,1,2,Active Shallow Crust,0.0,89.98946,0.0,06/03/2561 +6.52531,46.13268,2737,5,9,8,48,44,5.95,27.5,fr,57291,54,2454530,1,1,Active Shallow Crust,0.0,89.98985,0.0,05/09/2737 +-0.58455,44.89066,627,5,19,19,22,36,3.65,27.5,fr,57292,12,2454734,1,1,Active Shallow Crust,0.0,89.98965,0.0,05/19/0627 +-0.58455,44.89066,2651,5,17,22,48,5,3.65,5.0,fr,57293,53,2454741,1,1,Active Shallow Crust,128.9007,89.96349,0.0,05/17/2651 +-0.58455,44.89066,4868,1,25,19,46,43,4.35,5.0,fr,57294,97,2454822,1,1,Active Shallow Crust,0.0,89.98993,-90.0,01/25/4868 +-0.88154,48.91163,7181,11,2,0,20,8,3.55,5.0,fr,57295,143,2455200,1,1,Active Shallow Crust,0.0,89.99006,0.0,11/02/7181 +-0.88154,48.91163,5783,5,26,14,26,38,3.55,27.5,fr,57296,115,2455202,1,2,Active Shallow Crust,0.0,89.99006,0.0,05/26/5783 +-0.88154,48.91163,2848,3,6,0,15,33,3.55,27.5,fr,57297,56,2455202,1,2,Active Shallow Crust,0.0,89.99006,0.0,03/06/2848 +-0.88154,48.91163,5174,6,11,12,36,52,3.55,5.0,fr,57298,103,2455206,1,1,Active Shallow Crust,0.0,89.98994,-90.0,06/11/5174 +-0.88154,48.91163,2165,9,29,2,17,30,3.65,5.0,fr,57299,43,2455212,1,1,Active Shallow Crust,0.0,89.98966,0.0,09/29/2165 +-0.88154,48.91163,8817,12,28,0,52,24,3.75,5.0,fr,57300,176,2455224,1,2,Active Shallow Crust,0.0,89.99013,0.0,12/28/8817 +-0.88154,48.91163,6756,3,30,19,5,44,3.75,5.0,fr,57301,135,2455224,1,2,Active Shallow Crust,0.0,89.99013,0.0,03/30/6756 +-0.88154,48.91163,1600,1,11,7,50,56,3.75,5.0,fr,57302,31,2455227,1,1,Active Shallow Crust,240.0087,58.01755,0.0,01/11/1600 +-0.88154,48.91163,3820,8,23,11,48,15,4.05,5.0,fr,57303,76,2455260,1,1,Active Shallow Crust,0.0,89.99022,0.0,08/23/3820 +-0.88154,48.91163,949,12,9,5,46,4,4.15,27.5,fr,57304,18,2455280,1,1,Active Shallow Crust,0.0,89.98992,-90.0,12/09/0949 +-0.88154,48.91163,4543,9,28,21,17,54,4.35,15.0,fr,57305,90,2455300,1,1,Active Shallow Crust,240.009,57.99606,0.0,09/28/4543 +-0.88154,48.91163,7111,10,28,17,37,47,4.45,5.0,fr,57306,142,2455308,1,1,Active Shallow Crust,0.0,89.99001,0.0,10/28/7111 +-0.88154,48.91163,4690,4,16,8,2,23,4.45,15.0,fr,57307,93,2455309,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/16/4690 +-0.88154,48.91163,5773,10,24,23,18,49,4.65,15.0,fr,57308,115,2455333,1,1,Active Shallow Crust,0.0,89.98996,0.0,10/24/5773 +-0.88154,48.91163,4379,5,22,22,32,2,4.75,5.0,fr,57309,87,2455344,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/22/4379 +-0.88154,48.91163,2460,3,20,3,53,23,4.95,5.0,fr,57310,49,2455368,1,1,Active Shallow Crust,359.9999,89.99008,0.0,03/20/2460 +-0.88154,48.91163,8515,8,30,19,10,48,5.85,15.0,fr,57311,170,2455480,1,1,Active Shallow Crust,240.0505,58.00034,0.0,08/30/8515 +0.58842,42.68055,9846,3,20,9,51,50,3.55,5.0,fr,57312,196,2455680,1,2,Active Shallow Crust,0.0,89.98981,0.0,03/20/9846 +0.58842,42.68055,3703,4,30,9,2,27,3.55,5.0,fr,57313,74,2455680,1,2,Active Shallow Crust,0.0,89.98981,0.0,04/30/3703 +0.58842,42.68055,4501,10,14,19,36,17,3.55,5.0,fr,57314,90,2455683,1,1,Active Shallow Crust,240.0118,57.9981,0.0,10/14/4501 +0.58842,42.68055,8654,12,20,12,51,19,3.55,15.0,fr,57315,173,2455684,1,1,Active Shallow Crust,240.0118,57.9981,0.0,12/20/8654 +0.58842,42.68055,1282,7,11,14,42,9,3.65,5.0,fr,57316,25,2455692,1,1,Active Shallow Crust,0.0,89.99009,0.0,07/11/1282 +0.58842,42.68055,9110,2,10,8,17,10,3.65,15.0,fr,57317,182,2455693,1,1,Active Shallow Crust,0.0,89.99009,0.0,02/10/9110 +0.58842,42.68055,7762,1,2,8,40,59,3.65,5.0,fr,57318,155,2455695,1,1,Active Shallow Crust,240.0007,58.01297,0.0,01/02/7762 +0.58842,42.68055,1689,4,7,20,27,51,3.65,15.0,fr,57319,33,2455696,1,1,Active Shallow Crust,240.0007,58.01297,0.0,04/07/1689 +0.58842,42.68055,5602,8,1,8,38,18,3.65,5.0,fr,57320,112,2455698,1,1,Active Shallow Crust,0.0,89.98997,-90.0,08/01/5602 +0.58842,42.68055,2847,1,5,16,35,45,3.65,15.0,fr,57321,56,2455699,1,2,Active Shallow Crust,0.0,89.98997,-90.0,01/05/2847 +0.58842,42.68055,6887,10,15,23,3,56,3.65,15.0,fr,57322,137,2455699,1,2,Active Shallow Crust,0.0,89.98997,-90.0,10/15/6887 +0.58842,42.68055,2706,3,11,3,15,27,3.75,5.0,fr,57323,54,2455704,1,1,Active Shallow Crust,0.0,89.98969,0.0,03/11/2706 +0.58842,42.68055,4305,4,20,4,58,6,3.75,15.0,fr,57324,86,2455705,1,1,Active Shallow Crust,0.0,89.98969,0.0,04/20/4305 +0.58842,42.68055,8715,4,18,12,20,52,3.75,15.0,fr,57325,174,2455708,1,1,Active Shallow Crust,240.008,58.01756,0.0,04/18/8715 +0.58842,42.68055,7032,3,9,23,26,1,3.75,5.0,fr,57326,140,2455713,1,1,Active Shallow Crust,128.897,89.96735,0.0,03/09/7032 +0.58842,42.68055,1531,3,28,13,14,53,3.85,5.0,fr,57327,30,2455716,1,2,Active Shallow Crust,0.0,89.99016,0.0,03/28/1531 +0.58842,42.68055,6826,7,1,7,51,43,3.85,5.0,fr,57328,136,2455716,1,2,Active Shallow Crust,0.0,89.99016,0.0,07/01/6826 +0.58842,42.68055,6509,8,20,16,16,34,3.85,15.0,fr,57329,130,2455717,1,4,Active Shallow Crust,0.0,89.99016,0.0,08/20/6509 +0.58842,42.68055,2164,10,6,9,3,5,3.85,15.0,fr,57330,43,2455717,1,4,Active Shallow Crust,0.0,89.99016,0.0,10/06/2164 +0.58842,42.68055,6135,4,20,20,59,19,3.85,15.0,fr,57331,122,2455717,1,4,Active Shallow Crust,0.0,89.99016,0.0,04/20/6135 +0.58842,42.68055,3745,11,26,17,41,22,3.85,15.0,fr,57332,74,2455717,1,4,Active Shallow Crust,0.0,89.99016,0.0,11/26/3745 +0.58842,42.68055,4888,11,10,13,41,51,3.95,5.0,fr,57333,97,2455728,1,2,Active Shallow Crust,0.0,89.99006,0.0,11/10/4888 +0.58842,42.68055,2240,8,4,7,52,14,3.95,5.0,fr,57334,44,2455728,1,2,Active Shallow Crust,0.0,89.99006,0.0,08/04/2240 +0.58842,42.68055,7783,8,18,7,21,59,3.95,5.0,fr,57335,155,2455734,1,1,Active Shallow Crust,0.0,89.98994,-90.0,08/18/7783 +0.58842,42.68055,5682,6,27,17,22,48,4.05,5.0,fr,57336,113,2455740,1,1,Active Shallow Crust,0.0,89.9901,0.0,06/27/5682 +0.58842,42.68055,1418,1,12,12,17,9,4.15,5.0,fr,57337,28,2455752,1,1,Active Shallow Crust,0.0,89.98978,0.0,01/12/1418 +0.58842,42.68055,952,7,26,15,48,4,4.15,15.0,fr,57338,19,2455753,1,2,Active Shallow Crust,0.0,89.98978,0.0,07/26/0952 +0.58842,42.68055,1377,7,25,19,36,28,4.15,15.0,fr,57339,27,2455753,1,2,Active Shallow Crust,0.0,89.98978,0.0,07/25/1377 +0.58842,42.68055,916,5,9,17,37,41,4.15,27.5,fr,57340,18,2455760,1,1,Active Shallow Crust,0.0,89.99014,-90.0,05/09/0916 +0.58842,42.68055,2977,6,17,3,10,47,4.25,5.0,fr,57341,59,2455764,1,2,Active Shallow Crust,0.0,89.99007,0.0,06/17/2977 +0.58842,42.68055,2664,9,29,3,59,36,4.25,5.0,fr,57342,53,2455764,1,2,Active Shallow Crust,0.0,89.99007,0.0,09/29/2664 +0.58842,42.68055,816,3,17,23,52,42,4.25,27.5,fr,57343,16,2455766,1,2,Active Shallow Crust,0.0,89.99007,0.0,03/17/0816 +0.58842,42.68055,9783,12,14,23,3,38,4.25,27.5,fr,57344,195,2455766,1,2,Active Shallow Crust,0.0,89.99007,0.0,12/14/9783 +0.58842,42.68055,7851,4,24,2,1,0,4.25,27.5,fr,57345,157,2455769,1,1,Active Shallow Crust,240.0068,57.99393,0.0,04/24/7851 +0.58842,42.68055,7221,9,9,12,2,4,4.55,5.0,fr,57346,144,2455806,1,1,Active Shallow Crust,0.0,89.98992,-90.0,09/09/7221 +0.58842,42.68055,181,10,27,18,28,57,4.65,15.0,fr,57347,3,2455813,1,1,Active Shallow Crust,0.0,89.99007,0.0,10/27/0181 +0.58842,42.68055,9381,12,19,6,49,22,4.75,5.0,fr,57348,187,2455833,1,1,Active Shallow Crust,128.8898,89.98808,0.0,12/19/9381 +0.58842,42.68055,7204,2,13,16,25,54,4.95,5.0,fr,57349,144,2455848,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/13/7204 +0.58842,42.68055,1528,9,3,8,45,37,4.95,5.0,fr,57350,30,2455854,1,1,Active Shallow Crust,0.0,89.99009,-90.0,09/03/1528 +0.58842,42.68055,9572,5,18,21,42,21,5.15,5.0,fr,57351,191,2455875,1,1,Active Shallow Crust,240.0175,57.9996,0.0,05/18/9572 +0.58842,42.68055,1931,3,9,21,4,17,5.25,27.5,fr,57352,38,2455886,1,1,Active Shallow Crust,0.0,89.99005,0.0,03/09/1931 +0.7819,50.32401,6710,8,16,22,3,49,3.55,5.0,fr,57353,134,2456166,1,1,Active Shallow Crust,0.0,89.99023,-90.0,08/16/6710 +0.7819,50.32401,524,9,18,15,32,34,3.75,5.0,fr,57354,10,2456184,1,1,Active Shallow Crust,0.0,89.98977,0.0,09/18/0524 +0.7819,50.32401,3550,1,7,23,24,0,3.95,15.0,fr,57355,70,2456209,1,1,Active Shallow Crust,0.0,89.98985,0.0,01/07/3550 +0.7819,50.32401,5632,5,29,7,46,37,3.95,27.5,fr,57356,112,2456213,1,1,Active Shallow Crust,240.0203,58.0051,0.0,05/29/5632 +0.7819,50.32401,3555,9,18,16,42,18,4.45,5.0,fr,57357,71,2456268,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/18/3555 +0.7819,50.32401,4455,11,14,15,30,29,4.85,5.0,fr,57358,89,2456316,1,2,Active Shallow Crust,359.9999,89.99009,0.0,11/14/4455 +0.7819,50.32401,3116,2,10,4,54,7,4.85,5.0,fr,57359,62,2456316,1,2,Active Shallow Crust,359.9999,89.99009,0.0,02/10/3116 +0.7819,50.32401,4692,1,10,2,59,49,5.25,5.0,fr,57360,93,2456364,1,1,Active Shallow Crust,0.0,89.98999,0.0,01/10/4692 +3.80849,49.46141,4389,8,6,2,57,5,3.65,5.0,fr,57361,87,2456652,1,1,Active Shallow Crust,0.0,89.99124,0.0,08/06/4389 +3.80849,49.46141,9546,6,3,13,54,1,3.95,5.0,fr,57362,190,2456688,1,1,Active Shallow Crust,0.0,89.98966,0.0,06/03/9546 +3.80849,49.46141,1263,2,17,19,14,31,4.45,15.0,fr,57363,25,2456758,1,1,Active Shallow Crust,128.8917,89.99361,0.0,02/17/1263 +1.33766,46.65508,7008,3,22,10,0,19,3.55,5.0,fr,57364,140,2457120,1,1,Active Shallow Crust,0.0,89.98962,0.0,03/22/7008 +1.33766,46.65508,3154,5,2,8,20,42,3.65,5.0,fr,57365,63,2457132,1,1,Active Shallow Crust,0.0,89.99075,0.0,05/02/3154 +1.33766,46.65508,2958,1,7,21,3,20,3.65,5.0,fr,57366,59,2457135,1,1,Active Shallow Crust,240.0013,58.01273,0.0,01/07/2958 +1.33766,46.65508,7511,2,12,21,17,7,3.75,27.5,fr,57367,150,2457146,1,1,Active Shallow Crust,0.0,89.99038,0.0,02/12/7511 +1.33766,46.65508,4882,11,25,19,17,23,3.85,5.0,fr,57368,97,2457159,1,1,Active Shallow Crust,240.0108,57.99773,0.0,11/25/4882 +1.33766,46.65508,4618,12,1,10,39,52,3.95,5.0,fr,57369,92,2457168,1,1,Active Shallow Crust,0.0,89.99017,0.0,12/01/4618 +1.33766,46.65508,3875,1,20,19,0,18,4.05,27.5,fr,57370,77,2457182,1,1,Active Shallow Crust,0.0,89.99027,0.0,01/20/3875 +1.33766,46.65508,6515,11,5,13,7,49,4.25,5.0,fr,57371,130,2457204,1,2,Active Shallow Crust,0.0,89.98995,0.0,11/05/6515 +1.33766,46.65508,2118,7,13,1,56,58,4.25,5.0,fr,57372,42,2457204,1,2,Active Shallow Crust,0.0,89.98995,0.0,07/13/2118 +1.33766,46.65508,4872,7,25,18,10,12,4.25,15.0,fr,57373,97,2457205,1,1,Active Shallow Crust,0.0,89.98995,0.0,07/25/4872 +1.33766,46.65508,5258,10,19,9,9,24,4.25,27.5,fr,57374,105,2457206,1,1,Active Shallow Crust,0.0,89.98995,0.0,10/19/5258 +1.33766,46.65508,5452,5,6,12,4,45,4.45,5.0,fr,57375,109,2457228,1,2,Active Shallow Crust,0.0,89.99017,0.0,05/06/5452 +1.33766,46.65508,3462,10,5,18,11,1,4.45,5.0,fr,57376,69,2457228,1,2,Active Shallow Crust,0.0,89.99017,0.0,10/05/3462 +1.33766,46.65508,3840,6,5,19,0,17,4.65,5.0,fr,57377,76,2457252,1,1,Active Shallow Crust,0.0,89.98975,0.0,06/05/3840 +4.15025,50.62538,7487,3,18,7,49,14,3.55,5.0,fr,57378,149,2457600,1,1,Active Shallow Crust,0.0,89.98721,0.0,03/18/7487 +4.15025,50.62538,2695,11,10,20,30,14,3.55,15.0,fr,57379,53,2457601,1,2,Active Shallow Crust,0.0,89.98721,0.0,11/10/2695 +4.15025,50.62538,1027,2,21,21,37,26,3.55,15.0,fr,57380,20,2457601,1,2,Active Shallow Crust,0.0,89.98721,0.0,02/21/1027 +4.15025,50.62538,3210,10,19,21,48,29,3.55,27.5,fr,57381,64,2457602,1,1,Active Shallow Crust,0.0,89.98721,0.0,10/19/3210 +4.15025,50.62538,6671,9,2,15,26,21,3.65,5.0,fr,57382,133,2457612,1,2,Active Shallow Crust,0.0,89.98859,0.0,09/02/6671 +4.15025,50.62538,1181,2,11,16,32,40,3.65,5.0,fr,57383,23,2457612,1,2,Active Shallow Crust,0.0,89.98859,0.0,02/11/1181 +4.15025,50.62538,8411,1,22,7,43,25,3.65,15.0,fr,57384,168,2457613,1,1,Active Shallow Crust,0.0,89.98859,0.0,01/22/8411 +4.15025,50.62538,492,9,30,9,19,10,3.75,5.0,fr,57385,9,2457624,1,1,Active Shallow Crust,0.0,89.98984,0.0,09/30/0492 +4.15025,50.62538,5235,8,1,16,34,30,3.75,15.0,fr,57386,104,2457625,1,3,Active Shallow Crust,0.0,89.98984,0.0,08/01/5235 +4.15025,50.62538,1084,8,6,7,7,39,3.75,15.0,fr,57387,21,2457625,1,3,Active Shallow Crust,0.0,89.98984,0.0,08/06/1084 +4.15025,50.62538,8834,7,14,18,28,26,3.75,15.0,fr,57388,176,2457625,1,3,Active Shallow Crust,0.0,89.98984,0.0,07/14/8834 +4.15025,50.62538,4750,9,24,16,13,30,3.75,5.0,fr,57389,94,2457630,1,1,Active Shallow Crust,0.0,89.98972,-90.0,09/24/4750 +4.15025,50.62538,798,11,3,21,14,3,3.75,27.5,fr,57390,15,2457635,1,1,Active Shallow Crust,128.8964,89.96756,0.0,11/03/0798 +4.15025,50.62538,9400,3,26,5,7,57,3.85,5.0,fr,57391,187,2457636,1,2,Active Shallow Crust,0.0,89.99094,0.0,03/26/9400 +4.15025,50.62538,9681,8,7,17,42,13,3.85,5.0,fr,57392,193,2457636,1,2,Active Shallow Crust,0.0,89.99094,0.0,08/07/9681 +4.15025,50.62538,3412,1,15,4,46,1,3.85,15.0,fr,57393,68,2457637,1,1,Active Shallow Crust,0.0,89.99094,0.0,01/15/3412 +4.15025,50.62538,2571,1,31,14,0,12,3.95,5.0,fr,57394,51,2457651,1,1,Active Shallow Crust,240.0203,58.00504,0.0,01/31/2571 +4.15025,50.62538,3295,11,30,20,42,20,4.05,5.0,fr,57395,65,2457660,1,2,Active Shallow Crust,0.0,89.9892,0.0,11/30/3295 +4.15025,50.62538,9081,6,28,23,35,9,4.05,5.0,fr,57396,181,2457660,1,2,Active Shallow Crust,0.0,89.9892,0.0,06/28/9081 +4.15025,50.62538,8273,12,19,6,37,19,4.05,5.0,fr,57397,165,2457669,1,1,Active Shallow Crust,128.8895,89.99461,0.0,12/19/8273 +4.15025,50.62538,3086,8,29,18,20,1,4.15,5.0,fr,57398,61,2457672,1,2,Active Shallow Crust,0.0,89.99038,0.0,08/29/3086 +4.15025,50.62538,54,8,30,3,29,59,4.15,5.0,fr,57399,1,2457672,1,2,Active Shallow Crust,0.0,89.99038,0.0,08/30/0054 +4.15025,50.62538,1664,10,22,15,6,1,4.15,5.0,fr,57400,33,2457675,1,1,Active Shallow Crust,240.0091,57.99769,0.0,10/22/1664 +4.15025,50.62538,1808,1,7,21,42,49,4.15,15.0,fr,57401,36,2457682,1,1,Active Shallow Crust,128.8976,89.99359,0.0,01/07/1808 +4.15025,50.62538,3427,11,27,22,45,3,4.35,5.0,fr,57402,68,2457696,1,1,Active Shallow Crust,0.0,89.98981,0.0,11/27/3427 +4.15025,50.62538,1865,1,3,4,5,53,4.35,15.0,fr,57403,37,2457697,1,1,Active Shallow Crust,0.0,89.98981,0.0,01/03/1865 +4.15025,50.62538,685,9,11,5,7,56,4.45,5.0,fr,57404,13,2457717,1,1,Active Shallow Crust,128.8913,89.99319,0.0,09/11/0685 +4.15025,50.62538,6363,9,5,7,49,41,4.55,5.0,fr,57405,127,2457720,1,1,Active Shallow Crust,0.0,89.98988,0.0,09/05/6363 +4.15025,50.62538,8983,7,14,13,29,7,4.55,5.0,fr,57406,179,2457723,1,1,Active Shallow Crust,240.0109,57.99755,0.0,07/14/8983 +4.15025,50.62538,8193,1,3,16,55,10,4.65,5.0,fr,57407,163,2457732,1,1,Active Shallow Crust,0.0,89.98918,0.0,01/03/8193 +4.15025,50.62538,3954,10,4,0,47,15,5.05,5.0,fr,57408,79,2457780,1,1,Active Shallow Crust,0.0,89.98976,0.0,10/04/3954 +4.150251,50.62538,936,2,5,11,55,40,6.05,5.357596,fr,57409,18,2457900,1,1,Active Shallow Crust,0.0,89.98991,0.0,02/05/0936 +4.97646,41.54966,1474,8,28,1,38,6,3.55,5.0,fr,57410,29,2458560,1,1,Active Shallow Crust,0.0,89.99245,0.0,08/28/1474 +4.97646,41.54966,5042,8,23,9,21,24,3.65,5.0,fr,57411,100,2458572,1,1,Active Shallow Crust,0.0,89.99327,0.0,08/23/5042 +4.97646,41.54966,4376,11,4,12,14,46,3.75,5.0,fr,57412,87,2458584,1,1,Active Shallow Crust,0.0,89.98801,0.0,11/04/4376 +4.97646,41.54966,2919,5,4,5,0,26,3.75,27.5,fr,57413,58,2458592,1,1,Active Shallow Crust,0.0,89.98787,-90.0,05/04/2919 +4.97646,41.54966,2602,2,2,13,12,41,3.95,15.0,fr,57414,52,2458612,1,1,Active Shallow Crust,240.0188,58.00421,0.0,02/02/2602 +-0.66102,51.16771,6740,3,5,16,55,39,4.05,5.0,fr,57415,134,2459100,1,1,Active Shallow Crust,359.9998,89.99022,0.0,03/05/6740 +5.49386,47.03701,8047,5,3,3,48,26,3.55,27.5,fr,57416,160,2459528,1,1,Active Shallow Crust,0.0,89.99305,-90.0,05/03/8047 +5.49386,47.03701,824,3,14,22,44,46,3.65,15.0,fr,57417,16,2459536,1,1,Active Shallow Crust,240.0017,58.01289,0.0,03/14/0824 +5.49386,47.03701,9717,10,4,17,0,26,3.75,5.0,fr,57418,194,2459544,1,1,Active Shallow Crust,0.0,89.98908,0.0,10/04/9717 +5.49386,47.03701,6874,1,27,20,57,55,3.75,15.0,fr,57419,137,2459545,1,1,Active Shallow Crust,0.0,89.98908,0.0,01/27/6874 +5.49386,47.03701,3518,6,28,4,47,1,3.75,5.0,fr,57420,70,2459547,1,1,Active Shallow Crust,240.0089,58.01734,0.0,06/28/3518 +5.49386,47.03701,8914,5,16,19,45,21,3.75,5.0,fr,57421,178,2459550,1,1,Active Shallow Crust,0.0,89.98895,-90.0,05/16/8914 +5.49386,47.03701,7609,3,24,8,30,37,3.75,5.0,fr,57422,152,2459553,1,1,Active Shallow Crust,128.8969,89.9675,0.0,03/24/7609 +5.49386,47.03701,830,9,4,21,31,34,3.95,5.0,fr,57423,16,2459568,1,1,Active Shallow Crust,0.0,89.99133,0.0,09/04/0830 +5.49386,47.03701,8497,10,6,7,20,14,4.05,5.0,fr,57424,169,2459580,1,1,Active Shallow Crust,0.0,89.9884,0.0,10/06/8497 +5.49386,47.03701,930,8,19,22,8,19,4.55,5.0,fr,57425,18,2459640,1,1,Active Shallow Crust,0.0,89.98914,0.0,08/19/0930 +0.30292,45.10235,6510,7,17,0,59,45,3.85,15.0,fr,57426,130,2460517,1,1,Active Shallow Crust,0.0,89.98992,0.0,07/17/6510 +0.30292,45.10235,5600,12,4,12,42,49,4.05,5.0,fr,57427,111,2460546,1,1,Active Shallow Crust,0.0,89.98988,-90.0,12/04/5600 +5.19704,50.64836,9550,11,22,23,55,8,3.55,5.0,fr,57428,190,2460960,1,1,Active Shallow Crust,0.0,89.98721,0.0,11/22/9550 +5.19704,50.64836,5252,2,25,10,51,8,3.55,5.0,fr,57429,105,2460969,1,1,Active Shallow Crust,128.8962,89.99361,0.0,02/25/5252 +5.19704,50.64836,3100,10,21,3,3,41,3.65,5.0,fr,57430,61,2460972,1,1,Active Shallow Crust,0.0,89.9886,0.0,10/21/3100 +5.19704,50.64836,5272,5,12,22,9,22,3.65,27.5,fr,57431,105,2460974,1,2,Active Shallow Crust,0.0,89.9886,0.0,05/12/5272 +5.19704,50.64836,5027,5,7,16,13,25,3.65,27.5,fr,57432,100,2460974,1,2,Active Shallow Crust,0.0,89.9886,0.0,05/07/5027 +5.19704,50.64836,6079,6,16,3,24,53,3.65,5.0,fr,57433,121,2460975,1,1,Active Shallow Crust,240.0015,58.01283,0.0,06/16/6079 +5.19704,50.64836,8311,6,28,7,54,13,3.75,5.0,fr,57434,166,2460984,1,2,Active Shallow Crust,0.0,89.98985,0.0,06/28/8311 +5.19704,50.64836,6784,3,14,1,11,27,3.75,5.0,fr,57435,135,2460984,1,2,Active Shallow Crust,0.0,89.98985,0.0,03/14/6784 +5.19704,50.64836,5117,11,13,19,27,52,3.75,15.0,fr,57436,102,2460988,1,1,Active Shallow Crust,240.009,58.01759,0.0,11/13/5117 +5.19704,50.64836,1857,4,11,16,42,27,3.75,27.5,fr,57437,37,2460995,1,1,Active Shallow Crust,128.8957,89.96756,0.0,04/11/1857 +5.19704,50.64836,4488,1,11,23,52,30,3.85,27.5,fr,57438,89,2460998,1,1,Active Shallow Crust,0.0,89.99094,0.0,01/11/4488 +5.19704,50.64836,8882,11,1,15,49,5,3.95,5.0,fr,57439,177,2461008,1,2,Active Shallow Crust,0.0,89.99193,0.0,11/01/8882 +5.19704,50.64836,6681,1,8,5,8,53,3.95,5.0,fr,57440,133,2461008,1,2,Active Shallow Crust,0.0,89.99193,0.0,01/08/6681 +5.19704,50.64836,3349,5,13,6,31,36,4.05,15.0,fr,57441,66,2461021,1,1,Active Shallow Crust,0.0,89.98921,0.0,05/13/3349 +5.19704,50.64836,5776,12,4,19,13,19,4.05,27.5,fr,57442,115,2461022,1,1,Active Shallow Crust,0.0,89.98921,0.0,12/04/5776 +5.19704,50.64836,8283,4,24,21,38,21,4.15,5.0,fr,57443,165,2461032,1,1,Active Shallow Crust,0.0,89.99039,0.0,04/24/8283 +5.19704,50.64836,4123,7,25,21,39,22,4.35,27.5,fr,57444,82,2461058,1,1,Active Shallow Crust,0.0,89.98981,0.0,07/25/4123 +5.19704,50.64836,8299,7,19,14,9,27,5.05,5.0,fr,57445,165,2461140,1,1,Active Shallow Crust,0.0,89.98976,0.0,07/19/8299 +5.19704,50.64836,6013,4,20,23,9,45,5.25,15.0,fr,57446,120,2461165,1,1,Active Shallow Crust,0.0,89.99006,0.0,04/20/6013 +-1.24219,45.92099,6249,10,6,12,0,13,3.55,5.0,fr,57447,124,2461440,1,1,Active Shallow Crust,0.0,89.98948,0.0,10/06/6249 +-1.24219,45.92099,7159,2,3,5,44,47,3.55,15.0,fr,57448,143,2461441,1,1,Active Shallow Crust,0.0,89.98948,0.0,02/03/7159 +-1.24219,45.92099,7180,10,9,21,19,11,3.55,5.0,fr,57449,143,2461443,1,2,Active Shallow Crust,240.0117,57.99816,0.0,10/09/7180 +-1.24219,45.92099,2991,4,19,16,17,28,3.55,5.0,fr,57450,59,2461443,1,2,Active Shallow Crust,240.0117,57.99816,0.0,04/19/2991 +-1.24219,45.92099,5819,8,30,0,40,47,3.65,5.0,fr,57451,116,2461452,1,1,Active Shallow Crust,0.0,89.99062,0.0,08/30/5819 +-1.24219,45.92099,1266,2,7,11,34,39,3.65,27.5,fr,57452,25,2461460,1,1,Active Shallow Crust,0.0,89.99052,-90.0,02/07/1266 +-1.24219,45.92099,4118,5,23,0,7,36,3.75,5.0,fr,57453,82,2461464,1,1,Active Shallow Crust,0.0,89.99025,0.0,05/23/4118 +-1.24219,45.92099,9379,7,11,2,11,19,3.75,5.0,fr,57454,187,2461470,1,1,Active Shallow Crust,0.0,89.99014,-90.0,07/11/9379 +-1.24219,45.92099,5795,10,15,12,33,14,3.75,5.0,fr,57455,115,2461473,1,1,Active Shallow Crust,128.8967,89.96735,0.0,10/15/5795 +-1.24219,45.92099,5845,6,15,10,33,56,3.75,27.5,fr,57456,116,2461475,1,1,Active Shallow Crust,128.8967,89.96735,0.0,06/15/5845 +-1.24219,45.92099,2942,9,21,11,32,7,3.85,5.0,fr,57457,58,2461476,1,1,Active Shallow Crust,0.0,89.99007,0.0,09/21/2942 +-1.24219,45.92099,1549,2,22,17,20,35,3.85,5.0,fr,57458,30,2461479,1,1,Active Shallow Crust,240.0108,57.99774,0.0,02/22/1549 +-1.24219,45.92099,4104,4,17,7,21,4,3.95,5.0,fr,57459,82,2461494,1,1,Active Shallow Crust,0.0,89.98993,-90.0,04/17/4104 +-1.24219,45.92099,5914,7,15,15,4,22,4.15,15.0,fr,57460,118,2461516,1,1,Active Shallow Crust,240.0084,57.99719,0.0,07/15/5914 +-1.24219,45.92099,8872,12,12,0,23,59,4.15,27.5,fr,57461,177,2461523,1,1,Active Shallow Crust,128.8977,89.99385,0.0,12/12/8872 +-1.24219,45.92099,8931,8,19,8,49,17,4.25,15.0,fr,57462,178,2461525,1,1,Active Shallow Crust,0.0,89.98981,0.0,08/19/8931 +-1.24219,45.92099,2738,5,3,3,49,43,4.25,27.5,fr,57463,54,2461532,1,1,Active Shallow Crust,0.0,89.9897,-90.0,05/03/2738 +-1.24219,45.92099,7384,5,2,23,22,36,4.95,5.0,fr,57464,147,2461611,1,1,Active Shallow Crust,240.0116,58.00439,0.0,05/02/7384 +-1.24219,45.92099,7717,4,1,3,25,31,5.15,5.0,fr,57465,154,2461635,1,2,Active Shallow Crust,240.0193,57.99993,0.0,04/01/7717 +-1.24219,45.92099,4628,9,25,14,49,22,5.15,5.0,fr,57466,92,2461635,1,2,Active Shallow Crust,240.0193,57.99993,0.0,09/25/4628 +-1.24219,45.92099,6944,12,4,13,52,27,5.35,5.0,fr,57467,138,2461656,1,1,Active Shallow Crust,0.0,89.99006,0.0,12/04/6944 +-1.24219,45.92099,62,10,24,21,46,15,5.85,5.0,fr,57468,1,2461716,1,1,Active Shallow Crust,359.9999,89.99006,0.0,10/24/0062 +1.07928,42.18159,5525,4,7,11,50,12,3.55,5.0,fr,57469,110,2461920,1,1,Active Shallow Crust,0.0,89.99066,0.0,04/07/5525 +1.07928,42.18159,5730,3,29,6,45,8,3.65,5.0,fr,57470,114,2461932,1,2,Active Shallow Crust,0.0,89.99001,0.0,03/29/5730 +1.07928,42.18159,6086,9,12,8,13,11,3.65,5.0,fr,57471,121,2461932,1,2,Active Shallow Crust,0.0,89.99001,0.0,09/12/6086 +1.07928,42.18159,2024,7,22,4,28,1,3.75,5.0,fr,57472,40,2461944,1,4,Active Shallow Crust,0.0,89.98962,0.0,07/22/2024 +1.07928,42.18159,7357,9,17,18,49,31,3.75,5.0,fr,57473,147,2461944,1,4,Active Shallow Crust,0.0,89.98962,0.0,09/17/7357 +1.07928,42.18159,6477,4,3,5,42,27,3.75,5.0,fr,57474,129,2461944,1,4,Active Shallow Crust,0.0,89.98962,0.0,04/03/6477 +1.07928,42.18159,1713,3,21,3,57,38,3.75,5.0,fr,57475,34,2461944,1,4,Active Shallow Crust,0.0,89.98962,0.0,03/21/1713 +1.07928,42.18159,6919,10,29,21,10,34,3.85,5.0,fr,57476,138,2461956,1,1,Active Shallow Crust,0.0,89.98942,0.0,10/29/6919 +1.07928,42.18159,6958,8,17,21,23,0,3.85,27.5,fr,57477,139,2461964,1,1,Active Shallow Crust,0.0,89.99064,-90.0,08/17/6958 +1.07928,42.18159,3305,4,17,5,53,42,4.05,5.0,fr,57478,66,2461980,1,1,Active Shallow Crust,0.0,89.98949,0.0,04/17/3305 +1.07928,42.18159,4075,10,28,10,46,7,4.35,15.0,fr,57479,81,2462017,1,1,Active Shallow Crust,0.0,89.99033,0.0,10/28/4075 +1.07928,42.18159,8246,3,10,2,7,39,4.35,15.0,fr,57480,164,2462023,1,1,Active Shallow Crust,0.0,89.99022,-90.0,03/10/8246 +1.07928,42.18159,271,12,15,13,4,39,4.45,5.0,fr,57481,5,2462028,1,1,Active Shallow Crust,0.0,89.99006,0.0,12/15/0271 +1.07928,42.18159,3880,4,9,4,24,27,4.55,5.0,fr,57482,77,2462040,1,1,Active Shallow Crust,0.0,89.98996,0.0,04/09/3880 +1.07928,42.18159,6485,2,17,17,36,6,4.65,5.0,fr,57483,129,2462052,1,1,Active Shallow Crust,0.0,89.99,0.0,02/17/6485 +1.07928,42.18159,7846,12,4,3,50,19,4.65,15.0,fr,57484,156,2462053,1,1,Active Shallow Crust,0.0,89.99,0.0,12/04/7846 +1.07928,42.18159,119,11,24,5,36,14,5.05,5.0,fr,57485,2,2462100,1,1,Active Shallow Crust,0.0,89.99003,0.0,11/24/0119 +1.07928,42.18159,2920,4,9,22,36,26,5.35,5.0,fr,57486,58,2462136,1,1,Active Shallow Crust,0.0,89.98988,0.0,04/09/2920 +2.04159,44.05136,6962,7,6,17,25,59,3.55,5.0,fr,57487,139,2462400,1,1,Active Shallow Crust,0.0,89.98913,0.0,07/06/6962 +2.04159,44.05136,7157,3,15,1,58,15,3.65,5.0,fr,57488,143,2462415,1,1,Active Shallow Crust,240.0005,58.01286,0.0,03/15/7157 +2.04159,44.05136,2308,1,12,20,31,1,3.65,5.0,fr,57489,46,2462418,1,1,Active Shallow Crust,0.0,89.9902,-90.0,01/12/2308 +2.04159,44.05136,4665,10,24,7,16,50,4.45,5.0,fr,57490,93,2462508,1,2,Active Shallow Crust,0.0,89.98972,0.0,10/24/4665 +2.04159,44.05136,387,8,22,6,47,25,4.45,5.0,fr,57491,7,2462508,1,2,Active Shallow Crust,0.0,89.98972,0.0,08/22/0387 +0.08324,49.50127,3040,6,8,1,0,44,3.55,15.0,fr,57492,60,2462881,1,1,Active Shallow Crust,0.0,89.98997,0.0,06/08/3040 +0.08324,49.50127,2450,3,23,21,57,51,3.65,15.0,fr,57493,48,2462896,1,1,Active Shallow Crust,240.0014,58.01297,0.0,03/23/2450 +0.08324,49.50127,2902,8,9,0,44,18,3.65,5.0,fr,57494,58,2462898,1,1,Active Shallow Crust,0.0,89.99004,-90.0,08/09/2902 +0.08324,49.50127,7681,6,27,10,1,8,3.75,5.0,fr,57495,153,2462904,1,3,Active Shallow Crust,0.0,89.99001,0.0,06/27/7681 +0.08324,49.50127,3545,1,31,1,43,56,3.75,5.0,fr,57496,70,2462904,1,3,Active Shallow Crust,0.0,89.99001,0.0,01/31/3545 +0.08324,49.50127,2997,9,9,1,6,46,3.75,5.0,fr,57497,59,2462904,1,3,Active Shallow Crust,0.0,89.99001,0.0,09/09/2997 +0.08324,49.50127,6658,11,18,11,5,20,3.85,15.0,fr,57498,133,2462917,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/18/6658 +0.08324,49.50127,1637,9,21,11,38,10,3.95,5.0,fr,57499,32,2462928,1,1,Active Shallow Crust,0.0,89.98999,0.0,09/21/1637 +0.08324,49.50127,2633,9,28,21,24,46,4.15,5.0,fr,57500,52,2462961,1,1,Active Shallow Crust,128.8971,89.99372,0.0,09/28/2633 +0.08324,49.50127,2062,12,2,21,8,52,4.25,15.0,fr,57501,41,2462965,1,1,Active Shallow Crust,0.0,89.98999,0.0,12/02/2062 +0.08324,49.50127,3955,6,22,21,57,18,4.35,5.0,fr,57502,79,2462982,1,1,Active Shallow Crust,0.0,89.98998,-90.0,06/22/3955 +0.08324,49.50127,1096,6,20,10,51,5,4.35,15.0,fr,57503,21,2462983,1,1,Active Shallow Crust,0.0,89.98998,-90.0,06/20/1096 +0.08324,49.50127,1262,4,24,0,44,7,4.65,5.0,fr,57504,25,2463015,1,1,Active Shallow Crust,240.0119,57.99442,0.0,04/24/1262 +0.08324,49.50127,2579,8,10,21,20,45,4.85,5.0,fr,57505,51,2463039,1,1,Active Shallow Crust,240.0184,58.00256,0.0,08/10/2579 +0.08324,49.50127,7892,9,4,15,22,6,5.85,5.0,fr,57506,157,2463165,1,1,Active Shallow Crust,128.8639,89.99152,0.0,09/04/7892 +2.81898,51.17038,323,12,6,7,28,31,3.55,5.0,fr,57507,6,2464800,1,1,Active Shallow Crust,0.0,89.99052,0.0,12/06/0323 +2.81898,51.17038,9161,7,12,15,11,9,3.65,5.0,fr,57508,183,2464812,1,2,Active Shallow Crust,0.0,89.98873,0.0,07/12/9161 +2.81898,51.17038,8410,7,30,13,39,58,3.65,5.0,fr,57509,168,2464812,1,2,Active Shallow Crust,0.0,89.98873,0.0,07/30/8410 +2.81898,51.17038,2043,2,13,3,14,8,3.75,5.0,fr,57510,40,2464824,1,1,Active Shallow Crust,0.0,89.98995,0.0,02/13/2043 +2.81898,51.17038,5674,2,17,23,21,39,3.95,27.5,fr,57511,113,2464850,1,1,Active Shallow Crust,0.0,89.99003,0.0,02/17/5674 +1.9474,52.17344,8277,12,20,18,25,34,3.95,5.0,fr,57512,165,2465328,1,1,Active Shallow Crust,0.0,89.99024,0.0,12/20/8277 +-1.65919,50.18765,7293,10,20,21,41,58,3.55,5.0,fr,57513,145,2465763,1,1,Active Shallow Crust,240.0126,57.99829,0.0,10/20/7293 +-1.65919,50.18765,7540,11,6,14,58,17,3.65,5.0,fr,57514,150,2465772,1,1,Active Shallow Crust,0.0,89.98993,0.0,11/06/7540 +5.25925,41.04443,4492,2,15,15,40,4,3.55,15.0,fr,57515,89,2466241,1,1,Active Shallow Crust,0.0,89.99239,0.0,02/15/4492 +5.25925,41.04443,6122,4,8,16,3,37,3.65,15.0,fr,57516,122,2466253,1,1,Active Shallow Crust,0.0,89.99323,0.0,04/08/6122 +5.25925,41.04443,5973,9,29,3,6,6,3.65,27.5,fr,57517,119,2466260,1,1,Active Shallow Crust,0.0,89.99314,-90.0,09/29/5973 +5.25925,41.04443,6614,5,30,1,58,53,4.15,5.0,fr,57518,132,2466312,1,1,Active Shallow Crust,0.0,89.98856,0.0,05/30/6614 +5.25925,41.04443,2473,2,4,12,38,46,4.45,5.0,fr,57519,49,2466348,1,1,Active Shallow Crust,0.0,89.9892,0.0,02/04/2473 +5.25925,41.04443,9791,4,4,9,23,41,4.45,5.0,fr,57520,195,2466357,1,1,Active Shallow Crust,128.8934,89.99326,0.0,04/04/9791 +5.25925,41.04443,8243,7,3,7,4,50,4.65,5.0,fr,57521,164,2466372,1,1,Active Shallow Crust,0.0,89.98928,0.0,07/03/8243 +6.94468,45.52982,8722,5,27,4,30,55,3.55,5.0,fr,57522,174,2466720,1,1,Active Shallow Crust,0.0,89.99294,0.0,05/27/8722 +6.94468,45.52982,9580,11,30,4,17,6,3.65,5.0,fr,57523,191,2466735,1,1,Active Shallow Crust,240.0011,58.0135,0.0,11/30/9580 +6.94468,45.52982,7843,8,27,13,27,55,3.75,5.0,fr,57524,156,2466744,1,1,Active Shallow Crust,0.0,89.98878,0.0,08/27/7843 +6.94468,45.52982,3803,1,29,3,44,28,3.75,5.0,fr,57525,76,2466747,1,1,Active Shallow Crust,240.0079,58.01739,0.0,01/29/3803 +6.94468,45.52982,3151,5,16,5,51,18,3.85,15.0,fr,57526,63,2466766,1,1,Active Shallow Crust,128.896,89.995,0.0,05/16/3151 +6.94468,45.52982,7284,4,8,7,45,2,4.15,5.0,fr,57527,145,2466792,1,1,Active Shallow Crust,0.0,89.98938,0.0,04/08/7284 +6.94468,45.52982,2687,3,6,15,46,43,4.25,5.0,fr,57528,53,2466810,1,1,Active Shallow Crust,0.0,89.99043,-90.0,03/06/2687 +6.94468,45.52982,1852,7,20,9,34,3,4.65,5.0,fr,57529,37,2466852,1,1,Active Shallow Crust,0.0,89.99004,0.0,07/20/1852 +1.89053,44.81756,8044,10,13,2,44,32,3.55,5.0,fr,57530,160,2467200,1,1,Active Shallow Crust,0.0,89.98927,0.0,10/13/8044 +1.89053,44.81756,7375,11,30,20,16,42,3.55,15.0,fr,57531,147,2467201,1,1,Active Shallow Crust,0.0,89.98927,0.0,11/30/7375 +1.89053,44.81756,3424,1,16,9,18,35,3.55,5.0,fr,57532,68,2467206,1,1,Active Shallow Crust,0.0,89.98914,-90.0,01/16/3424 +1.89053,44.81756,5536,6,21,13,39,25,3.65,5.0,fr,57533,110,2467212,1,1,Active Shallow Crust,0.0,89.99044,0.0,06/21/5536 +1.89053,44.81756,481,8,18,15,42,30,3.65,15.0,fr,57534,9,2467213,1,1,Active Shallow Crust,0.0,89.99044,0.0,08/18/0481 +1.89053,44.81756,1671,2,9,11,24,15,3.95,5.0,fr,57535,33,2467251,1,1,Active Shallow Crust,240.0194,58.00504,0.0,02/09/1671 +1.89053,44.81756,143,6,24,14,44,50,4.05,5.0,fr,57536,2,2467260,1,1,Active Shallow Crust,0.0,89.98994,0.0,06/24/0143 +1.89053,44.81756,7464,11,2,13,3,40,4.25,5.0,fr,57537,149,2467293,1,1,Active Shallow Crust,128.8945,89.98101,0.0,11/02/7464 +1.89053,44.81756,5519,1,24,5,32,30,4.25,15.0,fr,57538,110,2467294,1,1,Active Shallow Crust,128.8945,89.98101,0.0,01/24/5519 +1.89053,44.81756,1628,6,6,3,33,41,4.35,27.5,fr,57539,32,2467298,1,1,Active Shallow Crust,0.0,89.99004,0.0,06/06/1628 +1.89053,44.81756,5375,6,30,2,30,26,6.05,27.5,fr,57540,107,2467508,1,1,Active Shallow Crust,0.0,89.99002,-90.0,06/30/5375 +0.36236,52.12262,4130,5,14,12,26,55,3.75,5.0,fr,57541,82,2467704,1,1,Active Shallow Crust,0.0,89.98985,0.0,05/14/4130 +0.36236,52.12262,2997,7,17,16,30,48,3.85,5.0,fr,57542,59,2467716,1,1,Active Shallow Crust,0.0,89.98986,0.0,07/17/2997 +0.36236,52.12262,7509,5,26,19,46,13,5.05,27.5,fr,57543,150,2467862,1,1,Active Shallow Crust,0.0,89.99002,0.0,05/26/7509 +0.36236,52.12262,4121,8,15,15,24,14,5.15,15.0,fr,57544,82,2467873,1,1,Active Shallow Crust,0.0,89.99,0.0,08/15/4121 +1.82103,45.75064,9307,2,20,2,24,17,3.55,5.0,fr,57545,186,2468160,1,2,Active Shallow Crust,0.0,89.98945,0.0,02/20/9307 +1.82103,45.75064,991,6,5,4,19,54,3.55,5.0,fr,57546,19,2468160,1,2,Active Shallow Crust,0.0,89.98945,0.0,06/05/0991 +1.82103,45.75064,7528,5,2,17,54,43,3.55,15.0,fr,57547,150,2468167,1,1,Active Shallow Crust,0.0,89.98933,-90.0,05/02/7528 +1.82103,45.75064,1571,10,26,19,42,53,3.65,5.0,fr,57548,31,2468172,1,2,Active Shallow Crust,0.0,89.99059,0.0,10/26/1571 +1.82103,45.75064,5966,2,12,11,22,49,3.65,5.0,fr,57549,119,2468172,1,2,Active Shallow Crust,0.0,89.99059,0.0,02/12/5966 +1.82103,45.75064,6624,11,5,16,10,20,3.65,15.0,fr,57550,132,2468176,1,1,Active Shallow Crust,240.0011,58.01257,0.0,11/05/6624 +1.82103,45.75064,4017,7,1,1,3,46,3.85,15.0,fr,57551,80,2468203,1,1,Active Shallow Crust,0.0,89.98992,-90.0,07/01/4017 +1.82103,45.75064,6001,4,2,23,58,10,4.05,5.0,fr,57552,120,2468220,1,1,Active Shallow Crust,0.0,89.9901,0.0,04/02/6001 +1.82103,45.75064,6608,6,1,7,2,2,4.05,15.0,fr,57553,132,2468221,1,1,Active Shallow Crust,0.0,89.9901,0.0,06/01/6608 +1.82103,45.75064,2367,5,11,11,2,0,4.15,5.0,fr,57554,47,2468232,1,1,Active Shallow Crust,0.0,89.9903,0.0,05/11/2367 +1.82103,45.75064,5947,4,30,2,32,37,4.15,5.0,fr,57555,118,2468235,1,1,Active Shallow Crust,240.0081,57.99743,0.0,04/30/5947 +1.82103,45.75064,3817,2,2,2,4,46,4.35,5.0,fr,57556,76,2468256,1,1,Active Shallow Crust,0.0,89.9902,0.0,02/02/3817 +1.82103,45.75064,4099,7,29,14,36,8,6.35,15.0,fr,57557,81,2468506,1,1,Active Shallow Crust,128.8452,89.99103,0.0,07/29/4099 +2.52599,48.69844,249,5,27,13,22,51,3.75,5.0,fr,57558,4,2468664,1,1,Active Shallow Crust,0.0,89.98943,0.0,05/27/0249 +2.52599,48.69844,7955,3,11,12,2,27,4.65,5.0,fr,57559,159,2468775,1,1,Active Shallow Crust,240.0116,57.99434,0.0,03/11/7955 +-5.56968,49.72433,5673,6,2,14,36,1,3.75,5.0,fr,57560,113,2469144,1,1,Active Shallow Crust,0.0,89.98965,0.0,06/02/5673 +-1.97605,42.40792,4004,8,7,6,12,33,3.55,5.0,fr,57561,80,2469600,1,3,Active Shallow Crust,0.0,89.99069,0.0,08/07/4004 +-1.97605,42.40792,8831,11,7,2,31,28,3.55,5.0,fr,57562,176,2469600,1,3,Active Shallow Crust,0.0,89.99069,0.0,11/07/8831 +-1.97605,42.40792,8847,10,7,23,8,58,3.55,5.0,fr,57563,176,2469600,1,3,Active Shallow Crust,0.0,89.99069,0.0,10/07/8847 +-1.97605,42.40792,7541,10,2,1,4,9,3.65,15.0,fr,57564,150,2469613,1,1,Active Shallow Crust,0.0,89.99004,0.0,10/02/7541 +-1.97605,42.40792,3454,12,30,4,37,30,3.75,5.0,fr,57565,69,2469624,1,1,Active Shallow Crust,0.0,89.98965,0.0,12/30/3454 +-1.97605,42.40792,8605,2,16,3,47,36,3.75,15.0,fr,57566,172,2469631,1,1,Active Shallow Crust,0.0,89.98953,-90.0,02/16/8605 +-1.97605,42.40792,7292,11,3,3,51,7,3.75,15.0,fr,57567,145,2469634,1,1,Active Shallow Crust,128.8972,89.96728,0.0,11/03/7292 +-1.97605,42.40792,2923,10,31,1,31,55,3.85,15.0,fr,57568,58,2469637,1,1,Active Shallow Crust,0.0,89.98946,0.0,10/31/2923 +-1.97605,42.40792,6003,12,2,10,31,57,4.05,5.0,fr,57569,120,2469660,1,1,Active Shallow Crust,0.0,89.98953,0.0,12/02/6003 +-1.97605,42.40792,9219,4,30,16,22,33,4.35,5.0,fr,57570,184,2469705,1,1,Active Shallow Crust,128.8986,89.98275,0.0,04/30/9219 +-5.55065,49.31868,5055,3,5,11,11,3,3.55,5.0,fr,57571,101,2470080,1,1,Active Shallow Crust,0.0,89.98685,0.0,03/05/5055 +-5.55065,49.31868,1366,7,29,20,59,19,3.95,5.0,fr,57572,27,2470128,1,1,Active Shallow Crust,0.0,89.99171,0.0,07/29/1366 +-5.55065,49.31868,4681,10,3,18,20,24,5.45,5.0,fr,57573,93,2470308,1,1,Active Shallow Crust,0.0,89.98967,0.0,10/03/4681 +-0.8532,47.44121,5247,8,26,12,35,31,3.55,5.0,fr,57574,104,2470560,1,1,Active Shallow Crust,0.0,89.98977,0.0,08/26/5247 +-0.8532,47.44121,1253,8,6,18,26,54,3.55,15.0,fr,57575,25,2470561,1,1,Active Shallow Crust,0.0,89.98977,0.0,08/06/1253 +-0.8532,47.44121,1134,4,22,19,47,13,3.55,15.0,fr,57576,22,2470567,1,1,Active Shallow Crust,0.0,89.98965,-90.0,04/22/1134 +-0.8532,47.44121,4121,10,27,20,23,58,3.65,5.0,fr,57577,82,2470572,1,4,Active Shallow Crust,0.0,89.99012,0.0,10/27/4121 +-0.8532,47.44121,2564,2,5,23,19,35,3.65,5.0,fr,57578,51,2470572,1,4,Active Shallow Crust,0.0,89.99012,0.0,02/05/2564 +-0.8532,47.44121,5109,6,18,4,55,2,3.65,5.0,fr,57579,102,2470572,1,4,Active Shallow Crust,0.0,89.99012,0.0,06/18/5109 +-0.8532,47.44121,814,3,30,7,40,0,3.65,5.0,fr,57580,16,2470572,1,4,Active Shallow Crust,0.0,89.99012,0.0,03/30/0814 +-0.8532,47.44121,6271,8,8,1,50,53,3.65,27.5,fr,57581,125,2470574,1,1,Active Shallow Crust,0.0,89.99012,0.0,08/08/6271 +-0.8532,47.44121,332,3,13,10,13,15,3.65,15.0,fr,57582,6,2470576,1,1,Active Shallow Crust,240.0012,58.013,0.0,03/13/0332 +-0.8532,47.44121,7514,2,22,19,52,20,3.65,15.0,fr,57583,150,2470582,1,1,Active Shallow Crust,128.9004,89.96348,0.0,02/22/7514 +-0.8532,47.44121,4342,9,2,23,55,6,3.75,5.0,fr,57584,86,2470584,1,3,Active Shallow Crust,0.0,89.98985,0.0,09/02/4342 +-0.8532,47.44121,8831,9,28,15,48,0,3.75,5.0,fr,57585,176,2470584,1,3,Active Shallow Crust,0.0,89.98985,0.0,09/28/8831 +-0.8532,47.44121,9775,9,13,1,12,14,3.75,5.0,fr,57586,195,2470584,1,3,Active Shallow Crust,0.0,89.98985,0.0,09/13/9775 +-0.8532,47.44121,4320,3,17,16,14,23,3.75,27.5,fr,57587,86,2470586,1,1,Active Shallow Crust,0.0,89.98985,0.0,03/17/4320 +-0.8532,47.44121,5272,2,6,22,54,56,3.75,5.0,fr,57588,105,2470587,1,1,Active Shallow Crust,240.0085,58.01759,0.0,02/06/5272 +-0.8532,47.44121,9811,4,30,16,9,15,3.75,5.0,fr,57589,196,2470590,1,1,Active Shallow Crust,0.0,89.98972,-90.0,04/30/9811 +-0.8532,47.44121,1193,2,2,10,6,21,3.85,15.0,fr,57590,23,2470597,1,1,Active Shallow Crust,0.0,89.98974,0.0,02/02/1193 +-0.8532,47.44121,4641,8,20,23,14,22,3.85,5.0,fr,57591,92,2470599,1,1,Active Shallow Crust,240.0109,57.99774,0.0,08/20/4641 +-0.8532,47.44121,4151,10,12,22,5,28,3.95,5.0,fr,57592,83,2470614,1,1,Active Shallow Crust,0.0,89.9902,-90.0,10/12/4151 +-0.8532,47.44121,9095,1,16,9,34,46,4.15,5.0,fr,57593,181,2470632,1,2,Active Shallow Crust,0.0,89.99017,0.0,01/16/9095 +-0.8532,47.44121,5851,2,4,19,18,42,4.15,5.0,fr,57594,117,2470632,1,2,Active Shallow Crust,0.0,89.99017,0.0,02/04/5851 +-0.8532,47.44121,2663,6,16,14,11,8,4.25,5.0,fr,57595,53,2470647,1,2,Active Shallow Crust,240.0078,57.99405,0.0,06/16/2663 +-0.8532,47.44121,8156,9,13,12,52,36,4.25,5.0,fr,57596,163,2470647,1,2,Active Shallow Crust,240.0078,57.99405,0.0,09/13/8156 +-0.8532,47.44121,2998,10,14,19,31,56,4.35,5.0,fr,57597,59,2470656,1,1,Active Shallow Crust,0.0,89.99016,0.0,10/14/2998 +-0.8532,47.44121,6038,12,9,7,11,59,4.35,5.0,fr,57598,120,2470665,1,1,Active Shallow Crust,128.8977,89.98276,0.0,12/09/6038 +-0.8532,47.44121,3689,5,12,10,23,8,4.35,15.0,fr,57599,73,2470666,1,1,Active Shallow Crust,128.8977,89.98276,0.0,05/12/3689 +-0.8532,47.44121,8487,5,14,19,34,55,4.55,5.0,fr,57600,169,2470680,1,1,Active Shallow Crust,0.0,89.99002,0.0,05/14/8487 +-0.8532,47.44121,2933,3,11,13,41,21,4.75,15.0,fr,57601,58,2470714,1,1,Active Shallow Crust,128.8884,89.98806,0.0,03/11/2933 +-0.8532,47.44121,5353,8,26,10,48,24,5.15,5.0,fr,57602,107,2470755,1,1,Active Shallow Crust,240.0202,58.00006,0.0,08/26/5353 +-0.8532,47.44121,377,12,10,10,1,58,5.95,5.0,fr,57603,7,2470848,1,1,Active Shallow Crust,0.0,89.98999,0.0,12/10/0377 +8.31597,45.15683,5059,6,30,8,6,31,3.55,5.0,fr,57604,101,2471040,1,2,Active Shallow Crust,0.0,89.98578,0.0,06/30/5059 +8.31597,45.15683,440,10,7,3,27,56,3.55,5.0,fr,57605,8,2471040,1,2,Active Shallow Crust,0.0,89.98578,0.0,10/07/0440 +8.31597,45.15683,252,12,25,5,12,38,3.65,5.0,fr,57606,5,2471055,1,2,Active Shallow Crust,240.0019,58.01126,0.0,12/25/0252 +8.31597,45.15683,1230,2,6,12,44,24,3.65,5.0,fr,57607,24,2471055,1,2,Active Shallow Crust,240.0019,58.01126,0.0,02/06/1230 +8.31597,45.15683,5221,12,17,12,15,58,3.75,5.0,fr,57608,104,2471064,1,1,Active Shallow Crust,0.0,89.9887,0.0,12/17/5221 +8.31597,45.15683,7377,12,13,22,34,36,3.75,15.0,fr,57609,147,2471068,1,1,Active Shallow Crust,240.0108,58.01675,0.0,12/13/7377 +8.31597,45.15683,2701,5,27,14,48,30,3.75,15.0,fr,57610,54,2471074,1,1,Active Shallow Crust,128.8958,89.96747,0.0,05/27/2701 +8.31597,45.15683,8068,4,15,10,13,57,3.95,5.0,fr,57611,161,2471088,1,1,Active Shallow Crust,0.0,89.99103,0.0,04/15/8068 +8.31597,45.15683,559,11,26,22,49,47,4.25,5.0,fr,57612,11,2471124,1,1,Active Shallow Crust,0.0,89.9873,0.0,11/26/0559 +8.31597,45.15683,6053,10,28,20,13,23,4.75,27.5,fr,57613,121,2471186,1,1,Active Shallow Crust,0.0,89.98928,0.0,10/28/6053 +8.31597,45.15683,5158,9,24,6,0,10,5.25,5.0,fr,57614,103,2471244,1,1,Active Shallow Crust,0.0,89.98995,0.0,09/24/5158 +8.31597,45.15683,1307,4,4,23,10,40,5.35,15.0,fr,57615,26,2471257,1,1,Active Shallow Crust,0.0,89.98926,0.0,04/04/1307 +9.08325,49.86269,8037,8,26,10,9,55,3.55,5.0,fr,57616,160,2471520,1,1,Active Shallow Crust,0.0,89.987,0.0,08/26/8037 +9.08325,49.86269,8718,1,24,12,39,22,3.55,5.0,fr,57617,174,2471529,1,1,Active Shallow Crust,128.896,89.9935,0.0,01/24/8718 +9.08325,49.86269,7966,5,3,15,13,22,3.65,5.0,fr,57618,159,2471532,1,1,Active Shallow Crust,0.0,89.98841,0.0,05/03/7966 +9.08325,49.86269,1606,9,11,9,37,2,3.75,5.0,fr,57619,32,2471544,1,1,Active Shallow Crust,0.0,89.98967,0.0,09/11/1606 +9.08325,49.86269,2532,3,22,19,32,50,3.75,15.0,fr,57620,50,2471545,1,1,Active Shallow Crust,0.0,89.98967,0.0,03/22/2532 +9.08325,49.86269,9108,11,20,3,28,27,3.85,5.0,fr,57621,182,2471556,1,1,Active Shallow Crust,0.0,89.9908,0.0,11/20/9108 +9.08325,49.86269,2879,6,26,17,50,9,3.85,5.0,fr,57622,57,2471565,1,1,Active Shallow Crust,128.8954,89.9954,0.0,06/26/2879 +9.08325,49.86269,4501,11,20,17,7,40,3.95,5.0,fr,57623,90,2471574,1,1,Active Shallow Crust,0.0,89.9917,-90.0,11/20/4501 +9.08325,49.86269,9746,10,29,13,32,57,4.15,5.0,fr,57624,194,2471592,1,1,Active Shallow Crust,0.0,89.98697,0.0,10/29/9746 +9.08325,49.86269,1384,6,2,11,2,12,5.15,27.5,fr,57625,27,2471714,1,1,Active Shallow Crust,0.0,89.98969,0.0,06/02/1384 +9.08325,49.86269,6624,11,11,7,8,33,5.35,5.0,fr,57626,132,2471736,1,1,Active Shallow Crust,0.0,89.99017,0.0,11/11/6624 +3.55697,42.02514,549,6,4,10,12,9,3.55,5.0,fr,57627,10,2472003,1,1,Active Shallow Crust,240.0117,57.9985,0.0,06/04/0549 +3.55697,42.02514,10000,4,17,8,5,12,3.65,15.0,fr,57628,199,2472013,1,1,Active Shallow Crust,0.0,89.98998,0.0,04/17/10000 +3.55697,42.02514,2250,7,17,18,57,6,3.75,5.0,fr,57629,44,2472024,1,1,Active Shallow Crust,0.0,89.99107,0.0,07/17/2250 +3.55697,42.02514,670,3,21,15,35,51,3.75,15.0,fr,57630,13,2472025,1,1,Active Shallow Crust,0.0,89.99107,0.0,03/21/0670 +3.55697,42.02514,6570,6,17,16,58,38,3.95,5.0,fr,57631,131,2472048,1,1,Active Shallow Crust,0.0,89.99055,0.0,06/17/6570 +3.55697,42.02514,3370,10,13,9,37,27,4.45,5.0,fr,57632,67,2472117,1,1,Active Shallow Crust,128.8932,89.99402,0.0,10/13/3370 +3.55697,42.02514,5014,5,13,1,4,12,4.65,5.0,fr,57633,100,2472132,1,1,Active Shallow Crust,0.0,89.9905,0.0,05/13/5014 +-0.95794,48.77314,297,3,19,23,5,31,3.55,5.0,fr,57634,5,2472480,1,1,Active Shallow Crust,0.0,89.99003,0.0,03/19/0297 +-0.95794,48.77314,5257,2,3,18,14,53,3.55,5.0,fr,57635,105,2472483,1,1,Active Shallow Crust,240.0123,57.99824,0.0,02/03/5257 +-0.95794,48.77314,7932,12,10,12,30,52,3.55,5.0,fr,57636,158,2472486,1,1,Active Shallow Crust,0.0,89.98991,-90.0,12/10/7932 +-0.95794,48.77314,8728,1,16,17,35,3,3.55,15.0,fr,57637,174,2472487,1,1,Active Shallow Crust,0.0,89.98991,-90.0,01/16/8728 +-0.95794,48.77314,3376,8,20,3,56,4,3.65,5.0,fr,57638,67,2472492,1,2,Active Shallow Crust,0.0,89.98963,0.0,08/20/3376 +-0.95794,48.77314,5817,1,31,4,32,18,3.65,5.0,fr,57639,116,2472492,1,2,Active Shallow Crust,0.0,89.98963,0.0,01/31/5817 +-0.95794,48.77314,312,5,31,17,6,32,3.65,15.0,fr,57640,6,2472493,1,2,Active Shallow Crust,0.0,89.98963,0.0,05/31/0312 +-0.95794,48.77314,8423,5,30,15,18,36,3.65,15.0,fr,57641,168,2472493,1,2,Active Shallow Crust,0.0,89.98963,0.0,05/30/8423 +-0.95794,48.77314,8605,1,1,2,54,42,3.65,27.5,fr,57642,172,2472497,1,1,Active Shallow Crust,240.0015,58.01279,0.0,01/01/8605 +-0.95794,48.77314,6868,9,28,5,53,2,3.75,5.0,fr,57643,137,2472504,1,1,Active Shallow Crust,0.0,89.9901,0.0,09/28/6868 +-0.95794,48.77314,287,5,23,0,1,59,3.75,5.0,fr,57644,5,2472513,1,1,Active Shallow Crust,128.8963,89.96735,0.0,05/23/0287 +-0.95794,48.77314,723,9,20,15,33,27,3.85,5.0,fr,57645,14,2472525,1,1,Active Shallow Crust,128.8954,89.99383,0.0,09/20/0723 +-0.95794,48.77314,2461,11,23,11,56,30,4.05,5.0,fr,57646,49,2472543,1,1,Active Shallow Crust,240.0064,58.0059,0.0,11/23/2461 +-0.95794,48.77314,7971,6,5,1,47,11,4.35,27.5,fr,57647,159,2472587,1,1,Active Shallow Crust,128.8973,89.98276,0.0,06/05/7971 +-0.95794,48.77314,5420,7,1,22,52,24,4.45,27.5,fr,57648,108,2472596,1,1,Active Shallow Crust,0.0,89.98986,-90.0,07/01/5420 +-0.95794,48.77314,1790,7,16,1,50,37,4.55,5.0,fr,57649,35,2472600,1,2,Active Shallow Crust,0.0,89.99001,0.0,07/16/1790 +-0.95794,48.77314,4290,2,11,4,35,33,4.55,5.0,fr,57650,85,2472600,1,2,Active Shallow Crust,0.0,89.99001,0.0,02/11/4290 +-0.95794,48.77314,7461,5,4,19,34,27,5.45,5.0,fr,57651,149,2472708,1,1,Active Shallow Crust,0.0,89.99002,0.0,05/04/7461 +3.23005,40.3552,7467,2,5,0,36,30,3.55,5.0,fr,57652,149,2472960,1,1,Active Shallow Crust,0.0,89.98847,0.0,02/05/7467 +3.23005,40.3552,4880,4,16,4,35,15,3.65,15.0,fr,57653,97,2472973,1,1,Active Shallow Crust,0.0,89.98972,0.0,04/16/4880 +3.23005,40.3552,2536,12,27,3,4,14,4.15,15.0,fr,57654,50,2473033,1,1,Active Shallow Crust,0.0,89.99037,0.0,12/27/2536 +3.23005,40.3552,8063,3,29,23,25,43,4.25,5.0,fr,57655,161,2473044,1,1,Active Shallow Crust,0.0,89.9897,0.0,03/29/8063 +1.993,48.14982,5036,12,12,1,20,5,3.55,5.0,fr,57656,100,2473440,1,1,Active Shallow Crust,0.0,89.98991,0.0,12/12/5036 +1.993,48.14982,6689,11,30,14,52,40,3.65,5.0,fr,57657,133,2473452,1,1,Active Shallow Crust,0.0,89.98951,0.0,11/30/6689 +1.993,48.14982,5862,6,12,4,24,45,4.75,15.0,fr,57658,117,2473588,1,1,Active Shallow Crust,240.0082,58.00455,0.0,06/12/5862 +-5.89207,48.59876,1596,11,4,13,44,1,3.75,15.0,fr,57659,31,2473945,1,1,Active Shallow Crust,0.0,89.9894,0.0,11/04/1596 +3.01855,52.44951,2400,5,23,8,48,41,3.55,15.0,fr,57660,47,2474401,1,1,Active Shallow Crust,0.0,89.99078,0.0,05/23/2400 +3.01855,52.44951,693,1,17,8,24,47,3.55,27.5,fr,57661,13,2474402,1,1,Active Shallow Crust,0.0,89.99078,0.0,01/17/0693 +3.01855,52.44951,7195,2,9,10,11,0,4.75,15.0,fr,57662,143,2474545,1,1,Active Shallow Crust,0.0,89.98997,0.0,02/09/7195 +5.33637,51.15736,5736,7,6,18,37,49,3.55,5.0,fr,57663,114,2474880,1,1,Active Shallow Crust,0.0,89.98735,0.0,07/06/5736 +5.33637,51.15736,1913,9,28,9,45,52,3.55,27.5,fr,57664,38,2474885,1,1,Active Shallow Crust,240.013,57.99775,0.0,09/28/1913 +5.33637,51.15736,1159,1,8,19,5,37,3.65,15.0,fr,57665,23,2474893,1,1,Active Shallow Crust,0.0,89.98872,0.0,01/08/1159 +5.33637,51.15736,4768,4,8,9,6,25,3.65,5.0,fr,57666,95,2474895,1,1,Active Shallow Crust,240.0024,58.01231,0.0,04/08/4768 +5.33637,51.15736,1241,11,25,16,7,41,3.75,5.0,fr,57667,24,2474904,1,1,Active Shallow Crust,0.0,89.98995,0.0,11/25/1241 +5.33637,51.15736,6921,3,21,17,29,33,3.75,15.0,fr,57668,138,2474905,1,1,Active Shallow Crust,0.0,89.98995,0.0,03/21/6921 +5.33637,51.15736,4109,12,8,21,19,18,3.85,5.0,fr,57669,82,2474925,1,1,Active Shallow Crust,128.895,89.99552,0.0,12/08/4109 +5.33637,51.15736,6328,12,8,14,58,17,3.95,5.0,fr,57670,126,2474928,1,1,Active Shallow Crust,0.0,89.98803,0.0,12/08/6328 +5.33637,51.15736,4431,11,29,14,40,33,4.15,5.0,fr,57671,88,2474952,1,1,Active Shallow Crust,0.0,89.99049,0.0,11/29/4431 +5.33637,51.15736,5048,5,15,5,49,11,4.15,27.5,fr,57672,100,2474954,1,1,Active Shallow Crust,0.0,89.99049,0.0,05/15/5048 +5.33637,51.15736,123,5,14,14,12,59,4.15,15.0,fr,57673,2,2474959,1,1,Active Shallow Crust,0.0,89.99038,-90.0,05/14/0123 +5.33637,51.15736,6052,12,6,12,15,17,4.75,5.0,fr,57674,121,2475030,1,1,Active Shallow Crust,0.0,89.99036,-90.0,12/06/6052 +5.33637,51.15736,5732,10,10,0,23,4,4.85,5.0,fr,57675,114,2475039,1,1,Active Shallow Crust,240.0191,58.00288,0.0,10/10/5732 +0.70383,41.05163,2566,10,27,4,16,23,3.55,27.5,fr,57676,51,2475362,1,1,Active Shallow Crust,0.0,89.98955,0.0,10/27/2566 +0.70383,41.05163,9872,11,8,14,55,46,3.55,5.0,fr,57677,197,2475369,1,1,Active Shallow Crust,128.8967,89.99382,0.0,11/08/9872 +0.70383,41.05163,9594,2,21,3,12,49,3.65,5.0,fr,57678,191,2475372,1,2,Active Shallow Crust,0.0,89.98983,0.0,02/21/9594 +0.70383,41.05163,5072,5,27,5,35,14,3.65,5.0,fr,57679,101,2475372,1,2,Active Shallow Crust,0.0,89.98983,0.0,05/27/5072 +0.70383,41.05163,7213,4,10,11,19,0,3.95,15.0,fr,57680,144,2475412,1,1,Active Shallow Crust,240.0191,58.00483,0.0,04/10/7213 +0.70383,41.05163,3384,1,8,13,11,33,4.05,5.0,fr,57681,67,2475420,1,1,Active Shallow Crust,0.0,89.98985,0.0,01/08/3384 +0.70383,41.05163,2049,12,26,19,20,24,4.15,15.0,fr,57682,40,2475436,1,1,Active Shallow Crust,240.0076,57.9971,0.0,12/26/2049 +6.86382,47.5946,8245,1,30,15,37,57,3.55,5.0,fr,57683,164,2475840,1,1,Active Shallow Crust,0.0,89.9932,0.0,01/30/8245 +6.86382,47.5946,5470,1,3,7,36,52,3.55,5.0,fr,57684,109,2475843,1,1,Active Shallow Crust,240.0126,57.9979,0.0,01/03/5470 +6.86382,47.5946,3106,8,4,23,20,2,3.65,5.0,fr,57685,62,2475852,1,2,Active Shallow Crust,0.0,89.98788,0.0,08/04/3106 +6.86382,47.5946,1810,3,11,10,20,9,3.65,5.0,fr,57686,36,2475852,1,2,Active Shallow Crust,0.0,89.98788,0.0,03/11/1810 +6.86382,47.5946,5651,9,13,22,59,46,3.65,27.5,fr,57687,113,2475854,1,1,Active Shallow Crust,0.0,89.98788,0.0,09/13/5651 +6.86382,47.5946,17,10,3,1,34,37,3.75,5.0,fr,57688,0,2475864,1,1,Active Shallow Crust,0.0,89.9892,0.0,10/03/0017 +6.86382,47.5946,6774,2,21,23,32,23,3.75,15.0,fr,57689,135,2475865,1,2,Active Shallow Crust,0.0,89.9892,0.0,02/21/6774 +6.86382,47.5946,7008,9,21,17,5,46,3.75,15.0,fr,57690,140,2475865,1,2,Active Shallow Crust,0.0,89.9892,0.0,09/21/7008 +6.86382,47.5946,2704,11,5,0,48,21,3.75,5.0,fr,57691,54,2475867,1,1,Active Shallow Crust,240.0078,58.01735,0.0,11/05/2704 +6.86382,47.5946,5174,9,12,13,4,49,3.75,5.0,fr,57692,103,2475873,1,1,Active Shallow Crust,128.8974,89.96696,0.0,09/12/5174 +6.86382,47.5946,5431,4,12,20,28,56,3.85,5.0,fr,57693,108,2475876,1,3,Active Shallow Crust,0.0,89.99037,0.0,04/12/5431 +6.86382,47.5946,3683,4,18,21,20,51,3.85,5.0,fr,57694,73,2475876,1,3,Active Shallow Crust,0.0,89.99037,0.0,04/18/3683 +6.86382,47.5946,7185,4,25,0,2,25,3.85,5.0,fr,57695,143,2475876,1,3,Active Shallow Crust,0.0,89.99037,0.0,04/25/7185 +6.86382,47.5946,8200,12,28,0,11,53,3.85,27.5,fr,57696,163,2475878,1,1,Active Shallow Crust,0.0,89.99037,0.0,12/28/8200 +6.86382,47.5946,4478,1,31,7,46,59,4.05,5.0,fr,57697,89,2475900,1,1,Active Shallow Crust,0.0,89.98853,0.0,01/31/4478 +6.86382,47.5946,9136,5,23,13,59,15,4.05,5.0,fr,57698,182,2475903,1,3,Active Shallow Crust,240.0056,58.00615,0.0,05/23/9136 +6.86382,47.5946,2748,6,12,12,51,20,4.05,5.0,fr,57699,54,2475903,1,3,Active Shallow Crust,240.0056,58.00615,0.0,06/12/2748 +6.86382,47.5946,8194,4,24,9,10,53,4.05,5.0,fr,57700,163,2475903,1,3,Active Shallow Crust,240.0056,58.00615,0.0,04/24/8194 +6.86382,47.5946,5821,8,18,4,12,48,4.15,5.0,fr,57701,116,2475912,1,2,Active Shallow Crust,0.0,89.98978,0.0,08/18/5821 +6.86382,47.5946,5162,3,10,17,12,37,4.15,5.0,fr,57702,103,2475912,1,2,Active Shallow Crust,0.0,89.98978,0.0,03/10/5162 +6.86382,47.5946,5241,11,26,6,41,27,4.35,5.0,fr,57703,104,2475939,1,1,Active Shallow Crust,240.0086,57.99611,0.0,11/26/5241 +6.86382,47.5946,8160,9,7,16,13,41,4.55,5.0,fr,57704,163,2475960,1,1,Active Shallow Crust,0.0,89.98925,0.0,09/07/8160 +6.86382,47.5946,5149,7,3,10,54,34,4.65,27.5,fr,57705,102,2475974,1,1,Active Shallow Crust,0.0,89.99042,0.0,07/03/5149 +6.86382,47.5946,6854,8,5,3,14,47,4.65,5.0,fr,57706,137,2475975,1,1,Active Shallow Crust,240.0108,57.99456,0.0,08/05/6854 +6.86382,47.5946,3979,7,23,0,24,28,4.95,5.0,fr,57707,79,2476008,1,1,Active Shallow Crust,0.0,89.9905,0.0,07/23/3979 +2.95583,41.93507,5068,9,12,15,39,50,3.55,5.0,fr,57708,101,2476800,1,2,Active Shallow Crust,0.0,89.98875,0.0,09/12/5068 +2.95583,41.93507,8156,2,14,23,21,52,3.55,5.0,fr,57709,163,2476800,1,2,Active Shallow Crust,0.0,89.98875,0.0,02/14/8156 +2.95583,41.93507,8326,4,13,14,45,51,3.55,15.0,fr,57710,166,2476807,1,1,Active Shallow Crust,0.0,89.98862,-90.0,04/13/8326 +2.95583,41.93507,4145,2,9,20,55,41,3.65,5.0,fr,57711,82,2476818,1,1,Active Shallow Crust,0.0,89.98985,-90.0,02/09/4145 +2.95583,41.93507,1476,8,10,17,15,38,3.75,5.0,fr,57712,29,2476824,1,2,Active Shallow Crust,0.0,89.99106,0.0,08/10/1476 +2.95583,41.93507,5709,2,1,14,59,34,3.75,5.0,fr,57713,114,2476824,1,2,Active Shallow Crust,0.0,89.99106,0.0,02/01/5709 +2.95583,41.93507,2524,8,6,19,8,41,3.75,5.0,fr,57714,50,2476830,1,2,Active Shallow Crust,0.0,89.99096,-90.0,08/06/2524 +2.95583,41.93507,7346,6,30,17,12,12,3.75,5.0,fr,57715,146,2476830,1,2,Active Shallow Crust,0.0,89.99096,-90.0,06/30/7346 +2.95583,41.93507,7490,7,6,7,8,39,3.85,27.5,fr,57716,149,2476841,1,1,Active Shallow Crust,240.0103,57.99791,0.0,07/06/7490 +2.95583,41.93507,6249,11,2,21,18,3,3.85,5.0,fr,57717,124,2476842,1,1,Active Shallow Crust,0.0,89.98926,-90.0,11/02/6249 +2.95583,41.93507,362,6,26,8,18,1,3.85,5.0,fr,57718,7,2476845,1,1,Active Shallow Crust,128.8963,89.99336,0.0,06/26/0362 +2.95583,41.93507,5017,12,16,13,11,16,3.95,5.0,fr,57719,100,2476848,1,1,Active Shallow Crust,0.0,89.99053,0.0,12/16/5017 +2.95583,41.93507,5540,9,25,11,9,16,3.95,5.0,fr,57720,110,2476857,1,1,Active Shallow Crust,128.9005,89.99409,0.0,09/25/5540 +2.95583,41.93507,8546,4,5,5,12,27,4.05,5.0,fr,57721,170,2476860,1,1,Active Shallow Crust,0.0,89.98946,0.0,04/05/8546 +2.95583,41.93507,6457,1,14,1,3,44,4.05,15.0,fr,57722,129,2476861,1,1,Active Shallow Crust,0.0,89.98946,0.0,01/14/6457 +2.95583,41.93507,4012,9,16,2,0,57,4.45,5.0,fr,57723,80,2476908,1,1,Active Shallow Crust,0.0,89.98935,0.0,09/16/4012 +2.95583,41.93507,1028,10,9,17,14,1,4.55,5.0,fr,57724,20,2476920,1,1,Active Shallow Crust,0.0,89.99051,0.0,10/09/1028 +2.95583,41.93507,1573,8,11,18,1,39,4.85,5.0,fr,57725,31,2476962,1,1,Active Shallow Crust,0.0,89.98981,-90.0,08/11/1573 +2.95583,41.93507,491,1,16,18,7,39,5.05,15.0,fr,57726,9,2476984,1,1,Active Shallow Crust,240.02,57.99716,0.0,01/16/0491 +-1.84676,47.49645,8152,10,20,8,0,50,3.55,5.0,fr,57727,163,2477280,1,2,Active Shallow Crust,0.0,89.98978,0.0,10/20/8152 +-1.84676,47.49645,2551,6,12,12,55,13,3.55,5.0,fr,57728,51,2477280,1,2,Active Shallow Crust,0.0,89.98978,0.0,06/12/2551 +-1.84676,47.49645,9952,10,15,7,54,24,3.55,5.0,fr,57729,199,2477283,1,1,Active Shallow Crust,240.0122,57.99812,0.0,10/15/9952 +-1.84676,47.49645,5806,12,21,4,49,2,3.65,5.0,fr,57730,116,2477292,1,1,Active Shallow Crust,0.0,89.98937,0.0,12/21/5806 +-1.84676,47.49645,4602,12,5,14,44,59,3.75,15.0,fr,57731,92,2477305,1,1,Active Shallow Crust,0.0,89.99053,0.0,12/05/4602 +-1.84676,47.49645,7439,4,21,6,28,13,3.75,15.0,fr,57732,148,2477311,1,1,Active Shallow Crust,0.0,89.99042,-90.0,04/21/7439 +-1.84676,47.49645,9461,11,25,3,22,35,3.75,15.0,fr,57733,189,2477314,1,1,Active Shallow Crust,128.8963,89.96739,0.0,11/25/9461 +-1.84676,47.49645,1474,2,17,23,48,23,3.95,5.0,fr,57734,29,2477331,1,1,Active Shallow Crust,240.0197,58.00504,0.0,02/17/1474 +-1.84676,47.49645,1720,3,8,4,38,35,3.95,15.0,fr,57735,34,2477338,1,1,Active Shallow Crust,128.9001,89.99409,0.0,03/08/1720 +-1.84676,47.49645,5705,12,23,11,46,10,4.05,5.0,fr,57736,114,2477343,1,1,Active Shallow Crust,240.0061,58.00586,0.0,12/23/5705 +-1.84676,47.49645,1848,12,30,13,40,25,4.15,5.0,fr,57737,36,2477352,1,1,Active Shallow Crust,0.0,89.98975,0.0,12/30/1848 +-1.84676,47.49645,5429,9,1,11,16,4,4.15,15.0,fr,57738,108,2477353,1,1,Active Shallow Crust,0.0,89.98975,0.0,09/01/5429 +-1.84676,47.49645,2941,5,2,10,12,6,4.25,5.0,fr,57739,58,2477364,1,2,Active Shallow Crust,0.0,89.99011,0.0,05/02/2941 +-1.84676,47.49645,7281,7,1,9,14,11,4.25,5.0,fr,57740,145,2477364,1,2,Active Shallow Crust,0.0,89.99011,0.0,07/01/7281 +-1.84676,47.49645,9447,2,20,13,52,54,4.45,5.0,fr,57741,188,2477388,1,1,Active Shallow Crust,0.0,89.98972,0.0,02/20/9447 +-1.84676,47.49645,5481,8,28,9,7,53,4.45,5.0,fr,57742,109,2477394,1,1,Active Shallow Crust,0.0,89.99022,-90.0,08/28/5481 +-1.84676,47.49645,9135,3,26,2,31,56,4.55,5.0,fr,57743,182,2477400,1,2,Active Shallow Crust,0.0,89.98976,0.0,03/26/9135 +-1.84676,47.49645,9061,1,9,16,52,31,4.55,5.0,fr,57744,181,2477400,1,2,Active Shallow Crust,0.0,89.98976,0.0,01/09/9061 +-1.84676,47.49645,819,8,1,18,6,44,4.65,5.0,fr,57745,16,2477412,1,1,Active Shallow Crust,0.0,89.98991,0.0,08/01/0819 +-1.84676,47.49645,9100,11,3,18,47,0,4.95,5.0,fr,57746,181,2477454,1,1,Active Shallow Crust,0.0,89.99003,-90.0,11/03/9100 +2.27685,51.67001,9919,11,16,4,12,39,3.65,5.0,fr,57747,198,2478252,1,2,Active Shallow Crust,0.0,89.98885,0.0,11/16/9919 +2.27685,51.67001,593,9,11,4,44,3,3.65,5.0,fr,57748,11,2478252,1,2,Active Shallow Crust,0.0,89.98885,0.0,09/11/0593 +2.27685,51.67001,6066,8,7,22,14,57,3.75,5.0,fr,57749,121,2478264,1,2,Active Shallow Crust,0.0,89.99007,0.0,08/07/6066 +2.27685,51.67001,3438,1,20,2,17,0,3.75,5.0,fr,57750,68,2478264,1,2,Active Shallow Crust,0.0,89.99007,0.0,01/20/3438 +2.27685,51.67001,1196,12,13,7,45,24,3.85,15.0,fr,57751,23,2478286,1,1,Active Shallow Crust,128.8951,89.99447,0.0,12/13/1196 +2.27685,51.67001,4226,7,31,17,59,55,4.35,5.0,fr,57752,84,2478345,1,1,Active Shallow Crust,128.897,89.98278,0.0,07/31/4226 +6.68721,43.51364,5099,7,6,12,16,1,3.55,15.0,fr,57753,101,2478721,1,1,Active Shallow Crust,0.0,89.99268,0.0,07/06/5099 +6.68721,43.51364,9097,4,23,15,46,41,3.75,5.0,fr,57754,181,2478744,1,1,Active Shallow Crust,0.0,89.98838,0.0,04/23/9097 +6.68721,43.51364,4986,12,12,17,58,34,3.95,15.0,fr,57755,99,2478769,1,1,Active Shallow Crust,0.0,89.99077,0.0,12/12/4986 +6.68721,43.51364,8570,8,6,21,42,0,3.95,5.0,fr,57756,171,2478777,1,1,Active Shallow Crust,128.9013,89.99308,0.0,08/06/8570 +6.68721,43.51364,2850,5,24,15,52,18,4.15,5.0,fr,57757,56,2478798,1,1,Active Shallow Crust,0.0,89.98888,-90.0,05/24/2850 +6.68721,43.51364,7460,12,2,7,16,23,4.35,5.0,fr,57758,149,2478825,1,1,Active Shallow Crust,128.8979,89.98292,0.0,12/02/7460 +-0.1198,44.65968,5274,4,1,17,44,40,3.65,5.0,fr,57759,105,2479212,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/01/5274 +-0.1198,44.65968,1931,5,7,0,3,1,3.65,15.0,fr,57760,38,2479213,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/07/1931 +-0.1198,44.65968,5743,11,19,12,56,42,3.85,15.0,fr,57761,114,2479240,1,1,Active Shallow Crust,240.0106,57.99776,0.0,11/19/5743 +-0.1198,44.65968,2807,2,14,13,34,58,4.35,5.0,fr,57762,56,2479305,1,1,Active Shallow Crust,128.8982,89.98276,0.0,02/14/2807 +4.53001,41.75954,1789,4,4,12,13,14,3.65,5.0,fr,57763,35,2479692,1,1,Active Shallow Crust,0.0,89.99329,0.0,04/04/1789 +2.57914,50.1326,171,10,16,5,38,15,3.55,15.0,fr,57764,3,2480161,1,1,Active Shallow Crust,0.0,89.9903,0.0,10/16/0171 +2.57914,50.1326,2028,8,14,20,51,48,3.75,5.0,fr,57765,40,2480184,1,1,Active Shallow Crust,0.0,89.98973,0.0,08/14/2028 +2.57914,50.1326,6955,7,23,9,43,45,3.75,15.0,fr,57766,139,2480185,1,1,Active Shallow Crust,0.0,89.98973,0.0,07/23/6955 +2.57914,50.1326,6301,12,18,12,40,4,3.75,27.5,fr,57767,126,2480186,1,2,Active Shallow Crust,0.0,89.98973,0.0,12/18/6301 +2.57914,50.1326,3597,8,29,12,14,24,3.75,27.5,fr,57768,71,2480186,1,2,Active Shallow Crust,0.0,89.98973,0.0,08/29/3597 +2.57914,50.1326,9006,7,7,3,21,13,3.85,5.0,fr,57769,180,2480196,1,1,Active Shallow Crust,0.0,89.99084,0.0,07/07/9006 +2.57914,50.1326,2801,7,4,7,52,36,3.95,5.0,fr,57770,56,2480208,1,1,Active Shallow Crust,0.0,89.98981,0.0,07/04/2801 +2.57914,50.1326,6295,11,25,9,29,50,3.95,15.0,fr,57771,125,2480209,1,1,Active Shallow Crust,0.0,89.98981,0.0,11/25/6295 +2.57914,50.1326,5048,7,1,5,27,35,4.05,15.0,fr,57772,100,2480221,1,1,Active Shallow Crust,0.0,89.9891,0.0,07/01/5048 +2.57914,50.1326,2794,2,19,13,28,33,4.05,5.0,fr,57773,55,2480223,1,1,Active Shallow Crust,240.0066,58.00591,0.0,02/19/2794 +2.57914,50.1326,2962,3,24,4,46,16,4.15,15.0,fr,57774,59,2480233,1,1,Active Shallow Crust,0.0,89.99028,0.0,03/24/2962 +2.57914,50.1326,5057,1,23,14,27,38,4.45,5.0,fr,57775,101,2480274,1,1,Active Shallow Crust,0.0,89.98956,-90.0,01/23/5057 +2.57914,50.1326,3495,2,18,20,57,58,5.05,27.5,fr,57776,69,2480342,1,1,Active Shallow Crust,0.0,89.99023,0.0,02/18/3495 +0.99365,51.37228,9750,10,21,6,1,52,3.55,5.0,fr,57777,194,2480640,1,1,Active Shallow Crust,0.0,89.98977,0.0,10/21/9750 +0.99365,51.37228,1717,6,7,23,30,38,3.55,15.0,fr,57778,34,2480641,1,1,Active Shallow Crust,0.0,89.98977,0.0,06/07/1717 +0.99365,51.37228,9712,2,21,1,52,31,3.55,5.0,fr,57779,194,2480643,1,1,Active Shallow Crust,240.0127,57.99818,0.0,02/21/9712 +0.99365,51.37228,2826,1,26,7,50,35,3.85,5.0,fr,57780,56,2480676,1,1,Active Shallow Crust,0.0,89.98997,0.0,01/26/2826 +0.99365,51.37228,3011,8,16,19,8,7,3.95,5.0,fr,57781,60,2480688,1,1,Active Shallow Crust,0.0,89.99007,0.0,08/16/3011 +0.99365,51.37228,773,9,27,6,23,45,4.25,5.0,fr,57782,15,2480724,1,2,Active Shallow Crust,0.0,89.99016,0.0,09/27/0773 +0.99365,51.37228,4105,7,17,16,34,51,4.25,5.0,fr,57783,82,2480724,1,2,Active Shallow Crust,0.0,89.99016,0.0,07/17/4105 +0.99365,51.37228,5374,3,21,20,15,13,4.55,5.0,fr,57784,107,2480760,1,1,Active Shallow Crust,0.0,89.99004,0.0,03/21/5374 +0.99365,51.37228,7271,1,26,0,27,55,4.75,5.0,fr,57785,145,2480787,1,1,Active Shallow Crust,240.0095,58.0048,0.0,01/26/7271 +-4.49464,49.28854,9438,4,19,5,23,5,3.55,5.0,fr,57786,188,2481123,1,2,Active Shallow Crust,240.0128,57.99852,0.0,04/19/9438 +-4.49464,49.28854,5688,10,1,7,44,57,3.55,5.0,fr,57787,113,2481123,1,2,Active Shallow Crust,240.0128,57.99852,0.0,10/01/5688 +-4.49464,49.28854,6484,11,26,20,31,45,3.65,5.0,fr,57788,129,2481132,1,2,Active Shallow Crust,0.0,89.98827,0.0,11/26/6484 +-4.49464,49.28854,3478,3,27,3,18,22,3.65,5.0,fr,57789,69,2481132,1,2,Active Shallow Crust,0.0,89.98827,0.0,03/27/3478 +-4.49464,49.28854,9594,11,16,18,45,2,3.65,15.0,fr,57790,191,2481142,1,1,Active Shallow Crust,128.9003,89.96358,0.0,11/16/9594 +-4.49464,49.28854,7869,3,20,4,9,3,3.75,5.0,fr,57791,157,2481144,1,1,Active Shallow Crust,0.0,89.98955,0.0,03/20/7869 +-4.49464,49.28854,5682,2,7,19,59,55,4.05,15.0,fr,57792,113,2481184,1,1,Active Shallow Crust,240.0067,58.00557,0.0,02/07/5682 +-4.49464,49.28854,2746,11,7,12,9,18,4.05,5.0,fr,57793,54,2481186,1,1,Active Shallow Crust,0.0,89.98878,-90.0,11/07/2746 +-4.49464,49.28854,2053,10,15,11,4,19,4.25,15.0,fr,57794,41,2481205,1,1,Active Shallow Crust,0.0,89.99119,0.0,10/15/2053 +5.52748,45.48418,10,3,2,20,30,25,3.55,5.0,fr,57795,0,2481600,1,1,Active Shallow Crust,0.0,89.99293,0.0,03/02/0010 +5.52748,45.48418,8474,11,13,12,29,42,3.55,15.0,fr,57796,169,2481601,1,1,Active Shallow Crust,0.0,89.99293,0.0,11/13/8474 +5.52748,45.48418,4675,5,2,21,35,7,3.55,5.0,fr,57797,93,2481603,1,1,Active Shallow Crust,240.0115,57.999,0.0,05/02/4675 +5.52748,45.48418,965,4,17,18,27,0,3.55,5.0,fr,57798,19,2481606,1,1,Active Shallow Crust,0.0,89.99285,-90.0,04/17/0965 +5.52748,45.48418,8645,1,2,1,0,16,3.55,27.5,fr,57799,172,2481611,1,1,Active Shallow Crust,128.8956,89.99647,0.0,01/02/8645 +5.52748,45.48418,7080,1,15,12,23,7,3.65,15.0,fr,57800,141,2481613,1,1,Active Shallow Crust,0.0,89.9874,0.0,01/15/7080 +5.52748,45.48418,7046,1,14,7,15,12,3.75,5.0,fr,57801,140,2481624,1,4,Active Shallow Crust,0.0,89.98877,0.0,01/14/7046 +5.52748,45.48418,2042,12,25,15,31,46,3.75,5.0,fr,57802,40,2481624,1,4,Active Shallow Crust,0.0,89.98877,0.0,12/25/2042 +5.52748,45.48418,3593,10,16,13,44,13,3.75,5.0,fr,57803,71,2481624,1,4,Active Shallow Crust,0.0,89.98877,0.0,10/16/3593 +5.52748,45.48418,2003,9,11,20,6,35,3.75,5.0,fr,57804,40,2481624,1,4,Active Shallow Crust,0.0,89.98877,0.0,09/11/2003 +5.52748,45.48418,4814,9,12,0,44,52,3.75,5.0,fr,57805,96,2481627,1,1,Active Shallow Crust,240.0083,58.01693,0.0,09/12/4814 +5.52748,45.48418,5294,9,9,3,52,17,3.75,5.0,fr,57806,105,2481630,1,1,Active Shallow Crust,0.0,89.98864,-90.0,09/09/5294 +5.52748,45.48418,2113,10,7,20,20,17,3.85,5.0,fr,57807,42,2481639,1,1,Active Shallow Crust,240.0117,57.99685,0.0,10/07/2113 +5.52748,45.48418,9306,4,11,5,52,43,3.95,5.0,fr,57808,186,2481648,1,1,Active Shallow Crust,0.0,89.99108,0.0,04/11/9306 +5.52748,45.48418,7061,4,19,4,13,48,3.95,5.0,fr,57809,141,2481651,1,2,Active Shallow Crust,240.019,58.00518,0.0,04/19/7061 +5.52748,45.48418,4415,10,24,15,1,27,3.95,5.0,fr,57810,88,2481651,1,2,Active Shallow Crust,240.019,58.00518,0.0,10/24/4415 +5.52748,45.48418,7228,7,4,4,38,40,3.95,15.0,fr,57811,144,2481652,1,1,Active Shallow Crust,240.019,58.00518,0.0,07/04/7228 +5.52748,45.48418,8874,3,29,8,8,48,4.05,5.0,fr,57812,177,2481660,1,2,Active Shallow Crust,0.0,89.98808,0.0,03/29/8874 +5.52748,45.48418,2238,10,5,11,46,15,4.05,5.0,fr,57813,44,2481660,1,2,Active Shallow Crust,0.0,89.98808,0.0,10/05/2238 +5.52748,45.48418,2468,3,26,8,0,16,4.15,5.0,fr,57814,49,2481672,1,1,Active Shallow Crust,0.0,89.98937,0.0,03/26/2468 +5.52748,45.48418,2692,4,21,10,30,0,4.15,5.0,fr,57815,53,2481681,1,1,Active Shallow Crust,128.8973,89.99468,0.0,04/21/2692 +5.52748,45.48418,5033,11,2,5,34,3,4.25,5.0,fr,57816,100,2481693,1,1,Active Shallow Crust,128.8952,89.98091,0.0,11/02/5033 +5.52748,45.48418,9333,6,16,19,42,34,5.15,15.0,fr,57817,186,2481793,1,1,Active Shallow Crust,0.0,89.98991,0.0,06/16/9333 +5.52748,45.48418,2378,1,9,8,4,28,5.15,5.0,fr,57818,47,2481801,1,1,Active Shallow Crust,128.884,89.99112,0.0,01/09/2378 +-2.55526,50.52316,2656,11,15,7,16,22,3.55,15.0,fr,57819,53,2482081,1,1,Active Shallow Crust,0.0,89.99039,0.0,11/15/2656 +-2.55526,50.52316,7445,3,30,15,2,4,4.05,5.0,fr,57820,148,2482140,1,1,Active Shallow Crust,0.0,89.98918,0.0,03/30/7445 +-2.55526,50.52316,4828,12,22,6,54,14,4.95,15.0,fr,57821,96,2482249,1,1,Active Shallow Crust,0.0,89.98976,0.0,12/22/4828 +3.51188,52.2027,3474,5,14,20,59,16,4.15,5.0,fr,57822,69,2482632,1,1,Active Shallow Crust,0.0,89.99071,0.0,05/14/3474 +-2.70624,50.24633,3714,11,16,17,2,1,3.65,5.0,fr,57823,74,2483061,1,1,Active Shallow Crust,128.9004,89.96334,0.0,11/16/3714 +-2.70624,50.24633,6297,4,6,14,56,13,3.75,15.0,fr,57824,125,2483065,1,1,Active Shallow Crust,0.0,89.98975,0.0,04/06/6297 +-2.70624,50.24633,8340,8,1,1,33,15,3.75,5.0,fr,57825,166,2483067,1,1,Active Shallow Crust,240.0087,58.0175,0.0,08/01/8340 +6.26906,46.36105,1234,9,18,0,42,35,3.55,15.0,fr,57826,24,2483521,1,1,Active Shallow Crust,0.0,89.99304,0.0,09/18/1234 +6.26906,46.36105,8664,8,15,17,41,53,3.55,5.0,fr,57827,173,2483523,1,2,Active Shallow Crust,240.0122,57.99814,0.0,08/15/8664 +6.26906,46.36105,2848,11,20,10,56,37,3.55,5.0,fr,57828,56,2483523,1,2,Active Shallow Crust,240.0122,57.99814,0.0,11/20/2848 +6.26906,46.36105,4599,11,12,20,49,19,3.55,15.0,fr,57829,91,2483524,1,1,Active Shallow Crust,240.0122,57.99814,0.0,11/12/4599 +6.26906,46.36105,194,9,29,22,41,23,3.55,27.5,fr,57830,3,2483528,1,1,Active Shallow Crust,0.0,89.99296,-90.0,09/29/0194 +6.26906,46.36105,9935,8,31,5,41,43,3.55,5.0,fr,57831,198,2483529,1,2,Active Shallow Crust,128.8955,89.99304,0.0,08/31/9935 +6.26906,46.36105,5150,10,24,12,42,15,3.55,5.0,fr,57832,102,2483529,1,2,Active Shallow Crust,128.8955,89.99304,0.0,10/24/5150 +6.26906,46.36105,4592,1,8,11,55,36,3.65,5.0,fr,57833,91,2483532,1,5,Active Shallow Crust,0.0,89.98759,0.0,01/08/4592 +6.26906,46.36105,1009,7,9,16,44,58,3.65,5.0,fr,57834,20,2483532,1,5,Active Shallow Crust,0.0,89.98759,0.0,07/09/1009 +6.26906,46.36105,8469,9,1,8,21,14,3.65,5.0,fr,57835,169,2483532,1,5,Active Shallow Crust,0.0,89.98759,0.0,09/01/8469 +6.26906,46.36105,4287,1,16,4,56,23,3.65,5.0,fr,57836,85,2483532,1,5,Active Shallow Crust,0.0,89.98759,0.0,01/16/4287 +6.26906,46.36105,637,10,14,13,48,13,3.65,5.0,fr,57837,12,2483532,1,5,Active Shallow Crust,0.0,89.98759,0.0,10/14/0637 +6.26906,46.36105,4928,1,12,20,50,45,3.65,27.5,fr,57838,98,2483534,1,1,Active Shallow Crust,0.0,89.98759,0.0,01/12/4928 +6.26906,46.36105,8964,10,15,12,54,11,3.65,5.0,fr,57839,179,2483541,1,1,Active Shallow Crust,128.9012,89.96352,0.0,10/15/8964 +6.26906,46.36105,6731,2,27,19,22,20,3.65,15.0,fr,57840,134,2483542,1,1,Active Shallow Crust,128.9012,89.96352,0.0,02/27/6731 +6.26906,46.36105,1981,5,28,11,5,25,3.75,5.0,fr,57841,39,2483544,1,4,Active Shallow Crust,0.0,89.98895,0.0,05/28/1981 +6.26906,46.36105,511,12,8,14,7,24,3.75,5.0,fr,57842,10,2483544,1,4,Active Shallow Crust,0.0,89.98895,0.0,12/08/0511 +6.26906,46.36105,4615,8,4,4,56,58,3.75,5.0,fr,57843,92,2483544,1,4,Active Shallow Crust,0.0,89.98895,0.0,08/04/4615 +6.26906,46.36105,5832,8,27,8,6,1,3.75,5.0,fr,57844,116,2483544,1,4,Active Shallow Crust,0.0,89.98895,0.0,08/27/5832 +6.26906,46.36105,776,10,5,21,3,41,3.75,5.0,fr,57845,15,2483547,1,2,Active Shallow Crust,240.0077,58.01828,0.0,10/05/0776 +6.26906,46.36105,604,4,26,14,56,20,3.75,5.0,fr,57846,12,2483547,1,2,Active Shallow Crust,240.0077,58.01828,0.0,04/26/0604 +6.26906,46.36105,1204,7,21,14,1,57,3.85,5.0,fr,57847,24,2483556,1,1,Active Shallow Crust,0.0,89.99014,0.0,07/21/1204 +6.26906,46.36105,6402,7,14,1,35,44,3.85,15.0,fr,57848,128,2483557,1,1,Active Shallow Crust,0.0,89.99014,0.0,07/14/6402 +6.26906,46.36105,7855,9,27,13,31,7,3.85,27.5,fr,57849,157,2483558,1,1,Active Shallow Crust,0.0,89.99014,0.0,09/27/7855 +6.26906,46.36105,4879,9,7,1,44,14,3.95,5.0,fr,57850,97,2483568,1,3,Active Shallow Crust,0.0,89.99122,0.0,09/07/4879 +6.26906,46.36105,8636,3,15,13,34,9,3.95,5.0,fr,57851,172,2483568,1,3,Active Shallow Crust,0.0,89.99122,0.0,03/15/8636 +6.26906,46.36105,6195,11,19,5,4,46,3.95,5.0,fr,57852,123,2483568,1,3,Active Shallow Crust,0.0,89.99122,0.0,11/19/6195 +6.26906,46.36105,5203,8,21,14,27,40,3.95,15.0,fr,57853,104,2483569,1,1,Active Shallow Crust,0.0,89.99122,0.0,08/21/5203 +6.26906,46.36105,2144,5,14,18,10,35,4.05,5.0,fr,57854,42,2483580,1,1,Active Shallow Crust,0.0,89.98826,0.0,05/14/2144 +6.26906,46.36105,8962,5,7,15,8,53,4.15,5.0,fr,57855,179,2483592,1,2,Active Shallow Crust,0.0,89.98953,0.0,05/07/8962 +6.26906,46.36105,5535,8,6,8,35,30,4.15,5.0,fr,57856,110,2483592,1,2,Active Shallow Crust,0.0,89.98953,0.0,08/06/5535 +6.26906,46.36105,367,6,2,11,38,53,4.15,15.0,fr,57857,7,2483593,1,1,Active Shallow Crust,0.0,89.98953,0.0,06/02/0367 +6.26906,46.36105,8150,10,24,18,1,55,4.25,5.0,fr,57858,162,2483604,1,1,Active Shallow Crust,0.0,89.99068,0.0,10/24/8150 +6.26906,46.36105,8552,10,29,15,5,34,4.35,5.0,fr,57859,171,2483616,1,1,Active Shallow Crust,0.0,89.98891,0.0,10/29/8552 +6.26906,46.36105,9737,1,25,11,21,25,4.35,15.0,fr,57860,194,2483617,1,1,Active Shallow Crust,0.0,89.98891,0.0,01/25/9737 +6.26906,46.36105,7617,4,9,21,29,46,4.45,5.0,fr,57861,152,2483628,1,1,Active Shallow Crust,0.0,89.99012,0.0,04/09/7617 +6.26906,46.36105,9505,9,25,18,57,16,4.45,5.0,fr,57862,190,2483634,1,2,Active Shallow Crust,0.0,89.99001,-90.0,09/25/9505 +6.26906,46.36105,6069,5,18,23,4,18,4.45,5.0,fr,57863,121,2483634,1,2,Active Shallow Crust,0.0,89.99001,-90.0,05/18/6069 +6.26906,46.36105,767,4,15,7,28,51,4.55,5.0,fr,57864,15,2483640,1,1,Active Shallow Crust,0.0,89.989,0.0,04/15/0767 +6.26906,46.36105,7837,11,15,11,5,3,4.85,5.0,fr,57865,156,2483679,1,1,Active Shallow Crust,240.017,58.00244,0.0,11/15/7837 +6.26906,46.36105,4214,10,10,12,53,42,4.95,27.5,fr,57866,84,2483690,1,1,Active Shallow Crust,0.0,89.99028,0.0,10/10/4214 +6.26906,46.36105,1223,1,3,20,51,55,4.95,5.0,fr,57867,24,2483691,1,1,Active Shallow Crust,240.0119,58.00456,0.0,01/03/1223 +6.26906,46.36105,3708,9,4,2,43,21,5.55,5.0,fr,57868,74,2483760,1,1,Active Shallow Crust,0.0,89.99025,0.0,09/04/3708 +-0.81442,46.36474,8460,8,2,14,0,24,3.55,5.0,fr,57869,169,2484000,1,1,Active Shallow Crust,0.0,89.99043,0.0,08/02/8460 +-0.81442,46.36474,3916,3,22,1,1,24,3.55,15.0,fr,57870,78,2484001,1,1,Active Shallow Crust,0.0,89.99043,0.0,03/22/3916 +-0.81442,46.36474,4561,9,28,21,37,2,3.55,27.5,fr,57871,91,2484005,1,1,Active Shallow Crust,240.0123,57.99811,0.0,09/28/4561 +-0.81442,46.36474,5109,1,7,16,54,56,3.65,5.0,fr,57872,102,2484012,1,1,Active Shallow Crust,0.0,89.98992,0.0,01/07/5109 +-0.81442,46.36474,8618,4,25,15,41,57,3.65,5.0,fr,57873,172,2484018,1,1,Active Shallow Crust,0.0,89.98981,-90.0,04/25/8618 +-0.81442,46.36474,72,5,1,14,3,11,3.75,5.0,fr,57874,1,2484024,1,2,Active Shallow Crust,0.0,89.99033,0.0,05/01/0072 +-0.81442,46.36474,7968,4,12,11,7,10,3.75,5.0,fr,57875,159,2484024,1,2,Active Shallow Crust,0.0,89.99033,0.0,04/12/7968 +-0.81442,46.36474,9750,4,23,13,20,32,3.75,15.0,fr,57876,194,2484028,1,1,Active Shallow Crust,240.0085,58.01754,0.0,04/23/9750 +-0.81442,46.36474,85,9,5,16,8,32,3.85,5.0,fr,57877,1,2484036,1,2,Active Shallow Crust,0.0,89.99015,0.0,09/05/0085 +-0.81442,46.36474,5409,5,16,8,37,33,3.85,5.0,fr,57878,108,2484036,1,2,Active Shallow Crust,0.0,89.99015,0.0,05/16/5409 +-0.81442,46.36474,3851,1,3,4,33,6,3.85,15.0,fr,57879,77,2484037,1,1,Active Shallow Crust,0.0,89.99015,0.0,01/03/3851 +-0.81442,46.36474,3310,7,11,22,52,27,3.95,15.0,fr,57880,66,2484058,1,1,Active Shallow Crust,128.9003,89.99369,0.0,07/11/3310 +-0.81442,46.36474,3897,6,15,20,11,0,4.05,27.5,fr,57881,77,2484062,1,1,Active Shallow Crust,0.0,89.99022,0.0,06/15/3897 +-0.81442,46.36474,8480,9,5,15,43,5,5.15,5.0,fr,57882,169,2484195,1,1,Active Shallow Crust,240.0196,57.99997,0.0,09/05/8480 +5.72987,44.19354,487,4,6,15,14,32,3.55,5.0,fr,57883,9,2484480,1,1,Active Shallow Crust,0.0,89.99277,0.0,04/06/0487 +5.72987,44.19354,3288,10,4,23,26,51,3.65,5.0,fr,57884,65,2484492,1,1,Active Shallow Crust,0.0,89.98711,0.0,10/04/3288 +5.72987,44.19354,3773,6,12,8,15,30,3.65,15.0,fr,57885,75,2484496,1,1,Active Shallow Crust,240.0004,58.01262,0.0,06/12/3773 +5.72987,44.19354,2719,10,10,4,4,56,3.75,5.0,fr,57886,54,2484504,1,1,Active Shallow Crust,0.0,89.98851,0.0,10/10/2719 +5.72987,44.19354,7117,7,9,15,30,33,3.75,5.0,fr,57887,142,2484513,1,1,Active Shallow Crust,128.8971,89.96745,0.0,07/09/7117 +5.72987,44.19354,6591,4,1,8,36,53,3.85,5.0,fr,57888,131,2484516,1,1,Active Shallow Crust,0.0,89.98976,0.0,04/01/6591 +5.72987,44.19354,9340,12,28,20,55,12,4.15,5.0,fr,57889,186,2484552,1,1,Active Shallow Crust,0.0,89.98913,0.0,12/28/9340 +5.72987,44.19354,5848,9,10,23,34,50,4.15,5.0,fr,57890,116,2484555,1,1,Active Shallow Crust,240.0086,57.99694,0.0,09/10/5848 +5.72987,44.19354,2790,1,6,7,35,56,4.25,15.0,fr,57891,55,2484565,1,1,Active Shallow Crust,0.0,89.99031,0.0,01/06/2790 +1.46555,43.3022,2895,1,14,23,21,34,3.55,15.0,fr,57892,57,2485444,1,1,Active Shallow Crust,240.0119,57.99792,0.0,01/14/2895 +1.46555,43.3022,4591,3,26,15,44,23,3.85,5.0,fr,57893,91,2485479,1,1,Active Shallow Crust,240.0106,57.99756,0.0,03/26/4591 +1.46555,43.3022,2736,9,27,19,27,44,3.95,5.0,fr,57894,54,2485488,1,1,Active Shallow Crust,0.0,89.98958,0.0,09/27/2736 +1.46555,43.3022,1947,5,11,4,45,34,4.25,5.0,fr,57895,38,2485527,1,1,Active Shallow Crust,240.007,57.99391,0.0,05/11/1947 +1.46555,43.3022,7953,1,28,17,14,58,4.35,5.0,fr,57896,159,2485536,1,2,Active Shallow Crust,0.0,89.98978,0.0,01/28/7953 +1.46555,43.3022,1160,12,14,12,14,51,4.35,5.0,fr,57897,23,2485536,1,2,Active Shallow Crust,0.0,89.98978,0.0,12/14/1160 +-1.18539,48.356,7474,5,11,1,24,30,3.65,15.0,fr,57898,149,2486899,1,1,Active Shallow Crust,0.0,89.98943,-90.0,05/11/7474 +-1.18539,48.356,5289,6,2,2,57,39,3.75,5.0,fr,57899,105,2486904,1,1,Active Shallow Crust,0.0,89.98936,0.0,06/02/5289 +-1.18539,48.356,2780,4,29,2,44,43,3.75,15.0,fr,57900,55,2486908,1,1,Active Shallow Crust,240.0087,58.01764,0.0,04/29/2780 +-1.18539,48.356,7766,7,31,14,34,30,3.75,5.0,fr,57901,155,2486910,1,1,Active Shallow Crust,0.0,89.99058,-90.0,07/31/7766 +-1.18539,48.356,9825,11,23,1,42,20,3.95,5.0,fr,57902,196,2486928,1,1,Active Shallow Crust,0.0,89.99049,0.0,11/23/9825 +-1.18539,48.356,7222,3,25,5,16,36,3.95,15.0,fr,57903,144,2486929,1,1,Active Shallow Crust,0.0,89.99049,0.0,03/25/7222 +-1.18539,48.356,7055,5,28,3,9,44,3.95,15.0,fr,57904,141,2486935,1,1,Active Shallow Crust,0.0,89.99038,-90.0,05/28/7055 +-1.18539,48.356,1536,6,22,21,55,32,4.15,15.0,fr,57905,30,2486953,1,1,Active Shallow Crust,0.0,89.98992,0.0,06/22/1536 +-1.18539,48.356,9095,7,27,5,29,21,4.25,15.0,fr,57906,181,2486965,1,1,Active Shallow Crust,0.0,89.99027,0.0,07/27/9095 +-1.18539,48.356,2587,10,15,16,29,42,4.35,5.0,fr,57907,51,2486976,1,1,Active Shallow Crust,0.0,89.99,0.0,10/15/2587 +-1.18539,48.356,8262,2,27,17,35,35,4.45,15.0,fr,57908,165,2486989,1,1,Active Shallow Crust,0.0,89.98989,0.0,02/27/8262 +-1.18539,48.356,4041,5,10,17,56,51,5.35,5.0,fr,57909,80,2487096,1,1,Active Shallow Crust,0.0,89.99008,0.0,05/10/4041 +1.68795,43.72928,3223,7,27,9,33,24,3.55,5.0,fr,57910,64,2487360,1,1,Active Shallow Crust,0.0,89.99089,0.0,07/27/3223 +1.68795,43.72928,1493,7,25,13,41,32,3.75,5.0,fr,57911,29,2487384,1,1,Active Shallow Crust,0.0,89.98987,0.0,07/25/1493 +3.16282,51.68905,6989,12,28,10,58,24,3.55,5.0,fr,57912,139,2487840,1,2,Active Shallow Crust,0.0,89.99062,0.0,12/28/6989 +3.16282,51.68905,7815,3,11,4,31,17,3.55,5.0,fr,57913,156,2487840,1,2,Active Shallow Crust,0.0,89.99062,0.0,03/11/7815 +3.16282,51.68905,7626,8,8,21,59,32,3.55,15.0,fr,57914,152,2487844,1,1,Active Shallow Crust,240.0128,57.99809,0.0,08/08/7626 +3.16282,51.68905,5195,1,21,11,9,50,4.35,5.0,fr,57915,103,2487936,1,1,Active Shallow Crust,0.0,89.99004,0.0,01/21/5195 +-3.50995,48.29715,7205,4,8,13,48,44,3.55,15.0,fr,57916,144,2488321,1,1,Active Shallow Crust,0.0,89.98994,0.0,04/08/7205 +-3.50995,48.29715,7374,3,5,5,55,9,3.65,15.0,fr,57917,147,2488333,1,4,Active Shallow Crust,0.0,89.99103,0.0,03/05/7374 +-3.50995,48.29715,1873,4,24,10,38,23,3.65,15.0,fr,57918,37,2488333,1,4,Active Shallow Crust,0.0,89.99103,0.0,04/24/1873 +-3.50995,48.29715,8313,11,14,7,39,23,3.65,15.0,fr,57919,166,2488333,1,4,Active Shallow Crust,0.0,89.99103,0.0,11/14/8313 +-3.50995,48.29715,1180,9,30,3,6,49,3.65,15.0,fr,57920,23,2488333,1,4,Active Shallow Crust,0.0,89.99103,0.0,09/30/1180 +-3.50995,48.29715,469,11,16,4,56,8,3.65,27.5,fr,57921,9,2488334,1,1,Active Shallow Crust,0.0,89.99103,0.0,11/16/0469 +-3.50995,48.29715,1072,12,23,17,26,15,3.65,15.0,fr,57922,21,2488336,1,1,Active Shallow Crust,240.0011,58.01308,0.0,12/23/1072 +-3.50995,48.29715,8732,8,28,7,55,12,3.75,5.0,fr,57923,174,2488344,1,1,Active Shallow Crust,0.0,89.98934,0.0,08/28/8732 +-3.50995,48.29715,8525,11,21,22,0,34,3.95,5.0,fr,57924,170,2488368,1,1,Active Shallow Crust,0.0,89.98942,0.0,11/21/8525 +-3.50995,48.29715,6055,4,24,5,3,59,3.95,15.0,fr,57925,121,2488369,1,1,Active Shallow Crust,0.0,89.98942,0.0,04/24/6055 +-3.50995,48.29715,7593,8,13,10,44,51,4.05,5.0,fr,57926,151,2488383,1,1,Active Shallow Crust,240.0061,58.00588,0.0,08/13/7593 +-3.50995,48.29715,3467,1,22,11,41,33,4.15,15.0,fr,57927,69,2488393,1,1,Active Shallow Crust,0.0,89.98991,0.0,01/22/3467 +-3.50995,48.29715,8883,12,7,20,3,15,4.25,5.0,fr,57928,177,2488404,1,1,Active Shallow Crust,0.0,89.98951,0.0,12/07/8883 +-3.50995,48.29715,8552,8,27,21,56,45,4.35,27.5,fr,57929,171,2488421,1,1,Active Shallow Crust,240.009,57.99582,0.0,08/27/8552 +-3.50995,48.29715,5171,10,5,17,58,13,4.45,5.0,fr,57930,103,2488428,1,1,Active Shallow Crust,0.0,89.99048,0.0,10/05/5171 +0.39131,41.15561,735,2,15,20,8,49,3.55,15.0,fr,57931,14,2488801,1,1,Active Shallow Crust,0.0,89.99004,0.0,02/15/0735 +0.39131,41.15561,2645,6,24,2,14,32,3.85,5.0,fr,57932,52,2488836,1,1,Active Shallow Crust,0.0,89.98992,0.0,06/24/2645 +0.39131,41.15561,285,6,11,12,9,9,4.25,5.0,fr,57933,5,2488884,1,1,Active Shallow Crust,0.0,89.99004,0.0,06/11/0285 +7.76756,46.79689,9166,3,24,0,7,19,3.55,5.0,fr,57934,183,2489280,1,3,Active Shallow Crust,0.0,89.9931,0.0,03/24/9166 +7.76756,46.79689,2597,5,17,2,24,42,3.55,5.0,fr,57935,51,2489280,1,3,Active Shallow Crust,0.0,89.9931,0.0,05/17/2597 +7.76756,46.79689,8954,2,8,6,14,37,3.55,5.0,fr,57936,179,2489280,1,3,Active Shallow Crust,0.0,89.9931,0.0,02/08/8954 +7.76756,46.79689,610,11,10,16,3,10,3.55,15.0,fr,57937,12,2489281,1,2,Active Shallow Crust,0.0,89.9931,0.0,11/10/0610 +7.76756,46.79689,47,8,24,17,12,47,3.55,15.0,fr,57938,0,2489281,1,2,Active Shallow Crust,0.0,89.9931,0.0,08/24/0047 +7.76756,46.79689,8661,8,23,21,19,17,3.55,27.5,fr,57939,173,2489282,1,2,Active Shallow Crust,0.0,89.9931,0.0,08/23/8661 +7.76756,46.79689,6712,5,6,15,0,11,3.55,27.5,fr,57940,134,2489282,1,2,Active Shallow Crust,0.0,89.9931,0.0,05/06/6712 +7.76756,46.79689,6561,7,27,6,25,0,3.55,15.0,fr,57941,131,2489284,1,1,Active Shallow Crust,240.0121,57.99845,0.0,07/27/6561 +7.76756,46.79689,6371,8,10,15,34,4,3.55,27.5,fr,57942,127,2489285,1,1,Active Shallow Crust,240.0121,57.99836,0.0,08/10/6371 +7.76756,46.79689,1341,11,19,23,44,49,3.65,5.0,fr,57943,26,2489292,1,7,Active Shallow Crust,0.0,89.98769,0.0,11/19/1341 +7.76756,46.79689,7276,4,7,23,55,15,3.65,5.0,fr,57944,145,2489292,1,7,Active Shallow Crust,0.0,89.98769,0.0,04/07/7276 +7.76756,46.79689,2554,2,27,7,49,53,3.65,5.0,fr,57945,51,2489292,1,7,Active Shallow Crust,0.0,89.98769,0.0,02/27/2554 +7.76756,46.79689,7251,5,31,11,16,54,3.65,5.0,fr,57946,145,2489292,1,7,Active Shallow Crust,0.0,89.98769,0.0,05/31/7251 +7.76756,46.79689,7791,7,20,20,27,8,3.65,5.0,fr,57947,155,2489292,1,7,Active Shallow Crust,0.0,89.98769,0.0,07/20/7791 +7.76756,46.79689,9579,12,24,12,56,0,3.65,5.0,fr,57948,191,2489292,1,7,Active Shallow Crust,0.0,89.98769,0.0,12/24/9579 +7.76756,46.79689,2093,4,27,22,22,1,3.65,5.0,fr,57949,41,2489292,1,7,Active Shallow Crust,0.0,89.98769,0.0,04/27/2093 +7.76756,46.79689,9757,4,5,20,37,6,3.65,5.0,fr,57950,195,2489295,1,1,Active Shallow Crust,240.0008,58.01267,0.0,04/05/9757 +7.76756,46.79689,307,4,13,4,24,21,3.65,5.0,fr,57951,6,2489301,1,1,Active Shallow Crust,128.9013,89.96353,0.0,04/13/0307 +7.76756,46.79689,9650,9,3,12,50,22,3.65,27.5,fr,57952,192,2489303,1,1,Active Shallow Crust,128.9013,89.96353,0.0,09/03/9650 +7.76756,46.79689,3713,9,22,5,40,55,3.75,5.0,fr,57953,74,2489304,1,3,Active Shallow Crust,0.0,89.98904,0.0,09/22/3713 +7.76756,46.79689,2753,11,16,1,13,27,3.75,5.0,fr,57954,55,2489304,1,3,Active Shallow Crust,0.0,89.98904,0.0,11/16/2753 +7.76756,46.79689,4436,10,6,14,30,52,3.75,5.0,fr,57955,88,2489304,1,3,Active Shallow Crust,0.0,89.98904,0.0,10/06/4436 +7.76756,46.79689,4848,8,22,16,12,27,3.75,27.5,fr,57956,96,2489306,1,1,Active Shallow Crust,0.0,89.98904,0.0,08/22/4848 +7.76756,46.79689,808,11,8,23,17,23,3.75,27.5,fr,57957,16,2489309,1,1,Active Shallow Crust,240.0079,58.01749,0.0,11/08/0808 +7.76756,46.79689,9605,8,16,8,17,11,3.75,15.0,fr,57958,192,2489314,1,1,Active Shallow Crust,128.8969,89.96693,0.0,08/16/9605 +7.76756,46.79689,4572,7,17,21,10,49,3.85,5.0,fr,57959,91,2489316,1,4,Active Shallow Crust,0.0,89.99023,0.0,07/17/4572 +7.76756,46.79689,9806,1,29,18,50,59,3.85,5.0,fr,57960,196,2489316,1,4,Active Shallow Crust,0.0,89.99023,0.0,01/29/9806 +7.76756,46.79689,4564,8,10,10,43,27,3.85,5.0,fr,57961,91,2489316,1,4,Active Shallow Crust,0.0,89.99023,0.0,08/10/4564 +7.76756,46.79689,6488,11,17,0,46,53,3.85,5.0,fr,57962,129,2489316,1,4,Active Shallow Crust,0.0,89.99023,0.0,11/17/6488 +7.76756,46.79689,732,11,10,5,46,1,3.85,5.0,fr,57963,14,2489322,1,1,Active Shallow Crust,0.0,89.99011,-90.0,11/10/0732 +7.76756,46.79689,5160,4,7,22,5,25,3.95,5.0,fr,57964,103,2489328,1,2,Active Shallow Crust,0.0,89.99129,0.0,04/07/5160 +7.76756,46.79689,8347,1,11,17,4,5,3.95,5.0,fr,57965,166,2489328,1,2,Active Shallow Crust,0.0,89.99129,0.0,01/11/8347 +7.76756,46.79689,45,1,3,4,58,29,3.95,5.0,fr,57966,0,2489334,1,1,Active Shallow Crust,0.0,89.99119,-90.0,01/03/0045 +7.76756,46.79689,5704,3,8,13,6,36,3.95,5.0,fr,57967,114,2489337,1,1,Active Shallow Crust,128.8995,89.99347,0.0,03/08/5704 +7.76756,46.79689,7292,3,3,2,34,55,4.05,5.0,fr,57968,145,2489340,1,2,Active Shallow Crust,0.0,89.98835,0.0,03/03/7292 +7.76756,46.79689,3363,10,13,21,0,5,4.05,5.0,fr,57969,67,2489340,1,2,Active Shallow Crust,0.0,89.98835,0.0,10/13/3363 +7.76756,46.79689,6606,1,6,2,13,54,4.05,5.0,fr,57970,132,2489343,1,1,Active Shallow Crust,240.0056,58.00577,0.0,01/06/6606 +7.76756,46.79689,6047,8,17,10,58,58,4.15,5.0,fr,57971,120,2489352,1,1,Active Shallow Crust,0.0,89.98962,0.0,08/17/6047 +7.76756,46.79689,9328,4,2,23,13,33,4.15,15.0,fr,57972,186,2489353,1,1,Active Shallow Crust,0.0,89.98962,0.0,04/02/9328 +7.76756,46.79689,3280,12,7,1,41,2,4.15,5.0,fr,57973,65,2489355,1,1,Active Shallow Crust,240.008,57.9974,0.0,12/07/3280 +7.76756,46.79689,4974,4,28,14,55,37,4.15,5.0,fr,57974,99,2489358,1,1,Active Shallow Crust,0.0,89.9895,-90.0,04/28/4974 +7.76756,46.79689,5622,6,6,10,5,51,4.35,5.0,fr,57975,112,2489379,1,1,Active Shallow Crust,240.0083,57.99591,0.0,06/06/5622 +7.76756,46.79689,400,9,1,19,18,22,4.45,5.0,fr,57976,7,2489388,1,1,Active Shallow Crust,0.0,89.9902,0.0,09/01/0400 +7.76756,46.79689,4278,9,10,23,50,30,4.45,5.0,fr,57977,85,2489394,1,1,Active Shallow Crust,0.0,89.99009,-90.0,09/10/4278 +7.76756,46.79689,7457,12,23,9,8,47,5.05,15.0,fr,57978,149,2489461,1,1,Active Shallow Crust,0.0,89.99017,0.0,12/23/7457 +7.76756,46.79689,6212,8,20,6,23,9,5.65,5.0,fr,57979,124,2489532,1,1,Active Shallow Crust,0.0,89.99015,0.0,08/20/6212 +7.76756,46.79689,6490,1,1,2,37,54,6.35,15.0,fr,57980,129,2489617,1,1,Active Shallow Crust,0.0,89.9901,0.0,01/01/6490 +-0.36641,45.31776,483,12,25,9,10,48,3.55,15.0,fr,57981,9,2489761,1,1,Active Shallow Crust,0.0,89.98981,0.0,12/25/0483 +-0.36641,45.31776,9932,10,14,4,29,23,3.55,5.0,fr,57982,198,2489766,1,1,Active Shallow Crust,0.0,89.99014,-90.0,10/14/9932 +-0.36641,45.31776,45,10,3,11,12,6,3.65,15.0,fr,57983,0,2489773,1,1,Active Shallow Crust,0.0,89.99013,0.0,10/03/0045 +-0.36641,45.31776,8267,2,9,1,29,39,3.95,5.0,fr,57984,165,2489808,1,2,Active Shallow Crust,0.0,89.98994,0.0,02/09/8267 +-0.36641,45.31776,5941,3,30,10,2,4,3.95,5.0,fr,57985,118,2489808,1,2,Active Shallow Crust,0.0,89.98994,0.0,03/30/5941 +-0.36641,45.31776,6296,11,30,23,36,14,4.05,27.5,fr,57986,125,2489822,1,1,Active Shallow Crust,0.0,89.99003,0.0,11/30/6296 +-0.36641,45.31776,4558,5,7,10,7,50,4.25,27.5,fr,57987,91,2489846,1,1,Active Shallow Crust,0.0,89.98991,0.0,05/07/4558 +3.21592,41.03094,2572,5,30,15,58,17,3.85,5.0,fr,57988,51,2490756,1,1,Active Shallow Crust,0.0,89.98923,0.0,05/30/2572 +3.21592,41.03094,9813,10,8,14,57,22,3.95,15.0,fr,57989,196,2490769,1,2,Active Shallow Crust,0.0,89.9904,0.0,10/08/9813 +3.21592,41.03094,9383,8,7,12,30,56,3.95,15.0,fr,57990,187,2490769,1,2,Active Shallow Crust,0.0,89.9904,0.0,08/07/9383 +3.21592,41.03094,5793,2,10,0,15,18,4.15,5.0,fr,57991,115,2490792,1,1,Active Shallow Crust,0.0,89.99047,0.0,02/10/5793 +3.21592,41.03094,2705,2,27,4,13,44,4.95,15.0,fr,57992,54,2490889,1,1,Active Shallow Crust,0.0,89.99014,0.0,02/27/2705 +0.56029,44.85248,5736,8,25,17,20,2,3.55,5.0,fr,57993,114,2491200,1,1,Active Shallow Crust,0.0,89.99017,0.0,08/25/5736 +0.56029,44.85248,7473,1,15,17,15,6,3.55,5.0,fr,57994,149,2491203,1,1,Active Shallow Crust,240.0122,57.99808,0.0,01/15/7473 +0.56029,44.85248,2502,9,19,16,20,37,3.65,27.5,fr,57995,50,2491214,1,1,Active Shallow Crust,0.0,89.98965,0.0,09/19/2502 +0.56029,44.85248,8897,2,24,8,33,29,3.75,27.5,fr,57996,177,2491235,1,1,Active Shallow Crust,128.8966,89.9674,0.0,02/24/8897 +0.56029,44.85248,9890,12,28,4,0,46,3.85,5.0,fr,57997,197,2491239,1,1,Active Shallow Crust,240.0106,57.99788,0.0,12/28/9890 +0.56029,44.85248,1586,5,2,2,30,28,3.95,27.5,fr,57998,31,2491256,1,1,Active Shallow Crust,0.0,89.98973,-90.0,05/02/1586 +0.56029,44.85248,6551,3,20,6,16,13,4.05,27.5,fr,57999,131,2491262,1,1,Active Shallow Crust,0.0,89.98995,0.0,03/20/6551 +0.56029,44.85248,7182,5,10,22,33,5,4.45,15.0,fr,58000,143,2491315,1,1,Active Shallow Crust,0.0,89.99006,-90.0,05/10/7182 +0.56029,44.85248,1790,12,29,7,53,59,4.75,5.0,fr,58001,35,2491347,1,1,Active Shallow Crust,240.0069,58.00437,0.0,12/29/1790 +-0.76498,45.69093,8446,8,4,0,18,14,3.55,5.0,fr,58002,168,2491680,1,1,Active Shallow Crust,0.0,89.99032,0.0,08/04/8446 +-0.76498,45.69093,9844,8,15,6,34,59,3.55,15.0,fr,58003,196,2491681,1,1,Active Shallow Crust,0.0,89.99032,0.0,08/15/9844 +-0.76498,45.69093,9222,6,29,2,21,29,3.65,15.0,fr,58004,184,2491696,1,1,Active Shallow Crust,240.001,58.01284,0.0,06/29/9222 +-0.76498,45.69093,2138,9,6,8,51,50,3.85,5.0,fr,58005,42,2491716,1,1,Active Shallow Crust,0.0,89.99003,0.0,09/06/2138 +-0.76498,45.69093,4515,7,3,1,15,30,3.85,15.0,fr,58006,90,2491717,1,1,Active Shallow Crust,0.0,89.99003,0.0,07/03/4515 +-0.76498,45.69093,8729,2,12,19,9,12,3.95,5.0,fr,58007,174,2491728,1,1,Active Shallow Crust,0.0,89.99,0.0,02/12/8729 +-0.76498,45.69093,7114,1,1,13,45,10,4.05,5.0,fr,58008,142,2491740,1,2,Active Shallow Crust,0.0,89.9901,0.0,01/01/7114 +-0.76498,45.69093,9021,8,30,1,49,8,4.05,5.0,fr,58009,180,2491740,1,2,Active Shallow Crust,0.0,89.9901,0.0,08/30/9021 +-0.76498,45.69093,3506,1,26,19,14,52,4.05,5.0,fr,58010,70,2491743,1,1,Active Shallow Crust,240.0059,58.00578,0.0,01/26/3506 +-0.76498,45.69093,9630,8,24,20,45,1,4.05,27.5,fr,58011,192,2491745,1,1,Active Shallow Crust,240.0059,58.00575,0.0,08/24/9630 +-0.76498,45.69093,4255,12,9,18,30,2,4.15,15.0,fr,58012,85,2491753,1,1,Active Shallow Crust,0.0,89.98985,0.0,12/09/4255 +-0.7649536,45.69093,3151,9,23,13,54,35,7.05,16.74827,fr,58013,63,2492106,1,1,Active Shallow Crust,360.0,89.99,-90.0,09/23/3151 +-4.91474,48.43059,4175,1,9,23,35,27,3.55,5.0,fr,58014,83,2492160,1,2,Active Shallow Crust,0.0,89.99331,0.0,01/09/4175 +-4.91474,48.43059,8212,7,6,14,28,38,3.55,5.0,fr,58015,164,2492160,1,2,Active Shallow Crust,0.0,89.99331,0.0,07/06/8212 +-4.91474,48.43059,2531,5,3,3,40,19,3.85,5.0,fr,58016,50,2492196,1,1,Active Shallow Crust,0.0,89.99052,0.0,05/03/2531 +-4.91474,48.43059,2384,8,27,13,33,39,4.15,5.0,fr,58017,47,2492232,1,1,Active Shallow Crust,0.0,89.98994,0.0,08/27/2384 +-4.91474,48.43059,1028,4,9,2,33,17,4.35,5.0,fr,58018,20,2492256,1,1,Active Shallow Crust,0.0,89.98934,0.0,04/09/1028 +-4.91474,48.43059,6028,2,14,8,3,8,5.55,5.0,fr,58019,120,2492409,1,1,Active Shallow Crust,128.8745,89.98994,0.0,02/14/6028 +4.89336,42.75042,3098,7,17,19,31,20,3.55,15.0,fr,58020,61,2492647,1,1,Active Shallow Crust,0.0,89.99251,-90.0,07/17/3098 +4.89336,42.75042,3821,7,17,1,32,50,3.65,5.0,fr,58021,76,2492652,1,1,Active Shallow Crust,0.0,89.9868,0.0,07/17/3821 +4.89336,42.75042,5459,8,18,4,22,17,4.05,27.5,fr,58022,109,2492702,1,1,Active Shallow Crust,0.0,89.99167,0.0,08/18/5459 +3.30118,44.64466,1520,9,11,8,11,43,3.55,5.0,fr,58023,30,2493120,1,2,Active Shallow Crust,0.0,89.98923,0.0,09/11/1520 +3.30118,44.64466,7212,6,20,11,43,58,3.55,5.0,fr,58024,144,2493120,1,2,Active Shallow Crust,0.0,89.98923,0.0,06/20/7212 +3.30118,44.64466,9050,3,19,9,41,25,3.55,5.0,fr,58025,180,2493123,1,1,Active Shallow Crust,240.0116,57.99809,0.0,03/19/9050 +3.30118,44.64466,8877,5,17,1,2,27,3.85,5.0,fr,58026,177,2493156,1,1,Active Shallow Crust,0.0,89.98985,0.0,05/17/8877 +3.30118,44.64466,6457,3,23,16,46,1,3.95,5.0,fr,58027,129,2493168,1,1,Active Shallow Crust,0.0,89.99094,0.0,03/23/6457 +3.30118,44.64466,5151,10,28,22,17,23,3.95,15.0,fr,58028,103,2493169,1,1,Active Shallow Crust,0.0,89.99094,0.0,10/28/5151 +3.30118,44.64466,5545,9,14,14,1,49,4.05,15.0,fr,58029,110,2493190,1,1,Active Shallow Crust,128.8913,89.99294,0.0,09/14/5545 +3.30118,44.64466,6660,5,31,14,8,24,4.35,27.5,fr,58030,133,2493218,1,1,Active Shallow Crust,0.0,89.99001,0.0,05/31/6660 +3.30118,44.64466,5851,7,16,1,15,7,4.85,5.0,fr,58031,117,2493276,1,1,Active Shallow Crust,0.0,89.99036,0.0,07/16/5851 +3.30118,44.64466,3926,10,30,5,53,53,5.45,5.0,fr,58032,78,2493351,1,1,Active Shallow Crust,240.0274,57.99823,0.0,10/30/3926 +6.51165,47.68001,4802,7,20,9,21,54,3.55,5.0,fr,58033,96,2493600,1,3,Active Shallow Crust,0.0,89.99321,0.0,07/20/4802 +6.51165,47.68001,7778,7,16,2,28,30,3.55,5.0,fr,58034,155,2493600,1,3,Active Shallow Crust,0.0,89.99321,0.0,07/16/7778 +6.51165,47.68001,9899,12,28,12,13,20,3.55,5.0,fr,58035,197,2493600,1,3,Active Shallow Crust,0.0,89.99321,0.0,12/28/9899 +6.51165,47.68001,8103,10,11,19,56,46,3.55,15.0,fr,58036,162,2493601,1,1,Active Shallow Crust,0.0,89.99321,0.0,10/11/8103 +6.51165,47.68001,2355,4,1,19,40,33,3.55,5.0,fr,58037,47,2493606,1,1,Active Shallow Crust,0.0,89.99313,-90.0,04/01/2355 +6.51165,47.68001,4931,4,16,18,30,49,3.55,15.0,fr,58038,98,2493607,1,1,Active Shallow Crust,0.0,89.99313,-90.0,04/16/4931 +6.51165,47.68001,4290,3,22,10,25,16,3.65,5.0,fr,58039,85,2493612,1,2,Active Shallow Crust,0.0,89.9879,0.0,03/22/4290 +6.51165,47.68001,8678,4,30,22,29,59,3.65,5.0,fr,58040,173,2493612,1,2,Active Shallow Crust,0.0,89.9879,0.0,04/30/8678 +6.51165,47.68001,6429,9,6,11,28,11,3.65,15.0,fr,58041,128,2493613,1,1,Active Shallow Crust,0.0,89.9879,0.0,09/06/6429 +6.51165,47.68001,5775,5,15,14,28,20,3.65,5.0,fr,58042,115,2493615,1,1,Active Shallow Crust,240.0007,58.01261,0.0,05/15/5775 +6.51165,47.68001,734,6,1,21,51,35,3.65,15.0,fr,58043,14,2493622,1,1,Active Shallow Crust,128.9005,89.96355,0.0,06/01/0734 +6.51165,47.68001,4376,4,7,23,33,37,3.75,5.0,fr,58044,87,2493624,1,1,Active Shallow Crust,0.0,89.98921,0.0,04/07/4376 +6.51165,47.68001,3814,1,8,20,20,11,3.75,15.0,fr,58045,76,2493625,1,1,Active Shallow Crust,0.0,89.98921,0.0,01/08/3814 +6.51165,47.68001,9768,7,21,0,5,29,3.75,5.0,fr,58046,195,2493627,1,1,Active Shallow Crust,240.0091,58.01757,0.0,07/21/9768 +6.51165,47.68001,1311,7,10,20,15,46,3.95,5.0,fr,58047,26,2493651,1,1,Active Shallow Crust,240.0197,58.00465,0.0,07/10/1311 +6.51165,47.68001,192,6,27,22,50,57,4.05,27.5,fr,58048,3,2493662,1,1,Active Shallow Crust,0.0,89.98855,0.0,06/27/0192 +6.51165,47.68001,7568,4,30,21,57,39,4.05,5.0,fr,58049,151,2493669,1,1,Active Shallow Crust,128.8902,89.99427,0.0,04/30/7568 +6.51165,47.68001,4202,10,7,17,52,2,4.15,5.0,fr,58050,84,2493678,1,1,Active Shallow Crust,0.0,89.98967,-90.0,10/07/4202 +6.51165,47.68001,3781,8,8,17,27,16,4.25,5.0,fr,58051,75,2493684,1,1,Active Shallow Crust,0.0,89.9909,0.0,08/08/3781 +6.51165,47.68001,8453,12,29,6,47,38,4.25,5.0,fr,58052,169,2493687,1,1,Active Shallow Crust,240.0076,57.99423,0.0,12/29/8453 +6.51165,47.68001,5712,8,13,14,8,16,4.65,5.0,fr,58053,114,2493732,1,1,Active Shallow Crust,0.0,89.99043,0.0,08/13/5712 +6.51165,47.68001,318,1,14,0,59,54,4.65,15.0,fr,58054,6,2493739,1,1,Active Shallow Crust,0.0,89.99032,-90.0,01/14/0318 +6.51165,47.68001,5822,9,29,0,52,28,4.95,5.0,fr,58055,116,2493771,1,1,Active Shallow Crust,240.0127,58.00456,0.0,09/29/5822 +1.1085,50.85855,6443,8,23,17,5,21,3.55,15.0,fr,58056,128,2494090,1,1,Active Shallow Crust,128.8958,89.99364,0.0,08/23/6443 +1.1085,50.85855,9372,2,3,17,29,35,3.75,27.5,fr,58057,187,2494106,1,1,Active Shallow Crust,0.0,89.98989,0.0,02/03/9372 +1.1085,50.85855,3927,9,26,8,8,28,3.85,5.0,fr,58058,78,2494116,1,1,Active Shallow Crust,0.0,89.98986,0.0,09/26/3927 +1.1085,50.85855,2997,4,12,16,31,7,4.05,15.0,fr,58059,59,2494141,1,1,Active Shallow Crust,0.0,89.99016,0.0,04/12/2997 +1.1085,50.85855,62,10,26,10,27,26,4.15,5.0,fr,58060,1,2494152,1,1,Active Shallow Crust,0.0,89.98963,0.0,10/26/0062 +1.1085,50.85855,3950,12,2,14,24,59,4.45,27.5,fr,58061,78,2494190,1,1,Active Shallow Crust,0.0,89.98984,0.0,12/02/3950 +1.1085,50.85855,2291,6,30,11,27,26,4.65,15.0,fr,58062,45,2494213,1,1,Active Shallow Crust,0.0,89.99014,0.0,06/30/2291 +0.21974,50.82004,906,2,25,20,15,3,3.55,5.0,fr,58063,18,2494566,1,1,Active Shallow Crust,0.0,89.98993,-90.0,02/25/0906 +0.21974,50.82004,1183,10,29,4,53,50,3.65,5.0,fr,58064,23,2494572,1,1,Active Shallow Crust,0.0,89.99007,0.0,10/29/1183 +0.21974,50.82004,5453,4,5,5,12,44,3.85,5.0,fr,58065,109,2494596,1,1,Active Shallow Crust,0.0,89.98999,0.0,04/05/5453 +0.21974,50.82004,876,2,12,19,10,12,3.95,5.0,fr,58066,17,2494608,1,1,Active Shallow Crust,0.0,89.98995,0.0,02/12/0876 +0.21974,50.82004,3934,12,25,11,24,53,4.05,27.5,fr,58067,78,2494622,1,1,Active Shallow Crust,0.0,89.99004,0.0,12/25/3934 +0.21974,50.82004,3664,9,4,2,9,46,4.15,15.0,fr,58068,73,2494633,1,1,Active Shallow Crust,0.0,89.99002,0.0,09/04/3664 +0.21974,50.82004,338,9,30,8,54,37,4.65,5.0,fr,58069,6,2494692,1,1,Active Shallow Crust,0.0,89.99001,0.0,09/30/0338 +4.80601,44.59929,5788,5,27,8,45,16,3.55,5.0,fr,58070,115,2495040,1,3,Active Shallow Crust,0.0,89.99282,0.0,05/27/5788 +4.80601,44.59929,9641,3,1,7,21,52,3.55,5.0,fr,58071,192,2495040,1,3,Active Shallow Crust,0.0,89.99282,0.0,03/01/9641 +4.80601,44.59929,4195,3,8,10,49,41,3.55,5.0,fr,58072,83,2495040,1,3,Active Shallow Crust,0.0,89.99282,0.0,03/08/4195 +4.80601,44.59929,3284,1,21,0,10,41,3.55,15.0,fr,58073,65,2495041,1,1,Active Shallow Crust,0.0,89.99282,0.0,01/21/3284 +4.80601,44.59929,6987,8,20,10,42,50,3.55,5.0,fr,58074,139,2495043,1,1,Active Shallow Crust,240.0122,57.99762,0.0,08/20/6987 +4.80601,44.59929,5165,3,25,1,47,43,3.55,15.0,fr,58075,103,2495044,1,1,Active Shallow Crust,240.0122,57.99762,0.0,03/25/5165 +4.80601,44.59929,6290,12,25,2,41,36,3.55,5.0,fr,58076,125,2495049,1,2,Active Shallow Crust,128.8965,89.99282,0.0,12/25/6290 +4.80601,44.59929,3189,4,2,1,11,53,3.55,5.0,fr,58077,63,2495049,1,2,Active Shallow Crust,128.8965,89.99282,0.0,04/02/3189 +4.80601,44.59929,5975,2,17,9,22,5,3.55,27.5,fr,58078,119,2495051,1,1,Active Shallow Crust,128.8965,89.99282,0.0,02/17/5975 +4.80601,44.59929,5247,8,24,15,48,20,3.65,5.0,fr,58079,104,2495052,1,2,Active Shallow Crust,0.0,89.9872,0.0,08/24/5247 +4.80601,44.59929,4055,3,9,9,32,44,3.65,5.0,fr,58080,81,2495052,1,2,Active Shallow Crust,0.0,89.9872,0.0,03/09/4055 +4.80601,44.59929,3243,12,29,7,24,18,3.65,27.5,fr,58081,64,2495054,1,1,Active Shallow Crust,0.0,89.9872,0.0,12/29/3243 +4.80601,44.59929,3796,11,27,5,14,20,3.75,5.0,fr,58082,75,2495064,1,3,Active Shallow Crust,0.0,89.98859,0.0,11/27/3796 +4.80601,44.59929,2818,2,20,7,36,0,3.75,5.0,fr,58083,56,2495064,1,3,Active Shallow Crust,0.0,89.98859,0.0,02/20/2818 +4.80601,44.59929,2074,1,11,3,43,30,3.75,5.0,fr,58084,41,2495064,1,3,Active Shallow Crust,0.0,89.98859,0.0,01/11/2074 +4.80601,44.59929,9612,10,17,22,33,48,3.75,15.0,fr,58085,192,2495065,1,1,Active Shallow Crust,0.0,89.98859,0.0,10/17/9612 +4.80601,44.59929,2951,2,23,13,29,54,3.85,5.0,fr,58086,59,2495076,1,2,Active Shallow Crust,0.0,89.98983,0.0,02/23/2951 +4.80601,44.59929,4458,2,21,3,35,25,3.85,5.0,fr,58087,89,2495076,1,2,Active Shallow Crust,0.0,89.98983,0.0,02/21/4458 +4.80601,44.59929,7985,4,29,1,18,44,3.85,27.5,fr,58088,159,2495078,1,1,Active Shallow Crust,0.0,89.98983,0.0,04/29/7985 +4.80601,44.59929,5753,11,5,5,45,20,3.85,5.0,fr,58089,115,2495079,1,1,Active Shallow Crust,240.0108,57.9978,0.0,11/05/5753 +4.80601,44.59929,3821,1,21,11,18,3,3.95,5.0,fr,58090,76,2495088,1,1,Active Shallow Crust,0.0,89.99094,0.0,01/21/3821 +4.80601,44.59929,8640,1,26,19,39,6,3.95,15.0,fr,58091,172,2495089,1,1,Active Shallow Crust,0.0,89.99094,0.0,01/26/8640 +4.80601,44.59929,9262,6,9,20,7,48,4.25,27.5,fr,58092,185,2495126,1,1,Active Shallow Crust,0.0,89.99038,0.0,06/09/9262 +4.80601,44.59929,9405,5,7,12,16,33,4.35,15.0,fr,58093,188,2495140,1,1,Active Shallow Crust,240.0077,57.99597,0.0,05/07/9405 +4.80601,44.59929,4849,1,18,14,25,42,4.35,5.0,fr,58094,96,2495145,1,1,Active Shallow Crust,128.8985,89.98242,0.0,01/18/4849 +4.80601,44.59929,1272,6,15,12,9,33,4.65,5.0,fr,58095,25,2495172,1,1,Active Shallow Crust,0.0,89.98988,0.0,06/15/1272 +4.80601,44.59929,5101,8,26,16,7,13,4.65,15.0,fr,58096,102,2495179,1,1,Active Shallow Crust,0.0,89.98976,-90.0,08/26/5101 +4.80601,44.59929,7534,5,25,17,26,50,4.85,5.0,fr,58097,150,2495199,1,1,Active Shallow Crust,240.0163,58.00208,0.0,05/25/7534 +4.80601,44.59929,3369,3,16,23,11,13,4.95,5.0,fr,58098,67,2495217,1,1,Active Shallow Crust,128.8905,89.99012,0.0,03/16/3369 +4.80601,44.59929,7328,3,16,22,42,41,5.95,5.0,fr,58099,146,2495328,1,1,Active Shallow Crust,0.0,89.99003,0.0,03/16/7328 +0.26251,48.71823,6111,11,29,11,57,14,3.65,5.0,fr,58100,122,2495532,1,1,Active Shallow Crust,0.0,89.98999,0.0,11/29/6111 +0.26251,48.71823,7830,12,20,20,57,47,3.65,5.0,fr,58101,156,2495538,1,1,Active Shallow Crust,0.0,89.98988,-90.0,12/20/7830 +0.26251,48.71823,6020,2,13,0,43,34,3.95,27.5,fr,58102,120,2495573,1,1,Active Shallow Crust,240.0201,58.00504,0.0,02/13/6020 +0.26251,48.71823,2096,9,5,9,23,39,4.25,5.0,fr,58103,41,2495604,1,1,Active Shallow Crust,0.0,89.98997,0.0,09/05/2096 +0.26251,48.71823,4940,9,2,1,52,59,4.45,5.0,fr,58104,98,2495628,1,1,Active Shallow Crust,0.0,89.98997,0.0,09/02/4940 +-2.40304,50.7988,637,7,19,20,34,13,3.85,5.0,fr,58105,12,2496036,1,1,Active Shallow Crust,0.0,89.99097,0.0,07/19/0637 +-2.40304,50.7988,9479,1,5,10,52,36,4.35,5.0,fr,58106,189,2496096,1,1,Active Shallow Crust,0.0,89.98985,0.0,01/05/9479 +4.28747,50.52213,542,1,1,23,33,38,3.55,5.0,fr,58107,10,2496480,1,3,Active Shallow Crust,0.0,89.98717,0.0,01/01/0542 +4.28747,50.52213,3403,4,1,14,8,38,3.55,5.0,fr,58108,68,2496480,1,3,Active Shallow Crust,0.0,89.98717,0.0,04/01/3403 +4.28747,50.52213,8622,12,16,16,1,52,3.55,5.0,fr,58109,172,2496480,1,3,Active Shallow Crust,0.0,89.98717,0.0,12/16/8622 +4.28747,50.52213,4506,2,17,1,35,55,3.55,15.0,fr,58110,90,2496481,1,1,Active Shallow Crust,0.0,89.98717,0.0,02/17/4506 +4.28747,50.52213,6083,3,7,22,5,42,3.55,27.5,fr,58111,121,2496482,1,1,Active Shallow Crust,0.0,89.98717,0.0,03/07/6083 +4.28747,50.52213,5415,2,10,10,39,15,3.55,5.0,fr,58112,108,2496483,1,1,Active Shallow Crust,240.0132,57.99796,0.0,02/10/5415 +4.28747,50.52213,3672,1,28,3,26,42,3.55,5.0,fr,58113,73,2496489,1,1,Active Shallow Crust,128.8956,89.99359,0.0,01/28/3672 +4.28747,50.52213,839,3,4,2,47,32,3.65,5.0,fr,58114,16,2496492,1,3,Active Shallow Crust,0.0,89.98857,0.0,03/04/0839 +4.28747,50.52213,6487,7,4,13,54,52,3.65,5.0,fr,58115,129,2496492,1,3,Active Shallow Crust,0.0,89.98857,0.0,07/04/6487 +4.28747,50.52213,4829,10,13,19,12,15,3.65,5.0,fr,58116,96,2496492,1,3,Active Shallow Crust,0.0,89.98857,0.0,10/13/4829 +4.28747,50.52213,9058,9,13,20,41,3,3.65,15.0,fr,58117,181,2496493,1,1,Active Shallow Crust,0.0,89.98857,0.0,09/13/9058 +4.28747,50.52213,7000,10,27,16,22,3,3.65,27.5,fr,58118,139,2496494,1,1,Active Shallow Crust,0.0,89.98857,0.0,10/27/7000 +4.28747,50.52213,8812,9,3,5,45,52,3.65,5.0,fr,58119,176,2496498,1,1,Active Shallow Crust,0.0,89.98844,-90.0,09/03/8812 +4.28747,50.52213,6491,8,11,12,57,5,3.65,15.0,fr,58120,129,2496499,1,1,Active Shallow Crust,0.0,89.98844,-90.0,08/11/6491 +4.28747,50.52213,2370,6,18,20,23,24,3.75,5.0,fr,58121,47,2496504,1,3,Active Shallow Crust,0.0,89.98981,0.0,06/18/2370 +4.28747,50.52213,6022,1,20,17,46,34,3.75,5.0,fr,58122,120,2496504,1,3,Active Shallow Crust,0.0,89.98981,0.0,01/20/6022 +4.28747,50.52213,3096,8,29,15,1,31,3.75,5.0,fr,58123,61,2496504,1,3,Active Shallow Crust,0.0,89.98981,0.0,08/29/3096 +4.28747,50.52213,2015,8,11,4,22,57,3.75,15.0,fr,58124,40,2496505,1,1,Active Shallow Crust,0.0,89.98981,0.0,08/11/2015 +4.28747,50.52213,1052,12,18,0,18,55,3.75,27.5,fr,58125,21,2496506,1,1,Active Shallow Crust,0.0,89.98981,0.0,12/18/1052 +4.28747,50.52213,1587,9,14,9,21,30,3.75,15.0,fr,58126,31,2496514,1,1,Active Shallow Crust,128.8957,89.96756,0.0,09/14/1587 +4.28747,50.52213,4660,10,11,4,55,21,3.85,5.0,fr,58127,93,2496516,1,2,Active Shallow Crust,0.0,89.99092,0.0,10/11/4660 +4.28747,50.52213,7603,11,13,6,54,42,3.85,5.0,fr,58128,152,2496516,1,2,Active Shallow Crust,0.0,89.99092,0.0,11/13/7603 +4.28747,50.52213,246,12,11,9,46,16,3.85,15.0,fr,58129,4,2496517,1,2,Active Shallow Crust,0.0,89.99092,0.0,12/11/0246 +4.28747,50.52213,374,6,7,1,56,40,3.85,15.0,fr,58130,7,2496517,1,2,Active Shallow Crust,0.0,89.99092,0.0,06/07/0374 +4.28747,50.52213,4332,3,10,21,2,45,3.85,15.0,fr,58131,86,2496520,1,1,Active Shallow Crust,240.0109,57.99822,0.0,03/10/4332 +4.28747,50.52213,208,6,6,21,55,17,3.85,5.0,fr,58132,4,2496525,1,1,Active Shallow Crust,128.8946,89.99319,0.0,06/06/0208 +4.28747,50.52213,6004,8,6,0,26,20,3.85,15.0,fr,58133,120,2496526,1,1,Active Shallow Crust,128.8946,89.99319,0.0,08/06/6004 +4.28747,50.52213,2147,7,18,6,59,14,3.95,5.0,fr,58134,42,2496528,1,3,Active Shallow Crust,0.0,89.99191,0.0,07/18/2147 +4.28747,50.52213,4758,8,11,1,42,54,3.95,5.0,fr,58135,95,2496528,1,3,Active Shallow Crust,0.0,89.99191,0.0,08/11/4758 +4.28747,50.52213,5127,3,21,9,41,18,3.95,5.0,fr,58136,102,2496528,1,3,Active Shallow Crust,0.0,89.99191,0.0,03/21/5127 +4.28747,50.52213,9876,8,26,23,48,45,3.95,5.0,fr,58137,197,2496531,1,1,Active Shallow Crust,240.0201,58.0055,0.0,08/26/9876 +4.28747,50.52213,2872,5,15,13,39,17,3.95,15.0,fr,58138,57,2496532,1,1,Active Shallow Crust,240.0201,58.0055,0.0,05/15/2872 +4.28747,50.52213,6571,7,24,3,4,4,3.95,5.0,fr,58139,131,2496534,1,1,Active Shallow Crust,0.0,89.99181,-90.0,07/24/6571 +4.28747,50.52213,3019,4,28,1,50,9,4.05,5.0,fr,58140,60,2496540,1,2,Active Shallow Crust,0.0,89.98918,0.0,04/28/3019 +4.28747,50.52213,7929,3,18,18,12,46,4.05,5.0,fr,58141,158,2496540,1,2,Active Shallow Crust,0.0,89.98918,0.0,03/18/7929 +4.28747,50.52213,7443,6,8,21,23,1,4.05,5.0,fr,58142,148,2496546,1,1,Active Shallow Crust,0.0,89.98906,-90.0,06/08/7443 +4.28747,50.52213,7448,9,9,1,30,17,4.15,5.0,fr,58143,148,2496552,1,1,Active Shallow Crust,0.0,89.99036,0.0,09/09/7448 +4.28747,50.52213,1861,4,3,2,31,15,4.35,5.0,fr,58144,37,2496576,1,2,Active Shallow Crust,0.0,89.98979,0.0,04/03/1861 +4.28747,50.52213,4514,12,28,15,14,32,4.35,5.0,fr,58145,90,2496576,1,2,Active Shallow Crust,0.0,89.98979,0.0,12/28/4514 +4.28747,50.52213,63,9,29,10,35,11,4.35,15.0,fr,58146,1,2496577,1,1,Active Shallow Crust,0.0,89.98979,0.0,09/29/0063 +4.28747,50.52213,8310,3,15,20,46,41,4.45,5.0,fr,58147,166,2496588,1,1,Active Shallow Crust,0.0,89.9909,0.0,03/15/8310 +4.28747,50.52213,8306,6,20,10,47,14,4.65,5.0,fr,58148,166,2496612,1,2,Active Shallow Crust,0.0,89.98916,0.0,06/20/8306 +4.28747,50.52213,9884,12,14,19,56,14,4.65,5.0,fr,58149,197,2496612,1,2,Active Shallow Crust,0.0,89.98916,0.0,12/14/9884 +4.28747,50.52213,609,5,30,5,27,30,4.75,15.0,fr,58150,12,2496625,1,1,Active Shallow Crust,0.0,89.99033,0.0,05/30/0609 +4.28747,50.52213,1369,9,24,3,31,10,5.15,15.0,fr,58151,27,2496673,1,1,Active Shallow Crust,0.0,89.98984,0.0,09/24/1369 +4.28747,50.52213,1969,6,2,14,52,58,5.25,5.0,fr,58152,39,2496684,1,1,Active Shallow Crust,0.0,89.99004,0.0,06/02/1969 +4.287476,50.52213,622,2,18,9,22,4,6.35,7.567806,fr,58153,12,2496816,1,1,Active Shallow Crust,0.0,89.99003,0.0,02/18/0622 +-0.11574,41.23795,1301,4,1,16,40,12,3.65,5.0,fr,58154,26,2496975,1,1,Active Shallow Crust,240.0006,58.01281,0.0,04/01/1301 +7.1975,49.90897,8894,5,31,20,40,11,3.55,15.0,fr,58155,177,2497441,1,1,Active Shallow Crust,0.0,89.98701,0.0,05/31/8894 +7.1975,49.90897,8809,11,30,4,34,42,3.55,5.0,fr,58156,176,2497443,1,1,Active Shallow Crust,240.0125,57.99867,0.0,11/30/8809 +7.1975,49.90897,6569,11,28,21,26,5,3.75,5.0,fr,58157,131,2497467,1,1,Active Shallow Crust,240.009,58.01743,0.0,11/28/6569 +7.1975,49.90897,9048,9,2,20,57,13,3.75,15.0,fr,58158,180,2497468,1,1,Active Shallow Crust,240.009,58.01743,0.0,09/02/9048 +7.1975,49.90897,8282,1,13,0,10,31,3.85,5.0,fr,58159,165,2497476,1,1,Active Shallow Crust,0.0,89.99081,0.0,01/13/8282 +7.1975,49.90897,9011,12,13,21,58,53,4.05,5.0,fr,58160,180,2497500,1,1,Active Shallow Crust,0.0,89.98904,0.0,12/13/9011 +8.05715,46.30906,4359,9,14,9,13,57,3.55,5.0,fr,58161,87,2497920,1,5,Active Shallow Crust,0.0,89.98607,0.0,09/14/4359 +8.05715,46.30906,8154,10,28,12,26,49,3.55,5.0,fr,58162,163,2497920,1,5,Active Shallow Crust,0.0,89.98607,0.0,10/28/8154 +8.05715,46.30906,6814,1,12,14,19,10,3.55,5.0,fr,58163,136,2497920,1,5,Active Shallow Crust,0.0,89.98607,0.0,01/12/6814 +8.05715,46.30906,9495,1,25,0,44,53,3.55,5.0,fr,58164,189,2497920,1,5,Active Shallow Crust,0.0,89.98607,0.0,01/25/9495 +8.05715,46.30906,3551,4,28,10,44,38,3.55,5.0,fr,58165,71,2497920,1,5,Active Shallow Crust,0.0,89.98607,0.0,04/28/3551 +8.05715,46.30906,6292,6,21,11,47,27,3.55,15.0,fr,58166,125,2497921,1,1,Active Shallow Crust,0.0,89.98607,0.0,06/21/6292 +8.05715,46.30906,2523,2,20,16,12,36,3.55,5.0,fr,58167,50,2497926,1,3,Active Shallow Crust,0.0,89.98591,-90.0,02/20/2523 +8.05715,46.30906,3976,1,2,2,47,25,3.55,5.0,fr,58168,79,2497926,1,3,Active Shallow Crust,0.0,89.98591,-90.0,01/02/3976 +8.05715,46.30906,3362,12,2,12,16,48,3.55,5.0,fr,58169,67,2497926,1,3,Active Shallow Crust,0.0,89.98591,-90.0,12/02/3362 +8.05715,46.30906,6874,4,14,18,49,19,3.55,5.0,fr,58170,137,2497929,1,1,Active Shallow Crust,128.8951,90.0,0.0,04/14/6874 +8.05715,46.30906,8849,8,22,15,33,41,3.65,5.0,fr,58171,176,2497932,1,7,Active Shallow Crust,0.0,89.98759,0.0,08/22/8849 +8.05715,46.30906,2799,6,7,11,31,18,3.65,5.0,fr,58172,55,2497932,1,7,Active Shallow Crust,0.0,89.98759,0.0,06/07/2799 +8.05715,46.30906,9246,12,4,8,30,5,3.65,5.0,fr,58173,184,2497932,1,7,Active Shallow Crust,0.0,89.98759,0.0,12/04/9246 +8.05715,46.30906,7128,5,11,19,55,58,3.65,5.0,fr,58174,142,2497932,1,7,Active Shallow Crust,0.0,89.98759,0.0,05/11/7128 +8.05715,46.30906,7205,1,28,17,51,41,3.65,5.0,fr,58175,144,2497932,1,7,Active Shallow Crust,0.0,89.98759,0.0,01/28/7205 +8.05715,46.30906,5720,3,7,19,46,43,3.65,5.0,fr,58176,114,2497932,1,7,Active Shallow Crust,0.0,89.98759,0.0,03/07/5720 +8.05715,46.30906,4984,7,1,5,20,48,3.65,5.0,fr,58177,99,2497932,1,7,Active Shallow Crust,0.0,89.98759,0.0,07/01/4984 +8.05715,46.30906,9330,10,13,4,41,50,3.65,5.0,fr,58178,186,2497935,1,2,Active Shallow Crust,240.0013,58.01377,0.0,10/13/9330 +8.05715,46.30906,5366,3,8,5,33,18,3.65,5.0,fr,58179,107,2497935,1,2,Active Shallow Crust,240.0013,58.01377,0.0,03/08/5366 +8.05715,46.30906,6073,5,29,14,53,6,3.65,5.0,fr,58180,121,2497938,1,2,Active Shallow Crust,0.0,89.98744,-90.0,05/29/6073 +8.05715,46.30906,4174,6,28,11,14,53,3.65,5.0,fr,58181,83,2497938,1,2,Active Shallow Crust,0.0,89.98744,-90.0,06/28/4174 +8.05715,46.30906,4233,9,16,22,27,51,3.65,5.0,fr,58182,84,2497941,1,1,Active Shallow Crust,128.8999,89.96352,0.0,09/16/4233 +8.05715,46.30906,1692,11,19,1,20,56,3.75,5.0,fr,58183,33,2497944,1,3,Active Shallow Crust,0.0,89.98894,0.0,11/19/1692 +8.05715,46.30906,7817,3,16,2,42,1,3.75,5.0,fr,58184,156,2497944,1,3,Active Shallow Crust,0.0,89.98894,0.0,03/16/7817 +8.05715,46.30906,1979,6,13,18,6,42,3.75,5.0,fr,58185,39,2497944,1,3,Active Shallow Crust,0.0,89.98894,0.0,06/13/1979 +8.05715,46.30906,1612,11,7,5,24,54,3.75,15.0,fr,58186,32,2497945,1,1,Active Shallow Crust,0.0,89.98894,0.0,11/07/1612 +8.05715,46.30906,9627,2,23,17,44,20,3.75,27.5,fr,58187,192,2497946,1,1,Active Shallow Crust,0.0,89.98894,0.0,02/23/9627 +8.05715,46.30906,8261,9,19,6,21,22,3.75,15.0,fr,58188,165,2497951,1,1,Active Shallow Crust,0.0,89.98881,-90.0,09/19/8261 +8.05715,46.30906,6733,12,5,8,53,30,3.85,5.0,fr,58189,134,2497956,1,2,Active Shallow Crust,0.0,89.99014,0.0,12/05/6733 +8.05715,46.30906,4716,9,2,2,14,3,3.85,5.0,fr,58190,94,2497956,1,2,Active Shallow Crust,0.0,89.99014,0.0,09/02/4716 +8.05715,46.30906,6038,7,9,8,27,0,3.85,15.0,fr,58191,120,2497957,1,2,Active Shallow Crust,0.0,89.99014,0.0,07/09/6038 +8.05715,46.30906,3811,11,16,11,23,42,3.85,15.0,fr,58192,76,2497957,1,2,Active Shallow Crust,0.0,89.99014,0.0,11/16/3811 +8.05715,46.30906,7628,9,21,5,48,43,3.85,27.5,fr,58193,152,2497958,1,1,Active Shallow Crust,0.0,89.99014,0.0,09/21/7628 +8.05715,46.30906,2121,4,4,2,55,22,3.95,5.0,fr,58194,42,2497968,1,5,Active Shallow Crust,0.0,89.99121,0.0,04/04/2121 +8.05715,46.30906,5313,10,10,3,8,46,3.95,5.0,fr,58195,106,2497968,1,5,Active Shallow Crust,0.0,89.99121,0.0,10/10/5313 +8.05715,46.30906,4888,1,3,12,55,44,3.95,5.0,fr,58196,97,2497968,1,5,Active Shallow Crust,0.0,89.99121,0.0,01/03/4888 +8.05715,46.30906,4734,1,1,9,49,16,3.95,5.0,fr,58197,94,2497968,1,5,Active Shallow Crust,0.0,89.99121,0.0,01/01/4734 +8.05715,46.30906,7424,2,7,5,31,54,3.95,5.0,fr,58198,148,2497968,1,5,Active Shallow Crust,0.0,89.99121,0.0,02/07/7424 +8.05715,46.30906,4950,10,3,6,14,38,3.95,5.0,fr,58199,98,2497971,1,3,Active Shallow Crust,240.0192,58.00506,0.0,10/03/4950 +8.05715,46.30906,3720,11,11,7,41,9,3.95,5.0,fr,58200,74,2497971,1,3,Active Shallow Crust,240.0192,58.00506,0.0,11/11/3720 +8.05715,46.30906,8045,3,13,22,10,4,3.95,5.0,fr,58201,160,2497971,1,3,Active Shallow Crust,240.0192,58.00506,0.0,03/13/8045 +8.05715,46.30906,7210,2,26,20,32,34,4.05,5.0,fr,58202,144,2497980,1,8,Active Shallow Crust,0.0,89.99216,0.0,02/26/7210 +8.05715,46.30906,8619,4,17,5,11,27,4.05,5.0,fr,58203,172,2497980,1,8,Active Shallow Crust,0.0,89.99216,0.0,04/17/8619 +8.05715,46.30906,3844,8,26,15,5,33,4.05,5.0,fr,58204,76,2497980,1,8,Active Shallow Crust,0.0,89.99216,0.0,08/26/3844 +8.05715,46.30906,1363,3,10,0,41,47,4.05,5.0,fr,58205,27,2497980,1,8,Active Shallow Crust,0.0,89.99216,0.0,03/10/1363 +8.05715,46.30906,2694,4,8,15,26,27,4.05,5.0,fr,58206,53,2497980,1,8,Active Shallow Crust,0.0,89.99216,0.0,04/08/2694 +8.05715,46.30906,9319,2,8,2,19,12,4.05,5.0,fr,58207,186,2497980,1,8,Active Shallow Crust,0.0,89.99216,0.0,02/08/9319 +8.05715,46.30906,7423,1,29,23,1,26,4.05,5.0,fr,58208,148,2497980,1,8,Active Shallow Crust,0.0,89.99216,0.0,01/29/7423 +8.05715,46.30906,9822,8,19,2,50,36,4.05,5.0,fr,58209,196,2497980,1,8,Active Shallow Crust,0.0,89.99216,0.0,08/19/9822 +8.05715,46.30906,1786,7,26,2,12,21,4.15,5.0,fr,58210,35,2497992,1,1,Active Shallow Crust,0.0,89.99302,0.0,07/26/1786 +8.05715,46.30906,7051,10,19,22,54,24,4.15,15.0,fr,58211,141,2497993,1,1,Active Shallow Crust,0.0,89.99302,0.0,10/19/7051 +8.05715,46.30906,9940,2,18,11,8,0,4.25,5.0,fr,58212,198,2498004,1,1,Active Shallow Crust,0.0,89.98756,0.0,02/18/9940 +8.05715,46.30906,2496,8,24,23,10,6,4.25,15.0,fr,58213,49,2498005,1,1,Active Shallow Crust,0.0,89.98756,0.0,08/24/2496 +8.05715,46.30906,312,10,9,4,57,16,4.25,5.0,fr,58214,6,2498007,1,1,Active Shallow Crust,240.0079,57.99382,0.0,10/09/0312 +8.05715,46.30906,4982,3,20,22,6,33,4.35,5.0,fr,58215,99,2498016,1,4,Active Shallow Crust,0.0,89.98891,0.0,03/20/4982 +8.05715,46.30906,8243,7,20,12,24,5,4.35,5.0,fr,58216,164,2498016,1,4,Active Shallow Crust,0.0,89.98891,0.0,07/20/8243 +8.05715,46.30906,961,1,12,14,6,49,4.35,5.0,fr,58217,19,2498016,1,4,Active Shallow Crust,0.0,89.98891,0.0,01/12/0961 +8.05715,46.30906,9286,12,13,6,21,58,4.35,5.0,fr,58218,185,2498016,1,4,Active Shallow Crust,0.0,89.98891,0.0,12/13/9286 +8.05715,46.30906,5999,3,5,23,26,5,4.35,15.0,fr,58219,119,2498017,1,2,Active Shallow Crust,0.0,89.98891,0.0,03/05/5999 +8.05715,46.30906,6567,9,19,17,31,44,4.35,15.0,fr,58220,131,2498017,1,2,Active Shallow Crust,0.0,89.98891,0.0,09/19/6567 +8.05715,46.30906,2200,4,5,11,46,23,4.45,15.0,fr,58221,43,2498035,1,1,Active Shallow Crust,0.0,89.99,-90.0,04/05/2200 +8.05715,46.30906,6512,1,4,12,47,25,4.55,5.0,fr,58222,130,2498040,1,2,Active Shallow Crust,0.0,89.99119,0.0,01/04/6512 +8.05715,46.30906,6669,11,24,20,11,6,4.55,5.0,fr,58223,133,2498040,1,2,Active Shallow Crust,0.0,89.99119,0.0,11/24/6669 +8.05715,46.30906,3949,6,21,18,18,21,4.55,15.0,fr,58224,78,2498041,1,1,Active Shallow Crust,0.0,89.99119,0.0,06/21/3949 +8.05715,46.30906,900,1,23,2,27,56,4.55,5.0,fr,58225,17,2498049,1,1,Active Shallow Crust,128.894,89.9865,0.0,01/23/0900 +8.05715,46.30906,2458,10,20,4,11,11,4.75,5.0,fr,58226,49,2498064,1,1,Active Shallow Crust,0.0,89.9895,0.0,10/20/2458 +8.057162,46.30906,6410,1,2,17,18,57,6.65,10.68981,fr,58227,128,2498292,1,1,Active Shallow Crust,0.0,89.98997,0.0,01/02/6410 +9.47911,49.52549,921,2,15,4,35,23,3.75,5.0,fr,58228,18,2498427,1,1,Active Shallow Crust,240.0094,58.0171,0.0,02/15/0921 +9.47911,49.52549,1639,3,8,10,13,24,3.85,5.0,fr,58229,32,2498436,1,1,Active Shallow Crust,0.0,89.99073,0.0,03/08/1639 +9.47911,49.52549,3889,2,14,19,18,58,5.25,15.0,fr,58230,77,2498605,1,1,Active Shallow Crust,0.0,89.99075,0.0,02/14/3889 +0.05988,45.75909,3250,8,4,9,53,15,3.55,5.0,fr,58231,64,2498880,1,3,Active Shallow Crust,0.0,89.99,0.0,08/04/3250 +0.05988,45.75909,1437,6,12,15,34,16,3.55,5.0,fr,58232,28,2498880,1,3,Active Shallow Crust,0.0,89.99,0.0,06/12/1437 +0.05988,45.75909,5666,1,25,23,28,19,3.55,5.0,fr,58233,113,2498880,1,3,Active Shallow Crust,0.0,89.99,0.0,01/25/5666 +0.05988,45.75909,2774,6,6,16,36,36,3.55,15.0,fr,58234,55,2498887,1,1,Active Shallow Crust,0.0,89.98999,-90.0,06/06/2774 +0.05988,45.75909,7262,1,8,19,4,39,3.55,5.0,fr,58235,145,2498889,1,3,Active Shallow Crust,128.8963,89.99374,0.0,01/08/7262 +0.05988,45.75909,4085,9,9,15,54,33,3.55,5.0,fr,58236,81,2498889,1,3,Active Shallow Crust,128.8963,89.99374,0.0,09/09/4085 +0.05988,45.75909,6400,3,9,11,16,27,3.55,5.0,fr,58237,127,2498889,1,3,Active Shallow Crust,128.8963,89.99374,0.0,03/09/6400 +0.05988,45.75909,1533,12,16,15,57,11,3.65,5.0,fr,58238,30,2498892,1,2,Active Shallow Crust,0.0,89.99001,0.0,12/16/1533 +0.05988,45.75909,6000,1,9,6,27,18,3.65,5.0,fr,58239,119,2498892,1,2,Active Shallow Crust,0.0,89.99001,0.0,01/09/6000 +0.05988,45.75909,4993,1,23,1,48,35,3.65,27.5,fr,58240,99,2498894,1,1,Active Shallow Crust,0.0,89.99001,0.0,01/23/4993 +0.05988,45.75909,2738,2,28,1,51,53,3.75,5.0,fr,58241,54,2498904,1,3,Active Shallow Crust,0.0,89.99001,0.0,02/28/2738 +0.05988,45.75909,6674,6,19,14,34,59,3.75,5.0,fr,58242,133,2498904,1,3,Active Shallow Crust,0.0,89.99001,0.0,06/19/6674 +0.05988,45.75909,8875,1,8,4,9,25,3.75,5.0,fr,58243,177,2498904,1,3,Active Shallow Crust,0.0,89.99001,0.0,01/08/8875 +0.05988,45.75909,4179,7,7,9,2,55,3.75,15.0,fr,58244,83,2498914,1,1,Active Shallow Crust,128.8967,89.96735,0.0,07/07/4179 +0.05988,45.75909,1580,11,25,9,6,52,3.85,15.0,fr,58245,31,2498917,1,4,Active Shallow Crust,0.0,89.99,0.0,11/25/1580 +0.05988,45.75909,8813,12,13,11,24,8,3.85,15.0,fr,58246,176,2498917,1,4,Active Shallow Crust,0.0,89.99,0.0,12/13/8813 +0.05988,45.75909,3546,4,5,7,16,53,3.85,15.0,fr,58247,70,2498917,1,4,Active Shallow Crust,0.0,89.99,0.0,04/05/3546 +0.05988,45.75909,1413,7,29,20,23,49,3.85,15.0,fr,58248,28,2498917,1,4,Active Shallow Crust,0.0,89.99,0.0,07/29/1413 +0.05988,45.75909,954,4,20,12,19,53,3.85,5.0,fr,58249,19,2498919,1,1,Active Shallow Crust,240.0107,57.99779,0.0,04/20/0954 +0.05988,45.75909,940,11,18,6,30,5,3.85,5.0,fr,58250,18,2498922,1,1,Active Shallow Crust,0.0,89.99001,-90.0,11/18/0940 +0.05988,45.75909,1100,4,7,7,18,57,3.95,5.0,fr,58251,21,2498934,1,1,Active Shallow Crust,0.0,89.99,-90.0,04/07/1100 +0.05988,45.75909,7911,4,6,18,29,57,3.95,5.0,fr,58252,158,2498937,1,1,Active Shallow Crust,128.9005,89.99372,0.0,04/06/7911 +0.05988,45.75909,472,10,22,8,4,35,4.05,5.0,fr,58253,9,2498940,1,1,Active Shallow Crust,0.0,89.98998,0.0,10/22/0472 +0.05988,45.75909,4755,12,10,22,9,8,4.45,27.5,fr,58254,95,2498990,1,1,Active Shallow Crust,0.0,89.99,0.0,12/10/4755 +0.05988,45.75909,5952,10,15,10,24,46,4.45,15.0,fr,58255,119,2498995,1,1,Active Shallow Crust,0.0,89.99,-90.0,10/15/5952 +0.05988,45.75909,7228,8,24,19,14,45,4.45,5.0,fr,58256,144,2498997,1,1,Active Shallow Crust,128.8924,89.99372,0.0,08/24/7228 +0.05988,45.75909,9491,2,17,16,20,35,4.55,15.0,fr,58257,189,2499001,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/17/9491 +0.05988,45.75909,5399,8,13,6,43,5,4.65,5.0,fr,58258,107,2499021,1,1,Active Shallow Crust,128.8913,89.98701,0.0,08/13/5399 +0.05988,45.75909,4369,10,30,21,49,22,4.65,15.0,fr,58259,87,2499022,1,1,Active Shallow Crust,128.8913,89.98701,0.0,10/30/4369 +0.05988,45.75909,2021,11,1,6,47,32,4.75,5.0,fr,58260,40,2499024,1,2,Active Shallow Crust,0.0,89.99001,0.0,11/01/2021 +0.05988,45.75909,3861,1,20,12,15,16,4.75,5.0,fr,58261,77,2499024,1,2,Active Shallow Crust,0.0,89.99001,0.0,01/20/3861 +0.05988,45.75909,1672,7,31,22,28,29,4.85,15.0,fr,58262,33,2499040,1,1,Active Shallow Crust,240.0168,58.00227,0.0,07/31/1672 +0.05988,45.75909,9283,7,24,5,37,10,4.95,5.0,fr,58263,185,2499048,1,1,Active Shallow Crust,0.0,89.99,0.0,07/24/9283 +0.05988,45.75909,9211,6,21,16,42,0,5.05,5.0,fr,58264,184,2499060,1,1,Active Shallow Crust,0.0,89.99,0.0,06/21/9211 +4.42442,50.41848,2724,4,9,23,44,46,3.55,5.0,fr,58265,54,2499360,1,2,Active Shallow Crust,0.0,89.98715,0.0,04/09/2724 +4.42442,50.41848,1425,5,19,1,27,57,3.55,5.0,fr,58266,28,2499360,1,2,Active Shallow Crust,0.0,89.98715,0.0,05/19/1425 +4.42442,50.41848,4932,1,28,4,36,40,3.55,15.0,fr,58267,98,2499361,1,1,Active Shallow Crust,0.0,89.98715,0.0,01/28/4932 +4.42442,50.41848,4442,2,6,7,7,51,3.55,5.0,fr,58268,88,2499363,1,2,Active Shallow Crust,240.013,57.99745,0.0,02/06/4442 +4.42442,50.41848,5535,10,22,6,14,27,3.55,5.0,fr,58269,110,2499363,1,2,Active Shallow Crust,240.013,57.99745,0.0,10/22/5535 +4.42442,50.41848,3779,7,4,15,31,57,3.55,27.5,fr,58270,75,2499365,1,1,Active Shallow Crust,240.013,57.99735,0.0,07/04/3779 +4.42442,50.41848,6356,2,28,1,49,35,3.65,5.0,fr,58271,127,2499372,1,3,Active Shallow Crust,0.0,89.98855,0.0,02/28/6356 +4.42442,50.41848,531,8,27,21,52,43,3.65,5.0,fr,58272,10,2499372,1,3,Active Shallow Crust,0.0,89.98855,0.0,08/27/0531 +4.42442,50.41848,7348,7,30,10,15,37,3.65,5.0,fr,58273,146,2499372,1,3,Active Shallow Crust,0.0,89.98855,0.0,07/30/7348 +4.42442,50.41848,59,10,18,16,23,43,3.65,27.5,fr,58274,1,2499374,1,1,Active Shallow Crust,0.0,89.98855,0.0,10/18/0059 +4.42442,50.41848,2533,8,6,6,15,43,3.65,27.5,fr,58275,50,2499377,1,2,Active Shallow Crust,240.0024,58.01286,0.0,08/06/2533 +4.42442,50.41848,6787,4,10,1,56,59,3.65,27.5,fr,58276,135,2499377,1,2,Active Shallow Crust,240.0024,58.01286,0.0,04/10/6787 +4.42442,50.41848,146,1,3,21,7,36,3.75,5.0,fr,58277,2,2499384,1,3,Active Shallow Crust,0.0,89.98979,0.0,01/03/0146 +4.42442,50.41848,846,7,14,6,14,14,3.75,5.0,fr,58278,16,2499384,1,3,Active Shallow Crust,0.0,89.98979,0.0,07/14/0846 +4.42442,50.41848,1084,1,24,11,51,28,3.75,5.0,fr,58279,21,2499384,1,3,Active Shallow Crust,0.0,89.98979,0.0,01/24/1084 +4.42442,50.41848,308,7,2,8,14,18,3.75,15.0,fr,58280,6,2499385,1,1,Active Shallow Crust,0.0,89.98979,0.0,07/02/0308 +4.42442,50.41848,1728,9,19,2,5,28,3.75,5.0,fr,58281,34,2499387,1,2,Active Shallow Crust,240.0089,58.0186,0.0,09/19/1728 +4.42442,50.41848,5329,5,9,1,15,27,3.75,5.0,fr,58282,106,2499387,1,2,Active Shallow Crust,240.0089,58.0186,0.0,05/09/5329 +4.42442,50.41848,3708,2,27,19,48,55,3.85,5.0,fr,58283,74,2499396,1,1,Active Shallow Crust,0.0,89.99091,0.0,02/27/3708 +4.42442,50.41848,281,11,2,19,10,16,3.85,5.0,fr,58284,5,2499399,1,2,Active Shallow Crust,240.0119,57.9976,0.0,11/02/0281 +4.42442,50.41848,7631,1,15,20,0,31,3.85,5.0,fr,58285,152,2499399,1,2,Active Shallow Crust,240.0119,57.9976,0.0,01/15/7631 +4.42442,50.41848,7108,8,27,22,18,20,3.95,5.0,fr,58286,142,2499417,1,2,Active Shallow Crust,128.8997,89.99392,0.0,08/27/7108 +4.42442,50.41848,3403,4,27,18,48,15,3.95,5.0,fr,58287,68,2499417,1,2,Active Shallow Crust,128.8997,89.99392,0.0,04/27/3403 +4.42442,50.41848,3031,8,31,4,13,52,4.05,5.0,fr,58288,60,2499423,1,1,Active Shallow Crust,240.0071,58.00577,0.0,08/31/3031 +4.42442,50.41848,4985,2,13,12,39,0,4.25,5.0,fr,58289,99,2499447,1,1,Active Shallow Crust,240.0085,57.99372,0.0,02/13/4985 +4.42442,50.41848,4793,3,27,4,9,12,4.25,15.0,fr,58290,95,2499448,1,1,Active Shallow Crust,240.0085,57.99372,0.0,03/27/4793 +4.42442,50.41848,6063,3,26,12,6,15,4.25,5.0,fr,58291,121,2499450,1,1,Active Shallow Crust,0.0,89.99129,-90.0,03/26/6063 +4.42442,50.41848,3377,4,12,22,17,54,4.35,5.0,fr,58292,67,2499465,1,1,Active Shallow Crust,128.8969,89.98272,0.0,04/12/3377 +4.42442,50.41848,3640,9,17,14,1,26,4.55,5.0,fr,58293,72,2499480,1,1,Active Shallow Crust,0.0,89.98984,0.0,09/17/3640 +4.42442,50.41848,2053,9,16,22,10,4,4.85,5.0,fr,58294,41,2499516,1,1,Active Shallow Crust,0.0,89.98993,0.0,09/16/2053 +4.42442,50.41848,8021,5,3,2,36,26,4.95,5.0,fr,58295,160,2499534,1,1,Active Shallow Crust,0.0,89.98962,-90.0,05/03/8021 +4.42442,50.41848,8555,7,26,18,7,56,5.15,15.0,fr,58296,171,2499553,1,1,Active Shallow Crust,0.0,89.98981,0.0,07/26/8555 +5.56713,51.1878,863,9,6,13,5,32,3.55,5.0,fr,58297,17,2499840,1,7,Active Shallow Crust,0.0,89.98736,0.0,09/06/0863 +5.56713,51.1878,3771,1,24,14,39,26,3.55,5.0,fr,58298,75,2499840,1,7,Active Shallow Crust,0.0,89.98736,0.0,01/24/3771 +5.56713,51.1878,9649,2,10,2,42,51,3.55,5.0,fr,58299,192,2499840,1,7,Active Shallow Crust,0.0,89.98736,0.0,02/10/9649 +5.56713,51.1878,3233,6,5,13,25,5,3.55,5.0,fr,58300,64,2499840,1,7,Active Shallow Crust,0.0,89.98736,0.0,06/05/3233 +5.56713,51.1878,8586,3,14,11,37,1,3.55,5.0,fr,58301,171,2499840,1,7,Active Shallow Crust,0.0,89.98736,0.0,03/14/8586 +5.56713,51.1878,2315,11,18,16,13,53,3.55,5.0,fr,58302,46,2499840,1,7,Active Shallow Crust,0.0,89.98736,0.0,11/18/2315 +5.56713,51.1878,6658,12,28,5,27,42,3.55,5.0,fr,58303,133,2499840,1,7,Active Shallow Crust,0.0,89.98736,0.0,12/28/6658 +5.56713,51.1878,9195,11,8,19,33,25,3.55,27.5,fr,58304,183,2499842,1,1,Active Shallow Crust,0.0,89.98736,0.0,11/08/9195 +5.56713,51.1878,2630,7,16,15,48,0,3.65,15.0,fr,58305,52,2499853,1,1,Active Shallow Crust,0.0,89.98873,0.0,07/16/2630 +5.56713,51.1878,7003,5,2,9,16,47,3.75,5.0,fr,58306,140,2499864,1,1,Active Shallow Crust,0.0,89.98996,0.0,05/02/7003 +5.56713,51.1878,5937,10,20,13,53,54,3.75,5.0,fr,58307,118,2499870,1,1,Active Shallow Crust,0.0,89.98985,-90.0,10/20/5937 +5.56713,51.1878,2735,8,30,3,56,55,3.75,15.0,fr,58308,54,2499871,1,1,Active Shallow Crust,0.0,89.98985,-90.0,08/30/2735 +5.56713,51.1878,4325,1,9,18,57,24,3.85,5.0,fr,58309,86,2499876,1,1,Active Shallow Crust,0.0,89.99105,0.0,01/09/4325 +5.56713,51.1878,7684,9,23,19,12,43,3.85,15.0,fr,58310,153,2499877,1,1,Active Shallow Crust,0.0,89.99105,0.0,09/23/7684 +5.56713,51.1878,2261,11,19,15,29,47,3.95,5.0,fr,58311,45,2499888,1,2,Active Shallow Crust,0.0,89.98804,0.0,11/19/2261 +5.56713,51.1878,6431,10,1,15,0,24,3.95,5.0,fr,58312,128,2499888,1,2,Active Shallow Crust,0.0,89.98804,0.0,10/01/6431 +5.56713,51.1878,9122,6,27,18,37,36,4.25,27.5,fr,58313,182,2499932,1,1,Active Shallow Crust,0.0,89.98858,-90.0,06/27/9122 +5.56713,51.1878,9378,12,22,12,6,54,4.35,5.0,fr,58314,187,2499936,1,2,Active Shallow Crust,0.0,89.98994,0.0,12/22/9378 +5.56713,51.1878,6057,5,9,1,51,21,4.35,5.0,fr,58315,121,2499936,1,2,Active Shallow Crust,0.0,89.98994,0.0,05/09/6057 +5.56713,51.1878,870,8,20,7,6,12,4.75,15.0,fr,58316,17,2499985,1,1,Active Shallow Crust,0.0,89.99047,0.0,08/20/0870 +5.56713,51.1878,3557,12,27,14,37,11,4.85,5.0,fr,58317,71,2500005,1,1,Active Shallow Crust,128.8837,89.99364,0.0,12/27/3557 +5.56713,51.1878,7686,12,7,23,45,8,4.95,5.0,fr,58318,153,2500011,1,1,Active Shallow Crust,240.0144,58.00482,0.0,12/07/7686 +5.56713,51.1878,7011,4,3,9,9,50,5.25,5.0,fr,58319,140,2500044,1,1,Active Shallow Crust,0.0,89.99017,0.0,04/03/7011 +8.33868,46.72913,8847,12,1,3,37,1,3.55,5.0,fr,58320,176,2500320,1,4,Active Shallow Crust,0.0,89.98618,0.0,12/01/8847 +8.33868,46.72913,6661,9,13,1,26,47,3.55,5.0,fr,58321,133,2500320,1,4,Active Shallow Crust,0.0,89.98618,0.0,09/13/6661 +8.33868,46.72913,5352,5,14,13,34,43,3.55,5.0,fr,58322,107,2500320,1,4,Active Shallow Crust,0.0,89.98618,0.0,05/14/5352 +8.33868,46.72913,5076,1,21,14,58,5,3.55,5.0,fr,58323,101,2500320,1,4,Active Shallow Crust,0.0,89.98618,0.0,01/21/5076 +8.33868,46.72913,9710,8,1,21,2,18,3.55,15.0,fr,58324,194,2500321,1,2,Active Shallow Crust,0.0,89.98618,0.0,08/01/9710 +8.33868,46.72913,1339,9,18,20,17,26,3.55,15.0,fr,58325,26,2500321,1,2,Active Shallow Crust,0.0,89.98618,0.0,09/18/1339 +8.33868,46.72913,2499,5,7,21,56,35,3.55,27.5,fr,58326,49,2500322,1,1,Active Shallow Crust,0.0,89.98618,0.0,05/07/2499 +8.33868,46.72913,9717,5,15,13,1,4,3.55,5.0,fr,58327,194,2500326,1,1,Active Shallow Crust,0.0,89.98602,-90.0,05/15/9717 +8.33868,46.72913,6501,6,1,19,19,6,3.55,15.0,fr,58328,130,2500327,1,1,Active Shallow Crust,0.0,89.98602,-90.0,06/01/6501 +8.33868,46.72913,9965,9,22,1,23,47,3.55,5.0,fr,58329,199,2500329,1,1,Active Shallow Crust,128.898,89.99309,0.0,09/22/9965 +8.33868,46.72913,8809,5,7,19,51,11,3.65,5.0,fr,58330,176,2500332,1,4,Active Shallow Crust,0.0,89.98768,0.0,05/07/8809 +8.33868,46.72913,2780,2,20,0,26,58,3.65,5.0,fr,58331,55,2500332,1,4,Active Shallow Crust,0.0,89.98768,0.0,02/20/2780 +8.33868,46.72913,2336,3,20,8,9,12,3.65,5.0,fr,58332,46,2500332,1,4,Active Shallow Crust,0.0,89.98768,0.0,03/20/2336 +8.33868,46.72913,427,11,2,13,5,42,3.65,5.0,fr,58333,8,2500332,1,4,Active Shallow Crust,0.0,89.98768,0.0,11/02/0427 +8.33868,46.72913,3503,10,14,9,6,18,3.65,15.0,fr,58334,70,2500333,1,3,Active Shallow Crust,0.0,89.98768,0.0,10/14/3503 +8.33868,46.72913,1405,3,21,5,10,53,3.65,15.0,fr,58335,28,2500333,1,3,Active Shallow Crust,0.0,89.98768,0.0,03/21/1405 +8.33868,46.72913,2993,9,28,12,19,14,3.65,15.0,fr,58336,59,2500333,1,3,Active Shallow Crust,0.0,89.98768,0.0,09/28/2993 +8.33868,46.72913,7161,8,7,12,24,19,3.65,15.0,fr,58337,143,2500339,1,1,Active Shallow Crust,0.0,89.98753,-90.0,08/07/7161 +8.33868,46.72913,2630,6,14,22,1,21,3.75,5.0,fr,58338,52,2500344,1,4,Active Shallow Crust,0.0,89.98902,0.0,06/14/2630 +8.33868,46.72913,8573,5,20,7,54,55,3.75,5.0,fr,58339,171,2500344,1,4,Active Shallow Crust,0.0,89.98902,0.0,05/20/8573 +8.33868,46.72913,7927,10,31,22,5,2,3.75,5.0,fr,58340,158,2500344,1,4,Active Shallow Crust,0.0,89.98902,0.0,10/31/7927 +8.33868,46.72913,496,2,24,4,53,27,3.75,5.0,fr,58341,9,2500344,1,4,Active Shallow Crust,0.0,89.98902,0.0,02/24/0496 +8.33868,46.72913,8701,9,15,0,58,3,3.75,15.0,fr,58342,174,2500345,1,1,Active Shallow Crust,0.0,89.98902,0.0,09/15/8701 +8.33868,46.72913,2724,10,24,16,2,50,3.75,27.5,fr,58343,54,2500349,1,1,Active Shallow Crust,240.0089,58.01754,0.0,10/24/2724 +8.33868,46.72913,7760,8,27,17,45,36,3.85,5.0,fr,58344,155,2500356,1,1,Active Shallow Crust,0.0,89.99021,0.0,08/27/7760 +8.33868,46.72913,167,5,7,13,40,38,3.85,15.0,fr,58345,3,2500357,1,1,Active Shallow Crust,0.0,89.99021,0.0,05/07/0167 +8.33868,46.72913,9560,6,30,0,45,14,3.85,15.0,fr,58346,191,2500360,1,2,Active Shallow Crust,240.012,57.99644,0.0,06/30/9560 +8.33868,46.72913,5755,9,3,6,1,13,3.85,15.0,fr,58347,115,2500360,1,2,Active Shallow Crust,240.012,57.99644,0.0,09/03/5755 +8.33868,46.72913,3574,1,10,5,23,47,3.85,15.0,fr,58348,71,2500363,1,1,Active Shallow Crust,0.0,89.9901,-90.0,01/10/3574 +8.33868,46.72913,727,4,12,19,12,32,3.85,5.0,fr,58349,14,2500365,1,1,Active Shallow Crust,128.8953,89.99511,0.0,04/12/0727 +8.33868,46.72913,3136,5,9,3,4,13,3.95,5.0,fr,58350,62,2500368,1,2,Active Shallow Crust,0.0,89.99128,0.0,05/09/3136 +8.33868,46.72913,2183,9,29,7,4,24,3.95,5.0,fr,58351,43,2500368,1,2,Active Shallow Crust,0.0,89.99128,0.0,09/29/2183 +8.33868,46.72913,7050,12,8,8,2,3,3.95,5.0,fr,58352,140,2500371,1,1,Active Shallow Crust,240.0201,58.0047,0.0,12/08/7050 +8.33868,46.72913,2287,5,10,1,34,6,3.95,5.0,fr,58353,45,2500377,1,1,Active Shallow Crust,128.8998,89.99564,0.0,05/10/2287 +8.33868,46.72913,4385,5,17,23,54,13,3.95,15.0,fr,58354,87,2500378,1,1,Active Shallow Crust,128.8998,89.99564,0.0,05/17/4385 +8.33868,46.72913,7401,12,9,4,33,24,4.05,5.0,fr,58355,148,2500380,1,2,Active Shallow Crust,0.0,89.99223,0.0,12/09/7401 +8.33868,46.72913,1310,12,23,0,1,59,4.05,5.0,fr,58356,26,2500380,1,2,Active Shallow Crust,0.0,89.99223,0.0,12/23/1310 +8.33868,46.72913,9539,3,10,17,49,35,4.05,5.0,fr,58357,190,2500389,1,1,Active Shallow Crust,128.8891,89.99612,0.0,03/10/9539 +8.33868,46.72913,7125,8,26,22,44,15,4.15,5.0,fr,58358,142,2500392,1,1,Active Shallow Crust,0.0,89.99307,0.0,08/26/7125 +8.33868,46.72913,3527,7,15,2,43,48,4.15,15.0,fr,58359,70,2500393,1,3,Active Shallow Crust,0.0,89.99307,0.0,07/15/3527 +8.33868,46.72913,840,8,4,6,40,4,4.15,15.0,fr,58360,16,2500393,1,3,Active Shallow Crust,0.0,89.99307,0.0,08/04/0840 +8.33868,46.72913,3262,4,21,3,22,42,4.15,15.0,fr,58361,65,2500393,1,3,Active Shallow Crust,0.0,89.99307,0.0,04/21/3262 +8.33868,46.72913,4775,8,7,5,13,23,4.25,5.0,fr,58362,95,2500404,1,5,Active Shallow Crust,0.0,89.98765,0.0,08/07/4775 +8.33868,46.72913,926,10,16,17,16,29,4.25,5.0,fr,58363,18,2500404,1,5,Active Shallow Crust,0.0,89.98765,0.0,10/16/0926 +8.33868,46.72913,7891,4,8,20,22,24,4.25,5.0,fr,58364,157,2500404,1,5,Active Shallow Crust,0.0,89.98765,0.0,04/08/7891 +8.33868,46.72913,2850,1,14,8,7,8,4.25,5.0,fr,58365,56,2500404,1,5,Active Shallow Crust,0.0,89.98765,0.0,01/14/2850 +8.33868,46.72913,8586,4,20,0,52,37,4.25,5.0,fr,58366,171,2500404,1,5,Active Shallow Crust,0.0,89.98765,0.0,04/20/8586 +8.33868,46.72913,1828,5,7,10,38,49,4.25,5.0,fr,58367,36,2500410,1,1,Active Shallow Crust,0.0,89.9875,-90.0,05/07/1828 +8.33868,46.72913,1665,10,14,19,43,44,4.35,5.0,fr,58368,33,2500416,1,1,Active Shallow Crust,0.0,89.98899,0.0,10/14/1665 +8.33868,46.72913,8886,8,6,18,42,49,4.45,5.0,fr,58369,177,2500428,1,1,Active Shallow Crust,0.0,89.99019,0.0,08/06/8886 +8.33868,46.72913,2580,12,9,10,12,1,4.55,15.0,fr,58370,51,2500441,1,1,Active Shallow Crust,0.0,89.99126,0.0,12/09/2580 +8.33868,46.72913,1681,10,14,12,14,19,4.55,5.0,fr,58371,33,2500443,1,1,Active Shallow Crust,240.0091,57.99706,0.0,10/14/1681 +8.33868,46.72913,9913,6,16,18,6,46,4.75,5.0,fr,58372,198,2500464,1,2,Active Shallow Crust,0.0,89.98958,0.0,06/16/9913 +8.33868,46.72913,3755,11,4,9,45,54,4.75,5.0,fr,58373,75,2500464,1,2,Active Shallow Crust,0.0,89.98958,0.0,11/04/3755 +8.33868,46.72913,9439,10,20,1,24,9,4.85,15.0,fr,58374,188,2500483,1,1,Active Shallow Crust,0.0,89.99061,-90.0,10/20/9439 +8.33868,46.72913,3606,5,29,4,35,14,5.45,5.0,fr,58375,72,2500551,1,1,Active Shallow Crust,240.0294,57.99854,0.0,05/29/3606 +8.33868,46.72913,3442,3,3,6,2,27,5.55,5.0,fr,58376,68,2500560,1,1,Active Shallow Crust,0.0,89.99032,0.0,03/03/3442 +-3.11703,44.07919,4067,4,13,0,9,34,3.65,5.0,fr,58377,81,2500812,1,1,Active Shallow Crust,0.0,89.99032,0.0,04/13/4067 +-3.11703,44.07919,6600,6,24,6,47,34,5.15,5.0,fr,58378,131,2501001,1,1,Active Shallow Crust,128.8849,89.99101,0.0,06/24/6600 +-3.11703,44.07919,3895,6,24,1,32,44,5.95,5.0,fr,58379,77,2501091,1,1,Active Shallow Crust,240.0477,58.00004,0.0,06/24/3895 +-3.20874,47.23705,2471,6,16,14,23,33,3.55,15.0,fr,58380,49,2501281,1,1,Active Shallow Crust,0.0,89.98973,0.0,06/16/2471 +-3.20874,47.23705,2283,2,4,13,35,50,3.85,5.0,fr,58381,45,2501316,1,1,Active Shallow Crust,0.0,89.9903,0.0,02/04/2283 +-3.20874,47.23705,4921,11,3,20,13,5,4.35,15.0,fr,58382,98,2501377,1,1,Active Shallow Crust,0.0,89.99046,0.0,11/03/4921 +4.54469,46.13218,7129,12,22,17,8,27,3.55,5.0,fr,58383,142,2501760,1,1,Active Shallow Crust,0.0,89.99301,0.0,12/22/7129 +4.54469,46.13218,9153,8,25,17,12,57,3.65,5.0,fr,58384,183,2501775,1,1,Active Shallow Crust,240.0004,58.01281,0.0,08/25/9153 +4.54469,46.13218,8271,8,24,13,7,48,3.75,15.0,fr,58385,165,2501794,1,1,Active Shallow Crust,128.8963,89.96748,0.0,08/24/8271 +4.54469,46.13218,957,6,7,10,34,51,3.95,5.0,fr,58386,19,2501817,1,1,Active Shallow Crust,128.9003,89.99559,0.0,06/07/0957 +4.54469,46.13218,2561,4,23,20,28,6,4.25,5.0,fr,58387,51,2501853,1,1,Active Shallow Crust,128.8936,89.98093,0.0,04/23/2561 +4.54469,46.13218,9796,2,21,12,53,32,4.65,5.0,fr,58388,195,2501892,1,1,Active Shallow Crust,0.0,89.99015,0.0,02/21/9796 +4.54469,46.13218,222,6,15,18,33,20,4.65,15.0,fr,58389,4,2501893,1,1,Active Shallow Crust,0.0,89.99015,0.0,06/15/0222 +-7.30181,48.29388,7060,6,2,20,23,41,5.85,15.0,fr,58390,141,2502517,1,1,Active Shallow Crust,0.0,89.99002,0.0,06/02/7060 +1.10758,46.23912,1424,10,9,18,51,38,3.55,5.0,fr,58391,28,2502720,1,1,Active Shallow Crust,0.0,89.98954,0.0,10/09/1424 +1.10758,46.23912,5319,3,3,2,36,31,3.55,15.0,fr,58392,106,2502724,1,2,Active Shallow Crust,240.0121,57.9982,0.0,03/03/5319 +1.10758,46.23912,1209,2,25,18,40,59,3.55,15.0,fr,58393,24,2502724,1,2,Active Shallow Crust,240.0121,57.9982,0.0,02/25/1209 +1.10758,46.23912,735,4,10,22,10,50,3.65,5.0,fr,58394,14,2502738,1,1,Active Shallow Crust,0.0,89.99057,-90.0,04/10/0735 +1.10758,46.23912,2303,8,18,11,35,27,3.75,5.0,fr,58395,46,2502744,1,2,Active Shallow Crust,0.0,89.9903,0.0,08/18/2303 +1.10758,46.23912,579,5,15,17,55,33,3.75,5.0,fr,58396,11,2502744,1,2,Active Shallow Crust,0.0,89.9903,0.0,05/15/0579 +1.10758,46.23912,6040,3,29,6,5,15,3.75,15.0,fr,58397,120,2502745,1,1,Active Shallow Crust,0.0,89.9903,0.0,03/29/6040 +1.10758,46.23912,2952,12,30,17,26,16,3.75,27.5,fr,58398,59,2502746,1,1,Active Shallow Crust,0.0,89.9903,0.0,12/30/2952 +1.10758,46.23912,5025,5,16,11,4,32,3.75,15.0,fr,58399,100,2502748,1,1,Active Shallow Crust,240.0083,58.01773,0.0,05/16/5025 +1.10758,46.23912,5220,9,13,21,54,46,3.85,15.0,fr,58400,104,2502757,1,1,Active Shallow Crust,0.0,89.99013,0.0,09/13/5220 +1.10758,46.23912,2976,11,12,9,33,28,3.85,5.0,fr,58401,59,2502759,1,1,Active Shallow Crust,240.0108,57.99785,0.0,11/12/2976 +1.10758,46.23912,1575,8,12,5,32,9,3.85,15.0,fr,58402,31,2502760,1,1,Active Shallow Crust,240.0108,57.99785,0.0,08/12/1575 +1.10758,46.23912,7657,12,1,2,25,18,3.95,5.0,fr,58403,153,2502768,1,1,Active Shallow Crust,0.0,89.9901,0.0,12/01/7657 +1.10758,46.23912,7461,10,15,13,36,13,3.95,5.0,fr,58404,149,2502777,1,1,Active Shallow Crust,128.9004,89.99395,0.0,10/15/7461 +1.10758,46.23912,6254,7,26,15,52,38,4.25,5.0,fr,58405,125,2502804,1,1,Active Shallow Crust,0.0,89.98988,0.0,07/26/6254 +1.10758,46.23912,4273,4,23,8,51,30,4.55,15.0,fr,58406,85,2502841,1,1,Active Shallow Crust,0.0,89.99007,0.0,04/23/4273 +2.06251,47.2286,1687,2,1,6,56,26,3.55,5.0,fr,58407,33,2503200,1,1,Active Shallow Crust,0.0,89.98973,0.0,02/01/1687 +2.06251,47.2286,6686,12,8,13,52,31,3.55,27.5,fr,58408,133,2503202,1,1,Active Shallow Crust,0.0,89.98973,0.0,12/08/6686 +2.06251,47.2286,2072,9,16,12,49,26,3.75,15.0,fr,58409,41,2503225,1,1,Active Shallow Crust,0.0,89.98912,0.0,09/16/2072 +2.06251,47.2286,3388,3,16,15,49,40,3.85,5.0,fr,58410,67,2503242,1,1,Active Shallow Crust,0.0,89.99019,-90.0,03/16/3388 +2.06251,47.2286,7321,6,3,17,13,40,3.95,5.0,fr,58411,146,2503254,1,1,Active Shallow Crust,0.0,89.98907,-90.0,06/03/7321 +2.06251,47.2286,2353,7,19,11,33,53,4.15,5.0,fr,58412,47,2503275,1,1,Active Shallow Crust,240.0087,57.9972,0.0,07/19/2353 +2.06251,47.2286,9062,12,28,20,29,27,5.15,5.0,fr,58413,181,2503392,1,1,Active Shallow Crust,0.0,89.99023,0.0,12/28/9062 +7.04546,49.39121,8435,3,14,14,8,49,3.55,15.0,fr,58414,168,2503690,1,1,Active Shallow Crust,128.8958,89.99344,0.0,03/14/8435 +7.04546,49.39121,4929,3,9,6,54,28,3.75,5.0,fr,58415,98,2503704,1,1,Active Shallow Crust,0.0,89.98957,0.0,03/09/4929 +7.04546,49.39121,3769,3,27,17,40,9,4.15,5.0,fr,58416,75,2503758,1,1,Active Shallow Crust,0.0,89.99001,-90.0,03/27/3769 +-0.80484,49.04983,1529,3,12,13,57,38,3.55,5.0,fr,58417,30,2504160,1,1,Active Shallow Crust,0.0,89.99009,0.0,03/12/1529 +-0.80484,49.04983,1369,3,16,17,34,36,3.55,15.0,fr,58418,27,2504161,1,2,Active Shallow Crust,0.0,89.99009,0.0,03/16/1369 +-0.80484,49.04983,8567,7,1,20,30,4,3.55,15.0,fr,58419,171,2504161,1,2,Active Shallow Crust,0.0,89.99009,0.0,07/01/8567 +-0.80484,49.04983,4064,5,7,14,13,5,3.55,5.0,fr,58420,81,2504163,1,1,Active Shallow Crust,240.0125,57.99824,0.0,05/07/4064 +-0.80484,49.04983,7747,4,18,22,14,54,3.55,15.0,fr,58421,154,2504167,1,1,Active Shallow Crust,0.0,89.98997,-90.0,04/18/7747 +-0.80484,49.04983,4427,6,11,5,33,54,3.55,5.0,fr,58422,88,2504169,1,1,Active Shallow Crust,128.896,89.9938,0.0,06/11/4427 +-0.80484,49.04983,4465,8,30,10,56,24,3.75,27.5,fr,58423,89,2504189,1,1,Active Shallow Crust,240.0087,58.01757,0.0,08/30/4465 +-0.80484,49.04983,9929,2,3,17,0,1,3.75,15.0,fr,58424,198,2504191,1,1,Active Shallow Crust,0.0,89.99004,-90.0,02/03/9929 +-0.80484,49.04983,1027,12,31,22,50,35,3.85,5.0,fr,58425,20,2504205,1,1,Active Shallow Crust,128.8954,89.99357,0.0,12/31/1027 +-0.80484,49.04983,7774,3,10,2,7,6,4.15,5.0,fr,58426,155,2504235,1,1,Active Shallow Crust,240.0089,57.99742,0.0,03/10/7774 +-0.80484,49.04983,451,2,12,22,37,26,4.35,5.0,fr,58427,9,2504256,1,1,Active Shallow Crust,0.0,89.99014,0.0,02/12/0451 +-0.80484,49.04983,9398,7,8,2,32,17,4.45,5.0,fr,58428,187,2504268,1,1,Active Shallow Crust,0.0,89.99004,0.0,07/08/9398 +-0.80484,49.04983,2060,12,3,1,26,22,5.15,5.0,fr,58429,41,2504358,1,1,Active Shallow Crust,359.9999,89.99007,-90.0,12/03/2060 +-0.80484,49.04983,2066,2,2,23,58,27,5.35,5.0,fr,58430,41,2504376,1,1,Active Shallow Crust,0.0,89.99001,0.0,02/02/2066 +-0.8048453,49.04983,3335,5,7,22,1,5,6.45,8.491219,fr,58431,66,2504517,1,1,Active Shallow Crust,128.831,89.99049,0.0,05/07/3335 +7.19746,48.39943,2478,11,12,11,56,57,3.55,5.0,fr,58432,49,2504640,1,1,Active Shallow Crust,0.0,89.9933,0.0,11/12/2478 +7.19746,48.39943,476,10,13,21,27,8,3.55,27.5,fr,58433,9,2504642,1,1,Active Shallow Crust,0.0,89.9933,0.0,10/13/0476 +7.19746,48.39943,9424,9,28,15,44,53,3.55,5.0,fr,58434,188,2504649,1,1,Active Shallow Crust,128.896,89.99331,0.0,09/28/9424 +7.19746,48.39943,5107,8,19,9,54,33,3.65,5.0,fr,58435,102,2504652,1,1,Active Shallow Crust,0.0,89.98807,0.0,08/19/5107 +7.19746,48.39943,2021,8,24,11,1,35,4.15,5.0,fr,58436,40,2504712,1,2,Active Shallow Crust,0.0,89.98993,0.0,08/24/2021 +7.19746,48.39943,7796,3,20,3,35,41,4.15,5.0,fr,58437,155,2504712,1,2,Active Shallow Crust,0.0,89.98993,0.0,03/20/7796 +7.19746,48.39943,7945,12,22,21,37,48,4.15,15.0,fr,58438,158,2504713,1,1,Active Shallow Crust,0.0,89.98993,0.0,12/22/7945 +7.19746,48.39943,9339,1,11,18,52,19,4.25,15.0,fr,58439,186,2504728,1,1,Active Shallow Crust,240.0083,57.9941,0.0,01/11/9339 +7.19746,48.39943,5553,2,28,15,48,6,4.35,5.0,fr,58440,111,2504736,1,1,Active Shallow Crust,0.0,89.98933,0.0,02/28/5553 +7.19741,46.86154,7519,7,13,23,44,0,3.55,5.0,fr,58441,150,2505120,1,10,Active Shallow Crust,0.0,89.9931,0.0,07/13/7519 +7.19741,46.86154,2710,4,8,1,6,16,3.55,5.0,fr,58442,54,2505120,1,10,Active Shallow Crust,0.0,89.9931,0.0,04/08/2710 +7.19741,46.86154,9227,10,20,4,48,45,3.55,5.0,fr,58443,184,2505120,1,10,Active Shallow Crust,0.0,89.9931,0.0,10/20/9227 +7.19741,46.86154,2257,5,5,17,38,27,3.55,5.0,fr,58444,45,2505120,1,10,Active Shallow Crust,0.0,89.9931,0.0,05/05/2257 +7.19741,46.86154,9959,1,19,18,2,14,3.55,5.0,fr,58445,199,2505120,1,10,Active Shallow Crust,0.0,89.9931,0.0,01/19/9959 +7.19741,46.86154,2009,11,20,8,51,56,3.55,5.0,fr,58446,40,2505120,1,10,Active Shallow Crust,0.0,89.9931,0.0,11/20/2009 +7.19741,46.86154,3433,2,26,17,53,48,3.55,5.0,fr,58447,68,2505120,1,10,Active Shallow Crust,0.0,89.9931,0.0,02/26/3433 +7.19741,46.86154,6793,9,8,12,11,38,3.55,5.0,fr,58448,135,2505120,1,10,Active Shallow Crust,0.0,89.9931,0.0,09/08/6793 +7.19741,46.86154,9169,6,7,4,7,50,3.55,5.0,fr,58449,183,2505120,1,10,Active Shallow Crust,0.0,89.9931,0.0,06/07/9169 +7.19741,46.86154,4753,7,22,9,11,44,3.55,5.0,fr,58450,95,2505120,1,10,Active Shallow Crust,0.0,89.9931,0.0,07/22/4753 +7.19741,46.86154,6165,5,5,5,7,41,3.55,15.0,fr,58451,123,2505121,1,3,Active Shallow Crust,0.0,89.9931,0.0,05/05/6165 +7.19741,46.86154,1476,9,9,21,49,39,3.55,15.0,fr,58452,29,2505121,1,3,Active Shallow Crust,0.0,89.9931,0.0,09/09/1476 +7.19741,46.86154,125,10,29,16,10,0,3.55,15.0,fr,58453,2,2505121,1,3,Active Shallow Crust,0.0,89.9931,0.0,10/29/0125 +7.19741,46.86154,7635,5,12,7,45,7,3.55,27.5,fr,58454,152,2505122,1,1,Active Shallow Crust,0.0,89.9931,0.0,05/12/7635 +7.19741,46.86154,458,6,29,15,28,0,3.55,15.0,fr,58455,9,2505127,1,1,Active Shallow Crust,0.0,89.99303,-90.0,06/29/0458 +7.19741,46.86154,5388,10,4,22,1,4,3.65,5.0,fr,58456,107,2505132,1,7,Active Shallow Crust,0.0,89.98771,0.0,10/04/5388 +7.19741,46.86154,7242,9,3,9,33,36,3.65,5.0,fr,58457,144,2505132,1,7,Active Shallow Crust,0.0,89.98771,0.0,09/03/7242 +7.19741,46.86154,3045,5,11,10,27,29,3.65,5.0,fr,58458,60,2505132,1,7,Active Shallow Crust,0.0,89.98771,0.0,05/11/3045 +7.19741,46.86154,5848,4,22,4,57,4,3.65,5.0,fr,58459,116,2505132,1,7,Active Shallow Crust,0.0,89.98771,0.0,04/22/5848 +7.19741,46.86154,6188,12,18,7,22,8,3.65,5.0,fr,58460,123,2505132,1,7,Active Shallow Crust,0.0,89.98771,0.0,12/18/6188 +7.19741,46.86154,8230,5,25,14,33,19,3.65,5.0,fr,58461,164,2505132,1,7,Active Shallow Crust,0.0,89.98771,0.0,05/25/8230 +7.19741,46.86154,6749,11,22,9,59,10,3.65,5.0,fr,58462,134,2505132,1,7,Active Shallow Crust,0.0,89.98771,0.0,11/22/6749 +7.19741,46.86154,7519,5,19,5,11,38,3.65,15.0,fr,58463,150,2505133,1,1,Active Shallow Crust,0.0,89.98771,0.0,05/19/7519 +7.19741,46.86154,1561,5,2,1,29,54,3.65,27.5,fr,58464,31,2505134,1,1,Active Shallow Crust,0.0,89.98771,0.0,05/02/1561 +7.19741,46.86154,3641,1,9,16,48,59,3.65,5.0,fr,58465,72,2505135,1,3,Active Shallow Crust,240.0002,58.0139,0.0,01/09/3641 +7.19741,46.86154,7273,5,10,20,20,55,3.65,5.0,fr,58466,145,2505135,1,3,Active Shallow Crust,240.0002,58.0139,0.0,05/10/7273 +7.19741,46.86154,6667,5,19,17,9,9,3.65,5.0,fr,58467,133,2505135,1,3,Active Shallow Crust,240.0002,58.0139,0.0,05/19/6667 +7.19741,46.86154,5070,1,6,22,9,11,3.65,5.0,fr,58468,101,2505138,1,2,Active Shallow Crust,0.0,89.98756,-90.0,01/06/5070 +7.19741,46.86154,6136,4,9,5,29,23,3.65,5.0,fr,58469,122,2505138,1,2,Active Shallow Crust,0.0,89.98756,-90.0,04/09/6136 +7.19741,46.86154,9668,8,19,9,4,59,3.75,5.0,fr,58470,193,2505144,1,4,Active Shallow Crust,0.0,89.98904,0.0,08/19/9668 +7.19741,46.86154,5927,4,28,15,24,28,3.75,5.0,fr,58471,118,2505144,1,4,Active Shallow Crust,0.0,89.98904,0.0,04/28/5927 +7.19741,46.86154,708,7,30,17,42,30,3.75,5.0,fr,58472,14,2505144,1,4,Active Shallow Crust,0.0,89.98904,0.0,07/30/0708 +7.19741,46.86154,5475,6,25,5,40,53,3.75,5.0,fr,58473,109,2505144,1,4,Active Shallow Crust,0.0,89.98904,0.0,06/25/5475 +7.19741,46.86154,4279,5,18,0,24,19,3.75,15.0,fr,58474,85,2505145,1,2,Active Shallow Crust,0.0,89.98904,0.0,05/18/4279 +7.19741,46.86154,554,9,20,16,50,4,3.75,15.0,fr,58475,11,2505145,1,2,Active Shallow Crust,0.0,89.98904,0.0,09/20/0554 +7.19741,46.86154,5440,8,26,16,3,49,3.75,5.0,fr,58476,108,2505147,1,1,Active Shallow Crust,240.0082,58.01826,0.0,08/26/5440 +7.19741,46.86154,1029,5,19,0,23,53,3.75,5.0,fr,58477,20,2505153,1,2,Active Shallow Crust,128.8961,89.9675,0.0,05/19/1029 +7.19741,46.86154,9158,10,23,13,12,35,3.75,5.0,fr,58478,183,2505153,1,2,Active Shallow Crust,128.8961,89.9675,0.0,10/23/9158 +7.19741,46.86154,4738,7,27,3,22,17,3.85,5.0,fr,58479,94,2505156,1,5,Active Shallow Crust,0.0,89.99023,0.0,07/27/4738 +7.19741,46.86154,8873,11,4,16,16,16,3.85,5.0,fr,58480,177,2505156,1,5,Active Shallow Crust,0.0,89.99023,0.0,11/04/8873 +7.19741,46.86154,2618,9,4,18,45,5,3.85,5.0,fr,58481,52,2505156,1,5,Active Shallow Crust,0.0,89.99023,0.0,09/04/2618 +7.19741,46.86154,6096,7,17,13,29,53,3.85,5.0,fr,58482,121,2505156,1,5,Active Shallow Crust,0.0,89.99023,0.0,07/17/6096 +7.19741,46.86154,8359,3,26,5,3,53,3.85,5.0,fr,58483,167,2505156,1,5,Active Shallow Crust,0.0,89.99023,0.0,03/26/8359 +7.19741,46.86154,8646,10,13,10,34,34,3.85,15.0,fr,58484,172,2505157,1,1,Active Shallow Crust,0.0,89.99023,0.0,10/13/8646 +7.19741,46.86154,2765,11,3,8,20,57,3.85,5.0,fr,58485,55,2505159,1,1,Active Shallow Crust,240.0108,57.99777,0.0,11/03/2765 +7.19741,46.86154,9835,5,21,7,57,15,3.95,5.0,fr,58486,196,2505168,1,3,Active Shallow Crust,0.0,89.9913,0.0,05/21/9835 +7.19741,46.86154,102,12,21,11,2,54,3.95,5.0,fr,58487,2,2505168,1,3,Active Shallow Crust,0.0,89.9913,0.0,12/21/0102 +7.19741,46.86154,1477,9,4,5,19,15,3.95,5.0,fr,58488,29,2505168,1,3,Active Shallow Crust,0.0,89.9913,0.0,09/04/1477 +7.19741,46.86154,5596,9,7,15,53,9,3.95,15.0,fr,58489,111,2505169,1,2,Active Shallow Crust,0.0,89.9913,0.0,09/07/5596 +7.19741,46.86154,2845,8,10,19,45,11,3.95,15.0,fr,58490,56,2505169,1,2,Active Shallow Crust,0.0,89.9913,0.0,08/10/2845 +7.19741,46.86154,9606,6,13,9,13,2,3.95,27.5,fr,58491,192,2505170,1,1,Active Shallow Crust,0.0,89.9913,0.0,06/13/9606 +7.19741,46.86154,9031,7,26,20,54,14,3.95,5.0,fr,58492,180,2505171,1,1,Active Shallow Crust,240.0201,58.00484,0.0,07/26/9031 +7.19741,46.86154,3857,7,4,2,56,9,3.95,15.0,fr,58493,77,2505172,1,1,Active Shallow Crust,240.0201,58.00484,0.0,07/04/3857 +7.19741,46.86154,2098,11,7,6,54,47,3.95,5.0,fr,58494,41,2505174,1,2,Active Shallow Crust,0.0,89.9912,-90.0,11/07/2098 +7.19741,46.86154,8998,1,22,9,17,12,3.95,5.0,fr,58495,179,2505174,1,2,Active Shallow Crust,0.0,89.9912,-90.0,01/22/8998 +7.19741,46.86154,6987,8,30,20,32,6,3.95,5.0,fr,58496,139,2505177,1,1,Active Shallow Crust,128.9003,89.99348,0.0,08/30/6987 +7.19741,46.86154,5957,6,30,11,56,56,4.05,5.0,fr,58497,119,2505180,1,3,Active Shallow Crust,0.0,89.98837,0.0,06/30/5957 +7.19741,46.86154,3115,7,22,5,17,15,4.05,5.0,fr,58498,62,2505180,1,3,Active Shallow Crust,0.0,89.98837,0.0,07/22/3115 +7.19741,46.86154,1602,10,21,1,30,22,4.05,5.0,fr,58499,32,2505180,1,3,Active Shallow Crust,0.0,89.98837,0.0,10/21/1602 +7.19741,46.86154,2035,10,29,11,27,34,4.05,15.0,fr,58500,40,2505181,1,2,Active Shallow Crust,0.0,89.98837,0.0,10/29/2035 +7.19741,46.86154,8356,11,11,9,6,9,4.05,15.0,fr,58501,167,2505181,1,2,Active Shallow Crust,0.0,89.98837,0.0,11/11/8356 +7.19741,46.86154,277,2,16,10,35,53,4.05,5.0,fr,58502,5,2505183,1,1,Active Shallow Crust,240.0059,58.00611,0.0,02/16/0277 +7.19741,46.86154,217,7,29,22,42,13,4.05,15.0,fr,58503,4,2505184,1,1,Active Shallow Crust,240.0059,58.00608,0.0,07/29/0217 +7.19741,46.86154,7329,8,24,3,35,46,4.15,5.0,fr,58504,146,2505192,1,2,Active Shallow Crust,0.0,89.98963,0.0,08/24/7329 +7.19741,46.86154,3647,12,25,22,51,51,4.15,5.0,fr,58505,72,2505192,1,2,Active Shallow Crust,0.0,89.98963,0.0,12/25/3647 +7.19741,46.86154,5890,5,12,0,35,23,4.15,15.0,fr,58506,117,2505193,1,1,Active Shallow Crust,0.0,89.98963,0.0,05/12/5890 +7.19741,46.86154,8863,1,25,0,56,55,4.15,5.0,fr,58507,177,2505198,1,1,Active Shallow Crust,0.0,89.98951,-90.0,01/25/8863 +7.19741,46.86154,2955,6,6,13,40,49,4.15,27.5,fr,58508,59,2505200,1,1,Active Shallow Crust,0.0,89.98951,-90.0,06/06/2955 +7.19741,46.86154,374,3,5,1,41,37,4.25,27.5,fr,58509,7,2505206,1,1,Active Shallow Crust,0.0,89.99076,0.0,03/05/0374 +7.19741,46.86154,3074,5,13,2,20,28,4.35,5.0,fr,58510,61,2505216,1,1,Active Shallow Crust,0.0,89.98902,0.0,05/13/3074 +7.19741,46.86154,3507,9,1,19,37,43,4.35,15.0,fr,58511,70,2505220,1,1,Active Shallow Crust,240.008,57.99608,0.0,09/01/3507 +7.19741,46.86154,8936,7,15,11,53,44,4.45,5.0,fr,58512,178,2505228,1,1,Active Shallow Crust,0.0,89.99021,0.0,07/15/8936 +7.19741,46.86154,5297,8,19,17,1,31,4.45,5.0,fr,58513,105,2505231,1,2,Active Shallow Crust,240.0054,57.99499,0.0,08/19/5297 +7.19741,46.86154,4134,6,8,2,40,55,4.45,5.0,fr,58514,82,2505231,1,2,Active Shallow Crust,240.0054,57.99499,0.0,06/08/4134 +7.19741,46.86154,1316,9,11,20,52,25,4.55,15.0,fr,58515,26,2505241,1,1,Active Shallow Crust,0.0,89.9891,0.0,09/11/1316 +7.19741,46.86154,5926,3,1,3,33,15,4.65,5.0,fr,58516,118,2505252,1,1,Active Shallow Crust,0.0,89.99028,0.0,03/01/5926 +7.19741,46.86154,6570,1,1,7,3,17,4.85,5.0,fr,58517,131,2505276,1,1,Active Shallow Crust,0.0,89.99074,0.0,01/01/6570 +7.19741,46.86154,9500,10,12,6,7,15,4.95,5.0,fr,58518,189,2505294,1,1,Active Shallow Crust,0.0,89.99026,-90.0,10/12/9500 +7.19741,46.86154,5592,12,16,4,39,48,5.15,27.5,fr,58519,111,2505314,1,1,Active Shallow Crust,0.0,89.99017,0.0,12/16/5592 +7.19741,46.86154,731,12,8,11,30,34,5.45,5.0,fr,58520,14,2505348,1,2,Active Shallow Crust,0.0,89.98994,0.0,12/08/0731 +7.19741,46.86154,6522,12,27,10,17,45,5.45,5.0,fr,58521,130,2505348,1,2,Active Shallow Crust,0.0,89.98994,0.0,12/27/6522 +7.19741,46.86154,6957,11,14,17,58,42,5.85,5.0,fr,58522,139,2505405,1,1,Active Shallow Crust,128.8671,89.99146,0.0,11/14/6957 +6.30103,48.29132,6084,4,7,16,18,39,3.55,5.0,fr,58523,121,2505609,1,1,Active Shallow Crust,128.8955,89.99329,0.0,04/07/6084 +6.30103,48.29132,1788,8,18,4,26,19,3.65,5.0,fr,58524,35,2505612,1,1,Active Shallow Crust,0.0,89.98804,0.0,08/18/1788 +6.30103,48.29132,414,6,22,13,48,39,3.65,5.0,fr,58525,8,2505615,1,1,Active Shallow Crust,240.0002,58.01361,0.0,06/22/0414 +6.30103,48.29132,7089,7,13,17,20,29,3.75,5.0,fr,58526,141,2505624,1,1,Active Shallow Crust,0.0,89.98934,0.0,07/13/7089 +6.30103,48.29132,2536,9,13,12,25,10,3.75,27.5,fr,58527,50,2505626,1,1,Active Shallow Crust,0.0,89.98934,0.0,09/13/2536 +6.30103,48.29132,6676,2,9,19,20,46,3.85,15.0,fr,58528,133,2505643,1,1,Active Shallow Crust,0.0,89.99039,-90.0,02/09/6676 +6.30103,48.29132,3210,7,24,2,47,7,4.45,5.0,fr,58529,64,2505708,1,1,Active Shallow Crust,0.0,89.99048,0.0,07/24/3210 +6.30103,48.29132,623,12,22,17,3,54,4.55,5.0,fr,58530,12,2505720,1,1,Active Shallow Crust,0.0,89.98939,0.0,12/22/0623 +6.30103,48.29132,6416,4,18,13,8,15,4.95,5.0,fr,58531,128,2505768,1,1,Active Shallow Crust,0.0,89.99062,0.0,04/18/6416 +2.87898,47.93631,9862,7,27,12,50,47,3.75,5.0,fr,58532,197,2506587,1,1,Active Shallow Crust,240.0085,58.01797,0.0,07/27/9862 +2.87898,47.93631,2635,8,31,21,55,42,3.85,15.0,fr,58533,52,2506600,1,1,Active Shallow Crust,240.011,57.99797,0.0,08/31/2635 +2.27918,40.61693,7398,12,3,12,57,38,3.55,5.0,fr,58534,147,2507043,1,1,Active Shallow Crust,240.0111,57.99826,0.0,12/03/7398 +2.27918,40.61693,9603,2,3,21,3,54,3.65,5.0,fr,58535,192,2507052,1,1,Active Shallow Crust,0.0,89.98977,0.0,02/03/9603 +2.27918,40.61693,9594,7,14,4,41,6,3.85,5.0,fr,58536,191,2507076,1,1,Active Shallow Crust,0.0,89.98916,0.0,07/14/9594 +-2.7066,45.36872,7702,8,9,13,38,43,3.55,5.0,fr,58537,154,2507523,1,1,Active Shallow Crust,240.0118,57.99784,0.0,08/09/7702 +1.19987,48.90138,6318,12,16,20,34,12,3.55,5.0,fr,58538,126,2508000,1,2,Active Shallow Crust,0.0,89.99006,0.0,12/16/6318 +1.19987,48.90138,4408,1,25,14,53,39,3.55,5.0,fr,58539,88,2508000,1,2,Active Shallow Crust,0.0,89.99006,0.0,01/25/4408 +1.19987,48.90138,4265,11,5,11,15,53,3.55,15.0,fr,58540,85,2508001,1,1,Active Shallow Crust,0.0,89.99006,0.0,11/05/4265 +1.19987,48.90138,4371,10,30,22,16,33,3.65,5.0,fr,58541,87,2508012,1,1,Active Shallow Crust,0.0,89.98966,0.0,10/30/4371 +1.19987,48.90138,7327,5,13,14,6,11,3.65,5.0,fr,58542,146,2508018,1,1,Active Shallow Crust,0.0,89.98954,-90.0,05/13/7327 +1.19987,48.90138,5240,9,27,14,2,46,3.85,5.0,fr,58543,104,2508036,1,2,Active Shallow Crust,0.0,89.98944,0.0,09/27/5240 +1.19987,48.90138,9954,2,21,21,35,32,3.85,5.0,fr,58544,199,2508036,1,2,Active Shallow Crust,0.0,89.98944,0.0,02/21/9954 +1.19987,48.90138,7137,6,8,3,35,38,4.05,5.0,fr,58545,142,2508060,1,1,Active Shallow Crust,0.0,89.98975,0.0,06/08/7137 +0.87995,45.82082,1829,2,19,20,53,46,3.65,5.0,fr,58546,36,2508978,1,1,Active Shallow Crust,0.0,89.98971,-90.0,02/19/1829 +0.87995,45.82082,3433,3,9,16,56,8,3.75,5.0,fr,58547,68,2508990,1,1,Active Shallow Crust,0.0,89.99012,-90.0,03/09/3433 +0.87995,45.82082,2379,11,21,12,47,45,3.85,15.0,fr,58548,47,2508997,1,1,Active Shallow Crust,0.0,89.99005,0.0,11/21/2379 +0.87995,45.82082,1519,6,9,15,36,5,3.85,15.0,fr,58549,30,2509000,1,1,Active Shallow Crust,240.0107,57.99786,0.0,06/09/1519 +0.87995,45.82082,2411,5,10,15,56,18,4.15,5.0,fr,58550,48,2509032,1,1,Active Shallow Crust,0.0,89.98988,0.0,05/10/2411 +0.87995,45.82082,3120,4,9,17,14,53,4.25,15.0,fr,58551,62,2509045,1,1,Active Shallow Crust,0.0,89.99019,0.0,04/09/3120 +0.87995,45.82082,1133,7,12,13,47,41,4.35,5.0,fr,58552,22,2509062,1,1,Active Shallow Crust,0.0,89.9901,-90.0,07/12/1133 +0.87995,45.82082,6813,3,12,2,37,50,4.65,15.0,fr,58553,136,2509093,1,1,Active Shallow Crust,0.0,89.9901,0.0,03/12/6813 +0.87995,45.82082,4515,10,11,15,16,12,4.75,5.0,fr,58554,90,2509107,1,1,Active Shallow Crust,240.0072,58.00443,0.0,10/11/4515 +0.87995,45.82082,4232,7,20,16,53,55,4.85,5.0,fr,58555,84,2509116,1,1,Active Shallow Crust,0.0,89.98997,0.0,07/20/4232 +9.01855,50.3544,2466,12,18,1,6,47,3.55,5.0,fr,58556,49,2509443,1,1,Active Shallow Crust,240.0111,57.99966,0.0,12/18/2466 +9.01855,50.3544,1405,9,7,7,3,0,3.65,15.0,fr,58557,28,2509453,1,1,Active Shallow Crust,0.0,89.98853,0.0,09/07/1405 +9.01855,50.3544,6607,2,1,15,45,58,3.65,5.0,fr,58558,132,2509458,1,1,Active Shallow Crust,0.0,89.9884,-90.0,02/01/6607 +9.01855,50.3544,8720,5,7,4,58,18,3.75,5.0,fr,58559,174,2509464,1,1,Active Shallow Crust,0.0,89.98978,0.0,05/07/8720 +9.01855,50.3544,9465,1,1,4,9,47,4.15,15.0,fr,58560,189,2509513,1,1,Active Shallow Crust,0.0,89.9871,0.0,01/01/9465 +9.01855,50.3544,152,7,14,9,16,14,5.65,5.0,fr,58561,3,2509695,1,1,Active Shallow Crust,240.0417,58.00001,0.0,07/14/0152 +1.36431,45.98842,6901,2,13,8,14,8,3.55,5.0,fr,58562,138,2510400,1,2,Active Shallow Crust,0.0,89.98949,0.0,02/13/6901 +1.36431,45.98842,8946,11,21,13,17,16,3.55,5.0,fr,58563,178,2510400,1,2,Active Shallow Crust,0.0,89.98949,0.0,11/21/8946 +1.36431,45.98842,8078,5,13,19,22,49,3.65,5.0,fr,58564,161,2510412,1,3,Active Shallow Crust,0.0,89.99063,0.0,05/13/8078 +1.36431,45.98842,9178,1,17,4,14,41,3.65,5.0,fr,58565,183,2510412,1,3,Active Shallow Crust,0.0,89.99063,0.0,01/17/9178 +1.36431,45.98842,9,11,8,22,54,1,3.65,5.0,fr,58566,0,2510412,1,3,Active Shallow Crust,0.0,89.99063,0.0,11/08/0009 +1.36431,45.98842,1206,1,17,9,54,50,3.75,27.5,fr,58567,24,2510429,1,1,Active Shallow Crust,240.0083,58.01758,0.0,01/17/1206 +1.36431,45.98842,8130,4,30,5,27,29,3.85,5.0,fr,58568,162,2510436,1,3,Active Shallow Crust,0.0,89.99008,0.0,04/30/8130 +1.36431,45.98842,6428,7,13,9,17,14,3.85,5.0,fr,58569,128,2510436,1,3,Active Shallow Crust,0.0,89.99008,0.0,07/13/6428 +1.36431,45.98842,7443,7,22,19,12,46,3.85,5.0,fr,58570,148,2510436,1,3,Active Shallow Crust,0.0,89.99008,0.0,07/22/7443 +1.36431,45.98842,2894,8,31,6,57,54,3.85,15.0,fr,58571,57,2510437,1,1,Active Shallow Crust,0.0,89.99008,0.0,08/31/2894 +1.36431,45.98842,9865,12,17,17,35,7,3.95,5.0,fr,58572,197,2510451,1,1,Active Shallow Crust,240.0196,58.00494,0.0,12/17/9865 +1.36431,45.98842,5889,9,15,18,25,54,4.05,27.5,fr,58573,117,2510462,1,1,Active Shallow Crust,0.0,89.99015,0.0,09/15/5889 +1.36431,45.98842,789,4,2,1,12,8,4.05,5.0,fr,58574,15,2510463,1,1,Active Shallow Crust,240.0059,58.00575,0.0,04/02/0789 +1.36431,45.98842,9228,2,13,11,5,26,4.15,5.0,fr,58575,184,2510472,1,1,Active Shallow Crust,0.0,89.99034,0.0,02/13/9228 +1.36431,45.98842,9657,10,20,23,56,27,4.25,5.0,fr,58576,193,2510484,1,1,Active Shallow Crust,0.0,89.98983,0.0,10/20/9657 +1.36431,45.98842,1070,12,29,19,52,48,4.35,5.0,fr,58577,21,2510496,1,2,Active Shallow Crust,0.0,89.99023,0.0,12/29/1070 +1.36431,45.98842,1394,12,28,2,24,23,4.35,5.0,fr,58578,27,2510496,1,2,Active Shallow Crust,0.0,89.99023,0.0,12/28/1394 +1.36431,45.98842,1230,10,8,22,28,3,4.35,15.0,fr,58579,24,2510497,1,1,Active Shallow Crust,0.0,89.99023,0.0,10/08/1230 +1.36431,45.98842,3465,3,3,5,35,21,4.55,5.0,fr,58580,69,2510523,1,1,Active Shallow Crust,240.009,57.99739,0.0,03/03/3465 +1.36431,45.98842,2056,9,24,13,39,48,4.65,5.0,fr,58581,41,2510532,1,2,Active Shallow Crust,0.0,89.99013,0.0,09/24/2056 +1.36431,45.98842,909,11,7,20,44,33,4.65,5.0,fr,58582,18,2510532,1,2,Active Shallow Crust,0.0,89.99013,0.0,11/07/0909 +1.36431,45.98842,5623,8,28,17,29,11,4.85,15.0,fr,58583,112,2510557,1,1,Active Shallow Crust,359.9998,89.9902,0.0,08/28/5623 +6.12221,45.16717,9375,6,22,0,19,15,3.55,5.0,fr,58584,187,2510880,1,2,Active Shallow Crust,0.0,89.99289,0.0,06/22/9375 +6.12221,45.16717,529,11,26,13,59,36,3.55,5.0,fr,58585,10,2510880,1,2,Active Shallow Crust,0.0,89.99289,0.0,11/26/0529 +6.12221,45.16717,8396,3,17,15,36,58,3.55,5.0,fr,58586,167,2510883,1,1,Active Shallow Crust,240.012,57.99755,0.0,03/17/8396 +6.12221,45.16717,6443,10,31,18,15,1,3.55,5.0,fr,58587,128,2510886,1,1,Active Shallow Crust,0.0,89.99281,-90.0,10/31/6443 +6.12221,45.16717,8334,8,6,20,25,22,3.65,5.0,fr,58588,166,2510895,1,1,Active Shallow Crust,240.0005,58.01378,0.0,08/06/8334 +6.12221,45.16717,3417,2,6,4,54,20,3.65,5.0,fr,58589,68,2510898,1,1,Active Shallow Crust,0.0,89.98718,-90.0,02/06/3417 +6.12221,45.16717,2518,11,26,1,21,12,3.75,5.0,fr,58590,50,2510904,1,2,Active Shallow Crust,0.0,89.98871,0.0,11/26/2518 +6.12221,45.16717,6542,4,24,18,19,31,3.75,5.0,fr,58591,130,2510904,1,2,Active Shallow Crust,0.0,89.98871,0.0,04/24/6542 +6.12221,45.16717,3599,4,11,12,22,4,3.75,15.0,fr,58592,71,2510905,1,1,Active Shallow Crust,0.0,89.98871,0.0,04/11/3599 +6.12221,45.16717,576,9,6,1,6,48,3.75,15.0,fr,58593,11,2510914,1,1,Active Shallow Crust,128.8973,89.96686,0.0,09/06/0576 +6.12221,45.16717,901,8,2,6,18,33,3.85,5.0,fr,58594,18,2510916,1,1,Active Shallow Crust,0.0,89.98994,0.0,08/02/0901 +6.12221,45.16717,9763,7,31,2,25,16,3.85,15.0,fr,58595,195,2510917,1,1,Active Shallow Crust,0.0,89.98994,0.0,07/31/9763 +6.12221,45.16717,2915,4,26,15,45,10,3.85,5.0,fr,58596,58,2510919,1,2,Active Shallow Crust,240.01,57.99807,0.0,04/26/2915 +6.12221,45.16717,7789,7,31,20,33,57,3.85,5.0,fr,58597,155,2510919,1,2,Active Shallow Crust,240.01,57.99807,0.0,07/31/7789 +6.12221,45.16717,9646,1,3,0,25,26,3.95,5.0,fr,58598,192,2510928,1,1,Active Shallow Crust,0.0,89.99103,0.0,01/03/9646 +6.12221,45.16717,8732,11,2,11,23,39,3.95,15.0,fr,58599,174,2510938,1,1,Active Shallow Crust,128.8996,89.99327,0.0,11/02/8732 +6.12221,45.16717,8748,8,3,19,31,1,4.25,15.0,fr,58600,174,2510965,1,1,Active Shallow Crust,0.0,89.99047,0.0,08/03/8748 +6.12221,45.16717,8277,8,1,5,39,24,4.35,15.0,fr,58601,165,2510977,1,2,Active Shallow Crust,0.0,89.98868,0.0,08/01/8277 +6.12221,45.16717,977,9,7,10,42,35,4.35,15.0,fr,58602,19,2510977,1,2,Active Shallow Crust,0.0,89.98868,0.0,09/07/0977 +6.12221,45.16717,9016,9,21,9,12,48,4.35,5.0,fr,58603,180,2510985,1,1,Active Shallow Crust,128.8979,89.98297,0.0,09/21/9016 +6.12221,45.16717,1597,1,16,3,2,7,4.45,5.0,fr,58604,31,2510988,1,1,Active Shallow Crust,0.0,89.98991,0.0,01/16/1597 +6.12221,45.16717,4853,10,25,10,13,33,4.85,5.0,fr,58605,97,2511036,1,1,Active Shallow Crust,0.0,89.99045,0.0,10/25/4853 +6.12221,45.16717,5629,7,16,6,6,15,4.85,5.0,fr,58606,112,2511039,1,1,Active Shallow Crust,240.0168,58.00221,0.0,07/16/5629 +6.12221,45.16717,4073,1,23,15,56,13,4.85,15.0,fr,58607,81,2511043,1,1,Active Shallow Crust,0.0,89.99034,-90.0,01/23/4073 +0.79417,41.60812,9618,6,17,5,56,35,3.55,15.0,fr,58608,192,2511361,1,1,Active Shallow Crust,0.0,89.98963,0.0,06/17/9618 +0.79417,41.60812,6533,5,1,20,51,39,3.65,15.0,fr,58609,130,2511373,1,1,Active Shallow Crust,0.0,89.98992,0.0,05/01/6533 +0.79417,41.60812,9027,11,18,5,53,59,3.75,5.0,fr,58610,180,2511384,1,1,Active Shallow Crust,0.0,89.99026,0.0,11/18/9027 +0.79417,41.60812,9079,2,7,2,57,27,3.75,15.0,fr,58611,181,2511385,1,1,Active Shallow Crust,0.0,89.99026,0.0,02/07/9079 +0.79417,41.60812,8971,3,23,17,10,1,3.75,5.0,fr,58612,179,2511390,1,1,Active Shallow Crust,0.0,89.99016,-90.0,03/23/8971 +0.79417,41.60812,8505,8,9,8,36,44,3.85,5.0,fr,58613,170,2511396,1,1,Active Shallow Crust,0.0,89.98999,0.0,08/09/8505 +1.74081,42.41129,860,2,3,9,40,53,3.55,5.0,fr,58614,17,2511840,1,3,Active Shallow Crust,0.0,89.99069,0.0,02/03/0860 +1.74081,42.41129,5718,11,16,16,36,19,3.55,5.0,fr,58615,114,2511840,1,3,Active Shallow Crust,0.0,89.99069,0.0,11/16/5718 +1.74081,42.41129,4164,4,3,2,58,19,3.55,5.0,fr,58616,83,2511840,1,3,Active Shallow Crust,0.0,89.99069,0.0,04/03/4164 +1.74081,42.41129,4344,3,30,22,57,35,3.55,15.0,fr,58617,86,2511841,1,2,Active Shallow Crust,0.0,89.99069,0.0,03/30/4344 +1.74081,42.41129,2336,12,24,9,24,14,3.55,15.0,fr,58618,46,2511841,1,2,Active Shallow Crust,0.0,89.99069,0.0,12/24/2336 +1.74081,42.41129,5508,7,6,4,43,47,3.55,15.0,fr,58619,110,2511850,1,1,Active Shallow Crust,128.8967,89.99348,0.0,07/06/5508 +1.74081,42.41129,7115,8,19,1,58,12,3.65,5.0,fr,58620,142,2511852,1,2,Active Shallow Crust,0.0,89.99004,0.0,08/19/7115 +1.74081,42.41129,3563,4,24,22,6,21,3.65,5.0,fr,58621,71,2511852,1,2,Active Shallow Crust,0.0,89.99004,0.0,04/24/3563 +1.74081,42.41129,6717,6,14,2,36,7,3.65,5.0,fr,58622,134,2511855,1,2,Active Shallow Crust,240.0007,58.01275,0.0,06/14/6717 +1.74081,42.41129,7841,3,3,20,49,23,3.65,5.0,fr,58623,156,2511855,1,2,Active Shallow Crust,240.0007,58.01275,0.0,03/03/7841 +1.74081,42.41129,6596,7,6,16,40,18,3.65,5.0,fr,58624,131,2511858,1,1,Active Shallow Crust,0.0,89.98993,-90.0,07/06/6596 +1.74081,42.41129,5287,8,17,8,38,32,3.75,15.0,fr,58625,105,2511865,1,1,Active Shallow Crust,0.0,89.98965,0.0,08/17/5287 +1.74081,42.41129,2133,7,4,0,34,10,3.75,5.0,fr,58626,42,2511867,1,1,Active Shallow Crust,240.008,58.01748,0.0,07/04/2133 +1.74081,42.41129,8297,4,22,4,39,16,3.85,5.0,fr,58627,165,2511876,1,1,Active Shallow Crust,0.0,89.98946,0.0,04/22/8297 +1.74081,42.41129,2909,10,21,8,8,49,3.85,15.0,fr,58628,58,2511880,1,1,Active Shallow Crust,240.0103,57.99759,0.0,10/21/2909 +1.74081,42.41129,7274,12,4,22,50,53,3.85,15.0,fr,58629,145,2511883,1,1,Active Shallow Crust,0.0,89.98933,-90.0,12/04/7274 +1.74081,42.41129,3067,9,10,8,8,44,3.95,5.0,fr,58630,61,2511888,1,1,Active Shallow Crust,0.0,89.98943,0.0,09/10/3067 +1.74081,42.41129,7606,10,31,5,0,24,3.95,15.0,fr,58631,152,2511889,1,1,Active Shallow Crust,0.0,89.98943,0.0,10/31/7606 +1.74081,42.41129,6984,8,15,5,25,21,4.05,5.0,fr,58632,139,2511903,1,1,Active Shallow Crust,240.0055,58.00575,0.0,08/15/6984 +1.74081,42.41129,3479,6,17,15,44,34,4.05,27.5,fr,58633,69,2511908,1,1,Active Shallow Crust,0.0,89.99047,-90.0,06/17/3479 +1.74081,42.41129,358,2,20,8,41,2,4.15,5.0,fr,58634,7,2511912,1,1,Active Shallow Crust,0.0,89.98974,0.0,02/20/0358 +1.74081,42.41129,1253,10,17,16,42,58,4.45,5.0,fr,58635,25,2511948,1,1,Active Shallow Crust,0.0,89.99009,0.0,10/17/1253 +1.74081,42.41129,5922,7,11,12,27,38,4.65,5.0,fr,58636,118,2511972,1,1,Active Shallow Crust,0.0,89.99003,0.0,07/11/5922 +1.74081,42.41129,6465,9,26,2,36,50,5.85,5.0,fr,58637,129,2512119,1,1,Active Shallow Crust,240.0397,57.99884,0.0,09/26/6465 +-0.61414,48.26292,2874,9,4,8,23,14,3.55,5.0,fr,58638,57,2512320,1,2,Active Shallow Crust,0.0,89.98993,0.0,09/04/2874 +-0.61414,48.26292,356,9,13,13,54,45,3.55,5.0,fr,58639,7,2512320,1,2,Active Shallow Crust,0.0,89.98993,0.0,09/13/0356 +-0.61414,48.26292,5788,9,19,2,47,23,3.55,27.5,fr,58640,115,2512322,1,1,Active Shallow Crust,0.0,89.98993,0.0,09/19/5788 +-0.61414,48.26292,2598,6,14,3,35,30,3.55,5.0,fr,58641,51,2512323,1,1,Active Shallow Crust,240.0123,57.99819,0.0,06/14/2598 +-0.61414,48.26292,8703,1,23,19,0,30,3.65,5.0,fr,58642,174,2512332,1,1,Active Shallow Crust,0.0,89.99028,0.0,01/23/8703 +-0.61414,48.26292,5450,6,11,13,16,22,3.65,15.0,fr,58643,108,2512333,1,1,Active Shallow Crust,0.0,89.99028,0.0,06/11/5450 +-0.61414,48.26292,9081,5,22,17,43,13,3.75,5.0,fr,58644,181,2512350,1,1,Active Shallow Crust,0.0,89.98988,-90.0,05/22/9081 +-0.61414,48.26292,204,7,6,0,38,27,3.95,15.0,fr,58645,4,2512369,1,1,Active Shallow Crust,0.0,89.98994,0.0,07/06/0204 +-0.61414,48.26292,5457,8,16,19,11,11,4.05,15.0,fr,58646,109,2512384,1,1,Active Shallow Crust,240.0062,58.00594,0.0,08/16/5457 +-0.61414,48.26292,5560,1,26,23,37,40,4.15,15.0,fr,58647,111,2512393,1,1,Active Shallow Crust,0.0,89.98991,0.0,01/26/5560 +-0.61414,48.26292,7590,10,30,18,36,35,4.25,5.0,fr,58648,151,2512404,1,1,Active Shallow Crust,0.0,89.98988,0.0,10/30/7590 +-0.61414,48.26292,2339,4,11,4,38,3,4.55,15.0,fr,58649,46,2512447,1,1,Active Shallow Crust,0.0,89.99007,-90.0,04/11/2339 +-0.61414,48.26292,6025,4,19,23,28,19,5.05,5.0,fr,58650,120,2512503,1,1,Active Shallow Crust,240.0231,57.99773,0.0,04/19/6025 +0.50594,45.11863,2294,1,6,7,13,31,3.55,5.0,fr,58651,45,2512800,1,1,Active Shallow Crust,0.0,89.99022,0.0,01/06/2294 +0.50594,45.11863,5529,11,12,6,37,54,3.55,5.0,fr,58652,110,2512803,1,1,Active Shallow Crust,240.012,57.9981,0.0,11/12/5529 +0.50594,45.11863,6440,4,19,20,34,57,3.55,15.0,fr,58653,128,2512810,1,1,Active Shallow Crust,128.8963,89.99377,0.0,04/19/6440 +0.50594,45.11863,8046,7,23,15,10,17,3.65,5.0,fr,58654,160,2512812,1,1,Active Shallow Crust,0.0,89.98969,0.0,07/23/8046 +0.50594,45.11863,7529,6,18,10,17,29,3.75,5.0,fr,58655,150,2512824,1,1,Active Shallow Crust,0.0,89.99011,0.0,06/18/7529 +0.50594,45.11863,1199,4,14,7,9,27,3.75,5.0,fr,58656,23,2512833,1,1,Active Shallow Crust,128.8968,89.96734,0.0,04/14/1199 +0.50594,45.11863,3098,2,9,5,48,56,4.15,5.0,fr,58657,61,2512872,1,1,Active Shallow Crust,0.0,89.99019,0.0,02/09/3098 +0.50594,45.11863,3356,12,10,12,8,54,4.35,5.0,fr,58658,67,2512896,1,1,Active Shallow Crust,0.0,89.99008,0.0,12/10/3356 +0.50594,45.11863,783,7,15,10,8,16,5.25,5.0,fr,58659,15,2513004,1,1,Active Shallow Crust,0.0,89.98994,0.0,07/15/0783 +0.50594,45.11863,4384,8,18,14,49,19,5.55,5.0,fr,58660,87,2513046,1,1,Active Shallow Crust,0.0,89.99001,-90.0,08/18/4384 +0.50594,45.11863,2941,9,17,0,28,52,5.75,15.0,fr,58661,58,2513074,1,1,Active Shallow Crust,128.8752,89.98852,0.0,09/17/2941 +-0.53145,46.52279,6574,9,20,3,11,36,3.55,5.0,fr,58662,131,2513280,1,1,Active Shallow Crust,0.0,89.98959,0.0,09/20/6574 +-0.53145,46.52279,818,4,13,19,38,46,3.55,15.0,fr,58663,16,2513281,1,1,Active Shallow Crust,0.0,89.98959,0.0,04/13/0818 +-0.53145,46.52279,2273,3,24,16,15,21,3.65,15.0,fr,58664,45,2513293,1,1,Active Shallow Crust,0.0,89.98995,0.0,03/24/2273 +-0.53145,46.52279,8748,5,16,7,55,39,3.65,27.5,fr,58665,174,2513294,1,1,Active Shallow Crust,0.0,89.98995,0.0,05/16/8748 +-0.53145,46.52279,4478,6,7,23,10,10,3.65,15.0,fr,58666,89,2513296,1,1,Active Shallow Crust,240.0011,58.01289,0.0,06/07/4478 +-0.53145,46.52279,5337,12,6,6,42,42,3.65,5.0,fr,58667,106,2513301,1,1,Active Shallow Crust,128.9002,89.96352,0.0,12/06/5337 +-0.53145,46.52279,1145,8,30,17,1,7,3.75,15.0,fr,58668,22,2513314,1,1,Active Shallow Crust,128.8967,89.96737,0.0,08/30/1145 +-0.53145,46.52279,4802,3,13,22,41,53,3.95,27.5,fr,58669,96,2513333,1,1,Active Shallow Crust,240.0198,58.00495,0.0,03/13/4802 +-0.53145,46.52279,9157,6,26,2,43,59,4.05,27.5,fr,58670,183,2513342,1,1,Active Shallow Crust,0.0,89.98975,0.0,06/26/9157 +-0.53145,46.52279,914,5,12,15,17,40,4.15,5.0,fr,58671,18,2513358,1,1,Active Shallow Crust,0.0,89.98988,-90.0,05/12/0914 +-0.53145,46.52279,3278,7,23,11,2,33,4.35,5.0,fr,58672,65,2513382,1,1,Active Shallow Crust,0.0,89.98987,-90.0,07/23/3278 +-0.53145,46.52279,3485,9,15,10,46,18,4.45,5.0,fr,58673,69,2513388,1,1,Active Shallow Crust,359.9998,89.99015,0.0,09/15/3485 +-0.53145,46.52279,8536,7,4,5,31,35,4.45,15.0,fr,58674,170,2513389,1,1,Active Shallow Crust,359.9998,89.99015,0.0,07/04/8536 +-0.53145,46.52279,5175,11,24,4,38,38,4.45,5.0,fr,58675,103,2513391,1,1,Active Shallow Crust,240.0052,57.99467,0.0,11/24/5175 +-0.53145,46.52279,1493,6,12,9,57,22,4.55,5.0,fr,58676,29,2513400,1,1,Active Shallow Crust,0.0,89.99013,0.0,06/12/1493 +-0.53145,46.52279,7418,9,20,0,39,12,4.75,15.0,fr,58677,148,2513434,1,1,Active Shallow Crust,128.8887,89.98812,0.0,09/20/7418 +-0.53145,46.52279,2926,10,10,20,31,10,4.85,5.0,fr,58678,58,2513436,1,1,Active Shallow Crust,359.9999,89.9901,0.0,10/10/2926 +7.60898,44.68385,9554,4,8,14,6,41,3.55,5.0,fr,58679,191,2513760,1,3,Active Shallow Crust,0.0,89.99283,0.0,04/08/9554 +7.60898,44.68385,2127,1,14,10,34,32,3.55,5.0,fr,58680,42,2513760,1,3,Active Shallow Crust,0.0,89.99283,0.0,01/14/2127 +7.60898,44.68385,8866,8,27,0,39,37,3.55,5.0,fr,58681,177,2513760,1,3,Active Shallow Crust,0.0,89.99283,0.0,08/27/8866 +7.60898,44.68385,3062,6,14,13,13,0,3.55,15.0,fr,58682,61,2513761,1,2,Active Shallow Crust,0.0,89.99283,0.0,06/14/3062 +7.60898,44.68385,4289,6,21,10,0,14,3.55,15.0,fr,58683,85,2513761,1,2,Active Shallow Crust,0.0,89.99283,0.0,06/21/4289 +7.60898,44.68385,3073,5,29,6,37,16,3.55,5.0,fr,58684,61,2513763,1,2,Active Shallow Crust,240.0119,57.99788,0.0,05/29/3073 +7.60898,44.68385,911,10,30,3,40,3,3.55,5.0,fr,58685,18,2513763,1,2,Active Shallow Crust,240.0119,57.99788,0.0,10/30/0911 +7.60898,44.68385,8478,11,25,13,43,43,3.55,15.0,fr,58686,169,2513764,1,1,Active Shallow Crust,240.0119,57.99788,0.0,11/25/8478 +7.60898,44.68385,5269,3,7,7,6,36,3.65,5.0,fr,58687,105,2513772,1,2,Active Shallow Crust,0.0,89.98722,0.0,03/07/5269 +7.60898,44.68385,9612,6,10,22,45,33,3.65,5.0,fr,58688,192,2513772,1,2,Active Shallow Crust,0.0,89.98722,0.0,06/10/9612 +7.60898,44.68385,2718,1,29,7,33,49,3.65,5.0,fr,58689,54,2513775,1,1,Active Shallow Crust,240.0008,58.01223,0.0,01/29/2718 +7.60898,44.68385,4180,7,31,21,0,25,3.75,5.0,fr,58690,83,2513790,1,1,Active Shallow Crust,0.0,89.98848,-90.0,07/31/4180 +7.60898,44.68385,2133,6,10,17,55,12,3.85,5.0,fr,58691,42,2513796,1,1,Active Shallow Crust,0.0,89.98985,0.0,06/10/2133 +7.60898,44.68385,6683,5,22,9,13,4,3.85,15.0,fr,58692,133,2513797,1,1,Active Shallow Crust,0.0,89.98985,0.0,05/22/6683 +7.60898,44.68385,6062,3,18,3,50,15,3.85,27.5,fr,58693,121,2513798,1,1,Active Shallow Crust,0.0,89.98985,0.0,03/18/6062 +7.60898,44.68385,4790,8,22,6,27,17,3.95,15.0,fr,58694,95,2513812,1,1,Active Shallow Crust,240.0195,58.00547,0.0,08/22/4790 +7.60898,44.68385,5288,4,28,15,20,21,3.95,5.0,fr,58695,105,2513817,1,1,Active Shallow Crust,128.9017,89.99322,0.0,04/28/5288 +7.60898,44.68385,9113,9,17,6,58,2,4.05,5.0,fr,58696,182,2513820,1,2,Active Shallow Crust,0.0,89.99194,0.0,09/17/9113 +7.60898,44.68385,2004,9,18,12,52,58,4.05,5.0,fr,58697,40,2513820,1,2,Active Shallow Crust,0.0,89.99194,0.0,09/18/2004 +7.60898,44.68385,3268,5,14,2,56,1,4.15,5.0,fr,58698,65,2513832,1,1,Active Shallow Crust,0.0,89.98922,0.0,05/14/3268 +7.60898,44.68385,2676,11,5,23,26,9,4.25,5.0,fr,58699,53,2513844,1,3,Active Shallow Crust,0.0,89.99039,0.0,11/05/2676 +7.60898,44.68385,3382,7,29,17,26,48,4.25,5.0,fr,58700,67,2513844,1,3,Active Shallow Crust,0.0,89.99039,0.0,07/29/3382 +7.60898,44.68385,867,6,7,8,7,14,4.25,5.0,fr,58701,17,2513844,1,3,Active Shallow Crust,0.0,89.99039,0.0,06/07/0867 +7.60898,44.68385,1224,12,17,18,12,18,4.25,15.0,fr,58702,24,2513845,1,1,Active Shallow Crust,0.0,89.99039,0.0,12/17/1224 +7.60898,44.68385,9568,12,2,3,44,53,4.45,5.0,fr,58703,191,2513868,1,2,Active Shallow Crust,0.0,89.98982,0.0,12/02/9568 +7.60898,44.68385,197,6,4,7,49,51,4.45,5.0,fr,58704,3,2513868,1,2,Active Shallow Crust,0.0,89.98982,0.0,06/04/0197 +7.60898,44.68385,3053,4,9,16,49,10,4.55,5.0,fr,58705,61,2513880,1,1,Active Shallow Crust,0.0,89.99093,0.0,04/09/3053 +7.60898,44.68385,7562,10,8,14,36,8,4.55,15.0,fr,58706,151,2513884,1,1,Active Shallow Crust,240.0087,57.99746,0.0,10/08/7562 +7.60898,44.68385,1476,12,26,2,36,44,4.65,5.0,fr,58707,29,2513892,1,1,Active Shallow Crust,0.0,89.9899,0.0,12/26/1476 +7.60898,44.68385,422,8,25,5,38,53,5.45,15.0,fr,58708,8,2513989,1,1,Active Shallow Crust,0.0,89.99034,0.0,08/25/0422 +7.608993,44.68385,8046,11,4,21,23,9,6.65,10.68981,fr,58709,160,2514132,1,1,Active Shallow Crust,0.0,89.98998,0.0,11/04/8046 +-0.30754,46.94428,7509,11,11,22,12,22,3.55,5.0,fr,58710,150,2514240,1,2,Active Shallow Crust,0.0,89.9901,0.0,11/11/7509 +-0.30754,46.94428,3126,11,7,1,44,58,3.55,5.0,fr,58711,62,2514240,1,2,Active Shallow Crust,0.0,89.9901,0.0,11/07/3126 +-0.30754,46.94428,2014,10,11,16,19,6,3.55,15.0,fr,58712,40,2514241,1,1,Active Shallow Crust,0.0,89.9901,0.0,10/11/2014 +-0.30754,46.94428,302,3,3,13,50,35,3.55,5.0,fr,58713,6,2514243,1,1,Active Shallow Crust,240.0123,57.99813,0.0,03/03/0302 +-0.30754,46.94428,3010,5,12,12,13,29,3.65,5.0,fr,58714,60,2514252,1,1,Active Shallow Crust,0.0,89.99003,0.0,05/12/3010 +-0.30754,46.94428,2500,1,8,23,3,22,3.75,15.0,fr,58715,49,2514265,1,1,Active Shallow Crust,0.0,89.99009,0.0,01/08/2500 +-0.30754,46.94428,5324,1,28,13,14,20,3.75,15.0,fr,58716,106,2514268,1,1,Active Shallow Crust,240.0083,58.01761,0.0,01/28/5324 +-0.30754,46.94428,1637,9,7,7,50,43,3.85,5.0,fr,58717,32,2514279,1,1,Active Shallow Crust,240.0109,57.99782,0.0,09/07/1637 +-0.30754,46.94428,6056,4,24,9,24,9,3.95,27.5,fr,58718,121,2514290,1,1,Active Shallow Crust,0.0,89.98995,0.0,04/24/6056 +-0.30754,46.94428,5721,9,25,0,0,41,3.95,5.0,fr,58719,114,2514294,1,1,Active Shallow Crust,0.0,89.99011,-90.0,09/25/5721 +-0.30754,46.94428,4038,7,22,1,4,7,4.05,5.0,fr,58720,80,2514300,1,1,Active Shallow Crust,0.0,89.99008,0.0,07/22/4038 +-0.30754,46.94428,1911,10,13,3,13,59,4.05,5.0,fr,58721,38,2514309,1,1,Active Shallow Crust,128.8904,89.99371,0.0,10/13/1911 +-0.30754,46.94428,6999,8,4,15,49,48,4.15,5.0,fr,58722,139,2514312,1,3,Active Shallow Crust,0.0,89.99008,0.0,08/04/6999 +-0.30754,46.94428,8620,11,28,22,36,25,4.15,5.0,fr,58723,172,2514312,1,3,Active Shallow Crust,0.0,89.99008,0.0,11/28/8620 +-0.30754,46.94428,3098,9,19,10,59,38,4.15,5.0,fr,58724,61,2514312,1,3,Active Shallow Crust,0.0,89.99008,0.0,09/19/3098 +-0.30754,46.94428,562,1,3,23,14,3,4.15,5.0,fr,58725,11,2514315,1,1,Active Shallow Crust,240.0085,57.99731,0.0,01/03/0562 +-0.30754,46.94428,624,7,30,20,6,49,4.25,15.0,fr,58726,12,2514334,1,1,Active Shallow Crust,128.8943,89.98093,0.0,07/30/0624 +-0.30754,46.94428,969,8,27,14,11,26,4.35,5.0,fr,58727,19,2514336,1,1,Active Shallow Crust,0.0,89.99007,0.0,08/27/0969 +-0.30754,46.94428,1631,2,27,21,2,22,4.35,15.0,fr,58728,32,2514337,1,1,Active Shallow Crust,0.0,89.99007,0.0,02/27/1631 +-0.30754,46.94428,6305,10,11,22,50,33,4.35,15.0,fr,58729,126,2514346,1,1,Active Shallow Crust,128.8978,89.98273,0.0,10/11/6305 +-0.30754,46.94428,2483,9,6,0,45,54,4.45,15.0,fr,58730,49,2514355,1,1,Active Shallow Crust,0.0,89.98996,-90.0,09/06/2483 +-0.30754,46.94428,5941,12,16,21,19,41,4.65,5.0,fr,58731,118,2514375,1,1,Active Shallow Crust,240.011,57.99427,0.0,12/16/5941 +-0.30754,46.94428,7512,1,31,19,10,14,4.75,5.0,fr,58732,150,2514384,1,1,Active Shallow Crust,0.0,89.98994,0.0,01/31/7512 +-0.30754,46.94428,5587,12,24,9,19,30,4.95,5.0,fr,58733,111,2514414,1,1,Active Shallow Crust,0.0,89.99001,-90.0,12/24/5587 +-0.30754,46.94428,1578,3,29,12,54,32,5.85,5.0,fr,58734,31,2514516,1,1,Active Shallow Crust,360.0,89.99001,0.0,03/29/1578 +3.91076,52.45948,1951,11,8,20,49,31,3.75,5.0,fr,58735,39,2514744,1,1,Active Shallow Crust,0.0,89.99024,0.0,11/08/1951 +0.00246,46.02468,2006,9,11,15,55,16,3.55,5.0,fr,58736,40,2515680,1,2,Active Shallow Crust,0.0,89.99,0.0,09/11/2006 +0.00246,46.02468,8607,1,24,14,29,50,3.55,5.0,fr,58737,172,2515680,1,2,Active Shallow Crust,0.0,89.99,0.0,01/24/8607 +0.00246,46.02468,5319,4,9,4,41,38,3.55,15.0,fr,58738,106,2515681,1,2,Active Shallow Crust,0.0,89.99,0.0,04/09/5319 +0.00246,46.02468,2430,10,31,23,45,36,3.55,15.0,fr,58739,48,2515681,1,2,Active Shallow Crust,0.0,89.99,0.0,10/31/2430 +0.00246,46.02468,5899,6,1,16,38,9,3.65,5.0,fr,58740,117,2515692,1,2,Active Shallow Crust,0.0,89.99,0.0,06/01/5899 +0.00246,46.02468,9844,6,7,18,21,16,3.65,5.0,fr,58741,196,2515692,1,2,Active Shallow Crust,0.0,89.99,0.0,06/07/9844 +0.00246,46.02468,9181,4,10,12,30,0,3.75,5.0,fr,58742,183,2515704,1,1,Active Shallow Crust,360.0,89.99,0.0,04/10/9181 +0.00246,46.02468,1945,10,9,1,30,11,3.85,5.0,fr,58743,38,2515716,1,2,Active Shallow Crust,0.0,89.99,0.0,10/09/1945 +0.00246,46.02468,8964,10,31,7,36,34,3.85,5.0,fr,58744,179,2515716,1,2,Active Shallow Crust,0.0,89.99,0.0,10/31/8964 +0.00246,46.02468,2872,10,13,0,6,41,3.95,15.0,fr,58745,57,2515729,1,1,Active Shallow Crust,0.0,89.99,0.0,10/13/2872 +0.00246,46.02468,8885,10,27,1,24,21,4.15,5.0,fr,58746,177,2515752,1,1,Active Shallow Crust,360.0,89.99,0.0,10/27/8885 +0.00246,46.02468,5069,1,18,8,33,52,4.25,5.0,fr,58747,101,2515764,1,1,Active Shallow Crust,360.0,89.99,0.0,01/18/5069 +0.00246,46.02468,3260,5,16,11,11,39,4.25,15.0,fr,58748,65,2515765,1,1,Active Shallow Crust,360.0,89.99,0.0,05/16/3260 +0.00246,46.02468,7027,5,4,8,30,41,4.75,15.0,fr,58749,140,2515834,1,1,Active Shallow Crust,128.8888,89.98808,0.0,05/04/7027 +0.002460001,46.02468,8028,3,30,0,44,31,5.25,5.0,fr,58750,160,2515893,1,1,Active Shallow Crust,128.8835,89.98699,0.0,03/30/8028 +0.00246,46.02468,1762,11,6,7,42,31,5.85,5.0,fr,58751,35,2515965,1,1,Active Shallow Crust,128.8701,89.98938,0.0,11/06/1762 +5.23333,47.25925,9869,3,20,6,37,19,3.55,27.5,fr,58752,197,2516165,1,1,Active Shallow Crust,240.012,57.99874,0.0,03/20/9869 +5.23333,47.25925,8684,4,9,19,14,22,3.55,5.0,fr,58753,173,2516169,1,1,Active Shallow Crust,128.8972,89.99316,0.0,04/09/8684 +5.23333,47.25925,1609,3,26,22,1,54,3.65,15.0,fr,58754,32,2516173,1,1,Active Shallow Crust,0.0,89.9878,0.0,03/26/1609 +5.23333,47.25925,9040,3,12,9,31,45,3.75,5.0,fr,58755,180,2516184,1,1,Active Shallow Crust,0.0,89.98913,0.0,03/12/9040 +5.23333,47.25925,4399,3,28,0,34,4,3.75,15.0,fr,58756,87,2516185,1,1,Active Shallow Crust,0.0,89.98913,0.0,03/28/4399 +5.23333,47.25925,4238,7,12,14,24,44,3.75,5.0,fr,58757,84,2516187,1,1,Active Shallow Crust,240.0087,58.01769,0.0,07/12/4238 +5.23333,47.25925,3839,9,1,2,21,28,3.85,5.0,fr,58758,76,2516205,1,1,Active Shallow Crust,128.8948,89.99516,0.0,09/01/3839 +5.23333,47.25925,4020,11,9,17,12,55,3.95,15.0,fr,58759,80,2516209,1,1,Active Shallow Crust,0.0,89.99136,0.0,11/09/4020 +5.23333,47.25925,7261,1,10,23,53,37,4.05,27.5,fr,58760,145,2516222,1,1,Active Shallow Crust,0.0,89.98846,0.0,01/10/7261 +5.23333,47.25925,7542,8,17,20,42,45,4.55,5.0,fr,58761,150,2516280,1,1,Active Shallow Crust,0.0,89.98918,0.0,08/17/7542 +5.23333,47.25925,6436,10,1,4,11,46,4.95,5.0,fr,58762,128,2516331,1,1,Active Shallow Crust,240.0122,58.00464,0.0,10/01/6436 +5.23333,47.25925,3239,12,21,20,10,56,5.45,5.0,fr,58763,64,2516388,1,1,Active Shallow Crust,0.0,89.99001,0.0,12/21/3239 +2.55489,44.6598,1006,1,1,16,21,10,3.55,15.0,fr,58764,20,2517121,1,1,Active Shallow Crust,0.0,89.98924,0.0,01/01/1006 +2.55489,44.6598,2791,9,10,0,33,26,3.55,5.0,fr,58765,55,2517123,1,1,Active Shallow Crust,240.0123,57.99825,0.0,09/10/2791 +2.55489,44.6598,4171,8,9,23,53,38,3.75,15.0,fr,58766,83,2517145,1,1,Active Shallow Crust,0.0,89.9886,0.0,08/09/4171 +2.55489,44.6598,1282,6,22,23,52,44,3.85,15.0,fr,58767,25,2517157,1,1,Active Shallow Crust,0.0,89.98985,0.0,06/22/1282 +2.55489,44.6598,8168,6,30,17,22,35,3.95,5.0,fr,58768,163,2517168,1,2,Active Shallow Crust,0.0,89.99095,0.0,06/30/8168 +2.55489,44.6598,2529,11,9,2,2,11,3.95,5.0,fr,58769,50,2517168,1,2,Active Shallow Crust,0.0,89.99095,0.0,11/09/2529 +2.55489,44.6598,6056,10,5,1,15,51,4.05,5.0,fr,58770,121,2517180,1,1,Active Shallow Crust,0.0,89.98991,0.0,10/05/6056 +2.55489,44.6598,949,7,22,23,52,8,4.05,15.0,fr,58771,18,2517181,1,1,Active Shallow Crust,0.0,89.98991,0.0,07/22/0949 +2.55489,44.6598,3521,8,2,11,45,34,4.15,15.0,fr,58772,70,2517196,1,1,Active Shallow Crust,240.0079,57.99743,0.0,08/02/3521 +2.55489,44.6598,6767,7,14,8,48,13,5.05,5.0,fr,58773,135,2517303,1,1,Active Shallow Crust,240.0211,57.99745,0.0,07/14/6767 +2.55489,44.6598,5947,1,12,8,41,14,5.05,15.0,fr,58774,118,2517310,1,1,Active Shallow Crust,128.8863,89.9904,0.0,01/12/5947 +8.06657,48.7508,4704,10,29,21,47,41,3.55,5.0,fr,58775,94,2517600,1,1,Active Shallow Crust,0.0,89.9867,0.0,10/29/4704 +8.06657,48.7508,3925,4,16,10,2,48,3.55,27.5,fr,58776,78,2517602,1,2,Active Shallow Crust,0.0,89.9867,0.0,04/16/3925 +8.06657,48.7508,4826,4,16,5,17,36,3.55,27.5,fr,58777,96,2517602,1,2,Active Shallow Crust,0.0,89.9867,0.0,04/16/4826 +8.06657,48.7508,9191,9,9,8,4,31,3.55,5.0,fr,58778,183,2517603,1,1,Active Shallow Crust,240.0113,57.99908,0.0,09/09/9191 +8.06657,48.7508,184,12,19,4,27,34,3.55,27.5,fr,58779,3,2517611,1,1,Active Shallow Crust,128.8958,89.99335,0.0,12/19/0184 +8.06657,48.7508,8189,9,21,19,40,23,3.85,5.0,fr,58780,163,2517636,1,1,Active Shallow Crust,0.0,89.99059,0.0,09/21/8189 +8.06657,48.7508,448,3,24,20,39,45,3.85,15.0,fr,58781,8,2517643,1,1,Active Shallow Crust,0.0,89.99048,-90.0,03/24/0448 +8.06657,48.7508,8968,11,21,12,56,0,3.95,15.0,fr,58782,179,2517649,1,1,Active Shallow Crust,0.0,89.99161,0.0,11/21/8968 +8.06657,48.7508,9101,9,26,23,33,15,4.05,5.0,fr,58783,182,2517666,1,1,Active Shallow Crust,0.0,89.99243,-90.0,09/26/9101 +8.06657,48.7508,5715,5,20,13,45,39,4.55,5.0,fr,58784,114,2517726,1,1,Active Shallow Crust,0.0,89.99149,-90.0,05/20/5715 +8.06657,48.7508,848,11,20,15,58,18,5.05,5.0,fr,58785,16,2517780,1,1,Active Shallow Crust,0.0,89.99054,0.0,11/20/0848 +8.06657,48.7508,1698,6,28,17,35,27,5.25,5.0,fr,58786,33,2517810,1,1,Active Shallow Crust,0.0,89.99049,-90.0,06/28/1698 +4.20551,41.84927,4268,7,21,7,39,45,3.55,5.0,fr,58787,85,2518560,1,1,Active Shallow Crust,0.0,89.99249,0.0,07/21/4268 +4.20551,41.84927,9987,3,19,1,46,12,3.65,5.0,fr,58788,199,2518572,1,1,Active Shallow Crust,0.0,89.99331,0.0,03/19/9987 +4.20551,41.84927,9017,4,10,16,17,2,3.75,5.0,fr,58789,180,2518584,1,1,Active Shallow Crust,0.0,89.98807,0.0,04/10/9017 +4.20551,41.84927,1090,5,11,10,27,23,4.05,5.0,fr,58790,21,2518620,1,1,Active Shallow Crust,0.0,89.99155,0.0,05/11/1090 +7.10196,49.77313,4078,1,20,5,2,58,3.65,5.0,fr,58791,81,2519052,1,1,Active Shallow Crust,0.0,89.98839,0.0,01/20/4078 +7.10196,49.77313,360,8,5,20,40,3,3.65,15.0,fr,58792,7,2519053,1,1,Active Shallow Crust,0.0,89.98839,0.0,08/05/0360 +7.10196,49.77313,4479,11,20,8,11,11,3.75,15.0,fr,58793,89,2519065,1,1,Active Shallow Crust,0.0,89.98965,0.0,11/20/4479 +7.10196,49.77313,7979,7,16,0,34,51,3.75,5.0,fr,58794,159,2519067,1,1,Active Shallow Crust,240.0077,58.01796,0.0,07/16/7979 +7.10196,49.77313,460,11,19,10,14,45,3.85,5.0,fr,58795,9,2519079,1,1,Active Shallow Crust,240.0117,57.99827,0.0,11/19/0460 +7.10196,49.77313,6744,12,12,11,29,7,4.25,15.0,fr,58796,134,2519125,1,1,Active Shallow Crust,0.0,89.99127,0.0,12/12/6744 +7.10196,49.77313,597,2,17,5,50,58,4.65,5.0,fr,58797,11,2519178,1,1,Active Shallow Crust,0.0,89.99072,-90.0,02/17/0597 +5.14071,43.18498,4037,7,2,22,33,9,3.55,5.0,fr,58798,80,2519526,1,1,Active Shallow Crust,0.0,89.99256,-90.0,07/02/4037 +5.14071,43.18498,7111,12,27,14,41,1,3.65,5.0,fr,58799,142,2519541,1,1,Active Shallow Crust,128.8998,89.96346,0.0,12/27/7111 +1.7034,48.00359,1767,9,9,5,44,18,3.55,5.0,fr,58800,35,2520480,1,2,Active Shallow Crust,0.0,89.98988,0.0,09/09/1767 +1.7034,48.00359,711,5,28,17,15,39,3.55,5.0,fr,58801,14,2520480,1,2,Active Shallow Crust,0.0,89.98988,0.0,05/28/0711 +1.7034,48.00359,4478,11,26,6,34,58,3.55,27.5,fr,58802,89,2520482,1,1,Active Shallow Crust,0.0,89.98988,0.0,11/26/4478 +1.7034,48.00359,7782,6,18,7,25,50,3.85,15.0,fr,58803,155,2520517,1,1,Active Shallow Crust,0.0,89.99045,0.0,06/18/7782 +1.7034,48.00359,7258,5,2,4,3,35,3.95,27.5,fr,58804,145,2520530,1,1,Active Shallow Crust,0.0,89.99043,0.0,05/02/7258 +1.7034,48.00359,7685,1,21,7,56,47,4.15,5.0,fr,58805,153,2520552,1,1,Active Shallow Crust,0.0,89.98985,0.0,01/21/7685 +1.7034,48.00359,9221,6,10,5,2,57,4.45,5.0,fr,58806,184,2520588,1,1,Active Shallow Crust,0.0,89.98982,0.0,06/10/9221 +-4.9004,48.02172,6730,7,9,18,28,38,3.75,5.0,fr,58807,134,2520984,1,1,Active Shallow Crust,0.0,89.98929,0.0,07/09/6730 +-4.9004,48.02172,9482,5,3,21,43,57,3.85,27.5,fr,58808,189,2520998,1,1,Active Shallow Crust,0.0,89.99045,0.0,05/03/9482 +-4.9004,48.02172,7770,3,9,10,34,7,4.05,5.0,fr,58809,155,2521029,1,1,Active Shallow Crust,128.8907,89.99242,0.0,03/09/7770 +-4.9004,48.02172,7245,6,4,11,24,46,4.25,5.0,fr,58810,144,2521047,1,1,Active Shallow Crust,240.0074,57.99435,0.0,06/04/7245 +-4.9004,48.02172,9341,12,29,16,17,24,4.35,5.0,fr,58811,186,2521062,1,1,Active Shallow Crust,0.0,89.98914,-90.0,12/29/9341 +-0.38434,48.67825,1326,12,13,23,54,1,3.65,15.0,fr,58812,26,2521462,1,1,Active Shallow Crust,128.9002,89.9635,0.0,12/13/1326 +-0.38434,48.67825,5789,11,28,10,52,49,3.75,5.0,fr,58813,115,2521464,1,2,Active Shallow Crust,0.0,89.99008,0.0,11/28/5789 +-0.38434,48.67825,328,7,19,11,56,28,3.75,5.0,fr,58814,6,2521464,1,2,Active Shallow Crust,0.0,89.99008,0.0,07/19/0328 +-0.38434,48.67825,5455,10,21,6,15,57,3.75,27.5,fr,58815,109,2521466,1,1,Active Shallow Crust,0.0,89.99008,0.0,10/21/5455 +-0.38434,48.67825,4826,10,12,7,25,25,3.85,5.0,fr,58816,96,2521476,1,1,Active Shallow Crust,0.0,89.98998,0.0,10/12/4826 +-0.38434,48.67825,8588,12,12,7,8,48,3.95,5.0,fr,58817,171,2521488,1,1,Active Shallow Crust,0.0,89.99002,0.0,12/12/8588 +-0.38434,48.67825,2233,9,23,3,47,17,4.05,15.0,fr,58818,44,2521501,1,1,Active Shallow Crust,0.0,89.98994,0.0,09/23/2233 +-0.38434,48.67825,8729,7,15,20,18,39,4.45,5.0,fr,58819,174,2521548,1,1,Active Shallow Crust,0.0,89.98996,0.0,07/15/8729 +-0.38434,48.67825,2423,3,28,17,57,10,4.45,5.0,fr,58820,48,2521557,1,1,Active Shallow Crust,128.8917,89.99373,0.0,03/28/2423 +-0.38434,48.67825,6505,1,31,16,41,48,4.85,5.0,fr,58821,130,2521596,1,1,Active Shallow Crust,0.0,89.99003,0.0,01/31/6505 +0.90686,42.57409,4417,7,23,23,43,19,3.55,5.0,fr,58822,88,2521920,1,3,Active Shallow Crust,0.0,89.98979,0.0,07/23/4417 +0.90686,42.57409,7423,12,12,15,8,42,3.55,5.0,fr,58823,148,2521920,1,3,Active Shallow Crust,0.0,89.98979,0.0,12/12/7423 +0.90686,42.57409,9141,8,2,22,14,41,3.55,5.0,fr,58824,182,2521920,1,3,Active Shallow Crust,0.0,89.98979,0.0,08/02/9141 +0.90686,42.57409,4482,11,27,14,36,49,3.55,15.0,fr,58825,89,2521921,1,2,Active Shallow Crust,0.0,89.98979,0.0,11/27/4482 +0.90686,42.57409,756,1,30,7,1,23,3.55,15.0,fr,58826,15,2521921,1,2,Active Shallow Crust,0.0,89.98979,0.0,01/30/0756 +0.90686,42.57409,3400,5,12,12,57,1,3.55,27.5,fr,58827,67,2521922,1,3,Active Shallow Crust,0.0,89.98979,0.0,05/12/3400 +0.90686,42.57409,676,12,7,7,30,53,3.55,27.5,fr,58828,13,2521922,1,3,Active Shallow Crust,0.0,89.98979,0.0,12/07/0676 +0.90686,42.57409,2065,12,7,4,16,29,3.55,27.5,fr,58829,41,2521922,1,3,Active Shallow Crust,0.0,89.98979,0.0,12/07/2065 +0.90686,42.57409,3864,8,18,6,59,47,3.55,5.0,fr,58830,77,2521923,1,2,Active Shallow Crust,240.012,57.9981,0.0,08/18/3864 +0.90686,42.57409,6798,10,26,4,10,10,3.55,5.0,fr,58831,135,2521923,1,2,Active Shallow Crust,240.012,57.9981,0.0,10/26/6798 +0.90686,42.57409,2116,7,25,13,4,48,3.55,15.0,fr,58832,42,2521924,1,3,Active Shallow Crust,240.012,57.9981,0.0,07/25/2116 +0.90686,42.57409,2504,2,24,0,38,4,3.55,15.0,fr,58833,50,2521924,1,3,Active Shallow Crust,240.012,57.9981,0.0,02/24/2504 +0.90686,42.57409,4988,4,12,2,41,5,3.55,15.0,fr,58834,99,2521924,1,3,Active Shallow Crust,240.012,57.9981,0.0,04/12/4988 +0.90686,42.57409,19,6,18,16,55,58,3.55,27.5,fr,58835,0,2521925,1,1,Active Shallow Crust,240.012,57.998,0.0,06/18/0019 +0.90686,42.57409,4751,7,6,11,17,11,3.55,5.0,fr,58836,95,2521926,1,1,Active Shallow Crust,0.0,89.98967,-90.0,07/06/4751 +0.90686,42.57409,1740,7,8,19,51,4,3.65,5.0,fr,58837,34,2521932,1,1,Active Shallow Crust,0.0,89.99007,0.0,07/08/1740 +0.90686,42.57409,6666,3,25,12,52,3,3.65,15.0,fr,58838,133,2521933,1,1,Active Shallow Crust,0.0,89.99007,0.0,03/25/6666 +0.90686,42.57409,6175,12,17,0,56,33,3.65,5.0,fr,58839,123,2521935,1,1,Active Shallow Crust,240.0007,58.01283,0.0,12/17/6175 +0.90686,42.57409,6264,8,15,16,33,14,3.65,5.0,fr,58840,125,2521941,1,1,Active Shallow Crust,128.9007,89.96352,0.0,08/15/6264 +0.90686,42.57409,7364,7,12,16,16,36,3.75,15.0,fr,58841,147,2521945,1,2,Active Shallow Crust,0.0,89.98968,0.0,07/12/7364 +0.90686,42.57409,2748,4,7,22,35,0,3.75,15.0,fr,58842,54,2521945,1,2,Active Shallow Crust,0.0,89.98968,0.0,04/07/2748 +0.90686,42.57409,20,10,29,8,54,48,3.75,15.0,fr,58843,0,2521954,1,1,Active Shallow Crust,128.897,89.96735,0.0,10/29/0020 +0.90686,42.57409,2404,4,26,4,55,36,3.85,5.0,fr,58844,48,2521956,1,1,Active Shallow Crust,0.0,89.99014,0.0,04/26/2404 +0.90686,42.57409,7528,4,21,5,57,38,3.95,5.0,fr,58845,150,2521968,1,1,Active Shallow Crust,0.0,89.99004,0.0,04/21/7528 +0.90686,42.57409,1589,5,25,18,18,49,3.95,15.0,fr,58846,31,2521969,1,1,Active Shallow Crust,0.0,89.99004,0.0,05/25/1589 +0.90686,42.57409,57,11,13,0,38,11,3.95,5.0,fr,58847,1,2521974,1,1,Active Shallow Crust,0.0,89.98993,-90.0,11/13/0057 +0.90686,42.57409,5910,2,12,9,49,26,3.95,15.0,fr,58848,118,2521975,1,1,Active Shallow Crust,0.0,89.98993,-90.0,02/12/5910 +0.90686,42.57409,8452,9,16,20,39,16,4.05,5.0,fr,58849,169,2521980,1,2,Active Shallow Crust,0.0,89.99008,0.0,09/16/8452 +0.90686,42.57409,7713,6,25,23,37,22,4.05,5.0,fr,58850,154,2521980,1,2,Active Shallow Crust,0.0,89.99008,0.0,06/25/7713 +0.90686,42.57409,6324,12,19,2,5,50,4.05,5.0,fr,58851,126,2521983,1,1,Active Shallow Crust,240.0053,58.00578,0.0,12/19/6324 +0.90686,42.57409,9308,8,10,13,58,37,4.05,27.5,fr,58852,186,2521985,1,1,Active Shallow Crust,240.0053,58.00575,0.0,08/10/9308 +0.90686,42.57409,9311,11,23,21,23,49,4.25,15.0,fr,58853,186,2522005,1,1,Active Shallow Crust,0.0,89.99005,0.0,11/23/9311 +0.90686,42.57409,5734,1,16,11,56,58,4.35,5.0,fr,58854,114,2522016,1,1,Active Shallow Crust,0.0,89.99002,0.0,01/16/5734 +0.90686,42.57409,2063,6,12,20,39,21,4.65,5.0,fr,58855,41,2522052,1,2,Active Shallow Crust,0.0,89.99006,0.0,06/12/2063 +0.90686,42.57409,2042,6,28,18,38,33,4.65,5.0,fr,58856,40,2522052,1,2,Active Shallow Crust,0.0,89.99006,0.0,06/28/2042 +0.90686,42.57409,6396,8,3,15,56,17,4.95,5.0,fr,58857,127,2522088,1,1,Active Shallow Crust,0.0,89.99,0.0,08/03/6396 +0.90686,42.57409,471,1,4,12,50,51,5.05,15.0,fr,58858,9,2522101,1,1,Active Shallow Crust,0.0,89.98993,0.0,01/04/0471 +1.66818,45.47291,7786,5,24,12,32,44,3.55,15.0,fr,58859,155,2522401,1,1,Active Shallow Crust,0.0,89.9894,0.0,05/24/7786 +1.66818,45.47291,2682,3,1,14,13,47,3.55,15.0,fr,58860,53,2522404,1,1,Active Shallow Crust,240.012,57.99847,0.0,03/01/2682 +1.66818,45.47291,5851,6,4,18,41,7,3.85,5.0,fr,58861,117,2522436,1,1,Active Shallow Crust,0.0,89.98999,0.0,06/04/5851 +1.66818,45.47291,4783,9,4,13,3,18,3.95,15.0,fr,58862,95,2522449,1,1,Active Shallow Crust,0.0,89.98996,0.0,09/04/4783 +1.66818,45.47291,8522,10,3,18,52,50,4.05,5.0,fr,58863,170,2522469,1,1,Active Shallow Crust,128.8906,89.99354,0.0,10/03/8522 +1.66818,45.47291,4328,3,18,8,20,28,4.15,15.0,fr,58864,86,2522473,1,1,Active Shallow Crust,0.0,89.99025,0.0,03/18/4328 +1.66818,45.47291,2868,9,24,19,47,26,4.15,15.0,fr,58865,57,2522479,1,1,Active Shallow Crust,0.0,89.99014,-90.0,09/24/2868 +6.51032,49.82684,3390,12,22,5,13,54,3.75,5.0,fr,58866,67,2523384,1,1,Active Shallow Crust,0.0,89.98966,0.0,12/22/3390 +6.51032,49.82684,7090,9,18,12,59,24,3.95,5.0,fr,58867,141,2523408,1,1,Active Shallow Crust,0.0,89.99179,0.0,09/18/7090 +6.51032,49.82684,18,1,8,1,22,8,4.05,5.0,fr,58868,0,2523420,1,1,Active Shallow Crust,0.0,89.98903,0.0,01/08/0018 +6.51032,49.82684,49,2,8,6,16,20,4.25,15.0,fr,58869,0,2523448,1,1,Active Shallow Crust,240.0081,57.99436,0.0,02/08/0049 +6.51032,49.82684,295,11,7,16,48,31,5.95,5.0,fr,58870,5,2523648,1,1,Active Shallow Crust,0.0,89.99014,0.0,11/07/0295 +4.1416,47.74578,6107,4,8,11,35,25,3.55,5.0,fr,58871,122,2523840,1,1,Active Shallow Crust,0.0,89.99322,0.0,04/08/6107 +4.1416,47.74578,3817,11,25,6,53,48,3.85,27.5,fr,58872,76,2523884,1,1,Active Shallow Crust,0.0,89.99029,-90.0,11/25/3817 +4.1416,47.74578,1716,11,16,20,12,56,3.95,5.0,fr,58873,34,2523888,1,1,Active Shallow Crust,0.0,89.99144,0.0,11/16/1716 +4.1416,47.74578,6774,12,3,9,17,20,4.55,5.0,fr,58874,135,2523960,1,1,Active Shallow Crust,0.0,89.98928,0.0,12/03/6774 +4.1416,47.74578,9366,7,15,21,5,25,4.75,5.0,fr,58875,187,2523993,1,1,Active Shallow Crust,128.8884,89.98824,0.0,07/15/9366 +3.27868,41.84947,2688,12,18,2,52,21,3.55,5.0,fr,58876,53,2524329,1,1,Active Shallow Crust,128.8967,89.99437,0.0,12/18/2688 +3.27868,41.84947,738,2,11,6,46,35,3.65,5.0,fr,58877,14,2524332,1,1,Active Shallow Crust,0.0,89.98996,0.0,02/11/0738 +3.27868,41.84947,5046,7,30,14,33,43,3.65,15.0,fr,58878,100,2524333,1,2,Active Shallow Crust,0.0,89.98996,0.0,07/30/5046 +3.27868,41.84947,4961,5,29,3,15,12,3.65,15.0,fr,58879,99,2524333,1,2,Active Shallow Crust,0.0,89.98996,0.0,05/29/4961 +3.27868,41.84947,1726,10,23,16,49,28,3.65,5.0,fr,58880,34,2524338,1,1,Active Shallow Crust,0.0,89.98985,-90.0,10/23/1726 +3.27868,41.84947,2659,7,31,12,39,29,3.75,27.5,fr,58881,53,2524352,1,1,Active Shallow Crust,0.0,89.99094,-90.0,07/31/2659 +3.27868,41.84947,2604,12,2,21,40,14,3.95,5.0,fr,58882,52,2524374,1,1,Active Shallow Crust,0.0,89.99041,-90.0,12/02/2604 +3.27868,41.84947,7705,9,19,19,9,47,4.05,5.0,fr,58883,154,2524380,1,1,Active Shallow Crust,0.0,89.98944,0.0,09/19/7705 +3.27868,41.84947,1308,9,16,0,34,3,4.35,5.0,fr,58884,26,2524419,1,1,Active Shallow Crust,240.0077,57.99555,0.0,09/16/1308 +3.27868,41.84947,3342,3,6,20,50,6,4.45,5.0,fr,58885,66,2524428,1,1,Active Shallow Crust,0.0,89.98934,0.0,03/06/3342 +3.278681,41.84947,7597,3,9,11,18,12,6.05,5.357596,fr,58886,151,2524620,1,1,Active Shallow Crust,0.0,89.99007,0.0,03/09/7597 +5.01586,45.93762,7101,7,15,12,20,52,3.55,5.0,fr,58887,142,2524800,1,2,Active Shallow Crust,0.0,89.99299,0.0,07/15/7101 +5.01586,45.93762,3002,5,9,0,40,55,3.55,5.0,fr,58888,60,2524800,1,2,Active Shallow Crust,0.0,89.99299,0.0,05/09/3002 +5.01586,45.93762,9031,5,29,0,45,34,3.55,15.0,fr,58889,180,2524801,1,1,Active Shallow Crust,0.0,89.99299,0.0,05/29/9031 +5.01586,45.93762,8570,5,10,10,26,41,3.55,15.0,fr,58890,171,2524807,1,1,Active Shallow Crust,0.0,89.9929,-90.0,05/10/8570 +5.01586,45.93762,322,9,2,20,39,8,3.55,5.0,fr,58891,6,2524809,1,1,Active Shallow Crust,128.8972,89.99299,0.0,09/02/0322 +5.01586,45.93762,1488,4,15,19,38,30,3.65,5.0,fr,58892,29,2524812,1,3,Active Shallow Crust,0.0,89.9875,0.0,04/15/1488 +5.01586,45.93762,928,6,1,9,38,36,3.65,5.0,fr,58893,18,2524812,1,3,Active Shallow Crust,0.0,89.9875,0.0,06/01/0928 +5.01586,45.93762,9244,6,6,21,27,42,3.65,5.0,fr,58894,184,2524812,1,3,Active Shallow Crust,0.0,89.9875,0.0,06/06/9244 +5.01586,45.93762,3850,7,23,15,22,10,3.65,5.0,fr,58895,76,2524821,1,1,Active Shallow Crust,128.9009,89.96352,0.0,07/23/3850 +5.01586,45.93762,338,2,24,2,8,31,3.75,5.0,fr,58896,6,2524824,1,1,Active Shallow Crust,0.0,89.98886,0.0,02/24/0338 +5.01586,45.93762,9991,6,13,19,52,4,3.75,5.0,fr,58897,199,2524827,1,1,Active Shallow Crust,240.0085,58.01699,0.0,06/13/9991 +5.01586,45.93762,5953,9,20,12,26,44,3.75,5.0,fr,58898,119,2524833,1,1,Active Shallow Crust,128.8972,89.96689,0.0,09/20/5953 +5.01586,45.93762,8433,3,7,18,4,37,3.85,15.0,fr,58899,168,2524837,1,1,Active Shallow Crust,0.0,89.99007,0.0,03/07/8433 +5.01586,45.93762,9238,2,25,17,39,18,3.95,5.0,fr,58900,184,2524848,1,2,Active Shallow Crust,0.0,89.99115,0.0,02/25/9238 +5.01586,45.93762,2384,8,17,19,31,50,3.95,5.0,fr,58901,47,2524848,1,2,Active Shallow Crust,0.0,89.99115,0.0,08/17/2384 +5.01586,45.93762,3932,1,19,17,28,5,3.95,5.0,fr,58902,78,2524851,1,1,Active Shallow Crust,240.02,58.00466,0.0,01/19/3932 +5.01586,45.93762,3387,11,21,12,36,43,4.05,27.5,fr,58903,67,2524862,1,1,Active Shallow Crust,0.0,89.98817,0.0,11/21/3387 +5.01586,45.93762,3031,8,28,13,59,35,4.05,27.5,fr,58904,60,2524871,1,1,Active Shallow Crust,128.8896,89.99409,0.0,08/28/3031 +5.01586,45.93762,1451,5,30,0,1,7,4.35,5.0,fr,58905,29,2524896,1,1,Active Shallow Crust,0.0,89.98883,0.0,05/30/1451 +5.01586,45.93762,5413,9,23,15,47,23,4.45,5.0,fr,58906,108,2524908,1,1,Active Shallow Crust,0.0,89.99004,0.0,09/23/5413 +5.01586,45.93762,1454,9,29,20,48,39,4.55,5.0,fr,58907,29,2524920,1,3,Active Shallow Crust,0.0,89.98891,0.0,09/29/1454 +5.01586,45.93762,308,4,21,21,19,11,4.55,5.0,fr,58908,6,2524920,1,3,Active Shallow Crust,0.0,89.98891,0.0,04/21/0308 +5.01586,45.93762,1115,1,17,14,55,52,4.55,5.0,fr,58909,22,2524920,1,3,Active Shallow Crust,0.0,89.98891,0.0,01/17/1115 +5.01586,45.93762,9511,5,1,20,23,41,4.85,5.0,fr,58910,190,2524956,1,1,Active Shallow Crust,0.0,89.99058,0.0,05/01/9511 +-2.508,42.06516,2493,7,17,10,54,27,3.55,5.0,fr,58911,49,2525760,1,2,Active Shallow Crust,0.0,89.98877,0.0,07/17/2493 +-2.508,42.06516,2382,9,24,9,29,49,3.55,5.0,fr,58912,47,2525760,1,2,Active Shallow Crust,0.0,89.98877,0.0,09/24/2382 +-2.508,42.06516,9934,10,7,14,5,17,3.55,5.0,fr,58913,198,2525763,1,1,Active Shallow Crust,240.012,57.9978,0.0,10/07/9934 +-2.508,42.06516,6385,9,3,19,2,36,3.55,5.0,fr,58914,127,2525766,1,1,Active Shallow Crust,0.0,89.98864,-90.0,09/03/6385 +-2.508,42.06516,3641,9,4,5,28,57,3.65,5.0,fr,58915,72,2525772,1,1,Active Shallow Crust,0.0,89.98999,0.0,09/04/3641 +-2.508,42.06516,7964,6,14,0,39,26,3.65,5.0,fr,58916,159,2525775,1,1,Active Shallow Crust,240.0007,58.01236,0.0,06/14/7964 +-2.508,42.06516,83,2,24,17,34,29,3.65,5.0,fr,58917,1,2525781,1,1,Active Shallow Crust,128.9017,89.96344,0.0,02/24/0083 +-2.508,42.06516,7056,5,30,6,0,52,3.75,27.5,fr,58918,141,2525786,1,1,Active Shallow Crust,0.0,89.99108,0.0,05/30/7056 +-2.508,42.06516,9833,3,12,5,41,25,3.85,5.0,fr,58919,196,2525796,1,1,Active Shallow Crust,0.0,89.9894,0.0,03/12/9833 +-2.508,42.06516,9844,12,7,13,28,48,3.85,5.0,fr,58920,196,2525799,1,1,Active Shallow Crust,240.01,57.99814,0.0,12/07/9844 +-2.508,42.06516,7102,6,23,12,55,2,3.95,5.0,fr,58921,142,2525808,1,1,Active Shallow Crust,0.0,89.99055,0.0,06/23/7102 +-2.508,42.06516,4637,11,29,1,17,1,4.05,15.0,fr,58922,92,2525821,1,1,Active Shallow Crust,0.0,89.98948,0.0,11/29/4637 +-2.508,42.06516,9414,5,14,9,5,28,4.35,5.0,fr,58923,188,2525865,1,1,Active Shallow Crust,128.8985,89.98287,0.0,05/14/9414 +-2.508,42.06516,5109,10,30,11,56,55,5.35,5.0,fr,58924,102,2525979,1,1,Active Shallow Crust,240.022,58.0011,0.0,10/30/5109 +-2.508,42.06516,9358,11,22,20,59,17,5.95,5.0,fr,58925,187,2526051,1,1,Active Shallow Crust,240.0429,58.00141,0.0,11/22/9358 +2.87497,43.52366,2728,1,25,5,28,58,3.55,5.0,fr,58926,54,2526240,1,1,Active Shallow Crust,0.0,89.98903,0.0,01/25/2728 +2.87497,43.52366,2921,10,22,22,21,53,3.55,15.0,fr,58927,58,2526241,1,1,Active Shallow Crust,0.0,89.98903,0.0,10/22/2921 +2.87497,43.52366,5312,10,13,7,35,57,3.65,5.0,fr,58928,106,2526252,1,1,Active Shallow Crust,0.0,89.99023,0.0,10/13/5312 +2.87497,43.52366,7716,12,17,20,55,51,3.65,15.0,fr,58929,154,2526253,1,1,Active Shallow Crust,0.0,89.99023,0.0,12/17/7716 +2.87497,43.52366,2320,2,5,17,31,36,3.85,27.5,fr,58930,46,2526278,1,1,Active Shallow Crust,0.0,89.98965,0.0,02/05/2320 +2.87497,43.52366,2701,11,29,0,31,58,3.95,15.0,fr,58931,54,2526292,1,1,Active Shallow Crust,240.0197,58.00505,0.0,11/29/2701 +2.87497,43.52366,1370,5,8,21,0,52,4.05,15.0,fr,58932,27,2526310,1,1,Active Shallow Crust,128.8915,89.99281,0.0,05/08/1370 +2.87497,43.52366,6568,12,11,5,51,45,4.55,5.0,fr,58933,131,2526360,1,1,Active Shallow Crust,0.0,89.98959,0.0,12/11/6568 +2.87497,43.52366,7497,6,30,9,37,34,4.75,27.5,fr,58934,149,2526395,1,1,Active Shallow Crust,128.8898,89.988,0.0,06/30/7497 +2.87497,43.52366,4043,1,27,6,3,50,5.05,5.0,fr,58935,80,2526420,1,1,Active Shallow Crust,0.0,89.99025,0.0,01/27/4043 +5.5433,41.21678,6421,7,22,16,10,15,3.75,15.0,fr,58936,128,2526745,1,1,Active Shallow Crust,0.0,89.98795,0.0,07/22/6421 +5.5433,41.21678,1042,3,15,6,18,37,4.25,27.5,fr,58937,20,2526809,1,1,Active Shallow Crust,240.0067,57.99435,0.0,03/15/1042 +0.21707,52.24576,4939,1,21,19,5,44,3.55,5.0,fr,58938,98,2527200,1,1,Active Shallow Crust,0.0,89.98997,0.0,01/21/4939 +0.21707,52.24576,5616,7,15,1,47,1,4.25,5.0,fr,58939,112,2527287,1,1,Active Shallow Crust,240.0089,57.99432,0.0,07/15/5616 +5.30514,42.80528,4589,7,25,9,26,23,3.65,5.0,fr,58940,91,2527692,1,3,Active Shallow Crust,0.0,89.98682,0.0,07/25/4589 +5.30514,42.80528,5824,10,23,14,23,39,3.65,5.0,fr,58941,116,2527692,1,3,Active Shallow Crust,0.0,89.98682,0.0,10/23/5824 +5.30514,42.80528,948,3,13,8,14,53,3.65,5.0,fr,58942,18,2527692,1,3,Active Shallow Crust,0.0,89.98682,0.0,03/13/0948 +5.30514,42.80528,5222,6,7,7,44,23,3.65,5.0,fr,58943,104,2527695,1,1,Active Shallow Crust,240.0005,58.01245,0.0,06/07/5222 +5.30514,42.80528,8968,4,17,9,37,10,3.85,5.0,fr,58944,179,2527719,1,1,Active Shallow Crust,240.0101,57.99765,0.0,04/17/8968 +2.21086,50.89686,1912,4,18,11,0,38,3.55,5.0,fr,58945,38,2528640,1,1,Active Shallow Crust,0.0,89.99046,0.0,04/18/1912 +2.21086,50.89686,8031,9,12,2,50,26,3.55,15.0,fr,58946,160,2528644,1,1,Active Shallow Crust,240.012,57.99865,0.0,09/12/8031 +2.21086,50.89686,6549,7,29,0,55,17,3.65,5.0,fr,58947,130,2528652,1,2,Active Shallow Crust,0.0,89.98866,0.0,07/29/6549 +2.21086,50.89686,2940,6,15,20,13,23,3.65,5.0,fr,58948,58,2528652,1,2,Active Shallow Crust,0.0,89.98866,0.0,06/15/2940 +2.21086,50.89686,2208,12,26,7,0,35,3.65,27.5,fr,58949,44,2528657,1,1,Active Shallow Crust,240.0019,58.0126,0.0,12/26/2208 +2.21086,50.89686,7692,9,5,17,7,29,3.75,5.0,fr,58950,153,2528664,1,1,Active Shallow Crust,0.0,89.9899,0.0,09/05/7692 +2.21086,50.89686,5223,3,19,11,22,10,3.85,15.0,fr,58951,104,2528677,1,1,Active Shallow Crust,0.0,89.991,0.0,03/19/5223 +2.21086,50.89686,9293,12,8,23,30,44,4.05,5.0,fr,58952,185,2528703,1,1,Active Shallow Crust,240.0066,58.00617,0.0,12/08/9293 +2.21086,50.89686,4593,4,4,8,21,2,4.05,27.5,fr,58953,91,2528705,1,1,Active Shallow Crust,240.0066,58.00615,0.0,04/04/4593 +2.21086,50.89686,1968,9,23,5,48,45,4.15,5.0,fr,58954,39,2528715,1,1,Active Shallow Crust,240.0091,57.99742,0.0,09/23/1968 +2.21086,50.89686,7918,4,5,7,24,50,4.55,5.0,fr,58955,158,2528760,1,1,Active Shallow Crust,0.0,89.98994,0.0,04/05/7918 +2.21086,50.89686,3136,7,22,23,56,58,4.75,5.0,fr,58956,62,2528784,1,1,Active Shallow Crust,0.0,89.98962,0.0,07/22/3136 +2.21086,50.89686,1513,9,23,9,26,26,5.15,27.5,fr,58957,30,2528834,1,1,Active Shallow Crust,0.0,89.98991,0.0,09/23/1513 +6.1692,48.40168,4277,4,8,4,3,37,3.55,5.0,fr,58958,85,2529120,1,1,Active Shallow Crust,0.0,89.99331,0.0,04/08/4277 +6.1692,48.40168,5227,9,19,7,0,26,3.75,15.0,fr,58959,104,2529145,1,1,Active Shallow Crust,0.0,89.98936,0.0,09/19/5227 +6.1692,48.40168,9287,7,19,9,52,17,3.85,5.0,fr,58960,185,2529156,1,1,Active Shallow Crust,0.0,89.99052,0.0,07/19/9287 +6.1692,48.40168,507,4,2,2,36,30,3.95,27.5,fr,58961,10,2529170,1,1,Active Shallow Crust,0.0,89.99155,0.0,04/02/0507 +6.1692,48.40168,9577,3,6,22,20,13,4.05,5.0,fr,58962,191,2529180,1,1,Active Shallow Crust,0.0,89.98871,0.0,03/06/9577 +6.1692,48.40168,8709,6,27,17,41,28,4.05,27.5,fr,58963,174,2529185,1,1,Active Shallow Crust,240.0056,58.00627,0.0,06/27/8709 +6.1692,48.40168,4809,3,31,21,19,50,4.35,5.0,fr,58964,96,2529216,1,1,Active Shallow Crust,0.0,89.98934,0.0,03/31/4809 +6.1692,48.40168,6627,7,30,6,15,40,4.55,15.0,fr,58965,132,2529241,1,1,Active Shallow Crust,0.0,89.98941,0.0,07/30/6627 +6.1692,48.40168,5607,1,18,8,48,34,5.75,5.0,fr,58966,112,2529384,1,1,Active Shallow Crust,0.0,89.98989,0.0,01/18/5607 +1.84226,45.08255,8076,7,17,6,0,58,3.55,5.0,fr,58967,161,2529600,1,1,Active Shallow Crust,0.0,89.98932,0.0,07/17/8076 +1.84226,45.08255,588,3,17,21,18,2,3.65,5.0,fr,58968,11,2529612,1,1,Active Shallow Crust,0.0,89.99048,0.0,03/17/0588 +1.84226,45.08255,1560,9,25,21,38,11,3.65,27.5,fr,58969,31,2529614,1,1,Active Shallow Crust,0.0,89.99048,0.0,09/25/1560 +1.84226,45.08255,7943,6,17,7,54,37,3.75,5.0,fr,58970,158,2529624,1,1,Active Shallow Crust,0.0,89.9901,0.0,06/17/7943 +1.84226,45.08255,5154,7,15,15,21,22,3.85,15.0,fr,58971,103,2529640,1,1,Active Shallow Crust,240.0106,57.99786,0.0,07/15/5154 +1.84226,45.08255,7075,9,7,10,11,3,4.05,5.0,fr,58972,141,2529663,1,1,Active Shallow Crust,240.0058,58.00583,0.0,09/07/7075 +1.84226,45.08255,4810,6,5,21,19,15,4.05,15.0,fr,58973,96,2529664,1,1,Active Shallow Crust,240.0058,58.00581,0.0,06/05/4810 +1.84226,45.08255,7851,10,31,14,20,16,5.15,5.0,fr,58974,157,2529792,1,1,Active Shallow Crust,0.0,89.99012,0.0,10/31/7851 +-4.04615,49.33053,4556,11,22,13,23,48,3.55,15.0,fr,58975,91,2530081,1,1,Active Shallow Crust,0.0,89.98685,0.0,11/22/4556 +-4.04615,49.33053,7977,2,26,16,16,29,3.65,15.0,fr,58976,159,2530093,1,1,Active Shallow Crust,0.0,89.98829,0.0,02/26/7977 +-4.04615,49.33053,910,6,25,14,59,15,4.05,15.0,fr,58977,18,2530147,1,1,Active Shallow Crust,0.0,89.98878,-90.0,06/25/0910 +7.6173,46.26062,8762,6,19,3,31,55,3.55,5.0,fr,58978,175,2530560,1,9,Active Shallow Crust,0.0,89.99303,0.0,06/19/8762 +7.6173,46.26062,4230,2,22,12,3,13,3.55,5.0,fr,58979,84,2530560,1,9,Active Shallow Crust,0.0,89.99303,0.0,02/22/4230 +7.6173,46.26062,4803,7,7,23,5,0,3.55,5.0,fr,58980,96,2530560,1,9,Active Shallow Crust,0.0,89.99303,0.0,07/07/4803 +7.6173,46.26062,7659,12,2,3,39,49,3.55,5.0,fr,58981,153,2530560,1,9,Active Shallow Crust,0.0,89.99303,0.0,12/02/7659 +7.6173,46.26062,8123,9,15,20,22,25,3.55,5.0,fr,58982,162,2530560,1,9,Active Shallow Crust,0.0,89.99303,0.0,09/15/8123 +7.6173,46.26062,3325,10,22,18,29,29,3.55,5.0,fr,58983,66,2530560,1,9,Active Shallow Crust,0.0,89.99303,0.0,10/22/3325 +7.6173,46.26062,345,4,14,17,48,35,3.55,5.0,fr,58984,6,2530560,1,9,Active Shallow Crust,0.0,89.99303,0.0,04/14/0345 +7.6173,46.26062,2735,11,6,18,5,38,3.55,5.0,fr,58985,54,2530560,1,9,Active Shallow Crust,0.0,89.99303,0.0,11/06/2735 +7.6173,46.26062,8376,5,21,10,28,21,3.55,5.0,fr,58986,167,2530560,1,9,Active Shallow Crust,0.0,89.99303,0.0,05/21/8376 +7.6173,46.26062,260,6,7,5,12,36,3.55,15.0,fr,58987,5,2530561,1,2,Active Shallow Crust,0.0,89.99303,0.0,06/07/0260 +7.6173,46.26062,5649,1,9,9,44,35,3.55,15.0,fr,58988,112,2530561,1,2,Active Shallow Crust,0.0,89.99303,0.0,01/09/5649 +7.6173,46.26062,6594,8,23,7,16,35,3.55,5.0,fr,58989,131,2530563,1,3,Active Shallow Crust,240.0124,57.99814,0.0,08/23/6594 +7.6173,46.26062,774,12,2,19,26,52,3.55,5.0,fr,58990,15,2530563,1,3,Active Shallow Crust,240.0124,57.99814,0.0,12/02/0774 +7.6173,46.26062,9141,9,20,3,53,4,3.55,5.0,fr,58991,182,2530563,1,3,Active Shallow Crust,240.0124,57.99814,0.0,09/20/9141 +7.6173,46.26062,2447,1,1,19,20,9,3.55,15.0,fr,58992,48,2530564,1,2,Active Shallow Crust,240.0124,57.99814,0.0,01/01/2447 +7.6173,46.26062,3699,4,18,3,16,20,3.55,15.0,fr,58993,73,2530564,1,2,Active Shallow Crust,240.0124,57.99814,0.0,04/18/3699 +7.6173,46.26062,3229,6,25,10,47,15,3.55,27.5,fr,58994,64,2530565,1,1,Active Shallow Crust,240.0124,57.99804,0.0,06/25/3229 +7.6173,46.26062,5216,10,12,7,31,21,3.55,5.0,fr,58995,104,2530566,1,4,Active Shallow Crust,0.0,89.99295,-90.0,10/12/5216 +7.6173,46.26062,2915,1,7,18,48,50,3.55,5.0,fr,58996,58,2530566,1,4,Active Shallow Crust,0.0,89.99295,-90.0,01/07/2915 +7.6173,46.26062,3760,3,27,0,35,17,3.55,5.0,fr,58997,75,2530566,1,4,Active Shallow Crust,0.0,89.99295,-90.0,03/27/3760 +7.6173,46.26062,7663,7,24,20,27,25,3.55,5.0,fr,58998,153,2530566,1,4,Active Shallow Crust,0.0,89.99295,-90.0,07/24/7663 +7.6173,46.26062,3021,8,24,16,21,25,3.55,5.0,fr,58999,60,2530569,1,1,Active Shallow Crust,128.8966,89.99303,0.0,08/24/3021 +7.6173,46.26062,1270,8,11,21,10,22,3.55,15.0,fr,59000,25,2530570,1,1,Active Shallow Crust,128.8966,89.99303,0.0,08/11/1270 +7.6173,46.26062,7604,5,12,20,53,59,3.65,5.0,fr,59001,152,2530572,1,7,Active Shallow Crust,0.0,89.98757,0.0,05/12/7604 +7.6173,46.26062,2812,1,18,5,25,2,3.65,5.0,fr,59002,56,2530572,1,7,Active Shallow Crust,0.0,89.98757,0.0,01/18/2812 +7.6173,46.26062,8289,1,5,20,47,3,3.65,5.0,fr,59003,165,2530572,1,7,Active Shallow Crust,0.0,89.98757,0.0,01/05/8289 +7.6173,46.26062,8481,8,1,18,56,27,3.65,5.0,fr,59004,169,2530572,1,7,Active Shallow Crust,0.0,89.98757,0.0,08/01/8481 +7.6173,46.26062,8712,5,29,15,42,38,3.65,5.0,fr,59005,174,2530572,1,7,Active Shallow Crust,0.0,89.98757,0.0,05/29/8712 +7.6173,46.26062,2928,11,25,10,31,27,3.65,5.0,fr,59006,58,2530572,1,7,Active Shallow Crust,0.0,89.98757,0.0,11/25/2928 +7.6173,46.26062,1539,9,21,15,19,35,3.65,5.0,fr,59007,30,2530572,1,7,Active Shallow Crust,0.0,89.98757,0.0,09/21/1539 +7.6173,46.26062,6078,1,1,11,23,18,3.65,15.0,fr,59008,121,2530573,1,1,Active Shallow Crust,0.0,89.98757,0.0,01/01/6078 +7.6173,46.26062,993,2,27,0,53,43,3.65,27.5,fr,59009,19,2530574,1,2,Active Shallow Crust,0.0,89.98757,0.0,02/27/0993 +7.6173,46.26062,6860,4,23,11,26,32,3.65,27.5,fr,59010,137,2530574,1,2,Active Shallow Crust,0.0,89.98757,0.0,04/23/6860 +7.6173,46.26062,8305,10,9,22,24,20,3.65,5.0,fr,59011,166,2530575,1,2,Active Shallow Crust,239.9999,58.01335,0.0,10/09/8305 +7.6173,46.26062,2808,11,1,2,29,35,3.65,5.0,fr,59012,56,2530575,1,2,Active Shallow Crust,239.9999,58.01335,0.0,11/01/2808 +7.6173,46.26062,6605,7,28,17,54,10,3.65,27.5,fr,59013,132,2530577,1,1,Active Shallow Crust,239.9999,58.01326,0.0,07/28/6605 +7.6173,46.26062,2482,4,12,11,26,53,3.65,5.0,fr,59014,49,2530578,1,1,Active Shallow Crust,0.0,89.98743,-90.0,04/12/2482 +7.6173,46.26062,8692,8,17,10,3,46,3.65,15.0,fr,59015,173,2530579,1,1,Active Shallow Crust,0.0,89.98743,-90.0,08/17/8692 +7.6173,46.26062,4420,7,16,5,27,30,3.65,5.0,fr,59016,88,2530581,1,1,Active Shallow Crust,128.9005,89.96352,0.0,07/16/4420 +7.6173,46.26062,431,5,17,18,6,16,3.65,27.5,fr,59017,8,2530583,1,1,Active Shallow Crust,128.9005,89.96352,0.0,05/17/0431 +7.6173,46.26062,5088,7,7,7,12,35,3.75,5.0,fr,59018,101,2530584,1,6,Active Shallow Crust,0.0,89.98892,0.0,07/07/5088 +7.6173,46.26062,474,8,26,11,23,45,3.75,5.0,fr,59019,9,2530584,1,6,Active Shallow Crust,0.0,89.98892,0.0,08/26/0474 +7.6173,46.26062,2035,3,3,22,18,53,3.75,5.0,fr,59020,40,2530584,1,6,Active Shallow Crust,0.0,89.98892,0.0,03/03/2035 +7.6173,46.26062,4735,3,25,7,49,20,3.75,5.0,fr,59021,94,2530584,1,6,Active Shallow Crust,0.0,89.98892,0.0,03/25/4735 +7.6173,46.26062,8405,2,9,3,57,18,3.75,5.0,fr,59022,168,2530584,1,6,Active Shallow Crust,0.0,89.98892,0.0,02/09/8405 +7.6173,46.26062,222,4,23,5,7,27,3.75,5.0,fr,59023,4,2530584,1,6,Active Shallow Crust,0.0,89.98892,0.0,04/23/0222 +7.6173,46.26062,1416,11,3,5,35,15,3.75,15.0,fr,59024,28,2530585,1,1,Active Shallow Crust,0.0,89.98892,0.0,11/03/1416 +7.6173,46.26062,7001,4,16,23,46,1,3.75,5.0,fr,59025,140,2530587,1,1,Active Shallow Crust,240.009,58.01702,0.0,04/16/7001 +7.6173,46.26062,8216,4,16,21,42,7,3.75,5.0,fr,59026,164,2530590,1,1,Active Shallow Crust,0.0,89.98879,-90.0,04/16/8216 +7.6173,46.26062,2258,2,10,20,29,44,3.75,15.0,fr,59027,45,2530594,1,1,Active Shallow Crust,128.8973,89.9669,0.0,02/10/2258 +7.6173,46.26062,1292,7,8,8,0,35,3.85,5.0,fr,59028,25,2530596,1,6,Active Shallow Crust,0.0,89.99013,0.0,07/08/1292 +7.6173,46.26062,3334,10,16,3,41,20,3.85,5.0,fr,59029,66,2530596,1,6,Active Shallow Crust,0.0,89.99013,0.0,10/16/3334 +7.6173,46.26062,8177,3,16,11,49,13,3.85,5.0,fr,59030,163,2530596,1,6,Active Shallow Crust,0.0,89.99013,0.0,03/16/8177 +7.6173,46.26062,5666,12,6,14,28,59,3.85,5.0,fr,59031,113,2530596,1,6,Active Shallow Crust,0.0,89.99013,0.0,12/06/5666 +7.6173,46.26062,399,10,4,0,9,17,3.85,5.0,fr,59032,7,2530596,1,6,Active Shallow Crust,0.0,89.99013,0.0,10/04/0399 +7.6173,46.26062,1395,1,24,8,6,35,3.85,5.0,fr,59033,27,2530596,1,6,Active Shallow Crust,0.0,89.99013,0.0,01/24/1395 +7.6173,46.26062,5524,2,15,13,13,11,3.85,15.0,fr,59034,110,2530597,1,1,Active Shallow Crust,0.0,89.99013,0.0,02/15/5524 +7.6173,46.26062,2072,5,28,4,52,55,3.85,5.0,fr,59035,41,2530599,1,1,Active Shallow Crust,240.0107,57.99723,0.0,05/28/2072 +7.6173,46.26062,8739,9,3,22,22,27,3.85,15.0,fr,59036,174,2530600,1,1,Active Shallow Crust,240.0107,57.99723,0.0,09/03/8739 +7.6173,46.26062,5395,4,17,5,50,20,3.85,15.0,fr,59037,107,2530603,1,2,Active Shallow Crust,0.0,89.99001,-90.0,04/17/5395 +7.6173,46.26062,7782,6,15,2,31,21,3.85,15.0,fr,59038,155,2530603,1,2,Active Shallow Crust,0.0,89.99001,-90.0,06/15/7782 +7.6173,46.26062,3182,3,30,6,35,13,3.85,5.0,fr,59039,63,2530605,1,1,Active Shallow Crust,128.8948,89.99506,0.0,03/30/3182 +7.6173,46.26062,1379,9,20,6,43,29,3.95,5.0,fr,59040,27,2530608,1,6,Active Shallow Crust,0.0,89.9912,0.0,09/20/1379 +7.6173,46.26062,307,2,9,14,26,51,3.95,5.0,fr,59041,6,2530608,1,6,Active Shallow Crust,0.0,89.9912,0.0,02/09/0307 +7.6173,46.26062,4915,8,23,22,15,10,3.95,5.0,fr,59042,98,2530608,1,6,Active Shallow Crust,0.0,89.9912,0.0,08/23/4915 +7.6173,46.26062,9055,11,13,10,31,16,3.95,5.0,fr,59043,181,2530608,1,6,Active Shallow Crust,0.0,89.9912,0.0,11/13/9055 +7.6173,46.26062,1446,3,1,18,14,19,3.95,5.0,fr,59044,28,2530608,1,6,Active Shallow Crust,0.0,89.9912,0.0,03/01/1446 +7.6173,46.26062,578,8,12,18,59,5,3.95,5.0,fr,59045,11,2530608,1,6,Active Shallow Crust,0.0,89.9912,0.0,08/12/0578 +7.6173,46.26062,5690,3,17,17,15,45,3.95,5.0,fr,59046,113,2530611,1,1,Active Shallow Crust,240.0203,58.00496,0.0,03/17/5690 +7.6173,46.26062,9322,11,14,20,13,15,3.95,15.0,fr,59047,186,2530612,1,1,Active Shallow Crust,240.0203,58.00496,0.0,11/14/9322 +7.6173,46.26062,9740,12,1,13,43,48,4.05,5.0,fr,59048,194,2530620,1,2,Active Shallow Crust,0.0,89.98824,0.0,12/01/9740 +7.6173,46.26062,5485,12,22,4,2,1,4.05,5.0,fr,59049,109,2530620,1,2,Active Shallow Crust,0.0,89.98824,0.0,12/22/5485 +7.6173,46.26062,6782,4,10,19,39,41,4.05,15.0,fr,59050,135,2530621,1,1,Active Shallow Crust,0.0,89.98824,0.0,04/10/6782 +7.6173,46.26062,5589,8,26,8,32,8,4.05,27.5,fr,59051,111,2530628,1,1,Active Shallow Crust,0.0,89.9881,-90.0,08/26/5589 +7.6173,46.26062,4271,10,14,17,25,17,4.15,5.0,fr,59052,85,2530632,1,5,Active Shallow Crust,0.0,89.98952,0.0,10/14/4271 +7.6173,46.26062,5237,4,25,10,36,6,4.15,5.0,fr,59053,104,2530632,1,5,Active Shallow Crust,0.0,89.98952,0.0,04/25/5237 +7.6173,46.26062,2953,11,15,0,19,8,4.15,5.0,fr,59054,59,2530632,1,5,Active Shallow Crust,0.0,89.98952,0.0,11/15/2953 +7.6173,46.26062,349,9,11,12,39,37,4.15,5.0,fr,59055,6,2530632,1,5,Active Shallow Crust,0.0,89.98952,0.0,09/11/0349 +7.6173,46.26062,7696,9,19,10,58,44,4.15,5.0,fr,59056,153,2530632,1,5,Active Shallow Crust,0.0,89.98952,0.0,09/19/7696 +7.6173,46.26062,9487,6,11,8,40,23,4.15,5.0,fr,59057,189,2530638,1,2,Active Shallow Crust,0.0,89.9894,-90.0,06/11/9487 +7.6173,46.26062,3098,1,19,3,32,15,4.15,5.0,fr,59058,61,2530638,1,2,Active Shallow Crust,0.0,89.9894,-90.0,01/19/3098 +7.6173,46.26062,6199,9,28,3,25,0,4.25,5.0,fr,59059,123,2530644,1,6,Active Shallow Crust,0.0,89.99065,0.0,09/28/6199 +7.6173,46.26062,8823,9,27,9,46,14,4.25,5.0,fr,59060,176,2530644,1,6,Active Shallow Crust,0.0,89.99065,0.0,09/27/8823 +7.6173,46.26062,642,7,28,14,50,3,4.25,5.0,fr,59061,12,2530644,1,6,Active Shallow Crust,0.0,89.99065,0.0,07/28/0642 +7.6173,46.26062,6670,9,23,23,11,59,4.25,5.0,fr,59062,133,2530644,1,6,Active Shallow Crust,0.0,89.99065,0.0,09/23/6670 +7.6173,46.26062,3734,8,11,22,12,29,4.25,5.0,fr,59063,74,2530644,1,6,Active Shallow Crust,0.0,89.99065,0.0,08/11/3734 +7.6173,46.26062,9673,9,22,10,54,17,4.25,5.0,fr,59064,193,2530644,1,6,Active Shallow Crust,0.0,89.99065,0.0,09/22/9673 +7.6173,46.26062,9400,9,25,0,6,21,4.25,5.0,fr,59065,187,2530647,1,1,Active Shallow Crust,240.0073,57.99407,0.0,09/25/9400 +7.6173,46.26062,4912,7,30,18,50,4,4.35,5.0,fr,59066,98,2530656,1,2,Active Shallow Crust,0.0,89.9889,0.0,07/30/4912 +7.6173,46.26062,5130,6,19,21,5,8,4.35,5.0,fr,59067,102,2530656,1,2,Active Shallow Crust,0.0,89.9889,0.0,06/19/5130 +7.6173,46.26062,7183,2,7,15,21,40,4.35,27.5,fr,59068,143,2530658,1,1,Active Shallow Crust,0.0,89.9889,0.0,02/07/7183 +7.6173,46.26062,1322,7,7,21,46,56,4.35,5.0,fr,59069,26,2530659,1,2,Active Shallow Crust,240.008,57.99618,0.0,07/07/1322 +7.6173,46.26062,6455,1,25,5,4,55,4.35,5.0,fr,59070,129,2530659,1,2,Active Shallow Crust,240.008,57.99618,0.0,01/25/6455 +7.6173,46.26062,863,6,6,21,2,48,4.45,5.0,fr,59071,17,2530668,1,1,Active Shallow Crust,0.0,89.9901,0.0,06/06/0863 +7.6173,46.26062,8626,6,9,23,39,46,4.45,15.0,fr,59072,172,2530669,1,1,Active Shallow Crust,0.0,89.9901,0.0,06/09/8626 +7.6173,46.26062,1632,12,22,22,25,23,4.55,5.0,fr,59073,32,2530680,1,5,Active Shallow Crust,0.0,89.98898,0.0,12/22/1632 +7.6173,46.26062,4970,7,18,2,9,34,4.55,5.0,fr,59074,99,2530680,1,5,Active Shallow Crust,0.0,89.98898,0.0,07/18/4970 +7.6173,46.26062,2010,2,6,3,27,55,4.55,5.0,fr,59075,40,2530680,1,5,Active Shallow Crust,0.0,89.98898,0.0,02/06/2010 +7.6173,46.26062,284,12,30,2,30,41,4.55,5.0,fr,59076,5,2530680,1,5,Active Shallow Crust,0.0,89.98898,0.0,12/30/0284 +7.6173,46.26062,6964,4,29,8,39,30,4.55,5.0,fr,59077,139,2530680,1,5,Active Shallow Crust,0.0,89.98898,0.0,04/29/6964 +7.6173,46.26062,592,2,14,20,27,36,4.55,5.0,fr,59078,11,2530686,1,1,Active Shallow Crust,0.0,89.99108,-90.0,02/14/0592 +7.6173,46.26062,2613,4,21,22,18,36,4.65,5.0,fr,59079,52,2530692,1,1,Active Shallow Crust,0.0,89.99017,0.0,04/21/2613 +7.6173,46.26062,9826,3,22,15,48,4,4.65,5.0,fr,59080,196,2530701,1,1,Active Shallow Crust,128.8914,89.98672,0.0,03/22/9826 +7.6173,46.26062,1246,2,9,16,50,28,4.75,5.0,fr,59081,24,2530704,1,1,Active Shallow Crust,0.0,89.98949,0.0,02/09/1246 +7.6173,46.26062,2913,2,22,17,11,26,4.75,15.0,fr,59082,58,2530705,1,2,Active Shallow Crust,0.0,89.98949,0.0,02/22/2913 +7.6173,46.26062,6936,3,21,12,25,19,4.75,15.0,fr,59083,138,2530705,1,2,Active Shallow Crust,0.0,89.98949,0.0,03/21/6936 +7.6173,46.26062,7827,10,21,9,51,2,4.85,5.0,fr,59084,156,2530722,1,1,Active Shallow Crust,0.0,89.99052,-90.0,10/21/7827 +7.6173,46.26062,3378,12,3,17,33,2,4.95,5.0,fr,59085,67,2530728,1,2,Active Shallow Crust,0.0,89.99026,0.0,12/03/3378 +7.6173,46.26062,2200,4,29,3,10,37,4.95,5.0,fr,59086,43,2530728,1,2,Active Shallow Crust,0.0,89.99026,0.0,04/29/2200 +7.6173,46.26062,2953,7,21,5,56,40,4.95,15.0,fr,59087,59,2530729,1,1,Active Shallow Crust,0.0,89.99026,0.0,07/21/2953 +7.6173,46.26062,714,4,21,5,27,4,4.95,27.5,fr,59088,14,2530733,1,1,Active Shallow Crust,240.0115,58.00455,0.0,04/21/0714 +7.6173,46.26062,7908,11,30,15,35,33,5.05,15.0,fr,59089,158,2530741,1,1,Active Shallow Crust,0.0,89.99008,0.0,11/30/7908 +7.6173,46.26062,9534,7,26,19,30,5,5.05,5.0,fr,59090,190,2530749,1,2,Active Shallow Crust,128.8854,89.99052,0.0,07/26/9534 +7.6173,46.26062,9236,4,29,20,38,42,5.05,5.0,fr,59091,184,2530749,1,2,Active Shallow Crust,128.8854,89.99052,0.0,04/29/9236 +7.6173,46.26062,8371,3,3,13,6,35,5.95,5.0,fr,59092,167,2530857,1,1,Active Shallow Crust,128.865,89.9902,0.0,03/03/8371 +0.94724,47.03086,9516,8,23,2,11,31,3.55,5.0,fr,59093,190,2531040,1,1,Active Shallow Crust,0.0,89.98969,0.0,08/23/9516 +0.94724,47.03086,8902,3,8,10,42,28,3.55,5.0,fr,59094,178,2531046,1,1,Active Shallow Crust,0.0,89.98957,-90.0,03/08/8902 +0.94724,47.03086,3024,11,12,20,38,57,3.55,5.0,fr,59095,60,2531049,1,2,Active Shallow Crust,128.8961,89.99399,0.0,11/12/3024 +0.94724,47.03086,2873,8,23,22,46,44,3.55,5.0,fr,59096,57,2531049,1,2,Active Shallow Crust,128.8961,89.99399,0.0,08/23/2873 +0.94724,47.03086,9811,2,18,12,6,18,3.65,5.0,fr,59097,196,2531052,1,1,Active Shallow Crust,0.0,89.99004,0.0,02/18/9811 +0.94724,47.03086,5998,3,27,1,21,46,3.75,5.0,fr,59098,119,2531064,1,5,Active Shallow Crust,0.0,89.98976,0.0,03/27/5998 +0.94724,47.03086,9384,4,23,17,45,58,3.75,5.0,fr,59099,187,2531064,1,5,Active Shallow Crust,0.0,89.98976,0.0,04/23/9384 +0.94724,47.03086,7647,3,1,0,53,1,3.75,5.0,fr,59100,152,2531064,1,5,Active Shallow Crust,0.0,89.98976,0.0,03/01/7647 +0.94724,47.03086,2888,6,19,14,47,50,3.75,5.0,fr,59101,57,2531064,1,5,Active Shallow Crust,0.0,89.98976,0.0,06/19/2888 +0.94724,47.03086,5358,9,12,12,11,2,3.75,5.0,fr,59102,107,2531064,1,5,Active Shallow Crust,0.0,89.98976,0.0,09/12/5358 +0.94724,47.03086,6870,10,26,14,25,32,3.85,5.0,fr,59103,137,2531076,1,1,Active Shallow Crust,0.0,89.99026,0.0,10/26/6870 +0.94724,47.03086,3516,8,20,1,18,13,3.85,15.0,fr,59104,70,2531086,1,1,Active Shallow Crust,128.8957,89.99361,0.0,08/20/3516 +0.94724,47.03086,5600,4,22,20,39,15,3.95,15.0,fr,59105,111,2531089,1,1,Active Shallow Crust,0.0,89.99024,0.0,04/22/5600 +0.94724,47.03086,5763,2,16,4,55,52,3.95,5.0,fr,59106,115,2531091,1,1,Active Shallow Crust,240.0198,58.00495,0.0,02/16/5763 +0.94724,47.03086,2439,10,9,17,22,5,4.05,5.0,fr,59107,48,2531106,1,1,Active Shallow Crust,0.0,89.99023,-90.0,10/09/2439 +0.94724,47.03086,1930,1,25,21,57,56,4.05,5.0,fr,59108,38,2531109,1,1,Active Shallow Crust,128.8905,89.99372,0.0,01/25/1930 +0.94724,47.03086,1002,11,6,16,48,29,4.15,27.5,fr,59109,20,2531114,1,1,Active Shallow Crust,0.0,89.9901,0.0,11/06/1002 +0.94724,47.03086,8724,4,25,16,14,38,4.25,5.0,fr,59110,174,2531124,1,1,Active Shallow Crust,0.0,89.99002,0.0,04/25/8724 +0.94724,47.03086,8155,5,6,18,8,59,4.25,15.0,fr,59111,163,2531125,1,1,Active Shallow Crust,0.0,89.99002,0.0,05/06/8155 +0.94724,47.03086,5387,2,7,4,42,39,4.45,5.0,fr,59112,107,2531148,1,1,Active Shallow Crust,0.0,89.98994,0.0,02/07/5387 +0.94724,47.03086,8994,3,14,22,33,38,4.75,15.0,fr,59113,179,2531194,1,1,Active Shallow Crust,128.8885,89.98809,0.0,03/14/8994 +4.42075,45.59436,6285,4,16,15,40,51,3.65,5.0,fr,59114,125,2531532,1,2,Active Shallow Crust,0.0,89.98742,0.0,04/16/6285 +4.42075,45.59436,8874,3,22,15,8,31,3.65,5.0,fr,59115,177,2531532,1,2,Active Shallow Crust,0.0,89.98742,0.0,03/22/8874 +4.42075,45.59436,7816,8,3,22,27,26,3.85,5.0,fr,59116,156,2531556,1,1,Active Shallow Crust,0.0,89.99001,0.0,08/03/7816 +4.42075,45.59436,4144,11,27,14,48,43,3.85,15.0,fr,59117,82,2531557,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/27/4144 +4.42075,45.59436,2625,12,31,16,31,13,3.95,5.0,fr,59118,52,2531568,1,1,Active Shallow Crust,0.0,89.9911,0.0,12/31/2625 +4.42075,45.59436,628,2,29,17,11,55,4.05,5.0,fr,59119,12,2531580,1,1,Active Shallow Crust,0.0,89.9881,0.0,02/29/0628 +4.42075,45.59436,3318,9,1,0,4,54,4.05,15.0,fr,59120,66,2531581,1,1,Active Shallow Crust,0.0,89.9881,0.0,09/01/3318 +-0.93218,44.5856,2261,11,20,16,51,14,3.55,15.0,fr,59121,45,2532001,1,2,Active Shallow Crust,0.0,89.99013,0.0,11/20/2261 +-0.93218,44.5856,3832,6,17,3,12,16,3.55,15.0,fr,59122,76,2532001,1,2,Active Shallow Crust,0.0,89.99013,0.0,06/17/3832 +-0.93218,44.5856,3105,1,26,14,31,23,3.95,15.0,fr,59123,62,2532049,1,1,Active Shallow Crust,0.0,89.98981,0.0,01/26/3105 +5.35044,43.87878,2474,8,27,16,22,33,3.55,5.0,fr,59124,49,2532480,1,2,Active Shallow Crust,0.0,89.99273,0.0,08/27/2474 +5.35044,43.87878,4870,10,1,3,5,13,3.55,5.0,fr,59125,97,2532480,1,2,Active Shallow Crust,0.0,89.99273,0.0,10/01/4870 +5.35044,43.87878,287,6,5,10,11,58,3.55,15.0,fr,59126,5,2532481,1,3,Active Shallow Crust,0.0,89.99273,0.0,06/05/0287 +5.35044,43.87878,2521,4,24,2,45,8,3.55,15.0,fr,59127,50,2532481,1,3,Active Shallow Crust,0.0,89.99273,0.0,04/24/2521 +5.35044,43.87878,4526,6,17,22,8,3,3.55,15.0,fr,59128,90,2532481,1,3,Active Shallow Crust,0.0,89.99273,0.0,06/17/4526 +5.35044,43.87878,3281,2,5,8,42,46,3.55,15.0,fr,59129,65,2532487,1,1,Active Shallow Crust,0.0,89.99265,-90.0,02/05/3281 +5.35044,43.87878,5229,1,11,10,32,2,3.65,5.0,fr,59130,104,2532492,1,1,Active Shallow Crust,0.0,89.98705,0.0,01/11/5229 +5.35044,43.87878,2005,12,24,9,35,29,3.65,15.0,fr,59131,40,2532493,1,1,Active Shallow Crust,0.0,89.98705,0.0,12/24/2005 +5.35044,43.87878,5424,6,3,5,29,43,3.65,5.0,fr,59132,108,2532498,1,1,Active Shallow Crust,0.0,89.98689,-90.0,06/03/5424 +5.35044,43.87878,1499,8,29,4,51,31,3.65,15.0,fr,59133,29,2532499,1,1,Active Shallow Crust,0.0,89.98689,-90.0,08/29/1499 +5.35044,43.87878,771,5,22,20,33,1,3.75,5.0,fr,59134,15,2532504,1,2,Active Shallow Crust,0.0,89.98845,0.0,05/22/0771 +5.35044,43.87878,9364,8,23,12,28,39,3.75,5.0,fr,59135,187,2532504,1,2,Active Shallow Crust,0.0,89.98845,0.0,08/23/9364 +5.35044,43.87878,5921,3,10,11,39,57,3.75,15.0,fr,59136,118,2532505,1,2,Active Shallow Crust,0.0,89.98845,0.0,03/10/5921 +5.35044,43.87878,2380,6,30,23,36,16,3.75,15.0,fr,59137,47,2532505,1,2,Active Shallow Crust,0.0,89.98845,0.0,06/30/2380 +5.35044,43.87878,194,1,31,17,1,31,3.85,5.0,fr,59138,3,2532516,1,1,Active Shallow Crust,0.0,89.98971,0.0,01/31/0194 +5.35044,43.87878,5036,3,24,16,26,12,3.85,15.0,fr,59139,100,2532517,1,1,Active Shallow Crust,0.0,89.98971,0.0,03/24/5036 +5.35044,43.87878,5221,4,14,19,28,52,3.85,5.0,fr,59140,104,2532522,1,1,Active Shallow Crust,0.0,89.98959,-90.0,04/14/5221 +5.35044,43.87878,2245,5,19,8,29,50,3.95,5.0,fr,59141,44,2532528,1,1,Active Shallow Crust,0.0,89.99083,0.0,05/19/2245 +5.35044,43.87878,9557,3,29,20,24,32,3.95,15.0,fr,59142,191,2532529,1,1,Active Shallow Crust,0.0,89.99083,0.0,03/29/9557 +5.35044,43.87878,4291,8,11,13,6,39,3.95,27.5,fr,59143,85,2532530,1,1,Active Shallow Crust,0.0,89.99083,0.0,08/11/4291 +5.35044,43.87878,7862,5,1,10,50,55,3.95,15.0,fr,59144,157,2532532,1,1,Active Shallow Crust,240.0189,58.00514,0.0,05/01/7862 +5.35044,43.87878,1454,7,12,14,52,37,3.95,15.0,fr,59145,29,2532535,1,1,Active Shallow Crust,0.0,89.99072,-90.0,07/12/1454 +5.35044,43.87878,7445,5,26,12,25,8,4.15,5.0,fr,59146,148,2532552,1,1,Active Shallow Crust,0.0,89.98907,0.0,05/26/7445 +5.35044,43.87878,447,8,24,3,26,31,4.25,5.0,fr,59147,8,2532564,1,1,Active Shallow Crust,0.0,89.99026,0.0,08/24/0447 +5.35044,43.87878,4541,1,20,23,28,26,4.25,15.0,fr,59148,90,2532568,1,1,Active Shallow Crust,240.0076,57.99403,0.0,01/20/4541 +5.35044,43.87878,3861,3,2,9,40,54,4.65,15.0,fr,59149,77,2532613,1,1,Active Shallow Crust,0.0,89.98975,0.0,03/02/3861 +5.35044,43.87878,9503,3,1,15,41,22,4.65,27.5,fr,59150,190,2532614,1,1,Active Shallow Crust,0.0,89.98975,0.0,03/01/9503 +5.35044,43.87878,7090,10,15,14,52,15,5.25,5.0,fr,59151,141,2532684,1,1,Active Shallow Crust,0.0,89.98973,0.0,10/15/7090 +6.87044,46.04401,2690,10,13,5,24,6,3.55,5.0,fr,59152,53,2532960,1,6,Active Shallow Crust,0.0,89.993,0.0,10/13/2690 +6.87044,46.04401,9104,3,22,3,13,15,3.55,5.0,fr,59153,182,2532960,1,6,Active Shallow Crust,0.0,89.993,0.0,03/22/9104 +6.87044,46.04401,9345,6,13,22,34,14,3.55,5.0,fr,59154,186,2532960,1,6,Active Shallow Crust,0.0,89.993,0.0,06/13/9345 +6.87044,46.04401,2377,9,13,11,11,10,3.55,5.0,fr,59155,47,2532960,1,6,Active Shallow Crust,0.0,89.993,0.0,09/13/2377 +6.87044,46.04401,518,12,17,15,26,49,3.55,5.0,fr,59156,10,2532960,1,6,Active Shallow Crust,0.0,89.993,0.0,12/17/0518 +6.87044,46.04401,4839,6,6,20,7,6,3.55,5.0,fr,59157,96,2532960,1,6,Active Shallow Crust,0.0,89.993,0.0,06/06/4839 +6.87044,46.04401,8923,5,12,14,38,42,3.55,15.0,fr,59158,178,2532961,1,1,Active Shallow Crust,0.0,89.993,0.0,05/12/8923 +6.87044,46.04401,9089,12,15,16,19,3,3.55,27.5,fr,59159,181,2532962,1,2,Active Shallow Crust,0.0,89.993,0.0,12/15/9089 +6.87044,46.04401,27,1,24,6,26,0,3.55,27.5,fr,59160,0,2532962,1,2,Active Shallow Crust,0.0,89.993,0.0,01/24/0027 +6.87044,46.04401,583,2,3,21,0,38,3.55,5.0,fr,59161,11,2532963,1,1,Active Shallow Crust,240.0123,57.99798,0.0,02/03/0583 +6.87044,46.04401,6832,11,22,13,33,29,3.55,5.0,fr,59162,136,2532969,1,1,Active Shallow Crust,128.8961,89.993,0.0,11/22/6832 +6.87044,46.04401,4600,1,6,12,43,13,3.65,5.0,fr,59163,91,2532972,1,3,Active Shallow Crust,0.0,89.98753,0.0,01/06/4600 +6.87044,46.04401,1940,12,21,0,26,58,3.65,5.0,fr,59164,38,2532972,1,3,Active Shallow Crust,0.0,89.98753,0.0,12/21/1940 +6.87044,46.04401,9865,6,3,5,10,50,3.65,5.0,fr,59165,197,2532972,1,3,Active Shallow Crust,0.0,89.98753,0.0,06/03/9865 +6.87044,46.04401,7802,3,12,10,54,7,3.65,5.0,fr,59166,156,2532978,1,1,Active Shallow Crust,0.0,89.98738,-90.0,03/12/7802 +6.87044,46.04401,9780,12,11,5,37,15,3.75,5.0,fr,59167,195,2532984,1,2,Active Shallow Crust,0.0,89.98888,0.0,12/11/9780 +6.87044,46.04401,8596,5,27,9,50,5,3.75,5.0,fr,59168,171,2532984,1,2,Active Shallow Crust,0.0,89.98888,0.0,05/27/8596 +6.87044,46.04401,2800,6,6,9,9,10,3.75,15.0,fr,59169,55,2532985,1,2,Active Shallow Crust,0.0,89.98888,0.0,06/06/2800 +6.87044,46.04401,3170,5,11,15,2,57,3.75,15.0,fr,59170,63,2532985,1,2,Active Shallow Crust,0.0,89.98888,0.0,05/11/3170 +6.87044,46.04401,8775,3,17,6,28,19,3.75,15.0,fr,59171,175,2532991,1,1,Active Shallow Crust,0.0,89.98875,-90.0,03/17/8775 +6.87044,46.04401,4837,2,4,0,36,57,3.85,5.0,fr,59172,96,2532996,1,2,Active Shallow Crust,0.0,89.99009,0.0,02/04/4837 +6.87044,46.04401,2009,2,11,3,59,6,3.85,5.0,fr,59173,40,2532996,1,2,Active Shallow Crust,0.0,89.99009,0.0,02/11/2009 +6.87044,46.04401,863,12,13,4,31,26,3.85,15.0,fr,59174,17,2532997,1,1,Active Shallow Crust,0.0,89.99009,0.0,12/13/0863 +6.87044,46.04401,547,2,24,18,10,13,3.85,5.0,fr,59175,10,2533002,1,1,Active Shallow Crust,0.0,89.98997,-90.0,02/24/0547 +6.87044,46.04401,4809,10,16,10,5,56,3.85,5.0,fr,59176,96,2533005,1,1,Active Shallow Crust,128.8964,89.99257,0.0,10/16/4809 +6.87044,46.04401,4968,4,29,23,3,59,3.95,5.0,fr,59177,99,2533008,1,3,Active Shallow Crust,0.0,89.99117,0.0,04/29/4968 +6.87044,46.04401,8296,4,6,20,5,40,3.95,5.0,fr,59178,165,2533008,1,3,Active Shallow Crust,0.0,89.99117,0.0,04/06/8296 +6.87044,46.04401,2737,12,20,3,46,9,3.95,5.0,fr,59179,54,2533008,1,3,Active Shallow Crust,0.0,89.99117,0.0,12/20/2737 +6.87044,46.04401,2853,3,6,1,30,34,3.95,15.0,fr,59180,57,2533009,1,2,Active Shallow Crust,0.0,89.99117,0.0,03/06/2853 +6.87044,46.04401,4565,8,17,10,11,49,3.95,15.0,fr,59181,91,2533009,1,2,Active Shallow Crust,0.0,89.99117,0.0,08/17/4565 +6.87044,46.04401,3010,4,3,6,57,14,4.15,5.0,fr,59182,60,2533032,1,1,Active Shallow Crust,0.0,89.98948,0.0,04/03/3010 +6.87044,46.04401,3626,8,7,22,11,27,4.15,27.5,fr,59183,72,2533034,1,1,Active Shallow Crust,0.0,89.98948,0.0,08/07/3626 +6.87044,46.04401,9977,11,1,14,2,55,4.15,5.0,fr,59184,199,2533035,1,1,Active Shallow Crust,240.0081,57.99788,0.0,11/01/9977 +6.87044,46.04401,4504,3,12,4,50,23,4.25,5.0,fr,59185,90,2533044,1,1,Active Shallow Crust,0.0,89.99062,0.0,03/12/4504 +6.87044,46.04401,3344,11,18,6,8,45,4.45,5.0,fr,59186,66,2533068,1,1,Active Shallow Crust,0.0,89.99007,0.0,11/18/3344 +6.87044,46.04401,9881,12,13,10,6,1,4.55,5.0,fr,59187,197,2533080,1,1,Active Shallow Crust,0.0,89.98893,0.0,12/13/9881 +6.87044,46.04401,6416,2,27,20,43,24,4.55,15.0,fr,59188,128,2533081,1,1,Active Shallow Crust,0.0,89.98893,0.0,02/27/6416 +6.87044,46.04401,9168,8,3,18,41,51,4.65,27.5,fr,59189,183,2533094,1,1,Active Shallow Crust,0.0,89.99014,0.0,08/03/9168 +6.87044,46.04401,9822,6,20,12,42,47,5.05,5.0,fr,59190,196,2533140,1,1,Active Shallow Crust,0.0,89.99004,0.0,06/20/9822 +6.87044,46.04401,8023,2,28,22,3,25,5.05,15.0,fr,59191,160,2533141,1,1,Active Shallow Crust,0.0,89.99004,0.0,02/28/8023 +6.87044,46.04401,3111,7,6,21,26,42,5.25,5.0,fr,59192,62,2533164,1,1,Active Shallow Crust,0.0,89.99011,0.0,07/06/3111 +-0.22967,48.95373,3137,12,14,7,18,6,3.55,15.0,fr,59193,62,2533441,1,1,Active Shallow Crust,0.0,89.99007,0.0,12/14/3137 +-0.22967,48.95373,2208,10,14,14,41,34,3.55,27.5,fr,59194,44,2533442,1,1,Active Shallow Crust,0.0,89.99007,0.0,10/14/2208 +-0.22967,48.95373,8773,7,9,17,38,44,3.55,15.0,fr,59195,175,2533444,1,1,Active Shallow Crust,240.0125,57.99818,0.0,07/09/8773 +-0.22967,48.95373,1948,4,30,2,23,41,3.55,27.5,fr,59196,38,2533448,1,1,Active Shallow Crust,0.0,89.98995,-90.0,04/30/1948 +-0.22967,48.95373,5330,8,13,17,24,26,3.55,5.0,fr,59197,106,2533449,1,1,Active Shallow Crust,128.896,89.99379,0.0,08/13/5330 +-0.22967,48.95373,3606,3,1,12,53,13,3.65,5.0,fr,59198,72,2533452,1,2,Active Shallow Crust,0.0,89.99004,0.0,03/01/3606 +-0.22967,48.95373,7659,9,4,6,22,49,3.65,5.0,fr,59199,153,2533452,1,2,Active Shallow Crust,0.0,89.99004,0.0,09/04/7659 +-0.22967,48.95373,1252,12,13,2,52,13,3.75,15.0,fr,59200,25,2533474,1,1,Active Shallow Crust,128.8963,89.96736,0.0,12/13/1252 +-0.22967,48.95373,4632,11,20,2,41,25,3.85,5.0,fr,59201,92,2533476,1,1,Active Shallow Crust,0.0,89.99004,0.0,11/20/4632 +-0.22967,48.95373,2216,5,6,7,57,55,3.85,15.0,fr,59202,44,2533477,1,2,Active Shallow Crust,0.0,89.99004,0.0,05/06/2216 +-0.22967,48.95373,3551,3,1,5,18,42,3.85,15.0,fr,59203,71,2533477,1,2,Active Shallow Crust,0.0,89.99004,0.0,03/01/3551 +-0.22967,48.95373,6210,9,14,14,16,35,3.85,5.0,fr,59204,124,2533479,1,1,Active Shallow Crust,240.0112,57.99788,0.0,09/14/6210 +-0.22967,48.95373,9848,2,25,1,24,59,3.95,15.0,fr,59205,196,2533492,1,1,Active Shallow Crust,240.0202,58.00503,0.0,02/25/9848 +-0.22967,48.95373,3379,2,1,5,48,44,4.05,5.0,fr,59206,67,2533500,1,1,Active Shallow Crust,0.0,89.98999,0.0,02/01/3379 +-0.22967,48.95373,1229,3,10,14,43,57,4.45,15.0,fr,59207,24,2533552,1,1,Active Shallow Crust,240.006,57.9948,0.0,03/10/1229 +-0.22967,48.95373,5595,9,17,12,4,9,4.65,5.0,fr,59208,111,2533572,1,1,Active Shallow Crust,360.0,89.99003,0.0,09/17/5595 +-0.22967,48.95373,4867,11,19,14,12,1,4.95,5.0,fr,59209,97,2533611,1,1,Active Shallow Crust,240.0131,58.00468,0.0,11/19/4867 +-0.22967,48.95373,4709,10,17,15,9,50,5.05,5.0,fr,59210,94,2533620,1,1,Active Shallow Crust,0.0,89.98999,0.0,10/17/4709 +-2.00181,46.39678,4406,3,30,22,53,2,3.75,15.0,fr,59211,88,2533945,1,1,Active Shallow Crust,0.0,89.98895,0.0,03/30/4406 +-2.00181,46.39678,5572,5,20,15,37,23,3.85,15.0,fr,59212,111,2533957,1,1,Active Shallow Crust,0.0,89.99015,0.0,05/20/5572 +-2.00181,46.39678,9041,9,7,6,47,17,4.35,5.0,fr,59213,180,2534016,1,1,Active Shallow Crust,0.0,89.99031,0.0,09/07/9041 +-2.00181,46.39678,7739,10,30,6,46,12,4.45,5.0,fr,59214,154,2534028,1,1,Active Shallow Crust,0.0,89.99013,0.0,10/30/7739 +-2.00181,46.39678,9422,6,9,21,12,36,5.25,5.0,fr,59215,188,2534124,1,1,Active Shallow Crust,0.0,89.99017,0.0,06/09/9422 +2.55432,53.07513,2311,6,12,12,16,17,3.65,27.5,fr,59216,46,2534414,1,1,Active Shallow Crust,0.0,89.9892,0.0,06/12/2311 +2.64321,45.84724,2192,11,20,21,51,32,3.55,5.0,fr,59217,43,2534880,1,1,Active Shallow Crust,0.0,89.98946,0.0,11/20/2192 +2.64321,45.84724,125,1,22,17,40,29,3.55,15.0,fr,59218,2,2534881,1,3,Active Shallow Crust,0.0,89.98946,0.0,01/22/0125 +2.64321,45.84724,1263,11,13,3,37,35,3.55,15.0,fr,59219,25,2534881,1,3,Active Shallow Crust,0.0,89.98946,0.0,11/13/1263 +2.64321,45.84724,8745,2,2,3,57,24,3.55,15.0,fr,59220,174,2534881,1,3,Active Shallow Crust,0.0,89.98946,0.0,02/02/8745 +2.64321,45.84724,8983,9,23,19,54,31,3.55,5.0,fr,59221,179,2534883,1,1,Active Shallow Crust,240.0127,57.99817,0.0,09/23/8983 +2.64321,45.84724,8954,8,12,13,52,33,3.65,15.0,fr,59222,179,2534893,1,1,Active Shallow Crust,0.0,89.99061,0.0,08/12/8954 +2.64321,45.84724,9414,2,28,19,16,7,3.65,27.5,fr,59223,188,2534894,1,1,Active Shallow Crust,0.0,89.99061,0.0,02/28/9414 +2.64321,45.84724,9546,5,24,10,9,12,3.75,5.0,fr,59224,190,2534904,1,1,Active Shallow Crust,0.0,89.98884,0.0,05/24/9546 +2.64321,45.84724,49,5,19,0,3,57,3.85,15.0,fr,59225,0,2534917,1,1,Active Shallow Crust,0.0,89.99005,0.0,05/19/0049 +2.64321,45.84724,6334,6,17,5,23,35,3.95,5.0,fr,59226,126,2534928,1,2,Active Shallow Crust,0.0,89.98892,0.0,06/17/6334 +2.64321,45.84724,9848,4,2,15,57,14,3.95,5.0,fr,59227,196,2534928,1,2,Active Shallow Crust,0.0,89.98892,0.0,04/02/9848 +2.64321,45.84724,5868,9,2,13,0,9,4.05,5.0,fr,59228,117,2534940,1,1,Active Shallow Crust,0.0,89.99013,0.0,09/02/5868 +2.64321,45.84724,4007,5,6,22,1,32,4.35,5.0,fr,59229,80,2534976,1,1,Active Shallow Crust,0.0,89.99021,0.0,05/06/4007 +2.64321,45.84724,9796,4,7,20,32,47,4.95,5.0,fr,59230,195,2535051,1,1,Active Shallow Crust,240.0116,58.00446,0.0,04/07/9796 +7.1785,49.28131,9067,9,5,3,50,48,3.55,5.0,fr,59231,181,2535360,1,1,Active Shallow Crust,0.0,89.98685,0.0,09/05/9067 +7.1785,49.28131,7885,2,12,23,5,51,3.55,15.0,fr,59232,157,2535361,1,1,Active Shallow Crust,0.0,89.98685,0.0,02/12/7885 +7.1785,49.28131,7745,11,28,10,32,16,3.65,5.0,fr,59233,154,2535375,1,1,Active Shallow Crust,240.0008,58.01381,0.0,11/28/7745 +7.1785,49.28131,267,11,11,1,13,57,3.75,5.0,fr,59234,5,2535390,1,1,Active Shallow Crust,0.0,89.98943,-90.0,11/11/0267 +7.1785,49.28131,937,2,10,23,36,28,4.15,15.0,fr,59235,18,2535433,1,1,Active Shallow Crust,0.0,89.99011,0.0,02/10/0937 +-2.50435,43.31763,2161,3,17,19,26,20,3.55,5.0,fr,59236,43,2535840,1,2,Active Shallow Crust,0.0,89.989,0.0,03/17/2161 +-2.50435,43.31763,3767,10,29,3,51,47,3.55,5.0,fr,59237,75,2535840,1,2,Active Shallow Crust,0.0,89.989,0.0,10/29/3767 +-2.50435,43.31763,70,4,21,1,4,18,3.55,5.0,fr,59238,1,2535849,1,1,Active Shallow Crust,128.8964,89.9945,0.0,04/21/0070 +-2.50435,43.31763,882,12,29,7,0,33,3.95,15.0,fr,59239,17,2535895,1,1,Active Shallow Crust,0.0,89.99063,-90.0,12/29/0882 +-2.50435,43.31763,8259,10,29,8,42,15,4.15,5.0,fr,59240,165,2535912,1,1,Active Shallow Crust,0.0,89.99081,0.0,10/29/8259 +-2.50435,43.31763,7551,9,30,16,47,42,4.25,5.0,fr,59241,151,2535927,1,1,Active Shallow Crust,240.0069,57.99381,0.0,09/30/7551 +-2.50435,43.31763,2980,5,8,7,20,44,4.65,5.0,fr,59242,59,2535972,1,1,Active Shallow Crust,0.0,89.98966,0.0,05/08/2980 +-2.50435,43.31763,4957,2,10,18,11,57,5.05,5.0,fr,59243,99,2536020,1,1,Active Shallow Crust,0.0,89.99021,0.0,02/10/4957 +1.4671,48.65125,6655,3,12,6,1,38,3.65,5.0,fr,59244,133,2536335,1,1,Active Shallow Crust,240.0012,58.01316,0.0,03/12/6655 +1.4671,48.65125,7296,8,2,17,6,36,3.65,5.0,fr,59245,145,2536338,1,1,Active Shallow Crust,0.0,89.98949,-90.0,08/02/7296 +1.4671,48.65125,2109,6,8,8,47,36,3.75,5.0,fr,59246,42,2536344,1,1,Active Shallow Crust,0.0,89.98942,0.0,06/08/2109 +1.4671,48.65125,1304,5,6,11,55,12,4.25,5.0,fr,59247,26,2536404,1,1,Active Shallow Crust,0.0,89.99033,0.0,05/06/1304 +1.4671,48.65125,5703,4,1,16,32,46,4.25,27.5,fr,59248,114,2536409,1,2,Active Shallow Crust,240.0079,57.99417,0.0,04/01/5703 +1.4671,48.65125,9879,4,13,20,34,15,4.25,27.5,fr,59249,197,2536409,1,2,Active Shallow Crust,240.0079,57.99417,0.0,04/13/9879 +5.76961,43.93324,9797,8,14,7,9,58,3.55,5.0,fr,59250,195,2536800,1,5,Active Shallow Crust,0.0,89.99274,0.0,08/14/9797 +5.76961,43.93324,356,12,10,18,17,54,3.55,5.0,fr,59251,7,2536800,1,5,Active Shallow Crust,0.0,89.99274,0.0,12/10/0356 +5.76961,43.93324,8493,6,9,4,34,13,3.55,5.0,fr,59252,169,2536800,1,5,Active Shallow Crust,0.0,89.99274,0.0,06/09/8493 +5.76961,43.93324,5721,5,11,6,38,52,3.55,5.0,fr,59253,114,2536800,1,5,Active Shallow Crust,0.0,89.99274,0.0,05/11/5721 +5.76961,43.93324,8530,5,16,11,58,16,3.55,5.0,fr,59254,170,2536800,1,5,Active Shallow Crust,0.0,89.99274,0.0,05/16/8530 +5.76961,43.93324,1331,6,8,14,47,27,3.55,15.0,fr,59255,26,2536801,1,2,Active Shallow Crust,0.0,89.99274,0.0,06/08/1331 +5.76961,43.93324,1437,11,15,10,38,24,3.55,15.0,fr,59256,28,2536801,1,2,Active Shallow Crust,0.0,89.99274,0.0,11/15/1437 +5.76961,43.93324,68,11,21,20,3,18,3.55,5.0,fr,59257,1,2536803,1,1,Active Shallow Crust,240.0116,57.99816,0.0,11/21/0068 +5.76961,43.93324,5756,3,14,7,18,0,3.55,5.0,fr,59258,115,2536809,1,1,Active Shallow Crust,128.8967,89.99274,0.0,03/14/5756 +5.76961,43.93324,4801,7,4,22,18,46,3.55,27.5,fr,59259,96,2536811,1,1,Active Shallow Crust,128.8967,89.99274,0.0,07/04/4801 +5.76961,43.93324,4794,1,12,17,49,52,3.65,5.0,fr,59260,95,2536812,1,2,Active Shallow Crust,0.0,89.98705,0.0,01/12/4794 +5.76961,43.93324,4161,5,28,13,40,12,3.65,5.0,fr,59261,83,2536812,1,2,Active Shallow Crust,0.0,89.98705,0.0,05/28/4161 +5.76961,43.93324,6466,6,17,12,1,7,3.75,15.0,fr,59262,129,2536825,1,1,Active Shallow Crust,0.0,89.98846,0.0,06/17/6466 +5.76961,43.93324,9851,2,18,8,49,29,3.75,5.0,fr,59263,197,2536830,1,1,Active Shallow Crust,0.0,89.98833,-90.0,02/18/9851 +5.76961,43.93324,1299,2,21,20,38,45,3.95,5.0,fr,59264,25,2536848,1,3,Active Shallow Crust,0.0,89.99084,0.0,02/21/1299 +5.76961,43.93324,3809,9,5,19,9,8,3.95,5.0,fr,59265,76,2536848,1,3,Active Shallow Crust,0.0,89.99084,0.0,09/05/3809 +5.76961,43.93324,8558,2,8,8,57,47,3.95,5.0,fr,59266,171,2536848,1,3,Active Shallow Crust,0.0,89.99084,0.0,02/08/8558 +5.76961,43.93324,7203,3,30,1,16,21,3.95,15.0,fr,59267,144,2536849,1,1,Active Shallow Crust,0.0,89.99084,0.0,03/30/7203 +5.76961,43.93324,8638,1,21,6,39,56,3.95,27.5,fr,59268,172,2536850,1,1,Active Shallow Crust,0.0,89.99084,0.0,01/21/8638 +5.76961,43.93324,2142,9,5,1,39,46,3.95,5.0,fr,59269,42,2536851,1,1,Active Shallow Crust,240.0191,58.0052,0.0,09/05/2142 +5.76961,43.93324,3899,1,3,13,16,46,3.95,5.0,fr,59270,77,2536857,1,1,Active Shallow Crust,128.9011,89.99313,0.0,01/03/3899 +5.76961,43.93324,3935,4,23,13,54,18,4.15,15.0,fr,59271,78,2536873,1,1,Active Shallow Crust,0.0,89.98908,0.0,04/23/3935 +5.76961,43.93324,2418,7,22,7,52,29,4.25,5.0,fr,59272,48,2536884,1,1,Active Shallow Crust,0.0,89.99026,0.0,07/22/2418 +5.76961,43.93324,7819,2,16,16,12,2,4.35,5.0,fr,59273,156,2536899,1,1,Active Shallow Crust,240.0084,57.99555,0.0,02/16/7819 +5.76961,43.93324,9208,8,21,9,44,54,4.55,15.0,fr,59274,184,2536924,1,1,Active Shallow Crust,240.0086,57.99689,0.0,08/21/9208 +5.76961,43.93324,1670,8,27,1,25,10,4.55,5.0,fr,59275,33,2536929,1,1,Active Shallow Crust,128.8947,89.9855,0.0,08/27/1670 +5.76961,43.93324,9391,12,2,18,30,11,4.75,5.0,fr,59276,187,2536944,1,2,Active Shallow Crust,0.0,89.99088,0.0,12/02/9391 +5.76961,43.93324,4275,3,4,15,29,50,4.75,5.0,fr,59277,85,2536944,1,2,Active Shallow Crust,0.0,89.99088,0.0,03/04/4275 +5.76961,43.93324,7533,4,3,0,29,18,4.85,5.0,fr,59278,150,2536959,1,1,Active Shallow Crust,240.0158,58.00214,0.0,04/03/7533 +5.769615,43.93324,6144,11,28,5,39,43,6.35,7.567806,fr,59279,122,2537136,1,1,Active Shallow Crust,0.0,89.99001,0.0,11/28/6144 +3.00028,50.78939,390,7,12,16,14,6,3.55,5.0,fr,59280,7,2537280,1,1,Active Shallow Crust,0.0,89.99044,0.0,07/12/0390 +3.00028,50.78939,655,5,23,12,34,31,3.55,15.0,fr,59281,13,2537290,1,1,Active Shallow Crust,128.8953,89.99363,0.0,05/23/0655 +3.00028,50.78939,9655,5,9,11,29,46,3.65,5.0,fr,59282,193,2537292,1,3,Active Shallow Crust,0.0,89.98864,0.0,05/09/9655 +3.00028,50.78939,5920,2,19,18,14,16,3.65,5.0,fr,59283,118,2537292,1,3,Active Shallow Crust,0.0,89.98864,0.0,02/19/5920 +3.00028,50.78939,2988,6,23,0,22,14,3.65,5.0,fr,59284,59,2537292,1,3,Active Shallow Crust,0.0,89.98864,0.0,06/23/2988 +3.00028,50.78939,2496,4,13,18,9,43,3.75,5.0,fr,59285,49,2537304,1,1,Active Shallow Crust,0.0,89.98988,0.0,04/13/2496 +3.00028,50.78939,994,5,14,23,0,42,3.85,5.0,fr,59286,19,2537319,1,1,Active Shallow Crust,240.0112,57.99791,0.0,05/14/0994 +3.00028,50.78939,9130,11,9,20,42,5,4.25,5.0,fr,59287,182,2537370,1,1,Active Shallow Crust,0.0,89.98991,-90.0,11/09/9130 +3.00028,50.78939,5818,5,5,6,6,43,4.45,5.0,fr,59288,116,2537391,1,1,Active Shallow Crust,240.0064,57.9949,0.0,05/05/5818 +5.44137,45.34192,2065,2,8,6,57,28,3.55,5.0,fr,59289,41,2537760,1,3,Active Shallow Crust,0.0,89.99291,0.0,02/08/2065 +5.44137,45.34192,9361,8,30,22,10,20,3.55,5.0,fr,59290,187,2537760,1,3,Active Shallow Crust,0.0,89.99291,0.0,08/30/9361 +5.44137,45.34192,1252,11,24,5,14,38,3.55,5.0,fr,59291,25,2537760,1,3,Active Shallow Crust,0.0,89.99291,0.0,11/24/1252 +5.44137,45.34192,2211,1,28,7,33,53,3.55,15.0,fr,59292,44,2537761,1,1,Active Shallow Crust,0.0,89.99291,0.0,01/28/2211 +5.44137,45.34192,3785,2,23,8,0,58,3.55,5.0,fr,59293,75,2537763,1,1,Active Shallow Crust,240.012,57.9978,0.0,02/23/3785 +5.44137,45.34192,4443,7,1,5,5,28,3.65,15.0,fr,59294,88,2537773,1,1,Active Shallow Crust,0.0,89.98737,0.0,07/01/4443 +5.44137,45.34192,6498,7,21,8,53,53,3.65,5.0,fr,59295,129,2537778,1,1,Active Shallow Crust,0.0,89.98722,-90.0,07/21/6498 +5.44137,45.34192,8026,2,16,22,18,50,3.65,15.0,fr,59296,160,2537779,1,1,Active Shallow Crust,0.0,89.98722,-90.0,02/16/8026 +5.44137,45.34192,5610,1,13,10,3,58,3.75,5.0,fr,59297,112,2537784,1,1,Active Shallow Crust,0.0,89.98874,0.0,01/13/5610 +5.44137,45.34192,712,10,10,0,10,48,3.75,5.0,fr,59298,14,2537790,1,1,Active Shallow Crust,0.0,89.98861,-90.0,10/10/0712 +5.44137,45.34192,6766,1,9,0,25,40,3.75,15.0,fr,59299,135,2537794,1,1,Active Shallow Crust,128.8967,89.96747,0.0,01/09/6766 +5.44137,45.34192,4946,1,16,12,51,45,3.85,5.0,fr,59300,98,2537796,1,1,Active Shallow Crust,0.0,89.98997,0.0,01/16/4946 +5.44137,45.34192,3410,6,9,10,53,24,3.85,5.0,fr,59301,68,2537799,1,1,Active Shallow Crust,240.0103,57.99763,0.0,06/09/3410 +5.44137,45.34192,9544,10,12,4,32,45,3.85,5.0,fr,59302,190,2537802,1,1,Active Shallow Crust,0.0,89.98985,-90.0,10/12/9544 +5.44137,45.34192,6588,12,22,15,17,36,3.85,5.0,fr,59303,131,2537805,1,2,Active Shallow Crust,128.8956,89.99248,0.0,12/22/6588 +5.44137,45.34192,3236,7,31,15,56,32,3.85,5.0,fr,59304,64,2537805,1,2,Active Shallow Crust,128.8956,89.99248,0.0,07/31/3236 +5.44137,45.34192,6537,2,24,14,24,47,3.95,5.0,fr,59305,130,2537808,1,2,Active Shallow Crust,0.0,89.99106,0.0,02/24/6537 +5.44137,45.34192,8290,6,4,2,34,56,3.95,5.0,fr,59306,165,2537808,1,2,Active Shallow Crust,0.0,89.99106,0.0,06/04/8290 +5.44137,45.34192,4993,4,9,6,45,3,3.95,15.0,fr,59307,99,2537809,1,1,Active Shallow Crust,0.0,89.99106,0.0,04/09/4993 +5.44137,45.34192,8226,9,18,10,13,11,3.95,15.0,fr,59308,164,2537818,1,1,Active Shallow Crust,128.9014,89.99329,0.0,09/18/8226 +5.44137,45.34192,3734,11,16,16,51,12,4.25,15.0,fr,59309,74,2537845,1,1,Active Shallow Crust,0.0,89.9905,0.0,11/16/3734 +5.44137,45.34192,8242,8,2,21,29,38,4.35,5.0,fr,59310,164,2537856,1,1,Active Shallow Crust,0.0,89.98872,0.0,08/02/8242 +5.44137,45.34192,9110,8,14,18,36,46,4.35,27.5,fr,59311,182,2537858,1,1,Active Shallow Crust,0.0,89.98872,0.0,08/14/9110 +5.44137,45.34192,5740,2,23,4,0,48,4.45,5.0,fr,59312,114,2537868,1,2,Active Shallow Crust,0.0,89.98994,0.0,02/23/5740 +5.44137,45.34192,5158,11,4,3,3,19,4.45,5.0,fr,59313,103,2537868,1,2,Active Shallow Crust,0.0,89.98994,0.0,11/04/5158 +5.44137,45.34192,1254,5,11,17,3,57,4.45,5.0,fr,59314,25,2537874,1,1,Active Shallow Crust,0.0,89.98982,-90.0,05/11/1254 +5.44137,45.34192,7532,2,29,23,44,17,4.45,15.0,fr,59315,150,2537878,1,2,Active Shallow Crust,128.8921,89.99371,0.0,02/29/7532 +5.44137,45.34192,971,3,4,7,4,55,4.45,15.0,fr,59316,19,2537878,1,2,Active Shallow Crust,128.8921,89.99371,0.0,03/04/0971 +5.44137,45.34192,7898,8,2,5,9,17,4.65,15.0,fr,59317,157,2537893,1,1,Active Shallow Crust,0.0,89.99001,0.0,08/02/7898 +5.44137,45.34192,8367,5,15,12,56,13,4.95,5.0,fr,59318,167,2537928,1,1,Active Shallow Crust,0.0,89.9901,0.0,05/15/8367 +5.44137,45.34192,6060,4,25,20,14,16,4.95,27.5,fr,59319,121,2537930,1,1,Active Shallow Crust,0.0,89.9901,0.0,04/25/6060 +5.44137,45.34192,1486,5,18,1,37,20,5.05,5.0,fr,59320,29,2537940,1,1,Active Shallow Crust,0.0,89.98991,0.0,05/18/1486 +2.99026,51.43034,2196,8,9,14,36,25,3.55,5.0,fr,59321,43,2538240,1,1,Active Shallow Crust,0.0,89.99057,0.0,08/09/2196 +2.99026,51.43034,8086,10,12,10,5,35,3.55,5.0,fr,59322,161,2538249,1,1,Active Shallow Crust,128.896,89.99371,0.0,10/12/8086 +2.99026,51.43034,1233,7,21,5,54,50,3.65,5.0,fr,59323,24,2538252,1,1,Active Shallow Crust,0.0,89.98879,0.0,07/21/1233 +2.99026,51.43034,7725,6,30,9,21,53,4.45,15.0,fr,59324,154,2538349,1,1,Active Shallow Crust,0.0,89.98996,0.0,06/30/7725 +3.64277,52.7096,596,2,5,20,18,59,4.65,5.0,fr,59325,11,2538852,1,1,Active Shallow Crust,0.0,89.98967,0.0,02/05/0596 +3.64277,52.7096,3380,10,7,17,55,59,5.45,5.0,fr,59326,67,2538948,1,1,Active Shallow Crust,0.0,89.99006,0.0,10/07/3380 +-1.21606,44.00978,3343,5,12,3,8,25,3.95,5.0,fr,59327,66,2539248,1,1,Active Shallow Crust,0.0,89.9897,0.0,05/12/3343 +-1.21606,44.00978,3318,10,5,5,22,27,4.05,5.0,fr,59328,66,2539260,1,1,Active Shallow Crust,0.0,89.98981,0.0,10/05/3318 +-1.21606,44.00978,7958,9,29,12,25,33,4.65,5.0,fr,59329,159,2539335,1,1,Active Shallow Crust,240.0101,57.9942,0.0,09/29/7958 +2.94696,47.05488,3756,9,22,15,22,24,3.55,5.0,fr,59330,75,2539680,1,1,Active Shallow Crust,0.0,89.98969,0.0,09/22/3756 +2.94696,47.05488,47,9,19,18,15,48,3.75,5.0,fr,59331,0,2539707,1,1,Active Shallow Crust,240.0081,58.01776,0.0,09/19/0047 +2.94696,47.05488,4910,3,3,16,27,7,3.85,5.0,fr,59332,98,2539719,1,1,Active Shallow Crust,240.0107,57.99779,0.0,03/03/4910 +2.94696,47.05488,4858,9,15,16,32,4,3.95,5.0,fr,59333,97,2539728,1,1,Active Shallow Crust,0.0,89.98917,0.0,09/15/4858 +2.94696,47.05488,4979,9,19,11,7,27,4.15,5.0,fr,59334,99,2539752,1,1,Active Shallow Crust,0.0,89.98967,0.0,09/19/4979 +3.10298,49.63025,5396,5,17,19,36,33,3.55,5.0,fr,59335,107,2540160,1,1,Active Shallow Crust,0.0,89.9902,0.0,05/17/5396 +3.10298,49.63025,6512,6,3,23,24,25,3.65,5.0,fr,59336,130,2540172,1,1,Active Shallow Crust,0.0,89.99126,0.0,06/03/6512 +3.10298,49.63025,36,7,20,8,34,27,3.75,5.0,fr,59337,0,2540184,1,1,Active Shallow Crust,0.0,89.98962,0.0,07/20/0036 +3.10298,49.63025,6211,10,15,23,44,35,3.75,27.5,fr,59338,124,2540189,1,1,Active Shallow Crust,240.0088,58.0177,0.0,10/15/6211 +3.10298,49.63025,4020,10,6,13,59,56,3.95,5.0,fr,59339,80,2540211,1,1,Active Shallow Crust,240.0206,58.00477,0.0,10/06/4020 +3.10298,49.63025,802,10,11,21,33,26,4.45,5.0,fr,59340,16,2540268,1,1,Active Shallow Crust,0.0,89.98957,0.0,10/11/0802 +7.63497,49.33359,6841,6,14,17,58,16,3.55,5.0,fr,59341,136,2540643,1,1,Active Shallow Crust,240.0131,57.99744,0.0,06/14/6841 +7.63497,49.33359,7427,5,4,6,2,49,3.75,27.5,fr,59342,148,2540672,1,1,Active Shallow Crust,0.0,89.98944,-90.0,05/04/7427 +7.63497,49.33359,9423,1,3,14,58,58,3.85,15.0,fr,59343,188,2540677,1,2,Active Shallow Crust,0.0,89.99069,0.0,01/03/9423 +7.63497,49.33359,2601,4,8,0,33,51,3.85,15.0,fr,59344,52,2540677,1,2,Active Shallow Crust,0.0,89.99069,0.0,04/08/2601 +7.63497,49.33359,3024,8,21,14,20,19,4.25,5.0,fr,59345,60,2540727,1,1,Active Shallow Crust,240.0083,57.9943,0.0,08/21/3024 +7.63497,49.33359,9063,8,3,17,34,51,4.45,27.5,fr,59346,181,2540753,1,1,Active Shallow Crust,240.0057,57.99527,0.0,08/03/9063 +7.63497,49.33359,9209,12,4,20,39,13,4.55,5.0,fr,59347,184,2540769,1,1,Active Shallow Crust,128.8927,89.9858,0.0,12/04/9209 +6.53845,44.55933,6775,6,4,14,34,20,3.55,5.0,fr,59348,135,2541120,1,6,Active Shallow Crust,0.0,89.99281,0.0,06/04/6775 +6.53845,44.55933,8218,3,14,0,41,31,3.55,5.0,fr,59349,164,2541120,1,6,Active Shallow Crust,0.0,89.99281,0.0,03/14/8218 +6.53845,44.55933,6884,12,12,10,24,22,3.55,5.0,fr,59350,137,2541120,1,6,Active Shallow Crust,0.0,89.99281,0.0,12/12/6884 +6.53845,44.55933,9184,8,3,12,54,36,3.55,5.0,fr,59351,183,2541120,1,6,Active Shallow Crust,0.0,89.99281,0.0,08/03/9184 +6.53845,44.55933,4098,7,25,15,1,38,3.55,5.0,fr,59352,81,2541120,1,6,Active Shallow Crust,0.0,89.99281,0.0,07/25/4098 +6.53845,44.55933,9322,11,20,1,5,7,3.55,5.0,fr,59353,186,2541120,1,6,Active Shallow Crust,0.0,89.99281,0.0,11/20/9322 +6.53845,44.55933,8523,9,8,15,45,18,3.55,15.0,fr,59354,170,2541121,1,1,Active Shallow Crust,0.0,89.99281,0.0,09/08/8523 +6.53845,44.55933,4711,3,30,10,6,28,3.55,15.0,fr,59355,94,2541124,1,1,Active Shallow Crust,240.0112,57.99929,0.0,03/30/4711 +6.53845,44.55933,9337,11,25,8,54,4,3.55,5.0,fr,59356,186,2541126,1,1,Active Shallow Crust,0.0,89.99273,-90.0,11/25/9337 +6.53845,44.55933,2728,6,23,11,35,48,3.55,5.0,fr,59357,54,2541129,1,1,Active Shallow Crust,128.8953,89.99641,0.0,06/23/2728 +6.53845,44.55933,6142,1,19,3,43,31,3.65,5.0,fr,59358,122,2541132,1,7,Active Shallow Crust,0.0,89.98719,0.0,01/19/6142 +6.53845,44.55933,3628,12,14,1,53,19,3.65,5.0,fr,59359,72,2541132,1,7,Active Shallow Crust,0.0,89.98719,0.0,12/14/3628 +6.53845,44.55933,3208,8,1,21,38,18,3.65,5.0,fr,59360,64,2541132,1,7,Active Shallow Crust,0.0,89.98719,0.0,08/01/3208 +6.53845,44.55933,9336,2,25,5,5,23,3.65,5.0,fr,59361,186,2541132,1,7,Active Shallow Crust,0.0,89.98719,0.0,02/25/9336 +6.53845,44.55933,9618,5,20,11,59,31,3.65,5.0,fr,59362,192,2541132,1,7,Active Shallow Crust,0.0,89.98719,0.0,05/20/9618 +6.53845,44.55933,2129,6,14,4,50,24,3.65,5.0,fr,59363,42,2541132,1,7,Active Shallow Crust,0.0,89.98719,0.0,06/14/2129 +6.53845,44.55933,6872,4,19,23,39,26,3.65,5.0,fr,59364,137,2541132,1,7,Active Shallow Crust,0.0,89.98719,0.0,04/19/6872 +6.53845,44.55933,1965,9,28,17,37,11,3.65,15.0,fr,59365,39,2541133,1,2,Active Shallow Crust,0.0,89.98719,0.0,09/28/1965 +6.53845,44.55933,2059,3,7,0,25,58,3.65,15.0,fr,59366,41,2541133,1,2,Active Shallow Crust,0.0,89.98719,0.0,03/07/2059 +6.53845,44.55933,6671,2,13,23,59,10,3.65,5.0,fr,59367,133,2541135,1,1,Active Shallow Crust,240.0013,58.01198,0.0,02/13/6671 +6.53845,44.55933,4916,3,26,1,58,12,3.65,15.0,fr,59368,98,2541136,1,2,Active Shallow Crust,240.0013,58.01198,0.0,03/26/4916 +6.53845,44.55933,1910,5,25,22,30,2,3.65,15.0,fr,59369,38,2541136,1,2,Active Shallow Crust,240.0013,58.01198,0.0,05/25/1910 +6.53845,44.55933,3097,1,23,11,20,12,3.65,15.0,fr,59370,61,2541142,1,1,Active Shallow Crust,128.9008,89.96349,0.0,01/23/3097 +6.53845,44.55933,1795,10,27,9,17,20,3.75,5.0,fr,59371,35,2541144,1,1,Active Shallow Crust,0.0,89.98859,0.0,10/27/1795 +6.53845,44.55933,9210,12,9,0,49,3,3.75,15.0,fr,59372,184,2541145,1,3,Active Shallow Crust,0.0,89.98859,0.0,12/09/9210 +6.53845,44.55933,9768,4,23,23,16,55,3.75,15.0,fr,59373,195,2541145,1,3,Active Shallow Crust,0.0,89.98859,0.0,04/23/9768 +6.53845,44.55933,580,1,16,4,31,54,3.75,15.0,fr,59374,11,2541145,1,3,Active Shallow Crust,0.0,89.98859,0.0,01/16/0580 +6.53845,44.55933,4611,9,16,9,52,29,3.85,5.0,fr,59375,92,2541156,1,1,Active Shallow Crust,0.0,89.98983,0.0,09/16/4611 +6.53845,44.55933,682,3,27,15,47,50,3.85,15.0,fr,59376,13,2541157,1,1,Active Shallow Crust,0.0,89.98983,0.0,03/27/0682 +6.53845,44.55933,362,2,8,13,45,47,3.85,5.0,fr,59377,7,2541162,1,1,Active Shallow Crust,0.0,89.98971,-90.0,02/08/0362 +6.53845,44.55933,636,5,8,19,51,28,3.95,5.0,fr,59378,12,2541168,1,2,Active Shallow Crust,0.0,89.99094,0.0,05/08/0636 +6.53845,44.55933,3093,1,28,4,4,38,3.95,5.0,fr,59379,61,2541168,1,2,Active Shallow Crust,0.0,89.99094,0.0,01/28/3093 +6.53845,44.55933,6255,10,24,21,21,28,3.95,15.0,fr,59380,125,2541172,1,1,Active Shallow Crust,240.0195,58.00415,0.0,10/24/6255 +6.53845,44.55933,531,7,18,21,3,41,3.95,5.0,fr,59381,10,2541174,1,2,Active Shallow Crust,0.0,89.99083,-90.0,07/18/0531 +6.53845,44.55933,6726,9,2,18,42,12,3.95,5.0,fr,59382,134,2541174,1,2,Active Shallow Crust,0.0,89.99083,-90.0,09/02/6726 +6.53845,44.55933,9090,1,2,8,57,28,4.05,5.0,fr,59383,181,2541180,1,3,Active Shallow Crust,0.0,89.99192,0.0,01/02/9090 +6.53845,44.55933,5744,12,23,2,28,39,4.05,5.0,fr,59384,114,2541180,1,3,Active Shallow Crust,0.0,89.99192,0.0,12/23/5744 +6.53845,44.55933,5488,8,24,21,53,42,4.05,5.0,fr,59385,109,2541180,1,3,Active Shallow Crust,0.0,89.99192,0.0,08/24/5488 +6.53845,44.55933,3312,8,10,11,58,43,4.05,15.0,fr,59386,66,2541181,1,1,Active Shallow Crust,0.0,89.99192,0.0,08/10/3312 +6.53845,44.55933,699,7,17,6,50,46,4.05,5.0,fr,59387,13,2541186,1,1,Active Shallow Crust,0.0,89.99183,-90.0,07/17/0699 +6.53845,44.55933,5197,10,8,8,58,11,4.15,5.0,fr,59388,103,2541192,1,3,Active Shallow Crust,0.0,89.9892,0.0,10/08/5197 +6.53845,44.55933,9933,4,27,13,4,59,4.15,5.0,fr,59389,198,2541192,1,3,Active Shallow Crust,0.0,89.9892,0.0,04/27/9933 +6.53845,44.55933,6214,12,8,0,45,26,4.15,5.0,fr,59390,124,2541192,1,3,Active Shallow Crust,0.0,89.9892,0.0,12/08/6214 +6.53845,44.55933,4573,7,5,9,4,48,4.45,15.0,fr,59391,91,2541229,1,2,Active Shallow Crust,0.0,89.9898,0.0,07/05/4573 +6.53845,44.55933,7143,2,3,15,46,50,4.45,15.0,fr,59392,142,2541229,1,2,Active Shallow Crust,0.0,89.9898,0.0,02/03/7143 +6.53845,44.55933,6104,6,1,6,12,54,4.55,5.0,fr,59393,122,2541240,1,1,Active Shallow Crust,0.0,89.99091,0.0,06/01/6104 +6.53845,44.55933,4815,12,30,16,28,31,4.75,15.0,fr,59394,96,2541265,1,1,Active Shallow Crust,0.0,89.98917,0.0,12/30/4815 +6.53845,44.55933,3906,11,20,16,30,1,4.75,5.0,fr,59395,78,2541267,1,1,Active Shallow Crust,240.0068,58.00426,0.0,11/20/3906 +6.53845,44.55933,7534,5,7,4,12,7,4.75,5.0,fr,59396,150,2541270,1,1,Active Shallow Crust,0.0,89.99087,-90.0,05/07/7534 +6.53845,44.55933,1492,5,7,3,1,27,4.95,5.0,fr,59397,29,2541288,1,1,Active Shallow Crust,0.0,89.98996,0.0,05/07/1492 +6.53845,44.55933,2479,11,13,8,6,31,5.15,27.5,fr,59398,49,2541314,1,1,Active Shallow Crust,0.0,89.98975,0.0,11/13/2479 +6.84972,50.61174,3286,8,31,3,32,50,3.55,5.0,fr,59399,65,2541600,1,3,Active Shallow Crust,0.0,89.98721,0.0,08/31/3286 +6.84972,50.61174,7173,1,21,14,20,21,3.55,5.0,fr,59400,143,2541600,1,3,Active Shallow Crust,0.0,89.98721,0.0,01/21/7173 +6.84972,50.61174,7805,8,6,3,41,17,3.55,5.0,fr,59401,156,2541600,1,3,Active Shallow Crust,0.0,89.98721,0.0,08/06/7805 +6.84972,50.61174,9035,4,13,19,30,49,3.65,5.0,fr,59402,180,2541612,1,1,Active Shallow Crust,0.0,89.98859,0.0,04/13/9035 +6.84972,50.61174,381,10,25,19,19,6,3.65,15.0,fr,59403,7,2541613,1,1,Active Shallow Crust,0.0,89.98859,0.0,10/25/0381 +6.84972,50.61174,760,6,23,8,19,33,3.65,5.0,fr,59404,15,2541615,1,1,Active Shallow Crust,240.0009,58.01265,0.0,06/23/0760 +6.84972,50.61174,8649,6,2,1,33,45,3.65,27.5,fr,59405,172,2541620,1,1,Active Shallow Crust,0.0,89.98846,-90.0,06/02/8649 +6.84972,50.61174,3607,1,30,11,1,17,3.75,5.0,fr,59406,72,2541624,1,1,Active Shallow Crust,0.0,89.98984,0.0,01/30/3607 +6.84972,50.61174,911,8,2,7,5,18,3.85,5.0,fr,59407,18,2541642,1,1,Active Shallow Crust,0.0,89.99084,-90.0,08/02/0911 +6.84972,50.61174,3560,4,2,3,11,37,3.95,5.0,fr,59408,71,2541648,1,4,Active Shallow Crust,0.0,89.99193,0.0,04/02/3560 +6.84972,50.61174,3709,12,15,4,27,16,3.95,5.0,fr,59409,74,2541648,1,4,Active Shallow Crust,0.0,89.99193,0.0,12/15/3709 +6.84972,50.61174,795,9,15,13,52,18,3.95,5.0,fr,59410,15,2541648,1,4,Active Shallow Crust,0.0,89.99193,0.0,09/15/0795 +6.84972,50.61174,3345,7,27,0,37,55,3.95,5.0,fr,59411,66,2541648,1,4,Active Shallow Crust,0.0,89.99193,0.0,07/27/3345 +6.84972,50.61174,5454,11,18,0,6,14,3.95,5.0,fr,59412,109,2541654,1,1,Active Shallow Crust,0.0,89.99183,-90.0,11/18/5454 +6.84972,50.61174,3531,4,5,17,22,53,4.05,5.0,fr,59413,70,2541660,1,1,Active Shallow Crust,0.0,89.9892,0.0,04/05/3531 +6.84972,50.61174,3602,12,26,5,48,32,4.05,5.0,fr,59414,72,2541663,1,1,Active Shallow Crust,240.0066,58.00613,0.0,12/26/3602 +6.84972,50.61174,7275,1,30,1,40,0,4.25,5.0,fr,59415,145,2541684,1,1,Active Shallow Crust,0.0,89.99142,0.0,01/30/7275 +6.84972,50.61174,4338,9,14,23,39,33,4.25,15.0,fr,59416,86,2541688,1,1,Active Shallow Crust,240.0086,57.99458,0.0,09/14/4338 +6.84972,50.61174,1367,10,5,23,58,2,4.45,5.0,fr,59417,27,2541708,1,1,Active Shallow Crust,0.0,89.99092,0.0,10/05/1367 +6.84972,50.61174,8477,6,8,15,7,5,4.55,15.0,fr,59418,169,2541721,1,1,Active Shallow Crust,0.0,89.98988,0.0,06/08/8477 +6.84972,50.61174,9562,6,21,19,19,52,4.85,5.0,fr,59419,191,2541756,1,3,Active Shallow Crust,0.0,89.98997,0.0,06/21/9562 +6.84972,50.61174,958,1,11,18,16,54,4.85,5.0,fr,59420,19,2541756,1,3,Active Shallow Crust,0.0,89.98997,0.0,01/11/0958 +6.84972,50.61174,516,5,8,4,53,20,4.85,5.0,fr,59421,10,2541756,1,3,Active Shallow Crust,0.0,89.98997,0.0,05/08/0516 +6.84972,50.61174,2591,4,6,5,54,4,4.85,27.5,fr,59422,51,2541758,1,1,Active Shallow Crust,0.0,89.98997,0.0,04/06/2591 +6.84972,50.61174,5731,11,26,8,56,26,4.95,5.0,fr,59423,114,2541771,1,1,Active Shallow Crust,240.0139,58.00481,0.0,11/26/5731 +2.63469,47.5211,1178,1,4,14,44,40,3.55,5.0,fr,59424,23,2542083,1,1,Active Shallow Crust,240.0116,57.99825,0.0,01/04/1178 +2.63469,47.5211,641,7,26,13,49,7,3.55,15.0,fr,59425,12,2542087,1,1,Active Shallow Crust,0.0,89.98967,-90.0,07/26/0641 +2.63469,47.5211,5642,4,20,9,45,15,3.95,5.0,fr,59426,112,2542128,1,1,Active Shallow Crust,0.0,89.98926,0.0,04/20/5642 +2.63469,47.5211,1338,3,30,22,20,14,4.35,5.0,fr,59427,26,2542179,1,1,Active Shallow Crust,240.0085,57.99598,0.0,03/30/1338 +2.63469,47.5211,2043,2,3,2,35,9,4.65,5.0,fr,59428,40,2542212,1,1,Active Shallow Crust,0.0,89.9904,0.0,02/03/2043 +-0.22681,50.79812,104,8,25,8,15,3,3.55,5.0,fr,59429,2,2542563,1,1,Active Shallow Crust,240.0126,57.99822,0.0,08/25/0104 +-0.22681,50.79812,1618,5,27,5,36,45,3.65,5.0,fr,59430,32,2542572,1,2,Active Shallow Crust,0.0,89.99006,0.0,05/27/1618 +-0.22681,50.79812,1205,10,27,10,9,46,3.65,5.0,fr,59431,24,2542572,1,2,Active Shallow Crust,0.0,89.99006,0.0,10/27/1205 +-0.22681,50.79812,5777,9,12,17,20,17,3.75,5.0,fr,59432,115,2542584,1,1,Active Shallow Crust,0.0,89.99004,0.0,09/12/5777 +-0.22681,50.79812,8429,5,11,1,29,13,3.75,5.0,fr,59433,168,2542587,1,1,Active Shallow Crust,240.0089,58.01767,0.0,05/11/8429 +4.54053,46.77803,6208,10,5,4,51,48,3.55,5.0,fr,59434,124,2543040,1,1,Active Shallow Crust,0.0,89.9931,0.0,10/05/6208 +4.54053,46.77803,7792,12,8,17,29,39,3.55,5.0,fr,59435,155,2543046,1,1,Active Shallow Crust,0.0,89.99301,-90.0,12/08/7792 +4.54053,46.77803,7969,1,11,0,46,6,3.55,27.5,fr,59436,159,2543048,1,1,Active Shallow Crust,0.0,89.99301,-90.0,01/11/7969 +4.54053,46.77803,423,10,30,7,14,4,3.65,5.0,fr,59437,8,2543052,1,2,Active Shallow Crust,0.0,89.98769,0.0,10/30/0423 +4.54053,46.77803,1573,5,11,5,52,4,3.65,5.0,fr,59438,31,2543052,1,2,Active Shallow Crust,0.0,89.98769,0.0,05/11/1573 +4.54053,46.77803,1695,5,20,17,28,6,3.65,15.0,fr,59439,33,2543053,1,1,Active Shallow Crust,0.0,89.98769,0.0,05/20/1695 +4.54053,46.77803,5132,8,30,9,18,8,3.65,27.5,fr,59440,102,2543054,1,1,Active Shallow Crust,0.0,89.98769,0.0,08/30/5132 +4.54053,46.77803,932,6,3,8,28,19,3.75,5.0,fr,59441,18,2543064,1,3,Active Shallow Crust,0.0,89.98903,0.0,06/03/0932 +4.54053,46.77803,9767,11,11,10,5,21,3.75,5.0,fr,59442,195,2543064,1,3,Active Shallow Crust,0.0,89.98903,0.0,11/11/9767 +4.54053,46.77803,7477,5,6,11,22,26,3.75,5.0,fr,59443,149,2543064,1,3,Active Shallow Crust,0.0,89.98903,0.0,05/06/7477 +4.54053,46.77803,9045,8,6,15,26,44,3.75,5.0,fr,59444,180,2543070,1,1,Active Shallow Crust,0.0,89.9889,-90.0,08/06/9045 +4.54053,46.77803,674,1,22,23,11,2,3.95,15.0,fr,59445,13,2543089,1,1,Active Shallow Crust,0.0,89.99129,0.0,01/22/0674 +4.54053,46.77803,1229,5,18,6,9,48,3.95,5.0,fr,59446,24,2543091,1,1,Active Shallow Crust,240.0205,58.005,0.0,05/18/1229 +4.54053,46.77803,4168,3,22,16,25,40,3.95,5.0,fr,59447,83,2543094,1,1,Active Shallow Crust,0.0,89.99119,-90.0,03/22/4168 +4.54053,46.77803,45,5,29,18,24,54,4.05,5.0,fr,59448,0,2543100,1,1,Active Shallow Crust,0.0,89.98835,0.0,05/29/0045 +4.54053,46.77803,503,3,5,12,26,27,4.15,5.0,fr,59449,10,2543118,1,1,Active Shallow Crust,0.0,89.98949,-90.0,03/05/0503 +4.54053,46.77803,5629,4,5,18,45,31,4.35,5.0,fr,59450,112,2543136,1,1,Active Shallow Crust,0.0,89.98901,0.0,04/05/5629 +4.54053,46.77803,5047,11,19,10,22,35,4.35,15.0,fr,59451,100,2543137,1,1,Active Shallow Crust,0.0,89.98901,0.0,11/19/5047 +4.54053,46.77803,3743,9,5,17,55,4,4.45,5.0,fr,59452,74,2543148,1,1,Active Shallow Crust,0.0,89.9902,0.0,09/05/3743 +4.54053,46.77803,1899,2,26,21,48,57,4.65,5.0,fr,59453,37,2543172,1,1,Active Shallow Crust,0.0,89.99026,0.0,02/26/1899 +4.54053,46.77803,6993,10,1,23,21,11,5.25,15.0,fr,59454,139,2543245,1,1,Active Shallow Crust,0.0,89.99024,0.0,10/01/6993 +4.31319,48.02487,917,12,1,2,58,49,3.55,5.0,fr,59455,18,2543520,1,1,Active Shallow Crust,0.0,89.99326,0.0,12/01/0917 +4.31319,48.02487,2573,1,23,3,38,58,4.05,5.0,fr,59456,51,2543580,1,1,Active Shallow Crust,0.0,89.98862,0.0,01/23/2573 +0.4216,50.43791,6342,12,26,12,46,29,3.85,5.0,fr,59457,126,2544036,1,1,Active Shallow Crust,0.0,89.99005,0.0,12/26/6342 +0.4216,50.43791,8331,4,7,7,59,1,5.15,15.0,fr,59458,166,2544193,1,1,Active Shallow Crust,0.0,89.99001,0.0,04/07/8331 +8.52833,47.00809,3201,8,9,18,52,6,3.55,5.0,fr,59459,64,2544480,1,2,Active Shallow Crust,0.0,89.98624,0.0,08/09/3201 +8.52833,47.00809,7444,5,16,3,10,30,3.55,5.0,fr,59460,148,2544480,1,2,Active Shallow Crust,0.0,89.98624,0.0,05/16/7444 +8.52833,47.00809,940,9,9,8,42,4,3.55,15.0,fr,59461,18,2544481,1,2,Active Shallow Crust,0.0,89.98624,0.0,09/09/0940 +8.52833,47.00809,3049,10,12,8,34,24,3.55,15.0,fr,59462,60,2544481,1,2,Active Shallow Crust,0.0,89.98624,0.0,10/12/3049 +8.52833,47.00809,7550,3,11,13,0,59,3.55,5.0,fr,59463,150,2544483,1,1,Active Shallow Crust,240.0108,57.99752,0.0,03/11/7550 +8.52833,47.00809,622,9,28,13,25,52,3.55,15.0,fr,59464,12,2544484,1,1,Active Shallow Crust,240.0108,57.99752,0.0,09/28/0622 +8.52833,47.00809,9849,1,23,10,49,46,3.55,5.0,fr,59465,196,2544486,1,1,Active Shallow Crust,0.0,89.98609,-90.0,01/23/9849 +8.52833,47.00809,4890,2,12,14,41,45,3.55,15.0,fr,59466,97,2544490,1,1,Active Shallow Crust,128.8963,89.99313,0.0,02/12/4890 +8.52833,47.00809,6326,9,10,9,11,16,3.65,5.0,fr,59467,126,2544492,1,4,Active Shallow Crust,0.0,89.98774,0.0,09/10/6326 +8.52833,47.00809,8970,9,9,22,46,56,3.65,5.0,fr,59468,179,2544492,1,4,Active Shallow Crust,0.0,89.98774,0.0,09/09/8970 +8.52833,47.00809,707,10,26,10,46,29,3.65,5.0,fr,59469,14,2544492,1,4,Active Shallow Crust,0.0,89.98774,0.0,10/26/0707 +8.52833,47.00809,5857,5,13,17,58,29,3.65,5.0,fr,59470,117,2544492,1,4,Active Shallow Crust,0.0,89.98774,0.0,05/13/5857 +8.52833,47.00809,6014,10,12,20,9,26,3.65,15.0,fr,59471,120,2544493,1,1,Active Shallow Crust,0.0,89.98774,0.0,10/12/6014 +8.52833,47.00809,3201,12,9,22,26,54,3.65,5.0,fr,59472,64,2544495,1,1,Active Shallow Crust,240.0013,58.0133,0.0,12/09/3201 +8.52833,47.00809,1281,4,19,3,44,42,3.65,5.0,fr,59473,25,2544498,1,1,Active Shallow Crust,0.0,89.9876,-90.0,04/19/1281 +8.52833,47.00809,8576,9,4,15,17,26,3.75,15.0,fr,59474,171,2544505,1,1,Active Shallow Crust,0.0,89.98907,0.0,09/04/8576 +8.52833,47.00809,7703,12,1,8,15,28,3.75,15.0,fr,59475,154,2544508,1,1,Active Shallow Crust,240.0087,58.01849,0.0,12/01/7703 +8.52833,47.00809,1497,10,13,10,1,21,3.75,5.0,fr,59476,29,2544510,1,1,Active Shallow Crust,0.0,89.98895,-90.0,10/13/1497 +8.52833,47.00809,7514,2,2,23,38,46,3.85,15.0,fr,59477,150,2544517,1,1,Active Shallow Crust,0.0,89.99026,0.0,02/02/7514 +8.52833,47.00809,5722,3,8,7,9,31,3.85,5.0,fr,59478,114,2544519,1,1,Active Shallow Crust,240.01,57.99885,0.0,03/08/5722 +8.52833,47.00809,5039,8,25,8,37,54,3.95,5.0,fr,59479,100,2544528,1,2,Active Shallow Crust,0.0,89.99133,0.0,08/25/5039 +8.52833,47.00809,3781,1,25,1,26,59,3.95,5.0,fr,59480,75,2544528,1,2,Active Shallow Crust,0.0,89.99133,0.0,01/25/3781 +8.52833,47.00809,3779,2,12,20,12,41,3.95,15.0,fr,59481,75,2544529,1,2,Active Shallow Crust,0.0,89.99133,0.0,02/12/3779 +8.52833,47.00809,2346,5,25,0,11,11,3.95,15.0,fr,59482,46,2544529,1,2,Active Shallow Crust,0.0,89.99133,0.0,05/25/2346 +8.52833,47.00809,1835,7,13,4,43,32,3.95,15.0,fr,59483,36,2544535,1,1,Active Shallow Crust,0.0,89.99122,-90.0,07/13/1835 +8.52833,47.00809,8938,10,27,7,13,4,4.05,15.0,fr,59484,178,2544541,1,1,Active Shallow Crust,0.0,89.99226,0.0,10/27/8938 +8.52833,47.00809,7891,9,13,6,42,18,4.05,5.0,fr,59485,157,2544549,1,1,Active Shallow Crust,128.8885,89.99613,0.0,09/13/7891 +8.52833,47.00809,1961,3,1,7,0,33,4.15,5.0,fr,59486,39,2544561,1,1,Active Shallow Crust,128.8983,89.99311,0.0,03/01/1961 +8.52833,47.00809,335,11,27,14,9,48,4.25,5.0,fr,59487,6,2544564,1,1,Active Shallow Crust,0.0,89.98772,0.0,11/27/0335 +8.52833,47.00809,5636,4,8,7,13,27,4.45,5.0,fr,59488,112,2544588,1,1,Active Shallow Crust,0.0,89.99024,0.0,04/08/5636 +8.52833,47.00809,7414,10,5,20,49,34,4.55,5.0,fr,59489,148,2544603,1,1,Active Shallow Crust,240.0089,57.99816,0.0,10/05/7414 +8.52833,47.00809,952,1,19,21,20,13,4.75,27.5,fr,59490,19,2544629,1,1,Active Shallow Crust,240.0079,58.0045,0.0,01/19/0952 +8.52833,47.00809,6236,12,22,10,10,5,4.75,5.0,fr,59491,124,2544630,1,1,Active Shallow Crust,0.0,89.98952,-90.0,12/22/6236 +8.52833,47.00809,567,1,20,1,17,46,4.85,5.0,fr,59492,11,2544636,1,1,Active Shallow Crust,0.0,89.99076,0.0,01/20/0567 +8.52833,47.00809,2987,1,17,3,41,17,4.85,5.0,fr,59493,59,2544642,1,1,Active Shallow Crust,0.0,89.99065,-90.0,01/17/2987 +8.52833,47.00809,6359,4,19,18,50,20,4.95,15.0,fr,59494,127,2544649,1,1,Active Shallow Crust,0.0,89.98902,0.0,04/19/6359 +8.52833,47.00809,6610,9,2,9,48,40,5.55,5.0,fr,59495,132,2544720,1,1,Active Shallow Crust,0.0,89.99037,0.0,09/02/6610 +8.52833,47.00809,1643,8,12,4,58,47,5.65,5.0,fr,59496,32,2544732,1,1,Active Shallow Crust,0.0,89.99019,0.0,08/12/1643 +-1.13596,44.56608,4565,4,1,20,33,4,3.85,15.0,fr,59497,91,2545000,1,1,Active Shallow Crust,240.0103,57.99789,0.0,04/01/4565 +5.90467,48.62123,4642,8,28,11,33,32,3.85,5.0,fr,59498,92,2545476,1,1,Active Shallow Crust,0.0,89.99056,0.0,08/28/4642 +5.90467,48.62123,4184,7,26,8,32,5,4.05,5.0,fr,59499,83,2545506,1,1,Active Shallow Crust,0.0,89.98862,-90.0,07/26/4184 +5.90467,48.62123,851,6,25,14,56,22,4.75,5.0,fr,59500,17,2545593,1,1,Active Shallow Crust,128.8882,89.9883,0.0,06/25/0851 diff --git a/openquake/quaket/utils.py b/openquake/quaket/utils.py deleted file mode 100644 index 7f611e9..0000000 --- a/openquake/quaket/utils.py +++ /dev/null @@ -1,4 +0,0 @@ - - -def test(aa): - print(aa) From 7377408e364d857c04540e16e2c561830222b02b Mon Sep 17 00:00:00 2001 From: Fahrettin Kuran Date: Thu, 5 Mar 2026 16:51:15 +0100 Subject: [PATCH 2/3] Update documentation.yml --- .github/workflows/documentation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 1c735df..d403405 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -15,7 +15,7 @@ jobs: run: | sudo apt-get install pandoc python -m pip install --upgrade pip - pip install sphinx sphinx_rtd_theme myst_parser nbsphinx recommonmark + pip install sphinx sphinx_rtd_theme myst_parser nbsphinx recommonmark nbsphinx-link pandas ipykernel - name: Sphinx build run: | sphinx-build doc _build From 29da6c700a216dde58b9832d83ac8f5268cc48e1 Mon Sep 17 00:00:00 2001 From: Fahrettin Kuran Date: Thu, 5 Mar 2026 17:11:10 +0100 Subject: [PATCH 3/3] Update documentation.yml --- .github/workflows/documentation.yml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index d403405..cd0031c 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -10,15 +10,23 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 + + - name: Set up Python 3.10 + uses: actions/setup-python@v5 + with: + python-version: '3.10' + - name: Install dependencies run: | sudo apt-get install pandoc python -m pip install --upgrade pip - pip install sphinx sphinx_rtd_theme myst_parser nbsphinx recommonmark nbsphinx-link pandas ipykernel + pip install docutils==0.20.1 + pip install sphinx==7.1.2 sphinx_rtd_theme myst_parser nbsphinx nbsphinx-link pandas ipykernel + - name: Sphinx build run: | - sphinx-build doc _build + sphinx-build -v doc _build + - name: Deploy to GitHub Pages uses: peaceiris/actions-gh-pages@v3 if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}